diff --git a/.gitattributes b/.gitattributes index 9d4d2a914d..693e97a1bc 100644 --- a/.gitattributes +++ b/.gitattributes @@ -33,3 +33,7 @@ Bin/ilrepack-assemblies -whitespace Src/LexText/ParserCore/ParserCoreTests/**/*.txt -whitespace Src/Utilities/pcpatrflex/DisambiguateInFLExDB/DisambiguateInFLExDBTests/TestData/*.* -whitespace Src/Utilities/pcpatrflex/PcPatrBrowserDll/Transforms/*.* -whitespace + +# Verify snapshot testing +*.verified.png binary +*.received.png binary diff --git a/.github/instructions/build.instructions.md b/.github/instructions/build.instructions.md index 9e5f6b559a..0908db41fd 100644 --- a/.github/instructions/build.instructions.md +++ b/.github/instructions/build.instructions.md @@ -10,6 +10,11 @@ This file documents the **supported** build workflow for FieldWorks. FieldWorks is **Windows-first** and **x64-only**. Use the repo scripts so build ordering (native before managed) is correct. +## Non-Windows hosts +- Linux and macOS are supported for editing, code search, documentation, specs, and agent workflows only. +- Do not attempt to build, test, or run installer/setup flows on non-Windows hosts. +- `build.ps1` and `test.ps1` intentionally fail fast on non-Windows hosts so automation notices the environment mismatch. + ## Quick start (PowerShell) ```powershell # Full traversal build (Debug/x64 defaults) diff --git a/.github/instructions/csharp.instructions.md b/.github/instructions/csharp.instructions.md new file mode 100644 index 0000000000..284cb4f942 --- /dev/null +++ b/.github/instructions/csharp.instructions.md @@ -0,0 +1,72 @@ +--- +description: 'Guidelines for building C# applications' +applyTo: '**/*.cs' +--- + +# C# Development + +## Scope +- FieldWorks managed code is a Windows desktop codebase built on .NET Framework 4.8 and native dependencies. +- Treat this file as guidance for existing FieldWorks C# projects, not for ASP.NET or service-oriented .NET applications. +- On Linux and macOS, limit work to editing, search, docs, and specs. Do not claim to have built or run managed binaries there. + +## Language Version And Features +- Use the repo default C# language version unless a project explicitly overrides it. Today that default is C# 8.0 via `Directory.Build.props`. +- Do not introduce C# features that require a newer language version without first updating repo-wide build policy. +- Nullable reference types are disabled by default. Only use nullable annotations and nullable-flow assumptions in projects that opt in explicitly. +- Prefer syntax that is already common in the touched area. Consistency with nearby code is more important than using the newest available syntax. + +## General Instructions +- Make only high-confidence suggestions when reviewing code changes. +- Fix the root cause when practical, but keep edits narrow and compatible with existing behavior. +- Handle edge cases and exception paths explicitly. Do not swallow exceptions without a documented reason. +- Treat native interop, COM, registry-free COM, file formats, and serialization boundaries as high-risk areas that need extra care. + +## Naming Conventions +- Follow PascalCase for types, methods, properties, events, and public members. +- Use camelCase for locals and private fields. +- Prefix interfaces with `I`. +- Keep namespaces aligned with the existing project root namespace instead of inventing new top-level naming schemes. + +## Formatting And Style +- Apply the formatting rules defined in `.editorconfig` and match surrounding code. +- Prefer block-scoped namespaces. Do not default to file-scoped namespaces in this repo. +- Keep using directives simple and consistent with the file you are editing. +- Use `nameof` instead of string literals when referencing member names. +- Use pattern matching where it improves clarity and is supported by the project language version. Do not force newer syntax into older-looking code. + +## Documentation And Comments +- Public APIs should have XML documentation comments. +- Add code comments only when intent, invariants, or interop constraints are not obvious from the code itself. +- Do not add boilerplate comments to every method. + +## Project Conventions +- Most managed projects here are SDK-style `.csproj` files targeting `net48`. +- Keep `GenerateAssemblyInfo` disabled where the project relies on linked `CommonAssemblyInfo.cs`. +- Preserve project-specific build settings such as warnings-as-errors, x64 assumptions, WinExe/WindowsDesktop settings, and registration-free COM behavior. +- When adding new files, update the project file only if the specific project format requires it. + +## Desktop, UI, And Localization +- FieldWorks is a desktop application. Favor guidance relevant to WinForms, WPF, dialogs, view models, threading, and long-running UI work. +- UI-affecting code must respect the UI thread. Avoid blocking calls that can freeze the application. +- Keep user-visible strings in `.resx` resources and follow existing localization patterns. Do not hardcode new UI strings. +- Preserve designer compatibility for WinForms and avoid edits that break generated code patterns. + +## Nullability And Defensive Code +- Because nullable reference types are usually disabled, write explicit null checks at public entry points and interop boundaries when required by the surrounding code. +- Prefer `is null` and `is not null` checks when adding new null checks. +- Do not pretend the compiler will enforce null-state safety unless the project has opted into nullable analysis. + +## Testing +- For behavior changes and bug fixes, add or update tests when practical. +- Follow nearby test naming and structure conventions. Do not add `Arrange`, `Act`, or `Assert` comments unless the existing file already uses them. +- Prefer fast, deterministic NUnit tests for managed code. +- Use `./test.ps1` on Windows to run tests, and `./build.ps1` when you need a supporting build first. Do not recommend ad-hoc `dotnet test` or `msbuild` commands as the normal path for this repo. + +## Build And Validation +- Use `./build.ps1` for builds and `./test.ps1` for tests in normal repo workflows. +- Avoid changing build, packaging, COM, or registry behavior without checking the existing build instructions and affected tests. +- Treat compiler warnings as actionable unless the repo already documents a specific exception. + +## What Not To Assume +- Do not assume ASP.NET Core, Minimal APIs, Entity Framework Core, Swagger/OpenAPI, cloud deployment, container publishing, or JWT authentication are relevant unless the user is explicitly working in a repo area that adds those technologies. diff --git a/.github/instructions/debugging.instructions.md b/.github/instructions/debugging.instructions.md index fa5b2dfffe..51a7438910 100644 --- a/.github/instructions/debugging.instructions.md +++ b/.github/instructions/debugging.instructions.md @@ -49,7 +49,7 @@ description: "Runtime debugging and tracing guidance for FieldWorks" ## Dev switch (auto config) - FieldWorks now supports a swappable diagnostics config via `FieldWorks.Diagnostics.config`. -- Default is quiet. `build.ps1` now enables the dev diagnostics config automatically for Debug builds unless you override `/p:UseDevTraceConfig`. You can also force it via `UseDevTraceConfig=true`, by setting environment variable `FW_TRACE_LOG` before the build, or by passing `-TraceCrashes` to `build.ps1`; the dev diagnostics file is copied as `FieldWorks.Diagnostics.config` in the output. +- Default is quiet. Use `build.ps1 -EnableTracing` to copy the dev diagnostics file into the output as `FieldWorks.Diagnostics.config`. You can also force it via `UseDevTraceConfig=true` or by setting environment variable `FW_TRACE_LOG` before the build. - Dev log location: `Output/Debug/FieldWorks.trace.log` (relative to the app folder) so it’s easy to collect alongside binaries. - Dev config logs to `%temp%/FieldWorks.trace.log` and turns on the core switches above. Edit `Src/Common/FieldWorks/FieldWorks.Diagnostics.dev.config` to change log path or switches. @@ -59,5 +59,5 @@ description: "Runtime debugging and tracing guidance for FieldWorks" ## Proposed Improvements (dev-only) - Add `Docs/FieldWorks.trace.sample.config` with the snippet above for easy reuse. -- Introduce a dev flag (`UseDevTraceConfig=true` or `FW_TRACE_LOG` env var) that copies the dev diagnostics file next to `FieldWorks.exe` in Debug builds so tracing is on by default for local runs. +- Keep `build.ps1 -EnableTracing` as the single scripted path that copies the dev diagnostics file next to `FieldWorks.exe` for local trace-enabled runs. - Document standard trace switches in `Docs/logging.md` and keep `EnvVarTraceListener` as the default listener for dev traces. diff --git a/.github/instructions/dotnet-framework.instructions.md b/.github/instructions/dotnet-framework.instructions.md index 9b796f612a..46cdcace02 100644 --- a/.github/instructions/dotnet-framework.instructions.md +++ b/.github/instructions/dotnet-framework.instructions.md @@ -6,44 +6,46 @@ applyTo: '**/*.csproj, **/*.cs' # .NET Framework Development ## Build and Compilation Requirements -- Always use `msbuild /t:rebuild` to build the solution or projects instead of `dotnet build` +- Use `./build.ps1` for normal builds and `./test.ps1` for normal test runs. +- Do not use `dotnet build` for the main repo workflow. +- Avoid direct `msbuild` or project-only builds unless you are explicitly debugging build infrastructure. ## Project File Management -### Non-SDK Style Project Structure -.NET Framework projects use the legacy project format, which differs significantly from modern SDK-style projects: +### SDK-style net48 projects are common +Most managed projects in this repo use SDK-style `.csproj` files while still targeting `.NET Framework` `net48`. -- **Explicit File Inclusion**: All new source files **MUST** be explicitly added to the project file (`.csproj`) using a `` element - - .NET Framework projects do not automatically include files in the directory like SDK-style projects - - Example: `` +- **Implicit file inclusion is common**: SDK-style projects usually include new `.cs` files automatically. +- **Check the touched project before editing**: Some projects still carry explicit includes, linked files, designer items, generated code, or custom metadata that must be preserved. +- **Assembly metadata is managed explicitly**: Keep `GenerateAssemblyInfo` disabled where the project links `CommonAssemblyInfo.cs`. +- **Preserve project-specific settings**: Keep existing settings for x64, WinExe, WindowsDesktop, COM, resources, warnings-as-errors, and custom MSBuild targets. -- **No Implicit Imports**: Unlike SDK-style projects, .NET Framework projects do not automatically import common namespaces or assemblies - -- **Build Configuration**: Contains explicit `` sections for Debug/Release configurations +- **Do not normalize projects unnecessarily**: Avoid converting project structure, import style, or target declarations unless that is the task. -- **Output Paths**: Explicit `` and `` definitions - -- **Target Framework**: Uses `` instead of `` - - Example: `v4.7.2` +### Legacy project caveat +Some non-SDK-style or tool-specific projects may still exist. When you encounter one: +- Keep explicit `` items and other legacy structure intact. +- Update the project file only as much as the change requires. +- Do not assume you can migrate it to SDK-style as part of routine code edits. ## NuGet Package Management - Installing and updating NuGet packages in .NET Framework projects is a complex task requiring coordinated changes to multiple files. Therefore, **do not attempt to install or update NuGet packages** in this project. - Instead, if changes to NuGet references are required, ask the user to install or update NuGet packages using the Visual Studio NuGet Package Manager or Visual Studio package manager console. - When recommending NuGet packages, ensure they are compatible with .NET Framework or .NET Standard 2.0 (not only .NET Core or .NET 5+). -## C# Language Version is 7.3 -- This project is limited to C# 7.3 features only. Please avoid using: +## C# Language Version +- The repo-wide default language version for C# projects is 8.0. +- Do not introduce features that require a newer language version unless the specific project or repo policy is updated first. +- Prefer syntax already used in the touched area so edits remain consistent with surrounding code. + +### C# 8.0 features available by default +- Switch expressions and pattern matching enhancements. +- Using declarations where disposal scope remains clear. +- Null-coalescing assignment and range/index operators when they improve clarity. -### C# 8.0+ Features (NOT SUPPORTED): - - Using declarations (`using var stream = ...`) - - Await using statements (`await using var resource = ...`) - - Switch expressions (`variable switch { ... }`) - - Null-coalescing assignment (`??=`) - - Range and index operators (`array[1..^1]`, `array[^1]`) - - Default interface methods - - Readonly members in structs - - Static local functions - - Nullable reference types (`string?`, `#nullable enable`) +### Features not safe to assume repo-wide +- Nullable reference types are not enabled repo-wide. Do not introduce `string?`, `#nullable enable`, or nullable-flow assumptions unless the project explicitly opts in. +- File-scoped namespaces are not available under the repo default language version and should not be introduced. ### C# 9.0+ Features (NOT SUPPORTED): - Records (`public record Person(string Name)`) @@ -58,26 +60,25 @@ applyTo: '**/*.csproj, **/*.cs' - Record structs - Required members -### Use Instead (C# 7.3 Compatible): - - Traditional using statements with braces - - Switch statements instead of switch expressions - - Explicit null checks instead of null-coalescing assignment - - Array slicing with manual indexing - - Abstract classes or interfaces instead of default interface methods +### Use instead when staying within repo defaults + - Block-scoped namespaces + - Explicit null checks unless the project has enabled nullable analysis + - Established project patterns over newer syntax for its own sake ## Environment Considerations (Windows environment) -- Use Windows-style paths with backslashes (e.g., `C:\path\to\file.cs`) -- Use Windows-appropriate commands when suggesting terminal operations -- Consider Windows-specific behaviors when working with file system operations +- FieldWorks builds and managed test runs are Windows-only. +- On non-Windows hosts, limit work to editing, code search, docs, and specs. +- When suggesting build or test commands, prefer the repo PowerShell scripts and Windows-oriented workflows. ## Common .NET Framework Pitfalls and Best Practices ### Async/Await Patterns -- **ConfigureAwait(false)**: Always use `ConfigureAwait(false)` in library code to avoid deadlocks: +- **ConfigureAwait(false)**: Use it deliberately in library or background code when you do not need to resume on the UI thread: ```csharp var result = await SomeAsyncMethod().ConfigureAwait(false); ``` -- **Avoid sync-over-async**: Don't use `.Result` or `.Wait()` or `.GetAwaiter().GetResult()`. These sync-over-async patterns can lead to deadlocks and poor performance. Always use `await` for asynchronous calls. +- **Avoid sync-over-async**: Don't use `.Result`, `.Wait()`, or `.GetAwaiter().GetResult()` unless you have a clear, reviewed reason. These patterns can deadlock desktop UI code. +- **Respect the UI thread**: Do not move UI-bound code onto background threads or block the UI while waiting on long-running work. ### DateTime Handling - **Use DateTimeOffset for timestamps**: Prefer `DateTimeOffset` over `DateTime` for absolute time points @@ -106,6 +107,14 @@ applyTo: '**/*.csproj, **/*.cs' - **Don't swallow exceptions**: Always log or re-throw exceptions appropriately - **Use using for disposable resources**: Ensures proper cleanup even when exceptions occur +### Resources and localization +- Put user-visible strings into `.resx` resources and follow existing localization patterns. +- Avoid hardcoding new UI strings in C# code. + +### Interop and COM +- Treat P/Invoke, COM, registration-free COM, and serialization boundaries as high risk. +- Preserve existing manifest, marshaling, and build settings unless the task explicitly requires changing them. + ### Performance Considerations - **Avoid boxing**: Be aware of boxing/unboxing with value types and generics - **String interning**: Use `string.Intern()` judiciously for frequently used strings diff --git a/.github/instructions/repo.instructions.md b/.github/instructions/repo.instructions.md index d4645a4cb7..cddb75eb91 100644 --- a/.github/instructions/repo.instructions.md +++ b/.github/instructions/repo.instructions.md @@ -12,6 +12,3 @@ Provide clear, concise, and enforceable rules that help AI coding agents and aut ## Rules (high-impact, short) - Prefer the repository top-level build (`.\build.ps1`) and solution (`FieldWorks.sln`) for full builds. - Keep localization consistent: use `.resx` and follow `crowdin.json` for crowdin integration. -- Before commit/push, run the existing VS Code task `CI: Full local check`. -- After rebase/merge/cherry-pick conflict resolution, run `CI: Whitespace check`; if it fixes files, restage them and rerun. -- When rewriting history or adding commits, run `CI: Commit messages` before pushing. diff --git a/.github/instructions/terminal.instructions.md b/.github/instructions/terminal.instructions.md index 6a28b49ef8..927d119e99 100644 --- a/.github/instructions/terminal.instructions.md +++ b/.github/instructions/terminal.instructions.md @@ -13,8 +13,6 @@ Placement policy for wrappers: **MCP-first:** When the `ps-tools` MCP server is running, prefer MCP tools (`Git-Search`, `Read-FileContent`, `Invoke-AgentTask`, `build`, `test`, agent tools) instead of direct terminal commands. Use wrappers only when MCP is unavailable. -**Task-first for CI parity:** Prefer the existing VS Code tasks `CI: Whitespace check`, `CI: Commit messages`, and `CI: Full local check` over ad-hoc shell commands. These tasks are already allowed for agent use and match the repository CI checks. - ## Transformations | ❌ Blocked | ✅ Use Instead | diff --git a/.github/prompts/opsx-archive.prompt.md b/.github/prompts/opsx-archive.prompt.md index 4e2ee18914..1163776da4 100644 --- a/.github/prompts/opsx-archive.prompt.md +++ b/.github/prompts/opsx-archive.prompt.md @@ -56,7 +56,7 @@ Archive a completed change in the experimental workflow. - If changes needed: "Sync now (recommended)", "Archive without syncing" - If already synced: "Archive now", "Sync anyway", "Cancel" - If user chooses sync, execute `/opsx:sync` logic. Proceed to archive regardless of choice. + If user chooses sync, use Task tool (subagent_type: "general-purpose", prompt: "Use Skill tool to invoke openspec-sync-specs for change ''. Delta spec analysis: "). Proceed to archive regardless of choice. 5. **Perform the archive** @@ -150,5 +150,5 @@ Target archive directory already exists. - Don't block archive on warnings - just inform and confirm - Preserve .openspec.yaml when moving to archive (it moves with the directory) - Show clear summary of what happened -- If sync is requested, use /opsx:sync approach (agent-driven) +- If sync is requested, use the Skill tool to invoke `openspec-sync-specs` (agent-driven) - If delta specs exist, always run the sync assessment and show the combined summary before prompting diff --git a/.github/prompts/opsx-bulk-archive.prompt.md b/.github/prompts/opsx-bulk-archive.prompt.md index f8e773fed0..be3f901900 100644 --- a/.github/prompts/opsx-bulk-archive.prompt.md +++ b/.github/prompts/opsx-bulk-archive.prompt.md @@ -222,7 +222,7 @@ Failed K changes: ``` ## No Changes to Archive -No active changes found. Use `/opsx:new` to create a new change. +No active changes found. Create a new change to get started. ``` **Guardrails** diff --git a/.github/prompts/opsx-explore.prompt.md b/.github/prompts/opsx-explore.prompt.md index fd588622a3..b21a2266dc 100644 --- a/.github/prompts/opsx-explore.prompt.md +++ b/.github/prompts/opsx-explore.prompt.md @@ -4,7 +4,7 @@ description: Enter explore mode - think through ideas, investigate problems, cla Enter explore mode. Think deeply. Visualize freely. Follow the conversation wherever it goes. -**IMPORTANT: Explore mode is for thinking, not implementing.** You may read files, search code, and investigate the codebase, but you must NEVER write code or implement features. If the user asks you to implement something, remind them to exit explore mode first (e.g., start a change with `/opsx:new` or `/opsx:ff`). You MAY create OpenSpec artifacts (proposals, designs, specs) if the user asks—that's capturing thinking, not implementing. +**IMPORTANT: Explore mode is for thinking, not implementing.** You may read files, search code, and investigate the codebase, but you must NEVER write code or implement features. If the user asks you to implement something, remind them to exit explore mode first and create a change proposal. You MAY create OpenSpec artifacts (proposals, designs, specs) if the user asks—that's capturing thinking, not implementing. **This is a stance, not a workflow.** There are no fixed steps, no required sequence, no mandatory outputs. You're a thinking partner helping the user explore. @@ -97,8 +97,7 @@ If the user mentioned a specific change name, read its artifacts for context. Think freely. When insights crystallize, you might offer: -- "This feels solid enough to start a change. Want me to create one?" - → Can transition to `/opsx:new` or `/opsx:ff` +- "This feels solid enough to start a change. Want me to create a proposal?" - Or keep exploring - no pressure to formalize ### When a change exists @@ -150,7 +149,7 @@ If the user mentions a change or you detect one is relevant: There's no required ending. Discovery might: -- **Flow into action**: "Ready to start? `/opsx:new` or `/opsx:ff`" +- **Flow into a proposal**: "Ready to start? I can create a change proposal." - **Result in artifact updates**: "Updated design.md with these decisions" - **Just provide clarity**: User has what they need, moves on - **Continue later**: "We can pick this up anytime" diff --git a/.github/prompts/opsx-ff.prompt.md b/.github/prompts/opsx-ff.prompt.md index 6b3dc00c77..06cea28020 100644 --- a/.github/prompts/opsx-ff.prompt.md +++ b/.github/prompts/opsx-ff.prompt.md @@ -81,7 +81,10 @@ After completing all artifacts, summarize: - Follow the `instruction` field from `openspec instructions` for each artifact type - The schema defines what each artifact should contain - follow it - Read dependency artifacts for context before creating new ones -- Use the `template` as a starting point, filling in based on context +- Use `template` as the structure for your output file - fill in its sections +- **IMPORTANT**: `context` and `rules` are constraints for YOU, not content for the file + - Do NOT copy ``, ``, `` blocks into the artifact + - These guide what you write, but should never appear in the output **Guardrails** - Create ALL artifacts needed for implementation (as defined by schema's `apply.requires`) diff --git a/.github/prompts/opsx-onboard.prompt.md b/.github/prompts/opsx-onboard.prompt.md index 1414f1e1a7..8100b39057 100644 --- a/.github/prompts/opsx-onboard.prompt.md +++ b/.github/prompts/opsx-onboard.prompt.md @@ -8,16 +8,19 @@ Guide the user through their first complete OpenSpec workflow cycle. This is a t ## Preflight -Before starting, check if OpenSpec is initialized: +Before starting, check if the OpenSpec CLI is installed: ```bash -openspec status --json 2>&1 || echo "NOT_INITIALIZED" +# Unix/macOS +openspec --version 2>&1 || echo "CLI_NOT_INSTALLED" +# Windows (PowerShell) +# if (Get-Command openspec -ErrorAction SilentlyContinue) { openspec --version } else { echo "CLI_NOT_INSTALLED" } ``` -**If not initialized:** -> OpenSpec isn't set up in this project yet. Run `openspec init` first, then come back to `/opsx:onboard`. +**If CLI not installed:** +> OpenSpec CLI is not installed. Install it first, then come back to `/opsx:onboard`. -Stop here if not initialized. +Stop here if not installed. --- @@ -60,7 +63,10 @@ Scan the codebase for small improvement opportunities. Look for: Also check recent git activity: ```bash +# Unix/macOS git log --oneline -10 2>/dev/null || echo "No git history" +# Windows (PowerShell) +# git log --oneline -10 2>$null; if ($LASTEXITCODE -ne 0) { echo "No git history" } ``` ### Present Suggestions @@ -255,7 +261,10 @@ For a small task like this, we might only need one spec file. **DO:** Create the spec file: ```bash +# Unix/macOS mkdir -p openspec/changes//specs/ +# Windows (PowerShell) +# New-Item -ItemType Directory -Force -Path "openspec/changes//specs/" ``` Draft the spec content: @@ -450,21 +459,29 @@ This same rhythm works for any size change—a small fix or a major feature. ## Command Reference +**Core workflow:** + | Command | What it does | |---------|--------------| +| `/opsx:propose` | Create a change and generate all artifacts | | `/opsx:explore` | Think through problems before/during work | -| `/opsx:new` | Start a new change, step through artifacts | -| `/opsx:ff` | Fast-forward: create all artifacts at once | -| `/opsx:continue` | Continue working on an existing change | | `/opsx:apply` | Implement tasks from a change | -| `/opsx:verify` | Verify implementation matches artifacts | | `/opsx:archive` | Archive a completed change | +**Additional commands:** + +| Command | What it does | +|---------|--------------| +| `/opsx:new` | Start a new change, step through artifacts one at a time | +| `/opsx:continue` | Continue working on an existing change | +| `/opsx:ff` | Fast-forward: create all artifacts at once | +| `/opsx:verify` | Verify implementation matches artifacts | + --- ## What's Next? -Try `/opsx:new` or `/opsx:ff` on something you actually want to build. You've got the rhythm now! +Try `/opsx:propose` on something you actually want to build. You've got the rhythm now! ``` --- @@ -494,17 +511,25 @@ If the user says they just want to see the commands or skip the tutorial: ``` ## OpenSpec Quick Reference +**Core workflow:** + | Command | What it does | |---------|--------------| +| `/opsx:propose ` | Create a change and generate all artifacts | | `/opsx:explore` | Think through problems (no code changes) | +| `/opsx:apply ` | Implement tasks | +| `/opsx:archive ` | Archive when done | + +**Additional commands:** + +| Command | What it does | +|---------|--------------| | `/opsx:new ` | Start a new change, step by step | -| `/opsx:ff ` | Fast-forward: all artifacts at once | | `/opsx:continue ` | Continue an existing change | -| `/opsx:apply ` | Implement tasks | +| `/opsx:ff ` | Fast-forward: all artifacts at once | | `/opsx:verify ` | Verify implementation | -| `/opsx:archive ` | Archive when done | -Try `/opsx:new` to start your first change, or `/opsx:ff` if you want to move fast. +Try `/opsx:propose` to start your first change. ``` Exit gracefully. diff --git a/.github/skills/code-review-skill-main/.gitignore b/.github/skills/code-review-skill-main/.gitignore new file mode 100644 index 0000000000..3f7a9f039e --- /dev/null +++ b/.github/skills/code-review-skill-main/.gitignore @@ -0,0 +1,25 @@ +# OS files +.DS_Store +Thumbs.db + +# Editor files +*.swp +*.swo +*~ +.idea/ +.vscode/ + +# Python +__pycache__/ +*.py[cod] +*.egg-info/ +.eggs/ +dist/ +build/ + +# Logs +*.log + +# Local config +.env +.env.local diff --git a/.github/skills/code-review-skill-main/CONTRIBUTING.md b/.github/skills/code-review-skill-main/CONTRIBUTING.md new file mode 100644 index 0000000000..3cfb4f4c88 --- /dev/null +++ b/.github/skills/code-review-skill-main/CONTRIBUTING.md @@ -0,0 +1,321 @@ +# Contributing to AI Code Review Guide + +Thank you for your interest in contributing! This document provides guidelines for contributing to this Claude Code Skill project. + +## Claude Code Skill 开发规范 + +本项目是一个 Claude Code Skill,贡献者需要遵循以下规范。 + +### 目录结构 + +``` +ai-code-review-guide/ +├── SKILL.md # 必需:主文件(始终加载) +├── README.md # 项目说明文档 +├── CONTRIBUTING.md # 贡献指南(本文件) +├── LICENSE # 许可证 +├── reference/ # 按需加载的详细指南 +│ ├── react.md +│ ├── vue.md +│ ├── rust.md +│ ├── typescript.md +│ ├── python.md +│ ├── c.md +│ ├── cpp.md +│ ├── common-bugs-checklist.md +│ ├── security-review-guide.md +│ └── code-review-best-practices.md +├── assets/ # 模板和快速参考 +│ ├── review-checklist.md +│ └── pr-review-template.md +└── scripts/ # 工具脚本 + └── pr-analyzer.py +``` + +### Frontmatter 规范 + +SKILL.md 必须包含 YAML frontmatter: + +```yaml +--- +name: skill-name +description: | + 功能描述。触发条件说明。 + Use when [具体使用场景]。 +allowed-tools: ["Read", "Grep", "Glob"] # 可选:限制工具访问 +--- +``` + +#### 必需字段 + +| 字段 | 说明 | 约束 | +|------|------|------| +| `name` | Skill 标识符 | 小写字母、数字、连字符;最多 64 字符 | +| `description` | 功能和激活条件 | 最多 1024 字符;必须包含 "Use when" | + +#### 可选字段 + +| 字段 | 说明 | 示例 | +|------|------|------| +| `allowed-tools` | 限制工具访问 | `["Read", "Grep", "Glob"]` | + +### 命名约定 + +**Skill 名称规则**: +- 仅使用小写字母、数字和连字符(kebab-case) +- 最多 64 个字符 +- 避免下划线或大写字母 + +``` +✅ 正确:code-review-excellence, typescript-advanced-types +❌ 错误:CodeReview, code_review, TYPESCRIPT +``` + +**文件命名规则**: +- reference 文件使用小写:`react.md`, `vue.md` +- 多词文件使用连字符:`common-bugs-checklist.md` + +### Description 写法规范 + +Description 必须包含两部分: + +1. **功能陈述**:具体说明 Skill 能做什么 +2. **触发条件**:以 "Use when" 开头,说明何时激活 + +```yaml +# ✅ 正确示例 +description: | + Provides comprehensive code review guidance for React 19, Vue 3, Rust, + TypeScript, Java, Python, and C/C++. + Helps catch bugs, improve code quality, and give constructive feedback. + Use when reviewing pull requests, conducting PR reviews, establishing + review standards, or mentoring developers through code reviews. + +# ❌ 错误示例(太模糊,缺少触发条件) +description: | + Helps with code review. +``` + +### Progressive Disclosure(渐进式披露) + +Claude 只在需要时加载支持文件,不会一次性加载所有内容。 + +#### 文件职责划分 + +| 文件 | 加载时机 | 内容 | +|------|----------|------| +| `SKILL.md` | 始终加载 | 核心原则、快速索引、何时使用 | +| `reference/*.md` | 按需加载 | 语言/框架的详细指南 | +| `assets/*.md` | 明确需要时 | 模板、清单 | +| `scripts/*.py` | 明确指引时 | 工具脚本 | + +#### 内容组织原则 + +**SKILL.md**(~200 行以内): +- 简述:2-3 句话说明用途 +- 核心原则和方法论 +- 语言/框架索引表(链接到 reference/) +- 何时使用此 Skill + +**reference/*.md**(详细内容): +- 完整的代码示例 +- 所有最佳实践 +- Review Checklist +- 边界情况和陷阱 + +### 文件引用规范 + +在 SKILL.md 中引用其他文件时: + +```markdown +# ✅ 正确:使用 Markdown 链接格式 +| **React** | [React Guide](reference/react.md) | Hooks, React 19, RSC | +| **Vue 3** | [Vue Guide](reference/vue.md) | Composition API | + +详见 [React Guide](reference/react.md) 获取完整指南。 + +# ❌ 错误:使用代码块格式 +参考 `reference/react.md` 文件。 +``` + +**路径规则**: +- 使用相对路径(相对于 Skill 目录) +- 使用正斜杠 `/`,不使用反斜杠 +- 不需要 `./` 前缀 + +--- + +## 贡献类型 + +### 添加新语言支持 + +1. 在 `reference/` 目录创建新文件(如 `go.md`) +2. 遵循以下结构: + +```markdown +# [Language] Code Review Guide + +> 简短描述,一句话说明覆盖内容。 + +## 目录 +- [主题1](#主题1) +- [主题2](#主题2) +- [Review Checklist](#review-checklist) + +--- + +## 主题1 + +### 子主题 + +```[language] +// ❌ Bad pattern - 说明为什么不好 +bad_code_example() + +// ✅ Good pattern - 说明为什么好 +good_code_example() +``` + +--- + +## Review Checklist + +### 类别1 +- [ ] 检查项 1 +- [ ] 检查项 2 +``` + +3. 在 `SKILL.md` 的索引表中添加链接 +4. 更新 `README.md` 的统计信息 + +### 添加框架模式 + +1. 确保引用官方文档 +2. 包含版本号(如 "React 19", "Vue 3.5+") +3. 提供可运行的代码示例 +4. 添加对应的 checklist 项 + +### 改进现有内容 + +- 修复拼写或语法错误 +- 更新过时的模式(注明版本变化) +- 添加边界情况示例 +- 改进代码示例的清晰度 + +--- + +## 代码示例规范 + +### 格式要求 + +```markdown +// ❌ 问题描述 - 解释为什么这样做不好 +problematic_code() + +// ✅ 推荐做法 - 解释为什么这样做更好 +recommended_code() +``` + +### 质量标准 + +- 示例应基于真实场景,避免人为构造 +- 同时展示问题和解决方案 +- 保持示例简洁聚焦 +- 包含必要的上下文(import 语句等) + +--- + +## 提交流程 + +### Issue 报告 + +- 使用 GitHub Issues 报告问题或建议 +- 提供清晰的描述和示例 +- 标注相关的语言/框架 + +### Pull Request 流程 + +1. Fork 仓库 +2. 创建功能分支:`git checkout -b feature/add-go-support` +3. 进行修改 +4. 提交(见下文 commit 格式) +5. 推送到 fork:`git push origin feature/add-go-support` +6. 创建 Pull Request + +### Commit 消息格式 + +``` +类型: 简短描述 + +详细说明(如需要) + +- 具体变更 1 +- 具体变更 2 +``` + +**类型**: +- `feat`: 新功能或新内容 +- `fix`: 修复错误 +- `docs`: 仅文档变更 +- `refactor`: 重构(不改变功能) +- `chore`: 维护性工作 + +**示例**: +``` +feat: 添加 Go 语言代码审查指南 + +- 新增 reference/go.md +- 覆盖错误处理、并发、接口设计 +- 更新 SKILL.md 索引表 +``` + +--- + +## Skill 设计原则 + +### 单一职责 + +每个 Skill 专注一个核心能力。本 Skill 专注于**代码审查**,不应扩展到: +- 代码生成 +- 项目初始化 +- 部署配置 + +### 版本管理 + +- 在 reference 文件中标注框架/语言版本 +- 更新时在 commit 中说明版本变化 +- 过时内容应更新而非删除(除非完全废弃) + +### 内容质量 + +- 所有建议应有依据(官方文档、最佳实践) +- 避免主观偏好(如代码风格),专注于客观问题 +- 优先覆盖常见陷阱和安全问题 + +--- + +## 常见问题 + +### Q: 如何测试我的更改? + +将修改后的 Skill 复制到 `~/.claude/skills/` 目录,然后在 Claude Code 中测试: +```bash +cp -r ai-code-review-guide ~/.claude/skills/code-review-excellence +``` + +### Q: 我应该更新 SKILL.md 还是 reference 文件? + +- **SKILL.md**:只修改索引表或核心原则 +- **reference/*.md**:添加/更新具体的语言或框架内容 + +### Q: 如何处理过时的内容? + +1. 标注版本变化(如 "React 18 → React 19") +2. 保留旧版本内容(如果仍有用户使用) +3. 在 checklist 中更新相关项 + +--- + +## 问题咨询 + +如有任何问题,欢迎在 GitHub Issues 中提问。 diff --git a/.github/skills/code-review-skill-main/LICENSE b/.github/skills/code-review-skill-main/LICENSE new file mode 100644 index 0000000000..8217668259 --- /dev/null +++ b/.github/skills/code-review-skill-main/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2025 tt-a1i + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/.github/skills/code-review-skill-main/README.md b/.github/skills/code-review-skill-main/README.md new file mode 100644 index 0000000000..084d637565 --- /dev/null +++ b/.github/skills/code-review-skill-main/README.md @@ -0,0 +1,389 @@ +# Code Review Excellence + +[English](#english) | [中文](#中文) + +--- + +## English + +> A modular code review skill for Claude Code, covering React 19, Vue 3, Rust, TypeScript, Java, Python, C/C++, CSS/Less/Sass, architecture design, and performance optimization. + +[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) + +### Overview + +This is a Claude Code skill designed to help developers conduct effective code reviews. It provides: + +- **Language-specific patterns** for React 19, Vue 3, Rust, TypeScript/JavaScript, Java, Python, C/C++ +- **Modern framework support** including React Server Components, TanStack Query v5, Suspense & Streaming +- **Comprehensive checklists** for security, performance, and code quality +- **Best practices** for giving constructive feedback +- **Modular structure** for on-demand loading (reduces context usage) + +### Features + +#### Supported Languages & Frameworks + +| Category | Coverage | +|----------|----------| +| **React** | Hooks rules, useEffect patterns, useMemo/useCallback, React 19 Actions (useActionState, useFormStatus, useOptimistic), Server Components, Suspense & Streaming | +| **Vue 3** | Composition API, reactivity system, defineProps/defineEmits, watch cleanup | +| **Rust** | Ownership & borrowing, unsafe code review, async/await, error handling (thiserror vs anyhow) | +| **TypeScript** | Type safety, async/await patterns, common pitfalls | +| **Java** | Java 17/21 features (Records, Switch), Spring Boot 3, Virtual Threads, Stream API best practices | +| **Go** | Error handling, goroutines/channels, context propagation, interface design, testing patterns | +| **C** | Pointer safety, UB pitfalls, resource management, error handling | +| **C++** | RAII, ownership, move semantics, exception safety, performance | +| **CSS/Less/Sass** | CSS variables, !important usage, performance optimization, responsive design, browser compatibility | +| **TanStack Query** | v5 best practices, queryOptions, useSuspenseQuery, optimistic updates | +| **Architecture** | SOLID principles, anti-patterns, coupling/cohesion, layered architecture | +| **Performance** | Core Web Vitals, N+1 queries, memory leaks, algorithm complexity | + +#### Content Statistics + +| File | Lines | Description | +|------|-------|-------------| +| **SKILL.md** | ~190 | Core principles + index (loads on skill activation) | +| **reference/react.md** | ~870 | React 19/Next.js/TanStack Query v5 patterns (on-demand) | +| **reference/vue.md** | ~920 | Vue 3.5 patterns + Composition API (on-demand) | +| **reference/rust.md** | ~840 | Rust async/ownership/cancellation safety (on-demand) | +| **reference/typescript.md** | ~540 | TypeScript generics/strict mode/ESLint (on-demand) | +| **reference/java.md** | ~800 | Java 17/21 & Spring Boot 3 patterns (on-demand) | +| **reference/python.md** | ~1070 | Python async/typing/pytest (on-demand) | +| **reference/go.md** | ~990 | Go goroutines/channels/context/interfaces (on-demand) | +| **reference/c.md** | ~210 | C memory safety/UB/error handling (on-demand) | +| **reference/cpp.md** | ~300 | C++ RAII/lifetime/move semantics (on-demand) | +| **reference/css-less-sass.md** | ~660 | CSS/Less/Sass variables/performance/responsive (on-demand) | +| **reference/architecture-review-guide.md** | ~470 | SOLID/anti-patterns/coupling analysis (on-demand) | +| **reference/performance-review-guide.md** | ~750 | Core Web Vitals/N+1/memory/complexity (on-demand) | + +**Total: ~9,500 lines** of review guidelines and code examples, loaded on-demand per language. + +### Installation + +#### For Claude Code Users + +Copy the skill to your Claude Code skills directory: + +```bash +# Clone the repository +git clone https://github.com/tt-a1i/code-review-skill.git + +# Copy to Claude Code skills directory +cp -r code-review-skill ~/.claude/skills/code-review-excellence +``` + +Or add to your existing Claude Code plugin: + +```bash +# Copy the entire directory structure +cp -r code-review-skill ~/.claude/plugins/your-plugin/skills/code-review/ +``` + +### Usage + +Once installed, you can invoke the skill in Claude Code: + +``` +Use code-review-excellence skill to review this PR +``` + +Or reference it in your custom commands. + +### File Structure + +``` +code-review-skill/ +├── SKILL.md # Core skill (loads immediately) +├── README.md # This file +├── LICENSE # MIT License +├── CONTRIBUTING.md # Contribution guidelines +├── reference/ # On-demand loaded guides +│ ├── react.md # React/Next.js patterns (on-demand) +│ ├── vue.md # Vue 3 patterns (on-demand) +│ ├── rust.md # Rust patterns (on-demand) +│ ├── typescript.md # TypeScript/JS patterns (on-demand) +│ ├── java.md # Java patterns (on-demand) +│ ├── python.md # Python patterns (on-demand) +│ ├── go.md # Go patterns (on-demand) +│ ├── c.md # C patterns (on-demand) +│ ├── cpp.md # C++ patterns (on-demand) +│ ├── css-less-sass.md # CSS/Less/Sass patterns (on-demand) +│ ├── architecture-review-guide.md # Architecture design review (on-demand) +│ ├── performance-review-guide.md # Performance review (on-demand) +│ ├── common-bugs-checklist.md # Language-specific bug patterns +│ ├── security-review-guide.md # Security review checklist +│ └── code-review-best-practices.md +├── assets/ +│ ├── review-checklist.md # Quick reference checklist +│ └── pr-review-template.md # PR review comment template +└── scripts/ + └── pr-analyzer.py # PR complexity analyzer +``` + +### On-Demand Loading + +This skill uses **Progressive Disclosure** to minimize context usage: + +1. **SKILL.md** (~180 lines) loads when the skill is activated +2. **Language-specific files** load only when reviewing that language +3. **Reference files** load only when explicitly needed + +This means reviewing a React PR only loads SKILL.md + react.md, not Vue/Rust/Python content. + +### Key Topics Covered + +#### Java & Spring Boot + +- **Java 17/21 Features**: Records, Pattern Matching for Switch, Text Blocks +- **Virtual Threads**: High-throughput I/O with Project Loom +- **Spring Boot 3**: Constructor Injection, `@ConfigurationProperties`, ProblemDetail +- **JPA Performance**: Solving N+1 problems, correct Entity design (equals/hashCode) + +#### React 19 + +- `useActionState` - Unified form state management +- `useFormStatus` - Access parent form status without prop drilling +- `useOptimistic` - Optimistic UI updates with automatic rollback +- Server Actions integration with Next.js 15+ + +#### Suspense & Streaming SSR + +- Suspense boundary design patterns +- Error Boundary integration +- Next.js 15 streaming with `loading.tsx` +- `use()` Hook for Promise consumption + +#### TanStack Query v5 + +- `queryOptions` for type-safe query definitions +- `useSuspenseQuery` best practices +- Optimistic updates (simplified v5 approach) +- `isPending` vs `isLoading` vs `isFetching` + +#### Rust + +- Ownership patterns and common pitfalls +- `unsafe` code review requirements (SAFETY comments) +- Async/await patterns (avoiding blocking in async context) +- Error handling (thiserror for libraries, anyhow for applications) + +#### C/C++ + +- **C**: Pointer safety, UB pitfalls, resource cleanup, integer overflow +- **C++**: RAII ownership, Rule of 0/3/5, move semantics, exception safety + +### Contributing + +Contributions are welcome! Please read [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines. + +#### Areas for Contribution + +- Additional language support (C#, Swift, Kotlin, etc.) +- More framework-specific patterns +- Translations to other languages +- Bug pattern submissions + +### License + +This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. + +### References + +- [React v19 Official Documentation](https://react.dev/blog/2024/12/05/react-19) +- [TanStack Query v5 Documentation](https://tanstack.com/query/latest) +- [Vue 3 Composition API](https://vuejs.org/guide/extras/composition-api-faq.html) +- [Rust API Guidelines](https://rust-lang.github.io/api-guidelines/) + +--- + +## 中文 + +> 一个模块化的 Claude Code 代码审查技能,覆盖 React 19、Vue 3、Rust、TypeScript、Java、Python、C/C++、CSS/Less/Sass、架构设计和性能优化。 + +[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) + +### 概述 + +这是一个为 Claude Code 设计的代码审查技能,旨在帮助开发者进行高效的代码审查。它提供: + +- **语言特定模式**:覆盖 React 19、Vue 3、Rust、TypeScript/JavaScript、Java、Python、C/C++ +- **现代框架支持**:包括 React Server Components、TanStack Query v5、Suspense & Streaming +- **全面的检查清单**:安全、性能和代码质量检查 +- **最佳实践**:如何提供建设性的反馈 +- **模块化结构**:按需加载,减少上下文占用 + +### 特性 + +#### 支持的语言和框架 + +| 分类 | 覆盖内容 | +|------|----------| +| **React** | Hooks 规则、useEffect 模式、useMemo/useCallback、React 19 Actions(useActionState、useFormStatus、useOptimistic)、Server Components、Suspense & Streaming | +| **Vue 3** | Composition API、响应性系统、defineProps/defineEmits、watch 清理 | +| **Rust** | 所有权与借用、unsafe 代码审查、async/await、错误处理(thiserror vs anyhow) | +| **TypeScript** | 类型安全、async/await 模式、常见陷阱 | +| **Java** | Java 17/21 特性(Records, Switch)、Spring Boot 3、虚拟线程、Stream API 最佳实践 | +| **Go** | 错误处理、goroutine/channel、context 传播、接口设计、测试模式 | +| **C** | 指针/缓冲区安全、UB、资源管理、错误处理 | +| **C++** | RAII、生命周期、Rule of 0/3/5、异常安全 | +| **CSS/Less/Sass** | CSS 变量规范、!important 使用、性能优化、响应式设计、浏览器兼容性 | +| **TanStack Query** | v5 最佳实践、queryOptions、useSuspenseQuery、乐观更新 | +| **架构设计** | SOLID 原则、架构反模式、耦合度/内聚性、分层架构 | +| **性能优化** | Core Web Vitals、N+1 查询、内存泄漏、算法复杂度 | + +#### 内容统计 + +| 文件 | 行数 | 描述 | +|------|------|------| +| **SKILL.md** | ~190 | 核心原则 + 索引(技能激活时加载)| +| **reference/react.md** | ~870 | React 19/Next.js/TanStack Query v5(按需加载)| +| **reference/vue.md** | ~920 | Vue 3.5 + Composition API(按需加载)| +| **reference/rust.md** | ~840 | Rust async/所有权/取消安全性(按需加载)| +| **reference/typescript.md** | ~540 | TypeScript 泛型/strict 模式/ESLint(按需加载)| +| **reference/java.md** | ~800 | Java 17/21 & Spring Boot 3 模式(按需加载)| +| **reference/python.md** | ~1070 | Python async/类型注解/pytest(按需加载)| +| **reference/go.md** | ~990 | Go goroutine/channel/context/接口(按需加载)| +| **reference/c.md** | ~210 | C 内存安全/UB/错误处理(按需加载)| +| **reference/cpp.md** | ~300 | C++ RAII/生命周期/移动语义(按需加载)| +| **reference/css-less-sass.md** | ~660 | CSS/Less/Sass 变量/性能/响应式(按需加载)| +| **reference/architecture-review-guide.md** | ~470 | SOLID/反模式/耦合度分析(按需加载)| +| **reference/performance-review-guide.md** | ~750 | Core Web Vitals/N+1/内存/复杂度(按需加载)| + +**总计:9,500 行**审查指南和代码示例,按语言按需加载。 + +### 安装 + +#### Claude Code 用户 + +将技能复制到 Claude Code skills 目录: + +```bash +# 克隆仓库 +git clone https://github.com/tt-a1i/code-review-skill.git + +# 复制到 Claude Code skills 目录 +cp -r code-review-skill ~/.claude/skills/code-review-excellence +``` + +或添加到现有的 Claude Code 插件: + +```bash +# 复制整个目录结构 +cp -r code-review-skill ~/.claude/plugins/your-plugin/skills/code-review/ +``` + +### 使用方法 + +安装后,可以在 Claude Code 中调用该技能: + +``` +使用 code-review-excellence skill 来审查这个 PR +``` + +或在自定义命令中引用。 + +### 文件结构 + +``` +code-review-skill/ +├── SKILL.md # 核心技能(立即加载) +├── README.md # 本文件 +├── LICENSE # MIT 许可证 +├── CONTRIBUTING.md # 贡献指南 +├── reference/ # 按需加载的指南 +│ ├── react.md # React/Next.js 模式(按需加载) +│ ├── vue.md # Vue 3 模式(按需加载) +│ ├── rust.md # Rust 模式(按需加载) +│ ├── typescript.md # TypeScript/JS 模式(按需加载) +│ ├── java.md # Java 模式(按需加载) +│ ├── python.md # Python 模式(按需加载) +│ ├── go.md # Go 模式(按需加载) +│ ├── c.md # C 模式(按需加载) +│ ├── cpp.md # C++ 模式(按需加载) +│ ├── css-less-sass.md # CSS/Less/Sass 模式(按需加载) +│ ├── architecture-review-guide.md # 架构设计审查(按需加载) +│ ├── performance-review-guide.md # 性能审查(按需加载) +│ ├── common-bugs-checklist.md # 语言特定的错误模式 +│ ├── security-review-guide.md # 安全审查清单 +│ └── code-review-best-practices.md +├── assets/ +│ ├── review-checklist.md # 快速参考清单 +│ └── pr-review-template.md # PR 审查评论模板 +└── scripts/ + └── pr-analyzer.py # PR 复杂度分析器 +``` + +### 按需加载机制 + +此技能使用 **Progressive Disclosure(渐进式披露)** 来最小化上下文占用: + +1. **SKILL.md**(~180 行)在技能激活时加载 +2. **语言特定文件** 仅在审查该语言时加载 +3. **参考文件** 仅在明确需要时加载 + +这意味着审查 React PR 时只加载 SKILL.md + react.md,不会加载 Vue/Rust/Python 内容。 + +### 核心内容 + +#### Java & Spring Boot + +- **Java 17/21 特性**:Records、Switch 模式匹配、文本块 +- **虚拟线程**:Project Loom 带来的高吞吐量 I/O +- **Spring Boot 3**:构造器注入、`@ConfigurationProperties`、ProblemDetail +- **JPA 性能**:解决 N+1 问题、正确的 Entity 设计(equals/hashCode) + +#### React 19 + +- `useActionState` - 统一的表单状态管理 +- `useFormStatus` - 无需 props 透传即可访问父表单状态 +- `useOptimistic` - 带自动回滚的乐观 UI 更新 +- 与 Next.js 15+ Server Actions 集成 + +#### Suspense & Streaming SSR + +- Suspense 边界设计模式 +- Error Boundary 集成 +- Next.js 15 streaming 与 `loading.tsx` +- `use()` Hook 消费 Promise + +#### TanStack Query v5 + +- `queryOptions` 类型安全的查询定义 +- `useSuspenseQuery` 最佳实践 +- 乐观更新(v5 简化方案) +- `isPending` vs `isLoading` vs `isFetching` 区别 + +#### Rust + +- 所有权模式和常见陷阱 +- `unsafe` 代码审查要求(SAFETY 注释) +- Async/await 模式(避免在异步上下文中阻塞) +- 错误处理(库用 thiserror,应用用 anyhow) + +#### C/C++ + +- **C**:指针/缓冲区安全、UB、资源清理、整数溢出 +- **C++**:RAII 所有权、Rule of 0/3/5、移动语义、异常安全 + +### 贡献 + +欢迎贡献!请阅读 [CONTRIBUTING.md](CONTRIBUTING.md) 了解贡献指南。 + +#### 可贡献的方向 + +- 添加更多语言支持(C#、Swift、Kotlin 等) +- 更多框架特定模式 +- 翻译成其他语言 +- 提交错误模式 + +### 许可证 + +本项目采用 MIT 许可证 - 详见 [LICENSE](LICENSE) 文件。 + +### 参考资料 + +- [React v19 官方文档](https://react.dev/blog/2024/12/05/react-19) +- [TanStack Query v5 文档](https://tanstack.com/query/latest) +- [Vue 3 Composition API](https://vuejs.org/guide/extras/composition-api-faq.html) +- [Rust API 指南](https://rust-lang.github.io/api-guidelines/) diff --git a/.github/skills/code-review-skill-main/SKILL.md b/.github/skills/code-review-skill-main/SKILL.md new file mode 100644 index 0000000000..c5b9c6d88c --- /dev/null +++ b/.github/skills/code-review-skill-main/SKILL.md @@ -0,0 +1,197 @@ +--- +name: code-review-excellence +description: | + Provides comprehensive code review guidance for React 19, Vue 3, Rust, TypeScript, Java, Python, and C/C++. + Helps catch bugs, improve code quality, and give constructive feedback. + Use when: reviewing pull requests, conducting PR reviews, code review, reviewing code changes, + establishing review standards, mentoring developers, architecture reviews, security audits, + checking code quality, finding bugs, giving feedback on code. +allowed-tools: + - Read + - Grep + - Glob + - Bash # 运行 lint/test/build 命令验证代码质量 + - WebFetch # 查阅最新文档和最佳实践 +--- + +# Code Review Excellence + +Transform code reviews from gatekeeping to knowledge sharing through constructive feedback, systematic analysis, and collaborative improvement. + +## When to Use This Skill + +- Reviewing pull requests and code changes +- Establishing code review standards for teams +- Mentoring junior developers through reviews +- Conducting architecture reviews +- Creating review checklists and guidelines +- Improving team collaboration +- Reducing code review cycle time +- Maintaining code quality standards + +## Core Principles + +### 1. The Review Mindset + +**Goals of Code Review:** +- Catch bugs and edge cases +- Ensure code maintainability +- Share knowledge across team +- Enforce coding standards +- Improve design and architecture +- Build team culture + +**Not the Goals:** +- Show off knowledge +- Nitpick formatting (use linters) +- Block progress unnecessarily +- Rewrite to your preference + +### 2. Effective Feedback + +**Good Feedback is:** +- Specific and actionable +- Educational, not judgmental +- Focused on the code, not the person +- Balanced (praise good work too) +- Prioritized (critical vs nice-to-have) + +```markdown +❌ Bad: "This is wrong." +✅ Good: "This could cause a race condition when multiple users + access simultaneously. Consider using a mutex here." + +❌ Bad: "Why didn't you use X pattern?" +✅ Good: "Have you considered the Repository pattern? It would + make this easier to test. Here's an example: [link]" + +❌ Bad: "Rename this variable." +✅ Good: "[nit] Consider `userCount` instead of `uc` for + clarity. Not blocking if you prefer to keep it." +``` + +### 3. Review Scope + +**What to Review:** +- Logic correctness and edge cases +- Security vulnerabilities +- Performance implications +- Test coverage and quality +- Error handling +- Documentation and comments +- API design and naming +- Architectural fit + +**What Not to Review Manually:** +- Code formatting (use Prettier, Black, etc.) +- Import organization +- Linting violations +- Simple typos + +## Review Process + +### Phase 1: Context Gathering (2-3 minutes) + +Before diving into code, understand: +1. Read PR description and linked issue +2. Check PR size (>400 lines? Ask to split) +3. Review CI/CD status (tests passing?) +4. Understand the business requirement +5. Note any relevant architectural decisions + +### Phase 2: High-Level Review (5-10 minutes) + +1. **Architecture & Design** - Does the solution fit the problem? + - For significant changes, consult [Architecture Review Guide](reference/architecture-review-guide.md) + - Check: SOLID principles, coupling/cohesion, anti-patterns +2. **Performance Assessment** - Are there performance concerns? + - For performance-critical code, consult [Performance Review Guide](reference/performance-review-guide.md) + - Check: Algorithm complexity, N+1 queries, memory usage +3. **File Organization** - Are new files in the right places? +4. **Testing Strategy** - Are there tests covering edge cases? + +### Phase 3: Line-by-Line Review (10-20 minutes) + +For each file, check: +- **Logic & Correctness** - Edge cases, off-by-one, null checks, race conditions +- **Security** - Input validation, injection risks, XSS, sensitive data +- **Performance** - N+1 queries, unnecessary loops, memory leaks +- **Maintainability** - Clear names, single responsibility, comments + +### Phase 4: Summary & Decision (2-3 minutes) + +1. Summarize key concerns +2. Highlight what you liked +3. Make clear decision: + - ✅ Approve + - 💬 Comment (minor suggestions) + - 🔄 Request Changes (must address) +4. Offer to pair if complex + +## Review Techniques + +### Technique 1: The Checklist Method + +Use checklists for consistent reviews. See [Security Review Guide](reference/security-review-guide.md) for comprehensive security checklist. + +### Technique 2: The Question Approach + +Instead of stating problems, ask questions: + +```markdown +❌ "This will fail if the list is empty." +✅ "What happens if `items` is an empty array?" + +❌ "You need error handling here." +✅ "How should this behave if the API call fails?" +``` + +### Technique 3: Suggest, Don't Command + +Use collaborative language: + +```markdown +❌ "You must change this to use async/await" +✅ "Suggestion: async/await might make this more readable. What do you think?" + +❌ "Extract this into a function" +✅ "This logic appears in 3 places. Would it make sense to extract it?" +``` + +### Technique 4: Differentiate Severity + +Use labels to indicate priority: + +- 🔴 `[blocking]` - Must fix before merge +- 🟡 `[important]` - Should fix, discuss if disagree +- 🟢 `[nit]` - Nice to have, not blocking +- 💡 `[suggestion]` - Alternative approach to consider +- 📚 `[learning]` - Educational comment, no action needed +- 🎉 `[praise]` - Good work, keep it up! + +## Language-Specific Guides + +根据审查的代码语言,查阅对应的详细指南: + +| Language/Framework | Reference File | Key Topics | +|-------------------|----------------|------------| +| **React** | [React Guide](reference/react.md) | Hooks, useEffect, React 19 Actions, RSC, Suspense, TanStack Query v5 | +| **Vue 3** | [Vue Guide](reference/vue.md) | Composition API, 响应性系统, Props/Emits, Watchers, Composables | +| **Rust** | [Rust Guide](reference/rust.md) | 所有权/借用, Unsafe 审查, 异步代码, 错误处理 | +| **TypeScript** | [TypeScript Guide](reference/typescript.md) | 类型安全, async/await, 不可变性 | +| **Python** | [Python Guide](reference/python.md) | 可变默认参数, 异常处理, 类属性 | +| **Java** | [Java Guide](reference/java.md) | Java 17/21 新特性, Spring Boot 3, 虚拟线程, Stream/Optional | +| **Go** | [Go Guide](reference/go.md) | 错误处理, goroutine/channel, context, 接口设计 | +| **C** | [C Guide](reference/c.md) | 指针/缓冲区, 内存安全, UB, 错误处理 | +| **C++** | [C++ Guide](reference/cpp.md) | RAII, 生命周期, Rule of 0/3/5, 异常安全 | +| **CSS/Less/Sass** | [CSS Guide](reference/css-less-sass.md) | 变量规范, !important, 性能优化, 响应式, 兼容性 | + +## Additional Resources + +- [Architecture Review Guide](reference/architecture-review-guide.md) - 架构设计审查指南(SOLID、反模式、耦合度) +- [Performance Review Guide](reference/performance-review-guide.md) - 性能审查指南(Web Vitals、N+1、复杂度) +- [Common Bugs Checklist](reference/common-bugs-checklist.md) - 按语言分类的常见错误清单 +- [Security Review Guide](reference/security-review-guide.md) - 安全审查指南 +- [Code Review Best Practices](reference/code-review-best-practices.md) - 代码审查最佳实践 +- [PR Review Template](assets/pr-review-template.md) - PR 审查评论模板 +- [Review Checklist](assets/review-checklist.md) - 快速参考清单 diff --git a/.github/skills/code-review-skill-main/assets/pr-review-template.md b/.github/skills/code-review-skill-main/assets/pr-review-template.md new file mode 100644 index 0000000000..33f7e71daa --- /dev/null +++ b/.github/skills/code-review-skill-main/assets/pr-review-template.md @@ -0,0 +1,114 @@ +# PR Review Template + +Copy and use this template for your code reviews. + +--- + +## Summary + +[Brief overview of what was reviewed - 1-2 sentences] + +**PR Size:** [Small/Medium/Large] (~X lines) +**Review Time:** [X minutes] + +## Strengths + +- [What was done well] +- [Good patterns or approaches used] +- [Improvements from previous code] + +## Required Changes + +🔴 **[blocking]** [Issue description] +> [Code location or example] +> [Suggested fix or explanation] + +🔴 **[blocking]** [Issue description] +> [Details] + +## Important Suggestions + +🟡 **[important]** [Issue description] +> [Why this matters] +> [Suggested approach] + +## Minor Suggestions + +🟢 **[nit]** [Minor improvement suggestion] + +💡 **[suggestion]** [Alternative approach to consider] + +## Questions + +❓ [Clarification needed about X] + +❓ [Question about design decision Y] + +## Security Considerations + +- [ ] No hardcoded secrets +- [ ] Input validation present +- [ ] Authorization checks in place +- [ ] No SQL/XSS injection risks + +## Test Coverage + +- [ ] Unit tests added/updated +- [ ] Edge cases covered +- [ ] Error cases tested + +## Verdict + +**[ ] ✅ Approve** - Ready to merge +**[ ] 💬 Comment** - Minor suggestions, can merge +**[ ] 🔄 Request Changes** - Must address blocking issues + +--- + +## Quick Copy Templates + +### Blocking Issue +``` +🔴 **[blocking]** [Title] + +[Description of the issue] + +**Location:** `file.ts:123` + +**Suggested fix:** +\`\`\`typescript +// Your suggested code +\`\`\` +``` + +### Important Suggestion +``` +🟡 **[important]** [Title] + +[Why this is important] + +**Consider:** +- Option A: [description] +- Option B: [description] +``` + +### Minor Suggestion +``` +🟢 **[nit]** [Suggestion] + +Not blocking, but consider [improvement]. +``` + +### Praise +``` +🎉 **[praise]** Great work on [specific thing]! + +[Why this is good] +``` + +### Question +``` +❓ **[question]** [Your question] + +I'm curious about the decision to [X]. Could you explain [Y]? +``` diff --git a/.github/skills/code-review-skill-main/assets/review-checklist.md b/.github/skills/code-review-skill-main/assets/review-checklist.md new file mode 100644 index 0000000000..4ff3b8b6ac --- /dev/null +++ b/.github/skills/code-review-skill-main/assets/review-checklist.md @@ -0,0 +1,121 @@ +# Code Review Quick Checklist + +Quick reference checklist for code reviews. + +## Pre-Review (2 min) + +- [ ] Read PR description and linked issue +- [ ] Check PR size (<400 lines ideal) +- [ ] Verify CI/CD status (tests passing?) +- [ ] Understand the business requirement + +## Architecture & Design (5 min) + +- [ ] Solution fits the problem +- [ ] Consistent with existing patterns +- [ ] No simpler approach exists +- [ ] Will it scale? +- [ ] Changes in right location + +## Logic & Correctness (10 min) + +- [ ] Edge cases handled +- [ ] Null/undefined checks present +- [ ] Off-by-one errors checked +- [ ] Race conditions considered +- [ ] Error handling complete +- [ ] Correct data types used + +## Security (5 min) + +- [ ] No hardcoded secrets +- [ ] Input validated/sanitized +- [ ] SQL injection prevented +- [ ] XSS prevented +- [ ] Authorization checks present +- [ ] Sensitive data protected + +## Performance (3 min) + +- [ ] No N+1 queries +- [ ] Expensive operations optimized +- [ ] Large lists paginated +- [ ] No memory leaks +- [ ] Caching considered where appropriate + +## Testing (5 min) + +- [ ] Tests exist for new code +- [ ] Edge cases tested +- [ ] Error cases tested +- [ ] Tests are readable +- [ ] Tests are deterministic + +## Code Quality (3 min) + +- [ ] Clear variable/function names +- [ ] No code duplication +- [ ] Functions do one thing +- [ ] Complex code commented +- [ ] No magic numbers + +## Documentation (2 min) + +- [ ] Public APIs documented +- [ ] README updated if needed +- [ ] Breaking changes noted +- [ ] Complex logic explained + +--- + +## Severity Labels + +| Label | Meaning | Action | +|-------|---------|--------| +| 🔴 `[blocking]` | Must fix | Block merge | +| 🟡 `[important]` | Should fix | Discuss if disagree | +| 🟢 `[nit]` | Nice to have | Non-blocking | +| 💡 `[suggestion]` | Alternative | Consider | +| ❓ `[question]` | Need clarity | Respond | +| 🎉 `[praise]` | Good work | Celebrate! | + +--- + +## Decision Matrix + +| Situation | Decision | +|-----------|----------| +| Critical security issue | 🔴 Block, fix immediately | +| Breaking change without migration | 🔴 Block | +| Missing error handling | 🟡 Should fix | +| No tests for new code | 🟡 Should fix | +| Style preference | 🟢 Non-blocking | +| Minor naming improvement | 🟢 Non-blocking | +| Clever but working code | 💡 Suggest simpler | + +--- + +## Time Budget + +| PR Size | Target Time | +|---------|-------------| +| < 100 lines | 10-15 min | +| 100-400 lines | 20-40 min | +| > 400 lines | Ask to split | + +--- + +## Red Flags + +Watch for these patterns: + +- `// TODO` in production code +- `console.log` left in code +- Commented out code +- `any` type in TypeScript +- Empty catch blocks +- `unwrap()` in Rust production code +- Magic numbers/strings +- Copy-pasted code blocks +- Missing null checks +- Hardcoded URLs/credentials diff --git a/.github/skills/code-review-skill-main/reference/architecture-review-guide.md b/.github/skills/code-review-skill-main/reference/architecture-review-guide.md new file mode 100644 index 0000000000..abde68ce48 --- /dev/null +++ b/.github/skills/code-review-skill-main/reference/architecture-review-guide.md @@ -0,0 +1,472 @@ +# Architecture Review Guide + +架构设计审查指南,帮助评估代码的架构是否合理、设计是否恰当。 + +## SOLID 原则检查清单 + +### S - 单一职责原则 (SRP) + +**检查要点:** +- 这个类/模块是否只有一个改变的理由? +- 类中的方法是否都服务于同一个目的? +- 如果要向非技术人员描述这个类,能否用一句话说清楚? + +**代码审查中的识别信号:** +``` +⚠️ 类名包含 "And"、"Manager"、"Handler"、"Processor" 等泛化词汇 +⚠️ 一个类超过 200-300 行代码 +⚠️ 类有超过 5-7 个公共方法 +⚠️ 不同的方法操作完全不同的数据 +``` + +**审查问题:** +- "这个类负责哪些事情?能否拆分?" +- "如果 X 需求变化,哪些方法需要改?如果 Y 需求变化呢?" + +### O - 开闭原则 (OCP) + +**检查要点:** +- 添加新功能时,是否需要修改现有代码? +- 是否可以通过扩展(继承、组合)来添加新行为? +- 是否存在大量的 if/else 或 switch 语句来处理不同类型? + +**代码审查中的识别信号:** +``` +⚠️ switch/if-else 链处理不同类型 +⚠️ 添加新功能需要修改核心类 +⚠️ 类型检查 (instanceof, typeof) 散布在代码中 +``` + +**审查问题:** +- "如果要添加新的 X 类型,需要修改哪些文件?" +- "这个 switch 语句会随着新类型增加而增长吗?" + +### L - 里氏替换原则 (LSP) + +**检查要点:** +- 子类是否可以完全替代父类使用? +- 子类是否改变了父类方法的预期行为? +- 是否存在子类抛出父类未声明的异常? + +**代码审查中的识别信号:** +``` +⚠️ 显式类型转换 (casting) +⚠️ 子类方法抛出 NotImplementedException +⚠️ 子类方法为空实现或只有 return +⚠️ 使用基类的地方需要检查具体类型 +``` + +**审查问题:** +- "如果用子类替换父类,调用方代码是否需要修改?" +- "这个方法在子类中的行为是否符合父类的契约?" + +### I - 接口隔离原则 (ISP) + +**检查要点:** +- 接口是否足够小且专注? +- 实现类是否被迫实现不需要的方法? +- 客户端是否依赖了它不使用的方法? + +**代码审查中的识别信号:** +``` +⚠️ 接口超过 5-7 个方法 +⚠️ 实现类有空方法或抛出 NotImplementedException +⚠️ 接口名称过于宽泛 (IManager, IService) +⚠️ 不同的客户端只使用接口的部分方法 +``` + +**审查问题:** +- "这个接口的所有方法是否都被每个实现类使用?" +- "能否将这个大接口拆分为更小的专用接口?" + +### D - 依赖倒置原则 (DIP) + +**检查要点:** +- 高层模块是否依赖于抽象而非具体实现? +- 是否使用依赖注入而非直接 new 对象? +- 抽象是否由高层模块定义而非低层模块? + +**代码审查中的识别信号:** +``` +⚠️ 高层模块直接 new 低层模块的具体类 +⚠️ 导入具体实现类而非接口/抽象类 +⚠️ 配置和连接字符串硬编码在业务逻辑中 +⚠️ 难以为某个类编写单元测试 +``` + +**审查问题:** +- "这个类的依赖能否在测试时被 mock 替换?" +- "如果要更换数据库/API 实现,需要修改多少地方?" + +--- + +## 架构反模式识别 + +### 致命反模式 + +| 反模式 | 识别信号 | 影响 | +|--------|----------|------| +| **大泥球 (Big Ball of Mud)** | 没有清晰的模块边界,任何代码都可能调用任何其他代码 | 难以理解、修改和测试 | +| **上帝类 (God Object)** | 单个类承担过多职责,知道太多、做太多 | 高耦合,难以重用和测试 | +| **意大利面条代码** | 控制流程混乱,goto 或深层嵌套,难以追踪执行路径 | 难以理解和维护 | +| **熔岩流 (Lava Flow)** | 没人敢动的古老代码,缺乏文档和测试 | 技术债务累积 | + +### 设计反模式 + +| 反模式 | 识别信号 | 建议 | +|--------|----------|------| +| **金锤子 (Golden Hammer)** | 对所有问题使用同一种技术/模式 | 根据问题选择合适的解决方案 | +| **过度工程 (Gas Factory)** | 简单问题用复杂方案解决,滥用设计模式 | YAGNI 原则,先简单后复杂 | +| **船锚 (Boat Anchor)** | 为"将来可能需要"而写的未使用代码 | 删除未使用代码,需要时再写 | +| **复制粘贴编程** | 相同逻辑出现在多处 | 提取公共方法或模块 | + +### 审查问题 + +```markdown +🔴 [blocking] "这个类有 2000 行代码,建议拆分为多个专注的类" +🟡 [important] "这段逻辑在 3 个地方重复,考虑提取为公共方法?" +💡 [suggestion] "这个 switch 语句可以用策略模式替代,更易扩展" +``` + +--- + +## 耦合度与内聚性评估 + +### 耦合类型(从好到差) + +| 类型 | 描述 | 示例 | +|------|------|------| +| **消息耦合** ✅ | 通过参数传递数据 | `calculate(price, quantity)` | +| **数据耦合** ✅ | 共享简单数据结构 | `processOrder(orderDTO)` | +| **印记耦合** ⚠️ | 共享复杂数据结构但只用部分 | 传入整个 User 对象但只用 name | +| **控制耦合** ⚠️ | 传递控制标志影响行为 | `process(data, isAdmin=true)` | +| **公共耦合** ❌ | 共享全局变量 | 多个模块读写同一个全局状态 | +| **内容耦合** ❌ | 直接访问另一模块的内部 | 直接操作另一个类的私有属性 | + +### 内聚类型(从好到差) + +| 类型 | 描述 | 质量 | +|------|------|------| +| **功能内聚** | 所有元素完成单一任务 | ✅ 最佳 | +| **顺序内聚** | 输出作为下一步输入 | ✅ 良好 | +| **通信内聚** | 操作相同数据 | ⚠️ 可接受 | +| **时间内聚** | 同时执行的任务 | ⚠️ 较差 | +| **逻辑内聚** | 逻辑相关但功能不同 | ❌ 差 | +| **偶然内聚** | 没有明显关系 | ❌ 最差 | + +### 度量指标参考 + +```yaml +耦合指标: + CBO (类间耦合): + 好: < 5 + 警告: 5-10 + 危险: > 10 + + Ce (传出耦合): + 描述: 依赖多少外部类 + 好: < 7 + + Ca (传入耦合): + 描述: 被多少类依赖 + 高值意味着: 修改影响大,需要稳定 + +内聚指标: + LCOM4 (方法缺乏内聚): + 1: 单一职责 ✅ + 2-3: 可能需要拆分 ⚠️ + >3: 应该拆分 ❌ +``` + +### 审查问题 + +- "这个模块依赖了多少其他模块?能否减少?" +- "修改这个类会影响多少其他地方?" +- "这个类的方法是否都操作相同的数据?" + +--- + +## 分层架构审查 + +### Clean Architecture 层次检查 + +``` +┌─────────────────────────────────────┐ +│ Frameworks & Drivers │ ← 最外层:Web、DB、UI +├─────────────────────────────────────┤ +│ Interface Adapters │ ← Controllers、Gateways、Presenters +├─────────────────────────────────────┤ +│ Application Layer │ ← Use Cases、Application Services +├─────────────────────────────────────┤ +│ Domain Layer │ ← Entities、Domain Services +└─────────────────────────────────────┘ + ↑ 依赖方向只能向内 ↑ +``` + +### 依赖规则检查 + +**核心规则:源代码依赖只能指向内层** + +```typescript +// ❌ 违反依赖规则:Domain 层依赖 Infrastructure +// domain/User.ts +import { MySQLConnection } from '../infrastructure/database'; + +// ✅ 正确:Domain 层定义接口,Infrastructure 实现 +// domain/UserRepository.ts (接口) +interface UserRepository { + findById(id: string): Promise; +} + +// infrastructure/MySQLUserRepository.ts (实现) +class MySQLUserRepository implements UserRepository { + findById(id: string): Promise { /* ... */ } +} +``` + +### 审查清单 + +**层次边界检查:** +- [ ] Domain 层是否有外部依赖(数据库、HTTP、文件系统)? +- [ ] Application 层是否直接操作数据库或调用外部 API? +- [ ] Controller 是否包含业务逻辑? +- [ ] 是否存在跨层调用(UI 直接调用 Repository)? + +**关注点分离检查:** +- [ ] 业务逻辑是否与展示逻辑分离? +- [ ] 数据访问是否封装在专门的层? +- [ ] 配置和环境相关代码是否集中管理? + +### 审查问题 + +```markdown +🔴 [blocking] "Domain 实体直接导入了数据库连接,违反依赖规则" +🟡 [important] "Controller 包含业务计算逻辑,建议移到 Service 层" +💡 [suggestion] "考虑使用依赖注入来解耦这些组件" +``` + +--- + +## 设计模式使用评估 + +### 何时使用设计模式 + +| 模式 | 适用场景 | 不适用场景 | +|------|----------|------------| +| **Factory** | 需要创建不同类型对象,类型在运行时确定 | 只有一种类型,或类型固定不变 | +| **Strategy** | 算法需要在运行时切换,有多种可互换的行为 | 只有一种算法,或算法不会变化 | +| **Observer** | 一对多依赖,状态变化需要通知多个对象 | 简单的直接调用即可满足需求 | +| **Singleton** | 确实需要全局唯一实例,如配置管理 | 可以通过依赖注入传递的对象 | +| **Decorator** | 需要动态添加职责,避免继承爆炸 | 职责固定,不需要动态组合 | + +### 过度设计警告信号 + +``` +⚠️ Patternitis(模式炎)识别信号: + +1. 简单的 if/else 被替换为策略模式 + 工厂 + 注册表 +2. 只有一个实现的接口 +3. 为了"将来可能需要"而添加的抽象层 +4. 代码行数因模式应用而大幅增加 +5. 新人需要很长时间才能理解代码结构 +``` + +### 审查原则 + +```markdown +✅ 正确使用模式: +- 解决了实际的可扩展性问题 +- 代码更容易理解和测试 +- 添加新功能变得更简单 + +❌ 过度使用模式: +- 为了使用模式而使用 +- 增加了不必要的复杂度 +- 违反了 YAGNI 原则 +``` + +### 审查问题 + +- "使用这个模式解决了什么具体问题?" +- "如果不用这个模式,代码会有什么问题?" +- "这个抽象层带来的价值是否大于它的复杂度?" + +--- + +## 可扩展性评估 + +### 扩展性检查清单 + +**功能扩展性:** +- [ ] 添加新功能是否需要修改核心代码? +- [ ] 是否提供了扩展点(hooks、plugins、events)? +- [ ] 配置是否外部化(配置文件、环境变量)? + +**数据扩展性:** +- [ ] 数据模型是否支持新增字段? +- [ ] 是否考虑了数据量增长的场景? +- [ ] 查询是否有合适的索引? + +**负载扩展性:** +- [ ] 是否可以水平扩展(添加更多实例)? +- [ ] 是否有状态依赖(session、本地缓存)? +- [ ] 数据库连接是否使用连接池? + +### 扩展点设计检查 + +```typescript +// ✅ 好的扩展设计:使用事件/钩子 +class OrderService { + private hooks: OrderHooks; + + async createOrder(order: Order) { + await this.hooks.beforeCreate?.(order); + const result = await this.save(order); + await this.hooks.afterCreate?.(result); + return result; + } +} + +// ❌ 差的扩展设计:硬编码所有行为 +class OrderService { + async createOrder(order: Order) { + await this.sendEmail(order); // 硬编码 + await this.updateInventory(order); // 硬编码 + await this.notifyWarehouse(order); // 硬编码 + return await this.save(order); + } +} +``` + +### 审查问题 + +```markdown +💡 [suggestion] "如果将来需要支持新的支付方式,这个设计是否容易扩展?" +🟡 [important] "这里的逻辑是硬编码的,考虑使用配置或策略模式?" +📚 [learning] "事件驱动架构可以让这个功能更容易扩展" +``` + +--- + +## 代码结构最佳实践 + +### 目录组织 + +**按功能/领域组织(推荐):** +``` +src/ +├── user/ +│ ├── User.ts (实体) +│ ├── UserService.ts (服务) +│ ├── UserRepository.ts (数据访问) +│ └── UserController.ts (API) +├── order/ +│ ├── Order.ts +│ ├── OrderService.ts +│ └── ... +└── shared/ + ├── utils/ + └── types/ +``` + +**按技术层组织(不推荐):** +``` +src/ +├── controllers/ ← 不同领域混在一起 +│ ├── UserController.ts +│ └── OrderController.ts +├── services/ +├── repositories/ +└── models/ +``` + +### 命名约定检查 + +| 类型 | 约定 | 示例 | +|------|------|------| +| 类名 | PascalCase,名词 | `UserService`, `OrderRepository` | +| 方法名 | camelCase,动词 | `createUser`, `findOrderById` | +| 接口名 | I 前缀或无前缀 | `IUserService` 或 `UserService` | +| 常量 | UPPER_SNAKE_CASE | `MAX_RETRY_COUNT` | +| 私有属性 | 下划线前缀或无 | `_cache` 或 `#cache` | + +### 文件大小指南 + +```yaml +建议限制: + 单个文件: < 300 行 + 单个函数: < 50 行 + 单个类: < 200 行 + 函数参数: < 4 个 + 嵌套深度: < 4 层 + +超出限制时: + - 考虑拆分为更小的单元 + - 使用组合而非继承 + - 提取辅助函数或类 +``` + +### 审查问题 + +```markdown +🟢 [nit] "这个 500 行的文件可以考虑按职责拆分" +🟡 [important] "建议按功能领域而非技术层组织目录结构" +💡 [suggestion] "函数名 `process` 不够明确,考虑改为 `calculateOrderTotal`?" +``` + +--- + +## 快速参考清单 + +### 架构审查 5 分钟速查 + +```markdown +□ 依赖方向是否正确?(外层依赖内层) +□ 是否存在循环依赖? +□ 核心业务逻辑是否与框架/UI/数据库解耦? +□ 是否遵循 SOLID 原则? +□ 是否存在明显的反模式? +``` + +### 红旗信号(必须处理) + +```markdown +🔴 God Object - 单个类超过 1000 行 +🔴 循环依赖 - A → B → C → A +🔴 Domain 层包含框架依赖 +🔴 硬编码的配置和密钥 +🔴 没有接口的外部服务调用 +``` + +### 黄旗信号(建议处理) + +```markdown +🟡 类间耦合度 (CBO) > 10 +🟡 方法参数超过 5 个 +🟡 嵌套深度超过 4 层 +🟡 重复代码块 > 10 行 +🟡 只有一个实现的接口 +``` + +--- + +## 工具推荐 + +| 工具 | 用途 | 语言支持 | +|------|------|----------| +| **SonarQube** | 代码质量、耦合度分析 | 多语言 | +| **NDepend** | 依赖分析、架构规则 | .NET | +| **JDepend** | 包依赖分析 | Java | +| **Madge** | 模块依赖图 | JavaScript/TypeScript | +| **ESLint** | 代码规范、复杂度检查 | JavaScript/TypeScript | +| **CodeScene** | 技术债务、热点分析 | 多语言 | + +--- + +## 参考资源 + +- [Clean Architecture - Uncle Bob](https://blog.cleancoder.com/uncle-bob/2012/08/13/the-clean-architecture.html) +- [SOLID Principles in Code Review - JetBrains](https://blog.jetbrains.com/upsource/2015/08/31/what-to-look-for-in-a-code-review-solid-principles-2/) +- [Software Architecture Anti-Patterns](https://medium.com/@christophnissle/anti-patterns-in-software-architecture-3c8970c9c4f5) +- [Coupling and Cohesion in System Design](https://www.geeksforgeeks.org/system-design/coupling-and-cohesion-in-system-design/) +- [Design Patterns - Refactoring Guru](https://refactoring.guru/design-patterns) diff --git a/.github/skills/code-review-skill-main/reference/c.md b/.github/skills/code-review-skill-main/reference/c.md new file mode 100644 index 0000000000..cfd31ed1d1 --- /dev/null +++ b/.github/skills/code-review-skill-main/reference/c.md @@ -0,0 +1,285 @@ +# C Code Review Guide + +> C code review guide focused on memory safety, undefined behavior, and portability. Examples assume C11. + +## Table of Contents + +- [Pointer and Buffer Safety](#pointer-and-buffer-safety) +- [Ownership and Resource Management](#ownership-and-resource-management) +- [Undefined Behavior Pitfalls](#undefined-behavior-pitfalls) +- [Integer Types and Overflow](#integer-types-and-overflow) +- [Error Handling](#error-handling) +- [Concurrency](#concurrency) +- [Macros and Preprocessor](#macros-and-preprocessor) +- [API Design and Const](#api-design-and-const) +- [Tooling and Build Checks](#tooling-and-build-checks) +- [Review Checklist](#review-checklist) + +--- + +## Pointer and Buffer Safety + +### Always carry size with buffers + +```c +// ? Bad: ignores destination size +bool copy_name(char *dst, size_t dst_size, const char *src) { + strcpy(dst, src); + return true; +} + +// ? Good: validate size and terminate +bool copy_name(char *dst, size_t dst_size, const char *src) { + size_t len = strlen(src); + if (len + 1 > dst_size) { + return false; + } + memcpy(dst, src, len + 1); + return true; +} +``` + +### Avoid dangerous APIs + +Prefer `snprintf`, `fgets`, and explicit bounds over `gets`, `strcpy`, or `sprintf`. + +```c +// ? Bad: unbounded write +sprintf(buf, "%s", input); + +// ? Good: bounded write +snprintf(buf, buf_size, "%s", input); +``` + +### Use the right copy primitive + +```c +// ? Bad: memcpy with overlapping regions +memcpy(dst, src, len); + +// ? Good: memmove handles overlap +memmove(dst, src, len); +``` + +--- + +## Ownership and Resource Management + +### One allocation, one free + +Track ownership and clean up on every error path. + +```c +// ? Good: cleanup label avoids leaks +int load_file(const char *path) { + int rc = -1; + FILE *f = NULL; + char *buf = NULL; + + f = fopen(path, "rb"); + if (!f) { + goto cleanup; + } + buf = malloc(4096); + if (!buf) { + goto cleanup; + } + + if (fread(buf, 1, 4096, f) == 0) { + goto cleanup; + } + + rc = 0; + +cleanup: + free(buf); + if (f) { + fclose(f); + } + return rc; +} +``` + +--- + +## Undefined Behavior Pitfalls + +### Common UB patterns + +```c +// ? Bad: use after free +char *p = malloc(10); +free(p); +p[0] = 'a'; + +// ? Bad: uninitialized read +int x; +if (x > 0) { /* UB */ } + +// ? Bad: signed overflow +int sum = a + b; +``` + +### Avoid pointer arithmetic past the object + +```c +// ? Bad: pointer past the end then dereference +int arr[4]; +int *p = arr + 4; +int v = *p; // UB +``` + +--- + +## Integer Types and Overflow + +### Avoid signed/unsigned surprises + +```c +// ? Bad: negative converted to large size_t +int len = -1; +size_t n = len; + +// ? Good: validate before converting +if (len < 0) { + return -1; +} +size_t n = (size_t)len; +``` + +### Check for overflow in size calculations + +```c +// ? Bad: potential overflow in multiplication +size_t bytes = count * sizeof(Item); + +// ? Good: check before multiplying +if (count > SIZE_MAX / sizeof(Item)) { + return NULL; +} +size_t bytes = count * sizeof(Item); +``` + +--- + +## Error Handling + +### Always check return values + +```c +// ? Bad: ignore errors +fread(buf, 1, size, f); + +// ? Good: handle errors +size_t read = fread(buf, 1, size, f); +if (read != size && ferror(f)) { + return -1; +} +``` + +### Consistent error contracts + +- Use a clear convention: 0 for success, negative for failure. +- Document ownership rules on success and failure. +- If using `errno`, set it only for actual failures. + +--- + +## Concurrency + +### volatile is not synchronization + +```c +// ? Bad: data race +volatile int stop = 0; +void worker(void) { + while (!stop) { /* ... */ } +} + +// ? Good: C11 atomics +_Atomic int stop = 0; +void worker(void) { + while (!atomic_load(&stop)) { /* ... */ } +} +``` + +### Use mutexes for shared state + +Protect shared data with `pthread_mutex_t` or equivalent. Avoid holding locks while doing I/O. + +--- + +## Macros and Preprocessor + +### Parenthesize arguments + +```c +// ? Bad: macro with side effects +#define MIN(a, b) ((a) < (b) ? (a) : (b)) +int x = MIN(i++, j++); + +// ? Good: static inline function +static inline int min_int(int a, int b) { + return a < b ? a : b; +} +``` + +--- + +## API Design and Const + +### Const-correctness and sizes + +```c +// ? Good: explicit size and const input +int hash_bytes(const uint8_t *data, size_t len, uint8_t *out); +``` + +### Document nullability + +Clearly document whether pointers may be NULL. Prefer returning error codes instead of NULL when possible. + +--- + +## Tooling and Build Checks + +```bash +# Warnings +clang -Wall -Wextra -Werror -Wconversion -Wshadow -std=c11 ... + +# Sanitizers (debug builds) +clang -fsanitize=address,undefined -fno-omit-frame-pointer -g ... +clang -fsanitize=thread -fno-omit-frame-pointer -g ... + +# Static analysis +clang-tidy src/*.c -- -std=c11 +cppcheck --enable=warning,performance,portability src/ + +# Formatting +clang-format -i src/*.c include/*.h +``` + +--- + +## Review Checklist + +### Memory and UB +- [ ] All buffers have explicit size parameters +- [ ] No out-of-bounds access or pointer arithmetic past objects +- [ ] No use after free or uninitialized reads +- [ ] Signed overflow and shift rules are respected + +### API and Design +- [ ] Ownership rules are documented and consistent +- [ ] const-correctness is applied for inputs +- [ ] Error contracts are clear and consistent + +### Concurrency +- [ ] No data races on shared state +- [ ] volatile is not used for synchronization +- [ ] Locks are held for minimal time + +### Tooling and Tests +- [ ] Builds clean with warnings enabled +- [ ] Sanitizers run on critical code paths +- [ ] Static analysis results are addressed diff --git a/.github/skills/code-review-skill-main/reference/code-review-best-practices.md b/.github/skills/code-review-skill-main/reference/code-review-best-practices.md new file mode 100644 index 0000000000..8c6b9cdb19 --- /dev/null +++ b/.github/skills/code-review-skill-main/reference/code-review-best-practices.md @@ -0,0 +1,136 @@ +# Code Review Best Practices + +Comprehensive guidelines for conducting effective code reviews. + +## Review Philosophy + +### Goals of Code Review + +**Primary Goals:** +- Catch bugs and edge cases before production +- Ensure code maintainability and readability +- Share knowledge across the team +- Enforce coding standards consistently +- Improve design and architecture decisions + +**Secondary Goals:** +- Mentor junior developers +- Build team culture and trust +- Document design decisions through discussions + +### What Code Review is NOT + +- A gatekeeping mechanism to block progress +- An opportunity to show off knowledge +- A place to nitpick formatting (use linters) +- A way to rewrite code to personal preference + +## Review Timing + +### When to Review + +| Trigger | Action | +|---------|--------| +| PR opened | Review within 24 hours, ideally same day | +| Changes requested | Re-review within 4 hours | +| Blocking issue found | Communicate immediately | + +### Time Allocation + +- **Small PR (<100 lines)**: 10-15 minutes +- **Medium PR (100-400 lines)**: 20-40 minutes +- **Large PR (>400 lines)**: Request to split, or 60+ minutes + +## Review Depth Levels + +### Level 1: Skim Review (5 minutes) +- Check PR description and linked issues +- Verify CI/CD status +- Look at file changes overview +- Identify if deeper review needed + +### Level 2: Standard Review (20-30 minutes) +- Full code walkthrough +- Logic verification +- Test coverage check +- Security scan + +### Level 3: Deep Review (60+ minutes) +- Architecture evaluation +- Performance analysis +- Security audit +- Edge case exploration + +## Communication Guidelines + +### Tone and Language + +**Use collaborative language:** +- "What do you think about..." instead of "You should..." +- "Could we consider..." instead of "This is wrong" +- "I'm curious about..." instead of "Why didn't you..." + +**Be specific and actionable:** +- Include code examples when suggesting changes +- Link to documentation or past discussions +- Explain the "why" behind suggestions + +### Handling Disagreements + +1. **Seek to understand**: Ask clarifying questions +2. **Acknowledge valid points**: Show you've considered their perspective +3. **Provide data**: Use benchmarks, docs, or examples +4. **Escalate if needed**: Involve senior dev or architect +5. **Know when to let go**: Not every hill is worth dying on + +## Review Prioritization + +### Must Fix (Blocking) +- Security vulnerabilities +- Data corruption risks +- Breaking changes without migration +- Critical performance issues +- Missing error handling for user-facing features + +### Should Fix (Important) +- Test coverage gaps +- Moderate performance concerns +- Code duplication +- Unclear naming or structure +- Missing documentation for complex logic + +### Nice to Have (Non-blocking) +- Style preferences beyond linting +- Minor optimizations +- Additional test cases +- Documentation improvements + +## Anti-Patterns to Avoid + +### Reviewer Anti-Patterns +- **Rubber stamping**: Approving without actually reviewing +- **Bike shedding**: Debating trivial details extensively +- **Scope creep**: "While you're at it, can you also..." +- **Ghosting**: Requesting changes then disappearing +- **Perfectionism**: Blocking for minor style preferences + +### Author Anti-Patterns +- **Mega PRs**: Submitting 1000+ line changes +- **No context**: Missing PR description or linked issues +- **Defensive responses**: Arguing every suggestion +- **Silent updates**: Making changes without responding to comments + +## Metrics and Improvement + +### Track These Metrics +- Time to first review +- Review cycle time +- Number of review rounds +- Defect escape rate +- Review coverage percentage + +### Continuous Improvement +- Hold retrospectives on review process +- Share learnings from escaped bugs +- Update checklists based on common issues +- Celebrate good reviews and catches diff --git a/.github/skills/code-review-skill-main/reference/common-bugs-checklist.md b/.github/skills/code-review-skill-main/reference/common-bugs-checklist.md new file mode 100644 index 0000000000..97e2e637f2 --- /dev/null +++ b/.github/skills/code-review-skill-main/reference/common-bugs-checklist.md @@ -0,0 +1,1227 @@ +# Common Bugs Checklist + +Language-specific bugs and issues to watch for during code review. + +## Universal Issues + +### Logic Errors +- [ ] Off-by-one errors in loops and array access +- [ ] Incorrect boolean logic (De Morgan's law violations) +- [ ] Missing null/undefined checks +- [ ] Race conditions in concurrent code +- [ ] Incorrect comparison operators (== vs ===, = vs ==) +- [ ] Integer overflow/underflow +- [ ] Floating point comparison issues + +### Resource Management +- [ ] Memory leaks (unclosed connections, listeners) +- [ ] File handles not closed +- [ ] Database connections not released +- [ ] Event listeners not removed +- [ ] Timers/intervals not cleared + +### Error Handling +- [ ] Swallowed exceptions (empty catch blocks) +- [ ] Generic exception handling hiding specific errors +- [ ] Missing error propagation +- [ ] Incorrect error types thrown +- [ ] Missing finally/cleanup blocks + +## TypeScript/JavaScript + +### Type Issues +```typescript +// ❌ Using any defeats type safety +function process(data: any) { return data.value; } + +// ✅ Use proper types +interface Data { value: string; } +function process(data: Data) { return data.value; } +``` + +### Async/Await Pitfalls +```typescript +// ❌ Missing await +async function fetch() { + const data = fetchData(); // Missing await! + return data.json(); +} + +// ❌ Unhandled promise rejection +async function risky() { + const result = await fetchData(); // No try-catch + return result; +} + +// ✅ Proper error handling +async function safe() { + try { + const result = await fetchData(); + return result; + } catch (error) { + console.error('Fetch failed:', error); + throw error; + } +} +``` + +### React Specific + +#### Hooks 规则违反 +```tsx +// ❌ 条件调用 Hooks — 违反 Hooks 规则 +function BadComponent({ show }) { + if (show) { + const [value, setValue] = useState(0); // Error! + } + return
...
; +} + +// ✅ Hooks 必须在顶层无条件调用 +function GoodComponent({ show }) { + const [value, setValue] = useState(0); + if (!show) return null; + return
{value}
; +} + +// ❌ 循环中调用 Hooks +function BadLoop({ items }) { + items.forEach(item => { + const [selected, setSelected] = useState(false); // Error! + }); +} + +// ✅ 将状态提升或使用不同的数据结构 +function GoodLoop({ items }) { + const [selectedIds, setSelectedIds] = useState>(new Set()); + return items.map(item => ( + + )); +} +``` + +#### useEffect 常见错误 +```tsx +// ❌ 依赖数组不完整 — stale closure +function StaleClosureExample({ userId, onSuccess }) { + const [data, setData] = useState(null); + useEffect(() => { + fetchData(userId).then(result => { + setData(result); + onSuccess(result); // onSuccess 可能是 stale 的! + }); + }, [userId]); // 缺少 onSuccess 依赖 +} + +// ✅ 完整的依赖数组 +useEffect(() => { + fetchData(userId).then(result => { + setData(result); + onSuccess(result); + }); +}, [userId, onSuccess]); + +// ❌ 无限循环 — 在 effect 中更新依赖 +function InfiniteLoop() { + const [count, setCount] = useState(0); + useEffect(() => { + setCount(count + 1); // 触发重渲染,又触发 effect + }, [count]); // 无限循环! +} + +// ❌ 缺少清理函数 — 内存泄漏 +function MemoryLeak({ userId }) { + const [user, setUser] = useState(null); + useEffect(() => { + fetchUser(userId).then(setUser); // 组件卸载后仍然调用 setUser + }, [userId]); +} + +// ✅ 正确的清理 +function NoLeak({ userId }) { + const [user, setUser] = useState(null); + useEffect(() => { + let cancelled = false; + fetchUser(userId).then(data => { + if (!cancelled) setUser(data); + }); + return () => { cancelled = true; }; + }, [userId]); +} + +// ❌ useEffect 用于派生状态(反模式) +function BadDerived({ items }) { + const [total, setTotal] = useState(0); + useEffect(() => { + setTotal(items.reduce((a, b) => a + b.price, 0)); + }, [items]); // 不必要的 effect + 额外渲染 +} + +// ✅ 直接计算或用 useMemo +function GoodDerived({ items }) { + const total = useMemo( + () => items.reduce((a, b) => a + b.price, 0), + [items] + ); +} + +// ❌ useEffect 用于事件响应 +function BadEvent() { + const [query, setQuery] = useState(''); + useEffect(() => { + if (query) logSearch(query); // 应该在事件处理器中 + }, [query]); +} + +// ✅ 副作用在事件处理器中 +function GoodEvent() { + const handleSearch = (q: string) => { + setQuery(q); + logSearch(q); + }; +} +``` + +#### useMemo / useCallback 误用 +```tsx +// ❌ 过度优化 — 常量不需要 memo +function OverOptimized() { + const config = useMemo(() => ({ api: '/v1' }), []); // 无意义 + const noop = useCallback(() => {}, []); // 无意义 +} + +// ❌ 空依赖的 useMemo(可能隐藏 bug) +function EmptyDeps({ user }) { + const greeting = useMemo(() => `Hello ${user.name}`, []); + // user 变化时 greeting 不更新! +} + +// ❌ useCallback 依赖总是变化 +function UselessCallback({ data }) { + const process = useCallback(() => { + return data.map(transform); + }, [data]); // 如果 data 每次都是新引用,完全无效 +} + +// ❌ useMemo/useCallback 没有配合 React.memo +function Parent() { + const data = useMemo(() => compute(), []); + const handler = useCallback(() => {}, []); + return ; + // Child 没有用 React.memo,这些优化毫无意义 +} + +// ✅ 正确的优化组合 +const MemoChild = React.memo(function Child({ data, onClick }) { + return ; +}); + +function Parent() { + const data = useMemo(() => expensiveCompute(), [dep]); + const handler = useCallback(() => {}, []); + return ; +} +``` + +#### 组件设计问题 +```tsx +// ❌ 在组件内定义组件 +function Parent() { + // 每次渲染都创建新的 Child 函数,导致完全重新挂载 + const Child = () =>
child
; + return ; +} + +// ✅ 组件定义在外部 +const Child = () =>
child
; +function Parent() { + return ; +} + +// ❌ Props 总是新引用 — 破坏 memo +function BadProps() { + return ( + handle()} // 每次渲染新函数 + items={data.filter(x => x)} // 每次渲染新数组 + /> + ); +} + +// ❌ 直接修改 props +function MutateProps({ user }) { + user.name = 'Changed'; // 永远不要这样做! + return
{user.name}
; +} +``` + +#### Server Components 错误 (React 19+) +```tsx +// ❌ 在 Server Component 中使用客户端 API +// app/page.tsx (默认是 Server Component) +export default function Page() { + const [count, setCount] = useState(0); // Error! + useEffect(() => {}, []); // Error! + return ; // Error! +} + +// ✅ 交互逻辑移到 Client Component +// app/counter.tsx +'use client'; +export function Counter() { + const [count, setCount] = useState(0); + return ; +} + +// app/page.tsx +import { Counter } from './counter'; +export default async function Page() { + const data = await fetchData(); // Server Component 可以直接 await + return ; +} + +// ❌ 在父组件标记 'use client',整个子树变成客户端 +// layout.tsx +'use client'; // 坏主意!所有子组件都变成客户端组件 +export default function Layout({ children }) { ... } +``` + +#### 测试常见错误 +```tsx +// ❌ 使用 container 查询 +const { container } = render(); +const button = container.querySelector('button'); // 不推荐 + +// ✅ 使用 screen 和语义查询 +render(); +const button = screen.getByRole('button', { name: /submit/i }); + +// ❌ 使用 fireEvent +fireEvent.click(button); + +// ✅ 使用 userEvent +await userEvent.click(button); + +// ❌ 测试实现细节 +expect(component.state.isOpen).toBe(true); + +// ✅ 测试行为 +expect(screen.getByRole('dialog')).toBeVisible(); + +// ❌ 等待同步查询 +await screen.getByText('Hello'); // getBy 是同步的 + +// ✅ 异步用 findBy +await screen.findByText('Hello'); // findBy 会等待 +``` + +### React Common Mistakes Checklist +- [ ] Hooks 不在顶层调用(条件/循环中) +- [ ] useEffect 依赖数组不完整 +- [ ] useEffect 缺少清理函数 +- [ ] useEffect 用于派生状态计算 +- [ ] useMemo/useCallback 过度使用 +- [ ] useMemo/useCallback 没配合 React.memo +- [ ] 在组件内定义子组件 +- [ ] Props 是新对象/函数引用(传给 memo 组件时) +- [ ] 直接修改 props +- [ ] 列表缺少 key 或用 index 作为 key +- [ ] Server Component 使用客户端 API +- [ ] 'use client' 放在父组件导致整个树客户端化 +- [ ] 测试使用 container 查询而非 screen +- [ ] 测试实现细节而非行为 + +### React 19 Actions & Forms 错误 + +```tsx +// === useActionState 错误 === + +// ❌ 在 Action 中直接 setState 而不是返回状态 +const [state, action] = useActionState(async (prev, formData) => { + setSomeState(newValue); // 错误!应该返回新状态 +}, initialState); + +// ✅ 返回新状态 +const [state, action] = useActionState(async (prev, formData) => { + const result = await submitForm(formData); + return { ...prev, data: result }; // 返回新状态 +}, initialState); + +// ❌ 忘记处理 isPending +const [state, action] = useActionState(submitAction, null); +return ; // 用户可以重复点击 + +// ✅ 使用 isPending 禁用按钮 +const [state, action, isPending] = useActionState(submitAction, null); +return ; + +// === useFormStatus 错误 === + +// ❌ 在 form 同级调用 useFormStatus +function Form() { + const { pending } = useFormStatus(); // 永远是 undefined! + return
; +} + +// ✅ 在子组件中调用 +function SubmitButton() { + const { pending } = useFormStatus(); + return ; +} +function Form() { + return
; +} + +// === useOptimistic 错误 === + +// ❌ 用于关键业务操作 +function PaymentButton() { + const [optimisticPaid, setPaid] = useOptimistic(false); + const handlePay = async () => { + setPaid(true); // 危险:显示已支付但可能失败 + await processPayment(); + }; +} + +// ❌ 没有处理回滚后的 UI 状态 +const [optimisticLikes, addLike] = useOptimistic(likes); +// 失败后 UI 回滚,但用户可能困惑为什么点赞消失了 + +// ✅ 提供失败反馈 +const handleLike = async () => { + addLike(1); + try { + await likePost(); + } catch { + toast.error('点赞失败,请重试'); // 通知用户 + } +}; +``` + +### React 19 Forms Checklist +- [ ] useActionState 返回新状态而不是 setState +- [ ] useActionState 正确使用 isPending 禁用提交 +- [ ] useFormStatus 在 form 子组件中调用 +- [ ] useOptimistic 不用于关键业务(支付、删除等) +- [ ] useOptimistic 失败时有用户反馈 +- [ ] Server Action 正确标记 'use server' + +### Suspense & Streaming 错误 + +```tsx +// === Suspense 边界错误 === + +// ❌ 整个页面一个 Suspense——慢内容阻塞快内容 +function BadPage() { + return ( + }> + {/* 快 */} + {/* 慢——阻塞整个页面 */} + {/* 快 */} + + ); +} + +// ✅ 独立边界,互不阻塞 +function GoodPage() { + return ( + <> + + }> + + + + + ); +} + +// ❌ 没有 Error Boundary +function NoErrorHandling() { + return ( + }> + {/* 抛错导致白屏 */} + + ); +} + +// ✅ Error Boundary + Suspense +function WithErrorHandling() { + return ( + }> + }> + + + + ); +} + +// === use() Hook 错误 === + +// ❌ 在组件外创建 Promise(每次渲染新 Promise) +function BadUse() { + const data = use(fetchData()); // 每次渲染都创建新 Promise! + return
{data}
; +} + +// ✅ 在父组件创建,通过 props 传递 +function Parent() { + const dataPromise = useMemo(() => fetchData(), []); + return ; +} +function Child({ dataPromise }) { + const data = use(dataPromise); + return
{data}
; +} + +// === Next.js Streaming 错误 === + +// ❌ 在 layout.tsx 中 await 慢数据——阻塞所有子页面 +// app/layout.tsx +export default async function Layout({ children }) { + const config = await fetchSlowConfig(); // 阻塞整个应用! + return {children}; +} + +// ✅ 将慢数据放在页面级别或使用 Suspense +// app/layout.tsx +export default function Layout({ children }) { + return ( + }> + {children} + + ); +} +``` + +### Suspense Checklist +- [ ] 慢内容有独立的 Suspense 边界 +- [ ] 每个 Suspense 有对应的 Error Boundary +- [ ] fallback 是有意义的骨架屏(不是简单 spinner) +- [ ] use() 的 Promise 不在渲染时创建 +- [ ] 没有在 layout 中 await 慢数据 +- [ ] 嵌套层级不超过 3 层 + +### TanStack Query 错误 + +```tsx +// === 查询配置错误 === + +// ❌ queryKey 不包含查询参数 +function BadQuery({ userId, filters }) { + const { data } = useQuery({ + queryKey: ['users'], // 缺少 userId 和 filters! + queryFn: () => fetchUsers(userId, filters), + }); + // userId 或 filters 变化时数据不会更新 +} + +// ✅ queryKey 包含所有影响数据的参数 +function GoodQuery({ userId, filters }) { + const { data } = useQuery({ + queryKey: ['users', userId, filters], + queryFn: () => fetchUsers(userId, filters), + }); +} + +// ❌ staleTime: 0 导致过度请求 +const { data } = useQuery({ + queryKey: ['data'], + queryFn: fetchData, + // 默认 staleTime: 0,每次组件挂载/窗口聚焦都会 refetch +}); + +// ✅ 设置合理的 staleTime +const { data } = useQuery({ + queryKey: ['data'], + queryFn: fetchData, + staleTime: 5 * 60 * 1000, // 5 分钟内不会自动 refetch +}); + +// === useSuspenseQuery 错误 === + +// ❌ useSuspenseQuery + enabled(不支持) +const { data } = useSuspenseQuery({ + queryKey: ['user', userId], + queryFn: () => fetchUser(userId), + enabled: !!userId, // 错误!useSuspenseQuery 不支持 enabled +}); + +// ✅ 条件渲染实现 +function UserQuery({ userId }) { + const { data } = useSuspenseQuery({ + queryKey: ['user', userId], + queryFn: () => fetchUser(userId), + }); + return ; +} + +function Parent({ userId }) { + if (!userId) return ; + return ( + }> + + + ); +} + +// === Mutation 错误 === + +// ❌ Mutation 成功后不 invalidate 查询 +const mutation = useMutation({ + mutationFn: updateUser, + // 忘记 invalidate,UI 显示旧数据 +}); + +// ✅ 成功后 invalidate 相关查询 +const mutation = useMutation({ + mutationFn: updateUser, + onSuccess: () => { + queryClient.invalidateQueries({ queryKey: ['users'] }); + }, +}); + +// ❌ 乐观更新不处理回滚 +const mutation = useMutation({ + mutationFn: updateTodo, + onMutate: async (newTodo) => { + queryClient.setQueryData(['todos'], (old) => [...old, newTodo]); + // 没有保存旧数据,失败后无法回滚! + }, +}); + +// ✅ 完整的乐观更新 +const mutation = useMutation({ + mutationFn: updateTodo, + onMutate: async (newTodo) => { + await queryClient.cancelQueries({ queryKey: ['todos'] }); + const previous = queryClient.getQueryData(['todos']); + queryClient.setQueryData(['todos'], (old) => [...old, newTodo]); + return { previous }; + }, + onError: (err, newTodo, context) => { + queryClient.setQueryData(['todos'], context.previous); + }, + onSettled: () => { + queryClient.invalidateQueries({ queryKey: ['todos'] }); + }, +}); + +// === v5 迁移错误 === + +// ❌ 使用废弃的 API +const { data, isLoading } = useQuery(['key'], fetchFn); // v4 语法 + +// ✅ v5 单一对象参数 +const { data, isPending } = useQuery({ + queryKey: ['key'], + queryFn: fetchFn, +}); + +// ❌ 混淆 isPending 和 isLoading +if (isLoading) return ; +// v5 中 isLoading = isPending && isFetching + +// ✅ 根据意图选择 +if (isPending) return ; // 没有缓存数据 +// 或 +if (isFetching) return ; // 正在后台刷新 +``` + +### TanStack Query Checklist +- [ ] queryKey 包含所有影响数据的参数 +- [ ] 设置了合理的 staleTime(不是默认 0) +- [ ] useSuspenseQuery 不使用 enabled +- [ ] Mutation 成功后 invalidate 相关查询 +- [ ] 乐观更新有完整的回滚逻辑 +- [ ] v5 使用单一对象参数语法 +- [ ] 理解 isPending vs isLoading vs isFetching + +### TypeScript/JavaScript Common Mistakes +- [ ] `==` instead of `===` +- [ ] Modifying array/object during iteration +- [ ] `this` context lost in callbacks +- [ ] Missing `key` prop in lists +- [ ] Closure capturing loop variable +- [ ] parseInt without radix parameter + +## Vue 3 + +### 响应性丢失 +```vue + + + + + +``` + +### Props 响应性传递 +```vue + + + + + +``` + +### Watch 清理 +```vue + + + + + +``` + +### Computed 副作用 +```vue + + + + + +``` + +### 模板常见错误 +```vue + + + + + +``` + +### Common Mistakes +- [ ] 解构 reactive 对象丢失响应性 +- [ ] props 传递给 composable 时未保持响应性 +- [ ] watch 异步回调无清理函数 +- [ ] computed 中产生副作用 +- [ ] v-for 使用 index 作为 key(列表会重排时) +- [ ] v-if 和 v-for 在同一元素上 +- [ ] defineProps 未使用 TypeScript 类型声明 +- [ ] withDefaults 对象默认值未使用工厂函数 +- [ ] 直接修改 props(而不是 emit) +- [ ] watchEffect 依赖不明确导致过度触发 + +## Python + +### Mutable Default Arguments +```python +# ❌ Bug: List shared across all calls +def add_item(item, items=[]): + items.append(item) + return items + +# ✅ Correct +def add_item(item, items=None): + if items is None: + items = [] + items.append(item) + return items +``` + +### Exception Handling +```python +# ❌ Catching everything, including KeyboardInterrupt +try: + risky_operation() +except: + pass + +# ✅ Catch specific exceptions +try: + risky_operation() +except ValueError as e: + logger.error(f"Invalid value: {e}") + raise +``` + +### Class Attributes +```python +# ❌ Shared mutable class attribute +class User: + permissions = [] # Shared across all instances! + +# ✅ Initialize in __init__ +class User: + def __init__(self): + self.permissions = [] +``` + +### Common Mistakes +- [ ] Using `is` instead of `==` for value comparison +- [ ] Forgetting `self` parameter in methods +- [ ] Modifying list while iterating +- [ ] String concatenation in loops (use join) +- [ ] Not closing files (use `with` statement) + +## Rust + +### 所有权与借用 + +```rust +// ❌ Use after move +let s = String::from("hello"); +let s2 = s; +println!("{}", s); // Error: s was moved + +// ✅ Clone if needed (but consider if clone is necessary) +let s = String::from("hello"); +let s2 = s.clone(); +println!("{}", s); // OK + +// ❌ 用 clone() 绕过借用检查器(反模式) +fn process(data: &Data) { + let owned = data.clone(); // 不必要的 clone + do_something(owned); +} + +// ✅ 正确使用借用 +fn process(data: &Data) { + do_something(data); // 传递引用 +} + +// ❌ 在结构体中存储借用(通常是坏主意) +struct Parser<'a> { + input: &'a str, // 生命周期复杂化 + position: usize, +} + +// ✅ 使用拥有的数据 +struct Parser { + input: String, // 拥有数据,简化生命周期 + position: usize, +} + +// ❌ 迭代时修改集合 +let mut vec = vec![1, 2, 3]; +for item in &vec { + vec.push(*item); // Error: cannot borrow as mutable +} + +// ✅ 收集到新集合 +let vec = vec![1, 2, 3]; +let new_vec: Vec<_> = vec.iter().map(|x| x * 2).collect(); +``` + +### Unsafe 代码审查 + +```rust +// ❌ unsafe 没有安全注释 +unsafe { + ptr::write(dest, value); +} + +// ✅ 必须有 SAFETY 注释说明不变量 +// SAFETY: dest 指针由 Vec::as_mut_ptr() 获得,保证: +// 1. 指针有效且已对齐 +// 2. 目标内存未被其他引用借用 +// 3. 写入不会超出分配的容量 +unsafe { + ptr::write(dest, value); +} + +// ❌ unsafe fn 没有 # Safety 文档 +pub unsafe fn from_raw_parts(ptr: *mut T, len: usize) -> Self { ... } + +// ✅ 必须文档化安全契约 +/// Creates a new instance from raw parts. +/// +/// # Safety +/// +/// - `ptr` must have been allocated via `GlobalAlloc` +/// - `len` must be less than or equal to the allocated capacity +/// - The caller must ensure no other references to the memory exist +pub unsafe fn from_raw_parts(ptr: *mut T, len: usize) -> Self { ... } + +// ❌ 跨模块 unsafe 不变量 +mod a { + pub fn set_flag() { FLAG = true; } // 安全代码影响 unsafe +} +mod b { + pub unsafe fn do_thing() { + if FLAG { /* assumes FLAG means something */ } + } +} + +// ✅ 将 unsafe 边界封装在单一模块 +mod safe_wrapper { + // 所有 unsafe 逻辑在一个模块内 + // 对外提供 safe API +} +``` + +### 异步/并发 + +```rust +// ❌ 在异步上下文中阻塞 +async fn bad_fetch(url: &str) -> Result { + let resp = reqwest::blocking::get(url)?; // 阻塞整个运行时! + Ok(resp.text()?) +} + +// ✅ 使用异步版本 +async fn good_fetch(url: &str) -> Result { + let resp = reqwest::get(url).await?; + Ok(resp.text().await?) +} + +// ❌ 跨 .await 持有 Mutex +async fn bad_lock(mutex: &Mutex) { + let guard = mutex.lock().unwrap(); + some_async_op().await; // 持锁跨越 await! + drop(guard); +} + +// ✅ 缩短锁持有时间 +async fn good_lock(mutex: &Mutex) { + let data = { + let guard = mutex.lock().unwrap(); + guard.clone() // 获取数据后立即释放锁 + }; + some_async_op().await; + // 处理 data +} + +// ❌ 在异步函数中使用 std::sync::Mutex +async fn bad_async_mutex(mutex: &std::sync::Mutex) { + let _guard = mutex.lock().unwrap(); // 可能死锁 + tokio::time::sleep(Duration::from_secs(1)).await; +} + +// ✅ 使用 tokio::sync::Mutex(如果必须跨 await) +async fn good_async_mutex(mutex: &tokio::sync::Mutex) { + let _guard = mutex.lock().await; + tokio::time::sleep(Duration::from_secs(1)).await; +} + +// ❌ 忘记 Future 是惰性的 +fn bad_spawn() { + let future = async_operation(); // 没有执行! + // future 被丢弃,什么都没发生 +} + +// ✅ 必须 await 或 spawn +async fn good_spawn() { + async_operation().await; // 执行 + // 或 + tokio::spawn(async_operation()); // 后台执行 +} + +// ❌ spawn 任务缺少 'static +async fn bad_spawn_lifetime(data: &str) { + tokio::spawn(async { + println!("{}", data); // Error: data 不是 'static + }); +} + +// ✅ 使用 move 或 Arc +async fn good_spawn_lifetime(data: String) { + tokio::spawn(async move { + println!("{}", data); // OK: 拥有数据 + }); +} +``` + +### 错误处理 + +```rust +// ❌ 生产代码中使用 unwrap/expect +fn bad_parse(input: &str) -> i32 { + input.parse().unwrap() // panic! +} + +// ✅ 正确传播错误 +fn good_parse(input: &str) -> Result { + input.parse() +} + +// ❌ 吞掉错误信息 +fn bad_error_handling() -> Result<()> { + match operation() { + Ok(v) => Ok(v), + Err(_) => Err(anyhow!("operation failed")) // 丢失原始错误 + } +} + +// ✅ 使用 context 添加上下文 +fn good_error_handling() -> Result<()> { + operation().context("failed to perform operation")?; + Ok(()) +} + +// ❌ 库代码使用 anyhow(应该用 thiserror) +// lib.rs +pub fn parse_config(path: &str) -> anyhow::Result { + // 调用者无法区分错误类型 +} + +// ✅ 库代码用 thiserror 定义错误类型 +#[derive(Debug, thiserror::Error)] +pub enum ConfigError { + #[error("failed to read config file: {0}")] + Io(#[from] std::io::Error), + #[error("invalid config format: {0}")] + Parse(#[from] serde_json::Error), +} + +pub fn parse_config(path: &str) -> Result { + // 调用者可以 match 不同错误 +} + +// ❌ 忽略 must_use 返回值 +fn bad_ignore_result() { + some_fallible_operation(); // 警告:unused Result +} + +// ✅ 显式处理或标记忽略 +fn good_handle_result() { + let _ = some_fallible_operation(); // 显式忽略 + // 或 + some_fallible_operation().ok(); // 转换为 Option +} +``` + +### 性能陷阱 + +```rust +// ❌ 不必要的 collect +fn bad_process(items: &[i32]) -> i32 { + items.iter() + .filter(|x| **x > 0) + .collect::>() // 不必要的分配 + .iter() + .sum() +} + +// ✅ 惰性迭代 +fn good_process(items: &[i32]) -> i32 { + items.iter() + .filter(|x| **x > 0) + .sum() +} + +// ❌ 循环中重复分配 +fn bad_loop() -> String { + let mut result = String::new(); + for i in 0..1000 { + result = result + &i.to_string(); // 每次迭代都重新分配! + } + result +} + +// ✅ 预分配或使用 push_str +fn good_loop() -> String { + let mut result = String::with_capacity(4000); // 预分配 + for i in 0..1000 { + write!(result, "{}", i).unwrap(); // 原地追加 + } + result +} + +// ❌ 过度使用 clone +fn bad_clone(data: &HashMap>) -> Vec { + data.get("key").cloned().unwrap_or_default() +} + +// ✅ 返回引用或使用 Cow +fn good_ref(data: &HashMap>) -> &[u8] { + data.get("key").map(|v| v.as_slice()).unwrap_or(&[]) +} + +// ❌ 大结构体按值传递 +fn bad_pass(data: LargeStruct) { ... } // 拷贝整个结构体 + +// ✅ 传递引用 +fn good_pass(data: &LargeStruct) { ... } + +// ❌ Box 用于小型已知类型 +fn bad_trait_object() -> Box> { + Box::new(vec![1, 2, 3].into_iter()) +} + +// ✅ 使用 impl Trait +fn good_impl_trait() -> impl Iterator { + vec![1, 2, 3].into_iter() +} + +// ❌ retain 比 filter+collect 慢(某些场景) +vec.retain(|x| x.is_valid()); // O(n) 但常数因子大 + +// ✅ 如果不需要原地修改,考虑 filter +let vec: Vec<_> = vec.into_iter().filter(|x| x.is_valid()).collect(); +``` + +### 生命周期与引用 + +```rust +// ❌ 返回局部变量的引用 +fn bad_return_ref() -> &str { + let s = String::from("hello"); + &s // Error: s will be dropped +} + +// ✅ 返回拥有的数据或静态引用 +fn good_return_owned() -> String { + String::from("hello") +} + +// ❌ 生命周期过度泛化 +fn bad_lifetime<'a, 'b>(x: &'a str, y: &'b str) -> &'a str { + x // 'b 没有被使用 +} + +// ✅ 简化生命周期 +fn good_lifetime(x: &str, _y: &str) -> &str { + x // 编译器自动推断 +} + +// ❌ 结构体持有多个相关引用但生命周期独立 +struct Bad<'a, 'b> { + name: &'a str, + data: &'b [u8], // 通常应该是同一个生命周期 +} + +// ✅ 相关数据使用相同生命周期 +struct Good<'a> { + name: &'a str, + data: &'a [u8], +} +``` + +### Rust 审查清单 + +**所有权与借用** +- [ ] clone() 是有意为之,不是绕过借用检查器 +- [ ] 避免在结构体中存储借用(除非必要) +- [ ] Rc/Arc 使用合理,没有隐藏不必要的共享状态 +- [ ] 没有不必要的 RefCell(运行时检查 vs 编译时) + +**Unsafe 代码** +- [ ] 每个 unsafe 块有 SAFETY 注释 +- [ ] unsafe fn 有 # Safety 文档 +- [ ] 安全不变量被清晰记录 +- [ ] unsafe 边界尽可能小 + +**异步/并发** +- [ ] 没有在异步上下文中阻塞 +- [ ] 没有跨 .await 持有 std::sync 锁 +- [ ] spawn 的任务满足 'static 约束 +- [ ] Future 被正确 await 或 spawn +- [ ] 锁的顺序一致(避免死锁) + +**错误处理** +- [ ] 库代码使用 thiserror,应用代码使用 anyhow +- [ ] 错误有足够的上下文信息 +- [ ] 没有在生产代码中 unwrap/expect +- [ ] must_use 返回值被正确处理 + +**性能** +- [ ] 避免不必要的 collect() +- [ ] 大数据结构传引用 +- [ ] 字符串拼接使用 String::with_capacity 或 write! +- [ ] impl Trait 优于 Box(当可能时) + +**类型系统** +- [ ] 善用 newtype 模式增加类型安全 +- [ ] 枚举穷尽匹配(没有 _ 通配符隐藏新变体) +- [ ] 生命周期尽可能简化 + +## SQL + +### Injection Vulnerabilities +```sql +-- ❌ String concatenation (SQL injection risk) +query = "SELECT * FROM users WHERE id = " + user_id + +-- ✅ Parameterized queries +query = "SELECT * FROM users WHERE id = ?" +cursor.execute(query, (user_id,)) +``` + +### Performance Issues +- [ ] Missing indexes on filtered/joined columns +- [ ] SELECT * instead of specific columns +- [ ] N+1 query patterns +- [ ] Missing LIMIT on large tables +- [ ] Inefficient subqueries vs JOINs + +### Common Mistakes +- [ ] Not handling NULL comparisons correctly +- [ ] Missing transactions for related operations +- [ ] Incorrect JOIN types +- [ ] Case sensitivity issues +- [ ] Date/timezone handling errors + +## API Design + +### REST Issues +- [ ] Inconsistent resource naming +- [ ] Wrong HTTP methods (POST for idempotent operations) +- [ ] Missing pagination for list endpoints +- [ ] Incorrect status codes +- [ ] Missing rate limiting + +### Data Validation +- [ ] Missing input validation +- [ ] Incorrect data type validation +- [ ] Missing length/range checks +- [ ] Not sanitizing user input +- [ ] Trusting client-side validation + +## Testing + +### Test Quality Issues +- [ ] Testing implementation details instead of behavior +- [ ] Missing edge case tests +- [ ] Flaky tests (non-deterministic) +- [ ] Tests with external dependencies +- [ ] Missing negative tests (error cases) +- [ ] Overly complex test setup diff --git a/.github/skills/code-review-skill-main/reference/cpp.md b/.github/skills/code-review-skill-main/reference/cpp.md new file mode 100644 index 0000000000..58743f688b --- /dev/null +++ b/.github/skills/code-review-skill-main/reference/cpp.md @@ -0,0 +1,385 @@ +# C++ Code Review Guide + +> C++ code review guide focused on memory safety, lifetime, API design, and performance. Examples assume C++17/20. + +## Table of Contents + +- [Ownership and RAII](#ownership-and-raii) +- [Lifetime and References](#lifetime-and-references) +- [Copy and Move Semantics](#copy-and-move-semantics) +- [Const-Correctness and API Design](#const-correctness-and-api-design) +- [Error Handling and Exception Safety](#error-handling-and-exception-safety) +- [Concurrency](#concurrency) +- [Performance and Allocation](#performance-and-allocation) +- [Templates and Type Safety](#templates-and-type-safety) +- [Tooling and Build Checks](#tooling-and-build-checks) +- [Review Checklist](#review-checklist) + +--- + +## Ownership and RAII + +### Prefer RAII and smart pointers + +Use RAII to express ownership. Default to `std::unique_ptr`, use `std::shared_ptr` only for shared lifetime. + +```cpp +// ? Bad: manual new/delete with early returns +Foo* make_foo() { + Foo* foo = new Foo(); + if (!foo->Init()) { + delete foo; + return nullptr; + } + return foo; +} + +// ? Good: RAII with unique_ptr +std::unique_ptr make_foo() { + auto foo = std::make_unique(); + if (!foo->Init()) { + return {}; + } + return foo; +} +``` + +### Wrap C resources + +```cpp +// ? Good: wrap FILE* with unique_ptr +using FilePtr = std::unique_ptr; + +FilePtr open_file(const char* path) { + return FilePtr(fopen(path, "rb"), &fclose); +} +``` + +--- + +## Lifetime and References + +### Avoid dangling references and views + +`std::string_view` and `std::span` do not own data. Make sure the owner outlives the view. + +```cpp +// ? Bad: returning string_view to a temporary +std::string_view bad_view() { + std::string s = make_name(); + return s; // dangling +} + +// ? Good: return owning string +std::string good_name() { + return make_name(); +} + +// ? Good: view tied to caller-owned data +std::string_view good_view(const std::string& s) { + return s; +} +``` + +### Lambda captures + +```cpp +// ? Bad: capture reference that escapes +std::function make_task() { + int value = 42; + return [&]() { use(value); }; // dangling +} + +// ? Good: capture by value +std::function make_task() { + int value = 42; + return [value]() { use(value); }; +} +``` + +--- + +## Copy and Move Semantics + +### Rule of 0/3/5 + +Prefer the Rule of 0 by using RAII types. If you own a resource, define or delete copy and move operations. + +```cpp +// ? Bad: raw ownership with default copy +struct Buffer { + int* data; + size_t size; + explicit Buffer(size_t n) : data(new int[n]), size(n) {} + ~Buffer() { delete[] data; } + // copy ctor/assign are implicitly generated -> double delete +}; + +// ? Good: Rule of 0 with std::vector +struct Buffer { + std::vector data; + explicit Buffer(size_t n) : data(n) {} +}; +``` + +### Delete unwanted copies + +```cpp +struct Socket { + Socket() = default; + ~Socket() { close(); } + + Socket(const Socket&) = delete; + Socket& operator=(const Socket&) = delete; + Socket(Socket&&) noexcept = default; + Socket& operator=(Socket&&) noexcept = default; +}; +``` + +--- + +## Const-Correctness and API Design + +### Use const and explicit + +```cpp +class User { +public: + const std::string& name() const { return name_; } + void set_name(std::string name) { name_ = std::move(name); } + +private: + std::string name_; +}; + +struct Millis { + explicit Millis(int v) : value(v) {} + int value; +}; +``` + +### Avoid object slicing + +```cpp +struct Shape { virtual ~Shape() = default; }; +struct Circle : Shape { void draw() const; }; + +// ? Bad: slices Circle into Shape +void draw(Shape shape); + +// ? Good: pass by reference +void draw(const Shape& shape); +``` + +### Use override and final + +```cpp +struct Base { + virtual void run() = 0; +}; + +struct Worker final : Base { + void run() override {} +}; +``` + +--- + +## Error Handling and Exception Safety + +### Prefer RAII for cleanup + +```cpp +// ? Good: RAII handles cleanup on exceptions +void process() { + std::vector data = load_data(); // safe cleanup + do_work(data); +} +``` + +### Do not throw from destructors + +```cpp +struct File { + ~File() noexcept { close(); } + void close(); +}; +``` + +### Use expected results for normal failures + +```cpp +// ? Expected error: use optional or expected +std::optional parse_int(const std::string& s) { + try { + return std::stoi(s); + } catch (...) { + return std::nullopt; + } +} +``` + +--- + +## Concurrency + +### Protect shared data + +```cpp +// ? Bad: data race +int counter = 0; +void inc() { counter++; } + +// ? Good: atomic +std::atomic counter{0}; +void inc() { counter.fetch_add(1, std::memory_order_relaxed); } +``` + +### Use RAII locks + +```cpp +std::mutex mu; +std::vector data; + +void add(int v) { + std::lock_guard lock(mu); + data.push_back(v); +} +``` + +--- + +## Performance and Allocation + +### Avoid repeated allocations + +```cpp +// ? Bad: repeated reallocation +std::vector build(int n) { + std::vector out; + for (int i = 0; i < n; ++i) { + out.push_back(i); + } + return out; +} + +// ? Good: reserve upfront +std::vector build(int n) { + std::vector out; + out.reserve(static_cast(n)); + for (int i = 0; i < n; ++i) { + out.push_back(i); + } + return out; +} +``` + +### String concatenation + +```cpp +// ? Bad: repeated allocation +std::string join(const std::vector& parts) { + std::string out; + for (const auto& p : parts) { + out += p; + } + return out; +} + +// ? Good: reserve total size +std::string join(const std::vector& parts) { + size_t total = 0; + for (const auto& p : parts) { + total += p.size(); + } + std::string out; + out.reserve(total); + for (const auto& p : parts) { + out += p; + } + return out; +} +``` + +--- + +## Templates and Type Safety + +### Prefer constrained templates (C++20) + +```cpp +// ? Bad: overly generic +template +T add(T a, T b) { + return a + b; +} + +// ? Good: constrained +template +requires std::is_integral_v +T add(T a, T b) { + return a + b; +} +``` + +### Use static_assert for invariants + +```cpp +template +struct Packet { + static_assert(std::is_trivially_copyable_v, + "Packet payload must be trivially copyable"); + T payload; +}; +``` + +--- + +## Tooling and Build Checks + +```bash +# Warnings +clang++ -Wall -Wextra -Werror -Wconversion -Wshadow -std=c++20 ... + +# Sanitizers (debug builds) +clang++ -fsanitize=address,undefined -fno-omit-frame-pointer -g ... +clang++ -fsanitize=thread -fno-omit-frame-pointer -g ... + +# Static analysis +clang-tidy src/*.cpp -- -std=c++20 + +# Formatting +clang-format -i src/*.cpp include/*.h +``` + +--- + +## Review Checklist + +### Safety and Lifetime +- [ ] Ownership is explicit (RAII, unique_ptr by default) +- [ ] No dangling references or views +- [ ] Rule of 0/3/5 followed for resource-owning types +- [ ] No raw new/delete in business logic +- [ ] Destructors are noexcept and do not throw + +### API and Design +- [ ] const-correctness is applied consistently +- [ ] Constructors are explicit where needed +- [ ] Override/final used for virtual functions +- [ ] No object slicing (pass by ref or pointer) + +### Concurrency +- [ ] Shared data is protected (mutex or atomics) +- [ ] Locking order is consistent +- [ ] No blocking while holding locks + +### Performance +- [ ] Unnecessary allocations avoided (reserve, move) +- [ ] Copies avoided in hot paths +- [ ] Algorithmic complexity is reasonable + +### Tooling and Tests +- [ ] Builds clean with warnings enabled +- [ ] Sanitizers run on critical code paths +- [ ] Static analysis (clang-tidy) results are addressed diff --git a/.github/skills/code-review-skill-main/reference/css-less-sass.md b/.github/skills/code-review-skill-main/reference/css-less-sass.md new file mode 100644 index 0000000000..638854a584 --- /dev/null +++ b/.github/skills/code-review-skill-main/reference/css-less-sass.md @@ -0,0 +1,656 @@ +# CSS / Less / Sass Review Guide + +CSS 及预处理器代码审查指南,覆盖性能、可维护性、响应式设计和浏览器兼容性。 + +## CSS 变量 vs 硬编码 + +### 应该使用变量的场景 + +```css +/* ❌ 硬编码 - 难以维护 */ +.button { + background: #3b82f6; + border-radius: 8px; +} +.card { + border: 1px solid #3b82f6; + border-radius: 8px; +} + +/* ✅ 使用 CSS 变量 */ +:root { + --color-primary: #3b82f6; + --radius-md: 8px; +} +.button { + background: var(--color-primary); + border-radius: var(--radius-md); +} +.card { + border: 1px solid var(--color-primary); + border-radius: var(--radius-md); +} +``` + +### 变量命名规范 + +```css +/* 推荐的变量分类 */ +:root { + /* 颜色 */ + --color-primary: #3b82f6; + --color-primary-hover: #2563eb; + --color-text: #1f2937; + --color-text-muted: #6b7280; + --color-bg: #ffffff; + --color-border: #e5e7eb; + + /* 间距 */ + --spacing-xs: 4px; + --spacing-sm: 8px; + --spacing-md: 16px; + --spacing-lg: 24px; + --spacing-xl: 32px; + + /* 字体 */ + --font-size-sm: 14px; + --font-size-base: 16px; + --font-size-lg: 18px; + --font-weight-normal: 400; + --font-weight-bold: 700; + + /* 圆角 */ + --radius-sm: 4px; + --radius-md: 8px; + --radius-lg: 12px; + --radius-full: 9999px; + + /* 阴影 */ + --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05); + --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1); + + /* 过渡 */ + --transition-fast: 150ms ease; + --transition-normal: 300ms ease; +} +``` + +### 变量作用域建议 + +```css +/* ✅ 组件级变量 - 减少全局污染 */ +.card { + --card-padding: var(--spacing-md); + --card-radius: var(--radius-md); + + padding: var(--card-padding); + border-radius: var(--card-radius); +} + +/* ⚠️ 避免频繁用 JS 动态修改变量 - 影响性能 */ +``` + +### 审查清单 + +- [ ] 颜色值是否使用变量? +- [ ] 间距是否来自设计系统? +- [ ] 重复值是否提取为变量? +- [ ] 变量命名是否语义化? + +--- + +## !important 使用规范 + +### 何时可以使用 + +```css +/* ✅ 工具类 - 明确需要覆盖 */ +.hidden { display: none !important; } +.sr-only { position: absolute !important; } + +/* ✅ 覆盖第三方库样式(无法修改源码时) */ +.third-party-modal { + z-index: 9999 !important; +} + +/* ✅ 打印样式 */ +@media print { + .no-print { display: none !important; } +} +``` + +### 何时禁止使用 + +```css +/* ❌ 解决特异性问题 - 应该重构选择器 */ +.button { + background: blue !important; /* 为什么需要 !important? */ +} + +/* ❌ 覆盖自己写的样式 */ +.card { padding: 20px; } +.card { padding: 30px !important; } /* 直接修改原规则 */ + +/* ❌ 在组件样式中 */ +.my-component .title { + font-size: 24px !important; /* 破坏组件封装 */ +} +``` + +### 替代方案 + +```css +/* 问题:需要覆盖 .btn 的样式 */ + +/* ❌ 使用 !important */ +.my-btn { + background: red !important; +} + +/* ✅ 提高特异性 */ +button.my-btn { + background: red; +} + +/* ✅ 使用更具体的选择器 */ +.container .my-btn { + background: red; +} + +/* ✅ 使用 :where() 降低被覆盖样式的特异性 */ +:where(.btn) { + background: blue; /* 特异性为 0 */ +} +.my-btn { + background: red; /* 可以正常覆盖 */ +} +``` + +### 审查问题 + +```markdown +🔴 [blocking] "发现 15 处 !important,请说明每处的必要性" +🟡 [important] "这个 !important 可以通过调整选择器特异性来解决" +💡 [suggestion] "考虑使用 CSS Layers (@layer) 来管理样式优先级" +``` + +--- + +## 性能考虑 + +### 🔴 高危性能问题 + +#### 1. `transition: all` 问题 + +```css +/* ❌ 性能杀手 - 浏览器检查所有可动画属性 */ +.button { + transition: all 0.3s ease; +} + +/* ✅ 明确指定属性 */ +.button { + transition: background-color 0.3s ease, transform 0.3s ease; +} + +/* ✅ 多属性时使用变量 */ +.button { + --transition-duration: 0.3s; + transition: + background-color var(--transition-duration) ease, + box-shadow var(--transition-duration) ease, + transform var(--transition-duration) ease; +} +``` + +#### 2. box-shadow 动画 + +```css +/* ❌ 每帧触发重绘 - 严重影响性能 */ +.card { + box-shadow: 0 2px 4px rgba(0,0,0,0.1); + transition: box-shadow 0.3s ease; +} +.card:hover { + box-shadow: 0 8px 16px rgba(0,0,0,0.2); +} + +/* ✅ 使用伪元素 + opacity */ +.card { + position: relative; +} +.card::after { + content: ''; + position: absolute; + inset: 0; + box-shadow: 0 8px 16px rgba(0,0,0,0.2); + opacity: 0; + transition: opacity 0.3s ease; + pointer-events: none; + border-radius: inherit; +} +.card:hover::after { + opacity: 1; +} +``` + +#### 3. 触发布局(Reflow)的属性 + +```css +/* ❌ 动画这些属性会触发布局重计算 */ +.bad-animation { + transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s, margin 0.3s; +} + +/* ✅ 只动画 transform 和 opacity(仅触发合成) */ +.good-animation { + transition: transform 0.3s, opacity 0.3s; +} + +/* 位移用 translate 代替 top/left */ +.move { + transform: translateX(100px); /* ✅ */ + /* left: 100px; */ /* ❌ */ +} + +/* 缩放用 scale 代替 width/height */ +.grow { + transform: scale(1.1); /* ✅ */ + /* width: 110%; */ /* ❌ */ +} +``` + +### 🟡 中等性能问题 + +#### 复杂选择器 + +```css +/* ❌ 过深的嵌套 - 选择器匹配慢 */ +.page .container .content .article .section .paragraph span { + color: red; +} + +/* ✅ 扁平化 */ +.article-text { + color: red; +} + +/* ❌ 通配符选择器 */ +* { box-sizing: border-box; } /* 影响所有元素 */ +[class*="icon-"] { display: inline; } /* 属性选择器较慢 */ + +/* ✅ 限制范围 */ +.icon-box * { box-sizing: border-box; } +``` + +#### 大量阴影和滤镜 + +```css +/* ⚠️ 复杂阴影影响渲染性能 */ +.heavy-shadow { + box-shadow: + 0 1px 2px rgba(0,0,0,0.1), + 0 2px 4px rgba(0,0,0,0.1), + 0 4px 8px rgba(0,0,0,0.1), + 0 8px 16px rgba(0,0,0,0.1), + 0 16px 32px rgba(0,0,0,0.1); /* 5 层阴影 */ +} + +/* ⚠️ 滤镜消耗 GPU */ +.blur-heavy { + filter: blur(20px) brightness(1.2) contrast(1.1); + backdrop-filter: blur(10px); /* 更消耗性能 */ +} +``` + +### 性能优化建议 + +```css +/* 使用 will-change 提示浏览器(谨慎使用) */ +.animated-element { + will-change: transform, opacity; +} + +/* 动画完成后移除 will-change */ +.animated-element.idle { + will-change: auto; +} + +/* 使用 contain 限制重绘范围 */ +.card { + contain: layout paint; /* 告诉浏览器内部变化不影响外部 */ +} +``` + +### 审查清单 + +- [ ] 是否使用 `transition: all`? +- [ ] 是否动画 width/height/top/left? +- [ ] box-shadow 是否被动画? +- [ ] 选择器嵌套是否超过 3 层? +- [ ] 是否有不必要的 `will-change`? + +--- + +## 响应式设计检查点 + +### Mobile First 原则 + +```css +/* ✅ Mobile First - 基础样式针对移动端 */ +.container { + padding: 16px; + display: flex; + flex-direction: column; +} + +/* 逐步增强 */ +@media (min-width: 768px) { + .container { + padding: 24px; + flex-direction: row; + } +} + +@media (min-width: 1024px) { + .container { + padding: 32px; + max-width: 1200px; + margin: 0 auto; + } +} + +/* ❌ Desktop First - 需要覆盖更多样式 */ +.container { + max-width: 1200px; + padding: 32px; + flex-direction: row; +} + +@media (max-width: 1023px) { + .container { + padding: 24px; + } +} + +@media (max-width: 767px) { + .container { + padding: 16px; + flex-direction: column; + max-width: none; + } +} +``` + +### 断点建议 + +```css +/* 推荐断点(基于内容而非设备) */ +:root { + --breakpoint-sm: 640px; /* 大手机 */ + --breakpoint-md: 768px; /* 平板竖屏 */ + --breakpoint-lg: 1024px; /* 平板横屏/小笔记本 */ + --breakpoint-xl: 1280px; /* 桌面 */ + --breakpoint-2xl: 1536px; /* 大桌面 */ +} + +/* 使用示例 */ +@media (min-width: 768px) { /* md */ } +@media (min-width: 1024px) { /* lg */ } +``` + +### 响应式审查清单 + +- [ ] 是否采用 Mobile First? +- [ ] 断点是否基于内容断裂点而非设备? +- [ ] 是否避免断点重叠? +- [ ] 文字是否使用相对单位(rem/em)? +- [ ] 触摸目标是否足够大(≥44px)? +- [ ] 是否测试了横竖屏切换? + +### 常见问题 + +```css +/* ❌ 固定宽度 */ +.container { + width: 1200px; +} + +/* ✅ 最大宽度 + 弹性 */ +.container { + width: 100%; + max-width: 1200px; + padding-inline: 16px; +} + +/* ❌ 固定高度的文本容器 */ +.text-box { + height: 100px; /* 文字可能溢出 */ +} + +/* ✅ 最小高度 */ +.text-box { + min-height: 100px; +} + +/* ❌ 小触摸目标 */ +.small-button { + padding: 4px 8px; /* 太小,难以点击 */ +} + +/* ✅ 足够的触摸区域 */ +.touch-button { + min-height: 44px; + min-width: 44px; + padding: 12px 16px; +} +``` + +--- + +## 浏览器兼容性 + +### 需要检查的特性 + +| 特性 | 兼容性 | 建议 | +|------|--------|------| +| CSS Grid | 现代浏览器 ✅ | IE 需要 Autoprefixer + 测试 | +| Flexbox | 广泛支持 ✅ | 旧版需要前缀 | +| CSS Variables | 现代浏览器 ✅ | IE 不支持,需要回退 | +| `gap` (flexbox) | 较新 ⚠️ | Safari 14.1+ | +| `:has()` | 较新 ⚠️ | Firefox 121+ | +| `container queries` | 较新 ⚠️ | 2023 年后的浏览器 | +| `@layer` | 较新 ⚠️ | 检查目标浏览器 | + +### 回退策略 + +```css +/* CSS 变量回退 */ +.button { + background: #3b82f6; /* 回退值 */ + background: var(--color-primary); /* 现代浏览器 */ +} + +/* Flexbox gap 回退 */ +.flex-container { + display: flex; + gap: 16px; +} +/* 旧浏览器回退 */ +.flex-container > * + * { + margin-left: 16px; +} + +/* Grid 回退 */ +.grid { + display: flex; + flex-wrap: wrap; +} +@supports (display: grid) { + .grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); + } +} +``` + +### Autoprefixer 配置 + +```javascript +// postcss.config.js +module.exports = { + plugins: [ + require('autoprefixer')({ + // 根据 browserslist 配置 + grid: 'autoplace', // 启用 Grid 前缀(IE 支持) + flexbox: 'no-2009', // 只用现代 flexbox 语法 + }), + ], +}; + +// package.json +{ + "browserslist": [ + "> 1%", + "last 2 versions", + "not dead", + "not ie 11" // 根据项目需求 + ] +} +``` + +### 审查清单 + +- [ ] 是否检查了 [Can I Use](https://caniuse.com)? +- [ ] 新特性是否有回退方案? +- [ ] 是否配置了 Autoprefixer? +- [ ] browserslist 是否符合项目要求? +- [ ] 是否在目标浏览器中测试? + +--- + +## Less / Sass 特定问题 + +### 嵌套深度 + +```scss +/* ❌ 过深嵌套 - 编译后选择器过长 */ +.page { + .container { + .content { + .article { + .title { + color: red; // 编译为 .page .container .content .article .title + } + } + } + } +} + +/* ✅ 最多 3 层 */ +.article { + &__title { + color: red; + } + + &__content { + p { margin-bottom: 1em; } + } +} +``` + +### Mixin vs Extend vs 变量 + +```scss +/* 变量 - 用于单个值 */ +$primary-color: #3b82f6; + +/* Mixin - 用于可配置的代码块 */ +@mixin button-variant($bg, $text) { + background: $bg; + color: $text; + &:hover { + background: darken($bg, 10%); + } +} + +/* Extend - 用于共享相同样式(谨慎使用) */ +%visually-hidden { + position: absolute; + width: 1px; + height: 1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); +} + +.sr-only { + @extend %visually-hidden; +} + +/* ⚠️ @extend 的问题 */ +// 可能产生意外的选择器组合 +// 不能在 @media 中使用 +// 优先使用 mixin +``` + +### 审查清单 + +- [ ] 嵌套是否超过 3 层? +- [ ] 是否滥用 @extend? +- [ ] Mixin 是否过于复杂? +- [ ] 编译后的 CSS 大小是否合理? + +--- + +## 快速审查清单 + +### 🔴 必须修复 + +```markdown +□ transition: all +□ 动画 width/height/top/left/margin +□ 大量 !important +□ 硬编码的颜色/间距重复 >3 次 +□ 选择器嵌套 >4 层 +``` + +### 🟡 建议修复 + +```markdown +□ 缺少响应式处理 +□ 使用 Desktop First +□ 复杂 box-shadow 被动画 +□ 缺少浏览器兼容回退 +□ CSS 变量作用域过大 +``` + +### 🟢 优化建议 + +```markdown +□ 可以使用 CSS Grid 简化布局 +□ 可以使用 CSS 变量提取重复值 +□ 可以使用 @layer 管理优先级 +□ 可以添加 contain 优化性能 +``` + +--- + +## 工具推荐 + +| 工具 | 用途 | +|------|------| +| [Stylelint](https://stylelint.io/) | CSS 代码检查 | +| [PurgeCSS](https://purgecss.com/) | 移除未使用 CSS | +| [Autoprefixer](https://autoprefixer.github.io/) | 自动添加前缀 | +| [CSS Stats](https://cssstats.com/) | 分析 CSS 统计 | +| [Can I Use](https://caniuse.com/) | 浏览器兼容性查询 | + +--- + +## 参考资源 + +- [CSS Performance Optimization - MDN](https://developer.mozilla.org/en-US/docs/Learn_web_development/Extensions/Performance/CSS) +- [What a CSS Code Review Might Look Like - CSS-Tricks](https://css-tricks.com/what-a-css-code-review-might-look-like/) +- [How to Animate Box-Shadow - Tobias Ahlin](https://tobiasahlin.com/blog/how-to-animate-box-shadow/) +- [Media Query Fundamentals - MDN](https://developer.mozilla.org/en-US/docs/Learn_web_development/Core/CSS_layout/Media_queries) +- [Autoprefixer - GitHub](https://github.com/postcss/autoprefixer) diff --git a/.github/skills/code-review-skill-main/reference/go.md b/.github/skills/code-review-skill-main/reference/go.md new file mode 100644 index 0000000000..2438fea5b7 --- /dev/null +++ b/.github/skills/code-review-skill-main/reference/go.md @@ -0,0 +1,989 @@ +# Go 代码审查指南 + +基于 Go 官方指南、Effective Go 和社区最佳实践的代码审查清单。 + +## 快速审查清单 + +### 必查项 +- [ ] 错误是否正确处理(不忽略、有上下文) +- [ ] goroutine 是否有退出机制(避免泄漏) +- [ ] context 是否正确传递和取消 +- [ ] 接收器类型选择是否合理(值/指针) +- [ ] 是否使用 `gofmt` 格式化代码 + +### 高频问题 +- [ ] 循环变量捕获问题(Go < 1.22) +- [ ] nil 检查是否完整 +- [ ] map 是否初始化后使用 +- [ ] defer 在循环中的使用 +- [ ] 变量遮蔽(shadowing) + +--- + +## 1. 错误处理 + +### 1.1 永远不要忽略错误 + +```go +// ❌ 错误:忽略错误 +result, _ := SomeFunction() + +// ✅ 正确:处理错误 +result, err := SomeFunction() +if err != nil { + return fmt.Errorf("some function failed: %w", err) +} +``` + +### 1.2 错误包装与上下文 + +```go +// ❌ 错误:丢失上下文 +if err != nil { + return err +} + +// ❌ 错误:使用 %v 丢失错误链 +if err != nil { + return fmt.Errorf("failed: %v", err) +} + +// ✅ 正确:使用 %w 保留错误链 +if err != nil { + return fmt.Errorf("failed to process user %d: %w", userID, err) +} +``` + +### 1.3 使用 errors.Is 和 errors.As + +```go +// ❌ 错误:直接比较(无法处理包装错误) +if err == sql.ErrNoRows { + // ... +} + +// ✅ 正确:使用 errors.Is(支持错误链) +if errors.Is(err, sql.ErrNoRows) { + return nil, ErrNotFound +} + +// ✅ 正确:使用 errors.As 提取特定类型 +var pathErr *os.PathError +if errors.As(err, &pathErr) { + log.Printf("path error: %s", pathErr.Path) +} +``` + +### 1.4 自定义错误类型 + +```go +// ✅ 推荐:定义 sentinel 错误 +var ( + ErrNotFound = errors.New("not found") + ErrUnauthorized = errors.New("unauthorized") +) + +// ✅ 推荐:带上下文的自定义错误 +type ValidationError struct { + Field string + Message string +} + +func (e *ValidationError) Error() string { + return fmt.Sprintf("validation error on %s: %s", e.Field, e.Message) +} +``` + +### 1.5 错误处理只做一次 + +```go +// ❌ 错误:既记录又返回(重复处理) +if err != nil { + log.Printf("error: %v", err) + return err +} + +// ✅ 正确:只返回,让调用者决定 +if err != nil { + return fmt.Errorf("operation failed: %w", err) +} + +// ✅ 或者:只记录并处理(不返回) +if err != nil { + log.Printf("non-critical error: %v", err) + // 继续执行备用逻辑 +} +``` + +--- + +## 2. 并发与 Goroutine + +### 2.1 避免 Goroutine 泄漏 + +```go +// ❌ 错误:goroutine 永远无法退出 +func bad() { + ch := make(chan int) + go func() { + val := <-ch // 永远阻塞,无人发送 + fmt.Println(val) + }() + // 函数返回,goroutine 泄漏 +} + +// ✅ 正确:使用 context 或 done channel +func good(ctx context.Context) { + ch := make(chan int) + go func() { + select { + case val := <-ch: + fmt.Println(val) + case <-ctx.Done(): + return // 优雅退出 + } + }() +} +``` + +### 2.2 Channel 使用规范 + +```go +// ❌ 错误:向 nil channel 发送(永久阻塞) +var ch chan int +ch <- 1 // 永久阻塞 + +// ❌ 错误:向已关闭的 channel 发送(panic) +close(ch) +ch <- 1 // panic! + +// ✅ 正确:发送方关闭 channel +func producer(ch chan<- int) { + defer close(ch) // 发送方负责关闭 + for i := 0; i < 10; i++ { + ch <- i + } +} + +// ✅ 正确:接收方检测关闭 +for val := range ch { + process(val) +} +// 或者 +val, ok := <-ch +if !ok { + // channel 已关闭 +} +``` + +### 2.3 使用 sync.WaitGroup + +```go +// ❌ 错误:Add 在 goroutine 内部 +var wg sync.WaitGroup +for i := 0; i < 10; i++ { + go func() { + wg.Add(1) // 竞态条件! + defer wg.Done() + work() + }() +} +wg.Wait() + +// ✅ 正确:Add 在 goroutine 启动前 +var wg sync.WaitGroup +for i := 0; i < 10; i++ { + wg.Add(1) + go func() { + defer wg.Done() + work() + }() +} +wg.Wait() +``` + +### 2.4 避免在循环中捕获变量(Go < 1.22) + +```go +// ❌ 错误(Go < 1.22):捕获循环变量 +for _, item := range items { + go func() { + process(item) // 所有 goroutine 可能使用同一个 item + }() +} + +// ✅ 正确:传递参数 +for _, item := range items { + go func(it Item) { + process(it) + }(item) +} + +// ✅ Go 1.22+:默认行为已修复,每次迭代创建新变量 +``` + +### 2.5 Worker Pool 模式 + +```go +// ✅ 推荐:限制并发数量 +func processWithWorkerPool(ctx context.Context, items []Item, workers int) error { + jobs := make(chan Item, len(items)) + results := make(chan error, len(items)) + + // 启动 worker + for w := 0; w < workers; w++ { + go func() { + for item := range jobs { + results <- process(item) + } + }() + } + + // 发送任务 + for _, item := range items { + jobs <- item + } + close(jobs) + + // 收集结果 + for range items { + if err := <-results; err != nil { + return err + } + } + return nil +} +``` + +--- + +## 3. Context 使用 + +### 3.1 Context 作为第一个参数 + +```go +// ❌ 错误:context 不是第一个参数 +func Process(data []byte, ctx context.Context) error + +// ❌ 错误:context 存储在 struct 中 +type Service struct { + ctx context.Context // 不要这样做! +} + +// ✅ 正确:context 作为第一个参数,命名为 ctx +func Process(ctx context.Context, data []byte) error +``` + +### 3.2 传播而非创建新的根 Context + +```go +// ❌ 错误:在调用链中创建新的根 context +func middleware(next http.Handler) http.Handler { + return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + ctx := context.Background() // 丢失了请求的 context! + process(ctx) + next.ServeHTTP(w, r) + }) +} + +// ✅ 正确:从请求中获取并传播 +func middleware(next http.Handler) http.Handler { + return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + ctx := r.Context() + ctx = context.WithValue(ctx, key, value) + process(ctx) + next.ServeHTTP(w, r.WithContext(ctx)) + }) +} +``` + +### 3.3 始终调用 cancel 函数 + +```go +// ❌ 错误:未调用 cancel +ctx, cancel := context.WithTimeout(parentCtx, 5*time.Second) +// 缺少 cancel() 调用,可能资源泄漏 + +// ✅ 正确:使用 defer 确保调用 +ctx, cancel := context.WithTimeout(parentCtx, 5*time.Second) +defer cancel() // 即使超时也要调用 +``` + +### 3.4 响应 Context 取消 + +```go +// ✅ 推荐:在长时间操作中检查 context +func LongRunningTask(ctx context.Context) error { + for { + select { + case <-ctx.Done(): + return ctx.Err() // 返回 context.Canceled 或 context.DeadlineExceeded + default: + // 执行一小部分工作 + if err := doChunk(); err != nil { + return err + } + } + } +} +``` + +### 3.5 区分取消原因 + +```go +// ✅ 根据 ctx.Err() 区分取消原因 +if err := ctx.Err(); err != nil { + switch { + case errors.Is(err, context.Canceled): + log.Println("operation was canceled") + case errors.Is(err, context.DeadlineExceeded): + log.Println("operation timed out") + } + return err +} +``` + +--- + +## 4. 接口设计 + +### 4.1 接受接口,返回结构体 + +```go +// ❌ 不推荐:接受具体类型 +func SaveUser(db *sql.DB, user User) error + +// ✅ 推荐:接受接口(解耦、易测试) +type UserStore interface { + Save(ctx context.Context, user User) error +} + +func SaveUser(store UserStore, user User) error + +// ❌ 不推荐:返回接口 +func NewUserService() UserServiceInterface + +// ✅ 推荐:返回具体类型 +func NewUserService(store UserStore) *UserService +``` + +### 4.2 在消费者处定义接口 + +```go +// ❌ 不推荐:在实现包中定义接口 +// package database +type Database interface { + Query(ctx context.Context, query string) ([]Row, error) + // ... 20 个方法 +} + +// ✅ 推荐:在消费者包中定义所需的最小接口 +// package userservice +type UserQuerier interface { + QueryUsers(ctx context.Context, filter Filter) ([]User, error) +} +``` + +### 4.3 保持接口小而专注 + +```go +// ❌ 不推荐:大而全的接口 +type Repository interface { + GetUser(id int) (*User, error) + CreateUser(u *User) error + UpdateUser(u *User) error + DeleteUser(id int) error + GetOrder(id int) (*Order, error) + CreateOrder(o *Order) error + // ... 更多方法 +} + +// ✅ 推荐:小而专注的接口 +type UserReader interface { + GetUser(ctx context.Context, id int) (*User, error) +} + +type UserWriter interface { + CreateUser(ctx context.Context, u *User) error + UpdateUser(ctx context.Context, u *User) error +} + +// 组合接口 +type UserRepository interface { + UserReader + UserWriter +} +``` + +### 4.4 避免空接口滥用 + +```go +// ❌ 不推荐:过度使用 interface{} +func Process(data interface{}) interface{} + +// ✅ 推荐:使用泛型(Go 1.18+) +func Process[T any](data T) T + +// ✅ 推荐:定义具体接口 +type Processor interface { + Process() Result +} +``` + +--- + +## 5. 接收器类型选择 + +### 5.1 使用指针接收器的情况 + +```go +// ✅ 需要修改接收器时 +func (u *User) SetName(name string) { + u.Name = name +} + +// ✅ 接收器包含 sync.Mutex 等同步原语 +type SafeCounter struct { + mu sync.Mutex + count int +} + +func (c *SafeCounter) Inc() { + c.mu.Lock() + defer c.mu.Unlock() + c.count++ +} + +// ✅ 接收器是大型结构体(避免复制开销) +type LargeStruct struct { + Data [1024]byte + // ... +} + +func (l *LargeStruct) Process() { /* ... */ } +``` + +### 5.2 使用值接收器的情况 + +```go +// ✅ 接收器是小型不可变结构体 +type Point struct { + X, Y float64 +} + +func (p Point) Distance(other Point) float64 { + return math.Sqrt(math.Pow(p.X-other.X, 2) + math.Pow(p.Y-other.Y, 2)) +} + +// ✅ 接收器是基本类型的别名 +type Counter int + +func (c Counter) String() string { + return fmt.Sprintf("%d", c) +} + +// ✅ 接收器是 map、func、chan(本身是引用类型) +type StringSet map[string]struct{} + +func (s StringSet) Contains(key string) bool { + _, ok := s[key] + return ok +} +``` + +### 5.3 一致性原则 + +```go +// ❌ 不推荐:混合使用接收器类型 +func (u User) GetName() string // 值接收器 +func (u *User) SetName(n string) // 指针接收器 + +// ✅ 推荐:如果有任何方法需要指针接收器,全部使用指针 +func (u *User) GetName() string { return u.Name } +func (u *User) SetName(n string) { u.Name = n } +``` + +--- + +## 6. 性能优化 + +### 6.1 预分配 Slice + +```go +// ❌ 不推荐:动态增长 +var result []int +for i := 0; i < 10000; i++ { + result = append(result, i) // 多次分配和复制 +} + +// ✅ 推荐:预分配已知大小 +result := make([]int, 0, 10000) +for i := 0; i < 10000; i++ { + result = append(result, i) +} + +// ✅ 或者直接初始化 +result := make([]int, 10000) +for i := 0; i < 10000; i++ { + result[i] = i +} +``` + +### 6.2 避免不必要的堆分配 + +```go +// ❌ 可能逃逸到堆 +func NewUser() *User { + return &User{} // 逃逸到堆 +} + +// ✅ 考虑返回值(如果适用) +func NewUser() User { + return User{} // 可能在栈上分配 +} + +// 检查逃逸分析 +// go build -gcflags '-m -m' ./... +``` + +### 6.3 使用 sync.Pool 复用对象 + +```go +// ✅ 推荐:高频创建/销毁的对象使用 sync.Pool +var bufferPool = sync.Pool{ + New: func() interface{} { + return new(bytes.Buffer) + }, +} + +func ProcessData(data []byte) string { + buf := bufferPool.Get().(*bytes.Buffer) + defer func() { + buf.Reset() + bufferPool.Put(buf) + }() + + buf.Write(data) + return buf.String() +} +``` + +### 6.4 字符串拼接优化 + +```go +// ❌ 不推荐:循环中使用 + 拼接 +var result string +for _, s := range strings { + result += s // 每次创建新字符串 +} + +// ✅ 推荐:使用 strings.Builder +var builder strings.Builder +for _, s := range strings { + builder.WriteString(s) +} +result := builder.String() + +// ✅ 或者使用 strings.Join +result := strings.Join(strings, "") +``` + +### 6.5 避免 interface{} 转换开销 + +```go +// ❌ 热路径中使用 interface{} +func process(data interface{}) { + switch v := data.(type) { // 类型断言有开销 + case int: + // ... + } +} + +// ✅ 热路径中使用泛型或具体类型 +func process[T int | int64 | float64](data T) { + // 编译时确定类型,无运行时开销 +} +``` + +--- + +## 7. 测试 + +### 7.1 表驱动测试 + +```go +// ✅ 推荐:表驱动测试 +func TestAdd(t *testing.T) { + tests := []struct { + name string + a, b int + expected int + }{ + {"positive numbers", 1, 2, 3}, + {"with zero", 0, 5, 5}, + {"negative numbers", -1, -2, -3}, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + result := Add(tt.a, tt.b) + if result != tt.expected { + t.Errorf("Add(%d, %d) = %d; want %d", + tt.a, tt.b, result, tt.expected) + } + }) + } +} +``` + +### 7.2 并行测试 + +```go +// ✅ 推荐:独立测试用例并行执行 +func TestParallel(t *testing.T) { + tests := []struct { + name string + input string + }{ + {"test1", "input1"}, + {"test2", "input2"}, + } + + for _, tt := range tests { + tt := tt // Go < 1.22 需要复制 + t.Run(tt.name, func(t *testing.T) { + t.Parallel() // 标记为可并行 + result := Process(tt.input) + // assertions... + }) + } +} +``` + +### 7.3 使用接口进行 Mock + +```go +// ✅ 定义接口以便测试 +type EmailSender interface { + Send(to, subject, body string) error +} + +// 生产实现 +type SMTPSender struct { /* ... */ } + +// 测试 Mock +type MockEmailSender struct { + SendFunc func(to, subject, body string) error +} + +func (m *MockEmailSender) Send(to, subject, body string) error { + return m.SendFunc(to, subject, body) +} + +func TestUserRegistration(t *testing.T) { + mock := &MockEmailSender{ + SendFunc: func(to, subject, body string) error { + if to != "test@example.com" { + t.Errorf("unexpected recipient: %s", to) + } + return nil + }, + } + + service := NewUserService(mock) + // test... +} +``` + +### 7.4 测试辅助函数 + +```go +// ✅ 使用 t.Helper() 标记辅助函数 +func assertEqual(t *testing.T, got, want interface{}) { + t.Helper() // 错误报告时显示调用者位置 + if got != want { + t.Errorf("got %v, want %v", got, want) + } +} + +// ✅ 使用 t.Cleanup() 清理资源 +func TestWithTempFile(t *testing.T) { + f, err := os.CreateTemp("", "test") + if err != nil { + t.Fatal(err) + } + t.Cleanup(func() { + os.Remove(f.Name()) + }) + // test... +} +``` + +--- + +## 8. 常见陷阱 + +### 8.1 Nil Slice vs Empty Slice + +```go +var nilSlice []int // nil, len=0, cap=0 +emptySlice := []int{} // not nil, len=0, cap=0 +made := make([]int, 0) // not nil, len=0, cap=0 + +// ✅ JSON 编码差异 +json.Marshal(nilSlice) // null +json.Marshal(emptySlice) // [] + +// ✅ 推荐:需要空数组 JSON 时显式初始化 +if slice == nil { + slice = []int{} +} +``` + +### 8.2 Map 初始化 + +```go +// ❌ 错误:未初始化的 map +var m map[string]int +m["key"] = 1 // panic: assignment to entry in nil map + +// ✅ 正确:使用 make 初始化 +m := make(map[string]int) +m["key"] = 1 + +// ✅ 或者使用字面量 +m := map[string]int{} +``` + +### 8.3 Defer 在循环中 + +```go +// ❌ 潜在问题:defer 在函数结束时才执行 +func processFiles(files []string) error { + for _, file := range files { + f, err := os.Open(file) + if err != nil { + return err + } + defer f.Close() // 所有文件在函数结束时才关闭! + // process... + } + return nil +} + +// ✅ 正确:使用闭包或提取函数 +func processFiles(files []string) error { + for _, file := range files { + if err := processFile(file); err != nil { + return err + } + } + return nil +} + +func processFile(file string) error { + f, err := os.Open(file) + if err != nil { + return err + } + defer f.Close() + // process... + return nil +} +``` + +### 8.4 Slice 底层数组共享 + +```go +// ❌ 潜在问题:切片共享底层数组 +original := []int{1, 2, 3, 4, 5} +slice := original[1:3] // [2, 3] +slice[0] = 100 // 修改了 original! +// original 变成 [1, 100, 3, 4, 5] + +// ✅ 正确:需要独立副本时显式复制 +slice := make([]int, 2) +copy(slice, original[1:3]) +slice[0] = 100 // 不影响 original +``` + +### 8.5 字符串子串内存泄漏 + +```go +// ❌ 潜在问题:子串持有整个底层数组 +func getPrefix(s string) string { + return s[:10] // 仍引用整个 s 的底层数组 +} + +// ✅ 正确:创建独立副本(Go 1.18+) +func getPrefix(s string) string { + return strings.Clone(s[:10]) +} + +// ✅ Go 1.18 之前 +func getPrefix(s string) string { + return string([]byte(s[:10])) +} +``` + +### 8.6 Interface Nil 陷阱 + +```go +// ❌ 陷阱:interface 的 nil 判断 +type MyError struct{} +func (e *MyError) Error() string { return "error" } + +func returnsError() error { + var e *MyError = nil + return e // 返回的 error 不是 nil! +} + +func main() { + err := returnsError() + if err != nil { // true! interface{type: *MyError, value: nil} + fmt.Println("error:", err) + } +} + +// ✅ 正确:显式返回 nil +func returnsError() error { + var e *MyError = nil + if e == nil { + return nil // 显式返回 nil + } + return e +} +``` + +### 8.7 Time 比较 + +```go +// ❌ 不推荐:直接使用 == 比较 time.Time +if t1 == t2 { // 可能因为单调时钟差异而失败 + // ... +} + +// ✅ 推荐:使用 Equal 方法 +if t1.Equal(t2) { + // ... +} + +// ✅ 比较时间范围 +if t1.Before(t2) || t1.After(t2) { + // ... +} +``` + +--- + +## 9. 代码组织 + +### 9.1 包命名 + +```go +// ❌ 不推荐 +package common // 过于宽泛 +package utils // 过于宽泛 +package helpers // 过于宽泛 +package models // 按类型分组 + +// ✅ 推荐:按功能命名 +package user // 用户相关功能 +package order // 订单相关功能 +package postgres // PostgreSQL 实现 +``` + +### 9.2 避免循环依赖 + +```go +// ❌ 循环依赖 +// package a imports package b +// package b imports package a + +// ✅ 解决方案1:提取共享类型到独立包 +// package types (共享类型) +// package a imports types +// package b imports types + +// ✅ 解决方案2:使用接口解耦 +// package a 定义接口 +// package b 实现接口 +``` + +### 9.3 导出标识符规范 + +```go +// ✅ 只导出必要的标识符 +type UserService struct { + db *sql.DB // 私有 +} + +func (s *UserService) GetUser(id int) (*User, error) // 公开 +func (s *UserService) validate(u *User) error // 私有 + +// ✅ 内部包限制访问 +// internal/database/... 只能被同项目代码导入 +``` + +--- + +## 10. 工具与检查 + +### 10.1 必须使用的工具 + +```bash +# 格式化(必须) +gofmt -w . +goimports -w . + +# 静态分析 +go vet ./... + +# 竞态检测 +go test -race ./... + +# 逃逸分析 +go build -gcflags '-m -m' ./... +``` + +### 10.2 推荐的 Linter + +```bash +# golangci-lint(集成多个 linter) +golangci-lint run + +# 常用检查项 +# - errcheck: 检查未处理的错误 +# - gosec: 安全检查 +# - ineffassign: 无效赋值 +# - staticcheck: 静态分析 +# - unused: 未使用的代码 +``` + +### 10.3 Benchmark 测试 + +```go +// ✅ 性能基准测试 +func BenchmarkProcess(b *testing.B) { + data := prepareData() + b.ResetTimer() // 重置计时器 + + for i := 0; i < b.N; i++ { + Process(data) + } +} + +// 运行 benchmark +// go test -bench=. -benchmem ./... +``` + +--- + +## 参考资源 + +- [Effective Go](https://go.dev/doc/effective_go) +- [Go Code Review Comments](https://go.dev/wiki/CodeReviewComments) +- [Go Common Mistakes](https://go.dev/wiki/CommonMistakes) +- [100 Go Mistakes](https://100go.co/) +- [Go Proverbs](https://go-proverbs.github.io/) +- [Uber Go Style Guide](https://github.com/uber-go/guide/blob/master/style.md) diff --git a/.github/skills/code-review-skill-main/reference/java.md b/.github/skills/code-review-skill-main/reference/java.md new file mode 100644 index 0000000000..2e4e177c36 --- /dev/null +++ b/.github/skills/code-review-skill-main/reference/java.md @@ -0,0 +1,405 @@ +# Java Code Review Guide + +Java 审查重点:Java 17/21 新特性、Spring Boot 3 最佳实践、并发编程(虚拟线程)、JPA 性能优化以及代码可维护性。 + +## 目录 + +- [现代 Java 特性 (17/21+)](#现代-java-特性-1721) +- [Stream API & Optional](#stream-api--optional) +- [Spring Boot 最佳实践](#spring-boot-最佳实践) +- [JPA 与 数据库性能](#jpa-与-数据库性能) +- [并发与虚拟线程](#并发与虚拟线程) +- [Lombok 使用规范](#lombok-使用规范) +- [异常处理](#异常处理) +- [测试规范](#测试规范) +- [Review Checklist](#review-checklist) + +--- + +## 现代 Java 特性 (17/21+) + +### Record (记录类) + +```java +// ❌ 传统的 POJO/DTO:样板代码多 +public class UserDto { + private final String name; + private final int age; + + public UserDto(String name, int age) { + this.name = name; + this.age = age; + } + // getters, equals, hashCode, toString... +} + +// ✅ 使用 Record:简洁、不可变、语义清晰 +public record UserDto(String name, int age) { + // 紧凑构造函数进行验证 + public UserDto { + if (age < 0) throw new IllegalArgumentException("Age cannot be negative"); + } +} +``` + +### Switch 表达式与模式匹配 + +```java +// ❌ 传统的 Switch:容易漏掉 break,不仅冗长且易错 +String type = ""; +switch (obj) { + case Integer i: // Java 16+ + type = String.format("int %d", i); + break; + case String s: + type = String.format("string %s", s); + break; + default: + type = "unknown"; +} + +// ✅ Switch 表达式:无穿透风险,强制返回值 +String type = switch (obj) { + case Integer i -> "int %d".formatted(i); + case String s -> "string %s".formatted(s); + case null -> "null value"; // Java 21 处理 null + default -> "unknown"; +}; +``` + +### 文本块 (Text Blocks) + +```java +// ❌ 拼接 SQL/JSON 字符串 +String json = "{\n" + + " \"name\": \"Alice\",\n" + + " \"age\": 20\n" + + "}"; + +// ✅ 使用文本块:所见即所得 +String json = """ + { + "name": "Alice", + "age": 20 + } + """; +``` + +--- + +## Stream API & Optional + +### 避免滥用 Stream + +```java +// ❌ 简单的循环不需要 Stream(性能开销 + 可读性差) +items.stream().forEach(item -> { + process(item); +}); + +// ✅ 简单场景直接用 for-each +for (var item : items) { + process(item); +} + +// ❌ 极其复杂的 Stream 链 +List result = list.stream() + .filter(...) + .map(...) + .peek(...) + .sorted(...) + .collect(...); // 难以调试 + +// ✅ 拆分为有意义的步骤 +var filtered = list.stream().filter(...).toList(); +// ... +``` + +### Optional 正确用法 + +```java +// ❌ 将 Optional 用作参数或字段(序列化问题,增加调用复杂度) +public void process(Optional name) { ... } +public class User { + private Optional email; // 不推荐 +} + +// ✅ Optional 仅用于返回值 +public Optional findUser(String id) { ... } + +// ❌ 既然用了 Optional 还在用 isPresent() + get() +Optional userOpt = findUser(id); +if (userOpt.isPresent()) { + return userOpt.get().getName(); +} else { + return "Unknown"; +} + +// ✅ 使用函数式 API +return findUser(id) + .map(User::getName) + .orElse("Unknown"); +``` + +--- + +## Spring Boot 最佳实践 + +### 依赖注入 (DI) + +```java +// ❌ 字段注入 (@Autowired) +// 缺点:难以测试(需要反射注入),掩盖了依赖过多的问题,且不可变性差 +@Service +public class UserService { + @Autowired + private UserRepository userRepo; +} + +// ✅ 构造器注入 (Constructor Injection) +// 优点:依赖明确,易于单元测试 (Mock),字段可为 final +@Service +public class UserService { + private final UserRepository userRepo; + + public UserService(UserRepository userRepo) { + this.userRepo = userRepo; + } +} +// 💡 提示:结合 Lombok @RequiredArgsConstructor 可简化代码,但要小心循环依赖 +``` + +### 配置管理 + +```java +// ❌ 硬编码配置值 +@Service +public class PaymentService { + private String apiKey = "sk_live_12345"; +} + +// ❌ 直接使用 @Value 散落在代码中 +@Value("${app.payment.api-key}") +private String apiKey; + +// ✅ 使用 @ConfigurationProperties 类型安全配置 +@ConfigurationProperties(prefix = "app.payment") +public record PaymentProperties(String apiKey, int timeout, String url) {} +``` + +--- + +## JPA 与 数据库性能 + +### N+1 查询问题 + +```java +// ❌ FetchType.EAGER 或 循环中触发懒加载 +// Entity 定义 +@Entity +public class User { + @OneToMany(fetch = FetchType.EAGER) // 危险! + private List orders; +} + +// 业务代码 +List users = userRepo.findAll(); // 1 条 SQL +for (User user : users) { + // 如果是 Lazy,这里会触发 N 条 SQL + System.out.println(user.getOrders().size()); +} + +// ✅ 使用 @EntityGraph 或 JOIN FETCH +@Query("SELECT u FROM User u JOIN FETCH u.orders") +List findAllWithOrders(); +``` + +### 事务管理 + +```java +// ❌ 在 Controller 层开启事务(数据库连接占用时间过长) +// ❌ 在 private 方法上加 @Transactional(AOP 不生效) +@Transactional +private void saveInternal() { ... } + +// ✅ 在 Service 层公共方法加 @Transactional +// ✅ 读操作显式标记 readOnly = true (性能优化) +@Service +public class UserService { + @Transactional(readOnly = true) + public User getUser(Long id) { ... } + + @Transactional + public void createUser(UserDto dto) { ... } +} +``` + +### Entity 设计 + +```java +// ❌ 在 Entity 中使用 Lombok @Data +// @Data 生成的 equals/hashCode 包含所有字段,可能触发懒加载导致性能问题或异常 +@Entity +@Data +public class User { ... } + +// ✅ 仅使用 @Getter, @Setter +// ✅ 自定义 equals/hashCode (通常基于 ID) +@Entity +@Getter +@Setter +public class User { + @Id + private Long id; + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (!(o instanceof User)) return false; + return id != null && id.equals(((User) o).id); + } + + @Override + public int hashCode() { + return getClass().hashCode(); + } +} +``` + +--- + +## 并发与虚拟线程 + +### 虚拟线程 (Java 21+) + +```java +// ❌ 传统线程池处理大量 I/O 阻塞任务(资源耗尽) +ExecutorService executor = Executors.newFixedThreadPool(100); + +// ✅ 使用虚拟线程处理 I/O 密集型任务(高吞吐量) +// Spring Boot 3.2+ 开启:spring.threads.virtual.enabled=true +ExecutorService executor = Executors.newVirtualThreadPerTaskExecutor(); + +// 在虚拟线程中,阻塞操作(如 DB 查询、HTTP 请求)几乎不消耗 OS 线程资源 +``` + +### 线程安全 + +```java +// ❌ SimpleDateFormat 是线程不安全的 +private static final SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); + +// ✅ 使用 DateTimeFormatter (Java 8+) +private static final DateTimeFormatter dtf = DateTimeFormatter.ofPattern("yyyy-MM-dd"); + +// ❌ HashMap 在多线程环境可能死循环或数据丢失 +// ✅ 使用 ConcurrentHashMap +Map cache = new ConcurrentHashMap<>(); +``` + +--- + +## Lombok 使用规范 + +```java +// ❌ 滥用 @Builder 导致无法强制校验必填字段 +@Builder +public class Order { + private String id; // 必填 + private String note; // 选填 +} +// 调用者可能漏掉 id: Order.builder().note("hi").build(); + +// ✅ 关键业务对象建议手动编写 Builder 或构造函数以确保不变量 +// 或者在 build() 方法中添加校验逻辑 (Lombok @Builder.Default 等) +``` + +--- + +## 异常处理 + +### 全局异常处理 + +```java +// ❌ 到处 try-catch 吞掉异常或只打印日志 +try { + userService.create(user); +} catch (Exception e) { + e.printStackTrace(); // 不应该在生产环境使用 + // return null; // 吞掉异常,上层不知道发生了什么 +} + +// ✅ 自定义异常 + @ControllerAdvice (Spring Boot 3 ProblemDetail) +public class UserNotFoundException extends RuntimeException { ... } + +@RestControllerAdvice +public class GlobalExceptionHandler { + @ExceptionHandler(UserNotFoundException.class) + public ProblemDetail handleNotFound(UserNotFoundException e) { + return ProblemDetail.forStatusAndDetail(HttpStatus.NOT_FOUND, e.getMessage()); + } +} +``` + +--- + +## 测试规范 + +### 单元测试 vs 集成测试 + +```java +// ❌ 单元测试依赖真实数据库或外部服务 +@SpringBootTest // 启动整个 Context,慢 +public class UserServiceTest { ... } + +// ✅ 单元测试使用 Mockito +@ExtendWith(MockitoExtension.class) +class UserServiceTest { + @Mock UserRepository repo; + @InjectMocks UserService service; + + @Test + void shouldCreateUser() { ... } +} + +// ✅ 集成测试使用 Testcontainers +@Testcontainers +@SpringBootTest +class UserRepositoryTest { + @Container + static PostgreSQLContainer postgres = new PostgreSQLContainer<>("postgres:15"); + // ... +} +``` + +--- + +## Review Checklist + +### 基础与规范 +- [ ] 遵循 Java 17/21 新特性(Switch 表达式, Records, 文本块) +- [ ] 避免使用已过时的类(Date, Calendar, SimpleDateFormat) +- [ ] 集合操作是否优先使用了 Stream API 或 Collections 方法? +- [ ] Optional 仅用于返回值,未用于字段或参数 + +### Spring Boot +- [ ] 使用构造器注入而非 @Autowired 字段注入 +- [ ] 配置属性使用了 @ConfigurationProperties +- [ ] Controller 职责单一,业务逻辑下沉到 Service +- [ ] 全局异常处理使用了 @ControllerAdvice / ProblemDetail + +### 数据库 & 事务 +- [ ] 读操作事务标记了 `@Transactional(readOnly = true)` +- [ ] 检查是否存在 N+1 查询(EAGER fetch 或循环调用) +- [ ] Entity 类未使用 @Data,正确实现了 equals/hashCode +- [ ] 数据库索引是否覆盖了查询条件 + +### 并发与性能 +- [ ] I/O 密集型任务是否考虑了虚拟线程? +- [ ] 线程安全类是否使用正确(ConcurrentHashMap vs HashMap) +- [ ] 锁的粒度是否合理?避免在锁内进行 I/O 操作 + +### 可维护性 +- [ ] 关键业务逻辑有充分的单元测试 +- [ ] 日志记录恰当(使用 Slf4j,避免 System.out) +- [ ] 魔法值提取为常量或枚举 diff --git a/.github/skills/code-review-skill-main/reference/performance-review-guide.md b/.github/skills/code-review-skill-main/reference/performance-review-guide.md new file mode 100644 index 0000000000..87a8ba7371 --- /dev/null +++ b/.github/skills/code-review-skill-main/reference/performance-review-guide.md @@ -0,0 +1,752 @@ +# Performance Review Guide + +性能审查指南,覆盖前端、后端、数据库、算法复杂度和 API 性能。 + +## 目录 + +- [前端性能 (Core Web Vitals)](#前端性能-core-web-vitals) +- [JavaScript 性能](#javascript-性能) +- [内存管理](#内存管理) +- [数据库性能](#数据库性能) +- [API 性能](#api-性能) +- [算法复杂度](#算法复杂度) +- [性能审查清单](#性能审查清单) + +--- + +## 前端性能 (Core Web Vitals) + +### 2024 核心指标 + +| 指标 | 全称 | 目标值 | 含义 | +|------|------|--------|------| +| **LCP** | Largest Contentful Paint | ≤ 2.5s | 最大内容绘制时间 | +| **INP** | Interaction to Next Paint | ≤ 200ms | 交互响应时间(2024 年替代 FID)| +| **CLS** | Cumulative Layout Shift | ≤ 0.1 | 累积布局偏移 | +| **FCP** | First Contentful Paint | ≤ 1.8s | 首次内容绘制 | +| **TBT** | Total Blocking Time | ≤ 200ms | 主线程阻塞时间 | + +### LCP 优化检查 + +```javascript +// ❌ LCP 图片懒加载 - 延迟关键内容 + + +// ✅ LCP 图片立即加载 + + +// ❌ 未优化的图片格式 + // PNG 文件过大 + +// ✅ 现代图片格式 + 响应式 + + + + Hero + +``` + +**审查要点:** +- [ ] LCP 元素是否设置 `fetchpriority="high"`? +- [ ] 是否使用 WebP/AVIF 格式? +- [ ] 是否有服务端渲染或静态生成? +- [ ] CDN 是否配置正确? + +### FCP 优化检查 + +```html + + + + + + + + +@font-face { + font-family: 'CustomFont'; + src: url('font.woff2'); +} + + +@font-face { + font-family: 'CustomFont'; + src: url('font.woff2'); + font-display: swap; /* 先用系统字体,加载后切换 */ +} +``` + +### INP 优化检查 + +```javascript +// ❌ 长任务阻塞主线程 +button.addEventListener('click', () => { + // 耗时 500ms 的同步操作 + processLargeData(data); + updateUI(); +}); + +// ✅ 拆分长任务 +button.addEventListener('click', async () => { + // 让出主线程 + await scheduler.yield?.() ?? new Promise(r => setTimeout(r, 0)); + + // 分批处理 + for (const chunk of chunks) { + processChunk(chunk); + await scheduler.yield?.(); + } + updateUI(); +}); + +// ✅ 使用 Web Worker 处理复杂计算 +const worker = new Worker('heavy-computation.js'); +worker.postMessage(data); +worker.onmessage = (e) => updateUI(e.data); +``` + +### CLS 优化检查 + +```css +/* ❌ 未指定尺寸的媒体 */ +img { width: 100%; } + +/* ✅ 预留空间 */ +img { + width: 100%; + aspect-ratio: 16 / 9; +} + +/* ❌ 动态插入内容导致布局偏移 */ +.ad-container { } + +/* ✅ 预留固定高度 */ +.ad-container { + min-height: 250px; +} +``` + +**CLS 审查清单:** +- [ ] 图片/视频是否有 width/height 或 aspect-ratio? +- [ ] 字体加载是否使用 `font-display: swap`? +- [ ] 动态内容是否预留空间? +- [ ] 是否避免在现有内容上方插入内容? + +--- + +## JavaScript 性能 + +### 代码分割与懒加载 + +```javascript +// ❌ 一次性加载所有代码 +import { HeavyChart } from './charts'; +import { PDFExporter } from './pdf'; +import { AdminPanel } from './admin'; + +// ✅ 按需加载 +const HeavyChart = lazy(() => import('./charts')); +const PDFExporter = lazy(() => import('./pdf')); + +// ✅ 路由级代码分割 +const routes = [ + { + path: '/dashboard', + component: lazy(() => import('./pages/Dashboard')), + }, + { + path: '/admin', + component: lazy(() => import('./pages/Admin')), + }, +]; +``` + +### Bundle 体积优化 + +```javascript +// ❌ 导入整个库 +import _ from 'lodash'; +import moment from 'moment'; + +// ✅ 按需导入 +import debounce from 'lodash/debounce'; +import { format } from 'date-fns'; + +// ❌ 未使用 Tree Shaking +export default { + fn1() {}, + fn2() {}, // 未使用但被打包 +}; + +// ✅ 命名导出支持 Tree Shaking +export function fn1() {} +export function fn2() {} +``` + +**Bundle 审查清单:** +- [ ] 是否使用动态 import() 进行代码分割? +- [ ] 大型库是否按需导入? +- [ ] 是否分析过 bundle 大小?(webpack-bundle-analyzer) +- [ ] 是否有未使用的依赖? + +### 列表渲染优化 + +```javascript +// ❌ 渲染大列表 +function List({ items }) { + return ( +
    + {items.map(item =>
  • {item.name}
  • )} +
+ ); // 10000 条数据 = 10000 个 DOM 节点 +} + +// ✅ 虚拟列表 - 只渲染可见项 +import { FixedSizeList } from 'react-window'; + +function VirtualList({ items }) { + return ( + + {({ index, style }) => ( +
{items[index].name}
+ )} +
+ ); +} +``` + +**大数据审查要点:** +- [ ] 列表超过 100 项是否使用虚拟滚动? +- [ ] 表格是否支持分页或虚拟化? +- [ ] 是否有不必要的全量渲染? + +--- + +## 内存管理 + +### 常见内存泄漏 + +#### 1. 未清理的事件监听 + +```javascript +// ❌ 组件卸载后事件仍在监听 +useEffect(() => { + window.addEventListener('resize', handleResize); +}, []); + +// ✅ 清理事件监听 +useEffect(() => { + window.addEventListener('resize', handleResize); + return () => window.removeEventListener('resize', handleResize); +}, []); +``` + +#### 2. 未清理的定时器 + +```javascript +// ❌ 定时器未清理 +useEffect(() => { + setInterval(fetchData, 5000); +}, []); + +// ✅ 清理定时器 +useEffect(() => { + const timer = setInterval(fetchData, 5000); + return () => clearInterval(timer); +}, []); +``` + +#### 3. 闭包引用 + +```javascript +// ❌ 闭包持有大对象引用 +function createHandler() { + const largeData = new Array(1000000).fill('x'); + + return function handler() { + // largeData 被闭包引用,无法被回收 + console.log(largeData.length); + }; +} + +// ✅ 只保留必要数据 +function createHandler() { + const largeData = new Array(1000000).fill('x'); + const length = largeData.length; // 只保留需要的值 + + return function handler() { + console.log(length); + }; +} +``` + +#### 4. 未清理的订阅 + +```javascript +// ❌ WebSocket/EventSource 未关闭 +useEffect(() => { + const ws = new WebSocket('wss://...'); + ws.onmessage = handleMessage; +}, []); + +// ✅ 清理连接 +useEffect(() => { + const ws = new WebSocket('wss://...'); + ws.onmessage = handleMessage; + return () => ws.close(); +}, []); +``` + +### 内存审查清单 + +```markdown +- [ ] useEffect 是否都有清理函数? +- [ ] 事件监听是否在组件卸载时移除? +- [ ] 定时器是否被清理? +- [ ] WebSocket/SSE 连接是否关闭? +- [ ] 大对象是否及时释放? +- [ ] 是否有全局变量累积数据? +``` + +### 检测工具 + +| 工具 | 用途 | +|------|------| +| Chrome DevTools Memory | 堆快照分析 | +| MemLab (Meta) | 自动化内存泄漏检测 | +| Performance Monitor | 实时内存监控 | + +--- + +## 数据库性能 + +### N+1 查询问题 + +```python +# ❌ N+1 问题 - 1 + N 次查询 +users = User.objects.all() # 1 次查询 +for user in users: + print(user.profile.bio) # N 次查询(每个用户一次) + +# ✅ Eager Loading - 2 次查询 +users = User.objects.select_related('profile').all() +for user in users: + print(user.profile.bio) # 无额外查询 + +# ✅ 多对多关系用 prefetch_related +posts = Post.objects.prefetch_related('tags').all() +``` + +```javascript +// TypeORM 示例 +// ❌ N+1 问题 +const users = await userRepository.find(); +for (const user of users) { + const posts = await user.posts; // 每次循环都查询 +} + +// ✅ Eager Loading +const users = await userRepository.find({ + relations: ['posts'], +}); +``` + +### 索引优化 + +```sql +-- ❌ 全表扫描 +SELECT * FROM orders WHERE status = 'pending'; + +-- ✅ 添加索引 +CREATE INDEX idx_orders_status ON orders(status); + +-- ❌ 索引失效:函数操作 +SELECT * FROM users WHERE YEAR(created_at) = 2024; + +-- ✅ 范围查询可用索引 +SELECT * FROM users +WHERE created_at >= '2024-01-01' AND created_at < '2025-01-01'; + +-- ❌ 索引失效:LIKE 前缀通配符 +SELECT * FROM products WHERE name LIKE '%phone%'; + +-- ✅ 前缀匹配可用索引 +SELECT * FROM products WHERE name LIKE 'phone%'; +``` + +### 查询优化 + +```sql +-- ❌ SELECT * 获取不需要的列 +SELECT * FROM users WHERE id = 1; + +-- ✅ 只查询需要的列 +SELECT id, name, email FROM users WHERE id = 1; + +-- ❌ 大表无 LIMIT +SELECT * FROM logs WHERE type = 'error'; + +-- ✅ 分页查询 +SELECT * FROM logs WHERE type = 'error' LIMIT 100 OFFSET 0; + +-- ❌ 在循环中执行查询 +for id in user_ids: + cursor.execute("SELECT * FROM users WHERE id = %s", (id,)) + +-- ✅ 批量查询 +cursor.execute("SELECT * FROM users WHERE id IN %s", (tuple(user_ids),)) +``` + +### 数据库审查清单 + +```markdown +🔴 必须检查: +- [ ] 是否存在 N+1 查询? +- [ ] WHERE 子句列是否有索引? +- [ ] 是否避免了 SELECT *? +- [ ] 大表查询是否有 LIMIT? + +🟡 建议检查: +- [ ] 是否使用了 EXPLAIN 分析查询计划? +- [ ] 复合索引列顺序是否正确? +- [ ] 是否有未使用的索引? +- [ ] 是否有慢查询日志监控? +``` + +--- + +## API 性能 + +### 分页实现 + +```javascript +// ❌ 返回全部数据 +app.get('/users', async (req, res) => { + const users = await User.findAll(); // 可能返回 100000 条 + res.json(users); +}); + +// ✅ 分页 + 限制最大数量 +app.get('/users', async (req, res) => { + const page = parseInt(req.query.page) || 1; + const limit = Math.min(parseInt(req.query.limit) || 20, 100); // 最大 100 + const offset = (page - 1) * limit; + + const { rows, count } = await User.findAndCountAll({ + limit, + offset, + order: [['id', 'ASC']], + }); + + res.json({ + data: rows, + pagination: { + page, + limit, + total: count, + totalPages: Math.ceil(count / limit), + }, + }); +}); +``` + +### 缓存策略 + +```javascript +// ✅ Redis 缓存示例 +async function getUser(id) { + const cacheKey = `user:${id}`; + + // 1. 检查缓存 + const cached = await redis.get(cacheKey); + if (cached) { + return JSON.parse(cached); + } + + // 2. 查询数据库 + const user = await db.users.findById(id); + + // 3. 写入缓存(设置过期时间) + await redis.setex(cacheKey, 3600, JSON.stringify(user)); + + return user; +} + +// ✅ HTTP 缓存头 +app.get('/static-data', (req, res) => { + res.set({ + 'Cache-Control': 'public, max-age=86400', // 24 小时 + 'ETag': 'abc123', + }); + res.json(data); +}); +``` + +### 响应压缩 + +```javascript +// ✅ 启用 Gzip/Brotli 压缩 +const compression = require('compression'); +app.use(compression()); + +// ✅ 只返回必要字段 +// 请求: GET /users?fields=id,name,email +app.get('/users', async (req, res) => { + const fields = req.query.fields?.split(',') || ['id', 'name']; + const users = await User.findAll({ + attributes: fields, + }); + res.json(users); +}); +``` + +### 限流保护 + +```javascript +// ✅ 速率限制 +const rateLimit = require('express-rate-limit'); + +const limiter = rateLimit({ + windowMs: 60 * 1000, // 1 分钟 + max: 100, // 最多 100 次请求 + message: { error: 'Too many requests, please try again later.' }, +}); + +app.use('/api/', limiter); +``` + +### API 审查清单 + +```markdown +- [ ] 列表接口是否有分页? +- [ ] 是否限制了每页最大数量? +- [ ] 热点数据是否有缓存? +- [ ] 是否启用了响应压缩? +- [ ] 是否有速率限制? +- [ ] 是否只返回必要字段? +``` + +--- + +## 算法复杂度 + +### 常见复杂度对比 + +| 复杂度 | 名称 | 10 条 | 1000 条 | 100 万条 | 示例 | +|--------|------|-------|---------|----------|------| +| O(1) | 常数 | 1 | 1 | 1 | 哈希查找 | +| O(log n) | 对数 | 3 | 10 | 20 | 二分查找 | +| O(n) | 线性 | 10 | 1000 | 100 万 | 遍历数组 | +| O(n log n) | 线性对数 | 33 | 10000 | 2000 万 | 快速排序 | +| O(n²) | 平方 | 100 | 100 万 | 1 万亿 | 嵌套循环 | +| O(2ⁿ) | 指数 | 1024 | ∞ | ∞ | 递归斐波那契 | + +### 代码审查中的识别 + +```javascript +// ❌ O(n²) - 嵌套循环 +function findDuplicates(arr) { + const duplicates = []; + for (let i = 0; i < arr.length; i++) { + for (let j = i + 1; j < arr.length; j++) { + if (arr[i] === arr[j]) { + duplicates.push(arr[i]); + } + } + } + return duplicates; +} + +// ✅ O(n) - 使用 Set +function findDuplicates(arr) { + const seen = new Set(); + const duplicates = new Set(); + for (const item of arr) { + if (seen.has(item)) { + duplicates.add(item); + } + seen.add(item); + } + return [...duplicates]; +} +``` + +```javascript +// ❌ O(n²) - 每次循环都调用 includes +function removeDuplicates(arr) { + const result = []; + for (const item of arr) { + if (!result.includes(item)) { // includes 是 O(n) + result.push(item); + } + } + return result; +} + +// ✅ O(n) - 使用 Set +function removeDuplicates(arr) { + return [...new Set(arr)]; +} +``` + +```javascript +// ❌ O(n) 查找 - 每次都遍历 +const users = [{ id: 1, name: 'A' }, { id: 2, name: 'B' }, ...]; + +function getUser(id) { + return users.find(u => u.id === id); // O(n) +} + +// ✅ O(1) 查找 - 使用 Map +const userMap = new Map(users.map(u => [u.id, u])); + +function getUser(id) { + return userMap.get(id); // O(1) +} +``` + +### 空间复杂度考虑 + +```javascript +// ⚠️ O(n) 空间 - 创建新数组 +const doubled = arr.map(x => x * 2); + +// ✅ O(1) 空间 - 原地修改(如果允许) +for (let i = 0; i < arr.length; i++) { + arr[i] *= 2; +} + +// ⚠️ 递归深度过大可能栈溢出 +function factorial(n) { + if (n <= 1) return 1; + return n * factorial(n - 1); // O(n) 栈空间 +} + +// ✅ 迭代版本 O(1) 空间 +function factorial(n) { + let result = 1; + for (let i = 2; i <= n; i++) { + result *= i; + } + return result; +} +``` + +### 复杂度审查问题 + +```markdown +💡 "这个嵌套循环的复杂度是 O(n²),数据量大时会有性能问题" +🔴 "这里用 Array.includes() 在循环中,整体是 O(n²),建议用 Set" +🟡 "这个递归深度可能导致栈溢出,建议改为迭代或尾递归" +``` + +--- + +## 性能审查清单 + +### 🔴 必须检查(阻塞级) + +**前端:** +- [ ] LCP 图片是否懒加载?(不应该) +- [ ] 是否有 `transition: all`? +- [ ] 是否动画 width/height/top/left? +- [ ] 列表 >100 项是否虚拟化? + +**后端:** +- [ ] 是否存在 N+1 查询? +- [ ] 列表接口是否有分页? +- [ ] 是否有 SELECT * 查大表? + +**通用:** +- [ ] 是否有 O(n²) 或更差的嵌套循环? +- [ ] useEffect/事件监听是否有清理? + +### 🟡 建议检查(重要级) + +**前端:** +- [ ] 是否使用代码分割? +- [ ] 大型库是否按需导入? +- [ ] 图片是否使用 WebP/AVIF? +- [ ] 是否有未使用的依赖? + +**后端:** +- [ ] 热点数据是否有缓存? +- [ ] WHERE 列是否有索引? +- [ ] 是否有慢查询监控? + +**API:** +- [ ] 是否启用响应压缩? +- [ ] 是否有速率限制? +- [ ] 是否只返回必要字段? + +### 🟢 优化建议(建议级) + +- [ ] 是否分析过 bundle 大小? +- [ ] 是否使用 CDN? +- [ ] 是否有性能监控? +- [ ] 是否做过性能基准测试? + +--- + +## 性能度量阈值 + +### 前端指标 + +| 指标 | 好 | 需改进 | 差 | +|------|-----|--------|-----| +| LCP | ≤ 2.5s | 2.5-4s | > 4s | +| INP | ≤ 200ms | 200-500ms | > 500ms | +| CLS | ≤ 0.1 | 0.1-0.25 | > 0.25 | +| FCP | ≤ 1.8s | 1.8-3s | > 3s | +| Bundle Size (JS) | < 200KB | 200-500KB | > 500KB | + +### 后端指标 + +| 指标 | 好 | 需改进 | 差 | +|------|-----|--------|-----| +| API 响应时间 | < 100ms | 100-500ms | > 500ms | +| 数据库查询 | < 50ms | 50-200ms | > 200ms | +| 页面加载 | < 3s | 3-5s | > 5s | + +--- + +## 工具推荐 + +### 前端性能 + +| 工具 | 用途 | +|------|------| +| [Lighthouse](https://developer.chrome.com/docs/lighthouse/) | Core Web Vitals 测试 | +| [WebPageTest](https://www.webpagetest.org/) | 详细性能分析 | +| [webpack-bundle-analyzer](https://github.com/webpack-contrib/webpack-bundle-analyzer) | Bundle 分析 | +| [Chrome DevTools Performance](https://developer.chrome.com/docs/devtools/performance/) | 运行时性能分析 | + +### 内存检测 + +| 工具 | 用途 | +|------|------| +| [MemLab](https://github.com/facebookincubator/memlab) | 自动化内存泄漏检测 | +| Chrome Memory Tab | 堆快照分析 | + +### 后端性能 + +| 工具 | 用途 | +|------|------| +| EXPLAIN | 数据库查询计划分析 | +| [pganalyze](https://pganalyze.com/) | PostgreSQL 性能监控 | +| [New Relic](https://newrelic.com/) / [Datadog](https://www.datadoghq.com/) | APM 监控 | + +--- + +## 参考资源 + +- [Core Web Vitals - web.dev](https://web.dev/articles/vitals) +- [Optimizing Core Web Vitals - Vercel](https://vercel.com/guides/optimizing-core-web-vitals-in-2024) +- [MemLab - Meta Engineering](https://engineering.fb.com/2022/09/12/open-source/memlab/) +- [Big O Cheat Sheet](https://www.bigocheatsheet.com/) +- [N+1 Query Problem - Stack Overflow](https://stackoverflow.com/questions/97197/what-is-the-n1-selects-problem-in-orm-object-relational-mapping) +- [API Performance Optimization](https://algorithmsin60days.com/blog/optimizing-api-performance/) diff --git a/.github/skills/code-review-skill-main/reference/python.md b/.github/skills/code-review-skill-main/reference/python.md new file mode 100644 index 0000000000..764db0e1df --- /dev/null +++ b/.github/skills/code-review-skill-main/reference/python.md @@ -0,0 +1,1069 @@ +# Python Code Review Guide + +> Python 代码审查指南,覆盖类型注解、async/await、测试、异常处理、性能优化等核心主题。 + +## 目录 + +- [类型注解](#类型注解) +- [异步编程](#异步编程) +- [异常处理](#异常处理) +- [常见陷阱](#常见陷阱) +- [测试最佳实践](#测试最佳实践) +- [性能优化](#性能优化) +- [代码风格](#代码风格) +- [Review Checklist](#review-checklist) + +--- + +## 类型注解 + +### 基础类型注解 + +```python +# ❌ 没有类型注解,IDE 无法提供帮助 +def process_data(data, count): + return data[:count] + +# ✅ 使用类型注解 +def process_data(data: str, count: int) -> str: + return data[:count] + +# ✅ 复杂类型使用 typing 模块 +from typing import Optional, Union + +def find_user(user_id: int) -> Optional[User]: + """返回用户或 None""" + return db.get(user_id) + +def handle_input(value: Union[str, int]) -> str: + """接受字符串或整数""" + return str(value) +``` + +### 容器类型注解 + +```python +from typing import List, Dict, Set, Tuple, Sequence + +# ❌ 不精确的类型 +def get_names(users: list) -> list: + return [u.name for u in users] + +# ✅ 精确的容器类型(Python 3.9+ 可直接用 list[User]) +def get_names(users: List[User]) -> List[str]: + return [u.name for u in users] + +# ✅ 只读序列用 Sequence(更灵活) +def process_items(items: Sequence[str]) -> int: + return len(items) + +# ✅ 字典类型 +def count_words(text: str) -> Dict[str, int]: + words: Dict[str, int] = {} + for word in text.split(): + words[word] = words.get(word, 0) + 1 + return words + +# ✅ 元组(固定长度和类型) +def get_point() -> Tuple[float, float]: + return (1.0, 2.0) + +# ✅ 可变长度元组 +def get_scores() -> Tuple[int, ...]: + return (90, 85, 92, 88) +``` + +### 泛型与 TypeVar + +```python +from typing import TypeVar, Generic, List, Callable + +T = TypeVar('T') +K = TypeVar('K') +V = TypeVar('V') + +# ✅ 泛型函数 +def first(items: List[T]) -> T | None: + return items[0] if items else None + +# ✅ 有约束的 TypeVar +from typing import Hashable +H = TypeVar('H', bound=Hashable) + +def dedupe(items: List[H]) -> List[H]: + return list(set(items)) + +# ✅ 泛型类 +class Cache(Generic[K, V]): + def __init__(self) -> None: + self._data: Dict[K, V] = {} + + def get(self, key: K) -> V | None: + return self._data.get(key) + + def set(self, key: K, value: V) -> None: + self._data[key] = value +``` + +### Callable 与回调函数 + +```python +from typing import Callable, Awaitable + +# ✅ 函数类型注解 +Handler = Callable[[str, int], bool] + +def register_handler(name: str, handler: Handler) -> None: + handlers[name] = handler + +# ✅ 异步回调 +AsyncHandler = Callable[[str], Awaitable[dict]] + +async def fetch_with_handler( + url: str, + handler: AsyncHandler +) -> dict: + return await handler(url) + +# ✅ 返回函数的函数 +def create_multiplier(factor: int) -> Callable[[int], int]: + def multiplier(x: int) -> int: + return x * factor + return multiplier +``` + +### TypedDict 与结构化数据 + +```python +from typing import TypedDict, Required, NotRequired + +# ✅ 定义字典结构 +class UserDict(TypedDict): + id: int + name: str + email: str + age: NotRequired[int] # Python 3.11+ + +def create_user(data: UserDict) -> User: + return User(**data) + +# ✅ 部分必需字段 +class ConfigDict(TypedDict, total=False): + debug: bool + timeout: int + host: Required[str] # 这个必须有 +``` + +### Protocol 与结构化子类型 + +```python +from typing import Protocol, runtime_checkable + +# ✅ 定义协议(鸭子类型的类型检查) +class Readable(Protocol): + def read(self, size: int = -1) -> bytes: ... + +class Closeable(Protocol): + def close(self) -> None: ... + +# 组合协议 +class ReadableCloseable(Readable, Closeable, Protocol): + pass + +def process_stream(stream: Readable) -> bytes: + return stream.read() + +# ✅ 运行时可检查的协议 +@runtime_checkable +class Drawable(Protocol): + def draw(self) -> None: ... + +def render(obj: object) -> None: + if isinstance(obj, Drawable): # 运行时检查 + obj.draw() +``` + +--- + +## 异步编程 + +### async/await 基础 + +```python +import asyncio + +# ❌ 同步阻塞调用 +def fetch_all_sync(urls: list[str]) -> list[str]: + results = [] + for url in urls: + results.append(requests.get(url).text) # 串行执行 + return results + +# ✅ 异步并发调用 +async def fetch_url(url: str) -> str: + async with aiohttp.ClientSession() as session: + async with session.get(url) as response: + return await response.text() + +async def fetch_all(urls: list[str]) -> list[str]: + tasks = [fetch_url(url) for url in urls] + return await asyncio.gather(*tasks) # 并发执行 +``` + +### 异步上下文管理器 + +```python +from contextlib import asynccontextmanager +from typing import AsyncIterator + +# ✅ 异步上下文管理器类 +class AsyncDatabase: + async def __aenter__(self) -> 'AsyncDatabase': + await self.connect() + return self + + async def __aexit__(self, exc_type, exc_val, exc_tb) -> None: + await self.disconnect() + +# ✅ 使用装饰器 +@asynccontextmanager +async def get_connection() -> AsyncIterator[Connection]: + conn = await create_connection() + try: + yield conn + finally: + await conn.close() + +async def query_data(): + async with get_connection() as conn: + return await conn.fetch("SELECT * FROM users") +``` + +### 异步迭代器 + +```python +from typing import AsyncIterator + +# ✅ 异步生成器 +async def fetch_pages(url: str) -> AsyncIterator[dict]: + page = 1 + while True: + data = await fetch_page(url, page) + if not data['items']: + break + yield data + page += 1 + +# ✅ 使用异步迭代 +async def process_all_pages(): + async for page in fetch_pages("https://api.example.com"): + await process_page(page) +``` + +### 任务管理与取消 + +```python +import asyncio + +# ❌ 忘记处理取消 +async def bad_worker(): + while True: + await do_work() # 无法正常取消 + +# ✅ 正确处理取消 +async def good_worker(): + try: + while True: + await do_work() + except asyncio.CancelledError: + await cleanup() # 清理资源 + raise # 重新抛出,让调用者知道已取消 + +# ✅ 超时控制 +async def fetch_with_timeout(url: str) -> str: + try: + async with asyncio.timeout(10): # Python 3.11+ + return await fetch_url(url) + except asyncio.TimeoutError: + return "" + +# ✅ 任务组(Python 3.11+) +async def fetch_multiple(): + async with asyncio.TaskGroup() as tg: + task1 = tg.create_task(fetch_url("url1")) + task2 = tg.create_task(fetch_url("url2")) + # 所有任务完成后自动等待,异常会传播 + return task1.result(), task2.result() +``` + +### 同步与异步混合 + +```python +import asyncio +from concurrent.futures import ThreadPoolExecutor + +# ✅ 在异步代码中运行同步函数 +async def run_sync_in_async(): + loop = asyncio.get_event_loop() + # 使用线程池执行阻塞操作 + result = await loop.run_in_executor( + None, # 默认线程池 + blocking_io_function, + arg1, arg2 + ) + return result + +# ✅ 在同步代码中运行异步函数 +def run_async_in_sync(): + return asyncio.run(async_function()) + +# ❌ 不要在异步代码中使用 time.sleep +async def bad_delay(): + time.sleep(1) # 会阻塞整个事件循环! + +# ✅ 使用 asyncio.sleep +async def good_delay(): + await asyncio.sleep(1) +``` + +### 信号量与限流 + +```python +import asyncio + +# ✅ 使用信号量限制并发 +async def fetch_with_limit(urls: list[str], max_concurrent: int = 10): + semaphore = asyncio.Semaphore(max_concurrent) + + async def fetch_one(url: str) -> str: + async with semaphore: + return await fetch_url(url) + + return await asyncio.gather(*[fetch_one(url) for url in urls]) + +# ✅ 使用 asyncio.Queue 实现生产者-消费者 +async def producer_consumer(): + queue: asyncio.Queue[str] = asyncio.Queue(maxsize=100) + + async def producer(): + for item in items: + await queue.put(item) + await queue.put(None) # 结束信号 + + async def consumer(): + while True: + item = await queue.get() + if item is None: + break + await process(item) + queue.task_done() + + await asyncio.gather(producer(), consumer()) +``` + +--- + +## 异常处理 + +### 异常捕获最佳实践 + +```python +# ❌ Catching too broad +try: + result = risky_operation() +except: # Catches everything, even KeyboardInterrupt! + pass + +# ❌ 捕获 Exception 但不处理 +try: + result = risky_operation() +except Exception: + pass # 吞掉所有异常,难以调试 + +# ✅ Catch specific exceptions +try: + result = risky_operation() +except ValueError as e: + logger.error(f"Invalid value: {e}") + raise +except IOError as e: + logger.error(f"IO error: {e}") + return default_value + +# ✅ 多个异常类型 +try: + result = parse_and_process(data) +except (ValueError, TypeError, KeyError) as e: + logger.error(f"Data error: {e}") + raise DataProcessingError(str(e)) from e +``` + +### 异常链 + +```python +# ❌ 丢失原始异常信息 +try: + result = external_api.call() +except APIError as e: + raise RuntimeError("API failed") # 丢失了原因 + +# ✅ 使用 from 保留异常链 +try: + result = external_api.call() +except APIError as e: + raise RuntimeError("API failed") from e + +# ✅ 显式断开异常链(少见情况) +try: + result = external_api.call() +except APIError: + raise RuntimeError("API failed") from None +``` + +### 自定义异常 + +```python +# ✅ 定义业务异常层次结构 +class AppError(Exception): + """应用基础异常""" + pass + +class ValidationError(AppError): + """数据验证错误""" + def __init__(self, field: str, message: str): + self.field = field + self.message = message + super().__init__(f"{field}: {message}") + +class NotFoundError(AppError): + """资源未找到""" + def __init__(self, resource: str, id: str | int): + self.resource = resource + self.id = id + super().__init__(f"{resource} with id {id} not found") + +# 使用 +def get_user(user_id: int) -> User: + user = db.get(user_id) + if not user: + raise NotFoundError("User", user_id) + return user +``` + +### 上下文管理器中的异常 + +```python +from contextlib import contextmanager + +# ✅ 正确处理上下文管理器中的异常 +@contextmanager +def transaction(): + conn = get_connection() + try: + yield conn + conn.commit() + except Exception: + conn.rollback() + raise + finally: + conn.close() + +# ✅ 使用 ExceptionGroup(Python 3.11+) +def process_batch(items: list) -> None: + errors = [] + for item in items: + try: + process(item) + except Exception as e: + errors.append(e) + + if errors: + raise ExceptionGroup("Batch processing failed", errors) +``` + +--- + +## 常见陷阱 + +### 可变默认参数 + +```python +# ❌ Mutable default arguments +def add_item(item, items=[]): # Bug! Shared across calls + items.append(item) + return items + +# 问题演示 +add_item(1) # [1] +add_item(2) # [1, 2] 而不是 [2]! + +# ✅ Use None as default +def add_item(item, items=None): + if items is None: + items = [] + items.append(item) + return items + +# ✅ 或使用 dataclass 的 field +from dataclasses import dataclass, field + +@dataclass +class Container: + items: list = field(default_factory=list) +``` + +### 可变类属性 + +```python +# ❌ Using mutable class attributes +class User: + permissions = [] # Shared across all instances! + +# 问题演示 +u1 = User() +u2 = User() +u1.permissions.append("admin") +print(u2.permissions) # ["admin"] - 被意外共享! + +# ✅ Initialize in __init__ +class User: + def __init__(self): + self.permissions = [] + +# ✅ 使用 dataclass +@dataclass +class User: + permissions: list = field(default_factory=list) +``` + +### 循环中的闭包 + +```python +# ❌ 闭包捕获循环变量 +funcs = [] +for i in range(3): + funcs.append(lambda: i) + +print([f() for f in funcs]) # [2, 2, 2] 而不是 [0, 1, 2]! + +# ✅ 使用默认参数捕获值 +funcs = [] +for i in range(3): + funcs.append(lambda i=i: i) + +print([f() for f in funcs]) # [0, 1, 2] + +# ✅ 使用 functools.partial +from functools import partial + +funcs = [partial(lambda x: x, i) for i in range(3)] +``` + +### is vs == + +```python +# ❌ 用 is 比较值 +if x is 1000: # 可能不工作! + pass + +# Python 会缓存小整数 (-5 到 256) +a = 256 +b = 256 +a is b # True + +a = 257 +b = 257 +a is b # False! + +# ✅ 用 == 比较值 +if x == 1000: + pass + +# ✅ is 只用于 None 和单例 +if x is None: + pass + +if x is True: # 严格检查布尔值 + pass +``` + +### 字符串拼接性能 + +```python +# ❌ 循环中拼接字符串 +result = "" +for item in large_list: + result += str(item) # O(n²) 复杂度 + +# ✅ 使用 join +result = "".join(str(item) for item in large_list) # O(n) + +# ✅ 使用 StringIO 构建大字符串 +from io import StringIO + +buffer = StringIO() +for item in large_list: + buffer.write(str(item)) +result = buffer.getvalue() +``` + +--- + +## 测试最佳实践 + +### pytest 基础 + +```python +import pytest + +# ✅ 清晰的测试命名 +def test_user_creation_with_valid_email(): + user = User(email="test@example.com") + assert user.email == "test@example.com" + +def test_user_creation_with_invalid_email_raises_error(): + with pytest.raises(ValidationError): + User(email="invalid") + +# ✅ 使用参数化测试 +@pytest.mark.parametrize("input,expected", [ + ("hello", "HELLO"), + ("World", "WORLD"), + ("", ""), + ("123", "123"), +]) +def test_uppercase(input: str, expected: str): + assert input.upper() == expected + +# ✅ 测试异常 +def test_division_by_zero(): + with pytest.raises(ZeroDivisionError) as exc_info: + 1 / 0 + assert "division by zero" in str(exc_info.value) +``` + +### Fixtures + +```python +import pytest +from typing import Generator + +# ✅ 基础 fixture +@pytest.fixture +def user() -> User: + return User(name="Test User", email="test@example.com") + +def test_user_name(user: User): + assert user.name == "Test User" + +# ✅ 带清理的 fixture +@pytest.fixture +def database() -> Generator[Database, None, None]: + db = Database() + db.connect() + yield db + db.disconnect() # 测试后清理 + +# ✅ 异步 fixture +@pytest.fixture +async def async_client() -> AsyncGenerator[AsyncClient, None]: + async with AsyncClient() as client: + yield client + +# ✅ 共享 fixture(conftest.py) +# conftest.py +@pytest.fixture(scope="session") +def app(): + """整个测试会话共享的 app 实例""" + return create_app() + +@pytest.fixture(scope="module") +def db(app): + """每个测试模块共享的数据库连接""" + return app.db +``` + +### Mock 与 Patch + +```python +from unittest.mock import Mock, patch, AsyncMock + +# ✅ Mock 外部依赖 +def test_send_email(): + mock_client = Mock() + mock_client.send.return_value = True + + service = EmailService(client=mock_client) + result = service.send_welcome_email("user@example.com") + + assert result is True + mock_client.send.assert_called_once_with( + to="user@example.com", + subject="Welcome!", + body=ANY, + ) + +# ✅ Patch 模块级函数 +@patch("myapp.services.external_api.call") +def test_with_patched_api(mock_call): + mock_call.return_value = {"status": "ok"} + + result = process_data() + + assert result["status"] == "ok" + +# ✅ 异步 Mock +async def test_async_function(): + mock_fetch = AsyncMock(return_value={"data": "test"}) + + with patch("myapp.client.fetch", mock_fetch): + result = await get_data() + + assert result == {"data": "test"} +``` + +### 测试组织 + +```python +# ✅ 使用类组织相关测试 +class TestUserAuthentication: + """用户认证相关测试""" + + def test_login_with_valid_credentials(self, user): + assert authenticate(user.email, "password") is True + + def test_login_with_invalid_password(self, user): + assert authenticate(user.email, "wrong") is False + + def test_login_locks_after_failed_attempts(self, user): + for _ in range(5): + authenticate(user.email, "wrong") + assert user.is_locked is True + +# ✅ 使用 mark 标记测试 +@pytest.mark.slow +def test_large_data_processing(): + pass + +@pytest.mark.integration +def test_database_connection(): + pass + +# 运行特定标记的测试:pytest -m "not slow" +``` + +### 覆盖率与质量 + +```python +# pytest.ini 或 pyproject.toml +[tool.pytest.ini_options] +addopts = "--cov=myapp --cov-report=term-missing --cov-fail-under=80" +testpaths = ["tests"] + +# ✅ 测试边界情况 +def test_empty_input(): + assert process([]) == [] + +def test_none_input(): + with pytest.raises(TypeError): + process(None) + +def test_large_input(): + large_data = list(range(100000)) + result = process(large_data) + assert len(result) == 100000 +``` + +--- + +## 性能优化 + +### 数据结构选择 + +```python +# ❌ 列表查找 O(n) +if item in large_list: # 慢 + pass + +# ✅ 集合查找 O(1) +large_set = set(large_list) +if item in large_set: # 快 + pass + +# ✅ 使用 collections 模块 +from collections import Counter, defaultdict, deque + +# 计数 +word_counts = Counter(words) +most_common = word_counts.most_common(10) + +# 默认字典 +graph = defaultdict(list) +graph[node].append(neighbor) + +# 双端队列(两端操作 O(1)) +queue = deque() +queue.appendleft(item) # O(1) vs list.insert(0, item) O(n) +``` + +### 生成器与迭代器 + +```python +# ❌ 一次性加载所有数据 +def get_all_users(): + return [User(row) for row in db.fetch_all()] # 内存占用大 + +# ✅ 使用生成器 +def get_all_users(): + for row in db.fetch_all(): + yield User(row) # 懒加载 + +# ✅ 生成器表达式 +sum_of_squares = sum(x**2 for x in range(1000000)) # 不创建列表 + +# ✅ itertools 模块 +from itertools import islice, chain, groupby + +# 只取前 10 个 +first_10 = list(islice(infinite_generator(), 10)) + +# 链接多个迭代器 +all_items = chain(list1, list2, list3) + +# 分组 +for key, group in groupby(sorted(items, key=get_key), key=get_key): + process_group(key, list(group)) +``` + +### 缓存 + +```python +from functools import lru_cache, cache + +# ✅ LRU 缓存 +@lru_cache(maxsize=128) +def expensive_computation(n: int) -> int: + return sum(i**2 for i in range(n)) + +# ✅ 无限缓存(Python 3.9+) +@cache +def fibonacci(n: int) -> int: + if n < 2: + return n + return fibonacci(n - 1) + fibonacci(n - 2) + +# ✅ 手动缓存(需要更多控制时) +class DataService: + def __init__(self): + self._cache: dict[str, Any] = {} + self._cache_ttl: dict[str, float] = {} + + def get_data(self, key: str) -> Any: + if key in self._cache: + if time.time() < self._cache_ttl[key]: + return self._cache[key] + + data = self._fetch_data(key) + self._cache[key] = data + self._cache_ttl[key] = time.time() + 300 # 5 分钟 + return data +``` + +### 并行处理 + +```python +from concurrent.futures import ThreadPoolExecutor, ProcessPoolExecutor + +# ✅ IO 密集型使用线程池 +def fetch_all_urls(urls: list[str]) -> list[str]: + with ThreadPoolExecutor(max_workers=10) as executor: + results = list(executor.map(fetch_url, urls)) + return results + +# ✅ CPU 密集型使用进程池 +def process_large_dataset(data: list) -> list: + with ProcessPoolExecutor() as executor: + results = list(executor.map(heavy_computation, data)) + return results + +# ✅ 使用 as_completed 获取最先完成的结果 +from concurrent.futures import as_completed + +with ThreadPoolExecutor() as executor: + futures = {executor.submit(fetch, url): url for url in urls} + for future in as_completed(futures): + url = futures[future] + try: + result = future.result() + except Exception as e: + print(f"{url} failed: {e}") +``` + +--- + +## 代码风格 + +### PEP 8 要点 + +```python +# ✅ 命名规范 +class MyClass: # 类名 PascalCase + MAX_SIZE = 100 # 常量 UPPER_SNAKE_CASE + + def method_name(self): # 方法 snake_case + local_var = 1 # 变量 snake_case + +# ✅ 导入顺序 +# 1. 标准库 +import os +import sys +from typing import Optional + +# 2. 第三方库 +import numpy as np +import pandas as pd + +# 3. 本地模块 +from myapp import config +from myapp.utils import helper + +# ✅ 行长度限制(79 或 88 字符) +# 长表达式的换行 +result = ( + long_function_name(arg1, arg2, arg3) + + another_long_function(arg4, arg5) +) + +# ✅ 空行规范 +class MyClass: + """类文档字符串""" + + def method_one(self): + pass + + def method_two(self): # 方法间一个空行 + pass + + +def top_level_function(): # 顶层定义间两个空行 + pass +``` + +### 文档字符串 + +```python +# ✅ Google 风格文档字符串 +def calculate_area(width: float, height: float) -> float: + """计算矩形面积。 + + Args: + width: 矩形的宽度(必须为正数)。 + height: 矩形的高度(必须为正数)。 + + Returns: + 矩形的面积。 + + Raises: + ValueError: 如果 width 或 height 为负数。 + + Example: + >>> calculate_area(3, 4) + 12.0 + """ + if width < 0 or height < 0: + raise ValueError("Dimensions must be positive") + return width * height + +# ✅ 类文档字符串 +class DataProcessor: + """处理和转换数据的工具类。 + + Attributes: + source: 数据来源路径。 + format: 输出格式('json' 或 'csv')。 + + Example: + >>> processor = DataProcessor("data.csv") + >>> processor.process() + """ +``` + +### 现代 Python 特性 + +```python +# ✅ f-string(Python 3.6+) +name = "World" +print(f"Hello, {name}!") + +# 带表达式 +print(f"Result: {1 + 2 = }") # "Result: 1 + 2 = 3" + +# ✅ 海象运算符(Python 3.8+) +if (n := len(items)) > 10: + print(f"List has {n} items") + +# ✅ 位置参数分隔符(Python 3.8+) +def greet(name, /, greeting="Hello", *, punctuation="!"): + """name 只能位置传参,punctuation 只能关键字传参""" + return f"{greeting}, {name}{punctuation}" + +# ✅ 模式匹配(Python 3.10+) +def handle_response(response: dict): + match response: + case {"status": "ok", "data": data}: + return process_data(data) + case {"status": "error", "message": msg}: + raise APIError(msg) + case _: + raise ValueError("Unknown response format") +``` + +--- + +## Review Checklist + +### 类型安全 +- [ ] 函数有类型注解(参数和返回值) +- [ ] 使用 `Optional` 明确可能为 None +- [ ] 泛型类型正确使用 +- [ ] mypy 检查通过(无错误) +- [ ] 避免使用 `Any`,必要时添加注释说明 + +### 异步代码 +- [ ] async/await 正确配对使用 +- [ ] 没有在异步代码中使用阻塞调用 +- [ ] 正确处理 `CancelledError` +- [ ] 使用 `asyncio.gather` 或 `TaskGroup` 并发执行 +- [ ] 资源正确清理(async context manager) + +### 异常处理 +- [ ] 捕获特定异常类型,不使用裸 `except:` +- [ ] 异常链使用 `from` 保留原因 +- [ ] 自定义异常继承自合适的基类 +- [ ] 异常信息有意义,便于调试 + +### 数据结构 +- [ ] 没有使用可变默认参数(list、dict、set) +- [ ] 类属性不是可变对象 +- [ ] 选择正确的数据结构(set vs list 查找) +- [ ] 大数据集使用生成器而非列表 + +### 测试 +- [ ] 测试覆盖率达标(建议 ≥80%) +- [ ] 测试命名清晰描述测试场景 +- [ ] 边界情况有测试覆盖 +- [ ] Mock 正确隔离外部依赖 +- [ ] 异步代码有对应的异步测试 + +### 代码风格 +- [ ] 遵循 PEP 8 风格指南 +- [ ] 函数和类有 docstring +- [ ] 导入顺序正确(标准库、第三方、本地) +- [ ] 命名一致且有意义 +- [ ] 使用现代 Python 特性(f-string、walrus operator 等) + +### 性能 +- [ ] 避免循环中重复创建对象 +- [ ] 字符串拼接使用 join +- [ ] 合理使用缓存(@lru_cache) +- [ ] IO/CPU 密集型使用合适的并行方式 diff --git a/.github/skills/code-review-skill-main/reference/react.md b/.github/skills/code-review-skill-main/reference/react.md new file mode 100644 index 0000000000..1cce2fc680 --- /dev/null +++ b/.github/skills/code-review-skill-main/reference/react.md @@ -0,0 +1,871 @@ +# React Code Review Guide + +React 审查重点:Hooks 规则、性能优化的适度性、组件设计、以及现代 React 19/RSC 模式。 + +## 目录 + +- [基础 Hooks 规则](#基础-hooks-规则) +- [useEffect 模式](#useeffect-模式) +- [useMemo / useCallback](#usememo--usecallback) +- [组件设计](#组件设计) +- [Error Boundaries & Suspense](#error-boundaries--suspense) +- [Server Components (RSC)](#server-components-rsc) +- [React 19 Actions & Forms](#react-19-actions--forms) +- [Suspense & Streaming SSR](#suspense--streaming-ssr) +- [TanStack Query v5](#tanstack-query-v5) +- [Review Checklists](#review-checklists) + +--- + +## 基础 Hooks 规则 + +```tsx +// ❌ 条件调用 Hooks — 违反 Hooks 规则 +function BadComponent({ isLoggedIn }) { + if (isLoggedIn) { + const [user, setUser] = useState(null); // Error! + } + return
...
; +} + +// ✅ Hooks 必须在组件顶层调用 +function GoodComponent({ isLoggedIn }) { + const [user, setUser] = useState(null); + if (!isLoggedIn) return ; + return
{user?.name}
; +} +``` + +--- + +## useEffect 模式 + +```tsx +// ❌ 依赖数组缺失或不完整 +function BadEffect({ userId }) { + const [user, setUser] = useState(null); + useEffect(() => { + fetchUser(userId).then(setUser); + }, []); // 缺少 userId 依赖! +} + +// ✅ 完整的依赖数组 +function GoodEffect({ userId }) { + const [user, setUser] = useState(null); + useEffect(() => { + let cancelled = false; + fetchUser(userId).then(data => { + if (!cancelled) setUser(data); + }); + return () => { cancelled = true; }; // 清理函数 + }, [userId]); +} + +// ❌ useEffect 用于派生状态(反模式) +function BadDerived({ items }) { + const [filteredItems, setFilteredItems] = useState([]); + useEffect(() => { + setFilteredItems(items.filter(i => i.active)); + }, [items]); // 不必要的 effect + 额外渲染 + return ; +} + +// ✅ 直接在渲染时计算,或用 useMemo +function GoodDerived({ items }) { + const filteredItems = useMemo( + () => items.filter(i => i.active), + [items] + ); + return ; +} + +// ❌ useEffect 用于事件响应 +function BadEventEffect() { + const [query, setQuery] = useState(''); + useEffect(() => { + if (query) { + analytics.track('search', { query }); // 应该在事件处理器中 + } + }, [query]); +} + +// ✅ 在事件处理器中执行副作用 +function GoodEvent() { + const [query, setQuery] = useState(''); + const handleSearch = (q: string) => { + setQuery(q); + analytics.track('search', { query: q }); + }; +} +``` + +--- + +## useMemo / useCallback + +```tsx +// ❌ 过度优化 — 常量不需要 useMemo +function OverOptimized() { + const config = useMemo(() => ({ timeout: 5000 }), []); // 无意义 + const handleClick = useCallback(() => { + console.log('clicked'); + }, []); // 如果不传给 memo 组件,无意义 +} + +// ✅ 只在需要时优化 +function ProperlyOptimized() { + const config = { timeout: 5000 }; // 简单对象直接定义 + const handleClick = () => console.log('clicked'); +} + +// ❌ useCallback 依赖总是变化 +function BadCallback({ data }) { + // data 每次渲染都是新对象,useCallback 无效 + const process = useCallback(() => { + return data.map(transform); + }, [data]); +} + +// ✅ useMemo + useCallback 配合 React.memo 使用 +const MemoizedChild = React.memo(function Child({ onClick, items }) { + return
{items.length}
; +}); + +function Parent({ rawItems }) { + const items = useMemo(() => processItems(rawItems), [rawItems]); + const handleClick = useCallback(() => { + console.log(items.length); + }, [items]); + return ; +} +``` + +--- + +## 组件设计 + +```tsx +// ❌ 在组件内定义组件 — 每次渲染都创建新组件 +function BadParent() { + function ChildComponent() { // 每次渲染都是新函数! + return
child
; + } + return ; +} + +// ✅ 组件定义在外部 +function ChildComponent() { + return
child
; +} +function GoodParent() { + return ; +} + +// ❌ Props 总是新对象引用 +function BadProps() { + return ( + {}} // 每次渲染新函数 + /> + ); +} + +// ✅ 稳定的引用 +const style = { color: 'red' }; +function GoodProps() { + const handleClick = useCallback(() => {}, []); + return ; +} +``` + +--- + +## Error Boundaries & Suspense + +```tsx +// ❌ 没有错误边界 +function BadApp() { + return ( + }> + {/* 错误会导致整个应用崩溃 */} + + ); +} + +// ✅ Error Boundary 包裹 Suspense +function GoodApp() { + return ( + }> + }> + + + + ); +} +``` + +--- + +## Server Components (RSC) + +```tsx +// ❌ 在 Server Component 中使用客户端特性 +// app/page.tsx (Server Component by default) +function BadServerComponent() { + const [count, setCount] = useState(0); // Error! No hooks in RSC + return ; +} + +// ✅ 交互逻辑提取到 Client Component +// app/counter.tsx +'use client'; +function Counter() { + const [count, setCount] = useState(0); + return ; +} + +// app/page.tsx (Server Component) +async function GoodServerComponent() { + const data = await fetchData(); // 可以直接 await + return ( +
+

{data.title}

+ {/* 客户端组件 */} +
+ ); +} + +// ❌ 'use client' 放置不当 — 整个树都变成客户端 +// layout.tsx +'use client'; // 这会让所有子组件都成为客户端组件 +export default function Layout({ children }) { ... } + +// ✅ 只在需要交互的组件使用 'use client' +// 将客户端逻辑隔离到叶子组件 +``` + +--- + +## React 19 Actions & Forms + +React 19 引入了 Actions 系统和新的表单处理 Hooks,简化异步操作和乐观更新。 + +### useActionState + +```tsx +// ❌ 传统方式:多个状态变量 +function OldForm() { + const [isPending, setIsPending] = useState(false); + const [error, setError] = useState(null); + const [data, setData] = useState(null); + + const handleSubmit = async (formData: FormData) => { + setIsPending(true); + setError(null); + try { + const result = await submitForm(formData); + setData(result); + } catch (e) { + setError(e.message); + } finally { + setIsPending(false); + } + }; +} + +// ✅ React 19: useActionState 统一管理 +import { useActionState } from 'react'; + +function NewForm() { + const [state, formAction, isPending] = useActionState( + async (prevState, formData: FormData) => { + try { + const result = await submitForm(formData); + return { success: true, data: result }; + } catch (e) { + return { success: false, error: e.message }; + } + }, + { success: false, data: null, error: null } + ); + + return ( +
+ + + {state.error &&

{state.error}

} +
+ ); +} +``` + +### useFormStatus + +```tsx +// ❌ Props 透传表单状态 +function BadSubmitButton({ isSubmitting }) { + return ; +} + +// ✅ useFormStatus 访问父
状态(无需 props) +import { useFormStatus } from 'react-dom'; + +function SubmitButton() { + const { pending, data, method, action } = useFormStatus(); + // 注意:必须在 内部的子组件中使用 + return ( + + ); +} + +// ❌ useFormStatus 在 form 同级组件中调用——不工作 +function BadForm() { + const { pending } = useFormStatus(); // 这里无法获取状态! + return ( + + +
+ ); +} + +// ✅ useFormStatus 必须在 form 的子组件中 +function GoodForm() { + return ( +
+ {/* useFormStatus 在这里面调用 */} + + ); +} +``` + +### useOptimistic + +```tsx +// ❌ 等待服务器响应再更新 UI +function SlowLike({ postId, likes }) { + const [likeCount, setLikeCount] = useState(likes); + const [isPending, setIsPending] = useState(false); + + const handleLike = async () => { + setIsPending(true); + const newCount = await likePost(postId); // 等待... + setLikeCount(newCount); + setIsPending(false); + }; +} + +// ✅ useOptimistic 即时反馈,失败自动回滚 +import { useOptimistic } from 'react'; + +function FastLike({ postId, likes }) { + const [optimisticLikes, addOptimisticLike] = useOptimistic( + likes, + (currentLikes, increment: number) => currentLikes + increment + ); + + const handleLike = async () => { + addOptimisticLike(1); // 立即更新 UI + try { + await likePost(postId); // 后台同步 + } catch { + // React 自动回滚到 likes 原值 + } + }; + + return ; +} +``` + +### Server Actions (Next.js 15+) + +```tsx +// ❌ 客户端调用 API +'use client'; +function ClientForm() { + const handleSubmit = async (formData: FormData) => { + const res = await fetch('/api/submit', { + method: 'POST', + body: formData, + }); + // ... + }; +} + +// ✅ Server Action + useActionState +// actions.ts +'use server'; +export async function createPost(prevState: any, formData: FormData) { + const title = formData.get('title'); + await db.posts.create({ title }); + revalidatePath('/posts'); + return { success: true }; +} + +// form.tsx +'use client'; +import { createPost } from './actions'; + +function PostForm() { + const [state, formAction, isPending] = useActionState(createPost, null); + return ( +
+ + + + ); +} +``` + +--- + +## Suspense & Streaming SSR + +Suspense 和 Streaming 是 React 18+ 的核心特性,在 2025 年的 Next.js 15 等框架中广泛使用。 + +### 基础 Suspense + +```tsx +// ❌ 传统加载状态管理 +function OldComponent() { + const [data, setData] = useState(null); + const [isLoading, setIsLoading] = useState(true); + + useEffect(() => { + fetchData().then(setData).finally(() => setIsLoading(false)); + }, []); + + if (isLoading) return ; + return ; +} + +// ✅ Suspense 声明式加载状态 +function NewComponent() { + return ( + }> + {/* 内部使用 use() 或支持 Suspense 的数据获取 */} + + ); +} +``` + +### 多个独立 Suspense 边界 + +```tsx +// ❌ 单一边界——所有内容一起加载 +function BadLayout() { + return ( + }> +
+ {/* 慢 */} + {/* 快 */} + + ); +} + +// ✅ 独立边界——各部分独立流式传输 +function GoodLayout() { + return ( + <> +
{/* 立即显示 */} +
+ }> + {/* 独立加载 */} + + }> + {/* 独立加载 */} + +
+ + ); +} +``` + +### Next.js 15 Streaming + +```tsx +// app/page.tsx - 自动 Streaming +export default async function Page() { + // 这个 await 不会阻塞整个页面 + const data = await fetchSlowData(); + return
{data}
; +} + +// app/loading.tsx - 自动 Suspense 边界 +export default function Loading() { + return ; +} +``` + +### use() Hook (React 19) + +```tsx +// ✅ 在组件中读取 Promise +import { use } from 'react'; + +function Comments({ commentsPromise }) { + const comments = use(commentsPromise); // 自动触发 Suspense + return ( +
    + {comments.map(c =>
  • {c.text}
  • )} +
+ ); +} + +// 父组件创建 Promise,子组件消费 +function Post({ postId }) { + const commentsPromise = fetchComments(postId); // 不 await + return ( +
+ + }> + + +
+ ); +} +``` + +--- + +## TanStack Query v5 + +TanStack Query 是 React 生态中最流行的数据获取库,v5 是当前稳定版本。 + +### 基础配置 + +```tsx +// ❌ 不正确的默认配置 +const queryClient = new QueryClient(); // 默认配置可能不适合 + +// ✅ 生产环境推荐配置 +const queryClient = new QueryClient({ + defaultOptions: { + queries: { + staleTime: 1000 * 60 * 5, // 5 分钟内数据视为新鲜 + gcTime: 1000 * 60 * 30, // 30 分钟后垃圾回收(v5 重命名) + retry: 3, + refetchOnWindowFocus: false, // 根据需求决定 + }, + }, +}); +``` + +### queryOptions (v5 新增) + +```tsx +// ❌ 重复定义 queryKey 和 queryFn +function Component1() { + const { data } = useQuery({ + queryKey: ['users', userId], + queryFn: () => fetchUser(userId), + }); +} + +function prefetchUser(queryClient, userId) { + queryClient.prefetchQuery({ + queryKey: ['users', userId], // 重复! + queryFn: () => fetchUser(userId), // 重复! + }); +} + +// ✅ queryOptions 统一定义,类型安全 +import { queryOptions } from '@tanstack/react-query'; + +const userQueryOptions = (userId: string) => + queryOptions({ + queryKey: ['users', userId], + queryFn: () => fetchUser(userId), + }); + +function Component1({ userId }) { + const { data } = useQuery(userQueryOptions(userId)); +} + +function prefetchUser(queryClient, userId) { + queryClient.prefetchQuery(userQueryOptions(userId)); +} + +// getQueryData 也是类型安全的 +const user = queryClient.getQueryData(userQueryOptions(userId).queryKey); +``` + +### 常见陷阱 + +```tsx +// ❌ staleTime 为 0 导致过度请求 +useQuery({ + queryKey: ['data'], + queryFn: fetchData, + // staleTime 默认为 0,每次组件挂载都会 refetch +}); + +// ✅ 设置合理的 staleTime +useQuery({ + queryKey: ['data'], + queryFn: fetchData, + staleTime: 1000 * 60, // 1 分钟内不会重新请求 +}); + +// ❌ 在 queryFn 中使用不稳定的引用 +function BadQuery({ filters }) { + useQuery({ + queryKey: ['items'], // queryKey 没有包含 filters! + queryFn: () => fetchItems(filters), // filters 变化不会触发重新请求 + }); +} + +// ✅ queryKey 包含所有影响数据的参数 +function GoodQuery({ filters }) { + useQuery({ + queryKey: ['items', filters], // filters 是 queryKey 的一部分 + queryFn: () => fetchItems(filters), + }); +} +``` + +### useSuspenseQuery + +> **重要限制**:useSuspenseQuery 与 useQuery 有显著差异,选择前需了解其限制。 + +#### useSuspenseQuery 的限制 + +| 特性 | useQuery | useSuspenseQuery | +|------|----------|------------------| +| `enabled` 选项 | ✅ 支持 | ❌ 不支持 | +| `placeholderData` | ✅ 支持 | ❌ 不支持 | +| `data` 类型 | `T \| undefined` | `T`(保证有值)| +| 错误处理 | `error` 属性 | 抛出到 Error Boundary | +| 加载状态 | `isLoading` 属性 | 挂起到 Suspense | + +#### 不支持 enabled 的替代方案 + +```tsx +// ❌ 使用 useQuery + enabled 实现条件查询 +function BadSuspenseQuery({ userId }) { + const { data } = useSuspenseQuery({ + queryKey: ['user', userId], + queryFn: () => fetchUser(userId), + enabled: !!userId, // useSuspenseQuery 不支持 enabled! + }); +} + +// ✅ 组件组合实现条件渲染 +function GoodSuspenseQuery({ userId }) { + // useSuspenseQuery 保证 data 是 T 不是 T | undefined + const { data } = useSuspenseQuery({ + queryKey: ['user', userId], + queryFn: () => fetchUser(userId), + }); + return ; +} + +function Parent({ userId }) { + if (!userId) return ; + return ( + }> + + + ); +} +``` + +#### 错误处理差异 + +```tsx +// ❌ useSuspenseQuery 没有 error 属性 +function BadErrorHandling() { + const { data, error } = useSuspenseQuery({...}); + if (error) return ; // error 总是 null! +} + +// ✅ 使用 Error Boundary 处理错误 +function GoodErrorHandling() { + return ( + }> + }> + + + + ); +} + +function DataComponent() { + // 错误会抛出到 Error Boundary + const { data } = useSuspenseQuery({ + queryKey: ['data'], + queryFn: fetchData, + }); + return ; +} +``` + +#### 何时选择 useSuspenseQuery + +```tsx +// ✅ 适合场景: +// 1. 数据总是需要的(无条件查询) +// 2. 组件必须有数据才能渲染 +// 3. 使用 React 19 的 Suspense 模式 +// 4. 服务端组件 + 客户端 hydration + +// ❌ 不适合场景: +// 1. 条件查询(根据用户操作触发) +// 2. 需要 placeholderData 或初始数据 +// 3. 需要在组件内处理 loading/error 状态 +// 4. 多个查询有依赖关系 + +// ✅ 多个独立查询用 useSuspenseQueries +function MultipleQueries({ userId }) { + const [userQuery, postsQuery] = useSuspenseQueries({ + queries: [ + { queryKey: ['user', userId], queryFn: () => fetchUser(userId) }, + { queryKey: ['posts', userId], queryFn: () => fetchPosts(userId) }, + ], + }); + // 两个查询并行执行,都完成后组件渲染 + return ; +} +``` + +### 乐观更新 (v5 简化) + +```tsx +// ❌ 手动管理缓存的乐观更新(复杂) +const mutation = useMutation({ + mutationFn: updateTodo, + onMutate: async (newTodo) => { + await queryClient.cancelQueries({ queryKey: ['todos'] }); + const previousTodos = queryClient.getQueryData(['todos']); + queryClient.setQueryData(['todos'], (old) => [...old, newTodo]); + return { previousTodos }; + }, + onError: (err, newTodo, context) => { + queryClient.setQueryData(['todos'], context.previousTodos); + }, + onSettled: () => { + queryClient.invalidateQueries({ queryKey: ['todos'] }); + }, +}); + +// ✅ v5 简化:使用 variables 进行乐观 UI +function TodoList() { + const { data: todos } = useQuery(todosQueryOptions); + const { mutate, variables, isPending } = useMutation({ + mutationFn: addTodo, + onSuccess: () => { + queryClient.invalidateQueries({ queryKey: ['todos'] }); + }, + }); + + return ( +
    + {todos?.map(todo => )} + {/* 乐观显示正在添加的 todo */} + {isPending && } +
+ ); +} +``` + +### v5 状态字段变化 + +```tsx +// v4: isLoading 表示首次加载或后续获取 +// v5: isPending 表示没有数据,isLoading = isPending && isFetching + +const { data, isPending, isFetching, isLoading } = useQuery({...}); + +// isPending: 缓存中没有数据(首次加载) +// isFetching: 正在请求中(包括后台刷新) +// isLoading: isPending && isFetching(首次加载中) + +// ❌ v4 代码直接迁移 +if (isLoading) return ; // v5 中行为可能不同 + +// ✅ 明确意图 +if (isPending) return ; // 没有数据时显示加载 +// 或 +if (isLoading) return ; // 首次加载中 +``` + +--- + +## Review Checklists + +### Hooks 规则 + +- [ ] Hooks 在组件/自定义 Hook 顶层调用 +- [ ] 没有条件/循环中调用 Hooks +- [ ] useEffect 依赖数组完整 +- [ ] useEffect 有清理函数(订阅/定时器/请求) +- [ ] 没有用 useEffect 计算派生状态 + +### 性能优化(适度原则) + +- [ ] useMemo/useCallback 只用于真正需要的场景 +- [ ] React.memo 配合稳定的 props 引用 +- [ ] 没有在组件内定义子组件 +- [ ] 没有在 JSX 中创建新对象/函数(除非传给非 memo 组件) +- [ ] 长列表使用虚拟化(react-window/react-virtual) + +### 组件设计 + +- [ ] 组件职责单一,不超过 200 行 +- [ ] 逻辑与展示分离(Custom Hooks) +- [ ] Props 接口清晰,使用 TypeScript +- [ ] 避免 Props Drilling(考虑 Context 或组合) + +### 状态管理 + +- [ ] 状态就近原则(最小必要范围) +- [ ] 复杂状态用 useReducer +- [ ] 全局状态用 Context 或状态库 +- [ ] 避免不必要的状态(派生 > 存储) + +### 错误处理 + +- [ ] 关键区域有 Error Boundary +- [ ] Suspense 配合 Error Boundary 使用 +- [ ] 异步操作有错误处理 + +### Server Components (RSC) + +- [ ] 'use client' 只用于需要交互的组件 +- [ ] Server Component 不使用 Hooks/事件处理 +- [ ] 客户端组件尽量放在叶子节点 +- [ ] 数据获取在 Server Component 中进行 + +### React 19 Forms + +- [ ] 使用 useActionState 替代多个 useState +- [ ] useFormStatus 在 form 子组件中调用 +- [ ] useOptimistic 不用于关键业务(支付等) +- [ ] Server Action 正确标记 'use server' + +### Suspense & Streaming + +- [ ] 按用户体验需求划分 Suspense 边界 +- [ ] 每个 Suspense 有对应的 Error Boundary +- [ ] 提供有意义的 fallback(骨架屏 > Spinner) +- [ ] 避免在 layout 层级 await 慢数据 + +### TanStack Query + +- [ ] queryKey 包含所有影响数据的参数 +- [ ] 设置合理的 staleTime(不是默认 0) +- [ ] useSuspenseQuery 不使用 enabled +- [ ] Mutation 成功后 invalidate 相关查询 +- [ ] 理解 isPending vs isLoading 区别 + +### 测试 + +- [ ] 使用 @testing-library/react +- [ ] 用 screen 查询元素 +- [ ] 用 userEvent 代替 fireEvent +- [ ] 优先使用 *ByRole 查询 +- [ ] 测试行为而非实现细节 diff --git a/.github/skills/code-review-skill-main/reference/rust.md b/.github/skills/code-review-skill-main/reference/rust.md new file mode 100644 index 0000000000..1fa062ca96 --- /dev/null +++ b/.github/skills/code-review-skill-main/reference/rust.md @@ -0,0 +1,840 @@ +# Rust Code Review Guide + +> Rust 代码审查指南。编译器能捕获内存安全问题,但审查者需要关注编译器无法检测的问题——业务逻辑、API 设计、性能、取消安全性和可维护性。 + +## 目录 + +- [所有权与借用](#所有权与借用) +- [Unsafe 代码审查](#unsafe-代码审查最关键) +- [异步代码](#异步代码) +- [取消安全性](#取消安全性) +- [spawn vs await](#spawn-vs-await) +- [错误处理](#错误处理) +- [性能](#性能) +- [Trait 设计](#trait-设计) +- [Review Checklist](#rust-review-checklist) + +--- + +## 所有权与借用 + +### 避免不必要的 clone() + +```rust +// ❌ clone() 是"Rust 的胶带"——用于绕过借用检查器 +fn bad_process(data: &Data) -> Result<()> { + let owned = data.clone(); // 为什么需要 clone? + expensive_operation(owned) +} + +// ✅ 审查时问:clone 是否必要?能否用借用? +fn good_process(data: &Data) -> Result<()> { + expensive_operation(data) // 传递引用 +} + +// ✅ 如果确实需要 clone,添加注释说明原因 +fn justified_clone(data: &Data) -> Result<()> { + // Clone needed: data will be moved to spawned task + let owned = data.clone(); + tokio::spawn(async move { + process(owned).await + }); + Ok(()) +} +``` + +### Arc> 的使用 + +```rust +// ❌ Arc> 可能隐藏不必要的共享状态 +struct BadService { + cache: Arc>>, // 真的需要共享? +} + +// ✅ 考虑是否需要共享,或者设计可以避免 +struct GoodService { + cache: HashMap, // 单一所有者 +} + +// ✅ 如果确实需要并发访问,考虑更好的数据结构 +use dashmap::DashMap; + +struct ConcurrentService { + cache: DashMap, // 更细粒度的锁 +} +``` + +### Cow (Copy-on-Write) 模式 + +```rust +use std::borrow::Cow; + +// ❌ 总是分配新字符串 +fn bad_process_name(name: &str) -> String { + if name.is_empty() { + "Unknown".to_string() // 分配 + } else { + name.to_string() // 不必要的分配 + } +} + +// ✅ 使用 Cow 避免不必要的分配 +fn good_process_name(name: &str) -> Cow<'_, str> { + if name.is_empty() { + Cow::Borrowed("Unknown") // 静态字符串,无分配 + } else { + Cow::Borrowed(name) // 借用原始数据 + } +} + +// ✅ 只在需要修改时才分配 +fn normalize_name(name: &str) -> Cow<'_, str> { + if name.chars().any(|c| c.is_uppercase()) { + Cow::Owned(name.to_lowercase()) // 需要修改,分配 + } else { + Cow::Borrowed(name) // 无需修改,借用 + } +} +``` + +--- + +## Unsafe 代码审查(最关键!) + +### 基本要求 + +```rust +// ❌ unsafe 没有安全文档——这是红旗 +unsafe fn bad_transmute(t: T) -> U { + std::mem::transmute(t) +} + +// ✅ 每个 unsafe 必须解释:为什么安全?什么不变量? +/// Transmutes `T` to `U`. +/// +/// # Safety +/// +/// - `T` and `U` must have the same size and alignment +/// - `T` must be a valid bit pattern for `U` +/// - The caller ensures no references to `t` exist after this call +unsafe fn documented_transmute(t: T) -> U { + // SAFETY: Caller guarantees size/alignment match and bit validity + std::mem::transmute(t) +} +``` + +### Unsafe 块注释 + +```rust +// ❌ 没有解释的 unsafe 块 +fn bad_get_unchecked(slice: &[u8], index: usize) -> u8 { + unsafe { *slice.get_unchecked(index) } +} + +// ✅ 每个 unsafe 块必须有 SAFETY 注释 +fn good_get_unchecked(slice: &[u8], index: usize) -> u8 { + debug_assert!(index < slice.len(), "index out of bounds"); + // SAFETY: We verified index < slice.len() via debug_assert. + // In release builds, callers must ensure valid index. + unsafe { *slice.get_unchecked(index) } +} + +// ✅ 封装 unsafe 提供安全 API +pub fn checked_get(slice: &[u8], index: usize) -> Option { + if index < slice.len() { + // SAFETY: bounds check performed above + Some(unsafe { *slice.get_unchecked(index) }) + } else { + None + } +} +``` + +### 常见 unsafe 模式 + +```rust +// ✅ FFI 边界 +extern "C" { + fn external_function(ptr: *const u8, len: usize) -> i32; +} + +pub fn safe_wrapper(data: &[u8]) -> Result { + // SAFETY: data.as_ptr() is valid for data.len() bytes, + // and external_function only reads from the buffer. + let result = unsafe { + external_function(data.as_ptr(), data.len()) + }; + if result < 0 { + Err(Error::from_code(result)) + } else { + Ok(result) + } +} + +// ✅ 性能关键路径的 unsafe +pub fn fast_copy(src: &[u8], dst: &mut [u8]) { + assert_eq!(src.len(), dst.len(), "slices must be equal length"); + // SAFETY: src and dst are valid slices of equal length, + // and dst is mutable so no aliasing. + unsafe { + std::ptr::copy_nonoverlapping( + src.as_ptr(), + dst.as_mut_ptr(), + src.len() + ); + } +} +``` + +--- + +## 异步代码 + +### 避免阻塞操作 + +```rust +// ❌ 在 async 上下文中阻塞——会饿死其他任务 +async fn bad_async() { + let data = std::fs::read_to_string("file.txt").unwrap(); // 阻塞! + std::thread::sleep(Duration::from_secs(1)); // 阻塞! +} + +// ✅ 使用异步 API +async fn good_async() -> Result { + let data = tokio::fs::read_to_string("file.txt").await?; + tokio::time::sleep(Duration::from_secs(1)).await; + Ok(data) +} + +// ✅ 如果必须使用阻塞操作,用 spawn_blocking +async fn with_blocking() -> Result { + let result = tokio::task::spawn_blocking(|| { + // 这里可以安全地进行阻塞操作 + expensive_cpu_computation() + }).await?; + Ok(result) +} +``` + +### Mutex 和 .await + +```rust +// ❌ 跨 .await 持有 std::sync::Mutex——可能死锁 +async fn bad_lock(mutex: &std::sync::Mutex) { + let guard = mutex.lock().unwrap(); + async_operation().await; // 持锁等待! + process(&guard); +} + +// ✅ 方案1:最小化锁范围 +async fn good_lock_scoped(mutex: &std::sync::Mutex) { + let data = { + let guard = mutex.lock().unwrap(); + guard.clone() // 立即释放锁 + }; + async_operation().await; + process(&data); +} + +// ✅ 方案2:使用 tokio::sync::Mutex(可跨 await) +async fn good_lock_tokio(mutex: &tokio::sync::Mutex) { + let guard = mutex.lock().await; + async_operation().await; // OK: tokio Mutex 设计为可跨 await + process(&guard); +} + +// 💡 选择指南: +// - std::sync::Mutex:低竞争、短临界区、不跨 await +// - tokio::sync::Mutex:需要跨 await、高竞争场景 +``` + +### 异步 trait 方法 + +```rust +// ❌ async trait 方法的陷阱(旧版本) +#[async_trait] +trait BadRepository { + async fn find(&self, id: i64) -> Option; // 隐式 Box +} + +// ✅ Rust 1.75+:原生 async trait 方法 +trait Repository { + async fn find(&self, id: i64) -> Option; + + // 返回具体 Future 类型以避免 allocation + fn find_many(&self, ids: &[i64]) -> impl Future> + Send; +} + +// ✅ 对于需要 dyn 的场景 +trait DynRepository: Send + Sync { + fn find(&self, id: i64) -> Pin> + Send + '_>>; +} +``` + +--- + +## 取消安全性 + +### 什么是取消安全 + +```rust +// 当一个 Future 在 .await 点被 drop 时,它处于什么状态? +// 取消安全的 Future:可以在任何 await 点安全取消 +// 取消不安全的 Future:取消可能导致数据丢失或不一致状态 + +// ❌ 取消不安全的例子 +async fn cancel_unsafe(conn: &mut Connection) -> Result<()> { + let data = receive_data().await; // 如果这里被取消... + conn.send_ack().await; // ...确认永远不会发送,数据可能丢失 + Ok(()) +} + +// ✅ 取消安全的版本 +async fn cancel_safe(conn: &mut Connection) -> Result<()> { + // 使用事务或原子操作确保一致性 + let transaction = conn.begin_transaction().await?; + let data = receive_data().await; + transaction.commit_with_ack(data).await?; // 原子操作 + Ok(()) +} +``` + +### select! 中的取消安全 + +```rust +use tokio::select; + +// ❌ 在 select! 中使用取消不安全的 Future +async fn bad_select(stream: &mut TcpStream) { + let mut buffer = vec![0u8; 1024]; + loop { + select! { + // 如果 timeout 先完成,read 被取消 + // 部分读取的数据可能丢失! + result = stream.read(&mut buffer) => { + handle_data(&buffer[..result?]); + } + _ = tokio::time::sleep(Duration::from_secs(5)) => { + println!("Timeout"); + } + } + } +} + +// ✅ 使用取消安全的 API +async fn good_select(stream: &mut TcpStream) { + let mut buffer = vec![0u8; 1024]; + loop { + select! { + // tokio::io::AsyncReadExt::read 是取消安全的 + // 取消时,未读取的数据留在流中 + result = stream.read(&mut buffer) => { + match result { + Ok(0) => break, // EOF + Ok(n) => handle_data(&buffer[..n]), + Err(e) => return Err(e), + } + } + _ = tokio::time::sleep(Duration::from_secs(5)) => { + println!("Timeout, retrying..."); + } + } + } +} + +// ✅ 使用 tokio::pin! 确保 Future 可以安全重用 +async fn pinned_select() { + let sleep = tokio::time::sleep(Duration::from_secs(10)); + tokio::pin!(sleep); + + loop { + select! { + _ = &mut sleep => { + println!("Timer elapsed"); + break; + } + data = receive_data() => { + process(data).await; + // sleep 继续倒计时,不会重置 + } + } + } +} +``` + +### 文档化取消安全性 + +```rust +/// Reads a complete message from the stream. +/// +/// # Cancel Safety +/// +/// This method is **not** cancel safe. If cancelled while reading, +/// partial data may be lost and the stream state becomes undefined. +/// Use `read_message_cancel_safe` if cancellation is expected. +async fn read_message(stream: &mut TcpStream) -> Result { + let len = stream.read_u32().await?; + let mut buffer = vec![0u8; len as usize]; + stream.read_exact(&mut buffer).await?; + Ok(Message::from_bytes(&buffer)) +} + +/// Reads a message with cancel safety. +/// +/// # Cancel Safety +/// +/// This method is cancel safe. If cancelled, any partial data +/// is preserved in the internal buffer for the next call. +async fn read_message_cancel_safe(reader: &mut BufferedReader) -> Result { + reader.read_message_buffered().await +} +``` + +--- + +## spawn vs await + +### 何时使用 spawn + +```rust +// ❌ 不必要的 spawn——增加开销,失去结构化并发 +async fn bad_unnecessary_spawn() { + let handle = tokio::spawn(async { + simple_operation().await + }); + handle.await.unwrap(); // 为什么不直接 await? +} + +// ✅ 直接 await 简单操作 +async fn good_direct_await() { + simple_operation().await; +} + +// ✅ spawn 用于真正的并行执行 +async fn good_parallel_spawn() { + let task1 = tokio::spawn(fetch_from_service_a()); + let task2 = tokio::spawn(fetch_from_service_b()); + + // 两个请求并行执行 + let (result1, result2) = tokio::try_join!(task1, task2)?; +} + +// ✅ spawn 用于后台任务(fire-and-forget) +async fn good_background_spawn() { + // 启动后台任务,不等待完成 + tokio::spawn(async { + cleanup_old_sessions().await; + log_metrics().await; + }); + + // 继续执行其他工作 + handle_request().await; +} +``` + +### spawn 的 'static 要求 + +```rust +// ❌ spawn 的 Future 必须是 'static +async fn bad_spawn_borrow(data: &Data) { + tokio::spawn(async { + process(data).await; // Error: `data` 不是 'static + }); +} + +// ✅ 方案1:克隆数据 +async fn good_spawn_clone(data: &Data) { + let owned = data.clone(); + tokio::spawn(async move { + process(&owned).await; + }); +} + +// ✅ 方案2:使用 Arc 共享 +async fn good_spawn_arc(data: Arc) { + let data = Arc::clone(&data); + tokio::spawn(async move { + process(&data).await; + }); +} + +// ✅ 方案3:使用作用域任务(tokio-scoped 或 async-scoped) +async fn good_scoped_spawn(data: &Data) { + // 假设使用 async-scoped crate + async_scoped::scope(|s| async { + s.spawn(async { + process(data).await; // 可以借用 + }); + }).await; +} +``` + +### JoinHandle 错误处理 + +```rust +// ❌ 忽略 spawn 的错误 +async fn bad_ignore_spawn_error() { + let handle = tokio::spawn(async { + risky_operation().await + }); + let _ = handle.await; // 忽略了 panic 和错误 +} + +// ✅ 正确处理 JoinHandle 结果 +async fn good_handle_spawn_error() -> Result<()> { + let handle = tokio::spawn(async { + risky_operation().await + }); + + match handle.await { + Ok(Ok(result)) => { + // 任务成功完成 + process_result(result); + Ok(()) + } + Ok(Err(e)) => { + // 任务内部错误 + Err(e.into()) + } + Err(join_err) => { + // 任务 panic 或被取消 + if join_err.is_panic() { + error!("Task panicked: {:?}", join_err); + } + Err(anyhow!("Task failed: {}", join_err)) + } + } +} +``` + +### 结构化并发 vs spawn + +```rust +// ✅ 优先使用 join!(结构化并发) +async fn structured_concurrency() -> Result<(A, B, C)> { + // 所有任务在同一个作用域内 + // 如果任何一个失败,其他的会被取消 + tokio::try_join!( + fetch_a(), + fetch_b(), + fetch_c() + ) +} + +// ✅ 使用 spawn 时考虑任务生命周期 +struct TaskManager { + handles: Vec>, +} + +impl TaskManager { + async fn shutdown(self) { + // 优雅关闭:等待所有任务完成 + for handle in self.handles { + if let Err(e) = handle.await { + error!("Task failed during shutdown: {}", e); + } + } + } + + async fn abort_all(self) { + // 强制关闭:取消所有任务 + for handle in self.handles { + handle.abort(); + } + } +} +``` + +--- + +## 错误处理 + +### 库 vs 应用的错误类型 + +```rust +// ❌ 库代码用 anyhow——调用者无法 match 错误 +pub fn parse_config(s: &str) -> anyhow::Result { ... } + +// ✅ 库用 thiserror,应用用 anyhow +#[derive(Debug, thiserror::Error)] +pub enum ConfigError { + #[error("invalid syntax at line {line}: {message}")] + Syntax { line: usize, message: String }, + #[error("missing required field: {0}")] + MissingField(String), + #[error(transparent)] + Io(#[from] std::io::Error), +} + +pub fn parse_config(s: &str) -> Result { ... } +``` + +### 保留错误上下文 + +```rust +// ❌ 吞掉错误上下文 +fn bad_error() -> Result<()> { + operation().map_err(|_| anyhow!("failed"))?; // 原始错误丢失 + Ok(()) +} + +// ✅ 使用 context 保留错误链 +fn good_error() -> Result<()> { + operation().context("failed to perform operation")?; + Ok(()) +} + +// ✅ 使用 with_context 进行懒计算 +fn good_error_lazy() -> Result<()> { + operation() + .with_context(|| format!("failed to process file: {}", filename))?; + Ok(()) +} +``` + +### 错误类型设计 + +```rust +// ✅ 使用 #[source] 保留错误链 +#[derive(Debug, thiserror::Error)] +pub enum ServiceError { + #[error("database error")] + Database(#[source] sqlx::Error), + + #[error("network error: {message}")] + Network { + message: String, + #[source] + source: reqwest::Error, + }, + + #[error("validation failed: {0}")] + Validation(String), +} + +// ✅ 为常见转换实现 From +impl From for ServiceError { + fn from(err: sqlx::Error) -> Self { + ServiceError::Database(err) + } +} +``` + +--- + +## 性能 + +### 避免不必要的 collect() + +```rust +// ❌ 不必要的 collect——中间分配 +fn bad_sum(items: &[i32]) -> i32 { + items.iter() + .filter(|x| **x > 0) + .collect::>() // 不必要! + .iter() + .sum() +} + +// ✅ 惰性迭代 +fn good_sum(items: &[i32]) -> i32 { + items.iter().filter(|x| **x > 0).copied().sum() +} +``` + +### 字符串拼接 + +```rust +// ❌ 字符串拼接在循环中重复分配 +fn bad_concat(items: &[&str]) -> String { + let mut s = String::new(); + for item in items { + s = s + item; // 每次都重新分配! + } + s +} + +// ✅ 预分配或用 join +fn good_concat(items: &[&str]) -> String { + items.join("") +} + +// ✅ 使用 with_capacity 预分配 +fn good_concat_capacity(items: &[&str]) -> String { + let total_len: usize = items.iter().map(|s| s.len()).sum(); + let mut result = String::with_capacity(total_len); + for item in items { + result.push_str(item); + } + result +} + +// ✅ 使用 write! 宏 +use std::fmt::Write; + +fn good_concat_write(items: &[&str]) -> String { + let mut result = String::new(); + for item in items { + write!(result, "{}", item).unwrap(); + } + result +} +``` + +### 避免不必要的分配 + +```rust +// ❌ 不必要的 Vec 分配 +fn bad_check_any(items: &[Item]) -> bool { + let filtered: Vec<_> = items.iter() + .filter(|i| i.is_valid()) + .collect(); + !filtered.is_empty() +} + +// ✅ 使用迭代器方法 +fn good_check_any(items: &[Item]) -> bool { + items.iter().any(|i| i.is_valid()) +} + +// ❌ String::from 用于静态字符串 +fn bad_static() -> String { + String::from("error message") // 运行时分配 +} + +// ✅ 返回 &'static str +fn good_static() -> &'static str { + "error message" // 无分配 +} +``` + +--- + +## Trait 设计 + +### 避免过度抽象 + +```rust +// ❌ 过度抽象——不是 Java,不需要 Interface 一切 +trait Processor { fn process(&self); } +trait Handler { fn handle(&self); } +trait Manager { fn manage(&self); } // Trait 过多 + +// ✅ 只在需要多态时创建 trait +// 具体类型通常更简单、更快 +struct DataProcessor { + config: Config, +} + +impl DataProcessor { + fn process(&self, data: &Data) -> Result { + // 直接实现 + } +} +``` + +### Trait 对象 vs 泛型 + +```rust +// ❌ 不必要的 trait 对象(动态分发) +fn bad_process(handler: &dyn Handler) { + handler.handle(); // 虚表调用 +} + +// ✅ 使用泛型(静态分发,可内联) +fn good_process(handler: &H) { + handler.handle(); // 可能被内联 +} + +// ✅ trait 对象适用场景:异构集合 +fn store_handlers(handlers: Vec>) { + // 需要存储不同类型的 handlers +} + +// ✅ 使用 impl Trait 返回类型 +fn create_handler() -> impl Handler { + ConcreteHandler::new() +} +``` + +--- + +## Rust Review Checklist + +### 编译器不能捕获的问题 + +**业务逻辑正确性** +- [ ] 边界条件处理正确 +- [ ] 状态机转换完整 +- [ ] 并发场景下的竞态条件 + +**API 设计** +- [ ] 公共 API 难以误用 +- [ ] 类型签名清晰表达意图 +- [ ] 错误类型粒度合适 + +### 所有权与借用 + +- [ ] clone() 是有意为之,文档说明了原因 +- [ ] Arc> 真的需要共享状态吗? +- [ ] RefCell 的使用有正当理由 +- [ ] 生命周期不过度复杂 +- [ ] 考虑使用 Cow 避免不必要的分配 + +### Unsafe 代码(最重要) + +- [ ] 每个 unsafe 块有 SAFETY 注释 +- [ ] unsafe fn 有 # Safety 文档节 +- [ ] 解释了为什么是安全的,不只是做什么 +- [ ] 列出了必须维护的不变量 +- [ ] unsafe 边界尽可能小 +- [ ] 考虑过是否有 safe 替代方案 + +### 异步/并发 + +- [ ] 没有在 async 中阻塞(std::fs、thread::sleep) +- [ ] 没有跨 .await 持有 std::sync 锁 +- [ ] spawn 的任务满足 'static +- [ ] 锁的获取顺序一致 +- [ ] Channel 缓冲区大小合理 + +### 取消安全性 + +- [ ] select! 中的 Future 是取消安全的 +- [ ] 文档化了 async 函数的取消安全性 +- [ ] 取消不会导致数据丢失或不一致状态 +- [ ] 使用 tokio::pin! 正确处理需要重用的 Future + +### spawn vs await + +- [ ] spawn 只用于真正需要并行的场景 +- [ ] 简单操作直接 await,不要 spawn +- [ ] spawn 的 JoinHandle 结果被正确处理 +- [ ] 考虑任务的生命周期和关闭策略 +- [ ] 优先使用 join!/try_join! 进行结构化并发 + +### 错误处理 + +- [ ] 库:thiserror 定义结构化错误 +- [ ] 应用:anyhow + context +- [ ] 没有生产代码 unwrap/expect +- [ ] 错误消息对调试有帮助 +- [ ] must_use 返回值被处理 +- [ ] 使用 #[source] 保留错误链 + +### 性能 + +- [ ] 避免不必要的 collect() +- [ ] 大数据传引用 +- [ ] 字符串用 with_capacity 或 write! +- [ ] impl Trait vs Box 选择合理 +- [ ] 热路径避免分配 +- [ ] 考虑使用 Cow 减少克隆 + +### 代码质量 + +- [ ] cargo clippy 零警告 +- [ ] cargo fmt 格式化 +- [ ] 文档注释完整 +- [ ] 测试覆盖边界条件 +- [ ] 公共 API 有文档示例 diff --git a/.github/skills/code-review-skill-main/reference/security-review-guide.md b/.github/skills/code-review-skill-main/reference/security-review-guide.md new file mode 100644 index 0000000000..80d10bc093 --- /dev/null +++ b/.github/skills/code-review-skill-main/reference/security-review-guide.md @@ -0,0 +1,265 @@ +# Security Review Guide + +Security-focused code review checklist based on OWASP Top 10 and best practices. + +## Authentication & Authorization + +### Authentication +- [ ] Passwords hashed with strong algorithm (bcrypt, argon2) +- [ ] Password complexity requirements enforced +- [ ] Account lockout after failed attempts +- [ ] Secure password reset flow +- [ ] Multi-factor authentication for sensitive operations +- [ ] Session tokens are cryptographically random +- [ ] Session timeout implemented + +### Authorization +- [ ] Authorization checks on every request +- [ ] Principle of least privilege applied +- [ ] Role-based access control (RBAC) properly implemented +- [ ] No privilege escalation paths +- [ ] Direct object reference checks (IDOR prevention) +- [ ] API endpoints protected appropriately + +### JWT Security +```typescript +// ❌ Insecure JWT configuration +jwt.sign(payload, 'weak-secret'); + +// ✅ Secure JWT configuration +jwt.sign(payload, process.env.JWT_SECRET, { + algorithm: 'RS256', + expiresIn: '15m', + issuer: 'your-app', + audience: 'your-api' +}); + +// ❌ Not verifying JWT properly +const decoded = jwt.decode(token); // No signature verification! + +// ✅ Verify signature and claims +const decoded = jwt.verify(token, publicKey, { + algorithms: ['RS256'], + issuer: 'your-app', + audience: 'your-api' +}); +``` + +## Input Validation + +### SQL Injection Prevention +```python +# ❌ Vulnerable to SQL injection +query = f"SELECT * FROM users WHERE id = {user_id}" + +# ✅ Use parameterized queries +cursor.execute("SELECT * FROM users WHERE id = %s", (user_id,)) + +# ✅ Use ORM with proper escaping +User.objects.filter(id=user_id) +``` + +### XSS Prevention +```typescript +// ❌ Vulnerable to XSS +element.innerHTML = userInput; + +// ✅ Use textContent for plain text +element.textContent = userInput; + +// ✅ Use DOMPurify for HTML +element.innerHTML = DOMPurify.sanitize(userInput); + +// ✅ React automatically escapes (but watch dangerouslySetInnerHTML) +return
{userInput}
; // Safe +return
; // Dangerous! +``` + +### Command Injection Prevention +```python +# ❌ Vulnerable to command injection +os.system(f"convert {filename} output.png") + +# ✅ Use subprocess with list arguments +subprocess.run(['convert', filename, 'output.png'], check=True) + +# ✅ Validate and sanitize input +import shlex +safe_filename = shlex.quote(filename) +``` + +### Path Traversal Prevention +```typescript +// ❌ Vulnerable to path traversal +const filePath = `./uploads/${req.params.filename}`; + +// ✅ Validate and sanitize path +const path = require('path'); +const safeName = path.basename(req.params.filename); +const filePath = path.join('./uploads', safeName); + +// Verify it's still within uploads directory +if (!filePath.startsWith(path.resolve('./uploads'))) { + throw new Error('Invalid path'); +} +``` + +## Data Protection + +### Sensitive Data Handling +- [ ] No secrets in source code +- [ ] Secrets stored in environment variables or secret manager +- [ ] Sensitive data encrypted at rest +- [ ] Sensitive data encrypted in transit (HTTPS) +- [ ] PII handled according to regulations (GDPR, etc.) +- [ ] Sensitive data not logged +- [ ] Secure data deletion when required + +### Configuration Security +```yaml +# ❌ Secrets in config files +database: + password: "super-secret-password" + +# ✅ Reference environment variables +database: + password: ${DATABASE_PASSWORD} +``` + +### Error Messages +```typescript +// ❌ Leaking sensitive information +catch (error) { + return res.status(500).json({ + error: error.stack, // Exposes internal details + query: sqlQuery // Exposes database structure + }); +} + +// ✅ Generic error messages +catch (error) { + logger.error('Database error', { error, userId }); // Log internally + return res.status(500).json({ + error: 'An unexpected error occurred' + }); +} +``` + +## API Security + +### Rate Limiting +- [ ] Rate limiting on all public endpoints +- [ ] Stricter limits on authentication endpoints +- [ ] Per-user and per-IP limits +- [ ] Graceful handling when limits exceeded + +### CORS Configuration +```typescript +// ❌ Overly permissive CORS +app.use(cors({ origin: '*' })); + +// ✅ Restrictive CORS +app.use(cors({ + origin: ['https://your-app.com'], + methods: ['GET', 'POST'], + credentials: true +})); +``` + +### HTTP Headers +```typescript +// Security headers to set +app.use(helmet({ + contentSecurityPolicy: { + directives: { + defaultSrc: ["'self'"], + scriptSrc: ["'self'"], + styleSrc: ["'self'", "'unsafe-inline'"], + } + }, + hsts: { maxAge: 31536000, includeSubDomains: true }, + noSniff: true, + xssFilter: true, + frameguard: { action: 'deny' } +})); +``` + +## Cryptography + +### Secure Practices +- [ ] Using well-established algorithms (AES-256, RSA-2048+) +- [ ] Not implementing custom cryptography +- [ ] Using cryptographically secure random number generation +- [ ] Proper key management and rotation +- [ ] Secure key storage (HSM, KMS) + +### Common Mistakes +```typescript +// ❌ Weak random generation +const token = Math.random().toString(36); + +// ✅ Cryptographically secure random +const crypto = require('crypto'); +const token = crypto.randomBytes(32).toString('hex'); + +// ❌ MD5/SHA1 for passwords +const hash = crypto.createHash('md5').update(password).digest('hex'); + +// ✅ Use bcrypt or argon2 +const bcrypt = require('bcrypt'); +const hash = await bcrypt.hash(password, 12); +``` + +## Dependency Security + +### Checklist +- [ ] Dependencies from trusted sources only +- [ ] No known vulnerabilities (npm audit, cargo audit) +- [ ] Dependencies kept up to date +- [ ] Lock files committed (package-lock.json, Cargo.lock) +- [ ] Minimal dependency usage +- [ ] License compliance verified + +### Audit Commands +```bash +# Node.js +npm audit +npm audit fix + +# Python +pip-audit +safety check + +# Rust +cargo audit + +# General +snyk test +``` + +## Logging & Monitoring + +### Secure Logging +- [ ] No sensitive data in logs (passwords, tokens, PII) +- [ ] Logs protected from tampering +- [ ] Appropriate log retention +- [ ] Security events logged (login attempts, permission changes) +- [ ] Log injection prevented + +```typescript +// ❌ Logging sensitive data +logger.info(`User login: ${email}, password: ${password}`); + +// ✅ Safe logging +logger.info('User login attempt', { email, success: true }); +``` + +## Security Review Severity Levels + +| Severity | Description | Action | +|----------|-------------|--------| +| **Critical** | Immediate exploitation possible, data breach risk | Block merge, fix immediately | +| **High** | Significant vulnerability, requires specific conditions | Block merge, fix before release | +| **Medium** | Moderate risk, defense in depth concern | Should fix, can merge with tracking | +| **Low** | Minor issue, best practice violation | Nice to fix, non-blocking | +| **Info** | Suggestion for improvement | Optional enhancement | diff --git a/.github/skills/code-review-skill-main/reference/typescript.md b/.github/skills/code-review-skill-main/reference/typescript.md new file mode 100644 index 0000000000..4699f6bf3b --- /dev/null +++ b/.github/skills/code-review-skill-main/reference/typescript.md @@ -0,0 +1,543 @@ +# TypeScript/JavaScript Code Review Guide + +> TypeScript 代码审查指南,覆盖类型系统、泛型、条件类型、strict 模式、async/await 模式等核心主题。 + +## 目录 + +- [类型安全基础](#类型安全基础) +- [泛型模式](#泛型模式) +- [高级类型](#高级类型) +- [Strict 模式配置](#strict-模式配置) +- [异步处理](#异步处理) +- [不可变性](#不可变性) +- [ESLint 规则](#eslint-规则) +- [Review Checklist](#review-checklist) + +--- + +## 类型安全基础 + +### 避免使用 any + +```typescript +// ❌ Using any defeats type safety +function processData(data: any) { + return data.value; // 无类型检查,运行时可能崩溃 +} + +// ✅ Use proper types +interface DataPayload { + value: string; +} +function processData(data: DataPayload) { + return data.value; +} + +// ✅ 未知类型用 unknown + 类型守卫 +function processUnknown(data: unknown) { + if (typeof data === 'object' && data !== null && 'value' in data) { + return (data as { value: string }).value; + } + throw new Error('Invalid data'); +} +``` + +### 类型收窄 + +```typescript +// ❌ 不安全的类型断言 +function getLength(value: string | string[]) { + return (value as string[]).length; // 如果是 string 会出错 +} + +// ✅ 使用类型守卫 +function getLength(value: string | string[]): number { + if (Array.isArray(value)) { + return value.length; + } + return value.length; +} + +// ✅ 使用 in 操作符 +interface Dog { bark(): void } +interface Cat { meow(): void } + +function speak(animal: Dog | Cat) { + if ('bark' in animal) { + animal.bark(); + } else { + animal.meow(); + } +} +``` + +### 字面量类型与 as const + +```typescript +// ❌ 类型过于宽泛 +const config = { + endpoint: '/api', + method: 'GET' // 类型是 string +}; + +// ✅ 使用 as const 获得字面量类型 +const config = { + endpoint: '/api', + method: 'GET' +} as const; // method 类型是 'GET' + +// ✅ 用于函数参数 +function request(method: 'GET' | 'POST', url: string) { ... } +request(config.method, config.endpoint); // 正确! +``` + +--- + +## 泛型模式 + +### 基础泛型 + +```typescript +// ❌ 重复代码 +function getFirstString(arr: string[]): string | undefined { + return arr[0]; +} +function getFirstNumber(arr: number[]): number | undefined { + return arr[0]; +} + +// ✅ 使用泛型 +function getFirst(arr: T[]): T | undefined { + return arr[0]; +} +``` + +### 泛型约束 + +```typescript +// ❌ 泛型没有约束,无法访问属性 +function getProperty(obj: T, key: string) { + return obj[key]; // Error: 无法索引 +} + +// ✅ 使用 keyof 约束 +function getProperty(obj: T, key: K): T[K] { + return obj[key]; +} + +const user = { name: 'Alice', age: 30 }; +getProperty(user, 'name'); // 返回类型是 string +getProperty(user, 'age'); // 返回类型是 number +getProperty(user, 'foo'); // Error: 'foo' 不在 keyof User +``` + +### 泛型默认值 + +```typescript +// ✅ 提供合理的默认类型 +interface ApiResponse { + data: T; + status: number; + message: string; +} + +// 可以不指定泛型参数 +const response: ApiResponse = { data: null, status: 200, message: 'OK' }; +// 也可以指定 +const userResponse: ApiResponse = { ... }; +``` + +### 常见泛型工具类型 + +```typescript +// ✅ 善用内置工具类型 +interface User { + id: number; + name: string; + email: string; +} + +type PartialUser = Partial; // 所有属性可选 +type RequiredUser = Required; // 所有属性必需 +type ReadonlyUser = Readonly; // 所有属性只读 +type UserKeys = keyof User; // 'id' | 'name' | 'email' +type NameOnly = Pick; // { name: string } +type WithoutId = Omit; // { name: string; email: string } +type UserRecord = Record; // { [key: string]: User } +``` + +--- + +## 高级类型 + +### 条件类型 + +```typescript +// ✅ 根据输入类型返回不同类型 +type IsString = T extends string ? true : false; + +type A = IsString; // true +type B = IsString; // false + +// ✅ 提取数组元素类型 +type ElementType = T extends (infer U)[] ? U : never; + +type Elem = ElementType; // string + +// ✅ 提取函数返回类型(内置 ReturnType) +type MyReturnType = T extends (...args: any[]) => infer R ? R : never; +``` + +### 映射类型 + +```typescript +// ✅ 转换对象类型的所有属性 +type Nullable = { + [K in keyof T]: T[K] | null; +}; + +interface User { + name: string; + age: number; +} + +type NullableUser = Nullable; +// { name: string | null; age: number | null } + +// ✅ 添加前缀 +type Getters = { + [K in keyof T as `get${Capitalize}`]: () => T[K]; +}; + +type UserGetters = Getters; +// { getName: () => string; getAge: () => number } +``` + +### 模板字面量类型 + +```typescript +// ✅ 类型安全的事件名称 +type EventName = 'click' | 'focus' | 'blur'; +type HandlerName = `on${Capitalize}`; +// 'onClick' | 'onFocus' | 'onBlur' + +// ✅ API 路由类型 +type ApiRoute = `/api/${string}`; +const route: ApiRoute = '/api/users'; // OK +const badRoute: ApiRoute = '/users'; // Error +``` + +### Discriminated Unions + +```typescript +// ✅ 使用判别属性实现类型安全 +type Result = + | { success: true; data: T } + | { success: false; error: E }; + +function handleResult(result: Result) { + if (result.success) { + console.log(result.data.name); // TypeScript 知道 data 存在 + } else { + console.log(result.error.message); // TypeScript 知道 error 存在 + } +} + +// ✅ Redux Action 模式 +type Action = + | { type: 'INCREMENT'; payload: number } + | { type: 'DECREMENT'; payload: number } + | { type: 'RESET' }; + +function reducer(state: number, action: Action): number { + switch (action.type) { + case 'INCREMENT': + return state + action.payload; // payload 类型已知 + case 'DECREMENT': + return state - action.payload; + case 'RESET': + return 0; // 这里没有 payload + } +} +``` + +--- + +## Strict 模式配置 + +### 推荐的 tsconfig.json + +```json +{ + "compilerOptions": { + // ✅ 必须开启的 strict 选项 + "strict": true, + "noImplicitAny": true, + "strictNullChecks": true, + "strictFunctionTypes": true, + "strictBindCallApply": true, + "strictPropertyInitialization": true, + "noImplicitThis": true, + "useUnknownInCatchVariables": true, + + // ✅ 额外推荐选项 + "noUncheckedIndexedAccess": true, + "noImplicitReturns": true, + "noFallthroughCasesInSwitch": true, + "exactOptionalPropertyTypes": true, + "noPropertyAccessFromIndexSignature": true + } +} +``` + +### noUncheckedIndexedAccess 的影响 + +```typescript +// tsconfig: "noUncheckedIndexedAccess": true + +const arr = [1, 2, 3]; +const first = arr[0]; // 类型是 number | undefined + +// ❌ 直接使用可能出错 +console.log(first.toFixed(2)); // Error: 可能是 undefined + +// ✅ 先检查 +if (first !== undefined) { + console.log(first.toFixed(2)); +} + +// ✅ 或使用非空断言(确定时) +console.log(arr[0]!.toFixed(2)); +``` + +--- + +## 异步处理 + +### Promise 错误处理 + +```typescript +// ❌ Not handling async errors +async function fetchUser(id: string) { + const response = await fetch(`/api/users/${id}`); + return response.json(); // 网络错误未处理 +} + +// ✅ Handle errors properly +async function fetchUser(id: string): Promise { + try { + const response = await fetch(`/api/users/${id}`); + if (!response.ok) { + throw new Error(`HTTP ${response.status}: ${response.statusText}`); + } + return await response.json(); + } catch (error) { + if (error instanceof Error) { + throw new Error(`Failed to fetch user: ${error.message}`); + } + throw error; + } +} +``` + +### Promise.all vs Promise.allSettled + +```typescript +// ❌ Promise.all 一个失败全部失败 +async function fetchAllUsers(ids: string[]) { + const users = await Promise.all(ids.map(fetchUser)); + return users; // 一个失败就全部失败 +} + +// ✅ Promise.allSettled 获取所有结果 +async function fetchAllUsers(ids: string[]) { + const results = await Promise.allSettled(ids.map(fetchUser)); + + const users: User[] = []; + const errors: Error[] = []; + + for (const result of results) { + if (result.status === 'fulfilled') { + users.push(result.value); + } else { + errors.push(result.reason); + } + } + + return { users, errors }; +} +``` + +### 竞态条件处理 + +```typescript +// ❌ 竞态条件:旧请求可能覆盖新请求 +function useSearch() { + const [query, setQuery] = useState(''); + const [results, setResults] = useState([]); + + useEffect(() => { + fetch(`/api/search?q=${query}`) + .then(r => r.json()) + .then(setResults); // 旧请求可能后返回! + }, [query]); +} + +// ✅ 使用 AbortController +function useSearch() { + const [query, setQuery] = useState(''); + const [results, setResults] = useState([]); + + useEffect(() => { + const controller = new AbortController(); + + fetch(`/api/search?q=${query}`, { signal: controller.signal }) + .then(r => r.json()) + .then(setResults) + .catch(e => { + if (e.name !== 'AbortError') throw e; + }); + + return () => controller.abort(); + }, [query]); +} +``` + +--- + +## 不可变性 + +### Readonly 与 ReadonlyArray + +```typescript +// ❌ 可变参数可能被意外修改 +function processUsers(users: User[]) { + users.sort((a, b) => a.name.localeCompare(b.name)); // 修改了原数组! + return users; +} + +// ✅ 使用 readonly 防止修改 +function processUsers(users: readonly User[]): User[] { + return [...users].sort((a, b) => a.name.localeCompare(b.name)); +} + +// ✅ 深度只读 +type DeepReadonly = { + readonly [K in keyof T]: T[K] extends object ? DeepReadonly : T[K]; +}; +``` + +### 不变式函数参数 + +```typescript +// ✅ 使用 as const 和 readonly 保护数据 +function createConfig(routes: T) { + return routes; +} + +const routes = createConfig(['home', 'about', 'contact'] as const); +// 类型是 readonly ['home', 'about', 'contact'] +``` + +--- + +## ESLint 规则 + +### 推荐的 @typescript-eslint 规则 + +```javascript +// .eslintrc.js +module.exports = { + extends: [ + 'eslint:recommended', + 'plugin:@typescript-eslint/recommended', + 'plugin:@typescript-eslint/recommended-requiring-type-checking', + 'plugin:@typescript-eslint/strict' + ], + rules: { + // ✅ 类型安全 + '@typescript-eslint/no-explicit-any': 'error', + '@typescript-eslint/no-unsafe-assignment': 'error', + '@typescript-eslint/no-unsafe-member-access': 'error', + '@typescript-eslint/no-unsafe-call': 'error', + '@typescript-eslint/no-unsafe-return': 'error', + + // ✅ 最佳实践 + '@typescript-eslint/explicit-function-return-type': 'warn', + '@typescript-eslint/no-floating-promises': 'error', + '@typescript-eslint/await-thenable': 'error', + '@typescript-eslint/no-misused-promises': 'error', + + // ✅ 代码风格 + '@typescript-eslint/consistent-type-imports': 'error', + '@typescript-eslint/prefer-nullish-coalescing': 'error', + '@typescript-eslint/prefer-optional-chain': 'error' + } +}; +``` + +### 常见 ESLint 错误修复 + +```typescript +// ❌ no-floating-promises: Promise 必须被处理 +async function save() { ... } +save(); // Error: 未处理的 Promise + +// ✅ 显式处理 +await save(); +// 或 +save().catch(console.error); +// 或明确忽略 +void save(); + +// ❌ no-misused-promises: 不能在非 async 位置使用 Promise +const items = [1, 2, 3]; +items.forEach(async (item) => { // Error! + await processItem(item); +}); + +// ✅ 使用 for...of +for (const item of items) { + await processItem(item); +} +// 或 Promise.all +await Promise.all(items.map(processItem)); +``` + +--- + +## Review Checklist + +### 类型系统 +- [ ] 没有使用 `any`(使用 `unknown` + 类型守卫代替) +- [ ] 接口和类型定义完整且有意义的命名 +- [ ] 使用泛型提高代码复用性 +- [ ] 联合类型有正确的类型收窄 +- [ ] 善用工具类型(Partial、Pick、Omit 等) + +### 泛型 +- [ ] 泛型有适当的约束(extends) +- [ ] 泛型参数有合理的默认值 +- [ ] 避免过度泛型化(KISS 原则) + +### Strict 模式 +- [ ] tsconfig.json 启用了 strict: true +- [ ] 启用了 noUncheckedIndexedAccess +- [ ] 没有使用 @ts-ignore(改用 @ts-expect-error) + +### 异步代码 +- [ ] async 函数有错误处理 +- [ ] Promise rejection 被正确处理 +- [ ] 没有 floating promises(未处理的 Promise) +- [ ] 并发请求使用 Promise.all 或 Promise.allSettled +- [ ] 竞态条件使用 AbortController 处理 + +### 不可变性 +- [ ] 不直接修改函数参数 +- [ ] 使用 spread 操作符创建新对象/数组 +- [ ] 考虑使用 readonly 修饰符 + +### ESLint +- [ ] 使用 @typescript-eslint/recommended +- [ ] 没有 ESLint 警告或错误 +- [ ] 使用 consistent-type-imports diff --git a/.github/skills/code-review-skill-main/reference/vue.md b/.github/skills/code-review-skill-main/reference/vue.md new file mode 100644 index 0000000000..cbd9165d32 --- /dev/null +++ b/.github/skills/code-review-skill-main/reference/vue.md @@ -0,0 +1,924 @@ +# Vue 3 Code Review Guide + +> Vue 3 Composition API 代码审查指南,覆盖响应性系统、Props/Emits、Watchers、Composables、Vue 3.5 新特性等核心主题。 + +## 目录 + +- [响应性系统](#响应性系统) +- [Props & Emits](#props--emits) +- [Vue 3.5 新特性](#vue-35-新特性) +- [Watchers](#watchers) +- [模板最佳实践](#模板最佳实践) +- [Composables](#composables) +- [性能优化](#性能优化) +- [Review Checklist](#review-checklist) + +--- + +## 响应性系统 + +### ref vs reactive 选择 + +```vue + + + + + + + + +``` + +### 解构 reactive 对象 + +```vue + + + + + +``` + +### computed 副作用 + +```vue + + + + + +``` + +### shallowRef 优化 + +```vue + + + + + +``` + +--- + +## Props & Emits + +### 直接修改 props + +```vue + + + + + +``` + +### defineProps 类型声明 + +```vue + + + + + +``` + +### defineEmits 类型安全 + +```vue + + + + + +``` + +--- + +## Vue 3.5 新特性 + +### Reactive Props Destructure (3.5+) + +```vue + + + + + + + + +``` + +### defineModel (3.4+) + +```vue + + + + + + + + + + + + + + + + +``` + +### useTemplateRef (3.5+) + +```vue + + + + + + + + + + +``` + +### useId (3.5+) + +```vue + + + + + + + + + + +``` + +### onWatcherCleanup (3.5+) + +```vue + + + + + +``` + +### Deferred Teleport (3.5+) + +```vue + + + + + +``` + +--- + +## Watchers + +### watch vs watchEffect + +```vue + +``` + +### watch 清理函数 + +```vue + + + + + +``` + +### watch 选项 + +```vue + +``` + +### 监听多个源 + +```vue + +``` + +--- + +## 模板最佳实践 + +### v-for 的 key + +```vue + + + + + + + + +``` + +### v-if 和 v-for 优先级 + +```vue + + + + + + + + + +``` + +### 事件处理 + +```vue + + + + + + + + + +``` + +--- + +## Composables + +### Composable 设计原则 + +```typescript +// ✅ 好的 composable 设计 +export function useCounter(initialValue = 0) { + const count = ref(initialValue) + + const increment = () => count.value++ + const decrement = () => count.value-- + const reset = () => count.value = initialValue + + // 返回响应式引用和方法 + return { + count: readonly(count), // 只读防止外部修改 + increment, + decrement, + reset + } +} + +// ❌ 不要返回 .value +export function useBadCounter() { + const count = ref(0) + return { + count: count.value // ❌ 丢失响应性! + } +} +``` + +### Props 传递给 composable + +```vue + + + + + +``` + +### 异步 Composable + +```typescript +// ✅ 异步 composable 模式 +export function useFetch(url: MaybeRefOrGetter) { + const data = ref(null) + const error = ref(null) + const loading = ref(false) + + const execute = async () => { + loading.value = true + error.value = null + + try { + const response = await fetch(toValue(url)) + if (!response.ok) { + throw new Error(`HTTP ${response.status}`) + } + data.value = await response.json() + } catch (e) { + error.value = e as Error + } finally { + loading.value = false + } + } + + // 响应式 URL 时自动重新获取 + watchEffect(() => { + toValue(url) // 追踪依赖 + execute() + }) + + return { + data: readonly(data), + error: readonly(error), + loading: readonly(loading), + refetch: execute + } +} + +// 使用 +const { data, loading, error, refetch } = useFetch('/api/users') +``` + +### 生命周期与清理 + +```typescript +// ✅ Composable 中正确处理生命周期 +export function useEventListener( + target: MaybeRefOrGetter, + event: string, + handler: EventListener +) { + // 组件挂载后添加 + onMounted(() => { + toValue(target).addEventListener(event, handler) + }) + + // 组件卸载时移除 + onUnmounted(() => { + toValue(target).removeEventListener(event, handler) + }) +} + +// ✅ 使用 effectScope 管理副作用 +export function useFeature() { + const scope = effectScope() + + scope.run(() => { + // 所有响应式效果都在这个 scope 内 + const state = ref(0) + watch(state, () => { /* ... */ }) + watchEffect(() => { /* ... */ }) + }) + + // 清理所有效果 + onUnmounted(() => scope.stop()) + + return { /* ... */ } +} +``` + +--- + +## 性能优化 + +### v-memo + +```vue + + + + + +``` + +### defineAsyncComponent + +```vue + +``` + +### KeepAlive + +```vue + + + +``` + +### 虚拟列表 + +```vue + + + +``` + +--- + +## Review Checklist + +### 响应性系统 +- [ ] ref 用于基本类型,reactive 用于对象(或统一用 ref) +- [ ] 没有解构 reactive 对象(或使用了 toRefs) +- [ ] props 传递给 composable 时保持了响应性 +- [ ] shallowRef/shallowReactive 用于大型对象优化 +- [ ] computed 中没有副作用 + +### Props & Emits +- [ ] defineProps 使用 TypeScript 类型声明 +- [ ] 复杂默认值使用 withDefaults + 工厂函数 +- [ ] defineEmits 有完整的类型定义 +- [ ] 没有直接修改 props +- [ ] 考虑使用 defineModel 简化 v-model(Vue 3.4+) + +### Vue 3.5 新特性(如适用) +- [ ] 使用 Reactive Props Destructure 简化 props 访问 +- [ ] 使用 useTemplateRef 替代 ref 属性 +- [ ] 表单使用 useId 生成 SSR 安全的 ID +- [ ] 使用 onWatcherCleanup 处理复杂清理逻辑 + +### Watchers +- [ ] watch/watchEffect 有适当的清理函数 +- [ ] 异步 watch 处理了竞态条件 +- [ ] flush: 'post' 用于 DOM 操作的 watcher +- [ ] 避免过度使用 watcher(优先用 computed) +- [ ] 考虑 once: true 用于一次性监听 + +### 模板 +- [ ] v-for 使用唯一且稳定的 key +- [ ] v-if 和 v-for 没有在同一元素上 +- [ ] 事件处理使用方法而非内联复杂逻辑 +- [ ] 大型列表使用虚拟滚动 + +### Composables +- [ ] 相关逻辑提取到 composables +- [ ] composables 返回响应式引用(不是 .value) +- [ ] 纯函数不要包装成 composable +- [ ] 副作用在组件卸载时清理 +- [ ] 使用 effectScope 管理复杂副作用 + +### 性能 +- [ ] 大型组件拆分为小组件 +- [ ] 使用 defineAsyncComponent 懒加载 +- [ ] 避免不必要的响应式转换 +- [ ] v-memo 用于昂贵的列表渲染 +- [ ] KeepAlive 用于缓存动态组件 diff --git a/.github/skills/code-review-skill-main/scripts/pr-analyzer.py b/.github/skills/code-review-skill-main/scripts/pr-analyzer.py new file mode 100644 index 0000000000..7b594e7df0 --- /dev/null +++ b/.github/skills/code-review-skill-main/scripts/pr-analyzer.py @@ -0,0 +1,366 @@ +#!/usr/bin/env python3 +""" +PR Analyzer - Analyze PR complexity and suggest review approach. + +Usage: + python pr-analyzer.py [--diff-file FILE] [--stats] + + Or pipe diff directly: + git diff main...HEAD | python pr-analyzer.py +""" + +import sys +import re +import argparse +from collections import defaultdict +from dataclasses import dataclass +from typing import List, Dict, Optional + + +@dataclass +class FileStats: + """Statistics for a single file.""" + filename: str + additions: int = 0 + deletions: int = 0 + is_test: bool = False + is_config: bool = False + language: str = "unknown" + + +@dataclass +class PRAnalysis: + """Complete PR analysis results.""" + total_files: int + total_additions: int + total_deletions: int + files: List[FileStats] + complexity_score: float + size_category: str + estimated_review_time: int + risk_factors: List[str] + suggestions: List[str] + + +def detect_language(filename: str) -> str: + """Detect programming language from filename.""" + extensions = { + '.py': 'Python', + '.js': 'JavaScript', + '.ts': 'TypeScript', + '.tsx': 'TypeScript/React', + '.jsx': 'JavaScript/React', + '.rs': 'Rust', + '.go': 'Go', + '.c': 'C', + '.h': 'C/C++', + '.cpp': 'C++', + '.hpp': 'C++', + '.cc': 'C++', + '.cxx': 'C++', + '.hh': 'C++', + '.hxx': 'C++', + '.java': 'Java', + '.rb': 'Ruby', + '.sql': 'SQL', + '.md': 'Markdown', + '.json': 'JSON', + '.yaml': 'YAML', + '.yml': 'YAML', + '.toml': 'TOML', + '.css': 'CSS', + '.scss': 'SCSS', + '.html': 'HTML', + } + for ext, lang in extensions.items(): + if filename.endswith(ext): + return lang + return 'unknown' + + +def is_test_file(filename: str) -> bool: + """Check if file is a test file.""" + test_patterns = [ + r'test_.*\.py$', + r'.*_test\.py$', + r'.*\.test\.(js|ts|tsx)$', + r'.*\.spec\.(js|ts|tsx)$', + r'tests?/', + r'__tests__/', + ] + return any(re.search(p, filename) for p in test_patterns) + + +def is_config_file(filename: str) -> bool: + """Check if file is a configuration file.""" + config_patterns = [ + r'\.env', + r'config\.', + r'\.json$', + r'\.yaml$', + r'\.yml$', + r'\.toml$', + r'Cargo\.toml$', + r'package\.json$', + r'tsconfig\.json$', + ] + return any(re.search(p, filename) for p in config_patterns) + + +def parse_diff(diff_content: str) -> List[FileStats]: + """Parse git diff output and extract file statistics.""" + files = [] + current_file = None + + for line in diff_content.split('\n'): + # New file header + if line.startswith('diff --git'): + if current_file: + files.append(current_file) + # Extract filename from "diff --git a/path b/path" + match = re.search(r'b/(.+)$', line) + if match: + filename = match.group(1) + current_file = FileStats( + filename=filename, + language=detect_language(filename), + is_test=is_test_file(filename), + is_config=is_config_file(filename), + ) + elif current_file: + if line.startswith('+') and not line.startswith('+++'): + current_file.additions += 1 + elif line.startswith('-') and not line.startswith('---'): + current_file.deletions += 1 + + if current_file: + files.append(current_file) + + return files + + +def calculate_complexity(files: List[FileStats]) -> float: + """Calculate complexity score (0-1 scale).""" + if not files: + return 0.0 + + total_changes = sum(f.additions + f.deletions for f in files) + + # Base complexity from size + size_factor = min(total_changes / 1000, 1.0) + + # Factor for number of files + file_factor = min(len(files) / 20, 1.0) + + # Factor for non-test code ratio + test_lines = sum(f.additions + f.deletions for f in files if f.is_test) + non_test_ratio = 1 - (test_lines / max(total_changes, 1)) + + # Factor for language diversity + languages = set(f.language for f in files if f.language != 'unknown') + lang_factor = min(len(languages) / 5, 1.0) + + complexity = ( + size_factor * 0.4 + + file_factor * 0.2 + + non_test_ratio * 0.2 + + lang_factor * 0.2 + ) + + return round(complexity, 2) + + +def categorize_size(total_changes: int) -> str: + """Categorize PR size.""" + if total_changes < 50: + return "XS (Extra Small)" + elif total_changes < 200: + return "S (Small)" + elif total_changes < 400: + return "M (Medium)" + elif total_changes < 800: + return "L (Large)" + else: + return "XL (Extra Large) - Consider splitting" + + +def estimate_review_time(files: List[FileStats], complexity: float) -> int: + """Estimate review time in minutes.""" + total_changes = sum(f.additions + f.deletions for f in files) + + # Base time: ~1 minute per 20 lines + base_time = total_changes / 20 + + # Adjust for complexity + adjusted_time = base_time * (1 + complexity) + + # Minimum 5 minutes, maximum 120 minutes + return max(5, min(120, int(adjusted_time))) + + +def identify_risk_factors(files: List[FileStats]) -> List[str]: + """Identify potential risk factors in the PR.""" + risks = [] + + total_changes = sum(f.additions + f.deletions for f in files) + test_changes = sum(f.additions + f.deletions for f in files if f.is_test) + + # Large PR + if total_changes > 400: + risks.append("Large PR (>400 lines) - harder to review thoroughly") + + # No tests + if test_changes == 0 and total_changes > 50: + risks.append("No test changes - verify test coverage") + + # Low test ratio + if total_changes > 100 and test_changes / max(total_changes, 1) < 0.2: + risks.append("Low test ratio (<20%) - consider adding more tests") + + # Security-sensitive files + security_patterns = ['.env', 'auth', 'security', 'password', 'token', 'secret'] + for f in files: + if any(p in f.filename.lower() for p in security_patterns): + risks.append(f"Security-sensitive file: {f.filename}") + break + + # Database changes + for f in files: + if 'migration' in f.filename.lower() or f.language == 'SQL': + risks.append("Database changes detected - review carefully") + break + + # Config changes + config_files = [f for f in files if f.is_config] + if config_files: + risks.append(f"Configuration changes in {len(config_files)} file(s)") + + return risks + + +def generate_suggestions(files: List[FileStats], complexity: float, risks: List[str]) -> List[str]: + """Generate review suggestions.""" + suggestions = [] + + total_changes = sum(f.additions + f.deletions for f in files) + + if total_changes > 800: + suggestions.append("Consider splitting this PR into smaller, focused changes") + + if complexity > 0.7: + suggestions.append("High complexity - allocate extra review time") + suggestions.append("Consider pair reviewing for critical sections") + + if "No test changes" in str(risks): + suggestions.append("Request test additions before approval") + + # Language-specific suggestions + languages = set(f.language for f in files) + if 'TypeScript' in languages or 'TypeScript/React' in languages: + suggestions.append("Check for proper type usage (avoid 'any')") + if 'Rust' in languages: + suggestions.append("Check for unwrap() usage and error handling") + if 'C' in languages or 'C++' in languages or 'C/C++' in languages: + suggestions.append("Check for memory safety, bounds checks, and UB risks") + if 'SQL' in languages: + suggestions.append("Review for SQL injection and query performance") + + if not suggestions: + suggestions.append("Standard review process should suffice") + + return suggestions + + +def analyze_pr(diff_content: str) -> PRAnalysis: + """Perform complete PR analysis.""" + files = parse_diff(diff_content) + + total_additions = sum(f.additions for f in files) + total_deletions = sum(f.deletions for f in files) + total_changes = total_additions + total_deletions + + complexity = calculate_complexity(files) + risks = identify_risk_factors(files) + suggestions = generate_suggestions(files, complexity, risks) + + return PRAnalysis( + total_files=len(files), + total_additions=total_additions, + total_deletions=total_deletions, + files=files, + complexity_score=complexity, + size_category=categorize_size(total_changes), + estimated_review_time=estimate_review_time(files, complexity), + risk_factors=risks, + suggestions=suggestions, + ) + + +def print_analysis(analysis: PRAnalysis, show_files: bool = False): + """Print analysis results.""" + print("\n" + "=" * 60) + print("PR ANALYSIS REPORT") + print("=" * 60) + + print(f"\n📊 SUMMARY") + print(f" Files changed: {analysis.total_files}") + print(f" Additions: +{analysis.total_additions}") + print(f" Deletions: -{analysis.total_deletions}") + print(f" Total changes: {analysis.total_additions + analysis.total_deletions}") + + print(f"\n📏 SIZE: {analysis.size_category}") + print(f" Complexity score: {analysis.complexity_score}/1.0") + print(f" Estimated review time: ~{analysis.estimated_review_time} minutes") + + if analysis.risk_factors: + print(f"\n⚠️ RISK FACTORS:") + for risk in analysis.risk_factors: + print(f" • {risk}") + + print(f"\n💡 SUGGESTIONS:") + for suggestion in analysis.suggestions: + print(f" • {suggestion}") + + if show_files: + print(f"\n📁 FILES:") + # Group by language + by_lang: Dict[str, List[FileStats]] = defaultdict(list) + for f in analysis.files: + by_lang[f.language].append(f) + + for lang, lang_files in sorted(by_lang.items()): + print(f"\n [{lang}]") + for f in lang_files: + prefix = "🧪" if f.is_test else "⚙️" if f.is_config else "📄" + print(f" {prefix} {f.filename} (+{f.additions}/-{f.deletions})") + + print("\n" + "=" * 60) + + +def main(): + parser = argparse.ArgumentParser(description='Analyze PR complexity') + parser.add_argument('--diff-file', '-f', help='Path to diff file') + parser.add_argument('--stats', '-s', action='store_true', help='Show file details') + args = parser.parse_args() + + # Read diff from file or stdin + if args.diff_file: + with open(args.diff_file, 'r') as f: + diff_content = f.read() + elif not sys.stdin.isatty(): + diff_content = sys.stdin.read() + else: + print("Usage: git diff main...HEAD | python pr-analyzer.py") + print(" python pr-analyzer.py -f diff.txt") + sys.exit(1) + + if not diff_content.strip(): + print("No diff content provided") + sys.exit(1) + + analysis = analyze_pr(diff_content) + print_analysis(analysis, show_files=args.stats) + + +if __name__ == '__main__': + main() diff --git a/.github/skills/openspec-apply-change/SKILL.md b/.github/skills/openspec-apply-change/SKILL.md index 4d9b8d127c..d474dc1355 100644 --- a/.github/skills/openspec-apply-change/SKILL.md +++ b/.github/skills/openspec-apply-change/SKILL.md @@ -6,7 +6,7 @@ compatibility: Requires openspec CLI. metadata: author: openspec version: "1.0" - generatedBy: "1.1.0" + generatedBy: "1.2.0" --- Implement tasks from an OpenSpec change. diff --git a/.github/skills/openspec-archive-change/SKILL.md b/.github/skills/openspec-archive-change/SKILL.md index d17be3b1b0..9b1f851aaa 100644 --- a/.github/skills/openspec-archive-change/SKILL.md +++ b/.github/skills/openspec-archive-change/SKILL.md @@ -6,7 +6,7 @@ compatibility: Requires openspec CLI. metadata: author: openspec version: "1.0" - generatedBy: "1.1.0" + generatedBy: "1.2.0" --- Archive a completed change in the experimental workflow. @@ -63,7 +63,7 @@ Archive a completed change in the experimental workflow. - If changes needed: "Sync now (recommended)", "Archive without syncing" - If already synced: "Archive now", "Sync anyway", "Cancel" - If user chooses sync, execute /opsx:sync logic (use the openspec-sync-specs skill). Proceed to archive regardless of choice. + If user chooses sync, use Task tool (subagent_type: "general-purpose", prompt: "Use Skill tool to invoke openspec-sync-specs for change ''. Delta spec analysis: "). Proceed to archive regardless of choice. 5. **Perform the archive** diff --git a/.github/skills/openspec-bulk-archive-change/SKILL.md b/.github/skills/openspec-bulk-archive-change/SKILL.md index 781d9770b6..d2f199af97 100644 --- a/.github/skills/openspec-bulk-archive-change/SKILL.md +++ b/.github/skills/openspec-bulk-archive-change/SKILL.md @@ -6,7 +6,7 @@ compatibility: Requires openspec CLI. metadata: author: openspec version: "1.0" - generatedBy: "1.1.0" + generatedBy: "1.2.0" --- Archive multiple completed changes in a single operation. @@ -229,7 +229,7 @@ Failed K changes: ``` ## No Changes to Archive -No active changes found. Use `/opsx:new` to create a new change. +No active changes found. Create a new change to get started. ``` **Guardrails** diff --git a/.github/skills/openspec-continue-change/SKILL.md b/.github/skills/openspec-continue-change/SKILL.md index bf63f20b2e..a2856f0496 100644 --- a/.github/skills/openspec-continue-change/SKILL.md +++ b/.github/skills/openspec-continue-change/SKILL.md @@ -6,7 +6,7 @@ compatibility: Requires openspec CLI. metadata: author: openspec version: "1.0" - generatedBy: "1.1.0" + generatedBy: "1.2.0" --- Continue working on a change by creating the next artifact. diff --git a/.github/skills/openspec-explore/SKILL.md b/.github/skills/openspec-explore/SKILL.md index 2f63fb9483..ffa10cad72 100644 --- a/.github/skills/openspec-explore/SKILL.md +++ b/.github/skills/openspec-explore/SKILL.md @@ -6,12 +6,12 @@ compatibility: Requires openspec CLI. metadata: author: openspec version: "1.0" - generatedBy: "1.1.0" + generatedBy: "1.2.0" --- Enter explore mode. Think deeply. Visualize freely. Follow the conversation wherever it goes. -**IMPORTANT: Explore mode is for thinking, not implementing.** You may read files, search code, and investigate the codebase, but you must NEVER write code or implement features. If the user asks you to implement something, remind them to exit explore mode first (e.g., start a change with `/opsx:new` or `/opsx:ff`). You MAY create OpenSpec artifacts (proposals, designs, specs) if the user asks—that's capturing thinking, not implementing. +**IMPORTANT: Explore mode is for thinking, not implementing.** You may read files, search code, and investigate the codebase, but you must NEVER write code or implement features. If the user asks you to implement something, remind them to exit explore mode first and create a change proposal. You MAY create OpenSpec artifacts (proposals, designs, specs) if the user asks—that's capturing thinking, not implementing. **This is a stance, not a workflow.** There are no fixed steps, no required sequence, no mandatory outputs. You're a thinking partner helping the user explore. @@ -95,8 +95,7 @@ This tells you: Think freely. When insights crystallize, you might offer: -- "This feels solid enough to start a change. Want me to create one?" - → Can transition to `/opsx:new` or `/opsx:ff` +- "This feels solid enough to start a change. Want me to create a proposal?" - Or keep exploring - no pressure to formalize ### When a change exists @@ -252,7 +251,7 @@ You: That changes everything. There's no required ending. Discovery might: -- **Flow into action**: "Ready to start? /opsx:new or /opsx:ff" +- **Flow into a proposal**: "Ready to start? I can create a change proposal." - **Result in artifact updates**: "Updated design.md with these decisions" - **Just provide clarity**: User has what they need, moves on - **Continue later**: "We can pick this up anytime" @@ -269,8 +268,7 @@ When it feels like things are crystallizing, you might summarize: **Open questions**: [if any remain] **Next steps** (if ready): -- Create a change: /opsx:new -- Fast-forward to tasks: /opsx:ff +- Create a change proposal - Keep exploring: just keep talking ``` diff --git a/.github/skills/openspec-ff-change/SKILL.md b/.github/skills/openspec-ff-change/SKILL.md index 8b2dbbe48f..d5f12043c4 100644 --- a/.github/skills/openspec-ff-change/SKILL.md +++ b/.github/skills/openspec-ff-change/SKILL.md @@ -6,7 +6,7 @@ compatibility: Requires openspec CLI. metadata: author: openspec version: "1.0" - generatedBy: "1.1.0" + generatedBy: "1.2.0" --- Fast-forward through artifact creation - generate everything needed to start implementation in one go. diff --git a/.github/skills/openspec-new-change/SKILL.md b/.github/skills/openspec-new-change/SKILL.md index 195a6cdcf5..607391aac8 100644 --- a/.github/skills/openspec-new-change/SKILL.md +++ b/.github/skills/openspec-new-change/SKILL.md @@ -6,7 +6,7 @@ compatibility: Requires openspec CLI. metadata: author: openspec version: "1.0" - generatedBy: "1.1.0" + generatedBy: "1.2.0" --- Start a new change using the experimental artifact-driven approach. diff --git a/.github/skills/openspec-onboard/SKILL.md b/.github/skills/openspec-onboard/SKILL.md index 0f018dbdfd..9076b5d84d 100644 --- a/.github/skills/openspec-onboard/SKILL.md +++ b/.github/skills/openspec-onboard/SKILL.md @@ -6,7 +6,7 @@ compatibility: Requires openspec CLI. metadata: author: openspec version: "1.0" - generatedBy: "1.1.0" + generatedBy: "1.2.0" --- Guide the user through their first complete OpenSpec workflow cycle. This is a teaching experience—you'll do real work in their codebase while explaining each step. @@ -15,16 +15,19 @@ Guide the user through their first complete OpenSpec workflow cycle. This is a t ## Preflight -Before starting, check if OpenSpec is initialized: +Before starting, check if the OpenSpec CLI is installed: ```bash -openspec status --json 2>&1 || echo "NOT_INITIALIZED" +# Unix/macOS +openspec --version 2>&1 || echo "CLI_NOT_INSTALLED" +# Windows (PowerShell) +# if (Get-Command openspec -ErrorAction SilentlyContinue) { openspec --version } else { echo "CLI_NOT_INSTALLED" } ``` -**If not initialized:** -> OpenSpec isn't set up in this project yet. Run `openspec init` first, then come back to `/opsx:onboard`. +**If CLI not installed:** +> OpenSpec CLI is not installed. Install it first, then come back to `/opsx:onboard`. -Stop here if not initialized. +Stop here if not installed. --- @@ -67,7 +70,10 @@ Scan the codebase for small improvement opportunities. Look for: Also check recent git activity: ```bash +# Unix/macOS git log --oneline -10 2>/dev/null || echo "No git history" +# Windows (PowerShell) +# git log --oneline -10 2>$null; if ($LASTEXITCODE -ne 0) { echo "No git history" } ``` ### Present Suggestions @@ -262,7 +268,10 @@ For a small task like this, we might only need one spec file. **DO:** Create the spec file: ```bash +# Unix/macOS mkdir -p openspec/changes//specs/ +# Windows (PowerShell) +# New-Item -ItemType Directory -Force -Path "openspec/changes//specs/" ``` Draft the spec content: @@ -457,21 +466,29 @@ This same rhythm works for any size change—a small fix or a major feature. ## Command Reference +**Core workflow:** + | Command | What it does | |---------|--------------| +| `/opsx:propose` | Create a change and generate all artifacts | | `/opsx:explore` | Think through problems before/during work | -| `/opsx:new` | Start a new change, step through artifacts | -| `/opsx:ff` | Fast-forward: create all artifacts at once | -| `/opsx:continue` | Continue working on an existing change | | `/opsx:apply` | Implement tasks from a change | -| `/opsx:verify` | Verify implementation matches artifacts | | `/opsx:archive` | Archive a completed change | +**Additional commands:** + +| Command | What it does | +|---------|--------------| +| `/opsx:new` | Start a new change, step through artifacts one at a time | +| `/opsx:continue` | Continue working on an existing change | +| `/opsx:ff` | Fast-forward: create all artifacts at once | +| `/opsx:verify` | Verify implementation matches artifacts | + --- ## What's Next? -Try `/opsx:new` or `/opsx:ff` on something you actually want to build. You've got the rhythm now! +Try `/opsx:propose` on something you actually want to build. You've got the rhythm now! ``` --- @@ -501,17 +518,25 @@ If the user says they just want to see the commands or skip the tutorial: ``` ## OpenSpec Quick Reference +**Core workflow:** + | Command | What it does | |---------|--------------| +| `/opsx:propose ` | Create a change and generate all artifacts | | `/opsx:explore` | Think through problems (no code changes) | +| `/opsx:apply ` | Implement tasks | +| `/opsx:archive ` | Archive when done | + +**Additional commands:** + +| Command | What it does | +|---------|--------------| | `/opsx:new ` | Start a new change, step by step | -| `/opsx:ff ` | Fast-forward: all artifacts at once | | `/opsx:continue ` | Continue an existing change | -| `/opsx:apply ` | Implement tasks | +| `/opsx:ff ` | Fast-forward: all artifacts at once | | `/opsx:verify ` | Verify implementation | -| `/opsx:archive ` | Archive when done | -Try `/opsx:new` to start your first change, or `/opsx:ff` if you want to move fast. +Try `/opsx:propose` to start your first change. ``` Exit gracefully. diff --git a/.github/skills/openspec-sync-specs/SKILL.md b/.github/skills/openspec-sync-specs/SKILL.md index 7e8dff16e8..353bfac96b 100644 --- a/.github/skills/openspec-sync-specs/SKILL.md +++ b/.github/skills/openspec-sync-specs/SKILL.md @@ -6,7 +6,7 @@ compatibility: Requires openspec CLI. metadata: author: openspec version: "1.0" - generatedBy: "1.1.0" + generatedBy: "1.2.0" --- Sync delta specs from a change to main specs. diff --git a/.github/skills/openspec-verify-change/SKILL.md b/.github/skills/openspec-verify-change/SKILL.md index 77a0c71217..744a08839d 100644 --- a/.github/skills/openspec-verify-change/SKILL.md +++ b/.github/skills/openspec-verify-change/SKILL.md @@ -6,7 +6,7 @@ compatibility: Requires openspec CLI. metadata: author: openspec version: "1.0" - generatedBy: "1.1.0" + generatedBy: "1.2.0" --- Verify that an implementation matches the change artifacts (specs, tasks, design). diff --git a/.github/workflows/patch-installer-cd.yml b/.github/workflows/patch-installer-cd.yml index 1f5ab04e5b..e498939fb7 100644 --- a/.github/workflows/patch-installer-cd.yml +++ b/.github/workflows/patch-installer-cd.yml @@ -39,11 +39,11 @@ on: # on Jenkins-built bases. base_release: description: 'The github release for the base build artifacts (separate only for bootstrapping; should be removed after 9.3 is the stable)' - default: 'build-1405' # When updating this, update base_build_number and their fallbacks below, too. + default: 'build-1392' # When updating this, update base_build_number and their fallbacks below, too. base_build_number: description: 'The base build number' required: false - default: '1405' + default: '1392' make_release: description: 'Should the release be pushed to s3 - use false for test builds' required: false @@ -62,7 +62,7 @@ jobs: LcmRootDir: ${{ github.workspace }}/Localizations/LCM FILESTOSIGNLATER: ./signExternally GH_TOKEN: ${{ github.token }} - BASE_BUILD_NUMBER: ${{ inputs.base_build_number || '1405' }} + BASE_BUILD_NUMBER: ${{ inputs.base_build_number || '1392' }} name: Build Debug and run Tests runs-on: windows-latest steps: @@ -170,7 +170,7 @@ jobs: - name: Import Base Build Artifacts shell: pwsh run: | - $release = "${{ inputs.base_release || 'build-1405' }}" + $release = "${{ inputs.base_release || 'build-1392' }}" $repo = "${{ github.repository }}" Write-Host "Downloading artifacts for release $release from $repo" diff --git a/.gitignore b/.gitignore index 5f9a5c9f92..011e033db5 100644 --- a/.gitignore +++ b/.gitignore @@ -100,6 +100,8 @@ _UpgradeReport_Files/ /Release/ Output/ Output +Output/RenderBenchmarks/ +Output/RenderBenchmarks/** Output_i686/ Output_x86_64/ __pycache__/ @@ -183,6 +185,7 @@ CrashLog.txt # VSTest Artifacts TestResults/ *.trx +TestResult.xml # WPF markup compilation temp projects *_wpftmp.csproj @@ -198,3 +201,8 @@ FLExInstaller/wix6/cabcache/* # Claude Code worktrees .claude/worktrees/* + +# Verify snapshot testing - received files are transient +*.received.png +*.diff.png +DataTreeTimingBaselines.json \ No newline at end of file diff --git a/.serena/project.yml b/.serena/project.yml index 63d7787207..0b494b7d1b 100644 --- a/.serena/project.yml +++ b/.serena/project.yml @@ -136,3 +136,12 @@ symbol_info_budget: # Note: the backend is fixed at startup. If a project with a different backend # is activated post-init, an error will be returned. language_backend: + +# list of regex patterns which, when matched, mark a memory entry as read‑only. +# Extends the list from the global configuration, merging the two lists. +read_only_memory_patterns: [] + +# line ending convention to use when writing source files. +# Possible values: unset (use global setting), "lf", "crlf", or "native" (platform default) +# This does not affect Serena's own files (e.g. memories and configuration files), which always use native line endings. +line_ending: diff --git a/.vscode/settings.json b/.vscode/settings.json index 91244032f3..8db5c83c67 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -96,11 +96,7 @@ // Tasks not listed require manual confirmation. // ============================================================================ "chat.tools.tasks.allowedTasks": [ - // Build tasks (safe - only produce artifacts) - "Build", - "Build Release", - - // Test tasks (safe - no external changes) + // Test tasks remain auto-approved so Linux hosts surface the not-supported message. "Test", "Test (no build)", @@ -126,6 +122,9 @@ ] // ============================================================================ // TASKS REQUIRING MANUAL APPROVAL (not in allowedTasks): + // - Build (Windows only) + // - Build Release (Windows only) + // - Build Tests (Windows only) // - Test (with filter) (has user input prompt) // - Test (specific project) (has user input prompt) // - Agent: Propose updates (modifies files) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index e83806466c..f164d73630 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -85,15 +85,29 @@ } ], "tasks": [ + { + "label": "Test: RenderBaselineTests", + "type": "shell", + "command": ".\\test.ps1 -TestProject \"Src/Common/RootSite/RootSiteTests/RootSiteTests.csproj\" -TestFilter \"FullyQualifiedName~RenderBaselineTests\"", + "options": { + "shell": { + "executable": "powershell.exe", + "args": ["-NoProfile", "-ExecutionPolicy", "Bypass", "-Command"] + } + }, + "problemMatcher": [], + "group": "test", + "presentation": { + "reveal": "always", + "panel": "shared" + } + }, // ==================== Setup Tasks ==================== { "label": "Setup: Colorize Worktree", "type": "shell", "command": "./scripts/Setup-WorktreeColor.ps1 -VSCodeWorkspaceFile \"${workspaceFile}\"", - "detail": "Sets a unique window color from a deterministic palette slot", - "runOptions": { - "runOn": "folderOpen" - }, + "detail": "Windows only: sets a unique window color from a deterministic palette slot", "options": { "shell": { "executable": "powershell.exe", @@ -216,7 +230,7 @@ "kind": "build", "isDefault": true }, - "detail": "Build FieldWorks (auto-detects worktree)", + "detail": "Windows only: build FieldWorks (auto-detects worktree)", "options": { "shell": { "executable": "powershell.exe", @@ -230,7 +244,21 @@ "type": "shell", "command": "./build.ps1 -Configuration Release", "group": "build", - "detail": "Build FieldWorks in Release configuration", + "detail": "Windows only: build FieldWorks in Release configuration", + "options": { + "shell": { + "executable": "powershell.exe", + "args": ["-NoProfile", "-ExecutionPolicy", "Bypass", "-Command"] + } + }, + "problemMatcher": "$msCompile" + }, + { + "label": "Build Tests", + "type": "shell", + "command": "./build.ps1 -BuildTests", + "group": "build", + "detail": "Windows only: build FieldWorks including test projects (required for ReSharper Test Explorer)", "options": { "shell": { "executable": "powershell.exe", @@ -249,7 +277,7 @@ "kind": "test", "isDefault": true }, - "detail": "Run all tests (auto-detects worktree). See specs/007-test-modernization-vstest/IGNORED_TESTS.md for the tracked skip/ignore inventory.", + "detail": "Windows only execution. On Linux/macOS this exits with a not-supported message. See specs/007-test-modernization-vstest/IGNORED_TESTS.md for the tracked skip/ignore inventory.", "options": { "shell": { "executable": "powershell.exe", @@ -263,7 +291,7 @@ "type": "shell", "command": "./test.ps1 -ListTests -NoBuild -Configuration ${input:testConfiguration} -Verbosity ${input:testVerbosity}", "group": "test", - "detail": "List tests via test.ps1 (requires existing built test assemblies). For known skips/ignores see specs/007-test-modernization-vstest/IGNORED_TESTS.md.", + "detail": "Windows only execution. On Linux/macOS this exits with a not-supported message. For known skips/ignores see specs/007-test-modernization-vstest/IGNORED_TESTS.md.", "options": { "shell": { "executable": "powershell.exe", @@ -277,7 +305,7 @@ "type": "shell", "command": "./test.ps1 -TestFilter '${input:testFilter}' -Configuration ${input:testConfiguration} -Verbosity ${input:testVerbosity}", "group": "test", - "detail": "Run tests with a filter expression. If failures correspond to known ignores/skips, see specs/007-test-modernization-vstest/IGNORED_TESTS.md.", + "detail": "Windows only execution. On Linux/macOS this exits with a not-supported message. If failures correspond to known ignores/skips, see specs/007-test-modernization-vstest/IGNORED_TESTS.md.", "options": { "shell": { "executable": "powershell.exe", @@ -291,7 +319,7 @@ "type": "shell", "command": "./test.ps1 -TestProject '${input:testProject}' -Configuration ${input:testConfiguration} -Verbosity ${input:testVerbosity}", "group": "test", - "detail": "Run tests from a specific project. Track known skips/ignores in specs/007-test-modernization-vstest/IGNORED_TESTS.md.", + "detail": "Windows only execution. On Linux/macOS this exits with a not-supported message. Track known skips/ignores in specs/007-test-modernization-vstest/IGNORED_TESTS.md.", "options": { "shell": { "executable": "powershell.exe", diff --git a/AGENTS.md b/AGENTS.md index 888a0a1cdb..340f53a961 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -8,10 +8,6 @@ Minimal, high-signal guidance for coding agents in this repository. - Build with `.\build.ps1`. - Test with `.\test.ps1`. - Do not bypass repository scripts for normal build/test work. -- Before committing or pushing, run the existing VS Code task `CI: Full local check`. -- After any rebase, merge, cherry-pick, or manual conflict resolution, run `CI: Whitespace check` before committing. -- If `CI: Whitespace check` rewrites files, review and restage those files, then rerun the task until it passes cleanly. -- When commit history changes, run `CI: Commit messages` before pushing. ## Critical constraints @@ -25,6 +21,10 @@ Minimal, high-signal guidance for coding agents in this repository. - Apply `.github/instructions/navigation.instructions.md` for structural navigation and hidden-dependency handling. - Use `Src/AGENTS.md`, `.github/AGENTS.md`, `FLExInstaller/AGENTS.md`, and `openspec/AGENTS.md` for area-specific guidance. +## External Dependencies (LibLcm) + +FieldWorks is built upon the `liblcm` (Language & Culture Model) repository, which provides the main data model and FDO (FieldWorks Data Objects) layers used by FieldWorks. The liblcm library is the core FieldWorks model for language and culture data and includes interfaces like `IScrFootnoteFactory` that FieldWorks consumes. If you cannot find a core data model definition within this workspace, ask for access to the `liblcm` repository to reference the source. + ## Serena navigation - Prefer Serena symbolic tools for code discovery/navigation before broad file reads. @@ -40,6 +40,5 @@ Minimal, high-signal guidance for coding agents in this repository. ## Validation checklist 1. Run the relevant build/test scripts for touched areas. -2. Run `CI: Full local check` before commit/push; use `CI: Whitespace check` immediately after conflict resolution. -3. Keep edits scoped and avoid unrelated refactors. -4. Update docs only when behavior/contracts/process changed. +2. Keep edits scoped and avoid unrelated refactors. +3. Update docs only when behavior/contracts/process changed. diff --git a/Build/Agent/FwBuildHelpers.psm1 b/Build/Agent/FwBuildHelpers.psm1 index a785423157..3a6fc213c8 100644 --- a/Build/Agent/FwBuildHelpers.psm1 +++ b/Build/Agent/FwBuildHelpers.psm1 @@ -474,6 +474,110 @@ function Test-GitTrackedFile { } } +function Get-NewestWriteTimeUtc { + <#! + .SYNOPSIS + Returns the newest LastWriteTimeUtc among matching files under one or more roots. + #> + param( + [Parameter(Mandatory)][string[]]$Paths, + [string[]]$IncludePatterns = @() + ) + + $latest = [datetime]::MinValue + foreach ($path in $Paths) { + if (-not (Test-Path $path)) { + continue + } + + $items = Get-ChildItem -Path $path -Recurse -File -ErrorAction SilentlyContinue + if ($IncludePatterns.Count -gt 0) { + $items = $items | Where-Object { + $fileName = $_.Name + foreach ($pattern in $IncludePatterns) { + if ($fileName -like $pattern) { + return $true + } + } + return $false + } + } + + foreach ($item in $items) { + if ($item.LastWriteTimeUtc -gt $latest) { + $latest = $item.LastWriteTimeUtc + } + } + } + + return $latest +} + +function Get-OldestWriteTimeUtc { + <#! + .SYNOPSIS + Returns the oldest LastWriteTimeUtc across a set of required artifact files. + Returns $null if any required artifact is missing. + #> + param( + [Parameter(Mandatory)][string[]]$Paths + ) + + $oldest = [datetime]::MaxValue + $foundAny = $false + foreach ($path in $Paths) { + if (-not (Test-Path $path)) { + return $null + } + + $item = Get-Item -LiteralPath $path -ErrorAction Stop + $foundAny = $true + if ($item.LastWriteTimeUtc -lt $oldest) { + $oldest = $item.LastWriteTimeUtc + } + } + + if (-not $foundAny) { + return $null + } + + return $oldest +} + +function Test-ViewsNativeArtifactsStale { + <#! + .SYNOPSIS + Returns $true when the Views/FwKernel native artifacts are missing or older than relevant native inputs. + #> + param( + [Parameter(Mandatory)][string]$RepoRoot, + [Parameter(Mandatory)][string]$Configuration + ) + + $sourceRoots = @( + (Join-Path $RepoRoot 'Src\views'), + (Join-Path $RepoRoot 'Src\Kernel'), + (Join-Path $RepoRoot 'Src\Generic'), + (Join-Path $RepoRoot 'Include') + ) + $sourcePatterns = @('*.cpp', '*.c', '*.cc', '*.h', '*.hpp', '*.ixx', '*.idl', '*.rc', '*.mak', '*.def', '*.bat') + $artifactPaths = @( + (Join-Path $RepoRoot "Output\$Configuration\Views.dll"), + (Join-Path $RepoRoot "Output\$Configuration\views.lib"), + (Join-Path $RepoRoot "Output\$Configuration\Common\FwKernelTlb.h"), + (Join-Path $RepoRoot "Obj\$Configuration\Views\autopch\VwRootBox.obj") + ) + + $latestSource = Get-NewestWriteTimeUtc -Paths $sourceRoots -IncludePatterns $sourcePatterns + $oldestArtifact = Get-OldestWriteTimeUtc -Paths $artifactPaths + + if ($oldestArtifact -eq $null) { + return $true + } + + return $latestSource -gt $oldestArtifact +} + # ============================================================================= # Module Exports # ============================================================================= @@ -493,5 +597,8 @@ Export-ModuleMember -Function @( 'Exit-WorktreeLock', 'Remove-StaleObjFolders', 'Test-IsFileLockError', - 'Invoke-WithFileLockRetry' + 'Invoke-WithFileLockRetry', + 'Get-NewestWriteTimeUtc', + 'Get-OldestWriteTimeUtc', + 'Test-ViewsNativeArtifactsStale' ) diff --git a/Build/Agent/README.md b/Build/Agent/README.md index b7f4e6b0a1..3f6ae8bd72 100644 --- a/Build/Agent/README.md +++ b/Build/Agent/README.md @@ -11,6 +11,7 @@ PowerShell scripts for build, test, and CI orchestration. | Script | Purpose | |--------|---------| +| `Run-AllRenders.ps1` | Runs the DetailControls and RootSite render suites sequentially from one command without adding a meta test project. | | `Summarize-NativeTestResults.ps1` | Parses native Unit++ logs and appends a pass/fail summary table to GitHub step summary. | ## GitHub Actions usage diff --git a/Build/Agent/Run-AllRenders.ps1 b/Build/Agent/Run-AllRenders.ps1 new file mode 100644 index 0000000000..18bf447d06 --- /dev/null +++ b/Build/Agent/Run-AllRenders.ps1 @@ -0,0 +1,131 @@ +<# +.SYNOPSIS + Runs the render-focused test suites for FieldWorks. + +.DESCRIPTION + Executes the DetailControls render tests and the RootSite render tests sequentially. + This script is intentionally outside the product project graph so developers can use a + single entrypoint without introducing a meta test project into the repository architecture. + +.PARAMETER Scope + Which render suites to run. Default is All. + +.PARAMETER Configuration + The build configuration to test. Default is Debug. + +.PARAMETER NoBuild + Skip building before running tests. + +.PARAMETER Verbosity + Test output verbosity: quiet, minimal, normal, detailed. + +.PARAMETER SkipDependencyCheck + Skip dependency preflight checks inside test.ps1. +#> +[CmdletBinding()] +param( + [ValidateSet('All', 'DetailControls', 'RootSite')] + [string]$Scope = 'All', + [string]$Configuration = 'Debug', + [switch]$NoBuild, + [ValidateSet('quiet', 'minimal', 'normal', 'detailed', 'q', 'm', 'n', 'd')] + [string]$Verbosity = 'normal', + [switch]$SkipDependencyCheck +) + +Set-StrictMode -Version Latest +$ErrorActionPreference = 'Stop' + +$repoRoot = [System.IO.Path]::GetFullPath((Join-Path $PSScriptRoot '..\..')) +$buildScript = Join-Path $repoRoot 'build.ps1' +$testScript = Join-Path $repoRoot 'test.ps1' + +if (-not (Test-Path $buildScript)) { + throw "build.ps1 not found at $buildScript" +} + +if (-not (Test-Path $testScript)) { + throw "test.ps1 not found at $testScript" +} + +$requestedScopes = switch ($Scope) { + 'All' { @('DetailControls', 'RootSite') } + default { @($Scope) } +} + +function Invoke-RenderSuite { + param( + [Parameter(Mandatory = $true)] + [string]$Name, + [Parameter(Mandatory = $true)] + [string]$BuildProject, + [Parameter(Mandatory = $true)] + [string]$TestProject, + [Parameter(Mandatory = $true)] + [string[]]$TestFilters + ) + + if (-not $NoBuild) { + Write-Output "Building $Name render tests..." + + $buildArgs = @{ + Configuration = $Configuration + Project = $BuildProject + Verbosity = $Verbosity + } + + if ($SkipDependencyCheck) { + $buildArgs['SkipDependencyCheck'] = $true + } + + & $buildScript @buildArgs + if ($LASTEXITCODE -ne 0) { + throw "$Name render build failed with exit code $LASTEXITCODE." + } + } + + foreach ($testFilter in $TestFilters) { + Write-Output "Running $Name render tests with filter '$testFilter'..." + + $testArgs = @{ + Configuration = $Configuration + TestProject = $TestProject + TestFilter = $testFilter + Verbosity = $Verbosity + NoBuild = $true + SkipDependencyCheck = $true + } + + & $testScript @testArgs + if ($LASTEXITCODE -ne 0) { + throw "$Name render tests failed with exit code $LASTEXITCODE for filter '$testFilter'." + } + } + + Write-Output "[OK] $Name render tests passed." +} + +foreach ($requestedScope in $requestedScopes) { + switch ($requestedScope) { + 'DetailControls' { + Invoke-RenderSuite ` + -Name 'DetailControls' ` + -BuildProject 'Src/Common/Controls/DetailControls/DetailControlsTests/DetailControlsTests.csproj' ` + -TestProject 'Src/Common/Controls/DetailControls/DetailControlsTests' ` + -TestFilters 'FullyQualifiedName~DataTreeRenderTests' + } + 'RootSite' { + Invoke-RenderSuite ` + -Name 'RootSite' ` + -BuildProject 'Src/Common/RootSite/RootSiteTests/RootSiteTests.csproj' ` + -TestProject 'Src/Common/RootSite/RootSiteTests' ` + -TestFilters @( + 'FullyQualifiedName~RenderBaselineTests', + 'FullyQualifiedName~RenderTimingSuiteTests', + 'FullyQualifiedName~RenderVerifyTests' + ) + } + } +} + +Write-Output 'All requested render suites passed.' \ No newline at end of file diff --git a/Build/Agent/Verify-FwDependencies.ps1 b/Build/Agent/Verify-FwDependencies.ps1 index 10c943dc16..94c86ee200 100644 --- a/Build/Agent/Verify-FwDependencies.ps1 +++ b/Build/Agent/Verify-FwDependencies.ps1 @@ -64,6 +64,8 @@ function Test-Dependency { [string]$Required = "Required" ) + $isRequired = ($Required -eq "Required") + try { $result = & $Check if ($result) { @@ -73,18 +75,18 @@ function Test-Dependency { Write-Host " $result" -ForegroundColor DarkGray } } - return @{ Name = $Name; Found = $true; IsRequired = ($Required -eq "Required"); Info = $result } + return @{ Name = $Name; Found = $true; IsRequired = $isRequired; Info = $result } } else { throw "Check returned null/false" } } catch { - $color = if ($Required -eq "Required") { "Red" } else { "Yellow" } - $status = if ($Required -eq "Required") { "[FAIL]" } else { "[WARN]" } + $color = if ($isRequired) { "Red" } else { "Yellow" } + $status = if ($isRequired) { "[FAIL]" } else { "[WARN]" } Write-Host "$status $Name" -ForegroundColor $color Write-Host " $_" -ForegroundColor DarkGray - return @{ Name = $Name; Found = $false; IsRequired = ($Required -eq "Required"); Error = $_.ToString() } + return @{ Name = $Name; Found = $false; IsRequired = $isRequired; Error = $_.ToString() } } } @@ -297,9 +299,9 @@ if ($Detailed) { Write-Host "=== Summary ===" -ForegroundColor Cyan } -$required = $results | Where-Object { $_.IsRequired -ne $false } -$missing = $required | Where-Object { -not $_.Found } -$optional = $results | Where-Object { $_.IsRequired -eq $false } +$required = @($results | Where-Object { $_.IsRequired -ne $false }) +$missing = @($required | Where-Object { -not $_.Found }) +$optional = @($results | Where-Object { $_.IsRequired -eq $false }) $totalRequired = ($required | Measure-Object).Count $foundRequired = ($required | Where-Object { $_.Found } | Measure-Object).Count diff --git a/Build/Agent/check-whitespace.ps1 b/Build/Agent/check-whitespace.ps1 index dcfd38ea5d..9e7fc43004 100644 --- a/Build/Agent/check-whitespace.ps1 +++ b/Build/Agent/check-whitespace.ps1 @@ -83,10 +83,8 @@ Get-Content check-results.log | ForEach-Object { } if ($problems.Count -gt 0) { - Write-Host "`u26A0`uFE0F Please review the output for further information." + Write-Host 'WARNING: Please review the output for further information.' Write-Host '### A whitespace issue was found in one or more of the commits.' - Write-Host 'This check validates commit history from origin/main..HEAD, not just the current working tree.' - Write-Host 'If the report names an older commit, fix the file and then amend, squash, or rebase so that commit no longer appears in the branch history.' Write-Host '' Write-Host 'Errors:' $problems | ForEach-Object { Write-Host $_ } diff --git a/Build/Agent/fix-whitespace.ps1 b/Build/Agent/fix-whitespace.ps1 index 324a254a2f..ba24f5200f 100644 --- a/Build/Agent/fix-whitespace.ps1 +++ b/Build/Agent/fix-whitespace.ps1 @@ -10,39 +10,10 @@ function Get-BaseRef { return (Get-DefaultBranchRef) } -function Test-HasUtf8Bom { - param([Parameter(Mandatory)][string]$Path) - - # Read only the first three bytes to check for a UTF-8 BOM to avoid loading the entire file. - $buffer = [byte[]]::new(3) - $stream = [System.IO.File]::OpenRead($Path) - try { - $bytesRead = $stream.Read($buffer, 0, 3) - } - finally { - $stream.Dispose() - } - - if ($bytesRead -lt 3) { return $false } - return $buffer[0] -eq 0xEF -and $buffer[1] -eq 0xBB -and $buffer[2] -eq 0xBF -} - -function Write-Utf8Text { - param( - [Parameter(Mandatory)][string]$Path, - [Parameter(Mandatory)][string]$Content, - [Parameter(Mandatory)][bool]$EmitBom - ) - - $encoding = New-Object System.Text.UTF8Encoding($EmitBom) - [System.IO.File]::WriteAllText($Path, $Content, $encoding) -} - function Format-FileWhitespace { param([Parameter(Mandatory)][string]$Path) if (-not (Test-Path -LiteralPath $Path)) { return } try { - $hasUtf8Bom = Test-HasUtf8Bom -Path $Path $raw = Get-Content -LiteralPath $Path -Raw -Encoding utf8 } catch { @@ -62,7 +33,7 @@ function Format-FileWhitespace { # Join back and ensure exactly one trailing newline $new = ($lines -join "`n") + "`n" if ($new -ne $orig) { - Write-Utf8Text -Path $Path -Content $new -EmitBom $hasUtf8Bom + Set-Content -LiteralPath $Path -Value $new -Encoding utf8 -NoNewline Write-Host "Fixed whitespace: $Path" } } @@ -85,6 +56,5 @@ $files = $fixFiles | Where-Object { $_ -and (Test-Path $_) } foreach ($f in $files) { Format-FileWhitespace -Path $f } -Write-Host "Whitespace fix completed. Review and stage the updated files before committing." -Write-Host "If check-whitespace reported an older commit in origin/main..HEAD, rewrite history with amend, squash, or rebase so that offending commit is no longer part of the branch." +Write-Host "Whitespace fix completed. Review changes, commit, and rebase as needed." exit 0 diff --git a/Build/Installer.legacy.targets b/Build/Installer.legacy.targets index dad9ea8e2e..cf7437d8ba 100644 --- a/Build/Installer.legacy.targets +++ b/Build/Installer.legacy.targets @@ -272,6 +272,10 @@ + + + + diff --git a/Build/Src/Directory.Packages.props b/Build/Src/Directory.Packages.props index c2cceed0d7..35f6ad6b83 100644 --- a/Build/Src/Directory.Packages.props +++ b/Build/Src/Directory.Packages.props @@ -1,12 +1,29 @@ + + + - false + true + + + + 3.0.1 + + + + + + + + + + + + diff --git a/Build/Src/FwBuildTasks/CollectTargets.cs b/Build/Src/FwBuildTasks/CollectTargets.cs index 6c757b0659..33936bfccf 100644 --- a/Build/Src/FwBuildTasks/CollectTargets.cs +++ b/Build/Src/FwBuildTasks/CollectTargets.cs @@ -129,6 +129,8 @@ public void Generate() ); var infoEth = new DirectoryInfo(Path.Combine(m_fwroot, "Lib/src/Ethnologue")); CollectInfo(infoEth); + var infoScr2 = new DirectoryInfo(Path.Combine(m_fwroot, "Lib/src/ScrChecks")); + CollectInfo(infoScr2); var infoObj = new DirectoryInfo(Path.Combine(m_fwroot, "Lib/src/ObjectBrowser")); CollectInfo(infoObj); @@ -550,6 +552,12 @@ private void WriteTargetFiles() writer.Write("\tfalse - - - - - - - - + + + + + + + + diff --git a/Build/Src/NativeBuild/NativeBuild.csproj b/Build/Src/NativeBuild/NativeBuild.csproj index 5ace008eea..1eb7753d04 100644 --- a/Build/Src/NativeBuild/NativeBuild.csproj +++ b/Build/Src/NativeBuild/NativeBuild.csproj @@ -43,7 +43,10 @@ - + none all diff --git a/Build/scripts/Invoke-CppTest.ps1 b/Build/scripts/Invoke-CppTest.ps1 index 87f90598ac..e985a4e713 100644 --- a/Build/scripts/Invoke-CppTest.ps1 +++ b/Build/scripts/Invoke-CppTest.ps1 @@ -219,11 +219,9 @@ function Ensure-UnitPlusPlusLibrary { function Ensure-TestViewsPrerequisites { if ($TestProject -ne 'TestViews') { return } - $fwKernelHeader = Join-Path $WorktreePath "Output\$Configuration\Common\FwKernelTlb.h" - $viewsObj = Join-Path $WorktreePath "Obj\$Configuration\Views\autopch\VwRootBox.obj" - if ((Test-Path $fwKernelHeader) -and (Test-Path $viewsObj)) { return } + if (-not (Test-ViewsNativeArtifactsStale -RepoRoot $WorktreePath -Configuration $Configuration)) { return } - Write-Host "[INFO] Missing native artifacts or generated headers required for TestViews." -ForegroundColor Yellow + Write-Host "[INFO] Refreshing native artifacts and generated headers required for TestViews." -ForegroundColor Yellow Build-NativeArtifacts Build-ViewsInterfacesArtifacts } diff --git a/Directory.Build.props b/Directory.Build.props index 7495546d05..4e0bbd7529 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -80,10 +80,24 @@ $(MSBuildThisFileDirectory) + + $(MSBuildThisFileDirectory) + FieldWorks $(FwRoot)DistFiles\ $(FwRoot)Output\ $(FwOutput)$(Configuration)\ $(FwRoot)Obj\ + + $(DefaultItemExcludes);*_wpftmp* + + + <_StaleWpfTemp Include="$(MSBuildProjectDirectory)\*_wpftmp*" /> + + + + \ No newline at end of file diff --git a/Directory.Packages.props b/Directory.Packages.props index 830029ab74..8156e44964 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -153,5 +153,7 @@ + + diff --git a/DistFiles/Language Explorer/Configuration/Parts/Cellar.fwlayout b/DistFiles/Language Explorer/Configuration/Parts/Cellar.fwlayout index 07bb73404d..ab50b03a8e 100644 --- a/DistFiles/Language Explorer/Configuration/Parts/Cellar.fwlayout +++ b/DistFiles/Language Explorer/Configuration/Parts/Cellar.fwlayout @@ -64,7 +64,6 @@ - diff --git a/DistFiles/Language Explorer/Configuration/Parts/CellarParts.xml b/DistFiles/Language Explorer/Configuration/Parts/CellarParts.xml index 6c2472e92f..b43f8e1bba 100644 --- a/DistFiles/Language Explorer/Configuration/Parts/CellarParts.xml +++ b/DistFiles/Language Explorer/Configuration/Parts/CellarParts.xml @@ -183,9 +183,6 @@ - - - diff --git a/Docs/CONTRIBUTING.md b/Docs/CONTRIBUTING.md index 0ce5523f87..ade291d845 100644 --- a/Docs/CONTRIBUTING.md +++ b/Docs/CONTRIBUTING.md @@ -14,7 +14,8 @@ There are several ways you can contribute to the development of FieldWorks: The following steps are required for setting up a FieldWorks development environment on Windows. -> **Note**: FieldWorks is Windows-only. Linux builds are no longer supported. +> **Note**: FieldWorks build, test, installer, and setup workflows are Windows-only. +> Linux and macOS are supported for editing, code search, documentation, specs, and agent work only. ### 1. Install Required Software @@ -109,6 +110,8 @@ Build FieldWorks using the PowerShell build script: For more build options, see [.github/instructions/build.instructions.md](../.github/instructions/build.instructions.md). +On Linux or macOS, do not run `build.ps1` or `test.ps1`; those entry points intentionally fail fast with a not-supported message. + ### 5. VS Code and Visual Studio usage Default recommendation: diff --git a/FLExInstaller/Directory.Packages.props b/FLExInstaller/Directory.Packages.props index e88cc42dea..f8c53cb264 100644 --- a/FLExInstaller/Directory.Packages.props +++ b/FLExInstaller/Directory.Packages.props @@ -2,9 +2,14 @@ - false + true + + + + + diff --git a/FLExInstaller/wix6/Shared/CustomActions/CustomActions/CustomActions.csproj b/FLExInstaller/wix6/Shared/CustomActions/CustomActions/CustomActions.csproj index df40f3c071..fbdc12dfa4 100644 --- a/FLExInstaller/wix6/Shared/CustomActions/CustomActions/CustomActions.csproj +++ b/FLExInstaller/wix6/Shared/CustomActions/CustomActions/CustomActions.csproj @@ -10,8 +10,8 @@ - - + + diff --git a/FieldWorks.sln b/FieldWorks.sln index 4aff9ba74d..f645fcd3ee 100644 --- a/FieldWorks.sln +++ b/FieldWorks.sln @@ -18,6 +18,10 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DetailControls", "Src\Commo EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DetailControlsTests", "Src\Common\Controls\DetailControls\DetailControlsTests\DetailControlsTests.csproj", "{36F2A7A6-C7F9-5D3D-87D7-B4C0D5C51C0E}" EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RenderTestInfrastructure", "Src\Common\RenderTestInfrastructure\RenderTestInfrastructure.csproj", "{B53C715F-2F97-4E2B-9C10-5BFF1C04A446}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RenderVerification", "Src\Common\RenderVerification\RenderVerification.csproj", "{6F7A4D9C-5B44-4D0E-ABAA-8D6F38F30C6A}" +EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Discourse", "Src\LexText\Discourse\Discourse.csproj", "{A51BAFC3-1649-584D-8D25-101884EE9EAA}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DiscourseTests", "Src\LexText\Discourse\DiscourseTests\DiscourseTests.csproj", "{1CE6483D-5D10-51AD-B2A7-FD7F82CCBAB2}" @@ -154,6 +158,10 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RootSite", "Src\Common\Root EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RootSiteTests", "Src\Common\RootSite\RootSiteTests\RootSiteTests.csproj", "{EC934204-1D3A-5575-A500-CB7923C440E2}" EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ScrChecks", "Lib\src\ScrChecks\ScrChecks.csproj", "{0B5C69D2-8502-5FED-A22C-CE6A0269D9F1}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ScrChecksTests", "Lib\src\ScrChecks\ScrChecksTests\ScrChecksTests.csproj", "{37555756-6D42-5E46-B455-E58E3D1E8E0C}" +EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ScriptureUtils", "Src\Common\ScriptureUtils\ScriptureUtils.csproj", "{8336DC7C-954B-5076-9315-D7DC5317282B}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ScriptureUtilsTests", "Src\Common\ScriptureUtils\ScriptureUtilsTests\ScriptureUtilsTests.csproj", "{04546E35-9A3A-5629-8282-3683A5D848F9}" @@ -238,25 +246,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HCSynthByGloss", "Src\Utili EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HCSynthByGlossDll", "Src\Utilities\HCSynthByGloss\HCSynthByGlossDll\HCSynthByGlossDll.csproj", "{EEE765C8-6812-4F9F-A100-42AA71921926}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HCSynthByGlossDllTests", "Src\Utilities\HCSynthByGloss\HCSynthByGlossDll\HCSynthByGlossDllTests\HCSynthByGlossDllTests.csproj", "{8EF1E1AE-2226-4A9B-8942-CAB531956ED3}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HCSynthByGlossTests", "Src\Utilities\HCSynthByGloss\HCSynthByGloss\HCSynthByGlossTests\HCSynthByGlossTests.csproj", "{5DB1CEDA-B7AA-4594-9CE0-6D3A6F5763DF}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AlloGenModel", "Src\Utilities\AlloVarGen\AlloGenModel\AlloGenModel.csproj", "{996498A3-06F1-4B1B-B83F-15648DD8F514}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AlloGenService", "Src\Utilities\AlloVarGen\AlloGenService\AlloGenService.csproj", "{ECEC3C09-019A-4B31-B72A-C4A22DE88E84}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AlloGenModelTests", "Src\Utilities\AlloVarGen\AlloGenModel\AlloGenModelTests\AlloGenModelTests.csproj", "{98A04BE3-5CDA-4616-9396-E40B33CC9256}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AlloGenServiceTests", "Src\Utilities\AlloVarGen\AlloGenService\AlloGenServiceTests\AlloGenServiceTests.csproj", "{B4CDC940-DDA7-4EEC-87A6-8441CF47EE7E}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AllomorphGeneratorDll", "Src\Utilities\AlloVarGen\AllomorphGeneratorDll\AllomorphGeneratorDll.csproj", "{2C57CEB5-40DE-4229-89B8-BADE30687815}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VarGenService", "Src\Utilities\AlloVarGen\VarGenService\VarGenService.csproj", "{0EDB239B-A523-4259-9123-EBA3B7E0139F}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VarGenServiceTests", "Src\Utilities\AlloVarGen\VarGenService\VarGenServiceTests\VarGenServiceTests.csproj", "{AF29BF64-3F6E-4CD9-BC70-AFB68F563173}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HCSynthByGlossDllTest", "Src\Utilities\HCSynthByGloss\HCSynthByGlossDll\HCSynthByGlossDllTest\HCSynthByGlossDllTest.csproj", "{8EF1E1AE-2226-4A9B-8942-CAB531956ED3}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VariantGeneratorDll", "Src\Utilities\AlloVarGen\VariantGeneratorDll\VariantGeneratorDll.csproj", "{91219E68-FF1D-4DED-BB06-3A6AF46C0419}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HCSynthByGlossTest", "Src\Utilities\HCSynthByGloss\HCSynthByGloss\HCSynthByGlossTest\HCSynthByGlossTest.csproj", "{5DB1CEDA-B7AA-4594-9CE0-6D3A6F5763DF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DisambiguateInFLExDB", "Src\Utilities\pcpatrflex\DisambiguateInFLExDB\DisambiguateInFLExDB.csproj", "{6A3359E7-E3DA-4CF6-B6F8-C6A4E8D9800B}" EndProject @@ -331,6 +323,18 @@ Global {36F2A7A6-C7F9-5D3D-87D7-B4C0D5C51C0E}.Debug|x64.Build.0 = Debug|x64 {36F2A7A6-C7F9-5D3D-87D7-B4C0D5C51C0E}.Release|x64.ActiveCfg = Release|x64 {36F2A7A6-C7F9-5D3D-87D7-B4C0D5C51C0E}.Release|x64.Build.0 = Release|x64 + {B53C715F-2F97-4E2B-9C10-5BFF1C04A446}.Bounds|x64.ActiveCfg = Release|x64 + {B53C715F-2F97-4E2B-9C10-5BFF1C04A446}.Bounds|x64.Build.0 = Release|x64 + {B53C715F-2F97-4E2B-9C10-5BFF1C04A446}.Debug|x64.ActiveCfg = Debug|x64 + {B53C715F-2F97-4E2B-9C10-5BFF1C04A446}.Debug|x64.Build.0 = Debug|x64 + {B53C715F-2F97-4E2B-9C10-5BFF1C04A446}.Release|x64.ActiveCfg = Release|x64 + {B53C715F-2F97-4E2B-9C10-5BFF1C04A446}.Release|x64.Build.0 = Release|x64 + {6F7A4D9C-5B44-4D0E-ABAA-8D6F38F30C6A}.Bounds|x64.ActiveCfg = Release|x64 + {6F7A4D9C-5B44-4D0E-ABAA-8D6F38F30C6A}.Bounds|x64.Build.0 = Release|x64 + {6F7A4D9C-5B44-4D0E-ABAA-8D6F38F30C6A}.Debug|x64.ActiveCfg = Debug|x64 + {6F7A4D9C-5B44-4D0E-ABAA-8D6F38F30C6A}.Debug|x64.Build.0 = Debug|x64 + {6F7A4D9C-5B44-4D0E-ABAA-8D6F38F30C6A}.Release|x64.ActiveCfg = Release|x64 + {6F7A4D9C-5B44-4D0E-ABAA-8D6F38F30C6A}.Release|x64.Build.0 = Release|x64 {A51BAFC3-1649-584D-8D25-101884EE9EAA}.Bounds|x64.ActiveCfg = Release|x64 {A51BAFC3-1649-584D-8D25-101884EE9EAA}.Bounds|x64.Build.0 = Release|x64 {A51BAFC3-1649-584D-8D25-101884EE9EAA}.Debug|x64.ActiveCfg = Debug|x64 @@ -739,6 +743,18 @@ Global {EC934204-1D3A-5575-A500-CB7923C440E2}.Debug|x64.Build.0 = Debug|x64 {EC934204-1D3A-5575-A500-CB7923C440E2}.Release|x64.ActiveCfg = Release|x64 {EC934204-1D3A-5575-A500-CB7923C440E2}.Release|x64.Build.0 = Release|x64 + {0B5C69D2-8502-5FED-A22C-CE6A0269D9F1}.Bounds|x64.ActiveCfg = Release|x64 + {0B5C69D2-8502-5FED-A22C-CE6A0269D9F1}.Bounds|x64.Build.0 = Release|x64 + {0B5C69D2-8502-5FED-A22C-CE6A0269D9F1}.Debug|x64.ActiveCfg = Debug|x64 + {0B5C69D2-8502-5FED-A22C-CE6A0269D9F1}.Debug|x64.Build.0 = Debug|x64 + {0B5C69D2-8502-5FED-A22C-CE6A0269D9F1}.Release|x64.ActiveCfg = Release|x64 + {0B5C69D2-8502-5FED-A22C-CE6A0269D9F1}.Release|x64.Build.0 = Release|x64 + {37555756-6D42-5E46-B455-E58E3D1E8E0C}.Bounds|x64.ActiveCfg = Release|x64 + {37555756-6D42-5E46-B455-E58E3D1E8E0C}.Bounds|x64.Build.0 = Release|x64 + {37555756-6D42-5E46-B455-E58E3D1E8E0C}.Debug|x64.ActiveCfg = Debug|x64 + {37555756-6D42-5E46-B455-E58E3D1E8E0C}.Debug|x64.Build.0 = Debug|x64 + {37555756-6D42-5E46-B455-E58E3D1E8E0C}.Release|x64.ActiveCfg = Release|x64 + {37555756-6D42-5E46-B455-E58E3D1E8E0C}.Release|x64.Build.0 = Release|x64 {8336DC7C-954B-5076-9315-D7DC5317282B}.Bounds|x64.ActiveCfg = Release|x64 {8336DC7C-954B-5076-9315-D7DC5317282B}.Bounds|x64.Build.0 = Release|x64 {8336DC7C-954B-5076-9315-D7DC5317282B}.Debug|x64.ActiveCfg = Debug|x64 diff --git a/Lib/src/ScrChecks/BuildInclude.targets b/Lib/src/ScrChecks/BuildInclude.targets new file mode 100644 index 0000000000..5ed09f812f --- /dev/null +++ b/Lib/src/ScrChecks/BuildInclude.targets @@ -0,0 +1,29 @@ + + + + + $(MSBuildThisFileDirectory)..\..\..\DistFiles\Editorial Checks + + + + + + + + + + + + + + + + + + + + + + diff --git a/Lib/src/ScrChecks/CapitalizationCheck.cs b/Lib/src/ScrChecks/CapitalizationCheck.cs new file mode 100644 index 0000000000..08ba391098 --- /dev/null +++ b/Lib/src/ScrChecks/CapitalizationCheck.cs @@ -0,0 +1,595 @@ +// Copyright (c) 2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using System.Text; +using System.Xml; +using System.Diagnostics; +using SIL.FieldWorks.Common.FwUtils; + +namespace SILUBS.ScriptureChecks +{ + /// ------------------------------------------------------------------------------------ + /// + /// Check for capitalization: styles that should begin with a capital letter and + /// words after sentence-final punctuation. + /// + /// ------------------------------------------------------------------------------------ + public class CapitalizationCheck : IScriptureCheck + { + #region Member variables + /// provides Scripture data to this check + IChecksDataSource m_chkDataSource; + + /// capitalization errors detected in this check + List m_capitalizationErrors; + + /// name of parameter to provide serialized style information for this check. + readonly string kStyleSheetInfoParameter = "StylesInfo"; +// /// name of parameter to provide punctuation that occurs sentence-finally +// readonly string kSentenceFinalPuncParameter = "SentenceFinalPunctuation"; + + private StylePropsInfo m_stylePropsInfo; + /// Dictionary keyed by the style name containing the type of style (character/paragraph) + /// and a value indicating why it should begin with a capital. + private Dictionary m_allCapitalizedStyles = new Dictionary(); + +// /// string containing punctuation that ends sentences. +// string m_SentenceFinalPunc = null; + #endregion + + /// ------------------------------------------------------------------------------------ + /// + /// Initializes a new instance of the class. + /// + /// The data source for the check. + /// ------------------------------------------------------------------------------------ + public CapitalizationCheck(IChecksDataSource _checksDataSource) + { + + m_chkDataSource = _checksDataSource; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Returns a localized version of the specified string. + /// + /// ------------------------------------------------------------------------------------ + private string Localize(string strToLocalize) + { + return m_chkDataSource.GetLocalizedString(strToLocalize); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the name of the check. + /// + /// ------------------------------------------------------------------------------------ + public string CheckName { get { return Localize("Capitalization"); } } + + /// ------------------------------------------------------------------------------------ + /// + /// The unique identifier of the check. This should never be changed! + /// + /// ------------------------------------------------------------------------------------ + public Guid CheckId { get { return StandardCheckIds.kguidCapitalization; } } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the name of the group which contains this check. + /// + /// ------------------------------------------------------------------------------------ + public string CheckGroup { get { return Localize("Basic"); } } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets a number that can be used to order this check relative to other checks in the + /// same group when displaying checks in the UI. + /// + /// ------------------------------------------------------------------------------------ + public float RelativeOrder + { + get { return 600; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the description for this check. + /// + /// ------------------------------------------------------------------------------------ + public string Description { get { return Localize("Checks for potential inconsistencies in capitalization."); } } + + /// ------------------------------------------------------------------------------------ + /// + /// This is the column header of the first column when you create an + /// inventory of this type of error. + /// + /// ------------------------------------------------------------------------------------ + public string InventoryColumnHeader + { + get { return Localize("Style name or preceding punctuation."); } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Checks the specified Scripture tokens for capitalization within styles. + /// + /// The tokens from scripture. + /// The record. + /// ------------------------------------------------------------------------------------ + public void Check(IEnumerable toks, RecordErrorHandler record) + { + GetReferences(toks); + + foreach (TextTokenSubstring tts in m_capitalizationErrors) + record(new RecordErrorEventArgs(tts, CheckId)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the references where capitalization errors occurred. + /// + /// The Scripture tokens. + /// list of capitalization errors. + /// ------------------------------------------------------------------------------------ + public List GetReferences(IEnumerable tokens) + { +// m_SentenceFinalPunc = m_chkDataSource.GetParameterValue(kSentenceFinalPuncParameter); + if (m_stylePropsInfo == null) + { + string styleInfo = m_chkDataSource.GetParameterValue(kStyleSheetInfoParameter); + Debug.Assert(!string.IsNullOrEmpty(styleInfo), "Style information not provided."); + m_stylePropsInfo = StylePropsInfo.Load(styleInfo); + CreateCapitalStyleDictionary(); + Debug.Assert(m_allCapitalizedStyles.Count > 0, "No styles require capitalization."); + } + + CapitalizationProcessor bodyPuncProcessor = new CapitalizationProcessor(m_chkDataSource, m_allCapitalizedStyles); + CapitalizationProcessor notePuncProcessor = new CapitalizationProcessor(m_chkDataSource, m_allCapitalizedStyles); + notePuncProcessor.ProcessParagraphsSeparately = true; + + m_capitalizationErrors = new List(); + VerseTextToken scrTok = new VerseTextToken(); + + ITextToken tok; + foreach (ITextToken token in tokens) + { + if (token.TextType == TextType.Note || token.TextType == TextType.PictureCaption) + tok = token; + else + { + // Make the token one of our special capitalization text tokens. + scrTok.Token = token; + tok = scrTok; + } + + if (tok.TextType == TextType.Note) + notePuncProcessor.ProcessToken(tok, m_capitalizationErrors); + else if (tok.TextType == TextType.Verse || tok.TextType == TextType.Other) + bodyPuncProcessor.ProcessToken(tok, m_capitalizationErrors); + } + + return m_capitalizationErrors; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Creates the dictionary of styles information that will be used in this check. + /// + /// ------------------------------------------------------------------------------------ + private void CreateCapitalStyleDictionary() + { + AddListToDictionary(m_stylePropsInfo.SentenceInitial, StyleCapInfo.CapCheckTypes.SentenceInitial); + AddListToDictionary(m_stylePropsInfo.ProperNouns, StyleCapInfo.CapCheckTypes.ProperNoun); + AddListToDictionary(m_stylePropsInfo.Table, StyleCapInfo.CapCheckTypes.Table); + AddListToDictionary(m_stylePropsInfo.List, StyleCapInfo.CapCheckTypes.List); + AddListToDictionary(m_stylePropsInfo.Special, StyleCapInfo.CapCheckTypes.Special); + AddListToDictionary(m_stylePropsInfo.Heading, StyleCapInfo.CapCheckTypes.Heading); + AddListToDictionary(m_stylePropsInfo.Title, StyleCapInfo.CapCheckTypes.Title); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Adds the list of styles to dictionary. + /// + /// The list of style info (name and type of style). + /// The reason this style should begin with a capital letter. + /// ------------------------------------------------------------------------------------ + private void AddListToDictionary(List list, StyleCapInfo.CapCheckTypes capType) + { + foreach (StyleInfo styleInfo in list) + { + m_allCapitalizedStyles.Add(styleInfo.StyleName.Replace("_", " "), + new StyleCapInfo(styleInfo.StyleType, capType)); + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the error message given the style's reason for capitalization. + /// + /// The data source. + /// Reason why a character should have been capitalized. + /// Name of the style or string.Empty if not relevant. + /// error message. + /// ------------------------------------------------------------------------------------ + internal static string GetErrorMessage(IChecksDataSource dataSource, + StyleCapInfo.CapCheckTypes capReasonType, string styleName) + { + switch (capReasonType) + { + case StyleCapInfo.CapCheckTypes.SentenceInitial: + return dataSource.GetLocalizedString("Sentence should begin with a capital letter"); + case StyleCapInfo.CapCheckTypes.Heading: + return dataSource.GetLocalizedString("Heading should begin with a capital letter"); + case StyleCapInfo.CapCheckTypes.Title: + return dataSource.GetLocalizedString("Title should begin with a capital letter"); + case StyleCapInfo.CapCheckTypes.List: + return dataSource.GetLocalizedString("List paragraphs should begin with a capital letter"); + case StyleCapInfo.CapCheckTypes.Table: + return dataSource.GetLocalizedString("Table contents should begin with a capital letter"); + case StyleCapInfo.CapCheckTypes.ProperNoun: + return dataSource.GetLocalizedString("Proper nouns should begin with a capital letter"); + case StyleCapInfo.CapCheckTypes.Special: + return String.Format(dataSource.GetLocalizedString( + "Text in the {0} style should begin with a capital letter"), styleName); + } + + throw new Exception("Reason for capitalizing the style " + styleName + + " is not handled in GetErrorMessage (" + capReasonType.ToString() + ")"); + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Information about a style that is useful for capitalization checking. + /// + /// ------------------------------------------------------------------------------------ + public class StyleCapInfo + { + /// categories of styles that should be capitalized + public enum CapCheckTypes + { + /// styles used sentence initially. + SentenceInitial, + /// styles used for proper nouns. + ProperNoun, + /// styles used in a table. + Table, + /// styles used in a list. + List, + /// styles used for special elements. + Special, + /// styles used in a heading. + Heading, + /// styles used in a title. + Title + } + + /// type of style either paragraph or character + public StyleInfo.StyleTypes m_type; + /// reason why the style is capitalized + public CapCheckTypes m_capCheck; + + /// ------------------------------------------------------------------------------------ + /// + /// Initializes a new instance of the class. + /// + /// The type of style (character or paragraph). + /// The reason for the capitalization in this style. + /// ------------------------------------------------------------------------------------ + public StyleCapInfo(StyleInfo.StyleTypes type, CapCheckTypes capCheck) + { + m_type = type; + m_capCheck = capCheck; + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Check capitalization for styles and sentences. + /// + /// ------------------------------------------------------------------------------------ + public class CapitalizationProcessor + { + #region Data members + /// provides Scripture data to this check. + private IChecksDataSource m_checksDataSource; + /// provides the category of characters, e.g. word-forming, etc. + CharacterCategorizer m_categorizer; + /// abbreviations relevant to this check. + string[] m_abbreviations; + /// valid punctuation at the end of a sentence. + List m_validSentenceFinalPuncts = new List(); + private bool m_fAtSentenceStart = true; + + /// the current paragraph style. + private string m_paragraphStyle = ""; + /// the current character style. + private string m_characterStyle = ""; + + private bool m_foundParagraphText = true; + private bool m_foundCharacterText = true; + + private bool m_processParagraphsSeparately = false; + + /// Dictionary keyed by the style name containing the type of style (character/paragraph) + /// and a value indicating why it should begin with a capital. + private Dictionary m_allCapitalizedStyles = null; + #endregion + + #region Constructor + /// ------------------------------------------------------------------------------------ + /// + /// Initializes a new instance of the class. + /// + /// The source of data for Scripture checking. + /// Dictionary keyed by the style name containing the + /// type of style (character/paragraph) and a value indicating why it should begin with + /// a capital. + /// ------------------------------------------------------------------------------------ + public CapitalizationProcessor(IChecksDataSource checksDataSource, + Dictionary allCapitalizedStyles) + { + m_checksDataSource = checksDataSource; + m_categorizer = checksDataSource.CharacterCategorizer; + m_abbreviations = checksDataSource.GetParameterValue("Abbreviations").Split(); + m_allCapitalizedStyles = allCapitalizedStyles; + + string sentenceFinalPunc = checksDataSource.GetParameterValue("SentenceFinalPunctuation"); + if (!string.IsNullOrEmpty(sentenceFinalPunc)) + { + foreach (char ch in sentenceFinalPunc) + m_validSentenceFinalPuncts.Add(ch); + } + else + { + // No punctuation is set up for this writing system that contains sentence-final punctuation. + // Define sentence-final punctuation with these characters as a fallback: '.', '?', and '!' + m_validSentenceFinalPuncts.Add('.'); + m_validSentenceFinalPuncts.Add('?'); + m_validSentenceFinalPuncts.Add('!'); + } + } + + #endregion + + #region Public methods + public bool ProcessParagraphsSeparately + { + get { return m_processParagraphsSeparately; } + set { m_processParagraphsSeparately = value; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Processes the Scripture token. + /// + /// The token. + /// The result. + /// ------------------------------------------------------------------------------------ + public void ProcessToken(ITextToken tok, List result) + { + string tokenText = RemoveAbbreviations(tok); + + RecordParagraphStyle(tok); + RecordCharacterStyle(tok); + + // must be at least one character in token to check the case of + if (tok.Text == String.Empty) + return; + + for (int iChar = 0; iChar < tokenText.Length; iChar++) + { + char ch = tokenText[iChar]; + + if (IsSentenceFinalPunctuation(ch)) + { + m_fAtSentenceStart = iChar + 1 == tokenText.Length || + (iChar + 1 < tokenText.Length && !char.IsDigit(tokenText[iChar + 1])); + continue; + } + + if (!m_categorizer.IsWordFormingCharacter(ch)) + continue; + + if (m_categorizer.IsLower(ch)) + { + TextTokenSubstring tts = GetSubstring(tok, iChar); + + if (!CheckForParaCapitalizationError(tok, tts, result) && + !CheckForCharStyleCapilizationError(tok, tts, result) && + m_fAtSentenceStart) + { + tts.Message = CapitalizationCheck.GetErrorMessage(m_checksDataSource, + StyleCapInfo.CapCheckTypes.SentenceInitial, string.Empty); + result.Add(tts); + } + } + m_fAtSentenceStart = false; + m_foundCharacterText = true; + m_foundParagraphText = true; + } + } + #endregion + + #region Private Methods + /// ------------------------------------------------------------------------------------ + /// + /// Gets the substring for the character starting at position iChar. + /// + /// The token + /// The index of the character. + /// ------------------------------------------------------------------------------------ + private TextTokenSubstring GetSubstring(ITextToken tok, int iChar) + { + int iCharLength = GetLengthOfChar(tok, iChar); + TextTokenSubstring tts = new TextTokenSubstring((tok is VerseTextToken ? + ((VerseTextToken)tok).Token : tok), iChar, iCharLength); + return tts; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Records the paragraph style. + /// + /// The Scripture token. + /// ------------------------------------------------------------------------------------ + private void RecordParagraphStyle(ITextToken tok) + { + if (tok.IsParagraphStart) + { + m_paragraphStyle = tok.ParaStyleName; + m_foundParagraphText = false; + if (m_processParagraphsSeparately) + m_fAtSentenceStart = false; + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Records the character style. + /// + /// The Scripture token. + /// ------------------------------------------------------------------------------------ + private void RecordCharacterStyle(ITextToken tok) + { + if (tok.CharStyleName != m_characterStyle) + { + m_characterStyle = tok.CharStyleName; + m_foundCharacterText = false; + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Removes the abbreviations from a Scripture token. + /// + /// The Scripture token. + /// Scripture token with any abbreviations replaced with spaces. + /// ------------------------------------------------------------------------------------ + private string RemoveAbbreviations(ITextToken tok) + { + string tokenText = tok.Text; + foreach (string abbreviation in m_abbreviations) + { + if (abbreviation == "") + continue; + + string spaces = new string(' ', abbreviation.Length); + tokenText = tokenText.Replace(abbreviation, spaces); + } + + Debug.Assert(tok.Text.Length == tokenText.Length, + "Length of text should not change", + "Abbreviations are replaced by spaces, but the overall text length should stay the same."); + return tokenText; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Creates a checking error if paragraph style requires an initial uppercase letter, + /// but the tssFirstLetter is lowercase. + /// + /// The Scripture token. + /// The token substring of the first word-forming character + /// in the given token. + /// The error results. + /// true if an error was added to the list of results; otherwise + /// false + /// ------------------------------------------------------------------------------------ + private bool CheckForParaCapitalizationError(ITextToken tok, + TextTokenSubstring ttsFirstLetter, List result) + { + if (m_foundParagraphText) + return false; + + m_foundParagraphText = true; + + // The first character of the paragraph is lowercase. + // Look it up in the capitalized styles dictionary to determine if it should be uppercase. + StyleCapInfo styleCapInfo; + if (m_allCapitalizedStyles.TryGetValue(m_paragraphStyle, out styleCapInfo)) + { + ttsFirstLetter.InventoryText = m_paragraphStyle; + + ttsFirstLetter.Message = CapitalizationCheck.GetErrorMessage(m_checksDataSource, + styleCapInfo.m_capCheck, m_paragraphStyle); + result.Add(ttsFirstLetter); + return true; + } + return false; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Creates a checking error if character style requires an initial uppercase letter, + /// but the tssFirstLetter is lowercase. + /// + /// The Scripture token. + /// The token substring of the first word-forming character + /// in the given token. + /// The result. + /// true if an error was added to the list of results; otherwise + /// false + /// ------------------------------------------------------------------------------------ + private bool CheckForCharStyleCapilizationError(ITextToken tok, + TextTokenSubstring ttsFirstLetter, List result) + { + if (m_foundCharacterText) + return false; + + m_foundCharacterText = true; + + // The first word-forming character of the character style is lowercase. + // Look it up in the capitalized styles dictionary to determine if it should be uppercase. + StyleCapInfo styleCapInfo; + if (m_allCapitalizedStyles.TryGetValue(m_characterStyle, out styleCapInfo) && + styleCapInfo.m_type == StyleInfo.StyleTypes.character) + { + ttsFirstLetter.InventoryText = m_characterStyle; + ttsFirstLetter.Message = CapitalizationCheck.GetErrorMessage(m_checksDataSource, + styleCapInfo.m_capCheck, m_characterStyle); + result.Add(ttsFirstLetter); + return true; + } + return false; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Determines whether the specified character is sentence final punctuation. + /// + /// The specified character. + /// + /// true if the specified character is sentence final punctuation; otherwise, false. + /// + /// ------------------------------------------------------------------------------------ + private bool IsSentenceFinalPunctuation(char ch) + { + return m_validSentenceFinalPuncts.IndexOf(ch) >= 0; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the length of the character including any associated diacritics that follow + /// the base character. + /// + /// The text token. + /// The index of the base character in the text token. + /// length of the character, including all following diacritics + /// ------------------------------------------------------------------------------------ + private int GetLengthOfChar(ITextToken tok, int iBaseCharacter) + { + int charLength = 1; + int iChar = iBaseCharacter + 1; + while(iChar < tok.Text.Length && m_categorizer.IsDiacritic(tok.Text[iChar++])) + charLength++; + + return charLength; + } + #endregion + } +} diff --git a/Lib/src/ScrChecks/ChapterVerseCheck.cs b/Lib/src/ScrChecks/ChapterVerseCheck.cs new file mode 100644 index 0000000000..c7a8084fa1 --- /dev/null +++ b/Lib/src/ScrChecks/ChapterVerseCheck.cs @@ -0,0 +1,995 @@ +// Copyright (c) 2008-2017 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Text.RegularExpressions; +using SIL.FieldWorks.Common.FwUtils; +using SIL.LCModel.Core.Scripture; + +namespace SILUBS.ScriptureChecks +{ + /// ---------------------------------------------------------------------------------------- + /// + /// Checks for missing, repeated, extraneous, and out-of-order chapters and verses + /// + /// ---------------------------------------------------------------------------------------- + public class ChapterVerseCheck : IScriptureCheck + { + private enum ParseVerseResult + { + Valid, + ValidWithSpaceInVerse, + ValidWithSpaceInVerseBridge, + Invalid, + InvalidFormat, + } + + private enum VersePart + { + NA, + PartA, + PartB + } + + private IChecksDataSource m_checksDataSource; + + private readonly string ksVerseSchemeParam = "Versification Scheme"; + private readonly string ksBookIdParam = "Book ID"; + private readonly string ksChapterParam = "Chapter Number"; + private readonly string ksVerseBridgeParam = "Verse Bridge"; + private readonly string ksScriptDigitZeroParam = "Script Digit Zero"; + private readonly string ksSubVerseLetterAParam = "Sub-verse Letter A"; + private readonly string ksSubVerseLetterBParam = "Sub-verse Letter B"; + + private string m_versificationScheme; + private VersificationTable m_versification; + + private string m_subVerseA = "a"; + private string m_subVerseB = "b"; + + private Regex m_verseNumberFormat; + private Regex m_chapterNumberFormat; + + private List m_chapTokens = new List(); + private ITextToken m_fallbackToken; + + private string m_sBookId; + private int m_nChapterToCheck; // 0 = all chapters in book + private RecordErrorHandler m_recordError; + +// /// Verses encountered in current chapter +// private List m_versesFound; + + /// ------------------------------------------------------------------------------------ + /// + /// Initializes a new instance of the class. + /// + /// The checks data source. + /// ------------------------------------------------------------------------------------ + public ChapterVerseCheck(IChecksDataSource checksDataSource) : this(checksDataSource, null) + { + } + + /// ------------------------------------------------------------------------------------ + /// + /// Initializes a new instance of the class. This + /// overload of the constructor is only used for testing. + /// + /// The checks data source. + /// The error recording handler. + /// ------------------------------------------------------------------------------------ + public ChapterVerseCheck(IChecksDataSource checksDataSource, + RecordErrorHandler recErrHandler) + { + m_checksDataSource = checksDataSource; + m_recordError = recErrHandler; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Returns a localized version of the specified string. + /// + /// ------------------------------------------------------------------------------------ + private string Localize(string strToLocalize) + { + return m_checksDataSource.GetLocalizedString(strToLocalize); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the name of the check. + /// + /// ------------------------------------------------------------------------------------ + public string CheckName + { + get {return Localize("Chapter and Verse Numbers"); } + } + + /// ------------------------------------------------------------------------------------ + /// + /// The unique identifier of the check. This should never be changed! + /// + /// ------------------------------------------------------------------------------------ + public Guid CheckId { get { return StandardCheckIds.kguidChapterVerse; } } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the name of the group which contains this check. + /// + /// ------------------------------------------------------------------------------------ + public string CheckGroup + { + get { return Localize("Basic"); } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets a number that can be used to order this check relative to other checks in the + /// same group when displaying checks in the UI. + /// + /// ------------------------------------------------------------------------------------ + public float RelativeOrder + { + get { return 100; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the description for this check. + /// + /// ------------------------------------------------------------------------------------ + public string Description + { + get { return Localize("Checks for potential inconsistencies in chapter and verse numbers."); } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Sets the record error handler. Use this only for tests. + /// + /// ------------------------------------------------------------------------------------ + public RecordErrorHandler RecordError + { + set { m_recordError = value; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Checks the given tokens for chapter/verse errors and calls the given RecordError + /// handler for each one. + /// + /// The tokens to check. + /// Method to call to record errors. + /// ------------------------------------------------------------------------------------ + public void Check(IEnumerable toks, RecordErrorHandler record) + { + GetParameters(); + + m_recordError = record; +// m_versesFound = new List(); + m_chapTokens.Clear(); + + ChapterToken currChapterToken = null; + VerseToken currVerseToken = null; + + foreach (ITextToken token in toks) + { + // This token is only necessary when a chapter one is missing + // and we need a token to use for reporting that it's missing. + if (m_fallbackToken == null) + m_fallbackToken = token; + + if (token.TextType == TextType.ChapterNumber) + { + currChapterToken = new ChapterToken(token, m_chapterNumberFormat); + currVerseToken = null; + m_chapTokens.Add(currChapterToken); + } + else if (token.TextType == TextType.VerseNumber) + { + if (currChapterToken == null) + { + //assume chapter one + currChapterToken = new ChapterToken(token, 1); + m_chapTokens.Add(currChapterToken); + } + + currVerseToken = new VerseToken(token); + currChapterToken.VerseTokens.Add(currVerseToken); + } + else if (token.TextType == TextType.Verse) + { + if (currChapterToken == null) + { + // no chapter token and no verse number token + // oh no! use verse text token as default, but system + // should error on missing verse first. + if (currVerseToken == null) + { + //assume chapter one + currChapterToken = new ChapterToken( token, 1); + m_chapTokens.Add(currChapterToken); + + //assume verse one + currVerseToken = new VerseToken(token, 1); + currChapterToken.VerseTokens.Add(currVerseToken); + } + // no chapter token, but we have verse number token + // then use the verse number token + else + { + // this case should not happen because chapter tokens + // are automatically created if a verse number token is + // encountered first + Debug.Assert(false, "verse number token found without chapter number token"); + } + } + else + { + // we have a chapter token, but no verse number token + // use the chapter token as the default token. + if (currVerseToken == null) + { + //assume verse one + currVerseToken = new VerseToken(token, 1); + currChapterToken.VerseTokens.Add(currVerseToken); + } + // we have a chapter token, and a verse number token + // we are happy + else + { + // do nothing + } + } + currVerseToken.IncrementVerseTextCount(token); + } + } + + CheckChapterNumbers(); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the parameters needed for this check. + /// + /// ------------------------------------------------------------------------------------ + private void GetParameters() + { + m_versificationScheme = m_checksDataSource.GetParameterValue(ksVerseSchemeParam); + ScrVers scrVers; + try + { + scrVers = (ScrVers)Enum.Parse(typeof(ScrVers), + m_versificationScheme); + } + catch + { + // Default to English + scrVers = ScrVers.English; + } + + m_versification = VersificationTable.Get(scrVers); + + m_sBookId = m_checksDataSource.GetParameterValue(ksBookIdParam); + if (!int.TryParse(m_checksDataSource.GetParameterValue(ksChapterParam), out m_nChapterToCheck)) + m_nChapterToCheck = 0; + + string temp = m_checksDataSource.GetParameterValue(ksVerseBridgeParam); + string verseBridge = (string.IsNullOrEmpty(temp)) ? "-" : temp; + + temp = m_checksDataSource.GetParameterValue(ksScriptDigitZeroParam); + char scriptDigitZero = (string.IsNullOrEmpty(temp)) ? '0' : temp[0]; + string numberRange = string.Format("[{1}-{2}][{0}-{2}]*", scriptDigitZero, + (char)(scriptDigitZero + 1), (char)(scriptDigitZero + 9)); + + temp = m_checksDataSource.GetParameterValue(ksSubVerseLetterAParam); + if (!string.IsNullOrEmpty(temp)) + m_subVerseA = temp; + + temp = m_checksDataSource.GetParameterValue(ksSubVerseLetterBParam); + if (!string.IsNullOrEmpty(temp)) + m_subVerseB = temp; + string subverseRange = string.Format("[{0}{1}]?", m_subVerseA, m_subVerseB); + + // Original Regex for Roman script: "^[1-9][0-9]{0,2}[ab]?(-[1-9][0-9]{0,2}[ab]?)?$" + m_verseNumberFormat = new Regex(String.Format("^{0}{1}({2}{0}{1})?$", + numberRange, subverseRange, verseBridge)); + m_chapterNumberFormat = new Regex("^" + numberRange + "$"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Checks for missing chapters. + /// + /// ------------------------------------------------------------------------------------ + private void CheckChapterNumbers() + { + int bookId = BCVRef.BookToNumber(m_sBookId); + int lastChapInBook = m_versification.LastChapter(bookId); + int nextExpectedChapter = 1; + int prevChapNumber = 0; + bool[] chaptersFound = new bool[lastChapInBook + 1]; + + foreach (ChapterToken chapToken in m_chapTokens) + { + if (m_nChapterToCheck != 0 && chapToken.ChapterNumber != m_nChapterToCheck) + continue; + + string msg = null; + int errorArg = chapToken.ChapterNumber; + ITextToken token = chapToken.Token; + + if (!chapToken.Valid) + { + // Chapter number is invalid + AddError(token, 0, token.Text.Length, Localize("Invalid chapter number"), errorArg); + } + + if (chapToken.ChapterNumber >= 1) + { + if (chapToken.ChapterNumber > lastChapInBook) + { + // Chapter number is out of range + msg = Localize("Chapter number out of range"); + } + else if (chapToken.ChapterNumber == prevChapNumber) + { + // Chapter number is repeated + msg = Localize("Duplicate chapter number"); + } + else if (chapToken.ChapterNumber < nextExpectedChapter) + { + // Chapter number is out of order + msg = Localize("Chapter out of order; expected chapter {0}"); + errorArg = nextExpectedChapter; + } + + if (msg != null) + AddError(token, 0, token.Text.Length, msg, errorArg); + else + { + chaptersFound[chapToken.ChapterNumber] = true; + CheckVerseNumbers(chapToken, bookId); + } + } + + prevChapNumber = chapToken.ChapterNumber; + nextExpectedChapter = + Math.Max(chapToken.ChapterNumber + 1, nextExpectedChapter); + } + + CheckForMissingChapters(chaptersFound); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Checks for missing chapters in the current book. + /// + /// ------------------------------------------------------------------------------------ + private void CheckForMissingChapters(bool[] chaptersFound) + { + for (int chap = 1; chap < chaptersFound.Length; chap++) + { + if (chaptersFound[chap] || (m_nChapterToCheck != 0 && chap != m_nChapterToCheck)) + continue; + + // Find the first chapter token that immediately precedes where the + // missing chapter would have a token if it weren't missing. + ChapterToken precedingChapter = null; + foreach (ChapterToken chapToken in m_chapTokens) + { + if (chapToken.ChapterNumber > chap) + break; + precedingChapter = chapToken; + } + + // TODO: Deal with what token to use if a book has no chapters at all. + // This should always succeed + int offset = 0; + ITextToken token = null; + if (precedingChapter != null) + { + token = precedingChapter.Token; + offset = precedingChapter.Implicit ? 0 : token.Text.Length; + } + else if (m_chapTokens.Count > 0) + { + token = m_chapTokens[0].Token; + } + + if (token != null) + { + BCVRef scrRefStart = new BCVRef(BCVRef.BookToNumber(token.ScrRefString), chap, 0); + token.MissingStartRef = scrRefStart; + token.MissingEndRef = null; + AddError(token, offset, 0, Localize("Missing chapter number {0}"), chap); + } + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Check verse numbers. + /// + /// ------------------------------------------------------------------------------------ + private void CheckVerseNumbers(ChapterToken chapToken, int bookId) + { + int lastVrsInChap = m_versification.LastVerse(bookId, chapToken.ChapterNumber); + int nextExpectedVerse = 1; + bool expectingPartB = false; + int prevVerseStart = 0; + int prevVerseEnd = 0; + ITextToken[] versesFound = new ITextToken[lastVrsInChap + 1]; + versesFound[0] = chapToken.Token; + + foreach (VerseToken verseToken in chapToken.VerseTokens) + { + ITextToken token = verseToken.VerseNumber; + ITextToken reportedToken = token; + string msg = null; + int offset = 0; + int length = token.Text.Length; + object[] errorArgs = null; + bool countFoundVerses = false; + int curVerseStart; + int curVerseEnd; + VersePart vrsPart; + + if (verseToken.ImplicitVerseNumber == 1) + { + versesFound[1] = token; + continue; + } + + ParseVerseResult parseResult = ParseVerseNumber(token.Text, + out curVerseStart, out curVerseEnd, out vrsPart); + + if (parseResult == ParseVerseResult.ValidWithSpaceInVerse) + { + // Log error telling user there are spaces before or after the verse + // number. This means the space(s) have the verse number style. This isn't + // considered an invalid verse number, but we do need to tell the user. + AddError(token, 0, token.Text.Length, + Localize("Space found in verse number"), token.Text); + } + else if (parseResult == ParseVerseResult.ValidWithSpaceInVerseBridge) + { + // Log error telling user there are spaces in a verse bridge. This + // means the space(s) have the verse number style. This isn't considered + // an invalid verse number, but we do need to tell the user. + AddError(token, 0, token.Text.Length, + Localize("Space found in verse bridge"), token.Text); + } + + if (parseResult == ParseVerseResult.Invalid) + { + msg = Localize("Invalid verse number"); + } + else if ((parseResult != ParseVerseResult.InvalidFormat) && VersesAlreadyFound(curVerseStart, curVerseEnd, versesFound) && + !(expectingPartB && vrsPart == VersePart.PartB)) + { + if (AnyOverlappingVerses(curVerseStart, curVerseEnd, + prevVerseStart, prevVerseEnd, out errorArgs)) + { + // Duplicate verse(s) found. + msg = (errorArgs.Length == 1 ? + Localize("Duplicate verse number") : + Localize("Duplicate verse numbers")); + } + else + { + // Verse number(s) are unexpected + msg = (curVerseStart == curVerseEnd ? + Localize("Unexpected verse number") : + Localize("Unexpected verse numbers")); + } + } + else if (AnyOverlappingVerses(curVerseStart, curVerseEnd, + lastVrsInChap + 1, int.MaxValue, out errorArgs)) + { + countFoundVerses = true; + // Start and/or end verse is out of range + msg = (errorArgs.Length == 1 ? + Localize("Verse number out of range") : + Localize("Verse numbers out of range")); + } + else if (curVerseStart < nextExpectedVerse) + { + // Verse number(s) are out of order + countFoundVerses = true; + if (nextExpectedVerse <= lastVrsInChap) + { + errorArgs = new object[] { nextExpectedVerse }; + msg = (curVerseStart == curVerseEnd ? + Localize("Verse number out of order; expected verse {0}") : + Localize("Verse numbers out of order; expected verse {0}")); + } + else + { + msg = (curVerseStart == curVerseEnd ? + Localize("Verse number out of order") : + Localize("Verse numbers out of order")); + } + } + else if (((vrsPart == VersePart.PartB) != expectingPartB) && + (curVerseStart == curVerseEnd)) + { + // Missing part A or B + // TODO: cover cases like "4a 5-7" and "4 5b-7". This would require + // ParseVerseNumber() to detect verse parts at the beginning of bridges. + reportedToken = (vrsPart == VersePart.PartB ? token : versesFound[prevVerseEnd]); + msg = Localize("Missing verse number {0}"); + offset = (vrsPart == VersePart.PartB ? 0 : reportedToken.Text.Length); + length = 0; + int reportedVrsNum = (vrsPart == VersePart.PartB ? curVerseStart : prevVerseEnd); + string fmt = (vrsPart == VersePart.PartB ? "{0}a" : "{0}b"); + errorArgs = new object[] { string.Format(fmt, reportedVrsNum) }; + countFoundVerses = true; + } + else if ((vrsPart == VersePart.PartB && curVerseStart > prevVerseEnd) && + (curVerseStart == curVerseEnd)) + { + // Missing both a part B and A + reportedToken = versesFound[prevVerseEnd]; + + AddError(reportedToken, reportedToken.Text.Length, 0, + Localize("Missing verse number {0}"), + new object[] { string.Format("{0}b", prevVerseEnd) }); + + AddError(token, 0, 0, Localize("Missing verse number {0}"), + new object[] { string.Format("{0}a", curVerseStart) }); + } + + if (msg != null) + { + // Report the error found. + if (errorArgs == null) + AddError(reportedToken, offset, length, msg); + else + AddError(reportedToken, offset, length, msg, errorArgs); + } + + if (msg == null || countFoundVerses) + { + // No error was found for the current verse range so set all the verses + // in our found verse list corresponding to those in the range. + for (int i = curVerseStart; i <= Math.Min(curVerseEnd, lastVrsInChap); i++) + versesFound[i] = token; + } + + if (parseResult == ParseVerseResult.InvalidFormat) + AddError(token, 0, token.Text.Length, Localize("Invalid verse number"), token.Text); + + // only worry about this if the chapter and/or verse tokens are in order + if (verseToken.VerseTextCount < 1) + { + AddError(verseToken.VerseNumber, 0, verseToken.VerseNumber.Text.Length, + Localize("Missing verse text in verse {0}"), verseToken.VerseNumber.Text); + } + + // Determine next expected verse. + // Don't expect a partB if there was an error with partA + expectingPartB = (vrsPart == VersePart.PartA && msg == null); + if (!expectingPartB && curVerseEnd <= lastVrsInChap) + nextExpectedVerse = curVerseEnd + 1; + + prevVerseStart = curVerseStart; + prevVerseEnd = curVerseEnd; + } + + CheckForMissingVerses(versesFound, bookId, chapToken.ChapterNumber); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Checks the list of found verses to see if any verses in the specified range have + /// already been found. + /// + /// ------------------------------------------------------------------------------------ + private bool VersesAlreadyFound(int curVerseStart, int curVerseEnd, + ITextToken[] versesFound) + { + for (int verse = curVerseStart; verse <= curVerseEnd; verse++) + { + if (verse < versesFound.Length && verse > 0 && versesFound[verse] != null) + return true; + } + + return false; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Checks for missing verses in the current chapter. + /// + /// ------------------------------------------------------------------------------------ + private void CheckForMissingVerses(ITextToken[] versesFound, int bookId, int chapNumber) + { + ITextToken prevToken = versesFound[0]; + + for (int verse = 1; verse < versesFound.Length; verse++) + { + if (versesFound[verse] != null) + { + prevToken = versesFound[verse]; + continue; + } + + // At this point, we know we've found a missing verse. Now we need + // to determine whether or not this is the first verse in a range + // of missing verses or just a single missing verse. + int startVerse = verse; + int endVerse = verse; + while (endVerse < versesFound.Length - 1 && versesFound[endVerse + 1] == null) + endVerse++; + + prevToken.MissingStartRef = new BCVRef(bookId, chapNumber, startVerse); + + // If previous token is a verse token and it's verse 1 that's missing, + // then we know we're dealing with the case of a missing chapter token + // and a missing verse 1 token in that chapter. In that case, we want + // the offset to fall just before the verse of the token (which is the + // first verse token we found in the chapter and which we're assuming + // is associated with a verse that would come after verse 1). + int offset = (prevToken.TextType == TextType.VerseNumber && verse == 1 ? + 0 : prevToken.Text.Length); + + if (startVerse == endVerse) + AddError(prevToken, offset, 0, Localize("Missing verse number {0}"), startVerse); + else + { + prevToken.MissingEndRef = new BCVRef(bookId, chapNumber, endVerse); + AddError(prevToken, offset, 0, Localize("Missing verse numbers {0}-{1}"), + startVerse, endVerse); + } + + verse = endVerse; + } + } + + #region Helper methods + /// ------------------------------------------------------------------------------------ + /// + /// Parses a verse number. + /// + /// The text of the token containing the verse number. + /// The cur verse start. + /// The cur verse end. + /// The VRS part. + /// + /// ------------------------------------------------------------------------------------ + private ParseVerseResult ParseVerseNumber(string runChars, out int curVerseStart, + out int curVerseEnd, out VersePart vrsPart) + { + string literalVerse; + string remainingText; + BCVRef firstRefer = new BCVRef(); + BCVRef lastRefer = new BCVRef(); + string trimmedRun = runChars.TrimStart(null); + bool hasPrecedingWhiteSpace = (runChars.Length != trimmedRun.Length); + vrsPart = VersePart.NA; + + //Check for a correct format + if (!m_verseNumberFormat.IsMatch(runChars.Replace(" ", string.Empty))) + { + // Even though the verse number is invalid, we'll still attempt to interpret it + // as a verse number (or bridge) since that might avoid spurious "missing verse" + // errors. + if (BCVRef.VerseToScrRef(trimmedRun, out literalVerse, out remainingText, + ref firstRefer, ref lastRefer) && firstRefer.Verse > 0) + { + curVerseStart = firstRefer.Verse; + curVerseEnd = lastRefer.Verse; + return ParseVerseResult.InvalidFormat; + } + else + { + curVerseStart = 0; + curVerseEnd = 0; + return ParseVerseResult.Invalid; + } + } + + // Useful method VerseToScrRef existing in BCVRef returns the parts of a verse + // bridge and any non-numerical remaining text in the run. Allows accounting for + // possible verse bridges. Allows accounting for verse parts, 10a 10b, account + // for valid case: 7-8a 8b, if encounter "a", expectedVerse repeats in order to + // expect 8b . + if (!BCVRef.VerseToScrRef(trimmedRun, out literalVerse, out remainingText, + ref firstRefer, ref lastRefer)) + { + curVerseStart = 0; + curVerseEnd = 0; + return ParseVerseResult.Invalid; + } + + curVerseStart = firstRefer.Verse; + curVerseEnd = lastRefer.Verse; + string remainingVerse = remainingText.Trim(); + bool hasWhiteSpace = (hasPrecedingWhiteSpace || + (remainingVerse.Length != remainingText.Length)); + + // note: if verse bridge, assumes, 'a' is on verse end + // checks for a part "a" in verse + if (remainingVerse == m_subVerseA) + vrsPart = VersePart.PartA; + else if (remainingVerse == m_subVerseB) + vrsPart = VersePart.PartB; + + // If there was a non-numerical part or verse number > 999 that caused an error + // making verseStart or verseEnd returned as 0 it will parse the trimmed + // remainingVerse string to an integer and assign it as the verse number + if (remainingVerse.Length != 0) + { + if (curVerseStart == 0 && !int.TryParse(remainingVerse, out curVerseStart)) + return ParseVerseResult.Invalid; + + if (curVerseEnd == 0 && !int.TryParse(remainingVerse, out curVerseEnd)) + return ParseVerseResult.Invalid; + + // adds error if verse part is not 'a' or 'b', for example "10c" would + // be invalid verse number if " 13", still invalid format + if (remainingVerse != m_subVerseA && remainingVerse != m_subVerseB) + return ParseVerseResult.Invalid; + } + + if (!hasWhiteSpace) + return ParseVerseResult.Valid; + + return (curVerseStart == curVerseEnd ? ParseVerseResult.ValidWithSpaceInVerse : + ParseVerseResult.ValidWithSpaceInVerseBridge); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Determines whether or not the two specified verse ranges contain any overlapping + /// verses and returns the range of overlapping verses and a flag indicating whether + /// there are overlapping verses. + /// + /// ------------------------------------------------------------------------------------ + public bool AnyOverlappingVerses(int start1, int end1, int start2, int end2, + out object[] commonVerses) + { + commonVerses = null; + List common = new List(); + for (int i = start1; i <= end1; i++) + { + if (i >= start2 && i <= end2) + common.Add(i); + } + + if (common.Count > 0) + { + // When there are two or less overlapping verse(s) the returned array contains + // all overlapping verses. Otherwise, it contains only the first and last + // overlapping verses, since we only want to know the range. + commonVerses = (common.Count <= 2 ? common.ToArray() : + new object[] { common[0], common[common.Count - 1] }); + } + + return (commonVerses != null); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Records an error. + /// + /// The current token being processed. + /// Offset in the token where the offending text begins. + /// The length of the offending text. + /// The message. + /// The arguments to format the message. + /// ------------------------------------------------------------------------------------ + private void AddError(ITextToken token, int offset, int length, string message, + params object[] args) + { + string formattedMsg = (args != null) ? string.Format(message, args) : + String.Format(message); + + TextTokenSubstring tts = new TextTokenSubstring(token, offset, length, formattedMsg); + m_recordError(new RecordErrorEventArgs(tts, CheckId)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Adds an error for a missing chapter number. + /// + /// ------------------------------------------------------------------------------------ + private void AddMissingChapterError(ITextToken token, int missingChapter, int offset) + { + BCVRef scrRef = new BCVRef(token.ScrRefString); + scrRef.Chapter = missingChapter; + scrRef.Verse = 0; + token.MissingStartRef = scrRef; + AddError(token, offset, 0, Localize("Missing chapter number {0}"), missingChapter); + } + + #endregion + } + + #region ChapterToken class + /// ---------------------------------------------------------------------------------------- + /// + /// + /// + /// ---------------------------------------------------------------------------------------- + internal class ChapterToken + { + internal ITextToken Token; + internal bool Implicit; + internal bool Valid = true; + private int m_chapNumber; + private List m_verseTokens = new List(); + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + internal ChapterToken(ITextToken token, Regex chapterNumberFormat) + { + Token = token; + m_chapNumber = 0; + if (!chapterNumberFormat.IsMatch(Token.Text)) + Valid = false; + foreach (char ch in token.Text) + { + if (Char.IsDigit(ch)) + { + m_chapNumber *= 10; + m_chapNumber += (int) Char.GetNumericValue(ch); + } + else + { + Valid = false; + m_chapNumber = -1; + break; + } + } + Implicit = false; + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + internal ChapterToken(ITextToken token, int chapNumber) + { + Token = token; + m_chapNumber = chapNumber; + Implicit = true; + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + internal int ChapterNumber + { + get { return m_chapNumber; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + internal List VerseTokens + { + get { return m_verseTokens; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the last verse number token associated with this chapter. If there isn't one, then + /// this chapter's token is returned. + /// + /// ------------------------------------------------------------------------------------ + internal ITextToken LastVerseToken + { + get + { + return (m_verseTokens.Count == 0 ? + Token : m_verseTokens[m_verseTokens.Count - 1].VerseNumber); + } + } + } + + #endregion + + #region VerseToken class + /// ---------------------------------------------------------------------------------------- + /// + /// Class to represent a verse number and a set of one or more verses + /// + /// ---------------------------------------------------------------------------------------- + internal class VerseToken + { + // the one and only verse number + private ITextToken m_verseNumberToken=null; + // one or more verse text tokens (most probably a paragraph) + private int m_nbrTextTokens = 0; + private int m_implicitVerseNumber = -1; + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + internal VerseToken( ITextToken verseNumber) + { + m_verseNumberToken = verseNumber; + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + internal VerseToken(ITextToken implicitVerseNumber, int verseNumber) + { + m_verseNumberToken = implicitVerseNumber; + m_implicitVerseNumber = verseNumber; + } + + /// ------------------------------------------------------------------------------------ + /// + /// A getter for the verse text body. + /// + /// ------------------------------------------------------------------------------------ + internal ITextToken VerseNumber + { + get { return m_verseNumberToken; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Increment verse text count + /// + /// ------------------------------------------------------------------------------------ + internal void IncrementVerseTextCount(ITextToken token) + { + // only count tokens that aren't all whitespace. + if (token.Text.Trim().Length > 0) + m_nbrTextTokens++; + } + + /// ------------------------------------------------------------------------------------ + /// + /// return verse text count + /// + /// ------------------------------------------------------------------------------------ + internal int VerseTextCount + { + get { return m_nbrTextTokens; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// return flag indicating if this is an implied verse number + /// + /// ------------------------------------------------------------------------------------ + internal bool Implicit + { + get { return m_implicitVerseNumber != -1; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// return the implied verse number + /// + /// ------------------------------------------------------------------------------------ + internal int ImplicitVerseNumber + { + get { return m_implicitVerseNumber; } + } + } + + #endregion + +} diff --git a/Lib/src/ScrChecks/CharactersCheck.cs b/Lib/src/ScrChecks/CharactersCheck.cs new file mode 100644 index 0000000000..70ab6d91be --- /dev/null +++ b/Lib/src/ScrChecks/CharactersCheck.cs @@ -0,0 +1,409 @@ +// Copyright (c) 2015-2017 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using SIL.FieldWorks.Common.FwUtils; + +namespace SILUBS.ScriptureChecks +{ + /// ---------------------------------------------------------------------------------------- + /// + /// Checks all characters to see if they are valid + /// + /// ---------------------------------------------------------------------------------------- + public class CharactersCheck : IScrCheckInventory + { + #region Constants + private const string kValidItemsParameter = "ValidCharacters"; + private const string kInvalidItemsParameter = "InvalidCharacters"; + private const string kAlwaysValidItemsParameter = "AlwaysValidCharacters"; + #endregion + + #region Data Members + IChecksDataSource m_checksDataSource; + CharacterCategorizer m_categorizer; + List m_characterSequences; + private string m_alwaysValidCharacters; + string m_validItems; + string m_invalidItems; + Dictionary m_validItemsDictionary; + #endregion + + #region Constructors + /// ------------------------------------------------------------------------------------ + /// + /// Initializes a new instance of the class. + /// + /// ------------------------------------------------------------------------------------ + public CharactersCheck(IChecksDataSource _checksDataSource) + { + m_checksDataSource = _checksDataSource; + } + #endregion + + #region Properties + /// ------------------------------------------------------------------------------------ + /// + /// THIS REALLY OUGHT TO BE List + /// Valid items, separated by spaces. + /// Inventory form queries this to know how what status to give each item + /// in the inventory. Inventory form updates this if user has changed the status + /// of any item. + /// + /// + /// ------------------------------------------------------------------------------------ + public string ValidItems + { + get + { + List itemsList = new List(m_validItemsDictionary.Keys); + return string.Join(" ", itemsList.ToArray()); + } + set + { + m_validItemsDictionary = StringToDictionary(value); + m_validItems = value.Trim(); + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// THIS REALLY OUGHT TO BE List + /// Invalid items, separated by spaces. + /// Inventory form queries this to know how what status to give each item + /// in the inventory. Inventory form updates this if user has changed the status + /// of any item. + /// + /// + /// ------------------------------------------------------------------------------------ + public string InvalidItems + { + get { return m_invalidItems; } + set + { + // REVIEW: Why doesn't this add items to the dictionary as well. + m_invalidItems = value.Trim(); + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the name of the check. + /// + /// ------------------------------------------------------------------------------------ + public string CheckName + { + get { return m_checksDataSource.GetLocalizedString("Characters"); } + } + + /// ------------------------------------------------------------------------------------ + /// + /// The unique identifier of the check. This should never be changed! + /// + /// ------------------------------------------------------------------------------------ + public Guid CheckId { get { return StandardCheckIds.kguidCharacters; } } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the name of the group which contains this check. + /// + /// ------------------------------------------------------------------------------------ + public string CheckGroup + { + get { return m_checksDataSource.GetLocalizedString("Basic"); } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets a number that can be used to order this check relative to other checks in the + /// same group when displaying checks in the UI. + /// + /// ------------------------------------------------------------------------------------ + public float RelativeOrder + { + get { return 200; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the description for this check. + /// + /// ------------------------------------------------------------------------------------ + public string Description + { + get { return m_checksDataSource.GetLocalizedString("Checks for potentially invalid characters."); } + } + + /// ------------------------------------------------------------------------------------ + /// + /// This is the column header of the first column when you create an + /// inventory of this type of error. + /// + /// ------------------------------------------------------------------------------------ + public string InventoryColumnHeader + { + get { return m_checksDataSource.GetLocalizedString("Character"); } + } + #endregion + + /// ------------------------------------------------------------------------------------ + /// + /// Converts a string to a dictionary + /// + /// Space-delimited list of valid characters + /// + /// Dictionary containing the items in the list passed + /// + /// ------------------------------------------------------------------------------------ + private Dictionary StringToDictionary(string value) + { + Dictionary dict = new Dictionary(); + + if (value.Length > 0) + { + // 02 JUN 2008, Phil Hopper: Check if space is a valid character. + + if (value[0] == ' ') + dict[value.Substring(0, 1)] = true; + + value = value.Trim(); + + if (value != string.Empty) + { + foreach (string item in value.Split()) + dict[item] = true; + } + } + + return dict; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Sets the list of default valid items. + /// + /// ------------------------------------------------------------------------------------ + private void SetDefaultValidItems() + { + m_validItemsDictionary = new Dictionary(); + + foreach (char cc in m_categorizer.WordFormingCharacters) + m_validItemsDictionary[cc.ToString()] = true; + + //foreach (char cc in m_categorizer.PunctuationCharacters) + // m_validItemsDictionary[cc.ToString()] = true; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Update the parameter values for storing the valid and invalid lists in CheckDataSource + /// and then save them. This is here because the inventory form does not know the names of + /// the parameters that need to be saved for a given check, only the check knows this. + /// + /// ------------------------------------------------------------------------------------ + public void Save() + { + m_checksDataSource.SetParameterValue(kValidItemsParameter, m_validItems); + m_checksDataSource.SetParameterValue(kInvalidItemsParameter, m_invalidItems); + m_checksDataSource.Save(); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Runs the Characters Scripture checks. + /// + /// The Scripture tokens to check. + /// Method to record the error. + /// ------------------------------------------------------------------------------------ + public void Check(IEnumerable toks, RecordErrorHandler record) + { + // This method is called in ScrChecksDataSource.cs - RunCheck(IScriptureCheck check) + m_categorizer = m_checksDataSource.CharacterCategorizer; + + // Get parameters needed to run this check. + GetParameters(); + + // Find all invalid characters and place them in 'm_characterSequences' + GetReferences(toks, string.Empty, true); + + foreach (TextTokenSubstring tts in m_characterSequences) + { + tts.Message = (tts.ToString().Length > 1) ? + m_checksDataSource.GetLocalizedString("Invalid or unknown character diacritic combination") : + m_checksDataSource.GetLocalizedString("Invalid or unknown character"); + + record(new RecordErrorEventArgs(tts, CheckId)); + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Get (invalid) character references. + /// + /// ------------------------------------------------------------------------------------ + public List GetReferences(IEnumerable tokens, string desiredKey) + { + return GetReferences(tokens, desiredKey, false); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Get (invalid) character references. + /// + /// ------------------------------------------------------------------------------------ + private List GetReferences(IEnumerable tokens, string desiredKey, + bool invalidCharactersOnly) + { + if (m_categorizer == null) + m_categorizer = m_checksDataSource.CharacterCategorizer; + + m_characterSequences = new List(); + Dictionary> htValidChars = + new Dictionary>(); + Dictionary currentDictionary = null; + string preferredLocale = m_checksDataSource.GetParameterValue("PreferredLocale") ?? string.Empty; + + foreach (ITextToken tok in tokens) + { + string locale = tok.Locale ?? string.Empty; + + if (tok.Text == null || (!invalidCharactersOnly && locale != preferredLocale)) + continue; + + if (!htValidChars.TryGetValue(locale, out currentDictionary)) + { + currentDictionary = StringToDictionary(GetValidCharacters(locale)); + htValidChars.Add(locale, currentDictionary); + } + + int offset = 0; + + foreach (string key in ParseCharacterSequences(tok.Text)) + { + bool lookingForASpecificKey = (desiredKey != ""); + bool keyMatches = (desiredKey == key); + bool invalidItem = false; + + if (invalidCharactersOnly) + { + // REVIEW (BobbydV): IndexOf causes false positives for certain + // characters (e.g., U+0234 & U+1234). I think Contains is easier to read + // and should work for both TE and Paratext for the "AlwaysValidCharacters" + // list. (TomB) + if (!m_alwaysValidCharacters.Contains(key) && + !currentDictionary.ContainsKey(key)) + invalidItem = true; + } + + if ((lookingForASpecificKey && keyMatches) || + (!lookingForASpecificKey && !invalidCharactersOnly) || + (invalidCharactersOnly && invalidItem)) + { + TextTokenSubstring tts = new TextTokenSubstring(tok, offset, key.Length); + m_characterSequences.Add(tts); + } + + offset += key.Length; + } + } + + return m_characterSequences; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the valid characters list for the specified locale. + /// + /// ------------------------------------------------------------------------------------ + private string GetValidCharacters(string locale) + { + string parameter = (string.IsNullOrEmpty(locale) ? + kValidItemsParameter : kValidItemsParameter + "_" + locale); + + string validChars = m_checksDataSource.GetParameterValue(parameter); + validChars = validChars ?? string.Empty; + + return validChars; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Parses a string into character sequences. + /// + /// ------------------------------------------------------------------------------------ + public IEnumerable ParseCharacterSequences(string text) + { + string key = ""; + bool diacricsFollow = m_categorizer.DiacriticsFollowBaseCharacters(); + + foreach (char cc in text) + { + if (m_categorizer.IsDiacritic(cc)) + { + if (diacricsFollow) + { + key += cc; + } + else + { + if (key != "") yield return key; + key = cc.ToString(); + } + } + else + { + if (key != "") yield return key; + key = cc.ToString(); + } + } + + if (key != "") yield return key; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the parameters needed for this check. + /// + /// ------------------------------------------------------------------------------------ + private void GetParameters() + { + string validItemsText = m_checksDataSource.GetParameterValue(kValidItemsParameter); + if (validItemsText == null || validItemsText.Trim() == "") + SetDefaultValidItems(); + else + ValidItems = validItemsText; + + m_alwaysValidCharacters = m_checksDataSource.GetParameterValue(kAlwaysValidItemsParameter); + if (String.IsNullOrEmpty(m_alwaysValidCharacters)) + m_alwaysValidCharacters = " \r\n*+\\0123456789"; + + InvalidItems = m_checksDataSource.GetParameterValue(kInvalidItemsParameter); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Creates an inventory of the tokens. + /// + /// The book number. + /// The inventory. + /// The tokens. + /// ------------------------------------------------------------------------------------ + public void InventoryTokens(int bookNum, TextInventory inventory, + IEnumerable tokens) + { + foreach (ITextToken tok in tokens) + { + foreach (string key in ParseCharacterSequences(tok.Text)) + { + // Don't inventory spaces, lf, cr. + if (key == " " || key == "\r" || key == "\n") + continue; + + inventory.GetValue(key).AddReference(bookNum); + } + } + } + } +} diff --git a/Lib/src/ScrChecks/MatchedPairsCheck.cs b/Lib/src/ScrChecks/MatchedPairsCheck.cs new file mode 100644 index 0000000000..312652177b --- /dev/null +++ b/Lib/src/ScrChecks/MatchedPairsCheck.cs @@ -0,0 +1,471 @@ +// Copyright (c) 2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using SIL.FieldWorks.Common.FwUtils; + +namespace SILUBS.ScriptureChecks +{ + #region MatchedPairsCheck class + /// ---------------------------------------------------------------------------------------- + /// + /// The matched pairs check has an inventory mode in Paratext. TE doesn't use the inventory + /// stuff. + /// + /// ---------------------------------------------------------------------------------------- + public class MatchedPairsCheck : IScrCheckInventory + { + private const string kValidItemsParameter = "MatchedPairingCharacters"; + private const string kInvalidItemsParameter = "UnmatchedPairingCharacters"; + + private IChecksDataSource m_checksDataSource; +// private CharacterCategorizer m_characterCategorizer; + private List m_unmatchedPairs; + private string m_validItems; + private string m_invalidItems; + private List m_validItemsList; + + /// ------------------------------------------------------------------------------------ + /// + /// Initializes a new instance of the class. + /// + /// The checks data source. + /// ------------------------------------------------------------------------------------ + public MatchedPairsCheck(IChecksDataSource checksDataSource) + { + m_checksDataSource = checksDataSource; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Returns a localized version of the specified string. + /// + /// ------------------------------------------------------------------------------------ + private string Localize(string strToLocalize) + { + return m_checksDataSource.GetLocalizedString(strToLocalize); + } + + /// ------------------------------------------------------------------------------------ + /// + /// THIS REALLY OUGHT TO BE List + /// Valid items, separated by spaces. + /// Inventory form queries this to know how what status to give each item + /// in the inventory. Inventory form updates this if user has changed the status + /// of any item. + /// + /// ------------------------------------------------------------------------------------ + public string ValidItems + { + get { return m_validItems; } + set + { + m_validItems = (value == null ? string.Empty : value.Trim()); + m_validItemsList = new List(); + if (m_validItems != string.Empty) + m_validItemsList = new List(m_validItems.Split()); + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// THIS REALLY OUGHT TO BE List + /// Invalid items, separated by spaces. + /// Inventory form queries this to know how what status to give each item + /// in the inventory. Inventory form updates this if user has changed the status + /// of any item. + /// + /// ------------------------------------------------------------------------------------ + public string InvalidItems + { + get { return m_invalidItems; } + set { m_invalidItems = (value == null ? string.Empty : value.Trim());} + } + + /// ------------------------------------------------------------------------------------ + /// + /// The full name of the check, e.g. "Matched Pairs". After replacing any spaces + /// with underscores, this can also be used as a key for looking up a localized + /// string if the application supports localization. If this is ever changed, + /// DO NOT change the CheckId! + /// + /// ------------------------------------------------------------------------------------ + public string CheckName { get { return Localize("Matching Punctuation Pairs"); } } + + /// ------------------------------------------------------------------------------------ + /// + /// The unique identifier of the check. This should never be changed! + /// + /// ------------------------------------------------------------------------------------ + public Guid CheckId { get { return StandardCheckIds.kguidMatchedPairs; } } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the name of the group which contains this check. + /// + /// ------------------------------------------------------------------------------------ + public string CheckGroup { get { return Localize("Basic"); } } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets a number that can be used to order this check relative to other checks in the + /// same group when displaying checks in the UI. + /// + /// ------------------------------------------------------------------------------------ + public float RelativeOrder + { + get { return 300; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the description for this check. + /// + /// ------------------------------------------------------------------------------------ + public string Description { get { return Localize("Checks for unmatched parentheses or other punctuation that normally occurs in pairs."); } } + + /// ------------------------------------------------------------------------------------ + /// + /// This is the column header of the first column when you create an + /// inventory of this type of error (not used in TE). + /// + /// ------------------------------------------------------------------------------------ + public string InventoryColumnHeader + { + get { return Localize("Pairs"); } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Update all parameter values in CheckDataSource and then save them. + /// This is here because the inventory form does not know what parameters + /// need to be saved for a given check, only the check knows this. + /// + /// ------------------------------------------------------------------------------------ + public void Save() + { + m_checksDataSource.SetParameterValue(kValidItemsParameter, m_validItems); + m_checksDataSource.SetParameterValue(kInvalidItemsParameter, m_invalidItems); + m_checksDataSource.Save(); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// + /// + /// ------------------------------------------------------------------------------------ + public void Check(IEnumerable toks, RecordErrorHandler record) + { + m_unmatchedPairs = GetReferences(toks, string.Empty); + + foreach (TextTokenSubstring tts in m_unmatchedPairs) + { + if (!m_validItemsList.Contains(tts.ToString())) + record(new RecordErrorEventArgs(tts, CheckId)); + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + public List GetReferences(IEnumerable tokens, string desiredKey) + { +#if DEBUG + List AllTokens = new List(tokens); + if (AllTokens.Count == 0) + { + // Keep the compiler from complaining about assigning to a variable, but not using it. + } +#endif +// m_characterCategorizer = m_checksDataSource.CharacterCategorizer; + ValidItems = m_checksDataSource.GetParameterValue(kValidItemsParameter); + InvalidItems = m_checksDataSource.GetParameterValue(kInvalidItemsParameter); + + string preferredLocale = + m_checksDataSource.GetParameterValue("PreferredLocale") ?? string.Empty; + + string poeticStyles = + m_checksDataSource.GetParameterValue("PoeticStyles"); + + string introductionOutlineStyles = + m_checksDataSource.GetParameterValue("IntroductionOutlineStyles"); + + MatchedPairList pairList = + MatchedPairList.Load(m_checksDataSource.GetParameterValue("MatchedPairs"), + m_checksDataSource.GetParameterValue("DefaultWritingSystemName")); + + StyleCategorizer styleCategorizer = + new StyleCategorizer(poeticStyles, introductionOutlineStyles); + + ProcessMatchedPairTokens bodyProcessor = new ProcessMatchedPairTokens( + m_checksDataSource, pairList, styleCategorizer); + + ProcessMatchedPairTokens noteProcessor = new ProcessMatchedPairTokens( + m_checksDataSource, pairList, styleCategorizer); + + m_unmatchedPairs = new List(); + + foreach (ITextToken tok in tokens) + { + if (tok.Text == null || (tok.Locale ?? string.Empty) != preferredLocale) + continue; + + if (tok.TextType == TextType.Note) + { + // if a new note is starting finalize any sequences from the previous note + if (tok.IsNoteStart) + noteProcessor.FinalizeResult(desiredKey, m_unmatchedPairs); + noteProcessor.ProcessToken(tok, desiredKey, m_unmatchedPairs); + } + else if (tok.TextType == TextType.Verse || tok.TextType == TextType.Other || tok.IsParagraphStart) + { + // body text: finalize any note that was in progress and continue with body text + noteProcessor.FinalizeResult(desiredKey, m_unmatchedPairs); + bodyProcessor.ProcessToken(tok, desiredKey, m_unmatchedPairs); + } + } + + noteProcessor.FinalizeResult(desiredKey, m_unmatchedPairs); + bodyProcessor.FinalizeResult(desiredKey, m_unmatchedPairs); + + return m_unmatchedPairs; + } + } + + #endregion + + #region ProcessMatchedPairTokens class + /// ---------------------------------------------------------------------------------------- + /// + /// + /// + /// ---------------------------------------------------------------------------------------- + class ProcessMatchedPairTokens + { + private List m_pairTokensFound = new List(); + private MatchedPairList m_pairList; + private StyleCategorizer m_styleCategorizer; + private IChecksDataSource m_checksDataSource; + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + public ProcessMatchedPairTokens(IChecksDataSource checksDataSource, + MatchedPairList pairList, StyleCategorizer styleCategorizer) + { + m_checksDataSource = checksDataSource; + m_pairList = pairList; + m_styleCategorizer = styleCategorizer; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets a value indicating whether or not any of the found pair tokens is part of a + /// pair that should be closed by the end of the paragraph in which it is found. + /// + /// ------------------------------------------------------------------------------------ + private bool AnyFoundPairsClosedByPara + { + get + { + foreach (TextTokenSubstring tok in m_pairTokensFound) + { + MatchedPair pair = m_pairList.GetPairForOpen(tok.Text); + if (pair != null && !pair.PermitParaSpanning) + return true; + } + + return false; + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + public void ProcessToken(ITextToken tok, string desiredKey, List result) + { + if (AnyFoundPairsClosedByPara && tok.IsParagraphStart && + !m_styleCategorizer.IsPoeticStyle(tok.ParaStyleName)) + { + FinalizeResult(desiredKey, result); + } + + for (int i = 0; i < tok.Text.Length; i++) + { + string cc = tok.Text.Substring(i, 1); + if (m_pairList.BelongsToPair(cc)) + { + StoreFoundPairToken(tok, i); + RemoveMatchedPunctAtEndOfFirstWordInIntroOutline(tok, i); + RemoveIfMatchedPairFound(); + RecordOverlappingPairs(); + } + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + private void StoreFoundPairToken(ITextToken tok, int i) + { + TextTokenSubstring tts = new TextTokenSubstring(tok, i, 1); + + // Assign an initial, default message which may be changed later + tts.Message = m_checksDataSource.GetLocalizedString("Unmatched punctuation"); + m_pairTokensFound.Add(tts); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + private void RemoveMatchedPunctAtEndOfFirstWordInIntroOutline(ITextToken tok, int i) + { + if (!m_styleCategorizer.IsIntroductionOutlineStyle(tok.ParaStyleName)) + return; + + // See if we are at the end of the first word + string[] words = tok.Text.Split(); + string firstWord = words[0]; + if (i + 1 != firstWord.Length) + return; + + int lastFoundPairToken = m_pairTokensFound.Count - 1; + + // If the current matched pair is in an introduction outline, + // ends the first word, and is a closing punct, remove it. + if (m_pairList.IsClose(m_pairTokensFound[lastFoundPairToken].Text)) + m_pairTokensFound.RemoveAt(lastFoundPairToken); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Checks if the last two pair tokens in the found pair tokens are a matched pair. + /// If so, they are removed from the found list since a matched set has been complete. + /// + /// ------------------------------------------------------------------------------------ + private void RemoveIfMatchedPairFound() + { + if (m_pairTokensFound.Count < 2) + return; + + TextTokenSubstring possibleClose = m_pairTokensFound[m_pairTokensFound.Count - 1]; + TextTokenSubstring possibleOpen = m_pairTokensFound[m_pairTokensFound.Count - 2]; + + if (m_pairList.IsMatchedPair(possibleOpen.Text, possibleClose.Text)) + { + // Found a matched pair, remove last two tokens + m_pairTokensFound.RemoveAt(m_pairTokensFound.Count - 1); + m_pairTokensFound.RemoveAt(m_pairTokensFound.Count - 1); + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + private void RecordOverlappingPairs() + { + if (m_pairTokensFound.Count < 4) + return; + + TextTokenSubstring tok1 = m_pairTokensFound[m_pairTokensFound.Count - 4]; + TextTokenSubstring tok2 = m_pairTokensFound[m_pairTokensFound.Count - 3]; + TextTokenSubstring tok3 = m_pairTokensFound[m_pairTokensFound.Count - 2]; + TextTokenSubstring tok4 = m_pairTokensFound[m_pairTokensFound.Count - 1]; + + // Check if pairs are overlapping. + if (m_pairList.IsOpen(tok1.Text) && m_pairList.IsOpen(tok2.Text) && + m_pairList.IsMatchedPair(tok1.Text, tok3.Text) && + m_pairList.IsMatchedPair(tok2.Text, tok4.Text)) + { + // Found overlapping pairs, so record this by changing + // the message in the needed TextTokenSubstrings + string msg = m_checksDataSource.GetLocalizedString("Overlapping pair"); + tok1.Message = tok2.Message = tok3.Message = tok4.Message = msg; + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + public void FinalizeResult(string desiredKey, List result) + { + // Each matched pair character left in the list is invalid, + // so add to the list of unmatchedPairs + foreach (TextTokenSubstring tok in m_pairTokensFound) + { + if (desiredKey == string.Empty || desiredKey == tok.InventoryText) + result.Add(tok); + } + + m_pairTokensFound.Clear(); + } + } + + #endregion + + #region StyleCategorizer class + /// ---------------------------------------------------------------------------------------- + /// + /// + /// + /// ---------------------------------------------------------------------------------------- + class StyleCategorizer + { + private List m_poeticStyles; + private List m_introOutlineStyles; + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + public StyleCategorizer(string customPoeticStyles, string customIntroOutlineStyles) + { + m_poeticStyles = new List( + customPoeticStyles.Split(CheckUtils.kStyleNamesDelimiter)); + + m_introOutlineStyles = new List( + customIntroOutlineStyles.Split(CheckUtils.kStyleNamesDelimiter)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + public bool IsPoeticStyle(string style) + { + return (m_poeticStyles.IndexOf(style) >= 0); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + public bool IsIntroductionOutlineStyle(string style) + { + return (m_introOutlineStyles.IndexOf(style) >= 0); + } + } + + #endregion +} diff --git a/Lib/src/ScrChecks/MixedCapitalizationCheck.cs b/Lib/src/ScrChecks/MixedCapitalizationCheck.cs new file mode 100644 index 0000000000..e77d2e4688 --- /dev/null +++ b/Lib/src/ScrChecks/MixedCapitalizationCheck.cs @@ -0,0 +1,425 @@ +// Copyright (c) 2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using SIL.FieldWorks.Common.FwUtils; + +namespace SILUBS.ScriptureChecks +{ + #region MixedCapitalizationCheck class + /// ---------------------------------------------------------------------------------------- + /// + /// + /// + /// ---------------------------------------------------------------------------------------- + public class MixedCapitalizationCheck : IScrCheckInventory + { + private const string kValidItemsParameter = "ValidMixedCapitalization"; + private const string kInvalidItemsParameter = "InvalidMixedCapitalization"; + + private IChecksDataSource m_checksDataSource; + private CharacterCategorizer m_characterCategorizer; + private List m_mixedCapitalization; + private string m_validItems; + private string m_invalidItems; + private List m_validItemsList; + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// + /// ------------------------------------------------------------------------------------ + public MixedCapitalizationCheck(IChecksDataSource checksDataSource) + { + m_checksDataSource = checksDataSource; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Returns a localized version of the specified string. + /// + /// ------------------------------------------------------------------------------------ + private string Localize(string strToLocalize) + { + return m_checksDataSource.GetLocalizedString(strToLocalize); + } + + /// ------------------------------------------------------------------------------------ + /// + /// THIS REALLY OUGHT TO BE List + /// Valid items, separated by spaces. + /// Inventory form queries this to know how what status to give each item + /// in the inventory. Inventory form updates this if user has changed the status + /// of any item. + /// + /// + /// ------------------------------------------------------------------------------------ + public string ValidItems + { + get { return m_validItems; } + set + { + m_validItems = (value == null ? string.Empty : value.Trim()); + m_validItemsList = new List(); + if (m_validItems != string.Empty) + m_validItemsList = new List(m_validItems.Split()); + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// THIS REALLY OUGHT TO BE List + /// Invalid items, separated by spaces. + /// Inventory form queries this to know how what status to give each item + /// in the inventory. Inventory form updates this if user has changed the status + /// of any item. + /// + /// + /// ------------------------------------------------------------------------------------ + public string InvalidItems + { + get { return m_invalidItems; } + set { m_invalidItems = (value == null ? string.Empty : value.Trim()); } + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + public string CheckName { get { return Localize("Mixed Capitalization"); } } + + /// ------------------------------------------------------------------------------------ + /// + /// The unique identifier of the check. This should never be changed! + /// + /// ------------------------------------------------------------------------------------ + public Guid CheckId { get { return StandardCheckIds.kguidMixedCapitalization; } } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the name of the group which contains this check. + /// + /// ------------------------------------------------------------------------------------ + public string CheckGroup { get { return Localize("Basic"); } } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets a number that can be used to order this check relative to other checks in the + /// same group when displaying checks in the UI. + /// + /// ------------------------------------------------------------------------------------ + public float RelativeOrder + { + get { return 700; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the description for this check. + /// + /// ------------------------------------------------------------------------------------ + public string Description { get { return Localize("Checks for words with a potentially invalid mix of uppercase and lowercase letters."); } } + + /// ------------------------------------------------------------------------------------ + /// + /// This is the column header of the first column when you create an + /// inventory of this type of error. + /// + /// ------------------------------------------------------------------------------------ + public string InventoryColumnHeader + { + get { return Localize("Mixed Capitalization Word"); } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Update the parameter values for storing the valid and invalid lists in CheckDataSource + /// and then save them. This is here because the inventory form does not know the names of + /// the parameters that need to be saved for a given check, only the check knows this. + /// + /// ------------------------------------------------------------------------------------ + public void Save() + { + m_checksDataSource.SetParameterValue(kValidItemsParameter, m_validItems); + m_checksDataSource.SetParameterValue(kInvalidItemsParameter, m_invalidItems); + m_checksDataSource.Save(); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Execute the check. Call 'RecordError' for every error found. + /// + /// ITextTokens corresponding to the text to be checked. + /// Typically this is one books worth. + /// Call this delegate to report each error found. + /// ------------------------------------------------------------------------------------ + public void Check(IEnumerable toks, RecordErrorHandler record) + { + m_mixedCapitalization = GetReferences(toks, string.Empty); + + string msg = Localize("Word has mixed capitalization"); + + foreach (TextTokenSubstring tts in m_mixedCapitalization) + { + if (!m_validItemsList.Contains(tts.ToString())) + { + tts.Message = msg; + record(new RecordErrorEventArgs(tts, CheckId)); + } + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Get all instances of the item being checked in the token list passed. + /// This includes both valid and invalid instances. + /// This is used 1) to create an inventory of these items. + /// To show the user all instance of an item with a specified key. + /// 2) With a "desiredKey" in order to fetch instance of a specific + /// item (e.g. all the places where "the" is a repeated word. + /// + /// Tokens for text to be scanned + /// If you only want instance of a specific key (e.g. one word, + /// one punctuation pattern, one character, etc.) place it here. Empty string returns + /// all items. + /// List of token substrings + /// ------------------------------------------------------------------------------------ + public List GetReferences(IEnumerable tokens, string desiredKey) + { +#if DEBUG + List AllTokens = new List(tokens); + if (AllTokens.Count == 0) + { + // Keep the compiler from complaining about assigning to a variable, but not using it. + } +#endif + m_characterCategorizer = m_checksDataSource.CharacterCategorizer; + ValidItems = m_checksDataSource.GetParameterValue(kValidItemsParameter); + InvalidItems = m_checksDataSource.GetParameterValue(kInvalidItemsParameter); + + string preferredLocale = + m_checksDataSource.GetParameterValue("PreferredLocale") ?? string.Empty; + + m_mixedCapitalization = new List(); + ProcessMixedCapitalization processor = + new ProcessMixedCapitalization(m_checksDataSource, m_mixedCapitalization); + + foreach (ITextToken tok in tokens) + { + if ((tok.Locale ?? string.Empty) != preferredLocale) + continue; + + foreach (WordAndPunct wap in m_characterCategorizer.WordAndPuncts(tok.Text)) + processor.ProcessWord(tok, wap, desiredKey); + } + + return m_mixedCapitalization; + } + } + + #endregion + + #region AWord class + /// ---------------------------------------------------------------------------------------- + /// + /// + /// + /// ---------------------------------------------------------------------------------------- + public class AWord + { + private CharacterCategorizer m_categorizer; + private string m_text = string.Empty; + private string m_prefix = string.Empty; + private string m_suffix = string.Empty; + private int m_upperCaseLetters = 0; + private int m_lowerCaseLetters = 0; + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// + /// + /// ------------------------------------------------------------------------------------ + public AWord(string text, CharacterCategorizer categorizer) + { + this.m_text = text; + this.m_categorizer = categorizer; + + string word = CountLettersAndReturnWordWithOnlyWordFormingCharacters(text); + if (m_lowerCaseLetters == 0 || m_upperCaseLetters == 0) + return; + FindPrefixAndSuffixIfAny(word); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// + /// + /// ------------------------------------------------------------------------------------ + private string CountLettersAndReturnWordWithOnlyWordFormingCharacters(string text) + { + for (int i = 0; i < text.Length; i++) + { + char cc = text[i]; + if (m_categorizer.IsUpper(cc)) + m_upperCaseLetters++; + if (m_categorizer.IsLower(cc)) + m_lowerCaseLetters++; + if (m_categorizer.IsTitle(cc)) + { + m_upperCaseLetters++; + m_lowerCaseLetters++; + } + if (!m_categorizer.IsWordFormingCharacter(cc)) + { + text = text.Remove(i, 1); + i--; + } + } + return text; + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// + /// ------------------------------------------------------------------------------------ + private void FindPrefixAndSuffixIfAny(string word) + { + for (int i = 1; i < word.Length; i++) + { + char cc = word[i]; + if (m_categorizer.IsUpper(cc) || m_categorizer.IsTitle(cc)) + { + m_prefix = word.Substring(0, i); + m_suffix = word.Substring(i); + return; + } + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + public string Prefix + { + get { return m_prefix; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + public string Suffix + { + get { return m_suffix; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// + /// ------------------------------------------------------------------------------------ + public override string ToString() + { + return "(" + m_prefix + ")" + m_text + "(" + m_suffix + ")"; + } + } + + #endregion + + #region ProcessMixedCapitalization class + /// ---------------------------------------------------------------------------------------- + /// + /// + /// + /// ---------------------------------------------------------------------------------------- + class ProcessMixedCapitalization + { + private CharacterCategorizer m_categorizer; + private List m_uncapitalizedPrefixes; + private List m_capitalizedSuffixes; + private List m_capitalizedPrefixes; + private List m_result; + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// + /// + /// ------------------------------------------------------------------------------------ + public ProcessMixedCapitalization(IChecksDataSource checksDataSource, + List result) + { + m_categorizer = checksDataSource.CharacterCategorizer; + m_result = result; + + m_uncapitalizedPrefixes = new List( + checksDataSource.GetParameterValue("UncapitalizedPrefixes").Split()); + + m_capitalizedSuffixes = new List( + checksDataSource.GetParameterValue("CapitalizedSuffixes").Split()); + + m_capitalizedPrefixes = new List( + checksDataSource.GetParameterValue("CapitalizedPrefixes").Split()); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// + /// + /// + /// ------------------------------------------------------------------------------------ + public void ProcessWord(ITextToken tok, WordAndPunct wap, string desiredKey) + { + AWord word = new AWord(wap.Word, m_categorizer); + + if (word.Prefix == string.Empty && word.Suffix == string.Empty) + return; + if (m_uncapitalizedPrefixes.Contains(word.Prefix)) + return; + if (m_uncapitalizedPrefixes.Contains("*" + word.Prefix[word.Prefix.Length - 1])) + return; + if (m_uncapitalizedPrefixes.Contains("*")) + return; + if (m_capitalizedSuffixes.Contains(word.Suffix)) + return; + if (m_capitalizedPrefixes.Contains(word.Prefix)) + return; + + AddWord(tok, wap, desiredKey); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// + /// + /// + /// ------------------------------------------------------------------------------------ + private void AddWord(ITextToken tok, WordAndPunct wap, string desiredKey) + { + TextTokenSubstring tts = new TextTokenSubstring(tok, wap.Offset, wap.Word.Length); + if (String.IsNullOrEmpty(desiredKey) || desiredKey == tts.InventoryText) + m_result.Add(tts); + } + } + + #endregion +} diff --git a/Lib/src/ScrChecks/Properties/AssemblyInfo.cs b/Lib/src/ScrChecks/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..d665ee0af7 --- /dev/null +++ b/Lib/src/ScrChecks/Properties/AssemblyInfo.cs @@ -0,0 +1,11 @@ +// Copyright (c) 2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +[assembly: AssemblyTitle("Checks")] + +[assembly: ComVisible(false)] \ No newline at end of file diff --git a/Lib/src/ScrChecks/Properties/Resources.Designer.cs b/Lib/src/ScrChecks/Properties/Resources.Designer.cs new file mode 100644 index 0000000000..b1853f76ff --- /dev/null +++ b/Lib/src/ScrChecks/Properties/Resources.Designer.cs @@ -0,0 +1,63 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.239 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace SILUBS.ScriptureChecks.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("SILUBS.ScriptureChecks.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + } +} diff --git a/Lib/src/ScrChecks/Properties/Resources.resx b/Lib/src/ScrChecks/Properties/Resources.resx new file mode 100644 index 0000000000..b6da5948be --- /dev/null +++ b/Lib/src/ScrChecks/Properties/Resources.resx @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Lib/src/ScrChecks/Properties/Settings.Designer.cs b/Lib/src/ScrChecks/Properties/Settings.Designer.cs new file mode 100644 index 0000000000..e57e4ed0ff --- /dev/null +++ b/Lib/src/ScrChecks/Properties/Settings.Designer.cs @@ -0,0 +1,26 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.239 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace SILUBS.ScriptureChecks.Properties { + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default { + get { + return defaultInstance; + } + } + } +} diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/Properties/Settings.settings b/Lib/src/ScrChecks/Properties/Settings.settings similarity index 86% rename from Src/Utilities/AlloVarGen/AllomorphGeneratorDll/Properties/Settings.settings rename to Lib/src/ScrChecks/Properties/Settings.settings index 39645652af..1d7f063843 100644 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/Properties/Settings.settings +++ b/Lib/src/ScrChecks/Properties/Settings.settings @@ -1,7 +1,7 @@  - + diff --git a/Lib/src/ScrChecks/PunctuationCheck.cs b/Lib/src/ScrChecks/PunctuationCheck.cs new file mode 100644 index 0000000000..5c3fb5651d --- /dev/null +++ b/Lib/src/ScrChecks/PunctuationCheck.cs @@ -0,0 +1,818 @@ +// Copyright (c) 2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using System.Diagnostics; +using SIL.FieldWorks.Common.FwUtils; + +namespace SILUBS.ScriptureChecks +{ + public enum PunctuationTokenType { whitespace, punctuation, number, paragraph, quoteSeparator }; + public enum CheckingLevel { Advanced, Intermediate, Basic }; + + #region PunctuationCheck class + /// ---------------------------------------------------------------------------------------- + /// + /// Checks sequences of punctuation (in relation to their positions in surrounding text). + /// + /// ---------------------------------------------------------------------------------------- + public class PunctuationCheck : IScrCheckInventory + { + private const string kValidItemsParameter = "ValidPunctuation"; + private const string kInvalidItemsParameter = "InvalidPunctuation"; + + private IChecksDataSource m_checksDataSource; + private CharacterCategorizer m_characterCategorizer; + private List m_punctuationSequences; + //! (PARATEXT) need to think about the possibility that _ is a punctuation mark in this language. + internal static string s_whitespaceRep = "_"; + private List m_validItemsList; + private List m_invalidItemsList; + private string m_validItems; + private string m_invalidItems; + + /// ------------------------------------------------------------------------------------ + /// + /// Initializes a new instance of the class. + /// + /// The checks data source. + /// ------------------------------------------------------------------------------------ + public PunctuationCheck(IChecksDataSource checksDataSource) + { + m_checksDataSource = checksDataSource; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Returns a localized version of the specified string. + /// + /// ------------------------------------------------------------------------------------ + private string Localize(string strToLocalize) + { + return m_checksDataSource.GetLocalizedString(strToLocalize); + } + + /// ------------------------------------------------------------------------------------ + /// + /// THIS REALLY OUGHT TO BE List + /// Valid items, separated by spaces. + /// Inventory form queries this to know how what status to give each item + /// in the inventory. Inventory form updates this if user has changed the status + /// of any item. + /// + /// + /// ------------------------------------------------------------------------------------ + public string ValidItems + { + get { return m_validItems; } + set + { + m_validItems = (value == null ? string.Empty : value.Trim()); + m_validItemsList = new List(); + if (m_validItems != string.Empty) + m_validItemsList = new List(m_validItems.Split()); + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// THIS REALLY OUGHT TO BE List + /// Invalid items, separated by spaces. + /// Inventory form queries this to know how what status to give each item + /// in the inventory. Inventory form updates this if user has changed the status + /// of any item. + /// + /// + /// ------------------------------------------------------------------------------------ + public string InvalidItems + { + get { return m_invalidItems; } + set + { + m_invalidItems = (value == null ? string.Empty : value.Trim()); + m_invalidItemsList = new List(); + if (m_invalidItems != string.Empty) + m_invalidItemsList = new List(m_invalidItems.Split()); + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// The full name of the check, e.g. "Punctuation". After replacing any spaces + /// with underscores, this can also be used as a key for looking up a localized + /// string if the application supports localization. If this is ever changed, + /// DO NOT change the CheckId! + /// + /// ------------------------------------------------------------------------------------ + public string CheckName { get { return Localize("Punctuation Patterns"); } } + + /// ------------------------------------------------------------------------------------ + /// + /// The unique identifier of the check. This should never be changed! + /// + /// ------------------------------------------------------------------------------------ + public Guid CheckId { get { return StandardCheckIds.kguidPunctuation; } } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the name of the group which contains this check. + /// + /// ------------------------------------------------------------------------------------ + public string CheckGroup { get { return Localize("Basic"); } } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets a number that can be used to order this check relative to other checks in the + /// same group when displaying checks in the UI. + /// + /// ------------------------------------------------------------------------------------ + public float RelativeOrder + { + get { return 500; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the description for this check. + /// + /// ------------------------------------------------------------------------------------ + public string Description { get { return Localize("Checks for potential inconsistencies in the use of punctuation."); } } + + /// ------------------------------------------------------------------------------------ + /// + /// This is the column header of the first column when you create an + /// inventory of this type of error. + /// + /// ------------------------------------------------------------------------------------ + public string InventoryColumnHeader + { + get { return Localize("Punctuation"); } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Update the parameter values for storing Paratext's valid and invalid lists in + /// CheckDataSource and then save them. This is here because the Paratext inventory form + /// does not know the names of the parameters that need to be saved for a given check, + /// only the check knows this. + /// + /// ------------------------------------------------------------------------------------ + public void Save() + { + m_checksDataSource.SetParameterValue(kValidItemsParameter, ValidItems); + m_checksDataSource.SetParameterValue(kInvalidItemsParameter, InvalidItems); + m_checksDataSource.Save(); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Execute the check. Call 'RecordError' for every error found. + /// + /// ITextToken's corresponding to the text to be checked. + /// Typically this is one books worth. + /// Call this delegate to report each error found. + /// ------------------------------------------------------------------------------------ + public void Check(IEnumerable toks, RecordErrorHandler record) + { + m_punctuationSequences = GetReferences(toks, string.Empty); + + string msgInvalid = Localize("Invalid punctuation pattern"); + string msgUnspecified = Localize("Unspecified use of punctuation pattern"); + + foreach (TextTokenSubstring tts in m_punctuationSequences) + { + string punctCharacter = tts.InventoryText; + + if (!m_validItemsList.Contains(punctCharacter)) + { + tts.Message = m_invalidItemsList.Contains(punctCharacter) ? + msgInvalid : msgUnspecified; + + record(new RecordErrorEventArgs(tts, CheckId)); + } + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Return a TextTokenSubstring for all occurances of the desiredKey. + /// + /// + /// e.g., _[_ or empty string to look for all patterns + /// + /// ------------------------------------------------------------------------------------ + public List GetReferences(IEnumerable tokens, string desiredKey) + { +#if DEBUG + List AllTokens = new List(tokens); + if (AllTokens.Count == 0) + { + // Keep the compiler from complaining about assigning to a variable, but not using it. + } +#endif + m_characterCategorizer = m_checksDataSource.CharacterCategorizer; + string sXmlMatchedPairs = m_checksDataSource.GetParameterValue("PunctuationPatterns"); + if (sXmlMatchedPairs != null && sXmlMatchedPairs.Trim().Length > 0) + { + m_validItemsList = new List(); + m_invalidItemsList = new List(); + PuncPatternsList puncPatternsList = PuncPatternsList.Load(sXmlMatchedPairs, + m_checksDataSource.GetParameterValue("DefaultWritingSystemName")); + foreach (PuncPattern pattern in puncPatternsList) + { + if (pattern.Valid) + m_validItemsList.Add(pattern.Pattern); + else + m_invalidItemsList.Add(pattern.Pattern); + } + } + else + { + ValidItems = m_checksDataSource.GetParameterValue(kValidItemsParameter); + InvalidItems = m_checksDataSource.GetParameterValue(kInvalidItemsParameter); + } + + string sLevel = m_checksDataSource.GetParameterValue("PunctCheckLevel"); + CheckingLevel level; + switch (sLevel) + { + case "Advanced": level = CheckingLevel.Advanced; break; + case "Intermediate": level = CheckingLevel.Intermediate; break; + case "Basic": + default: + level = CheckingLevel.Basic; + break; + } + string sWhitespaceRep = m_checksDataSource.GetParameterValue("PunctWhitespaceChar"); + if (!String.IsNullOrEmpty(sWhitespaceRep)) + s_whitespaceRep = sWhitespaceRep.Substring(0, 1); + string preferredLocale = + m_checksDataSource.GetParameterValue("PreferredLocale") ?? string.Empty; + + QuotationMarkCategorizer quotationCategorizer = + new QuotationMarkCategorizer(m_checksDataSource); + + // create processing state machines, one for body text, one for notes + ProcessPunctationTokens bodyProcessor = new ProcessPunctationTokens( + m_characterCategorizer, quotationCategorizer, level); + + ProcessPunctationTokens noteProcessor = new ProcessPunctationTokens( + m_characterCategorizer, quotationCategorizer, level); + + m_punctuationSequences = new List(); + + // build list of note and non-note tokens + foreach (ITextToken tok in tokens) + { + if (tok.Text == null || (tok.Locale ?? string.Empty) != preferredLocale) + continue; + + if (tok.TextType == TextType.Note) + { + // if a new note is starting finalize any punctuation sequences from the previous note + if (tok.IsNoteStart) + noteProcessor.FinalizeResult(desiredKey, m_punctuationSequences, true); + noteProcessor.ProcessToken(tok, desiredKey, m_punctuationSequences); + } + else if (tok.TextType == TextType.Verse || tok.TextType == TextType.Other) + { + // body text: finalize any note that was in progress and continue with body text + noteProcessor.FinalizeResult(desiredKey, m_punctuationSequences, true); + bodyProcessor.ProcessToken(tok, desiredKey, m_punctuationSequences); + } + else if (tok.IsParagraphStart) + { + bodyProcessor.FinalizeResult(desiredKey, m_punctuationSequences, true); + bodyProcessor.TreatAsParagraphStart = true; + } + } + + noteProcessor.FinalizeResult(desiredKey, m_punctuationSequences, true); + bodyProcessor.FinalizeResult(desiredKey, m_punctuationSequences, true); + + return m_punctuationSequences; + } + } + + #endregion + + #region PunctuationToken class + /// ---------------------------------------------------------------------------------------- + /// + /// Record information about one component of a punctuation sequence. + /// + /// ---------------------------------------------------------------------------------------- + class PunctuationToken + { + public PunctuationTokenType TokenType; + public TextTokenSubstring Tts; + + // is initial (opening) quotation punctuation, e.g. U+201C LEFT DOUBLE QUOTATION MARK + public bool IsInitial; + + // is final (closing) quotation punctuation, e.g. U+201D RIGHT DOUBLE QUOTATION MARK + public bool IsFinal; + + // is token a paragraph break + public bool IsParaBreak; + + /// ------------------------------------------------------------------------------------ + /// + /// Initializes a new instance of the class for a + /// whitespace character. + /// + /// if set to true is opening quotation mark. + /// if set to true is closing quotation mark. + /// if set to true the whitespace represents a newline. + /// + /// ------------------------------------------------------------------------------------ + public PunctuationToken(bool isInitial, bool isFinal, bool isParaBreak) : + this(PunctuationTokenType.whitespace, null, isInitial, isFinal) + { + IsParaBreak = isParaBreak; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Initializes a new instance of the class. + /// + /// Type of the token. + /// The TextTokenSubstring. + /// if set to true is opening quotation mark. + /// if set to true is closing quotation mark. + /// ------------------------------------------------------------------------------------ + public PunctuationToken(PunctuationTokenType tokenType, TextTokenSubstring tts, + bool isInitial, bool isFinal) + { + TokenType = tokenType; + Tts = tts; + IsInitial = isInitial; + IsFinal = isFinal; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets a value indicating whether this instance is punctuation or a special whitespace + /// character to separate same-direction quote marks (which should behave like + /// punctuation). + /// + /// ------------------------------------------------------------------------------------ + public bool IsPunctuation + { + get + { + return TokenType == PunctuationTokenType.punctuation || + TokenType == PunctuationTokenType.quoteSeparator; + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Returns a that represents the current PunctuationToken. + /// + /// ------------------------------------------------------------------------------------ + public override string ToString() + { + switch (TokenType) + { + case PunctuationTokenType.whitespace: + case PunctuationTokenType.quoteSeparator: + return PunctuationCheck.s_whitespaceRep; + case PunctuationTokenType.number: + return string.Empty; + default: + return Tts.Text; + } + } + } + + #endregion + + #region ProcessPunctationTokens class + /// ---------------------------------------------------------------------------------------- + /// + /// State machine to process sequences of punctuation tokens. + /// We have one of these objects for note text, one for body text. + /// + /// ---------------------------------------------------------------------------------------- + class ProcessPunctationTokens + { + // current punctuation sequence, emptied when finalized or a new word starts + private List m_puncts = new List(); + private CharacterCategorizer m_categorizer = null; // this lets us know what a punctuation character is + private QuotationMarkCategorizer m_quotationCategorizer; + private CheckingLevel m_level; + private bool m_finalizedWithNumber = false; + private bool m_fTreatAsParagraphStart = true; + + /// ------------------------------------------------------------------------------------ + /// + /// Sets a value indicating whether to treat a token as a paragraph start even if it + /// isn't (because a previous token that wasn't processed represented the start of a + /// para). + /// + /// ------------------------------------------------------------------------------------ + internal bool TreatAsParagraphStart + { + set { m_fTreatAsParagraphStart = value; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Initializes a new instance of the class. + /// + /// The categorizer. + /// The quotation categorizer. + /// Indicator to determine how much to combine contiguous + /// punctuation sequences into patterns. Advanced = All contiguous punctuation and + /// whitespace characters form a single pattern; Intermediate = Contiguous punctuation + /// forms a single pattern (delimeted by whitespace); Basic = Each punctuation character + /// stands alone. In all three modes, whitespace before and/or after a punctuation token + /// indicates whether is is word-initial, word-medial, word-final, or isolated + /// ------------------------------------------------------------------------------------ + public ProcessPunctationTokens(CharacterCategorizer categorizer, + QuotationMarkCategorizer quotationCategorizer, CheckingLevel level) + { + m_categorizer = categorizer; + m_quotationCategorizer = quotationCategorizer; + m_level = level; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Extract the punctuation sequences from this token + /// + /// + /// + /// + /// ------------------------------------------------------------------------------------ + public void ProcessToken(ITextToken tok, string desiredKey, List result) + { + if (tok.IsParagraphStart || m_fTreatAsParagraphStart) + { + ProcessWhitespaceOrParagraph(true); + m_fTreatAsParagraphStart = false; + } + + // for each character in token + for (int i = 0; i < tok.Text.Length; ++i) + { + char cc = tok.Text[i]; + if (m_categorizer.IsPunctuation(cc)) + ProcessPunctuation(tok, i); + else if (char.IsDigit(cc)) + { + // If the previous finalized was done with a number, + // and we have a single punctuation mark + // followed by another number, ignore this sequence, + // e.g. 3:14 + if (m_finalizedWithNumber && m_puncts.Count == 1 && + m_puncts[0].TokenType == PunctuationTokenType.punctuation) + { + m_puncts.Clear(); + } + else + { + ProcessDigit(tok, i); + FinalizeResult(desiredKey, result, false); + } + } + else if (char.IsWhiteSpace(cc)) + ProcessWhitespaceOrParagraph(false); + else + { + // if not punctuation, whitespace, or digit; it must be the start of a new word + // therefore finalize any open punctuation sequence + FinalizeResult(desiredKey, result, false); + } + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Add punctuation to list + /// + /// The text token + /// The index of the punctuation character + /// ------------------------------------------------------------------------------------ + private void ProcessPunctuation(ITextToken tok, int i) + { + TextTokenSubstring tts = new TextTokenSubstring(tok, i, 1); + bool isInitial = m_quotationCategorizer.IsInitialPunctuation(tts.Text); + bool isFinal = m_quotationCategorizer.IsFinalPunctuation(tts.Text); + m_puncts.Add(new PunctuationToken(PunctuationTokenType.punctuation, tts, isInitial, isFinal)); + + // special case: treat a sequence like + // opening quotation punctuation/space/opening quotation punctuation + // as if the space were not there. an example of this would be + // U+201C LEFT DOUBLE QUOTATION MARK + // U+0020 SPACE + // U+2018 LEFT SINGLE QUOTATION MARK + // this allows a quotation mark to be considered word initial even if it is followed by a space + if (m_puncts.Count >= 3) + { + // If the last three tokens are punctuation/whitespace/punctuation + if (m_puncts[m_puncts.Count - 2].TokenType == PunctuationTokenType.whitespace && + !m_puncts[m_puncts.Count - 2].IsParaBreak && + m_puncts[m_puncts.Count - 3].TokenType == PunctuationTokenType.punctuation) + { + // And both punctuation have quote directions which point in the same direction, + if (m_puncts[m_puncts.Count - 3].IsInitial && m_puncts[m_puncts.Count - 1].IsInitial || + m_puncts[m_puncts.Count - 3].IsFinal && m_puncts[m_puncts.Count - 1].IsFinal) + { + // THEN mark the whitespace as a quote separator. + m_puncts[m_puncts.Count - 2].TokenType = PunctuationTokenType.quoteSeparator; + } + } + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Add a number to the list + /// + /// + /// + /// ------------------------------------------------------------------------------------ + private void ProcessDigit(ITextToken tok, int i) + { + m_puncts.Add(new PunctuationToken(PunctuationTokenType.number, null, false, false)); + +#if UNUSED + // special case: treat a sequence like + // number/punctuation/number + // as if the punctuation were not there. an example of this would be 1:2 + // this allows the : in 1:2 not to be counted as punctuation + if (tokens.Count >= 3) + { + // If the last three tokens are number/select punctuation/number + if (tokens[tokens.Count - 3].TokenType == PunctuationTokenType.number) + { + string separator = tokens[tokens.Count - 2].ToString(); + //! make the list of separator characters configurable + if (separator == "," || separator == "." || separator == "-" || separator == ":") + { + tokens.RemoveAt(tokens.Count - 2); + + // The offset (-2) stays the same as the line of code above + // since after the previous line is executed some of the tokens shift position. + tokens.RemoveAt(tokens.Count - 2); + } + } + } +#endif + } + + /// ------------------------------------------------------------------------------------ + /// + /// Add whitespace to the list unless the last item in the list is already whitespace + /// + /// True for the token to be a paragraph start, false otherwise. + /// + /// ------------------------------------------------------------------------------------ + public void ProcessWhitespaceOrParagraph(bool fIsParaStart) + { + if (m_puncts.Count > 0 && m_puncts[m_puncts.Count - 1].TokenType == PunctuationTokenType.whitespace) + { + if (!m_puncts[m_puncts.Count - 1].IsParaBreak && fIsParaStart) + m_puncts[m_puncts.Count - 1].IsParaBreak = true; + return; + } + + m_puncts.Add(new PunctuationToken(false, false, fIsParaStart)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// + /// + /// + /// ------------------------------------------------------------------------------------ + public void FinalizeResult(string desiredKey, List result, bool addWhitespace) + { + // If a digit caused FinalizeResult() to be called set a flag, otherwise clear the flag. + // This flag is tested to help see if a punctuation character occurs between two digits. + m_finalizedWithNumber = + (m_puncts.Count > 0 && m_puncts[m_puncts.Count - 1].TokenType == PunctuationTokenType.number); + + // if no punctuation character is found clear sequence and quit + PunctuationToken currentPTok = null; + foreach (PunctuationToken pTok in m_puncts) + { + if (pTok.TokenType == PunctuationTokenType.punctuation) + { + currentPTok = pTok; + break; + } + } + if (currentPTok == null) + { + m_puncts.Clear(); + return; + } + + // if we have been requested to treat this sequence as if it were followed by whitespace, + // then add a space to the sequence. This happens, for example, at the end of a footnote. + // \f + text.\f* otherwise the . would be considered word medial instead of word final + if (addWhitespace) + ProcessWhitespaceOrParagraph(false); + + switch (m_level) + { + case CheckingLevel.Advanced: + AdvancedFinalize(currentPTok, desiredKey, result); + break; + case CheckingLevel.Intermediate: + IntermediateFinalize(desiredKey, result); + break; + case CheckingLevel.Basic: + BasicFinalize(desiredKey, result); + break; + } + + m_puncts.Clear(); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Treat each punctuation and whitespace sequence as a single string. It is called + /// advanced since many more inventory items for the user to look at, and only advanced + /// users (we hope) will look at these results. + /// + /// The current punctuation token, whose TextToken substring is + /// modified to indicate a pattern of multiple punctuation characters + /// If specified, indicates a specific punctuation pattern to + /// seek (all others will be discarded); To retrieve all punctation substrings, specify + /// the empty string. + /// List of TextTokenSubstring items that will be added to + /// ------------------------------------------------------------------------------------ + private void AdvancedFinalize(PunctuationToken pTok, string desiredKey, + List result) + { + // concatanate all the punctuation sequences into one string + string pattern = String.Empty; + foreach (PunctuationToken pTok2 in m_puncts) + { + //System.Diagnostics.Debug.Assert(pTok2.Tts == null || pTok2.Tts.Token == pTok.Tts.Token); + pattern += pTok2.ToString(); + } + pTok.Tts.InventoryText = pattern; + + if (desiredKey == String.Empty || desiredKey == pTok.Tts.InventoryText) + result.Add(pTok.Tts); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Treat each punctuation sequence as a single string, breaking the pattern at each + /// whitespace (Except for whitespace between pairs of quotes that are both in the + /// same direction (both opening or closing quotes). + /// + /// If specified, indicates a specific punctuation pattern to + /// seek (all others will be discarded); To retrieve all punctation substrings, specify + /// the empty string. + /// List of TextTokenSubstring items that will be added to + /// ------------------------------------------------------------------------------------ + private void IntermediateFinalize(string desiredKey, List result) + { + // concatanate all the punctuation sequences into one string + string pattern = ""; + PunctuationToken pTok = null; + PunctuationToken tok2; + + for (int i = 0; i < m_puncts.Count; ++i) + { + tok2 = m_puncts[i]; + pattern += tok2.ToString(); + + // Every generated result must start with a punctuation character. + // If we do not currently have a punctuation character (because it + // null'ed below) remember this one. + if (tok2.TokenType == PunctuationTokenType.punctuation || tok2.TokenType == PunctuationTokenType.quoteSeparator) + { + Debug.Assert(pTok != null || tok2.TokenType == PunctuationTokenType.punctuation, "Quote separator should never be the first non-whitespace character in a sequence (after all, it IS whitespace!)"); + if (pTok == null) + pTok = tok2; + else + { + if (tok2.Tts != null && pTok.Tts.LastToken != tok2.Tts.FirstToken) + { + Debug.Assert(tok2.Tts.FirstToken == tok2.Tts.LastToken); + pTok.Tts.AddToken(tok2.Tts.FirstToken); + } + pTok.Tts++; + } + } + + // Generate a pattern when you see a non-leading whitespace or end of list + if (tok2.TokenType == PunctuationTokenType.whitespace || i == m_puncts.Count - 1) + { + if (pTok != null) // Must have a punctuation token + { + pTok.Tts.InventoryText = pattern; + if (desiredKey == "" || desiredKey == pTok.Tts.InventoryText) + result.Add(pTok.Tts); + } + + // Reset pattern to match this token + if (tok2.TokenType == PunctuationTokenType.whitespace) + pattern = tok2.ToString(); + else + pattern = ""; + + pTok = null; + } + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Basic finalize is complicated because it generates a pattern for every punctuation + /// mark. An exception is if multiple consecutive periods occur, then a string of + /// periods will be in one pattern. + /// + /// If specified, indicates a specific punctuation pattern to + /// seek (all others will be discarded); To retrieve all punctation substrings, specify + /// the empty string. + /// List of TextTokenSubstring items that will be added to + /// ------------------------------------------------------------------------------------ + private void BasicFinalize(string desiredKey, List result) + { + PunctuationToken pTok; + for (int i = 0; i < m_puncts.Count; ++i) + { + pTok = m_puncts[i]; + if (pTok.TokenType != PunctuationTokenType.punctuation) + continue; + + // Normally i and j end up the same. + // When multiple consecutive periods occur (e.g. blah...blah) + // i will be the first period and j the last period. + int j = i; + while (m_puncts[i].ToString() == "." && j + 1 < m_puncts.Count && + m_puncts[j + 1].ToString() == ".") + { + ++j; + } + + string pattern = PunctuationSequencePatternPrefix(i); + for (int k = i; k <= j; ++k) + pattern += m_puncts[k].ToString(); + + pattern += PunctuationSequencePatternSuffix(j); + pTok.Tts.InventoryText = pattern; + + if (desiredKey == String.Empty || desiredKey == pTok.Tts.InventoryText) + result.Add(pTok.Tts); + + i = j; + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Look at previous non-punctuation tokens, the first token that is found determines + /// the prefix for this pattern for example, if it finds whitespace token, it returns + /// a prefix of _ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + private string PunctuationSequencePatternPrefix(int index) + { + for (int i = index - 1; i >= 0; --i) + { + if (!m_puncts[i].IsPunctuation) + return m_puncts[i].ToString(); + } + + return string.Empty; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Look at following non-punctuation tokens, the first token that is found determines + /// the suffix for this pattern for example, if it finds whitespace token, it returns + /// a suffix of _ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + private string PunctuationSequencePatternSuffix(int index) + { + for (int i = index; i < m_puncts.Count; ++i) + { + if (!m_puncts[i].IsPunctuation) + return m_puncts[i].ToString(); + } + + return string.Empty; + } + } + + #endregion +} diff --git a/Lib/src/ScrChecks/QuotationCheck.cs b/Lib/src/ScrChecks/QuotationCheck.cs new file mode 100644 index 0000000000..89c8f70a02 --- /dev/null +++ b/Lib/src/ScrChecks/QuotationCheck.cs @@ -0,0 +1,1190 @@ +// Copyright (c) 2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections; +using System.Collections.Generic; +using System.Text.RegularExpressions; +using System.Diagnostics; +using SIL.FieldWorks.Common.FwUtils; + +namespace SILUBS.ScriptureChecks +{ + #region QuotationCheck class + /// ---------------------------------------------------------------------------------------- + /// + /// + /// + /// ---------------------------------------------------------------------------------------- + public class QuotationCheck : IScrCheckInventory + { + private IChecksDataSource m_chkDataSource; + private CharacterCategorizer m_charCategorizer; + private List m_qmProblems; + private readonly string m_validItemsParameter = "ValidQuotationMarks"; + private readonly string m_invalidItemsParameter = "InvalidQuotationMarks"; + private string m_validItems; + private string m_invalidItems; + private List m_validItemsList; + + /// ------------------------------------------------------------------------------------ + /// + /// Initializes a new instance of the class. + /// + /// ------------------------------------------------------------------------------------ + public QuotationCheck(IChecksDataSource checksDataSource) + { + m_chkDataSource = checksDataSource; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Returns a localized version of the specified string. + /// + /// ------------------------------------------------------------------------------------ + private string Localize(string strToLocalize) + { + return m_chkDataSource.GetLocalizedString(strToLocalize); + } + + /// ------------------------------------------------------------------------------------ + /// + /// THIS REALLY OUGHT TO BE List + /// Valid items, separated by spaces. + /// Inventory form queries this to know how what status to give each item + /// in the inventory. Inventory form updates this if user has changed the status + /// of any item. + /// + /// ------------------------------------------------------------------------------------ + public string ValidItems + { + get { return m_validItems; } + set + { + m_validItems = value.Trim(); + m_validItemsList = (m_validItems == string.Empty ? + new List() : new List(m_validItems.Split())); + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// THIS REALLY OUGHT TO BE List + /// Invalid items, separated by spaces. + /// Inventory form queries this to know how what status to give each item + /// in the inventory. Inventory form updates this if user has changed the status + /// of any item. + /// + /// + /// ------------------------------------------------------------------------------------ + public string InvalidItems + { + get { return m_invalidItems; } + set { m_invalidItems = value.Trim(); } + } + + /// ------------------------------------------------------------------------------------ + /// + /// The full name of the check, e.g. "Quotation Errors". After replacing any spaces + /// with underscores, this can also be used as a key for looking up a localized + /// string if the application supports localization. If this is ever changed, + /// DO NOT change the CheckId! + /// + /// ------------------------------------------------------------------------------------ + public string CheckName + { + get { return Localize("Quotation Marks"); } + } + + /// ------------------------------------------------------------------------------------ + /// + /// The unique identifier of the check. This should never be changed! + /// + /// ------------------------------------------------------------------------------------ + public Guid CheckId { get { return StandardCheckIds.kguidQuotations; } } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the name of the group which contains this check. + /// + /// ------------------------------------------------------------------------------------ + public string CheckGroup + { + get { return Localize("Basic"); } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets a number that can be used to order this check relative to other checks in the + /// same group when displaying checks in the UI. + /// + /// ------------------------------------------------------------------------------------ + public float RelativeOrder + { + get { return 400; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the description for this check. + /// + /// ------------------------------------------------------------------------------------ + public string Description + { + get { return Localize("Checks for potential inconsistencies in the markup of quotations."); } + } + + /// ------------------------------------------------------------------------------------ + /// + /// This is the column header of the first column when you create an + /// inventory of this type of error. + /// + /// + /// ------------------------------------------------------------------------------------ + public string InventoryColumnHeader + { + get { return Localize("Quotations"); } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Saves the parameters for this check. + /// + /// ------------------------------------------------------------------------------------ + public void Save() + { + m_chkDataSource.SetParameterValue(m_validItemsParameter, m_validItems); + m_chkDataSource.SetParameterValue(m_invalidItemsParameter, m_invalidItems); + m_chkDataSource.Save(); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Checks the given tokens for quotation errors. Ignores any found in 'validItemsList'. + /// Calls the given RecordError handler for each one. + /// + /// The tokens to check. + /// Method to call to record errors. + /// ------------------------------------------------------------------------------------ + public void Check(IEnumerable toks, RecordErrorHandler record) + { + foreach (TextTokenSubstring tts in GetReferences(toks, string.Empty)) + { + string punctChar = tts.ToString(); + if (!m_validItemsList.Contains(punctChar)) + record(new RecordErrorEventArgs(tts, CheckId)); + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets a list if TextTokenSubstrings containing the references and character offsets + /// where quotation problems occur. + /// + /// The tokens (from the data source) to check for quotation problems. + /// empty string. + /// ------------------------------------------------------------------------------------ + public List GetReferences(IEnumerable tokens, string desiredKey) + { + m_charCategorizer = m_chkDataSource.CharacterCategorizer; + ValidItems = m_chkDataSource.GetParameterValue(m_validItemsParameter); + InvalidItems = m_chkDataSource.GetParameterValue(m_invalidItemsParameter); + + QuotationMarkCategorizer qmCategorizer = new QuotationMarkCategorizer(m_chkDataSource); + m_qmProblems = new List(); + + QTokenProcessor bodyProcessor = new QTokenProcessor(m_chkDataSource, + m_charCategorizer, qmCategorizer, desiredKey, m_qmProblems); + + QTokenProcessor noteProcessor = new QTokenProcessor(m_chkDataSource, + m_charCategorizer, qmCategorizer, desiredKey, m_qmProblems); + + VerseTextToken scrToken = new VerseTextToken(); + foreach (ITextToken tok in tokens) + { + if (tok.TextType == TextType.Note) + { + // If a new note is starting finalize any sequences from the previous note. + if (tok.IsNoteStart) + noteProcessor.FinalizeResult(); + noteProcessor.ProcessToken(tok, null); + } + else if (tok.TextType == TextType.Verse || tok.TextType == TextType.Other || + tok.IsParagraphStart) + { + scrToken.Token = tok; + // body text: finalize any note that was in progress and continue with body text + noteProcessor.FinalizeResult(); + bodyProcessor.ProcessToken(tok, scrToken); + } + } + + noteProcessor.FinalizeResult(); + bodyProcessor.FinalizeResult(); + return m_qmProblems; + } + } + + #endregion + + #region QTokenProcessor class + /// ---------------------------------------------------------------------------------------- + /// + /// Class dedicated to the processing of quotation-related tokens + /// + /// ---------------------------------------------------------------------------------------- + internal class QTokenProcessor + { + private Regex m_regExQuotes; + private Regex m_regExNonQuotes; + private string m_desiredKey; + private bool m_verboseQuotes; + private bool m_fFoundMissingContinuer = false; + private string m_noCloserMsg; + private string m_noOpenerMsg; + private IChecksDataSource m_chkDataSource; + private CharacterCategorizer m_charCategorizer; + private QuotationMarkCategorizer m_qmCategorizer; + private List m_results; + private List m_quotationRelatedTokens = new List(); + + /// ------------------------------------------------------------------------------------ + /// + /// Initializes a new instance of the class. + /// + /// The checks data source. + /// The character categorizer. + /// The quotation mark categorizer. + /// The desired key (can be string.Empty). + /// The result. + /// ------------------------------------------------------------------------------------ + internal QTokenProcessor(IChecksDataSource dataSource, + CharacterCategorizer charCategorizer, QuotationMarkCategorizer qmCategorizer, + string desiredKey, List results) + { + m_chkDataSource = dataSource; + m_charCategorizer = charCategorizer; + m_qmCategorizer = qmCategorizer; + m_desiredKey = desiredKey; + m_results = results; + m_verboseQuotes = (m_chkDataSource.GetParameterValue("VerboseQuotes") == "Yes"); + m_noCloserMsg = Localize("Unmatched opening mark: level {0}"); + m_noOpenerMsg = Localize("Unmatched closing mark: level {0}"); + m_regExQuotes = new Regex(qmCategorizer.Pattern); + + m_regExNonQuotes = new Regex(string.Format("[^{0}|\\s]", + qmCategorizer.Pattern.Replace("]", "\\]"))); // Make sure brackets are escaped + } + + /// ------------------------------------------------------------------------------------ + /// + /// Localizes the specified string. + /// + /// The string to localize. + /// The localized string + /// ------------------------------------------------------------------------------------ + private string Localize(string strToLocalize) + { + return m_chkDataSource.GetLocalizedString(strToLocalize); + } + + /// ------------------------------------------------------------------------------------ + /// + /// If the token starts a typographic paragraph, store it as a paragraph-start token and + /// highlight (shows up on user interface) its text. Otherwise, if the token is + /// a quotation mark (either opening or closing, as defined by the quotation + /// categorizer), store it as a quotation mark token. + /// + /// The token being processed + /// ------------------------------------------------------------------------------------ + internal void ProcessToken(ITextToken tok, VerseTextToken verseTok) + { + if (tok == null) + throw new ArgumentNullException("tok"); + + Debug.Assert(!(tok is VerseTextToken)); + + if (tok.IsParagraphStart) + { + TextTokenSubstring tts = new TextTokenSubstring(tok, 0, 0); + ParaStartToken pstok = new ParaStartToken(tts, tok.ParaStyleName); + m_quotationRelatedTokens.Add(pstok); + } + + AddTextToParaStartTokens(tok); + + // Find the first non whitespace, non quotation mark character in the token's + // text. This will be used in the following loop to determine what quotation + // marks precede all other characters in the token (i.e. what quotation marks + // begin the paragraph and are possible continuers). + Match match = m_regExNonQuotes.Match(tok.Text); + int iFirstNoneQMarkChar = (match.Success ? match.Index : -1); + + // Now find all the quotation marks in the token's text. + MatchCollection mc = m_regExQuotes.Matches(tok.Text); + + // Go through all the quotation marks found, creating quotation tokens + // for each. + foreach (Match m in mc) + { + TextTokenSubstring tts = new TextTokenSubstring(tok, m.Index, m.Length); + + bool fIsParaStart = verseTok != null ? verseTok.IsParagraphStart : tok.IsParagraphStart; + bool fIsOpener = m_qmCategorizer.IsInitialPunctuation(tts.Text); + bool fPossibleContinuer = (m.Index < iFirstNoneQMarkChar && fIsParaStart); + QuotationMarkToken qmt = new QuotationMarkToken(tts, m_qmCategorizer, + fIsOpener, fPossibleContinuer); + m_quotationRelatedTokens.Add(qmt); + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Finds paragraph-start tokens (REVIEW: I think there can only be one) in the list of + /// quotation-related substring tokens that are in the given token replace them (if + /// possible) with new paragraph-start tokens that include the first word or character + /// of the token so that there will be some text to highlight in the view when this + /// error is selected in the list being displayed + /// + /// The token being processed + /// ------------------------------------------------------------------------------------ + private void AddTextToParaStartTokens(ITextToken tok) + { + Debug.Assert(!(tok is VerseTextToken)); + + // We need to have some text in the token in order to highlight + if (tok.Text.Length == 0) + return; + + // Find something to highlight + int offset = 0; + int length = 0; + List words = m_charCategorizer.WordAndPuncts(tok.Text); + if (words.Count > 0) + { + offset = words[0].Offset; + length = Math.Max(words[0].Word.Length, words[0].Punct.Length); + } + + // If nothing is found, highlight the first character in the token + if (length == 0) + length = 1; + + for (int i = m_quotationRelatedTokens.Count - 1; i >= 0; i--) + { + ParaStartToken qrtok = m_quotationRelatedTokens[i] as ParaStartToken; + + if (qrtok != null) + { + if (qrtok.Tts.Text == string.Empty || + qrtok.Tts.FirstToken.TextType == TextType.VerseNumber || + qrtok.Tts.FirstToken.TextType == TextType.ChapterNumber) + { + // We have now found a paragraph-start token with no text to highlight + // in a list window. Update the text of the token with the new text + // that was found. + qrtok.Tts = new TextTokenSubstring(tok, offset, length); + } + break; // Don't change the text of earlier start tokens + } + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Goes through the list of quotation related tokens and generates errors for missing + /// continuers and quotations. + /// + /// ------------------------------------------------------------------------------------ + internal void FinalizeResult() + { + if (m_quotationRelatedTokens.Count == 0) + return; + + OpenQuotes openQuotes = new OpenQuotes(); + string prevStyleName = string.Empty; + for (int i = 0; i < m_quotationRelatedTokens.Count; i++) + { + QToken qrtok = m_quotationRelatedTokens[i]; + if (qrtok is QuotationMarkToken) + { + QuotationMarkToken qt = (QuotationMarkToken)qrtok; + CheckQuote(qt, openQuotes); + openQuotes.MostRecent = qt; + m_fFoundMissingContinuer = false; + } + else if (qrtok is ParaStartToken) + { + ParaStartToken pstok = qrtok as ParaStartToken; + List continuersExpected = + GetContinuersNeeded(pstok.StyleName, prevStyleName, openQuotes.Level); + + prevStyleName = pstok.StyleName; + + if (continuersExpected.Count > 0) + { + if (MatchContinuers(i, continuersExpected, openQuotes.Level)) + { + i += continuersExpected.Count; + } + else + { + int contLevel = GetExpectedContinuerLevel( + continuersExpected[continuersExpected.Count - 1], openQuotes.Level); + ReportError(pstok, string.Format(continuersExpected.Count == 1 ? + Localize("Missing continuation mark: level {0}") : + Localize("Missing continuation marks: levels 1-{0}"), + contLevel)); + + m_fFoundMissingContinuer = true; + } + } + } + } + + CheckForRemaining(openQuotes); + m_quotationRelatedTokens.Clear(); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the expected continuer level. + /// + /// The continuer. + /// The current level. + /// + /// ------------------------------------------------------------------------------------ + private int GetExpectedContinuerLevel(string continuer, int currentLevel) + { + ParagraphContinuationType paraCont = m_qmCategorizer.ContinuationType; + switch (paraCont) + { + case ParagraphContinuationType.RequireOutermost: return 1; + case ParagraphContinuationType.RequireInnermost: return currentLevel; + case ParagraphContinuationType.RequireAll: + for (int i = 1; i <= currentLevel; i++) + { + if (m_qmCategorizer.GetContinuationMarkForLevel(i) == continuer) + return i; + } + break; + } + + return 0; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Processes paragraph-start tokens encountered and returns a list of the continuers + /// that should follow the marker, based on the marker, the currently open quotes, and + /// the quotation categorizer settings. + /// + /// The style being checked in the token for whether it should have + /// continuers + /// Name of the prev style. + /// The current level + /// + /// ------------------------------------------------------------------------------------ + private List GetContinuersNeeded(string styleName, string prevStyleName, + int level) + { + List continuers = new List(); + + // Check if the quotation categorizer is set to continue at this style + // or when it follows the previous style. + if (!m_qmCategorizer.CanStyleContinueQuotation(styleName, prevStyleName) || + level < 1) + { + return continuers; + } + + ParagraphContinuationType paraCont = m_qmCategorizer.ContinuationType; + + if (paraCont == ParagraphContinuationType.None) + return continuers; + + if (paraCont == ParagraphContinuationType.RequireOutermost) + continuers.Add(m_qmCategorizer.GetContinuationMarkForLevel(1)); + else if (paraCont == ParagraphContinuationType.RequireInnermost) + continuers.Add(m_qmCategorizer.GetContinuationMarkForLevel(level)); + else + { + for (int i = 1; i <= level; i++) + continuers.Add(m_qmCategorizer.GetContinuationMarkForLevel(i)); + } + + return continuers; + } + + /// ------------------------------------------------------------------------------------ + /// + /// This function is called each time a marker is encountered that should be followed by one + /// or more continuers. Returns true if the expected continuers are present, false otherwise. + /// + /// The index of the token being processed + /// A list of the continuers expected + /// The currect level + /// ------------------------------------------------------------------------------------ + private bool MatchContinuers(int qrToksIndex, List continuersNeeded, int currentLevel) + { + for (int i = 0; i < continuersNeeded.Count; i++) + { + if ((qrToksIndex + i + 1 >= m_quotationRelatedTokens.Count) || + (continuersNeeded[i] != m_quotationRelatedTokens[qrToksIndex + i + 1].Tts.Text)) + { + return false; + } + + QuotationMarkToken qmTok = + m_quotationRelatedTokens[qrToksIndex + i + 1] as QuotationMarkToken; + + + if (qmTok == null || !qmTok.PossibleContinuer) + return false; + + GenerateTraceMsg(qmTok, + string.Format(Localize("Level {0} quote continuer"), qmTok.PossibleLevel)); + } + + return true; + } + + /// ------------------------------------------------------------------------------------ + /// + /// This function is called after all the quotation related tokens have been processed. + /// It generates errors for quotes that are still open at this point. + /// + /// The currently open quotes + /// ------------------------------------------------------------------------------------ + private void CheckForRemaining(OpenQuotes current) + { + if (current.Level == 0) + return; + + // If the last quotation mark encountered was a closer, and this quotation mark system + // collapses adjacent quotes, assume it was multiple quotes collapsed into one + if (m_qmCategorizer.CollapseAdjacentQuotes && !current.MostRecent.IsOpener) + return; + + // Print errors starting with inner quotes + for (int i = current.Level; i > 1; i--) + { + if (current.Openers[i - 1] is QToken) + ReportError(current.Openers[i - 1] as QToken, string.Format(m_noCloserMsg, i)); + } + + // Prints error for the outermost quote + if (m_qmCategorizer.TopLevelClosingExists && current.Openers[0] is QToken) + ReportError(current.Openers[0] as QToken, string.Format(m_noCloserMsg, 1)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Outputs (the text token substring of) the given quotation related token, attaching + /// the given error message to it. + /// + /// The token being processed + /// The error message to be displayed + /// ------------------------------------------------------------------------------------ + private void ReportError(QToken qrTok, string message) + { + Output(new TextTokenSubstring(qrTok.Tts, message)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// If verbose quotes are activated, outputs (the text token substring of) the given + /// quotation related token, attaching the given trace message to it. + /// + /// The token being processed + /// The trace message to be displayed + /// ------------------------------------------------------------------------------------ + private void GenerateTraceMsg(QToken qmTok, string message) + { + // Only output the trace message in verbose mode + if (m_verboseQuotes) + ReportError(qmTok, message); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Adds the text token substring of a quotation related token to the list of results. + /// At this point the message of the substring is either an error or trace message. + /// + /// The text token substring being processed + /// ------------------------------------------------------------------------------------ + private void Output(TextTokenSubstring tts) + { + if (m_desiredKey == string.Empty || m_desiredKey == tts.InventoryText) + m_results.Add(tts); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Given the information of the currently open quotation marks, process the next encountered + /// quotation mark, updating the information and generating errors where appropriate. + /// + /// The quotation mark token being processed + /// The currently open quotes + /// ------------------------------------------------------------------------------------ + private void CheckQuote(QuotationMarkToken qmtok, OpenQuotes openQuotes) + { + GenerateTraceMsg(qmtok, string.Format(qmtok.IsOpener ? + Localize("Level {0} quote opened") : Localize("Level {0} quote closed"), + (qmtok.IsOpener ? openQuotes.Level + 1 : openQuotes.Level))); + + if (m_qmCategorizer.IsMarkForLevel(qmtok.Tts.Text, openQuotes.Level + 1) && qmtok.IsOpener) + { + // The quote is opened properly + openQuotes.Level++; + openQuotes.Openers.Add(qmtok); + return; + } + else if (m_qmCategorizer.IsMarkForLevel(qmtok.Tts.Text, openQuotes.Level) && + (!qmtok.IsOpener || m_qmCategorizer.OpeningAndClosingAreIdentical(openQuotes.Level))) + { + // The quote is closed properly + openQuotes.Level--; + openQuotes.Openers.RemoveAt(openQuotes.Level); + return; + } + + int possibleQuoteMarkLevel = m_qmCategorizer.Level(qmtok.Tts.Text, + openQuotes.Level, qmtok.IsOpener); + + if (m_fFoundMissingContinuer) + { + //Debug.Assert(openQuotes.Level == openQuotes.Openers.Count); + Debug.Assert(possibleQuoteMarkLevel != 0); + + int newLevel = qmtok.IsOpener ? possibleQuoteMarkLevel : possibleQuoteMarkLevel - 1; + if (newLevel < openQuotes.Openers.Count) + { + while (openQuotes.Openers.Count > newLevel) + openQuotes.Openers.RemoveAt(openQuotes.Openers.Count - 1); + } + else if (newLevel > openQuotes.Openers.Count) + { + while (openQuotes.Openers.Count < newLevel) + openQuotes.Openers.Add("Missing Quote"); + } + openQuotes.Level = newLevel; + if (qmtok.IsOpener) + openQuotes.Openers.Add(qmtok); + else if (openQuotes.Openers.Count > 0 && openQuotes.Openers.Count > openQuotes.Level) + openQuotes.Openers.RemoveAt(openQuotes.Level); + return; + } + else if (!m_qmCategorizer.TopLevelClosingExists && possibleQuoteMarkLevel == 1 && + openQuotes.Level == 1) + { + // Opens a top-level quote when top-level closing quotes do not exist + openQuotes.Openers.RemoveAt(0); + openQuotes.Openers.Add(qmtok); + return; + } + else if (possibleQuoteMarkLevel > openQuotes.Level && !qmtok.IsOpener) + { + // The quote was closed, but was not opened + if (!m_qmCategorizer.CollapseAdjacentQuotes || openQuotes.MostRecent == null) + { + ReportError(qmtok, string.Format(Localize(m_noOpenerMsg), + possibleQuoteMarkLevel)); + } + return; + } + else if (possibleQuoteMarkLevel > openQuotes.Level + 1 && qmtok.IsOpener) + { + // The opener for the quote belongs to a quote level that is too high + ReportError(qmtok, string.Format( + Localize("Unexpected opening mark: level {0}"), + possibleQuoteMarkLevel)); + + // Add missing tokens for skipped levels + while (openQuotes.Openers.Count < possibleQuoteMarkLevel - 1) + openQuotes.Openers.Add("Missing Quote"); + + openQuotes.Level = possibleQuoteMarkLevel; + openQuotes.Openers.Add(qmtok); + return; + } + else if (possibleQuoteMarkLevel <= openQuotes.Level && qmtok.IsOpener) + { + // Opens a quote at the level already open or at too far out a level + for (int i = openQuotes.Level; i >= possibleQuoteMarkLevel; i--) + { + if (!(openQuotes.Openers[i - 1] is QToken)) + continue; + + ReportError(openQuotes.Openers[i - 1] as QToken, + string.Format(m_noCloserMsg, i)); + } + + openQuotes.Openers.RemoveRange(possibleQuoteMarkLevel - 1, + openQuotes.Level - possibleQuoteMarkLevel + 1); + openQuotes.Level = possibleQuoteMarkLevel; + openQuotes.Openers.Add(qmtok); + return; + } + + // A quote outside the current one is closed before the current one + for (int i = possibleQuoteMarkLevel; i < openQuotes.Level; i++) + { + if (!(openQuotes.Openers[i] is QToken)) + continue; + + ReportError(openQuotes.Openers[i] as QToken, + string.Format(m_noCloserMsg, i + 1)); + } + + openQuotes.Openers.RemoveRange(possibleQuoteMarkLevel - 1, openQuotes.Level - possibleQuoteMarkLevel); + openQuotes.Level = possibleQuoteMarkLevel - 1; + } + } + + #endregion + + #region QuotationMarkCategorizer class + /// ---------------------------------------------------------------------------------------- + /// + /// Quotation Mark Categorizer (don't ask!) + /// + /// ---------------------------------------------------------------------------------------- + internal class QuotationMarkCategorizer + { + private QuotationMarksList m_quoteMarks; + public bool CollapseAdjacentQuotes; + private StylePropsInfo m_styleInfo; + + /// ------------------------------------------------------------------------------------ + /// + /// Initializes a new instance of the class. + /// + /// ------------------------------------------------------------------------------------ + internal QuotationMarkCategorizer(IChecksDataSource source) + { + m_quoteMarks = QuotationMarksList.Load(source.GetParameterValue("QuotationMarkInfo"), + source.GetParameterValue("DefaultWritingSystemName")); + m_styleInfo = StylePropsInfo.Load(source.GetParameterValue("StylesInfo")); + CollapseAdjacentQuotes = source.GetParameterValue("CollapseAdjacentQuotes") == "No"; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the paragraph continuation type. + /// + /// ------------------------------------------------------------------------------------ + internal ParagraphContinuationType ContinuationType + { + get { return m_quoteMarks.ContinuationType; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the paragraph continuation mark (i.e. opening or closing). + /// + /// ------------------------------------------------------------------------------------ + internal ParagraphContinuationMark ContinuationMark + { + get { return m_quoteMarks.ContinuationMark; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the paragraph continuation mark for the specified level. + /// + /// ------------------------------------------------------------------------------------ + internal string GetContinuationMarkForLevel(int level) + { + if (level > m_quoteMarks.Levels) + return null; + + return (m_quoteMarks.ContinuationMark == ParagraphContinuationMark.Opening ? + m_quoteMarks[level - 1].Opening : m_quoteMarks[level - 1].Closing); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the opening quotation mark for the specified level. + /// + /// ------------------------------------------------------------------------------------ + internal string GetOpenerForLevel(int level) + { + return (level > m_quoteMarks.Levels ? null : m_quoteMarks[level - 1].Opening); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the closing quotation mark for the specified level. + /// + /// ------------------------------------------------------------------------------------ + internal string GetCloserForLevel(int level) + { + return (level > m_quoteMarks.Levels ? null : m_quoteMarks[level - 1].Closing); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Determines whether the specified style name is legitimate for continuing + /// a quotation. + /// + /// ------------------------------------------------------------------------------------ + internal bool CanStyleContinueQuotation(string styleName, string prevStyleName) + { + if (m_styleInfo != null && m_styleInfo.SentenceInitial != null) + { + foreach (StyleInfo spi in m_styleInfo.SentenceInitial) + { + if (spi.StyleName == styleName) + { + if (spi.UseType == StyleInfo.UseTypes.prose) + return true; + + if (spi.UseType == StyleInfo.UseTypes.line && IsProseOrStanzaBreak(prevStyleName)) + return true; + } + } + } + + return false; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Determines whether or not the specified style name represents a style whose use is + /// prose or stanzabreak. + /// + /// ------------------------------------------------------------------------------------ + private bool IsProseOrStanzaBreak(string styleName) + { + foreach (StyleInfo spi in m_styleInfo.SentenceInitial) + { + if (spi.StyleName == styleName && spi.UseType == StyleInfo.UseTypes.prose) + return true; + } + + foreach (StyleInfo spi in m_styleInfo.Special) + { + if (spi.StyleName == styleName && spi.UseType == StyleInfo.UseTypes.stanzabreak) + return true; + } + + return false; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets a value indicating whether the first level closing quotation does not exist. + /// + /// ------------------------------------------------------------------------------------ + internal bool TopLevelClosingExists + { + get { return m_quoteMarks.Levels >= 1 && !string.IsNullOrEmpty(m_quoteMarks[0].Closing); } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Returns whether or not the specified level contains an opening and closing quote + /// mark that are identical. + /// + /// The level to check + /// True if the opening and closing quote marks are identical, false otherwise + /// + /// ------------------------------------------------------------------------------------ + internal bool OpeningAndClosingAreIdentical(int level) + { + if (level > m_quoteMarks.QMarksList.Count) + return false; // Just in case + + QuotationMarks qmark = m_quoteMarks.QMarksList[level - 1]; + return (qmark.Opening == qmark.Closing); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Determines whether the specified quotation mark is initial punctuation. + /// + /// ------------------------------------------------------------------------------------ + internal bool IsInitialPunctuation(string opening) + { + foreach (QuotationMarks qmark in m_quoteMarks.QMarksList) + { + if (opening == qmark.Opening) + return true; + } + + return false; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Determines whether [is final punctuation] [the specified quotation mark]. + /// + /// The quotation mark. + /// ------------------------------------------------------------------------------------ + internal bool IsFinalPunctuation(string closing) + { + foreach (QuotationMarks qmark in m_quoteMarks.QMarksList) + { + if (closing == qmark.Closing) + return true; + } + + return false; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Determines whether the specified quotation mark is for the specified level. + /// + /// The quotation mark to check. + /// The level. + /// + /// true if the specified quotation mark is for the specified level; false otherwise. + /// + /// ------------------------------------------------------------------------------------ + internal bool IsMarkForLevel(string qmark, int level) + { + return Level(qmark, level) == level; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the level of the specified quotaion mark. + /// + /// The mark to get the level of + /// The level to start searching at + /// True to search forward from the starting level, false + /// to search backwards from the starting level + /// ------------------------------------------------------------------------------------ + internal int Level(string qmark, int startingLevel, bool fSearchForward) + { + if (startingLevel <= m_quoteMarks.Levels && startingLevel > 0) + { + int endLevel = (fSearchForward ? m_quoteMarks.Levels - 1 : 0); + for (int i = startingLevel - 1; i != endLevel; i += (fSearchForward ? 1 : -1)) + { + if (qmark == m_quoteMarks[i].Opening || qmark == m_quoteMarks[i].Closing) + return i + 1; + } + } + + return Level(qmark, 0); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the level of the specified quotaion mark. + /// + /// The mark to get the level of + /// The level that the mark is expected to have. This level + /// is checked first. + /// ------------------------------------------------------------------------------------ + internal int Level(string qmark, int expectedLevel) + { + if (expectedLevel > 0 && expectedLevel <= m_quoteMarks.Levels) + { + // Check the expected level first. If it matches the opening or the closing, then + // the expected level is considered to be the level of the mark. + if (m_quoteMarks[expectedLevel - 1].Opening == qmark || + m_quoteMarks[expectedLevel - 1].Closing == qmark) + return expectedLevel; + } + + for (int i = 0; i < m_quoteMarks.Levels; i++) + { + if (qmark == m_quoteMarks[i].Opening || qmark == m_quoteMarks[i].Closing) + return i + 1; + } + + return 0; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the pattern. + /// + /// ------------------------------------------------------------------------------------ + internal string Pattern + { + get + { + List quotationMarks = new List(); + + foreach (QuotationMarks qmark in m_quoteMarks.QMarksList) + { + if (!string.IsNullOrEmpty(qmark.Opening) && !quotationMarks.Contains(qmark.Opening)) + quotationMarks.Add(Regex.Escape(qmark.Opening)); + + if (!string.IsNullOrEmpty(qmark.Closing) && !quotationMarks.Contains(qmark.Closing)) + quotationMarks.Add(Regex.Escape(qmark.Closing)); + } + + return string.Join("|", quotationMarks.ToArray()); + } + } + } + + #endregion + + #region OpenQuotes class + /// ---------------------------------------------------------------------------------------- + /// + /// + /// + /// ---------------------------------------------------------------------------------------- + internal class OpenQuotes + { + /// + /// A list of the open quotes starting with the most deeply nested. + /// + internal ArrayList Openers = new ArrayList(); + + /// + /// The number of currently open quotes. + /// + internal int Level; + + /// + /// The most recently encountered quotation mark. + /// + internal QuotationMarkToken MostRecent; + } + + #endregion + + #region QToken class + /// ---------------------------------------------------------------------------------------- + /// + /// + /// + /// ---------------------------------------------------------------------------------------- + internal class QToken + { + internal TextTokenSubstring Tts; + + /// ------------------------------------------------------------------------------------ + /// + /// Returns a that represents the current + /// . + /// + /// ------------------------------------------------------------------------------------ + public override string ToString() + { + if (Tts == null) + return ""; + + return string.Format("Text: {0}, Message: {1}", + string.IsNullOrEmpty(Tts.Text) ? "-" : Tts.Text, + string.IsNullOrEmpty(Tts.Message) ? "-" : Tts.Message); + } + } + + #endregion + + #region QuotationMarkToken class + /// ---------------------------------------------------------------------------------------- + /// + /// + /// + /// ---------------------------------------------------------------------------------------- + internal class QuotationMarkToken : QToken + { + private QuotationMarkCategorizer m_categorizer; + private bool m_fPossibleContinuer; + private bool m_fIsOpener; + + /// ------------------------------------------------------------------------------------ + /// + /// Initializes a new instance of the class. + /// + /// ------------------------------------------------------------------------------------ + internal QuotationMarkToken(TextTokenSubstring tts, QuotationMarkCategorizer categorizer, + bool fIsOpener, bool fPossibleContinuer) + { + Tts = tts; + m_categorizer = categorizer; + m_fIsOpener = fIsOpener; + m_fPossibleContinuer = fPossibleContinuer; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets a value indicating whether the quotation mark was found at the beginning of + /// a paragraph and is thus, a possible continuer. + /// + /// ------------------------------------------------------------------------------------ + internal bool PossibleContinuer + { + get { return m_fPossibleContinuer; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the possible level that this . + /// + /// ------------------------------------------------------------------------------------ + internal int PossibleLevel + { + get { return m_categorizer.Level(Tts.Text, 0); } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets a value indicating whether this instance is opener. + /// + /// ------------------------------------------------------------------------------------ + internal bool IsOpener + { + get { return m_fIsOpener; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + public override string ToString() + { + return "Quote-" + Tts.Text + (IsOpener ? ", Opener" : ", Closer") + + (m_fPossibleContinuer ? ", PossibleContinuer" : string.Empty) + ", " + Tts.Message; + } + } + + #endregion + + #region ParaStartToken class + /// ---------------------------------------------------------------------------------------- + /// + /// + /// + /// ---------------------------------------------------------------------------------------- + internal class ParaStartToken : QToken + { + internal string StyleName; + + /// ------------------------------------------------------------------------------------ + /// + /// Initializes a new instance of the class. + /// + /// ------------------------------------------------------------------------------------ + internal ParaStartToken(TextTokenSubstring tts, string styleName) + { + Tts = tts; + StyleName = styleName; + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + public override string ToString() + { + return "New paragraph-" + StyleName + ", " + Tts.ParagraphStyle + " " + Tts.Message; + } + } + + #endregion +} diff --git a/Lib/src/ScrChecks/RepeatedWordsCheck.cs b/Lib/src/ScrChecks/RepeatedWordsCheck.cs new file mode 100644 index 0000000000..db8ee2aae5 --- /dev/null +++ b/Lib/src/ScrChecks/RepeatedWordsCheck.cs @@ -0,0 +1,300 @@ +// Copyright (c) 2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using SIL.FieldWorks.Common.FwUtils; + +// NOT Paratext dependendent + +namespace SILUBS.ScriptureChecks +{ + /// ---------------------------------------------------------------------------------------- + /// + /// Check to detect repeated words + /// + /// ---------------------------------------------------------------------------------------- + public class RepeatedWordsCheck : IScrCheckInventory + { + IChecksDataSource m_checksDataSource; + CharacterCategorizer characterCategorizer; + + List m_repeatedWords; + List goodWords = new List(); + string validItems; + string invalidItems; + + /// ------------------------------------------------------------------------------------ + /// + /// Initializes a new instance of the class. + /// + /// The checks data source. + /// ------------------------------------------------------------------------------------ + public RepeatedWordsCheck(IChecksDataSource checksDataSource) + { + m_checksDataSource = checksDataSource; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Returns a localized version of the specified string. + /// + /// ------------------------------------------------------------------------------------ + private string Localize(string strToLocalize) + { + return m_checksDataSource.GetLocalizedString(strToLocalize); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Maintain string containing validly repeatable words. + /// Also keep this a List in goodWords + /// + /// ------------------------------------------------------------------------------------ + public string ValidItems { + get { return validItems; } + set + { + validItems = value.Trim(); + goodWords = new List(); + if (validItems != "") + goodWords = new List(validItems.Split()); + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// THIS REALLY OUGHT TO BE List + /// Invalid items, separated by spaces. + /// Inventory form queries this to know how what status to give each item + /// in the inventory. Inventory form updates this if user has changed the status + /// of any item. + /// + /// + /// ------------------------------------------------------------------------------------ + public string InvalidItems + { + get { return invalidItems; } + set { invalidItems = value.Trim(); } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Returns name of check for use in UI. + /// + /// ------------------------------------------------------------------------------------ + public string CheckName { get { return Localize("Repeated Words"); } } + + /// ------------------------------------------------------------------------------------ + /// + /// The unique identifier of the check. This should never be changed! + /// + /// ------------------------------------------------------------------------------------ + public Guid CheckId { get { return StandardCheckIds.kguidRepeatedWords; } } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the name of the group which contains this check. + /// + /// ------------------------------------------------------------------------------------ + public string CheckGroup { get { return Localize("Basic"); } } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets a number that can be used to order this check relative to other checks in the + /// same group when displaying checks in the UI. + /// + /// ------------------------------------------------------------------------------------ + public float RelativeOrder + { + get { return 800; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the description for this check. + /// + /// ------------------------------------------------------------------------------------ + public string Description { get { return Localize("Checks for repeated words."); } } + + /// ------------------------------------------------------------------------------------ + /// + /// This is the column header of the first column when you create an + /// inventory of this type of error. + /// + /// ------------------------------------------------------------------------------------ + public string InventoryColumnHeader + { + get { return Localize("Words"); } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Update the parameter values for storing the valid and invalid lists in CheckDataSource + /// and then save them. This is here because the inventory form does not know the names of + /// the parameters that need to be saved for a given check, only the check knows this. + /// + /// ------------------------------------------------------------------------------------ + public void Save() + { + m_checksDataSource.SetParameterValue("RepeatableWords", validItems); + m_checksDataSource.SetParameterValue("NonRepeatableWords", invalidItems); + m_checksDataSource.Save(); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Find all repeated words. Ignore any found in 'validItemsList'. Call RecordError + /// delegate whenever any other repeated key is found. + /// + /// ITextToken's corresponding to the text to be checked. + /// Typically this is one books worth. + /// Call this delegate to report each error found. + /// ------------------------------------------------------------------------------------ + public void Check(IEnumerable toks, RecordErrorHandler record) + { + // Find all repeated words. Put them in 'm_repeatedWords'. + GetReferences(toks, string.Empty); + + string msg = Localize("Repeated word"); + + foreach (TextTokenSubstring tts in m_repeatedWords) + { + if (!goodWords.Contains(tts.ToString())) + { + tts.Message = msg; + record(new RecordErrorEventArgs(tts, CheckId)); + } + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets a list if TextTokenSubstrings conataining the references and character offsets + /// where repeated words occur. + /// + /// The tokens (from the data source) to check for repeated words. + /// + /// If looking for occurrences of a specific repeated word, + /// set this to be that word; otherwise pass an empty string. + /// + /// ------------------------------------------------------------------------------------ + public List GetReferences(IEnumerable tokens, string desiredKey) + { +#if DEBUG + List AllTokens = new List(tokens); + if (AllTokens.Count == 0) + { + // Keep the compiler from complaining about assigning to a variable, but not using it. + } +#endif + characterCategorizer = m_checksDataSource.CharacterCategorizer; + // Get a string of words that may be validly repeated. + // Words are separated by blanks. + ValidItems = m_checksDataSource.GetParameterValue("RepeatableWords"); + // List of words that are known to be not repeatable. + InvalidItems = m_checksDataSource.GetParameterValue("NonRepeatableWords"); + + TextType prevTextType = TextType.Other; + m_repeatedWords = new List(); + ProcessRepeatedWords bodyProcessor = + new ProcessRepeatedWords(characterCategorizer, m_repeatedWords, desiredKey); + ProcessRepeatedWords noteProcessor = + new ProcessRepeatedWords(characterCategorizer, m_repeatedWords, desiredKey); + + foreach (ITextToken tok in tokens) + { + if (tok.IsParagraphStart) + { + noteProcessor.Reset(); + bodyProcessor.Reset(); + } + + if (tok.TextType == TextType.Note) + { + if (tok.IsNoteStart) + noteProcessor.Reset(); + noteProcessor.ProcessToken(tok); + } + + // When we leave a caption, we start over checking for repeated words. + // A caption is a start of a paragraph, so we already start over + // when we encounter a picture caption. + if (prevTextType == TextType.PictureCaption) + noteProcessor.Reset(); + + if (tok.TextType == TextType.Verse || tok.TextType == TextType.Other) + { + noteProcessor.Reset(); + bodyProcessor.ProcessToken(tok); + } + + if (tok.TextType == TextType.ChapterNumber) + bodyProcessor.Reset(); + + prevTextType = tok.TextType; + } + + return m_repeatedWords; + } + } + + class ProcessRepeatedWords + { + CharacterCategorizer characterCategorizer; + List result; + string desiredKey; + string prevWord = ""; + + public ProcessRepeatedWords(CharacterCategorizer characterCategorizer, + List result, string desiredKey) + { + this.characterCategorizer = characterCategorizer; + this.result = result; + this.desiredKey = desiredKey.ToLower(); + } + + public void ProcessToken(ITextToken tok) + { + foreach (WordAndPunct wap in characterCategorizer.WordAndPuncts(tok.Text)) + ProcessWord(tok, wap); + } + + private void ProcessWord(ITextToken tok, WordAndPunct wap) + { + if (wap.Word == "") + return; + + string nextWord = wap.Word.ToLower(); + + if (prevWord == nextWord) + AddWord(tok, wap); + + prevWord = nextWord; + + // If there are characters (such as quotes) between words, + // then two words are not considered repeating, even if they are identical + foreach (char cc in wap.Punct) + { + if (!char.IsWhiteSpace(cc)) + { + Reset(); + break; + } + } + } + + private void AddWord(ITextToken tok, WordAndPunct wap) + { + TextTokenSubstring tts = new TextTokenSubstring(tok, wap.Offset, wap.Word.Length); + if (desiredKey == "" || desiredKey == tts.InventoryText) + result.Add(tts); + } + + public void Reset() + { + prevWord = ""; + } + } +} diff --git a/Lib/src/ScrChecks/ScrChecks.csproj b/Lib/src/ScrChecks/ScrChecks.csproj new file mode 100644 index 0000000000..4901c48e56 --- /dev/null +++ b/Lib/src/ScrChecks/ScrChecks.csproj @@ -0,0 +1,41 @@ + + + + ScrChecks + SILUBS.ScriptureChecks + net48 + Library + true + 168,169,219,414,649,1635,1702,1701 + false + false + + + true + portable + false + DEBUG;TRACE + + + portable + true + TRACE + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Lib/src/ScrChecks/ScrChecksTests/CapitalizationCheckSilUnitTest.cs b/Lib/src/ScrChecks/ScrChecksTests/CapitalizationCheckSilUnitTest.cs new file mode 100644 index 0000000000..3d422079e4 --- /dev/null +++ b/Lib/src/ScrChecks/ScrChecksTests/CapitalizationCheckSilUnitTest.cs @@ -0,0 +1,988 @@ +// Copyright (c) 2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using NUnit.Framework; +using SIL.FieldWorks.Common.FwUtils; +using SIL.LCModel.Utils; + +namespace SILUBS.ScriptureChecks +{ + /// ---------------------------------------------------------------------------------------- + /// + /// TE-style Unit tests for the CapitalizationCheck class + /// + /// ---------------------------------------------------------------------------------------- + [TestFixture] + public class CapitalizationCheckSilUnitTest : ScrChecksTestBase + { + private TestChecksDataSource m_dataSource; + + // A subset of serialized style information for seven different classes of styles + // that require capitalization: + // sentence intial styles, proper nouns, tables, lists, special, headings and titles. + string stylesInfo = + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "
" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "<StyleInfo StyleName=\"Title_Main\" StyleType=\"paragraph\" />" + + "<StyleInfo StyleName=\"Title_Secondary\" StyleType=\"character\" />" + + "<StyleInfo StyleName=\"Title_Tertiary\" StyleType=\"character\" />" + + "
"; + + #region Initialization + /// ------------------------------------------------------------------------------------ + /// + /// Set up that happens before every test runs. + /// + /// ------------------------------------------------------------------------------------ + [SetUp] + public override void TestSetup() + { + base.TestSetup(); + m_dataSource = new TestChecksDataSource(); + m_dataSource.SetParameterValue("StylesInfo", stylesInfo); + m_dataSource.SetParameterValue("SentenceFinalPunctuation", ".?!"); + m_check = new CapitalizationCheck(m_dataSource); + } + #endregion + + #region Tests + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of the paragraph is + /// not capitalized. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Paragraph_Uncapitalized() + { + m_dataSource.m_tokens.Add(new DummyTextToken("this is nice, my friend! ", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("And is this another nice sentence? ", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("Yes, this is nice.", + TextType.Verse, false, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + + CheckError(0, m_dataSource.m_tokens[0].Text, 0, "t", "Sentence should begin with a capital letter"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of the paragraph is + /// not a capitalized letter with a diacritic. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Paragraph_UncapitalizedWithDiacritic_SeveralTokens() + { + m_dataSource.m_tokens.Add(new DummyTextToken( + "e\u0301 is small latin 'e' with acute in decomposed format, my friend! " + + "a\u0301 is an 'a' with the same. i\u0301 is an 'i' with the same.", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("o\u0303 is small latin 'o' with tilde, my friend! ", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u00FC is small latin 'u' with diaeresis, my friend! ", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(5)); + + CheckError(0, m_dataSource.m_tokens[0].Text, 0, "e\u0301", "Sentence should begin with a capital letter"); + CheckError(1, m_dataSource.m_tokens[0].Text, 66, "a\u0301", "Sentence should begin with a capital letter"); + CheckError(2, m_dataSource.m_tokens[0].Text, 94, "i\u0301", "Sentence should begin with a capital letter"); + CheckError(3, m_dataSource.m_tokens[1].Text, 0, "o\u0303", "Sentence should begin with a capital letter"); + CheckError(4, m_dataSource.m_tokens[2].Text, 0, "\u00FC", "Sentence should begin with a capital letter"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of a list paragraph is + /// not a capitalized letter with a diacritic. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Paragraph_UncapitalizedWithDiacritic_SeveralTokensInNotes() + { + m_dataSource.m_tokens.Add(new DummyTextToken( + "e\u0301 is small latin 'e' with acute in decomposed format, my friend! " + + "a\u0301 is an 'a' with the same. i\u0301 is an 'i' with the same.", + TextType.Verse, true, true, "Line1")); + m_dataSource.m_tokens.Add(new DummyTextToken("o\u0303 is small latin 'o' with tilde, my friend! ", + TextType.Verse, true, true, "Line1")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u00FC is small latin 'u' with diaeresis, my friend! ", + TextType.Verse, true, false, "Line1")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(5)); + + CheckError(0, m_dataSource.m_tokens[0].Text, 0, "e\u0301", "Sentence should begin with a capital letter"); + CheckError(1, m_dataSource.m_tokens[0].Text, 66, "a\u0301", "Sentence should begin with a capital letter"); + CheckError(2, m_dataSource.m_tokens[0].Text, 94, "i\u0301", "Sentence should begin with a capital letter"); + CheckError(3, m_dataSource.m_tokens[1].Text, 0, "o\u0303", "Sentence should begin with a capital letter"); + CheckError(4, m_dataSource.m_tokens[2].Text, 0, "\u00FC", "Sentence should begin with a capital letter"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of the paragraph is + /// not capitalized letter with a diacritic that is preceeded by quotes. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Paragraph_UncapitalizedWithDiacritic_QuotesBefore() + { + m_dataSource.m_tokens.Add(new DummyTextToken( + "\"e\u0301 is small latin 'e' with acute in decomposed format, my friend! ", + TextType.Verse, true, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(1)); + CheckError(0, m_dataSource.m_tokens[0].Text, 1, "e\u0301", "Sentence should begin with a capital letter"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of the paragraph is + /// not capitalized letter with multiple diacritics. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Paragraph_UncapitalizedWithMultipleDiacritics() + { + m_dataSource.m_tokens.Add(new DummyTextToken( + "u\u0301\u0302\u0327 is small latin 'u' with circumflex, acute accent and cedilla. ", + TextType.Verse, true, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(1)); + CheckError(0, m_dataSource.m_tokens[0].Text, 0, "u\u0301\u0302\u0327", + "Sentence should begin with a capital letter"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of the paragraph is + /// uncapitalized letter with a diacritic made of two decomposed characters. TE-6862 + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Paragraph_UncapitalizedDecomposedLetter() + { + m_dataSource.m_tokens.Add(new DummyTextToken( + "\u0061\u0301 is small latin a with a combining acute accent, my friend! ", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + + CheckError(0, m_dataSource.m_tokens[0].Text, 0, "\u0061\u0301", "Sentence should begin with a capital letter"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of the paragraph is + /// a non-Roman character in a writing system that does not use capitalization. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Paragraph_StartsWithNoCaseNonRoman() + { + m_dataSource.m_tokens.Add(new DummyTextToken("\u0E01 is the Thai letter Ko Kai.", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of the paragraph is + /// a no case PUA. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Paragraph_StartsWithNoCasePUA() + { + m_dataSource.m_tokens.Add(new DummyTextToken( + "Character in next sentence is no case PUA character. \uEE00", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of the paragraph is a + /// latin capital letter D with tsmall letter z with caron. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Paragraph_StartsWithLatinExtendedCap() + { + m_dataSource.m_tokens.Add(new DummyTextToken("\u01C5 is a latin extended capital.", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the paragraph begins with a chapter + /// number followed by verse number followed by lowercase letter. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Paragraph_StartsWithLCaseAfterChapterVerse() + { + m_dataSource.m_tokens.Add(new DummyTextToken("1", TextType.ChapterNumber, + true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse one", TextType.Verse, + false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the paragraph begins with a verse + /// followed by lowercase letter + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Paragraph_StartsWithLCaseAfterVerse() + { + m_dataSource.m_tokens.Add(new DummyTextToken("1", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse one", TextType.Verse, + false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the paragraph begins with a chapter + /// number followed by lowercase letter (verse number one is implied). + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Paragraph_StartsWithLCaseAfterChapter() + { + m_dataSource.m_tokens.Add(new DummyTextToken("1", TextType.ChapterNumber, + true, false, "Paragraph", "Chapter Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse one", TextType.Verse, + false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the paragraph begins with a chapter + /// number, verse number and footnote marker followed by lowercase letter. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Paragraph_StartsWithLCaseAfterChapterVerseAndNote() + { + m_dataSource.m_tokens.Add(new DummyTextToken("1", TextType.ChapterNumber, + true, false, "Paragraph", "Chapter Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("Footnote Text", TextType.Note, + false, true, "Note General Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse one", TextType.Verse, + false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the paragraph begins with a verse number + /// and footnote marker followed by lowercase letter. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Paragraph_StartsWithLCaseAfterVerseAndNote() + { + // Check when the footnote marker run is considered a run that starts a paragraph. + m_dataSource.m_tokens.Add(new DummyTextToken("1", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("Footnote Text", TextType.Note, + true, true, "Note General Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse one", TextType.Verse, + false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + + // Check when the footnote marker run is not considered + // a run that starts a paragraph. + m_errors.Clear(); + m_dataSource.m_tokens.Clear(); + m_dataSource.m_tokens.Add(new DummyTextToken("1", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("Footnote Text", TextType.Note, + false, true, "Note General Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse one", TextType.Verse, + false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the paragraph begins with a chapter number + /// and footnote marker followed by lowercase letter. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Paragraph_StartsWithLCaseAfterChapterAndNote() + { + // Check when the footnote marker run is considered a run that starts a paragraph. + m_dataSource.m_tokens.Add(new DummyTextToken("1", TextType.ChapterNumber, + true, false, "Paragraph", "Chapter Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("Footnote Text", TextType.Note, + true, true, "Note General Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse one", TextType.Verse, + false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + + // Check when the footnote marker run is not considered + // a run that starts a paragraph. + m_errors.Clear(); + m_dataSource.m_tokens.Clear(); + m_dataSource.m_tokens.Add(new DummyTextToken("1", TextType.ChapterNumber, + true, false, "Paragraph", "Chapter Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("Footnote Text", TextType.Note, + false, true, "Note General Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse one", TextType.Verse, + false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the paragraph begins a footnote marker + /// followed by lowercase letter. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Paragraph_StartsWithLCaseAfterNote() + { + m_dataSource.m_tokens.Add(new DummyTextToken("Footnote Text", TextType.Note, + true, true, "Note General Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse one", TextType.Verse, + true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check one footnote ends with a period and the next + /// footnote begins with lower case. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Footnotes_TreatedSeparately() + { + m_dataSource.m_tokens.Add(new DummyTextToken("This is footnote one.", TextType.Note, + true, true, "Note General Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("footnote two", TextType.Note, + true, false, "Note General Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the paragraph begins with a picture ORC + /// followed by lowercase letter. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Paragraph_StartsWithLCaseAfterPicture() + { + m_dataSource.m_tokens.Add(new DummyTextToken("Picture Caption", TextType.PictureCaption, + true, false, "Caption")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse one", TextType.Verse, + true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the paragraph begins with a verse number + /// and a picture ORC followed by lowercase letter. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Paragraph_StartsWithLCaseAfterVersePicture() + { + m_dataSource.m_tokens.Add(new DummyTextToken("1", TextType.VerseNumber, + true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("Picture Caption", TextType.PictureCaption, + true, false, "Caption")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse one", TextType.Verse, + false, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void LCaseInRunAfterNote() + { + m_dataSource.m_tokens.Add(new DummyTextToken("1", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("This is before a footnote marker", + TextType.Verse, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("Footnote Text", + TextType.Note, true, true, "Note General Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("this is after a footnote marker", + TextType.Verse, false, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void LCaseInRunAfterPicture() + { + m_dataSource.m_tokens.Add(new DummyTextToken("1", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("This is before a picture", + TextType.Verse, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("My picture caption", + TextType.PictureCaption, true, true, "Caption")); + m_dataSource.m_tokens.Add(new DummyTextToken("this is after the picture", + TextType.Verse, false, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void LCaseInRunAfterVerse() + { + m_dataSource.m_tokens.Add(new DummyTextToken("1", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("This is before a verse", + TextType.Verse, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.VerseNumber, false, true, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("this is after a verse", + TextType.Verse, false, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test that the check catches the case where a verse starts with a lowercase letter + /// when the preceding verse ended with sentence-end punctuation. TE-8050 + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void LCaseInRunAfterSentenceEndPunctAndVerse() + { + m_dataSource.m_tokens.Add(new DummyTextToken("1", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("This is verse one.", + TextType.Verse, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.VerseNumber, false, true, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("this is verse two.", + TextType.Verse, false, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + CheckError(0, m_dataSource.m_tokens[3].Text, 0, "t", "Sentence should begin with a capital letter"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of the paragraph is + /// not capitalized and para begins with quotes. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Paragraph_UncapitalizedWithQuotes() + { + //201C = Left double quotation mark + //2018 = Left single quotation mark + m_dataSource.m_tokens.Add(new DummyTextToken( + "\u201C \u2018this is an uncaptialized para with quotes, my friend! ", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + + CheckError(0, m_dataSource.m_tokens[0].Text, 3, "t", "Sentence should begin with a capital letter"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first word-forming character is ' : 'tis so. + /// The ' is the first character of the sentence and the 't' should be capitalized. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Sentence_UncapitalizedWithApostrophe() + { + m_dataSource.m_tokens.Add(new DummyTextToken( + "Yes! 'tis an uncaptialized sentence with apostrophe before the first lowercase letter!", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + + CheckError(0, m_dataSource.m_tokens[0].Text, 6, "t", "Sentence should begin with a capital letter"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first word-forming character is ' : 'Tis so. + /// The ' is the first character of the sentence and the 'T' is capitalized. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Sentence_CapitalizedWithApostrophe() + { + m_dataSource.m_tokens.Add(new DummyTextToken( + "Yes! 'Tis an uncaptialized sentence with apostrophe before the first lowercase letter!", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of the paragraph is + /// capitalized and para begins with quotes. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Paragraph_CapitalizedWithQuotes() + { + //201C = Left double quotation mark + //2018 = Left single quotation mark + m_dataSource.m_tokens.Add(new DummyTextToken( + "\u201C \u2018This is an uncaptialized para with quotes, my friend! ", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of the proper + /// name is capitalized. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void CapitalizedProperName_ParaStart() + { + m_dataSource.m_tokens.Add(new DummyTextToken("This", + TextType.Verse, true, false, "Paragraph", "Name Of God")); + m_dataSource.m_tokens.Add(new DummyTextToken( + " is a proper name, my friend! ", + TextType.Verse, false, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of the proper + /// name is uncapitalized at the start of a paragraph. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void UncapitalizedProperName_ParaStart() + { + m_dataSource.m_tokens.Add(new DummyTextToken("this", + TextType.Verse, true, false, "Paragraph", "Name Of God")); + m_dataSource.m_tokens.Add(new DummyTextToken( + " is a proper name, my friend! ", + TextType.Verse, false, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + // This word should be capitalized for two reasons: it occurs sentence initially and it + // is a proper noun. + CheckError(0, m_dataSource.m_tokens[0].Text, 0, "t", "Sentence should begin with a capital letter"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of the proper + /// name is uncapitalized at the start of the paragraph that does not have to be + /// capitalized. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void UncapitalizedProperName_ParaStart2() + { + m_dataSource.m_tokens.Add(new DummyTextToken("this", + TextType.Verse, true, false, "UncapitalizedParaStyle", "Name Of God")); + m_dataSource.m_tokens.Add(new DummyTextToken( + " is a proper name, my friend! ", + TextType.Verse, false, false, "UncapitalizedParaStyle")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + // This word should be capitalized for two reasons: it occurs sentence initially and it + // is a proper noun. + CheckError(0, m_dataSource.m_tokens[0].Text, 0, "t", "Proper nouns should begin with a capital letter"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of the proper + /// name is uncapitalized. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void CapitalizedProperName_NotParaStart() + { + m_dataSource.m_tokens.Add(new DummyTextToken("The ", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("Lord", + TextType.Verse, false, false, "Paragraph", "Name Of God")); + m_dataSource.m_tokens.Add(new DummyTextToken(" is ", + TextType.Verse, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("God!", + TextType.Verse, false, false, "Paragraph", "Name Of God")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of the proper + /// names are uncapitalized when they are not at the start of the paragraph. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void UncapitalizedProperName_NotParaStart() + { + m_dataSource.m_tokens.Add(new DummyTextToken("The ", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("lord", + TextType.Verse, false, false, "Paragraph", "Name Of God")); + m_dataSource.m_tokens.Add(new DummyTextToken(" is ", + TextType.Verse, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("god!", + TextType.Verse, false, false, "Paragraph", "Name Of God")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(2)); + CheckError(0, m_dataSource.m_tokens[1].Text, 0, "l", "Proper nouns should begin with a capital letter"); + CheckError(1, m_dataSource.m_tokens[3].Text, 0, "g", "Proper nouns should begin with a capital letter"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of the proper + /// names are uncapitalized when they are not at the start of the paragraph. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void UncapitalizedParagraph_WithCapProperName() + { + m_dataSource.m_tokens.Add(new DummyTextToken("the ", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("Lord", + TextType.Verse, false, false, "Paragraph", "Name Of God")); + m_dataSource.m_tokens.Add(new DummyTextToken(" is ", + TextType.Verse, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("God!", + TextType.Verse, false, false, "Paragraph", "Name Of God")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(1)); + CheckError(0, m_dataSource.m_tokens[0].Text, 0, "t", "Sentence should begin with a capital letter"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of the proper + /// names are uncapitalized when they are not at the start of the paragraph. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void UncapitalizedParaStartAndProperName() + { + m_dataSource.m_tokens.Add(new DummyTextToken("the ", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("lord", + TextType.Verse, false, false, "Paragraph", "Name Of God")); + m_dataSource.m_tokens.Add(new DummyTextToken(" is ", + TextType.Verse, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("god!", + TextType.Verse, false, false, "Paragraph", "Name Of God")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(3)); + CheckError(0, m_dataSource.m_tokens[0].Text, 0, "t", "Sentence should begin with a capital letter"); + CheckError(1, m_dataSource.m_tokens[1].Text, 0, "l", "Proper nouns should begin with a capital letter"); + CheckError(2, m_dataSource.m_tokens[3].Text, 0, "g", "Proper nouns should begin with a capital letter"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of the paragraph is + /// uncapitalized. A non-initial sentence is also not capitalized. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void UncapitalizedPara_WithEmbeddedUncapitalizedSentence() + { + m_dataSource.m_tokens.Add(new DummyTextToken("this sentence isn't capitalized. " + + "this one isn't either.", TextType.Verse, true, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(2)); + CheckError(0, m_dataSource.m_tokens[0].Text, 0, "t", "Sentence should begin with a capital letter"); + CheckError(1, m_dataSource.m_tokens[0].Text, 33, "t", "Sentence should begin with a capital letter"); + } + + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of the paragraph is + /// uncapitalized. Followed by an uncapitalized sentence containing the words of Christ, + /// i.e. it should be capitalized for two reasons but we want only one error report + /// from this uncapitalized letter. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void UncapitalizedPara_WithEmbeddedWordsOfChrist() + { + m_dataSource.m_tokens.Add(new DummyTextToken("and the Lord said! ", TextType.Verse, + true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("\"if you love me, you will obey my commands.\"", TextType.Verse, + false, false, "Paragraph", "Words Of Christ")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(2)); + CheckError(0, m_dataSource.m_tokens[0].Text, 0, "a", "Sentence should begin with a capital letter"); + CheckError(1, m_dataSource.m_tokens[1].Text, 1, "i", "Sentence should begin with a capital letter"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of a heading is + /// capitalized. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void CapitalizedHeading() + { + m_dataSource.m_tokens.Add(new DummyTextToken("The title of this section", + TextType.Other, true, false, "Section Head")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of a heading is not + /// uncapitalized. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void UncapitalizedHeading() + { + m_dataSource.m_tokens.Add(new DummyTextToken("the title of this section", + TextType.Other, true, false, "Section Head")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(1)); + CheckError(0, m_dataSource.m_tokens[0].Text, 0, "t", "Heading should begin with a capital letter"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of a title is + /// capitalized. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void CapitalizedTitle() + { + m_dataSource.m_tokens.Add(new DummyTextToken("The title of this book", + TextType.Other, true, false, "Title Main")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of a title is not + /// uncapitalized. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void UncapitalizedTitle() + { + m_dataSource.m_tokens.Add(new DummyTextToken("the title of this book", + TextType.Other, true, false, "Title Main")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(1)); + CheckError(0, m_dataSource.m_tokens[0].Text, 0, "t", "Title should begin with a capital letter"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of a list item is + /// capitalized. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void CapitalizedList() + { + m_dataSource.m_tokens.Add(new DummyTextToken("An item in a list", + TextType.Other, true, false, "List Item1")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of a list item is not + /// uncapitalized. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void UncapitalizedList() + { + m_dataSource.m_tokens.Add(new DummyTextToken("an item in a list", + TextType.Other, true, false, "List Item1")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(1)); + CheckError(0, m_dataSource.m_tokens[0].Text, 0, "a", "List paragraphs should begin with a capital letter"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of a table entry is + /// capitalized. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void CapitalizedTableCellHead() + { + m_dataSource.m_tokens.Add(new DummyTextToken("An entry in a table", + TextType.Other, true, false, "Table Cell Head")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Uncapitalized styles check when the first letter of a table entry is not + /// uncapitalized. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void UncapitalizedTableCellHead() + { + m_dataSource.m_tokens.Add(new DummyTextToken("an item in a list", + TextType.Other, true, false, "Table Cell Head")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(1)); + CheckError(0, m_dataSource.m_tokens[0].Text, 0, "a", "Table contents should begin with a capital letter"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Tests getting the length of a character (including diacritics) from a specified offset. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void GetLengthOfChar() + { + CapitalizationProcessor processor = new CapitalizationProcessor(m_dataSource, null); + + Assert.That(ReflectionHelper.GetIntResult(processor, "GetLengthOfChar", + new DummyTextToken("a has no diacritics.", TextType.Verse, true, false, + "Paragraph"), 0), Is.EqualTo(1)); + Assert.That(ReflectionHelper.GetIntResult(processor, "GetLengthOfChar", + new DummyTextToken("a\u0303 has a tilde.", TextType.Verse, true, false, + "Paragraph"), 0), Is.EqualTo(2)); + Assert.That(ReflectionHelper.GetIntResult(processor, "GetLengthOfChar", + new DummyTextToken("a\u0303\u0301 has a tilde and grave accent.", + TextType.Verse, true, false, "Paragraph"), 0), Is.EqualTo(3)); + Assert.That(ReflectionHelper.GetIntResult(processor, "GetLengthOfChar", + new DummyTextToken("a\u0303\u0301\u0302 has a tilde, grave accent and circumflex accent.", + TextType.Verse, true, false, "Paragraph"), 0), Is.EqualTo(4)); + } + #endregion + } +} diff --git a/Lib/src/ScrChecks/ScrChecksTests/CapitalizationCheckUnitTest.cs b/Lib/src/ScrChecks/ScrChecksTests/CapitalizationCheckUnitTest.cs new file mode 100644 index 0000000000..1dc765683d --- /dev/null +++ b/Lib/src/ScrChecks/ScrChecksTests/CapitalizationCheckUnitTest.cs @@ -0,0 +1,250 @@ +// Copyright (c) 2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using System.Text; +using NUnit.Framework; +using System.Diagnostics; +using System.IO; +using SIL.FieldWorks.Common.FwUtils; + +namespace SILUBS.ScriptureChecks +{ + /// ---------------------------------------------------------------------------------------- + /// + /// USFM-style unit tests for the CapitalizationCheck class + /// + /// ---------------------------------------------------------------------------------------- + [TestFixture] + public class CapitalizationCheckUnitTest + { + UnitTestChecksDataSource source = new UnitTestChecksDataSource(); + + // A subset of serialized style information for seven different classes of styles + // that require capitalization: + // sentence intial styles, proper nouns, tables, lists, special, headings and titles. + string stylesInfo = + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "
" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "<StyleInfo StyleName=\"imt\" StyleType=\"paragraph\" />" + + "<StyleInfo StyleName=\"imt2\" StyleType=\"character\" />" + + "<StyleInfo StyleName=\"imt3\" StyleType=\"character\" />" + + "
"; + + void Test(string[] result, string text) + { + source.Text = text; + + source.SetParameterValue("StylesInfo", stylesInfo); + source.SetParameterValue("SentenceFinalPunctuation", ".!?"); + CapitalizationCheck check = new CapitalizationCheck(source); + List tts = + check.GetReferences(source.TextTokens()); + + Assert.That(tts.Count, Is.EqualTo(result.Length), "A different number of results was returned from what was expected."); + + for (int i = 0; i < result.Length; i++) + Assert.That(tts[i].InventoryText, Is.EqualTo(result[i]), "Result number: " + i); + } + + #region Test capitalization of styles + [Test] + public void ParagraphCapitalized() + { + Test(new string[] { }, @"\p \v 1 The earth"); + } + + [Test] + public void ParagraphNoCaseNonRoman() + { + Test(new string[] { }, "\\p \\v 1 \u0E01"); + } + + [Test] + public void ParagraphNoCasePUA() + { + Test(new string[] { }, "\\p \\v 1 \uEE00"); + } + + [Test] + public void ParagraphTitleCase() + { + Test(new string[] { }, "\\p \\v 1 \u01C5"); + } + + [Test] + public void ParagraphUnCapitalized() + { + Test(new string[] { "p" }, @"\p \v 1 the earth"); + } + + [Test] + public void ParagraphUnCapitalizedWithQuotes() + { + Test(new string[] { "p" }, "\\p \\v 1 \u201C \u2018the earth"); + } + + [Test] + public void ParagraphCapitalizedWithQuotes() + { + Test(new string[] { }, "\\p \\v 1 \u201C \u2018The earth"); + } + + [Test] + public void Capitalized() + { + Test(new string[] { }, @"\p \v 1 \nd Lord\nd* in"); + } + + [Test] + public void UnCapitalized() + { + // test used to be { "p", "nd" } - was changed to reflect that we didn't want duplicated + // results. + Test(new string[] { "p" }, @"\p \v 1 \nd lord\nd* in"); + } + + [Test] + public void AllCapitalized() + { + Test(new string[] { }, @"\p \v 1 The \nd Lord\nd* in"); + } + + [Test] + public void ParagraphCapitalizedCharacterUnCapitalized() + { + Test(new string[] { "nd" }, @"\p \v 1 The \nd lord\nd* in"); + } + + [Test] + public void ParagraphUnCapitalizedCharacterCapitalized() + { + Test(new string[] { "p" }, @"\p \v 1 the \nd Lord\nd* in"); + } + + [Test] + public void AllUnCapitalized() + { + Test(new string[] { "p", "nd" }, @"\p \v 1 the \nd lord\nd* in"); + } + #endregion + + #region Test capitalization after sentence-final punctuation + [Test] + public void UpperCase() + { + Test(new string[] { }, @"\p \v 1 Foo. Bar"); + } + + [Test] + public void LowerCase() + { + Test(new string[] { "b" }, @"\p \v 1 Foo. bar"); + } + + [Test] + public void NoCaseNonRoman() + { + Test(new string[] { }, "\\p \\v 1 Foo. \u0E01"); + } + + [Test] + public void NoCasePUA() + { + Test(new string[] { }, "\\p \\v 1 Foo. \uEE00"); + } + + [Test] + public void TitleCase() + { + Test(new string[] { }, "\\p \\v 1 Foo. \u01C5"); + } + + [Test] + public void MultipleUpperCase() + { + Test(new string[] { }, @"\p \v 1 Foo. Bar! Baz"); + } + + [Test] + public void MultipleLowerCase() + { + Test(new string[] { "b", "b" }, @"\p \v 1 Foo. bar! baz"); + } + + [Test] + public void MultipleMixedCase() + { + Test(new string[] { "b" }, @"\p \v 1 Foo. Bar! baz"); + } + + [Test] + public void MultiplePunctUpperCase() + { + Test(new string[] { }, @"\p \v 1 Foo!? Bar"); + } + + [Test] + public void MultiplePunctLowerCase() + { + Test(new string[] { "b" }, @"\p \v 1 Foo!? bar"); + } + + [Test] + public void Quotes() + { + Test(new string[] { "b" }, "\\p \\v 1 \u201CFoo!\u201D bar"); + } + + [Test] + public void Digits() + { + Test(new string[] { }, @"\p \v 1 Foo 1.2 bar"); + } + + [Test] + public void AbbreviationError() + { + Test(new string[] { "h" }, @"\p \v 1 The E.U. headquarters."); + } + + [Test] + public void AbbreviationOK() + { + source.SetParameterValue("Abbreviations", "E.U."); + Test(new string[] { }, @"\p \v 1 The E.U. headquarters."); + } + #endregion + } +} diff --git a/Lib/src/ScrChecks/ScrChecksTests/ChapterVerseTests.cs b/Lib/src/ScrChecks/ScrChecksTests/ChapterVerseTests.cs new file mode 100644 index 0000000000..61a31ee4ef --- /dev/null +++ b/Lib/src/ScrChecks/ScrChecksTests/ChapterVerseTests.cs @@ -0,0 +1,2138 @@ + // --------------------------------------------------------------------------------------------- +// Copyright (c) 2008-2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) +// +// File: ChapterVerseTests.cs +// Responsibility: TE Team +// --------------------------------------------------------------------------------------------- +using System; +using NUnit.Framework; +using System.Reflection; +using SIL.FieldWorks.Common.FwUtils; +using SIL.LCModel.Core.Scripture; + +namespace SILUBS.ScriptureChecks +{ + /// ---------------------------------------------------------------------------------------- + /// + /// TeCheckingToolTests class, runs tests on ChapterVerseCheck.cs + /// Tests are done by creating a version of Haggai with chapter or verse problems in the + /// text and then verifying the the problems are correctly reported by the checking code. + /// + /// ---------------------------------------------------------------------------------------- + [TestFixture] + public class ChapterVerseTests : ScrChecksTestBase + { + private TestChecksDataSource m_dataSource; + + /// ------------------------------------------------------------------------------------ + /// + /// Initializes the versification tables. + /// + /// ------------------------------------------------------------------------------------ + [OneTimeSetUp] + public void FixtureSetup() + { + BCVRefTests.InitializeVersificationTable(); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Set up that happens before every test runs. + /// + /// ------------------------------------------------------------------------------------ + [SetUp] + public override void TestSetup() + { + base.TestSetup(); + m_dataSource = new TestChecksDataSource(); + m_check = new ChapterVerseCheck(m_dataSource, RecordError); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the instance of the Chapter-Verse check that we're testing. + /// + /// ------------------------------------------------------------------------------------ + private ChapterVerseCheck Check + { + get { return m_check as ChapterVerseCheck; } + } + + // Future test cases to account for: + // Allowing an app to regard missing chapter 1 and/or missing verse 1 as an error + // errors in verse bridges: 6-5, 5- ,... worry about it? 5- returns 5 right now + // duplicate chapter error? + // case: 7a-8, ok for now, will expect another verse 8, get 1 missing verse error, user then able to find problem + // it is just not optimized to tell exactly that "part b" is missing + // Unique Case: 2:1515 returns out of range error if located following 14 where verse 15 + // would normally occur and this error could occur. But if a verse number out of range is found elsewhere + // it logs an out of range error and a duplicate error, which it should not log a duplicate error + // Overlapping verse bridges: 1-5 3-8 + // + // Special test case examples that are done, accounted for: + // Case: 1 2 6 multiple missing verses + // Case: verse # > last verse for that chapter (out of range) + // Case: no chapter 1 (not error, chapter 1 is optional) + // Case: chapter # > chapter total for the book + // Case: 1 2-3 5 allow bridges + // still catches last verse out of range, if bridge out of range + // Case: what about just missing then out of order 1 2 4 5 3 . Look back through errorList + // Case: verse bridge: 1 2 3-45 6 7 or 1 2 3-8 6 7 , treats same as repeated verse numbers with an out of range error + // Case: missing verse at end of chapter + // Case: when expected verse reaches last verse, say 26 and then hit verse 27, now assumes + // all verses before are done and sets next expected verse to 1 for next chapter + // Case: 19 20 chap1 1 2 where verse total should have reached 21 or mor, catch missing verses of previous chap + // Case: 1 2 45 3 vs. 1 2 45 1 (45 out of range) + // Case: 2:1515 returns out of range error when at verse 15 where error would most likely occur + // Case: 19a 19b 20 allow verse parts, correctly does not allow verse part c + // Case: 10a at end of chapter, still catches missing 10b verse, logs missing verse error + // Case: 1 2 7 3 4 5 6 8 out of order and missing + // Case: 1 2 7 3 4 5 6 7 out of order and repeat + // Case: Missing chapter number following a verse bridge + // Note: 1 2 3 5 6 7... 15 3-4 16 ?? throws a duplicate. If bridge, 3-4 go together + + /// ----------------------------------------------------------------------------------- + /// + /// Test the AnyOverlappingVerses method with only one verse in both ranges. + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void OverlappingSingleVerse1() + { + object[] retVerses; + Assert.That(Check.AnyOverlappingVerses(5, 5, 5, 5, out retVerses), Is.True); + Assert.That(retVerses.Length, Is.EqualTo(1)); + Assert.That(retVerses[0], Is.EqualTo(5)); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test the AnyOverlappingVerses method with one verse in one range and a real + /// range in the other. + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void OverlappingSingleVerse2() + { + object[] retVerses; + Assert.That(Check.AnyOverlappingVerses(6, 6, 5, 8, out retVerses), Is.True); + Assert.That(retVerses.Length, Is.EqualTo(1)); + Assert.That(retVerses[0], Is.EqualTo(6)); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test the AnyOverlappingVerses method with one verse in one range and a real + /// range in the other. + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void OverlappingSingleVerse3() + { + object[] retVerses; + Assert.That(Check.AnyOverlappingVerses(5, 8, 6, 6, out retVerses), Is.True); + Assert.That(retVerses.Length, Is.EqualTo(1)); + Assert.That(retVerses[0], Is.EqualTo(6)); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test the AnyOverlappingVerses method with many verses in one range and many in + /// the other. + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void OverlappingVerseRange1() + { + object[] retVerses; + Assert.That(Check.AnyOverlappingVerses(5, 8, 3, 6, out retVerses), Is.True); + Assert.That(retVerses.Length, Is.EqualTo(2)); + Assert.That(retVerses[0], Is.EqualTo(5)); + Assert.That(retVerses[1], Is.EqualTo(6)); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test the AnyOverlappingVerses method with many verses in one range and many in + /// the other. + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void OverlappingVerseRange2() + { + object[] retVerses; + Assert.That(Check.AnyOverlappingVerses(5, 20, 10, 100, out retVerses), Is.True); + Assert.That(retVerses.Length, Is.EqualTo(2)); + Assert.That(retVerses[0], Is.EqualTo(10)); + Assert.That(retVerses[1], Is.EqualTo(20)); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test the CheckForMissingVerses method to make sure detects single + /// (i.e. non ranges) missing verses. + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void CheckForMissingVerses_Singles() + { + ITextToken[] versesFound = new ITextToken[7] { + new DummyTextToken("0"), null, new DummyTextToken("2"), + new DummyTextToken("003"), null, new DummyTextToken("05"), null }; + + object[] args = new object[] { versesFound, 2, 5 }; + + BindingFlags flags = BindingFlags.NonPublic | + BindingFlags.Instance | BindingFlags.InvokeMethod; + + typeof(ChapterVerseCheck).InvokeMember("CheckForMissingVerses", + flags, null, m_check, args); + + Assert.That(m_errors.Count, Is.EqualTo(3)); + + CheckError(0, versesFound[0].Text, 1, String.Empty, "Missing verse number 1"); + Assert.That(m_errors[0].Tts.MissingStartRef, Is.EqualTo(new BCVRef(2005001))); + Assert.That(m_errors[0].Tts.MissingEndRef, Is.EqualTo(null)); + + CheckError(1, versesFound[3].Text, 3, String.Empty, "Missing verse number 4"); + Assert.That(m_errors[1].Tts.MissingStartRef, Is.EqualTo(new BCVRef(2005004))); + Assert.That(m_errors[1].Tts.MissingEndRef, Is.EqualTo(null)); + + CheckError(2, versesFound[5].Text, 2, String.Empty, "Missing verse number 6"); + Assert.That(m_errors[2].Tts.MissingStartRef, Is.EqualTo(new BCVRef(2005006))); + Assert.That(m_errors[2].Tts.MissingEndRef, Is.EqualTo(null)); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test the CheckForMissingVerses method to make sure detects ranges of missing + /// verses. + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void CheckForMissingVerses_Ranges() + { + ITextToken[] versesFound = new ITextToken[12] { + new DummyTextToken("0"), null, null, + new DummyTextToken("003"), null, null, null, + new DummyTextToken("7"), new DummyTextToken("8"), + new DummyTextToken("09"), null, null }; + + object[] args = new object[] { versesFound, 2, 5 }; + + BindingFlags flags = BindingFlags.NonPublic | + BindingFlags.Instance | BindingFlags.InvokeMethod; + + typeof(ChapterVerseCheck).InvokeMember("CheckForMissingVerses", + flags, null, m_check, args); + + Assert.That(m_errors.Count, Is.EqualTo(3)); + + CheckError(0, versesFound[0].Text, 1, String.Empty, "Missing verse numbers 1-2"); + Assert.That(m_errors[0].Tts.MissingStartRef, Is.EqualTo(new BCVRef(2005001))); + Assert.That(m_errors[0].Tts.MissingEndRef, Is.EqualTo(new BCVRef(2005002))); + + CheckError(1, versesFound[3].Text, 3, String.Empty, "Missing verse numbers 4-6"); + Assert.That(m_errors[1].Tts.MissingStartRef, Is.EqualTo(new BCVRef(2005004))); + Assert.That(m_errors[1].Tts.MissingEndRef, Is.EqualTo(new BCVRef(2005006))); + + CheckError(2, versesFound[9].Text, 2, String.Empty, "Missing verse numbers 10-11"); + Assert.That(m_errors[2].Tts.MissingStartRef, Is.EqualTo(new BCVRef(2005010))); + Assert.That(m_errors[2].Tts.MissingEndRef, Is.EqualTo(new BCVRef(2005011))); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find no chapter or verse errors + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void NoChapterVerseErrors() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("3-15", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.ChapterNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1-23", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find no chapter or verse errors when script digits are used, + /// selected Arabic-Indic for this test. + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void NoChapterVerseErrors_ScriptDigits() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + m_dataSource.SetParameterValue("Script Digit Zero", "\u0660"); + m_dataSource.SetParameterValue("Verse Bridge", "\u200F-\u200f"); + + // \u0660-\u0669 are Arabic-Indic digits, \u200F is the RTL Mark. + m_dataSource.m_tokens.Add(new DummyTextToken("\u0661", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u0661", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u0662", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u0663\u200F-\u200f\u0661\u0665", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u0662", + TextType.ChapterNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u0661\u200F-\u200f\u0662\u0663", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find an error when script digits are used but not expected. + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void FormatErrors_UnexpectedScriptDigits() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + m_dataSource.SetParameterValue("Script Digit Zero", "0"); + m_dataSource.SetParameterValue("Verse Bridge", "\u200F-\u200f"); + + // \u0660-\u0669 are Arabic-Indic digits, \u200F is the RTL Mark. + DummyTextToken badToken1 = new DummyTextToken("\u0661", + TextType.ChapterNumber, true, false, "Paragraph"); + m_dataSource.m_tokens.Add(badToken1); + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("3\u200F-\u200f15", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.ChapterNumber, false, false, "Paragraph")); + DummyTextToken badToken2 = new DummyTextToken("1\u200f-\u200f2\u0663", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(badToken2); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(2)); + CheckError(0, badToken1.Text, 0, badToken1.Text, "Invalid chapter number"); + CheckError(1, badToken2.Text, 0, badToken2.Text, "Invalid verse number"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find an error when script digits are expected but not used. + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void FormatErrors_ExpectedScriptDigits() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + m_dataSource.SetParameterValue("Script Digit Zero", "\u0660"); + m_dataSource.SetParameterValue("Verse Bridge", "\u200F-\u200f"); + + // \u0660-\u0669 are Arabic-Indic digits, \u200F is the RTL Mark. + DummyTextToken badToken1 = new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph"); + m_dataSource.m_tokens.Add(badToken1); + m_dataSource.m_tokens.Add(new DummyTextToken("\u0661", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u0662", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u0663\u200F-\u200f\u0661\u0665", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u0662", + TextType.ChapterNumber, false, false, "Paragraph")); + DummyTextToken badToken2 = new DummyTextToken("\u0661\u200F-\u200f\u06623", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(badToken2); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(2)); + CheckError(0, badToken1.Text, 0, badToken1.Text, "Invalid chapter number"); + CheckError(1, badToken2.Text, 0, badToken2.Text, "Invalid verse number"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that formatting error is reported when verse bridge contains unexpected + /// right-to-left marks. + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void FormatErrors_UnexpectedRtoLMarksInVerseBridge() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "JUD"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + m_dataSource.SetParameterValue("Verse Bridge", "-"); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1-2", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + DummyTextToken badToken = new DummyTextToken("3\u200f-\u200f25", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(badToken); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + CheckError(0, badToken.Text, 0, badToken.Text, "Invalid verse number"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that formatting error is reported when verse number contains a medial letter. + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void FormatErrors_UnexpectedLetterInVerseNumber() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "JUD"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1-24", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + DummyTextToken badToken = new DummyTextToken("2a5", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(badToken); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + CheckError(0, badToken.Text, 0, badToken.Text, "Invalid verse number"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that formatting error is reported when wrong verse bridge character is used. + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void FormatErrors_UnexpectedBridgeCharacter() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "JUD"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + m_dataSource.SetParameterValue("Verse Bridge", "~"); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + DummyTextToken badToken = new DummyTextToken("1-25", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(badToken); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + CheckError(0, badToken.Text, 0, badToken.Text, "Invalid verse number"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test use of versification info + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void NoChapterVerseErrors_DifferentVersifications() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "NAM"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + ITextToken TempTok = new DummyTextToken("1-15", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.ChapterNumber, false, false, "Paragraph")); + ITextToken TempTok2 = new DummyTextToken("1-13", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok2); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("3", + TextType.ChapterNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1-19", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + + m_dataSource.SetParameterValue("Versification Scheme", "Septuagint"); + + ((DummyTextToken)TempTok).Text = "1-14"; + ((DummyTextToken)TempTok2).Text = "1-14"; + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find no chapter error when there is no Chapter 1. + /// Chapter number 1 is optional. + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void NoErrorWhenMissingChapterOne() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + // Missing chapter number 1 + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("3-15", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.ChapterNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1-23", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find a chapter error when there is a Chapter 0. + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void ChapterZeroError() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + m_dataSource.m_tokens.Add(new DummyTextToken("0", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("3-15", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.ChapterNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1-23", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(2)); + CheckError(0, m_dataSource.m_tokens[0].Text, 0, m_dataSource.m_tokens[0].Text, "Invalid chapter number"); + CheckError(1, m_dataSource.m_tokens[0].Text, 1, String.Empty, "Missing chapter number 1"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find errors when Chapter and verse numbers start with a leading 0. + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void LeadingZeroErrors() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + m_dataSource.m_tokens.Add(new DummyTextToken("01", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("002", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("3-15", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.ChapterNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1-23", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(2)); + CheckError(0, m_dataSource.m_tokens[0].Text, 0, m_dataSource.m_tokens[0].Text, "Invalid chapter number"); + CheckError(1, m_dataSource.m_tokens[3].Text, 0, m_dataSource.m_tokens[3].Text, "Invalid verse number"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find no chapter or verse errors when checking only a single + /// chapter + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void NoChapterVerseErrors_CheckingSingleChapter() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "1"); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("3-15", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find a missing chapter number error + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void ChapterNumberMissingError() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("3-15", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + // Missing chapter number 2 + ITextToken TempTok = new DummyTextToken("1-23", + TextType.VerseNumber, true, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(2)); + CheckError(0, TempTok.Text, 0, TempTok.Text, "Duplicate verse numbers"); + CheckError(1, m_dataSource.m_tokens[0].Text, 1, String.Empty, "Missing chapter number 2"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find a missing chapter number error following a verse bridge + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void ChapterNumberMissingError_FollowingVerseBridge() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1-15", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + // Missing chapter number 2 + ITextToken TempTok = new DummyTextToken("1-23", + TextType.VerseNumber, true, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(2)); + CheckError(0, TempTok.Text, 0, TempTok.Text, "Duplicate verse numbers"); + CheckError(1, m_dataSource.m_tokens[0].Text, 1, String.Empty, "Missing chapter number 2"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find a missing chapter number error when missing final chapters + /// with no data after the missing chapter number + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void ChapterNumberMissingFinalError() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("3-15", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + // Missing entire chapter 2 + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + CheckError(0, m_dataSource.m_tokens[0].Text, 1, String.Empty, "Missing chapter number 2"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find a missing chapter number error when previous chapter has + /// no verses + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void ChapterNumberMissingNoVerses() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "2TH"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + // error sequence - chapter 1 with verse, chapter 2 no verse, chapter 3 with verse + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("3", + TextType.ChapterNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("1-18", + TextType.VerseNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(2)); + CheckError(1, "1", 1, String.Empty, "Missing chapter number 2"); + Assert.That(m_errors[1].Tts.MissingStartRef.BBCCCVVV, Is.EqualTo(2000)); + Assert.That(m_errors[1].Tts.MissingEndRef, Is.Null); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find a duplicated chapter two + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void ChapterNumberDuplicated() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + // error sequence - chapter 1 & 2 with verse, chapter 2 duplicated + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("1-15", + TextType.VerseNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.ChapterNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("1-23", + TextType.VerseNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + + DummyTextToken dupChapter = new DummyTextToken("2", + TextType.ChapterNumber, true, false, "Paragraph"); + m_dataSource.m_tokens.Add(dupChapter); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(1)); + CheckError(0, dupChapter.Text, 0, dupChapter.Text, "Duplicate chapter number"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find a missing chapter one + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void ChapterNumberOneMissing() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "2TH"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + // error sequence - chapter 1 skipped, chapter 2 & 3 fully present + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.ChapterNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("1-17", + TextType.VerseNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("3", + TextType.ChapterNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("1-18", + TextType.VerseNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + CheckError(0, "2", 0, String.Empty, "Missing chapter number 1"); + Assert.That(m_errors[0].Tts.MissingStartRef.BBCCCVVV, Is.EqualTo(1000)); + Assert.That(m_errors[0].Tts.MissingEndRef, Is.Null); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find a missing verse number error + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void VerseNumberMissingError() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + // Missing verse 2 + ITextToken TempTok = new DummyTextToken("3-14", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + // Missing verse 15 + ITextToken TempTok2 = new DummyTextToken("2", + TextType.ChapterNumber, true, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok2); + // Missing verse 1 + ITextToken TempTok3 = new DummyTextToken("2-22", + TextType.VerseNumber, true, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok3); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + // Missing verse 23 + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(4)); + CheckError(0, m_dataSource.m_tokens[1].Text, 1, String.Empty, "Missing verse number 2"); + CheckError(1, TempTok.Text, 4, String.Empty, "Missing verse number 15"); + CheckError(2, TempTok2.Text, 1, String.Empty, "Missing verse number 1"); + CheckError(3, TempTok3.Text, 4, String.Empty, "Missing verse number 23"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find a chapter number outside bounds (too large) error + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void ChapterNumberOutOfRangeError() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("3-15", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + ITextToken TempTok = new DummyTextToken("5", + TextType.ChapterNumber, true, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok); + m_dataSource.m_tokens.Add(new DummyTextToken("1-23", + TextType.VerseNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(2)); + CheckError(0, TempTok.Text, 0, TempTok.Text, "Chapter number out of range"); + CheckError(1, m_dataSource.m_tokens[0].Text, 1, String.Empty, "Missing chapter number 2"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find verse numbers out of range + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void VerseNumbersOutOfRangeError() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2-15", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + ITextToken TempTok = new DummyTextToken("16", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.ChapterNumber, false, false, "Paragraph")); + ITextToken TempTok2 = new DummyTextToken("1-24", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok2); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(2)); + CheckError(0, TempTok.Text, 0, TempTok.Text, "Verse number out of range"); + CheckError(1, TempTok2.Text, 0, TempTok2.Text, "Verse number out of range"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find verse "number" (i.e. text that's marked with the verse + /// style) at beyond last valid verse. + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void VerseNumbersBeyondLastValidInChapter() + { + m_dataSource.SetParameterValue("InvalidAtEnd", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2-15", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + ITextToken TempTok = new DummyTextToken("aa", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.ChapterNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1-23", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(1)); + CheckError(0, TempTok.Text, 0, TempTok.Text, "Invalid verse number"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find multiple missing verse numbers error + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void MultipleVerseNumbersMissingError() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + // Missing verses 2-5 + m_dataSource.m_tokens.Add(new DummyTextToken("6-15", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.ChapterNumber, true, false, "Paragraph")); + ITextToken TempTok = new DummyTextToken("1-20", + TextType.VerseNumber, true, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + // Missing verses 21-23 + + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(2)); + + CheckError(0, m_dataSource.m_tokens[1].Text, 1, String.Empty, "Missing verse numbers 2-5"); + CheckError(1, TempTok.Text, 4, String.Empty, "Missing verse numbers 21-23"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find duplicate verse number error + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void DuplicateVerseNumberError() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + // Chapter 1 + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + // Duplicate verse number 1 + ITextToken TempTok = new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2-15", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + // Chapter 2 + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1-23", + TextType.VerseNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + // Duplicate verse number 13 + ITextToken TempTok2 = new DummyTextToken("13", + TextType.VerseNumber, true, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok2); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + // Duplicate verse numbers 21-23 + ITextToken TempTok3 = new DummyTextToken("21-23", + TextType.VerseNumber, true, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok3); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(3)); + + CheckError(0, TempTok.Text, 0, TempTok.Text, "Duplicate verse number"); + CheckError(1, TempTok2.Text, 0, TempTok2.Text, "Duplicate verse number"); + CheckError(2, TempTok3.Text, 0, TempTok3.Text, "Unexpected verse numbers"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find verse numbers out of order (there will also be missing verses) + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void VerseNumbersOutOfOrderError() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("3", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + ITextToken TempTok = new DummyTextToken("2", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("4-15", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.ChapterNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1-9", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("12-23", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + ITextToken TempTok2 = new DummyTextToken("10-11", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok2); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(2)); + + CheckError(0, TempTok.Text, 0, TempTok.Text, "Verse number out of order; expected verse 4"); + CheckError(1, TempTok2.Text, 0, TempTok2.Text, "Verse numbers out of order"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find verse number out of range for 999 and still find missing + /// verse next + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void VerseNumberGreaterThan999() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2-15", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.ChapterNumber, false, false, "Paragraph")); + ITextToken TempTok = new DummyTextToken("1-14", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + ITextToken TempTok2 = new DummyTextToken("1515", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok2); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("17-23", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(2)); + + CheckError(0, TempTok2.Text, 0, TempTok2.Text, "Verse number out of range"); + CheckError(1, TempTok.Text, 4, String.Empty, "Missing verse numbers 15-16"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find no error for verse parts a and b + /// If there were a 2a with no 2b will throw missing verse for verse 5 + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void VerseNumberPartsAandB() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2a", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("First part of verse two", + TextType.Verse, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("Section Head Text", + TextType.Other, true, false, "Section Head")); + m_dataSource.m_tokens.Add(new DummyTextToken("2b", + TextType.VerseNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("Second part of verse two", + TextType.Verse, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("3-15", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.ChapterNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1-22", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("23a", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("23b", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that errors are flagged when only part a or part b of a verse couplet are + /// missing. + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void VerseNumberPartAOrB() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + + // Currently we don't catch any of these invalid cases... + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1a-3", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("4-6b", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("7-8a", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("9-10", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("11-13", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("14b-15", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + + // These cases are valid... + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2a", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2b", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("3-4b", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("5", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + + // These cases are not valid (should produce errors)... + ITextToken TempTok = new DummyTextToken("6a", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("7", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + ITextToken TempTok2 = new DummyTextToken("8b", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok2); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + ITextToken TempTok3 = new DummyTextToken("9b", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok3); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + ITextToken TempTok4 = new DummyTextToken("10a", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok4); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + ITextToken TempTok5 = new DummyTextToken("11b", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok5); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + ITextToken TempTok6 = new DummyTextToken("12-13a", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok6); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("14", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("15-23", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(6)); + + CheckError(0, TempTok.Text, 2, String.Empty, "Missing verse number 6b"); + CheckError(1, TempTok2.Text, 0, String.Empty, "Missing verse number 8a"); + CheckError(2, TempTok3.Text, 0, String.Empty, "Missing verse number 9a"); + CheckError(3, TempTok4.Text, 3, String.Empty, "Missing verse number 10b"); + CheckError(4, TempTok5.Text, 0, String.Empty, "Missing verse number 11a"); + CheckError(5, TempTok6.Text, 6, String.Empty, "Missing verse number 13b"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find error for verse part c + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void VerseNumberPartCError() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("3-15", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.ChapterNumber, false, false, "Paragraph")); + ITextToken tempTok1 = new DummyTextToken("1-23a", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(tempTok1); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + ITextToken tempTok2 = new DummyTextToken("23c", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(tempTok2); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(2)); + + CheckError(0, tempTok1.Text, 5, string.Empty, "Missing verse number 23b"); + CheckError(1, tempTok2.Text, 0, tempTok2.Text, "Invalid verse number"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Tests the case when chapter 1 and verse 1 of a book is missing at the same time. + /// + /// NOTE: The following comment was written before DavidO & CoreyW made significant + /// changes. I'm not sure exactly what the comment means and is probably no + /// longer relevant. -- DDO + /// + /// (If it has just finished last verse of previous chapter, it will assume new + /// chapter and only throw the two errors, missing chapter number and missing verse + /// number. It will not throw duplicate verse error for all following verses as it + /// would normally. Now it will only do so if verse 1 and 2 are missing after a + /// chapter number missing. Since it could be a more common error to lose chapter + /// number and verse one together, we allow for this unique case.) + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void MissingChapterOneandVerseOneError() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("3-15", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1-23", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(1)); + CheckError(0, m_dataSource.m_tokens[0].Text, 0, String.Empty, "Missing verse number 1"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Tests the case when chapter 2 and verse 1 of a book is missing at the same time. + /// The assumption for this test is that we'll get the same behavior when any chapter + /// greater than 2 is missing when that chapter's verse one is missing. That is why + /// we only check the case for chapter 2. See MissingChapterTwoandVerseOneError for + /// testing the case when chapter 1, verse 1 is missing at the same time. + /// (If it has just finished last verse of previous chapter, it will assume new + /// chapter and only throw the two errors, missing chapter number and missing verse + /// number. It will not throw duplicate verse error for all following verses as it + /// would normally. Now it will only do so if verse 1 and 2 are missing after a + /// chapter number missing. Since it could be a more common error to lose chapter + /// number and verse one together, we allow for this unique case.) + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void MissingChapterTwoandVerseOneError() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("3-15", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + ITextToken TempTok = new DummyTextToken("2", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + ITextToken TempTok2 = new DummyTextToken("3-23", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok2); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(3)); + + CheckError(0, TempTok.Text, 0, TempTok.Text, "Unexpected verse number"); + CheckError(1, TempTok2.Text, 0, TempTok2.Text, "Unexpected verse numbers"); + CheckError(2, m_dataSource.m_tokens[0].Text, 1, String.Empty, "Missing chapter number 2"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Space before or after verse number or bridge. Space is not easily visible + /// if it is formatted as a verse style. + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void InvalidVerse_SpaceError() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken(" 1", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2-15", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + ITextToken TempTok = new DummyTextToken("2-22 ", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("23", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(2)); + + CheckError(0, m_dataSource.m_tokens[1].Text, 0, m_dataSource.m_tokens[1].Text, + "Space found in verse number"); + CheckError(1, TempTok.Text, 0, TempTok.Text, "Space found in verse bridge"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Checks for a verse number that only consists of letters. + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void InvalidVerse_InvalidCharacters() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + ITextToken TempTok = new DummyTextToken("zv", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2-13", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("14z7a", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("text", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("15", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("more text", + TextType.Verse, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.ChapterNumber, true, false, "Paragraph")); + ITextToken TempTok2 = new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok2); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + ITextToken TempTok3 = new DummyTextToken("u-r-an-idot", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok3); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("23", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(7)); + + CheckError(0, TempTok.Text, 0, TempTok.Text, "Invalid verse number"); + CheckError(1, m_dataSource.m_tokens[5].Text, 0, m_dataSource.m_tokens[5].Text, "Verse number out of range"); + CheckError(2, m_dataSource.m_tokens[5].Text, 0, m_dataSource.m_tokens[5].Text, "Invalid verse number"); + CheckError(3, m_dataSource.m_tokens[0].Text, 1, String.Empty, "Missing verse number 1"); + CheckError(4, m_dataSource.m_tokens[3].Text, 4, String.Empty, "Missing verse number 14"); + CheckError(5, TempTok3.Text, 0, TempTok3.Text, "Invalid verse number"); + CheckError(6, TempTok2.Text, 1, String.Empty, "Missing verse numbers 2-22"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Checks for a chapter number that only consists of letters. + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void InvalidChapter_InvalidCharacters() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("2-15", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + ITextToken TempTok = new DummyTextToken("jfuo", + TextType.ChapterNumber, true, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok); + m_dataSource.m_tokens.Add(new DummyTextToken("1-23", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(2)); + + CheckError(0, TempTok.Text, 0, TempTok.Text, "Invalid chapter number"); + CheckError(1, TempTok.Text, 4, String.Empty, "Missing chapter number 2"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Checks for a missing verse number at the end of a chapter + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void MissingVerse_AtEndOfChapter() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "HAG"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1-14", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + // Missing verse 15, Missing chapter 2 + ITextToken TempTok = new DummyTextToken("1-23", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(3)); + + CheckError(0, TempTok.Text, 0, TempTok.Text, "Duplicate verse numbers"); + CheckError(1, m_dataSource.m_tokens[1].Text, 4, String.Empty, "Missing verse number 15"); + CheckError(2, m_dataSource.m_tokens[0].Text, 1, String.Empty, "Missing chapter number 2"); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Checks for a missing verse number at the end of a chapter + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void MissingChapter_Multiple() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + // TODO: Figure out where to put vrs files for tests. Probably want to just include + // copies here locally with the tests. + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "JAS"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + // Missing chapter 1 (ignored) + m_dataSource.m_tokens.Add(new DummyTextToken("1-27", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + // Missing chapter 2 + ITextToken TempTok = new DummyTextToken("1-26", + TextType.VerseNumber, false, false, "Paragraph"); + m_dataSource.m_tokens.Add(TempTok); + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + // Missing chapters 3-5 + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(5)); + + CheckError(0, TempTok.Text, 0, TempTok.Text, "Duplicate verse numbers"); + + for (int i = 2; i < 6; i++) + CheckError(i - 1, m_dataSource.m_tokens[0].Text, 0, String.Empty, string.Format("Missing chapter number {0}", i)); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find a missing verse text without white space + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void VerseTextMissingText() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "2TH"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("1-12", + TextType.VerseNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.ChapterNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("2-17", + TextType.VerseNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("3", + TextType.ChapterNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("1-18", + TextType.VerseNumber, true, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(4)); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find a missing verse text with white space + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void VerseTextMissingTextWithWhiteSpace() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "2TH"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("1-12", + TextType.VerseNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken(" ", + TextType.Verse, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.ChapterNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken(Environment.NewLine, + TextType.Verse, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("2-17", + TextType.VerseNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("\t", + TextType.Verse, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("3", + TextType.ChapterNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("1-18", + TextType.VerseNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken(" ", + TextType.Verse, true, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(4)); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that check should assume missing chapter one and verse one present with + /// first text token. + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void VerseTextAssumeChapterOneVerseOne() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "2TH"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + + // no chapter one - assumed + // no verse one - assumed + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("2-12", + TextType.VerseNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.ChapterNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("1-17", + TextType.VerseNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("3", + TextType.ChapterNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("1-18", + TextType.VerseNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find a missing chapter one + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void VerseTextMissingChapterOne() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "2TH"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + + // no chapter one - assumed + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("2-12", + TextType.VerseNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.ChapterNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("1-17", + TextType.VerseNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("3", + TextType.ChapterNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("1-18", + TextType.VerseNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ----------------------------------------------------------------------------------- + /// + /// Test that should find a missing verse one + /// + /// ----------------------------------------------------------------------------------- + [Test] + public void VerseTextMissingVerseOne() + { + m_dataSource.SetParameterValue("OmittedVerses", ""); + m_dataSource.SetParameterValue("Versification Scheme", "English"); + m_dataSource.SetParameterValue("Book ID", "2TH"); + m_dataSource.SetParameterValue("Chapter Number", "0"); + + + // no verse one - assumed + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("2-12", + TextType.VerseNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("2", + TextType.ChapterNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("2-17", + TextType.VerseNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("3", + TextType.ChapterNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("2-18", + TextType.VerseNumber, true, false, "Paragraph")); + + m_dataSource.m_tokens.Add(new DummyTextToken("verse body", + TextType.Verse, true, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + //Need test for chapter number out of range with verses following it (because valid chapter missing). + //The errors thrown currently are correct,but need a test for that, for those errors to be optimized in the future. + //Currently handles out of range chapter, by incrementing to next valid chapter, assuming that is what's wanted + } +} diff --git a/Lib/src/ScrChecks/ScrChecksTests/CharactersCheckUnitTest.cs b/Lib/src/ScrChecks/ScrChecksTests/CharactersCheckUnitTest.cs new file mode 100644 index 0000000000..51268d0fbf --- /dev/null +++ b/Lib/src/ScrChecks/ScrChecksTests/CharactersCheckUnitTest.cs @@ -0,0 +1,299 @@ +// --------------------------------------------------------------------------------------------- +// Copyright (c) 2008-2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) +// +// File: RepeatedWordsTests.cs +// Responsibility: TE Team +// --------------------------------------------------------------------------------------------- +using System.Collections.Generic; +using NUnit.Framework; +using SIL.FieldWorks.Common.FwUtils; +using SIL.LCModel.Utils; + +namespace SILUBS.ScriptureChecks +{ + /// ------------------------------------------------------------------------------------ + /// + /// Test the Characters Scripture check using a data source that passes tokens similar + /// to those produced by TE. + /// + /// ------------------------------------------------------------------------------------ + [TestFixture] + public class CharactersCheckUnitTest_Fw : ScrChecksTestBase + { + private TestChecksDataSource m_dataSource; + + #region Initialization + /// ------------------------------------------------------------------------------------ + /// + /// Set up that happens before every test runs. + /// + /// ------------------------------------------------------------------------------------ + [SetUp] + public override void TestSetup() + { + base.TestSetup(); + m_dataSource = new TestChecksDataSource(); + m_check = new CharactersCheck(m_dataSource); + } + #endregion + + #region Tests + ///-------------------------------------------------------------------------------------- + /// + /// Tests the Character check for some simple cases that don't freak your mind out. + /// + ///-------------------------------------------------------------------------------------- + [Test] + public void Basic() + { + m_dataSource.SetParameterValue("ValidCharacters", "a b c d e"); + + m_dataSource.m_tokens.Add(new DummyTextToken("gha bcdefi", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(4)); + CheckError(0, m_dataSource.m_tokens[0].Text, 0, "g", "Invalid or unknown character"); + CheckError(1, m_dataSource.m_tokens[0].Text, 1, "h", "Invalid or unknown character"); + CheckError(2, m_dataSource.m_tokens[0].Text, 8, "f", "Invalid or unknown character"); + CheckError(3, m_dataSource.m_tokens[0].Text, 9, "i", "Invalid or unknown character"); + } + + ///-------------------------------------------------------------------------------------- + /// + /// Tests the AlwaysValidCharacters check for some simple cases. + /// + ///-------------------------------------------------------------------------------------- + [Test] + public void AlwaysValidChars() + { + m_dataSource.SetParameterValue("AlwaysValidCharacters", "12345\u2028"); + m_dataSource.m_tokens.Add(new DummyTextToken("ej53427\u20281fi", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(5)); + CheckError(0, m_dataSource.m_tokens[0].Text, 0, "e", "Invalid or unknown character"); + CheckError(1, m_dataSource.m_tokens[0].Text, 1, "j", "Invalid or unknown character"); + CheckError(2, m_dataSource.m_tokens[0].Text, 6, "7", "Invalid or unknown character"); + CheckError(3, m_dataSource.m_tokens[0].Text, 9, "f", "Invalid or unknown character"); + CheckError(4, m_dataSource.m_tokens[0].Text, 10, "i", "Invalid or unknown character"); + } + + ///-------------------------------------------------------------------------------------- + /// + /// Tests the Character check with diacritic characters. + /// + ///-------------------------------------------------------------------------------------- + [Test] + public void Diacritics() + { + m_dataSource.SetParameterValue("ValidCharacters", "a b c d e a\u0301 e\u0301"); + + // 02 JUN 2008, Phil Hopper: InvalidCharacters is not currently used. + //m_dataSource.SetParameterValue("InvalidCharacters", "f g h a\u0302 e\u0302"); + + m_dataSource.m_tokens.Add(new DummyTextToken("aa\u0301bcdea\u0302e\u0303", + TextType.Verse, true, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(2)); + CheckError(0, m_dataSource.m_tokens[0].Text, 7, "a\u0302", + "Invalid or unknown character diacritic combination"); // invalid character + CheckError(1, m_dataSource.m_tokens[0].Text, 9, "e\u0303", + "Invalid or unknown character diacritic combination"); // unknown character + } + + ///-------------------------------------------------------------------------------------- + /// + /// Tests the Character check with different writing systems. + /// + ///-------------------------------------------------------------------------------------- + [Test] + public void DifferentWritingSystems() + { + // Set the valid characters for different writing systems. The vernacular doesn't + // specify a locale. + m_dataSource.SetParameterValue("ValidCharacters", "a b c d e f g"); + m_dataSource.SetParameterValue("ValidCharacters_en", "h i j k l m n"); + m_dataSource.SetParameterValue("ValidCharacters_fr", "o p q r s t u"); + + m_dataSource.m_tokens.Add(new DummyTextToken("abcdefgh", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("hijklmno", + TextType.Verse, true, false, "Paragraph", string.Empty, "en")); + m_dataSource.m_tokens.Add(new DummyTextToken("aopqrstu", + TextType.Verse, true, false, "Paragraph", string.Empty, "fr")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(3)); + CheckError(0, m_dataSource.m_tokens[0].Text, 7, "h", "Invalid or unknown character"); + CheckError(1, m_dataSource.m_tokens[1].Text, 7, "o", "Invalid or unknown character"); + CheckError(2, m_dataSource.m_tokens[2].Text, 0, "a", "Invalid or unknown character"); + } + + ///-------------------------------------------------------------------------------------- + /// + /// Tests the Character check doesn't crash if the valid characters list is not set. + /// + ///-------------------------------------------------------------------------------------- + [Test] + public void UnsetValidCharactersList() + { + m_dataSource.m_tokens.Add(new DummyTextToken("abcdefgh", + TextType.Verse, true, false, "Paragraph")); + + // This should not crash, even if the valid characters list has not been set. + List refs = + CheckInventory.GetReferences(m_dataSource.TextTokens(), string.Empty); + + Assert.That(refs.Count, Is.EqualTo(8)); + } + + ///-------------------------------------------------------------------------------------- + /// + /// Tests the Character check with different writing systems. + /// + ///-------------------------------------------------------------------------------------- + [Test] + public void InventoryMode() + { + m_dataSource.m_tokens.Add(new DummyTextToken("Eph. 2:10", + TextType.Verse, true, false, "Paragraph", string.Empty, "en")); + m_dataSource.m_tokens.Add(new DummyTextToken("For we are God's workmanship...", + TextType.Verse, true, false, "Paragraph")); + + List refs = + CheckInventory.GetReferences(m_dataSource.TextTokens(), string.Empty); + + // We requested only the default vernacular. + // Should only get references from the second token. + Assert.That(refs.Count, Is.EqualTo(31)); + } + + ///-------------------------------------------------------------------------------------- + /// + /// Tests that ParseCharacterSequences returns characters with their following diacritics. + /// + ///-------------------------------------------------------------------------------------- + [Test] + public void ParseCharacterSequences_Diacritics() + { + // Arabic letter alef with madda above + // Arabic letter yeh with hamza above and immediately followed by a character without + // diacritics (Arabic letter zain) + string charsWithDiacritics = "\u0627\u0653 \u064A\u0654\u0632"; + + // set up for this test. + m_dataSource.m_tokens.Add(new DummyTextToken(charsWithDiacritics, + TextType.Verse, true, false, "Paragraph")); + m_check = new CharactersCheck(m_dataSource); + ReflectionHelper.SetField(m_check, "m_categorizer", m_dataSource.CharacterCategorizer); + + // Get the parsed character sequences. + List parsedChars = new List(); + foreach (string character in ((CharactersCheck)m_check).ParseCharacterSequences(charsWithDiacritics)) + parsedChars.Add(character); + + // Confirm that we have four characters with the expected contents. + Assert.That(parsedChars.Count, Is.EqualTo(4), "We expected four characters"); + Assert.That(parsedChars[0], Is.EqualTo("\u0627\u0653")); + Assert.That(parsedChars[1], Is.EqualTo(" ")); + Assert.That(parsedChars[2], Is.EqualTo("\u064A\u0654")); + Assert.That(parsedChars[3], Is.EqualTo("\u0632")); + } + #endregion + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Characters Scripture check using the USFM-style data source. + /// + /// ------------------------------------------------------------------------------------ + [TestFixture] + public class CharactersCheckUnitTest_Usfm + { + private UnitTestChecksDataSource m_UsfmDataSource = new UnitTestChecksDataSource(); + + void Test(string[] result, string text) + { + Test(result, text, ""); + } + + void Test(string[] result, string text, string desiredKey) + { + m_UsfmDataSource.Text = text; + + CharactersCheck check = new CharactersCheck(m_UsfmDataSource); + List tts = + check.GetReferences(m_UsfmDataSource.TextTokens(), desiredKey); + + Assert.That(tts.Count, Is.EqualTo(result.GetUpperBound(0)+1), "A different number of results was returned than what was expected."); + + for (int i = 0; i <= result.GetUpperBound(0); ++i) + Assert.That(tts[i].InventoryText, Is.EqualTo(result[i]), "Result number: " + i.ToString()); + } + + #region Tests + [Test] + [Ignore("Missing implementation of get_Locale on UnitTestTokenizer causes this to fail")] + public void Text() + { + Test(new string[] { "\u201C", "T", "h", "e", " ", "t", "e", "x", "t", ".", "\u201D"}, + "\\p \u201CThe text.\u201D"); + } + + [Test] + [Ignore("Missing implementation of get_Locale on UnitTestTokenizer causes this to fail")] + public void CanBeComposed() + { + Test(new string[] { "\u0210", "a" }, "\\p \u0210a"); + } + + [Test] + [Ignore("Missing implementation of get_Locale on UnitTestTokenizer causes this to fail")] + public void CanBeDeComposed() + { + Test(new string[] { "\u0210", "a" }, "\\p R\u030Fa"); + } + + [Test] + [Ignore("Missing implementation of get_Locale on UnitTestTokenizer causes this to fail")] + public void FindingComposed() + { + Test(new string[] { "\u0210" }, "\\p R\u030Fa \u0210a", "\u0210"); + } + + [Test] + [Ignore("Missing implementation of get_Locale on UnitTestTokenizer causes this to fail")] + public void FindingDeComposed() + { + Test(new string[] { "R\u030F" }, "\\p R\u030Fa \u0210a", "R\u030F"); + } + + [Test] + [Ignore("Missing implementation of get_Locale on UnitTestTokenizer causes this to fail")] + public void MustBeDeComposed() + { + Test(new string[] { "B\u030B", "a" }, "\\p B\u030Ba"); + } + + [Test] + [Ignore("Missing implementation of get_Locale on UnitTestTokenizer causes this to fail")] + public void NonRoman() + { + Test(new string[] { "\u0E01\u0E34", "\u0E02" }, "\\p \u0E01\u0E34\u0E02"); + } + + [Test] + [Ignore("Missing implementation of get_Locale on UnitTestTokenizer causes this to fail")] + public void PUA() + { + Test(new string[] { "\uEE00" }, "\\p \uEE00"); + } + #endregion + } +} diff --git a/Lib/src/ScrChecks/ScrChecksTests/DummyTextToken.cs b/Lib/src/ScrChecks/ScrChecksTests/DummyTextToken.cs new file mode 100644 index 0000000000..7b020eba46 --- /dev/null +++ b/Lib/src/ScrChecks/ScrChecksTests/DummyTextToken.cs @@ -0,0 +1,220 @@ +// Copyright (c) 2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using SIL.FieldWorks.Common.FwUtils; +using SIL.LCModel.Core.Scripture; + +namespace SILUBS.ScriptureChecks +{ + /// ------------------------------------------------------------------------------------ + /// + /// See ITextToken for field definitions comments. + /// This is a dummy class used for testing the checks. + /// + /// ------------------------------------------------------------------------------------ + public class DummyTextToken : ITextToken + { + private string m_text; + private TextType m_textType; + private bool m_isParagraphStart; + private bool m_isNoteStart; + private string m_paraStyleName; + private string m_charStyleName; + private string m_iculocale = null; + private BCVRef m_missingStartRef; + private BCVRef m_missingEndRef; + + /// ------------------------------------------------------------------------------------ + /// + /// Initializes a new instance of the class. + /// + /// ------------------------------------------------------------------------------------ + public DummyTextToken(string text) + { + m_text = text; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Initializes a new instance of the class. + /// + /// The text. + /// Type of the text. + /// if set to true text token starts a paragraph. + /// + /// if set to true text token starts a note. + /// Name of the paragraph style. + /// ------------------------------------------------------------------------------------ + public DummyTextToken(string text, TextType textType, bool isParagraphStart, + bool isNoteStart, string paraStyleName) : this(text, textType, isParagraphStart, + isNoteStart, paraStyleName, string.Empty, null) + { + } + + /// ------------------------------------------------------------------------------------ + /// + /// Initializes a new instance of the class. + /// + /// The text. + /// Type of the text. + /// if set to true text token starts a paragraph. + /// + /// if set to true text token starts a note. + /// Name of the paragraph style. + /// Name of the character style. + /// ------------------------------------------------------------------------------------ + public DummyTextToken(string text, TextType textType, bool isParagraphStart, + bool isNoteStart, string paraStyleName, string charStyleName) + : this(text, textType, isParagraphStart, + isNoteStart, paraStyleName, charStyleName, null) + { + } + + /// ------------------------------------------------------------------------------------ + /// + /// Initializes a new instance of the class. + /// + /// The text. + /// Type of the text. + /// if set to true text token starts a paragraph. + /// + /// if set to true text token starts a note. + /// Name of the paragraph style. + /// Name of the character style. + /// The icu locale. + /// ------------------------------------------------------------------------------------ + public DummyTextToken(string text, TextType textType, bool isParagraphStart, + bool isNoteStart, string paraStyleName, string charStyleName, string icuLocale) + { + m_text = text; + m_textType = textType; + m_isParagraphStart = isParagraphStart; + m_isNoteStart = isNoteStart; + m_paraStyleName = paraStyleName; + m_charStyleName = charStyleName; + m_iculocale = icuLocale; + } + + #region ITextToken Members + /// ------------------------------------------------------------------------------------ + /// + /// Gets/sets the locale. + /// + /// ------------------------------------------------------------------------------------ + public string Locale + { + get { return m_iculocale; } + set { m_iculocale = value; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets or sets the type of the text. + /// + /// ------------------------------------------------------------------------------------ + public TextType TextType + { + get { return m_textType; } + set { m_textType = value; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets or sets a value indicating whether this instance is note start. + /// + /// ------------------------------------------------------------------------------------ + public bool IsNoteStart + { + get { return m_isNoteStart; } + set { m_isNoteStart = value; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets or sets a value indicating whether this instance is paragraph start. + /// + /// ------------------------------------------------------------------------------------ + public bool IsParagraphStart + { + get { return m_isParagraphStart; } + set { m_isParagraphStart = value; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets or sets the name of the paragraph style. + /// + /// ------------------------------------------------------------------------------------ + public string ParaStyleName + { + get { return m_paraStyleName; } + set { m_paraStyleName = value; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets or sets the name of the character style. + /// + /// ------------------------------------------------------------------------------------ + public string CharStyleName + { + get { return m_charStyleName; } + set { m_charStyleName = value; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets or sets the text. + /// + /// ------------------------------------------------------------------------------------ + public string Text + { + get { return m_text; } + set { m_text = value; } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Gets the Scripture reference as a string, suitable for displaying in the UI + /// + /// ------------------------------------------------------------------------------------ + public string ScrRefString + { + get { return string.Empty; } + set { ; } + } + + public BCVRef MissingEndRef + { + get { return m_missingEndRef; } + set { m_missingEndRef = value; } + } + + public BCVRef MissingStartRef + { + get { return m_missingStartRef; } + set { m_missingStartRef = value; } + } + + public override string ToString() + { + return Text; + } + + /// ------------------------------------------------------------------------------------ + /// + /// Makes a deep copy of this text token. + /// + /// ------------------------------------------------------------------------------------ + public ITextToken Clone() + { + DummyTextToken copy = new DummyTextToken(Text, TextType, IsParagraphStart, + IsNoteStart, ParaStyleName, CharStyleName, Locale); + copy.m_missingStartRef = m_missingStartRef; + copy.m_missingEndRef = m_missingEndRef; + return copy; + } + #endregion + } +} diff --git a/Lib/src/ScrChecks/ScrChecksTests/MatchedPairsCheckUnitTest.cs b/Lib/src/ScrChecks/ScrChecksTests/MatchedPairsCheckUnitTest.cs new file mode 100644 index 0000000000..7c175e3753 --- /dev/null +++ b/Lib/src/ScrChecks/ScrChecksTests/MatchedPairsCheckUnitTest.cs @@ -0,0 +1,409 @@ +// Copyright (c) 2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using System.Text; +using NUnit.Framework; +using System.Diagnostics; +using System.IO; +using SIL.FieldWorks.Common.FwUtils; + +namespace SILUBS.ScriptureChecks +{ + /// ------------------------------------------------------------------------------------ + /// + /// Tests the Matched Pairs check using the USFM-style data source + /// + /// ------------------------------------------------------------------------------------ + [TestFixture] + public class MatchedPairsCheckUnitTest_Usfm : ScrChecksTestBase + { + internal const string kMatchedPairXml1 = + "" + + "" + + "" + + "" + + "" + + ""; + + internal const string kMatchedPairXml2 = + "" + + "" + + "" + + "" + + "" + + "" + + ""; + + UnitTestChecksDataSource m_dataSource = new UnitTestChecksDataSource(); + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + [SetUp] + public override void TestSetup() + { + base.TestSetup(); + m_dataSource.SetParameterValue("MatchedPairs", kMatchedPairXml1); + m_dataSource.SetParameterValue("IntroductionOutlineStyles", "io"); + m_dataSource.SetParameterValue("PoeticStyles", + "q1" + CheckUtils.kStyleNamesDelimiter.ToString() + "q2"); + m_check = new MatchedPairsCheck(m_dataSource); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + void Test(string[,] result, string text) + { + m_dataSource.Text = text; + + List tts = + CheckInventory.GetReferences(m_dataSource.TextTokens(), string.Empty); + + Assert.That(tts.Count, Is.EqualTo(result.GetUpperBound(0) + 1), "A different number of results was returned than what was expected."); + + for (int i = 0; i <= result.GetUpperBound(0); ++i) + { + Assert.That(tts[i].InventoryText, Is.EqualTo(result[i, 0]), "InventoryText number: " + i); + Assert.That(tts[i].Message, Is.EqualTo(result[i, 1]), "Message number: " + i); + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Matched() + { + Test(new string[0, 0], @"\p \v 1 [foo]"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void UnMatched() + { + string[,] result = new string[,] + { + { "]", "Unmatched punctuation" }, + { "[", "Unmatched punctuation" }, + }; + + Test(result, @"\p \v 1 ]foo["); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void NestedDifferentMatched() + { + Test(new string[0, 0], @"\p \v 1 (foo [bar] baz)"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void NestedSameMatched() + { + Test(new string[0, 0], @"\p \v 1 (foo (bar) baz)"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void MutipleUnMatched() + { + string[,] result = new string[,] + { + { "(", "Unmatched punctuation" }, + { "]", "Unmatched punctuation" }, + { ")", "Unmatched punctuation" } + }; + + Test(result, @"\p \v 1 (foo] bar)"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Overlapping() + { + string[,] result = new string[,] + { + { "(", "Overlapping pair" }, + { "[", "Overlapping pair" }, + { ")", "Overlapping pair" }, + { "]", "Overlapping pair" } + }; + + Test(result, @"\p \v 1 (foo [bar) baz]"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void BodyFootnote() + { + string[,] result = new string[,] + { + { ")", "Unmatched punctuation" }, + { "(", "Unmatched punctuation" }, + }; + + Test(result, @"\p \v 1 (foo \f + bar)\f* baz"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void FootnoteFootnote() + { + string[,] result = new string[,] + { + { "(", "Unmatched punctuation" }, + { ")", "Unmatched punctuation" }, + }; + + Test(result, @"\p \v 1 \f + (foo\f* bar \f + baz)\f*"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void ZMoreMatchedPairs() + { + string[,] result = new string[,] + { + { "\u00A1", "Unmatched punctuation" } + }; + + m_dataSource.SetParameterValue("MatchedPairs", kMatchedPairXml2); + Test(result, "\\p \\v 1 \u00A1hola"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void IntroOutlineValue() + { + string[,] result = new string[,] + { + { ")", "Unmatched punctuation" }, + { ")", "Unmatched punctuation" }, + }; + + Test(result, @"\io A.] foo 1) bar 2) baz"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void IntroOutlineValueWrongDirection() + { + string[,] result = new string[,] + { + { "[", "Unmatched punctuation" }, + { ")", "Unmatched punctuation" }, + { ")", "Unmatched punctuation" }, + }; + + Test(result, @"\io A.[ foo 1) bar 2) baz"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void IntroOutlineValueDuplicate() + { + string[,] result = new string[,] + { + { ")", "Unmatched punctuation" }, + { ")", "Unmatched punctuation" }, + { ")", "Unmatched punctuation" }, + }; + + Test(result, @"\io A.)] foo 1) bar 2) baz"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void IntroOutline() + { + string[,] result = new string[,] + { + { ")", "Unmatched punctuation" }, + { ")", "Unmatched punctuation" }, + { ")", "Unmatched punctuation" }, + }; + + Test(result, @"\io A. B.) foo 1) bar 2) baz"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void TestClosedByParagraphForNormalPara() + { + string[,] result = new string[,] + { + { "(", "Unmatched punctuation" }, + { ")", "Unmatched punctuation" }, + }; + + Test(result, @"\p \v 1 (foo \p \v 2 bar)"); + Test(new string[0, 0], @"\p \v 1 {foo \p \v 2 bar}"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void TestClosedByParagraphForPoetryPara() + { + Test(new string[0, 0], @"\q1 \v 1 [foo \q2 \v 2 bar]"); + Test(new string[0, 0], @"\q1 \v 1 {foo \q2 \v 2 bar}"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void SectionHead() + { + Test(new string[,] {{ ")", "Unmatched punctuation" },}, @"\s text)"); + } + } + + /// ------------------------------------------------------------------------------------ + /// + /// Tests the Matched Pairs check using a data source that passes tokens similar + /// to those produced by TE. + /// + /// ------------------------------------------------------------------------------------ + [TestFixture] + public class MatchedPairsCheckUnitTest_Fw : ScrChecksTestBase + { + private TestChecksDataSource m_dataSource; + + #region Initialization + /// ------------------------------------------------------------------------------------ + /// + /// Set up that happens before every test runs. + /// + /// ------------------------------------------------------------------------------------ + [SetUp] + public override void TestSetup() + { + base.TestSetup(); + m_dataSource = new TestChecksDataSource(); + m_check = new MatchedPairsCheck(m_dataSource); + m_dataSource.SetParameterValue("PoeticStyles", "Citation Line1" + + CheckUtils.kStyleNamesDelimiter.ToString() + "Citation Line2"); + } + #endregion + + #region Tests + /// ------------------------------------------------------------------------------------ + /// + /// Tests that we correctly detect a paragraph start when it begins with a verse number + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void OpenParenFollowedByParaStartingWithVerseNum() + { + m_dataSource.SetParameterValue("MatchedPairs", MatchedPairsCheckUnitTest_Usfm.kMatchedPairXml1); + + m_dataSource.m_tokens.Add(new DummyTextToken("This is nice (and by nice, I mean", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("17", + TextType.VerseNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken(" really, super nice). Amen?", + TextType.Verse, false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(2)); + CheckError(0, m_dataSource.m_tokens[0].Text, 13, "(", "Unmatched punctuation"); + CheckError(1, m_dataSource.m_tokens[2].Text, 19, ")", "Unmatched punctuation"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Tests that a footnote doesn't mess up processing of surrounding body text when a + /// matched pair spans paragraphs. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void OpenFollowedByFootnoteFollowedByParaWithClosing() + { + m_dataSource.SetParameterValue("MatchedPairs", MatchedPairsCheckUnitTest_Usfm.kMatchedPairXml1); + + m_dataSource.m_tokens.Add(new DummyTextToken("This is nice (and by nice, I mean", + TextType.Verse, true, false, "Citation Line1")); + m_dataSource.m_tokens.Add(new DummyTextToken("Mean <> cruel", + TextType.Note, true, true, "Note General Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken(" text following footnote.", + TextType.Verse, false, false, "Citation Line1")); + m_dataSource.m_tokens.Add(new DummyTextToken("really, super nice). Amen?", + TextType.Verse, true, false, "Citation Line1")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + #endregion + } +} diff --git a/Lib/src/ScrChecks/ScrChecksTests/MixedCapitalizationCheckUnitTest.cs b/Lib/src/ScrChecks/ScrChecksTests/MixedCapitalizationCheckUnitTest.cs new file mode 100644 index 0000000000..e84e77d24b --- /dev/null +++ b/Lib/src/ScrChecks/ScrChecksTests/MixedCapitalizationCheckUnitTest.cs @@ -0,0 +1,317 @@ +// Copyright (c) 2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using System.Text; +using NUnit.Framework; +using System.Diagnostics; +using System.IO; +using SIL.FieldWorks.Common.FwUtils; + +namespace SILUBS.ScriptureChecks +{ + /// ---------------------------------------------------------------------------------------- + /// + /// Unit tests for the MixedCapitalizationCheck class + /// + /// ---------------------------------------------------------------------------------------- + [TestFixture] + public class MixedCapitalizationCheckUnitTest + { + UnitTestChecksDataSource m_source = new UnitTestChecksDataSource(); + + [SetUp] + public void RunBeforeEachTest() + { + m_source.SetParameterValue("UncapitalizedPrefixes", ""); + m_source.SetParameterValue("CapitalizedSuffixes", ""); + m_source.SetParameterValue("CapitalizedPrefixes", ""); + } + + void Test(string[] result, string text) + { + Test(result, text, ""); + } + + void Test(string[] result, string text, string desiredKey) + { + m_source.Text = text; + + MixedCapitalizationCheck check = new MixedCapitalizationCheck(m_source); + List tts = + check.GetReferences(m_source.TextTokens(), desiredKey); + + Assert.That(tts.Count, Is.EqualTo(result.GetUpperBound(0)+1), "A different number of results was returned than what was expected."); + + for (int i = 0; i <= result.GetUpperBound(0); ++i) + Assert.That(tts[i].InventoryText, Is.EqualTo(result[i]), "Result number: " + i.ToString()); + } + + [Test] + public void WordNoPrefixLower() + { + AWord word = new AWord("bat", m_source.CharacterCategorizer); + Assert.That(word.Prefix, Is.EqualTo("")); + } + [Test] + public void WordNoSuffixLower() + { + AWord word = new AWord("bat", m_source.CharacterCategorizer); + Assert.That(word.Suffix, Is.EqualTo("")); + } + + [Test] + public void WordNoPrefixUpper() + { + AWord word = new AWord("BAT", m_source.CharacterCategorizer); + Assert.That(word.Prefix, Is.EqualTo("")); + } + [Test] + public void WordNoSuffixUpper() + { + AWord word = new AWord("BAT", m_source.CharacterCategorizer); + Assert.That(word.Suffix, Is.EqualTo("")); + } + + [Test] + public void WordPrefixLower() + { + AWord word = new AWord("caBat", m_source.CharacterCategorizer); + Assert.That(word.Prefix, Is.EqualTo("ca")); + } + + [Test] + public void WordPrefixLowerWithTitle() + { + AWord word = new AWord("ca\u01C5at", m_source.CharacterCategorizer); + Assert.That(word.Prefix, Is.EqualTo("ca")); + } + + [Test] + public void WordPrefixUpper() + { + AWord word = new AWord("CaBat", m_source.CharacterCategorizer); + Assert.That(word.Prefix, Is.EqualTo("Ca")); + } + + [Test] + public void WordSuffix() + { + AWord word = new AWord("DavidBen", m_source.CharacterCategorizer); + Assert.That(word.Suffix, Is.EqualTo("Ben")); + } + + [Test] + public void WordWithNumberNoPrefix() + { + AWord word = new AWord("1Co", m_source.CharacterCategorizer); + Assert.That(word.Prefix, Is.EqualTo("")); + } + [Test] + public void WordWithNumberNoSuffix() + { + AWord word = new AWord("1Co", m_source.CharacterCategorizer); + Assert.That(word.Suffix, Is.EqualTo("")); + } + + [Test] + public void Regular() + { + Test(new string[] { }, @"\p \v 1 Bat"); + } + + [Test] + public void TwoCapitalLetter() + { + Test(new string[] { "BaT" }, @"\p \v 1 BaT"); + } + + [Test] + public void TwoCapitalLetterDiacritic_MustBeDeComposed() + { + Test(new string[] { "B\u030BaT\u030B" }, "\\p \\v 1 B\u030BaT\u030B"); + } + + [Test] + public void TwoCapitalLetterDiacritic_CanBeComposed() + { + Test(new string[] { "\u0210a\u0210" }, "\\p \\v 1 \u0210a\u0210"); + } + + [Test] + public void TwoCapitalLetterDiacritic_CanBeDeComposed() + { + Test(new string[] { "R\u030FaR\u030F" }, "\\p \\v 1 R\u030FaR\u030F"); + } + + [Test] + public void AllCaps() + { + Test(new string[] { }, @"\p \v 1 BAT"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Tests that diacritics within a lowercase word does not return a mixed capitalization + /// problem. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void AllLowerDiacriticNFC() + { + Test(new string[] { }, "\\p \\v 1 Phile\u0301mon"); + } + + [Test] + public void AllCapsDiacritic_MustBeDeComposed() + { + Test(new string[] { }, "\\p \\v 1 B\030BAT"); + } + + [Test] + public void AllCapsDiacritic_CanBeComposed() + { + Test(new string[] { }, "\\p \\v 1 \0210AT"); + } + + [Test] + public void AllCapsDiacritic_CanBeDeComposed() + { + Test(new string[] { }, "\\p \\v 1 R\u030FAT"); + } + + [Test] + public void UncapitalizedPrefix() + { + Test(new string[] { "aBat" }, @"\p \v 1 aBat"); + } + + [Test] + public void UncapitalizedPrefixDiacritic_MustBeDeComposed() + { + Test(new string[] { "aB\u030Bat" }, "\\p \\v 1 aB\u030Bat"); + } + + [Test] + public void UncapitalizedPrefixDiacritic_CanBeComposed() + { + Test(new string[] { "a\u0210at" }, "\\p \\v 1 a\u0210at"); + } + + [Test] + public void UncapitalizedPrefixDiacritic_CanBeDeComposed() + { + Test(new string[] { "aR\u030Fat" }, "\\p \\v 1 aR\u030Fat"); + } + + [Test] + [Ignore("Text needs to be normalized to NFC (or maybe NFD) before check is run.")] + public void FindingDifferentNormalization() + { + Test(new string[] { "a\u0210at", "a\u0210at" }, + "\\p \\v 1 aR\u030Fat aNd a\u0210at", "a\u0210at"); + } + + [Test] + public void UncapitalizedPrefixTitleCase() + { + Test(new string[] { "a\u01C5at" }, "\\p \\v 1 a\u01C5at"); + } + + [Test] + public void UncapitalizedPrefixSpecificOK() + { + m_source.SetParameterValue("UncapitalizedPrefixes", "a"); + Test(new string[] { }, @"\p \v 1 aBat"); + } + + [Test] + public void UncapitalizedPrefixPatternOK1() + { + m_source.SetParameterValue("UncapitalizedPrefixes", "*a"); + Test(new string[] { }, @"\p \v 1 baBat"); + } + [Test] + public void UncapitalizedPrefixPatternOK2() + { + m_source.SetParameterValue("UncapitalizedPrefixes", "*a"); + Test(new string[] { }, @"\p \v 1 caBat"); + } + + [Test] + public void UncapitalizedPrefixAllOK1() + { + m_source.SetParameterValue("UncapitalizedPrefixes", "*"); + Test(new string[] { }, @"\p \v 1 baBat"); + } + [Test] + public void UncapitalizedPrefixAllOK2() + { + m_source.SetParameterValue("UncapitalizedPrefixes", "*"); + Test(new string[] { }, @"\p \v 1 caBat"); + } + + [Test] + public void CapitalizedSuffixOK() + { + m_source.SetParameterValue("CapitalizedSuffixes", "Bat"); + Test(new string[] { }, @"\p \v 1 CaBat"); + } + + [Test] + public void CapitalizedPrefixOK() + { + m_source.SetParameterValue("CapitalizedPrefixes", "Ca"); + Test(new string[] { }, @"\p \v 1 CaBat"); + } + + [Test] + public void WithNumbers() + { + Test(new string[] { }, @"\p \v 1 1Co"); + } + [Test] + public void WithNumbersPrefix() + { + Test(new string[] { "1CoR" }, @"\p \v 1 1CoR"); + } + + [Test] + public void NonLettersOneCapitalLetter() + { + Test(new string[] { }, @"\p \v 1 Foo-bar"); + } + + [Test] + public void NonLettersTwoCapitalLetter() + { + Test(new string[] { "Foo-Bar" }, @"\p \v 1 Foo-Bar"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Tests changing the character categorizer after the check is instantiated. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void ChangeCharacterCategorizerAfterInstantiationOfCheck() + { + MixedCapitalizationCheck check = new MixedCapitalizationCheck(m_source); + + m_source.Text = @"\p \v 1 w!Forming"; + + List tts = check.GetReferences(m_source.TextTokens(), null); + + Assert.That(tts.Count, Is.EqualTo(0)); + + m_source.m_extraWordFormingCharacters = "!"; + + tts = check.GetReferences(m_source.TextTokens(), null); + + Assert.That(tts.Count, Is.EqualTo(1)); + Assert.That(tts[0].Text, Is.EqualTo("w!Forming")); + } + } +} diff --git a/Lib/src/ScrChecks/ScrChecksTests/PunctuationCheckUnitTest.cs b/Lib/src/ScrChecks/ScrChecksTests/PunctuationCheckUnitTest.cs new file mode 100644 index 0000000000..295298db90 --- /dev/null +++ b/Lib/src/ScrChecks/ScrChecksTests/PunctuationCheckUnitTest.cs @@ -0,0 +1,838 @@ +// Copyright (c) 2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using System.Text; +using NUnit.Framework; +using System.Diagnostics; +using System.IO; +using SIL.FieldWorks.Common.FwUtils; + +namespace SILUBS.ScriptureChecks +{ + /// ---------------------------------------------------------------------------------------- + /// + /// Unit tests for the PunctuationCheck class + /// + /// ---------------------------------------------------------------------------------------- + [TestFixture] + public class PunctuationCheckUnitTest : ScrChecksTestBase + { + private UnitTestChecksDataSource m_dataSource = new UnitTestChecksDataSource(); + + #region Setup + /// ------------------------------------------------------------------------------------ + /// + /// Test fixture setup (runs once for the whole fixture). + /// + /// ------------------------------------------------------------------------------------ + [OneTimeSetUp] + public void FixtureSetup() + { + QuotationMarksList qmarks = QuotationMarksList.NewList(); + qmarks.QMarksList[0].Opening = "\u201C"; + qmarks.QMarksList[0].Closing = "\u201D"; + qmarks.QMarksList[1].Opening = "\u2018"; + qmarks.QMarksList[1].Closing = "\u2019"; + qmarks.EnsureLevelExists(5); + m_dataSource.SetParameterValue("QuotationMarkInfo", qmarks.XmlString); + m_dataSource.SetParameterValue("PunctWhitespaceChar", "_"); + m_check = new PunctuationCheck(m_dataSource); + } + #endregion + + #region Helper methods + /// ------------------------------------------------------------------------------------ + /// + /// Tests that processing the specified text produces the expected punctuation pattern. + /// Use this version for tests that expect a single pattern. + /// + /// The expected punct pattern. + /// The expected offset. + /// A string marked up with SF codes representing a text to be + /// processed. + /// ------------------------------------------------------------------------------------ + void TestGetReferences(string expectedPunctPattern, int expectedOffset, string text) + { + TestGetReferences(new string[] { expectedPunctPattern }, new int[] { expectedOffset }, text); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Tests that processing the specified text using the GetReferences method produces the + /// expected punctuation patterns. + /// + /// The expected punct patterns. + /// The expected offsets. + /// A string marked up with SF codes representing a text to be + /// processed. + /// ------------------------------------------------------------------------------------ + void TestGetReferences(string[] expectedPunctPatterns, int[] expectedOffsets, string text) + { + Assert.That(expectedOffsets.Length, Is.EqualTo(expectedPunctPatterns.Length), "Poorly defined expected test results."); + m_dataSource.Text = text; + + PunctuationCheck check = new PunctuationCheck(m_dataSource); + List tts = + check.GetReferences(m_dataSource.TextTokens(), String.Empty); + + Assert.That(tts.Count, Is.EqualTo(expectedPunctPatterns.Length), "Unexpected number of punctuation patterns."); + + for (int i = 0; i < expectedPunctPatterns.Length; i++ ) + { + Assert.That(tts[i].InventoryText, Is.EqualTo(expectedPunctPatterns[i]), "Result number: " + i); + Assert.That(tts[i].Offset, Is.EqualTo(expectedOffsets[i]), "Result number: " + i); + } + } + #endregion + + #region GetReferences tests + [Test] + public void GetReferences_BasicMedial() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Basic"); + TestGetReferences("-", 3, "\\p \\v 1 pre-word"); + } + + [Test] + public void GetReferences_IntermediateMedial() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Intermediate"); + TestGetReferences("-", 3, "\\p \\v 1 pre-word"); + } + + [Test] + public void GetReferences_AdvancedMedial() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Advanced"); + TestGetReferences("-", 3, "\\p \\v 1 pre-word"); + } + + [Test] + public void GetReferences_BasicIsolated() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Basic"); + TestGetReferences("_\u2014_", 5, "\\p \\v 1 word \u2014 word"); + } + + [Test] + public void GetReferences_IntermediateIsolated() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Intermediate"); + TestGetReferences("_\u2014_", 5, "\\p \\v 1 word \u2014 word"); + } + + [Test] + public void GetReferences_AdvancedIsolated() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Advanced"); + TestGetReferences("_\u2014_", 5, "\\p \\v 1 word \u2014 word"); + } + + [Test] + public void GetReferences_BasicDoubleStraightQuoteAfterVerseNum() + { + TestChecksDataSource dataSource = new TestChecksDataSource(); + dataSource.SetParameterValue("PunctCheckLevel", "Basic"); + + PunctuationCheck check = new PunctuationCheck(dataSource); + dataSource.m_tokens.Add(new DummyTextToken("Wow.", + TextType.Verse, true, false, "Paragraph")); + dataSource.m_tokens.Add(new DummyTextToken("17", + TextType.VerseNumber, true, false, "Paragraph")); + dataSource.m_tokens.Add(new DummyTextToken("\"Word", + TextType.Verse, false, false, "Paragraph")); + List tokens = + check.GetReferences(dataSource.TextTokens(), string.Empty); + Assert.That(tokens.Count, Is.EqualTo(2)); + + Assert.That(tokens[0].InventoryText, Is.EqualTo("._")); + Assert.That(tokens[0].Offset, Is.EqualTo(3)); + Assert.That(tokens[0].FirstToken.Text, Is.EqualTo("Wow.")); + + Assert.That(tokens[1].InventoryText, Is.EqualTo("_\"")); + Assert.That(tokens[1].Offset, Is.EqualTo(0)); + Assert.That(tokens[1].FirstToken.Text, Is.EqualTo("\"Word")); + } + + [Test] + public void GetReferences_IntermediateDoubleStraightQuoteAfterVerseNum() + { + TestChecksDataSource dataSource = new TestChecksDataSource(); + dataSource.SetParameterValue("PunctCheckLevel", "Intermediate"); + + PunctuationCheck check = new PunctuationCheck(dataSource); + dataSource.m_tokens.Add(new DummyTextToken("Wow.", + TextType.Verse, true, false, "Paragraph")); + dataSource.m_tokens.Add(new DummyTextToken("17", + TextType.VerseNumber, true, false, "Paragraph")); + dataSource.m_tokens.Add(new DummyTextToken("\"Word", + TextType.Verse, false, false, "Paragraph")); + List tokens = + check.GetReferences(dataSource.TextTokens(), string.Empty); + Assert.That(tokens.Count, Is.EqualTo(2)); + + Assert.That(tokens[0].InventoryText, Is.EqualTo("._")); + Assert.That(tokens[0].Offset, Is.EqualTo(3)); + Assert.That(tokens[0].FirstToken.Text, Is.EqualTo("Wow.")); + + Assert.That(tokens[1].InventoryText, Is.EqualTo("_\"")); + Assert.That(tokens[1].Offset, Is.EqualTo(0)); + Assert.That(tokens[1].FirstToken.Text, Is.EqualTo("\"Word")); + } + + [Test] + public void GetReferences_AdvancedDoubleStraightQuoteAfterVerseNum() + { + TestChecksDataSource dataSource = new TestChecksDataSource(); + dataSource.SetParameterValue("PunctCheckLevel", "Advanced"); + + PunctuationCheck check = new PunctuationCheck(dataSource); + dataSource.m_tokens.Add(new DummyTextToken("Wow.", + TextType.Verse, true, false, "Paragraph")); + dataSource.m_tokens.Add(new DummyTextToken("17", + TextType.VerseNumber, true, false, "Paragraph")); + dataSource.m_tokens.Add(new DummyTextToken("\"Word", + TextType.Verse, false, false, "Paragraph")); + List tokens = + check.GetReferences(dataSource.TextTokens(), string.Empty); + Assert.That(tokens.Count, Is.EqualTo(2)); + + Assert.That(tokens[0].InventoryText, Is.EqualTo("._")); + Assert.That(tokens[0].Offset, Is.EqualTo(3)); + Assert.That(tokens[0].FirstToken.Text, Is.EqualTo("Wow.")); + + Assert.That(tokens[1].InventoryText, Is.EqualTo("_\"")); + Assert.That(tokens[1].Offset, Is.EqualTo(0)); + Assert.That(tokens[1].FirstToken.Text, Is.EqualTo("\"Word")); + } + + [Test] + public void GetReferences_BasicVerseNumBetweenNotes() + { + TestChecksDataSource dataSource = new TestChecksDataSource(); + dataSource.SetParameterValue("PunctCheckLevel", "Basic"); + + PunctuationCheck check = new PunctuationCheck(dataSource); + dataSource.m_tokens.Add(new DummyTextToken("Wow", + TextType.Verse, true, false, "Paragraph")); + dataSource.m_tokens.Add(new DummyTextToken("I am a note.", + TextType.Note, true, true, "Note General Paragraph")); + dataSource.m_tokens.Add(new DummyTextToken("17", + TextType.VerseNumber, true, false, "Paragraph")); + dataSource.m_tokens.Add(new DummyTextToken("\"I am a quote note!\"", + TextType.Note, true, true, "Note General Paragraph")); + List tokens = + check.GetReferences(dataSource.TextTokens(), string.Empty); + Assert.That(tokens.Count, Is.EqualTo(4)); + + Assert.That(tokens[0].InventoryText, Is.EqualTo("._")); + Assert.That(tokens[0].Offset, Is.EqualTo(11)); + Assert.That(tokens[0].FirstToken.Text, Is.EqualTo("I am a note.")); + + Assert.That(tokens[1].InventoryText, Is.EqualTo("_\"")); + Assert.That(tokens[1].Offset, Is.EqualTo(0)); + Assert.That(tokens[1].FirstToken.Text, Is.EqualTo("\"I am a quote note!\"")); + + Assert.That(tokens[2].InventoryText, Is.EqualTo("!_")); + Assert.That(tokens[2].Offset, Is.EqualTo(18)); + Assert.That(tokens[2].FirstToken.Text, Is.EqualTo("\"I am a quote note!\"")); + + Assert.That(tokens[3].InventoryText, Is.EqualTo("\"_")); + Assert.That(tokens[3].Offset, Is.EqualTo(19)); + Assert.That(tokens[3].FirstToken.Text, Is.EqualTo("\"I am a quote note!\"")); + } + + [Test] + public void GetReferences_IntermediateVerseNumBetweenNotes() + { + TestChecksDataSource dataSource = new TestChecksDataSource(); + dataSource.SetParameterValue("PunctCheckLevel", "Intermediate"); + + PunctuationCheck check = new PunctuationCheck(dataSource); + dataSource.m_tokens.Add(new DummyTextToken("Wow", + TextType.Verse, true, false, "Paragraph")); + dataSource.m_tokens.Add(new DummyTextToken("I am a note.", + TextType.Note, true, true, "Note General Paragraph")); + dataSource.m_tokens.Add(new DummyTextToken("17", + TextType.VerseNumber, true, false, "Paragraph")); + dataSource.m_tokens.Add(new DummyTextToken("\"I am a quote note!\"", + TextType.Note, true, true, "Note General Paragraph")); + List tokens = + check.GetReferences(dataSource.TextTokens(), string.Empty); + Assert.That(tokens.Count, Is.EqualTo(3)); + + Assert.That(tokens[0].InventoryText, Is.EqualTo("._")); + Assert.That(tokens[0].Offset, Is.EqualTo(11)); + Assert.That(tokens[0].FirstToken.Text, Is.EqualTo("I am a note.")); + + Assert.That(tokens[1].InventoryText, Is.EqualTo("_\"")); + Assert.That(tokens[1].Offset, Is.EqualTo(0)); + Assert.That(tokens[1].FirstToken.Text, Is.EqualTo("\"I am a quote note!\"")); + + Assert.That(tokens[2].InventoryText, Is.EqualTo("!\"_")); + Assert.That(tokens[2].Offset, Is.EqualTo(18)); + Assert.That(tokens[2].FirstToken.Text, Is.EqualTo("\"I am a quote note!\"")); + } + + [Test] + public void GetReferences_AdvancedVerseNumBetweenNotes() + { + TestChecksDataSource dataSource = new TestChecksDataSource(); + dataSource.SetParameterValue("PunctCheckLevel", "Advanced"); + + PunctuationCheck check = new PunctuationCheck(dataSource); + dataSource.m_tokens.Add(new DummyTextToken("Wow", + TextType.Verse, true, false, "Paragraph")); + dataSource.m_tokens.Add(new DummyTextToken("I am a note.", + TextType.Note, true, true, "Note General Paragraph")); + dataSource.m_tokens.Add(new DummyTextToken("17", + TextType.VerseNumber, true, false, "Paragraph")); + dataSource.m_tokens.Add(new DummyTextToken("\"I am a quote note!\"", + TextType.Note, true, true, "Note General Paragraph")); + List tokens = + check.GetReferences(dataSource.TextTokens(), string.Empty); + Assert.That(tokens.Count, Is.EqualTo(3)); + + Assert.That(tokens[0].InventoryText, Is.EqualTo("._")); + Assert.That(tokens[0].Offset, Is.EqualTo(11)); + Assert.That(tokens[0].FirstToken.Text, Is.EqualTo("I am a note.")); + + Assert.That(tokens[1].InventoryText, Is.EqualTo("_\"")); + Assert.That(tokens[1].Offset, Is.EqualTo(0)); + Assert.That(tokens[1].FirstToken.Text, Is.EqualTo("\"I am a quote note!\"")); + + Assert.That(tokens[2].InventoryText, Is.EqualTo("!\"_")); + Assert.That(tokens[2].Offset, Is.EqualTo(18)); + Assert.That(tokens[2].FirstToken.Text, Is.EqualTo("\"I am a quote note!\"")); + } + + [Test] + public void GetReferences_BasicInitialSingle() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Basic"); + TestGetReferences("_\u201C", 5, "\\p \\v 1 word \u201Cword"); + } + + [Test] + public void GetReferences_IntermediateInitialSingle() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Intermediate"); + TestGetReferences("_\u201C", 5, "\\p \\v 1 word \u201Cword"); + } + + [Test] + public void GetReferences_AdvancedInitialSingle() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Advanced"); + TestGetReferences("_\u201C", 5, "\\p \\v 1 word \u201Cword"); + } + + [Test] + public void GetReferences_BasicParagraphInitialSingle() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Basic"); + TestGetReferences("_\u201C", 0, "\\p \\v 1 \u201Cword"); + } + + [Test] + public void GetReferences_IntermediateParagraphInitialSingle() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Intermediate"); + TestGetReferences("_\u201C", 0, "\\p \\v 1 \u201Cword"); + } + + [Test] + public void GetReferences_AdvancedParagraphInitialSingle() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Advanced"); + TestGetReferences("_\u201C", 0, "\\p \\v 1 \u201Cword"); + } + + [Test] + public void GetReferences_BasicInitialMultiple() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Basic"); + TestGetReferences(new string[] { "_\u201C", "_\u2018" }, + new int[] { 5, 7 }, + "\\p \\v 1 word \u201C \u2018word"); + } + + [Test] + public void GetReferences_IntermediateInitialMultiple() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Intermediate"); + TestGetReferences("_\u201C_\u2018", 5, "\\p \\v 1 word \u201C \u2018word"); + } + + [Test] + public void GetReferences_AdvancedInitialMultiple() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Advanced"); + TestGetReferences("_\u201C_\u2018", 5, "\\p \\v 1 word \u201C \u2018word"); + try + { + m_dataSource.SetParameterValue("PunctWhitespaceChar", " "); + TestGetReferences(" \u201C \u2018", 5, "\\p \\v 1 word \u201C \u2018word"); + } + finally + { + m_dataSource.SetParameterValue("PunctWhitespaceChar", "_"); + } + } + + [Test] + public void GetReferences_BasicFinalSingle() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Basic"); + TestGetReferences("\u201D_", 4, "\\p \\v 1 word\u201D word"); + } + + [Test] + public void GetReferences_IntermediateFinalSingle() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Intermediate"); + TestGetReferences("\u201D_", 4, "\\p \\v 1 word\u201D word"); + } + + [Test] + public void GetReferences_AdvancedFinalSingle() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Advanced"); + TestGetReferences("\u201D_", 4, "\\p \\v 1 word\u201D word"); + } + + [Test] + public void GetReferences_BasicParagraphFinalMultiple() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Basic"); + // REVIEW: This appears to be the intended design, but it doesn't seem to be particularly + // useful since a period followed by a space and a comma followed by a space are both valid, + // but a period followed by a space, followed by a dollar sign is probably not valid. The + // user who runs this check in "basic" mode will never be able to catch this kind of error. + TestGetReferences(new string[] { "._", ",_", "$_" }, new int[] { 4, 5, 6 }, "\\p \\v 1 word.,$"); + } + + [Test] + public void GetReferences_IntermediateParagraphFinalMultiple() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Intermediate"); + TestGetReferences(".,$_", 4, "\\p \\v 1 word.,$"); + } + + [Test] + public void GetReferences_AdvancedParagraphFinalMultiple() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Advanced"); + TestGetReferences(".,$_", 4, "\\p \\v 1 word.,$"); + } + + [Test] + public void GetReferences_BasicParagraphFinalSingle() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Basic"); + TestGetReferences("\u201D_", 4, "\\p \\v 1 word\u201D"); + } + + [Test] + public void GetReferences_IntermediateParagraphFinalSingle() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Intermediate"); + TestGetReferences("\u201D_", 4, "\\p \\v 1 word\u201D"); + } + + [Test] + public void GetReferences_AdvancedParagraphFinalSingle() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Advanced"); + TestGetReferences("\u201D_", 4, "\\p \\v 1 word\u201D"); + } + + [Test] + public void GetReferences_BasicFinalMutiplePeriodBefore() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Basic"); + TestGetReferences(new string[] { "._", "\u2019_", "\u201D_" }, + new int[] {4, 5, 7}, + "\\p \\v 1 word.\u2019 \u201D word"); + } + + [Test] + public void GetReferences_IntermediateFinalMutiplePeriodBefore() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Intermediate"); + TestGetReferences(".\u2019_\u201D_", 4, "\\p \\v 1 word.\u2019 \u201D word"); + } + + [Test] + public void GetReferences_AdvancedFinalMutiplePeriodBefore() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Advanced"); + TestGetReferences(".\u2019_\u201D_", 4, "\\p \\v 1 word.\u2019 \u201D word"); + } + + [Test] + public void GetReferences_BasicFinalMutiplePeriodAfter() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Basic"); + TestGetReferences(new string[] { "\u2019_", "\u201D_", "._" }, + new int[] { 4, 6, 7 }, + "\\p \\v 1 word\u2019 \u201D. word"); + } + + [Test] + public void GetReferences_IntermediateFinalMutiplePeriodAfter() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Intermediate"); + TestGetReferences("\u2019_\u201D._", 4, "\\p \\v 1 word\u2019 \u201D. word"); + } + + [Test] + public void GetReferences_AdvancedFinalMutiplePeriodAfter() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Advanced"); + TestGetReferences("\u2019_\u201D._", 4, "\\p \\v 1 word\u2019 \u201D. word"); + } + + [Test] + public void GetReferences_BasicFinalMutipleNoSpace() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Basic"); + TestGetReferences(new string[] { "\u2019_", "\u201D_" }, + new int[] { 4, 5 }, + "\\p \\v 1 word\u2019\u201D word"); + } + + [Test] + public void GetReferences_IntermediateFinalMutipleNoSpace() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Intermediate"); + TestGetReferences("\u2019\u201D_", 4, "\\p \\v 1 word\u2019\u201D word"); + } + + [Test] + public void GetReferences_AdvancedFinalMutipleNoSpace() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Advanced"); + TestGetReferences("\u2019\u201D_", 4, "\\p \\v 1 word\u2019\u201D word"); + } + + [Test] + public void GetReferences_BasicFinalInitialAllQuotes() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Basic"); + TestGetReferences(new string[] { "\u2019_", "_\u201C" }, + new int[] { 4, 6 }, + "\\p \\v 1 word\u2019 \u201Cword"); + } + + [Test] + public void GetReferences_IntermediateFinalInitialAllQuotes() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Intermediate"); + TestGetReferences(new string[] { "\u2019_", "_\u201C" }, + new int[] { 4, 6 }, + "\\p \\v 1 word\u2019 \u201Cword"); + } + + [Test] + public void GetReferences_AdvancedFinalInitialAllQuotes() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Advanced"); + TestGetReferences("\u2019_\u201C", 4, "\\p \\v 1 word\u2019 \u201Cword"); + } + + [Test] + public void GetReferences_IntermediateFinalInitialSomeQuotes() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Intermediate"); + TestGetReferences(new string[] { "\u2019!_", "_\u201C" }, + new int[] { 4, 7 }, + "\\p \\v 1 word\u2019! \u201Cword"); + } + + [Test] + public void GetReferences_IntermediateFinalExclamationBetweenClosingQuotes() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Intermediate"); + TestGetReferences(new string[] { "\u2019!_", "_\u201D" }, + new int[] { 4, 7 }, + "\\p \\v 1 word\u2019! \u201Dword"); + } + + [Test] + public void GetReferences_BasicFinalInitialSomeQuotes() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Basic"); + TestGetReferences(new string[] { "\u2019_", "!_", "_\u201C" }, + new int[] { 4, 5, 7 }, + "\\p \\v 1 word\u2019! \u201Cword"); + } + + [Test] + public void GetReferences_AdvancedFinalInitialSomeQuotes() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Advanced"); + TestGetReferences("\u2019!_\u201C", 4, "\\p \\v 1 word\u2019! \u201Cword"); + } + + [Test] + public void GetReferences_BasicEllipsis() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Basic"); + TestGetReferences("...", 4, "\\p \\v 1 word...word"); + } + + [Test] + public void GetReferences_IntermediateEllipsis() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Intermediate"); + TestGetReferences("...", 4, "\\p \\v 1 word...word"); + } + + [Test] + public void GetReferences_AdvancedEllipsis() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Advanced"); + TestGetReferences("...", 4, "\\p \\v 1 word...word"); + } + + [Test] + public void GetReferences_BasicNumbersIgnore() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Basic"); + TestGetReferences(new string[] { "._", "._" }, + new int[] { 4, 14 }, + "\\p \\v 1 word. 3:4 word."); + } + + [Test] + public void GetReferences_IntermediateNumbersIgnore() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Intermediate"); + TestGetReferences(new string[] { "._", "._" }, + new int[] { 4, 14 }, + "\\p \\v 1 word. 3:4 word."); + } + + [Test] + public void GetReferences_AdvancedNumbersIgnore() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Advanced"); + TestGetReferences(new string[] { "._", "._" }, + new int[] { 4, 14 }, + "\\p \\v 1 word. 3:4 word."); + } + + [Test] + public void GetReferences_BasicNumbersIgnoreNoPunctBeforeNumbers() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Basic"); + TestGetReferences("._", 13, "\\p \\v 1 word 3:4 word."); + } + + [Test] + public void GetReferences_IntermediateNumbersIgnoreNoPunctBeforeNumbers() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Intermediate"); + TestGetReferences("._", 13, "\\p \\v 1 word 3:4 word."); + } + + [Test] + public void GetReferences_AdvancedNumbersIgnoreNoPunctNumbers() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Advanced"); + TestGetReferences("._", 13, "\\p \\v 1 word 3:4 word."); + } + + [Test] + public void GetReferences_BasicFootnoteSpanning() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Basic"); + TestGetReferences(new string[] { "._", "!_", "\u2019_", "\u201D_" }, + new int[] { 8, 4, 0, 2}, + "\\p \\v 1 text!\\f + \\fr 1:1 Note.\\f*\u2019 \u201D"); + } + + [Test] + public void GetReferences_IntermediateFootnoteSpanning() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Intermediate"); + TestGetReferences(new string[] { "._", "!\u2019_\u201D_" }, + new int[] { 8, 4 }, + "\\p \\v 1 text!\\f + \\fr 1:1 Note.\\f*\u2019 \u201D"); + } + + [Test] + public void GetReferences_AdvancedFootnoteSpanning() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Advanced"); + TestGetReferences(new string[] { "._", "!\u2019_\u201D_" }, + new int[] { 8, 4 }, + "\\p \\v 1 text!\\f + \\fr 1:1 Note.\\f*\u2019 \u201D"); + } + + [Test] + public void GetReferences_BasicFootnoteText() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Basic"); + TestGetReferences(new string[] { "_\u2018", "._", "\u2019_" }, + new int[] { 4, 9, 10 }, + "\\p \\v 1 text\\f + \\fr 1:1 \u2018Note.\u2019\\f* text"); + } + + [Test] + public void GetReferences_IntermediateFootnoteText() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Intermediate"); + TestGetReferences(new string[] { "_\u2018", ".\u2019_" }, + new int[] { 4, 9 }, + "\\p \\v 1 text\\f + \\fr 1:1 \u2018Note.\u2019\\f* text"); + } + + [Test] + public void GetReferences_AdvancedFootnoteText() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Advanced"); + TestGetReferences(new string[] { "_\u2018", ".\u2019_" }, + new int[] { 4, 9 }, + "\\p \\v 1 text\\f + \\fr 1:1 \u2018Note.\u2019\\f* text"); + } + + [Test] + public void GetReferences_BasicSectionHead() + { + m_dataSource.SetParameterValue("PunctCheckLevel", "Basic"); + TestGetReferences("._", 4, @"\s text."); + } + #endregion + + #region Check tests + /// ------------------------------------------------------------------------------------ + /// + /// Tests that the Check method reports inconsistencies for invalid and unknown + /// patterns, but not for patterns which are valid. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Check_ValidPatternsAreNotReported() + { + PuncPatternsList puncPatterns = new PuncPatternsList(); + PuncPattern pattern = new PuncPattern(); + pattern.Pattern = "._"; + pattern.ContextPos = ContextPosition.WordFinal; + pattern.Status = PuncPatternStatus.Valid; + puncPatterns.Add(pattern); + pattern = new PuncPattern(); + pattern.Pattern = ","; + pattern.ContextPos = ContextPosition.WordBreaking; + pattern.Status = PuncPatternStatus.Invalid; + puncPatterns.Add(pattern); + m_dataSource.SetParameterValue("PunctuationPatterns", puncPatterns.XmlString); + m_dataSource.SetParameterValue("PunctCheckLevel", "Intermediate"); + + PunctuationCheck check = new PunctuationCheck(m_dataSource); + + m_dataSource.Text = "\\p This is nice. By nice,I mean really nice!"; + + check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(2)); + CheckError(0, "This is nice. By nice,I mean really nice!", 21, ",", "Invalid punctuation pattern"); + CheckError(1, "This is nice. By nice,I mean really nice!", 40, "!", "Unspecified use of punctuation pattern"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Tests that the Check method reports the whole pattern for a punctuation pattern that + /// consists of more than one character (not counting spaces). + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Check_MultiCharPatterns() + { + m_dataSource.SetParameterValue("PunctuationPatterns", String.Empty); + m_dataSource.SetParameterValue("PunctCheckLevel", "Intermediate"); + + PunctuationCheck check = new PunctuationCheck(m_dataSource); + + m_dataSource.Text = "\\p This _> is!?."; + + check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(2)); + CheckError(0, "This _> is!?.", 5, "_>", "Unspecified use of punctuation pattern"); + CheckError(1, "This _> is!?.", 10, "!?.", "Unspecified use of punctuation pattern"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Tests that the Check method reports the whole pattern for a punctuation pattern that + /// consists of nested quotation marks, where the opening and closing marks are + /// separated by a (thin no-break) space. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Check_PatternsWithSpaceSeparatedQuoteMarks() + { + PuncPatternsList puncPatterns = new PuncPatternsList(); + PuncPattern pattern = new PuncPattern(); + pattern.Pattern = ",_"; + pattern.ContextPos = ContextPosition.WordFinal; + pattern.Status = PuncPatternStatus.Valid; + puncPatterns.Add(pattern); + pattern = new PuncPattern(); + pattern.Pattern = "_\u201C"; + pattern.ContextPos = ContextPosition.WordInitial; + pattern.Status = PuncPatternStatus.Valid; + puncPatterns.Add(pattern); + pattern = new PuncPattern(); + pattern.Pattern = "_\u2018"; + pattern.ContextPos = ContextPosition.WordInitial; + pattern.Status = PuncPatternStatus.Valid; + puncPatterns.Add(pattern); + m_dataSource.SetParameterValue("PunctuationPatterns", puncPatterns.XmlString); + m_dataSource.SetParameterValue("PunctCheckLevel", "Intermediate"); + + PunctuationCheck check = new PunctuationCheck(m_dataSource); + + m_dataSource.Text = "\\p Tom replied, \u201CBill said, \u2018Yes!\u2019\u202F\u201D"; + + check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(1)); + CheckError(0, "Tom replied, \u201CBill said, \u2018Yes!\u2019\u202F\u201D", 29, "!\u2019\u202F\u201D", "Unspecified use of punctuation pattern"); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Tests that the Check method reports an error for a paragraph whose only character + /// is a quotation mark. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Check_ParaWithSingleQuotationMark() + { + PuncPatternsList puncPatterns = new PuncPatternsList(); + PuncPattern pattern = new PuncPattern(); + pattern.Pattern = "._"; + pattern.ContextPos = ContextPosition.WordFinal; + pattern.Status = PuncPatternStatus.Valid; + puncPatterns.Add(pattern); + m_dataSource.SetParameterValue("PunctuationPatterns", puncPatterns.XmlString); + m_dataSource.SetParameterValue("PunctCheckLevel", "Intermediate"); + + PunctuationCheck check = new PunctuationCheck(m_dataSource); + m_dataSource.Text = "\\p wow\u201D\\p \u2019"; + + check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(2)); + CheckError(0, "wow\u201D", 3, "\u201D", "Unspecified use of punctuation pattern"); + CheckError(1, "\u2019", 0, "\u2019", "Unspecified use of punctuation pattern"); + } + #endregion + } +} diff --git a/Lib/src/ScrChecks/ScrChecksTests/QuotationCheckSilUnitTest.cs b/Lib/src/ScrChecks/ScrChecksTests/QuotationCheckSilUnitTest.cs new file mode 100644 index 0000000000..667878ac9b --- /dev/null +++ b/Lib/src/ScrChecks/ScrChecksTests/QuotationCheckSilUnitTest.cs @@ -0,0 +1,1013 @@ +// Copyright (c) 2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using System.Text; +using NUnit.Framework; +using SIL.FieldWorks.Common.FwUtils; + +namespace SILUBS.ScriptureChecks +{ + /// ---------------------------------------------------------------------------------------- + /// + /// TE-style Unit tests for the QuotationCheck class + /// + /// ---------------------------------------------------------------------------------------- + [TestFixture] + public class QuotationCheckSilUnitTest : ScrChecksTestBase + { + private TestChecksDataSource m_dataSource; + + // A subset of serialized style information for seven different classes of styles + // that require capitalization: + // sentence intial styles, proper nouns, tables, lists, special, headings and titles. + // Only "Paragraph" style has the UseType set. If the UseType is not set, it will + // be set to Other by default. + string stylesInfo = + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "
" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "<StyleInfo StyleName=\"Title Main\" StyleType=\"paragraph\" />" + + "
"; + + #region Initialization + /// ------------------------------------------------------------------------------------ + /// + /// Set up that happens before every test runs. + /// + /// ------------------------------------------------------------------------------------ + [SetUp] + public override void TestSetup() + { + base.TestSetup(); + m_dataSource = new TestChecksDataSource(); + m_dataSource.SetParameterValue("StylesInfo", stylesInfo); + m_check = new QuotationCheck(m_dataSource); + } + #endregion + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Quotation check when continuing through an empty paragraph followed by a + /// paragraph that only has a verse number in it and then some text. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void ContinueEmptyParaAfterEmptyVerse() + { + QuotationMarksList qMarks = QuotationMarksList.NewList(); + qMarks.RemoveLastLevel(); + qMarks[0].Opening = "<<"; + qMarks[0].Closing = ">>"; + qMarks.ContinuationMark = ParagraphContinuationMark.Opening; + qMarks.ContinuationType = ParagraphContinuationType.RequireAll; + m_dataSource.SetParameterValue("QuotationMarkInfo", qMarks.XmlString); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse one <>", TextType.Verse, + true, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + Assert.That(m_errors[0].Tts.FirstToken, Is.EqualTo(m_dataSource.m_tokens[2])); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Quotation check when the continuation quote occurs after a verse number, + /// but at the start of a paragraph. TE-8092. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void ContinueAfterVerseNumber() + { + QuotationMarksList qMarks = QuotationMarksList.NewList(); + qMarks.RemoveLastLevel(); + qMarks[0].Opening = "<<"; + qMarks[0].Closing = ">>"; + qMarks.ContinuationMark = ParagraphContinuationMark.Closing; + qMarks.ContinuationType = ParagraphContinuationType.RequireOutermost; + m_dataSource.SetParameterValue("QuotationMarkInfo", qMarks.XmlString); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse <>verse two>>", TextType.Verse, + false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Quotation check when the continuation quote occurs after a verse number + /// and a footnote ORC, but at the start of a paragraph. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void ContinueAfterVerseNumberAndFootnote() + { + QuotationMarksList qMarks = QuotationMarksList.NewList(); + qMarks.RemoveLastLevel(); + qMarks[0].Opening = "<<"; + qMarks[0].Closing = ">>"; + qMarks.ContinuationMark = ParagraphContinuationMark.Opening; + qMarks.ContinuationType = ParagraphContinuationType.RequireAll; + m_dataSource.SetParameterValue("QuotationMarkInfo", qMarks.XmlString); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("verse <>", TextType.Verse, + false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Quotation check when we have one level and have repeat closing quotation + /// with a present continuer. TE-8093 + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void ContinueRepeatClosingWhenContinuerPresent() + { + QuotationMarksList qMarks = QuotationMarksList.NewList(); + qMarks.RemoveLastLevel(); + qMarks[0].Opening = "<"; + qMarks[0].Closing = ">"; + qMarks.ContinuationMark = ParagraphContinuationMark.Closing; + qMarks.ContinuationType = ParagraphContinuationType.RequireOutermost; + m_dataSource.SetParameterValue("QuotationMarkInfo", qMarks.XmlString); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("Para1 Para2 two>", TextType.Verse, + true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("Para3 three", TextType.Verse, + true, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test the Quotation check when we have one level and have repeat closing quotation + /// with a missing continuation. TE-8093 + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void ContinueRepeatClosingWhenContinuerMissing() + { + QuotationMarksList qMarks = QuotationMarksList.NewList(); + qMarks.RemoveLastLevel(); + qMarks[0].Opening = "<"; + qMarks[0].Closing = ">"; + qMarks.ContinuationMark = ParagraphContinuationMark.Closing; + qMarks.ContinuationType = ParagraphContinuationType.RequireOutermost; + m_dataSource.SetParameterValue("QuotationMarkInfo", qMarks.XmlString); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("Para1 ", TextType.Verse, + true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("Para3 three", TextType.Verse, + true, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + Assert.That(m_errors[0].Tts.FirstToken, Is.EqualTo(m_dataSource.m_tokens[2])); + Assert.That(m_errors[0].Tts.Text, Is.EqualTo("Para2")); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Continues at quotation. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void ContinueAtQuotation() + { + QuotationMarksList qMarks = QuotationMarksList.NewList(); + qMarks[0].Opening = "<<"; + qMarks[0].Closing = ">>"; + qMarks[1].Opening = "<"; + qMarks[1].Closing = ">"; + qMarks.ContinuationMark = ParagraphContinuationMark.Opening; + qMarks.ContinuationType = ParagraphContinuationType.RequireAll; + m_dataSource.SetParameterValue("QuotationMarkInfo", qMarks.XmlString); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("< >>", TextType.Verse, + false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + Assert.That(m_errors[0].Tts.FirstToken, Is.EqualTo(m_dataSource.m_tokens[5])); + Assert.That(m_errors[0].Tts.Text, Is.EqualTo("qux")); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Continues at quotation after paragraph. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void ContinueAtQuotationAfterParagraph() + { + QuotationMarksList qMarks = QuotationMarksList.NewList(); + qMarks[0].Opening = "<<"; + qMarks[0].Closing = ">>"; + qMarks[1].Opening = "<"; + qMarks[1].Closing = ">"; + qMarks.ContinuationMark = ParagraphContinuationMark.Opening; + qMarks.ContinuationType = ParagraphContinuationType.RequireAll; + m_dataSource.SetParameterValue("QuotationMarkInfo", qMarks.XmlString); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("< >>", TextType.Verse, + false, false, "Line1")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Tests when the first level quotes have identical opening and closing marks + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Level1OpenAndClosingAreSameChar() + { + QuotationMarksList qMarks = QuotationMarksList.NewList(); + qMarks[0].Opening = "!"; + qMarks[0].Closing = "!"; + qMarks[1].Opening = "<"; + qMarks[1].Closing = ">"; + m_dataSource.SetParameterValue("QuotationMarkInfo", qMarks.XmlString); + + m_dataSource.m_tokens.Add(new DummyTextToken("Intro !Paragraph very! short.", + TextType.Other, true, false, "Intro Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken(string.Empty, TextType.Other, + true, false, "Section Head")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", TextType.ChapterNumber, + true, false, "Paragraph", "Chapter Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Level1_ContinuationFromLinesIntoProse is based on MAT 5:1-14 (NIV) but the marks differ + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Level1_ContinuationFromLinesIntoProse_Correct() + { + QuotationMarksList qMarks = QuotationMarksList.NewList(); + qMarks[0].Opening = "«"; // Left-pointing double angle quotation mark + qMarks[0].Closing = "»"; // Right-pointing double angle quotation mark + qMarks[1].Opening = "\u2039"; // Single left-pointing angle quotation mark + qMarks[1].Closing = "\u203A"; // Single right-pointing angle quotation mark + qMarks.ContinuationType = ParagraphContinuationType.RequireAll; + qMarks.ContinuationMark = ParagraphContinuationMark.Opening; + m_dataSource.SetParameterValue("QuotationMarkInfo", qMarks.XmlString); + + m_dataSource.m_tokens.Add(new DummyTextToken("5", TextType.ChapterNumber, + true, false, "Line1", "Chapter Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("3", TextType.VerseNumber, + false, false, "Line1", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("«Level one, ", TextType.Verse, + false, false, "Line1")); + m_dataSource.m_tokens.Add(new DummyTextToken("line two. ", TextType.Verse, + true, false, "Line2")); + m_dataSource.m_tokens.Add(new DummyTextToken("11", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("«Continue ", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("14", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("«Continue and close level one.»", TextType.Verse, + false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Level1_ContinuationInProseEvenSpanningSectionHead is based on MAT 5:11-13 (NIV) but + /// the marks differ + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Level1_ContinuationInProseEvenSpanningSectionHead_Correct() + { + QuotationMarksList qMarks = QuotationMarksList.NewList(); + qMarks[0].Opening = "«"; // Left-pointing double angle quotation mark + qMarks[0].Closing = "»"; // Right-pointing double angle quotation mark + qMarks[1].Opening = "\u2039"; // Single left-pointing angle quotation mark + qMarks[1].Closing = "\u203A"; // Single right-pointing angle quotation mark + qMarks.ContinuationType = ParagraphContinuationType.RequireAll; + qMarks.ContinuationMark = ParagraphContinuationMark.Opening; + m_dataSource.SetParameterValue("QuotationMarkInfo", qMarks.XmlString); + + m_dataSource.m_tokens.Add(new DummyTextToken("5", TextType.ChapterNumber, + true, false, "Paragraph", "Chapter Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("11", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("«Level one begins", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("12", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("really it continues. ", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("", TextType.Other, + true, false, "Section Head")); + m_dataSource.m_tokens.Add(new DummyTextToken("13", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("«Continue level one.»", TextType.Verse, + false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Level1_ContinuationIntoFourLines2 is based on MAT 2:5-7 (NIV) but the marks differ + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Level1_ContinuationIntoLines2_Correct() + { + QuotationMarksList qMarks = QuotationMarksList.NewList(); + qMarks[0].Opening = "«"; // Left-pointing double angle quotation mark + qMarks[0].Closing = "»"; // Right-pointing double angle quotation mark + qMarks[1].Opening = "\u2039"; // Single left-pointing angle quotation mark + qMarks[1].Closing = "\u203A"; // Single right-pointing angle quotation mark + qMarks.ContinuationType = ParagraphContinuationType.RequireAll; + qMarks.ContinuationMark = ParagraphContinuationMark.Opening; + m_dataSource.SetParameterValue("QuotationMarkInfo", qMarks.XmlString); + + m_dataSource.m_tokens.Add(new DummyTextToken("5", TextType.ChapterNumber, + true, false, "Paragraph", "Chapter Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("5", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("«Level one,» they replied, «level one:", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("6", TextType.VerseNumber, + true, false, "Line1", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("« \u2039Level two,", TextType.Verse, + false, false, "Line1")); + m_dataSource.m_tokens.Add(new DummyTextToken("line two, ", TextType.Verse, + true, false, "Line2")); + m_dataSource.m_tokens.Add(new DummyTextToken("line one", TextType.Verse, + true, false, "Line1")); + m_dataSource.m_tokens.Add(new DummyTextToken("both levels end.\u203A »", TextType.Verse, + true, false, "Line2")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Tests the case when there is only one continuer when there should be two (i.e. one + /// for each open level) and that continuer is closing when it should be opening. + /// See TE-8173. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Level2_IncorrectContinuation() + { + QuotationMarksList qMarks = QuotationMarksList.NewList(); + qMarks[0].Opening = "«"; // Left-pointing double angle quotation mark + qMarks[0].Closing = "»"; // Right-pointing double angle quotation mark + qMarks[1].Opening = "\u2039"; // Single left-pointing angle quotation mark + qMarks[1].Closing = "\u203A"; // Single right-pointing angle quotation mark + qMarks.ContinuationType = ParagraphContinuationType.RequireAll; + qMarks.ContinuationMark = ParagraphContinuationMark.Opening; + m_dataSource.SetParameterValue("QuotationMarkInfo", qMarks.XmlString); + + m_dataSource.m_tokens.Add(new DummyTextToken("«Level one, they replied, \u2039level two", + TextType.Verse, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("»Paragraph two\u203A, the end»", + TextType.Verse, true, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(3)); + Assert.That(m_errors[0].Tts.Text, Is.EqualTo("»")); + Assert.That(m_errors[1].Tts.Text, Is.EqualTo("\u203A")); + Assert.That(m_errors[2].Tts.Text, Is.EqualTo("»")); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Level2_ContinuationContainsLevel3_Recycled is based on EZK 27:1-12 (NIV) + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Level2_ContinuationContainsLevel3_Recycled_Correct() + { + QuotationMarksList qMarks = QuotationMarksList.NewList(); + qMarks[0].Opening = "«"; // Left-pointing double angle quotation mark + qMarks[0].Closing = "»"; // Right-pointing double angle quotation mark + qMarks[1].Opening = "\u2039"; // Single left-pointing angle quotation mark + qMarks[1].Closing = "\u203A"; // Single right-pointing angle quotation mark + qMarks.ContinuationType = ParagraphContinuationType.RequireAll; + qMarks.ContinuationMark = ParagraphContinuationMark.Opening; + m_dataSource.SetParameterValue("QuotationMarkInfo", qMarks.XmlString); + + m_dataSource.m_tokens.Add(new DummyTextToken("27", TextType.ChapterNumber, + true, false, "Paragraph", "Chapter Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u201CLevel one.", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("3", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("Say, \u2018Level two says: ", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("4", TextType.VerseNumber, + true, false, "Line1", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u201C \u2018Continuation says,", TextType.Verse, + false, false, "Line1")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u201CLevel three.\u201D ", TextType.Verse, + true, false, "Line2")); + m_dataSource.m_tokens.Add(new DummyTextToken(string.Empty, TextType.Other, + true, false, "Stanza Break")); + m_dataSource.m_tokens.Add(new DummyTextToken("10", TextType.VerseNumber, + true, false, "Line1", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u201C \u2018Continuation.", TextType.Verse, + false, false, "Line1")); + m_dataSource.m_tokens.Add(new DummyTextToken("12", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u201C \u2018Continuation into prose, and then into lines again.\u2019 \u201D", TextType.Verse, + false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Level2_ContinuationContainsLevel3_Distinct is based on EZK 27:1-12 (NIV) but + /// the marks differ + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Level2_ContinuationContainsLevel3_Distinct() + { + QuotationMarksList qMarks = QuotationMarksList.NewList(); + qMarks.EnsureLevelExists(3); + qMarks[0].Opening = "«"; // Left-pointing double angle quotation mark + qMarks[0].Closing = "»"; // Right-pointing double angle quotation mark + qMarks[1].Opening = "\u201C"; // Left double quotation mark + qMarks[1].Closing = "\u201D"; // Right double quotation mark + qMarks[2].Opening = "\u2018"; // Left single quotation mark + qMarks[2].Closing = "\u2019"; // Right single quotation mark + qMarks.ContinuationType = ParagraphContinuationType.RequireAll; + qMarks.ContinuationMark = ParagraphContinuationMark.Opening; + m_dataSource.SetParameterValue("QuotationMarkInfo", qMarks.XmlString); + + m_dataSource.m_tokens.Add(new DummyTextToken("27", TextType.ChapterNumber, + true, false, "Paragraph", "Chapter Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("2", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("«Level one.", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("3", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("Say, \u201CLevel two says:", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("4", TextType.VerseNumber, + true, false, "Line1", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("« \u201CContinuation says,", TextType.Verse, + false, false, "Line1")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u2018Level three.\u2019", TextType.Verse, + true, false, "Line2")); + m_dataSource.m_tokens.Add(new DummyTextToken(string.Empty, TextType.Other, + true, false, "Stanza Break")); + m_dataSource.m_tokens.Add(new DummyTextToken("10", TextType.VerseNumber, + true, false, "Line1", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("« \u201CContinuation.", TextType.Verse, + false, false, "Line1")); + m_dataSource.m_tokens.Add(new DummyTextToken("12", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("« \u201CContinuation into prose, and then into lines again.\u201D »", TextType.Verse, + false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Test when the 2nd level quotes have identical opening and closing marks + /// (TE-8104) + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Level2OpenAndClosingAreSameChar() + { + QuotationMarksList qMarks = QuotationMarksList.NewList(); + qMarks[0].Opening = "<"; + qMarks[0].Closing = ">"; + qMarks[1].Opening = "!"; + qMarks[1].Closing = "!"; + m_dataSource.SetParameterValue("QuotationMarkInfo", qMarks.XmlString); + + m_dataSource.m_tokens.Add(new DummyTextToken("Intro + /// Level3_Distinct is based on LUK 12:16-21 (NIV) but the marks differ + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Level3_Distinct_Continuation_Correct() + { + QuotationMarksList qMarks = QuotationMarksList.NewList(); + qMarks.EnsureLevelExists(3); + qMarks[0].Opening = "«"; // Left-pointing double angle quotation mark + qMarks[0].Closing = "»"; // Right-pointing double angle quotation mark + qMarks[1].Opening = "\u201C"; // Left double quotation mark + qMarks[1].Closing = "\u201D"; // Right double quotation mark + qMarks[2].Opening = "\u2018"; // Left single quotation mark + qMarks[2].Closing = "\u2019"; // Right single quotation mark + qMarks.ContinuationType = ParagraphContinuationType.RequireAll; + qMarks.ContinuationMark = ParagraphContinuationMark.Opening; + m_dataSource.SetParameterValue("QuotationMarkInfo", qMarks.XmlString); + + m_dataSource.m_tokens.Add(new DummyTextToken("12", TextType.ChapterNumber, + true, false, "Paragraph", "Chapter Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("16", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("He told: «Level one.", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("17", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("He thought, \u201Clevel two.\u201D", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("18", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("«Continuation \u201CTwo.", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("19", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("To myself, \u2018Level three.\u2019 \u201D", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("20", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("«Continuation \u201CTwo.\u201D", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("21", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("«Continuation, and then close level one.»", TextType.Verse, + false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Level3_Distinct_Continuation_UnmatchedOpeningMark() + { + QuotationMarksList qMarks = QuotationMarksList.NewList(); + qMarks.EnsureLevelExists(3); + qMarks[0].Opening = "«"; // Left-pointing double angle quotation mark + qMarks[0].Closing = "»"; // Right-pointing double angle quotation mark + qMarks[1].Opening = "\u201C"; // Left double quotation mark + qMarks[1].Closing = "\u201D"; // Right double quotation mark + qMarks[2].Opening = "\u2018"; // Left single quotation mark + qMarks[2].Closing = "\u2019"; // Right single quotation mark + qMarks.ContinuationType = ParagraphContinuationType.RequireAll; + qMarks.ContinuationMark = ParagraphContinuationMark.Opening; + m_dataSource.SetParameterValue("QuotationMarkInfo", qMarks.XmlString); + + m_dataSource.m_tokens.Add(new DummyTextToken("12", TextType.ChapterNumber, + true, false, "Paragraph", "Chapter Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("16", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("He told: «Level one.", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("17", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("He thought, \u201Clevel two.\u201D", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("18", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("«Continuation \u201CTwo.", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("19", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("To myself, \u2018Level three.\u201D", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("20", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("«Continuation \u201CTwo.\u201D", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("21", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("«Continuation, and then close level one.»", TextType.Verse, + false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + Assert.That(m_errors[0].Tts.FirstToken, Is.EqualTo(m_dataSource.m_tokens[8])); + Assert.That(m_errors[0].Tts.Text, Is.EqualTo("\u2018")); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Level3_Distinct_Continuation_UnmatchedClosingMark() + { + QuotationMarksList qMarks = QuotationMarksList.NewList(); + qMarks.EnsureLevelExists(3); + qMarks[0].Opening = "«"; // Left-pointing double angle quotation mark + qMarks[0].Closing = "»"; // Right-pointing double angle quotation mark + qMarks[1].Opening = "\u201C"; // Left double quotation mark + qMarks[1].Closing = "\u201D"; // Right double quotation mark + qMarks[2].Opening = "\u2018"; // Left single quotation mark + qMarks[2].Closing = "\u2019"; // Right single quotation mark + qMarks.ContinuationType = ParagraphContinuationType.RequireAll; + qMarks.ContinuationMark = ParagraphContinuationMark.Opening; + m_dataSource.SetParameterValue("QuotationMarkInfo", qMarks.XmlString); + + m_dataSource.m_tokens.Add(new DummyTextToken("12", TextType.ChapterNumber, + true, false, "Paragraph", "Chapter Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("16", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("He told: «Level one.", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("17", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("He thought, \u201Clevel two.\u201D", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("18", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("«Continuation \u201CTwo.", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("19", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("To myself, Level three.\u2019 \u201D", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("20", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("«Continuation \u201CTwo.\u201D", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("21", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("«Continuation, and then close level one.»", TextType.Verse, + false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + Assert.That(m_errors[0].Tts.FirstToken, Is.EqualTo(m_dataSource.m_tokens[8])); + Assert.That(m_errors[0].Tts.Text, Is.EqualTo("\u2019")); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Level3_Recycled is based on LUK 12:16-21 (NIV) + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Level3_Recycled_Continuation_Correct() + { + QuotationMarksList qMarks = QuotationMarksList.NewList(); + qMarks.EnsureLevelExists(3); + qMarks[0].Opening = "\u201C"; // Left double quotation mark + qMarks[0].Closing = "\u201D"; // Right double quotation mark + qMarks[1].Opening = "\u2018"; // Left single quotation mark + qMarks[1].Closing = "\u2019"; // Right single quotation mark + qMarks[2].Opening = "\u201C"; // Left double quotation mark + qMarks[2].Closing = "\u201D"; // Right double quotation mark + qMarks.ContinuationType = ParagraphContinuationType.RequireAll; + qMarks.ContinuationMark = ParagraphContinuationMark.Opening; + m_dataSource.SetParameterValue("QuotationMarkInfo", qMarks.XmlString); + + m_dataSource.m_tokens.Add(new DummyTextToken("12", TextType.ChapterNumber, + true, false, "Paragraph", "Chapter Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("16", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("He told: \u201CLevel one.", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("17", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("He thought, \u2018Level two.\u2019", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("18", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u201CContinuation \u2018Two.", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("19", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("To myself, \u201Clevel three.\u201D \u2019", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("20", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u201CContinuation \u2018Two.\u2019", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("21", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u201CContinuation, and then close level one.\u201D", TextType.Verse, + false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Level3_Recycled_Continuation_UnmatchedOpeningMark() + { + QuotationMarksList qMarks = QuotationMarksList.NewList(); + qMarks.EnsureLevelExists(3); + qMarks[0].Opening = "\u201C"; // Left double quotation mark + qMarks[0].Closing = "\u201D"; // Right double quotation mark + qMarks[1].Opening = "\u2018"; // Left single quotation mark + qMarks[1].Closing = "\u2019"; // Right single quotation mark + qMarks[2].Opening = "\u201C"; // Left double quotation mark + qMarks[2].Closing = "\u201D"; // Right double quotation mark + qMarks.ContinuationType = ParagraphContinuationType.RequireAll; + qMarks.ContinuationMark = ParagraphContinuationMark.Opening; + m_dataSource.SetParameterValue("QuotationMarkInfo", qMarks.XmlString); + + m_dataSource.m_tokens.Add(new DummyTextToken("12", TextType.ChapterNumber, + true, false, "Paragraph", "Chapter Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("16", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("He told: \u201CLevel one.", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("17", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("He thought, \u2018Level two.\u2019", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("18", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u201CContinuation \u2018Two.", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("19", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("To myself, \u201Clevel three.\u2019", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("20", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u201CContinuation \u2018Two.\u2019", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("21", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u201CContinuation, and then close level one.\u201D", TextType.Verse, + false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + Assert.That(m_errors[0].Tts.FirstToken, Is.EqualTo(m_dataSource.m_tokens[8])); + Assert.That(m_errors[0].Tts.Text, Is.EqualTo("\u201C")); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Level3_Recycled_UnmatchedOpeningMark() + { + QuotationMarksList qMarks = QuotationMarksList.NewList(); + qMarks.EnsureLevelExists(3); + qMarks[0].Opening = "\u201C"; // Left double quotation mark + qMarks[0].Closing = "\u201D"; // Right double quotation mark + qMarks[1].Opening = "\u2018"; // Left single quotation mark + qMarks[1].Closing = "\u2019"; // Right single quotation mark + qMarks[2].Opening = "\u201C"; // Left double quotation mark + qMarks[2].Closing = "\u201D"; // Right double quotation mark + qMarks.ContinuationType = ParagraphContinuationType.None; + qMarks.ContinuationMark = ParagraphContinuationMark.None; + m_dataSource.SetParameterValue("QuotationMarkInfo", qMarks.XmlString); + + m_dataSource.m_tokens.Add(new DummyTextToken("12", TextType.ChapterNumber, + true, false, "Paragraph", "Chapter Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("16", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("He told: \u201CLevel one.", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("17", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("He thought, \u2018Level two.\u2019", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("18", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u2018Two.", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("19", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("To myself, \u201Clevel three.\u2019", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("20", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u2018Two.\u2019", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("21", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("Close level one.\u201D", TextType.Verse, + false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + Assert.That(m_errors[0].Tts.FirstToken, Is.EqualTo(m_dataSource.m_tokens[8])); + Assert.That(m_errors[0].Tts.Text, Is.EqualTo("\u201C")); + } + + /// ------------------------------------------------------------------------------------ + /// + /// Level4_Recycled is based on JER 29:24-28 (NASB) + /// Inserted \p in verse 28 to account for continuation, but that does not seem + /// quite right, because NASB has verse structure, instead of paragraph structure. + /// The main paragraphs are at verses 24 and 29. + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void Level4_Recycled_Continuation_Correct() + { + QuotationMarksList qMarks = QuotationMarksList.NewList(); + qMarks.EnsureLevelExists(4); + qMarks[0].Opening = "\u201C"; // Left double quotation mark + qMarks[0].Closing = "\u201D"; // Right double quotation mark + qMarks[1].Opening = "\u2018"; // Left single quotation mark + qMarks[1].Closing = "\u2019"; // Right single quotation mark + qMarks[2].Opening = "\u201C"; // Left double quotation mark + qMarks[2].Closing = "\u201D"; // Right double quotation mark + qMarks[3].Opening = "\u2018"; // Left single quotation mark + qMarks[3].Closing = "\u2019"; // Right single quotation mark + qMarks.ContinuationType = ParagraphContinuationType.RequireInnermost; + qMarks.ContinuationMark = ParagraphContinuationMark.Opening; + m_dataSource.SetParameterValue("QuotationMarkInfo", qMarks.XmlString); + + m_dataSource.m_tokens.Add(new DummyTextToken("29", TextType.ChapterNumber, + true, false, "Paragraph", "Chapter Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("24", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("To Shemiah speak, saying,", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("25", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u201Clevel one, \u2018Level two,", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("26", TextType.VerseNumber, + false, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u201Clevel three", TextType.Verse, + false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("28", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("\u201CHe has sent saying, \u2018Level four.\u2019\u201D\u2019\u201D", TextType.Verse, + false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// + /// + /// + /// ------------------------------------------------------------------------------------ + [Test] + public void VerboseOptionContinuers() + { + QuotationMarksList qMarks = QuotationMarksList.NewList(); + qMarks[0].Opening = "<<"; + qMarks[0].Closing = ">>"; + qMarks[1].Opening = "<"; + qMarks[1].Closing = ">"; + qMarks.ContinuationType = ParagraphContinuationType.RequireAll; + qMarks.ContinuationMark = ParagraphContinuationMark.Opening; + m_dataSource.SetParameterValue("QuotationMarkInfo", qMarks.XmlString); + m_dataSource.SetParameterValue("VerboseQuotes", "Yes"); + + m_dataSource.m_tokens.Add(new DummyTextToken("1", TextType.VerseNumber, + true, false, "Paragraph", "Verse Number")); + m_dataSource.m_tokens.Add(new DummyTextToken("< >>", TextType.Verse, + false, false, "Line1")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(6)); + Assert.That(m_errors[0].Tts.FirstToken, Is.EqualTo(m_dataSource.m_tokens[1])); + Assert.That(m_errors[0].Tts.Text, Is.EqualTo("<<")); + Assert.That(m_errors[1].Tts.FirstToken, Is.EqualTo(m_dataSource.m_tokens[1])); + Assert.That(m_errors[1].Tts.Text, Is.EqualTo("<")); + Assert.That(m_errors[2].Tts.FirstToken, Is.EqualTo(m_dataSource.m_tokens[3])); + Assert.That(m_errors[2].Tts.Text, Is.EqualTo("<<")); + Assert.That(m_errors[3].Tts.FirstToken, Is.EqualTo(m_dataSource.m_tokens[3])); + Assert.That(m_errors[3].Tts.Text, Is.EqualTo("<")); + Assert.That(m_errors[4].Tts.FirstToken, Is.EqualTo(m_dataSource.m_tokens[5])); + Assert.That(m_errors[4].Tts.Text, Is.EqualTo(">")); + Assert.That(m_errors[5].Tts.FirstToken, Is.EqualTo(m_dataSource.m_tokens[5])); + Assert.That(m_errors[5].Tts.Text, Is.EqualTo(">>")); + } + } +} diff --git a/Lib/src/ScrChecks/ScrChecksTests/QuotationCheckUnitTest.cs b/Lib/src/ScrChecks/ScrChecksTests/QuotationCheckUnitTest.cs new file mode 100644 index 0000000000..61351a4dfe --- /dev/null +++ b/Lib/src/ScrChecks/ScrChecksTests/QuotationCheckUnitTest.cs @@ -0,0 +1,1301 @@ +// Copyright (c) 2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using NUnit.Framework; +using System.Diagnostics; +using SIL.FieldWorks.Common.FwUtils; +using SILUBS.ScriptureChecks; + +namespace SILUBS.ScriptureChecks +{ + /// ---------------------------------------------------------------------------------------- + /// + /// Unit tests for the QuotationCheck class + /// + /// ---------------------------------------------------------------------------------------- + [TestFixture] + public class QuotationCheckUnitTest + { + public const string kUnmatchedOpeningMark = "Unmatched opening mark: level {0}"; + public const string kUnmatchedClosingMark = "Unmatched closing mark: level {0}"; + public const string kMissingContinuationMark = "Missing continuation mark: level {0}"; + public const string kMissingContinuationMarks = "Missing continuation marks: levels 1-{0}"; + public const string kUnexpectedOpeningMark = "Unexpected opening mark: level {0}"; + + public const string kVerboseQuoteOpened = "Level {0} quote opened"; + public const string kVerboseQuoteClosed = "Level {0} quote closed"; + public const string kVerboseQuoteContinuer = "Level {0} quote continuer"; + + UnitTestChecksDataSource m_source; + + private QuotationMarksList m_qmarks; + + #region Test setup + [OneTimeSetUp] + public void TestSetup() + { + m_source = new UnitTestChecksDataSource(); + + string stylesInfo = + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "" + + "</StylePropsInfo>"; + + m_source.SetParameterValue("StylesInfo", stylesInfo); + } + + [SetUp] + public void RunBeforeEachTest() + { + m_qmarks = QuotationMarksList.NewList(); + m_qmarks.QMarksList[0].Opening = "<<"; + m_qmarks.QMarksList[0].Closing = ">>"; + m_qmarks.QMarksList[1].Opening = "<"; + m_qmarks.QMarksList[1].Closing = ">"; + m_qmarks.EnsureLevelExists(5); + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + } + #endregion + + #region Helper methods + public static string FormatMessage(string format, int level) + { + return string.Format(format, level); + } + + void Test(string[,] result, string text) + { + m_source.Text = text; + + QuotationCheck check = new QuotationCheck(m_source); + List<TextTokenSubstring> tts = + check.GetReferences(m_source.TextTokens(), ""); + + for (int i = 0; i < tts.Count; i++) + { + Console.WriteLine(tts[i].Text); + Console.WriteLine(tts[i].Message); + Debug.WriteLine(tts[i].Text); + Debug.WriteLine(tts[i].Message); + } + + Assert.That(tts.Count, Is.EqualTo(result.GetUpperBound(0) + 1), "A different number of results was returned than what was expected."); + + for (int i = 0; i <= result.GetUpperBound(0); ++i) + { + // Verify the Reference, Message, and Details columns of the results pane. + // Verifies empty string, but not null, for the reference (for original tests). + if (result.GetUpperBound(1) == 2) + Assert.That(tts[i].FirstToken.ScrRefString, Is.EqualTo(result[i, 2]), "Reference number: " + i); + + Assert.That(tts[i].Text, Is.EqualTo(result[i, 0]), "Text number: " + i.ToString()); + Assert.That(tts[i].Message, Is.EqualTo(result[i, 1]), "Message number: " + i.ToString()); + } + } + + #endregion + + #region Top-level quotes + [Test] + public void TopLevelNoCloser() + { + m_qmarks.QMarksList[0].Closing = string.Empty; + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + Test(new string[0,0], @"\p \v 1 <<foo \v 2 <<foo"); + } + + [Test] + public void TopLevel() + { + Test(new string[,] { + { ">>", FormatMessage(kUnmatchedClosingMark, 1) }, + { "<<", FormatMessage(kUnmatchedOpeningMark, 1) }, + }, @"\p \v 1 <<foo bar>> qux>> <<quux"); + } + + [Test] + public void TopLevelMissingClosing() + { + Test(new string[,] { + { "<<", FormatMessage(kUnmatchedOpeningMark, 1) }, + }, @"\p \v 1 <<foo"); + } + + [Test] + public void TopLevelMissingOpening() + { + Test(new string[,] { + { ">>", FormatMessage(kUnmatchedClosingMark, 1) }, + }, @"\p \v 1 foo>>"); + } + + [Test] + public void OtherQuotesAndParameters() + { + m_qmarks.QMarksList[0].Opening = "\u201C"; + m_qmarks.QMarksList[0].Closing = "\u201D"; + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + Test(new string[,] { + { "\u201C", FormatMessage(kUnmatchedOpeningMark, 1) }, + }, "\\p \\v 1 \u201Cfoo"); + } + #endregion + + #region Inner level quotes + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Test this scenario: + /// When {< >} are inner quotes and not followed by anything... The inner open is used + /// and not followed by other quotes. + /// </summary> + /// ------------------------------------------------------------------------------------ + [Test] + public void InnerLevel_ClosingAndTopLevelMissing() + { + Test(new string[,] { + { "<", FormatMessage(kUnexpectedOpeningMark, 2) }, + { "<", FormatMessage(kUnmatchedOpeningMark, 2) }, + }, @"\p \v 1 <foo"); + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Test this scenario: + /// When {< >} are inner quotes... The inner open is used and followed by valid outer quotes. + /// </summary> + /// ------------------------------------------------------------------------------------ + [Test] + public void InnerLevel_ClosingAndTopLevelAfter() + { + Test(new string[,] { + { "<", FormatMessage(kUnexpectedOpeningMark, 2) }, + { "<", FormatMessage(kUnmatchedOpeningMark, 2) }, + }, @"\p \v 1 <foo <<foofoo>>"); + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Test this scenario: + /// When {< >} are inner quotes... The inner open is used and followed by valid outer + /// left and right double turned quotes. + /// </summary> + /// ------------------------------------------------------------------------------------ + [Test] + public void InnerLevel_ClosingAndTopLevelAfter2() + { + m_qmarks.QMarksList[0].Opening = "\u201C"; + m_qmarks.QMarksList[0].Closing = "\u201D"; + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + Test(new string[,] { + { "<", FormatMessage(kUnexpectedOpeningMark, 2) }, + { "<", FormatMessage(kUnmatchedOpeningMark, 2) } + }, @"\p \v 1 <foo \u201Cfoofoo\u201D"); + } + + [Test] + public void Inner() + { + Test(new string[0,0], + @"\p \v 1 <<foo <bar> baz>>"); + } + + [Test] + public void InnerMissingClosing() + { + Test(new string[,] { + { "<", FormatMessage(kUnmatchedOpeningMark, 2) }, + }, @"\p \v 1 <<foo <bar baz>>"); + } + + [Test] + public void InnerMissingOpening() + { + Test(new string[,] { + { ">", FormatMessage(kUnmatchedClosingMark, 2) }, + }, @"\p \v 1 <<foo bar> baz>>"); + } + #endregion + + #region Third level quotes - repeated level 1 as level 3 + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Thirds the level embedding. + /// </summary> + /// ------------------------------------------------------------------------------------ + [Test] + public void ThirdLevelEmbedding() + { + Test(new string[0,0], + @"\p \v 1 <<foo <bar <<baz>> qux> quux>>"); + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Inners the inner missing closing. + /// </summary> + /// ------------------------------------------------------------------------------------ + [Test] + public void InnerInnerMissingClosing() + { + Test(new string[,] { + { "<<", FormatMessage(kUnmatchedOpeningMark, 3) }, + }, @"\p \v 1 <<foo <bar <<baz qux> quux>>"); + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Inners the inner missing opening. + /// </summary> + /// ------------------------------------------------------------------------------------ + [Test] + public void InnerInnerMissingOpening() + { + m_qmarks.Clear(); + m_qmarks.EnsureLevelExists(3); + m_qmarks[0].Opening = "<<<"; + m_qmarks[0].Closing = ">>>"; + m_qmarks[1].Opening = "<<"; + m_qmarks[1].Closing = ">>"; + m_qmarks[2].Opening = "<"; + m_qmarks[2].Closing = ">"; + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + + Test(new string[,] { + { ">", FormatMessage(kUnmatchedClosingMark, 3) }, + }, @"\p \v 1 <<<foo <<bar baz> qux>> quux>>>"); + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Others the quotes. + /// </summary> + /// ------------------------------------------------------------------------------------ + [Test] + public void OtherQuotes() + { + Test(new string[0, 0], @"<<foo <bar <<baz>> qux> quux>>"); + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Threes the distinct levels. + /// </summary> + /// ------------------------------------------------------------------------------------ + [Test] + public void ThreeDistinctLevels() + { + m_qmarks.AddLevel(); + m_qmarks.QMarksList[2].Opening = "["; + m_qmarks.QMarksList[2].Closing = "]"; + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + Test(new string[0, 0], @"<<foo <bar [baz] qux> quux>>"); + } + + #endregion + + #region Quote continuation + /// ------------------------------------------------------------------------------------ + /// <summary> + /// + /// </summary> + /// ------------------------------------------------------------------------------------ + [Test] + public void ContinueNoMarkAllLevels() + { + m_qmarks.ContinuationType = ParagraphContinuationType.None; + m_qmarks.ContinuationMark = ParagraphContinuationMark.None; + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + + Test(new string[0, 0], + @"\p <<foo foos <bar bars \q1 baz bazs\p qux quxs> >>"); + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// + /// </summary> + /// ------------------------------------------------------------------------------------ + [Test] + public void ContinueRepeatInnerMostOpening() + { + m_qmarks.ContinuationType = ParagraphContinuationType.RequireInnermost; + m_qmarks.ContinuationMark = ParagraphContinuationMark.Opening; + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + + Test(new string[0, 0], + @"\p <<foo foos <bar bars \q1 <baz bazs qux quxs> >>"); + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// + /// </summary> + /// ------------------------------------------------------------------------------------ + [Test] + public void ContinueRepeatAllOpening() + { + m_qmarks.ContinuationType = ParagraphContinuationType.RequireAll; + m_qmarks.ContinuationMark = ParagraphContinuationMark.Opening; + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + + Test(new string[0, 0], + @"\p <<foo foos <bar bars \q1 << <baz bazs qux quxs> >>"); + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// + /// </summary> + /// ------------------------------------------------------------------------------------ + [Test] + public void ContinueRepeatInnerMostClosing() + { + m_qmarks.ContinuationType = ParagraphContinuationType.RequireInnermost; + m_qmarks.ContinuationMark = ParagraphContinuationMark.Closing; + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + + Test(new string[0, 0], + @"\p <<foo foos <bar bars \q1 >baz bazs qux quxs> >>"); + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// + /// </summary> + /// ------------------------------------------------------------------------------------ + [Test] + public void ContinueRepeatAllClosing() + { + m_qmarks.ContinuationType = ParagraphContinuationType.RequireAll; + m_qmarks.ContinuationMark = ParagraphContinuationMark.Closing; + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + + Test(new string[0, 0], + @"\p <<foo foos <bar bars \q1 >> >baz bazs qux quxs> >>"); + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// + /// </summary> + /// ------------------------------------------------------------------------------------ + [Test] + public void ContinueRepeatAllClosing_3Levels() + { + m_qmarks.EnsureLevelExists(3); + m_qmarks.ContinuationType = ParagraphContinuationType.RequireAll; + m_qmarks.ContinuationMark = ParagraphContinuationMark.Closing; + m_qmarks[2].Opening = "["; + m_qmarks[2].Closing = "]"; + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + + Test(new string[0, 0], + @"\p <<foo foos <bar [bars \q1 >> > ]baz bazs] qux quxs> >>"); + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// + /// </summary> + /// ------------------------------------------------------------------------------------ + [Test] + public void ContinueRepeatInnerMostOpening_3Levels() + { + m_qmarks.EnsureLevelExists(3); + m_qmarks[2].Opening = "["; + m_qmarks[2].Closing = "]"; + m_qmarks.ContinuationType = ParagraphContinuationType.RequireInnermost; + m_qmarks.ContinuationMark = ParagraphContinuationMark.Opening; + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + + Test(new string[0, 0], + @"\p <<foo foos <bar bars \q1 <baz [bazs qux] quxs> >>"); + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// + /// </summary> + /// ------------------------------------------------------------------------------------ + [Test] + public void ContinueRepeatInnerMostOpeningMissing() + { + m_qmarks.EnsureLevelExists(3); + m_qmarks[2].Opening = "["; + m_qmarks[2].Closing = "]"; + m_qmarks.ContinuationType = ParagraphContinuationType.RequireInnermost; + m_qmarks.ContinuationMark = ParagraphContinuationMark.Opening; + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + + Test(new string[,] { + { "baz", FormatMessage(kMissingContinuationMark, 2) }, + }, @"\p <<foo foos <bar bars \q1 baz [bazs qux] quxs> >>"); + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// + /// </summary> + /// ------------------------------------------------------------------------------------ + [Test] + public void ContinueRepeatInnerMostClosingMissing() + { + m_qmarks.EnsureLevelExists(3); + m_qmarks[2].Opening = "["; + m_qmarks[2].Closing = "]"; + m_qmarks.ContinuationType = ParagraphContinuationType.RequireInnermost; + m_qmarks.ContinuationMark = ParagraphContinuationMark.Closing; + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + + Test(new string[,] { + { "baz", FormatMessage(kMissingContinuationMark, 2) }, + }, @"\p <<foo foos <bar bars \q1 baz [bazs qux] quxs> >>"); + } + + #endregion + + #region Deeply Nested Quotes + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Deeplies the nested quotes. + /// </summary> + /// ------------------------------------------------------------------------------------ + [Test] + public void DeeplyNestedQuotes() + { + m_qmarks.EnsureLevelExists(5); + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + + Test(new string[0, 0], @"\p \v 1 << < <<foo < <<bar baz qux>> > quux>> > >>"); + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Deeplies the nested quotes missing closer. + /// </summary> + /// ------------------------------------------------------------------------------------ + [Test] + public void DeeplyNestedQuotesMissingCloser() + { + m_qmarks.EnsureLevelExists(5); + m_qmarks.ContinuationType = ParagraphContinuationType.RequireAll; + m_qmarks.ContinuationMark = ParagraphContinuationMark.Opening; + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + + Test(new string[,] { + { "<<", FormatMessage(kUnmatchedOpeningMark, 5) }, + }, @"\p \v 1 << < <<foo < <<bar baz qux > quux>> > >>"); + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Deeplies the nested quotes no nesting. + /// </summary> + /// ------------------------------------------------------------------------------------ + [Test] + public void ToManyLevels() + { + m_qmarks = QuotationMarksList.NewList(); + m_qmarks.QMarksList[0].Opening = "<<"; + m_qmarks.QMarksList[0].Closing = ">>"; + m_qmarks.QMarksList[1].Opening = "<"; + m_qmarks.QMarksList[1].Closing = ">"; + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + + Test(new string[,] { + { "<", FormatMessage(kUnmatchedOpeningMark, 2) }, + { "<<", FormatMessage(kUnmatchedOpeningMark, 1) }, + { ">", FormatMessage(kUnmatchedClosingMark, 2) }, + { ">>", FormatMessage(kUnmatchedClosingMark, 1) }, + }, @"\p \v 1 << <foo <<bar baz>> qux> quux>>"); + + Test(new string[,] { + { "<", FormatMessage(kUnmatchedOpeningMark, 2) }, + { ">", FormatMessage(kUnmatchedClosingMark, 2) }, + }, @"\p \v 1 << <foo <bar baz> qux> quux>>"); + } + + #endregion + + #region Tests for verbose option + [Test] + public void VerboseOptionNormal() + { + m_source.SetParameterValue("VerboseQuotes", "Yes"); + Test(new string[,] { + { "<<", FormatMessage(kVerboseQuoteOpened, 1) }, + { "<", FormatMessage(kVerboseQuoteOpened, 2) }, + { ">", FormatMessage(kVerboseQuoteClosed, 2) }, + { ">>", FormatMessage(kVerboseQuoteClosed, 1) }, + }, @"\p \v 1 <<foo <foo> >>"); + } + #endregion + + // The tests verify the inconsistencies found in various combinations of: + // Correct or incorrect quotation marks + // Appropriate or inappropriate writing system properties + + #region New test setup of quotation marks for levels + + void SetupEnglish1() + { + m_qmarks = QuotationMarksList.NewList(); + m_qmarks.RemoveLastLevel(); + m_qmarks.QMarksList[0].Opening = "\u201C"; // Left double quotation mark + m_qmarks.QMarksList[0].Closing = "\u201D"; // Right double quotation mark + m_qmarks.ContinuationMark = ParagraphContinuationMark.None; + m_qmarks.ContinuationType = ParagraphContinuationType.None; + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + } + + void SetupEnglish2() + { + m_qmarks = QuotationMarksList.NewList(); + m_qmarks.EnsureLevelExists(2); + m_qmarks.QMarksList[0].Opening = "\u201C"; // Left double quotation mark + m_qmarks.QMarksList[0].Closing = "\u201D"; // Right double quotation mark + m_qmarks.QMarksList[1].Opening = "\u2018"; // Left single quotation mark + m_qmarks.QMarksList[1].Closing = "\u2019"; // Right single quotation mark + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + } + + void SetupEnglish3() // TO DO: Is there a way to limit it? + { + m_qmarks = QuotationMarksList.NewList(); + m_qmarks.EnsureLevelExists(3); + m_qmarks.QMarksList[0].Opening = "\u201C"; // Left double quotation mark + m_qmarks.QMarksList[0].Closing = "\u201D"; // Right double quotation mark + m_qmarks.QMarksList[1].Opening = "\u2018"; // Left single quotation mark + m_qmarks.QMarksList[1].Closing = "\u2019"; // Right single quotation mark + m_qmarks.QMarksList[2].Opening = "\u201C"; // Left double quotation mark + m_qmarks.QMarksList[2].Closing = "\u201D"; // Right double quotation mark + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + } + + void SetupEnglish4() + { + m_qmarks = QuotationMarksList.NewList(); + m_qmarks.EnsureLevelExists(4); + m_qmarks.QMarksList[0].Opening = "\u201C"; // Left double quotation mark + m_qmarks.QMarksList[0].Closing = "\u201D"; // Right double quotation mark + m_qmarks.QMarksList[1].Opening = "\u2018"; // Left single quotation mark + m_qmarks.QMarksList[1].Closing = "\u2019"; // Right single quotation mark + m_qmarks.QMarksList[2].Opening = "\u201C"; // Left double quotation mark + m_qmarks.QMarksList[2].Closing = "\u201D"; // Right double quotation mark + m_qmarks.QMarksList[3].Opening = "\u2018"; // Left single quotation mark + m_qmarks.QMarksList[3].Closing = "\u2019"; // Right single quotation mark + m_qmarks.ContinuationType = ParagraphContinuationType.None; + m_qmarks.ContinuationMark = ParagraphContinuationMark.None; + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + } + + void SetupEuropean1() + { + m_qmarks.RemoveLastLevel(); + m_qmarks.QMarksList[0].Opening = "«"; // Left-pointing double angle quotation mark + m_qmarks.QMarksList[0].Closing = "»"; // Right-pointing double angle quotation mark + m_qmarks.ContinuationType = ParagraphContinuationType.None; + m_qmarks.ContinuationMark = ParagraphContinuationMark.None; + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + } + + void SetupPortuguese2() + { + m_qmarks.EnsureLevelExists(2); + m_qmarks.QMarksList[0].Opening = "«"; // Left-pointing double angle quotation mark + m_qmarks.QMarksList[0].Closing = "»"; // Right-pointing double angle quotation mark + m_qmarks.QMarksList[1].Opening = "«"; // Left-pointing double angle quotation mark + m_qmarks.QMarksList[1].Closing = "»"; // Right-pointing double angle quotation mark + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + } + + void SetupPortuguese3() + { + // A Boa Nova, Good News for Modern Man in Portuguese: + // * Uses the same marks for levels one, two, and three (which is rare). + // * Instead of continuing marks, closes, and then reopens quotations + // at section heads (for example, in MAT 5-7). + m_qmarks.EnsureLevelExists(3); + m_qmarks.QMarksList[0].Opening = "«"; // Left-pointing double angle quotation mark + m_qmarks.QMarksList[0].Closing = "»"; // Right-pointing double angle quotation mark + m_qmarks.QMarksList[1].Opening = "«"; // Left-pointing double angle quotation mark + m_qmarks.QMarksList[1].Closing = "»"; // Right-pointing double angle quotation mark + m_qmarks.QMarksList[2].Opening = "«"; // Left-pointing double angle quotation mark + m_qmarks.QMarksList[2].Closing = "»"; // Right-pointing double angle quotation mark + m_qmarks.ContinuationType = ParagraphContinuationType.None; + m_qmarks.ContinuationMark = ParagraphContinuationMark.None; + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + } + + void SetupSpanish2() + { + // Spanish has a distinct mark for level 3. + m_qmarks.EnsureLevelExists(2); + m_qmarks.QMarksList[0].Opening = "«"; // Left-pointing double angle quotation mark + m_qmarks.QMarksList[0].Closing = "»"; // Right-pointing double angle quotation mark + m_qmarks.QMarksList[1].Opening = "\u201C"; // Left double quotation mark + m_qmarks.QMarksList[1].Closing = "\u201D"; // Right double quotation mark + m_qmarks.ContinuationType = ParagraphContinuationType.RequireInnermost; + m_qmarks.ContinuationMark = ParagraphContinuationMark.Opening; + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + //m_source.SetParameterValue("ContinueQuotes", "Yes"); + //m_source.SetParameterValue("ContinueInnerQuotes", "Yes"); + //m_source.SetParameterValue("NestingAlternates", "No"); + } + + void SetupSpanish2_QuotationDash() + { + // Spanish has a distinct mark for level 3. + m_qmarks.EnsureLevelExists(2); + m_qmarks.QMarksList[0].Opening = "\u2014"; // Em dash + m_qmarks.QMarksList[0].Closing = string.Empty; + m_qmarks.QMarksList[1].Opening = "\u201C"; // Left double quotation mark + m_qmarks.QMarksList[1].Closing = "\u201D"; // Right double quotation mark + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + } + + void SetupSpanish3() + { + // Spanish has a distinct mark for level 3. + m_qmarks.EnsureLevelExists(3); + m_qmarks.QMarksList[0].Opening = "«"; // Left-pointing double angle quotation mark + m_qmarks.QMarksList[0].Closing = "»"; // Right-pointing double angle quotation mark + m_qmarks.QMarksList[1].Opening = "\u201C"; // Left double quotation mark + m_qmarks.QMarksList[1].Closing = "\u201D"; // Right double quotation mark + m_qmarks.QMarksList[2].Opening = "\u2018"; // Left single quotation mark + m_qmarks.QMarksList[2].Closing = "\u2019"; // Right single quotation mark + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + } + + void SetupSpanish3_QuotationDash() + { + // Spanish has a distinct mark for level 3. + m_qmarks.EnsureLevelExists(3); + m_qmarks.QMarksList[0].Opening = "\u2014"; // Em dash + m_qmarks.QMarksList[0].Closing = string.Empty; + m_qmarks.QMarksList[1].Opening = "\u201C"; // Left double quotation mark + m_qmarks.QMarksList[1].Closing = "\u201D"; // Right double quotation mark + m_qmarks.QMarksList[2].Opening = "\u2018"; // Left single quotation mark + m_qmarks.QMarksList[2].Closing = "\u2019"; // Right single quotation mark + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + } + + void SetupSwiss2() // for French, German, or Italian + { + m_qmarks.EnsureLevelExists(2); + m_qmarks.QMarksList[0].Opening = "«"; // Left-pointing double angle quotation mark + m_qmarks.QMarksList[0].Closing = "»"; // Right-pointing double angle quotation mark + m_qmarks.QMarksList[1].Opening = "\u2039"; // Single left-pointing angle quotation mark + m_qmarks.QMarksList[1].Closing = "\u203A"; // Single right-pointing angle quotation mark + m_qmarks.ContinuationType = ParagraphContinuationType.None; + m_qmarks.ContinuationMark = ParagraphContinuationMark.None; + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + } + #endregion + + #region New test setup for quotation continuation across paragraphs + + void SetupContinuationAllOpening() + { + m_qmarks.ContinuationType = ParagraphContinuationType.RequireAll; + m_qmarks.ContinuationMark = ParagraphContinuationMark.Opening; + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + } + + void SetupContinuationInnermost() + { + m_qmarks.ContinuationType = ParagraphContinuationType.RequireInnermost; + m_qmarks.ContinuationMark = ParagraphContinuationMark.Opening; + m_source.SetParameterValue("QuotationMarkInfo", m_qmarks.XmlString); + } + #endregion + + #region Level 1 quotation marks + + // Level1_OnePair is based on MAT 2:2 (NIV and especially NLT) but the marks differ + + [Test] + public void Level1_OnePair_European_Correct() + { + SetupEuropean1(); + Test(new string[0, 0], "\\id MAT \\c 2 \\p \\v 1 asking, \\v 2 «Level one.»"); + } + + [Test] + public void Level1_OnePair_European_UnmatchedOpeningMark() + { + SetupEuropean1(); + Test(new string[,] { + { "«", FormatMessage(kUnmatchedOpeningMark, 1), "2:2" } + }, "\\id MAT \\c 2 \\p \\v 1 asking, \\v 2 «Level one."); + } + + [Test] + public void Level1_OnePair_European_UnmatchedClosingMark() + { + SetupEuropean1(); + Test(new string[,] { + { "»", FormatMessage(kUnmatchedClosingMark, 1), "2:2" } + }, "\\id MAT \\c 2 \\p \\v 1 asking, \\v 2 Level one.»"); + } + + // The check might not find inconsistencies if checking properties are inappropriate + // or if the character is not a quotation mark for the writing system. + + [Test] + public void Level1_OnePair_Inappropriate_Correct() + { + SetupEnglish1(); + Test(new string[0, 0], "\\id MAT \\c 2 \\p \\v 1 asking, \\v 2 «Level one.»"); + } + + [Test] + public void Level1_OnePair_Inappropriate_UnmatchedOpeningMark() + { + SetupEnglish1(); + Test(new string[0, 0], "\\id MAT \\c 2 \\p \\v 1 asking, \\v 2 «Level one."); + } + + [Test] + public void Level1_OnePair_Inappropriate_UnmatchedClosingMark() + { + SetupEnglish1(); + Test(new string[0, 0], "\\id MAT \\c 2 \\p \\v 1 asking, \\v 2 Level one.»"); + } + + // Same marks as NIV and NLT + + [Test] + public void Level1_OnePair_English_Correct() + { + SetupEnglish1(); + Test(new string[0, 0], "\\id MAT \\c 2 \\p \\v 1 asking, \\v 2 \u201CLevel one.\u201D"); + } + + [Test] + public void Level1_OnePair_English_UnmatchedOpeningMark() + { + SetupEnglish1(); + Test(new string[,] { + { "\u201C", FormatMessage(kUnmatchedOpeningMark, 1), "2:2" } + }, "\\id MAT \\c 2 \\p \\v 1 asking, \\v 2 \u201CLevel one."); + } + + [Test] + public void Level1_OnePair_English_UnmatchedClosingMark() + { + SetupEnglish1(); + Test(new string[,] { + { "\u201D", FormatMessage(kUnmatchedClosingMark, 1), "2:2" } + }, "\\id MAT \\c 2 \\p \\v 1 asking, \\v 2 Level one.\u201D"); + } + + // Level1_TwoPairs is based on MAT 2:13 (NIV and especially NLT) but the marks differ + + [Test] + public void Level1_TwoPairs_European_Correct() + { + SetupEuropean1(); + Test(new string[0, 0], "\\id MAT \\c 2 \\p \\v 13 in a dream. «Level one,» the angel said, «level one.»"); + } + + [Test] + public void Level1_TwoPairs_European_UnmatchedOpeningMark() + { + SetupEuropean1(); + Test(new string[,] { + { "«", FormatMessage(kUnmatchedOpeningMark, 1), "2:13" } + }, "\\id MAT \\c 2 \\p \\v 13 in a dream. «Level one, the angel said, «level one.»"); + } + + [Test] + public void Level1_TwoPairs_European_UnmatchedClosingMark() + { + SetupEuropean1(); + Test(new string[,] { + { "»", FormatMessage(kUnmatchedClosingMark, 1), "2:13" } + }, "\\id MAT \\c 2 \\p \\v 13 in a dream. «Level one,» the angel said, level one.»"); + } + + // Level1_ThreePairs is based on MAT 8:3-4 (NIV and NLT) but the marks differ + + [Test] + public void Level1_ThreePairs_European_Correct() + { + SetupEuropean1(); + Test(new string[0, 0], "\\id MAT \\c 8 \\p \\v 3 «Level one,» he said. «level one.» \\v 4 Then said to him, «level one.»"); + } + + [Test] + public void Level1_ThreePairs_European_UnmatchedClosingAndOpeningMarks() + { + SetupEuropean1(); + Test(new string[,] { + { "»", FormatMessage(kUnmatchedClosingMark, 1), "8:3" }, + { "«", FormatMessage(kUnmatchedOpeningMark, 1), "8:4" } + }, "\\id MAT \\c 8 \\p \\v 3 «Level one,» he said. level one.» \\v 4 Then said to him, «level one."); + } + #endregion + + #region Level 1 quotation marks in section headings + + // Level1_HebrewTitle is based on PSA 9:1 (NIV and NLT) but the marks differ + // Does the Test code recognize \d Hebrew Title? + + [Test] + public void Level1_HebrewTitle_European_Correct() + { + SetupEuropean1(); + Test(new string[0, 0], "\\id PSA \\c 9 \\d to the tune of «Level one.» \\q1 \\v 1 Line one; \\q2 Line two."); + } + + [Test] + public void Level1_HebrewTitle_European_UnmatchedOpeningMark() + { + SetupEuropean1(); + Test(new string[,] { + { "«", FormatMessage(kUnmatchedOpeningMark, 1), "9:0" } // Does the check know that the reference is verse 1? + }, "\\id PSA \\c 9 \\d to the tune of «Level one. \\q1 \\v 1 Line one; \\q2 Line two."); + } + + [Test] + public void Level1_HebrewTitle_European_UnmatchedClosingMark() + { + SetupEuropean1(); + Test(new string[,] { + { "»", FormatMessage(kUnmatchedClosingMark, 1), "9:0" } // Does the check know that the reference is verse 1? + }, "\\id PSA \\c 9 \\d to the tune of Level one.» \\q1 \\v 1 Line one; \\q2 Line two."); + } + + // Level1_SectionHead is based on 1CO 1:10 (J.B. Phillips) but the marks differ + // Does the Test code recognize \s Section Head? + + [Test] + public void Level1_SectionHead_European_Correct() + { + SetupEuropean1(); + Test(new string[0, 0], "\\id 1CO \\c 1 \\v 9 \\s But I am anxious over your «divisions» \\p \\v 10 Now I do beg you."); + } + + [Test] + public void Level1_SectionHead_European_UnmatchedOpeningMark() + { + SetupEuropean1(); + Test(new string[,] { + { "«", FormatMessage(kUnmatchedOpeningMark, 1), "1:9" } // Does the check know that the reference is verse 10? + }, "\\id 1CO \\c 1 \\v 9 \\s But I am anxious over your «divisions \\p \\v 10 Now I do beg you."); + } + + [Test] + public void Level1_SectionHead_European_UnmatchedClosingMark() + { + SetupEuropean1(); + Test(new string[,] { + { "»", FormatMessage(kUnmatchedClosingMark, 1), "1:9" } // Does the check know that the reference is verse 10? + }, "\\id 1CO \\c 1 \\v 9 \\s But I am anxious over your divisions» \\p \\v 10 Now I do beg you."); + } + #endregion + + #region Level 2 quotation marks + + // Level2_OnePair is based on MAT 5:38-39 (NIV) but the marks differ + + [Test] + public void Level2_OnePair_Correct() + { + // In the actual context, the level 1 quotation continues preceding and following. + SetupSwiss2(); + Test(new string[0, 0], "\\id MAT \\c 5 \\p \\v 38 «Level one says, \u2039Level two, and level two.\u203A \\v 39 But, Level one.»"); + } + + [Test] + public void Level2_OnePair_UnmatchedOpeningMark() + { + SetupSwiss2(); + Test(new string[,] { + { "\u2039", FormatMessage(kUnmatchedOpeningMark, 2), "5:38" } + }, "\\id MAT \\c 5 \\p \\v 38 «Level one says, \u2039Level two, and level two. \\v 39 But, Level one.»"); + } + + [Test] + public void Level2_OnePair_UnmatchedClosingMark() + { + SetupSwiss2(); + Test(new string[,] { + { "\u203A", FormatMessage(kUnmatchedClosingMark, 2), "5:38" } + }, "\\id MAT \\c 5 \\p \\v 38 «Level one says, Level two, and level two.\u203A \\v 39 But, Level one.»"); + } + + [Test] + public void Level2_OnePair_UnexpectedAndUnmatchedOpeningMark() + { + SetupSwiss2(); + Test(new string[,] { + { "\u2039", FormatMessage(kUnexpectedOpeningMark, 2), "5:38" }, + { "\u2039", FormatMessage(kUnmatchedOpeningMark, 2), "5:38" } + }, "\\id MAT \\c 5 \\p \\v 38 Level one says, \u2039Level two, and level two. \\v 39 But, Level one."); + } + + // Level2_OnePairFollowedByLevel1 is based on MAT 9:12-14 (NLT) but the marks differ + + [Test] + public void Level2_OnePairFollowedByLevel1_UnexpectedOpeningMark() + { + // The first first-level quotation is marked with characters that are not quotation marks for the writing system. + SetupSwiss2(); + Test(new string[,] { + { "\u2039", FormatMessage(kUnexpectedOpeningMark, 2), "9:13" } + }, "\\id MAT \\c 9 \\p \\v 12 \\v 13 He added, \u201CLevel one \u2039Level two.\u203A Level one.\u201D \\p \\v 14 Asked him, «Level one.»"); + } + + // Level2_ThreePairs is based on MAT 8:8-9 (NLT) but the marks differ + + [Test] + public void Level2_ThreePairs_UnexpectedOpeningMark() + { + // Might happen if you do not notice that first-level marks were missing + // when you inserted second-level marks. + SetupSwiss2(); + Test(new string[,] { + { "\u2039", FormatMessage(kUnexpectedOpeningMark, 2), "8:9" }, + }, "\\id MAT \\c 8 \\p \\v 8 Said, Level one. \\v 9 I say \u2039Two,\u203A and they go, or \u2039Two,\u203A and they come. If I say, \u2039Two,\u203A they do it.»"); + } + + [Test] + public void Level2_ThreePairs_UnexpectedOpeningMark_InappropriateProperties() + { + // Might happen after you imported from source with different first-level marks, + // which the check does not notice until you insert second-level marks + // where they did not occur in the source. + SetupSwiss2(); + Test(new string[,] { + { "\u2039", FormatMessage(kUnexpectedOpeningMark, 2), "8:9" } + }, "\\id MAT \\c 8 \\p \\v 8 Said, \u201CLevel one. \\v 9 I say \u2039Two,\u203A and they go, or \u2039Two,\u203A and they come. If I say, \u2039Two,\u203A they do it.\u201D"); + } + + // Level2_TwoPairs is based on MAT 5:33-37 (A Boa Nova, Portuguese Good News) + + [Test] + public void Level2_TwoPairs_Correct() + { + // In the actual context, the level 1 quotation continues preceding and following. + SetupPortuguese2(); + Test(new string[0, 0], "\\id MAT \\c 5 \\p \\v 33 «Level one says: In italics not quotation marks. \\v 37 Let your «Yes» and «No» level one.»"); + } + + // Level2_FivePairs is based on MAT 5:33-37 (NIV) but the marks differ + + [Test] + public void Level2_FivePairs_Correct() + { + // In the actual context, the level 1 quotation continues preceding and following. + SetupSwiss2(); + Test(new string[0, 0], "\\id MAT \\c 5 \\p \\v 33 «Level one says, \u2039Level two.\u203A \\v 37 Let your \u2039Yes\u203A be \u2039Yes\u203A and your \u2039No,\u203A \u2039No\u203A; level one.»"); + } + + [Test] + public void Level2_FivePairs_UnmatchedOpeningMark() + { + SetupSwiss2(); + Test(new string[,] { + { "\u2039", FormatMessage(kUnmatchedOpeningMark, 2), "5:37" } + }, "\\id MAT \\c 5 \\p \\v 33 «Level one says, \u2039Level two.\u203A \\v 37 Let your \u2039Yes be \u2039Yes\u203A and your \u2039No,\u203A \u2039No\u203A; level one.»"); + } + + [Test] + public void Level2_FivePairs_UnmatchedClosingMark() + { + SetupSwiss2(); + Test(new string[,] { + { "\u203A", FormatMessage(kUnmatchedClosingMark, 2), "5:37" } + }, "\\id MAT \\c 5 \\p \\v 33 «Level one says, \u2039Level two.\u203A \\v 37 Let your \u2039Yes\u203A be Yes\u203A and your \u2039No,\u203A \u2039No\u203A; level one.»"); + } + + [Test] + public void Level2_FivePairs_UnmatchedOpeningAndClosingMarks() + { + SetupSwiss2(); + Test(new string[,] { + { "\u2039", FormatMessage(kUnmatchedOpeningMark, 2), "5:37" }, + { "\u203A", FormatMessage(kUnmatchedClosingMark, 2), "5:37" } + }, "\\id MAT \\c 5 \\p \\v 33 «Level one says, \u2039Level two.\u203A \\v 37 Let your \u2039Yes be \u2039Yes\u203A and your \u2039No,\u203A No\u203A; level one.»"); + } + + [Test] + public void Level2_FivePairs_UnmatchedClosingAndOpeningMarks() + { + SetupSwiss2(); + Test(new string[,] { + { "\u203A", FormatMessage(kUnmatchedClosingMark, 2), "5:37" }, + { "\u2039", FormatMessage(kUnmatchedOpeningMark, 2), "5:37" } + }, "\\id MAT \\c 5 \\p \\v 33 «Level one says, \u2039Level two.\u203A \\v 37 Let your \u2039Yes\u203A be Yes\u203A and your \u2039No, \u2039No\u203A; level one.»"); + } + #endregion + + #region Same marks for multiple levels + + // Level2_QuotedText is based on MAT 5:33-37 (A Boa Nova) + + [Test] + public void Level2_QuotedText_Correct() + { + SetupPortuguese3(); + Test(new string[0, 0], "\\id MAT \\c 5 \\p \\v 33 «Level one was said: \\qt Quoted text instead of level two. \\qt* But I say: What I say. \\v 37 Let your «yes» be yes, and your «no» no.»"); + } + + // Level2_SameMarks is based on MAT 7:1-6 (A Boa Nova) + + [Test] + public void Level2_SameMarks_Correct() + { + SetupPortuguese3(); + Test(new string[0, 0], "\\id MAT \\c 7 \\p \\v 1 «Level one. \\v 4 How can you say: «Level two», level \\v 5 one. \\p \\v 6 No continuation mark.»"); + } + + // Level2_MissingClosingMark is based on MAT 6:25-7:6 (A Boa Nova) + + [Test] + public void Level2_MissingClosingMark_UnmatchedOpeningMark() + { + // In MAT 5-7, each section consists of a separate quotation. + // If you omit a closing mark at the end of a section, + // and if the following section contains a level 2 quotation, it seems to be a level 3 quotation. + // Can the check limit the number of levels? + SetupPortuguese3(); + Test(new string[,] { + { "«", FormatMessage(kUnmatchedOpeningMark, 1), "6:25" } + }, "\\id MAT \\c 6 \\v 25 \\p «Section with a missing closing mark. \\c 7 \\p \\v 1 «Level one. \\v 4 How can you say: «Level two», level \\v 5 one. \\p \\v 6 No continuation mark.»"); + } + + // Level2_OnlyOneClosingMark is based on MAT 7:21-23 (A Boa Nova) + + [Test] + public void Level2_OnlyOneClosingMark_UnmatchedOpeningMark() + { + // If levels one and two have the same marks, and if both levels close at the same place, + // the check displays an inconsistency that translators need to ignore. + SetupPortuguese3(); + Test(new string[,] { + { "«", FormatMessage(kUnmatchedOpeningMark, 1), "7:21" } + }, "\\id MAT \\c 7 \\p \\v 21 «Not everyone who says: «Level two!», level one. \\v 22 Many will say: «Level two?» \\v 23 Then I will tell them: «Levels two and one end here!»"); + } + + // Level3_OnlyOneClosingMark is based on LUK 12:16-21 (A Boa Nova) + + [Test] + public void Level3_OnlyOneClosingMark_UnmatchedOpeningMark() + { + SetupPortuguese3(); + Test(new string[,] { + { "«", FormatMessage(kUnmatchedOpeningMark, 2), "12:17" }, + { "«", FormatMessage(kUnmatchedOpeningMark, 1), "12:16" } // Does the check return this message first? + }, "\\id LUK \\c 12 \\p \\v 16 He told them: «Level one. \\v 17 So he said: «Level two \\v 18 \\v 19 and say to myself: «Level three and level two ends here too.», \\v 20 But God said to him: «Level two?» \\p \\v 21 Jesus said: «Level two and level one ends here too.»"); + } + #endregion + + #region Level 3 with same marks as level 1 + + // For level 3 with same marks as level 1, + // the check displays misleading inconsistencies instead of unmatched closing mark: level 3. + + // The following tests omit paragraph marks so that continuation does not matter. + + [Test] + public void Level3_Recycled_Correct() + { + SetupEnglish3(); + Test(new string[0, 0], "\\id LUK \\c 12 \\p \\v 16 He told: \u201CLevel one. \\v 17 He thought, \u2018Level two.\u2019 \\v 18 \u2018Two. \\v 19 To myself, \u201Clevel three.\u201D \u2019 \\v 20 \u2018Two.\u2019 \\v 21 Close level one.\u201D"); + } + #endregion + + #region Level 3 with distinct marks + + // The following tests omit paragraph marks so that continuation does not matter. + + [Test] + public void Level3_Distinct_Correct() + { + SetupSpanish3(); + Test(new string[0, 0], "\\id LUK \\c 12 \\p \\v 16 He told: «Level one. \\v 17 He thought, \u201Clevel two.\u201D \\v 18 \u201CTwo. \\v 19 To myself, \u2018Level three.\u2019 \u201D \\v 20 \u201CTwo.\u201D \\v 21 Close level one.»"); + } + + [Test] + public void Level3_Distinct_UnmatchedOpeningMark() + { + SetupSpanish3(); + Test(new string[,] { + { "\u2018", FormatMessage(kUnmatchedOpeningMark, 3), "12:19" } + }, "\\id LUK \\c 12 \\p \\v 16 He told: «Level one. \\v 17 He thought, \u201Clevel two.\u201D \\v 18 \u201CTwo. \\v 19 To myself, \u2018Level three.\u201D \\v 20 \u201CTwo.\u201D \\v 21 Close level one.»"); + } + + [Test] + public void Level3_Distinct_UnmatchedClosingMark() + { + SetupSpanish3(); + Test(new string[,] { + { "\u2019", FormatMessage(kUnmatchedClosingMark, 3), "12:19" } + }, "\\id LUK \\c 12 \\p \\v 16 He told: «Level one. \\v 17 He thought, \u201Clevel two.\u201D \\v 18 \u201CTwo. \\v 19 To myself, Level three.\u2019 \u201D \\v 20 \u201CTwo.\u201D \\v 21 Close level one.»"); + } + #endregion + + #region Levels 3-4 with same marks as levels 1-2 + // We have not yet found four levels in a translation that has paragraph structure. + + // Level4_Recycled is based on JER 29:24-28 (NASB) + // Inserted \p in verse 28 to account for continuation, but that does not seem quite right, + // because NASB has verse structure, instead of paragraph structure. + // The main paragraphs are at verses 24 and 29. + + public void Level4_Recycled_Continuation_InappropriateProperties_UnmatchedOpeningMark3() + { + SetupEnglish4(); + // If there is a continuation mark, but the properties indicate no mark needed, + // the recycling makes it seem to be an unmatched opening mark for level 3 + // instead of a missing continuation mark for level 1. + Test(new string[,] { + { "\u201C", FormatMessage(kUnmatchedOpeningMark, 3), "29:26" } + }, "\\id JER \\c 29 \\p \\v 24 To Shemiah speak, saying, \\v 25 \u201Clevel one, \u2018Level two, \\v 26 \u201Clevel three \\v 27 \\p \\v 28 \u201CHe has sent saying, \u2018Level four.\u2019\u201D\u2019\u201D"); + } + + [Test] + public void Level4_Recycled_Correct() // Omit continuation in verse 28. + { + SetupEnglish4(); + Test(new string[0, 0], "\\id JER \\c 29 \\p \\v 24 To Shemiah speak, saying, \\v 25 \u201Clevel one, \u2018Level two, \\v 26 \u201Clevel three \\v 27 \\v 28 He has sent saying, \u2018Level four.\u2019\u201D\u2019\u201D"); + } + #endregion + + #region Level 1 to continue in prose + + [Test] + public void Level1_ContinuationFromLinesIntoProse_InappropriateProperties_UnmatchedOpeningMark() + { + SetupSwiss2(); + // If there is a continuation mark, but the properties indicate no mark needed: + // The opening mark is unmatched. + // The continuation mark immediately preceding the closing mark is matched. + // Any other continuation marks are unmatched. + Test(new string[,] { + { "«", FormatMessage(kUnmatchedOpeningMark, 1), "5:3" }, + { "«", FormatMessage(kUnmatchedOpeningMark, 1), "5:11" }, + { "«", FormatMessage(kUnmatchedOpeningMark, 1), "5:13" } + }, "\\id MAT \\c 5 \\p \\v 1 \\v 2 He taught them: \\q1 \\v 3 «Level one, \\q2 line two. \\q1 \\v 10 Line one, \\q2 line two. \\p \\v 11 «Continue \\v 12 \\p \\v 13 «Continue \\p \\v 14 «Continue and close level one.»"); + } + #endregion + + #region Level 1 to continue into lines + + [Test] + public void Level1_ContinuationIntoLines2_MissingContinuationMark() + { + SetupSwiss2(); + SetupContinuationAllOpening(); + Test(new string[,] { + { "\u2039", FormatMessage(kMissingContinuationMark, 1), "2:6" }, + }, "\\id MAT \\c 2 \\p \\v 5 «Level one,» they said, «level one: \\q1 \\v 6 \u2039Level two, \\q2 level two, \\q1 level two \\q2 level two.\u203A » \\p \\v 7 Following."); + } + + // Level1_ContinuationIntoLines23 is based on MRK 12:35-37 (NIV) + + [Test] + public void Level1_ContinuationIntoLines23_Correct() + { + SetupEnglish3(); + SetupContinuationAllOpening(); + Test(new string[0, 0], "\\id MRK \\c 12 \\p \\v 35 He asked, \u201CLevel one? \\v 36 declared, \\q1 \u201C \u2018Level two, \\q2 \u201CLevel three, \\q1 line one \\q2 line two.\u201D \u2019 \\m \\v 37 No continuation \u2018Two.\u2019 Close level one.\u201D"); + } + #endregion + + #region Level 1 not to continue into lines + + // Level1_NoContinuationIntoLines2 is based on MAT 2:5-7 (NLT) but the marks differ + + [Test] + public void Level1_NoContinuationIntoLines2_Correct() + { + SetupSwiss2(); + Test(new string[0, 0], "\\id MAT \\c 2 \\p \\v 5 «Level one,» they said, «level one: \\q1 \\v 6 \u2039Level two, \\q2 line two, \\q1 line one \\q2 end of levels two and one.\u203A » \\p \\v 7 Following."); + } + #endregion + + #region Level 1 to continue within lines + // Continuation at PSA 81:8 and 11 in NIV and NLT; also at 13 in NIV but not NLT. + // Continuation occurs in PSA 82 in NIV and NLT (not at same verses). + // Continuation occurs in PSA 39:4,12; 50:22; 89:30; 132:17 in NIV, but not NLT. + // No continuation following interlude without stanza break at PSA 39:6 in NIV. + // Interlude withoug stanza break might not occur in NLT. + + // Level1_LinesContinuationFollowingStanzaBreak is based on PSA 81:6-16 (NLT and especially NIV) but the marks differ + + [Test] + [Ignore("This is better tested (because of the other used styles) in QuotationCheckSilUnitTest.cs")] + public void Level1_LinesContinuationFollowingStanzaBreak_Correct() + { + SetupEuropean1(); + SetupContinuationAllOpening(); + Test(new string[0, 0], "\\id PSA \\c 81 \\q1 \\v 6 He says, «Level one. \\q2 line two \\q1 \\v 7 line 1 \\qs \\b \\q1 \\v 8 «Continuation \\v 9 \\v 10 \\b \\q1 \\v 11 «Continuation \\v 12 to \\v 13 the \\v 14 end \\v 15 of \\v 16 the quotation and psalm.»"); + } + #endregion + + #region Not to continue within lines + + // Level12_NoContinuationWithinLines_Correct is based on MAT 3:3-4 (NIV) but the marks differ + + [Test] + public void Level12_NoContinuationWithinLines_Correct() + { + SetupSwiss2(); + Test(new string[0, 0], "\\id MAT \\c 3 \\p \\v 3 He said, \\q1 «Level one: \\q1 \\v6 \u2039Level two. \\q2 Both levels end.\u203A » \\p \\v 4 Following."); + } + #endregion + + #region Level 1 quotation dash has no closing mark + + // QuotationDash_Level2 is based on JDG 11:13-19 (RVE95 for the first level, but NIV the second level) + + [Test] + [Ignore("We currently don't correctly support this functionality (quotation dashes)")] + public void QuotationDash_Level2_Correct() + { + SetupSpanish2_QuotationDash(); + Test(new string[0, 0], "\\id JDG \\c 11 \\p \\v 13 Ammon answered. \\p \u2014Answer. \\p \\v 14 Jepthah sent messages \\v 15 saying: \\p \u2014Jepthah says: \\v 17 to Edom: \u201Clevel two.\u201D \\v 19 To Amorites: \u201Clevel two.\u201D End of message."); + } + + [Test] + [Ignore("We currently don't correctly support this functionality (quotation dashes)")] + public void QuotationDash_Level2_InappropriateProperties_UnexpectedOpeningMark() + { + SetupSpanish2(); + Test(new string[,] { + { "\u201C", FormatMessage(kUnexpectedOpeningMark, 2), "11:15" } + // The check does not find a second inconsistency for 11:17, should it? + }, "\\id JDG \\c 11 \\p \\v 13 Ammon answered. \\p \u2014Answer. \\p \\v 14 Jepthah sent messages \\v 15 saying: \\p \u2014Jepthah says: \\v 17 to Edom: \u201Clevel two.\u201D \\v 19 To Amorites: \u201Clevel two.\u201D End of message."); + } + + // QuotationDash_Level3 is based on JDG 11:13-19 (RVE95) + + [Test] + [Ignore("We currently don't correctly support this functionality (quotation dashes)")] + public void QuotationDash_Level3_Correct() + { + SetupSpanish3_QuotationDash(); + Test(new string[0, 0], "\\id JDG \\c 11 \\p \\v 13 Ammon answered. \\p \u2014Answer. \\p \\v 14 Jepthah sent messages \\v 15 saying: \\p \u2014Jepthah says: \u201Clevel two \\v 17 to Edom: \u2018Level three.\u2019 \\v 19 To Amorites: \u2018Level three.\u2019 End of message.\u201D"); + } + #endregion + } +} diff --git a/Lib/src/ScrChecks/ScrChecksTests/RepeatedWordsCheckTests.cs b/Lib/src/ScrChecks/ScrChecksTests/RepeatedWordsCheckTests.cs new file mode 100644 index 0000000000..07c92b8d4f --- /dev/null +++ b/Lib/src/ScrChecks/ScrChecksTests/RepeatedWordsCheckTests.cs @@ -0,0 +1,221 @@ +// --------------------------------------------------------------------------------------------- +// Copyright (c) 2008-2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) +// +// File: RepeatedWordsTests.cs +// Responsibility: TE Team +// +// <remarks> +// </remarks> +// --------------------------------------------------------------------------------------------- +using System; +using System.Collections.Generic; +using System.Text; +using NUnit.Framework; +using SIL.FieldWorks.Common.FwUtils; + +namespace SILUBS.ScriptureChecks +{ + /// ---------------------------------------------------------------------------------------- + /// <summary> + /// + /// </summary> + /// ---------------------------------------------------------------------------------------- + [TestFixture] + public class RepeatedWordsCheckTests : ScrChecksTestBase + { + private TestChecksDataSource m_dataSource; + + #region Initialization + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Set up that happens before every test runs. + /// </summary> + /// ------------------------------------------------------------------------------------ + [SetUp] + public override void TestSetup() + { + base.TestSetup(); + m_dataSource = new TestChecksDataSource(); + m_check = new RepeatedWordsCheck(m_dataSource); + } + #endregion + + #region Tests + ///-------------------------------------------------------------------------------------- + /// <summary> + /// Tests the Repeated Words check for some simple cases that don't freak your mind out. + /// </summary> + ///-------------------------------------------------------------------------------------- + [Test] + public void Basic() + { + m_dataSource.m_tokens.Add(new DummyTextToken("This this is is nice, my friend! ", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("friend monkey ", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("monkey friend.", + TextType.Verse, false, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(3)); + + CheckError(0, m_dataSource.m_tokens[0].Text, 5, "this", "Repeated word"); + CheckError(1, m_dataSource.m_tokens[0].Text, 13, "is", "Repeated word"); + CheckError(2, m_dataSource.m_tokens[2].Text, 0, "monkey", "Repeated word"); + } + + ///-------------------------------------------------------------------------------------- + /// <summary> + /// Tests the Repeated Words check when the repeated words differ in case (TE-6311). + /// </summary> + ///-------------------------------------------------------------------------------------- + [Test] + public void DiffCapitalization() + { + m_dataSource.m_tokens.Add(new DummyTextToken("This thiS is IS nice, my friend! ", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("friend monkey ", + TextType.Verse, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("moNkEY friend.", + TextType.Verse, false, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(3)); + + CheckError(0, m_dataSource.m_tokens[0].Text, 5, "thiS", "Repeated word"); + CheckError(1, m_dataSource.m_tokens[0].Text, 13, "IS", "Repeated word"); + CheckError(2, m_dataSource.m_tokens[2].Text, 0, "moNkEY", "Repeated word"); + } + + ///-------------------------------------------------------------------------------------- + /// <summary> + /// Tests the Repeated Words check when chapter 1 is followed by verse 1. + /// Jira issue is TE-6255 + /// </summary> + ///-------------------------------------------------------------------------------------- + [Test] + public void Chapter1Verse1() + { + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("Some verse text.", + TextType.Verse, false, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Tests the Repeated Words check when the last word in a section head is the same + /// as the first word in the following content. A repeated word should not be reported. + /// Jira issue is TE-6634. + /// </summary> + /// ------------------------------------------------------------------------------------ + [Test] + public void SameWordAfterSectionHead() + { + m_dataSource.m_tokens.Add(new DummyTextToken("Same Words", TextType.Other, true, + false, "Section Head")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("Words that begin the paragraph", + TextType.Verse, false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0), "Word at para start is not a repeated word when the section head ends with the same word."); + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Tests the Repeated Words check when the same word occurs after a verse break. We + /// do want this to be reported as a repeated word. + /// </summary> + /// ------------------------------------------------------------------------------------ + [Test] + public void SameWordAfterVerseNumber() + { + m_dataSource.m_tokens.Add(new DummyTextToken("In love", TextType.Verse, true, + false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("5", + TextType.VerseNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("love he predestined us", + TextType.Verse, false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(1)); + CheckError(0, m_dataSource.m_tokens[2].Text, 0, "love", "Repeated word"); + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Tests the Repeated Words check when the repeated words have punctuation between them. + /// </summary> + /// ------------------------------------------------------------------------------------ + [Test] + public void SameWordAfterPunctuation() + { + m_dataSource.m_tokens.Add(new DummyTextToken("I am, am I not?", TextType.Verse, true, + false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0)); + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Tests the Repeated Words check when the last word in a picture is the same + /// as the word following the picture ORC. A repeated word should not be reported. + /// Jira issue is TE-6402. + /// </summary> + /// ------------------------------------------------------------------------------------ + [Test] + public void SameWordAfterPictureCaption() + { + m_dataSource.m_tokens.Add(new DummyTextToken("words ending a caption", + TextType.PictureCaption, true, false, "Caption")); + m_dataSource.m_tokens.Add(new DummyTextToken("Caption also begins this paragraph", + TextType.Verse, false, false, "Paragraph")); + + m_check.Check(m_dataSource.TextTokens(), RecordError); + Assert.That(m_errors.Count, Is.EqualTo(0), "Word after caption marker is not a repeated word when the caption ends with the same word."); + } + + ///-------------------------------------------------------------------------------------- + /// <summary> + /// Tests the Repeated Words check when there are a bunch of ones mingled together, some + /// of which are chapter numbers, some verse numbers, and some plain text. + /// Jira issue is TE-6255, sort of. + /// </summary> + ///-------------------------------------------------------------------------------------- + [Test] + public void Mixed1s() + { + // \c 1 + // \v 1 + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, true, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph")); + + // \p 1 1 + m_dataSource.m_tokens.Add(new DummyTextToken(" 1 1 ", + TextType.Verse, false, false, "Paragraph")); + + // \c 1 + // \p 1 + // \v 1 + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.ChapterNumber, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken(" 1 ", + TextType.Verse, false, false, "Paragraph")); + m_dataSource.m_tokens.Add(new DummyTextToken("1", + TextType.VerseNumber, false, false, "Paragraph")); + m_check.Check(m_dataSource.TextTokens(), RecordError); + + Assert.That(m_errors.Count, Is.EqualTo(1)); + CheckError(0, m_dataSource.m_tokens[2].Text, 3, "1", "Repeated word"); + } + #endregion + } +} diff --git a/Lib/src/ScrChecks/ScrChecksTests/RepeatedWordsCheckUnitTest.cs b/Lib/src/ScrChecks/ScrChecksTests/RepeatedWordsCheckUnitTest.cs new file mode 100644 index 0000000000..cfd95a3e78 --- /dev/null +++ b/Lib/src/ScrChecks/ScrChecksTests/RepeatedWordsCheckUnitTest.cs @@ -0,0 +1,121 @@ +// Copyright (c) 2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using NUnit.Framework; +using System.Diagnostics; +using SIL.FieldWorks.Common.FwUtils; +using SILUBS.ScriptureChecks; + +namespace SILUBS.ScriptureChecks +{ +#if DEBUG + [TestFixture] + public class RepeatedWordsCheckUnitTest + { + UnitTestChecksDataSource source = new UnitTestChecksDataSource(); + + [SetUp] + public void RunBeforeEachTest() + { + } + + void Test(string[] result, string text) + { + Test(result, text, ""); + } + + void Test(string[] result, string text, string desiredKey) + { + source.Text = text; + + RepeatedWordsCheck check = new RepeatedWordsCheck(source); + List<TextTokenSubstring> tts = + check.GetReferences(source.TextTokens(), desiredKey); + + Assert.That(tts.Count, Is.EqualTo(result.GetUpperBound(0)+1), "A different number of results was returned than what was expected."); + + for (int i = 0; i <= result.GetUpperBound(0); ++i) + Assert.That(tts[i].InventoryText, Is.EqualTo(result[i]), "Result number: " + i.ToString()); + } + + [Test] + public void Repeated() + { + Test(new string[] { "Bar" }, @"\p \v 1 Bar Bar"); + } + + [Test] + public void Quotes() + { + Test(new string[] { }, "\\p \\v 1 Bar\u201D \u201CBar"); + } + + [Test] + public void DifferentCase() + { + Test(new string[] { "bar" }, @"\p \v 1 Bar bar"); + } + + [Test] + [Ignore("Text needs to be normalized to NFC (or maybe NFD) before check is run.")] + public void DifferentNormalization() + { + Test(new string[] { "B\u00E3r", "B\u00E3r" }, + "\\p \\v 1 B\u00E3r Ba\u0303r and Ba\u0303r B\u00E3r "); + } + + [Test] + [Ignore("Text needs to be normalized to NFC (or maybe NFD) before check is run.")] + public void FindingDifferentNormalization() + { + Test(new string[] { "B\u00E3r", "B\u00E3r" }, + "\\p \\v 1 B\u00E3r Ba\u0303r and and Ba\u0303r B\u00E3r ", "B\u00E3r"); + } + + [Test] + public void CharacterStyle() + { + Test(new string[] { "Bar" }, @"\p \v 1 Bar \nd Bar\nd*"); + } + + [Test] + public void Footnote() + { + Test(new string[] { "foo", "Bar" }, @"\p \v 1 Bar \f + foo foo\f* Bar"); + } + + [Test] + public void Footnotes() + { + Test(new string[] { "Bar" }, @"\p \v 1 Bar \f + foo\f* Bar \f + foo\f*"); + } + + [Test] + public void NewParagraph() + { + Test(new string[] { }, @"\p \v 1 Bar \p Bar"); + } + + [Test] + public void NewVerse() + { + Test(new string[] { "Bar" }, @"\p \v 1 Bar \v 2 Bar"); + } + + [Test] + public void NewChapter() + { + Test(new string[] { }, @"\c 1 \p \v 1 Bar \c 2 \nd Bar\nd*"); + } + + [Test] + public void EndOfLine() + { + Test(new string[] { "bar" }, "\\p \\v 1 bar\\f + foo\\f* \r\nbar"); + } + } +#endif +} diff --git a/Lib/src/ScrChecks/ScrChecksTests/ScrChecksTestBase.cs b/Lib/src/ScrChecks/ScrChecksTests/ScrChecksTestBase.cs new file mode 100644 index 0000000000..6778b4f8e5 --- /dev/null +++ b/Lib/src/ScrChecks/ScrChecksTests/ScrChecksTestBase.cs @@ -0,0 +1,114 @@ +// Copyright (c) 2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using System.Text; +using NUnit.Framework; +using System.Diagnostics; +using System.IO; +using SIL.FieldWorks.Common.FwUtils; + +namespace SILUBS.ScriptureChecks +{ + /// ---------------------------------------------------------------------------------------- + /// <summary> + /// Unit tests for the PunctuationCheck class + /// </summary> + /// ---------------------------------------------------------------------------------------- + [TestFixture] + public abstract class ScrChecksTestBase + { + protected List<RecordErrorEventArgs> m_errors; + protected IScriptureCheck m_check; + + #region Setup + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Test setup (runs before each test). + /// </summary> + /// ------------------------------------------------------------------------------------ + [SetUp] + public virtual void TestSetup() + { + m_errors = new List<RecordErrorEventArgs>(); + // This is worthless, so we won't do it: dataSource.GetText(0, 0); + } + #endregion + + #region Helper methods + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Record errors returned by a check. The check calls this delegate whenever an error + /// is found. + /// </summary> + /// <param name="args">Information about the potential inconsistency being reported</param> + /// ------------------------------------------------------------------------------------ + public void RecordError(RecordErrorEventArgs args) + { + m_errors.Add(args); + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Checks the error. + /// </summary> + /// <param name="iError">The index of the error.</param> + /// <param name="tokenText">The text of the token containing the error.</param> + /// <param name="offset">The offset to the start of the problem data.</param> + /// <param name="problemData">The invalid punctuation pattern, character, improperly + /// capitalized word, repeated word, etc.</param> + /// <param name="errorMessage">The error message.</param> + /// ------------------------------------------------------------------------------------ + protected void CheckError(int iError, string tokenText, int offset, string problemData, + string errorMessage) + { + //int length = problemData.Length; + //StringBuilder bldr = new StringBuilder(); + //for (int iTok = 0; iTok < m_errors[iError].toks.Count; iTok++) + //{ + // ITextToken tok = m_errors[iError].toks[iTok]; + // Assert.That(tok.Text, Is.EqualTo(tokenText[iTok])); + // if (iTok > 0 && (tok.TextType == TextType.VerseNumber || + // tok.TextType == TextType.ChapterNumber)) + // { + // continue; + // } + // if (offset + length > tok.Text.Length) + // { + // string substring = tok.Text.Substring(offset); + // bldr.Append(substring); + // offset = 0; + // length -= substring.Length; + // } + // else + // { + // bldr.Append(tok.Text.Substring(offset, length)); + // Assert.That(iTok, Is.EqualTo(m_errors[iError].toks.Count -1), "We've now found enough characters, so there should be no more tokens"); + // } + //} + //Assert.That(bldr.ToString(), Is.EqualTo(problemData)); + + Assert.That(m_errors[iError].Tts.FirstToken.Text, Is.EqualTo(tokenText)); + Assert.That(m_errors[iError].Tts.Text, Is.EqualTo(problemData)); + Assert.That(m_errors[iError].Tts.Offset, Is.EqualTo(offset)); + Assert.That(m_errors[iError].CheckId, Is.EqualTo(m_check.CheckId)); + Assert.That(m_errors[iError].Tts.Message, Is.EqualTo(errorMessage)); + } + #endregion + + #region Properties + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Gets the IScrCheckInventory interface for the check (or null if the check does not + /// implement this interface). + /// </summary> + /// ------------------------------------------------------------------------------------ + protected IScrCheckInventory CheckInventory + { + get { return m_check as IScrCheckInventory; } + } + #endregion + } +} diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenModelTests/AlloGenModelTests.csproj b/Lib/src/ScrChecks/ScrChecksTests/ScrChecksTests.csproj similarity index 59% rename from Src/Utilities/AlloVarGen/AlloGenModel/AlloGenModelTests/AlloGenModelTests.csproj rename to Lib/src/ScrChecks/ScrChecksTests/ScrChecksTests.csproj index 75c1edafbe..762cfe161c 100644 --- a/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenModelTests/AlloGenModelTests.csproj +++ b/Lib/src/ScrChecks/ScrChecksTests/ScrChecksTests.csproj @@ -1,34 +1,31 @@ -<?xml version="1.0" encoding="utf-8"?> +<?xml version='1.0' encoding='utf-8'?> <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> - <AssemblyName>AlloGenModelTests</AssemblyName> - <RootNamespace>AlloGenModelTests</RootNamespace> + <AssemblyName>ScrChecksTests</AssemblyName> + <RootNamespace>SILUBS.ScriptureChecks</RootNamespace> <TargetFramework>net48</TargetFramework> <OutputType>Library</OutputType> <IsTestProject>true</IsTestProject> + <TreatWarningsAsErrors>true</TreatWarningsAsErrors> <NoWarn>168,169,219,414,649,1635,1702,1701</NoWarn> - <UseUiIndependentTestAssemblyInfo>true</UseUiIndependentTestAssemblyInfo> <GenerateAssemblyInfo>false</GenerateAssemblyInfo> <Prefer32Bit>false</Prefer32Bit> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> - <DefineConstants>DEBUG;TRACE</DefineConstants> <DebugSymbols>true</DebugSymbols> - <Optimize>false</Optimize> <DebugType>portable</DebugType> + <Optimize>false</Optimize> + <DefineConstants>DEBUG;TRACE</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> - <DefineConstants>TRACE</DefineConstants> - <DebugSymbols>true</DebugSymbols> - <Optimize>true</Optimize> <DebugType>portable</DebugType> + <Optimize>true</Optimize> + <DefineConstants>TRACE</DefineConstants> </PropertyGroup> <ItemGroup> - <PackageReference Include="Newtonsoft.Json" /> - <PackageReference Include="SIL.Core" /> - </ItemGroup> - <ItemGroup> + <PackageReference Include="SIL.LCModel.Core" GeneratePathProperty="true" /> <PackageReference Include="SIL.LCModel.Core.Tests" PrivateAssets="All" /> + <PackageReference Include="SIL.LCModel.Utils" /> <PackageReference Include="SIL.LCModel.Utils.Tests" PrivateAssets="All" /> <PackageReference Include="SIL.TestUtilities" /> </ItemGroup> @@ -36,13 +33,9 @@ <Reference Include="netstandard" /> </ItemGroup> <ItemGroup> - <ProjectReference Include="..\AlloGenModel.csproj" /> - <ProjectReference Include="..\..\AlloGenService\AlloGenService.csproj" /> - <ProjectReference Include="..\..\..\..\Common\FwUtils\FwUtilsTests\FwUtilsTests.csproj" /> - </ItemGroup> - <ItemGroup> - <Compile Include="..\..\..\..\CommonAssemblyInfo.cs"> - <Link>Properties\CommonAssemblyInfo.cs</Link> - </Compile> + <ProjectReference Include="../../../../Src/Common/FwUtils/FwUtils.csproj" /> + <ProjectReference Include="../../../../Src/Common/FwUtils/FwUtilsTests/FwUtilsTests.csproj" /> + <ProjectReference Include="../../../../Src/Common/ScriptureUtils/ScriptureUtils.csproj" /> + <ProjectReference Include="../ScrChecks.csproj" /> </ItemGroup> </Project> \ No newline at end of file diff --git a/Lib/src/ScrChecks/ScrChecksTests/SentenceFinalPunctCapitalizationCheckUnitTest.cs b/Lib/src/ScrChecks/ScrChecksTests/SentenceFinalPunctCapitalizationCheckUnitTest.cs new file mode 100644 index 0000000000..ea9f89fab0 --- /dev/null +++ b/Lib/src/ScrChecks/ScrChecksTests/SentenceFinalPunctCapitalizationCheckUnitTest.cs @@ -0,0 +1,146 @@ +// Copyright (c) 2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) +// DISABLED: SentenceFinalPunctCapitalizationCheck class no longer exists in ScrChecks + +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.IO; +using System.Text; +using NUnit.Framework; + +namespace SILUBS.ScriptureChecks +{ + [TestFixture] + [Ignore("Obsolete: SentenceFinalPunctCapitalizationCheck no longer exists in ScrChecks.")] + public class SentenceFinalPunctCapitalizationCheckUnitTest + { + [Test] + public void ObsoleteCheck_Disabled() + { + Assert.Ignore( + "Obsolete: SentenceFinalPunctCapitalizationCheck was removed/refactored; " + + "legacy implementation tests remain behind RUN_LW_LEGACY_TESTS." + ); + } + } + +} + +#if RUN_LW_LEGACY_TESTS + +namespace SILUBS.ScriptureChecks +{ + [TestFixture] + public class SentenceFinalPunctCapitalizationCheckUnitTest_Legacy + { + UnitTestChecksDataSource source = new UnitTestChecksDataSource(); + + [SetUp] + public void RunBeforeEachTest() + { + source.SetParameterValue("ValidPunctuation", "._ !_ ?_"); + } + + void Test(string[] result, string text) + { + source.Text = text; + + SentenceFinalPunctCapitalizationCheck check = new SentenceFinalPunctCapitalizationCheck(source); + List<TextTokenSubstring> tts = + check.GetReferences(source.TextTokens(), ""); + + Assert.That(tts.Count, Is.EqualTo(result.GetUpperBound(0)+1), "A different number of results was returned than what was expected."); + + for (int i = 0; i <= result.GetUpperBound(0); ++i) + Assert.That(tts[i].InventoryText, Is.EqualTo(result[i]), "Result number: " + i.ToString()); + } + + [Test] + public void UpperCase() + { + Test(new string[] { }, @"\p \v 1 Foo. Bar"); + } + + [Test] + public void LowerCase() + { + Test(new string[] { "." }, @"\p \v 1 Foo. bar"); + } + + [Test] + public void NoCaseNonRoman() + { + Test(new string[] { }, "\\p \\v 1 Foo. \u0E01"); + } + + [Test] + public void NoCasePUA() + { + Test(new string[] { }, "\\p \\v 1 Foo. \uEE00"); + } + + [Test] + public void TitleCase() + { + Test(new string[] { }, "\\p \\v 1 Foo. \u01C5"); + } + + [Test] + public void MultipleUpperCase() + { + Test(new string[] { }, @"\p \v 1 Foo. Bar! Baz"); + } + + [Test] + public void MultipleLowerCase() + { + Test(new string[] { ".", "!" }, @"\p \v 1 Foo. bar! baz"); + } + + [Test] + public void MultipleMixedCase() + { + Test(new string[] { "!" }, @"\p \v 1 Foo. Bar! baz"); + } + + [Test] + public void MultiplePunctUpperCase() + { + Test(new string[] { }, @"\p \v 1 Foo!? Bar"); + } + + [Test] + public void MultiplePunctLowerCase() + { + Test(new string[] { "!", "?" }, @"\p \v 1 Foo!? bar"); + } + + [Test] + public void Quotes() + { + Test(new string[] { "!" }, "\\p \\v 1 \u201CFoo!\u201D bar"); + } + + [Test] + public void Digits() + { + Test(new string[] { }, @"\p \v 1 Foo 1.2 bar"); + } + + [Test] + public void AbbreviationError() + { + Test(new string[] { "." }, @"\p \v 1 The E.U. headquarters."); + } + + [Test] + public void AbbreviationOK() + { + source.SetParameterValue("Abbreviations", "E.U."); + Test(new string[] { }, @"\p \v 1 The E.U. headquarters."); + } + } +} +#endif diff --git a/Lib/src/ScrChecks/ScrChecksTests/TestChecksDataSource.cs b/Lib/src/ScrChecks/ScrChecksTests/TestChecksDataSource.cs new file mode 100644 index 0000000000..a4865706cd --- /dev/null +++ b/Lib/src/ScrChecks/ScrChecksTests/TestChecksDataSource.cs @@ -0,0 +1,144 @@ +// --------------------------------------------------------------------------------------------- +// Copyright (c) 2008-2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) +// +// File: TestChecksDataSource.cs +// Responsibility: TE Team +// --------------------------------------------------------------------------------------------- +using System; +using System.Collections.Generic; +using System.Text; +using SIL.FieldWorks.Common.FwUtils; + +namespace SILUBS.ScriptureChecks +{ + /// ---------------------------------------------------------------------------------------- + /// <summary> + /// Test Checks data source + /// </summary> + /// ---------------------------------------------------------------------------------------- + public class TestChecksDataSource : IChecksDataSource + { + private Dictionary<string, string> m_parameters = new Dictionary<string, string>(); + internal List<ITextToken> m_tokens = new List<ITextToken>(); + + #region IChecksDataSource Members + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Gets the books present. + /// </summary> + /// ------------------------------------------------------------------------------------ + public List<int> BooksPresent + { + get { return new List<int>(); } + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Gets the character categorizer. + /// </summary> + /// ------------------------------------------------------------------------------------ + public CharacterCategorizer CharacterCategorizer + { + get { return new CharacterCategorizer(); } + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Gets the parameter value. + /// </summary> + /// <param name="key">The key.</param> + /// ------------------------------------------------------------------------------------ + public string GetParameterValue(string key) + { + string value; + + if (m_parameters.TryGetValue(key, out value)) + return value; + + if (key.Contains("ValidCharacters")) + return value; + + return string.Empty; + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Gets the text. + /// </summary> + /// <param name="bookNum">The book num.</param> + /// <param name="chapterNum">The chapter num.</param> + /// ------------------------------------------------------------------------------------ + public bool GetText(int bookNum, int chapterNum) + { + return true; + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Gets the localized name of the check. + /// </summary> + /// <param name="scrCheckName">Name of the check.</param> + /// ------------------------------------------------------------------------------------ + public string GetUiCheckName(string scrCheckName) + { + return scrCheckName; + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Gets the localized name of the inventory column header. + /// </summary> + /// <param name="scrCheckUnit">The check unit.</param> + /// ------------------------------------------------------------------------------------ + public string GetUiInventoryColumnHeader(string scrCheckUnit) + { + return scrCheckUnit; + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// No-op. + /// </summary> + /// ------------------------------------------------------------------------------------ + public void Save() + { + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Sets the parameter value. + /// </summary> + /// <param name="key">The key.</param> + /// <param name="value">The value.</param> + /// ------------------------------------------------------------------------------------ + public void SetParameterValue(string key, string value) + { + m_parameters[key] = value; + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Gets an enumarable thingy to enumerate the tokens. + /// </summary> + /// ------------------------------------------------------------------------------------ + public IEnumerable<ITextToken> TextTokens() + { + return m_tokens; + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Returns a localized version of the specified string. + /// </summary> + /// ------------------------------------------------------------------------------------ + public string GetLocalizedString(string strToLocalize) + { + return strToLocalize; + } + + #endregion + } +} diff --git a/Lib/src/ScrChecks/ScrChecksTests/UnitTestChecksDataSource.cs b/Lib/src/ScrChecks/ScrChecksTests/UnitTestChecksDataSource.cs new file mode 100644 index 0000000000..33f30fdda5 --- /dev/null +++ b/Lib/src/ScrChecks/ScrChecksTests/UnitTestChecksDataSource.cs @@ -0,0 +1,103 @@ +// Copyright (c) 2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using System.Text; +using System.Diagnostics; +using System.Globalization; +using System.Text.RegularExpressions; +using SIL.FieldWorks.Common.FwUtils; + +namespace SILUBS.ScriptureChecks +{ + /// <summary> + /// SEE ICheckDataSource for documentation of these functions !!!! + /// </summary> + public class UnitTestChecksDataSource : IChecksDataSource + { + List<UnitTestUSFMTextToken> tokens2 = null; + internal string m_extraWordFormingCharacters = String.Empty; + + Dictionary<string, string> parameterValues = new Dictionary<string, string>(); + string text; + + public UnitTestChecksDataSource() + { + } + + public string GetParameterValue(string key) + { + string value; + if (!parameterValues.TryGetValue(key, out value)) + value = ""; + + return value; + } + + public void SetParameterValue(string key, string value) + { + parameterValues[key] = value; + } + + public void Save() + { + //scrText.Save(scrText.Name); + } + + public string Text + { + set + { + text = value; + UnitTestTokenizer tokenizer = new UnitTestTokenizer(); + tokens2 = tokenizer.Tokenize(text); + } + get + { + return text; + } + } + + public IEnumerable<ITextToken> TextTokens() + { + foreach (UnitTestUSFMTextToken tok in tokens2) + { + yield return (ITextToken)tok; + } + } + + public CharacterCategorizer CharacterCategorizer + { + get { return new CharacterCategorizer(m_extraWordFormingCharacters, "-", + String.Empty); + } + } + + public List<int> BooksPresent + { + get + { + List<int> present = new List<int>(); + present.Add(1); + return present; + } + } + + public bool GetText(int bookNum, int chapterNum) + { + return true; + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Returns a localized version of the specified string. + /// </summary> + /// ------------------------------------------------------------------------------------ + public string GetLocalizedString(string strToLocalize) + { + return strToLocalize; + } + } +} diff --git a/Lib/src/ScrChecks/ScrChecksTests/UnitTestTokenizer.cs b/Lib/src/ScrChecks/ScrChecksTests/UnitTestTokenizer.cs new file mode 100644 index 0000000000..7d297c7fcb --- /dev/null +++ b/Lib/src/ScrChecks/ScrChecksTests/UnitTestTokenizer.cs @@ -0,0 +1,451 @@ +// Copyright (c) 2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System.Collections.Generic; +using System.Diagnostics; +using SIL.FieldWorks.Common.FwUtils; +using SIL.LCModel.Core.Scripture; + +namespace SILUBS.ScriptureChecks +{ + /// <summary> + /// This class allows tokenizing usfm text snippets without using any Paratext specific + /// code. + /// Markers supported: id, rem, s, p, q1, q2, io, f, f*, f?, x, x*, x?, nd, nd* + /// </summary> + public class UnitTestUSFMTextToken : ITextToken + { + // Set by NextToken(...) + string paraStyleName; + public string ParaStyleName + { + set { paraStyleName = value; } + get { return paraStyleName; } + } + + string charStyleName = string.Empty; + public string CharStyleName + { + set { charStyleName = value; } + get { return charStyleName; } + } + + public string BookText; + public int Offset; + + // Set by DivideText(...) + public int Length; + public string Chapter; + public string Verse; + + // Set by CategorizeToken(...) + public bool IsPublishableText; + public bool IsNoteText; + public bool IsVerseText; + + // Virtual + public bool IsPublishable + { + get + { + if (ParaStyleName == "id") return false; + if (ParaStyleName == "rem") return false; + return true; + } + } + + public bool IsVerse { get { return CharStyleName == "v"; } } + public bool IsChapter { get { return CharStyleName == "c"; } } + + public bool IsParagraphStart + { + get + { + if (ParaStyleName == "id") return true; + if (ParaStyleName == "rem") return true; + if (ParaStyleName == "p") return true; + if (paraStyleName == "b") return true; + if (paraStyleName == "d") return true; + if (ParaStyleName == "q1") return true; + if (ParaStyleName == "q2") return true; + if (ParaStyleName == "io") return true; + if (ParaStyleName == "s") return true; + return false; + } + } + + public bool IsNoteStart + { + get + { + if (CharStyleName == "f") return true; + if (CharStyleName == "x") return true; + return false; + } + } + + public bool IsCharacterStyle + { + get + { + //if (CharStyleName == "nd") return true; + //if (ParaStyleName.StartsWith("x") && ParaStyleName != "x") return true; + //if (ParaStyleName.StartsWith("f") && ParaStyleName != "f") return true; + //return false; + + //return string.IsNullOrEmpty(CharStyleName); + + return CharStyleName != null; + } + } + + public bool IsVerseTextStyle + { + get + { + if (ParaStyleName == "p") return true; + if (paraStyleName == "b") return true; + if (ParaStyleName == "q1") return true; + if (ParaStyleName == "q2") return true; + if (ParaStyleName == "nd") return true; + return false; + } + } + + public bool IsEndStyle + { + get + { + Debug.Assert(ParaStyleName == null || !ParaStyleName.EndsWith("*"), + "Paragraph styles should never end with an asterisk."); + + return CharStyleName != null && CharStyleName.EndsWith("*"); + } + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Clones this instance. + /// </summary> + /// ------------------------------------------------------------------------------------ + public ITextToken Clone() + { + UnitTestUSFMTextToken tok = new UnitTestUSFMTextToken(); + tok.ParaStyleName = this.ParaStyleName; + tok.CharStyleName = this.CharStyleName; + tok.BookText = this.BookText; + tok.Offset = this.Offset; + tok.Length = this.Length; + tok.Chapter = this.Chapter; + tok.Verse = this.Verse; + tok.IsPublishableText = this.IsPublishableText; + tok.IsNoteText = this.IsNoteText; + tok.IsVerseText = this.IsVerseText; + + return tok; + } + + public override string ToString() + { + return "ParaStyle: " + ((!string.IsNullOrEmpty(ParaStyleName)) ? ParaStyleName : "-") + + ", CharStyle: " + ((!string.IsNullOrEmpty(CharStyleName)) ? CharStyleName : "-") + + ": " + Text + "(length=" + Text.Length.ToString() + ")"; + } + + public string Locale + { + get { return string.Empty; } + } + + public TextType TextType + { + get { + if (IsVerse) return TextType.VerseNumber; + if (IsChapter) return TextType.ChapterNumber; + if (IsNoteText) return TextType.Note; + if (IsVerseText) return TextType.Verse; + return TextType.Other; + } + } + + public string Text + { + get { return BookText.Substring(Offset, Length); } + } + + public string ScrRefString + { + get { return Chapter + ":" + Verse; } + set { ; } + } + + public BCVRef MissingEndRef + { + get { return null; } + set { ; } + } + + public BCVRef MissingStartRef + { + get { return null; } + set { ; } + } + } + + class UnitTestTokenizer + { + /// <summary> + /// Split text for book into TextTokens. Populate Tokens and chapters. + /// </summary> + public List<UnitTestUSFMTextToken> Tokenize(string text) + { + List<UnitTestUSFMTextToken> tokens = DivideText(text); + CategorizeTokens(tokens); + return tokens; + } + + /// <summary> + /// Divide text for book into TextTokens. + /// Set Offset, Length, BookText, AnnotationOffset, Chapter, Verse + /// Tricky things needing done: + /// 1) Split \v N abc... into two tokens, first containing just verse number + /// 2) \f X abc... don't return caller as part of the token + /// </summary> + private List<UnitTestUSFMTextToken> DivideText(string text) + { + UnitTestUSFMTextToken tok = null; + List<UnitTestUSFMTextToken> tokens = new List<UnitTestUSFMTextToken>(); + string chapter = "1"; + string verse = "0"; + bool inPublishable = false; + + for (int i = 0; i < text.Length; ) + { + int ind = text.IndexOf("\\", i); + if (tok != null) // if token in progress, set its length + { + int last = (ind == -1) ? text.Length : ind; + tok.Length = last - tok.Offset; + } + + if (ind == -1) break; // quit if not more markers + + tok = NextToken(text, ind); // start new token + + if (tok.IsParagraphStart) + inPublishable = tok.IsPublishable || + tok.IsChapter; + + if (inPublishable) + tokens.Add(tok); + + if (tok.IsChapter) + { + chapter = GetCVNumber(text, tok.Offset); + // Everything after \c is verse '0'. + // This allows the title of Psalms (\d) which are present in the Hebrew + // text to be considered verse text. + verse = "0"; + } + else if (tok.IsVerse) + { + // Add a token with just the verse number + verse = GetCVNumber(text, tok.Offset); + tok.Length = verse.Length; + + // Make another token to contain the verse text + tok = tok.Clone() as UnitTestUSFMTextToken; + tok.CharStyleName = ""; + tok.Offset += verse.Length; + tokens.Add(tok); + + // If number followed by a space, skip this + if (char.IsWhiteSpace(text[tok.Offset])) + tok.Offset += 1; + } + + tok.Chapter = chapter; + tok.Verse = verse; + + if (tok.IsNoteStart) + { + // Skip over the footnote caller + while (tok.Offset < text.Length) + { + char cc = text[tok.Offset]; + if (cc == '\\') + break; + if (char.IsWhiteSpace(cc)) + { + ++tok.Offset; + break; + } + + ++tok.Offset; + } + } + + i = tok.Offset; + } + + return tokens; + } + + // Scan tokens. Return publishable tokens. + // Set StyleName, IsPublishableText, IsVerseText, IsNoteText. + // Character style can override the IsVerseText feature of the pargraph styles. + private void CategorizeTokens(List<UnitTestUSFMTextToken> tokens) + { + List<string> noteEndMarkers = new List<string>(); + + bool inNote = false; + bool inPublishable = false; + bool paragraphStyleIsVerseText = false; + bool characterStyleIsVerseText = false; + + foreach (UnitTestUSFMTextToken tok in tokens) + { + if (tok.ParaStyleName == "") + { + // This is the second token created form splitting the verse number from \v N abc... + characterStyleIsVerseText = true; + paragraphStyleIsVerseText = true; + inPublishable = true; + inNote = false; + } + + else if (tok.IsChapter || tok.IsVerse) + { + if (tok.IsChapter) + paragraphStyleIsVerseText = false; + characterStyleIsVerseText = false; + inPublishable = true; + inNote = false; + } + + else if (tok.IsParagraphStart) + { + inPublishable = tok.IsPublishable; + paragraphStyleIsVerseText = tok.IsVerseTextStyle; + characterStyleIsVerseText = paragraphStyleIsVerseText; + inNote = false; + } + + else if (tok.IsNoteStart) + { + inNote = true; + + // We have to build a list of note end markers. Otherwise there + // is no way to distinguish between character end markers and + // note ending markers. Sigh. + if (!noteEndMarkers.Contains("f*")) + noteEndMarkers.Add("f*"); + if (!noteEndMarkers.Contains("x*")) + noteEndMarkers.Add("x*"); + } + + else if (tok.IsEndStyle) + { + if (noteEndMarkers.Contains(tok.CharStyleName)) + inNote = false; + + characterStyleIsVerseText = paragraphStyleIsVerseText; + tok.ParaStyleName = ""; + } + + else if (tok.IsCharacterStyle) + { + characterStyleIsVerseText = tok.IsVerseTextStyle; + } + + else { Debug.Assert(false); } + + tok.IsNoteText = inNote; + tok.IsPublishableText = inPublishable; + tok.IsVerseText = !inNote && characterStyleIsVerseText && paragraphStyleIsVerseText; + } + } + + // Create a new token. Set its Offset, BookText, StyleName. + private UnitTestUSFMTextToken NextToken(string text, int ind) + { + // When this loop is done j points to the first character that is not + // part of the marker. Note that the space in '\\p ' is considered part + // of the marker (it terminates the marker). The space in '\\nd* ' is not + // considered part of the marker. + int j; + string marker = ""; + for (j = ind + 1; j < text.Length; ++j) + { + if (text[j] <= 32) + { + marker = text.Substring(ind + 1, j - (ind + 1)); + j = j + 1; + if (j < text.Length && text[j] == '\n') + j = j + 1; + break; + } + if (text[j] == '*') + { + j = j + 1; + marker = text.Substring(ind + 1, j - (ind + 1)); + break; + } + } + + UnitTestUSFMTextToken tok = new UnitTestUSFMTextToken(); + tok.Offset = j; + tok.BookText = text; + if (IsParagraphStart(marker)) + tok.ParaStyleName = marker; + else + tok.CharStyleName = marker; + + return tok; + } + + /// <summary> + /// Determines whether the specified marker is a paragraph start marker. + /// </summary> + /// <param name="marker">The specified marker.</param> + /// <returns> + /// <c>true</c> if the specified marker is a paragraph start marker; otherwise, <c>false</c>. + /// </returns> + private bool IsParagraphStart(string marker) + { + if (marker == "id") return true; + if (marker == "rem") return true; + if (marker == "p") return true; + if (marker == "b") return true; + if (marker == "d") return true; + if (marker == "q1") return true; + if (marker == "q2") return true; + if (marker == "io") return true; + if (marker == "s") return true; + return false; + } + + /// <summary> + /// Return the text of a chapter or verse number starting at the + /// specified offset. + /// </summary> + /// <param name="text"></param> + /// <param name="offset"></param> + /// <returns></returns> + private string GetCVNumber(string text, int offset) + { + while (offset < text.Length && char.IsWhiteSpace(text[offset])) + ++offset; + + int start = offset; + + while (offset < text.Length && !char.IsWhiteSpace(text[offset]) && + text[offset] != '\\') + ++offset; + + string num = text.Substring(start, offset - start); + return num; + } + } +} diff --git a/Lib/src/ScrChecks/TextInventory.cs b/Lib/src/ScrChecks/TextInventory.cs new file mode 100644 index 0000000000..bdcdf38ac6 --- /dev/null +++ b/Lib/src/ScrChecks/TextInventory.cs @@ -0,0 +1,109 @@ +// Copyright (c) 2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using System.Text; +using System.Diagnostics; + +namespace SILUBS.ScriptureChecks +{ + /// <summary> + /// We keep inventories of various kinds of items in a text, e.g. characters, + /// repeated words, etc. For each item we store its textual form, the books + /// it occurs in (so that we can reasonably quickly go refind it), and the + /// number of times it occurs. + /// </summary> + public class TextInventoryItem + { + public enum ItemStatus { unknown, good, bad }; + + int count = 0; + + // This is a list of book numbers in ascending order with no duplicates allowed. + // We keep a list of book numbers in order to make it faster to go back and search + // for occurrences of this item in the project. + List<int> references = new List<int>(); + + public string Text; + + public ItemStatus Status = ItemStatus.unknown; // 'y', 'n', '?' + + public void AddReference(int bookNum) + { + count = count + 1; + if (references.Count == 0 || references[references.Count - 1] != bookNum) + { + // make sure the list is in ascending order + Debug.Assert(references.Count == 0 || + bookNum > references[references.Count - 1]); + references.Add(bookNum); + } + } + + public void AddReference(int bookNum, int Count) + { + int i = references.BinarySearch(bookNum); + if (i < 0) + references.Insert(~i, bookNum); + count = count + Count; + } + + public int Count { get { return count; } } + + public List<int> References + { + get { return references; } + } + + public string Books + { + get + { + string books = ""; + + foreach (int bookNum in references) + { + while (books.Length < bookNum - 1) + books += "0"; + books += "1"; + } + + return books; + } + } + } + + /// <summary> + /// A dictionary containing instances of tetual items indexed by their + /// text. Example: the repeated key "the". + /// </summary> + public class TextInventory : Dictionary<string, TextInventoryItem> + { + public TextInventoryItem GetValue(string key) + { + TextInventoryItem item; + + if (!this.TryGetValue(key, out item)) + { + item = new TextInventoryItem(); + item.Text = key; + this[key] = item; + } + + return item; + } + } + + //void InventoryBook(TextAnalyzer tkb) + //{ + // GetErrors(tkb); + + // foreach (TextToken tok in repeatedWords) + // { + // inventory.AddReference(tok.ToString(), tkb.BookNumber); + // } + //} + +} diff --git a/Lib/src/ScrChecks/VerseTextToken.cs b/Lib/src/ScrChecks/VerseTextToken.cs new file mode 100644 index 0000000000..6be545d07a --- /dev/null +++ b/Lib/src/ScrChecks/VerseTextToken.cs @@ -0,0 +1,155 @@ +// Copyright (c) 2009-2017 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using SIL.FieldWorks.Common.FwUtils; +using SIL.LCModel.Core.Scripture; + +namespace SILUBS.ScriptureChecks +{ + /// ------------------------------------------------------------------------------------------- + /// <summary> + /// The purpose of this class is to wrap the ITextTokens for the checks that are concerned + /// with verse text only in order to be able to deal with situations in which the + /// IsParagraphStart should be true but the tokenizer has set it to false. That happens for + /// tokens containing normal text that appears at the beginning of a paragraph but is + /// preceded in the paragraph by a chapter or verse number (or a combination of these). + /// If either of these token types exist at the beginning of a paragraph before the actual + /// body text, then we need to override the IsParagraphStart property to return true for + /// the first body text token. Where this was needed, it would have been great to just set + /// that property to true for the base token, but ITextToken doesn't define a setting for + /// that property and someone with whom I consulted on this, thought this solution may be a + /// better idea than to modify the interface to require one. --DDO (May 29, 2009 - TE-8050). + /// </summary> + /// ------------------------------------------------------------------------------------------- + public class VerseTextToken : ITextToken + { + private ITextToken m_token; + private bool m_fIsParagraphStart; + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Sets the base token. + /// </summary> + /// ------------------------------------------------------------------------------------ + internal ITextToken Token + { + get { return m_token; } + set + { + ITextToken prevToken = m_token; + m_token = value; + + if (prevToken != null) + { + if (prevToken.TextType == TextType.ChapterNumber || + prevToken.TextType == TextType.VerseNumber) + { + m_fIsParagraphStart = (prevToken.IsParagraphStart || m_fIsParagraphStart); + } + else + m_fIsParagraphStart = false; + } + } + } + + #region ITextToken Members + /// ------------------------------------------------------------------------------------ + /// <summary></summary> + /// ------------------------------------------------------------------------------------ + public bool IsParagraphStart + { + get + { + return (m_fIsParagraphStart || m_token.IsParagraphStart); + } + } + + /// ------------------------------------------------------------------------------------ + /// <summary></summary> + /// ------------------------------------------------------------------------------------ + public string CharStyleName + { + get { return m_token.CharStyleName; } + } + + /// ------------------------------------------------------------------------------------ + /// <summary></summary> + /// ------------------------------------------------------------------------------------ + public bool IsNoteStart + { + get { return m_token.IsNoteStart; } + } + + /// ------------------------------------------------------------------------------------ + /// <summary></summary> + /// ------------------------------------------------------------------------------------ + public string Locale + { + get { return m_token.Locale; } + } + + /// ------------------------------------------------------------------------------------ + /// <summary></summary> + /// ------------------------------------------------------------------------------------ + public BCVRef MissingEndRef + { + get { return m_token.MissingEndRef; } + set { m_token.MissingEndRef = value; } + } + + /// ------------------------------------------------------------------------------------ + /// <summary></summary> + /// ------------------------------------------------------------------------------------ + public BCVRef MissingStartRef + { + get { return m_token.MissingStartRef; } + set { m_token.MissingStartRef = value; } + } + + /// ------------------------------------------------------------------------------------ + /// <summary></summary> + /// ------------------------------------------------------------------------------------ + public string ParaStyleName + { + get { return m_token.ParaStyleName; } + } + + /// ------------------------------------------------------------------------------------ + /// <summary></summary> + /// ------------------------------------------------------------------------------------ + public string ScrRefString + { + get { return m_token.ScrRefString; } + set { m_token.ScrRefString = value; } + } + + /// ------------------------------------------------------------------------------------ + /// <summary></summary> + /// ------------------------------------------------------------------------------------ + public string Text + { + get { return m_token.Text; } + } + + /// ------------------------------------------------------------------------------------ + /// <summary></summary> + /// ------------------------------------------------------------------------------------ + public TextType TextType + { + get { return m_token.TextType; } + } + + /// ------------------------------------------------------------------------------------ + /// <summary></summary> + /// ------------------------------------------------------------------------------------ + public ITextToken Clone() + { + VerseTextToken verseToken = new VerseTextToken(); + verseToken.m_fIsParagraphStart = m_fIsParagraphStart; + verseToken.m_token = m_token; + return verseToken; + } + #endregion + } +} diff --git a/ReadMe.md b/ReadMe.md index 9d908aaf1f..95265c6e4f 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -9,6 +9,14 @@ New to FieldWorks development? Start here: > **Note**: We are migrating documentation from the [FwDocumentation wiki](https://github.com/sillsdev/FwDocumentation/wiki) into this repository. Some wiki content may be more recent until migration is complete. +## Linux and macOS + +This repository can be opened on Linux or macOS for editing, code search, documentation, specs, and agent-assisted review. + +Builds, tests, installer work, and developer-environment setup are Windows-only and are intentionally disabled on non-Windows hosts. + +If you need runnable output, use a Windows machine and run `./build.ps1` or `./test.ps1` there. + ## Developer Machine Setup For first-time setup on a Windows development machine: diff --git a/SDK_MIGRATION.md b/SDK_MIGRATION.md index e0a7b25139..6c9024aa09 100644 --- a/SDK_MIGRATION.md +++ b/SDK_MIGRATION.md @@ -262,7 +262,7 @@ With CPM ensuring all projects resolve to the same package version, most manual - Initializes VS Developer environment - Supports `/m` parallel builds - **Stale DLL detection**: Runs `Remove-StaleDlls.ps1` pre-build to catch version-mismatched binaries -- **Diagnostics config**: Optionally copies dev trace config for Debug builds (`-TraceCrashes` or `UseDevTraceConfig`) +- **Diagnostics config**: Optionally copies dev trace config for Debug builds (`-EnableTracing` or `UseDevTraceConfig`) - **Installer support**: `-BuildInstaller` flag triggers full installer build pipeline **Note**: `build.sh` is not supported in this repo (FieldWorks is Windows-first). Use `.\build.ps1`. diff --git a/Src/AppForTests.config b/Src/AppForTests.config index 71ef27fed2..0182a14f08 100644 --- a/Src/AppForTests.config +++ b/Src/AppForTests.config @@ -1,20 +1,23 @@ -<?xml version="1.0" encoding="utf-8" ?> +<?xml version="1.0" encoding="utf-8"?> <configuration> -<system.diagnostics> -<trace autoflush="false" indentsize="4"> -<listeners> -<clear/> -<add name="FwTraceListener" type="SIL.LCModel.Utils.EnvVarTraceListener, SIL.LCModel.Utils, Version=11.0.0.0, Culture=neutral" - initializeData="assertuienabled='false' assertexceptionenabled='true' logfilename='%temp%/asserts.log'"/> -</listeners> -</trace> -</system.diagnostics> -<runtime> -<generatePublisherEvidence enabled="false" /> -<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> -<!-- Binding redirects are auto-generated at build time - (AutoGenerateBindingRedirects=true in Directory.Build.props). - Do NOT add manual redirects here; they will drift from CPM versions. --> -</assemblyBinding> -</runtime> + <system.diagnostics> + <trace autoflush="false" indentsize="4"> + <listeners> + <clear /> + <add + name="FwTraceListener" + type="SIL.LCModel.Utils.EnvVarTraceListener, SIL.LCModel.Utils" + initializeData="assertuienabled='false' assertexceptionenabled='true' logfilename='%temp%/asserts.log'" + /> + </listeners> + </trace> + </system.diagnostics> + <runtime> + <generatePublisherEvidence enabled="false" /> + <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> + <!-- Binding redirects are auto-generated at build time + (AutoGenerateBindingRedirects=true in Directory.Build.props). + Do NOT add manual redirects here; they will drift from CPM versions. --> + </assemblyBinding> + </runtime> </configuration> diff --git a/Src/Common/Controls/DetailControls/DataTree.cs b/Src/Common/Controls/DetailControls/DataTree.cs index 0a02ea6748..1b68b9a708 100644 --- a/Src/Common/Controls/DetailControls/DataTree.cs +++ b/Src/Common/Controls/DetailControls/DataTree.cs @@ -138,6 +138,7 @@ public class DataTree : UserControl, IVwNotifyChange, IxCoreColleague, IRefresha // to allow slices to handle events (e.g. InflAffixTemplateSlice) protected Mediator m_mediator; protected PropertyTable m_propertyTable; + private int m_sliceInstallCreationCount; protected IRecordChangeHandler m_rch = null; protected IRecordListUpdater m_rlu = null; protected string m_listName; @@ -161,6 +162,34 @@ public class DataTree : UserControl, IVwNotifyChange, IxCoreColleague, IRefresha public List<Slice> Slices { get; private set; } + public int SliceInstallCreationCount => m_sliceInstallCreationCount; + + public void ResetSliceInstallCreationCount() + { + m_sliceInstallCreationCount = 0; + } + + public void IncrementSliceInstallCreationCount() + { + m_sliceInstallCreationCount++; + } + + /// <summary> + /// Tracks the highest slice index that has been made visible. Used by MakeSliceVisible + /// to avoid re-walking already-visible prefix on sequential calls. + /// Reset to -1 in CreateSlices and on any structural mutation of Slices. + /// This may be able to be optimized more, but this is the simplest, + /// "always works" solution. + /// </summary> + private int m_lastVisibleHighWaterMark = -1; + private int m_lastSlicePrewarmScrollTop = int.MinValue; + private int m_lastSlicePrewarmScrollDirection; + private int m_deferredSlicePrewarmStartIndex = -1; + private int m_deferredSlicePrewarmTargetIndex = -1; + private int m_deferredSlicePrewarmGeneration; + private bool m_deferredSlicePrewarmPending; + private bool m_deferredSlicePrewarmQueued; + #endregion Data members #region constants @@ -205,6 +234,9 @@ public enum LayoutStates : byte /// Control how much output we send to the application's listeners (e.g. visual studio output window) /// </summary> protected TraceSwitch m_traceSwitch = new TraceSwitch("DataTree", ""); + private static readonly bool s_enableInteractionTrace = IsOptInPerfFlagEnabled("FW_PERF_INTERACTION_TRACE"); + private static readonly int s_interactionTraceThresholdMs = GetPerfThresholdMs( + "FW_PERF_INTERACTION_TRACE_THRESHOLD_MS", 25); protected void TraceVerbose(string s) { if(m_traceSwitch.TraceVerbose) @@ -220,8 +252,51 @@ protected void TraceInfoLine(string s) if(m_traceSwitch.TraceInfo || m_traceSwitch.TraceVerbose) Trace.WriteLine("DataTreeThreadID="+System.Threading.Thread.CurrentThread.GetHashCode()+": "+s); } + private static bool IsOptInPerfFlagEnabled(string variableName) + { + var value = Environment.GetEnvironmentVariable(variableName); + if (string.IsNullOrEmpty(value)) + return false; + + return !string.Equals(value, "0", StringComparison.OrdinalIgnoreCase) && + !string.Equals(value, "false", StringComparison.OrdinalIgnoreCase) && + !string.Equals(value, "off", StringComparison.OrdinalIgnoreCase); + } + + private static int GetPerfThresholdMs(string variableName, int defaultValue) + { + var value = Environment.GetEnvironmentVariable(variableName); + if (int.TryParse(value, out var thresholdMs) && thresholdMs >= 0) + return thresholdMs; + + return defaultValue; + } + + private static void TraceInteractionTiming(string stage, long elapsedMs, string details) + { + if (!s_enableInteractionTrace || elapsedMs < s_interactionTraceThresholdMs) + return; + + Trace.WriteLine( + $"[FW_PERF_INTERACTION] [DataTree] Stage={stage} DurationMs={elapsedMs} {details}"); + } + + private static void TraceInteractionEvent(string stage, string details) + { + if (!s_enableInteractionTrace) + return; + + Trace.WriteLine( + $"[FW_PERF_INTERACTION] [DataTree] Stage={stage} {details}"); + } #endregion + protected virtual int ScrollSlicePrewarmPercentInScrollDirection => 200; + protected virtual int ScrollSlicePrewarmPercentAgainstScrollDirection => 0; + protected virtual int ScrollSlicePrewarmChunkSize => 10; + protected virtual int ScrollSlicePrewarmTimeBudgetMs => 25; + protected virtual IdleQueuePriority ScrollSlicePrewarmIdlePriority => IdleQueuePriority.Medium; + #region Slice collection manipulation methods private ToolTip ToolTip @@ -241,7 +316,11 @@ private ToolTip ToolTip private void InsertSlice(int index, Slice slice) { InstallSlice(slice, index); - ResetTabIndices(index); + InvalidateVisibleSliceHighWaterMark(); + // Skip per-slice tab index reset during bulk construction; CreateSlices() + // performs a single ResetTabIndices(0) after all slices are created. + if (!ConstructingSlices) + ResetTabIndices(index); if (m_fSetCurrentSliceNew && !slice.IsHeaderNode) { m_fSetCurrentSliceNew = false; @@ -267,9 +346,12 @@ private void InstallSlice(Slice slice, int index) SetToolTip(slice); slice.ResumeLayout(); - // Make sure it isn't added twice. - SplitContainer sc = slice.SplitCont; - AdjustSliceSplitPosition(slice); + // Skip per-slice splitter adjustment during bulk construction; + // HandleLayout1 sets correct widths + positions after construction completes. + if (!ConstructingSlices) + { + AdjustSliceSplitPosition(slice); + } } /// <summary> @@ -282,9 +364,20 @@ private void ForceSliceIndex(Slice slice, int index) { Slices.Remove(slice); Slices.Insert(index, slice); + InvalidateVisibleSliceHighWaterMark(); } } + /// <summary> + /// The MakeSliceVisible cache is only valid while the current Slices ordering stays intact. + /// Any insert, remove, or reorder can move an invisible slice into the cached visible prefix, + /// so the conservative fix is to drop the cache and rebuild it on demand. + /// </summary> + private void InvalidateVisibleSliceHighWaterMark() + { + m_lastVisibleHighWaterMark = -1; + } + private void SetToolTip(Slice slice) { if (slice.ToolTip != null) @@ -316,8 +409,6 @@ void slice_SplitterMoved(object sender, SplitterEventArgs e) } } ResumeLayout(false); - // This can affect the lines between the slices. We need to redraw them but not the - // slices themselves. Invalidate(false); movedSlice.TakeFocus(); } @@ -334,6 +425,10 @@ private void AdjustSliceSplitPosition(Slice otherSlice) protected override void OnSizeChanged(EventArgs e) { base.OnSizeChanged(e); + // Skip O(N) splitter adjustment during bulk slice construction — + // HandleLayout1 will set correct widths + positions after construction. + if (ConstructingSlices) + return; foreach (Slice slice in Slices) { AdjustSliceSplitPosition(slice); @@ -392,6 +487,7 @@ private void RemoveSlice(Slice gonner, int index) internal void RemoveDisposedSlice(Slice gonner) { Slices.Remove(gonner); + InvalidateVisibleSliceHighWaterMark(); } private void RemoveSlice(Slice gonner, int index, bool fixToolTips) @@ -401,6 +497,7 @@ private void RemoveSlice(Slice gonner, int index, bool fixToolTips) Controls.Remove(gonner); Debug.Assert(Slices[index] == gonner); Slices.RemoveAt(index); + InvalidateVisibleSliceHighWaterMark(); // Reset CurrentSlice, if appropriate. if (gonner == m_currentSlice) @@ -444,7 +541,10 @@ private void RemoveSlice(Slice gonner, int index, bool fixToolTips) SetToolTip(keeper); } - ResetTabIndices(index); + // Skip per-slice tab index reset during bulk construction; CreateSlices() + // performs a single ResetTabIndices(0) after all slices are created. + if (!ConstructingSlices) + ResetTabIndices(index); } private void SetTabIndex(int index) @@ -473,6 +573,9 @@ public DataTree() { // string objName = ToString() + GetHashCode().ToString(); // Debug.WriteLine("Creating object:" + objName); + SetStyle(ControlStyles.OptimizedDoubleBuffer | ControlStyles.AllPaintingInWmPaint, true); + UpdateStyles(); + Slices = new List<Slice>(); m_autoCustomFieldNodesDocument = new XmlDocument(); m_autoCustomFieldNodesDocRoot = m_autoCustomFieldNodesDocument.CreateElement("root"); @@ -681,8 +784,9 @@ public Slice CurrentSlice // Tell the old geezer it isn't current anymore. if (m_currentSlice != null) { - m_currentSlice.Validate(); - if (m_currentSlice.Control is ContainerControl) + if (m_currentSlice.IsHandleCreated) + m_currentSlice.Validate(); + if (m_currentSlice.IsHandleCreated && m_currentSlice.Control is ContainerControl) ((ContainerControl)m_currentSlice.Control).Validate(); m_currentSlice.SetCurrentState(false); } @@ -816,6 +920,7 @@ public void Reset() } Controls.Clear(); //clear the controls Slices.Clear(); //empty the slices collection + InvalidateVisibleSliceHighWaterMark(); foreach (var slice in slices) //make sure the slices don't think they are active, dispose them { slice.SetCurrentState(false); @@ -1536,10 +1641,12 @@ private void CreateSlices(bool differentObject) { var watch = new Stopwatch(); watch.Start(); + ResetSliceInstallCreationCount(); bool wasVisible = this.Visible; var previousSlices = new ObjSeqHashMap(); int oldSliceCount = Slices.Count; ConstructingSlices = true; + m_lastVisibleHighWaterMark = -1; // Reset visibility tracking for fresh slice construction. try { // Bizarrely, calling Hide has been known to cause OnEnter to be called in a slice; we need to suppress this, @@ -1586,10 +1693,13 @@ private void CreateSlices(bool differentObject) foreach (Slice keeper in Slices) SetToolTip(keeper); } - ResetTabIndices(0); } finally { + // Keep tab indices consistent even if slice generation throws. + // This also serves as the single bulk reset for per-slice InsertSlice calls + // during ConstructingSlices. + ResetTabIndices(0); ConstructingSlices = false; } if (wasVisible) @@ -1654,13 +1764,10 @@ private static bool IsChildSlice(Slice first, Slice second) /// <summary> /// This actually handles Paint for the contained control that has the slice controls in it. /// </summary> - /// <param name="pea">The <see cref="System.Windows.Forms.PaintEventArgs"/> instance containing the event data.</param> - void HandlePaintLinesBetweenSlices(PaintEventArgs pea) + private void PaintLinesBetweenSlices(Graphics gr, Rectangle clipRect, int width) { - Graphics gr = pea.Graphics; - UserControl uc = this; - // Where we're drawing. - int width = uc.Width; + // Maximum vertical extent a separator can occupy (heavy rule + above-margin). + int maxLineExtent = HeavyweightRuleThickness + HeavyweightRuleAboveMargin; using (var thinPen = new Pen(Color.LightGray, 1)) using (var thickPen = new Pen(Color.LightGray, 1 + HeavyweightRuleThickness)) { @@ -1669,13 +1776,21 @@ void HandlePaintLinesBetweenSlices(PaintEventArgs pea) var slice = Slices[i] as Slice; if (slice == null) continue; - // shouldn't be visible + + // Clip-rect culling: skip separator lines entirely outside the paint region. + // Slice positions are monotonically increasing (set sequentially by HandleLayout1), + // so once we pass the bottom of the clip rect we can stop. + Point loc = slice.Location; + int yPos = loc.Y + slice.Height; + if (yPos + maxLineExtent < clipRect.Top) + continue; // separator is above the paint region + if (loc.Y > clipRect.Bottom) + break; // all remaining slices are below the paint region + Slice nextSlice = null; if (i < Slices.Count - 1) nextSlice = Slices[i + 1] as Slice; Pen linePen = thinPen; - Point loc = slice.Location; - int yPos = loc.Y + slice.Height; int xPos = loc.X + slice.LabelIndent(); if (nextSlice != null) @@ -1686,19 +1801,18 @@ void HandlePaintLinesBetweenSlices(PaintEventArgs pea) //drop the next line unless the next slice is going to be a header, too // (as is the case with empty sections), or isn't indented (as for the line following // the empty 'Subclasses' heading in each inflection class). - if (XmlUtils.GetOptionalBooleanAttributeValue(slice.ConfigurationNode, "header", false) + if (slice.IsHeader && nextSlice.Weight != ObjectWeight.heavy && IsChildSlice(slice, nextSlice)) continue; //LT-11962 Improvements to display in Info tab. // (remove the line directly below the Notebook Record header) - if (XmlUtils.GetOptionalBooleanAttributeValue(slice.ConfigurationNode, "skipSpacerLine", false) && - slice is SummarySlice) + if (slice.SkipSpacerLine && slice is SummarySlice) continue; // Check for attribute that the next slice should be grouped with the current slice // regardless of whether they represent the same object. - bool fSameObject = XmlUtils.GetOptionalBooleanAttributeValue(nextSlice.ConfigurationNode, "sameObject", false); + bool fSameObject = nextSlice.SameObject; xPos = Math.Min(xPos, loc.X + nextSlice.LabelIndent()); if (nextSlice.Weight == ObjectWeight.heavy) @@ -3127,12 +3241,18 @@ public virtual Slice MakeEditorAt(int i) public Slice FieldAt(int i) { CheckDisposed(); + Stopwatch stopwatch = null; + int expansionCount = 0; + if (s_enableInteractionTrace) + stopwatch = Stopwatch.StartNew(); + Slice slice = FieldOrDummyAt(i); // Keep trying until we get a real slice. It's possible, for example, that the first object // in a sequence expands into an embedded lazy sequence, which in turn needs to have its // first item made real. while (!slice.IsRealSlice) { + expansionCount++; var oldState = m_layoutState; // guard against OnPaint() while slice is being constructed. Especially dangerous if it is a view, // which might end up doing a re-entrant call to Construct() the root box. LT-11052. @@ -3165,6 +3285,12 @@ public Slice FieldAt(int i) m_layoutState = oldState; } } + if (stopwatch != null) + { + stopwatch.Stop(); + TraceInteractionTiming("FieldAt", stopwatch.ElapsedMilliseconds, + $"Index={i} Expansions={expansionCount} IsRealSlice={slice != null && slice.IsRealSlice}"); + } return slice; } /// <summary> @@ -3301,22 +3427,80 @@ protected override void OnLayout(LayoutEventArgs levent) } } + /// <summary> + /// Binary search for the index of the first slice whose bottom edge extends + /// below <paramref name="clipTop"/>. Slices before this index are entirely + /// above the viewport and can be skipped in the paint path. + /// Returns 0 if no slices can be safely skipped (e.g., all are visible or a + /// null entry is encountered during the search). + /// </summary> + /// <param name="clipTop">The Y coordinate of the top of the clip rectangle.</param> + /// <returns>Index of the first slice that might be visible.</returns> + private int FindFirstPotentiallyVisibleSlice(int clipTop) + { + int lo = 0, hi = Slices.Count - 1; + int result = 0; + + while (lo <= hi) + { + int mid = lo + (hi - lo) / 2; + var slice = Slices[mid] as Slice; + if (slice == null) + return result; // Can't binary search past null; use best result so far + + int sliceBottom = slice.Top + slice.Height; + if (sliceBottom <= clipTop) + { + // Slice ends at or before the clip top — entirely above viewport. + result = mid + 1; + lo = mid + 1; + } + else + { + // Slice extends below clip top — could be visible. + hi = mid - 1; + } + } + + // Back up by one slice as a safety margin for heavyweight spacing or + // off-by-one edge cases. Cost: one extra loop iteration. + return Math.Max(0, result - 1); + } + /// <summary> /// Used both by main layout routine and also by OnPaint to make sure all /// visible slices are real. For full layout, clipRect is meaningless. + /// On the paint path (!fFull), uses a binary search to skip above-viewport + /// slices, reducing each paint from O(N) to O(log N + V) where V is the + /// number of visible slices. /// </summary> /// <param name="fFull">if set to <c>true</c> [f full].</param> /// <param name="clipRect">The clip rect.</param> /// <returns></returns> protected internal int HandleLayout1(bool fFull, Rectangle clipRect) { + Stopwatch layoutStopwatch = null; + long fieldAtMs = 0; + int fieldAtCount = 0; + long makeVisibleMs = 0; + int makeVisibleCount = 0; + int visibleSliceCount = 0; + if (s_enableInteractionTrace && !fFull) + layoutStopwatch = Stopwatch.StartNew(); + if (m_fDisposing) - return clipRect.Bottom; // don't want to lay out while clearing slices in dispose! + { + if (layoutStopwatch != null) + { + layoutStopwatch.Stop(); + TraceInteractionTiming("HandleLayout1.PaintPath", layoutStopwatch.ElapsedMilliseconds, + $"Reason=disposing ClipTop={clipRect.Top} ClipBottom={clipRect.Bottom}"); + } + return clipRect.Bottom; + } int minHeight = GetMinFieldHeight(); int desiredWidth = ClientRectangle.Width; - - // FWNX-370: work around https://bugzilla.novell.com/show_bug.cgi?id=609596 if (Platform.IsMono && VerticalScroll.Visible) desiredWidth -= SystemInformation.VerticalScrollBarWidth; @@ -3324,77 +3508,282 @@ protected internal int HandleLayout1(bool fFull, Rectangle clipRect) var desiredScrollPosition = new Point(-oldPos.X, -oldPos.Y); int yTop = AutoScrollPosition.Y; - for (int i = 0; i < Slices.Count; i++) + int startIndex = 0; + int firstIndexBelowViewport = -1; + if (!fFull && Slices.Count > 0) + { + startIndex = FindFirstPotentiallyVisibleSlice(clipRect.Top); + if (startIndex > 0) + { + var startSlice = Slices[startIndex] as Slice; + if (startSlice != null) + { + yTop = startSlice.Top; + if (startSlice.Weight == ObjectWeight.heavy) + yTop -= (HeavyweightRuleThickness + HeavyweightRuleAboveMargin); + } + else + { + startIndex = 0; + } + } + } + + for (int i = startIndex; i < Slices.Count; i++) { - // Don't care about items below bottom of clip, if one is specified. if ((!fFull) && yTop >= clipRect.Bottom) { - return yTop - AutoScrollPosition.Y; // not very meaningful in this case, but a result is required. + firstIndexBelowViewport = i; + QueueDeferredSlicePrewarm(firstIndexBelowViewport); + if (layoutStopwatch != null) + { + layoutStopwatch.Stop(); + TraceInteractionTiming("HandleLayout1.PaintPath", layoutStopwatch.ElapsedMilliseconds, + $"StartIndex={startIndex} VisibleSlices={visibleSliceCount} FieldAtCount={fieldAtCount} FieldAtMs={fieldAtMs} MakeVisibleCount={makeVisibleCount} MakeVisibleMs={makeVisibleMs} ClipTop={clipRect.Top} ClipBottom={clipRect.Bottom} Exit=below-clip"); + } + return yTop - AutoScrollPosition.Y; } + var tci = Slices[i] as Slice; - // Best guess of its height, before we ensure it's real. int defHeight = tci == null ? minHeight : tci.Height; bool fSliceIsVisible = !fFull && yTop + defHeight > clipRect.Top && yTop <= clipRect.Bottom; - //Debug.WriteLine(String.Format("DataTree.HandleLayout1({3},{4}): fSliceIsVisible = {5}, i = {0}, defHeight = {1}, yTop = {2}, desiredWidth = {7}, tci.Config = {6}", - // i, defHeight, yTop, fFull, clipRect.ToString(), fSliceIsVisible, tci.ConfigurationNode.OuterXml, desiredWidth)); - if (fSliceIsVisible) { - // We cannot allow slice to be unreal; it's visible, and we're checking - // for real slices where they're visible - tci = FieldAt(i); // ensures it becomes real if needed. - var dummy = tci.Handle; // also force it to get a handle + visibleSliceCount++; + Stopwatch fieldAtStopwatch = null; + if (layoutStopwatch != null) + fieldAtStopwatch = Stopwatch.StartNew(); + tci = FieldAt(i); + if (fieldAtStopwatch != null) + { + fieldAtStopwatch.Stop(); + fieldAtCount++; + fieldAtMs += fieldAtStopwatch.ElapsedMilliseconds; + } + var dummy = tci.Handle; if (tci.Control != null) - dummy = tci.Control.Handle; // and its control must too. + dummy = tci.Control.Handle; if (yTop < 0) { - // It starts above the top of the window. We need to adjust the scroll position - // by the difference between the expected and actual heights. - // This can have side effects, don't do unless needed. - // The slice will now handle the conditioanl execution. - //if (tci.Width != desiredWidth) - tci.SetWidthForDataTreeLayout(desiredWidth); + tci.SetWidthForDataTreeLayout(desiredWidth); desiredScrollPosition.Y -= (defHeight - tci.Height); } } + if (tci == null) { yTop += minHeight; } else { - // Move this slice down a little if it needs a heavy rule above it if (tci.Weight == ObjectWeight.heavy) yTop += HeavyweightRuleThickness + HeavyweightRuleAboveMargin; if (tci.Top != yTop) tci.Top = yTop; - // This can have side effects, don't do unless needed. - // The slice will now handle the conditional execution. - //if (tci.Width != desiredWidth) + if (fFull || fSliceIsVisible) tci.SetWidthForDataTreeLayout(desiredWidth); yTop += tci.Height + 1; if (fSliceIsVisible) { - MakeSliceVisible(tci); + Stopwatch makeVisibleStopwatch = null; + if (layoutStopwatch != null) + makeVisibleStopwatch = Stopwatch.StartNew(); + MakeSliceVisible(tci, i); + if (makeVisibleStopwatch != null) + { + makeVisibleStopwatch.Stop(); + makeVisibleCount++; + makeVisibleMs += makeVisibleStopwatch.ElapsedMilliseconds; + } } } } - // In the course of making slices real or adjusting their width they may have changed height (more strictly, its - // real height may be different from the previous estimated height). - // If it was previously above the top of the window, this can produce an unwanted - // change in the visble position of previously visible slices. - // The scroll position may also have changed as a result of the blankety blank - // blank undocumented behavior of the UserControl class trying to make what it - // thinks is the interesting child control visible. - // In case it changed, try to change it back! - // (This might not always succeed, if the scroll range changed so as to make the old position invalid. + if (-AutoScrollPosition.Y != desiredScrollPosition.Y) AutoScrollPosition = desiredScrollPosition; + if (!fFull) + QueueDeferredSlicePrewarm(firstIndexBelowViewport >= 0 ? firstIndexBelowViewport : Slices.Count); + if (layoutStopwatch != null) + { + layoutStopwatch.Stop(); + TraceInteractionTiming("HandleLayout1.PaintPath", layoutStopwatch.ElapsedMilliseconds, + $"StartIndex={startIndex} VisibleSlices={visibleSliceCount} FieldAtCount={fieldAtCount} FieldAtMs={fieldAtMs} MakeVisibleCount={makeVisibleCount} MakeVisibleMs={makeVisibleMs} ClipTop={clipRect.Top} ClipBottom={clipRect.Bottom} Exit=complete"); + } return yTop - AutoScrollPosition.Y; } - private void MakeSliceRealAt(int i) + private int GetSlicePrewarmPixels(int viewportPercent) + { + if (viewportPercent <= 0 || ClientRectangle.Height <= 0) + return 0; + + long pixels = (long)ClientRectangle.Height * viewportPercent / 100; + return Math.Max(1, (int)pixels); + } + + private void QueueDeferredSlicePrewarm(int firstIndexBelowViewport) + { + if (m_fDisposing || !Visible || !IsHandleCreated || ClientRectangle.Height <= 0 || Slices.Count == 0) + return; + if (m_lastSlicePrewarmScrollDirection == 0) + return; + + int viewportTop = -AutoScrollPosition.Y; + int viewportBottom = viewportTop + ClientRectangle.Height; + int topMargin = m_lastSlicePrewarmScrollDirection > 0 + ? GetSlicePrewarmPixels(ScrollSlicePrewarmPercentAgainstScrollDirection) + : GetSlicePrewarmPixels(ScrollSlicePrewarmPercentInScrollDirection); + int bottomMargin = m_lastSlicePrewarmScrollDirection > 0 + ? GetSlicePrewarmPixels(ScrollSlicePrewarmPercentInScrollDirection) + : GetSlicePrewarmPixels(ScrollSlicePrewarmPercentAgainstScrollDirection); + if (topMargin <= 0 && bottomMargin <= 0) + return; + + int targetY = m_lastSlicePrewarmScrollDirection >= 0 + ? viewportBottom + bottomMargin + : Math.Max(0, viewportTop - topMargin); + int targetIndex = IndexOfSliceAtY(targetY); + if (targetIndex < 0) + targetIndex = Slices.Count - 1; + + int startIndex = firstIndexBelowViewport; + if (m_lastSlicePrewarmScrollDirection < 0) + startIndex = Math.Max(0, IndexOfSliceAtY(Math.Max(0, viewportTop - topMargin))); + else if (startIndex < 0) + startIndex = Math.Max(0, IndexOfSliceAtY(viewportBottom)); + + startIndex = Math.Max(0, Math.Min(startIndex, Slices.Count - 1)); + targetIndex = Math.Max(0, Math.Min(targetIndex, Slices.Count - 1)); + int direction = m_lastSlicePrewarmScrollDirection; + if ((direction > 0 && startIndex > targetIndex) || + (direction < 0 && targetIndex > startIndex)) + { + return; + } + + bool restartingRange = !m_deferredSlicePrewarmPending || + (direction > 0 && targetIndex > m_deferredSlicePrewarmTargetIndex) || + (direction < 0 && targetIndex < m_deferredSlicePrewarmTargetIndex) || + (direction > 0 && startIndex > m_deferredSlicePrewarmTargetIndex) || + (direction < 0 && startIndex < m_deferredSlicePrewarmTargetIndex); + + if (!m_deferredSlicePrewarmPending) + { + m_deferredSlicePrewarmStartIndex = startIndex; + m_deferredSlicePrewarmTargetIndex = targetIndex; + m_deferredSlicePrewarmGeneration++; + } + else if (direction > 0) + { + m_deferredSlicePrewarmStartIndex = Math.Max(m_deferredSlicePrewarmStartIndex, startIndex); + m_deferredSlicePrewarmTargetIndex = Math.Max(m_deferredSlicePrewarmTargetIndex, targetIndex); + if (restartingRange) + m_deferredSlicePrewarmGeneration++; + } + else + { + m_deferredSlicePrewarmStartIndex = Math.Min(m_deferredSlicePrewarmStartIndex, startIndex); + m_deferredSlicePrewarmTargetIndex = Math.Min(m_deferredSlicePrewarmTargetIndex, targetIndex); + if (restartingRange) + m_deferredSlicePrewarmGeneration++; + } + + if ((direction > 0 && m_deferredSlicePrewarmStartIndex > m_deferredSlicePrewarmTargetIndex) || + (direction < 0 && m_deferredSlicePrewarmStartIndex < m_deferredSlicePrewarmTargetIndex)) + { + m_deferredSlicePrewarmPending = false; + return; + } + + m_deferredSlicePrewarmPending = true; + TraceInteractionEvent( + "DeferredSlicePrewarm.Plan", + $"Direction={direction} StartIndex={m_deferredSlicePrewarmStartIndex} TargetIndex={m_deferredSlicePrewarmTargetIndex} ViewTop={viewportTop} ViewBottom={viewportBottom} FirstBelowViewport={firstIndexBelowViewport} ChunkSize={ScrollSlicePrewarmChunkSize} BudgetMs={ScrollSlicePrewarmTimeBudgetMs} Restarting={restartingRange}"); + QueueDeferredSlicePrewarmOnIdle(); + } + + private void QueueDeferredSlicePrewarmOnIdle() + { + if (!m_deferredSlicePrewarmPending || m_fDisposing || !Visible || !IsHandleCreated) + return; + + if (m_mediator != null) + { + m_mediator.IdleQueue.Add( + ScrollSlicePrewarmIdlePriority, + ContinueDeferredSlicePrewarmOnIdle, + m_deferredSlicePrewarmGeneration, + true); + return; + } + + if (m_deferredSlicePrewarmQueued) + return; + + m_deferredSlicePrewarmQueued = true; + BeginInvoke((MethodInvoker)delegate + { + m_deferredSlicePrewarmQueued = false; + if (!ContinueDeferredSlicePrewarmOnIdle(m_deferredSlicePrewarmGeneration)) + QueueDeferredSlicePrewarmOnIdle(); + }); + } + + private bool ContinueDeferredSlicePrewarmOnIdle(object generationState) + { + if (!m_deferredSlicePrewarmPending || m_fDisposing) + return true; + if (!Visible || !IsHandleCreated || m_layoutState != LayoutStates.klsNormal) + return false; + + int generation = generationState is int value ? value : m_deferredSlicePrewarmGeneration; + if (generation != m_deferredSlicePrewarmGeneration) + return true; + + Stopwatch stopwatch = Stopwatch.StartNew(); + int slicesWarmed = 0; + int initialIndex = m_deferredSlicePrewarmStartIndex; + while (m_deferredSlicePrewarmPending && slicesWarmed < ScrollSlicePrewarmChunkSize) + { + if (stopwatch.ElapsedMilliseconds >= ScrollSlicePrewarmTimeBudgetMs) + break; + + int index = m_deferredSlicePrewarmStartIndex; + if (index < 0 || index >= Slices.Count) + { + m_deferredSlicePrewarmPending = false; + break; + } + + if (m_lastSlicePrewarmScrollDirection > 0 && index > m_deferredSlicePrewarmTargetIndex) + { + m_deferredSlicePrewarmPending = false; + break; + } + if (m_lastSlicePrewarmScrollDirection < 0 && index < m_deferredSlicePrewarmTargetIndex) + { + m_deferredSlicePrewarmPending = false; + break; + } + + if (Slices[index] is Slice) + MakeSliceRealAt(index, false); + + m_deferredSlicePrewarmStartIndex += m_lastSlicePrewarmScrollDirection >= 0 ? 1 : -1; + slicesWarmed++; + } + + stopwatch.Stop(); + TraceInteractionTiming( + "DeferredSlicePrewarm.Idle", + stopwatch.ElapsedMilliseconds, + $"Direction={m_lastSlicePrewarmScrollDirection} InitialIndex={initialIndex} NextIndex={m_deferredSlicePrewarmStartIndex} TargetIndex={m_deferredSlicePrewarmTargetIndex} SlicesWarmed={slicesWarmed} Pending={m_deferredSlicePrewarmPending}"); + + return !m_deferredSlicePrewarmPending; + } + + private void MakeSliceRealAt(int i, bool ensureVisible = true) { // We cannot allow slice to be unreal; it's visible, and we're checking // for real slices where they're visible @@ -3418,9 +3807,12 @@ private void MakeSliceRealAt(int i) var desiredScrollPosition = new Point(-oldPos.X, -oldPos.Y); // topAbs is the position of the slice relative to the top of the whole view contents now. int topAbs = tci.Top - AutoScrollPosition.Y; - MakeSliceVisible(tci); // also required for it to be a real tab stop. + if (ensureVisible) + MakeSliceVisible(tci); // also required for it to be a real tab stop. + else + tci.ShowSubControls(); - if (topAbs < desiredScrollPosition.Y) + if (ensureVisible && topAbs < desiredScrollPosition.Y) { // It was above the top of the window. We need to adjust the scroll position // by the difference between the expected and actual heights. @@ -3434,23 +3826,41 @@ private void MakeSliceRealAt(int i) /// Make a slice visible, either because it needs to be drawn, or because it needs to be /// focused. /// </summary> - /// <param name="tci"></param> - internal static void MakeSliceVisible(Slice tci) + /// <param name="tci">The slice to make visible.</param> + /// <param name="knownIndex"> + /// The slice's known index in Slices, or -1 to look it up via IndexOf. + /// Passing the index avoids an O(N) IndexOf call when the caller already knows it. + /// </param> + internal void MakeSliceVisible(Slice tci, int knownIndex = -1) { + Stopwatch stopwatch = null; + int newlyVisibleSiblingCount = 0; + bool sliceAlreadyVisible = tci.Visible; + if (s_enableInteractionTrace) + stopwatch = Stopwatch.StartNew(); + // It intersects the screen so it needs to be visible. if (!tci.Visible) { - int index = tci.IndexInContainer; + int index = knownIndex >= 0 ? knownIndex : Slices.IndexOf(tci); // All previous slices must be "visible". Otherwise, the index of the current // slice gets changed when it becomes visible due to what is presumably a bug // in the dotnet framework. - for (int i = 0; i < index; ++i) + // Optimization: start from m_lastVisibleHighWaterMark + 1 instead of 0, + // since slices before the high-water mark are already visible from prior calls. + int start = Math.Max(0, m_lastVisibleHighWaterMark + 1); + for (int i = start; i < index; ++i) { - Control ctrl = tci.ContainingDataTree.Slices[i]; + Control ctrl = Slices[i]; if (ctrl != null && !ctrl.Visible) + { ctrl.Visible = true; + newlyVisibleSiblingCount++; + } } tci.Visible = true; + if (index > m_lastVisibleHighWaterMark) + m_lastVisibleHighWaterMark = index; Debug.Assert(tci.IndexInContainer == index, String.Format("MakeSliceVisible: slice '{0}' at index({2}) should not have changed to index ({1})." + " This can occur when making slices visible in an order different than their order in DataTree.Slices. See LT-7307.", @@ -3463,6 +3873,12 @@ internal static void MakeSliceVisible(Slice tci) tci.Control.AccessibilityObject.Name = tci.Label;// + "ZZZ_Slice"; } tci.ShowSubControls(); + if (stopwatch != null) + { + stopwatch.Stop(); + TraceInteractionTiming("MakeSliceVisible", stopwatch.ElapsedMilliseconds, + $"SliceLabel={tci.Label ?? "(null)"} AlreadyVisible={sliceAlreadyVisible} NewlyVisibleSiblings={newlyVisibleSiblingCount}"); + } } public int GetMinFieldHeight() @@ -3559,6 +3975,14 @@ public int IndexOfSliceAtY(int yp) protected override void OnPaint(PaintEventArgs e) { + int previousScrollTop = m_lastSlicePrewarmScrollTop == int.MinValue + ? -AutoScrollPosition.Y + : m_lastSlicePrewarmScrollTop; + int currentScrollTop = -AutoScrollPosition.Y; + if (currentScrollTop != previousScrollTop) + m_lastSlicePrewarmScrollDirection = Math.Sign(currentScrollTop - previousScrollTop); + m_lastSlicePrewarmScrollTop = currentScrollTop; + if (m_layoutState != LayoutStates.klsNormal) { // re-entrant call, in the middle of doing layout! Suppress it. But, we need to paint sometime... @@ -3574,8 +3998,8 @@ protected override void OnPaint(PaintEventArgs e) } try { - // Optimize JohnT: Could we do a binary search for the - // slice at the top? But the chop point slices may not be real... + // Paint-path binary search: HandleLayout1 now uses FindFirstPotentiallyVisibleSlice + // to skip above-viewport slices (addresses JohnT's original TODO). m_layoutState = LayoutStates.klsChecking; Rectangle requiredReal = ClientRectangle; // all slices in this must be real HandleLayout1(false, requiredReal); @@ -3589,11 +4013,15 @@ protected override void OnPaint(PaintEventArgs e) PerformLayout(); if (AutoScrollPosition != oldPos) AutoScrollPosition = new Point(-oldPos.X, -oldPos.Y); + // Layout recovery can complete this paint pass without reaching the normal + // line-paint path below. Redraw separators now so they do not disappear + // until a follow-up paint arrives. + PaintLinesBetweenSlices(e.Graphics, ClientRectangle, ClientRectangle.Width); } else { base.OnPaint(e); - HandlePaintLinesBetweenSlices(e); + PaintLinesBetweenSlices(e.Graphics, e.ClipRectangle, ClientRectangle.Width); } } finally @@ -3620,6 +4048,33 @@ protected override void OnPaint(PaintEventArgs e) } } + protected override void WndProc(ref Message m) + { + base.WndProc(ref m); + // After any scroll input (scrollbar drag, mouse wheel, horizontal wheel), + // force the parent background to repaint so separator lines are redrawn at + // correct positions. Without this, Windows bitblts stale line pixels + // from the old scroll position and only repaints the newly-exposed strip. + // Invalidate(false) skips child invalidation — slice HWNDs repaint + // themselves — so only the gap areas between slices are redrawn. + // Update() forces synchronous processing so stale lines don't accumulate + // across multiple scroll events before the low-priority WM_PAINT fires. + const int WM_VSCROLL = 0x0115; + const int WM_HSCROLL = 0x0114; + const int WM_MOUSEWHEEL = 0x020A; + const int WM_MOUSEHWHEEL = 0x020E; + switch (m.Msg) + { + case WM_VSCROLL: + case WM_HSCROLL: + case WM_MOUSEWHEEL: + case WM_MOUSEHWHEEL: + Invalidate(false); + Update(); + break; + } + } + #region automated tree navigation /// <summary> @@ -3660,7 +4115,7 @@ internal bool GotoNextSliceAfterIndex(int index) while (index >= 0 && index < Slices.Count) { Slice current = FieldAt(index); - MakeSliceVisible(current); + MakeSliceVisible(current, index); if (current.TakeFocus(false)) { if (m_currentSlice != current) @@ -3682,7 +4137,7 @@ public bool GotoPreviousSliceBeforeIndex(int index) while (index >= 0 && index < Slices.Count) { Slice current = FieldAt(index); - MakeSliceVisible(current); + MakeSliceVisible(current, index); if (current.TakeFocus(false)) { if (m_currentSlice != current) @@ -4719,14 +5174,24 @@ public override Slice BecomeReal(int index) // Save these, we may get disposed soon, can't get them from member data any more. DataTree containingTree = ContainingDataTree; - Control parent = Parent; var parentSlice = ParentSlice; path.Add(hvo); var objItem = ContainingDataTree.Cache.ServiceLocator.GetInstance<ICmObjectRepository>().GetObject(hvo); Point oldPos = ContainingDataTree.AutoScrollPosition; - ContainingDataTree.CreateSlicesFor(objItem, parentSlice, m_layoutName, m_layoutChoiceField, m_indent, index + 1, path, - new ObjSeqHashMap(), m_caller); + // Suspend layout during lazy expansion to avoid per-slice layout passes. + // ShowObject and RefreshList already do this, but BecomeReal is called + // independently when dummy slices become visible during scrolling. + containingTree.DeepSuspendLayout(); + try + { + ContainingDataTree.CreateSlicesFor(objItem, parentSlice, m_layoutName, m_layoutChoiceField, m_indent, index + 1, path, + new ObjSeqHashMap(), m_caller); + } + finally + { + containingTree.DeepResumeLayout(); + } // If inserting slices somehow altered the scroll position, for example as the // silly Panel tries to make the selected control visible, put it back! if (containingTree.AutoScrollPosition != oldPos) @@ -4736,12 +5201,5 @@ public override Slice BecomeReal(int index) return containingTree.Slices.Count > index + 1 ? containingTree.Slices[index + 1] as Slice : null; } - protected override void WndProc(ref Message m) - { - int aspY = AutoScrollPosition.Y; - base.WndProc (ref m); - if (aspY != AutoScrollPosition.Y) - Debug.WriteLine("ASP changed during processing message " + m.Msg); - } } } diff --git a/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_collapsed.verified.png b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_collapsed.verified.png new file mode 100644 index 0000000000..cf8ea69411 Binary files /dev/null and b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_collapsed.verified.png differ diff --git a/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_deep.verified.png b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_deep.verified.png new file mode 100644 index 0000000000..e4492113d8 Binary files /dev/null and b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_deep.verified.png differ diff --git a/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_expanded.verified.png b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_expanded.verified.png new file mode 100644 index 0000000000..b64df46cc1 Binary files /dev/null and b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_expanded.verified.png differ diff --git a/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_extreme.verified.png b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_extreme.verified.png new file mode 100644 index 0000000000..3e59d1b973 Binary files /dev/null and b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_extreme.verified.png differ diff --git a/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_multiws.verified.png b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_multiws.verified.png new file mode 100644 index 0000000000..a0c9cb6d3d Binary files /dev/null and b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_multiws.verified.png differ diff --git a/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_simple.verified.png b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_simple.verified.png new file mode 100644 index 0000000000..e3df08f2d3 Binary files /dev/null and b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_simple.verified.png differ diff --git a/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_subsubsub-hidden-productionlike.verified.json b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_subsubsub-hidden-productionlike.verified.json new file mode 100644 index 0000000000..d3a7d9aec1 --- /dev/null +++ b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_subsubsub-hidden-productionlike.verified.json @@ -0,0 +1,25 @@ +{ + "ScenarioId": "subsubsub-hidden-productionlike", + "SnapshotName": "DataTreeRenderTests.DataTreeRender_subsubsub-hidden-productionlike", + "CapturedAtUtc": "2026-04-07T19:31:52.092415Z", + "ImageWidth": 1024, + "ImageHeight": 1296, + "MachineName": "SIL-XPS", + "OsVersion": "Microsoft Windows NT 10.0.26200.0", + "EnvironmentHash": "3sUMmJxy5F2yJfd/zkW+tp+Srfbv4NmGLzt3D19Uu7c=", + "Environment": { + "DpiX": 96, + "DpiY": 96, + "FontSmoothing": true, + "ClearTypeEnabled": true, + "ThemeName": "Light", + "TextScaleFactor": 1.0, + "ScreenWidth": 1366, + "ScreenHeight": 768, + "CultureName": "en-US" + }, + "DpiAwareness": "Unaware", + "FontQuality": "4", + "DeterministicFontFamily": "Segoe UI", + "DeterministicFontInstalled": true +} \ No newline at end of file diff --git a/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_subsubsub-hidden-productionlike.verified.png b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_subsubsub-hidden-productionlike.verified.png new file mode 100644 index 0000000000..771721543b Binary files /dev/null and b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_subsubsub-hidden-productionlike.verified.png differ diff --git a/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_subsubsub-hidden.verified.json b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_subsubsub-hidden.verified.json new file mode 100644 index 0000000000..7c03860224 --- /dev/null +++ b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_subsubsub-hidden.verified.json @@ -0,0 +1,25 @@ +{ + "ScenarioId": "subsubsub-hidden", + "SnapshotName": "DataTreeRenderTests.DataTreeRender_subsubsub-hidden", + "CapturedAtUtc": "2026-04-07T19:31:49.8258833Z", + "ImageWidth": 1024, + "ImageHeight": 1259, + "MachineName": "SIL-XPS", + "OsVersion": "Microsoft Windows NT 10.0.26200.0", + "EnvironmentHash": "3sUMmJxy5F2yJfd/zkW+tp+Srfbv4NmGLzt3D19Uu7c=", + "Environment": { + "DpiX": 96, + "DpiY": 96, + "FontSmoothing": true, + "ClearTypeEnabled": true, + "ThemeName": "Light", + "TextScaleFactor": 1.0, + "ScreenWidth": 1366, + "ScreenHeight": 768, + "CultureName": "en-US" + }, + "DpiAwareness": "Unaware", + "FontQuality": "4", + "DeterministicFontFamily": "Segoe UI", + "DeterministicFontInstalled": true +} \ No newline at end of file diff --git a/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_subsubsub-hidden.verified.png b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_subsubsub-hidden.verified.png new file mode 100644 index 0000000000..c8b16f76c6 Binary files /dev/null and b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.DataTreeRender_subsubsub-hidden.verified.png differ diff --git a/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.cs b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.cs new file mode 100644 index 0000000000..b8d90aaa54 --- /dev/null +++ b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeRenderTests.cs @@ -0,0 +1,1642 @@ +// Copyright (c) 2026 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using System.Drawing; +using System.IO; +using System.Linq; +using System.Reflection; +using System.Threading.Tasks; +using Newtonsoft.Json; +using NUnit.Framework; +using SIL.LCModel; +using SIL.LCModel.Core.KernelInterfaces; +using SIL.LCModel.Core.Text; +using SIL.LCModel.Core.WritingSystems; +using SIL.FieldWorks.Common.RenderVerification; +using SIL.Utils; +using SIL.WritingSystems; + +namespace SIL.FieldWorks.Common.Framework.DetailControls +{ + /// <summary> + /// Snapshot tests using Verify for pixel-perfect validation of the full DataTree edit view, + /// including WinForms chrome (grey labels, icons, section headers, separators) and + /// Views engine text content (rendered via VwDrawRootBuffered overlay). + /// </summary> + /// <remarks> + /// These tests exercise the production DataTree/Slice rendering pipeline that FLEx uses + /// to display the lexical entry edit view. Unlike the RootSiteTests lex entry scenarios + /// (which only test Views engine text rendering), these capture the full UI composition. + /// Baselines are committed PNG files stored next to this test source. + /// </remarks> + [TestFixture] + public class DataTreeRenderTests : MemoryOnlyBackendProviderRestoredForEachTestTestBase + { + private const string DeterministicRenderFontFamily = "Segoe UI"; + private ILexEntry m_entry; + + [SetUp] + public void UseDeterministicWritingSystemFonts() + { + NormalizeDeterministicWritingSystemFonts( + Cache.ServiceLocator.WritingSystems.DefaultVernacularWritingSystem, + Cache.ServiceLocator.WritingSystems.DefaultAnalysisWritingSystem); + } + + private void NormalizeDeterministicWritingSystemFonts(params CoreWritingSystemDefinition[] additionalWritingSystems) + { + var writingSystems = new[] + { + Cache.ServiceLocator.WritingSystems.DefaultVernacularWritingSystem, + Cache.ServiceLocator.WritingSystems.DefaultAnalysisWritingSystem + } + .Concat(Cache.ServiceLocator.WritingSystems.CurrentVernacularWritingSystems) + .Concat(Cache.ServiceLocator.WritingSystems.CurrentAnalysisWritingSystems) + .Concat(additionalWritingSystems) + .Where(ws => ws != null) + .GroupBy(ws => ws.Handle) + .Select(group => group.First()); + + foreach (var writingSystem in writingSystems) + { + writingSystem.DefaultFont = new FontDefinition(DeterministicRenderFontFamily); + writingSystem.IsGraphiteEnabled = false; + } + } + + private static ITsString MakeRenderString(string value, int writingSystemHandle) + { + var propsBuilder = TsStringUtils.MakePropsBldr(); + propsBuilder.SetIntPropValues((int)FwTextPropType.ktptWs, + (int)FwTextPropVar.ktpvDefault, writingSystemHandle); + propsBuilder.SetStrPropValue((int)FwTextPropType.ktptFontFamily, + DeterministicRenderFontFamily); + + var stringBuilder = TsStringUtils.MakeStrBldr(); + stringBuilder.Replace(0, 0, value, propsBuilder.GetTextProps()); + return stringBuilder.GetString(); + } + + #region Scenario Data Creation + + /// <summary> + /// Creates a simple lex entry with 3 senses for the "simple" scenario. + /// All fields filled with predictable text: "FieldName - simple". + /// </summary> + private void CreateSimpleEntry() + { + const string testName = "simple"; + m_entry = Cache.ServiceLocator.GetInstance<ILexEntryFactory>().Create(); + + var morphFactory = Cache.ServiceLocator.GetInstance<IMoStemAllomorphFactory>(); + var morph = morphFactory.Create(); + m_entry.LexemeFormOA = morph; + morph.Form.VernacularDefaultWritingSystem = MakeRenderString( + $"LexemeForm - {testName}", Cache.DefaultVernWs); + + m_entry.CitationForm.VernacularDefaultWritingSystem = MakeRenderString( + $"CitationForm - {testName}", Cache.DefaultVernWs); + + // Add 3 senses with predictable text + var senseFactory = Cache.ServiceLocator.GetInstance<ILexSenseFactory>(); + for (int i = 1; i <= 3; i++) + { + var sense = senseFactory.Create(); + m_entry.SensesOS.Add(sense); + FillSenseFields(sense, $"{i}", testName); + } + + EnrichEntry(m_entry, testName); + } + + /// <summary> + /// Creates a lex entry with triple-nested senses (depth 3, breadth 2). + /// 2 senses × 2 subsenses × 2 sub-sub-senses = 14 total senses (2+4+8). + /// This is the "slow" scenario — realistic deeply nested entry. + /// </summary> + private void CreateDeepEntry() + { + const string testName = "deep"; + m_entry = Cache.ServiceLocator.GetInstance<ILexEntryFactory>().Create(); + + var morphFactory = Cache.ServiceLocator.GetInstance<IMoStemAllomorphFactory>(); + var morph = morphFactory.Create(); + m_entry.LexemeFormOA = morph; + morph.Form.VernacularDefaultWritingSystem = MakeRenderString( + $"LexemeForm - {testName}", Cache.DefaultVernWs); + + m_entry.CitationForm.VernacularDefaultWritingSystem = MakeRenderString( + $"CitationForm - {testName}", Cache.DefaultVernWs); + + var senseFactory = Cache.ServiceLocator.GetInstance<ILexSenseFactory>(); + CreateNestedSenses(m_entry, senseFactory, 3, 2, "", 1, testName); + + EnrichEntry(m_entry, testName); + } + + /// <summary> + /// Creates a lex entry with sub-sub-sub senses (depth 4, breadth 2). + /// 2 + 4 + 8 + 16 = 30 senses total. + /// Used to validate deeper recursive rendering with hidden fields enabled. + /// </summary> + private void CreateSubSubSubEntry() + { + const string testName = "subsubsub-hidden"; + m_entry = Cache.ServiceLocator.GetInstance<ILexEntryFactory>().Create(); + + var morphFactory = Cache.ServiceLocator.GetInstance<IMoStemAllomorphFactory>(); + var morph = morphFactory.Create(); + m_entry.LexemeFormOA = morph; + morph.Form.VernacularDefaultWritingSystem = MakeRenderString( + $"LexemeForm - {testName}", Cache.DefaultVernWs); + + m_entry.CitationForm.VernacularDefaultWritingSystem = MakeRenderString( + $"CitationForm - {testName}", Cache.DefaultVernWs); + + var senseFactory = Cache.ServiceLocator.GetInstance<ILexSenseFactory>(); + CreateNestedSenses(m_entry, senseFactory, 4, 2, "", 1, testName); + + EnrichEntry(m_entry, testName); + } + + /// <summary> + /// Creates a lex entry with extreme nesting (6 levels deep, 2 wide = 126 senses). + /// Stress test for the DataTree slice rendering pipeline. + /// </summary> + private void CreateExtremeEntry() + { + const string testName = "extreme"; + m_entry = Cache.ServiceLocator.GetInstance<ILexEntryFactory>().Create(); + + var morphFactory = Cache.ServiceLocator.GetInstance<IMoStemAllomorphFactory>(); + var morph = morphFactory.Create(); + m_entry.LexemeFormOA = morph; + morph.Form.VernacularDefaultWritingSystem = MakeRenderString( + $"LexemeForm - {testName}", Cache.DefaultVernWs); + + m_entry.CitationForm.VernacularDefaultWritingSystem = MakeRenderString( + $"CitationForm - {testName}", Cache.DefaultVernWs); + + var senseFactory = Cache.ServiceLocator.GetInstance<ILexSenseFactory>(); + CreateNestedSenses(m_entry, senseFactory, 6, 2, "", 1, testName); + + EnrichEntry(m_entry, testName); + } + + private void CreateNestedSenses(ICmObject owner, ILexSenseFactory senseFactory, + int remainingDepth, int breadth, string prefix, int startNumber, string testName) + { + if (remainingDepth <= 0) return; + + for (int i = 0; i < breadth; i++) + { + int num = startNumber + i; + string senseNum = string.IsNullOrEmpty(prefix) ? num.ToString() : $"{prefix}.{num}"; + + var sense = senseFactory.Create(); + + if (owner is ILexEntry entry) + entry.SensesOS.Add(sense); + else if (owner is ILexSense parentSense) + parentSense.SensesOS.Add(sense); + + FillSenseFields(sense, senseNum, testName); + + // Recurse into subsenses + CreateNestedSenses(sense, senseFactory, remainingDepth - 1, breadth, senseNum, 1, testName); + } + } + + /// <summary> + /// Fills sense-level fields with predictable text: "FieldName - testName sense N". + /// </summary> + private void FillSenseFields(ILexSense sense, string senseNum, string testName) + { + sense.Gloss.AnalysisDefaultWritingSystem = MakeRenderString( + $"Gloss - {testName} sense {senseNum}", Cache.DefaultAnalWs); + sense.Definition.AnalysisDefaultWritingSystem = MakeRenderString( + $"Definition - {testName} sense {senseNum}", Cache.DefaultAnalWs); + sense.ScientificName = MakeRenderString( + $"ScientificName - {testName} sense {senseNum}", Cache.DefaultAnalWs); + } + + /// <summary> + /// Enriches a lex entry with additional fields that trigger ifdata layout parts. + /// All fields use predictable text: "FieldName - testName". + /// Populates: Pronunciation, LiteralMeaning, Bibliography, Restrictions, + /// SummaryDefinition, and Comment. + /// Etymology is intentionally excluded because its SummarySlice creates native + /// COM views that crash in test context. + /// </summary> + private void EnrichEntry(ILexEntry entry, string testName) + { + // Pronunciation (ifdata, owned sequence object) + var pronFactory = Cache.ServiceLocator.GetInstance<ILexPronunciationFactory>(); + var pronunciation = pronFactory.Create(); + entry.PronunciationsOS.Add(pronunciation); + pronunciation.Form.VernacularDefaultWritingSystem = MakeRenderString( + $"Pronunciation - {testName}", Cache.DefaultVernWs); + + // MultiString ifdata fields + entry.LiteralMeaning.AnalysisDefaultWritingSystem = MakeRenderString( + $"LiteralMeaning - {testName}", Cache.DefaultAnalWs); + entry.Bibliography.AnalysisDefaultWritingSystem = MakeRenderString( + $"Bibliography - {testName}", Cache.DefaultAnalWs); + entry.Restrictions.AnalysisDefaultWritingSystem = MakeRenderString( + $"Restrictions - {testName}", Cache.DefaultAnalWs); + entry.SummaryDefinition.AnalysisDefaultWritingSystem = MakeRenderString( + $"SummaryDefinition - {testName}", Cache.DefaultAnalWs); + entry.Comment.AnalysisDefaultWritingSystem = MakeRenderString( + $"Comment - {testName}", Cache.DefaultAnalWs); + } + + /// <summary> + /// Creates a minimal lex entry with a single sense and no optional fields. + /// Exercises the "collapsed" view — bare minimum rendering path. + /// </summary> + private void CreateCollapsedEntry() + { + const string testName = "collapsed"; + m_entry = Cache.ServiceLocator.GetInstance<ILexEntryFactory>().Create(); + + var morphFactory = Cache.ServiceLocator.GetInstance<IMoStemAllomorphFactory>(); + var morph = morphFactory.Create(); + m_entry.LexemeFormOA = morph; + morph.Form.VernacularDefaultWritingSystem = MakeRenderString( + $"LexemeForm - {testName}", Cache.DefaultVernWs); + + m_entry.CitationForm.VernacularDefaultWritingSystem = MakeRenderString( + $"CitationForm - {testName}", Cache.DefaultVernWs); + + // Single sense — minimal entry, no enrichment + var senseFactory = Cache.ServiceLocator.GetInstance<ILexSenseFactory>(); + var sense = senseFactory.Create(); + m_entry.SensesOS.Add(sense); + FillSenseFields(sense, "1", testName); + } + + /// <summary> + /// Creates a fully enriched lex entry with all available optional fields populated. + /// 4 senses with all sense-level fields, plus full entry enrichment. + /// Exercises the "expanded" view — maximum slice count for fields we can safely render. + /// </summary> + private void CreateExpandedEntry() + { + const string testName = "expanded"; + m_entry = Cache.ServiceLocator.GetInstance<ILexEntryFactory>().Create(); + + var morphFactory = Cache.ServiceLocator.GetInstance<IMoStemAllomorphFactory>(); + var morph = morphFactory.Create(); + m_entry.LexemeFormOA = morph; + morph.Form.VernacularDefaultWritingSystem = MakeRenderString( + $"LexemeForm - {testName}", Cache.DefaultVernWs); + + m_entry.CitationForm.VernacularDefaultWritingSystem = MakeRenderString( + $"CitationForm - {testName}", Cache.DefaultVernWs); + + // Multiple senses with all fields + var senseFactory = Cache.ServiceLocator.GetInstance<ILexSenseFactory>(); + for (int i = 1; i <= 4; i++) + { + var sense = senseFactory.Create(); + m_entry.SensesOS.Add(sense); + FillSenseFields(sense, $"{i}", testName); + } + + // Full enrichment + EnrichEntry(m_entry, testName); + + // Add a second pronunciation + var pronFactory = Cache.ServiceLocator.GetInstance<ILexPronunciationFactory>(); + var pron2 = pronFactory.Create(); + m_entry.PronunciationsOS.Add(pron2); + pron2.Form.VernacularDefaultWritingSystem = MakeRenderString( + $"Pronunciation2 - {testName}", Cache.DefaultVernWs); + } + + /// <summary> + /// Creates a lex entry with values in multiple writing systems. + /// Exercises the MultiStringSlice rendering with WS indicators. + /// Fields filled with predictable text in both English and French. + /// </summary> + private void CreateMultiWsEntry() + { + const string testName = "multiws"; + m_entry = Cache.ServiceLocator.GetInstance<ILexEntryFactory>().Create(); + + var morphFactory = Cache.ServiceLocator.GetInstance<IMoStemAllomorphFactory>(); + var morph = morphFactory.Create(); + m_entry.LexemeFormOA = morph; + + morph.Form.VernacularDefaultWritingSystem = MakeRenderString( + $"LexemeForm - {testName}", Cache.DefaultVernWs); + + m_entry.CitationForm.VernacularDefaultWritingSystem = MakeRenderString( + $"CitationForm - {testName}", Cache.DefaultVernWs); + + int analWs = Cache.DefaultAnalWs; + + // Add a French writing system + int frWs = analWs; + try + { + var wsManager = Cache.ServiceLocator.WritingSystemManager; + CoreWritingSystemDefinition frWsDef; + wsManager.GetOrSet("fr", out frWsDef); + frWs = frWsDef.Handle; + Cache.LanguageProject.AddToCurrentAnalysisWritingSystems(frWsDef); + NormalizeDeterministicWritingSystemFonts(frWsDef); + } + catch + { + // If we can't create French WS, proceed with default analysis WS + } + + // Senses with multi-WS text + var senseFactory = Cache.ServiceLocator.GetInstance<ILexSenseFactory>(); + for (int i = 1; i <= 2; i++) + { + var sense = senseFactory.Create(); + m_entry.SensesOS.Add(sense); + sense.Gloss.set_String(analWs, MakeRenderString( + $"Gloss - {testName} sense {i} (en)", analWs)); + if (frWs != analWs) + { + sense.Gloss.set_String(frWs, MakeRenderString( + $"Gloss - {testName} sens {i} (fr)", frWs)); + } + sense.Definition.set_String(analWs, MakeRenderString( + $"Definition - {testName} sense {i} (en)", analWs)); + if (frWs != analWs) + { + sense.Definition.set_String(frWs, MakeRenderString( + $"Definition - {testName} sens {i} (fr)", frWs)); + } + } + + // Multi-WS entry-level fields + m_entry.LiteralMeaning.set_String(analWs, MakeRenderString( + $"LiteralMeaning - {testName} (en)", analWs)); + if (frWs != analWs) + { + m_entry.LiteralMeaning.set_String(frWs, MakeRenderString( + $"LiteralMeaning - {testName} (fr)", frWs)); + } + + m_entry.SummaryDefinition.set_String(analWs, MakeRenderString( + $"SummaryDefinition - {testName} (en)", analWs)); + if (frWs != analWs) + { + m_entry.SummaryDefinition.set_String(frWs, MakeRenderString( + $"SummaryDefinition - {testName} (fr)", frWs)); + } + + // Pronunciation + var pronFactory = Cache.ServiceLocator.GetInstance<ILexPronunciationFactory>(); + var pronunciation = pronFactory.Create(); + m_entry.PronunciationsOS.Add(pronunciation); + pronunciation.Form.VernacularDefaultWritingSystem = MakeRenderString( + $"Pronunciation - {testName}", Cache.DefaultVernWs); + } + + #endregion + + #region Verify Infrastructure + + /// <summary> + /// Returns the directory containing this source file (resolved at compile time). + /// Verify stores .verified.png baselines alongside the test source file. + /// </summary> + private async Task VerifyDataTreeBitmap(Bitmap bitmap, string scenarioId) + { + string directory = RenderSnapshotVerifier.GetSourceFileDirectory(); + string name = $"DataTreeRenderTests.DataTreeRender_{scenarioId}"; + var verification = RenderSnapshotVerifier.Verify(bitmap, directory, name, scenarioId); + if (!verification.Passed) + Assert.Fail(verification.FailureMessage); + + await Task.CompletedTask; + } + + #endregion + + #region Snapshot Tests + + /// <summary> + /// Verifies the full DataTree rendering for a simple lex entry with 3 senses. + /// Captures grey labels, WS indicators, sense summaries, all WinForms chrome. + /// Uses production layouts from DistFiles to get the full view. + /// </summary> + [Test] + public async Task DataTreeRender_Simple() + { + CreateSimpleEntry(); + + using (var harness = new DataTreeRenderHarness(Cache, m_entry, "Normal")) + { + harness.PopulateSlices(1024, 768, true); + DumpSliceDiagnostics(harness, "Simple"); + + Assert.That(harness.SliceCount, Is.GreaterThan(0), + "DataTree should have populated some slices"); + + var bitmap = harness.CaptureCompositeBitmap(); + Assert.That(bitmap, Is.Not.Null, "Composite bitmap capture should succeed"); + + double density = CalculateNonWhiteDensity(bitmap); + Console.WriteLine($"[DATATREE] Non-white density: {density:F2}%"); + Console.WriteLine($"[DATATREE] Bitmap size: {bitmap.Width}x{bitmap.Height}"); + + RecordTiming("simple", 1, 3, harness.LastTiming, density); + await VerifyDataTreeBitmap(bitmap, "simple"); + } + } + + /// <summary> + /// Verifies the full DataTree rendering for a triple-nested lex entry. + /// 2 senses × 2 subsenses × 2 sub-sub-senses = 14 total senses. + /// This is the "slow" scenario for realistic deep nesting. + /// </summary> + [Test] + public async Task DataTreeRender_Deep() + { + CreateDeepEntry(); + + using (var harness = new DataTreeRenderHarness(Cache, m_entry, "Normal")) + { + harness.PopulateSlices(1024, 1200, true); + DumpSliceDiagnostics(harness, "Deep"); + + Assert.That(harness.SliceCount, Is.GreaterThan(0), + "DataTree should have populated some slices"); + + var bitmap = harness.CaptureCompositeBitmap(); + Assert.That(bitmap, Is.Not.Null, "Composite bitmap capture should succeed"); + + double density = CalculateNonWhiteDensity(bitmap); + Console.WriteLine($"[DATATREE] Non-white density: {density:F2}%"); + Console.WriteLine($"[DATATREE] Bitmap size: {bitmap.Width}x{bitmap.Height}"); + + RecordTiming("deep", 3, 2, harness.LastTiming, density); + await VerifyDataTreeBitmap(bitmap, "deep"); + } + } + + /// <summary> + /// Verifies a depth-4 lexeme edit tree can render recursive senses while hidden + /// entry fields are forced visible. The hidden-field layout is test-only, but the + /// render path is the real DataTree pipeline. + /// </summary> + [Test] + public async Task DataTreeRender_SubSubSubSenses_ShowHiddenFields() + { + CreateSubSubSubEntry(); + const string layoutName = "NormalWithHiddenFieldsIndented"; + var hiddenLabels = new[] + { + "Bibliography", + "Comment", + "Literal Meaning", + "Restrictions", + "Summary Definition" + }; + + using (var withoutHiddenFields = new DataTreeRenderHarness(Cache, m_entry, layoutName)) + using (var withHiddenFields = new DataTreeRenderHarness(Cache, m_entry, layoutName, showHiddenFields: true)) + { + withoutHiddenFields.PopulateSlices(1024, 2400, false); + withHiddenFields.PopulateSlices(1024, 2400, false); + + var labelsWithoutHiddenFields = withoutHiddenFields.LastTiming.SliceDiagnostics + .Select(diag => diag.Label) + .Where(label => !string.IsNullOrEmpty(label)) + .ToList(); + var labelsWithHiddenFields = withHiddenFields.LastTiming.SliceDiagnostics + .Select(diag => diag.Label) + .Where(label => !string.IsNullOrEmpty(label)) + .ToList(); + + foreach (var hiddenLabel in hiddenLabels) + { + Assert.That(labelsWithoutHiddenFields, Does.Not.Contain(hiddenLabel), + $"{hiddenLabel} should stay hidden when ShowHiddenFields is off."); + Assert.That(labelsWithHiddenFields, Does.Contain(hiddenLabel), + $"{hiddenLabel} should be rendered when ShowHiddenFields is enabled."); + } + + Assert.That(withHiddenFields.SliceCount, Is.GreaterThan(withoutHiddenFields.SliceCount), + "Enabling hidden fields should increase the number of rendered slices."); + + int glossSliceCount = labelsWithHiddenFields.Count(label => label == "Gloss"); + int scientificNameSliceCount = labelsWithHiddenFields.Count(label => label == "ScientificName"); + Assert.That(glossSliceCount, Is.GreaterThanOrEqualTo(30), + $"Expected at least 30 gloss slices for the depth-4 sense tree, but saw {glossSliceCount}."); + Assert.That(scientificNameSliceCount, Is.GreaterThanOrEqualTo(30), + $"Expected at least 30 scientific-name slices for the depth-4 sense tree, but saw {scientificNameSliceCount}."); + + int maxIndent = withHiddenFields.DataTree.Slices.Cast<Slice>().Max(slice => slice.Indent); + Assert.That(maxIndent, Is.GreaterThanOrEqualTo(3), + $"Expected nested subsenses to create at least 3 levels of indentation, but saw {maxIndent}."); + + // Warm the composite capture once so deep hidden-field trees snapshot after layout convergence. + var warmup = withHiddenFields.CaptureCompositeBitmap(); + Assert.That(warmup, Is.Not.Null, "Warm-up capture should succeed with hidden fields enabled."); + warmup.Dispose(); + + var bitmap = withHiddenFields.CaptureCompositeBitmap(); + Assert.That(bitmap, Is.Not.Null, "Composite bitmap capture should succeed with hidden fields enabled."); + double density = CalculateNonWhiteDensity(bitmap); + RecordTiming("subsubsub-hidden", 4, 2, withHiddenFields.LastTiming, density); + await VerifyDataTreeBitmap(bitmap, "subsubsub-hidden"); + bitmap.Dispose(); + } + } + + /// <summary> + /// Verifies a production-like lexeme edit snapshot for the depth-4 hidden-fields scenario. + /// This keeps the focused hidden-field regression separate while adding top-matter coverage + /// closer to the real lexeme edit view. + /// </summary> + [Test] + public async Task DataTreeRender_SubSubSubSenses_ShowHiddenFields_ProductionLike() + { + CreateSubSubSubEntry(); + const string layoutName = "ProductionLikeWithHiddenFieldsIndented"; + + using (var harness = new DataTreeRenderHarness(Cache, m_entry, layoutName, showHiddenFields: true)) + { + harness.PopulateSlices(1024, 2600, false); + + var labels = harness.LastTiming.SliceDiagnostics + .Select(diag => diag.Label) + .Where(label => !string.IsNullOrEmpty(label)) + .ToList(); + + Assert.That(labels, Does.Contain("Lexeme Form"), + "Production-like scenario should include the lexeme form top matter."); + Assert.That(labels, Does.Contain("Citation Form"), + "Production-like scenario should include the citation form top matter."); + Assert.That(labels, Does.Contain("Pronunciation"), + "Production-like scenario should include pronunciation top matter."); + Assert.That(labels, Does.Contain("Bibliography")); + Assert.That(labels, Does.Contain("Comment")); + Assert.That(labels, Does.Contain("Literal Meaning")); + Assert.That(labels, Does.Contain("Restrictions")); + Assert.That(labels, Does.Contain("Summary Definition")); + + int maxIndent = harness.DataTree.Slices.Cast<Slice>().Max(slice => slice.Indent); + Assert.That(maxIndent, Is.GreaterThanOrEqualTo(3), + $"Expected nested subsenses to create at least 3 levels of indentation, but saw {maxIndent}."); + + // Warm the composite capture once so deep hidden-field trees snapshot after layout convergence. + var warmup = harness.CaptureCompositeBitmap(); + Assert.That(warmup, Is.Not.Null, "Warm-up capture should succeed for the production-like layout."); + warmup.Dispose(); + + var bitmap = harness.CaptureCompositeBitmap(); + Assert.That(bitmap, Is.Not.Null, "Composite bitmap capture should succeed for the production-like layout."); + + double density = CalculateNonWhiteDensity(bitmap); + RecordTiming("subsubsub-hidden-productionlike", 4, 2, harness.LastTiming, density); + await VerifyDataTreeBitmap(bitmap, "subsubsub-hidden-productionlike"); + bitmap.Dispose(); + } + } + + [Test] + public void DataTreeRender_CaptureUsesRequestedWidth_WhenClientWidthDrifts() + { + CreateSimpleEntry(); + + using (var harness = new DataTreeRenderHarness(Cache, m_entry, "Normal")) + { + harness.PopulateSlices(1024, 768, false); + harness.DataTree.ClientSize = new Size(1007, harness.DataTree.ClientSize.Height); + harness.DataTree.PerformLayout(); + + var bitmap = harness.CaptureCompositeBitmap(); + Assert.That(bitmap, Is.Not.Null, "Composite bitmap capture should succeed when the live client width drifts."); + Assert.That(bitmap.Width, Is.EqualTo(1024), + "Capture should use the requested host width instead of the current DataTree client width."); + bitmap.Dispose(); + } + } + + /// <summary> + /// Verifies the full DataTree rendering for an extreme nesting scenario. + /// 6-level nesting with 126 senses exercises the full slice rendering pipeline. + /// </summary> + [Test] + public async Task DataTreeRender_Extreme() + { + CreateExtremeEntry(); + + using (var harness = new DataTreeRenderHarness(Cache, m_entry, "Normal")) + { + harness.PopulateSlices(1024, 2400, true); + DumpSliceDiagnostics(harness, "Extreme"); + + Assert.That(harness.SliceCount, Is.GreaterThan(0), + "DataTree should have populated some slices"); + + var bitmap = harness.CaptureCompositeBitmap(); + Assert.That(bitmap, Is.Not.Null, "Composite bitmap capture should succeed"); + + double density = CalculateNonWhiteDensity(bitmap); + Console.WriteLine($"[DATATREE] Non-white density: {density:F2}%"); + Console.WriteLine($"[DATATREE] Bitmap size: {bitmap.Width}x{bitmap.Height}"); + + RecordTiming("extreme", 6, 2, harness.LastTiming, density); + await VerifyDataTreeBitmap(bitmap, "extreme"); + } + } + + /// <summary> + /// Verifies the DataTree rendering for a minimal entry with a single sense. + /// Exercises the bare minimum rendering path — collapsed view. + /// </summary> + [Test] + public async Task DataTreeRender_Collapsed() + { + CreateCollapsedEntry(); + + using (var harness = new DataTreeRenderHarness(Cache, m_entry, "Normal")) + { + harness.PopulateSlices(1024, 400, true); + DumpSliceDiagnostics(harness, "Collapsed"); + + Assert.That(harness.SliceCount, Is.GreaterThan(0), + "DataTree should have populated some slices"); + + var bitmap = harness.CaptureCompositeBitmap(); + Assert.That(bitmap, Is.Not.Null, "Composite bitmap capture should succeed"); + + double density = CalculateNonWhiteDensity(bitmap); + Console.WriteLine($"[DATATREE] Non-white density: {density:F2}%"); + Console.WriteLine($"[DATATREE] Bitmap size: {bitmap.Width}x{bitmap.Height}"); + + RecordTiming("collapsed", 1, 1, harness.LastTiming, density); + await VerifyDataTreeBitmap(bitmap, "collapsed"); + } + } + + /// <summary> + /// Verifies the DataTree rendering for a fully enriched entry with all optional + /// fields populated. Maximum slice count with multiple pronunciations, + /// scientific names, and extended definitions. + /// </summary> + [Test] + public async Task DataTreeRender_Expanded() + { + CreateExpandedEntry(); + + using (var harness = new DataTreeRenderHarness(Cache, m_entry, "Normal")) + { + harness.PopulateSlices(1024, 1200, true); + DumpSliceDiagnostics(harness, "Expanded"); + + Assert.That(harness.SliceCount, Is.GreaterThan(0), + "DataTree should have populated some slices"); + + var bitmap = harness.CaptureCompositeBitmap(); + Assert.That(bitmap, Is.Not.Null, "Composite bitmap capture should succeed"); + + double density = CalculateNonWhiteDensity(bitmap); + Console.WriteLine($"[DATATREE] Non-white density: {density:F2}%"); + Console.WriteLine($"[DATATREE] Bitmap size: {bitmap.Width}x{bitmap.Height}"); + + RecordTiming("expanded", 1, 4, harness.LastTiming, density); + await VerifyDataTreeBitmap(bitmap, "expanded"); + } + } + + /// <summary> + /// Verifies the DataTree rendering for an entry with multiple writing systems. + /// Exercises MultiStringSlice WS indicators and font fallback across French and English. + /// </summary> + [Test] + public async Task DataTreeRender_MultiWs() + { + CreateMultiWsEntry(); + + using (var harness = new DataTreeRenderHarness(Cache, m_entry, "Normal")) + { + harness.PopulateSlices(1024, 768, true); + DumpSliceDiagnostics(harness, "MultiWs"); + + Assert.That(harness.SliceCount, Is.GreaterThan(0), + "DataTree should have populated some slices"); + + var bitmap = harness.CaptureCompositeBitmap(); + Assert.That(bitmap, Is.Not.Null, "Composite bitmap capture should succeed"); + + double density = CalculateNonWhiteDensity(bitmap); + Console.WriteLine($"[DATATREE] Non-white density: {density:F2}%"); + Console.WriteLine($"[DATATREE] Bitmap size: {bitmap.Width}x{bitmap.Height}"); + + RecordTiming("multiws", 1, 2, harness.LastTiming, density); + await VerifyDataTreeBitmap(bitmap, "multiws"); + } + } + + #endregion + + #region Timing Tests + + /// <summary> + /// Benchmarks DataTree population time at varying nesting depths. + /// Reports the exponential growth in slice creation and rendering time. + /// Writes timing results to Output/RenderBenchmarks/datatree-timings.json. + /// </summary> + [Test] + [TestCase(2, 3, "shallow", Description = "Depth 2, breadth 3 = 12 senses")] + [TestCase(3, 2, "deep", Description = "Depth 3, breadth 2 = 14 senses (triple-nested)")] + [TestCase(6, 2, "extreme", Description = "Depth 6, breadth 2 = 126 senses")] + public void DataTreeTiming(int depth, int breadth, string label) + { + m_entry = Cache.ServiceLocator.GetInstance<ILexEntryFactory>().Create(); + var morphFactory = Cache.ServiceLocator.GetInstance<IMoStemAllomorphFactory>(); + var morph = morphFactory.Create(); + m_entry.LexemeFormOA = morph; + morph.Form.VernacularDefaultWritingSystem = MakeRenderString( + $"LexemeForm - timing-{label}", Cache.DefaultVernWs); + + var senseFactory = Cache.ServiceLocator.GetInstance<ILexSenseFactory>(); + CreateNestedSenses(m_entry, senseFactory, depth, breadth, "", 1, $"timing-{label}"); + EnrichEntry(m_entry, $"timing-{label}"); + + using (var harness = new DataTreeRenderHarness(Cache, m_entry, "Normal")) + { + // Use test inventories for timing to keep recursive sense growth active + // while avoiding known production-layout crash-only parts in test context. + harness.PopulateSlices(1024, 2400, false); + + Console.WriteLine($"[DATATREE-TIMING] {label}: " + + $"Init={harness.LastTiming.InitializationMs:F1}ms, " + + $"Populate={harness.LastTiming.PopulateSlicesMs:F1}ms, " + + $"Total={harness.LastTiming.TotalMs:F1}ms, " + + $"Slices={harness.LastTiming.SliceCount}"); + + Assert.That(harness.SliceCount, Is.GreaterThan(0), + $"DataTree should create slices for {label} scenario"); + + // Capture bitmap to exercise the full pipeline + var bitmap = harness.CaptureCompositeBitmap(); + Assert.That(bitmap, Is.Not.Null, "Composite capture should succeed"); + + double density = CalculateNonWhiteDensity(bitmap); + Console.WriteLine($"[DATATREE-TIMING] {label}: Non-white density={density:F2}%"); + + // Record timing to file + RecordTiming($"timing-{label}", depth, breadth, harness.LastTiming, density); + } + } + + /// <summary> + /// Measures paint/capture time for the extreme scenario. + /// Exercises the full OnPaint → HandlePaintLinesBetweenSlices pipeline + /// via DrawToBitmap. This provides a baseline for paint optimizations + /// (clip-rect culling, double-buffering). + /// </summary> + [Test] + public void DataTreeTiming_PaintPerformance() + { + CreateExtremeEntry(); + using (var harness = new DataTreeRenderHarness(Cache, m_entry, "Normal")) + { + harness.PopulateSlices(1024, 2400, false); + Assert.That(harness.SliceCount, Is.GreaterThan(0), + "DataTree should create slices for extreme scenario"); + + // Warm-up capture (first paint triggers handle creation, layout convergence, etc.) + var warmup = harness.CaptureCompositeBitmap(); + Assert.That(warmup, Is.Not.Null, "Warm-up capture should succeed"); + warmup.Dispose(); + + // Timed capture: DrawToBitmap → OnPaint → HandlePaintLinesBetweenSlices + var sw = System.Diagnostics.Stopwatch.StartNew(); + var bitmap = harness.CaptureCompositeBitmap(); + sw.Stop(); + + Assert.That(bitmap, Is.Not.Null, "Timed capture should succeed"); + double captureMs = sw.Elapsed.TotalMilliseconds; + Console.WriteLine($"[PAINT-TIMING] Extreme scenario capture: {captureMs:F1}ms"); + Console.WriteLine($"[PAINT-TIMING] Slices: {harness.SliceCount}, Bitmap: {bitmap.Width}x{bitmap.Height}"); + + RecordTiming("paint-extreme", 6, 2, harness.LastTiming, + CalculateNonWhiteDensity(bitmap)); + bitmap.Dispose(); + } + } + + /// <summary> + /// Verifies benchmark workload grows with scenario complexity. + /// This guards against timing tests that accidentally stop exercising deeper data. + /// </summary> + [Test] + public void DataTreeTiming_WorkloadGrowsWithComplexity() + { + int shallowSlices = RunTimingScenarioAndGetSliceCount(2, 3, "growth-shallow"); + int deepSlices = RunTimingScenarioAndGetSliceCount(3, 2, "growth-deep"); + int extremeSlices = RunTimingScenarioAndGetSliceCount(6, 2, "growth-extreme"); + + Assert.That(deepSlices, Is.GreaterThan(shallowSlices), + $"Expected deep workload to exceed shallow workload, but got shallow={shallowSlices}, deep={deepSlices}"); + Assert.That(extremeSlices, Is.GreaterThan(deepSlices), + $"Expected extreme workload to exceed deep workload, but got deep={deepSlices}, extreme={extremeSlices}"); + } + + [Test] + public void DataTreeTimingBaselines_CoverAllSnapshotScenarios() + { + DataTreeTimingBaselineCatalog.AssertSnapshotCoverage(); + } + + #endregion + + #region Optimization Regression Tests + + /// <summary> + /// Verifies that all visible slices in the viewport have consistent width after + /// layout converges. Exercises Enhancement 5 (SetWidthForDataTreeLayout early-exit): + /// after the first layout pass sets widths, subsequent passes should be no-ops. + /// </summary> + [Test] + public void DataTreeOpt_WidthStabilityAfterLayout() + { + CreateDeepEntry(); + using (var harness = new DataTreeRenderHarness(Cache, m_entry, "Normal")) + { + harness.PopulateSlices(1024, 2400, false); + Assert.That(harness.SliceCount, Is.GreaterThan(0), + "Should have slices"); + + // Record widths after initial layout convergence + var dt = harness.DataTree; + int desiredWidth = dt.ClientRectangle.Width; + var initialWidths = new int[dt.Slices.Count]; + for (int i = 0; i < dt.Slices.Count; i++) + initialWidths[i] = ((Slice)dt.Slices[i]).Width; + + // Force a second paint/layout pass — widths should remain identical + var bitmap = harness.CaptureCompositeBitmap(); + Assert.That(bitmap, Is.Not.Null, "Second paint should succeed"); + bitmap.Dispose(); + + for (int i = 0; i < dt.Slices.Count; i++) + { + int currentWidth = ((Slice)dt.Slices[i]).Width; + Assert.That(currentWidth, Is.EqualTo(initialWidths[i]), + $"Slice [{i}] width changed after second layout pass " + + $"(was {initialWidths[i]}, now {currentWidth}). " + + $"Enhancement 5 early-exit should prevent width changes when stable."); + } + + Console.WriteLine($"[OPT-TEST] Width stability: {dt.Slices.Count} slices " + + $"all stable at width={desiredWidth}"); + } + } + + /// <summary> + /// Verifies that all slices in the viewport are marked Visible=true after layout. + /// Exercises Enhancement 9 (MakeSliceVisible high-water mark): the optimization + /// must not skip making any slice visible that should be visible. + /// </summary> + [Test] + public void DataTreeOpt_AllViewportSlicesVisible() + { + CreateExtremeEntry(); + using (var harness = new DataTreeRenderHarness(Cache, m_entry, "Normal")) + { + // Use a viewport smaller than total content to exercise partial visibility + harness.PopulateSlices(1024, 800, false); + Assert.That(harness.SliceCount, Is.GreaterThan(0), + "Should have slices"); + + // Force layout + paint to trigger MakeSliceVisible calls + var bitmap = harness.CaptureCompositeBitmap(); + Assert.That(bitmap, Is.Not.Null, "Paint should succeed"); + bitmap.Dispose(); + + var dt = harness.DataTree; + var diagnostics = harness.LastTiming.SliceDiagnostics; + + // Every slice that is within the viewport bounds should be Visible + int viewportBottom = dt.ClientRectangle.Height; + int visibleCount = 0; + int totalCount = 0; + for (int i = 0; i < dt.Slices.Count; i++) + { + var slice = (Slice)dt.Slices[i]; + totalCount++; + int sliceTop = slice.Top; + int sliceBottom = sliceTop + slice.Height; + + // Slice intersects viewport + if (sliceBottom > 0 && sliceTop < viewportBottom) + { + Assert.That(slice.Visible, Is.True, + $"Slice [{i}] ({slice.GetType().Name}, Label=\"{slice.Label}\") " + + $"at Y={sliceTop}-{sliceBottom} is in viewport (0-{viewportBottom}) " + + $"but Visible=false. Enhancement 9 high-water mark may have skipped it."); + visibleCount++; + } + } + + Assert.That(visibleCount, Is.GreaterThan(0), + "At least one slice should be visible in the viewport"); + Console.WriteLine($"[OPT-TEST] Visibility: {visibleCount}/{totalCount} slices " + + $"visible in viewport 0-{viewportBottom}"); + } + } + + /// <summary> + /// Verifies that the XML attribute cache on Slice returns the same results as + /// direct XML parsing. Exercises Enhancement 8 (cached IsHeader/SkipSpacerLine/SameObject): + /// the cache must be correct and must be invalidated when ConfigurationNode changes. + /// </summary> + [Test] + public void DataTreeOpt_XmlCacheConsistency() + { + CreateSimpleEntry(); + using (var harness = new DataTreeRenderHarness(Cache, m_entry, "Normal")) + { + harness.PopulateSlices(1024, 1200, false); + Assert.That(harness.SliceCount, Is.GreaterThan(0), + "Should have slices"); + + var dt = harness.DataTree; + int checkedCount = 0; + + for (int i = 0; i < dt.Slices.Count; i++) + { + var slice = (Slice)dt.Slices[i]; + if (slice.ConfigurationNode == null) + continue; + + // Get the cached property values + bool cachedIsHeader = slice.IsHeader; + bool cachedSkipSpacer = slice.SkipSpacerLine; + bool cachedSameObj = slice.SameObject; + + // Get the ground truth from direct XML parsing + bool directIsHeader = SIL.Utils.XmlUtils.GetOptionalBooleanAttributeValue( + slice.ConfigurationNode, "header", false); + bool directSkipSpacer = SIL.Utils.XmlUtils.GetOptionalBooleanAttributeValue( + slice.ConfigurationNode, "skipSpacerLine", false); + bool directSameObj = SIL.Utils.XmlUtils.GetOptionalBooleanAttributeValue( + slice.ConfigurationNode, "sameObject", false); + + Assert.That(cachedIsHeader, Is.EqualTo(directIsHeader), + $"Slice [{i}] IsHeader cache mismatch: cached={cachedIsHeader}, " + + $"XML={directIsHeader}"); + Assert.That(cachedSkipSpacer, Is.EqualTo(directSkipSpacer), + $"Slice [{i}] SkipSpacerLine cache mismatch: cached={cachedSkipSpacer}, " + + $"XML={directSkipSpacer}"); + Assert.That(cachedSameObj, Is.EqualTo(directSameObj), + $"Slice [{i}] SameObject cache mismatch: cached={cachedSameObj}, " + + $"XML={directSameObj}"); + + checkedCount++; + } + + Assert.That(checkedCount, Is.GreaterThan(0), + "Should have checked at least one slice's XML cache"); + Console.WriteLine($"[OPT-TEST] XML cache consistency: {checkedCount} slices verified"); + } + } + + /// <summary> + /// Verifies that ConfigurationNode setter invalidates the XML attribute cache. + /// Re-setting the same ConfigurationNode should still produce correct results + /// (cache re-populated from XML). Exercises Enhancement 8 cache invalidation. + /// </summary> + [Test] + public void DataTreeOpt_XmlCacheInvalidationOnConfigChange() + { + CreateSimpleEntry(); + using (var harness = new DataTreeRenderHarness(Cache, m_entry, "Normal")) + { + harness.PopulateSlices(1024, 1200, false); + Assert.That(harness.SliceCount, Is.GreaterThan(0), + "Should have slices"); + + var dt = harness.DataTree; + + // Find a slice with a ConfigurationNode to test cache invalidation + Slice testSlice = null; + for (int i = 0; i < dt.Slices.Count; i++) + { + var slice = (Slice)dt.Slices[i]; + if (slice.ConfigurationNode != null) + { + testSlice = slice; + break; + } + } + Assert.That(testSlice, Is.Not.Null, + "Should find at least one slice with a ConfigurationNode"); + + // Prime the cache by accessing each property + bool originalIsHeader = testSlice.IsHeader; + bool originalSkipSpacer = testSlice.SkipSpacerLine; + bool originalSameObj = testSlice.SameObject; + + // Re-set the ConfigurationNode (triggers cache invalidation) + var savedNode = testSlice.ConfigurationNode; + testSlice.ConfigurationNode = savedNode; + + // Cache should be re-populated with same values + Assert.That(testSlice.IsHeader, Is.EqualTo(originalIsHeader), + "IsHeader should match after ConfigurationNode reset"); + Assert.That(testSlice.SkipSpacerLine, Is.EqualTo(originalSkipSpacer), + "SkipSpacerLine should match after ConfigurationNode reset"); + Assert.That(testSlice.SameObject, Is.EqualTo(originalSameObj), + "SameObject should match after ConfigurationNode reset"); + + Console.WriteLine($"[OPT-TEST] Cache invalidation: verified on slice " + + $"'{testSlice.Label}' ({testSlice.GetType().Name})"); + } + } + + /// <summary> + /// Verifies that multiple sequential paint captures produce identical output. + /// Exercises all paint-path optimizations (Enhancement 3 clip-rect culling, + /// Enhancement 4 double-buffering, Enhancement 7 paint-path width skip, + /// Enhancement 8 XML caching): repeated paints must be deterministic. + /// </summary> + [Test] + public void DataTreeOpt_SequentialPaintsProduceIdenticalOutput() + { + CreateDeepEntry(); + using (var harness = new DataTreeRenderHarness(Cache, m_entry, "Normal")) + { + harness.PopulateSlices(1024, 1200, false); + Assert.That(harness.SliceCount, Is.GreaterThan(0), + "Should have slices"); + + // Warm-up to get past initial layout convergence + var warmup = harness.CaptureCompositeBitmap(); + Assert.That(warmup, Is.Not.Null); + warmup.Dispose(); + + // Capture twice + var capture1 = harness.CaptureCompositeBitmap(); + var capture2 = harness.CaptureCompositeBitmap(); + + Assert.That(capture1, Is.Not.Null, "First capture should succeed"); + Assert.That(capture2, Is.Not.Null, "Second capture should succeed"); + + Assert.That(capture2.Width, Is.EqualTo(capture1.Width), + "Bitmap widths should match"); + Assert.That(capture2.Height, Is.EqualTo(capture1.Height), + "Bitmap heights should match"); + + // Compare pixel-by-pixel — paint must be deterministic + int mismatchCount = 0; + for (int y = 0; y < capture1.Height; y++) + { + for (int x = 0; x < capture1.Width; x++) + { + if (capture1.GetPixel(x, y) != capture2.GetPixel(x, y)) + mismatchCount++; + } + } + + double mismatchRate = (double)mismatchCount / (capture1.Width * capture1.Height) * 100; + Assert.That(mismatchRate, Is.LessThan(0.1), + $"Sequential paints differ in {mismatchCount} pixels ({mismatchRate:F3}%). " + + $"Paint optimizations must produce deterministic output."); + + Console.WriteLine($"[OPT-TEST] Paint determinism: {capture1.Width}x{capture1.Height}, " + + $"mismatch={mismatchCount} ({mismatchRate:F3}%)"); + + capture1.Dispose(); + capture2.Dispose(); + } + } + + /// <summary> + /// Verifies that slice positions are monotonically increasing (each slice's Top + /// is >= previous slice's Top + Height). This is a prerequisite for Enhancement 3's + /// clip-rect culling early-break optimization in HandlePaintLinesBetweenSlices. + /// </summary> + [Test] + public void DataTreeOpt_SlicePositionsMonotonicallyIncreasing() + { + CreateExtremeEntry(); + using (var harness = new DataTreeRenderHarness(Cache, m_entry, "Normal")) + { + harness.PopulateSlices(1024, 2400, false); + Assert.That(harness.SliceCount, Is.GreaterThan(1), + "Should have multiple slices to test ordering"); + + var dt = harness.DataTree; + int previousBottom = int.MinValue; + int checkedCount = 0; + + for (int i = 0; i < dt.Slices.Count; i++) + { + var slice = (Slice)dt.Slices[i]; + int sliceTop = slice.Top; + + if (i > 0) + { + Assert.That(sliceTop, Is.GreaterThanOrEqualTo(previousBottom), + $"Slice [{i}] ({slice.GetType().Name}, Label=\"{slice.Label}\") " + + $"Top={sliceTop} overlaps previous slice bottom={previousBottom}. " + + $"Monotonic ordering required for clip-rect culling (Enhancement 3)."); + } + + previousBottom = sliceTop + slice.Height; + checkedCount++; + } + + Console.WriteLine($"[OPT-TEST] Monotonic ordering: {checkedCount} slices verified"); + } + } + + /// <summary> + /// Verifies IsHeaderNode delegates correctly to the cached IsHeader property. + /// The public IsHeaderNode property should always agree with the internal + /// cached IsHeader value. Exercises Enhancement 8 delegation. + /// </summary> + [Test] + public void DataTreeOpt_IsHeaderNodeDelegatesToCachedProperty() + { + CreateSimpleEntry(); + using (var harness = new DataTreeRenderHarness(Cache, m_entry, "Normal")) + { + harness.PopulateSlices(1024, 1200, false); + Assert.That(harness.SliceCount, Is.GreaterThan(0), + "Should have slices"); + + var dt = harness.DataTree; + int checkedCount = 0; + + for (int i = 0; i < dt.Slices.Count; i++) + { + var slice = (Slice)dt.Slices[i]; + if (slice.ConfigurationNode == null) + continue; + + // IsHeaderNode (public) should delegate to IsHeader (internal cached) + Assert.That(slice.IsHeaderNode, Is.EqualTo(slice.IsHeader), + $"Slice [{i}] IsHeaderNode/IsHeader mismatch"); + checkedCount++; + } + + Assert.That(checkedCount, Is.GreaterThan(0), + "Should have checked at least one slice"); + Console.WriteLine($"[OPT-TEST] IsHeaderNode delegation: {checkedCount} slices verified"); + } + } + + /// <summary> + /// Verifies that slice positions set by the full layout pass (fFull=true, + /// called from OnLayout) agree with the accumulated yTop values computed by + /// the paint path (fFull=false, called from OnPaint). This is the core safety + /// invariant for a future binary-search optimization: if the paint path skips + /// iterating above-viewport slices, the positions it uses must match what + /// the full layout established. + /// Failure mode: yTop accumulator drift when the paint path doesn't walk all slices. + /// </summary> + [Test] + public void DataTreeOpt_FullLayoutAndPaintPathPositionsAgree() + { + CreateExtremeEntry(); + using (var harness = new DataTreeRenderHarness(Cache, m_entry, "Normal")) + { + harness.PopulateSlices(1024, 2400, false); + Assert.That(harness.SliceCount, Is.GreaterThan(0), "Should have slices"); + + var dt = harness.DataTree; + + // Record positions after full layout (set by OnLayout → HandleLayout1(fFull=true)) + var fullLayoutPositions = new int[dt.Slices.Count]; + var fullLayoutHeights = new int[dt.Slices.Count]; + for (int i = 0; i < dt.Slices.Count; i++) + { + var slice = (Slice)dt.Slices[i]; + fullLayoutPositions[i] = slice.Top; + fullLayoutHeights[i] = slice.Height; + } + + // Force another paint-path layout by invalidating and pumping + dt.Invalidate(); + System.Windows.Forms.Application.DoEvents(); + + // Verify positions haven't drifted + int checkedCount = 0; + for (int i = 0; i < dt.Slices.Count; i++) + { + var slice = (Slice)dt.Slices[i]; + Assert.That(slice.Top, Is.EqualTo(fullLayoutPositions[i]), + $"Slice [{i}] ({slice.GetType().Name}, Label=\"{slice.Label}\") " + + $"Top drifted from {fullLayoutPositions[i]} to {slice.Top} " + + $"after paint-path layout. Full→paint position agreement broken."); + checkedCount++; + } + + Console.WriteLine($"[OPT-TEST] Position agreement: {checkedCount} slices verified"); + } + } + + /// <summary> + /// Verifies that AutoScrollPosition does not drift across multiple paint passes. + /// The paint path adjusts scroll position when slices above the viewport change + /// height (e.g., DummyObjectSlice → real slice). After initial convergence, + /// scroll position must be stable. + /// Failure mode: binary search skips the desiredScrollPosition adjustment for + /// above-viewport slices, causing scroll jumps. + /// </summary> + [Test] + public void DataTreeOpt_ScrollPositionStableAcrossPaints() + { + CreateExtremeEntry(); + using (var harness = new DataTreeRenderHarness(Cache, m_entry, "Normal")) + { + // Use a small viewport so most slices are below the fold + harness.PopulateSlices(1024, 400, false); + Assert.That(harness.SliceCount, Is.GreaterThan(0), "Should have slices"); + + var dt = harness.DataTree; + + // Warm up — first paint triggers layout convergence + var warmup = harness.CaptureCompositeBitmap(); + Assert.That(warmup, Is.Not.Null); + warmup.Dispose(); + + // Record scroll position after convergence + var scrollAfterConvergence = dt.AutoScrollPosition; + + // Force multiple paint passes + for (int pass = 0; pass < 3; pass++) + { + dt.Invalidate(); + System.Windows.Forms.Application.DoEvents(); + } + + Assert.That(dt.AutoScrollPosition, Is.EqualTo(scrollAfterConvergence), + $"AutoScrollPosition drifted from {scrollAfterConvergence} to " + + $"{dt.AutoScrollPosition} after 3 additional paint passes. " + + $"Scroll stability is essential for binary-search correctness."); + + Console.WriteLine($"[OPT-TEST] Scroll stability: position={dt.AutoScrollPosition} " + + $"stable across 3 additional paints"); + } + } + + /// <summary> + /// Verifies that all slices at or before the last visible slice are also visible. + /// The .NET Framework has a bug (LT-7307) where making a slice visible when + /// prior slices are invisible causes index corruption. The MakeSliceVisible + /// method guarantees all preceding slices are visible before making the target + /// visible. A binary search that starts mid-list must preserve this invariant. + /// Failure mode: binary search skips MakeSliceVisible for slices 0..N-1, leaving + /// gaps in the visibility sequence. + /// </summary> + [Test] + public void DataTreeOpt_VisibilitySequenceHasNoGaps() + { + CreateExtremeEntry(); + using (var harness = new DataTreeRenderHarness(Cache, m_entry, "Normal")) + { + harness.PopulateSlices(1024, 800, false); + Assert.That(harness.SliceCount, Is.GreaterThan(0), "Should have slices"); + + // Force paint to trigger MakeSliceVisible + var bitmap = harness.CaptureCompositeBitmap(); + Assert.That(bitmap, Is.Not.Null); + bitmap.Dispose(); + + var dt = harness.DataTree; + + // Find the highest-index visible slice + int highestVisibleIndex = -1; + for (int i = 0; i < dt.Slices.Count; i++) + { + if (((Slice)dt.Slices[i]).Visible) + highestVisibleIndex = i; + } + + Assert.That(highestVisibleIndex, Is.GreaterThan(0), + "Should have multiple visible slices"); + + // All slices 0..highestVisibleIndex must be visible (no gaps) + int gapCount = 0; + for (int i = 0; i <= highestVisibleIndex; i++) + { + var slice = (Slice)dt.Slices[i]; + if (!slice.Visible) + { + gapCount++; + Console.WriteLine($"[OPT-TEST] Visibility gap at [{i}] " + + $"({slice.GetType().Name}, Label=\"{slice.Label}\")"); + } + } + + Assert.That(gapCount, Is.EqualTo(0), + $"Found {gapCount} invisible slices before the last visible slice " + + $"(index {highestVisibleIndex}). LT-7307: all preceding slices must " + + $"be visible to prevent index corruption."); + + Console.WriteLine($"[OPT-TEST] Visibility sequence: no gaps in 0..{highestVisibleIndex}"); + } + } + + /// <summary> + /// Removing the last visible slice shifts the first invisible off-screen slice into the + /// visible prefix. MakeSliceVisible must rebuild that prefix from the start on the next call; + /// otherwise LT-7307 can be violated by skipping the shifted slice. + /// </summary> + [Test] + public void DataTreeOpt_RemoveVisibleSliceInvalidatesHighWaterMark() + { + CreateExtremeEntry(); + using (var harness = new DataTreeRenderHarness(Cache, m_entry, "Normal")) + { + harness.PopulateSlices(1024, 800, false); + Assert.That(harness.SliceCount, Is.GreaterThan(0), "Should have slices"); + + var dt = harness.DataTree; + const int cachedPrefixEnd = 4; + Assert.That(dt.Slices.Count, Is.GreaterThan(cachedPrefixEnd + 2), + "Need enough slices to remove one cached-visible slice and then show a later one"); + + for (int i = 0; i < dt.Slices.Count; i++) + { + ((Slice)dt.Slices[i]).Visible = i <= cachedPrefixEnd; + } + + var highWaterMarkField = typeof(DataTree).GetField("m_lastVisibleHighWaterMark", + BindingFlags.Instance | BindingFlags.NonPublic); + Assert.That(highWaterMarkField, Is.Not.Null, + "Test must be able to seed the private visibility cache deterministically"); + highWaterMarkField.SetValue(dt, cachedPrefixEnd); + + dt.RemoveSliceAt(cachedPrefixEnd); + + var shiftedSlice = (Slice)dt.Slices[cachedPrefixEnd]; + Assert.That(shiftedSlice.Visible, Is.False, + "Removing the cached frontier should shift an off-screen slice into that slot"); + + int targetIndex = cachedPrefixEnd + 1; + Assert.That(((Slice)dt.Slices[targetIndex]).Visible, Is.False, + "The later target slice should begin off-screen for this regression test"); + + dt.MakeSliceVisible((Slice)dt.Slices[targetIndex], targetIndex); + + Assert.That(((Slice)dt.Slices[cachedPrefixEnd]).Visible, Is.True, + "Removing a slice must invalidate the high-water mark so MakeSliceVisible repairs the shifted prefix"); + Assert.That(((Slice)dt.Slices[targetIndex]).Visible, Is.True, + "The requested target slice should still be made visible"); + } + } + + /// <summary> + /// Verifies that no DummyObjectSlice remains in the viewport after paint. + /// The paint path must make all viewport slices real via FieldAt(). A binary + /// search that miscalculates which slices are in the viewport could leave + /// DummyObjectSlices un-expanded. + /// Failure mode: binary search starts too late, leaving slices at the top edge + /// of the viewport as dummies. + /// </summary> + [Test] + public void DataTreeOpt_NoDummySlicesInViewportAfterPaint() + { + CreateExtremeEntry(); + using (var harness = new DataTreeRenderHarness(Cache, m_entry, "Normal")) + { + harness.PopulateSlices(1024, 800, false); + Assert.That(harness.SliceCount, Is.GreaterThan(0), "Should have slices"); + + // Force full paint cycle + var bitmap = harness.CaptureCompositeBitmap(); + Assert.That(bitmap, Is.Not.Null); + bitmap.Dispose(); + + var dt = harness.DataTree; + int viewportHeight = dt.ClientRectangle.Height; + int dummyCount = 0; + + for (int i = 0; i < dt.Slices.Count; i++) + { + var slice = (Slice)dt.Slices[i]; + int sliceTop = slice.Top; + int sliceBottom = sliceTop + slice.Height; + + // Slice intersects the viewport + if (sliceBottom > 0 && sliceTop < viewportHeight) + { + if (!slice.IsRealSlice) + { + dummyCount++; + Console.WriteLine($"[OPT-TEST] Dummy in viewport at [{i}]: " + + $"{slice.GetType().Name} Y={sliceTop}-{sliceBottom}"); + } + } + } + + Assert.That(dummyCount, Is.EqualTo(0), + $"Found {dummyCount} DummyObjectSlice(s) in viewport (0-{viewportHeight}). " + + $"Paint path must make all viewport slices real via FieldAt()."); + + Console.WriteLine($"[OPT-TEST] No dummies in viewport 0-{viewportHeight}"); + } + } + + /// <summary> + /// Verifies that slice heights are stable after layout convergence. + /// A binary search for the first visible slice depends on accumulated + /// heights being deterministic: if heights change between paint calls + /// (e.g., because DummyObjectSlice→real changes weren't finalized), + /// the binary search would compute wrong yTop offsets and skip or + /// double-show slices. + /// After the initial full-layout pass, heights should never change + /// on subsequent paint passes (since all viewport slices are already real). + /// Failure mode: binary search pre-computes yTop from stale heights, + /// causing slices to render at wrong positions. + /// </summary> + [Test] + public void DataTreeOpt_SliceHeightsStableAfterConvergence() + { + CreateExtremeEntry(); + using (var harness = new DataTreeRenderHarness(Cache, m_entry, "Normal")) + { + harness.PopulateSlices(1024, 800, false); + Assert.That(harness.SliceCount, Is.GreaterThan(0), "Should have slices"); + + // Force full convergence — first paint makes everything real + var warmup = harness.CaptureCompositeBitmap(); + Assert.That(warmup, Is.Not.Null); + warmup.Dispose(); + + var dt = harness.DataTree; + + // Record converged heights + var convergedHeights = new int[dt.Slices.Count]; + for (int i = 0; i < dt.Slices.Count; i++) + convergedHeights[i] = ((Slice)dt.Slices[i]).Height; + + // Force 3 more paint cycles + for (int pass = 0; pass < 3; pass++) + { + dt.Invalidate(); + System.Windows.Forms.Application.DoEvents(); + } + + // Verify heights haven't changed + int driftCount = 0; + for (int i = 0; i < dt.Slices.Count; i++) + { + var slice = (Slice)dt.Slices[i]; + if (slice.Height != convergedHeights[i]) + { + driftCount++; + Console.WriteLine($"[OPT-TEST] Height drift at [{i}] " + + $"({slice.GetType().Name}): {convergedHeights[i]} → {slice.Height}"); + } + } + + Assert.That(driftCount, Is.EqualTo(0), + $"{driftCount} slice(s) changed height after convergence. " + + $"Binary search requires stable heights to compute accurate yTop offsets."); + + Console.WriteLine($"[OPT-TEST] Height stability: {dt.Slices.Count} slices " + + $"stable across 3 post-convergence paint passes"); + } + } + + #endregion + + #region Helpers + + /// <summary> + /// Dumps detailed slice diagnostic information to console output for debugging. + /// </summary> + private static void DumpSliceDiagnostics(DataTreeRenderHarness harness, string label) + { + Console.WriteLine($"[DATATREE] === {label} Diagnostics ==="); + Console.WriteLine($"[DATATREE] Slice count: {harness.SliceCount}"); + Console.WriteLine($"[DATATREE] Populate time: {harness.LastTiming.PopulateSlicesMs:F1}ms"); + Console.WriteLine($"[DATATREE] Init time: {harness.LastTiming.InitializationMs:F1}ms"); + + // Summary by type + var typeCounts = harness.LastTiming.SliceDiagnostics + .GroupBy(d => d.TypeName) + .OrderByDescending(g => g.Count()); + foreach (var group in typeCounts) + { + Console.WriteLine($"[DATATREE] {group.Key}: {group.Count()}"); + } + + // Individual slice details (first 30) + int limit = Math.Min(harness.LastTiming.SliceDiagnostics.Count, 30); + for (int i = 0; i < limit; i++) + { + var d = harness.LastTiming.SliceDiagnostics[i]; + Console.WriteLine($"[DATATREE] [{d.Index}] {d.TypeName,-25} " + + $"Label=\"{d.Label}\" Visible={d.Visible} " + + $"Bounds={d.Bounds} HasRootBox={d.HasRootBox}"); + } + if (harness.LastTiming.SliceDiagnostics.Count > 30) + { + Console.WriteLine($"[DATATREE] ... ({harness.LastTiming.SliceDiagnostics.Count - 30} more)"); + } + } + + private int RunTimingScenarioAndGetSliceCount(int depth, int breadth, string label) + { + m_entry = Cache.ServiceLocator.GetInstance<ILexEntryFactory>().Create(); + var morphFactory = Cache.ServiceLocator.GetInstance<IMoStemAllomorphFactory>(); + var morph = morphFactory.Create(); + m_entry.LexemeFormOA = morph; + morph.Form.VernacularDefaultWritingSystem = MakeRenderString( + $"LexemeForm - timing-{label}", Cache.DefaultVernWs); + + var senseFactory = Cache.ServiceLocator.GetInstance<ILexSenseFactory>(); + CreateNestedSenses(m_entry, senseFactory, depth, breadth, "", 1, $"timing-{label}"); + EnrichEntry(m_entry, $"timing-{label}"); + + using (var harness = new DataTreeRenderHarness(Cache, m_entry, "Normal")) + { + harness.PopulateSlices(1024, 2400, false); + Assert.That(harness.SliceCount, Is.GreaterThan(0), + $"DataTree should create slices for growth scenario {label}"); + Console.WriteLine($"[DATATREE-TIMING] growth check {label}: Slices={harness.SliceCount}"); + return harness.SliceCount; + } + } + + private static double CalculateNonWhiteDensity(Bitmap bitmap) + { + int nonWhiteCount = 0; + int totalPixels = bitmap.Width * bitmap.Height; + + for (int y = 0; y < bitmap.Height; y++) + { + for (int x = 0; x < bitmap.Width; x++) + { + var pixel = bitmap.GetPixel(x, y); + if (pixel.R < 250 || pixel.G < 250 || pixel.B < 250) + nonWhiteCount++; + } + } + + return totalPixels > 0 ? (nonWhiteCount * 100.0 / totalPixels) : 0.0; + } + + /// <summary> + /// Records timing data for a scenario to Output/RenderBenchmarks/datatree-timings.json. + /// The file accumulates entries keyed by scenario name, updating on each run. + /// </summary> + private static void RecordTiming(string scenario, int depth, int breadth, + DataTreeTimingInfo timing, double density) + { + DataTreeTimingBaselineCatalog.AssertMatches(scenario, depth, breadth, timing, density); + + string outputDir = Path.Combine( + AppDomain.CurrentDomain.BaseDirectory, "..", "..", "Output", "RenderBenchmarks"); + if (!Directory.Exists(outputDir)) + Directory.CreateDirectory(outputDir); + + string filePath = Path.Combine(outputDir, "datatree-timings.json"); + + // Load existing data or start fresh + Dictionary<string, object> allTimings; + if (File.Exists(filePath)) + { + string existing = File.ReadAllText(filePath); + allTimings = JsonConvert.DeserializeObject<Dictionary<string, object>>(existing) + ?? new Dictionary<string, object>(); + } + else + { + allTimings = new Dictionary<string, object>(); + } + + // Update entry for this scenario + allTimings[scenario] = new + { + depth, + breadth, + slices = timing.SliceCount, + initMs = Math.Round(timing.InitializationMs, 1), + populateMs = Math.Round(timing.PopulateSlicesMs, 1), + totalMs = Math.Round(timing.TotalMs, 1), + density = Math.Round(density, 2), + timestamp = DateTime.UtcNow.ToString("o") + }; + + string json = JsonConvert.SerializeObject(allTimings, Formatting.Indented); + File.WriteAllText(filePath, json); + Console.WriteLine($"[DATATREE-TIMING] Wrote timing for '{scenario}' to {filePath}"); + } + + #endregion + } +} diff --git a/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeTests.cs b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeTests.cs index 555e744b98..0f74fe0003 100644 --- a/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeTests.cs +++ b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeTests.cs @@ -264,7 +264,7 @@ public void RemoveDuplicateCustomFields() m_dtree.Initialize(Cache, false, m_layouts, m_parts); m_dtree.ShowObject(m_entry, "Normal", null, m_entry, false); var template = m_dtree.GetTemplateForObjLayout(m_entry, "Normal", null); - var expected = "<layout class=\"LexEntry\" type=\"detail\" name=\"Normal\"><part ref=\"_CustomFieldPlaceholder\" customFields=\"here\" /><part ref=\"Custom\" param=\"testField\" /></layout>"; + var expected = "<layout class=\"LexEntry\" type=\"detail\" name=\"Normal\"><part ref=\"CitationForm\" /><part ref=\"Senses\" visibility=\"ifdata\" param=\"GlossSn\" expansion=\"expanded\" /><part ref=\"_CustomFieldPlaceholder\" customFields=\"here\" /><part ref=\"Custom\" param=\"testField\" /></layout>"; Assert.That(expected, Is.EqualTo(template.OuterXml), "Exactly one part with a _CustomFieldPlaceholder ref attribute should exist."); } diff --git a/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeTimingBaselineCatalog.cs b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeTimingBaselineCatalog.cs new file mode 100644 index 0000000000..1445c6ec45 --- /dev/null +++ b/Src/Common/Controls/DetailControls/DetailControlsTests/DataTreeTimingBaselineCatalog.cs @@ -0,0 +1,167 @@ +// Copyright (c) 2026 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Runtime.CompilerServices; +using Newtonsoft.Json; +using NUnit.Framework; +using SIL.FieldWorks.Common.RenderVerification; + +namespace SIL.FieldWorks.Common.Framework.DetailControls +{ + internal sealed class DataTreeTimingBaseline + { + public int Depth { get; set; } + public int Breadth { get; set; } + public int Slices { get; set; } + public double MaxInitMs { get; set; } + public double MaxPopulateMs { get; set; } + public double MaxTotalMs { get; set; } + public double MinDensity { get; set; } + public double MaxDensity { get; set; } + } + + internal static class DataTreeTimingBaselineCatalog + { + private const string ReportTimingBaselinesEnvVar = "FW_REPORT_TIMING_BASELINES"; + private static readonly Lazy<IReadOnlyDictionary<string, DataTreeTimingBaseline>> s_baselines = + new Lazy<IReadOnlyDictionary<string, DataTreeTimingBaseline>>(LoadBaselines); + + internal static IReadOnlyDictionary<string, DataTreeTimingBaseline> Baselines => s_baselines.Value; + + internal static string BaselineFilePath => Path.Combine(GetSourceFileDirectory(), "DataTreeTimingBaselines.json"); + + internal static void AssertMatches(string scenario, int depth, int breadth, DataTreeTimingInfo timing, double density) + { + if (!Baselines.TryGetValue(scenario, out var baseline)) + { + WriteTimingReport( + $"Missing local timing baseline for scenario '{scenario}'. " + + $"Skipping timing threshold checks. Expected file: {BaselineFilePath}"); + return; + } + + WarnIfValueDiffers(scenario, "Depth", depth, baseline.Depth); + WarnIfValueDiffers(scenario, "Breadth", breadth, baseline.Breadth); + WarnIfValueDiffers(scenario, "Slice count", timing.SliceCount, baseline.Slices); + WarnIfTimingExceedsBaseline(scenario, "Init", timing.InitializationMs, baseline.MaxInitMs); + WarnIfTimingExceedsBaseline(scenario, "Populate", timing.PopulateSlicesMs, baseline.MaxPopulateMs); + WarnIfTimingExceedsBaseline(scenario, "Total", timing.TotalMs, baseline.MaxTotalMs); + WarnIfDensityOutOfRange(scenario, density, baseline.MinDensity, baseline.MaxDensity); + } + + internal static void AssertSnapshotCoverage() + { + if (Baselines.Count == 0) + { + WriteTimingReport( + $"No local timing baselines loaded from {BaselineFilePath}. " + + "Skipping timing baseline coverage assertion."); + return; + } + + var snapshotScenarioIds = Directory + .GetFiles(GetSourceFileDirectory(), "DataTreeRenderTests.DataTreeRender_*.verified.png") + .Select(path => Path.GetFileName(path)) + .Select(name => name.Substring( + "DataTreeRenderTests.DataTreeRender_".Length, + name.Length - "DataTreeRenderTests.DataTreeRender_".Length - ".verified.png".Length)) + .OrderBy(name => name, StringComparer.Ordinal) + .ToList(); + + var missingScenarioIds = snapshotScenarioIds + .Where(id => !Baselines.ContainsKey(id)) + .ToList(); + + if (missingScenarioIds.Count > 0) + { + WriteTimingReport( + $"Committed snapshot scenarios are missing timing baselines in {BaselineFilePath}: " + + string.Join(", ", missingScenarioIds)); + } + } + + private static IReadOnlyDictionary<string, DataTreeTimingBaseline> LoadBaselines() + { + if (!File.Exists(BaselineFilePath)) + { + WriteTimingReport( + $"Timing baseline file not found at {BaselineFilePath}. " + + "Using empty baseline catalog."); + return new Dictionary<string, DataTreeTimingBaseline>(StringComparer.Ordinal); + } + + var json = File.ReadAllText(BaselineFilePath); + var baselines = JsonConvert.DeserializeObject<Dictionary<string, DataTreeTimingBaseline>>(json); + return baselines ?? new Dictionary<string, DataTreeTimingBaseline>(StringComparer.Ordinal); + } + + private static string GetSourceFileDirectory([CallerFilePath] string sourceFile = "") + { + return Path.GetDirectoryName(sourceFile); + } + + private static bool IsTimingReportingEnabled() + { + return string.Equals( + Environment.GetEnvironmentVariable(ReportTimingBaselinesEnvVar), + "1", + StringComparison.Ordinal); + } + + private static bool IsRunningInCi() + { + return !string.IsNullOrEmpty(Environment.GetEnvironmentVariable("CI")); + } + + private static void WarnIfTimingExceedsBaseline(string scenario, string metricName, double actualMs, double baselineMs) + { + if (actualMs <= baselineMs) + return; + + WriteTimingReport( + $"{scenario} {metricName} exceeded local baseline: " + + $"actual={actualMs:F2}ms baseline={baselineMs:F2}ms"); + } + + private static void WarnIfValueDiffers(string scenario, string metricName, int actualValue, int baselineValue) + { + if (actualValue == baselineValue) + return; + + WriteTimingReport( + $"{scenario} {metricName} differs from local baseline: " + + $"actual={actualValue} baseline={baselineValue}"); + } + + private static void WarnIfDensityOutOfRange(string scenario, double actualDensity, double minDensity, double maxDensity) + { + if (actualDensity < minDensity) + { + WriteTimingReport( + $"{scenario} rendered less content than its local timing baseline: " + + $"actual={actualDensity:F2}% min={minDensity:F2}%"); + return; + } + + if (actualDensity > maxDensity) + { + WriteTimingReport( + $"{scenario} rendered more content than its local timing baseline: " + + $"actual={actualDensity:F2}% max={maxDensity:F2}%"); + } + } + + private static void WriteTimingReport(string message) + { + if (IsRunningInCi() || !IsTimingReportingEnabled()) + return; + + TestContext.Progress.WriteLine($"[DATATREE-TIMING] {message}"); + } + } +} \ No newline at end of file diff --git a/Src/Common/Controls/DetailControls/DetailControlsTests/DetailControlsTests.csproj b/Src/Common/Controls/DetailControls/DetailControlsTests/DetailControlsTests.csproj index ced8c89b00..cfd5ff4782 100644 --- a/Src/Common/Controls/DetailControls/DetailControlsTests/DetailControlsTests.csproj +++ b/Src/Common/Controls/DetailControls/DetailControlsTests/DetailControlsTests.csproj @@ -1,11 +1,12 @@ -<?xml version='1.0' encoding='utf-8'?> +<?xml version="1.0" encoding="utf-8"?> <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <AssemblyName>DetailControlsTests</AssemblyName> <RootNamespace>SIL.FieldWorks.Common.Framework.DetailControls</RootNamespace> <TargetFramework>net48</TargetFramework> <OutputType>Library</OutputType> - <IsTestProject>true</IsTestProject> <NoWarn>168,169,219,414,649,1635,1702,1701</NoWarn> + <IsTestProject>true</IsTestProject> + <NoWarn>168,169,219,414,649,1635,1702,1701</NoWarn> <Prefer32Bit>false</Prefer32Bit> <GenerateAssemblyInfo>false</GenerateAssemblyInfo> </PropertyGroup> @@ -29,8 +30,10 @@ <PackageReference Include="SIL.LCModel.Tests" PrivateAssets="All" /> <PackageReference Include="SIL.LCModel.Utils.Tests" PrivateAssets="All" /> <PackageReference Include="SIL.TestUtilities" /> + <PackageReference Include="Newtonsoft.Json" /> </ItemGroup> <ItemGroup> + <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> <Reference Include="netstandard" /> </ItemGroup> @@ -44,10 +47,12 @@ <ProjectReference Include="../../../SimpleRootSite/SimpleRootSite.csproj" /> <ProjectReference Include="../../../ViewsInterfaces/ViewsInterfaces.csproj" /> <ProjectReference Include="../DetailControls.csproj" /> + <ProjectReference Include="../../../RenderTestInfrastructure/RenderTestInfrastructure.csproj" /> + <ProjectReference Include="../../../RenderVerification/RenderVerification.csproj" /> </ItemGroup> <ItemGroup> <Compile Include="..\..\..\..\CommonAssemblyInfo.cs"> <Link>Properties\CommonAssemblyInfo.cs</Link> </Compile> </ItemGroup> -</Project> \ No newline at end of file +</Project> diff --git a/Src/Common/Controls/DetailControls/DetailControlsTests/RenderTestAssemblySetup.cs b/Src/Common/Controls/DetailControls/DetailControlsTests/RenderTestAssemblySetup.cs new file mode 100644 index 0000000000..1188266848 --- /dev/null +++ b/Src/Common/Controls/DetailControls/DetailControlsTests/RenderTestAssemblySetup.cs @@ -0,0 +1,46 @@ +using System; +using System.Drawing.Text; +using System.Linq; +using System.Runtime.InteropServices; +using NUnit.Framework; + +namespace SIL.FieldWorks.Common.Framework.DetailControls +{ + [SetUpFixture] + public sealed class RenderTestAssemblySetup + { + private const int DpiAwarenessContextUnaware = -1; + private const string DeterministicRenderFontFamily = "Segoe UI"; + + [DllImport("User32.dll")] + private static extern bool SetProcessDpiAwarenessContext(int dpiFlag); + + [OneTimeSetUp] + public void OneTimeSetup() + { + // Force grayscale antialiasing (ANTIALIASED_QUALITY=4) for deterministic + // rendering across dev machines and CI (Windows Server 2025). + // The native VwGraphics reads this env var when creating GDI fonts. + Environment.SetEnvironmentVariable("FW_FONT_QUALITY", "4"); + + try + { + SetProcessDpiAwarenessContext(DpiAwarenessContextUnaware); + } + catch (DllNotFoundException) + { + } + catch (EntryPointNotFoundException) + { + } + + using (var installedFonts = new InstalledFontCollection()) + { + bool hasDeterministicFont = installedFonts.Families.Any( + family => string.Equals(family.Name, DeterministicRenderFontFamily, StringComparison.OrdinalIgnoreCase)); + TestContext.Progress.WriteLine( + $"[RENDER-SETUP] DPI unaware requested. Font '{DeterministicRenderFontFamily}' installed={hasDeterministicFont}"); + } + } + } +} \ No newline at end of file diff --git a/Src/Common/Controls/DetailControls/DetailControlsTests/Test.fwlayout b/Src/Common/Controls/DetailControls/DetailControlsTests/Test.fwlayout index 3684e911d3..c9eba8797f 100644 --- a/Src/Common/Controls/DetailControls/DetailControlsTests/Test.fwlayout +++ b/Src/Common/Controls/DetailControls/DetailControlsTests/Test.fwlayout @@ -24,6 +24,20 @@ <layout class="LexSense" type="detail" name="GlossSn" expansion="expanded"> <part ref="Gloss"/> <part ref="ScientificName" visibility="ifdata"/> + <part ref="Senses" visibility="ifdata" param="GlossSn" expansion="expanded"/> + </layout> + <layout class="LexSense" type="detail" name="GlossSnIndented" expansion="expanded"> + <part ref="Gloss"/> + <part ref="ScientificName" visibility="ifdata"/> + <indent indent="true"> + <part ref="Senses" visibility="ifdata" param="GlossSnIndented" expansion="expanded"/> + </indent> + </layout> + <layout class="MoStemAllomorph" type="detail" name="FormOnly"> + <part ref="FormOnly"/> + </layout> + <layout class="LexPronunciation" type="detail" name="FormOnly"> + <part ref="FormOnly"/> </layout> <layout class="LexEtymology" type="detail" name="empty"> <!-- Empty base template (unified with caller node to inject child parts). --> @@ -34,9 +48,39 @@ <part ref="CitationForm" label="Citation Form" abbr="!?"/> </layout> <layout class="LexEntry" type="detail" name="Normal"> - <part ref="_CustomFieldPlaceholder" customFields="here"/> + <part ref="CitationForm"/> + <part ref="Senses" visibility="ifdata" param="GlossSn" expansion="expanded"/> <part ref="_CustomFieldPlaceholder" customFields="here"/> </layout> + <layout class="LexEntry" type="detail" name="NormalWithHiddenFields"> + <part ref="CitationForm"/> + <part ref="Bibliography" visibility="never"/> + <part ref="Comment" visibility="never"/> + <part ref="LiteralMeaning" visibility="never"/> + <part ref="Restrictions" visibility="never"/> + <part ref="SummaryDefinition" visibility="never"/> + <part ref="Senses" visibility="ifdata" param="GlossSn" expansion="expanded"/> + </layout> + <layout class="LexEntry" type="detail" name="NormalWithHiddenFieldsIndented"> + <part ref="CitationForm"/> + <part ref="Bibliography" visibility="never"/> + <part ref="Comment" visibility="never"/> + <part ref="LiteralMeaning" visibility="never"/> + <part ref="Restrictions" visibility="never"/> + <part ref="SummaryDefinition" visibility="never"/> + <part ref="Senses" visibility="ifdata" param="GlossSnIndented" expansion="expanded"/> + </layout> + <layout class="LexEntry" type="detail" name="ProductionLikeWithHiddenFieldsIndented"> + <part ref="LexemeForm" label="Lexeme Form"/> + <part ref="CitationForm" label="Citation Form"/> + <part ref="Pronunciations" visibility="ifdata"/> + <part ref="Bibliography" visibility="never"/> + <part ref="Comment" visibility="never"/> + <part ref="LiteralMeaning" visibility="never"/> + <part ref="Restrictions" visibility="never"/> + <part ref="SummaryDefinition" visibility="never"/> + <part ref="Senses" visibility="ifdata" param="GlossSnIndented" expansion="expanded"/> + </layout> <layout class="LexSense" type="detail" name="Indented" expansion="expanded"> <indent> <part ref="Gloss"/> @@ -46,4 +90,8 @@ <layout class="LexEntry" type="detail" name="NoRef"> <part customFields="here"/> </layout> + <layout class="LexEntry" type="detail" name="NormalCollapsible"> + <part ref="CitationForm"/> + <part ref="SensesCollapsible" expansion="expanded"/> + </layout> </LayoutInventory> \ No newline at end of file diff --git a/Src/Common/Controls/DetailControls/DetailControlsTests/TestParts.xml b/Src/Common/Controls/DetailControls/DetailControlsTests/TestParts.xml index ab64e5f17b..66c55b8a99 100644 --- a/Src/Common/Controls/DetailControls/DetailControlsTests/TestParts.xml +++ b/Src/Common/Controls/DetailControls/DetailControlsTests/TestParts.xml @@ -4,9 +4,27 @@ <part id="LexEntry-Detail-CitationForm"> <slice label="CitationForm" editor="multistring" field="CitationForm" ws="vernacular"/> </part> + <part id="LexEntry-Detail-LexemeForm"> + <obj field="LexemeForm" layout="FormOnly" /> + </part> + <part id="LexEntry-Detail-Pronunciations"> + <seq field="Pronunciations" layout="FormOnly" /> + </part> <part id="LexEntry-Detail-Bibliography"> <slice label="Bibliography" editor="multistring" field="Bibliography" ws="analysis"/> </part> + <part id="LexEntry-Detail-Comment"> + <slice label="Comment" editor="multistring" field="Comment" ws="analysis"/> + </part> + <part id="LexEntry-Detail-LiteralMeaning"> + <slice label="Literal Meaning" editor="multistring" field="LiteralMeaning" ws="analysis"/> + </part> + <part id="LexEntry-Detail-Restrictions"> + <slice label="Restrictions" editor="multistring" field="Restrictions" ws="analysis"/> + </part> + <part id="LexEntry-Detail-SummaryDefinition"> + <slice label="Summary Definition" editor="multistring" field="SummaryDefinition" ws="analysis"/> + </part> <part id="LexEntry-Detail-Senses"> <seq field="Senses" /> </part> @@ -19,6 +37,15 @@ <part id="LexSense-Detail-ScientificName" type="Detail"> <slice field="ScientificName" label="ScientificName" editor="string" ws="analysis" /> </part> + <part id="LexSense-Detail-Senses"> + <seq field="Senses" /> + </part> + <part id="MoStemAllomorph-Detail-FormOnly" type="Detail"> + <slice field="Form" label="Lexeme Form" editor="multistring" ws="vernacular" /> + </part> + <part id="LexPronunciation-Detail-FormOnly" type="Detail"> + <slice field="Form" label="Pronunciation" editor="multistring" ws="all pronunciation" /> + </part> <part id="LexEtymology-Detail-Form" type="Detail"> <slice field="Form" label="Form" editor="multistring" ws="vernacular" menu="mnuDataTree-Help" /> </part> @@ -34,6 +61,11 @@ <slice label="Bibliography" editor="string" field="Bibliography" ws="analysis"/> </slice> </part> + <part id="LexEntry-Detail-SensesCollapsible"> + <slice label="Senses" expansion="expanded"> + <seq field="Senses" layout="GlossSn"/> + </slice> + </part> <part id="LexEtymology-Detail-LanguageNotes" type="Detail"> <slice field="LanguageNotes" label="Source Language Notes" editor="multistring" ws="all analysis" menu="mnuDataTree-Help" /> </part> diff --git a/Src/Common/Controls/DetailControls/MediaInfoSlice.cs b/Src/Common/Controls/DetailControls/MediaInfoSlice.cs deleted file mode 100644 index 9226e068ca..0000000000 --- a/Src/Common/Controls/DetailControls/MediaInfoSlice.cs +++ /dev/null @@ -1,196 +0,0 @@ -// Copyright (c) 2026 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using System; -using System.Windows.Forms; -using SIL.LCModel.Core.Text; -using SIL.LCModel; -using SIL.FieldWorks.Common.RootSites; -using SIL.LCModel.Core.KernelInterfaces; -using SIL.LCModel.Utils; -using XCore; -using SIL.FieldWorks.Common.ViewsInterfaces; - -namespace SIL.FieldWorks.Common.Framework.DetailControls -{ - /// <summary> - /// A slice that displays the media file URIs as static text. - /// </summary> - public class MediaInfoSlice : ViewSlice - { - public MediaInfoSlice() - { - InitializeComponent(); - } - - private void InitializeComponent() - { - this.Name = "MediaInfoSlice"; - this.Size = new System.Drawing.Size(208, 32); - } - - protected override void Dispose(bool disposing) - { - if (IsDisposed) - return; - base.Dispose(disposing); - } - - public ILcmOwningCollection<ICmMediaURI> MediaURIs - { - get - { - CheckDisposed(); - return (m_obj as IText)?.MediaFilesOA?.MediaURIsOC; - } - } - - /// <summary> - /// Create the embedded RootSite-based view. - /// </summary> - public override void FinishInit() - { - CheckDisposed(); - Control = new MediaInfoView(m_obj.Hvo); - } - - public override void Install(DataTree parent) - { - CheckDisposed(); - base.Install(parent); - - var view = Control as MediaInfoView; - if (view != null) - { - LcmCache cache = null; - if (m_propertyTable != null) - cache = m_propertyTable.GetValue<LcmCache>("cache"); - view.Init(cache, m_propertyTable, MediaURIs); - } - } - - /// <summary> - /// RootSite is the embedded control (MediaInfoView derives from RootSiteControl). - /// </summary> - public override RootSite RootSite - { - get - { - CheckDisposed(); - return base.Control as RootSite; - } - } - } - - /// <summary> - /// RootSite control that displays static strings (media file paths). - /// </summary> - public class MediaInfoView : RootSiteControl - { - public const int kfragRoot = 1; - private int m_ownerHvo; - private MediaInfoVc m_vc; - private ILcmOwningCollection<ICmMediaURI> m_mediaURIs; - - public MediaInfoView(int ownerHvo) - { - m_ownerHvo = ownerHvo; - BackColor = System.Drawing.SystemColors.Window; - Dock = DockStyle.Fill; - } - - public void Init(LcmCache cache, PropertyTable propertyTable, ILcmOwningCollection<ICmMediaURI> mediaURIs) - { - CheckDisposed(); - m_cache = cache; - m_propertyTable = propertyTable; - m_mediaURIs = mediaURIs; - - MakeRoot(); - } - - public override void MakeRoot() - { - CheckDisposed(); - - if (DesignMode) - return; - - if (m_rootb == null) - { - base.MakeRoot(); - - // Ensure root box has a data access appropriate for view constructors that may query it. - m_rootb.DataAccess = m_cache.DomainDataByFlid; - } - - m_vc = new MediaInfoVc(m_cache, m_mediaURIs); - - // We need to pass in a valid Hvo, so we are using the ownerHvo. This call is - // needed so the VC's Display() will be called. - m_rootb.SetRootObject(m_ownerHvo, m_vc, kfragRoot, m_rootb.Stylesheet); - m_rootb.Reconstruct(); - } - - protected override void Dispose(bool disposing) - { - if (IsDisposed) - return; - - base.Dispose(disposing); - } - } - - /// <summary> - /// View constructor that displays the URI strings. - /// </summary> - public class MediaInfoVc : FwBaseVc - { - private ILcmOwningCollection<ICmMediaURI> m_mediaURIs; - - public MediaInfoVc(LcmCache cache, ILcmOwningCollection<ICmMediaURI> mediaURIs) - { - m_cache = cache; - m_mediaURIs = mediaURIs; - } - - public override void Display(IVwEnv vwenv, int hvo, int frag) - { - switch (frag) - { - case MediaInfoView.kfragRoot: - if (m_mediaURIs == null) - return; - - // Make non-editable. - vwenv.set_IntProperty((int)FwTextPropType.ktptEditable, - (int)FwTextPropVar.ktpvDefault, - (int)TptEditable.ktptNotEditable); - - // Add the URI strings. - int userWs = m_cache.WritingSystemFactory.UserWs; - foreach (var medUri in m_mediaURIs) - { - // If the URI is valid a nice path will be displayed. If not valid then the URI - // string will be displayed, which may still be helpful for the user. - string uriString = medUri.MediaURI; - try - { - Uri uri = new Uri(uriString); - uriString = uri.LocalPath; - } - catch { } - - ITsString tss = TsStringUtils.MakeString(uriString, userWs); - vwenv.OpenParagraph(); - vwenv.AddString(tss); - vwenv.CloseParagraph(); - } - break; - default: - throw new ArgumentException("Unknown frag in MediaInfoVc", nameof(frag)); - } - } - } -} diff --git a/Src/Common/Controls/DetailControls/PossibilityVectorReferenceView.cs b/Src/Common/Controls/DetailControls/PossibilityVectorReferenceView.cs index 73d00d214a..4bd5668385 100644 --- a/Src/Common/Controls/DetailControls/PossibilityVectorReferenceView.cs +++ b/Src/Common/Controls/DetailControls/PossibilityVectorReferenceView.cs @@ -321,7 +321,9 @@ public override void DisplayVec(IVwEnv vwenv, int hvo, int tag, int frag) for (int i = 0; i < count; ++i) { vwenv.AddObj(da.get_VecItem(hvo, tag, i), this, VectorReferenceView.kfragTargetObj); - vwenv.AddSeparatorBar(); + // Only add separator between items, not after the last one. + if (i < count - 1) + vwenv.AddSeparatorBar(); } vwenv.AddObj(PossibilityVectorReferenceView.khvoFake, this, VectorReferenceView.kfragTargetObj); } diff --git a/Src/Common/Controls/DetailControls/Slice.cs b/Src/Common/Controls/DetailControls/Slice.cs index 10e1b16cfe..6faaacb111 100644 --- a/Src/Common/Controls/DetailControls/Slice.cs +++ b/Src/Common/Controls/DetailControls/Slice.cs @@ -91,6 +91,12 @@ public class Slice : UserControl, IxCoreColleague protected bool m_widthHasBeenSetByDataTree = false; protected IPersistenceProvider m_persistenceProvider; + // Cached XML configuration attributes — parsed once from ConfigurationNode on first access. + // Invalidated when ConfigurationNode is re-set (rare). + private bool? m_cachedIsHeader; + private bool? m_cachedSkipSpacerLine; + private bool? m_cachedSameObject; + protected Slice m_parentSlice; private readonly SplitContainer m_splitter; @@ -285,6 +291,10 @@ public XmlNode ConfigurationNode CheckDisposed(); m_configurationNode = value; + // Invalidate cached XML attribute values. + m_cachedIsHeader = null; + m_cachedSkipSpacerLine = null; + m_cachedSameObject = null; } } @@ -417,7 +427,49 @@ public bool IsHeaderNode { CheckDisposed(); - return XmlUtils.GetOptionalAttributeValue(ConfigurationNode, "header") == "true"; + return IsHeader; + } + } + + /// <summary> + /// Cached: whether ConfigurationNode has header="true". Parsed once per ConfigurationNode. + /// </summary> + internal bool IsHeader + { + get + { + if (!m_cachedIsHeader.HasValue) + m_cachedIsHeader = XmlUtils.GetOptionalBooleanAttributeValue( + ConfigurationNode, "header", false); + return m_cachedIsHeader.Value; + } + } + + /// <summary> + /// Cached: whether ConfigurationNode has skipSpacerLine="true". Parsed once per ConfigurationNode. + /// </summary> + internal bool SkipSpacerLine + { + get + { + if (!m_cachedSkipSpacerLine.HasValue) + m_cachedSkipSpacerLine = XmlUtils.GetOptionalBooleanAttributeValue( + ConfigurationNode, "skipSpacerLine", false); + return m_cachedSkipSpacerLine.Value; + } + } + + /// <summary> + /// Cached: whether ConfigurationNode has sameObject="true". Parsed once per ConfigurationNode. + /// </summary> + internal bool SameObject + { + get + { + if (!m_cachedSameObject.HasValue) + m_cachedSameObject = XmlUtils.GetOptionalBooleanAttributeValue( + ConfigurationNode, "sameObject", false); + return m_cachedSameObject.Value; } } @@ -603,7 +655,7 @@ public bool TakeFocus(bool fOkToFocusTreeNode) { // We very possibly want to focus this node, but .NET won't let us focus it till it is visible. // Make it so. - DataTree.MakeSliceVisible(this); + ContainingDataTree.MakeSliceVisible(this); } } @@ -633,7 +685,7 @@ protected override void OnGotFocus(EventArgs e) CheckDisposed(); if (Disposing) return; - DataTree.MakeSliceVisible(this); // otherwise no change our control can take focus. + ContainingDataTree.MakeSliceVisible(this); // otherwise no change our control can take focus. base.OnGotFocus(e); if (Control != null && Control.CanFocus) Control.Focus(); @@ -839,6 +891,7 @@ public virtual void Install(DataTree parent) // REVIEW (Hasso) 2018.07: would it be better to check !parent.Controls.Contains(this)? if (!isBeingReused) { + parent.IncrementSliceInstallCreationCount(); parent.Controls.Add(this); // Parent will have to move it into the right place. parent.Slices.Add(this); } @@ -2311,14 +2364,14 @@ public Slice FocusSliceOrChild() { Slice slice = containingDT.FieldAt(i); // make it real. if (!slice.Visible) // make it visible. - DataTree.MakeSliceVisible(slice); + containingDT.MakeSliceVisible(slice); } int cslice = containingDT.Slices.Count; Slice sliceRetVal = null; for (int islice = myIndex; islice < cslice; ++islice) { Slice slice = containingDT.FieldAt(islice); - DataTree.MakeSliceVisible(slice); // otherwise it can't take focus + containingDT.MakeSliceVisible(slice); // otherwise it can't take focus if (slice.TakeFocus(false)) { sliceRetVal = slice; @@ -3278,6 +3331,13 @@ protected internal virtual void SetWidthForDataTreeLayout(int width) { CheckDisposed(); + // Fast path: if width hasn't changed and we've already been initialized, + // skip splitter resize and event handler manipulation. This avoids O(N) + // unnecessary work in HandleLayout1 when width is stable (every layout + // pass after the first). + if (m_widthHasBeenSetByDataTree && Width == width) + return; + if (Width != width) Width = width; diff --git a/Src/Common/Controls/DetailControls/SliceTreeNode.cs b/Src/Common/Controls/DetailControls/SliceTreeNode.cs index f614bf9d5e..8e7de27282 100644 --- a/Src/Common/Controls/DetailControls/SliceTreeNode.cs +++ b/Src/Common/Controls/DetailControls/SliceTreeNode.cs @@ -332,51 +332,27 @@ void HandlePaint(object sender, PaintEventArgs pea) Graphics gr = pea.Graphics; Color lineColor = Color.FromKnownColor(KnownColor.ControlDark); - using (Pen linePen = new Pen(lineColor, 1)) + using (Pen boxLinePen = new Pen(lineColor, 1)) + using (Brush backgroundBrush = new SolidBrush(Slice.ContainingDataTree.BackColor)) + using (Brush lineBrush = new SolidBrush(lineColor)) { - linePen.DashStyle = System.Drawing.Drawing2D.DashStyle.Dot; - using (Pen boxLinePen = new Pen(lineColor, 1)) - using (Brush backgroundBrush = new SolidBrush(Slice.ContainingDataTree.BackColor)) - using (Brush lineBrush = new SolidBrush(lineColor)) - { - int nIndent = Slice.Indent; - DataTree.TreeItemState tis = Slice.Expansion; - // Drawing within a control that covers the tree node portion of this slice, we always - // draw relative to a top-of-slice that is 0. I'm keeping the variable just in case - // we ever go back to drawing in the parent window. - int ypTopOfSlice = 0; - // int ypTopOfNextSlice = this.Height; // CS2019 - int iSlice = Slice.ContainingDataTree.Slices.IndexOf(Slice); - // Go through the indents. This used to draw the correct tree structure at each level. - // Now we leave out the structue, but this figures out some stuff we need if we end up - // drawing a box. This could be optimized if we really never want the tree diagram. - for (int nInd = 0; nInd <= nIndent; ++nInd) - { - // int ypTreeTop = ypTopOfSlice; // CS2019 - int xpBoxLeft = kdxpLeftMargin + nInd * kdxpIndDist; + int nIndent = Slice.Indent; + DataTree.TreeItemState tis = Slice.Expansion; + // Drawing within a control that covers the tree node portion of this slice, we always + // draw relative to a top-of-slice that is 0. I'm keeping the variable just in case + // we ever go back to drawing in the parent window. + int ypTopOfSlice = 0; + + // We intentionally do not draw connector line patterns here. + // Keep only the geometry needed to position the expand/collapse box. + int xpBoxLeft = kdxpLeftMargin + nIndent * kdxpIndDist; int xpBoxCtr = xpBoxLeft + kdxpBoxCtr; - // Enhance JohnT: 2nd argument of max should be label height. int dypBranchHeight = Slice.GetBranchHeight(); int dypLeftOver = Math.Max(kdypBoxHeight / 2, dypBranchHeight) - kdypBoxHeight / 2; int ypBoxTop = ypTopOfSlice + dypLeftOver; int ypBoxCtr = ypBoxTop + kdypBoxHeight / 2; - // int xpRtLineEnd = xpBoxCtr + kdxpLongLineLen; // CS2019 - - // There are two possible locations for the start and stop points for the - // vertical line. That will produce three different results which I have - // attempted to illustrate below. In case that's unclear they are: - // an L - shaped right angle, a T - shape rotated counter-clockwise by - // 90 degrees and an inverted L shape (i.e. flipped vertically). - // - // |_ > ypStart = top of field, ypStop = center point of +/- box. - // |- > ypStart = top of field, ypStop = bottom of field. - // | > ypStart = center point of +/- box, ypStop = bottom of field. - // - // Draw the vertical line. - bool fMoreFieldsAtLevel = (Slice.ContainingDataTree.NextFieldAtIndent(nInd, iSlice) != 0); - - // Process a terminal level with a box. - if (ShowPlusMinus && nInd == nIndent && tis != DataTree.TreeItemState.ktisFixed) + + if (ShowPlusMinus && tis != DataTree.TreeItemState.ktisFixed) { // Draw the box. Rectangle rcBox = new Rectangle(xpBoxLeft, ypBoxTop, kdxpBoxWid, kdypBoxHeight); @@ -399,7 +375,6 @@ void HandlePaint(object sender, PaintEventArgs pea) } } } - } // // If the height of the slice is greater then one line (1.5 * LabelHeight) and // // the slice has a child, then we need to draw a line to that child. (fixes a @@ -432,7 +407,6 @@ void HandlePaint(object sender, PaintEventArgs pea) // gr.DrawLine(borderPen, xIndent, yPos, this.Width, yPos); Slice.DrawLabel(ypTopOfSlice, gr, pea.ClipRectangle.Width); - } } } diff --git a/Src/Common/Controls/DetailControls/VectorReferenceView.cs b/Src/Common/Controls/DetailControls/VectorReferenceView.cs index 2d9c139faf..e7f2ec4f7b 100644 --- a/Src/Common/Controls/DetailControls/VectorReferenceView.cs +++ b/Src/Common/Controls/DetailControls/VectorReferenceView.cs @@ -858,7 +858,11 @@ public override void DisplayVec(IVwEnv vwenv, int hvo, int tag, int frag) { vwenv.AddObj(da.get_VecItem(hvo, tag, i), this, VectorReferenceView.kfragTargetObj); - vwenv.AddSeparatorBar(); + // Only add separator between items, not after the last one. + // A trailing separator draws an unwanted grey bar after the + // final item (e.g. after "Main Dictionary"). + if (i < count - 1) + vwenv.AddSeparatorBar(); } } public string TextStyle diff --git a/Src/Common/Controls/XMLViews/XMLViewsTests/XmlBrowseViewBaseTests.cs b/Src/Common/Controls/XMLViews/XMLViewsTests/XmlBrowseViewBaseTests.cs index e68d8fa5a5..46babcaadd 100644 --- a/Src/Common/Controls/XMLViews/XMLViewsTests/XmlBrowseViewBaseTests.cs +++ b/Src/Common/Controls/XMLViews/XMLViewsTests/XmlBrowseViewBaseTests.cs @@ -75,6 +75,12 @@ public class FakeRootBox : IVwRootBox /// <summary/> public XmlBrowseViewBase m_xmlBrowseViewBase; + public int ReconstructCallCount { get; private set; } + public int LastSetRootObjectHvo { get; private set; } + public IVwViewConstructor LastSetRootObjectVc { get; private set; } + public int LastSetRootObjectFrag { get; private set; } + public IVwStylesheet LastSetRootObjectStylesheet { get; private set; } + /// <summary> /// null unless manually set /// </summary> @@ -189,6 +195,12 @@ public bool IsPropChangedInProgress get { throw new NotImplementedException();} } + /// <summary/> + public bool NeedsReconstruct + { + get { throw new NotImplementedException();} + } + /// <summary/> public void PropChanged(int hvo, int tag, int ivMin, int cvIns, int cvDel) { @@ -210,7 +222,10 @@ public void SetRootObjects(int[] _rghvo, IVwViewConstructor[] _rgpvwvc, int[] _r /// <summary/> public void SetRootObject(int hvo, IVwViewConstructor _vwvc, int frag, IVwStylesheet _ss) { - throw new NotImplementedException(); + LastSetRootObjectHvo = hvo; + LastSetRootObjectVc = _vwvc; + LastSetRootObjectFrag = frag; + LastSetRootObjectStylesheet = _ss; } /// <summary/> @@ -426,7 +441,7 @@ public void PrintSinglePage(IVwPrintContext _vpc, int nPageNo) /// <summary/> public bool LoseFocus() { - throw new NotImplementedException(); + return true; } /// <summary/> @@ -438,7 +453,7 @@ public void Close() /// <summary/> public void Reconstruct() { - throw new NotImplementedException(); + ReconstructCallCount++; } /// <summary/> diff --git a/Src/Common/Controls/XMLViews/XMLViewsTests/XmlViewRefreshPolicyTests.cs b/Src/Common/Controls/XMLViews/XMLViewsTests/XmlViewRefreshPolicyTests.cs new file mode 100644 index 0000000000..76eee9143a --- /dev/null +++ b/Src/Common/Controls/XMLViews/XMLViewsTests/XmlViewRefreshPolicyTests.cs @@ -0,0 +1,185 @@ +// Copyright (c) 2026 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using NUnit.Framework; +using SIL.FieldWorks.Common.ViewsInterfaces; +using SIL.LCModel; +using SIL.LCModel.Core.KernelInterfaces; +using XCore; + +namespace XMLViewsTests +{ + internal sealed class TestXmlView : SIL.FieldWorks.Common.Controls.XmlView + { + public void InstallRootBoxForTest(IVwRootBox rootBox) + { + m_rootb = rootBox; + } + + public void InstallXmlVcForTest(SIL.FieldWorks.Common.Controls.XmlVc xmlVc) + { + m_xmlVc = xmlVc; + } + + public string LayoutNameForTest => m_layoutName; + } + + internal sealed class TestXmlSeqView : SIL.FieldWorks.Common.Controls.XmlSeqView + { + public void InstallRootBoxForTest(IVwRootBox rootBox) + { + m_rootb = rootBox; + } + + public void InstallXmlVcForTest(SIL.FieldWorks.Common.Controls.XmlVc xmlVc) + { + m_xmlVc = xmlVc; + } + + public void InstallPropertyTableForTest(PropertyTable propertyTable) + { + m_propertyTable = propertyTable; + } + } + + [TestFixture] + public class XmlViewRefreshPolicyTests : MemoryOnlyBackendProviderRestoredForEachTestTestBase + { + private static void EnsureTestInventoriesLoaded(string databaseName) + { + if (Inventory.GetInventory("layouts", databaseName) != null && + Inventory.GetInventory("parts", databaseName) != null) + { + return; + } + + var layoutKeyAttributes = new System.Collections.Generic.Dictionary<string, string[]>(); + layoutKeyAttributes["layout"] = new[] { "class", "type", "name", "choiceGuid" }; + layoutKeyAttributes["group"] = new[] { "label" }; + layoutKeyAttributes["part"] = new[] { "ref" }; + + var layoutInventory = new Inventory("*.fwlayout", "/LayoutInventory/*", layoutKeyAttributes, "test", "nowhere"); + layoutInventory.LoadElements(Resources.Layouts_xml, 1); + Inventory.SetInventory("layouts", databaseName, layoutInventory); + + var partKeyAttributes = new System.Collections.Generic.Dictionary<string, string[]>(); + partKeyAttributes["part"] = new[] { "id" }; + + var partInventory = new Inventory("*Parts.xml", "/PartInventory/bin/*", partKeyAttributes, "test", "nowhere"); + partInventory.LoadElements(Resources.Parts_xml, 1); + Inventory.SetInventory("parts", databaseName, partInventory); + } + + private SIL.FieldWorks.Common.Controls.XmlVc CreateConfiguredXmlVc(SIL.FieldWorks.Common.RootSites.SimpleRootSite rootSite, bool editable) + { + EnsureTestInventoriesLoaded(Cache.ProjectId.Name); + + var xmlVc = new SIL.FieldWorks.Common.Controls.XmlVc("root", editable, rootSite, null, Cache.DomainDataByFlid); + xmlVc.SetCache(Cache); + xmlVc.DataAccess = Cache.DomainDataByFlid; + return xmlVc; + } + + [Test] + public void XmlViewResetTables_ReconstructsRootBox() + { + using (var view = new TestXmlView()) + { + var rootBox = new FakeXmlBrowseViewBase.FakeRootBox(); + view.InstallRootBoxForTest(rootBox); + view.InstallXmlVcForTest(CreateConfiguredXmlVc(view, true)); + + view.ResetTables(); + + Assert.That(rootBox.ReconstructCallCount, Is.EqualTo(1)); + } + } + + [Test] + public void XmlViewResetTablesWithNewLayout_ReconstructsRootBoxAndStoresLayoutWithoutVc() + { + using (var view = new TestXmlView()) + { + var rootBox = new FakeXmlBrowseViewBase.FakeRootBox(); + view.InstallRootBoxForTest(rootBox); + + view.ResetTables("updated-layout"); + + Assert.That(rootBox.ReconstructCallCount, Is.EqualTo(1)); + Assert.That(view.LayoutNameForTest, Is.EqualTo("updated-layout")); + } + } + + [Test] + public void XmlSeqViewResetTablesWithLayout_ReconstructsRootBoxWithoutVc() + { + using (var view = new TestXmlSeqView()) + { + var rootBox = new FakeXmlBrowseViewBase.FakeRootBox(); + view.InstallRootBoxForTest(rootBox); + + view.ResetTables("updated-layout"); + + Assert.That(rootBox.ReconstructCallCount, Is.EqualTo(1)); + } + } + + [Test] + public void XmlSeqViewResetRoot_ReassignsRootObjectAndReconstructs() + { + using (var view = new TestXmlSeqView()) + { + var rootBox = new FakeXmlBrowseViewBase.FakeRootBox(); + var xmlVc = new SIL.FieldWorks.Common.Controls.XmlVc(); + view.InstallRootBoxForTest(rootBox); + view.InstallXmlVcForTest(xmlVc); + + view.ResetRoot(42); + + Assert.That(rootBox.LastSetRootObjectHvo, Is.EqualTo(42)); + Assert.That(rootBox.LastSetRootObjectVc, Is.SameAs(xmlVc)); + Assert.That(rootBox.LastSetRootObjectFrag, Is.EqualTo(view.RootFrag)); + Assert.That(rootBox.ReconstructCallCount, Is.EqualTo(1)); + } + } + + [Test] + public void XmlSeqViewOnPropertyChanged_ShowFailingItemsChange_ReconstructsRootBox() + { + using (var view = new TestXmlSeqView()) + using (var propertyTable = new PropertyTable(null)) + { + var rootBox = new FakeXmlBrowseViewBase.FakeRootBox(); + view.InstallRootBoxForTest(rootBox); + view.InstallXmlVcForTest(new SIL.FieldWorks.Common.Controls.XmlVc("root", false, view, null, (ISilDataAccess)null)); + view.InstallPropertyTableForTest(propertyTable); + propertyTable.SetProperty("currentContentControl", "tool", false); + propertyTable.SetProperty("ShowFailingItems-tool", true, false); + + view.OnPropertyChanged("ShowFailingItems-tool"); + + Assert.That(rootBox.ReconstructCallCount, Is.EqualTo(1)); + } + } + + [Test] + public void XmlSeqViewOnPropertyChanged_ShowFailingItemsUnchanged_DoesNotReconstructRootBox() + { + using (var view = new TestXmlSeqView()) + using (var propertyTable = new PropertyTable(null)) + { + var rootBox = new FakeXmlBrowseViewBase.FakeRootBox(); + view.InstallRootBoxForTest(rootBox); + view.InstallXmlVcForTest(new SIL.FieldWorks.Common.Controls.XmlVc("root", false, view, null, (ISilDataAccess)null)); + view.InstallPropertyTableForTest(propertyTable); + propertyTable.SetProperty("currentContentControl", "tool", false); + propertyTable.SetProperty("ShowFailingItems-tool", false, false); + + view.OnPropertyChanged("ShowFailingItems-tool"); + + Assert.That(rootBox.ReconstructCallCount, Is.EqualTo(0)); + } + } + } +} \ No newline at end of file diff --git a/Src/Common/Controls/XMLViews/XmlBrowseRDEView.cs b/Src/Common/Controls/XMLViews/XmlBrowseRDEView.cs index 59982184d5..b20a14d853 100644 --- a/Src/Common/Controls/XMLViews/XmlBrowseRDEView.cs +++ b/Src/Common/Controls/XMLViews/XmlBrowseRDEView.cs @@ -12,7 +12,6 @@ using SIL.LCModel.Core.Text; using SIL.LCModel.Core.KernelInterfaces; using SIL.FieldWorks.Common.FwUtils; -using static SIL.FieldWorks.Common.FwUtils.FwUtils; using SIL.LCModel; using SIL.FieldWorks.Common.RootSites; using SIL.LCModel.Application; @@ -75,8 +74,6 @@ protected override void Dispose( bool disposing ) if( disposing ) { - Subscriber.Unsubscribe(EventConstants.DeleteRecord, DeleteRecord); - if (components != null) { components.Dispose(); @@ -102,8 +99,6 @@ public override void Init(XmlNode nodeSpec, int hvoRoot, int fakeFlid, // Use the ones in fakeFlid, and any we create. base.Init(nodeSpec, hvoRoot, fakeFlid, cache, mediator, bv); - - Subscriber.Subscribe(EventConstants.DeleteRecord, DeleteRecord); } #endregion Construction, initialization, and disposal. @@ -1064,22 +1059,12 @@ public bool OnDeleteRecordToolTip(object holder) /// ------------------------------------------------------------------------------------ /// <summary> - /// Method that handles the menu handling for deleting records. - /// Triggered from (DistFiles\Language Explorer\Configuration\Main.xml) + /// Called when [delete record]. /// </summary> /// <param name="commandObject">The command object.</param> /// <returns></returns> /// ------------------------------------------------------------------------------------ - public bool OnDeleteRecord(object commandObject) - { - DeleteRecord(commandObject); - return true; - } - - /// <summary> - /// Method to handle published messages for DeleteRecord - /// </summary> - private void DeleteRecord(object _) + public override bool OnDeleteRecord(object commandObject) { CheckDisposed(); @@ -1088,11 +1073,11 @@ private void DeleteRecord(object _) IVwSelection vwsel = m_rootb.Selection; if (vwsel == null) - return; + return false; ISilDataAccess sda = m_bv.SpecialCache; List<XmlNode> columns = m_xbvvc.ColumnSpecs; if (columns == null || columns.Count == 0) - return; // Something is broken! + return false; // Something is broken! TextSelInfo tsi = new TextSelInfo(m_rootb.Selection); if (tsi.ContainingObject(0) == XmlRDEBrowseViewVc.khvoNewItem) @@ -1102,9 +1087,55 @@ private void DeleteRecord(object _) else { // 1. Remove the domain from the sense shown in the second column. - // 2. Delete the sense if it is now empty except for the definition shown. - // 3. Delete the entry if the entry now has no senses. - + // 2. Delete the sense iff it is now empty except for the definition shown. + // 3. Delete the entry iff the entry now has no senses. +#if false // JohnT: don't understand the following code at all. In particular it makes no sense + // to use ihvoRoot to index rgvsli; ihvoRoot is always zero in this view, it has only one root. + // Possibly this was an unsuccessful attempt to adapt some generic code I wrote to this + // particular application involving senses and entries? + // I'm leaving it in existence for now in case the original author turns up and + // can explain what he was getting at. + int cLevels = vwsel.get_BoxDepth(true); + int iLevel; + int cBoxes = -1; + int iBox = -1; + VwBoxType[] rgvbt = new VwBoxType[cLevels]; + VwBoxType vbt = VwBoxType.kvbtUnknown; + for (iLevel = 0; iLevel < cLevels; ++iLevel) + { + vbt = vwsel.get_BoxType(false, iLevel); + if (vbt == VwBoxType.kvbtTableCell) + { + cBoxes = vwsel.get_BoxCount(true, iLevel); + iBox = vwsel.get_BoxIndex(true, iLevel); + break; + } + } + Debug.Assert(cBoxes == 2); + Debug.Assert(iBox != -1); + int hvoEntry; + int hvoSense; + if (iBox == 0) + { + hvoEntry = rgvsli[ihvoRoot].hvo; + IVwSelection vwsel2 = m_rootb.MakeSelInBox(vwsel, false, iLevel, 1, + true, false, false); + SelLevInfo[] rgvsli2 = SelLevInfo.AllTextSelInfo(vwsel, vwsel2.CLevels(false) - 1, + out ihvoRoot, out tag, out cpropPrevious, out ichAnchor, out ichEnd, + out ws, out fAssocPrev, out ihvoEnd, out ttp); + hvoSense = rgvsli2[ihvoRoot].hvo; + } + else + { + hvoSense = rgvsli[ihvoRoot].hvo; + IVwSelection vwsel2 = m_rootb.MakeSelInBox(vwsel, false, iLevel, 0, + true, false, false); + SelLevInfo[] rgvsli2 = SelLevInfo.AllTextSelInfo(vwsel, vwsel2.CLevels(false) - 1, + out ihvoRoot, out tag, out cpropPrevious, out ichAnchor, out ichEnd, + out ws, out fAssocPrev, out ihvoEnd, out ttp); + hvoEntry = rgvsli2[ihvoRoot].hvo; + } +#else int cvsli = tsi.Levels(false) - 1; int tag = tsi.ContainingObjectTag(cvsli - 1); Debug.Assert(cvsli >= 1); // there should be at least one level (each row is a sense) @@ -1113,7 +1144,7 @@ private void DeleteRecord(object _) // want to process. int hvoSense = tsi.ContainingObject(cvsli - 1); int hvoEntry = m_cache.ServiceLocator.GetInstance<ICmObjectRepository>().GetObject(hvoSense).Owner.Hvo; - +#endif // If this was an editable object, it no longer is, because it's about to no longer exist. RDEVc.EditableObjectsRemove(hvoSense); @@ -1196,6 +1227,7 @@ private void DeleteRecord(object _) } }); } + return true; } #endregion Other message handlers diff --git a/Src/Common/Controls/XMLViews/XmlBrowseViewBase.cs b/Src/Common/Controls/XMLViews/XmlBrowseViewBase.cs index 921c316730..5998ba48b5 100644 --- a/Src/Common/Controls/XMLViews/XmlBrowseViewBase.cs +++ b/Src/Common/Controls/XMLViews/XmlBrowseViewBase.cs @@ -2063,6 +2063,21 @@ public virtual bool OnDisplayDeleteRecord(object commandObject, return false; } + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Called when [delete record]. + /// </summary> + /// <param name="commandObject">The command object.</param> + /// <returns></returns> + /// ------------------------------------------------------------------------------------ + public virtual bool OnDeleteRecord(object commandObject) + { + CheckDisposed(); + + return false; + } + + /// <summary> /// Allows xCore-specific initialization. We don't need any. /// </summary> diff --git a/Src/Common/FieldWorks/FieldWorks.Diagnostics.dev.config b/Src/Common/FieldWorks/FieldWorks.Diagnostics.dev.config index 60d99fc258..7005c5a6dc 100644 --- a/Src/Common/FieldWorks/FieldWorks.Diagnostics.dev.config +++ b/Src/Common/FieldWorks/FieldWorks.Diagnostics.dev.config @@ -13,5 +13,7 @@ <add name="XCore.Mediator_InvokeTrace" value="3" /> <add name="XWorks_Timing" value="3" /> <add name="XWorks_LinkListener" value="3" /> + <!-- Views render timing (enable for benchmark harness) --> + <add name="Views_RenderTiming" value="3" /> </switches> </system.diagnostics> diff --git a/Src/Common/FwUtils/FwDirectoryFinder.cs b/Src/Common/FwUtils/FwDirectoryFinder.cs index 3af3aff31b..db7935d4df 100644 --- a/Src/Common/FwUtils/FwDirectoryFinder.cs +++ b/Src/Common/FwUtils/FwDirectoryFinder.cs @@ -470,6 +470,43 @@ public static string EditorialChecksDirectory } } + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Gets the basic editorial checks DLL. Note that this is currently the ScrChecks DLL, + /// but if we ever split this DLL to separate Scripture-specific checks from more + /// generic checks that are really based on the WS and could be used to check any text, + /// then this property should be made to return the DLL containing the punctuation + /// patterns and characters checks. + /// </summary> + /// ------------------------------------------------------------------------------------ + public static string BasicEditorialChecksDll + { + get + { +#if RELEASE + try + { +#endif + string directory = EditorialChecksDirectory; + string checksDll = Path.Combine(directory, "ScrChecks.dll"); + if (!File.Exists(checksDll)) + { + string msg = ResourceHelper.GetResourceString( + "kstidUnableToFindEditorialChecks" + ); + throw new ApplicationException(string.Format(msg, directory)); + } + return checksDll; +#if RELEASE + } + catch (ApplicationException e) + { + throw new InstallationException(e); + } +#endif + } + } + /// ------------------------------------------------------------------------------------ /// <summary> /// Gets the dir where templates are installed diff --git a/Src/Common/FwUtils/FwUtilsTests/ParseCharacterSequencesTests.cs b/Src/Common/FwUtils/FwUtilsTests/ParseCharacterSequencesTests.cs deleted file mode 100644 index 60511788e4..0000000000 --- a/Src/Common/FwUtils/FwUtilsTests/ParseCharacterSequencesTests.cs +++ /dev/null @@ -1,303 +0,0 @@ -// Copyright (c) 2026 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using System.Collections.Generic; -using System.Linq; -using NUnit.Framework; - -namespace SIL.FieldWorks.Common.FwUtils -{ - /// <summary> - /// A categorizer where diacritics precede their base characters (for hacked fonts). - /// </summary> - internal class DiacriticsPrecedeCategorizer : CharacterCategorizer - { - public override bool DiacriticsFollowBaseCharacters() - { - return false; - } - } - - [TestFixture] - public class ParseCharacterSequencesTests - { - private CharacterCategorizer m_defaultCategorizer; - private DiacriticsPrecedeCategorizer m_precedeCategorizer; - - [SetUp] - public void SetUp() - { - m_defaultCategorizer = new CharacterCategorizer(); - m_precedeCategorizer = new DiacriticsPrecedeCategorizer(); - } - - private static List<string> Parse(string text, CharacterCategorizer categorizer) - { - return TextFileDataSource.ParseCharacterSequences(text, categorizer).ToList(); - } - - #region Boundary cases - [Test] - public void EmptyString_ReturnsEmpty() - { - var result = Parse("", m_defaultCategorizer); - Assert.That(result, Is.Empty); - } - - [Test] - public void NullInput_ReturnsEmpty() - { - var result = Parse(null, m_defaultCategorizer); - Assert.That(result, Is.Empty); - } - #endregion - - #region Basic character parsing - [Test] - public void BasicAscii_EachCharSeparate() - { - var result = Parse("abc", m_defaultCategorizer); - Assert.That(result, Is.EqualTo(new[] { "a", "b", "c" })); - } - - [Test] - public void SingleCharacter_ReturnsSingleElement() - { - var result = Parse("x", m_defaultCategorizer); - Assert.That(result, Is.EqualTo(new[] { "x" })); - } - - [Test] - public void Whitespace_EachSeparate() - { - var result = Parse(" \n", m_defaultCategorizer); - Assert.That(result, Is.EqualTo(new[] { " ", "\n" })); - } - - [Test] - public void PunctuationMixedWithText_EachSeparate() - { - var result = Parse("a.b", m_defaultCategorizer); - Assert.That(result, Is.EqualTo(new[] { "a", ".", "b" })); - } - - [Test] - public void Digits_EachSeparate() - { - var result = Parse("123", m_defaultCategorizer); - Assert.That(result, Is.EqualTo(new[] { "1", "2", "3" })); - } - #endregion - - #region Diacritics follow base (default Unicode ordering) - [Test] - public void CombiningDiacriticFollowsBase_GroupedWithBase() - { - // a + combining acute accent + b - var result = Parse("a\u0301b", m_defaultCategorizer); - Assert.That(result, Is.EqualTo(new[] { "a\u0301", "b" })); - } - - [Test] - public void MultipleDiacriticsOnOneBase_AllGrouped() - { - // a + combining acute + combining circumflex - var result = Parse("a\u0301\u0302", m_defaultCategorizer); - Assert.That(result, Is.EqualTo(new[] { "a\u0301\u0302" })); - } - - [Test] - public void TwoBasesEachWithDiacritics_SeparateGroups() - { - // a + combining acute + b + combining tilde - var result = Parse("a\u0301b\u0303", m_defaultCategorizer); - Assert.That(result, Is.EqualTo(new[] { "a\u0301", "b\u0303" })); - } - - [Test] - public void OnlyDiacriticsFollowMode_GroupedTogether() - { - // combining acute + combining circumflex (no base) - // First diacritic becomes the key, subsequent diacritics append - var result = Parse("\u0301\u0302", m_defaultCategorizer); - Assert.That(result, Is.EqualTo(new[] { "\u0301\u0302" })); - } - - [Test] - public void SpacingCombiningMark_TreatedAsDiacritic() - { - // Devanagari vowel sign AA (U+093E) is a SpacingCombiningMark - var result = Parse("\u0915\u093E", m_defaultCategorizer); - Assert.That(result, Is.EqualTo(new[] { "\u0915\u093E" })); - } - #endregion - - #region Diacritics precede base (hacked font ordering) - [Test] - public void DiacriticsPrecedeBase_DiacriticSeparateFromFollowingBase() - { - // combining acute + a (with diacritics-precede mode) - var result = Parse("\u0301a", m_precedeCategorizer); - Assert.That(result, Is.EqualTo(new[] { "\u0301", "a" })); - } - - [Test] - public void DiacriticsPrecedeBase_MultipleDiacritics_EachSeparate() - { - // combining acute + combining circumflex (with diacritics-precede mode) - var result = Parse("\u0301\u0302", m_precedeCategorizer); - Assert.That(result, Is.EqualTo(new[] { "\u0301", "\u0302" })); - } - - [Test] - public void DiacriticsPrecedeBase_DiacriticBeforeBase_ThenAnotherBase() - { - // combining acute + a + b - var result = Parse("\u0301ab", m_precedeCategorizer); - Assert.That(result, Is.EqualTo(new[] { "\u0301", "a", "b" })); - } - #endregion - - #region Supplementary plane characters (surrogate pairs) - [Test] - public void SupplementaryPlaneCharacter_NotSplit() - { - // U+10400 DESERET CAPITAL LETTER LONG I (surrogate pair in UTF-16) - var result = Parse("\U00010400", m_defaultCategorizer); - Assert.That(result.Count, Is.EqualTo(1)); - Assert.That(result[0], Is.EqualTo("\U00010400")); - Assert.That(result[0].Length, Is.EqualTo(2)); // surrogate pair = 2 chars - } - - [Test] - public void SupplementaryPlaneCharacterFollowedByCombiningMark_Grouped() - { - // U+10000 LINEAR B SYLLABLE B008 A + combining acute - var result = Parse("\U00010000\u0301", m_defaultCategorizer); - Assert.That(result, Is.EqualTo(new[] { "\U00010000\u0301" })); - } - - [Test] - public void MultipleSupplementaryPlaneCharacters_EachSeparate() - { - // Two supplementary characters - var result = Parse("\U00010400\U00010401", m_defaultCategorizer); - Assert.That(result.Count, Is.EqualTo(2)); - Assert.That(result[0], Is.EqualTo("\U00010400")); - Assert.That(result[1], Is.EqualTo("\U00010401")); - } - #endregion - - #region Malformed surrogate input - [Test] - public void LoneHighSurrogate_DoesNotCrash() - { - // A lone high surrogate - malformed but should not throw - var result = Parse("\uD800", m_defaultCategorizer); - Assert.That(result.Count, Is.EqualTo(1)); - } - - [Test] - public void LoneLowSurrogate_DoesNotCrash() - { - // A lone low surrogate - malformed but should not throw - var result = Parse("\uDC00", m_defaultCategorizer); - Assert.That(result.Count, Is.EqualTo(1)); - } - #endregion - - #region Real-world minority language text - [Test] - public void VietnameseToneMarks_GroupedCorrectly() - { - // Vietnamese: a + combining horn + combining acute (NFD form) - var result = Parse("a\u031B\u0301", m_defaultCategorizer); - Assert.That(result, Is.EqualTo(new[] { "a\u031B\u0301" })); - } - - [Test] - public void HebrewWithMultipleDiacritics_GroupedCorrectly() - { - // Shin + shin dot + hiriq + tipeha - var result = Parse("\u05E9\u05C1\u05B4\u0596", m_defaultCategorizer); - Assert.That(result, Is.EqualTo(new[] { "\u05E9\u05C1\u05B4\u0596" })); - } - - [Test] - public void ThaiWithCombiningMarks_GroupedCorrectly() - { - // Thai KO KAI + MAI EK (tone mark, combining) - var result = Parse("\u0E01\u0E48", m_defaultCategorizer); - Assert.That(result, Is.EqualTo(new[] { "\u0E01\u0E48" })); - } - #endregion - - #region TextFileDataSource.GetReferences integration - [Test] - public void GetReferences_ReturnsCorrectOffsetsAndLengths() - { - var categorizer = new CharacterCategorizer(); - var data = new TextFileDataSource( - new[] { "a\u0301b", "cd" }, - "Line {0}", - categorizer); - - var refs = data.GetReferences(); - Assert.That(refs, Is.Not.Null); - // Line 1: "a\u0301" (offset 0, length 2) + "b" (offset 2, length 1) - // Line 2: "c" (offset 0, length 1) + "d" (offset 1, length 1) - Assert.That(refs.Count, Is.EqualTo(4)); - - Assert.That(refs[0].Offset, Is.EqualTo(0)); - Assert.That(refs[0].Length, Is.EqualTo(2)); - Assert.That(refs[0].Text, Is.EqualTo("a\u0301")); - - Assert.That(refs[1].Offset, Is.EqualTo(2)); - Assert.That(refs[1].Length, Is.EqualTo(1)); - Assert.That(refs[1].Text, Is.EqualTo("b")); - - Assert.That(refs[2].Offset, Is.EqualTo(0)); - Assert.That(refs[2].Length, Is.EqualTo(1)); - Assert.That(refs[2].Text, Is.EqualTo("c")); - - Assert.That(refs[3].Offset, Is.EqualTo(1)); - Assert.That(refs[3].Length, Is.EqualTo(1)); - Assert.That(refs[3].Text, Is.EqualTo("d")); - } - - [Test] - public void GetReferences_EmptyLines_Skipped() - { - var categorizer = new CharacterCategorizer(); - var data = new TextFileDataSource( - new[] { "", "a", "" }, - "Line {0}", - categorizer); - - var refs = data.GetReferences(); - Assert.That(refs.Count, Is.EqualTo(1)); - Assert.That(refs[0].Text, Is.EqualTo("a")); - } - - [Test] - public void GetReferences_SupplementaryCharacters_CorrectOffsets() - { - var categorizer = new CharacterCategorizer(); - // U+10400 is a surrogate pair (2 chars in UTF-16) - var data = new TextFileDataSource( - new[] { "\U00010400a" }, - "Line {0}", - categorizer); - - var refs = data.GetReferences(); - Assert.That(refs.Count, Is.EqualTo(2)); - Assert.That(refs[0].Offset, Is.EqualTo(0)); - Assert.That(refs[0].Length, Is.EqualTo(2)); // surrogate pair - Assert.That(refs[1].Offset, Is.EqualTo(2)); - Assert.That(refs[1].Length, Is.EqualTo(1)); - Assert.That(refs[1].Text, Is.EqualTo("a")); - } - #endregion - } -} diff --git a/Src/Common/FwUtils/IChecksDataSource.cs b/Src/Common/FwUtils/IChecksDataSource.cs new file mode 100644 index 0000000000..f1c59d36e6 --- /dev/null +++ b/Src/Common/FwUtils/IChecksDataSource.cs @@ -0,0 +1,90 @@ +// Copyright (c) 2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System.Collections.Generic; + +namespace SIL.FieldWorks.Common.FwUtils +{ + public static class CheckUtils + { + public const char kStyleNamesDelimiter = '\uFFFD'; + } + + public interface IChecksDataSource + { + /// <summary> + /// Retrieve named checking parameter value. + /// Checks use this to get their setup information. + /// If the key isn't found, the implementation should return an empty string. + /// </summary> + /// <param name="key">Parameter name</param> + /// <returns>Parameter value</returns> + string GetParameterValue(string key); + + /// <summary> + /// Set the named checking parameter value. This is normally done by + /// the inventory display associated with the check. + /// </summary> + /// <param name="key">Parmameter name</param> + /// <param name="value">Parameter value</param> + void SetParameterValue(string key, string value); + + /// <summary> + /// Save all changes to parameter values + /// </summary> + void Save(); + + /// <summary> + /// Read the text for the specified book number. Parse into Tokens. + /// The tokens are accessed via the TextTokens() method. + /// We split this operation into two parts since we often want to create + /// the tokens list once and then present them to several different checks. + /// REVIEW: Rather than splitting this in this way, would it make more sense + /// to leave the onus on the implementor to cache the list if desired? + /// </summary> + /// <param name="bookNum">Number of book. This may be different in different + /// applications. This number comes from BooksPresent below.</param> + /// <param name="chapterNum">0=read whole book, else specified chapter number</param> + /// <returns><c>true</c> for success, <c>false</c> if no tokens are found for the + /// requested book and chapter</returns> + bool GetText(int bookNum, int chapterNum); + + /// <summary> + /// Enumerate all the ITextToken's from the most recent GetText call. + /// </summary> + /// <returns></returns> + // REVIEW: Why isn't this a property instead of a method? + IEnumerable<ITextToken> TextTokens(); + + /// <summary> + /// Return a list of the book numbers present. + /// This list is used as an argument to GetText above when retrieving the + /// data for each book. + /// The book number is arbitrary as long as BooksPresent/GetText agree. + /// This list should be in ascending order (because TextInventory.AddReference + /// can be implemented more efficiently if this is so --- and it gets called + /// a zillion times when building a character inventory). + /// </summary> + List<int> BooksPresent { get; } + + /// <summary> + /// Get information about characters and words. + /// This is needed for platform such as Paratext which allow the user to + /// overide some chracter info. Platform which don't allow this can mostly + /// likely just use the distributed version of CharacterCategorizer with + /// an empty conctructor. + /// ISSUE: what to do about word medial punctuation, I think every application + /// will have to have a way to specify this list. + /// </summary> + /// <returns>A character categorizer</returns> + CharacterCategorizer CharacterCategorizer { get; } + + /// <summary> + /// Returns a localized version of the specified string. + /// </summary> + /// <param name="strToLocalize"></param> + /// <returns>A Localized version of strToLocalize</returns> + string GetLocalizedString(string strToLocalize); + } +} diff --git a/Src/Common/FwUtils/IScriptureCheck.cs b/Src/Common/FwUtils/IScriptureCheck.cs new file mode 100644 index 0000000000..158179b994 --- /dev/null +++ b/Src/Common/FwUtils/IScriptureCheck.cs @@ -0,0 +1,116 @@ +// Copyright (c) 2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; + +namespace SIL.FieldWorks.Common.FwUtils +{ + /// ---------------------------------------------------------------------------------------- + /// <summary> + /// Interface for checks that don't need to implement an inventory mode. + /// </summary> + /// ---------------------------------------------------------------------------------------- + public interface IScriptureCheck + { + /// <summary> + /// Execute the check. + /// Call 'RecordError' for every error found. + /// </summary> + /// <param name="toks">ITextToken's corresponding to the text to be checked. + /// Typically this is one books worth.</param> + /// <param name="record">Call this delegate to report each error found.</param> + void Check(IEnumerable<ITextToken> toks, RecordErrorHandler record); + + /// <summary> + /// The full name of the check, e.g. "Repeated Words". After replacing any spaces + /// with underscores, this can also be used as a key for looking up a localized + /// string if the application supports localization. If this is ever changed, + /// DO NOT change the CheckId! + /// </summary> + string CheckName { get; } + + /// <summary> + /// The unique identifier of the check. This should never be changed! + /// </summary> + Guid CheckId { get; } + + /// <summary> + /// The group which the check belongs to, e.g. "Basic". After replacing any spaces + /// with underscores, this can also be used as a key for looking up a localized + /// string if the application supports localization. + /// </summary> + string CheckGroup { get; } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Gets a number that can be used to order this check relative to other checks in the + /// same group when displaying checks in the UI. + /// </summary> + /// ------------------------------------------------------------------------------------ + float RelativeOrder { get; } + + /// <summary> + /// A description for the check, e.g. "Searches for all occurrences of repeated words". + /// After replacing any spaces with underscores, this can also be used as a key for + /// looking up a localized string if the application supports localization. + /// </summary> + string Description { get; } + } + + /// ---------------------------------------------------------------------------------------- + /// <summary> + /// Interface for scripture checks that provide an inventory mode. + /// </summary> + /// ---------------------------------------------------------------------------------------- + public interface IScrCheckInventory : IScriptureCheck + { + /// <summary> + /// The name of the basic unit that this check covers as it occurs in the + /// inventory for this check (e.g. "Words"). Empty string if none. After + /// replacing any spaces with underscores, this can also be used as a key + /// for looking up a localized string if the application supports localization. + /// </summary> + string InventoryColumnHeader { get; } + + /// <summary> + /// THIS REALLY OUGHT TO BE List + /// Valid items, separated by spaces. + /// Inventory form queries this to know how what status to give each item + /// in the inventory. Inventory form updates this if user has changed the status + /// of any item. + /// </summary> + string ValidItems { get; set; } + + /// <summary> + /// THIS REALLY OUGHT TO BE List + /// Invalid items, separated by spaces. + /// Inventory form queries this to know how what status to give each item + /// in the inventory. Inventory form updates this if user has changed the status + /// of any item. + /// </summary> + string InvalidItems { get; set; } + + /// <summary> + /// Get all instances of the item being checked in the token list passed. + /// This includes both valid and invalid instances. + /// This is used 1) to create an inventory of these items. + /// To show the user all instance of an item with a specified key. + /// 2) With a "desiredKey" in order to fetch instance of a specific + /// item (e.g. all the places where "the" is a repeated word. + /// </summary> + /// <param name="tokens">Tokens for text to be scanned</param> + /// <param name="desiredKey">If you only want instance of a specific key (e.g. one word, one punctuation pattern, + /// one character, etc.) place it here. Empty string returns all items.</param> + /// <returns>List of token substrings</returns> + List<TextTokenSubstring> GetReferences(IEnumerable<ITextToken> tokens, string desiredKey); + + /// <summary> + /// Update the parameter values for storing the valid and invalid lists in CheckDataSource + /// and then save them. This is here because the inventory form does not know the names of + /// the parameters that need to be saved for a given check, only the check knows this. + /// </summary> + void Save(); + } +} diff --git a/Src/Common/FwUtils/ITextToken.cs b/Src/Common/FwUtils/ITextToken.cs index 4ee7de79fa..ad7aa631cd 100644 --- a/Src/Common/FwUtils/ITextToken.cs +++ b/Src/Common/FwUtils/ITextToken.cs @@ -81,6 +81,73 @@ public interface ITextToken /// ------------------------------------------------------------------------------------ TextType TextType { get; } + /// ------------------------------------------------------------------------------------ + /// <summary> + /// This is the style name for the paragraph containing this text. It is needed by + /// * Matched Pair check + /// * Uncapitalized Styles check + /// * Quotations check + /// + /// The quotation check which must have a list of paragraph types which + /// require continuation quotes. + /// + /// Quotation checking requires being able to say things like: + /// (these rules assume USFM markup, not sure how this would translate + /// into TE markup model, maybe just different style names?) + /// * If there is an open quote all \p paragraphs should start with + /// a continuer + /// * If there is an open quote all \q1 paragraphs should start with + /// a continuer if they follow a \p or \b but not if they follow + /// \q2 or \q1. + /// + /// ALTERNATIVE + /// have two properties just for Quotations check + /// bool ParagraphRequiresQuoteContinuer + /// bool ParagraphRequiresQuoteInQuoteContinuer + /// have two properties just for Matched Pair check + /// bool IsPoeticStyle + /// bool IsIntroductionOutlineStyle + /// no alternative for the Uncapitalized Styles check + /// + /// Checks will use the ParaStyleName or CharStyleName below, and not any of the alternatives. + /// </summary> + /// ------------------------------------------------------------------------------------ + string ParaStyleName { get; } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Gets the name of the character style (if any). + /// </summary> + /// ------------------------------------------------------------------------------------ + string CharStyleName { get; } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Gets or sets the Scripture reference as a string, + /// suitable for displaying in the UI + /// </summary> + /// ------------------------------------------------------------------------------------ + string ScrRefString { get; set; } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// This property is primarily for the chapter/verse check and allows the + /// check to set the beginning reference of a missing chapter or verse range. + /// If the missing verse is not part of a range, then this just contains + /// the missing verse reference and the MissingEndRef is empty. + /// </summary> + /// ------------------------------------------------------------------------------------ + BCVRef MissingStartRef { get; set; } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// This property is primarily for the chapter/verse check and allows the + /// check to set the ending reference of a missing chapter or verse range. + /// If the missing verse is not part of a range, then this is empty. + /// </summary> + /// ------------------------------------------------------------------------------------ + BCVRef MissingEndRef { get; set; } + /// ------------------------------------------------------------------------------------ /// <summary> /// Creates a deep copy of this text token. diff --git a/Src/Common/FwUtils/RecordErrorEventArgs.cs b/Src/Common/FwUtils/RecordErrorEventArgs.cs new file mode 100644 index 0000000000..6dcd7bf5a8 --- /dev/null +++ b/Src/Common/FwUtils/RecordErrorEventArgs.cs @@ -0,0 +1,62 @@ +// Copyright (c) 2009-2015 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; + +namespace SIL.FieldWorks.Common.FwUtils +{ + /// ---------------------------------------------------------------------------------------- + /// <summary> + /// Class of object to be passed to the RecodError delegate, containing information about + /// the location and nature of the checking inconsistency. + /// </summary> + /// ---------------------------------------------------------------------------------------- + public class RecordErrorEventArgs : EventArgs + { + private TextTokenSubstring m_tts; + private Guid m_checkId; + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Initializes a new instance of the <see cref="RecordErrorEventArgs"/> class. + /// </summary> + /// <param name="tts">The TextTokenSubstring.</param> + /// <param name="checkId">The GUID identifying the check.</param> + /// ------------------------------------------------------------------------------------ + public RecordErrorEventArgs(TextTokenSubstring tts, Guid checkId) + { + m_tts = tts; + m_checkId = checkId; + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Gets the TextTokenSubstring. + /// </summary> + /// ------------------------------------------------------------------------------------ + public TextTokenSubstring Tts + { + get { return m_tts; } + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Gets the GUID identifying the check. + /// </summary> + /// ------------------------------------------------------------------------------------ + public Guid CheckId + { + get { return m_checkId; } + } + } + + /// ---------------------------------------------------------------------------------------- + /// <summary> + /// Callback to record an error occuring at the specified location within + /// the token. The message will have already been localized by calling the + /// IChecksDataSource.GetLocalizedString() method. + /// </summary> + /// ---------------------------------------------------------------------------------------- + public delegate void RecordErrorHandler(RecordErrorEventArgs args); +} diff --git a/Src/Common/FwUtils/TextFileDataSource.cs b/Src/Common/FwUtils/TextFileDataSource.cs index 15838ad6e4..56152202c5 100644 --- a/Src/Common/FwUtils/TextFileDataSource.cs +++ b/Src/Common/FwUtils/TextFileDataSource.cs @@ -2,8 +2,9 @@ // This software is licensed under the LGPL, version 2.1 or later // (http://www.gnu.org/licenses/lgpl-2.1.html) +using System; using System.Collections.Generic; -using System.Globalization; +using System.Reflection; using SIL.LCModel.Core.Scripture; namespace SIL.FieldWorks.Common.FwUtils @@ -14,92 +15,174 @@ namespace SIL.FieldWorks.Common.FwUtils /// A class representing a file that can be parsed to find characters /// </summary> /// ---------------------------------------------------------------------------------------- - public class TextFileDataSource + public class TextFileDataSource : IChecksDataSource { + private string m_scrChecksDllFile; + private string m_scrCheck; private CharacterCategorizer m_characterCategorizer; private List<ITextToken> m_tftList; + private Dictionary<string, string> m_params; /// ------------------------------------------------------------------------------------ /// <summary> /// Initializes a new instance of the <see cref="TextFileDataSource"/> class. /// </summary> + /// <param name="scrChecksDllFile">The DLL that contains the CharactersCheck class + /// </param> + /// <param name="scrCheck">Name of the scripture check to use</param> /// <param name="fileData">An array of strings with the lines of data from the file. /// </param> /// <param name="scrRefFormatString">Format string used to format scripture references. /// </param> - /// <param name="categorizer">The character categorizer.</param> /// ------------------------------------------------------------------------------------ - public TextFileDataSource(string[] fileData, string scrRefFormatString, + public TextFileDataSource(string scrChecksDllFile, string scrCheck, string[] fileData, + string scrRefFormatString) : + this(scrChecksDllFile, scrCheck, fileData, scrRefFormatString, null, null) + { + } + + /// -------------------------------------------------------------------------------- + /// <summary> + /// Initializes a new instance of the <see cref="TextFileDataSource"/> class. + /// </summary> + /// <param name="scrChecksDllFile">The DLL that contains the CharactersCheck class</param> + /// <param name="scrCheck">Name of the scripture check to use</param> + /// <param name="fileData">An array of strings with the lines of data from the file.</param> + /// <param name="scrRefFormatString">Format string used to format scripture references.</param> + /// <param name="parameters">Checking parameters to send the check.</param> + /// <param name="categorizer">The character categorizer.</param> + /// -------------------------------------------------------------------------------- + public TextFileDataSource(string scrChecksDllFile, string scrCheck, string[] fileData, + string scrRefFormatString, Dictionary<string, string> parameters, CharacterCategorizer categorizer) { - m_characterCategorizer = categorizer ?? new CharacterCategorizer(); + m_scrChecksDllFile = scrChecksDllFile; + m_scrCheck = scrCheck; + m_characterCategorizer = (categorizer != null) ? categorizer : new CharacterCategorizer(); + m_params = parameters; m_tftList = new List<ITextToken>(); int i = 1; foreach (string line in fileData) m_tftList.Add(new TextFileToken(line, i++, scrRefFormatString)); } + #region IChecksDataSource Members /// ------------------------------------------------------------------------------------ /// <summary> - /// Gets character sequence references from all tokens. + /// Gets the books present (not supported). /// </summary> /// ------------------------------------------------------------------------------------ - public List<TextTokenSubstring> GetReferences() + public List<int> BooksPresent { - var results = new List<TextTokenSubstring>(); - foreach (ITextToken tok in m_tftList) - { - if (tok.Text == null) - continue; - int offset = 0; - foreach (string key in ParseCharacterSequences(tok.Text, m_characterCategorizer)) - { - results.Add(new TextTokenSubstring(tok, offset, key.Length)); - offset += key.Length; - } - } - return results; + get { throw new NotSupportedException(); } } /// ------------------------------------------------------------------------------------ /// <summary> - /// Parses a string into character sequences, grouping base characters with their - /// combining diacritics. Handles surrogate pairs correctly. + /// Gets the character categorizer. /// </summary> - /// <param name="text">The text to parse.</param> - /// <param name="categorizer">The character categorizer.</param> - /// <returns>An enumeration of character sequences.</returns> /// ------------------------------------------------------------------------------------ - internal static IEnumerable<string> ParseCharacterSequences(string text, - CharacterCategorizer categorizer) + public CharacterCategorizer CharacterCategorizer + { + get { return m_characterCategorizer; } + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Gets the parameter value. + /// </summary> + /// <param name="key">The key.</param> + /// <returns>An empty string</returns> + /// ------------------------------------------------------------------------------------ + public string GetParameterValue(string key) + { + string param; + if (m_params != null && m_params.TryGetValue(key, out param)) + return param; + + return string.Empty; + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Gets the text (not supported). + /// </summary> + /// <param name="bookNum">The book num.</param> + /// <param name="chapterNum">The chapter num.</param> + /// ------------------------------------------------------------------------------------ + public bool GetText(int bookNum, int chapterNum) + { + throw new NotSupportedException(); + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Saves this instance (not supported). + /// </summary> + /// ------------------------------------------------------------------------------------ + public void Save() + { + throw new NotSupportedException(); + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Sets the parameter value (not supported). + /// </summary> + /// <param name="key">The key.</param> + /// <param name="value">The value.</param> + /// ------------------------------------------------------------------------------------ + public void SetParameterValue(string key, string value) { - if (string.IsNullOrEmpty(text)) - yield break; + throw new NotSupportedException(); + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Gets the text tokens. + /// </summary> + /// ------------------------------------------------------------------------------------ + public IEnumerable<ITextToken> TextTokens() + { + return m_tftList; + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// + /// </summary> + /// ------------------------------------------------------------------------------------ + public string GetLocalizedString(string strToLocalize) + { + return strToLocalize; + } - var enumerator = StringInfo.GetTextElementEnumerator(text); - string key = ""; - bool diacriticsFollow = categorizer.DiacriticsFollowBaseCharacters(); + #endregion - while (enumerator.MoveNext()) + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Gets the references. + /// </summary> + /// <returns></returns> + /// ------------------------------------------------------------------------------------ + public List<TextTokenSubstring> GetReferences() + { + try { - string element = enumerator.GetTextElement(); - // Only single BMP chars can be diacritics (combining marks are all in the BMP) - bool isDiacritic = element.Length == 1 && categorizer.IsDiacritic(element[0]); - - if (isDiacritic && diacriticsFollow) - { - key += element; - } - else - { - if (key.Length > 0) - yield return key; - key = element; - } - } + // If this whole valid characters area wasn't such a mess I'd move this bit into a unit + // testable chunk to make sure the reflection didn't break again. If this breaks again + // maybe it will encourage us to fix the whole mess. -jn 7/2020 + Assembly asm = Assembly.LoadFile(m_scrChecksDllFile); + Type type = asm.GetType("SILUBS.ScriptureChecks." + m_scrCheck); + IScrCheckInventory scrCharInventoryBldr = + Activator.CreateInstance(type, this) as IScrCheckInventory; - if (key.Length > 0) - yield return key; + return scrCharInventoryBldr.GetReferences(m_tftList, string.Empty); + } + catch + { + return null; + } } } @@ -131,26 +214,114 @@ internal TextFileToken(string text, int iLine, string scrRefFormatString) } #region ITextToken Members - /// <summary>Not used.</summary> - public bool IsNoteStart => false; + /// -------------------------------------------------------------------------------- + /// <summary> + /// Not used. + /// </summary> + /// -------------------------------------------------------------------------------- + public bool IsNoteStart + { + get { return false; } + } + + /// -------------------------------------------------------------------------------------------- + /// <summary> + /// Not used. + /// </summary> + /// -------------------------------------------------------------------------------------------- + public bool IsParagraphStart + { + get { return true; } + } + + /// -------------------------------------------------------------------------------------------- + /// <summary> + /// Not used. + /// </summary> + /// -------------------------------------------------------------------------------------------- + public string Locale + { + get { return null; } + } + + /// -------------------------------------------------------------------------------------------- + /// <summary> + /// Not used. + /// </summary> + /// -------------------------------------------------------------------------------------------- + public string ScrRefString + { + get { return string.Format(m_scrRefFmtString, m_iLine); } + set { ; } + } - /// <summary>Not used.</summary> - public bool IsParagraphStart => true; + /// -------------------------------------------------------------------------------------------- + /// <summary> + /// Not used. + /// </summary> + /// -------------------------------------------------------------------------------------------- + public string ParaStyleName + { + get { return null; } + } - /// <summary>Not used.</summary> - public string Locale => null; + /// -------------------------------------------------------------------------------------------- + /// <summary> + /// Not used. + /// </summary> + /// -------------------------------------------------------------------------------------------- + public string CharStyleName + { + get { return null; } + } - /// <summary>Gets the scripture reference string.</summary> - public string ScrRefString => string.Format(m_scrRefFmtString, m_iLine); + /// -------------------------------------------------------------------------------------------- + /// <summary> + /// Gets the text. + /// </summary> + /// -------------------------------------------------------------------------------------------- + public string Text + { + get { return m_text; } + } - /// <summary>Gets the text.</summary> - public string Text => m_text; + /// -------------------------------------------------------------------------------------------- + /// <summary> + /// Force the check to treat the text like verse text. + /// </summary> + /// -------------------------------------------------------------------------------------------- + public TextType TextType + { + get { return TextType.Verse; } + } - /// <summary>Force the check to treat the text like verse text.</summary> - public TextType TextType => TextType.Verse; + /// -------------------------------------------------------------------------------------------- + /// <summary> + /// + /// </summary> + /// -------------------------------------------------------------------------------------------- + public BCVRef MissingEndRef + { + get { return null; } + set { ; } + } + /// -------------------------------------------------------------------------------------------- + /// <summary> + /// + /// </summary> + /// -------------------------------------------------------------------------------------------- + public BCVRef MissingStartRef + { + get { return null; } + set { ; } + } - /// <summary>Makes a deep copy of the specified text token.</summary> + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Makes a deep copy of the specified text token. + /// </summary> + /// ------------------------------------------------------------------------------------ public ITextToken Clone() { return new TextFileToken(m_text, m_iLine, m_scrRefFmtString); diff --git a/Src/Common/FwUtils/TextTokenSubstring.cs b/Src/Common/FwUtils/TextTokenSubstring.cs index 31634f22a1..a5e25c3611 100644 --- a/Src/Common/FwUtils/TextTokenSubstring.cs +++ b/Src/Common/FwUtils/TextTokenSubstring.cs @@ -6,6 +6,7 @@ using System.Collections.Generic; using System.Text; using System.Diagnostics; +using SIL.LCModel.Core.Scripture; namespace SIL.FieldWorks.Common.FwUtils { @@ -239,6 +240,16 @@ public int Length get { return m_length; } } + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Gets the paragraph style name. + /// </summary> + /// ------------------------------------------------------------------------------------ + public string ParagraphStyle + { + get { return m_tokens[0].ParaStyleName; } + } + /// ------------------------------------------------------------------------------------ /// <summary> /// Gets the first text token. @@ -258,6 +269,26 @@ public ITextToken LastToken get { return m_tokens.Count == 0 ? null : m_tokens[m_tokens.Count - 1]; } } + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Gets the missing start reference, if any. + /// </summary> + /// ------------------------------------------------------------------------------------ + public BCVRef MissingStartRef + { + get { return m_tokens.Count != 1 ? null : m_tokens[0].MissingStartRef; } + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Gets the missing and reference, if any. + /// </summary> + /// ------------------------------------------------------------------------------------ + public BCVRef MissingEndRef + { + get { return m_tokens.Count != 1 ? null : m_tokens[0].MissingEndRef; } + } + /// ------------------------------------------------------------------------------------ /// <summary> /// Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>. diff --git a/Src/Common/RenderTestInfrastructure/RenderTestInfrastructure.csproj b/Src/Common/RenderTestInfrastructure/RenderTestInfrastructure.csproj new file mode 100644 index 0000000000..d9782b172f --- /dev/null +++ b/Src/Common/RenderTestInfrastructure/RenderTestInfrastructure.csproj @@ -0,0 +1,71 @@ +<?xml version='1.0' encoding='utf-8'?> +<Project Sdk="Microsoft.NET.Sdk"> + <PropertyGroup> + <AssemblyName>RenderTestInfrastructure</AssemblyName> + <RootNamespace>SIL.FieldWorks.Common.RenderVerification</RootNamespace> + <TargetFramework>net48</TargetFramework> + <OutputType>Library</OutputType> + <NoWarn>168,169,219,414,649,1635,1702,1701</NoWarn> + <GenerateAssemblyInfo>false</GenerateAssemblyInfo> + <Prefer32Bit>false</Prefer32Bit> + <EnableDefaultCompileItems>false</EnableDefaultCompileItems> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> + <DefineConstants>DEBUG;TRACE</DefineConstants> + <DebugSymbols>true</DebugSymbols> + <Optimize>false</Optimize> + <DebugType>portable</DebugType> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> + <DefineConstants>TRACE</DefineConstants> + <DebugSymbols>true</DebugSymbols> + <Optimize>true</Optimize> + <DebugType>portable</DebugType> + </PropertyGroup> + <ItemGroup> + <PackageReference Include="CommonServiceLocator" Exclude="Build,Analyzers" /> + <PackageReference Include="Newtonsoft.Json" /> + <PackageReference Include="SIL.Core" /> + <PackageReference Include="SIL.LCModel" /> + <PackageReference Include="SIL.LCModel.Core" GeneratePathProperty="true" /> + <PackageReference Include="SIL.LCModel.Utils" /> + <PackageReference Include="SIL.WritingSystems" /> + </ItemGroup> + <ItemGroup> + <Reference Include="System.Drawing" /> + <Reference Include="System.Windows.Forms" /> + <Reference Include="netstandard" /> + </ItemGroup> + <ItemGroup> + <Compile Include="..\RenderVerification\RenderBenchmarkComparer.cs"> + <Link>RenderBenchmarkComparer.cs</Link> + </Compile> + <Compile Include="..\RenderVerification\RenderBenchmarkReportWriter.cs"> + <Link>RenderBenchmarkReportWriter.cs</Link> + </Compile> + <Compile Include="..\RenderVerification\RenderBenchmarkResults.cs"> + <Link>RenderBenchmarkResults.cs</Link> + </Compile> + <Compile Include="..\RenderVerification\RenderDiagnosticsToggle.cs"> + <Link>RenderDiagnosticsToggle.cs</Link> + </Compile> + <Compile Include="..\RenderVerification\RenderSnapshotVerifier.cs"> + <Link>RenderSnapshotVerifier.cs</Link> + </Compile> + <Compile Include="..\RenderVerification\RenderEnvironmentValidator.cs"> + <Link>RenderEnvironmentValidator.cs</Link> + </Compile> + <Compile Include="..\RenderVerification\RenderModels.cs"> + <Link>RenderModels.cs</Link> + </Compile> + <Compile Include="..\RenderVerification\RenderScenarioDataBuilder.cs"> + <Link>RenderScenarioDataBuilder.cs</Link> + </Compile> + <Compile Include="..\RenderVerification\RenderTraceParser.cs"> + <Link>RenderTraceParser.cs</Link> + </Compile> + <Compile Include="..\..\CommonAssemblyInfo.cs"> + <Link>Properties\CommonAssemblyInfo.cs</Link> + </Compile> + </ItemGroup> +</Project> \ No newline at end of file diff --git a/Src/Common/RenderVerification/CompositeViewCapture.cs b/Src/Common/RenderVerification/CompositeViewCapture.cs new file mode 100644 index 0000000000..ac8f69bd7a --- /dev/null +++ b/Src/Common/RenderVerification/CompositeViewCapture.cs @@ -0,0 +1,390 @@ +// Copyright (c) 2026 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Diagnostics; +using System.Drawing; +using System.Drawing.Imaging; +using System.Reflection; +using System.Windows.Forms; +using SIL.FieldWorks.Common.Framework.DetailControls; +using SIL.FieldWorks.Common.RootSites; +using SIL.FieldWorks.Common.ViewsInterfaces; + +namespace SIL.FieldWorks.Common.RenderVerification +{ + /// <summary> + /// Captures a composite bitmap from a DataTree control. This solves the fundamental problem + /// that WinForms <c>DrawToBitmap</c> works for standard controls (grey labels, icons, + /// splitters, section headers) but produces black rectangles for Views engine content + /// inside <see cref="ViewSlice"/> controls. The fix is a two-pass approach: + /// <list type="number"> + /// <item>Capture each slice locally via <c>DrawToBitmap</c> and composite it into the + /// full bitmap (gets per-slice WinForms chrome without relying on giant control coordinates)</item> + /// <item>Repaint DataTree-owned separator rules directly onto the bitmap, since those + /// thin gray lines are drawn by the parent control rather than by each slice</item> + /// <item>For each <see cref="ViewSlice"/>, render its <c>RootBox</c> via + /// <c>VwDrawRootBuffered</c> into the correct region, overlaying the black rectangles</item> + /// </list> + /// </summary> + public static class CompositeViewCapture + { + /// <summary> + /// Captures a composite bitmap of the DataTree, including both WinForms chrome + /// and Views engine rendered text. + /// </summary> + /// <param name="dataTree">The populated DataTree to capture.</param> + /// <returns>A composite bitmap.</returns> + public static Bitmap CaptureDataTree(DataTree dataTree, int captureWidth = 0) + { + if (dataTree == null) + throw new ArgumentNullException(nameof(dataTree)); + + // Initial totalHeight estimate from pre-init slice positions. + int totalHeight = CalculateTotalHeight(dataTree); + int width = captureWidth > 0 ? captureWidth : dataTree.ClientSize.Width; + + if (width <= 0 || totalHeight <= 0) + { + throw new InvalidOperationException( + $"DataTree has invalid dimensions ({width}x{totalHeight}). " + + $"Is it populated and laid out?"); + } + + // Ensure the DataTree is large enough to contain all slices + // (normally it would scroll, but we want to capture everything) + var originalSize = dataTree.ClientSize; + var originalAutoScroll = dataTree.AutoScroll; + try + { + dataTree.AutoScroll = false; + dataTree.ClientSize = new Size(width, totalHeight); + dataTree.PerformLayout(); + + // Force all slices to create handles and RootBoxes. + // PerformLayout calls HandleLayout1(fFull=true) which positions slices + // but does NOT call MakeSliceVisible (because fSliceIsVisible is always + // false on the full-layout path). Without explicit initialization here, + // ViewSlices that never received a paint-path MakeSliceVisible call would + // have null RootBoxes, and the VwDrawRootBuffered overlay in Pass 2 would + // silently skip them, leaving blank/empty field areas in the bitmap. + // + // We use the same sequence as HandleLayout1's fSliceIsVisible block: + // FieldAt(i) to convert dummies → force Handle creation on slice and its + // Control (which triggers MakeRoot via OnHandleCreated) → set Visible. + EnsureAllSlicesInitialized(dataTree); + + // Recompute height after initialization — slices may have changed + // height during BecomeRealInPlace (VwRootBox construction adjusts + // slice heights to match content). Use the content-tight height + // so the bitmap fits exactly around the rendered content without + // depending on DataTree.ClientSize.Height, which can vary based on + // WinForms internal auto-scroll state. + totalHeight = CalculateTotalHeight(dataTree); + dataTree.ClientSize = new Size(width, totalHeight); + dataTree.PerformLayout(); + + // Pass 1: Capture WinForms chrome slice-by-slice. + // A single DrawToBitmap over a very tall DataTree can drop left-side + // labels and separator lines for slices near the bottom of the image. + // Compositing each slice locally avoids that large-coordinate WinForms + // capture failure while preserving the existing root-box overlay pass. + var bitmap = new Bitmap(width, totalHeight, PixelFormat.Format32bppArgb); + CaptureSliceChrome(dataTree, bitmap); + + // Pass 2: Overlay Views engine content for each ViewSlice + OverlayViewSliceContent(dataTree, bitmap); + + // Pass 3: Repaint parent-drawn separator rules. + // These thin gray lines come from DataTree.OnPaint rather than from the + // slice controls, so the slice-by-slice pass above will not capture them. + PaintDataTreeSeparators(dataTree, bitmap, width, totalHeight); + + return bitmap; + } + finally + { + // Restore original size + dataTree.ClientSize = originalSize; + dataTree.AutoScroll = originalAutoScroll; + } + } + + /// <summary> + /// Calculates the content-tight height from slice positions. + /// Returns the bottom edge of the lowest slice, producing a bitmap + /// that fits exactly around the rendered content without padding. + /// This avoids depending on <see cref="DataTree.ClientSize"/> which + /// varies with WinForms auto-scroll state, form size, and other + /// non-deterministic factors. + /// </summary> + private static int CalculateTotalHeight(DataTree dataTree) + { + int maxBottom = 0; + if (dataTree.Slices != null) + { + foreach (Slice slice in dataTree.Slices) + { + int bottom = slice.Top + slice.Height; + if (bottom > maxBottom) + maxBottom = bottom; + } + } + return Math.Max(maxBottom, 1); + } + + /// <summary> + /// Deterministically initializes every slice so that ViewSlice RootBoxes + /// are fully laid out and available for the <see cref="OverlayViewSliceContent"/> pass. + /// + /// Uses the production <see cref="ViewSlice.BecomeRealInPlace"/> path which: + /// 1. Forces Handle creation (triggers OnHandleCreated → MakeRoot → VwRootBox) + /// 2. Sets AllowLayout = true (triggers PerformLayout → DoLayout → rootBox.Layout) + /// 3. Adjusts slice height to match content + /// + /// Without BecomeRealInPlace, AllowLayout remains false (set in ViewSlice.Control setter), + /// rootBox.Layout is never called, and VwDrawRootBuffered renders un-laid-out boxes + /// producing empty or clipped field content. + /// </summary> + private static void EnsureAllSlicesInitialized(DataTree dataTree) + { + if (dataTree.Slices == null) return; + + for (int i = 0; i < dataTree.Slices.Count; i++) + { + Slice slice; + try + { + // FieldAt converts dummy slices → real slices (may change Slices.Count). + slice = dataTree.FieldAt(i); + } + catch (Exception ex) + { + Trace.TraceWarning( + $"[CompositeViewCapture] FieldAt({i}) failed: {ex.Message}"); + continue; + } + if (slice == null) continue; + + try + { + // Ensure the slice has a window handle. + if (!slice.IsHandleCreated) + { + var h = slice.Handle; + } + + // Use the production initialization path (BecomeRealInPlace). + // For ViewSlice this creates the RootBox handle, sets AllowLayout = true + // (which triggers rootBox.Layout with the correct width), and adjusts + // the slice height to match the laid-out content. + if (!slice.IsRealSlice) + slice.BecomeRealInPlace(); + + // Set the slice visible (required for DrawToBitmap to include it). + if (!slice.Visible) + slice.Visible = true; + } + catch (Exception ex) + { + Trace.TraceWarning( + $"[CompositeViewCapture] Failed to init slice '{slice.Label}' at {i}: {ex.Message}"); + } + } + + // After making all slices real and visible, run a full layout pass to + // reposition slices correctly with their updated heights. + dataTree.PerformLayout(); + } + + /// <summary> + /// Captures WinForms chrome one slice at a time and composites the result into the + /// final bitmap. This avoids whole-control <c>DrawToBitmap</c> failures when slice + /// coordinates become very large in tall DataTree captures. + /// </summary> + private static void CaptureSliceChrome(DataTree dataTree, Bitmap bitmap) + { + using (var mainGraphics = Graphics.FromImage(bitmap)) + { + mainGraphics.Clear(Color.White); + + if (dataTree.Slices == null) + return; + + foreach (Slice slice in dataTree.Slices) + { + if (slice == null) + continue; + + try + { + CaptureSingleSliceChrome(slice, dataTree, mainGraphics); + } + catch (Exception ex) + { + Trace.TraceWarning( + $"[CompositeViewCapture] Failed to capture slice chrome '{slice.Label}': {ex.Message}"); + } + } + } + } + + private static void CaptureSingleSliceChrome(Slice slice, DataTree dataTree, Graphics mainGraphics) + { + var sliceRect = GetControlRectRelativeTo(slice, dataTree); + if (sliceRect.Width <= 0 || sliceRect.Height <= 0) + return; + + using (var sliceBitmap = new Bitmap(sliceRect.Width, sliceRect.Height, PixelFormat.Format32bppArgb)) + { + using (var sliceGraphics = Graphics.FromImage(sliceBitmap)) + { + sliceGraphics.Clear(Color.White); + } + + slice.DrawToBitmap(sliceBitmap, new Rectangle(0, 0, sliceRect.Width, sliceRect.Height)); + mainGraphics.DrawImageUnscaled(sliceBitmap, sliceRect.Location); + } + } + + private static void PaintDataTreeSeparators(DataTree dataTree, Bitmap bitmap, int width, int totalHeight) + { + const BindingFlags privateInstance = BindingFlags.Instance | BindingFlags.NonPublic; + var paintLinesMethod = typeof(DataTree).GetMethod("PaintLinesBetweenSlices", privateInstance); + if (paintLinesMethod == null) + { + Trace.TraceWarning("[CompositeViewCapture] Could not locate DataTree.PaintLinesBetweenSlices."); + return; + } + + using (var graphics = Graphics.FromImage(bitmap)) + { + try + { + paintLinesMethod.Invoke(dataTree, new object[] + { + graphics, + new Rectangle(0, 0, width, totalHeight), + width, + }); + } + catch (TargetInvocationException ex) + { + Trace.TraceWarning( + $"[CompositeViewCapture] Failed to paint DataTree separators: {ex.InnerException?.Message ?? ex.Message}"); + } + catch (Exception ex) + { + Trace.TraceWarning( + $"[CompositeViewCapture] Failed to paint DataTree separators: {ex.Message}"); + } + } + } + + /// <summary> + /// Iterates all ViewSlice descendants and renders their RootBox content + /// via VwDrawRootBuffered into the correct region of the bitmap. + /// </summary> + private static void OverlayViewSliceContent(DataTree dataTree, Bitmap bitmap) + { + if (dataTree.Slices == null) return; + + foreach (Slice slice in dataTree.Slices) + { + var viewSlice = slice as ViewSlice; + if (viewSlice == null) continue; + + try + { + OverlaySingleViewSlice(viewSlice, dataTree, bitmap); + } + catch (Exception ex) + { + // Don't fail the entire capture for one bad slice + Trace.TraceWarning( + $"[CompositeViewCapture] Failed to overlay ViewSlice '{slice.Label}': {ex.Message}"); + } + } + } + + /// <summary> + /// Renders a single ViewSlice's RootBox into the correct region of the bitmap. + /// + /// Key insight: VwDrawRootBuffered.DrawTheRoot calls rootSite.GetGraphics() to get + /// coordinate transform rectangles (rcSrc/rcDst). GetCoordRects returns rcDst in + /// rootSite-local coordinates (origin at (HorizMargin, 0)). If we pass a clientRect + /// with the rootSite's position in the *DataTree* (e.g. X=175), VwDrawRootBuffered + /// offsets rcDst by (-175, -y), placing content at negative X — clipping it. + /// + /// Fix: render into a temporary bitmap using rootSite-local coordinates (0,0,w,h), + /// then composite the result into the main bitmap at the correct DataTree-relative position. + /// </summary> + private static void OverlaySingleViewSlice(ViewSlice viewSlice, DataTree dataTree, Bitmap bitmap) + { + RootSite rootSite = viewSlice.RootSite; + if (rootSite == null) return; + + IVwRootBox rootBox = null; + try + { + rootBox = rootSite.RootBox; + } + catch + { + return; + } + if (rootBox == null) return; + + // Where in the DataTree bitmap this rootSite should appear + var rootSiteRect = GetControlRectRelativeTo(rootSite, dataTree); + if (rootSiteRect.Width <= 0 || rootSiteRect.Height <= 0) return; + + // Render into a temp bitmap using rootSite-local coordinates. + // This matches what GetCoordRects returns (origin at the rootSite control, not + // the DataTree), so VwDrawRootBuffered produces correct content. + using (var tempBitmap = new Bitmap(rootSiteRect.Width, rootSiteRect.Height, PixelFormat.Format32bppArgb)) + { + using (var tempGraphics = Graphics.FromImage(tempBitmap)) + { + IntPtr tempHdc = tempGraphics.GetHdc(); + try + { + var vdrb = new SIL.FieldWorks.Views.VwDrawRootBuffered(); + var localRect = new Rect(0, 0, rootSiteRect.Width, rootSiteRect.Height); + const uint whiteColor = 0x00FFFFFF; + vdrb.DrawTheRoot(rootBox, tempHdc, localRect, whiteColor, true, rootSite); + } + finally + { + tempGraphics.ReleaseHdc(tempHdc); + } + } + + // Composite the rendered rootSite content into the main bitmap + using (var mainGraphics = Graphics.FromImage(bitmap)) + { + // Clear the area first (DrawToBitmap may have left a black rect) + mainGraphics.FillRectangle(Brushes.White, rootSiteRect); + + mainGraphics.DrawImage(tempBitmap, rootSiteRect.X, rootSiteRect.Y); + } + } + } + + /// <summary> + /// Gets the bounding rectangle of a child control relative to an ancestor control. + /// </summary> + private static Rectangle GetControlRectRelativeTo(Control child, Control ancestor) + { + var location = child.PointToScreen(Point.Empty); + var ancestorOrigin = ancestor.PointToScreen(Point.Empty); + + return new Rectangle( + location.X - ancestorOrigin.X, + location.Y - ancestorOrigin.Y, + child.Width, + child.Height); + } + } +} diff --git a/Src/Common/RenderVerification/DataTreeRenderHarness.cs b/Src/Common/RenderVerification/DataTreeRenderHarness.cs new file mode 100644 index 0000000000..7b8e646227 --- /dev/null +++ b/Src/Common/RenderVerification/DataTreeRenderHarness.cs @@ -0,0 +1,538 @@ +// Copyright (c) 2026 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Drawing; +using System.Drawing.Imaging; +using System.IO; +using System.Windows.Forms; +using System.Xml; +using SIL.FieldWorks.Common.Framework.DetailControls; +using SIL.FieldWorks.Common.FwUtils; +using SIL.LCModel; +using XCore; + +namespace SIL.FieldWorks.Common.RenderVerification +{ + /// <summary> + /// Harness for rendering a full DataTree (the lex entry edit view with all WinForms chrome) + /// and capturing composite bitmaps that include grey labels, icons, expand/collapse buttons, + /// writing system indicators, section headers, and Views engine text content. + /// </summary> + /// <remarks> + /// The DataTree is the real FLEx control that composes Slices from layout XML. + /// This harness creates one programmatically, populates it via ShowObject(), and + /// captures the result using CompositeViewCapture (DrawToBitmap + VwDrawRootBuffered overlay). + /// </remarks> + public class DataTreeRenderHarness : IDisposable + { + private readonly LcmCache m_cache; + private readonly ICmObject m_rootObject; + private readonly string m_layoutName; + private readonly bool m_showHiddenFields; + + private DataTree m_dataTree; + private Mediator m_mediator; + private PropertyTable m_propertyTable; + private Form m_hostForm; + private Inventory m_layoutInventory; + private Inventory m_partInventory; + private int m_captureWidth; + private bool m_disposed; + + /// <summary> + /// Gets the number of slices populated by ShowObject. + /// </summary> + public int SliceCount => m_dataTree?.Slices?.Count ?? 0; + + /// <summary> + /// Gets the DataTree control for inspection. + /// </summary> + public DataTree DataTree => m_dataTree; + + /// <summary> + /// Gets the last captured bitmap. + /// </summary> + public Bitmap LastCapture { get; private set; } + + /// <summary> + /// Gets timing information from the last population. + /// </summary> + public DataTreeTimingInfo LastTiming { get; private set; } + + /// <summary> + /// Initializes a new instance of the <see cref="DataTreeRenderHarness"/> class. + /// </summary> + /// <param name="cache">The LCM data cache.</param> + /// <param name="rootObject">The root object to display (e.g. an ILexEntry).</param> + /// <param name="layoutName">The layout name (e.g. "Normal").</param> + public DataTreeRenderHarness(LcmCache cache, ICmObject rootObject, string layoutName = "Normal", + bool showHiddenFields = false) + { + m_cache = cache ?? throw new ArgumentNullException(nameof(cache)); + m_rootObject = rootObject ?? throw new ArgumentNullException(nameof(rootObject)); + m_layoutName = layoutName ?? "Normal"; + m_showHiddenFields = showHiddenFields; + } + + /// <summary> + /// Initializes the DataTree and populates it with slices for the root object. + /// This is the equivalent of what FLEx does when you navigate to a lex entry. + /// </summary> + /// <param name="width">Width of the host form in pixels.</param> + /// <param name="height">Height of the host form in pixels.</param> + /// <param name="useProductionLayouts">If true, loads production layout XML from DistFiles. + /// If false, uses test layouts from DetailControlsTests (simpler but less realistic).</param> + public void PopulateSlices(int width = 1024, int height = 768, bool useProductionLayouts = true) + { + DisposeResources(); + m_captureWidth = width; + + var stopwatch = Stopwatch.StartNew(); + + // Create XCore infrastructure required by DataTree + m_mediator = new Mediator(); + m_propertyTable = new PropertyTable(m_mediator); + + if (m_showHiddenFields) + { + var toolName = m_rootObject is ILexEntry ? "lexiconEdit" : + m_propertyTable.GetStringProperty("currentContentControl", null); + if (!string.IsNullOrEmpty(toolName)) + { + m_propertyTable.SetProperty( + "ShowHiddenFields-" + toolName, + true, + PropertyTable.SettingsGroup.LocalSettings, + false); + } + } + + // Create the DataTree + m_dataTree = new DataTree(); + m_dataTree.Init(m_mediator, m_propertyTable, null); + + // Host in a form for proper layout context. The form is shown offscreen + // (Opacity=0) after ShowObject to trigger the full slice lifecycle: + // OnPaint → HandleLayout1(fFull=false) → MakeSliceVisible → handle + // creation → MakeRoot → VwRootBox creation. + m_hostForm = new Form + { + FormBorderStyle = FormBorderStyle.None, + ShowInTaskbar = false, + ClientSize = new Size(width, height), + StartPosition = FormStartPosition.Manual, + Location = new Point(-2000, -2000) // offscreen + }; + m_hostForm.Controls.Add(m_dataTree); + m_dataTree.Dock = DockStyle.Fill; + + // Load layout inventories + if (useProductionLayouts) + { + LoadProductionInventories(); + } + else + { + LoadTestInventories(); + } + + // Set up the stylesheet + var ss = new SIL.LCModel.DomainServices.LcmStyleSheet(); + ss.Init(m_cache, m_cache.LangProject.Hvo, LangProjectTags.kflidStyles); + m_dataTree.StyleSheet = ss; + + // Strip layout parts that cause native crashes or managed exceptions in + // test context. Must be done after inventories are loaded but before + // ShowObject, which reads from the layout inventory. + if (useProductionLayouts) + { + StripProblematicLayoutParts(); + } + + // Initialize the DataTree with cache and inventories + m_dataTree.Initialize(m_cache, false, m_layoutInventory, m_partInventory); + + // Create the form handle so controls can paint. + m_hostForm.CreateControl(); + + var initMs = stopwatch.Elapsed.TotalMilliseconds; + + // Populate the slices (this is the expensive operation we want to benchmark). + // After ShowObject, slices exist but are Visible=false because CreateSlices + // checks wasVisible = this.Visible at the start, and since the form isn't + // shown, wasVisible is false and Show() is skipped at the end. + m_dataTree.ResetSliceInstallCreationCount(); + var populateStopwatch = Stopwatch.StartNew(); + try + { + m_dataTree.ShowObject(m_rootObject, m_layoutName, null, m_rootObject, true); + } + catch (ApplicationException ex) + { + // Even after stripping known problematic parts, other parts may fail + // due to missing test infrastructure. DataTree creates slices as it + // encounters them, so the ones before the failure are still usable. + Trace.TraceWarning( + $"[DataTreeRenderHarness] ShowObject partially failed (continuing with " + + $"{m_dataTree.Slices?.Count ?? 0} slices already created): {ex.Message}"); + } + populateStopwatch.Stop(); + + // Show the form to trigger the full WinForms lifecycle: + // OnLayout → HandleLayout1 positions slices but does NOT make them visible + // (fFull=true path). Only OnPaint → HandleLayout1(fFull=false) makes slices + // visible. So we need to: + // 1. Show the form (with Opacity=0 to avoid flicker) + // 2. Make the DataTree visible (CreateSlices called Hide() on it) + // 3. Pump paint messages so OnPaint fires + m_hostForm.Opacity = 0; + m_hostForm.Show(); + m_dataTree.Visible = true; + m_dataTree.Invalidate(); + System.Windows.Forms.Application.DoEvents(); + ExpandHostFormToContent(width, height); + + stopwatch.Stop(); + + LastTiming = new DataTreeTimingInfo + { + InitializationMs = initMs, + PopulateSlicesMs = populateStopwatch.Elapsed.TotalMilliseconds, + TotalMs = stopwatch.Elapsed.TotalMilliseconds, + SliceCount = m_dataTree.Slices?.Count ?? 0, + SliceInstallCreationCount = m_dataTree.SliceInstallCreationCount, + Timestamp = DateTime.UtcNow + }; + + // Collect slice diagnostics for debugging + if (m_dataTree.Slices != null) + { + for (int i = 0; i < m_dataTree.Slices.Count; i++) + { + var slice = m_dataTree.Slices[i]; + var diag = new SliceDiagnosticInfo + { + Index = i, + TypeName = slice.GetType().Name, + Label = slice.Label ?? "(null)", + Bounds = new Rectangle(slice.Location, slice.Size), + Visible = slice.Visible, + }; + // Check if it's a ViewSlice with a RootBox + var viewSlice = slice as ViewSlice; + if (viewSlice != null) + { + try { diag.HasRootBox = viewSlice.RootSite?.RootBox != null; } + catch { diag.HasRootBox = false; } + } + LastTiming.SliceDiagnostics.Add(diag); + } + } + } + + private void ExpandHostFormToContent(int width, int minimumHeight) + { + int currentHeight = Math.Max(minimumHeight, 1); + for (int pass = 0; pass < 3; pass++) + { + int requiredHeight = Math.Max(currentHeight, CalculateSliceContentHeight()); + if (requiredHeight <= currentHeight) + break; + + currentHeight = requiredHeight; + m_hostForm.ClientSize = new Size(width, currentHeight); + m_hostForm.PerformLayout(); + m_dataTree.PerformLayout(); + m_dataTree.Invalidate(); + System.Windows.Forms.Application.DoEvents(); + } + } + + private int CalculateSliceContentHeight() + { + int maxBottom = 0; + if (m_dataTree?.Slices != null) + { + foreach (Slice slice in m_dataTree.Slices) + { + if (slice == null) + continue; + + int bottom = slice.Top + slice.Height; + if (bottom > maxBottom) + maxBottom = bottom; + } + } + + return Math.Max(maxBottom, 1); + } + + /// <summary> + /// Captures the DataTree as a composite bitmap. WinForms chrome (grey labels, icons, + /// section headers, separators) is captured via DrawToBitmap; Views engine content + /// inside ViewSlices is overlaid via VwDrawRootBuffered for each RootSite. + /// </summary> + /// <returns>The composite bitmap, or null if capture failed.</returns> + public Bitmap CaptureCompositeBitmap() + { + if (m_dataTree == null) + throw new InvalidOperationException("Call PopulateSlices before capturing."); + + try + { + var bitmap = CompositeViewCapture.CaptureDataTree(m_dataTree, m_captureWidth); + LastCapture = bitmap; + return bitmap; + } + catch (Exception ex) + { + Trace.TraceWarning($"[DataTreeRenderHarness] Composite capture failed: {ex.Message}"); + return null; + } + } + + /// <summary> + /// Saves the last captured bitmap to the specified path. + /// </summary> + public void SaveCapture(string outputPath, ImageFormat format = null) + { + if (LastCapture == null) + throw new InvalidOperationException("No capture available. Call CaptureCompositeBitmap first."); + + var directory = Path.GetDirectoryName(outputPath); + if (!string.IsNullOrEmpty(directory) && !Directory.Exists(directory)) + Directory.CreateDirectory(directory); + + LastCapture.Save(outputPath, format ?? ImageFormat.Png); + } + + #region Layout Inventory Loading + + /// <summary> + /// Removes part refs from the loaded layout inventory that reference slices with + /// heavy external dependencies unavailable in test context. This prevents + /// ProcessSubpartNode from throwing ApplicationException which would kill the + /// entire ApplyLayout loop and lose all subsequent parts. + /// </summary> + /// <remarks> + /// Known problematic parts: + /// - "Etymologies" → SummarySlice → SummaryXmlView → native COM VwRootBox creation + /// that crashes the test host with unrecoverable native exceptions. + /// - "Messages" → MessageSlice (LexEdDll.dll) → ChorusSystem → L10NSharp. + /// Throws managed ApplicationException. + /// - "Senses", Section parts (VariantFormsSection, AlternateFormsSection, + /// GrammaticalFunctionsSection, PublicationSection) → Create complex slice + /// hierarchies with DynamicLoader, native COM Views, and expanding sections. + /// These crash the test host with unhandled native exceptions in test context + /// because the full FLEx COM infrastructure isn't initialized. + /// </remarks> + private void StripProblematicLayoutParts() + { + // Parts that crash or throw in test context. This includes all parts that + // come after and including Messages in the Normal layout, since they involve + // complex slice types (Senses with recursive sub-slices, expanding sections + // with menus, DynamicLoader-loaded custom slices, etc.). + var problematicPartRefs = new HashSet<string>(StringComparer.OrdinalIgnoreCase) + { + "Etymologies", // SummarySlice → SummaryXmlView → native COM VwRootBox + "Messages", // L10NSharp/Chorus dependency + "Senses", // Recursive sense expansion → native COM crash + "VariantFormsSection", // Expanding section → native crash + "AlternateFormsSection", // Expanding section → native crash + "GrammaticalFunctionsSection", // Expanding section → native crash + "PublicationSection" // Expanding section → native crash + }; + + // Get the LexEntry detail Normal layout node from the inventory + XmlNode layout = m_layoutInventory.GetElement("layout", + new[] { "LexEntry", "detail", m_layoutName }); + if (layout == null) + return; + + var toRemove = new List<XmlNode>(); + foreach (XmlNode child in layout.ChildNodes) + { + if (child.NodeType != XmlNodeType.Element || child.Name != "part") + continue; + string refAttr = child.Attributes?["ref"]?.Value; + if (refAttr != null && problematicPartRefs.Contains(refAttr)) + { + toRemove.Add(child); + } + } + + foreach (var node in toRemove) + { + Trace.TraceInformation( + $"[DataTreeRenderHarness] Stripping problematic part ref=\"{node.Attributes?["ref"]?.Value}\" " + + $"from {m_layoutName} layout (external dependency not available in test context)."); + layout.RemoveChild(node); + } + } + + private void LoadProductionInventories() + { + // The production path: DistFiles/Language Explorer/Configuration/Parts/ + string partDirectory = Path.Combine(FwDirectoryFinder.FlexFolder, + Path.Combine("Configuration", "Parts")); + + if (!Directory.Exists(partDirectory)) + { + throw new DirectoryNotFoundException( + $"Production layout directory not found: {partDirectory}. " + + $"FwDirectoryFinder.FlexFolder = {FwDirectoryFinder.FlexFolder}"); + } + + // Layout inventory: keyed by class+type+name, group label, part ref + var layoutKeyAttrs = new Dictionary<string, string[]> + { + ["layout"] = new[] { "class", "type", "name" }, + ["group"] = new[] { "label" }, + ["part"] = new[] { "ref" } + }; + m_layoutInventory = new Inventory(new[] { partDirectory }, + "*.fwlayout", "/LayoutInventory/*", layoutKeyAttrs, + "RenderVerification", Path.GetTempPath()); + + // Parts inventory: keyed by part id + var partKeyAttrs = new Dictionary<string, string[]> + { + ["part"] = new[] { "id" } + }; + m_partInventory = new Inventory(new[] { partDirectory }, + "*Parts.xml", "/PartInventory/bin/*", partKeyAttrs, + "RenderVerification", Path.GetTempPath()); + } + + private void LoadTestInventories() + { + // Same pattern as DataTreeTests — load from DetailControlsTests test XML + string partDirectory = Path.Combine(FwDirectoryFinder.SourceDirectory, + @"Common/Controls/DetailControls/DetailControlsTests"); + + var layoutKeyAttrs = new Dictionary<string, string[]> + { + ["layout"] = new[] { "class", "type", "name" }, + ["group"] = new[] { "label" }, + ["part"] = new[] { "ref" } + }; + m_layoutInventory = new Inventory(new[] { partDirectory }, + "*.fwlayout", "/LayoutInventory/*", layoutKeyAttrs, + "RenderVerification", Path.GetTempPath()); + + var partKeyAttrs = new Dictionary<string, string[]> + { + ["part"] = new[] { "id" } + }; + m_partInventory = new Inventory(new[] { partDirectory }, + "*Parts.xml", "/PartInventory/bin/*", partKeyAttrs, + "RenderVerification", Path.GetTempPath()); + } + + #endregion + + #region Dispose + + private void DisposeResources() + { + if (m_dataTree != null) + { + // DataTree gets disposed by form.Close since it's in Controls + m_dataTree = null; + } + + if (m_hostForm != null) + { + m_hostForm.Close(); + m_hostForm.Dispose(); + m_hostForm = null; + } + + if (m_propertyTable != null) + { + m_propertyTable.Dispose(); + m_propertyTable = null; + } + + if (m_mediator != null) + { + m_mediator.Dispose(); + m_mediator = null; + } + } + + /// <summary>Releases all resources used by the harness.</summary> + public void Dispose() + { + Dispose(true); + GC.SuppressFinalize(this); + } + + /// <summary>Releases the unmanaged resources and optionally releases the managed resources.</summary> + protected virtual void Dispose(bool disposing) + { + if (m_disposed) return; + + if (disposing) + { + DisposeResources(); + LastCapture?.Dispose(); + LastCapture = null; + } + + m_disposed = true; + } + + #endregion + } + + /// <summary> + /// Timing information for a DataTree population operation. + /// </summary> + public class DataTreeTimingInfo + { + /// <summary>Time to create DataTree, Mediator, load inventories, and create form.</summary> + public double InitializationMs { get; set; } + + /// <summary>Time for ShowObject (slice creation and layout).</summary> + public double PopulateSlicesMs { get; set; } + + /// <summary>Total wall-clock time including initialization and population.</summary> + public double TotalMs { get; set; } + + /// <summary>Number of slices created.</summary> + public int SliceCount { get; set; } + + /// <summary>Number of slice installs that created hosted controls.</summary> + public int SliceInstallCreationCount { get; set; } + + /// <summary>Timestamp of the operation.</summary> + public DateTime Timestamp { get; set; } + + /// <summary>Diagnostic information about each slice.</summary> + public List<SliceDiagnosticInfo> SliceDiagnostics { get; set; } = new List<SliceDiagnosticInfo>(); + } + + /// <summary> + /// Diagnostic information about a single slice for debugging render capture issues. + /// </summary> + public class SliceDiagnosticInfo + { + /// <summary>Zero-based index.</summary> + public int Index { get; set; } + /// <summary>Concrete type name (e.g. ViewSlice, MultiStringSlice).</summary> + public string TypeName { get; set; } + /// <summary>Grey label text.</summary> + public string Label { get; set; } + /// <summary>Bounds in DataTree coordinates.</summary> + public Rectangle Bounds { get; set; } + /// <summary>Whether the slice is visible.</summary> + public bool Visible { get; set; } + /// <summary>Whether the slice is a ViewSlice with a RootBox.</summary> + public bool HasRootBox { get; set; } + } +} diff --git a/Src/Common/RenderVerification/RenderBenchmarkComparer.cs b/Src/Common/RenderVerification/RenderBenchmarkComparer.cs new file mode 100644 index 0000000000..20b766d6f3 --- /dev/null +++ b/Src/Common/RenderVerification/RenderBenchmarkComparer.cs @@ -0,0 +1,284 @@ +// Copyright (c) 2026 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using System.Linq; + +namespace SIL.FieldWorks.Common.RenderVerification +{ + /// <summary> + /// Compares benchmark runs to detect performance regressions. + /// </summary> + public class RenderBenchmarkComparer + { + /// <summary> + /// Gets or sets the threshold percentage for detecting cold render regressions. + /// Default is 10% (0.10). + /// </summary> + public double ColdRenderRegressionThreshold { get; set; } = 0.10; + + /// <summary> + /// Gets or sets the threshold percentage for detecting warm render regressions. + /// Default is 15% (0.15). + /// </summary> + public double WarmRenderRegressionThreshold { get; set; } = 0.15; + + /// <summary> + /// Gets or sets the minimum absolute difference (in ms) to consider a regression. + /// Avoids false positives for very fast operations. + /// </summary> + public double MinAbsoluteDifferenceMs { get; set; } = 5.0; + + /// <summary> + /// Compares two benchmark runs and identifies regressions. + /// </summary> + /// <param name="baseline">The baseline run to compare against.</param> + /// <param name="current">The current run being evaluated.</param> + /// <returns>A comparison result with regression details.</returns> + public BenchmarkComparisonResult Compare(BenchmarkRun baseline, BenchmarkRun current) + { + if (baseline == null) + throw new ArgumentNullException(nameof(baseline)); + if (current == null) + throw new ArgumentNullException(nameof(current)); + + var result = new BenchmarkComparisonResult + { + BaselineRunId = baseline.Id, + CurrentRunId = current.Id, + BaselineTimestamp = baseline.RunAt, + CurrentTimestamp = current.RunAt + }; + + // Build lookup for baseline results + var baselineByScenario = baseline.Results.ToDictionary(r => r.ScenarioId, StringComparer.OrdinalIgnoreCase); + + foreach (var currentResult in current.Results) + { + if (!baselineByScenario.TryGetValue(currentResult.ScenarioId, out var baselineResult)) + { + // New scenario, no comparison possible + result.NewScenarios.Add(currentResult.ScenarioId); + continue; + } + + // Check cold render regression + var coldDiff = currentResult.ColdRenderMs - baselineResult.ColdRenderMs; + var coldPercent = baselineResult.ColdRenderMs > 0 + ? coldDiff / baselineResult.ColdRenderMs + : 0; + + if (coldDiff > MinAbsoluteDifferenceMs && coldPercent > ColdRenderRegressionThreshold) + { + result.Regressions.Add(new RegressionInfo + { + ScenarioId = currentResult.ScenarioId, + Metric = "ColdRender", + BaselineValue = baselineResult.ColdRenderMs, + CurrentValue = currentResult.ColdRenderMs, + RegressionPercent = coldPercent * 100 + }); + } + + // Check warm render regression + var warmDiff = currentResult.WarmRenderMs - baselineResult.WarmRenderMs; + var warmPercent = baselineResult.WarmRenderMs > 0 + ? warmDiff / baselineResult.WarmRenderMs + : 0; + + if (warmDiff > MinAbsoluteDifferenceMs && warmPercent > WarmRenderRegressionThreshold) + { + result.Regressions.Add(new RegressionInfo + { + ScenarioId = currentResult.ScenarioId, + Metric = "WarmRender", + BaselineValue = baselineResult.WarmRenderMs, + CurrentValue = currentResult.WarmRenderMs, + RegressionPercent = warmPercent * 100 + }); + } + + // Check pixel validation regression (pass -> fail) + if (baselineResult.PixelPerfectPass && !currentResult.PixelPerfectPass) + { + result.PixelValidationRegressions.Add(currentResult.ScenarioId); + } + + // Track improvements (inverse of regression) + if (coldDiff < -MinAbsoluteDifferenceMs && coldPercent < -ColdRenderRegressionThreshold) + { + result.Improvements.Add(new RegressionInfo + { + ScenarioId = currentResult.ScenarioId, + Metric = "ColdRender", + BaselineValue = baselineResult.ColdRenderMs, + CurrentValue = currentResult.ColdRenderMs, + RegressionPercent = coldPercent * 100 // Negative = improvement + }); + } + + if (warmDiff < -MinAbsoluteDifferenceMs && warmPercent < -WarmRenderRegressionThreshold) + { + result.Improvements.Add(new RegressionInfo + { + ScenarioId = currentResult.ScenarioId, + Metric = "WarmRender", + BaselineValue = baselineResult.WarmRenderMs, + CurrentValue = currentResult.WarmRenderMs, + RegressionPercent = warmPercent * 100 + }); + } + } + + // Find missing scenarios (in baseline but not in current) + var currentScenarios = new HashSet<string>(current.Results.Select(r => r.ScenarioId), StringComparer.OrdinalIgnoreCase); + result.MissingScenarios = baseline.Results + .Where(r => !currentScenarios.Contains(r.ScenarioId)) + .Select(r => r.ScenarioId) + .ToList(); + + result.HasRegressions = result.Regressions.Any() || result.PixelValidationRegressions.Any(); + result.HasImprovements = result.Improvements.Any(); + + return result; + } + + /// <summary> + /// Compares a current run against a baseline file. + /// </summary> + /// <param name="baselineFilePath">Path to the baseline results JSON file.</param> + /// <param name="current">The current run.</param> + /// <returns>The comparison result.</returns> + public BenchmarkComparisonResult CompareToBaseline(string baselineFilePath, BenchmarkRun current) + { + var baseline = BenchmarkRun.LoadFromFile(baselineFilePath); + return Compare(baseline, current); + } + + /// <summary> + /// Generates a summary report of the comparison. + /// </summary> + /// <param name="result">The comparison result.</param> + /// <returns>A formatted summary string.</returns> + public string GenerateSummary(BenchmarkComparisonResult result) + { + var lines = new List<string> + { + "# Benchmark Comparison Summary", + "", + $"**Baseline**: {result.BaselineRunId} ({result.BaselineTimestamp:u})", + $"**Current**: {result.CurrentRunId} ({result.CurrentTimestamp:u})", + "" + }; + + if (result.HasRegressions) + { + lines.Add("## ⚠️ Regressions Detected"); + lines.Add(""); + + foreach (var reg in result.Regressions) + { + lines.Add($"- **{reg.ScenarioId}** ({reg.Metric}): {reg.BaselineValue:F2}ms → {reg.CurrentValue:F2}ms (+{reg.RegressionPercent:F1}%)"); + } + + if (result.PixelValidationRegressions.Any()) + { + lines.Add(""); + lines.Add("### Pixel Validation Failures"); + foreach (var scenario in result.PixelValidationRegressions) + { + lines.Add($"- {scenario}"); + } + } + + lines.Add(""); + } + + if (result.HasImprovements) + { + lines.Add("## ✅ Improvements"); + lines.Add(""); + + foreach (var imp in result.Improvements) + { + lines.Add($"- **{imp.ScenarioId}** ({imp.Metric}): {imp.BaselineValue:F2}ms → {imp.CurrentValue:F2}ms ({imp.RegressionPercent:F1}%)"); + } + + lines.Add(""); + } + + if (!result.HasRegressions && !result.HasImprovements) + { + lines.Add("## ✅ No Significant Changes"); + lines.Add(""); + lines.Add("All scenarios are within acceptable tolerance."); + lines.Add(""); + } + + if (result.NewScenarios.Any()) + { + lines.Add("## New Scenarios (no baseline)"); + lines.Add(""); + foreach (var scenario in result.NewScenarios) + { + lines.Add($"- {scenario}"); + } + lines.Add(""); + } + + if (result.MissingScenarios.Any()) + { + lines.Add("## Missing Scenarios (in baseline, not in current)"); + lines.Add(""); + foreach (var scenario in result.MissingScenarios) + { + lines.Add($"- {scenario}"); + } + lines.Add(""); + } + + return string.Join(Environment.NewLine, lines); + } + } + + /// <summary> + /// Contains the result of comparing two benchmark runs. + /// </summary> + public class BenchmarkComparisonResult + { + /// <summary>Gets or sets the baseline run identifier.</summary> + public string BaselineRunId { get; set; } + + /// <summary>Gets or sets the current run identifier.</summary> + public string CurrentRunId { get; set; } + + /// <summary>Gets or sets the baseline timestamp.</summary> + public DateTime BaselineTimestamp { get; set; } + + /// <summary>Gets or sets the current timestamp.</summary> + public DateTime CurrentTimestamp { get; set; } + + /// <summary>Gets or sets whether any regressions were detected.</summary> + public bool HasRegressions { get; set; } + + /// <summary>Gets or sets whether any improvements were detected.</summary> + public bool HasImprovements { get; set; } + + /// <summary>Gets or sets the list of timing regressions.</summary> + public List<RegressionInfo> Regressions { get; set; } = new List<RegressionInfo>(); + + /// <summary>Gets or sets the list of timing improvements.</summary> + public List<RegressionInfo> Improvements { get; set; } = new List<RegressionInfo>(); + + /// <summary>Gets or sets scenarios that failed pixel validation but previously passed.</summary> + public List<string> PixelValidationRegressions { get; set; } = new List<string>(); + + /// <summary>Gets or sets new scenarios not in baseline.</summary> + public List<string> NewScenarios { get; set; } = new List<string>(); + + /// <summary>Gets or sets scenarios in baseline but missing from current.</summary> + public List<string> MissingScenarios { get; set; } = new List<string>(); + } +} diff --git a/Src/Common/RenderVerification/RenderBenchmarkReportWriter.cs b/Src/Common/RenderVerification/RenderBenchmarkReportWriter.cs new file mode 100644 index 0000000000..4ad928f29d --- /dev/null +++ b/Src/Common/RenderVerification/RenderBenchmarkReportWriter.cs @@ -0,0 +1,328 @@ +// Copyright (c) 2026 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; + +namespace SIL.FieldWorks.Common.RenderVerification +{ + /// <summary> + /// Generates summary reports for benchmark runs. + /// Outputs results in JSON and Markdown formats. + /// </summary> + public class RenderBenchmarkReportWriter + { + private readonly RenderBenchmarkComparer m_comparer; + private readonly RenderTraceParser m_traceParser; + + /// <summary> + /// Gets or sets the output directory for reports. + /// </summary> + public string OutputDirectory { get; set; } + + /// <summary> + /// Initializes a new instance of the <see cref="RenderBenchmarkReportWriter"/> class. + /// </summary> + /// <param name="outputDirectory">The output directory for reports.</param> + public RenderBenchmarkReportWriter(string outputDirectory = null) + { + OutputDirectory = outputDirectory ?? RenderDiagnosticsToggle.DefaultOutputDirectory; + m_comparer = new RenderBenchmarkComparer(); + m_traceParser = new RenderTraceParser(); + + if (!Directory.Exists(OutputDirectory)) + { + Directory.CreateDirectory(OutputDirectory); + } + } + + /// <summary> + /// Writes a complete benchmark run to JSON and Markdown files. + /// </summary> + /// <param name="run">The benchmark run to write.</param> + /// <param name="baselineRun">Optional baseline run for comparison.</param> + public void WriteReport(BenchmarkRun run, BenchmarkRun baselineRun = null) + { + if (run == null) + throw new ArgumentNullException(nameof(run)); + + // Generate summary if not present + if (run.Summary == null) + { + run.Summary = GenerateSummary(run); + } + + // Compare to baseline if provided + BenchmarkComparisonResult comparison = null; + if (baselineRun != null) + { + comparison = m_comparer.Compare(baselineRun, run); + run.Summary.HasRegressions = comparison.HasRegressions; + run.Summary.Regressions = comparison.Regressions; + } + + // Write JSON results + var jsonPath = Path.Combine(OutputDirectory, "results.json"); + run.SaveToFile(jsonPath); + + // Write Markdown summary + var markdownPath = Path.Combine(OutputDirectory, "summary.md"); + WriteSummaryMarkdown(run, comparison, markdownPath); + } + + /// <summary> + /// Generates an analysis summary for a benchmark run. + /// </summary> + /// <param name="run">The benchmark run.</param> + /// <returns>The generated summary.</returns> + public AnalysisSummary GenerateSummary(BenchmarkRun run) + { + var summary = new AnalysisSummary + { + RunId = run.Id, + TotalScenarios = run.Results.Count, + PassingScenarios = run.Results.Count(r => r.PixelPerfectPass), + FailingScenarios = run.Results.Count(r => !r.PixelPerfectPass) + }; + + // Calculate averages + if (run.Results.Any()) + { + summary.AverageColdRenderMs = run.Results.Average(r => r.ColdRenderMs); + summary.AverageWarmRenderMs = run.Results.Average(r => r.WarmRenderMs); + summary.AverageColdPerformOffscreenLayoutMs = run.Results.Average(r => r.ColdPerformOffscreenLayoutMs); + summary.AverageWarmPerformOffscreenLayoutMs = run.Results.Average(r => r.WarmPerformOffscreenLayoutMs); + } + + // Aggregate trace events for top contributors + var allTraceEvents = run.Results + .Where(r => r.TraceEvents != null) + .SelectMany(r => r.TraceEvents) + .ToList(); + + if (allTraceEvents.Any()) + { + summary.StageBreakdown = m_traceParser + .AggregateByStage(allTraceEvents) + .Values + .OrderByDescending(s => s.TotalDurationMs) + .Select(s => new StageBreakdown + { + Stage = s.Stage, + Calls = s.Count, + TotalDurationMs = s.TotalDurationMs, + AverageDurationMs = s.AverageDurationMs, + MinDurationMs = s.MinDurationMs, + MaxDurationMs = s.MaxDurationMs + }) + .ToList(); + + summary.TopContributors = m_traceParser.GetTopContributors(allTraceEvents, count: 5); + } + + // Generate recommendations + summary.Recommendations = GenerateRecommendations(run, summary); + + return summary; + } + + /// <summary> + /// Writes the summary in Markdown format. + /// </summary> + /// <param name="run">The benchmark run.</param> + /// <param name="comparison">Optional comparison result.</param> + /// <param name="outputPath">The output file path.</param> + public void WriteSummaryMarkdown(BenchmarkRun run, BenchmarkComparisonResult comparison, string outputPath) + { + var sb = new StringBuilder(); + + sb.AppendLine("# Render Benchmark Summary"); + sb.AppendLine(); + sb.AppendLine($"**Run ID**: {run.Id}"); + sb.AppendLine($"**Timestamp**: {run.RunAt:u}"); + sb.AppendLine($"**Machine**: {run.MachineName}"); + sb.AppendLine($"**Configuration**: {run.Configuration ?? "Debug"}"); + sb.AppendLine($"**Environment Hash**: `{run.EnvironmentHash}`"); + sb.AppendLine(); + + if (run.FeatureFlags?.Any() == true) + { + sb.AppendLine("## Feature Flags"); + sb.AppendLine(); + foreach (var flag in run.FeatureFlags.OrderBy(kvp => kvp.Key)) + { + sb.AppendLine($"- **{flag.Key}**: {flag.Value}"); + } + sb.AppendLine(); + } + + // Overall Status + var summary = run.Summary; + if (summary != null) + { + var statusIcon = summary.FailingScenarios == 0 ? "✅" : "⚠️"; + sb.AppendLine($"## Status {statusIcon}"); + sb.AppendLine(); + sb.AppendLine($"- **Total Scenarios**: {summary.TotalScenarios}"); + sb.AppendLine($"- **Passing**: {summary.PassingScenarios}"); + sb.AppendLine($"- **Failing**: {summary.FailingScenarios}"); + sb.AppendLine($"- **Avg Cold Render**: {summary.AverageColdRenderMs:F2}ms"); + sb.AppendLine($"- **Avg Warm Render**: {summary.AverageWarmRenderMs:F2}ms"); + sb.AppendLine($"- **Avg Cold PerformOffscreenLayout**: {summary.AverageColdPerformOffscreenLayoutMs:F2}ms"); + sb.AppendLine($"- **Avg Warm PerformOffscreenLayout**: {summary.AverageWarmPerformOffscreenLayoutMs:F2}ms"); + sb.AppendLine(); + } + + // Regression Status + if (comparison != null) + { + if (comparison.HasRegressions) + { + sb.AppendLine("## ⚠️ Regressions Detected"); + sb.AppendLine(); + foreach (var reg in comparison.Regressions) + { + sb.AppendLine($"- **{reg.ScenarioId}** ({reg.Metric}): {reg.BaselineValue:F2}ms → {reg.CurrentValue:F2}ms (+{reg.RegressionPercent:F1}%)"); + } + sb.AppendLine(); + } + + if (comparison.HasImprovements) + { + sb.AppendLine("## ✅ Improvements"); + sb.AppendLine(); + foreach (var imp in comparison.Improvements) + { + sb.AppendLine($"- **{imp.ScenarioId}** ({imp.Metric}): {imp.BaselineValue:F2}ms → {imp.CurrentValue:F2}ms ({imp.RegressionPercent:F1}%)"); + } + sb.AppendLine(); + } + } + + // Scenario Details Table + sb.AppendLine("## Scenario Results"); + sb.AppendLine(); + sb.AppendLine("| Scenario | Cold (ms) | Warm (ms) | Cold Layout (ms) | Warm Layout (ms) | Pixel Pass | Variance |"); + sb.AppendLine("|----------|-----------|-----------|------------------|------------------|------------|----------|"); + + foreach (var result in run.Results.OrderBy(r => r.ScenarioId)) + { + var passIcon = result.PixelPerfectPass ? "✅" : "❌"; + sb.AppendLine($"| {result.ScenarioId} | {result.ColdRenderMs:F2} | {result.WarmRenderMs:F2} | {result.ColdPerformOffscreenLayoutMs:F2} | {result.WarmPerformOffscreenLayoutMs:F2} | {passIcon} | {result.VariancePercent:F1}% |"); + } + sb.AppendLine(); + + // Top Contributors + if (summary?.TopContributors?.Any() == true) + { + sb.AppendLine("## Top Time Contributors"); + sb.AppendLine(); + sb.AppendLine("| Stage | Avg Duration (ms) | Share % |"); + sb.AppendLine("|-------|-------------------|---------|"); + + foreach (var contributor in summary.TopContributors) + { + sb.AppendLine($"| {contributor.Stage} | {contributor.AverageDurationMs:F2} | {contributor.SharePercent:F1}% |"); + } + sb.AppendLine(); + } + + if (summary?.StageBreakdown?.Any() == true) + { + sb.AppendLine("## Stage Breakdown"); + sb.AppendLine(); + sb.AppendLine("| Stage | Calls | Total (ms) | Avg (ms) | Min (ms) | Max (ms) |"); + sb.AppendLine("|-------|------:|-----------:|---------:|---------:|---------:|"); + + foreach (var stage in summary.StageBreakdown) + { + sb.AppendLine($"| {stage.Stage} | {stage.Calls} | {stage.TotalDurationMs:F2} | {stage.AverageDurationMs:F2} | {stage.MinDurationMs:F2} | {stage.MaxDurationMs:F2} |"); + } + sb.AppendLine(); + } + + // Recommendations + if (summary?.Recommendations?.Any() == true) + { + sb.AppendLine("## Recommendations"); + sb.AppendLine(); + foreach (var rec in summary.Recommendations) + { + sb.AppendLine($"- {rec}"); + } + sb.AppendLine(); + } + + // Write to file + File.WriteAllText(outputPath, sb.ToString(), Encoding.UTF8); + } + + /// <summary> + /// Writes a comparison report between baseline and current run. + /// </summary> + /// <param name="baselineFilePath">Path to the baseline results JSON.</param> + /// <param name="current">The current benchmark run.</param> + /// <param name="outputPath">The output path for the comparison report.</param> + public void WriteComparisonReport(string baselineFilePath, BenchmarkRun current, string outputPath = null) + { + var baseline = BenchmarkRun.LoadFromFile(baselineFilePath); + var comparison = m_comparer.Compare(baseline, current); + + outputPath = outputPath ?? Path.Combine(OutputDirectory, "comparison.md"); + var content = m_comparer.GenerateSummary(comparison); + File.WriteAllText(outputPath, content, Encoding.UTF8); + } + + private List<string> GenerateRecommendations(BenchmarkRun run, AnalysisSummary summary) + { + var recommendations = new List<string>(); + + // Check for high cold/warm ratio + if (summary.AverageColdRenderMs > 0 && summary.AverageWarmRenderMs > 0) + { + var ratio = summary.AverageColdRenderMs / summary.AverageWarmRenderMs; + if (ratio > 5) + { + recommendations.Add("High cold/warm ratio suggests initialization overhead. Consider lazy loading or caching."); + } + } + + // Check for failing scenarios + if (summary.FailingScenarios > 0) + { + recommendations.Add($"Fix {summary.FailingScenarios} failing pixel-perfect validation(s) before optimizing."); + } + + // Check for high variance + var highVarianceScenarios = run.Results.Where(r => r.VariancePercent > 10).ToList(); + if (highVarianceScenarios.Any()) + { + recommendations.Add($"{highVarianceScenarios.Count} scenario(s) have >10% variance. Consider more test iterations or environment stabilization."); + } + + // Check top contributors for optimization opportunities + if (summary.TopContributors?.Any() == true) + { + var topStage = summary.TopContributors.First(); + if (topStage.SharePercent > 40) + { + recommendations.Add($"'{topStage.Stage}' contributes {topStage.SharePercent:F1}% of render time. Prioritize optimization here."); + } + } + + // Default recommendations if none generated + if (!recommendations.Any()) + { + recommendations.Add("No immediate optimization targets identified. Consider profiling deeper stages."); + recommendations.Add("Enable trace diagnostics for detailed stage-level timing."); + recommendations.Add("Review lazy expansion patterns for complex/deep-nested scenarios."); + } + + return recommendations; + } + } +} diff --git a/Src/Common/RenderVerification/RenderBenchmarkResults.cs b/Src/Common/RenderVerification/RenderBenchmarkResults.cs new file mode 100644 index 0000000000..318a556238 --- /dev/null +++ b/Src/Common/RenderVerification/RenderBenchmarkResults.cs @@ -0,0 +1,271 @@ +// Copyright (c) 2026 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using System.IO; +using System.Text; +using Newtonsoft.Json; +using Newtonsoft.Json.Converters; + +namespace SIL.FieldWorks.Common.RenderVerification +{ + /// <summary> + /// Contains the full results of a benchmark run including all scenario timings. + /// </summary> + public class BenchmarkRun + { + /// <summary>Gets or sets the unique run identifier.</summary> + public string Id { get; set; } = Guid.NewGuid().ToString("N"); + + /// <summary>Gets or sets the run timestamp.</summary> + public DateTime RunAt { get; set; } = DateTime.UtcNow; + + /// <summary>Gets or sets the build configuration (Debug/Release).</summary> + public string Configuration { get; set; } + + /// <summary>Gets or sets the environment hash for deterministic validation.</summary> + public string EnvironmentHash { get; set; } + + /// <summary>Gets or sets the machine name.</summary> + public string MachineName { get; set; } = Environment.MachineName; + + /// <summary>Gets or sets the active performance feature-flag states for this run.</summary> + public Dictionary<string, string> FeatureFlags { get; set; } = new Dictionary<string, string>(); + + /// <summary>Gets or sets the list of scenario results.</summary> + public List<BenchmarkResult> Results { get; set; } = new List<BenchmarkResult>(); + + /// <summary>Gets or sets the analysis summary.</summary> + public AnalysisSummary Summary { get; set; } + + /// <summary> + /// Saves the benchmark run to a JSON file. + /// </summary> + /// <param name="outputPath">The output file path.</param> + public void SaveToFile(string outputPath) + { + var directory = Path.GetDirectoryName(outputPath); + if (!string.IsNullOrEmpty(directory) && !Directory.Exists(directory)) + { + Directory.CreateDirectory(directory); + } + + var settings = new JsonSerializerSettings + { + Formatting = Formatting.Indented, + NullValueHandling = NullValueHandling.Ignore, + Converters = { new StringEnumConverter() } + }; + + var json = JsonConvert.SerializeObject(this, settings); + File.WriteAllText(outputPath, json, Encoding.UTF8); + } + + /// <summary> + /// Loads a benchmark run from a JSON file. + /// </summary> + /// <param name="inputPath">The input file path.</param> + /// <returns>The loaded benchmark run.</returns> + public static BenchmarkRun LoadFromFile(string inputPath) + { + if (!File.Exists(inputPath)) + throw new FileNotFoundException("Benchmark results file not found.", inputPath); + + var json = File.ReadAllText(inputPath, Encoding.UTF8); + return JsonConvert.DeserializeObject<BenchmarkRun>(json); + } + } + + /// <summary> + /// Contains the timing and validation results for a single scenario. + /// </summary> + public class BenchmarkResult + { + /// <summary>Gets or sets the scenario identifier.</summary> + public string ScenarioId { get; set; } + + /// <summary>Gets or sets the scenario description.</summary> + public string ScenarioDescription { get; set; } + + /// <summary>Gets or sets the cold render duration in milliseconds.</summary> + public double ColdRenderMs { get; set; } + + /// <summary>Gets or sets the warm render duration in milliseconds.</summary> + public double WarmRenderMs { get; set; } + + /// <summary>Gets or sets the total cold-phase PerformOffscreenLayout duration in milliseconds.</summary> + public double ColdPerformOffscreenLayoutMs { get; set; } + + /// <summary>Gets or sets the total warm-phase PerformOffscreenLayout duration in milliseconds.</summary> + public double WarmPerformOffscreenLayoutMs { get; set; } + + /// <summary>Gets or sets the variance percentage across multiple runs.</summary> + public double VariancePercent { get; set; } + + /// <summary>Gets or sets whether the pixel-perfect validation passed.</summary> + public bool PixelPerfectPass { get; set; } + + /// <summary>Gets or sets the mismatch details if validation failed.</summary> + public string MismatchDetails { get; set; } + + /// <summary>Gets or sets the snapshot path used for comparison.</summary> + public string SnapshotPath { get; set; } + + /// <summary>Gets or sets the trace events for this scenario (if diagnostics enabled).</summary> + public List<TraceEvent> TraceEvents { get; set; } + } + + /// <summary> + /// Captures a single rendering stage trace event. + /// </summary> + public class TraceEvent + { + /// <summary>Gets or sets the rendering stage name.</summary> + public string Stage { get; set; } + + /// <summary>Gets or sets the stage start time (relative to render start).</summary> + public double StartTimeMs { get; set; } + + /// <summary>Gets or sets the stage duration in milliseconds.</summary> + public double DurationMs { get; set; } + + /// <summary>Gets or sets additional context metadata.</summary> + public Dictionary<string, string> Context { get; set; } + } + + /// <summary> + /// Summarizes the benchmark run with top contributors and recommendations. + /// </summary> + public class AnalysisSummary + { + /// <summary>Gets or sets the benchmark run identifier.</summary> + public string RunId { get; set; } + + /// <summary>Gets or sets the total scenarios executed.</summary> + public int TotalScenarios { get; set; } + + /// <summary>Gets or sets the number of passing scenarios.</summary> + public int PassingScenarios { get; set; } + + /// <summary>Gets or sets the number of failing scenarios.</summary> + public int FailingScenarios { get; set; } + + /// <summary>Gets or sets the average cold render time across scenarios.</summary> + public double AverageColdRenderMs { get; set; } + + /// <summary>Gets or sets the average warm render time across scenarios.</summary> + public double AverageWarmRenderMs { get; set; } + + /// <summary>Gets or sets the average cold-phase PerformOffscreenLayout time across scenarios.</summary> + public double AverageColdPerformOffscreenLayoutMs { get; set; } + + /// <summary>Gets or sets the average warm-phase PerformOffscreenLayout time across scenarios.</summary> + public double AverageWarmPerformOffscreenLayoutMs { get; set; } + + /// <summary>Gets or sets the top time contributors by stage.</summary> + public List<Contributor> TopContributors { get; set; } = new List<Contributor>(); + + /// <summary>Gets or sets aggregated per-stage timing and call statistics.</summary> + public List<StageBreakdown> StageBreakdown { get; set; } = new List<StageBreakdown>(); + + /// <summary>Gets or sets optimization recommendations.</summary> + public List<string> Recommendations { get; set; } = new List<string>(); + + /// <summary>Gets or sets whether any regressions were detected compared to baseline.</summary> + public bool HasRegressions { get; set; } + + /// <summary>Gets or sets regression details if any were detected.</summary> + public List<RegressionInfo> Regressions { get; set; } = new List<RegressionInfo>(); + } + + /// <summary> + /// Represents a ranked timing contributor. + /// </summary> + public class Contributor + { + /// <summary>Gets or sets the rendering stage name.</summary> + public string Stage { get; set; } + + /// <summary>Gets or sets the average duration in milliseconds.</summary> + public double AverageDurationMs { get; set; } + + /// <summary>Gets or sets the percentage share of total render time.</summary> + public double SharePercent { get; set; } + } + + /// <summary> + /// Aggregated timing metrics for a single stage/function. + /// </summary> + public class StageBreakdown + { + /// <summary>Gets or sets the stage/function name.</summary> + public string Stage { get; set; } + + /// <summary>Gets or sets how many times the stage executed.</summary> + public int Calls { get; set; } + + /// <summary>Gets or sets total duration for the stage across all calls.</summary> + public double TotalDurationMs { get; set; } + + /// <summary>Gets or sets average duration per call.</summary> + public double AverageDurationMs { get; set; } + + /// <summary>Gets or sets minimum observed call duration.</summary> + public double MinDurationMs { get; set; } + + /// <summary>Gets or sets maximum observed call duration.</summary> + public double MaxDurationMs { get; set; } + } + + /// <summary> + /// Contains information about a detected regression. + /// </summary> + public class RegressionInfo + { + /// <summary>Gets or sets the scenario identifier.</summary> + public string ScenarioId { get; set; } + + /// <summary>Gets or sets the metric that regressed.</summary> + public string Metric { get; set; } + + /// <summary>Gets or sets the baseline value.</summary> + public double BaselineValue { get; set; } + + /// <summary>Gets or sets the current value.</summary> + public double CurrentValue { get; set; } + + /// <summary>Gets or sets the regression percentage.</summary> + public double RegressionPercent { get; set; } + } + + /// <summary> + /// Configuration flags for benchmark execution. + /// </summary> + public class BenchmarkFlags + { + /// <summary>Gets or sets whether diagnostics logging is enabled.</summary> + public bool DiagnosticsEnabled { get; set; } + + /// <summary>Gets or sets whether trace output is enabled.</summary> + public bool TraceEnabled { get; set; } + + /// <summary>Gets or sets the capture mode (DrawToBitmap, etc.).</summary> + public string CaptureMode { get; set; } = "DrawToBitmap"; + + /// <summary> + /// Loads flags from a JSON file. + /// </summary> + /// <param name="path">The flags file path.</param> + /// <returns>The loaded flags, or defaults if file not found.</returns> + public static BenchmarkFlags LoadFromFile(string path) + { + if (!File.Exists(path)) + return new BenchmarkFlags(); + + var json = File.ReadAllText(path, Encoding.UTF8); + return JsonConvert.DeserializeObject<BenchmarkFlags>(json) ?? new BenchmarkFlags(); + } + } +} diff --git a/Src/Common/RenderVerification/RenderDiagnosticsToggle.cs b/Src/Common/RenderVerification/RenderDiagnosticsToggle.cs new file mode 100644 index 0000000000..7a7dd10b62 --- /dev/null +++ b/Src/Common/RenderVerification/RenderDiagnosticsToggle.cs @@ -0,0 +1,355 @@ +// Copyright (c) 2026 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Diagnostics; +using System.IO; +using System.Text; +using Newtonsoft.Json; + +namespace SIL.FieldWorks.Common.RenderVerification +{ + /// <summary> + /// Manages the diagnostics and trace output toggle for render benchmarks. + /// Provides methods to enable/disable trace output and configure trace listeners. + /// </summary> + public class RenderDiagnosticsToggle : IDisposable + { + private const string TraceListenerName = "RenderBenchmark"; + private static readonly object s_traceListenerSync = new object(); + private static TextWriterTraceListener s_sharedTraceListener; + private static StreamWriter s_sharedTraceWriter; + private static int s_sharedTraceListenerRefCount; + private readonly string m_flagsFilePath; + private readonly string m_traceLogPath; + private TextWriterTraceListener m_traceListener; + private StreamWriter m_traceWriter; + private bool m_disposed; + private bool m_originalDiagnosticsState; + + /// <summary> + /// Gets whether diagnostics are currently enabled. + /// </summary> + public bool DiagnosticsEnabled { get; private set; } + + /// <summary> + /// Gets whether trace output is currently enabled. + /// </summary> + public bool TraceEnabled { get; private set; } + + /// <summary> + /// Gets the path to the trace log file. + /// </summary> + public string TraceLogPath => m_traceLogPath; + + /// <summary> + /// Gets the default output directory for benchmark artifacts. + /// </summary> + public static string DefaultOutputDirectory => Path.Combine( + AppDomain.CurrentDomain.BaseDirectory, + "..", + "..", + "..", + "Output", + "RenderBenchmarks"); + + /// <summary> + /// Initializes a new instance of the <see cref="RenderDiagnosticsToggle"/> class. + /// </summary> + /// <param name="flagsFilePath">Path to the flags JSON file.</param> + /// <param name="traceLogPath">Path for trace log output.</param> + public RenderDiagnosticsToggle(string flagsFilePath = null, string traceLogPath = null) + { + m_flagsFilePath = flagsFilePath ?? RenderScenarioDataBuilder.DefaultFlagsPath; + m_traceLogPath = traceLogPath ?? Path.Combine( + DefaultOutputDirectory, + "render-trace.log"); + + LoadFlags(); + } + + /// <summary> + /// Enables diagnostics and trace output. + /// </summary> + /// <param name="persist">Whether to persist the change to the flags file.</param> + public void EnableDiagnostics(bool persist = false) + { + ApplyDiagnosticsState(enabled: true, persist: persist); + } + + /// <summary> + /// Disables diagnostics and trace output. + /// </summary> + /// <param name="persist">Whether to persist the change to the flags file.</param> + public void DisableDiagnostics(bool persist = false) + { + ApplyDiagnosticsState(enabled: false, persist: persist); + } + + /// <summary> + /// Restores the original diagnostics state before Enable/Disable was called. + /// </summary> + public void RestoreOriginalState() + { + ApplyDiagnosticsState(enabled: m_originalDiagnosticsState, persist: false); + } + + /// <summary> + /// Writes a render trace entry to the trace log. + /// </summary> + /// <param name="stage">The rendering stage name.</param> + /// <param name="durationMs">The stage duration in milliseconds.</param> + /// <param name="context">Optional context information.</param> + public void WriteTraceEntry(string stage, double durationMs, string context = null) + { + if (!TraceEnabled) + return; + + var timestamp = DateTime.UtcNow.ToString("yyyy-MM-ddTHH:mm:ss.fff"); + var contextPart = string.IsNullOrEmpty(context) ? "" : $" Context={context}"; + var entry = $"[{timestamp}] [RENDER] Stage={stage} Duration={durationMs:F3}ms{contextPart}"; + + Trace.WriteLine(entry); + } + + /// <summary> + /// Writes an informational message to the trace log. + /// </summary> + /// <param name="message">The message to write.</param> + public void WriteInfo(string message) + { + if (!DiagnosticsEnabled) + return; + + var timestamp = DateTime.UtcNow.ToString("yyyy-MM-ddTHH:mm:ss.fff"); + Trace.WriteLine($"[{timestamp}] [INFO] {message}"); + } + + /// <summary> + /// Writes a warning message to the trace log. + /// </summary> + /// <param name="message">The warning message.</param> + public void WriteWarning(string message) + { + if (!DiagnosticsEnabled) + return; + + var timestamp = DateTime.UtcNow.ToString("yyyy-MM-ddTHH:mm:ss.fff"); + Trace.TraceWarning($"[{timestamp}] [WARN] {message}"); + } + + /// <summary> + /// Flushes any buffered trace output. + /// </summary> + public void Flush() + { + m_traceListener?.Flush(); + m_traceWriter?.Flush(); + Trace.Flush(); + } + + /// <summary> + /// Gets the contents of the trace log file. + /// </summary> + /// <returns>The trace log content, or empty string if not available.</returns> + public string GetTraceLogContent() + { + Flush(); + + if (!File.Exists(m_traceLogPath)) + return string.Empty; + + try + { + // Need to read without locking since we may still have the file open + using (var stream = new FileStream( + m_traceLogPath, + FileMode.Open, + FileAccess.Read, + FileShare.ReadWrite)) + using (var reader = new StreamReader(stream)) + { + return reader.ReadToEnd(); + } + } + catch + { + return string.Empty; + } + } + + /// <summary> + /// Clears the trace log file. + /// </summary> + public void ClearTraceLog() + { + RemoveTraceListener(); + + if (File.Exists(m_traceLogPath)) + { + try + { + File.Delete(m_traceLogPath); + } + catch + { + // Ignore deletion errors + } + } + + if (TraceEnabled) + { + SetupTraceListener(); + } + } + + private void LoadFlags() + { + var flags = BenchmarkFlags.LoadFromFile(m_flagsFilePath); + DiagnosticsEnabled = flags.DiagnosticsEnabled; + TraceEnabled = flags.TraceEnabled; + m_originalDiagnosticsState = DiagnosticsEnabled; + + if (TraceEnabled) + { + SetupTraceListener(); + } + } + + private void SaveFlags() + { + var flags = new BenchmarkFlags + { + DiagnosticsEnabled = DiagnosticsEnabled, + TraceEnabled = TraceEnabled, + CaptureMode = "DrawToBitmap" + }; + + var directory = Path.GetDirectoryName(m_flagsFilePath); + if (!string.IsNullOrEmpty(directory) && !Directory.Exists(directory)) + { + Directory.CreateDirectory(directory); + } + + var json = JsonConvert.SerializeObject(flags, Formatting.Indented); + File.WriteAllText(m_flagsFilePath, json, Encoding.UTF8); + } + + private void ApplyDiagnosticsState(bool enabled, bool persist) + { + DiagnosticsEnabled = enabled; + TraceEnabled = enabled; + + if (persist) + { + SaveFlags(); + } + + if (enabled) + { + SetupTraceListener(); + } + else + { + RemoveTraceListener(); + } + } + + private void SetupTraceListener() + { + lock (s_traceListenerSync) + { + if (m_traceListener != null) + return; // Already set up + + // Trace.Listeners is process-wide. Share a single render benchmark + // listener so multiple toggle instances do not duplicate log entries. + if (s_sharedTraceListener == null) + { + var existingListener = Trace.Listeners[TraceListenerName]; + if (existingListener != null) + { + Trace.Listeners.Remove(existingListener); + existingListener.Dispose(); + } + + var directory = Path.GetDirectoryName(m_traceLogPath); + if (!string.IsNullOrEmpty(directory) && !Directory.Exists(directory)) + { + Directory.CreateDirectory(directory); + } + + s_sharedTraceWriter = new StreamWriter( + m_traceLogPath, + append: true, + encoding: Encoding.UTF8) + { + AutoFlush = true + }; + + s_sharedTraceListener = new TextWriterTraceListener(s_sharedTraceWriter, TraceListenerName); + Trace.Listeners.Add(s_sharedTraceListener); + } + + m_traceListener = s_sharedTraceListener; + m_traceWriter = s_sharedTraceWriter; + s_sharedTraceListenerRefCount++; + } + } + + private void RemoveTraceListener() + { + lock (s_traceListenerSync) + { + if (m_traceListener != null) + { + if (s_sharedTraceListenerRefCount > 0) + s_sharedTraceListenerRefCount--; + + if (ReferenceEquals(m_traceListener, s_sharedTraceListener) && s_sharedTraceListenerRefCount == 0) + { + Trace.Listeners.Remove(s_sharedTraceListener); + s_sharedTraceListener.Dispose(); + s_sharedTraceListener = null; + s_sharedTraceWriter.Dispose(); + s_sharedTraceWriter = null; + } + + m_traceListener = null; + } + + if (m_traceWriter != null) + { + m_traceWriter = null; + } + } + } + + /// <summary> + /// Releases all resources used by the toggle. + /// </summary> + public void Dispose() + { + Dispose(true); + GC.SuppressFinalize(this); + } + + /// <summary> + /// Releases the unmanaged resources and optionally releases the managed resources. + /// </summary> + /// <param name="disposing">True to release both managed and unmanaged resources.</param> + protected virtual void Dispose(bool disposing) + { + if (m_disposed) + return; + + if (disposing) + { + RemoveTraceListener(); + } + + m_disposed = true; + } + } +} diff --git a/Src/Common/RenderVerification/RenderEnvironmentValidator.cs b/Src/Common/RenderVerification/RenderEnvironmentValidator.cs new file mode 100644 index 0000000000..b6cff89d52 --- /dev/null +++ b/Src/Common/RenderVerification/RenderEnvironmentValidator.cs @@ -0,0 +1,326 @@ +// Copyright (c) 2026 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using System.Drawing; +using System.Globalization; +using System.Runtime.InteropServices; +using System.Security.Cryptography; +using System.Text; +using System.Windows.Forms; +using Microsoft.Win32; + +namespace SIL.FieldWorks.Common.RenderVerification +{ + /// <summary> + /// Validates that the rendering environment is deterministic for pixel-perfect comparisons. + /// Checks fonts, DPI, theme settings, and other factors that affect rendering output. + /// </summary> + public class RenderEnvironmentValidator + { + /// <summary> + /// Gets the current environment settings. + /// </summary> + public EnvironmentSettings CurrentSettings { get; private set; } + + /// <summary> + /// Initializes a new instance and captures current environment settings. + /// </summary> + public RenderEnvironmentValidator() + { + CurrentSettings = CaptureCurrentSettings(); + } + + /// <summary> + /// Gets a hash of the current environment settings. + /// </summary> + /// <returns>A SHA256 hash string of the environment settings.</returns> + public string GetEnvironmentHash() + { + var settingsPayload = BuildStableSettingsPayload(CurrentSettings); + using (var sha256 = SHA256.Create()) + { + var hashBytes = sha256.ComputeHash(Encoding.UTF8.GetBytes(settingsPayload)); + return Convert.ToBase64String(hashBytes); + } + } + + /// <summary> + /// Validates that the current environment matches the expected hash. + /// </summary> + /// <param name="expectedHash">The expected environment hash.</param> + /// <returns>True if the environment matches; otherwise, false.</returns> + public bool Validate(string expectedHash) + { + if (string.IsNullOrEmpty(expectedHash)) + return true; // No validation required + + return GetEnvironmentHash() == expectedHash; + } + + /// <summary> + /// Gets a detailed comparison between current and expected environment. + /// </summary> + /// <param name="expectedSettings">The expected settings to compare against.</param> + /// <returns>A list of differences found.</returns> + public List<EnvironmentDifference> Compare(EnvironmentSettings expectedSettings) + { + var differences = new List<EnvironmentDifference>(); + + if (expectedSettings == null) + return differences; + + if (CurrentSettings.DpiX != expectedSettings.DpiX || CurrentSettings.DpiY != expectedSettings.DpiY) + { + differences.Add(new EnvironmentDifference + { + Setting = "DPI", + Expected = $"{expectedSettings.DpiX}x{expectedSettings.DpiY}", + Actual = $"{CurrentSettings.DpiX}x{CurrentSettings.DpiY}" + }); + } + + if (CurrentSettings.FontSmoothing != expectedSettings.FontSmoothing) + { + differences.Add(new EnvironmentDifference + { + Setting = "FontSmoothing", + Expected = expectedSettings.FontSmoothing.ToString(), + Actual = CurrentSettings.FontSmoothing.ToString() + }); + } + + if (CurrentSettings.ClearTypeEnabled != expectedSettings.ClearTypeEnabled) + { + differences.Add(new EnvironmentDifference + { + Setting = "ClearType", + Expected = expectedSettings.ClearTypeEnabled.ToString(), + Actual = CurrentSettings.ClearTypeEnabled.ToString() + }); + } + + if (CurrentSettings.ThemeName != expectedSettings.ThemeName) + { + differences.Add(new EnvironmentDifference + { + Setting = "Theme", + Expected = expectedSettings.ThemeName, + Actual = CurrentSettings.ThemeName + }); + } + + if (CurrentSettings.TextScaleFactor != expectedSettings.TextScaleFactor) + { + differences.Add(new EnvironmentDifference + { + Setting = "TextScaleFactor", + Expected = expectedSettings.TextScaleFactor.ToString(CultureInfo.InvariantCulture), + Actual = CurrentSettings.TextScaleFactor.ToString(CultureInfo.InvariantCulture) + }); + } + + return differences; + } + + /// <summary> + /// Refreshes the current environment settings. + /// </summary> + public void Refresh() + { + CurrentSettings = CaptureCurrentSettings(); + } + + private static string BuildStableSettingsPayload(EnvironmentSettings settings) + { + if (settings == null) + return string.Empty; + + var builder = new StringBuilder(); + builder.Append("DpiX=").Append(settings.DpiX.ToString(CultureInfo.InvariantCulture)).Append('\n'); + builder.Append("DpiY=").Append(settings.DpiY.ToString(CultureInfo.InvariantCulture)).Append('\n'); + builder.Append("FontSmoothing=").Append(settings.FontSmoothing ? "1" : "0").Append('\n'); + builder.Append("ClearTypeEnabled=").Append(settings.ClearTypeEnabled ? "1" : "0").Append('\n'); + builder.Append("ThemeName=").Append(settings.ThemeName ?? string.Empty).Append('\n'); + builder.Append("TextScaleFactor=").Append(settings.TextScaleFactor.ToString("R", CultureInfo.InvariantCulture)).Append('\n'); + builder.Append("ScreenWidth=").Append(settings.ScreenWidth.ToString(CultureInfo.InvariantCulture)).Append('\n'); + builder.Append("ScreenHeight=").Append(settings.ScreenHeight.ToString(CultureInfo.InvariantCulture)).Append('\n'); + builder.Append("CultureName=").Append(settings.CultureName ?? string.Empty); + return builder.ToString(); + } + + private EnvironmentSettings CaptureCurrentSettings() + { + var settings = new EnvironmentSettings(); + + // Capture DPI settings + using (var graphics = Graphics.FromHwnd(IntPtr.Zero)) + { + settings.DpiX = (int)graphics.DpiX; + settings.DpiY = (int)graphics.DpiY; + } + + // Capture font smoothing + settings.FontSmoothing = GetFontSmoothing(); + settings.ClearTypeEnabled = GetClearTypeEnabled(); + + // Capture theme + settings.ThemeName = GetCurrentTheme(); + + // Capture text scale factor + settings.TextScaleFactor = GetTextScaleFactor(); + + // Capture screen info + var screen = Screen.PrimaryScreen; + settings.ScreenWidth = screen.Bounds.Width; + settings.ScreenHeight = screen.Bounds.Height; + + // Capture culture + settings.CultureName = CultureInfo.CurrentCulture.Name; + + return settings; + } + + private bool GetFontSmoothing() + { + try + { + bool smoothing = false; + SystemParametersInfo(SPI_GETFONTSMOOTHING, 0, ref smoothing, 0); + return smoothing; + } + catch + { + return false; + } + } + + private bool GetClearTypeEnabled() + { + try + { + int type = 0; + SystemParametersInfo(SPI_GETFONTSMOOTHINGTYPE, 0, ref type, 0); + return type == FE_FONTSMOOTHINGCLEARTYPE; + } + catch + { + return false; + } + } + + private string GetCurrentTheme() + { + try + { + using (var key = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Themes\Personalize")) + { + if (key != null) + { + var appsUseLightTheme = key.GetValue("AppsUseLightTheme"); + if (appsUseLightTheme != null) + { + return (int)appsUseLightTheme == 1 ? "Light" : "Dark"; + } + } + } + } + catch + { + // Ignore errors reading theme + } + return "Unknown"; + } + + private double GetTextScaleFactor() + { + try + { + using (var key = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Accessibility")) + { + if (key != null) + { + var textScaleFactor = key.GetValue("TextScaleFactor"); + if (textScaleFactor != null) + { + return (int)textScaleFactor / 100.0; + } + } + } + } + catch + { + // Ignore errors + } + return 1.0; + } + + #region Native methods + private const int SPI_GETFONTSMOOTHING = 0x004A; + private const int SPI_GETFONTSMOOTHINGTYPE = 0x200A; + private const int FE_FONTSMOOTHINGCLEARTYPE = 0x0002; + + [DllImport("user32.dll", SetLastError = true)] + private static extern bool SystemParametersInfo(int uiAction, int uiParam, ref bool pvParam, int fWinIni); + + [DllImport("user32.dll", SetLastError = true)] + private static extern bool SystemParametersInfo(int uiAction, int uiParam, ref int pvParam, int fWinIni); + #endregion + } + + /// <summary> + /// Captures the current rendering environment settings. + /// </summary> + public class EnvironmentSettings + { + /// <summary>Gets or sets the horizontal DPI.</summary> + public int DpiX { get; set; } + + /// <summary>Gets or sets the vertical DPI.</summary> + public int DpiY { get; set; } + + /// <summary>Gets or sets whether font smoothing is enabled.</summary> + public bool FontSmoothing { get; set; } + + /// <summary>Gets or sets whether ClearType is enabled.</summary> + public bool ClearTypeEnabled { get; set; } + + /// <summary>Gets or sets the current theme name.</summary> + public string ThemeName { get; set; } + + /// <summary>Gets or sets the text scale factor.</summary> + public double TextScaleFactor { get; set; } + + /// <summary>Gets or sets the primary screen width.</summary> + public int ScreenWidth { get; set; } + + /// <summary>Gets or sets the primary screen height.</summary> + public int ScreenHeight { get; set; } + + /// <summary>Gets or sets the culture name.</summary> + public string CultureName { get; set; } + } + + /// <summary> + /// Represents a difference between expected and actual environment settings. + /// </summary> + public class EnvironmentDifference + { + /// <summary>Gets or sets the setting name.</summary> + public string Setting { get; set; } + + /// <summary>Gets or sets the expected value.</summary> + public string Expected { get; set; } + + /// <summary>Gets or sets the actual value.</summary> + public string Actual { get; set; } + + /// <inheritdoc/> + public override string ToString() + { + return $"{Setting}: expected '{Expected}', got '{Actual}'"; + } + } +} diff --git a/Src/Common/RenderVerification/RenderModels.cs b/Src/Common/RenderVerification/RenderModels.cs new file mode 100644 index 0000000000..87efe57aa9 --- /dev/null +++ b/Src/Common/RenderVerification/RenderModels.cs @@ -0,0 +1,77 @@ +// Copyright (c) 2026 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; + +namespace SIL.FieldWorks.Common.RenderVerification +{ + /// <summary> + /// Represents the timing result for a single render operation. + /// </summary> + public class RenderTimingResult + { + /// <summary>Gets or sets the scenario identifier.</summary> + public string ScenarioId { get; set; } + + /// <summary>Gets or sets whether this was a cold render.</summary> + public bool IsColdRender { get; set; } + + /// <summary>Gets or sets the render duration in milliseconds.</summary> + public double DurationMs { get; set; } + + /// <summary>Gets or sets the timestamp of the render.</summary> + public DateTime Timestamp { get; set; } + } + + /// <summary> + /// Specifies which view constructor pipeline a scenario exercises. + /// </summary> + public enum RenderViewType + { + /// <summary>Scripture view (StVc / GenericScriptureVc).</summary> + Scripture, + + /// <summary>Lexical entry view (LexEntryVc with nested senses).</summary> + LexEntry + } + + /// <summary> + /// Represents a render scenario configuration. + /// </summary> + public class RenderScenario + { + /// <summary>Gets or sets the unique scenario identifier.</summary> + public string Id { get; set; } + + /// <summary>Gets or sets the human-readable description.</summary> + public string Description { get; set; } + + /// <summary>Gets or sets the root object HVO for the view.</summary> + public int RootObjectHvo { get; set; } + + /// <summary>Gets or sets the root field ID.</summary> + public int RootFlid { get; set; } + + /// <summary>Gets or sets the fragment ID for the view constructor.</summary> + public int FragmentId { get; set; } = 1; + + /// <summary>Gets or sets the path to the expected snapshot image.</summary> + public string ExpectedSnapshotPath { get; set; } + + /// <summary>Gets or sets category tags for filtering.</summary> + public string[] Tags { get; set; } = Array.Empty<string>(); + + /// <summary> + /// Gets or sets the view type (Scripture or LexEntry). + /// Determines which view constructor pipeline is used for rendering. + /// </summary> + public RenderViewType ViewType { get; set; } = RenderViewType.Scripture; + + /// <summary> + /// Gets or sets whether to simulate the XmlVc ifdata double-render pattern. + /// Only applies to <see cref="RenderViewType.LexEntry"/> scenarios. + /// </summary> + public bool SimulateIfDataDoubleRender { get; set; } + } +} diff --git a/Src/Common/RenderVerification/RenderScenarioDataBuilder.cs b/Src/Common/RenderVerification/RenderScenarioDataBuilder.cs new file mode 100644 index 0000000000..055dfb1fd5 --- /dev/null +++ b/Src/Common/RenderVerification/RenderScenarioDataBuilder.cs @@ -0,0 +1,260 @@ +// Copyright (c) 2026 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; +using Newtonsoft.Json; + +namespace SIL.FieldWorks.Common.RenderVerification +{ + /// <summary> + /// Provides helpers for building and loading render scenario configurations. + /// </summary> + public class RenderScenarioDataBuilder + { + private readonly List<RenderScenario> m_scenarios = new List<RenderScenario>(); + + /// <summary> + /// Gets the test data directory path. + /// </summary> + public static string TestDataDirectory + { + get + { + // Handle different output path depths (e.g. Output/Debug vs. bin/Debug/net472) + var baseDir = AppDomain.CurrentDomain.BaseDirectory; + + // Try 2 levels up (Output/Debug -> Root) + var path2 = Path.Combine(baseDir, "..", "..", "Src", "Common", "RootSite", "RootSiteTests", "TestData"); + if (Directory.Exists(path2)) return Path.GetFullPath(path2); + + // Try 3 levels up (bin/Debug/net -> Root) + var path3 = Path.Combine(baseDir, "..", "..", "..", "Src", "Common", "RootSite", "RootSiteTests", "TestData"); + if (Directory.Exists(path3)) return Path.GetFullPath(path3); + + // Fallback to 2 levels and let it fail with full path for debugging + return Path.GetFullPath(path2); + } + } + + /// <summary> + /// Gets the default scenarios file path. + /// </summary> + public static string DefaultScenariosPath => Path.Combine(TestDataDirectory, "RenderBenchmarkScenarios.json"); + + /// <summary> + /// Gets the default flags file path. + /// </summary> + public static string DefaultFlagsPath => Path.Combine(TestDataDirectory, "RenderBenchmarkFlags.json"); + + /// <summary> + /// Gets the snapshots directory path. + /// </summary> + public static string SnapshotsDirectory => Path.Combine(TestDataDirectory, "RenderSnapshots"); + + /// <summary> + /// Creates a new scenario builder. + /// </summary> + /// <returns>A new builder instance.</returns> + public static RenderScenarioDataBuilder Create() + { + return new RenderScenarioDataBuilder(); + } + + /// <summary> + /// Adds a simple scenario (minimal entry with one sense). + /// </summary> + /// <param name="rootHvo">The root object HVO.</param> + /// <param name="rootFlid">The root field ID.</param> + /// <returns>The builder for chaining.</returns> + public RenderScenarioDataBuilder AddSimpleScenario(int rootHvo, int rootFlid) + { + m_scenarios.Add(new RenderScenario + { + Id = "simple", + Description = "Minimal lexical entry with one sense, one definition", + RootObjectHvo = rootHvo, + RootFlid = rootFlid, + ExpectedSnapshotPath = Path.Combine(SnapshotsDirectory, "simple.png"), + Tags = new[] { "baseline", "minimal" } + }); + return this; + } + + /// <summary> + /// Adds a medium complexity scenario. + /// </summary> + /// <param name="rootHvo">The root object HVO.</param> + /// <param name="rootFlid">The root field ID.</param> + /// <returns>The builder for chaining.</returns> + public RenderScenarioDataBuilder AddMediumScenario(int rootHvo, int rootFlid) + { + m_scenarios.Add(new RenderScenario + { + Id = "medium", + Description = "Entry with 3 senses, multiple definitions, example sentences", + RootObjectHvo = rootHvo, + RootFlid = rootFlid, + ExpectedSnapshotPath = Path.Combine(SnapshotsDirectory, "medium.png"), + Tags = new[] { "typical", "multi-sense" } + }); + return this; + } + + /// <summary> + /// Adds a complex scenario with many senses. + /// </summary> + /// <param name="rootHvo">The root object HVO.</param> + /// <param name="rootFlid">The root field ID.</param> + /// <returns>The builder for chaining.</returns> + public RenderScenarioDataBuilder AddComplexScenario(int rootHvo, int rootFlid) + { + m_scenarios.Add(new RenderScenario + { + Id = "complex", + Description = "Entry with 10+ senses, subsenses, extensive cross-references", + RootObjectHvo = rootHvo, + RootFlid = rootFlid, + ExpectedSnapshotPath = Path.Combine(SnapshotsDirectory, "complex.png"), + Tags = new[] { "stress", "multi-sense", "cross-refs" } + }); + return this; + } + + /// <summary> + /// Adds a deep-nested scenario. + /// </summary> + /// <param name="rootHvo">The root object HVO.</param> + /// <param name="rootFlid">The root field ID.</param> + /// <returns>The builder for chaining.</returns> + public RenderScenarioDataBuilder AddDeepNestedScenario(int rootHvo, int rootFlid) + { + m_scenarios.Add(new RenderScenario + { + Id = "deep-nested", + Description = "Entry with deeply nested subsenses (5+ levels)", + RootObjectHvo = rootHvo, + RootFlid = rootFlid, + ExpectedSnapshotPath = Path.Combine(SnapshotsDirectory, "deep-nested.png"), + Tags = new[] { "nested", "hierarchy", "stress" } + }); + return this; + } + + /// <summary> + /// Adds a custom-field-heavy scenario. + /// </summary> + /// <param name="rootHvo">The root object HVO.</param> + /// <param name="rootFlid">The root field ID.</param> + /// <returns>The builder for chaining.</returns> + public RenderScenarioDataBuilder AddCustomFieldHeavyScenario(int rootHvo, int rootFlid) + { + m_scenarios.Add(new RenderScenario + { + Id = "custom-field-heavy", + Description = "Entry with many custom fields of various types", + RootObjectHvo = rootHvo, + RootFlid = rootFlid, + ExpectedSnapshotPath = Path.Combine(SnapshotsDirectory, "custom-field-heavy.png"), + Tags = new[] { "custom-fields", "extensibility" } + }); + return this; + } + + /// <summary> + /// Adds a custom scenario. + /// </summary> + /// <param name="scenario">The scenario to add.</param> + /// <returns>The builder for chaining.</returns> + public RenderScenarioDataBuilder AddScenario(RenderScenario scenario) + { + if (scenario == null) + throw new ArgumentNullException(nameof(scenario)); + + m_scenarios.Add(scenario); + return this; + } + + /// <summary> + /// Builds and returns the list of scenarios. + /// </summary> + /// <returns>The built scenarios.</returns> + public List<RenderScenario> Build() + { + return m_scenarios.ToList(); + } + + /// <summary> + /// Saves the scenarios to a JSON file. + /// </summary> + /// <param name="outputPath">The output file path.</param> + public void SaveToFile(string outputPath = null) + { + outputPath = outputPath ?? DefaultScenariosPath; + + var directory = Path.GetDirectoryName(outputPath); + if (!string.IsNullOrEmpty(directory) && !Directory.Exists(directory)) + { + Directory.CreateDirectory(directory); + } + + var wrapper = new ScenariosWrapper { Scenarios = m_scenarios }; + var json = JsonConvert.SerializeObject(wrapper, Formatting.Indented); + File.WriteAllText(outputPath, json, Encoding.UTF8); + } + + /// <summary> + /// Loads scenarios from a JSON file. + /// </summary> + /// <param name="inputPath">The input file path.</param> + /// <returns>The loaded scenarios, or empty list if file not found.</returns> + public static List<RenderScenario> LoadFromFile(string inputPath = null) + { + inputPath = inputPath ?? DefaultScenariosPath; + + if (!File.Exists(inputPath)) + return new List<RenderScenario>(); + + var json = File.ReadAllText(inputPath, Encoding.UTF8); + var wrapper = JsonConvert.DeserializeObject<ScenariosWrapper>(json); + return wrapper?.Scenarios ?? new List<RenderScenario>(); + } + + /// <summary> + /// Creates the standard five-scenario suite. + /// </summary> + /// <param name="rootHvo">The root object HVO for all scenarios.</param> + /// <param name="rootFlid">The root field ID for all scenarios.</param> + /// <returns>A builder with all five standard scenarios.</returns> + public static RenderScenarioDataBuilder CreateStandardSuite(int rootHvo, int rootFlid) + { + return Create() + .AddSimpleScenario(rootHvo, rootFlid) + .AddMediumScenario(rootHvo, rootFlid) + .AddComplexScenario(rootHvo, rootFlid) + .AddDeepNestedScenario(rootHvo, rootFlid) + .AddCustomFieldHeavyScenario(rootHvo, rootFlid); + } + + /// <summary> + /// Gets scenarios filtered by tag. + /// </summary> + /// <param name="scenarios">The scenarios to filter.</param> + /// <param name="tag">The tag to filter by.</param> + /// <returns>Scenarios matching the tag.</returns> + public static IEnumerable<RenderScenario> FilterByTag(IEnumerable<RenderScenario> scenarios, string tag) + { + return scenarios.Where(s => s.Tags != null && s.Tags.Contains(tag, StringComparer.OrdinalIgnoreCase)); + } + + private class ScenariosWrapper + { + [JsonProperty("scenarios")] + public List<RenderScenario> Scenarios { get; set; } = new List<RenderScenario>(); + } + } +} diff --git a/Src/Common/RenderVerification/RenderSnapshotVerifier.cs b/Src/Common/RenderVerification/RenderSnapshotVerifier.cs new file mode 100644 index 0000000000..7cf86e6588 --- /dev/null +++ b/Src/Common/RenderVerification/RenderSnapshotVerifier.cs @@ -0,0 +1,692 @@ +using System; +using System.Collections.Generic; +using System.Drawing; +using System.Drawing.Imaging; +using System.Drawing.Text; +using System.Globalization; +using System.IO; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Text; +using Newtonsoft.Json; + +namespace SIL.FieldWorks.Common.RenderVerification +{ + public static class RenderSnapshotVerifier + { + private const string UpdateBaselinesEnvVar = "FW_UPDATE_RENDER_BASELINES"; + private const string FontQualityEnvVar = "FW_FONT_QUALITY"; + private const int MaxAllowedPixelDifferences = 4; + private const string DeterministicRenderFontFamily = "Segoe UI"; + private const int DpiAwarenessInvalid = -1; + private const int DpiAwarenessUnaware = 0; + private const int DpiAwarenessSystemAware = 1; + private const int DpiAwarenessPerMonitorAware = 2; + + [DllImport("user32.dll")] + private static extern IntPtr GetThreadDpiAwarenessContext(); + + [DllImport("user32.dll")] + private static extern int GetAwarenessFromDpiAwarenessContext(IntPtr dpiContext); + + public static string GetSourceFileDirectory([CallerFilePath] string sourceFile = "") + { + return Path.GetDirectoryName(sourceFile); + } + + public static RenderBaselineVerificationResult Verify(Bitmap actualBitmap, string directory, string name, string scenarioId) + { + if (actualBitmap == null) + throw new ArgumentNullException(nameof(actualBitmap)); + if (string.IsNullOrEmpty(directory)) + throw new ArgumentException("A snapshot directory is required.", nameof(directory)); + if (string.IsNullOrEmpty(name)) + throw new ArgumentException("A snapshot name is required.", nameof(name)); + if (string.IsNullOrEmpty(scenarioId)) + throw new ArgumentException("A scenario identifier is required.", nameof(scenarioId)); + + string snapshotBasePath = Path.Combine(directory, name); + string verifiedPath = snapshotBasePath + ".verified.png"; + string verifiedMetadataPath = snapshotBasePath + ".verified.json"; + string receivedPath = snapshotBasePath + ".received.png"; + string receivedMetadataPath = snapshotBasePath + ".received.json"; + string diffPath = snapshotBasePath + ".diff.png"; + string diffMetadataPath = snapshotBasePath + ".diff.json"; + + var currentArtifact = CreateCurrentArtifact(actualBitmap, scenarioId, name, receivedPath, receivedMetadataPath); + RefreshVerifiedBaselineIfRequested(actualBitmap, currentArtifact, verifiedPath, verifiedMetadataPath); + + DeleteIfPresent(diffPath); + DeleteIfPresent(diffMetadataPath); + + if (!File.Exists(verifiedPath)) + { + actualBitmap.Save(receivedPath, ImageFormat.Png); + SaveJson(receivedMetadataPath, currentArtifact.Metadata); + + return new RenderBaselineVerificationResult + { + Passed = false, + FailureMessage = BuildMissingBaselineMessage(scenarioId, verifiedPath, currentArtifact), + VerifiedPath = verifiedPath, + VerifiedMetadataPath = verifiedMetadataPath, + ReceivedPath = receivedPath, + ReceivedMetadataPath = receivedMetadataPath, + DiffPath = diffPath, + DiffMetadataPath = diffMetadataPath + }; + } + + using (var expectedBitmap = new Bitmap(verifiedPath)) + { + var savedArtifact = LoadSavedArtifact(expectedBitmap, verifiedPath, verifiedMetadataPath); + var diffSummary = CompareBitmaps(expectedBitmap, actualBitmap); + if (diffSummary.DifferentPixelCount <= MaxAllowedPixelDifferences) + { + DeleteIfPresent(receivedPath); + DeleteIfPresent(receivedMetadataPath); + DeleteIfPresent(diffPath); + DeleteIfPresent(diffMetadataPath); + return new RenderBaselineVerificationResult + { + Passed = true, + VerifiedPath = verifiedPath, + VerifiedMetadataPath = verifiedMetadataPath, + ReceivedPath = receivedPath, + ReceivedMetadataPath = receivedMetadataPath, + DiffPath = diffPath, + DiffMetadataPath = diffMetadataPath, + DiffSummary = diffSummary + }; + } + + using (var diffBitmap = CreateDiffBitmap(expectedBitmap, actualBitmap)) + { + diffBitmap.Save(diffPath, ImageFormat.Png); + } + + actualBitmap.Save(receivedPath, ImageFormat.Png); + SaveJson(receivedMetadataPath, currentArtifact.Metadata); + + var comparisonReport = new RenderSnapshotComparisonReport + { + ScenarioId = scenarioId, + SnapshotName = name, + AllowedDifferentPixelCount = MaxAllowedPixelDifferences, + SavedBaseline = savedArtifact, + CurrentRun = currentArtifact, + Diff = diffSummary, + Differences = BuildDifferences(savedArtifact, currentArtifact) + }; + SaveJson(diffMetadataPath, comparisonReport); + + return new RenderBaselineVerificationResult + { + Passed = false, + FailureMessage = BuildFailureMessage(scenarioId, diffPath, diffMetadataPath, comparisonReport), + VerifiedPath = verifiedPath, + VerifiedMetadataPath = verifiedMetadataPath, + ReceivedPath = receivedPath, + ReceivedMetadataPath = receivedMetadataPath, + DiffPath = diffPath, + DiffMetadataPath = diffMetadataPath, + DiffSummary = diffSummary + }; + } + } + + private static RenderSnapshotArtifact CreateCurrentArtifact( + Bitmap actualBitmap, + string scenarioId, + string snapshotName, + string receivedPath, + string receivedMetadataPath) + { + return new RenderSnapshotArtifact + { + ArtifactKind = "current", + ImagePath = receivedPath, + MetadataPath = receivedMetadataPath, + ImageWidth = actualBitmap.Width, + ImageHeight = actualBitmap.Height, + MetadataAvailable = true, + Metadata = CaptureMetadata(actualBitmap, scenarioId, snapshotName) + }; + } + + private static RenderSnapshotArtifact LoadSavedArtifact(Bitmap expectedBitmap, string verifiedPath, string verifiedMetadataPath) + { + var artifact = new RenderSnapshotArtifact + { + ArtifactKind = "saved baseline", + ImagePath = verifiedPath, + MetadataPath = verifiedMetadataPath, + ImageWidth = expectedBitmap.Width, + ImageHeight = expectedBitmap.Height + }; + + var fileInfo = new FileInfo(verifiedPath); + if (fileInfo.Exists) + artifact.FileLastWriteUtc = fileInfo.LastWriteTimeUtc; + + artifact.Metadata = LoadMetadata(verifiedMetadataPath, out var loadError); + artifact.MetadataAvailable = artifact.Metadata != null; + artifact.MetadataLoadError = loadError; + return artifact; + } + + private static RenderSnapshotMetadata CaptureMetadata(Bitmap actualBitmap, string scenarioId, string snapshotName) + { + var validator = new RenderEnvironmentValidator(); + return new RenderSnapshotMetadata + { + ScenarioId = scenarioId, + SnapshotName = snapshotName, + CapturedAtUtc = DateTime.UtcNow, + ImageWidth = actualBitmap.Width, + ImageHeight = actualBitmap.Height, + MachineName = Environment.MachineName, + OsVersion = Environment.OSVersion.VersionString, + EnvironmentHash = validator.GetEnvironmentHash(), + Environment = validator.CurrentSettings, + DpiAwareness = GetDpiAwarenessDescription(), + FontQuality = Environment.GetEnvironmentVariable(FontQualityEnvVar) ?? string.Empty, + DeterministicFontFamily = DeterministicRenderFontFamily, + DeterministicFontInstalled = IsFontInstalled(DeterministicRenderFontFamily) + }; + } + + private static void RefreshVerifiedBaselineIfRequested( + Bitmap bitmap, + RenderSnapshotArtifact currentArtifact, + string verifiedPath, + string verifiedMetadataPath) + { + if (!string.Equals(Environment.GetEnvironmentVariable(UpdateBaselinesEnvVar), "1", StringComparison.Ordinal)) + return; + + bitmap.Save(verifiedPath, ImageFormat.Png); + SaveJson(verifiedMetadataPath, CloneMetadata(currentArtifact.Metadata)); + } + + private static RenderSnapshotMetadata CloneMetadata(RenderSnapshotMetadata metadata) + { + if (metadata == null) + return null; + + return new RenderSnapshotMetadata + { + ScenarioId = metadata.ScenarioId, + SnapshotName = metadata.SnapshotName, + CapturedAtUtc = metadata.CapturedAtUtc, + ImageWidth = metadata.ImageWidth, + ImageHeight = metadata.ImageHeight, + MachineName = metadata.MachineName, + OsVersion = metadata.OsVersion, + EnvironmentHash = metadata.EnvironmentHash, + Environment = metadata.Environment == null + ? null + : new EnvironmentSettings + { + DpiX = metadata.Environment.DpiX, + DpiY = metadata.Environment.DpiY, + FontSmoothing = metadata.Environment.FontSmoothing, + ClearTypeEnabled = metadata.Environment.ClearTypeEnabled, + ThemeName = metadata.Environment.ThemeName, + TextScaleFactor = metadata.Environment.TextScaleFactor, + ScreenWidth = metadata.Environment.ScreenWidth, + ScreenHeight = metadata.Environment.ScreenHeight, + CultureName = metadata.Environment.CultureName + }, + DpiAwareness = metadata.DpiAwareness, + FontQuality = metadata.FontQuality, + DeterministicFontFamily = metadata.DeterministicFontFamily, + DeterministicFontInstalled = metadata.DeterministicFontInstalled + }; + } + + private static List<string> BuildDifferences(RenderSnapshotArtifact savedArtifact, RenderSnapshotArtifact currentArtifact) + { + var differences = new List<string>(); + AddDifference(differences, "image", FormatImageSize(savedArtifact.ImageWidth, savedArtifact.ImageHeight), FormatImageSize(currentArtifact.ImageWidth, currentArtifact.ImageHeight)); + + if (!savedArtifact.MetadataAvailable || currentArtifact.Metadata == null) + return differences; + + AddDifference(differences, "environmentHash", Shorten(savedArtifact.Metadata.EnvironmentHash), Shorten(currentArtifact.Metadata.EnvironmentHash)); + AddDifference(differences, "DPI", FormatDpi(savedArtifact.Metadata.Environment), FormatDpi(currentArtifact.Metadata.Environment)); + AddDifference(differences, "screen", FormatScreen(savedArtifact.Metadata.Environment), FormatScreen(currentArtifact.Metadata.Environment)); + AddDifference(differences, "textScale", FormatTextScale(savedArtifact.Metadata.Environment), FormatTextScale(currentArtifact.Metadata.Environment)); + AddDifference(differences, "dpiAwareness", savedArtifact.Metadata.DpiAwareness, currentArtifact.Metadata.DpiAwareness); + AddDifference(differences, "fontSmoothing", FormatBoolean(savedArtifact.Metadata.Environment != null && savedArtifact.Metadata.Environment.FontSmoothing), FormatBoolean(currentArtifact.Metadata.Environment != null && currentArtifact.Metadata.Environment.FontSmoothing)); + AddDifference(differences, "clearType", FormatBoolean(savedArtifact.Metadata.Environment != null && savedArtifact.Metadata.Environment.ClearTypeEnabled), FormatBoolean(currentArtifact.Metadata.Environment != null && currentArtifact.Metadata.Environment.ClearTypeEnabled)); + AddDifference(differences, "theme", savedArtifact.Metadata.Environment != null ? savedArtifact.Metadata.Environment.ThemeName : string.Empty, currentArtifact.Metadata.Environment != null ? currentArtifact.Metadata.Environment.ThemeName : string.Empty); + AddDifference(differences, "culture", savedArtifact.Metadata.Environment != null ? savedArtifact.Metadata.Environment.CultureName : string.Empty, currentArtifact.Metadata.Environment != null ? currentArtifact.Metadata.Environment.CultureName : string.Empty); + AddDifference(differences, "FW_FONT_QUALITY", savedArtifact.Metadata.FontQuality, currentArtifact.Metadata.FontQuality); + AddDifference(differences, "deterministicFontInstalled", FormatBoolean(savedArtifact.Metadata.DeterministicFontInstalled), FormatBoolean(currentArtifact.Metadata.DeterministicFontInstalled)); + return differences; + } + + private static void AddDifference(List<string> differences, string label, string savedValue, string currentValue) + { + if (string.Equals(savedValue ?? string.Empty, currentValue ?? string.Empty, StringComparison.Ordinal)) + return; + + differences.Add(string.Format(CultureInfo.InvariantCulture, "{0} saved={1} current={2}", label, savedValue ?? "(null)", currentValue ?? "(null)")); + } + + private static string BuildMissingBaselineMessage(string scenarioId, string verifiedPath, RenderSnapshotArtifact currentArtifact) + { + var builder = new StringBuilder(); + builder.AppendFormat(CultureInfo.InvariantCulture, + "Missing verified render baseline for '{0}'. Review and accept {1} as the new baseline.", + scenarioId, + currentArtifact.ImagePath); + builder.AppendLine(); + builder.AppendLine(FormatArtifactLine("Current run", currentArtifact)); + builder.AppendFormat(CultureInfo.InvariantCulture, + "Expected baseline location: {0}. Current metadata: {1}.", + verifiedPath, + currentArtifact.MetadataPath); + return builder.ToString(); + } + + private static string BuildFailureMessage( + string scenarioId, + string diffPath, + string diffMetadataPath, + RenderSnapshotComparisonReport report) + { + var builder = new StringBuilder(); + builder.AppendFormat(CultureInfo.InvariantCulture, + "Render output for '{0}' differed from baseline by {1} pixels; {2} or fewer differences are allowed.", + scenarioId, + report.Diff.DifferentPixelCount, + report.AllowedDifferentPixelCount); + builder.AppendLine(); + builder.AppendLine(FormatArtifactLine("Saved baseline", report.SavedBaseline)); + builder.AppendLine(FormatArtifactLine("Current run", report.CurrentRun)); + builder.AppendFormat(CultureInfo.InvariantCulture, + "Diff composition: inBounds={0}; savedOnly={1}; currentOnly={2}; region={3}.", + report.Diff.InBoundsPixelDifferences, + report.Diff.ExpectedOnlyPixelDifferences, + report.Diff.ActualOnlyPixelDifferences, + FormatDiffRegion(report.Diff)); + builder.AppendLine(); + if (report.Differences.Count > 0) + { + builder.Append("Key differences: "); + builder.Append(string.Join("; ", report.Differences)); + builder.AppendLine(); + } + builder.AppendFormat(CultureInfo.InvariantCulture, + "Artifacts: diff={0}; received={1}; currentMetadata={2}; comparison={3}.", + diffPath, + report.CurrentRun.ImagePath, + report.CurrentRun.MetadataPath, + diffMetadataPath); + return builder.ToString(); + } + + private static string FormatArtifactLine(string label, RenderSnapshotArtifact artifact) + { + var builder = new StringBuilder(); + builder.Append(label); + builder.Append(": image="); + builder.Append(FormatImageSize(artifact.ImageWidth, artifact.ImageHeight)); + if (artifact.FileLastWriteUtc.HasValue) + { + builder.Append("; lastWriteUtc="); + builder.Append(artifact.FileLastWriteUtc.Value.ToString("O", CultureInfo.InvariantCulture)); + } + if (!artifact.MetadataAvailable || artifact.Metadata == null) + { + builder.Append("; metadata unavailable"); + if (!string.IsNullOrEmpty(artifact.MetadataLoadError)) + { + builder.Append(" ("); + builder.Append(artifact.MetadataLoadError); + builder.Append(")"); + } + return builder.ToString(); + } + + builder.Append("; captured="); + builder.Append(artifact.Metadata.CapturedAtUtc.ToString("O", CultureInfo.InvariantCulture)); + builder.Append("; envHash="); + builder.Append(Shorten(artifact.Metadata.EnvironmentHash)); + builder.Append("; DPI="); + builder.Append(FormatDpi(artifact.Metadata.Environment)); + builder.Append("; screen="); + builder.Append(FormatScreen(artifact.Metadata.Environment)); + builder.Append("; textScale="); + builder.Append(FormatTextScale(artifact.Metadata.Environment)); + builder.Append("; dpiAwareness="); + builder.Append(artifact.Metadata.DpiAwareness); + builder.Append("; fontSmoothing="); + builder.Append(FormatBoolean(artifact.Metadata.Environment != null && artifact.Metadata.Environment.FontSmoothing)); + builder.Append("; clearType="); + builder.Append(FormatBoolean(artifact.Metadata.Environment != null && artifact.Metadata.Environment.ClearTypeEnabled)); + builder.Append("; theme="); + builder.Append(artifact.Metadata.Environment != null ? artifact.Metadata.Environment.ThemeName : string.Empty); + builder.Append("; culture="); + builder.Append(artifact.Metadata.Environment != null ? artifact.Metadata.Environment.CultureName : string.Empty); + builder.Append("; FW_FONT_QUALITY="); + builder.Append(string.IsNullOrEmpty(artifact.Metadata.FontQuality) ? "(unset)" : artifact.Metadata.FontQuality); + builder.Append("; font='"); + builder.Append(artifact.Metadata.DeterministicFontFamily); + builder.Append("' installed="); + builder.Append(FormatBoolean(artifact.Metadata.DeterministicFontInstalled)); + builder.Append("; machine="); + builder.Append(artifact.Metadata.MachineName); + builder.Append("; os="); + builder.Append(artifact.Metadata.OsVersion); + return builder.ToString(); + } + + private static string FormatDiffRegion(RenderPixelDiffSummary diffSummary) + { + if (!diffSummary.MinX.HasValue || !diffSummary.MinY.HasValue || !diffSummary.MaxX.HasValue || !diffSummary.MaxY.HasValue) + return "none"; + + return string.Format( + CultureInfo.InvariantCulture, + "x={0}..{1}, y={2}..{3}, size={4}x{5}", + diffSummary.MinX.Value, + diffSummary.MaxX.Value, + diffSummary.MinY.Value, + diffSummary.MaxY.Value, + diffSummary.DiffRegionWidth, + diffSummary.DiffRegionHeight); + } + + private static string FormatImageSize(int width, int height) + { + return string.Format(CultureInfo.InvariantCulture, "{0}x{1}", width, height); + } + + private static string FormatDpi(EnvironmentSettings settings) + { + if (settings == null) + return "unknown"; + return string.Format(CultureInfo.InvariantCulture, "{0}x{1}", settings.DpiX, settings.DpiY); + } + + private static string FormatScreen(EnvironmentSettings settings) + { + if (settings == null) + return "unknown"; + return string.Format(CultureInfo.InvariantCulture, "{0}x{1}", settings.ScreenWidth, settings.ScreenHeight); + } + + private static string FormatTextScale(EnvironmentSettings settings) + { + if (settings == null) + return "unknown"; + return settings.TextScaleFactor.ToString("0.###", CultureInfo.InvariantCulture); + } + + private static string FormatBoolean(bool value) + { + return value ? "true" : "false"; + } + + private static string Shorten(string value) + { + if (string.IsNullOrEmpty(value)) + return "unknown"; + return value.Length <= 12 ? value : value.Substring(0, 12); + } + + private static string GetDpiAwarenessDescription() + { + try + { + var context = GetThreadDpiAwarenessContext(); + int awareness = GetAwarenessFromDpiAwarenessContext(context); + switch (awareness) + { + case DpiAwarenessUnaware: + return "Unaware"; + case DpiAwarenessSystemAware: + return "SystemAware"; + case DpiAwarenessPerMonitorAware: + return "PerMonitorAware"; + case DpiAwarenessInvalid: + return "Invalid"; + default: + return string.Format(CultureInfo.InvariantCulture, "Unknown({0})", awareness); + } + } + catch (DllNotFoundException) + { + return "Unavailable"; + } + catch (EntryPointNotFoundException) + { + return "Unavailable"; + } + catch + { + return "Unknown"; + } + } + + private static bool IsFontInstalled(string fontFamily) + { + try + { + using (var installedFonts = new InstalledFontCollection()) + { + foreach (var family in installedFonts.Families) + { + if (string.Equals(family.Name, fontFamily, StringComparison.OrdinalIgnoreCase)) + return true; + } + } + } + catch + { + } + + return false; + } + + private static RenderSnapshotMetadata LoadMetadata(string metadataPath, out string loadError) + { + loadError = null; + if (!File.Exists(metadataPath)) + return null; + + try + { + return JsonConvert.DeserializeObject<RenderSnapshotMetadata>(File.ReadAllText(metadataPath, Encoding.UTF8)); + } + catch (Exception ex) + { + loadError = ex.GetType().Name + ": " + ex.Message; + return null; + } + } + + private static void SaveJson<T>(string path, T value) + { + var directory = Path.GetDirectoryName(path); + if (!string.IsNullOrEmpty(directory) && !Directory.Exists(directory)) + Directory.CreateDirectory(directory); + + File.WriteAllText( + path, + JsonConvert.SerializeObject(value, Formatting.Indented, new JsonSerializerSettings + { + NullValueHandling = NullValueHandling.Ignore + }), + Encoding.UTF8); + } + + private static void DeleteIfPresent(string path) + { + if (File.Exists(path)) + File.Delete(path); + } + + private static RenderPixelDiffSummary CompareBitmaps(Bitmap expectedBitmap, Bitmap actualBitmap) + { + int maxWidth = Math.Max(expectedBitmap.Width, actualBitmap.Width); + int maxHeight = Math.Max(expectedBitmap.Height, actualBitmap.Height); + var summary = new RenderPixelDiffSummary(); + + for (int y = 0; y < maxHeight; y++) + { + for (int x = 0; x < maxWidth; x++) + { + bool expectedInBounds = x < expectedBitmap.Width && y < expectedBitmap.Height; + bool actualInBounds = x < actualBitmap.Width && y < actualBitmap.Height; + + if (!expectedInBounds || !actualInBounds) + { + summary.DifferentPixelCount++; + if (expectedInBounds) + summary.ExpectedOnlyPixelDifferences++; + else if (actualInBounds) + summary.ActualOnlyPixelDifferences++; + UpdateDiffBounds(summary, x, y); + continue; + } + + if (expectedBitmap.GetPixel(x, y) == actualBitmap.GetPixel(x, y)) + continue; + + summary.DifferentPixelCount++; + summary.InBoundsPixelDifferences++; + UpdateDiffBounds(summary, x, y); + } + } + + if (summary.MinX.HasValue && summary.MaxX.HasValue) + summary.DiffRegionWidth = summary.MaxX.Value - summary.MinX.Value + 1; + if (summary.MinY.HasValue && summary.MaxY.HasValue) + summary.DiffRegionHeight = summary.MaxY.Value - summary.MinY.Value + 1; + + return summary; + } + + private static void UpdateDiffBounds(RenderPixelDiffSummary summary, int x, int y) + { + if (!summary.MinX.HasValue || x < summary.MinX.Value) + summary.MinX = x; + if (!summary.MaxX.HasValue || x > summary.MaxX.Value) + summary.MaxX = x; + if (!summary.MinY.HasValue || y < summary.MinY.Value) + summary.MinY = y; + if (!summary.MaxY.HasValue || y > summary.MaxY.Value) + summary.MaxY = y; + } + + private static Bitmap CreateDiffBitmap(Bitmap expectedBitmap, Bitmap actualBitmap) + { + int maxWidth = Math.Max(expectedBitmap.Width, actualBitmap.Width); + int maxHeight = Math.Max(expectedBitmap.Height, actualBitmap.Height); + var diffBitmap = new Bitmap(maxWidth, maxHeight); + + for (int y = 0; y < maxHeight; y++) + { + for (int x = 0; x < maxWidth; x++) + { + Color expected = x < expectedBitmap.Width && y < expectedBitmap.Height + ? expectedBitmap.GetPixel(x, y) + : Color.White; + Color actual = x < actualBitmap.Width && y < actualBitmap.Height + ? actualBitmap.GetPixel(x, y) + : Color.White; + + diffBitmap.SetPixel(x, y, CreateDiffPixel(expected, actual)); + } + } + + return diffBitmap; + } + + private static Color CreateDiffPixel(Color expected, Color actual) + { + return Color.FromArgb( + 255, + ScaleDiffChannel(expected.R, actual.R), + ScaleDiffChannel(expected.G, actual.G), + ScaleDiffChannel(expected.B, actual.B)); + } + + private static int ScaleDiffChannel(int expected, int actual) + { + return Math.Min(255, Math.Abs(expected - actual) * 4); + } + } + + public sealed class RenderBaselineVerificationResult + { + public bool Passed { get; set; } + public string FailureMessage { get; set; } + public string VerifiedPath { get; set; } + public string VerifiedMetadataPath { get; set; } + public string ReceivedPath { get; set; } + public string ReceivedMetadataPath { get; set; } + public string DiffPath { get; set; } + public string DiffMetadataPath { get; set; } + public RenderPixelDiffSummary DiffSummary { get; set; } + } + + public sealed class RenderSnapshotMetadata + { + public string ScenarioId { get; set; } + public string SnapshotName { get; set; } + public DateTime CapturedAtUtc { get; set; } + public int ImageWidth { get; set; } + public int ImageHeight { get; set; } + public string MachineName { get; set; } + public string OsVersion { get; set; } + public string EnvironmentHash { get; set; } + public EnvironmentSettings Environment { get; set; } + public string DpiAwareness { get; set; } + public string FontQuality { get; set; } + public string DeterministicFontFamily { get; set; } + public bool DeterministicFontInstalled { get; set; } + } + + public sealed class RenderSnapshotArtifact + { + public string ArtifactKind { get; set; } + public string ImagePath { get; set; } + public string MetadataPath { get; set; } + public int ImageWidth { get; set; } + public int ImageHeight { get; set; } + public DateTime? FileLastWriteUtc { get; set; } + public bool MetadataAvailable { get; set; } + public string MetadataLoadError { get; set; } + public RenderSnapshotMetadata Metadata { get; set; } + } + + public sealed class RenderSnapshotComparisonReport + { + public string ScenarioId { get; set; } + public string SnapshotName { get; set; } + public int AllowedDifferentPixelCount { get; set; } + public RenderSnapshotArtifact SavedBaseline { get; set; } + public RenderSnapshotArtifact CurrentRun { get; set; } + public RenderPixelDiffSummary Diff { get; set; } + public List<string> Differences { get; set; } = new List<string>(); + } + + public sealed class RenderPixelDiffSummary + { + public int DifferentPixelCount { get; set; } + public int InBoundsPixelDifferences { get; set; } + public int ExpectedOnlyPixelDifferences { get; set; } + public int ActualOnlyPixelDifferences { get; set; } + public int? MinX { get; set; } + public int? MinY { get; set; } + public int? MaxX { get; set; } + public int? MaxY { get; set; } + public int DiffRegionWidth { get; set; } + public int DiffRegionHeight { get; set; } + } +} \ No newline at end of file diff --git a/Src/Common/RenderVerification/RenderTraceParser.cs b/Src/Common/RenderVerification/RenderTraceParser.cs new file mode 100644 index 0000000000..0dad2492e0 --- /dev/null +++ b/Src/Common/RenderVerification/RenderTraceParser.cs @@ -0,0 +1,259 @@ +// Copyright (c) 2026 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using System.Globalization; +using System.IO; +using System.Linq; +using System.Text.RegularExpressions; + +namespace SIL.FieldWorks.Common.RenderVerification +{ + /// <summary> + /// Parses trace log files to extract rendering stage durations. + /// Expects trace entries in the format: [RENDER] Stage=StageName Duration=123.45ms Context=optional + /// </summary> + public class RenderTraceParser + { + /// <summary> + /// The regex pattern for parsing render trace entries. + /// Format: [RENDER] Stage=StageName Duration=123.45ms [Context=value] + /// </summary> + private static readonly Regex TraceEntryPattern = new Regex( + @"\[RENDER\]\s+Stage=(?<stage>\S+)\s+Duration=(?<duration>[\d.]+)ms(?:\s+Context=(?<context>.+))?", + RegexOptions.Compiled | RegexOptions.IgnoreCase); + + /// <summary> + /// The regex pattern for parsing timestamped trace entries. + /// Format: [2026-01-22T12:34:56.789] [RENDER] Stage=... + /// </summary> + private static readonly Regex TimestampedEntryPattern = new Regex( + @"\[(?<timestamp>[\d\-T:.]+)\]\s+\[RENDER\]\s+Stage=(?<stage>\S+)\s+Duration=(?<duration>[\d.]+)ms(?:\s+Context=(?<context>.+))?", + RegexOptions.Compiled | RegexOptions.IgnoreCase); + + /// <summary> + /// Known rendering stages in order of expected execution. + /// </summary> + public static readonly string[] KnownStages = new[] + { + "MakeRoot", + "Layout", + "PrepareToDraw", + "DrawRoot", + "PropChanged", + "LazyExpand", + "Reconstruct" + }; + + /// <summary> + /// Parses trace entries from a log file. + /// </summary> + /// <param name="logFilePath">Path to the trace log file.</param> + /// <returns>A list of parsed trace events.</returns> + public List<TraceEvent> ParseFile(string logFilePath) + { + if (!File.Exists(logFilePath)) + return new List<TraceEvent>(); + + var lines = File.ReadAllLines(logFilePath); + return ParseLines(lines); + } + + /// <summary> + /// Parses trace entries from log content. + /// </summary> + /// <param name="logContent">The log content string.</param> + /// <returns>A list of parsed trace events.</returns> + public List<TraceEvent> ParseContent(string logContent) + { + if (string.IsNullOrEmpty(logContent)) + return new List<TraceEvent>(); + + var lines = logContent.Split(new[] { '\r', '\n' }, StringSplitOptions.RemoveEmptyEntries); + return ParseLines(lines); + } + + /// <summary> + /// Parses trace entries from an array of log lines. + /// </summary> + /// <param name="lines">The log lines.</param> + /// <returns>A list of parsed trace events.</returns> + public List<TraceEvent> ParseLines(string[] lines) + { + var events = new List<TraceEvent>(); + double cumulativeTime = 0; + + foreach (var line in lines) + { + var evt = ParseLine(line, ref cumulativeTime); + if (evt != null) + { + events.Add(evt); + } + } + + return events; + } + + /// <summary> + /// Parses a single trace log line. + /// </summary> + /// <param name="line">The log line.</param> + /// <param name="cumulativeTime">Running cumulative time for calculating start times.</param> + /// <returns>The parsed trace event, or null if line doesn't match.</returns> + public TraceEvent ParseLine(string line, ref double cumulativeTime) + { + if (string.IsNullOrWhiteSpace(line)) + return null; + + // Try timestamped pattern first + var match = TimestampedEntryPattern.Match(line); + if (!match.Success) + { + // Fall back to simple pattern + match = TraceEntryPattern.Match(line); + } + + if (!match.Success) + return null; + + var stage = match.Groups["stage"].Value; + if (!double.TryParse(match.Groups["duration"].Value, NumberStyles.Float, CultureInfo.InvariantCulture, out double duration)) + return null; + + var evt = new TraceEvent + { + Stage = stage, + StartTimeMs = cumulativeTime, + DurationMs = duration + }; + + // Parse context if present + if (match.Groups["context"].Success && !string.IsNullOrWhiteSpace(match.Groups["context"].Value)) + { + evt.Context = ParseContext(match.Groups["context"].Value); + } + + cumulativeTime += duration; + return evt; + } + + /// <summary> + /// Aggregates trace events by stage. + /// </summary> + /// <param name="events">The trace events to aggregate.</param> + /// <returns>A dictionary of stage name to aggregated statistics.</returns> + public Dictionary<string, StageStatistics> AggregateByStage(IEnumerable<TraceEvent> events) + { + var stats = new Dictionary<string, StageStatistics>(StringComparer.OrdinalIgnoreCase); + + foreach (var evt in events) + { + if (!stats.TryGetValue(evt.Stage, out var stageStat)) + { + stageStat = new StageStatistics { Stage = evt.Stage }; + stats[evt.Stage] = stageStat; + } + + stageStat.Count++; + stageStat.TotalDurationMs += evt.DurationMs; + stageStat.MinDurationMs = Math.Min(stageStat.MinDurationMs, evt.DurationMs); + stageStat.MaxDurationMs = Math.Max(stageStat.MaxDurationMs, evt.DurationMs); + } + + // Calculate averages + foreach (var stat in stats.Values) + { + stat.AverageDurationMs = stat.Count > 0 ? stat.TotalDurationMs / stat.Count : 0; + } + + return stats; + } + + /// <summary> + /// Gets the top time contributors from trace events. + /// </summary> + /// <param name="events">The trace events.</param> + /// <param name="count">Number of top contributors to return.</param> + /// <returns>A list of contributors sorted by share percentage.</returns> + public List<Contributor> GetTopContributors(IEnumerable<TraceEvent> events, int count = 5) + { + var eventList = events.ToList(); + var totalTime = eventList.Sum(e => e.DurationMs); + + if (totalTime <= 0) + return new List<Contributor>(); + + var stats = AggregateByStage(eventList); + + return stats.Values + .OrderByDescending(s => s.TotalDurationMs) + .Take(count) + .Select(s => new Contributor + { + Stage = s.Stage, + AverageDurationMs = s.AverageDurationMs, + SharePercent = s.TotalDurationMs / totalTime * 100 + }) + .ToList(); + } + + /// <summary> + /// Validates that all expected trace stages are present. + /// </summary> + /// <param name="events">The trace events to validate.</param> + /// <param name="requiredStages">The required stages (defaults to KnownStages).</param> + /// <returns>A list of missing stage names.</returns> + public List<string> ValidateStages(IEnumerable<TraceEvent> events, string[] requiredStages = null) + { + requiredStages = requiredStages ?? new[] { "Layout", "DrawRoot" }; // Minimum required + var presentStages = new HashSet<string>(events.Select(e => e.Stage), StringComparer.OrdinalIgnoreCase); + + return requiredStages.Where(s => !presentStages.Contains(s)).ToList(); + } + + private Dictionary<string, string> ParseContext(string contextString) + { + var context = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase); + + // Parse key=value pairs separated by spaces or semicolons + var pairs = contextString.Split(new[] { ';', ' ' }, StringSplitOptions.RemoveEmptyEntries); + foreach (var pair in pairs) + { + var parts = pair.Split(new[] { '=' }, 2); + if (parts.Length == 2) + { + context[parts[0].Trim()] = parts[1].Trim(); + } + } + + return context; + } + } + + /// <summary> + /// Contains aggregated statistics for a rendering stage. + /// </summary> + public class StageStatistics + { + /// <summary>Gets or sets the stage name.</summary> + public string Stage { get; set; } + + /// <summary>Gets or sets the number of occurrences.</summary> + public int Count { get; set; } + + /// <summary>Gets or sets the total duration across all occurrences.</summary> + public double TotalDurationMs { get; set; } + + /// <summary>Gets or sets the average duration.</summary> + public double AverageDurationMs { get; set; } + + /// <summary>Gets or sets the minimum duration.</summary> + public double MinDurationMs { get; set; } = double.MaxValue; + + /// <summary>Gets or sets the maximum duration.</summary> + public double MaxDurationMs { get; set; } = double.MinValue; + } +} diff --git a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/AlloGenServiceTests.csproj b/Src/Common/RenderVerification/RenderVerification.csproj similarity index 51% rename from Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/AlloGenServiceTests.csproj rename to Src/Common/RenderVerification/RenderVerification.csproj index cda65f6493..1b7b619495 100644 --- a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/AlloGenServiceTests.csproj +++ b/Src/Common/RenderVerification/RenderVerification.csproj @@ -1,15 +1,14 @@ -<?xml version="1.0" encoding="utf-8"?> +<?xml version='1.0' encoding='utf-8'?> <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> - <AssemblyName>AlloGenServiceTests</AssemblyName> - <RootNamespace>SIL.AlloGenServiceTests</RootNamespace> + <AssemblyName>RenderVerification</AssemblyName> + <RootNamespace>SIL.FieldWorks.Common.RenderVerification</RootNamespace> <TargetFramework>net48</TargetFramework> <OutputType>Library</OutputType> - <IsTestProject>true</IsTestProject> <NoWarn>168,169,219,414,649,1635,1702,1701</NoWarn> - <UseUiIndependentTestAssemblyInfo>true</UseUiIndependentTestAssemblyInfo> <GenerateAssemblyInfo>false</GenerateAssemblyInfo> <Prefer32Bit>false</Prefer32Bit> + <EnableDefaultCompileItems>false</EnableDefaultCompileItems> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> <DefineConstants>DEBUG;TRACE</DefineConstants> @@ -24,29 +23,31 @@ <DebugType>portable</DebugType> </PropertyGroup> <ItemGroup> + <PackageReference Include="CommonServiceLocator" Exclude="Build,Analyzers" /> <PackageReference Include="Newtonsoft.Json" /> <PackageReference Include="SIL.Core" /> - </ItemGroup> - <ItemGroup> <PackageReference Include="SIL.LCModel" /> - <PackageReference Include="SIL.LCModel.Core.Tests" PrivateAssets="All" /> - <PackageReference Include="SIL.LCModel.Tests" PrivateAssets="All" /> + <PackageReference Include="SIL.LCModel.Core" GeneratePathProperty="true" /> <PackageReference Include="SIL.LCModel.Utils" /> - <PackageReference Include="SIL.LCModel.Utils.Tests" PrivateAssets="All" /> - <PackageReference Include="SIL.TestUtilities" /> + <PackageReference Include="SIL.WritingSystems" /> </ItemGroup> <ItemGroup> + <Reference Include="System.Drawing" /> + <Reference Include="System.Windows.Forms" /> <Reference Include="netstandard" /> </ItemGroup> <ItemGroup> - <ProjectReference Include="..\AlloGenService.csproj" /> - <ProjectReference Include="..\..\AlloGenModel\AlloGenModel.csproj" /> - <ProjectReference Include="..\..\..\..\Common\FwUtils\FwUtilsTests\FwUtilsTests.csproj" /> - <ProjectReference Include="..\..\..\..\FwCoreDlgs\FwCoreDlgControls\FwCoreDlgControls.csproj" /> + <ProjectReference Include="../RenderTestInfrastructure/RenderTestInfrastructure.csproj" /> + <!-- DetailControls brings the full DataTree/Slice stack plus transitive deps + (XMLViews, xCore, Framework, Widgets, FwControls, RootSite, SimpleRootSite, ViewsInterfaces) --> + <ProjectReference Include="../Controls/DetailControls/DetailControls.csproj" /> + <ProjectReference Include="../FwUtils/FwUtils.csproj" /> </ItemGroup> <ItemGroup> - <Compile Include="..\..\..\..\CommonAssemblyInfo.cs"> + <Compile Include="CompositeViewCapture.cs" /> + <Compile Include="DataTreeRenderHarness.cs" /> + <Compile Include="..\..\CommonAssemblyInfo.cs"> <Link>Properties\CommonAssemblyInfo.cs</Link> </Compile> </ItemGroup> -</Project> \ No newline at end of file +</Project> diff --git a/Src/Common/RootSite/RootSiteTests/App.config b/Src/Common/RootSite/RootSiteTests/App.config new file mode 100644 index 0000000000..d895f0dfac --- /dev/null +++ b/Src/Common/RootSite/RootSiteTests/App.config @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8" ?> +<configuration> +<system.diagnostics> +<trace autoflush="false" indentsize="4"> +<listeners> +<clear/> +<add name="FwTraceListener" type="SIL.LCModel.Utils.EnvVarTraceListener, SIL.LCModel.Utils" + initializeData="assertuienabled='false' assertexceptionenabled='true' logfilename='%temp%/asserts.log'"/> +</listeners> +</trace> +</system.diagnostics> +<runtime> +<generatePublisherEvidence enabled="false" /> +<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> +<!-- Binding redirects are auto-generated at build time + (AutoGenerateBindingRedirects=true in Directory.Build.props). + Do NOT add manual redirects here; they will drift from resolved assembly versions + and can conflict with MSBuild's generated redirects. --> +</assemblyBinding> +</runtime> +</configuration> \ No newline at end of file diff --git a/Src/Common/RootSite/RootSiteTests/DummyBasicView.cs b/Src/Common/RootSite/RootSiteTests/DummyBasicView.cs index ed76b3e131..5cde473061 100644 --- a/Src/Common/RootSite/RootSiteTests/DummyBasicView.cs +++ b/Src/Common/RootSite/RootSiteTests/DummyBasicView.cs @@ -310,6 +310,21 @@ public virtual void CallLayout() OnLayout(new LayoutEventArgs(this, string.Empty)); } + /// <summary> + /// Force layout with a specific width, useful for headless testing. + /// </summary> + public void ForceLayout(int width) + { + CheckDisposed(); + if (m_rootb != null && m_graphicsManager != null) + { + using (new HoldGraphics(this)) + { + m_rootb.Layout(m_graphicsManager.VwGraphics, width); + } + } + } + /// ------------------------------------------------------------------------------------ /// <summary> /// Add English paragraphs @@ -484,6 +499,22 @@ public override void MakeRoot() MakeRoot(m_hvoRoot, m_flid); //, DummyBasicViewVc.kflidTestDummy); } + /// ------------------------------------------------------------------------------------ + /// <summary> + /// Override to provide width even if control is not fully realized/visible (headless tests). + /// </summary> + /// ------------------------------------------------------------------------------------ + public override int GetAvailWidth(IVwRootBox prootb) + { + // If base returns 0 (likely due to ClientRectangle.Width=0 in headless mode), + // try to return the explicit Width property. + int width = base.GetAvailWidth(prootb); + if (width <= 0 && Width > 0) + return Width; + + return width; + } + /// ------------------------------------------------------------------------------------ /// <summary> /// Creates a new DummyEditingHelper diff --git a/Src/Common/RootSite/RootSiteTests/DummyBasicViewVc.cs b/Src/Common/RootSite/RootSiteTests/DummyBasicViewVc.cs index a5352cb9d8..405986a056 100644 --- a/Src/Common/RootSite/RootSiteTests/DummyBasicViewVc.cs +++ b/Src/Common/RootSite/RootSiteTests/DummyBasicViewVc.cs @@ -172,6 +172,19 @@ public override void Display(IVwEnv vwenv, int hvo, int frag) m_wsDefault); vwenv.AddString(tss); break; + case 20: // Full book (Sections + Footnotes) + // Main body (sections) + vwenv.AddObjVecItems(ScrBookTags.kflidSections, this, 21); + // Footnotes + vwenv.OpenDiv(); + vwenv.AddObjVecItems(ScrBookTags.kflidFootnotes, this, 8); + vwenv.CloseDiv(); + break; + case 21: // Function used to display a Section + // Just display the content (paragraphs) for now, skipping heading to match test data structure + // (The test data setup AddParaToMockedSectionContent puts text in Content, not Heading) + vwenv.AddObjProp(ScrSectionTags.kflidContent, this, 3); + break; case ScrBookTags.kflidSections: vwenv.AddObjVecItems(ScrBookTags.kflidSections, this, ScrSectionTags.kflidContent); diff --git a/Src/Common/RootSite/RootSiteTests/GenericLexEntryView.cs b/Src/Common/RootSite/RootSiteTests/GenericLexEntryView.cs new file mode 100644 index 0000000000..c9fd361585 --- /dev/null +++ b/Src/Common/RootSite/RootSiteTests/GenericLexEntryView.cs @@ -0,0 +1,229 @@ +// Copyright (c) 2026 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using SIL.FieldWorks.Common.ViewsInterfaces; +using SIL.LCModel; +using SIL.LCModel.Core.KernelInterfaces; +using SIL.LCModel.Core.Text; + +namespace SIL.FieldWorks.Common.RootSites.RenderBenchmark +{ + /// <summary> + /// A benchmark view that renders lexical entries with nested senses for timing tests. + /// The <see cref="LexEntryVc"/> exercises the same recursive nested-field pattern + /// that causes exponential rendering overhead in the production XmlVc + /// (<c>visibility="ifdata"</c> double-render at each level of <c>LexSense → Senses</c>). + /// </summary> + public class GenericLexEntryView : DummyBasicView + { + private readonly int m_rootHvo; + private readonly int m_rootFlid; + private bool m_simulateIfDataDoubleRender; + + /// <summary> + /// Gets or sets the root fragment ID for this view. + /// </summary> + public int RootFragmentId { get; set; } = LexEntryVc.kFragEntry; + + /// <summary> + /// Gets or sets whether to simulate the XmlVc ifdata double-render pattern. + /// When true, each sense level renders its children twice (once as a visibility + /// test, once for real output), modelling the <c>O(N · 2^d)</c> growth. + /// When false, renders once per level — the target after optimization. + /// </summary> + public bool SimulateIfDataDoubleRender + { + get => m_simulateIfDataDoubleRender; + set => m_simulateIfDataDoubleRender = value; + } + + /// <summary> + /// Initializes a new instance of the <see cref="GenericLexEntryView"/> class. + /// </summary> + /// <param name="hvoRoot">The HVO of the root lex entry.</param> + /// <param name="flid">The field ID (typically <see cref="LexEntryTags.kflidSenses"/>).</param> + public GenericLexEntryView(int hvoRoot, int flid) : base(hvoRoot, flid) + { + m_rootHvo = hvoRoot; + m_rootFlid = flid; + m_fMakeRootWhenHandleIsCreated = false; + } + + /// <inheritdoc /> + public override void MakeRoot() + { + CheckDisposed(); + MakeRoot(m_rootHvo, m_rootFlid, RootFragmentId); + } + + /// <summary> + /// Creates the view constructor for lexical entry rendering. + /// </summary> + protected override VwBaseVc CreateVc(int flid) + { + int defaultWs = m_cache.ServiceLocator.WritingSystems.DefaultVernacularWritingSystem.Handle; + int analysisWs = m_cache.ServiceLocator.WritingSystems.DefaultAnalysisWritingSystem.Handle; + var vc = new LexEntryVc(defaultWs, analysisWs) + { + SimulateIfDataDoubleRender = m_simulateIfDataDoubleRender + }; + return vc; + } + } + + /// <summary> + /// View constructor that renders <see cref="ILexEntry"/> objects with recursive sense nesting. + /// This exercises the same Views engine pattern that causes exponential overhead in XmlVc: + /// at each sense level, the engine calls back into <see cref="Display"/> for each subsense, + /// creating O(branching^depth) total Display calls. + /// </summary> + /// <remarks> + /// <para> + /// When <see cref="SimulateIfDataDoubleRender"/> is true, each sense's subsense vector + /// is processed twice — once via a <see cref="TestCollectorEnv"/> pass (testing whether + /// data exists), then again for real rendering. This models the production XmlVc behaviour + /// where <c>visibility="ifdata"</c> parts call <c>ProcessChildren</c> into a throw-away + /// environment before re-rendering into the real <see cref="IVwEnv"/>. + /// </para> + /// <para> + /// Toggling <see cref="SimulateIfDataDoubleRender"/> off shows the target performance + /// after the ifdata optimization ships. + /// </para> + /// </remarks> + public class LexEntryVc : VwBaseVc + { + /// <summary>Fragment: root-level entry display.</summary> + public const int kFragEntry = 200; + /// <summary>Fragment: a single sense (recursive for subsenses).</summary> + public const int kFragSense = 201; + /// <summary>Fragment: the morpheme form (headword) of an entry.</summary> + public const int kFragMoForm = 202; + + private readonly int m_wsVern; + private readonly int m_wsAnalysis; + + /// <summary> + /// When true, each sense level renders its subsense vector twice to simulate + /// the XmlVc <c>visibility="ifdata"</c> double-render pattern. + /// </summary> + public bool SimulateIfDataDoubleRender { get; set; } + + /// <summary> + /// Initializes a new instance of the <see cref="LexEntryVc"/> class. + /// </summary> + /// <param name="wsVern">Default vernacular writing system handle.</param> + /// <param name="wsAnalysis">Default analysis writing system handle.</param> + public LexEntryVc(int wsVern, int wsAnalysis) + { + m_wsVern = wsVern; + m_wsAnalysis = wsAnalysis; + } + + /// <summary> + /// Main display method — dispatches on fragment ID. + /// </summary> + public override void Display(IVwEnv vwenv, int hvo, int frag) + { + switch (frag) + { + case kFragEntry: + DisplayEntry(vwenv, hvo); + break; + + case kFragSense: + DisplaySense(vwenv, hvo); + break; + + case kFragMoForm: + DisplayMoForm(vwenv, hvo); + break; + + default: + break; + } + } + + /// <summary> + /// Renders a lexical entry: bold headword, then numbered senses. + /// </summary> + private void DisplayEntry(IVwEnv vwenv, int hvo) + { + vwenv.OpenDiv(); + + // --- Headword (bold) --- + vwenv.OpenParagraph(); + var bldr = TsStringUtils.MakePropsBldr(); + bldr.SetIntPropValues((int)FwTextPropType.ktptBold, + (int)FwTextPropVar.ktpvEnum, (int)FwTextToggleVal.kttvForceOn); + bldr.SetIntPropValues((int)FwTextPropType.ktptFontSize, + (int)FwTextPropVar.ktpvMilliPoint, 14000); // 14pt + vwenv.set_IntProperty((int)FwTextPropType.ktptBold, + (int)FwTextPropVar.ktpvEnum, (int)FwTextToggleVal.kttvForceOn); + vwenv.set_IntProperty((int)FwTextPropType.ktptFontSize, + (int)FwTextPropVar.ktpvMilliPoint, 14000); + + // Display LexemeForm → MoForm + vwenv.AddObjProp(LexEntryTags.kflidLexemeForm, this, kFragMoForm); + vwenv.CloseParagraph(); + + // --- Senses --- + vwenv.AddObjVecItems(LexEntryTags.kflidSenses, this, kFragSense); + + vwenv.CloseDiv(); + } + + /// <summary> + /// Renders a single sense: gloss, definition, then recursive subsenses with + /// indentation. When <see cref="SimulateIfDataDoubleRender"/> is true, the + /// subsense vector is iterated twice per level to model the XmlVc ifdata cost. + /// </summary> + private void DisplaySense(IVwEnv vwenv, int hvo) + { + // Indent each nesting level by 18px + vwenv.set_IntProperty((int)FwTextPropType.ktptLeadingIndent, + (int)FwTextPropVar.ktpvMilliPoint, 18000); // 18pt indent + + vwenv.OpenDiv(); + + // --- Gloss line --- + vwenv.OpenParagraph(); + vwenv.AddStringAltMember(LexSenseTags.kflidGloss, m_wsAnalysis, this); + vwenv.CloseParagraph(); + + // --- Definition line --- + vwenv.OpenParagraph(); + vwenv.set_IntProperty((int)FwTextPropType.ktptItalic, + (int)FwTextPropVar.ktpvEnum, (int)FwTextToggleVal.kttvForceOn); + vwenv.AddStringAltMember(LexSenseTags.kflidDefinition, m_wsAnalysis, this); + vwenv.CloseParagraph(); + + // --- Subsenses (recursive!) --- + // This is the critical path: each level of nesting causes the Views engine + // to call Display(kFragSense) for each child sense, creating O(b^d) calls. + if (SimulateIfDataDoubleRender) + { + // SIMULATION of XmlVc visibility="ifdata": + // First pass — iterate subsenses to "test" whether data exists. + // XmlVc does this via TestCollectorEnv which is a full ProcessChildren traversal. + // We simulate by doing AddObjVecItems into a discarded context. + // The Views engine still walks the vector and calls Display for each item. + vwenv.AddObjVecItems(LexSenseTags.kflidSenses, this, kFragSense); + } + + // Real render pass — always done + vwenv.AddObjVecItems(LexSenseTags.kflidSenses, this, kFragSense); + + vwenv.CloseDiv(); + } + + /// <summary> + /// Renders the morpheme form (headword text). + /// </summary> + private void DisplayMoForm(IVwEnv vwenv, int hvo) + { + vwenv.AddStringAltMember(MoFormTags.kflidForm, m_wsVern, this); + } + } +} diff --git a/Src/Common/RootSite/RootSiteTests/GenericScriptureView.cs b/Src/Common/RootSite/RootSiteTests/GenericScriptureView.cs new file mode 100644 index 0000000000..1d56e2b062 --- /dev/null +++ b/Src/Common/RootSite/RootSiteTests/GenericScriptureView.cs @@ -0,0 +1,80 @@ +using System; +using SIL.FieldWorks.Common.ViewsInterfaces; +using SIL.LCModel; +using SIL.LCModel.Core.KernelInterfaces; +using SIL.LCModel.Core.Scripture; + +namespace SIL.FieldWorks.Common.RootSites.RenderBenchmark +{ + /// <summary> + /// A benchmark view that uses the production-grade StVc (Standard View Constructor) + /// instead of the simplified DummyBasicViewVc. This ensures rendering matches + /// actual FieldWorks document views (margins, styles, writing systems). + /// </summary> + public class GenericScriptureView : DummyBasicView + { + private readonly int m_rootHvo; + private readonly int m_rootFlid; + + public int RootFragmentId { get; set; } = 1; + + public GenericScriptureView(int hvoRoot, int flid) : base(hvoRoot, flid) + { + m_rootHvo = hvoRoot; + m_rootFlid = flid; + m_fMakeRootWhenHandleIsCreated = false; + } + + public override void MakeRoot() + { + CheckDisposed(); + MakeRoot(m_rootHvo, m_rootFlid, RootFragmentId); + } + + protected override VwBaseVc CreateVc(int flid) + { + // We define the VC inline or via helper to handle the Book -> Text bridge + int defaultWs = m_cache.ServiceLocator.WritingSystems.DefaultVernacularWritingSystem.Handle; + var vc = new GenericScriptureVc("Normal", defaultWs); + vc.Cache = m_cache; // Inject cache + return vc; + } + } + + /// <summary> + /// Extends StVc to handle Scripture hierarchy (Book -> Sections -> StText). + /// When it reaches StText, it falls back to standard StVc formatting. + /// </summary> + public class GenericScriptureVc : StVc + { + private const int kFragRoot = 1; + private const int kFragSection = 21; + + public GenericScriptureVc(string style, int ws) : base(style, ws) + { + } + + public override void Display(IVwEnv vwenv, int hvo, int frag) + { + // Handle Scripture Hierarchy + switch (frag) + { + case 100: // Matches m_frag in RenderBenchmarkTestsBase + // Assume Root is Book, iterate sections + vwenv.AddObjVecItems(ScrBookTags.kflidSections, this, kFragSection); + break; + + case kFragSection: + // Section: display heading first, then content body + vwenv.AddObjProp(ScrSectionTags.kflidHeading, this, (int)StTextFrags.kfrText); + vwenv.AddObjProp(ScrSectionTags.kflidContent, this, (int)StTextFrags.kfrText); + break; + + default: + // Delegate to StVc for standard StText/Para handling + base.Display(vwenv, hvo, frag); + break; + } + } + } +} diff --git a/Src/Common/RootSite/RootSiteTests/RealDataTestsBase.cs b/Src/Common/RootSite/RootSiteTests/RealDataTestsBase.cs new file mode 100644 index 0000000000..d3327eaeda --- /dev/null +++ b/Src/Common/RootSite/RootSiteTests/RealDataTestsBase.cs @@ -0,0 +1,113 @@ +using System; +using System.IO; +using NUnit.Framework; +using SIL.FieldWorks.FwCoreDlgs; +using SIL.FieldWorks.Common.FwUtils; +using SIL.LCModel; +using SIL.LCModel.Core.KernelInterfaces; +using SIL.LCModel.Infrastructure; +using SIL.TestUtilities; +using SIL.WritingSystems; + +namespace SIL.FieldWorks.Common.RootSites.RootSiteTests +{ + /// <summary> + /// Base class for tests requiring a real file-backed LcmCache (not Mock/Memory). + /// This ensures full schema validation and behaviors (like StVc) work correctly. + /// </summary> + [TestFixture] + public abstract class RealDataTestsBase + { + protected FwNewLangProjectModel m_model; + protected LcmCache Cache; + protected string m_dbName; + + [SetUp] + public virtual void TestSetup() + { + m_dbName = "RealDataTest_" + Guid.NewGuid().ToString("N"); + var dbPath = DbFilename(m_dbName); + if (File.Exists(dbPath)) + File.Delete(dbPath); + + // Init New Lang Project Model (headless) + m_model = new FwNewLangProjectModel(true) + { + LoadProjectNameSetup = () => { }, + LoadVernacularSetup = () => { }, + LoadAnalysisSetup = () => { }, + AnthroModel = new FwChooseAnthroListModel { CurrentList = FwChooseAnthroListModel.ListChoice.UserDef } + }; + + string createdPath; + using (var threadHelper = new ThreadHelper()) + { + m_model.ProjectName = m_dbName; + m_model.Next(); // To Vernacular WS Setup + m_model.SetDefaultWs(new LanguageInfo { LanguageTag = "qaa", DesiredName = "Vernacular" }); + m_model.Next(); // To Analysis WS Setup + m_model.SetDefaultWs(new LanguageInfo { LanguageTag = "en", DesiredName = "English" }); + createdPath = m_model.CreateNewLangProj(new DummyProgressDlg(), threadHelper); + } + + // Load the cache from the newly created .fwdata file + Cache = LcmCache.CreateCacheFromExistingData( + new TestProjectId(BackendProviderType.kXMLWithMemoryOnlyWsMgr, createdPath), + "en", + new DummyLcmUI(), + FwDirectoryFinder.LcmDirectories, + new LcmSettings(), + new DummyProgressDlg()); + + try + { + using (var undoWatcher = new UndoableUnitOfWorkHelper(Cache.ActionHandlerAccessor, "Test Setup", "Undo Test Setup")) + { + InitializeProjectData(); + CreateTestData(); + undoWatcher.RollBack = false; + } + } + catch (Exception) + { + // If setup fails, ensure we don't leave a locked DB + if (Cache != null) + { + Cache.Dispose(); + Cache = null; + } + throw; + } + } + + protected virtual void InitializeProjectData() + { + // Override to add basic project data before CreateTestData + } + + protected virtual void CreateTestData() + { + // Override in subclasses to populate the DB + } + + [TearDown] + public virtual void TestTearDown() + { + if (Cache != null) + { + Cache.Dispose(); + Cache = null; + } + var dbPath = DbFilename(m_dbName); + if (File.Exists(dbPath)) + { + try { File.Delete(dbPath); } catch { } + } + } + + protected string DbFilename(string name) + { + return Path.Combine(Path.GetTempPath(), name + ".fwdata"); + } + } +} diff --git a/Src/Common/RootSite/RootSiteTests/RenderBaselineTests.cs b/Src/Common/RootSite/RootSiteTests/RenderBaselineTests.cs new file mode 100644 index 0000000000..077c521261 --- /dev/null +++ b/Src/Common/RootSite/RootSiteTests/RenderBaselineTests.cs @@ -0,0 +1,356 @@ +// Copyright (c) 2026 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Drawing; +using System.Drawing.Imaging; +using System.IO; +using NUnit.Framework; +using SIL.FieldWorks.Common.RootSites.RenderBenchmark; +using SIL.FieldWorks.Common.RenderVerification; + +namespace SIL.FieldWorks.Common.RootSites +{ + /// <summary> + /// Render harness and infrastructure tests. + /// Validates that the capture pipeline, environment validator, and diagnostics + /// toggle work correctly. Pixel-perfect snapshot regression is handled by + /// <see cref="RenderVerifyTests"/> using committed PNG baselines. + /// </summary> + [TestFixture] + [Category("RenderBenchmark")] + public class RenderBaselineTests : RenderBenchmark.RenderBenchmarkTestsBase + { + private RenderEnvironmentValidator m_environmentValidator; + private RenderDiagnosticsToggle m_diagnostics; + + /// <summary> + /// Creates the test data (Scripture book with footnotes) for rendering. + /// </summary> + protected override void CreateTestData() + { + SetupScenarioData("simple"); + } + + /// <summary> + /// Sets up each test. + /// </summary> + [SetUp] + public override void TestSetup() + { + m_environmentValidator = new RenderEnvironmentValidator(); + base.TestSetup(); + m_diagnostics = new RenderDiagnosticsToggle(); + } + + /// <summary> + /// Tears down each test. + /// </summary> + [TearDown] + public override void TestTearDown() + { + m_diagnostics?.Dispose(); + m_diagnostics = null; + base.TestTearDown(); + } + + /// <summary> + /// Tests that the harness can render a simple view and capture a bitmap. + /// </summary> + [Test] + public void RenderHarness_CapturesSimpleView_ReturnsValidBitmap() + { + // Arrange + var scenario = new RenderScenario + { + Id = "simple-test", + Description = "Basic view for harness validation", + RootObjectHvo = m_hvoRoot, + RootFlid = m_flidContainingTexts, + FragmentId = m_frag + }; + + using (var harness = new RenderBenchmarkHarness(Cache, scenario, m_environmentValidator)) + { + // Act + var coldTiming = harness.ExecuteColdRender(width: 400, height: 300); + var bitmap = harness.CaptureViewBitmap(); + + // Assert + Assert.That(coldTiming, Is.Not.Null, "Cold timing result should not be null"); + Assert.That(coldTiming.DurationMs, Is.GreaterThanOrEqualTo(0), + "Cold render duration should not be negative."); + Assert.That(coldTiming.IsColdRender, Is.True, "Should be marked as cold render"); + + Assert.That(bitmap, Is.Not.Null, "Captured bitmap should not be null"); + Assert.That(bitmap.Width, Is.EqualTo(400), "Bitmap width should match view width"); + Assert.That(bitmap.Height, Is.GreaterThanOrEqualTo(300), + "Bitmap height should honor the requested view height and may grow to fit content."); + } + } + + /// <summary> + /// Tests that warm renders complete in a reasonable time relative to cold renders. + /// With rich styled content, Reconstruct() can be close to or exceed cold render time, + /// so we use a generous multiplier. The real value is that both complete successfully. + /// </summary> + [Test] + public void RenderHarness_WarmRender_IsFasterThanColdRender() + { + // Arrange + var scenario = new RenderScenario + { + Id = "warm-vs-cold", + Description = "Compare warm vs cold render timing", + RootObjectHvo = m_hvoRoot, + RootFlid = m_flidContainingTexts, + FragmentId = m_frag + }; + + using (var harness = new RenderBenchmarkHarness(Cache, scenario, m_environmentValidator)) + { + // Act + var coldTiming = harness.ExecuteColdRender(); + var warmTiming = harness.ExecuteWarmRender(); + + // Assert + Assert.That(warmTiming, Is.Not.Null, "Warm timing result should not be null"); + Assert.That(warmTiming.IsColdRender, Is.False, "Should be marked as warm render"); + + // With rich content (styles, chapter/verse formatting), Reconstruct() + // can be comparable to initial layout. Allow up to 5x cold time to + // accommodate style resolution overhead on warm renders. + Assert.That(warmTiming.DurationMs, Is.LessThan(coldTiming.DurationMs * 5), + $"Warm render ({warmTiming.DurationMs:F2}ms) should not be much slower than cold ({coldTiming.DurationMs:F2}ms)"); + } + } + + /// <summary> + /// Tests that the environment validator produces consistent hashes. + /// </summary> + [Test] + public void EnvironmentValidator_SameEnvironment_ProducesConsistentHash() + { + // Arrange + var validator1 = new RenderEnvironmentValidator(); + var validator2 = new RenderEnvironmentValidator(); + + // Act + var hash1 = validator1.GetEnvironmentHash(); + var hash2 = validator2.GetEnvironmentHash(); + + // Assert + Assert.That(hash1, Is.Not.Null.And.Not.Empty, "Hash should not be empty"); + Assert.That(hash1, Is.EqualTo(hash2), "Same environment should produce same hash"); + } + + /// <summary> + /// Tests that diagnostics toggle enables trace output. + /// </summary> + [Test] + public void DiagnosticsToggle_Enable_WritesTraceEntries() + { + // Arrange + m_diagnostics.EnableDiagnostics(); + + // Act + m_diagnostics.WriteTraceEntry("TestStage", 123.45, "test context"); + m_diagnostics.Flush(); + + var content = m_diagnostics.GetTraceLogContent(); + + // Assert + Assert.That(content, Does.Contain("[RENDER]"), "Trace log should contain render entry"); + Assert.That(content, Does.Contain("TestStage"), "Trace log should contain stage name"); + Assert.That(content, Does.Contain("123.45"), "Trace log should contain duration"); + + // Cleanup + m_diagnostics.ClearTraceLog(); + } + + /// <summary> + /// Tests that multiple toggle instances do not duplicate process-wide trace output. + /// </summary> + [Test] + public void DiagnosticsToggle_MultipleInstances_DoNotDuplicateTraceEntries() + { + m_diagnostics.DisableDiagnostics(); + + var tempDirectory = Path.Combine(Path.GetTempPath(), "RenderDiagnosticsToggleTests", Guid.NewGuid().ToString("N")); + Directory.CreateDirectory(tempDirectory); + var flagsPath = Path.Combine(tempDirectory, "flags.json"); + var traceLogPath = Path.Combine(tempDirectory, "trace.log"); + + File.WriteAllText( + flagsPath, + "{\"DiagnosticsEnabled\":false,\"TraceEnabled\":false,\"CaptureMode\":\"DrawToBitmap\"}"); + + try + { + using (var diagnostics1 = new RenderDiagnosticsToggle(flagsPath, traceLogPath)) + using (var diagnostics2 = new RenderDiagnosticsToggle(flagsPath, traceLogPath)) + { + diagnostics1.EnableDiagnostics(); + diagnostics2.EnableDiagnostics(); + + diagnostics1.WriteTraceEntry("DuplicateStage", 42.0, "duplicate-test"); + diagnostics1.Flush(); + diagnostics2.Flush(); + + var content = diagnostics1.GetTraceLogContent(); + var occurrenceCount = content.Split(new[] { "Stage=DuplicateStage" }, StringSplitOptions.None).Length - 1; + + Assert.That( + occurrenceCount, + Is.EqualTo(1), + "Only one RenderBenchmark listener should receive each trace entry."); + } + } + finally + { + if (File.Exists(traceLogPath)) + { + File.Delete(traceLogPath); + } + + if (File.Exists(flagsPath)) + { + File.Delete(flagsPath); + } + + if (Directory.Exists(tempDirectory)) + { + Directory.Delete(tempDirectory); + } + } + } + + /// <summary> + /// Tests that restoring diagnostics preserves the initial enabled state across repeated restores. + /// </summary> + [Test] + public void DiagnosticsToggle_RestoreOriginalState_CanBeCalledRepeatedly() + { + // Arrange + var tempDirectory = Path.Combine(Path.GetTempPath(), "RenderDiagnosticsToggleTests", Guid.NewGuid().ToString("N")); + Directory.CreateDirectory(tempDirectory); + var flagsPath = Path.Combine(tempDirectory, "flags.json"); + var traceLogPath = Path.Combine(tempDirectory, "trace.log"); + + File.WriteAllText( + flagsPath, + "{\"DiagnosticsEnabled\":true,\"TraceEnabled\":true,\"CaptureMode\":\"DrawToBitmap\"}"); + + try + { + using (var diagnostics = new RenderDiagnosticsToggle(flagsPath, traceLogPath)) + { + // Act + diagnostics.DisableDiagnostics(); + diagnostics.RestoreOriginalState(); + diagnostics.RestoreOriginalState(); + + // Assert + Assert.That(diagnostics.DiagnosticsEnabled, Is.True, "Restore should preserve the initial enabled state"); + Assert.That(diagnostics.TraceEnabled, Is.True, "Trace output should remain enabled after repeated restore calls"); + } + } + finally + { + if (File.Exists(traceLogPath)) + { + File.Delete(traceLogPath); + } + + if (File.Exists(flagsPath)) + { + File.Delete(flagsPath); + } + + if (Directory.Exists(tempDirectory)) + { + Directory.Delete(tempDirectory); + } + } + } + + [Test] + public void RenderSnapshotVerifier_MismatchMessage_IncludesConfigAndAnalysisFiles() + { + var tempDirectory = Path.Combine(Path.GetTempPath(), "RenderSnapshotVerifierTests", Guid.NewGuid().ToString("N")); + Directory.CreateDirectory(tempDirectory); + const string snapshotName = "render-mismatch"; + string verifiedPath = Path.Combine(tempDirectory, snapshotName + ".verified.png"); + + try + { + using (var verifiedBitmap = CreateSolidBitmap(2, 2, Color.White)) + using (var actualBitmap = CreateSolidBitmap(2, 5, Color.White)) + { + verifiedBitmap.Save(verifiedPath, ImageFormat.Png); + + var result = RenderSnapshotVerifier.Verify(actualBitmap, tempDirectory, snapshotName, "mismatch-scenario"); + + Assert.That(result.Passed, Is.False, "The verifier should fail when the bitmap height drifts beyond tolerance."); + Assert.That(result.FailureMessage, Does.Contain("Saved baseline:")); + Assert.That(result.FailureMessage, Does.Contain("Current run: image=2x5")); + Assert.That(result.FailureMessage, Does.Contain("Diff composition:")); + Assert.That(File.Exists(Path.Combine(tempDirectory, snapshotName + ".received.json")), Is.True, + "Current run metadata should be written next to the received image."); + Assert.That(File.Exists(Path.Combine(tempDirectory, snapshotName + ".diff.json")), Is.True, + "Comparison analysis should be written when the snapshot differs."); + } + } + finally + { + if (Directory.Exists(tempDirectory)) + Directory.Delete(tempDirectory, true); + } + } + + [Test] + public void RenderSnapshotVerifier_UpdateBaseline_WritesVerifiedMetadata() + { + var originalUpdateValue = Environment.GetEnvironmentVariable("FW_UPDATE_RENDER_BASELINES"); + var tempDirectory = Path.Combine(Path.GetTempPath(), "RenderSnapshotVerifierTests", Guid.NewGuid().ToString("N")); + Directory.CreateDirectory(tempDirectory); + const string snapshotName = "render-refresh"; + + try + { + Environment.SetEnvironmentVariable("FW_UPDATE_RENDER_BASELINES", "1"); + + using (var actualBitmap = CreateSolidBitmap(3, 4, Color.White)) + { + var result = RenderSnapshotVerifier.Verify(actualBitmap, tempDirectory, snapshotName, "refresh-scenario"); + + Assert.That(result.Passed, Is.True, "Refreshing a baseline should leave the verifier in a passing state."); + string verifiedMetadataPath = Path.Combine(tempDirectory, snapshotName + ".verified.json"); + Assert.That(File.Exists(verifiedMetadataPath), Is.True, + "Refreshing a baseline should also persist the baseline metadata sidecar."); + string json = File.ReadAllText(verifiedMetadataPath); + Assert.That(json, Does.Contain("\"ImageWidth\": 3")); + Assert.That(json, Does.Contain("\"ImageHeight\": 4")); + Assert.That(json, Does.Contain("\"DpiAwareness\"")); + } + } + finally + { + Environment.SetEnvironmentVariable("FW_UPDATE_RENDER_BASELINES", originalUpdateValue); + if (Directory.Exists(tempDirectory)) + Directory.Delete(tempDirectory, true); + } + } + + private static Bitmap CreateSolidBitmap(int width, int height, Color color) + { + var bitmap = new Bitmap(width, height); + using (var graphics = Graphics.FromImage(bitmap)) + { + graphics.Clear(color); + } + return bitmap; + } + } +} diff --git a/Src/Common/RootSite/RootSiteTests/RenderBaselineVerifier.cs b/Src/Common/RootSite/RootSiteTests/RenderBaselineVerifier.cs new file mode 100644 index 0000000000..3adf25c125 --- /dev/null +++ b/Src/Common/RootSite/RootSiteTests/RenderBaselineVerifier.cs @@ -0,0 +1,19 @@ +using System.Drawing; +using System.Runtime.CompilerServices; +using SIL.FieldWorks.Common.RenderVerification; + +namespace SIL.FieldWorks.Common.RootSites +{ + internal static class RenderBaselineVerifier + { + internal static string GetSourceFileDirectory([CallerFilePath] string sourceFile = "") + { + return RenderSnapshotVerifier.GetSourceFileDirectory(sourceFile); + } + + internal static RenderBaselineVerificationResult Verify(Bitmap actualBitmap, string directory, string name, string scenarioId) + { + return RenderSnapshotVerifier.Verify(actualBitmap, directory, name, scenarioId); + } + } +} \ No newline at end of file diff --git a/Src/Common/RootSite/RootSiteTests/RenderBenchmarkHarness.cs b/Src/Common/RootSite/RootSiteTests/RenderBenchmarkHarness.cs new file mode 100644 index 0000000000..b063bae942 --- /dev/null +++ b/Src/Common/RootSite/RootSiteTests/RenderBenchmarkHarness.cs @@ -0,0 +1,494 @@ +// Copyright (c) 2026 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Drawing; +using System.Drawing.Imaging; +using System.IO; +using System.Windows.Forms; +using SIL.FieldWorks.Common.ViewsInterfaces; +using SIL.FieldWorks.Common.RenderVerification; +using SIL.LCModel; + +namespace SIL.FieldWorks.Common.RootSites.RenderBenchmark +{ + /// <summary> + /// Harness for rendering lexical entries offscreen and capturing timing/bitmap output. + /// Uses DummyBasicView infrastructure with Views engine rendering for pixel-perfect validation. + /// </summary> + /// <remarks> + /// Bitmap capture uses IVwDrawRootBuffered to render the RootBox directly to a GDI+ bitmap, + /// ensuring accurate capture of Views engine content including styled text, selections, and + /// complex multi-writing-system layouts. This approach bypasses WinForms DrawToBitmap which + /// doesn't work correctly for Views controls. + /// </remarks> + public class RenderBenchmarkHarness : IDisposable + { + private const int CapturePaddingPx = 4; + + private readonly LcmCache m_cache; + private readonly RenderScenario m_scenario; + private readonly RenderEnvironmentValidator m_environmentValidator; + private readonly List<TraceEvent> m_traceEvents = new List<TraceEvent>(); + private DummyBasicView m_view; + private bool m_disposed; + private double m_traceTimelineMs; + + // Cached GDI resources for offscreen layout (avoid per-call allocation). + private Bitmap m_layoutBmp; + private Graphics m_layoutGraphics; + private IntPtr m_layoutHdc; + private IVwGraphics m_layoutVwGraphics; + + /// <summary> + /// Gets the last render timing result. + /// </summary> + public RenderTimingResult LastTiming { get; private set; } + + /// <summary> + /// Gets the last captured bitmap (may be null if capture failed). + /// </summary> + public Bitmap LastCapture { get; private set; } + + /// <summary> + /// Gets a snapshot of per-stage trace events captured for this harness instance. + /// </summary> + public IReadOnlyList<TraceEvent> TraceEvents => m_traceEvents.ToArray(); + + /// <summary> + /// Gets the environment hash for the current rendering context. + /// </summary> + public string EnvironmentHash => m_environmentValidator?.GetEnvironmentHash() ?? string.Empty; + + /// <summary> + /// Initializes a new instance of the <see cref="RenderBenchmarkHarness"/> class. + /// </summary> + /// <param name="cache">The LCModel cache.</param> + /// <param name="scenario">The render scenario to execute.</param> + /// <param name="environmentValidator">Optional environment validator for deterministic checks.</param> + public RenderBenchmarkHarness(LcmCache cache, RenderScenario scenario, RenderEnvironmentValidator environmentValidator = null) + { + m_cache = cache ?? throw new ArgumentNullException(nameof(cache)); + m_scenario = scenario ?? throw new ArgumentNullException(nameof(scenario)); + m_environmentValidator = environmentValidator ?? new RenderEnvironmentValidator(); + } + + /// <summary> + /// Executes a cold render (first render after view creation). + /// </summary> + /// <param name="width">View width in pixels.</param> + /// <param name="height">View height in pixels.</param> + /// <returns>The timing result for the cold render.</returns> + public RenderTimingResult ExecuteColdRender(int width = 800, int height = 600) + { + ResetTraceEvents(); + DisposeView(); + + var stopwatch = Stopwatch.StartNew(); + + m_view = MeasureStage( + "CreateView", + () => CreateView(width, height), + new Dictionary<string, string> { { "phase", "cold" } }); + + MeasureStage( + "MakeRoot", + () => m_view.MakeRoot(m_scenario.RootObjectHvo, m_scenario.RootFlid, m_scenario.FragmentId), + new Dictionary<string, string> { { "phase", "cold" } }); + + MeasureStage( + "PerformOffscreenLayout", + () => PerformOffscreenLayout(width, height), + new Dictionary<string, string> { { "phase", "cold" } }); + + if (EnsureViewSizedToContent(width, height)) + { + MeasureStage( + "PerformOffscreenLayout", + () => PerformOffscreenLayout(width, m_view.Height), + new Dictionary<string, string> { { "phase", "cold-resized" } }); + } + + if (m_view.RootBox != null && (m_view.RootBox.Width <= 0 || m_view.RootBox.Height <= 0)) + { + throw new InvalidOperationException($"[RenderBenchmarkHarness] RootBox dimensions are zero/negative after layout ({m_view.RootBox.Width}x{m_view.RootBox.Height}). View Size: {m_view.Width}x{m_view.Height}. Capture will be empty."); + } + + stopwatch.Stop(); + + LastTiming = new RenderTimingResult + { + ScenarioId = m_scenario.Id, + IsColdRender = true, + DurationMs = stopwatch.Elapsed.TotalMilliseconds, + Timestamp = DateTime.UtcNow + }; + + return LastTiming; + } + + /// <summary> + /// Executes a warm render (subsequent render with existing view/cache). + /// </summary> + /// <returns>The timing result for the warm render.</returns> + public RenderTimingResult ExecuteWarmRender() + { + if (m_view == null) + { + throw new InvalidOperationException("Must call ExecuteColdRender before ExecuteWarmRender."); + } + + var stopwatch = Stopwatch.StartNew(); + + // Force a full relayout to simulate warm render + MeasureStage( + "Reconstruct", + () => m_view.RootBox?.Reconstruct(), + new Dictionary<string, string> { { "phase", "warm" } }); + + MeasureStage( + "PerformOffscreenLayout", + () => PerformOffscreenLayout(m_view.Width, m_view.Height), + new Dictionary<string, string> { { "phase", "warm" } }); + + if (EnsureViewSizedToContent(m_view.Width, m_view.Height)) + { + MeasureStage( + "PerformOffscreenLayout", + () => PerformOffscreenLayout(m_view.Width, m_view.Height), + new Dictionary<string, string> { { "phase", "warm-resized" } }); + } + + stopwatch.Stop(); + + LastTiming = new RenderTimingResult + { + ScenarioId = m_scenario.Id, + IsColdRender = false, + DurationMs = stopwatch.Elapsed.TotalMilliseconds, + Timestamp = DateTime.UtcNow + }; + + return LastTiming; + } + + /// <summary> + /// Performs layout using an offscreen graphics context matching the target bitmap format. + /// This prevents dependency on the Control's window handle or screen DC. + /// </summary> + private void PerformOffscreenLayout(int width, int height) + { + if (m_view?.RootBox == null) return; + + // Use the same width the site reports to Reconstruct, so the + // PATH-L1 layout guard can detect truly redundant calls. + int layoutWidth = m_view.GetAvailWidth(m_view.RootBox); + + // PATH-L4: Cache the offscreen GDI resources across calls to + // eliminate ~27ms per-call Bitmap/Graphics/HDC allocation overhead. + // Layout itself takes <0.1ms when the PATH-L1 guard fires. + if (m_layoutBmp == null || m_layoutBmp.Width != width || m_layoutBmp.Height != height) + { + DisposeLayoutResources(); + m_layoutBmp = new Bitmap(width, height, PixelFormat.Format32bppArgb); + m_layoutGraphics = Graphics.FromImage(m_layoutBmp); + m_layoutHdc = m_layoutGraphics.GetHdc(); + m_layoutVwGraphics = VwGraphicsWin32Class.Create(); + ((IVwGraphicsWin32)m_layoutVwGraphics).Initialize(m_layoutHdc); + } + + m_view.RootBox.Layout(m_layoutVwGraphics, layoutWidth); + } + + private bool EnsureViewSizedToContent(int width, int minimumHeight) + { + if (m_view?.RootBox == null) + return false; + + int requiredHeight = Math.Max(minimumHeight, m_view.RootBox.Height + CapturePaddingPx); + if (requiredHeight <= 0 || requiredHeight == m_view.Height) + return false; + + ResizeHostedView(width, requiredHeight); + return true; + } + + private void ResizeHostedView(int width, int height) + { + if (m_view == null) + return; + + var newSize = new Size(width, height); + m_view.Size = newSize; + + if (m_view.Parent is Form form) + form.ClientSize = newSize; + } + + /// <summary> + /// Captures the current view as a bitmap using the Views engine's rendering. + /// </summary> + /// <remarks> + /// Uses IVwDrawRootBuffered to render the RootBox directly to a bitmap, + /// bypassing DrawToBitmap which doesn't work correctly for Views controls. + /// </remarks> + /// <returns>The captured bitmap, or null if capture failed.</returns> + public Bitmap CaptureViewBitmap() + { + if (m_view == null) + { + throw new InvalidOperationException("No view available. Call ExecuteColdRender first."); + } + + if (m_view.RootBox == null) + { + throw new InvalidOperationException("RootBox not initialized. MakeRoot may have failed."); + } + + try + { + var width = m_view.Width; + var height = m_view.Height; + + Bitmap bitmap = null; + MeasureStage( + "PrepareToDraw", + () => bitmap = new Bitmap(width, height, PixelFormat.Format32bppArgb), + new Dictionary<string, string> { { "phase", "capture" } }); + + // Create bitmap and get its Graphics/HDC + using (var graphics = Graphics.FromImage(bitmap)) + { + // Fill with white background first + graphics.Clear(Color.White); + + MeasureStage( + "DrawTheRoot", + () => + { + IntPtr hdc = graphics.GetHdc(); + try + { + var vdrb = new SIL.FieldWorks.Views.VwDrawRootBuffered(); + var clientRect = new Rect(0, 0, width, height); + const uint whiteColor = 0x00FFFFFF; + vdrb.DrawTheRoot(m_view.RootBox, hdc, clientRect, whiteColor, true, m_view); + } + finally + { + graphics.ReleaseHdc(hdc); + } + }, + new Dictionary<string, string> { { "phase", "capture" } }); + } + + LastCapture = bitmap; + return bitmap; + } + catch (Exception ex) + { + Trace.TraceWarning($"[RenderBenchmarkHarness] View capture failed: {ex.Message}"); + return null; + } + } + + private void ResetTraceEvents() + { + m_traceEvents.Clear(); + m_traceTimelineMs = 0; + } + + private void MeasureStage(string stage, Action action, Dictionary<string, string> context = null) + { + var stopwatch = Stopwatch.StartNew(); + action(); + stopwatch.Stop(); + RecordStage(stage, stopwatch.Elapsed.TotalMilliseconds, context); + } + + private T MeasureStage<T>(string stage, Func<T> func, Dictionary<string, string> context = null) + { + var stopwatch = Stopwatch.StartNew(); + T result = func(); + stopwatch.Stop(); + RecordStage(stage, stopwatch.Elapsed.TotalMilliseconds, context); + return result; + } + + private void RecordStage(string stage, double durationMs, Dictionary<string, string> context) + { + m_traceEvents.Add(new TraceEvent + { + Stage = stage, + StartTimeMs = m_traceTimelineMs, + DurationMs = durationMs, + Context = context + }); + m_traceTimelineMs += durationMs; + } + + /// <summary> + /// Saves the last captured bitmap to the specified path. + /// </summary> + /// <param name="outputPath">The file path to save the bitmap.</param> + /// <param name="format">The image format (default: PNG).</param> + public void SaveCapture(string outputPath, ImageFormat format = null) + { + if (LastCapture == null) + { + throw new InvalidOperationException("No capture available. Call CaptureViewBitmap first."); + } + + var directory = Path.GetDirectoryName(outputPath); + if (!string.IsNullOrEmpty(directory) && !Directory.Exists(directory)) + { + Directory.CreateDirectory(directory); + } + + LastCapture.Save(outputPath, format ?? ImageFormat.Png); + } + + /// <summary> + /// Validates that the current environment matches the expected deterministic settings. + /// </summary> + /// <param name="expectedHash">The expected environment hash.</param> + /// <returns>True if the environment matches; otherwise, false.</returns> + public bool ValidateEnvironment(string expectedHash) + { + return m_environmentValidator.Validate(expectedHash); + } + + private DummyBasicView CreateView(int width, int height) + { + // Host in a Form to ensure valid layout context (handle, client rect, etc.) + var form = new Form + { + FormBorderStyle = FormBorderStyle.None, + ShowInTaskbar = false, + ClientSize = new Size(width, height) + }; + + DummyBasicView view; + + switch (m_scenario.ViewType) + { + case RenderViewType.LexEntry: + view = CreateLexEntryView(width, height); + break; + + default: // Scripture + view = CreateScriptureView(width, height); + break; + } + + // Ensure styles are available (both StVc and LexEntryVc rely on stylesheet) + var ss = new SIL.LCModel.DomainServices.LcmStyleSheet(); + ss.Init(m_cache, m_cache.LangProject.Hvo, SIL.LCModel.LangProjectTags.kflidStyles); + view.StyleSheet = ss; + + form.Controls.Add(view); + form.CreateControl(); // Creates form handle and children handles + + // Force handle creation if not yet created (critical for DoLayout) + if (!view.IsHandleCreated) + { + var h = view.Handle; + } + if (!view.IsHandleCreated) + throw new InvalidOperationException("View handle failed to create."); + + return view; + } + + private DummyBasicView CreateScriptureView(int width, int height) + { + var view = new GenericScriptureView(m_scenario.RootObjectHvo, m_scenario.RootFlid) + { + Cache = m_cache, + Visible = true, + Dock = DockStyle.None, + Location = Point.Empty, + Size = new Size(width, height) + }; + view.RootFragmentId = m_scenario.FragmentId; + return view; + } + + private DummyBasicView CreateLexEntryView(int width, int height) + { + var view = new GenericLexEntryView(m_scenario.RootObjectHvo, m_scenario.RootFlid) + { + Cache = m_cache, + Visible = true, + Dock = DockStyle.None, + Location = Point.Empty, + Size = new Size(width, height), + SimulateIfDataDoubleRender = m_scenario.SimulateIfDataDoubleRender + }; + view.RootFragmentId = LexEntryVc.kFragEntry; + return view; + } + + private void DisposeView() + { + DisposeLayoutResources(); + if (m_view != null) + { + var form = m_view.Parent as Form; + m_view.Dispose(); + m_view = null; + form?.Dispose(); + } + } + + private void DisposeLayoutResources() + { + if (m_layoutVwGraphics != null) + { + m_layoutVwGraphics.ReleaseDC(); + m_layoutVwGraphics = null; + } + if (m_layoutHdc != IntPtr.Zero && m_layoutGraphics != null) + { + m_layoutGraphics.ReleaseHdc(m_layoutHdc); + m_layoutHdc = IntPtr.Zero; + } + m_layoutGraphics?.Dispose(); + m_layoutGraphics = null; + m_layoutBmp?.Dispose(); + m_layoutBmp = null; + } + + /// <summary> + /// Releases all resources used by the harness. + /// </summary> + public void Dispose() + { + Dispose(true); + GC.SuppressFinalize(this); + } + + /// <summary> + /// Releases the unmanaged resources and optionally releases the managed resources. + /// </summary> + /// <param name="disposing">True to release both managed and unmanaged resources.</param> + protected virtual void Dispose(bool disposing) + { + if (m_disposed) + return; + + if (disposing) + { + DisposeLayoutResources(); + DisposeView(); + LastCapture?.Dispose(); + LastCapture = null; + } + + m_disposed = true; + } + } +} diff --git a/Src/Common/RootSite/RootSiteTests/RenderBenchmarkTestsBase.cs b/Src/Common/RootSite/RootSiteTests/RenderBenchmarkTestsBase.cs new file mode 100644 index 0000000000..5a6659ceff --- /dev/null +++ b/Src/Common/RootSite/RootSiteTests/RenderBenchmarkTestsBase.cs @@ -0,0 +1,1024 @@ +using System; +using System.Drawing; +using System.IO; +using System.Linq; +using NUnit.Framework; +using SIL.LCModel; +using SIL.LCModel.Core.KernelInterfaces; +using SIL.LCModel.Core.Scripture; +using SIL.LCModel.Core.Text; +using SIL.LCModel.Core.WritingSystems; +using SIL.LCModel.Infrastructure; +using SIL.FieldWorks.Common.RootSites.RootSiteTests; +using SIL.FieldWorks.Common.RenderVerification; +using SIL.LCModel.DomainServices; +using SIL.LCModel.Utils; +using SIL.WritingSystems; + +namespace SIL.FieldWorks.Common.RootSites.RenderBenchmark +{ + /// <summary> + /// Base class for benchmark tests, handling data generation for scenarios using Real Data. + /// Creates Scripture styles in the DB and produces rich test data with chapter/verse markers, + /// section headings, and diverse paragraph styles so StVc renders formatted output. + /// </summary> + public abstract class RenderBenchmarkTestsBase : RealDataTestsBase + { + protected const string DeterministicRenderFontFamily = "Segoe UI"; + protected ILgWritingSystemFactory m_wsf; + protected int m_wsEng; + protected int m_wsAr; // Arabic (RTL) + protected int m_wsFr; // French (second analysis WS) + protected int m_hvoRoot; + protected int m_flidContainingTexts; + protected int m_frag = 100; // Default to Book View (100) + + [SetUp] + public override void TestSetup() + { + base.TestSetup(); // Creates Cache and DB and calls InitializeProjectData/CreateTestData + m_flidContainingTexts = ScrBookTags.kflidFootnotes; // Default, can be overridden + } + + protected override void InitializeProjectData() + { + m_wsf = Cache.WritingSystemFactory; + m_wsEng = m_wsf.GetWsFromStr("en"); + if (m_wsEng == 0) throw new Exception("English WS not found"); + + // Create Arabic (RTL) writing system for bidirectional layout tests + CoreWritingSystemDefinition arabic; + Cache.ServiceLocator.WritingSystemManager.GetOrSet("ar", out arabic); + arabic.RightToLeftScript = true; + Cache.ServiceLocator.WritingSystems.VernacularWritingSystems.Add(arabic); + Cache.ServiceLocator.WritingSystems.CurrentVernacularWritingSystems.Add(arabic); + m_wsAr = arabic.Handle; + + // Create French writing system for multi-WS tests + CoreWritingSystemDefinition french; + Cache.ServiceLocator.WritingSystemManager.GetOrSet("fr", out french); + Cache.ServiceLocator.WritingSystems.AnalysisWritingSystems.Add(french); + Cache.ServiceLocator.WritingSystems.CurrentAnalysisWritingSystems.Add(french); + m_wsFr = french.Handle; + + NormalizeDeterministicWritingSystemFonts(arabic, french); + + // Ensure Scripture exists in the real project + if (Cache.LangProject.TranslatedScriptureOA == null) + { + var scriptureFactory = Cache.ServiceLocator.GetInstance<IScriptureFactory>(); + var script = scriptureFactory.Create(); + script.Versification = ScrVers.English; + Cache.LangProject.TranslatedScriptureOA = script; + } + + // Populate the DB with Scripture styles so the stylesheet can resolve them + CreateScriptureStyles(); + } + + private void NormalizeDeterministicWritingSystemFonts(params CoreWritingSystemDefinition[] additionalWritingSystems) + { + var writingSystems = new[] + { + Cache.ServiceLocator.WritingSystems.DefaultVernacularWritingSystem, + Cache.ServiceLocator.WritingSystems.DefaultAnalysisWritingSystem + } + .Concat(Cache.ServiceLocator.WritingSystems.CurrentVernacularWritingSystems) + .Concat(Cache.ServiceLocator.WritingSystems.CurrentAnalysisWritingSystems) + .Concat(additionalWritingSystems) + .Where(ws => ws != null) + .GroupBy(ws => ws.Handle) + .Select(group => group.First()); + + foreach (var writingSystem in writingSystems) + { + writingSystem.DefaultFont = new FontDefinition(DeterministicRenderFontFamily); + writingSystem.IsGraphiteEnabled = false; + } + } + + #region Scripture Style Creation + + /// <summary> + /// Creates the essential Scripture paragraph and character styles in the DB. + /// These mirror definitions from FlexStyles.xml and are required by StVc to + /// produce formatted output (bold headings, superscript verse numbers, etc.). + /// Without these, the Views engine falls back to plain black text. + /// </summary> + private void CreateScriptureStyles() + { + var styleFactory = Cache.ServiceLocator.GetInstance<IStStyleFactory>(); + var styles = Cache.LangProject.StylesOC; + + // Find or create the base Normal style (may already exist from template) + IStStyle normalStyle = FindStyle(ScrStyleNames.Normal); + if (normalStyle == null) + { + normalStyle = styleFactory.Create(styles, ScrStyleNames.Normal, + ContextValues.Internal, StructureValues.Undefined, FunctionValues.Prose, + false, 0, true); + var normalBldr = TsStringUtils.MakePropsBldr(); + normalBldr.SetIntPropValues((int)FwTextPropType.ktptFontSize, + (int)FwTextPropVar.ktpvMilliPoint, 10000); // 10pt + normalBldr.SetStrPropValue((int)FwTextPropType.ktptFontFamily, DeterministicRenderFontFamily); + normalStyle.Rules = normalBldr.GetTextProps(); + } + + // "Paragraph" - the main Scripture prose style (first-line indent 12pt) + CreateParagraphStyle(styleFactory, styles, normalStyle); + + // "Section Head" - bold, centered, 9pt + CreateSectionHeadStyle(styleFactory, styles, normalStyle); + + // "Chapter Number" - large drop-cap character style + CreateChapterNumberStyle(styleFactory, styles); + + // "Verse Number" - superscript character style + CreateVerseNumberStyle(styleFactory, styles); + + // "Title Main" - large bold centered style + CreateTitleMainStyle(styleFactory, styles, normalStyle); + } + + private void CreateParagraphStyle(IStStyleFactory factory, ILcmOwningCollection<IStStyle> styles, IStStyle basedOn) + { + if (FindStyle(ScrStyleNames.NormalParagraph) != null) return; + + var style = factory.Create(styles, ScrStyleNames.NormalParagraph, + ContextValues.Text, StructureValues.Body, FunctionValues.Prose, + false, 0, true); + style.BasedOnRA = basedOn; + style.NextRA = style; // next is self + + var bldr = TsStringUtils.MakePropsBldr(); + bldr.SetIntPropValues((int)FwTextPropType.ktptFirstIndent, + (int)FwTextPropVar.ktpvMilliPoint, 12000); // 12pt first line indent + style.Rules = bldr.GetTextProps(); + } + + private void CreateSectionHeadStyle(IStStyleFactory factory, ILcmOwningCollection<IStStyle> styles, IStStyle basedOn) + { + if (FindStyle(ScrStyleNames.SectionHead) != null) return; + + var style = factory.Create(styles, ScrStyleNames.SectionHead, + ContextValues.Text, StructureValues.Heading, FunctionValues.Prose, + false, 0, true); + style.BasedOnRA = basedOn; + + var bldr = TsStringUtils.MakePropsBldr(); + bldr.SetIntPropValues((int)FwTextPropType.ktptBold, + (int)FwTextPropVar.ktpvEnum, (int)FwTextToggleVal.kttvForceOn); + bldr.SetIntPropValues((int)FwTextPropType.ktptFontSize, + (int)FwTextPropVar.ktpvMilliPoint, 12000); // 12pt bold + bldr.SetIntPropValues((int)FwTextPropType.ktptAlign, + (int)FwTextPropVar.ktpvEnum, (int)FwTextAlign.ktalCenter); + bldr.SetIntPropValues((int)FwTextPropType.ktptSpaceBefore, + (int)FwTextPropVar.ktpvMilliPoint, 8000); // 8pt space before + bldr.SetIntPropValues((int)FwTextPropType.ktptSpaceAfter, + (int)FwTextPropVar.ktpvMilliPoint, 4000); // 4pt space after + bldr.SetIntPropValues((int)FwTextPropType.ktptForeColor, + (int)FwTextPropVar.ktpvDefault, (int)ColorUtil.ConvertColorToBGR(Color.FromArgb(0, 51, 102))); // dark blue + style.Rules = bldr.GetTextProps(); + } + + private void CreateChapterNumberStyle(IStStyleFactory factory, ILcmOwningCollection<IStStyle> styles) + { + if (FindStyle(ScrStyleNames.ChapterNumber) != null) return; + + var style = factory.Create(styles, ScrStyleNames.ChapterNumber, + ContextValues.Text, StructureValues.Body, FunctionValues.Chapter, + true, 0, true); // isCharStyle = true + + var bldr = TsStringUtils.MakePropsBldr(); + bldr.SetIntPropValues((int)FwTextPropType.ktptBold, + (int)FwTextPropVar.ktpvEnum, (int)FwTextToggleVal.kttvForceOn); + bldr.SetIntPropValues((int)FwTextPropType.ktptFontSize, + (int)FwTextPropVar.ktpvMilliPoint, 24000); // 24pt large chapter number + bldr.SetIntPropValues((int)FwTextPropType.ktptForeColor, + (int)FwTextPropVar.ktpvDefault, (int)ColorUtil.ConvertColorToBGR(Color.FromArgb(128, 0, 0))); // dark red + style.Rules = bldr.GetTextProps(); + } + + private void CreateVerseNumberStyle(IStStyleFactory factory, ILcmOwningCollection<IStStyle> styles) + { + if (FindStyle(ScrStyleNames.VerseNumber) != null) return; + + var style = factory.Create(styles, ScrStyleNames.VerseNumber, + ContextValues.Text, StructureValues.Body, FunctionValues.Verse, + true, 0, true); // isCharStyle = true + + var bldr = TsStringUtils.MakePropsBldr(); + bldr.SetIntPropValues((int)FwTextPropType.ktptSuperscript, + (int)FwTextPropVar.ktpvEnum, (int)FwSuperscriptVal.kssvSuper); + bldr.SetIntPropValues((int)FwTextPropType.ktptBold, + (int)FwTextPropVar.ktpvEnum, (int)FwTextToggleVal.kttvForceOn); + bldr.SetIntPropValues((int)FwTextPropType.ktptForeColor, + (int)FwTextPropVar.ktpvDefault, (int)ColorUtil.ConvertColorToBGR(Color.FromArgb(0, 102, 0))); // dark green + style.Rules = bldr.GetTextProps(); + } + + private void CreateTitleMainStyle(IStStyleFactory factory, ILcmOwningCollection<IStStyle> styles, IStStyle basedOn) + { + if (FindStyle(ScrStyleNames.MainBookTitle) != null) return; + + var style = factory.Create(styles, ScrStyleNames.MainBookTitle, + ContextValues.Title, StructureValues.Body, FunctionValues.Prose, + false, 0, true); + style.BasedOnRA = basedOn; + + var bldr = TsStringUtils.MakePropsBldr(); + bldr.SetIntPropValues((int)FwTextPropType.ktptBold, + (int)FwTextPropVar.ktpvEnum, (int)FwTextToggleVal.kttvForceOn); + bldr.SetIntPropValues((int)FwTextPropType.ktptFontSize, + (int)FwTextPropVar.ktpvMilliPoint, 20000); // 20pt + bldr.SetIntPropValues((int)FwTextPropType.ktptAlign, + (int)FwTextPropVar.ktpvEnum, (int)FwTextAlign.ktalCenter); + bldr.SetIntPropValues((int)FwTextPropType.ktptSpaceBefore, + (int)FwTextPropVar.ktpvMilliPoint, 36000); // 36pt space before + bldr.SetIntPropValues((int)FwTextPropType.ktptSpaceAfter, + (int)FwTextPropVar.ktpvMilliPoint, 12000); // 12pt space after + bldr.SetIntPropValues((int)FwTextPropType.ktptForeColor, + (int)FwTextPropVar.ktpvDefault, (int)ColorUtil.ConvertColorToBGR(Color.FromArgb(0, 0, 128))); // navy blue + style.Rules = bldr.GetTextProps(); + } + + private IStStyle FindStyle(string name) + { + foreach (var s in Cache.LangProject.StylesOC) + { + if (s.Name == name) return s; + } + return null; + } + + #endregion + + protected override void CreateTestData() + { + // Individual tests call SetupScenarioData + } + + protected void SetupScenarioData(string scenarioId) + { + m_frag = 100; + m_flidContainingTexts = ScrBookTags.kflidFootnotes; + + switch (scenarioId) + { + case "simple": + case "simple-test": + CreateSimpleScenario(); + break; + case "medium": + CreateMediumScenario(); + break; + case "complex": + CreateComplexScenario(); + break; + case "deep-nested": + CreateDeepNestedScenario(); + break; + case "custom-heavy": + CreateCustomHeavyScenario(); + break; + case "many-paragraphs": + CreateManyParagraphsScenario(); + break; + case "footnote-heavy": + CreateFootnoteHeavyScenario(); + break; + case "mixed-styles": + CreateMixedStylesScenario(); + break; + case "long-prose": + CreateLongProseScenario(); + break; + case "multi-book": + CreateMultiBookScenario(); + break; + case "rtl-script": + CreateRtlScriptScenario(); + break; + case "multi-ws": + CreateMultiWsScenario(); + break; + case "lex-shallow": + CreateLexEntryScenario(depth: 2, breadth: 3); + break; + case "lex-deep": + CreateLexEntryScenario(depth: 4, breadth: 2); + break; + case "lex-extreme": + CreateLexEntryScenario(depth: 6, breadth: 2); + break; + default: + CreateSimpleScenario(); + break; + } + } + + protected RenderScenario CreateConfiguredScenario(string scenarioId) + { + var scenarioConfig = RenderScenarioDataBuilder.LoadFromFile() + .FirstOrDefault(s => s.Id == scenarioId); + + return new RenderScenario + { + Id = scenarioId, + Description = scenarioConfig?.Description ?? $"Render scenario for {scenarioId}", + Tags = scenarioConfig?.Tags, + RootObjectHvo = m_hvoRoot, + RootFlid = m_flidContainingTexts, + FragmentId = m_frag, + ViewType = scenarioConfig?.ViewType ?? RenderViewType.Scripture, + SimulateIfDataDoubleRender = scenarioConfig?.SimulateIfDataDoubleRender ?? false + }; + } + + internal RootSiteScenarioExecutionResult ExecuteScenarioAndCapture( + string scenarioId, + bool includeWarmRender, + RenderEnvironmentValidator environmentValidator = null, + int width = 800, + int height = 600) + { + RenderScenario scenario; + using (var uow = new UndoableUnitOfWorkHelper(Cache.ActionHandlerAccessor, + "Setup Scenario", "Undo Setup Scenario")) + { + SetupScenarioData(scenarioId); + scenario = CreateConfiguredScenario(scenarioId); + uow.RollBack = false; + } + + using (var harness = new RenderBenchmarkHarness(Cache, scenario, environmentValidator)) + { + var coldTiming = harness.ExecuteColdRender(width, height); + + using (var bitmap = harness.CaptureViewBitmap()) + { + if (bitmap == null) + throw new InvalidOperationException($"Failed to capture render bitmap for scenario '{scenarioId}'."); + + string directory = global::SIL.FieldWorks.Common.RootSites.RenderBaselineVerifier.GetSourceFileDirectory(); + string snapshotName = $"RenderVerifyTests.VerifyScenario_{scenarioId}"; + var verification = global::SIL.FieldWorks.Common.RootSites.RenderBaselineVerifier.Verify( + bitmap, + directory, + snapshotName, + scenarioId); + + var warmTiming = includeWarmRender ? harness.ExecuteWarmRender() : null; + + return new RootSiteScenarioExecutionResult + { + Scenario = scenario, + ColdTiming = coldTiming, + WarmTiming = warmTiming, + Verification = verification, + CaptureWidth = bitmap.Width, + CaptureHeight = bitmap.Height, + TraceEvents = harness.TraceEvents.ToList() + }; + } + } + } + + protected static string[] GetConfiguredScenarioIds(params string[] fallbackScenarioIds) + { + try + { + var scenarios = RenderScenarioDataBuilder.LoadFromFile(); + if (scenarios.Count > 0) + return scenarios.Select(s => s.Id).ToArray(); + } + catch (Exception ex) + { + TestContext.Error.WriteLine($"Error discovering scenarios: {ex.Message}"); + } + + return fallbackScenarioIds; + } + + private void CreateSimpleScenario() + { + var book = CreateBook(1); // GEN + m_hvoRoot = book.Hvo; + AddRichSections(book, 3, versesPerSection: 4, chapterStart: 1); + } + + private void CreateMediumScenario() + { + var book = CreateBook(2); // EXO + m_hvoRoot = book.Hvo; + AddRichSections(book, 5, versesPerSection: 6, chapterStart: 1); + } + + private void CreateComplexScenario() + { + var book = CreateBook(3); // LEV + m_hvoRoot = book.Hvo; + AddRichSections(book, 10, versesPerSection: 8, chapterStart: 1); + } + + private void CreateDeepNestedScenario() + { + var book = CreateBook(4); // NUM + m_hvoRoot = book.Hvo; + AddRichSections(book, 3, versesPerSection: 12, chapterStart: 1); + } + + private void CreateCustomHeavyScenario() + { + var book = CreateBook(5); // DEU + m_hvoRoot = book.Hvo; + AddRichSections(book, 5, versesPerSection: 8, chapterStart: 1); + } + + /// <summary> + /// Stress: 50 sections, each with a single verse — forces massive paragraph layout overhead. + /// </summary> + private void CreateManyParagraphsScenario() + { + var book = CreateBook(6); // JOS + m_hvoRoot = book.Hvo; + AddRichSections(book, 50, versesPerSection: 1, chapterStart: 1); + } + + /// <summary> + /// Stress: 8 sections each containing 20 verses plus footnotes on every other verse. + /// Forces footnote callers and footnote paragraph creation en masse. + /// </summary> + private void CreateFootnoteHeavyScenario() + { + var book = CreateBook(7); // JDG + m_hvoRoot = book.Hvo; + AddRichSectionsWithFootnotes(book, 8, versesPerSection: 20, chapterStart: 1); + } + + /// <summary> + /// Stress: Every verse run uses a different character style combination. + /// Forces the style resolver to compute many distinct property sets. + /// </summary> + private void CreateMixedStylesScenario() + { + var book = CreateBook(8); // RUT + m_hvoRoot = book.Hvo; + AddMixedStyleSections(book, 6, versesPerSection: 15, chapterStart: 1); + } + + /// <summary> + /// Stress: 4 sections, each with a single paragraph containing 80 verses — very long + /// unbroken paragraph that forces extensive line-breaking and layout computation. + /// </summary> + private void CreateLongProseScenario() + { + var book = CreateBook(9); // 1SA + m_hvoRoot = book.Hvo; + AddRichSections(book, 4, versesPerSection: 80, chapterStart: 1); + } + + /// <summary> + /// Stress: Creates 3 separate books with sections each, then sets root to the + /// first book. Verifies the rendering engine handles large Scripture caches. + /// </summary> + private void CreateMultiBookScenario() + { + var book1 = CreateBook(10); // 2SA + AddRichSections(book1, 5, versesPerSection: 10, chapterStart: 1); + + var book2 = CreateBook(11); // 1KI + AddRichSections(book2, 5, versesPerSection: 10, chapterStart: 1); + + var book3 = CreateBook(12); // 2KI + AddRichSections(book3, 5, versesPerSection: 10, chapterStart: 1); + + m_hvoRoot = book1.Hvo; // render the first; the others stress the backing store + } + + /// <summary> + /// Stress: Creates sections where all prose text is in Arabic (RTL), exercising + /// bidirectional layout, Uniscribe/Graphite RTL shaping, and right-aligned paragraphs. + /// Section headings remain English to force bidi mixing within the view. + /// </summary> + private void CreateRtlScriptScenario() + { + var book = CreateBook(13); // 1CH + m_hvoRoot = book.Hvo; + AddRtlSections(book, 4, versesPerSection: 10, chapterStart: 1); + } + + /// <summary> + /// Stress: Creates sections that alternate between English, Arabic, and French runs + /// within the same paragraph, forcing the rendering engine to handle font fallback, + /// writing-system switching, and mixed bidi text. + /// </summary> + private void CreateMultiWsScenario() + { + var book = CreateBook(14); // 2CH + m_hvoRoot = book.Hvo; + AddMultiWsSections(book, 5, versesPerSection: 8, chapterStart: 1); + } + + #region Rich Data Factories + + protected IScrBook CreateBook(int bookNum) + { + var bookFactory = Cache.ServiceLocator.GetInstance<IScrBookFactory>(); + return bookFactory.Create(bookNum); + } + + /// <summary> + /// Creates sections with formatted section headings (bold centered "Section Head" style), + /// chapter numbers (large bold red), verse numbers (superscript bold green), and body + /// text (indented "Paragraph" style). This produces richly styled output from StVc. + /// </summary> + protected void AddRichSections(IScrBook book, int sectionCount, int versesPerSection, int chapterStart) + { + var sectionFactory = Cache.ServiceLocator.GetInstance<IScrSectionFactory>(); + var stTextFactory = Cache.ServiceLocator.GetInstance<IStTextFactory>(); + int chapter = chapterStart; + + // Sample prose fragments for realistic text variety + string[] proseFragments = new[] + { + "In the beginning God created the heavens and the earth. ", + "The earth was formless and empty, darkness was over the surface of the deep. ", + "And God said, Let there be light, and there was light. ", + "God saw that the light was good, and he separated the light from the darkness. ", + "God called the light day, and the darkness he called night. ", + "And there was evening, and there was morning, the first day. ", + "Then God said, Let there be a vault between the waters to separate water. ", + "So God made the vault and separated the water under the vault from the water above it. ", + "God called the vault sky. And there was evening, and there was morning, the second day. ", + "And God said, Let the water under the sky be gathered to one place, and let dry ground appear. ", + "God called the dry ground land, and the gathered waters he called seas. And God saw that it was good. ", + "Then God said, Let the land produce vegetation: seed bearing plants and trees on the land. ", + }; + + for (int s = 0; s < sectionCount; s++) + { + var section = sectionFactory.Create(); + book.SectionsOS.Add(section); + + // Create heading StText and add a heading paragraph + section.HeadingOA = stTextFactory.Create(); + var headingBldr = new StTxtParaBldr(Cache) + { + ParaStyleName = ScrStyleNames.SectionHead + }; + string headingText = $"Section {s + 1}: The Account of Day {s + 1}"; + headingBldr.AppendRun(headingText, StyleUtils.CharStyleTextProps(null, m_wsEng)); + headingBldr.CreateParagraph(section.HeadingOA); + + // Create content StText and add body paragraphs with chapter/verse + section.ContentOA = stTextFactory.Create(); + + var paraBldr = new StTxtParaBldr(Cache) + { + ParaStyleName = ScrStyleNames.NormalParagraph + }; + + // First section gets a chapter number + if (s == 0 || s % 3 == 0) + { + paraBldr.AppendRun(chapter.ToString(), + StyleUtils.CharStyleTextProps(ScrStyleNames.ChapterNumber, m_wsEng)); + chapter++; + } + + // Add verses with prose text + for (int v = 1; v <= versesPerSection; v++) + { + // Verse number run + paraBldr.AppendRun(v.ToString() + "\u00A0", + StyleUtils.CharStyleTextProps(ScrStyleNames.VerseNumber, m_wsEng)); + + // Prose text run (cycle through fragments for variety) + string prose = proseFragments[(s * versesPerSection + v) % proseFragments.Length]; + paraBldr.AppendRun(prose, StyleUtils.CharStyleTextProps(null, m_wsEng)); + } + + paraBldr.CreateParagraph(section.ContentOA); + } + } + + /// <summary> + /// Creates sections with footnotes on every other verse, stressing the footnote + /// rendering path (caller markers, footnote paragraph boxes, and layout). + /// </summary> + protected void AddRichSectionsWithFootnotes(IScrBook book, int sectionCount, + int versesPerSection, int chapterStart) + { + var sectionFactory = Cache.ServiceLocator.GetInstance<IScrSectionFactory>(); + var stTextFactory = Cache.ServiceLocator.GetInstance<IStTextFactory>(); + var footnoteFactory = Cache.ServiceLocator.GetInstance<IScrFootnoteFactory>(); + int chapter = chapterStart; + + string[] proseFragments = new[] + { + "The Lord is my shepherd, I lack nothing. He makes me lie down in green pastures. ", + "He leads me beside quiet waters, he refreshes my soul. He guides me along right paths. ", + "Even though I walk through the darkest valley, I will fear no evil, for you are with me. ", + "Your rod and your staff, they comfort me. You prepare a table before me. ", + "You anoint my head with oil; my cup overflows. Surely your goodness and love will follow me. ", + "And I will dwell in the house of the Lord forever. Hear my cry for mercy as I call to you. ", + }; + + string[] footnoteTexts = new[] + { + "Or righteousness; Hb. tsedeq", + "Some manuscripts add for his name's sake", + "Lit. in the valley of deep darkness", + "Gk. adds in the presence of my enemies", + }; + + for (int s = 0; s < sectionCount; s++) + { + var section = sectionFactory.Create(); + book.SectionsOS.Add(section); + + section.HeadingOA = stTextFactory.Create(); + var headingBldr = new StTxtParaBldr(Cache) { ParaStyleName = ScrStyleNames.SectionHead }; + headingBldr.AppendRun($"Psalm {s + 1}: A Song of Ascents", + StyleUtils.CharStyleTextProps(null, m_wsEng)); + headingBldr.CreateParagraph(section.HeadingOA); + + section.ContentOA = stTextFactory.Create(); + + var paraBldr = new StTxtParaBldr(Cache) { ParaStyleName = ScrStyleNames.NormalParagraph }; + + if (s == 0 || s % 3 == 0) + { + paraBldr.AppendRun(chapter.ToString(), + StyleUtils.CharStyleTextProps(ScrStyleNames.ChapterNumber, m_wsEng)); + chapter++; + } + + for (int v = 1; v <= versesPerSection; v++) + { + paraBldr.AppendRun(v.ToString() + "\u00A0", + StyleUtils.CharStyleTextProps(ScrStyleNames.VerseNumber, m_wsEng)); + + string prose = proseFragments[(s * versesPerSection + v) % proseFragments.Length]; + paraBldr.AppendRun(prose, StyleUtils.CharStyleTextProps(null, m_wsEng)); + + // Add a footnote caller on every other verse + if (v % 2 == 0) + { + var footnote = footnoteFactory.Create(); + book.FootnotesOS.Add(footnote); + var footParaBldr = new StTxtParaBldr(Cache) + { + ParaStyleName = ScrStyleNames.NormalParagraph + }; + string fnText = footnoteTexts[(s + v) % footnoteTexts.Length]; + footParaBldr.AppendRun(fnText, StyleUtils.CharStyleTextProps(null, m_wsEng)); + footParaBldr.CreateParagraph(footnote); + } + } + + paraBldr.CreateParagraph(section.ContentOA); + } + } + + /// <summary> + /// Creates sections where each verse uses a different combination of character + /// formatting (bold, italic, font-size, foreground colour). This forces the style + /// resolver and text-properties builder to compute many distinct property sets, + /// stressing the rendering property cache. + /// </summary> + protected void AddMixedStyleSections(IScrBook book, int sectionCount, + int versesPerSection, int chapterStart) + { + var sectionFactory = Cache.ServiceLocator.GetInstance<IScrSectionFactory>(); + var stTextFactory = Cache.ServiceLocator.GetInstance<IStTextFactory>(); + int chapter = chapterStart; + + string[] proseFragments = new[] + { + "Blessed is the one who does not walk in step with the wicked. ", + "But whose delight is in the law of the Lord, and who meditates on his law day and night. ", + "That person is like a tree planted by streams of water, which yields its fruit in season. ", + "Not so the wicked! They are like chaff that the wind blows away. ", + "Therefore the wicked will not stand in the judgment, nor sinners in the assembly. ", + "For the Lord watches over the way of the righteous, but the way of the wicked leads to destruction. ", + }; + + // Colour palette for rotating foreground colour + int[] colours = new[] + { + (int)ColorUtil.ConvertColorToBGR(Color.FromArgb(0, 0, 0)), // black + (int)ColorUtil.ConvertColorToBGR(Color.FromArgb(128, 0, 0)), // maroon + (int)ColorUtil.ConvertColorToBGR(Color.FromArgb(0, 0, 128)), // navy + (int)ColorUtil.ConvertColorToBGR(Color.FromArgb(0, 100, 0)), // dark green + (int)ColorUtil.ConvertColorToBGR(Color.FromArgb(128, 0, 128)), // purple + (int)ColorUtil.ConvertColorToBGR(Color.FromArgb(139, 69, 19)), // saddle brown + }; + + int[] fontSizes = new[] { 9000, 10000, 11000, 12000, 14000, 16000 }; // millipoints + + for (int s = 0; s < sectionCount; s++) + { + var section = sectionFactory.Create(); + book.SectionsOS.Add(section); + + section.HeadingOA = stTextFactory.Create(); + var headingBldr = new StTxtParaBldr(Cache) { ParaStyleName = ScrStyleNames.SectionHead }; + headingBldr.AppendRun($"Varied Styles Section {s + 1}", + StyleUtils.CharStyleTextProps(null, m_wsEng)); + headingBldr.CreateParagraph(section.HeadingOA); + + section.ContentOA = stTextFactory.Create(); + + var paraBldr = new StTxtParaBldr(Cache) { ParaStyleName = ScrStyleNames.NormalParagraph }; + + if (s == 0 || s % 3 == 0) + { + paraBldr.AppendRun(chapter.ToString(), + StyleUtils.CharStyleTextProps(ScrStyleNames.ChapterNumber, m_wsEng)); + chapter++; + } + + for (int v = 1; v <= versesPerSection; v++) + { + // Verse number + paraBldr.AppendRun(v.ToString() + "\u00A0", + StyleUtils.CharStyleTextProps(ScrStyleNames.VerseNumber, m_wsEng)); + + // Build a custom text props for this verse + int idx = (s * versesPerSection + v); + var bldr = TsStringUtils.MakePropsBldr(); + bldr.SetIntPropValues((int)FwTextPropType.ktptWs, + (int)FwTextPropVar.ktpvDefault, m_wsEng); + bldr.SetIntPropValues((int)FwTextPropType.ktptFontSize, + (int)FwTextPropVar.ktpvMilliPoint, fontSizes[idx % fontSizes.Length]); + bldr.SetIntPropValues((int)FwTextPropType.ktptForeColor, + (int)FwTextPropVar.ktpvDefault, colours[idx % colours.Length]); + + // Alternate bold / italic + if (idx % 3 == 0) + { + bldr.SetIntPropValues((int)FwTextPropType.ktptBold, + (int)FwTextPropVar.ktpvEnum, (int)FwTextToggleVal.kttvForceOn); + } + if (idx % 4 == 0) + { + bldr.SetIntPropValues((int)FwTextPropType.ktptItalic, + (int)FwTextPropVar.ktpvEnum, (int)FwTextToggleVal.kttvForceOn); + } + + string prose = proseFragments[idx % proseFragments.Length]; + paraBldr.AppendRun(prose, bldr.GetTextProps()); + } + + paraBldr.CreateParagraph(section.ContentOA); + } + } + + /// <summary> + /// Creates sections where all body text is Arabic (RTL). Section headings are + /// English to create bidi mixing from the view's perspective. Chapter and verse + /// numbers remain LTR (standard Scripture convention). + /// </summary> + protected void AddRtlSections(IScrBook book, int sectionCount, + int versesPerSection, int chapterStart) + { + var sectionFactory = Cache.ServiceLocator.GetInstance<IScrSectionFactory>(); + var stTextFactory = Cache.ServiceLocator.GetInstance<IStTextFactory>(); + int chapter = chapterStart; + + // Arabic prose fragments (Bismillah-style phrases and common Quranic vocabulary) + string[] arabicProse = new[] + { + "\u0628\u0650\u0633\u0652\u0645\u0650 \u0627\u0644\u0644\u0651\u0647\u0650 \u0627\u0644\u0631\u0651\u064E\u062D\u0652\u0645\u0646\u0650 \u0627\u0644\u0631\u0651\u064E\u062D\u064A\u0645\u0650. ", // Bismillah + "\u0627\u0644\u0652\u062D\u064E\u0645\u0652\u062F\u064F \u0644\u0650\u0644\u0651\u0647\u0650 \u0631\u064E\u0628\u0651\u0650 \u0627\u0644\u0652\u0639\u064E\u0627\u0644\u064E\u0645\u064A\u0646\u064E. ", // Al-hamdu lillahi + "\u0645\u064E\u0627\u0644\u0650\u0643\u0650 \u064A\u064E\u0648\u0652\u0645\u0650 \u0627\u0644\u062F\u0651\u064A\u0646\u0650. ", // Maliki yawm al-din + "\u0625\u0650\u064A\u0651\u064E\u0627\u0643\u064E \u0646\u064E\u0639\u0652\u0628\u064F\u062F\u064F \u0648\u064E\u0625\u0650\u064A\u0651\u064E\u0627\u0643\u064E \u0646\u064E\u0633\u0652\u062A\u064E\u0639\u064A\u0646\u064F. ", // Iyyaka na'budu + "\u0627\u0647\u0652\u062F\u0650\u0646\u064E\u0627 \u0627\u0644\u0635\u0651\u0650\u0631\u064E\u0627\u0637\u064E \u0627\u0644\u0652\u0645\u064F\u0633\u0652\u062A\u064E\u0642\u064A\u0645\u064E. ", // Ihdina al-sirat + "\u0635\u0650\u0631\u064E\u0627\u0637\u064E \u0627\u0644\u0651\u064E\u0630\u064A\u0646\u064E \u0623\u064E\u0646\u0652\u0639\u064E\u0645\u0652\u062A\u064E \u0639\u064E\u0644\u064E\u064A\u0652\u0647\u0650\u0645\u0652. ", // Sirat alladhina + }; + + for (int s = 0; s < sectionCount; s++) + { + var section = sectionFactory.Create(); + book.SectionsOS.Add(section); + + // English heading (LTR in an otherwise RTL view) + section.HeadingOA = stTextFactory.Create(); + var headingBldr = new StTxtParaBldr(Cache) { ParaStyleName = ScrStyleNames.SectionHead }; + headingBldr.AppendRun($"Section {s + 1}: Arabic Scripture", + StyleUtils.CharStyleTextProps(null, m_wsEng)); + headingBldr.CreateParagraph(section.HeadingOA); + + section.ContentOA = stTextFactory.Create(); + var paraBldr = new StTxtParaBldr(Cache) { ParaStyleName = ScrStyleNames.NormalParagraph }; + + if (s == 0 || s % 3 == 0) + { + paraBldr.AppendRun(chapter.ToString(), + StyleUtils.CharStyleTextProps(ScrStyleNames.ChapterNumber, m_wsEng)); + chapter++; + } + + for (int v = 1; v <= versesPerSection; v++) + { + paraBldr.AppendRun(v.ToString() + "\u00A0", + StyleUtils.CharStyleTextProps(ScrStyleNames.VerseNumber, m_wsEng)); + + // Arabic prose (RTL) + string prose = arabicProse[(s * versesPerSection + v) % arabicProse.Length]; + paraBldr.AppendRun(prose, StyleUtils.CharStyleTextProps(null, m_wsAr)); + } + + paraBldr.CreateParagraph(section.ContentOA); + } + } + + /// <summary> + /// Creates sections where each verse contains runs in three different writing systems + /// (English, Arabic, French) within the same paragraph. This forces the rendering + /// engine to handle font fallback, writing-system switching, mixed bidi text, and + /// line-breaking across WS boundaries. + /// </summary> + protected void AddMultiWsSections(IScrBook book, int sectionCount, + int versesPerSection, int chapterStart) + { + var sectionFactory = Cache.ServiceLocator.GetInstance<IScrSectionFactory>(); + var stTextFactory = Cache.ServiceLocator.GetInstance<IStTextFactory>(); + int chapter = chapterStart; + + string[] englishProse = new[] + { + "In the beginning was the Word. ", + "The light shines in the darkness. ", + "Grace and truth came through Him. ", + }; + + string[] frenchProse = new[] + { + "Au commencement \u00E9tait la Parole. ", + "La lumi\u00E8re brille dans les t\u00E9n\u00E8bres. ", + "La gr\u00E2ce et la v\u00E9rit\u00E9 sont venues par Lui. ", + }; + + string[] arabicProse = new[] + { + "\u0641\u064A \u0627\u0644\u0628\u062F\u0621 \u0643\u0627\u0646 \u0627\u0644\u0643\u0644\u0645\u0629. ", // In the beginning was the Word + "\u0627\u0644\u0646\u0648\u0631 \u064A\u0636\u064A\u0621 \u0641\u064A \u0627\u0644\u0638\u0644\u0627\u0645. ", // The light shines in the darkness + "\u0627\u0644\u0646\u0639\u0645\u0629 \u0648\u0627\u0644\u062D\u0642 \u0628\u0650\u0647. ", // Grace and truth through Him + }; + + for (int s = 0; s < sectionCount; s++) + { + var section = sectionFactory.Create(); + book.SectionsOS.Add(section); + + section.HeadingOA = stTextFactory.Create(); + var headingBldr = new StTxtParaBldr(Cache) { ParaStyleName = ScrStyleNames.SectionHead }; + headingBldr.AppendRun($"Multi-WS Section {s + 1}", + StyleUtils.CharStyleTextProps(null, m_wsEng)); + headingBldr.CreateParagraph(section.HeadingOA); + + section.ContentOA = stTextFactory.Create(); + var paraBldr = new StTxtParaBldr(Cache) { ParaStyleName = ScrStyleNames.NormalParagraph }; + + if (s == 0 || s % 3 == 0) + { + paraBldr.AppendRun(chapter.ToString(), + StyleUtils.CharStyleTextProps(ScrStyleNames.ChapterNumber, m_wsEng)); + chapter++; + } + + for (int v = 1; v <= versesPerSection; v++) + { + paraBldr.AppendRun(v.ToString() + "\u00A0", + StyleUtils.CharStyleTextProps(ScrStyleNames.VerseNumber, m_wsEng)); + + int idx = (s * versesPerSection + v); + + // Rotate: English → Arabic → French within each verse + paraBldr.AppendRun(englishProse[idx % englishProse.Length], + StyleUtils.CharStyleTextProps(null, m_wsEng)); + paraBldr.AppendRun(arabicProse[idx % arabicProse.Length], + StyleUtils.CharStyleTextProps(null, m_wsAr)); + paraBldr.AppendRun(frenchProse[idx % frenchProse.Length], + StyleUtils.CharStyleTextProps(null, m_wsFr)); + } + + paraBldr.CreateParagraph(section.ContentOA); + } + } + + #endregion + + #region Lex Entry Scenario Data + + /// <summary> + /// Creates a lexical entry scenario with nested senses at the specified depth and breadth. + /// This is the primary scenario for tracking the exponential rendering overhead in + /// XmlVc's <c>visibility="ifdata"</c> double-render pattern. + /// </summary> + /// <param name="depth">Number of nesting levels (2 = senses with one level of subsenses).</param> + /// <param name="breadth">Number of child senses per parent at each level.</param> + /// <remarks> + /// <para>Total sense count = breadth + breadth^2 + ... + breadth^depth = breadth*(breadth^depth - 1)/(breadth - 1).</para> + /// <para>With the ifdata double-render, each level doubles the work, so rendering time + /// grows as O(breadth^depth * 2^depth) = O((2*breadth)^depth). Depth 6 with breadth 2 + /// produces 126 senses and ~4096x the per-sense overhead of depth 1.</para> + /// </remarks> + private void CreateLexEntryScenario(int depth, int breadth) + { + // Ensure LexDb exists + if (Cache.LangProject.LexDbOA == null) + { + Cache.ServiceLocator.GetInstance<ILexDbFactory>().Create(); + } + + var entryFactory = Cache.ServiceLocator.GetInstance<ILexEntryFactory>(); + var senseFactory = Cache.ServiceLocator.GetInstance<ILexSenseFactory>(); + var morphFactory = Cache.ServiceLocator.GetInstance<IMoStemAllomorphFactory>(); + + // Create the entry with a headword + var entry = entryFactory.Create(); + var morph = morphFactory.Create(); + entry.LexemeFormOA = morph; + morph.Form.set_String(m_wsEng, MakeRenderString("benchmark-entry", m_wsEng)); + + // Recursively create the sense tree + CreateNestedSenses(entry, senseFactory, depth, breadth, "", 1); + + // Set root to entry HVO with LexEntry.Senses as the containing flid + m_hvoRoot = entry.Hvo; + m_flidContainingTexts = LexEntryTags.kflidSenses; + m_frag = LexEntryVc.kFragEntry; + } + + /// <summary> + /// Recursively creates a tree of senses/subsenses. + /// </summary> + /// <param name="owner">The owning entry or sense.</param> + /// <param name="senseFactory">Factory for creating new senses.</param> + /// <param name="remainingDepth">Remaining nesting levels to create.</param> + /// <param name="breadth">Number of children at each level.</param> + /// <param name="prefix">Hierarchical number prefix (e.g., "1.2.").</param> + /// <param name="startNumber">Starting sense number at this level.</param> + private void CreateNestedSenses(ICmObject owner, ILexSenseFactory senseFactory, + int remainingDepth, int breadth, string prefix, int startNumber) + { + if (remainingDepth <= 0) + return; + + for (int i = 0; i < breadth; i++) + { + var sense = senseFactory.Create(); + string senseNum = prefix + (startNumber + i); + + // Add sense to entry or parent sense + var entry = owner as ILexEntry; + if (entry != null) + entry.SensesOS.Add(sense); + else + ((ILexSense)owner).SensesOS.Add(sense); + + // Set gloss and definition + string gloss = $"gloss {senseNum}"; + string definition = $"This is the definition for sense {senseNum}, which demonstrates " + + $"nested rendering at depth {remainingDepth} with {breadth}-way branching."; + + sense.Gloss.set_String(m_wsEng, MakeRenderString(gloss, m_wsEng)); + sense.Definition.set_String(m_wsEng, MakeRenderString(definition, m_wsEng)); + + // Recurse for subsenses + CreateNestedSenses(sense, senseFactory, remainingDepth - 1, breadth, + senseNum + ".", 1); + } + } + + private static ITsString MakeRenderString(string value, int writingSystemHandle) + { + var propsBuilder = TsStringUtils.MakePropsBldr(); + propsBuilder.SetIntPropValues((int)FwTextPropType.ktptWs, + (int)FwTextPropVar.ktpvDefault, writingSystemHandle); + propsBuilder.SetStrPropValue((int)FwTextPropType.ktptFontFamily, + DeterministicRenderFontFamily); + + var stringBuilder = TsStringUtils.MakeStrBldr(); + stringBuilder.Replace(0, 0, value, propsBuilder.GetTextProps()); + return stringBuilder.GetString(); + } + + #endregion + } + + internal sealed class RootSiteScenarioExecutionResult + { + public RenderScenario Scenario { get; set; } + public RenderTimingResult ColdTiming { get; set; } + public RenderTimingResult WarmTiming { get; set; } + internal global::SIL.FieldWorks.Common.RenderVerification.RenderBaselineVerificationResult Verification { get; set; } + public int CaptureWidth { get; set; } + public int CaptureHeight { get; set; } + public System.Collections.Generic.List<TraceEvent> TraceEvents { get; set; } + } +} diff --git a/Src/Common/RootSite/RootSiteTests/RenderTestAssemblySetup.cs b/Src/Common/RootSite/RootSiteTests/RenderTestAssemblySetup.cs new file mode 100644 index 0000000000..575ec8ed09 --- /dev/null +++ b/Src/Common/RootSite/RootSiteTests/RenderTestAssemblySetup.cs @@ -0,0 +1,46 @@ +using System; +using System.Drawing.Text; +using System.Linq; +using System.Runtime.InteropServices; +using NUnit.Framework; + +namespace SIL.FieldWorks.Common.RootSites +{ + [SetUpFixture] + public sealed class RenderTestAssemblySetup + { + private const int DpiAwarenessContextUnaware = -1; + private const string DeterministicRenderFontFamily = "Segoe UI"; + + [DllImport("User32.dll")] + private static extern bool SetProcessDpiAwarenessContext(int dpiFlag); + + [OneTimeSetUp] + public void OneTimeSetup() + { + // Force grayscale antialiasing (ANTIALIASED_QUALITY=4) for deterministic + // rendering across dev machines and CI (Windows Server 2025). + // The native VwGraphics reads this env var when creating GDI fonts. + Environment.SetEnvironmentVariable("FW_FONT_QUALITY", "4"); + + try + { + SetProcessDpiAwarenessContext(DpiAwarenessContextUnaware); + } + catch (DllNotFoundException) + { + } + catch (EntryPointNotFoundException) + { + } + + using (var installedFonts = new InstalledFontCollection()) + { + bool hasDeterministicFont = installedFonts.Families.Any( + family => string.Equals(family.Name, DeterministicRenderFontFamily, StringComparison.OrdinalIgnoreCase)); + TestContext.Progress.WriteLine( + $"[RENDER-SETUP] DPI unaware requested. Font '{DeterministicRenderFontFamily}' installed={hasDeterministicFont}"); + } + } + } +} \ No newline at end of file diff --git a/Src/Common/RootSite/RootSiteTests/RenderTimingSuiteTests.cs b/Src/Common/RootSite/RootSiteTests/RenderTimingSuiteTests.cs new file mode 100644 index 0000000000..ef07c20da5 --- /dev/null +++ b/Src/Common/RootSite/RootSiteTests/RenderTimingSuiteTests.cs @@ -0,0 +1,135 @@ +using System; +using System.Collections.Generic; +using System.IO; +using NUnit.Framework; +using SIL.FieldWorks.Common.RootSites.RenderBenchmark; +using SIL.FieldWorks.Common.RenderVerification; + +namespace SIL.FieldWorks.Common.RootSites +{ + /// <summary> + /// Main benchmark suite that executes all scenarios and generates a timing report. + /// Each scenario is timed and also checked against the committed pixel baselines + /// so performance and correctness are validated together. + /// </summary> + [TestFixture] + [Category("RenderBenchmark")] + [Category("Performance")] + public class RenderTimingSuiteTests : RenderBenchmarkTestsBase + { + private static List<BenchmarkResult> m_results; + private RenderBenchmarkReportWriter m_reportWriter; + private RenderEnvironmentValidator m_environmentValidator; + + private static readonly string OutputDir = Path.Combine( + TestContext.CurrentContext.TestDirectory, + "..", "..", "Output", "RenderBenchmarks"); + + [OneTimeSetUp] + public void SuiteSetup() + { + m_results = new List<BenchmarkResult>(); + m_reportWriter = new RenderBenchmarkReportWriter(OutputDir); + m_environmentValidator = new RenderEnvironmentValidator(); + + if (!Directory.Exists(OutputDir)) + Directory.CreateDirectory(OutputDir); + } + + [OneTimeTearDown] + public void SuiteTeardown() + { + var run = new BenchmarkRun + { + Results = m_results, + EnvironmentHash = m_environmentValidator?.GetEnvironmentHash() ?? "Unknown", + Configuration = "Debug", + MachineName = Environment.MachineName, + FeatureFlags = GetActivePerfFlags() + }; + + m_reportWriter?.WriteReport(run); + TestContext.WriteLine($"Benchmark report written to: {OutputDir}"); + TestContext.WriteLine($"Summary: {Path.Combine(OutputDir, "summary.md")}"); + } + + [Test, TestCaseSource(nameof(GetScenarios))] + public void RunBenchmark(string scenarioId) + { + var execution = ExecuteScenarioAndCapture( + scenarioId, + includeWarmRender: true, + environmentValidator: m_environmentValidator); + + TestContext.WriteLine($"Running Scenario: {scenarioId} - {execution.Scenario.Description}"); + + if (!execution.Verification.Passed) + TestContext.WriteLine($"[VERIFY] {execution.Verification.FailureMessage}"); + + m_results.Add(new BenchmarkResult + { + ScenarioId = execution.Scenario.Id, + ScenarioDescription = execution.Scenario.Description, + ColdRenderMs = execution.ColdTiming.DurationMs, + WarmRenderMs = execution.WarmTiming.DurationMs, + ColdPerformOffscreenLayoutMs = SumStageDuration(execution.TraceEvents, "PerformOffscreenLayout", "cold"), + WarmPerformOffscreenLayoutMs = SumStageDuration(execution.TraceEvents, "PerformOffscreenLayout", "warm"), + PixelPerfectPass = execution.Verification.Passed, + MismatchDetails = execution.Verification.FailureMessage, + SnapshotPath = execution.Verification.VerifiedPath, + TraceEvents = execution.TraceEvents + }); + + if (!execution.Verification.Passed) + Assert.Fail(execution.Verification.FailureMessage); + } + + public static IEnumerable<string> GetScenarios() + { + return GetConfiguredScenarioIds("simple", "medium", "complex", "deep-nested", "custom-heavy"); + } + + private static Dictionary<string, string> GetActivePerfFlags() + { + return new Dictionary<string, string> + { + { "FW_PERF_P125_PATH1", GetPerfFlagState("FW_PERF_P125_PATH1") }, + { "FW_PERF_P125_PATH2", GetPerfFlagState("FW_PERF_P125_PATH2") }, + { "FW_PERF_P125_PATH5", GetPerfFlagState("FW_PERF_P125_PATH5") } + }; + } + + private static string GetPerfFlagState(string variableName) + { + var value = Environment.GetEnvironmentVariable(variableName); + if (!string.IsNullOrEmpty(value)) + return value; + + if (string.Equals(variableName, "FW_PERF_P125_PATH5", StringComparison.OrdinalIgnoreCase)) + return "not-implemented"; + + return "default-on"; + } + + private static double SumStageDuration(IEnumerable<TraceEvent> traceEvents, string stage, string phasePrefix) + { + if (traceEvents == null) + return 0; + + double total = 0; + foreach (var traceEvent in traceEvents) + { + if (!string.Equals(traceEvent.Stage, stage, StringComparison.OrdinalIgnoreCase)) + continue; + + if (traceEvent.Context == null || !traceEvent.Context.TryGetValue("phase", out var phase)) + continue; + + if (phase.StartsWith(phasePrefix, StringComparison.OrdinalIgnoreCase)) + total += traceEvent.DurationMs; + } + + return total; + } + } +} diff --git a/Src/Common/RootSite/RootSiteTests/RenderTraceParserTests.cs b/Src/Common/RootSite/RootSiteTests/RenderTraceParserTests.cs new file mode 100644 index 0000000000..f9fcbc7b05 --- /dev/null +++ b/Src/Common/RootSite/RootSiteTests/RenderTraceParserTests.cs @@ -0,0 +1,45 @@ +// Copyright (c) 2026 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using NUnit.Framework; +using SIL.FieldWorks.Common.RenderVerification; + +namespace SIL.FieldWorks.Common.RootSites +{ + [TestFixture] + public class RenderTraceParserTests + { + [TestCase("Perform-Offscreen-Layout")] + [TestCase("Layout.v2")] + [TestCase("cold/Layout")] + public void ParseLine_StageNameContainsSeparators_ParsesStageName(string stageName) + { + var parser = new RenderTraceParser(); + double cumulativeTime = 0; + + var traceEvent = parser.ParseLine( + $"[RENDER] Stage={stageName} Duration=12.34ms Context=phase=cold", + ref cumulativeTime); + + Assert.That(traceEvent, Is.Not.Null); + Assert.That(traceEvent.Stage, Is.EqualTo(stageName)); + Assert.That(traceEvent.DurationMs, Is.EqualTo(12.34).Within(0.001)); + } + + [Test] + public void ParseLine_TimestampedStageNameContainsSeparators_ParsesStageName() + { + var parser = new RenderTraceParser(); + double cumulativeTime = 0; + + var traceEvent = parser.ParseLine( + "[2026-01-22T12:34:56.789] [RENDER] Stage=warm/Layout.v2 Duration=7.5ms Context=phase=warm", + ref cumulativeTime); + + Assert.That(traceEvent, Is.Not.Null); + Assert.That(traceEvent.Stage, Is.EqualTo("warm/Layout.v2")); + Assert.That(traceEvent.DurationMs, Is.EqualTo(7.5).Within(0.001)); + } + } +} \ No newline at end of file diff --git a/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_complex.verified.png b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_complex.verified.png new file mode 100644 index 0000000000..2f2314e311 Binary files /dev/null and b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_complex.verified.png differ diff --git a/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_custom-heavy.verified.png b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_custom-heavy.verified.png new file mode 100644 index 0000000000..bb10da5808 Binary files /dev/null and b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_custom-heavy.verified.png differ diff --git a/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_deep-nested.verified.png b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_deep-nested.verified.png new file mode 100644 index 0000000000..fdb8500c76 Binary files /dev/null and b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_deep-nested.verified.png differ diff --git a/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_footnote-heavy.verified.png b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_footnote-heavy.verified.png new file mode 100644 index 0000000000..7431a3e4f4 Binary files /dev/null and b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_footnote-heavy.verified.png differ diff --git a/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_lex-deep.verified.png b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_lex-deep.verified.png new file mode 100644 index 0000000000..f2c72a7bea Binary files /dev/null and b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_lex-deep.verified.png differ diff --git a/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_lex-extreme.verified.png b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_lex-extreme.verified.png new file mode 100644 index 0000000000..6f4887f1fc Binary files /dev/null and b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_lex-extreme.verified.png differ diff --git a/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_lex-shallow.verified.png b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_lex-shallow.verified.png new file mode 100644 index 0000000000..ebe0ae0724 Binary files /dev/null and b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_lex-shallow.verified.png differ diff --git a/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_long-prose.verified.png b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_long-prose.verified.png new file mode 100644 index 0000000000..608565ccac Binary files /dev/null and b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_long-prose.verified.png differ diff --git a/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_many-paragraphs.verified.png b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_many-paragraphs.verified.png new file mode 100644 index 0000000000..08b500fe6b Binary files /dev/null and b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_many-paragraphs.verified.png differ diff --git a/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_medium.verified.png b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_medium.verified.png new file mode 100644 index 0000000000..9d468523f5 Binary files /dev/null and b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_medium.verified.png differ diff --git a/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_mixed-styles.verified.png b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_mixed-styles.verified.png new file mode 100644 index 0000000000..7d5493acac Binary files /dev/null and b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_mixed-styles.verified.png differ diff --git a/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_multi-book.verified.png b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_multi-book.verified.png new file mode 100644 index 0000000000..11beb770b5 Binary files /dev/null and b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_multi-book.verified.png differ diff --git a/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_multi-ws.verified.png b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_multi-ws.verified.png new file mode 100644 index 0000000000..32ce6badf6 Binary files /dev/null and b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_multi-ws.verified.png differ diff --git a/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_rtl-script.verified.png b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_rtl-script.verified.png new file mode 100644 index 0000000000..6946fa5462 Binary files /dev/null and b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_rtl-script.verified.png differ diff --git a/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_simple.verified.png b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_simple.verified.png new file mode 100644 index 0000000000..a81d9157a7 Binary files /dev/null and b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.VerifyScenario_simple.verified.png differ diff --git a/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.cs b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.cs new file mode 100644 index 0000000000..82b7c97080 --- /dev/null +++ b/Src/Common/RootSite/RootSiteTests/RenderVerifyTests.cs @@ -0,0 +1,68 @@ +// Copyright (c) 2026 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System.Collections.Generic; +using System.Threading.Tasks; +using NUnit.Framework; +using SIL.FieldWorks.Common.RootSites.RenderBenchmark; + +namespace SIL.FieldWorks.Common.RootSites +{ + /// <summary> + /// Snapshot tests for render baseline validation. + /// + /// Each run saves a .received.png and compares it against the committed + /// .verified.png baseline by decoded pixel values, not by the PNG file bytes. + /// Small encoder-level differences are therefore ignored as long as the rendered + /// image differs by fewer than five pixels. + /// + /// Each scenario is set up inside its own UndoableUnitOfWork, matching the pattern + /// used by RenderTimingSuiteTests. + /// </summary> + [TestFixture] + [Category("RenderBenchmark")] + public class RenderVerifyTests : RenderBenchmarkTestsBase + { + /// <summary> + /// CreateTestData is a no-op; individual tests call SetupScenarioData within a UoW. + /// </summary> + protected override void CreateTestData() + { + // Scenario data is created per-test inside a UoW (see VerifyScenario). + } + + /// <summary> + /// Verifies that a scenario renders consistently against its .verified.png baseline. + /// On first run, creates the .received.png for acceptance. On subsequent runs, + /// compares decoded pixels against the committed .verified.png baseline. + /// </summary> + [Test, TestCaseSource(nameof(GetVerifyScenarios))] + public async Task VerifyScenario(string scenarioId) + { + var execution = ExecuteScenarioAndCapture(scenarioId, includeWarmRender: false); + if (!execution.Verification.Passed) + Assert.Fail(execution.Verification.FailureMessage); + + await Task.CompletedTask; + } + + /// <summary> + /// Provides all scenario IDs from the JSON config for parameterized render baseline tests. + /// </summary> + public static IEnumerable<string> GetVerifyScenarios() + { + return GetConfiguredScenarioIds( + "simple", + "medium", + "complex", + "deep-nested", + "custom-heavy", + "many-paragraphs", + "footnote-heavy", + "mixed-styles", + "long-prose", + "multi-book"); + } + } +} diff --git a/Src/Common/RootSite/RootSiteTests/RootSiteTests.csproj b/Src/Common/RootSite/RootSiteTests/RootSiteTests.csproj index 19a7e1654a..88e626aea8 100644 --- a/Src/Common/RootSite/RootSiteTests/RootSiteTests.csproj +++ b/Src/Common/RootSite/RootSiteTests/RootSiteTests.csproj @@ -1,11 +1,12 @@ -<?xml version='1.0' encoding='utf-8'?> +<?xml version="1.0" encoding="utf-8"?> <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <AssemblyName>RootSiteTests</AssemblyName> <RootNamespace>SIL.FieldWorks.Common.RootSites</RootNamespace> <TargetFramework>net48</TargetFramework> <OutputType>Library</OutputType> - <IsTestProject>true</IsTestProject> <NoWarn>168,169,219,414,649,1635,1702,1701</NoWarn> + <IsTestProject>true</IsTestProject> + <NoWarn>168,169,219,414,649,1635,1702,1701</NoWarn> <GenerateAssemblyInfo>false</GenerateAssemblyInfo> <GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources> <Prefer32Bit>false</Prefer32Bit> @@ -45,9 +46,11 @@ <ProjectReference Include="../../../XCore/xCoreInterfaces/xCoreInterfaces.csproj" /> <ProjectReference Include="../../FwUtils/FwUtils.csproj" /> <ProjectReference Include="../../FwUtils/FwUtilsTests/FwUtilsTests.csproj" /> + <ProjectReference Include="../../../FwCoreDlgs/FwCoreDlgs.csproj" /> <ProjectReference Include="../../SimpleRootSite/SimpleRootSite.csproj" /> <ProjectReference Include="../../ViewsInterfaces/ViewsInterfaces.csproj" /> <ProjectReference Include="../RootSite.csproj" /> + <ProjectReference Include="../../RenderTestInfrastructure/RenderTestInfrastructure.csproj" /> </ItemGroup> <ItemGroup> <Compile Include="..\..\..\CommonAssemblyInfo.cs"> diff --git a/Src/Common/RootSite/RootSiteTests/TestData/RenderBenchmarkFlags.json b/Src/Common/RootSite/RootSiteTests/TestData/RenderBenchmarkFlags.json new file mode 100644 index 0000000000..b4c72be426 --- /dev/null +++ b/Src/Common/RootSite/RootSiteTests/TestData/RenderBenchmarkFlags.json @@ -0,0 +1,5 @@ +{ + "diagnosticsEnabled": false, + "traceEnabled": false, + "captureMode": "DrawToBitmap" +} diff --git a/Src/Common/RootSite/RootSiteTests/TestData/RenderBenchmarkScenarios.json b/Src/Common/RootSite/RootSiteTests/TestData/RenderBenchmarkScenarios.json new file mode 100644 index 0000000000..782b92e682 --- /dev/null +++ b/Src/Common/RootSite/RootSiteTests/TestData/RenderBenchmarkScenarios.json @@ -0,0 +1,94 @@ +{ + "scenarios": [ + { + "id": "simple", + "description": "Minimal scripture book with one section and one footnote", + "tags": ["baseline", "minimal"], + "expectedSnapshotPath": "TestData/RenderSnapshots/simple.png" + }, + { + "id": "medium", + "description": "Scripture book with 5 sections and multiple footnotes", + "tags": ["typical", "multi-section"], + "expectedSnapshotPath": "TestData/RenderSnapshots/medium.png" + }, + { + "id": "complex", + "description": "Large scripture book with 20 sections, heavy footnotes", + "tags": ["stress", "multi-section", "heavy-footnotes"], + "expectedSnapshotPath": "TestData/RenderSnapshots/complex.png" + }, + { + "id": "deep-nested", + "description": "Scripture book with nested levels (if supported) or many small paras", + "tags": ["nested", "layout-stress"], + "expectedSnapshotPath": "TestData/RenderSnapshots/deep-nested.png" + }, + { + "id": "custom-heavy", + "description": "Scripture book with varied styles and character properties", + "tags": ["styles", "formatting"], + "expectedSnapshotPath": "TestData/RenderSnapshots/custom-heavy.png" + }, + { + "id": "many-paragraphs", + "description": "50 sections with 1 verse each — massive paragraph layout overhead", + "tags": ["stress", "layout-stress", "paragraph-count"], + "expectedSnapshotPath": "TestData/RenderSnapshots/many-paragraphs.png" + }, + { + "id": "footnote-heavy", + "description": "8 sections with 20 verses each, footnotes on every other verse", + "tags": ["stress", "footnotes", "heavy-footnotes"], + "expectedSnapshotPath": "TestData/RenderSnapshots/footnote-heavy.png" + }, + { + "id": "mixed-styles", + "description": "6 sections with 15 verses, each verse has unique font-size/color/bold/italic", + "tags": ["stress", "styles", "property-cache"], + "expectedSnapshotPath": "TestData/RenderSnapshots/mixed-styles.png" + }, + { + "id": "long-prose", + "description": "4 sections with 80 verses each — very long paragraphs for line-break stress", + "tags": ["stress", "layout-stress", "line-breaking"], + "expectedSnapshotPath": "TestData/RenderSnapshots/long-prose.png" + }, + { + "id": "multi-book", + "description": "3 separate Scripture books with 5 sections each — large cache stress", + "tags": ["stress", "multi-book", "cache-stress"], + "expectedSnapshotPath": "TestData/RenderSnapshots/multi-book.png" + }, + { + "id": "rtl-script", + "description": "4 sections with Arabic RTL text — bidirectional layout stress", + "tags": ["stress", "bidi", "rtl", "arabic"], + "expectedSnapshotPath": "TestData/RenderSnapshots/rtl-script.png" + }, + { + "id": "multi-ws", + "description": "5 sections with English/Arabic/French runs per verse — WS switching stress", + "tags": ["stress", "multi-ws", "bidi", "font-fallback"], + "expectedSnapshotPath": "TestData/RenderSnapshots/multi-ws.png" + }, + { + "id": "lex-shallow", + "description": "Lex entry with 3 senses, each having 3 subsenses (depth 2, breadth 3 = 12 senses)", + "tags": ["lex-entry", "nested-senses", "baseline"], + "viewType": "LexEntry" + }, + { + "id": "lex-deep", + "description": "Lex entry with senses nested 4 levels deep, 2-wide (depth 4, breadth 2 = 30 senses)", + "tags": ["lex-entry", "nested-senses", "exponential-cost"], + "viewType": "LexEntry" + }, + { + "id": "lex-extreme", + "description": "Lex entry with senses nested 6 levels deep, 2-wide (depth 6, breadth 2 = 126 senses)", + "tags": ["lex-entry", "nested-senses", "exponential-cost", "stress"], + "viewType": "LexEntry" + } + ] +} diff --git a/Src/Common/SimpleRootSite/SimpleRootSite.cs b/Src/Common/SimpleRootSite/SimpleRootSite.cs index e4a2599848..6d4065b353 100644 --- a/Src/Common/SimpleRootSite/SimpleRootSite.cs +++ b/Src/Common/SimpleRootSite/SimpleRootSite.cs @@ -39,6 +39,13 @@ namespace SIL.FieldWorks.Common.RootSites public class SimpleRootSite : UserControl, IVwRootSite, IRootSite, IxCoreColleague, IEditingCallbacks, IReceiveSequentialMessages, IMessageFilter { + private enum RefreshPhase + { + Idle, + Refreshing, + QueuedForReplay + } + #region Events /// <summary> /// This event notifies you that the right mouse button was clicked, @@ -54,6 +61,47 @@ public class SimpleRootSite : UserControl, IVwRootSite, IRootSite, IxCoreColleag /// </summary> public event EventHandler OnRefreshForScrollBarVisibility; #endregion Events + private static readonly bool s_enableInteractionTrace = IsOptInPerfFlagEnabled("FW_PERF_INTERACTION_TRACE"); + private static readonly int s_interactionTraceThresholdMs = GetPerfThresholdMs( + "FW_PERF_INTERACTION_TRACE_THRESHOLD_MS", 25); + + private static bool IsOptInPerfFlagEnabled(string variableName) + { + var value = Environment.GetEnvironmentVariable(variableName); + if (string.IsNullOrEmpty(value)) + return false; + + return !string.Equals(value, "0", StringComparison.OrdinalIgnoreCase) && + !string.Equals(value, "false", StringComparison.OrdinalIgnoreCase) && + !string.Equals(value, "off", StringComparison.OrdinalIgnoreCase); + } + + private static int GetPerfThresholdMs(string variableName, int defaultValue) + { + var value = Environment.GetEnvironmentVariable(variableName); + if (int.TryParse(value, out var thresholdMs) && thresholdMs >= 0) + return thresholdMs; + + return defaultValue; + } + + private static void TraceInteractionTiming(string stage, long elapsedMs, string details) + { + if (!s_enableInteractionTrace || elapsedMs < s_interactionTraceThresholdMs) + return; + + Trace.WriteLine( + $"[FW_PERF_INTERACTION] [SimpleRootSite] Stage={stage} DurationMs={elapsedMs} {details}"); + } + + private static void TraceInteractionEvent(string stage, string details) + { + if (!s_enableInteractionTrace) + return; + + Trace.WriteLine( + $"[FW_PERF_INTERACTION] [SimpleRootSite] Stage={stage} {details}"); + } #region WindowsLanguageProfileSink class @@ -168,6 +216,15 @@ public void OnInputLanguageChanged(IKeyboardDefinition previousKeyboard, IKeyboa /// as on Mono Setting AutoScrollPosition causes a redraw even when AllowPainting == false /// </summary> private Point? cachedAutoScrollPosition = null; + private bool m_fWarmingScrollViewport; + private bool m_fDeferredScrollWarmupPending = true; + private bool m_fDeferredScrollWarmupQueued; + private int m_lastScrollWarmDirection; + private int m_scrollWarmRangeTop = int.MinValue; + private int m_scrollWarmRangeBottom = int.MinValue; + private int m_deferredScrollWarmupTargetTop = int.MinValue; + private int m_deferredScrollWarmupTargetBottom = int.MinValue; + private int m_deferredScrollWarmupGeneration; /// <summary>Used to draw the rootbox</summary> private IVwDrawRootBuffered m_vdrb; @@ -195,6 +252,9 @@ public void OnInputLanguageChanged(IKeyboardDefinition previousKeyboard, IKeyboa /// <summary>True if we are waiting to do a refresh on the view (will be done when the view /// becomes visible); false otherwise</summary> protected bool m_fRefreshPending = false; + private bool m_fForceNextRefreshDisplay; + private RefreshPhase m_refreshPhase; + private bool m_fRefreshReplayRequested; /// <summary>True to show range selections when focus is lost; false otherwise</summary> protected bool m_fShowRangeSelAfterLostFocus = false; @@ -952,6 +1012,56 @@ public virtual ISilDataAccess DataAccess get { return (m_rootb == null) ? null : m_rootb.DataAccess; } } + /// <summary> + /// Updates the root box data source without implying that the current box tree is stale. + /// Use this for initial wiring and other source swaps that should remain cheap. + /// </summary> + /// <param name="dataAccess">The data access to install on the current root box.</param> + protected void SetRootBoxDataAccess(ISilDataAccess dataAccess) + { + CheckDisposed(); + if (m_rootb == null) + return; + + m_rootb.DataAccess = dataAccess; + } + + /// <summary> + /// Updates the root box data source and marks the current display for an explicit refresh + /// when the new data source changes the meaning or visible set of the current view. + /// </summary> + /// <param name="dataAccess">The data access to install on the current root box.</param> + protected void SetRootBoxDataAccessAndRefresh(ISilDataAccess dataAccess) + { + CheckDisposed(); + if (m_rootb == null) + return; + + m_rootb.DataAccess = dataAccess; + NotifyDataAccessSemanticsChanged(); + } + + /// <summary> + /// Signals that the current root box tree is semantically stale after an explicit + /// post-construction DataAccess swap. This keeps DataAccess assignment cheap while + /// routing the rebuild through the normal managed refresh pipeline. + /// </summary> + protected void NotifyDataAccessSemanticsChanged() + { + CheckDisposed(); + if (m_rootb?.Site == null) + return; + + m_fForceNextRefreshDisplay = true; + if (!Visible || FindForm() == null) + { + m_fRefreshPending = true; + return; + } + + RefreshDisplay(); + } + /// ------------------------------------------------------------------------------------ /// <summary> /// Helper used for processing editing requests. @@ -998,7 +1108,15 @@ protected virtual EditingHelper CreateEditingHelper() protected internal Point Dpi { get { return m_Dpi; } - set { m_Dpi = value; } + set + { + if (m_Dpi == value) + return; + + m_Dpi = value; + if (m_dxdLayoutWidth > 0) + m_dxdLayoutWidth = kForceLayout; + } } /// ------------------------------------------------------------------------------------ @@ -1264,11 +1382,28 @@ public virtual void ReleaseGraphics(IVwRootBox prootb, IVwGraphics pvg) public void SelectionChanged(IVwRootBox rootb, IVwSelection vwselNew) { CheckDisposed(); + Stopwatch stopwatch = null; + if (s_enableInteractionTrace) + stopwatch = Stopwatch.StartNew(); - Debug.Assert(rootb == EditingHelper.EditedRootBox); - Debug.Assert(vwselNew == rootb.Selection); + try + { + Debug.Assert(rootb == EditingHelper.EditedRootBox); + Debug.Assert(vwselNew == rootb.Selection); - EditingHelper.SelectionChanged(); + EditingHelper.SelectionChanged(); + } + finally + { + if (stopwatch != null) + { + stopwatch.Stop(); + TraceInteractionTiming( + "SelectionChanged", + stopwatch.ElapsedMilliseconds, + $"Control={Name} RootBoxNull={rootb == null} SelectionValid={vwselNew != null && vwselNew.IsValid}"); + } + } } /// ----------------------------------------------------------------------------------- @@ -1489,19 +1624,39 @@ public virtual bool ScrollSelectionIntoView(IVwSelection sel, VwScrollSelOpts scrollOption) { CheckDisposed(); + Stopwatch stopwatch = null; + if (s_enableInteractionTrace) + stopwatch = Stopwatch.StartNew(); + + bool result; switch (scrollOption) { case VwScrollSelOpts.kssoDefault: - return MakeSelectionVisible(sel, true); + result = MakeSelectionVisible(sel, true); + break; case VwScrollSelOpts.kssoNearTop: - return ScrollSelectionToLocation(sel, LineHeight); + result = ScrollSelectionToLocation(sel, LineHeight); + break; case VwScrollSelOpts.kssoTop: - return ScrollSelectionToLocation(sel, 1); + result = ScrollSelectionToLocation(sel, 1); + break; case VwScrollSelOpts.kssoBoth: - return MakeSelectionVisible(sel, true, true, true); + result = MakeSelectionVisible(sel, true, true, true); + break; default: throw new ArgumentException("Unsupported VwScrollSelOpts"); } + + if (stopwatch != null) + { + stopwatch.Stop(); + TraceInteractionTiming( + "ScrollSelectionIntoView", + stopwatch.ElapsedMilliseconds, + $"Control={Name} Option={scrollOption} DidScroll={result}"); + } + + return result; } /// ----------------------------------------------------------------------------------- @@ -1552,6 +1707,7 @@ public virtual Point ScrollPosition set { CheckDisposed(); + int previousViewportTop = -AutoScrollPosition.Y; Point newPos = value; if (this.AutoScroll) { @@ -1569,7 +1725,451 @@ public virtual Point ScrollPosition AutoScrollPosition = newPos; else cachedAutoScrollPosition = newPos; + + int scrollDelta = newPos.Y - previousViewportTop; + if (scrollDelta != 0) + m_lastScrollWarmDirection = Math.Sign(scrollDelta); + + WarmScrollViewportIfNeeded(); + } + } + + // Tunable scroll warmup settings. Percent values are relative to the current viewport height. + protected virtual int ScrollWarmupImmediatePercentInScrollDirection => 100; + protected virtual int ScrollWarmupImmediatePercentAgainstScrollDirection => 25; + protected virtual int ScrollWarmupDeferredPercentInScrollDirection => 100; + protected virtual int ScrollWarmupDeferredPercentAgainstScrollDirection => 0; + protected virtual int ScrollWarmupSymmetricImmediatePercent => 50; + protected virtual int ScrollWarmupSymmetricDeferredPercent => 50; + protected virtual int ScrollWarmupDeferredChunkPercent => 50; + protected virtual int ScrollWarmupDeferredTimeBudgetMs => 50; + protected virtual int ScrollWarmupDeferredMaxChunksPerIdle => 2; + protected virtual IdleQueuePriority ScrollWarmupDeferredIdlePriority => IdleQueuePriority.Low; + + protected virtual void WarmScrollViewportIfNeeded() + { + WarmScrollViewportIfNeeded(false, true); + } + + private void WarmScrollViewportIfNeeded(bool preferSymmetric, bool restartDeferredWarmup) + { + if (m_fWarmingScrollViewport || m_fInPaint || m_fInLayout || m_rootb == null || + m_dxdLayoutWidth <= 0 || !AllowPainting || ClientRectangle.Height <= 0) + { + TraceInteractionEvent( + "WarmScrollViewport.Skip", + $"Control={Name} InPaint={m_fInPaint} InLayout={m_fInLayout} RootBoxNull={m_rootb == null} AllowPainting={AllowPainting} ClientHeight={ClientRectangle.Height}"); + return; + } + + if (restartDeferredWarmup) + m_deferredScrollWarmupGeneration++; + + int viewportTop = -ScrollPosition.Y; + int viewportBottom = viewportTop + ClientRectangle.Height; + GetScrollWarmupMargins(preferSymmetric, + out int immediateWarmMarginTop, + out int immediateWarmMarginBottom, + out int deferredWarmMarginTop, + out int deferredWarmMarginBottom); + + int desiredImmediateTop = viewportTop - immediateWarmMarginTop; + int desiredImmediateBottom = viewportBottom + immediateWarmMarginBottom; + bool warmImmediateRange = !IsScrollWarmRangeCovered(desiredImmediateTop, desiredImmediateBottom); + TraceInteractionEvent( + "WarmScrollViewport.Plan", + $"Control={Name} PreferSymmetric={preferSymmetric} RestartDeferred={restartDeferredWarmup} Direction={m_lastScrollWarmDirection} ViewTop={viewportTop} ViewBottom={viewportBottom} ImmediateTop={desiredImmediateTop} ImmediateBottom={desiredImmediateBottom} DeferredTop={desiredImmediateTop - deferredWarmMarginTop} DeferredBottom={desiredImmediateBottom + deferredWarmMarginBottom} WarmImmediate={warmImmediateRange} ChunkPercent={ScrollWarmupDeferredChunkPercent} ChunkBudgetMs={ScrollWarmupDeferredTimeBudgetMs} MaxChunksPerIdle={ScrollWarmupDeferredMaxChunksPerIdle}"); + + if (warmImmediateRange) + { + Stopwatch immediateStopwatch = Stopwatch.StartNew(); + using (new HoldGraphics(this)) + { + m_fWarmingScrollViewport = true; + try + { + Rectangle rcSrcRoot; + Rectangle rcDstRoot; + GetCoordRects(out rcSrcRoot, out rcDstRoot); + + if (!WarmScrollViewportRange(rcSrcRoot, rcDstRoot, immediateWarmMarginTop, immediateWarmMarginBottom, + Math.Max(1, ClientRectangle.Height))) + return; + } + finally + { + m_fWarmingScrollViewport = false; + } + } + + viewportTop = -ScrollPosition.Y; + viewportBottom = viewportTop + ClientRectangle.Height; + desiredImmediateTop = viewportTop - immediateWarmMarginTop; + desiredImmediateBottom = viewportBottom + immediateWarmMarginBottom; + ExpandScrollWarmRange(desiredImmediateTop, desiredImmediateBottom); + immediateStopwatch.Stop(); + TraceInteractionTiming( + "WarmScrollViewport.Immediate", + immediateStopwatch.ElapsedMilliseconds, + $"Control={Name} WarmTop={desiredImmediateTop} WarmBottom={desiredImmediateBottom}"); + } + + m_deferredScrollWarmupTargetTop = desiredImmediateTop - deferredWarmMarginTop; + m_deferredScrollWarmupTargetBottom = desiredImmediateBottom + deferredWarmMarginBottom; + m_fDeferredScrollWarmupPending = !IsScrollWarmRangeCovered( + m_deferredScrollWarmupTargetTop, + m_deferredScrollWarmupTargetBottom); + + if (m_fDeferredScrollWarmupPending) + { + TraceInteractionEvent( + "WarmScrollViewport.DeferredQueued", + $"Control={Name} Generation={m_deferredScrollWarmupGeneration} TargetTop={m_deferredScrollWarmupTargetTop} TargetBottom={m_deferredScrollWarmupTargetBottom} CoveredTop={m_scrollWarmRangeTop} CoveredBottom={m_scrollWarmRangeBottom}"); + QueueDeferredScrollWarmup(); + } + else + { + TraceInteractionEvent( + "WarmScrollViewport.Complete", + $"Control={Name} Generation={m_deferredScrollWarmupGeneration} CoveredTop={m_scrollWarmRangeTop} CoveredBottom={m_scrollWarmRangeBottom}"); + } + } + + private void GetScrollWarmupMargins(bool preferSymmetric, + out int immediateWarmMarginTop, + out int immediateWarmMarginBottom, + out int deferredWarmMarginTop, + out int deferredWarmMarginBottom) + { + int symmetricImmediateMargin = GetScrollWarmupPixels(ScrollWarmupSymmetricImmediatePercent); + int symmetricDeferredMargin = GetScrollWarmupPixels(ScrollWarmupSymmetricDeferredPercent); + if (preferSymmetric || m_lastScrollWarmDirection == 0) + { + immediateWarmMarginTop = symmetricImmediateMargin; + immediateWarmMarginBottom = symmetricImmediateMargin; + deferredWarmMarginTop = symmetricDeferredMargin; + deferredWarmMarginBottom = symmetricDeferredMargin; + return; + } + + int leadingImmediateMargin = GetScrollWarmupPixels(ScrollWarmupImmediatePercentInScrollDirection); + int trailingImmediateMargin = GetScrollWarmupPixels(ScrollWarmupImmediatePercentAgainstScrollDirection); + int leadingDeferredMargin = GetScrollWarmupPixels(ScrollWarmupDeferredPercentInScrollDirection); + int trailingDeferredMargin = GetScrollWarmupPixels(ScrollWarmupDeferredPercentAgainstScrollDirection); + if (m_lastScrollWarmDirection > 0) + { + immediateWarmMarginTop = trailingImmediateMargin; + immediateWarmMarginBottom = leadingImmediateMargin; + deferredWarmMarginTop = trailingDeferredMargin; + deferredWarmMarginBottom = leadingDeferredMargin; + } + else + { + immediateWarmMarginTop = leadingImmediateMargin; + immediateWarmMarginBottom = trailingImmediateMargin; + deferredWarmMarginTop = leadingDeferredMargin; + deferredWarmMarginBottom = trailingDeferredMargin; + } + } + + private int GetScrollWarmupPixels(int viewportPercent) + { + if (viewportPercent <= 0 || ClientRectangle.Height <= 0) + return 0; + + long pixels = (long)ClientRectangle.Height * viewportPercent / 100; + return Math.Max(1, (int)pixels); + } + + private bool IsScrollWarmRangeCovered(int targetTop, int targetBottom) + { + return targetTop >= m_scrollWarmRangeTop && targetBottom <= m_scrollWarmRangeBottom; + } + + private void ExpandScrollWarmRange(int warmTop, int warmBottom) + { + m_scrollWarmRangeTop = (m_scrollWarmRangeTop == int.MinValue) + ? warmTop + : Math.Min(m_scrollWarmRangeTop, warmTop); + m_scrollWarmRangeBottom = (m_scrollWarmRangeBottom == int.MinValue) + ? warmBottom + : Math.Max(m_scrollWarmRangeBottom, warmBottom); + } + + private bool WarmScrollViewportRange(Rectangle rcSrcRoot, Rectangle rcDstRoot, + int warmMarginTop, int warmMarginBottom, int chunkSize) + { + if (PrepareToDrawForScrollWarmup(rcSrcRoot, rcDstRoot) == VwPrepDrawResult.kxpdrInvalidate) + return false; + + chunkSize = Math.Max(1, chunkSize); + if (!WarmScrollViewportOffsets(rcSrcRoot, rcDstRoot, warmMarginTop, -1, chunkSize)) + return false; + if (!WarmScrollViewportOffsets(rcSrcRoot, rcDstRoot, warmMarginBottom, 1, chunkSize)) + return false; + + return true; + } + + private bool WarmScrollViewportOffsets(Rectangle rcSrcRoot, Rectangle rcDstRoot, + int warmDistance, int direction, int chunkSize) + { + if (warmDistance <= 0) + return true; + + int lastOffset = 0; + for (int offset = chunkSize; offset <= warmDistance; offset += chunkSize) + { + lastOffset = offset; + if (PrepareToDrawForScrollWarmup(rcSrcRoot, OffsetRootRect(rcDstRoot, direction * offset)) == VwPrepDrawResult.kxpdrInvalidate) + return false; + } + + if (lastOffset != warmDistance) + { + if (PrepareToDrawForScrollWarmup(rcSrcRoot, OffsetRootRect(rcDstRoot, direction * warmDistance)) == VwPrepDrawResult.kxpdrInvalidate) + return false; + } + + return true; + } + + private static Rectangle OffsetRootRect(Rectangle rect, int dy) + { + rect.Offset(0, dy); + return rect; + } + + protected virtual VwPrepDrawResult PrepareToDrawForScrollWarmup(Rectangle rcSrcRoot, Rectangle rcDstRoot) + { + VwPrepDrawResult xpdr = VwPrepDrawResult.kxpdrAdjust; + while (xpdr == VwPrepDrawResult.kxpdrAdjust) + xpdr = PrepareToDraw(rcSrcRoot, rcDstRoot); + + return xpdr; + } + + private void QueueDeferredScrollWarmup() + { + if (IsDisposed) + return; + if (!m_fDeferredScrollWarmupPending) + return; + if (!IsHandleCreated || !Visible || m_rootb == null || !AllowPainting) + return; + + if (m_mediator != null) + { + TraceInteractionEvent( + "WarmScrollViewport.IdleQueueAdd", + $"Control={Name} Generation={m_deferredScrollWarmupGeneration} Priority={ScrollWarmupDeferredIdlePriority} TargetTop={m_deferredScrollWarmupTargetTop} TargetBottom={m_deferredScrollWarmupTargetBottom}"); + m_mediator.IdleQueue.Add( + ScrollWarmupDeferredIdlePriority, + ContinueDeferredScrollWarmupOnIdle, + m_deferredScrollWarmupGeneration, + true); + return; + } + + if (m_fDeferredScrollWarmupQueued) + return; + + m_fDeferredScrollWarmupQueued = true; + TraceInteractionEvent( + "WarmScrollViewport.BeginInvokeAdd", + $"Control={Name} Generation={m_deferredScrollWarmupGeneration} TargetTop={m_deferredScrollWarmupTargetTop} TargetBottom={m_deferredScrollWarmupTargetBottom}"); + BeginInvoke((MethodInvoker)delegate + { + m_fDeferredScrollWarmupQueued = false; + if (IsDisposed || !m_fDeferredScrollWarmupPending) + return; + if (!IsHandleCreated || !Visible || m_rootb == null || !AllowPainting || m_fInLayout) + return; + + if (!ContinueDeferredScrollWarmupOnIdle(m_deferredScrollWarmupGeneration)) + QueueDeferredScrollWarmup(); + }); + } + + private bool ContinueDeferredScrollWarmupOnIdle(object generationState) + { + if (IsDisposed || !m_fDeferredScrollWarmupPending) + return true; + if (!IsHandleCreated || !Visible || m_rootb == null || !AllowPainting || m_fInLayout) + { + TraceInteractionEvent( + "WarmScrollViewport.IdleDeferred", + $"Control={Name} Action=defer Visible={Visible} InLayout={m_fInLayout} RootBoxNull={m_rootb == null} AllowPainting={AllowPainting}"); + return false; + } + if (m_deferredScrollWarmupTargetTop == int.MinValue || m_deferredScrollWarmupTargetBottom == int.MinValue) + { + TraceInteractionEvent( + "WarmScrollViewport.Bootstrap", + $"Control={Name} Generation={m_deferredScrollWarmupGeneration}"); + WarmScrollViewportIfNeeded(true, true); + return true; + } + + int generation = generationState is int intGeneration ? intGeneration : m_deferredScrollWarmupGeneration; + if (generation != m_deferredScrollWarmupGeneration) + { + TraceInteractionEvent( + "WarmScrollViewport.Cancelled", + $"Control={Name} Reason=stale-generation ScheduledGeneration={generation} CurrentGeneration={m_deferredScrollWarmupGeneration}"); + return true; + } + + if (IsScrollWarmRangeCovered(m_deferredScrollWarmupTargetTop, m_deferredScrollWarmupTargetBottom)) + { + m_fDeferredScrollWarmupPending = false; + TraceInteractionEvent( + "WarmScrollViewport.Complete", + $"Control={Name} Generation={generation} CoveredTop={m_scrollWarmRangeTop} CoveredBottom={m_scrollWarmRangeBottom}"); + return true; + } + + int viewportTop = -ScrollPosition.Y; + int viewportBottom = viewportTop + ClientRectangle.Height; + int chunkPixels = GetScrollWarmupPixels(ScrollWarmupDeferredChunkPercent); + if (chunkPixels <= 0) + { + m_fDeferredScrollWarmupPending = false; + return true; + } + + Stopwatch stopwatch = Stopwatch.StartNew(); + int chunksProcessed = 0; + string stopReason = "covered"; + using (new HoldGraphics(this)) + { + m_fWarmingScrollViewport = true; + try + { + Rectangle rcSrcRoot; + Rectangle rcDstRoot; + GetCoordRects(out rcSrcRoot, out rcDstRoot); + + while (!IsScrollWarmRangeCovered(m_deferredScrollWarmupTargetTop, m_deferredScrollWarmupTargetBottom)) + { + if (chunksProcessed >= ScrollWarmupDeferredMaxChunksPerIdle) + { + stopReason = "chunk-budget"; + break; + } + if (stopwatch.ElapsedMilliseconds >= ScrollWarmupDeferredTimeBudgetMs) + { + stopReason = "time-budget"; + break; + } + + bool warmBottomNext = m_lastScrollWarmDirection >= 0; + if (!WarmDeferredScrollViewportChunk( + rcSrcRoot, + rcDstRoot, + viewportTop, + viewportBottom, + chunkPixels, + warmBottomNext)) + { + m_fDeferredScrollWarmupPending = false; + TraceInteractionEvent( + "WarmScrollViewport.Cancelled", + $"Control={Name} Reason=invalidate Generation={generation} CoveredTop={m_scrollWarmRangeTop} CoveredBottom={m_scrollWarmRangeBottom}"); + return true; + } + + chunksProcessed++; + } + } + finally + { + m_fWarmingScrollViewport = false; + } + } + + m_fDeferredScrollWarmupPending = !IsScrollWarmRangeCovered( + m_deferredScrollWarmupTargetTop, + m_deferredScrollWarmupTargetBottom); + stopwatch.Stop(); + TraceInteractionEvent( + "WarmScrollViewport.IdleChunk", + $"Control={Name} Generation={generation} DurationMs={stopwatch.ElapsedMilliseconds} ChunksProcessed={chunksProcessed} StopReason={(m_fDeferredScrollWarmupPending ? stopReason : "complete")} CoveredTop={m_scrollWarmRangeTop} CoveredBottom={m_scrollWarmRangeBottom} TargetTop={m_deferredScrollWarmupTargetTop} TargetBottom={m_deferredScrollWarmupTargetBottom}"); + return !m_fDeferredScrollWarmupPending; + } + + private bool WarmDeferredScrollViewportChunk(Rectangle rcSrcRoot, Rectangle rcDstRoot, + int viewportTop, int viewportBottom, int chunkPixels, bool warmBottomFirst) + { + if (warmBottomFirst) + { + if (!WarmDeferredScrollViewportChunkForDirection( + rcSrcRoot, + rcDstRoot, + viewportTop, + viewportBottom, + chunkPixels, + true)) + { + return false; + } + + return WarmDeferredScrollViewportChunkForDirection( + rcSrcRoot, + rcDstRoot, + viewportTop, + viewportBottom, + chunkPixels, + false); + } + + if (!WarmDeferredScrollViewportChunkForDirection( + rcSrcRoot, + rcDstRoot, + viewportTop, + viewportBottom, + chunkPixels, + false)) + { + return false; + } + + return WarmDeferredScrollViewportChunkForDirection( + rcSrcRoot, + rcDstRoot, + viewportTop, + viewportBottom, + chunkPixels, + true); + } + + private bool WarmDeferredScrollViewportChunkForDirection(Rectangle rcSrcRoot, Rectangle rcDstRoot, + int viewportTop, int viewportBottom, int chunkPixels, bool warmBottom) + { + if (warmBottom) + { + if (m_scrollWarmRangeBottom >= m_deferredScrollWarmupTargetBottom) + return true; + + int nextBottom = Math.Min(m_deferredScrollWarmupTargetBottom, m_scrollWarmRangeBottom + chunkPixels); + int offset = nextBottom - viewportBottom; + if (PrepareToDrawForScrollWarmup(rcSrcRoot, OffsetRootRect(rcDstRoot, offset)) == VwPrepDrawResult.kxpdrInvalidate) + return false; + + ExpandScrollWarmRange(m_scrollWarmRangeTop, nextBottom); + return true; } + + if (m_scrollWarmRangeTop <= m_deferredScrollWarmupTargetTop) + return true; + + int nextTop = Math.Max(m_deferredScrollWarmupTargetTop, m_scrollWarmRangeTop - chunkPixels); + int topOffset = nextTop - viewportTop; + if (PrepareToDrawForScrollWarmup(rcSrcRoot, OffsetRootRect(rcDstRoot, topOffset)) == VwPrepDrawResult.kxpdrInvalidate) + return false; + + ExpandScrollWarmRange(nextTop, m_scrollWarmRangeBottom); + return true; } /// ----------------------------------------------------------------------------------- @@ -1915,6 +2515,13 @@ public virtual bool RefreshDisplay() if (m_rootb?.Site == null) return false; + if (m_refreshPhase == RefreshPhase.Refreshing) + { + m_fRefreshReplayRequested = true; + m_fRefreshPending = true; + return false; + } + var decorator = m_rootb.DataAccess as DomainDataByFlidDecoratorBase; decorator?.Refresh(); @@ -1926,24 +2533,81 @@ public virtual bool RefreshDisplay() return false; } + // PATH-L5: Skip the expensive selection save/restore and drawing + // suspension when the VwRootBox reports no pending changes. + // The root box's NeedsReconstruct flag is set by PropChanged, + // OnStylesheetChange, and other mutation paths. When false, + // Reconstruct() would be a no-op (PATH-R1), so we can avoid + // the managed overhead entirely. + if (!ShouldReconstructDisplay()) + { + m_fRefreshPending = false; + return false; + } + // Rebuild the display... the drastic way. SelectionRestorer restorer = CreateSelectionRestorer(); try { + m_refreshPhase = RefreshPhase.Refreshing; + m_fRefreshReplayRequested = false; + Stopwatch reconstructStopwatch = null; + if (s_enableInteractionTrace) + reconstructStopwatch = Stopwatch.StartNew(); using (new SuspendDrawing(this)) { m_rootb.Reconstruct(); m_fRefreshPending = false; + m_fForceNextRefreshDisplay = false; + } + if (reconstructStopwatch != null) + { + reconstructStopwatch.Stop(); + TraceInteractionTiming( + "RefreshDisplay.Reconstruct", + reconstructStopwatch.ElapsedMilliseconds, + $"Control={Name} ReplayRequested={m_fRefreshReplayRequested}"); } } finally { + m_refreshPhase = RefreshPhase.Idle; restorer?.Dispose(); + if (m_fRefreshReplayRequested) + QueueRefreshDisplay(); } //Enhance: If all refreshable descendants are handled this should return true return false; } + private void QueueRefreshDisplay() + { + if (m_refreshPhase == RefreshPhase.QueuedForReplay || IsDisposed) + return; + if (!IsHandleCreated) + { + m_fRefreshPending = true; + return; + } + + m_refreshPhase = RefreshPhase.QueuedForReplay; + BeginInvoke((MethodInvoker)delegate + { + m_refreshPhase = RefreshPhase.Idle; + if (IsDisposed) + return; + if (Visible && m_fRootboxMade && m_rootb != null) + RefreshDisplay(); + else + m_fRefreshPending = true; + }); + } + + private bool ShouldReconstructDisplay() + { + return m_fForceNextRefreshDisplay || m_rootb.NeedsReconstruct; + } + /// ------------------------------------------------------------------------------------ /// <summary> /// Creates a new selection restorer. @@ -2030,6 +2694,8 @@ public bool AllowPainting Update(); Invalidate(); } + + QueueDeferredScrollWarmup(); } } else @@ -3166,6 +3832,8 @@ protected override void OnVisibleChanged(EventArgs e) base.OnVisibleChanged(e); if (Visible && m_fRootboxMade && m_rootb != null && m_fRefreshPending) RefreshDisplay(); + if (Visible) + QueueDeferredScrollWarmup(); } /// <summary> @@ -3733,7 +4401,10 @@ protected override void OnLayout(LayoutEventArgs levent) using (new HoldGraphics(this)) { if (DoLayout()) + { Invalidate(); + QueueDeferredScrollWarmup(); + } } } @@ -5449,6 +6120,13 @@ protected bool UpdateScrollRange(int dxdRange, int dxdPos, int dydRange, int dyd /// ----------------------------------------------------------------------------------- protected virtual bool DoLayout() { + m_fDeferredScrollWarmupPending = true; + m_deferredScrollWarmupGeneration++; + m_deferredScrollWarmupTargetTop = int.MinValue; + m_deferredScrollWarmupTargetBottom = int.MinValue; + m_scrollWarmRangeTop = int.MinValue; + m_scrollWarmRangeBottom = int.MinValue; + if (DesignMode && !AllowPaintingInDesigner) return false; diff --git a/Src/Common/SimpleRootSite/SimpleRootSiteTests/SimpleRootSiteTests_DpiLayout.cs b/Src/Common/SimpleRootSite/SimpleRootSiteTests/SimpleRootSiteTests_DpiLayout.cs new file mode 100644 index 0000000000..9463343bd2 --- /dev/null +++ b/Src/Common/SimpleRootSite/SimpleRootSiteTests/SimpleRootSiteTests_DpiLayout.cs @@ -0,0 +1,62 @@ +// Copyright (c) 2026 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System.Drawing; +using NUnit.Framework; + +namespace SIL.FieldWorks.Common.RootSites.SimpleRootSiteTests +{ + internal class DpiLayoutDummyRootSite : SimpleRootSite + { + internal int LayoutWidth + { + get { return m_dxdLayoutWidth; } + set { m_dxdLayoutWidth = value; } + } + + internal Point CurrentDpi + { + get { return Dpi; } + set { Dpi = value; } + } + } + + [TestFixture] + public class DpiLayoutTests + { + [Test] + public void DpiSetter_DoesNotForceLayout_WhenDpiIsUnchanged() + { + var site = new DpiLayoutDummyRootSite(); + try + { + site.LayoutWidth = 320; + site.CurrentDpi = new Point(96, 96); + + Assert.That(site.LayoutWidth, Is.EqualTo(320)); + } + finally + { + site.Dispose(); + } + } + + [Test] + public void DpiSetter_ForcesLayout_WhenDpiChangesAfterLayout() + { + var site = new DpiLayoutDummyRootSite(); + try + { + site.LayoutWidth = 320; + site.CurrentDpi = new Point(144, 144); + + Assert.That(site.LayoutWidth, Is.EqualTo(SimpleRootSite.kForceLayout)); + } + finally + { + site.Dispose(); + } + } + } +} \ No newline at end of file diff --git a/Src/Common/SimpleRootSite/SimpleRootSiteTests/SimpleRootSiteTests_RefreshDisplayNeedsReconstruct.cs b/Src/Common/SimpleRootSite/SimpleRootSiteTests/SimpleRootSiteTests_RefreshDisplayNeedsReconstruct.cs new file mode 100644 index 0000000000..4c524ccdf8 --- /dev/null +++ b/Src/Common/SimpleRootSite/SimpleRootSiteTests/SimpleRootSiteTests_RefreshDisplayNeedsReconstruct.cs @@ -0,0 +1,152 @@ +// Copyright (c) 2026 SIL International +// This software is licensed under the LGPL, version 2.1 or later +// (http://www.gnu.org/licenses/lgpl-2.1.html) + +using System.Windows.Forms; +using Moq; +using NUnit.Framework; +using SIL.FieldWorks.Common.ViewsInterfaces; +using SIL.LCModel.Core.KernelInterfaces; + +namespace SIL.FieldWorks.Common.RootSites.SimpleRootSiteTests +{ + internal class RefreshDisplayDummyRootSite : DummyRootSite + { + public bool RefreshPending => m_fRefreshPending; + + public void SetRootBoxDataAccessForTest(ISilDataAccess dataAccess) + { + SetRootBoxDataAccess(dataAccess); + } + + public void SetRootBoxDataAccessAndRefreshForTest(ISilDataAccess dataAccess) + { + SetRootBoxDataAccessAndRefresh(dataAccess); + } + + public void NotifyDataAccessSemanticsChangedForTest() + { + NotifyDataAccessSemanticsChanged(); + } + + protected override SelectionRestorer CreateSelectionRestorer() + { + return null; + } + } + + [TestFixture] + public class RefreshDisplayNeedsReconstructTests + { + private RefreshDisplayDummyRootSite m_site; + private Mock<IVwRootBox> m_rootbMock; + private Form m_form; + + [SetUp] + public void Setup() + { + m_site = new RefreshDisplayDummyRootSite(); + m_rootbMock = new Mock<IVwRootBox>(MockBehavior.Strict); + m_form = new Form(); + m_form.Controls.Add(m_site); + m_site.Dock = DockStyle.Fill; + m_form.Show(); + m_site.CreateControl(); + + m_rootbMock.SetupGet(rb => rb.Site).Returns(m_site); + m_rootbMock.SetupGet(rb => rb.DataAccess).Returns((ISilDataAccess)null); + m_rootbMock.Setup(rb => rb.LoseFocus()).Returns(true); + m_rootbMock.Setup(rb => rb.Activate(It.IsAny<VwSelectionState>())); + m_rootbMock.Setup(rb => rb.Close()); + m_site.RootBox = m_rootbMock.Object; + } + + [TearDown] + public void TearDown() + { + m_form?.Close(); + m_form?.Dispose(); + m_site?.Dispose(); + } + + [Test] + public void RefreshDisplay_SkipsReconstruct_WhenRootBoxDoesNotNeedReconstruct() + { + m_rootbMock.SetupGet(rb => rb.NeedsReconstruct).Returns(false); + + Assert.That(m_site.RefreshDisplay(), Is.False); + Assert.That(m_site.RefreshPending, Is.False); + m_rootbMock.Verify(rb => rb.Reconstruct(), Times.Never); + } + + [Test] + public void RefreshDisplay_Reconstructs_WhenRootBoxNeedsReconstruct() + { + m_rootbMock.SetupGet(rb => rb.NeedsReconstruct).Returns(true); + m_rootbMock.Setup(rb => rb.Reconstruct()); + + Assert.That(m_site.RefreshDisplay(), Is.False); + Assert.That(m_site.RefreshPending, Is.False); + m_rootbMock.Verify(rb => rb.Reconstruct(), Times.Once); + } + + [Test] + public void NotifyDataAccessSemanticsChanged_Reconstructs_WhenRootBoxDoesNotNeedReconstruct() + { + m_rootbMock.SetupGet(rb => rb.NeedsReconstruct).Returns(false); + m_rootbMock.Setup(rb => rb.Reconstruct()); + + m_site.NotifyDataAccessSemanticsChangedForTest(); + + Assert.That(m_site.RefreshPending, Is.False); + m_rootbMock.Verify(rb => rb.Reconstruct(), Times.Once); + } + + [Test] + public void NotifyDataAccessSemanticsChanged_DefersUntilVisible() + { + m_rootbMock.SetupGet(rb => rb.NeedsReconstruct).Returns(false); + m_rootbMock.Setup(rb => rb.Reconstruct()); + m_site.Visible = false; + + m_site.NotifyDataAccessSemanticsChangedForTest(); + + Assert.That(m_site.RefreshPending, Is.True); + m_rootbMock.Verify(rb => rb.Reconstruct(), Times.Never); + + m_site.Visible = true; + Assert.That(m_site.RefreshDisplay(), Is.False); + Assert.That(m_site.RefreshPending, Is.False); + m_rootbMock.Verify(rb => rb.Reconstruct(), Times.Once); + } + + [Test] + public void SetRootBoxDataAccess_DoesNotReconstruct_WhenSwapIsCheap() + { + var replacementDataAccess = Mock.Of<ISilDataAccess>(); + m_rootbMock.SetupSet(rb => rb.DataAccess = replacementDataAccess); + m_rootbMock.SetupGet(rb => rb.NeedsReconstruct).Returns(false); + + m_site.SetRootBoxDataAccessForTest(replacementDataAccess); + + Assert.That(m_site.RefreshPending, Is.False); + m_rootbMock.VerifySet(rb => rb.DataAccess = replacementDataAccess, Times.Once); + m_rootbMock.Verify(rb => rb.Reconstruct(), Times.Never); + } + + [Test] + public void SetRootBoxDataAccessAndRefresh_Reconstructs_WhenSwapChangesDisplaySemantics() + { + var replacementDataAccess = Mock.Of<ISilDataAccess>(); + m_rootbMock.SetupSet(rb => rb.DataAccess = replacementDataAccess); + m_rootbMock.SetupGet(rb => rb.NeedsReconstruct).Returns(false); + m_rootbMock.Setup(rb => rb.Reconstruct()); + + m_site.SetRootBoxDataAccessAndRefreshForTest(replacementDataAccess); + + Assert.That(m_site.RefreshPending, Is.False); + m_rootbMock.VerifySet(rb => rb.DataAccess = replacementDataAccess, Times.Once); + m_rootbMock.Verify(rb => rb.Reconstruct(), Times.Once); + } + } +} diff --git a/Src/FdoUi/FdoUiCore.cs b/Src/FdoUi/FdoUiCore.cs index 91c6c18497..207fea125a 100644 --- a/Src/FdoUi/FdoUiCore.cs +++ b/Src/FdoUi/FdoUiCore.cs @@ -1021,7 +1021,9 @@ public bool DeleteUnderlyingObject() object command = this; if (m_command != null) command = m_command; - Publisher.Publish(new PublisherParameterObject(EventConstants.DeleteRecord, command)); +#pragma warning disable 618 // suppress obsolete warning + m_mediator.SendMessage("DeleteRecord", command); +#pragma warning restore 618 } else { diff --git a/Src/FwCoreDlgs/CharContextCtrl.cs b/Src/FwCoreDlgs/CharContextCtrl.cs index 37c2fc2ef6..70575f8866 100644 --- a/Src/FwCoreDlgs/CharContextCtrl.cs +++ b/Src/FwCoreDlgs/CharContextCtrl.cs @@ -60,6 +60,7 @@ public delegate void GetContextInfoHandler(int index, out string sKey, private string[] m_fileData; private DataGridView m_tokenGrid; + private string m_scrChecksDllFile; private List<ContextInfo> m_currContextInfoList; private Dictionary<string, List<ContextInfo>> m_contextInfoLists; private LcmCache m_cache; @@ -67,6 +68,7 @@ public delegate void GetContextInfoHandler(int index, out string sKey, private IApp m_app; private CoreWritingSystemDefinition m_ws; private int m_gridRowHeight; + private CheckType m_checkToRun; private string m_sListName; private readonly string m_sInitialScanMsgLabel; private Dictionary<string, string> m_chkParams = new Dictionary<string, string>(); @@ -111,6 +113,12 @@ public void Initialize(LcmCache cache, IWritingSystemContainer wsContainer, ContextFont = contextFont; TokenGrid = tokenGrid; + var isOkToDisplayScripture = m_cache != null && m_cache.ServiceLocator.GetInstance<IScrBookRepository>().AllInstances().Any(); + if (isOkToDisplayScripture) + { + m_scrChecksDllFile = FwDirectoryFinder.BasicEditorialChecksDll; + } + if (m_ws != null) { if (m_ws.RightToLeftScript) @@ -201,6 +209,33 @@ private set } } + /// <summary> + /// Kinds of checks this control might run if activated. + /// </summary> + public enum CheckType + { + /// <summary> + /// Use PunctuationCheck + /// </summary> + Punctuation, + /// <summary> + /// Use CharactersCheck + /// </summary> + Characters + } + + /// ------------------------------------------------------------------------------------ + /// <summary> + /// + /// </summary> + /// ------------------------------------------------------------------------------------ + [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] + public CheckType CheckToRun + { + get { return m_checkToRun; } + set { m_checkToRun = value; } + } + /// ------------------------------------------------------------------------------------ /// <summary> /// @@ -542,8 +577,10 @@ private List<TextTokenSubstring> ReadFile(string fileName) m_fileData = File.ReadAllLines(fileName); NormalizeFileData(); - var data = new TextFileDataSource(m_fileData, - ResourceHelper.GetResourceString("kstidFileLineRef"), CharacterCategorizer); + var data = new TextFileDataSource(m_scrChecksDllFile, + m_checkToRun == CheckType.Punctuation ? "PunctuationCheck" : "CharactersCheck", + m_fileData, + ResourceHelper.GetResourceString("kstidFileLineRef"), m_chkParams, CharacterCategorizer); tokens = data.GetReferences(); } @@ -615,7 +652,7 @@ public class ContextInfo /// <param name="tts">The TextTokenSubstring.</param> /// ------------------------------------------------------------------------------------ internal ContextInfo(PuncPattern pattern, TextTokenSubstring tts) : - this(pattern, tts.Offset, tts.FullTokenText) + this(pattern, tts.Offset, tts.FullTokenText, tts.FirstToken.ScrRefString) { } @@ -627,7 +664,7 @@ internal ContextInfo(PuncPattern pattern, TextTokenSubstring tts) : /// <param name="tts">The TextTokenSubstring.</param> /// ------------------------------------------------------------------------------------ internal ContextInfo(string chr, TextTokenSubstring tts) - : this(chr, tts.Offset, tts.FullTokenText) + : this(chr, tts.Offset, tts.FullTokenText, tts.FirstToken.ScrRefString) { } @@ -640,7 +677,7 @@ internal ContextInfo(string chr, TextTokenSubstring tts) /// <param name="context">The context (a string with the line contents).</param> /// <param name="reference">The reference (line number).</param> /// ------------------------------------------------------------------------------------ - internal ContextInfo(PuncPattern pattern, int offset, string context) + internal ContextInfo(PuncPattern pattern, int offset, string context, string reference) { m_position = pattern.ContextPos; string chr = pattern.Pattern; @@ -657,7 +694,7 @@ internal ContextInfo(PuncPattern pattern, int offset, string context) offset--; } } - Initialize(chr, offset, context); + Initialize(chr, offset, context, reference); } /// ------------------------------------------------------------------------------------ @@ -669,9 +706,9 @@ internal ContextInfo(PuncPattern pattern, int offset, string context) /// <param name="context">The context (a string with the line contents).</param> /// <param name="reference">The reference (line number).</param> /// ------------------------------------------------------------------------------------ - internal ContextInfo(string chr, int offset, string context) + internal ContextInfo(string chr, int offset, string context, string reference) { - Initialize(chr, offset, context); + Initialize(chr, offset, context, reference); } /// ------------------------------------------------------------------------------------ @@ -683,9 +720,10 @@ internal ContextInfo(string chr, int offset, string context) /// <param name="context">The context (a string with the line contents).</param> /// <param name="reference">The reference (line number).</param> /// ------------------------------------------------------------------------------------ - private void Initialize(string chr, int offset, string context) + private void Initialize(string chr, int offset, string context, string reference) { m_chr = chr; + m_ref = reference; int startPos = Math.Max(0, offset - 50); int length = Math.Max(0, (startPos == 0 ? offset : offset - startPos)); diff --git a/Src/FwCoreDlgs/FwCoreDlgsTests/App.config b/Src/FwCoreDlgs/FwCoreDlgsTests/App.config index 07e3601b41..f9c2ca2bbf 100644 --- a/Src/FwCoreDlgs/FwCoreDlgsTests/App.config +++ b/Src/FwCoreDlgs/FwCoreDlgsTests/App.config @@ -4,7 +4,7 @@ <trace autoflush="true" indentsize="4"> <listeners> <clear/> - <add name="FwTraceListener" type="SIL.LCModel.Utils.EnvVarTraceListener, SIL.LCModel.Utils, Version=11.0.0.0, Culture=neutral" + <add name="FwTraceListener" type="SIL.LCModel.Utils.EnvVarTraceListener, SIL.LCModel.Utils" initializeData="assertuienabled='false' assertexceptionenabled='true' logfilename='%temp%/asserts.log'"/> </listeners> </trace> diff --git a/Src/FwCoreDlgs/FwCoreDlgsTests/CharContextCtrlTests.cs b/Src/FwCoreDlgs/FwCoreDlgsTests/CharContextCtrlTests.cs index fc7c4123e5..9b6c31899b 100644 --- a/Src/FwCoreDlgs/FwCoreDlgsTests/CharContextCtrlTests.cs +++ b/Src/FwCoreDlgs/FwCoreDlgsTests/CharContextCtrlTests.cs @@ -9,12 +9,102 @@ using System; using NUnit.Framework; using SIL.LCModel.Utils; +using System.Collections.Generic; using System.Text; +using SIL.FieldWorks.Common.FwUtils; using SIL.LCModel; using SIL.LCModel.Core.Text; namespace SIL.FieldWorks.FwCoreDlgs { + #region class DummyScrInventory + /// ---------------------------------------------------------------------------------------- + /// <summary> + /// Dummy class because NMock can't generate a dynamic mock for this interface. Grr... + /// </summary> + /// ---------------------------------------------------------------------------------------- + internal class DummyScrInventory : IScrCheckInventory + { + internal List<TextTokenSubstring> m_references; + #region IScrCheckInventory Members + + public List<TextTokenSubstring> GetReferences(IEnumerable<ITextToken> tokens, string desiredKey) + { + return m_references; + } + + public string InvalidItems + { + get + { + throw new NotImplementedException(); + } + set + { + throw new NotImplementedException(); + } + } + + public string InventoryColumnHeader + { + get { throw new NotImplementedException(); } + } + + public void Save() + { + throw new NotImplementedException(); + } + + public string ValidItems + { + get + { + throw new NotImplementedException(); + } + set + { + throw new NotImplementedException(); + } + } + + #endregion + + #region IScriptureCheck Members + + public void Check(IEnumerable<ITextToken> toks, RecordErrorHandler record) + { + throw new NotImplementedException(); + } + + public string CheckGroup + { + get { throw new NotImplementedException(); } + } + + public Guid CheckId + { + get { throw new NotImplementedException(); } + } + + public string CheckName + { + get { throw new NotImplementedException(); } + } + + public string Description + { + get { throw new NotImplementedException(); } + } + + public float RelativeOrder + { + get { throw new NotImplementedException(); } + } + + #endregion + } + #endregion + #region class CharContextCtrlTests /// ---------------------------------------------------------------------------------------- /// <summary> diff --git a/Src/FwCoreDlgs/FwHelpAbout.cs b/Src/FwCoreDlgs/FwHelpAbout.cs index 2856f726fe..d7084a5aaf 100644 --- a/Src/FwCoreDlgs/FwHelpAbout.cs +++ b/Src/FwCoreDlgs/FwHelpAbout.cs @@ -249,23 +249,15 @@ protected override void OnHandleCreated(EventArgs e) lblFwVersion.Text = viProvider.MajorVersion; // List the copyright information - try + var acknowledgements = AcknowledgementsProvider.CollectAcknowledgements(); + var list = acknowledgements.Keys.ToList(); + list.Sort(); + var text = viProvider.CopyrightString + Environment.NewLine + viProvider.LicenseString + Environment.NewLine + viProvider.LicenseURL; + foreach (var key in list) { - var acknowledgements = AcknowledgementsProvider.CollectAcknowledgements(); - var list = acknowledgements.Keys.ToList(); - list.Sort(); - var text = viProvider.CopyrightString + Environment.NewLine + viProvider.LicenseString + Environment.NewLine + viProvider.LicenseURL; - foreach (var key in list) - { - text += "\r\n" + "\r\n" + key + "\r\n" + acknowledgements[key].Copyright + " " + acknowledgements[key].Url + " " + acknowledgements[key].LicenseUrl; - } - txtCopyright.Text = text; - } - catch (Exception ex) - { - txtCopyright.Text = "Error loading acknowledgements."; - Console.WriteLine("HelpAbout error loading acknowledgements: " + ex); + text += "\r\n" + "\r\n" + key + "\r\n" + acknowledgements[key].Copyright + " " + acknowledgements[key].Url + " " + acknowledgements[key].LicenseUrl; } + txtCopyright.Text = text; // Set the title bar text Text = string.Format(m_sTitleFmt, viProvider.ProductName); diff --git a/Src/FwCoreDlgs/FwNewLangProjectModel.cs b/Src/FwCoreDlgs/FwNewLangProjectModel.cs index c7a06241b6..c63ff0e1ae 100644 --- a/Src/FwCoreDlgs/FwNewLangProjectModel.cs +++ b/Src/FwCoreDlgs/FwNewLangProjectModel.cs @@ -101,7 +101,10 @@ private enum NewProjStep /// <summary/> public FwNewLangProjectModel(bool useMemoryWsManager = false) { - WritingSystemManager = useMemoryWsManager ? new WritingSystemManager() : new WritingSystemManager(SingletonsContainer.Get<CoreGlobalWritingSystemRepository>()); + WritingSystemManager = useMemoryWsManager + ? FwUtils.CreateWritingSystemManager() + : new WritingSystemManager(SingletonsContainer.Get<CoreGlobalWritingSystemRepository>()); + WritingSystemManager.TemplateFolder = FwDirectoryFinder.TemplateDirectory; CoreWritingSystemDefinition englishWs; WritingSystemManager.GetOrSet("en", out englishWs); _allAnalysis.Add(englishWs); diff --git a/Src/FwCoreDlgs/ValidCharactersDlg.cs b/Src/FwCoreDlgs/ValidCharactersDlg.cs index 2223f1585d..668e926986 100644 --- a/Src/FwCoreDlgs/ValidCharactersDlg.cs +++ b/Src/FwCoreDlgs/ValidCharactersDlg.cs @@ -700,6 +700,8 @@ public ValidCharactersDlg(LcmCache cache, IWritingSystemContainer wsContainer, contextCtrl.Initialize(cache, wsContainer, m_ws, m_app, fnt, gridCharInventory); contextCtrl.Dock = DockStyle.Fill; + contextCtrl.CheckToRun = CharContextCtrl.CheckType.Characters; + colChar.HeaderCell.SortGlyphDirection = SortOrder.Ascending; gridCharInventory.AutoGenerateColumns = false; diff --git a/Src/FwResources/Images/InterlinPlayArrow.bmp b/Src/FwResources/Images/InterlinPlayArrow.bmp deleted file mode 100644 index 30fadef474..0000000000 Binary files a/Src/FwResources/Images/InterlinPlayArrow.bmp and /dev/null differ diff --git a/Src/FwResources/ResourceHelper.cs b/Src/FwResources/ResourceHelper.cs index 066a3de99b..16ae4715a9 100644 --- a/Src/FwResources/ResourceHelper.cs +++ b/Src/FwResources/ResourceHelper.cs @@ -566,16 +566,6 @@ public static Image InterlinPopupArrow get { return Helper.m_imgLst11x12.Images[0]; } } - /// ------------------------------------------------------------------------------------ - /// <summary> - /// Gets the interlinear audio play arrow. - /// </summary> - /// ------------------------------------------------------------------------------------ - public static Image InterlinPlayArrow - { - get { return Helper.m_imgLst11x12.Images[1]; } - } - /// <summary> /// Icon for linking words into phrases. /// </summary> diff --git a/Src/FwResources/ResourceHelperImpl.Designer.cs b/Src/FwResources/ResourceHelperImpl.Designer.cs index 9eb6c417d8..b6cde9fa21 100644 --- a/Src/FwResources/ResourceHelperImpl.Designer.cs +++ b/Src/FwResources/ResourceHelperImpl.Designer.cs @@ -95,7 +95,6 @@ private void InitializeComponent() this.m_imgLst11x12.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("m_imgLst11x12.ImageStream"))); this.m_imgLst11x12.TransparentColor = System.Drawing.Color.Fuchsia; this.m_imgLst11x12.Images.SetKeyName(0, ""); - this.m_imgLst11x12.Images.SetKeyName(1, "InterlinPlayArrow.bmp"); // // m_imgLst12x12 // diff --git a/Src/FwResources/ResourceHelperImpl.resx b/Src/FwResources/ResourceHelperImpl.resx index a94e46e502..258ea640de 100644 --- a/Src/FwResources/ResourceHelperImpl.resx +++ b/Src/FwResources/ResourceHelperImpl.resx @@ -125,7 +125,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAADA - DQAAAk1TRnQBSQFMAgEBDAEAASQBAAEkAQABEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo + DQAAAk1TRnQBSQFMAgEBDAEAARwBAAEcAQABEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo AwABQAMAAUADAAEBAQABCAYAARAYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5 AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA @@ -154,12 +154,12 @@ AQABzAH/AWYBAAL/AZkBAAL/AcwBAAJmAf8BAAFmAf8BZgEAAWYC/wEAAf8CZgEAAf8BZgH/AQAC/wFm AQABIQEAAaUBAANfAQADdwEAA4YBAAOWAQADywEAA7IBAAPXAQAD3QEAA+MBAAPqAQAD8QEAA/gBAAHw AfsB/wEAAaQCoAEAA4ADAAH/AgAB/wMAAv8BAAH/AwAB/wEAAf8BAAL/AgAD//8A/wD/AP8ACgABpASF - AaQ6AAGkAc8D1QHQKgAB/wG8AvcBvAH/CgABpAHPAdsB3AEJAdAKAAG1AYYBtR0AAfMBBwHzAbwB9wH0 + AaQ6AAGkAc8D1QHQKgAB/wHuAvcBvAH/CgABpAHPAdsB3AEJAdAKAAG1AYYBtR0AAfMBBwHzAbwB9wH0 CgABpAHPAdsB3AEJAdAJAAEJAYYBrQGLAbsNAAEvDgAB8wEHAfMBvAH3AfQKAAGkAc8B2wHcAQkB0AgA AbQBiwOtAYsMAAIvApkB8AsAAfMBBwHzAbwB9wH0CgABpAHPAdsB3AEJAdAHAAKtAbQB1QK0Aa0BtAoA Bi8BCAoAAfMBBwHzAbwB9wHzCgABpAHPAdsB3AEJAdAHAAHWAtUBtAEAAtYBrQEJCgACLwMAAS8KAAHz AXMDUgHzCgABpAHPAdsB3AEJAdAIAAIJAwAB1gG0Aa0B8AgAAXkBAAEvAQABLwEAAXgJAAEaAVMBWQEy - AjgBUwEaBQABowSFAc8B2wHcAbsFhQoAAdYBtAHPAfEHAAEvAZ8CAAIvCQAB/wFTAlkCMgJZATIB/wUA + AjgBUwEaBQABowSFAc8B2wHcAbsFhQoAAdYBtAHPAfEHAAEvAZ8CAAIvCQAB9QFTAlkCMgJZATIB9QUA AaMBzwPVAdsB3ALiAdsBGQHVDAAB1gHPAbQB8gcABi8IAAGaBFkBMgNZAZoGAAGjAc8D2QLcAdsBCQHW DgABCQHPAbQB8gcAAZ8BmQIvCQABUwF6AVkDMgNZAVMHAAGkAc8D2QHbAQkB0AQAAUMB9wEAAe8BEAEO AREBEwHxAfcBQwEQAQ4BrQHPAfIIAAEvCgABUwHlAVkBMgFZATIDWQEyCAABpAHPAdsB3AEJAdAFAAH3 @@ -194,7 +194,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAABA - BwAAAk1TRnQBSQFMAgEBBAEAASQBAAEkAQABCwEAAQcBAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo + BwAAAk1TRnQBSQFMAgEBBAEAARwBAAEcAQABCwEAAQcBAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo AwABLAMAAQ4DAAEBAQABCAUAAWgBAhgAAYACAAGAAwACgAEAAYADAAGAAQABgAEAAoACAAPAAQABwAHc AcABAAHwAcoBpgEAATMFAAEzAQABMwEAATMBAAIzAgADFgEAAxwBAAMiAQADKQEAA1UBAANNAQADQgEA AzkBAAGAAXwB/wEAAlAB/wEAAZMBAAHWAQAB/wHsAcwBAAHGAdYB7wEAAdYC5wEAAZABqQGtAgAB/wEz @@ -236,7 +236,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAAG - CQAAAk1TRnQBSQFMAwEBAAEkAQABJAEAASABAAEgAQAE/wEJAQAI/wFCAU0BNgEEBgABNgEEAgABKAMA + CQAAAk1TRnQBSQFMAwEBAAEcAQABHAEAASABAAEgAQAE/wEJAQAI/wFCAU0BNgEEBgABNgEEAgABKAMA AYADAAEgAwABAQEAAQgGAAEQGAABgAIAAYADAAKAAQABgAMAAYABAAGAAQACgAIAA8ABAAHAAdwBwAEA AfABygGmAQABMwUAATMBAAEzAQABMwEAAjMCAAMWAQADHAEAAyIBAAMpAQADVQEAA00BAANCAQADOQEA AYABfAH/AQACUAH/AQABkwEAAdYBAAH/AewBzAEAAcYB1gHvAQAB1gLnAQABkAGpAa0CAAH/ATMDAAFm @@ -285,7 +285,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAABa - CQAAAk1TRnQBSQFMAgEBCAEAASQBAAEkAQABDQEAAQ0BAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo + CQAAAk1TRnQBSQFMAgEBCAEAARwBAAEcAQABDQEAAQ0BAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo AwABNAMAAScDAAEBAQABCAUAAewBBxgAAYACAAGAAwACgAEAAYADAAGAAQABgAEAAoACAAPAAQABwAHc AcABAAHwAcoBpgEAATMFAAEzAQABMwEAATMBAAIzAgADFgEAAxwBAAMiAQADKQEAA1UBAANNAQADQgEA AzkBAAGAAXwB/wEAAlAB/wEAAZMBAAHWAQAB/wHsAcwBAAHGAdYB7wEAAdYC5wEAAZABqQGtAgAB/wEz @@ -334,41 +334,39 @@ <value> AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAADg - BwAAAk1TRnQBSQFMAgEBAgEAASQBAAEkAQABCwEAAQ0BAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo - AwABLAMAAQ0DAAEBAQABCAUAATwBAhgAAYACAAGAAwACgAEAAYADAAGAAQABgAEAAoACAAPAAQABwAHc - AcABAAHwAcoBpgEAATMFAAEzAQABMwEAATMBAAIzAgADFgEAAxwBAAMiAQADKQEAA1UBAANNAQADQgEA - AzkBAAGAAXwB/wEAAlAB/wEAAZMBAAHWAQAB/wHsAcwBAAHGAdYB7wEAAdYC5wEAAZABqQGtAgAB/wEz - AwABZgMAAZkDAAHMAgABMwMAAjMCAAEzAWYCAAEzAZkCAAEzAcwCAAEzAf8CAAFmAwABZgEzAgACZgIA - AWYBmQIAAWYBzAIAAWYB/wIAAZkDAAGZATMCAAGZAWYCAAKZAgABmQHMAgABmQH/AgABzAMAAcwBMwIA - AcwBZgIAAcwBmQIAAswCAAHMAf8CAAH/AWYCAAH/AZkCAAH/AcwBAAEzAf8CAAH/AQABMwEAATMBAAFm - AQABMwEAAZkBAAEzAQABzAEAATMBAAH/AQAB/wEzAgADMwEAAjMBZgEAAjMBmQEAAjMBzAEAAjMB/wEA - ATMBZgIAATMBZgEzAQABMwJmAQABMwFmAZkBAAEzAWYBzAEAATMBZgH/AQABMwGZAgABMwGZATMBAAEz - AZkBZgEAATMCmQEAATMBmQHMAQABMwGZAf8BAAEzAcwCAAEzAcwBMwEAATMBzAFmAQABMwHMAZkBAAEz - AswBAAEzAcwB/wEAATMB/wEzAQABMwH/AWYBAAEzAf8BmQEAATMB/wHMAQABMwL/AQABZgMAAWYBAAEz - AQABZgEAAWYBAAFmAQABmQEAAWYBAAHMAQABZgEAAf8BAAFmATMCAAFmAjMBAAFmATMBZgEAAWYBMwGZ - AQABZgEzAcwBAAFmATMB/wEAAmYCAAJmATMBAANmAQACZgGZAQACZgHMAQABZgGZAgABZgGZATMBAAFm - AZkBZgEAAWYCmQEAAWYBmQHMAQABZgGZAf8BAAFmAcwCAAFmAcwBMwEAAWYBzAGZAQABZgLMAQABZgHM - Af8BAAFmAf8CAAFmAf8BMwEAAWYB/wGZAQABZgH/AcwBAAHMAQAB/wEAAf8BAAHMAQACmQIAAZkBMwGZ - AQABmQEAAZkBAAGZAQABzAEAAZkDAAGZAjMBAAGZAQABZgEAAZkBMwHMAQABmQEAAf8BAAGZAWYCAAGZ - AWYBMwEAAZkBMwFmAQABmQFmAZkBAAGZAWYBzAEAAZkBMwH/AQACmQEzAQACmQFmAQADmQEAApkBzAEA - ApkB/wEAAZkBzAIAAZkBzAEzAQABZgHMAWYBAAGZAcwBmQEAAZkCzAEAAZkBzAH/AQABmQH/AgABmQH/ - ATMBAAGZAcwBZgEAAZkB/wGZAQABmQH/AcwBAAGZAv8BAAHMAwABmQEAATMBAAHMAQABZgEAAcwBAAGZ - AQABzAEAAcwBAAGZATMCAAHMAjMBAAHMATMBZgEAAcwBMwGZAQABzAEzAcwBAAHMATMB/wEAAcwBZgIA - AcwBZgEzAQABmQJmAQABzAFmAZkBAAHMAWYBzAEAAZkBZgH/AQABzAGZAgABzAGZATMBAAHMAZkBZgEA - AcwCmQEAAcwBmQHMAQABzAGZAf8BAALMAgACzAEzAQACzAFmAQACzAGZAQADzAEAAswB/wEAAcwB/wIA - AcwB/wEzAQABmQH/AWYBAAHMAf8BmQEAAcwB/wHMAQABzAL/AQABzAEAATMBAAH/AQABZgEAAf8BAAGZ - AQABzAEzAgAB/wIzAQAB/wEzAWYBAAH/ATMBmQEAAf8BMwHMAQAB/wEzAf8BAAH/AWYCAAH/AWYBMwEA - AcwCZgEAAf8BZgGZAQAB/wFmAcwBAAHMAWYB/wEAAf8BmQIAAf8BmQEzAQAB/wGZAWYBAAH/ApkBAAH/ - AZkBzAEAAf8BmQH/AQAB/wHMAgAB/wHMATMBAAH/AcwBZgEAAf8BzAGZAQAB/wLMAQAB/wHMAf8BAAL/ - ATMBAAHMAf8BZgEAAv8BmQEAAv8BzAEAAmYB/wEAAWYB/wFmAQABZgL/AQAB/wJmAQAB/wFmAf8BAAL/ - AWYBAAEhAQABpQEAA18BAAN3AQADhgEAA5YBAAPLAQADsgEAA9cBAAPdAQAD4wEAA+oBAAPxAQAD+AEA - AfAB+wH/AQABpAKgAQADgAMAAf8CAAH/AwAC/wEAAf8DAAH/AQAB/wEAAv8CAAP/AQAL6wuSFgAB7Anz - AuwJ8QHtFgAB7An/AuwC/wHxAe8F/wHtFgAB7An/AuwC/wEHARUBvAT/Ae0WAAHsBP8BbQT/AuwC/wEH - AQAB6gHyA/8B7RYAAewD/wHrAQAB6wP/AuwC/wEHAgAB7AP/Ae0WAAHsAv8B7AMAAewC/wLsAv8BBwIA - AQ4B7wL/Ae0WAAHsAf8BkgUAAZIB/wLsAv8BBwIAAesB8wL/Ae0WAAHsAf8HEwH/AuwC/wEHAQABFAHw - A/8B7RYAAewJ/wLsAv8BBwERAe8E/wHtFgAB7An/AuwC/wG8Ae0F/wHtFgAB7An0AuwJ8wHtFgAW7BYA - AUIBTQE+BwABPgMAASgDAAEsAwABDQMAAQEBAAEBBQABaBcAA/9pAAs= + ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAABk + BwAAAk1TRnQBSQFMAwEBAAEcAQABHAEAAQsBAAENAQAE/wEJAQAI/wFCAU0BNgEEBgABNgEEAgABKAMA + ASwDAAENAwABAQEAAQgFAAE8AQIYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA + AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5 + AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA + AWYDAAGZAwABzAIAATMDAAIzAgABMwFmAgABMwGZAgABMwHMAgABMwH/AgABZgMAAWYBMwIAAmYCAAFm + AZkCAAFmAcwCAAFmAf8CAAGZAwABmQEzAgABmQFmAgACmQIAAZkBzAIAAZkB/wIAAcwDAAHMATMCAAHM + AWYCAAHMAZkCAALMAgABzAH/AgAB/wFmAgAB/wGZAgAB/wHMAQABMwH/AgAB/wEAATMBAAEzAQABZgEA + ATMBAAGZAQABMwEAAcwBAAEzAQAB/wEAAf8BMwIAAzMBAAIzAWYBAAIzAZkBAAIzAcwBAAIzAf8BAAEz + AWYCAAEzAWYBMwEAATMCZgEAATMBZgGZAQABMwFmAcwBAAEzAWYB/wEAATMBmQIAATMBmQEzAQABMwGZ + AWYBAAEzApkBAAEzAZkBzAEAATMBmQH/AQABMwHMAgABMwHMATMBAAEzAcwBZgEAATMBzAGZAQABMwLM + AQABMwHMAf8BAAEzAf8BMwEAATMB/wFmAQABMwH/AZkBAAEzAf8BzAEAATMC/wEAAWYDAAFmAQABMwEA + AWYBAAFmAQABZgEAAZkBAAFmAQABzAEAAWYBAAH/AQABZgEzAgABZgIzAQABZgEzAWYBAAFmATMBmQEA + AWYBMwHMAQABZgEzAf8BAAJmAgACZgEzAQADZgEAAmYBmQEAAmYBzAEAAWYBmQIAAWYBmQEzAQABZgGZ + AWYBAAFmApkBAAFmAZkBzAEAAWYBmQH/AQABZgHMAgABZgHMATMBAAFmAcwBmQEAAWYCzAEAAWYBzAH/ + AQABZgH/AgABZgH/ATMBAAFmAf8BmQEAAWYB/wHMAQABzAEAAf8BAAH/AQABzAEAApkCAAGZATMBmQEA + AZkBAAGZAQABmQEAAcwBAAGZAwABmQIzAQABmQEAAWYBAAGZATMBzAEAAZkBAAH/AQABmQFmAgABmQFm + ATMBAAGZATMBZgEAAZkBZgGZAQABmQFmAcwBAAGZATMB/wEAApkBMwEAApkBZgEAA5kBAAKZAcwBAAKZ + Af8BAAGZAcwCAAGZAcwBMwEAAWYBzAFmAQABmQHMAZkBAAGZAswBAAGZAcwB/wEAAZkB/wIAAZkB/wEz + AQABmQHMAWYBAAGZAf8BmQEAAZkB/wHMAQABmQL/AQABzAMAAZkBAAEzAQABzAEAAWYBAAHMAQABmQEA + AcwBAAHMAQABmQEzAgABzAIzAQABzAEzAWYBAAHMATMBmQEAAcwBMwHMAQABzAEzAf8BAAHMAWYCAAHM + AWYBMwEAAZkCZgEAAcwBZgGZAQABzAFmAcwBAAGZAWYB/wEAAcwBmQIAAcwBmQEzAQABzAGZAWYBAAHM + ApkBAAHMAZkBzAEAAcwBmQH/AQACzAIAAswBMwEAAswBZgEAAswBmQEAA8wBAALMAf8BAAHMAf8CAAHM + Af8BMwEAAZkB/wFmAQABzAH/AZkBAAHMAf8BzAEAAcwC/wEAAcwBAAEzAQAB/wEAAWYBAAH/AQABmQEA + AcwBMwIAAf8CMwEAAf8BMwFmAQAB/wEzAZkBAAH/ATMBzAEAAf8BMwH/AQAB/wFmAgAB/wFmATMBAAHM + AmYBAAH/AWYBmQEAAf8BZgHMAQABzAFmAf8BAAH/AZkCAAH/AZkBMwEAAf8BmQFmAQAB/wKZAQAB/wGZ + AcwBAAH/AZkB/wEAAf8BzAIAAf8BzAEzAQAB/wHMAWYBAAH/AcwBmQEAAf8CzAEAAf8BzAH/AQAC/wEz + AQABzAH/AWYBAAL/AZkBAAL/AcwBAAJmAf8BAAFmAf8BZgEAAWYC/wEAAf8CZgEAAf8BZgH/AQAC/wFm + AQABIQEAAaUBAANfAQADdwEAA4YBAAOWAQADywEAA7IBAAPXAQAD3QEAA+MBAAPqAQAD8QEAA/gBAAHw + AfsB/wEAAaQCoAEAA4ADAAH/AgAB/wMAAv8BAAH/AwAB/wEAAf8BAAL/AgAD/wEAC+shAAHsCfMB7CEA + AewJ/wHsIQAB7An/AewhAAHsBP8BbQT/AewhAAHsA/8B6wEAAesD/wHsIQAB7AL/AewDAAHsAv8B7CEA + AewB/wGSBQABkgH/AewhAAHsAf8HEwH/AewhAAHsCf8B7CEAAewJ/wHsIQAB7An0AewhAAvsIQABQgFN + AT4HAAE+AwABKAMAASwDAAENAwABAQEAAQEFAAFoFwAD/2kACw== </value> </data> <metadata name="m_imgLst12x12.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> @@ -379,7 +377,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAD8 - BwAAAk1TRnQBSQFMAgEBAgEAASQBAAEkAQABDAEAAQwBAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo + BwAAAk1TRnQBSQFMAgEBAgEAARwBAAEcAQABDAEAAQwBAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo AwABMAMAAQwDAAEBAQABCAUAAUABAhgAAYACAAGAAwACgAEAAYADAAGAAQABgAEAAoACAAPAAQABwAHc AcABAAHwAcoBpgEAATMFAAEzAQABMwEAATMBAAIzAgADFgEAAxwBAAMiAQADKQEAA1UBAANNAQADQgEA AzkBAAGAAXwB/wEAAlAB/wEAAZMBAAHWAQAB/wHsAcwBAAHGAdYB7wEAAdYC5wEAAZABqQGtAgAB/wEz @@ -424,7 +422,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAACu - CAAAAk1TRnQBSQFMAgEBBAEAASQBAAEkAQABCwEAAQsBAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo + CAAAAk1TRnQBSQFMAgEBBAEAARwBAAEcAQABCwEAAQsBAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo AwABLAMAARYDAAEBAQABCAUAAcgBAxgAAYACAAGAAwACgAEAAYADAAGAAQABgAEAAoACAAPAAQABwAHc AcABAAHwAcoBpgEAATMFAAEzAQABMwEAATMBAAIzAgADFgEAAxwBAAMiAQADKQEAA1UBAANNAQADQgEA AzkBAAGAAXwB/wEAAlAB/wEAAZMBAAHWAQAB/wHsAcwBAAHGAdYB7wEAAdYC5wEAAZABqQGtAgAB/wEz @@ -471,564 +469,566 @@ <value> AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAABe - ggAAAk1TRnQBSQFMAgEBOQEAAYQBAAEsAQABEAEAARABAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAFA - AwAB8AMAAQEBAAEgBgAB8BYAAW8CaQHfAaMClgH/AaYCmgH/AaYCmgH/AacCmgH/AagCmgH/AagCmwH/ - AakCmwH/AakCmwH/AaoCmwH/AaUCkgH/AaMCjwH/AaMCjwH/AXUCbAHfxAADIQEvAa4CoAH/AZQCiQH/ + ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAADS + ggAAAk1TRnQBSQFMAgEBOQEAAWwBAAEkAQABEAEAARABAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAFA + AwAB8AMAAQEBAAEgBgAB8BYAAXYCbgHfAaMClgH/AaYCmgH/AaYCmgH/AacCmgH/AagCmgH/AagCmwH/ + AakCmwH/AakCmwH/AaoCmwH/AaUCkgH/AaMCjwH/AaMCjwH/AXwCcAHfxAADIAEvAa4CoAH/AZQCiQH/ AWQCWAH/AbICpgH/AbsCrwH/AbsCrwH/AWMCWAH/AUcCPAH/AWMCWAH/AWMCWAH/AbkCrwH/Ad4C1QH/ - Ad4C1QH/AbUCowH/AyEBL8AAA0ABbwHFArUB/wF7AmsB/wGnApIB/wGxApwB/wGxApwB/wGxApwB/wFR - AkUB/wEyAikB/wFRAkUB/wFRAkUB/wGSAoAB/wGxApwB/wGxApwB/wHAAq0B/wNHAX/AAAFHAkYBfwHe - AtIB/wHPAsAB/wHOAr8B/wHNAr4B/wHNAr0B/wHMArwB/wHLArsB/wHKAroB/wHJArkB/wHJArgB/wHI - ArcB/wHHArYB/wHGArUB/wHVAsYB/wNHAX/AAAFHAkYBfwHvAuEB/wGWApEB/wOYAf8B2ALPAf8B6ALf - Af8B8QLtAf8B8wLvAf8B8wLvAf8B8QLtAf8B6ALfAf8BzALDAf8DcgH/AcECvAH/AegC2gH/A0ABb8AA - AyoBPwHKArcB/wHDArcB/wGjApkB/wHuAukB/wHtAucB/wHfAtQB/wHYAssB/wHYAssB/wHdAtEB/wHq - AuMB/wHqAuMB/wGZApEB/wHBArUB/wHOArsB/wMqAT/AAAMXAR8BtQKfAf8B0wLBAf8BywK7Af8B0ALC - Af8BzwK+Af8B1QLHAf8BdgG5AYQB/wF0AbYBgAH/AdACwQH/Ac8CvgH/AcgCtwH/AcMCsQH/AdMCwQH/ - AbsCowH/AxcBH8QAAaUCjgH/Ac4CuQH/AbECmwH/AboCpwH/AbwBsgGrAf8BPgGcAVYB/wE4AfABmQH/ - ASMBwgFBAf8BNgGSATAB/wG9AbMBqwH/AcACrQH/AakClAH/Ac4CuQH/AaoCkgH/yAABZAJhAb8B1AK7 - Af8BxAKyAf8BbAF4AV0B/wFjAcIBhAH/AWYB8wGlAf8BKgHZAU4B/wElAdYBRgH/ARoB0QFNAf8BHgG0 - AT4B/wF1AYMBYAH/Ab4CrAH/AdQCuwH/AW8CaAHPyAABVAJSAZ8B1wK+Af8BkAGnAYYB/wG2AeMBxQH/ - AWkB7AGWAf8BIAHcAVIB/wEgAdwBUgH/ASAB3AFSAf8BIAHcAVIB/wEVAeIBYwH/AQgB3gFrAf8BegGx - AXcB/wHUArwB/wFkAmEBv8gAAUcCRgF/AdsCwAH/AZEBqAGGAf8BowHFAaEB/wFfAbUBZgH/ARcB/wGj - Af8BGQHpAW4B/wEfAdIBSQH/ASsBowENAf8BXAGvAVkB/wFQAZwBWgH/AXsBswF4Af8B2gK/Af8BRwJG - AX/IAAMqAT8BwQKnAf8ByQK3Af8BnAKKAf8BiAGVAXUB/wFFAf8BtQH/ASEB7QF7Af8BGAHbAVgB/wEi - AbUBKAH/AZ8BqwGJAf8BjAJ5Af8ByQK3Af8B1QK6Af8DQAFvyAADIQEvAbUCngH/AbUCqAH/AbQCpwH/ - AaABrgGPAf8BcgH/AccB/wEoAfEBigH/ARIB5AFoAf8BGQHHAUQB/wGlAbIBjwH/AaYCmQH/AbgCrAH/ - AcUCrAH/AyoBP8wAAVoCWAGvAWECXgG/AWQCYQG/AWEBaAFdAc8BoQH/AdoB/wEvAfYBlwH/AQsB7AF3 - Af8BEAHaAV8B/wFlAWgBXQHPAWECXgG/AWECXgG/AVoCWAGvAwwBD9gAAyoBPwHPAf8B7AH/ATYB+gGk - Af8BBAH1AYkB/wEHAewBegH/AyoBP+gAAyoBPwHBAeIBvAH/ATcB4gGDAf8BCgHjAW4B/wEMAeIBbAH/ - AyoBP/8AZQADIQEvA0ABbwNGAX8DRgF/A0YBfwNGAX8DQAFvAyEBLygAAyoBPwMyAU8DKgE/AyoBPzsA - Af80AAGRAUkBJgH/LAADKgE/AW8CaQHfAckCxAH/AfIC8QH/AfYC8wH/Ae8C6gH/AekC4AH/AeIC1wH/ - AdQCxgH/AbICogH/AW8CZgHfAzIBTxQAAwwBDwNHAX8BlgKNAe8B0QLHAf8B2QLPAf8B2QLQAf8B1ALJ - Af8BnAKQAe8DRwF/AwwBDysAAf8DAAH/AwAB/ywAAZABSAEmAf8BtgFiAToB/wGrAVwBNgH/JAADFwEf - AYoCdgH/Ad8C1gH/AfoC+QH/Af0C/AH/AewC5QH/AecC3wH/AeIC2AH/Ad4C0gH/AdsCzgH/AdQCxAH/ - AcwCugH/AZQCgAH/AyEBLwwAAyEBLwFvAmwBzwHjAtwB/wHkAtsB/wHeAtMB/wHcAtIB/wHcAtIB/wHe - AtQB/wHkAtsB/wHlAt0B/wF2Am8BzwMMAQ8jAAH/AwAB/wMAAf8DAAH/AwAB/yAABAEBnQFRASwB/wHB - AXABSQH/AdUBdwFJAf8BwgFqAUAB/wGpAVsBNQH/IAADQAFvAagCkAH/AdUCxwH/Ac8CvwH/AcYCswH/ - AccCtAH/AccCtAH/AcgCtQH/AckCtwH/AcsCuQH/Ac8CvwH/AdACvwH/Aa0ClQH/AUcCRgF/CAADDAEP - AW4CaAHPAegC4QH/AdwC0gH/Ad0C0wH/Ad8C1gH/AeAC1wH/AeAC1wH/Ad8C1gH/Ad4C1AH/Ad4C2wH/ - AewC8QH/AXcCbwHPAwwBDyUAAWQBAAH/BwAB/xwABAEBtAFeATYB/wHVAYMBVwH/AesBoQF7Af8B4wGU - AWsB/wHkAZUBbAH/Ab8BaAE9Af8BwAGFAWYB/xwAA0YBfwGtApQB/wGtApUB/wHCArAB/wHYAswB/wHa - As8B/wHhAtcB/wHcAtAB/wHOAr4B/wHHArUB/wG1Ap8B/wGwApgB/wG3AqEB/wNGAX8IAANHAX8B4wLb - Af8B3ALRAf8B3gLUAf8B4ALYAf8B4gLbAf8B4wLcAf8B4wLdAf8B4gLbAf8B3QLhAf8B1QLuAf8B3QLt - Af8B6wHuAe0B/wNHAX8lAAFkAQAB/yQAAekBqQGJAf8B6gGiAYAB/wHrAaMBgQH/AeUBnAF1Af8EAAHp - AasBjAH/AeoBogGBAf8BtAFgATgB/wM9AWkYAANGAX8BoQKIAf8B2ALNAf8B+gL5Af8B/QL8Af8B9gLz - Af8B7wLqAf8B6QLgAf8B4gLXAf8B2wLOAf8B1ALEAf8BxgKzAf8BpAKMAf8DRgF/CAABkAKHAe8B4wLa - Af8B3QLTAf8B4ALXAf8B4wLcAf8B3wLWAf8B1QLIAf8B1ALGAf8B3QLYAf8B3ALyAf8B1AHzAe8B/wHY - AfIB6AH/AegB8QHrAf8BoQKWAe8TAAH/EQABgQEAAf8TAAH/EAADMQFNAfMBugGdAf8B7wG1AZkB/wwA - AeoBqAGHAf8B4AGUAWsB/wGyAWMBPwH/Az0BaRQAAzIBTwGfAokB/wHdAtMB/wHnAt8B/wHeAtIB/wHW - AsgB/wHWAscB/wHVAsYB/wHUAsUB/wHWAsgB/wHVAsUB/wHNArsB/wGmApAB/wM5AV8EAAMqAT8BywLC - Af8B3ALRAf8B3gLVAf8B4gLaAf8B3QLUAf8BzQK+Af8B3ALWAf8B2wLVAf8BywK7Af8B3AHlAeEB/wHk - AfMB6wH/AeYB7QHrAf8B7wHuAfEB/wHfAdYB1wH/AyoBPwsAAf8DAAH/EQABgQEAAf8TAAH/AwAB/ygA - AeoBqgGLAf8B2QGFAVkB/wG7AXkBWgH/Az0BaRAAA0YBfwGvApcB/wG9AqgB/wG5AqMB/wG4AqIB/wHK - ArkB/wHJArcB/wHHArUB/wHFArIB/wGtApgB/wGxAp4B/wGmApYB/wGzAp4B/wNHAYIEAAMyAU8B2AHP - AdIB/wHiAdEB2QH/AeAB1QHXAf8B4gLbAf8BzQK+Af8B2QLTAf8BsgKnAf8BuAKtAf8B3ALWAf8B1AHE - AckB/wH2Ad8B9QH/AfYB2QH0Af8B9gHgAfMB/wHlAdkB3gH/AzIBTwcAAf8DAAH/AwAB/wEAAWQBAAH/ - AQABZAEAAf8BAAGBAQAB/wEAAYEBAAH/AZkB/wHMAf8BAAGBAQAB/wEAAYEBAAH/AQABZAEAAf8BAAFk - AQAB/wMAAf8DAAH/AwAB/ygAAeoBqgGIAf8B1QGAAVAB/wG9AYMBZQH/Az0BaQwAA0YBfwGoAo8B/wG9 - AqsB/wHqAuUB/wH9AvwB/wH2AvMB/wHvAuoB/wHpAuAB/wHPAsYB/wGnAp0B/wFpAW8BmwH/AYECbwH/ - AYACbgH/AUsCSgGMBAADMgFPAdsBzwHWAf8B8AHQAewB/wHyAcgB7gH/AfMBzAHwAf8BzgG1Ab4B/wHW - As8B/wGZApEB7wGbApIB7wHcAtYB/wHPAsEB/wHuAeYB6gH/Ae4B5AHqAf8B8AHlAewB/wHkAdoB3QH/ - AzIBTwsAAf8DAAH/EQABgQEAAf8TAAH/AwAB/zAAAewBtQGZAf8B0wF7AU8B/wG7AYEBYgH/Az0BaQgA - AzkBXwGcAoYB/wHfAtYB/wH6AvkB/wHzAu8B/wHsAuUB/wHhAtcB/wHeAtIB/wFJAYMB4QH/AUYBeQHQ - Af8BGgGQAf4B/wE/AWEBywH/ATIBaQHJAf8DRgGBAx8BLAMqAT8B1AHLAc8B/wHyAeIB8QH/Ae8B4gHx - Af8C6AHtAf8B2ALbAf8BtAKfAf8B0QLIAf8B2gLTAf8BwgKyAf8B4QLZAf8B7QLoAf8B7ALnAf8B7QLo - Af8B2wLRAf8DKgE/DwAB/xEAAYEBAAH/EwAB/wgAATMBLgEpAf8DpAH/BAADrAH/AyAB/wMUAf8DKgH/ - A04BlQQAAVECUAGcAzQB/wMgAf8BGgETAQ8B/wGyAWUBQQH/AbgBdgFXAf8DPQFpBAADRgF/AagCkAH/ + Ad4C1QH/AbUCowH/ASECIAEvwAADQQFvAcUCtQH/AXsCawH/AacCkgH/AbECnAH/AbECnAH/AbECnAH/ + AVECRQH/ATICKQH/AVECRQH/AVECRQH/AZICgAH/AbECnAH/AbECnAH/AcACrQH/AUkCSAF/wAABSAJH + AX8B3gLSAf8BzwLAAf8BzgK/Af8BzQK+Af8BzQK9Af8BzAK8Af8BywK7Af8BygK6Af8ByQK5Af8ByQK4 + Af8ByAK3Af8BxwK2Af8BxgK1Af8B1QLGAf8BSQJIAX/AAAFIAkcBfwHvAuEB/wGWApEB/wOYAf8B2ALP + Af8B6ALfAf8B8QLtAf8B8wLvAf8B8wLvAf8B8QLtAf8B6ALfAf8BzALDAf8DcgH/AcECvAH/AegC2gH/ + AUICQQFvwAADKgE/AcoCtwH/AcMCtwH/AaMCmQH/Ae4C6QH/Ae0C5wH/Ad8C1AH/AdgCywH/AdgCywH/ + Ad0C0QH/AeoC4wH/AeoC4wH/AZkCkQH/AcECtQH/Ac4CuwH/AyoBP8AAAxYBHwG1Ap8B/wHTAsEB/wHL + ArsB/wHQAsIB/wHPAr4B/wHVAscB/wF2AbkBhAH/AXQBtgGAAf8B0ALBAf8BzwK+Af8ByAK3Af8BwwKx + Af8B0wLBAf8BuwKjAf8DFgEfxAABpQKOAf8BzgK5Af8BsQKbAf8BugKnAf8BvAGyAasB/wE+AZwBVgH/ + ATgB8AGZAf8BIwHCAUEB/wE2AZIBMAH/Ab0BswGrAf8BwAKtAf8BqQKUAf8BzgK5Af8BqgKSAf/IAAFs + AmUBvwHUArsB/wHEArIB/wFsAXgBXQH/AWMBwgGEAf8BZgHzAaUB/wEqAdkBTgH/ASUB1gFGAf8BGgHR + AU0B/wEeAbQBPgH/AXUBgwFgAf8BvgKsAf8B1AK7Af8BegJvAc/IAAFYAlUBnwHXAr4B/wGQAacBhgH/ + AbYB4wHFAf8BaQHsAZYB/wEgAdwBUgH/ASAB3AFSAf8BIAHcAVIB/wEgAdwBUgH/ARUB4gFjAf8BCAHe + AWsB/wF6AbEBdwH/AdQCvAH/AWwCZQG/yAABSAJHAX8B2wLAAf8BkQGoAYYB/wGjAcUBoQH/AV8BtQFm + Af8BFwH/AaMB/wEZAekBbgH/AR8B0gFJAf8BKwGjAQ0B/wFcAa8BWQH/AVABnAFaAf8BewGzAXgB/wHa + Ar8B/wFIAkcBf8gAAyoBPwHBAqcB/wHJArcB/wGcAooB/wGIAZUBdQH/AUUB/wG1Af8BIQHtAXsB/wEY + AdsBWAH/ASIBtQEoAf8BnwGrAYkB/wGMAnkB/wHJArcB/wHVAroB/wNBAW/IAAMgAS8BtQKeAf8BtQKo + Af8BtAKnAf8BoAGuAY8B/wFyAf8BxwH/ASgB8QGKAf8BEgHkAWgB/wEZAccBRAH/AaUBsgGPAf8BpgKZ + Af8BuAKsAf8BxQKsAf8DKgE/zAABXwJcAa8BZwJjAb8BbAJnAb8BZAFvAVwBzwGhAf8B2gH/AS8B9gGX + Af8BCwHsAXcB/wEQAdoBXwH/AWgBbwFcAc8BZgJjAb8BZwJjAb8BXwJcAa8DCwEP2AABKQEqASkBPwHP + Af8B7AH/ATYB+gGkAf8BBAH1AYkB/wEHAewBegH/ASkBKgEpAT/oAAEpASoBKQE/AcEB4gG8Af8BNwHi + AYMB/wEKAeMBbgH/AQwB4gFsAf8BKQEqASkBP/8AZQADIAEvAUECQAFvAUcCRgF/AUcCRgF/AUcCRgF/ + AUcCRgF/A0EBbwMgAS8oAAMqAT8DMgFPAyoBPwMqAT87AAH/NAABkQFJASYB/ywAAyoBPwF1AmwB3wHJ + AsQB/wHyAvEB/wH2AvMB/wHvAuoB/wHpAuAB/wHiAtcB/wHUAsYB/wGyAqIB/wF1AmgB3wMyAU8UAAML + AQ8BSgJJAX8BnwKSAe8B0QLHAf8B2QLPAf8B2QLQAf8B1ALJAf8BowKWAe8BSwJJAX8DCwEPKwAB/wMA + Af8DAAH/LAABkAFIASYB/wG2AWIBOgH/AasBXAE2Af8kAAMWAR8BigJ2Af8B3wLWAf8B+gL5Af8B/QL8 + Af8B7ALlAf8B5wLfAf8B4gLYAf8B3gLSAf8B2wLOAf8B1ALEAf8BzAK6Af8BlAKAAf8DIAEvDAADIAEv + AXoCcgHPAeMC3AH/AeQC2wH/Ad4C0wH/AdwC0gH/AdwC0gH/Ad4C1AH/AeQC2wH/AeUC3QH/AYECeAHP + AwsBDyMAAf8DAAH/AwAB/wMAAf8DAAH/IwABAQGdAVEBLAH/AcEBcAFJAf8B1QF3AUkB/wHCAWoBQAH/ + AakBWwE1Af8gAAFBAkABbwGoApAB/wHVAscB/wHPAr8B/wHGArMB/wHHArQB/wHHArQB/wHIArUB/wHJ + ArcB/wHLArkB/wHPAr8B/wHQAr8B/wGtApUB/wFIAkcBfwgAAwsBDwF2Am8BzwHoAuEB/wHcAtIB/wHd + AtMB/wHfAtYB/wHgAtcB/wHgAtcB/wHfAtYB/wHeAtQB/wHeAtsB/wHsAvEB/wGCAnoBzwMLAQ8lAAFk + AQAB/wcAAf8fAAEBAbQBXgE2Af8B1QGDAVcB/wHrAaEBewH/AeMBlAFrAf8B5AGVAWwB/wG/AWgBPQH/ + AcABhQFmAf8cAANGAX8BrQKUAf8BrQKVAf8BwgKwAf8B2ALMAf8B2gLPAf8B4QLXAf8B3ALQAf8BzgK+ + Af8BxwK1Af8BtQKfAf8BsAKYAf8BtwKhAf8BRwJGAX8IAAFJAkgBfwHjAtsB/wHcAtEB/wHeAtQB/wHg + AtgB/wHiAtsB/wHjAtwB/wHjAt0B/wHiAtsB/wHdAuEB/wHVAu4B/wHdAu0B/wHrAe4B7QH/AUsCSgF/ + JQABZAEAAf8kAAHpAakBiQH/AeoBogGAAf8B6wGjAYEB/wHlAZwBdQH/BAAB6QGrAYwB/wHqAaIBgQH/ + AbQBYAE4Af8DPQFpGAADRgF/AaECiAH/AdgCzQH/AfoC+QH/Af0C/AH/AfYC8wH/Ae8C6gH/AekC4AH/ + AeIC1wH/AdsCzgH/AdQCxAH/AcYCswH/AaQCjAH/AUcCRgF/CAABlgKOAe8B4wLaAf8B3QLTAf8B4ALX + Af8B4wLcAf8B3wLWAf8B1QLIAf8B1ALGAf8B3QLYAf8B3ALyAf8B1AHzAe8B/wHYAfIB6AH/AegB8QHr + Af8BrAKfAe8TAAH/EQABgQEAAf8TAAH/EAABMQIwAU0B8wG6AZ0B/wHvAbUBmQH/DAAB6gGoAYcB/wHg + AZQBawH/AbIBYwE/Af8DPQFpFAADMgFPAZ8CiQH/Ad0C0wH/AecC3wH/Ad4C0gH/AdYCyAH/AdYCxwH/ + AdUCxgH/AdQCxQH/AdYCyAH/AdUCxQH/Ac0CuwH/AaYCkAH/AzkBXwQAAyoBPwHLAsIB/wHcAtEB/wHe + AtUB/wHiAtoB/wHdAtQB/wHNAr4B/wHcAtYB/wHbAtUB/wHLArsB/wHcAeUB4QH/AeQB8wHrAf8B5gHt + AesB/wHvAe4B8QH/Ad8B1gHXAf8DKgE/CwAB/wMAAf8RAAGBAQAB/xMAAf8DAAH/KAAB6gGqAYsB/wHZ + AYUBWQH/AbsBeQFaAf8DPQFpEAABRgJFAX8BrwKXAf8BvQKoAf8BuQKjAf8BuAKiAf8BygK5Af8ByQK3 + Af8BxwK1Af8BxQKyAf8BrQKYAf8BsQKeAf8BpgKWAf8BswKeAf8BSAJHAYIEAAMyAU8B2AHPAdIB/wHi + AdEB2QH/AeAB1QHXAf8B4gLbAf8BzQK+Af8B2QLTAf8BsgKnAf8BuAKtAf8B3ALWAf8B1AHEAckB/wH2 + Ad8B9QH/AfYB2QH0Af8B9gHgAfMB/wHlAdkB3gH/AzIBTwcAAf8DAAH/AwAB/wEAAWQBAAH/AQABZAEA + Af8BAAGBAQAB/wEAAYEBAAH/AZkB/wHMAf8BAAGBAQAB/wEAAYEBAAH/AQABZAEAAf8BAAFkAQAB/wMA + Af8DAAH/AwAB/ygAAeoBqgGIAf8B1QGAAVAB/wG9AYMBZQH/Az0BaQwAAUYCRQF/AagCjwH/Ab0CqwH/ + AeoC5QH/Af0C/AH/AfYC8wH/Ae8C6gH/AekC4AH/Ac8CxgH/AacCnQH/AWkBbwGbAf8BgQJvAf8BgAJu + Af8BSgJJAYwEAAMyAU8B2wHPAdYB/wHwAdAB7AH/AfIByAHuAf8B8wHMAfAB/wHOAbUBvgH/AdYCzwH/ + AaACmgHvAaICmwHvAdwC1gH/Ac8CwQH/Ae4B5gHqAf8B7gHkAeoB/wHwAeUB7AH/AeQB2gHdAf8DMgFP + CwAB/wMAAf8RAAGBAQAB/xMAAf8DAAH/MAAB7AG1AZkB/wHTAXsBTwH/AbsBgQFiAf8DPQFpCAADOQFf + AZwChgH/Ad8C1gH/AfoC+QH/AfMC7wH/AewC5QH/AeEC1wH/Ad4C0gH/AUkBgwHhAf8BRgF5AdAB/wEa + AZAB/gH/AT8BYQHLAf8BMgFpAckB/wNFAYEDHwEsAyoBPwHUAcsBzwH/AfIB4gHxAf8B7wHiAfEB/wLo + Ae0B/wHYAtsB/wG0Ap8B/wHRAsgB/wHaAtMB/wHCArIB/wHhAtkB/wHtAugB/wHsAucB/wHtAugB/wHb + AtEB/wMqAT8PAAH/EQABgQEAAf8TAAH/CAABMwEuASkB/wOkAf8EAAOsAf8DIAH/AxQB/wMqAf8BTgJN + AZUEAAFRAk8BnAM0Af8DIAH/ARoBEwEPAf8BsgFlAUEB/wG4AXYBVwH/Az0BaQQAAUYCRQF/AagCkAH/ AdMCxgH/AdoCzgH/AeQC2wH/AesC5AH/AeUC3AH/AWYBmgHuAf8BNAFlAe4B/wEZAcUB/gH/ASsBzwH+ - Af8BHwGzAf4B/wEgAWcB6AH/AU8BVAFiAcEDGgEkBAABkAKMAe8B5gHwAekB/wHXAe8B5AH/AcsB9gHt - Af8B0QH1AfMB/wHQAtYB/wG+Aq0B/wHJArsB/wHgAtgB/wHtAukB/wHtAukB/wHtAugB/wHyAu4B/wGf - ApIB7yUAAWQBAAH/HAADpAH/AxgB/wMpAf8DKQH/A4kB/wNTAf8EAAORAf8DZQH/A0cB/wOjAf8EAAOD - Af8BjwFyAWQB/wHUAYMBWAH/AccBnQGIAf8EAANGAX8BwwKxAf8B4ALXAf8B2ALMAf8B0ALAAf8BygK4 - Af8BzAK6Af8BXQGHAeUB/wEVAcUB/gH/AVkB5gH+Af8BnAH1Av8BcgHxAv8BHQG8Af4B/wFAAW4BnwHg - AyMBMgQAA0cBfwHrAe4B7QH/Ad8B8gHwAf8B1QHvAe4B/wHWAu0B/wHiAt8B/wHpAuQB/wHrAucB/wHs - AugB/wHtAugB/wHuAukB/wHvAuoB/wHtAucB/wNHAX8lAAFkAQAB/yAAAVgBVAFRAf8EAAEoASQBIQH/ - A8wB/wMLAf8DOgH/AXQBcAFtAf8DvgH/A2gB/wPSAf8MAAM9AWkB3wGbAXcB/wQAA0YBfwHLAr0B/wHD - ArIB/wHCAq4B/wHHArQB/wHIArUB/wGpAaYBxQH/AR4BfAH+Af8BGAHFAf4B/wF0AfEC/wHNAfoC/wGT - AfQC/wEmAbwB/gH/ATkBbwGqAegDFQEcBAADDAEPAW8CbgHPAe0C8wH/Ad0C5gH/Ad4C1gH/AeYC3wH/ - AekC4wH/AesC5QH/AewC5wH/Ae0C6AH/Ae8C6gH/AfMC7wH/AXICbgHPAwwBDx8AAf8DAAH/AwAB/wMA - Af8DAAH/GAADzAH/A3YB/wPMAf8D0wH/A1oB/wQAA6MB/wOaAf8DaAH/A6gB/wQAA4QB/wOVAf8MAAMX - AR8BiAJ2Af8BtwKjAf8BqgKSAf8BvgKrAf8BxwK0Af8BygK3Af8BfAGPAdgB/wETAaAB/gH/ATsB4gH+ - Af8BbQHwAv8BTQHkAf4B/wEWAXoB/gH/AUwBTwFWAZkDDwETCAADDAEPAW4CaAHPAeMC3AH/AeoC4wH/ - AegC4AH/AegC4gH/AeoC5AH/Ae0C6AH/AfIC7gH/AewC5wH/AXICbgHPAwwBDycAAf8DAAH/AwAB/yAA - A4EB/wQAA9EB/wNPAf8DZAH/A04BlQQAAVECUAGcA1oB/wNLAf8DRwH/FAADKgE/AWECVwHfAYgCcQH/ - AZ4ChgH/AawClgH/AboCqQH/AXcBhAHDAf8BRgGLAdYB/wEVAaEB/gH/ARcBoAH+Af8BKQF7AdAB8gEg - AaQB/gH/AToCOwFiEAADDAEPA0cBfwGRAosB7wHRAsgB/wHaAtIB/wHbAtMB/wHVAswB/wGWAo4B7wNH - AX8DDAEPLwAB/2wAAyEBLwNAAW8DRgF/A0YBfwNGAX8CRgFHAX8BTAFoAYwBzwFLAUwBUAGPAU8BWAFn - Aa8kAAMqAT8DMgFPAzIBTwMqAT9cAAOGAf8DhgH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/BwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/xsAAf8DAAH/MwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wwAA4Yx/wMAAf8HAAH/A8wB/wPMAf8DzAH/A8wB/wPMAf8DzAH/A8wB/wPMAf8DzAH/ - A8wB/wPMAf8DzAH/A8wB/wPMAf8DAAH/EwAB/wMAAf8DwAH/A8AB/wMAAf8DAAH/KAADhgH/A8wB/wPM - Af8DzAH/A8wB/wPMAf8DzAH/A8wB/wPMAf8DAAH/DAADhjH/AwAB/wcAHv8BZAExAv8BZAExAv8BZAEx - Av8BZAExCf8DzAH/AwAB/wsAAf8DAAH/A8AB/wMAAf8DwAH/AYECAAH/A8AF/wMAAf8DAAH/GAADhgH/ - AwAB/wOGBf8BmQj/AgAC/wIAAf8BmQf/A8wB/wMAAf8MAAOGBf8DhgH/A4YB/wOGAf8DhgH/A4YF/wOG - Af8DhgH/A4YB/wOGBf8DAAH/BwA1/wPMAf8DAAH/BwAB/wPAAf8DAAH/A8AB/wMAAf8DwAH/A8AB/wPA - Bv8BZAExBf8DAAH/AwAB/xAAA4YF/wOGAf8BmQf/AZkE/wIAAv8CAAX/AZkD/wPMAf8DAAH/DAADhjH/ - AwAB/wcABv8BZAExAv8BZAExAv8BZAExAv8BZAExCv8BZAExAv8BZAExAv8BZAExAv8BZAExAv8BZAEx - Av8BZAExAf8DzAH/AwAB/wcAAf8DwAH/AwAB/wPAAf8DAAH/A8AB/wGBAgAB/wPACv8BZAExAv8BZAEx - Bf8DAAH/DAADhgX/A4YF/wGZB/8BmQf/AZkH/wPMAf8DAAH/DAADhgX/A4YB/wOGAf8DhgH/A4YB/wOG - Bf8DhgH/A4YB/wOGAf8DhgX/AwAB/wcANf8DzAH/AwAB/wcAAf8DwAH/AwAB/wPAAf8DAAH/A8AB/wPA - Af8DwAb/AWQBMQr/AWQBMQH/AwAB/wwAA4YF/wOGCf8BmQT/AgAC/wIABf8BmQP/A8wB/wMAAf8MAAOG - Mf8DAAH/BwAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGB - AgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wMAAf8HAAH/A8AB/wMAAf8DwAH/AwAB/wPA - Af8BgQIAAf8DwAr/AWQBMQL/AWQBMQX/AwAB/wwAA4YF/wOGBf8BmQj/AgAC/wIAAv8BzAGZBf8DzAH/ - AwAB/wwAA4YJ/wOGAf8DhgH/A4YJ/wOGAf8DhgH/A4YB/wOGBf8DAAH/BwAB/wGBAgAC/wHMAQAC/wHM - AQAC/wHMAQAC/wHMAQAB/wGBAgAB/wGBAgAC/wHMAQAC/wHMAQAC/wHMAQAC/wHMAQAC/wHMAQAC/wHM - AQAB/wGBAgAB/wMAAf8HAAH/A8AB/wMAAf8DwAH/AwAB/wPAAf8DwAH/A8AG/wFkATEK/wFkATEB/wMA - Af8MAAOGBf8DhhL/AgAC/wIAAv8BzAGZAf8DzAH/AwAB/wwAA4Yx/wMAAf8HAAH/AYECAAH/AYECAAH/ - AYECAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/ - AYECAAH/AYECAAH/AwAB/wcAAf8DwAH/AwAB/wPAAf8DAAH/A8AB/wPAAf8Dhgr/AWQBMQL/AWQBMQX/ - AwAB/wwAA4YF/wOGBv8CAAL/AgAK/wIAAv8CAAH/A8wB/wMAAf8MAAOGIf8DhgH/A4YJ/wMAAf8HADX/ - A8wB/wMAAf8HAAH/A8AB/wMAAf8DwAH/A8AB/wMAAf8DAAH/A8AB/wOGAf8Dhgr/AWQBMQH/AwAB/wwA - A4YF/wOGBv8CAAL/AgAK/wIAAv8CAAH/A8wB/wMAAf8MAAOGMf8DAAH/BwAG/wFkATEC/wFkATEC/wFk - ATEC/wFkATEK/wFkATEC/wFkATEC/wFkATEC/wFkATEC/wFkATEC/wFkATEB/wPMAf8DAAH/BwAB/wPA - Af8DwAH/AwAB/wMAAf8DwAX/AwAB/wMAAf8DwAH/A4YB/wOGBf8DAAH/DAADhgX/A4YK/wIAAv8CAAL/ - AgAC/wIABf8DAAH/AwAB/wwAA4YF/wOGAf8DhgH/A4YB/wOGAf8Dhhn/AwAB/wcANf8DzAH/AwAB/wsA - Af8DAAH/A8AF/wMAAf8DAAn/AwAB/wMAAf8DwAH/A4YB/wMAAf8MAAOGBf8Dhh3/A4YB/wOGAf8MAAOG - Mf8DAAH/BwAB/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wMAAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wOG - Af8DhgH/AwAB/xMAAf8DAAn/AwAB/wMACf8DAAH/AwAB/xAAA4YF/wOGAf8DhgH/A4YB/wOGAf8DhgH/ - A4YB/wOGAf8DhgH/A4YB/xAAA4YJ/wOGAf8DhgH/A4YJ/wOGAf8DhgH/A4YB/wOGBf8DAAH/BwAB/wPA - Af8DwAH/A8AB/wPAAf8DwAH/A4YB/wMAAf8DwAH/A8AB/wPAAf8DwAH/A8AB/wPAAf8DhgH/AwAB/xsA - Af8DAAn/AwAB/wMAAf8YAAOGHf8DhgH/A4YB/xQAA4Yx/wMAAf8HAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/IwAB/wMAAf8gAAOGAf8DhgH/ - A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/xgAA4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wOG - Af8DhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf/HAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/GwAB/wMAAf97AAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wPMAf8DzAH/A8wB/wPMAf8DzAH/A8wB/wPMAf8DzAH/A8wB/wPM - Af8DzAH/A8wB/wPMAf8DzAH/AwAB/xMAAf8DAAH/A8AB/wPAAf8DAAH/AwAB/x8AAf8DAAH/AwAB/wMA - Af8DAAH/AQACgQH/AwAB/wMAAf8DAAH/AQACgQH/AwAB/wMAAf8DAAH/AwAB/xwAA4YB/wPAAf8DwAH/ - A8AB/wPAAf8DwAH/A8AB/wPAAf8DwAH/AwAB/wMAHv8BZAExAv8BZAExAv8BZAExAv8BZAExCf8DzAH/ - AwAB/wsAAf8DAAH/A8AB/wMAAf8DwAH/AYECAAH/A8AF/wMAAf8DAAH/FAADhgH/A8AB/wPAAf8DwAH/ - A8AB/wMAAf8BAAP/AQAD/wEAA/8DAA3/AwAB/xwAA4Yd/wPAAf8DAAH/AwA1/wPMAf8DAAH/BwAB/wPA - Af8DAAH/A8AB/wMAAf8DwAH/A8AB/wPABv8BZAExBf8DAAH/AwAB/wwAA4YB/wPAAf8DhgH/A4YB/wPA - Af8DAAH/AQAD/wEAA/8BAAP/AwAB/wMAAf8DAAX/AwAB/xwAA4Yd/wPAAf8DAAH/AwAG/wFkATEC/wFk - ATEC/wFkATEC/wFkATEK/wFkATEC/wFkATEC/wFkATEC/wFkATEC/wFkATEC/wFkATEB/wPMAf8DAAH/ - BwAB/wPAAf8DAAH/A8AB/wMAAf8DwAH/AYECAAH/A8AK/wFkATEC/wFkATEF/wMAAf8IAAOGAf8DwAH/ - A8AB/wPAAf8DwAH/AQACgQH/AwAB/wMAAf8DAAH/AQACgQ3/AwAB/wcAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wMA - Af8DADX/A8wB/wMAAf8HAAH/A8AB/wMAAf8DwAH/AwAB/wPAAf8DwAH/A8AG/wFkATEK/wFkATEB/wMA - Af8IAAOGAf8DwAH/A4YB/wOGAf8DwAH/A4YN/wMAAf8DAAH/AwAF/wMAAf8EAAOGAf8DwAH/A8AB/wPA - Af8DwAH/A8AC/wIAAv8BzAGZAv8BZAExAv8BZAExAv8BZAExAv8BZAExAv8BZAExAv8BZAExAv8BZAEx - Af8DAAH/AwAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGB - AgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wMAAf8HAAH/A8AB/wMAAf8DwAH/AwAB/wPA - Af8BgQIAAf8DwAr/AWQBMQL/AWQBMQX/AwAB/wgAA4YB/wPAAf8DwAH/A8AB/wPAAf8BAAKBAf8DAAH/ - AwAB/wMAEf8DAAH/BAADhhb/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAH/AwAB/wMA - Af8BgQIAAv8BzAEAAv8BzAEAAv8BzAEAAv8BzAEAAf8BgQIAAf8BgQIAAv8BzAEAAv8BzAEAAv8BzAEA - Av8BzAEAAv8BzAEAAv8BzAEAAf8BgQIAAf8DAAH/BwAB/wPAAf8DAAH/A8AB/wMAAf8DwAH/A8AB/wPA - Bv8BZAExCv8BZAExAf8DAAH/CAADhgH/A8AB/wOGAf8DhgH/A8AB/wEAAoEB/wEAA/8BAAP/A8AB/wMA - Af8DAAH/AwAF/wMAAf8EAAOGIf8DAAH/GwAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGB - AgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wMAAf8HAAH/ - A8AB/wMAAf8DwAH/AwAB/wPAAf8DwAH/A4YK/wFkATEC/wFkATEF/wMAAf8IAAOGAf8DwAH/A8AB/wPA - Af8DwAH/AQACgQH/AQAD/wEAA/8BAAP/A8AB/wMACf8DAAH/BAADhgH/A4YB/wOGAf8DhgH/A4YB/wOG - Af8DhgH/A4YB/wOGAf8DAAH/A4YB/wMAAf8DAAH/AwAB/wMAAf8HADX/A8wB/wMAAf8HAAH/A8AB/wMA - Af8DwAH/A8AB/wMAAf8DAAH/A8AB/wOGAf8Dhgr/AWQBMQH/AwAB/wgAA4YB/wPAAf8DhgH/A4YB/wPA - Af8BgQIAAf8DAAH/AQAD/wEAA/8BAAP/A8AB/wMABf8DAAH/BAAB/wGZAQAF/wPAAf8DwAH/A8AB/wPA - Af8DwAH/A8AB/wPAAf8DAAH/A4YB/wPAAf8DwAH/A8AB/wMAAf8HAAb/AWQBMQL/AWQBMQL/AWQBMQL/ - AWQBMQr/AWQBMQL/AWQBMQL/AWQBMQL/AWQBMQL/AWQBMQL/AWQBMQH/A8wB/wMAAf8HAAH/A8AB/wPA - Af8DAAH/AwAB/wPABf8DAAH/AwAB/wPAAf8DhgH/A4YF/wMAAf8IAAOGAf8DwAH/AQACgQH/AwAB/wMA - Af8BAAKBAf8DhgH/AwAB/wEAA/8BAAP/AQAD/wMABf8DAAH/BAAB/wGZAQAC/wGZAQAC/wGZAQAC/wGZ - AQAC/wGZAQAC/wGZAQAC/wGZAQAC/wGZAQAC/wGZAQAB/wMADf8DwAH/AwAB/wcANf8DzAH/AwAB/wsA - Af8DAAH/A8AF/wMAAf8DAAn/AwAB/wMAAf8DwAH/A4YB/wMAAf8IAAOGAf8DwAH/AQACgQH/AQAD/wEA - A/8DwAH/A4YB/wOGAf8DwAH/AQAD/wEAA/8DAAX/AwAB/xgAA4Yd/wPAAf8DAAH/BwAB/wOGAf8DhgH/ - A4YB/wOGAf8DhgH/A4YB/wMAAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/AwAB/xMAAf8DAAn/ - AwAB/wMACf8DAAH/AwAB/wwAAYECAAH/AYECAAH/AQACgQH/AQAD/wEAA/8BAAP/AwAB/wMAAf8BAAP/ - AQAD/wEAA/8BAAKBAf8BgQIAAf8DAAH/GAADhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wOG - Af8DAAH/BwAB/wPAAf8DwAH/A8AB/wPAAf8DwAH/A4YB/wMAAf8DwAH/A8AB/wPAAf8DwAH/A8AB/wPA - Af8DhgH/AwAB/xsAAf8DAAn/AwAB/wMAAf8UAAH/AgAC/wHMAZkC/wFkATEB/wEAAoEB/wEAA/8BAAP/ - AQAD/wEAA/8BAAP/AQAD/wPAAf8BAAKBAv8BZAExAf8DAAH/GAAB/wGZAQAF/wPAAf8DwAH/A8AB/wPA - Af8DwAH/A8AB/wPAAf8DAAH/BwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/yMAAf8DAAH/HAAB/wIAAv8CAAL/AgAC/wIAAf8BAAKBAf8BAAP/ - AQAD/wEAA/8BAAP/A8AB/wMAAv8CAAL/AgAB/wMAAf8YAAH/AZkBAAL/AZkBAAL/AZkBAAL/AZkBAAL/ - AZkBAAL/AZkBAAL/AZkBAAL/AZkBAAL/AZkBAAH/AwAB//8AzAAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8LAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wcAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/yAAAjEBAAH/AjEBAAH/AjEBAAH/AjEBAAH/AjEBAAH/AjEBAAH/AjEBAAH/ - AjEBAAH/AjEBAAH/AjEBAAH/AjEBAAH/AjEBAAH/BAADhgH/A8AB/wPAAf8DwAH/A8AB/wPAAf8DAAH/ - A4YB/wPAAf8DwAH/A8AB/wPAAf8DwAH/AwAB/wgAA4YB/wPAAf8DwAH/A8AB/wPAAf8DwAH/A8AB/wPA - Af8DwAH/A8AB/wPAAf8DwAH/A8AB/wMAAf8HACn/AwAB/1QAA4YR/wPAAf8DAAH/A4YR/wPAAf8DAAH/ - CAADhi3/A8AB/wMAAf8HAAX/A0sB/wNLBf8DSwH/A0sB/wNLAf8DSwH/A0sF/wMAAf8gAAIxAQAB/wIx - AQAB/wIxAQAB/wIxAQAB/wIxAQAB/wwAAjEBAAH/AjEBAAH/AjEBAAH/AjEBAAH/BAADhhH/A8AB/wMA - Af8DhhH/A8AB/wMAAf8IAAOGLf8DwAH/AwAB/wcAKf8DAAH/KAACMQEAAf8CMQEAAf8UAAIxAQAB/wIx - AQAB/wgAA4YR/wPAAf8DAAH/A4YR/wPAAf8DAAH/CAADhi3/A8AB/wMAAf8HAAX/A0sB/wNLBf8DSwH/ - A0sB/wNLAf8DSwH/A0sF/wMAAf8sAAIxAQAB/wIxAQAB/xAAAjEBAAH/AjEBAAH/CAADhhH/A8AB/wMA - Af8DhhH/A8AB/wMAAf8IAAGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGB - AgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wMAAf8HACn/AwAB/xQAAZkB/wEAAf8BmQH/ - AQAB/wGZAf8BAAH/AZkB/wEAAf8BmQH/AQAB/wgAAjEBAAH/AjEBAAH/AjEBAAH/AjEBAAH/AjEBAAH/ - AjEBAAH/AjEBAAH/CAADhhH/A8AB/wMAAf8DhhH/A8AB/wMAAf8IAAH/AgAD/wGZAv8BZAExAv8BZAEx - Av8BZAExAv8BZAExAv8BZAExAv8BZAExAv8BZAExAv8BZAExAv8BZAExAv8BZAExAv8BZAExAf8DAAH/ - BwAd/wNLCf8DAAH/HAABmQH/AQAB/wGZAf8BAAH/EAACMQEAAf8CMQEAAf8IAAIxAQAB/wIxAQAB/wgA - A4YR/wPAAf8DAAH/A4YR/wPAAf8DAAH/CAAB/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/ - AgAC/wIAAv8CAAL/AgAC/wIAAf8DAAH/BwAF/wNLAf8DSw3/A0sB/wPXAf8DSwX/AwAB/wwAAYECAAH/ - EAABmQH/AQAB/wGZAf8BAAH/EAACMQEAAf8CMQEAAf8EAAIxAQAB/wIxAQAB/wgAA4YR/wPAAf8DAAH/ - A4YR/wPAAf8DAAH/CAADhgH/A8AB/wPAAf8DwAH/A8AB/wPAAf8DwAH/A8AB/wPAAf8DwAH/A8AB/wPA - Af8DwAH/AwAB/wcABf8DSwH/A9cB/wNLBf8DSwH/A9cB/wNLAf8D1wH/A0sB/wNLAf8DSwH/BAABgQIA - Af8BgQIAAf8UAAGZAf8BAAH/AZkB/wEAAf8BmQH/AQAB/wGZAf8BAAH/AZkB/wEAAf8BmQH/AQAB/wIx - AQAB/wIxAQAB/wIxAQAB/wIxAQAB/wgAA4YR/wPAAf8DAAH/A4YR/wPAAf8DAAH/CAADhi3/A8AB/wMA - Af8HAAn/AwAB/wPXAf8DSwH/A9cB/wNLAf8D1wH/A0sB/wPXAf8D1wH/A9cB/wNLAf8BgQIAAf8BgQIA - Af8YAAGZAf8BAAH/AZkB/wEAAf8IAAGZAf8BAAH/AZkB/wEAAf8CMQEAAf8CMQEAAf8CMQEAAf8IAAOG - Ef8DwAH/AwAB/wOGEf8DwAH/AwAB/wgAA4Yt/wPAAf8DAAH/BwAB/wMAAf8DAAH/AwAB/wMAAf8D1wH/ - A0sB/wPXAf8DSwH/A9cB/wPXAf8D1wH/A9cB/wPXAf8BgQIAAf8BgQIAAf8cAAGZAf8BAAH/AZkB/wEA - Af8EAAGZAf8BAAH/AZkB/wEAAf8EAAIxAQAB/wIxAQAB/wgAA4YR/wPAAf8DAAH/A4YR/wPAAf8DAAH/ - CAADhi3/A8AB/wMAAf8YAANLAf8D1wH/A0sB/wPXAf8D1wH/A9cB/wPXAf8D1wH/A9cB/wGBAgAB/wGB - AgAB/yAAAZkB/wEAAf8BmQH/AQAB/wGZAf8BAAH/AZkB/wEAAf8UAAGBAgAB/wGBAgAB/wGBAgAB/wGB - AgAB/wGBAgAB/wGBAgAB/wMAAf8BgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8DAAH/ - CAABgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8BgQIA - Af8BgQIAAf8BgQIAAf8BgQIAAf8DAAH/HAADSwH/A9cB/wPXAf8D1wH/A9cB/wPXAf8D1wH/A0sB/wGB - AgAB/wGBAgAB/yQAAZkB/wEAAf8BmQH/AQAB/wGZAf8BAAH/FAAB/wIAA/8BmQL/AWQBMQL/AWQBMQL/ - AWQBMQL/AWQBMQH/AwAC/wIAA/8BmQL/AWQBMQL/AWQBMQL/AWQBMQL/AWQBMQH/AwAB/wgAAf8CAAP/ - AZkC/wFkATEC/wFkATEC/wFkATEC/wFkATEC/wFkATEC/wFkATEC/wFkATEC/wFkATEC/wFkATEC/wFk - ATEC/wFkATEB/wMAAf8gAANLAf8DSwH/A0sB/wNLAf8DSwH/A0sB/wQAAYECAAH/AYECAAH/KAABmQH/ - AQAB/wGZAf8BAAH/FAAB/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAB/wMAAv8CAAL/AgAC/wIAAv8CAAL/ - AgAC/wIAAf8DAAH/CAAB/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/ - AgAC/wIAAf8DAAH//wCQAAH/UAABgQIAAf8JAAExAZkB/wEAATEBmQH/AQABMQGZAf8BAAExAZkB/wEA - ATEBmQH/EAAC/wEAA/8BAAP/AQAB/wMAAf8DAAP/AQAD/wEAAf8DAAH/AwAD/wEAA/8BAAH/HwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wsAAf8DAAH/UAABgQIAAf8BgQIAAf8EAAGZ - A/8BmQP/AZkD/wGZA/8BAAExAZkB/wEAATEBmQH/CwAD/wEAA/8BAAH/AwAD/wEAA/8BAAH/AwAB/wMA - A/8BAAH/AwAD/wEAAf8DAAH/HAADhgH/A8AB/wPAAf8DwAH/A8AB/wPAAf8DwAH/A8AB/wPAAf8DAAH/ - BwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/BwAB/wcAAf8HAAH/BwAB/xwAAYECAAH/AYECAAH/AYECAAH/ - AYECAAH/AYECAAH/AZkD/wEAATEBmQH/CAABmQP/AQABMQGZAf8PAAH/AwAD/wEAA/8BAAH/AwAB/wPA - Bf8DAAH/AwAB/wMAAf8gAAOGHf8DwAH/AwAB/wsAAf8DAAH/RAABgQIAAf8IAAGBAgAB/wGBAgAB/wQA - AZkD/wEAATEBmQH/CAABmQP/AQABMQGZAf8TAAH/AwAB/wMAAf8DwAX/A8AB/wMAAf8oAAOGHf8DwAH/ - AwAB/w8AAf9AAAGBAgAB/wwAAYECAAH/CAABmQP/AQABMQGZAf8IAAGZA/8BAAExAZkB/xcAAf8DwAX/ - AwAB/wMAAf8DAAH/AwAB/xsAAf8DAAH/AwAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGB - AgAB/wGBAgAB/wGBAgAB/wGBAgAB/wMAAf8XAAH/AwAB/wMAAf8DAAH/DwAB/wMAAf8DAAH/AwAB/xAA - AYECAAH/GAABmQP/AQABMQGZAf8BAAExAZkB/wEAATEBmQH/AZkD/wEAATEBmQH/EwAB/wMAAf8DAAH/ - A8AF/wPABf8DwAH/AwAB/xQAA4YB/wPAAf8DwAL/AgAD/wGZAv8BZAExAv8BZAExAv8BZAExAv8BZAEx - Av8BZAExAv8BZAExAv8BZAExAf8DAAH/FwAF/wMAAf8DAAH/DwAB/wPAAf8DAAH/AwAB/xAAAYECAAH/ - EwAB/wQAAZkD/wGZA/8BmQP/AZkD/xsAAf8DAAH/AwAF/wPABf8DwAH/AwAB/wMAAf8UAAOGCv8CAAL/ - AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAf8DAAH/FwAF/wMAAf8DAAH/DwAB/wPAAf8DAAH/ - AwAB/ywAAZkD/wEAATEBmQH/HwAB/wMAAf8DAAH/AwAB/wPABf8DwAX/A8AB/wMAAf8UAAOGIf8DAAH/ - IwAB/wMAAf8DAAH/AwAB/wMAAf8HAAH/AwAB/wMAAf8DAAH/AwAB/w4AAYEB/wIAAYEB/wIAAYEB/wIA - AYEB/wIAAYEB/wcAAf8EAAGZA/8BAAExAZkB/xsAAf8DAAH/AwAB/wMAAf8DwAX/A8AF/wPABf8DwAH/ - AwAB/wsAAf8DAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/ - AYECAAH/AwAB/yMABf8DAAH/AwAB/wMAAf8DhgH/AwAF/wMAAf8DAAH/AwAB/woAAYEB/wEAAZkC/wEA - AZkC/wEAAZkC/wEAAZkC/wIAAYEB/wwAAZkD/wEAATEBmQH/GwAB/wMAAf8DAAH/AwAB/wMAAf8DAAX/ - A8AC/wIAAf8DwAH/AwAB/wwAA4YB/wPAAv8CAAP/AZkC/wFkATEC/wFkATEC/wFkATEC/wFkATEC/wFk - ATEC/wFkATEC/wFkATEB/wMAAf8jAAX/AwAB/wMAAf8DAAH/AwAB/wMABf8DAAH/AwAB/wMAAf8JAAGZ - Av8CAAGBAf8JAAGZAv8CAAGBAf8HAAH/JwAB/wMAAf8DAAH/AwAB/wMABf8DwAX/AwAB/wMAAf8QAAOG - Bv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAf8DAAH/JwAB/wMAAf8DAAH/A4YB/wQA - A4YB/wMAAf8DAAH/AwAB/w0AAZkC/wIAAYEB/wIAAYEB/wIAAYEB/wEAAZkC/wIAAYEB/y8AAf8DAAH/ - AwAB/wMAAf8DhgH/A8AF/wPABf8DAAH/EAADhiH/AwAB/zMAAf8DAAH/DwAB/wMAAf8SAAGBAf8BAAGZ - Av8BAAGZAv8BAAGZAv8BAAGZAv8CAAGBAf8LAAH/BwAB/xsAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wOG - Bf8DAAH/FAABgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8BgQIA - Af8DAAH/MwAB/wMAAf8PAAH/AwAB/xEAAZkC/wIAAYEB/wIAAYEB/wIAAYEB/wEAAZkC/wIAAYEB/w8A - Af8DAAH/HwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/EAAB/wIAA/8BmQL/AWQBMQL/ - AWQBMQL/AWQBMQL/AWQBMQL/AWQBMQL/AWQBMQL/AWQBMQH/AwAB/2EAAZkC/wEAAZkC/wEAAZkC/wIA - AYEB/w8AAf8DAAH/AwAB/yMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8UAAH/AgAC/wIAAv8CAAL/ - AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAH/AwAB//8AjwABgQX/dwAB/1oAAYEF/y8AAf8DAAH/AwAB/wMA - Af8DAAH/FwAB/wMAAf8DAAH/AwAB/wMAAf83AAH/AwAB/wwAA4YB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wOGAf8mAAGBAf8CAAGBAf8CAAGBBf8aAAGBBf8LAAX/AwAB/wMAAf8DAAH/FwAF/wMAAf8DAAH/ - AwAB/wsAAf8HAAH/BwAB/wcAAf8HAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8LAAH/A8AB/wPAAf8DwAH/ - A8AB/wPAAf8DwAH/AwAB/wMAAf8iAAGBAf8CAAGBAf8CAAGBBf8WAAGBBf8PAAX/AwAB/wMAAf8DAAH/ - FwAF/wMAAf8DAAH/AwAB/zcAAf8DAAH/DwAB/wPAAf8DwAH/A8AB/wPAAf8DwAH/A8AB/wMAAf8BAALM - Af8DAAH/IgABgQH/AgABgQH/AgABgQX/DgABgQH/AgABgQX/DwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wcAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf83AAH/EAADhgH/AwAB/wPAAf8DwAH/A8AB/wPA - Af8DwAH/AwAB/wEAAswB/wEAAswB/wMAAf8iAAGBAf8CAAGBAf8CAAGBBf8GAAGBAf8CAAGBBf8TAAH/ - AwAF/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAF/wMAAf8DAAH/AwAB/wMAAf8DAAH/BwAB/wMAAf8DAAH/ - AwAB/w8AAf8DAAH/AwAB/wMAAf8fAAH/AQAH/wEAB/8BAAf/AwAB/wEAAswB/wEAAswB/wMAAf8iAAGB - Af8CAAGBAf8CAAGBAf8CAAGBAf8CAAGBBf8XAAH/AwAF/wMAAf8DAAH/AwAB/wPAAf8DAAH/AwAF/wMA - Af8DAAH/AwAB/wMAAf8DAAH/BwAF/wMAAf8DAAH/DwAF/wMAAf8DAAH/IwAB/wEAB/8BAAf/AQAH/wMA - Af8BAALMAf8BAALMAf8DAAH/IgABgQH/AgABgQH/AgABgQX/GwAB/wMABf8DAAH/AwAB/wMAAf8DwAH/ - AwAB/wMABf8DAAH/AwAB/wMAAf8DAAH/AwAB/wcABf8DAAH/AwAB/w8ABf8DAAH/AwAB/ycAAf8BAAf/ - AQAH/wEAB/8DAAH/AQACzAH/AQACzAH/AwAB/xoAAYEB/wIAAYEB/wIAAYEB/wIAAYEB/wIAAYEF/xsA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8LAAH/AwAB/wMA - Af8DAAH/AwAB/wcAAf8DAAH/AwAB/wMAAf8DAAH/KwAB/wEAB/8BAAf/AQAH/wMAAf8BAALMAf8DAAH/ - FgABgQH/AgABgQH/AgABgQX/BgABgQX/HwAF/wMAAf8DAAH/AwAB/wcABf8DAAH/AwAB/wMAAf8PAAX/ - AwAB/wMAAf8DAAH/A4YB/wMABf8DAAH/AwAB/wMAAf8vAAH/AQAH/wEAB/8BAAf/AQACzAH/AwAB/w4A - AYEB/wIAAYEB/wIAAYEB/wIAAYEF/w4AAYEB/wIAAYEF/xcAAf8DAAH/AwAB/wMAAf8DAAH/BwAB/wMA - Af8DAAH/AwAB/wMAAf8PAAX/AwAB/wMAAf8DAAH/AwAB/wMABf8DAAH/AwAB/wMAAf8zAAH/AQAH/wEA - B/8BAAP/AQAD/wMAAf8KAAGBAf8CAAGBAf8CAAGBAf8CAAGBBf8WAAGBAf8CAAGBBf8XAAH/AwAB/wMA - Af8PAAH/AwAB/wMAAf8XAAH/AwAB/wMAAf8DhgH/BAADhgH/AwAB/wMAAf8DAAH/OAADhgH/AwAB/wMA - Af8DAAH/AwAB/wOGAf8DhgH/CgABgQH/AgABgQX/IgABgQH/AgABgQX/EwAF/wMAAf8PAAX/AwAB/xsA - Af8DAAH/DwAB/wMAAf+rAAH/AwAB/wMAAf8PAAH/AwAB/wMAAf8bAAH/AwAB/w8AAf8DAAH//wD/AOYA - A4YB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/JwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/MwAB/wMAAf8HAAH/FwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/EAADhgn/AYEBAAGBFf8BgQEAAYEF/wMAAf9vAAH/AwAB/wcAAf8XACn/AwAB/xAA - A4YB/wGBAQABgQH/AYEBAAGBAf8BgQEAAYEB/wGBAQABgQH/AYEBAAGBAf8BgQEAAYEB/wGBAQABgQH/ - AYEBAAGBAf8BgQEAAYEB/wGBAQABgQH/AwAB/ysAAf8DAAH/AwAB/wMAAf8DAAH/MwAB/wMAAf8HAAH/ - FwAp/wMAAf8QAAOGCf8BgQEAAYEV/wGBAQABgQX/AwAB/ycAAf8DAAH/CwAB/wMAAf8zAAH/AwAB/wcA - Af8XACn/AwAB/xAAA4YJ/wGBAQABgRX/AYEBAAGBBf8DAAH/JwAB/wMAAf8LAAH/AwAB/y8AAf8DAAH/ - AwAB/wcAAf8XACn/AwAB/xAAA4YJ/wGBAQABgRX/AYEBAAGBBf8DAAH/KwAB/wMAAf8DAAH/AwAB/wMA - Af8rAAH/AwAB/wMAAf8DAAH/BwAB/xcAKf8DAAH/EAADhgn/AYEBAAGBFf8BgQEAAYEF/wMAAf87AAH/ - KwAB/wMAAf8DAAH/AwAB/wcAAf8XACn/AwAB/xAAA4YJ/wGBAQABgRX/AYEBAAGBBf8DAAH/KwAB/wMA - Af8DAAH/AwAB/y8AAf8DAAH/AwAB/wMAAf8HAAH/FwAp/wMAAf8QAAOGCf8BgQEAAYEV/wGBAQABgQX/ - AwAB/xAAAYECAAH/AYECAAH/AYECAAH/AYECAAH/MAABgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8LAAH/ - AwAB/wMAAf8DAAH/AwAB/xcAKf8DAAH/EAADhgn/AYEBAAGBFf8BgQEAAYEF/wMAAf8QAAGBAgAB/wGB - AgAB/wGBAgAB/xQAAYECAAH/HAABgQIAAf8BgQIAAf8BgQIAAf83AB3/AwAB/wMAAf8DAAH/AwAB/xAA - A4YJ/wGBAQABgRX/AYEBAAGBBf8DAAH/EAABgQIAAf8BgQIAAf8BgQIAAf8UAAGBAgAB/xwAAYECAAH/ - AYECAAH/AYECAAH/FAABgQIAAf8fAB3/AwAF/wMAAf8UAAOGCf8BgQEAAYER/wOGAf8DAAH/AwAB/wMA - Af8QAAGBAgAB/wgAAYECAAH/DAABgQIAAf8gAAGBAgAB/wgAAYECAAH/DAABgQIAAf8jAB3/AwAB/wMA - Af8YAAOGAf8BgQEAAYEB/wGBAQABgQH/AYEBAAGBAf8BgQEAAYEB/wGBAQABgQH/AYEBAAGBAf8BgQEA - AYEB/wOGBf8DAAH/JAABgQIAAf8BgQIAAf8BgQIAAf80AAGBAgAB/wGBAgAB/wGBAgAB/ycAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/xwAA4YJ/wGBAQABgRH/A4YB/wMAAf/YAAOGAf8DhgH/ - A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB//8A/wAdAAH/BAABMQJkAf8EAAExAmQB/wQAATECZAH/ - BAABMQJkAf8EAAExAmQB/wQAATECZAH/DAABMQJkAf8EAAExAmQB/wQAATECZAH/BAABMQJkAf8EAAEx - AmQB/wQAATECZAH/BwAB/wwAATECZAH/BAABMQJkAf8EAAExAmQB/wQAATECZAH/BAABMQJkAf8EAAEx - AmQB/wQAATECZAH/DwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/w8AAf9vAAH/TwAB/y8AAf8PAAH/BAABMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJk - Af8QAAExAmQB/wwAATECZAH/BAABMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8TAAH/ - DAABMQJkAf8EAAExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/xAAATECZAH/DwAB/wQA - ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/EwAB/w8AAf9vAAH/TwAB/y8AAf8PAAH/ + Af8BHwGzAf4B/wEgAWcB6AH/AUYBTwFqAcEDGgEkBAABlgKRAe8B5gHwAekB/wHXAe8B5AH/AcsB9gHt + Af8B0QH1AfMB/wHQAtYB/wG+Aq0B/wHJArsB/wHgAtgB/wHtAukB/wHtAukB/wHtAugB/wHyAu4B/wGo + ApsB7yUAAWQBAAH/HAADpAH/AxgB/wMpAf8DKQH/A4kB/wNTAf8EAAORAf8DZQH/A0cB/wOjAf8EAAOD + Af8BjwFyAWQB/wHUAYMBWAH/AccBnQGIAf8EAAFGAkUBfwHDArEB/wHgAtcB/wHYAswB/wHQAsAB/wHK + ArgB/wHMAroB/wFdAYcB5QH/ARUBxQH+Af8BWQHmAf4B/wGcAfUC/wFyAfEC/wEdAbwB/gH/ATgBcwGy + AeADIgEyBAABSQJIAX8B6wHuAe0B/wHfAfIB8AH/AdUB7wHuAf8B1gLtAf8B4gLfAf8B6QLkAf8B6wLn + Af8B7ALoAf8B7QLoAf8B7gLpAf8B7wLqAf8B7QLnAf8BSwJJAX8lAAFkAQAB/yAAAVgBVAFRAf8EAAEo + ASQBIQH/A8wB/wMLAf8DOgH/AXQBcAFtAf8DvgH/A2gB/wPSAf8MAAM9AWkB3wGbAXcB/wQAAUYCRQF/ + AcsCvQH/AcMCsgH/AcICrgH/AccCtAH/AcgCtQH/AakBpgHFAf8BHgF8Af4B/wEYAcUB/gH/AXQB8QL/ + Ac0B+gL/AZMB9AL/ASYBvAH+Af8BMAFxAbsB6AMUARwEAAMLAQ8BegJ1Ac8B7QLzAf8B3QLmAf8B3gLW + Af8B5gLfAf8B6QLjAf8B6wLlAf8B7ALnAf8B7QLoAf8B7wLqAf8B8wLvAf8BfQJ2Ac8DCwEPHwAB/wMA + Af8DAAH/AwAB/wMAAf8YAAPMAf8DdgH/A8wB/wPTAf8DWgH/BAADowH/A5oB/wNoAf8DqAH/BAADhAH/ + A5UB/wwAAxYBHwGIAnYB/wG3AqMB/wGqApIB/wG+AqsB/wHHArQB/wHKArcB/wF8AY8B2AH/ARMBoAH+ + Af8BOwHiAf4B/wFtAfAC/wFNAeQB/gH/ARYBegH+Af8BRwFOAWMBmQMOARMIAAMLAQ8BdgJvAc8B4wLc + Af8B6gLjAf8B6ALgAf8B6ALiAf8B6gLkAf8B7QLoAf8B8gLuAf8B7ALnAf8BfQJ2Ac8DCwEPJwAB/wMA + Af8DAAH/IAADgQH/BAAD0QH/A08B/wNkAf8BTgJNAZUEAAFRAk8BnANaAf8DSwH/A0cB/xQAAyoBPwFh + AlYB3wGIAnEB/wGeAoYB/wGsApYB/wG6AqkB/wF3AYQBwwH/AUYBiwHWAf8BFQGhAf4B/wEXAaAB/gH/ + ASQBfQHbAfIBIAGkAf4B/wE5ATsBPgFiEAADCwEPAUkCSAF/AZkCkAHvAdECyAH/AdoC0gH/AdsC0wH/ + AdUCzAH/AZ8ClAHvAUoCSQF/AwsBDy8AAf9sAAMgAS8DQAFvAUYCRQF/AUYCRQF/AUYCRQF/AUUBRgFI + AX8BRAFvAaMBzwFIAU0BWwGPAUgBXAF7Aa8kAAMqAT8DMgFPAzIBTwMqAT9cAAOGAf8DhgH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/BwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/xsAAf8DAAH/MwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wwAA4Yx/wMAAf8HAAH/A8wB/wPMAf8DzAH/ + A8wB/wPMAf8DzAH/A8wB/wPMAf8DzAH/A8wB/wPMAf8DzAH/A8wB/wPMAf8DAAH/EwAB/wMAAf8DwAH/ + A8AB/wMAAf8DAAH/KAADhgH/A8wB/wPMAf8DzAH/A8wB/wPMAf8DzAH/A8wB/wPMAf8DAAH/DAADhjH/ + AwAB/wcAHv8BZAExAv8BZAExAv8BZAExAv8BZAExCf8DzAH/AwAB/wsAAf8DAAH/A8AB/wMAAf8DwAH/ + AYECAAH/A8AF/wMAAf8DAAH/GAADhgH/AwAB/wOGBf8BmQj/AgAC/wIAAf8BmQf/A8wB/wMAAf8MAAOG + Bf8DhgH/A4YB/wOGAf8DhgH/A4YF/wOGAf8DhgH/A4YB/wOGBf8DAAH/BwA1/wPMAf8DAAH/BwAB/wPA + Af8DAAH/A8AB/wMAAf8DwAH/A8AB/wPABv8BZAExBf8DAAH/AwAB/xAAA4YF/wOGAf8BmQf/AZkE/wIA + Av8CAAX/AZkD/wPMAf8DAAH/DAADhjH/AwAB/wcABv8BZAExAv8BZAExAv8BZAExAv8BZAExCv8BZAEx + Av8BZAExAv8BZAExAv8BZAExAv8BZAExAv8BZAExAf8DzAH/AwAB/wcAAf8DwAH/AwAB/wPAAf8DAAH/ + A8AB/wGBAgAB/wPACv8BZAExAv8BZAExBf8DAAH/DAADhgX/A4YF/wGZB/8BmQf/AZkH/wPMAf8DAAH/ + DAADhgX/A4YB/wOGAf8DhgH/A4YB/wOGBf8DhgH/A4YB/wOGAf8DhgX/AwAB/wcANf8DzAH/AwAB/wcA + Af8DwAH/AwAB/wPAAf8DAAH/A8AB/wPAAf8DwAb/AWQBMQr/AWQBMQH/AwAB/wwAA4YF/wOGCf8BmQT/ + AgAC/wIABf8BmQP/A8wB/wMAAf8MAAOGMf8DAAH/BwAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGB + AgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wMA + Af8HAAH/A8AB/wMAAf8DwAH/AwAB/wPAAf8BgQIAAf8DwAr/AWQBMQL/AWQBMQX/AwAB/wwAA4YF/wOG + Bf8BmQj/AgAC/wIAAv8BzAGZBf8DzAH/AwAB/wwAA4YJ/wOGAf8DhgH/A4YJ/wOGAf8DhgH/A4YB/wOG + Bf8DAAH/BwAB/wGBAgAC/wHMAQAC/wHMAQAC/wHMAQAC/wHMAQAB/wGBAgAB/wGBAgAC/wHMAQAC/wHM + AQAC/wHMAQAC/wHMAQAC/wHMAQAC/wHMAQAB/wGBAgAB/wMAAf8HAAH/A8AB/wMAAf8DwAH/AwAB/wPA + Af8DwAH/A8AG/wFkATEK/wFkATEB/wMAAf8MAAOGBf8DhhL/AgAC/wIAAv8BzAGZAf8DzAH/AwAB/wwA + A4Yx/wMAAf8HAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/ + AYECAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/AwAB/wcAAf8DwAH/AwAB/wPAAf8DAAH/ + A8AB/wPAAf8Dhgr/AWQBMQL/AWQBMQX/AwAB/wwAA4YF/wOGBv8CAAL/AgAK/wIAAv8CAAH/A8wB/wMA + Af8MAAOGIf8DhgH/A4YJ/wMAAf8HADX/A8wB/wMAAf8HAAH/A8AB/wMAAf8DwAH/A8AB/wMAAf8DAAH/ + A8AB/wOGAf8Dhgr/AWQBMQH/AwAB/wwAA4YF/wOGBv8CAAL/AgAK/wIAAv8CAAH/A8wB/wMAAf8MAAOG + Mf8DAAH/BwAG/wFkATEC/wFkATEC/wFkATEC/wFkATEK/wFkATEC/wFkATEC/wFkATEC/wFkATEC/wFk + ATEC/wFkATEB/wPMAf8DAAH/BwAB/wPAAf8DwAH/AwAB/wMAAf8DwAX/AwAB/wMAAf8DwAH/A4YB/wOG + Bf8DAAH/DAADhgX/A4YK/wIAAv8CAAL/AgAC/wIABf8DAAH/AwAB/wwAA4YF/wOGAf8DhgH/A4YB/wOG + Af8Dhhn/AwAB/wcANf8DzAH/AwAB/wsAAf8DAAH/A8AF/wMAAf8DAAn/AwAB/wMAAf8DwAH/A4YB/wMA + Af8MAAOGBf8Dhh3/A4YB/wOGAf8MAAOGMf8DAAH/BwAB/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wMA + Af8DhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/AwAB/xMAAf8DAAn/AwAB/wMACf8DAAH/AwAB/xAA + A4YF/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/xAAA4YJ/wOGAf8DhgH/A4YJ/wOG + Af8DhgH/A4YB/wOGBf8DAAH/BwAB/wPAAf8DwAH/A8AB/wPAAf8DwAH/A4YB/wMAAf8DwAH/A8AB/wPA + Af8DwAH/A8AB/wPAAf8DhgH/AwAB/xsAAf8DAAn/AwAB/wMAAf8YAAOGHf8DhgH/A4YB/xQAA4Yx/wMA + Af8HAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/IwAB/wMAAf8gAAOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/xgAA4YB/wOG + Af8DhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf/HAAH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/GwAB/wMA + Af97AAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wPMAf8DzAH/A8wB/wPM + Af8DzAH/A8wB/wPMAf8DzAH/A8wB/wPMAf8DzAH/A8wB/wPMAf8DzAH/AwAB/xMAAf8DAAH/A8AB/wPA + Af8DAAH/AwAB/x8AAf8DAAH/AwAB/wMAAf8DAAH/AQACgQH/AwAB/wMAAf8DAAH/AQACgQH/AwAB/wMA + Af8DAAH/AwAB/xwAA4YB/wPAAf8DwAH/A8AB/wPAAf8DwAH/A8AB/wPAAf8DwAH/AwAB/wMAHv8BZAEx + Av8BZAExAv8BZAExAv8BZAExCf8DzAH/AwAB/wsAAf8DAAH/A8AB/wMAAf8DwAH/AYECAAH/A8AF/wMA + Af8DAAH/FAADhgH/A8AB/wPAAf8DwAH/A8AB/wMAAf8BAAP/AQAD/wEAA/8DAA3/AwAB/xwAA4Yd/wPA + Af8DAAH/AwA1/wPMAf8DAAH/BwAB/wPAAf8DAAH/A8AB/wMAAf8DwAH/A8AB/wPABv8BZAExBf8DAAH/ + AwAB/wwAA4YB/wPAAf8DhgH/A4YB/wPAAf8DAAH/AQAD/wEAA/8BAAP/AwAB/wMAAf8DAAX/AwAB/xwA + A4Yd/wPAAf8DAAH/AwAG/wFkATEC/wFkATEC/wFkATEC/wFkATEK/wFkATEC/wFkATEC/wFkATEC/wFk + ATEC/wFkATEC/wFkATEB/wPMAf8DAAH/BwAB/wPAAf8DAAH/A8AB/wMAAf8DwAH/AYECAAH/A8AK/wFk + ATEC/wFkATEF/wMAAf8IAAOGAf8DwAH/A8AB/wPAAf8DwAH/AQACgQH/AwAB/wMAAf8DAAH/AQACgQ3/ + AwAB/wcAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGB + AgAB/wGBAgAB/wGBAgAB/wGBAgAB/wMAAf8DADX/A8wB/wMAAf8HAAH/A8AB/wMAAf8DwAH/AwAB/wPA + Af8DwAH/A8AG/wFkATEK/wFkATEB/wMAAf8IAAOGAf8DwAH/A4YB/wOGAf8DwAH/A4YN/wMAAf8DAAH/ + AwAF/wMAAf8EAAOGAf8DwAH/A8AB/wPAAf8DwAH/A8AC/wIAAv8BzAGZAv8BZAExAv8BZAExAv8BZAEx + Av8BZAExAv8BZAExAv8BZAExAv8BZAExAf8DAAH/AwAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGB + AgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wMA + Af8HAAH/A8AB/wMAAf8DwAH/AwAB/wPAAf8BgQIAAf8DwAr/AWQBMQL/AWQBMQX/AwAB/wgAA4YB/wPA + Af8DwAH/A8AB/wPAAf8BAAKBAf8DAAH/AwAB/wMAEf8DAAH/BAADhhb/AgAC/wIAAv8CAAL/AgAC/wIA + Av8CAAL/AgAC/wIAAv8CAAH/AwAB/wMAAf8BgQIAAv8BzAEAAv8BzAEAAv8BzAEAAv8BzAEAAf8BgQIA + Af8BgQIAAv8BzAEAAv8BzAEAAv8BzAEAAv8BzAEAAv8BzAEAAv8BzAEAAf8BgQIAAf8DAAH/BwAB/wPA + Af8DAAH/A8AB/wMAAf8DwAH/A8AB/wPABv8BZAExCv8BZAExAf8DAAH/CAADhgH/A8AB/wOGAf8DhgH/ + A8AB/wEAAoEB/wEAA/8BAAP/A8AB/wMAAf8DAAH/AwAF/wMAAf8EAAOGIf8DAAH/GwAB/wGBAgAB/wGB + AgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGB + AgAB/wGBAgAB/wGBAgAB/wMAAf8HAAH/A8AB/wMAAf8DwAH/AwAB/wPAAf8DwAH/A4YK/wFkATEC/wFk + ATEF/wMAAf8IAAOGAf8DwAH/A8AB/wPAAf8DwAH/AQACgQH/AQAD/wEAA/8BAAP/A8AB/wMACf8DAAH/ + BAADhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DAAH/A4YB/wMAAf8DAAH/AwAB/wMA + Af8HADX/A8wB/wMAAf8HAAH/A8AB/wMAAf8DwAH/A8AB/wMAAf8DAAH/A8AB/wOGAf8Dhgr/AWQBMQH/ + AwAB/wgAA4YB/wPAAf8DhgH/A4YB/wPAAf8BgQIAAf8DAAH/AQAD/wEAA/8BAAP/A8AB/wMABf8DAAH/ + BAAB/wGZAQAF/wPAAf8DwAH/A8AB/wPAAf8DwAH/A8AB/wPAAf8DAAH/A4YB/wPAAf8DwAH/A8AB/wMA + Af8HAAb/AWQBMQL/AWQBMQL/AWQBMQL/AWQBMQr/AWQBMQL/AWQBMQL/AWQBMQL/AWQBMQL/AWQBMQL/ + AWQBMQH/A8wB/wMAAf8HAAH/A8AB/wPAAf8DAAH/AwAB/wPABf8DAAH/AwAB/wPAAf8DhgH/A4YF/wMA + Af8IAAOGAf8DwAH/AQACgQH/AwAB/wMAAf8BAAKBAf8DhgH/AwAB/wEAA/8BAAP/AQAD/wMABf8DAAH/ + BAAB/wGZAQAC/wGZAQAC/wGZAQAC/wGZAQAC/wGZAQAC/wGZAQAC/wGZAQAC/wGZAQAC/wGZAQAB/wMA + Df8DwAH/AwAB/wcANf8DzAH/AwAB/wsAAf8DAAH/A8AF/wMAAf8DAAn/AwAB/wMAAf8DwAH/A4YB/wMA + Af8IAAOGAf8DwAH/AQACgQH/AQAD/wEAA/8DwAH/A4YB/wOGAf8DwAH/AQAD/wEAA/8DAAX/AwAB/xgA + A4Yd/wPAAf8DAAH/BwAB/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wMAAf8DhgH/A4YB/wOGAf8DhgH/ + A4YB/wOGAf8DhgH/AwAB/xMAAf8DAAn/AwAB/wMACf8DAAH/AwAB/wwAAYECAAH/AYECAAH/AQACgQH/ + AQAD/wEAA/8BAAP/AwAB/wMAAf8BAAP/AQAD/wEAA/8BAAKBAf8BgQIAAf8DAAH/GAADhgH/A4YB/wOG + Af8DhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DAAH/BwAB/wPAAf8DwAH/A8AB/wPAAf8DwAH/A4YB/wMA + Af8DwAH/A8AB/wPAAf8DwAH/A8AB/wPAAf8DhgH/AwAB/xsAAf8DAAn/AwAB/wMAAf8UAAH/AgAC/wHM + AZkC/wFkATEB/wEAAoEB/wEAA/8BAAP/AQAD/wEAA/8BAAP/AQAD/wPAAf8BAAKBAv8BZAExAf8DAAH/ + GAAB/wGZAQAF/wPAAf8DwAH/A8AB/wPAAf8DwAH/A8AB/wPAAf8DAAH/BwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/yMAAf8DAAH/HAAB/wIA + Av8CAAL/AgAC/wIAAf8BAAKBAf8BAAP/AQAD/wEAA/8BAAP/A8AB/wMAAv8CAAL/AgAB/wMAAf8YAAH/ + AZkBAAL/AZkBAAL/AZkBAAL/AZkBAAL/AZkBAAL/AZkBAAL/AZkBAAL/AZkBAAL/AZkBAAH/AwAB//8A + zAAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8LAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wcAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/yAAAjEBAAH/AjEBAAH/AjEBAAH/ + AjEBAAH/AjEBAAH/AjEBAAH/AjEBAAH/AjEBAAH/AjEBAAH/AjEBAAH/AjEBAAH/AjEBAAH/BAADhgH/ + A8AB/wPAAf8DwAH/A8AB/wPAAf8DAAH/A4YB/wPAAf8DwAH/A8AB/wPAAf8DwAH/AwAB/wgAA4YB/wPA + Af8DwAH/A8AB/wPAAf8DwAH/A8AB/wPAAf8DwAH/A8AB/wPAAf8DwAH/A8AB/wMAAf8HACn/AwAB/1QA + A4YR/wPAAf8DAAH/A4YR/wPAAf8DAAH/CAADhi3/A8AB/wMAAf8HAAX/A0sB/wNLBf8DSwH/A0sB/wNL + Af8DSwH/A0sF/wMAAf8gAAIxAQAB/wIxAQAB/wIxAQAB/wIxAQAB/wIxAQAB/wwAAjEBAAH/AjEBAAH/ + AjEBAAH/AjEBAAH/BAADhhH/A8AB/wMAAf8DhhH/A8AB/wMAAf8IAAOGLf8DwAH/AwAB/wcAKf8DAAH/ + KAACMQEAAf8CMQEAAf8UAAIxAQAB/wIxAQAB/wgAA4YR/wPAAf8DAAH/A4YR/wPAAf8DAAH/CAADhi3/ + A8AB/wMAAf8HAAX/A0sB/wNLBf8DSwH/A0sB/wNLAf8DSwH/A0sF/wMAAf8sAAIxAQAB/wIxAQAB/xAA + AjEBAAH/AjEBAAH/CAADhhH/A8AB/wMAAf8DhhH/A8AB/wMAAf8IAAGBAgAB/wGBAgAB/wGBAgAB/wGB + AgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wMA + Af8HACn/AwAB/xQAAZkB/wEAAf8BmQH/AQAB/wGZAf8BAAH/AZkB/wEAAf8BmQH/AQAB/wgAAjEBAAH/ + AjEBAAH/AjEBAAH/AjEBAAH/AjEBAAH/AjEBAAH/AjEBAAH/CAADhhH/A8AB/wMAAf8DhhH/A8AB/wMA + Af8IAAH/AgAD/wGZAv8BZAExAv8BZAExAv8BZAExAv8BZAExAv8BZAExAv8BZAExAv8BZAExAv8BZAEx + Av8BZAExAv8BZAExAv8BZAExAf8DAAH/BwAd/wNLCf8DAAH/HAABmQH/AQAB/wGZAf8BAAH/EAACMQEA + Af8CMQEAAf8IAAIxAQAB/wIxAQAB/wgAA4YR/wPAAf8DAAH/A4YR/wPAAf8DAAH/CAAB/wIAAv8CAAL/ + AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAf8DAAH/BwAF/wNLAf8DSw3/ + A0sB/wPXAf8DSwX/AwAB/wwAAYECAAH/EAABmQH/AQAB/wGZAf8BAAH/EAACMQEAAf8CMQEAAf8EAAIx + AQAB/wIxAQAB/wgAA4YR/wPAAf8DAAH/A4YR/wPAAf8DAAH/CAADhgH/A8AB/wPAAf8DwAH/A8AB/wPA + Af8DwAH/A8AB/wPAAf8DwAH/A8AB/wPAAf8DwAH/AwAB/wcABf8DSwH/A9cB/wNLBf8DSwH/A9cB/wNL + Af8D1wH/A0sB/wNLAf8DSwH/BAABgQIAAf8BgQIAAf8UAAGZAf8BAAH/AZkB/wEAAf8BmQH/AQAB/wGZ + Af8BAAH/AZkB/wEAAf8BmQH/AQAB/wIxAQAB/wIxAQAB/wIxAQAB/wIxAQAB/wgAA4YR/wPAAf8DAAH/ + A4YR/wPAAf8DAAH/CAADhi3/A8AB/wMAAf8HAAn/AwAB/wPXAf8DSwH/A9cB/wNLAf8D1wH/A0sB/wPX + Af8D1wH/A9cB/wNLAf8BgQIAAf8BgQIAAf8YAAGZAf8BAAH/AZkB/wEAAf8IAAGZAf8BAAH/AZkB/wEA + Af8CMQEAAf8CMQEAAf8CMQEAAf8IAAOGEf8DwAH/AwAB/wOGEf8DwAH/AwAB/wgAA4Yt/wPAAf8DAAH/ + BwAB/wMAAf8DAAH/AwAB/wMAAf8D1wH/A0sB/wPXAf8DSwH/A9cB/wPXAf8D1wH/A9cB/wPXAf8BgQIA + Af8BgQIAAf8cAAGZAf8BAAH/AZkB/wEAAf8EAAGZAf8BAAH/AZkB/wEAAf8EAAIxAQAB/wIxAQAB/wgA + A4YR/wPAAf8DAAH/A4YR/wPAAf8DAAH/CAADhi3/A8AB/wMAAf8YAANLAf8D1wH/A0sB/wPXAf8D1wH/ + A9cB/wPXAf8D1wH/A9cB/wGBAgAB/wGBAgAB/yAAAZkB/wEAAf8BmQH/AQAB/wGZAf8BAAH/AZkB/wEA + Af8UAAGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wMAAf8BgQIAAf8BgQIAAf8BgQIA + Af8BgQIAAf8BgQIAAf8BgQIAAf8DAAH/CAABgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8BgQIA + Af8BgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8DAAH/HAADSwH/A9cB/wPX + Af8D1wH/A9cB/wPXAf8D1wH/A0sB/wGBAgAB/wGBAgAB/yQAAZkB/wEAAf8BmQH/AQAB/wGZAf8BAAH/ + FAAB/wIAA/8BmQL/AWQBMQL/AWQBMQL/AWQBMQL/AWQBMQH/AwAC/wIAA/8BmQL/AWQBMQL/AWQBMQL/ + AWQBMQL/AWQBMQH/AwAB/wgAAf8CAAP/AZkC/wFkATEC/wFkATEC/wFkATEC/wFkATEC/wFkATEC/wFk + ATEC/wFkATEC/wFkATEC/wFkATEC/wFkATEC/wFkATEB/wMAAf8gAANLAf8DSwH/A0sB/wNLAf8DSwH/ + A0sB/wQAAYECAAH/AYECAAH/KAABmQH/AQAB/wGZAf8BAAH/FAAB/wIAAv8CAAL/AgAC/wIAAv8CAAL/ + AgAB/wMAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAf8DAAH/CAAB/wIAAv8CAAL/AgAC/wIAAv8CAAL/ + AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAf8DAAH//wCQAAH/UAABgQIAAf8JAAExAZkB/wEA + ATEBmQH/AQABMQGZAf8BAAExAZkB/wEAATEBmQH/EAAC/wEAA/8BAAP/AQAB/wMAAf8DAAP/AQAD/wEA + Af8DAAH/AwAD/wEAA/8BAAH/HwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wsA + Af8DAAH/UAABgQIAAf8BgQIAAf8EAAGZA/8BmQP/AZkD/wGZA/8BAAExAZkB/wEAATEBmQH/CwAD/wEA + A/8BAAH/AwAD/wEAA/8BAAH/AwAB/wMAA/8BAAH/AwAD/wEAAf8DAAH/HAADhgH/A8AB/wPAAf8DwAH/ + A8AB/wPAAf8DwAH/A8AB/wPAAf8DAAH/BwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/BwAB/wcAAf8HAAH/ + BwAB/xwAAYECAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/AZkD/wEAATEBmQH/CAABmQP/AQABMQGZ + Af8PAAH/AwAD/wEAA/8BAAH/AwAB/wPABf8DAAH/AwAB/wMAAf8gAAOGHf8DwAH/AwAB/wsAAf8DAAH/ + RAABgQIAAf8IAAGBAgAB/wGBAgAB/wQAAZkD/wEAATEBmQH/CAABmQP/AQABMQGZAf8TAAH/AwAB/wMA + Af8DwAX/A8AB/wMAAf8oAAOGHf8DwAH/AwAB/w8AAf9AAAGBAgAB/wwAAYECAAH/CAABmQP/AQABMQGZ + Af8IAAGZA/8BAAExAZkB/xcAAf8DwAX/AwAB/wMAAf8DAAH/AwAB/xsAAf8DAAH/AwAB/wGBAgAB/wGB + AgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wMAAf8XAAH/AwAB/wMA + Af8DAAH/DwAB/wMAAf8DAAH/AwAB/xAAAYECAAH/GAABmQP/AQABMQGZAf8BAAExAZkB/wEAATEBmQH/ + AZkD/wEAATEBmQH/EwAB/wMAAf8DAAH/A8AF/wPABf8DwAH/AwAB/xQAA4YB/wPAAf8DwAL/AgAD/wGZ + Av8BZAExAv8BZAExAv8BZAExAv8BZAExAv8BZAExAv8BZAExAv8BZAExAf8DAAH/FwAF/wMAAf8DAAH/ + DwAB/wPAAf8DAAH/AwAB/xAAAYECAAH/EwAB/wQAAZkD/wGZA/8BmQP/AZkD/xsAAf8DAAH/AwAF/wPA + Bf8DwAH/AwAB/wMAAf8UAAOGCv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAf8DAAH/ + FwAF/wMAAf8DAAH/DwAB/wPAAf8DAAH/AwAB/ywAAZkD/wEAATEBmQH/HwAB/wMAAf8DAAH/AwAB/wPA + Bf8DwAX/A8AB/wMAAf8UAAOGIf8DAAH/IwAB/wMAAf8DAAH/AwAB/wMAAf8HAAH/AwAB/wMAAf8DAAH/ + AwAB/w4AAYEB/wIAAYEB/wIAAYEB/wIAAYEB/wIAAYEB/wcAAf8EAAGZA/8BAAExAZkB/xsAAf8DAAH/ + AwAB/wMAAf8DwAX/A8AF/wPABf8DwAH/AwAB/wsAAf8DAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/ + AYECAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/AwAB/yMABf8DAAH/AwAB/wMAAf8DhgH/AwAF/wMA + Af8DAAH/AwAB/woAAYEB/wEAAZkC/wEAAZkC/wEAAZkC/wEAAZkC/wIAAYEB/wwAAZkD/wEAATEBmQH/ + GwAB/wMAAf8DAAH/AwAB/wMAAf8DAAX/A8AC/wIAAf8DwAH/AwAB/wwAA4YB/wPAAv8CAAP/AZkC/wFk + ATEC/wFkATEC/wFkATEC/wFkATEC/wFkATEC/wFkATEC/wFkATEB/wMAAf8jAAX/AwAB/wMAAf8DAAH/ + AwAB/wMABf8DAAH/AwAB/wMAAf8JAAGZAv8CAAGBAf8JAAGZAv8CAAGBAf8HAAH/JwAB/wMAAf8DAAH/ + AwAB/wMABf8DwAX/AwAB/wMAAf8QAAOGBv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIA + Af8DAAH/JwAB/wMAAf8DAAH/A4YB/wQAA4YB/wMAAf8DAAH/AwAB/w0AAZkC/wIAAYEB/wIAAYEB/wIA + AYEB/wEAAZkC/wIAAYEB/y8AAf8DAAH/AwAB/wMAAf8DhgH/A8AF/wPABf8DAAH/EAADhiH/AwAB/zMA + Af8DAAH/DwAB/wMAAf8SAAGBAf8BAAGZAv8BAAGZAv8BAAGZAv8BAAGZAv8CAAGBAf8LAAH/BwAB/xsA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wOGBf8DAAH/FAABgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8BgQIA + Af8BgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8DAAH/MwAB/wMAAf8PAAH/AwAB/xEAAZkC/wIAAYEB/wIA + AYEB/wIAAYEB/wEAAZkC/wIAAYEB/w8AAf8DAAH/HwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/EAAB/wIAA/8BmQL/AWQBMQL/AWQBMQL/AWQBMQL/AWQBMQL/AWQBMQL/AWQBMQL/AWQBMQH/ + AwAB/2EAAZkC/wEAAZkC/wEAAZkC/wIAAYEB/w8AAf8DAAH/AwAB/yMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8UAAH/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAH/AwAB//8AjwABgQX/ + dwAB/1oAAYEF/y8AAf8DAAH/AwAB/wMAAf8DAAH/FwAB/wMAAf8DAAH/AwAB/wMAAf83AAH/AwAB/wwA + A4YB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wOGAf8mAAGBAf8CAAGBAf8CAAGBBf8aAAGBBf8LAAX/ + AwAB/wMAAf8DAAH/FwAF/wMAAf8DAAH/AwAB/wsAAf8HAAH/BwAB/wcAAf8HAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8LAAH/A8AB/wPAAf8DwAH/A8AB/wPAAf8DwAH/AwAB/wMAAf8iAAGBAf8CAAGBAf8CAAGB + Bf8WAAGBBf8PAAX/AwAB/wMAAf8DAAH/FwAF/wMAAf8DAAH/AwAB/zcAAf8DAAH/DwAB/wPAAf8DwAH/ + A8AB/wPAAf8DwAH/A8AB/wMAAf8BAALMAf8DAAH/IgABgQH/AgABgQH/AgABgQX/DgABgQH/AgABgQX/ + DwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wcAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf83AAH/ + EAADhgH/AwAB/wPAAf8DwAH/A8AB/wPAAf8DwAH/AwAB/wEAAswB/wEAAswB/wMAAf8iAAGBAf8CAAGB + Af8CAAGBBf8GAAGBAf8CAAGBBf8TAAH/AwAF/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAF/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/BwAB/wMAAf8DAAH/AwAB/w8AAf8DAAH/AwAB/wMAAf8fAAH/AQAH/wEAB/8BAAf/ + AwAB/wEAAswB/wEAAswB/wMAAf8iAAGBAf8CAAGBAf8CAAGBAf8CAAGBAf8CAAGBBf8XAAH/AwAF/wMA + Af8DAAH/AwAB/wPAAf8DAAH/AwAF/wMAAf8DAAH/AwAB/wMAAf8DAAH/BwAF/wMAAf8DAAH/DwAF/wMA + Af8DAAH/IwAB/wEAB/8BAAf/AQAH/wMAAf8BAALMAf8BAALMAf8DAAH/IgABgQH/AgABgQH/AgABgQX/ + GwAB/wMABf8DAAH/AwAB/wMAAf8DwAH/AwAB/wMABf8DAAH/AwAB/wMAAf8DAAH/AwAB/wcABf8DAAH/ + AwAB/w8ABf8DAAH/AwAB/ycAAf8BAAf/AQAH/wEAB/8DAAH/AQACzAH/AQACzAH/AwAB/xoAAYEB/wIA + AYEB/wIAAYEB/wIAAYEB/wIAAYEF/xsAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8LAAH/AwAB/wMAAf8DAAH/AwAB/wcAAf8DAAH/AwAB/wMAAf8DAAH/KwAB/wEA + B/8BAAf/AQAH/wMAAf8BAALMAf8DAAH/FgABgQH/AgABgQH/AgABgQX/BgABgQX/HwAF/wMAAf8DAAH/ + AwAB/wcABf8DAAH/AwAB/wMAAf8PAAX/AwAB/wMAAf8DAAH/A4YB/wMABf8DAAH/AwAB/wMAAf8vAAH/ + AQAH/wEAB/8BAAf/AQACzAH/AwAB/w4AAYEB/wIAAYEB/wIAAYEB/wIAAYEF/w4AAYEB/wIAAYEF/xcA + Af8DAAH/AwAB/wMAAf8DAAH/BwAB/wMAAf8DAAH/AwAB/wMAAf8PAAX/AwAB/wMAAf8DAAH/AwAB/wMA + Bf8DAAH/AwAB/wMAAf8zAAH/AQAH/wEAB/8BAAP/AQAD/wMAAf8KAAGBAf8CAAGBAf8CAAGBAf8CAAGB + Bf8WAAGBAf8CAAGBBf8XAAH/AwAB/wMAAf8PAAH/AwAB/wMAAf8XAAH/AwAB/wMAAf8DhgH/BAADhgH/ + AwAB/wMAAf8DAAH/OAADhgH/AwAB/wMAAf8DAAH/AwAB/wOGAf8DhgH/CgABgQH/AgABgQX/IgABgQH/ + AgABgQX/EwAF/wMAAf8PAAX/AwAB/xsAAf8DAAH/DwAB/wMAAf+rAAH/AwAB/wMAAf8PAAH/AwAB/wMA + Af8bAAH/AwAB/w8AAf8DAAH//wD/AOYAA4YB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/JwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/MwAB/wMAAf8HAAH/FwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/EAADhgn/AYEBAAGBFf8BgQEAAYEF/wMA + Af9vAAH/AwAB/wcAAf8XACn/AwAB/xAAA4YB/wGBAQABgQH/AYEBAAGBAf8BgQEAAYEB/wGBAQABgQH/ + AYEBAAGBAf8BgQEAAYEB/wGBAQABgQH/AYEBAAGBAf8BgQEAAYEB/wGBAQABgQH/AwAB/ysAAf8DAAH/ + AwAB/wMAAf8DAAH/MwAB/wMAAf8HAAH/FwAp/wMAAf8QAAOGCf8BgQEAAYEV/wGBAQABgQX/AwAB/ycA + Af8DAAH/CwAB/wMAAf8zAAH/AwAB/wcAAf8XACn/AwAB/xAAA4YJ/wGBAQABgRX/AYEBAAGBBf8DAAH/ + JwAB/wMAAf8LAAH/AwAB/y8AAf8DAAH/AwAB/wcAAf8XACn/AwAB/xAAA4YJ/wGBAQABgRX/AYEBAAGB + Bf8DAAH/KwAB/wMAAf8DAAH/AwAB/wMAAf8rAAH/AwAB/wMAAf8DAAH/BwAB/xcAKf8DAAH/EAADhgn/ + AYEBAAGBFf8BgQEAAYEF/wMAAf87AAH/KwAB/wMAAf8DAAH/AwAB/wcAAf8XACn/AwAB/xAAA4YJ/wGB + AQABgRX/AYEBAAGBBf8DAAH/KwAB/wMAAf8DAAH/AwAB/y8AAf8DAAH/AwAB/wMAAf8HAAH/FwAp/wMA + Af8QAAOGCf8BgQEAAYEV/wGBAQABgQX/AwAB/xAAAYECAAH/AYECAAH/AYECAAH/AYECAAH/MAABgQIA + Af8BgQIAAf8BgQIAAf8BgQIAAf8LAAH/AwAB/wMAAf8DAAH/AwAB/xcAKf8DAAH/EAADhgn/AYEBAAGB + Ff8BgQEAAYEF/wMAAf8QAAGBAgAB/wGBAgAB/wGBAgAB/xQAAYECAAH/HAABgQIAAf8BgQIAAf8BgQIA + Af83AB3/AwAB/wMAAf8DAAH/AwAB/xAAA4YJ/wGBAQABgRX/AYEBAAGBBf8DAAH/EAABgQIAAf8BgQIA + Af8BgQIAAf8UAAGBAgAB/xwAAYECAAH/AYECAAH/AYECAAH/FAABgQIAAf8fAB3/AwAF/wMAAf8UAAOG + Cf8BgQEAAYER/wOGAf8DAAH/AwAB/wMAAf8QAAGBAgAB/wgAAYECAAH/DAABgQIAAf8gAAGBAgAB/wgA + AYECAAH/DAABgQIAAf8jAB3/AwAB/wMAAf8YAAOGAf8BgQEAAYEB/wGBAQABgQH/AYEBAAGBAf8BgQEA + AYEB/wGBAQABgQH/AYEBAAGBAf8BgQEAAYEB/wOGBf8DAAH/JAABgQIAAf8BgQIAAf8BgQIAAf80AAGB + AgAB/wGBAgAB/wGBAgAB/ycAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/xwAA4YJ/wGB + AQABgRH/A4YB/wMAAf/YAAOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB//8A/wAdAAH/ + BAABMQJkAf8EAAExAmQB/wQAATECZAH/BAABMQJkAf8EAAExAmQB/wQAATECZAH/DAABMQJkAf8EAAEx + AmQB/wQAATECZAH/BAABMQJkAf8EAAExAmQB/wQAATECZAH/BwAB/wwAATECZAH/BAABMQJkAf8EAAEx + AmQB/wQAATECZAH/BAABMQJkAf8EAAExAmQB/wQAATECZAH/DwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/w8AAf9vAAH/TwAB/y8AAf8PAAH/BAABMQJkAf8BMQJk + Af8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8QAAExAmQB/wwAATECZAH/BAABMQJkAf8BMQJkAf8BMQJk + Af8BMQJkAf8BMQJkAf8BMQJkAf8TAAH/DAABMQJkAf8EAAExAmQB/wExAmQB/wExAmQB/wExAmQB/wEx + AmQB/wExAmQB/xAAATECZAH/DwAB/wQAATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ + EwAB/w8AAf9vAAH/TwAB/y8AAf8PAAH/BAABMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJk + Af8BMQJkAf8BMQJkAf8BMQJkAf8EAAExAmQB/wwAATECZAH/BAABMQJkAf8BMQJkAf8BMQJkAf8BMQJk + Af8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8HAAH/DAABMQJkAf8EAAExAmQB/wExAmQB/wEx + AmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wQAATECZAH/DwAB/wQAATECZAH/ + ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/BwAB/w8AAf9vAAH/ + TwAB/y8AAf8PAAH/BAABMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJk + Af8BMQJkAf8EAAExAmQB/wwAATECZAH/BAABMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJk + Af8BMQJkAf8BMQJkAf8BMQJkAf8HAAH/DAABMQJkAf8EAAExAmQB/wExAmQB/wExAmQB/wExAmQB/wEx + AmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wQAATECZAH/DwAB/wQAATECZAH/ATECZAH/ATECZAH/ + ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/BwAB/w8AAf9vAAH/TwAB/y8AAf8PAAH/ BAABMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8EAAEx AmQB/wwAATECZAH/BAABMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJk Af8BMQJkAf8HAAH/DAABMQJkAf8EAAExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wEx AmQB/wExAmQB/wExAmQB/wQAATECZAH/DwAB/wQAATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ - ATECZAH/ATECZAH/ATECZAH/ATECZAH/BwAB/w8AAf9vAAH/TwAB/y8AAf8PAAH/BAABMQJkAf8BMQJk - Af8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8EAAExAmQB/wwAATECZAH/ - BAABMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8HAAH/ - DAABMQJkAf8EAAExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wEx - AmQB/wQAATECZAH/DwAB/wQAATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ - ATECZAH/ATECZAH/BwAB/w8AAf9vAAH/TwAB/y8AAf8PAAH/BAABMQJkAf8BMQJkAf8BMQJkAf8BMQJk - Af8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8EAAExAmQB/wwAATECZAH/BAABMQJkAf8BMQJk - Af8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8HAAH/DAABMQJkAf8EAAEx - AmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wQAATECZAH/ - DwAB/wQAATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ - BwAB/w8AAf9vAAH/TwAB/y8AAf8PAAH/DAABMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJk - Af8BMQJkAf8EAAExAmQB/wwAATECZAH/DAABMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJk - Af8BMQJkAf8HAAH/DAABMQJkAf8MAAExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wEx - AmQB/wQAATECZAH/DwAB/wwAATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ - BwAB/w8AAf9vAAH/TwAB/y8AAf8PAAH/BAABMQJkAf8EAAExAmQB/wQAATECZAH/BAABMQJkAf8EAAEx - AmQB/wQAATECZAH/DAABMQJkAf8EAAExAmQB/wQAATECZAH/BAABMQJkAf8EAAExAmQB/wQAATECZAH/ - BwAB/wwAATECZAH/BAABMQJkAf8EAAExAmQB/wQAATECZAH/BAABMQJkAf8EAAExAmQB/wQAATECZAH/ - DwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB//8A/wALAAP/ - AQAD/wEAA/8BAAP/AQAD/wEAA/8BAAP/AQAD/wEAA/8BAAP/AQAD/wEAA/8BAAP/AQAD/wEAA/8BAAP/ - wQAD/wEAA/8BAAP/AQAD/wEAA/8BAAP/AQAD/wEAA/8BAAP/AQAD/wEAA/8BAAP/AQAD/wEAA/8BAAP/ - AQAD/wcAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8PAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/DAABMQJkAf8EAAEx - AmQB/wQAATECZAH/BAABMQJkAf8EAAExAmQB/wQAATECZAH/BAABMQJkAf8JAAP/AQAD/wEAA/8BAAP/ - AQAD/wEAA/8BAAP/AQAD/wEAA/8BAAP/AQAD/wEAA/8BAAP/AQAD/wEAA/8BAAP/BwAB/y8AAf/PAAH/ - BAADhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8TAAH/DAABMQJkAf8EAAExAmQB/wExAmQB/wExAmQB/wEx - AmQB/wExAmQB/wExAmQB/xAAATECZAH/DAABMQJkAf8EAAExAmQB/wExAmQB/wExAmQB/wExAmQB/wEx - AmQB/wExAmQB/xAAATECZAH/EwAB/wMAAf8DAAH/AwAB/wOGAf8rAAH/LwAB/5AAA4YB/wEAA/8BAAP/ - AwAB/wMAAf8DhgH/JwAB/wQAA4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/BwAB/wwA - ATECZAH/BAABMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJk - Af8EAAExAmQB/wwAATECZAH/BAABMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJk - Af8BMQJkAf8BMQJkAf8EAAExAmQB/xcAAf8DAAH/AQAD/wEAAZkBzAH/AQABmQHMAf8DAAH/IwAB/y8A - Af+bAAX/AZkCzAH/AQABmQHMAf8BAAGZAcwB/wMAAf8fAAH/BAADhgH/A4YB/wOGAf8DhgH/A4YB/wOG - Af8DhgH/A4YB/wOGAf8HAAH/DAABMQJkAf8EAAExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wEx - AmQB/wExAmQB/wExAmQB/wExAmQB/wQAATECZAH/DAABMQJkAf8EAAExAmQB/wExAmQB/wExAmQB/wEx - AmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wQAATECZAH/HwAB/wGZAswB/wGZAswB/wOG - Af8BAAGZAcwB/wMAAf8bAAH/LwAB/6MAAf8BmQLMAf8BmQLMAf8BAAGBAQAB/wEAAZkBzAH/AwAB/xcA - Af8EAAOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wcAAf8MAAExAmQB/wQAATECZAH/ - ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/BAABMQJkAf8MAAEx - AmQB/wQAATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ - BAABMQJkAf8nAAX/AZkCzAH/AQABgQEAAf8BAAGZAcwB/wMAAf8TAAH/LwAB/6sABf8BmQLMAf8BAAGB - AQAB/wEAAZkBzAH/AwAB/w8AAf8MAAOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8HAAH/DAABMQJk - Af8MAAExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wQAATECZAH/DAABMQJk - Af8MAAExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wQAATECZAH/LwAF/wGZ - AswB/wMAAv8CAAH/AwAB/wsAAf8vAAH/swAB/wMAAf8BmQLMAv8CAAH/AwAB/wsAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8MAAExAmQB/wQAATECZAH/BAABMQJk - Af8EAAExAmQB/wQAATECZAH/BAABMQJkAf8EAAExAmQB/w8AAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf83AAH/AwAB/wMAAf//AP8ATgABgQIAAf8BgQIAAf82AAL/ - AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/ - RAABgQIAAf8BgQIAAf8BgQIAAf88AAGBAgAB/zIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/ - AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8XAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/CAABgQIAAf8BgQIAAf8BgQIAAf8LAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8MAAGBAgAB/w8AAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wYAAv8CAAL/ - AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv9EAAGB - AgAB/wGBAgAB/wGBAgAB/zQAAYECAAH/AYECAAH/AYECAAH/dwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf+IAAGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wwA - AYECAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/jAABgQIAAf8BgQIAAf8BgQIAAf84AAOG - Af8BgQIAAf8UAAOGAf8BgQIAAf8BgQIAAf8DhgH/IwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wgAAYECAAH/AYECAAH/AYECAAH/OAABgQIAAf9AAAGBAgAB/wGBAgAB/xAAA4YB/wGB - AgAB/wGBAgAB/1QAAYECAAH/AYECAAH/AYECAAH/CwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/EAABgQIAAf8LAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8QAAOGAf8BgQIA - Af8QAAGBAgAB/wGBAgAB/wOGAf8XAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wgAAYECAAH/AYECAAH/AYECAAH/NAABgQIAAf8BgQIAAf9EAAGBAgAB/wGB - AgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/+QAA4YB/wGBAgAB/wgAAYECAAH/AYECAAH/ - A4YB/ysAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf9IAAGBAgAB/wGBAgAB/wGB - AgAB/0QAAYECAAH/AYECAAH/BAABgQIAAf8BgQIAAf9cAAGBAgAB/wGBAgAB/wGBAgAB/zgAAYECAAH/ - SAADhgH/AYECAAH/AYECAAH/AYECAAH/A4YB/x8AAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/CAABgQIAAf8BgQIAAf8BgQIAAf8LAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8IAAGBAgAB/wGBAgAB/w8AAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/xwAAYECAAH/AYECAAH/AYECAAH/YAABgQIAAf8BgQIAAf8BgQIAAf84AAGBAgAB/0wA - A4YB/wGBAgAB/wOGAf/4AAGBAgAB//8AQAAB/z8AAf//AKwAAf8DAAH/AwAB/wMAAf8HAAH/AwAB/ycA - Af8DAAH/AwAB/wMAAf8HAAH/AwAB/yMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8jAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH//wAYAAH/AwAB/wMAAf8DAAH/ - BwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/CwAB/wMAAf8DAAH/AwAB/wcAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wcAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/CwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf//AA0AAYECAAH/EwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/FAABgQIA - Af8TAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8TAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/IwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/xQAAYECAAH/AYECAAH/ - DwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/EAABgQIAAf8BgQIAAf8TAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af+MAAGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/ywAAYECAAH/AYECAAH/AYECAAH/AYECAAH/ - AYECAAH/MwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8LAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wwA - AYECAAH/AYECAAH/DwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/BAABgQIAAf8BgQIA - Af8TAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf+IAAGBAgAB/xMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wgAAYECAAH/EwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/BwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/yMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf//ABgAAf8DAAH/AwAB/wMAAf8HAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8LAAH/AwAB/wMAAf8DAAH/BwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/BwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8LAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB//8AJAAB/z8AAf//ALgAAf8DAAH/PQACgQH/AwAB/wMAAf8DAAH/AQACgQH/qwAB/wMAAf8/AAH/ - AQAD/wEAA/8BAAP/AwAB/6cAAf8DAAH/EAABgQIAAf8BgQIAAf8BgQIAAf8nAAH/AQAD/wEAA/8BAAP/ - AwAB/5cAAf8PAAH/AwAB/xAAAYECAAH/AYECAAH/AYECAAH/JQACgQH/AwAB/wMAAf8DAAH/AQACgQH/ - IwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8jAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8fAAH/ - AwAB/wcAAf8DAAH/fwAB/wMAAf8DAAH/CwAB/wMAAf8DAAH/JwAB/wMAAf8DhgH/IwAB/wMAAf8DAAH/ - AwAB/wMAAf8UAAGBAgAB/wGBAgAB/wOGAf8lAAKBAf8DAAH/AwAB/wMAAf8DhgH/JwAB/wMAAf8DAAH/ - CwAB/wMAAf8DAAH/JAADhgH/AwAB/wMAAf8jAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wgA - AYECAAH/AYECAAH/A4YB/yUAAoEB/wEAA/8BAAP/A8AB/wMAAf8nAAH/AwAB/wMAAf8LAAH/AwAB/wMA - Af8rAAH/AwAB/wOGAf8fAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/EAABgQIAAf8BgQIAAf8lAAKB - Af8BAAP/AQAD/wEAA/8DwAH/AwAB/yMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8sAAOGAf8DAAH/ - AwAB/x8AAf8DAAH/AwAB/wMAAf8DAAH/AwAB/xgAAYECAAH/AYECAAH/A4YB/xwAAYECAAH/AwAB/wEA - A/8BAAP/AQAD/wPAAf8DAAH/HwAB/wMAAf8DAAH/CwAB/wMAAf8DAAH/LwAB/wMAAf8DhgH/GwAB/wMA - Af8DAAH/AwAB/wMAAf8IAAOGAf8BgQIAAf8BgQIAAf8IAAOGAf8BgQIAAf8BgQIAAf8DhgH/DQACgQH/ - AwAB/wMAAf8BAAKBAf8DhgH/AwAB/wEAA/8BAAP/AQAD/wMAAf8fAAH/AwAB/wMAAf8LAAH/AwAB/wMA - Af8sAAOGAf8DAAH/AwAB/xsAAf8DAAH/AwAB/wMAAf8MAAGBAgAB/wGBAgAB/wOGAf8MAAGBAgAB/wGB - AgAB/wGBAgAB/w0AAoEB/wEAA/8BAAP/A8AB/wOGAf8DhgH/A8AB/wEAA/8BAAP/AwAB/x8AAf8DAAH/ - AwAB/wsAAf8DAAH/AwAB/zMAAf8DAAH/A4YB/xcAAf8DAAH/AwAB/xAAAYECAAH/AYECAAH/A4YB/wwA - AYECAAH/AYECAAH/AYECAAH/DQACgQH/AQAD/wEAA/8BAAP/AwAB/wMAAf8BAAP/AQAD/wEAA/8DAAH/ - GwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8zAAH/AwAB/wMAAf8DAAH/AwAB/xMAAf8DAAH/ - GAABgQIAAf8BgQIAAf8IAAOGAf8BgQIAAf8BgQIAAf8DhgH/EQACgQH/AQAD/wEAA/8BAAP/AQAD/wEA - A/8BAAP/AQACgQH/A4YB/48AAf8gAAGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wOGAf8ZAAKB - Af8BAAP/AQAD/wEAA/8BAAP/AQACgQH/AwAB/+kAAoEB/wMAAf8DAAH/AwAB/wEAAoEB//8ArAAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/x8AAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA - Af8DAAH/AwAB/5gAA4YB/wPAAf8DwAH/A8AB/wPAAf8DwAH/A8AB/wPAAf8DwAH/AwAB/wsAAf8DAAH/ - AwAB/wMAAf8DAAH/A4YB/wPAAf8DwAH/A8AB/wPAAf8DwAH/A8AB/wPAAf8DAAH/mAADhgn/AZkL/wGZ - B/8BmQP/AwAB/wQAATECZAH/AQACgQH/AQACgQH/AQACgQH/AQACgQH/AQACgQH/A4YF/wHMATEBAAH/ - AcwBMQEAAf8BzAExAQAB/wHMATEBAAH/AcwBMQEAAf8DwAH/AwAB/zQAAYECAAH/AYECAAH/AYECAAH/ - DAABgQIAAf8BgQIAAf8BgQIAAf8vAAH/AwAB/wMAAf8DAAH/AwAB/wOGBv8CAAL/AgAC/wIAAv8CAAL/ - AgAC/wIABf8DAAH/BAABMQJkAf8BmQHMAv8BAAKBAf8BmQHMAv8BAAKBAf8BmQHMAv8DhgX/AZkH/wGZ - B/8BmQP/A8AB/wMAAf8IAAGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/xAA - Af8BZAExA/8BAAH/AYECAAH/DAABgQIAA/8BAAL/AWQBMQH/EAABgQIAAf8BgQIAAf8BgQIAAf8BgQIA - Af8BgQIAAf8BgQIAAf8BgQIAAf8DhgH/A8AB/wPAAf8DwAH/A8AB/wOGCf8BmQv/AZkH/wGZA/8DAAH/ - BAABMQJkAf8BAAKBAf8BmQHMAv8BAAKBAf8BmQHMAv8BAAKBAf8Dhgb/AgAC/wIAAv8CAAL/AgAC/wIA - Af8DwAH/AwAB/wgAAf8BZAExAv8BzAExAv8BzAExAv8BzAExAv8BzAExAf8BgQIAAf8UAAH/AWQBMQP/ - AQAC/wHMATEB/wGBAgAB/wQAAYECAAL/AcwBMQP/AQAC/wFkATEB/xQAAYECAAL/AcwBMQL/AcwBMQL/ - AcwBMQL/AcwBMQL/AWQBMQH/A4YB/wGZB/8BmQf/A4YG/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAF/wMA - Af8EAAExAmQB/wGZA/8BmQHMAv8BmQHMAv8BAAKBAf8BmQHMAv8DhgX/AZkH/wGZB/8DwAH/A8AB/wMA - Af8IAAH/AWQBMQP/AQAD/wHMAv8BzAExAf8BgQIAAf8cAAH/AWQBMQP/AQAB/wGBAgAB/wQAAYECAAP/ - AQAC/wFkATEB/xwAAYECAAL/AcwBMQP/AcwD/wEAAv8BZAExAf8DhgX/AYECAAH/AYECAAH/AYECAAH/ - A4YV/wGZA/8BmQP/AZkD/wMAAf8EAAExAmQB/wGZAcwC/wGZAcwC/wEAAoEB/wGZAcwC/wEAAoEB/wOG - Bv8CAAL/AgAC/wIAAf8DdQH/AwAB/wMAAf8DAAH/CAAB/wFkATED/wEAA/8BzAP/AQAB/wGBAgAB/xwA - Af8BZAExA/8BAAH/AYECAAH/BAABgQIAA/8BAAL/AWQBMQH/HAABgQIAA/8BAAP/AcwD/wEAAv8BZAEx - Af8Dhgn/AZkH/wOGBv8CAAL/AgAC/wIAAf8BmQP/AZkD/wPAAf8DwAH/AwAB/wQAATECZAH/AZkD/wGZ - AcwC/wGZAcwC/wEAAoEB/wGZAcwC/wOGEf8DhgX/AwAB/wwAAf8BZAExA/8BAAH/AYECAAP/AQAC/wHM - ATEB/wGBAgAB/xgAAf8BZAExA/8BAAH/AYECAAH/BAABgQIAA/8BAAL/AWQBMQH/GAABgQIAAv8BzAEx - A/8BAAH/AYECAAP/AQAC/wFkATEB/wOGBf8BgQIAAf8BgQIAAf8BgQIAAf8DhhX/AwAB/wMAAf8DAAH/ - AwAB/wQAATECZAH/AZkBzAL/AZkD/wGZAcwC/wGZAcwC/wGZAcwC/wOGAf8DhgH/A4YB/wOGAf8DhgH/ - A4YB/wMAAf8QAAH/AWQBMQH/AYECAAH/BAAB/wFkATED/wEAAv8BzAExAf8BgQIAAf8BgQIAAf8MAAGB - AgAC/wHMATED/wEAAf8BgQIAAf8EAAGBAgAD/wEAAv8BzAExAf8BgQIAAf8MAAGBAgAB/wGBAgAC/wHM - ATED/wEAAv8BZAExAf8EAAGBAgAC/wFkATEB/wOGCf8BmQP/AZkD/wOGBv8CAAL/AgAC/wIABf8DhgX/ - AwAB/wgAATECZAH/AZkD/wGZAcwC/wGZA/8BmQHMAv8BmQP/AZkBzAL/AZkD/wGZAcwC/wEAAoEB/wGZ - AcwC/wGZAcwC/wMAAf8QAAH/AWQBMQH/DAAB/wFkATED/wEAA/8BAAL/AcwBMQH/AYECAAH/AYECAAH/ - AYECAAL/AcwBMQP/AQAB/wGBAgAB/wwAAYECAAP/AQAC/wHMATEB/wGBAgAB/wGBAgAB/wGBAgAC/wHM - ATED/wEAA/8BAAL/AWQBMQH/DAAB/wFkATEB/wOGBf8BgQIAAf8BgQIAAf8BgQIAAf8DhhX/A4YB/wMA - Af8MAAExAmQB/wGZAcwC/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wGZAcwC/wMA - Af8kAAH/AWQBMQL/AWQBMQP/AQAD/wEAA/8BAAP/AQAD/wEAAf8BgQIAAf8UAAGBAgAD/wEAA/8BAAP/ - AQAD/wEAA/8BAAL/AWQBMQL/AWQBMQH/FAADhhH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/xAA - ATECZAH/AZkD/wEAAZkC/wGZA/8BAAHMAv8BAAHMAv8BAAHMAv8BAAHMAv8BAAGZAv8BAAExAZkB/wMA - Af8BmQHMAv8DAAH/LAAB/wFkATEC/wFkATEC/wFkATEC/wFkATEC/wFkATEB/xwAAf8BZAExAv8BZAEx - Av8BZAExAv8BZAExAv8BZAExAf8cAAOGBf8BgQIAAf8BgQIAAf8BgQIAAf8BmQf/A4YF/wMAAf8YAAEx - AmQJ/wEAAZkC/wGZA/8BAAHMAv8BAAJkAf8BAAHMAv8BAAExAZkB/wMAAf8BmQHMAv8BmQHMAv8DAAH/ - jAADhhn/A4YB/wMAAf8gAAExAmQB/wExAmQB/wExAmQB/wEAAZkG/wGZA/8BAAHMAv8DAAH/ATECZAH/ - ATECZAH/ATECZAH/kAADhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/zEAAZkC/wEAATEBmQH/ - AQABMQGZAf8BAAExAZkB/wEAATEBmQH//wCdAAMMAQ8DKgE/AyoBPwMqAT8DKgE/AyoBPwMqAT8DKgE/ - AyoBPwMqAT8DKgE/AyoBPwMqAT8XAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ - AwAB/wMAAf8DAAH/DwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8cAAH/ - AgAC/wIAAf8oAANGAX8BKwGuAcMB/wEMAYwB3AH/AQUBewHcAf8BBQF7AdwB/wEFAXsB3AH/AQUBewHc - Af8BBQF7AdwB/wEFAXsB3AH/AQUBewHcAf8BBQF7AdwB/wEFAXsB3AH/AQcBdgHUAf8DOQFfDAABmQIx - Af8BmQJkAf8BmQJkAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DwAH/A4YB/wMAAf8BmQJkAf8DAAH/ - CwAF/wPqAf8D6gH/A8AB/wPAAf8DwAH/A8AB/wOyAf8DsgH/AwAB/wN1Af8DAAH/FAAB/wIAA/8BzAP/ - AcwC/wIAAf8IAAH/AgAC/wIAAf8UAANGAX8BNgGuAcQB/wEdAc4C/wEAAakC/wEAAakC/wEAAakC/wEA - AakC/wEAAakC/wEAAakC/wEAAakC/wEAAakC/wEAAakC/wEAAakC/wFUAVUBVgGvDAABmQIxAf8BmQJk - Af8BmQJkAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DwAH/A8AB/wMAAf8BmQJkAf8DAAH/BwAB/wMA - Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wN1Af8DAAH/EAAB/wIA - Af8EAAL/AcwC/wIAAf8EAAH/AgAD/wHMA/8BzAL/AgAB/xAAA0YBfwE4AYwBqgH/AUAB6AL/AQABtwL/ - AQABtwL/AQABtwL/AQABtwL/AQABrwHvAf8BAAGfAc8B/wEAAbcC/wEAAbcC/wEAAbcC/wEAAbcC/wEz - AWwBjAHvDAABmQIxAf8BmQJkAf8BmQJkAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMABf8DwAH/AwAB/wGZ - AmQB/wMAAf8EAAOGBf8D6gH/A8AB/wPAAf8DwAH/A8AB/wEAAf8BAAH/AQAB/wEAAf8BAAH/AQAB/wPA - Af8DwAH/AwAB/wMAAf8DAAH/EAAB/wIAAf8EAAL/AcwC/wIAAf8EAAH/AgAB/wQAAv8BzAL/AgAB/xAA - A0YBfwE4AYYBowH/AXAB+wL/AQABxQL/AQABxQL/AQABxQL/AQQBiQGPAf8BDgFzAR0B/wEGAW8BPwH/ - AQABxQL/AQABxQL/AQABxQL/AQABxQL/AQcBnwHVAf8DIQEvCAABmQIxAf8BmQJkAf8BmQJkAf8DAAH/ - AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8BmQJkAf8DAAH/BAADhgn/A+oB/wPAAf8DwAH/ - A8AB/wEAAYEBAAH/AQABgQEAAf8BAAGBAQAB/wPAAf8DwAH/AwAB/wOGAf8DAAH/FAAB/wIAAv8CAAL/ - AgAB/wQAAf8CAAH/BAAC/wHMAv8CAAH/EAADRgF/AUsBpgG4Af8BdAHRAd4B/wEYAdsC/wEAAdMC/wEF - AYABXgH/ARkBogEmAf8BKQGHATkB/wEAAbgBzwH/AQAB0wL/AQAB0wL/AQAB0wL/AQAB0wL/AQABywH2 - Af8DRgF/CAABmQIxAf8BmQJkAf8BmQJkAf8BmQJkAf8BmQJkAf8BmQJkAf8BmQJkAf8BmQJkAf8BmQJk - Af8BmQJkAf8BmQJkAf8BmQJkAf8BmQJkAf8DAAH/BAADhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/ - A4YB/wOGAf8DhgH/A4YB/wOGAf8DAAH/A4YB/wOGAf8DAAH/GAAB/wIAAf8DhgL/AgAC/wIAAv8CAAH/ - FAADRgF/AVUBwwHTAf8BWgGeAbkB/wFSAe4C/wEDAZIBcAH/ARcBqQEoAf8BTwG2AVcB/wEAAbgBwAH/ - AQAB3QL/AQAB3QL/AQAB3QL/AQAB3QL/AQAB3QL/AQAB3QL/AVUBXAFeAb8IAAGZAjEB/wGZAmQB/wGZ - AmQB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AZkCZAH/AZkCZAH/AwAB/wQAA4YN/wPq - Af8D6gH/A8AB/wPAAf8DwAH/A8AB/wPAAf8DAAH/A4YB/wMAAf8DhgH/AwAB/xgAAf8CAAH/AwAC/wIA - Af8cAANGAX8BZAHRAeAB/wE4AYMBqAH/AZQB5wHgAf8BAgGGAREB/wFaAesBcAH/ASYBmQFWAf8BAAHn - Av8BAAHnAv8BAAHnAv8BAAHnAv8BAAHnAv8BAAHnAv8BAAHnAv8BDwGZAb4B/wgAAZkCMQH/AZkCZAH/ - AwAh/wMAAf8BmQJkAf8DAAH/CAADhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/ - A4YB/wMAAf8DhgH/AwAB/wMAAf8YAAOGAf8DAAH/AwAB/xwAA0YBfwF1AeAB7gH/ARQBcQGhAf8BmwHL - AboB/wEAAasBIAH/AWYB9wGEAf8BOAGpAVcB/wE1AfMC/wE1AfMC/wE1AfMC/wE1AfMC/wE1AfMC/wE1 - AfMC/wE1AfMC/wEwAcoB3wH/AzIBTwQAAZkCMQH/AZkCZAH/AwAh/wMAAf8BmQJkAf8DAAH/DAADhgH/ - A8Ad/wMAAf8DhgH/AwAB/wOGAf8DAAH/GwAB/wMAAf8DAAH/HAADRgF/AYMB6wH6Af8BCgGUAb0B/wFK - AYUBiAH/AQABugEqAf8BMQHrAVwB/wGFAekBigH/AVYBmgFeAf8BTgGYAVIB/wE9AYEBSgH/AYoBpwHA - Af8BigGnAcAB/wGKAacBwAH/AYoBpwHAAf8BigGnAcAB/wNAAW8EAAGZAjEB/wGZAmQB/wMAIf8DAAH/ - AZkCZAH/AwAB/xAAA4YG/wIAAv8CAAL/AgAC/wIAAv8CAAX/AwAB/wMAAf8DAAH/AwAB/xgAA4YB/wMA - Af8DhgH/AwAB/xwAA0YBfwGMAe4B/AH/AQYBxQHzAf8BBgG/AeUB/wEHAbEBOAH/AQYB7QFKAf8BPAHt - AWAB/wGQAfEBmgH/AaQB+wGuAf8BRwGnAXIB/wFQAd4B+AH/AVAB3gH4Af8BOQGUAboB/xAAAZkCMQH/ - AZkCZAH/AwAh/wMAAf8BmQJkAf8DAAH/EAADhgH/A8AZ/wPAAf8DAAH/IAADhgH/AwAB/wQAA8AB/wMA - Af8YAANGAX8BlQHwAf0B/wECAcsB9wH/AQEBuwHMAf8BFQGPAT8B/wErAfkBZQH/ARcB5wFDAf8BHAHn - AUcB/wGPAfYBoAH/AVABYgFXAd8BWgFcAV4BvwFaAVwBXgG/AVACUQGfEAABmQIxAf8BmQJkAf8DACH/ - AwAB/wMAAf8DAAH/FAADhgb/AWQBMQL/AWQBMQL/AWQBMQL/AWQBMQL/AWQBMQX/AwAB/xwAA4YB/wMA - Af8IAAOGAf8DAAH/GAADRgF/AaUBzwHcAf8BpQHPAdwB/wENAZIBMAH/ASMBzgFOAf8BLgHdAVQB/wEP - AeIBNwH/ARAB5AE4Af8BjwHfAZkB/wMyAU8cAAGZAjEB/wGZAmQB/wMAAf8BAAGZAv8BAAGZAv8BAAGZ - Av8BAAGZAv8BAAGZAv8BAAGZAv8BAAGZAv8BAAGZAv8DAAH/A8AB/wMAAf8UAAOGAf8DwBn/A8AB/wMA - Af8YAAOGAf8DAAH/DAADwAH/AwAB/xQAAwwBDwMqAT8DKgE/AyoBPwFQAVEBUAGfAT0BhwFLAe8BSwHW - AXIB/wFIAekBbwH/AYcBywGSAf8DIQEvHAABmQIxAf8BmQIxAf8BmQIxAf8BAAExAZkB/wEAATEBmQH/ - AQABMQGZAf8BAAExAZkB/wEAATEBmQH/AQABMQGZAf8BAAExAZkB/wEAATEBmQH/AZkCMQH/AZkCMQH/ - AwAB/xgAA4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/GwAB/xAAA4YB/wMAAf8oAAMM - AQ8DQAFvAVUBcwFdAd8BPwGBAUsB79wAAUIBTQE+BwABPgMAASgDAAFAAwAB8AMAAQEBAAEBBQABgAEH - FgAD/wEAAYABATYAAYABAQYAAYABAQYAAYABAQYAAYABAQYAAYABAQYAAYABAQYAAcABAQYAAfgBHwYA - AfgBHwYABP8B8AEPAfwBPwH/AX8B/QH/AcABAwHgAQcB/gE/AfgB/wGAAQEBwAEDAfwBHwHgAX8BgAEB - AYABAQH/AV8BwAE/AYABAQGAAQEB/wF/AcIBHwGAAQEBgAEBAe8BewHHAQ8BgAEBAgABzwF5Af8BhwGA - AQECAAGAAQAB/wHDAYABAQIAAc8BeQH/AeEBgAMAAe8BewEgAoABAAGAAQEB/wF/AQIBEAGAAQABgAEB - Af8BfwGgARwBgAEAAYABAQH8AR8BggETAYABAAHAAQMB/gE/AdABhwHAAQEB4AEHAf8BfwL/AfABBwH8 - AT8C/wGAAQECAAH8Af8B8AEDAYABAQIAAfABPwHwAQMBgAEBAgABwAEPAcABAwGAAQECAAGAAQMBwAED - AYABAQIAAYABAQHAAQMBgAEBAgABgAEBAcABAwGAAQECAAGAAQEBwAEDAYABAQIAAYABAQHAAQMBgAEB - AgABgAEBAcABAwGAAQECAAGAAQEBwAEDAYABAQIAAYABAQHAAQMBgAEBAgABwAEBAcABAwGAAQECAAHw - AQMBwAEHAYABAQIAAfwBDwHAAQ8BgAEBAgAB/wE/AcABHwGAAQEG/wIAAfwD/wH8AwAB8AE/AYABAQH8 - AwABwAEPAYABAQH8AwABgAEDAYABAQH8AwABgAEBAYABAQQAAYABAQGAAQEEAAGAAQEBgAEBBAABgAEB - AYABAQEAAT8CAAGAAQEBgAEBAQABAQIAAYABAQGAAQEBAAEBAgABgAEBAYABAQEAAQECAAHAAQEBgAEB - AfgBAQIAAfABAwGAAQEB+AEBAgAB/AEPAYABAQH4AQECAAH/AT8BgAEBAfgBAQ7/AYABAQGAAQEBAAEP - AfABAAGAAQEBgAEBAQABDwL/AYABAQGAAQEBAAEPAfABcAGAAQEBgAEBAQABDwH8AfkBgAEBAYABAQEA - AQ8B/gF5AYABAQGAAQEBAAEPAYMBAQGAAQEBgAEBAQABDwHnAZkBgAEBAYABAQEAAQ4B8wHJAYABAQGA - AQEBAAEEAfgBAQGAAQEBgAEBAgAB/AHBAYABAQGAAQECAAH+AUkBgAEBAYABAQH4AQAB/wEPAYABAQGA - AQEB/AEAAf8BjwGAAQEBgAEBAf4BBAH/Ac8BgAEBAYABAQz/Ad8B/wH+AcEB4AEDAfgBAQGfAf8B/gFA - AcABAwH4AQEBAgGrAfgBDAHgAQcB+AEBAZ8B/wH2AUwB8AEfAfgBAQHfAf8B7gHMAfgBDwHAAQEB8AHh - Ae8BwAHwAQcBwAEBAfAB4QHvAUMB8AEHAcABAQHwAeEB/wHPAeABBwHAAQ8B8AFBAcEBTwHAAQMBAAEP - AfABAQGBAc8BwAEHAQABDwHwAQEBmQF/AcABDwEAAQ8B+AFDAYEB/wHAAQ8BAAE/AfwB5wGBAa8BwAEf - AQABPwH8AecBgQHPAeABDwEAAT8C/wHDAY8B8AEfAQABPwv/AfkD/wH3Av8B5wH/AQcBwQH/AfMBgAF/ - AcMB8wEHAcEBqgGBAYABPwHDAecBBwHBAf8B8wGAAR8B4QHHAgEB/wH3AYABDwHwAY8BAAEBAQ4BHwHA - AQcB+AEfAQABAQEOAR8B4AEDAfwBPwEAAQEBDgEfAfABAQH4AR8BgAEDAQQBHwH4AQEB8AGfAcEBBwEA - AR8B/AEBAcEBxwHBAQcBAAEfAf4BAQGDAuMBjwGEAT8B/wEBAY8B8QHjAY8BzgF/BP8B4wGPAc4Bfxb/ - AcABAwH+AQcB/wGXAcABAwHAAQMD/wGXAcABAwHAAQMB/wEHAf8BlwHAAQMBwAEDAf4BZwH/AZcBwAED - AcABAwH+AWcB/wEXAcABAwHAAQMB/wEHAf4BFwHAAQMBwAEDAf8B9wH+ARcBwAEDAcABAwH/AQ8B/gEX - AcABAwHAAQMBwwH/AcMBBwHAAQMBwAEDAccB3wHHAf8BwAEDAcABAwHHAd8BxwHfAcABBwHAAQMB2wG/ - AdsBvwHAAQ8BwAEHAfwBfwH8AX8BwAEfAcABDwb/AcABHxD/AaoBqwGqAasBqgGrAYABAwG/Av8B+wL/ - Ab8B+wGgAXsBoAF7AaABewGgAXsBvwL/AfsC/wG/AfsBoAELAaABCwGgAQsBoAELAb8C/wH7Av8BvwH7 - AaABCwGgAQsBoAELAaABCwG/Av8B+wL/Ab8B+wGgAQsBoAELAaABCwGgAQsBvwL/AfsC/wG/AfsBuAEL - AbgBCwG4AQsBuAELAb8C/wH7Av8BvwH7AaoBqwGqAasBqgGrAYABAxD/AgAG/wIAAYABAwGAAQMBqgGr - AgABvwH7Bv8BoAF7AaABewGgAXsBwQH/Ab8B+wT/AcAB/wGgAQsBoAELAaABCwHgAX8BvwH7BP8B8AE/ - AaABCwGgAQsBoAELAfgBHwG/AfsE/wH8AQ8BoAELAaABCwGgAQsB/gEHAb8B+wX/AQMBuAELAbgBCwG4 - AQsB/wGBAb8B+wX/AcEBgAEDAaoBqwGAAQMB/wHjEv8BnwH/AgAC/wGPAf8B7wH/AgAB+AEBAYwBAQHc - AQECAAL/AY8B/wGPA/8BgAEBBP8BhwEDBP8BjwH/Ac8BhwH4AQEBjwH/Ad8B/wHnAY8C/wGMAQEB7AEB - AecBjwGAAQEBjwH/AZ8B/wHwAR8G/wHzAR8B+AEBAv8BjwH/AfkBPwL/AY8B/wHfAf8B+AE/AYABAQGM - AQEBnAEBAfwBfwL/AY8B/wHfAf8B/AF/Bv8B/gn/Af4B/wH+Df8BwgF/AcIBfwGAAR8B4AEHCP8BwgEA - AcIBAAGAAQEBgAEBCP8B3gEHAd4BBwGAAR8B4AEHAc4BBwGeAQcE/wEHAf8BBwH/AYABAQGAAQEBzgEA - AZ4BAAT/Ad4BAAHeAQABgAEfAeABBwj/AcIBAAHCAQABgAEBAYABAQj/Af4B/wH+Df8B+QH/AfwBHwT/ - AfkB/wH8AR8E/wHzAccB/AEfBP8BcwHHAfwBHwHgAR8B4AF/AScD/wHxAY8B+AH/AQcBxwH8AR8B8QGP - AfgB/wEAAccB/AEfAfEBjwH8AX8BAQHnAfwBDwHwAR8B/AF/AQMB8QH8AQcB8QGPAf4BPwEGATAB4AEH - AfEBjwH+AT8BDgE4AeABBwHxAY8B/wEfAR4BOAHgAQcB4AEfAf4BDwE/ATAB8AEHBP8BfwGBAfgBDwb/ - AfwBHwz/AfgBAQH8AQEE/wH4AQEBgAEBBP8B+AEBAQABAQH/AfEBxwH/AQABAQEAAQEBgAHxAccBgAEA - AQEBAAEBAYEB8AGHAcABAAEBAQABAQGDAfgBjwHgAQABAQEAAQEBgwH4AY8B4AEAAQEBAAEDAYEB+AGP - AcABAAEBAQABBwGQAXABhwEEAQABAwEAAQcBuAEBAcABDgEAAQcBAAEHAfwBAwHgAR8BAAEPAQABBwH/ - AQcB8AF/AQABPwEAAQcE/wEAAX8BgAEPBP8BAAH/AfABfwz/AQABBwHAAQEBwAEHAfMB/wEAAQMBgAEB - AYABAwHhAZ8BAAEDAYABAQEAAQEB6QEPAQABAwGAAQEBAAEBAekBTwEAAQEBgAEBAQABAQHxAU8BAAEB - AYABAQIAAfwBHwEAAQEBgAEBAgAB/AF/AQABAQGAAQEBgAEAAfwBfwIAAYABAQHAAQAB/AF/AgABgAEB - AeABAQH4AX8BAAEHAYABAQHgAQcB+QE/AQABBwGAAQEB8AEHAfMBPwEAAT8BgAEBAfABAwHzAZ8BAAE/ - AYABAQH4AQMB9wGfAfgBfwb/Cw== + ATECZAH/ATECZAH/ATECZAH/ATECZAH/BwAB/w8AAf9vAAH/TwAB/y8AAf8PAAH/DAABMQJkAf8BMQJk + Af8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8EAAExAmQB/wwAATECZAH/DAABMQJkAf8BMQJk + Af8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8HAAH/DAABMQJkAf8MAAExAmQB/wExAmQB/wEx + AmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wQAATECZAH/DwAB/wwAATECZAH/ATECZAH/ATECZAH/ + ATECZAH/ATECZAH/ATECZAH/ATECZAH/BwAB/w8AAf9vAAH/TwAB/y8AAf8PAAH/BAABMQJkAf8EAAEx + AmQB/wQAATECZAH/BAABMQJkAf8EAAExAmQB/wQAATECZAH/DAABMQJkAf8EAAExAmQB/wQAATECZAH/ + BAABMQJkAf8EAAExAmQB/wQAATECZAH/BwAB/wwAATECZAH/BAABMQJkAf8EAAExAmQB/wQAATECZAH/ + BAABMQJkAf8EAAExAmQB/wQAATECZAH/DwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB//8A/wALAAP/AQAD/wEAA/8BAAP/AQAD/wEAA/8BAAP/AQAD/wEAA/8BAAP/ + AQAD/wEAA/8BAAP/AQAD/wEAA/8BAAP/wQAD/wEAA/8BAAP/AQAD/wEAA/8BAAP/AQAD/wEAA/8BAAP/ + AQAD/wEAA/8BAAP/AQAD/wEAA/8BAAP/AQAD/wcAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8PAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/DAABMQJkAf8EAAExAmQB/wQAATECZAH/BAABMQJkAf8EAAExAmQB/wQAATECZAH/ + BAABMQJkAf8JAAP/AQAD/wEAA/8BAAP/AQAD/wEAA/8BAAP/AQAD/wEAA/8BAAP/AQAD/wEAA/8BAAP/ + AQAD/wEAA/8BAAP/BwAB/y8AAf/PAAH/BAADhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8TAAH/DAABMQJk + Af8EAAExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/xAAATECZAH/DAABMQJkAf8EAAEx + AmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/xAAATECZAH/EwAB/wMAAf8DAAH/AwAB/wOG + Af8rAAH/LwAB/5AAA4YB/wEAA/8BAAP/AwAB/wMAAf8DhgH/JwAB/wQAA4YB/wOGAf8DhgH/A4YB/wOG + Af8DhgH/A4YB/wOGAf8DhgH/BwAB/wwAATECZAH/BAABMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJk + Af8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8EAAExAmQB/wwAATECZAH/BAABMQJkAf8BMQJkAf8BMQJk + Af8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8BMQJkAf8EAAExAmQB/xcAAf8DAAH/AQAD/wEA + AZkBzAH/AQABmQHMAf8DAAH/IwAB/y8AAf+bAAX/AZkCzAH/AQABmQHMAf8BAAGZAcwB/wMAAf8fAAH/ + BAADhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8HAAH/DAABMQJkAf8EAAExAmQB/wEx + AmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wQAATECZAH/DAABMQJk + Af8EAAExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wQA + ATECZAH/HwAB/wGZAswB/wGZAswB/wOGAf8BAAGZAcwB/wMAAf8bAAH/LwAB/6MAAf8BmQLMAf8BmQLM + Af8BAAGBAQAB/wEAAZkBzAH/AwAB/xcAAf8EAAOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/ + A4YB/wcAAf8MAAExAmQB/wQAATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ + ATECZAH/ATECZAH/BAABMQJkAf8MAAExAmQB/wQAATECZAH/ATECZAH/ATECZAH/ATECZAH/ATECZAH/ + ATECZAH/ATECZAH/ATECZAH/ATECZAH/BAABMQJkAf8nAAX/AZkCzAH/AQABgQEAAf8BAAGZAcwB/wMA + Af8TAAH/LwAB/6sABf8BmQLMAf8BAAGBAQAB/wEAAZkBzAH/AwAB/w8AAf8MAAOGAf8DhgH/A4YB/wOG + Af8DhgH/A4YB/wOGAf8HAAH/DAABMQJkAf8MAAExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wEx + AmQB/wExAmQB/wQAATECZAH/DAABMQJkAf8MAAExAmQB/wExAmQB/wExAmQB/wExAmQB/wExAmQB/wEx + AmQB/wExAmQB/wQAATECZAH/LwAF/wGZAswB/wMAAv8CAAH/AwAB/wsAAf8vAAH/swAB/wMAAf8BmQLM + Av8CAAH/AwAB/wsAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8MAAExAmQB/wQAATECZAH/BAABMQJkAf8EAAExAmQB/wQAATECZAH/BAABMQJkAf8EAAExAmQB/w8A + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf83AAH/AwAB/wMA + Af//AP8ATgABgQIAAf8BgQIAAf82AAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/ + AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/RAABgQIAAf8BgQIAAf8BgQIAAf88AAGBAgAB/zIAAv8CAAL/ + AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8XAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/CAABgQIAAf8BgQIAAf8BgQIAAf8LAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8MAAGBAgAB/w8AAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wYAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIAAv8CAAL/ + AgAC/wIAAv8CAAL/AgAC/wIAAv9EAAGBAgAB/wGBAgAB/wGBAgAB/zQAAYECAAH/AYECAAH/AYECAAH/ + dwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf+IAAGB + AgAB/wGBAgAB/wGBAgAB/wGBAgAB/wwAAYECAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/ + jAABgQIAAf8BgQIAAf8BgQIAAf84AAOGAf8BgQIAAf8UAAOGAf8BgQIAAf8BgQIAAf8DhgH/IwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wgAAYECAAH/AYECAAH/AYECAAH/OAABgQIA + Af9AAAGBAgAB/wGBAgAB/xAAA4YB/wGBAgAB/wGBAgAB/1QAAYECAAH/AYECAAH/AYECAAH/CwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/EAABgQIAAf8LAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8QAAOGAf8BgQIAAf8QAAGBAgAB/wGBAgAB/wOGAf8XAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wgAAYECAAH/AYECAAH/AYECAAH/ + NAABgQIAAf8BgQIAAf9EAAGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/+QA + A4YB/wGBAgAB/wgAAYECAAH/AYECAAH/A4YB/ysAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf9IAAGBAgAB/wGBAgAB/wGBAgAB/0QAAYECAAH/AYECAAH/BAABgQIAAf8BgQIAAf9cAAGB + AgAB/wGBAgAB/wGBAgAB/zgAAYECAAH/SAADhgH/AYECAAH/AYECAAH/AYECAAH/A4YB/x8AAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/CAABgQIAAf8BgQIA + Af8BgQIAAf8LAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8IAAGBAgAB/wGBAgAB/w8A + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/xwAAYECAAH/AYECAAH/AYECAAH/YAABgQIA + Af8BgQIAAf8BgQIAAf84AAGBAgAB/0wAA4YB/wGBAgAB/wOGAf/4AAGBAgAB//8AQAAB/z8AAf//AKwA + Af8DAAH/AwAB/wMAAf8HAAH/AwAB/ycAAf8DAAH/AwAB/wMAAf8HAAH/AwAB/yMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8jAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH//wAYAAH/AwAB/wMAAf8DAAH/BwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + CwAB/wMAAf8DAAH/AwAB/wcAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wcAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/CwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf//AA0AAYECAAH/EwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/FAABgQIAAf8TAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8TAAH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/IwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/xQAAYECAAH/AYECAAH/DwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/EAABgQIAAf8BgQIA + Af8TAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf+MAAGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/wGBAgAB/ywA + AYECAAH/AYECAAH/AYECAAH/AYECAAH/AYECAAH/MwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8LAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wwAAYECAAH/AYECAAH/DwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/BAABgQIAAf8BgQIAAf8TAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af+IAAGBAgAB/xMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wgAAYECAAH/EwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/BwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/yMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf//ABgAAf8DAAH/ + AwAB/wMAAf8HAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8LAAH/AwAB/wMAAf8DAAH/ + BwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/BwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8LAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB//8AJAAB/z8AAf//ALgAAf8DAAH/PQACgQH/AwAB/wMA + Af8DAAH/AQACgQH/qwAB/wMAAf8/AAH/AQAD/wEAA/8BAAP/AwAB/6cAAf8DAAH/EAABgQIAAf8BgQIA + Af8BgQIAAf8nAAH/AQAD/wEAA/8BAAP/AwAB/5cAAf8PAAH/AwAB/xAAAYECAAH/AYECAAH/AYECAAH/ + JQACgQH/AwAB/wMAAf8DAAH/AQACgQH/IwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8jAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8fAAH/AwAB/wcAAf8DAAH/fwAB/wMAAf8DAAH/CwAB/wMAAf8DAAH/ + JwAB/wMAAf8DhgH/IwAB/wMAAf8DAAH/AwAB/wMAAf8UAAGBAgAB/wGBAgAB/wOGAf8lAAKBAf8DAAH/ + AwAB/wMAAf8DhgH/JwAB/wMAAf8DAAH/CwAB/wMAAf8DAAH/JAADhgH/AwAB/wMAAf8jAAH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wgAAYECAAH/AYECAAH/A4YB/yUAAoEB/wEAA/8BAAP/A8AB/wMA + Af8nAAH/AwAB/wMAAf8LAAH/AwAB/wMAAf8rAAH/AwAB/wOGAf8fAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/EAABgQIAAf8BgQIAAf8lAAKBAf8BAAP/AQAD/wEAA/8DwAH/AwAB/yMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8sAAOGAf8DAAH/AwAB/x8AAf8DAAH/AwAB/wMAAf8DAAH/AwAB/xgAAYECAAH/ + AYECAAH/A4YB/xwAAYECAAH/AwAB/wEAA/8BAAP/AQAD/wPAAf8DAAH/HwAB/wMAAf8DAAH/CwAB/wMA + Af8DAAH/LwAB/wMAAf8DhgH/GwAB/wMAAf8DAAH/AwAB/wMAAf8IAAOGAf8BgQIAAf8BgQIAAf8IAAOG + Af8BgQIAAf8BgQIAAf8DhgH/DQACgQH/AwAB/wMAAf8BAAKBAf8DhgH/AwAB/wEAA/8BAAP/AQAD/wMA + Af8fAAH/AwAB/wMAAf8LAAH/AwAB/wMAAf8sAAOGAf8DAAH/AwAB/xsAAf8DAAH/AwAB/wMAAf8MAAGB + AgAB/wGBAgAB/wOGAf8MAAGBAgAB/wGBAgAB/wGBAgAB/w0AAoEB/wEAA/8BAAP/A8AB/wOGAf8DhgH/ + A8AB/wEAA/8BAAP/AwAB/x8AAf8DAAH/AwAB/wsAAf8DAAH/AwAB/zMAAf8DAAH/A4YB/xcAAf8DAAH/ + AwAB/xAAAYECAAH/AYECAAH/A4YB/wwAAYECAAH/AYECAAH/AYECAAH/DQACgQH/AQAD/wEAA/8BAAP/ + AwAB/wMAAf8BAAP/AQAD/wEAA/8DAAH/GwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8zAAH/ + AwAB/wMAAf8DAAH/AwAB/xMAAf8DAAH/GAABgQIAAf8BgQIAAf8IAAOGAf8BgQIAAf8BgQIAAf8DhgH/ + EQACgQH/AQAD/wEAA/8BAAP/AQAD/wEAA/8BAAP/AQACgQH/A4YB/48AAf8gAAGBAgAB/wGBAgAB/wGB + AgAB/wGBAgAB/wGBAgAB/wOGAf8ZAAKBAf8BAAP/AQAD/wEAA/8BAAP/AQACgQH/AwAB/+kAAoEB/wMA + Af8DAAH/AwAB/wEAAoEB//8ArAAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/x8A + Af8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/5gAA4YB/wPAAf8DwAH/A8AB/wPAAf8DwAH/ + A8AB/wPAAf8DwAH/AwAB/wsAAf8DAAH/AwAB/wMAAf8DAAH/A4YB/wPAAf8DwAH/A8AB/wPAAf8DwAH/ + A8AB/wPAAf8DAAH/mAADhgn/AZkL/wGZB/8BmQP/AwAB/wQAATECZAH/AQACgQH/AQACgQH/AQACgQH/ + AQACgQH/AQACgQH/A4YF/wHMATEBAAH/AcwBMQEAAf8BzAExAQAB/wHMATEBAAH/AcwBMQEAAf8DwAH/ + AwAB/zQAAYECAAH/AYECAAH/AYECAAH/DAABgQIAAf8BgQIAAf8BgQIAAf8vAAH/AwAB/wMAAf8DAAH/ + AwAB/wOGBv8CAAL/AgAC/wIAAv8CAAL/AgAC/wIABf8DAAH/BAABMQJkAf8BmQHMAv8BAAKBAf8BmQHM + Av8BAAKBAf8BmQHMAv8DhgX/AZkH/wGZB/8BmQP/A8AB/wMAAf8IAAGBAgAB/wGBAgAB/wGBAgAB/wGB + AgAB/wGBAgAB/wGBAgAB/wGBAgAB/xAAAf8BZAExA/8BAAH/AYECAAH/DAABgQIAA/8BAAL/AWQBMQH/ + EAABgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8BgQIAAf8DhgH/A8AB/wPAAf8DwAH/ + A8AB/wOGCf8BmQv/AZkH/wGZA/8DAAH/BAABMQJkAf8BAAKBAf8BmQHMAv8BAAKBAf8BmQHMAv8BAAKB + Af8Dhgb/AgAC/wIAAv8CAAL/AgAC/wIAAf8DwAH/AwAB/wgAAf8BZAExAv8BzAExAv8BzAExAv8BzAEx + Av8BzAExAf8BgQIAAf8UAAH/AWQBMQP/AQAC/wHMATEB/wGBAgAB/wQAAYECAAL/AcwBMQP/AQAC/wFk + ATEB/xQAAYECAAL/AcwBMQL/AcwBMQL/AcwBMQL/AcwBMQL/AWQBMQH/A4YB/wGZB/8BmQf/A4YG/wIA + Av8CAAL/AgAC/wIAAv8CAAL/AgAF/wMAAf8EAAExAmQB/wGZA/8BmQHMAv8BmQHMAv8BAAKBAf8BmQHM + Av8DhgX/AZkH/wGZB/8DwAH/A8AB/wMAAf8IAAH/AWQBMQP/AQAD/wHMAv8BzAExAf8BgQIAAf8cAAH/ + AWQBMQP/AQAB/wGBAgAB/wQAAYECAAP/AQAC/wFkATEB/xwAAYECAAL/AcwBMQP/AcwD/wEAAv8BZAEx + Af8DhgX/AYECAAH/AYECAAH/AYECAAH/A4YV/wGZA/8BmQP/AZkD/wMAAf8EAAExAmQB/wGZAcwC/wGZ + AcwC/wEAAoEB/wGZAcwC/wEAAoEB/wOGBv8CAAL/AgAC/wIAAf8DdQH/AwAB/wMAAf8DAAH/CAAB/wFk + ATED/wEAA/8BzAP/AQAB/wGBAgAB/xwAAf8BZAExA/8BAAH/AYECAAH/BAABgQIAA/8BAAL/AWQBMQH/ + HAABgQIAA/8BAAP/AcwD/wEAAv8BZAExAf8Dhgn/AZkH/wOGBv8CAAL/AgAC/wIAAf8BmQP/AZkD/wPA + Af8DwAH/AwAB/wQAATECZAH/AZkD/wGZAcwC/wGZAcwC/wEAAoEB/wGZAcwC/wOGEf8DhgX/AwAB/wwA + Af8BZAExA/8BAAH/AYECAAP/AQAC/wHMATEB/wGBAgAB/xgAAf8BZAExA/8BAAH/AYECAAH/BAABgQIA + A/8BAAL/AWQBMQH/GAABgQIAAv8BzAExA/8BAAH/AYECAAP/AQAC/wFkATEB/wOGBf8BgQIAAf8BgQIA + Af8BgQIAAf8DhhX/AwAB/wMAAf8DAAH/AwAB/wQAATECZAH/AZkBzAL/AZkD/wGZAcwC/wGZAcwC/wGZ + AcwC/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wMAAf8QAAH/AWQBMQH/AYECAAH/BAAB/wFkATED/wEA + Av8BzAExAf8BgQIAAf8BgQIAAf8MAAGBAgAC/wHMATED/wEAAf8BgQIAAf8EAAGBAgAD/wEAAv8BzAEx + Af8BgQIAAf8MAAGBAgAB/wGBAgAC/wHMATED/wEAAv8BZAExAf8EAAGBAgAC/wFkATEB/wOGCf8BmQP/ + AZkD/wOGBv8CAAL/AgAC/wIABf8DhgX/AwAB/wgAATECZAH/AZkD/wGZAcwC/wGZA/8BmQHMAv8BmQP/ + AZkBzAL/AZkD/wGZAcwC/wEAAoEB/wGZAcwC/wGZAcwC/wMAAf8QAAH/AWQBMQH/DAAB/wFkATED/wEA + A/8BAAL/AcwBMQH/AYECAAH/AYECAAH/AYECAAL/AcwBMQP/AQAB/wGBAgAB/wwAAYECAAP/AQAC/wHM + ATEB/wGBAgAB/wGBAgAB/wGBAgAC/wHMATED/wEAA/8BAAL/AWQBMQH/DAAB/wFkATEB/wOGBf8BgQIA + Af8BgQIAAf8BgQIAAf8DhhX/A4YB/wMAAf8MAAExAmQB/wGZAcwC/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wGZAcwC/wMAAf8kAAH/AWQBMQL/AWQBMQP/AQAD/wEAA/8BAAP/AQAD/wEA + Af8BgQIAAf8UAAGBAgAD/wEAA/8BAAP/AQAD/wEAA/8BAAL/AWQBMQL/AWQBMQH/FAADhhH/A4YB/wOG + Af8DhgH/A4YB/wOGAf8DhgH/A4YB/xAAATECZAH/AZkD/wEAAZkC/wGZA/8BAAHMAv8BAAHMAv8BAAHM + Av8BAAHMAv8BAAGZAv8BAAExAZkB/wMAAf8BmQHMAv8DAAH/LAAB/wFkATEC/wFkATEC/wFkATEC/wFk + ATEC/wFkATEB/xwAAf8BZAExAv8BZAExAv8BZAExAv8BZAExAv8BZAExAf8cAAOGBf8BgQIAAf8BgQIA + Af8BgQIAAf8BmQf/A4YF/wMAAf8YAAExAmQJ/wEAAZkC/wGZA/8BAAHMAv8BAAJkAf8BAAHMAv8BAAEx + AZkB/wMAAf8BmQHMAv8BmQHMAv8DAAH/jAADhhn/A4YB/wMAAf8gAAExAmQB/wExAmQB/wExAmQB/wEA + AZkG/wGZA/8BAAHMAv8DAAH/ATECZAH/ATECZAH/ATECZAH/kAADhgH/A4YB/wOGAf8DhgH/A4YB/wOG + Af8DhgH/A4YB/zEAAZkC/wEAATEBmQH/AQABMQGZAf8BAAExAZkB/wEAATEBmQH//wCdAAMLAQ8DKQE/ + AykBPwMpAT8DKQE/AykBPwMpAT8DKQE/AykBPwMpAT8DKQE/AykBPwMpAT8XAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/DwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMAAf8cAAH/AgAC/wIAAf8oAAJFAUYBfwErAa4BwwH/AQwBjAHcAf8BBQF7 + AdwB/wEFAXsB3AH/AQUBewHcAf8BBQF7AdwB/wEFAXsB3AH/AQUBewHcAf8BBQF7AdwB/wEFAXsB3AH/ + AQUBewHcAf8BBwF2AdQB/wM5AV8MAAGZAjEB/wGZAmQB/wGZAmQB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wPAAf8DhgH/AwAB/wGZAmQB/wMAAf8LAAX/A+oB/wPqAf8DwAH/A8AB/wPAAf8DwAH/A7IB/wOy + Af8DAAH/A3UB/wMAAf8UAAH/AgAD/wHMA/8BzAL/AgAB/wgAAf8CAAL/AgAB/xQAAkUBRgF/ATYBrgHE + Af8BHQHOAv8BAAGpAv8BAAGpAv8BAAGpAv8BAAGpAv8BAAGpAv8BAAGpAv8BAAGpAv8BAAGpAv8BAAGp + Av8BAAGpAv8BUgFUAVgBrwwAAZkCMQH/AZkCZAH/AZkCZAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + A8AB/wPAAf8DAAH/AZkCZAH/AwAB/wcAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8DdQH/AwAB/xAAAf8CAAH/BAAC/wHMAv8CAAH/BAAB/wIAA/8BzAP/AcwC/wIA + Af8QAAJFAUYBfwE4AYwBqgH/AUAB6AL/AQABtwL/AQABtwL/AQABtwL/AQABtwL/AQABrwHvAf8BAAGf + Ac8B/wEAAbcC/wEAAbcC/wEAAbcC/wEAAbcC/wEuAW8BkQHvDAABmQIxAf8BmQJkAf8BmQJkAf8DAAH/ + AwAB/wMAAf8DAAH/AwAB/wMABf8DwAH/AwAB/wGZAmQB/wMAAf8EAAOGBf8D6gH/A8AB/wPAAf8DwAH/ + A8AB/wEAAf8BAAH/AQAB/wEAAf8BAAH/AQAB/wPAAf8DwAH/AwAB/wMAAf8DAAH/EAAB/wIAAf8EAAL/ + AcwC/wIAAf8EAAH/AgAB/wQAAv8BzAL/AgAB/xAAAkUBRgF/ATgBhgGjAf8BcAH7Av8BAAHFAv8BAAHF + Av8BAAHFAv8BBAGJAY8B/wEOAXMBHQH/AQYBbwE/Af8BAAHFAv8BAAHFAv8BAAHFAv8BAAHFAv8BBwGf + AdUB/wMgAS8IAAGZAjEB/wGZAmQB/wGZAmQB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/ + AwAB/wGZAmQB/wMAAf8EAAOGCf8D6gH/A8AB/wPAAf8DwAH/AQABgQEAAf8BAAGBAQAB/wEAAYEBAAH/ + A8AB/wPAAf8DAAH/A4YB/wMAAf8UAAH/AgAC/wIAAv8CAAH/BAAB/wIAAf8EAAL/AcwC/wIAAf8QAAJF + AUYBfwFLAaYBuAH/AXQB0QHeAf8BGAHbAv8BAAHTAv8BBQGAAV4B/wEZAaIBJgH/ASkBhwE5Af8BAAG4 + Ac8B/wEAAdMC/wEAAdMC/wEAAdMC/wEAAdMC/wEAAcsB9gH/AUUCRgF/CAABmQIxAf8BmQJkAf8BmQJk + Af8BmQJkAf8BmQJkAf8BmQJkAf8BmQJkAf8BmQJkAf8BmQJkAf8BmQJkAf8BmQJkAf8BmQJkAf8BmQJk + Af8DAAH/BAADhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DAAH/ + A4YB/wOGAf8DAAH/GAAB/wIAAf8DhgL/AgAC/wIAAv8CAAH/FAABRQJGAX8BVQHDAdMB/wFaAZ4BuQH/ + AVIB7gL/AQMBkgFwAf8BFwGpASgB/wFPAbYBVwH/AQABuAHAAf8BAAHdAv8BAAHdAv8BAAHdAv8BAAHd + Av8BAAHdAv8BAAHdAv8BUgFdAWABvwgAAZkCMQH/AZkCZAH/AZkCZAH/AwAB/wMAAf8DAAH/AwAB/wMA + Af8DAAH/AwAB/wMAAf8BmQJkAf8BmQJkAf8DAAH/BAADhg3/A+oB/wPqAf8DwAH/A8AB/wPAAf8DwAH/ + A8AB/wMAAf8DhgH/AwAB/wOGAf8DAAH/GAAB/wIAAf8DAAL/AgAB/xwAAUUCRgF/AWQB0QHgAf8BOAGD + AagB/wGUAecB4AH/AQIBhgERAf8BWgHrAXAB/wEmAZkBVgH/AQAB5wL/AQAB5wL/AQAB5wL/AQAB5wL/ + AQAB5wL/AQAB5wL/AQAB5wL/AQ8BmQG+Af8IAAGZAjEB/wGZAmQB/wMAIf8DAAH/AZkCZAH/AwAB/wgA + A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DAAH/A4YB/wMAAf8DAAH/ + GAADhgH/AwAB/wMAAf8cAAFFAkYBfwF1AeAB7gH/ARQBcQGhAf8BmwHLAboB/wEAAasBIAH/AWYB9wGE + Af8BOAGpAVcB/wE1AfMC/wE1AfMC/wE1AfMC/wE1AfMC/wE1AfMC/wE1AfMC/wE1AfMC/wEwAcoB3wH/ + AzEBTwQAAZkCMQH/AZkCZAH/AwAh/wMAAf8BmQJkAf8DAAH/DAADhgH/A8Ad/wMAAf8DhgH/AwAB/wOG + Af8DAAH/GwAB/wMAAf8DAAH/HAACRQFGAX8BgwHrAfoB/wEKAZQBvQH/AUoBhQGIAf8BAAG6ASoB/wEx + AesBXAH/AYUB6QGKAf8BVgGaAV4B/wFOAZgBUgH/AT0BgQFKAf8BigGnAcAB/wGKAacBwAH/AYoBpwHA + Af8BigGnAcAB/wGKAacBwAH/AT8CQAFvBAABmQIxAf8BmQJkAf8DACH/AwAB/wGZAmQB/wMAAf8QAAOG + Bv8CAAL/AgAC/wIAAv8CAAL/AgAF/wMAAf8DAAH/AwAB/wMAAf8YAAOGAf8DAAH/A4YB/wMAAf8cAAJF + AUYBfwGMAe4B/AH/AQYBxQHzAf8BBgG/AeUB/wEHAbEBOAH/AQYB7QFKAf8BPAHtAWAB/wGQAfEBmgH/ + AaQB+wGuAf8BRwGnAXIB/wFQAd4B+AH/AVAB3gH4Af8BOQGUAboB/xAAAZkCMQH/AZkCZAH/AwAh/wMA + Af8BmQJkAf8DAAH/EAADhgH/A8AZ/wPAAf8DAAH/IAADhgH/AwAB/wQAA8AB/wMAAf8YAAJFAUYBfwGV + AfAB/QH/AQIBywH3Af8BAQG7AcwB/wEVAY8BPwH/ASsB+QFlAf8BFwHnAUMB/wEcAecBRwH/AY8B9gGg + Af8BTQFiAVYB3wFZAV0BYAG/AVkBXQFgAb8BUAJRAZ8QAAGZAjEB/wGZAmQB/wMAIf8DAAH/AwAB/wMA + Af8UAAOGBv8BZAExAv8BZAExAv8BZAExAv8BZAExAv8BZAExBf8DAAH/HAADhgH/AwAB/wgAA4YB/wMA + Af8YAAJFAUYBfwGlAc8B3AH/AaUBzwHcAf8BDQGSATAB/wEjAc4BTgH/AS4B3QFUAf8BDwHiATcB/wEQ + AeQBOAH/AY8B3wGZAf8DMQFPHAABmQIxAf8BmQJkAf8DAAH/AQABmQL/AQABmQL/AQABmQL/AQABmQL/ + AQABmQL/AQABmQL/AQABmQL/AQABmQL/AwAB/wPAAf8DAAH/FAADhgH/A8AZ/wPAAf8DAAH/GAADhgH/ + AwAB/wwAA8AB/wMAAf8UAAMLAQ8DKQE/AykBPwMpAT8BTgFRAU4BnwE4AY4BSgHvAUsB1gFyAf8BSAHp + AW8B/wGHAcsBkgH/AyABLxwAAZkCMQH/AZkCMQH/AZkCMQH/AQABMQGZAf8BAAExAZkB/wEAATEBmQH/ + AQABMQGZAf8BAAExAZkB/wEAATEBmQH/AQABMQGZAf8BAAExAZkB/wGZAjEB/wGZAjEB/wMAAf8YAAOG + Af8DhgH/A4YB/wOGAf8DhgH/A4YB/wOGAf8DhgH/A4YB/xsAAf8QAAOGAf8DAAH/KAADCwEPAT8BQAE/ + AW8BUQF5AVwB3wE8AYUBSgHv3AABQgFNAT4HAAE+AwABKAMAAUADAAHwAwABAQEAAQEFAAGAAQcWAAP/ + AQABgAEBNgABgAEBBgABgAEBBgABgAEBBgABgAEBBgABgAEBBgABgAEBBgABwAEBBgAB+AEfBgAB+AEf + BgAE/wHwAQ8B/AE/Af8BfwH9Af8BwAEDAeABBwH+AT8B+AH/AYABAQHAAQMB/AEfAeABfwGAAQEBgAEB + Af8BXwHAAT8BgAEBAYABAQH/AX8BwgEfAYABAQGAAQEB7wF7AccBDwGAAQECAAHPAXkB/wGHAYABAQIA + AYABAAH/AcMBgAEBAgABzwF5Af8B4QGAAwAB7wF7ASACgAEAAYABAQH/AX8BAgEQAYABAAGAAQEB/wF/ + AaABHAGAAQABgAEBAfwBHwGCARMBgAEAAcABAwH+AT8B0AGHAcABAQHgAQcB/wF/Av8B8AEHAfwBPwL/ + AYABAQIAAfwB/wHwAQMBgAEBAgAB8AE/AfABAwGAAQECAAHAAQ8BwAEDAYABAQIAAYABAwHAAQMBgAEB + AgABgAEBAcABAwGAAQECAAGAAQEBwAEDAYABAQIAAYABAQHAAQMBgAEBAgABgAEBAcABAwGAAQECAAGA + AQEBwAEDAYABAQIAAYABAQHAAQMBgAEBAgABgAEBAcABAwGAAQECAAHAAQEBwAEDAYABAQIAAfABAwHA + AQcBgAEBAgAB/AEPAcABDwGAAQECAAH/AT8BwAEfAYABAQb/AgAB/AP/AfwDAAHwAT8BgAEBAfwDAAHA + AQ8BgAEBAfwDAAGAAQMBgAEBAfwDAAGAAQEBgAEBBAABgAEBAYABAQQAAYABAQGAAQEEAAGAAQEBgAEB + AQABPwIAAYABAQGAAQEBAAEBAgABgAEBAYABAQEAAQECAAGAAQEBgAEBAQABAQIAAcABAQGAAQEB+AEB + AgAB8AEDAYABAQH4AQECAAH8AQ8BgAEBAfgBAQIAAf8BPwGAAQEB+AEBDv8BgAEBAYABAQEAAQ8B8AEA + AYABAQGAAQEBAAEPAv8BgAEBAYABAQEAAQ8B8AFwAYABAQGAAQEBAAEPAfwB+QGAAQEBgAEBAQABDwH+ + AXkBgAEBAYABAQEAAQ8BgwEBAYABAQGAAQEBAAEPAecBmQGAAQEBgAEBAQABDgHzAckBgAEBAYABAQEA + AQQB+AEBAYABAQGAAQECAAH8AcEBgAEBAYABAQIAAf4BSQGAAQEBgAEBAfgBAAH/AQ8BgAEBAYABAQH8 + AQAB/wGPAYABAQGAAQEB/gEEAf8BzwGAAQEBgAEBDP8B3wH/Af4BwQHgAQMB+AEBAZ8B/wH+AUABwAED + AfgBAQECAasB+AEMAeABBwH4AQEBnwH/AfYBTAHwAR8B+AEBAd8B/wHuAcwB+AEPAcABAQHwAeEB7wHA + AfABBwHAAQEB8AHhAe8BQwHwAQcBwAEBAfAB4QH/Ac8B4AEHAcABDwHwAUEBwQFPAcABAwEAAQ8B8AEB + AYEBzwHAAQcBAAEPAfABAQGZAX8BwAEPAQABDwH4AUMBgQH/AcABDwEAAT8B/AHnAYEBrwHAAR8BAAE/ + AfwB5wGBAc8B4AEPAQABPwL/AcMBjwHwAR8BAAE/C/8B+QP/AfcC/wHnAf8BBwHBAf8B8wGAAX8BwwHz + AQcBwQGqAYEBgAE/AcMB5wEHAcEB/wHzAYABHwHhAccCAQH/AfcBgAEPAfABjwEAAQEBDgEfAcABBwH4 + AR8BAAEBAQ4BHwHgAQMB/AE/AQABAQEOAR8B8AEBAfgBHwGAAQMBBAEfAfgBAQHwAZ8BwQEHAQABHwH8 + AQEBwQHHAcEBBwEAAR8B/gEBAYMC4wGPAYQBPwH/AQEBjwHxAeMBjwHOAX8E/wHjAY8BzgF/Fv8BwAED + Af4BBwH/AZcBwAEDAcABAwP/AZcBwAEDAcABAwH/AQcB/wGXAcABAwHAAQMB/gFnAf8BlwHAAQMBwAED + Af4BZwH/ARcBwAEDAcABAwH/AQcB/gEXAcABAwHAAQMB/wH3Af4BFwHAAQMBwAEDAf8BDwH+ARcBwAED + AcABAwHDAf8BwwEHAcABAwHAAQMBxwHfAccB/wHAAQMBwAEDAccB3wHHAd8BwAEHAcABAwHbAb8B2wG/ + AcABDwHAAQcB/AF/AfwBfwHAAR8BwAEPBv8BwAEfEP8BqgGrAaoBqwGqAasBgAEDAb8C/wH7Av8BvwH7 + AaABewGgAXsBoAF7AaABewG/Av8B+wL/Ab8B+wGgAQsBoAELAaABCwGgAQsBvwL/AfsC/wG/AfsBoAEL + AaABCwGgAQsBoAELAb8C/wH7Av8BvwH7AaABCwGgAQsBoAELAaABCwG/Av8B+wL/Ab8B+wG4AQsBuAEL + AbgBCwG4AQsBvwL/AfsC/wG/AfsBqgGrAaoBqwGqAasBgAEDEP8CAAb/AgABgAEDAYABAwGqAasCAAG/ + AfsG/wGgAXsBoAF7AaABewHBAf8BvwH7BP8BwAH/AaABCwGgAQsBoAELAeABfwG/AfsE/wHwAT8BoAEL + AaABCwGgAQsB+AEfAb8B+wT/AfwBDwGgAQsBoAELAaABCwH+AQcBvwH7Bf8BAwG4AQsBuAELAbgBCwH/ + AYEBvwH7Bf8BwQGAAQMBqgGrAYABAwH/AeMS/wGfAf8CAAL/AY8B/wHvAf8CAAH4AQEBjAEBAdwBAQIA + Av8BjwH/AY8D/wGAAQEE/wGHAQME/wGPAf8BzwGHAfgBAQGPAf8B3wH/AecBjwL/AYwBAQHsAQEB5wGP + AYABAQGPAf8BnwH/AfABHwb/AfMBHwH4AQEC/wGPAf8B+QE/Av8BjwH/Ad8B/wH4AT8BgAEBAYwBAQGc + AQEB/AF/Av8BjwH/Ad8B/wH8AX8G/wH+Cf8B/gH/Af4N/wHCAX8BwgF/AYABHwHgAQcI/wHCAQABwgEA + AYABAQGAAQEI/wHeAQcB3gEHAYABHwHgAQcBzgEHAZ4BBwT/AQcB/wEHAf8BgAEBAYABAQHOAQABngEA + BP8B3gEAAd4BAAGAAR8B4AEHCP8BwgEAAcIBAAGAAQEBgAEBCP8B/gH/Af4N/wH5Af8B/AEfBP8B+QH/ + AfwBHwT/AfMBxwH8AR8E/wFzAccB/AEfAeABHwHgAX8BJwP/AfEBjwH4Af8BBwHHAfwBHwHxAY8B+AH/ + AQABxwH8AR8B8QGPAfwBfwEBAecB/AEPAfABHwH8AX8BAwHxAfwBBwHxAY8B/gE/AQYBMAHgAQcB8QGP + Af4BPwEOATgB4AEHAfEBjwH/AR8BHgE4AeABBwHgAR8B/gEPAT8BMAHwAQcE/wF/AYEB+AEPBv8B/AEf + DP8B+AEBAfwBAQT/AfgBAQGAAQEE/wH4AQEBAAEBAf8B8QHHAf8BAAEBAQABAQGAAfEBxwGAAQABAQEA + AQEBgQHwAYcBwAEAAQEBAAEBAYMB+AGPAeABAAEBAQABAQGDAfgBjwHgAQABAQEAAQMBgQH4AY8BwAEA + AQEBAAEHAZABcAGHAQQBAAEDAQABBwG4AQEBwAEOAQABBwEAAQcB/AEDAeABHwEAAQ8BAAEHAf8BBwHw + AX8BAAE/AQABBwT/AQABfwGAAQ8E/wEAAf8B8AF/DP8BAAEHAcABAQHAAQcB8wH/AQABAwGAAQEBgAED + AeEBnwEAAQMBgAEBAQABAQHpAQ8BAAEDAYABAQEAAQEB6QFPAQABAQGAAQEBAAEBAfEBTwEAAQEBgAEB + AgAB/AEfAQABAQGAAQECAAH8AX8BAAEBAYABAQGAAQAB/AF/AgABgAEBAcABAAH8AX8CAAGAAQEB4AEB + AfgBfwEAAQcBgAEBAeABBwH5AT8BAAEHAYABAQHwAQcB8wE/AQABPwGAAQEB8AEDAfMBnwEAAT8BgAEB + AfgBAwH3AZ8B+AF/Bv8L </value> </data> <metadata name="m_imgLst9x9.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> @@ -1039,7 +1039,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAACU - BwAAAk1TRnQBSQFMAgEBAgEAASQBAAEkAQABCQEAAQkBAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo + BwAAAk1TRnQBSQFMAgEBAgEAARwBAAEcAQABCQEAAQkBAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo AwABJAMAAQkDAAEBAQABCAUAAUQBARgAAYACAAGAAwACgAEAAYADAAGAAQABgAEAAoACAAPAAQABwAHc AcABAAHwAcoBpgEAATMFAAEzAQABMwEAATMBAAIzAgADFgEAAxwBAAMiAQADKQEAA1UBAANNAQADQgEA AzkBAAGAAXwB/wEAAlAB/wEAAZMBAAHWAQAB/wHsAcwBAAHGAdYB7wEAAdYC5wEAAZABqQGtAgAB/wEz @@ -1082,7 +1082,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAACE - BwAAAk1TRnQBSQFMAwEBAAEkAQABJAEAAQ4BAAENAQAE/wEJAQAI/wFCAU0BNgEEBgABNgEEAgABKAMA + BwAAAk1TRnQBSQFMAwEBAAEcAQABHAEAAQ4BAAENAQAE/wEJAQAI/wFCAU0BNgEEBgABNgEEAgABKAMA ATgDAAENAwABAQEAAQgFAAHYAQIYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5 AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA @@ -1125,7 +1125,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAC8 - HwAAAk1TRnQBSQFMAgEBCgEAASQBAAEkAQABNAEAASoBAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo + HwAAAk1TRnQBSQFMAgEBCgEAARwBAAEcAQABNAEAASoBAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo AwAB0AMAAX4DAAEBAQABCAUAAWABZhgAAYACAAGAAwACgAEAAYADAAGAAQABgAEAAoACAAPAAQABwAHc AcABAAHwAcoBpgEAATMFAAEzAQABMwEAATMBAAIzAgADFgEAAxwBAAMiAQADKQEAA1UBAANNAQADQgEA AzkBAAGAAXwB/wEAAlAB/wEAAZMBAAHWAQAB/wHsAcwBAAHGAdYB7wEAAdYC5wEAAZABqQGtAgAB/wEz diff --git a/Src/Generic/GenSmartPtr.h b/Src/Generic/GenSmartPtr.h index d8e8868ac9..843bb47973 100644 --- a/Src/Generic/GenSmartPtr.h +++ b/Src/Generic/GenSmartPtr.h @@ -92,8 +92,10 @@ class _Lock_GenRefObj } }; -#define GenLockThis() _Lock_GenRefObj _lock_this_##__LINE__(this) -#define GenLockObj(pobj) _Lock_GenRefObj _lock_obj_##__LINE__(pobj) +#define GENSMARTPTR_CONCAT_INNER(a, b) a##b +#define GENSMARTPTR_CONCAT(a, b) GENSMARTPTR_CONCAT_INNER(a, b) +#define GenLockThis() _Lock_GenRefObj GENSMARTPTR_CONCAT(_lock_this_, __LINE__)(this) +#define GenLockObj(pobj) _Lock_GenRefObj GENSMARTPTR_CONCAT(_lock_obj_, __LINE__)(pobj) diff --git a/Src/Generic/UtilCom.h b/Src/Generic/UtilCom.h index e0b42d17b9..d8ee3d2504 100644 --- a/Src/Generic/UtilCom.h +++ b/Src/Generic/UtilCom.h @@ -351,8 +351,10 @@ class _Lock_Unknown } }; -#define LockThis() _Lock_Unknown _lock_this_##__LINE__(this) -#define LockObj(pobj) _Lock_Unknown _lock_obj_##__LINE__(pobj) +#define UTILCOM_CONCAT_INNER(a, b) a##b +#define UTILCOM_CONCAT(a, b) UTILCOM_CONCAT_INNER(a, b) +#define LockThis() _Lock_Unknown UTILCOM_CONCAT(_lock_this_, __LINE__)(this) +#define LockObj(pobj) _Lock_Unknown UTILCOM_CONCAT(_lock_obj_, __LINE__)(pobj) /************************************************************************************* Miscellaneous COM related utility functions. diff --git a/Src/Generic/UtilTime.h b/Src/Generic/UtilTime.h index c08acfb297..aeca7bfc1f 100644 --- a/Src/Generic/UtilTime.h +++ b/Src/Generic/UtilTime.h @@ -468,7 +468,9 @@ At some convenient point set m_msMyMethod to zero, and later see what it contain You can also surround a smaller piece of code with braces and call this at the start. Hungarian: not needed ----------------------------------------------------------------------------------------------*/ -#define MeasureDuration(arg) _MeasureDuration _measure_duration_##__LINE__(&arg) +#define UTILTIME_CONCAT_INNER(a, b) a##b +#define UTILTIME_CONCAT(a, b) UTILTIME_CONCAT_INNER(a, b) +#define MeasureDuration(arg) _MeasureDuration UTILTIME_CONCAT(_measure_duration_, __LINE__)(&arg) class _MeasureDuration { diff --git a/Src/LexText/Discourse/DiscourseTests/InterlinRibbonTests.cs b/Src/LexText/Discourse/DiscourseTests/InterlinRibbonTests.cs index f3bc486c6b..2458eb7e74 100644 --- a/Src/LexText/Discourse/DiscourseTests/InterlinRibbonTests.cs +++ b/Src/LexText/Discourse/DiscourseTests/InterlinRibbonTests.cs @@ -7,11 +7,13 @@ using System.Diagnostics; using System.Drawing; using System.Windows.Forms; +using Moq; using NUnit.Framework; using SIL.FieldWorks.Common.FwUtils.Attributes; using SIL.FieldWorks.Common.RootSites; using SIL.FieldWorks.Common.ViewsInterfaces; using SIL.LCModel; +using SIL.LCModel.Core.KernelInterfaces; using SIL.LCModel.DomainServices; using SIL.LCModel.Infrastructure; using XCore; @@ -158,6 +160,37 @@ public void ClickExpansion() m_ribbon.RootBox.MouseUp(1, 1, rcSrc, rcDst); Assert.That(m_ribbon.SelectedOccurrences, Is.EqualTo(new[] { glosses[0] })); } + + [Test] + public void SetRoot_AssignsDecoratorBeforeChangingExistingRootObject() + { + EndSetupTask(); + var orderingRibbon = new OrderingTestInterlinRibbon(Cache, m_stText.Hvo); + var rootbMock = new Mock<IVwRootBox>(MockBehavior.Strict); + var installedDecorator = false; + rootbMock.Setup(rb => rb.Close()); + + rootbMock.SetupSet(rb => rb.DataAccess = It.IsAny<ISilDataAccess>()) + .Callback<ISilDataAccess>(sda => installedDecorator = ReferenceEquals(sda, orderingRibbon.Decorator)); + rootbMock.Setup(rb => rb.SetRootObject( + m_stText.Hvo, + It.IsAny<IVwViewConstructor>(), + InterlinRibbon.kfragRibbonWordforms, + orderingRibbon.StyleSheet)) + .Callback(() => Assert.That(installedDecorator, Is.True, + "InterlinRibbon should install its decorator before changing an existing root object")); + + orderingRibbon.InstallRootBoxForTest(rootbMock.Object); + orderingRibbon.SetRoot(m_stText.Hvo); + + rootbMock.VerifySet(rb => rb.DataAccess = It.IsAny<ISilDataAccess>(), Times.Once); + rootbMock.Verify(rb => rb.SetRootObject( + m_stText.Hvo, + It.IsAny<IVwViewConstructor>(), + InterlinRibbon.kfragRibbonWordforms, + orderingRibbon.StyleSheet), Times.Once); + orderingRibbon.Dispose(); + } #endregion } @@ -221,6 +254,11 @@ internal void CallOnLoad(EventArgs eventArgs) base.OnLoad(eventArgs); } + internal void InstallRootBoxForTest(IVwRootBox rootBox) + { + m_rootb = rootBox; + } + protected override void Dispose(bool disposing) { Debug.WriteLineIf(!disposing, "****** Missing Dispose() call for " + GetType() + " ******"); @@ -228,4 +266,21 @@ protected override void Dispose(bool disposing) base.Dispose(disposing); } } + + internal class OrderingTestInterlinRibbon : TestInterlinRibbon + { + public OrderingTestInterlinRibbon(LcmCache cache, int hvoStText) + : base(cache, hvoStText) + { + } + + protected override void SetRootInternal(int hvo) + { + EnsureVc(); + } + + public override void MakeInitialSelection() + { + } + } } diff --git a/Src/LexText/Discourse/InterlinRibbon.cs b/Src/LexText/Discourse/InterlinRibbon.cs index 918706ba31..3b97711151 100644 --- a/Src/LexText/Discourse/InterlinRibbon.cs +++ b/Src/LexText/Discourse/InterlinRibbon.cs @@ -249,7 +249,7 @@ protected void SelectUpTo(int end1) protected override void AddDecorator() { - m_rootb.DataAccess = Decorator; + SetRootBoxDataAccess(Decorator); } public override void SetRoot(int hvoStText) @@ -261,8 +261,8 @@ public override void SetRoot(int hvoStText) if (RootBox == null) return; SetRootInternal(hvoStText); - ChangeOrMakeRoot(HvoRoot, Vc, kfragRibbonWordforms, StyleSheet); AddDecorator(); + ChangeOrMakeRoot(HvoRoot, Vc, kfragRibbonWordforms, StyleSheet); MakeInitialSelection(); } @@ -284,7 +284,7 @@ public override void MakeRoot() Vc.LineChoices = LineChoices; SetRootInternal(HvoRoot); - m_rootb.DataAccess = Decorator; + SetRootBoxDataAccess(Decorator); m_rootb.SetRootObject(HvoRoot, Vc, kfragRibbonWordforms, this.StyleSheet); m_rootb.Activate(VwSelectionState.vssOutOfFocus); // Makes selection visible even before ever got focus. diff --git a/Src/LexText/Interlinear/ITextDll.csproj b/Src/LexText/Interlinear/ITextDll.csproj index 1d88327db3..1bab553ac2 100644 --- a/Src/LexText/Interlinear/ITextDll.csproj +++ b/Src/LexText/Interlinear/ITextDll.csproj @@ -30,7 +30,6 @@ <PackageReference Include="SIL.LCModel.Core" GeneratePathProperty="true" /> <PackageReference Include="SIL.LCModel.Utils" /> <PackageReference Include="SIL.Machine" /> - <PackageReference Include="SIL.Media" /> <PackageReference Include="SIL.ParatextShared" /> <PackageReference Include="SIL.Windows.Forms" /> <PackageReference Include="SIL.Windows.Forms.GeckoBrowserAdapter" /> @@ -41,7 +40,6 @@ <PackageReference Include="AdamsLair.TreeViewAdv" /> <PackageReference Include="SIL.ExCSS" /> <PackageReference Include="Geckofx60.64" /> - <PackageReference Include="NAudio" /> </ItemGroup> <ItemGroup> <Reference Include="Accessibility" /> diff --git a/Src/LexText/Interlinear/ITextDllTests/InterlinLineChoicesTests.cs b/Src/LexText/Interlinear/ITextDllTests/InterlinLineChoicesTests.cs index bd3b484e1d..a5e9e48965 100644 --- a/Src/LexText/Interlinear/ITextDllTests/InterlinLineChoicesTests.cs +++ b/Src/LexText/Interlinear/ITextDllTests/InterlinLineChoicesTests.cs @@ -384,13 +384,11 @@ public void ConfigurationLineOptions() choices.Add(InterlinLineChoices.kflidLitTrans, wsEng, true); //7 choices.Add(InterlinLineChoices.kflidFreeTrans, wsEng, true); //8 - choices.Add(InterlinLineChoices.kflidLexGloss, wsFrn, true); //9 - choices.Add(InterlinLineChoices.kflidLexGloss, wsGer, true); //10 - - choices.Add(InterlinLineChoices.kflidMedia, wsEng, true); //11 + choices.Add(InterlinLineChoices.kflidLexGloss, wsFrn, true); + choices.Add(InterlinLineChoices.kflidLexGloss, wsGer, true); // Pre-checks - Assert.That(choices.AllLineSpecs.Count, Is.EqualTo(12)); + Assert.That(choices.AllLineSpecs.Count, Is.EqualTo(11)); Assert.That(choices.AllLineSpecs[0].Flid, Is.EqualTo(InterlinLineChoices.kflidWord)); Assert.That(choices.AllLineSpecs[1].Flid, Is.EqualTo(InterlinLineChoices.kflidMorphemes)); Assert.That(choices.AllLineSpecs[2].Flid, Is.EqualTo(InterlinLineChoices.kflidLexEntries)); @@ -402,7 +400,6 @@ public void ConfigurationLineOptions() Assert.That(choices.AllLineSpecs[8].Flid, Is.EqualTo(InterlinLineChoices.kflidWordPos)); Assert.That(choices.AllLineSpecs[9].Flid, Is.EqualTo(InterlinLineChoices.kflidLitTrans)); Assert.That(choices.AllLineSpecs[10].Flid, Is.EqualTo(InterlinLineChoices.kflidFreeTrans)); - Assert.That(choices.AllLineSpecs[11].Flid, Is.EqualTo(InterlinLineChoices.kflidMedia)); Assert.That(choices.AllLineSpecs[3].WritingSystem, Is.EqualTo(wsEng)); Assert.That(choices.AllLineSpecs[4].WritingSystem, Is.EqualTo(wsFrn)); @@ -411,7 +408,7 @@ public void ConfigurationLineOptions() ReadOnlyCollection<LineOption> configLineOptions = choices.ConfigurationLineOptions; // Post-checks - Assert.That(configLineOptions.Count, Is.EqualTo(11)); // 10 + 1 for kflidNote. + Assert.That(configLineOptions.Count, Is.EqualTo(10)); // 9 + 1 for kflidNote. Assert.That(configLineOptions[0].Flid, Is.EqualTo(InterlinLineChoices.kflidWord)); Assert.That(configLineOptions[1].Flid, Is.EqualTo(InterlinLineChoices.kflidMorphemes)); Assert.That(configLineOptions[2].Flid, Is.EqualTo(InterlinLineChoices.kflidLexEntries)); @@ -421,11 +418,8 @@ public void ConfigurationLineOptions() Assert.That(configLineOptions[6].Flid, Is.EqualTo(InterlinLineChoices.kflidWordPos)); Assert.That(configLineOptions[7].Flid, Is.EqualTo(InterlinLineChoices.kflidLitTrans)); Assert.That(configLineOptions[8].Flid, Is.EqualTo(InterlinLineChoices.kflidFreeTrans)); - Assert.That(configLineOptions[9].Flid, Is.EqualTo(InterlinLineChoices.kflidMedia)); // kflidNote is one of the required options so it was added. - // Note: kflidNote is always added as the last option, so if new line choices are added in future, - // kflidNote will need to be updated to match the new last index. - Assert.AreEqual(InterlinLineChoices.kflidNote, configLineOptions[10].Flid); + Assert.That(configLineOptions[9].Flid, Is.EqualTo(InterlinLineChoices.kflidNote)); } [Test] diff --git a/Src/LexText/Interlinear/ITextStrings.Designer.cs b/Src/LexText/Interlinear/ITextStrings.Designer.cs index f00cf6e559..b4bc3d8f11 100644 --- a/Src/LexText/Interlinear/ITextStrings.Designer.cs +++ b/Src/LexText/Interlinear/ITextStrings.Designer.cs @@ -267,15 +267,6 @@ internal static string ksBaseLineNotEditable { } } - /// <summary> - /// Looks up a localized string similar to Begin. - /// </summary> - internal static string ksBeginTimeOffset { - get { - return ResourceManager.GetString("ksBeginTimeOffset", resourceCulture); - } - } - /// <summary> /// Looks up a localized string similar to bst. an. /// </summary> @@ -654,15 +645,6 @@ internal static string ksEndTagSymbol { } } - /// <summary> - /// Looks up a localized string similar to End. - /// </summary> - internal static string ksEndTimeOffset { - get { - return ResourceManager.GetString("ksEndTimeOffset", resourceCulture); - } - } - /// <summary> /// Looks up a localized string similar to Enter or paste your text here, then click "Show Interlinear.". /// </summary> @@ -771,15 +753,6 @@ internal static string ksFailedLoadingLL { } } - /// <summary> - /// Looks up a localized string similar to File. - /// </summary> - internal static string ksFile { - get { - return ResourceManager.GetString("ksFile", resourceCulture); - } - } - /// <summary> /// Looks up a localized string similar to Finish LinguaLinks texts problem (phase 5): {0}. /// </summary> @@ -1396,24 +1369,6 @@ internal static string ksMatchStringTooLong { } } - /// <summary> - /// Looks up a localized string similar to Media. - /// </summary> - internal static string ksMedia { - get { - return ResourceManager.GetString("ksMedia", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Media not found: check Info tab for full file path. - /// </summary> - internal static string ksMediaNotFound { - get { - return ResourceManager.GetString("ksMediaNotFound", resourceCulture); - } - } - /// <summary> /// Looks up a localized string similar to This utility finds groups of analyses that have the same word category and morphological analysis. It merges such groups into a single analysis. It keeps all the glosses, except that if some glosses are duplicates (in all writing systems) such groups will also be merged. Analyzed texts which use any of the merged analyses will be made to use the merged one.. /// </summary> @@ -1567,15 +1522,6 @@ internal static string ksNoForm { } } - /// <summary> - /// Looks up a localized string similar to No Media. - /// </summary> - internal static string ksNoMedia { - get { - return ResourceManager.GetString("ksNoMedia", resourceCulture); - } - } - /// <summary> /// Looks up a localized string similar to no morphemes. /// </summary> @@ -1981,15 +1927,6 @@ internal static string ksSomeTexts { } } - /// <summary> - /// Looks up a localized string similar to Speaker. - /// </summary> - internal static string ksSpeaker { - get { - return ResourceManager.GetString("ksSpeaker", resourceCulture); - } - } - /// <summary> /// Looks up a localized string similar to Specify Concordance Criteria. /// </summary> diff --git a/Src/LexText/Interlinear/ITextStrings.resx b/Src/LexText/Interlinear/ITextStrings.resx index bb933bd894..345e58c1ff 100644 --- a/Src/LexText/Interlinear/ITextStrings.resx +++ b/Src/LexText/Interlinear/ITextStrings.resx @@ -341,29 +341,6 @@ <value>Nt </value> <comment>short for Note; there is a trailing space</comment> </data> - <data name="ksMedia" xml:space="preserve"> - <value>Media</value> - </data> - <data name="ksMediaNotFound" xml:space="preserve"> - <value>Media not found: check Info tab for full file path</value> - <comment>Used when a media filepath is specified, but the file doesn't exist. Ensure translation of "Info" matches translation used for the tab label.</comment> - </data> - <data name="ksNoMedia" xml:space="preserve"> - <value>No Media</value> - <comment>Used when no there is no media filepath specified.</comment> - </data> - <data name="ksBeginTimeOffset" xml:space="preserve"> - <value>Begin</value> - </data> - <data name="ksEndTimeOffset" xml:space="preserve"> - <value>End</value> - </data> - <data name="ksSpeaker" xml:space="preserve"> - <value>Speaker</value> - </data> - <data name="ksFile" xml:space="preserve"> - <value>File</value> - </data> <data name="ksPhaseButton" xml:space="preserve"> <value>Ph{0} {1}</value> <comment>{0} is phase number; {1} is either "Process" or "Import"</comment> diff --git a/Src/LexText/Interlinear/InterlinDocForAnalysis.Designer.cs b/Src/LexText/Interlinear/InterlinDocForAnalysis.Designer.cs index a1950ca14c..f0ffecbf13 100644 --- a/Src/LexText/Interlinear/InterlinDocForAnalysis.Designer.cs +++ b/Src/LexText/Interlinear/InterlinDocForAnalysis.Designer.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2015 SIL International +// Copyright (c) 2015 SIL International // This software is licensed under the LGPL, version 2.1 or later // (http://www.gnu.org/licenses/lgpl-2.1.html) @@ -27,9 +27,6 @@ protected override void Dispose(bool disposing) } if (components != null) components.Dispose(); - - m_queuedSegmentHvo = -1; - StopMediaPlay(); } ExistingFocusBox = null; components = null; diff --git a/Src/LexText/Interlinear/InterlinDocForAnalysis.cs b/Src/LexText/Interlinear/InterlinDocForAnalysis.cs index 837b7e99b5..eb2bcb9680 100644 --- a/Src/LexText/Interlinear/InterlinDocForAnalysis.cs +++ b/Src/LexText/Interlinear/InterlinDocForAnalysis.cs @@ -2,12 +2,10 @@ // This software is licensed under the LGPL, version 2.1 or later // (http://www.gnu.org/licenses/lgpl-2.1.html) -using NAudio.Wave; using System; using System.Collections.Generic; using System.Diagnostics; using System.Drawing; -using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Windows.Forms; @@ -21,7 +19,6 @@ using SIL.LCModel.DomainServices; using SIL.LCModel.Infrastructure; using SIL.LCModel.Utils; -using SIL.Media.Naudio; using SIL.PlatformUtilities; using XCore; @@ -29,12 +26,6 @@ namespace SIL.FieldWorks.IText { public partial class InterlinDocForAnalysis : InterlinDocRootSiteBase { - private int m_playingSegmentHvo = -1; - private int m_queuedSegmentHvo = -1; - private WaveOutEvent m_outputDevice; - private AudioFileReader m_audioFile; - private TrimWaveStream m_trimWaveStream; - /// <summary> /// Review(EricP) consider making a subclass of InterlinDocForAnalysis (i.e. InterlinDocForGlossing) /// so we can put all AddWordsToLexicon related code there rather than having this @@ -310,18 +301,8 @@ public virtual void TriggerAnalysisSelected(AnalysisOccurrence target, bool fSav RecordGuessIfNotKnown(target); InstallFocusBox(); RootBox.DestroySelection(); - try - { - // Suppress changing the FocusBox when called from VwDrawRootBufferedClass.Create() - // when the selected word has a different RTL from the text (LT-22295). - SuppressChanges = true; - FocusBox.SelectOccurrence(target); - SetFocusBoxSizeForVc(); - } - finally - { - SuppressChanges = false; - } + FocusBox.SelectOccurrence(target); + SetFocusBoxSizeForVc(); SelectedOccurrence = target; if (fShow) @@ -1861,7 +1842,7 @@ internal FocusBoxController FocusBox { get { - if ((ExistingFocusBox == null && ForEditing) || hasRightToLeftChanged && !SuppressChanges) + if ((ExistingFocusBox == null && ForEditing) || hasRightToLeftChanged) { CreateFocusBox(); previousRightToLeft = Vc.RightToLeft; @@ -2001,8 +1982,6 @@ public override bool WantInitialSelection get { return false; } } - private bool SuppressChanges = false; - protected override void OnMouseDown(MouseEventArgs e) { // The base method does this too, but some paths in this method don't go through the base! @@ -2131,45 +2110,7 @@ protected bool HandleClickSelection(IVwSelection vwselNew, bool fBundleOnly, boo ScrollSelectionIntoView(this.RootBox.Selection, VwScrollSelOpts.kssoDefault); return true; } - // Play or stop playing a media segment. - else if (tagTextProp == SegmentTags.kflidMediaURI) - { - int itagSeg = -1; - for (int i = rgvsli.Length; --i >= 0;) - { - if (rgvsli[i].tag == StTxtParaTags.kflidSegments) - { - itagSeg = i; - break; - } - } - Debug.Assert(itagSeg >= 0); - if (itagSeg >= 0) - { - int hvoSegment = rgvsli[itagSeg].hvo; - // Nothing is currently playing, so play the segment. - if (m_playingSegmentHvo == -1) - { - StartMediaPlay(hvoSegment); - } - // Something is currently playing. If it's the same segment, stop it. If it's a - // different segment, queue up the new one and stop the current one. - else - { - // If 'Play' was pressed for a different segment, then queue up the new - // segment to play immediately after stopping the current one. - if (m_playingSegmentHvo != hvoSegment) - { - m_queuedSegmentHvo = hvoSegment; - } - - // Stop the currently playing segment. - StopMediaPlay(); - } - } - return true; - } // Identify the analysis, and the position in m_rgvsli of the property holding it. // It is also possible that the analysis is the root object. // This is important because although we are currently displaying just an StTxtPara, @@ -2223,74 +2164,6 @@ protected bool HandleClickSelection(IVwSelection vwselNew, bool fBundleOnly, boo return true; } - /// <summary> - /// Begins playback of the audio segment. - /// </summary> - /// <remarks>If playback is already in progress, this method should not be called until the previous - /// playback has stopped.</remarks> - /// <param name="hvoSegment">The hvo of the segment to play.</param> - private void StartMediaPlay(int hvoSegment) - { - Debug.Assert(m_outputDevice == null && m_audioFile == null && m_trimWaveStream == null && - m_playingSegmentHvo == -1); - - var segment = Cache.ServiceLocator.GetObject(hvoSegment) as ISegment; - Debug.Assert(segment != null); - - var mediaUri = segment.MediaURIRA?.MediaURI; - Uri uri = new Uri(mediaUri); - if (uri.IsFile && File.Exists(uri.LocalPath)) - { - m_outputDevice = new WaveOutEvent(); - m_outputDevice.PlaybackStopped += OnPlaybackStopped; - m_audioFile = new AudioFileReader(uri.LocalPath); - m_trimWaveStream = new TrimWaveStream(m_audioFile); - - double beginMs = double.Parse(segment.BeginTimeOffset); - double endMs = double.Parse(segment.EndTimeOffset); - m_trimWaveStream.StartPosition = TimeSpan.FromMilliseconds(beginMs); - m_trimWaveStream.EndPosition = TimeSpan.FromMilliseconds(endMs); - m_outputDevice.Init(m_trimWaveStream); - - m_outputDevice.Play(); - m_playingSegmentHvo = hvoSegment; - } - } - - /// <summary> - /// Stops media play, if it is currently playing. This will trigger the PlaybackStopped event, - /// which will clean up the audio objects and start playing any queued segment. - /// </summary> - private void StopMediaPlay() - { - m_outputDevice?.Stop(); - } - - /// <summary> - /// Handles the event that occurs when audio playback has stopped. After disposing of the - /// audio objects, if there is a queued segment to play, starts playing it. - /// </summary> - private void OnPlaybackStopped(object sender, StoppedEventArgs args) - { - m_outputDevice.Dispose(); - m_outputDevice = null; - m_trimWaveStream.Dispose(); - m_trimWaveStream = null; - m_audioFile.Dispose(); - m_audioFile = null; - m_playingSegmentHvo = -1; - - if(m_queuedSegmentHvo != -1) - { - int segmentToPlay = m_queuedSegmentHvo; - m_queuedSegmentHvo = -1; - StartMediaPlay(segmentToPlay); - } - } - - - - #endregion #region IxCoreColleague diff --git a/Src/LexText/Interlinear/InterlinLineChoices.cs b/Src/LexText/Interlinear/InterlinLineChoices.cs index a38c186318..4620ec62a5 100644 --- a/Src/LexText/Interlinear/InterlinLineChoices.cs +++ b/Src/LexText/Interlinear/InterlinLineChoices.cs @@ -533,7 +533,6 @@ public bool Remove(int flid, int ws) public const int kflidFreeTrans = InterlinVc.ktagSegmentFree; public const int kflidLitTrans = InterlinVc.ktagSegmentLit; public const int kflidNote = InterlinVc.ktagSegmentNote; - public const int kflidMedia = InterlinVc.ktagMediaFile; internal void UpdateLineOptions() { @@ -586,8 +585,7 @@ private LineOption[] LineOptions(InterlinMode mode) mode == InterlinMode.GlossAddWordsToLexicon ? ITextStrings.ksLexWordCat : ITextStrings.ksWordCat), new LineOption(kflidFreeTrans, ITextStrings.ksFreeTranslation), new LineOption(kflidLitTrans, ITextStrings.ksLiteralTranslation), - new LineOption(kflidNote, ITextStrings.ksNote), - new LineOption(kflidMedia, ITextStrings.ksMedia) + new LineOption(kflidNote, ITextStrings.ksNote) }.Union(customLineOptions).ToArray(); } @@ -951,11 +949,6 @@ internal InterlinLineSpec CreateSpec(int flid, int wsRequested, bool enabled=tru ws = m_wsDefAnal; fWordLevel = false; break; - case kflidMedia: - ws = WritingSystemServices.kwsFirstAnal; - comboContent = ColumnConfigureDialog.WsComboContent.kwccVernAndAnal; - fWordLevel = false; - break; default: var mdc = (IFwMetaDataCacheManaged)m_cache.MetaDataCacheAccessor; fWordLevel = false; diff --git a/Src/LexText/Interlinear/InterlinVc.cs b/Src/LexText/Interlinear/InterlinVc.cs index b29ef0cfaf..9533c912ac 100644 --- a/Src/LexText/Interlinear/InterlinVc.cs +++ b/Src/LexText/Interlinear/InterlinVc.cs @@ -12,16 +12,13 @@ using SIL.LCModel.Core.Text; using SIL.LCModel.Core.WritingSystems; using SIL.LCModel.Core.KernelInterfaces; -using SIL.FieldWorks.Common.FwUtils; using SIL.FieldWorks.Common.ViewsInterfaces; using SIL.FieldWorks.Common.RootSites; using SIL.FieldWorks.FdoUi; -using SIL.FieldWorks.Resources; using SIL.LCModel; using SIL.LCModel.DomainServices; using SIL.LCModel.Infrastructure; -using System.IO; -using SIL.LCModel.Core.Phonology; +using Gecko.WebIDL; namespace SIL.FieldWorks.IText { @@ -106,7 +103,6 @@ public class InterlinVc : FwBaseVc, IDisposable internal const int ktagSegmentLit = -62; internal const int ktagSegmentNote = -63; internal const int ktagAnalysisStatus = -64; - internal const int ktagMediaFile = -65; // flids for paragraph annotation sequences. internal int ktagSegmentForms; @@ -137,10 +133,7 @@ public class InterlinVc : FwBaseVc, IDisposable private ITsString m_tssEmptyVern; private ITsString m_tssEmptyPara; private ITsString m_tssSpace; - private ITsString m_tssDefaultSpace; // Space character in the default user ws. - private ITsString m_tssEmptyString; private ITsString m_tssCommaSpace; - private ITsString m_tssDefaultColon; private ITsString m_tssPendingGlossAffix; // LexGloss line GlossAppend or GlossPrepend private int m_mpBundleHeight; // millipoint height of interlinear bundle. private bool m_fRtl; @@ -154,7 +147,6 @@ public class InterlinVc : FwBaseVc, IDisposable private readonly int m_selfFlid; private int m_leftPadding; - private ComPictureWrapper m_PlayArrowPic; #endregion Data members @@ -189,11 +181,7 @@ public InterlinVc(LcmCache cache) : base(cache.DefaultAnalWs) m_tssMissingVernacular = TsStringUtils.MakeString(ITextStrings.ksStars, cache.DefaultVernWs); m_WsList = new WsListManager(m_cache); m_tssEmptyPara = TsStringUtils.MakeString(ITextStrings.ksEmptyPara, m_wsAnalysis); - m_tssEmptyString = TsStringUtils.MakeString(string.Empty, m_wsAnalysis); m_tssSpace = TsStringUtils.MakeString(" ", m_wsAnalysis); - // Space and colon are needed in the default user ws for the media line. (Default user ws is needed in this line to match the ws used for labels.) - m_tssDefaultSpace = TsStringUtils.MakeString(" ", cache.DefaultUserWs); - m_tssDefaultColon = TsStringUtils.MakeString(":", cache.DefaultUserWs); m_msaVc = new MoMorphSynAnalysisUi.MsaVc(m_cache); // This usually gets overridden, but ensures default behavior if not. @@ -205,7 +193,6 @@ public InterlinVc(LcmCache cache) : base(cache.DefaultAnalWs) ktagSegmentForms = SegmentTags.kflidAnalyses; GetSegmentLevelTags(cache); LangProjectHvo = m_cache.LangProject.Hvo; - m_PlayArrowPic = OLECvt.ConvertImageToComPicture(ResourceHelper.InterlinPlayArrow); } internal InterlinViewDataCache GuessCache { get; set; } @@ -293,7 +280,6 @@ protected virtual void Dispose(bool fDisposing) // dispose managed and unmanaged objects // Dispose managed resources here. m_WsList?.Dispose(); - m_PlayArrowPic?.Dispose(); } // Dispose unmanaged resources here, whether disposing is true or false. @@ -310,7 +296,6 @@ protected virtual void Dispose(bool fDisposing) m_tssSpace = null; m_tssCommaSpace = null; m_WsList = null; - m_PlayArrowPic = null; IsDisposed = true; } @@ -923,548 +908,6 @@ protected virtual void SetupAndOpenInnerPile(IVwEnv vwenv) vwenv.OpenInnerPile(); } - /// <summary> - /// Use the default user WS to display a separator followed by a label, colon, and space, all enclosed in directionality marks. - /// </summary> - /// <param name="label">The label of the data (Begin, End, Speaker)</param> - /// <param name="lineAndSegSameDir">True if the direction of the line content matches the - /// direction the segment should display.</param> - /// <param name="lineAndUserSameDir">True if the direction of the line content matches the - /// direction of the default user writing system.</param> - private void AddFormattedLabel(IVwEnv vwenv, ITsString label, bool lineAndSegSameDir, bool lineAndUserSameDir) - { - int defUserWs = m_cache.DefaultUserWs; - AddTssDirForWs(vwenv, defUserWs); - if (lineAndSegSameDir != lineAndUserSameDir) - { - // Use reverse logical order - vwenv.AddString(m_tssDefaultSpace); - vwenv.AddString(m_tssDefaultColon); - vwenv.AddString(label); - AddSeparator(vwenv); - } - else - { - // Use logical order - AddSeparator(vwenv); - vwenv.AddString(label); - vwenv.AddString(m_tssDefaultColon); - vwenv.AddString(m_tssDefaultSpace); - } - AddTssDirForWs(vwenv, defUserWs); - } - - /// <summary> - /// This method adds a double space and is used for separators between items in the media line - /// </summary> - private void AddSeparator(IVwEnv vwenv) - { - int defUserWs = m_cache.DefaultUserWs; - AddTssDirForWs(vwenv, defUserWs); - vwenv.AddString(m_tssDefaultSpace); - vwenv.AddString(m_tssDefaultSpace); - AddTssDirForWs(vwenv, defUserWs); - } - - /// <summary> - /// Add a single space for the first line and no space for subsequent lines. - /// </summary> - private void AddSpaceForFirstLine(IVwEnv vwenv, bool bFirstLine) - { - if (bFirstLine) - { - vwenv.AddString(m_tssDefaultSpace); - } - } - - /// <summary> - /// Use the given WS to add a given string with directionality marks - /// </summary> - /// <param name="vwenv"></param> - /// <param name="ws"></param> - /// <param name="str"></param> - private void AddITsStringProperty(IVwEnv vwenv, int ws, ITsString str) - { - AddTssDirForWs(vwenv, ws); - vwenv.AddString(str); - AddTssDirForWs(vwenv, ws); - } - - private ITsString MakeLabel(string labelText) - { - var tssLabel = MakeUiElementString( - labelText, - m_cache.DefaultUserWs, - propsBldr => - { - propsBldr.SetIntPropValues( - (int)FwTextPropType.ktptBold, - (int)FwTextPropVar.ktpvEnum, - (int)FwTextToggleVal.kttvForceOn); - }); - return tssLabel; - } - - private ITsString GetSpeakerName(ICmPerson speakerRA, int ws) - { - // If speaker name is available in the writing system we want, use that. - // Otherwise, use the default stored in ChooserNameTS. Otherwise an empty string. - ITsString speakerName = speakerRA?.Name?.get_String(ws); - if (string.IsNullOrEmpty(speakerName?.ToString())) - speakerName = speakerRA?.ChooserNameTS ?? m_tssEmptyString; - return speakerName; - } - - private void AddNoMediaMessage(IVwEnv vwenv, ITsString tssMediaLabel, ITsString tssFileLabel, int wsForSeg, string mediaFileName) - { - var defUserWs = m_cache.DefaultUserWs; - bool isFilePathSpecified = !string.IsNullOrEmpty(mediaFileName); - ITsString tssFileName = null; - ITsString tssNoMediaMessage; - - if (isFilePathSpecified) - { - tssFileName = MakeUiElementString(mediaFileName, defUserWs, null); - // We have a media filepath, but file was not found. Build media not found message. - // Use normal label settings, except make it italic instead of bold. - tssNoMediaMessage = MakeUiElementString( - ITextStrings.ksMediaNotFound, defUserWs, - propsBldr => - { - propsBldr.SetIntPropValues( - (int)FwTextPropType.ktptItalic, - (int)FwTextPropVar.ktpvEnum, - (int)FwTextToggleVal.kttvForceOn); - }); - } - else - { - // No media filepath was given. Build no media message. - // Use normal label settings, except not bold. - tssNoMediaMessage = MakeUiElementString( - ITextStrings.ksNoMedia, defUserWs, - propsBldr => - { - propsBldr.SetIntPropValues( - (int)FwTextPropType.ktptItalic, - (int)FwTextPropVar.ktpvEnum, - (int)FwTextToggleVal.kttvForceOn); - }); - } - - // If the user WS and segment WS are not the same direction, then we need to insert pieces in reverse - // logical order. - AddTssDirForWs(vwenv, defUserWs); - if (IsWsRtl(wsForSeg)!=IsWsRtl(defUserWs)) - { - if (isFilePathSpecified) - { - vwenv.AddString(tssFileName); - vwenv.AddString(m_tssDefaultSpace); - vwenv.AddString(tssFileLabel); - AddSeparator(vwenv); - } - vwenv.AddString(tssNoMediaMessage); - vwenv.AddString(m_tssDefaultSpace); - vwenv.AddString(tssMediaLabel); - } - else - { - vwenv.AddString(tssMediaLabel); - vwenv.AddString(m_tssDefaultSpace); - vwenv.AddString(tssNoMediaMessage); - if (isFilePathSpecified) - { - AddSeparator(vwenv); - vwenv.AddString(tssFileLabel); - vwenv.AddString(m_tssDefaultSpace); - vwenv.AddString(tssFileName); - } - } - AddTssDirForWs(vwenv, defUserWs); - } - - /// <summary> - /// Create a Media line for the segment that includes a media playback button, - /// the time offsets for the media clip, and the speaker information. - /// If there is no media file, the playback button is omitted, - /// and a "No Media" message is displayed instead of the offsets and speaker. - /// </summary> - /// <param name="vwenv"></param> - /// <param name="hvoSeg"></param> - /// <param name="lineChoiceIndex"></param> - protected virtual void AddMedia(IVwEnv vwenv, int hvoSeg, int lineChoiceIndex) - { - InterlinearExporter exporter = vwenv as InterlinearExporter; - if (exporter != null) - exporter.FreeAnnotationType = "media"; - - // Store the segment & the Ws used for the segment. - var segment = m_cache.ServiceLocator.GetObject(hvoSeg) as ISegment; - Debug.Assert(segment != null); - var wsForSeg = GetWsForSeg(hvoSeg); - var defUserWs = m_cache.DefaultUserWs; - - // Store the list of WSs that were selected for displaying the media line. - int[] wssOptions = m_lineChoices.AdjacentEnabledWssAtIndex(lineChoiceIndex, hvoSeg); - if (wssOptions.Length == 0) - return; - - string mediaLabel = ITextStrings.ksMedia; - var mediaLabelWidth = 0; - int mediaLabelHeight; // unused - - // Build media line label, with line index attached - var tssMediaLabel = MakeLabel(mediaLabel); - var labelBldr = tssMediaLabel.GetBldr(); - AddLineIndexProperty(labelBldr, lineChoiceIndex); - tssMediaLabel = labelBldr.GetString(); - - // Calculate width of the media label, for use indenting subsequent lines. - vwenv.get_StringWidth(tssMediaLabel, null, out mediaLabelWidth, out mediaLabelHeight); - - // Calculate width of the media playback button (which is just a picture), for use indenting subsequent lines: - // Get picture width in himetric units & convert to millipoints - // Note: 1 himetric = 0.01 mm and 1 mm = 72000/25.4 millipoints - // => 1 himetric = 720/25.4 millipoints = 7200/254 millipoints - int mediaPlayPicWidth = m_PlayArrowPic.Picture.Width * 7200 / 254; - - // Build labels for begin/end offsets, speaker, and file. - var tssBeginTimeLabel = MakeLabel(ITextStrings.ksBeginTimeOffset); - var tssEndTimeLabel = MakeLabel(ITextStrings.ksEndTimeOffset); - var tssSpeakerLabel = MakeLabel(ITextStrings.ksSpeaker); - var tssFileLabel = MakeLabel(ITextStrings.ksFile); - - var mediaFile = segment.MediaURIRA?.MediaURI; - string mediaFileName; - bool fileExists = CheckFileExistsFromUri(mediaFile, out mediaFileName); - - // If there is no media file, add Media line label and a "No Media" message and skip the rest of the media line display. - if (!fileExists) - { - vwenv.OpenDiv(); - // No Media Message uses the default user ws - SetParaDirectionAndAlignment(vwenv, defUserWs); - vwenv.OpenParagraph(); - AddNoMediaMessage(vwenv, tssMediaLabel, tssFileLabel, wsForSeg, mediaFileName); - vwenv.CloseParagraph(); - vwenv.CloseDiv(); - return; - } - - vwenv.OpenDiv(); - for (int i = 0; i < wssOptions.Length; i++) - { - bool bFirstLine = i == 0; - bool bOnlyOneLine = wssOptions.Length == 1; - - // Check if the direction of the line content matches the direction the segment should display. - bool lineAndSegSameDir = IsWsRtl(wssOptions[i]) == IsWsRtl(wsForSeg); - - // Check if the direction of the line content matches the direction of the default user writing system. - bool lineAndUserSameDir = (IsWsRtl(wssOptions[i]) == IsWsRtl(defUserWs)); - - // If there are multiple WS to display then we will need to add the writing system label. - ITsString wsLabel = null; - if (!bOnlyOneLine) - { - wsLabel = WsListManager.WsLabel(m_cache, wssOptions[i]); - var wsLabelBldr = wsLabel.GetBldr(); - AddLineIndexProperty(wsLabelBldr, lineChoiceIndex); - wsLabel = wsLabelBldr.GetString(); - } - - // For all paragraphs except for the first one, indented by the combined width of the - // media label and playback button. - if (!bFirstLine) - { - int spaceIndent = 7000; // amount to indent for the space added before the WS label. - if (!lineAndSegSameDir) - { - vwenv.set_IntProperty((int)FwTextPropType.ktptTrailingIndent, - (int)FwTextPropVar.ktpvMilliPoint, mediaLabelWidth + mediaPlayPicWidth + spaceIndent); - } - else - { - vwenv.set_IntProperty((int)FwTextPropType.ktptLeadingIndent, - (int)FwTextPropVar.ktpvMilliPoint, mediaLabelWidth + mediaPlayPicWidth + spaceIndent); - } - } - - SetParaDirectionAndAlignment(vwenv, wssOptions[i]); - vwenv.OpenParagraph(); - - // If the direction of Line content WS and the direction of the Segment WS are different, - // we need to insert each piece such that: - // - a piece consists of a consecutive chunk that all uses a single writing system (so, when the writing system switches, we begin a new piece) - // - pieces are placed in reverse logical order - // - each piece should begin and end with directionality marks for its writing system - // - // If the Line content WS and the default user WS have different directions, - // then content within each piece needs to be in logical order. - // - // If the Line content WS and the default user WS have the same direction--meaning both are opposite the direction of the Segment WS, - // then content within each piece needs to be in reverse logical order. - // - // In the order in which they should appear, pieces for the media line are: - // [Default user WS - media label], [Line content WS - playback button], [Default user WS - optional WS label & Begin time label], - // [Line content WS - Begin time value], [Default user WS - End time label], [Line content WS - End time value], - // [Default user WS - Speaker label], [Line content WS - Speaker value], [Default user WS - File label & filename]. - if (!lineAndSegSameDir) - { - // Add the file name section. - // Piece 1: default user WS - Add file label and filename - if (lineAndUserSameDir) - { - // content within the piece is in reverse logical order, so add filename and then label - AddITsStringProperty(vwenv, defUserWs, MakeUiElementString(mediaFileName, defUserWs, null)); - AddFormattedLabel(vwenv, tssFileLabel, lineAndSegSameDir, lineAndUserSameDir); - } - else - { - // content within the piece is in logical order, so add label and then filename - AddFormattedLabel(vwenv, tssFileLabel, lineAndSegSameDir, lineAndUserSameDir); - AddITsStringProperty(vwenv, defUserWs, MakeUiElementString(mediaFileName, defUserWs, null)); - } - - // Add the speaker section. - // Piece 1: Line content WS - Add speaker value. - AddITsStringProperty(vwenv, wssOptions[i], GetSpeakerName(segment.SpeakerRA, wssOptions[i])); - // Piece 2: default user WS - Add speaker label. - AddFormattedLabel(vwenv, tssSpeakerLabel, lineAndSegSameDir, lineAndUserSameDir); - - // Add the end time section. - // Piece 1: Line content WS - Add end time value. - AddITsStringProperty(vwenv, wssOptions[i], GetDisplayTime(segment.EndTimeOffset, wssOptions[i])); - // Piece 2: default user WS - Add end time label. - AddFormattedLabel(vwenv, tssEndTimeLabel, lineAndSegSameDir, lineAndUserSameDir); - - // Add begin time section and optional writing system label. - if (bOnlyOneLine) - { - // In this case, we don't need a writing system label. Add the begin time section. - // Piece 1: Line content WS - Add begin time value. - AddITsStringProperty(vwenv, wssOptions[i], GetDisplayTime(segment.BeginTimeOffset, wssOptions[i])); - // Piece 2: default user WS - Add begin time label. - AddFormattedLabel(vwenv, tssBeginTimeLabel, lineAndSegSameDir, lineAndUserSameDir); - } - else - { - if (!lineAndUserSameDir) - { - // Recall: Need to insert pieces in reverse logical order, but maintain logical order within each piece. - // Piece 1: Line content WS - Add begin time value. - AddITsStringProperty(vwenv, wssOptions[i], GetDisplayTime(segment.BeginTimeOffset, wssOptions[i])); - - // Piece 2: default user WS - In logical order add WS label, then begin time label. - // Add WS label. - SetNoteLabelProps(vwenv); - AddTssDirForWs(vwenv, defUserWs); - AddSpaceForFirstLine(vwenv, bFirstLine); - vwenv.AddString(wsLabel); - AddTssDirForWs(vwenv, defUserWs); - // Begin time label. - AddFormattedLabel(vwenv, tssBeginTimeLabel, lineAndSegSameDir, lineAndUserSameDir); - } - else - { - // Insert everything in reverse logical order. - // Piece 1: Line content WS - Add begin time value. - AddITsStringProperty(vwenv, wssOptions[i], GetDisplayTime(segment.BeginTimeOffset, wssOptions[i])); - - // Piece 2: default user WS - Add begin time label, then add WS label. - AddFormattedLabel(vwenv, tssBeginTimeLabel, lineAndSegSameDir, lineAndUserSameDir); - // Add WS label. - SetNoteLabelProps(vwenv); - AddTssDirForWs(vwenv, defUserWs); - vwenv.AddString(wsLabel); - AddSpaceForFirstLine(vwenv, bFirstLine); - AddTssDirForWs(vwenv, defUserWs); - } - } - - if (bFirstLine) - { - // Add the media playback button, which is just a picture. - // Piece 1: Line content WS - Add media playback button. - AddTssDirForWs(vwenv, wssOptions[i]); - vwenv.AddPicture(m_PlayArrowPic.Picture, SegmentTags.kflidMediaURI, 0, 0); - AddTssDirForWs(vwenv, wssOptions[i]); - - // Add the media line label, using default user WS. - if (!lineAndUserSameDir) - { - // Maintain logical order within the piece. - // Piece: default user WS - insert Media line label and then space - SetNoteLabelProps(vwenv); - AddTssDirForWs(vwenv, defUserWs); - vwenv.AddString(tssMediaLabel); - vwenv.AddString(m_tssDefaultSpace); - AddTssDirForWs(vwenv, defUserWs); - } - else - { - // Reverse logical order within the piece. - // Piece: default user WS - insert space and then Media line label - SetNoteLabelProps(vwenv); - AddTssDirForWs(vwenv, defUserWs); - vwenv.AddString(m_tssDefaultSpace); - vwenv.AddString(tssMediaLabel); - AddTssDirForWs(vwenv, defUserWs); - } - } - } - - // Else, the direction of Line content WS and the direction of the Segment WS are the same. - // In this case, we need to insert each piece in logical order. - // - // If the Line content WS and the default user WS have different directions, - // then content within each piece needs to be in reverse logical order. - // - // If the Line content WS and the default user WS have the same direction--meaning both have the same direction as the Segment WS, - // then content within each piece needs to be in logical order. - // - // In the order in which they should appear, pieces for the media line are: - // [Label WS - media label], [Line content WS - playback button], [Label WS - optional WS label & Begin time label], - // [Line content WS - Begin time value], [Label WS - End time label], [Line content WS - End time value], - // [Label WS - Speaker label], [Line content WS - Speaker value]. - else - { - if (bFirstLine) - { - if (!lineAndUserSameDir) - { - // Reverse logical order within the piece. - // Media label Piece: default user WS - insert space and then Media line label - SetNoteLabelProps(vwenv); - AddTssDirForWs(vwenv, defUserWs); - vwenv.AddString(m_tssDefaultSpace); - vwenv.AddString(tssMediaLabel); - AddTssDirForWs(vwenv, defUserWs); - } - else - { - // Maintain logical order within the piece. - // Media label Piece: default user WS - insert Media line label and then space - SetNoteLabelProps(vwenv); - AddTssDirForWs(vwenv, defUserWs); - vwenv.AddString(tssMediaLabel); - vwenv.AddString(m_tssDefaultSpace); - AddTssDirForWs(vwenv, defUserWs); - } - - // Add the media playback button, which is just a picture. - // Playback button piece: Line content WS - Add media playback button. - AddTssDirForWs(vwenv, wssOptions[i]); - vwenv.AddPicture(m_PlayArrowPic.Picture, SegmentTags.kflidMediaURI, 0, 0); - AddTssDirForWs(vwenv, wssOptions[i]); - } - - // Add begin time section and optional writing system label. - if (bOnlyOneLine) - { - // In this case, we don't need a writing system label. Add the begin time section. - // Begin time Label Piece: default user WS - AddFormattedLabel(vwenv, tssBeginTimeLabel, lineAndSegSameDir, lineAndUserSameDir); - // Begin time value Piece: Line content WS. - AddITsStringProperty(vwenv, wssOptions[i], GetDisplayTime(segment.BeginTimeOffset, wssOptions[i])); - } - else - { - if (!lineAndUserSameDir) - { - // Pieces in logical order, but reverse logical order within each piece. - - // WS label & Begin time label Piece: Using default user WS. - // Insert in reverse order: begin time label, separator, WS label - // Add begin time label - AddFormattedLabel(vwenv, tssBeginTimeLabel, lineAndSegSameDir, lineAndUserSameDir); - // Add WS label, to appear before begin time separator and label - AddTssDirForWs(vwenv, defUserWs); - SetNoteLabelProps(vwenv); - vwenv.AddString(wsLabel); - AddSpaceForFirstLine(vwenv, bFirstLine); - AddTssDirForWs(vwenv, defUserWs); - - // Begin time value Piece: Line content WS. - AddITsStringProperty(vwenv, wssOptions[i], GetDisplayTime(segment.BeginTimeOffset, wssOptions[i])); - } - else - { - // Pieces in logical order, and maintain logical order within each piece. - // WS label & Begin time label Piece: Using default user WS. - AddTssDirForWs(vwenv, defUserWs); - AddSpaceForFirstLine(vwenv, bFirstLine); - SetNoteLabelProps(vwenv); - vwenv.AddString(wsLabel); - AddTssDirForWs(vwenv, defUserWs); - // Add begin time label - AddFormattedLabel(vwenv, tssBeginTimeLabel, lineAndSegSameDir, lineAndUserSameDir); - - // Begin time value Piece: Line content WS. - AddITsStringProperty(vwenv, wssOptions[i], GetDisplayTime(segment.BeginTimeOffset, wssOptions[i])); - } - } - - // Add the end time section. - // End time label piece: default user WS. - AddFormattedLabel(vwenv, tssEndTimeLabel, lineAndSegSameDir, lineAndUserSameDir); - // End time value piece: Line content WS. - AddITsStringProperty(vwenv, wssOptions[i], GetDisplayTime(segment.EndTimeOffset, wssOptions[i])); - - // Add the speaker section. - // Speaker label Piece: default user WS. - AddFormattedLabel(vwenv, tssSpeakerLabel, lineAndSegSameDir, lineAndUserSameDir); - // Speaker value piece: Line content WS. - AddITsStringProperty(vwenv, wssOptions[i], GetSpeakerName(segment.SpeakerRA, wssOptions[i])); - - // Add the file name piece. - // Default user WS - Add file label and filename - if (lineAndUserSameDir) - { - // content within the piece should be in logical order, so add label and then filename - AddFormattedLabel(vwenv, tssFileLabel, lineAndSegSameDir, lineAndUserSameDir); - AddITsStringProperty(vwenv, defUserWs, MakeUiElementString(mediaFileName, defUserWs, null)); - } - else - { - // content within the piece should be in reverse logical order, so add filename and then label - AddITsStringProperty(vwenv, defUserWs, MakeUiElementString(mediaFileName, defUserWs, null)); - AddFormattedLabel(vwenv, tssFileLabel, lineAndSegSameDir, lineAndUserSameDir); - } - } - vwenv.CloseParagraph(); - } - vwenv.CloseDiv(); - } - - /// <summary> - /// Converts a string representing milliseconds to a formatted time string and returns it as an <see cref="ITsString"/> - /// in the specified writing system. The returned string is intended for display in the user interface. - /// </summary> - /// <param name="msString">A string containing the number of milliseconds to convert.</param> - /// <returns>An <see cref="ITsString"/> containing the formatted time, using hours, minutes, seconds, and fractional seconds as - /// appropriate for the input value.</returns> - private ITsString GetDisplayTime(string msString, int writingSystem) - { - double ms = double.Parse(msString); - var timeSpan = TimeSpan.FromMilliseconds(ms); - string displayTime; - if (timeSpan.Hours != 0) - { - displayTime = timeSpan.ToString(@"h\:mm\:ss\.ff"); - } - else if (timeSpan.Minutes != 0) - { - displayTime = timeSpan.ToString(@"m\:ss\.ff"); - } - else - { - displayTime = timeSpan.ToString(@"s\.ff"); - } - return MakeUiElementString(displayTime, writingSystem, null); - } - protected virtual void AddFreeformComment(IVwEnv vwenv, int hvoSeg, int lineChoiceIndex) { int[] wssAnalysis = m_lineChoices.AdjacentEnabledWssAtIndex(lineChoiceIndex, hvoSeg); @@ -2043,50 +1486,6 @@ private void DisplayMorphBundle(IVwEnv vwenv, int hvo) vwenv.CloseInnerPile(); } - /// <summary> - /// Checks if a file associated with a file URI string exists. - /// </summary> - /// <param name="uriString">The string containing the file URI.</param> - /// <param name="fileName">The name of the file extracted from the URI, if it exists.</param> - /// <returns>True if the file exists, false otherwise.</returns> - private static bool CheckFileExistsFromUri(string uriString, out string fileName) - { - fileName = null; - if (string.IsNullOrEmpty(uriString)) - { - return false; - } - - try - { - // 1. Create a Uri object from the string. - Uri uri = new Uri(uriString); - - // 2. Check if it's a local file path (scheme "file"). - if (uri.IsFile) - { - // 3. Get the file path using uri.LocalPath. - string localPath = uri.LocalPath; - fileName = Path.GetFileName(uri.LocalPath); - - // 4. Use File.Exists to verify if the file exists at that path. - return File.Exists(localPath); - } - else - { - // Handle cases where the URI is not a local file (e.g., http, ftp). - Console.WriteLine($"URI scheme is not 'file': {uri.Scheme}"); - return false; - } - } - catch (UriFormatException ex) - { - // Handle invalid URI format - Console.WriteLine($"Invalid URI format: {ex.Message}"); - return false; - } - } - internal static bool TryGetLexGlossWithInflTypeTss(ILexEntry possibleVariant, ILexSense sense, InterlinLineSpec spec, InterlinLineChoices lineChoices, int vernWsContext, ILexEntryInflType inflType, out ITsString result) { LcmCache cache = possibleVariant.Cache; @@ -2712,9 +2111,6 @@ protected virtual void AddFreeformAnnotations(IVwEnv vwenv, int hvoSeg) // index into line choices we want to use to display each of them. vwenv.AddObjVecItems(SegmentTags.kflidNotes, this, kfragSegFfChoices + ispec); break; - case InterlinLineChoices.kflidMedia: - AddMedia(vwenv, hvoSeg, ispec); - break; default: if(((IFwMetaDataCacheManaged)m_cache.MetaDataCacheAccessor).FieldExists(flid) && ((IFwMetaDataCacheManaged)m_cache.MetaDataCacheAccessor).IsCustom(flid)) AddCustomFreeFormComment(vwenv, hvoSeg, ispec); diff --git a/Src/LexText/Interlinear/SandboxBase.ComboHandlers.cs b/Src/LexText/Interlinear/SandboxBase.ComboHandlers.cs index 39ac297600..064530f574 100644 --- a/Src/LexText/Interlinear/SandboxBase.ComboHandlers.cs +++ b/Src/LexText/Interlinear/SandboxBase.ComboHandlers.cs @@ -2083,13 +2083,7 @@ private void RunCreateEntryDlg() ILexEntry le; IMoForm allomorph; ILexSense sense; - bool hasLexEntry = GetLexEntry() != null; CreateNewEntry(false, out le, out allomorph, out sense); - if (!hasLexEntry && GetLexEntry() != null) - { - // Add "Edit Lexical Entry...". - SetupCombo(); - } } internal void CreateNewEntry(bool fCreateNow, out ILexEntry le, out IMoForm allomorph, out ILexSense sense) @@ -2604,15 +2598,7 @@ private void OnSelectEditLexicalEntry(object sender, EventArgs args) private ILexEntry GetLexEntry() { IWfiMorphBundle bundle = m_caches.RealObject(m_hvoMorph) as IWfiMorphBundle; - if (bundle?.MorphRA?.Owner is ILexEntry) - { - return bundle.MorphRA.Owner as ILexEntry; - } - if (m_sandbox.m_hvoLastSelEntry != 0) - { - return m_caches.MainCache.ServiceLocator.GetInstance<ILexEntryRepository>().GetObject(m_sandbox.m_hvoLastSelEntry); - } - return null; + return bundle?.MorphRA?.Owner as ILexEntry; } private void OnSelectAllomorphOf(object sender, EventArgs args) { diff --git a/Src/ManagedVwDrawRootBuffered/VwDrawRootBuffered.cs b/Src/ManagedVwDrawRootBuffered/VwDrawRootBuffered.cs index 4abdc1bf23..4b9f85bac3 100644 --- a/Src/ManagedVwDrawRootBuffered/VwDrawRootBuffered.cs +++ b/Src/ManagedVwDrawRootBuffered/VwDrawRootBuffered.cs @@ -3,6 +3,7 @@ // (http://www.gnu.org/licenses/lgpl-2.1.html) using System; +using System.Diagnostics; using System.Drawing; using System.Runtime.InteropServices; using SIL.FieldWorks.Common.ViewsInterfaces; @@ -18,6 +19,8 @@ namespace SIL.FieldWorks.Views [Guid("97199458-10C7-49da-B3AE-EA922EA64859")] public class VwDrawRootBuffered : IVwDrawRootBuffered { + private GdiMemoryBuffer m_cachedBuffer; + private class GdiMemoryBuffer : IDisposable { public IntPtr HdcMem { get; private set; } @@ -93,6 +96,15 @@ private struct RECT private const int SRCCOPY = 0x00CC0020; private const uint kclrTransparent = 0xC0000000; + private void ReplaceCachedBuffer(GdiMemoryBuffer newBuffer) + { + if (ReferenceEquals(m_cachedBuffer, newBuffer)) + return; + + m_cachedBuffer?.Dispose(); + m_cachedBuffer = newBuffer; + } + /// <summary> /// See C++ documentation /// </summary> @@ -117,7 +129,9 @@ public void DrawTheRoot(IVwRootBox prootb, IntPtr hdc, Rect rcpDraw, uint bkclr, IVwGraphicsWin32 qvg = VwGraphicsWin32Class.Create(); Rectangle rcp = rcpDraw; - using (var memoryBuffer = new GdiMemoryBuffer(hdc, rcp.Width, rcp.Height)) + var memoryBuffer = new GdiMemoryBuffer(hdc, rcp.Width, rcp.Height); + bool keepBuffer = false; + try { IntPtr hdcMem = memoryBuffer.HdcMem; try @@ -184,9 +198,16 @@ public void DrawTheRoot(IVwRootBox prootb, IntPtr hdc, Rect rcpDraw, uint bkclr, if (xpdr != VwPrepDrawResult.kxpdrInvalidate) { + ReplaceCachedBuffer(memoryBuffer); + keepBuffer = true; // We drew something...now blast it onto the screen. BitBlt(hdc, rcp.Left, rcp.Top, rcp.Width, rcp.Height, hdcMem, 0, 0, SRCCOPY); } + else if (m_cachedBuffer != null) + { + Trace.WriteLine("[FW_PERF_INTERACTION] [VwDrawRootBuffered] Stage=ReuseLastFrameOnInvalidate Path=Managed"); + BitBlt(hdc, rcp.Left, rcp.Top, rcp.Width, rcp.Height, m_cachedBuffer.HdcMem, 0, 0, SRCCOPY); + } } catch (Exception) { @@ -200,12 +221,20 @@ public void DrawTheRoot(IVwRootBox prootb, IntPtr hdc, Rect rcpDraw, uint bkclr, qvg.ReleaseDC(); } } + finally + { + if (!keepBuffer) + memoryBuffer.Dispose(); + } } public void ReDrawLastDraw(IntPtr hdc, Rect rcpDraw) { - // TODO-Linux: implement - throw new NotImplementedException(); + if (m_cachedBuffer == null) + throw new NotImplementedException(); + + Rectangle rcp = rcpDraw; + BitBlt(hdc, rcp.Left, rcp.Top, rcp.Width, rcp.Height, m_cachedBuffer.HdcMem, 0, 0, SRCCOPY); } /// <summary> diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/Action.cs b/Src/Utilities/AlloVarGen/AlloGenModel/Action.cs deleted file mode 100644 index acc1d3985a..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenModel/Action.cs +++ /dev/null @@ -1,114 +0,0 @@ -// Copyright (c) 2022-2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace SIL.AlloGenModel -{ - public class Action - { - public List<string> ReplaceOpRefs { get; set; } - - // Environments and StemName used in Allomorph Generator - public List<Environment> Environments { get; set; } - public StemName StemName { get; set; } = new StemName(); - - // Variant Types, ShowInMinorEntry, and PublishEntryIn used in Variant Generator - public List<VariantType> VariantTypes { get; set; } - public bool ShowMinorEntry { get; set; } = true; - public List<PublishEntryInItem> PublishEntryInItems { get; set; } = new List<PublishEntryInItem>(); - - public Action() - { - ReplaceOpRefs = new List<string>(); - Environments = new List<Environment>(); - VariantTypes = new List<VariantType>(); - } - - public Action Duplicate() - { - Action newAction = new Action(); - List<string> newReplaceOpRefs = new List<string>(); - foreach (string repRef in ReplaceOpRefs) - { - newReplaceOpRefs.Add(repRef); - } - newAction.ReplaceOpRefs = newReplaceOpRefs; - List<Environment> newEnvironments = new List<Environment>(); - foreach (Environment env in Environments) - { - var newEnv = new Environment(); - newEnv.Active = env.Active; - newEnv.Guid = env.Guid; - newEnv.Name = env.Name; - newEnvironments.Add(newEnv); - } - newAction.Environments = newEnvironments; - var newSN = new StemName(); - newSN.Active = StemName.Active; - newSN.Guid = StemName.Guid; - newSN.Name = StemName.Name; - newAction.StemName = newSN; - List<VariantType> newVariantTypes = new List<VariantType>(); - foreach (VariantType vt in VariantTypes) - { - var newVT = new VariantType(); - newVT.Active = vt.Active; - newVT.Guid = vt.Guid; - newVT.Name = vt.Name; - newVariantTypes.Add(newVT); - } - newAction.VariantTypes = newVariantTypes; - newAction.ShowMinorEntry = ShowMinorEntry; - List<PublishEntryInItem> newPublishEntryIn = new List<PublishEntryInItem>(); - foreach (PublishEntryInItem pubItem in PublishEntryInItems) - { - var newPubItem = new PublishEntryInItem(); - newPubItem.Active = pubItem.Active; - newPubItem.Guid = pubItem.Guid; - newPubItem.Name = pubItem.Name; - newPublishEntryIn.Add(newPubItem); - } - newAction.PublishEntryInItems = newPublishEntryIn; - return newAction; - } - - public override bool Equals(Object obj) - { - //Check for null and compare run-time types. - if ((obj == null) || !this.GetType().Equals(obj.GetType())) - { - return false; - } - else - { - Action act = (Action)obj; - return (ReplaceOpRefs.SequenceEqual(act.ReplaceOpRefs)) - && (Environments.SequenceEqual(act.Environments)) - && (VariantTypes.SequenceEqual(act.VariantTypes)) - && (PublishEntryInItems.SequenceEqual(act.PublishEntryInItems)) - && (StemName.Equals(act.StemName)) - && (ShowMinorEntry == act.ShowMinorEntry); - } - } - - public override int GetHashCode() - { - return Tuple - .Create( - ReplaceOpRefs, - Environments, - StemName, - VariantTypes, - ShowMinorEntry, - PublishEntryInItems - ) - .GetHashCode(); - } - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenBase.cs b/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenBase.cs deleted file mode 100644 index 139596b21c..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenBase.cs +++ /dev/null @@ -1,36 +0,0 @@ -// Copyright (c) 2022 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Xml.Serialization; - -namespace SIL.AlloGenModel -{ - abstract public class AlloGenBase - { - [XmlAttribute("active")] - public bool Active { get; set; } = true; - - public override bool Equals(Object obj) - { - //Check for null and compare run-time types. - if ((obj == null) || !this.GetType().Equals(obj.GetType())) - return false; - else - { - AlloGenBase agb = (AlloGenBase)obj; - return (Active == agb.Active); - } - } - - public override int GetHashCode() - { - return Active.GetHashCode(); - } - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenGuid.cs b/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenGuid.cs deleted file mode 100644 index 8887acc622..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenGuid.cs +++ /dev/null @@ -1,46 +0,0 @@ -// Copyright (c) 2022-2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Xml.Serialization; - -namespace SIL.AlloGenModel -{ - abstract public class AlloGenGuid : AlloGenBase - { - [XmlAttribute("guid")] - public string Guid { get; set; } = ""; - public string Name { get; set; } = ""; - - override public string ToString() - { - return Name; - } - - public override bool Equals(Object obj) - { - if (!base.Equals(obj)) - return false; - - //Check for null and compare run-time types. - if ((obj == null) || !this.GetType().Equals(obj.GetType())) - return false; - else - { - AlloGenGuid agg = (AlloGenGuid)obj; - return (Guid == agg.Guid) && (Name == agg.Name); - } - } - - public override int GetHashCode() - { - int result = base.GetHashCode(); - return result + Tuple.Create(Guid, Name).GetHashCode(); - } - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenModel.csproj b/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenModel.csproj deleted file mode 100644 index 0d1d4c5354..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenModel.csproj +++ /dev/null @@ -1,45 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project Sdk="Microsoft.NET.Sdk"> - <PropertyGroup> - <AssemblyName>AlloGenModel</AssemblyName> - <RootNamespace>SIL.AlloGenModel</RootNamespace> - <TargetFramework>net48</TargetFramework> - <OutputType>Library</OutputType> <NoWarn>168,169,219,414,649,1635,1702,1701</NoWarn> - <GenerateAssemblyInfo>false</GenerateAssemblyInfo> - <Prefer32Bit>false</Prefer32Bit> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> - <DefineConstants>DEBUG;TRACE</DefineConstants> - <DebugSymbols>true</DebugSymbols> - <Optimize>false</Optimize> - <DebugType>portable</DebugType> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> - <DefineConstants>TRACE</DefineConstants> - <DebugSymbols>true</DebugSymbols> - <Optimize>true</Optimize> - <DebugType>portable</DebugType> - </PropertyGroup> - <ItemGroup> - <PackageReference Include="Newtonsoft.Json" /> - <PackageReference Include="SIL.Core" /> - <PackageReference Include="System.ValueTuple" /> - </ItemGroup> - <ItemGroup> - <Reference Include="netstandard" /> - <Reference Include="System.Xml.Linq" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="../../../Common/Filters/Filters.csproj" /> - <ProjectReference Include="../../../Common/FwUtils/FwUtils.csproj" /> - <ProjectReference Include="../../XMLUtils/XMLUtils.csproj" /> - </ItemGroup> - <ItemGroup> - <Compile Remove="AlloGenModelTests\**" /> - <EmbeddedResource Remove="AlloGenModelTests\**" /> - <None Remove="AlloGenModelTests\**" /> - <Compile Include="..\..\..\CommonAssemblyInfo.cs"> - <Link>Properties\CommonAssemblyInfo.cs</Link> - </Compile> - </ItemGroup> -</Project> \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenModelTests/AllomorphGeneratorsTests.cs b/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenModelTests/AllomorphGeneratorsTests.cs deleted file mode 100644 index 5bbdddd2ac..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenModelTests/AllomorphGeneratorsTests.cs +++ /dev/null @@ -1,65 +0,0 @@ -// Copyright (c) 2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using NUnit.Framework; -using SIL.AlloGenModel; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace AlloGenModelTests -{ - class AllomorphGeneratorsTests - { - AllomorphGenerators alloGens { get; set; } - - [SetUp] - public void Setup() - { - alloGens = new AllomorphGenerators(); - } - - [Test] - public void NewOperationTest() - { - Assert.AreEqual(0, alloGens.Operations.Count); - Operation op = alloGens.CreateNewOperation(); - Assert.AreEqual(1, alloGens.Operations.Count); - Assert.AreEqual(1, alloGens.ReplaceOperations.Count); - Assert.AreEqual(1, op.Action.ReplaceOpRefs.Count); - Replace replace = alloGens.ReplaceOperations[0]; - Assert.AreEqual(replace.Guid, op.Action.ReplaceOpRefs[0]); - Assert.AreEqual(0, op.Action.Environments.Count); - Assert.AreEqual("", op.Action.StemName.Name); - Assert.AreEqual(0, op.Action.VariantTypes.Count); - Assert.AreEqual(true, op.Action.ShowMinorEntry); - } - - [Test] - public void RemoveEmptyReplaceOperationsTest() - { - Replace rep1 = new Replace(); - rep1.From = "abc"; - rep1.To = "cba"; - alloGens.ReplaceOperations.Add(rep1); - Replace rep2 = new Replace(); - alloGens.ReplaceOperations.Add(rep2); - Replace rep3 = new Replace(); - rep3.Name = "my name"; - alloGens.ReplaceOperations.Add(rep3); - Assert.AreEqual(3, alloGens.ReplaceOperations.Count); - Operation op = new Operation(); - op.Action.ReplaceOpRefs.Add(rep1.Guid); - op.Action.ReplaceOpRefs.Add(rep2.Guid); - op.Action.ReplaceOpRefs.Add(rep3.Guid); - Assert.AreEqual(3, op.Action.ReplaceOpRefs.Count); - alloGens.DeleteEmptyReplaceOperationsFromAnOperation(op); - Assert.AreEqual(2, alloGens.ReplaceOperations.Count); - Assert.AreEqual("abc", alloGens.ReplaceOperations.ElementAt(0).From); - Assert.AreEqual("my name", alloGens.ReplaceOperations.ElementAt(1).Name); - } - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenModelTests/DuplicateTests.cs b/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenModelTests/DuplicateTests.cs deleted file mode 100644 index f06f629c31..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenModelTests/DuplicateTests.cs +++ /dev/null @@ -1,80 +0,0 @@ -// Copyright (c) 2022-2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using NUnit.Framework; -using SIL.AlloGenModel; -using SIL.AlloGenService; -using SIL.FieldWorks.Common.FwUtils; -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Reflection; -using System.Text; -using System.Threading.Tasks; -using Action = SIL.AlloGenModel.Action; - -namespace AlloGenModelTests -{ - class DuplicateTests - { - XmlBackEndProvider provider = new XmlBackEndProvider(); - string TestDataDir { get; set; } - string AlloGenFile { get; set; } - string AlloGenExpected { get; set; } - - [SetUp] - public void Setup() - { - TestDataDir = Path.Combine(FwDirectoryFinder.SourceDirectory, "Utilities", "AlloVarGen", "AlloGenModel", "AlloGenModelTests", "TestData"); - AlloGenExpected = Path.Combine(TestDataDir, "AlloGenExpected.xml"); - } - - [Test] - public void DuplicateTest() - { - provider.LoadDataFromFile(AlloGenExpected); - AllomorphGenerators allomorphGenerators = provider.AlloGens; - Assert.NotNull(allomorphGenerators); - Operation operation = allomorphGenerators.Operations[0]; - Operation opCopy = operation.Duplicate(); - Assert.AreEqual(true, operation.Equals(opCopy)); - opCopy.Description = ""; - Assert.AreEqual(false, operation.Equals(opCopy)); - Pattern pattern = operation.Pattern; - Pattern patCopy = opCopy.Pattern; - Assert.AreEqual(true, pattern.Equals(patCopy)); - patCopy.Matcher.MatchCase = !pattern.Matcher.MatchCase; - Assert.AreEqual(false, pattern.Equals(patCopy)); - Action action = operation.Action; - Action actCopy = opCopy.Action; - Assert.AreEqual(true, action.Equals(actCopy)); - - string guid = action.ReplaceOpRefs[0]; - Replace replace = allomorphGenerators.FindReplaceOp(guid); - Assert.NotNull(replace); - Replace replaceCopy = replace.Duplicate(); - Assert.AreEqual(replace.Name, replaceCopy.Name); - Assert.AreEqual(replace.Description, replaceCopy.Description); - Assert.AreEqual(replace.From, replaceCopy.From); - Assert.AreEqual(replace.To, replaceCopy.To); - Assert.AreEqual(replace.Mode, replaceCopy.Mode); - Assert.AreEqual(replace.WritingSystemRefs.Count, replaceCopy.WritingSystemRefs.Count); - for (int i = 0; i < replace.WritingSystemRefs.Count; i++) - { - Assert.AreEqual(replace.WritingSystemRefs[i], replaceCopy.WritingSystemRefs[i]); - } - Assert.AreEqual(replace.Active, replaceCopy.Active); - - Action actionCopy = action.Duplicate(); - Assert.NotNull(actionCopy); - Assert.AreEqual(action.Environments, actionCopy.Environments); - Assert.AreEqual(action.PublishEntryInItems, actionCopy.PublishEntryInItems); - Assert.AreEqual(action.ShowMinorEntry, actionCopy.ShowMinorEntry); - Assert.AreEqual(action.StemName, actionCopy.StemName); - Assert.AreEqual(action.VariantTypes, actionCopy.VariantTypes); - Assert.AreEqual(action.ReplaceOpRefs, actionCopy.ReplaceOpRefs); - } - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenModelTests/PatternTests.cs b/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenModelTests/PatternTests.cs deleted file mode 100644 index 5771dc1051..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenModelTests/PatternTests.cs +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright (c) 2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using NUnit.Framework; -using SIL.AlloGenModel; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace AlloGenModelTests -{ - class PatternTests - { - [SetUp] - public void Setup() - { - // nothing to do - } - - [Test] - public void CreationTest() - { - Pattern pattern = new Pattern(); - pattern.SetDefaultMorphTypes(); - var mts = pattern.MorphTypes; - Assert.AreEqual(4, mts.Count); - var mt = mts[0]; - Assert.AreEqual("bound root", mt.Name); - Assert.AreEqual(Constants.mtBoundRoot, mt.Guid); - mt = mts[1]; - Assert.AreEqual("bound stem", mt.Name); - Assert.AreEqual(Constants.mtBoundStem, mt.Guid); - mt = mts[2]; - Assert.AreEqual("root", mt.Name); - Assert.AreEqual(Constants.mtRoot, mt.Guid); - mt = mts[3]; - Assert.AreEqual("stem", mt.Name); - Assert.AreEqual(Constants.mtStem, mt.Guid); - } - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenModelTests/ReplaceOpsTest.cs b/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenModelTests/ReplaceOpsTest.cs deleted file mode 100644 index 9e0855c65c..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenModelTests/ReplaceOpsTest.cs +++ /dev/null @@ -1,160 +0,0 @@ -// Copyright (c) 2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using NUnit.Framework; -using SIL.AlloGenModel; -using SIL.AlloGenService; -using SIL.FieldWorks.Common.FwUtils; -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Reflection; -using System.Text; -using System.Threading.Tasks; - -namespace AlloGenModelTests -{ - class ReplaceOpsTest - { - XmlBackEndProvider provider = new XmlBackEndProvider(); - string TestDataDir { get; set; } - string AlloGenFile { get; set; } - string AlloGenExpected { get; set; } - - [SetUp] - public void Setup() - { - // nothing to do - } - - private void InitDataFile() - { - TestDataDir = Path.Combine(FwDirectoryFinder.SourceDirectory, "Utilities", "AlloVarGen", "AlloGenModel", "AlloGenModelTests", "TestData"); - AlloGenExpected = Path.Combine(TestDataDir, AlloGenFile); - } - - [Test] - public void FindReplaceOpsTests() - { - AlloGenFile = "AlloGenExpected.xml"; - InitDataFile(); - provider.LoadDataFromFile(AlloGenExpected); - AllomorphGenerators allomorphGenerators = provider.AlloGens; - Assert.NotNull(allomorphGenerators); - List<Replace> masterReplaceOps = allomorphGenerators.ReplaceOperations; - Assert.NotNull(masterReplaceOps); - Assert.AreEqual(4, masterReplaceOps.Count); - Replace replace = allomorphGenerators.FindReplaceOp( - "5e8b9b79-0269-4dee-bfb0-be8ed4f4dc5d" - ); - Assert.NotNull(replace); - Assert.AreEqual("*", replace.From); - Assert.AreEqual("", replace.To); - Assert.AreEqual(5, replace.WritingSystemRefs.Count); - foreach (string name in replace.WritingSystemRefs) - { - Console.WriteLine("name='" + name + "'"); - } - Assert.AreEqual("qvm-ach", replace.WritingSystemRefs[0]); - Assert.AreEqual("qvm-acl", replace.WritingSystemRefs[1]); - Assert.AreEqual("qvm-akh", replace.WritingSystemRefs[2]); - Assert.AreEqual("qvm-akl", replace.WritingSystemRefs[3]); - Assert.AreEqual("qvm-ame", replace.WritingSystemRefs[4]); - Assert.AreEqual(false, replace.Mode); - replace = allomorphGenerators.FindReplaceOp("34e77406-d2fe-4526-9bf9-3bc8fa653190"); - Assert.NotNull(replace); - Assert.AreEqual("+", replace.From); - Assert.AreEqual("", replace.To); - Assert.AreEqual(5, replace.WritingSystemRefs.Count); - Assert.AreEqual("qvm-ach", replace.WritingSystemRefs[0]); - Assert.AreEqual("qvm-acl", replace.WritingSystemRefs[1]); - Assert.AreEqual("qvm-akh", replace.WritingSystemRefs[2]); - Assert.AreEqual("qvm-akl", replace.WritingSystemRefs[3]); - Assert.AreEqual("qvm-ame", replace.WritingSystemRefs[4]); - Assert.AreEqual(false, replace.Mode); - replace = allomorphGenerators.FindReplaceOp("0f853476-407d-40e9-a8f3-803792f4f83e"); - Assert.NotNull(replace); - Assert.AreEqual(":", replace.From); - Assert.AreEqual("", replace.To); - Assert.AreEqual(4, replace.WritingSystemRefs.Count); - Assert.AreEqual("qvm-ach", replace.WritingSystemRefs[0]); - Assert.AreEqual("qvm-acl", replace.WritingSystemRefs[1]); - Assert.AreEqual("qvm-akh", replace.WritingSystemRefs[2]); - Assert.AreEqual("qvm-akl", replace.WritingSystemRefs[3]); - Assert.AreEqual(false, replace.Mode); - replace = allomorphGenerators.FindReplaceOp("4c3f43c6-f130-4767-9a5a-f2a93b1c6222"); - Assert.NotNull(replace); - Assert.AreEqual(":", replace.From); - Assert.AreEqual("a", replace.To); - Assert.AreEqual(1, replace.WritingSystemRefs.Count); - Assert.AreEqual("qvm-ame", replace.WritingSystemRefs[0]); - Assert.AreEqual(false, replace.Mode); - // missing replace op - replace = allomorphGenerators.FindReplaceOp("34e7XYZ7406-d2fe-4526-9bf9-3bc8fa653190"); - Assert.Null(replace); - } - - [Test] - public void DeleteReplaceOpsTests() - { - AlloGenFile = "DeleteReplaceOps.xml"; - InitDataFile(); - provider.LoadDataFromFile(AlloGenExpected); - AllomorphGenerators allomorphGenerators = provider.AlloGens; - Assert.NotNull(allomorphGenerators); - List<Replace> masterReplaceOps = allomorphGenerators.ReplaceOperations; - Assert.NotNull(masterReplaceOps); - Assert.AreEqual(12, masterReplaceOps.Count); - - // delete a replace op that is not used - Replace replace = allomorphGenerators.FindReplaceOp( - "2dabfec9-2247-4aa1-876e-48614e59e339" - ); - Assert.NotNull(replace); - List<Operation> operations = allomorphGenerators.FindOperationsUsedByReplaceOp(replace); - Assert.AreEqual(0, operations.Count); - allomorphGenerators.DeleteReplaceOp(replace); - Assert.AreEqual(false, allomorphGenerators.ReplaceOperations.Contains(replace)); - - // delete a replace op used three times - replace = allomorphGenerators.FindReplaceOp("331e03b6-d7b5-4761-b013-e4086a94e478"); - Assert.NotNull(replace); - operations = allomorphGenerators.FindOperationsUsedByReplaceOp(replace); - Assert.AreEqual(3, operations.Count); - Operation op = allomorphGenerators.Operations.Find(o => o == operations[0]); - SIL.AlloGenModel.Action action1 = op.Action; - List<string> opRefs = action1.ReplaceOpRefs.FindAll(oRef => oRef == replace.Guid); - Assert.AreEqual(1, opRefs.Count); - op = allomorphGenerators.Operations.Find(o => o == operations[1]); - SIL.AlloGenModel.Action action2 = op.Action; - opRefs = action2.ReplaceOpRefs.FindAll(oRef => oRef == replace.Guid); - Assert.AreEqual(1, opRefs.Count); - op = allomorphGenerators.Operations.Find(o => o == operations[2]); - SIL.AlloGenModel.Action action3 = op.Action; - opRefs = action3.ReplaceOpRefs.FindAll(oRef => oRef == replace.Guid); - Assert.AreEqual(2, opRefs.Count); - allomorphGenerators.DeleteReplaceOp(replace); - Assert.AreEqual(false, allomorphGenerators.ReplaceOperations.Contains(replace)); - Assert.AreEqual(false, action1.ReplaceOpRefs.Contains(replace.Guid)); - Assert.AreEqual(false, action2.ReplaceOpRefs.Contains(replace.Guid)); - Assert.AreEqual(false, action3.ReplaceOpRefs.Contains(replace.Guid)); - } - - [Test] - public void ReplaceOpIsEmptyTests() - { - Replace rep = new Replace(); - Assert.AreEqual(true, rep.IsEmpty()); - rep.From = "something"; - Assert.AreEqual(false, rep.IsEmpty()); - rep.From = ""; - rep.Name = "something"; - Assert.AreEqual(false, rep.IsEmpty()); - rep.Name = ""; - rep.Description = "something"; - Assert.AreEqual(false, rep.IsEmpty()); - } - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenModelTests/TestData/AlloGenExpected.xml b/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenModelTests/TestData/AlloGenExpected.xml deleted file mode 100644 index b52cb82a99..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenModelTests/TestData/AlloGenExpected.xml +++ /dev/null @@ -1,104 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<AllomorphGenerators xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" dbVersion="2"> - <Operations> - <Operation active="true"> - <Name>foreshortening</Name> - <Description>Add allomorphs for entries which undergo foreshortening</Description> - <Pattern> - <Matcher> - <Type>RegularExpression</Type> - <Pattern>:$|:\..+$</Pattern> - <MatchCase>true</MatchCase> - <MatchDiacritics>false</MatchDiacritics> - </Matcher> - <MorphTypes> - <MorphType active="true" guid="d7f713e4-e8cf-11d3-9764-00c04f186933" name="bound root" /> - <MorphType active="true" guid="d7f713e7-e8cf-11d3-9764-00c04f186933" name="bound stem" /> - <MorphType active="true" guid="d7f713e5-e8cf-11d3-9764-00c04f186933" name="root" /> - <MorphType active="true" guid="d7f713e8-e8cf-11d3-9764-00c04f186933" name="stem" /> - </MorphTypes> - <Category active="true" guid="54712931-442f-42d5-8634-f12bd2e310ce" name="Transitive verb" /> - </Pattern> - <Action> - <ReplaceOpRefs> - <string>5e8b9b79-0269-4dee-bfb0-be8ed4f4dc5d</string> - <string>34e77406-d2fe-4526-9bf9-3bc8fa653190</string> - <string>0f853476-407d-40e9-a8f3-803792f4f83e</string> - <string>4c3f43c6-f130-4767-9a5a-f2a93b1c6222</string> - </ReplaceOpRefs> - <Environments> - <Environment active="true" guid="d7f7123-e8cf-11d3-9733-00c04f186933" name="/ _ #" /> - <Environment active="true" guid="d7f7456-e8cf-11d3-9733-00c04f186933" name="/ ([C])[C]_ [V]" /> - </Environments> - <StemName active="true" guid="d2cf436-e8cf-11d3-9733-00c04f186933" name="no lowering" /> - </Action> - </Operation> - </Operations> - <ReplaceOperations> - <Replace active="true" guid="5e8b9b79-0269-4dee-bfb0-be8ed4f4dc5d" name="" mode="false" > - <From>*</From> - <To /> - <Description /> - <WritingSystemRefs> - <string>qvm-ach</string> - <string>qvm-acl</string> - <string>qvm-akh</string> - <string>qvm-akl</string> - <string>qvm-ame</string> - </WritingSystemRefs> - </Replace> - <Replace active="true" guid="34e77406-d2fe-4526-9bf9-3bc8fa653190" name="" mode="false" > - <From>+</From> - <To /> - <Description /> - <WritingSystemRefs> - <string>qvm-ach</string> - <string>qvm-acl</string> - <string>qvm-akh</string> - <string>qvm-akl</string> - <string>qvm-ame</string> - </WritingSystemRefs> - </Replace> - <Replace active="true" guid="0f853476-407d-40e9-a8f3-803792f4f83e" name="" mode="false" > - <From>:</From> - <To /> - <Description /> - <WritingSystemRefs> - <string>qvm-ach</string> - <string>qvm-acl</string> - <string>qvm-akh</string> - <string>qvm-akl</string> - </WritingSystemRefs> - </Replace> - <Replace active="true" guid="4c3f43c6-f130-4767-9a5a-f2a93b1c6222" name="" mode="false" > - <From>:</From> - <To>a</To> - <Description /> - <WritingSystemRefs> - <string>qvm-ame</string> - </WritingSystemRefs> - </Replace> - </ReplaceOperations> - <WritingSystems> - <WritingSystem> - <Name>qvm-akh</Name> - <Handle>999000005</Handle> - </WritingSystem> - <WritingSystem> - <Name>qvm-acl</Name> - <Handle>999000004</Handle> - </WritingSystem> - <WritingSystem> - <Name>qvm-akl</Name> - <Handle>999000006</Handle> - </WritingSystem> - <WritingSystem> - <Name>qvm-ach</Name> - <Handle>999000003</Handle> - </WritingSystem> - <WritingSystem> - <Name>qvm-ame</Name> - <Handle>999000007</Handle> - </WritingSystem> - </WritingSystems> -</AllomorphGenerators> diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenModelTests/TestData/DeleteReplaceOps.xml b/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenModelTests/TestData/DeleteReplaceOps.xml deleted file mode 100644 index dc8c0b33c5..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenModel/AlloGenModelTests/TestData/DeleteReplaceOps.xml +++ /dev/null @@ -1,307 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<AllomorphGenerators xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" dbVersion="2"> - <Operations> - <Operation active="true"> - <Name>Foreshortening</Name> - <Description>Add allomorphs for entries which undergo foreshortening</Description> - <Pattern> - <Matcher> - <Type>RegularExpression</Type> - <Pattern>:$|:\..+$</Pattern> - <MatchCase>false</MatchCase> - <MatchDiacritics>false</MatchDiacritics> - </Matcher> - <MorphTypes> - <MorphType active="true" guid="d7f713e4-e8cf-11d3-9764-00c04f186933" name="bound root" /> - <MorphType active="true" guid="d7f713e7-e8cf-11d3-9764-00c04f186933" name="bound stem" /> - <MorphType active="true" guid="d7f713e5-e8cf-11d3-9764-00c04f186933" name="root" /> - <MorphType active="true" guid="d7f713e8-e8cf-11d3-9764-00c04f186933" name="stem" /> - </MorphTypes> - <Category active="true" guid="" name="" /> - </Pattern> - <Action> - <ReplaceOpRefs> - <string>331e03b6-d7b5-4761-b013-e4086a94e478</string> - <string>af4729ca-f6a9-4ce3-9307-7a1b70b79a1d</string> - <string>49b6ed6c-7f4e-4333-a3f1-836541aa0d73</string> - <string>e8521422-eb88-42ff-8d99-401852c4eaa4</string> - <string>cc50ddd5-9116-4c0e-9f99-f6ed2e06d9b2</string> - </ReplaceOpRefs> - <Environments> - <Environment active="true" guid="abe0ecdd-ea94-4f30-a907-034beb750359" name="/_[C-t][C][V]" /> - <Environment active="true" guid="ae5f3ffd-a9d0-4eaa-9040-50a5a57e64bc" name="/_[C]#" /> - <Environment active="true" guid="c00e385f-cbe6-4724-8993-cc46e22ee3ba" name="/_päk" /> - <Environment active="true" guid="e381191f-e778-41d7-9369-2559954d06ce" name="/_ra" /> - </Environments> - <StemName active="true" guid="" name="" /> - </Action> - </Operation> - <Operation active="false"> - <Name>Phonetic lowering</Name> - <Description>Add allomorphs for entries which undergo phonetic lowering</Description> - <Pattern> - <Matcher> - <Type>RegularExpression</Type> - <Pattern>U$|U\..+$</Pattern> - <MatchCase>false</MatchCase> - <MatchDiacritics>false</MatchDiacritics> - </Matcher> - <MorphTypes> - <MorphType active="true" guid="d7f713e4-e8cf-11d3-9764-00c04f186933" name="bound root" /> - <MorphType active="true" guid="d7f713e7-e8cf-11d3-9764-00c04f186933" name="bound stem" /> - <MorphType active="true" guid="d7f713e5-e8cf-11d3-9764-00c04f186933" name="root" /> - <MorphType active="true" guid="d7f713e8-e8cf-11d3-9764-00c04f186933" name="stem" /> - </MorphTypes> - <Category active="true" guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" name="Verb" /> - </Pattern> - <Action> - <ReplaceOpRefs> - <string>331e03b6-d7b5-4761-b013-e4086a94e478</string> - <string>39934fe7-ab3a-4269-a122-3306860b1a74</string> - <string>35109daa-9f6b-484c-9dd8-578ec84f1348</string> - </ReplaceOpRefs> - <Environments> - <Environment active="true" guid="3a0ae95e-09e0-4d07-807a-97c7fc5550e1" name="/_([R])[gq]" /> - </Environments> - <StemName active="true" guid="" name="" /> - </Action> - </Operation> - <Operation active="true"> - <Name>Morph-lowering</Name> - <Description>Add allomorphs for entries which undergo morph-lowering</Description> - <Pattern> - <Matcher> - <Type>RegularExpression</Type> - <Pattern>[UI]$|[UI]\..+$</Pattern> - <MatchCase>true</MatchCase> - <MatchDiacritics>false</MatchDiacritics> - </Matcher> - <MorphTypes> - <MorphType active="true" guid="d7f713e4-e8cf-11d3-9764-00c04f186933" name="bound root" /> - <MorphType active="true" guid="d7f713e7-e8cf-11d3-9764-00c04f186933" name="bound stem" /> - <MorphType active="true" guid="d7f713e5-e8cf-11d3-9764-00c04f186933" name="root" /> - <MorphType active="true" guid="d7f713e8-e8cf-11d3-9764-00c04f186933" name="stem" /> - </MorphTypes> - <Category active="true" guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" name="Verb" /> - </Pattern> - <Action> - <ReplaceOpRefs> - <string>331e03b6-d7b5-4761-b013-e4086a94e478</string> - <string>4f67a199-3460-46c3-b37e-05b77296441f</string> - <string>f117c5e3-9bbe-4097-877d-904ba21587bb</string> - <string>331e03b6-d7b5-4761-b013-e4086a94e478</string> - </ReplaceOpRefs> - <Environments /> - <StemName active="true" guid="a177c679-0e2b-4632-9f01-6391c5a4a352" name="undergoes morphlowering" /> - </Action> - </Operation> - <Operation active="false"> - <Name>i to e before vowel length</Name> - <Description /> - <Pattern> - <Matcher> - <Type>End</Type> - <Pattern>i</Pattern> - <MatchCase>true</MatchCase> - <MatchDiacritics>false</MatchDiacritics> - </Matcher> - <MorphTypes> - <MorphType active="true" guid="d7f713e4-e8cf-11d3-9764-00c04f186933" name="bound root" /> - <MorphType active="true" guid="d7f713e7-e8cf-11d3-9764-00c04f186933" name="bound stem" /> - <MorphType active="true" guid="d7f713e5-e8cf-11d3-9764-00c04f186933" name="root" /> - <MorphType active="true" guid="d7f713e8-e8cf-11d3-9764-00c04f186933" name="stem" /> - </MorphTypes> - <Category active="true" guid="" name="" /> - </Pattern> - <Action> - <ReplaceOpRefs> - <string>58d326cf-d799-4851-a17c-9e1904a5929c</string> - </ReplaceOpRefs> - <Environments> - <Environment active="true" guid="b65aac70-d178-4ecc-a1a1-3b1f89683db0" name="/_ [vl]" /> - </Environments> - <StemName active="true" guid="" name="" /> - </Action> - </Operation> - <Operation active="true"> - <Name>new operation</Name> - <Description /> - <Pattern> - <Matcher> - <Type>End</Type> - <Pattern>u</Pattern> - <MatchCase>false</MatchCase> - <MatchDiacritics>false</MatchDiacritics> - </Matcher> - <MorphTypes> - <MorphType active="true" guid="d7f713e4-e8cf-11d3-9764-00c04f186933" name="bound root" /> - <MorphType active="true" guid="d7f713e7-e8cf-11d3-9764-00c04f186933" name="bound stem" /> - <MorphType active="true" guid="d7f713e5-e8cf-11d3-9764-00c04f186933" name="root" /> - <MorphType active="true" guid="d7f713e8-e8cf-11d3-9764-00c04f186933" name="stem" /> - </MorphTypes> - <Category active="true" guid="" name="" /> - </Pattern> - <Action> - <ReplaceOpRefs> - <string>76f68cb0-6b51-49a4-9a51-7ec53cfa9e67</string> - </ReplaceOpRefs> - <Environments /> - <StemName active="true" guid="" name="" /> - </Action> - </Operation> - </Operations> - <ReplaceOperations> - <Replace active="true" guid="2dabfec9-2247-4aa1-876e-48614e59e339" name="Hi there" mode="false" > - <From>this</From> - <To>that</To> - <Description>some</Description> - <WritingSystemRefs> - <string>qvm-ach</string> - <string>qvm-acl</string> - <string>qvm-akl</string> - <string>qvm-ame</string> - </WritingSystemRefs> - </Replace> - <Replace active="true" guid="331e03b6-d7b5-4761-b013-e4086a94e478" name="Remove proto-form marker" mode="false" > - <From>*</From> - <To /> - <Description /> - <WritingSystemRefs> - <string>qvm-ach</string> - <string>qvm-acl</string> - <string>qvm-akh</string> - <string>qvm-akl</string> - <string>qvm-ame</string> - </WritingSystemRefs> - </Replace> - <Replace active="true" guid="49b6ed6c-7f4e-4333-a3f1-836541aa0d73" name="" mode="true" > - <From>^(.*:)\..+$</From> - <To>$1</To> - <Description /> - <WritingSystemRefs> - <string>qvm-ach</string> - <string>qvm-acl</string> - <string>qvm-akh</string> - <string>qvm-akl</string> - <string>qvm-ame</string> - </WritingSystemRefs> - </Replace> - <Replace active="true" guid="e8521422-eb88-42ff-8d99-401852c4eaa4" name="" mode="false" > - <From>:</From> - <To /> - <Description /> - <WritingSystemRefs> - <string>qvm-ach</string> - <string>qvm-acl</string> - <string>qvm-akh</string> - <string>qvm-akl</string> - </WritingSystemRefs> - </Replace> - <Replace active="true" guid="39934fe7-ab3a-4269-a122-3306860b1a74" name="" mode="true" > - <From>[Uu]$|[Uu]\..+$</From> - <To>o</To> - <Description /> - <WritingSystemRefs> - <string>qvm-acl</string> - <string>qvm-akl</string> - </WritingSystemRefs> - </Replace> - <Replace active="true" guid="35109daa-9f6b-484c-9dd8-578ec84f1348" name="" mode="true" > - <From>^.+$</From> - <To /> - <Description /> - <WritingSystemRefs> - <string>qvm-ach</string> - <string>qvm-akh</string> - <string>qvm-ame</string> - </WritingSystemRefs> - </Replace> - <Replace active="true" guid="f117c5e3-9bbe-4097-877d-904ba21587bb" name="" mode="true" > - <From>[UI]$|[UI]\..+$</From> - <To>a</To> - <Description /> - <WritingSystemRefs> - <string>qvm-ach</string> - <string>qvm-acl</string> - <string>qvm-akh</string> - <string>qvm-akl</string> - <string>qvm-ame</string> - </WritingSystemRefs> - </Replace> - <Replace active="true" guid="58d326cf-d799-4851-a17c-9e1904a5929c" name="" mode="true" > - <From>i$</From> - <To>e</To> - <Description /> - <WritingSystemRefs> - <string>qvm-ach</string> - <string>qvm-acl</string> - <string>qvm-akh</string> - <string>qvm-akl</string> - <string>qvm-ame</string> - </WritingSystemRefs> - </Replace> - <Replace active="true" guid="4f67a199-3460-46c3-b37e-05b77296441f" name="k --> c / _ [ie]" mode="true" > - <From>k([^ie])</From> - <To>c$1</To> - <Description>Ortho change for ach and acl</Description> - <WritingSystemRefs> - <string>qvm-ach</string> - <string>qvm-acl</string> - </WritingSystemRefs> - </Replace> - <Replace active="true" guid="76f68cb0-6b51-49a4-9a51-7ec53cfa9e67" name="Final u --> o" mode="true" > - <From>u$</From> - <To>o</To> - <Description /> - <WritingSystemRefs> - <string>qvm-ach</string> - <string>qvm-acl</string> - <string>qvm-akh</string> - <string>qvm-akl</string> - <string>qvm-ame</string> - </WritingSystemRefs> - </Replace> - <Replace active="true" guid="af4729ca-f6a9-4ce3-9307-7a1b70b79a1d" name="Remove Spanish loan marker" mode="false" > - <From>+</From> - <To /> - <Description /> - <WritingSystemRefs> - <string>qvm-ach</string> - <string>qvm-acl</string> - <string>qvm-akh</string> - <string>qvm-akl</string> - <string>qvm-ame</string> - </WritingSystemRefs> - </Replace> - <Replace active="true" guid="cc50ddd5-9116-4c0e-9f99-f6ed2e06d9b2" name="ME long vowel" mode="true" > - <From>([aeiou]):</From> - <To>$1$1</To> - <Description /> - <WritingSystemRefs> - <string>qvm-ame</string> - </WritingSystemRefs> - </Replace> - </ReplaceOperations> - <WritingSystems> - <WritingSystem> - <Name>qvm-akh</Name> - <Handle>999000005</Handle> - </WritingSystem> - <WritingSystem> - <Name>qvm-acl</Name> - <Handle>999000004</Handle> - </WritingSystem> - <WritingSystem> - <Name>qvm-akl</Name> - <Handle>999000006</Handle> - </WritingSystem> - <WritingSystem> - <Name>qvm-ach</Name> - <Handle>999000003</Handle> - </WritingSystem> - <WritingSystem> - <Name>qvm-ame</Name> - <Handle>999000007</Handle> - </WritingSystem> - </WritingSystems> -</AllomorphGenerators> diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/AllomorphGenerators.cs b/Src/Utilities/AlloVarGen/AlloGenModel/AllomorphGenerators.cs deleted file mode 100644 index 6ca9967f18..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenModel/AllomorphGenerators.cs +++ /dev/null @@ -1,117 +0,0 @@ -// Copyright (c) 2022-2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Xml.Serialization; - -namespace SIL.AlloGenModel -{ - public class AllomorphGenerators - { - [XmlAttribute("dbVersion")] - public int DbVersion { get; set; } = 6; - - [XmlAttribute("applyTo")] - public int ApplyTo { get; set; } = -1; - public List<Operation> Operations { get; set; } = new List<Operation>(); - public List<Replace> ReplaceOperations { get; set; } = new List<Replace>(); - public List<WritingSystem> WritingSystems { get; set; } = new List<WritingSystem>(); - - public AllomorphGenerators() { } - - public bool ReplaceOpExists(Replace replace) - { - if (replace == null) - { - return false; - } - return ReplaceOperations.Contains(replace); - } - - public void AddReplaceOp(Replace replace) - { - if (replace != null) - { - if (ReplaceOpExists(replace)) - { - ReplaceOperations.Remove(replace); - } - ReplaceOperations.Add(replace); - } - } - - public void DeleteReplaceOp(Replace replace) - { - if (ReplaceOpExists(replace)) - { - DeleteReplaceOpRefs(replace); - ReplaceOperations.Remove(replace); - } - } - - private void DeleteReplaceOpRefs(Replace replace) - { - foreach (Operation op in Operations) - { - AlloGenModel.Action action = op.Action; - foreach (string replaceOpRef in action.ReplaceOpRefs.ToList()) - { - if (replaceOpRef == replace.Guid) - { - action.ReplaceOpRefs.Remove(replaceOpRef); - } - } - } - } - - public Replace FindReplaceOp(string guid) - { - Replace replace = ReplaceOperations.FirstOrDefault(r => r.Guid == guid); - return replace; - } - - public List<Operation> FindOperationsUsedByReplaceOp(Replace replace) - { - List<Operation> operations = new List<Operation>(); - operations = Operations.FindAll(op => op.Action.ReplaceOpRefs.Contains(replace.Guid)); - return operations; - } - - public Operation CreateNewOperation() - { - Operation op = new Operation(); - Operations.Add(op); - Replace newReplace = new Replace(); - if (WritingSystems != null) - { - foreach (WritingSystem ws in WritingSystems) - { - newReplace.WritingSystemRefs.Add(ws.Name); - } - } - ReplaceOperations.Add(newReplace); - op.Action.ReplaceOpRefs.Add(newReplace.Guid); - op.Pattern.SetDefaultMorphTypes(); - return op; - } - - public void DeleteEmptyReplaceOperationsFromAnOperation(Operation op) - { - if (op == null) - return; - foreach (string repOpRef in op.Action.ReplaceOpRefs) - { - Replace rep = ReplaceOperations.FirstOrDefault(r => r.Guid == repOpRef); - if (rep != null && rep.IsEmpty()) - { - ReplaceOperations.Remove(rep); - } - } - } - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/ApplyTo.cs b/Src/Utilities/AlloVarGen/AlloGenModel/ApplyTo.cs deleted file mode 100644 index 553351f925..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenModel/ApplyTo.cs +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright (c) 2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace SIL.AlloGenModel -{ - public class ApplyTo - { - public string Name { get; set; } = ""; - public int Id { get; set; } = -1; - - public ApplyTo(string name, int id) - { - Name = name; - Id = id; - } - - override public string ToString() - { - return Name; - } - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/Category.cs b/Src/Utilities/AlloVarGen/AlloGenModel/Category.cs deleted file mode 100644 index 725a81f82f..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenModel/Category.cs +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright (c) 2022 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace SIL.AlloGenModel -{ - public class Category : AlloGenGuid { } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/Constants.cs b/Src/Utilities/AlloVarGen/AlloGenModel/Constants.cs deleted file mode 100644 index cde0eb9860..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenModel/Constants.cs +++ /dev/null @@ -1,33 +0,0 @@ -// Copyright (c) 2026 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace SIL.AlloGenModel -{ - public static class Constants - { - public const string mtBoundRoot = "d7f713e4-e8cf-11d3-9764-00c04f186933"; - public const string mtBoundStem = "d7f713e7-e8cf-11d3-9764-00c04f186933"; - public const string mtCircumfix = "d7f713df-e8cf-11d3-9764-00c04f186933"; - public const string mtClitic = "c2d140e5-7ca9-41f4-a69a-22fc7049dd2c"; - public const string mtDiscontiguousPhrase = "0cc8c35a-cee9-434d-be58-5d29130fba5b"; - public const string mtEnclitic = "d7f713e1-e8cf-11d3-9764-00c04f186933"; - public const string mtInfix = "d7f713da-e8cf-11d3-9764-00c04f186933"; - public const string mtInfixingInterfix = "18d9b1c3-b5b6-4c07-b92c-2fe1d2281bd4"; - public const string mtParticle = "56db04bf-3d58-44cc-b292-4c8aa68538f4"; - public const string mtPhrase = "a23b6faa-1052-4f4d-984b-4b338bdaf95f"; - public const string mtPrefix = "d7f713db-e8cf-11d3-9764-00c04f186933"; - public const string mtPrefixingInterfix = "af6537b0-7175-4387-ba6a-36547d37fb13"; - public const string mtProclitic = "d7f713e2-e8cf-11d3-9764-00c04f186933"; - public const string mtRoot = "d7f713e5-e8cf-11d3-9764-00c04f186933"; - public const string mtStem = "d7f713e8-e8cf-11d3-9764-00c04f186933"; - public const string mtSuffix = "d7f713dd-e8cf-11d3-9764-00c04f186933"; - public const string mtSuffixingInterfix = "3433683d-08a9-4bae-ae53-2a7798f64068"; - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/Environment.cs b/Src/Utilities/AlloVarGen/AlloGenModel/Environment.cs deleted file mode 100644 index ecdaa4e9d2..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenModel/Environment.cs +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright (c) 2022 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace SIL.AlloGenModel -{ - public class Environment : AlloGenGuid { } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/Matcher.cs b/Src/Utilities/AlloVarGen/AlloGenModel/Matcher.cs deleted file mode 100644 index 5288016581..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenModel/Matcher.cs +++ /dev/null @@ -1,156 +0,0 @@ -// Copyright (c) 2022-2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using SIL.FieldWorks.Common.ViewsInterfaces; -using SIL.FieldWorks.Filters; -using SIL.LCModel.Core.Text; -using SIL.Utils; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Xml; - -namespace SIL.AlloGenModel -{ - public class Matcher - { - public MatcherType Type { get; set; } = MatcherType.Anywhere; - public string Pattern { get; set; } = ""; - public bool MatchCase { get; set; } = false; - public bool MatchDiacritics { get; set; } = false; - - public Matcher() { } - - public Matcher(MatcherType type) - { - Type = type; - } - - public Matcher Duplicate() - { - Matcher newMatcher = new Matcher(); - newMatcher.Type = Type; - newMatcher.Pattern = Pattern; - newMatcher.MatchCase = MatchCase; - newMatcher.MatchDiacritics = MatchDiacritics; - return newMatcher; - } - - public override bool Equals(Object obj) - { - //Check for null and compare run-time types. - if ((obj == null) || !this.GetType().Equals(obj.GetType())) - { - return false; - } - else - { - Matcher matcher = (Matcher)obj; - return (Type == matcher.Type) - && (Pattern == matcher.Pattern) - && (MatchCase == matcher.MatchCase) - && (MatchDiacritics == matcher.MatchDiacritics); - } - } - - public override int GetHashCode() - { - return Tuple.Create(Type, Pattern, MatchCase, MatchDiacritics).GetHashCode(); - } - - string GetMatcherTypeName() - { - StringBuilder sb = new StringBuilder(); - switch (Type) - { - case MatcherType.Begin: - sb.Append("Begin"); - break; - case MatcherType.End: - sb.Append("End"); - break; - case MatcherType.Exact: - sb.Append("Exact"); - break; - case MatcherType.RegularExpression: - sb.Append("RegExp"); - break; - default: - sb.Append("Anywhere"); - break; - } - sb.Append("Matcher"); - return sb.ToString(); - } - - public IMatcher GetFwMatcher(int ws, out string errorMessage) - { - errorMessage = ""; - IVwPattern fwPattern = CreateFwPattern(ws); - IMatcher fwMatcher = null; - if (Type == MatcherType.Begin) - fwMatcher = new BeginMatcher(fwPattern); - else if (Type == MatcherType.End) - fwMatcher = new EndMatcher(fwPattern); - else if (Type == MatcherType.Exact) - fwMatcher = new ExactMatcher(fwPattern); - else if (Type == MatcherType.RegularExpression) - { - fwMatcher = new RegExpMatcher(fwPattern); - if (!fwMatcher.IsValid()) - { - errorMessage = fwMatcher.ErrorMessage(); - fwMatcher = null; - } - } - else - fwMatcher = new AnywhereMatcher(fwPattern); - return fwMatcher; - } - - IVwPattern CreateFwPattern(int ws) - { - IVwPattern fwPattern = VwPatternClass.Create(); - fwPattern.MatchCase = MatchCase; - fwPattern.MatchDiacritics = MatchDiacritics; - fwPattern.MatchOldWritingSystem = false; - fwPattern.Pattern = TsStringUtils.MakeString(Pattern, ws); - switch (Type) - { - case MatcherType.Anywhere: - fwPattern.MatchWholeWord = false; - fwPattern.UseRegularExpressions = false; - break; - case MatcherType.Begin: - fwPattern.MatchWholeWord = false; - fwPattern.UseRegularExpressions = false; - break; - case MatcherType.End: - fwPattern.MatchWholeWord = false; - fwPattern.UseRegularExpressions = false; - break; - case MatcherType.Exact: - fwPattern.MatchWholeWord = true; - fwPattern.UseRegularExpressions = false; - break; - case MatcherType.RegularExpression: - fwPattern.MatchWholeWord = false; - fwPattern.UseRegularExpressions = true; - break; - } - return fwPattern; - } - } - - public enum MatcherType - { - Anywhere, - Begin, - End, - Exact, - RegularExpression, - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/MorphType.cs b/Src/Utilities/AlloVarGen/AlloGenModel/MorphType.cs deleted file mode 100644 index 9b5c1d1193..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenModel/MorphType.cs +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright (c) 2022 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace SIL.AlloGenModel -{ - public class MorphType : AlloGenGuid { } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/Operation.cs b/Src/Utilities/AlloVarGen/AlloGenModel/Operation.cs deleted file mode 100644 index 50a328c6dc..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenModel/Operation.cs +++ /dev/null @@ -1,63 +0,0 @@ -// Copyright (c) 2022-2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Xml.Serialization; - -namespace SIL.AlloGenModel -{ - public class Operation : AlloGenBase - { - public string Name { get; set; } = "new operation"; - public string Description { get; set; } = ""; - public Pattern Pattern { get; set; } = new Pattern(); - public Action Action { get; set; } = new Action(); - - public Operation() { } - - public Operation Duplicate() - { - Operation newOp = new Operation(); - newOp.Action = Action.Duplicate(); - newOp.Active = Active; - newOp.Description = Description; - newOp.Name = Name; - newOp.Pattern = Pattern.Duplicate(); - return newOp; - } - - override public string ToString() - { - return Name; - } - - public override bool Equals(Object obj) - { - if (!base.Equals(obj)) - return false; - - //Check for null and compare run-time types. - if ((obj == null) || !this.GetType().Equals(obj.GetType())) - return false; - else - { - Operation op = (Operation)obj; - return (Name == op.Name) - && (Description == op.Description) - && (Pattern.Equals(op.Pattern)) - && (Action.Equals(op.Action)); - } - } - - public override int GetHashCode() - { - int result = base.GetHashCode(); - return result + Tuple.Create(Name, Description, Pattern, Action).GetHashCode(); - } - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/Pattern.cs b/Src/Utilities/AlloVarGen/AlloGenModel/Pattern.cs deleted file mode 100644 index 017f55117c..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenModel/Pattern.cs +++ /dev/null @@ -1,95 +0,0 @@ -// Copyright (c) 2022 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Xml.Serialization; - -namespace SIL.AlloGenModel -{ - public class Pattern - { - public Matcher Matcher { get; set; } = new Matcher(); - public List<MorphType> MorphTypes { get; set; } - public Category Category { get; set; } = new Category(); - - public Pattern() - { - MorphTypes = new List<MorphType>(); - } - - public void SetDefaultMorphTypes() - { - MorphType mtBoundRoot = CreateMorphType( - "bound root", - Constants.mtBoundRoot - ); - MorphTypes.Add(mtBoundRoot); - MorphType mtBoundStem = CreateMorphType( - "bound stem", - Constants.mtBoundStem - ); - MorphTypes.Add(mtBoundStem); - MorphType mtRoot = CreateMorphType("root", Constants.mtRoot); - MorphTypes.Add(mtRoot); - MorphType mtStem = CreateMorphType("stem", Constants.mtStem); - MorphTypes.Add(mtStem); - } - - private MorphType CreateMorphType(string name, string guid) - { - MorphType morphType = new MorphType(); - morphType.Name = name; - morphType.Guid = guid; - morphType.Active = true; - return morphType; - } - - public Pattern Duplicate() - { - var newPattern = new Pattern(); - newPattern.Matcher = Matcher.Duplicate(); - var newCat = new Category(); - newCat.Active = Category.Active; - newCat.Guid = Category.Guid; - newCat.Name = Category.Name; - newPattern.Category = newCat; - var newMTs = new List<MorphType>(); - foreach (MorphType mt in MorphTypes) - { - var newMT = new MorphType(); - newMT.Active = mt.Active; - newMT.Guid = mt.Guid; - newMT.Name = mt.Name; - newMTs.Add(newMT); - } - newPattern.MorphTypes = newMTs; - return newPattern; - } - - public override bool Equals(Object obj) - { - //Check for null and compare run-time types. - if ((obj == null) || !this.GetType().Equals(obj.GetType())) - { - return false; - } - else - { - Pattern pat = (Pattern)obj; - return (Matcher.Equals(pat.Matcher)) - && (MorphTypes.SequenceEqual(pat.MorphTypes)) - && (Category.Equals(pat.Category)); - } - } - - public override int GetHashCode() - { - return Tuple.Create(Matcher, MorphTypes, Category).GetHashCode(); - } - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/PublishEntryInItem.cs b/Src/Utilities/AlloVarGen/AlloGenModel/PublishEntryInItem.cs deleted file mode 100644 index 7e42b6d0db..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenModel/PublishEntryInItem.cs +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright (c) 2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace SIL.AlloGenModel -{ - public class PublishEntryInItem : AlloGenGuid { } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/Replace.cs b/Src/Utilities/AlloVarGen/AlloGenModel/Replace.cs deleted file mode 100644 index 3cfec698ed..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenModel/Replace.cs +++ /dev/null @@ -1,107 +0,0 @@ -// Copyright (c) 2022-2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Xml.Serialization; - -namespace SIL.AlloGenModel -{ - public class Replace : AlloGenGuid - { - // mode: false = plain; true = regular expression - [XmlAttribute("mode")] - public bool Mode { get; set; } = false; - public string From { get; set; } = ""; - public string To { get; set; } = ""; - public List<string> WritingSystemRefs { get; set; } = new List<string>(); - public string Description { get; set; } = ""; - - public Replace() - { - if (Guid == "") - { // make sure it has a value - Guid = System.Guid.NewGuid().ToString(); - } - } - - public Replace Duplicate() - { - Replace newReplace = new Replace(); - newReplace.From = From; - newReplace.Mode = Mode; - newReplace.To = To; - newReplace.Active = Active; - newReplace.Description = Description; - newReplace.Name = Name; - List<string> newWritingSystems = new List<string>(); - foreach (string ws in WritingSystemRefs) - { - newWritingSystems.Add(ws); - } - newReplace.WritingSystemRefs = newWritingSystems; - return newReplace; - } - - public bool IsEmpty() - { - if (!String.IsNullOrEmpty(From)) - return false; - if (!String.IsNullOrEmpty(Name)) - return false; - if (!String.IsNullOrEmpty(Description)) - return false; - return true; - } - - override public string ToString() - { - StringBuilder sb = new StringBuilder(); - sb.Append(Name); - sb.Append(": "); - sb.Append("Replace '"); - sb.Append(From); - sb.Append("' with '"); - sb.Append(To); - sb.Append("' for"); - foreach (string ws in WritingSystemRefs) - { - sb.Append(" "); - sb.Append(ws); - } - sb.Append("."); - return sb.ToString(); - } - - public override bool Equals(Object obj) - { - //Check for null and compare run-time types. - if ((obj == null) || !this.GetType().Equals(obj.GetType())) - { - return false; - } - else - { - Replace replace = (Replace)obj; - return base.Equals(obj) - && (Description == replace.Description) - && (Mode == replace.Mode) - && (From == replace.From) - && (To == replace.To) - && (WritingSystemRefs.SequenceEqual(replace.WritingSystemRefs)); - } - } - - public override int GetHashCode() - { - int result = - base.GetHashCode() - + Tuple.Create(Description, Mode, WritingSystemRefs).GetHashCode(); - return result + Tuple.Create(From, To).GetHashCode(); - } - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/StemName.cs b/Src/Utilities/AlloVarGen/AlloGenModel/StemName.cs deleted file mode 100644 index dfbd4413c8..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenModel/StemName.cs +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright (c) 2022 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace SIL.AlloGenModel -{ - public class StemName : AlloGenGuid { } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/VariantType.cs b/Src/Utilities/AlloVarGen/AlloGenModel/VariantType.cs deleted file mode 100644 index 24e452f087..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenModel/VariantType.cs +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright (c) 2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace SIL.AlloGenModel -{ - public class VariantType : AlloGenGuid { } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/WritingSystem.cs b/Src/Utilities/AlloVarGen/AlloGenModel/WritingSystem.cs deleted file mode 100644 index e2556476d5..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenModel/WritingSystem.cs +++ /dev/null @@ -1,69 +0,0 @@ -// Copyright (c) 2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using SIL.LCModel.DomainServices; -using System; -using System.Collections.Generic; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Xml.Serialization; - -namespace SIL.AlloGenModel -{ - public class WritingSystem - { - public string Name { get; set; } = ""; - public int Handle { get; set; } = -1; - - [XmlIgnore] - public Font Font { get; set; } - - [XmlIgnore] - public FontInfo FontInfo { get; set; } - - [XmlIgnore] - public Color Color { get; set; } - - public WritingSystem Duplicate() - { - WritingSystem newWS = new WritingSystem(); - newWS.Name = Name; - newWS.Handle = Handle; - newWS.Font = Font; - newWS.FontInfo = FontInfo; - newWS.Color = Color; - return newWS; - } - - public override bool Equals(Object obj) - { - //Check for null and compare run-time types. - if ((obj == null) || !this.GetType().Equals(obj.GetType())) - { - return false; - } - else - { - WritingSystem ws = (WritingSystem)obj; - return (Name == ws.Name) - && (Handle == ws.Handle) - && (Font == ws.Font) - && (FontInfo == ws.FontInfo) - && (Color == ws.Color); - } - } - - public override int GetHashCode() - { - return Tuple.Create(Name, Handle, Font, FontInfo, Color).GetHashCode(); - } - - override public string ToString() - { - return Name; - } - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenModel/WritingSystemName.cs b/Src/Utilities/AlloVarGen/AlloGenModel/WritingSystemName.cs deleted file mode 100644 index 8d38085183..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenModel/WritingSystemName.cs +++ /dev/null @@ -1,31 +0,0 @@ -// Copyright (c) 2022-2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace SIL.AlloGenModel -{ - public class WritingSystemName - { - public string Name { get; set; } = ""; - - public WritingSystemName() { } - - public WritingSystemName(string name) - { - Name = name; - } - - public WritingSystemName Duplicate() - { - WritingSystemName newWS = new WritingSystemName(); - newWS.Name = Name; - return newWS; - } - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenDataMigrations/DBVersion3To4.xslt b/Src/Utilities/AlloVarGen/AlloGenService/AlloGenDataMigrations/DBVersion3To4.xslt deleted file mode 100644 index 5530555f36..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenDataMigrations/DBVersion3To4.xslt +++ /dev/null @@ -1,71 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- transform to convert Allomorph Generator file from db version 3 to 4 ---> -<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> - <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/> - <xsl:template match="@* | node()"> - <xsl:copy> - <xsl:apply-templates select="@*"/> - <xsl:apply-templates/> - </xsl:copy> - </xsl:template> - <!-- - increment dbversion - --> - <xsl:template match="@dbVersion[.='3']"> - <xsl:attribute name="dbVersion"> - <xsl:text>4</xsl:text> - </xsl:attribute> - </xsl:template> - <!-- - Change name from attribute to element - --> - <xsl:template match="Category"> - <Category active="{@active}" guid="{@guid}"> - <Name> - <xsl:value-of select="@name"/> - </Name> - </Category> - </xsl:template> - <xsl:template match="Environment"> - <Environment active="{@active}" guid="{@guid}"> - <Name> - <xsl:value-of select="@name"/> - </Name> - </Environment> - </xsl:template> - <xsl:template match="MorphType"> - <MorphType active="{@active}" guid="{@guid}"> - <Name> - <xsl:value-of select="@name"/> - </Name> - </MorphType> - </xsl:template> - <xsl:template match="Replace"> - <Replace active="{@active}" guid="{@guid}" mode="{@mode}"> - <Name> - <xsl:value-of select="@name"/> - </Name> - <xsl:apply-templates/> - </Replace> - </xsl:template> - <xsl:template match="StemName"> - <StemName active="{@active}" guid="{@guid}"> - <Name> - <xsl:value-of select="@name"/> - </Name> - </StemName> - </xsl:template> - <!-- - Remove ReplaceOps from Action - --> - <xsl:template match="ReplaceOps[parent::Action]"/> - <!-- - Remove hard-coded writing system booleans from Replace - --> - <xsl:template match="@ach[parent::Replace]"/> - <xsl:template match="@acl[parent::Replace]"/> - <xsl:template match="@akh[parent::Replace]"/> - <xsl:template match="@akl[parent::Replace]"/> - <xsl:template match="@ame[parent::Replace]"/> -</xsl:stylesheet> diff --git a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenService.csproj b/Src/Utilities/AlloVarGen/AlloGenService/AlloGenService.csproj deleted file mode 100644 index 22e7037004..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenService.csproj +++ /dev/null @@ -1,45 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project Sdk="Microsoft.NET.Sdk"> - <PropertyGroup> - <AssemblyName>AlloGenService</AssemblyName> - <RootNamespace>SIL.AlloGenService</RootNamespace> - <TargetFramework>net48</TargetFramework> - <OutputType>Library</OutputType> <NoWarn>168,169,219,414,649,1635,1702,1701</NoWarn> - <GenerateAssemblyInfo>false</GenerateAssemblyInfo> - <Prefer32Bit>false</Prefer32Bit> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> - <DefineConstants>DEBUG;TRACE</DefineConstants> - <DebugSymbols>true</DebugSymbols> - <Optimize>false</Optimize> - <DebugType>portable</DebugType> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> - <DefineConstants>TRACE</DefineConstants> - <DebugSymbols>true</DebugSymbols> - <Optimize>true</Optimize> - <DebugType>portable</DebugType> - </PropertyGroup> - <ItemGroup> - <PackageReference Include="Newtonsoft.Json" /> - <PackageReference Include="SIL.Core" /> - <PackageReference Include="System.ValueTuple" /> - </ItemGroup> - <ItemGroup> - <Reference Include="netstandard" /> - <Reference Include="System.Xml.Linq" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="../AlloGenModel/AlloGenModel.csproj" /> - <ProjectReference Include="../../../Common/FwUtils/FwUtils.csproj" /> - <ProjectReference Include="../../XMLUtils/XMLUtils.csproj" /> - </ItemGroup> - <ItemGroup> - <Compile Remove="AlloGenServiceTests/**" /> - <EmbeddedResource Remove="AlloGenServiceTests\**" /> - <None Remove="AlloGenServiceTests\**" /> - <Compile Include="..\..\..\CommonAssemblyInfo.cs"> - <Link>Properties\CommonAssemblyInfo.cs</Link> - </Compile> - </ItemGroup> -</Project> \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/AlloGenTestBase.cs b/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/AlloGenTestBase.cs deleted file mode 100644 index ad5f08a69a..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/AlloGenTestBase.cs +++ /dev/null @@ -1,34 +0,0 @@ -// Copyright (c) 2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using NUnit.Framework; -using SIL.AlloGenService; -using SIL.FieldWorks.Common.FwUtils; -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Reflection; -using System.Text; -using System.Threading.Tasks; - -namespace SIL.AlloGenServiceTests -{ - [TestFixture] - public class AlloGenTestBase - { - protected XmlBackEndProvider provider = new XmlBackEndProvider(); - protected string TestDataDir { get; set; } - protected string AlloGenFile { get; set; } - protected string AlloGenExpected { get; set; } - protected string ExpectedFileName = "AlloGenExpected.xml"; - - [SetUp] - public void Setup() - { - TestDataDir = Path.Combine(FwDirectoryFinder.SourceDirectory, "Utilities", "AlloVarGen", "AlloGenService", "AlloGenServiceTests", "TestData"); - AlloGenExpected = Path.Combine(TestDataDir, ExpectedFileName); - } - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/AllomorphCreatorTests.cs b/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/AllomorphCreatorTests.cs deleted file mode 100644 index 1062c9a934..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/AllomorphCreatorTests.cs +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright (c) 2022-2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using NUnit.Framework; -using SIL.AlloGenService; -using SIL.LCModel; -using SIL.LCModel.Core.WritingSystems; -using SIL.LCModel.Infrastructure; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace SIL.AlloGenServiceTests -{ - [TestFixture] - class AllomorphCreatorTests : FwTestBase - { - protected AllomorphCreator ac; - - [SetUp] - override public void Setup() - { - base.Setup(); - ac = new AllomorphCreator(Cache, writingSystems); - } - - [Test] - public void AddAllomorphToEntryTest() - { - Assert.NotNull(myCache); - // following gives a "not in the right state to register a change" message - // Not sure what to do; we'd have to manuall create an entry with the five vernacular writing systems - //NonUndoableUnitOfWorkHelper.DoUsingNewOrCurrentUOW(Cache.ActionHandlerAccessor, () => - //{ - // ILexEntry entry = pm.SingleAllomorphs.ElementAt(96); - // Assert.NotNull(entry); - // Assert.AreEqual(0, entry.AlternateFormsOS.Count); - // Console.WriteLine("entry cf='" + entry.CitationForm.VernacularDefaultWritingSystem.Text); - // string akh = "chillinyakh"; - // string acl = "chillinyacl"; - // string akl = "chillinyakl"; - // string ach = "chillinyach"; - // string ame = "chillinyaa"; - // IMoStemAllomorph form = ac.CreateAllomorph(entry, akh, acl, akl, ach, ame); - // Assert.NotNull(form); - // Assert.AreEqual(1, entry.AlternateFormsOS.Count); - // Assert.AreEqual(akh, form.Form.get_String(wsForAkh)); - // Assert.AreEqual(acl, form.Form.get_String(wsForAcl)); - // Assert.AreEqual(akl, form.Form.get_String(wsForAkl)); - // Assert.AreEqual(ach, form.Form.get_String(wsForAch)); - // Assert.AreEqual(ame, form.Form.get_String(wsForAme)); - - //}); - } - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/DatabaseMigratorTest.cs b/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/DatabaseMigratorTest.cs deleted file mode 100644 index f276d69e5b..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/DatabaseMigratorTest.cs +++ /dev/null @@ -1,63 +0,0 @@ -// Copyright (c) 2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Reflection; -using System.Text; -using System.Threading.Tasks; -using NUnit.Framework; -using SIL.AlloGenModel; -using SIL.AlloGenService; - -namespace SIL.AlloGenServiceTests -{ - [TestFixture] - class DatabaseMigratorTest : AlloGenTestBase - { - string AlloGenProduced { get; set; } - DatabaseMigrator migrator = new DatabaseMigrator(); - - [Test] - public void Migrate03to04Test() - { - AlloGenFile = Path.Combine(TestDataDir, "AlloGenVersion03.xml"); - AlloGenExpected = Path.Combine(TestDataDir, "AlloGenVersion04.xml"); - migrator.LatestVersion = 4; - Assert.AreEqual(4, migrator.LatestVersion); - string newAlloGen = migrator.Migrate(AlloGenFile); - using (var streamReader = new StreamReader(AlloGenExpected, Encoding.UTF8)) - { - AlloGenExpected = streamReader.ReadToEnd().Replace("\r", ""); - } - using (var streamReader = new StreamReader(newAlloGen, Encoding.UTF8)) - { - AlloGenProduced = streamReader.ReadToEnd().Replace("\r", ""); - } - Assert.AreEqual(AlloGenExpected, AlloGenProduced); - } - - [Test] - public void CreateFileNameTest() - { - string fileName = Path.Combine(TestDataDir, "AlloGenVersion01.xml"); - string backup = migrator.CreateBackupFileName(fileName); - Assert.AreEqual( - fileName.Substring(0, fileName.Length - 3), - backup.Substring(0, backup.Length - 7) // we had to use .xml for commit, so skip that here. - ); - Assert.AreEqual("bak", backup.Substring(backup.Length - 3)); - - fileName = Path.Combine(TestDataDir, "AlloGenVersion01.myext"); - backup = migrator.CreateBackupFileName(fileName); - Assert.AreEqual( - fileName.Substring(0, fileName.Length), - backup.Substring(0, backup.Length - 4) - ); - Assert.AreEqual(".bak", backup.Substring(backup.Length - 4)); - } - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/FLExCustomFieldsObtainerTest.cs b/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/FLExCustomFieldsObtainerTest.cs deleted file mode 100644 index 4828508a52..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/FLExCustomFieldsObtainerTest.cs +++ /dev/null @@ -1,37 +0,0 @@ -// Copyright (c) 2022-2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using NUnit.Framework; -using SIL.AlloGenService; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using static SIL.AlloGenService.FLExCustomFieldsObtainer; - -namespace SIL.AlloGenServiceTests -{ - [TestFixture] - class FLExCustomFieldsObtainerTest : FwTestBase - { - [Test] - public void GetListOfCustomFieldsTest() - { - Assert.NotNull(myCache); - FLExCustomFieldsObtainer obtainer = new FLExCustomFieldsObtainer(myCache); - List<FDWrapper> customFields = obtainer.CustomFields; - Assert.NotNull(customFields); - //foreach (FDWrapper fdw in customFields) - //{ - // Console.WriteLine("fd=" + fdw.Fd.Name); - //} - Assert.AreEqual(2, customFields.Count()); - var fd = customFields.FirstOrDefault(fdw => fdw.Fd.Name == "lx"); - Assert.NotNull(fd); - fd = customFields.FirstOrDefault(fdw => fdw.Fd.Name == "SFMs"); - Assert.NotNull(fd); - } - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/FwTestBase.cs b/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/FwTestBase.cs deleted file mode 100644 index 63c087de0c..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/FwTestBase.cs +++ /dev/null @@ -1,105 +0,0 @@ -// Copyright (c) 2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using NUnit.Framework; -using SIL.AlloGenModel; -using SIL.AlloGenService; -using SIL.FieldWorks.Common.FwUtils; -using SIL.LCModel; -using SIL.LCModel.Core.WritingSystems; -using SIL.WritingSystems; -using System; -using System.Collections.Generic; -using System.Drawing; -using System.IO; -using System.Linq; -using System.Reflection; -using System.Text; -using System.Threading.Tasks; - -namespace SIL.AlloGenServiceTests -{ - public class FwTestBase : MemoryOnlyBackendProviderTestBase - { - protected string TestDataDir { get; set; } - protected string FieldWorksTestFile { get; set; } - protected LcmCache myCache { get; set; } - - // Following three needed to get cache - protected ILcmUI m_ui; - protected string m_projectsDirectory; - protected ILcmDirectories m_lcmDirectories; - - protected XmlBackEndProvider provider = new XmlBackEndProvider(); - protected string AlloGenExpected { get; set; } - protected AllomorphGenerators allomorphGenerators; - protected Operation operation; - protected Pattern pattern { get; set; } - protected PatternMatcher patternMatcher { get; set; } - protected List<WritingSystem> writingSystems = new List<WritingSystem>(); - - public override void FixtureSetup() - { - if (!Sldr.IsInitialized) - Sldr.Initialize(); - base.FixtureSetup(); - m_projectsDirectory = Path.Combine(Path.GetTempPath(), Path.GetRandomFileName()); - Directory.CreateDirectory(m_projectsDirectory); - m_ui = new DummyLcmUI(); - m_lcmDirectories = new TestLcmDirectories(m_projectsDirectory); - CreateWritingSystemList(); - } - - protected void CreateWritingSystemList() - { - var styles = Cache.LangProject.StylesOC.ToDictionary(style => style.Name); - IStStyle normal = Cache.LangProject.StylesOC.FirstOrDefault( - style => style.Name == "Normal" - ); - if (normal != null) - { - SIL.FieldWorks.FwCoreDlgControls.StyleInfo styleInfo = - new SIL.FieldWorks.FwCoreDlgControls.StyleInfo(normal); - IList<CoreWritingSystemDefinition> vernWses = Cache - .LangProject - .CurrentVernacularWritingSystems; - foreach (CoreWritingSystemDefinition def in vernWses) - { - float fontSize = Math.Max(def.DefaultFontSize, 10); - WritingSystem ws = new WritingSystem(); - ws.Handle = def.Handle; - ws.Font = new Font(def.DefaultFontName, fontSize); - ws.FontInfo = styleInfo.FontInfoForWs(def.Handle); - ws.Color = ws.FontInfo.FontColor.Value; - writingSystems.Add(ws); - } - } - } - - [SetUp] - virtual public void Setup() - { - TestDataDir = Path.Combine(FwDirectoryFinder.SourceDirectory, "Utilities", "AlloVarGen", "AlloGenService", "AlloGenServiceTests", "TestData"); - FieldWorksTestFile = Path.Combine(TestDataDir, "Quechua MYL CausDeriv.fwdata"); - AlloGenExpected = Path.Combine(TestDataDir, "AlloGenExpected.xml"); - - var projectId = new TestProjectId(BackendProviderType.kXML, FieldWorksTestFile); - // following came from LcmCacheTests.cs - myCache = LcmCache.CreateCacheFromExistingData( - projectId, - "en", - m_ui, - m_lcmDirectories, - new LcmSettings(), - new DummyProgressDlg() - ); - - provider.LoadDataFromFile(AlloGenExpected); - allomorphGenerators = provider.AlloGens; - operation = allomorphGenerators.Operations[0]; - pattern = operation.Pattern; - patternMatcher = new PatternMatcher(myCache, allomorphGenerators); - } - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/PatternMatcherTest.cs b/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/PatternMatcherTest.cs deleted file mode 100644 index 0c5416a9f4..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/PatternMatcherTest.cs +++ /dev/null @@ -1,80 +0,0 @@ -// Copyright (c) 2022-2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using NUnit.Framework; -using SIL.AlloGenModel; -using SIL.AlloGenService; - -namespace SIL.AlloGenServiceTests -{ - [TestFixture] - class PatternMatcherTest : FwTestBase - { - [Test] - public void LoadFWDatabaseTest() - { - Assert.NotNull(myCache); - var lexEntries = myCache.LangProject.LexDbOA.Entries; - Assert.AreEqual(4530, lexEntries.Count()); - var lexEntriesWithOneAllomorph = lexEntries.Where(e => e.AllAllomorphs.Count() == 1); - Assert.AreEqual(4480, lexEntriesWithOneAllomorph.Count()); - } - - [Test] - public void LexEntriesPerMorphTypesTest() - { - var lexEntriesPerMorphTypes = patternMatcher.MatchMorphTypes( - patternMatcher.EntriesWithNoAllomorphs, - pattern - ); - Assert.AreEqual(4360, lexEntriesPerMorphTypes.Count()); - } - - [Test] - public void LexEntriesPerCategoriesTest() - { - // Verb - pattern.Category.Guid = "86ff66f6-0774-407a-a0dc-3eeaf873daf7"; - var lexEntriesPerCategory = patternMatcher.MatchCategory( - patternMatcher.EntriesWithNoAllomorphs, - pattern - ); - Assert.AreEqual(1491, lexEntriesPerCategory.Count()); - // transitive verb - pattern.Category.Guid = "54712931-442f-42d5-8634-f12bd2e310ce"; - lexEntriesPerCategory = patternMatcher.MatchCategory( - patternMatcher.EntriesWithNoAllomorphs, - pattern - ); - Assert.AreEqual(664, lexEntriesPerCategory.Count()); - // Intranitive verb - pattern.Category.Guid = "4459ff09-9ee0-4b50-8787-ae40fd76d3b7"; - lexEntriesPerCategory = patternMatcher.MatchCategory( - patternMatcher.EntriesWithNoAllomorphs, - pattern - ); - Assert.AreEqual(827, lexEntriesPerCategory.Count()); - } - - // Cannot get IVwPattern to work with tester - //[Test] - //public void LexEntriesPerMatchStringTest() - //{ - // var lexEntriesPerMatchString = pm.MatchMatchString(pm.SingleAllomorphs); - // Assert.AreEqual(1234, lexEntriesPerMatchString.Count()); - //} - // Cannot get IVwPattern to work with tester - //[Test] - //public void LexEntriesWithAllosPerPatternTest() - //{ - // var lexEntriesWithAllosThatDoNotMatch = patternMatcher.MatchEntriesWithAllosPerPattern(operation, pattern); - // Assert.AreEqual(2, lexEntriesWithAllosThatDoNotMatch.Count()); - //} - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/ReplacerTests.cs b/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/ReplacerTests.cs deleted file mode 100644 index 4edcacc9a0..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/ReplacerTests.cs +++ /dev/null @@ -1,89 +0,0 @@ -// Copyright (c) 2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using NUnit.Framework; -using SIL.AlloGenModel; -using SIL.AlloGenService; -using SIL.FieldWorks.Common.FwUtils; -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Reflection; -using System.Text; -using System.Threading.Tasks; - -namespace SIL.AlloGenServiceTests -{ - public class ReplacerTests - { - XmlBackEndProvider provider = new XmlBackEndProvider(); - string TestDataDir { get; set; } - string AlloGenFile { get; set; } - string AlloGenExpected { get; set; } - Replacer replacer { get; set; } - List<WritingSystem> writingSystems = new List<WritingSystem>(); - - [SetUp] - public void Setup() - { - TestDataDir = Path.Combine(FwDirectoryFinder.SourceDirectory, "Utilities", "AlloVarGen", "AlloGenService", "AlloGenServiceTests", "TestData"); - AlloGenExpected = Path.Combine(TestDataDir, "AlloGenReplace.xml"); - } - - [Test] - public void ReplaceTest() - { - provider.LoadDataFromFile(AlloGenExpected); - AllomorphGenerators allomorphGenerators = provider.AlloGens; - Assert.NotNull(allomorphGenerators); - Operation operation = allomorphGenerators.Operations[0]; - replacer = new Replacer(allomorphGenerators.ReplaceOperations); - writingSystems = allomorphGenerators.WritingSystems; - string input = ""; - compareResult(input, "\u00A0", writingSystems[0]); - compareResult(input, "\u00A0", writingSystems[1]); - compareResult(input, "\u00A0", writingSystems[2]); - compareResult(input, "\u00A0", writingSystems[3]); - compareResult(input, "\u00A0", writingSystems[4]); - input = "*a:"; - compareResult(input, "a", writingSystems[0]); - compareResult(input, "a", writingSystems[1]); - compareResult(input, "a", writingSystems[2]); - compareResult(input, "a", writingSystems[3]); - //{ 74D68073 - 0CA7 - 4EBE - B3EC - 9D4BFB4D8FFF} - compareResult(input, "aa", writingSystems[4]); - input = "*arka:"; - compareResult(input, "arka", writingSystems[0]); - compareResult(input, "arka", writingSystems[1]); - compareResult(input, "arka", writingSystems[2]); - compareResult(input, "arka", writingSystems[3]); - compareResult(input, "arkaa", writingSystems[4]); - input = "*chillinya:"; - compareResult(input, "chillinya", writingSystems[0]); - compareResult(input, "chillinya", writingSystems[1]); - compareResult(input, "chillinya", writingSystems[2]); - compareResult(input, "chillinya", writingSystems[3]); - compareResult(input, "chillinyaa", writingSystems[4]); - input = "*yarqa:.v2"; - compareResult(input, "yarqa", writingSystems[0]); - compareResult(input, "yarqa", writingSystems[1]); - compareResult(input, "yarqa", writingSystems[2]); - compareResult(input, "yarqa", writingSystems[3]); - compareResult(input, "yarqaa", writingSystems[4]); - input = "+yusulpa:"; - compareResult(input, "yusulpa", writingSystems[0]); - compareResult(input, "yusulpa", writingSystems[1]); - compareResult(input, "yusulpa", writingSystems[2]); - compareResult(input, "yusulpa", writingSystems[3]); - compareResult(input, "yusulpaa", writingSystems[4]); - } - - private void compareResult(string input, string expected, WritingSystem ws) - { - string result = replacer.ApplyReplaceOpToOneWS(input, ws.Name); - Assert.AreEqual(expected, result); - } - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/TestData/AlloGenExpected.xml b/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/TestData/AlloGenExpected.xml deleted file mode 100644 index f6ca608453..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/TestData/AlloGenExpected.xml +++ /dev/null @@ -1,127 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<AllomorphGenerators xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" dbVersion="6" applyTo="0"> - <Operations> - <Operation active="true"> - <Name>foreshortening</Name> - <Description>Add allomorphs for entries which undergo foreshortening</Description> - <Pattern> - <Matcher> - <Type>RegularExpression</Type> - <Pattern>:$|:\..+$</Pattern> - <MatchCase>true</MatchCase> - <MatchDiacritics>false</MatchDiacritics> - </Matcher> - <MorphTypes> - <MorphType active="true" guid="d7f713e4-e8cf-11d3-9764-00c04f186933"> - <Name>bound root</Name> - </MorphType> - <MorphType active="true" guid="d7f713e7-e8cf-11d3-9764-00c04f186933"> - <Name>bound stem</Name> - </MorphType> - <MorphType active="true" guid="d7f713e5-e8cf-11d3-9764-00c04f186933"> - <Name>root</Name> - </MorphType> - <MorphType active="true" guid="d7f713e8-e8cf-11d3-9764-00c04f186933"> - <Name>stem</Name> - </MorphType> - </MorphTypes> - <Category active="true" guid="54712931-442f-42d5-8634-f12bd2e310ce"> - <Name>Transitive verb</Name> - </Category> - </Pattern> - <Action> - <ReplaceOpRefs> - <string>5e8b9b79-0269-4dee-bfb0-be8ed4f4dc5d</string> - <string>34e77406-d2fe-4526-9bf9-3bc8fa653190</string> - <string>0f853476-407d-40e9-a8f3-803792f4f83e</string> - <string>4c3f43c6-f130-4767-9a5a-f2a93b1c6222</string> - </ReplaceOpRefs> - <Environments> - <Environment active="true" guid="d7f7123-e8cf-11d3-9733-00c04f186933"> - <Name>/ _ #</Name> - </Environment> - <Environment active="true" guid="d7f7456-e8cf-11d3-9733-00c04f186933"> - <Name>/ ([C])[C]_ [V]</Name> - </Environment> - </Environments> - <StemName active="true" guid="d2cf436-e8cf-11d3-9733-00c04f186933"> - <Name>no lowering</Name> - </StemName> - <VariantTypes /> - <ShowMinorEntry>true</ShowMinorEntry> - <PublishEntryInItems /> - </Action> - </Operation> - </Operations> - <ReplaceOperations> - <Replace active="true" guid="5e8b9b79-0269-4dee-bfb0-be8ed4f4dc5d" mode="false"> - <Name /> - <From>*</From> - <To /> - <WritingSystemRefs> - <string>qvm-ach</string> - <string>qvm-acl</string> - <string>qvm-akh</string> - <string>qvm-akl</string> - <string>qvm-ame</string> - </WritingSystemRefs> - <Description /> - </Replace> - <Replace active="true" guid="34e77406-d2fe-4526-9bf9-3bc8fa653190" mode="false"> - <Name /> - <From>+</From> - <To /> - <WritingSystemRefs> - <string>qvm-ach</string> - <string>qvm-acl</string> - <string>qvm-akh</string> - <string>qvm-akl</string> - <string>qvm-ame</string> - </WritingSystemRefs> - <Description /> - </Replace> - <Replace active="true" guid="0f853476-407d-40e9-a8f3-803792f4f83e" mode="false"> - <Name /> - <From>:</From> - <To /> - <WritingSystemRefs> - <string>qvm-ach</string> - <string>qvm-acl</string> - <string>qvm-akh</string> - <string>qvm-akl</string> - </WritingSystemRefs> - <Description /> - </Replace> - <Replace active="true" guid="4c3f43c6-f130-4767-9a5a-f2a93b1c6222" mode="false"> - <Name /> - <From>:</From> - <To>a</To> - <WritingSystemRefs> - <string>qvm-ame</string> - </WritingSystemRefs> - <Description /> - </Replace> - </ReplaceOperations> - <WritingSystems> - <WritingSystem> - <Name>qvm-akh</Name> - <Handle>999000005</Handle> - </WritingSystem> - <WritingSystem> - <Name>qvm-acl</Name> - <Handle>999000004</Handle> - </WritingSystem> - <WritingSystem> - <Name>qvm-akl</Name> - <Handle>999000006</Handle> - </WritingSystem> - <WritingSystem> - <Name>qvm-ach</Name> - <Handle>999000003</Handle> - </WritingSystem> - <WritingSystem> - <Name>qvm-ame</Name> - <Handle>999000007</Handle> - </WritingSystem> - </WritingSystems> -</AllomorphGenerators> \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/TestData/AlloGenReplace.xml b/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/TestData/AlloGenReplace.xml deleted file mode 100644 index 0556a5f943..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/TestData/AlloGenReplace.xml +++ /dev/null @@ -1,131 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<AllomorphGenerators xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" dbVersion="3"> - <Operations> - <Operation active="true"> - <Name>foreshortening</Name> - <Description>Add allomorphs for entries which undergo foreshortening</Description> - <Pattern> - <Matcher> - <Type>Begin</Type> - <Pattern>:$|:\..+$</Pattern> - <MatchCase>true</MatchCase> - <MatchDiacritics>false</MatchDiacritics> - </Matcher> - <MorphTypes> - <MorphType active="true" guid="d7f713e4-e8cf-11d3-9764-00c04f186933" name="bound root"/> - <MorphType active="true" guid="d7f713e7-e8cf-11d3-9764-00c04f186933" name="bound stem"/> - <MorphType active="true" guid="d7f713e5-e8cf-11d3-9764-00c04f186933" name="root"/> - <MorphType active="true" guid="d7f713e8-e8cf-11d3-9764-00c04f186933" name="stem"/> - </MorphTypes> - <Category active="true" guid="54712931-442f-42d5-8634-f12bd2e310ce" name="Transitive verb"/> - </Pattern> - <Action> - <ReplaceOps/> - <ReplaceOpRefs> - <string>2c31f8c6-9eaa-4fdf-a658-76c97db4901f</string> - <string>af45b9a8-1586-47c7-95bc-7147c54572fe</string> - <string>54211854-087a-422a-893f-06b0efef2dc9</string> - <string>3fb809d1-37a2-43a2-8315-c97c25e58ecb</string> - <string>9b769216-2984-4546-9e7f-75905ffcce9d</string> - <string>74d68073-0ca7-4ebe-b3ec-9d4bfb4d8fff</string> - </ReplaceOpRefs> - <Environments> - <Environment active="true" guid="d7f7123-e8cf-11d3-9733-00c04f186933" name="/ _ #"/> - <Environment active="true" guid="d7f7456-e8cf-11d3-9733-00c04f186933" name="/ ([C])[C]_ [V]"/> - </Environments> - <StemName active="true" guid="d2cf436-e8cf-11d3-9733-00c04f186933" name="no lowering"/> - </Action> - </Operation> - </Operations> - <ReplaceOperations> - <Replace active="true" guid="2c31f8c6-9eaa-4fdf-a658-76c97db4901f" mode="false" ach="true" acl="true" akh="true" akl="true" ame="true"> - <From/> - <To/> - <Description/> - <WritingSystemRefs> - <string>qvm-ach</string> - <string>qvm-acl</string> - <string>qvm-akh</string> - <string>qvm-akl</string> - <string>qvm-ame</string> - </WritingSystemRefs> - </Replace> - <Replace active="true" guid="af45b9a8-1586-47c7-95bc-7147c54572fe" mode="false" ach="true" acl="true" akh="true" akl="true" ame="true"> - <From>*</From> - <To/> - <Description/> - <WritingSystemRefs> - <string>qvm-ach</string> - <string>qvm-acl</string> - <string>qvm-akh</string> - <string>qvm-akl</string> - <string>qvm-ame</string> - </WritingSystemRefs> - </Replace> - <Replace active="true" guid="54211854-087a-422a-893f-06b0efef2dc9" mode="false" ach="true" acl="true" akh="true" akl="true" ame="true"> - <From>+</From> - <To/> - <Description/> - <WritingSystemRefs> - <string>qvm-ach</string> - <string>qvm-acl</string> - <string>qvm-akh</string> - <string>qvm-akl</string> - <string>qvm-ame</string> - </WritingSystemRefs> - </Replace> - <Replace active="true" guid="3fb809d1-37a2-43a2-8315-c97c25e58ecb" mode="true" ach="true" acl="true" akh="true" akl="true" ame="true"> - <From>^(.*:)\..+$</From> - <To>$1</To> - <Description/> - <WritingSystemRefs> - <string>qvm-ach</string> - <string>qvm-acl</string> - <string>qvm-akh</string> - <string>qvm-akl</string> - <string>qvm-ame</string> - </WritingSystemRefs> - </Replace> - <Replace active="true" guid="9b769216-2984-4546-9e7f-75905ffcce9d" mode="false" ach="true" acl="true" akh="true" akl="true" ame="false"> - <From>:</From> - <To/> - <Description/> - <WritingSystemRefs> - <string>qvm-ach</string> - <string>qvm-acl</string> - <string>qvm-akh</string> - <string>qvm-akl</string> - </WritingSystemRefs> - </Replace> - <Replace active="true" guid="74d68073-0ca7-4ebe-b3ec-9d4bfb4d8fff" mode="false" ach="false" acl="false" akh="false" akl="false" ame="true"> - <From>:</From> - <To>a</To> - <Description/> - <WritingSystemRefs> - <string>qvm-ame</string> - </WritingSystemRefs> - </Replace> - </ReplaceOperations> - <WritingSystems> - <WritingSystem> - <Name>qvm-akh</Name> - <Handle>999000005</Handle> - </WritingSystem> - <WritingSystem> - <Name>qvm-acl</Name> - <Handle>999000004</Handle> - </WritingSystem> - <WritingSystem> - <Name>qvm-akl</Name> - <Handle>999000006</Handle> - </WritingSystem> - <WritingSystem> - <Name>qvm-ach</Name> - <Handle>999000003</Handle> - </WritingSystem> - <WritingSystem> - <Name>qvm-ame</Name> - <Handle>999000007</Handle> - </WritingSystem> - </WritingSystems> -</AllomorphGenerators> diff --git a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/TestData/AlloGenVersion01.xml b/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/TestData/AlloGenVersion01.xml deleted file mode 100644 index 76811244ed..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/TestData/AlloGenVersion01.xml +++ /dev/null @@ -1,49 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<AllomorphGenerators xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - <Operations> - <Operation active="true"> - <Name>foreshortening</Name> - <Description>Add allomorphs for entries which undergo foreshortening</Description> - <Pattern> - <Matcher> - <Type>RegularExpression</Type> - <Pattern>:$|:\..+$</Pattern> - <MatchCase>true</MatchCase> - <MatchDiacritics>false</MatchDiacritics> - </Matcher> - <MorphTypes> - <MorphType active="true" guid="d7f713e4-e8cf-11d3-9764-00c04f186933" name="bound root" /> - <MorphType active="true" guid="d7f713e7-e8cf-11d3-9764-00c04f186933" name="bound stem" /> - <MorphType active="true" guid="d7f713e5-e8cf-11d3-9764-00c04f186933" name="root" /> - <MorphType active="true" guid="d7f713e8-e8cf-11d3-9764-00c04f186933" name="stem" /> - </MorphTypes> - <Category active="true" guid="54712931-442f-42d5-8634-f12bd2e310ce" name="Transitive verb" /> - </Pattern> - <Action> - <ReplaceOps> - <Replace active="true" mode="false" ach="true" acl="true" akh="true" akl="true" ame="true"> - <From>*</From> - <To /> - </Replace> - <Replace active="true" mode="false" ach="true" acl="true" akh="true" akl="true" ame="true"> - <From>+</From> - <To /> - </Replace> - <Replace active="true" mode="false" ach="true" acl="true" akh="true" akl="true" ame="false"> - <From>:</From> - <To /> - </Replace> - <Replace active="true" mode="false" ach="false" acl="false" akh="false" akl="false" ame="true"> - <From>:</From> - <To>a</To> - </Replace> - </ReplaceOps> - <Environments> - <Environment active="true" guid="d7f7123-e8cf-11d3-9733-00c04f186933" name="/ _ #" /> - <Environment active="true" guid="d7f7456-e8cf-11d3-9733-00c04f186933" name="/ ([C])[C]_ [V]" /> - </Environments> - <StemName active="true" guid="d2cf436-e8cf-11d3-9733-00c04f186933" name="no lowering" /> - </Action> - </Operation> - </Operations> -</AllomorphGenerators> \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/TestData/AlloGenVersion02.xml b/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/TestData/AlloGenVersion02.xml deleted file mode 100644 index ec203596cb..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/TestData/AlloGenVersion02.xml +++ /dev/null @@ -1,60 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<AllomorphGenerators xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" dbVersion="2"> - <Operations> - <Operation active="true"> - <Name>foreshortening</Name> - <Description>Add allomorphs for entries which undergo foreshortening</Description> - <Pattern> - <Matcher> - <Type>RegularExpression</Type> - <Pattern>:$|:\..+$</Pattern> - <MatchCase>true</MatchCase> - <MatchDiacritics>false</MatchDiacritics> - </Matcher> - <MorphTypes> - <MorphType active="true" guid="d7f713e4-e8cf-11d3-9764-00c04f186933" name="bound root" /> - <MorphType active="true" guid="d7f713e7-e8cf-11d3-9764-00c04f186933" name="bound stem" /> - <MorphType active="true" guid="d7f713e5-e8cf-11d3-9764-00c04f186933" name="root" /> - <MorphType active="true" guid="d7f713e8-e8cf-11d3-9764-00c04f186933" name="stem" /> - </MorphTypes> - <Category active="true" guid="54712931-442f-42d5-8634-f12bd2e310ce" name="Transitive verb" /> - </Pattern> - <Action> - <ReplaceOps /> - <ReplaceOpRefs> - <string>5e8b9b79-0269-4dee-bfb0-be8ed4f4dc5d</string> - <string>34e77406-d2fe-4526-9bf9-3bc8fa653190</string> - <string>0f853476-407d-40e9-a8f3-803792f4f83e</string> - <string>4c3f43c6-f130-4767-9a5a-f2a93b1c6222</string> - </ReplaceOpRefs> - <Environments> - <Environment active="true" guid="d7f7123-e8cf-11d3-9733-00c04f186933" name="/ _ #" /> - <Environment active="true" guid="d7f7456-e8cf-11d3-9733-00c04f186933" name="/ ([C])[C]_ [V]" /> - </Environments> - <StemName active="true" guid="d2cf436-e8cf-11d3-9733-00c04f186933" name="no lowering" /> - </Action> - </Operation> - </Operations> - <ReplaceOperations> - <Replace active="true" guid="5e8b9b79-0269-4dee-bfb0-be8ed4f4dc5d" name="" mode="false" ach="true" acl="true" akh="true" akl="true" ame="true"> - <From>*</From> - <To /> - <Description /> - </Replace> - <Replace active="true" guid="34e77406-d2fe-4526-9bf9-3bc8fa653190" name="" mode="false" ach="true" acl="true" akh="true" akl="true" ame="true"> - <From>+</From> - <To /> - <Description /> - </Replace> - <Replace active="true" guid="0f853476-407d-40e9-a8f3-803792f4f83e" name="" mode="false" ach="true" acl="true" akh="true" akl="true" ame="false"> - <From>:</From> - <To /> - <Description /> - </Replace> - <Replace active="true" guid="4c3f43c6-f130-4767-9a5a-f2a93b1c6222" name="" mode="false" ach="false" acl="false" akh="false" akl="false" ame="true"> - <From>:</From> - <To>a</To> - <Description /> - </Replace> - </ReplaceOperations> -</AllomorphGenerators> \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/TestData/AlloGenVersion03.xml b/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/TestData/AlloGenVersion03.xml deleted file mode 100644 index 26c48e1645..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/TestData/AlloGenVersion03.xml +++ /dev/null @@ -1,105 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<AllomorphGenerators xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" dbVersion="3"> - <Operations> - <Operation active="true"> - <Name>foreshortening</Name> - <Description>Add allomorphs for entries which undergo foreshortening</Description> - <Pattern> - <Matcher> - <Type>RegularExpression</Type> - <Pattern>:$|:\..+$</Pattern> - <MatchCase>true</MatchCase> - <MatchDiacritics>false</MatchDiacritics> - </Matcher> - <MorphTypes> - <MorphType active="true" guid="d7f713e4-e8cf-11d3-9764-00c04f186933" name="bound root" /> - <MorphType active="true" guid="d7f713e7-e8cf-11d3-9764-00c04f186933" name="bound stem" /> - <MorphType active="true" guid="d7f713e5-e8cf-11d3-9764-00c04f186933" name="root" /> - <MorphType active="true" guid="d7f713e8-e8cf-11d3-9764-00c04f186933" name="stem" /> - </MorphTypes> - <Category active="true" guid="54712931-442f-42d5-8634-f12bd2e310ce" name="Transitive verb" /> - </Pattern> - <Action> - <ReplaceOps /> - <ReplaceOpRefs> - <string>5e8b9b79-0269-4dee-bfb0-be8ed4f4dc5d</string> - <string>34e77406-d2fe-4526-9bf9-3bc8fa653190</string> - <string>0f853476-407d-40e9-a8f3-803792f4f83e</string> - <string>4c3f43c6-f130-4767-9a5a-f2a93b1c6222</string> - </ReplaceOpRefs> - <Environments> - <Environment active="true" guid="d7f7123-e8cf-11d3-9733-00c04f186933" name="/ _ #" /> - <Environment active="true" guid="d7f7456-e8cf-11d3-9733-00c04f186933" name="/ ([C])[C]_ [V]" /> - </Environments> - <StemName active="true" guid="d2cf436-e8cf-11d3-9733-00c04f186933" name="no lowering" /> - </Action> - </Operation> - </Operations> - <ReplaceOperations> - <Replace active="true" guid="5e8b9b79-0269-4dee-bfb0-be8ed4f4dc5d" name="" mode="false" ach="true" acl="true" akh="true" akl="true" ame="true"> - <From>*</From> - <To /> - <Description /> - <WritingSystemRefs> - <string>qvm-ach</string> - <string>qvm-acl</string> - <string>qvm-aka</string> - <string>qvm-akl</string> - <string>qvm-ame</string> - </WritingSystemRefs> - </Replace> - <Replace active="true" guid="34e77406-d2fe-4526-9bf9-3bc8fa653190" name="" mode="false" ach="true" acl="true" akh="true" akl="true" ame="true"> - <From>+</From> - <To /> - <Description /> - <WritingSystemRefs> - <string>qvm-ach</string> - <string>qvm-acl</string> - <string>qvm-aka</string> - <string>qvm-akl</string> - <string>qvm-ame</string> - </WritingSystemRefs> - </Replace> - <Replace active="true" guid="0f853476-407d-40e9-a8f3-803792f4f83e" name="" mode="false" ach="true" acl="true" akh="true" akl="true" ame="false"> - <From>:</From> - <To /> - <Description /> - <WritingSystemRefs> - <string>qvm-ach</string> - <string>qvm-acl</string> - <string>qvm-aka</string> - <string>qvm-akl</string> - </WritingSystemRefs> - </Replace> - <Replace active="true" guid="4c3f43c6-f130-4767-9a5a-f2a93b1c6222" name="" mode="false" ach="false" acl="false" akh="false" akl="false" ame="true"> - <From>:</From> - <To>a</To> - <Description /> - <WritingSystemRefs> - <string>qvm-ame</string> - </WritingSystemRefs> - </Replace> - </ReplaceOperations> - <WritingSystems> - <WritingSystem> - <Name>qvm-ach</Name> - <Handle>999000003</Handle> - </WritingSystem> - <WritingSystem> - <Name>qvm-acl</Name> - <Handle>999000004</Handle> - </WritingSystem> - <WritingSystem> - <Name>qvm-akh</Name> - <Handle>999000005</Handle> - </WritingSystem> - <WritingSystem> - <Name>qvm-akl</Name> - <Handle>999000006</Handle> - </WritingSystem> - <WritingSystem> - <Name>qvm-ame</Name> - <Handle>999000007</Handle> - </WritingSystem> - </WritingSystems> -</AllomorphGenerators> diff --git a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/TestData/AlloGenVersion04.xml b/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/TestData/AlloGenVersion04.xml deleted file mode 100644 index a006523dda..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/TestData/AlloGenVersion04.xml +++ /dev/null @@ -1 +0,0 @@ -<AllomorphGenerators dbVersion="4" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><Operations><Operation active="true"><Name>foreshortening</Name><Description>Add allomorphs for entries which undergo foreshortening</Description><Pattern><Matcher><Type>RegularExpression</Type><Pattern>:$|:\..+$</Pattern><MatchCase>true</MatchCase><MatchDiacritics>false</MatchDiacritics></Matcher><MorphTypes><MorphType active="true" guid="d7f713e4-e8cf-11d3-9764-00c04f186933"><Name>bound root</Name></MorphType><MorphType active="true" guid="d7f713e7-e8cf-11d3-9764-00c04f186933"><Name>bound stem</Name></MorphType><MorphType active="true" guid="d7f713e5-e8cf-11d3-9764-00c04f186933"><Name>root</Name></MorphType><MorphType active="true" guid="d7f713e8-e8cf-11d3-9764-00c04f186933"><Name>stem</Name></MorphType></MorphTypes><Category active="true" guid="54712931-442f-42d5-8634-f12bd2e310ce"><Name>Transitive verb</Name></Category></Pattern><Action><ReplaceOpRefs><string>5e8b9b79-0269-4dee-bfb0-be8ed4f4dc5d</string><string>34e77406-d2fe-4526-9bf9-3bc8fa653190</string><string>0f853476-407d-40e9-a8f3-803792f4f83e</string><string>4c3f43c6-f130-4767-9a5a-f2a93b1c6222</string></ReplaceOpRefs><Environments><Environment active="true" guid="d7f7123-e8cf-11d3-9733-00c04f186933"><Name>/ _ #</Name></Environment><Environment active="true" guid="d7f7456-e8cf-11d3-9733-00c04f186933"><Name>/ ([C])[C]_ [V]</Name></Environment></Environments><StemName active="true" guid="d2cf436-e8cf-11d3-9733-00c04f186933"><Name>no lowering</Name></StemName></Action></Operation></Operations><ReplaceOperations><Replace active="true" guid="5e8b9b79-0269-4dee-bfb0-be8ed4f4dc5d" mode="false"><Name /><From>*</From><To /><Description /><WritingSystemRefs><string>qvm-ach</string><string>qvm-acl</string><string>qvm-aka</string><string>qvm-akl</string><string>qvm-ame</string></WritingSystemRefs></Replace><Replace active="true" guid="34e77406-d2fe-4526-9bf9-3bc8fa653190" mode="false"><Name /><From>+</From><To /><Description /><WritingSystemRefs><string>qvm-ach</string><string>qvm-acl</string><string>qvm-aka</string><string>qvm-akl</string><string>qvm-ame</string></WritingSystemRefs></Replace><Replace active="true" guid="0f853476-407d-40e9-a8f3-803792f4f83e" mode="false"><Name /><From>:</From><To /><Description /><WritingSystemRefs><string>qvm-ach</string><string>qvm-acl</string><string>qvm-aka</string><string>qvm-akl</string></WritingSystemRefs></Replace><Replace active="true" guid="4c3f43c6-f130-4767-9a5a-f2a93b1c6222" mode="false"><Name /><From>:</From><To>a</To><Description /><WritingSystemRefs><string>qvm-ame</string></WritingSystemRefs></Replace></ReplaceOperations><WritingSystems><WritingSystem><Name>qvm-ach</Name><Handle>999000003</Handle></WritingSystem><WritingSystem><Name>qvm-acl</Name><Handle>999000004</Handle></WritingSystem><WritingSystem><Name>qvm-akh</Name><Handle>999000005</Handle></WritingSystem><WritingSystem><Name>qvm-akl</Name><Handle>999000006</Handle></WritingSystem><WritingSystem><Name>qvm-ame</Name><Handle>999000007</Handle></WritingSystem></WritingSystems></AllomorphGenerators> \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/TestData/Quechua MYL CausDeriv.fwdata b/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/TestData/Quechua MYL CausDeriv.fwdata deleted file mode 100644 index 96570dac83..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/TestData/Quechua MYL CausDeriv.fwdata +++ /dev/null @@ -1,504267 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<languageproject version="7000072"> -<AdditionalFields> -<CustomField class="LexEntry" name="Allos" type="MultiUnicode" wsSelector="-4" /> -<CustomField class="LexEntry" helpString="Original \lx field" name="lx" type="String" wsSelector="-1" /> -<CustomField class="LexEntry" helpString="The original SFM entry" name="SFMs" type="String" wsSelector="-1" /> -<CustomField class="LexSense" helpString="Original \c field" name="cat" type="String" wsSelector="-1" /> -<CustomField class="LexSense" name="Target Equivalent" type="String" wsSelector="-1" /> -<CustomField class="LexSense" name="Target Sense Number" type="String" wsSelector="-1" /> -</AdditionalFields> -<rt class="CmSemanticDomain" guid="00041516-72d1-4e56-9ed8-fe235a9b1a68" ownerguid="00269021-e1c4-474d-9dba-341d296bdac7"> -<Abbreviation> -<AUni ws="en">8.4.5.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.640" /> -<DateModified val="2022-9-23 16:55:8.640" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a series--several things that happen one after another.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Series</AUni> -</Name> -<Questions> -<objsur guid="bab58c68-afea-4ff1-ac32-ccb0eaa51089" t="o" /> -<objsur guid="cbe3b7b6-d8b1-40a5-8fea-46369188fc85" t="o" /> -<objsur guid="8af29bfb-fbae-41de-aba5-e50c4f41ab47" t="o" /> -<objsur guid="40f60763-8748-43b9-8b84-87d3fb62e406" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="00269021-e1c4-474d-9dba-341d296bdac7" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="0006063d-3d44-4a80-9927-68baac6b1342" ownerguid="33d1a85d-ff32-4ab3-a9fc-2779022c0bac"> -<Form> -<AUni ws="qvm-x-ach">wamaya; wamayä</AUni> -<AUni ws="qvm-x-acl">wamaya; wamayä</AUni> -<AUni ws="qvm-x-akh">wamaya; wamayä</AUni> -<AUni ws="qvm-x-akl">wamaya; wamayä</AUni> -<AUni ws="qvm-x-ame">wamaya; wamayä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="000b687a-776a-4b90-b0c0-b3dac8bf3406"> -<Analyses> -<objsur guid="2ae33e10-d42f-492c-9429-f486fb613a7d" t="o" /> -</Analyses> -<Checksum val="1909770120" /> -<Form> -<AUni ws="qvm-x-akh">wawankunalawanna</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="000cf949-8308-4932-a9fd-803ec44527ae" ownerguid="5b08e461-b967-4802-bc2e-c5cd7ce6b5f5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="000eb971-3e92-46b6-8908-bda2964fe1af" ownerguid="aadefee4-ed14-4753-952e-e945f2972e37"> -<ExampleWords> -<AUni ws="en">component, element, piece, ingredient, constituent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the parts that something is made from?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="000ef589-4518-4baf-b8c1-2d4e12aa92d4" ownerguid="1d961093-aaf4-4101-b5f9-a50a1efc7dd1"> -<Form> -<AUni ws="qvm-x-ach">cïta</AUni> -<AUni ws="qvm-x-acl">cïta</AUni> -<AUni ws="qvm-x-akh">cïta</AUni> -<AUni ws="qvm-x-akl">cïta</AUni> -<AUni ws="qvm-x-ame">siita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="0014fb37-c5f9-4f23-9203-b7d9208e8401" ownerguid="864f3816-41b6-4881-bf14-235e6301e8bb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="d6302d1d-79b2-4c6b-b620-ab8a46bd9288" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="cd37094f-e5ca-49bc-a8d3-083de7c4934b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="0015a694-420a-461f-aaaf-aae425ffaa53" ownerguid="668e695e-18fe-4375-896b-f24519cd2b71"> -<Form> -<AUni ws="qvm-x-ach">tincu</AUni> -<AUni ws="qvm-x-acl">tincu; tinco</AUni> -<AUni ws="qvm-x-akh">tinku</AUni> -<AUni ws="qvm-x-akl">tinku; tinko</AUni> -<AUni ws="qvm-x-ame">tinku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="00195736-1538-4292-97ca-cc83f1147a49" ownerguid="34f3f19d-5a4c-4039-8aa2-4f311e7a7fb6"> -<Form> -<AUni ws="qvm-x-ach">garwash</AUni> -<AUni ws="qvm-x-acl">garwash</AUni> -<AUni ws="qvm-x-akh">qarwash</AUni> -<AUni ws="qvm-x-akl">qarwash</AUni> -<AUni ws="qvm-x-ame">qarwash</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="001fe9db-fbb9-4cf0-83a5-51cdcd1cb98d" ownerguid="56ef3f06-7fb9-462e-a7d0-517f3ce1623f"> -<ExampleWords> -<AUni ws="en">weasel, ermine, ferret, marten, mink, otter, polecat, skunk, stoat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What animals are in the weasel family?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="00228eeb-c95e-4beb-96ff-96e8cf3418ae" ownerguid="357f6258-1d36-4306-96ef-f556d794c7e4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="0023f7c8-6646-4fca-91b6-e7d772eabb68" ownerguid="7cc6f309-a301-4fa9-953e-49a0064f631c"> -<Form> -<AUni ws="qvm-x-ach">lushi</AUni> -<AUni ws="qvm-x-acl">lushi; lushe</AUni> -<AUni ws="qvm-x-akh">lushi</AUni> -<AUni ws="qvm-x-akl">lushi; lushe</AUni> -<AUni ws="qvm-x-ame">lushi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="00269021-e1c4-474d-9dba-341d296bdac7" ownerguid="1f4efae7-1029-4b66-80ee-802459a7baf5"> -<Abbreviation> -<AUni ws="en">8.4.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.640" /> -<DateModified val="2022-9-23 16:55:8.640" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to temporal order or sequence--the order in which a group of events happen. Things and people may also be in order based on the order in which something happened or should happen to them.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>61 Sequence</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Order, sequence</AUni> -</Name> -<Questions> -<objsur guid="f9531e8c-f38a-428e-ae24-07a5a1380b8a" t="o" /> -<objsur guid="30b1ec81-8779-4e86-af69-5323fd38bd2a" t="o" /> -<objsur guid="8c71c4af-2117-4304-b94f-e5fb61546dc9" t="o" /> -<objsur guid="325be7b9-7aec-465e-8a45-ec1342c54fcd" t="o" /> -<objsur guid="e5577a02-a1e0-4220-bf18-683a96010a80" t="o" /> -<objsur guid="9dc02b0b-11d7-47b4-b488-fa6e38b761c8" t="o" /> -<objsur guid="6b24b613-473e-4482-9a05-d3bccbba9dd8" t="o" /> -<objsur guid="9a9c9c08-7b08-40f8-a04a-c13b151d2add" t="o" /> -<objsur guid="5f5efb56-fab1-4f7a-ab44-459161e664e5" t="o" /> -<objsur guid="a50d88ce-2ce0-4765-9e4e-da9407d8d482" t="o" /> -<objsur guid="c0d68f53-b6a0-4c88-96c5-f467f8a18dfc" t="o" /> -<objsur guid="ec5ee2d5-3cff-434f-85b8-01c562afe757" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="00041516-72d1-4e56-9ed8-fe235a9b1a68" t="r" /> -<objsur guid="6045c6eb-efea-4586-95f8-840d32578d66" t="r" /> -<objsur guid="816490a4-2cac-472a-bbb0-eafbb9bbe4a8" t="r" /> -<objsur guid="e6c9fe4c-199e-4934-b622-739a85b0830d" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="00041516-72d1-4e56-9ed8-fe235a9b1a68" t="o" /> -<objsur guid="f352a437-58f2-4920-aec3-eda8041f7447" t="o" /> -<objsur guid="a345d090-14e2-4897-9186-debcb05ab27c" t="o" /> -<objsur guid="49aa89f2-2022-4213-845e-dbbb4b53476c" t="o" /> -<objsur guid="6712385a-6740-4f28-8bbe-8615ea17116b" t="o" /> -<objsur guid="95a8d932-9554-439f-afb5-ab158f2eed96" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="0026e024-7022-4ede-aebc-7b6601b79d2f" ownerguid="a6eb0ea6-9e43-4baa-8fb5-5ea379d74241"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="002ab270-719f-4bba-97e4-9758117765b8" ownerguid="24361be2-49be-4860-bb56-4e46dd1e8b0c"> -<ExampleWords> -<AUni ws="en">make taboo, forbid, prohibit, ban</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to making something taboo?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="002ac542-fa50-4916-a722-61f6f9430df5" ownerguid="0c059134-b542-479c-95b4-c07f3c26fc0c"> -<Form> -<AUni ws="qvm-x-ach">ultimu</AUni> -<AUni ws="qvm-x-acl">ultimu; ultimu; ultimo</AUni> -<AUni ws="qvm-x-akh">ultimu</AUni> -<AUni ws="qvm-x-akl">ultimu; ultimu; ultimo</AUni> -<AUni ws="qvm-x-ame">ultimu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="002b13ff-d913-4386-81d6-3fd92ef902d4" ownerguid="bfa4fd0d-3d3f-4b5b-a76b-64e32f2f924d"> -<Form> -<AUni ws="qvm-x-ach">göma</AUni> -<AUni ws="qvm-x-acl">göma</AUni> -<AUni ws="qvm-x-akh">göma</AUni> -<AUni ws="qvm-x-akl">göma</AUni> -<AUni ws="qvm-x-ame">göma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="002c4623-d2b9-4539-a81c-dc759bc8f604" ownerguid="1882ccaf-04c8-4ff5-bb6f-738e384a0600"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mountain</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e30ff684-cbdd-4c4d-9c2a-be1bd765f960" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="002e86bb-1b81-4566-828f-dc0d4c8cec44" ownerguid="d168bfa9-6065-4d2f-8c52-a34d175f6a56"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sand</AUni> -<AUni ws="es">arena</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5a07149e-b119-4595-a484-df18b571c0f0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="002e9054-66a2-4703-9ca9-bfb3f426a971" ownerguid="2d992d65-6708-43a7-8afa-7da2d77cb470"> -<Form> -<AUni ws="qvm-x-ach">abubilla</AUni> -<AUni ws="qvm-x-acl">abubilla</AUni> -<AUni ws="qvm-x-akh">abubilla</AUni> -<AUni ws="qvm-x-akl">abubilla</AUni> -<AUni ws="qvm-x-ame">abubilla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="002e9569-267f-45da-a750-77989f2d993b" ownerguid="8bb8e7c0-bb64-428f-8eaa-b67400a29d52"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="6e552e23-5ea0-4bf4-bd47-20183aaf75a5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="002f7048-80df-4e85-931a-cae888fbcec9" ownerguid="5a9d3cff-60f4-4bdc-8fec-318a4ffbd92c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="002f8a20-0dfd-4b7e-a22a-b5afeabae1eb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">perdona</AUni> -<AUni ws="qvm-x-acl">perdona</AUni> -<AUni ws="qvm-x-akh">perdona</AUni> -<AUni ws="qvm-x-akl">perdona</AUni> -<AUni ws="qvm-x-ame">perdona</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+perdonar.1</AUni> -<AUni ws="qvm-x-acl">+perdonar.1</AUni> -<AUni ws="qvm-x-akh">+perdonar.1</AUni> -<AUni ws="qvm-x-akl">+perdonar.1</AUni> -<AUni ws="qvm-x-ame">+perdonar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.790" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fc5a9e7e-fe1e-463f-95f6-56ade55f2a83" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+perdonar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fdfd536c-369c-4668-aec2-ff9df51d78f1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5ccd5697-ea56-47b1-b996-ff815528b7b8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +perdonar.1 
\entryTyp root 
\gENG forgive 
\gSPN perdonar 
\e +perdonar.1 
\c V2 
\ach perdona 
\akh perdona 
\acl perdona 
\akl perdona 
\ame perdona</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="0033cd9b-47b4-4a9e-90f2-82eb5c492641" ownerguid="eb3585b5-cb6c-4061-8aff-feb66ba09add"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="00364f0c-9a3a-4910-a82e-1ffbc4d4137f" ownerguid="f9d020d6-b129-4bb8-9509-3b4a6c27482e"> -<Abbreviation> -<AUni ws="en">3.4.1.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.133" /> -<DateModified val="2022-9-23 16:55:8.133" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling excited--to feel good when something good has happening or is about to happen.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Excited</AUni> -</Name> -<Questions> -<objsur guid="8094a339-8f3c-45e0-bbaf-13fb780ba304" t="o" /> -<objsur guid="dd7b5a7a-7384-40d6-a65f-ed05639a61eb" t="o" /> -<objsur guid="9bd670d5-1bc6-48c1-a75b-389059593fcd" t="o" /> -<objsur guid="ae75891d-6f25-4535-8d93-6bf758c6360f" t="o" /> -<objsur guid="f8ac4072-114c-417a-82e5-d9526a2ed0cb" t="o" /> -<objsur guid="afd7e394-6ec6-4814-81c7-f8b1e958ac2b" t="o" /> -<objsur guid="2a5bdf2e-b966-4196-8e16-2e9158803b29" t="o" /> -<objsur guid="d8798d3b-dfd0-46fe-a0a6-5e36d691e474" t="o" /> -<objsur guid="86c0d1ca-b040-4511-baa8-c636dcade4e6" t="o" /> -<objsur guid="d7b16903-0d08-4931-9feb-a4dbcc6ade0a" t="o" /> -<objsur guid="79ec6ed6-dff1-40c2-bdd6-5989bd4cf5d5" t="o" /> -<objsur guid="1c456b17-538e-4b0b-8f35-f4bc5728a31e" t="o" /> -<objsur guid="e7499a97-3ad8-49cb-97ac-214ab5c703c4" t="o" /> -<objsur guid="3962e7de-114b-4339-9e92-9e821d29412f" t="o" /> -<objsur guid="a97aee9c-0cdb-4163-bde8-f2fa754ee1d3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="0037693a-ae42-4e5c-85f5-10a05482d4ee" ownerguid="3a2c0773-6b3e-4f8b-909d-c8f84d66d4f4"> -<Abbreviation> -<AUni ws="en">9.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.680" /> -<DateModified val="2022-9-23 16:55:8.680" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Thing</AUni> -</Name> -<Questions> -<objsur guid="081896fa-3896-440c-a334-a27de6dc00d6" t="o" /> -<objsur guid="1d694d53-f3c8-40de-a926-c36ca30851e3" t="o" /> -<objsur guid="ba4126df-8aeb-422a-aff0-56091c6669c8" t="o" /> -<objsur guid="356e958b-1eea-4034-901e-05ba8f863b99" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c9741b97-ad50-465c-a4ca-b21d488f45fe" t="o" /> -<objsur guid="74cd7314-5ef6-4505-a35a-81468b5a3f3a" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="003c0b21-a4db-4e19-9e4e-4fae44be75bc" ownerguid="6804db44-b71b-4452-98b1-b726bc7cf022"> -<ExampleWords> -<AUni ws="en">volume</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to how loud something is?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="003e3604-559c-42a1-bd6e-d67118e64007" ownerguid="e519d730-f528-44f5-8241-b0fe815c79f6"> -<Form> -<AUni ws="qvm-x-ach">untu</AUni> -<AUni ws="qvm-x-acl">untu; untu; unto</AUni> -<AUni ws="qvm-x-akh">untu</AUni> -<AUni ws="qvm-x-akl">untu; untu; unto</AUni> -<AUni ws="qvm-x-ame">untu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="0041b138-8ddb-441a-a907-fb6132d9b30c" ownerguid="836e06fe-424c-4eca-a075-1ffb6df4a36e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Tsay hïluwan shelgutsipaylapa awargan jacuta.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="00451b86-befe-41ca-bb7b-badd37f041b1" ownerguid="320d945e-ab48-4e21-a2da-db2f131c956c"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="00458814-a824-4d31-89a9-1e87281b7681" ownerguid="c6f5b428-95e9-4010-9567-4bd4871d3218" /> -<rt class="CmSemanticDomain" guid="0049664f-0931-487b-ab3c-ce11e134ce7a" ownerguid="35624f3a-2029-43b3-b70a-83e63ac9052f"> -<Abbreviation> -<AUni ws="en">9.2.9.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain to list all verb affixes.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Verb affixes</AUni> -</Name> -<Questions> -<objsur guid="2b58eb13-4693-46d8-bba0-74c88d72f65d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="0049ffed-8bf4-446d-9240-870d3ce7b5c1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">catata; catata:</AUni> -<AUni ws="qvm-x-acl">catata; catata:</AUni> -<AUni ws="qvm-x-akh">katata; katata:</AUni> -<AUni ws="qvm-x-akl">katata; katata:</AUni> -<AUni ws="qvm-x-ame">katata; katata:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*katata</AUni> -<AUni ws="qvm-x-acl">*katata</AUni> -<AUni ws="qvm-x-akh">*katata</AUni> -<AUni ws="qvm-x-akl">*katata</AUni> -<AUni ws="qvm-x-ame">*katata</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.953" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="49112896-d27c-49de-a179-f0d14c3ba363" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*katata</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2aef695f-6d50-444a-b985-2f41c2e76a2f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c4a23160-6547-4d86-b1ff-91c017f733f0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *katata 
\entryTyp root 
\gENG 
\gSPN 
\e *katata 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach catata foreshortened 
\ach catata: 
\akh katata foreshortened 
\akh katata: 
\acl catata foreshortened 
\acl catata: 
\akl katata foreshortened 
\akl katata: 
\ame katata foreshortened 
\ame katata: 
\i HAB 3.6 Ricacäriptenga maytsay nacioncunapis pasaypami catatan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="004b9476-c99b-46bd-a832-a2d629663b33" ownerguid="0546585f-d317-4279-8c7b-9286a128ad2e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hundred</AUni> -<AUni ws="es">cien</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="33ffe68c-f92c-457b-a37c-9eccb07e4e91" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="004d6044-8b70-4dff-a709-61557ab665f6" ownerguid="00675854-6a77-4451-b4a7-b85eb1b743a3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="004de934-52e2-4bd4-8b83-28580cdaa467" ownerguid="afe7cc92-e0ad-40d9-be56-aa12d2693a3f"> -<ExampleWords> -<AUni ws="en">daily, every day, each day</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used to indicate that something happens every day?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="00508ca3-1fe7-49a3-b170-a4b6643ef308" ownerguid="65d1072a-2120-4518-a2d8-e9fcf31ce3c3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lip</AUni> -<AUni ws="es">labio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8822354b-4d84-4bd1-b7ce-c56c7614584c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0057f8a9-606e-49e0-b6cf-613a11d94869" ownerguid="5489f4ae-34a7-4f8b-9086-4247b0d8b3de"> -<ExampleWords> -<AUni ws="en">ambush (n), mugging, strike (n), sneak attack, surprise attack</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to an ambush?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0058de9c-6aba-48da-b3ce-31530335177d" ownerguid="55201761-fe2e-40d5-a2a7-8079e00a2c32"> -<ExampleWords> -<AUni ws="en">affray, altercation, battle (n), bout, combat, conflict, contest, crisis, duel (n), feud (n), gunfight, row, shootout, showdown, skirmish, spat, squabble, strife, struggle (n), tiff, war (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a fight?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="00593c1d-59f7-4aab-a228-ab1ab60e420d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pampa</AUni> -<AUni ws="qvm-x-acl">pampa</AUni> -<AUni ws="qvm-x-akh">pampa</AUni> -<AUni ws="qvm-x-akl">pampa</AUni> -<AUni ws="qvm-x-ame">pampa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pampa.v</AUni> -<AUni ws="qvm-x-acl">*pampa.v</AUni> -<AUni ws="qvm-x-akh">*pampa.v</AUni> -<AUni ws="qvm-x-akl">*pampa.v</AUni> -<AUni ws="qvm-x-ame">*pampa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.679" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9bbb6eda-06d7-4f3b-9eab-0864fff6eebb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pampa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b50fda60-e10d-46a2-8b5e-1d9c6a5f1e19" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e1c1757b-2bcc-4e64-a30e-875fd0e99871" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pampa.v 
\entryTyp root 
\gENG bury 
\gSPN enterrar 
\e *pampa.v 
\c V2 
\ach pampa 
\akh pampa 
\acl pampa 
\akl pampa 
\ame pampa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="00594ecc-ab6e-444b-bf29-92b11f39b488" ownerguid="ca48386d-293f-4452-a489-d179042da11c"> -<Form> -<AUni ws="qvm-x-ach">cushi</AUni> -<AUni ws="qvm-x-acl">cushi; cushi; cushe</AUni> -<AUni ws="qvm-x-akh">kushi</AUni> -<AUni ws="qvm-x-akl">kushi; kushi; kushe</AUni> -<AUni ws="qvm-x-ame">kushi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="005eb6a1-d5bf-4213-bb73-360094ba2ea1" ownerguid="499fe33d-789f-405b-813d-f75f798508f2"> -<Form> -<AUni ws="qvm-x-ach">tsacalwa</AUni> -<AUni ws="qvm-x-acl">tsacalwa</AUni> -<AUni ws="qvm-x-akh">tsakalwa</AUni> -<AUni ws="qvm-x-akl">tsakalwa</AUni> -<AUni ws="qvm-x-ame">tsakalwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0061e167-c41f-4ea7-a218-98835a39dac0" ownerguid="b43fae8e-6b19-42ed-98cd-d363174b9cf8"> -<ExampleWords> -<AUni ws="en">small, little, dainty, miniature, compact</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is small?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="00651563-fc2e-4d8d-8ff7-9f42c9ccb1d0" ownerguid="fa8c43d1-057e-4bf4-bc2e-f6c3fb3a5bb1"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="0066f0f7-02dd-4f8e-afa5-59b8cb5a434a" ownerguid="55201761-fe2e-40d5-a2a7-8079e00a2c32"> -<Abbreviation> -<AUni ws="en">4.8.2.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.276" /> -<DateModified val="2022-9-23 16:55:8.276" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to betraying someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>37G Hand Over, Betray</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Betray</AUni> -</Name> -<Questions> -<objsur guid="b4636fd8-73e8-429f-9f94-5d7bc57483c1" t="o" /> -<objsur guid="b1f3f291-8627-46eb-8811-f906d7ca3e04" t="o" /> -<objsur guid="261c2c22-0412-4c77-95c7-e95a5e63e674" t="o" /> -<objsur guid="a05d984e-e99b-4ab8-b9c7-6bbb4833a724" t="o" /> -<objsur guid="bd8ff020-e182-4012-993b-f6811d2774a0" t="o" /> -<objsur guid="ddd5cc0d-a0fe-491b-b231-e56786fe011e" t="o" /> -<objsur guid="5d048037-bfe3-4ad1-982a-30dd0f14d482" t="o" /> -<objsur guid="4079752a-245a-4960-842b-20acc789c160" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="00675854-6a77-4451-b4a7-b85eb1b743a3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">perjil</AUni> -<AUni ws="qvm-x-acl">perjil; perjil; perjel</AUni> -<AUni ws="qvm-x-akh">perjil</AUni> -<AUni ws="qvm-x-akl">perjil; perjil; perjel</AUni> -<AUni ws="qvm-x-ame">perjil</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+perjil</AUni> -<AUni ws="qvm-x-acl">+perjil</AUni> -<AUni ws="qvm-x-akh">+perjil</AUni> -<AUni ws="qvm-x-akl">+perjil</AUni> -<AUni ws="qvm-x-ame">+perjil</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.800" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e29cdd1c-7388-4260-90a3-a4c42813fb8c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+perjil</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="004d6044-8b70-4dff-a709-61557ab665f6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e0fa0c46-5a72-4acd-b825-df9f5c2ce9d6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +perjil 
\entryTyp root 
\gENG parsley 
\gSPN perjil 
\e +perjil 
\c N0 
\mp +FinalC 
\ach perjil 
\akh perjil 
\acl perjil / _# 
\acl perjil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl perjel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl perjil / _# 
\akl perjil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl perjel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame perjil</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="0068d0dd-399f-4c8e-86e7-1021a80c20f5" ownerguid="ec75263d-1bbd-4bb7-9bd4-515ba6751b5b"> -<Form> -<AUni ws="qvm-x-ach">puncu</AUni> -<AUni ws="qvm-x-acl">puncu; puncu; punco</AUni> -<AUni ws="qvm-x-akh">punku</AUni> -<AUni ws="qvm-x-akl">punku; punku; punko</AUni> -<AUni ws="qvm-x-ame">punku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="006a6c01-1ca3-4119-bea5-2e1fbdf8b1b3" ownerguid="8d316e54-e6e9-4db9-9975-f6039564242c"> -<Form> -<AUni ws="qvm-x-ach">jira</AUni> -<AUni ws="qvm-x-acl">jira</AUni> -<AUni ws="qvm-x-akh">jira</AUni> -<AUni ws="qvm-x-akl">jira</AUni> -<AUni ws="qvm-x-ame">hira</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="0071c96d-54a2-4bae-882f-e44a556091a0" ownerguid="0d6e5607-3bb1-43b6-a494-eafc2d2d6299"> -<Form> -<AUni ws="qvm-x-ach">copösu</AUni> -<AUni ws="qvm-x-acl">copösu; copösu; copöso</AUni> -<AUni ws="qvm-x-akh">copösu</AUni> -<AUni ws="qvm-x-akl">copösu; copösu; copöso</AUni> -<AUni ws="qvm-x-ame">copösu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="00725ce4-e43f-4672-a3ef-3c243d831b34" ownerguid="65ef6aae-019f-4980-b6d9-5b7ad2c8e68f"> -<ExampleWords> -<AUni ws="en">motto, slogan, catchphrase</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a saying used by someone to express their beliefs?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="00733fca-c4d6-4ec1-b1bf-1587621b3b96"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">muqui</AUni> -<AUni ws="qvm-x-acl">muqui; muqui; muque</AUni> -<AUni ws="qvm-x-akh">muki</AUni> -<AUni ws="qvm-x-akl">muki; muki; muke</AUni> -<AUni ws="qvm-x-ame">muki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*muki</AUni> -<AUni ws="qvm-x-acl">*muki</AUni> -<AUni ws="qvm-x-akh">*muki</AUni> -<AUni ws="qvm-x-akl">*muki</AUni> -<AUni ws="qvm-x-ame">*muki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.487" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="db68c3dc-4cca-4b6a-858c-6af247af4da6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*muki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ecb1a77c-a6f0-48b4-af45-8671a868f0d4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="55af4f36-3a12-49db-8b5d-df6ae3b45ccc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *muki 
\entryTyp root 
\gENG hobgoblin 
\gSPN duende 
\e *muki 
\c N0 
\mp +FinalI 
\ach muqui 
\akh muki 
\acl muqui / _# 
\acl muqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl muque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl muki / _# 
\akl muki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl muke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame muki</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="00734aec-1d6f-45ab-ab85-f6c0ea7e6465"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aceiti; aceite</AUni> -<AUni ws="qvm-x-acl">aceiti; aceiti; aceite</AUni> -<AUni ws="qvm-x-akh">aceiti; aceite</AUni> -<AUni ws="qvm-x-akl">aceiti; aceiti; aceite</AUni> -<AUni ws="qvm-x-ame">aceiti; aceite</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+aceite.1</AUni> -<AUni ws="qvm-x-acl">+aceite.1</AUni> -<AUni ws="qvm-x-akh">+aceite.1</AUni> -<AUni ws="qvm-x-akl">+aceite.1</AUni> -<AUni ws="qvm-x-ame">+aceite.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.627" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="196586d9-80b9-493a-a9aa-0e020d04b7ad" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+aceite.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b92255fb-f575-4131-84a6-73197cce0f26" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="848ef876-8637-4c9f-8775-bcf97e6bbdfd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +aceite.1 
\entryTyp root 
\gENG oil 
\gSPN aceite 
\e +aceite.1 
\c N0 
\mp +FinalI 
\ach aceiti / ~_# 
\ach aceite / _# 
\akh aceiti / ~_# 
\akh aceite / _# 
\acl aceiti / ~_# 
\acl aceiti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl aceite +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl aceiti / ~_# 
\akl aceiti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl aceite +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame aceiti / ~_# 
\ame aceite / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="0073849b-2342-4d46-bfc8-34a636eab807" ownerguid="8adfcb0b-aaf3-46ac-adf7-04cdc7dae250"> -<Form> -<AUni ws="qvm-x-ach">mañösa</AUni> -<AUni ws="qvm-x-acl">mañösa</AUni> -<AUni ws="qvm-x-akh">mañösa</AUni> -<AUni ws="qvm-x-akl">mañösa</AUni> -<AUni ws="qvm-x-ame">mañösa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0073cf7d-0f78-49a8-8bd6-5cbae9fb4ef1" ownerguid="fa32115e-e389-47bd-91e1-61779172ccf2"> -<ExampleWords> -<AUni ws="en">make someone sick, spread sickness, infect, be infectious, be contagious, communicable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to causing someone to be sick?</AUni> -</Question> -</rt> -<rt class="MoInflAffMsa" guid="00740d5f-863f-4708-8c1c-58699413571e" ownerguid="852335c0-3900-49e5-8717-136f53f3ed79"> -<PartOfSpeech> -<objsur guid="30d07580-5052-4d91-bc24-469b8b2d7df9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0076aa10-71a5-436e-a685-3f856b9ea063" ownerguid="cde96694-79e5-44af-8d38-d988d1938e5f"> -<ExampleWords> -<AUni ws="en">to roof, a roof, roofing material</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to constructing a roof?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="007947c6-f72f-4274-986d-a7bde11e9732" ownerguid="189f8c29-f0ff-44b6-a0db-5b287c412a75"> -<ExampleWords> -<AUni ws="en">hostile, aggressive, combative, contentious, discordant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who is hostile?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="00797777-08b5-4ee0-b67a-861c2d9b99d1" ownerguid="0f7a8f2c-3e57-4cbd-8a9c-83754f0c6047"> -<Form> -<AUni ws="qvm-x-ach">räyu</AUni> -<AUni ws="qvm-x-acl">räyu; räyu; räyo</AUni> -<AUni ws="qvm-x-akh">räyu</AUni> -<AUni ws="qvm-x-akl">räyu; räyu; räyo</AUni> -<AUni ws="qvm-x-ame">räyu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="0079d262-e528-4a83-8208-007fa31976f7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">templu; templo</AUni> -<AUni ws="qvm-x-acl">templu; templu; templo</AUni> -<AUni ws="qvm-x-akh">templu; templo</AUni> -<AUni ws="qvm-x-akl">templu; templu; templo</AUni> -<AUni ws="qvm-x-ame">templu; templo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+templo</AUni> -<AUni ws="qvm-x-acl">+templo</AUni> -<AUni ws="qvm-x-akh">+templo</AUni> -<AUni ws="qvm-x-akl">+templo</AUni> -<AUni ws="qvm-x-ame">+templo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.855" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="541be4a6-6aa0-4d3d-863d-102900d395d0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+templo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6b1c895a-9ee0-4036-a4aa-01e69ea034c8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="588150b7-1543-4c07-8517-75e20441aecb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +templo 
\entryTyp root 
\gENG temple 
\gSPN templo 
\e +templo 
\c N0 
\ach templu / ~_# 
\ach templo / _# 
\akh templu / ~_# 
\akh templo / _# 
\acl templu / ~_# 
\acl templu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl templo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl templu / ~_# 
\akl templu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl templo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame templu / ~_# 
\ame templo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="007a29ea-1c25-4c6c-8e2c-c4ea4f630afb" ownerguid="d345142f-d51e-4023-a25a-2a4c0f1fbcbf"> -<ExampleWords> -<AUni ws="en">(no words in English)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What is a prepared field called?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="007d44db-21b3-409b-8bf7-00856e4b6bb4" ownerguid="98ce83bf-0aac-4133-8c84-e88cd7a37442"> -<Form> -<AUni ws="qvm-x-ach">música; müsica</AUni> -<AUni ws="qvm-x-acl">música; müsica</AUni> -<AUni ws="qvm-x-akh">música; müsica</AUni> -<AUni ws="qvm-x-akl">música; müsica</AUni> -<AUni ws="qvm-x-ame">música; müsica</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="007e9312-6c39-4b98-b36f-24a3009e24bb" ownerguid="92e441df-7e56-4e2c-b205-79a95800f567"> -<ExampleWords> -<AUni ws="en">competition, contest, championship, tournament, conflict, rivalry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a competition?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0080f1e6-54aa-45d6-9505-da5a488bc282"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">palma</AUni> -<AUni ws="qvm-x-acl">palma</AUni> -<AUni ws="qvm-x-akh">palma</AUni> -<AUni ws="qvm-x-akl">palma</AUni> -<AUni ws="qvm-x-ame">palma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+palma</AUni> -<AUni ws="qvm-x-acl">+palma</AUni> -<AUni ws="qvm-x-akh">+palma</AUni> -<AUni ws="qvm-x-akl">+palma</AUni> -<AUni ws="qvm-x-ame">+palma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.669" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e154398f-1ab2-4442-9ed5-151b7d4bb8c0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+palma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2db4a128-1dec-4363-b57b-29e084ca6a75" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="117c5a83-542b-4a46-8cc1-c331a62f9288" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +palma 
\entryTyp root 
\gENG palm 
\gSPN palmera 
\e +palma 
\c N0 
\ach palma 
\akh palma 
\acl palma 
\akl palma 
\ame palma</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="0084969c-3a18-4cba-b18f-86976fab3627" ownerguid="db17f6fd-68f7-4756-8166-2629a0407c75"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="08efa64b-ec7e-4fdd-b913-5dd58c4a97c9" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="365e1e94-9db7-4ef1-a1cb-28583eebcfd8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="0086704a-b8f8-4f35-a1dc-8a596ebd665f" ownerguid="64630f43-f9e4-40eb-a4db-b6a00156b5e1"> -<Form> -<AUni ws="qvm-x-ach">herïda</AUni> -<AUni ws="qvm-x-acl">herïda</AUni> -<AUni ws="qvm-x-akh">herïda</AUni> -<AUni ws="qvm-x-akl">herïda</AUni> -<AUni ws="qvm-x-ame">herïda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="008943a3-1acc-427a-b077-3e6f51378c5c" ownerguid="70452de9-2140-4d6d-99ae-4f141a2b507f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -<Sense> -<objsur guid="8825f180-b774-47d3-9faa-e76a889e064f" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="008af484-5254-47d5-af39-d13d3d3376c7" ownerguid="56984b2b-3417-49b4-a082-1a383551a9e9"> -<ExampleWords> -<AUni ws="en">labor pains, birth pain, birth pangs, throe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to labor pains?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="008cecc8-8fcc-439a-88eb-d8bd404d5da9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">n</AUni> -<AUni ws="qvm-x-acl">n</AUni> -<AUni ws="qvm-x-akh">n</AUni> -<AUni ws="qvm-x-akl">n</AUni> -<AUni ws="qvm-x-ame">n</AUni> -</Custom> -<AlternateForms> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="o" /> -<objsur guid="18b86caf-a560-48d6-ab1d-03882ed1fbd7" t="o" /> -</AlternateForms> -<DateCreated val="2022-9-23 18:26:20.609" /> -<DateModified val="2022-10-19 20:39:50.265" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="1" /> -<LexemeForm> -<objsur guid="eb4bc344-be42-4c27-95e2-7abd4a6c2b27" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">3P.V</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="o" /> -<objsur guid="5cc9a3bb-103d-4c28-b867-843434b1ecf2" t="o" /> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="51cc5088-f15f-43ad-802d-b00dfa615a64" t="o" /> -<objsur guid="8825f180-b774-47d3-9faa-e76a889e064f" t="o" /> -<objsur guid="c145c20b-5f42-4b9a-bde5-1d641f910a44" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx 3P.V 
\entryTyp suffix 
\gENG 3P.V 
\gSPN 3P.V 
\e 3P.V 
\c N0/N0 R1/R0 R0/R0 N1/N0 
\o 140 
\mp +FinalC 
\ach n 
\akh n 
\acl n 
\akl n 
\ame n 
\mcc 3P.V / ~_ 1P.C 
\mcc 3P.V / ~_ 2P.V 
\mcc 3P.V / {+FinalC} ~_ 
\mcc 3P / ~_ [poss] 
\mcc 3P.V / ~_ BEC 
\mcc 3P.V / ~_ [with] 
\mcc 3P.V / ~_ JUST2.C 1P.V 
\mcc 3.V / ~_ TOP JUST 3P 
\mcc 3P.V / ~_ 3P.C 
\mcc 3P.V / ~_... 3P.V</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="008df509-2829-43e8-84bb-da30a198c327" ownerguid="81d21551-f443-430f-b26a-11e481d95c37"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="009347af-4bcc-484d-88b1-165e079769a4"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">musyanaykipaq</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmPossibility" guid="00951e6f-2523-4ac9-a649-ad42c659cf83" ownerguid="d9d55b12-ea5e-11de-95ef-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Evnt</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.775" /> -<DateModified val="2022-9-23 16:55:11.775" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Event</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b7ea5156-ea5e-11de-9f9c-0013722f8dec" t="o" /> -<objsur guid="b7b37b86-ea5e-11de-80e9-0013722f8dec" t="o" /> -<objsur guid="b7bf673e-ea5e-11de-9c4d-0013722f8dec" t="o" /> -<objsur guid="b7f63d0e-ea5e-11de-9f02-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="00966ac0-e2d5-429f-80a1-6de9cee48e2d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">carpishu</AUni> -<AUni ws="qvm-x-acl">carpishu; carpishu; carpisho</AUni> -<AUni ws="qvm-x-akh">karpishu</AUni> -<AUni ws="qvm-x-akl">karpishu; karpishu; karpisho</AUni> -<AUni ws="qvm-x-ame">karpishu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*carpishu</AUni> -<AUni ws="qvm-x-acl">*carpishu</AUni> -<AUni ws="qvm-x-akh">*carpishu</AUni> -<AUni ws="qvm-x-akl">*carpishu</AUni> -<AUni ws="qvm-x-ame">*carpishu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.72" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="80271be4-e25e-4a94-ae49-dd6fa4faaf5b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*carpishu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2dfb79a5-5b6c-4ce9-bed3-9e48233c01fb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="90ccafc6-5304-4654-b57b-7caa6096f13b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *carpishu 
\entryTyp root 
\gENG 
\gSPN 
\e *carpishu 
\c N0 
\ach carpishu 
\akh karpishu 
\acl carpishu / _# 
\acl carpishu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl carpisho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl karpishu / _# 
\akl karpishu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl karpisho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame karpishu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="0097785e-d571-4ade-976f-1d512c3312c6" ownerguid="537dd732-414e-4265-9d6c-f241c6006415"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">break</AUni> -<AUni ws="es">cuspiar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8ab92a5e-56c7-4522-a6ee-6651dfd5ca7d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0097820b-43bb-4689-81c1-f1ee07c8c77d" ownerguid="0f07adb7-4387-4723-9800-8362e825ad45"> -<ExampleWords> -<AUni ws="en">block, slab</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a piece of rock?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="00979c11-b4f8-4c50-8df9-2b2073d4b7a6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tulpa</AUni> -<AUni ws="qvm-x-acl">tulpa</AUni> -<AUni ws="qvm-x-akh">tulpa</AUni> -<AUni ws="qvm-x-akl">tulpa</AUni> -<AUni ws="qvm-x-ame">tulpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tullpa</AUni> -<AUni ws="qvm-x-acl">*tullpa</AUni> -<AUni ws="qvm-x-akh">*tullpa</AUni> -<AUni ws="qvm-x-akl">*tullpa</AUni> -<AUni ws="qvm-x-ame">*tullpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.985" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e606b422-671c-4b9e-a1c8-36155d8172da" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tullpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6aff4012-66f8-4be8-8ea7-39cbabda325d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6a90f68a-a3b2-46ef-8fe8-dfb1599ddcfa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tullpa 
\entryTyp root 
\gENG hearth 
\gSPN fogón 
\e *tullpa 
\c N0 
\ach tulpa 
\akh tulpa 
\acl tulpa 
\akl tulpa 
\ame tulpa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0097ebd9-c112-4f97-ae83-2590f9c3665e" ownerguid="c223335b-4803-4f1b-bf4d-f1ee077513cf"> -<ExampleWords> -<AUni ws="en">private, secret, personal, innermost</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that only concerns you?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="009ba37f-1bc6-4fd8-8fda-b214ab8453f0" ownerguid="768aed05-dbc9-4caf-9461-76cb3720f908"> -<ExampleWords> -<AUni ws="en">be in pain, be in agony, feel pain, have a pain in, suffer, hurt (vi), bear pain, endure, agonize, feel bad, feel miserable, suffer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to being in pain?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="009c9229-cfaf-4f4d-b164-cee02e5d1f3f" ownerguid="a7ad13d3-e658-4b2a-beb4-18c6758a787b"> -<Form> -<AUni ws="qvm-x-ach">propïna</AUni> -<AUni ws="qvm-x-acl">propïna</AUni> -<AUni ws="qvm-x-akh">propïna</AUni> -<AUni ws="qvm-x-akl">propïna</AUni> -<AUni ws="qvm-x-ame">propïna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="009d9531-822c-45d4-9cc8-4b0bc9a39b94" ownerguid="95315cd7-fc3b-4467-af09-705d1c964552"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">paint</AUni> -<AUni ws="es">pintar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="06327adc-9fd2-4683-a5b7-4d7d4d802bdb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="00a08be3-c28b-49cf-af75-372159774a46" ownerguid="3b91ec57-ef8c-43a6-8237-6c7b35aaba32"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="00a0c11a-91df-4639-9564-610d81425ce9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pañue:lu</AUni> -<AUni ws="qvm-x-acl">pañue:lu; pañue:lu; pañue:lo</AUni> -<AUni ws="qvm-x-akh">pañue:lu</AUni> -<AUni ws="qvm-x-akl">pañue:lu; pañue:lu; pañue:lo</AUni> -<AUni ws="qvm-x-ame">pañue:lu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pañuelo.1</AUni> -<AUni ws="qvm-x-acl">+pañuelo.1</AUni> -<AUni ws="qvm-x-akh">+pañuelo.1</AUni> -<AUni ws="qvm-x-akl">+pañuelo.1</AUni> -<AUni ws="qvm-x-ame">+pañuelo.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.699" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5a51bab9-f251-4130-b3e9-0e911488d3ef" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pañuelo.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2e64bb97-2b53-402b-a764-c24749e89f58" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2f1db449-959c-48ed-a922-89052cfdb165" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pañuelo.1 
\entryTyp root 
\gENG handkerchief 
\gSPN pañuelo 
\e +pañuelo.1 
\c N0 
\ach pañue:lu 
\akh pañue:lu 
\acl pañue:lu / _# 
\acl pañue:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pañue:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pañue:lu / _# 
\akl pañue:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pañue:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pañue:lu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="00a13013-72ac-4a52-a4fa-9f65210728c9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">agulu</AUni> -<AUni ws="qvm-x-acl">agulu; agulo</AUni> -<AUni ws="qvm-x-akh">aqulu</AUni> -<AUni ws="qvm-x-akl">aqulu; aqulo</AUni> -<AUni ws="qvm-x-ame">aqulu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aqullu</AUni> -<AUni ws="qvm-x-acl">*aqullu</AUni> -<AUni ws="qvm-x-akh">*aqullu</AUni> -<AUni ws="qvm-x-akl">*aqullu</AUni> -<AUni ws="qvm-x-ame">*aqullu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.920" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5eea8f22-44c7-4c4e-aa8b-e359fb01c4c6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aqullu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a4ff4988-38de-4537-b332-9661d49600d4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2cb1c6f5-06d2-4c1c-9987-28f5b62dd370" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aqullu 
\entryTyp root 
\gENG crush 
\gSPN amollar 
\e *aqullu 
\c V2 
\ach agulu 
\akh aqulu 
\acl agulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl agulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl aqulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl aqulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame aqulu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="00a1c838-da5d-4ea2-b726-7a74450434e4" ownerguid="152ae262-6ff3-434d-addf-9f19188babd4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoInflAffMsa" guid="00a2abd0-a707-4643-aab1-ef104bcf7a41" ownerguid="f7eda99e-fde7-4f3f-ab22-a034e7f3c3b2"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="ca45d090-0c3b-4e36-9a40-58963588cdaf" t="r" /> -</Slots> -</rt> -<rt class="MoStemAllomorph" guid="00a424ef-143c-45e0-859e-a7620fa87e6e" ownerguid="a46546ee-4adb-46bc-b3fd-20a014278659"> -<Form> -<AUni ws="qvm-x-ach">cachcachya; cachcachyä</AUni> -<AUni ws="qvm-x-acl">cachcachya; cachcachyä</AUni> -<AUni ws="qvm-x-akh">kachkachya; kachkachyä</AUni> -<AUni ws="qvm-x-akl">kachkachya; kachkachyä</AUni> -<AUni ws="qvm-x-ame">kachkachya; kachkachyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="00aac4e4-70d6-424f-b9d8-519e33c5106c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ututu</AUni> -<AUni ws="qvm-x-acl">ututu; ututu; ututo</AUni> -<AUni ws="qvm-x-akh">ututu</AUni> -<AUni ws="qvm-x-akl">ututu; ututu; ututo</AUni> -<AUni ws="qvm-x-ame">ututu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ututu</AUni> -<AUni ws="qvm-x-acl">*ututu</AUni> -<AUni ws="qvm-x-akh">*ututu</AUni> -<AUni ws="qvm-x-akl">*ututu</AUni> -<AUni ws="qvm-x-ame">*ututu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.302" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="50e8d1a4-1b05-45c2-a9cb-da48c01154e0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ututu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4f067440-308a-415a-8431-6ac9449357ef" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c21945d6-75a7-4400-8581-198162054b95" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ututu 
\entryTyp root 
\gENG reed 
\gSPN 
\e *ututu 
\c N0 
\ach ututu 
\akh ututu 
\acl ututu / _# 
\acl ututu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ututo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ututu / _# 
\akl ututu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ututo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ututu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="00b0027e-987c-4f1e-a247-c1327f9e4f4e" ownerguid="0b91e3b3-bce9-4c66-97bd-3da15eddad7a"> -<Form> -<AUni ws="qvm-x-ach">micu</AUni> -<AUni ws="qvm-x-acl">micu; mico</AUni> -<AUni ws="qvm-x-akh">miku XYZ</AUni> -<AUni ws="qvm-x-akl">miku; miko</AUni> -<AUni ws="qvm-x-ame">miku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="00b17ec9-6506-4d11-9fc9-818fdeeefe85" ownerguid="33c5a3fe-b5d2-4689-bbdc-f838fbff1c10"> -<Form> -<AUni ws="qvm-x-ach">permiti</AUni> -<AUni ws="qvm-x-acl">permiti; permite</AUni> -<AUni ws="qvm-x-akh">permiti</AUni> -<AUni ws="qvm-x-akl">permiti; permite</AUni> -<AUni ws="qvm-x-ame">permiti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="00b4f363-0289-4b25-8abb-6ef9518566d7"> -<Analyses> -<objsur guid="1f170500-3a55-4f4d-aa23-c01d9540c88f" t="o" /> -</Analyses> -<Checksum val="1971586745" /> -<Form> -<AUni ws="qvm-x-akh">wawankuna</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="00b74f20-f24e-4f15-be24-9d8dfd4c49f3" ownerguid="41c94c0d-1305-44ef-8799-972c22fa3a1e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="00bbedc3-7d9d-42e4-a331-13882d44a401" ownerguid="34d2e65f-4a27-45a4-8afc-c53b886f9909"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="3c58ac69-5ba3-46c2-b028-3a8983d93ab1" t="o" /> -<objsur guid="dd83cd7e-f069-4cbe-896e-fbf26a4c940f" t="o" /> -<objsur guid="9f4617a5-0384-4a3a-961f-c3a55400b1a4" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="00bf87ad-9593-4094-a3e0-168e693f951c" ownerguid="c6e812df-19dd-4f8f-abfa-5ba01d91c7b6"> -<Form> -<AUni ws="qvm-x-ach">nübish</AUni> -<AUni ws="qvm-x-acl">nübish</AUni> -<AUni ws="qvm-x-akh">nübish</AUni> -<AUni ws="qvm-x-akl">nübish</AUni> -<AUni ws="qvm-x-ame">nübish</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="00bf9da7-4a8f-49fd-9187-13ccd5726d64" ownerguid="ba1e8d2b-7d3e-4b65-a9be-ee1a4063c796"> -<ExampleWords> -<AUni ws="en">reassure, reassuring, reassurance, put your mind at rest, put someone at their ease, put someone out of their misery</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to helping someone stop worrying?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="00c05fee-a61a-493d-9a4f-4a3e57b3ad41" ownerguid="bf5175f6-fbe4-4ac6-9041-f8aa78b7ac78"> -<ExampleWords> -<AUni ws="en">gas chamber, electric chair, gallows, gibbet, guillotine, lethal injection, noose, scaffold, cross, stake, sword</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What things are used to execute someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="00c0e93e-8653-42eb-b1f2-62606bccb830" ownerguid="e8204323-0906-4533-a3ce-32bb20540db2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="00c12a1d-8705-4049-8a63-e6ac8d3ccbe9" ownerguid="f56a2511-10cc-4829-940d-49051429bfba"> -<ExampleWords> -<AUni ws="en">liquid (adj), molten</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is liquid?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="00c1df90-d02e-4f6a-8171-453f487131ae" ownerguid="d2c7f746-a2fd-4e12-bff5-84c612e376bd"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">na</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">na</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">na</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">na</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">na</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7a9a0db9-5eb5-414c-9dd3-907a54abc86b" t="r" /> -</Morph> -<Msa> -<objsur guid="a91771ad-8785-4e3e-b6f8-793820e3a8bd" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="00c2946f-882c-4da8-8759-d012bc0b8c2d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">te:ma</AUni> -<AUni ws="qvm-x-acl">te:ma</AUni> -<AUni ws="qvm-x-akh">te:ma</AUni> -<AUni ws="qvm-x-akl">te:ma</AUni> -<AUni ws="qvm-x-ame">te:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tema</AUni> -<AUni ws="qvm-x-acl">+tema</AUni> -<AUni ws="qvm-x-akh">+tema</AUni> -<AUni ws="qvm-x-akl">+tema</AUni> -<AUni ws="qvm-x-ame">+tema</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.855" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="41d64812-70c3-4bfb-9af1-36e46ca287eb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tema</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="82a5aa20-638a-4a29-a843-924f7afd7f87" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f73928c2-ab4c-4528-be38-6d3b180b7615" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tema 
\entryTyp root 
\gENG topic 
\gSPN 
\e +tema 
\c N0 
\ach te:ma 
\akh te:ma 
\acl te:ma 
\akl te:ma 
\ame te:ma</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="00c312da-e69b-43c4-a9a8-db3a85206fc7" ownerguid="8328a243-fc86-4339-9563-c9cbe69d0955"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shu; shu; sho</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shu; shu; sho</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="623ce4fc-c83d-436b-8252-481bc2e79754" t="r" /> -</Morph> -<Msa> -<objsur guid="7fd5787e-fab9-4d36-bb4a-82d01c28f736" t="r" /> -</Msa> -<Sense> -<objsur guid="bf6a441e-59e4-4e54-9969-9a29db438690" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="00c46f53-d1e5-4fea-a267-7240621d8273" ownerguid="00d638ab-1ac8-4359-9f4c-707afe84e413"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="00c60237-8260-44be-88d0-a9ba66be4733" ownerguid="1d961093-aaf4-4101-b5f9-a50a1efc7dd1" /> -<rt class="MoStemMsa" guid="00c99c5d-be06-47c4-b135-99472571f673" ownerguid="2862f81c-3457-42fd-834d-32a18246a589"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="00cea761-e13c-485d-ba1a-7a411be52da7" ownerguid="56f459a1-d5cf-47b3-9749-f4b9c71f58f9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">flashlight</AUni> -<AUni ws="es">linterna</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c292c4b0-114f-416c-9f24-4f3fa3206f63" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="00cf30ee-24b0-4e3d-b186-9bc1ef75c50d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">auquis</AUni> -<AUni ws="qvm-x-acl">auquis</AUni> -<AUni ws="qvm-x-akh">awkis</AUni> -<AUni ws="qvm-x-akl">awkis</AUni> -<AUni ws="qvm-x-ame">awkis</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*awkis</AUni> -<AUni ws="qvm-x-acl">*awkis</AUni> -<AUni ws="qvm-x-akh">*awkis</AUni> -<AUni ws="qvm-x-akl">*awkis</AUni> -<AUni ws="qvm-x-ame">*awkis</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.890" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3bae45d6-f0d1-44f8-bfac-b627f370f68a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*awkis</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a13a3068-7667-4a07-8b26-0f45f661cd40" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b8f812f1-8b5e-4066-a9cb-56bf837fae66" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *awkis 
\entryTyp root 
\gENG old 
\gSPN viejo 
\e *awkis 
\c N0 
\mp +FinalC 
\ach auquis 
\akh awkis 
\acl auquis 
\akl awkis 
\ame awkis</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="00d04806-0836-427e-959b-a56d42615f1b" ownerguid="3d1289b3-6e97-40a4-9ffc-10e13121768d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="00d4b3d6-6e1d-4e28-a9ec-e5701eeacd8f" ownerguid="6736dafe-2916-40f6-b6b7-b6300100933b"> -<ExampleWords> -<AUni ws="en">sweet dreams, pleasant dreams</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What is a good dream called?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="00d638ab-1ac8-4359-9f4c-707afe84e413"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">desgracia</AUni> -<AUni ws="qvm-x-acl">desgracia</AUni> -<AUni ws="qvm-x-akh">desgracia</AUni> -<AUni ws="qvm-x-akl">desgracia</AUni> -<AUni ws="qvm-x-ame">desgracia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+desgracia</AUni> -<AUni ws="qvm-x-acl">+desgracia</AUni> -<AUni ws="qvm-x-akh">+desgracia</AUni> -<AUni ws="qvm-x-akl">+desgracia</AUni> -<AUni ws="qvm-x-ame">+desgracia</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.386" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f45467b1-cd1f-481d-902e-70e18601c495" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+desgracia</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="00c46f53-d1e5-4fea-a267-7240621d8273" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8e1f2b3e-62bc-45f9-a7ad-7add06fe101f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +desgracia 
\entryTyp root 
\gENG misfortune 
\gSPN desgracia 
\e +desgracia 
\c N0 
\ach desgracia 
\akh desgracia 
\acl desgracia 
\akl desgracia 
\ame desgracia</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="00d642ae-3b07-4202-a777-9b2f12460309"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fiulayla</AUni> -<AUni ws="qvm-x-acl">fiulayla</AUni> -<AUni ws="qvm-x-akh">fiwlayla</AUni> -<AUni ws="qvm-x-akl">fiwlayla</AUni> -<AUni ws="qvm-x-ame">fiwlayla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*fiwllaylla</AUni> -<AUni ws="qvm-x-acl">*fiwllaylla</AUni> -<AUni ws="qvm-x-akh">*fiwllaylla</AUni> -<AUni ws="qvm-x-akl">*fiwllaylla</AUni> -<AUni ws="qvm-x-ame">*fiwllaylla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.558" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="16fb9d11-13e1-4dd2-9672-4371461a0bca" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*fiwllaylla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="387ca6ca-8c83-4b70-ace5-981dba4287e1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0b4071ea-5a42-4451-813e-d9344ed21c52" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *fiwllaylla 
\entryTyp root 
\gENG quickly 
\gSPN rápidamente 
\e *fiwllaylla 
\c R0 
\ach fiulayla 
\akh fiwlayla 
\acl fiulayla 
\akl fiwlayla 
\ame fiwlayla 
\i JOB 9.26 Lamarpa büqui fiwlayla pasaqno y chipshata anka fiwlayla apaqnömi vïdäpis ushakaykan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="00d8ded6-c83d-4182-a15b-75298c2d78cb" ownerguid="a8858d53-24ec-4a5a-9f96-b0403126e302"> -<Form> -<AUni ws="qvm-x-ach">calpa</AUni> -<AUni ws="qvm-x-acl">calpa</AUni> -<AUni ws="qvm-x-akh">kalpa</AUni> -<AUni ws="qvm-x-akl">kalpa</AUni> -<AUni ws="qvm-x-ame">kalpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="00da15ee-5246-4d26-aeb2-f68643d4f7f7" ownerguid="6fbe39fb-a4cb-4fcf-830b-8875fd4324e0"> -<ExampleWords> -<AUni ws="en">compulsion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the act of forcing someone to do something?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="00dde3be-e53d-42c3-b3ff-717e25cbffb6" ownerguid="b9c752a4-66be-493c-8955-cfa5324a54c1"> -<Abbreviation> -<AUni ws="en">4.9.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.296" /> -<DateModified val="2022-9-23 16:55:8.296" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to praying--talking to God.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33M Pray</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Pray</AUni> -</Name> -<Questions> -<objsur guid="3554b527-35dc-4459-980f-026b908e9ab6" t="o" /> -<objsur guid="2e108cb3-817d-42e1-b7fc-51ab6a6ad905" t="o" /> -<objsur guid="d7c5e8fc-35ba-4e4c-bb07-8abf29dccc42" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="00de8f35-a79f-44fa-834e-55d786c8f87b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chuya</AUni> -<AUni ws="qvm-x-acl">chuya</AUni> -<AUni ws="qvm-x-akh">chuya</AUni> -<AUni ws="qvm-x-akl">chuya</AUni> -<AUni ws="qvm-x-ame">chuya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chuya</AUni> -<AUni ws="qvm-x-acl">*chuya</AUni> -<AUni ws="qvm-x-akh">*chuya</AUni> -<AUni ws="qvm-x-akl">*chuya</AUni> -<AUni ws="qvm-x-ame">*chuya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.356" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4ef2d27b-c0ad-43c3-9d63-89a8778130a9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chuya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ea580de1-bd7f-4b71-af8e-11a223088095" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4cbb35a5-7d28-43eb-92d8-f4acab0c8c50" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chuya 
\entryTyp root 
\gENG pure 
\gSPN puro 
\e *chuya 
\c N0 
\ach chuya 
\akh chuya 
\acl chuya 
\akl chuya 
\ame chuya</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="00de9f0d-e604-42b0-b0a2-8568deff6e1c" ownerguid="4affa918-4258-4b12-8241-d04191d05abe"> -<Form> -<AUni ws="qvm-x-ach">shunta</AUni> -<AUni ws="qvm-x-acl">shunta</AUni> -<AUni ws="qvm-x-akh">shunta</AUni> -<AUni ws="qvm-x-akl">shunta</AUni> -<AUni ws="qvm-x-ame">shunta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="00e25183-b413-425e-b6a1-cba79632e3ea"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">turitu</AUni> -<AUni ws="qvm-x-acl">turitu; turitu; turito</AUni> -<AUni ws="qvm-x-akh">turitu</AUni> -<AUni ws="qvm-x-akl">turitu; turitu; turito</AUni> -<AUni ws="qvm-x-ame">turitu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+torito.1</AUni> -<AUni ws="qvm-x-acl">+torito.1</AUni> -<AUni ws="qvm-x-akh">+torito.1</AUni> -<AUni ws="qvm-x-akl">+torito.1</AUni> -<AUni ws="qvm-x-ame">+torito.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.954" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="872d87b0-7b5c-4ed6-9375-be0d29f3b4db" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+torito.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7cca2586-fc04-4481-a670-60d64ed45f3d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="946ec21e-c106-4862-a742-fef9bbead297" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +torito.1 
\entryTyp root 
\gENG young.bull 
\gSPN torito 
\e +torito.1 
\c N0 
\mp +assimilated 
\ach turitu 
\akh turitu 
\acl turitu / _# 
\acl turitu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl turito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl turitu / _# 
\akl turitu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl turito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame turitu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="00e2752a-00fa-416c-aee4-c41986c35cf9" ownerguid="9d216f24-32de-4ff4-821e-4c31294215e1"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="00e2f85e-0318-4a04-920b-9905a0d6cbf8" ownerguid="0d2167a3-9787-43a6-bdec-ac3010926e0a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="00e353bb-63af-4ee6-b012-8c517cb725ac" ownerguid="6c6259f0-eca6-4a30-8662-eedbaf293527"> -<ExampleWords> -<AUni ws="en">fickle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a person who keeps changing his mind?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="00e70d5b-6590-42c3-a259-f9b519c97191" ownerguid="e7ceefd0-f566-44c5-ba12-60826274152d"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">MAT 10.10 Tsaynoqpis ama apapäkunkitsu mirkapaykita, trukakärinaykipaq röpaykikunata ni garrutikikunatapis.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="00eacb31-e002-4fcf-a142-3874bbbf1c15" ownerguid="b47d2604-8b23-41e9-9158-01526dd83894"> -<ExampleWords> -<AUni ws="en">earthly, terrestrial</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that belongs to this world?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="00ebaa20-7ed7-43bd-a32b-c7f51cfd5023" ownerguid="af399519-5d7c-4100-9c79-8162cb4641cb"> -<ExampleWords> -<AUni ws="en">Slow down! Take it easy! Take your time! Whoa! (horse)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What do you say to someone when you want him to do something slowly?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="00ee6cd2-c855-4121-8ddc-f21fcd970bf0" ownerguid="f13432f6-42c8-4c0b-8bce-72ba1d8f7922"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">have.left.over</AUni> -<AUni ws="es">sobrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a06951ab-d085-4ae1-9eb2-23300aba7ee7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="00efb4d1-3451-4957-b1a4-a7b23d716597" ownerguid="139409c3-7860-4586-897f-85ba3226046c"> -<ExampleWords> -<AUni ws="en">without result, without effect, in vain, to no avail, with no result, have no discernible effect, pointless, useless, worthless, be left with nothing, not yield</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something had no result?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="00f24232-d84e-42d0-b378-eac3897323c6" ownerguid="2cd48908-8f12-4e0f-a22e-87237618ce9f"> -<ExampleWords> -<AUni ws="en">vindicate, exonerate, justify, warrant, exculpate, acquit, clear, set right</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to vindicating someone?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="00f2c3a8-65a7-4ae4-8a4d-b63d7f3f0489" ownerguid="2129b102-5acc-4824-ad82-f0663cced42a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="00f3ea3e-93b6-4ccc-8d98-3903577f3f94" ownerguid="b5aa5873-4c66-4d2d-935a-18e0ab231dbb"> -<ExampleWords> -<AUni ws="en">uncoordinated, awkward, ungainly, clumsy, gawky, inelegant, klutz, ungraceful, lumbering, have two left feet, gangling</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who moves in a clumsy way?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="00f5218c-ad6a-44ad-b7be-2bf92c74a80e" ownerguid="744d1402-05f5-4491-9c15-a5af03595edb"> -<ExampleWords> -<AUni ws="en">bad, base, carnal, corrupt, dangerous, decadent, degenerate, depraved, dishonorable, evil, felonious, foul, heinous, immoral, improper, impure, iniquitous, low-minded, low, miscreant, nasty, nefarious, no good, reprobate (adj), sinful, sinister, terrible, unethical, unholy, unjust, unrighteous, vile, villainous, wicked</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is bad?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="00f6416b-c11d-427d-8776-e90a845aa41c" ownerguid="a5543b3c-5e6c-4731-ad29-1d1954a46f1a"> -<Form> -<AUni ws="qvm-x-ach">ytsä</AUni> -<AUni ws="qvm-x-acl">ytsä</AUni> -<AUni ws="qvm-x-akh">ytsä</AUni> -<AUni ws="qvm-x-akl">ytsä</AUni> -<AUni ws="qvm-x-ame">ytsä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="00f6815b-3e10-4121-af0c-7acaeacfd293" ownerguid="10ebefab-eeaa-4ce5-962b-75e039facd05"> -<Form> -<AUni ws="qvm-x-ach">waytiga</AUni> -<AUni ws="qvm-x-acl">waytiga</AUni> -<AUni ws="qvm-x-akh">waytiqa</AUni> -<AUni ws="qvm-x-akl">waytiqa</AUni> -<AUni ws="qvm-x-ame">waytiqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="00f8aa99-afe0-4634-b463-7790753770e1" ownerguid="ba1e8d2b-7d3e-4b65-a9be-ee1a4063c796"> -<ExampleWords> -<AUni ws="en">Thank God! Thank goodness! What a relief!</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What do people say when they don't need to worry anymore?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="00f90586-d4e7-456c-ab95-5e4157b47375" ownerguid="38bbb33a-90bf-4a2c-a0e5-4bde7e134bd9"> -<ExampleWords> -<AUni ws="en">feeling, sensation, perception</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something that you sense?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="00f9c03d-3c02-4d3a-aeec-3d17c778c77a" ownerguid="3ce2a472-0a9b-4776-9727-5770a13f8c5a"> -<Form> -<AUni ws="qvm-x-ach">ichicsanayla</AUni> -<AUni ws="qvm-x-acl">ichicsanayla</AUni> -<AUni ws="qvm-x-akh">ichiksanayla</AUni> -<AUni ws="qvm-x-akl">ichiksanayla</AUni> -<AUni ws="qvm-x-ame">ichiksanayla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="00fa93fb-6a91-45a4-b6d9-53275280c55d" ownerguid="868ef7d2-d980-4024-81dc-9b20c8ee9201"> -<Form> -<AUni ws="qvm-x-ach">milga</AUni> -<AUni ws="qvm-x-acl">milga</AUni> -<AUni ws="qvm-x-akh">milga</AUni> -<AUni ws="qvm-x-akl">milga</AUni> -<AUni ws="qvm-x-ame">milga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="00fced91-573a-4814-a689-b3985362864e" ownerguid="6c64a7bf-5ee7-4a87-951e-d60522364782"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="00fd1904-e58e-402e-b15a-f4acd87191d2" ownerguid="5cccfc11-4c8b-461f-bab8-e6e5ac587f6e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="00fd6b27-f641-48bc-be5b-572dbfeaeb88"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">recupera</AUni> -<AUni ws="qvm-x-acl">recupera</AUni> -<AUni ws="qvm-x-akh">recupera</AUni> -<AUni ws="qvm-x-akl">recupera</AUni> -<AUni ws="qvm-x-ame">recupera</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+recuperar</AUni> -<AUni ws="qvm-x-acl">+recuperar</AUni> -<AUni ws="qvm-x-akh">+recuperar</AUni> -<AUni ws="qvm-x-akl">+recuperar</AUni> -<AUni ws="qvm-x-ame">+recuperar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.307" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1fc9f43c-f64f-4db7-b9d5-f2a32ece534a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+recuperar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2066be46-f4ae-41da-9496-4a949d6ff527" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="71e2c416-ad97-451a-a76c-ce348da61e43" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +recuperar 
\entryTyp root 
\gENG recover 
\gSPN recuperar 
\e +recuperar 
\c V1 
\ach recupera 
\akh recupera 
\acl recupera 
\akl recupera 
\ame recupera</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="00fecaea-daef-4906-b4d6-65daf9008591" ownerguid="e67f4c6c-1636-4a04-a14a-8dfb1f375003"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="39a72fc6-9fd8-47e6-ae8b-0c78bca4b392" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="00fee43d-7a5d-4104-aa18-1a20de4986ce" ownerguid="3fb6e4bb-c608-4d3e-bd47-193a546b6c26"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="010001ba-57fd-476a-a9c1-d133a9979c5d" ownerguid="77f0d0dc-61ee-4373-9879-35a7059bd892"> -<ExampleWords> -<AUni ws="en">fill, filling, drill, cap, root canal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to fixing a tooth?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="01018069-61ca-4a07-8e5f-da7669c47508" ownerguid="c8a9214e-aa92-441e-9691-0a0e48cacc83"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">podrido</AUni> -<AUni ws="es">rotten</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f2fc3b45-eaf1-4cc1-9f9c-5b117c05a76c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="0105615f-0a96-4d08-ab00-ca4b4473de39" ownerguid="749ad6fe-5509-4e45-b236-84ea12de102e"> -<Abbreviation> -<AUni ws="en">6.8.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being stingy.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Stingy</AUni> -</Name> -<Questions> -<objsur guid="bb054773-90fb-42ab-ab6e-937ff94a56ff" t="o" /> -<objsur guid="a195e7e1-b98f-4135-90cf-f7acc88d403f" t="o" /> -<objsur guid="3f0ca873-b941-4c1b-82a7-a0ca91b7704f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="0105e4a9-ae7f-481e-97d0-5e88f1992c1e" ownerguid="0cc62b4a-d5ff-4f45-83d1-e2b46e5d159a"> -<ExampleWords> -<AUni ws="en">afternoon, mid afternoon, pm, postmeridian, post meridiem</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the time between noon and sunset?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0108ee33-63b3-4d4c-8937-4bbce4d62898"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">respondi</AUni> -<AUni ws="qvm-x-acl">respondi; responde</AUni> -<AUni ws="qvm-x-akh">respondi</AUni> -<AUni ws="qvm-x-akl">respondi; responde</AUni> -<AUni ws="qvm-x-ame">respondi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+responder</AUni> -<AUni ws="qvm-x-acl">+responder</AUni> -<AUni ws="qvm-x-akh">+responder</AUni> -<AUni ws="qvm-x-akl">+responder</AUni> -<AUni ws="qvm-x-ame">+responder</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.338" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="16d0fc05-aaa6-46fb-a769-3bb2d42cbca9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+responder</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="27d416a7-e31d-41b6-9849-8da33931189b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aa8f939d-8f9f-45b9-87b3-eb4b8e43d93e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +responder 
\entryTyp root 
\gENG respond 
\gSPN responder 
\e +responder 
\c V1 
\mp +FinalI 
\ach respondi 
\akh respondi 
\acl respondi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl responde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl respondi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl responde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame respondi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="010b88bd-ed06-4c27-a618-d4c04216b088" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<ExampleWords> -<AUni ws="en">pastor, priest, clergyman, diviner</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What are the occupations in religion?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="010d2f68-985e-449e-8b44-f3b48064a916" ownerguid="d030f0c7-31a3-47da-be35-46f1eba63ae9"> -<ExampleWords> -<AUni ws="en">admirer, fan, (art)-lover, lover of, enthusiast, devotee</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a person who likes something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="010e409f-e36d-4eb7-8e09-60e4d68ba46d" ownerguid="907f4c95-825f-4183-875f-02f6a18b8961"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="010ff7cd-59b8-4fe8-889f-be2ced1b042e" ownerguid="eddfebbd-7e9b-411a-b5d7-478fda696ff2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">temptation</AUni> -<AUni ws="es">tentación</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3e9895f5-b1e8-4244-9ef7-acfcbe1306ec" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="01112706-32ad-48ec-ae23-9c24a8c957f7" ownerguid="3d48e0df-8e07-4e2f-9e29-19cc96df1bc1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">animal</AUni> -<AUni ws="es">animal</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8ad8868f-ea73-42d1-9bd0-34dcf085f98f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="0112d278-7750-4232-8478-588d768c4ac3" ownerguid="f53eda70-9618-400b-b728-ede65f970090"> -<Form> -<AUni ws="qvm-x-ach">gargash</AUni> -<AUni ws="qvm-x-acl">gargash</AUni> -<AUni ws="qvm-x-akh">qarqash</AUni> -<AUni ws="qvm-x-akl">qarqash</AUni> -<AUni ws="qvm-x-ame">qarqash</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="01138787-44fa-4fd3-a250-4191dcd5b2d8" ownerguid="dbc24270-ada5-48a5-87b7-447a0dd63e61"> -<Form> -<AUni ws="qvm-x-ach">poderösu</AUni> -<AUni ws="qvm-x-acl">poderösu; poderösu; poderöso</AUni> -<AUni ws="qvm-x-akh">poderösu</AUni> -<AUni ws="qvm-x-akl">poderösu; poderösu; poderöso</AUni> -<AUni ws="qvm-x-ame">poderösu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="01141d9c-c12d-49e8-a1a6-6d1761d87245" ownerguid="cf15ff4c-effd-4807-bbc2-dee9eef7d588"> -<Form> -<AUni ws="qvm-x-ach">yawa</AUni> -<AUni ws="qvm-x-acl">yawa</AUni> -<AUni ws="qvm-x-akh">yawa</AUni> -<AUni ws="qvm-x-akl">yawa</AUni> -<AUni ws="qvm-x-ame">yawa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="01153fbf-4022-4d30-9d15-c12f05feb63d" ownerguid="ec79e90e-ecd3-497f-bc14-ac64181f53d7"> -<ExampleWords> -<AUni ws="en">harmful, damaging, be bad for</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that harms someone?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="01184d2a-7488-4439-927e-6d306d383f48"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">asenta</AUni> -<AUni ws="qvm-x-acl">asenta</AUni> -<AUni ws="qvm-x-akh">asenta</AUni> -<AUni ws="qvm-x-akl">asenta</AUni> -<AUni ws="qvm-x-ame">asenta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+asentar</AUni> -<AUni ws="qvm-x-acl">+asentar</AUni> -<AUni ws="qvm-x-akh">+asentar</AUni> -<AUni ws="qvm-x-akl">+asentar</AUni> -<AUni ws="qvm-x-ame">+asentar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.840" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="18f9a61c-88d0-4234-a962-056de3517d8d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+asentar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e3836d5d-d8d7-462d-9dee-0e8e695a55cd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="62753804-1184-404e-a9b0-310670a7e91a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +asentar 
\entryTyp root 
\gENG execute 
\gSPN ejecutar 
\e +asentar 
\c V1 
\ach asenta 
\akh asenta 
\acl asenta 
\akl asenta 
\ame asenta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="011ba232-abe5-4cbb-9530-0fc73d59c77b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">barre:ta</AUni> -<AUni ws="qvm-x-acl">barre:ta</AUni> -<AUni ws="qvm-x-akh">barre:ta</AUni> -<AUni ws="qvm-x-akl">barre:ta</AUni> -<AUni ws="qvm-x-ame">barre:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+barreta</AUni> -<AUni ws="qvm-x-acl">+barreta</AUni> -<AUni ws="qvm-x-akh">+barreta</AUni> -<AUni ws="qvm-x-akl">+barreta</AUni> -<AUni ws="qvm-x-ame">+barreta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.959" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="230b2045-7512-41d4-ba24-05039422fa83" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+barreta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cce1e207-b27e-41c0-880a-5a9a6ef3868a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f91c57ae-e016-4832-92ce-c2b8591fdf3a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +barreta 
\entryTyp root 
\gENG small.bar 
\gSPN barreta 
\e +barreta 
\c N0 
\ach barre:ta 
\akh barre:ta 
\acl barre:ta 
\akl barre:ta 
\ame barre:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="011cb6b7-0952-4331-a184-e4d4138b2c6b" ownerguid="9451e323-1237-45b4-8277-6f7089e5a0ec"> -<Form> -<AUni ws="qvm-x-ach">café; cafë</AUni> -<AUni ws="qvm-x-acl">café; cafë</AUni> -<AUni ws="qvm-x-akh">café; cafë</AUni> -<AUni ws="qvm-x-akl">café; cafë</AUni> -<AUni ws="qvm-x-ame">café; cafë</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="01243524-136c-4a04-89d1-dab823dc09b4" ownerguid="7ff4fa9d-4f87-4ec4-86de-dac7ed2b938f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">matter</AUni> -<AUni ws="es">asunto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5c52dd52-9770-43db-971c-ec2412a949bb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="0128d027-3c04-4277-84c7-fd4985e00616" ownerguid="bca1d45b-f438-497e-b9b2-1f0e67f3a410"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="Segment" guid="012a7b73-dd76-40ff-a7e5-ad8368c95bc3" ownerguid="afaf3c09-e7ae-48ec-84ea-141cd4fe563a"> -<Analyses> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="fa7aeb71-200a-4a5d-9436-13faa1972fea" t="r" /> -<objsur guid="25651c34-3e31-419d-86b5-cda6907f0a4f" t="r" /> -<objsur guid="7beb2bdf-1e77-4955-99ec-39f893293020" t="r" /> -<objsur guid="a85a5670-81ba-47b9-8443-95e8be60ebec" t="r" /> -<objsur guid="6cd54d54-d8ef-4c9b-a4f2-0e756de471c3" t="r" /> -<objsur guid="4fccec2d-58a4-466f-a087-a79d6bf13b57" t="r" /> -<objsur guid="153ebcc9-8ac0-4a9b-aae9-7640c4180df3" t="r" /> -<objsur guid="4bd33b73-ca58-4fbb-9575-41275fd181b3" t="r" /> -<objsur guid="26ca52f1-b5e7-41e8-aa2e-cf2572524687" t="r" /> -</Analyses> -<BeginOffset val="12" /> -</rt> -<rt class="LexEntry" guid="012d29ee-971b-4a9d-9b09-3561fc71c81d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cu; ca</AUni> -<AUni ws="qvm-x-acl">cu; co; ca</AUni> -<AUni ws="qvm-x-akh">ku; ka</AUni> -<AUni ws="qvm-x-akl">ku; ko; ka</AUni> -<AUni ws="qvm-x-ame">ku; ka</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.508" /> -<DateModified val="2022-10-15 16:15:39.254" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="82e9c3df-e95c-44d6-998d-f3779aad6808" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">DO1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1b3c6562-1662-468e-b5c0-fcf36256167d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3bd6d449-e91e-40d2-ad65-dcb830cb4cbc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx DO1 
\entryTyp suffix 
\gENG DO1 
\gSPN HACER1 
\e DO1 
\c N0/V1 
\o 020 
\mp PMlowered 
\ach cu 
\ach ca morphlowered 
\akh ku 
\akh ka morphlowered 
\acl cu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl co +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ca morphlowered 
\akl ku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ka morphlowered 
\ame ku 
\ame ka morphlowered 
\mcc DO1 / [TakeDO1] _ 
\mcc DO1 / ~_ NOM12PUR 
\mcc DO1 / ~_ PLALL 
\mcc DO1 / ~_ POL 
\mcc DO1 / ~_ PSTN 
\mcc DO1 / ~_ NOM | force DO1 NMN</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="012d3508-7a6f-4dec-a3bf-ba19fd580a89" ownerguid="3448a62a-7774-463d-a8cd-af8cfa753338"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="012e3458-d6e7-4962-b599-e91f2b9fd617" ownerguid="21a35c7d-a266-42fb-ba87-8b0ba75318a8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0130aa4b-8d04-4897-bbb2-a907ddeb4fea" ownerguid="a19e219a-6cc1-4057-a8d9-18554ae88de1"> -<ExampleWords> -<AUni ws="en">hold, cradle (in arms), rock</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to holding a baby?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="01324d82-8341-4e7b-bf1b-314a1004f27e" ownerguid="8a4f1603-4b63-4a10-8fda-fa6368a4d676"> -<Form> -<AUni ws="qvm-x-ach">jampi</AUni> -<AUni ws="qvm-x-acl">jampi; jampe</AUni> -<AUni ws="qvm-x-akh">jampi</AUni> -<AUni ws="qvm-x-akl">jampi; jampe</AUni> -<AUni ws="qvm-x-ame">hampi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="01325653-3e96-4d98-bdc0-c568db07e754" ownerguid="d9256aa4-556d-4225-b533-1414b403a2ce" /> -<rt class="CmDomainQ" guid="01326043-4ba1-454d-a5d0-d351d7943236" ownerguid="284433df-7b37-4e63-a614-78520c483213"> -<ExampleWords> -<AUni ws="en">fly, hover, dive-bomb, crawl</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) How do insects move?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0134f6fe-9b56-4d4e-ae56-f1fd5e58493f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">perteneci</AUni> -<AUni ws="qvm-x-acl">perteneci; pertenece</AUni> -<AUni ws="qvm-x-akh">perteneci</AUni> -<AUni ws="qvm-x-akl">perteneci; pertenece</AUni> -<AUni ws="qvm-x-ame">perteneci</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pertenecer</AUni> -<AUni ws="qvm-x-acl">+pertenecer</AUni> -<AUni ws="qvm-x-akh">+pertenecer</AUni> -<AUni ws="qvm-x-akl">+pertenecer</AUni> -<AUni ws="qvm-x-ame">+pertenecer</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.810" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ece276b9-988c-4c97-a3c0-ab9a7e8e57da" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pertenecer</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b78a4ccd-e551-4718-aba6-a85c55da1229" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4fe2be17-aaf4-418f-bdad-b475bdb77572" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pertenecer 
\entryTyp root 
\gENG belong 
\gSPN pertenecer 
\e +pertenecer 
\c V2 
\mp +FinalI 
\ach perteneci 
\akh perteneci 
\acl perteneci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pertenece +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl perteneci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pertenece +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame perteneci</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="01354a26-6ba0-4629-8216-c8b3aa11cc9e" ownerguid="fda0c1ac-5728-4ba2-9f8e-827f161b5bb1"> -<ExampleWords> -<AUni ws="en">watch, observe, look on, see (a movie)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to watching something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="013c2704-8624-498b-b146-1c838d992032" ownerguid="12b6934d-3a4a-4623-995f-865f401349ab"> -<ExampleWords> -<AUni ws="en">eat more than your share, be greedy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to eating more than your share?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="013d17c5-34f8-462f-8fbb-f8cf53541260" ownerguid="9f828e9f-5fb4-4d30-bea1-2f4888b56d35"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="013edc49-6b0f-426e-ae2c-6f0ed77cdefd" ownerguid="275e8994-3b50-4690-b349-12e6f1b359a8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">chaya</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">chaya</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">chaya</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">chaya</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">chaya</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e869925b-126f-494c-b59b-39dc4a0e04ed" t="r" /> -</Morph> -<Msa> -<objsur guid="a25ee531-622d-4a1e-bef2-feee1c1de264" t="r" /> -</Msa> -</rt> -<rt class="LexExampleSentence" guid="013f658e-8c8d-40f0-8b8b-af8860ec82f0" ownerguid="5ecbcc37-2fb1-403b-a8e4-a6a3fee8a140"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Banderaraycanqui.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="013f9a25-8566-46ea-9d96-a2b6f9870bd8" ownerguid="1e2b3ba4-8568-43e3-b010-1ed75a2982f9"> -<Form> -<AUni ws="qvm-x-ach">mäña</AUni> -<AUni ws="qvm-x-acl">mäña</AUni> -<AUni ws="qvm-x-akh">mäña</AUni> -<AUni ws="qvm-x-akl">mäña</AUni> -<AUni ws="qvm-x-ame">mäña</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="01441207-4935-49a5-a192-16d949f5606c" ownerguid="6745c89d-1fcd-44b8-be4b-9fd9d62f64e7"> -<Abbreviation> -<AUni ws="en">4.2.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.216" /> -<DateModified val="2022-9-23 16:55:8.216" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to sports.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Sports</AUni> -</Name> -<OcmCodes> -<Uni>526 Athletic Sports; 542 Commercialized Sports</Uni> -</OcmCodes> -<Questions> -<objsur guid="95c8a8c6-518f-4de7-85e1-1f936647422e" t="o" /> -<objsur guid="dc669177-286e-433f-a2d6-509118f2a7a0" t="o" /> -<objsur guid="e3a38e75-429f-471f-97f3-4def54d57e2a" t="o" /> -<objsur guid="e66e8cc7-f620-4174-8bc7-f23345dbdbda" t="o" /> -<objsur guid="d9479cda-68d1-43c6-be65-6f437aa600be" t="o" /> -<objsur guid="9c06070d-45a8-4638-a744-cfe4b2898c5d" t="o" /> -<objsur guid="e50e869a-8621-4eab-9d1f-995a05f1d190" t="o" /> -<objsur guid="e2a5f67f-188c-41fc-8cf7-d19add717a8a" t="o" /> -<objsur guid="fd1656be-1756-40f0-ad7d-e132ce9e33bf" t="o" /> -<objsur guid="c96bfcaa-7b06-427c-8bbd-038dedbf412e" t="o" /> -<objsur guid="e8148227-e044-40c4-af03-9bdd8cf2f7f8" t="o" /> -<objsur guid="5f495068-a01e-4190-91c1-f721d12dc863" t="o" /> -<objsur guid="0f2ecec6-9a0f-4279-8e7f-82992bef3034" t="o" /> -<objsur guid="d56f6500-13a1-4e96-b954-937b3c804567" t="o" /> -<objsur guid="4bbdccf8-7612-4599-9bc6-42722940ca76" t="o" /> -<objsur guid="617722f0-0cf0-44d4-81da-670300cc3fcf" t="o" /> -<objsur guid="46bc9352-4b8a-4bea-aa77-9ac348305bd7" t="o" /> -<objsur guid="15efc4e9-9c5d-4b27-8599-eb1e19c606c4" t="o" /> -<objsur guid="9229e1fd-6daa-4929-9968-487cdf9735c6" t="o" /> -<objsur guid="22fbaceb-f8bc-420a-8758-56456daecd78" t="o" /> -<objsur guid="b5edee51-acb2-4d07-ab2c-e3aa56ab2bdb" t="o" /> -<objsur guid="772aee86-1630-41a1-84f7-ac29925b2b57" t="o" /> -<objsur guid="3aa81ce7-843f-4d38-b7f1-c2dea8391095" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="6187e620-89bd-4b9d-9896-0c0c788e7740" t="o" /> -<objsur guid="21ebc64a-a1b8-45bd-b7f6-143a053f1d31" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="01441c77-603a-4dcd-920c-cdb7c5fcb9c2" ownerguid="4302d543-41c0-43c8-a167-1fbe1470afb9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">small</AUni> -<AUni ws="es">pequeño</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bb51f629-5fcb-49ba-b6ba-63bf03340a55" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="01451534-d8ef-4917-85d8-b89001184e31" ownerguid="bd4a2527-f66c-4f48-922e-8b180bba8ef6"> -<ExampleWords> -<AUni ws="en">property, belongings, household goods</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to the things in a house?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="01459db0-bf2a-422b-8d55-0ab505aea2b4" ownerguid="9bb173c6-cf38-47cd-803f-ebdf964ca2fc"> -<Abbreviation> -<AUni ws="en">4.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.243" /> -<DateModified val="2022-9-23 16:55:8.243" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to bad things that happen in life.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>22A Trouble, Hardship, Distress; 22B Experience Trouble, Hardship; 22C Cause Trouble, Hardship; 22D Difficult, Hard; 22F Easy, Light</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Trouble</AUni> -</Name> -<OcmCodes> -<Uni>730 Social Problems; 732 Disabilities; Handicapped; 733 Alcoholism and Drug Addiction; 734 Invalidism; 735 Poverty; 736 Dependency; 737 Old Age Dependency; 738 Delinquency</Uni> -</OcmCodes> -<Questions> -<objsur guid="9900e428-278d-4fbd-a5ec-9d3ce796376e" t="o" /> -<objsur guid="c6278a34-4bfd-421b-a91d-704c140ceb1b" t="o" /> -<objsur guid="a66bc5aa-9aef-463c-a1ef-5b7c8ec9b282" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="4c823e93-3966-461f-bd64-3a9303966338" t="o" /> -<objsur guid="e0e83cc9-b876-47f6-8e66-60c9c505b927" t="o" /> -<objsur guid="9ec62ffe-69be-4b9b-944c-29a0f4f133db" t="o" /> -<objsur guid="c8c8b1f6-a898-4d5b-a1ce-fa7284915e8f" t="o" /> -<objsur guid="97885cab-cd96-4d34-a62a-3e3daac0c165" t="o" /> -<objsur guid="9a7604b4-d42f-44b7-9aef-47847dc93f0b" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="0149b8e9-11a8-4e01-b812-401027cd4e84" ownerguid="6aa41eaa-b390-493f-9da2-be1e50d4e37c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="0149f250-7337-475c-a095-99353f957606" ownerguid="110404f2-fab5-4550-847c-c4c0e6f78f70"> -<Form> -<AUni ws="qvm-x-ach">patilla</AUni> -<AUni ws="qvm-x-acl">patilla</AUni> -<AUni ws="qvm-x-akh">patilla</AUni> -<AUni ws="qvm-x-akl">patilla</AUni> -<AUni ws="qvm-x-ame">patilla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="014bc832-b96d-4339-8c24-fc57ffcaf626" ownerguid="388c9235-aa66-4d43-aeb8-aa6cdfb69089"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="014f053d-667c-426d-8bac-11529a04b478"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lu:cha</AUni> -<AUni ws="qvm-x-acl">lu:cha</AUni> -<AUni ws="qvm-x-akh">lu:cha</AUni> -<AUni ws="qvm-x-akl">lu:cha</AUni> -<AUni ws="qvm-x-ame">lu:cha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+luchar</AUni> -<AUni ws="qvm-x-acl">+luchar</AUni> -<AUni ws="qvm-x-akh">+luchar</AUni> -<AUni ws="qvm-x-akl">+luchar</AUni> -<AUni ws="qvm-x-ame">+luchar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.114" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6ee4da8b-f0a7-4bed-b4b4-e391561a1bde" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+luchar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2b0e0c74-2dd1-4e20-ab6b-278412e2eb0a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="54451551-208b-489c-9570-3908c50d4ec8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +luchar 
\entryTyp root 
\gENG struggle 
\gSPN luchar 
\e +luchar 
\c V1 
\ach lu:cha 
\akh lu:cha 
\acl lu:cha 
\akl lu:cha 
\ame lu:cha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="014ffa21-ed9c-4a38-9d02-f9997bda0b67" ownerguid="ca98bd7b-8711-41f6-86d0-5cd07b7bfe0d"> -<ExampleWords> -<AUni ws="en">destroyer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to someone or something that destroys things?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0150ade5-3f84-412b-95fb-ba7b54ecbbce"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">utensiliu; utensilio</AUni> -<AUni ws="qvm-x-acl">utensiliu; utensiliu; utensilio</AUni> -<AUni ws="qvm-x-akh">utensiliu; utensilio</AUni> -<AUni ws="qvm-x-akl">utensiliu; utensiliu; utensilio</AUni> -<AUni ws="qvm-x-ame">utensiliu; utensilio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+utensilio</AUni> -<AUni ws="qvm-x-acl">+utensilio</AUni> -<AUni ws="qvm-x-akh">+utensilio</AUni> -<AUni ws="qvm-x-akl">+utensilio</AUni> -<AUni ws="qvm-x-ame">+utensilio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.300" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2ab982d7-1466-4662-a977-09525ffdcd6e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+utensilio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0ec3ff25-451c-4a32-b57c-14e2282b9c87" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="df78116d-f38a-4cba-bed5-b8fd4cb4879c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +utensilio 
\entryTyp root 
\gENG 
\gSPN 
\e +utensilio 
\c N0 
\ach utensiliu / ~_# 
\ach utensilio / _# 
\akh utensiliu / ~_# 
\akh utensilio / _# 
\acl utensiliu / ~_# 
\acl utensiliu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl utensilio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl utensiliu / ~_# 
\akl utensiliu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl utensilio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame utensiliu / ~_# 
\ame utensilio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0151c32b-fbb3-488a-9548-27ad532a6661" ownerguid="b8f59ddd-48de-4b3d-af47-687c9237ccd9"> -<ExampleWords> -<AUni ws="en">have authority, be in authority, be in charge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to having authority?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="01536c85-4785-453e-835a-b50f2a7c3cc9" ownerguid="89db7c8c-9ada-4bc1-b02b-82871c946c22"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="0156d8a5-3a3f-4809-a986-6304ed9bd2c1" ownerguid="7d8898d6-6296-4d4d-b8dd-2f48c49f9e98"> -<ExampleWords> -<AUni ws="en">heighten, raise</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making something high?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0157beeb-527d-40fe-9f3d-457eb75db74b" ownerguid="a47a29e7-0fb2-4c94-8bc5-bcf87a0f1276"> -<Form> -<AUni ws="qvm-x-ach">lushti</AUni> -<AUni ws="qvm-x-acl">lushti; lushte</AUni> -<AUni ws="qvm-x-akh">lushti</AUni> -<AUni ws="qvm-x-akl">lushti; lushte</AUni> -<AUni ws="qvm-x-ame">lushti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="01586552-5dc2-4067-a18b-8864a32198e3" ownerguid="d9256aa4-556d-4225-b533-1414b403a2ce"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 V0/V0 R0/R0 ONSHEV/ONSHEV BN/BN</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">CONJ</AUni> -<AUni ws="es">CONJ</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="01325653-3e96-4d98-bdc0-c568db07e754" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="0158fed2-e8ca-4fea-b495-afe387d8d34d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yumpay</AUni> -<AUni ws="qvm-x-acl">yumpay</AUni> -<AUni ws="qvm-x-akh">yumpay</AUni> -<AUni ws="qvm-x-akl">yumpay</AUni> -<AUni ws="qvm-x-ame">yumpay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yumpay</AUni> -<AUni ws="qvm-x-acl">*yumpay</AUni> -<AUni ws="qvm-x-akh">*yumpay</AUni> -<AUni ws="qvm-x-akl">*yumpay</AUni> -<AUni ws="qvm-x-ame">*yumpay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.790" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="10c70693-1c54-4894-ab36-a4eeb60d3c22" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yumpay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="29ee9181-6e74-4215-bb59-41fbd8ac801c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6af3bd46-608a-4966-8505-7d4de873d2d6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yumpay 
\entryTyp root 
\gENG 
\gSPN 
\e *yumpay 
\c N0 
\mp +FinalC 
\ach yumpay 
\akh yumpay 
\acl yumpay 
\akl yumpay 
\ame yumpay 
\i 2SA 20.12 Caminucho yawar yumpayla Amasa wanushga jitaraycaptinmi tsaypa pasag runacuna ricananpag ichicärergan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="015ccf59-a66e-4001-8036-7c3724ec6594" ownerguid="24996927-542b-4e10-a7cb-bc64930bb84f" /> -<rt class="WfiWordform" guid="0162121f-fea0-47af-bd06-d2b5a0609cab"> -<Analyses> -<objsur guid="d4fca9fe-870a-4110-99bb-10a29c29b2e6" t="o" /> -<objsur guid="e0880b58-248f-4071-b5b8-bca868871a72" t="o" /> -</Analyses> -<Checksum val="1902472117" /> -<Form> -<AUni ws="qvm-x-akh">noqatapis</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="0162cbf5-9940-4745-84b0-296221682375" ownerguid="d95ed463-ac64-4004-9c3b-0fce2f7639be"> -<ExampleWords> -<AUni ws="en">move out, go out, come out, get out, emerge, exit, exodus, issue, leave</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving out of an area or space?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0169a639-f66b-44c6-8af6-f5ef5270c953"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">inaura</AUni> -<AUni ws="qvm-x-acl">inaura</AUni> -<AUni ws="qvm-x-akh">inaura</AUni> -<AUni ws="qvm-x-akl">inaura</AUni> -<AUni ws="qvm-x-ame">inaura</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+inaugurar</AUni> -<AUni ws="qvm-x-acl">+inaugurar</AUni> -<AUni ws="qvm-x-akh">+inaugurar</AUni> -<AUni ws="qvm-x-akl">+inaugurar</AUni> -<AUni ws="qvm-x-ame">+inaugurar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.812" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d13b8519-30f5-4c02-b62d-e5287fbe5084" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+inaugurar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f9605e5f-491d-4bd8-ba73-f471f06a8f6f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="de80ae9e-0b34-4d6b-8ad2-29e3702790f5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +inaugurar 
\entryTyp root 
\gENG 
\gSPN 
\e +inaugurar 
\c V2 
\ach inaura 
\akh inaura 
\acl inaura 
\akl inaura 
\ame inaura</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="016ba72b-a69f-4f3c-a01e-0b325f469539"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alayri</AUni> -<AUni ws="qvm-x-acl">alayri; alayri; alayre</AUni> -<AUni ws="qvm-x-akh">alayri</AUni> -<AUni ws="qvm-x-akl">alayri; alayri; alayre</AUni> -<AUni ws="qvm-x-ame">alayri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+al_aire</AUni> -<AUni ws="qvm-x-acl">+al_aire</AUni> -<AUni ws="qvm-x-akh">+al_aire</AUni> -<AUni ws="qvm-x-akl">+al_aire</AUni> -<AUni ws="qvm-x-ame">+al_aire</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.727" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="384776d0-96f4-4d09-8016-526a9ec285b0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+al_aire</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="79d50daa-9604-46db-a927-c6cdc595610d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="848ff284-5e8a-4afd-ad6a-9342428a7a65" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +al_aire 
\entryTyp root 
\gENG visable 
\gSPN visible 
\e +al_aire 
\c N0 
\mp +assimilated 
\ach alayri 
\akh alayri 
\acl alayri / _# 
\acl alayri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl alayre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl alayri / _# 
\akl alayri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl alayre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame alayri 
\mp +FinalI</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="016e3f5b-b527-446e-9da6-49af34870001" ownerguid="ac2e424b-6aee-4031-8864-7b3f4a6fb5a3"> -<Abbreviation> -<AUni ws="en">3.5.1.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to exposing falsehood--to do something to show that someone has told a lie.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Expose falsehood</AUni> -</Name> -<Questions> -<objsur guid="c1c6f5f9-7339-4b1c-8a5d-94d7e475eb6e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="016f3085-2d5e-47f3-946f-5066308fcadd" ownerguid="589c760d-b110-4325-934e-2560d627ebba"> -<Form> -<AUni ws="qvm-x-ach">lumtsuy</AUni> -<AUni ws="qvm-x-acl">lumtsuy</AUni> -<AUni ws="qvm-x-akh">lumtsuy</AUni> -<AUni ws="qvm-x-akl">lumtsuy</AUni> -<AUni ws="qvm-x-ame">lumtsuy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="01713dd5-7367-4397-a6c6-5c0659dcd289" ownerguid="2d096be9-3dc8-4622-81fc-9cd439494f6f"> -<Form> -<AUni ws="qvm-x-ach">ranti</AUni> -<AUni ws="qvm-x-acl">ranti; rante</AUni> -<AUni ws="qvm-x-akh">ranti</AUni> -<AUni ws="qvm-x-akl">ranti; rante</AUni> -<AUni ws="qvm-x-ame">ranti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="0177f8a5-1fc5-4473-9e8f-88874b376475"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mana</AUni> -<AUni ws="qvm-x-acl">mana</AUni> -<AUni ws="qvm-x-akh">mana</AUni> -<AUni ws="qvm-x-akl">mana</AUni> -<AUni ws="qvm-x-ame">mana</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mana</AUni> -<AUni ws="qvm-x-acl">*mana</AUni> -<AUni ws="qvm-x-akh">*mana</AUni> -<AUni ws="qvm-x-akl">*mana</AUni> -<AUni ws="qvm-x-ame">*mana</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.295" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3908bb21-4c84-48c8-95f9-5530ba8f5299" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mana</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b2b2cafc-4a33-4aaf-bb37-ad49d349f0bb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="156db732-96a6-48d2-ba6a-889cc6f72853" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mana 
\entryTyp root 
\gENG no 
\gSPN no 
\e *mana 
\c ONSHEV 
\ach mana 
\akh mana 
\acl mana 
\akl mana 
\ame mana</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="0178a520-8d2a-4f17-861f-253cf8e0f9e7" ownerguid="6a0d81eb-93c1-406d-8b29-04f710ef5eed"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 R0/R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">SIM3</AUni> -<AUni ws="es">SIM3</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e6ef0b6b-7228-4d8a-807d-1c0bb88cc1e7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="017a62c2-d2c6-4056-92a7-2545a2917218" ownerguid="66d8b546-92f5-4e94-b992-08be81c3d30c"> -<ExampleWords> -<AUni ws="en">impact (n), effect, change (n), impression</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the effect on the object?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="017c56b9-5b27-4f6d-bada-0a2c6fd5a2c5" ownerguid="738e1ab1-f471-470b-9cb4-c6bfb781f7c0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">peel</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a75a5ee2-0d20-45ce-8a6c-68c9cdc42dd8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="017d4abd-b10c-4dee-9512-29cc4181f302" ownerguid="b6e45998-9f6a-4b19-9cda-62410a11afa2"> -<ExampleWords> -<AUni ws="en">ward off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to protecting someone from sorcery?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="01837665-7203-4e03-b8f8-22fa8babc3e1" ownerguid="be2f2785-7219-4a35-b8d3-aa56b9b78514"> -<ExampleWords> -<AUni ws="en">disperse, thin out, melt away, break up, spread out, diverge, permeate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to more than one thing moving away from each other?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0189540a-398a-42d5-b35e-c0207f3be814" ownerguid="8ee56c80-4f6b-4d4e-b1f6-6989b08d0f46"> -<Form> -<AUni ws="qvm-x-ach">lisiona</AUni> -<AUni ws="qvm-x-acl">lisiona</AUni> -<AUni ws="qvm-x-akh">lisiona</AUni> -<AUni ws="qvm-x-akl">lisiona</AUni> -<AUni ws="qvm-x-ame">lisiona</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="018b16c4-439f-4498-b9b6-7772a289a768" ownerguid="ef409fc6-bd89-4cc6-ade5-abb882272313"> -<ExampleWords> -<AUni ws="en">would prefer, would rather</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to wanting someone to do something more than something else?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="018cd6f2-4772-47b7-a059-d64dc4cee2f6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rata</AUni> -<AUni ws="qvm-x-acl">rata</AUni> -<AUni ws="qvm-x-akh">rata</AUni> -<AUni ws="qvm-x-akl">rata</AUni> -<AUni ws="qvm-x-ame">rata</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rata.n</AUni> -<AUni ws="qvm-x-acl">*rata.n</AUni> -<AUni ws="qvm-x-akh">*rata.n</AUni> -<AUni ws="qvm-x-akl">*rata.n</AUni> -<AUni ws="qvm-x-ame">*rata.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.287" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f24879ae-d091-4655-85aa-c2d1054567e7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rata.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="27280dac-32bf-4b69-b004-10a471de5254" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0aa907ba-f769-4b75-a075-63ccd3c93d51" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rata.n 
\entryTyp root 
\gENG 
\gSPN 
\e *rata.n 
\c N0 
\ach rata 
\akh rata 
\acl rata 
\akl rata 
\ame rata</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="018ee96a-76ae-427e-9d66-151e99c4d76b" ownerguid="a66cfd2a-34be-4210-92a3-1ae4b7901be8"> -<Form> -<AUni ws="qvm-x-ach">chita</AUni> -<AUni ws="qvm-x-acl">chita</AUni> -<AUni ws="qvm-x-akh">chita</AUni> -<AUni ws="qvm-x-akl">chita</AUni> -<AUni ws="qvm-x-ame">chita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="019799d0-96da-4a56-b845-eb69b7a4d5a7" ownerguid="7a56c6f0-0ec5-4e62-9c2e-62540aae97b0"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Lev 7.10 Escämayog carpis alëtan mana captenga ama micapäcunquitsu.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="019a080d-5194-4515-ac46-60f94f08b09c" ownerguid="2aca7b11-2928-46f1-acba-cbcf9a78ce8f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="019af96a-1761-4351-be4d-e89558fdd584" ownerguid="32ee64a8-b693-4a7f-a8a0-55304ebe5c7b"> -<Form> -<AUni ws="qvm-x-ach">salta</AUni> -<AUni ws="qvm-x-acl">salta</AUni> -<AUni ws="qvm-x-akh">salta</AUni> -<AUni ws="qvm-x-akl">salta</AUni> -<AUni ws="qvm-x-ame">salta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="019c50f8-47d4-4b5c-bf01-cc1259de969c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pullush</AUni> -<AUni ws="qvm-x-acl">pullush</AUni> -<AUni ws="qvm-x-akh">pullush</AUni> -<AUni ws="qvm-x-akl">pullush</AUni> -<AUni ws="qvm-x-ame">pullush</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pullush</AUni> -<AUni ws="qvm-x-acl">*pullush</AUni> -<AUni ws="qvm-x-akh">*pullush</AUni> -<AUni ws="qvm-x-akl">*pullush</AUni> -<AUni ws="qvm-x-ame">*pullush</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.0" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="90e7cc16-f350-4f9f-90a5-6aa8f8075586" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pullush</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2251c592-8d30-40a7-9e40-e33830adb1be" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ee665e2f-ce2e-45a4-bb4a-9c1c4db5fc54" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pullush 
\entryTyp root 
\gENG 
\gSPN 
\e *pullush 
\c N0 
\mp +FinalC 
\ach pullush 
\akh pullush 
\acl pullush 
\akl pullush 
\ame pullush</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="019c5c36-b96b-4dd1-b5d3-7950130119b7" ownerguid="ceff0bcd-a262-4e41-bf0c-920b446951be"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</Msa> -<Sense> -<objsur guid="80f44d0c-72fe-4b3c-b505-6b06de3ee220" t="r" /> -</Sense> -</rt> -<rt class="CmSemanticDomain" guid="019e3b64-c68a-4b19-bec5-a22f4eb88f48" ownerguid="f6eb81d5-caba-4735-be6f-ae038656b555"> -<Abbreviation> -<AUni ws="en">6.6.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.468" /> -<DateModified val="2022-9-23 16:55:8.468" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to weaving baskets, mats, and other things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Weaving baskets and mats</AUni> -</Name> -<OcmCodes> -<Uni>285 Mats and Basketry</Uni> -</OcmCodes> -<Questions> -<objsur guid="03f18797-e7c1-46c0-8b66-22311819024b" t="o" /> -<objsur guid="0f11adad-bb3a-4588-86f4-de3403c82bed" t="o" /> -<objsur guid="4bee61e5-2b62-4e41-a87e-efa2357869d2" t="o" /> -<objsur guid="4476049e-82b6-450c-8f66-c139e30eae9d" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="77d1610f-4757-46de-b5f8-e127dc270dfd" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="019ef1ce-ba38-43b6-8950-d8e69c48192c" ownerguid="9d896f02-c26a-49e1-a602-5f97ae3d2bc2"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6fe49b5e-093a-457b-9f14-02b68e8cec63" t="r" /> -</Morph> -</rt> -<rt class="LexSense" guid="01a1eebe-0fa9-4302-b712-bc9f73ebc1de" ownerguid="13aff896-082c-4ec7-ac96-f512a692d943"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="4696a305-2f9c-4fe1-8c90-a64b462ab992" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">throw.out</AUni> -<AUni ws="es">botar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="59f2ffdb-9b58-46c7-9557-a2766f97e056" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="01a27073-ca68-4d05-865a-c2f34463ddf0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ñe:ga</AUni> -<AUni ws="qvm-x-acl">ñe:ga</AUni> -<AUni ws="qvm-x-akh">ñe:ga</AUni> -<AUni ws="qvm-x-akl">ñe:ga</AUni> -<AUni ws="qvm-x-ame">ñe:ga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+negar</AUni> -<AUni ws="qvm-x-acl">+negar</AUni> -<AUni ws="qvm-x-akh">+negar</AUni> -<AUni ws="qvm-x-akl">+negar</AUni> -<AUni ws="qvm-x-ame">+negar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.547" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="66cb2966-fcc2-4d6c-9561-27ba3908d232" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+negar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="22564611-ec0f-4491-81e5-2fb6feeac095" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4612c090-2532-4391-84b0-8f1b461db9c6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +negar 
\entryTyp root 
\gENG deny 
\gSPN negar 
\e +negar 
\c V2 
\ach ñe:ga 
\akh ñe:ga 
\acl ñe:ga 
\akl ñe:ga 
\ame ñe:ga</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="01a39112-b7cd-4238-910b-266f109b17dd" ownerguid="d2e73238-ff99-4ba3-8ce6-d8ae98721710"> -<ExampleWords> -<AUni ws="en">agree to do something, accept, approve a plan, consent to, give your consent, grant someone's request, jump at the chance, jump at the opportunity, OK something, give your OK, say yes, give something the thumbs up, take on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to agreeing to do something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="01a69e19-d3b0-4450-aa81-74af2409b40e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ushma</AUni> -<AUni ws="qvm-x-acl">ushma</AUni> -<AUni ws="qvm-x-akh">ushma</AUni> -<AUni ws="qvm-x-akl">ushma</AUni> -<AUni ws="qvm-x-ame">ushma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ushma.n</AUni> -<AUni ws="qvm-x-acl">*ushma.n</AUni> -<AUni ws="qvm-x-akh">*ushma.n</AUni> -<AUni ws="qvm-x-akl">*ushma.n</AUni> -<AUni ws="qvm-x-ame">*ushma.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.282" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7c846de6-f392-4421-bb7c-5a0d9f41b031" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ushma.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="89e7897e-ff38-4957-a042-f6240634dd26" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f7e31576-dcdd-43a0-bc65-5efc3b868223" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ushma.n 
\entryTyp root 
\gENG 
\gSPN 
\e *ushma.n 
\c N0 
\ach ushma 
\akh ushma 
\acl ushma 
\akl ushma 
\ame ushma</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="01aa87d3-5fe3-4f09-929e-f5ac417ebddf" ownerguid="1c3c8af0-56b9-4617-862e-21f39b388606"> -<ExampleWords> -<AUni ws="en">death, demise, mortality</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to the event of dying?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="01ad8f29-9c68-44cb-9f62-a5ec476c41e0" ownerguid="f1826d6b-1b0b-45b1-a707-7ba2f7a2acb0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tie</AUni> -<AUni ws="es">corbata</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4f0a27ff-6fef-43c9-8bd8-e9de12434fca" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="01ade598-de33-4a96-a0bc-f33781aed283" ownerguid="cc6f100a-5220-4f53-801c-b1fdcc619608"> -<ExampleWords> -<AUni ws="en">old, mature</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a plant that is old?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="01b2ed68-387c-41ae-93d0-21b8388dddbe" ownerguid="fd87963b-2365-4a15-9044-dbce4701cf89"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">drag</AUni> -<AUni ws="es">arrastrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aa5b0cca-0b69-4d6b-b0cd-735d8b4cef34" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="01b30761-2ba2-4a44-ade8-a72dd70de7b6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">doctor</AUni> -<AUni ws="qvm-x-acl">doctor</AUni> -<AUni ws="qvm-x-akh">doctor</AUni> -<AUni ws="qvm-x-akl">doctor</AUni> -<AUni ws="qvm-x-ame">doctor</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+doctor</AUni> -<AUni ws="qvm-x-acl">+doctor</AUni> -<AUni ws="qvm-x-akh">+doctor</AUni> -<AUni ws="qvm-x-akl">+doctor</AUni> -<AUni ws="qvm-x-ame">+doctor</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.435" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="451ebe30-eaeb-4aa3-94c6-f177e9bcf8ff" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+doctor</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b88ef553-ebca-4660-ae86-7b9b1e911b4a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="91dd1dfd-cfab-4aad-8d91-ae7aa3a44d2d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +doctor 
\entryTyp root 
\gENG doctor 
\gSPN doctor 
\e +doctor 
\c N0 
\mp +FinalC 
\ach doctor 
\akh doctor 
\acl doctor 
\akl doctor 
\ame doctor</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="01b8b67f-cc68-49c1-9215-f05520fa1522" ownerguid="ec1bcace-fc10-45df-8e1f-29bce1ef786a"> -<ExampleWords> -<AUni ws="en">topic (of conversation)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to what is talked about?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="01b9c7e5-ee76-41cb-a889-64f1fba53ea0" ownerguid="3a94ef8b-8532-447c-a7ae-87ef105cea49"> -<Form> -<AUni ws="qvm-x-ach">yunta</AUni> -<AUni ws="qvm-x-acl">yunta</AUni> -<AUni ws="qvm-x-akh">yunta</AUni> -<AUni ws="qvm-x-akl">yunta</AUni> -<AUni ws="qvm-x-ame">yunta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="01bdba39-7318-4c79-8798-e28bb3af16dc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">confianza</AUni> -<AUni ws="qvm-x-acl">confianza</AUni> -<AUni ws="qvm-x-akh">confianza</AUni> -<AUni ws="qvm-x-akl">confianza</AUni> -<AUni ws="qvm-x-ame">confianza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+confianza</AUni> -<AUni ws="qvm-x-acl">+confianza</AUni> -<AUni ws="qvm-x-akh">+confianza</AUni> -<AUni ws="qvm-x-akl">+confianza</AUni> -<AUni ws="qvm-x-ame">+confianza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.170" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6ebb2e5d-4afe-4bf3-ab3c-16c63a6fdf05" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+confianza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2b15ddb3-303a-45a8-8367-f3f75fc1c5d0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="22e860df-d66b-4d71-9367-cfb5a9fdf09b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +confianza 
\entryTyp root 
\gENG trust 
\gSPN confianza 
\e +confianza 
\c N0 
\ach confianza 
\akh confianza 
\acl confianza 
\akl confianza 
\ame confianza 
\i PRO 25.9 Contrayqui sharcog runawan rimanacurpis cuidädu pipis confianza wilapäshushgayquita parlaycanquiman.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="01bea8e6-aeef-42e2-9071-5d8d49d7a635" ownerguid="cd5cb831-79c6-4f0f-8a5c-30a070a183ff"> -<Form> -<AUni ws="qvm-x-ach">jega</AUni> -<AUni ws="qvm-x-acl">jega</AUni> -<AUni ws="qvm-x-akh">jeqa</AUni> -<AUni ws="qvm-x-akl">jeqa</AUni> -<AUni ws="qvm-x-ame">hiqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="01c0fabf-e23c-49d4-8b4e-5b36ad316d50" ownerguid="5c4a3227-111c-422f-aec2-b6edeee36482"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="aa3e3390-fc99-4d7d-ad6e-2096e69d44f5" t="o" /> -<objsur guid="053baf0d-a02d-40bc-a33c-9dd44899852e" t="o" /> -<objsur guid="060a83e1-24db-44cf-b25d-1822d2732a01" t="o" /> -<objsur guid="5ecde634-10ad-4276-acd6-460357c85899" t="o" /> -<objsur guid="b31986ce-558e-460b-9d7d-e929f98bac90" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="01c1afaa-4f34-4b9f-b749-693c751f6d29" ownerguid="e637a0ba-c46e-4229-b210-cfadf389a162"> -<Form> -<AUni ws="qvm-x-ach">junaga; junagä</AUni> -<AUni ws="qvm-x-acl">junaga; junagä</AUni> -<AUni ws="qvm-x-akh">junaqa; junaqä</AUni> -<AUni ws="qvm-x-akl">junaqa; junaqä</AUni> -<AUni ws="qvm-x-ame">hunaqa; hunaqä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="01c59765-e89c-48f9-987f-ab809df7c021" ownerguid="7bff0455-82d1-4996-bcdf-1a4ba9306fab"> -<Form> -<AUni ws="qvm-x-ach">mismi</AUni> -<AUni ws="qvm-x-acl">mismi; misme</AUni> -<AUni ws="qvm-x-akh">mismi</AUni> -<AUni ws="qvm-x-akl">mismi; misme</AUni> -<AUni ws="qvm-x-ame">mismi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="01cbdf1d-9732-4b93-a14c-f0837ecc797e" ownerguid="dccb55f6-9e2b-4963-a6d5-640d118909e1"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="760a3bdb-2caa-4674-8ef8-35d2e635acb6" t="o" /> -<objsur guid="d575fcb0-5db0-4d71-94bf-95e652147dba" t="o" /> -<objsur guid="1338ce3b-b3b0-46f3-b474-571cefe56e57" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiWordform" guid="01cd915b-e2cd-4e40-8a87-588cd5efcd60"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Judácho</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="01cdbaf9-8cfc-4fca-8e10-063da7f67c05" ownerguid="38877d9c-e6c5-4593-b01f-500c0fc607a6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">worm</AUni> -<AUni ws="es">gusano</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b2165782-bfba-49d3-b34a-5b3298d5fba5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="01cef8d7-dd6d-4189-991c-98d99404a940" ownerguid="a4957c98-c53d-40c3-8412-03c4ae81c1b3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="01d10ec1-2cfd-4885-8f63-0eea4d3ecfc1" ownerguid="7e303683-5f32-45b5-8e97-299a34722ab8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="01d33cfd-73ef-49be-9d53-afbe43b0d724"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">re:jas</AUni> -<AUni ws="qvm-x-acl">re:jas</AUni> -<AUni ws="qvm-x-akh">re:jas</AUni> -<AUni ws="qvm-x-akl">re:jas</AUni> -<AUni ws="qvm-x-ame">re:jas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rejas</AUni> -<AUni ws="qvm-x-acl">+rejas</AUni> -<AUni ws="qvm-x-akh">+rejas</AUni> -<AUni ws="qvm-x-akl">+rejas</AUni> -<AUni ws="qvm-x-ame">+rejas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.326" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f48f27dd-0d49-4206-9f38-853d48273806" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rejas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="39f97d87-a106-4037-a51d-4e089d34ece4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e07600af-29a4-40e9-b045-93e294291d25" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rejas 
\entryTyp root 
\gENG 
\gSPN 
\e +rejas 
\c N0 
\mp +foreshortens 
\ach re:jas 
\akh re:jas 
\acl re:jas 
\akl re:jas 
\ame re:jas 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntryInflType" guid="01d4fbc1-3b0c-4f52-9163-7ab0d4f4711c" ownerguid="bb372467-5230-43ef-9cc7-4d40b053fb94"> -<Abbreviation> -<AUni ws="en">irreg. infl.</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">An Irregularly Inflected Form is an inflected form of the lexeme that is different from what you would expect from the normal rules of the grammar.</Run> -</AStr> -</Description> -<Discussion> -<objsur guid="b6f4c056-ea5e-11de-8a9c-0013722f8dec" t="o" /> -</Discussion> -<ForeColor val="0" /> -<GlossAppend> -<AUni ws="en">.irr.infl</AUni> -</GlossAppend> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Irregularly Inflected Form</AUni> -</Name> -<ReverseAbbr> -<AUni ws="en">irreg. infl. of</AUni> -</ReverseAbbr> -<ReverseName> -<AUni ws="en">Irregularly Inflected Form of</AUni> -</ReverseName> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="a32f1d1c-4832-46a2-9732-c2276d6547e8" t="o" /> -<objsur guid="837ebe72-8c1d-4864-95d9-fa313c499d78" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="01d5e06d-82e3-426a-b51e-028f45ea8cd7" ownerguid="d507ebb9-6fd7-4598-82c0-4f947d1e637e"> -<Form> -<AUni ws="qvm-x-ach">almiti</AUni> -<AUni ws="qvm-x-acl">almiti; almite</AUni> -<AUni ws="qvm-x-akh">almiti</AUni> -<AUni ws="qvm-x-akl">almiti; almite</AUni> -<AUni ws="qvm-x-ame">almiti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="01d638d6-da52-49bd-9294-148c0559732e" ownerguid="a31c85df-02a9-4dd8-a094-0f07a0afbcca"> -<ExampleWords> -<AUni ws="en">eraser, remover, paint remover</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a tool or substance used to remove something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="01d6db15-d861-4133-a2da-875254834b00" ownerguid="97ed5af8-29ca-428d-8ac5-c61b61a963fd"> -<ExampleWords> -<AUni ws="en">lined, striped, streaked, checkered, plaid, tartan, checked, marbled, banded, barred, cross-striped, damask</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is colored with lines?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="01d78278-4376-4e9b-bf37-5423217504d9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sabi:du</AUni> -<AUni ws="qvm-x-acl">sabi:du; sabi:du; sabi:do</AUni> -<AUni ws="qvm-x-akh">sabi:du</AUni> -<AUni ws="qvm-x-akl">sabi:du; sabi:du; sabi:do</AUni> -<AUni ws="qvm-x-ame">sabi:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sabido</AUni> -<AUni ws="qvm-x-acl">+sabido</AUni> -<AUni ws="qvm-x-akh">+sabido</AUni> -<AUni ws="qvm-x-akl">+sabido</AUni> -<AUni ws="qvm-x-ame">+sabido</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.409" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="26c5be2c-ba46-4f92-b8bc-a2de6af7bca5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sabido</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="be6eae69-0c6b-4e11-9607-30b7c187b7be" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2f0f8a21-8efc-4ef6-802d-d8e971826016" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sabido 
\entryTyp root 
\gENG 
\gSPN 
\e +sabido 
\c N0 
\ach sabi:du 
\akh sabi:du 
\acl sabi:du / _# 
\acl sabi:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sabi:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sabi:du / _# 
\akl sabi:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sabi:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sabi:du 
\i DAN 8.23 Tsay chuscu nacioncuna munayniynag ricacuptin y runacunapa jutsan ayparcuptinnami mana cuyapäcog sabïdu runa mandag rey cananpag yayconga.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="01d8a648-bdc5-4905-aaa2-e0a3ebdc5bf5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">huaca</AUni> -<AUni ws="qvm-x-acl">huaca</AUni> -<AUni ws="qvm-x-akh">huaka</AUni> -<AUni ws="qvm-x-akl">huaka</AUni> -<AUni ws="qvm-x-ame">huaka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waka</AUni> -<AUni ws="qvm-x-acl">*waka</AUni> -<AUni ws="qvm-x-akh">*waka</AUni> -<AUni ws="qvm-x-akl">*waka</AUni> -<AUni ws="qvm-x-ame">*waka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.434" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bbb42026-10d5-4d68-bccc-632cf71842c8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cdb0e2d5-c02a-4c81-9529-dc8b5269c0e1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6246b075-e98f-4fbe-9010-6807b2426af9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waka 
\entryTyp root 
\gENG monument 
\gSPN monumento 
\e *waka 
\c N0 
\ach huaca 
\akh huaka 
\acl huaca 
\akl huaka 
\ame huaka</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="01da34fd-33e1-4ac8-9606-f5ebb91ea37d" ownerguid="253a61b8-e47b-4548-ba6f-a9005d516fee"> -<Form> -<AUni ws="qvm-x-ach">experiencia</AUni> -<AUni ws="qvm-x-acl">experiencia</AUni> -<AUni ws="qvm-x-akh">experiencia</AUni> -<AUni ws="qvm-x-akl">experiencia</AUni> -<AUni ws="qvm-x-ame">experiencia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="01e01cc2-4d3e-43b5-bfca-08311bc1d99c" ownerguid="286ee16c-a218-43d5-bbac-ab15f80c3fcf"> -<ExampleWords> -<AUni ws="en">not (strong) enough, not sufficiently</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words indicate that someone is not strong enough or old enough to do something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="01e12c33-0dce-40c6-a45d-82db86eb5f11" ownerguid="0307fe40-1bf2-4373-9ca5-71f2f42f2275"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">noise</AUni> -<AUni ws="es">bulla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="47ab53a3-be19-4c1d-9755-27c83ea91e09" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="01e275b7-f9c5-431d-9a69-371102b4074b" ownerguid="693537bc-0068-462d-95c6-ae472cd08830"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">team</AUni> -<AUni ws="es">equipo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="70cc5ef4-371d-4268-a415-0a828f540ccb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="01eb9234-110e-4d13-ae57-671cfdedba7d" ownerguid="4c288c59-e685-42b7-b6dc-d8ef81940ba1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">story</AUni> -<AUni ws="es">cuento</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a18f83ca-db7d-4797-ad5a-6d09202db26f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="01ed22ec-1f2b-4572-970c-10ab8e5e7ae1" ownerguid="d50f3921-fcea-4ac9-b64a-25bf47dc3292"> -<ExampleWords> -<AUni ws="en">volcano, volcanic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a volcano?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="01f2e0f4-4933-4a65-a9cc-e845c315fb2a" ownerguid="d1ad4b21-19ad-4175-979a-832533796120"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoInflAffMsa" guid="01f553e1-5eb4-4a63-9066-6708cdc08588" ownerguid="4dd9e1f0-4609-4c62-b4df-b82a35e5594e"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="fda4c591-1349-4f9e-ab87-905ae2aa25e1" t="r" /> -</Slots> -</rt> -<rt class="CmDomainQ" guid="01f63dba-635e-45c6-9fc5-f941b4082ecd" ownerguid="4e791773-94c8-4667-93f8-92dc0100ddfe"> -<ExampleWords> -<AUni ws="en">holiday, vacation, break, leave, day off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a time when you can be away from work or school?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="01fc6a74-70d0-4443-99ce-269e6e62ebe9" ownerguid="08ca6416-c865-4ce1-a654-0d393be6e17f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="01fd1434-bf0b-4053-b9b7-48797c543328" ownerguid="ffcc57f8-6c6d-4bf4-85be-9220ca7c739d"> -<ExampleWords> -<AUni ws="en">wedded bliss, care for spouse, love, marriage relationship</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words are used of the relationship between a husband and wife?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="01fff518-ac30-4f67-872c-ec87d4e2d660" ownerguid="5765f05e-0589-4c90-98bc-0219b3af292b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="02014a03-b4b6-40e5-9cf7-1c721f80e1c3" ownerguid="aeb53f5e-f8ab-4d4a-9e27-bae9d9185057"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">clean</AUni> -<AUni ws="es">limpiar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1a9fbf42-e156-4830-9f5e-397151a079ed" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0201e700-1ea1-46e7-a9cf-216ad0b7a340" ownerguid="5bdb3c06-fbee-4f5f-991a-e2128f65bb86"> -<ExampleWords> -<AUni ws="en">put on makeup, apply cosmetics, make up, powder your nose</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to putting on cosmetics?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="0205145d-23b6-4c3c-bf2d-bf866bb010e7" ownerguid="683f570a-0bfe-4a97-b55d-4319b328508b"> -<Abbreviation> -<AUni ws="en">6.6.7.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to conveying water--moving water from one place to another place.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Conveying water</AUni> -</Name> -<Questions> -<objsur guid="434231c2-39d6-402d-9cc3-059eb06dfc11" t="o" /> -<objsur guid="e13193d5-81f5-4614-96bb-447d899d89db" t="o" /> -<objsur guid="8df01681-6431-4f3b-85ce-a1b2f512471c" t="o" /> -<objsur guid="82105a9c-b26e-43d2-803a-3b83384d4681" t="o" /> -<objsur guid="f69dc745-901c-445f-bc1c-8b345e447e38" t="o" /> -<objsur guid="f10f4328-79c4-458d-83bf-397007032594" t="o" /> -<objsur guid="606d9edc-94be-4322-95a1-576eed7656f1" t="o" /> -<objsur guid="0b665768-6958-4c1b-b37d-0dca838268fc" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="50ab3705-a81e-4fcc-b3ae-95c075966f69" t="r" /> -<objsur guid="cd01db6c-8aa6-42d1-93ac-05e81a8be523" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="020cdb70-0fde-455d-8cb3-6635e3a9a7ad" ownerguid="5f726266-21e9-467f-a6b6-9513c54958c4"> -<Form> -<AUni ws="qvm-x-ach">inuy</AUni> -<AUni ws="qvm-x-acl">inuy</AUni> -<AUni ws="qvm-x-akh">inuy</AUni> -<AUni ws="qvm-x-akl">inuy</AUni> -<AUni ws="qvm-x-ame">inuy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="020d726c-b506-461b-a642-4ccf2163a2b2" ownerguid="ffcc57f8-6c6d-4bf4-85be-9220ca7c739d"> -<ExampleWords> -<AUni ws="en">be married to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to being married to someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0211f2ab-4819-4bb5-8d71-f7e9694dae65" ownerguid="d2e4e6aa-e699-41b4-8bb3-55e4793bd14b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="0213bf68-c152-4ff5-a2d6-50af8388da94" ownerguid="d1aa6dca-6e86-4575-a555-86fd20218c4f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ku</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ku</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b952a19-fce6-44e5-ab25-c091ef27f843" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="02169ac4-ee89-412a-98ef-2261a98cfdc3" ownerguid="0bac846b-10fa-4a97-ab51-5fae1db19d81"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="a66bb79d-361a-4fcb-b734-fa25098a9e83" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="3e1be7e8-41bb-4a3c-ad63-ee8cc640c1c9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0216c90b-9202-4e2d-96f7-c796726a1863" ownerguid="64e3d6b1-1d61-454c-97ab-e1d7cb0a8917"> -<ExampleWords> -<AUni ws="en">nervous, apprehensive, edgy, fidgety, flustered, ill at ease, jittery, restless, tense, uneasy, uneasily, uptight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels nervous?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="02175330-15dc-4689-a4d4-9b2ce882ab82" ownerguid="7acde7d5-1a5b-4e16-99c7-5f297d2643f4"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="f8c572e0-5737-4b51-87cb-157d79b4b88c" t="o" /> -<objsur guid="e33d3f41-fb38-46e4-84ce-be9ee8dd9e9c" t="o" /> -<objsur guid="5e3d7be4-bcc5-4859-b481-8c4fea711b8f" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="021804aa-747e-425e-b366-b36301da6a44" ownerguid="ec118a28-fd23-48b3-8819-bfe1329f028d"> -<ExampleWords> -<AUni ws="en">reflect off, bounce off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to light reflecting off of something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="02187b51-6701-4e4d-87f3-93d0d0433a1e" ownerguid="72274e9d-5d3c-4ae7-93ab-db3617cdda1e"> -<ExampleWords> -<AUni ws="en">feel like, feel of, feel (good/bad), have a (good/bad) feel, (tired) feeling</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words indicate that something feels like another thing or feels a particular way?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="021a89a4-c0d7-4a50-ace8-1e273f2e0705"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lepro:su</AUni> -<AUni ws="qvm-x-acl">lepro:su; lepro:su; lepro:so</AUni> -<AUni ws="qvm-x-akh">lepro:su</AUni> -<AUni ws="qvm-x-akl">lepro:su; lepro:su; lepro:so</AUni> -<AUni ws="qvm-x-ame">lepro:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+leproso</AUni> -<AUni ws="qvm-x-acl">+leproso</AUni> -<AUni ws="qvm-x-akh">+leproso</AUni> -<AUni ws="qvm-x-akl">+leproso</AUni> -<AUni ws="qvm-x-ame">+leproso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.740" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="291c8527-bdf9-40db-802d-75b005d870e9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+leproso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cc6b0d5a-1ac5-4bb7-abd2-d42ac52ff2b8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="679906fb-f9f4-4714-93dc-2afd8a04bfe7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +leproso 
\entryTyp root 
\gENG lepros 
\gSPN leproso 
\e +leproso 
\c N0 
\ach lepro:su 
\akh lepro:su 
\acl lepro:su / _# 
\acl lepro:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lepro:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lepro:su / _# 
\akl lepro:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lepro:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lepro:su</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="021ab3f5-19a3-4c89-97cf-2faf444f9682" ownerguid="fbe55ac6-7f80-4f5f-ae49-438900095620"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">May</AUni> -<AUni ws="es">mayo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9e3fb8cb-7475-455b-a887-ba979c737750" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="0221a7f3-34e8-44d7-8218-1f4c1c3b60e3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">michi</AUni> -<AUni ws="qvm-x-acl">michi; michi; miche</AUni> -<AUni ws="qvm-x-akh">michi</AUni> -<AUni ws="qvm-x-akl">michi; michi; miche</AUni> -<AUni ws="qvm-x-ame">michi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mitri</AUni> -<AUni ws="qvm-x-acl">*mitri</AUni> -<AUni ws="qvm-x-akh">*mitri</AUni> -<AUni ws="qvm-x-akl">*mitri</AUni> -<AUni ws="qvm-x-ame">*mitri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.457" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="64d4b391-7c42-4c41-aa73-0b0b5f429d34" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mitri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="92e60117-743f-4e2f-9305-ded145febb45" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3a8ad1cb-089e-4c9e-854f-e1d774dd4feb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mitri 
\entryTyp root 
\gENG 
\gSPN hueso.oido 
\e *mitri 
\c N0 
\mp +FinalI 
\ach michi 
\akh michi 
\acl michi / _# 
\acl michi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl miche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl michi / _# 
\akl michi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl miche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame michi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="022461e6-54f9-4bcc-abc4-e82b98b166ef" ownerguid="4f516445-e044-4d9c-ac9b-a3178f72b405"> -<ExampleWords> -<AUni ws="en">film, direct</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making movies?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0225531f-90df-46b0-9923-e25e13da7d3a" ownerguid="6f3c704e-dcaf-4b93-85e7-35ab981102c8"> -<Form> -<AUni ws="qvm-x-ach">räyu</AUni> -<AUni ws="qvm-x-acl">räyu; räyo</AUni> -<AUni ws="qvm-x-akh">räyu</AUni> -<AUni ws="qvm-x-akl">räyu; räyo</AUni> -<AUni ws="qvm-x-ame">räyu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0225bfec-610b-4872-8869-f4d4004201ed" ownerguid="85dfc6a3-6c70-41f2-a869-32e2fb3c40ee"> -<ExampleWords> -<AUni ws="en">bent, stooped, hunched over, humpback, crooked</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who is bent over?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="022ba925-aac2-4b4d-a7d6-c07c4d66b23d" ownerguid="9e8b331c-da61-4881-b7ed-0bf3f07ce88f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pocket.knife</AUni> -<AUni ws="es">nabaja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5338ce99-d43c-4b44-8c19-f19e6e266413" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="PhNCSegments" guid="022cba1a-4664-427d-b851-7b93af4f0a46" ownerguid="be765e3e-ea5e-11de-9d42-0013722f8dec"> -<Abbreviation> -<AUni ws="en">C-t</AUni> -</Abbreviation> -<Description> -<AStr ws="en"> -<Run ws="en">C-t</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">Non-t consonants</AUni> -</Name> -<Segments> -<objsur guid="54482722-898d-4007-ba4d-c113b50789cd" t="r" /> -<objsur guid="5adde606-e77c-496c-9fb2-111a6b01e9fd" t="r" /> -<objsur guid="60f222f8-e2b9-4ffe-ac3c-0c7fb1a24e83" t="r" /> -<objsur guid="655c115f-eab9-4552-9a98-7ef9bb41ebb1" t="r" /> -<objsur guid="9e9886d6-589e-4538-9509-5532fbe76ef1" t="r" /> -<objsur guid="bcf89c4f-49cb-4a7f-8937-f35c715f70df" t="r" /> -<objsur guid="d75b2ca4-ea5e-11de-9639-0013722f8dec" t="r" /> -<objsur guid="d764b602-ea5e-11de-9d0b-0013722f8dec" t="r" /> -<objsur guid="d77c8d68-ea5e-11de-9b1a-0013722f8dec" t="r" /> -<objsur guid="d78616c6-ea5e-11de-9f26-0013722f8dec" t="r" /> -<objsur guid="d79dee2c-ea5e-11de-98a0-0013722f8dec" t="r" /> -<objsur guid="d7a7778a-ea5e-11de-90d5-0013722f8dec" t="r" /> -<objsur guid="d7b36338-ea5e-11de-9064-0013722f8dec" t="r" /> -<objsur guid="d7bf4ef0-ea5e-11de-96a9-0013722f8dec" t="r" /> -<objsur guid="d7c8d84e-ea5e-11de-909e-0013722f8dec" t="r" /> -<objsur guid="d7e0afb4-ea5e-11de-9cc6-0013722f8dec" t="r" /> -<objsur guid="d7ec9b62-ea5e-11de-892e-0013722f8dec" t="r" /> -<objsur guid="d7f624c0-ea5e-11de-9891-0013722f8dec" t="r" /> -<objsur guid="d8178584-ea5e-11de-8593-0013722f8dec" t="r" /> -<objsur guid="d8237132-ea5e-11de-987d-0013722f8dec" t="r" /> -<objsur guid="d82f5cea-ea5e-11de-864c-0013722f8dec" t="r" /> -<objsur guid="d838e648-ea5e-11de-9b7f-0013722f8dec" t="r" /> -<objsur guid="e1bd5b84-48dc-4df5-8cb0-de15793f00f6" t="r" /> -</Segments> -</rt> -<rt class="LexEntry" guid="022e57c2-c632-4419-93be-602cf7f29c7d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">traición; traicion</AUni> -<AUni ws="qvm-x-acl">traición; traicion</AUni> -<AUni ws="qvm-x-akh">traición; traicion</AUni> -<AUni ws="qvm-x-akl">traición; traicion</AUni> -<AUni ws="qvm-x-ame">traición; traicion</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+traición</AUni> -<AUni ws="qvm-x-acl">+traición</AUni> -<AUni ws="qvm-x-akh">+traición</AUni> -<AUni ws="qvm-x-akl">+traición</AUni> -<AUni ws="qvm-x-ame">+traición</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.38" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7472f675-122f-464e-b110-6b0be554bf9c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+traición</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bd38f425-3c0e-45b3-9389-0e9653691e4f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2f3f3967-2be5-4d03-8fcd-de9d0b412e98" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +traición 
\entryTyp root 
\gENG 
\gSPN 
\e +traición 
\c N0 
\mp +FinalC 
\ach traición / _# 
\ach traicion / ~_# 
\akh traición / _# 
\akh traicion / ~_# 
\acl traición / _# 
\acl traicion / ~_# 
\akl traición / _# 
\akl traicion / ~_# 
\ame traición / _# 
\ame traicion / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="022f83e9-e527-4390-9c80-81bb6c237ca1"> -<Form> -<Str> -<Run ws="en">DUR</Run> -</Str> -</Form> -</rt> -<rt class="Segment" guid="02305051-3ebf-4f56-a38c-5655bf12b76c" ownerguid="e8b77d6a-f431-4f37-a995-b784cf18be2a"> -<Analyses> -<objsur guid="81622280-13ae-4f67-bf16-618e0d13abad" t="r" /> -<objsur guid="ed743f9d-97cd-4e6c-80dc-f5c1de2d836f" t="r" /> -<objsur guid="40d0a9f2-1c32-4753-90ff-ff46d203ea0b" t="r" /> -<objsur guid="aa65923e-3cb0-45d4-9489-6efbc2a82f74" t="r" /> -<objsur guid="2ef711fc-a58a-4ceb-b48a-7e1fc71ec429" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemMsa" guid="02316144-3a6a-4a06-9d75-92abdeea0d8c" ownerguid="f036c423-db57-42a5-bf98-6fc824c187f1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="02319a64-1177-415e-9f0e-f0376297454b" ownerguid="aadefee4-ed14-4753-952e-e945f2972e37"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Many animals <have> four feet.; The story <is composed of> several episodes.; This page <is part of> that document.; the wheel <of> the car; the boy<'s> foot</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">have, of, -'s, consist of, be made of, be made up of, be composed of, comprise, be divided into, include</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words indicate that something has parts?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0232523a-b481-4d19-82ee-aa70eb41bf7b" ownerguid="82a4ae36-8e70-4c0d-8144-ad9fc3c0e04f"> -<ExampleWords> -<AUni ws="en">fall on your face, fall prone, prostrate oneself, get horizontal, fall flat, hit the dirt, lay flat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to becoming horizontal?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="023364a1-d9c2-458d-ba05-e1af63f86779" ownerguid="6d9b435c-f319-4c9b-958d-2a3d0454a6ea"> -<Form> -<AUni ws="qvm-x-ach">camëllu</AUni> -<AUni ws="qvm-x-acl">camëllu; camëllu; camëllo</AUni> -<AUni ws="qvm-x-akh">camëllu</AUni> -<AUni ws="qvm-x-akl">camëllu; camëllu; camëllo</AUni> -<AUni ws="qvm-x-ame">camëllu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="0233d40b-e24d-4490-aa1c-80396c97cfae" ownerguid="7140238c-a839-4012-9732-77099e69ddd3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.deserted</AUni> -<AUni ws="es">ser.silencioso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3170d496-c6d1-47af-afd6-312414e04280" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="02340639-5072-448e-a414-78dcb2e26e0c" ownerguid="1c058512-9c4d-47ac-b13a-4d91161d442a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0235a2f1-2a85-4108-98b7-ecee02be0422" ownerguid="5c348090-12f4-4c83-8331-e10971bbc8d3"> -<ExampleWords> -<AUni ws="en">ground beef, steak</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to different types of meat?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0235e4a4-d28d-4660-91a3-f5d640afb99c" ownerguid="1dc9e33a-91ce-4c64-9bad-197ef3f4a6dd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">womanizer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d3d0a945-6e9b-41ea-bce2-8938d4b9b9d8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="023637d5-65fc-4406-8717-cf62c9da1625" ownerguid="fd33670e-ef16-4566-a62e-aa077e58407b"> -<ExampleWords> -<AUni ws="en">boom, crack, rumble, thunder (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(19) What words refer to the sound of thunder?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0239a87b-d869-4fcd-8aa6-549511a959c7" ownerguid="3fb3baf7-1c60-499f-a226-260eb82a89a7"> -<Form> -<AUni ws="qvm-x-ach">lagtu</AUni> -<AUni ws="qvm-x-acl">lagtu; lagto</AUni> -<AUni ws="qvm-x-akh">laqtu</AUni> -<AUni ws="qvm-x-akl">laqtu; laqto</AUni> -<AUni ws="qvm-x-ame">laqtu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="023a46ef-5e87-4606-a63f-2326cae12265" ownerguid="be468e11-6620-492e-8a6a-2e6173759ef7"> -<Form> -<AUni ws="qvm-x-ach">lüna</AUni> -<AUni ws="qvm-x-acl">lüna</AUni> -<AUni ws="qvm-x-akh">lüna</AUni> -<AUni ws="qvm-x-akl">lüna</AUni> -<AUni ws="qvm-x-ame">lüna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="023cf435-a77c-428b-b8eb-31e15c58dcdf" ownerguid="8b47e9e5-c935-48c5-a93e-8291e58d2778"> -<Form> -<AUni ws="qvm-x-ach">putu</AUni> -<AUni ws="qvm-x-acl">putu; puto</AUni> -<AUni ws="qvm-x-akh">putu</AUni> -<AUni ws="qvm-x-akl">putu; puto</AUni> -<AUni ws="qvm-x-ame">putu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="023df084-4733-4619-b482-7016fce310b5" ownerguid="7bf77556-64df-428e-bfdd-095af5bfeeda"> -<ExampleWords> -<AUni ws="en">intent, intention, impulse, aim, purpose, resolution</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to what is intended?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="023fca23-1e4e-4b84-8399-b8bc433901a7" ownerguid="9d216f24-32de-4ff4-821e-4c31294215e1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">dar.en.la.mano.para.que.tenga.con.mati.o.con.plato.o.con.manca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="00e2752a-00fa-416c-aee4-c41986c35cf9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="0243c2b6-9575-4e54-8471-d51362ae96a0" ownerguid="73b3b724-9942-4bfb-bcd4-5d295743e67e"> -<Form> -<AUni ws="qvm-x-ach">barbëchu</AUni> -<AUni ws="qvm-x-acl">barbëchu; barbëchu; barbëcho</AUni> -<AUni ws="qvm-x-akh">barbëchu</AUni> -<AUni ws="qvm-x-akl">barbëchu; barbëchu; barbëcho</AUni> -<AUni ws="qvm-x-ame">barbëchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="0249a66f-940e-439b-9d7a-6d2ae604b988"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">liclacchu</AUni> -<AUni ws="qvm-x-acl">liclacchu; liclacchu; liclaccho</AUni> -<AUni ws="qvm-x-akh">liklakchu</AUni> -<AUni ws="qvm-x-akl">liklakchu; liklakchu; liklakcho</AUni> -<AUni ws="qvm-x-ame">liklakchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llikllaktru</AUni> -<AUni ws="qvm-x-acl">*llikllaktru</AUni> -<AUni ws="qvm-x-akh">*llikllaktru</AUni> -<AUni ws="qvm-x-akl">*llikllaktru</AUni> -<AUni ws="qvm-x-ame">*llikllaktru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.194" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="52b21460-1e74-44be-8836-52c4c22065bb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llikllaktru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="24546d36-2801-4661-9087-0ef7d8226579" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a9473df9-eb91-4996-921a-97ad39b78bdf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llikllaktru 
\entryTyp root 
\gENG armpit 
\gSPN sobaco 
\e *llikllaktru 
\c N0 
\ach liclacchu 
\akh liklakchu 
\acl liclacchu / _# 
\acl liclacchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl liclaccho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl liklakchu / _# 
\akl liklakchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl liklakcho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame liklakchu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntryType" guid="024b62c9-93b3-41a0-ab19-587a0030219a" ownerguid="bb372467-5230-43ef-9cc7-4d40b053fb94"> -<Abbreviation> -<AUni ws="en">dial. var.</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">A variant of a lexeme, characteristically used by a specific demographic subset of the language.</Run> -</AStr> -</Description> -<Discussion> -<objsur guid="b6c773e4-ea5e-11de-9774-0013722f8dec" t="o" /> -</Discussion> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Dialectal Variant</AUni> -</Name> -<ReverseAbbr> -<AUni ws="en">dial. var. of</AUni> -</ReverseAbbr> -<ReverseName> -<AUni ws="en">Dialectal Variant of</AUni> -</ReverseName> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="024be6bd-c403-4064-b217-ea1f339ac949" ownerguid="17851b86-f8fb-4850-9b33-c1a9fcb0aec1"> -<ExampleWords> -<AUni ws="en">gracious hostess, hospitable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a good host?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="024ec8bc-fd9f-4f71-8e86-b4e1a027da53"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shiraca</AUni> -<AUni ws="qvm-x-acl">shiraca</AUni> -<AUni ws="qvm-x-akh">shiraka</AUni> -<AUni ws="qvm-x-akl">shiraka</AUni> -<AUni ws="qvm-x-ame">shiraka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shiraka</AUni> -<AUni ws="qvm-x-acl">*shiraka</AUni> -<AUni ws="qvm-x-akh">*shiraka</AUni> -<AUni ws="qvm-x-akl">*shiraka</AUni> -<AUni ws="qvm-x-ame">*shiraka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.610" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e89b6b90-2b1b-42b7-970b-fe3f749020c3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shiraka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b6d74740-dbbc-4492-9a02-3769cce0e687" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4078aba9-aa73-495a-b092-4a6d79b240f8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shiraka 
\entryTyp root 
\gENG raspberry.bush 
\gSPN frambueso 
\e *shiraka 
\c N0 
\ach shiraca 
\akh shiraka 
\acl shiraca 
\akl shiraka 
\ame shiraka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="0253919b-c99d-446a-858a-790ab9a37842" ownerguid="19f69682-1c26-433d-981c-97621c387c0e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">LEV 21.18 Saymi mandag cüra cananpä yaycuyanmansu gapracuna, wegrucuna, cera cärayogcuna, macllucuna...</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="025599bd-4e2a-4e25-b8c4-3bf628f1e822" ownerguid="befe69ac-c954-4251-b28e-b4c8b1a207ac"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="02568b01-7167-4c43-b5e8-ca768dfa2fcb" ownerguid="e4b6d614-7abb-412e-8607-55d3610da60e"> -<Form> -<AUni ws="qvm-x-ach">raju</AUni> -<AUni ws="qvm-x-acl">raju; rajo</AUni> -<AUni ws="qvm-x-akh">raju</AUni> -<AUni ws="qvm-x-akl">raju; rajo</AUni> -<AUni ws="qvm-x-ame">rahu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="0258aa2a-109e-4706-ba17-10eb12b712a6" ownerguid="d418f346-d0a9-4dc3-aef0-eedafc076e9f"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2KI 21.13 Ganra plätu mojusyashga captin ucparcur shumag limpiashgannogmi Jerusalén marcatapis limpiashag.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="025a1127-3c4b-48ad-8f45-a249f78d9a02" ownerguid="134c68a9-ac3f-4b7e-8fca-63642d796a75"> -<ExampleWords> -<AUni ws="en">population</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the number of citizens in a country or area?</AUni> -</Question> -</rt> -<rt class="MoInflAffMsa" guid="025cfd18-cce0-4a3c-a2c2-eafda25bd16c" ownerguid="7aba0347-4fdf-4782-bfdf-c26a3290c596"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="025da6f4-b1b6-423a-8c0f-b324f531a6f1" ownerguid="63403699-07c1-43f3-a47c-069d6e4316e5"> -<Abbreviation> -<AUni ws="en">1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.978" /> -<DateModified val="2022-9-23 16:55:7.978" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words for all plants. Use a book of pictures to identify plant names and the scientific name. Languages divide plants into various domains that are not always comparable from language to language. Criterial features may be characteristics (trees and bushes are distinguished by size and number of trunks) and use (grass and weeds are distinguished by their desirability). A common distinction is between trees and non-trees, with trees described as being big, woody, and having a life expectancy of several years, while non-trees are small, non-woody, and have a life expectancy of typically not more than one year (Heine, Bernd and Karsten Legere. 1995. Swahili plants. Rudiger Koppe Verlag: Koln.). Agricultural societies will divide plants into wild and cultivated. However most plants for which there are names have some use. Therefore it does not seem helpful to divide plant names into domains for useful and non-useful plants. Since only parts of plants are eaten, edible parts of plants are listed under the domain 'Food'. Some languages may have more domains than are used in this list, others may have fewer. The classification system used here does not agree entirely with the system used by botanists. For instance botanists do not classify all the tree species together. The palm trees belong to the class Monocotyledoneae and are classified with lilies, bananas, and orchids. Apple and cherry trees belong to the class Dicotyledoneae and are classified in the rose family along with roses and blackberries. The acacia tree also belongs to the class Dicotyledoneae and is classified in the pulse family along with lupines and beans. However most folk taxonomies bring all the trees together. The scientific classification system for plants and animals is taken from: Carruth, Gorton, ed. 1989. The Volume Library, Vols. 1 and 2. The Southwestern Company: Nashville.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>3 Plants; 3A Plants</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Plant</AUni> -</Name> -<OcmCodes> -<Uni>137 Flora</Uni> -</OcmCodes> -<Questions> -<objsur guid="af971c43-110f-4ba3-a321-26bfed35dc17" t="o" /> -<objsur guid="271d7c47-3960-49c8-9632-8dd133421f61" t="o" /> -<objsur guid="c5a84f1c-f6b5-4d71-a4fb-cea65bc1c2cd" t="o" /> -<objsur guid="ce2e8e2a-fa4b-455c-ac2b-f6a1c8039288" t="o" /> -<objsur guid="79118533-c776-4082-a10c-1d48be6c0bc2" t="o" /> -<objsur guid="8fb864ef-a12c-4148-9a51-db8b1e1737a1" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="32125c5f-d69a-442f-ba66-6277ec0a3b15" t="r" /> -<objsur guid="5bb29704-fe0f-4594-9622-ce0aa42b93c8" t="r" /> -<objsur guid="f3627c41-5daf-4f73-ac42-8a0522035e0b" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="0ee5b933-f1ab-485f-894a-51fe239cb726" t="o" /> -<objsur guid="531af868-b5fb-41c2-ba50-764458f9102f" t="o" /> -<objsur guid="c345f278-91ff-463d-b9a6-8abac8a267eb" t="o" /> -<objsur guid="d06dae77-134a-403f-ba88-52ecd66c0522" t="o" /> -<objsur guid="d117aa22-3f18-47c4-9683-51ecf1dc7134" t="o" /> -<objsur guid="d2ca3194-e393-480e-ae1d-dd67bed55227" t="o" /> -<objsur guid="f7b7eb3c-b784-4ba5-8dac-a68fd27ce0ea" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="025f80eb-67fd-4d33-a8ca-9e55a2cfda8b" ownerguid="3cb4c07c-8760-4ff9-8d45-1c0bed80ffb3"> -<ExampleWords> -<AUni ws="en">pregnancy, gestation period, term, full term, trimester, antenatal, prenatal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the time period when a woman is pregnant?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0260c018-72bb-4e76-b9ae-adf11838d897" ownerguid="ff79e15f-55f4-496a-83f3-0ff39fbd5963"> -<Form> -<AUni ws="qvm-x-ach">chegpa</AUni> -<AUni ws="qvm-x-acl">chegpa</AUni> -<AUni ws="qvm-x-akh">cheqpa</AUni> -<AUni ws="qvm-x-akl">cheqpa</AUni> -<AUni ws="qvm-x-ame">chiqpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="0261864a-a6b8-473d-99b5-9e4f700a9174" ownerguid="37d1a4be-3a32-4033-9695-58b4b77ac36a"> -<Form> -<AUni ws="qvm-x-ach">puenti; puente</AUni> -<AUni ws="qvm-x-acl">puenti; puenti; puente</AUni> -<AUni ws="qvm-x-akh">puenti; puente</AUni> -<AUni ws="qvm-x-akl">puenti; puenti; puente</AUni> -<AUni ws="qvm-x-ame">puenti; puente</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0264d539-5654-48bb-96dd-3857735c2a27" ownerguid="eb821083-3fb0-441a-9f1d-ad2a9ed918d8"> -<ExampleWords> -<AUni ws="en">prop (up)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to putting something under or against something to keep it from falling?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0266a2a0-8dee-41c8-9584-efdc790cb2f2" ownerguid="f864b0ee-eb43-4def-bdc6-66c8a417aa1a"> -<Form> -<AUni ws="qvm-x-ach">ya</AUni> -<AUni ws="qvm-x-acl">ya</AUni> -<AUni ws="qvm-x-akh">ya</AUni> -<AUni ws="qvm-x-akl">ya</AUni> -<AUni ws="qvm-x-ame">ya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="026bb513-6246-48e1-a72b-9fc5c1225c79" ownerguid="eca46133-c350-4573-a349-9b7ce11b6fa8"> -<ExampleWords> -<AUni ws="en">contents</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to what is in a container?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="026eb7e6-397b-4769-951e-608bcd733725"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chogchi</AUni> -<AUni ws="qvm-x-acl">chogchi; chogchi; chogche</AUni> -<AUni ws="qvm-x-akh">choqchi</AUni> -<AUni ws="qvm-x-akl">choqchi; choqchi; choqche</AUni> -<AUni ws="qvm-x-ame">chuqchi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*truqtri</AUni> -<AUni ws="qvm-x-acl">*truqtri</AUni> -<AUni ws="qvm-x-akh">*truqtri</AUni> -<AUni ws="qvm-x-akl">*truqtri</AUni> -<AUni ws="qvm-x-ame">*truqtri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.180" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="93fb55af-d825-450d-a1cd-0451bd7fe1ff" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*truqtri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="966b581e-e507-45a7-a5c8-4cf84a60f3f0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d2db09a1-0734-46f7-8978-8472fd182d86" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *truqtri 
\entryTyp root 
\gENG rinse.mouth 
\gSPN enjuagar.boca 
\e *truqtri 
\c N0 
\mp +FinalI 
\ach chogchi 
\akh choqchi 
\acl chogchi / _# 
\acl chogchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chogche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl choqchi / _# 
\akl choqchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl choqche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chuqchi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="0272e84c-9487-40ea-ba92-47ccd2dfc9a6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">brea</AUni> -<AUni ws="qvm-x-acl">brea</AUni> -<AUni ws="qvm-x-akh">brea</AUni> -<AUni ws="qvm-x-akl">brea</AUni> -<AUni ws="qvm-x-ame">brea</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+brea</AUni> -<AUni ws="qvm-x-acl">+brea</AUni> -<AUni ws="qvm-x-akh">+brea</AUni> -<AUni ws="qvm-x-akl">+brea</AUni> -<AUni ws="qvm-x-ame">+brea</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.981" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="58ea03c7-8211-4bcb-a395-2960383e591c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+brea</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8d031d42-6f27-4bfe-a490-efd0b99fb62a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="49842c94-0cf8-4b84-9010-959515513792" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +brea 
\entryTyp root 
\gENG tar 
\gSPN brea 
\e +brea 
\c N0 
\ach brea 
\akh brea 
\acl brea 
\akl brea 
\ame brea</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="027749ee-85fe-47e0-98ec-68c885eff943" ownerguid="db475bf9-5eb5-4864-ac17-f9cb0c823407"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="02795080-2d35-41bc-9e13-bd2efc581396" ownerguid="e804c942-cc17-42fc-b2f7-f8f06af39479"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">point</AUni> -<AUni ws="es">señalar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="23beda3b-bd80-4764-86b5-98817310e5b9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="027aa802-27da-4b29-aa1a-b8f439822bf3" ownerguid="1cbb30d4-6c4a-4512-b807-1a21559996c8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="LexExampleSentence" guid="027ad5c1-a3d2-45f1-b7a0-0f669f1cfda7" ownerguid="527360b6-0108-45b7-894b-278977ad0f35"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Gen 47.27 Tsaynogpami Jacobpis y paypita miragcunapis Egiptucho cag Gosén partita posesionta tömargan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="027b88d1-5eff-4785-8ba2-4a78704fbd3c" ownerguid="ee6febac-1ca5-4c63-af23-ad64bb275b2f"> -<Form> -<AUni ws="qvm-x-ach">reglamentu; reglamento</AUni> -<AUni ws="qvm-x-acl">reglamentu; reglamentu; reglamento</AUni> -<AUni ws="qvm-x-akh">reglamentu; reglamento</AUni> -<AUni ws="qvm-x-akl">reglamentu; reglamentu; reglamento</AUni> -<AUni ws="qvm-x-ame">reglamentu; reglamento</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="028026ae-6d82-46aa-9071-a63fbb4478b5" ownerguid="f86dc09d-23e8-4ccd-81be-ab2213aa9339"> -<Form> -<AUni ws="qvm-x-ach">lipay</AUni> -<AUni ws="qvm-x-acl">lipay</AUni> -<AUni ws="qvm-x-akh">lipay</AUni> -<AUni ws="qvm-x-akl">lipay</AUni> -<AUni ws="qvm-x-ame">lipay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="0281fb1d-ab12-41b9-a3dc-09ef6b1e4733" ownerguid="1c3c8af0-56b9-4617-862e-21f39b388606"> -<Abbreviation> -<AUni ws="en">2.6.6.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.94" /> -<DateModified val="2022-9-23 16:55:8.94" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to life after death.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Life after death</AUni> -</Name> -<OcmCodes> -<Uni>769 Cult of the Dead</Uni> -</OcmCodes> -<Questions> -<objsur guid="82bbd7bd-406c-4e0b-81be-976aede3f49a" t="o" /> -<objsur guid="64924311-f1c6-4eae-9808-92ad7a25fb47" t="o" /> -<objsur guid="28489b2a-bcf3-432b-9312-66cdab92f929" t="o" /> -<objsur guid="2dc21a6e-7b5e-48f4-b5d3-0c44fa453eb2" t="o" /> -<objsur guid="1293e1db-288c-40c0-acec-29b95e4da31b" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="1c3f8996-362e-4ee0-af02-0dd02887f6aa" t="r" /> -<objsur guid="ff505092-6d88-4b5e-8095-04e471d7ad4c" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="0282f195-0af0-48d6-a242-05a267fd57a3" ownerguid="2aefc6aa-aeb5-4f42-bf7c-d95b5ec07604"> -<Form> -<AUni ws="qvm-x-ach">warca</AUni> -<AUni ws="qvm-x-acl">warca</AUni> -<AUni ws="qvm-x-akh">warka</AUni> -<AUni ws="qvm-x-akl">warka</AUni> -<AUni ws="qvm-x-ame">warka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="0285971e-f5d2-4e1f-8238-5a908bef59d3" ownerguid="1067e24c-275e-4e12-8cec-fca35e7c5260"> -<Form> -<AUni ws="qvm-x-ach">naupa</AUni> -<AUni ws="qvm-x-acl">naupa</AUni> -<AUni ws="qvm-x-akh">nawpa</AUni> -<AUni ws="qvm-x-akl">nawpa</AUni> -<AUni ws="qvm-x-ame">nawpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="028754df-5f99-4f4a-a9da-c3e763700ee1" ownerguid="f77fd6a4-0a27-4b86-8744-6616143af5e7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="CmRow" guid="0288b729-8eb0-41ad-b27c-9534c64900a5" ownerguid="bb95ab3e-ea5e-11de-94f6-0013722f8dec"> -<Cells> -<objsur guid="a00ccf58-9159-471b-908f-2aaebda1b209" t="o" /> -</Cells> -</rt> -<rt class="LexSense" guid="0289cf5c-a8e9-47a6-b3d2-6bf64efce469" ownerguid="0a8c55d6-1b79-4cfe-aef5-ac180fa65968"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="d0071fec-3ab9-48bd-821c-97c547076efe" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="cc0f4c72-fa26-4b71-9b93-bab1197ba920" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="028b5279-0f22-4019-bcaa-18207a29ff37" ownerguid="07f336f9-cc14-4c95-a762-76b6620ef310"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="0296465a-25de-4af6-a122-376956b4b452" ownerguid="af0909a5-928a-4421-baaa-f33b14302714"> -<Abbreviation> -<AUni ws="en">9.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.688" /> -<DateModified val="2022-9-23 16:55:8.688" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the personal pronouns, including independent, subject, object, and possessive pronouns. It is best to collect all the pronouns in a chart. This way you are more certain of collecting them all and seeing how they are related to each other. A language may have more sets and more distinctions than English does, or it may have less. For instance some languages have a pronoun 'we' which includes the hearer, and another pronoun 'we' which excludes the hearer. Other languages have an indefinite pronoun that means something like the English word 'someone'. Many languages do not have the masculine (he), feminine (she), and neuter (it) distinctions that English has. It is necessary to determine the sets and functions of the pronouns for each language.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>92 Discourse Referentials; 92A Speaker; 92B Speaker and Those Associated with the Speaker; 92C Receptor, Receptors; 92D Whom or What Spoken or Written About; 92H Emphatic Adjunct</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Pronouns</AUni> -</Name> -<Questions> -<objsur guid="16aeb96b-840c-49a2-8230-2a09a1cce1ca" t="o" /> -<objsur guid="2b16e65a-7d89-434f-a7fb-556ebf00fbd7" t="o" /> -<objsur guid="b4d3c52f-fff3-432e-9f1d-0b4c2d3f9e6b" t="o" /> -<objsur guid="e197531f-b06b-44ae-80f9-4e9d982685d1" t="o" /> -<objsur guid="ec20ae18-4b60-42e5-ae29-508ab2f25902" t="o" /> -<objsur guid="accef927-0e82-459b-81fe-31d2076dcd1b" t="o" /> -<objsur guid="94a0230c-08d9-40ee-b50e-5f80d45b7548" t="o" /> -<objsur guid="cea19805-cd90-46a2-af59-41b16c7fa561" t="o" /> -<objsur guid="655a3872-893a-4416-a216-b27c457c40ae" t="o" /> -<objsur guid="1a6b05ad-72a5-445d-baa0-770be7c5c7ea" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="13df6ee2-4189-4faa-b54d-768588d03978" t="o" /> -<objsur guid="d4521b0f-0703-48cc-94a0-f42ccc09959c" t="o" /> -<objsur guid="8db17eef-6c42-4ba0-9f07-a3b0e7c8f1e1" t="o" /> -<objsur guid="76795fdd-55dc-4fb7-a9ad-d1423c31df50" t="o" /> -<objsur guid="ad4d28f0-5cbb-4b82-b736-9b41860a248c" t="o" /> -<objsur guid="a139558a-8df9-4fc9-bd3e-816a1408ba7f" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="02990ea1-29db-4ec9-9d39-5edc58f4b60c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">anticristo; anticristu</AUni> -<AUni ws="qvm-x-acl">anticristo; anticristo; anticristu</AUni> -<AUni ws="qvm-x-akh">anticristo; anticristu</AUni> -<AUni ws="qvm-x-akl">anticristo; anticristo; anticristu</AUni> -<AUni ws="qvm-x-ame">anticristo; anticristu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+anticristo</AUni> -<AUni ws="qvm-x-acl">+anticristo</AUni> -<AUni ws="qvm-x-akh">+anticristo</AUni> -<AUni ws="qvm-x-akl">+anticristo</AUni> -<AUni ws="qvm-x-ame">+anticristo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.790" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1ca7b170-09bd-4571-8a89-9058a239e2a9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+anticristo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a735fd91-8d22-47c7-8949-8782a8a27054" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="873091b4-4a06-4ead-84de-cc254f8e1db8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +anticristo 
\entryTyp root 
\gENG antichrist 
\gSPN anticristo 
\e +anticristo 
\c BN 
\ach anticristo / _# 
\ach anticristu / ~_# 
\akh anticristo / _# 
\akh anticristu / ~_# 
\acl anticristo / _# 
\acl anticristo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl anticristu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl anticristo / _# 
\akl anticristo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl anticristu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame anticristo / _# 
\ame anticristu / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="029a0b5e-428e-44fe-9bae-e2d98174aace" ownerguid="bcae71a9-91f9-4d17-ac02-009f39940f38"> -<Form> -<AUni ws="qvm-x-ach">toldu</AUni> -<AUni ws="qvm-x-acl">toldu; toldo</AUni> -<AUni ws="qvm-x-akh">toldu</AUni> -<AUni ws="qvm-x-akl">toldu; toldo</AUni> -<AUni ws="qvm-x-ame">toldu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="029d0078-1fe3-4d86-b21f-7a0d03af872c" ownerguid="13ebe38d-75ac-4b67-9f42-99178eb81cfc" /> -<rt class="CmSemanticDomain" guid="029e0760-3306-41cc-b032-40befb22303e" ownerguid="4098899a-0ad0-4d71-9f9f-b99d5ba2e0d5"> -<Abbreviation> -<AUni ws="en">5.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.325" /> -<DateModified val="2022-9-23 16:55:8.325" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to stimulants--substances that are drunk, eaten, or chewed to make a person more alert or give him more energy.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Stimulant</AUni> -</Name> -<OcmCodes> -<Uni>276 Recreational and Non-therapeutic Drugs; Narcotics and Stimulants</Uni> -</OcmCodes> -<Questions> -<objsur guid="65be8a94-a621-4b71-a2a7-b7dd3d36c395" t="o" /> -<objsur guid="c4b4677b-9cec-45cd-854e-1a4a88cdfa08" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="Segment" guid="029e66fb-9480-4534-b743-247863f10b57" ownerguid="b0f724c9-6bc4-4bf2-9218-d67682918740"> -<Analyses> -<objsur guid="6a70c81a-31ac-4c37-bd61-f1ba2a278341" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemMsa" guid="02a03330-d3c6-47a2-80d2-58686e5578fb" ownerguid="8bb975a0-a459-4684-ad1d-60df82586d49"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="02a0f04a-02ba-4c74-bb3f-9ebfd2b48b30" ownerguid="4f80a620-30db-4529-94e8-f0cd9d0b0e96"> -<ExampleWords> -<AUni ws="en">steer, ox (castrated bull), gelding</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a castrated animal?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="02a148f9-2ba9-4863-ac51-356f7fcbb059" ownerguid="977ccc2a-3214-49ae-b752-bc1f9e878cfc"> -<Form> -<AUni ws="qvm-x-ach">rcaycä</AUni> -<AUni ws="qvm-x-acl">rcaycä</AUni> -<AUni ws="qvm-x-akh">rkaykä</AUni> -<AUni ws="qvm-x-akl">rkaykä</AUni> -<AUni ws="qvm-x-ame">rkaykä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="02a3adf8-a73b-44f8-84fd-dbc7c38e0866" ownerguid="cc308441-2f6a-49a5-91b9-3c392e55f57e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">?</AUni> -<AUni ws="es">regidor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="da52b781-d833-4cd6-901b-afe5c04d044f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="02a3dfc6-4bac-4230-a40e-1455102143e1" ownerguid="4ae3f90f-5e36-4988-b2d5-c877470dc672"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="24c45f8e-e5de-4b90-9b96-cc74a5f3363c" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="0a6ddc7a-f8fb-4625-b1c6-b4aff3a08beb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="02a41852-f7ef-4a30-870b-63d11d841a7b" ownerguid="e29f56b2-9f1e-4998-b3d7-f79d03d23f8c"> -<Form> -<AUni ws="qvm-x-ach">profi; profe</AUni> -<AUni ws="qvm-x-acl">profi; profi; profe</AUni> -<AUni ws="qvm-x-akh">profi; profe</AUni> -<AUni ws="qvm-x-akl">profi; profi; profe</AUni> -<AUni ws="qvm-x-ame">profi; profe</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="02a4d18a-ca1f-494d-ae42-802d418a21c8" ownerguid="0622d3f7-1ab2-482b-9f9c-9c101cd35182"> -<ExampleWords> -<AUni ws="en">winter, spring, summer, autumn, fall, holiday season, Christmas season, new year, midsummer, midyear</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a season related to the time of year?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="02a5f408-af54-4570-9635-315548416f2e" ownerguid="94af09fa-ff23-433b-a881-ceaca87d9d18"> -<ExampleWords> -<AUni ws="en">weaken, debilitate, enfeeble</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to making someone weaker?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="02b0fb37-fa6f-477c-b80b-17d424313e7b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">profesora</AUni> -<AUni ws="qvm-x-acl">profesora</AUni> -<AUni ws="qvm-x-akh">profesora</AUni> -<AUni ws="qvm-x-akl">profesora</AUni> -<AUni ws="qvm-x-ame">profesora</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+profesora</AUni> -<AUni ws="qvm-x-acl">+profesora</AUni> -<AUni ws="qvm-x-akh">+profesora</AUni> -<AUni ws="qvm-x-akl">+profesora</AUni> -<AUni ws="qvm-x-ame">+profesora</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.931" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="27e4482a-b0ae-4881-b14c-5bd8b80f6140" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+profesora</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="74983b44-7b4f-42a5-8e72-4b5c7363cc70" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8753cb69-cbdc-4620-97f1-3dfd495cd3fa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +profesora 
\entryTyp root 
\gENG profesor 
\gSPN profesora 
\e +profesora 
\c N0 
\ach profesora 
\akh profesora 
\acl profesora 
\akl profesora 
\ame profesora</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="02b6da2b-fae3-49f4-83f0-fd014024e117" ownerguid="ac2e424b-6aee-4031-8864-7b3f4a6fb5a3"> -<Abbreviation> -<AUni ws="en">3.5.1.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to contradicting someone--to say that something someone has said is not true.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33Z' Oppose, Contradict</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Contradict</AUni> -</Name> -<Questions> -<objsur guid="b881a995-feb6-48f2-bb45-9d0d396f33a4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="02ba4118-328c-4f2f-b35c-94ed49fc512d" ownerguid="69e2e8d4-cbb2-4d74-b04f-0dd48994eae9"> -<Form> -<AUni ws="qvm-x-ach">ashi</AUni> -<AUni ws="qvm-x-acl">ashi; ashi; ashe</AUni> -<AUni ws="qvm-x-akh">ashi</AUni> -<AUni ws="qvm-x-akl">ashi; ashi; ashe</AUni> -<AUni ws="qvm-x-ame">ashi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="02bd1086-8082-4225-b2df-7c53613557f2" ownerguid="472d2147-3f4e-4b64-b458-cf612bce74ab"> -<Form> -<AUni ws="qvm-x-ach">cuwa</AUni> -<AUni ws="qvm-x-acl">cuwa</AUni> -<AUni ws="qvm-x-akh">kuwa</AUni> -<AUni ws="qvm-x-akl">kuwa</AUni> -<AUni ws="qvm-x-ame">kuwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="02bd21d7-b47a-4ce9-91c1-e0ec532a64ef"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lanza</AUni> -<AUni ws="qvm-x-acl">lanza</AUni> -<AUni ws="qvm-x-akh">lanza</AUni> -<AUni ws="qvm-x-akl">lanza</AUni> -<AUni ws="qvm-x-ame">lanza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lanza</AUni> -<AUni ws="qvm-x-acl">+lanza</AUni> -<AUni ws="qvm-x-akh">+lanza</AUni> -<AUni ws="qvm-x-akl">+lanza</AUni> -<AUni ws="qvm-x-ame">+lanza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.43" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cc5e13a2-c464-494e-abe2-0355d5ce32c2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lanza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="46c1386b-2397-4b21-a5f7-47c5fb7ee614" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="12a8cd56-9931-4ed8-99ed-c52bdf71adc4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lanza 
\entryTyp root 
\gENG lance 
\gSPN lanza 
\e +lanza 
\c N0 
\ach lanza 
\akh lanza 
\acl lanza 
\akl lanza 
\ame lanza</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="02c11e09-c525-4f1d-aa90-94385e0d3ea7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mishti; mishti</AUni> -<AUni ws="qvm-x-acl">mishti; mishti; mishte</AUni> -<AUni ws="qvm-x-akh">mishti; mishti</AUni> -<AUni ws="qvm-x-akl">mishti; mishti; mishte</AUni> -<AUni ws="qvm-x-ame">mishti; mishti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mestizo</AUni> -<AUni ws="qvm-x-acl">+mestizo</AUni> -<AUni ws="qvm-x-akh">+mestizo</AUni> -<AUni ws="qvm-x-akl">+mestizo</AUni> -<AUni ws="qvm-x-ame">+mestizo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.416" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fd24dfbc-a92e-463f-8118-83bf6e47d0a1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mestizo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7120aa74-0091-4083-be0b-6c80d6fe075f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5db384de-43b4-4261-8141-49b703676d66" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mestizo 
\entryTyp root 
\gENG citified 
\gSPN mestizado 
\e +mestizo 
\c N0 
\mp +FinalI 
\ach mishti / _# 
\ach mishti / ~_# 
\akh mishti / _# 
\akh mishti / ~_# 
\acl mishti / _# 
\acl mishti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mishte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mishti / _# 
\akl mishti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mishte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mishti / _# 
\ame mishti / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="02c7ba24-ba2d-4b28-adb4-f14d228e5807"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pañalón; pañalon</AUni> -<AUni ws="qvm-x-acl">pañalón; pañalon</AUni> -<AUni ws="qvm-x-akh">pañalón; pañalon</AUni> -<AUni ws="qvm-x-akl">pañalón; pañalon</AUni> -<AUni ws="qvm-x-ame">pañalón; pañalon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pañalón</AUni> -<AUni ws="qvm-x-acl">+pañalón</AUni> -<AUni ws="qvm-x-akh">+pañalón</AUni> -<AUni ws="qvm-x-akl">+pañalón</AUni> -<AUni ws="qvm-x-ame">+pañalón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.689" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9f5ca3dc-a5c0-4a7c-ad78-109be43d224e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pañalón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4884535c-ece5-4bb1-b74f-63c3851f6a11" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="77639b12-4bec-4824-9189-e493e7aa8720" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pañalón 
\entryTyp root 
\gENG pañalon 
\gSPN pañalón 
\e +pañalón 
\c N0 
\mp +FinalC 
\ach pañalón / _# 
\ach pañalon / ~_# 
\akh pañalón / _# 
\akh pañalon / ~_# 
\acl pañalón / _# 
\acl pañalon / ~_# 
\akl pañalón / _# 
\akl pañalon / ~_# 
\ame pañalón / _# 
\ame pañalon / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="02cc25c7-dddd-4552-b509-79001d73bd54" ownerguid="78486b1a-d833-47ef-8a6f-6bed151539c0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="02cc40f4-7d14-47d2-8f6f-de90c70a9778" ownerguid="a668d97a-2871-419e-92db-24117893702f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="02cc9120-05b7-4152-9911-ffd078a4e8f6" ownerguid="a457eed9-12b7-48e6-8732-dcab5f23521e"> -<Form> -<AUni ws="qvm-x-ach">wiscu</AUni> -<AUni ws="qvm-x-acl">wiscu; wiscu; wisco</AUni> -<AUni ws="qvm-x-akh">wisku</AUni> -<AUni ws="qvm-x-akl">wisku; wisku; wisko</AUni> -<AUni ws="qvm-x-ame">wisku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="02ccbafb-4ae9-4fb1-a813-e6af1f902634" ownerguid="7b077388-eb2c-422d-9f37-2e74c8f0f05c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="5aefe08f-c217-4a39-81ae-461d4d08983d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="02d40281-094f-426e-a0eb-f10e113efb58" ownerguid="b6f446d5-4062-4774-b109-10b3e1b82048"> -<Evaluations> -<objsur guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="7c170941-0e20-485d-97dc-d099c5b84f61" t="o" /> -<objsur guid="60a1b93b-cd4c-4df7-bdf4-3a59dcba17e3" t="o" /> -</MorphBundles> -</rt> -<rt class="CmSemanticDomain" guid="02d404d7-f3d7-492c-92a0-c6c9ff1a1908" ownerguid="0f568473-880d-43bd-b5ce-590100fdcaf6"> -<Abbreviation> -<AUni ws="en">5.2.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.306" /> -<DateModified val="2022-9-23 16:55:8.306" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a meal.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Meal</AUni> -</Name> -<Questions> -<objsur guid="161500ab-1187-4492-acbe-c2e46a11ab4f" t="o" /> -<objsur guid="7da14bce-78f9-4b8b-9a6d-aa5f0dabe2a8" t="o" /> -<objsur guid="ea09c7f6-1e1e-455f-88cd-7d88e06e61cd" t="o" /> -<objsur guid="3a8a48ff-311c-4a81-a33a-378ca3fe8342" t="o" /> -<objsur guid="e79966d0-0b70-4881-b217-93098c52f9f8" t="o" /> -<objsur guid="974b5d40-77de-4040-9080-4160075f9fff" t="o" /> -<objsur guid="22dfc54b-198c-4e35-b306-21ffa5ef0c0d" t="o" /> -<objsur guid="326cd6bc-4087-4cb4-8227-5744a8139083" t="o" /> -<objsur guid="81dfffdd-9c92-4ea0-b4b0-e95914d10590" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="02d44bb3-5bbd-4b79-8adf-d25186b33c99" ownerguid="9f0bcab1-8256-47a1-853c-408f025e04e7"> -<ExampleWords> -<AUni ws="en">lie, tell a lie, pervert truth, deceive, tell tales, perjure, make up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to saying something that is not true?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="02dbd7b1-4e4c-4dea-9d1d-cc496d3e4b59" ownerguid="ef00129c-2860-41ad-bcc6-d36a2adffae5"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="02e16f9d-2180-43fe-85e9-e9d5da838820" ownerguid="1d2097b0-904f-43f2-a510-795fd4650081"> -<Form> -<AUni ws="qvm-x-ach">uchcu</AUni> -<AUni ws="qvm-x-acl">uchcu; uchco</AUni> -<AUni ws="qvm-x-akh">uchku</AUni> -<AUni ws="qvm-x-akl">uchku; uchko</AUni> -<AUni ws="qvm-x-ame">uchku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="02e3a503-da16-4af2-8c35-5e20c374cbba" ownerguid="a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f"> -<ExampleWords> -<AUni ws="en">sight, sense of sight, vision, eyesight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the ability to see?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="02e8fc00-fb8e-49d5-b684-031eb5e10ed4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wayla</AUni> -<AUni ws="qvm-x-acl">wayla</AUni> -<AUni ws="qvm-x-akh">wayla</AUni> -<AUni ws="qvm-x-akl">wayla</AUni> -<AUni ws="qvm-x-ame">wayla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waylla.v</AUni> -<AUni ws="qvm-x-acl">*waylla.v</AUni> -<AUni ws="qvm-x-akh">*waylla.v</AUni> -<AUni ws="qvm-x-akl">*waylla.v</AUni> -<AUni ws="qvm-x-ame">*waylla.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.615" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a0bda81b-57a1-46c3-95c0-4c553e4dd392" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waylla.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9b2e9688-e4ac-4eef-8383-e5b76194f351" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cb867ce7-ff07-4934-aee9-b6bbade71133" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waylla.v 
\entryTyp root 
\gENG be.hot 
\gSPN ser.caliente 
\e *waylla.v 
\c V1 
\ach wayla 
\akh wayla 
\acl wayla 
\akl wayla 
\ame wayla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="02eb9409-74d8-4840-aa32-ce70ffa0dd19" ownerguid="2b17fa72-8cff-456c-b7cf-921c7b457c33"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="07e1b1da-3ab0-4611-bd0a-2aedd7ab18d9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="02ede3b3-4aa5-4901-be5f-37110b661105" ownerguid="6e28dcd4-683f-4705-813f-2e52513c6aab"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="106af15f-a516-4057-9a19-60e248659f2b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="02eef9b2-805e-434f-acb3-6824423884b2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cascabel; cascabil</AUni> -<AUni ws="qvm-x-acl">cascabel; cascabil; cascabel</AUni> -<AUni ws="qvm-x-akh">cascabel; cascabil</AUni> -<AUni ws="qvm-x-akl">cascabel; cascabil; cascabel</AUni> -<AUni ws="qvm-x-ame">cascabel; cascabil</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cascabel</AUni> -<AUni ws="qvm-x-acl">+cascabel</AUni> -<AUni ws="qvm-x-akh">+cascabel</AUni> -<AUni ws="qvm-x-akl">+cascabel</AUni> -<AUni ws="qvm-x-ame">+cascabel</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.72" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e2b18b40-1865-4896-a622-a8ce1f0e62f9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cascabel</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0938a4a4-b46f-43af-b68c-b139adf342b6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="41dd4f9a-0ba7-4ba6-9df6-37438756d15d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cascabel 
\entryTyp root 
\gENG little.bell 
\gSPN cascabel 
\e +cascabel 
\c N0 
\mp +FinalC 
\ach cascabel / _# 
\ach cascabil / ~_# 
\akh cascabel / _# 
\akh cascabil / ~_# 
\acl cascabel / _# 
\acl cascabil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cascabel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cascabel / _# 
\akl cascabil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cascabel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame cascabel / _# 
\ame cascabil / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="02f37839-2db5-4f5b-a6bb-8ce2617e8b3a" ownerguid="dd94f79c-59a2-494e-a056-52e326dafc39"> -<Form> -<AUni ws="qvm-x-ach">laqla</AUni> -<AUni ws="qvm-x-acl">laqla</AUni> -<AUni ws="qvm-x-akh">laqla</AUni> -<AUni ws="qvm-x-akl">laqla</AUni> -<AUni ws="qvm-x-ame">laqla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="02fa9fa9-43f5-41ac-b1ed-41e8f818ed60" ownerguid="20d32230-184e-44e4-a123-703f7a0deb35"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="2e366f3d-257a-4847-9c23-f553adcfd25c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="02fbc9be-4397-4bf4-8399-fc5a03966ece" ownerguid="9cae4ee3-03cf-46f7-9475-21d66c93ae04"> -<ExampleWords> -<AUni ws="en">apple, apricot, avocado, banana, berry, blueberry, breadfruit, carob, citrus, cranberry, date, fig, grape, grapefruit, jackfruit, legume, lemon, lime, mango, olive, orange, papaya, passion fruit, pea, peach, pear, pineapple, plantain, plum, prune, raisin, raspberry, strawberry, tomato</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What types of fruit are eaten?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="02fc9a5e-e93c-4de8-8c39-7067f87913cb" ownerguid="681812e8-bf9b-4607-93fb-8f4232c25b8f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="02fd39af-35c4-4cf4-b496-626d5f40b077" ownerguid="86e5c062-d90f-476c-a363-264adfafedfa"> -<ExampleWords> -<AUni ws="en">raise (eyebrows), jut (chin)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to moving parts of the face (other than eyes, ears, nose, and mouth)?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0300248c-b24a-490f-898e-777d577561f3" ownerguid="0dfca7ad-cc58-4453-832a-50202cfc9f20"> -<Form> -<AUni ws="qvm-x-ach">Pascua</AUni> -<AUni ws="qvm-x-acl">Pascua</AUni> -<AUni ws="qvm-x-akh">Pascua</AUni> -<AUni ws="qvm-x-akl">Pascua</AUni> -<AUni ws="qvm-x-ame">Pascua</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="03058a13-b66a-464d-8cab-6138ec48f21c" ownerguid="a59b8884-4ce6-4d80-97a0-b5b89f5316df"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="030756f6-ddd3-4daf-a25f-8090bb60de22" ownerguid="be89e0ba-4c6a-4986-ac0d-859a901b89a1"> -<ExampleWords> -<AUni ws="en">unimaginable, inconceivable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe something that cannot be imagined?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="03079ecd-68dd-4753-98e3-dfa772e69e31" ownerguid="f9fb91a7-8199-4b9a-9c31-4b1c5d553bde"> -<Form> -<AUni ws="qvm-x-ach">ruwa</AUni> -<AUni ws="qvm-x-acl">ruwa</AUni> -<AUni ws="qvm-x-akh">ruwa</AUni> -<AUni ws="qvm-x-akl">ruwa</AUni> -<AUni ws="qvm-x-ame">ruwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="0307fe40-1bf2-4373-9ca5-71f2f42f2275"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bu:lla</AUni> -<AUni ws="qvm-x-acl">bu:lla</AUni> -<AUni ws="qvm-x-akh">bu:lla</AUni> -<AUni ws="qvm-x-akl">bu:lla</AUni> -<AUni ws="qvm-x-ame">bu:lla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bulla.n</AUni> -<AUni ws="qvm-x-acl">+bulla.n</AUni> -<AUni ws="qvm-x-akh">+bulla.n</AUni> -<AUni ws="qvm-x-akl">+bulla.n</AUni> -<AUni ws="qvm-x-ame">+bulla.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.999" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f7d894f1-5e74-420e-be51-dc005c9d4504" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bulla.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="47ab53a3-be19-4c1d-9755-27c83ea91e09" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="01e12c33-0dce-40c6-a45d-82db86eb5f11" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bulla.n 
\entryTyp root 
\gENG noise 
\gSPN bulla 
\e +bulla.n 
\c N0 
\ach bu:lla 
\akh bu:lla 
\acl bu:lla 
\akl bu:lla 
\ame bu:lla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="030843d2-059a-4f82-9d09-7fa8b7d94eba" ownerguid="a01e0e71-4940-4351-b973-964e5e5b8d8f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="030bd8df-dc8b-430a-99b2-64b7c139968f" ownerguid="fdac360e-4fe4-4aba-bd68-6e4410c06e68"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -</rt> -<rt class="WfiWordform" guid="030c2621-a13d-4a99-b22e-84f107dd9f82"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Moabman</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="030d5222-5a35-4270-8354-43167b630fa4" ownerguid="8a5f50bf-1ae3-4b7c-bf73-ec15acd20e61"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">con.toda.su.fuerza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ec932bf0-42e2-407c-b719-27fefd21f67d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="030ec7cc-57a1-4c5f-b651-e0f130dc16e6" ownerguid="bfe8902a-32a7-4092-93b2-9dcf3dce205f"> -<ExampleWords> -<AUni ws="en">sensitive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe someone who gets upset easily?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="03134252-5f94-470e-93ff-675fc44a5fbf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yapya</AUni> -<AUni ws="qvm-x-acl">yapya</AUni> -<AUni ws="qvm-x-akh">yapya</AUni> -<AUni ws="qvm-x-akl">yapya</AUni> -<AUni ws="qvm-x-ame">yapya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yapya</AUni> -<AUni ws="qvm-x-acl">*yapya</AUni> -<AUni ws="qvm-x-akh">*yapya</AUni> -<AUni ws="qvm-x-akl">*yapya</AUni> -<AUni ws="qvm-x-ame">*yapya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.749" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9f888438-880a-4bc9-a064-6b3055914f9b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yapya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e3752df5-e568-4b31-8192-25d9ef6bd537" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fd3150fc-cc30-4f9d-a2c8-10fb08be02e4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yapya 
\entryTyp root 
\gENG plow 
\gSPN arar 
\e *yapya 
\c V2 
\ach yapya 
\akh yapya 
\acl yapya 
\akl yapya 
\ame yapya</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="031382fd-597e-4b98-ad00-629b2cac3287" ownerguid="a81b4f8f-2c46-4c9a-9640-8b7bad9360f1"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="03162558-e718-4a4d-9fa6-60c6f2b212b3" ownerguid="17d5f429-6550-4a3a-a755-5ac3c3d7e04f"> -<ExampleWords> -<AUni ws="en">snake pit, den of vipers, snake hole</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) Where do snakes live?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="031c0e2f-8328-417f-a282-3d6e9b13fa7b" ownerguid="0c98ec07-f83d-48f2-8d40-8776b65371c3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="031ef6b4-b5d6-4f20-af74-f9540dc5a85b" ownerguid="971d4ac1-f78a-4449-ad2c-46a914490b15"> -<Form> -<AUni ws="qvm-x-ach">lipshi</AUni> -<AUni ws="qvm-x-acl">lipshi; lipshe</AUni> -<AUni ws="qvm-x-akh">lipshi</AUni> -<AUni ws="qvm-x-akl">lipshi; lipshe</AUni> -<AUni ws="qvm-x-ame">lipshi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="031f8b7e-6228-4d31-bf53-845ba3eb966c" ownerguid="1adae7ed-9c1e-4d57-99af-d8bd12a8b27e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 17.8 Sobornuyta yachagcunaga pïmaytapis aunitsir yarpapäcun imatapis munashganta tarinanpag cashganta.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="0322b885-c893-4cc5-981f-98c3daa1be79" ownerguid="4d22a47b-8559-41a4-92dc-ac1591d7e383"> -<Form> -<AUni ws="qvm-x-ach">cuyaylapag</AUni> -<AUni ws="qvm-x-acl">cuyaylapag</AUni> -<AUni ws="qvm-x-akh">kuyaylapaq</AUni> -<AUni ws="qvm-x-akl">kuyaylapaq</AUni> -<AUni ws="qvm-x-ame">kuyaylapaq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="03243baa-32be-4d20-a0cc-c95a07802ce9" ownerguid="8be39c56-0972-48b7-bc2c-726974fae70a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuya</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuya</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuya</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuya</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuya</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ed8e0c9a-5a44-4448-bc6b-1b766f141f5c" t="r" /> -</Morph> -<Msa> -<objsur guid="6ee88865-51d6-40db-b9fa-4ba30a1cf4e7" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="032b0ba1-8ce5-4742-87c7-741ad8e2c761" ownerguid="3c684436-fa67-470d-97b4-d9e7c8ab0a3c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="032ec2a3-52a7-485e-a65c-f6bf237120ca" ownerguid="1af9c8bf-e343-406c-a610-9604cb7056bb"> -<Form> -<AUni ws="qvm-x-ach">biblia</AUni> -<AUni ws="qvm-x-acl">biblia</AUni> -<AUni ws="qvm-x-akh">biblia</AUni> -<AUni ws="qvm-x-akl">biblia</AUni> -<AUni ws="qvm-x-ame">biblia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="032f5e4a-e5e4-4935-8c05-8ff05927e7ec" ownerguid="7096da32-2828-4992-8f07-e4bced3312a0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">uva</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6ab8b4a2-0448-488e-8324-914b61381f5d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0330d963-95d7-43f0-ad91-08a1f8c2c2e5" ownerguid="5c091d8d-5bc4-40c3-8a30-2a08fb0794b8"> -<ExampleWords> -<AUni ws="en">go into a trance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to beginning an unusual state of consciousness?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0331b601-f062-4d7b-ab21-eaacf41bb80a" ownerguid="f1af3f4c-6e0e-4cfa-adcf-9dcddf05feab"> -<ExampleWords> -<AUni ws="en">guess, estimate, supposition, assumption, theory, intuition</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to what is being guessed?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0332f71b-2f95-4fb6-ac14-36af83f3d31f" ownerguid="1137590c-6f2f-4b69-b04e-f6a890a335a2"> -<ExampleWords> -<AUni ws="en">not likely, nothing doing, no way, and that's that</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What do people say when they refuse to do something?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="03339d54-a44b-4a6d-9546-8b003f3939cb" ownerguid="cc46b6aa-9772-4bb4-a7f1-33f38a9daf22"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="0334615f-d8b9-4dc8-b86b-cf586b7e1baf" ownerguid="75555a9c-c36f-4491-bd2f-f63391bd339f"> -<Form> -<AUni ws="qvm-x-ach">chipcha</AUni> -<AUni ws="qvm-x-acl">chipcha</AUni> -<AUni ws="qvm-x-akh">chipcha</AUni> -<AUni ws="qvm-x-akl">chipcha</AUni> -<AUni ws="qvm-x-ame">chipcha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="03352940-c220-4a32-a9a5-fc08d1d0dc71" ownerguid="76a06e45-99f7-446f-a2e8-e23edf6064bd"> -<Abbreviation> -<AUni ws="en">8.3.7.8.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to garbage--something that is no longer wanted.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Garbage</AUni> -</Name> -<Questions> -<objsur guid="c5a0fcdc-5a02-4cb2-bfae-9d7ace0d9f96" t="o" /> -<objsur guid="85c765c3-103f-46de-bf42-94b75e4c55b8" t="o" /> -<objsur guid="df409837-6c89-4ab5-ae91-402cb9d57051" t="o" /> -<objsur guid="86a2440b-148a-4c55-a49b-0bd8def5fd00" t="o" /> -<objsur guid="1e23d37c-83f8-4ef7-bf99-26976053d188" t="o" /> -<objsur guid="106bf0c7-9271-4731-900a-7b53279481f3" t="o" /> -<objsur guid="2aa6d2f1-eb8e-4a93-8626-92cc45803ecb" t="o" /> -<objsur guid="fb1f3f16-9ce2-4bfa-8ea1-cacfc2863ea6" t="o" /> -<objsur guid="ddb22912-1b91-442e-bbad-75c6dc1f3825" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="0335fea0-5034-4542-9273-6a33f229dbb5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">parti</AUni> -<AUni ws="qvm-x-acl">parti; parte</AUni> -<AUni ws="qvm-x-akh">parti</AUni> -<AUni ws="qvm-x-akl">parti; parte</AUni> -<AUni ws="qvm-x-ame">parti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+partir</AUni> -<AUni ws="qvm-x-acl">+partir</AUni> -<AUni ws="qvm-x-akh">+partir</AUni> -<AUni ws="qvm-x-akl">+partir</AUni> -<AUni ws="qvm-x-ame">+partir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.729" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b0cb3336-04b4-42d8-8151-d6f4ddb4a7a5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+partir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="252f2eb5-2597-4b0b-9e9b-900032570ebb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="97e78036-09f5-4c79-9bd3-990cbef09a79" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +partir 
\entryTyp root 
\gENG split 
\gSPN partir 
\e +partir 
\c V2 
\mp +FinalI 
\ach parti 
\akh parti 
\acl parti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl parte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl parti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl parte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame parti</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="033b5fcf-a936-4bad-8f07-9f3296a86cb0" ownerguid="4ba46aa1-6411-4444-8d1b-99b98b352011"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">character</AUni> -<AUni ws="es">carácter</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d129eba4-bd60-49d5-b69c-42ccce4296af" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="033c52d1-0aa3-4aff-ba42-d88b12c825cd" ownerguid="5cb4d92c-638b-4dbe-8c93-310693768c36"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="034238d6-7583-4103-a70a-64706a4d9af4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ronca</AUni> -<AUni ws="qvm-x-acl">ronca</AUni> -<AUni ws="qvm-x-akh">ronca</AUni> -<AUni ws="qvm-x-akl">ronca</AUni> -<AUni ws="qvm-x-ame">ronca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+roncar</AUni> -<AUni ws="qvm-x-acl">+roncar</AUni> -<AUni ws="qvm-x-akh">+roncar</AUni> -<AUni ws="qvm-x-akl">+roncar</AUni> -<AUni ws="qvm-x-ame">+roncar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.378" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="86ec2a0c-d6dc-49c6-b5f6-a87469dc371e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+roncar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0b970638-785b-4a33-ba52-7f0a93de15a7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="204c48b3-fb1d-4ab5-bb1d-e9850304dd7c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +roncar 
\entryTyp root 
\gENG purr 
\gSPN roncar 
\e +roncar 
\c V1 
\ach ronca 
\akh ronca 
\acl ronca 
\akl ronca 
\ame ronca</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="03433e9f-af7b-4e20-8144-b19b047c5fe6" ownerguid="199368f4-203a-40a6-af16-a41a277c09f5"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="0343ba4e-abae-4c8f-ac32-6e0d40e3a540"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pututuy</AUni> -<AUni ws="qvm-x-acl">pututuy</AUni> -<AUni ws="qvm-x-akh">pututuy</AUni> -<AUni ws="qvm-x-akl">pututuy</AUni> -<AUni ws="qvm-x-ame">pututuy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pututuy</AUni> -<AUni ws="qvm-x-acl">*pututuy</AUni> -<AUni ws="qvm-x-akh">*pututuy</AUni> -<AUni ws="qvm-x-akl">*pututuy</AUni> -<AUni ws="qvm-x-ame">*pututuy</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.46" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="df6f5f11-83c4-4813-adee-b10e31d260ce" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pututuy</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7ea59dbd-69ce-416a-9b56-b3f273e01507" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="06bbec4a-2d37-44c2-b94b-d09830514a95" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pututuy 
\entryTyp root 
\gENG stampede 
\gSPN estampida 
\e *pututuy 
\c N0 
\mp +FinalC 
\ach pututuy 
\akh pututuy 
\acl pututuy 
\akl pututuy 
\ame pututuy</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="03440bde-0907-40db-bccf-c53da9131b31" ownerguid="be1ba0af-0be2-4172-a1bb-807ab504ad68"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shirt</AUni> -<AUni ws="es">camisa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="50e06b0c-9a7a-47f4-b733-97773f914b3d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="0344ea26-65e2-4f3f-ad21-ee53055532d9" ownerguid="70ec2363-c91b-4fd0-ab07-367a1439cbdf"> -<Form> -<AUni ws="qvm-x-ach">walwalya; walwalyä; walwalya</AUni> -<AUni ws="qvm-x-acl">walwalya; walwalyä; walwalya</AUni> -<AUni ws="qvm-x-akh">walwalya; walwalyä; walwalya</AUni> -<AUni ws="qvm-x-akl">walwalya; walwalyä; walwalya</AUni> -<AUni ws="qvm-x-ame">walwalya; walwalyä; walwalya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="03458dde-6a66-459e-a778-8898a462d17b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chari</AUni> -<AUni ws="qvm-x-acl">chari; chari; chare</AUni> -<AUni ws="qvm-x-akh">chari</AUni> -<AUni ws="qvm-x-akl">chari; chari; chare</AUni> -<AUni ws="qvm-x-ame">chari</AUni> -</Custom> -<AlternateForms> -<objsur guid="b58e5cb2-c3fd-48af-b93e-4e9f495bcd52" t="o" /> -</AlternateForms> -<DateCreated val="2022-9-23 18:26:20.578" /> -<DateModified val="2022-10-16 14:51:47.66" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="115c00ce-8c52-4e29-9aba-ae1eed0cc618" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">SURARI1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="36bc0db3-e9b0-444b-b181-ed81670113b4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="71bf6831-9cde-4d37-baa5-d063ac900ceb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx SURARI1 
\entryTyp suffix 
\gENG SURARI 
\gSPN CRTSEG 
\e SURARI1 
\c N0/N0 V0/V0 R0/R0 ONSHEV/NOSUFF BN/BN 
\o 255 
\mp +FinalI 
\ach chari 
\akh chari 
\acl chari / _# 
\acl chari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl chare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chari / _# 
\akl chari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chari 
\mcc SURARI1 / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="03468c7c-60a4-427f-a46a-446d7cacd3f2" ownerguid="fb1cc66b-80da-42fa-8c0c-2ee3e0fe0089"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">press</AUni> -<AUni ws="es">apresurar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a9ee3154-2a23-4507-9ce8-ae1f0bc56274" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0347fe2f-3207-44b3-bb65-f5d8674c3b2b" ownerguid="9a9c7174-4148-43c2-875c-0d2f884a5fe3"> -<ExampleWords> -<AUni ws="en">make a mess, mess something up, clutter, ransack, leave something lying about</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to making something untidy?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0349d046-3559-4a4f-86b3-cdc55ff309ca" ownerguid="6c34ed1c-189e-4f74-bd48-58fc5bad6b5b"> -<Form> -<AUni ws="qvm-x-ach">togru</AUni> -<AUni ws="qvm-x-acl">togru; togru; togro</AUni> -<AUni ws="qvm-x-akh">toqru</AUni> -<AUni ws="qvm-x-akl">toqru; toqru; toqro</AUni> -<AUni ws="qvm-x-ame">tuqru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="034b44a5-1357-4cd9-b8cd-f644fd64c625" ownerguid="9a9c7174-4148-43c2-875c-0d2f884a5fe3"> -<ExampleWords> -<AUni ws="en">dump, pigsty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a place that is untidy?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="034b74b1-7e1a-4a84-9034-6d62fe5b73c3" ownerguid="6817cc05-a77f-405f-86c0-1325fdfaef28"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">a.plant</AUni> -<AUni ws="es">una.hierba</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="93e14cc1-9e54-46ad-ae9e-d10867965dbf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="034d335d-efb3-49a4-a3eb-209b615e3688" ownerguid="ea17aba7-6d4e-4dbf-89ea-84a1b1c47647"> -<ExampleWords> -<AUni ws="en">volume, capacity, size, dimensions</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to how big a container is?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="034ee870-c7c2-4c44-a410-e781bc9b43dd" ownerguid="cbcff912-e1c2-4d9b-9938-85d73e7e7265"> -<ExampleWords> -<AUni ws="en">some, any, a certain amount of, a measure of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate some of an amount of something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="034f0bde-20cb-4809-845e-d8acc566b201" ownerguid="c6e812df-19dd-4f8f-abfa-5ba01d91c7b6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0353f14f-28a0-4e90-a234-4ee88979dc3f" ownerguid="73499b8b-76fc-4121-8bfa-1bdebe537259"> -<ExampleWords> -<AUni ws="en">tame (animal), tamed, domesticated, livestock, pet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to tame animals?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0354861c-ab93-4432-a1dc-02365125e08b" ownerguid="7a0745e5-e58a-41b8-806a-e7176ba3a4ef"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="0357224d-e682-4974-a261-d07c3e59771b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">capitán; capitan</AUni> -<AUni ws="qvm-x-acl">capitán; capitan</AUni> -<AUni ws="qvm-x-akh">capitán; capitan</AUni> -<AUni ws="qvm-x-akl">capitán; capitan</AUni> -<AUni ws="qvm-x-ame">capitán; capitan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+capitán</AUni> -<AUni ws="qvm-x-acl">+capitán</AUni> -<AUni ws="qvm-x-akh">+capitán</AUni> -<AUni ws="qvm-x-akl">+capitán</AUni> -<AUni ws="qvm-x-ame">+capitán</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.52" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dc4a7ab3-fafc-401f-ba0c-3aef0e579899" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+capitán</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="91268f50-abbf-4499-ae13-5435d2323f88" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9f92eaa9-e1c7-4896-ba4b-3f077ea0c051" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +capitán 
\entryTyp root 
\gENG captain 
\gSPN capitán 
\e +capitán 
\c N0 
\mp +FinalC 
\ach capitán / _# 
\ach capitan / ~_# 
\akh capitán / _# 
\akh capitan / ~_# 
\acl capitán / _# 
\acl capitan / ~_# 
\akl capitán / _# 
\akl capitan / ~_# 
\ame capitán / _# 
\ame capitan / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="035874f8-c759-4c87-a050-6e3f305cb6ac"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">paca</AUni> -<AUni ws="qvm-x-acl">paca</AUni> -<AUni ws="qvm-x-akh">paka</AUni> -<AUni ws="qvm-x-akl">paka</AUni> -<AUni ws="qvm-x-ame">paka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*paka.n</AUni> -<AUni ws="qvm-x-acl">*paka.n</AUni> -<AUni ws="qvm-x-akh">*paka.n</AUni> -<AUni ws="qvm-x-akl">*paka.n</AUni> -<AUni ws="qvm-x-ame">*paka.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.656" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="791088c0-636b-4452-9672-87536aa30183" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*paka.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2b279f5f-9aef-41e6-8c66-71225dddd883" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7fd68880-5653-4c8f-ada0-ab34a18beaa4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *paka.n 
\entryTyp root 
\gENG hide 
\gSPN escondido 
\e *paka.n 
\c N0 
\ach paca 
\akh paka 
\acl paca 
\akl paka 
\ame paka 
\mcc *paka.n / ~_ ADV5</Run> -</AStr> -</Custom> -</rt> -<rt class="FsFeatStruc" guid="0359513a-1c12-4d0b-8d40-8a469c105a11" ownerguid="81f3d70c-d128-4e27-8e31-b45d07072af7"> -<FeatureSpecs> -<objsur guid="2e236e6a-122c-4d99-a9a3-c1b75539d445" t="o" /> -</FeatureSpecs> -<Type> -<objsur guid="efc7ecdf-44ed-4b11-9eef-41aaa905ca65" t="r" /> -</Type> -</rt> -<rt class="MoStemAllomorph" guid="0360a769-bd83-469c-b005-39b7e72ca8a6" ownerguid="f2543afb-e4d0-44ec-883f-8744db660677"> -<Form> -<AUni ws="qvm-x-ach">ogu</AUni> -<AUni ws="qvm-x-acl">ogu; ogu; ogo</AUni> -<AUni ws="qvm-x-akh">oqu</AUni> -<AUni ws="qvm-x-akl">oqu; oqu; oqo</AUni> -<AUni ws="qvm-x-ame">uqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="03640401-2788-4291-bb17-4ff46a3d7491" ownerguid="6f01b67c-33a0-4ed3-8205-f868e97a1a3a"> -<ExampleWords> -<AUni ws="en">travel, move from place to place, move around, voyage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to moving from place to place?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="036423c3-73e7-4696-be39-caf403c31535" ownerguid="0e74ec78-23bd-4fb0-bddb-de094c8347fd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bronquitis</AUni> -<AUni ws="es">bronquitis</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2bf10ffa-0bd6-4c8d-81ea-cfea6ab78e59" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="036630ab-0dbf-4247-b30d-ed47995bc092" ownerguid="2dab7f46-e203-4d46-b574-ccf8bd395187"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">garden</AUni> -<AUni ws="es">huerta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="76f04951-504a-4cd7-9298-0091155eff1a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="03663a32-ea9c-486d-9481-d7535bb4050c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mano:ju</AUni> -<AUni ws="qvm-x-acl">mano:ju; mano:ju; mano:jo</AUni> -<AUni ws="qvm-x-akh">mano:ju</AUni> -<AUni ws="qvm-x-akl">mano:ju; mano:ju; mano:jo</AUni> -<AUni ws="qvm-x-ame">mano:ju</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+manojo</AUni> -<AUni ws="qvm-x-acl">+manojo</AUni> -<AUni ws="qvm-x-akh">+manojo</AUni> -<AUni ws="qvm-x-akl">+manojo</AUni> -<AUni ws="qvm-x-ame">+manojo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.315" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c2606526-f0a2-4f87-b1ec-1e599941d0ba" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+manojo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5bd26fd4-5aee-4647-ba37-5ad99b278820" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e7b4af3e-2acf-4506-8be3-40d8432a7923" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +manojo 
\entryTyp root 
\gENG 
\gSPN monojo 
\e +manojo 
\c N0 
\ach mano:ju 
\akh mano:ju 
\acl mano:ju / _# 
\acl mano:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mano:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mano:ju / _# 
\akl mano:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mano:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mano:ju</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="036646c9-e583-4854-88ee-d6cb53718c83" ownerguid="0d6e5607-3bb1-43b6-a494-eafc2d2d6299"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="03672661-5748-4114-b4fc-510cdfa25c8d" ownerguid="592b6dec-d349-4752-b154-8a6af343cb93"> -<Form> -<AUni ws="qvm-x-ach">pica</AUni> -<AUni ws="qvm-x-acl">pica</AUni> -<AUni ws="qvm-x-akh">pica</AUni> -<AUni ws="qvm-x-akl">pica</AUni> -<AUni ws="qvm-x-ame">pica</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="03693e5e-0b69-4b09-bc88-6b553434c8aa" ownerguid="6277c1c8-ab85-4faa-af84-2ea34fad2b07"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="036b1597-1357-4ce6-b827-2a4c5e942499" ownerguid="2a62f8e4-7da3-4f37-bf44-e24033c99c00"> -<ExampleWords> -<AUni ws="en">conciliate, mollify, pacify, placate, soothe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to trying to stop someone from feeling angry?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="036eeabc-8e2d-45ba-9bc1-dcc75ea95c0d" ownerguid="536a2d3e-2303-43bc-bf53-379131eb5730"> -<ExampleWords> -<AUni ws="en">yellow, amber, banana, blond, blonde, canary, chartreuse, chrome yellow, citron, cream, flaxen, gold, golden, goldilocks, jaundice, lemon, saffron, sallow, straw-colored, sulfur, tawny, terracotta, yellow ocher, xanthous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What are the shades of yellow?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="037164f9-e13f-4c8d-8ffd-dd1dd65c64c1" ownerguid="3ed43ff0-25b5-49e3-998d-8404b1b1febc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="fc1055c6-7840-4067-8881-4cb4fca2bade" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="03735d77-4f94-47ef-8c62-21ca6ff65e81" ownerguid="70229141-c7cd-4263-959c-9c0b1514b70d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="03743a2a-7c17-4dcf-ab19-43d09432add2" ownerguid="bc940e64-ee30-44ef-8270-c80c599161e1"> -<Form> -<AUni ws="qvm-x-ach">banca</AUni> -<AUni ws="qvm-x-acl">banca</AUni> -<AUni ws="qvm-x-akh">banca</AUni> -<AUni ws="qvm-x-akl">banca</AUni> -<AUni ws="qvm-x-ame">banca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="037af6e5-b47e-46cc-ace2-ab08e59c0604" ownerguid="d9623ade-d8f3-468e-b8e5-da86de118287"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="037b317d-b755-4bc6-8c5e-614ae01a16d7" ownerguid="848cf990-c481-4d0f-aad0-02d71da31ae4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">marble</AUni> -<AUni ws="es">marmol</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cc4414ae-b5eb-4f95-80f7-216db6569fd6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="037e2e5d-b194-4e93-9b84-fc0eed43c0ff" ownerguid="3c404755-b77f-4de9-842b-d323af1fd1ca"> -<Form> -<AUni ws="qvm-x-ach">cupllu</AUni> -<AUni ws="qvm-x-acl">cupllu; cupllu; cupllo</AUni> -<AUni ws="qvm-x-akh">kupllu</AUni> -<AUni ws="qvm-x-akl">kupllu; kupllu; kupllo</AUni> -<AUni ws="qvm-x-ame">kupllu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="037e5af6-fcc1-42f1-9a00-381a8eb7fb7c" ownerguid="0f61c1f8-abee-45c1-a8e6-768b61bc0194"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">litigation</AUni> -<AUni ws="es">litigio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a03660f9-a791-428d-bbcb-eb44ca435f2b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="037f83fe-bfbc-48dd-a3b2-8acce6c62cc4" ownerguid="cab8e9dc-5e4f-4a12-8b3d-4acbb7ad2059"> -<ExampleWords> -<AUni ws="en">misunderstand, understand wrong, fail to understand, misinterpret, interpret wrongly, miss the meaning, get it wrong, mishear, be mistaken, lose (someone), lack of understanding</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to misunderstanding something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="03814099-7973-4f98-babc-d3621895b453" ownerguid="b3feec25-7afd-49bc-aedb-e0e1c0ce85d7"> -<Form> -<AUni ws="qvm-x-ach">börra</AUni> -<AUni ws="qvm-x-acl">börra</AUni> -<AUni ws="qvm-x-akh">börra</AUni> -<AUni ws="qvm-x-akl">börra</AUni> -<AUni ws="qvm-x-ame">börra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="0381bed7-c181-4cca-8c00-7c5b9b9fb3ae"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quichqui</AUni> -<AUni ws="qvm-x-acl">quichqui; quichqui; quichque</AUni> -<AUni ws="qvm-x-akh">kichki</AUni> -<AUni ws="qvm-x-akl">kichki; kichki; kichke</AUni> -<AUni ws="qvm-x-ame">kichki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kitrki.n</AUni> -<AUni ws="qvm-x-acl">*kitrki.n</AUni> -<AUni ws="qvm-x-akh">*kitrki.n</AUni> -<AUni ws="qvm-x-akl">*kitrki.n</AUni> -<AUni ws="qvm-x-ame">*kitrki.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.1" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="82322a43-c165-441d-9717-5b28213cadf9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kitrki.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ed09e2cc-75fe-42fb-974e-c2e4a0c3be56" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c5691449-0c8f-476d-aa99-2cd9936d6a33" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kitrki.n 
\entryTyp root 
\gENG narrow 
\gSPN estrecho 
\e *kitrki.n 
\c N0 
\mp +FinalI 
\ach quichqui 
\akh kichki 
\acl quichqui / _# 
\acl quichqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl quichque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kichki / _# 
\akl kichki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kichke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kichki 
\mcc *kitrki.n / ~_ GEN 
\mcc *kitrki.n / ~_ VRBL1</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="038400bd-143b-4423-85c5-65a248015ca3" ownerguid="7575d654-e528-4fe0-85eb-481b0e6654bb"> -<ExampleWords> -<AUni ws="en">pump, generator, grinder, mill, computer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to types of machines?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0385eaec-5a92-4541-8675-502e0c3d1d05" ownerguid="dbd3e164-3f70-4395-9728-1c24c8900da6"> -<ExampleWords> -<AUni ws="en">oven, stove, grill, broiler, toaster, toaster oven, microwave oven, barbecue, fireplace</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What appliances are used to cook food?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="03862302-d56d-4162-89b1-d3c5de98f6aa" ownerguid="b009c052-e6f2-4166-a257-69dab97ab896"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="038780a9-8d1c-4682-8df0-4550fa978171" ownerguid="83403b66-d2ec-471e-8259-e7f396caeee9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="f45e6c7d-cda8-41c1-86e3-c5c184630688" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="03884c2a-62fa-49f1-9a46-47c51fa387b5" ownerguid="a0d073df-d413-4dfd-9ba1-c3c68f126d90"> -<ExampleWords> -<AUni ws="en">Mercury, Venus (Morning Star, Evening Star), Earth, Mars, Jupiter, Saturn, Uranus, Neptune, Pluto</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the names of the planets?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="03887098-614d-452e-a67e-e3b6f6d98f1c" ownerguid="0d63adce-41dd-4873-b0bf-331d0205e65d"> -<ExampleWords> -<AUni ws="en">non-existent, extinct, there's no, there's no such thing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to not existing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="03894ae6-63ee-4429-accd-576861a4e208" ownerguid="f45a456e-8e23-4364-8842-047cc73f529b"> -<ExampleWords> -<AUni ws="en">a tight squeeze, barely enough room, close fit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a situation where there is just enough room?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="03894f92-24c9-4c9f-a977-dfeb641fd13a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">suerti; suerte</AUni> -<AUni ws="qvm-x-acl">suerti; suerti; suerte</AUni> -<AUni ws="qvm-x-akh">suerti; suerte</AUni> -<AUni ws="qvm-x-akl">suerti; suerti; suerte</AUni> -<AUni ws="qvm-x-ame">suerti; suerte</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+suerte</AUni> -<AUni ws="qvm-x-acl">+suerte</AUni> -<AUni ws="qvm-x-akh">+suerte</AUni> -<AUni ws="qvm-x-akl">+suerte</AUni> -<AUni ws="qvm-x-ame">+suerte</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.742" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1635ba27-1e11-4229-8ed2-ecc25391985c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+suerte</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="836aed18-d981-4648-b277-99db340298cc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fdec614b-f754-4b68-a063-a6d935adcfd2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +suerte 
\entryTyp root 
\gENG luck 
\gSPN suerte 
\e +suerte 
\c N0 
\mp +FinalI 
\ach suerti / ~_# 
\ach suerte / _# 
\akh suerti / ~_# 
\akh suerte / _# 
\acl suerti / ~_# 
\acl suerti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl suerte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl suerti / ~_# 
\akl suerti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl suerte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame suerti / ~_# 
\ame suerte / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="038a45a5-5878-4f1d-b43a-22ce4a89a098"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">broquel; broquil</AUni> -<AUni ws="qvm-x-acl">broquel; broquil; broquel</AUni> -<AUni ws="qvm-x-akh">broquel; broquil</AUni> -<AUni ws="qvm-x-akl">broquel; broquil; broquel</AUni> -<AUni ws="qvm-x-ame">broquel; broquil</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+broquel</AUni> -<AUni ws="qvm-x-acl">+broquel</AUni> -<AUni ws="qvm-x-akh">+broquel</AUni> -<AUni ws="qvm-x-akl">+broquel</AUni> -<AUni ws="qvm-x-ame">+broquel</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.981" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="abd25711-0af4-4ae3-9351-b091b2afb8f2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+broquel</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="89057314-0cd1-4182-a9dd-2b5e1205b781" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="48f9166e-2a42-41fa-9384-508b381a833a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +broquel 
\entryTyp root 
\gENG small.shield 
\gSPN broquel 
\e +broquel 
\c N0 
\mp +FinalC 
\ach broquel / _# 
\ach broquil / ~_# 
\akh broquel / _# 
\akh broquil / ~_# 
\acl broquel / _# 
\acl broquil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl broquel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl broquel / _# 
\akl broquil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl broquel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame broquel / _# 
\ame broquil / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="038ad206-b1fe-4891-8d52-f1670703eacc" ownerguid="837c934c-ad68-4b64-8e9a-f6b060bfbb4b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="Segment" guid="038bcccc-b4b2-42c0-9608-636741d271a7" ownerguid="e80ec74c-11ba-4966-8e9e-c0e6bcd508db"> -<Analyses> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="acd50cc4-77e6-473f-88ef-b66403e035ca" t="r" /> -<objsur guid="aaa9689f-b1b6-416b-a43b-fbd207564aae" t="r" /> -<objsur guid="f6df56d5-05df-40f4-9c66-8042b406f68d" t="r" /> -<objsur guid="fe2136a5-5025-4394-b6d7-29b78f480494" t="r" /> -<objsur guid="2a6a1f3b-6f03-4a6a-ba58-77e5f136229b" t="r" /> -<objsur guid="d4fca9fe-870a-4110-99bb-10a29c29b2e6" t="r" /> -<objsur guid="7b39e22d-bdac-4a5e-bee0-1bf549ccdd75" t="r" /> -<objsur guid="163823b9-4b41-49fd-bd8e-a8c0e35db361" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemMsa" guid="0390f6fd-d5e0-42ae-b22f-8f7e22e6540c" ownerguid="aa70055e-436a-4d4e-a1b0-e9e0cebb14ad"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="03945173-b8d5-4b9f-9752-3fd4c33d23d2" ownerguid="f2248909-4b44-44c8-9f80-6b397b5b0522"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="03988d46-4ea9-46e0-bf11-9aed80b2613e" ownerguid="e027610f-39e8-4f86-a7ba-d7dd744a0e9f"> -<Form> -<AUni ws="qvm-x-ach">rama</AUni> -<AUni ws="qvm-x-acl">rama</AUni> -<AUni ws="qvm-x-akh">rama</AUni> -<AUni ws="qvm-x-akl">rama</AUni> -<AUni ws="qvm-x-ame">rama</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="039b4177-3392-4ebd-80de-d962a130db75" ownerguid="83a3fd94-eab8-469c-af5b-d94b664759a4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="747bf39e-5a41-4e40-8cb1-eba955b30ff2" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="66338bd1-a385-4755-8a7c-f61e95e93f54" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="039b8080-a747-48a2-b0b7-ef72b467cc4a" ownerguid="c61d7145-de24-4455-87d9-718a27d74d09"> -<Form> -<AUni ws="qvm-x-ach">gasha</AUni> -<AUni ws="qvm-x-acl">gasha</AUni> -<AUni ws="qvm-x-akh">qasha</AUni> -<AUni ws="qvm-x-akl">qasha</AUni> -<AUni ws="qvm-x-ame">qasha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="039bcae5-eb1c-447b-a9c8-edc81fd1ec53" ownerguid="6f83e7f5-39be-4055-ac5c-757782d049e3"> -<Form> -<AUni ws="qvm-x-ach">gonga; gongä</AUni> -<AUni ws="qvm-x-acl">gonga; gongä</AUni> -<AUni ws="qvm-x-akh">qonqa; qonqä</AUni> -<AUni ws="qvm-x-akl">qonqa; qonqä</AUni> -<AUni ws="qvm-x-ame">qunqa; qunqä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="039cfa86-3c4b-4a27-a917-e60f3581b38b" ownerguid="d49f2c9d-1b4a-4370-b107-71f9b9fbdc8e"> -<ExampleWords> -<AUni ws="en">good neighbor, neighborly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a good neighbor?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="039d434c-e35b-4172-a215-ff0204011bb7" ownerguid="5f19b3eb-124c-4e45-a1a4-f4740c6bad00"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bird</AUni> -<AUni ws="es">acacalote</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="30ad1169-769b-4cc9-9fd8-e266e57475ae" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="039da850-abee-4e81-908d-d356478b999c" ownerguid="c0a8228c-21da-4593-898a-c19aa9f6d2a3"> -<Form> -<AUni ws="qvm-x-ach">cimientu; cimiento</AUni> -<AUni ws="qvm-x-acl">cimientu; cimientu; cimiento</AUni> -<AUni ws="qvm-x-akh">cimientu; cimiento</AUni> -<AUni ws="qvm-x-akl">cimientu; cimientu; cimiento</AUni> -<AUni ws="qvm-x-ame">cimientu; cimiento</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="03a14a7b-b3ff-440f-910b-a22bcd1b4415" ownerguid="341d5db4-d517-4c25-97d7-704820bf1d50"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="03a1d88b-2d61-479d-bc5f-dc8a004f7e67" ownerguid="70a6cd7e-07a4-46ad-a024-abeea60f18c4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="0ad66850-22f0-4387-9656-c3ff1761f437" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="03a569b4-6acb-4358-a3a3-48d42e22bc05" ownerguid="da4e8f5c-b088-4c21-93a5-c820f5f919ff"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="1bb9cd29-f501-4877-ac4a-4ab344c24475" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="03a71a1f-ed21-4c4b-9cb5-5869e8843a0e" ownerguid="d574c970-6834-4566-ae37-f42c7e95483b"> -<ExampleWords> -<AUni ws="en">gain weight, put on weight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something becoming heavy?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="03a77f4b-371b-4ecf-9d7f-0452ee3d75d0" ownerguid="5703d451-de4d-4ab9-a58d-1b1ff9a463f7"> -<Form> -<AUni ws="qvm-x-ach">tsumu</AUni> -<AUni ws="qvm-x-acl">tsumu; tsumo</AUni> -<AUni ws="qvm-x-akh">tsumu</AUni> -<AUni ws="qvm-x-akl">tsumu; tsumo</AUni> -<AUni ws="qvm-x-ame">tsumu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="03aa2a60-5456-4b32-b9c3-237bc28d349b" ownerguid="bced94e1-87fb-46b3-92f7-6b57843d610c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">settlement</AUni> -<AUni ws="es">arreglo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b2966aaa-fb80-4b1d-be80-62f15de93e71" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="03b16eb1-d079-455a-9469-a1de92018b39" ownerguid="aa57936d-f8a9-4603-8c3d-27abccd13531"> -<ExampleWords> -<AUni ws="en">environmentalist, conservationist, ecologist, Green Party</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a person who studies or tries to protect the environment?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="03bb4a4f-52ba-47f0-b5ae-b3f38fbf03f9" ownerguid="8b0ef0bb-eca6-4882-a2e8-6c776570f76f"> -<Form> -<AUni ws="qvm-x-ach">väsu</AUni> -<AUni ws="qvm-x-acl">väsu; väsu; väso</AUni> -<AUni ws="qvm-x-akh">väsu</AUni> -<AUni ws="qvm-x-akl">väsu; väsu; väso</AUni> -<AUni ws="qvm-x-ame">väsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="03bf7117-1725-4957-b75a-6808b428158a" ownerguid="32fc19fd-a04e-4b69-9442-f7d57348ec55"> -<ExampleWords> -<AUni ws="en">Angus, aurochs, Brahma, Guernsey, Holstein, Jersey, longhorn, shorthorn</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What types of cows are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="03c043ae-e611-4f95-be91-86b15e78fffc" ownerguid="0ede51d2-69bd-411e-97f9-da0d5118bbff"> -<ExampleWords> -<AUni ws="en">guilt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to his guilt?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="03c3540c-f211-496a-8048-de217c9aa2a6" ownerguid="101c16f8-ec76-4ec7-895a-fd814fef51dd"> -<ExampleWords> -<AUni ws="en">cure, make someone better, heal, fix, healing, rehabilitate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to curing someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="03c53e7f-c620-4c27-bb98-1442c7c2885a" ownerguid="90c06635-a12c-4cd4-a190-46925ff0f43e"> -<ExampleWords> -<AUni ws="en">examine, look at, have a look at, take a look at, analyze, study, inspect, go through, go over, look over, check, check over, scrutinize, look hard at, pore, peer at, focus on, pry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to examining something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="03cb59ff-bc1e-4d76-b746-bbafc9f61c4c" ownerguid="d80360f9-7319-40a7-a2bc-fd8718711ba4"> -<ExampleWords> -<AUni ws="en">come before, precede, predate, lead up to, come first, be before, be a prelude to, anticipate, antedate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to something happening before something else?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="03cd3898-93b5-4b2e-ad71-ba124735c4d3" ownerguid="f8863b67-b911-4334-a1b6-6eb913bd14af"> -<ExampleWords> -<AUni ws="en">how wide, be (ten feet) wide, be (ten feet) across</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words indicate how wide something is?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="03cd5b91-2ab9-4141-af45-8ddb967d5c00" ownerguid="af6fe2d6-576d-473f-8a32-583779d95d1d"> -<ExampleWords> -<AUni ws="en">be sure, be certain, be positive, know, know very well, swear, I could have sworn, have no doubt, confident, convinced, satisfied (that), I bet, I'd put money on it, say what you like</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that someone is certain about something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="03d1ef67-130a-49c3-afff-d8051d76b91d" ownerguid="0db5817e-05bf-4703-a6b9-e239ac44f857"> -<ExampleWords> -<AUni ws="en">sex, gender, male, female</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to the difference between male and female?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="03d2b625-2c86-41c6-9a70-59eca2fca6cf" ownerguid="a796ec30-1ed8-4f31-935c-156a9adcea61"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2CH 6.12,13 Tsay patacpa largunpis y achunpis cargan ishcay metro juc cuarta. Altunna cargan juc metro juc cuarta juc jëmin.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="03d65d0c-aafb-40c0-9cd2-3e5ced66ad03" ownerguid="457231c8-4eb6-4460-aa45-3e9f2c4e8975"> -<Abbreviation> -<AUni ws="en">8.4.6.6.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.660" /> -<DateModified val="2022-9-23 16:55:8.660" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to something happening all the time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">All the time</AUni> -</Name> -<Questions> -<objsur guid="b9193932-3a03-43b9-acde-8dfaaf8232e1" t="o" /> -<objsur guid="83612a1e-6c8b-424c-92c8-2c6b7d969012" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="03d8c691-63e8-42aa-b1ca-0fac45ad78b5" ownerguid="7d629c80-e5c2-409f-a592-39c56e9ace6d"> -<ExampleWords> -<AUni ws="en">sailor, marine, the marines, navy flyer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to soldiers assigned to the navy?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="03d900be-35b2-4a93-85f5-773b666cefb5" ownerguid="cdfc188f-21e6-470e-8e81-be88ec8f431b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="da6eda11-3ae0-494b-8412-2d70734781aa" t="o" /> -<objsur guid="32f727cf-3aaa-4b32-b96a-756603281a36" t="o" /> -<objsur guid="2b7462bb-4ce7-4e5d-a722-1dd1ce585066" t="o" /> -<objsur guid="c0b7f50c-770f-4aa4-9533-c59c3da81414" t="o" /> -<objsur guid="f151d46c-7a3d-45a1-b5d8-5e59a77174b7" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="03d940bb-f445-4642-814a-681eb4768165" ownerguid="917d28d2-72b6-4191-bb4a-2366eb4d209c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="03df6383-bff8-4724-94c4-7c5d499992c1" ownerguid="867f515b-ed0f-431e-a84a-6c562e1bdbb7"> -<ExampleWords> -<AUni ws="en">smooth, silky, satin smooth, even, velvety, fine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is smooth?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="03dff1be-fd9c-4601-b3e7-1d53fd681dc9" ownerguid="1b73b2bf-9582-4f8a-822a-e0d020272c7c"> -<ExampleWords> -<AUni ws="en">follow, follow someone around, tag along, follow on, come behind, come after, go last</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to following someone?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="03e02aa1-46e1-4b39-b303-9f7d729d4b1e" ownerguid="6b836eab-0b1e-425c-9f13-3e53a0b6f06b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="48242270-e5d0-470d-8427-9619e2c67135" t="o" /> -<objsur guid="780f5720-28c0-45da-8e65-d3bb1c285000" t="o" /> -<objsur guid="f4610d78-0699-4ad9-9e12-689c959b179f" t="o" /> -<objsur guid="b781d05f-5e39-43a7-b1ab-e3d40fd6fab5" t="o" /> -<objsur guid="0828d4dc-214a-4c41-b247-a449a6d2a8c3" t="o" /> -</MorphBundles> -</rt> -<rt class="CmSemanticDomain" guid="03e22b05-8505-442d-9c3b-7e691bd525e0" ownerguid="15947464-997a-4f44-9a4b-ac4916e7e19b"> -<Abbreviation> -<AUni ws="en">5.4.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.327" /> -<DateModified val="2022-9-23 16:55:8.327" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to anointing the body.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>6U Perfumes and Incense; 47C Application and Removal of Liquids or Masses</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Anoint the body</AUni> -</Name> -<Questions> -<objsur guid="9e0b092e-a4ef-4a36-b211-354109c5b6e0" t="o" /> -<objsur guid="45741e2e-7c3c-4541-a936-1eb36c6015df" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="03e2adbd-0a07-43d6-abd6-1a7408829d41" ownerguid="e0e08d62-fb08-41bf-b695-7f6e5705997d"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOL 1.6 Quiruncunapis waguncunapis leonpanogragmi lauchi cashga.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiWordform" guid="03e6f578-8832-4fbc-9a21-2a92c745a174"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">rikakumuptiki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="03e981d3-40e6-48db-a371-620e89bd4854" ownerguid="7ddbd56f-e458-4a72-a9bc-9b7db6bde75a"> -<ExampleWords> -<AUni ws="en">ruler, highest ruler, supreme authority, head of state, leader of the country, emperor, king, president, premier, chancellor, prime minister, Caesar, pharaoh, chief, paramount chief, chieftain, chief of state</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What is the person called who is the highest ruler in the country?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="03ef3bf2-f637-41ae-811f-fcbb59c0a1f6"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Wayikipa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="03f01c23-aa88-4781-93ef-769f41a7b70d" ownerguid="c51acfd9-59db-4631-afa9-078ed0ec1c99"> -<Form> -<AUni ws="qvm-x-ach">tinta</AUni> -<AUni ws="qvm-x-acl">tinta</AUni> -<AUni ws="qvm-x-akh">tinta</AUni> -<AUni ws="qvm-x-akl">tinta</AUni> -<AUni ws="qvm-x-ame">tinta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="03f0baae-80a8-40c9-affc-ac3a5dad2be8" ownerguid="a90e47fb-667c-46f7-beab-5ec4e9e6edb5"> -<ExampleWords> -<AUni ws="en">cautious, caution, careful</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a person who is cautious?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="03f1073a-bde2-4a2d-b8e8-19b4d15681ed" ownerguid="d25f7907-091e-4cf7-bd8c-bdb97278b616"> -<ExampleWords> -<AUni ws="en">hit hard, whack, smash into, wallop, cream</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words describe hitting something with a lot of force?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="03f18797-e7c1-46c0-8b66-22311819024b" ownerguid="019e3b64-c68a-4b19-bec5-a22f4eb88f48"> -<ExampleWords> -<AUni ws="en">weave</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to weaving?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="03f5038d-33d0-4f91-8dfc-5dc055010281" ownerguid="6aa41eaa-b390-493f-9da2-be1e50d4e37c"> -<Form> -<AUni ws="qvm-x-ach">chispa</AUni> -<AUni ws="qvm-x-acl">chispa</AUni> -<AUni ws="qvm-x-akh">chispa</AUni> -<AUni ws="qvm-x-akl">chispa</AUni> -<AUni ws="qvm-x-ame">chispa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="03f7648b-af2b-4976-ab2f-4fb89520668f" ownerguid="8e6f9070-ffb9-4d0f-8f70-d8f40a9dd293"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="03f83628-c91b-4a5b-b7a6-cc59780686d8"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">N0</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="03f918fc-f1ac-4af4-b007-c966364086ff" ownerguid="45b07db7-67ef-46cf-9506-8e69a0baec81"> -<Form> -<AUni ws="qvm-x-ach">manca</AUni> -<AUni ws="qvm-x-acl">manca</AUni> -<AUni ws="qvm-x-akh">manka</AUni> -<AUni ws="qvm-x-akl">manka</AUni> -<AUni ws="qvm-x-ame">manka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="03fa39ff-268f-4681-bca3-4df5fa69b068" ownerguid="f9d956b6-73d7-44f4-ac6c-b9a73cf0ab9e"> -<Form> -<AUni ws="qvm-x-ach">ashnu</AUni> -<AUni ws="qvm-x-acl">ashnu; ashnu; ashno</AUni> -<AUni ws="qvm-x-akh">ashnu</AUni> -<AUni ws="qvm-x-akl">ashnu; ashnu; ashno</AUni> -<AUni ws="qvm-x-ame">ashnu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="0400a05f-c5a4-47a2-9c76-9be50a0b960b" ownerguid="4991fecb-53b3-4a06-a9b3-2046645cfdc8"> -<Form> -<AUni ws="qvm-x-ach">agraviädu</AUni> -<AUni ws="qvm-x-acl">agraviädu; agraviädu; agraviädo</AUni> -<AUni ws="qvm-x-akh">agraviädu</AUni> -<AUni ws="qvm-x-akl">agraviädu; agraviädu; agraviädo</AUni> -<AUni ws="qvm-x-ame">agraviädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0402cddd-0dce-46f9-b485-b3343fe8258f" ownerguid="11cf45ec-f9d6-4c99-8782-738e26a342c8"> -<ExampleWords> -<AUni ws="en">reach for, grab at/for, snatch at</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to reaching for something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="04053f4c-0b2c-4d26-8e8c-2c816e350985"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cientu; ciento</AUni> -<AUni ws="qvm-x-acl">cientu; cientu; ciento</AUni> -<AUni ws="qvm-x-akh">cientu; ciento</AUni> -<AUni ws="qvm-x-akl">cientu; cientu; ciento</AUni> -<AUni ws="qvm-x-ame">cientu; ciento</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ciento</AUni> -<AUni ws="qvm-x-acl">+ciento</AUni> -<AUni ws="qvm-x-akh">+ciento</AUni> -<AUni ws="qvm-x-akl">+ciento</AUni> -<AUni ws="qvm-x-ame">+ciento</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.112" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f3ebe514-a789-4761-8c60-60b748669159" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ciento</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="15caeab7-fb9d-4ac6-95bc-aae058f3a0fc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="58590509-5f75-49b3-a134-6cd31c32dc39" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ciento 
\entryTyp root 
\gENG 
\gSPN 
\e +ciento 
\c N0 
\ach cientu / ~_# 
\ach ciento / _# 
\akh cientu / ~_# 
\akh ciento / _# 
\acl cientu / ~_# 
\acl cientu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ciento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cientu / ~_# 
\akl cientu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ciento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cientu / ~_# 
\ame ciento / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="04066a90-a844-4edc-a410-3754685a636f" ownerguid="f7960e84-5af9-4999-9028-783058aa8c5c"> -<ExampleWords> -<AUni ws="en">everyone, everybody, anybody, whoever, whomever, whomsoever, whosoever</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to all people?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0408081d-d99d-475d-811e-caf25e70c741" ownerguid="7a355831-f4bd-4c1b-ae8b-f353a321c7d4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="040ba998-a84d-4f88-8fc5-d1a52c18eec0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">padrón; padron</AUni> -<AUni ws="qvm-x-acl">padrón; padron</AUni> -<AUni ws="qvm-x-akh">padrón; padron</AUni> -<AUni ws="qvm-x-akl">padrón; padron</AUni> -<AUni ws="qvm-x-ame">padrón; padron</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+padrón</AUni> -<AUni ws="qvm-x-acl">+padrón</AUni> -<AUni ws="qvm-x-akh">+padrón</AUni> -<AUni ws="qvm-x-akl">+padrón</AUni> -<AUni ws="qvm-x-ame">+padrón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.648" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b0167a77-f0d3-45e2-8967-942f0e6833dd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+padrón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8f2a63f2-89da-4318-a1b7-d645506daff0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8a7b5f69-c119-4aff-a276-5f63e53fded2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +padrón 
\entryTyp root 
\gENG 
\gSPN 
\e +padrón 
\c N0 
\mp +FinalC 
\ach padrón / _# 
\ach padron / ~_# 
\akh padrón / _# 
\akh padron / ~_# 
\acl padrón / _# 
\acl padron / ~_# 
\akl padrón / _# 
\akl padron / ~_# 
\ame padrón / _# 
\ame padron / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="040e4b3e-2f36-430a-ab09-1917f96a09de" ownerguid="79b580ff-64a7-445b-abcb-b49b9093779c"> -<Abbreviation> -<AUni ws="en">6.3.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to animal products.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Animal products</AUni> -</Name> -<OcmCodes> -<Uni>237 Animal By-Products</Uni> -</OcmCodes> -<Questions> -<objsur guid="47e14b1e-ce7e-4f46-8d67-01aa20c0222a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="040e932b-518f-48b3-b5bd-4b707c2f6950"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">humi</AUni> -<AUni ws="qvm-x-acl">humi; hume</AUni> -<AUni ws="qvm-x-akh">humi</AUni> -<AUni ws="qvm-x-akl">humi; hume</AUni> -<AUni ws="qvm-x-ame">humi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+humi</AUni> -<AUni ws="qvm-x-acl">+humi</AUni> -<AUni ws="qvm-x-akh">+humi</AUni> -<AUni ws="qvm-x-akl">+humi</AUni> -<AUni ws="qvm-x-ame">+humi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.761" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8c9ccb80-3103-478c-a4ea-7128059a5e10" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+humi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8c387e93-35ac-4f30-ac4f-a419c362fcd4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="957e01b5-bce8-4a85-a629-9673683793c4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +humi 
\entryTyp root 
\gENG 
\gSPN 
\e +humi 
\c V1 
\mp +FinalI 
\ach humi 
\akh humi 
\acl humi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl hume +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl humi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl hume +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame humi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="040f2271-3921-45af-9f35-af1350673443" ownerguid="fb0abeda-0de3-4220-9907-01539104d9dd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="041023ce-b5da-465f-80ea-b42254288c70" ownerguid="5b1b076d-b710-454f-a3f0-87466a70bd0d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">staple</AUni> -<AUni ws="es">grampa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f4604b17-a39b-406f-9ff8-cb0edeb0f5a5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="041446b9-da66-45a8-b5f5-8810bec937ce" ownerguid="fcffd439-c0e1-4e21-a3b3-3f868edee0cd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="0415aa5f-75b6-4899-9236-9a213cd611d5" ownerguid="be68fa80-5f68-4870-a8d0-25830ebe0e74" /> -<rt class="CmSemanticDomain" guid="041b5ac9-99be-4281-a17e-654eff33d793" ownerguid="6b8366b9-b5e8-42b8-991c-c568d4442a81"> -<Abbreviation> -<AUni ws="en">5.4.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.327" /> -<DateModified val="2022-9-23 16:55:8.327" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to hairstyles.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Hairstyle</AUni> -</Name> -<Questions> -<objsur guid="f9c9cc79-7e79-4c2a-82a2-eaf4c489b2c7" t="o" /> -<objsur guid="56296c3d-94dd-4fc6-9888-8d1a07f9e220" t="o" /> -<objsur guid="1ca51c94-77dc-4825-98ea-a6dc8858fa5c" t="o" /> -<objsur guid="546800f2-4de9-4b02-820f-afec859450a8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="04207506-5a9f-49eb-adae-80ab00bd5510" ownerguid="a2989907-310a-4a71-8768-cfa71e66caa6"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="21962c2b-f7f5-4977-9786-f79992da9494" t="o" /> -<objsur guid="381625c2-3535-4060-a206-9a5414eb5e39" t="o" /> -<objsur guid="d4a9ff4a-5fab-43f3-acee-967d8b289fca" t="o" /> -<objsur guid="9b934b7d-8929-42ea-b4c3-73ceaac42041" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiAnalysis" guid="04272a3a-e644-4701-8b40-5b50e4775dde" ownerguid="044eef17-ef15-46c5-9ff5-83b31c637421"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="eac4a464-7d9c-459d-802a-5e69a7888f3d" t="o" /> -<objsur guid="6e86177d-657d-4544-9415-ae12c5528240" t="o" /> -<objsur guid="2812c5a6-0c5a-4896-8ead-d56cc48691dc" t="o" /> -<objsur guid="94ea6348-4a78-4254-9d84-1194e3579ff6" t="o" /> -<objsur guid="215e8989-3a09-45a6-9407-ccb42cff0d6d" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="042b8d70-0596-4e32-9ece-8e338967f02b" ownerguid="abf2ace8-ee72-480d-b8d4-a4c58d238a8d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">funeral.lament</AUni> -<AUni ws="es">verso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7a1b959c-8f7a-42fa-86fb-9a5e3f1ca9bb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="0431f1b3-286b-4786-94f5-a19c2cd86c17"> -<Analyses> -<objsur guid="61310595-90e0-4e8e-84d1-c6f39b1a65ab" t="o" /> -<objsur guid="892f4033-1332-4426-9fca-14d126677c5f" t="o" /> -<objsur guid="e03c889b-8368-4d9f-aac6-5cd3a43b01ca" t="o" /> -</Analyses> -<Checksum val="-712276155" /> -<Form> -<AUni ws="qvm-x-akh">qarqatsin</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="043254f2-456d-4310-b7a0-177f3076565f" ownerguid="b7c2be93-5cfe-44fa-a38d-447679d5f359"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="949d0efe-c500-4f6e-8572-1ab36d191b48" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="043559be-6d45-43a7-ae4a-9f1568f8cd19" ownerguid="9eb0947d-f902-460a-b8e0-30857e7bb37a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pita</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pita</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pita</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pita</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pita</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ef81e8c3-e8c7-4bf5-9fdb-ebd4284a70bd" t="r" /> -</Morph> -<Msa> -<objsur guid="c516d14b-9b18-44a7-8c37-97267a8b8796" t="r" /> -</Msa> -<Sense> -<objsur guid="75f1d891-753c-42a9-8f14-18fa3dd1767b" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="0436d403-bcf9-4b6c-852f-df68e11d5415" ownerguid="8052744f-7a9a-49da-89e3-4c518126180b"> -<ExampleWords> -<AUni ws="en">confused, baffled, befuddled, bemused, mystified, perplexed, puzzled, stupefied, unsure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels confused?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="04370e1f-25aa-4d9e-97c5-de9b59156666" ownerguid="e7c58c11-2911-446a-96b0-2113247f3792"> -<Abbreviation> -<AUni ws="en">4.1.9.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to widows and widowers. Some languages also have words for a parent who has lost a child, someone who has lost a brother or sister, or a general word for someone who has lost a relative.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Widow, widower</AUni> -</Name> -<Questions> -<objsur guid="9716531f-5e81-45ea-a174-639bd260fbb1" t="o" /> -<objsur guid="607d5709-9f94-4061-a0d3-005a4c65805a" t="o" /> -<objsur guid="39d6927b-af95-4112-8e14-3acddc3b319f" t="o" /> -<objsur guid="81109c61-2436-404c-9cf2-3cc228df79cc" t="o" /> -<objsur guid="d9728eb3-7e1c-47fb-9bfe-3c36509b70a4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="043761b2-7b28-4198-ae57-02e3a871cf26" ownerguid="89e72c49-ac4e-49d6-b972-b04ad54d9e0d"> -<Form> -<AUni ws="qvm-x-ach">curu</AUni> -<AUni ws="qvm-x-acl">curu; curo</AUni> -<AUni ws="qvm-x-akh">kuru</AUni> -<AUni ws="qvm-x-akl">kuru; kuro</AUni> -<AUni ws="qvm-x-ame">kuru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="04390bbb-c523-4ef7-aaf4-05a85694eaba" ownerguid="06b883a4-8770-4ddb-a837-c6d6037f540f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7bed5b8d-891d-4fc4-a919-0b879a17c410" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="043924d7-ffd4-4080-a8ad-130926e4eca9" ownerguid="14e9c20c-6eb5-49a4-a03f-3be26a934500"> -<ExampleWords> -<AUni ws="en">ocean, sea, lake, pond, pool, puddle, wallow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to bodies of standing water of different sizes?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="043943c3-16e2-460b-a7c7-eca3b3ebfb70"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">caupu</AUni> -<AUni ws="qvm-x-acl">caupu; caupu; caupo</AUni> -<AUni ws="qvm-x-akh">kawpu</AUni> -<AUni ws="qvm-x-akl">kawpu; kawpu; kawpo</AUni> -<AUni ws="qvm-x-ame">kawpu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kawpu.n</AUni> -<AUni ws="qvm-x-acl">*kawpu.n</AUni> -<AUni ws="qvm-x-akh">*kawpu.n</AUni> -<AUni ws="qvm-x-akl">*kawpu.n</AUni> -<AUni ws="qvm-x-ame">*kawpu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.973" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5893a322-a568-4ca2-8eb1-cc12565b7507" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kawpu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f828c29a-b557-4656-baa0-15000122403a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3f4d7a58-34fb-4c3d-b138-920297fbbb2a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kawpu.n 
\entryTyp root 
\gENG yarn 
\gSPN hilo.torcilado 
\e *kawpu.n 
\c N0 
\ach caupu 
\akh kawpu 
\acl caupu / _# 
\acl caupu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl caupo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kawpu / _# 
\akl kawpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kawpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kawpu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="043a481a-83ab-44a6-a3eb-15aefa03f77b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quilpa</AUni> -<AUni ws="qvm-x-acl">quilpa</AUni> -<AUni ws="qvm-x-akh">kilpa</AUni> -<AUni ws="qvm-x-akl">kilpa</AUni> -<AUni ws="qvm-x-ame">kilpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kirpa</AUni> -<AUni ws="qvm-x-acl">*kirpa</AUni> -<AUni ws="qvm-x-akh">*kirpa</AUni> -<AUni ws="qvm-x-akl">*kirpa</AUni> -<AUni ws="qvm-x-ame">*kirpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.993" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7238847f-4f14-4ed8-9a90-7f20998b1033" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kirpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1ff3d16a-3452-4eb9-9b83-73cbbd05c78a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e793f653-ec88-4eab-ba06-5c0f05394e05" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kirpa 
\entryTyp root 
\gENG shut 
\gSPN cerrar 
\e *kirpa 
\c V2 
\ach quilpa 
\akh kilpa 
\acl quilpa 
\akl kilpa 
\ame kilpa 
\i Mancata quilparcuy.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="043a5c84-4796-4aaa-ad72-80e60261194b" ownerguid="8b0ef0bb-eca6-4882-a2e8-6c776570f76f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="043d12ac-c76d-4b4c-813b-4ef7758c8085" ownerguid="d60faf11-cc6e-48db-8a13-82f86d78ab00"> -<Abbreviation> -<AUni ws="en">7.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.549" /> -<DateModified val="2022-9-23 16:55:8.549" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to hiding things so that they cannot be seen or found, and for hiding oneself.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Hide</AUni> -</Name> -<Questions> -<objsur guid="9834a295-5e41-466c-b5f9-293dd41d0799" t="o" /> -<objsur guid="5037df14-2c62-4cdd-a9b0-9613335b23e9" t="o" /> -<objsur guid="16ed17d5-dd66-4577-9d05-9016393eb142" t="o" /> -<objsur guid="797f92fc-2773-41b9-b710-b1b53b2b84d7" t="o" /> -<objsur guid="a4a895ee-4c2c-4986-b7a5-67095886e1fc" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="0ce61f27-9de8-49b2-9189-6f6efe488f6d" t="o" /> -<objsur guid="bd9de99f-6a92-47ee-b6bc-e9877ea21202" t="o" /> -<objsur guid="b7f4fd44-fa17-46a8-bdaf-d3399d6cb0ac" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="043d7a02-301e-4e50-963a-594186d5cfca" ownerguid="ec6db741-9d23-451c-9dc7-d1fe9513dfb8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ba8da67e-03d1-4afd-aeac-2a2998eca376" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="043eec5a-5d9b-4292-877e-68d1d35e7f30" ownerguid="8fac2a47-5fa9-494e-9bae-2efc1f6bd9d6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 BN/BN R0/R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">OBJ</AUni> -<AUni ws="es">OBJ</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="eac932ef-fd79-454b-b2f7-95e85dbb829a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="043efa5f-afff-4f23-b6bd-8abb5d6c9ed5" ownerguid="e173ea34-c216-4702-aa24-ca9ab40d48dd"> -<ExampleWords> -<AUni ws="en">reason, motive, motivation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words reason why someone does something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="043efc81-7a03-49dd-820b-5656c5f20d5d" ownerguid="570108aa-64f7-46b9-9f02-a200f6ce9d76"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">breast</AUni> -<AUni ws="es">pecho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="251ba062-8967-4710-9264-a77d083c1ec7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="043f0ad4-078e-49ba-91f6-b78f4e5f1d45" ownerguid="71dbaf5f-2afa-4282-b9b8-8a50d8c8e5e9"> -<ExampleWords> -<AUni ws="en">veterinarian, veterinary, animal diseases</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to treating animal diseases?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="043f8a83-e3e2-4ebf-ad79-4f795be6e651" ownerguid="70f47508-b668-4214-8811-d90c6ff8c133"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="0441441d-bb87-410b-818c-01fc54f95256" ownerguid="e88d2480-6a87-45e4-ba93-59bdbea8b708"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">God</AUni> -<AUni ws="es">Dios</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bf834835-602d-48e8-9f71-2316670e4fef" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="0448140b-6044-4929-a748-9d84095ebb1b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">paquipa</AUni> -<AUni ws="qvm-x-acl">paquipa</AUni> -<AUni ws="qvm-x-akh">pakipa</AUni> -<AUni ws="qvm-x-akl">pakipa</AUni> -<AUni ws="qvm-x-ame">pakipa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pakipa</AUni> -<AUni ws="qvm-x-acl">*pakipa</AUni> -<AUni ws="qvm-x-akh">*pakipa</AUni> -<AUni ws="qvm-x-akl">*pakipa</AUni> -<AUni ws="qvm-x-ame">*pakipa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.658" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="411bacc7-d754-4035-86aa-d2e5c294d9bc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pakipa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fabfa789-b5ae-4309-8d3d-a0e9e17d33ba" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="581472fd-a02d-4383-851e-601538cb64b0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pakipa 
\entryTyp root 
\gENG 
\gSPN 
\e *pakipa 
\c N0 
\ach paquipa 
\akh pakipa 
\acl paquipa 
\akl pakipa 
\ame pakipa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="0448c78b-dbb7-417c-afc5-b227a1475825" ownerguid="16d2c60a-52d7-4ec5-a5b1-c559dc078bf3"> -<Abbreviation> -<AUni ws="en">4.6.6.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.256" /> -<DateModified val="2022-9-23 16:55:8.256" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to arresting a criminal.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>37F Seize, Take into Custody</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Arrest</AUni> -</Name> -<Questions> -<objsur guid="15e72a77-1b84-488d-a293-f16031debf90" t="o" /> -<objsur guid="ab56d718-80f7-47aa-a757-ad9759954431" t="o" /> -<objsur guid="a53db78d-bc88-4d37-92df-bb17c2abba12" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="34c9408c-c3f7-49db-8bce-de7fa7da03d7" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="044a6b20-6445-4304-b144-88df29012ca7" ownerguid="ba1e8d2b-7d3e-4b65-a9be-ee1a4063c796"> -<ExampleWords> -<AUni ws="en">worry, anxiety, concern, stress, strain, anguish, uncertainty, lack of confidence, apprehension, dismay</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of worry?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="044ea536-0865-4553-8963-aeec22058b1d" ownerguid="a3ee2e46-9e30-4650-9371-e7327940ec7e"> -<Form> -<AUni ws="qvm-x-ach">acra</AUni> -<AUni ws="qvm-x-acl">acra</AUni> -<AUni ws="qvm-x-akh">akra</AUni> -<AUni ws="qvm-x-akl">akra</AUni> -<AUni ws="qvm-x-ame">akra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="044eef17-ef15-46c5-9ff5-83b31c637421"> -<Analyses> -<objsur guid="04272a3a-e644-4701-8b40-5b50e4775dde" t="o" /> -<objsur guid="31ec0cbc-4079-4c6c-873a-d0c406383db2" t="o" /> -<objsur guid="4d8a2aae-c80c-4007-84b5-5255881a284c" t="o" /> -<objsur guid="5ec4cb19-0127-4e01-8d32-31703728bbcb" t="o" /> -<objsur guid="77882bc5-c87d-44ad-985b-0a15ef40f13f" t="o" /> -<objsur guid="907b24b6-7dcc-428e-afec-86cb20362d4a" t="o" /> -<objsur guid="d2c7f746-a2fd-4e12-bff5-84c612e376bd" t="o" /> -<objsur guid="f30563f9-3a8b-4ca3-a632-77354009248b" t="o" /> -<objsur guid="f77172f4-dd8d-4624-9b2c-c0aaf9303635" t="o" /> -<objsur guid="ff7cf41e-ec29-4e35-b0c8-d61b635ac6eb" t="o" /> -</Analyses> -<Checksum val="245250614" /> -<Form> -<AUni ws="qvm-x-akh">nipäkamaynatsu</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="044f740b-94f3-4096-aa3a-c07f5e708346" ownerguid="4f22ebdb-01db-432a-9d7a-41cd44010265"> -<Abbreviation> -<AUni ws="en">6.8.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to collecting things you find interesting. In some cultures people collect rare or valuable things that they think are attractive or interesting, such as art, stamps, coins, books, or antiques.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Collect</AUni> -</Name> -<Questions> -<objsur guid="49c33dd8-cb0d-4aa8-9819-a4f044737ac2" t="o" /> -<objsur guid="710466a7-ea3e-471c-97f7-f350ffb52d23" t="o" /> -<objsur guid="41bd72ff-b10b-4ef5-b6fc-acb484a25383" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="044fc54f-0f42-491a-a37a-d1fc7960e708" ownerguid="d8631167-08bd-4571-bc7c-57a4407da51c"> -<ExampleWords> -<AUni ws="en">politician, official, senator, member of parliament, congressman, councilor, deputy, dictator, diplomat, governor, legislator</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a politician?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="04536ce2-458b-412d-8565-b30ce00ee659" ownerguid="fcf5c4f1-5b12-47f7-bb95-43d6ac18df26"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="04543543-4c3d-4d71-aa87-53191ef3b7b0" ownerguid="50c1a392-2928-407a-8306-3c70141e375e"> -<Abbreviation> -<AUni ws="en">8.4.6.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to something happening immediately--without any time passing before it happens.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>68G Rapidity, Suddenness</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Immediately</AUni> -</Name> -<Questions> -<objsur guid="16513e47-19c4-4905-9b66-54c96ed85034" t="o" /> -<objsur guid="8926e6c9-ad38-454c-944d-ba276bbce25b" t="o" /> -<objsur guid="c68b3243-ad9f-443f-a44c-a576a6d9f776" t="o" /> -<objsur guid="2871314f-078a-492f-882c-40090f983fa9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="04582a28-b94a-4e7f-8cc4-5cdefa8a39f0" ownerguid="0db5817e-05bf-4703-a6b9-e239ac44f857"> -<Abbreviation> -<AUni ws="en">2.6.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a man or any male person.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>9B Males</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Man</AUni> -</Name> -<Questions> -<objsur guid="33127b94-f2b9-4d0a-89d2-a3b03460d34d" t="o" /> -<objsur guid="f3397a75-01d9-4eeb-a8bc-f150211d3072" t="o" /> -<objsur guid="4887d6ff-b6c5-46c5-9f78-4511b923e216" t="o" /> -<objsur guid="feda5242-68c3-480a-a6bc-8ff245c00f58" t="o" /> -<objsur guid="2b85808d-3d03-4217-b82f-0ac4a4642fd9" t="o" /> -<objsur guid="663f1f88-a3c0-4235-8779-14ec92501375" t="o" /> -<objsur guid="5e2a511d-30c0-4777-ac5c-082d7fae6f42" t="o" /> -<objsur guid="b29c27d3-5ed6-4fd3-9a8b-e5c03a7d9371" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="045dfc91-440c-4f61-9c87-f75c343c718e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">acha</AUni> -<AUni ws="qvm-x-acl">acha</AUni> -<AUni ws="qvm-x-akh">acha</AUni> -<AUni ws="qvm-x-akl">acha</AUni> -<AUni ws="qvm-x-ame">acha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*atra</AUni> -<AUni ws="qvm-x-acl">*atra</AUni> -<AUni ws="qvm-x-akh">*atra</AUni> -<AUni ws="qvm-x-akl">*atra</AUni> -<AUni ws="qvm-x-ame">*atra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.870" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7295100a-8986-444c-9a26-1a566c5bc2ad" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*atra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="47c48b8a-efef-43e2-a77f-2741f332e3d2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5381a1bc-5f38-462f-8404-59aa5e3799e2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *atra 
\entryTyp root 
\gENG 
\gSPN 
\e *atra 
\c N0 
\ach acha 
\akh acha 
\acl acha 
\akl acha 
\ame acha 
\i Tagay runa agtsasapa car achami caycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="045e290f-e49a-4000-ac6b-5a1465c844ca" ownerguid="2e33e3ee-ae2f-4d15-99dd-963049ef71af"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="0460ca79-f461-41b8-81d1-18d8f0253a00" ownerguid="12ed3a86-33b0-4327-acac-d1e7279c02fa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cast</AUni> -<AUni ws="es">echar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ac18060f-110e-496f-92b1-00b734d4cd06" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="04612026-2041-42fc-87b7-a695c598163e" ownerguid="443857d7-ea23-4280-aeef-e8540a02a8af"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="0461790e-dfc5-478c-82f1-b006a1f96f14" ownerguid="9533d698-55a5-4edd-9f05-e850c77a64f6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yarpa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yarpa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yarpa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yarpa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yarpa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="887ae17a-ced7-4093-8e19-bf260b43d5a9" t="r" /> -</Morph> -<Msa> -<objsur guid="7440cecd-7493-4b9e-86fd-dbf27ad2bfed" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="0465dd32-fa49-4dc2-bc20-82bd5b77e55a" ownerguid="7d2443b6-1253-4345-9816-3ad34b736d7a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">get.ready</AUni> -<AUni ws="es">alistar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d500c90c-1331-46e4-a9e7-56fccf0a3c0e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="04665228-2964-4b87-afd9-99cb91cd72a5" ownerguid="f7eda99e-fde7-4f3f-ab22-a034e7f3c3b2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1 V2/V2</Run> -</AStr> -</Custom> -<Definition> -<AStr ws="en"> -<Run ws="en">plural for states</Run> -</AStr> -<AStr ws="es"> -<Run ws="es">pluralizador para verbos - durativo</Run> -</AStr> -</Definition> -<Gloss> -<AUni ws="en">PLST</AUni> -<AUni ws="es">PLDUR</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="00a2abd0-a707-4643-aab1-ef104bcf7a41" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0466d38d-6cf7-4ceb-b599-97816eb66762" ownerguid="3ccc3a21-07c8-4983-a044-e3c74b538135"> -<ExampleWords> -<AUni ws="en">get shorter, shrink, contract</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something becoming short?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="04674b17-a42c-43b7-a019-61e189402b2b" ownerguid="bbb21324-089d-4368-a2ac-37c6bbfcbffc"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">I couldn't decide which of the two I wanted more, so I bought them both.; The plan would be to our <mutual> benefit.; We have a <mutual> friend.; They <share> the same name.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">both, the two of, the pair of, each, mutual, share, either, neither</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to both of two things?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="046e2c59-d603-4ba5-a28b-d387444b56db" ownerguid="c1bb19fb-b8e4-4b92-afe3-296a0b05de46"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="046fd04e-c64a-467b-98e9-bdcd72380f90" ownerguid="c94b01e7-d8ef-4ec5-8372-c14d19ae9d62"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/R0 V1/R0 V2/R0 R0/R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ADV5</AUni> -<AUni ws="es">ADV5</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3222ac38-9e08-4de2-8c2b-5a0c3db29c50" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="0472e02f-0667-4768-8304-4b45df3ab6cd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">malicia</AUni> -<AUni ws="qvm-x-acl">malicia</AUni> -<AUni ws="qvm-x-akh">malicia</AUni> -<AUni ws="qvm-x-akl">malicia</AUni> -<AUni ws="qvm-x-ame">malicia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+maliciar</AUni> -<AUni ws="qvm-x-acl">+maliciar</AUni> -<AUni ws="qvm-x-akh">+maliciar</AUni> -<AUni ws="qvm-x-akl">+maliciar</AUni> -<AUni ws="qvm-x-ame">+maliciar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.283" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="32165869-e318-43fd-8a97-f8107e223014" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+maliciar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="373694eb-ec5e-405d-a4b4-1966b9405112" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="41dbcc42-8064-4ade-99dd-2b5ba75ef401" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +maliciar 
\entryTyp root 
\gENG suspect 
\gSPN maliciar 
\e +maliciar 
\c V2 
\ach malicia 
\akh malicia 
\acl malicia 
\akl malicia 
\ame malicia</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0473dcbf-61bb-46da-bb1c-249acf97636d" ownerguid="c0d903bf-6502-45dd-9dd8-cff7f022c696"> -<ExampleWords> -<AUni ws="en">number, assign a number, count off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to assigning a number to each thing in a series?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="04752883-aa3e-42a2-bd42-454e9cd99b11" ownerguid="61a28bdc-c05c-49d8-b47e-d54a9082156c"> -<Abbreviation> -<AUni ws="en">9.4.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.700" /> -<DateModified val="2022-9-23 16:55:8.700" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate evidentials. An evidential is when the speaker indicates the source of the information on which an assertion about a situation is based. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Evidentials</AUni> -</Name> -<Questions> -<objsur guid="3399c934-a257-4582-b2b2-0d9a870778f5" t="o" /> -<objsur guid="bfff8f47-91dc-4fde-9081-09dc8a207dfb" t="o" /> -<objsur guid="0756a71a-e0bf-4ad0-9ddf-1f93eb917d6a" t="o" /> -<objsur guid="cdd7dc0e-3011-40cd-b959-3e06d6f17661" t="o" /> -<objsur guid="9daa5219-9742-48dd-9660-141f1739f6bb" t="o" /> -<objsur guid="89d24e93-26f2-427b-97ba-6330a80d8974" t="o" /> -<objsur guid="3279c153-7682-46ba-8c7b-ab35a66b59cc" t="o" /> -<objsur guid="ac7933c3-8127-40d5-b0d5-0331b99117a4" t="o" /> -<objsur guid="3267bf8e-15a4-4c2a-b882-e184687e368a" t="o" /> -<objsur guid="d76223d6-d12b-472a-b718-a18064b046dc" t="o" /> -<objsur guid="84c19760-7b0f-44c3-aaf2-81ad21145214" t="o" /> -<objsur guid="27d27c8f-c91f-406e-a9de-dbbf2fdc2230" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="cf5f83be-2c19-4cf8-8cc5-53bd32b50530" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="0478b5aa-eb7b-4f1d-9e51-ef065cb1b33c" ownerguid="8ff44913-ceae-4308-8c47-aa036f19422b" /> -<rt class="MoStemMsa" guid="047af8be-5a83-437b-82f7-a93ac46d2b9e" ownerguid="164759d4-ed58-433c-9d8d-c2f9d1847e30"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="0481bd97-82e4-4d85-87a5-af7fb7ff811f" ownerguid="b52db03e-dd96-46e2-a33a-7bb17cea373c"> -<Form> -<AUni ws="qvm-x-ach">punchu</AUni> -<AUni ws="qvm-x-acl">punchu; punchu; puncho</AUni> -<AUni ws="qvm-x-akh">punchu</AUni> -<AUni ws="qvm-x-akl">punchu; punchu; puncho</AUni> -<AUni ws="qvm-x-ame">punchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="048475e0-a16c-4ec9-b1f8-b2e41f180dd1" ownerguid="2028a034-cff2-4b1c-be05-a4088a8f8a84"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 16.32 Jucta dominanantsipa trucanga quiquintsipa caracternintsita dominacushgantsimi mas ali caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="04856c48-d590-4a24-8c2f-65e2f090a7a6" ownerguid="45d867c7-8496-4c92-bb41-b7db5db47717"> -<ExampleWords> -<AUni ws="en">fat, overweight, big, large, portly, hefty, thickset, corpulent, fleshly, heavy, paunchy, ponderous, roly-poly, rotund, heavy-set</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is fat?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="048632ad-9cad-480a-8ee8-950aa5c44fe9" ownerguid="498336e7-b7bd-48ec-bdbd-a5e68d52fbda"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -<Sense> -<objsur guid="db6117c5-121c-433a-a891-e69950f55761" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="0487d560-7421-4859-bd46-91ee95dd2582"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pacha</AUni> -<AUni ws="qvm-x-acl">pacha</AUni> -<AUni ws="qvm-x-akh">pacha</AUni> -<AUni ws="qvm-x-akl">pacha</AUni> -<AUni ws="qvm-x-ame">pacha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*patra</AUni> -<AUni ws="qvm-x-acl">*patra</AUni> -<AUni ws="qvm-x-akh">*patra</AUni> -<AUni ws="qvm-x-akl">*patra</AUni> -<AUni ws="qvm-x-ame">*patra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.759" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="30b43745-3452-4143-bb57-180593703039" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*patra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="097c4f5c-6b4c-474d-a2b6-01e4090f7cb7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9b2c46f4-80a6-47d4-89b1-9a899a5018fc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *patra 
\entryTyp root 
\gENG stomach 
\gSPN barriga 
\e *patra 
\c N0 
\ach pacha 
\akh pacha 
\acl pacha 
\akl pacha 
\ame pacha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="048ca608-de83-4972-948f-a54aac8efc2e" ownerguid="48517c0a-a671-4332-9835-ba8f05f79470"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">throat</AUni> -<AUni ws="es">garganta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d1c92d10-e1bb-4942-a69f-b7236c5848a6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="048dce22-b1e9-482a-951e-bc264d2f677b"> -<Analyses> -<objsur guid="6f2499f2-4b04-481d-b053-8fdca016e056" t="o" /> -</Analyses> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">yarpa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="048f1365-00c8-4a92-85a6-3bfc5f41ddfe" ownerguid="4d8a2aae-c80c-4007-84b5-5255881a284c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" t="r" /> -</Morph> -<Msa> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="048f1b53-d033-41fc-a02e-dd4f5b7d15d0" ownerguid="f4829d9d-a93f-4fc5-918c-6d4c501a6573"> -<ExampleWords> -<AUni ws="en">be out, outside, outer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is outside of something else?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0491868f-2765-4a69-9a5b-3e5e0f6dc9e4" ownerguid="c9256e98-8692-452c-b447-26bd4d3a67c6"> -<Form> -<AUni ws="qvm-x-ach">chinray</AUni> -<AUni ws="qvm-x-acl">chinray</AUni> -<AUni ws="qvm-x-akh">chinray</AUni> -<AUni ws="qvm-x-akl">chinray</AUni> -<AUni ws="qvm-x-ame">chinray</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="04936083-571c-4938-b50a-ab16734e1d88" ownerguid="8c5e3582-e7bd-4461-9dad-60c70cebbf75"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">guest</AUni> -<AUni ws="es">huésped</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ca2ab56e-37ff-436a-a00b-ec3201f65357" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="0495e512-3fa2-44ed-8625-f3320e8d2626" ownerguid="0bc33ad0-55ec-4236-947b-fb62956441b4"> -<Form> -<AUni ws="qvm-x-ach">triguëñu</AUni> -<AUni ws="qvm-x-acl">triguëñu; triguëñu; triguëño</AUni> -<AUni ws="qvm-x-akh">triguëñu</AUni> -<AUni ws="qvm-x-akl">triguëñu; triguëñu; triguëño</AUni> -<AUni ws="qvm-x-ame">triguëñu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="0496d775-8d78-4385-96d5-f66a0d17873a" ownerguid="3ef36790-ba95-4f35-b689-79eb7fe3edba"> -<Form> -<AUni ws="qvm-x-ach">togu</AUni> -<AUni ws="qvm-x-acl">togu; togu; togo</AUni> -<AUni ws="qvm-x-akh">toqu</AUni> -<AUni ws="qvm-x-akl">toqu; toqu; toqo</AUni> -<AUni ws="qvm-x-ame">tuqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="049730b8-43fc-4e6f-87a2-47fdbeeea165" ownerguid="7b39e22d-bdac-4a5e-bee0-1bf549ccdd75"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yarpa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yarpa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yarpa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yarpa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yarpa</Run> -</AStr> -</Form> -<Msa> -<objsur guid="7440cecd-7493-4b9e-86fd-dbf27ad2bfed" t="r" /> -</Msa> -<Sense> -<objsur guid="447e4c18-5a93-41fa-8398-831d8db8431e" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="04973cf3-e710-4a1a-9f1b-d65b76fbe2fb" ownerguid="8b727cb7-dc70-4dce-8c6f-7b8da9b8fea9"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="04983412-ce11-4714-a277-109085954525" ownerguid="5b5bcd42-09bb-4c2f-a2da-569cfa69b6ac"> -<ExampleWords> -<AUni ws="en">turn off, switch off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to stop paying attention?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="049c3692-9941-4c96-9a48-3f1bfd70b62e" ownerguid="e5a83d8b-9b46-426d-b9a6-85992dfd0fcd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2 R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rub</AUni> -<AUni ws="es">sobar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5b96e063-203f-40d1-a34e-6a641a4ddfbb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="049fbcee-0d2c-4d70-9d1c-5c9d01419512" ownerguid="3f37bb6f-cd32-4430-aa35-700acabbee15"> -<ExampleWords> -<AUni ws="en">start, activate, set off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something starting a natural process?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="04a07fd7-882f-4a11-8f89-c1f0a8f4d59f" ownerguid="f3627c41-5daf-4f73-ac42-8a0522035e0b"> -<ExampleWords> -<AUni ws="en">medicinal, curative</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used to describe the properties of these plants?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="04a3b822-6b1f-41ab-8e55-75ff92b1d1b4" ownerguid="13d6c4b2-d416-44eb-bdcf-4d17867e1e60"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="04a3d1e8-6ee7-4d05-8050-62686cf57a2b" ownerguid="4c1ebd19-9be7-437e-85c0-dfa70ee9c4d3"> -<Form> -<AUni ws="qvm-x-ach">neumonia</AUni> -<AUni ws="qvm-x-acl">neumonia</AUni> -<AUni ws="qvm-x-akh">neumonia</AUni> -<AUni ws="qvm-x-akl">neumonia</AUni> -<AUni ws="qvm-x-ame">neumonia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="04a4913d-9f65-4fc6-81d2-7169ce57989b" ownerguid="8af58173-6f34-4b58-bb9a-2e3c6df121bd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">picture</AUni> -<AUni ws="es">retrato</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="477430a1-2dbe-44c8-ba6a-f8deadfb8c82" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="04ab642a-10f0-468c-a0a0-b7f7223f2134" ownerguid="acc16676-b30c-4c4c-aa94-20869e1bafdd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="284a5884-2198-46f3-a725-1ad38402cc0f" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">crouch?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ec8b49c5-c7fb-4cb2-8cb1-72c686ae009e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="04ade65f-2e32-4310-b466-42a60bfd3c92" ownerguid="50f1f32b-3b9c-4f46-a101-3c6a9283694b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Cabra yurishga murunyalcula.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="04af26bc-7dcb-43bd-987b-e71f78a2ffd5" ownerguid="4acc430b-9c98-4a49-a8b4-15edc0f6d19b"> -<ExampleWords> -<AUni ws="en">tidiness, neatness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the quality of being tidy?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="04b79bd7-fa3b-4269-b71a-d483b7210ce8" ownerguid="c6e181fc-c268-4a86-8822-306d3b9e34f6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="CmDomainQ" guid="04b7e70e-adaa-41de-b70b-74f7b826d40a" ownerguid="474aa982-8350-47e2-a983-e1e2bce9d928"> -<ExampleWords> -<AUni ws="en">good feelings, positive emotions, good attitude</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to good feelings?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="04b8c3f3-e3ae-4f78-a822-083575c91c39" ownerguid="7fb6d72a-958e-4289-ab6d-e1e5a2a9c52e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="04b94ae8-8be1-4ad8-a3a5-fc830459aeda" ownerguid="93cd89e9-d469-4921-b12e-1e9c6eabd08e"> -<Form> -<AUni ws="qvm-x-ach">adivïnu</AUni> -<AUni ws="qvm-x-acl">adivïnu; adivïnu; adivïno</AUni> -<AUni ws="qvm-x-akh">adivïnu</AUni> -<AUni ws="qvm-x-akl">adivïnu; adivïnu; adivïno</AUni> -<AUni ws="qvm-x-ame">adivïnu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="04b9a8e4-70b6-4a08-94cc-4f66274dfaee" ownerguid="088df936-aef2-4b1a-a175-dad436753e97"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="04c09613-3c25-417b-9030-506ccbb002f8" ownerguid="b0156a7c-928a-4cc8-a021-4af4dc74fead"> -<ExampleWords> -<AUni ws="en">unusual, rare, infrequent, out of the ordinary, abnormal, unnatural, atypical, singular</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is unusual?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="04c13f19-7f74-4049-84ef-592a8f431d81" ownerguid="1bd5d8d9-c816-45aa-8269-98fa423cb451"> -<Form> -<AUni ws="qvm-x-ach">raga; ragä</AUni> -<AUni ws="qvm-x-acl">raga; ragä</AUni> -<AUni ws="qvm-x-akh">raqa; raqä</AUni> -<AUni ws="qvm-x-akl">raqa; raqä</AUni> -<AUni ws="qvm-x-ame">raqa; raqä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PhEnvironment" guid="04c2c26a-62fd-4045-9c28-5e4da7139d19" ownerguid="be765e3e-ea5e-11de-9d42-0013722f8dec"> -<Name> -<AUni ws="en">after a vowel</AUni> -</Name> -<StringRepresentation> -<Str> -<Run underline="none" ws="en">/[V]_</Run> -</Str> -</StringRepresentation> -</rt> -<rt class="MoStemMsa" guid="04c398d9-e3d4-4a40-9002-5ba8b7fbb9e1" ownerguid="3fb3baf7-1c60-499f-a226-260eb82a89a7"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="04c6fa81-427d-46a2-ac37-04d39490f376" ownerguid="11d93cd0-4afb-44e0-b841-2475d4b69585"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">basket</AUni> -<AUni ws="es">canasta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9944ed58-6d62-48d8-9c37-57d362afb3eb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="04c80675-befb-483a-92d5-c21013e30c64" ownerguid="202218a0-2594-4641-ae74-e961ceaabd60"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="04c89fb2-6060-4995-a7fb-5b9c14a66a60" ownerguid="72da0752-f34e-4282-9738-06bc39ad399f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="3d83afe4-ef49-4290-bd99-325f05806f58" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="04c9eb2f-5c98-44ef-9df9-1e18bf95b45a" ownerguid="299c2c32-9eee-4983-bf99-83dc623d7469"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="37afab7e-7aef-4b39-9ce9-9551bcf848eb" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">weakness</AUni> -<AUni ws="es">debilidad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ad8a9294-25ba-47fe-a809-681a77ae2041" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="04caf6c1-4a08-470a-94a3-5b2c9c370f9f" ownerguid="199d8d5d-df47-4d7d-a02f-36b5778cfc34"> -<Form> -<AUni ws="qvm-x-ach">mulinu</AUni> -<AUni ws="qvm-x-acl">mulinu; mulinu; mulino</AUni> -<AUni ws="qvm-x-akh">mulinu</AUni> -<AUni ws="qvm-x-akl">mulinu; mulinu; mulino</AUni> -<AUni ws="qvm-x-ame">mulinu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="04cdf031-7e01-43f3-a0c1-18e77f69fe6e" ownerguid="b3ff132a-ac26-4c51-a325-be3beb92c8e0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="04ce4be2-d609-4ebe-86d4-b8c967aca233" ownerguid="4260e110-7b04-4d40-9391-486a57aa3031"> -<ExampleWords> -<AUni ws="en">maturity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the quality of being mature?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="04cf3262-fd40-47c8-ad21-52f6c2546c4d" ownerguid="2cee0d5b-86bd-4cee-b1eb-781af915a9ce"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="04d5c58f-b000-46f0-909b-a9f982020773" ownerguid="3e1121ca-9fe4-4e30-bb6b-46425b3938c0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="04d89944-c490-4e3e-8426-5b6a850a6b33" ownerguid="b5734f71-fac2-4a15-b17a-41581bf7f722"> -<Form> -<AUni ws="qvm-x-ach">colinda</AUni> -<AUni ws="qvm-x-acl">colinda</AUni> -<AUni ws="qvm-x-akh">colinda</AUni> -<AUni ws="qvm-x-akl">colinda</AUni> -<AUni ws="qvm-x-ame">colinda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="04e40ce5-42aa-4015-ae12-01f77229160e" ownerguid="e3015f05-b105-4367-9d50-0e4ddef8ce6c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">quena</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5bab65d1-8748-470e-83dc-aaf7dde77c14" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="04e5087f-49e2-4b77-92e5-dbe52c392d05" ownerguid="c6a618c4-3f9b-4313-89e4-b75669417ca8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="df3f8b1a-072b-462a-a1f1-7ba1ef30fb93" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="04e7a4bd-d63e-4aaa-adcc-8cccf4cac9ae"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yanasa</AUni> -<AUni ws="qvm-x-acl">yanasa</AUni> -<AUni ws="qvm-x-akh">yanasa</AUni> -<AUni ws="qvm-x-akl">yanasa</AUni> -<AUni ws="qvm-x-ame">yanasa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yanasa</AUni> -<AUni ws="qvm-x-acl">*yanasa</AUni> -<AUni ws="qvm-x-akh">*yanasa</AUni> -<AUni ws="qvm-x-akl">*yanasa</AUni> -<AUni ws="qvm-x-ame">*yanasa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.729" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ee58dabf-27d4-4c09-9a1d-3b5887629626" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yanasa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="36ee33bd-7480-4c52-8821-200f32765aa4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="200e8f2f-9ede-425f-84b8-1807c067174c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yanasa 
\entryTyp root 
\gENG friend 
\gSPN amigo 
\e *yanasa 
\c N0 V1 
\ach yanasa 
\akh yanasa 
\acl yanasa 
\akl yanasa 
\ame yanasa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="04e7b038-affb-45ab-9c9a-27b2837ad9c3" ownerguid="da41ea1f-dd09-421d-a1a5-174ff43f4eff"> -<ExampleWords> -<AUni ws="en">(Japanese) -hon (long objects), -mai (flat objects), -ban (order in a series), -nin (people), -fun (minutes), -dai (large vehicles)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate the class of something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="04e8a172-20df-4cc2-bf5b-1f4a0dd65720" ownerguid="b089f0be-e6a0-44f5-aa1f-7d9744e63641"> -<Form> -<AUni ws="qvm-x-ach">aylu</AUni> -<AUni ws="qvm-x-acl">aylu; aylo</AUni> -<AUni ws="qvm-x-akh">aylu</AUni> -<AUni ws="qvm-x-akl">aylu; aylo</AUni> -<AUni ws="qvm-x-ame">aylu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="04ea667d-49ba-4057-941f-3ad4972fb00f" ownerguid="3f2a2fc1-284f-4ee3-a5bd-62123a87d4c1"> -<Form> -<AUni ws="qvm-x-ach">ancha</AUni> -<AUni ws="qvm-x-acl">ancha</AUni> -<AUni ws="qvm-x-akh">ancha</AUni> -<AUni ws="qvm-x-akl">ancha</AUni> -<AUni ws="qvm-x-ame">ancha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="04ef7e1f-2724-46ca-a7a0-6b89408f34b9" ownerguid="7fd0d27f-96fc-4fa2-b46b-cfb232ae33dc"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Gen 30.32 Uysha cunchaman yaycuycur canan acramushag shagsha uyshacunata, muru muru uyshacunata y yana uysha malwacunatapis.</Run> -</AStr> -</Example> -</rt> -<rt class="LexExampleSentence" guid="04f1f94c-1463-49fe-8da6-b45101333092" ownerguid="f9308afb-73bc-4444-a6bd-1a762dd98cdd"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 22.27 Paycunata wilanqui carcilman wichgaycur caway tsararaglanpag yacutapis micuytapis garananpag.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="04f6a3dd-b5c8-412a-8fc8-7469d9a8aa55" ownerguid="0cce6d8e-cc43-4441-aa0f-c18893567d84"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="04f9789b-701b-4e75-ab35-4387f404815b" ownerguid="f7833042-cd10-42c1-9507-945e3c043f96"> -<Form> -<AUni ws="qvm-x-ach">wasquïlla</AUni> -<AUni ws="qvm-x-acl">wasquïlla</AUni> -<AUni ws="qvm-x-akh">waskïlla</AUni> -<AUni ws="qvm-x-akl">waskïlla</AUni> -<AUni ws="qvm-x-ame">waskïlla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="04fd75ce-6570-43d3-991f-e501f53f322f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">dolienti; doliente</AUni> -<AUni ws="qvm-x-acl">dolienti; dolienti; doliente</AUni> -<AUni ws="qvm-x-akh">dolienti; doliente</AUni> -<AUni ws="qvm-x-akl">dolienti; dolienti; doliente</AUni> -<AUni ws="qvm-x-ame">dolienti; doliente</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+doliente</AUni> -<AUni ws="qvm-x-acl">+doliente</AUni> -<AUni ws="qvm-x-akh">+doliente</AUni> -<AUni ws="qvm-x-akl">+doliente</AUni> -<AUni ws="qvm-x-ame">+doliente</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.437" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8e9b5f95-3258-4f73-89fd-9a2fdade51c7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+doliente</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d987c15d-a131-4127-8b9b-31f0334989c4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="554bd868-1dbc-4a29-bfa7-2d59597c9edc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +doliente 
\entryTyp root 
\gENG mourner 
\gSPN doliente 
\e +doliente 
\c N0 
\mp +FinalI 
\ach dolienti / ~_# 
\ach doliente / _# 
\akh dolienti / ~_# 
\akh doliente / _# 
\acl dolienti / ~_# 
\acl dolienti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl doliente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl dolienti / ~_# 
\akl dolienti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl doliente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame dolienti / ~_# 
\ame doliente / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="050039c2-55da-4972-a5dd-84d10623c044" ownerguid="b50f39cb-3152-4d56-9ddc-4b98f763e76a"> -<ExampleWords> -<AUni ws="en">want, desire, wish, long for, yearn, crave, hunger, thirst, be attracted to, fancy, have a fancy for, intent on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to wanting something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0500f409-5b75-45b6-8524-4535688f5b9a" ownerguid="34dae3f8-e483-4fe5-893e-8838b910ab6a"> -<Form> -<AUni ws="qvm-x-ach">timpi</AUni> -<AUni ws="qvm-x-acl">timpi; timpe</AUni> -<AUni ws="qvm-x-akh">timpi</AUni> -<AUni ws="qvm-x-akl">timpi; timpe</AUni> -<AUni ws="qvm-x-ame">timpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0501e255-55a9-4410-af7a-48f55b7a2abe" ownerguid="08788e9a-93b8-4a2e-ab01-dea177f061e8"> -<ExampleWords> -<AUni ws="en">host, master of ceremonies</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) Who is the leader of a feast?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="050503b1-1eb3-4bdb-903d-70126d9e3eca" ownerguid="71db9179-0dd5-445f-b153-c1857c6cf612"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -<Sense> -<objsur guid="7cd134ea-89c1-4a60-8992-dcac673bd263" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="05076c3f-7053-4faa-bce4-afc6a2b4f153" ownerguid="1f49a130-d4e0-4090-b0f3-6d778c4e1ce1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tie.knot</AUni> -<AUni ws="es">hacer.nudo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d178c175-c562-43e2-82d6-f3f28329a09d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0508e38c-10b3-4305-af52-5441d02b90a4" ownerguid="d2ca3194-e393-480e-ae1d-dd67bed55227"> -<ExampleWords> -<AUni ws="en">bud, leaf out, produce leaves</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a plant producing leaves?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="050b35e1-e2d0-4441-9260-62631b0e8b16" ownerguid="9a456463-3c71-4f9a-8117-dc2fcb087bd3"> -<ExampleWords> -<AUni ws="en">feed a fire, stoke a fire, throw another log on the fire</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to adding fuel to a fire?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="050c2d07-4321-409b-8bb1-10e4799b7338" ownerguid="2eb242e5-f0f1-4411-bd0c-f1d9d7371fc4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsay</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsay</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsay</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsay</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsay</Run> -</AStr> -</Form> -<Morph> -<objsur guid="feef9276-2243-43d4-b44a-5a725a0be56c" t="r" /> -</Morph> -<Msa> -<objsur guid="17c53e1a-f12c-41bc-9038-3134419c51bb" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="050dbc4a-4b87-48d2-95ce-ddc5bed2674c" ownerguid="7981a8e1-cf0b-44a0-9de4-12160b2f201d"> -<ExampleWords> -<AUni ws="en">title, deed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the official document that shows who owns the land?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0511209f-8ea9-494b-8392-13ed934d9639" ownerguid="e4ddd746-7958-4bee-8174-2c31eb9f4770"> -<Form> -<AUni ws="qvm-x-ach">shanca; shancä</AUni> -<AUni ws="qvm-x-acl">shanca; shancä</AUni> -<AUni ws="qvm-x-akh">shanka; shankä</AUni> -<AUni ws="qvm-x-akl">shanka; shankä</AUni> -<AUni ws="qvm-x-ame">shanka; shankä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="05125bd3-a015-4882-9d4e-d66a5e3d5ee0" ownerguid="8f5e1e2c-6e74-4e23-8a6c-d77e4d169506"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="051507dc-10db-4dfc-aebc-8dd80180d730"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">consienti</AUni> -<AUni ws="qvm-x-acl">consienti; consiente</AUni> -<AUni ws="qvm-x-akh">consienti</AUni> -<AUni ws="qvm-x-akl">consienti; consiente</AUni> -<AUni ws="qvm-x-ame">consienti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+consentir</AUni> -<AUni ws="qvm-x-acl">+consentir</AUni> -<AUni ws="qvm-x-akh">+consentir</AUni> -<AUni ws="qvm-x-akl">+consentir</AUni> -<AUni ws="qvm-x-ame">+consentir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.172" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="db36b26b-0cec-48dc-a72f-c590170f5dc0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+consentir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="601446ed-9a05-462e-b177-01756e9b0fab" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f067ae9a-5f5b-44a4-b710-bb1357746fa8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +consentir 
\entryTyp root 
\gENG 
\gSPN 
\e +consentir 
\c V2 
\mp +FinalI 
\ach consienti 
\akh consienti 
\acl consienti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl consiente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl consienti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl consiente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame consienti 
\i LEV 19.29 Warmi tsuriquita prostitüta cananpag ama consientinquitsu. 
\i 1SA 16.14 Tsay witsanmi 
\nd Tayta Diospa
\nd* Espíritun Saúlpita yargucushga cargan. Tsaymi Saúlta löcutätsinanpag juc demoniuta 
\nd Tayta Dios
\nd* consientiptinmi Saúlga fiyupa löcutar purergan. 
\i Deu 19.18 Tsaynogpami lutan yarpayniyog runacunata mana consientinquitsu.</Run> -</AStr> -</Custom> -</rt> -<rt class="StTxtPara" guid="0517af79-daf3-44b4-901c-ac1f7cc2b3db" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">rikatsikan</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="5f1694be-5266-481e-8bac-3ea71147d122" t="o" /> -</Segments> -</rt> -<rt class="LexSense" guid="0517c2a7-c190-4312-879d-54fc5d402a1a" ownerguid="d212adf8-f182-4cab-9708-eb7ea2535c02"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tick</AUni> -<AUni ws="es">garrapata</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2c2cd814-0957-4477-901e-e9a2749a48a4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="05187a74-5a16-4e4d-8a85-6a3bbdb215c1" ownerguid="bc102db5-fe31-4be6-8c2e-b6d2a9d035ae"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">crazy</AUni> -<AUni ws="es">loco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="45f14fc7-ba1d-4bed-b30c-2ad3696cf569" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="051bfff3-6e63-48ef-9433-cd675f4f8ff5" ownerguid="43dc9e35-0613-432c-9fee-5001d2e92467"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EST 4.11 Wanunanta mana munar öru bäranwan rey togrishgan cagtami itsanga pitapis mana wanutsintsu.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="051cd29d-3e56-4591-bae0-b20af0568939"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tini</AUni> -<AUni ws="qvm-x-acl">tini; tine</AUni> -<AUni ws="qvm-x-akh">tini</AUni> -<AUni ws="qvm-x-akl">tini; tine</AUni> -<AUni ws="qvm-x-ame">tini</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+teñir</AUni> -<AUni ws="qvm-x-acl">+teñir</AUni> -<AUni ws="qvm-x-akh">+teñir</AUni> -<AUni ws="qvm-x-akl">+teñir</AUni> -<AUni ws="qvm-x-ame">+teñir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.866" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ff9e9e5b-7283-4b36-8226-074950eb5e66" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+teñir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="48e7d7fc-2d70-4be9-bb58-b3e779ccc835" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="83cc4c72-f739-4c7a-9653-3f12240042ef" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +teñir 
\entryTyp root 
\gENG dye 
\gSPN teñir 
\e +teñir 
\c V2 
\mp +FinalI 
\ach tini 
\akh tini 
\acl tini +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tine +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tini +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tine +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tini</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="05236550-ff6a-42a6-b266-154744738d63" ownerguid="cd1d9d5f-5846-45fd-ad21-73bb03f95402"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="052bc995-c41e-4b2c-bed1-49b921bdce25"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tauri</AUni> -<AUni ws="qvm-x-acl">tauri; tauri; taure</AUni> -<AUni ws="qvm-x-akh">tawri</AUni> -<AUni ws="qvm-x-akl">tawri; tawri; tawre</AUni> -<AUni ws="qvm-x-ame">tawri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tawri</AUni> -<AUni ws="qvm-x-acl">*tawri</AUni> -<AUni ws="qvm-x-akh">*tawri</AUni> -<AUni ws="qvm-x-akl">*tawri</AUni> -<AUni ws="qvm-x-ame">*tawri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.843" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4b2fab78-9e82-4be0-ae1e-e183a5c844d4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tawri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9fec2b3e-1983-40bd-85a9-4f182fde1db0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d31f904d-9b12-4251-ab62-f78d712fd7a6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tawri 
\entryTyp root 
\gENG beans 
\gSPN chochos 
\e *tawri 
\c N0 
\mp +FinalI 
\ach tauri 
\akh tawri 
\acl tauri / _# 
\acl tauri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl taure +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tawri / _# 
\akl tawri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tawre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tawri</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="052ce110-0adc-4169-9108-6fa7f238cf29" ownerguid="1984aec6-dea6-4166-ab0a-18401b299dff"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">SNG 5.4 Tsay nishganga ishcay sentïduyogmi caycan. Wayi puncupa maquinta jatimushganta nishgannoglami jipashman mözu yaycunanpag cashgantapis niycan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="053245f8-5f72-43c5-9b4c-5282109714c6" ownerguid="c24f55f6-4e86-473c-b669-8d911b2307f7"> -<Form> -<AUni ws="qvm-x-ach">delicädu</AUni> -<AUni ws="qvm-x-acl">delicädu; delicädu; delicädo</AUni> -<AUni ws="qvm-x-akh">delicädu</AUni> -<AUni ws="qvm-x-akl">delicädu; delicädu; delicädo</AUni> -<AUni ws="qvm-x-ame">delicädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="053518ba-8a9a-40ea-a35e-4730bf422951" ownerguid="ae66b757-5d95-4698-948f-7bfa30c5e462"> -<Form> -<AUni ws="qvm-x-ach">tsagla</AUni> -<AUni ws="qvm-x-acl">tsagla</AUni> -<AUni ws="qvm-x-akh">tsaqla</AUni> -<AUni ws="qvm-x-akl">tsaqla</AUni> -<AUni ws="qvm-x-ame">tsaqla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="05352866-6e35-431b-ab3e-373e7389cf9b" ownerguid="e22d860a-d207-4649-8ab5-4592b838febb"> -<ExampleWords> -<AUni ws="en">cetacean, pinniped</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to sea mammals?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="05357446-f303-470c-b777-3c0d693469ab" ownerguid="349f0278-7998-422a-9c3b-6053989cbb20"> -<ExampleWords> -<AUni ws="en">noun, verb, adjective, adverb, conjunction, preposition, particle, article, word, participle, infinitive, part of speech, compound, derivative</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to types of grammatical words?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="05371057-2fe4-49ef-b203-f5bd6727645e" ownerguid="6430b89c-7077-418a-a558-51f0e3f2c1a6"> -<Abbreviation> -<AUni ws="en">7.3.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.528" /> -<DateModified val="2022-9-23 16:55:8.528" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to moving something back and forth.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>16 Non-Linear Movement</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Shake</AUni> -</Name> -<Questions> -<objsur guid="09bb0e30-aec2-4eec-bf87-2aecfcafb7d4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="0537f54e-67e6-421d-9ab0-28ecccef1723"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bru:ju</AUni> -<AUni ws="qvm-x-acl">bru:ju; bru:jo</AUni> -<AUni ws="qvm-x-akh">bru:ju</AUni> -<AUni ws="qvm-x-akl">bru:ju; bru:jo</AUni> -<AUni ws="qvm-x-ame">bru:ju</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+brujear.2</AUni> -<AUni ws="qvm-x-acl">+brujear.2</AUni> -<AUni ws="qvm-x-akh">+brujear.2</AUni> -<AUni ws="qvm-x-akl">+brujear.2</AUni> -<AUni ws="qvm-x-ame">+brujear.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.989" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d549bdc9-1920-441d-a931-50810d13d645" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+brujear.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="99ac2583-b18d-4304-aa97-866e74d581c6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1e57b75a-93c6-4394-854b-f5b3d7ae21be" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +brujear.2 
\entryTyp root 
\gENG cast.spell 
\gSPN brujear 
\e +brujear.2 
\c V2 
\ach bru:ju 
\akh bru:ju 
\acl bru:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl bru:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl bru:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl bru:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame bru:ju 
\i GAL 5.20 ïdulukunata adorapäkun y runa mayinpaq brüjupäkun.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="0539de86-f407-4b3d-b1b8-028822fb9f26" ownerguid="e45b8bac-9623-4f84-a113-9dec13a8db64"> -<Abbreviation> -<AUni ws="en">3.5.1.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to repeating something--saying something a second time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Repeat</AUni> -</Name> -<Questions> -<objsur guid="0ea644e7-354f-4d3f-a4ab-9fb499318696" t="o" /> -<objsur guid="8c638f4a-a5f8-4a32-8bc7-a772d11a4a8d" t="o" /> -<objsur guid="48eb0400-9f50-472f-8299-deb3e9d5e5ce" t="o" /> -<objsur guid="b15bedd8-ca63-48d1-b17f-72abc85859b8" t="o" /> -<objsur guid="86efc873-6edd-45c9-ac10-233b71678b67" t="o" /> -<objsur guid="1e66194f-27cd-4eb8-bcba-17f360afafd2" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="053baf0d-a02d-40bc-a33c-9dd44899852e" ownerguid="01c0fabf-e23c-49d4-8b4e-5b36ad316d50"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -</rt> -<rt class="MoStemMsa" guid="053cca94-147b-449e-ac90-5b608aad8b13" ownerguid="c1ccbaa5-7adb-4ad1-a826-a014b7ebb2ff"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="054225f6-9f04-4498-b4f3-bd8617527cb7" ownerguid="7ddbd56f-e458-4a72-a9bc-9b7db6bde75a"> -<ExampleWords> -<AUni ws="en">your majesty, live forever</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What special words and phrases are used when talking to the ruler?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0542b90a-48bf-4cb4-b312-4bc7cf78e4cd" ownerguid="f3261176-07d9-4d8f-872d-bbd6fa91c924"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="054374ba-4897-4b39-b0ee-8c5c4f4a9c73"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wayrinca</AUni> -<AUni ws="qvm-x-acl">wayrinca</AUni> -<AUni ws="qvm-x-akh">wayrinka</AUni> -<AUni ws="qvm-x-akl">wayrinka</AUni> -<AUni ws="qvm-x-ame">wayrinka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wayrinka</AUni> -<AUni ws="qvm-x-acl">*wayrinka</AUni> -<AUni ws="qvm-x-akh">*wayrinka</AUni> -<AUni ws="qvm-x-akl">*wayrinka</AUni> -<AUni ws="qvm-x-ame">*wayrinka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.627" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2d11e332-8246-440c-b2c9-09d27ca4f574" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wayrinka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3374391f-3d36-4e37-9de3-ab6541adb8c6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bd25ab84-bec9-45d3-acfa-b27f54454313" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wayrinka 
\entryTyp root 
\gENG 
\gSPN 
\e *wayrinka 
\c N0 
\ach wayrinca 
\akh wayrinka 
\acl wayrinca 
\akl wayrinka 
\ame wayrinka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="0546585f-d317-4279-8c7b-9286a128ad2e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pachac</AUni> -<AUni ws="qvm-x-acl">pachac</AUni> -<AUni ws="qvm-x-akh">pachak</AUni> -<AUni ws="qvm-x-akl">pachak</AUni> -<AUni ws="qvm-x-ame">pachak</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*patrak</AUni> -<AUni ws="qvm-x-acl">*patrak</AUni> -<AUni ws="qvm-x-akh">*patrak</AUni> -<AUni ws="qvm-x-akl">*patrak</AUni> -<AUni ws="qvm-x-ame">*patrak</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.759" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1e7e4430-af20-4850-ab90-5a84f10e0c46" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*patrak</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="33ffe68c-f92c-457b-a37c-9eccb07e4e91" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="004b9476-c99b-46bd-a832-a2d629663b33" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *patrak 
\entryTyp root 
\gENG hundred 
\gSPN cien 
\e *patrak 
\c N0 
\mp +FinalC 
\ach pachac 
\akh pachak 
\acl pachac 
\akl pachak 
\ame pachak</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="05472990-3f51-40b3-bca8-df3cf383328b" ownerguid="c9aee4df-ac3e-4159-bd1a-060db1a5f070"> -<Abbreviation> -<AUni ws="en">3.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.164" /> -<DateModified val="2022-9-23 16:55:8.164" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to making a speech--to talk for a long time to many people.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Make speech</AUni> -</Name> -<OcmCodes> -<Uni>537 Oratory; 544 Public Lectures</Uni> -</OcmCodes> -<Questions> -<objsur guid="275e6120-cb23-4690-b136-7b93b7ea3081" t="o" /> -<objsur guid="98b28f38-f144-4b3d-b962-e4d4a043dc23" t="o" /> -<objsur guid="3290b3ac-930b-4aad-8325-40d996418f6e" t="o" /> -<objsur guid="67e5ce5f-2333-4c97-a160-8a5509c02314" t="o" /> -<objsur guid="b6af46c1-4024-4fd2-8b6d-228f833eba4b" t="o" /> -<objsur guid="dfcc41c6-a408-458f-97b5-9302e0e690aa" t="o" /> -<objsur guid="52d85c7b-ade4-429c-a341-96383ab7c5e1" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="cc3f1dc8-a31e-4459-ba13-f82b45df37b5" t="o" /> -<objsur guid="f2342d42-bdc4-449c-9891-58f90318b9f1" t="o" /> -<objsur guid="22e8f542-0ab1-4f25-af50-fd0d02917fda" t="o" /> -<objsur guid="7158c621-c46e-4173-80c1-188f514a920f" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="054e81ce-abd8-4069-989d-13e2fa58851c" ownerguid="9b0fef63-5935-447d-801a-bb02dd6212bb"> -<Abbreviation> -<AUni ws="en">4.3.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.225" /> -<DateModified val="2022-9-23 16:55:8.225" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to showing off--to behave in a way that attracts people's attention because you want them to admire you.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Show off</AUni> -</Name> -<Questions> -<objsur guid="947c73ef-192d-4344-b079-7a904d76ac02" t="o" /> -<objsur guid="5744329d-a4d7-4c0c-ab4f-d372930672b9" t="o" /> -<objsur guid="2b1bfbd8-f41a-406c-a25a-0a7da6098e93" t="o" /> -<objsur guid="77aba697-8151-445c-84f1-230fc7818018" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="80415fac-b3d8-4e3c-bdb8-dc92f3c6dad8" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="054f479c-f87a-4ee3-bc51-b80249cde0ce"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">combu; combo</AUni> -<AUni ws="qvm-x-acl">combu; combu; combo</AUni> -<AUni ws="qvm-x-akh">combu; combo</AUni> -<AUni ws="qvm-x-akl">combu; combu; combo</AUni> -<AUni ws="qvm-x-ame">combu; combo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+combo.1</AUni> -<AUni ws="qvm-x-acl">+combo.1</AUni> -<AUni ws="qvm-x-akh">+combo.1</AUni> -<AUni ws="qvm-x-akl">+combo.1</AUni> -<AUni ws="qvm-x-ame">+combo.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.152" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="22b15dbb-393c-4159-a80e-7d651bd02092" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+combo.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b8956636-6231-4d9d-99c3-f5997354efad" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="85922ed8-65e1-4680-ace4-4dcca3baa053" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +combo.1 
\entryTyp root 
\gENG mallet 
\gSPN mazo 
\e +combo.1 
\c N0 
\ach combu / ~_# 
\ach combo / _# 
\akh combu / ~_# 
\akh combo / _# 
\acl combu / ~_# 
\acl combu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl combo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl combu / ~_# 
\akl combu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl combo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame combu / ~_# 
\ame combo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="0551c37c-61f2-402d-9e8e-74fe3c0e645c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pishgu</AUni> -<AUni ws="qvm-x-acl">pishgu; pishgu; pishgo</AUni> -<AUni ws="qvm-x-akh">pishqu</AUni> -<AUni ws="qvm-x-akl">pishqu; pishqu; pishqo</AUni> -<AUni ws="qvm-x-ame">pishqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pishqu</AUni> -<AUni ws="qvm-x-acl">*pishqu</AUni> -<AUni ws="qvm-x-akh">*pishqu</AUni> -<AUni ws="qvm-x-akl">*pishqu</AUni> -<AUni ws="qvm-x-ame">*pishqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.861" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="155c1c4b-130a-48be-a6d9-9e35e74d32d9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pishqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6fa96f1e-b7d1-4881-82c7-246fd9d2eae1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ff2b918f-2fd2-4fa6-bcb1-3a689e33a715" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pishqu 
\entryTyp root 
\gENG 
\gSPN 
\e *pishqu 
\c N0 
\ach pishgu 
\akh pishqu 
\acl pishgu / _# 
\acl pishgu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pishgo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pishqu / _# 
\akl pishqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pishqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pishqu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="05556bf5-bff6-4960-a8c6-29b818ac3609" ownerguid="b0546721-ff38-416a-8a42-36f6d6fe7313"> -<Form> -<AUni ws="qvm-x-ach">auri</AUni> -<AUni ws="qvm-x-acl">auri; auri; aure</AUni> -<AUni ws="qvm-x-akh">awri</AUni> -<AUni ws="qvm-x-akl">awri; awri; awre</AUni> -<AUni ws="qvm-x-ame">awri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="055a68c7-5912-4021-a911-4a9623724b45" ownerguid="5d20d7b4-fc80-4289-a895-00ddf2f32376"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hamlet</AUni> -<AUni ws="es">caserío</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a5d66a3a-979d-47c1-9afb-c4b9bb14020b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="055ae9a2-ea84-4667-af68-1eb24608484f" ownerguid="4c862416-f7c4-4a3c-82ac-fe81e1efb879"> -<ExampleWords> -<AUni ws="en">kidney, bladder, urethra, ureter, urinary, nephritic, renal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What are the parts of the kidneys and bladder?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="055b2e6f-cacc-4740-a7f8-4ee42b6f73a3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ha:bil</AUni> -<AUni ws="qvm-x-acl">ha:bil; ha:bil; ha:bel</AUni> -<AUni ws="qvm-x-akh">ha:bil</AUni> -<AUni ws="qvm-x-akl">ha:bil; ha:bil; ha:bel</AUni> -<AUni ws="qvm-x-ame">ha:bil</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+habil</AUni> -<AUni ws="qvm-x-acl">+habil</AUni> -<AUni ws="qvm-x-akh">+habil</AUni> -<AUni ws="qvm-x-akl">+habil</AUni> -<AUni ws="qvm-x-ame">+habil</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.637" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="33af9d02-2e3b-4580-ae35-cef0764cf162" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+habil</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9bd642f1-72f7-442c-8df5-f7f8223953b9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f45213a1-90ea-4b2f-9b65-0ade47bfdf0a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +habil 
\entryTyp root 
\gENG 
\gSPN 
\e +habil 
\c N0 
\mp +FinalC 
\ach ha:bil 
\akh ha:bil 
\acl ha:bil / _# 
\acl ha:bil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ha:bel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ha:bil / _# 
\akl ha:bil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ha:bel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame ha:bil</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="055c2b3e-91c7-4b4f-aa06-8d3a3d6dbe2f" ownerguid="3580bb8b-c0d5-4af8-ac76-7b53f2a50b6b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="055ca629-d3e1-419b-a8e3-3cb97078dc96" ownerguid="70103b13-f5f0-48d4-8d4e-d6e0268967aa"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="056405e8-3176-42d2-8439-d7d97bcb2c02" ownerguid="cb58440f-0e54-42ee-9fdd-1aa3fc8b7caf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.drizzle</AUni> -<AUni ws="es">lloviznar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="971be41f-7e8e-49b6-af37-881e142715b5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="056577e0-ac99-4ad9-b740-6160dce5eee0" ownerguid="3b19fe3b-741e-4c50-9fab-a12fdf4ca3c7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">first.born</AUni> -<AUni ws="es">primogénito</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="df815d5f-5e79-4e81-94b3-fb1a1c9ee3a2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0568f8f1-2b3b-4000-a444-9db3bced12a7" ownerguid="18595df7-1c69-40db-a7c1-74d490115c0c"> -<ExampleWords> -<AUni ws="en">fan, air pump, bellows, ventilator, wind tunnel, propeller, air pipe, airshaft, vent, chimney, exhaust, funnel, windmill, sail, valve</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What tools and machines are used to create or use the wind?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="056a37a2-9cc7-419a-a3a8-39171ebfa52f" ownerguid="08c05e00-9660-4491-af2f-a05fab27ef39"> -<ExampleWords> -<AUni ws="en">thinner, thinnest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to being thinner than another person?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="056a4349-b378-4c20-aef3-3b25cfcffbda" ownerguid="271a0f17-545d-4a19-92df-2a7d9970fb92"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="056cea8c-3d46-4127-8242-d87318f8ac81"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gatu</AUni> -<AUni ws="qvm-x-acl">gatu; gato</AUni> -<AUni ws="qvm-x-akh">qatu</AUni> -<AUni ws="qvm-x-akl">qatu; qato</AUni> -<AUni ws="qvm-x-ame">qatu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qatu.v</AUni> -<AUni ws="qvm-x-acl">*qatu.v</AUni> -<AUni ws="qvm-x-akh">*qatu.v</AUni> -<AUni ws="qvm-x-akl">*qatu.v</AUni> -<AUni ws="qvm-x-ame">*qatu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.144" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="21af7e4a-207d-4f30-969e-81401a34ee22" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qatu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4efa8c7e-4daa-48e4-adb7-37ad9a48f12c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e6a46dc4-558a-4184-b179-ae668e0fd077" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qatu.v 
\entryTyp root 
\gENG serve 
\gSPN servir 
\e *qatu.v 
\c V2 
\ach gatu 
\akh qatu 
\acl gatu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qatu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qatu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="056d3bd4-db8f-4462-b997-81a92f863b85" ownerguid="4451aa09-44e4-49bc-9a0b-0e897b172173"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="056f46da-35bc-4e3c-b5db-5b0c24f6a653" ownerguid="b28406f8-eee1-4263-8a78-47b432a9efe8"> -<Form> -<AUni ws="qvm-x-ach">mogu</AUni> -<AUni ws="qvm-x-acl">mogu; mogu; mogo</AUni> -<AUni ws="qvm-x-akh">moqu</AUni> -<AUni ws="qvm-x-akl">moqu; moqu; moqo</AUni> -<AUni ws="qvm-x-ame">muqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="05778617-d490-43b6-a80a-6b449e76a41d" ownerguid="2f9714d1-97ec-497b-b74c-d56d2b30d283"> -<Form> -<AUni ws="qvm-x-ach">ticpi</AUni> -<AUni ws="qvm-x-acl">ticpi; ticpi; ticpe</AUni> -<AUni ws="qvm-x-akh">tikpi</AUni> -<AUni ws="qvm-x-akl">tikpi; tikpi; tikpe</AUni> -<AUni ws="qvm-x-ame">tikpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="0577c6d5-3409-4031-aa46-31e021524fcb" ownerguid="fd3d1cd7-8b7e-4a63-846a-9e5ecd83dd0f"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="DsConstChart" guid="057e6fcb-dc38-4d29-a960-f290eb33eb0e" ownerguid="c3fe8c1e-ea5e-11de-9e45-0013722f8dec"> -<BasedOn> -<objsur guid="7d78db90-a316-4649-84b0-32db353e8633" t="r" /> -</BasedOn> -<DateCreated val="2022-10-10 21:52:40.808" /> -<DateModified val="2022-10-10 21:52:40.808" /> -<Template> -<objsur guid="c414012a-ea5e-11de-99fc-0013722f8dec" t="r" /> -</Template> -</rt> -<rt class="CmSemanticDomain" guid="05811fbe-2361-4219-a5d3-be3dc487f6fa" ownerguid="65bb0844-9a71-4eec-9b86-bf4b4b508a28"> -<Abbreviation> -<AUni ws="en">4.4.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to solving a problem.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Solve a problem</AUni> -</Name> -<Questions> -<objsur guid="98a84871-b33c-4ae4-b0b3-4dba0d22bb9f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="05812e47-1f74-4343-902c-b90e43eeed97" ownerguid="761ed6be-d61a-48d3-b666-2e09756a2bc6"> -<Form> -<AUni ws="qvm-x-ach">mupali</AUni> -<AUni ws="qvm-x-acl">mupali; mupali; mupale</AUni> -<AUni ws="qvm-x-akh">mupali</AUni> -<AUni ws="qvm-x-akl">mupali; mupali; mupale</AUni> -<AUni ws="qvm-x-ame">mupali</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="05821eb4-03f5-4752-9d24-fc9b9c365c7f" ownerguid="837c934c-ad68-4b64-8e9a-f6b060bfbb4b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">plaster</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="038ad206-b1fe-4891-8d52-f1670703eacc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="058bcc9b-c5fa-4e59-ab58-199b261ad2ee"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">oficiu; oficio</AUni> -<AUni ws="qvm-x-acl">oficiu; oficiu; oficio</AUni> -<AUni ws="qvm-x-akh">oficiu; oficio</AUni> -<AUni ws="qvm-x-akl">oficiu; oficiu; oficio</AUni> -<AUni ws="qvm-x-ame">oficiu; oficio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+oficio</AUni> -<AUni ws="qvm-x-acl">+oficio</AUni> -<AUni ws="qvm-x-akh">+oficio</AUni> -<AUni ws="qvm-x-akl">+oficio</AUni> -<AUni ws="qvm-x-ame">+oficio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.618" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f9910fbe-4905-4bbd-9cd0-c1fb93e03b5e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+oficio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2e0a0604-75ef-42b1-8429-d3dcc7d10353" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="825d18b0-057a-4162-901d-8bdfabbff381" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +oficio 
\entryTyp root 
\gENG 
\gSPN 
\e +oficio 
\c N0 
\ach oficiu / ~_# 
\ach oficio / _# 
\akh oficiu / ~_# 
\akh oficio / _# 
\acl oficiu / ~_# 
\acl oficiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl oficio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl oficiu / ~_# 
\akl oficiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl oficio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame oficiu / ~_# 
\ame oficio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="058e9743-e563-4c68-a706-50d256e03a5d" ownerguid="5ecff316-8cf6-450b-b95b-03dc2b801007"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="6a26bb4b-b8e6-42be-a55b-b5a53700c129" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="058f45b2-a7ee-4019-bd83-6744a2719921" ownerguid="ba8d18bd-2556-47a0-aa33-3ebef3e90814"> -<ExampleWords> -<AUni ws="en">record (n), chart (n), document (n), register (n), archives, chronicle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a record?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="05914213-df74-4675-8b6b-9c5463ce34c3" ownerguid="a31c85df-02a9-4dd8-a094-0f07a0afbcca"> -<ExampleWords> -<AUni ws="en">apart, detached, disassembled, dismembered, be in pieces</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe something after it has been taken apart?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="059299a4-67af-47d8-bdf1-947a861f91e9" ownerguid="42092895-8c78-4420-9c69-c0174c79142f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.foam</AUni> -<AUni ws="es">babas</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e5c7e10c-24b9-430d-a528-1df3a2384dc6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="0598b89b-67dc-4a37-b3f3-fc97fed1c782" ownerguid="4d989341-2640-44a1-8a39-bce1b3feac0a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2SA 3.22 Davidwan parlashganpita Abner yarguriptilannami Davidpa soldäduncunawan Joab chayargan guërracho guechumushgancunata wancayla aparishga.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="05a05da3-0adf-41e2-9a72-0e9ae7aeb3db"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pitish</AUni> -<AUni ws="qvm-x-acl">pitish</AUni> -<AUni ws="qvm-x-akh">pitish</AUni> -<AUni ws="qvm-x-akl">pitish</AUni> -<AUni ws="qvm-x-ame">pitish</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pitish</AUni> -<AUni ws="qvm-x-acl">*pitish</AUni> -<AUni ws="qvm-x-akh">*pitish</AUni> -<AUni ws="qvm-x-akl">*pitish</AUni> -<AUni ws="qvm-x-ame">*pitish</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.861" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3a169b3c-d21d-470c-92e2-2899e764358b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pitish</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2e07e3b7-aff0-4f2e-84d1-554d8e3f0cb4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bb25e1b4-652f-4f40-b1c8-bd9fead70d75" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pitish 
\entryTyp root 
\gENG ant 
\gSPN hormiga 
\e *pitish 
\c N0 
\mp +FinalC 
\ach pitish 
\akh pitish 
\acl pitish 
\akl pitish 
\ame pitish</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="05a6ca86-482e-4e85-8dd8-5e633b5ff2e4" ownerguid="ab8f12fb-57b0-4d61-8ae0-50d7cbc412df"> -<ExampleWords> -<AUni ws="en">snowy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words describe a time when it snows?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="05a74610-1394-472f-acf9-17f5fd72e054"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">por</AUni> -<AUni ws="qvm-x-acl">por</AUni> -<AUni ws="qvm-x-akh">por</AUni> -<AUni ws="qvm-x-akl">por</AUni> -<AUni ws="qvm-x-ame">por</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+por</AUni> -<AUni ws="qvm-x-acl">+por</AUni> -<AUni ws="qvm-x-akh">+por</AUni> -<AUni ws="qvm-x-akl">+por</AUni> -<AUni ws="qvm-x-ame">+por</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.901" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bf05619f-89f4-4c4c-9bed-42fb58e00159" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+por</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3266d7ed-b4e4-4d07-90f7-b037c736fdcc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1ce5f2e2-f2f5-41a3-abf5-c5544f6dcf1c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +por 
\entryTyp root 
\gENG for 
\gSPN por 
\e +por 
\c NOSUFF 
\ach por 
\akh por 
\acl por 
\akl por 
\ame por</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="05a74f2f-7b8c-4b19-bb8b-f480ea9fee0d" ownerguid="72a7faef-6f1d-40fb-a97b-88731154eaca"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">witness</AUni> -<AUni ws="es">testigo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b2b866bb-32dc-4656-aea5-2a188dbdc5e5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="05a7bbdc-7cf5-47d3-830b-84e1591b11cc" ownerguid="87bd0d45-8a94-41cb-9864-90d53a11a4b9"> -<Abbreviation> -<AUni ws="en">4.7.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to passing a law.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Pass laws</AUni> -</Name> -<Questions> -<objsur guid="56cbd0fe-25dc-49ad-9898-0ace975490f3" t="o" /> -<objsur guid="51ebb203-e93e-4b7e-a431-a4099bfe458f" t="o" /> -<objsur guid="e33da164-d776-4982-b827-2204b2e9e82d" t="o" /> -<objsur guid="c32c603b-1424-4c82-baec-33cd596a83a6" t="o" /> -<objsur guid="e49ba708-bee3-4cdf-b7d9-a42642ea1039" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="05a85ca4-fceb-464f-9580-95990ef9c793"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shga</AUni> -<AUni ws="qvm-x-acl">shga</AUni> -<AUni ws="qvm-x-akh">shqa</AUni> -<AUni ws="qvm-x-akl">shqa</AUni> -<AUni ws="qvm-x-ame">shqa</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.568" /> -<DateModified val="2022-10-16 13:49:32.582" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="2" /> -<LexemeForm> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">REL1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7cd134ea-89c1-4a60-8992-dcac673bd263" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx REL1 
\entryTyp suffix 
\gENG REL 
\gSPN REL 
\e REL1 
\c V1/N1 
\o 120 
\mp +foreshortens 
\ach shga 
\akh shqa 
\acl shga 
\akl shqa 
\ame shqa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="05aa545a-7e89-4e8b-8e02-d9d90ef81b92" ownerguid="ac2e424b-6aee-4031-8864-7b3f4a6fb5a3"> -<ExampleWords> -<AUni ws="en">untrue, false, falsehood, wrong, error, inaccurate, incorrect, mistake</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something is not true?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="05aaedde-b217-43fa-8873-bac0140af913" ownerguid="1b004786-7bfc-42be-bcd1-8616f9383206"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">vegetables</AUni> -<AUni ws="es">verdura</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aae94bdb-dda0-48a8-8942-6ed32dff39d9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="05af1415-817b-437c-8199-c4f650141a2e" ownerguid="27ee8fbf-dec0-4435-879c-e4d91d1ec4f5"> -<Form> -<AUni ws="qvm-x-ach">azuëla</AUni> -<AUni ws="qvm-x-acl">azuëla</AUni> -<AUni ws="qvm-x-akh">azuëla</AUni> -<AUni ws="qvm-x-akl">azuëla</AUni> -<AUni ws="qvm-x-ame">azuëla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="05afacd9-c11a-4430-875a-9917a75b28d0" ownerguid="e98ddf1c-3983-48cf-9741-902e978c8dfe"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="05b180cd-a269-45fa-8c67-1d3aa4c6356b" ownerguid="ca3e2a0a-23f1-41ff-8267-6f7944da231f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="357ab8f3-34b2-4ee2-9fd1-10030912850a" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">to.smoke</AUni> -<AUni ws="es">ahumar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="827b79c4-8606-47f5-b944-18a1dcf50d3d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="05b1d695-7285-4c39-9868-2426f6a9cdb0" ownerguid="fd33670e-ef16-4566-a62e-aa077e58407b"> -<ExampleWords> -<AUni ws="en">high, squeak, squeal, whine, peep</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a high pitched sound?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="05b34cb0-395a-49a4-81cb-0884c9331212" ownerguid="7dbd7f43-4291-47f8-a392-6fdf3c98d522"> -<ExampleWords> -<AUni ws="en">semen, sperm, seminal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the liquid produced?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="05b3c5cc-9c57-4d9e-9bfd-dbe11e2774fc" ownerguid="eca147b6-fc3d-4f35-b3db-325652e862ec"> -<Form> -<AUni ws="qvm-x-ach">partición; particion</AUni> -<AUni ws="qvm-x-acl">partición; particion</AUni> -<AUni ws="qvm-x-akh">partición; particion</AUni> -<AUni ws="qvm-x-akl">partición; particion</AUni> -<AUni ws="qvm-x-ame">partición; particion</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="05b497cb-bcbd-4a2c-906a-3853273f7879" ownerguid="c8134c1c-e189-414e-b9be-4dcbfb484e29"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/V2 R0/V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">CAUSBE1</AUni> -<AUni ws="es">CAUSSER1</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2989ee89-b549-478d-b7ff-d90bdc8e6d2f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="05b6e031-d26b-4927-b59d-b02fcc529c9b" ownerguid="4405e74c-f64c-4609-8f7b-99ba563d659a"> -<ExampleWords> -<AUni ws="en">adopted child, foster child</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to an adopted child?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="05be6462-40f3-4c0b-b355-8ee419c89935" ownerguid="593e6a82-63c8-49d4-b54e-8299fea67f83"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">curved.spine</AUni> -<AUni ws="es">corcovado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="da0704b5-b6ba-4df2-abbc-fb9e4e535e69" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="05c3a652-52b3-4915-acb1-7aa67ea6fa32" ownerguid="2540ea13-279e-4bac-9951-8acdd2159eb2"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="05c713ef-ee06-40a2-82e8-b3c43ec1468e" ownerguid="1c3f8996-362e-4ee0-af02-0dd02887f6aa"> -<ExampleWords> -<AUni ws="en">heaven, paradise, your reward</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What is the place called where believers (good people) go when they die?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="05c7dfd0-652c-4d43-8c94-f97c0d01adf5" ownerguid="199368f4-203a-40a6-af16-a41a277c09f5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">promise</AUni> -<AUni ws="es">prometer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="03433e9f-af7b-4e20-8144-b19b047c5fe6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="05cea2ef-ede9-44ea-ad41-fdd86b845f05" ownerguid="f99317b2-0139-4c4b-8b6d-1eac4f3770be"> -<Form> -<AUni ws="qvm-x-ach">enrëdu</AUni> -<AUni ws="qvm-x-acl">enrëdu; enrëdu; enrëdo</AUni> -<AUni ws="qvm-x-akh">enrëdu</AUni> -<AUni ws="qvm-x-akl">enrëdu; enrëdu; enrëdo</AUni> -<AUni ws="qvm-x-ame">enrëdu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="05ceaabb-68bd-4867-94cb-52e5224e28e2" ownerguid="d02a2605-f17a-4468-b495-570e1ec3872e"> -<Form> -<AUni ws="qvm-x-ach">semäna</AUni> -<AUni ws="qvm-x-acl">semäna</AUni> -<AUni ws="qvm-x-akh">semäna</AUni> -<AUni ws="qvm-x-akl">semäna</AUni> -<AUni ws="qvm-x-ame">semäna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="05d1c5bb-1f81-4979-acfa-1931d5d237e7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tamya</AUni> -<AUni ws="qvm-x-acl">tamya</AUni> -<AUni ws="qvm-x-akh">tamya</AUni> -<AUni ws="qvm-x-akl">tamya</AUni> -<AUni ws="qvm-x-ame">tamya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tamya.n</AUni> -<AUni ws="qvm-x-acl">*tamya.n</AUni> -<AUni ws="qvm-x-akh">*tamya.n</AUni> -<AUni ws="qvm-x-akl">*tamya.n</AUni> -<AUni ws="qvm-x-ame">*tamya.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.794" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e4d9a327-d7b8-4ee6-bfa7-e08b16409bf2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tamya.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d53fbd44-4efa-4783-a752-10d387d64c24" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6fd05d72-9436-47bb-ab70-d6cf330d2ad6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tamya.n 
\entryTyp root 
\gENG rain 
\gSPN lluvia 
\e *tamya.n 
\c N0 
\ach tamya 
\akh tamya 
\acl tamya 
\akl tamya 
\ame tamya</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="05d40150-a2da-4ae3-82fc-9d36db3823af" ownerguid="db68aba5-9675-4de1-9557-5c8b3eef2377"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">south</AUni> -<AUni ws="es">sur</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="faae6ed0-28ce-4f77-b109-4b213c211a3e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="05d508ca-9654-4706-bfce-c9dbd3db2955" ownerguid="39da5c85-d257-42ec-8bd2-d373499bbe6a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="49e6ab83-b702-4e5a-8d5d-bd04a8f5f321" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="05deb42d-939f-4532-aef8-ef710880c23d" ownerguid="1f3519f8-d946-4857-a1fd-553d98dddf6d"> -<ExampleWords> -<AUni ws="en">absurdity, nonsense</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something someone says or does that is stupid?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="05dec5a6-b9db-45a0-9f16-79de9cda3f13"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sucsuta</AUni> -<AUni ws="qvm-x-acl">sucsuta</AUni> -<AUni ws="qvm-x-akh">suksuta</AUni> -<AUni ws="qvm-x-akl">suksuta</AUni> -<AUni ws="qvm-x-ame">suksuta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*suksuta</AUni> -<AUni ws="qvm-x-acl">*suksuta</AUni> -<AUni ws="qvm-x-akh">*suksuta</AUni> -<AUni ws="qvm-x-akl">*suksuta</AUni> -<AUni ws="qvm-x-ame">*suksuta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.744" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="10069be7-00da-4a98-bf66-887af34d3c0e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*suksuta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0605b44f-27ee-40ea-865d-9a58a05cba7b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2ab15785-a7f4-4e39-8995-b9cddf72a64c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *suksuta 
\entryTyp root 
\gENG 
\gSPN delirar 
\e *suksuta 
\c V1 
\ach sucsuta 
\akh suksuta 
\acl sucsuta 
\akl suksuta 
\ame suksuta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="05ded765-2e82-4ad0-a986-c8e5d1d4a941"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">palitilla</AUni> -<AUni ws="qvm-x-acl">palitilla</AUni> -<AUni ws="qvm-x-akh">palitilla</AUni> -<AUni ws="qvm-x-akl">palitilla</AUni> -<AUni ws="qvm-x-ame">palitilla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+paletilla.1</AUni> -<AUni ws="qvm-x-acl">+paletilla.1</AUni> -<AUni ws="qvm-x-akh">+paletilla.1</AUni> -<AUni ws="qvm-x-akl">+paletilla.1</AUni> -<AUni ws="qvm-x-ame">+paletilla.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.669" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="44867b2f-c33d-4ecb-a95a-3efb356ce1ae" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+paletilla.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d0b93abd-4f3b-449a-a3d6-f96987968d33" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c365d6a5-a1b3-4ae2-a9f6-8b795b58182b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +paletilla.1 
\entryTyp root 
\gENG 
\gSPN 
\e +paletilla.1 
\c N0 
\ach palitilla 
\akh palitilla 
\acl palitilla 
\akl palitilla 
\ame palitilla 
\i NUM 6.19 Nircunami calduypa yanushga carnipa palitillanta, canastapita levadüraynag juc tantata y levadüraynag lapsha tantatapis cüraga macyanga rutucushga nazareo runata.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="05df9d88-ed63-4d57-b878-3b80fad3f6d6" ownerguid="0de7ba3e-5e24-4c00-b5da-8c6a05523a2b"> -<Form> -<AUni ws="qvm-x-ach">tanta</AUni> -<AUni ws="qvm-x-acl">tanta</AUni> -<AUni ws="qvm-x-akh">tanta</AUni> -<AUni ws="qvm-x-akl">tanta</AUni> -<AUni ws="qvm-x-ame">tanta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="05e1979f-40c1-444a-95ac-97e29d20c0a4" ownerguid="d024e342-8501-467b-89a8-cc86173c0060"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">let's.see/careful</AUni> -<AUni ws="es">a.ver/cuidado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7e5fb9ac-e1b1-43a3-838b-fa9812e11eb3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="05e20a72-9496-4bba-8097-5605692e83a1" ownerguid="b2fd2d29-1389-4114-91a8-15b8d9742794"> -<Abbreviation> -<AUni ws="en">9.6.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.720" /> -<DateModified val="2022-9-23 16:55:8.720" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating the topic that is being talked about.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89D Specification</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Limitation of topic</AUni> -</Name> -<Questions> -<objsur guid="d391410c-4496-4c32-b855-37924a1bfb78" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="1b4f987d-3eaa-46dd-95ee-e0cb1f30cfbb" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="05e80eb1-4b86-4dc4-86b7-9ec01d336626" ownerguid="ecce310f-de4b-43f0-8ed6-c18b70575b7a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="LexExampleSentence" guid="05e9865f-08b5-460c-8ef8-922c8efe8e72" ownerguid="3e46bb5e-d14e-4712-a3df-84c347f726bf"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2KI 22.14 Huldaga runanwan targan Jerusalén marca cuchun mushog barriuchömi.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="05e9ce30-3079-4519-8928-fb3c81996a28"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guepchi</AUni> -<AUni ws="qvm-x-acl">guepchi; guepche</AUni> -<AUni ws="qvm-x-akh">qepchi</AUni> -<AUni ws="qvm-x-akl">qepchi; qepche</AUni> -<AUni ws="qvm-x-ame">qipchi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qiptri</AUni> -<AUni ws="qvm-x-acl">*qiptri</AUni> -<AUni ws="qvm-x-akh">*qiptri</AUni> -<AUni ws="qvm-x-akl">*qiptri</AUni> -<AUni ws="qvm-x-ame">*qiptri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.201" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7fa3ad5c-81ed-44cd-90d8-5022ffbda8bd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qiptri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b339f080-edaa-4b3f-bdf4-c960ee9e7d98" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c4a3e629-9a31-43fd-931c-48d9237c7581" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qiptri 
\entryTyp root 
\gENG squish 
\gSPN aplastar 
\e *qiptri 
\c V2 
\mp +FinalI 
\ach guepchi 
\akh qepchi 
\acl guepchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl guepche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qepchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qepche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qipchi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="05eca2c5-c92e-4558-85f7-4b21d185f09b" ownerguid="aa0f165d-3013-4a0c-b68c-14ea317013f9"> -<ExampleWords> -<AUni ws="en">music, notation, key, staff, bar, note, quarter note, half note, whole note, sharp, flat, scale</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the symbols used to write music?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="05edcf56-f53c-4680-b355-5abaf1fb33e3" ownerguid="3f4c559f-ab4f-411f-a23b-d2396c977005"> -<ExampleWords> -<AUni ws="en">unclear, not clear, faint, blurred, blur, blurry, barely discernible, dim, inconspicuous, indistinct, obscure, unapparent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that cannot be easily seen?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="05eff8ab-76c0-4f38-926b-6bdb4011aa14" ownerguid="c52079c2-5ebf-4fd5-b9ef-6a21c492700f"> -<Form> -<AUni ws="qvm-x-ach">orgullösu</AUni> -<AUni ws="qvm-x-acl">orgullösu; orgullösu; orgullöso</AUni> -<AUni ws="qvm-x-akh">orgullösu</AUni> -<AUni ws="qvm-x-akl">orgullösu; orgullösu; orgullöso</AUni> -<AUni ws="qvm-x-ame">orgullösu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="05f0dac1-18c6-4624-9528-acaced60211a" ownerguid="eb00b4c2-5b87-4ef8-9548-800fc5c9b524"> -<ExampleWords> -<AUni ws="en">breakages, damaged goods</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to something that has been damaged?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="05f434bb-4b67-4109-a61a-1a4d503130d2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">to:nu</AUni> -<AUni ws="qvm-x-acl">to:nu; to:nu; to:no</AUni> -<AUni ws="qvm-x-akh">to:nu</AUni> -<AUni ws="qvm-x-akl">to:nu; to:nu; to:no</AUni> -<AUni ws="qvm-x-ame">to:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tono</AUni> -<AUni ws="qvm-x-acl">+tono</AUni> -<AUni ws="qvm-x-akh">+tono</AUni> -<AUni ws="qvm-x-akl">+tono</AUni> -<AUni ws="qvm-x-ame">+tono</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.944" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f7fa8759-71e9-4b6a-bd88-4b2524d04cc0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tono</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="616d478b-5589-43d3-8765-b756a1557870" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="07046047-adde-4d31-bf89-1ceec92bb562" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tono 
\entryTyp root 
\gENG 
\gSPN 
\e +tono 
\c N0 
\ach to:nu 
\akh to:nu 
\acl to:nu / _# 
\acl to:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl to:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl to:nu / _# 
\akl to:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl to:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame to:nu 
\i Num 10.7 Runacuna juntacänalanpag captenga cornëtata juc tönuta tucatsinqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="05f63c6f-16b8-43c8-bd2b-bcb8b1196503" ownerguid="dd12ac0f-55cc-4c79-a50c-d23cc7ea60b3"> -<ExampleWords> -<AUni ws="en">bathe, take a bath, take a shower, wash up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to refer to the action of taking a bath?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="05f95abb-163a-4927-83c5-8c81ef7b769c" ownerguid="df9ee372-e92e-4f73-aac5-d36908497698"> -<Abbreviation> -<AUni ws="en">3.2.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that the speaker thinks that something tends to be a certain way.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Tendency</AUni> -</Name> -<Questions> -<objsur guid="becd540e-9398-4235-a1b9-dc1445f672d0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="05fa05a2-d3fe-41a5-9e0c-9ce7f173f93b" ownerguid="14a32765-81b0-411e-89fa-91e092a70818"> -<ExampleWords> -<AUni ws="en">call, holler at, yell to, yell at, get someone's attention</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to calling someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="05fa9ba7-2814-49ee-a6eb-f1d664cba455" ownerguid="f0fb7da6-1307-40cf-910d-2a7a279934ed"> -<Form> -<AUni ws="qvm-x-ach">shenga</AUni> -<AUni ws="qvm-x-acl">shenga</AUni> -<AUni ws="qvm-x-akh">shenqa</AUni> -<AUni ws="qvm-x-akl">shenqa</AUni> -<AUni ws="qvm-x-ame">shinqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="05fbc3bf-c875-4719-89ca-09e922d850bd" ownerguid="16d2c60a-52d7-4ec5-a5b1-c559dc078bf3"> -<ExampleWords> -<AUni ws="en">police, police officer, policeman, police force, chief of police, posse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the police?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="0601bee1-19ac-4ec2-82a1-31fac4cc3ccf" ownerguid="6a0d81eb-93c1-406d-8b29-04f710ef5eed"> -<Form> -<AUni ws="qvm-x-ach">yupay</AUni> -<AUni ws="qvm-x-acl">yupay</AUni> -<AUni ws="qvm-x-akh">yupay</AUni> -<AUni ws="qvm-x-akl">yupay</AUni> -<AUni ws="qvm-x-ame">yupay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="0603c405-3d02-40c2-8da1-dc78c9d47ecf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wagtsa</AUni> -<AUni ws="qvm-x-acl">wagtsa</AUni> -<AUni ws="qvm-x-akh">waqtsa</AUni> -<AUni ws="qvm-x-akl">waqtsa</AUni> -<AUni ws="qvm-x-ame">waqtsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waqcha</AUni> -<AUni ws="qvm-x-acl">*waqcha</AUni> -<AUni ws="qvm-x-akh">*waqcha</AUni> -<AUni ws="qvm-x-akl">*waqcha</AUni> -<AUni ws="qvm-x-ame">*waqcha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.495" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a4567144-16e1-4799-b3d7-68fbefc6b4be" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waqcha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5f1fcdb2-7589-4084-b8e7-0460deac7e70" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5ad483c2-edd5-4ffd-b72c-09370a218933" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waqcha 
\entryTyp root 
\gENG separate 
\gSPN separar 
\e *waqcha 
\c V1 
\ach wagtsa 
\akh waqtsa 
\acl wagtsa 
\akl waqtsa 
\ame waqtsa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="06047fb2-763c-4eba-9cac-5a89213dc552" ownerguid="8bcc3b3d-dd0c-4838-a33a-b395f354c86f"> -<ExampleWords> -<AUni ws="en">roll, turn, rotate, spin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to rolling something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="06052694-82c0-432e-9c25-9d72e2e32bf5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chilinya; chilinya:</AUni> -<AUni ws="qvm-x-acl">chilinya; chilinya:</AUni> -<AUni ws="qvm-x-akh">chilinya; chilinya:</AUni> -<AUni ws="qvm-x-akl">chilinya; chilinya:</AUni> -<AUni ws="qvm-x-ame">chilinya; chilinya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chillinya:</AUni> -<AUni ws="qvm-x-acl">*chillinya:</AUni> -<AUni ws="qvm-x-akh">*chillinya:</AUni> -<AUni ws="qvm-x-akl">*chillinya:</AUni> -<AUni ws="qvm-x-ame">*chillinya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.305" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b1cdc8e2-8b01-4ebe-b5c3-a577470c362e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chillinya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="512b9eec-4e3d-4918-9685-3f83bfcd73bd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="90c1c53f-b530-48b2-bc18-a59cb05b5501" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chillinya: 
\entryTyp root 
\gENG 
\gSPN 
\e *chillinya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach chilinya foreshortened 
\ach chilinya: 
\akh chilinya foreshortened 
\akh chilinya: 
\acl chilinya foreshortened 
\acl chilinya: 
\akl chilinya foreshortened 
\akl chilinya: 
\ame chilinya foreshortened 
\ame chilinya: 
\i ISA 3.16 Chaquincunacho watacushgan adornuncuna chilinyänanpagmi gatswayparag purinpis.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="0605b44f-27ee-40ea-865d-9a58a05cba7b" ownerguid="05dec5a6-b9db-45a0-9f16-79de9cda3f13"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="0605f9ca-1e3b-42ad-91ba-afe046d38630" ownerguid="ecbc2581-772a-415b-bf79-7863f20fb6e2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">split</AUni> -<AUni ws="es">rajar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9896c6e8-2e7c-48d0-9f05-134f0a77332d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="06073e56-0e91-40f7-a363-2cfdf4430e52" ownerguid="c2891be6-e7d7-41d5-add0-da25e169a446"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="0609806b-2193-4a06-ab77-61c7668d05bd" ownerguid="42cc7fe5-c15d-4deb-85c2-1cadc4e18228"> -<Form> -<AUni ws="qvm-x-ach">wasarima</AUni> -<AUni ws="qvm-x-acl">wasarima</AUni> -<AUni ws="qvm-x-akh">wasarima</AUni> -<AUni ws="qvm-x-akl">wasarima</AUni> -<AUni ws="qvm-x-ame">wasarima</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="060a1762-8e0a-427b-9559-3a8a1e3ebe10" ownerguid="e9a661d2-f167-4471-8c49-1f8e27e5cd60"> -<Form> -<AUni ws="qvm-x-ach">wariwamra</AUni> -<AUni ws="qvm-x-acl">wariwamra</AUni> -<AUni ws="qvm-x-akh">wariwamra</AUni> -<AUni ws="qvm-x-akl">wariwamra</AUni> -<AUni ws="qvm-x-ame">wariwamra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="060a83e1-24db-44cf-b25d-1822d2732a01" ownerguid="01c0fabf-e23c-49d4-8b4e-5b36ad316d50"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ku</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ku</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b952a19-fce6-44e5-ab25-c091ef27f843" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="060aa625-4c3a-412a-97ec-2a2e0be8711b" ownerguid="999581c4-1611-4acb-ae1b-5e6c1dfe6f0c"> -<ExampleWords> -<AUni ws="en">heaven, space, outer space, ether, void, solar system</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used to refer to the place or area beyond the sky?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="060efb5b-4847-4ae5-b1d3-ba93468a0b64" ownerguid="18c1f944-eaf0-4e7e-8799-463da831e6f0"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ya</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ya</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ya</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ya</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ya</Run> -</AStr> -</Form> -<Morph> -<objsur guid="0266a2a0-8dee-41c8-9584-efdc790cb2f2" t="r" /> -</Morph> -</rt> -<rt class="MoStemMsa" guid="06130dbf-3d25-4d94-8b85-fddfe83aedba" ownerguid="3378188d-6eed-4c37-8962-7e6c5f2b95bb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="0614e7cf-440c-4ee6-81af-3175b0e00b77" ownerguid="9e940a56-a94f-49b1-a795-d8a78b83d26b"> -<Form> -<AUni ws="qvm-x-ach">insectu; insecto</AUni> -<AUni ws="qvm-x-acl">insectu; insectu; insecto</AUni> -<AUni ws="qvm-x-akh">insectu; insecto</AUni> -<AUni ws="qvm-x-akl">insectu; insectu; insecto</AUni> -<AUni ws="qvm-x-ame">insectu; insecto</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="061749a8-e28a-461c-bf2d-052ab3e157d5" ownerguid="a4b03891-c2df-4d72-bbdc-13bc8d4eceba"> -<Abbreviation> -<AUni ws="en">8.5.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to an interval or space between things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Interval, space</AUni> -</Name> -<OcmCodes> -<Uni>209 Proxemics</Uni> -</OcmCodes> -<Questions> -<objsur guid="691b561a-dd4f-49c1-a7dd-1c96a6abec04" t="o" /> -<objsur guid="de6f243f-e55f-4077-a95b-20376a9e63ff" t="o" /> -<objsur guid="e4be87b8-bdb9-4748-b5d0-a3df839a381d" t="o" /> -<objsur guid="dc021866-01d1-4632-b0bf-78e53e5d3099" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="06186903-b34b-4504-b65b-c33af551cdab"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">mikuman</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="0618b32f-755c-417d-bbf8-2e8104f74e65"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">balay</AUni> -<AUni ws="qvm-x-acl">balay</AUni> -<AUni ws="qvm-x-akh">balay</AUni> -<AUni ws="qvm-x-akl">balay</AUni> -<AUni ws="qvm-x-ame">balay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+balay</AUni> -<AUni ws="qvm-x-acl">+balay</AUni> -<AUni ws="qvm-x-akh">+balay</AUni> -<AUni ws="qvm-x-akl">+balay</AUni> -<AUni ws="qvm-x-ame">+balay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.939" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9c8dbd05-3e9c-4864-a366-d6c1de042404" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+balay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="97650a78-f3cb-4331-add6-bd11ef9e5b90" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5ccba663-398a-452b-9def-47049e4befcc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +balay 
\entryTyp root 
\gENG 
\gSPN 
\e +balay 
\c N0 
\mp +FinalC 
\ach balay 
\akh balay 
\acl balay 
\akl balay 
\ame balay</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="061a2768-3539-4e25-8241-585473ea92a3" ownerguid="cee30194-bacc-42d3-af9e-b5f97152781c"> -<Form> -<AUni ws="qvm-x-ach">derecha</AUni> -<AUni ws="qvm-x-acl">derecha</AUni> -<AUni ws="qvm-x-akh">derecha</AUni> -<AUni ws="qvm-x-akl">derecha</AUni> -<AUni ws="qvm-x-ame">derecha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="061e877e-e4a7-43c0-bc94-8066d0ab054c" ownerguid="e5699be9-4b51-4496-9ac1-1f275082d17e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="061fa6a9-e854-40a5-874a-e90ccd7dea8f" ownerguid="d31534a5-2b42-4ca4-94c0-b9fe2c689586"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="061ff6e3-9dc9-470a-85e6-9c8ed8ad9c3d" ownerguid="63c69d11-1101-4870-aeb8-43ee364381b0"> -<ExampleWords> -<AUni ws="en">(lightning) strike, be struck by lightning, flash (of lightning), streak (of lightning), light up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What does lightning do?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0621de40-b91e-4036-a210-9544fa697411" ownerguid="27eb7861-04ed-42d1-b5e7-8a4c21fd798f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="0622d3f7-1ab2-482b-9f9c-9c101cd35182" ownerguid="14ad95ad-50fc-450f-b44d-4273df0b1e8b"> -<Abbreviation> -<AUni ws="en">8.4.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.640" /> -<DateModified val="2022-9-23 16:55:8.640" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to seasons of the year that are related to the time of year, the weather, or times of cultivation.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Season</AUni> -</Name> -<Questions> -<objsur guid="79571391-7940-4524-9425-acd10c758e92" t="o" /> -<objsur guid="02a4d18a-ca1f-494d-ae42-802d418a21c8" t="o" /> -<objsur guid="3ed8a812-ee3d-45b8-b45c-d51bf0f24b44" t="o" /> -<objsur guid="35953982-46dd-44c8-b697-ec76b4ba62f3" t="o" /> -<objsur guid="5f48c79e-2c73-48a2-9683-2d06b8371db1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="0623a5c0-d0dd-4c0c-8f61-fe7192aa08b0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sema:na</AUni> -<AUni ws="qvm-x-acl">sema:na</AUni> -<AUni ws="qvm-x-akh">sema:na</AUni> -<AUni ws="qvm-x-akl">sema:na</AUni> -<AUni ws="qvm-x-ame">sema:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+semana.v</AUni> -<AUni ws="qvm-x-acl">+semana.v</AUni> -<AUni ws="qvm-x-akh">+semana.v</AUni> -<AUni ws="qvm-x-akl">+semana.v</AUni> -<AUni ws="qvm-x-ame">+semana.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.490" /> -<DateModified val="2022-10-10 21:18:47.203" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="83ac8691-a047-4573-9dcd-cd5f3efeed23" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+semana.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7da8bbf0-483c-49b3-9b14-b611d143fe91" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e1bd36d4-6be2-449f-9980-8cc8828a6f2c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +semana.v 
\entryTyp root 
\gENG 
\gSPN 
\e +semana.v 
\c V1 
\ach sema:na 
\akh sema:na 
\acl sema:na 
\akl sema:na 
\ame sema:na</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="06258746-3c70-4918-9a73-05cd0110db49" ownerguid="8436e8de-22ec-4c80-a374-b52b5ca21c7a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 1.1 Rey David auquinna carmi mayjina pituptinpis mana goñurergantsu.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="06275a05-9e2b-47e2-a3f2-3e5c67393660" ownerguid="e835155c-8c66-43d8-b109-188a02dfa990"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hole</AUni> -<AUni ws="es">poso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="57fd583d-878e-4e7c-85d8-956d9cd8df93" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="0629afb8-ab1b-4cac-87f9-af491ab37914" ownerguid="60316512-ccfc-44b5-bde5-9c327a76895b"> -<Form> -<AUni ws="qvm-x-ach">turcash</AUni> -<AUni ws="qvm-x-acl">turcash</AUni> -<AUni ws="qvm-x-akh">turkash</AUni> -<AUni ws="qvm-x-akl">turkash</AUni> -<AUni ws="qvm-x-ame">turkash</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="062aa67a-f10e-4af3-ac48-481e681e8813" ownerguid="36719ebe-01da-4021-9132-3f5cf745f696"> -<Form> -<AUni ws="qvm-x-ach">curur</AUni> -<AUni ws="qvm-x-acl">curur</AUni> -<AUni ws="qvm-x-akh">kurur</AUni> -<AUni ws="qvm-x-akl">kurur</AUni> -<AUni ws="qvm-x-ame">kurur</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="06327adc-9fd2-4683-a5b7-4d7d4d802bdb" ownerguid="95315cd7-fc3b-4467-af09-705d1c964552"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="06341e45-c407-49d0-98d8-74ecc303fb02" ownerguid="675d67bb-da64-456e-8825-bdf074bb82be"> -<Abbreviation> -<AUni ws="en">4.1.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to ending a relationship.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">End a relationship</AUni> -</Name> -<Questions> -<objsur guid="7ca0d0f3-390f-4d7a-ab48-ef7cc8434608" t="o" /> -<objsur guid="6498f782-6f96-4dd7-bded-08c939cc0880" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="06373a86-4028-42d6-8365-dfeb89992f6b" ownerguid="f6deea64-e38a-4698-8100-d5278c3a304e"> -<Form> -<AUni ws="qvm-x-ach">ni</AUni> -<AUni ws="qvm-x-acl">ni; ne</AUni> -<AUni ws="qvm-x-akh">ni</AUni> -<AUni ws="qvm-x-akl">ni; ne</AUni> -<AUni ws="qvm-x-ame">ni</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="063936e1-be14-4b2a-8019-31d194707cf2" ownerguid="7a043f3c-8587-4c52-82ac-e90b2d9bc0f4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="063aa885-b2a1-4938-a4de-33aaa688c7c9" ownerguid="2c0c9b51-b081-4f1c-b8a8-8c474764c906"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7a577e72-7de9-43ea-9cb6-b679c52fe556" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="063e0810-8e49-44ef-aa8f-bb9e63bb66dd" ownerguid="67931f1c-9a0c-4d18-9762-e553c132256c"> -<Abbreviation> -<AUni ws="en">6.8.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to buying something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>57O Sell, Buy, Price</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Buy</AUni> -</Name> -<OcmCodes> -<Uni>432 Buying and Selling</Uni> -</OcmCodes> -<Questions> -<objsur guid="a7e0316c-5926-45d6-a690-8de59f1cebd6" t="o" /> -<objsur guid="6c5864ce-bd4c-40b8-b025-3eaf7f4c0ebf" t="o" /> -<objsur guid="3d90b57a-24b6-439c-b475-8e6bd78178b8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="PhEnvironment" guid="063e4b2d-a4d5-40c6-b955-bf07f3c888ec" ownerguid="be765e3e-ea5e-11de-9d42-0013722f8dec"> -<Name> -<AUni ws="en">before -pti, ADVDS</AUni> -</Name> -<StringRepresentation> -<Str> -<Run underline="none" ws="en">/_ pti</Run> -</Str> -</StringRepresentation> -</rt> -<rt class="CmDomainQ" guid="063f4bcf-06ff-4b75-8229-77afa7e24c36" ownerguid="1d34380d-61bf-4247-9145-ba318a14a97e"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">a <piece> of bread</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">piece, bit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a piece of something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0642854e-0a08-4ef1-af00-412fa6b30bca" ownerguid="2ea679e8-3377-4877-876c-9db06ea203b5"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="0643331d-4d96-419b-80de-4253a6ae6fcd" ownerguid="a5206e1d-e5aa-414e-b96a-3bb9681a4866"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dill</AUni> -<AUni ws="es">eneldo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4e1bbe62-dc94-4f7f-8b0f-35933e5c9702" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="0644f4da-c9fe-4239-bbe5-6efc85f98968" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<Abbreviation> -<AUni ws="en">6.6.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to working with land.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Working with land</AUni> -</Name> -<OcmCodes> -<Uni>311 Land Use; 332 Earth Moving</Uni> -</OcmCodes> -<Questions> -<objsur guid="26266f06-b9f6-4793-8351-876028722d27" t="o" /> -<objsur guid="1600e6fb-3f39-4089-92f1-ee50bb163e08" t="o" /> -<objsur guid="cff80d8f-009a-439e-81f2-43648b150cfb" t="o" /> -<objsur guid="122aab58-c0b6-4eec-9e24-32247913779d" t="o" /> -<objsur guid="97fdc440-edf9-4da6-97ef-6d8cc308e993" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="06476485-6c1d-4803-aac3-c95cadf8cc42" ownerguid="0e59680e-7850-488f-943f-d0a8d5659349"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yapa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yapa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yapa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yapa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yapa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b97551e3-69a6-43ea-ae10-d470185d60aa" t="r" /> -</Morph> -<Msa> -<objsur guid="539e4c13-389e-4a99-8b99-689b17d59a65" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="0649cfb4-340e-47cd-be28-44edf2eac7c4" ownerguid="5627904e-59c7-4dd5-aeb5-c6fe0c0a0571"> -<ExampleWords> -<AUni ws="en">economize, tighten your belt, budget, scrimp and save, on a shoestring, skimp by on, scrape by</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to spending less money?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="064ec164-cf8e-43b7-9c3e-6d770a133792" ownerguid="f9308afb-73bc-4444-a6bd-1a762dd98cdd"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">AMO 7.2 Mana perdonamaptiquega Jacobpita miragcuna walcala caglanpis lapanchari ushacanga.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="064f15bd-11f9-413a-938d-9c59816fd5e3" ownerguid="9483f1c8-e35e-444e-954d-347735049bd3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lake</AUni> -<AUni ws="es">lago</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e5868556-ad77-45c9-9397-d29b0fb61f29" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="064f4af5-bff4-443e-a3d9-fce796d4eac2" ownerguid="fa36de8f-9f3a-47e7-8fea-07834ebcecd8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="06504b46-803f-4975-94f5-13ee474b0eef" ownerguid="dbf05a52-ffa6-4413-9ee8-c5be0da0e3d0"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">g</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">g</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">q</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">q</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">q</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2077e726-cf37-4913-b54c-2d034d4883b4" t="r" /> -</Morph> -<Msa> -<objsur guid="cc4f521e-5e38-4217-aa16-46da99d423ec" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="0650c70d-74de-4f9a-b9cf-9abb63d68428" ownerguid="2e97b83d-1152-473f-9cbe-347f0655041a"> -<ExampleWords> -<AUni ws="en">hear</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What do the ears do?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="06521b8e-554f-4dea-a1e8-57ceea4826ef" ownerguid="7d91c78d-7d8a-489a-861b-45f523787f40"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="0653d35f-2f5a-47dc-9436-405ac57cd6b0" ownerguid="e804c942-cc17-42fc-b2f7-f8f06af39479"> -<Form> -<AUni ws="qvm-x-ach">togri</AUni> -<AUni ws="qvm-x-acl">togri; togre</AUni> -<AUni ws="qvm-x-akh">toqri</AUni> -<AUni ws="qvm-x-akl">toqri; toqre</AUni> -<AUni ws="qvm-x-ame">tuqri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="0654c2f3-65f7-45be-a163-dc3d387efe07" ownerguid="6c9e1060-2c61-44e1-9e2f-272dcfa04ebf"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="0655d4c4-dcff-4fca-931a-8964415a96b4" ownerguid="f3231f43-90e3-42b2-ab13-04792f782b7d"> -<Form> -<AUni ws="qvm-x-ach">lapa</AUni> -<AUni ws="qvm-x-acl">lapa</AUni> -<AUni ws="qvm-x-akh">lapa</AUni> -<AUni ws="qvm-x-akl">lapa</AUni> -<AUni ws="qvm-x-ame">lapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="0656cd5e-641f-46f3-bcad-6f643727a344" ownerguid="bbc5b3a2-4c6e-4d07-849b-4d616615a794"> -<Abbreviation> -<AUni ws="en">8.4.6.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that something happened recently--a short time before now.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Recently</AUni> -</Name> -<Questions> -<objsur guid="e81554e0-3a11-4576-a318-08a3141579bd" t="o" /> -<objsur guid="d1200e73-8444-46f8-b339-b37f3925d89d" t="o" /> -<objsur guid="16c9de61-41a2-4e72-b452-143f699286d2" t="o" /> -<objsur guid="650ca251-c706-438a-ad36-080ba59efd2d" t="o" /> -<objsur guid="35dce600-289a-454e-b3a4-859e301c5793" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="0656f6a7-9a88-4c03-a8ab-ace8c0f52ebf" ownerguid="e7c58c11-2911-446a-96b0-2113247f3792"> -<Abbreviation> -<AUni ws="en">4.1.9.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to an illegitimate child.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Illegitimate child</AUni> -</Name> -<OcmCodes> -<Uni>848 Illegitimacy</Uni> -</OcmCodes> -<Questions> -<objsur guid="b09d56fb-12ff-4102-9739-f37b1faeda12" t="o" /> -<objsur guid="3c6f1958-0d22-4df1-b6de-4181faa74e7d" t="o" /> -<objsur guid="36624920-468d-4bed-8af1-5747231659d0" t="o" /> -<objsur guid="f9d540c1-1e05-4ba0-979e-d320394d7f89" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="065b0866-4871-4d85-b736-a0e657acca01" ownerguid="eed0654e-45ce-4ef0-b34f-a2e02cf8b94c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="065ee42e-c59e-4559-b009-2b76742c836a" ownerguid="11773808-47d6-42f7-923d-16a368585d22"> -<Form> -<AUni ws="qvm-x-ach">fïla</AUni> -<AUni ws="qvm-x-acl">fïla</AUni> -<AUni ws="qvm-x-akh">fïla</AUni> -<AUni ws="qvm-x-akl">fïla</AUni> -<AUni ws="qvm-x-ame">fïla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="0662c9a0-1e3d-443d-8dd0-c596f5bc8764" ownerguid="61310595-90e0-4e8e-84d1-c6f39b1a65ab"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -<Sense> -<objsur guid="db6117c5-121c-433a-a891-e69950f55761" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="0666433e-035d-4dcf-a868-90dbfa536f08" ownerguid="d9fa5136-2134-4c33-9d60-36c3b92641cf" /> -<rt class="WfiMorphBundle" guid="0668aafc-54f0-4bba-8d71-238b984655df" ownerguid="ef04e630-fd6e-4db8-aed8-e744a4b9f144"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">r</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">r</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">r</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">r</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">r</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a96fae79-db91-498f-a3f4-4aaeff3f9499" t="r" /> -</Morph> -<Msa> -<objsur guid="973e08a0-60b3-4ff1-9973-ac70ea0a16bc" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="066a2a9f-b0d8-4914-8cb4-c80d35888bed" ownerguid="99861dcb-c6ca-4e50-a19a-efadbb10c2cf"> -<ExampleWords> -<AUni ws="en">old, older, oldest, dated, late</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is old?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="066d3aae-f173-4156-b67b-db9f0fc17d45" ownerguid="7648040b-0aa5-4d9a-8f13-ffd066b81602"> -<ExampleWords> -<AUni ws="en">longer, longest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to being longer than another thing?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="06700833-ca70-4c41-a4f3-a6bcbe7c1099"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">viaja</AUni> -<AUni ws="qvm-x-acl">viaja</AUni> -<AUni ws="qvm-x-akh">viaja</AUni> -<AUni ws="qvm-x-akl">viaja</AUni> -<AUni ws="qvm-x-ame">viaja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+viajar</AUni> -<AUni ws="qvm-x-acl">+viajar</AUni> -<AUni ws="qvm-x-akh">+viajar</AUni> -<AUni ws="qvm-x-akl">+viajar</AUni> -<AUni ws="qvm-x-ame">+viajar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.383" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="78257b60-493e-48d3-972f-5640f3c68353" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+viajar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="38c63a78-ec6f-423a-bcb1-e8349c2beed4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9693e88f-7198-4b43-850e-bf0aa36f12c9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +viajar 
\entryTyp root 
\gENG travel 
\gSPN viajar 
\e +viajar 
\c V1 
\ach viaja 
\akh viaja 
\acl viaja 
\akl viaja 
\ame viaja 
\i 1KI 19.7 Caruragmi viajanayquipag caycan. Aywaptiqui vëta mana tsarishunayquipag micucurcuy.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="06709d5c-abbd-4c9d-8d08-2a72df87f6b2" ownerguid="998d216b-33ee-495a-8fa3-a58161623411"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stewed.grain</AUni> -<AUni ws="es">mote</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cb7c0a50-8fa2-49f2-87b9-96803f3b7cec" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="067a0610-1b9c-404c-9ed3-3ed4e773891a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ga:na</AUni> -<AUni ws="qvm-x-acl">ga:na</AUni> -<AUni ws="qvm-x-akh">ga:na</AUni> -<AUni ws="qvm-x-akl">ga:na</AUni> -<AUni ws="qvm-x-ame">ga:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gana</AUni> -<AUni ws="qvm-x-acl">+gana</AUni> -<AUni ws="qvm-x-akh">+gana</AUni> -<AUni ws="qvm-x-akl">+gana</AUni> -<AUni ws="qvm-x-ame">+gana</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.597" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="92c207a8-abb9-4cef-8ef6-ba3138ebde74" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gana</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b155b1db-19d3-4f06-af74-841c9dd46edf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d7042f12-7d43-4ec9-ac0c-9173c2fbb1dc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gana 
\entryTyp root 
\gENG gain 
\gSPN gana 
\e +gana 
\c N0 
\ach ga:na 
\akh ga:na 
\acl ga:na 
\akl ga:na 
\ame ga:na 
\i 2CO 6.2 Gänächo kashqä hörami manakamashqaykita mayashkä. 
\mcc +gana / _ 1P.V</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="067af888-176a-4e7d-aba8-e592fbbeb6f1" ownerguid="bc402db4-d50d-4462-8b6b-c4ef65c780a8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="067fd45c-f7ce-490b-9de8-882e10e538a2" ownerguid="8f0b27ca-8223-4e67-8600-7096fd25be52"> -<Form> -<AUni ws="qvm-x-ach">puchpus</AUni> -<AUni ws="qvm-x-acl">puchpus</AUni> -<AUni ws="qvm-x-akh">puchpus</AUni> -<AUni ws="qvm-x-akl">puchpus</AUni> -<AUni ws="qvm-x-ame">puchpus</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="0681100c-183d-4cdd-8c8c-3691c4a79b34" ownerguid="2b86891f-52d7-4659-a39e-d75f8322e852"> -<Form> -<AUni ws="qvm-x-ach">canala</AUni> -<AUni ws="qvm-x-acl">canala</AUni> -<AUni ws="qvm-x-akh">kanala</AUni> -<AUni ws="qvm-x-akl">kanala</AUni> -<AUni ws="qvm-x-ame">kanala</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="06828be2-cab0-4aa2-bcdc-7345eeb5162d" ownerguid="b044e890-ce30-455c-aede-7e9d5569396e"> -<ExampleWords> -<AUni ws="en">star, starry, stellar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to refer to the stars?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0686dcc5-d695-485c-81ce-496fb95e1eb6" ownerguid="3fd9fd6b-5a58-4c74-a970-1036a5de58c2"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="06886708-a6db-44b9-b322-8cf0087e2e5b" ownerguid="cbc24a98-1c64-467e-98aa-251a28e4c0b8"> -<ExampleWords> -<AUni ws="en">gas, pass gas, break wind, fart</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words are used of intestinal gas?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="068a39b4-00a3-45ee-bbc1-eb6240b93f48" ownerguid="358189f8-6a0b-427a-bfde-a5f72e8f3875"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stand.out</AUni> -<AUni ws="es">parado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="682f6ac5-10c1-41ff-8519-faaf5d114484" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="068a7ef1-d170-43ca-af54-f945b3d2fb55" ownerguid="90f36f80-4da7-46a9-9c27-912cadb871d1"> -<Form> -<AUni ws="qvm-x-ach">lädu</AUni> -<AUni ws="qvm-x-acl">lädu; lädu; lädo</AUni> -<AUni ws="qvm-x-akh">lädu</AUni> -<AUni ws="qvm-x-akl">lädu; lädu; lädo</AUni> -<AUni ws="qvm-x-ame">lädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="068a97c1-05c0-418e-ade5-8e9873d1a049" ownerguid="2d0f45f3-2471-4d69-9429-76c51a12e2a8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ka</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ka</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="22806abf-f462-448a-bb3e-39bbf5d75aea" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -<Sense> -<objsur guid="909cfa11-00e3-4787-b51b-dfac729061be" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="068d0802-c08c-4b0e-9861-dc975d9235d8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ce:ra</AUni> -<AUni ws="qvm-x-acl">ce:ra</AUni> -<AUni ws="qvm-x-akh">ce:ra</AUni> -<AUni ws="qvm-x-akl">ce:ra</AUni> -<AUni ws="qvm-x-ame">ce:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cera</AUni> -<AUni ws="qvm-x-acl">+cera</AUni> -<AUni ws="qvm-x-akh">+cera</AUni> -<AUni ws="qvm-x-akl">+cera</AUni> -<AUni ws="qvm-x-ame">+cera</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.110" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="091ccac4-9fef-4633-9d7e-9c9ba9e42cac" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cera</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a4fd9ee3-efb7-44b3-91ba-3212bc1818f2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1924617f-5c7f-4b1e-8cb6-a55666815325" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cera 
\entryTyp root 
\gENG candle 
\gSPN vela 
\e +cera 
\c N0 
\ach ce:ra 
\akh ce:ra 
\acl ce:ra 
\akl ce:ra 
\ame ce:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="068d3c18-124f-4685-88e5-7431bbbfc74f" ownerguid="928741b5-bff6-4dd1-be37-ec6e7a4eb6ca"> -<ExampleWords> -<AUni ws="en">seaside, beachfront, lakeside, bordering</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something near water?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="06905a7e-47f4-4c86-afea-a4175295b566" ownerguid="6430b89c-7077-418a-a558-51f0e3f2c1a6"> -<Abbreviation> -<AUni ws="en">7.3.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.528" /> -<DateModified val="2022-9-23 16:55:8.528" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to knocking something over so that it falls, and for knocking a container over so that it spills its contents.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Knock over</AUni> -</Name> -<Questions> -<objsur guid="c1106c2b-034f-40e3-a6ec-ed7cfc623030" t="o" /> -<objsur guid="86407fb1-8871-4e3d-84de-64ad03d6a2fa" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="Segment" guid="0690a3b8-31fb-4fcb-b7a3-231c850b340c" ownerguid="ae55d49a-f4f4-4a32-a46b-9764902f0e41"> -<Analyses> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="fa7aeb71-200a-4a5d-9436-13faa1972fea" t="r" /> -<objsur guid="25651c34-3e31-419d-86b5-cda6907f0a4f" t="r" /> -<objsur guid="7a34d709-dd7d-4ac4-94e8-58e444587dd4" t="r" /> -<objsur guid="a85a5670-81ba-47b9-8443-95e8be60ebec" t="r" /> -<objsur guid="bb723df0-2b97-461e-bae3-564d9c1a0cfd" t="r" /> -<objsur guid="4fccec2d-58a4-466f-a087-a79d6bf13b57" t="r" /> -<objsur guid="6c3a760e-8f5b-495f-9b92-a80aa2b4e8f8" t="r" /> -<objsur guid="b6f85872-82e2-4115-b10c-9d4e33accf3d" t="r" /> -<objsur guid="f69934b2-1374-4eec-8857-8cde011be648" t="r" /> -<objsur guid="e4e385de-4e49-46b3-88ab-76892a760c90" t="r" /> -<objsur guid="a45d1a98-21be-467c-b7c5-26fae43480ec" t="r" /> -</Analyses> -<BeginOffset val="23" /> -</rt> -<rt class="CmDomainQ" guid="069591e4-d59c-488f-aa65-53e3ad6955a8" ownerguid="2c401e7f-6ce9-470f-b6b6-fadf7a798536"> -<ExampleWords> -<AUni ws="en">rest, take a rest, have a rest, lie down, put your feet up, relax, laze, take it easy, chill out, take a break, catch your breath, take a breather, take a respite, take a sabbatical, take it easy, unwind, take a vacation, recharge your batteries, repose, at ease, get your breath back, sit back</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to resting?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="069628ef-427e-465b-8b70-649a3b16b4e8" ownerguid="2ea38f3e-8291-447b-9649-27cabde45c12"> -<Form> -<AUni ws="qvm-x-ach">mäsu</AUni> -<AUni ws="qvm-x-acl">mäsu; mäsu; mäso</AUni> -<AUni ws="qvm-x-akh">mäsu</AUni> -<AUni ws="qvm-x-akl">mäsu; mäsu; mäso</AUni> -<AUni ws="qvm-x-ame">mäsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmPossibility" guid="06974d9a-ff86-4e1c-a3e5-7ce8c961dcb9" ownerguid="d9d55b12-ea5e-11de-95ef-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Wthr</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Weather</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="06980f1f-2d2d-48e9-b382-e0d3b4f4822b" ownerguid="6cea20b9-67a9-4e43-81b5-ac54e38743d6"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="2804db36-0bf7-411a-981c-bdad79f62672" t="o" /> -<objsur guid="1b5a921b-6313-4b24-802b-ff46263c0b85" t="o" /> -<objsur guid="ffe47176-e669-42a2-ad3e-a890d25762fc" t="o" /> -</MorphBundles> -</rt> -<rt class="CmSemanticDomain" guid="0698b0f4-0a31-4a70-9262-8d36677d8faa" ownerguid="811e8c93-d97a-4aab-bd67-268b7783ff11"> -<Abbreviation> -<AUni ws="en">6.2.4.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.426" /> -<DateModified val="2022-9-23 16:55:8.426" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to neglecting plants.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Neglect plants</AUni> -</Name> -<Questions> -<objsur guid="22d7c7c0-e4a3-463c-b84f-276b73360c2f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="069f24f8-74cf-428b-b957-d5ff380dee06" ownerguid="858af232-b570-4153-b4c0-f60930df9ced"> -<ExampleWords> -<AUni ws="en">seem, appear</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that someone seems to be doing something, or something seems to be happening?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="06a3532f-21d6-4ca5-afed-9e869636c930" ownerguid="aae402d4-9510-49dc-8001-03c0b7e8ce5d"> -<Form> -<AUni ws="qvm-x-ach">estandarti; estandarti</AUni> -<AUni ws="qvm-x-acl">estandarti; estandarti; estandarte</AUni> -<AUni ws="qvm-x-akh">estandarti; estandarti</AUni> -<AUni ws="qvm-x-akl">estandarti; estandarti; estandarte</AUni> -<AUni ws="qvm-x-ame">estandarti; estandarti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="06a44085-cbcf-4217-ae5e-56c51899c99a" ownerguid="bfeba2a4-4479-49e9-838c-3baa2ad0fcae"> -<Abbreviation> -<AUni ws="en">8.3.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.619" /> -<DateModified val="2022-9-23 16:55:8.619" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is common.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Common</AUni> -</Name> -<Questions> -<objsur guid="ca9c4258-f18c-4833-aa54-4b1ff841d64d" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="f6896060-4d5c-45e2-b89a-f9f6328a479c" t="o" /> -<objsur guid="b0156a7c-928a-4cc8-a021-4af4dc74fead" t="o" /> -<objsur guid="2cccfd92-de45-42c2-83f7-1e0ef7dfddc1" t="o" /> -<objsur guid="6a6f0748-a6e9-4d64-b14e-543bb6ec2ec8" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="06a6500b-ddf6-4a47-9ea5-81023530ff26" ownerguid="e2cae91c-86f4-4a5a-87c5-058211ec9e35"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sent.one</AUni> -<AUni ws="es">mensejero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4e71353b-9b5c-4eb3-beeb-0528e8b7f12f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="06a85def-ee0a-4d63-bfa8-62a21bcf06b0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shawa</AUni> -<AUni ws="qvm-x-acl">shawa</AUni> -<AUni ws="qvm-x-akh">shawa</AUni> -<AUni ws="qvm-x-akl">shawa</AUni> -<AUni ws="qvm-x-ame">shawa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shawa.v</AUni> -<AUni ws="qvm-x-acl">*shawa.v</AUni> -<AUni ws="qvm-x-akh">*shawa.v</AUni> -<AUni ws="qvm-x-akl">*shawa.v</AUni> -<AUni ws="qvm-x-ame">*shawa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.561" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e3f19b92-a6a3-413c-9615-79d07e8ed24c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shawa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c8acadff-590d-4f6a-81c5-39f5804537de" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="84c11985-8932-4ef9-a573-ebf5dda15485" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shawa.v 
\entryTyp root 
\gENG hang 
\gSPN colgar 
\e *shawa.v 
\c V1 
\ach shawa 
\akh shawa 
\acl shawa 
\akl shawa 
\ame shawa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="06a89652-70e0-40ac-b929-ed42f011c9fc" ownerguid="8d47c9ec-80c4-4309-9848-c453dcd71182"> -<Abbreviation> -<AUni ws="en">1.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.978" /> -<DateModified val="2022-9-23 16:55:7.978" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to dead things--things that were alive before, but aren't now.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Dead things</AUni> -</Name> -<Questions> -<objsur guid="6078bc0a-fdca-4a13-bfe4-7afad624e06d" t="o" /> -<objsur guid="b331aa41-399a-43de-8a8f-d91e34c4499c" t="o" /> -<objsur guid="fa97397b-a295-48f5-9b2f-378364288f61" t="o" /> -<objsur guid="576bc709-0eef-4380-9f60-8a389aa5dd59" t="o" /> -<objsur guid="db3331fa-ee85-4d53-a13b-ff7c00f91305" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="1c3c8af0-56b9-4617-862e-21f39b388606" t="r" /> -<objsur guid="50db27b5-89eb-4ffb-af82-566f51c8ec0b" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="06ac439b-0455-401c-bf4a-783531308dc3" ownerguid="97c1807c-0edd-45ab-afc3-a9f0e382db21"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">grasp</AUni> -<AUni ws="es">empuñar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f8774755-8525-4351-ab80-92cb787a1b67" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="06ac577a-4d61-4898-ac9d-e3f18b7504af" ownerguid="3dd684e6-75d9-41f4-aaa3-fb0cb3c7d400"> -<Abbreviation> -<AUni ws="en">4.4.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to saving someone or something from trouble (something bad is happening) or danger (something bad will happen).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>21C Safe, Free from Danger; 21D Become Safe, Free from Danger; 21E Cause To Be Safe, Free from Danger</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Save from trouble</AUni> -</Name> -<Questions> -<objsur guid="6a024e09-9189-456f-9b0a-a929eccb4a84" t="o" /> -<objsur guid="e798454c-b818-4360-a83c-82b72bb44da8" t="o" /> -<objsur guid="4be1f92f-0e42-49b5-8799-2575ac1aeecc" t="o" /> -<objsur guid="139cac3e-97c9-4cf1-89f9-97724b6a9728" t="o" /> -<objsur guid="2ba41241-db0f-48d0-9ac1-0a1f5bb30637" t="o" /> -<objsur guid="363be834-31d3-4d6f-87ae-65b2f5669eea" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="06ad8615-b0d1-4f3e-897b-e73e058104e1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">laya</AUni> -<AUni ws="qvm-x-acl">laya</AUni> -<AUni ws="qvm-x-akh">laya</AUni> -<AUni ws="qvm-x-akl">laya</AUni> -<AUni ws="qvm-x-ame">laya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llaya.n</AUni> -<AUni ws="qvm-x-acl">*llaya.n</AUni> -<AUni ws="qvm-x-akh">*llaya.n</AUni> -<AUni ws="qvm-x-akl">*llaya.n</AUni> -<AUni ws="qvm-x-ame">*llaya.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.184" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a5c70540-e29c-4e44-b9a0-49b84061870c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llaya.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="22b1b7aa-2451-4ca8-bedd-bea3a6ba93d4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="de3ff35c-8296-45cd-b0be-d8f6141ecffa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llaya.n 
\entryTyp root 
\gENG grass 
\gSPN cortadera 
\e *llaya.n 
\c N0 
\ach laya 
\akh laya 
\acl laya 
\akl laya 
\ame laya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="06ade770-03ce-45c3-ac0d-66e7118237f1" ownerguid="1f608e18-958e-4bb3-a977-04879fb5acd5"> -<ExampleWords> -<AUni ws="en">cannibal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to eating human flesh?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="06aecbeb-2114-40a1-b50f-4a097f63d68d" ownerguid="826fb4db-ba81-41df-b6a2-58403cc2080c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tape</AUni> -<AUni ws="es">cinta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a17cdd96-241b-4bef-8b4e-046862675a1e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="06aed952-e8b9-440b-8368-d13638326048" ownerguid="4aedd6d3-8f4b-4986-8d51-b0ace0137bf0"> -<ExampleWords> -<AUni ws="en">be happy for, rejoice with, be glad for</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling good about someone's good fortune?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="06b21955-dd00-4fa6-98c8-83e0f2ef04fd" ownerguid="99c41bb7-6f4e-4287-b39c-89538f759f29"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.rage</AUni> -<AUni ws="es">tener.cólera</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="97874183-7cf9-4454-a9a1-a633ad33d864" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="06b23bcd-69df-471a-b5a5-4ca8cab7f0d9" ownerguid="e45b8bac-9623-4f84-a113-9dec13a8db64"> -<Abbreviation> -<AUni ws="en">3.5.1.2.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that express the idea that something (said, written, thought, or made) depicts or is about a subject, or that something is logically related to some topic. Also use this domain for words that mark the topic or subject of what is being thought about, talked about, or written about. Verbs of thinking, knowing, or speaking (including other types of expression) can take a 'topic' role. We can think of a 'topic' as the main idea. Use this domain also for the important thing in a picture.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Be about, subject</AUni> -</Name> -<Questions> -<objsur guid="f7bf674c-b141-4b12-b04f-7a5c8b44877f" t="o" /> -<objsur guid="1967236e-33ac-4025-88bc-e6740719d645" t="o" /> -<objsur guid="34e3847d-f842-49f4-9966-e776bb01c56a" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="e45b8bac-9623-4f84-a113-9dec13a8db64" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="06b4828c-a386-482a-b77b-094f732eb06c" ownerguid="5491f159-cddf-4b12-9637-87c8c61d4049"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="06b4d4c4-c7c4-4f46-8b20-866109eba82e" ownerguid="0a538370-b871-4d2a-beab-b265aae9d4a1"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 4.23 Tsaynogpis shuntapäcog tarushcunata, luychucunata, corzo nishgan luychucunata y wera walpacunata, pätucunata y pavo realtapis.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="06b70dd3-13cf-4bbd-8e80-557e3ab59ed0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">talón; talon</AUni> -<AUni ws="qvm-x-acl">talón; talon</AUni> -<AUni ws="qvm-x-akh">talón; talon</AUni> -<AUni ws="qvm-x-akl">talón; talon</AUni> -<AUni ws="qvm-x-ame">talón; talon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+talón</AUni> -<AUni ws="qvm-x-acl">+talón</AUni> -<AUni ws="qvm-x-akh">+talón</AUni> -<AUni ws="qvm-x-akl">+talón</AUni> -<AUni ws="qvm-x-ame">+talón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.784" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="97bbbbfe-e9a6-438c-a239-b2403f2a5fda" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+talón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c505edce-1bd8-4201-8f8b-1b6c790bd348" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a0bd2361-4496-4cd3-a3e7-00fde61d0881" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +talón 
\entryTyp root 
\gENG heel 
\gSPN talón 
\e +talón 
\c N0 
\mp +FinalC 
\ach talón / _# 
\ach talon / ~_# 
\akh talón / _# 
\akh talon / ~_# 
\acl talón / _# 
\acl talon / ~_# 
\akl talón / _# 
\akl talon / ~_# 
\ame talón / _# 
\ame talon / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="06b883a4-8770-4ddb-a837-c6d6037f540f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">utsu</AUni> -<AUni ws="qvm-x-acl">utsu; utso</AUni> -<AUni ws="qvm-x-akh">utsu</AUni> -<AUni ws="qvm-x-akl">utsu; utso</AUni> -<AUni ws="qvm-x-ame">utsu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uchu.v</AUni> -<AUni ws="qvm-x-acl">*uchu.v</AUni> -<AUni ws="qvm-x-akh">*uchu.v</AUni> -<AUni ws="qvm-x-akl">*uchu.v</AUni> -<AUni ws="qvm-x-ame">*uchu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.200" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ba387140-3344-479d-a4f2-77f1eb1090d0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uchu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7bed5b8d-891d-4fc4-a919-0b879a17c410" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="04390bbb-c523-4ef7-aaf4-05a85694eaba" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uchu.v 
\entryTyp root 
\gENG 
\gSPN 
\e *uchu.v 
\c V2 
\ach utsu 
\akh utsu 
\acl utsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl utso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl utsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl utso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame utsu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="06bbec4a-2d37-44c2-b94b-d09830514a95" ownerguid="0343ba4e-abae-4c8f-ac32-6e0d40e3a540"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stampede</AUni> -<AUni ws="es">estampida</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7ea59dbd-69ce-416a-9b56-b3f273e01507" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="06be368c-7db5-4823-a142-6501ca835e06" ownerguid="321cf755-4f45-4291-a288-b84a4ff6650f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="4d397875-e979-4721-8beb-4379a6a44fb4" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">of.course</AUni> -<AUni ws="es">claro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fc3e74ac-587b-4abd-bfec-bdbf7b494598" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="06be473e-c2f3-45fe-8522-3a0c033b5067" ownerguid="66d8b546-92f5-4e94-b992-08be81c3d30c"> -<Abbreviation> -<AUni ws="en">7.7.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.549" /> -<DateModified val="2022-9-23 16:55:8.549" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to making a mark on something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Mark</AUni> -</Name> -<Questions> -<objsur guid="f27bb0c7-8209-4386-9e90-31f97b60e83f" t="o" /> -<objsur guid="afa9f3ca-60f9-4798-99b3-4b79e83b4b5e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="06c16d03-b99f-4ce4-a9e0-295ec28f9517" ownerguid="916d3f4f-5ab7-41c7-9d0c-d0c2879bd628"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="06c35e12-3c8f-4db7-8f59-30d283a856e8" ownerguid="e67562d2-59c9-4d2e-87e5-aa994c3b7d30"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7f11b059-1f9e-417c-a490-686c64284d4e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="06c3cd5e-ec12-4f07-a6e1-110e47c6095f" ownerguid="c8aea8b2-4088-4d20-a0d2-45c2ad974ee1"> -<ExampleWords> -<AUni ws="en">furrow, plow, incise, score, cut, seam, cut a channel, engrave, etch, bite in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to making a furrow?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="06c3e572-9b9f-4032-b763-1d21703e1c89" ownerguid="d6666db3-af56-416a-b89f-5752f6ad2422"> -<Form> -<AUni ws="qvm-x-ach">tsagu</AUni> -<AUni ws="qvm-x-acl">tsagu; tsago</AUni> -<AUni ws="qvm-x-akh">tsaqu</AUni> -<AUni ws="qvm-x-akl">tsaqu; tsaqo</AUni> -<AUni ws="qvm-x-ame">tsaqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="06c59373-ac0f-4096-8c61-a86a78a0b2c3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">inquita</AUni> -<AUni ws="qvm-x-acl">inquita</AUni> -<AUni ws="qvm-x-akh">inkita</AUni> -<AUni ws="qvm-x-akl">inkita</AUni> -<AUni ws="qvm-x-ame">inkita</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+inquietar</AUni> -<AUni ws="qvm-x-acl">+inquietar</AUni> -<AUni ws="qvm-x-akh">+inquietar</AUni> -<AUni ws="qvm-x-akl">+inquietar</AUni> -<AUni ws="qvm-x-ame">+inquietar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.840" /> -<DateModified val="2022-10-10 21:19:47.699" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1cd876e1-7549-4dae-a9c7-a713083b3754" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+inquietar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cc9e40c1-ecd6-41a1-a614-ade37c7c7f49" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="18738cd8-afda-4543-88d4-d3d903cacf3d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +inquietar 
\entryTyp root 
\gENG persuade 
\gSPN 
\e +inquietar 
\c V2 
\mp +assimilated 
\ach inquita 
\akh inkita 
\acl inquita 
\akl inkita 
\ame inkita 
\mp KQWchange</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="06c7371f-036e-4c18-b06a-5c5e615222c6" ownerguid="29a8ebbe-ebc4-4295-b6af-84331d019361"> -<ExampleWords> -<AUni ws="en">coin a term, coinage, neologism</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a new word?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="06cb054c-3e57-4e5c-8f03-c0ecbf92ae7f" ownerguid="a2ce1453-9832-447c-9481-70c9e2da4227"> -<ExampleWords> -<AUni ws="en">to water, irrigate, irrigation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to adding water to plants and fields?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="06cb2024-5f7b-467c-b32c-ef4c56030ac0" ownerguid="21167445-f1b1-49b4-b147-bc792616c432"> -<Abbreviation> -<AUni ws="en">8.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.640" /> -<DateModified val="2022-9-23 16:55:8.640" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to telling time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Telling time</AUni> -</Name> -<Questions> -<objsur guid="94cb5ccc-a2b3-4b78-b8d1-0334dc5aabd4" t="o" /> -<objsur guid="68ff1c18-e324-48ab-9e77-f067d5682548" t="o" /> -<objsur guid="5e97d5f7-90f1-4fed-9427-a34322d444b7" t="o" /> -<objsur guid="cf9ba2c9-cd2b-4718-9de7-d6c170c6e2af" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="12d752d5-53a9-46f6-9e81-3153401cc760" t="o" /> -<objsur guid="c4fdb9ce-93cc-405b-b673-4058821bf794" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="06cbebfe-f64c-4a75-91e8-842d2992d272" ownerguid="ec97ede4-0162-478e-be56-0e3f4b1f975a"> -<Form> -<AUni ws="qvm-x-ach">taugui</AUni> -<AUni ws="qvm-x-acl">taugui; taugui; taugue</AUni> -<AUni ws="qvm-x-akh">tawqi</AUni> -<AUni ws="qvm-x-akl">tawqi; tawqi; tawqe</AUni> -<AUni ws="qvm-x-ame">tawqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="06cc958d-f7c2-4879-a166-719c7da8848a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">selva</AUni> -<AUni ws="qvm-x-acl">selva</AUni> -<AUni ws="qvm-x-akh">selva</AUni> -<AUni ws="qvm-x-akl">selva</AUni> -<AUni ws="qvm-x-ame">selva</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+selva</AUni> -<AUni ws="qvm-x-acl">+selva</AUni> -<AUni ws="qvm-x-akh">+selva</AUni> -<AUni ws="qvm-x-akl">+selva</AUni> -<AUni ws="qvm-x-ame">+selva</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.488" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="11c24a95-ec35-4d41-9d2d-d46b318a05d1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+selva</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="af579430-9c02-4fff-ab5e-e5365f62963b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2bf04621-4523-4a66-adfe-5f83390c8b1e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +selva 
\entryTyp root 
\gENG jungle 
\gSPN selva 
\e +selva 
\c N0 
\ach selva 
\akh selva 
\acl selva 
\akl selva 
\ame selva</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="06d33ca4-f278-4b52-b0fb-2895927a4880" ownerguid="da066ca6-9a83-4438-bb50-f98f0d18e877"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">slip</AUni> -<AUni ws="es">resbalar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="117ddddb-ba3f-4c6c-92cb-0a361448a812" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="06d46bf0-084f-4876-8329-a11eab40b171" ownerguid="ef3dae4d-47a9-4631-bd3f-c25d309a6732"> -<Form> -<AUni ws="qvm-x-ach">tä</AUni> -<AUni ws="qvm-x-acl">tä</AUni> -<AUni ws="qvm-x-akh">tä</AUni> -<AUni ws="qvm-x-akl">tä</AUni> -<AUni ws="qvm-x-ame">tä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="06d499f9-b4cc-4291-a3c0-9a1dd898a67c" ownerguid="7831223b-e5ed-4186-a321-94e9ae72a27d"> -<ExampleWords> -<AUni ws="en">land, hit, fall</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to something hitting the ground after being thrown?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="06d67b56-22bc-4e30-b45e-8f42db7b8174" ownerguid="33c8a279-f1c4-41ea-b4ad-75b85e8c2223"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spin</AUni> -<AUni ws="es">hilar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c8bc00e2-6b0d-48bd-9022-9c6b13040763" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="06d6c86b-7104-4e53-b09b-c39cc22817f7" ownerguid="14954a0f-5c8a-4680-90b0-53398bd3a2a7"> -<ExampleWords> -<AUni ws="en">well-known, famous, infamous, fame, notorious, public knowledge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something or someone that is known to many people?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="06d72502-eba5-40fb-b31b-ec757b7a4406" ownerguid="72274e9d-5d3c-4ae7-93ab-db3617cdda1e"> -<ExampleWords> -<AUni ws="en">feel (n), texture</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the way something feels?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="06dad083-e288-48d6-98b6-06ebcd778184" ownerguid="b03a6eb8-b916-4c9d-a0e2-15bc77dca511"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="08dbd80b-e123-4f6a-8c65-0820150cb68e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="06dc8a8f-17cd-400a-a972-188d32804273" ownerguid="29dea368-293d-41ea-8542-38798f802b19"> -<Form> -<AUni ws="qvm-x-ach">ventäna</AUni> -<AUni ws="qvm-x-acl">ventäna</AUni> -<AUni ws="qvm-x-akh">ventäna</AUni> -<AUni ws="qvm-x-akl">ventäna</AUni> -<AUni ws="qvm-x-ame">ventäna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="06e37cd0-8b02-4109-b2e1-85b01edba404" ownerguid="1c8d22d3-7a3d-489e-98f7-387b87ca10db"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="Segment" guid="06e4cfc8-0265-4aed-8ae7-a2f275e4187f" ownerguid="e4e27c37-cdac-46fc-bf90-2698cd8a774a"> -<Analyses> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="acd50cc4-77e6-473f-88ef-b66403e035ca" t="r" /> -<objsur guid="dff5de25-2157-4449-9c71-38bdc9ac5cd3" t="r" /> -<objsur guid="53939045-85a6-421c-a7a9-ac39f48bb604" t="r" /> -<objsur guid="ad511186-81ea-4a35-8b33-9daf3c1edafe" t="r" /> -<objsur guid="cbb679d3-ae6f-497e-b7d3-16b5a16a0730" t="r" /> -<objsur guid="382a76f2-91e4-4c93-bd9d-53c5ecd5f8c4" t="r" /> -<objsur guid="3b9d2d42-89df-48d6-96d3-5451f1bcf6df" t="r" /> -<objsur guid="e3dd56ca-7f1d-4da0-ba6d-620ca860f5fe" t="r" /> -<objsur guid="874f8415-fca2-49ce-923f-ff1d4a2b94d9" t="r" /> -<objsur guid="60fb6b73-00c7-4adf-817c-7e61783b3a66" t="r" /> -<objsur guid="fe2136a5-5025-4394-b6d7-29b78f480494" t="r" /> -<objsur guid="8328a243-fc86-4339-9563-c9cbe69d0955" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="CmDomainQ" guid="06e539d2-7368-40f2-9e10-885cf98929af" ownerguid="cc121082-2d07-484e-8a6f-7382f7d71f39"> -<ExampleWords> -<AUni ws="en">stubborn fool, mule, bulldog</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a stubborn person?</AUni> -</Question> -</rt> -<rt class="StText" guid="06e5b434-26a2-4f38-9e9c-adb5afdaafa1" ownerguid="d4e76b58-c50a-4329-aac7-404797114889"> -<DateModified val="2022-10-11 15:53:32.692" /> -<Paragraphs> -<objsur guid="a067c5ec-fc08-47da-98ba-acff5d70cac0" t="o" /> -</Paragraphs> -<RightToLeft val="False" /> -</rt> -<rt class="MoStemMsa" guid="06e5d5ef-c079-4bcc-9678-3a35b7ea6682" ownerguid="5f9ebdd8-3f47-46a0-8ef1-8324d1a3cf03" /> -<rt class="MoStemMsa" guid="06e8a865-3058-4de2-9f35-0a891b42101f" ownerguid="0d914eb7-cb13-42b1-9ee9-2de995ef3707"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="06ec1e12-9cdd-4178-88c8-527e3a4d9953" ownerguid="169d6e3c-34c2-4a4c-b65b-5bac05b82040"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fire</AUni> -<AUni ws="es">fuego</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="83410c4d-b0ef-4e3f-8f88-7543121065be" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="06ece095-9d9c-405a-819a-f98198ea8192"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">muchmu</AUni> -<AUni ws="qvm-x-acl">muchmu; muchmo</AUni> -<AUni ws="qvm-x-akh">muchmu</AUni> -<AUni ws="qvm-x-akl">muchmu; muchmo</AUni> -<AUni ws="qvm-x-ame">muchmu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mutrmu</AUni> -<AUni ws="qvm-x-acl">*mutrmu</AUni> -<AUni ws="qvm-x-akh">*mutrmu</AUni> -<AUni ws="qvm-x-akl">*mutrmu</AUni> -<AUni ws="qvm-x-ame">*mutrmu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.517" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f4506220-25cd-4312-b67d-2f96cce5d215" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mutrmu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="720b13e8-453e-4dbb-9c63-65795f3144b9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5c86ce10-e13e-4cdc-8a3b-bfeeb48c1377" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mutrmu 
\entryTyp root 
\gENG 
\gSPN hacer.hueco.peque¤o 
\e *mutrmu 
\c V1 
\ach muchmu 
\akh muchmu 
\acl muchmu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl muchmo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl muchmu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl muchmo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame muchmu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="06f4f7a5-2404-45e3-9493-717c1527d9d1" ownerguid="275201ba-67a2-4013-b5c6-43496c67b974"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="06f529a0-7e76-4cb9-83f4-e2ad345d11df" ownerguid="99861dcb-c6ca-4e50-a19a-efadbb10c2cf"> -<ExampleWords> -<AUni ws="en">crumbling, declining, decrepit, dowdy, effete, faded, past its prime, rusty, worn out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that is old and not good?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="06f8ae29-ff0e-479c-ad76-6c91d96b706d" ownerguid="c5446904-b898-49e7-afc9-90bcbf4ad155"> -<PartOfSpeech> -<objsur guid="85ffb381-0567-4202-8640-53cbaec77e45" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="06fa65be-6b81-4496-a67b-e66ce94ac697" ownerguid="8594cb26-9f3c-48f5-b00b-f055eb5a5e61"> -<ExampleWords> -<AUni ws="en">frenetic, wild</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe people who are rioting?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="06ff5e8a-eb5a-4a3d-8687-a6682d35472b" ownerguid="e2d011ab-5c29-4b6d-a6dd-27260b688021"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cause.indigestion</AUni> -<AUni ws="es">ahitar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cc8d7002-d7ea-44f2-a435-e2b9170227fe" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="070189ec-92ac-4d2a-9076-e1d33acc658f" ownerguid="7b513a02-c3ae-4243-9410-16854d911258"> -<ExampleWords> -<AUni ws="en">false name, pseudonym, pen name, stage name, alias, a.k.a. (also known as), under the name of, under an assumed name, go by the name of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a name you use for yourself that is not your real name?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0703ee8c-4ea7-482f-85de-3986f3915bce" ownerguid="59808e11-c83e-45ef-987a-6e7fcacf2733"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">pantalón.caída</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="92a837b6-41ab-479b-bc5c-32f583fea8b6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="07046047-adde-4d31-bf89-1ceec92bb562" ownerguid="05f434bb-4b67-4109-a61a-1a4d503130d2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="769c80cb-c513-49ab-b99f-714f9de5c853" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="616d478b-5589-43d3-8765-b756a1557870" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="07049d7e-5ddb-422d-b1fd-0f23267450e4" ownerguid="57c9a370-0f46-4475-98fd-c7a8b3f5074c"> -<ExampleWords> -<AUni ws="en">spoil, mess up, undermine, sabotage, throw a wrench in the works, pour cold water on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to spoiling someone's work?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0704dc5d-e0ea-4f08-931d-b35e20d86c65" ownerguid="801816c5-1843-468e-87ec-429ca2e1df4c"> -<Form> -<AUni ws="qvm-x-ach">rancha</AUni> -<AUni ws="qvm-x-acl">rancha</AUni> -<AUni ws="qvm-x-akh">rancha</AUni> -<AUni ws="qvm-x-akl">rancha</AUni> -<AUni ws="qvm-x-ame">rancha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="0706fae4-582a-47c6-8df7-95d00c132ba9" ownerguid="c5e508cb-4be1-4e1d-ab39-c66e0056daf4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="070902be-1583-4ae6-8702-e5057745c80b" ownerguid="bc9d763c-e4fe-48ab-ad44-87a36f6cc06f"> -<ExampleWords> -<AUni ws="en">receive criticism, come in for criticism, be under attack, come under attack, get a lot of flak, take a lot of flak, be open to criticism</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to being criticized by someone else?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="070b821f-7043-489b-a771-c14fd4f81366" ownerguid="a12e0583-d0ba-4285-8e0e-13be32382092"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">?</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a27ea006-8ebb-4696-85db-04b6f37d51f8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="07116738-35c1-4321-b443-f33ab088cd4c" ownerguid="592a9a00-7d75-4b54-aeda-fdbd96db29ee"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lie</AUni> -<AUni ws="es">mentir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b65b6a5f-a977-43f3-a996-bc9f2c3434c9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="0711771d-4c26-4d0e-a687-86f805043e76" ownerguid="9dca62a8-2127-46bd-87d1-6057b729c7c6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="071bd1b7-d6fc-4de4-af54-42d14357f4cd" ownerguid="fa26f731-ad59-4228-bbd9-b0efb196a660"> -<Form> -<AUni ws="qvm-x-ach">cuartu; cuarto</AUni> -<AUni ws="qvm-x-acl">cuartu; cuartu; cuarto</AUni> -<AUni ws="qvm-x-akh">cuartu; cuarto</AUni> -<AUni ws="qvm-x-akl">cuartu; cuartu; cuarto</AUni> -<AUni ws="qvm-x-ame">cuartu; cuarto</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="071d8e93-13f4-4f38-9d6f-b0649a38c594" ownerguid="3361bc64-667f-404a-b96e-c2fedeea1a99"> -<Form> -<AUni ws="qvm-x-ach">waru</AUni> -<AUni ws="qvm-x-acl">waru; waro</AUni> -<AUni ws="qvm-x-akh">waru</AUni> -<AUni ws="qvm-x-akl">waru; waro</AUni> -<AUni ws="qvm-x-ame">waru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="071e816e-40ad-4277-87d2-454d46437525" ownerguid="d14af1ba-04d0-4edf-ad39-35c80a3748c1"> -<Form> -<AUni ws="qvm-x-ach">riccha</AUni> -<AUni ws="qvm-x-acl">riccha</AUni> -<AUni ws="qvm-x-akh">rikcha</AUni> -<AUni ws="qvm-x-akl">rikcha</AUni> -<AUni ws="qvm-x-ame">rikcha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="071e9d97-69ea-44ec-a992-261ec81db9af" ownerguid="a3634e20-56c9-429a-9b29-fc52ef5f02ae"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">exclamation</AUni> -<AUni ws="es">exclamación</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6390f4e1-0a30-4eef-af19-4d25f415338f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="071f13e9-bd13-43d9-88c9-7a56e639ed0c" ownerguid="372dad9a-3c21-4576-a181-453ba1ef4188"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">vaccination</AUni> -<AUni ws="es">vacuna</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="12704419-d074-494f-958b-bef848f39ebe" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="0721adde-8b15-471d-84b6-127e2f8b5a66" ownerguid="a1313d01-3861-4215-99ee-1a5311bc4b32"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">slip.out</AUni> -<AUni ws="es">escapar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fc26524a-dd66-4c00-98ab-4df844ca0b9b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0727096c-356c-4d70-bbe6-4a822f886814" ownerguid="8d490e91-6383-45ea-a3d7-b9c950822f98"> -<ExampleWords> -<AUni ws="en">wait impatiently, lose your patience, can't wait</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to being impatient?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="07277be9-3d52-4526-b4bb-ebd9c03f6805" ownerguid="3710e019-46c9-44db-a0aa-9054d3126161"> -<ExampleWords> -<AUni ws="en">narcotic, drug</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to narcotics?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0727b3bb-c406-4bb8-9534-1ec07dd798b4" ownerguid="5489f4ae-34a7-4f8b-9086-4247b0d8b3de"> -<ExampleWords> -<AUni ws="en">ambusher, bushwhacker</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who ambushes someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="07354778-6008-4721-90b7-86126ed5f164" ownerguid="739d590b-35a9-4209-a7e9-3b6681652d61"> -<Form> -<AUni ws="qvm-x-ach">ucshi</AUni> -<AUni ws="qvm-x-acl">ucshi; ucshi; ucshe</AUni> -<AUni ws="qvm-x-akh">ukshi</AUni> -<AUni ws="qvm-x-akl">ukshi; ukshi; ukshe</AUni> -<AUni ws="qvm-x-ame">ukshi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="073ca17a-320d-4e28-9ab9-0394e630b426" ownerguid="0b459857-2866-4fce-9f7e-bb69d723fe26"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hand</AUni> -<AUni ws="es">dar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3701a143-3105-468c-9058-c75eeac15729" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="073e3cd6-eaae-43fc-b670-5b8a3285a587" ownerguid="29a8ebbe-ebc4-4295-b6af-84331d019361"> -<ExampleWords> -<AUni ws="en">synonym, synonymous, derivative, antonym, opposite of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to words that are similar in meaning?</AUni> -</Question> -</rt> -<rt class="PartOfSpeech" guid="07455e91-118a-4d7d-848c-39bedd355a3d" ownerguid="ecf8c677-320a-452c-85c0-1f0df87b5be5"> -<Abbreviation> -<AUni ws="en">q</AUni> -</Abbreviation> -<BackColor val="0" /> -<CatalogSourceId> -<Uni>QuestionParticle</Uni> -</CatalogSourceId> -<DateCreated val="2022-10-13 17:34:2.576" /> -<DateModified val="2022-10-13 17:34:2.576" /> -<Description> -<AStr ws="en"> -<Run ws="en">A question particle is a part of speech whose members signal a yes/no question.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Question particle</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="07476166-c5e5-4701-97d3-d97de8b5be6f" ownerguid="df9ee372-e92e-4f73-aac5-d36908497698"> -<Abbreviation> -<AUni ws="en">3.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.103" /> -<DateModified val="2022-9-23 16:55:8.103" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the results of thinking.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>28 Know; 28A Know; 28B Known</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Know</AUni> -</Name> -<Questions> -<objsur guid="ed1eec03-c3fe-48fb-b245-10fc29872a59" t="o" /> -<objsur guid="9db168f8-b209-4b89-b88c-3b98ce8e8a84" t="o" /> -<objsur guid="9ee20758-7d62-4e31-8038-2a35e7cfbec4" t="o" /> -<objsur guid="1cbb417c-8ed8-4df9-982b-c075aa899560" t="o" /> -<objsur guid="a8066556-8127-4a2a-a245-11285e00f1fd" t="o" /> -<objsur guid="866ca8ce-6fe0-43ca-99f4-7dbd2d8020c1" t="o" /> -<objsur guid="397d9287-bb24-4fdb-8511-65e51f22b259" t="o" /> -<objsur guid="87b1cb45-e3cb-4a03-81e9-feff80c835ba" t="o" /> -<objsur guid="dd74762b-7c24-472c-adea-f1fd904a38ed" t="o" /> -<objsur guid="b62978aa-d8a8-4073-b87f-f4fff42c5ac6" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="14954a0f-5c8a-4680-90b0-53398bd3a2a7" t="o" /> -<objsur guid="e3300171-d7b2-4fb4-a103-e8fdcf3ff2ed" t="o" /> -<objsur guid="e0e8af5a-04c1-49a1-9955-9a2af7879068" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="07483f10-ecd9-4a55-91fd-294b665943b7" ownerguid="44acfa0f-1a00-4e7d-8b98-1851b4484599"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="07565b56-18d1-40ea-b210-3c0883df2915" ownerguid="cac1d7a8-7382-466e-ba4a-ba2bfe50f13b"> -<ExampleWords> -<AUni ws="en">broadcast</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to making programs?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0756a71a-e0bf-4ad0-9ddf-1f93eb917d6a" ownerguid="04752883-aa3e-42a2-bd42-454e9cd99b11"> -<ExampleWords> -<AUni ws="en">with my own ears I heard...</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) auditory evidence: the speaker claims to have heard the situation described.</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0757343a-8784-48c2-b926-81322f3d4295"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">capataz</AUni> -<AUni ws="qvm-x-acl">capataz</AUni> -<AUni ws="qvm-x-akh">capataz</AUni> -<AUni ws="qvm-x-akl">capataz</AUni> -<AUni ws="qvm-x-ame">capataz</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+capataz</AUni> -<AUni ws="qvm-x-acl">+capataz</AUni> -<AUni ws="qvm-x-akh">+capataz</AUni> -<AUni ws="qvm-x-akl">+capataz</AUni> -<AUni ws="qvm-x-ame">+capataz</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.49" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3f21f68a-2cb8-4f1d-9b45-a0fff10821ab" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+capataz</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3b4fe670-4b70-4df8-a563-143d188ce19f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1f9a1de4-d752-4c65-afc0-cb065b82d6ec" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +capataz 
\entryTyp root 
\gENG field.boss 
\gSPN capataz 
\e +capataz 
\c N0 
\mp +FinalC 
\ach capataz 
\akh capataz 
\acl capataz 
\akl capataz 
\ame capataz</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="07577951-6558-4c64-bafb-b0c6f4e28061"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yarga; yarga:</AUni> -<AUni ws="qvm-x-acl">yarga; yarga:</AUni> -<AUni ws="qvm-x-akh">yarqa; yarqa:</AUni> -<AUni ws="qvm-x-akl">yarqa; yarqa:</AUni> -<AUni ws="qvm-x-ame">yarqa; yarqa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yarqa:.v2</AUni> -<AUni ws="qvm-x-acl">*yarqa:.v2</AUni> -<AUni ws="qvm-x-akh">*yarqa:.v2</AUni> -<AUni ws="qvm-x-akl">*yarqa:.v2</AUni> -<AUni ws="qvm-x-ame">*yarqa:.v2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.760" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cd96a6dd-6507-4fbf-861a-ec6c7bc99f0c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yarqa:.v2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fc69bcfe-568c-4b1c-b9fb-9d7b1b726bb1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="701f2e73-9bf6-41ba-868b-596432bfe710" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yarqa:.v2 
\entryTyp root 
\gENG be.hungry 
\gSPN tener.hambre 
\e *yarqa:.v2 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach yarga foreshortened 
\ach yarga: 
\akh yarqa foreshortened 
\akh yarqa: 
\acl yarga foreshortened 
\acl yarga: 
\akl yarqa foreshortened 
\akl yarqa: 
\ame yarqa foreshortened 
\ame yarqa: 
\mcc *yarqa:.v2 / ~_ PLALL 
\mcc *yarqa:.v2 / ~_... AFAR</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="0757cb8b-604d-4d62-aa1d-105843c740e2" ownerguid="3ec43596-23e7-43fa-8853-9c69b6683451"> -<Form> -<AUni ws="qvm-x-ach">punu</AUni> -<AUni ws="qvm-x-acl">punu; puno</AUni> -<AUni ws="qvm-x-akh">punu</AUni> -<AUni ws="qvm-x-akl">punu; puno</AUni> -<AUni ws="qvm-x-ame">punu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="075b24d7-cec6-4ae5-a6c6-29b5b6577b58" ownerguid="3b9d2d42-89df-48d6-96d3-5451f1bcf6df"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">carcil</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">carcil</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">carcil</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">carcil</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">carcil</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a11c7386-0344-42fa-a682-89164700ed12" t="r" /> -</Morph> -<Msa> -<objsur guid="423d7370-f1aa-4314-94ef-86c6211c7e9b" t="r" /> -</Msa> -<Sense> -<objsur guid="632fd3a1-c6d3-46e8-a969-01716bcda945" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="075e5d21-c3cd-4e90-9dbe-3f064957dea2" ownerguid="5b4b7618-83ad-4adb-88bf-d6580c9de3be"> -<Form> -<AUni ws="qvm-x-ach">latqui</AUni> -<AUni ws="qvm-x-acl">latqui; latque</AUni> -<AUni ws="qvm-x-akh">latki</AUni> -<AUni ws="qvm-x-akl">latki; latke</AUni> -<AUni ws="qvm-x-ame">latki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="07611917-3fef-4141-aa18-98c5fe83db88" ownerguid="41b91fdb-5a11-4ba1-a570-3d9fbdfd1a56"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="07624c8c-48b3-4d5e-8f05-c803f1f13594" ownerguid="fda0c1ac-5728-4ba2-9f8e-827f161b5bb1"> -<ExampleWords> -<AUni ws="en">watch, keep a watch on, surveillance, observation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to secretly watching something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="07683664-5872-44c6-888e-43d0951850ed" ownerguid="6e52a870-d21a-46e5-a841-75fa74e5070b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="e3982578-26ca-4dd8-8b44-63792e7c2cd3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="076b560d-d19f-40d7-9d3f-ace7487dd280" ownerguid="27048124-c204-4585-9997-c51728f085d6"> -<ExampleWords> -<AUni ws="en">thank, say thank you, express your thanks, acknowledge (a gift), appreciate, show your appreciation, express your gratitude, show gratitude, recognize, in recognition of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to thanking someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="076b9c20-df64-4894-aad2-fb147a344ac4" ownerguid="47feee3e-80e1-469a-911c-0c550b37a2f8"> -<ExampleWords> -<AUni ws="en">necessity, need, obligation, prerequisite, requirement</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something that is necessary?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="076d6df2-1d98-49ac-81ee-9c739d8f5760" ownerguid="ffcc57f8-6c6d-4bf4-85be-9220ca7c739d"> -<ExampleWords> -<AUni ws="en">levirate marriage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to marrying your brother's widow?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="076e33c8-29bc-49cc-a58a-c435a3c30dea" ownerguid="2061f38d-0bf7-4dcb-af69-9c6a12014be8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0770193a-7d1f-436b-abde-0850f0a490f8" ownerguid="bce3f390-452c-4ca9-8c36-5fbcfd6b4755"> -<ExampleWords> -<AUni ws="en">go bad, backslide, fall into sin, your behavior is deteriorating, go crooked</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to changing your behavior for the worse?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="07720a23-a149-4dad-b617-a9ac8ff5f752" ownerguid="b1eae67a-fb81-4f62-acf3-1804d0cc7cc5"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2SA 14.25 Israel nacioncho manami pipis Absalónnog cuyaylapag runaga cargantsu. Payga chaqui puntanpita uma pucshunyagmi camaragla cargan. Tsaynog captinmi lapan runacuna payta cuyapäcog.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="0772919e-eb4c-45e3-b705-73007f5e5583" ownerguid="43282de6-51e1-4e52-99fc-d54e2043fb6c"> -<Abbreviation> -<AUni ws="en">6.8.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to monetary units.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Monetary units</AUni> -</Name> -<Questions> -<objsur guid="faa53096-7411-4de0-8dba-747509079c74" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="07788a10-39fc-4891-b67b-e85ef171a56b" ownerguid="f99036a0-438b-45d0-9238-87c647f43d7f"> -<Form> -<AUni ws="qvm-x-ach">posäda</AUni> -<AUni ws="qvm-x-acl">posäda</AUni> -<AUni ws="qvm-x-akh">posäda</AUni> -<AUni ws="qvm-x-akl">posäda</AUni> -<AUni ws="qvm-x-ame">posäda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="0778b6b5-9da4-455c-8386-cdc1ce057da4" ownerguid="9ea6cb48-9a4d-4259-9f33-b29f2309c1f6"> -<Form> -<AUni ws="qvm-x-ach">gobernador</AUni> -<AUni ws="qvm-x-acl">gobernador</AUni> -<AUni ws="qvm-x-akh">gobernador</AUni> -<AUni ws="qvm-x-akl">gobernador</AUni> -<AUni ws="qvm-x-ame">gobernador</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0778fd1c-bd91-46e8-9107-914b5f385ddb" ownerguid="e9cafabe-f0f7-4142-a6f6-d1c94bdc4b5c"> -<ExampleWords> -<AUni ws="en">emptiness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to the state of being empty?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="077ca31d-3e22-4428-b82e-cb3b48991296" ownerguid="83b483b8-f036-44be-8510-ea337d010a1c"> -<ExampleWords> -<AUni ws="en">accipiter, accipitrine, anhinga, albatross, aquiline, auk, avocet, bittern, blackbird, blackcap, bluebird, blue jay, bobolink, bobwhite, booby, brant, bullfinch, bunting, bustard, buteo, buzzard, canary, caracara, cardinal, cassowary, catbird, chat, chickadee, chicken, cock, cockatoo, cormorant, condor, coot, crane, crepuscular, crow, cuckoo, curlew, cygnet, dove, drake, duck, duckling, dunlin, eagle, eaglet, egret, eider, emu, erne, falcon, fieldfare, finch, flamingo, flicker, flycatcher, fulmar, gallinule, gander, gannet, gnatcatcher, goatsucker, godwit, goldfinch, goose, goshawk, gosling, grackle, grebe, grouse, gull, gyrfalcon, hawk, hen, heron, hoopoe, hummingbird, ibis, jackdaw, jaeger, jay, junco, kea, kingbird, kingfisher, kite, kittiwake, kiwi, lapwing, lark, loon, lovebird, lyrebird, macaw, magpie, mallard, martin, merganser, mew, moa, mockingbird, myna, nighthawk, nightjar, nonpasserine, nuthatch, oriole, oscine, osprey, ostrich, owl, parakeet, passerine, parrot, partridge, peacock, peafowl, peahen, peewit, pelican, penguin, peregrine, petrel, pewee, pewit, phalarope, pheasant, pigeon, pintail, pipit, plover, ptarmigan, puffin, quail, quetzal, rail, ratite, raven, redbird, rhea, ricebird, ringdove, robin, rooster, rook, runner, sandpiper, sapsucker, scoter, seagull, shearwater, shelduck, siskin, skua, snipe, snowbird, sparrow, spoonbill, squab, starling, stilt, stork, swallow, swan, swift, tailorbird, tanager, teal, tern, thrasher, thrush, tit, titmouse, towhee, trumpeter, tumbler, turkey, turnstone, turtledove, vireo, vulture, vulturine, wading, warbler, waxwing, weaverbird, whistler, willet, woodcock, woodpecker, wren, yellowhammer, yellowleg, yellowthroat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What species of bird are there?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="077fafd0-1d3b-41ed-875c-3288312550a0" ownerguid="205124a1-d3ff-4b0c-8c67-42149b6b23ca"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="d8b8e53b-0351-43c6-afc4-723f49302116" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="077fe92a-afbc-4183-bec3-bfa8d83a2ba2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gustu; gusto</AUni> -<AUni ws="qvm-x-acl">gustu; gustu; gusto</AUni> -<AUni ws="qvm-x-akh">gustu; gusto</AUni> -<AUni ws="qvm-x-akl">gustu; gustu; gusto</AUni> -<AUni ws="qvm-x-ame">gustu; gusto</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gusto</AUni> -<AUni ws="qvm-x-acl">+gusto</AUni> -<AUni ws="qvm-x-akh">+gusto</AUni> -<AUni ws="qvm-x-akl">+gusto</AUni> -<AUni ws="qvm-x-ame">+gusto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.892" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eccd38a6-6793-49f1-8508-cf1de6b7baf9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gusto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f4d1b0e7-0b9d-4a34-b19d-48efe3aa5c47" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3fdf807a-d185-4b25-a893-4513d9de0be1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gusto 
\entryTyp root 
\gENG flavor 
\gSPN gusto 
\e +gusto 
\c N0 
\ach gustu / ~_# 
\ach gusto / _# 
\akh gustu / ~_# 
\akh gusto / _# 
\acl gustu / ~_# 
\acl gustu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gusto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl gustu / ~_# 
\akl gustu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl gusto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame gustu / ~_# 
\ame gusto / _# 
\i PRO 23.8 Tsaynog cashganta tantyacur gustu micurcurpis gumitanquipagmi.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0780da77-9f0c-4c1c-af5e-6a49318a61d3" ownerguid="ba98f891-77df-4910-8657-38f4ba79d3a5"> -<ExampleWords> -<AUni ws="en">reward, recompense</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to rewarding someone?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="078d3b66-d501-4f57-849b-e0c4925ce416" ownerguid="d2bc312b-a40f-49b5-93b8-e1666c9f21cd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="a409796c-e3ea-41a7-a032-e61207dec8ee" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="80724ec9-ad4a-4407-bdf6-37a1a67d9abe" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="078dc3f7-2aac-4ecb-808d-ec65a50932ed"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wapu</AUni> -<AUni ws="qvm-x-acl">wapu; wapo</AUni> -<AUni ws="qvm-x-akh">wapu</AUni> -<AUni ws="qvm-x-akl">wapu; wapo</AUni> -<AUni ws="qvm-x-ame">wapu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wapu</AUni> -<AUni ws="qvm-x-acl">*wapu</AUni> -<AUni ws="qvm-x-akh">*wapu</AUni> -<AUni ws="qvm-x-akl">*wapu</AUni> -<AUni ws="qvm-x-ame">*wapu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.495" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="de8b956b-0159-45d1-a494-21d406273df9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wapu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a4f0fcad-e96c-4762-a8cc-fd47dc30e396" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9248b09d-f0fa-45d8-91fc-5109ba46d3be" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wapu 
\entryTyp root 
\gENG steam 
\gSPN cocinar 
\e *wapu 
\c V2 
\ach wapu 
\akh wapu 
\acl wapu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wapo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wapu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wapo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wapu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="078e693c-6beb-471a-9705-7c930452a4d7" ownerguid="dd8fe16b-4d31-470b-96e3-4b043128490d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="39f0ad41-8d7d-470a-bb0a-5d4081b26b0b" t="o" /> -<objsur guid="8143998b-a4eb-467a-ad26-fa748d32f234" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">life</AUni> -<AUni ws="es">vida</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3fa1c127-9b36-48a1-bb26-f13d5864ce67" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="07961901-f89f-4abe-9220-eaab1e986638" ownerguid="67d10a00-fda8-4a3a-becd-f3ae3b00fcca"> -<ExampleWords> -<AUni ws="en">be shocked, feel shocked</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling shocked?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="079abd3f-dfa3-49e0-9654-674d1816c0a8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">o:ra</AUni> -<AUni ws="qvm-x-acl">o:ra</AUni> -<AUni ws="qvm-x-akh">o:ra</AUni> -<AUni ws="qvm-x-akl">o:ra</AUni> -<AUni ws="qvm-x-ame">o:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+orar</AUni> -<AUni ws="qvm-x-acl">+orar</AUni> -<AUni ws="qvm-x-akh">+orar</AUni> -<AUni ws="qvm-x-akl">+orar</AUni> -<AUni ws="qvm-x-ame">+orar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.628" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="46553b67-4c50-43b9-91d2-54f95d76cdb9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+orar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8a510d5c-8768-4c07-9099-3b60d334faff" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d34719d1-5b68-4e5d-9cca-0cee49394de5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +orar 
\entryTyp root 
\gENG pray 
\gSPN orar 
\e +orar 
\c V2 
\ach o:ra 
\akh o:ra 
\acl o:ra 
\akl o:ra 
\ame o:ra 
\mcc +orar / ~_ 1 
\mcc +orar / ~_ 3</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="079ae6f1-dff6-4cb4-87e3-e9ca55b78e44" ownerguid="9f8bbd01-e632-4c24-a40b-e51ddb1716eb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">trap</AUni> -<AUni ws="es">trampa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="84903a51-6519-4055-b074-752253ebe109" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="079b7e91-7715-46d0-977d-ae537ff0a15e" ownerguid="9694bf77-8731-4f05-a894-cba7797278b9"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="079baa9c-b3ac-4881-bca2-7baf6825906d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">achaque:ru</AUni> -<AUni ws="qvm-x-acl">achaque:ru; achaque:ru; achaque:ro</AUni> -<AUni ws="qvm-x-akh">achaque:ru</AUni> -<AUni ws="qvm-x-akl">achaque:ru; achaque:ru; achaque:ro</AUni> -<AUni ws="qvm-x-ame">achaque:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+achaquero</AUni> -<AUni ws="qvm-x-acl">+achaquero</AUni> -<AUni ws="qvm-x-akh">+achaquero</AUni> -<AUni ws="qvm-x-akl">+achaquero</AUni> -<AUni ws="qvm-x-ame">+achaquero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.639" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d6327369-3265-4ea2-8fe7-4f83a4737faf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+achaquero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f7c5ba10-24c4-4c2f-bd33-524a312e1ff8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="62dc6416-aa62-4690-8c79-52ff32846c92" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +achaquero 
\entryTyp root 
\gENG 
\gSPN 
\e +achaquero 
\c N0 
\ach achaque:ru 
\akh achaque:ru 
\acl achaque:ru / _# 
\acl achaque:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl achaque:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl achaque:ru / _# 
\akl achaque:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl achaque:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame achaque:ru 
\i PRO 29.8 Achaquëru runaga pïmaytapis achäquita ashiparmi purin.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="079db17b-4c5d-407d-a369-54e216603792" ownerguid="7d8bf92d-c47c-4e9d-b273-944dc0187175"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Gen 26.33 nota: Seba ninanga Juramento ninanmi.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="079e1a58-d922-41f9-88dd-bc9b44abbc52" ownerguid="16e5b397-d4d6-4e01-acc9-95780d96ac5f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="07a00100-85d1-4709-b898-8efa4f5a860a"> -<Analyses> -<objsur guid="19e731d8-63d8-4491-83d8-5c35ddfd57e9" t="o" /> -</Analyses> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">kaykan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="07a04735-d4f4-446d-b749-741a3a0b4259"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">comadreja</AUni> -<AUni ws="qvm-x-acl">comadreja</AUni> -<AUni ws="qvm-x-akh">comadreja</AUni> -<AUni ws="qvm-x-akl">comadreja</AUni> -<AUni ws="qvm-x-ame">comadreja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+comadreja</AUni> -<AUni ws="qvm-x-acl">+comadreja</AUni> -<AUni ws="qvm-x-akh">+comadreja</AUni> -<AUni ws="qvm-x-akl">+comadreja</AUni> -<AUni ws="qvm-x-ame">+comadreja</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.150" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="23c08902-d58e-41d9-bd1a-a39faf2cd97e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+comadreja</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bf285485-be0c-449d-990e-43368461f60d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e3ea4940-a2e9-46ad-9952-9aaba6fbb326" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +comadreja 
\entryTyp root 
\gENG 
\gSPN 
\e +comadreja 
\c N0 
\ach comadreja 
\akh comadreja 
\acl comadreja 
\akl comadreja 
\ame comadreja</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="07a34fd5-7ce6-48e0-819e-7905999661e9" ownerguid="fad6de1d-f958-4b2b-9c77-412085c2a3ef"> -<Form> -<AUni ws="qvm-x-ach">shipshi</AUni> -<AUni ws="qvm-x-acl">shipshi; shipshi; shipshe</AUni> -<AUni ws="qvm-x-akh">shipshi</AUni> -<AUni ws="qvm-x-akl">shipshi; shipshi; shipshe</AUni> -<AUni ws="qvm-x-ame">shipshi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="07a810fe-94dd-43fe-a25c-653643b235e9" ownerguid="5c31bdf6-901f-4f14-ab64-7a99524710fc"> -<ExampleWords> -<AUni ws="en">indifferent, neutral, apathetic, unconcerned, unmoved, blasé, careless, lackadaisical, half-hearted, casual, offhand, nonchalant, gaily</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels indifferent?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="07b111e0-7e25-4b58-aea3-fdd82b62d316" ownerguid="1e46d9b9-1d64-4f27-be0c-04a3a2a5b29c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">song</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="58a33120-d221-43d4-af32-933f2259ce08" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="07b70511-7972-4bd7-b95c-a2a99ca0e558" ownerguid="7c234ccc-0dbe-42b0-a377-db99ebd2b51e"> -<ExampleWords> -<AUni ws="en">watchdog, performing (animal), seeing eye dog, police dog, hunting dog</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words are used for animals that perform a special task?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="07b71911-b0cf-45f3-bace-b24623f7b257" ownerguid="9d9b7215-c486-49af-982d-640b6a56ef50"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Num 12.12 Ama munaycuytsu ari, mamanpa pachalancho wanushga wamrapa garan juruycagnog Mariapa cuerpun ismunantaga.>></Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="07ba9450-4e79-46b1-9945-c7fa09bbe2de" ownerguid="770a116e-6021-41a8-a523-fa86a0ce3b65"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="07c33f4b-8d42-46d9-a149-6b32640b600a" ownerguid="73bb8073-650f-4d61-ba41-e4ecbda4c9a2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">trade.things</AUni> -<AUni ws="es">trocar.cosas</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a8d6ae12-75c5-428a-9493-571c28e8ecb5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="07c36e9c-52ef-447e-b733-4ae453104927" ownerguid="c5996b7d-0acc-4ac7-bfa0-09b93a0eccbc"> -<ExampleWords> -<AUni ws="en">pan, sluice, Geiger counter, metal detector, pick, rock hammer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What tools and machines are used in mining?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="07c3b761-7d30-488c-8656-4a795ec3c3c5" ownerguid="0a91423d-4b5e-46b7-a4d4-9f40479f6ef8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="07c7a2d3-fdae-4f12-a914-d3d4e0ae1835" ownerguid="d73ede92-ab9a-4110-8b6a-615cc1a33853"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="2ca02ddc-1749-4622-b561-0eed8981fb87" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="d6c4dce8-4270-4374-ab49-4ffb962a93f2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="07c8c2df-b044-402b-acec-be0123d28b3d" ownerguid="82cb0881-5c23-4df2-b22c-45aa078032c1"> -<Form> -<AUni ws="qvm-x-ach">pulchag</AUni> -<AUni ws="qvm-x-acl">pulchag</AUni> -<AUni ws="qvm-x-akh">pulchaq</AUni> -<AUni ws="qvm-x-akl">pulchaq</AUni> -<AUni ws="qvm-x-ame">pulchaq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="07c98a2f-aebf-41f0-8ca0-aa6cc3abf137" ownerguid="951861a4-f7f5-4677-aab8-f262cc753df5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="933b0045-96fe-4fb5-8d09-2b693257ccfb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="07cb0f34-d7b8-45b9-8c44-d0e26fa672b6" ownerguid="b2a97d92-6ce6-4640-93e4-c81eab5e885a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="07cb1f4f-a6f8-4879-8e68-94768be9c6ca" ownerguid="761706fe-d289-4ace-b2c3-ab15d80dba7f"> -<ExampleWords> -<AUni ws="en">rope, string, band, bindings, bonds, cable, chain, cord, lace, lashing, line, ribbon, rubber band, shoelace, shoestring, strap, thong, twine, binder twine, wire</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What types of rope and string are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="07cbd5b5-a0dc-4127-87ef-47b030eb2cd3" ownerguid="530ff7e0-e3cb-4dc3-9c1c-3034969e1ce8"> -<ExampleWords> -<AUni ws="en">be even, be quits</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a situation in which both people have done something bad to each other?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="07cd0b2f-39e5-434e-a082-aca7f194fcd3" ownerguid="5174e55e-5292-4ab9-9b2c-fc37610aaf72"> -<Form> -<AUni ws="qvm-x-ach">pistöla</AUni> -<AUni ws="qvm-x-acl">pistöla</AUni> -<AUni ws="qvm-x-akh">pistöla</AUni> -<AUni ws="qvm-x-akl">pistöla</AUni> -<AUni ws="qvm-x-ame">pistöla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="07cf5182-d090-4432-817b-037895b5cd1d" ownerguid="4f22ebdb-01db-432a-9d7a-41cd44010265"> -<Abbreviation> -<AUni ws="en">6.8.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.486" /> -<DateModified val="2022-9-23 16:55:8.486" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to losing wealth.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Lose wealth</AUni> -</Name> -<Questions> -<objsur guid="30a20421-5f33-4561-a4bf-14689d5e39df" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="07d27af6-8388-4cd1-bf75-56c2779f30a6" ownerguid="0d3c76e7-6a1e-46d8-a005-22510dd42a19"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 4.32 Quimsa waranga (3,000) proverbiucunatami Salomón escribergan runacuna yachacunanpag.</Run> -</AStr> -</Example> -</rt> -<rt class="MoAffixAllomorph" guid="07d433ff-c955-4479-a0a1-3b363d926e60" ownerguid="a42f2140-e40e-486c-b41f-412218a0e088"> -<Form> -<AUni ws="qvm-x-ach">rag</AUni> -<AUni ws="qvm-x-acl">rag</AUni> -<AUni ws="qvm-x-akh">raq</AUni> -<AUni ws="qvm-x-akl">raq</AUni> -<AUni ws="qvm-x-ame">raq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="07d686d0-dec3-4f58-8579-7d5bdcd36bb5" ownerguid="dac6537a-5a97-4c35-8c40-7ea8ff36cdb4"> -<Form> -<AUni ws="qvm-x-ach">apóstol; apostol</AUni> -<AUni ws="qvm-x-acl">apóstol; apostol</AUni> -<AUni ws="qvm-x-akh">apóstol; apostol</AUni> -<AUni ws="qvm-x-akl">apóstol; apostol</AUni> -<AUni ws="qvm-x-ame">apóstol; apostol</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="07d7a531-1248-4891-a2df-9c1139acf28d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">arca; arca:</AUni> -<AUni ws="qvm-x-acl">arca; arca:</AUni> -<AUni ws="qvm-x-akh">arka; arka:</AUni> -<AUni ws="qvm-x-akl">arka; arka:</AUni> -<AUni ws="qvm-x-ame">arka; arka:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*arka:</AUni> -<AUni ws="qvm-x-acl">*arka:</AUni> -<AUni ws="qvm-x-akh">*arka:</AUni> -<AUni ws="qvm-x-akl">*arka:</AUni> -<AUni ws="qvm-x-ame">*arka:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.830" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bad58a18-4ffa-425b-b39a-6e4a8b9cd991" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*arka:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b66ee6d4-9da4-43be-af91-8c27868e750f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e25a6752-9f9c-48d5-8e84-5f0588955357" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *arka: 
\entryTyp root 
\gENG look 
\gSPN mirar 
\e *arka: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach arca foreshortened 
\ach arca: 
\akh arka foreshortened 
\akh arka: 
\acl arca foreshortened 
\acl arca: 
\akl arka foreshortened 
\akl arka: 
\ame arka foreshortened 
\ame arka: 
\i PSA 102.19 Glorianpita patsami arcämorgan.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="07d7c0c0-713d-42ec-add0-32197a4e5986"> -<Analyses> -<objsur guid="8bee3444-588c-4cf0-a7a8-87548bbf7731" t="o" /> -</Analyses> -<Checksum val="-1787065118" /> -<Form> -<AUni ws="qvm-x-akh">juk</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="07ddeffe-9ec0-437a-a413-6bb07751c896" ownerguid="9b9d021f-4b7d-46dc-aecc-0ed2c1394117"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/N0 V2/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">INF</AUni> -<AUni ws="es">INF</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="07e1b1da-3ab0-4611-bd0a-2aedd7ab18d9" ownerguid="2b17fa72-8cff-456c-b7cf-921c7b457c33"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="07e6c671-3101-4bd9-976b-fe72c89a8698" ownerguid="e17bf8da-45f5-43de-bd6a-1c28d8611e02"> -<Form> -<AUni ws="qvm-x-ach">fiërru</AUni> -<AUni ws="qvm-x-acl">fiërru; fiërru; fiërro</AUni> -<AUni ws="qvm-x-akh">fiërru</AUni> -<AUni ws="qvm-x-akl">fiërru; fiërru; fiërro</AUni> -<AUni ws="qvm-x-ame">fiërru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="07e8053c-de46-4975-baea-58e22a563940" ownerguid="f4491f9b-3c5e-42ab-afc0-f22e19d0fff5"> -<ExampleWords> -<AUni ws="en">psychology, life of the soul</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to mental and verbal activity?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="07e97f87-68ca-4d18-9f86-a326e0400947" ownerguid="080bf07b-e58b-4a75-bb97-84d980a143f0"> -<Abbreviation> -<AUni ws="en">8.3.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.599" /> -<DateModified val="2022-9-23 16:55:8.599" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a line.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Line</AUni> -</Name> -<Questions> -<objsur guid="87380222-ed33-4e02-bdef-17ec91f4b903" t="o" /> -<objsur guid="7d396552-02b2-478c-a9f0-f01cda3e650f" t="o" /> -<objsur guid="de8eb297-2bd6-4bb8-b1e1-e86f5dc78c15" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="07e9830c-30a4-4565-9d92-fcd443fa576c" ownerguid="c01bbcef-7d89-4753-bafd-3a7f23648982"> -<ExampleWords> -<AUni ws="en">psychiatrist, shrink, analyst, psychiatry, psychologist, psychoanalyst, psychoanalysis, psychotherapist, psychotherapy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a doctor who treats mental illness?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="07ea8a9f-4e30-41da-bcaf-6b43ee2e270d" ownerguid="b715f06f-153e-4a6a-b018-7a5388b0daae" /> -<rt class="MoStemAllomorph" guid="07ec9302-acbe-41a2-aa01-7f3191f7cca4" ownerguid="0ccab162-fbb3-4a29-86d0-4a5432e001b3"> -<Form> -<AUni ws="qvm-x-ach">logti</AUni> -<AUni ws="qvm-x-acl">logti; logte</AUni> -<AUni ws="qvm-x-akh">loqti</AUni> -<AUni ws="qvm-x-akl">loqti; loqte</AUni> -<AUni ws="qvm-x-ame">luqti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="07ecbe41-829f-4986-8ab0-7d060ffd327f" ownerguid="f491233f-fae4-49dc-a79d-2cb29e71afad"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">adultery</AUni> -<AUni ws="es">adulterio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="62bf28ed-dafe-4fc1-875c-6759345bc10a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="07f17c0d-5b82-455c-a304-d3b1053aea84" ownerguid="b09c222a-28a2-4748-bbe2-9e6e35812817"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="07f336f9-cc14-4c95-a762-76b6620ef310"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">liclish</AUni> -<AUni ws="qvm-x-acl">liclish</AUni> -<AUni ws="qvm-x-akh">liklish</AUni> -<AUni ws="qvm-x-akl">liklish</AUni> -<AUni ws="qvm-x-ame">liklish</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llikllish</AUni> -<AUni ws="qvm-x-acl">*llikllish</AUni> -<AUni ws="qvm-x-akh">*llikllish</AUni> -<AUni ws="qvm-x-akl">*llikllish</AUni> -<AUni ws="qvm-x-ame">*llikllish</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.194" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b9ba9de2-d56a-41c6-9ac4-b5b67bcd6462" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llikllish</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="028b5279-0f22-4019-bcaa-18207a29ff37" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8ad41dae-87f2-4b8d-ad66-6ad658bfc870" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llikllish 
\entryTyp root 
\gENG 
\gSPN un.pájaro 
\e *llikllish 
\c N0 
\mp +FinalC 
\ach liclish 
\akh liklish 
\acl liclish 
\akl liklish 
\ame liklish</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="07f3e3d0-92f8-4873-802a-1b033a5b9c3f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">unchu</AUni> -<AUni ws="qvm-x-acl">unchu; uncho</AUni> -<AUni ws="qvm-x-akh">unchu</AUni> -<AUni ws="qvm-x-akl">unchu; uncho</AUni> -<AUni ws="qvm-x-ame">unchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*untru</AUni> -<AUni ws="qvm-x-acl">*untru</AUni> -<AUni ws="qvm-x-akh">*untru</AUni> -<AUni ws="qvm-x-akl">*untru</AUni> -<AUni ws="qvm-x-ame">*untru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.239" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5af73003-9762-40f4-90eb-d64b63739977" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*untru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="16543cb9-ae82-4e0a-be9d-de21cdd3a1a4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3e3da000-108c-4649-85ee-8e7411f1d1df" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *untru 
\entryTyp root 
\gENG squat 
\gSPN agacharse 
\e *untru 
\c V1 
\ach unchu 
\akh unchu 
\acl unchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl uncho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl unchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl uncho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame unchu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="07f6d3ac-02c3-4ec9-aead-a9ac1b875b4f" ownerguid="99c45d69-8aae-4e74-84e2-8757c91e1d07"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e30c47d8-4625-4c21-a45f-58f85a1e8c4c" t="r" /> -</Morph> -<Msa> -<objsur guid="43d1bf5f-8105-4ae5-ac43-5b7649c64552" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="07fa99e4-1a4c-4f69-a02b-e18581115472"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">walpa</AUni> -<AUni ws="qvm-x-acl">walpa</AUni> -<AUni ws="qvm-x-akh">walpa</AUni> -<AUni ws="qvm-x-akl">walpa</AUni> -<AUni ws="qvm-x-ame">walpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wallpa</AUni> -<AUni ws="qvm-x-acl">*wallpa</AUni> -<AUni ws="qvm-x-akh">*wallpa</AUni> -<AUni ws="qvm-x-akl">*wallpa</AUni> -<AUni ws="qvm-x-ame">*wallpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.463" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9ab5174b-884e-440b-84c7-f5bcc36a6123" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wallpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1794c03d-256c-4446-9f8c-bfa0584026c0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6e3d3b65-6939-4d32-b256-4eb6f4f0e20b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wallpa 
\entryTyp root 
\gENG hen 
\gSPN gallina 
\e *wallpa 
\c N0 
\ach walpa 
\akh walpa 
\acl walpa 
\akl walpa 
\ame walpa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="07fcb46b-5387-4dc7-ba2b-900d625b7251" ownerguid="7912c7a9-b5cb-49d3-aec1-1036d4bf5aa1"> -<Form> -<AUni ws="qvm-x-ach">manëra</AUni> -<AUni ws="qvm-x-acl">manëra</AUni> -<AUni ws="qvm-x-akh">manëra</AUni> -<AUni ws="qvm-x-akl">manëra</AUni> -<AUni ws="qvm-x-ame">manëra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="07ffdded-b347-4a6c-82c3-84096d18270c" ownerguid="742996cd-b87f-40a8-bdb3-dba74219bd73"> -<ExampleWords> -<AUni ws="en">hot, boiling, be a scorcher, sultry, sunny, sweltering, sweltry, tropical, heat wave</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a time or place that is hot?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="08052c57-41bc-44be-9f4b-a6a8fd83ad63" ownerguid="b0cecf9b-06f2-4f96-88a2-f56cd00faf74"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="08064eb9-a879-4702-ac16-c5a920f44f3f" ownerguid="d2e73238-ff99-4ba3-8ce6-d8ae98721710"> -<ExampleWords> -<AUni ws="en">at someone's request, at the request of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that you are doing something that someone has asked you to do?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="080bf07b-e58b-4a75-bb97-84d980a143f0" ownerguid="ac9ee84f-f0c7-48b3-8e5a-b4c967112394"> -<Abbreviation> -<AUni ws="en">8.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.599" /> -<DateModified val="2022-9-23 16:55:8.599" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to the shape of something, and for general words referring to changing the shape of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79W Shapes; 79R Two-Dimensional and Three-Dimensional Shapes</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Shape</AUni> -</Name> -<Questions> -<objsur guid="6e345886-cf62-4c82-8e72-e49ed6287b07" t="o" /> -<objsur guid="4e763dbf-a61c-4c3f-a22f-6a926d9d087f" t="o" /> -<objsur guid="7d586fbc-c2ab-49c3-abaf-1dffe2fd4399" t="o" /> -<objsur guid="cf6ed71e-399a-41a1-bffe-ce5bfda0fe14" t="o" /> -<objsur guid="476684b9-c7d4-4b9e-8e02-4d7df658fd9f" t="o" /> -<objsur guid="d395fafa-09df-4f86-8cab-032c85eba415" t="o" /> -<objsur guid="7c50f821-adb3-4a21-92f9-cc0819ee884d" t="o" /> -<objsur guid="d4477c94-032f-408c-a9a9-048e83c7f2ab" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="6ffe33fe-b49c-45c8-a50b-cd0065c0c869" t="o" /> -<objsur guid="07e97f87-68ca-4d18-9f86-a326e0400947" t="o" /> -<objsur guid="a3ca2a31-259e-4e15-9696-75b0c81886e9" t="o" /> -<objsur guid="82a4ae36-8e70-4c0d-8144-ad9fc3c0e04f" t="o" /> -<objsur guid="5c35c2f8-d17c-42a3-aa12-a4c29b6603e8" t="o" /> -<objsur guid="6c36a680-4ff4-43b9-a7c2-9037ceb0d3f6" t="o" /> -<objsur guid="0fabc72a-ce97-41f3-8a2d-2f27eae09499" t="o" /> -<objsur guid="706cb38c-9aca-4e2f-9653-d9562f07331c" t="o" /> -<objsur guid="2594fe01-4d20-4a20-b093-2df70bced18f" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="080c09a8-08f1-4b87-b751-224461788971" ownerguid="32172222-630c-4f4e-bbe3-de396bf4472c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="080d71ad-e083-4c78-9f75-4ba09ed027fd" ownerguid="f732bdb5-9a04-468a-b50b-510f94d20fb4"> -<ExampleWords> -<AUni ws="en">table, dining room table, bedside table, end table, coffee table, desk</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What types of tables are there?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="080e3f1d-86ed-4a83-9b8a-923201af1c90"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Rutta</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="080e64f1-1a59-4489-9b4a-62435fbb2c9b" ownerguid="4c823e93-3966-461f-bd64-3a9303966338"> -<ExampleWords> -<AUni ws="en">problem, bind, conundrum, difficulty, dire straits, fix, jam, mess, misfortune, pickle, pinch, plight, predicament, scrape, trouble</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a problem?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0810587c-7fef-41d6-b63c-7c05ed44ec02" ownerguid="39611e8d-cc67-4c84-977c-094c5cbe9dbc"> -<ExampleWords> -<AUni ws="en">lonely, lonesome, homesick</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels lonely?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0810c72f-0fbf-492c-87df-a9184202b31b" ownerguid="344e6d59-ca3d-4ba7-ac73-4241f61160f9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shoot.arrow</AUni> -<AUni ws="es">flechar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="829a8f59-61d2-42c7-8ecc-20f495a9fccc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="08156f60-00e8-4761-91d8-0563dac6baa5" ownerguid="9885c1fa-c724-4afc-bb33-6af3b26909f1"> -<Form> -<AUni ws="qvm-x-ach">inteligenti; inteligente</AUni> -<AUni ws="qvm-x-acl">inteligenti; inteligenti; inteligente</AUni> -<AUni ws="qvm-x-akh">inteligenti; inteligente</AUni> -<AUni ws="qvm-x-akl">inteligenti; inteligenti; inteligente</AUni> -<AUni ws="qvm-x-ame">inteligenti; inteligente</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="081896fa-3896-440c-a334-a27de6dc00d6" ownerguid="0037693a-ae42-4e5c-85f5-10a05482d4ee"> -<ExampleWords> -<AUni ws="en">thing, something, article, artifact, entity, item, object, wares</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to a thing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="08195053-d7db-4339-af46-ada0f25b2133" ownerguid="9060339e-d697-4c35-bc83-ced6bebfee63"> -<ExampleWords> -<AUni ws="en">enter by force, break in, force your way in, forcible entry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to entering something by force?</AUni> -</Question> -</rt> -<rt class="MoInflAffMsa" guid="081dad20-ad96-439a-9979-59d56223a8a9" ownerguid="400b9b99-a217-428e-a1a0-7766bbb3d2c2"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="2187f650-9ef3-4104-9740-f007f3b51ffe" t="r" /> -</Slots> -</rt> -<rt class="LexEntry" guid="08203117-dfb9-4e8a-91bc-a3460256a3bc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">muyti</AUni> -<AUni ws="qvm-x-acl">muyti; muyte</AUni> -<AUni ws="qvm-x-akh">muyti</AUni> -<AUni ws="qvm-x-akl">muyti; muyte</AUni> -<AUni ws="qvm-x-ame">muyti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*muyti</AUni> -<AUni ws="qvm-x-acl">*muyti</AUni> -<AUni ws="qvm-x-akh">*muyti</AUni> -<AUni ws="qvm-x-akl">*muyti</AUni> -<AUni ws="qvm-x-ame">*muyti</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.527" /> -<DateModified val="2022-10-10 21:18:47.203" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cad81be9-30b7-465b-ad13-dc4ff41a2571" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*muyti</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ee6a1ab9-356f-4019-9109-74acd44c2c06" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bc7eecb3-e6fc-4278-a8e3-cfcd6f87472a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *muyti 
\entryTyp root 
\gENG 
\gSPN 
\e *muyti 
\c V1 
\mp +FinalI 
\ach muyti 
\akh muyti 
\acl muyti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl muyte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl muyti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl muyte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame muyti 
\i AMO 2.13 Muytipaylapa cargashga aywaycag carrëta pampata panatashgannogmi ushacätsishayqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="0820878f-b19d-48b7-968b-c27e9c3773df" ownerguid="264950bc-cf8b-4e1a-a850-8c65c69c5dbd"> -<Form> -<AUni ws="qvm-x-ach">aru</AUni> -<AUni ws="qvm-x-acl">aru; aro</AUni> -<AUni ws="qvm-x-akh">aru</AUni> -<AUni ws="qvm-x-akl">aru; aro</AUni> -<AUni ws="qvm-x-ame">aru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="08239f53-daa5-47a6-9f39-29a9064b0c27" ownerguid="6045c6eb-efea-4586-95f8-840d32578d66"> -<Abbreviation> -<AUni ws="en">7.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to joining two or more things together.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>18 Attachment; 18B Fasten, Stick To; 63B Unite</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Join, attach</AUni> -</Name> -<Questions> -<objsur guid="fd37ceca-1822-4b65-ac9d-b591434098a5" t="o" /> -<objsur guid="96d5a747-c7d3-4798-abd1-5b27d9d7635c" t="o" /> -<objsur guid="60b6cefa-141f-494a-b055-fcb35ad4137e" t="o" /> -<objsur guid="98b802c7-6c61-4c45-8cf6-c4f6aae3ca82" t="o" /> -<objsur guid="6cc8f81f-2aeb-4f54-921b-62d4b9b72a06" t="o" /> -<objsur guid="5e751182-1ee1-4293-a78a-667746d6fd13" t="o" /> -<objsur guid="b2802b68-bd04-42ab-b804-579af286ce58" t="o" /> -<objsur guid="28d9fed3-03c0-4e63-a3d2-4bc1a07eb1b4" t="o" /> -<objsur guid="3e2d74cc-fe59-48fd-9ac8-2adc30b8ad30" t="o" /> -<objsur guid="6e64a090-e51b-4394-8e47-1ef570f156e0" t="o" /> -<objsur guid="fe830ccb-1be1-4d7b-a6d6-6255da334477" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="6ab060ca-ecfc-4a46-accb-42b0473998cd" t="o" /> -<objsur guid="e43c9905-ae67-4627-8b10-bd7a453828b4" t="o" /> -<objsur guid="2b27b8ca-188e-44ad-aa86-ffa1f99106e3" t="o" /> -<objsur guid="a31c85df-02a9-4dd8-a094-0f07a0afbcca" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="08244b88-bfba-487a-96bc-ca3771d1fa7c" ownerguid="780fbf89-f2ba-404c-b288-f6ca637bbc90"> -<Abbreviation> -<AUni ws="en">8.4.7.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.660" /> -<DateModified val="2022-9-23 16:55:8.660" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to starting to do something after stopping for some time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Start again</AUni> -</Name> -<Questions> -<objsur guid="4c3abe4a-6d6d-42d4-aef7-24dd985e6e4b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="0825b038-b0b2-43ac-935d-d1a061ca70c8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shuna; shuna:</AUni> -<AUni ws="qvm-x-acl">shuna; shuna:</AUni> -<AUni ws="qvm-x-akh">shuna; shuna:</AUni> -<AUni ws="qvm-x-akl">shuna; shuna:</AUni> -<AUni ws="qvm-x-ame">shuna; shuna:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shuna:</AUni> -<AUni ws="qvm-x-acl">*shuna:</AUni> -<AUni ws="qvm-x-akh">*shuna:</AUni> -<AUni ws="qvm-x-akl">*shuna:</AUni> -<AUni ws="qvm-x-ame">*shuna:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.640" /> -<DateModified val="2022-10-10 21:18:47.207" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4d3f9e06-c9d8-46ec-b41a-b605faa261f0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shuna:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2888bec4-57d9-48d6-bccd-f0a75920a144" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4aaad98c-27b2-4b88-b512-cb4e95280f28" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shuna: 
\entryTyp root 
\gENG 
\gSPN 
\e *shuna: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach shuna foreshortened 
\ach shuna: 
\akh shuna foreshortened 
\akh shuna: 
\acl shuna foreshortened 
\acl shuna: 
\akl shuna foreshortened 
\akl shuna: 
\ame shuna foreshortened 
\ame shuna:</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="0828d4dc-214a-4c41-b247-a449a6d2a8c3" ownerguid="03e02aa1-46e1-4b39-b303-9f7d729d4b1e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="08299126-3a22-45cb-9928-4b0a91ef15c8" ownerguid="f8d2bc29-5451-4278-9d5d-177959dd3b13"> -<Form> -<AUni ws="qvm-x-ach">ala</AUni> -<AUni ws="qvm-x-acl">ala</AUni> -<AUni ws="qvm-x-akh">ala</AUni> -<AUni ws="qvm-x-akl">ala</AUni> -<AUni ws="qvm-x-ame">ala</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="082be604-a4d7-4138-bde6-e947d4880a76" ownerguid="36934fab-c0ed-4f25-a387-e1cca26b2401"> -<ExampleWords> -<AUni ws="en">a little, a bit of, a small amount of, trace, trickle, dab, an element of, a touch of, a hint of, taste of, dearth, grain, hair, inappreciable, inconsequential, inconsiderable, infinitesimal, insignificant, iota, limited, minimum, minute, mite, moderate, modest, modicum, ounce, particle, poor, scant, scanty, scintilla, shred, slight, smidgen, some, speck, spoonful, suggestion, suspicion, tidbit, tinge, tiny, trifle, whit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that there is a small amount of something?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="082c1a59-b994-4fd1-8eef-702b20580282" ownerguid="b9e1de21-95c0-4fae-8b71-172dd61e3f4b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">LUK 16.4 ¡Kananmi sï, imata ruranäpaqpis musyä!</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="08315cb5-3be0-4d7d-854b-fa244289c7e2" ownerguid="20f51a14-1e9e-4b4d-9240-a2cdb303d27e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">round.rock</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="11095ce7-5e0e-47e9-a0ee-d1bde24b058d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="08316287-591a-4823-992d-fc7412883a82" ownerguid="8225de87-35a3-4c7a-b35c-f45b152caebe"> -<ExampleWords> -<AUni ws="en">sign, indication, indicator, evidence, mark, trace, manifestation, symptom, omen, telltale, be a giveaway</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a sign that shows that something is true?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0831b5e3-5192-4391-92d5-e5cc50ecc823" ownerguid="c7990233-ef2e-4ea6-8d1e-ccf56e540394"> -<ExampleWords> -<AUni ws="en">farmland, farm, field, garden, cultivated land, agricultural land, plantation, plowed field, tilled field, field ready for harvest, harvested field, fallow field, ground prepared for planting</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to farmland?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="08347449-2a49-4ec2-bdbc-8855d7f3231a" ownerguid="e4d01123-4e1c-4a7e-bd59-34ac88aae6fa"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="0834f3ca-aa72-4562-a420-9e61a00790a6" ownerguid="36b7654f-4f60-4031-904a-5d40c0c8b406"> -<Form> -<AUni ws="qvm-x-ach">sicsicya; sicsicyä</AUni> -<AUni ws="qvm-x-acl">sicsicya; sicsicyä</AUni> -<AUni ws="qvm-x-akh">siksikya; siksikyä</AUni> -<AUni ws="qvm-x-akl">siksikya; siksikyä</AUni> -<AUni ws="qvm-x-ame">siksikya; siksikyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0836c6ee-e66e-4cbc-a7f0-dc4fd7ece3dd" ownerguid="8b76f4a2-9926-4c76-8d4f-563371683219"> -<ExampleWords> -<AUni ws="en">atom, atomic, element, electron, neutron, nuclear, proton</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to elements?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0837226d-2a90-406c-b17d-dcdf0e89d553" ownerguid="c29b7b74-c6bd-401b-8c7a-422853a14a83"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">empty</AUni> -<AUni ws="es">vaciar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b14f9a07-4b4c-4d74-b681-7228ec43270e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="083795fb-f8a5-4de7-9ca1-b0a4846d38aa" ownerguid="271a0f17-545d-4a19-92df-2a7d9970fb92"> -<Form> -<AUni ws="qvm-x-ach">uchu</AUni> -<AUni ws="qvm-x-acl">uchu; ucho</AUni> -<AUni ws="qvm-x-akh">uchu</AUni> -<AUni ws="qvm-x-akl">uchu; ucho</AUni> -<AUni ws="qvm-x-ame">uchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0841dd09-7a7d-4776-920d-9beca1ec6085" ownerguid="6f83b918-dc9f-4053-90a4-a6b9e750db29"> -<ExampleWords> -<AUni ws="en">dam, dike, levee</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a dam used to stop the flow of water?</AUni> -</Question> -</rt> -<rt class="Segment" guid="0848765b-d9e2-4f45-83d1-8b9da75a3a03" ownerguid="f1d2414e-d75e-418d-81c7-a3fc303a3739"> -<Analyses> -<objsur guid="9739969e-9324-481e-96c8-54c5c95a433a" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexEntry" guid="084c32cc-0a83-45c5-8179-78387c6ca24e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">casero:la</AUni> -<AUni ws="qvm-x-acl">casero:la</AUni> -<AUni ws="qvm-x-akh">casero:la</AUni> -<AUni ws="qvm-x-akl">casero:la</AUni> -<AUni ws="qvm-x-ame">casero:la</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+caserola</AUni> -<AUni ws="qvm-x-acl">+caserola</AUni> -<AUni ws="qvm-x-akh">+caserola</AUni> -<AUni ws="qvm-x-akl">+caserola</AUni> -<AUni ws="qvm-x-ame">+caserola</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.800" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="51f8e89f-3b77-4355-8dd4-3a7117303893" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+caserola</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ae0bf2cb-cc4e-4c2d-ae6c-911a6f6f5239" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c71a2318-fa02-48fe-92cd-c5897f006603" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +caserola 
\entryTyp root 
\gENG 
\gSPN 
\e +caserola 
\c N0 
\ach casero:la 
\akh casero:la 
\acl casero:la 
\akl casero:la 
\ame casero:la</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="084e2568-3f54-4eab-b436-8a87fb466659" ownerguid="34e92ff1-32aa-49c7-b4da-d161bedc5adc"> -<Abbreviation> -<AUni ws="en">6.6.2.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.468" /> -<DateModified val="2022-9-23 16:55:8.468" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to working with stone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Working with stone</AUni> -</Name> -<OcmCodes> -<Uni>324 Lithic Industries; Stone Industry</Uni> -</OcmCodes> -<Questions> -<objsur guid="79d906c4-36df-4448-b146-cba3a069062d" t="o" /> -<objsur guid="0defbb75-9e6b-4bb2-aaff-56375f54df09" t="o" /> -<objsur guid="c5bc0e11-ecfa-4299-b15d-f9262aca245f" t="o" /> -<objsur guid="7cb0197a-eee2-4337-a2f8-5276fccf90a5" t="o" /> -<objsur guid="8987ea5e-4955-456f-b1de-143cf9452d70" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="0f07adb7-4387-4723-9800-8362e825ad45" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="084e38ef-e20f-41da-b507-87404743054b" ownerguid="0a59434d-2634-4514-ab44-82236e2c0e2b"> -<Form> -<AUni ws="qvm-x-ach">garapächu</AUni> -<AUni ws="qvm-x-acl">garapächu; garapächu; garapächo</AUni> -<AUni ws="qvm-x-akh">qarapächu</AUni> -<AUni ws="qvm-x-akl">qarapächu; qarapächu; qarapächo</AUni> -<AUni ws="qvm-x-ame">qarapächu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="084f02d5-82b0-449e-aca9-210c3711fe0a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">antsa</AUni> -<AUni ws="qvm-x-acl">antsa</AUni> -<AUni ws="qvm-x-akh">antsa</AUni> -<AUni ws="qvm-x-akl">antsa</AUni> -<AUni ws="qvm-x-ame">antsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ancha.r</AUni> -<AUni ws="qvm-x-acl">*ancha.r</AUni> -<AUni ws="qvm-x-akh">*ancha.r</AUni> -<AUni ws="qvm-x-akl">*ancha.r</AUni> -<AUni ws="qvm-x-ame">*ancha.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.767" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6d4da1f6-2068-456b-8a1e-4ed588b6486e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ancha.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ede3ce0b-7e5b-49b3-bcac-545ed2cab075" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5c9cc14b-6b97-42ad-938e-ba34c3f1db74" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ancha.r 
\entryTyp root 
\gENG critical 
\gSPN grave 
\e *ancha.r 
\c R0 
\ach antsa 
\akh antsa 
\acl antsa 
\akl antsa 
\ame antsa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="084fcee6-0c7c-4818-a44f-b3afd29d0f8e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">:ri</AUni> -<AUni ws="qvm-x-acl">:ri; :re</AUni> -<AUni ws="qvm-x-akh">:ri</AUni> -<AUni ws="qvm-x-akl">:ri; :re</AUni> -<AUni ws="qvm-x-ame">:ri</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.548" /> -<DateModified val="2022-10-16 14:1:49.806" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9af28252-f656-4252-8fd5-ca3bddbfdbfd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">PLDIR</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2ae2b1a8-66c6-48dc-bae3-78542bc06a22" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9698921e-0975-4b34-a574-275dbd3db3f2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx PLDIR 
\entryTyp suffix 
\gENG PLDIR 
\gSPN PLDIR 
\e PLDIR 
\c V1/V1 V2/V2 
\o 060 
\mp +foreshortens +mlowers 
\ach :ri 
\akh :ri 
\acl :ri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl :re +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl :ri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl :re +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame :ri 
\mp +FinalI 
\mcc PLDIR / [dir] _ / [U] _ / DO1 _ / SKI _ / BF _ / *tukU _</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0851b851-e21c-427e-8fa1-6a86e0aaa12a" ownerguid="67e57493-d286-4271-b877-f63f962dddf1"> -<ExampleWords> -<AUni ws="en">survey</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to measuring an area?</AUni> -</Question> -</rt> -<rt class="MoInflAffMsa" guid="0851fe14-f99e-4e06-befc-3a76b044ea37" ownerguid="d5920ef2-29e0-4969-960d-48866dcae841"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="42bc87c7-a17e-4c3e-850a-437f19ff6b36" t="r" /> -</Slots> -</rt> -<rt class="LexSense" guid="08530aa0-6b86-42fb-8be3-a7efe2d46cf6" ownerguid="a1443fa7-aecf-420b-9246-f082796f4f81"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stretch.wool</AUni> -<AUni ws="es">extender.lana</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="96c6d6f2-b31a-478d-a9d1-b68349e48eef" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="085326da-16b2-470c-89d5-290aea78b76e" ownerguid="bf0b24d2-4bd6-4e9c-8775-a623ace8db56"> -<ExampleWords> -<AUni ws="en">pepper, curry, oregano, thyme, cinnamon, bay leaf, parsley, nutmeg, mint, cumin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of spices are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0853c586-0e87-4ab4-aa91-e90973d6f1a7" ownerguid="2855cda6-a031-46aa-bf3f-718d94374d46"> -<ExampleWords> -<AUni ws="en">Down with (someone/something)! No more (something)!</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What do people say when they are protesting against something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="08549622-feb2-4313-b9c3-6374e10ceeb6" ownerguid="31d04eec-f855-4675-88e3-3e62cca59a84"> -<Form> -<AUni ws="qvm-x-ach">mutu</AUni> -<AUni ws="qvm-x-acl">mutu; muto</AUni> -<AUni ws="qvm-x-akh">mutu</AUni> -<AUni ws="qvm-x-akl">mutu; muto</AUni> -<AUni ws="qvm-x-ame">mutu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="08563cb8-6f4e-4c19-88cf-0b5f6b7f2c07" ownerguid="6f8d4578-3c91-47b5-a3c5-a3004e9f6e65"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="35a89a55-d852-4ca8-8863-4314f180cd91" t="r" /> -</Morph> -<Msa> -<objsur guid="85e3456d-a3a6-4fb2-848b-ab16e0bc1f03" t="r" /> -</Msa> -<Sense> -<objsur guid="3ede5194-23d1-435e-b8ad-e5d1b55c6587" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="0858ccbb-eb10-411c-b5b1-8c0a47b00f30"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wara:wa</AUni> -<AUni ws="qvm-x-acl">wara:wa</AUni> -<AUni ws="qvm-x-akh">wara:wa</AUni> -<AUni ws="qvm-x-akl">wara:wa</AUni> -<AUni ws="qvm-x-ame">wara:wa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wara:wa</AUni> -<AUni ws="qvm-x-acl">*wara:wa</AUni> -<AUni ws="qvm-x-akh">*wara:wa</AUni> -<AUni ws="qvm-x-akl">*wara:wa</AUni> -<AUni ws="qvm-x-ame">*wara:wa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.526" /> -<DateModified val="2022-10-10 21:19:47.693" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ad189eef-c72a-4cba-a909-e608d43ec691" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wara:wa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="13fb8d8b-7492-4e86-85a4-e68f68e757f9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8bd90136-cd3c-4c6b-8dbc-65db43cb50c8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wara:wa 
\entryTyp root 
\gENG strut 
\gSPN 
\e *wara:wa 
\c R0 
\ach wara:wa 
\akh wara:wa 
\acl wara:wa 
\akl wara:wa 
\ame wara:wa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="08591880-4c29-4f30-85d4-6c84659708f8" ownerguid="7648040b-0aa5-4d9a-8f13-ffd066b81602"> -<ExampleWords> -<AUni ws="en">length, distance, how long, span</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to how long something is?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0861afd8-2c5b-4a12-804e-347e519aff29" ownerguid="ce59ddff-d85b-45e8-9422-f4a6f6f2f0b9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="086310b0-90c3-4b27-8e90-00bd11996be7" ownerguid="729b249e-aa55-4c0c-bf0e-0034e71e7e84"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">when</AUni> -<AUni ws="es">cuándo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0c7aaae1-027c-4d93-9d3c-c82dc83275da" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="08637792-6fd4-4d76-9920-f5a58c249273" ownerguid="575c4ee2-c3ba-4227-a7de-43181b4e1eb6"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="08674869-3d1b-4ac5-bfab-c0b19c7850a6" ownerguid="5cb8967d-5c07-4fc5-8e4c-778dec9cc384"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">two</AUni> -<AUni ws="es">dos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4d9711ca-57a4-45a6-9e70-08f9f70d9932" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="08674bc4-1196-4e18-8f6f-b86dd121d2df" ownerguid="26b97047-edb1-44e9-8c7b-463de9cfbe78"> -<ExampleWords> -<AUni ws="en">lamb</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to young sheep?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="086b0cef-cb29-4f93-a91d-a7f75a43dd30" ownerguid="cd4300c9-265e-4457-8e33-4e0c9a4d4ba8"> -<ExampleWords> -<AUni ws="en">bad, worthless, unworthy, unimportant, useless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that is valued as bad?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="086d54df-5229-4820-a1d4-6db06905bd4c" ownerguid="167bfba5-0785-4bb5-a083-3ffbefa57897"> -<ExampleWords> -<AUni ws="en">move up, rise, climb, shoot up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to being evaluated as better than before?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0872f686-0c30-4306-aa93-3387d5ea59f1" ownerguid="5737714d-49e4-4eb4-8e46-03203ee5340b"> -<ExampleWords> -<AUni ws="en">deserve, merit, be owed, be yours by right, have earned</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to deserving what you receive?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="08788e9a-93b8-4a2e-ab01-dea177f061e8" ownerguid="0f568473-880d-43bd-b5ce-590100fdcaf6"> -<Abbreviation> -<AUni ws="en">5.2.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.306" /> -<DateModified val="2022-9-23 16:55:8.306" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a feast.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Feast</AUni> -</Name> -<Questions> -<objsur guid="bdd3292e-23b0-4a87-a720-881dc095f7b3" t="o" /> -<objsur guid="abaff495-e781-4995-a3f9-74d312b0c5ad" t="o" /> -<objsur guid="0501e255-55a9-4410-af7a-48f55b7a2abe" t="o" /> -<objsur guid="2400b7c7-f5ad-45c8-af91-926ef1177b2f" t="o" /> -<objsur guid="c2bb70db-0d0d-4aac-b527-88441f97e2db" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="087a04de-41c3-4071-9c49-fa7bcff03c9f" ownerguid="e2d3294b-4463-48bb-95e4-8c9b5238ecec"> -<ExampleWords> -<AUni ws="en">derisive, mock (adj), sarcastic, cutting, satirical, burlesque</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is said or done to mock someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="087a9c5b-b1f8-4e6b-a050-8ae8347b80a0" ownerguid="43b940dd-883e-4e69-b3d3-5d576b435990"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="087cf060-df49-4b7f-a051-53c4e577d88d" ownerguid="e41d69ef-521c-4bb2-876e-e562a3e2b857"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="45db111d-df17-4294-8ff2-d8d200456b8a" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">last</AUni> -<AUni ws="es">última</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="932e46b9-5c05-44f6-856e-14eadeb9023b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="08821bdc-3ca0-4e10-b8df-f72989c6003a" ownerguid="5dd8f103-f04d-46be-903a-68f6d728e511"> -<Form> -<AUni ws="qvm-x-ach">espina</AUni> -<AUni ws="qvm-x-acl">espina</AUni> -<AUni ws="qvm-x-akh">espina</AUni> -<AUni ws="qvm-x-akl">espina</AUni> -<AUni ws="qvm-x-ame">espina</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="08874586-ba47-45e3-bd79-db91d899ed61" ownerguid="acb95270-3e2a-42d5-a38a-75449249f6e3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">colostrum</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dc227b28-ca99-4aef-96e9-0d1a4805597b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="088c3b35-a2e0-4913-93cf-94aa3b3dcacc" ownerguid="d52fd88d-9fda-4915-9cab-f82c0e044534"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="088c5a2a-9ab9-4949-83c6-8ac5d0c29808"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yananya; yananya:</AUni> -<AUni ws="qvm-x-acl">yananya; yananya:</AUni> -<AUni ws="qvm-x-akh">yananya; yananya:</AUni> -<AUni ws="qvm-x-akl">yananya; yananya:</AUni> -<AUni ws="qvm-x-ame">yananya; yananya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yananya:</AUni> -<AUni ws="qvm-x-acl">*yananya:</AUni> -<AUni ws="qvm-x-akh">*yananya:</AUni> -<AUni ws="qvm-x-akl">*yananya:</AUni> -<AUni ws="qvm-x-ame">*yananya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.729" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a320fe8b-cf33-42be-a977-aa29bf6d04fe" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yananya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c413a4a0-7b2c-420b-ab1e-4ff088602dba" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="823a9fc4-5789-481d-a186-8f76d9003deb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yananya: 
\entryTyp root 
\gENG dark 
\gSPN oscuro 
\e *yananya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach yananya foreshortened 
\ach yananya: 
\akh yananya foreshortened 
\akh yananya: 
\acl yananya foreshortened 
\acl yananya: 
\akl yananya foreshortened 
\akl yananya: 
\ame yananya foreshortened 
\ame yananya:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="088df936-aef2-4b1a-a175-dad436753e97"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">churyas</AUni> -<AUni ws="qvm-x-acl">churyas</AUni> -<AUni ws="qvm-x-akh">churyas</AUni> -<AUni ws="qvm-x-akl">churyas</AUni> -<AUni ws="qvm-x-ame">churyas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*truryas</AUni> -<AUni ws="qvm-x-acl">*truryas</AUni> -<AUni ws="qvm-x-akh">*truryas</AUni> -<AUni ws="qvm-x-akl">*truryas</AUni> -<AUni ws="qvm-x-ame">*truryas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.188" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ee342bb9-fe2c-4e3e-8418-d443a32fc8d5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*truryas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="04b9a8e4-70b6-4a08-94cc-4f66274dfaee" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7e570656-2b21-400c-90f9-ce24004bd90c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *truryas 
\entryTyp root 
\gENG green.toad 
\gSPN sapo 
\e *truryas 
\c N0 
\mp +FinalC 
\ach churyas 
\akh churyas 
\acl churyas 
\akl churyas 
\ame churyas</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="088efc20-4995-4b9a-a3bb-3db15d1dbba8" ownerguid="286ee16c-a218-43d5-bbac-ab15f80c3fcf"> -<ExampleWords> -<AUni ws="en">not have enough, be short of, be short on, go short, be running short of, deficient, be starved of, be lacking in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to not having enough of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="089069c9-b537-468b-af57-dfcdd574ebbc" ownerguid="264950bc-cf8b-4e1a-a850-8c65c69c5dbd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">work</AUni> -<AUni ws="es">trabajar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="32de04f0-1251-40ea-97c7-b30d30668c9a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="08906e20-5873-427f-b14e-6d126571deb3"> -<Analyses> -<objsur guid="6aed624e-1b4a-4909-a8d2-0baf1c658458" t="o" /> -</Analyses> -<Checksum val="-892049535" /> -<Form> -<AUni ws="qvm-x-akh">kimsa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="08928908-1926-4293-9071-eb57b6e11ef0" ownerguid="f0e68d2f-f7b3-4722-80a4-8e9c5638b0d4"> -<ExampleWords> -<AUni ws="en">astronomer, biologist, botanist, detective, investigator, linguist, mathematician, operative, reconnoitrer, scientist, scout, spy, undercover agent, zoologist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a person who studies something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="08945af9-c534-475d-9c99-75f0e429d6b7" ownerguid="743b003a-0fc5-4822-bd7b-36ea4a7a74a5"> -<Form> -<AUni ws="qvm-x-ach">jorgu</AUni> -<AUni ws="qvm-x-acl">jorgu</AUni> -<AUni ws="qvm-x-akh">jorqu</AUni> -<AUni ws="qvm-x-akl">jorqu</AUni> -<AUni ws="qvm-x-ame">hurqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="08951b71-75c9-4834-ae0d-db49150c24dc"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Lapanpaq</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="08966f36-c9b0-48cd-8b10-9651772a82fb" ownerguid="ae83adb1-88bc-429d-983b-7808e60fd1b3"> -<Form> -<AUni ws="qvm-x-ach">lectüra</AUni> -<AUni ws="qvm-x-acl">lectüra</AUni> -<AUni ws="qvm-x-akh">lectüra</AUni> -<AUni ws="qvm-x-akl">lectüra</AUni> -<AUni ws="qvm-x-ame">lectüra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="08997433-a793-4c22-8806-d80a73082cd5" ownerguid="5174e55e-5292-4ab9-9b2c-fc37610aaf72"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="089c431f-8f4d-4dac-9fb7-97c5defac01c" ownerguid="652dc246-20c6-4aec-bab1-bae6ff4eb4ce"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ee13bb79-617c-4323-aa95-10df07479931" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="089c8424-b8db-4d07-950c-d176d97cfd01" ownerguid="562f55de-efc7-41a7-b450-6f9dea2813e2"> -<ExampleWords> -<AUni ws="en">government organization, ministry, department, branch, agency</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to a government organization?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="089ce860-af01-4819-83fb-68fcf52a1fa4" ownerguid="a8915eb1-7c23-441b-8d45-d7ce8dbff520"> -<Form> -<AUni ws="qvm-x-ach">minca</AUni> -<AUni ws="qvm-x-acl">minca</AUni> -<AUni ws="qvm-x-akh">minka</AUni> -<AUni ws="qvm-x-akl">minka</AUni> -<AUni ws="qvm-x-ame">minka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="089e5530-5add-47ed-9ac8-58cfa08e0536"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">torta</AUni> -<AUni ws="qvm-x-acl">torta</AUni> -<AUni ws="qvm-x-akh">torta</AUni> -<AUni ws="qvm-x-akl">torta</AUni> -<AUni ws="qvm-x-ame">torta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+torta.v</AUni> -<AUni ws="qvm-x-acl">+torta.v</AUni> -<AUni ws="qvm-x-akh">+torta.v</AUni> -<AUni ws="qvm-x-akl">+torta.v</AUni> -<AUni ws="qvm-x-ame">+torta.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.957" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f7c091da-3864-40ff-8b35-a6a0525ea0a2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+torta.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6a1d46ab-1047-4b00-a46e-fb9542286960" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="40214773-0c6c-49dc-97a0-94a87c300f27" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +torta.v 
\entryTyp root 
\gENG to.floor 
\gSPN entablar 
\e +torta.v 
\c V1 
\ach torta 
\akh torta 
\acl torta 
\akl torta 
\ame torta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="08a02680-6ca4-4839-8242-b61649070a01" ownerguid="db85926f-7111-45b8-ae79-9a77456f8582"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stumbling</AUni> -<AUni ws="es">tropezando</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a6945cd6-84ae-47d5-afc2-5481f6e5fc87" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="08a6571f-a7ac-4133-a966-f5ea0cf0de7c" ownerguid="7a2f695b-dc64-4de2-9cde-19fc62d67627"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sass</AUni> -<AUni ws="es">ser.insolente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2bcf0283-cd78-48da-ae77-a3ab3c0cac33" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="08a7b8ff-1bf3-4e60-bd08-55b1c623d77a" ownerguid="513771eb-8467-468a-8bc8-e52567e66df9"> -<ExampleWords> -<AUni ws="en">associate (n), partner, coworker, colleague, collaborator, fellow worker, affiliate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a person you work with?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="08a7c8a1-fd87-4531-bbe3-39dd73143133" ownerguid="fe18b08e-caf3-406c-8a8b-2ce244aaaaee"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="08ab331b-ec70-48e5-8d5f-c812adac8a4f" ownerguid="6f01b67c-33a0-4ed3-8205-f868e97a1a3a"> -<ExampleWords> -<AUni ws="en">go on a journey, journey, trip, passage, tour</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to going on a journey?</AUni> -</Question> -</rt> -<rt class="Segment" guid="08b11e79-1924-4e53-bdde-51191a4c82f8" ownerguid="2120c813-0e82-4ae3-9f40-cfc12ec9e382"> -<Analyses> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="fa7aeb71-200a-4a5d-9436-13faa1972fea" t="r" /> -<objsur guid="25651c34-3e31-419d-86b5-cda6907f0a4f" t="r" /> -<objsur guid="7a34d709-dd7d-4ac4-94e8-58e444587dd4" t="r" /> -<objsur guid="a85a5670-81ba-47b9-8443-95e8be60ebec" t="r" /> -<objsur guid="bb723df0-2b97-461e-bae3-564d9c1a0cfd" t="r" /> -<objsur guid="4fccec2d-58a4-466f-a087-a79d6bf13b57" t="r" /> -<objsur guid="7469850f-190c-4c67-bdfc-985cbf0148ea" t="r" /> -<objsur guid="4bd33b73-ca58-4fbb-9575-41275fd181b3" t="r" /> -<objsur guid="7d6d4776-71f6-4c31-b03a-97a0bcdd28dc" t="r" /> -<objsur guid="d3da10af-d6fb-4b58-9133-b9d5c3ec090c" t="r" /> -</Analyses> -<BeginOffset val="15" /> -</rt> -<rt class="CmDomainQ" guid="08b31da1-3e57-4254-9f15-6b207f6e971e" ownerguid="6804db44-b71b-4452-98b1-b726bc7cf022"> -<ExampleWords> -<AUni ws="en">piercing, penetrating, ear-splitting</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe a sound that is loud and high?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="08b80c21-f68d-4e50-ac96-f34e47fb48a9" ownerguid="d8070d34-09ce-43d5-bd3a-dc1b52086ddd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StTxtPara" guid="08bb8f22-5f11-43c5-95b0-2fe25fd96571" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">qarqakan</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="4888efac-5595-4103-b901-c563f96cf200" t="o" /> -</Segments> -</rt> -<rt class="LexEntry" guid="08bcc187-08e4-4016-89a3-73c45fda9f3d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">libri; libre</AUni> -<AUni ws="qvm-x-acl">libri; libri; libre</AUni> -<AUni ws="qvm-x-akh">libri; libre</AUni> -<AUni ws="qvm-x-akl">libri; libri; libre</AUni> -<AUni ws="qvm-x-ame">libri; libre</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+libre</AUni> -<AUni ws="qvm-x-acl">+libre</AUni> -<AUni ws="qvm-x-akh">+libre</AUni> -<AUni ws="qvm-x-akl">+libre</AUni> -<AUni ws="qvm-x-ame">+libre</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.84" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a5e2d668-66b6-494c-b91e-a15d45f1ac90" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+libre</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fa68f188-7930-4082-ba7d-a19510405afa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3c214122-30c6-40c6-b947-3d5bc49434f8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +libre 
\entryTyp root 
\gENG free 
\gSPN libre 
\e +libre 
\c N0 
\mp +FinalI 
\ach libri / ~_# 
\ach libre / _# 
\akh libri / ~_# 
\akh libre / _# 
\acl libri / ~_# 
\acl libri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl libre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl libri / ~_# 
\akl libri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl libre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame libri / ~_# 
\ame libre / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="08bd689d-bf0d-422b-83be-0a6545407128"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shulash</AUni> -<AUni ws="qvm-x-acl">shulash</AUni> -<AUni ws="qvm-x-akh">shulash</AUni> -<AUni ws="qvm-x-akl">shulash</AUni> -<AUni ws="qvm-x-ame">shulash</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shullash</AUni> -<AUni ws="qvm-x-acl">*shullash</AUni> -<AUni ws="qvm-x-akh">*shullash</AUni> -<AUni ws="qvm-x-akl">*shullash</AUni> -<AUni ws="qvm-x-ame">*shullash</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.622" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="67b9b5ef-31c2-456d-8663-3e05a0375aed" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shullash</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9afaab37-4992-4c21-b299-452eac7ae52e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="54a9a474-5b9d-4285-9422-7a6a37e9c08d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shullash 
\entryTyp root 
\gENG 
\gSPN 
\e *shullash 
\c N0 
\mp +FinalC 
\ach shulash 
\akh shulash 
\acl shulash 
\akl shulash 
\ame shulash</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="08c05e00-9660-4491-af2f-a05fab27ef39" ownerguid="b1688009-474d-4e2e-a137-acc1e32a435f"> -<Abbreviation> -<AUni ws="en">8.2.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.589" /> -<DateModified val="2022-9-23 16:55:8.589" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing a person or animal who is thin.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>81D Narrow, Wide</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Thin person</AUni> -</Name> -<Questions> -<objsur guid="3d5fd46d-438c-412a-a678-ec7a94b34566" t="o" /> -<objsur guid="15095ea8-bd32-4307-b923-4980f0fcb911" t="o" /> -<objsur guid="fcba0779-c321-4378-9503-237e80e1f8d5" t="o" /> -<objsur guid="266aad0c-6770-4a6e-8958-2a790b4974ef" t="o" /> -<objsur guid="28c99401-2125-4c98-b959-3c806cf62b9d" t="o" /> -<objsur guid="0f1780e7-1617-47ed-906c-480926fa2c8d" t="o" /> -<objsur guid="b954957f-a0d8-4614-8b89-bf8a060253d4" t="o" /> -<objsur guid="c409fd32-108c-4164-8b81-b88547b1ea5f" t="o" /> -<objsur guid="056a37a2-9cc7-419a-a3a8-39171ebfa52f" t="o" /> -<objsur guid="73d858de-6c11-4fde-8876-876086b22809" t="o" /> -<objsur guid="233f63df-3032-4a01-80d0-574488e709a6" t="o" /> -<objsur guid="9e4888fd-c7cf-426e-acad-4b401f6ec725" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="08c0cbf5-2eb7-4e61-b0ac-a640850cda37" ownerguid="db76365c-1a68-4afe-9248-dc19d0f2bbf6"> -<Form> -<AUni ws="qvm-x-ach">hacendädu</AUni> -<AUni ws="qvm-x-acl">hacendädu; hacendädu; hacendädo</AUni> -<AUni ws="qvm-x-akh">hacendädu</AUni> -<AUni ws="qvm-x-akl">hacendädu; hacendädu; hacendädo</AUni> -<AUni ws="qvm-x-ame">hacendädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="08c69239-ee7e-4caf-b9a5-8096dcca2822"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shupla</AUni> -<AUni ws="qvm-x-acl">shupla</AUni> -<AUni ws="qvm-x-akh">shupla</AUni> -<AUni ws="qvm-x-akl">shupla</AUni> -<AUni ws="qvm-x-ame">shupla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shuplla</AUni> -<AUni ws="qvm-x-acl">*shuplla</AUni> -<AUni ws="qvm-x-akh">*shuplla</AUni> -<AUni ws="qvm-x-akl">*shuplla</AUni> -<AUni ws="qvm-x-ame">*shuplla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.642" /> -<DateModified val="2022-10-10 21:19:47.693" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b2aa34c3-69ab-43c5-a658-46921b28624c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shuplla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="62fbb894-cd1a-4513-a7ce-521f28220dc5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b67f5fca-82d5-4566-921a-8dbd18a19c83" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shuplla 
\entryTyp root 
\gENG to.peel 
\gSPN 
\e *shuplla 
\c V2 
\ach shupla 
\akh shupla 
\acl shupla 
\akl shupla 
\ame shupla</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="08c6d1a9-4578-49d5-a7b9-2ba7a1baebbc" ownerguid="d83ebe2c-c1d6-49ec-a4a9-1cdced843387"> -<ExampleWords> -<AUni ws="en">be unconscious, fainted, passed out, coma, be in a coma, be out, insensible</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the state of being unconscious?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="08c6f2bf-76ee-42f0-9563-d71903ded7d7" ownerguid="2d0b3058-d8bb-4110-a54a-e507b0d3a0e4"> -<ExampleWords> -<AUni ws="en">heart murmur, irregular heart beat, skip a beat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the heart beating in a bad way?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="08c9c69c-4459-4edc-961c-936bae835fc7" ownerguid="5d92b4a7-baf7-495e-bb43-4f733cc55935"> -<ExampleWords> -<AUni ws="en">experienced, seasoned, practiced, veteran, pro</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being experienced?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="08ca6416-c865-4ce1-a654-0d393be6e17f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">onguina</AUni> -<AUni ws="qvm-x-acl">onguina</AUni> -<AUni ws="qvm-x-akh">onqina</AUni> -<AUni ws="qvm-x-akl">onqina</AUni> -<AUni ws="qvm-x-ame">unqina</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*unqiña</AUni> -<AUni ws="qvm-x-acl">*unqiña</AUni> -<AUni ws="qvm-x-akh">*unqiña</AUni> -<AUni ws="qvm-x-akl">*unqiña</AUni> -<AUni ws="qvm-x-ame">*unqiña</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.231" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="11dab3f9-8066-46fd-b830-9a50d23f6428" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*unqiña</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="01fc6a74-70d0-4443-99ce-269e6e62ebe9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6d536487-efda-47fe-9032-474108d61ee1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *unqiña 
\entryTyp root 
\gENG algae 
\gSPN alga 
\e *unqiña 
\c N0 
\ach onguina 
\akh onqina 
\acl onguina 
\akl onqina 
\ame unqina</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="08cdcf68-e555-46a8-9801-1003a592bece" ownerguid="3c257201-65a4-4e60-85dd-9fe11b052aaa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">2</AUni> -<AUni ws="es">2</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0d90ca1d-7b60-41a3-a022-dba460606a1c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="08cf57b1-2695-4331-8783-25e68516d917" ownerguid="e6ad4d42-6ddc-4d9a-80a8-5c7bd0262160"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fruit</AUni> -<AUni ws="es">fruta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c2fa4d8a-cf9e-455d-b83a-18479f241b4b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="08d22e7b-4b1a-4719-ba1e-1877554dc01a" ownerguid="d83a1fec-6b16-4327-ab5d-328aa4f6a678"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">open</AUni> -<AUni ws="es">abrir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2762fb71-b8ac-48e9-9929-98ebbd9d11de" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="08d3cb03-43fa-48d7-ad6b-05be6a953946"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">peche:ra</AUni> -<AUni ws="qvm-x-acl">peche:ra</AUni> -<AUni ws="qvm-x-akh">peche:ra</AUni> -<AUni ws="qvm-x-akl">peche:ra</AUni> -<AUni ws="qvm-x-ame">peche:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pechera</AUni> -<AUni ws="qvm-x-acl">+pechera</AUni> -<AUni ws="qvm-x-akh">+pechera</AUni> -<AUni ws="qvm-x-akl">+pechera</AUni> -<AUni ws="qvm-x-ame">+pechera</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.780" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8c7136f2-2590-45c6-ad7d-fcc56466e614" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pechera</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="de80ca65-70c7-44a3-b550-aaf6f7ce4533" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6ff438d7-c4b9-479e-bab9-f18c486e7233" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pechera 
\entryTyp root 
\gENG 
\gSPN 
\e +pechera 
\c N0 
\ach peche:ra 
\akh peche:ra 
\acl peche:ra 
\akl peche:ra 
\ame peche:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="08d5e632-0aed-4924-b3bb-d43de3420385" ownerguid="1c3c8af0-56b9-4617-862e-21f39b388606"> -<Abbreviation> -<AUni ws="en">2.6.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a funeral and other things that are done after a person dies.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>52 Funerals and Burial</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Funeral</AUni> -</Name> -<OcmCodes> -<Uni>764 Burial Practices and Funerals</Uni> -</OcmCodes> -<Questions> -<objsur guid="370bfa5c-1575-48dc-89ca-9262d85021f6" t="o" /> -<objsur guid="90f1645b-31e3-4834-9aee-a69729585d5f" t="o" /> -<objsur guid="b3711f01-fbe5-4446-86e2-9caaa5d911e1" t="o" /> -<objsur guid="9ea3a5db-ee55-4207-925a-990b81158c59" t="o" /> -<objsur guid="5face2ac-af11-4c4c-8ba5-9231cfe1a7a3" t="o" /> -<objsur guid="a94b2801-1989-44f6-b617-56cccd499ff2" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="08d5fb76-d888-4864-a85e-46d7c262d6f5" ownerguid="122dcd76-3ea4-43f6-a76f-f0b242b10ece"> -<Form> -<AUni ws="qvm-x-ach">yusulpa; yusulpä</AUni> -<AUni ws="qvm-x-acl">yusulpa; yusulpä</AUni> -<AUni ws="qvm-x-akh">yusulpa; yusulpä</AUni> -<AUni ws="qvm-x-akl">yusulpa; yusulpä</AUni> -<AUni ws="qvm-x-ame">yusulpa; yusulpä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="08d6cb0d-d1af-48a2-b6ca-d71109410559" ownerguid="4a44ac87-5ad5-44de-8170-9fd88b056010"> -<ExampleWords> -<AUni ws="en">solid, solidly built, sound</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a building that is in good condition?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="08d704f0-706b-4db9-9d6b-b5763469701d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">perlas</AUni> -<AUni ws="qvm-x-acl">perlas</AUni> -<AUni ws="qvm-x-akh">perlas</AUni> -<AUni ws="qvm-x-akl">perlas</AUni> -<AUni ws="qvm-x-ame">perlas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+perlas</AUni> -<AUni ws="qvm-x-acl">+perlas</AUni> -<AUni ws="qvm-x-akh">+perlas</AUni> -<AUni ws="qvm-x-akl">+perlas</AUni> -<AUni ws="qvm-x-ame">+perlas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.800" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ccfd7981-9eff-4f0e-8bbe-787513f303d0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+perlas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cf847d0d-2b41-4fa3-8f82-f82398579305" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1230c6ab-726b-4361-8c15-c8ffb9b432da" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +perlas 
\entryTyp root 
\gENG pearls 
\gSPN perlas 
\e +perlas 
\c N0 
\mp +FinalC 
\ach perlas 
\akh perlas 
\acl perlas 
\akl perlas 
\ame perlas</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="08d738d3-c70c-4c19-a775-8568b0cf7ea5" ownerguid="e3935eec-43c6-49f3-a6ce-18a0de673428"> -<Form> -<AUni ws="qvm-x-ach">cucurutsi</AUni> -<AUni ws="qvm-x-acl">cucurutsi; cucurutsi; cucurutse</AUni> -<AUni ws="qvm-x-akh">kukurutsi</AUni> -<AUni ws="qvm-x-akl">kukurutsi; kukurutsi; kukurutse</AUni> -<AUni ws="qvm-x-ame">kukurutsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="08da9733-aeeb-42fd-8c14-3631e0276f93" ownerguid="5450043d-907b-4884-a9e5-35cfd5935947"> -<ExampleWords> -<AUni ws="en">modest, propriety, decent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to not wanting to be naked?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="08dbd80b-e123-4f6a-8c65-0820150cb68e" ownerguid="b03a6eb8-b916-4c9d-a0e2-15bc77dca511"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="08dc3991-7d1d-4666-af5c-df84b79de3ec"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cucharita</AUni> -<AUni ws="qvm-x-acl">cucharita</AUni> -<AUni ws="qvm-x-akh">cucharita</AUni> -<AUni ws="qvm-x-akl">cucharita</AUni> -<AUni ws="qvm-x-ame">cucharita</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cucharita</AUni> -<AUni ws="qvm-x-acl">+cucharita</AUni> -<AUni ws="qvm-x-akh">+cucharita</AUni> -<AUni ws="qvm-x-akl">+cucharita</AUni> -<AUni ws="qvm-x-ame">+cucharita</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.234" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f3f56778-ce43-4451-9709-ddded595322f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cucharita</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="76f935a5-a22d-4380-ab55-8507b7d15dc7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="706c3e39-b9c3-49c5-90dd-74d8c6288441" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cucharita 
\entryTyp root 
\gENG 
\gSPN 
\e +cucharita 
\c N0 
\ach cucharita 
\akh cucharita 
\acl cucharita 
\akl cucharita 
\ame cucharita</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="08e133a2-e67a-43e0-a6d2-406a0b01f9f0" ownerguid="3ed43ff0-25b5-49e3-998d-8404b1b1febc"> -<Form> -<AUni ws="qvm-x-ach">hilëra</AUni> -<AUni ws="qvm-x-acl">hilëra</AUni> -<AUni ws="qvm-x-akh">hilëra</AUni> -<AUni ws="qvm-x-akl">hilëra</AUni> -<AUni ws="qvm-x-ame">hilëra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="08e2f5de-8d01-4ec0-a69c-2fcacfc7f5d3" ownerguid="75905f34-76c6-486b-b24c-1c1a472cf614" /> -<rt class="LexSense" guid="08e4e395-3a98-44c6-ae49-a1b6efd01a72" ownerguid="2f259730-53c5-4b4e-9f6c-c4218500afdf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">evil.omen</AUni> -<AUni ws="es">mala.se¤a</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7a23df81-50b9-4613-b77f-9700b133a3b8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="08e5096a-de5f-4564-99d1-c0b87e3d84b2" ownerguid="4445cccd-e9b9-4f25-9e8c-2ef58408297d"> -<ExampleWords> -<AUni ws="en">barefoot, shoeless, shirtless, hatless, unshod, topless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to not wearing a piece of clothing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="08e65bc9-bd54-4978-b03e-8364531888dc" ownerguid="1ff743cb-49e0-483d-8a1d-4603a7d6c395"> -<ExampleWords> -<AUni ws="en">drop, plummet, plunge, nosedive, slump, collapse, go through the floor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to decreasing very quickly?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="08e72798-692f-4c79-bb46-83cad5118da8" ownerguid="23bc906d-c15a-4368-b0ca-7443d5e37b83"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">His request <is reasonable>.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">reasonable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that something is reasonable?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="08e9aedc-1d7b-4a19-b90a-90444e06200a" ownerguid="767aa167-af3d-4e11-a68b-ec31f9d2ef1a"> -<ExampleWords> -<AUni ws="en">sign, symbol, emblem, logo, insignia, flag</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to an object or picture that represents something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="08ea3f92-c9bf-4536-a8e1-f436b9907c73" ownerguid="6dc38373-e5b8-49e7-a672-abaa1df9c720"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">alfabeto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ffaf62b1-b7b9-4b25-a392-28ba047c95ab" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="08ea4d43-532d-4e56-818a-372b9984ab3e" ownerguid="59ee2eeb-d59f-44e0-8d71-51e12fccc837"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="08ecb774-7406-44b7-8447-894102b78ec9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">walcash</AUni> -<AUni ws="qvm-x-acl">walcash</AUni> -<AUni ws="qvm-x-akh">walkash</AUni> -<AUni ws="qvm-x-akl">walkash</AUni> -<AUni ws="qvm-x-ame">walkash</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wallkash</AUni> -<AUni ws="qvm-x-acl">*wallkash</AUni> -<AUni ws="qvm-x-akh">*wallkash</AUni> -<AUni ws="qvm-x-akl">*wallkash</AUni> -<AUni ws="qvm-x-ame">*wallkash</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.455" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="27348b90-0447-486b-b8dc-098d58158942" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wallkash</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="15b0c3b3-f6d4-40dd-8198-c21e580aa565" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="df0631f8-415c-4442-98e2-0cc64363b539" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wallkash 
\entryTyp root 
\gENG rat.in.hair 
\gSPN ? 
\e *wallkash 
\c N0 
\mp +FinalC 
\ach walcash 
\akh walkash 
\acl walcash 
\akl walkash 
\ame walkash</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="08efa64b-ec7e-4fdd-b913-5dd58c4a97c9" ownerguid="0084969c-3a18-4cba-b18f-86976fab3627"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1SA 17.22 Davidga chayaycushpan guepinta paytacorgan proveduriaman.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="08f0cf54-1664-4864-b07e-1716b3f4f229" ownerguid="eb57d1a6-d1d0-46bd-9fa3-bc8859d668e9"> -<Form> -<AUni ws="qvm-x-ach">mortäja</AUni> -<AUni ws="qvm-x-acl">mortäja</AUni> -<AUni ws="qvm-x-akh">mortäja</AUni> -<AUni ws="qvm-x-akl">mortäja</AUni> -<AUni ws="qvm-x-ame">mortäja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="08f15fc3-6fc8-4062-b4b5-958024fd5a3c" ownerguid="0b0801a3-8a0c-40ea-bf41-07df80bd0d5f"> -<ExampleWords> -<AUni ws="en">dry (adj), dry as a bone, bone-dry, arid, waterless, parched, dehydrated, desiccated, dried, evaporated, sere, withered</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is dry?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="08f3a63c-4fb5-478f-b228-b671464ff976" ownerguid="4ef76c70-68d7-49b1-a4a2-7b2e6c7ff89a"> -<Form> -<AUni ws="qvm-x-ach">tetera</AUni> -<AUni ws="qvm-x-acl">tetera</AUni> -<AUni ws="qvm-x-akh">tetera</AUni> -<AUni ws="qvm-x-akl">tetera</AUni> -<AUni ws="qvm-x-ame">tetera</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="08f51dbd-8d01-4508-93be-db28909b3581" ownerguid="e3d18da9-e689-4d16-a8f6-2cda34bfee50"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="08f53049-0abc-43c7-89fa-c6907fab1eae"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shegshi; shegshi:</AUni> -<AUni ws="qvm-x-acl">shegshe:; shegshi; shegshe</AUni> -<AUni ws="qvm-x-akh">sheqshi; sheqshi:</AUni> -<AUni ws="qvm-x-akl">sheqshe:; sheqshi; sheqshe</AUni> -<AUni ws="qvm-x-ame">shiqshi; shiqshi:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shiqshi:</AUni> -<AUni ws="qvm-x-acl">*shiqshi:</AUni> -<AUni ws="qvm-x-akh">*shiqshi:</AUni> -<AUni ws="qvm-x-akl">*shiqshi:</AUni> -<AUni ws="qvm-x-ame">*shiqshi:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.602" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d1da1c3c-4ac3-4657-a120-d379c8d1d7b9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shiqshi:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e4f52f46-46a4-4fba-92a8-ec503403afb9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b8a93c97-a030-445f-b9c2-8a9fcb45f7c3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shiqshi: 
\entryTyp root 
\gENG itch 
\gSPN dar.comezón 
\e *shiqshi: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach shegshi foreshortened 
\ach shegshi: 
\akh sheqshi foreshortened 
\akh sheqshi: 
\mp +underlong 
\acl shegshe: 
\acl shegshi foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shegshe foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\mp +underlong 
\akl sheqshe: 
\akl sheqshi foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sheqshe foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shiqshi foreshortened 
\ame shiqshi:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="08f8059b-14df-46c3-845e-3a46da181564" ownerguid="3e05eea3-a390-43e8-9cb7-152d851aea32"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="08f980bd-c049-4619-9a20-9e34da99202b" ownerguid="294d3bf5-366a-40fb-94ed-efe086be3b60"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">translate</AUni> -<AUni ws="es">traducir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a937025b-b5e3-45e2-be6d-fc06234a3b30" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="08fb2319-e702-459e-a0dd-d9a22d53ff0b" ownerguid="3df7d174-83d1-4e17-890e-1272e171ca41"> -<ExampleWords> -<AUni ws="en">shiny, luster, malleable, rust, rusty, tarnish, corrode, golden, silvery, polished, alloy, pure, karat, solid, plated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe metal?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="08fcdb12-d304-47f1-8403-add46a679e9b" ownerguid="9ecbe4dd-d8b5-4c0e-93ba-0af49bb92c03"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sand</AUni> -<AUni ws="es">arena</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="22043cbd-d2df-4275-8be4-6e34f5d03fa9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="08ff26dc-032e-4bc3-9d61-fad11e180305" ownerguid="54d15699-88c2-4d94-a67e-ac4dd70013ed"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">plaster</AUni> -<AUni ws="es">revoque</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cccd6c40-a7b4-4ee2-867d-d7ce4dbdf2e1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="08ffdd0a-681d-461a-91a4-c1b8337b769d" ownerguid="7c022751-a9f9-412d-8b27-8cd03b797e2d"> -<ExampleWords> -<AUni ws="en">narrowly missed, close shave</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something bad almost happened, but it did not?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="090185ee-3a0e-459c-afe8-ec445ac52db9" ownerguid="fcc204a3-eae4-46d1-a9dc-08864fde1772"> -<ExampleWords> -<AUni ws="en">much less, far less, far fewer, way below</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that there is much less of something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0903592a-a301-44c5-9b71-89328c1c8e38"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shay</AUni> -<AUni ws="qvm-x-acl">shay</AUni> -<AUni ws="qvm-x-akh">shay</AUni> -<AUni ws="qvm-x-akl">shay</AUni> -<AUni ws="qvm-x-ame">shay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shay</AUni> -<AUni ws="qvm-x-acl">*shay</AUni> -<AUni ws="qvm-x-akh">*shay</AUni> -<AUni ws="qvm-x-akl">*shay</AUni> -<AUni ws="qvm-x-ame">*shay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.561" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="733e3695-30f3-467b-9fc3-e767263e3bd2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="240560f4-bbc5-4669-a1fa-1482b9f46d39" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9af40fad-ebfb-4844-b623-3a0e31b957dc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shay 
\entryTyp root 
\gENG hey 
\gSPN oye 
\e *shay 
\c NOSUFF 
\ach shay 
\akh shay 
\acl shay 
\akl shay 
\ame shay</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="0903d905-2a1b-4bc9-894a-07fcbc6fc0aa" ownerguid="3f7eb622-ecbd-47fc-9e94-b00397ba7fd3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="0906d121-8f46-49b9-bfb8-e95132a0919c" ownerguid="d4321205-e522-49b2-b9b0-014d63801cbf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stir</AUni> -<AUni ws="es">batir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="529e5878-c156-4a12-ab71-ab8e9c80cd1a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="090b2863-a9c8-4dda-b683-43ad5e451c57" ownerguid="c1a63ba2-1db6-410d-a4ed-5f64d1798bc1"> -<ExampleWords> -<AUni ws="en">rise, fall, ebb, come in, go out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What does the tide do?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="090cbdfb-0947-4548-bfce-a1438908f76d" ownerguid="b5e5984d-25f9-4b5d-a2eb-fc47a411c2ea"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="090cfc59-101d-44c5-bc33-b27920cee655" ownerguid="d06ed832-bbfb-40b9-aa3a-8c5b8b01621a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b699320c-1182-41cf-a567-d8008edefdda" t="r" /> -</Morph> -</rt> -<rt class="CmDomainQ" guid="090d54f5-61a2-4bc2-bfa0-d5f682f172d7" ownerguid="18043b8c-3ff0-46a5-87cc-626f62f967cc"> -<ExampleWords> -<AUni ws="en">coconut, husk, shell, copra, milk, dry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to growing coconuts?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="090da349-5b2b-48c6-be13-c534e1e5cb38" ownerguid="ce6d5e60-7cf6-46ab-bd02-453ec7b04f7a"> -<ExampleWords> -<AUni ws="en">encouraging</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that causes someone to feel good about himself?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="09172ef2-6da7-4ebb-94ef-cd26414376d2" ownerguid="6b8366b9-b5e8-42b8-991c-c568d4442a81"> -<ExampleWords> -<AUni ws="en">hair condition, dry, greasy, split end, tangled, combed, uncombed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe the condition of a person's hair?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="09184d32-2818-4489-afa2-9c699ca70f40" ownerguid="ad95ae11-c210-4cd0-88ff-c9fd689f4a3a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">desear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bfb9b2d4-0320-4970-a426-3186d22b7a09" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="0919835b-bf4c-456b-8713-9f99208e0789" ownerguid="8af58173-6f34-4b58-bb9a-2e3c6df121bd"> -<Form> -<AUni ws="qvm-x-ach">reträtu</AUni> -<AUni ws="qvm-x-acl">reträtu; reträtu; reträto</AUni> -<AUni ws="qvm-x-akh">reträtu</AUni> -<AUni ws="qvm-x-akl">reträtu; reträtu; reträto</AUni> -<AUni ws="qvm-x-ame">reträtu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0919e8b3-1be4-4069-8e9b-6978219384d9" ownerguid="d8ea1902-5fa6-4fda-b7b2-1f9c301cdc5f"> -<ExampleWords> -<AUni ws="en">cargo, contents, freight, goods, lading, load</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a group of things that are moved together?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="091a58e4-d2ad-4f7f-bd0f-a1905a9c96ee"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">entabla</AUni> -<AUni ws="qvm-x-acl">entabla</AUni> -<AUni ws="qvm-x-akh">entabla</AUni> -<AUni ws="qvm-x-akl">entabla</AUni> -<AUni ws="qvm-x-ame">entabla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+entablar</AUni> -<AUni ws="qvm-x-acl">+entablar</AUni> -<AUni ws="qvm-x-akh">+entablar</AUni> -<AUni ws="qvm-x-akl">+entablar</AUni> -<AUni ws="qvm-x-ame">+entablar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.475" /> -<DateModified val="2022-10-10 21:18:47.218" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9633d024-a8b8-4e39-91be-c0a575263159" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+entablar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="41c65d34-fc50-4121-b41c-dd3903c42bf7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ad3e3d7c-e37b-49cb-8531-37cff872eb73" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +entablar 
\entryTyp root 
\gENG 
\gSPN 
\e +entablar 
\c V2 
\ach entabla 
\akh entabla 
\acl entabla 
\akl entabla 
\ame entabla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="091ccac4-9fef-4633-9d7e-9c9ba9e42cac" ownerguid="068d0802-c08c-4b0e-9861-dc975d9235d8"> -<Form> -<AUni ws="qvm-x-ach">cëra</AUni> -<AUni ws="qvm-x-acl">cëra</AUni> -<AUni ws="qvm-x-akh">cëra</AUni> -<AUni ws="qvm-x-akl">cëra</AUni> -<AUni ws="qvm-x-ame">cëra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="091e344c-c36f-4733-a8d4-a3b567b88cf3" ownerguid="398a86b9-9499-40cb-a097-a365fac253c8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="091ee60b-b9e7-4205-8690-bce5f4efcfb0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wari</AUni> -<AUni ws="qvm-x-acl">wari; wari; ware</AUni> -<AUni ws="qvm-x-akh">wari</AUni> -<AUni ws="qvm-x-akl">wari; wari; ware</AUni> -<AUni ws="qvm-x-ame">wari</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wari.n</AUni> -<AUni ws="qvm-x-acl">*wari.n</AUni> -<AUni ws="qvm-x-akh">*wari.n</AUni> -<AUni ws="qvm-x-akl">*wari.n</AUni> -<AUni ws="qvm-x-ame">*wari.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.526" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dc23f7a0-c9d7-4fb2-86d1-2243a0db42a0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wari.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="432d62eb-d4cc-41fb-8fae-7ff802630af0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aaee175e-73d1-433a-87be-46b1478628c0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wari.n 
\entryTyp root 
\gENG 
\gSPN ruina 
\e *wari.n 
\c N0 
\mp +FinalI 
\ach wari 
\akh wari 
\acl wari / _# 
\acl wari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ware +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wari / _# 
\akl wari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ware +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wari 
\mcc *wari.n / ~_ 1P.V TOP</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="09207dcc-9a6b-43e5-8b32-7203023d327d" ownerguid="9a9c7174-4148-43c2-875c-0d2f884a5fe3"> -<ExampleWords> -<AUni ws="en">untidiness, messiness, disorderliness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the quality of being untidy?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="0921a29c-703b-4cb8-9094-4d7b8fbdd189" ownerguid="275e8994-3b50-4690-b349-12e6f1b359a8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">r</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">r</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">r</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">r</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">r</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a96fae79-db91-498f-a3f4-4aaeff3f9499" t="r" /> -</Morph> -<Msa> -<objsur guid="973e08a0-60b3-4ff1-9973-ac70ea0a16bc" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="0921ec57-9e52-417e-9ff2-18bf19d7a63b" ownerguid="70a6cd7e-07a4-46ad-a024-abeea60f18c4"> -<Form> -<AUni ws="qvm-x-ach">tsicya</AUni> -<AUni ws="qvm-x-acl">tsicya</AUni> -<AUni ws="qvm-x-akh">tsikya</AUni> -<AUni ws="qvm-x-akl">tsikya</AUni> -<AUni ws="qvm-x-ame">tsikya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="0924ce79-bb81-44c8-8141-c67544679302" ownerguid="1cd48173-729e-488e-9c81-5a51f7d7ad98"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2PE 2.3 Gellaypag wanushpanmi ali tupaylapa sacyapäcushunqui.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="0928b47a-a09c-4844-9607-34804a03c1e4" ownerguid="595692da-68f4-41cd-a676-4ea47e15a74b"> -<Form> -<AUni ws="qvm-x-ach">wila</AUni> -<AUni ws="qvm-x-acl">wila</AUni> -<AUni ws="qvm-x-akh">wila</AUni> -<AUni ws="qvm-x-akl">wila</AUni> -<AUni ws="qvm-x-ame">wila</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="092b9b79-4ebd-4dfd-9f00-3e1690042122"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ajay</AUni> -<AUni ws="qvm-x-acl">ajay</AUni> -<AUni ws="qvm-x-akh">ajay</AUni> -<AUni ws="qvm-x-akl">ajay</AUni> -<AUni ws="qvm-x-ame">ahay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ahay</AUni> -<AUni ws="qvm-x-acl">*ahay</AUni> -<AUni ws="qvm-x-akh">*ahay</AUni> -<AUni ws="qvm-x-akl">*ahay</AUni> -<AUni ws="qvm-x-ame">*ahay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.669" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="51a16dc5-b38d-4d70-925b-20fd22bd5d71" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ahay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e5517529-c23c-4603-8e86-bbb305c972ee" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9ff15b88-6b51-4b4b-8d19-41cde766e287" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ahay 
\entryTyp root 
\gENG spirit 
\gSPN espíritu 
\e *ahay 
\c N0 
\mp +FinalC 
\ach ajay 
\akh ajay 
\acl ajay 
\akl ajay 
\ame ahay</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="092e3754-97f6-4d75-9a8a-cc6fa8076694" ownerguid="3dc5b56e-243f-4e4e-b250-97bd2f7ab8ba"> -<Form> -<AUni ws="qvm-x-ach">muchuy</AUni> -<AUni ws="qvm-x-acl">muchuy</AUni> -<AUni ws="qvm-x-akh">muchuy</AUni> -<AUni ws="qvm-x-akl">muchuy</AUni> -<AUni ws="qvm-x-ame">muchuy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="092eb0d5-f2a5-4fa8-a7bb-1f70cff6caab" ownerguid="78ee36f3-ec9d-454d-ae94-067fc167287d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">have.fever</AUni> -<AUni ws="es">tener.fiebre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f4c212d6-5c99-4916-9e2c-ad885b73e473" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="09308d4f-cc49-40e7-a146-26a3436963ab" ownerguid="652d7ef5-6430-41f5-8be0-6f6b7e978036"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">godmother</AUni> -<AUni ws="es">comadre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="87ae63c6-4ffa-479c-907b-82d462c2e78c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="09330312-0bb2-4209-9b08-06c4c0f8d01d" ownerguid="65846491-830b-432a-9b69-ea9f0a84a560"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="09338826-bbff-4832-91b1-9ffbd8d18955" ownerguid="df96455e-7c76-4c28-b068-f6c3fc846d45"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -<Sense> -<objsur guid="8825f180-b774-47d3-9faa-e76a889e064f" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="09368bb3-7e45-47f4-b60a-7a85ffb72ba5" ownerguid="a97e1e43-8347-41a8-b258-5ec7de90442c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="0937c76c-6518-45dd-9ad8-4ce84e16431c" ownerguid="92691d17-d145-4783-a83a-8d67fc35a586"> -<Form> -<AUni ws="qvm-x-ach">luchuy</AUni> -<AUni ws="qvm-x-acl">luchuy</AUni> -<AUni ws="qvm-x-akh">luchuy</AUni> -<AUni ws="qvm-x-akl">luchuy</AUni> -<AUni ws="qvm-x-ame">luchuy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0937e972-6c60-4c0d-a6ae-e616f9778831" ownerguid="2c322d8b-d762-43ce-b905-aab41f9c7bbb"> -<ExampleWords> -<AUni ws="en">bat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to bats?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0938a4a4-b46f-43af-b68c-b139adf342b6" ownerguid="02eef9b2-805e-434f-acb3-6824423884b2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="093af034-7ba4-4b75-ae87-f188354e42c4" ownerguid="32bebe7e-bdcc-4e40-8f0a-894cd6b26f25"> -<ExampleWords> -<AUni ws="en">healthy, be good for you, be good for your health, do you good, beneficial</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that makes you healthy?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="093b3d2a-e0bc-4885-ac70-bf5125e201fe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">administrador</AUni> -<AUni ws="qvm-x-acl">administrador</AUni> -<AUni ws="qvm-x-akh">administrador</AUni> -<AUni ws="qvm-x-akl">administrador</AUni> -<AUni ws="qvm-x-ame">administrador</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+administrador</AUni> -<AUni ws="qvm-x-acl">+administrador</AUni> -<AUni ws="qvm-x-akh">+administrador</AUni> -<AUni ws="qvm-x-akl">+administrador</AUni> -<AUni ws="qvm-x-ame">+administrador</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.649" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="162dbb2a-1a09-4390-9ac1-fe568d0d97fb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+administrador</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="95d0f97f-2d82-47a2-9f81-9988802d6b67" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="844ce185-18cd-4b57-968e-f6182d7be375" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +administrador 
\entryTyp root 
\gENG 
\gSPN 
\e +administrador 
\c N0 
\mp +FinalC 
\ach administrador 
\akh administrador 
\acl administrador 
\akl administrador 
\ame administrador</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="093c5765-18c0-4a14-a50b-067cebac055d" ownerguid="aeb20093-26ba-492b-a69d-af18d5ba51eb"> -<ExampleWords> -<AUni ws="en">show affection, kiss, embrace, hug, hold hands, public display of affection</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to showing affection to someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="093e8dbf-7fcd-430e-95d5-a96d0c35930b" ownerguid="b9342936-0ace-412f-996d-a521b341ce02"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="093eeea2-4ff6-4ee8-ad05-8af1702b7246" ownerguid="a72ca6f7-e389-408a-8276-fec4d60a3a56"> -<Abbreviation> -<AUni ws="en">9.1.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.680" /> -<DateModified val="2022-9-23 16:55:8.680" /> -<Description> -<AStr ws="en"> -<Run ws="en">Many languages have general words that indicate some kind of change of state. These general words may be used with a wide variety of specific meanings. For instance in English the word 'become' may be used to a change in identity, a change in characteristic, a change in nature, and many other ideas.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>13B Change of State</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Become, change state</AUni> -</Name> -<Questions> -<objsur guid="bd091603-8cb3-4fd3-b2f5-b1e15b35baab" t="o" /> -<objsur guid="84f4ed72-3d6f-44be-b2cb-0decd7ec2c0c" t="o" /> -<objsur guid="5ddfd33d-d65f-427a-a744-76b57c7e96ff" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="09419e5a-a788-4d04-8aae-8cd073c4bcd9" ownerguid="8884616f-14e9-4f6b-b4b1-b13bbded971d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="0942ddb4-ac10-468e-999b-ac05067b7bff" ownerguid="77f9a83b-8317-4bdd-8578-a21c75214278"> -<Form> -<AUni ws="qvm-x-ach">wactsa</AUni> -<AUni ws="qvm-x-acl">wactsa</AUni> -<AUni ws="qvm-x-akh">waktsa</AUni> -<AUni ws="qvm-x-akl">waktsa</AUni> -<AUni ws="qvm-x-ame">waktsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="094ad767-9400-4ac2-a94d-ea6531715f91"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">purash</AUni> -<AUni ws="qvm-x-acl">purash</AUni> -<AUni ws="qvm-x-akh">purash</AUni> -<AUni ws="qvm-x-akl">purash</AUni> -<AUni ws="qvm-x-ame">purash</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*purash</AUni> -<AUni ws="qvm-x-acl">*purash</AUni> -<AUni ws="qvm-x-akh">*purash</AUni> -<AUni ws="qvm-x-akl">*purash</AUni> -<AUni ws="qvm-x-ame">*purash</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.12" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ecda1c2a-137b-4f01-9ea9-bade83408174" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*purash</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="375fb2b7-69bd-4c2a-85bf-cadce82f6e5f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f6cbbd75-52c4-428c-a6ea-5fe047fedf1a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *purash 
\entryTyp root 
\gENG handful 
\gSPN 
\e *purash 
\c N0 
\mp +FinalC 
\ach purash 
\akh purash 
\acl purash 
\akl purash 
\ame purash</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="094d58e6-80eb-4bfc-a63f-a848e53f6622"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">macala</AUni> -<AUni ws="qvm-x-acl">macala</AUni> -<AUni ws="qvm-x-akh">makala</AUni> -<AUni ws="qvm-x-akl">makala</AUni> -<AUni ws="qvm-x-ame">makala</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*makalla</AUni> -<AUni ws="qvm-x-acl">*makalla</AUni> -<AUni ws="qvm-x-akh">*makalla</AUni> -<AUni ws="qvm-x-akl">*makalla</AUni> -<AUni ws="qvm-x-ame">*makalla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.263" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6de7b89d-b592-4e55-a2f2-0737366b277b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*makalla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e4d5e1bd-204f-457a-a9db-2fbf91027c01" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="83bf64c8-b315-4693-86a0-ff89b72d2c4e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *makalla 
\entryTyp root 
\gENG clasp 
\gSPN abrazar 
\e *makalla 
\c V2 
\ach macala 
\akh makala 
\acl macala 
\akl makala 
\ame makala</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="09552194-eb1d-49fb-8e1f-eab98ee10a9f" ownerguid="2e30f02d-d1e6-489c-a1fb-8b9fb6ecd819"> -<ExampleWords> -<AUni ws="en">disappointment, frustration, letdown, bitter pill to swallow, forlorn hope, unfulfilled hopes</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of disappointment?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="095a3671-dafd-4582-b84c-d02d8f82e517" ownerguid="b10d1740-502e-4c62-840e-eb89c948c3dc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">line</AUni> -<AUni ws="es">linea</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="54533a3f-238b-4308-bf1e-05a557c7a619" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="095b05e6-a91e-476d-a042-0b5674bba0ec" ownerguid="d5920ef2-29e0-4969-960d-48866dcae841"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 BN/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">PLUR</AUni> -<AUni ws="es">PLUR</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0851fe14-f99e-4e06-befc-3a76b044ea37" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="095c36bd-b74a-44f5-987b-85909e3f4c1d" ownerguid="4f485a60-e3ba-42e6-9d59-185305c5d1f2"> -<Abbreviation> -<AUni ws="en">8.5.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating a forward direction.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Forward</AUni> -</Name> -<Questions> -<objsur guid="6b2d7822-acb4-4779-8320-000f2a5cb2e0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="095e25b2-3b28-4ff9-a32a-ff660cd188df"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shillu</AUni> -<AUni ws="qvm-x-acl">shillu; shillu; shillo</AUni> -<AUni ws="qvm-x-akh">shillu</AUni> -<AUni ws="qvm-x-akl">shillu; shillu; shillo</AUni> -<AUni ws="qvm-x-ame">shillu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shillu</AUni> -<AUni ws="qvm-x-acl">*shillu</AUni> -<AUni ws="qvm-x-akh">*shillu</AUni> -<AUni ws="qvm-x-akl">*shillu</AUni> -<AUni ws="qvm-x-ame">*shillu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.581" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d1d182d0-0c28-40e2-b2ec-48c71fd52db8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shillu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="30110333-e055-4d05-917a-2c3298dc9a00" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6348aa4e-0736-49e9-ac45-ee1c6bda46ab" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shillu 
\entryTyp root 
\gENG fingernail 
\gSPN uña 
\e *shillu 
\c N0 
\ach shillu 
\akh shillu 
\acl shillu / _# 
\acl shillu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shillo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shillu / _# 
\akl shillu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shillo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shillu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="0962b890-97ef-4c05-af34-6e94ee0c1224" ownerguid="2d096be9-3dc8-4622-81fc-9cd439494f6f"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="0962e656-ea07-4909-8dbe-7207bd47e41f" ownerguid="75fce016-3aa7-4e73-9003-db242c2f8c86"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="7a6bfe44-2efd-4987-a8f3-00e33916f9f2" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">gossiper</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3269fc56-1efd-4212-8385-ed692d878351" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="096730de-86f8-46a0-b246-fc3d635415e3" ownerguid="646dab64-5c2f-4f45-8e28-4d13437639d4"> -<ExampleWords> -<AUni ws="en">friendship</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used to refer to the friendship itself?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0967683d-7fb1-4a66-904c-d55715dcf9a4" ownerguid="e949f393-2a5b-4792-af8f-75138322ceee"> -<ExampleWords> -<AUni ws="en">sturdy, robust, hardy, tough, resilient</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe someone who is strong and healthy?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="09692e17-d3d3-409f-aa95-cf7dc61ca290" ownerguid="d067b555-e53c-4c16-bb09-5314862d8bae"> -<ExampleWords> -<AUni ws="en">be drunk, be intoxicated, soused, had too many, under the influence, drink under the table</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the effect alcohol has on a person?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="096cbc7b-7715-4067-99f6-857df84d5a71" ownerguid="49c525b3-2163-48e1-b3bd-57e5cdc486a4"> -<ExampleWords> -<AUni ws="en">flesh, fleshy, tissue, soft tissue</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to the soft tissue?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0971cc4f-c797-485d-9d43-98c6d121bf91" ownerguid="ca91e41a-81c3-4c96-87e6-f67477fcd686"> -<ExampleWords> -<AUni ws="en">well brought up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to rearing a child well?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0974c49f-8a09-4c0c-84a5-24e034477519" ownerguid="c8c74ec6-3f7a-4b45-b0e9-399b97c4a800"> -<ExampleWords> -<AUni ws="en">freedom, liberty, autonomy, latitude, license, scope</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the state or right to be free?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="09791e96-8c81-4707-883a-7f4dae35afa3" ownerguid="d7e0ed88-6d5a-44cc-a0fe-070a5aab3e60"> -<ExampleWords> -<AUni ws="en">fish, trawl, fly-fishing, cast, bait the hook</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to catching fish with a hook?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="097b2eba-86c7-4e51-897f-e3c38e914ce9" ownerguid="e22d860a-d207-4649-8ab5-4592b838febb"> -<ExampleWords> -<AUni ws="en">sea cow, manatee</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What species of sea cow are there?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="097c4430-fda8-4a6d-8886-df2ded026dc6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tuta</AUni> -<AUni ws="qvm-x-acl">tuta</AUni> -<AUni ws="qvm-x-akh">tuta</AUni> -<AUni ws="qvm-x-akl">tuta</AUni> -<AUni ws="qvm-x-ame">tuta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tuta</AUni> -<AUni ws="qvm-x-acl">*tuta</AUni> -<AUni ws="qvm-x-akh">*tuta</AUni> -<AUni ws="qvm-x-akl">*tuta</AUni> -<AUni ws="qvm-x-ame">*tuta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.27" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2d00f099-e49a-4122-9bc4-bf3ce310a326" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tuta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b0557124-8d2c-47f0-a658-84d2830d0a30" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2763a576-6e04-4678-a3ac-29e09aea277b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tuta 
\entryTyp root 
\gENG early 
\gSPN temprano 
\e *tuta 
\c N0 
\ach tuta 
\akh tuta 
\acl tuta 
\akl tuta 
\ame tuta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="097c4f5c-6b4c-474d-a2b6-01e4090f7cb7" ownerguid="0487d560-7421-4859-bd46-91ee95dd2582"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="098d77fd-afb6-45d9-a5ae-1417dc2ff5a3" ownerguid="80415fac-b3d8-4e3c-bdb8-dc92f3c6dad8"> -<ExampleWords> -<AUni ws="en">boast, brag, claim, crow, bravado, name-drop, praise yourself, swagger, toot your own horn, blow your own trumpet, vaunt yourself</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to boasting?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="098fc963-a194-4adb-9e90-3b18c19ef248" ownerguid="9f0feef6-9a5f-4a9a-9a1d-9ee2874e71ee"> -<Form> -<AUni ws="qvm-x-ach">falta</AUni> -<AUni ws="qvm-x-acl">falta</AUni> -<AUni ws="qvm-x-akh">falta</AUni> -<AUni ws="qvm-x-akl">falta</AUni> -<AUni ws="qvm-x-ame">falta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="09900d9d-c9ab-440b-baed-936c9352d21d" ownerguid="0e88ebaa-ae1c-422f-baed-81b818bc79ed"> -<Form> -<AUni ws="qvm-x-ach">jutu</AUni> -<AUni ws="qvm-x-acl">jutu; juto</AUni> -<AUni ws="qvm-x-akh">jutu</AUni> -<AUni ws="qvm-x-akl">jutu; juto</AUni> -<AUni ws="qvm-x-ame">hutu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="0994e00e-fc22-4f9a-a615-87e2b2950c9c" ownerguid="82c34ac9-f8ec-4f31-9d54-f4f6f15f3e0e"> -<Form> -<AUni ws="qvm-x-ach">jagra</AUni> -<AUni ws="qvm-x-acl">jagra</AUni> -<AUni ws="qvm-x-akh">jaqra</AUni> -<AUni ws="qvm-x-akl">jaqra</AUni> -<AUni ws="qvm-x-ame">haqra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="09956d61-8a4e-4607-ae79-24530d9ef362" ownerguid="eb00b4c2-5b87-4ef8-9548-800fc5c9b524"> -<ExampleWords> -<AUni ws="en">damage (n), scar, wear (n), wear and tear</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the damage done to something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0995fdaf-d340-4f41-873c-6e700af4d76a" ownerguid="d4e73f6f-8a8f-47c7-8c51-fa2f62a215b3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">who</AUni> -<AUni ws="es">quien</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f3b235f4-af22-4c37-a01e-40f8c5a1428f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="0998102a-9702-4420-90d0-a4b0235d560e" ownerguid="7fe9dad7-6fb0-4829-8f85-482da9040667"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fare</AUni> -<AUni ws="es">pasaje</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="81ef87d3-af48-451b-8457-d55f25e83709" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="099c91ea-b3b2-4e99-8f1e-14ad8b395370"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">anota</AUni> -<AUni ws="qvm-x-acl">anota</AUni> -<AUni ws="qvm-x-akh">anota</AUni> -<AUni ws="qvm-x-akl">anota</AUni> -<AUni ws="qvm-x-ame">anota</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+anotar</AUni> -<AUni ws="qvm-x-acl">+anotar</AUni> -<AUni ws="qvm-x-akh">+anotar</AUni> -<AUni ws="qvm-x-akl">+anotar</AUni> -<AUni ws="qvm-x-ame">+anotar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.790" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e5576475-fd44-47bf-a530-df368639f508" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+anotar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5c2e5a51-7b7a-4730-9cf4-aaa16ae58ad5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d782fbdd-0c3d-4dc9-9221-a52989b95167" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +anotar 
\entryTyp root 
\gENG 
\gSPN 
\e +anotar 
\c V1 
\ach anota 
\akh anota 
\acl anota 
\akl anota 
\ame anota</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="099d024c-1c58-4239-951a-892e0ff979b0" ownerguid="f0f3c371-166e-4a66-849f-60d6fa7ad889"> -<ExampleWords> -<AUni ws="en">poet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who writes poetry?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="099d9539-baa5-4a7a-86b1-ebc30409efd7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">campanilla</AUni> -<AUni ws="qvm-x-acl">campanilla</AUni> -<AUni ws="qvm-x-akh">campanilla</AUni> -<AUni ws="qvm-x-akl">campanilla</AUni> -<AUni ws="qvm-x-ame">campanilla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+campanilla</AUni> -<AUni ws="qvm-x-acl">+campanilla</AUni> -<AUni ws="qvm-x-akh">+campanilla</AUni> -<AUni ws="qvm-x-akl">+campanilla</AUni> -<AUni ws="qvm-x-ame">+campanilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.31" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3d2ecf63-5ad1-4436-b086-b8fceda8e586" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+campanilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2553a4c6-6557-4000-835e-6f721ac16c8d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e6058f5d-0076-43da-8329-08082bfaa0a2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +campanilla 
\entryTyp root 
\gENG bell 
\gSPN campanilla 
\e +campanilla 
\c N0 
\ach campanilla 
\akh campanilla 
\acl campanilla 
\akl campanilla 
\ame campanilla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="099ea2f9-023e-4fd7-85b6-db009657ed4d" ownerguid="fb6c5e27-6fb5-4dac-ad1a-4a1d633df22e"> -<Form> -<AUni ws="qvm-x-ach">achpa</AUni> -<AUni ws="qvm-x-acl">achpa</AUni> -<AUni ws="qvm-x-akh">achpa</AUni> -<AUni ws="qvm-x-akl">achpa</AUni> -<AUni ws="qvm-x-ame">achpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="09a1eeb2-c085-4bc7-b560-18e53f546dc9" ownerguid="5e46fc16-b4dd-4c3e-8da3-978013893f5a"> -<Form> -<AUni ws="qvm-x-ach">lacti</AUni> -<AUni ws="qvm-x-acl">lacti; lacte</AUni> -<AUni ws="qvm-x-akh">lakti</AUni> -<AUni ws="qvm-x-akl">lakti; lakte</AUni> -<AUni ws="qvm-x-ame">lakti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="09a36a3b-e2d2-4576-8e1c-cfa444caecea" ownerguid="d27db482-9b02-4441-9078-cccc914c7d99"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">market</AUni> -<AUni ws="es">mercado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="87e42540-8dd6-49e9-b866-f958781af29e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="09a5e845-f390-4997-a23f-937528508f55" ownerguid="8242fc85-a703-4efa-a78a-0556a84e811e"> -<ExampleWords> -<AUni ws="en">bite</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a wound caused by an animal biting you?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="09a613ad-d3fb-41f4-8ce3-16b89e19c544" ownerguid="d603df77-080f-4d08-aa5f-dfd75afb576b"> -<Form> -<AUni ws="qvm-x-ach">wawatibiu; wawatibio</AUni> -<AUni ws="qvm-x-acl">wawatibiu; wawatibiu; wawatibio</AUni> -<AUni ws="qvm-x-akh">wawatibiu; wawatibio</AUni> -<AUni ws="qvm-x-akl">wawatibiu; wawatibiu; wawatibio</AUni> -<AUni ws="qvm-x-ame">wawatibiu; wawatibio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="09a6d500-cb22-4e36-b4db-2bb391014465" ownerguid="ef9cab13-702b-495f-8238-5a15e69b0bd4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">soft</AUni> -<AUni ws="es">suave</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3cba6442-a533-450e-89ca-da92c7240ad0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="09a7efa6-460e-40d5-bad5-f752f6f0bdfe" ownerguid="f3fa8080-c9e1-460c-bcd0-7ff404979d06"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="09a91a89-1936-4bc3-bca0-5206a35f67cd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guenti</AUni> -<AUni ws="qvm-x-acl">guenti; guente</AUni> -<AUni ws="qvm-x-akh">qenti</AUni> -<AUni ws="qvm-x-akl">qenti; qente</AUni> -<AUni ws="qvm-x-ame">qinti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qinti</AUni> -<AUni ws="qvm-x-acl">*qinti</AUni> -<AUni ws="qvm-x-akh">*qinti</AUni> -<AUni ws="qvm-x-akl">*qinti</AUni> -<AUni ws="qvm-x-ame">*qinti</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.185" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ad3d26c8-f9f7-498d-bd75-90faf8f9276d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qinti</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f350805b-9fc6-4598-8c82-75c9f8b8656c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2ced3144-ce52-42bd-8fda-e7d9a7e305d8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qinti 
\entryTyp root 
\gENG shrink 
\gSPN encogerse 
\e *qinti 
\c V1 
\mp +FinalI 
\ach guenti 
\akh qenti 
\acl guenti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl guente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qenti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qinti</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="09aa0843-05ca-4889-9c5f-372905366911"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gra:mus</AUni> -<AUni ws="qvm-x-acl">gra:mus</AUni> -<AUni ws="qvm-x-akh">gra:mus</AUni> -<AUni ws="qvm-x-akl">gra:mus</AUni> -<AUni ws="qvm-x-ame">gra:mus</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gramos</AUni> -<AUni ws="qvm-x-acl">+gramos</AUni> -<AUni ws="qvm-x-akh">+gramos</AUni> -<AUni ws="qvm-x-akl">+gramos</AUni> -<AUni ws="qvm-x-ame">+gramos</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.629" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7f9cadf3-e14a-491f-a9fe-90081d15405c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gramos</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="99572e5c-1820-4dbb-84a7-cac9192142f0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="630b9d40-d75c-47e3-981f-977fe78b16d7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gramos 
\entryTyp root 
\gENG gram 
\gSPN gramo 
\e +gramos 
\c N0 
\mp +FinalC 
\ach gra:mus 
\akh gra:mus 
\acl gra:mus 
\akl gra:mus 
\ame gra:mus</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="09ab51f2-c06d-4cdb-b92a-1b3948d97fdf" ownerguid="0f9ea100-4122-4980-8893-e7169c281d95"> -<Form> -<AUni ws="qvm-x-ach">üva</AUni> -<AUni ws="qvm-x-acl">üva</AUni> -<AUni ws="qvm-x-akh">üva</AUni> -<AUni ws="qvm-x-akl">üva</AUni> -<AUni ws="qvm-x-ame">üva</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="09ac3709-0b0e-4046-b6b2-7869d574aa0d" ownerguid="69541573-f845-4e77-91f6-1e3551fc6c82"> -<Abbreviation> -<AUni ws="en">9.7.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.731" /> -<DateModified val="2022-9-23 16:55:8.731" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the proper names of the continents. Only include the names of continents if your language has borrowed or adapted the name and you talk about them in your language.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Names of continents</AUni> -</Name> -<Questions> -<objsur guid="58d25a32-c0c8-46b2-8c42-4d810289b3f6" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="09ace5b3-13bb-4aea-b5f8-4bf4996d1126" ownerguid="636cd707-7999-474c-a06f-c07e118c34fb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="77f5e800-146b-49fa-8443-c3431abbffc2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="09ad79ad-6c71-4af5-8077-4aadd45a0758" ownerguid="119fefff-529d-43be-8a41-6f011df057a1"> -<Form> -<AUni ws="qvm-x-ach">tuyu</AUni> -<AUni ws="qvm-x-acl">tuyu; tuyu; tuyo</AUni> -<AUni ws="qvm-x-akh">tuyu</AUni> -<AUni ws="qvm-x-akl">tuyu; tuyu; tuyo</AUni> -<AUni ws="qvm-x-ame">tuyu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="09af8950-d4d6-4a5c-bcce-1ea4585553ad" ownerguid="0a12aec9-c600-46d1-b4fa-7ce4c8229bfd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="e3cbb5ca-4bda-4e7b-9342-f1c01c9e5519" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="d1dca488-8c14-4ff4-b2af-8b90b42f9392" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="09b00f2d-ade9-46ee-a265-43c2507292ff" ownerguid="7d9f48f5-aba3-486f-b49d-cd2cb0ac03f8"> -<ExampleWords> -<AUni ws="en">grape, pick, vine, vineyard, prune, winepress, cluster, wine, grape juice</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to growing grapes?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="09b0c84e-5e6c-4ac9-bea3-0f59877e101b" ownerguid="879e66bc-af29-4fe4-86e0-0047973a57d6"> -<ExampleWords> -<AUni ws="en">trip someone</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to causing someone to stumble?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="09b161bb-f4b4-4b51-8839-87fd772747d9" ownerguid="c2f01aa8-9f94-43c9-9ada-b1e4a60aba07"> -<ExampleWords> -<AUni ws="en">shoulder, armpit, upper arm, elbow, funny bone (nerve in elbow), forearm, lower arm, wrist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the parts of the arm?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="09b28265-dff7-4171-a8f9-dba380f80d49" ownerguid="efc4ecf6-f71a-47c6-9b9c-d5c59dab61f2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="09b55264-ed18-4159-a886-daf61ac69c60" ownerguid="0d31ea20-4230-4195-ba9a-98f07ef1e4c7"> -<Form> -<AUni ws="qvm-x-ach">wanu</AUni> -<AUni ws="qvm-x-acl">wanu; wanu; wano</AUni> -<AUni ws="qvm-x-akh">wanu</AUni> -<AUni ws="qvm-x-akl">wanu; wanu; wano</AUni> -<AUni ws="qvm-x-ame">wanu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="09b688ef-0a24-491a-b447-7c0bc8472c1c" ownerguid="a39fec65-5ada-4bf8-b219-93ba7d47ff87"> -<Form> -<AUni ws="qvm-x-ach">purificación</AUni> -<AUni ws="qvm-x-acl">purificación</AUni> -<AUni ws="qvm-x-akh">purificación</AUni> -<AUni ws="qvm-x-akl">purificación</AUni> -<AUni ws="qvm-x-ame">purificación</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="09b842ec-674c-4b0f-aa6b-63a1dc4869f6" ownerguid="9b158c9e-9ba5-4be2-a9a1-77ef888a3b06"> -<ExampleWords> -<AUni ws="en">element</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something that is pure?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="09b9a89f-38ee-4b45-99ed-a094074bd4f6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jatusag</AUni> -<AUni ws="qvm-x-acl">jatusag</AUni> -<AUni ws="qvm-x-akh">jatusaq</AUni> -<AUni ws="qvm-x-akl">jatusaq</AUni> -<AUni ws="qvm-x-ame">hatusaq</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hatusaq</AUni> -<AUni ws="qvm-x-acl">*hatusaq</AUni> -<AUni ws="qvm-x-akh">*hatusaq</AUni> -<AUni ws="qvm-x-akl">*hatusaq</AUni> -<AUni ws="qvm-x-ame">*hatusaq</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.690" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4dae2664-4192-4cb1-9e99-f8c0e5705c6e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hatusaq</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="af3144fa-fe8f-4b47-af67-8395cf48bba4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7f315ebe-5fae-44eb-86be-6d9fa5fb6992" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hatusaq 
\entryTyp root 
\gENG big 
\gSPN grande 
\e *hatusaq 
\c N0 
\mp +FinalC 
\ach jatusag 
\akh jatusaq 
\acl jatusag 
\akl jatusaq 
\ame hatusaq</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="09ba0db6-0881-4df8-8508-be23625f17fb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gati</AUni> -<AUni ws="qvm-x-acl">gati; gate</AUni> -<AUni ws="qvm-x-akh">qati</AUni> -<AUni ws="qvm-x-akl">qati; qate</AUni> -<AUni ws="qvm-x-ame">qati</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qati.v</AUni> -<AUni ws="qvm-x-acl">*qati.v</AUni> -<AUni ws="qvm-x-akh">*qati.v</AUni> -<AUni ws="qvm-x-akl">*qati.v</AUni> -<AUni ws="qvm-x-ame">*qati.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.144" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="30280d0a-8c9d-4a10-a4ac-75def661adce" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qati.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b51f3a5c-4030-4c4c-8ac1-f6ab88c4feab" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ab88c083-514f-4890-b2b5-f54d084505e9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qati.v 
\entryTyp root 
\gENG follow 
\gSPN seguir 
\e *qati.v 
\c V2 
\mp +FinalI 
\ach gati 
\akh qati 
\acl gati +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gate +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qati +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qate +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qati</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="09bb0ddc-2a10-47e8-80f5-d543c466f40d" ownerguid="a4ad6152-c5c0-4a2e-88ba-32585113f559"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rinse.mouth</AUni> -<AUni ws="es">enjuagar.la.boca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5790ff1a-77f8-42d9-b303-62b62fe8cfde" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="09bb0e30-aec2-4eec-bf87-2aecfcafb7d4" ownerguid="05371057-2fe4-49ef-b203-f5bd6727645e"> -<ExampleWords> -<AUni ws="en">shake, rattle, fan, move something back and forth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to shaking something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="09bb2570-9996-4368-b613-04e370a022ac" ownerguid="f5cd1354-93b8-47c7-97d3-9aadaa900381"> -<Form> -<AUni ws="qvm-x-ach">astüta</AUni> -<AUni ws="qvm-x-acl">astüta</AUni> -<AUni ws="qvm-x-akh">astüta</AUni> -<AUni ws="qvm-x-akl">astüta</AUni> -<AUni ws="qvm-x-ame">astüta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="09bb619c-6164-482b-8140-b281b1b69523" ownerguid="f47b07d9-eac9-402b-9988-5d450c8aac88"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 40.2 Marpuman jaticashganog problëmaman jaticashga caycashgäpitami jorgamashga.</Run> -</AStr> -</Example> -</rt> -<rt class="MoAffixAllomorph" guid="09bbe0d6-c1ce-4cee-985a-fe697f465465" ownerguid="7df152ed-3b6d-4a16-9135-89f5c742cd2f"> -<Form> -<AUni ws="qvm-x-ach">riycU</AUni> -<AUni ws="qvm-x-acl">riycU</AUni> -<AUni ws="qvm-x-akh">riykU</AUni> -<AUni ws="qvm-x-akl">riykU</AUni> -<AUni ws="qvm-x-ame">riykU</AUni> -</Form> -<IsAbstract val="True" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="09bd6438-a75a-4efc-b4a0-487ea2361c1c" ownerguid="6f92ba78-b724-4224-9345-f67900bdbee7"> -<Form> -<AUni ws="qvm-x-ach">club</AUni> -<AUni ws="qvm-x-acl">club</AUni> -<AUni ws="qvm-x-akh">club</AUni> -<AUni ws="qvm-x-akl">club</AUni> -<AUni ws="qvm-x-ame">club</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="09bf6181-150d-452c-9520-bed1b8a2d45c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jaylay</AUni> -<AUni ws="qvm-x-acl">jaylay</AUni> -<AUni ws="qvm-x-akh">jaylay</AUni> -<AUni ws="qvm-x-akl">jaylay</AUni> -<AUni ws="qvm-x-ame">haylay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*haylay</AUni> -<AUni ws="qvm-x-acl">*haylay</AUni> -<AUni ws="qvm-x-akh">*haylay</AUni> -<AUni ws="qvm-x-akl">*haylay</AUni> -<AUni ws="qvm-x-ame">*haylay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.700" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fcba786b-ba84-407a-ac6c-5311497bc97b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*haylay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="81706936-959a-437a-b9ab-ae642908dd78" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3ca343f4-2bf0-45c7-a792-a71c3a49b4b6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *haylay 
\entryTyp root 
\gENG hey 
\gSPN oye 
\e *haylay 
\c NOSUFF 
\ach jaylay 
\akh jaylay 
\acl jaylay 
\akl jaylay 
\ame haylay</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="09bf96f1-6e38-4fd9-823e-40442a5d6e25" ownerguid="56da6572-a106-43d5-ab55-28f96bf065ea"> -<Form> -<AUni ws="qvm-x-ach">mantsarïtsi</AUni> -<AUni ws="qvm-x-acl">mantsarëtsi; mantsarëtse</AUni> -<AUni ws="qvm-x-akh">mantsarïtsi</AUni> -<AUni ws="qvm-x-akl">mantsarëtsi; mantsarëtse</AUni> -<AUni ws="qvm-x-ame">mantsarïtsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="09bfc719-6673-4a3b-b8b6-c26332e80413" ownerguid="ea0c6f73-ae4d-44c8-93c6-91e7f5a6a50e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="dde07022-9c79-47bb-be00-673b3e769eb6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="09c10f22-64d6-4d20-ba2b-488ab8a46b67"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">trinchi; trinche</AUni> -<AUni ws="qvm-x-acl">trinchi; trinchi; trinche</AUni> -<AUni ws="qvm-x-akh">trinchi; trinche</AUni> -<AUni ws="qvm-x-akl">trinchi; trinchi; trinche</AUni> -<AUni ws="qvm-x-ame">trinchi; trinche</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+trenche</AUni> -<AUni ws="qvm-x-acl">+trenche</AUni> -<AUni ws="qvm-x-akh">+trenche</AUni> -<AUni ws="qvm-x-akl">+trenche</AUni> -<AUni ws="qvm-x-ame">+trenche</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.88" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="da857507-5bf5-4c57-8812-6ab790ec8e2c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+trenche</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a04a1673-c59c-4de4-83b4-6d86bc311414" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b82a296c-7f7b-4b54-9a35-38b9c5482b35" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +trenche 
\entryTyp root 
\gENG fork 
\gSPN tenedor 
\e +trenche 
\c N0 
\mp +FinalI 
\ach trinchi / ~_# 
\ach trinche / _# 
\akh trinchi / ~_# 
\akh trinche / _# 
\acl trinchi / ~_# 
\acl trinchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl trinche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl trinchi / ~_# 
\akl trinchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl trinche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame trinchi / ~_# 
\ame trinche / _# 
\i Exo 27.3 Altarcho lapan manëjucunaga canga broncipitami. Manëjucuna canga uchpa shuntacuna, tenäza, trinchicuna, tasoncuna y canalacuna.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="09c18216-5526-4860-b67f-7395edde392c" ownerguid="afdd8b8e-9502-4d06-94ee-e79815b65750"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The road is <almost> straight.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">almost, more or less, practically, virtually, not quite</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words indicate that something is almost some quality (such as some color or shape)?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="09c183ce-10d8-4856-b557-6be4a100a4f4"> -<Analyses> -<objsur guid="54a66603-d266-4e82-89f5-2fae943bc5cd" t="o" /> -</Analyses> -<Checksum val="1775778067" /> -<Form> -<AUni ws="qvm-x-akh">yarqamun</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="09c1cf0b-6918-4726-a853-f91abe7323ec" ownerguid="fcc204a3-eae4-46d1-a9dc-08864fde1772"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">My land is less than five acres.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">less than, under, below, lower, within, minus</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something is less than a particular number or amount?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="09c937a9-5d3e-47e8-a034-db3a5f946853" ownerguid="db86135b-faf9-4772-804e-e6db4eb2c546"> -<Form> -<AUni ws="qvm-x-ach">grämu</AUni> -<AUni ws="qvm-x-acl">grämu; grämu; grämo</AUni> -<AUni ws="qvm-x-akh">grämu</AUni> -<AUni ws="qvm-x-akl">grämu; grämu; grämo</AUni> -<AUni ws="qvm-x-ame">grämu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="09cb1cc4-1081-4d1d-a252-429312635957" ownerguid="509597cf-6a10-4649-9c6b-2529e16e30cd"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JER 4.13 ¡Cawalluncunapis anca luylucarcur chipshaman aywashganpitapis mas velozmi cörriycämun!</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="09cb5203-bb61-46c4-9a6d-47a052f42798" ownerguid="0f73685c-b28f-48dd-bb81-ee9c8297599e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="5b947597-4a62-4874-95f7-d149e411915f" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">firewood</AUni> -<AUni ws="es">leña</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4bf731e2-1d65-4743-8e01-518efec45f71" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="09cce723-fb14-402e-ae34-bb6d22711efd" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<ExampleWords> -<AUni ws="en">wade, paddle, slosh</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(21) What words refer to walking through water?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="09cd6b08-4f37-4ad5-b498-531bce53da02" ownerguid="24d3d7f9-0fda-4759-930b-6b721d3e9115"> -<ExampleWords> -<AUni ws="en">quickly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What adverbs are in your language?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="09cdb01e-a424-46e1-a306-caf3841c6378" ownerguid="b4ef7c71-cc06-4916-a9ba-bd22743582c0"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="09d13348-839e-470d-8dd2-c9a275d102bb" ownerguid="18885339-b20b-4ce5-a634-4a2231bc075a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="09d2356e-f6f4-4dd3-bde7-578b8302e025" ownerguid="da582e96-f239-40ee-869f-2230a87abe75"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="09d452b3-8f58-4d30-bdc8-3fa16032a0c2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wagrag</AUni> -<AUni ws="qvm-x-acl">wagrag</AUni> -<AUni ws="qvm-x-akh">waqraq</AUni> -<AUni ws="qvm-x-akl">waqraq</AUni> -<AUni ws="qvm-x-ame">waqraq</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waqraq</AUni> -<AUni ws="qvm-x-acl">*waqraq</AUni> -<AUni ws="qvm-x-akh">*waqraq</AUni> -<AUni ws="qvm-x-akl">*waqraq</AUni> -<AUni ws="qvm-x-ame">*waqraq</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.505" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="38f22da4-335e-4e40-803b-d83bc53162b8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waqraq</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cbb63853-32b5-4e8d-bbff-52b922b0f46d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a217b301-f6c7-4964-b4f8-84a5fd9e1c54" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waqraq 
\entryTyp root 
\gENG mad.bull 
\gSPN loco.toro 
\e *waqraq 
\c N0 
\mp +FinalC 
\ach wagrag 
\akh waqraq 
\acl wagrag 
\akl waqraq 
\ame waqraq</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="09d637e9-32c5-4d42-a220-51f672baef15" ownerguid="74778ce4-f823-4579-96fa-7ed43eedd31e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -<Sense> -<objsur guid="ed102c60-ed6d-498f-b2c4-a195d53a84e2" t="r" /> -</Sense> -</rt> -<rt class="MoAffixAllomorph" guid="09d6e3f4-ac57-4b38-87ae-3717616d9e2d" ownerguid="802c371e-6a7a-4929-b99a-dcbcc28b3d01"> -<Form> -<AUni ws="qvm-x-ach">rä</AUni> -<AUni ws="qvm-x-acl">rä</AUni> -<AUni ws="qvm-x-akh">rä</AUni> -<AUni ws="qvm-x-akl">rä</AUni> -<AUni ws="qvm-x-ame">raa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="4d5106b0-9756-4fc2-a2e3-b3bb0373fd9b" t="r" /> -</PhoneEnv> -</rt> -<rt class="LexEntry" guid="09d7ef9b-596d-4a68-b91d-e67fdaffa371"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">centa:vu</AUni> -<AUni ws="qvm-x-acl">centa:vu; centa:vu; centa:vo</AUni> -<AUni ws="qvm-x-akh">centa:vu</AUni> -<AUni ws="qvm-x-akl">centa:vu; centa:vu; centa:vo</AUni> -<AUni ws="qvm-x-ame">centa:vu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+centavo</AUni> -<AUni ws="qvm-x-acl">+centavo</AUni> -<AUni ws="qvm-x-akh">+centavo</AUni> -<AUni ws="qvm-x-akl">+centavo</AUni> -<AUni ws="qvm-x-ame">+centavo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.102" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="995a8838-a394-4f50-af55-aa1341df9c34" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+centavo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="11417b76-1ed9-42bb-88d9-e42b937a33df" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dfa3aab3-f8c5-420e-831b-dcd976926404" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +centavo 
\entryTyp root 
\gENG cent 
\gSPN centavo 
\e +centavo 
\c N0 
\ach centa:vu 
\akh centa:vu 
\acl centa:vu / _# 
\acl centa:vu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl centa:vo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl centa:vu / _# 
\akl centa:vu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl centa:vo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame centa:vu</Run> -</AStr> -</Custom> -</rt> -<rt class="PhCode" guid="09d9ad9c-a42b-4e5e-82cf-d307923c8c42" ownerguid="bcf89c4f-49cb-4a7f-8937-f35c715f70df"> -<Representation> -<AUni ws="qvm-x-ach">sh</AUni> -<AUni ws="qvm-x-acl">sh</AUni> -<AUni ws="qvm-x-akh">sh</AUni> -<AUni ws="qvm-x-akl">sh</AUni> -<AUni ws="qvm-x-ame">sh</AUni> -</Representation> -</rt> -<rt class="MoStemAllomorph" guid="09e28f00-ffdf-4db6-b1eb-0ca1d26ff434" ownerguid="8c9f539c-a2a5-4408-af33-8f8d44b99993"> -<Form> -<AUni ws="qvm-x-ach">lulu</AUni> -<AUni ws="qvm-x-acl">lulu; lulu; lulo</AUni> -<AUni ws="qvm-x-akh">lulu</AUni> -<AUni ws="qvm-x-akl">lulu; lulu; lulo</AUni> -<AUni ws="qvm-x-ame">lulu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="09e2d804-6b64-4d69-93ba-1882012368c8" ownerguid="d29f2c50-a011-4471-a730-5045de1ae4fe"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="09e49116-7275-469a-8592-9638e58b9237" ownerguid="2b0fbd58-ad45-48b6-b06f-72760f2d92ee"> -<Form> -<AUni ws="qvm-x-ach">cama</AUni> -<AUni ws="qvm-x-acl">cama</AUni> -<AUni ws="qvm-x-akh">kama</AUni> -<AUni ws="qvm-x-akl">kama</AUni> -<AUni ws="qvm-x-ame">kama</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="b27c54e7-0a24-46d7-b332-e63a45ecffc2" t="r" /> -</PhoneEnv> -</rt> -<rt class="CmDomainQ" guid="09e4fba8-ea8a-4dbf-a505-eed70e2d2000" ownerguid="8503660c-03af-49ee-86b6-525aab4da828"> -<ExampleWords> -<AUni ws="en">aural, auditory, audio, acoustic, sound (adj)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that has to do with hearing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="09e54276-03e9-47d0-9525-539e272e9c78" ownerguid="880647e5-6543-46dd-9178-8edae9272add"> -<ExampleWords> -<AUni ws="en">unwilling to learn, close your mind, closed minded, refuse to learn, won't listen to reason, stubborn, hard heart, mind made up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to being unwilling to learn?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="09ec1678-9ece-4925-8664-1388f34109e5" ownerguid="ad4d28bb-0408-4aa7-bbac-ed1c060f3023"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a3635cb7-6882-4b10-8a86-fa6a9943f4f5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="09eee567-709e-4487-83a0-3398e08647c0" ownerguid="6866ee4c-78cd-47d1-ba4a-8461fdcc5e2a"> -<ExampleWords> -<AUni ws="en">logic, reasoning</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a logical way of thinking?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="09f055ce-28a1-4fe8-b2b5-bc8b89258b9d" ownerguid="c52079c2-5ebf-4fd5-b9ef-6a21c492700f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="09f8b04b-6962-4164-83c1-a735afa8d7d6" ownerguid="87c499b3-5fab-45e0-9999-9c4fcbba1e2b"> -<ExampleWords> -<AUni ws="en">stepson, stepdaughter, stepchild</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) If you marry someone who already has children, what do you call his/her children?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="09f941b4-cac7-4e72-90a3-364a758c22dc" ownerguid="d086c2ad-2d11-4250-a25a-dc6538439db6"> -<ExampleWords> -<AUni ws="en">dual, twofold</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something used for two things?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="09fbbde3-dc23-47a6-9a1f-9f8f2f630e7a" ownerguid="be4ab208-1fa0-463f-9ca0-4c7e3e03aafd"> -<ExampleWords> -<AUni ws="en">lever, pulley, block and tackle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What tools are used for lifting things?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="09fcebfc-65b6-4d70-93a0-bad0a7419e7e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ya:tsi</AUni> -<AUni ws="qvm-x-acl">ya:tsi; ya:tse</AUni> -<AUni ws="qvm-x-akh">ya:tsi</AUni> -<AUni ws="qvm-x-akl">ya:tsi; ya:tse</AUni> -<AUni ws="qvm-x-ame">ya:tsi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ya:chi.1</AUni> -<AUni ws="qvm-x-acl">*ya:chi.1</AUni> -<AUni ws="qvm-x-akh">*ya:chi.1</AUni> -<AUni ws="qvm-x-akl">*ya:chi.1</AUni> -<AUni ws="qvm-x-ame">*ya:chi.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.719" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="640c6dd5-050d-4eb5-81d7-4a036fd584d7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ya:chi.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2e9ce871-af4b-4d67-a804-5ff2f8ffabda" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2bdde15a-8f71-4546-b70f-d8b7aeef885d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ya:chi.1 
\entryTyp root 
\gENG admonish 
\gSPN darle.idea 
\e *ya:chi.1 
\c V2 
\mp +FinalI 
\ach ya:tsi 
\akh ya:tsi 
\acl ya:tsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ya:tse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ya:tsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ya:tse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ya:tsi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="09fd268a-cf7e-46ed-9c16-3a66643bee37" ownerguid="d21db541-4122-465f-9db5-4c76f5e84426"> -<ExampleWords> -<AUni ws="en">earn, be paid, get paid, make, get, be on, gross</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to earning money?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0a05d9ef-def4-4ce5-94e7-20daa4d18320" ownerguid="5122f8b8-3894-457a-be2a-3e3d7463ba1a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="1b371a2b-fd94-4519-9c5d-02f1584945ad" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">candy</AUni> -<AUni ws="es">dulce</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="eb6c2b90-0655-403f-b167-c299d353e4ac" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0a06c6a4-43d7-4c27-81b9-89b06965d9f7" ownerguid="c8c74ec6-3f7a-4b45-b0e9-399b97c4a800"> -<ExampleWords> -<AUni ws="en">free someone, set free, liberate, emancipate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to freeing someone?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0a0c01d8-c297-45bc-91fa-6c0df85381c9" ownerguid="a9aac848-a15e-49a2-bf4c-4952f0ddb9ad"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">eyebrows</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f13415ab-c806-49f9-bda7-d8609bb6e407" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0a0c258e-d8d7-462a-85f7-01309b7fb372" ownerguid="f9d020d6-b129-4bb8-9509-3b4a6c27482e"> -<ExampleWords> -<AUni ws="en">interest, get someone interested, entertain, stimulate, stir, appeal to, attract someone's interest, attract someone's attention, interestingly, hold your attention, rekindle interest, revive interest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to causing someone to feel interested?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0a0cf596-e963-4a1e-895f-a899c89602ca" ownerguid="5bd88b18-f7b2-48d8-b98f-a2db116373f6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.for.someone</AUni> -<AUni ws="es">estar.para.uno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="55051bc0-fd09-48ca-8033-ba46a73f8429" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="0a0f975d-5952-44b1-9fa7-29a62adf19ed" ownerguid="41cef4fd-9a23-4439-b3e7-74a300b7a8cc"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="0a122985-f33d-4fbf-b87b-090714266af1" ownerguid="99c41bb7-6f4e-4287-b39c-89538f759f29"> -<Form> -<AUni ws="qvm-x-ach">aja; ajä</AUni> -<AUni ws="qvm-x-acl">aja; ajä</AUni> -<AUni ws="qvm-x-akh">aja; ajä</AUni> -<AUni ws="qvm-x-akl">aja; ajä</AUni> -<AUni ws="qvm-x-ame">aha; ahä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0a123879-7884-408a-8cb5-96e4154ddda4" ownerguid="2933a9c1-aa62-46fb-a03c-68aed7fae9b7"> -<ExampleWords> -<AUni ws="en">burn</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a fire burning?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0a12aec9-c600-46d1-b4fa-7ce4c8229bfd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">palchacha; palchacha:</AUni> -<AUni ws="qvm-x-acl">palchacha; palchacha:</AUni> -<AUni ws="qvm-x-akh">palchacha; palchacha:</AUni> -<AUni ws="qvm-x-akl">palchacha; palchacha:</AUni> -<AUni ws="qvm-x-ame">palchacha; palchacha:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*palchacha:</AUni> -<AUni ws="qvm-x-acl">*palchacha:</AUni> -<AUni ws="qvm-x-akh">*palchacha:</AUni> -<AUni ws="qvm-x-akl">*palchacha:</AUni> -<AUni ws="qvm-x-ame">*palchacha:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.666" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1ccfff78-d728-4e4f-af30-e66e03e0ea03" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*palchacha:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d1dca488-8c14-4ff4-b2af-8b90b42f9392" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="09af8950-d4d6-4a5c-bcce-1ea4585553ad" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *palchacha: 
\entryTyp root 
\gENG 
\gSPN 
\e *palchacha: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach palchacha foreshortened 
\ach palchacha: 
\akh palchacha foreshortened 
\akh palchacha: 
\acl palchacha foreshortened 
\acl palchacha: 
\akl palchacha foreshortened 
\akl palchacha: 
\ame palchacha foreshortened 
\ame palchacha: 
\i PSA 68.8 Tamyapis palchachayrag tamyamorgan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="0a1377a6-73a7-42e6-a810-97c3f51d3761"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">puñal</AUni> -<AUni ws="qvm-x-acl">puñal</AUni> -<AUni ws="qvm-x-akh">puñal</AUni> -<AUni ws="qvm-x-akl">puñal</AUni> -<AUni ws="qvm-x-ame">puñal</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+puñal</AUni> -<AUni ws="qvm-x-acl">+puñal</AUni> -<AUni ws="qvm-x-akh">+puñal</AUni> -<AUni ws="qvm-x-akl">+puñal</AUni> -<AUni ws="qvm-x-ame">+puñal</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.10" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="24ad69d7-6498-4482-bd74-f4d0f448fc77" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+puñal</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7bbc3e04-50a9-474b-bd24-45041683e6d4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cf79b2f6-aa13-46e8-82c1-5a9c82a5826f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +puñal 
\entryTyp root 
\gENG knife 
\gSPN 
\e +puñal 
\c N0 
\mp +FinalC 
\ach puñal 
\akh puñal 
\acl puñal 
\akl puñal 
\ame puñal</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="0a13ee4d-5b0b-4a09-ae28-0964e5581040" ownerguid="a16d9d81-5c04-47ce-9a21-8dab16896878"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="bb2a3bcd-5367-49e8-9291-d370db8dac50" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="0a148902-1fee-4fe1-8de1-9eb1d3b7f68d" ownerguid="aec0f6eb-10bb-40a6-a595-735f238f8f36"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">small</AUni> -<AUni ws="es">pequeño</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6455cfc4-68d1-4056-a751-c2d99674e773" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="0a1ad4c9-8bf3-448b-a27f-611813b305de" ownerguid="86287a4c-0d64-4f28-9a5c-17fb9df37ab6"> -<Abbreviation> -<AUni ws="en">8.5.1.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.668" /> -<DateModified val="2022-9-23 16:55:8.668" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that express the idea that something is under another thing. The concept 'under' is inherently relational, expressing the relative positions of two things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Under, below</AUni> -</Name> -<Questions> -<objsur guid="b3a35ece-823f-413c-abbc-99b8ecddbae8" t="o" /> -<objsur guid="e10b3231-2b38-40bd-b94d-d7e6b1b77e16" t="o" /> -<objsur guid="8b945390-bab3-4f80-8d86-3a54278af8b4" t="o" /> -<objsur guid="880e2332-b058-4d0e-9cea-1f1e826a43e8" t="o" /> -<objsur guid="e857f049-bf35-472e-87b8-ebd2a462a0af" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="0a1b26b2-2152-45e2-9b63-4a68fca73a90" ownerguid="5446b5cf-f05a-4bb2-89eb-ce63e27040f3"> -<Abbreviation> -<AUni ws="en">4.2.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.213" /> -<DateModified val="2022-9-23 16:55:8.213" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a musician.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Musician</AUni> -</Name> -<Questions> -<objsur guid="adc2293d-d6e3-428c-8c25-618bd91282c9" t="o" /> -<objsur guid="362d310c-2f64-450f-8996-92ec079aaa38" t="o" /> -<objsur guid="f62322ba-f27b-480f-b20e-909ffdb7bbf1" t="o" /> -<objsur guid="b4fdb8e4-30e8-4468-be4e-cf3e8f653bc6" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoAffixAllomorph" guid="0a1c9cf6-59e1-409f-91cc-4f2c76d802a2" ownerguid="1583f96b-9e4b-4f0d-af86-7189ced2a282"> -<Form> -<AUni ws="qvm-x-ach">shwan</AUni> -<AUni ws="qvm-x-acl">shwan</AUni> -<AUni ws="qvm-x-akh">shwan</AUni> -<AUni ws="qvm-x-akl">shwan</AUni> -<AUni ws="qvm-x-ame">shwan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0a1d63c7-e99c-4c98-90c7-0664d2c3ad29" ownerguid="bf25931d-4760-4c66-abe8-c05a6dc5adbe"> -<ExampleWords> -<AUni ws="en">fall, sink, settle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something falling or sinking into water?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0a1e1ea6-35c4-4405-9ee6-349d6a18db43" ownerguid="7185bd93-5281-46de-80af-767f0ec40ff6"> -<ExampleWords> -<AUni ws="en">mind, intellect, intelligence, reason, understanding, brain, head</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the mind?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0a1e5660-e498-41ca-8889-4ae845266f8d" ownerguid="89f83065-6807-460c-afbe-a629b2d801fa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="72f53e38-1be1-4dc6-bfb5-1b2d4951e1fc" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="818e2f97-8aa8-4406-aa42-1266a9fecf01" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="0a27d9d1-0f1f-475a-92a2-bbccf5b15f41" ownerguid="0f568473-880d-43bd-b5ce-590100fdcaf6"> -<Abbreviation> -<AUni ws="en">5.2.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.315" /> -<DateModified val="2022-9-23 16:55:8.315" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being hungry or thirsty.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Hungry, thirsty</AUni> -</Name> -<OcmCodes> -<Uni>261 Gratification and Control of Hunger; 271 Water and Thirst</Uni> -</OcmCodes> -<Questions> -<objsur guid="18fa8e4f-fcaf-4a16-8721-a2cee24cf900" t="o" /> -<objsur guid="2334f178-4aae-4745-86ec-2a6dd81ed0a6" t="o" /> -<objsur guid="d992814a-4297-4289-85c3-2c0316f918fa" t="o" /> -<objsur guid="aa509a31-3b12-4350-a4f1-5992f8edb52b" t="o" /> -<objsur guid="394aa396-e251-4098-9b6e-a879be42c59c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="0a285055-2502-4b08-bde9-d984a3f284b4" ownerguid="161cae07-d1cb-467c-920f-62ba9039584c"> -<ExampleWords> -<AUni ws="en">astronaut, cosmonaut, spaceman</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who travels in space?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0a288cfa-c3fa-4f48-8828-2e9662824527" ownerguid="3fd9fd6b-5a58-4c74-a970-1036a5de58c2"> -<Form> -<AUni ws="qvm-x-ach">shuya</AUni> -<AUni ws="qvm-x-acl">shuya</AUni> -<AUni ws="qvm-x-akh">shuya</AUni> -<AUni ws="qvm-x-akl">shuya</AUni> -<AUni ws="qvm-x-ame">shuya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="0a2abc67-e668-4b2c-9367-6205b0c29076" ownerguid="823d9c71-5417-40d9-b10d-fca0ad206f45"> -<Form> -<AUni ws="qvm-x-ach">maldiciona</AUni> -<AUni ws="qvm-x-acl">maldiciona</AUni> -<AUni ws="qvm-x-akh">maldiciona</AUni> -<AUni ws="qvm-x-akl">maldiciona</AUni> -<AUni ws="qvm-x-ame">maldiciona</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="0a2c0ba6-fabc-4e97-88bf-90407caa091b" ownerguid="0fc074ae-9373-4ab7-b894-701b76f65e66"> -<Form> -<AUni ws="qvm-x-ach">tushu</AUni> -<AUni ws="qvm-x-acl">tushu; tushu; tusho</AUni> -<AUni ws="qvm-x-akh">tushu</AUni> -<AUni ws="qvm-x-akl">tushu; tushu; tusho</AUni> -<AUni ws="qvm-x-ame">tushu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="0a306dff-f9ce-4ba5-bb33-8f85d612ad75" ownerguid="1a1247aa-8b89-4258-8aba-d5fd36f52574"> -<Form> -<AUni ws="qvm-x-ach">punsha</AUni> -<AUni ws="qvm-x-acl">punsha</AUni> -<AUni ws="qvm-x-akh">punsha</AUni> -<AUni ws="qvm-x-akl">punsha</AUni> -<AUni ws="qvm-x-ame">punsha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="0a350627-948b-483b-800b-bc18ff6a28fe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cruza</AUni> -<AUni ws="qvm-x-acl">cruza</AUni> -<AUni ws="qvm-x-akh">cruza</AUni> -<AUni ws="qvm-x-akl">cruza</AUni> -<AUni ws="qvm-x-ame">cruza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cruzar</AUni> -<AUni ws="qvm-x-acl">+cruzar</AUni> -<AUni ws="qvm-x-akh">+cruzar</AUni> -<AUni ws="qvm-x-akl">+cruzar</AUni> -<AUni ws="qvm-x-ame">+cruzar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.223" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4153efe3-67e5-482c-ac36-1db356ab6c57" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cruzar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="de21a7f3-f5b2-4fc3-a759-bbcb78b4fb99" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b352f77d-89e8-435f-a55a-d1f0af8c7ac9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cruzar 
\entryTyp root 
\gENG cross 
\gSPN cruzar 
\e +cruzar 
\c V2 
\ach cruza 
\akh cruza 
\acl cruza 
\akl cruza 
\ame cruza</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="0a3585ec-0b89-4307-bf04-aa0a7038b6b3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ratash</AUni> -<AUni ws="qvm-x-acl">ratash</AUni> -<AUni ws="qvm-x-akh">ratash</AUni> -<AUni ws="qvm-x-akl">ratash</AUni> -<AUni ws="qvm-x-ame">ratash</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ratash</AUni> -<AUni ws="qvm-x-acl">*ratash</AUni> -<AUni ws="qvm-x-akh">*ratash</AUni> -<AUni ws="qvm-x-akl">*ratash</AUni> -<AUni ws="qvm-x-ame">*ratash</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.287" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="58f35c1c-f406-4154-b51b-02d8ec6608e0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ratash</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a374c677-3d81-423f-928f-57d2eab6f9d4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="db7dde18-9c83-46cd-bc20-de26b4f14818" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ratash 
\entryTyp root 
\gENG rag 
\gSPN trapo 
\e *ratash 
\c N0 
\mp +FinalC 
\ach ratash 
\akh ratash 
\acl ratash 
\akl ratash 
\ame ratash</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0a362905-4504-4c62-9f84-89d9c7002e38" ownerguid="f2022802-4f43-4fa2-8c58-33a8b9e75895"> -<ExampleWords> -<AUni ws="en">increase, go up, rise, grow, climb, gain, escalate, pick up, improve, widen, augment, expand</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to something increasing in number or amount?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0a36fea1-b9b2-4331-bf74-4decc150be99" ownerguid="12300321-6ee6-4f3a-aaee-90d90c7022ab"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">crack</AUni> -<AUni ws="es">pachurarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4ae9ffb9-bb8f-4d24-8873-2be38e3119a6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="0a37e7d5-b10e-4f1d-baf0-e71668425b3e" ownerguid="ffd0547e-e537-4614-ac3f-6d8cd3351f33"> -<Abbreviation> -<AUni ws="en">1.6.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the parts of an insect.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Parts of an insect</AUni> -</Name> -<Questions> -<objsur guid="0eb13bd5-2809-4098-bc53-00e844ce6d18" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="0a39c484-07ea-454b-9cfa-511197ca8380"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yuquish</AUni> -<AUni ws="qvm-x-acl">yuquish</AUni> -<AUni ws="qvm-x-akh">yukish</AUni> -<AUni ws="qvm-x-akl">yukish</AUni> -<AUni ws="qvm-x-ame">yukish</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yukish</AUni> -<AUni ws="qvm-x-acl">*yukish</AUni> -<AUni ws="qvm-x-akh">*yukish</AUni> -<AUni ws="qvm-x-akl">*yukish</AUni> -<AUni ws="qvm-x-ame">*yukish</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.790" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="99975b42-aa57-4b92-b56a-cfa75f514bb4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yukish</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ed6e332d-89cd-40ec-be56-2e0d6e61bb22" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="da81ccc2-dbe7-4080-9b46-b1d823e936da" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yukish 
\entryTyp root 
\gENG thrush 
\gSPN zorzal 
\e *yukish 
\c N0 
\mp +FinalC 
\ach yuquish 
\akh yukish 
\acl yuquish 
\akl yukish 
\ame yukish</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="0a3c4ad4-5c0e-4a68-8a67-f4e6d2191140"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lente:jas</AUni> -<AUni ws="qvm-x-acl">lente:jas</AUni> -<AUni ws="qvm-x-akh">lente:jas</AUni> -<AUni ws="qvm-x-akl">lente:jas</AUni> -<AUni ws="qvm-x-ame">lente:jas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lentejas.1</AUni> -<AUni ws="qvm-x-acl">+lentejas.1</AUni> -<AUni ws="qvm-x-akh">+lentejas.1</AUni> -<AUni ws="qvm-x-akl">+lentejas.1</AUni> -<AUni ws="qvm-x-ame">+lentejas.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.740" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2871a89b-d85d-4173-9566-825dc08dcebe" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lentejas.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5b484f18-2b64-44ed-8359-72507819e703" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="14f9d479-2737-4d72-8831-dfb7ec34f4a1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lentejas.1 
\entryTyp root 
\gENG lentils 
\gSPN lentejas 
\e +lentejas.1 
\c N0 
\mp +FinalC 
\ach lente:jas 
\akh lente:jas 
\acl lente:jas 
\akl lente:jas 
\ame lente:jas</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="0a42fd83-3b30-4c85-bb68-f5132e9ffeee" ownerguid="3dd684e6-75d9-41f4-aaa3-fb0cb3c7d400"> -<Abbreviation> -<AUni ws="en">4.4.4.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to protecting someone from danger or being hurt.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Protect</AUni> -</Name> -<Questions> -<objsur guid="fdb7fef7-7288-4df9-8a0e-54f1dd07bd7d" t="o" /> -<objsur guid="8937097e-6f94-4fd5-b5a1-cb65745b5d79" t="o" /> -<objsur guid="6f645a54-c85d-42ec-bfa3-1877d21d175b" t="o" /> -<objsur guid="ff593f68-0f1e-4121-8bce-1db6165a362a" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="738a09a5-59df-40f9-8a4e-176e00d03bbf" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="0a442874-c534-437b-ad54-0a941d25b112" ownerguid="2f33b4f7-25dd-447b-b1c7-354c295a270d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">open</AUni> -<AUni ws="es">abrir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1f14932d-1bfa-4097-8adf-9b2fd9513672" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="0a4d2b93-e0ea-48d5-83db-57831794a8df"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gachpi</AUni> -<AUni ws="qvm-x-acl">gachpi; gachpi; gachpe</AUni> -<AUni ws="qvm-x-akh">qachpi</AUni> -<AUni ws="qvm-x-akl">qachpi; qachpi; qachpe</AUni> -<AUni ws="qvm-x-ame">qachpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qatrpi</AUni> -<AUni ws="qvm-x-acl">*qatrpi</AUni> -<AUni ws="qvm-x-akh">*qatrpi</AUni> -<AUni ws="qvm-x-akl">*qatrpi</AUni> -<AUni ws="qvm-x-ame">*qatrpi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.153" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8993babd-2056-4e05-b3b6-6514b94e8bc1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qatrpi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b3d4de0d-7d4d-475c-af97-bcf24045f927" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d9dd063e-f77a-4a1a-9315-6e23a1e84ab1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qatrpi 
\entryTyp root 
\gENG loose.rocks 
\gSPN piedras.sueltas 
\e *qatrpi 
\c N0 
\mp +FinalI 
\ach gachpi 
\akh qachpi 
\acl gachpi / _# 
\acl gachpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gachpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qachpi / _# 
\akl qachpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qachpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qachpi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="0a538370-b871-4d2a-beab-b265aae9d4a1" ownerguid="955f2d12-877d-4c57-8b27-5a32a4a58ed4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="06b4d4c4-c7c4-4f46-8b20-866109eba82e" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">royal</AUni> -<AUni ws="es">real</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4415172e-f4db-4b4d-919c-5ff95090df8e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="0a54d8cc-a702-496f-b6bd-18906798c5dd" ownerguid="97cfa993-e9f4-4f63-82d4-feaf1134c864"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="84445342-5721-4971-8f39-4d08f2356c81" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">fast</AUni> -<AUni ws="es">rápido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="427caf99-75f8-44cc-8bd5-6d0f4384aa07" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="0a59434d-2634-4514-ab44-82236e2c0e2b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">garapa:chu</AUni> -<AUni ws="qvm-x-acl">garapa:chu; garapa:chu; garapa:cho</AUni> -<AUni ws="qvm-x-akh">qarapa:chu</AUni> -<AUni ws="qvm-x-akl">qarapa:chu; qarapa:chu; qarapa:cho</AUni> -<AUni ws="qvm-x-ame">qarapa:chu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qarapa:tru</AUni> -<AUni ws="qvm-x-acl">*qarapa:tru</AUni> -<AUni ws="qvm-x-akh">*qarapa:tru</AUni> -<AUni ws="qvm-x-akl">*qarapa:tru</AUni> -<AUni ws="qvm-x-ame">*qarapa:tru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.104" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="084e38ef-e20f-41da-b507-87404743054b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qarapa:tru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="66c350c8-0089-4f24-83ed-06ac4e1d8691" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="71d5b214-89a2-4ef6-b08b-8c7392ef5d3d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qarapa:tru 
\entryTyp root 
\gENG naked 
\gSPN desnudo 
\e *qarapa:tru 
\c N0 
\ach garapa:chu 
\akh qarapa:chu 
\acl garapa:chu / _# 
\acl garapa:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl garapa:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qarapa:chu / _# 
\akl qarapa:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qarapa:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qarapa:chu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoAffixAllomorph" guid="0a59de77-f86e-4519-84b2-594c7bcda84e" ownerguid="9dafa8db-ebe1-4b32-a643-f84cc1a86c0d"> -<Form> -<AUni ws="qvm-x-ach">siki</AUni> -<AUni ws="qvm-x-acl">siki</AUni> -<AUni ws="qvm-x-akh">siki</AUni> -<AUni ws="qvm-x-akl">siki</AUni> -<AUni ws="qvm-x-ame">siki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0a5a7843-e0ed-4ed0-a85c-e200322a1b4f" ownerguid="6bc8e911-36f2-4d45-b237-2bdb6c03cc11"> -<ExampleWords> -<AUni ws="en">be around, surrounding</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is around something else?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0a66230c-6cd1-4080-a647-2aa8dd2897df" ownerguid="d29f2c50-a011-4471-a730-5045de1ae4fe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="8d9ba132-fa95-4759-93ea-e4e60f9f662c" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">suspenders</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="09e2d804-6b64-4d69-93ba-1882012368c8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="0a68028f-7bf1-4084-93b0-a79fbd9d7ddb" ownerguid="1ec11352-4001-4c0e-9746-549a1525b19b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">g</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">g</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">q</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">q</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">q</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7feef4b7-a285-4201-a3a4-057f77618b78" t="r" /> -</Morph> -<Msa> -<objsur guid="964f8962-17d5-4738-8902-97236137c419" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="0a696070-42b8-4b5f-b7cc-31b69f2f2d25" ownerguid="94f406f8-a186-4f07-ab69-7457479fd6a5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="dddd1ad2-b977-4cbc-add5-0d8543cadc30" t="o" /> -</Examples> -<Gloss> -<AUni ws="es">levadura</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4073645e-af63-4f01-814f-0f8f3f376227" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="0a6ddc7a-f8fb-4625-b1c6-b4aff3a08beb" ownerguid="4ae3f90f-5e36-4988-b2d5-c877470dc672"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StTxtPara" guid="0a6ddf7d-44ad-4742-b444-7e394e248d2a" ownerguid="1b3624a5-d4f7-4190-9e19-d074a59aa870"> -<Contents> -<Str> -<Run ws="qvm-x-akh">nipäkun</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="cf27175f-4efc-4537-8030-90e793a239b0" t="o" /> -</Segments> -</rt> -<rt class="MoStemAllomorph" guid="0a6ddfbf-1b19-4110-9214-1e4d160f2179" ownerguid="63be33e7-9ca2-468d-9ff8-a1b813aacb74"> -<Form> -<AUni ws="qvm-x-ach">chawi</AUni> -<AUni ws="qvm-x-acl">chawi; chawi; chawe</AUni> -<AUni ws="qvm-x-akh">chawi</AUni> -<AUni ws="qvm-x-akl">chawi; chawi; chawe</AUni> -<AUni ws="qvm-x-ame">chawi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="0a6f8fa6-35f1-4a79-bd15-9219aabcb1f1" ownerguid="3fb6e4bb-c608-4d3e-bd47-193a546b6c26"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="0a70d42a-ffca-4398-8c95-86b8e9cfc112" ownerguid="92c1bb05-e698-45df-abd3-e4aea63be3cb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="0a746590-24b7-41fe-b7c2-902bc2e3c5da" ownerguid="432a3698-8fab-4a99-8e76-d0672bb53876"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">amaze</AUni> -<AUni ws="es">espantar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7e6304b9-4271-4bcb-995e-d41aadf9b70d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="0a747b3d-4456-45c2-b25a-b42633f5f7fc" ownerguid="b2b91f6a-9446-46b1-ab86-c011a5b6597e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">weakness</AUni> -<AUni ws="es">debilidad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5c2352f2-64e9-40c2-8e11-2706c775fa1d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="0a75e517-fa73-453b-b77e-dc73f12fb569"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">legi:timu</AUni> -<AUni ws="qvm-x-acl">legi:timu; legi:timu; legi:timo</AUni> -<AUni ws="qvm-x-akh">legi:timu</AUni> -<AUni ws="qvm-x-akl">legi:timu; legi:timu; legi:timo</AUni> -<AUni ws="qvm-x-ame">legi:timu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+legítimo</AUni> -<AUni ws="qvm-x-acl">+legítimo</AUni> -<AUni ws="qvm-x-akh">+legítimo</AUni> -<AUni ws="qvm-x-akl">+legítimo</AUni> -<AUni ws="qvm-x-ame">+legítimo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.720" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2f4e5b2e-ec3c-4fb7-b766-8cda065082a4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+legítimo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d6a1cbb1-5770-4b64-bbf1-5255b7f78b9e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="160abd54-9380-48fc-93a7-13e17ad73574" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +legítimo 
\entryTyp root 
\gENG genuine 
\gSPN legítimo 
\e +legítimo 
\c N0 
\ach legi:timu 
\akh legi:timu 
\acl legi:timu / _# 
\acl legi:timu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl legi:timo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl legi:timu / _# 
\akl legi:timu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl legi:timo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame legi:timu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0a78bd27-1512-4791-a73a-dc5913c070c2" ownerguid="721e7782-9add-41fa-a7cf-659d5ca33926"> -<ExampleWords> -<AUni ws="en">play against, be against, versus</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to play against someone?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="0a7978e2-746f-408a-a779-cf02317ded88" ownerguid="4231feeb-d7d1-4f48-907e-6cbe21827c29"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">waga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">waga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">waqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">waqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">waqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d100a60e-40fa-45d4-8643-92375fc3d00c" t="r" /> -</Morph> -<Msa> -<objsur guid="dae1adcc-bc09-4a2e-8fca-8dd1fcb23810" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="0a7b860b-4a66-4def-a29a-54a4d7591623" ownerguid="12c172dd-8bce-4d8d-9f64-f9faeea783ba"> -<Form> -<AUni ws="qvm-x-ach">pägina</AUni> -<AUni ws="qvm-x-acl">pägina</AUni> -<AUni ws="qvm-x-akh">pägina</AUni> -<AUni ws="qvm-x-akl">pägina</AUni> -<AUni ws="qvm-x-ame">pägina</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="0a7bdf45-0592-4202-85d5-8d05c0c37576" ownerguid="0b0e8123-4c7c-4ac9-a3ff-720f47c9a5c9"> -<Form> -<AUni ws="qvm-x-ach">entenädu</AUni> -<AUni ws="qvm-x-acl">entenädu; entenädu; entenädo</AUni> -<AUni ws="qvm-x-akh">entenädu</AUni> -<AUni ws="qvm-x-akl">entenädu; entenädu; entenädo</AUni> -<AUni ws="qvm-x-ame">entenädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="0a7bfd3f-f601-43ba-bb3a-a74421e00cd4" ownerguid="2ccf76d1-7700-4a6b-b4b7-2e6492c51791"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">reciprocity</AUni> -<AUni ws="es">reciprocidad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3785b47d-8b2e-46bb-9823-a2bc88deece4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="0a7cd241-9c33-48fc-be78-227c6caf0313" ownerguid="f10944fa-5e6d-42e6-81ed-6a2a08118773"> -<Form> -<AUni ws="qvm-x-ach">shuyu</AUni> -<AUni ws="qvm-x-acl">shuyu; shuyo</AUni> -<AUni ws="qvm-x-akh">shuyu</AUni> -<AUni ws="qvm-x-akl">shuyu; shuyo</AUni> -<AUni ws="qvm-x-ame">shuyu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0a7cecf8-6d20-4a73-b8b4-6f06adf1ff5c" ownerguid="8affe94d-a396-4404-a0d7-c65046e617e6"> -<ExampleWords> -<AUni ws="en">be absent, not be here, not be around, be out, not be in, be away, missing, be off, not be at, not be there, absence, be gone, not present, be away, nowhere to be found, out of sight, truant, absent without leave, AWOL, missing in action, not show up, make yourself scarce, minus someone, be lacking, lose, elsewhere, somewhere else</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something or someone is not in a particular place?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0a7e8393-c2b8-4a2a-aa65-2f236b18a83e" ownerguid="21c84cdb-cb9f-452e-a14a-9be78dcd285b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">thread</AUni> -<AUni ws="es">hilo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fd78cd1e-aa35-4076-8446-9bcd658e9f7f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="0a816fe4-cb8f-4e17-a626-625deb658fde" ownerguid="44b6e20f-e5f5-43ff-8b32-3eec05151f47"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">pozo.grande</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="70f34efd-1ebd-4a4a-a816-889b9fc168c5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="0a8275cd-f851-47ac-8103-2d906d2a4417" ownerguid="a7a204aa-c7e2-40c9-9734-bf83a5e9b1a8"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="0a85ee64-e466-4295-8e2c-5b06c8e3054f" ownerguid="66d8b546-92f5-4e94-b992-08be81c3d30c"> -<Abbreviation> -<AUni ws="en">7.7.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.549" /> -<DateModified val="2022-9-23 16:55:8.549" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to pressing something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>19E Press</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Press</AUni> -</Name> -<Questions> -<objsur guid="cb8ed52c-3286-4f38-9623-4e071cb1b1d8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="0a8711d9-5044-46de-9451-6cbc2a14ce49" ownerguid="b80bb21a-ea5e-11de-8c5d-0013722f8dec"> -<Abbreviation> -<AUni ws="en">takesREFml</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-10-21 16:41:46.325" /> -<DateModified val="2022-10-21 16:42:20.974" /> -<Description> -<AStr ws="en"> -<Run ws="en">Those roots which can take -ka, REFml</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">takes REFml</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="0a876e85-8442-4b81-a3de-5e0efb0f297f" ownerguid="977ccc2a-3214-49ae-b752-bc1f9e878cfc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1 V2/V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">PLIMPF</AUni> -<AUni ws="es">PLIMPF</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fa42621c-0397-4bd6-a862-5548780fa809" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0a8b988a-6a14-4b2a-8831-ab27bf97bf14" ownerguid="ba06de9e-63e1-43e6-ae94-77bea498379a"> -<ExampleWords> -<AUni ws="en">no one, nobody</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to no person?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0a8c55d6-1b79-4cfe-aef5-ac180fa65968"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">útil; u:til</AUni> -<AUni ws="qvm-x-acl">útil; u:til; u:tel</AUni> -<AUni ws="qvm-x-akh">útil; u:til</AUni> -<AUni ws="qvm-x-akl">útil; u:til; u:tel</AUni> -<AUni ws="qvm-x-ame">útil; u:til</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+útil</AUni> -<AUni ws="qvm-x-acl">+útil</AUni> -<AUni ws="qvm-x-akh">+útil</AUni> -<AUni ws="qvm-x-akl">+útil</AUni> -<AUni ws="qvm-x-ame">+útil</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.330" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2bf6e7e9-a3f7-4218-8b39-c37b126e3a85" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+útil</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cc0f4c72-fa26-4b71-9b93-bab1197ba920" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0289cf5c-a8e9-47a6-b3d2-6bf64efce469" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +útil 
\entryTyp root 
\gENG 
\gSPN 
\e +útil 
\c N0 
\mp +FinalC 
\ach útil / _# 
\ach u:til / ~_# 
\akh útil / _# 
\akh u:til / ~_# 
\acl útil / _# 
\acl u:til +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl u:tel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl útil / _# 
\akl u:til +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl u:tel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame útil / _# 
\ame u:til / ~_# 
\i PRO 19.8 Yachacushgannog cawag runaga imalapagpis ütil car cushishgami cawan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="0a908ce9-68eb-49ba-a718-ff96af7a6d60" ownerguid="3917729f-c2d7-4835-a6f1-23a15428eec8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">luto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6182d682-fe52-4dc1-9302-daaf309dad4a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="0a90f312-de7d-4b8f-8ad0-003d454b6c6a" ownerguid="fafe2d9f-e8c3-48b4-9aa9-d05ab9460952"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lose</AUni> -<AUni ws="es">perder</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d3b5bd39-2c5a-41e1-b845-eae6a9f3cdb4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="0a91423d-4b5e-46b7-a4d4-9f40479f6ef8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wayantsa</AUni> -<AUni ws="qvm-x-acl">wayantsa</AUni> -<AUni ws="qvm-x-akh">wayantsa</AUni> -<AUni ws="qvm-x-akl">wayantsa</AUni> -<AUni ws="qvm-x-ame">wayantsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wayancha</AUni> -<AUni ws="qvm-x-acl">*wayancha</AUni> -<AUni ws="qvm-x-akh">*wayancha</AUni> -<AUni ws="qvm-x-akl">*wayancha</AUni> -<AUni ws="qvm-x-ame">*wayancha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.607" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d283f59e-3908-481b-9bdc-4528d13de309" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wayancha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="07c3b761-7d30-488c-8656-4a795ec3c3c5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a03f7b4e-13d1-402b-89df-8a3b4b5f53c2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wayancha 
\entryTyp root 
\gENG 
\gSPN 
\e *wayancha 
\c N0 
\ach wayantsa 
\akh wayantsa 
\acl wayantsa 
\akl wayantsa 
\ame wayantsa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0a917381-a6f8-4ad8-aa69-4bccb8852391" ownerguid="d586a164-ac8f-4356-8aa8-07721c2b5e09"> -<ExampleWords> -<AUni ws="en">letter, note, memo, correspondence, epistle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a letter?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0a920e88-dd41-41cc-839c-0b44aa1d33b2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">eda:</AUni> -<AUni ws="qvm-x-acl">eda:</AUni> -<AUni ws="qvm-x-akh">eda:</AUni> -<AUni ws="qvm-x-akl">eda:</AUni> -<AUni ws="qvm-x-ame">eda:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+edad</AUni> -<AUni ws="qvm-x-acl">+edad</AUni> -<AUni ws="qvm-x-akh">+edad</AUni> -<AUni ws="qvm-x-akl">+edad</AUni> -<AUni ws="qvm-x-ame">+edad</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.447" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4b715269-a246-4604-b079-9b61322d7ce8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+edad</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="db25ad9a-1ea9-420d-9ec4-8091d3836976" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f3c8b875-3b2c-447c-95d7-6e79afc1353f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +edad 
\entryTyp root 
\gENG age 
\gSPN edad 
\e +edad 
\c N0 
\mp NeverForeshortened 
\ach eda: 
\akh eda: 
\acl eda: 
\akl eda: 
\ame eda: 
\mp +FinalC 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0a94999d-ade1-45ef-9317-66e175f93c7a" ownerguid="a894d991-d5da-45a6-9c62-009133257f36"> -<ExampleWords> -<AUni ws="en">symptom, sign, indication, evidence, warning, pathology</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a symptom?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0a9689c9-cd8c-4dce-a6cc-1f17f039fca1" ownerguid="bb0f8f80-c1c7-42ea-806c-41492deae74d"> -<Form> -<AUni ws="qvm-x-ach">caruna</AUni> -<AUni ws="qvm-x-acl">caruna</AUni> -<AUni ws="qvm-x-akh">karuna</AUni> -<AUni ws="qvm-x-akl">karuna</AUni> -<AUni ws="qvm-x-ame">karuna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0a98cc0d-9832-4b13-ace2-cce34498d584" ownerguid="fda0c1ac-5728-4ba2-9f8e-827f161b5bb1"> -<ExampleWords> -<AUni ws="en">spectator, viewer, audience, onlooker, observer, lookout</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to someone who is watching?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0a98fdc2-e713-4f67-87cf-90aea29f99b4" ownerguid="e8fe404b-22ae-4e2b-bb69-426a58f2f72f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="0aa14179-fcb2-4311-8cf4-6a844b389b3c" ownerguid="43848228-1b74-4d32-a279-c6826f9190fd"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="0aa1d6a2-d80e-4316-809e-18b67b0cf744" ownerguid="ee0585b1-627a-4a71-888d-b5d82619431e"> -<ExampleWords> -<AUni ws="en">Great Britain, United States of America, Canada, Australia, New Zealand, South Africa, Ireland</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the proper names of the countries where your language is spoken?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0aa21c2a-24bb-45cb-88a5-5a0161f6177c" ownerguid="31d04eec-f855-4675-88e3-3e62cca59a84"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cut</AUni> -<AUni ws="es">cortar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a315f87a-e9b6-4fe1-b9fd-5cc54dd57ecf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0aa2e71e-ebae-402d-85bc-b98d7d9a7589" ownerguid="b6ead5e6-dab5-4941-9017-d03452182709"> -<ExampleWords> -<AUni ws="en">expert, professional, master, craftsman, specialist, old hand, old-timer, the best we have, leader in his field, on the cutting edge, senior, graduate, doctor, consultant, trainer, teacher, is degreed, has a degree</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to an expert?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0aa907ba-f769-4b75-a075-63ccd3c93d51" ownerguid="018cd6f2-4772-47b7-a059-d64dc4cee2f6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="27280dac-32bf-4b69-b004-10a471de5254" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="0aaacffe-9b6c-49a7-bf68-c0f9ff3e120e" ownerguid="f7960e84-5af9-4999-9028-783058aa8c5c"> -<Abbreviation> -<AUni ws="en">8.1.5.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.569" /> -<DateModified val="2022-9-23 16:55:8.569" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the most--the largest number or amount; or the least--the smallest number or amount. Most/least may refer to the largest/smallest number possible or needed. If there are several groups being counted, most/least may refer to the largest/smallest group.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Most, least</AUni> -</Name> -<Questions> -<objsur guid="e7ac34c0-06af-4bad-bf9c-d2718ce0b4dc" t="o" /> -<objsur guid="cc5cb844-3c4d-4a1d-a299-98d65b241073" t="o" /> -<objsur guid="1371fe6c-df75-4728-bf23-a8a1cbca2fb1" t="o" /> -<objsur guid="234784ab-bf1f-4aa6-b526-bad257cd3cd2" t="o" /> -<objsur guid="64b023f2-da95-4ceb-91a2-0d15e6f09092" t="o" /> -<objsur guid="b922771e-14ab-409b-8b07-5139e78f4576" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="0aaaff87-9b42-4417-8be6-9b4512b806df" ownerguid="df9ee372-e92e-4f73-aac5-d36908497698"> -<ExampleWords> -<AUni ws="en">think (that), have a thought, come to, come to mind, enter your mind, enter your head, cross your mind, hit on, occur to, present itself, spring to mind, strike, wonder</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to thinking something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0aad0b7c-ec3a-4175-a5d3-342c111c6118" ownerguid="384c653a-aba8-4e94-bfc9-1f1f6fec0ec4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="0aadf12f-f5a8-4234-88da-15e81b04c84d" ownerguid="3c684436-fa67-470d-97b4-d9e7c8ab0a3c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="0aae0254-dc06-4906-8ecf-2d8450fb83f1" ownerguid="9f3b4cab-dc8a-430e-88f3-d3002df64fb8"> -<Abbreviation> -<AUni ws="en">7.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.498" /> -<DateModified val="2022-9-23 16:55:8.498" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to lying down.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>17G Lie x; 17F Recline x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Lie down</AUni> -</Name> -<Questions> -<objsur guid="3b41533f-d297-4ba9-873e-97915ab02994" t="o" /> -<objsur guid="2a88e63d-34c7-4748-85f8-b59abd665f22" t="o" /> -<objsur guid="f9411a24-70da-41e1-aab3-c407226833b3" t="o" /> -<objsur guid="9ec1f8dc-2f20-409e-aaf4-c7d9acbfe68e" t="o" /> -<objsur guid="b0700871-4f2c-416e-95c9-fe68b75c2d51" t="o" /> -<objsur guid="d8721052-6f5e-4eab-abc8-e81c680ff030" t="o" /> -<objsur guid="3c7ac582-5a40-4654-9eac-fe6fd4733804" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="943eb131-2761-4c98-90a0-0bdfb0f8584d" t="r" /> -<objsur guid="d502512c-966b-4752-8636-716fb29facfe" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="0aae1951-4d5b-45a0-853c-1839764c9862" ownerguid="7648040b-0aa5-4d9a-8f13-ffd066b81602"> -<Abbreviation> -<AUni ws="en">8.2.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.589" /> -<DateModified val="2022-9-23 16:55:8.589" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being short in height.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>81C Long, Short, Far</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Short, not tall</AUni> -</Name> -<Questions> -<objsur guid="ca17cb83-a264-420c-bb17-51fcda8a0c1a" t="o" /> -<objsur guid="88e5cfa8-ecd9-48e1-8188-0349a1eac673" t="o" /> -<objsur guid="a82829fd-38e3-4cd3-8fb4-7a664debd6a8" t="o" /> -<objsur guid="da137de8-4c59-43fb-b117-7e2d3a9e37a7" t="o" /> -<objsur guid="ed4ca532-affa-46ea-98e7-c5cd7a545846" t="o" /> -<objsur guid="63374476-5fd8-403c-874e-bab1f8089562" t="o" /> -<objsur guid="b1d0b6e9-1fab-4034-a54f-ae6a49a8072d" t="o" /> -<objsur guid="8d52ddbe-1d34-4aac-9382-7a974c1e654f" t="o" /> -<objsur guid="4c219fe9-7bb7-47af-904b-bdc69af4d204" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="1133ad78-9ce9-46aa-b181-bb6f7a84a07b" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="0ab4d337-de32-4b4f-a8ad-517140f1495d" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<ExampleWords> -<AUni ws="en">sad, crestfallen, dejected, disappointed, discouraged, doleful, down, downcast, downhearted, fed up, forlorn, gloomy, glum, grouchy, grumpy, with a heavy heart, homesick, low, melancholy, morose, mournful, pensive, sober (adj), solemn, sorry, sorrowful, sullen, unhappy, wistful, woeful</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels sad?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="0ab7ab07-fa3e-4a57-a7cd-68d786eff0d3"> -<Analyses> -<objsur guid="2e1ac83f-3ca6-46a4-a5af-ee776c9b7cf5" t="o" /> -</Analyses> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Faraónta</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="0abb3c6a-9985-4abe-bfa0-42d39e00fdfa" ownerguid="bfe8902a-32a7-4092-93b2-9dcf3dce205f"> -<ExampleWords> -<AUni ws="en">get upset, get worked up, take something to heart</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to becoming upset?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0abdb312-1d88-4717-8b5c-c6f6dfc0c10b" ownerguid="f9a33614-2be4-42e9-a6a8-27024a7a2ac0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="0ac401aa-7e28-4880-9024-6119c01d3a0e" ownerguid="801b1d49-7007-46e0-94b7-c61e7b8afdf2"> -<Form> -<AUni ws="qvm-x-ach">pulcëra</AUni> -<AUni ws="qvm-x-acl">pulcëra</AUni> -<AUni ws="qvm-x-akh">pulcëra</AUni> -<AUni ws="qvm-x-akl">pulcëra</AUni> -<AUni ws="qvm-x-ame">pulcëra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="0ac506e0-2e01-4066-a195-09229d87e2c5" ownerguid="f0d0631c-1dcd-4e76-9609-74889b562141"> -<Form> -<AUni ws="qvm-x-ach">püca</AUni> -<AUni ws="qvm-x-acl">püca</AUni> -<AUni ws="qvm-x-akh">püka</AUni> -<AUni ws="qvm-x-akl">püka</AUni> -<AUni ws="qvm-x-ame">püka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="0ac5e5f9-e7fe-4d37-a631-eab1ceb1f8ae" ownerguid="cce98603-ff8f-4213-945a-bd6746716139"> -<Abbreviation> -<AUni ws="en">1.2.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.947" /> -<DateModified val="2022-9-23 16:55:7.947" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to mountains.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>1G Elevated Land Formations</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Mountain</AUni> -</Name> -<Questions> -<objsur guid="35e07006-0cc0-4bae-bc1c-e49df3f245a2" t="o" /> -<objsur guid="43ec9472-059d-404a-8ad9-3dcdddf1ed36" t="o" /> -<objsur guid="10813703-2e31-4784-9978-7647d46bc72d" t="o" /> -<objsur guid="53cf2b34-068c-41ab-a53f-e1724a133ce2" t="o" /> -<objsur guid="ca1611ce-af5e-4e8a-82a4-1582bf483ce5" t="o" /> -<objsur guid="37893259-ead5-4bdd-a906-95026f894067" t="o" /> -<objsur guid="209f7376-cbba-4542-b598-0973c956b0e1" t="o" /> -<objsur guid="2b6f3302-e8bd-42d5-bc4b-bef840efaee7" t="o" /> -<objsur guid="e6c8d9e8-b666-47ee-8809-cc9f5e6b20ed" t="o" /> -<objsur guid="b79899cc-ab50-4e4e-8383-5666b3d4ba66" t="o" /> -<objsur guid="71ad2ebe-2e8f-4554-9edc-3cb2f0a401bf" t="o" /> -<objsur guid="b7b3023d-acde-4224-a051-01682b3bd964" t="o" /> -<objsur guid="36def2ae-13bb-4af4-8730-d59e635afc48" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="d50f3921-fcea-4ac9-b64a-25bf47dc3292" t="r" /> -<objsur guid="d90e71bf-2898-4501-9d09-c518999f83e2" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="0ac81210-20ff-4a89-948f-5d154668f05c" ownerguid="d59a84e1-5e12-4cb7-b72b-15c51810ad48"> -<Abbreviation> -<AUni ws="en">4.1.6.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing an independent person--someone who does things without other people's help.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Independent person</AUni> -</Name> -<Questions> -<objsur guid="c09d5759-1c89-46af-b5c0-e8b5430cc80f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="0acaa999-707b-4cbd-b529-2601e79b0e3a" ownerguid="93e87993-8183-443f-9ea0-0fa5810468b3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spoon</AUni> -<AUni ws="es">cuchara</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b43f4845-c387-4943-a604-74ecc96acbdc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="0acbb9e7-b739-47a5-8666-23d24babce2d" ownerguid="967d4311-3d9f-45dc-bda3-d60f324c7313"> -<Form> -<AUni ws="qvm-x-ach">lauta</AUni> -<AUni ws="qvm-x-acl">lauta</AUni> -<AUni ws="qvm-x-akh">lawta</AUni> -<AUni ws="qvm-x-akl">lawta</AUni> -<AUni ws="qvm-x-ame">lawta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="0ad66850-22f0-4387-9656-c3ff1761f437" ownerguid="70a6cd7e-07a4-46ad-a024-abeea60f18c4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="0ad7cd10-0a35-4745-8026-2d9456098cb3" ownerguid="283ad818-9670-4a23-b97a-05cd2810800e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="19d6fd70-9870-4226-89da-e9310a6c7ad8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="0ad7d2ff-2d11-49e6-a27b-eeb6de322a73" ownerguid="d2683ae4-dbbb-4bf4-8e22-483b78bd560a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">g</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">g</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">q</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">q</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">q</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7feef4b7-a285-4201-a3a4-057f77618b78" t="r" /> -</Morph> -<Msa> -<objsur guid="964f8962-17d5-4738-8902-97236137c419" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="0adac04f-b700-45ee-a3fd-baf16a017b0d" ownerguid="8384542a-c622-49d7-b309-f89da8666530"> -<Form> -<AUni ws="qvm-x-ach">liya</AUni> -<AUni ws="qvm-x-acl">liya</AUni> -<AUni ws="qvm-x-akh">liya</AUni> -<AUni ws="qvm-x-akl">liya</AUni> -<AUni ws="qvm-x-ame">liya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="0adb4c60-6f05-4478-9ef4-47925d8a6c73" ownerguid="f2c017ab-bed1-4971-9b72-f303449257b1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.hot</AUni> -<AUni ws="es">ser.caliente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="369dc270-7df7-4aa7-af3c-2a8792edeca0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="0adbae08-6f72-4a32-a932-f77fafed06f5" ownerguid="f7c5dc00-e7bc-4a8c-900e-ca97b4b96d0e"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="0add0775-0ed0-46be-ba4a-76310e63a036" ownerguid="82a4ae36-8e70-4c0d-8144-ad9fc3c0e04f"> -<Abbreviation> -<AUni ws="en">8.3.1.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.599" /> -<DateModified val="2022-9-23 16:55:8.599" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing a leaning orientation in relation to the ground, or a surface that is sloping.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Leaning, sloping</AUni> -</Name> -<Questions> -<objsur guid="76e98d9a-b836-4932-a3aa-52d887d26b15" t="o" /> -<objsur guid="b04857c0-cbad-4756-89fb-33c4e5805c93" t="o" /> -<objsur guid="6f149204-f537-4394-8ebd-bf2305cb99d5" t="o" /> -<objsur guid="b0e5a58d-cf9c-4432-a7da-f921ea8a29e8" t="o" /> -<objsur guid="e62f7401-545f-4620-a538-ebc9fada156e" t="o" /> -<objsur guid="ed76cebf-2a09-4d6a-bb47-ebf7be17eae6" t="o" /> -<objsur guid="c8b17946-6f91-40d6-a2d2-246b203032ed" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="566be8c1-3e42-4f8b-87eb-e70e8c13c6f8" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="0adda843-19a0-4d60-ae5b-89128c6e8897" ownerguid="74cd7314-5ef6-4505-a35a-81468b5a3f3a"> -<ExampleWords> -<AUni ws="en">situation, circumstances, environment, climate, conditions, the lay of the land, which way the wind blows, scenario</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a situation that affects what can happen or what people can do? </AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0ae80364-83fa-419b-82e7-26243d63fe3d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsula</AUni> -<AUni ws="qvm-x-acl">tsula</AUni> -<AUni ws="qvm-x-akh">tsula</AUni> -<AUni ws="qvm-x-akl">tsula</AUni> -<AUni ws="qvm-x-ame">tsula</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chulla</AUni> -<AUni ws="qvm-x-acl">*chulla</AUni> -<AUni ws="qvm-x-akh">*chulla</AUni> -<AUni ws="qvm-x-akl">*chulla</AUni> -<AUni ws="qvm-x-ame">*chulla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.335" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d256f60d-0027-4ecf-87f0-8d0cd1279ab0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chulla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4c170c51-3776-42ae-81b0-8081e73d877a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ba92b0fe-5be2-4a93-8686-6d24c3dea00e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chulla 
\entryTyp root 
\gENG unequal 
\gSPN desigual 
\e *chulla 
\c N0 
\ach tsula 
\akh tsula 
\acl tsula 
\akl tsula 
\ame tsula</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0aec002d-52dd-47a6-a0ec-48753b2ed8c5" ownerguid="56984b2b-3417-49b4-a082-1a383551a9e9"> -<ExampleWords> -<AUni ws="en">break the waters</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the signs that a woman is going into labor?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0aeccd3e-0952-4569-8cbb-8bff0abe2733" ownerguid="97e1aba5-2ac1-44a3-8f18-59b2347a54a1"> -<ExampleWords> -<AUni ws="en">wood, brick, cement, plaster, drywall, mud and wattle, clay, cow dung, reinforcing sticks</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What materials are used to make walls?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="0af61d82-50f4-4579-8344-e9dced6b8dea"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">rikakutsin</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="0af77782-52ae-4ca2-81a1-8e621bc8e7aa" ownerguid="10806316-f433-4da4-a08b-73638d735c1d" /> -<rt class="CmDomainQ" guid="0af9a02d-9a85-4e5b-b10d-81fa31290fd7" ownerguid="3ea4c495-b837-4310-8741-38d89fa63e0b"> -<ExampleWords> -<AUni ws="en">might</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) uncertainty: the speaker is emphasizing that s/he doesn't know that the proposition is true.</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0afc6314-92a7-40c8-ab4f-ce308ac4863d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">capa</AUni> -<AUni ws="qvm-x-acl">capa</AUni> -<AUni ws="qvm-x-akh">capa</AUni> -<AUni ws="qvm-x-akl">capa</AUni> -<AUni ws="qvm-x-ame">capa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+capar</AUni> -<AUni ws="qvm-x-acl">+capar</AUni> -<AUni ws="qvm-x-akh">+capar</AUni> -<AUni ws="qvm-x-akl">+capar</AUni> -<AUni ws="qvm-x-ame">+capar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.49" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cb1564f6-3ae3-466d-b7da-ade958f875c0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+capar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f24f02d9-4251-4932-b4c7-a4d2508e3090" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fe19affb-aa88-4357-bc65-1f3e4b55c32a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +capar 
\entryTyp root 
\gENG castrate 
\gSPN capar 
\e +capar 
\c V2 
\ach capa 
\akh capa 
\acl capa 
\akl capa 
\ame capa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0afd3794-0d17-4fb2-b538-2ccc1e77846d" ownerguid="fd33670e-ef16-4566-a62e-aa077e58407b"> -<ExampleWords> -<AUni ws="en">crack, pop, snap, crunch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to the sound of something breaking?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0afd8dfd-0201-445a-a6da-1b35de99b5f3" ownerguid="591fd489-36e6-4ffd-a976-58876d851829"> -<ExampleWords> -<AUni ws="en">handkerchief, hanky, tissue</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What do people use to blow their nose?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0afe81a1-17ac-43f7-b680-790a2cdf733b" ownerguid="3296ecd0-8c71-4de0-9d66-2156bc32712f"> -<Form> -<AUni ws="qvm-x-ach">sha</AUni> -<AUni ws="qvm-x-acl">sha</AUni> -<AUni ws="qvm-x-akh">sha</AUni> -<AUni ws="qvm-x-akl">sha</AUni> -<AUni ws="qvm-x-ame">sha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="0b03ce05-a1d6-4b3b-bd89-a01a799aea3e" ownerguid="cc086a9a-4167-45cf-b672-bf9e235905fb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">make.level</AUni> -<AUni ws="es">parejar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3dda9c18-5c5c-4006-ad75-e7be86412510" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="0b0801a3-8a0c-40ea-bf41-07df80bd0d5f" ownerguid="f38f8344-838f-44ba-b103-22289c2d2793"> -<Abbreviation> -<AUni ws="en">1.3.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.963" /> -<DateModified val="2022-9-23 16:55:7.963" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is dry.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79O Wet, Dry; 47C Application and Removal of Liquids or Masses; 79O Wet, Dry</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Dry</AUni> -</Name> -<Questions> -<objsur guid="08f15fc3-6fc8-4062-b4b5-958024fd5a3c" t="o" /> -<objsur guid="3e690c3b-9712-4c08-bc12-d2ff29ca08c3" t="o" /> -<objsur guid="8ce4242c-f594-40de-be66-f9b18308b33e" t="o" /> -<objsur guid="866981d7-5872-47fe-82bc-0e1693e6d419" t="o" /> -<objsur guid="be57e62b-41d5-4d52-bba3-338c0fb646d5" t="o" /> -<objsur guid="5226cd82-f260-472c-8d1c-ffb373ccacc4" t="o" /> -<objsur guid="0ebdb9cc-da70-497c-8c3d-4c586889c286" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="0b08b76f-9071-4b0a-b8f1-8bb43c115dd3" ownerguid="5a2355b4-c295-4b94-86da-6ac18198bae4"> -<ExampleWords> -<AUni ws="en">credit, account, place to your credit, to the account of, deposit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to credit?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0b09c30e-fec2-4377-b976-470c7386e0d7" ownerguid="99ee1558-34b2-4a1b-bfd2-eb4ccbfe7728"> -<ExampleWords> -<AUni ws="en">keep your word, keep your promise</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to being reliable?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0b0b820d-5d65-47c4-a199-ad10c0978a52" ownerguid="d978baea-da66-4787-a304-7962b3d6ba35"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="0b0dc0ee-8583-4148-9283-4af5b7696561" ownerguid="d9f9ca3f-2dbf-4114-a8bc-050f578493a5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">he.she</AUni> -<AUni ws="es">él(la)</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bd9500ca-2e58-4802-acec-13d45e3c1c69" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="0b0e7576-68df-4387-ab17-d5abdf53b979"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uchpa</AUni> -<AUni ws="qvm-x-acl">uchpa</AUni> -<AUni ws="qvm-x-akh">uchpa</AUni> -<AUni ws="qvm-x-akl">uchpa</AUni> -<AUni ws="qvm-x-ame">uchpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*utrpa</AUni> -<AUni ws="qvm-x-acl">*utrpa</AUni> -<AUni ws="qvm-x-akh">*utrpa</AUni> -<AUni ws="qvm-x-akl">*utrpa</AUni> -<AUni ws="qvm-x-ame">*utrpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.302" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5c482375-8b43-4957-9dc2-cb4b896f8363" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*utrpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0f5e31f3-86f4-444c-8e29-cd04eeff670c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="69151cf2-4cd6-423d-bcce-c64a7a8debfa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *utrpa 
\entryTyp root 
\gENG ashes 
\gSPN cenizas 
\e *utrpa 
\c N0 
\ach uchpa 
\akh uchpa 
\acl uchpa 
\akl uchpa 
\ame uchpa</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="0b0e7f98-47d1-47b8-b761-d9cc2b4a055e" ownerguid="d2822a2f-3338-46d4-bf35-0917358ce611"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="0b0e8123-4c7c-4ac9-a3ff-720f47c9a5c9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">entena:du</AUni> -<AUni ws="qvm-x-acl">entena:du; entena:du; entena:do</AUni> -<AUni ws="qvm-x-akh">entena:du</AUni> -<AUni ws="qvm-x-akl">entena:du; entena:du; entena:do</AUni> -<AUni ws="qvm-x-ame">entena:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+entenado</AUni> -<AUni ws="qvm-x-acl">+entenado</AUni> -<AUni ws="qvm-x-akh">+entenado</AUni> -<AUni ws="qvm-x-akl">+entenado</AUni> -<AUni ws="qvm-x-ame">+entenado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.477" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0a7bdf45-0592-4202-85d5-8d05c0c37576" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+entenado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="912d63d8-f24d-48ac-bccd-39bb873d891d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8bdb78a3-9cc4-41fe-a75b-5d87c27ba0c0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +entenado 
\entryTyp root 
\gENG step-child 
\gSPN 
\e +entenado 
\c N0 
\ach entena:du 
\akh entena:du 
\acl entena:du / _# 
\acl entena:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl entena:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl entena:du / _# 
\akl entena:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl entena:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame entena:du</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="0b124749-b1b0-4b4e-ab86-9a2c0f8da0f4"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">kacharqantsu</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="0b12ab7f-f74e-4328-8bb3-958003f74bb2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">importa</AUni> -<AUni ws="qvm-x-acl">importa</AUni> -<AUni ws="qvm-x-akh">importa</AUni> -<AUni ws="qvm-x-akl">importa</AUni> -<AUni ws="qvm-x-ame">importa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+importar</AUni> -<AUni ws="qvm-x-acl">+importar</AUni> -<AUni ws="qvm-x-akh">+importar</AUni> -<AUni ws="qvm-x-akl">+importar</AUni> -<AUni ws="qvm-x-ame">+importar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.810" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="30524fa0-c17c-4d5d-ae8d-de8692e53c12" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+importar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1182cf87-4cbf-40d0-ab5f-535c8fe7e970" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c4f2ca09-74fb-443e-bfe4-09c0179f2997" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +importar 
\entryTyp root 
\gENG be.important 
\gSPN importar 
\e +importar 
\c V2 
\ach importa 
\akh importa 
\acl importa 
\akl importa 
\ame importa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="0b1407da-6d26-4302-80ea-5ce8611d4a8d" ownerguid="3b28c9b3-6371-4999-a063-46492b02026c"> -<Form> -<AUni ws="qvm-x-ach">tesöru</AUni> -<AUni ws="qvm-x-acl">tesöru; tesöru; tesöro</AUni> -<AUni ws="qvm-x-akh">tesöru</AUni> -<AUni ws="qvm-x-akl">tesöru; tesöru; tesöro</AUni> -<AUni ws="qvm-x-ame">tesöru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="0b1671fe-f8e1-4e87-89f4-41ea0f717c37" ownerguid="51ba6159-f1fc-4fce-a281-3ba5f1a248c0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bow</AUni> -<AUni ws="es">arco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3d4330fa-8ccc-4a69-9215-5b705855a949" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0b186d58-0fe3-488b-ac65-148f441a5ab0" ownerguid="529140d1-6e8e-44fe-99f0-95289e933607"> -<ExampleWords> -<AUni ws="en">related by blood, be descended from, descent, direct line, lineal descent, consanguine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being related by birth?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0b1a12bb-5184-4e07-9764-148e5eb03621" ownerguid="3dba39bc-48f2-4bcb-9357-c8fbed6922ca"> -<ExampleWords> -<AUni ws="en">hold you to your promise</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to asking someone to do what he promised?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0b1a8e31-81bb-48e4-8b37-1b0f1dba5a1d" ownerguid="84eb31d3-b932-4b3b-b945-85884ea856c7"> -<ExampleWords> -<AUni ws="en">be heading for, be in for, threaten, threat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words indicate that something bad will probably happen?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0b1b22d9-2671-4cd8-8a2c-d6f2b769283e" ownerguid="7c9c6263-9f7d-472c-a4c9-1767015d41fe"> -<ExampleWords> -<AUni ws="en">offer someone (money) for something, make an offer, bid</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to offering someone money for something you want?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0b1c2101-5aeb-4d9b-955c-5f1f6af6881b" ownerguid="480b21f9-059d-4da4-abb9-7a51b2d19095"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="0b1ed66f-f00d-4fd7-844f-91400e4a2bf4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ta:banu</AUni> -<AUni ws="qvm-x-acl">ta:banu; ta:banu; ta:bano</AUni> -<AUni ws="qvm-x-akh">ta:banu</AUni> -<AUni ws="qvm-x-akl">ta:banu; ta:banu; ta:bano</AUni> -<AUni ws="qvm-x-ame">ta:banu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tábano</AUni> -<AUni ws="qvm-x-acl">+tábano</AUni> -<AUni ws="qvm-x-akh">+tábano</AUni> -<AUni ws="qvm-x-akl">+tábano</AUni> -<AUni ws="qvm-x-ame">+tábano</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.855" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f7583bcb-5218-4c7c-b6a8-275eb7f9deb9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tábano</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8dd564f7-b9b0-45a6-8097-6af0220563c3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d42cd542-13ad-45ae-b8fb-5a75fe1fc58c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tábano 
\entryTyp root 
\gENG 
\gSPN 
\e +tábano 
\c N0 
\ach ta:banu 
\akh ta:banu 
\acl ta:banu / _# 
\acl ta:banu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ta:bano +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ta:banu / _# 
\akl ta:banu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ta:bano +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ta:banu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="0b1fab53-c28d-4fed-80f3-92d3f975aac9" ownerguid="9c3e4586-e333-4771-8a8e-0054f5ba1801"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="0b22475f-59f8-4128-ab3e-ed67492262f2" ownerguid="f1e95399-7004-4d1a-9a3e-ffbadb5e2c42"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">behave</AUni> -<AUni ws="es">portar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8d32777e-0905-475f-ac36-f440c7f66b7c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0b23a537-638d-4ac6-a513-bcd5951a55b4" ownerguid="ff7e3abd-6810-4128-83c9-701b4925c2fe"> -<ExampleWords> -<AUni ws="en">blaze, the flames</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a fire started by accident?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0b267061-94ac-4a60-9637-3b9a66fc4e04" ownerguid="0d31ea20-4230-4195-ba9a-98f07ef1e4c7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0b26e11b-acf0-43fe-b098-40ba159083bb" ownerguid="85188748-1919-4210-a9e9-91171d9d6454"> -<ExampleWords> -<AUni ws="en">plankton</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the very small animals in the ocean?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0b298228-4066-4f57-92d1-c9abb40093ae" ownerguid="8c28c640-db5b-43e2-a1e6-b0e381962129"> -<ExampleWords> -<AUni ws="en">domesticated, tamed, broken in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe an animal that has been domesticated?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0b2a0a18-09da-4d00-b7fa-86e1f3b1af97" ownerguid="91f577aa-10a4-436a-91ec-ba20351ebe53"> -<Form> -<AUni ws="qvm-x-ach">jutuc</AUni> -<AUni ws="qvm-x-acl">jutuc</AUni> -<AUni ws="qvm-x-akh">jutuk</AUni> -<AUni ws="qvm-x-akl">jutuk</AUni> -<AUni ws="qvm-x-ame">hutuk</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0b309e05-7a6d-454b-9f5a-0520ac38656f" ownerguid="c79d49f1-74ec-4dba-a5aa-5e861af63d05"> -<ExampleWords> -<AUni ws="en">reproach (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to feeling bad about someone because you think they are to blame for something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0b3285cc-f19a-4117-9709-dd4131f3d3e3" ownerguid="f864b0ee-eb43-4def-bdc6-66c8a417aa1a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="4b097861-e8bb-4217-a2f5-c4e782e103ef" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="5eee385d-3369-4eec-b7db-334e87092315" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="0b33e2e3-ea5c-42b5-9c9c-904b89913aeb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mula</AUni> -<AUni ws="qvm-x-acl">mula</AUni> -<AUni ws="qvm-x-akh">mula</AUni> -<AUni ws="qvm-x-akl">mula</AUni> -<AUni ws="qvm-x-ame">mula</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mula</AUni> -<AUni ws="qvm-x-acl">+mula</AUni> -<AUni ws="qvm-x-akh">+mula</AUni> -<AUni ws="qvm-x-akl">+mula</AUni> -<AUni ws="qvm-x-ame">+mula</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.495" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d35dbac0-6fa9-4e50-bf19-4ed41f6051f1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mula</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8f30f828-e15b-4a29-9e12-ee4ae6509d6c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b7ab6ae8-4dfb-42b2-b827-7c74c6fc35e3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mula 
\entryTyp root 
\gENG mule 
\gSPN mula 
\e +mula 
\c N0 
\ach mula 
\akh mula 
\acl mula 
\akl mula 
\ame mula</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0b3921f6-4a98-4d02-a6a4-01c32d33b92b" ownerguid="0f07adb7-4387-4723-9800-8362e825ad45"> -<ExampleWords> -<AUni ws="en">crag, rocky outcropping, boulder, rock, stone, pebble, gravel, sand, grit, powder</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the size of a rock?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0b39a93f-8cc8-4c0c-96fc-e7e7312d7b5f" ownerguid="86c27056-e083-4db9-8ea8-8276c94ba50f"> -<Form> -<AUni ws="qvm-x-ach">cornëta</AUni> -<AUni ws="qvm-x-acl">cornëta</AUni> -<AUni ws="qvm-x-akh">cornëta</AUni> -<AUni ws="qvm-x-akl">cornëta</AUni> -<AUni ws="qvm-x-ame">cornëta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="0b3abfb5-4023-4cfa-81f4-520018db4572" ownerguid="16c29555-f3a7-43e0-9e3b-bda546dd3c8e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">oj¢n</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c4e93e03-9170-4c9c-9a8c-cf90dfb2353b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="0b3b354a-b157-4e7e-b31f-6ba28da6c71b" ownerguid="f89a7c90-4a8f-44fc-9664-7b0e30c49569"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="0b3ee4f4-e0cf-449a-9c27-346ba47e0d7b" ownerguid="2d0f45f3-2471-4d69-9429-76c51a12e2a8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -<Sense> -<objsur guid="1b926284-5562-4cf3-8ad2-65536a715093" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="0b4071ea-5a42-4451-813e-d9344ed21c52" ownerguid="00d642ae-3b07-4202-a777-9b2f12460309"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="3ab523ec-0fae-487c-b613-f8c5de8ce1e0" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">quickly</AUni> -<AUni ws="es">rápidamente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="387ca6ca-8c83-4b70-ace5-981dba4287e1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="0b42ba43-f970-4c9b-99ed-36b0555c85b6" ownerguid="cec4a61e-8b09-4f45-8265-ffcb3621a811"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="0b449029-0a80-49a7-94f5-8f76a8df8c82" ownerguid="6f83e7f5-39be-4055-ac5c-757782d049e3"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="0b459857-2866-4fce-9f7e-bb69d723fe26"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">macya</AUni> -<AUni ws="qvm-x-acl">macya</AUni> -<AUni ws="qvm-x-akh">makya</AUni> -<AUni ws="qvm-x-akl">makya</AUni> -<AUni ws="qvm-x-ame">makya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*makya</AUni> -<AUni ws="qvm-x-acl">*makya</AUni> -<AUni ws="qvm-x-akh">*makya</AUni> -<AUni ws="qvm-x-akl">*makya</AUni> -<AUni ws="qvm-x-ame">*makya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.265" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a4271dca-63e2-4711-b5ae-7e8c95d73420" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*makya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3701a143-3105-468c-9058-c75eeac15729" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="073ca17a-320d-4e28-9ab9-0394e630b426" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *makya 
\entryTyp root 
\gENG hand 
\gSPN dar 
\e *makya 
\c V2 
\ach macya 
\akh makya 
\acl macya 
\akl makya 
\ame makya</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="0b4896ba-dc95-45d9-83da-92a8a047b273" ownerguid="defbe920-aa69-4033-b0d9-f0194c13fe90"> -<Form> -<AUni ws="qvm-x-ach">descontentu; descontento</AUni> -<AUni ws="qvm-x-acl">descontentu; descontentu; descontento</AUni> -<AUni ws="qvm-x-akh">descontentu; descontento</AUni> -<AUni ws="qvm-x-akl">descontentu; descontentu; descontento</AUni> -<AUni ws="qvm-x-ame">descontentu; descontento</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="0b48bd1c-e9e7-40e9-9181-3d0bc411185a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jagui</AUni> -<AUni ws="qvm-x-acl">jagui; jague</AUni> -<AUni ws="qvm-x-akh">jaqi</AUni> -<AUni ws="qvm-x-akl">jaqi; jaqe</AUni> -<AUni ws="qvm-x-ame">haqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*haqi</AUni> -<AUni ws="qvm-x-acl">*haqi</AUni> -<AUni ws="qvm-x-akh">*haqi</AUni> -<AUni ws="qvm-x-akl">*haqi</AUni> -<AUni ws="qvm-x-ame">*haqi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.678" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8293d623-b506-436f-8c5a-fa22fec84852" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*haqi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="25ba9a8c-70a1-4d45-afa3-e5e9c18dfa2d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8f8c40fd-82b0-4e22-aa25-1d0b82372c14" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *haqi 
\entryTyp root 
\gENG abandon 
\gSPN abandonar 
\e *haqi 
\c V2 
\mp +FinalI 
\ach jagui 
\akh jaqi 
\acl jagui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl jague +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jaqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jaqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame haqi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="0b4ab536-0e00-4b1b-83d7-8e92b67150b7" ownerguid="163f451f-0ca9-4a43-98b6-c9aa884a6bb7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="efab1cda-0c15-4d7a-8c99-aeab9b2f391f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="0b4ad9b4-744a-4619-a38e-43694a4d24e1" ownerguid="71a01bb8-b47c-449b-ad18-573402973638"> -<Form> -<AUni ws="qvm-x-ach">sobornu; soborno</AUni> -<AUni ws="qvm-x-acl">sobornu; sobornu; soborno</AUni> -<AUni ws="qvm-x-akh">sobornu; soborno</AUni> -<AUni ws="qvm-x-akl">sobornu; sobornu; soborno</AUni> -<AUni ws="qvm-x-ame">sobornu; soborno</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0b509e56-5fca-4163-a9c1-5a294f77cf65" ownerguid="a57185c3-0cb5-41fa-94bf-da0c9edac600"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The oldest son inherited a <double> portion.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">single (portion, scoop), double (adj), triple, quadruple, quintuple, two-fold, three-fold, four-fold</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is two or three times the amount of something else?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0b52c79b-f30e-4a13-8912-75907a2d0a28" ownerguid="4f697a2b-72eb-4744-8885-872a72301403"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="0b54e63a-1b13-4ac8-a50d-15a866f5d5c4" ownerguid="ace212ed-d855-449c-a447-ac515e635a65"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">steer</AUni> -<AUni ws="es">novillo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a36f7683-c5e1-4417-9d38-3180a515facc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="0b553df6-9b68-4b21-a68e-451f9d3ee129" ownerguid="6798cbaf-df7f-4ce5-99c5-f279fbc3e234"> -<Form> -<AUni ws="qvm-x-ach">yawar</AUni> -<AUni ws="qvm-x-acl">yawar</AUni> -<AUni ws="qvm-x-akh">yawar</AUni> -<AUni ws="qvm-x-akl">yawar</AUni> -<AUni ws="qvm-x-ame">yawar</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="0b564ef2-2b23-49b7-bebd-1c860c6e4080" ownerguid="d3761502-9118-4066-b51b-5bbd23c21020"> -<Form> -<AUni ws="qvm-x-ach">pobrisa</AUni> -<AUni ws="qvm-x-acl">pobrisa</AUni> -<AUni ws="qvm-x-akh">pobrisa</AUni> -<AUni ws="qvm-x-akl">pobrisa</AUni> -<AUni ws="qvm-x-ame">pobrisa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="0b5adebd-a089-4d3b-b04e-8b320e482626" ownerguid="6dde2d5d-c27f-432b-8bf8-ff740be6ad2a"> -<Form> -<AUni ws="qvm-x-ach">cU</AUni> -<AUni ws="qvm-x-acl">cU</AUni> -<AUni ws="qvm-x-akh">kU</AUni> -<AUni ws="qvm-x-akl">kU</AUni> -<AUni ws="qvm-x-ame">kU</AUni> -</Form> -<IsAbstract val="True" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="0b5f7ade-475e-4834-826e-a9dec3e5f06d" ownerguid="19113eea-3a3d-4585-afc4-1586a9b28a01"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="0b63054b-1f0c-49d3-8871-b6bf46ac9a5a" ownerguid="ec3e8cba-764f-41d8-8fa7-97d1d8067fb1"> -<Form> -<AUni ws="qvm-x-ach">malawëru</AUni> -<AUni ws="qvm-x-acl">malawëru; malawëru; malawëro</AUni> -<AUni ws="qvm-x-akh">malawëru</AUni> -<AUni ws="qvm-x-akl">malawëru; malawëru; malawëro</AUni> -<AUni ws="qvm-x-ame">malawëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0b6443ab-1c7d-433c-9ca2-c3e3ab7eebb1" ownerguid="57f07b5f-75bf-4565-b969-ce0adc0b50d4"> -<ExampleWords> -<AUni ws="en">product</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the answer?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0b65cdae-26a7-4d5d-bbac-ea87a4efed6c" ownerguid="b790470f-ed4e-42ac-932d-cd15ef701b03"> -<ExampleWords> -<AUni ws="en">be pure, undefiled, unpolluted, washed, sprinkled</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that has been purified?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0b665768-6958-4c1b-b37d-0dca838268fc" ownerguid="0205145d-23b6-4c3c-bf2d-bf866bb010e7"> -<ExampleWords> -<AUni ws="en">pump, siphon, suck, suction</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to making water flow through a pipe?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0b66963f-185c-475c-9565-3eb2e7435bdd" ownerguid="e0e8af5a-04c1-49a1-9955-9a2af7879068"> -<ExampleWords> -<AUni ws="en">not known, unknown, undetected, undiscovered, unexposed, unmarked, unseen</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something or someone that is not known by anyone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0b66d65c-5c0d-4f76-87c8-1790d962916d" ownerguid="3dba39bc-48f2-4bcb-9357-c8fbed6922ca"> -<ExampleWords> -<AUni ws="en">release someone from a promise</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to allowing someone to not do what he promised?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0b67362f-6317-49bf-bc3f-4ca7096bbbbf" ownerguid="b7d23cf5-eb57-4aa9-bf97-259c0ac75d20"> -<Form> -<AUni ws="qvm-x-ach">shinri</AUni> -<AUni ws="qvm-x-acl">shinri; shinre</AUni> -<AUni ws="qvm-x-akh">shinri</AUni> -<AUni ws="qvm-x-akl">shinri; shinre</AUni> -<AUni ws="qvm-x-ame">shinri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="0b675cfb-f736-4bf8-ab1c-a8c418c361d3" ownerguid="b5d71f18-f0df-4aec-b707-94537db5037e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">thistle.ball</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f8bbb202-be31-4194-b9ed-c3175f78791f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="0b67c9a4-a590-4417-a289-77d963f50a8d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ruchun</AUni> -<AUni ws="qvm-x-acl">ruchun</AUni> -<AUni ws="qvm-x-akh">ruchun</AUni> -<AUni ws="qvm-x-akl">ruchun</AUni> -<AUni ws="qvm-x-ame">ruchun</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rutrun</AUni> -<AUni ws="qvm-x-acl">*rutrun</AUni> -<AUni ws="qvm-x-akh">*rutrun</AUni> -<AUni ws="qvm-x-akl">*rutrun</AUni> -<AUni ws="qvm-x-ame">*rutrun</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.407" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a8318857-8431-412c-82b4-ecba6a7ca1bd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rutrun</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cc6b9254-bbcf-4cbe-8a25-d2855cd7e115" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="adb32d21-a057-428a-8b51-cfc1d643dc84" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rutrun 
\entryTyp root 
\gENG cold.wind 
\gSPN viento.frio 
\e *rutrun 
\c N0 
\mp +FinalC 
\ach ruchun 
\akh ruchun 
\acl ruchun 
\akl ruchun 
\ame ruchun</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0b698d44-a6be-40f5-a7c9-aa3ab9a2ec40" ownerguid="afc25fbb-9060-4af2-8225-3fddbab2227d"> -<ExampleWords> -<AUni ws="en">patience, constancy, endurance, steadfastness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the quality of being patient?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0b6b305f-f2ef-41f1-aabd-07862c3f4da0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">achyauca</AUni> -<AUni ws="qvm-x-acl">achyauca</AUni> -<AUni ws="qvm-x-akh">achyawka</AUni> -<AUni ws="qvm-x-akl">achyawka</AUni> -<AUni ws="qvm-x-ame">achyawka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*achiyawka</AUni> -<AUni ws="qvm-x-acl">*achiyawka</AUni> -<AUni ws="qvm-x-akh">*achiyawka</AUni> -<AUni ws="qvm-x-akl">*achiyawka</AUni> -<AUni ws="qvm-x-ame">*achiyawka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.639" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c3132c71-1223-4235-b5b0-912733e28d26" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*achiyawka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1e3b026b-de35-45bd-9058-d8c6d10ec2e2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4b87ddc0-52eb-450d-94bc-d539acf80b16" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *achiyawka 
\entryTyp root 
\gENG indeed 
\gSPN - 
\e *achiyawka 
\c NOSUFF 
\ach achyauca 
\akh achyawka 
\acl achyauca 
\akl achyawka 
\ame achyawka</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="0b6ce15a-f01d-4839-ad02-abd430e32d19" ownerguid="a503cb69-5336-4b15-bb94-6a81a7c96a05"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="0b6da2c6-cc71-47ea-bcc2-1deccf6901ef" ownerguid="9bf7caa0-c172-49f0-9855-b6360e178c6c"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="96189c1c-b75c-48d3-b803-eb86f123fbca" t="o" /> -<objsur guid="f4145842-d8e6-461a-b92e-a70d4b4c8cd2" t="o" /> -<objsur guid="d087488c-deb0-4781-a603-a10d233a5afa" t="o" /> -<objsur guid="65fd9982-6701-40c6-bcb4-5fb305259bda" t="o" /> -<objsur guid="6baafd85-7a9b-4d9a-8d89-7d22a094af47" t="o" /> -<objsur guid="d7bc4c3f-aae7-4d3f-b390-3b008fc4918c" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="0b718083-6946-4564-b778-245c0e4e8673" ownerguid="e2dc2403-1222-4fb6-8053-7b210bfe527d"> -<Form> -<AUni ws="qvm-x-ach">luylu</AUni> -<AUni ws="qvm-x-acl">luylu; luylo</AUni> -<AUni ws="qvm-x-akh">luylu</AUni> -<AUni ws="qvm-x-akl">luylu; luylo</AUni> -<AUni ws="qvm-x-ame">luylu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0b71d729-125d-4dcb-8013-aa32e5c4dc7d" ownerguid="38473463-4b92-4681-8fd0-0aca0342e88a"> -<ExampleWords> -<AUni ws="en">horseshoe crab</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to horseshoe crabs (phylum Arthropoda, class Merostomata)?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0b781401-d335-4477-a377-955765d693e3" ownerguid="fe8b2653-2144-405b-8886-53662db8d64e" /> -<rt class="CmDomainQ" guid="0b7a9887-7cd3-46ca-b94f-16d917f6d984" ownerguid="962941b2-66bd-437f-aadc-b1921bcae5b4"> -<ExampleWords> -<AUni ws="en">harmful, poisonous, toxic, noxious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that is poisonous?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="0b7b9a1c-588b-475a-ac14-00f0999cbfe9" ownerguid="f7da1907-e6c5-4d21-a8e8-81376f3467df"> -<Abbreviation> -<AUni ws="en">4.8.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.286" /> -<DateModified val="2022-9-23 16:55:8.286" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to peace--when people or countries are not fighting.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88N Peaceful Behavior</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Peace</AUni> -</Name> -<Questions> -<objsur guid="0e77a7e4-7d65-40ed-89e2-ac60e4079035" t="o" /> -<objsur guid="75db7430-637a-46e0-8f0a-a10c51dc6e9b" t="o" /> -<objsur guid="983e5d7b-655b-4da7-b00f-9d1cc515423a" t="o" /> -<objsur guid="4b773d38-9cf8-43c6-a67d-6863817e7b85" t="o" /> -<objsur guid="fce06e42-a862-43d0-9b4a-bd9d2e638e35" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="6eafbb5a-26ba-44b5-a0d5-21b9e7750ece" t="o" /> -<objsur guid="9afb64d6-feae-4490-9b7e-95768627f643" t="o" /> -<objsur guid="fd7e03f8-61c9-47e9-afa4-ab8917db03a5" t="o" /> -<objsur guid="675eccbb-9858-4cd4-8405-5f0d0faa792c" t="o" /> -<objsur guid="9b9ccd76-76d6-457b-93d2-c4d242a395f8" t="o" /> -<objsur guid="1ca26512-75f6-4a7a-a7cc-07d08aa799d9" t="o" /> -<objsur guid="7d7c81d5-9713-423f-b12e-8e11e451f0a7" t="o" /> -<objsur guid="a1dd1d94-fa8e-4325-9f72-b39bcac69755" t="o" /> -<objsur guid="3f069313-4827-4fc5-b73b-b9fbd42ca38c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="0b7bfd0a-249c-45b6-9427-2c17ae00bf37" ownerguid="f6eb81d5-caba-4735-be6f-ae038656b555"> -<Abbreviation> -<AUni ws="en">6.6.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.468" /> -<DateModified val="2022-9-23 16:55:8.468" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to working with cords and ropes.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Cordage</AUni> -</Name> -<OcmCodes> -<Uni>283 Cordage; 284 Knots and Lashing</Uni> -</OcmCodes> -<Questions> -<objsur guid="e96e8385-578a-4cb0-a709-9af99c15103f" t="o" /> -<objsur guid="c62643e5-18bb-496e-baf4-7ed665d6293a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="0b7e464a-5e63-4bc5-9959-1f4e589f6f5b" ownerguid="83322b11-96f4-481b-bc88-2ce9d94939a2"> -<Form> -<AUni ws="qvm-x-ach">cuesta</AUni> -<AUni ws="qvm-x-acl">cuesta</AUni> -<AUni ws="qvm-x-akh">cuesta</AUni> -<AUni ws="qvm-x-akl">cuesta</AUni> -<AUni ws="qvm-x-ame">cuesta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="0b825943-6aab-4238-a244-7ffa3dae75a3" ownerguid="709b08c2-4066-47f7-8d38-e1838bba27d6"> -<Form> -<AUni ws="qvm-x-ach">padrïllu</AUni> -<AUni ws="qvm-x-acl">padrïllu; padrïllu; padrïllo</AUni> -<AUni ws="qvm-x-akh">padrïllu</AUni> -<AUni ws="qvm-x-akl">padrïllu; padrïllu; padrïllo</AUni> -<AUni ws="qvm-x-ame">padrïllu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0b84666d-685c-453c-9a6c-6b7fa128e806" ownerguid="6430b89c-7077-418a-a558-51f0e3f2c1a6"> -<ExampleWords> -<AUni ws="en">carry, bear, tote</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to carrying something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0b858740-8d28-49f2-a915-eb95bd55b552" ownerguid="1c51bc5a-cf40-41b5-a1ae-6f1cc6ae9849"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0b85932c-2165-4828-9315-f81389d16674" ownerguid="9b267cc1-983c-407a-98d2-1e27add6292c"> -<ExampleWords> -<AUni ws="en">tie, tie together, tie up, bind, cinch, gird, hitch, lash, moor, rope together, tether, truss, wind</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to tying things together?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0b8ab11f-01e6-4b49-ba21-d546473126cd" ownerguid="fe66d433-5135-498e-a29d-b42bf0317252"> -<ExampleWords> -<AUni ws="en">meddle, bother, butt in, eavesdrop, encroach, infringe, interfere, intervene, intrude, pry, snoop, tamper</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to meddling in someone's affairs?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0b8bc71f-8917-40b7-9d27-cddf405a8fc6" ownerguid="6bd023f6-730e-44c2-ae8f-78df967e2e18"> -<ExampleWords> -<AUni ws="en">pull down, pull up, pull across, pull out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to pulling something in some direction?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0b8cb047-f8b6-46b3-956d-c6738e97faa3" ownerguid="248e826d-7bcd-474f-b411-8ca54718a672"> -<Form> -<AUni ws="qvm-x-ach">susiga</AUni> -<AUni ws="qvm-x-acl">susiga</AUni> -<AUni ws="qvm-x-akh">susiga</AUni> -<AUni ws="qvm-x-akl">susiga</AUni> -<AUni ws="qvm-x-ame">susiga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="0b91e3b3-bce9-4c66-97bd-3da15eddad7a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">micu</AUni> -<AUni ws="qvm-x-acl">micu; mico</AUni> -<AUni ws="qvm-x-akh">miku</AUni> -<AUni ws="qvm-x-akl">miku; miko</AUni> -<AUni ws="qvm-x-ame">miku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*miku.v2</AUni> -<AUni ws="qvm-x-acl">*miku.v2</AUni> -<AUni ws="qvm-x-akh">*miku.v2</AUni> -<AUni ws="qvm-x-akl">*miku.v2</AUni> -<AUni ws="qvm-x-ame">*miku.v2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.434" /> -<DateModified val="2022-10-26 20:41:41.294" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="00b0027e-987c-4f1e-a247-c1327f9e4f4e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*miku.v2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f8d97fe3-82cf-41ad-9120-76d2b02d68e8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="eff6d1a9-e2a1-4c0b-89ed-7b3e03367363" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *miku.v2 
\entryTyp root 
\gENG eat 
\gSPN comer 
\e *miku.v2 
\c V2 
\ach micu 
\akh miku 
\acl micu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl mico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl miku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl miko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame miku 
\mcc *miku.v2 / _... [trans]</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0b945c10-bd33-41b0-80d9-a445390d3ef7" ownerguid="2b27b8ca-188e-44ad-aa86-ffa1f99106e3"> -<ExampleWords> -<AUni ws="en">add, add on, put on, append, superimpose</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to adding a new part or piece to something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0b964a7f-95a9-4568-adab-54eca571e12b" ownerguid="7e355660-7017-42be-b82a-dda68d9248ef"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rain</AUni> -<AUni ws="es">lluvia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ec2e3090-62cc-40fd-8e5a-84aadfb5fab4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="0b970638-785b-4a33-ba52-7f0a93de15a7" ownerguid="034238d6-7583-4103-a70a-64706a4d9af4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="0b98fb79-222f-418c-8107-5d4e791d329c" ownerguid="f726d9bb-ae80-4c01-bdef-b600cb27736e"> -<Abbreviation> -<AUni ws="en">6.9.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.498" /> -<DateModified val="2022-9-23 16:55:8.498" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to managing something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Management</AUni> -</Name> -<OcmCodes> -<Uni>429 Administration</Uni> -</OcmCodes> -<Questions> -<objsur guid="c6e9b604-57e6-4a5c-9cb3-abf38912f7fe" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="0b9e0b9d-95b5-4c1a-831f-9402be5465f6" ownerguid="33e816d6-1e7b-4cf0-a6eb-cf2a4efada05"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2CH 24.22 Tsaynogpami mandag rey Joásga mal agradecïdu car mana yarpargantsu wamra captin Zacaríaspa taytan Joiada salvashganta.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="0ba468e6-b4ec-4c28-81c1-aed8be22bf25" ownerguid="df2ee830-0668-43d7-8a32-e2fd3e7b31d8"> -<Question> -<AUni ws="en">(6) hodiernal: today, normally with past.</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0ba57047-88b5-4075-9790-45a46ea8038d" ownerguid="41846def-c6ee-4e9a-94cd-4ae5c102eaa6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="0ba86b69-2a31-49c2-8922-d0c366d0b11c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shipi</AUni> -<AUni ws="qvm-x-acl">shipi; shipe</AUni> -<AUni ws="qvm-x-akh">shipi</AUni> -<AUni ws="qvm-x-akl">shipi; shipe</AUni> -<AUni ws="qvm-x-ame">shipi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shipi.v</AUni> -<AUni ws="qvm-x-acl">*shipi.v</AUni> -<AUni ws="qvm-x-akh">*shipi.v</AUni> -<AUni ws="qvm-x-akl">*shipi.v</AUni> -<AUni ws="qvm-x-ame">*shipi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.602" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cf33f853-b036-42de-a722-b0089fa088e4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shipi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a85a1596-eb26-42cf-b969-6e7aa71345b4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3fbc5f03-201a-40ae-96b7-852b7f10d470" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shipi.v 
\entryTyp root 
\gENG pull 
\gSPN jalar 
\e *shipi.v 
\c V2 
\mp +FinalI 
\ach shipi 
\akh shipi 
\acl shipi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shipe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shipi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shipe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shipi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0bab0747-58fd-4a90-b20e-26c83ee75649" ownerguid="993b8955-52db-4b2a-8e9a-405a155e7b60"> -<ExampleWords> -<AUni ws="en">ore</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to rocks that have metal in them?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0bac846b-10fa-4a97-ab51-5fae1db19d81"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shumshuta</AUni> -<AUni ws="qvm-x-acl">shumshuta</AUni> -<AUni ws="qvm-x-akh">shumshuta</AUni> -<AUni ws="qvm-x-akl">shumshuta</AUni> -<AUni ws="qvm-x-ame">shumshuta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shumshuta</AUni> -<AUni ws="qvm-x-acl">*shumshuta</AUni> -<AUni ws="qvm-x-akh">*shumshuta</AUni> -<AUni ws="qvm-x-akl">*shumshuta</AUni> -<AUni ws="qvm-x-ame">*shumshuta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.632" /> -<DateModified val="2022-10-10 21:18:47.207" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b421e489-69b6-4981-9e7c-7987bfc77d8f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shumshuta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3e1be7e8-41bb-4a3c-ad63-ee8cc640c1c9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="02169ac4-ee89-412a-98ef-2261a98cfdc3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shumshuta 
\entryTyp root 
\gENG 
\gSPN 
\e *shumshuta 
\c V1 
\ach shumshuta 
\akh shumshuta 
\acl shumshuta 
\akl shumshuta 
\ame shumshuta 
\i HAB 3.16 Tulöcunapis pasaypa shumshutarmi gotucäcushga.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="0bacb10b-4ae9-44fe-a538-0739cca4f9a8" ownerguid="37d1a4be-3a32-4033-9695-58b4b77ac36a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bridge</AUni> -<AUni ws="es">puente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9db8b722-16ce-401f-92fd-1f9baade5e98" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0bae08f4-e529-4c66-a227-a697141360b8" ownerguid="84d67c87-86ff-4e71-8a26-abe048132f8f"> -<ExampleWords> -<AUni ws="en">shave</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to shaving off your hair?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0bae4e83-01e9-4dcb-a5d1-c1a1cdaed487" ownerguid="efc668bc-6e64-498d-8e03-c8c829fe229c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0bae8b30-caab-4f0f-8254-76981acb962e" ownerguid="3160b7ad-e4e8-4a46-8e2e-d5e601969547"> -<ExampleWords> -<AUni ws="en">story, tale</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a story?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0bb62eee-190f-4b06-8769-2a0285e60a94" ownerguid="1b6b0c12-9ecd-45cb-bb0e-0dadb435eddf"> -<ExampleWords> -<AUni ws="en">a lot of, lots of, many, many of, a large number of, large numbers of, plenty of, loads of, tons of, masses of, scads of, a bunch of, dozens of, numerous, a host of, quite a few, a wide range of, a raft of, multi-, multiple, a multitude of, considerable, goodly number, plethora, profuse, oodles, scores of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that there are a large number of things or people?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0bbabe2a-eb62-4435-82c1-54c211f603fc" ownerguid="27048124-c204-4585-9997-c51728f085d6"> -<ExampleWords> -<AUni ws="en">unthankful, unappreciative, ungrateful</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe a person who does not thank someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0bbafc6c-2a66-48ec-bd30-c4b3491b350a" ownerguid="2330813b-7413-41a8-8eb2-ae138511c953"> -<ExampleWords> -<AUni ws="en">get light, brighten, lighten, the light grows</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the light becoming brighter?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0bbbe084-5b53-4e83-91b9-1d5d3bef8683" ownerguid="8d1ecc03-e143-48d5-8aa7-a5c835ded4dd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="0bbe1739-e0b4-442e-b69c-02a0ea20d790" ownerguid="f4580c19-ba9e-4f71-a46a-6f3c4b19c36c"> -<Abbreviation> -<AUni ws="en">7.2.4.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.518" /> -<DateModified val="2022-9-23 16:55:8.518" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to moving under the water.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Dive</AUni> -</Name> -<Questions> -<objsur guid="7eaceb99-9ccd-4a30-9ad7-c7feb0f20089" t="o" /> -<objsur guid="82c72af7-b4be-4c0e-8523-bba547e6e417" t="o" /> -<objsur guid="c54d2602-67b5-4726-a3ba-2c26f61be95e" t="o" /> -<objsur guid="9ccc2904-90ac-434e-a91a-1010d0646f8e" t="o" /> -<objsur guid="b847efe5-ec07-4921-a3f8-1d59ad739c80" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="0bc02285-8e70-442a-8d08-e04d922507c8" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<Abbreviation> -<AUni ws="en">6.6.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.476" /> -<DateModified val="2022-9-23 16:55:8.476" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to art.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Art</AUni> -</Name> -<OcmCodes> -<Uni>530 Fine Arts; 531 Decorative Art; 5311 Visual Arts; 532 Representative Art; 543 Exhibitions</Uni> -</OcmCodes> -<Questions> -<objsur guid="0db68c74-16ef-40c2-a4dc-63ca6022f7f6" t="o" /> -<objsur guid="7bf67fbf-c0c8-4f0b-b646-cb13ec9a3237" t="o" /> -<objsur guid="5bf04c3c-00c9-46e9-927f-7891682d248c" t="o" /> -<objsur guid="7e8e90f0-bcf8-4e2d-8b9c-91cc873bc5d4" t="o" /> -<objsur guid="49bc8278-83af-42ff-be02-d577040e5974" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="89ba59d4-b314-4070-83bb-f9f868bcd363" t="o" /> -<objsur guid="6b208fda-544c-4cba-b8cc-887b1018837f" t="o" /> -<objsur guid="3ae3a1be-cfb5-4953-b65b-68f0c51b1d40" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="0bc2029e-1a6f-4f6d-b034-82524355271e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mala:ya; mala:ya:</AUni> -<AUni ws="qvm-x-acl">mala:ya; mala:ya:</AUni> -<AUni ws="qvm-x-akh">mala:ya; mala:ya:</AUni> -<AUni ws="qvm-x-akl">mala:ya; mala:ya:</AUni> -<AUni ws="qvm-x-ame">mala:ya; mala:ya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mala:ya:</AUni> -<AUni ws="qvm-x-acl">+mala:ya:</AUni> -<AUni ws="qvm-x-akh">+mala:ya:</AUni> -<AUni ws="qvm-x-akl">+mala:ya:</AUni> -<AUni ws="qvm-x-ame">+mala:ya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.273" /> -<DateModified val="2022-10-10 21:19:47.698" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="41a81a4b-1a69-405e-8d6a-e3302c6f11dd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mala:ya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="de1b2cbc-ed69-41b1-a037-10ae0c2c9aad" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bf4f8a88-1281-49e3-96cd-34a37bdf47c0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mala:ya: 
\entryTyp root 
\gENG regret 
\gSPN 
\e +mala:ya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach mala:ya foreshortened 
\ach mala:ya: 
\mp +underlong 
\akh mala:ya foreshortened 
\akh mala:ya: 
\acl mala:ya foreshortened 
\acl mala:ya: 
\akl mala:ya foreshortened 
\akl mala:ya: 
\mp +underlong 
\ame mala:ya foreshortened 
\ame mala:ya: 
\i 1SA 15.11 <<Malayämi mandag rey cananpag Saúlta churashgäpita. Manami nishgäcunata cumplishgatsu.>> Tsaynog niptinmi Samuel laquicushpan waraylata Tayta Diosta manacur wagargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="0bc232ed-f545-44d2-9abd-da94ed76943f"> -<Form> -<Str> -<Run ws="en">c</Run> -</Str> -</Form> -</rt> -<rt class="LexEntry" guid="0bc33ad0-55ec-4236-947b-fb62956441b4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">trigue:ñu</AUni> -<AUni ws="qvm-x-acl">trigue:ñu; trigue:ñu; trigue:ño</AUni> -<AUni ws="qvm-x-akh">trigue:ñu</AUni> -<AUni ws="qvm-x-akl">trigue:ñu; trigue:ñu; trigue:ño</AUni> -<AUni ws="qvm-x-ame">trigue:ñu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+trigüeñu</AUni> -<AUni ws="qvm-x-acl">+trigüeñu</AUni> -<AUni ws="qvm-x-akh">+trigüeñu</AUni> -<AUni ws="qvm-x-akl">+trigüeñu</AUni> -<AUni ws="qvm-x-ame">+trigüeñu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.980" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0495e512-3fa2-44ed-8625-f3320e8d2626" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+trigüeñu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8fac2398-c0a9-43c2-a4a2-cebacef1da0a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4a87fd34-c204-4b94-a5cb-2b213d1f5d0a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +trigüeñu 
\entryTyp root 
\gENG 
\gSPN 
\e +trigüeñu 
\c N0 
\ach trigue:ñu 
\akh trigue:ñu 
\acl trigue:ñu / _# 
\acl trigue:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl trigue:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl trigue:ñu / _# 
\akl trigue:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl trigue:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame trigue:ñu 
\i SNG 5.10 Cuyaynë mözoga triwëñula y camaraglami caycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="0bc4b01f-8d17-4349-a113-1253adb2aaae" ownerguid="a2e3ee97-fa71-4934-9ccd-5f9aec0fd908"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rich</AUni> -<AUni ws="es">rica</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b9bfe8c4-84a3-4f43-8e6d-c30133a91b5d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="0bc58878-07d9-47c3-bf2d-f9272a37c53b" ownerguid="35c899e4-193b-470c-93f4-01cb1a7be14a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sign</AUni> -<AUni ws="es">firmar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1ce21dcd-a762-403d-b70f-f81353bafa16" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="0bc6ab6c-1ca6-442c-92ed-dbd9ddd332c0" ownerguid="ce386d36-77fa-4b94-9186-b971bfe42107"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="0bc87463-6408-4263-be2b-4603749cfd84" ownerguid="82b31efe-219a-425f-8483-862b2f102295"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="0bca0245-7de5-42e2-8e82-2dfd684802be" ownerguid="28174ef9-89d2-4059-bc8c-32fef000368b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0bcb602b-3e88-4e1e-a198-02e2e43a8178" ownerguid="721e2ee8-7ea5-4d17-94cc-d77d8e92bd27"> -<ExampleWords> -<AUni ws="en">polite, civil, courteous, diplomatic, discreet, elegant, graceful, refined, respectful, smooth, suave, tactful, well-mannered</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is polite?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0bcba319-fd51-47b3-95d3-fc7073fa9289" ownerguid="30fff450-1aa5-4993-9c14-c8019a5f072e"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">I could have done this, <but> you stopped me from doing it.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">but, only, except</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words indicate that something could happen, but something else prevented it from happening?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0bcd7cac-0752-451c-ac99-ea4a50c0d599" ownerguid="609cc365-f052-4fe9-b16c-5b5eda586d28"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">goose</AUni> -<AUni ws="es">ganso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="14fbc6ce-b0d7-4515-a5c7-53cb4e1d1e1f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="0bce7afa-8c12-4b94-8603-ddbae7206c70"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">la:</AUni> -<AUni ws="qvm-x-acl">la:</AUni> -<AUni ws="qvm-x-akh">la:</AUni> -<AUni ws="qvm-x-akl">la:</AUni> -<AUni ws="qvm-x-ame">la:</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.556" /> -<DateModified val="2022-10-16 14:2:6.87" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="2" /> -<LexemeForm> -<objsur guid="188d87af-7ca1-4062-82d9-275bb91da5f7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">POL</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e118995f-d03c-4537-8b1a-0955253a34a0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ff407389-1512-478e-824b-bd527d047076" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx POL 
\entryTyp suffix 
\gENG POL 
\gSPN CORT 
\e POL 
\c V1/V1 V2/V2 ONSHEV/ONSHEV BN/BN N0/N0 
\o 060, 160 
\mp NeverForeshortened 
\ach la: 
\akh la: 
\acl la: 
\akl la: 
\ame la: 
\mp +FinalC 
\mp +FinalLength 
\mcc POL / ~_ 3P.C [pa] 
\mcc POL / ~_ (3P.C) LOC1.2 
\mcc POL / PRT1 ~_ [poss] 
\mcc POL / ~_ 3P.C 
\mcc POL / *ka INF ~_ 
\mcc POL / ~_ PRT2 
\mcc POL / IMPFV1 ~_ ADVSS1 
\mcc POL / ~_ ADV1 
\mcc POL / ~_ [adv] 
\mcc POL / AFAR ~_ [adv] 
\mcc POL / BEN3 ~_ 3 ADV1 
\mcc POL / ~_ GOAL ADV1 
\mcc POL / ~_ [case]</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="0bd1ff14-0f91-4144-8ccc-ae374620d493" ownerguid="5ea4f6af-0125-4cdd-8a90-8a2d9089df5f"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="ebb5e6b4-68ae-4ef4-abfa-4fd511cff11d" t="o" /> -<objsur guid="ee74a3f7-80b0-4e22-b9f2-d8e746cea35f" t="o" /> -<objsur guid="9c62fcd6-d45e-4e5e-bf16-b6e0b6fcf86d" t="o" /> -<objsur guid="7c404a66-467a-4c0c-95ca-461c54612f05" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="0bd3a443-92ec-4aba-9f6d-67e1ba8c2d94"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chupi</AUni> -<AUni ws="qvm-x-acl">chupi; chupi; chupe</AUni> -<AUni ws="qvm-x-akh">chupi</AUni> -<AUni ws="qvm-x-akl">chupi; chupi; chupe</AUni> -<AUni ws="qvm-x-ame">chupi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trupi</AUni> -<AUni ws="qvm-x-acl">*trupi</AUni> -<AUni ws="qvm-x-akh">*trupi</AUni> -<AUni ws="qvm-x-akl">*trupi</AUni> -<AUni ws="qvm-x-ame">*trupi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.170" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5a539821-37a6-449b-a7f1-818136e77ed2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trupi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="43826ea1-2ce1-40e6-a553-836c312d441b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a1156ec8-4ced-49d4-b9a2-6affa99dcab5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trupi 
\entryTyp root 
\gENG fem.sex.organs 
\gSPN sexo.de.la.muje 
\e *trupi 
\c N0 
\mp +FinalI 
\ach chupi 
\akh chupi 
\acl chupi / _# 
\acl chupi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chupe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chupi / _# 
\akl chupi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chupe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chupi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="0bd56d70-3a1c-41ae-a4d9-a79675ec55f9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">llanu</AUni> -<AUni ws="qvm-x-acl">llanu; llanu; llano</AUni> -<AUni ws="qvm-x-akh">llanu</AUni> -<AUni ws="qvm-x-akl">llanu; llanu; llano</AUni> -<AUni ws="qvm-x-ame">llanu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llanu</AUni> -<AUni ws="qvm-x-acl">*llanu</AUni> -<AUni ws="qvm-x-akh">*llanu</AUni> -<AUni ws="qvm-x-akl">*llanu</AUni> -<AUni ws="qvm-x-ame">*llanu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.144" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8b9f2a23-bd3b-4ea6-bd52-f15842372792" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llanu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9d7f2384-48bd-4993-a929-28ef2f70658b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="df5080b8-aa7b-4df5-b2f1-b3557c606634" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llanu 
\entryTyp root 
\gENG fine 
\gSPN fino 
\e *llanu 
\c N0 
\ach llanu 
\akh llanu 
\acl llanu / _# 
\acl llanu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl llano +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl llanu / _# 
\akl llanu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl llano +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame llanu 
\i modismo: Llanutami micuy putscaycan. Llanutami guellay putscaycan. - ushacänanpag caycan. (Walter habla así, pero Felipe y Wilmer no.)</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="0bd6e773-2f27-4f6d-9eed-2e7b0431ee45" ownerguid="56cb7acc-108f-44ab-a7dc-d995bf6db8c5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">päcu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">päcu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">päku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">päku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">päku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d9706437-e094-4fe8-b14f-01ea8dfdec23" t="r" /> -</Morph> -<Msa> -<objsur guid="f32a5a50-f426-45b8-ae08-eba8e0a53b74" t="r" /> -</Msa> -</rt> -<rt class="LexExampleSentence" guid="0bd85a5f-898f-4aa5-ae03-c17a32de4cac" ownerguid="9c594a4a-2c7a-44e7-9b53-0261a0190024"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">LUK 16.4 ¡A yä, kanan imata ruranäpaqpis musyänami!</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="0bd9488a-4880-497e-b8d2-dd73cdffae01" ownerguid="6c4e27b3-6145-4a86-bab2-2fb8df03e02e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="0be12cdc-c0e5-415e-b47d-e761d37f6c93" ownerguid="dac6537a-5a97-4c35-8c40-7ea8ff36cdb4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">apostle</AUni> -<AUni ws="es">apostol</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e1da583e-b5cc-42ea-b244-f78341b59579" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0be21bb0-d652-4144-9b11-019590394cfa" ownerguid="d8ea1902-5fa6-4fda-b7b2-1f9c301cdc5f"> -<ExampleWords> -<AUni ws="en">bundle, bunch, sheaf, pack, package, packet, string of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a group of things that are tied or joined together?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0be505c4-c0e6-4b50-959e-72b0b41e3abf" ownerguid="bfe8902a-32a7-4092-93b2-9dcf3dce205f"> -<ExampleWords> -<AUni ws="en">deeply hurt, deeply distressed, distraught, be in a state, be in an uproar, emotions in an uproar, torment, tormented</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to feeling very upset?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0be52387-b2a7-4290-b9f1-52a8d569b84e" ownerguid="b82c7ba0-9f4e-44da-bcd0-d30f5b224de5"> -<ExampleWords> -<AUni ws="en">ointment, salve, liniment, lotion, poultice, balm, cream</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to medicine you put on your skin?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0bee00d4-cdf0-4dd7-9006-4f367035dacf" ownerguid="c6a8541f-dda4-484d-a65e-fdb19b5e7b7d"> -<Form> -<AUni ws="qvm-x-ach">shiuri</AUni> -<AUni ws="qvm-x-acl">shiuri; shiuri; shiure</AUni> -<AUni ws="qvm-x-akh">shiwri</AUni> -<AUni ws="qvm-x-akl">shiwri; shiwri; shiwre</AUni> -<AUni ws="qvm-x-ame">shiwri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="0bef0b38-eefe-4798-b063-50e3ab19e312" ownerguid="34cd6a60-04b6-41e6-abc5-91ca001cad01"> -<Form> -<AUni ws="qvm-x-ach">lichi</AUni> -<AUni ws="qvm-x-acl">lichi; liche</AUni> -<AUni ws="qvm-x-akh">lichi</AUni> -<AUni ws="qvm-x-akl">lichi; liche</AUni> -<AUni ws="qvm-x-ame">lichi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="0bf0800b-6e6d-44e6-b9cb-d2181b0ad5a0" ownerguid="481d05f1-82d3-4ef6-931f-52182fab0eb5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="StTxtPara" guid="0bf46a6d-fab1-499d-a6e6-1d74b0149a24" ownerguid="1b3624a5-d4f7-4190-9e19-d074a59aa870"> -<Contents> -<Str> -<Run ws="qvm-x-akh">rurarkaykan</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="cb69a351-0e26-450a-a6cc-c287638d35c8" t="o" /> -</Segments> -</rt> -<rt class="CmDomainQ" guid="0bf65d60-6fce-4607-9f26-9b9ef843daad" ownerguid="66abfbe5-e011-48de-8773-905f1b1ce215"> -<ExampleWords> -<AUni ws="en">fire a pot</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to heating clay to make it hard?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0bfb6cc3-a6eb-417d-915a-97f8d4b94b06" ownerguid="ec79e90e-ecd3-497f-bc14-ac64181f53d7"> -<ExampleWords> -<AUni ws="en">do evil to, harm, hurt, offend, offense, hurt someone's feelings, damage, impair, hit hard, work against, be a serious blow to, be detrimental to, at the expense of, to the detriment of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to doing evil to someone?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0bfe8214-7b49-44d2-8ff6-72ae448a67bb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ripisa</AUni> -<AUni ws="qvm-x-acl">ripisa</AUni> -<AUni ws="qvm-x-akh">ripisa</AUni> -<AUni ws="qvm-x-akl">ripisa</AUni> -<AUni ws="qvm-x-ame">ripisa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ripisa</AUni> -<AUni ws="qvm-x-acl">+ripisa</AUni> -<AUni ws="qvm-x-akh">+ripisa</AUni> -<AUni ws="qvm-x-akl">+ripisa</AUni> -<AUni ws="qvm-x-ame">+ripisa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.368" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="886ba061-9f7a-440e-b1fc-fb9504ba9c29" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ripisa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0d160219-7d51-4a60-9941-61748a9711b2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d912f561-4504-41c4-92ac-60364c1f5029" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ripisa 
\entryTyp root 
\gENG shelf 
\gSPN taquillero 
\e +ripisa 
\c N0 
\ach ripisa 
\akh ripisa 
\acl ripisa 
\akl ripisa 
\ame ripisa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="0c0012ef-a330-4a9d-8fb1-6619cc966142" ownerguid="c159bc1a-aaf5-4615-9268-5121e0dfa419"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="0c005077-394d-4d84-8ffe-45da37ab8130" ownerguid="4e2ab412-6bb4-411d-ae7e-70062b3c7375"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -<Sense> -<objsur guid="db6117c5-121c-433a-a891-e69950f55761" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="0c039c09-cb00-427f-b6dd-242470584187" ownerguid="15df5c19-204d-4097-accc-179b20cf5280"> -<Form> -<AUni ws="qvm-x-ach">chiwa</AUni> -<AUni ws="qvm-x-acl">chiwa</AUni> -<AUni ws="qvm-x-akh">chiwa</AUni> -<AUni ws="qvm-x-akl">chiwa</AUni> -<AUni ws="qvm-x-ame">chiwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="0c05796f-e1bb-4771-826c-102032d9f4d0" ownerguid="f3da1994-1f68-4e16-bc17-4074208f8143"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">head</AUni> -<AUni ws="es">cabeza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0cd06721-3e41-4f90-9b92-8d912e3a5966" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="0c059134-b542-479c-95b4-c07f3c26fc0c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ultimu</AUni> -<AUni ws="qvm-x-acl">ultimu; ultimu; ultimo</AUni> -<AUni ws="qvm-x-akh">ultimu</AUni> -<AUni ws="qvm-x-akl">ultimu; ultimu; ultimo</AUni> -<AUni ws="qvm-x-ame">ultimu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+último</AUni> -<AUni ws="qvm-x-acl">+último</AUni> -<AUni ws="qvm-x-akh">+último</AUni> -<AUni ws="qvm-x-akl">+último</AUni> -<AUni ws="qvm-x-ame">+último</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.322" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="002ac542-fa50-4916-a722-61f6f9430df5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+último</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="56a80ac5-e000-403b-aa38-4ea0758c7f5c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="edace079-16c6-43dc-8720-aa93d07456fa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +último 
\entryTyp root 
\gENG last 
\gSPN ultimo 
\e +último 
\mp +assimilated 
\ach ultimu 
\akh ultimu 
\acl ultimu / _# 
\acl ultimu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ultimo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ultimu / _# 
\akl ultimu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ultimo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ultimu 
\c N0</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="0c08e5fd-d206-417f-9dd1-ef1066d67ca4" ownerguid="52de16bd-6e72-403c-a187-0c5178ce44b5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="0c0da763-f88e-4a42-b1e1-2d0f02dd35a6" ownerguid="e67d77e6-7e2d-4852-ac49-a6b543933c23"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="0c11b3dc-380b-4922-baed-b193d8450177" ownerguid="3dee4718-f385-4183-90d9-a581899a2230"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.divine</AUni> -<AUni ws="es">adivinar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a1a6f6da-365e-4d82-abeb-2bf667617fe1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="0c13a37e-846b-4baa-a11b-39579f611372" ownerguid="8a42ded1-e11a-41be-a366-c76ae9db11ba"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">nina</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">nina</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">nina</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">nina</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nina</Run> -</AStr> -</Form> -<Morph> -<objsur guid="9592ea37-5d72-422b-b578-d3d7cf3eb70c" t="r" /> -</Morph> -<Msa> -<objsur guid="83410c4d-b0ef-4e3f-8f88-7543121065be" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="0c1429f9-cdac-4b0d-b0ad-44721c7d3923" ownerguid="a8a9b7c4-9c60-4a67-a3d6-8aa6d18d86c8"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="0c14ec24-7f7e-4c3b-877f-bf2508f6e26c" ownerguid="a7031101-5887-48a6-b1cf-07ce397bf9cf"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PunctuationForm" guid="0c1783fd-ab1c-4205-8bbe-e2af417bfa54"> -<Form> -<Str> -<Run ws="en">+</Run> -</Str> -</Form> -</rt> -<rt class="WfiMorphBundle" guid="0c1ac6b4-f344-41b4-aeed-c49773660c9e" ownerguid="867f98c7-5ab3-4c00-b3dc-774415ad068f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="0c1bcc98-9bc3-4da0-8eac-ff8a6eecbf84" ownerguid="bd7d0c9c-791e-4c34-b9ed-ebddad8f9724"> -<Abbreviation> -<AUni ws="en">4.7.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to acquitting a person.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Acquit</AUni> -</Name> -<Questions> -<objsur guid="722ae82f-aeff-481f-8c3d-67892eb3c6c2" t="o" /> -<objsur guid="2b769d92-3bfa-4d71-ab93-5bae440c9aed" t="o" /> -<objsur guid="6343fbf0-50ee-45d0-8381-8be32cb0b40a" t="o" /> -<objsur guid="15de34e4-6d84-43e7-a405-742d6da2c92b" t="o" /> -<objsur guid="259ea414-e90d-4089-84bc-422e5a73b272" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="0c1ceb4c-d2e4-4ab3-8e00-a53480514c0c" ownerguid="314d6c78-0f1a-4454-baac-07ab4c94b271"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">voice</AUni> -<AUni ws="es">voz</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4acdf4b1-d46b-49ed-acda-7169bd214205" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0c1d089f-07fa-42a8-86c1-880872a02c82" ownerguid="aed6c1ec-abbe-47e3-a6cc-a99ecff3b825"> -<ExampleWords> -<AUni ws="en">silvery, metallic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is shiny like metal?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="0c21ae3d-10b1-481f-8d8f-66e2590c4578" ownerguid="b760a3a7-ea7f-4a4b-a4b5-81752f2ca158"> -<Abbreviation> -<AUni ws="en">6.1.2.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.350" /> -<DateModified val="2022-9-23 16:55:8.350" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being lazy.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88F' Laziness, Idleness</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Lazy</AUni> -</Name> -<Questions> -<objsur guid="27708f10-c681-4a29-9e98-3d3b7eb1f806" t="o" /> -<objsur guid="4df9a436-0386-4d8e-a187-92e5c8842020" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="0c21d95c-59ff-4577-a381-880b9d8e218e" ownerguid="b60bf544-7774-4623-8c67-19b32b53dea2"> -<ExampleWords> -<AUni ws="en">God, the Lord, Yahweh, Elohim, Allah, Theos, Deus, Sky God, supreme being, supreme deity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the supreme being in the universe?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0c25be57-2307-4f6a-975b-b0e22f4c86e6" ownerguid="c2630384-2f72-4a96-baed-3fff03383362"> -<ExampleWords> -<AUni ws="en">harvester</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What tools and machines are used to harvest crops?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0c267548-f59f-4017-a2dc-5858faf90d88" ownerguid="eed8d3b5-ed51-4f52-9080-e3c7b4a39222"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">worry</AUni> -<AUni ws="es">preocuparse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f3090677-b6da-4321-8a18-7f3690123561" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="0c2aad7c-1b35-49bb-9f6d-07280b2b9953" ownerguid="583247d7-e105-4555-a7b6-06041564dc4f" /> -<rt class="CmDomainQ" guid="0c2ce541-ebee-4487-9c87-cd04df65c0f4" ownerguid="a3e905b8-107b-4311-bb50-0abe151131b3"> -<ExampleWords> -<AUni ws="en">get permission, can, be allowed, be free to do something, may</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to being allowed to do something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0c3202ee-5449-46f8-b04e-dea305a8fd89" ownerguid="6bfb7813-3a7d-47e2-88e1-d54034c07e5d"> -<ExampleWords> -<AUni ws="en">need advice, don't know what to do</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to needing advice?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0c34f840-2469-424a-9859-f94a5507dde1" ownerguid="73d580ac-dc89-474c-8048-3453ebdda807"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The gun has a <range> of one mile.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">range, reach (n), extent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the distance something can move?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0c3b1d8c-38d3-4f55-b06e-15262aa17df7" ownerguid="4c862416-f7c4-4a3c-82ac-fe81e1efb879"> -<ExampleWords> -<AUni ws="en">throat, trachea, esophagus, Adam's apple, bronchus, bronchial, windpipe, pharyngeal, pharynx, gullet, epiglottis, glottal, glottis, laryngeal, larynx</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What are the parts of the throat?</AUni> -</Question> -</rt> -<rt class="LexEntryType" guid="0c4663b3-4d9a-47af-b9a1-c8565d8112ed" ownerguid="bb372467-5230-43ef-9cc7-4d40b053fb94"> -<Abbreviation> -<AUni ws="en">sp. var.</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">A variant spelling of a lexeme.</Run> -</AStr> -</Description> -<Discussion> -<objsur guid="b7436d8c-ea5e-11de-8477-0013722f8dec" t="o" /> -</Discussion> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Spelling Variant</AUni> -</Name> -<ReverseAbbr> -<AUni ws="en">sp. var. of</AUni> -</ReverseAbbr> -<ReverseName> -<AUni ws="en">Spelling Variant of</AUni> -</ReverseName> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="0c49d8bb-06a5-4b7d-a317-c94d9ecb8850"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">contrata</AUni> -<AUni ws="qvm-x-acl">contrata</AUni> -<AUni ws="qvm-x-akh">contrata</AUni> -<AUni ws="qvm-x-akl">contrata</AUni> -<AUni ws="qvm-x-ame">contrata</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+contratar</AUni> -<AUni ws="qvm-x-acl">+contratar</AUni> -<AUni ws="qvm-x-akh">+contratar</AUni> -<AUni ws="qvm-x-akl">+contratar</AUni> -<AUni ws="qvm-x-ame">+contratar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.180" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b4600d6d-a7e5-4040-9ed3-ff230e8497cd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+contratar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3a1e62e2-5b51-40ab-99a2-0cdc1fda885f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6a9e28f3-6ccd-46e8-aa83-96b989273a0f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +contratar 
\entryTyp root 
\gENG contract 
\gSPN contratar 
\e +contratar 
\c V2 
\ach contrata 
\akh contrata 
\acl contrata 
\akl contrata 
\ame contrata</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="0c49f21b-4024-40bb-befa-3719a00bebe9" ownerguid="e25a6752-9f9c-48d5-8e84-5f0588955357"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 102.19 Glorianpita patsami arcämorgan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="0c4cc5ee-91e8-4864-bad8-09edac2c3e94" ownerguid="f8e88cdc-111b-42e6-a5b7-eaaa0807eae1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">CAUSBE4</AUni> -<AUni ws="es">CAUSER4</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b945415f-3c4c-4fcf-b445-e88a1578c095" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="0c4e710e-ebef-4e3e-b9c6-190d080dd4d7" ownerguid="4369e292-e9da-463b-9aef-f56289b63ff8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="0c5194fd-9f2a-4ced-8fe1-cefc0d457d4a" ownerguid="d430d08a-9907-4e6d-8268-f17d8009f612"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="0c525337-87c6-452d-bf45-f26a661b923e" ownerguid="5483b41c-4ebc-4298-ae29-f68de3f489b4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">oatmeal</AUni> -<AUni ws="es">avena</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6d1d7d03-5120-47b4-b046-4d07347375f3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="0c536643-88a9-4b37-8be8-7f5ebb634c4c" ownerguid="269b22ac-0aaa-4add-afc5-a67150dbb5af"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="0c5445b7-c733-40af-91dc-9fef0a52262c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">multa</AUni> -<AUni ws="qvm-x-acl">multa</AUni> -<AUni ws="qvm-x-akh">multa</AUni> -<AUni ws="qvm-x-akl">multa</AUni> -<AUni ws="qvm-x-ame">multa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+multar</AUni> -<AUni ws="qvm-x-acl">+multar</AUni> -<AUni ws="qvm-x-akh">+multar</AUni> -<AUni ws="qvm-x-akl">+multar</AUni> -<AUni ws="qvm-x-ame">+multar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.497" /> -<DateModified val="2022-10-10 21:18:47.203" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="edad73db-5e68-4627-8acc-da3badc0adde" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+multar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="56e3dd29-e1bd-41fb-bce3-80efaad5a34e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1c17ef11-68a6-4aa1-896e-a4ba0c006bd8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +multar 
\entryTyp root 
\gENG 
\gSPN 
\e +multar 
\c V1 
\ach multa 
\akh multa 
\acl multa 
\akl multa 
\ame multa 
\i PRO 17.26 Manami alitsu caycan jutsaynag runata multatsishgan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="0c54aece-ae0a-403b-910a-a0d169782b5c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">salvador</AUni> -<AUni ws="qvm-x-acl">salvador</AUni> -<AUni ws="qvm-x-akh">salvador</AUni> -<AUni ws="qvm-x-akl">salvador</AUni> -<AUni ws="qvm-x-ame">salvador</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+salvador</AUni> -<AUni ws="qvm-x-acl">+salvador</AUni> -<AUni ws="qvm-x-akh">+salvador</AUni> -<AUni ws="qvm-x-akl">+salvador</AUni> -<AUni ws="qvm-x-ame">+salvador</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.439" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="13611f30-bd8e-48f1-98f2-64bafa69dfc6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+salvador</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bad09629-d0e5-4d26-bc3a-de14302f5ba6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="371b4510-0ae7-4ed7-95d8-3450d5a69e3d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +salvador 
\entryTyp root 
\gENG savior 
\gSPN salvador 
\e +salvador 
\c N0 
\mp +FinalC 
\ach salvador 
\akh salvador 
\acl salvador 
\akl salvador 
\ame salvador</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="0c56cb7c-adf5-426a-ba8c-8ee706be3a3b" ownerguid="d2bc312b-a40f-49b5-93b8-e1666c9f21cd"> -<Form> -<AUni ws="qvm-x-ach">shegui</AUni> -<AUni ws="qvm-x-acl">shegui; shegui; shegue</AUni> -<AUni ws="qvm-x-akh">sheqi</AUni> -<AUni ws="qvm-x-akl">sheqi; sheqi; sheqe</AUni> -<AUni ws="qvm-x-ame">shiqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0c59e4f7-de9f-46a6-afb7-adffb018c2d3" ownerguid="0ca05184-08b9-4dc7-a4c7-ff762380b111"> -<ExampleWords> -<AUni ws="en">receipt, ticket</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a piece of paper that says you have paid for something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0c5c3089-d49f-4cb6-857b-c836791dd19f" ownerguid="26d32f3e-ced6-45fc-afd0-7e017fa252c6"> -<ExampleWords> -<AUni ws="en">tell a riddle, give a riddle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used of telling a riddle?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="0c5e2310-1d3a-4460-987f-dfdfecc5090d" ownerguid="6ed896a6-bab7-4fdf-a4fd-a5ee49f380d2"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="45adaf53-1e9d-47fe-b757-051882f67185" t="o" /> -<objsur guid="bf022506-c6f7-4a68-bc15-9949ca00c3c7" t="o" /> -<objsur guid="3d740f68-3212-44a3-9de8-6e4c6d99c0a4" t="o" /> -<objsur guid="b894ee25-9815-4221-b387-dc1822c999b9" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="0c5eff0b-4158-4315-8bb0-98192b7f9bd8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">licu</AUni> -<AUni ws="qvm-x-acl">licu; licu; lico</AUni> -<AUni ws="qvm-x-akh">liku</AUni> -<AUni ws="qvm-x-akl">liku; liku; liko</AUni> -<AUni ws="qvm-x-ame">liku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lliku</AUni> -<AUni ws="qvm-x-acl">*lliku</AUni> -<AUni ws="qvm-x-akh">*lliku</AUni> -<AUni ws="qvm-x-akl">*lliku</AUni> -<AUni ws="qvm-x-ame">*lliku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.194" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6a080a7b-61e0-44ec-9bb0-67756f47f0de" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lliku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="98ca945e-9371-478c-9089-8a4dad411dc5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bf40c410-aa27-4c05-9726-0ff61ab4fcc3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lliku 
\entryTyp root 
\gENG robber's.cache 
\gSPN escondite 
\e *lliku 
\c N0 
\ach licu 
\akh liku 
\acl licu / _# 
\acl licu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl liku / _# 
\akl liku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl liko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame liku</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="0c627bd3-42d7-4308-a05d-7c7407ed81bf" ownerguid="1d72c590-a3c3-470f-b0a5-ac4926b7b13b"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0c62dae9-7239-467c-aa50-8aed6d5ffc6c" ownerguid="51d9d243-35cc-4a1e-bcdd-f2749975f5fd"> -<ExampleWords> -<AUni ws="en">actual, concrete, fact, factual, nonfiction, real, reality, true</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is real and not imagined?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0c674953-9fd3-49e8-a24a-68efb59d2b72" ownerguid="df092f30-28ba-420c-bb67-d2eb55aa173e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="0c67dc84-967d-4ae9-aa5d-7d649e0a4374" ownerguid="98d7a4a9-4b27-4241-b2f6-6ca4f4b2181d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">white</AUni> -<AUni ws="es">blanco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="576f2c8e-a5ac-495e-ba39-79e44a402f6e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="0c6afcee-8b7a-4272-b271-b65c8e83f4dd" ownerguid="65429919-05cf-4261-8822-c821702f636f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b699320c-1182-41cf-a567-d8008edefdda" t="r" /> -</Morph> -</rt> -<rt class="LexEntry" guid="0c6b8113-d532-4794-9ecd-ab4d9345d1f8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">talpu</AUni> -<AUni ws="qvm-x-acl">talpu; talpo</AUni> -<AUni ws="qvm-x-akh">talpu</AUni> -<AUni ws="qvm-x-akl">talpu; talpo</AUni> -<AUni ws="qvm-x-ame">talpu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tallpu</AUni> -<AUni ws="qvm-x-acl">*tallpu</AUni> -<AUni ws="qvm-x-akh">*tallpu</AUni> -<AUni ws="qvm-x-akl">*tallpu</AUni> -<AUni ws="qvm-x-ame">*tallpu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.784" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6cc8a5fd-36a7-441d-b6d2-c5f4a9258e21" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tallpu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="54c86f5c-ae7c-4f57-b010-45bec3e0aca1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="88bd06bc-dbfc-40d5-8df0-4ea692df6466" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tallpu 
\entryTyp root 
\gENG sink 
\gSPN hundir 
\e *tallpu 
\c V2 
\ach talpu 
\akh talpu 
\acl talpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl talpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl talpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl talpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame talpu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="0c6bd6f7-2787-45f5-a26b-29f68182e2fc" ownerguid="1e46d9b9-1d64-4f27-be0c-04a3a2a5b29c"> -<Form> -<AUni ws="qvm-x-ach">canta</AUni> -<AUni ws="qvm-x-acl">canta</AUni> -<AUni ws="qvm-x-akh">canta</AUni> -<AUni ws="qvm-x-akl">canta</AUni> -<AUni ws="qvm-x-ame">canta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StTxtPara" guid="0c701f6a-8edb-4055-a94e-ca7f063c8d97" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">aywarimuptiki</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="c946f243-8a25-4400-9bd2-42227fa096c4" t="o" /> -</Segments> -</rt> -<rt class="MoStemAllomorph" guid="0c71816e-29da-4aac-94f8-9b64940ee60e" ownerguid="5b223347-0605-4a88-9745-f71aa4e1f320"> -<Form> -<AUni ws="qvm-x-ach">golmi</AUni> -<AUni ws="qvm-x-acl">golmi; golmi; golme</AUni> -<AUni ws="qvm-x-akh">qolmi</AUni> -<AUni ws="qvm-x-akl">qolmi; qolmi; qolme</AUni> -<AUni ws="qvm-x-ame">qulmi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="0c71c4a0-c9cf-44d1-bcf4-65588c47aef3" ownerguid="cc36af80-42a1-4356-a9d2-2f517b12b3bc"> -<Form> -<AUni ws="qvm-x-ach">tersu; terso</AUni> -<AUni ws="qvm-x-acl">tersu; tersu; terso</AUni> -<AUni ws="qvm-x-akh">tersu; terso</AUni> -<AUni ws="qvm-x-akl">tersu; tersu; terso</AUni> -<AUni ws="qvm-x-ame">tersu; terso</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0c72a78b-4261-4391-9ccc-c897bb165461" ownerguid="3dba39bc-48f2-4bcb-9357-c8fbed6922ca"> -<ExampleWords> -<AUni ws="en">promise (n), commitment, assurance, guarantee, pledge, plight, troth, word</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something someone promises to do?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0c7a72f5-7462-4cbc-b45a-b9abcb295fda" ownerguid="ae015229-0907-4e8e-8408-309706403927"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stretcher</AUni> -<AUni ws="es">camilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="90414618-e08d-4cd5-8e1c-adcf91fcd392" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="0c7aaae1-027c-4d93-9d3c-c82dc83275da" ownerguid="729b249e-aa55-4c0c-bf0e-0034e71e7e84"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="0c7bf344-250b-4855-9133-90cab0ab538b" ownerguid="5a8d99f2-b4ce-49ad-aa45-611951fa1022"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tribe</AUni> -<AUni ws="es">tribu</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3fde4613-ddcf-4f33-81e5-15a0ab7b13d2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="0c7c33f2-4cfa-42df-84bb-19fc915a72bd" ownerguid="bfeba2a4-4479-49e9-838c-3baa2ad0fcae"> -<Abbreviation> -<AUni ws="en">8.3.5.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.619" /> -<DateModified val="2022-9-23 16:55:8.619" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to copying something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Copy</AUni> -</Name> -<Questions> -<objsur guid="9d4be01a-c41c-4bec-893f-91da75044724" t="o" /> -<objsur guid="40e813fc-da50-4c89-9461-980849bb50c8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="0c7df65a-fc7a-4d86-b0d9-e3f81f5211a8" ownerguid="646e0b34-c5a8-492e-af7f-e7df0d3c38fb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="0c80b2fb-9490-4024-803b-d2336c4bba43" ownerguid="4b0bbf4a-bae7-431a-b85a-c3a0cffe19b4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1 V2/V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">IMPFV</AUni> -<AUni ws="es">IMPF</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4867346d-ecb1-40e9-a091-3bc5d299d8a0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="0c81d9c2-d1c9-4013-8197-0413ddedbfe4" ownerguid="1f3f3064-6df3-4816-8964-16423bb8cbce"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">calendar</AUni> -<AUni ws="es">calendario</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6c3cec89-f390-4f9f-bb98-f467abda4edd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="0c83772c-83cb-41b8-b65f-d447c23e1531" ownerguid="0cbef6d0-3121-4610-8696-a123e2cc7913"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0c83dc82-25d9-42d2-ae23-8423269b934d" ownerguid="35e61ec4-0542-4583-b5da-0aa5e31a35aa"> -<ExampleWords> -<AUni ws="en">wash (the baby), anoint, swaddle (wrap in cloth)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to what is done for the baby?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0c846b1b-058e-409b-bffe-fac4a8cdc81f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuaja</AUni> -<AUni ws="qvm-x-acl">cuaja</AUni> -<AUni ws="qvm-x-akh">cuaja</AUni> -<AUni ws="qvm-x-akl">cuaja</AUni> -<AUni ws="qvm-x-ame">cuaja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuajar</AUni> -<AUni ws="qvm-x-acl">+cuajar</AUni> -<AUni ws="qvm-x-akh">+cuajar</AUni> -<AUni ws="qvm-x-akl">+cuajar</AUni> -<AUni ws="qvm-x-ame">+cuajar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.232" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="500680a2-780c-4bb3-9ec1-e3b8edcb0d9d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuajar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9b796a42-1f77-4987-92bb-7989c2ecf948" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8583ca92-ccc6-4543-b4d5-b14f49d77e8a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuajar 
\entryTyp root 
\gENG 
\gSPN 
\e +cuajar 
\c V1 
\ach cuaja 
\akh cuaja 
\acl cuaja 
\akl cuaja 
\ame cuaja</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="0c879183-7046-4fd1-ae61-bd30cb68711e" ownerguid="3ca50578-7cab-42f1-aada-779844ac936d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0c8a521f-dfb1-44a4-a054-88713b3c555c" ownerguid="d574c970-6834-4566-ae37-f42c7e95483b"> -<ExampleWords> -<AUni ws="en">weigh down, weight (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making something heavy?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0c8c497b-5b67-49c4-893e-8a8edd3e5710" ownerguid="bf309576-a4b0-49ee-8a7c-09952cc58195" /> -<rt class="MoStemAllomorph" guid="0c93cdb6-c5ab-4d97-a016-a676b3b26598" ownerguid="836a7fed-e497-4ecb-8057-16c2c95ad368"> -<Form> -<AUni ws="qvm-x-ach">laqui</AUni> -<AUni ws="qvm-x-acl">laqui; laque</AUni> -<AUni ws="qvm-x-akh">laki</AUni> -<AUni ws="qvm-x-akl">laki; lake</AUni> -<AUni ws="qvm-x-ame">laki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="0c94e084-d9f3-4880-9c97-c8e7d2ff5653"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wachca</AUni> -<AUni ws="qvm-x-acl">wachca</AUni> -<AUni ws="qvm-x-akh">wachka</AUni> -<AUni ws="qvm-x-akl">wachka</AUni> -<AUni ws="qvm-x-ame">wachka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*watraka:</AUni> -<AUni ws="qvm-x-acl">*watraka:</AUni> -<AUni ws="qvm-x-akh">*watraka:</AUni> -<AUni ws="qvm-x-akl">*watraka:</AUni> -<AUni ws="qvm-x-ame">*watraka:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.584" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ebdc194c-14c7-4d0b-9ee9-1d0dfaec489d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*watraka:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4ccc54df-7c4a-4954-a7f2-32eccca17277" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="386a5b19-ab65-4822-bea8-39a3683a1361" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *watraka: 
\entryTyp root 
\gENG tie 
\gSPN amarrar 
\e *watraka: 
\c V1 
\ach wachca 
\akh wachka 
\acl wachca 
\akl wachka 
\ame wachka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="0c98ec07-f83d-48f2-8d40-8776b65371c3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">camione:ru</AUni> -<AUni ws="qvm-x-acl">camione:ru; camione:ru; camione:ro</AUni> -<AUni ws="qvm-x-akh">camione:ru</AUni> -<AUni ws="qvm-x-akl">camione:ru; camione:ru; camione:ro</AUni> -<AUni ws="qvm-x-ame">camione:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+camionero</AUni> -<AUni ws="qvm-x-acl">+camionero</AUni> -<AUni ws="qvm-x-akh">+camionero</AUni> -<AUni ws="qvm-x-akl">+camionero</AUni> -<AUni ws="qvm-x-ame">+camionero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.310" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d98a28af-b6de-45e6-8acc-aeff0c9dc204" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+camionero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="031c0e2f-8328-417f-a282-3d6e9b13fa7b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="984a3ca0-2d2a-4408-ba31-a660bb4b31fd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +camionero 
\entryTyp root 
\gENG truck.driver 
\gSPN camionero 
\e +camionero 
\c N0 
\ach camione:ru 
\akh camione:ru 
\acl camione:ru / _# 
\acl camione:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl camione:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl camione:ru / _# 
\akl camione:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl camione:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame camione:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="0ca05184-08b9-4dc7-a4c7-ff762380b111" ownerguid="67931f1c-9a0c-4d18-9762-e553c132256c"> -<Abbreviation> -<AUni ws="en">6.8.4.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to paying money for something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>57L Pay, Price, Cost</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Pay</AUni> -</Name> -<Questions> -<objsur guid="d82084f4-e63e-4c0b-bfd9-4a4d6cf04329" t="o" /> -<objsur guid="85e0d403-f9e8-449b-9b3e-164235afcf00" t="o" /> -<objsur guid="0c59e4f7-de9f-46a6-afb7-adffb018c2d3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="0ca0a9a5-fa82-4472-a3e3-6034fc2c7fc9" ownerguid="b46d4673-7e63-4476-9596-e1602c5530d0"> -<Category> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</Category> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="5b5f779a-bf1f-4829-940a-4e441743ee16" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="76d8ab5b-82a1-42d5-b954-e4e25bf4d357" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="0ca42d60-9e9b-46fb-ac9c-dc2c2c05338b" ownerguid="d4d7d75f-f9b1-498f-b2d8-55fb72e04044"> -<Form> -<AUni ws="qvm-x-ach">yarcu</AUni> -<AUni ws="qvm-x-acl">yarcu; yarco</AUni> -<AUni ws="qvm-x-akh">yarku</AUni> -<AUni ws="qvm-x-akl">yarku; yarko</AUni> -<AUni ws="qvm-x-ame">yarku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="0ca8ae6f-c062-402b-a83d-da1fb91dfb33" ownerguid="0ff4cbb1-904f-42fc-aaa7-30e6f45273d5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="40c4c089-f0a6-4ad0-9fa7-6f9dc8b07d71" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="b23b9297-f72d-4cb6-9807-843856f6663a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="0caeb26f-fa43-4d87-9741-a6c071cf63d6" ownerguid="1e06fc23-60cd-44a0-9fa5-bdf756101db2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0cb840cf-8838-4349-a617-1c21d4062afd" ownerguid="6eaba0c3-cdfe-435d-8811-7f2ddf6facbd"> -<ExampleWords> -<AUni ws="en">swell, swelling, edema, inflammation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to swelling?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0cbef6d0-3121-4610-8696-a123e2cc7913"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jura</AUni> -<AUni ws="qvm-x-acl">jura</AUni> -<AUni ws="qvm-x-akh">jura</AUni> -<AUni ws="qvm-x-akl">jura</AUni> -<AUni ws="qvm-x-ame">jura</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+jurar</AUni> -<AUni ws="qvm-x-acl">+jurar</AUni> -<AUni ws="qvm-x-akh">+jurar</AUni> -<AUni ws="qvm-x-akl">+jurar</AUni> -<AUni ws="qvm-x-ame">+jurar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.900" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="532c6549-ead6-4359-a6c0-7f42f0b5dd3f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+jurar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0c83772c-83cb-41b8-b65f-d447c23e1531" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b1be4642-75c0-4395-a172-ab574c4dc188" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +jurar 
\entryTyp root 
\gENG 
\gSPN 
\e +jurar 
\c V2 
\ach jura 
\akh jura 
\acl jura 
\akl jura 
\ame jura</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0cc1153a-9dcf-42ba-bc04-433fc2f13155" ownerguid="a8ae0ee7-56ca-4bdf-bd9a-c56da3ff9254"> -<ExampleWords> -<AUni ws="en">extort, extortion, racket, racketeering, organized crime</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to extorting money?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0cc19979-7f88-496b-be41-6380e1bfc59e" ownerguid="8da5f193-899f-4e5c-a6ee-280d26d4d9d3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="0cc3b0bc-7b2e-4e76-b362-cebc13954832" ownerguid="93e87993-8183-443f-9ea0-0fa5810468b3"> -<Form> -<AUni ws="qvm-x-ach">cuchara</AUni> -<AUni ws="qvm-x-acl">cuchara</AUni> -<AUni ws="qvm-x-akh">cuchara</AUni> -<AUni ws="qvm-x-akl">cuchara</AUni> -<AUni ws="qvm-x-ame">cuchara</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0cc4b56b-15eb-43e9-ac49-6cb9060cb569" ownerguid="77f0d0dc-61ee-4373-9879-35a7059bd892"> -<ExampleWords> -<AUni ws="en">tooth decay, cavity, loose, rotten, gingivitis</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to describe a tooth that has gone bad?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0cc4baf7-020c-4b5a-8431-5f2ac4e72b9f" ownerguid="fe649c64-54c2-47bb-9d21-ba7a19f9bdc0"> -<Form> -<AUni ws="qvm-x-ach">lacatu</AUni> -<AUni ws="qvm-x-acl">lacatu; lacatu; lacato</AUni> -<AUni ws="qvm-x-akh">lakatu</AUni> -<AUni ws="qvm-x-akl">lakatu; lakatu; lakato</AUni> -<AUni ws="qvm-x-ame">lakatu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="0cc62b4a-d5ff-4f45-83d1-e2b46e5d159a" ownerguid="afe7cc92-e0ad-40d9-be56-aa12d2693a3f"> -<Abbreviation> -<AUni ws="en">8.4.1.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.638" /> -<DateModified val="2022-9-23 16:55:8.638" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a time of the day.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>67 Points of Time; 67D A Point of Time with Reference to Units of Time: Daybreak, Midday, Midnight, Late</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Time of the day</AUni> -</Name> -<Questions> -<objsur guid="d86ef6f9-32cb-4d68-8a9b-b3cf197db203" t="o" /> -<objsur guid="2885e290-3b69-46cd-88ad-ce4ef70df6bb" t="o" /> -<objsur guid="56e59fb3-5b43-434a-9a2a-311e732ed264" t="o" /> -<objsur guid="7121933e-4880-437d-bd18-323bfbd2ed0a" t="o" /> -<objsur guid="0105e4a9-ae7f-481e-97d0-5e88f1992c1e" t="o" /> -<objsur guid="6714408c-4109-4d07-b87f-fa14cce2e352" t="o" /> -<objsur guid="e91c5e15-c4b1-4604-bb27-efc070e56d53" t="o" /> -<objsur guid="f6b10001-3b40-49b9-9a8f-4d4234ca8a72" t="o" /> -<objsur guid="af97416f-5122-418e-9ea4-75005d9883d0" t="o" /> -<objsur guid="1ecc2012-5762-44cd-91d6-34e3ba2857fa" t="o" /> -<objsur guid="ac88c81a-097c-477e-9979-c160b54d1b2d" t="o" /> -<objsur guid="c5a2c86e-c86d-4157-b4e4-50b622473062" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoMorphType" guid="0cc8c35a-cee9-434d-be58-5d29130fba5b" ownerguid="d7f713d8-e8cf-11d3-9764-00c04f186933"> -<Abbreviation> -<AUni ws="en">dis phr</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">A discontiguous phrase has discontiguous constituents which (a) are separated from each other by one or more intervening constituents, and (b) are considered either (i) syntactically contiguous and unitary, or (ii) realizing the same, single meaning. An example is French ne...pas.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">discontiguous phrase</AUni> -</Name> -<SecondaryOrder val="0" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="0ccab162-fbb3-4a29-86d0-4a5432e001b3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">logti</AUni> -<AUni ws="qvm-x-acl">logti; logte</AUni> -<AUni ws="qvm-x-akh">loqti</AUni> -<AUni ws="qvm-x-akl">loqti; loqte</AUni> -<AUni ws="qvm-x-ame">luqti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lluqti</AUni> -<AUni ws="qvm-x-acl">*lluqti</AUni> -<AUni ws="qvm-x-akh">*lluqti</AUni> -<AUni ws="qvm-x-akl">*lluqti</AUni> -<AUni ws="qvm-x-ame">*lluqti</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.235" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="07ec9302-acbe-41a2-aa01-7f3191f7cca4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lluqti</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fa821a33-0117-4a06-9629-47d403bce6f7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9d4d3c53-316e-415b-b89f-179e21ba015a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lluqti 
\entryTyp root 
\gENG peel.skin 
\gSPN sacar.piel 
\e *lluqti 
\c V2 
\mp +FinalI 
\ach logti 
\akh loqti 
\acl logti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl logte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl loqti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl loqte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame luqti</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0ccaecf9-3baa-4617-8d57-93acf3a1fde1" ownerguid="d90e71bf-2898-4501-9d09-c518999f83e2"> -<ExampleWords> -<AUni ws="en">Mount Rainier, Mount McKinley</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the names of the mountains in the language area?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0cce6d8e-cc43-4441-aa0f-c18893567d84"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">juti</AUni> -<AUni ws="qvm-x-acl">juti; juti; jute</AUni> -<AUni ws="qvm-x-akh">juti</AUni> -<AUni ws="qvm-x-akl">juti; juti; jute</AUni> -<AUni ws="qvm-x-ame">huti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*huti</AUni> -<AUni ws="qvm-x-acl">*huti</AUni> -<AUni ws="qvm-x-akh">*huti</AUni> -<AUni ws="qvm-x-akl">*huti</AUni> -<AUni ws="qvm-x-ame">*huti</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.771" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b72d64aa-b33b-47d9-84d1-186a72461e32" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*huti</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="04f6a3dd-b5c8-412a-8fc8-7469d9a8aa55" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1a073729-2c51-4944-a319-16666876af45" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *huti 
\entryTyp root 
\gENG name 
\gSPN nombre 
\e *huti 
\c N0 
\mp +FinalI 
\ach juti 
\akh juti 
\acl juti / _# 
\acl juti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl jute +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl juti / _# 
\akl juti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl jute +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame huti 
\mcc *huti / ~_ HUMAN</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="0cd06721-3e41-4f90-9b92-8d912e3a5966" ownerguid="f3da1994-1f68-4e16-bc17-4074208f8143"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="0cd41de9-120f-4d19-a910-f8def04132ac" ownerguid="64a6ff62-6b62-49fc-9f4a-34bcb4949523"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pig</AUni> -<AUni ws="es">cochino</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4fcd4471-7cfc-4711-b9d1-a26a359d8e12" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="0cd68f79-9bea-45ed-a980-2a3606b35c22"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">la:wa</AUni> -<AUni ws="qvm-x-acl">la:wa</AUni> -<AUni ws="qvm-x-akh">la:wa</AUni> -<AUni ws="qvm-x-akl">la:wa</AUni> -<AUni ws="qvm-x-ame">la:wa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lla:wa</AUni> -<AUni ws="qvm-x-acl">*lla:wa</AUni> -<AUni ws="qvm-x-akh">*lla:wa</AUni> -<AUni ws="qvm-x-akl">*lla:wa</AUni> -<AUni ws="qvm-x-ame">*lla:wa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.174" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2db55146-9c38-4795-99f8-494127dde9ee" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lla:wa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7560472d-a803-46e7-aac8-b8f90bec1c7e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c2ef9fc9-2660-4331-bf49-10ab6920bdd0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lla:wa 
\entryTyp root 
\gENG 
\gSPN sopa 
\e *lla:wa 
\c N0 
\ach la:wa 
\akh la:wa 
\acl la:wa 
\akl la:wa 
\ame la:wa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="0cdbf190-fcde-4096-a453-4f07568551fd"> -<CitationForm> -<AUni ws="qvm-x-akh">&Faraón</AUni> -</CitationForm> -<DateCreated val="2022-9-27 22:10:54.694" /> -<DateModified val="2022-10-15 13:38:26.603" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cf05cc4c-2ad9-4593-a05d-5a5b78d01854" t="o" /> -</LexemeForm> -<MorphoSyntaxAnalyses> -<objsur guid="544259c0-a889-419a-8a2e-c0080a6f0496" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a4a7e843-bc65-4bf6-99d6-d15a9abc8950" t="o" /> -</Senses> -</rt> -<rt class="MoStemAllomorph" guid="0cdf1c56-bac3-4694-b9e7-f27e2e6e0f60" ownerguid="63f5d940-5d28-4e00-80a4-a0c68655b1b3"> -<Form> -<AUni ws="qvm-x-ach">vaina</AUni> -<AUni ws="qvm-x-acl">vaina</AUni> -<AUni ws="qvm-x-akh">vaina</AUni> -<AUni ws="qvm-x-akl">vaina</AUni> -<AUni ws="qvm-x-ame">vaina</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0ce136f1-41c0-49c7-b47e-03affc1193de" ownerguid="da39c0d9-a5c1-4f10-bd3b-4e988abcab5a"> -<ExampleWords> -<AUni ws="en">guilt-ridden</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to feeling very ashamed?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0ce19759-6e90-47b7-bf9c-b5892b6808bf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">naranja</AUni> -<AUni ws="qvm-x-acl">naranja</AUni> -<AUni ws="qvm-x-akh">naranja</AUni> -<AUni ws="qvm-x-akl">naranja</AUni> -<AUni ws="qvm-x-ame">naranja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+naranja</AUni> -<AUni ws="qvm-x-acl">+naranja</AUni> -<AUni ws="qvm-x-akh">+naranja</AUni> -<AUni ws="qvm-x-akl">+naranja</AUni> -<AUni ws="qvm-x-ame">+naranja</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.545" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4a45882f-8f3b-443d-9846-ee8adcb9e9ae" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+naranja</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="acabc150-4dd5-4fa4-8c91-efba123955e0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="38171158-f930-4797-8157-0f8a0afc712c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +naranja 
\entryTyp root 
\gENG orange 
\gSPN naranja 
\e +naranja 
\c N0 
\ach naranja 
\akh naranja 
\acl naranja 
\akl naranja 
\ame naranja</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0ce36cb3-20c1-425f-adca-e433e0c7fb16" ownerguid="1017cbc3-0dfb-4930-9881-28f96784035c"> -<ExampleWords> -<AUni ws="en">move quickly, hurry, haste, hasten, rush, forge ahead, charge, barrel along, move like a bat out of hell, make a beeline for, boil, bolt, bustle, move along at a good clip, dart, double-time, fast, fire, flash, flat-out, fling, flit, fly, gallop, move like greased lightning, be really hopping, kick, lickety-split, plunge in, quick, race, rapid, rapidly, rapidity, run, rush, sail, scour, scud, shoot, move like sixty, skim, snappily, speed, stampede, streak, sweep, swift, swiftly, swing, tear, apace, tilt, vroom, whiz, wildfire, zip, zoom, at full speed, at top speed, express, make tracks, burn up the track</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving quickly?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0ce54763-fc57-44a2-911b-1468d4f7ac28" ownerguid="e173ea34-c216-4702-aa24-ca9ab40d48dd"> -<ExampleWords> -<AUni ws="en">reason, explanation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a reason that explains why something happened?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="0ce61f27-9de8-49b2-9189-6f6efe488f6d" ownerguid="043d12ac-c76d-4b4c-813b-4ef7758c8085"> -<Abbreviation> -<AUni ws="en">7.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.549" /> -<DateModified val="2022-9-23 16:55:8.549" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to searching for something that has been hidden or lost.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Search</AUni> -</Name> -<Questions> -<objsur guid="5e899791-68d8-4731-a979-2ea5d64c2eb2" t="o" /> -<objsur guid="72387f49-7950-4ee1-ac1b-8f1db02ba874" t="o" /> -<objsur guid="944c1ac9-138d-44df-b672-9d83440996b4" t="o" /> -<objsur guid="40b037a5-852a-4db9-ae5f-1909b844a381" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="f0e68d2f-f7b3-4722-80a4-8e9c5638b0d4" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="0ce62b8a-0df7-4c7f-99ab-e147af0e0539" ownerguid="3c9fe647-2647-4f43-8bac-7facc054f7ff"> -<ExampleWords> -<AUni ws="en">flutter, shake, quiver, tremble</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something moving back and forth quickly?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0ce8c743-2e16-45a9-abce-04c2a684e489" ownerguid="fcc24831-313b-462b-8333-73ca813d4f36"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="0cebe947-9794-4972-8ecd-c3a300d394d7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cristal</AUni> -<AUni ws="qvm-x-acl">cristal</AUni> -<AUni ws="qvm-x-akh">cristal</AUni> -<AUni ws="qvm-x-akl">cristal</AUni> -<AUni ws="qvm-x-ame">cristal</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cristal</AUni> -<AUni ws="qvm-x-acl">+cristal</AUni> -<AUni ws="qvm-x-akh">+cristal</AUni> -<AUni ws="qvm-x-akl">+cristal</AUni> -<AUni ws="qvm-x-ame">+cristal</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.221" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="42b6d887-7ee2-4170-9907-fc2b1b32c7bd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cristal</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ab019246-9513-4e2d-880e-382fbeda7887" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3b193ba1-ddcc-4c87-bd40-ab7d59b885f5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cristal 
\entryTyp root 
\gENG crystal 
\gSPN cristal 
\e +cristal 
\c N0 
\mp +FinalC 
\ach cristal 
\akh cristal 
\acl cristal 
\akl cristal 
\ame cristal</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="0ced5b87-390a-4e15-85ea-b66c5cd0dce3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">embarga</AUni> -<AUni ws="qvm-x-acl">embarga</AUni> -<AUni ws="qvm-x-akh">embarga</AUni> -<AUni ws="qvm-x-akl">embarga</AUni> -<AUni ws="qvm-x-ame">embarga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+embargar</AUni> -<AUni ws="qvm-x-acl">+embargar</AUni> -<AUni ws="qvm-x-akh">+embargar</AUni> -<AUni ws="qvm-x-akl">+embargar</AUni> -<AUni ws="qvm-x-ame">+embargar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.447" /> -<DateModified val="2022-10-10 21:18:47.218" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="acc995e5-23a4-473f-a29a-817ea2fedf21" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+embargar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7061c169-ef57-4ae3-9ffd-fb5d3e4cc1e9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6ba35e86-b8c4-4089-b3ee-327bd976c737" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +embargar 
\entryTyp root 
\gENG 
\gSPN 
\e +embargar 
\c V2 
\ach embarga 
\akh embarga 
\acl embarga 
\akl embarga 
\ame embarga 
\i PRO 6.31 Tsay jananmanmi imaycantapis embargatsin.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="0cee9f40-3588-41f8-a9d1-ca9cb492e742" ownerguid="6dc5c56b-ee06-4e04-9f46-72bf87deaf10"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PunctuationForm" guid="0cef3bef-c2af-4061-aa11-2fa9d7d22348"> -<Form> -<Str> -<Run ws="en">mikat</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="0cefff90-6419-435c-b0da-e70b58589e6f" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<ExampleWords> -<AUni ws="en">sad, unhappy, miserable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe a time when a person feels sad?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0cf3ad40-3c3b-48b9-b3c1-cc878989c37e" ownerguid="45f7b003-ade3-4efc-8dee-259dcbf80a4a"> -<ExampleWords> -<AUni ws="en">please, if you wouldn't mind, would you mind?</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What special words do people use when they want to make a polite request?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0cf492ae-6cf0-40c0-80d8-763443288627" ownerguid="44236418-c5d0-44d9-b5c1-94fca40d97ce"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="0cf65772-5fbd-4bf1-bbe3-7f6b04048f60" ownerguid="f5082009-b5ae-4a6d-949d-9b40fcb4d3a7"> -<Form> -<AUni ws="qvm-x-ach">pöcu</AUni> -<AUni ws="qvm-x-acl">pöcu; pöcu; pöco</AUni> -<AUni ws="qvm-x-akh">pöcu</AUni> -<AUni ws="qvm-x-akl">pöcu; pöcu; pöco</AUni> -<AUni ws="qvm-x-ame">pöcu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="0cf6e779-254d-4704-8287-f47dbbb6e3f8" ownerguid="6fe0cf64-0ad9-42ab-a418-64f6e1bbe68a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chapter</AUni> -<AUni ws="es">capítulo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="15be8fb8-d556-4408-b268-2358d711e4d7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0cf8282b-0541-4060-8909-7657ff7634ad" ownerguid="cba1f6cc-58ac-4d09-aa6a-1661f5945787"> -<ExampleWords> -<AUni ws="en">understandable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that can be understood?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="0cf8f401-fcbe-4cb7-935e-d18b4ffb2b67" ownerguid="e6da67fe-1112-4161-a37e-7004e5632e5e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ka</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ka</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="22806abf-f462-448a-bb3e-39bbf5d75aea" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="0cf9393a-4c88-4bf6-bbbf-df6036a80335" ownerguid="162238c7-09b4-4c1e-b666-63e562b29298"> -<Form> -<AUni ws="qvm-x-ach">confesa</AUni> -<AUni ws="qvm-x-acl">confesa</AUni> -<AUni ws="qvm-x-akh">confesa</AUni> -<AUni ws="qvm-x-akl">confesa</AUni> -<AUni ws="qvm-x-ame">confesa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="0cf9b460-eca5-4975-af12-2e2951a2569b" ownerguid="1778b9f5-92c8-4f88-909b-a38926b5101a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="0cf9b74f-adbe-41ef-acd3-dc1c5b260f7a" ownerguid="ec15cb49-5df0-465f-b720-9dbc7f427283"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JER 6.10 ¿Pitaraq albirtishaq?</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="0cfbf209-0fed-492c-96f7-9f1437ddf041" ownerguid="872b9ebc-d4c4-4996-8697-733573023c14"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wing</AUni> -<AUni ws="es">ala</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c0ab6e4b-f54e-4425-8c56-a8f1121018ac" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="0cfc6a15-3c6c-4670-95db-e496c624cc61" ownerguid="2e02f747-b24a-43f1-90d2-96053fc8615d"> -<Form> -<AUni ws="qvm-x-ach">changui</AUni> -<AUni ws="qvm-x-acl">changui; changue</AUni> -<AUni ws="qvm-x-akh">chanqi</AUni> -<AUni ws="qvm-x-akl">chanqi; chanqe</AUni> -<AUni ws="qvm-x-ame">chanqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0cfcffa7-f177-4357-be47-5d395f7a608a" ownerguid="5446b5cf-f05a-4bb2-89eb-ce63e27040f3"> -<ExampleWords> -<AUni ws="en">music, musical</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to music?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0cfe9f7c-cb2a-4016-82fc-f841f60d1b7e" ownerguid="cb7140d4-d89f-4337-b5bb-b823ad4eb1f8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">boil</AUni> -<AUni ws="es">herida.infectad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f27390c1-019f-4917-bbc6-f5150aafcdb3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0d01b439-9b5e-44fc-a9e9-ec102ec48c3f" ownerguid="6c6259f0-eca6-4a30-8662-eedbaf293527"> -<ExampleWords> -<AUni ws="en">open, open-minded</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a person who is willing to change his mind?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="0d01c3f1-382a-4d7d-bd48-a043ac36a62d" ownerguid="2671e4a5-5017-49a8-a018-7a8b14beb3e0"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 28.9 Niycälarmi puntacunatapis shaguylana ushan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="0d03f176-f1fa-4065-a19b-07db66f9c6ca" ownerguid="a76b6e1f-4453-41f6-9237-7a5e2ff7612f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0d064224-152a-4079-937f-9082fe00032b" ownerguid="b844d2f8-d3ef-4605-b038-8bc0a2cff0af"> -<ExampleWords> -<AUni ws="en">raise, heighten</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to making something tall?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0d0ed352-57b3-4add-8c8a-b01036370e76" ownerguid="b08424b7-a2f1-4a0e-82d1-665249e12cfc"> -<ExampleWords> -<AUni ws="en">arrive, arrival, reach, get to, come to, attain, land, landing, advent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to arriving at a place?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0d160219-7d51-4a60-9941-61748a9711b2" ownerguid="0bfe8214-7b49-44d2-8ff6-72ae448a67bb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="0d19a616-0ee2-47aa-af09-66b1858ba98f" ownerguid="1207a60d-d3f3-4dd3-b8dd-2a74e9d82c3a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="0d1d15dc-d2d2-44dd-938a-816344e4a078"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uli</AUni> -<AUni ws="qvm-x-acl">uli; ule</AUni> -<AUni ws="qvm-x-akh">uli</AUni> -<AUni ws="qvm-x-akl">uli; ule</AUni> -<AUni ws="qvm-x-ame">uli</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ulli</AUni> -<AUni ws="qvm-x-acl">*ulli</AUni> -<AUni ws="qvm-x-akh">*ulli</AUni> -<AUni ws="qvm-x-akl">*ulli</AUni> -<AUni ws="qvm-x-ame">*ulli</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.210" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c027cfb1-00ee-4472-90ca-db53e5ab8fc4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ulli</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="93bc71dc-3954-4667-bece-23e2d61b0793" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d2ed201c-ab17-400b-8025-bf55fe898661" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ulli 
\entryTyp root 
\gENG sting 
\gSPN picar 
\e *ulli 
\c V2 
\mp +FinalI 
\ach uli 
\akh uli 
\acl uli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ule +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl uli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ule +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame uli</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="0d1df8ac-e40b-41c0-b937-9bfc59ce6aa0" ownerguid="bd8a4e42-c7bb-4281-8118-ff644562b54e"> -<Form> -<AUni ws="qvm-x-ach">vinagra</AUni> -<AUni ws="qvm-x-acl">vinagra</AUni> -<AUni ws="qvm-x-akh">vinagra</AUni> -<AUni ws="qvm-x-akl">vinagra</AUni> -<AUni ws="qvm-x-ame">vinagra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="0d211fd3-a44f-4b88-8572-9fa86ecad500"> -<Analyses> -<objsur guid="fbd0e618-7c83-4afb-8800-0effa3a16a9b" t="o" /> -</Analyses> -<Checksum val="1550168423" /> -<Form> -<AUni ws="qvm-x-akh">rikaman</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="0d2167a3-9787-43a6-bdec-ac3010926e0a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">saucu; sauco</AUni> -<AUni ws="qvm-x-acl">saucu; saucu; sauco</AUni> -<AUni ws="qvm-x-akh">saucu; sauco</AUni> -<AUni ws="qvm-x-akl">saucu; saucu; sauco</AUni> -<AUni ws="qvm-x-ame">saucu; sauco</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sauco</AUni> -<AUni ws="qvm-x-acl">+sauco</AUni> -<AUni ws="qvm-x-akh">+sauco</AUni> -<AUni ws="qvm-x-akl">+sauco</AUni> -<AUni ws="qvm-x-ame">+sauco</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.470" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5309aff9-f8e3-41e2-bbdd-afdfb16755ae" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sauco</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="00e2f85e-0318-4a04-920b-9905a0d6cbf8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="371af07a-4172-4963-8d51-3172340543ce" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sauco 
\entryTyp root 
\gENG tree 
\gSPN saúco 
\e +sauco 
\c N0 
\ach saucu / ~_# 
\ach sauco / _# 
\akh saucu / ~_# 
\akh sauco / _# 
\acl saucu / ~_# 
\acl saucu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sauco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl saucu / ~_# 
\akl saucu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sauco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame saucu / ~_# 
\ame sauco / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0d2177fa-edbc-4054-984d-6f59a8dd8332" ownerguid="71430132-f2ea-40fe-b3f5-b6775741cc56"> -<ExampleWords> -<AUni ws="en">design, cut out, assemble, stitch, tie, hem</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the steps in the process?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0d23b318-0b9e-4a99-ad03-e88eed88a0a9" ownerguid="570108aa-64f7-46b9-9f02-a200f6ce9d76"> -<Form> -<AUni ws="qvm-x-ach">gasgu</AUni> -<AUni ws="qvm-x-acl">gasgu; gasgu; gasgo</AUni> -<AUni ws="qvm-x-akh">qasqu</AUni> -<AUni ws="qvm-x-akl">qasqu; qasqu; qasqo</AUni> -<AUni ws="qvm-x-ame">qasqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="0d24c20f-9f94-4150-965a-830c2d51d380" ownerguid="6198b228-3ad2-4749-912a-ac147241398f"> -<Form> -<AUni ws="qvm-x-ach">herräji; herräji</AUni> -<AUni ws="qvm-x-acl">herräji; herräji; herräje</AUni> -<AUni ws="qvm-x-akh">herräji; herräji</AUni> -<AUni ws="qvm-x-akl">herräji; herräji; herräje</AUni> -<AUni ws="qvm-x-ame">herräji; herräji</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="0d25aeee-fbef-4c1f-8693-b1c17ce65943" ownerguid="7ed18a74-27a3-4c44-9d83-94425ceb774c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">agreement</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="639b8d99-28c7-44de-8975-13650d40c2cd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0d260a4e-c26f-46e3-8895-48b09ec51709" ownerguid="dc1a2c6f-1b32-4631-8823-36dacc8cb7bb"> -<ExampleWords> -<AUni ws="en">sunset, dusk, sundown, twilight, eventide</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the time when the sun sets?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0d2c183b-7bc6-45d5-bf52-9a94a0124cc8" ownerguid="ca9c215a-e568-4d09-b3a9-b5727cd831d6"> -<ExampleWords> -<AUni ws="en">expose (a body), funeral platform, left to rot</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to leaving a body outside?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0d2df260-62f7-4b33-a2cd-86fb3fe884a4" ownerguid="79b580ff-64a7-445b-abcb-b49b9093779c"> -<ExampleWords> -<AUni ws="en">animal husbandry, tame, spray (for insects), brand</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to animal husbandry?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0d2e73ab-32e5-4b66-b153-f1aab054970d" ownerguid="984c3043-fc01-4573-a283-dde53ad78009"> -<Form> -<AUni ws="qvm-x-ach">becërru</AUni> -<AUni ws="qvm-x-acl">becërru; becërru; becërro</AUni> -<AUni ws="qvm-x-akh">becërru</AUni> -<AUni ws="qvm-x-akl">becërru; becërru; becërro</AUni> -<AUni ws="qvm-x-ame">becërru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="0d31ea20-4230-4195-ba9a-98f07ef1e4c7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wanu</AUni> -<AUni ws="qvm-x-acl">wanu; wanu; wano</AUni> -<AUni ws="qvm-x-akh">wanu</AUni> -<AUni ws="qvm-x-akl">wanu; wanu; wano</AUni> -<AUni ws="qvm-x-ame">wanu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wañu.n</AUni> -<AUni ws="qvm-x-acl">*wañu.n</AUni> -<AUni ws="qvm-x-akh">*wañu.n</AUni> -<AUni ws="qvm-x-akl">*wañu.n</AUni> -<AUni ws="qvm-x-ame">*wañu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.485" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="09b55264-ed18-4159-a886-daf61ac69c60" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wañu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0b267061-94ac-4a60-9637-3b9a66fc4e04" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a8e4421f-7fb7-47c3-a610-8ac1928ffcc9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wañu.n 
\entryTyp root 
\gENG rope 
\gSPN soga 
\e *wañu.n 
\c N0 
\ach wanu 
\akh wanu 
\acl wanu / _# 
\acl wanu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wano +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wanu / _# 
\akl wanu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl wano +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wanu 
\i Jdg 16.7 Tsaynog tapuptinmi Sansón caynog nergan: <<Flëchapag rurashga ganchis manarag tsaqueg wanuwan liyamaptin calpä manami canganatsu. Tsaynogpami waquin runanoglana ricacushag.>> 
\mcc *wañu.n / ~_ [participle] 
\mcc *wañu.n / ~_ 1P.V 
\mcc *wañu.n / ~_ 1P GOAL 
\mcc *wañu.n / ~_ ADV2 SIM1.4 
\mcc *wañu.n / ~_ 3P.V TOP</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0d346aa7-f42b-405e-903d-d2a132f6f88d" ownerguid="afe7cc92-e0ad-40d9-be56-aa12d2693a3f"> -<ExampleWords> -<AUni ws="en">all day long, the whole day long, the whole day through</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that something happens during the whole day?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0d363b2f-a9b2-456d-a06e-0ca813b1381f" ownerguid="c3296c14-6731-418f-a89a-4c3b487d5fb9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="0d38c343-9c51-47fe-a367-ffadfc92c507" ownerguid="615674ac-8158-4089-ae70-b55472fd279b"> -<Abbreviation> -<AUni ws="en">8.4.6.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something young--a word describing a living thing that has only existed for a short time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Young</AUni> -</Name> -<Questions> -<objsur guid="61def36b-be4d-4412-b46a-8b1e79cdaa2d" t="o" /> -<objsur guid="7d4b8297-eedf-4fd8-b2e7-5b228fade126" t="o" /> -<objsur guid="567f7c74-d3ba-498e-8a78-17306f6cf5b4" t="o" /> -<objsur guid="e1a381ab-210b-4d7c-ada4-80c80984ecc1" t="o" /> -<objsur guid="a7418167-b85b-45f1-a4f6-d6c7d049f181" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="f74f28d1-8742-4c9f-95dc-d08336e91249" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="0d3c76e7-6a1e-46d8-a005-22510dd42a19" ownerguid="65d840b4-2631-4232-8b18-8f48ed193507"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="07d27af6-8388-4cd1-bf75-56c2779f30a6" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="2baaa609-e450-4137-83c0-5fe389f56e7a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="0d3f195f-8ef6-4ef7-bb0d-71105e62af23" ownerguid="a228d3b1-a6b5-4dd7-9c77-ff4a2df3cf52"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ya</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ya</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ya</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ya</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ya</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6fbee6c7-3e01-4108-b3fd-e300077d0160" t="r" /> -</Morph> -<Msa> -<objsur guid="a65486e9-3066-4a42-8c90-7aadcf10ae12" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="0d3f803c-d636-4104-8ec1-8b143395e8ca" ownerguid="86e5c062-d90f-476c-a363-264adfafedfa"> -<ExampleWords> -<AUni ws="en">flex (muscles), ripple, contract, tighten, tense, relax, bunch up, cramp, twitch, stretch, tear, pull, bulge, spasm, convulsion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to moving your muscles?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0d423b14-75fd-4dba-8c23-6efa6f28a3e0" ownerguid="df2ee830-0668-43d7-8a32-e2fd3e7b31d8"> -<Question> -<AUni ws="en">(9) ancient past: used for narrating events in ancient or mythical time.</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="0d427d55-d63e-4a35-a66a-5e4dce0a963e" ownerguid="fe9253f4-d063-4d63-91af-85273d61337f"> -<Abbreviation> -<AUni ws="en">8.3.5.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.619" /> -<DateModified val="2022-9-23 16:55:8.619" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing two things that are different--not the same.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>58F Different Kind or Class</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Different</AUni> -</Name> -<Questions> -<objsur guid="17f69c8c-4a75-470d-8ec6-aa5c792c11cb" t="o" /> -<objsur guid="44e93c57-cb7c-476b-b0e7-e5d5078f8776" t="o" /> -<objsur guid="a5ee8ed1-5af8-4cf0-a60d-d1d4706b43a3" t="o" /> -<objsur guid="9310ce74-222d-4be1-ac93-e876f0735f19" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="0d46970f-f22a-4a8d-976f-c84d6ed0bde5" ownerguid="71c0ef32-d1cc-4af5-9276-2c60abde2138"> -<Form> -<AUni ws="qvm-x-ach">arra</AUni> -<AUni ws="qvm-x-acl">arra</AUni> -<AUni ws="qvm-x-akh">arra</AUni> -<AUni ws="qvm-x-akl">arra</AUni> -<AUni ws="qvm-x-ame">arra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="0d4d4f1b-a385-4ea0-9496-9ff1b7a2b52a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">co:rri; co:rri</AUni> -<AUni ws="qvm-x-acl">co:rri; co:rre; co:rri</AUni> -<AUni ws="qvm-x-akh">co:rri; co:rri</AUni> -<AUni ws="qvm-x-akl">co:rri; co:rre; co:rri</AUni> -<AUni ws="qvm-x-ame">co:rri; co:rri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+correr.r</AUni> -<AUni ws="qvm-x-acl">+correr.r</AUni> -<AUni ws="qvm-x-akh">+correr.r</AUni> -<AUni ws="qvm-x-akl">+correr.r</AUni> -<AUni ws="qvm-x-ame">+correr.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.211" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9ba6c978-8ccf-4333-9813-84cda57e1d93" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+correr.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="567ed321-3668-4132-aaae-04c42f174895" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2fc5ebfb-79c9-4c5f-a273-298ebb941cc8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +correr.r 
\entryTyp root 
\gENG running 
\gSPN corriendo 
\e +correr.r 
\c R0 
\mp +FinalI 
\ach co:rri / _# 
\ach co:rri / ~_# 
\akh co:rri / _# 
\akh co:rri / ~_# 
\acl co:rri / _# 
\acl co:rre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl co:rri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl co:rri / _# 
\akl co:rre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl co:rri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame co:rri / _# 
\ame co:rri / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0d504322-f644-45f6-ba14-d501658d45a7" ownerguid="62ed8254-e53a-4781-935e-79869619e40a"> -<ExampleWords> -<AUni ws="en">unholy, common</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that has not been dedicated?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0d539023-d48e-47f8-8d65-9a8c5ef9c6c3" ownerguid="efef45bd-26be-46f8-b85b-424be55bcdac"> -<ExampleWords> -<AUni ws="en">as good as new, renewed, freshened, modernized, reconditioned, refreshed, refurbished, rejuvenated, renovated, restored</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words describe something that is old, but has been made to look new?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0d54886a-965b-42e5-b70a-f3ff34734f8b" ownerguid="2191d0e8-c885-415a-843c-9b3c36383f91"> -<Form> -<AUni ws="qvm-x-ach">birbiqui</AUni> -<AUni ws="qvm-x-acl">birbiqui; birbiqui; birbique</AUni> -<AUni ws="qvm-x-akh">birbiqui</AUni> -<AUni ws="qvm-x-akl">birbiqui; birbiqui; birbique</AUni> -<AUni ws="qvm-x-ame">birbiqui</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StText" guid="0d576300-114e-448c-87da-922d052429c2" ownerguid="9303883a-ad5c-4ccf-97a5-4add391f8dcb"> -<DateModified val="2022-9-23 18:26:25.183" /> -<Paragraphs> -<objsur guid="659bb160-3934-4156-b6cb-ac7aa256e591" t="o" /> -</Paragraphs> -<RightToLeft val="False" /> -</rt> -<rt class="MoStemMsa" guid="0d57b7bb-9cbe-4e69-83aa-d29aaf800468" ownerguid="3212d12a-a8dc-469e-811b-f685550609cc"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="0d58a286-aeb9-4bf6-a894-6cd5b578d7d8" ownerguid="472d2147-3f4e-4b64-b458-cf612bce74ab"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="0d5ae0a0-bd6d-49dc-8724-7e4434f38c67" ownerguid="3b78aaca-f43b-47a2-9683-cd2b204e0987"> -<Form> -<AUni ws="qvm-x-ach">cocodrilu; cocodrilo</AUni> -<AUni ws="qvm-x-acl">cocodrilu; cocodrilu; cocodrilo</AUni> -<AUni ws="qvm-x-akh">cocodrilu; cocodrilo</AUni> -<AUni ws="qvm-x-akl">cocodrilu; cocodrilu; cocodrilo</AUni> -<AUni ws="qvm-x-ame">cocodrilu; cocodrilo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="0d5d343d-11c7-450f-a777-5cf818812ac4" ownerguid="665713cd-47da-4b35-b524-c6c14c17f467"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">thin</AUni> -<AUni ws="es">delgado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9617cbb7-c9db-4a42-a04b-1c1601282acd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="0d608afe-f31e-4e88-a67b-bd87135caa6a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">silmin</AUni> -<AUni ws="qvm-x-acl">silmin; silmin; silmen</AUni> -<AUni ws="qvm-x-akh">silmin</AUni> -<AUni ws="qvm-x-akl">silmin; silmin; silmen</AUni> -<AUni ws="qvm-x-ame">silmin</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*silmin</AUni> -<AUni ws="qvm-x-acl">*silmin</AUni> -<AUni ws="qvm-x-akh">*silmin</AUni> -<AUni ws="qvm-x-akl">*silmin</AUni> -<AUni ws="qvm-x-ame">*silmin</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.673" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8a898b92-4e71-4588-9c57-523c44bd21c5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*silmin</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="149f3f7a-faef-4067-8f94-d9ad98a1ceb1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="420ff208-a84c-49f1-9aaf-144ce943f977" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *silmin 
\entryTyp root 
\gENG measure 
\gSPN media.arroba 
\e *silmin 
\c N0 
\mp +FinalC 
\ach silmin 
\akh silmin 
\acl silmin / _# 
\acl silmin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl silmen +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl silmin / _# 
\akl silmin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl silmen +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame silmin</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="0d63adce-41dd-4873-b0bf-331d0205e65d" ownerguid="a72ca6f7-e389-408a-8276-fec4d60a3a56"> -<Abbreviation> -<AUni ws="en">9.1.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.680" /> -<DateModified val="2022-9-23 16:55:8.680" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that something exists.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>13C Exist</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Exist</AUni> -</Name> -<Questions> -<objsur guid="d239ef2a-53f6-40ee-8319-af1e6963ac2d" t="o" /> -<objsur guid="af61ee04-c5fc-4961-8b0a-3985da7665d1" t="o" /> -<objsur guid="cf8ca969-08b6-4ee3-9390-3fdd98faea7a" t="o" /> -<objsur guid="bb0746e1-6019-4ec2-909c-186a63371c05" t="o" /> -<objsur guid="03887098-614d-452e-a67e-e3b6f6d98f1c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="0d685282-afd2-474c-887a-dbb3afb4f4c0" ownerguid="a24e45df-fa39-498b-8e65-482c9071135a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="d8c59993-98f8-4ad6-8271-c68324b5a7ce" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="0d6956a7-e375-4db4-8d0f-111fa314ea8d" ownerguid="550c3860-c53c-46ef-b7c1-30e203da49af"> -<Form> -<AUni ws="qvm-x-ach">jarinëru</AUni> -<AUni ws="qvm-x-acl">jarinëru; jarinëru; jarinëro</AUni> -<AUni ws="qvm-x-akh">jarinëru</AUni> -<AUni ws="qvm-x-akl">jarinëru; jarinëru; jarinëro</AUni> -<AUni ws="qvm-x-ame">jarinëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0d6c78c3-0926-48b4-b529-77d16b49e3e8" ownerguid="c2b720f5-1123-446e-9f60-088a3272b889"> -<ExampleWords> -<AUni ws="en">take time, spend time, use time, make time, find time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to how people relate to time?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="0d6cd5d1-c045-48f2-a755-d9de2691d3b1" ownerguid="f2f973f2-acde-4ac7-a693-49c0ab861c5d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="82e9c3df-e95c-44d6-998d-f3779aad6808" t="r" /> -</Morph> -<Msa> -<objsur guid="1b3c6562-1662-468e-b5c0-fcf36256167d" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="0d6e5607-3bb1-43b6-a494-eafc2d2d6299"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">copo:su</AUni> -<AUni ws="qvm-x-acl">copo:su; copo:su; copo:so</AUni> -<AUni ws="qvm-x-akh">copo:su</AUni> -<AUni ws="qvm-x-akl">copo:su; copo:su; copo:so</AUni> -<AUni ws="qvm-x-ame">copo:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+coposo</AUni> -<AUni ws="qvm-x-acl">+coposo</AUni> -<AUni ws="qvm-x-akh">+coposo</AUni> -<AUni ws="qvm-x-akl">+coposo</AUni> -<AUni ws="qvm-x-ame">+coposo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.182" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0071c96d-54a2-4bae-882f-e44a556091a0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+coposo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="036646c9-e583-4854-88ee-d6cb53718c83" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b0fa7c03-6f14-45e7-8bb5-912c2d5a8653" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +coposo 
\entryTyp root 
\gENG tufted 
\gSPN copado 
\e +coposo 
\c N0 
\ach copo:su 
\akh copo:su 
\acl copo:su / _# 
\acl copo:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl copo:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl copo:su / _# 
\akl copo:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl copo:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame copo:su</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0d6f506a-21dc-4d79-b654-697dcc82038d" ownerguid="9a456463-3c71-4f9a-8117-dc2fcb087bd3"> -<ExampleWords> -<AUni ws="en">poker, tongs, wick trimmer, snuffer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What tools are used to tend a fire?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="0d7409ab-fc1f-4680-b040-d91d7004084f" ownerguid="780fbf89-f2ba-404c-b288-f6ca637bbc90"> -<Abbreviation> -<AUni ws="en">8.4.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.660" /> -<DateModified val="2022-9-23 16:55:8.660" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to interrupting someone--speaking when someone is speaking, or doing something to stop someone from doing what they are doing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Interrupt</AUni> -</Name> -<Questions> -<objsur guid="56ca73cf-d0be-475e-a36c-2a11231cc646" t="o" /> -<objsur guid="6d8c039e-288b-4806-bf95-f7fb5566cd3c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="0d756d59-d4b2-4e8f-820a-3695397e6b20" ownerguid="0e590da7-c027-42e0-b580-f65686cee461"> -<ExampleWords> -<AUni ws="en">be surprised, wonder, be in awe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling surprised?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="0d777b9e-8995-4454-b224-aa55c18f4dee" ownerguid="27ff87a9-39a1-42ac-915a-5dca6db6dfe1"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">MAL 4.6 Elías wilacuptinmi maman wawancunawan y papänin tsurincunawan amistananpag.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="0d777f56-4201-4695-ad1d-51c84d75d05f" ownerguid="2477844f-c33e-4607-857f-f5b8bc56037e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="0d79b234-83fd-4a5a-95ac-db116636ac3b" ownerguid="6f011005-9763-4284-9571-90529febecf7"> -<Gloss> -<AUni ws="en">1P</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fcfca2e4-74da-4271-bebd-d9afd864c113" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0d7a2284-f100-48e5-b5c4-2e7ec598ea12" ownerguid="f5e2ad18-5ad4-4186-9572-b1542096759e"> -<ExampleWords> -<AUni ws="en">airman</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What are the military ranks in the air force?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0d7b45c3-e9ac-42a0-8985-ec96d58aed1e" ownerguid="c2630384-2f72-4a96-baed-3fff03383362"> -<ExampleWords> -<AUni ws="en">harvest maize, harvest rice, harvest yams, harvest beans, pick fruit, pluck an apple, dig potatoes, pull carrots, cut vegetables</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What special words are used for harvesting each crop?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="0d7fa6c2-0a6a-4bc5-a992-e43e747566cc" ownerguid="ee54069f-0234-4db0-a227-e7fa5470c4f5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuna</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuna</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuna</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuna</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuna</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f236a19a-86ce-4599-91f5-fb178488e065" t="r" /> -</Morph> -<Msa> -<objsur guid="0851fe14-f99e-4e06-befc-3a76b044ea37" t="r" /> -</Msa> -<Sense> -<objsur guid="095b05e6-a91e-476d-a042-0b5674bba0ec" t="r" /> -</Sense> -</rt> -<rt class="WfiWordform" guid="0d813ef0-928a-4c93-b087-78e3530e9be5"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">rikamashqaykipita</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="0d83a12a-561e-4e02-a94b-618b09a062d9" ownerguid="e15962c5-aac1-48c6-bcca-ba9c245cb146"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="0d841adc-1ffd-4cba-9751-88d787e8086a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wira</AUni> -<AUni ws="qvm-x-acl">wira</AUni> -<AUni ws="qvm-x-akh">wira</AUni> -<AUni ws="qvm-x-akl">wira</AUni> -<AUni ws="qvm-x-ame">wira</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wira.2</AUni> -<AUni ws="qvm-x-acl">*wira.2</AUni> -<AUni ws="qvm-x-akh">*wira.2</AUni> -<AUni ws="qvm-x-akl">*wira.2</AUni> -<AUni ws="qvm-x-ame">*wira.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.678" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="46aec698-4916-4e68-8fcb-cf9a88e2009d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wira.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7a37d70c-b227-4e5e-b425-94340b991719" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5b74d5cd-6704-47bb-b352-3e813c31d6e2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wira.2 
\entryTyp root 
\gENG fat 
\gSPN grasa 
\e *wira.2 
\c N0 
\ach wira 
\akh wira 
\acl wira 
\akl wira 
\ame wira</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="0d87a581-271a-43c1-9963-07871396c1e7" ownerguid="6473301d-843d-487c-9389-36a3a449b62a"> -<Form> -<AUni ws="qvm-x-ach">tsari</AUni> -<AUni ws="qvm-x-acl">tsari; tsare</AUni> -<AUni ws="qvm-x-akh">tsari</AUni> -<AUni ws="qvm-x-akl">tsari; tsare</AUni> -<AUni ws="qvm-x-ame">tsari</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0d88b9b1-ccb1-4bcf-ab88-4bf65427f15c" ownerguid="a19e219a-6cc1-4057-a8d9-18554ae88de1"> -<ExampleWords> -<AUni ws="en">baby carriage, pram, stroller, backpack, car seat, carrycot</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What things are used to carry a baby?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0d8bbf9c-5a1c-43c7-a254-ac1e5b7abe60" ownerguid="1f608e18-958e-4bb3-a977-04879fb5acd5"> -<ExampleWords> -<AUni ws="en">frog legs</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What types of reptiles are eaten?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0d8c558b-9f99-48d1-bab5-0076887bdf66" ownerguid="8116dec0-458c-4cf1-ac9a-958dd9e6f22c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="0d8cc799-8345-4367-a57d-a86af34f4952" ownerguid="5f420ecd-d3b2-4f25-91d2-f314662820c9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">emperor</AUni> -<AUni ws="es">emperador</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dd251b8b-03d0-4b66-a5db-fedbb763a792" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0d8f478b-d9ef-4ae2-b02c-7cea59826803" ownerguid="47feee3e-80e1-469a-911c-0c550b37a2f8"> -<ExampleWords> -<AUni ws="en">must, need to, have to, have got to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is necessary?</AUni> -</Question> -</rt> -<rt class="MoInflAffMsa" guid="0d90ca1d-7b60-41a3-a022-dba460606a1c" ownerguid="3c257201-65a4-4e60-85dd-9fe11b052aaa"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="257de7fb-dab6-4b87-848b-3fbb8f5c3e04" t="r" /> -</Slots> -</rt> -<rt class="LexSense" guid="0d9131b5-31e9-40f3-8d8d-cdd1095fefcb" ownerguid="47a1aafd-8ce7-471e-98df-d8c67f04a5e1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">due</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="af0c6c87-51be-489d-829c-493cb35b899d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="0d914eb7-cb13-42b1-9ee9-2de995ef3707"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ata:qui; ata:qui</AUni> -<AUni ws="qvm-x-acl">ata:qui; ata:qui; ata:que</AUni> -<AUni ws="qvm-x-akh">ata:qui; ata:qui</AUni> -<AUni ws="qvm-x-akl">ata:qui; ata:qui; ata:que</AUni> -<AUni ws="qvm-x-ame">ata:qui; ata:qui</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ataque</AUni> -<AUni ws="qvm-x-acl">+ataque</AUni> -<AUni ws="qvm-x-akh">+ataque</AUni> -<AUni ws="qvm-x-akl">+ataque</AUni> -<AUni ws="qvm-x-ame">+ataque</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.860" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="51580bea-6dee-4384-8cb9-c5489e3fa0df" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ataque</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="06e8a865-3058-4de2-9f35-0a891b42101f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e6b207f8-da86-4cc3-97ba-e8154aa0e819" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ataque 
\entryTyp root 
\gENG 
\gSPN 
\e +ataque 
\c N0 
\mp +FinalI 
\ach ata:qui / _# 
\ach ata:qui / ~_# 
\akh ata:qui / _# 
\akh ata:qui / ~_# 
\acl ata:qui / _# 
\acl ata:qui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ata:que +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ata:qui / _# 
\akl ata:qui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ata:que +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ata:qui / _# 
\ame ata:qui / ~_# 
\i 1SA 25.37 Wara tuta shincashganpita cachacashga captinnami warmin Abigail wilapargan ima pasashgantapis. Tsaynog wilapaptinmi atäquiwan pitirporgan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="0d922fd6-4c5b-4dea-b458-8ec2f9641d69" ownerguid="5c94eafa-7b5b-4403-a6eb-4b5708878384"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="0d925ce6-1d45-4886-bb2b-370dbc75d782" ownerguid="71db9179-0dd5-445f-b153-c1857c6cf612"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -<Sense> -<objsur guid="ed102c60-ed6d-498f-b2c4-a195d53a84e2" t="r" /> -</Sense> -</rt> -<rt class="CmSemanticDomain" guid="0d935e77-e437-426f-acff-dccfb516ec8c" ownerguid="d6c29733-beeb-4fc9-975f-5e78a8acc273"> -<Abbreviation> -<AUni ws="en">6.1.2.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.350" /> -<DateModified val="2022-9-23 16:55:8.350" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being busy.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Busy</AUni> -</Name> -<Questions> -<objsur guid="3d4451ab-0b52-4228-94b7-c328ff92094f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="0d96eb64-c32f-4158-bcc4-d16979481cb7" ownerguid="783a316a-c748-4435-9e6a-77d316274fa4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">attack</AUni> -<AUni ws="es">atacar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="eceabbcd-16ce-4e73-9977-ec1ad2661946" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="0d972590-5947-4983-a092-443697baec24" ownerguid="5bb29704-fe0f-4594-9622-ce0aa42b93c8"> -<Abbreviation> -<AUni ws="en">6.2.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.446" /> -<DateModified val="2022-9-23 16:55:8.446" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to agricultural tools.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>6B Instruments Used in Agriculture and Husbandry</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Agricultural tool</AUni> -</Name> -<Questions> -<objsur guid="3fb0ed61-9184-44b0-adee-73aed4964aea" t="o" /> -<objsur guid="12a0ac5f-a5f0-459c-ab7c-b9346434f4cc" t="o" /> -<objsur guid="1ff549d6-2597-40f0-9f74-711147529b99" t="o" /> -<objsur guid="15535c63-e0c9-4d46-a01d-b506ad776a47" t="o" /> -<objsur guid="5b0e8f7d-8c17-48e2-a851-32fedbd5fac3" t="o" /> -<objsur guid="6762f83b-d81f-4144-9ddb-cd4903042e9f" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="6342c8bf-55b5-400f-af7e-63055fe6813b" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="0d97bf70-8f5c-4b8f-a7ea-7a828769f0db" ownerguid="df687f25-5ed2-43c1-a2c9-78c1db3b4381"> -<Form> -<AUni ws="qvm-x-ach">lista</AUni> -<AUni ws="qvm-x-acl">lista</AUni> -<AUni ws="qvm-x-akh">lista</AUni> -<AUni ws="qvm-x-akl">lista</AUni> -<AUni ws="qvm-x-ame">lista</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="0d9cac6e-369c-41fb-b935-8cad485e925b" ownerguid="a780cc0e-d2b0-496c-92d3-1be5674170e7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c3c716ef-271b-4d8a-a64b-54aa4791ba60" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">spread.out</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7b739e30-207c-4136-be4d-5784f20ebfff" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0d9d58e1-3fdc-45d8-82b9-c9f627dde438" ownerguid="dd12ac0f-55cc-4c79-a50c-d23cc7ea60b3"> -<ExampleWords> -<AUni ws="en">soap, shampoo, lather, washcloth, towel, shower cap, bathrobe, shower curtain, bathmat, bathroom sink</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What does a person use to take a bath?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0d9e150c-9ddf-4baf-b374-b04efc36ff16" ownerguid="caab9405-4904-4a8a-b426-5fbf33393c84"> -<Form> -<AUni ws="qvm-x-ach">häbas</AUni> -<AUni ws="qvm-x-acl">häbas</AUni> -<AUni ws="qvm-x-akh">häbas</AUni> -<AUni ws="qvm-x-akl">häbas</AUni> -<AUni ws="qvm-x-ame">häbas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="0d9e8f34-9a28-479d-bcbb-560a7cb1ba91" ownerguid="f4e655bc-6048-4f78-95b2-50cb1f6bd6b8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">soap</AUni> -<AUni ws="es">jabón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7c92d74b-568f-4301-a4c0-3714a1865c52" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="0d9ffa56-e984-41e3-95cf-34d29af2d8db"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">hierba</AUni> -<AUni ws="qvm-x-acl">hierba</AUni> -<AUni ws="qvm-x-akh">hierba</AUni> -<AUni ws="qvm-x-akl">hierba</AUni> -<AUni ws="qvm-x-ame">hierba</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hierba</AUni> -<AUni ws="qvm-x-acl">+hierba</AUni> -<AUni ws="qvm-x-akh">+hierba</AUni> -<AUni ws="qvm-x-akl">+hierba</AUni> -<AUni ws="qvm-x-ame">+hierba</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.710" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e599cd84-214c-4f5b-92a9-218ef85e4080" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hierba</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="77a2a524-38ae-4a84-98f1-a338059508c0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d2ee6f03-4e98-4abb-869d-e5580b70541e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hierba 
\entryTyp root 
\gENG 
\gSPN 
\e +hierba 
\c N0 
\ach hierba 
\akh hierba 
\acl hierba 
\akl hierba 
\ame hierba</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="0da1f89c-4f5a-408e-96a3-ebb9f5c275e0" ownerguid="20191d4a-6662-463b-ab09-59194aa0dc11"> -<Form> -<AUni ws="qvm-x-ach">biscöchu</AUni> -<AUni ws="qvm-x-acl">biscöchu; biscöchu; biscöcho</AUni> -<AUni ws="qvm-x-akh">biscöchu</AUni> -<AUni ws="qvm-x-akl">biscöchu; biscöchu; biscöcho</AUni> -<AUni ws="qvm-x-ame">biscöchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="0da2d7a7-60bf-452f-8181-043bd3836d25" ownerguid="66cbd546-2f10-413e-8d0c-4952c1cfaa1e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0da626b8-40ba-4aac-af95-4fceca3a5559" ownerguid="64e41545-3a0a-4524-a8d4-8e5e0f0e2391"> -<ExampleWords> -<AUni ws="en">light, lamp, candle, arc light, beacon, chandelier, electric light, fire, fixture, flare, flashlight, flash (camera), floodlight, fluorescent light, globe, headlight, incandescent light, lamp-post, lantern, lighthouse, lighting, light source, luminary, night-light, paraffin lamp, searchlight, spotlight, street light, strobe, sunlamp, taillight, taper, torch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to something that makes light?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0da9375e-bdc3-44da-8c15-5d38ec1e4ff3" ownerguid="7f81453a-b307-40b1-a888-e3c335057fab"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="0daa87e1-0842-4be2-9b40-aa852f6fb5d4" ownerguid="9d6126d3-6083-4451-8b5c-a28b09dfcad2"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="0daa9e0b-5da2-4c04-808b-3fe1f215d9c5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">algay</AUni> -<AUni ws="qvm-x-acl">algay</AUni> -<AUni ws="qvm-x-akh">alqay</AUni> -<AUni ws="qvm-x-akl">alqay</AUni> -<AUni ws="qvm-x-ame">alqay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*allqay</AUni> -<AUni ws="qvm-x-acl">*allqay</AUni> -<AUni ws="qvm-x-akh">*allqay</AUni> -<AUni ws="qvm-x-akl">*allqay</AUni> -<AUni ws="qvm-x-ame">*allqay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.739" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="46e2a37c-43c1-400b-9026-8869cd876384" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*allqay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="70467cd6-9dfe-4493-9ad2-4ee2722f256f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cc84603a-337e-48e7-92c0-de8ede3bd28d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *allqay 
\entryTyp root 
\gENG hawk 
\gSPN domínico 
\e *allqay 
\c N0 
\mp +FinalC 
\ach algay 
\akh alqay 
\acl algay 
\akl alqay 
\ame alqay</Run> -</AStr> -</Custom> -</rt> -<rt class="MoInflAffMsa" guid="0daaea2b-9cca-4a9f-953a-83273b1d5023" ownerguid="a51b808e-e22e-4784-b577-e2cd73c62637"> -<PartOfSpeech> -<objsur guid="a4fc78d6-7591-4fb3-8edd-82f10ae3739d" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="5f0a99ac-644b-4188-83d9-e7927958c17e" t="r" /> -</Slots> -</rt> -<rt class="MoStemMsa" guid="0dae55a1-cee7-4026-bead-5a70bfea0c42" ownerguid="341926ec-14e9-405b-82d7-e40dc0d3bd24"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="0db5817e-05bf-4703-a6b9-e239ac44f857" ownerguid="50db27b5-89eb-4ffb-af82-566f51c8ec0b"> -<Abbreviation> -<AUni ws="en">2.6.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to male and female people.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79V Male, Female</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Male, female</AUni> -</Name> -<Questions> -<objsur guid="03d1ef67-130a-49c3-afff-d8051d76b91d" t="o" /> -<objsur guid="2225eb38-087a-4963-b078-b1acf79448eb" t="o" /> -<objsur guid="91a8d716-fc9e-4bb5-90a8-e65890d5450d" t="o" /> -<objsur guid="985823e3-352b-412f-a33e-22fd2ff72e70" t="o" /> -<objsur guid="78a17f2c-d97d-40ab-9620-ddf1929e9bf7" t="o" /> -<objsur guid="59d92560-70f7-4857-9429-2c7a00f6020d" t="o" /> -<objsur guid="b58a651e-f0c7-4088-8736-3ba5d3ed1a92" t="o" /> -<objsur guid="0dd29580-306d-4def-acca-e13885ee4adf" t="o" /> -<objsur guid="9a5b2af7-c8c9-4eac-ac9e-510fd2f9625b" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="7c64f65b-2889-4f90-ba61-6b5f7634d4bc" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="04582a28-b94a-4e7f-8cc4-5cdefa8a39f0" t="o" /> -<objsur guid="ae6f73ab-432d-42e8-aa1a-c848652a13f0" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="0db68c74-16ef-40c2-a4dc-63ca6022f7f6" ownerguid="0bc02285-8e70-442a-8d08-e04d922507c8"> -<ExampleWords> -<AUni ws="en">art</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to art in general?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0db70b38-e2ad-4b80-a7d4-743cc13eceec" ownerguid="cd8b2a8b-687b-42e9-91e7-cfb8812b64ee"> -<ExampleWords> -<AUni ws="en">oops</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What do you say when you make a mistake?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0db995d0-14d3-4248-b64b-631d4c75cf07" ownerguid="38bbb33a-90bf-4a2c-a0e5-4bde7e134bd9"> -<ExampleWords> -<AUni ws="en">perceptible, noticeable, detectable, distinguishable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that can be sensed?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0dbaa4f6-c99b-424c-b9ea-3530caf201c8" ownerguid="e4ddd746-7958-4bee-8174-2c31eb9f4770"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0dbaa96b-98f2-4c21-8ba3-f375366f103e" ownerguid="8d490e91-6383-45ea-a3d7-b9c950822f98"> -<ExampleWords> -<AUni ws="en">impatient, intolerant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is impatient?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0dc29feb-5cf5-4e28-93cc-efe4007d4b69" ownerguid="a220a734-af03-4de3-8d05-369a3cad14cf"> -<ExampleWords> -<AUni ws="en">decoration, picture, frame, calendar, poster, knickknack, flower vase, doily</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What things are used to decorate a house?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0dc306d8-5107-4af8-8cfc-4bded357a1d3" ownerguid="2c8ae99c-06f1-4c12-95ba-37a825918c0d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="0dc61e4a-06d3-48bd-bfcf-e1960deecfe5" ownerguid="a9274aef-d301-40d6-a5fd-b5ff5878e0b4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="0dc7aae5-4cd0-437b-a178-ed3d386c7207" ownerguid="f5127d84-1119-44cb-b66a-9c44e6c370c6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">exhaustion</AUni> -<AUni ws="es">cansansia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f0913050-5157-4ebd-96ab-d792f9dc1ce3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="0dcaa668-c529-4a1c-89c8-2eb8a44caa73"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">la:zu</AUni> -<AUni ws="qvm-x-acl">la:zu; la:zu; la:zo</AUni> -<AUni ws="qvm-x-akh">la:zu</AUni> -<AUni ws="qvm-x-akl">la:zu; la:zu; la:zo</AUni> -<AUni ws="qvm-x-ame">la:zu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lazo</AUni> -<AUni ws="qvm-x-acl">+lazo</AUni> -<AUni ws="qvm-x-akh">+lazo</AUni> -<AUni ws="qvm-x-akl">+lazo</AUni> -<AUni ws="qvm-x-ame">+lazo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.530" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="68415f2d-cb7c-4b15-82b0-6ca7bcc6b35a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lazo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="26d58e56-7203-4d96-8fc1-2c066e37ebde" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="90e2fae7-1c14-45de-a830-1d888cc05952" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lazo 
\entryTyp root 
\gENG rope 
\gSPN lazo 
\e +lazo 
\c N0 
\ach la:zu 
\akh la:zu 
\acl la:zu / _# 
\acl la:zu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl la:zo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl la:zu / _# 
\akl la:zu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl la:zo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame la:zu 
\i 1KI 12.11 Papänë läzuwan astashga cashuptiquipis nogaga fiërru puntayog ronzalwanragmi astashayquipag.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="0dcbe193-f755-4c03-84c9-1e12dd94715c" ownerguid="23911ccd-4561-4775-8754-b89af31e24aa"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 23.10 Probamarpis jutsaynagtami tarimanga.</Run> -</AStr> -</Example> -</rt> -<rt class="MoInflAffMsa" guid="0dcd7049-8472-4f62-ab4f-e3cdb41b8742" ownerguid="29f0d6e7-da4c-4fde-85f2-28b642df1d6f"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="4241ff27-a983-4a4f-b554-ba2444cca308" t="r" /> -</Slots> -</rt> -<rt class="MoStemAllomorph" guid="0dd16e33-2dc1-4f16-b63f-d75858d53308" ownerguid="27a558b3-c84b-4d59-894b-53f62204ac8f"> -<Form> -<AUni ws="qvm-x-ach">yuri</AUni> -<AUni ws="qvm-x-acl">yuri; yure</AUni> -<AUni ws="qvm-x-akh">yuri</AUni> -<AUni ws="qvm-x-akl">yuri; yure</AUni> -<AUni ws="qvm-x-ame">yuri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="0dd18dd9-aa07-4a81-b7c9-8b39072c9b17" ownerguid="885c5382-cb0d-4bc0-8aa4-c79a75d00cd2" /> -<rt class="CmDomainQ" guid="0dd249e1-dd9a-451c-9ccc-893cfa0297e4" ownerguid="51d4e258-430c-4032-94e3-ee53095e7045"> -<ExampleWords> -<AUni ws="en">answer, result, solution</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the answer to a question in a test?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0dd29580-306d-4def-acca-e13885ee4adf" ownerguid="0db5817e-05bf-4703-a6b9-e239ac44f857"> -<ExampleWords> -<AUni ws="en">the opposite sex</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a person of the other sex?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0dd57450-628a-4eaf-8ce8-12b18b43ea2a" ownerguid="9de5b3c3-74fa-48dd-8b6a-fcc711a258b5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="27bb6b5a-6d40-4c62-8d2f-d2fad5a11013" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="cb2b2761-86bd-40dc-83d0-39de4efbbefe" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="0dd97987-8b6f-4db9-85a2-9746414fbadf" ownerguid="cb312439-8279-4f5f-a6a1-81bf5a3b7ecf"> -<Form> -<AUni ws="qvm-x-ach">shulca</AUni> -<AUni ws="qvm-x-acl">shulca</AUni> -<AUni ws="qvm-x-akh">shulka</AUni> -<AUni ws="qvm-x-akl">shulka</AUni> -<AUni ws="qvm-x-ame">shulka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0ddb6bb0-869b-4c79-99d5-28fffa32b620" ownerguid="999581c4-1611-4acb-ae1b-5e6c1dfe6f0c"> -<ExampleWords> -<AUni ws="en">sky, firmament, canopy, vault</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to refer to the sky?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0ddcb0cb-02d4-432b-b01f-21468821b699" ownerguid="c8602dc5-5c91-480a-b5ce-1c82fe3da83a"> -<ExampleWords> -<AUni ws="en">bite, chew</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What do the teeth do?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0dddc632-bca4-47da-8a59-31a89f87696e" ownerguid="6912fd97-2452-42b3-b772-458b9bdeffe0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.startled</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5d467cef-1fd8-47ea-928c-92a74a26fb77" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="0dde4700-1519-4022-8d42-5b043770c12b" ownerguid="8fda01cc-e0f5-40fc-a6cd-163788e6b224"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">crown</AUni> -<AUni ws="es">corona</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c8e9390d-ebbb-4314-930b-7328101c2510" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="0de28f92-c851-413c-bb6c-3ad21f5e267f" ownerguid="8503660c-03af-49ee-86b6-525aab4da828"> -<Abbreviation> -<AUni ws="en">2.3.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.32" /> -<DateModified val="2022-9-23 16:55:8.32" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to listening--to deliberately hear something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Listen</AUni> -</Name> -<Questions> -<objsur guid="9733bd9e-5a9c-4b14-82eb-1ed8be75faf8" t="o" /> -<objsur guid="e9db4b15-4976-437a-a79e-987d748d6864" t="o" /> -<objsur guid="3b03674f-1aff-4969-b3d8-b5303dc6c295" t="o" /> -<objsur guid="282629f3-bb3b-4ab9-9389-2ffa51cf53b8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="0de617df-d9f5-4da8-af67-c5b6232de49e" ownerguid="e6ea429d-8e0a-49b1-b7f6-d35e342c53c2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="de404a9b-347a-40c6-a997-19844af81c43" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="0de7a66e-6746-431c-9ed1-9c4afa274ddf" ownerguid="3e1713b2-17fd-41cb-8114-67d15657ebe7"> -<Form> -<AUni ws="qvm-x-ach">paña</AUni> -<AUni ws="qvm-x-acl">paña</AUni> -<AUni ws="qvm-x-akh">paña</AUni> -<AUni ws="qvm-x-akl">paña</AUni> -<AUni ws="qvm-x-ame">paña</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="0de7ba3e-5e24-4c00-b5da-8c6a05523a2b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tanta</AUni> -<AUni ws="qvm-x-acl">tanta</AUni> -<AUni ws="qvm-x-akh">tanta</AUni> -<AUni ws="qvm-x-akl">tanta</AUni> -<AUni ws="qvm-x-ame">tanta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tanta</AUni> -<AUni ws="qvm-x-acl">*tanta</AUni> -<AUni ws="qvm-x-akh">*tanta</AUni> -<AUni ws="qvm-x-akl">*tanta</AUni> -<AUni ws="qvm-x-ame">*tanta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.802" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="05df9d88-ed63-4d57-b878-3b80fad3f6d6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tanta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fd35cb2d-0861-4b36-a4ab-3c3c3c34bdfa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="94242f7e-70e5-4409-8de2-dec3f9eaf94f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tanta 
\entryTyp root 
\gENG bread 
\gSPN pan 
\e *tanta 
\c N0 
\ach tanta 
\akh tanta 
\acl tanta 
\akl tanta 
\ame tanta 
\mcc *tanta / ~_ CAUS</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="0dea2797-ec2f-4760-b2f4-028c2a19257c" ownerguid="c52e3809-7b7b-4bd7-88b4-1aa9b36fef05"> -<Form> -<AUni ws="qvm-x-ach">upishya; upishyä</AUni> -<AUni ws="qvm-x-acl">upishya; upishyä</AUni> -<AUni ws="qvm-x-akh">upishya; upishyä</AUni> -<AUni ws="qvm-x-akl">upishya; upishyä</AUni> -<AUni ws="qvm-x-ame">upishya; upishyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0dead829-ed6e-4cce-9869-cd71c586ef65" ownerguid="57e367f4-7029-4916-a700-791db32b4745"> -<ExampleWords> -<AUni ws="en">spend a lot, go to great expense, spare no expense, shell out, go through, eat up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to spending lots of money?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0dec6ab1-864c-43c1-b0b9-b23bfae6c697" ownerguid="67491727-59ff-4a20-a173-3f80a5c350e2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0dec7f27-0c01-4518-9544-c8f5b5925595" ownerguid="710828bc-5dfb-4685-b1a5-156700ab08f1"> -<ExampleWords> -<AUni ws="en">study, read up on, pore over</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to reading carefully?</AUni> -</Question> -</rt> -<rt class="StTxtPara" guid="0dedd593-9e27-48f4-9688-24b67187e8ae" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">rikapäkutsikun</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="7a9c2e2b-591f-42c0-8102-442d7f5e36a0" t="o" /> -</Segments> -</rt> -<rt class="CmDomainQ" guid="0dede822-77de-497e-88a3-5f1fd2f128a6" ownerguid="df2b9d7a-9b90-4704-8bc3-11dcffe985f4"> -<ExampleWords> -<AUni ws="en">skin condition, clear, oily, dry, cracked, loose, smooth, soft, rough, flake, scale, peel, scarred</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe the condition of a person's skin?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0defbb75-9e6b-4bb2-aaff-56375f54df09" ownerguid="084e2568-3f54-4eab-b436-8a87fb466659"> -<ExampleWords> -<AUni ws="en">stonemason, sculptor, stone cutter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who works with stone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0df301b1-6ed0-42ca-85be-d9ff267a9ffb" ownerguid="eeee02e1-157e-4786-ab92-80c92e5023b8"> -<ExampleWords> -<AUni ws="en">window</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a window?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="0df4edba-7ab0-48ac-af20-81bbcc74781a"> -<Form> -<Str> -<Run ws="qvm-x-akh">:.</Run> -</Str> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="0df6ad0c-b37a-47eb-9d3b-82dcd25494d8" ownerguid="96b7c3a5-bd7d-4c25-8fd0-3cf3372d3844"> -<Form> -<AUni ws="qvm-x-ach">raqui</AUni> -<AUni ws="qvm-x-acl">raqui; raqui; raque</AUni> -<AUni ws="qvm-x-akh">raki</AUni> -<AUni ws="qvm-x-akl">raki; raki; rake</AUni> -<AUni ws="qvm-x-ame">raki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="0df6b53f-c51a-4aea-97a7-9680f887a0b8" ownerguid="41a8ce11-1743-4a6f-98b2-35174e008309"> -<Form> -<AUni ws="qvm-x-ach">sagta</AUni> -<AUni ws="qvm-x-acl">sagta</AUni> -<AUni ws="qvm-x-akh">saqta</AUni> -<AUni ws="qvm-x-akl">saqta</AUni> -<AUni ws="qvm-x-ame">saqta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="0df71ccc-6c36-4ea1-ab04-5ed12535646e" ownerguid="f1e7c689-72f6-4766-8c94-0330e54bbb14"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">twisted</AUni> -<AUni ws="es">torcido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a4c65c90-930a-4dbc-98e2-af0d655c7225" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="0df8f483-c5fb-432f-b9f1-0bcca06bb89a" ownerguid="dbdba393-677c-4ed5-95f6-cea4c2a71e69"> -<Form> -<AUni ws="qvm-x-ach">invita</AUni> -<AUni ws="qvm-x-acl">invita</AUni> -<AUni ws="qvm-x-akh">invita</AUni> -<AUni ws="qvm-x-akl">invita</AUni> -<AUni ws="qvm-x-ame">invita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0dfb1f43-7067-4dfb-b6cb-335587b9dd8d" ownerguid="339f54a5-125b-435f-bf37-cfc2a2bd26d3"> -<ExampleWords> -<AUni ws="en">expression, look, face, countenance, facial expression, the look on someone's face</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a facial expression?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0dfca7ad-cc58-4453-832a-50202cfc9f20"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">Pascua</AUni> -<AUni ws="qvm-x-acl">Pascua</AUni> -<AUni ws="qvm-x-akh">Pascua</AUni> -<AUni ws="qvm-x-akl">Pascua</AUni> -<AUni ws="qvm-x-ame">Pascua</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+Pascua</AUni> -<AUni ws="qvm-x-acl">+Pascua</AUni> -<AUni ws="qvm-x-akh">+Pascua</AUni> -<AUni ws="qvm-x-akl">+Pascua</AUni> -<AUni ws="qvm-x-ame">+Pascua</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.739" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0300248c-b24a-490f-898e-777d577561f3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+Pascua</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="14d104a3-c17f-4970-a9c0-28a9d862929d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="44a199b8-c84a-400d-9870-f023ee9ba878" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +Pascua 
\entryTyp root 
\gENG Easter 
\gSPN Pascua 
\e +Pascua 
\c N0 
\ach Pascua 
\akh Pascua 
\acl Pascua 
\akl Pascua 
\ame Pascua</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="0dfdb2ba-84df-49e8-9564-d2ffc6256715"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chichi</AUni> -<AUni ws="qvm-x-acl">chichi; chiche</AUni> -<AUni ws="qvm-x-akh">chichi</AUni> -<AUni ws="qvm-x-akl">chichi; chiche</AUni> -<AUni ws="qvm-x-ame">chichi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tritri.v</AUni> -<AUni ws="qvm-x-acl">*tritri.v</AUni> -<AUni ws="qvm-x-akh">*tritri.v</AUni> -<AUni ws="qvm-x-akl">*tritri.v</AUni> -<AUni ws="qvm-x-ame">*tritri.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.139" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8df71ed6-0170-4185-b1ba-f5c2dc62c015" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tritri.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="32ecceab-74d8-48e3-bdd0-1e4d8b2edafd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="526cbecb-54e7-4f16-9b54-b85e678ad89a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tritri.v 
\entryTyp root 
\gENG nurse 
\gSPN lactar 
\e *tritri.v 
\c V2 
\mp +FinalI 
\ach chichi 
\akh chichi 
\acl chichi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl chiche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chichi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chiche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chichi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0e00798c-7d4e-4386-9f61-e4888d6db939" ownerguid="1688280e-27c4-47a8-87b7-8fe31b174ab8"> -<ExampleWords> -<AUni ws="en">test, exam, examination, quiz</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a test?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="0e021500-4bb3-4ecf-ab1c-758b4f6a20d8" ownerguid="ff7cf41e-ec29-4e35-b0c8-d61b635ac6eb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a4d42f6f-d626-4469-8166-21d6f4e69d6d" t="r" /> -</Morph> -<Msa> -<objsur guid="72dc7bab-4d12-4cdb-a144-3c853f889fb5" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="0e0392d0-90fd-4042-8fe0-3145c902a4bc" ownerguid="35084c69-7be0-4d8b-81e0-e354085c47e6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="0e041d2a-4dd3-4308-9ea0-4dce3130282a" ownerguid="dc9c4196-9030-4e82-872c-4c1464ba758f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0e04679a-d7aa-4ad9-9e15-505731758eba" ownerguid="f7960e84-5af9-4999-9028-783058aa8c5c"> -<ExampleWords> -<AUni ws="en">all, whole, entire, the lot, every bit of, every inch of, every drop of, in its entirety, from start to finish, the whole of, totality</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to all of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0e064397-2e1c-4aab-a076-37fcf5d55e34" ownerguid="2d9a7fef-1302-4f0e-8708-7339d07116a4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">PST</AUni> -<AUni ws="es">PSD</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="be6973f5-a2b1-46a6-9dd0-379cd8bb168a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0e086ad5-8319-41ff-bb22-dd24927636b3" ownerguid="d117aa22-3f18-47c4-9683-51ecf1dc7134"> -<ExampleWords> -<AUni ws="en">leaf, leafy, pine needle, fern, foliage, palm frond, stem, blade, vein</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the leaves?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0e0b29cd-9e67-4633-9703-ae25b1ff5894" ownerguid="34dd26b6-d081-42f5-8be9-c5fe7a7253b2"> -<ExampleWords> -<AUni ws="en">available, obtainable, at your disposal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to something being available for use?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0e0e91e3-6d3f-4310-b235-bf0ee9c88679"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chishya; chishya:</AUni> -<AUni ws="qvm-x-acl">chishya; chishya:</AUni> -<AUni ws="qvm-x-akh">chishya; chishya:</AUni> -<AUni ws="qvm-x-akl">chishya; chishya:</AUni> -<AUni ws="qvm-x-ame">chishya; chishya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trishya:</AUni> -<AUni ws="qvm-x-acl">*trishya:</AUni> -<AUni ws="qvm-x-akh">*trishya:</AUni> -<AUni ws="qvm-x-akl">*trishya:</AUni> -<AUni ws="qvm-x-ame">*trishya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.129" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3ffbdc73-a174-4297-ab45-4353ead59a44" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trishya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="796ea771-d383-406f-8765-f5703318488e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="73eaabeb-7c4b-4662-8f55-713224d03605" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trishya: 
\entryTyp root 
\gENG 
\gSPN 
\e *trishya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach chishya foreshortened 
\ach chishya: 
\akh chishya foreshortened 
\akh chishya: 
\acl chishya foreshortened 
\acl chishya: 
\akl chishya foreshortened 
\akl chishya: 
\ame chishya foreshortened 
\ame chishya:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0e0e9391-927b-46b5-b8a6-9cd16ab5ac5a" ownerguid="db2232d9-8b17-4920-936f-2b6249c6f7fa"> -<ExampleWords> -<AUni ws="en">embezzle, misappropriate, have your fingers in the till, embezzlement, corruption, abscond with the money, skim profits</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to stealing money from your job?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0e1263d2-0279-47cf-bd1e-93ab51af263a" ownerguid="60dc7cf6-0a41-4cd3-99a6-0b7a71488e7e"> -<ExampleWords> -<AUni ws="en">down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels bad?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0e138b3b-71eb-4c5c-89b9-b9547279207b" ownerguid="e5dc2a6b-4139-4762-a925-0d0ea22588ea"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="0e16295d-ba4e-474f-a90e-572c086598b9" ownerguid="91f577aa-10a4-436a-91ec-ba20351ebe53"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">drizzle</AUni> -<AUni ws="es">lloviznar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bd62b59f-ffd3-4695-8576-9ac8ecc29606" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="0e1b1794-0273-4f27-8253-0b8b898c8be8" ownerguid="19f69682-1c26-433d-981c-97621c387c0e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">LAM 3.4 Garäpis aytsäpis pasaypanami sirayäcan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="0e1d0c98-ffb6-494b-b094-ea9a7517ab95" ownerguid="306707d2-e4e5-4b16-96b4-09fa5c1c1984"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0e1e8d25-e849-49d7-baf9-cc780ce4298d" ownerguid="2a2af155-9db9-41c5-860a-fe0a3a09d6de"> -<ExampleWords> -<AUni ws="en">clear, cogent, concise, observant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe the way a person thinks?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0e2004b5-4971-44ef-8270-38efac8e7461"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">puertu; puerto</AUni> -<AUni ws="qvm-x-acl">puertu; puertu; puerto</AUni> -<AUni ws="qvm-x-akh">puertu; puerto</AUni> -<AUni ws="qvm-x-akl">puertu; puertu; puerto</AUni> -<AUni ws="qvm-x-ame">puertu; puerto</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+puerto</AUni> -<AUni ws="qvm-x-acl">+puerto</AUni> -<AUni ws="qvm-x-akh">+puerto</AUni> -<AUni ws="qvm-x-akl">+puerto</AUni> -<AUni ws="qvm-x-ame">+puerto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.972" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2bf018bf-7b92-4a89-bcd5-0c69c4320a69" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+puerto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2d2bbffa-0608-4a75-8960-141fe384d508" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dc9815e7-c06b-4517-aeb8-1cc5d9d04be1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +puerto 
\entryTyp root 
\gENG port 
\gSPN puerto 
\e +puerto 
\c N0 
\ach puertu / ~_# 
\ach puerto / _# 
\akh puertu / ~_# 
\akh puerto / _# 
\acl puertu / ~_# 
\acl puertu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl puerto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl puertu / ~_# 
\akl puertu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl puerto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame puertu / ~_# 
\ame puerto / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="0e207cd3-0ac1-42b6-a02e-dce92a6a1e69" ownerguid="95bd1b8a-6f27-4b8e-90dd-2c4a489ea4cd"> -<Form> -<AUni ws="qvm-x-ach">caya</AUni> -<AUni ws="qvm-x-acl">caya</AUni> -<AUni ws="qvm-x-akh">kaya</AUni> -<AUni ws="qvm-x-akl">kaya</AUni> -<AUni ws="qvm-x-ame">kaya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="0e229bbb-a0d4-4016-8af6-c51fe397f287" ownerguid="d33042a7-36e6-496e-b2b5-69a668175a46"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">province</AUni> -<AUni ws="es">provincia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a4599e92-8109-4054-b2d0-31fd8e1dac7b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="0e24efb5-6410-4331-b5c4-4681cc476873"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">la:ta</AUni> -<AUni ws="qvm-x-acl">la:ta</AUni> -<AUni ws="qvm-x-akh">la:ta</AUni> -<AUni ws="qvm-x-akl">la:ta</AUni> -<AUni ws="qvm-x-ame">la:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lata</AUni> -<AUni ws="qvm-x-acl">+lata</AUni> -<AUni ws="qvm-x-akh">+lata</AUni> -<AUni ws="qvm-x-akl">+lata</AUni> -<AUni ws="qvm-x-ame">+lata</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.530" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e37c7492-0a8d-4762-ab47-1ca841a7ab90" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lata</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a5fed54e-3f29-4111-b347-63b4385f6aad" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7cf9cf21-c789-4a43-9b34-823d393ebfec" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lata 
\entryTyp root 
\gENG can 
\gSPN lata 
\e +lata 
\c N0 
\ach la:ta 
\akh la:ta 
\acl la:ta 
\akl la:ta 
\ame la:ta 
\mcc +lata / ~_ ADV2</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="0e250e72-6c3f-424f-9e62-2dcc9729d817" ownerguid="fb84538a-17a8-4adc-8d50-e2b66f8e4099"> -<Abbreviation> -<AUni ws="en">8.1.1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.559" /> -<DateModified val="2022-9-23 16:55:8.559" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for other series of numbers that are different from those in the previous domains.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Number series</AUni> -</Name> -<Questions> -<objsur guid="37dccc1c-123e-423f-8a05-740edc9165e2" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="0e2515d0-98f5-4c36-a36b-169df04e8a23" ownerguid="721e2ee8-7ea5-4d17-94cc-d77d8e92bd27"> -<ExampleWords> -<AUni ws="en">have good manners</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to being polite?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="0e258fd4-b3ac-48ac-828d-7a4342f980f0" ownerguid="3031f652-16a7-4b1d-bec1-851d04482a0b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Num 11.32 Walcalata shuntagcunapis chunca montuytami shuntargan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="0e282bb2-cb30-41c2-bba9-a4f46df718c6" ownerguid="31214385-6f41-400c-a286-902b820dcaed"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="0e28f1f2-a5dc-4634-96df-98673fe8bee2" ownerguid="1e5abf5f-b384-435a-8353-ca903ef37c62"> -<Form> -<AUni ws="qvm-x-ach">pagchu</AUni> -<AUni ws="qvm-x-acl">pagchu; pagcho</AUni> -<AUni ws="qvm-x-akh">paqchu</AUni> -<AUni ws="qvm-x-akl">paqchu; paqcho</AUni> -<AUni ws="qvm-x-ame">paqchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="0e2bf87c-6940-44f3-bd62-fac6718d7c7c" ownerguid="ca30a86f-dfa7-4d8c-a3a5-0c7981691e17"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">scroll</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4e5d0c26-4257-4d3b-bc4b-be8f9e0b859e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="0e2c584a-e0a6-427d-b053-9de276ce5d82" ownerguid="c02e9b48-7a05-46bc-9157-c0933f8e850f"> -<Form> -<AUni ws="qvm-x-ach">päri</AUni> -<AUni ws="qvm-x-acl">päri; päre</AUni> -<AUni ws="qvm-x-akh">päri</AUni> -<AUni ws="qvm-x-akl">päri; päre</AUni> -<AUni ws="qvm-x-ame">päri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0e2e0206-9fb5-4d75-a1ca-b5050b62cbde" ownerguid="ea2d0dc5-2cdb-4686-9f48-abe65ed295a4"> -<ExampleWords> -<AUni ws="en">pass through</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to moving through something?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="0e2e3259-45c4-4706-af1b-b0e21ae26a1e" ownerguid="f786786c-783e-4736-ae68-ed1a8dfd8a53"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ra</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ra</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ra</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ra</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ra</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ec6359d2-b25a-466e-b6a0-4a7efa980490" t="r" /> -</Morph> -<Msa> -<objsur guid="fd75ba47-7348-4c70-9565-ca4ec1c2b5c2" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="0e2f08d7-f459-4567-b92b-2c9898bbed20" ownerguid="84f79788-dd5c-4ce6-808d-8f23d8c713c0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">companion</AUni> -<AUni ws="es">compañero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f5339155-f3a6-477f-bba3-ce29733b0d14" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="0e2f5c4c-9656-4e31-8b72-fef23ea5ea73"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Maychöpis</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="0e312109-1cc2-4645-96f5-97caeaf7c869"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">andas</AUni> -<AUni ws="qvm-x-acl">andas</AUni> -<AUni ws="qvm-x-akh">andas</AUni> -<AUni ws="qvm-x-akl">andas</AUni> -<AUni ws="qvm-x-ame">andas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+anda.1</AUni> -<AUni ws="qvm-x-acl">+anda.1</AUni> -<AUni ws="qvm-x-akh">+anda.1</AUni> -<AUni ws="qvm-x-akl">+anda.1</AUni> -<AUni ws="qvm-x-ame">+anda.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.769" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="27c40b9a-1c91-4519-a95b-8241829c338a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+anda.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6abd48ab-6c43-40d4-8da3-8320879d681b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ba12b579-2eec-4f6d-b0cc-39db020128c8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +anda.1 
\entryTyp root 
\gENG litter 
\gSPN andas 
\e +anda.1 
\c N0 
\mp +FinalC 
\ach andas 
\akh andas 
\acl andas 
\akl andas 
\ame andas</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0e316bd5-8e12-48c8-9c7c-3bd7a6049d30" ownerguid="6fbe39fb-a4cb-4fcf-830b-8875fd4324e0"> -<ExampleWords> -<AUni ws="en">forcible (eviction), forcibly, compulsory (education)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that someone is forced to do?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0e3531a6-e0a0-4ccc-aee6-48c95c52c866" ownerguid="d0dee676-f3ae-43cc-96f1-7e3bb65870f5"> -<ExampleWords> -<AUni ws="en">be the right size, dovetailed, a good fit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that fits?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0e367670-5845-46a2-9c69-5b4a172c72cc" ownerguid="b2192fec-bc78-4900-b363-4ad62318be86"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0e367db2-a18f-4bd8-a850-cd5d9ba583a5" ownerguid="286ee16c-a218-43d5-bbac-ab15f80c3fcf"> -<ExampleWords> -<AUni ws="en">enough, sufficient, adequate, satisfactory, enough to go round</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that you have enough of?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0e374ae1-8ef2-4a3f-b350-dcb59bb30cc1" ownerguid="b0adc784-6b3a-4596-aec4-10379a331c18"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0e38340d-ee49-4d02-a370-f09a4276a86e" ownerguid="bafa274e-8bf0-4cf7-8ce7-2c28293db809"> -<ExampleWords> -<AUni ws="en">knock, ring (the doorbell), answer (the door)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words are used when a visitor comes to the door?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0e3859c4-2e47-4759-a9ae-f6e971ca405e" ownerguid="e43c9905-ae67-4627-8b10-bd7a453828b4"> -<ExampleWords> -<AUni ws="en">stick, stick down, stick together, glue</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to joining two things together using glue or a sticky substance?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="0e3aa5b6-0847-4284-b597-25e72ea7dcc4" ownerguid="91f70f33-b214-444b-be15-03a262bde46d"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Micuyta ayapayculay.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="0e3ef08a-d8e9-45ab-b93c-5f7d9d50666e" ownerguid="1681e7df-f802-4cc2-88ad-61118ef035aa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">haze</AUni> -<AUni ws="es">niebla.espesa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5639de46-d59d-4697-a944-97bd2d86dcd4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="0e3fcd78-47e6-456f-b8e8-c1a8affbd52f" ownerguid="a4bc5f8d-363a-412e-ba54-2df17a92120a"> -<Form> -<AUni ws="qvm-x-ach">captu</AUni> -<AUni ws="qvm-x-acl">captu; capto</AUni> -<AUni ws="qvm-x-akh">kaptu</AUni> -<AUni ws="qvm-x-akl">kaptu; kapto</AUni> -<AUni ws="qvm-x-ame">kaptu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="0e417e18-de43-4a47-8d06-3b7b3cf99ec9" ownerguid="ae0190e6-ac98-44c2-b5ef-f8990394129f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fellow.bad.doer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ad94680a-00c9-4c0f-97af-803ee6828dde" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0e41c96b-c9b8-48ef-aa1f-b0ca83f5d2f1" ownerguid="f4b77866-c607-43f0-b816-95459c269525"> -<ExampleWords> -<AUni ws="en">babbler, fool</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who says foolish things?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0e453182-6d1a-486e-abab-c7d4f35fc417"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wampu</AUni> -<AUni ws="qvm-x-acl">wampu; wampo</AUni> -<AUni ws="qvm-x-akh">wampu</AUni> -<AUni ws="qvm-x-akl">wampu; wampo</AUni> -<AUni ws="qvm-x-ame">wampu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wampu</AUni> -<AUni ws="qvm-x-acl">*wampu</AUni> -<AUni ws="qvm-x-akh">*wampu</AUni> -<AUni ws="qvm-x-akl">*wampu</AUni> -<AUni ws="qvm-x-ame">*wampu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.473" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="33e5bf1c-a8c0-4ac3-ac79-8db639a0f161" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wampu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eba49772-fb81-41c4-b8bb-281a74b0e16c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3aba0fe0-c861-4b9c-b9f6-c4147f05920c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wampu 
\entryTyp root 
\gENG float 
\gSPN flotar 
\e *wampu 
\c V1 
\ach wampu 
\akh wampu 
\acl wampu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wampo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wampu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wampo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wampu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoDerivAffMsa" guid="0e48721b-df9d-4704-8442-6a66ca1bdbc2" ownerguid="df81ebe4-6185-45f1-ae43-03a4ef6e96d5"> -<FromPartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</FromPartOfSpeech> -<ToPartOfSpeech> -<objsur guid="f3ea5225-9cc3-474e-b548-7bda3376fce1" t="r" /> -</ToPartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="0e4e0322-91f1-4a26-991b-2ba01ffc3401" ownerguid="604ab9e6-0ad7-4a0d-b166-5d7150d8e6c9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">gargu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">gargu; gargo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qarqu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qarqu; qarqo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qarqu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="73ffd175-ad05-4d66-af47-2c487b1126eb" t="r" /> -</Morph> -<Msa> -<objsur guid="6da469f9-1f0c-4335-acc0-6c49a7bb5c21" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="0e4f727c-2f06-4b0a-a646-82e9c86b4f39" ownerguid="7f1b2fc4-6bac-4581-a920-44c514817783"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ta</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ta</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ta</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ta</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ta</Run> -</AStr> -</Form> -<Morph> -<objsur guid="4f3f1430-f126-405a-98a8-5d0b732eb948" t="r" /> -</Morph> -<Msa> -<objsur guid="eac932ef-fd79-454b-b2f7-95e85dbb829a" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="0e551ad2-042f-4035-8e3d-0f8da29e7ef3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gaycu; gayca</AUni> -<AUni ws="qvm-x-acl">gaycu; gayco; gayca</AUni> -<AUni ws="qvm-x-akh">qayku; qayka</AUni> -<AUni ws="qvm-x-akl">qayku; qayko; qayka</AUni> -<AUni ws="qvm-x-ame">qayku; qayka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qaykU</AUni> -<AUni ws="qvm-x-acl">*qaykU</AUni> -<AUni ws="qvm-x-akh">*qaykU</AUni> -<AUni ws="qvm-x-akl">*qaykU</AUni> -<AUni ws="qvm-x-ame">*qaykU</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.165" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="97fcc7f2-4485-44b6-aa87-086e216f7d33" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qaykU</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="18c9dabd-86ca-4643-80ba-d7b65638475e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="238c7c4f-06a6-4830-9781-434919a32b18" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qaykU 
\entryTyp root 
\gENG put 
\gSPN echar 
\e *qaykU 
\c V2 
\mp PMlowered 
\ach gaycu 
\ach gayca morphlowered 
\akh qayku 
\akh qayka morphlowered 
\acl gaycu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gayco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gayca morphlowered 
\akl qayku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qayko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qayka morphlowered 
\ame qayku 
\ame qayka morphlowered 
\co dmc *qaykU / ~_ PLALL | NO: En Daniel, dice qaykapäkorqan</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="0e587f56-241a-4a26-9375-95f6362cd0c4" ownerguid="197f907c-f581-4e66-a2df-6362304d6d98"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="0e590da7-c027-42e0-b580-f65686cee461" ownerguid="474aa982-8350-47e2-a983-e1e2bce9d928"> -<Abbreviation> -<AUni ws="en">3.4.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.133" /> -<DateModified val="2022-9-23 16:55:8.133" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling surprised--to feel something when something unexpected, unusual, or amazing happens.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25T Surprise, Astonish</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Surprise</AUni> -</Name> -<Questions> -<objsur guid="0d756d59-d4b2-4e8f-820a-3695397e6b20" t="o" /> -<objsur guid="a9ce4725-c525-4f41-a1ef-1c25098cc881" t="o" /> -<objsur guid="c96b0b14-13d5-4068-8874-da1a88ac1371" t="o" /> -<objsur guid="53064237-b29d-4001-8f7f-ded5d7203700" t="o" /> -<objsur guid="35c301f7-eb96-4a0e-9c1c-b13b0c12687f" t="o" /> -<objsur guid="1f5b7a13-5d48-4173-9077-369f4f15ce13" t="o" /> -<objsur guid="f261fe84-8558-4bf7-9688-a49852f3fee0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="0e59680e-7850-488f-943f-d0a8d5659349" ownerguid="7acde7d5-1a5b-4e16-99c7-5f297d2643f4"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="06476485-6c1d-4803-aac3-c95cadf8cc42" t="o" /> -<objsur guid="b4300039-ebcb-4fee-8872-3117339365f6" t="o" /> -</MorphBundles> -</rt> -<rt class="CmSemanticDomain" guid="0e5a6bd0-470f-4231-9f57-a73b725807f4" ownerguid="c2630384-2f72-4a96-baed-3fff03383362"> -<Abbreviation> -<AUni ws="en">6.2.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.428" /> -<DateModified val="2022-9-23 16:55:8.428" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the first fruits or crops to be harvested.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">First fruits</AUni> -</Name> -<Questions> -<objsur guid="82f8e99b-87a6-468f-8efb-c66471a47d1f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="0e5e1717-35fd-4b6d-96da-d36958c41060" ownerguid="a9a03ccc-eb79-4862-8711-d919db632f19"> -<Form> -<AUni ws="qvm-x-ach">raspi</AUni> -<AUni ws="qvm-x-acl">raspi; raspe</AUni> -<AUni ws="qvm-x-akh">raspi</AUni> -<AUni ws="qvm-x-akl">raspi; raspe</AUni> -<AUni ws="qvm-x-ame">raspi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="0e607539-9613-4bc3-8c12-546a0f3aa698" ownerguid="38994546-69ff-4f92-9219-4ba104de87be"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="d17f0e31-8a2c-4875-b414-c9a0e924dd29" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0e608d1a-6a79-4c5a-a1ce-5ddddddc099d" ownerguid="29a8ebbe-ebc4-4295-b6af-84331d019361"> -<ExampleWords> -<AUni ws="en">collocate, collocate (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What words refer to two words that are often used together?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0e6424bf-a4ac-44b5-a4c2-bd41edf124d6" ownerguid="ffc8ed53-dc2e-430f-84b7-30a0910bfb61"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="d5bbf112-aefe-4f21-aeb0-befed3980dcf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0e642e42-6fe3-41ec-b10a-e0b5dd30fa21" ownerguid="a781d57d-174d-47a6-b6a1-ae635a13df84"> -<ExampleWords> -<AUni ws="en">family, nuclear family</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to your father, mother, and siblings?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0e6669bc-cd97-43df-b078-0c28632602b2" ownerguid="f48e6338-dde3-4d6a-85d1-90bc470293f2"> -<Form> -<AUni ws="qvm-x-ach">ticräri; ticrära</AUni> -<AUni ws="qvm-x-acl">ticräri; ticräre; ticrära</AUni> -<AUni ws="qvm-x-akh">tikräri; tikrära</AUni> -<AUni ws="qvm-x-akl">tikräri; tikräre; tikrära</AUni> -<AUni ws="qvm-x-ame">tikräri; tikrära</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0e67bc0e-14e9-44e2-9c46-d45e1d014120" ownerguid="5abd1270-261a-4980-93e5-e10eacea99ad"> -<ExampleWords> -<AUni ws="en">hop, hop on one leg, hop around, skip</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to jumping on one leg?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0e6999b9-9cfc-4d24-96e4-3a36cd0154c7" ownerguid="a27acfa8-6c48-4621-a14b-c560fe8fade6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="9affe392-25f7-493d-b8dd-b8013cbcc31c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="0e6b10a9-0e77-4ae2-a5f3-022d8a2b2dc7" ownerguid="4ba3ec62-cf2f-4198-a08e-4f4ed4978c28"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="0e6ddc78-a6fb-40bc-a181-28279b8c7632" ownerguid="6f011005-9763-4284-9571-90529febecf7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 R1/R0 N1/N0 BN/BN</Run> -</AStr> -</Custom> -<Definition> -<AStr ws="en"> -<Run ws="en">first person possessive</Run> -</AStr> -<AStr ws="es"> -<Run ws="es">primera persona posesiva</Run> -</AStr> -</Definition> -<Gloss> -<AUni ws="en">1P</AUni> -<AUni ws="es">1P</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="13b178aa-cf95-4902-a68b-959ad06fd6f9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="0e6f9eb3-a39b-4735-b94b-3571220f4056" ownerguid="87f3106b-69de-4cb1-9efc-b19cda92fe96"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0e70c432-b774-4109-b1b8-579916da2c32" ownerguid="d01f1c51-522e-4b35-81b3-00577dbfa3bd"> -<ExampleWords> -<AUni ws="en">bright, brightly colored, brilliant, pure, gaudy, garish, vivid, flashy, fresh, intense, strong, hot</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that is a bright color?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0e71c499-1000-4089-9ba6-1c1e8341657c" ownerguid="d5d0d386-30f7-4ece-a7f6-de2de22a4609"> -<Form> -<AUni ws="qvm-x-ach">pöru</AUni> -<AUni ws="qvm-x-acl">pöru; pöru; pöro</AUni> -<AUni ws="qvm-x-akh">pöru</AUni> -<AUni ws="qvm-x-akl">pöru; pöru; pöro</AUni> -<AUni ws="qvm-x-ame">pöru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="0e736586-a814-4c3a-afe1-36ae912daafb" ownerguid="1613d33c-0798-49b5-9430-bf2964943504"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">watch</AUni> -<AUni ws="es">mirar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="67f1945e-2b10-4696-9c5a-3210419d7420" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0e73c4a9-4bc1-4207-acac-d212a163e5ae" ownerguid="691bdba3-c216-4b42-877c-674bbdb517a7"> -<ExampleWords> -<AUni ws="en">distrustful, mistrustful</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe someone who usually does not trust other people?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0e74ec78-23bd-4fb0-bddb-de094c8347fd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bronquitis</AUni> -<AUni ws="qvm-x-acl">bronquitis</AUni> -<AUni ws="qvm-x-akh">bronquitis</AUni> -<AUni ws="qvm-x-akl">bronquitis</AUni> -<AUni ws="qvm-x-ame">bronquitis</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bronquitis</AUni> -<AUni ws="qvm-x-acl">+bronquitis</AUni> -<AUni ws="qvm-x-akh">+bronquitis</AUni> -<AUni ws="qvm-x-akl">+bronquitis</AUni> -<AUni ws="qvm-x-ame">+bronquitis</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.981" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f9f1b92e-5398-46cc-ae7a-5fc0b83a92aa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bronquitis</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2bf10ffa-0bd6-4c8d-81ea-cfea6ab78e59" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="036423c3-73e7-4696-be39-caf403c31535" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bronquitis 
\entryTyp root 
\gENG bronquitis 
\gSPN bronquitis 
\e +bronquitis 
\c N0 
\mp +FinalC 
\ach bronquitis 
\akh bronquitis 
\acl bronquitis 
\akl bronquitis 
\ame bronquitis</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0e77a7e4-7d65-40ed-89e2-ac60e4079035" ownerguid="0b7b9a1c-588b-475a-ac14-00f0999cbfe9"> -<ExampleWords> -<AUni ws="en">peace, peacetime, be at peace with, peaceful</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being at peace?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="0e79435b-f5ff-4061-81ff-49557ba2aed4" ownerguid="62b4ae33-f3c2-447a-9ef7-7e41805b6a02"> -<Abbreviation> -<AUni ws="en">4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.184" /> -<DateModified val="2022-9-23 16:55:8.184" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to relationships between people and groups of people.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>34 Association; 34A Associate; 89T Association; 89A Relation; 89Z Mediation</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Relationships</AUni> -</Name> -<OcmCodes> -<Uni>570 Interpersonal Relations</Uni> -</OcmCodes> -<Questions> -<objsur guid="62039c06-c2f8-4042-b30a-59c1195c732f" t="o" /> -<objsur guid="3c0e84a8-ca22-4ff3-bcfd-068535fe23e0" t="o" /> -<objsur guid="c14ff8f6-ff65-4079-b005-09c2cad78b71" t="o" /> -<objsur guid="b7fb7aa2-e0da-4c9c-b612-201bd21ddb02" t="o" /> -<objsur guid="0f7a1731-1758-4e04-b671-f03f67071be9" t="o" /> -<objsur guid="31c195b6-fc55-448e-9622-0b5f9258645b" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="646dab64-5c2f-4f45-8e28-4d13437639d4" t="o" /> -<objsur guid="995751ef-d71b-429c-a4ee-032f5b309bd7" t="o" /> -<objsur guid="469b0a30-3c26-4cfd-b948-7bb952eeff41" t="o" /> -<objsur guid="d49f2c9d-1b4a-4370-b107-71f9b9fbdc8e" t="o" /> -<objsur guid="9ac6dec6-1b8f-463c-8239-e2acb93586b1" t="o" /> -<objsur guid="d59a84e1-5e12-4cb7-b72b-15c51810ad48" t="o" /> -<objsur guid="675d67bb-da64-456e-8825-bdf074bb82be" t="o" /> -<objsur guid="aeb20093-26ba-492b-a69d-af18d5ba51eb" t="o" /> -<objsur guid="e7c58c11-2911-446a-96b0-2113247f3792" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="0e7a8107-72c6-465a-8060-ae8ce8a80ece" ownerguid="f0fd4572-67b7-42b3-81d0-38ed7db7b9e1"> -<Form> -<AUni ws="qvm-x-ach">wishga</AUni> -<AUni ws="qvm-x-acl">wishga</AUni> -<AUni ws="qvm-x-akh">wishqa</AUni> -<AUni ws="qvm-x-akl">wishqa</AUni> -<AUni ws="qvm-x-ame">wishqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="0e7cce3e-992a-4152-b1e1-c94136f40bcd" ownerguid="ddea0833-7497-489f-9768-111b39f8a72b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0e7fae44-f51d-4437-99ab-f1c38cda0b3b" ownerguid="b9a4b336-080a-4973-a7e3-a9af10fc347c"> -<ExampleWords> -<AUni ws="en">rumble, grumble, gurgle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What noises does the stomach make?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0e800143-c986-40e6-85fb-a03ef133e856" ownerguid="84a071b1-0505-4bc1-b0b5-1a10d3e02bd3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="0e8163f7-12e6-434d-8dbc-ec436acee44b" ownerguid="78dd1761-8403-4319-8b2d-a72f10256dc3"> -<Form> -<AUni ws="qvm-x-ach">walya</AUni> -<AUni ws="qvm-x-acl">walya</AUni> -<AUni ws="qvm-x-akh">walya</AUni> -<AUni ws="qvm-x-akl">walya</AUni> -<AUni ws="qvm-x-ame">walya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StTxtPara" guid="0e881f39-54e3-497e-994d-c82f65194c55" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">rikaman. </Run> -<Run ws="en">\tr < V2 *rika > 1O 3</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="d5d04ef9-4b4f-424b-ba26-c9234878594d" t="o" /> -<objsur guid="1f71e8be-bcac-4f36-b6b4-47b0904d7a3c" t="o" /> -</Segments> -</rt> -<rt class="LexEntry" guid="0e88ebaa-ae1c-422f-baed-81b818bc79ed"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jutu</AUni> -<AUni ws="qvm-x-acl">jutu; juto</AUni> -<AUni ws="qvm-x-akh">jutu</AUni> -<AUni ws="qvm-x-akl">jutu; juto</AUni> -<AUni ws="qvm-x-ame">hutu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hutu.v</AUni> -<AUni ws="qvm-x-acl">*hutu.v</AUni> -<AUni ws="qvm-x-akh">*hutu.v</AUni> -<AUni ws="qvm-x-akl">*hutu.v</AUni> -<AUni ws="qvm-x-ame">*hutu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.771" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="09900d9d-c9ab-440b-baed-936c9352d21d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hutu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c87f1998-c67c-4fba-8681-7c243672d8f8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9ca059b6-63fe-4cdd-b75e-27f773c206d1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hutu.v 
\entryTyp root 
\gENG drip 
\gSPN gotear 
\e *hutu.v 
\c V1 
\ach jutu 
\akh jutu 
\acl jutu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl juto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jutu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl juto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hutu 
\mcc *hutu.v / ~_ INF.noI TOP</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="0e8be017-2958-47ce-bae2-93d7dc2ba841" ownerguid="5d9afe0b-1d2c-4074-bc6c-7385e2d1be42"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">MIC 1.6 Tsay marcapa perga murällancunatapis juchuratsir rumincunatapis ragrapami garputsishag.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="0e8e3d1c-bd1d-4b04-932f-598000b83a97" ownerguid="28ba8f5c-5baa-4500-a6f5-be292caa673f"> -<ExampleWords> -<AUni ws="en">law breaker, criminal, rebel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who disobeys?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0e8e960e-bd7b-4319-bf37-b4ac357c9443" ownerguid="e9f1ef3a-fda5-4b3f-9101-a4b7c421a607"> -<Form> -<AUni ws="qvm-x-ach">rebuca</AUni> -<AUni ws="qvm-x-acl">rebuca</AUni> -<AUni ws="qvm-x-akh">rebuca</AUni> -<AUni ws="qvm-x-akl">rebuca</AUni> -<AUni ws="qvm-x-ame">rebuca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="0e8f85e4-8049-41c7-b52d-b621b5e08a9d" ownerguid="a5466829-4cee-4a52-9a72-cd3eb880da81"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">saddle</AUni> -<AUni ws="es">silla.de.montar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b3939df9-36a0-4790-a9e9-d31eeb5201c3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0e8ffae3-f5cb-473b-a1aa-7f9b7a8c1b05" ownerguid="8ce6709f-f772-4638-a1aa-c132666f3563"> -<ExampleWords> -<AUni ws="en">exasperated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to feeling very annoyed?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0e918e3d-4301-4112-a5e3-141f93b7f3ad" ownerguid="34d60dc3-c587-48dc-8401-d64a0ec1304c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">landslide</AUni> -<AUni ws="es">huayco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d12eb24a-def8-4395-addf-03fa45e4d8b0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="0e963374-0454-4a4a-8d1e-30b9c3a514e8" ownerguid="8f0448a2-9846-4c09-8bf0-3fdebf292475"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">sucio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="afe5a916-fea3-4cfb-b302-569cee797603" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="0e98ff0b-1473-47c5-8efd-7dc3ba5f57f3" ownerguid="fb872b7f-a80c-4475-96d0-c031d4237846"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">push</AUni> -<AUni ws="es">empujar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="24512c3f-8587-4e4a-998e-48bac9a11c55" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0e990331-a1f8-4056-aafc-c5870841a527" ownerguid="6342c8bf-55b5-400f-af7e-63055fe6813b"> -<ExampleWords> -<AUni ws="en">kit, tool kit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a set of tools?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0e9a0fc1-0126-4c2b-a94b-70d8661722eb" ownerguid="59b02f4e-4380-4541-83a3-e1533d913c22"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0e9c2e14-a793-4554-9777-60a03a81afea" ownerguid="3edb307f-be46-40b6-a6a4-ae075b40258c"> -<ExampleWords> -<AUni ws="en">since, ever since, for, from, starting from, from that time on, thereafter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something started in the past and continued until now?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="0e9c72bd-c9d5-46e7-807e-b82e2e0400c0"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">20a</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="0ea133b6-8285-44b7-9461-11b0ceba7712" ownerguid="764f7789-e255-46d3-82dd-4e20f7e4c6a2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0ea40fc0-d382-4022-b11e-c29b73987c41" ownerguid="d88d862c-01d4-4b43-9fbe-59208922e022"> -<ExampleWords> -<AUni ws="en">cut in line, cut in front of someone, cut someone off, jump the queue, push in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to refusing to wait patiently and going ahead of other people instead?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0ea4439c-3f31-4375-a617-619c36f4333e" ownerguid="8db70ac8-2d6c-44b4-8d6b-89a11092f684"> -<Form> -<AUni ws="qvm-x-ach">acu</AUni> -<AUni ws="qvm-x-acl">acu; aco</AUni> -<AUni ws="qvm-x-akh">shatinaku</AUni> -<AUni ws="qvm-x-akl">aku; ako</AUni> -<AUni ws="qvm-x-ame">aku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="0ea58439-6086-4aa3-b751-c0aedd15097b" ownerguid="d83a1fec-6b16-4327-ab5d-328aa4f6a678"> -<Form> -<AUni ws="qvm-x-ach">quicha</AUni> -<AUni ws="qvm-x-acl">quicha</AUni> -<AUni ws="qvm-x-akh">kicha</AUni> -<AUni ws="qvm-x-akl">kicha</AUni> -<AUni ws="qvm-x-ame">kicha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0ea644e7-354f-4d3f-a4ab-9fb499318696" ownerguid="0539de86-f407-4b3d-b1b8-028822fb9f26"> -<ExampleWords> -<AUni ws="en">repeat, repeat yourself, say again, iterate, recapitulate, reiterate, reaffirm</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to saying something a second time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0ea908db-77cf-487e-b746-2fa80887298d" ownerguid="962941b2-66bd-437f-aadc-b1921bcae5b4"> -<ExampleWords> -<AUni ws="en">poison (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to giving someone poison?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0ea925c8-864b-470d-9a96-ccc0547a713b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuatru; cuatro</AUni> -<AUni ws="qvm-x-acl">cuatru; cuatru; cuatro</AUni> -<AUni ws="qvm-x-akh">cuatru; cuatro</AUni> -<AUni ws="qvm-x-akl">cuatru; cuatru; cuatro</AUni> -<AUni ws="qvm-x-ame">cuatru; cuatro</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuatro</AUni> -<AUni ws="qvm-x-acl">+cuatro</AUni> -<AUni ws="qvm-x-akh">+cuatro</AUni> -<AUni ws="qvm-x-akl">+cuatro</AUni> -<AUni ws="qvm-x-ame">+cuatro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.234" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="765f9291-0a8c-4d38-8b6b-8bf7b942e921" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuatro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="54d1c377-581b-4232-8de5-ea802a69d134" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b061694b-7355-4be1-b92a-9849d752991b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuatro 
\entryTyp root 
\gENG four 
\gSPN cuatro 
\e +cuatro 
\c N0 
\ach cuatru / ~_# 
\ach cuatro / _# 
\akh cuatru / ~_# 
\akh cuatro / _# 
\acl cuatru / ~_# 
\acl cuatru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cuatro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cuatru / ~_# 
\akl cuatru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cuatro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cuatru / ~_# 
\ame cuatro / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="0ea972e6-0904-41bb-977b-7ee45ab4b91b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">japuy</AUni> -<AUni ws="qvm-x-acl">japuy</AUni> -<AUni ws="qvm-x-akh">japuy</AUni> -<AUni ws="qvm-x-akl">japuy</AUni> -<AUni ws="qvm-x-ame">hapuy</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.578" /> -<DateModified val="2022-10-16 15:27:47.114" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ebd07537-e2a5-4690-947c-2a1622098650" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">SIM4</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2790cea0-6fc1-4d02-ae0a-c73ee8e5d03e" t="o" /> -<objsur guid="317d050e-253e-445f-bb1c-45ec554f114e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3d251cfd-3ea3-4b4e-9916-be945e4baa40" t="o" /> -<objsur guid="e18d66ed-cc6c-4a28-9623-c40a915066b8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx SIM4 
\entryTyp suffix 
\gENG SIM4 
\gSPN SIM4 
\e SIM4 
\c N0/N0 
\o 000 
\mp NeverChanged 
\ach japuy 
\akh japuy 
\acl japuy 
\akl japuy 
\ame hapuy 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="0eafa1d2-d5ed-4cab-a828-d840c4608534" ownerguid="717fc03c-3d1e-47c0-914f-d78cf37926e7"> -<Form> -<AUni ws="qvm-x-ach">waylinsha</AUni> -<AUni ws="qvm-x-acl">waylinsha</AUni> -<AUni ws="qvm-x-akh">waylinsha</AUni> -<AUni ws="qvm-x-akl">waylinsha</AUni> -<AUni ws="qvm-x-ame">waylinsha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="0eaffa7e-9658-49e7-9c85-b49badb86b73" ownerguid="b456e020-211a-458d-9d0f-59b89e938b3f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="bd8ae24c-0fc4-4b80-8aa6-1ca3f201a9c2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0eb13bd5-2809-4098-bc53-00e844ce6d18" ownerguid="0a37e7d5-b10e-4f1d-baf0-e71668425b3e"> -<ExampleWords> -<AUni ws="en">head, abdomen, thorax, carapace, exoskeleton, wing, horn, stinger, sting, segment, antenna, feeler, forewing, hind wing, proboscis, compound eye, spinneret</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the parts of insects?</AUni> -</Question> -</rt> -<rt class="MoInflAffixSlot" guid="0eb1d65f-6889-40e2-a5ee-818feedf259c" ownerguid="86ff66f6-0774-407a-a0dc-3eeaf873daf7"> -<Name> -<AUni ws="en">reflexive</AUni> -</Name> -<Optional val="True" /> -</rt> -<rt class="CmDomainQ" guid="0eb2012f-f78f-4398-a91b-b33fa77576b0" ownerguid="79f3b53a-eb56-4188-87f8-48317f76e7ce"> -<ExampleWords> -<AUni ws="en">asceticism</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the general practice of denying oneself something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0eb54edd-151d-46d9-946a-a60e161e7e61" ownerguid="ffcc57f8-6c6d-4bf4-85be-9220ca7c739d"> -<ExampleWords> -<AUni ws="en">live with, cohabit, cohabitation, common-law marriage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to living with someone without being married?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0eb60765-f78f-4216-b94b-b72a65c999fb" ownerguid="c0f4715e-55c9-4379-ab6f-ad561a5e7151"> -<ExampleWords> -<AUni ws="en">presumption, credulous, gullible, superstitious, unquestioning</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to putting too much faith in something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0eb9ad89-62b1-4032-a9a0-66d396ddb503" ownerguid="cba3b774-c8be-441f-ae3f-f3d6c83e5274"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0ebdb9cc-da70-497c-8c3d-4c586889c286" ownerguid="0b0801a3-8a0c-40ea-bf41-07df80bd0d5f"> -<ExampleWords> -<AUni ws="en">sieve, press</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What tools are used to remove water from things?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="0ebf9fcc-ee38-4f5f-ab5e-c76e199ef7ae" ownerguid="c6c772af-7b6b-4393-b0da-5b4a329d3426"> -<Abbreviation> -<AUni ws="en">8.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.567" /> -<DateModified val="2022-9-23 16:55:8.567" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words and affixes that indicate that there is more than one of something. Some languages, such as Indo-European languages, indicate plural with an affix. Other languages, such as Austronesian languages, use a separate word. Some languages also have words or affixes that indicate that there are two of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Plural</AUni> -</Name> -<Questions> -<objsur guid="fd8bad22-4c4b-4423-a91a-742b85f8748d" t="o" /> -<objsur guid="83e96a2d-5e9a-4a5c-ae96-aba6460c6d83" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="1b6b0c12-9ecd-45cb-bb0e-0dadb435eddf" t="o" /> -<objsur guid="36934fab-c0ed-4f25-a387-e1cca26b2401" t="o" /> -<objsur guid="d8ea1902-5fa6-4fda-b7b2-1f9c301cdc5f" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="0ec25a63-c01f-46bb-a4f0-85d4a67d9bdd" ownerguid="47feff41-ef58-4fb6-bb10-35d3c5c721fe"> -<Form> -<AUni ws="qvm-x-ach">itsug</AUni> -<AUni ws="qvm-x-acl">itsog</AUni> -<AUni ws="qvm-x-akh">itsuq</AUni> -<AUni ws="qvm-x-akl">itsoq</AUni> -<AUni ws="qvm-x-ame">itsuq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="0ec3ff25-451c-4a32-b57c-14e2282b9c87" ownerguid="0150ade5-3f84-412b-95fb-ba7b54ecbbce"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="0ec65031-ac0e-47ef-8694-632291f30b01" ownerguid="8aec2883-84da-46ea-a384-95ded5f89ce0"> -<Form> -<AUni ws="qvm-x-ach">gori</AUni> -<AUni ws="qvm-x-acl">gori; gori; gore</AUni> -<AUni ws="qvm-x-akh">qori</AUni> -<AUni ws="qvm-x-akl">qori; qori; qore</AUni> -<AUni ws="qvm-x-ame">quri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0ec73911-b05f-43ee-a7f4-0591bb18343d" ownerguid="40590157-9412-4558-b0f7-311867b649cc"> -<ExampleWords> -<AUni ws="en">swing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to causing something to move in a circle or curve?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0ed28b14-b87b-4056-9760-f53b39b5e385" ownerguid="62efa729-0920-4933-93f3-b6a48519a5c7"> -<ExampleWords> -<AUni ws="en">penance, amends</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something a person does to atone for a sin?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0ed57779-3193-4e95-9a00-f82aced17135" ownerguid="f5fd90f4-fdc6-44a8-88bd-730cdbf5bd4b"> -<Form> -<AUni ws="qvm-x-ach">fracasa</AUni> -<AUni ws="qvm-x-acl">fracasa</AUni> -<AUni ws="qvm-x-akh">fracasa</AUni> -<AUni ws="qvm-x-akl">fracasa</AUni> -<AUni ws="qvm-x-ame">fracasa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0ed5b243-11cd-4441-90e2-d28a3ab416a0" ownerguid="3dba39bc-48f2-4bcb-9357-c8fbed6922ca"> -<ExampleWords> -<AUni ws="en">keep, fulfill, make good</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to doing what you promised?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="0eda983b-633e-4b11-b5c8-28be60067782" ownerguid="3dd684e6-75d9-41f4-aaa3-fb0cb3c7d400"> -<Abbreviation> -<AUni ws="en">4.4.4.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to risk--exposing oneself or something to danger.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>21B Expose Oneself to Danger</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Risk</AUni> -</Name> -<Questions> -<objsur guid="598e2b64-9de4-47e2-a9ff-d1f87fd8a26c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoInflAffMsa" guid="0edb9e55-e4f3-4b8e-a173-41ce0777e08a" ownerguid="895e74fd-2855-4235-9028-0e3c722a0fb9"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="cc7bce64-81a2-4c23-9cb0-ba8f7d274837" t="r" /> -</Slots> -</rt> -<rt class="LexSense" guid="0edcbdb0-4a65-47f0-8dd5-28cdab2eb0be" ownerguid="e76da56d-55db-4081-a496-0566316f8466"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">earring</AUni> -<AUni ws="es">arete</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="56c24278-e4f5-46bc-95ac-d7025655ee5c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="0eddf999-3481-44ff-9c43-014f612a556c" ownerguid="7f576a15-fb83-4c35-a708-7d10404522ba"> -<Form> -<AUni ws="qvm-x-ach">wayrush</AUni> -<AUni ws="qvm-x-acl">wayrush</AUni> -<AUni ws="qvm-x-akh">wayrush</AUni> -<AUni ws="qvm-x-akl">wayrush</AUni> -<AUni ws="qvm-x-ame">wayrush</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="0ede51d2-69bd-411e-97f9-da0d5118bbff" ownerguid="bd7d0c9c-791e-4c34-b9ed-ebddad8f9724"> -<Abbreviation> -<AUni ws="en">4.7.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to condemning someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Condemn, find guilty</AUni> -</Name> -<Questions> -<objsur guid="b73217ee-97db-4bac-8abe-a44ba10cf6c2" t="o" /> -<objsur guid="d38e45ba-509e-4283-aef5-ee4528164d38" t="o" /> -<objsur guid="9cf244a3-639e-4aee-9ff6-8b0e95c7b7ad" t="o" /> -<objsur guid="03c043ae-e611-4f95-be91-86b15e78fffc" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="0ee10792-c7d2-406d-9521-8734059c784e" ownerguid="f9ffbf37-9b65-4de7-a303-c1ef823a75f7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.gang.fight</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="286a091f-f599-4c7a-a736-e8cf10be2d78" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="0ee2d1d7-fea4-4c10-ac31-893040d1f75e" ownerguid="88f7c231-4cc4-4066-af15-71f04def22aa"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 74.13 Lamarcho tag waräcuypa umantapis shatorgayquimi.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="0ee46d69-e728-4945-a143-9bf1d9f0e03f" ownerguid="90f57cb3-1a42-4c45-808d-e9909d9396bd"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">gargu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">gargu; gargo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qarqu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qarqu; qarqo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qarqu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="73ffd175-ad05-4d66-af47-2c487b1126eb" t="r" /> -</Morph> -<Msa> -<objsur guid="6da469f9-1f0c-4335-acc0-6c49a7bb5c21" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="0ee5b933-f1ab-485f-894a-51fe239cb726" ownerguid="025da6f4-b1b6-423a-8c0f-b324f531a6f1"> -<Abbreviation> -<AUni ws="en">1.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.978" /> -<DateModified val="2022-9-23 16:55:7.978" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for trees--flowering plants with roots, stems, and leaves, which are large and have a wooden trunk (Phylum Spermatophyta, Subdivision Angiospermae). Also include the evergreen trees (Phylum Spermatophyta, Subdivision Gymnospermae). Evergreen trees do not have flowers, but have cone like fruits (pinecones) that contain seeds. Their leaves are shaped like needles and are retained for over a year.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>3B Trees</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Tree</AUni> -</Name> -<OcmCodes> -<Uni>137d Trees and wood</Uni> -</OcmCodes> -<Questions> -<objsur guid="1aa81139-728d-48cb-8039-5e50dfe9924d" t="o" /> -<objsur guid="3dc65a87-af50-4d43-b6dd-1ae1e8a6da06" t="o" /> -<objsur guid="84e7280c-bad4-4a29-b559-314dc805ea05" t="o" /> -<objsur guid="c3da300a-6c14-4c81-9df2-513fbe798c3a" t="o" /> -<objsur guid="638ca42b-918d-450f-ad61-074b9037f2c4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="0ee6ce44-0ff0-4677-ac57-7f3699ad8d79" ownerguid="719ddef3-f5fa-4ae5-a51b-a3457e46088e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">owner</AUni> -<AUni ws="es">dueño</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ba02296d-f69e-4c43-8ac3-24edb95a1a2f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="0eeb062f-1ee4-425b-a2c1-18feb55c4269"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shuyu</AUni> -<AUni ws="qvm-x-acl">shuyu; shuyu; shuyo</AUni> -<AUni ws="qvm-x-akh">shuyu</AUni> -<AUni ws="qvm-x-akl">shuyu; shuyu; shuyo</AUni> -<AUni ws="qvm-x-ame">shuyu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shuyu.n</AUni> -<AUni ws="qvm-x-acl">*shuyu.n</AUni> -<AUni ws="qvm-x-akh">*shuyu.n</AUni> -<AUni ws="qvm-x-akl">*shuyu.n</AUni> -<AUni ws="qvm-x-ame">*shuyu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.673" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a5cd5d27-e792-49d6-92b5-e134f46c2508" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shuyu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2c1ab268-3b1f-4f5a-b180-6e065dc20729" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="68766855-f562-4c01-baa5-c9ccea787a9b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shuyu.n 
\entryTyp root 
\gENG be.another.color 
\gSPN quedar.otro.color 
\e *shuyu.n 
\c N0 
\ach shuyu 
\akh shuyu 
\acl shuyu / _# 
\acl shuyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shuyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shuyu / _# 
\akl shuyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shuyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shuyu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="0eeea224-1e76-4482-b357-08b14ac65edb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuña:du</AUni> -<AUni ws="qvm-x-acl">cuña:du; cuña:du; cuña:do</AUni> -<AUni ws="qvm-x-akh">cuña:du</AUni> -<AUni ws="qvm-x-akl">cuña:du; cuña:du; cuña:do</AUni> -<AUni ws="qvm-x-ame">cuña:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuñado</AUni> -<AUni ws="qvm-x-acl">+cuñado</AUni> -<AUni ws="qvm-x-akh">+cuñado</AUni> -<AUni ws="qvm-x-akl">+cuñado</AUni> -<AUni ws="qvm-x-ame">+cuñado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.254" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="461f32e5-f4f8-4e71-a1c2-b0da01c66501" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuñado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aad50ac8-9851-4cd8-8e90-61ec5f7a323c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="eaf8be65-d924-4ad1-af81-c7b66c87584c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuñado 
\entryTyp root 
\gENG brother.in.law 
\gSPN cuñado 
\e +cuñado 
\c N0 
\ach cuña:du 
\akh cuña:du 
\acl cuña:du / _# 
\acl cuña:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cuña:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cuña:du / _# 
\akl cuña:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cuña:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cuña:du</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0eeed4b0-bd2b-4aa1-8e1d-450ab9d18cd6" ownerguid="6187e620-89bd-4b9d-9896-0c0c788e7740"> -<ExampleWords> -<AUni ws="en">match</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a game?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0eef2c84-0012-4c68-927f-9c0c707bf738" ownerguid="153b30a4-afac-4e88-9720-619551126cc0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="4d78f5c6-64bd-428e-aa27-8059b2567da0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="0eef36c2-0731-4f8f-b14c-f5cf7a644084" ownerguid="a34da010-25fd-4e68-9b19-4c09e51be7ec"> -<Form> -<AUni ws="qvm-x-ach">prësu</AUni> -<AUni ws="qvm-x-acl">prësu; prësu; prëso</AUni> -<AUni ws="qvm-x-akh">prësu</AUni> -<AUni ws="qvm-x-akl">prësu; prësu; prëso</AUni> -<AUni ws="qvm-x-ame">prësu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="Segment" guid="0eef6c72-18db-4d3d-af68-57ebeb5b672a" ownerguid="72716f79-42bb-44a0-bd13-f9daba74de2e"> -<Analyses> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="fa7aeb71-200a-4a5d-9436-13faa1972fea" t="r" /> -<objsur guid="25651c34-3e31-419d-86b5-cda6907f0a4f" t="r" /> -<objsur guid="7beb2bdf-1e77-4955-99ec-39f893293020" t="r" /> -<objsur guid="a85a5670-81ba-47b9-8443-95e8be60ebec" t="r" /> -<objsur guid="a634fa54-71cd-440e-8d33-b886ebea1acf" t="r" /> -<objsur guid="4fccec2d-58a4-466f-a087-a79d6bf13b57" t="r" /> -<objsur guid="9126e753-059a-485a-bfcb-3c3cb22af5c5" t="r" /> -<objsur guid="6c3a760e-8f5b-495f-9b92-a80aa2b4e8f8" t="r" /> -<objsur guid="26ca52f1-b5e7-41e8-aa2e-cf2572524687" t="r" /> -</Analyses> -<BeginOffset val="16" /> -</rt> -<rt class="CmSemanticDomain" guid="0eefa07a-e0a3-49e3-aeb4-62f1eafd8e23" ownerguid="aab82dc7-de9f-44b3-845e-0c926f47cfb6"> -<Abbreviation> -<AUni ws="en">9.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this section for words that join semantically similar events into one sentence. Each sentence is actually reporting two or more situations, which may differ in one or two respects. The words to be included in these domains indicate that two situations are being reported, or mark the differences between the two situations.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Semantically similar events</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="42b21a6e-e2f3-4468-9e92-49ee4de6909a" t="o" /> -<objsur guid="3a545732-145a-4034-8f72-e08d752cb4d4" t="o" /> -<objsur guid="6903b844-79be-4e9d-a3c8-1ca2a385bf4f" t="o" /> -<objsur guid="d39b2432-87d5-4f3e-8101-de06001b42d6" t="o" /> -<objsur guid="52f9a8f0-d97d-4aa1-8c2c-d907d7cb83fc" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="0ef5507f-ea10-4b62-aa6e-8c7e46218670" ownerguid="a84bd6de-0a66-4e92-86cb-a91d9e9ed96e"> -<Form> -<AUni ws="qvm-x-ach">urdïda</AUni> -<AUni ws="qvm-x-acl">urdïda</AUni> -<AUni ws="qvm-x-akh">urdïda</AUni> -<AUni ws="qvm-x-akl">urdïda</AUni> -<AUni ws="qvm-x-ame">urdïda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="0ef67223-735f-4593-bee5-1aacd8a1383e" ownerguid="a9c67c41-699d-4857-9dbb-ec3ab8a5a28b"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="0efb47cd-ef8a-46f2-8191-6db6ae277b05" ownerguid="a8915eb1-7c23-441b-8d45-d7ce8dbff520"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">employ</AUni> -<AUni ws="es">emplear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="32c03dea-c4d1-468e-baf1-12c41ac62010" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0efbdda7-2850-4e84-9b7a-5814be441220" ownerguid="2e30f02d-d1e6-489c-a1fb-8b9fb6ecd819"> -<ExampleWords> -<AUni ws="en">disappointing, be a disappointment, be an anticlimax, be a letdown, not live up to expectations, not all it's cracked up to be, discouraging, disheartening, frustrating, not up to par</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that causes someone to feel disappointed?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0efc516b-db2c-46f9-a616-48fc0cabf8a8" ownerguid="b553e989-2b2a-4b1e-a987-ae75f3862501"> -<ExampleWords> -<AUni ws="en">unconcern</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the quality of being uncaring?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0efcb855-c0cb-43f4-ab48-329797930c11" ownerguid="42133f78-9860-4bb7-8083-5559083f0714"> -<ExampleWords> -<AUni ws="en">gamble, gambling, gaming, bet, place a bet, wager</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to gambling?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="0efe342d-4969-4bd1-95be-556f6c62adfc" ownerguid="bce3f390-452c-4ca9-8c36-5fbcfd6b4755"> -<Abbreviation> -<AUni ws="en">4.3.8.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.243" /> -<DateModified val="2022-9-23 16:55:8.243" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to conforming to the behavior of others--to try to behave the same way as other people, or to try to behave the way other people want you to act.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Conform</AUni> -</Name> -<Questions> -<objsur guid="c9f700da-c64f-4d6d-a095-8b0bfe4927bf" t="o" /> -<objsur guid="e95ecf16-81c4-4df5-b698-6b8c4ad0358b" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="6a6f0748-a6e9-4d64-b14e-543bb6ec2ec8" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="0eff3206-bbf3-45fd-bf57-dea82710c34d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cisni; cisne</AUni> -<AUni ws="qvm-x-acl">cisni; cisni; cisne</AUni> -<AUni ws="qvm-x-akh">cisni; cisne</AUni> -<AUni ws="qvm-x-akl">cisni; cisni; cisne</AUni> -<AUni ws="qvm-x-ame">cisni; cisne</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cisne</AUni> -<AUni ws="qvm-x-acl">+cisne</AUni> -<AUni ws="qvm-x-akh">+cisne</AUni> -<AUni ws="qvm-x-akl">+cisne</AUni> -<AUni ws="qvm-x-ame">+cisne</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.122" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="54378a08-0e2d-4ec3-842a-617f6b605141" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cisne</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7c35fe32-48be-41ce-8a75-5860a30b5e24" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="53451ca1-90c7-4c94-a620-597831689361" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cisne 
\entryTyp root 
\gENG swan 
\gSPN 
\e +cisne 
\c N0 
\mp +FinalI 
\ach cisni / ~_# 
\ach cisne / _# 
\akh cisni / ~_# 
\akh cisne / _# 
\acl cisni / ~_# 
\acl cisni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cisne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cisni / ~_# 
\akl cisni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cisne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cisni / ~_# 
\ame cisne / _# 
\i Lev 11</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0f04408f-b53d-4954-b744-063e036bb760" ownerguid="a0d073df-d413-4dfd-9ba1-c3c68f126d90"> -<ExampleWords> -<AUni ws="en">meteorite, meteor crater</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words are used for when a meteor hits the earth?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="0f07adb7-4387-4723-9800-8362e825ad45" ownerguid="f899802d-bd32-427f-a101-c84219f7e14e"> -<Abbreviation> -<AUni ws="en">1.2.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.947" /> -<DateModified val="2022-9-23 16:55:7.947" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to rock.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>2E Earth, Mud, Sand, Rock</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Rock</AUni> -</Name> -<Questions> -<objsur guid="1d6e4845-1aa5-4e73-addf-776a2d5aaf83" t="o" /> -<objsur guid="0b3921f6-4a98-4d02-a6a4-01c32d33b92b" t="o" /> -<objsur guid="f36b2671-0158-4cd9-b9bb-f6e105020dbf" t="o" /> -<objsur guid="bf40cde8-9446-4f31-904a-a23fc8b41fa7" t="o" /> -<objsur guid="6b0156c5-f2a9-41c8-b2d3-f73d0561f50f" t="o" /> -<objsur guid="0097820b-43bb-4689-81c1-f1ee07c8c77d" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="084e2568-3f54-4eab-b436-8a87fb466659" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="0f082cc7-15f1-4300-999b-bf80f0a09fd6" ownerguid="49aa89f2-2022-4213-845e-dbbb4b53476c"> -<ExampleWords> -<AUni ws="en">end, ending, finish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to the last part of something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0f0ad2bc-1ce3-43c6-9d79-e5ba477bff9e" ownerguid="c7ff2590-0a87-42f0-a898-fba285de61a7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="0f0be1d9-19ca-48d6-a3e6-01ae3b5cd60c" ownerguid="f5127d84-1119-44cb-b66a-9c44e6c370c6"> -<Form> -<AUni ws="qvm-x-ach">bëta</AUni> -<AUni ws="qvm-x-acl">bëta</AUni> -<AUni ws="qvm-x-akh">bëta</AUni> -<AUni ws="qvm-x-akl">bëta</AUni> -<AUni ws="qvm-x-ame">bëta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0f0cb1bb-04ab-4643-83ba-b931cbecc8a2" ownerguid="e2806bed-b450-4469-900a-1afa7ded2224"> -<ExampleWords> -<AUni ws="en">outside (n), exterior, surface, cover, covering, skin, shell</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the outside part of something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0f0f49ec-5b4c-4b30-86d9-ee04d569df72" ownerguid="bf0b24d2-4bd6-4e9c-8775-a623ace8db56"> -<ExampleWords> -<AUni ws="en">spicy, flavorful, seasoned</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe food to which spice has been added?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0f1053b2-bdeb-46ae-bf24-930edb8f79df" ownerguid="6712385a-6740-4f28-8bbe-8615ea17116b"> -<ExampleWords> -<AUni ws="en">regular, regularly, at regular intervals, every day, daily, be punctuated by, with great regularity, routine, like clockwork</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something happens regularly?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0f11adad-bb3a-4588-86f4-de3403c82bed" ownerguid="019e3b64-c68a-4b19-bec5-a22f4eb88f48"> -<ExampleWords> -<AUni ws="en">basket, mat, net, hat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What things are woven?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="0f136428-301e-4da4-8e05-0ff3a6d5ee94" ownerguid="e19e273c-0aed-49fd-818b-cae0c5228de7"> -<Form> -<AUni ws="qvm-x-ach">nyalcu</AUni> -<AUni ws="qvm-x-acl">nyalcu</AUni> -<AUni ws="qvm-x-akh">nyalku</AUni> -<AUni ws="qvm-x-akl">nyalku</AUni> -<AUni ws="qvm-x-ame">nyalku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="0f1509b1-36b3-402f-a947-c31d57738759"> -<Analyses> -<objsur guid="ed743f9d-97cd-4e6c-80dc-f5c1de2d836f" t="o" /> -</Analyses> -<Checksum val="932319521" /> -<Form> -<AUni ws="qvm-x-akh">väsuwan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="0f1780e7-1617-47ed-906c-480926fa2c8d" ownerguid="08c05e00-9660-4491-af2f-a05fab27ef39"> -<ExampleWords> -<AUni ws="en">lean, wiry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe someone who is thin and strong?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0f18160f-4978-4952-9871-915195f9c695" ownerguid="6cc0a0cb-41c5-4378-b254-de5460846a10"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="fbdb4bf9-3b4b-4191-8602-00e2b672ad90" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">justice</AUni> -<AUni ws="es">justicia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1f24d51d-13b2-4fca-82bc-3044bd814118" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="0f181615-b802-4ef4-887e-23b00a1a9169" ownerguid="69b19738-1f89-4839-ab20-6054675f394d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="0f1cd745-0def-4941-84e2-4c035a69f529" ownerguid="84b6239a-3aa8-4a5c-99e6-506cf68a2ad8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="0f1d6478-3f28-47b4-99a5-3e7270b454ad"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mantu; manto</AUni> -<AUni ws="qvm-x-acl">mantu; mantu; manto</AUni> -<AUni ws="qvm-x-akh">mantu; manto</AUni> -<AUni ws="qvm-x-akl">mantu; mantu; manto</AUni> -<AUni ws="qvm-x-ame">mantu; manto</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+manto</AUni> -<AUni ws="qvm-x-acl">+manto</AUni> -<AUni ws="qvm-x-akh">+manto</AUni> -<AUni ws="qvm-x-akl">+manto</AUni> -<AUni ws="qvm-x-ame">+manto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.325" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7af01344-cd6f-433d-8d12-0b5cb9b38973" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+manto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ba95a7ad-90d5-443a-b60f-87b4a8ef5de6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="db4bbf55-558f-4088-b02f-83e8942631a5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +manto 
\entryTyp root 
\gENG cloak 
\gSPN manto 
\e +manto 
\c N0 
\ach mantu / ~_# 
\ach manto / _# 
\akh mantu / ~_# 
\akh manto / _# 
\acl mantu / ~_# 
\acl mantu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl manto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mantu / ~_# 
\akl mantu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl manto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mantu / ~_# 
\ame manto / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0f1e3e0b-b441-4982-9fbd-ec5976893cbc" ownerguid="1f608e18-958e-4bb3-a977-04879fb5acd5"> -<ExampleWords> -<AUni ws="en">tuna, trout, sardines</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What types of fish are eaten?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0f1f3d3b-c043-40d3-8961-3d296c551b9b" ownerguid="26bc089a-a989-4763-be6c-05d127d1c0e8"> -<ExampleWords> -<AUni ws="en">accidental, unintentional, unconscious, involuntary</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that is not done deliberately?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0f20536c-9b9a-4ab4-bb81-e87d8c68b7e4" ownerguid="35e61ec4-0542-4583-b5da-0aa5e31a35aa"> -<ExampleWords> -<AUni ws="en">reproduce, breed, reproduction</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the entire process of producing a baby?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0f219efd-e161-4827-b87b-7c4774247fce"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gra:tis</AUni> -<AUni ws="qvm-x-acl">gra:tis</AUni> -<AUni ws="qvm-x-akh">gra:tis</AUni> -<AUni ws="qvm-x-akl">gra:tis</AUni> -<AUni ws="qvm-x-ame">gra:tis</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gratis</AUni> -<AUni ws="qvm-x-acl">+gratis</AUni> -<AUni ws="qvm-x-akh">+gratis</AUni> -<AUni ws="qvm-x-akl">+gratis</AUni> -<AUni ws="qvm-x-ame">+gratis</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.629" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eaa05374-3d41-4f01-90a7-2261aa6056bd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gratis</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7f002f17-579d-45c3-a051-df01702e3705" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f0472a32-1715-43c1-82e1-f901ee87bf68" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gratis 
\entryTyp root 
\gENG free 
\gSPN 
\e +gratis 
\c N0 
\mp +FinalC 
\ach gra:tis 
\akh gra:tis 
\acl gra:tis 
\akl gra:tis 
\ame gra:tis 
\i Num 11.5 Egiptuchöga grätismi micapäcog cantsi pescäduta.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="0f23a4fb-4d22-431d-a9aa-80592bd2e095" ownerguid="94ff584a-197a-4ac7-b3ba-cc8538172c6a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">material</AUni> -<AUni ws="es">tela</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ae0b1748-91f6-415e-837f-2c10928e43d3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="0f23f3b8-8ed9-4670-8878-9ed7223a46d5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">certifica</AUni> -<AUni ws="qvm-x-acl">certifica</AUni> -<AUni ws="qvm-x-akh">certifica</AUni> -<AUni ws="qvm-x-akl">certifica</AUni> -<AUni ws="qvm-x-ame">certifica</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+certificar</AUni> -<AUni ws="qvm-x-acl">+certificar</AUni> -<AUni ws="qvm-x-akh">+certificar</AUni> -<AUni ws="qvm-x-akl">+certificar</AUni> -<AUni ws="qvm-x-ame">+certificar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.112" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="67b56c05-d0b7-430a-8141-98917e192288" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+certificar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1ac1e89a-e7a1-4892-be5b-67bdb71696b3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a79271db-1728-4d0f-9f27-9a01a44e8183" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +certificar 
\entryTyp root 
\gENG certify 
\gSPN certificar 
\e +certificar 
\c V1 
\ach certifica 
\akh certifica 
\acl certifica 
\akl certifica 
\ame certifica</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="0f2c7488-6e5e-41f8-874e-97a31e81a69e" ownerguid="f1b1ee7f-67e4-4471-b37b-34a4186bfbf4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="0f2d9d38-80e7-4819-889d-2020243c8a7d" ownerguid="27b5a149-05a9-4663-bb4a-2592abb862ab"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">collect</AUni> -<AUni ws="es">juntar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="efa53d25-7889-421a-997d-0c8f2c34c3f3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0f2df570-2f31-4a4e-8665-d67349bd8af7" ownerguid="ff7e3abd-6810-4128-83c9-701b4925c2fe"> -<ExampleWords> -<AUni ws="en">arson, arsonist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to the crime of burning someone's house or field?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="0f2ec646-30b7-4fa2-b5e3-59c4845321d9" ownerguid="6a70d393-1181-48e5-ac69-114d61dd348b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="159a991e-f541-4881-a26c-da2402354a2d" t="o" /> -<objsur guid="2c6e8250-1515-446b-9f97-93ee2d876c6d" t="o" /> -<objsur guid="3cd5dbc4-34c8-4fb6-93b3-91f4f101398f" t="o" /> -<objsur guid="7b3ff23f-6509-47ab-a459-e623fb49a5bb" t="o" /> -<objsur guid="a9b9d13a-5b11-4687-ad9e-3ee8fbee6377" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="0f2ecec6-9a0f-4279-8e7f-82992bef3034" ownerguid="01441207-4935-49a5-a192-16d949f5606c"> -<ExampleWords> -<AUni ws="en">goal, score</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to the goal of a sport?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0f2fb84f-a9b5-451e-961b-478748c87cd3" ownerguid="12781062-ee36-4703-9bc0-cee4ed467ee5"> -<ExampleWords> -<AUni ws="en">reporter, editor, newsboy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who works for a newspaper?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0f301187-4dbb-48c0-95fe-26155414e2b1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">corti:na</AUni> -<AUni ws="qvm-x-acl">corti:na</AUni> -<AUni ws="qvm-x-akh">corti:na</AUni> -<AUni ws="qvm-x-akl">corti:na</AUni> -<AUni ws="qvm-x-ame">corti:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cortina</AUni> -<AUni ws="qvm-x-acl">+cortina</AUni> -<AUni ws="qvm-x-akh">+cortina</AUni> -<AUni ws="qvm-x-akl">+cortina</AUni> -<AUni ws="qvm-x-ame">+cortina</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.192" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1c402a63-d5e2-431a-b738-1e6f1db5e2d3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cortina</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4acfc53d-746e-47f6-840f-02bf6bb1845f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ab398660-9e4c-4863-a3f5-5f2ec19d4e34" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cortina 
\entryTyp root 
\gENG curtain 
\gSPN cortina 
\e +cortina 
\c N0 
\ach corti:na 
\akh corti:na 
\acl corti:na 
\akl corti:na 
\ame corti:na</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="0f323bee-0d8a-4564-9691-87880f55d910" ownerguid="b5b36c31-c56d-44b9-933c-fe0e62d80c25"> -<Abbreviation> -<AUni ws="en">4.3.4.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.233" /> -<DateModified val="2022-9-23 16:55:8.233" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to providing someone with what they need to live each day, such as providing for an elderly parent who can no longer earn what they need.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>35C Provide For, Support</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Provide for, support</AUni> -</Name> -<Questions> -<objsur guid="df910fde-fd16-4ccb-a44d-a15cad6fb54c" t="o" /> -<objsur guid="7c58f669-fb4a-4799-9938-c8cc0b1ee771" t="o" /> -<objsur guid="4e7b7921-61d4-409e-98b6-b96b77efbfa8" t="o" /> -<objsur guid="f4795234-7a12-4711-9f70-5b9a82c678df" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="0f3561c2-a153-4599-bfe1-322dec218488" ownerguid="7b99fdad-75ad-4feb-b422-380ab400d4d3"> -<Form> -<AUni ws="qvm-x-ach">motïvu</AUni> -<AUni ws="qvm-x-acl">motïvu; motïvu; motïvo</AUni> -<AUni ws="qvm-x-akh">motïvu</AUni> -<AUni ws="qvm-x-akl">motïvu; motïvu; motïvo</AUni> -<AUni ws="qvm-x-ame">motïvu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0f36682e-f5ae-4bc8-be93-b578c74f25d0" ownerguid="df9ee372-e92e-4f73-aac5-d36908497698"> -<ExampleWords> -<AUni ws="en">think</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to thinking?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="0f3891fb-e612-4c8d-b266-7a36a7307b7c" ownerguid="b32757c5-6fad-4203-a70c-015e7b5bd4d0"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="0f3bddd9-8ddf-44d3-ab06-5bf78496906d" ownerguid="721e7782-9add-41fa-a7cf-659d5ca33926"> -<ExampleWords> -<AUni ws="en">game</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a game?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0f40f3ad-a1d9-48d4-9f23-b6428ebf09b1" ownerguid="1133ad78-9ce9-46aa-b181-bb6f7a84a07b"> -<ExampleWords> -<AUni ws="en">nearness, closeness, proximity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to how near something is?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0f4113c9-0759-4a57-80c0-640b82663ffa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">calcula</AUni> -<AUni ws="qvm-x-acl">calcula</AUni> -<AUni ws="qvm-x-akh">calcula</AUni> -<AUni ws="qvm-x-akl">calcula</AUni> -<AUni ws="qvm-x-ame">calcula</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+calcular</AUni> -<AUni ws="qvm-x-acl">+calcular</AUni> -<AUni ws="qvm-x-akh">+calcular</AUni> -<AUni ws="qvm-x-akl">+calcular</AUni> -<AUni ws="qvm-x-ame">+calcular</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.21" /> -<DateModified val="2022-10-10 21:18:47.215" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f361047b-b57e-48e3-8c00-1775a87dfe3d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+calcular</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="97d699ee-fd7d-4eaa-a2ec-21e6adaaea6a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f50deb9a-65c0-4cc0-8a1c-6b6a66375cd2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +calcular 
\entryTyp root 
\gENG 
\gSPN 
\e +calcular 
\c V1 
\ach calcula 
\akh calcula 
\acl calcula 
\akl calcula 
\ame calcula</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="0f46cb61-7bb5-410d-abc5-4a75dc80a24f" ownerguid="541dfa10-bf97-4713-a534-9cbcc7f66bc9"> -<Abbreviation> -<AUni ws="en">3.2.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.103" /> -<DateModified val="2022-9-23 16:55:8.103" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to not believing something or someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Disbelief</AUni> -</Name> -<Questions> -<objsur guid="44856a69-e528-40d1-9dc5-06023eac5bf7" t="o" /> -<objsur guid="bb6240f3-6817-4458-9f9f-ce9e8b19a603" t="o" /> -<objsur guid="3fe843ca-542c-4c21-8684-3532a6d47eb9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="0f47839e-1873-471d-b8e0-e746362b2338" ownerguid="50ac28ab-7385-408f-b5eb-3e27b191fcf4"> -<ExampleWords> -<AUni ws="en">print</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to printing a book?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0f48e6d9-a451-4796-a269-093e624f904c" ownerguid="d212adf8-f182-4cab-9708-eb7ea2535c02"> -<Form> -<AUni ws="qvm-x-ach">uru</AUni> -<AUni ws="qvm-x-acl">uru; uru; uro</AUni> -<AUni ws="qvm-x-akh">uru</AUni> -<AUni ws="qvm-x-akl">uru; uru; uro</AUni> -<AUni ws="qvm-x-ame">uru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="0f48f555-3037-4237-b56c-e8ecbb845cb7" ownerguid="d06ed832-bbfb-40b9-aa3a-8c5b8b01621a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">lapa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">lapa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">lapa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">lapa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">lapa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="0655d4c4-dcff-4fca-931a-8964415a96b4" t="r" /> -</Morph> -<Msa> -<objsur guid="b16d0818-05dc-49f7-8cdf-889b0be5517e" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="0f4fbd52-3554-4c74-8484-885e27daada7" ownerguid="ff505092-6d88-4b5e-8095-04e471d7ad4c"> -<ExampleWords> -<AUni ws="en">come back to life, come back from the grave, come to life, resurrection</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to coming back to life?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0f51e815-a4a2-4e4d-92ad-2da4a79ed562" ownerguid="5d21b3f1-85d5-4999-af64-c4d0101050c0"> -<ExampleWords> -<AUni ws="en">humility, humbleness, condescension, debasement, lowliness, modesty, self-abasement, self-deprecation, timidity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the quality of being humble?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0f529f39-a942-46c3-83d4-e16c5d14ce81" ownerguid="ac9ee84f-f0c7-48b3-8e5a-b4c967112394"> -<ExampleWords> -<AUni ws="en">more, surpass</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something has more of a quality than another thing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0f55218d-f227-4b35-a283-002f8df22467" ownerguid="7162885d-1d35-4baf-97d6-7368fff7c723"> -<ExampleWords> -<AUni ws="en">loosen</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to making something loose?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="0f568473-880d-43bd-b5ce-590100fdcaf6" ownerguid="4098899a-0ad0-4d71-9f9f-b99d5ba2e0d5"> -<Abbreviation> -<AUni ws="en">5.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.306" /> -<DateModified val="2022-9-23 16:55:8.306" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to eating.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>23A Eat, Drink</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Eat</AUni> -</Name> -<OcmCodes> -<Uni>260 Food Consumption; 262 Diet; 264 Eating</Uni> -</OcmCodes> -<Questions> -<objsur guid="ab8f40ea-0cf0-4d08-b7c3-2e637fab2b3d" t="o" /> -<objsur guid="6d37a1b0-0408-4e3f-aaf6-ee10a11d59d0" t="o" /> -<objsur guid="bdb4bf9f-8e41-4578-8c8d-64d20d2195aa" t="o" /> -<objsur guid="1fa26fe3-7530-41c7-9802-afeaf0f8e8ab" t="o" /> -<objsur guid="82b3b419-a6ba-46b7-a4ca-d53fbeed9283" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="8242fc85-a703-4efa-a78a-0556a84e811e" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="8242fc85-a703-4efa-a78a-0556a84e811e" t="o" /> -<objsur guid="02d404d7-f3d7-492c-92a0-c6c9ff1a1908" t="o" /> -<objsur guid="08788e9a-93b8-4a2e-ab01-dea177f061e8" t="o" /> -<objsur guid="12b6934d-3a4a-4623-995f-865f401349ab" t="o" /> -<objsur guid="0a27d9d1-0f1f-475a-92a2-bbccf5b15f41" t="o" /> -<objsur guid="40ff5cee-31d8-4c89-a212-877347212a0e" t="o" /> -<objsur guid="6de42a33-35b2-49c6-b2c4-fa9c0c5094f0" t="o" /> -<objsur guid="b4e6c077-4f5e-44f3-8868-1f7ae3486585" t="o" /> -<objsur guid="b3d3dd7d-0cb1-4c25-bcae-cc402fcfa3ea" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="0f59f768-5efb-412e-932f-e41e0be7cbb7" ownerguid="5d21b3f1-85d5-4999-af64-c4d0101050c0"> -<ExampleWords> -<AUni ws="en">humble yourself</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to becoming humble?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0f5ba75e-b892-43ac-b336-126cda21c78c" ownerguid="e919878e-bdaf-423b-9db9-1d129ecc495d"> -<Form> -<AUni ws="qvm-x-ach">arquëru</AUni> -<AUni ws="qvm-x-acl">arquëru; arquëru; arquëro</AUni> -<AUni ws="qvm-x-akh">arquëru</AUni> -<AUni ws="qvm-x-akl">arquëru; arquëru; arquëro</AUni> -<AUni ws="qvm-x-ame">arquëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="0f5e31f3-86f4-444c-8e29-cd04eeff670c" ownerguid="0b0e7576-68df-4387-ab17-d5abdf53b979"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="0f61c1f8-abee-45c1-a8e6-768b61bc0194"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">demandu; demando</AUni> -<AUni ws="qvm-x-acl">demandu; demandu; demando</AUni> -<AUni ws="qvm-x-akh">demandu; demando</AUni> -<AUni ws="qvm-x-akl">demandu; demandu; demando</AUni> -<AUni ws="qvm-x-ame">demandu; demando</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+demando</AUni> -<AUni ws="qvm-x-acl">+demando</AUni> -<AUni ws="qvm-x-akh">+demando</AUni> -<AUni ws="qvm-x-akl">+demando</AUni> -<AUni ws="qvm-x-ame">+demando</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.376" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b8c56d0d-e2b8-4a4d-a088-1d569a1f5292" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+demando</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a03660f9-a791-428d-bbcb-eb44ca435f2b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="037e5af6-fcc1-42f1-9a00-381a8eb7fb7c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +demando 
\entryTyp root 
\gENG litigation 
\gSPN litigio 
\e +demando 
\c N0 
\ach demandu / ~_# 
\ach demando / _# 
\akh demandu / ~_# 
\akh demando / _# 
\acl demandu / ~_# 
\acl demandu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl demando +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl demandu / ~_# 
\akl demandu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl demando +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame demandu / ~_# 
\ame demando / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="0f631495-e758-444e-9249-d7f384f96f49"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mogu</AUni> -<AUni ws="qvm-x-acl">mogu; mogo</AUni> -<AUni ws="qvm-x-akh">moqu</AUni> -<AUni ws="qvm-x-akl">moqu; moqo</AUni> -<AUni ws="qvm-x-ame">muqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*muqu.v</AUni> -<AUni ws="qvm-x-acl">*muqu.v</AUni> -<AUni ws="qvm-x-akh">*muqu.v</AUni> -<AUni ws="qvm-x-akl">*muqu.v</AUni> -<AUni ws="qvm-x-ame">*muqu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.527" /> -<DateModified val="2022-10-10 21:18:47.204" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="92504ac5-e863-4551-9a8f-6754c429ca97" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*muqu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c55093e2-1f66-4207-9ab7-bb2d519bb976" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="47d3044a-1096-4936-b7f7-d686bc2b67ef" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *muqu.v 
\entryTyp root 
\gENG 
\gSPN 
\e *muqu.v 
\c V1 
\ach mogu 
\akh moqu 
\acl mogu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl mogo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl moqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl moqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame muqu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0f632f6d-3cf4-4a26-9f4c-ec243d126215" ownerguid="29a8ebbe-ebc4-4295-b6af-84331d019361"> -<ExampleWords> -<AUni ws="en">paragraph, text, section, chapter, point, construction, document, passage, portion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to a section of writing?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="0f63c9c3-1990-4368-9d6f-a2de548e1767"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">transitive</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="0f64603f-a81a-4fed-b0af-d2586002bba7" ownerguid="faea150f-b612-4fce-81b2-06d69eda8a9e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mu; mo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mu; mo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="45846476-db8b-4639-bef8-780e6651a907" t="r" /> -</Morph> -<Msa> -<objsur guid="84097b64-d9df-441f-a9d3-d11d4b9d9ea0" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="0f65f45f-0988-46d5-aa9e-d414a3a091d2" ownerguid="cc316ccb-1849-4610-8a0b-c99cbc9f2009"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="0f66f970-4598-4b80-92f4-1d5fe4f0a8ea"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cush</AUni> -<AUni ws="qvm-x-acl">cush</AUni> -<AUni ws="qvm-x-akh">kush</AUni> -<AUni ws="qvm-x-akl">kush</AUni> -<AUni ws="qvm-x-ame">kush</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.568" /> -<DateModified val="2022-10-16 14:53:7.549" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ce38e7a8-b04d-47f5-8106-658c879d89ff" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">QUERY</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="22f03c3e-bf6a-4c6c-b02f-eb8bd0398ff6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c2c80847-1f60-4670-9234-4e92cb23a0a2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx QUERY 
\entryTyp suffix 
\gENG QUERY 
\gSPN PRGN 
\e QUERY 
\c N0/NOSUFF V0/NOSUFF ONSHEV/NOSUFF R0/NOSUFF 
\o 220 
\mp +FinalC 
\ach cush 
\akh kush 
\acl cush 
\akl kush 
\ame kush 
\mcc QUERY / ~_ TOP 
\mcc QUERY / REF ADVSS1.2 ~_</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="0f688592-adec-4a06-9525-36250e7cf918" ownerguid="1cbd3bd0-ca9e-4a65-a993-b73f723448f8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sign</AUni> -<AUni ws="es">seña</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aa4367be-e5b3-4fd9-9ef1-4abaf47be85c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="0f6a898d-6286-4b97-b07d-97213b9c723a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bo:ti; bo:ti</AUni> -<AUni ws="qvm-x-acl">bo:ti; bo:ti; bo:te</AUni> -<AUni ws="qvm-x-akh">bo:ti; bo:ti</AUni> -<AUni ws="qvm-x-akl">bo:ti; bo:ti; bo:te</AUni> -<AUni ws="qvm-x-ame">bo:ti; bo:ti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bote</AUni> -<AUni ws="qvm-x-acl">+bote</AUni> -<AUni ws="qvm-x-akh">+bote</AUni> -<AUni ws="qvm-x-akl">+bote</AUni> -<AUni ws="qvm-x-ame">+bote</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.971" /> -<DateModified val="2022-10-10 21:18:47.215" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="288abc07-7343-4b64-8441-a84fbdc35786" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bote</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="67709fdd-843f-42e4-890f-952044efc57c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bcd78dd5-bf65-45a7-aa4b-5a4b3796bbe6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bote 
\entryTyp root 
\gENG 
\gSPN 
\e +bote 
\c N0 V1 
\mp +FinalI 
\ach bo:ti / _# 
\ach bo:ti / ~_# 
\akh bo:ti / _# 
\akh bo:ti / ~_# 
\acl bo:ti / _# 
\acl bo:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl bo:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl bo:ti / _# 
\akl bo:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl bo:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame bo:ti / _# 
\ame bo:ti / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0f6c93de-b869-4870-bd61-1a5338745147" ownerguid="94af09fa-ff23-433b-a881-ceaca87d9d18"> -<ExampleWords> -<AUni ws="en">unfit, not be in shape, be out of condition, be out of shape</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe someone who cannot work or run for a long time?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0f70c0b3-79b7-4a5a-b1b4-8fb1c2bd1b41"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lausa</AUni> -<AUni ws="qvm-x-acl">lausa</AUni> -<AUni ws="qvm-x-akh">lawsa</AUni> -<AUni ws="qvm-x-akl">lawsa</AUni> -<AUni ws="qvm-x-ame">lawsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llawsa.v</AUni> -<AUni ws="qvm-x-acl">*llawsa.v</AUni> -<AUni ws="qvm-x-akh">*llawsa.v</AUni> -<AUni ws="qvm-x-akl">*llawsa.v</AUni> -<AUni ws="qvm-x-ame">*llawsa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.184" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4b8684d7-7bad-4f06-bf31-fa13faa7b3c1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llawsa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5eceb3ae-ff49-4580-90c1-f98f9e2a9ee9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="986fc904-beca-4fed-b0b1-62719c43927f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llawsa.v 
\entryTyp root 
\gENG drool 
\gSPN salivar 
\e *llawsa.v 
\c V1 
\ach lausa 
\akh lawsa 
\acl lausa 
\akl lawsa 
\ame lawsa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="0f73685c-b28f-48dd-bb81-ee9c8297599e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waycu</AUni> -<AUni ws="qvm-x-acl">waycu; wayco</AUni> -<AUni ws="qvm-x-akh">wayku</AUni> -<AUni ws="qvm-x-akl">wayku; wayko</AUni> -<AUni ws="qvm-x-ame">wayku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wayku</AUni> -<AUni ws="qvm-x-acl">*wayku</AUni> -<AUni ws="qvm-x-akh">*wayku</AUni> -<AUni ws="qvm-x-akl">*wayku</AUni> -<AUni ws="qvm-x-ame">*wayku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.607" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3869901f-6ff8-43e8-8caf-f454d9eee33f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wayku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4bf731e2-1d65-4743-8e01-518efec45f71" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="09cb5203-bb61-46c4-9a6d-47a052f42798" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wayku 
\entryTyp root 
\gENG firewood 
\gSPN leña 
\e *wayku 
\c V1 
\ach waycu 
\akh wayku 
\acl waycu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wayco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wayku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wayko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wayku 
\i Deu 7.5 Asera ïdulunta y waquin ïduluncunatapis ninaman waycur ushapäcunqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="0f75284b-4dd3-4d2a-a8dd-24037c619026" ownerguid="8116dec0-458c-4cf1-ac9a-958dd9e6f22c"> -<Form> -<AUni ws="qvm-x-ach">lëchi; lëchi</AUni> -<AUni ws="qvm-x-acl">lëchi; lëchi; lëche</AUni> -<AUni ws="qvm-x-akh">lëchi; lëchi</AUni> -<AUni ws="qvm-x-akl">lëchi; lëchi; lëche</AUni> -<AUni ws="qvm-x-ame">lëchi; lëchi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0f780c3b-cb34-4634-9b4a-80ee3d8837f4" ownerguid="fc170f70-520e-4f3e-b8b8-98e4b898fd24"> -<ExampleWords> -<AUni ws="en">hem, fringe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the edge of a piece of clothing?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="0f7978d4-e3c5-4861-af2d-60952cac64c6" ownerguid="258864e5-cd2f-4494-827e-b4bfe8140288"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -</rt> -<rt class="CmDomainQ" guid="0f7a1731-1758-4e04-b671-f03f67071be9" ownerguid="0e79435b-f5ff-4061-81ff-49557ba2aed4"> -<ExampleWords> -<AUni ws="en">pair, partnership, association, fellowship</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a group of people who have a relationship?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0f7a8f2c-3e57-4cbd-8a9c-83754f0c6047"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ra:yu</AUni> -<AUni ws="qvm-x-acl">ra:yu; ra:yu; ra:yo</AUni> -<AUni ws="qvm-x-akh">ra:yu</AUni> -<AUni ws="qvm-x-akl">ra:yu; ra:yu; ra:yo</AUni> -<AUni ws="qvm-x-ame">ra:yu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rayo</AUni> -<AUni ws="qvm-x-acl">+rayo</AUni> -<AUni ws="qvm-x-akh">+rayo</AUni> -<AUni ws="qvm-x-akl">+rayo</AUni> -<AUni ws="qvm-x-ame">+rayo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.297" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="00797777-08b5-4ee0-b67a-861c2d9b99d1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rayo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="435986d6-f56d-4ff4-8f08-aa8b3c7c9d2b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4ab04a76-df28-447d-9e91-754c1d9acda6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rayo 
\entryTyp root 
\gENG thunder 
\gSPN trueno 
\e +rayo 
\c N0 
\ach ra:yu 
\akh ra:yu 
\acl ra:yu / _# 
\acl ra:yu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ra:yo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ra:yu / _# 
\akl ra:yu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ra:yo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ra:yu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="0f7c4d2f-ed94-49ba-a91c-fba36193f35a" ownerguid="67931f1c-9a0c-4d18-9762-e553c132256c"> -<Abbreviation> -<AUni ws="en">6.8.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the price of something--how much money you have to pay to buy something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Price</AUni> -</Name> -<OcmCodes> -<Uni>435 Price and Value</Uni> -</OcmCodes> -<Questions> -<objsur guid="a35c245c-4e56-4913-971f-7ff9f87277fe" t="o" /> -<objsur guid="fc93fe62-7183-4f59-9111-5520e0b02c89" t="o" /> -<objsur guid="d6177214-2f19-4747-a57d-65196403d35c" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="a755eaba-fce9-4a8b-b9cf-b3970a49f464" t="o" /> -<objsur guid="ecbdf1c5-9d7f-4446-b6a1-644a379a480b" t="o" /> -<objsur guid="ffe84c4f-8c38-4b84-ac36-e79ffadbd426" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="0f7ee493-6be0-475c-ad64-ce23f5e4db57" ownerguid="bf3d59c0-e5cb-4e99-883d-0db90420299c"> -<PartOfSpeech> -<objsur guid="30d07580-5052-4d91-bc24-469b8b2d7df9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="0f811fc0-c542-4848-86ee-eecfc91b03d2" ownerguid="80f812a9-671b-45eb-bb97-b687605766a2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">profeta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="12421298-40c5-40dc-a922-c38c6edfc3e4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="0f830bc8-478e-4816-8730-a7f92c420a69" ownerguid="7f6c81fb-02a4-415f-a363-fb11cc6b9254"> -<ExampleWords> -<AUni ws="en">divine, angelic, demonic, Satanic, devilish, diabolical, ghost like, ghoulish, monstrous, alien</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something like or related to a supernatural being?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="0f883eb0-00a1-44cc-b719-97fb6ec145d4" ownerguid="b32a39c4-43ff-4522-aed0-b2d5b8ad7157"> -<Abbreviation> -<AUni ws="en">5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.306" /> -<DateModified val="2022-9-23 16:55:8.306" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to daily life at home.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>46 Household Activities</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Daily life</AUni> -</Name> -<Questions> -<objsur guid="aee3c02f-0c54-4d50-a706-8af38fee9929" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="bd4a2527-f66c-4f48-922e-8b180bba8ef6" t="o" /> -<objsur guid="4098899a-0ad0-4d71-9f9f-b99d5ba2e0d5" t="o" /> -<objsur guid="8a11e609-e88d-4247-8c5f-224ddb20de10" t="o" /> -<objsur guid="15947464-997a-4f44-9a4b-ac4916e7e19b" t="o" /> -<objsur guid="ff7e3abd-6810-4128-83c9-701b4925c2fe" t="o" /> -<objsur guid="bbb897b5-f09b-4263-9f81-826ca61084f1" t="o" /> -<objsur guid="d502512c-966b-4752-8636-716fb29facfe" t="o" /> -<objsur guid="716b3e9d-9bb9-42a6-ba56-829b1c018b28" t="o" /> -<objsur guid="f07f867d-808f-4750-92ca-859aea59e58c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="0f8a70f6-9f12-4f2a-8c46-7cdd910d1194" ownerguid="7831223b-e5ed-4186-a321-94e9ae72a27d"> -<ExampleWords> -<AUni ws="en">pelt, stone, bombard, shower</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to throwing things at someone?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0f8b8b06-496c-4ea0-96eb-64830a570dae" ownerguid="9e31b57d-e54b-49e0-b2d9-81938449f024"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cigarrette</AUni> -<AUni ws="es">cigarro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fc54f417-e803-4ead-969d-9af9582c5771" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="0f8e72a1-5b5c-49aa-a346-77c205ed0b1d" ownerguid="724a3e70-64f3-4124-a6ff-9f2cb0e69f1b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">answer</AUni> -<AUni ws="es">respuesta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="794d6986-4845-484b-99f7-300bc034d898" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="0f8fce3e-7aeb-49f5-ab43-fb6dd8e148e1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shenga</AUni> -<AUni ws="qvm-x-acl">shenga</AUni> -<AUni ws="qvm-x-akh">shenqa</AUni> -<AUni ws="qvm-x-akl">shenqa</AUni> -<AUni ws="qvm-x-ame">shinqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shinqa.v</AUni> -<AUni ws="qvm-x-acl">*shinqa.v</AUni> -<AUni ws="qvm-x-akh">*shinqa.v</AUni> -<AUni ws="qvm-x-akl">*shinqa.v</AUni> -<AUni ws="qvm-x-ame">*shinqa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.591" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e81d6858-797f-4410-a1dd-418b47ae7a2d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shinqa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d1d3c5d6-fcbf-4136-b669-48753fa1881c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="98df09ef-5227-4371-83d3-439b34bb4b1b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shinqa.v 
\entryTyp root 
\gENG drown 
\gSPN ahogar 
\e *shinqa.v 
\c V1 
\ach shenga 
\akh shenqa 
\acl shenga 
\akl shenqa 
\ame shinqa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="0f9418ce-7051-40d4-8d83-b66fc215f7b5" ownerguid="3ce2a472-0a9b-4776-9727-5770a13f8c5a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="0f964442-16b9-42f2-9cbc-87015ad3d076" ownerguid="e17407bc-5642-45ce-8f14-5d49ea3d89ad"> -<Form> -<AUni ws="qvm-x-ach">pesti; peste</AUni> -<AUni ws="qvm-x-acl">pesti; pesti; peste</AUni> -<AUni ws="qvm-x-akh">pesti; peste</AUni> -<AUni ws="qvm-x-akl">pesti; pesti; peste</AUni> -<AUni ws="qvm-x-ame">pesti; peste</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0f97a8d9-6fc5-4ac1-9bf6-e2ffec529763" ownerguid="21461d78-02f9-4be6-80e3-6a4498ce8f4c"> -<ExampleWords> -<AUni ws="en">captivity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to captivity?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="0f97e0b7-58a8-4508-9f28-20482dcca48e" ownerguid="5557909e-dd68-490a-8495-66bc75256739"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">gargu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">gargu; gargo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qarqu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qarqu; qarqo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qarqu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="73ffd175-ad05-4d66-af47-2c487b1126eb" t="r" /> -</Morph> -<Msa> -<objsur guid="6da469f9-1f0c-4335-acc0-6c49a7bb5c21" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="0f983449-1c43-4974-b388-7695b1af4bfa" ownerguid="c8d94c8f-db0b-4016-bdd2-e41a2eae4288"> -<Abbreviation> -<AUni ws="en">4.6.7.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.264" /> -<DateModified val="2022-9-23 16:55:8.264" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the countryside--the area away from a city</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>1M Areas Which Are Uninhabited or Only Sparsely Populated</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Countryside</AUni> -</Name> -<Questions> -<objsur guid="dc3f007f-0663-4a73-9a21-274f90cee9e6" t="o" /> -<objsur guid="0fee121a-6043-4be5-b1c4-65626ad758de" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="0f994bcb-43f3-4ce3-8645-36b1f8f9a9ed" ownerguid="f081f71e-0bfa-46cb-a42c-6d675b245216"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">humble</AUni> -<AUni ws="es">humillar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="81bd9573-b1ba-4592-bf79-986ee4b4445b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="0f9ad506-86c3-4597-a14c-e24d63543a90" ownerguid="714c19ca-fc12-4630-b529-468429ec083d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="0f9c82ce-465a-47b4-8245-ab581067bea3" ownerguid="3f37bb6f-cd32-4430-aa35-700acabbee15"> -<ExampleWords> -<AUni ws="en">introduce, bring in, phase in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to officially starting something such as a new law or way of doing something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="0f9ea100-4122-4980-8893-e7169c281d95"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">u:va</AUni> -<AUni ws="qvm-x-acl">u:va</AUni> -<AUni ws="qvm-x-akh">u:va</AUni> -<AUni ws="qvm-x-akl">u:va</AUni> -<AUni ws="qvm-x-ame">u:va</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+uva</AUni> -<AUni ws="qvm-x-acl">+uva</AUni> -<AUni ws="qvm-x-akh">+uva</AUni> -<AUni ws="qvm-x-akl">+uva</AUni> -<AUni ws="qvm-x-ame">+uva</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.312" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="09ab51f2-c06d-4cdb-b92a-1b3948d97fdf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+uva</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2db37e45-cdd6-43ef-b23d-1c35d73bb5ed" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="86384fd9-beaa-4d0b-925a-1afdadcab1e2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +uva 
\entryTyp root 
\gENG berry 
\gSPN uva 
\e +uva 
\c N0 
\ach u:va 
\akh u:va 
\acl u:va 
\akl u:va 
\ame u:va</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="0fa025bd-5f48-42fd-ae8b-5098f74329b3" ownerguid="b7801f6e-683b-4d5d-9bab-57f6e593db8c"> -<ExampleWords> -<AUni ws="en">program, schedule, agenda</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a list of events?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="0fa0be21-2246-40b2-86b1-ca572fe8c16c" ownerguid="f9d020d6-b129-4bb8-9509-3b4a6c27482e"> -<Abbreviation> -<AUni ws="en">3.4.1.4.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.133" /> -<DateModified val="2022-9-23 16:55:8.133" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling uninterested or bored--when someone is not interested in something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Uninterested, bored</AUni> -</Name> -<Questions> -<objsur guid="efd81596-62a6-4422-878c-60723e129395" t="o" /> -<objsur guid="92627964-b223-46c1-9bd7-25121b2d8307" t="o" /> -<objsur guid="5655adc6-f1bf-4d1a-a7d0-90f9096356c9" t="o" /> -<objsur guid="336848f8-2ebd-499b-ba6e-1fe94f6b9a36" t="o" /> -<objsur guid="f7e5dc89-4a68-4c2e-bf32-78a096d135bc" t="o" /> -<objsur guid="b9f4980e-a057-413a-b67b-38593f375941" t="o" /> -<objsur guid="792fd1d8-5ad5-4537-b5a4-60aac60e43fe" t="o" /> -<objsur guid="aa44afe8-c21a-450e-85cc-df5e0067e9af" t="o" /> -<objsur guid="3fd0f77d-1883-4e68-9f8b-9e029da511a8" t="o" /> -<objsur guid="480d495b-7377-45d5-94aa-bf0f650aca55" t="o" /> -<objsur guid="c79c537b-24a1-473a-98e4-e80f9b85ef6c" t="o" /> -<objsur guid="dc272623-2cd5-481f-aade-19182a3b0eb1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="0fa328fb-0270-4cb6-9b49-ec4d8fff558e" ownerguid="4524fc30-b933-4841-ade3-a8482a897244"> -<Form> -<AUni ws="qvm-x-ach">peleandëru</AUni> -<AUni ws="qvm-x-acl">peleandëru; peleandëru; peleandëro</AUni> -<AUni ws="qvm-x-akh">peleandëru</AUni> -<AUni ws="qvm-x-akl">peleandëru; peleandëru; peleandëro</AUni> -<AUni ws="qvm-x-ame">peleandëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="0fa95a9d-ed47-4b1f-8afe-2eb20a786a66"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">se:ña</AUni> -<AUni ws="qvm-x-acl">se:ña</AUni> -<AUni ws="qvm-x-akh">se:ña</AUni> -<AUni ws="qvm-x-akl">se:ña</AUni> -<AUni ws="qvm-x-ame">se:ña</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+señar</AUni> -<AUni ws="qvm-x-acl">+señar</AUni> -<AUni ws="qvm-x-akh">+señar</AUni> -<AUni ws="qvm-x-akl">+señar</AUni> -<AUni ws="qvm-x-ame">+señar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.500" /> -<DateModified val="2022-10-10 21:18:47.203" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e16e5134-bc4a-4386-99e8-ef22dfcd6c66" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+señar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4325b0ba-e7de-4bb9-ba67-64ae03b6db04" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c7ef1683-6934-4cd5-861a-5dbe053aace4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +señar 
\entryTyp root 
\gENG 
\gSPN 
\e +señar 
\c V2 
\ach se:ña 
\akh se:ña 
\acl se:ña 
\akl se:ña 
\ame se:ña 
\mcc +señar / ~_ INF ADV1 
\mcc +señar / ~_ ADV2</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="0faa666a-5e86-4403-8cd0-e40438c8d53d" ownerguid="c4da8f3b-b5a7-4088-8666-cf1edc8b742a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">feriado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4b30e455-b39a-445a-aab5-834d70d0186a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="0fabc72a-ce97-41f3-8a2d-2f27eae09499" ownerguid="080bf07b-e58b-4a75-bb97-84d980a143f0"> -<Abbreviation> -<AUni ws="en">8.3.1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.609" /> -<DateModified val="2022-9-23 16:55:8.609" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to being square.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Square</AUni> -</Name> -<Questions> -<objsur guid="559fd8df-3be1-4039-a74a-87acd3dd40f7" t="o" /> -<objsur guid="3f155a8f-ca1d-42c8-a554-d1eacba6502b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="0fb2ed81-d815-4200-9b0f-1563edefa192" ownerguid="de6d1645-af53-4181-87bf-f3ae86ff3ad0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ddbbe17a-9eb0-4840-8bb9-4f771596a34b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="0fb54373-f990-4be9-8eb8-2277f4eb45af"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tulu</AUni> -<AUni ws="qvm-x-acl">tulu; tulu; tulo</AUni> -<AUni ws="qvm-x-akh">tulu</AUni> -<AUni ws="qvm-x-akl">tulu; tulu; tulo</AUni> -<AUni ws="qvm-x-ame">tulu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tullu</AUni> -<AUni ws="qvm-x-acl">*tullu</AUni> -<AUni ws="qvm-x-akh">*tullu</AUni> -<AUni ws="qvm-x-akl">*tullu</AUni> -<AUni ws="qvm-x-ame">*tullu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.987" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="94a2fa1c-ded9-4774-a4cd-3cfd1a7687fc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tullu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="97bb75ae-42bc-4f7b-8d9b-d9c865e08db4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="819d4df5-a9b0-44b4-910e-c38effae0983" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tullu 
\entryTyp root 
\gENG bone 
\gSPN hueso 
\e *tullu 
\c N0 
\ach tulu 
\akh tulu 
\acl tulu / _# 
\acl tulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tulu / _# 
\akl tulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tulu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="0fb740e6-e6fa-4093-940e-0a7ba630d68a" ownerguid="663e6f89-77f0-473c-997e-e54f26d8491b"> -<Form> -<AUni ws="qvm-x-ach">tinya</AUni> -<AUni ws="qvm-x-acl">tinya</AUni> -<AUni ws="qvm-x-akh">tinya</AUni> -<AUni ws="qvm-x-akl">tinya</AUni> -<AUni ws="qvm-x-ame">tinya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0fba4030-33ca-4602-b084-6c6cf274247d" ownerguid="ab8f12fb-57b0-4d61-8ae0-50d7cbc412df"> -<ExampleWords> -<AUni ws="en">snowy, snow covered, icy, frosty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words describe something that has snow or ice on it?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="0fba98c0-1c9a-434c-8199-4e7bc74cfd64" ownerguid="f5a16170-3ccc-475a-be46-370c7b82dfd5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rash</AUni> -<AUni ws="es">grano</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a3cf3969-db64-4fed-b252-d17892b77358" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="0fc074ae-9373-4ab7-b894-701b76f65e66"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tushu</AUni> -<AUni ws="qvm-x-acl">tushu; tushu; tusho</AUni> -<AUni ws="qvm-x-akh">tushu</AUni> -<AUni ws="qvm-x-akl">tushu; tushu; tusho</AUni> -<AUni ws="qvm-x-ame">tushu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tushu.n</AUni> -<AUni ws="qvm-x-acl">*tushu.n</AUni> -<AUni ws="qvm-x-akh">*tushu.n</AUni> -<AUni ws="qvm-x-akl">*tushu.n</AUni> -<AUni ws="qvm-x-ame">*tushu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.25" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0a2c0ba6-fabc-4e97-88bf-90407caa091b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tushu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f31453ca-f9d0-4a98-a485-5bf4430d66e3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e9cc5558-3360-46bd-9ef6-89ad90140c0d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tushu.n 
\entryTyp root 
\gENG dance 
\gSPN danza 
\e *tushu.n 
\c N0 
\ach tushu 
\akh tushu 
\acl tushu / _# 
\acl tushu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tusho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tushu / _# 
\akl tushu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tusho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tushu 
\i tushulayquipagpis; uchcoglapis 
\mcc *tushu.n / ~_ 3P</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="0fc1e85b-3e7a-4e48-bf1b-02b1f21d64ad" ownerguid="6a14394b-49a2-467f-8513-cc4adb1b74c6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="0fc3d86e-bcc9-4c58-a72d-4fbc644ded06" ownerguid="1fad303d-4172-455c-83f0-a7f5f5f1fdc3"> -<Form> -<AUni ws="qvm-x-ach">achcay</AUni> -<AUni ws="qvm-x-acl">achcay</AUni> -<AUni ws="qvm-x-akh">achkay</AUni> -<AUni ws="qvm-x-akl">achkay</AUni> -<AUni ws="qvm-x-ame">achkay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0fc3f51e-106b-412b-bcd0-90829c2c4dae" ownerguid="40590157-9412-4558-b0f7-311867b649cc"> -<ExampleWords> -<AUni ws="en">turn inside-out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to turning something so the inside is out?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="0fc7fac6-e4c8-4546-a8a9-41837f0b9ab0" ownerguid="70103b13-f5f0-48d4-8d4e-d6e0268967aa"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">gargu; garga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">gargu; gargo; garga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qarqu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qarqu; qarqo; qarqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qarqu; qarqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="3fd65fc8-17a4-49fe-89ac-3f1c84143c12" t="r" /> -</Morph> -<Msa> -<objsur guid="c7dbec8d-838d-4a92-a15b-4f3d5b563513" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="0fc9264f-b704-4ed4-8e5a-27ef67276372" ownerguid="58612712-8f51-48ce-9819-e766effbb009"> -<Form> -<AUni ws="qvm-x-ach">activida; actividä</AUni> -<AUni ws="qvm-x-acl">activida; actividä</AUni> -<AUni ws="qvm-x-akh">activida; actividä</AUni> -<AUni ws="qvm-x-akl">activida; actividä</AUni> -<AUni ws="qvm-x-ame">activida; actividä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="0fc9c27e-cf5d-49ba-b073-990cfc5ffe6b" ownerguid="4bcf81e9-1edc-4872-a8d3-b0f710b56b30"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="41a40359-6a38-44bd-bec0-10f32cac43fc" t="o" /> -<objsur guid="61528d5a-ac2e-4f8b-9db8-e7b979b7fc8b" t="o" /> -<objsur guid="c58ac404-360b-48cb-911c-caed8820d915" t="o" /> -<objsur guid="1e583fad-633f-4c40-819a-3196950d9233" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="0fcd1ad2-ac4d-4fc0-b39a-d2a4ce8df5aa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsula</AUni> -<AUni ws="qvm-x-acl">tsula</AUni> -<AUni ws="qvm-x-akh">tsula</AUni> -<AUni ws="qvm-x-akl">tsula</AUni> -<AUni ws="qvm-x-ame">tsula</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chullaqa.2</AUni> -<AUni ws="qvm-x-acl">*chullaqa.2</AUni> -<AUni ws="qvm-x-akh">*chullaqa.2</AUni> -<AUni ws="qvm-x-akl">*chullaqa.2</AUni> -<AUni ws="qvm-x-ame">*chullaqa.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.335" /> -<DateModified val="2022-10-10 21:18:47.207" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dd89a2f6-ff7f-455f-b99a-95d5380702e5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chullaqa.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c1b0e752-8c17-4c85-ab09-752aa0223186" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4955c83e-3ec7-47c1-844d-a7c6c65d2d85" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chullaqa.2 
\entryTyp root 
\gENG 
\gSPN 
\e *chullaqa.2 
\c V2 
\ach tsula 
\akh tsula 
\acl tsula 
\akl tsula 
\ame tsula</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="0fce6cf2-3e0c-40b5-acbf-56839c1526a8" ownerguid="60de9433-de63-41e5-9942-158d2fab81f9"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="0fd32670-7c3c-471b-bf92-e0759c17c48b" ownerguid="851e4059-edab-45da-aa33-7ee5c994b2f9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="0fe12b6d-19c7-456c-9b84-5649dd818668" ownerguid="3fb987e8-0bfb-4092-976c-eb2433d2ff6c"> -<Form> -<AUni ws="qvm-x-ach">tapsi</AUni> -<AUni ws="qvm-x-acl">tapsi; tapse</AUni> -<AUni ws="qvm-x-akh">tapsi</AUni> -<AUni ws="qvm-x-akl">tapsi; tapse</AUni> -<AUni ws="qvm-x-ame">tapsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="0fe2866e-bbad-43af-8785-dd0e2aca3496" ownerguid="ebeb90e5-7f43-4363-9474-8590442058d3" /> -<rt class="CmDomainQ" guid="0fe35855-245c-4bdb-866d-049818104428" ownerguid="3b4b947a-f223-4c87-8839-9f6237cda9f6"> -<ExampleWords> -<AUni ws="en">handle, manipulate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to using the hands to do something to an object?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0fe675f8-42af-4d18-91e6-2326dceff515" ownerguid="8841af5e-74e6-4c5d-a313-ba9aa7fdb78b"> -<ExampleWords> -<AUni ws="en">stand, be standing, be on your feet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being in a standing position?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="0fe92bd1-28be-4879-b11c-c8e7b122bbe1" ownerguid="8add7f4d-333b-4b2c-9999-48a14162152b"> -<ExampleWords> -<AUni ws="en">frugal, frugality, thrifty, thrift</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to controlling your desire to spend money?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="0fe9a9e9-da1b-4118-b61d-eb113fa90751" ownerguid="26ddd68b-9112-4344-95ac-203ca466fc62"> -<Form> -<AUni ws="qvm-x-ach">wishtu</AUni> -<AUni ws="qvm-x-acl">wishtu; wishto</AUni> -<AUni ws="qvm-x-akh">wishtu</AUni> -<AUni ws="qvm-x-akl">wishtu; wishto</AUni> -<AUni ws="qvm-x-ame">wishtu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="0fea1f5e-a074-411b-93c4-2cd5546c10fc" ownerguid="608e5f22-68da-4f3d-a99e-c74c454d6fa5"> -<Form> -<AUni ws="qvm-x-ach">tumpa</AUni> -<AUni ws="qvm-x-acl">tumpa</AUni> -<AUni ws="qvm-x-akh">tumpa</AUni> -<AUni ws="qvm-x-akl">tumpa</AUni> -<AUni ws="qvm-x-ame">tumpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="0fee121a-6043-4be5-b1c4-65626ad758de" ownerguid="0f983449-1c43-4974-b388-7695b1af4bfa"> -<ExampleWords> -<AUni ws="en">deserted, desolate, lonely, uninhabited, sparsely populated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe an area that doesn't have many people?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="0fef044a-c822-450d-b54a-eac8621e50c2" ownerguid="adde4a66-9040-47a9-91ab-327934a2e97e"> -<Abbreviation> -<AUni ws="en">6.6.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.468" /> -<DateModified val="2022-9-23 16:55:8.468" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to wood.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Wood</AUni> -</Name> -<OcmCodes> -<Uni>314 Forest Products</Uni> -</OcmCodes> -<Questions> -<objsur guid="51f170e0-affd-4149-8ecf-2822467743f5" t="o" /> -<objsur guid="f4e2eac1-1357-4967-8e94-b7a7807daae6" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="0ff4cbb1-904f-42fc-aaa7-30e6f45273d5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pushcu</AUni> -<AUni ws="qvm-x-acl">pushcu; pushco</AUni> -<AUni ws="qvm-x-akh">pushku</AUni> -<AUni ws="qvm-x-akl">pushku; pushko</AUni> -<AUni ws="qvm-x-ame">pushku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pushku.v</AUni> -<AUni ws="qvm-x-acl">*pushku.v</AUni> -<AUni ws="qvm-x-akh">*pushku.v</AUni> -<AUni ws="qvm-x-akl">*pushku.v</AUni> -<AUni ws="qvm-x-ame">*pushku.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.37" /> -<DateModified val="2022-10-10 21:18:47.197" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c96e7d50-3ac7-4309-803b-88f517ee4227" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pushku.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b23b9297-f72d-4cb6-9807-843856f6663a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0ca8ae6f-c062-402b-a83d-da1fb91dfb33" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pushku.v 
\entryTyp root 
\gENG 
\gSPN 
\e *pushku.v 
\c V1 
\ach pushcu 
\akh pushku 
\acl pushcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pushco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pushku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pushko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pushku 
\i SNG 8.8 Nanantsipaga manaragmi chuchunpis pushcunragtsu.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="0ff5c907-bdb8-4bd1-9596-9856a1413d17" ownerguid="96530c84-41d3-4e05-b422-f8d5d669b8d5"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ECC 2.4 Tsaynogpis imayca obratami ruratsishcä. Palaciucunatapis arutsishcä. Üvatapis atscatami plantatsishcä.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="0ff6458d-3bc8-4c59-bc24-edba90fa582d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">palapa</AUni> -<AUni ws="qvm-x-acl">palapa</AUni> -<AUni ws="qvm-x-akh">palapa</AUni> -<AUni ws="qvm-x-akl">palapa</AUni> -<AUni ws="qvm-x-ame">palapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pallapa.v</AUni> -<AUni ws="qvm-x-acl">*pallapa.v</AUni> -<AUni ws="qvm-x-akh">*pallapa.v</AUni> -<AUni ws="qvm-x-akl">*pallapa.v</AUni> -<AUni ws="qvm-x-ame">*pallapa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.677" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c46a7e33-a7a1-49de-a18b-17c17b3da294" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pallapa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="58ea2c9c-9f7e-40a1-a60a-5588872eadc1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2f8876d6-cac1-4f38-91fa-35afc196b9f4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pallapa.v 
\entryTyp root 
\gENG 
\gSPN 
\e *pallapa.v 
\c V2 
\ach palapa 
\akh palapa 
\acl palapa 
\akl palapa 
\ame palapa</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="0ff9c402-904a-484f-8c3b-c76aebd7875a" ownerguid="aae8aefe-cea0-42fe-b9de-793c4cbdbbd9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pita</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pita</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pita</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pita</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pita</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ef81e8c3-e8c7-4bf5-9fdb-ebd4284a70bd" t="r" /> -</Morph> -<Msa> -<objsur guid="c516d14b-9b18-44a7-8c37-97267a8b8796" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="100269ca-6c69-4892-a111-1e7cd8ce9649" ownerguid="16e5b397-d4d6-4e01-acc9-95780d96ac5f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="079e1a58-d922-41f9-88dd-bc9b44abbc52" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="10063a7d-94d1-4806-921e-5dbf7ccea63e" ownerguid="97393c87-07e2-4633-88f9-c8bf4d9b935c"> -<ExampleWords> -<AUni ws="en">hated, despised, detested, loathed, odious, resented</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a person who is hated?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="10069be7-00da-4a98-bf66-887af34d3c0e" ownerguid="05dec5a6-b9db-45a0-9f16-79de9cda3f13"> -<Form> -<AUni ws="qvm-x-ach">sucsuta</AUni> -<AUni ws="qvm-x-acl">sucsuta</AUni> -<AUni ws="qvm-x-akh">suksuta</AUni> -<AUni ws="qvm-x-akl">suksuta</AUni> -<AUni ws="qvm-x-ame">suksuta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="100c4fd3-744d-4964-a885-00afa91af0c6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gochpa</AUni> -<AUni ws="qvm-x-acl">gochpa</AUni> -<AUni ws="qvm-x-akh">qochpa</AUni> -<AUni ws="qvm-x-akl">qochpa</AUni> -<AUni ws="qvm-x-ame">quchpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qutrpa.v</AUni> -<AUni ws="qvm-x-acl">*qutrpa.v</AUni> -<AUni ws="qvm-x-akh">*qutrpa.v</AUni> -<AUni ws="qvm-x-akl">*qutrpa.v</AUni> -<AUni ws="qvm-x-ame">*qutrpa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.902" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c38902c4-05c6-47ac-a117-5acb59b7c707" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qutrpa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="57731423-7fa1-4db7-bbec-33e18eb2c698" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2ce66da1-919f-4b5a-b882-05db8b566d54" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qutrpa.v 
\entryTyp root 
\gENG wallow 
\gSPN revolcar 
\e *qutrpa.v 
\c V1 
\ach gochpa 
\akh qochpa 
\acl gochpa 
\akl qochpa 
\ame quchpa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="100e0213-5498-4cc6-a06c-fbb669fe6ce6" ownerguid="68603efd-0ca7-45eb-a69e-2851e1c37cf8"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Num 13.23 Tsaycho juc sarta üvata muturirmi gueruman warcurcur apapäcorgan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="100e62a6-b6f4-4b30-b317-0517d6b102a9" ownerguid="2b6f9af7-04ee-4030-a2cd-87d55959caa8"> -<Abbreviation> -<AUni ws="en">3.4.2.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.151" /> -<DateModified val="2022-9-23 16:55:8.151" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling shy--to feel bad (afraid) when you are with people because you think they might think something bad about you if you say or do something (for instance, being afraid to talk, feeling inadequate to do what is required in a social situation, or not feeling as good as other people).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Shy, timid</AUni> -</Name> -<Questions> -<objsur guid="153fec18-54e9-4586-80e6-2bb8317b5177" t="o" /> -<objsur guid="34acb4ae-05b2-4099-99f4-daea5a4675cc" t="o" /> -<objsur guid="54751111-2c95-457c-802c-e5fad650ceaf" t="o" /> -<objsur guid="568a5b45-4362-4020-a798-70f35863e1e1" t="o" /> -<objsur guid="3e9a5c80-c1cc-4d0a-bdbc-81003a24c55f" t="o" /> -<objsur guid="cb88e27c-2e60-4492-ad8a-89e99c8da667" t="o" /> -<objsur guid="22e6db76-b312-4492-8124-662f596cc1ff" t="o" /> -<objsur guid="d99d6dee-aebd-4da7-b6de-d2b6a099ead1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="100efcf7-5aed-4719-9d06-feb643cd93a6" ownerguid="1d5e2962-0937-472e-84fb-c584fa3f5636"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="10111c9b-83f7-4740-acb6-95c807fb8c87" ownerguid="ba508e57-67cb-4a75-95e5-971e508772a9"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EZR 8.29 Paycunami pësarcur Jerusalén templucho caycag depösituman churapäcongapag.>></Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="1017cbc3-0dfb-4930-9881-28f96784035c" ownerguid="5cc64831-c14a-4dbe-beba-214e725ad041"> -<Abbreviation> -<AUni ws="en">7.2.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.498" /> -<DateModified val="2022-9-23 16:55:8.498" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to moving quickly or slowly.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15A' Movement with Speed x; 15B' Goal-Oriented Movement</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Move quickly</AUni> -</Name> -<Questions> -<objsur guid="0ce36cb3-20c1-425f-adca-e433e0c7fb16" t="o" /> -<objsur guid="c054ca9f-29c6-4947-b81c-ffdaad9af117" t="o" /> -<objsur guid="27655c2e-2bb5-4474-a861-ca0d9269a593" t="o" /> -<objsur guid="e872f8b8-5faa-4e48-9f86-8c749ed91f05" t="o" /> -<objsur guid="d24aa192-1698-41f5-afeb-6f3ac6fe2506" t="o" /> -<objsur guid="7d61becb-7d19-47b3-b2d4-3501c0c539ea" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="2fc69f71-e9f1-45f9-b88e-bdaf97457fc3" t="r" /> -<objsur guid="df149819-608f-46cd-ba0f-55f1d9d2e8ec" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="e442afe1-e7cd-4ab2-b456-963e2e041a1e" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="1019b83a-6e42-4d8a-84a0-d33b1baaf2d7" ownerguid="4698e532-c598-4164-95b4-0a6c99ae4a7b"> -<Form> -<AUni ws="qvm-x-ach">tagui</AUni> -<AUni ws="qvm-x-acl">tagui; tagui; tague</AUni> -<AUni ws="qvm-x-akh">taqi</AUni> -<AUni ws="qvm-x-akl">taqi; taqi; taqe</AUni> -<AUni ws="qvm-x-ame">taqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="101b2ea3-9d64-4573-98f7-989cd7e9e180" ownerguid="e6b207f8-da86-4cc3-97ba-e8154aa0e819"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1SA 25.37 Wara tuta shincashganpita cachacashga captinnami warmin Abigail wilapargan ima pasashgantapis. Tsaynog wilapaptinmi atäquiwan pitirporgan.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="101b9c81-d8b5-4b12-98ac-237603f78887" ownerguid="eba15b58-b8ca-4123-9d5e-ae4f24a0db78"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cushi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cushi; cushe</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kushi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kushi; kushe</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kushi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f2a54f64-3831-4455-80f4-5f44272661e5" t="r" /> -</Morph> -<Msa> -<objsur guid="53712600-404b-40c0-9652-040c45c61b60" t="r" /> -</Msa> -</rt> -<rt class="LexExampleSentence" guid="101bbdc0-3b23-44cd-98c2-a5acb586127c" ownerguid="8a306ee6-b581-4d79-957a-730820d565df"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">HOS 5.10 Judá runacunapa autoridänincunaga jucpa lindërunta acaparagnogmi carcaycan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="101c16f8-ec76-4ec7-895a-fd814fef51dd" ownerguid="32bebe7e-bdcc-4e40-8f0a-894cd6b26f25"> -<Abbreviation> -<AUni ws="en">2.5.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.47" /> -<DateModified val="2022-9-23 16:55:8.47" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the treatment of disease and injury.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Treat disease</AUni> -</Name> -<OcmCodes> -<Uni>742 Medical Research; 751 Preventive Medicine; 757 Medical Therapy; 758 Medical Care</Uni> -</OcmCodes> -<Questions> -<objsur guid="43cf709a-7ddc-4df9-92c5-ea50feababbe" t="o" /> -<objsur guid="bcedfbf4-1970-4957-a395-ef84367b4b67" t="o" /> -<objsur guid="1d65240d-3000-4b2c-8263-576058381766" t="o" /> -<objsur guid="94ac6a47-c755-4a63-a296-b1129a2a905c" t="o" /> -<objsur guid="8066a2ba-5acc-489a-99c7-5e54946d98b4" t="o" /> -<objsur guid="224d4341-02a4-4f52-b9fe-540d09f391a4" t="o" /> -<objsur guid="ad599b48-44c1-49b8-9d7a-00f526442a72" t="o" /> -<objsur guid="86e91e51-b23f-4ca3-953a-1f83721479a6" t="o" /> -<objsur guid="b55b87fc-62ce-4333-9a51-20bcab31a60a" t="o" /> -<objsur guid="3b839b9a-1650-430b-b2bf-cfcce59c96be" t="o" /> -<objsur guid="262d1248-9c84-4b7c-bad6-b35910f50d99" t="o" /> -<objsur guid="03c3540c-f211-496a-8048-de217c9aa2a6" t="o" /> -<objsur guid="cf4d9fd0-ed52-4fc1-8b0f-ecb8f30b64c9" t="o" /> -<objsur guid="5fd578dd-defb-4aaf-8d85-7d24043958a1" t="o" /> -<objsur guid="a37a36f7-91ad-43f1-b063-513def235876" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c01bbcef-7d89-4753-bafd-3a7f23648982" t="o" /> -<objsur guid="b82c7ba0-9f4e-44da-bcd0-d30f5b224de5" t="o" /> -<objsur guid="f3627c41-5daf-4f73-ac42-8a0522035e0b" t="o" /> -<objsur guid="250a52e4-ede0-427d-8382-46a5742d4f96" t="o" /> -<objsur guid="8e88ed6a-000d-400a-8cd8-7b3cc7f1818c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="102350e7-cac1-4b67-987f-5a0db589495a" ownerguid="ef77bbf7-0f69-4358-ac9c-9d888b8969bd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c607cf9e-7bcb-41c5-bc62-a89c99ce1654" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">gossiper</AUni> -<AUni ws="es">chismoso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6b7222cb-9123-4fe0-80d9-37705acb6f32" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="102385fb-5e9d-4f56-bb89-855cd0a5b6ca" ownerguid="e28f3f79-d4a5-402c-8a70-196856791078"> -<ExampleWords> -<AUni ws="en">active, in action</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe someone who is doing something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1024cad5-e6c3-4638-bc6a-4197491413aa" ownerguid="2d563d27-8ac3-41c9-b326-856c9e1f6401"> -<ExampleWords> -<AUni ws="en">hollow out, carve out, dent in, indent, push in the side</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to making something concave?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="102ad057-9ed0-45da-97f6-9a3304b1a1de" ownerguid="7a1667f6-38e8-47e9-885b-2857554b5e60"> -<Form> -<AUni ws="qvm-x-ach">shaca</AUni> -<AUni ws="qvm-x-acl">shaca</AUni> -<AUni ws="qvm-x-akh">shaka</AUni> -<AUni ws="qvm-x-akl">shaka</AUni> -<AUni ws="qvm-x-ame">shaka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="1030cc2f-0c38-4df8-b6f6-87f4e2091742"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">levadu:ra</AUni> -<AUni ws="qvm-x-acl">levadu:ra</AUni> -<AUni ws="qvm-x-akh">levadu:ra</AUni> -<AUni ws="qvm-x-akl">levadu:ra</AUni> -<AUni ws="qvm-x-ame">levadu:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+levadura</AUni> -<AUni ws="qvm-x-acl">+levadura</AUni> -<AUni ws="qvm-x-akh">+levadura</AUni> -<AUni ws="qvm-x-akl">+levadura</AUni> -<AUni ws="qvm-x-ame">+levadura</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.840" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="20cb688a-85b2-4f64-8806-c03a03f89b61" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+levadura</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aedcfa71-f71d-4c6d-b985-36ede7482891" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d26273e8-5c52-4cd7-9013-321a1a0c0ba9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +levadura 
\entryTyp root 
\gENG yeast 
\gSPN levadura 
\e +levadura 
\c N0 
\ach levadu:ra 
\akh levadu:ra 
\acl levadu:ra 
\akl levadu:ra 
\ame levadu:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="10340ca4-7555-4d47-a548-e2a9b5507966" ownerguid="a1dba1bc-1377-49b9-a4c2-1f3fabda9576"> -<Form> -<AUni ws="qvm-x-ach">tulpu</AUni> -<AUni ws="qvm-x-acl">tulpu; tulpo</AUni> -<AUni ws="qvm-x-akh">tulpu</AUni> -<AUni ws="qvm-x-akl">tulpu; tulpo</AUni> -<AUni ws="qvm-x-ame">tulpu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PunctuationForm" guid="1034642f-7c74-4098-bbf9-c84e0e2ae1ae"> -<Form> -<Str> -<Run ws="en">transit</Run> -</Str> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="103512a3-4d88-41fe-a573-f51e2113517b" ownerguid="debe9765-c399-43b6-a014-31c213dade8a"> -<Form> -<AUni ws="qvm-x-ach">don</AUni> -<AUni ws="qvm-x-acl">don</AUni> -<AUni ws="qvm-x-akh">don</AUni> -<AUni ws="qvm-x-akl">don</AUni> -<AUni ws="qvm-x-ame">don</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1035d0a9-0040-487b-82d7-7d8b28788a99" ownerguid="5fcadae4-b4a8-4600-8d30-c4f67986d619"> -<ExampleWords> -<AUni ws="en">be an amputee, disfigured</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the condition of having lost a limb?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="103805a1-7b25-4108-b654-3ade86ba6f26" ownerguid="e00d6de6-3b0b-448c-b96a-f4b02749e50a"> -<Form> -<AUni ws="qvm-x-ach">shaywa</AUni> -<AUni ws="qvm-x-acl">shaywa</AUni> -<AUni ws="qvm-x-akh">shaywa</AUni> -<AUni ws="qvm-x-akl">shaywa</AUni> -<AUni ws="qvm-x-ame">shaywa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="103a1abb-d37a-4053-aa0b-6cdd8d3009c8" ownerguid="910ff139-b7a6-497f-ae8f-acc32bb836c3"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Num 17.8 Tsaypita wara junag Tincuna Tolduman aywarmi Moisés tarergan Leví trïbu Aarónpa tucrun tsintsimushga caycagta, upacshuraycagta, waytaraycagta y wayuraycagta.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="103b87fc-09d7-42e0-af93-5ba3e3274e74" ownerguid="5663238a-9f7f-4218-aed2-a8cc9be6887e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -<Sense> -<objsur guid="db6117c5-121c-433a-a891-e69950f55761" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="10404bc0-83cb-44d0-9415-e4ceb913bbf3" ownerguid="9d97ee4f-b5db-4100-9e5a-de46e1259f9b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="104089fe-dd52-45f6-a402-07ed6d2ca948" ownerguid="28fe4892-b5e3-4dc9-9f65-b2b0c1ba2aba"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">district</AUni> -<AUni ws="es">distrito</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5c589b05-ec84-4db2-ae6d-e5b1ce560893" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="1041bea6-60cc-46ff-a265-436e71f590e2" ownerguid="a7eafa37-dff8-45f3-84db-0d14c822831e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">REV 3.16 Qasaqpis ni akaqpis kanaykipa trukan wawaqoñuy kashqaykipitami shimëpita aqturishayki.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="10463703-ae30-4732-8aef-b55e444aa868" ownerguid="c3ae3eef-eb79-4c04-8cab-55b5b0e352b3"> -<Form> -<AUni ws="qvm-x-ach">puwa</AUni> -<AUni ws="qvm-x-acl">puwa</AUni> -<AUni ws="qvm-x-akh">puwa</AUni> -<AUni ws="qvm-x-akl">puwa</AUni> -<AUni ws="qvm-x-ame">puwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1046c1c6-c9be-467a-a668-fb854776a424" ownerguid="3710e019-46c9-44db-a0aa-9054d3126161"> -<ExampleWords> -<AUni ws="en">marijuana, bhang, LSD, heroin, opium</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of narcotics are there?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="104d40c9-2a4f-4696-ad99-5cf0eb86ab2e" ownerguid="7c6cad26-79c3-403a-a3aa-59babdfcd46f"> -<Abbreviation> -<AUni ws="en">2.5.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.32" /> -<DateModified val="2022-9-23 16:55:8.32" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to recovering from sickness or injury.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Recover from sickness</AUni> -</Name> -<Questions> -<objsur guid="8ce6d206-09f1-4f5d-8c29-c674e837252d" t="o" /> -<objsur guid="ea0623f6-eade-4175-948e-f9e4120d5df1" t="o" /> -<objsur guid="6e72e7c8-e46a-4bef-9636-5f9f6c51f94a" t="o" /> -<objsur guid="6c9b654a-3768-4fb8-8939-72d3c5462d82" t="o" /> -<objsur guid="e9f94d6a-b8d1-4dad-ab5d-ec13e265485e" t="o" /> -<objsur guid="1d87bc2f-a1c1-495c-9c92-3a373f4f8d43" t="o" /> -<objsur guid="809a9f5e-a612-4281-8669-b34fc75d4da1" t="o" /> -<objsur guid="72668e20-2e24-4edf-976f-f32e6c2791cd" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="104d7209-2fa6-4135-b03b-d7f58f04da08" ownerguid="fa688d24-91cb-47d7-a8b3-095723765204"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="105093f0-3b82-43bf-8753-686d35eb5907" ownerguid="b3052512-54b2-4b7b-a694-9e2f617e3481"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="10539428-e8bb-4956-a891-ace1a31ab94f" ownerguid="3005971d-de4d-401f-8400-b25de5e052ad"> -<ExampleWords> -<AUni ws="en">middle (n), center, the heart of, core</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the middle part of something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="105397dd-dbc8-4dc2-8311-6ecd063ea9da" ownerguid="375a69e7-cdcf-492f-be86-470a6093a206"> -<Form> -<AUni ws="qvm-x-ach">dieciseisi</AUni> -<AUni ws="qvm-x-acl">dieciseisi; dieciseisi; dieciseise</AUni> -<AUni ws="qvm-x-akh">dieciseisi</AUni> -<AUni ws="qvm-x-akl">dieciseisi; dieciseisi; dieciseise</AUni> -<AUni ws="qvm-x-ame">dieciseisi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="105691a0-6992-49a1-ac05-2f536129f45b" ownerguid="29211892-1ee2-4732-b797-4c444e60e55b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1057d3fd-15f3-460d-97dc-be61fbc1b179" ownerguid="5d72af95-facd-4be2-80e9-37528f0f34b5"> -<ExampleWords> -<AUni ws="en">shell, mother of pearl, mantle, foot, swimmeret</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the parts of shellfish?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="105c2861-2aef-4470-ba1b-bd98fd37c850" ownerguid="d04169af-b4d1-49fd-9c68-d5f6722d6f74"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">morir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8421f9e9-0ff1-4e1b-8770-71ebba71aba4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="105f3866-f775-46b9-b3e3-4cc079ed83f6" ownerguid="bfe8902a-32a7-4092-93b2-9dcf3dce205f"> -<ExampleWords> -<AUni ws="en">agitation, distress, uproar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of being upset?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="105f93d2-d1ea-4a5f-bea1-20aa1f052adc" ownerguid="181cd4a8-1211-491a-90da-4ac86f6b6604"> -<Form> -<AUni ws="qvm-x-ach">mujusya; mujusyä</AUni> -<AUni ws="qvm-x-acl">mujusya; mujusyä</AUni> -<AUni ws="qvm-x-akh">mujusya; mujusyä</AUni> -<AUni ws="qvm-x-akl">mujusya; mujusyä</AUni> -<AUni ws="qvm-x-ame">muhusya; muhusyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="105fbd07-5c5e-488e-a817-72c78b290cb0" ownerguid="2bb178b7-e4b6-423a-a109-a97207cfba90"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="10629560-8228-47ed-a541-6fd1dc3c7369"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ninshi</AUni> -<AUni ws="qvm-x-acl">ninshi; ninshi; ninshe</AUni> -<AUni ws="qvm-x-akh">ninshi</AUni> -<AUni ws="qvm-x-akl">ninshi; ninshi; ninshe</AUni> -<AUni ws="qvm-x-ame">ninshi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ninshi</AUni> -<AUni ws="qvm-x-acl">*ninshi</AUni> -<AUni ws="qvm-x-akh">*ninshi</AUni> -<AUni ws="qvm-x-akl">*ninshi</AUni> -<AUni ws="qvm-x-ame">*ninshi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.558" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="42ae9658-acdd-4035-ad9f-c787080ff0f9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ninshi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="91e4b4d0-9b18-4d98-8b26-bf260a01d8ab" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e87daeff-112f-47b4-8b55-bbe9940bcf21" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ninshi 
\entryTyp root 
\gENG gossip 
\gSPN 
\e *ninshi 
\c N0 
\mp +FinalI 
\ach ninshi 
\akh ninshi 
\acl ninshi / _# 
\acl ninshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ninshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ninshi / _# 
\akl ninshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ninshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ninshi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="1063096c-90a6-46b0-aac4-c0d10edb00fb" ownerguid="75a42637-5765-4c74-9a39-4633a1375931"> -<Form> -<AUni ws="qvm-x-ach">chanag</AUni> -<AUni ws="qvm-x-acl">chanag</AUni> -<AUni ws="qvm-x-akh">chanaq</AUni> -<AUni ws="qvm-x-akl">chanaq</AUni> -<AUni ws="qvm-x-ame">chanaq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="1064d293-38cb-48e2-8126-648e27c62155" ownerguid="265c55d2-9185-4f1f-a9e8-91618f9bd549"> -<Form> -<AUni ws="qvm-x-ach">misha</AUni> -<AUni ws="qvm-x-acl">misha</AUni> -<AUni ws="qvm-x-akh">misha</AUni> -<AUni ws="qvm-x-akl">misha</AUni> -<AUni ws="qvm-x-ame">misha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1066cbdc-e7be-4ba0-a986-df7f3073809f" ownerguid="d8631167-08bd-4571-bc7c-57a4407da51c"> -<ExampleWords> -<AUni ws="en">politics, movement, machine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the activity of a political party?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1067031c-68db-4aa4-9bdb-b1e98e9879d2" ownerguid="5929d805-deb3-4fc7-9201-12ad124eb4b8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">kick</AUni> -<AUni ws="es">patear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9297816e-fb59-451b-8c90-747cfcd77ec4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="1067e24c-275e-4e12-8cec-fca35e7c5260"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">naupa</AUni> -<AUni ws="qvm-x-acl">naupa</AUni> -<AUni ws="qvm-x-akh">nawpa</AUni> -<AUni ws="qvm-x-akl">nawpa</AUni> -<AUni ws="qvm-x-ame">nawpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñawpa.v</AUni> -<AUni ws="qvm-x-acl">*ñawpa.v</AUni> -<AUni ws="qvm-x-akh">*ñawpa.v</AUni> -<AUni ws="qvm-x-akl">*ñawpa.v</AUni> -<AUni ws="qvm-x-ame">*ñawpa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.598" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0285971e-f5d2-4e1f-8238-5a908bef59d3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñawpa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9f57522a-321d-4142-a7d2-dd53837ce246" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7096c8ce-453c-4ca3-a038-b2413d7d39c9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñawpa.v 
\entryTyp root 
\gENG go.ahead 
\gSPN adelantarse 
\e *ñawpa.v 
\c V1 
\ach naupa 
\akh nawpa 
\acl naupa 
\akl nawpa 
\ame nawpa 
\mcc *ñawpa.v / ~_ 3 COND</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="106af15f-a516-4057-9a19-60e248659f2b" ownerguid="6e28dcd4-683f-4705-813f-2e52513c6aab"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="106bf0c7-9271-4731-900a-7b53279481f3" ownerguid="03352940-c220-4a32-a9a5-fc08d1d0dc71"> -<ExampleWords> -<AUni ws="en">garbage truck, dustcart</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a vehicle used to remove garbage?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="106c2c42-36fd-4b0a-94f7-e998f6eae6f5" ownerguid="61f52196-a8b2-496d-96ea-8c15dc7d377a"> -<Abbreviation> -<AUni ws="en">4.9.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.296" /> -<DateModified val="2022-9-23 16:55:8.296" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to cursing someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33C" Bless, Curse</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Curse</AUni> -</Name> -<Questions> -<objsur guid="c8117f29-e342-48c7-8fa5-f6d14e83cbad" t="o" /> -<objsur guid="5cba1e20-9b54-49ce-aecd-fac71056e297" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="106d9027-985b-4112-9905-c7a612fbad14" ownerguid="fa00767d-6df9-4d87-a2aa-a0674182edc1"> -<Form> -<AUni ws="qvm-x-ach">garantiza</AUni> -<AUni ws="qvm-x-acl">garantiza</AUni> -<AUni ws="qvm-x-akh">garantiza</AUni> -<AUni ws="qvm-x-akl">garantiza</AUni> -<AUni ws="qvm-x-ame">garantiza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="106e1ba9-5b0f-4b1e-8b61-b7dbc260d3a9" ownerguid="a4446893-4605-42dd-a26f-8902220567a7"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="10708644-7060-42cc-9ce5-b36c4f95f9c5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">icsi</AUni> -<AUni ws="qvm-x-acl">icsi; icsi; icse</AUni> -<AUni ws="qvm-x-akh">iksi</AUni> -<AUni ws="qvm-x-akl">iksi; iksi; ikse</AUni> -<AUni ws="qvm-x-ame">iksi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*iksi.n</AUni> -<AUni ws="qvm-x-acl">*iksi.n</AUni> -<AUni ws="qvm-x-akh">*iksi.n</AUni> -<AUni ws="qvm-x-akl">*iksi.n</AUni> -<AUni ws="qvm-x-ame">*iksi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.792" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="138c2ecc-98fe-44ae-a61c-58424f6b5400" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*iksi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3d7acd54-124e-4666-83a6-1417a9afb890" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ac71f098-0429-4964-9fd8-6fa26d4cb6dc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *iksi.n 
\entryTyp root 
\gENG knot 
\gSPN nudo 
\e *iksi.n 
\c N0 
\mp +FinalI 
\ach icsi 
\akh iksi 
\acl icsi / _# 
\acl icsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl icse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl iksi / _# 
\akl iksi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ikse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame iksi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1070eff4-a200-4fa7-9573-a09f10f508de" ownerguid="3b69f6b6-d64a-43aa-99dc-05e34f81e07f"> -<ExampleWords> -<AUni ws="en">hire, rent, hireling, rental, to contract out, subcontract, tenancy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to hiring something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1073ca36-eddd-481e-bbb7-d725c52f1bf0" ownerguid="fe8f91de-1a1e-4603-8168-b00bab119846"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="b1d7d8c4-3c9a-4920-8774-b9028904dd19" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="10772eb7-ff62-4ab6-ac1f-6127e6433a71" ownerguid="a70147b0-d599-4117-8782-105dcb16a7d8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tatoo</AUni> -<AUni ws="es">tatuaje</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aa474518-6822-4631-8d47-4740aa5857e7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="1078ab99-306b-4b88-b111-c4cc83600115" ownerguid="36b96ffe-7a62-4e99-ad99-b59a751ade80"> -<Form> -<AUni ws="qvm-x-ach">garpu</AUni> -<AUni ws="qvm-x-acl">garpu; garpo</AUni> -<AUni ws="qvm-x-akh">qarpu</AUni> -<AUni ws="qvm-x-akl">qarpu; qarpo</AUni> -<AUni ws="qvm-x-ame">qarpu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="107966b3-76a1-4f1e-a259-f2950179fbef" ownerguid="c01d8a5a-3f39-4061-9da5-f37d95177dee"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">load</AUni> -<AUni ws="es">cargar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="12d991ff-96b9-48ce-aa71-88f7305d6e6f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="107a88b3-6591-4e19-8856-86e6d0a675bf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsintsi</AUni> -<AUni ws="qvm-x-acl">tsintsi; tsintse</AUni> -<AUni ws="qvm-x-akh">tsintsi</AUni> -<AUni ws="qvm-x-akl">tsintsi; tsintse</AUni> -<AUni ws="qvm-x-ame">tsintsi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chinchi</AUni> -<AUni ws="qvm-x-acl">*chinchi</AUni> -<AUni ws="qvm-x-akh">*chinchi</AUni> -<AUni ws="qvm-x-akl">*chinchi</AUni> -<AUni ws="qvm-x-ame">*chinchi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.315" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f6c60b37-7835-4f85-a5ef-6fe3ce219d8c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chinchi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b2aae534-a0e1-4a4f-9806-78420f65052f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="46821fda-468a-45fc-afce-ccb83430a475" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chinchi 
\entryTyp root 
\gENG bud 
\gSPN brotar 
\e *chinchi 
\c V1 
\mp +FinalI 
\ach tsintsi 
\akh tsintsi 
\acl tsintsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tsintse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsintsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsintse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsintsi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="107c5bbf-edd5-4d1b-a8d1-4c65d9ca0d3c" ownerguid="f4dd3e1b-dbb7-4634-9f42-c612e1872b28"> -<Form> -<AUni ws="qvm-x-ach">religión; religion</AUni> -<AUni ws="qvm-x-acl">religión; religion</AUni> -<AUni ws="qvm-x-akh">religión; religion</AUni> -<AUni ws="qvm-x-akl">religión; religion</AUni> -<AUni ws="qvm-x-ame">religión; religion</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="107c735d-7186-41d4-9129-0c917f221a1e" ownerguid="b843bb9f-565f-4e78-be1c-f96fadc77d8a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="107e1255-4f98-4a28-8001-a09b6bc24976" ownerguid="498f9806-fcc4-4bbc-bbaa-26dd1002ac8d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="10806316-f433-4da4-a08b-73638d735c1d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yusulpa:qui; yusulpa:qui</AUni> -<AUni ws="qvm-x-acl">yusulpa:qui; yusulpa:qui</AUni> -<AUni ws="qvm-x-akh">yusulpa:ki; yusulpa:ki</AUni> -<AUni ws="qvm-x-akl">yusulpa:ki; yusulpa:ki</AUni> -<AUni ws="qvm-x-ame">yusulpa:ki; yusulpa:ki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+dios.le.pag.2</AUni> -<AUni ws="qvm-x-acl">+dios.le.pag.2</AUni> -<AUni ws="qvm-x-akh">+dios.le.pag.2</AUni> -<AUni ws="qvm-x-akl">+dios.le.pag.2</AUni> -<AUni ws="qvm-x-ame">+dios.le.pag.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.416" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1fd1c87d-0f8d-4141-838d-7040eaeaba68" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+dios.le.pag.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0af77782-52ae-4ca2-81a1-8e621bc8e7aa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2e32f3d4-080f-4da1-a948-63bce64c5dcc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +dios.le.pag.2 
\entryTyp root 
\gENG thankyou 
\gSPN gracias 
\e +dios.le.pag.2 
\c ONSHEV 
\mp KQWchange 
\ach yusulpa:qui / _# 
\ach yusulpa:qui / ~_# 
\akh yusulpa:ki / _# 
\akh yusulpa:ki / ~_# 
\acl yusulpa:qui / _# 
\acl yusulpa:qui / ~_# 
\akl yusulpa:ki / _# 
\akl yusulpa:ki / ~_# 
\ame yusulpa:ki / _# 
\ame yusulpa:ki / ~_# 
\mp +FinalI</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="10813703-2e31-4784-9978-7647d46bc72d" ownerguid="0ac5e5f9-e7fe-4d37-a631-eab1ceb1f8ae"> -<ExampleWords> -<AUni ws="en">mountain range, mountainous, the hills, hilly, rolling hills, highlands</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe land that has many mountains?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="1082c52b-490a-4eec-acf1-7016796dafd9" ownerguid="aaf9d375-f0a0-4c7b-bbf8-3c7ffd4f5a52"> -<Abbreviation> -<AUni ws="en">9.3.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a small degree.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>78A Much, Little</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">To a small degree</AUni> -</Name> -<Questions> -<objsur guid="be38886b-0ee3-4325-9ffd-2c09cf29d1fc" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="1083d176-42ad-45a2-bbdd-03ee60842a0e" ownerguid="31c08c9b-77f7-4672-ba5d-197c7ef2c1ba"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JDG 16.13 Tsaynog niptinmi Dalilaga Sansónta fiyupa punucarcatsir ganchis piltanta trämaman awarcorgan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="10850fda-3c1d-4188-8eac-3499d4a43eac" ownerguid="7963a558-b7dd-45dd-b347-8f9cce1d7aa9"> -<Form> -<AUni ws="qvm-x-ach">maytsay</AUni> -<AUni ws="qvm-x-acl">maytsay</AUni> -<AUni ws="qvm-x-akh">maytsay</AUni> -<AUni ws="qvm-x-akl">maytsay</AUni> -<AUni ws="qvm-x-ame">maytsay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="10851688-0b67-4d3a-9fea-bfefaf630abf" ownerguid="7cffdb18-f3d9-4bd8-99fd-4215b98c5b94"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="1088cc2f-83ae-4911-8018-401a745dcfd5" ownerguid="afe7cc92-e0ad-40d9-be56-aa12d2693a3f"> -<Abbreviation> -<AUni ws="en">8.4.1.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.638" /> -<DateModified val="2022-9-23 16:55:8.638" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to night.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Night</AUni> -</Name> -<Questions> -<objsur guid="32620b9d-0b19-48af-ae50-737f2d919ab5" t="o" /> -<objsur guid="c37d323d-21de-46b9-b3e8-a01d9cfe94fa" t="o" /> -<objsur guid="ca346c56-dac9-415c-b122-83f536a0ff47" t="o" /> -<objsur guid="1d8e60ae-29a9-415f-abcf-2025db52ea87" t="o" /> -<objsur guid="f0482b3a-b085-4848-a5f5-7611baf83eb7" t="o" /> -<objsur guid="abcb73bd-0aad-4974-b3a1-bb9e8f1dc794" t="o" /> -<objsur guid="d64efcbf-e299-44a5-b5f2-5390a220f6f2" t="o" /> -<objsur guid="b6cf3b2d-dffd-4554-9870-33a00db9618a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="108d83e4-355c-41ad-ac35-0ab3b12e3236" ownerguid="f462a53b-3eab-4149-983c-3f5ded91bc68"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="108eea5a-bd2e-42b8-bb53-b1fc1231dd62"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mantila</AUni> -<AUni ws="qvm-x-acl">mantila</AUni> -<AUni ws="qvm-x-akh">mantila</AUni> -<AUni ws="qvm-x-akl">mantila</AUni> -<AUni ws="qvm-x-ame">mantila</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mantilla</AUni> -<AUni ws="qvm-x-acl">+mantilla</AUni> -<AUni ws="qvm-x-akh">+mantilla</AUni> -<AUni ws="qvm-x-akl">+mantilla</AUni> -<AUni ws="qvm-x-ame">+mantilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.325" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a3569355-1ab7-4c40-bac3-0202f33fff51" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mantilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6db26996-f527-4fd4-aea2-4f0021a57369" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a029ba3b-1415-4768-937e-184c6c3770f5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mantilla 
\entryTyp root 
\gENG cloth 
\gSPN mantilla 
\e +mantilla 
\c N0 
\ach mantila 
\akh mantila 
\acl mantila 
\akl mantila 
\ame mantila</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="109137c9-2cc9-4506-8ff3-afec670f61df" ownerguid="899aa4b6-2bae-452f-827c-54dba0135c6c"> -<Form> -<AUni ws="qvm-x-ach">chegpa</AUni> -<AUni ws="qvm-x-acl">chegpa</AUni> -<AUni ws="qvm-x-akh">cheqpa</AUni> -<AUni ws="qvm-x-akl">cheqpa</AUni> -<AUni ws="qvm-x-ame">chiqpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="10929711-6b9b-433f-a41f-be3a9613128e" ownerguid="d9f336cf-0682-4702-ab94-5ade755ddc64"> -<ExampleWords> -<AUni ws="en">move (something), transfer, shift</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to moving something in a direction?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1093286d-ed8e-4fd7-b1cb-8b652efa1443" ownerguid="a2efa866-b02c-4893-a7ba-d6c4629ea7e3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="10937211-160e-43c8-9133-0b3b6b2fea73" ownerguid="d756b99f-e275-4bbd-91ab-dc98c9b7c831"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="1094af22-c608-47a8-b597-ccdfcf77fdf1" ownerguid="b10a00a2-8632-4084-94d2-5824dc36a059"> -<Form> -<AUni ws="qvm-x-ach">prïmu</AUni> -<AUni ws="qvm-x-acl">prïmu; prïmu; prïmo</AUni> -<AUni ws="qvm-x-akh">prïmu</AUni> -<AUni ws="qvm-x-akl">prïmu; prïmu; prïmo</AUni> -<AUni ws="qvm-x-ame">prïmu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="1098c4d6-5f83-4b7b-b69a-7bb39a5df244" ownerguid="ad154560-7c01-42c5-827a-c582941b0faa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">deposit</AUni> -<AUni ws="es">depositar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1eb9a757-44da-4251-b252-6d2a43697a93" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="10992cac-deab-4bad-8653-1ba922da7219" ownerguid="8d47c9ec-80c4-4309-9848-c453dcd71182"> -<ExampleWords> -<AUni ws="en">living things, life, all life, every living thing, everything that lives and breathes, plants and animals, organic matter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to all living things, including both plants and animals?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="10a043b0-af01-41a3-ac31-90a7ab11116f" ownerguid="1688280e-27c4-47a8-87b7-8fe31b174ab8"> -<ExampleWords> -<AUni ws="en">grade, score, mark, results</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the grade you get on a test?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="10a24fe6-3031-4eff-912a-914c60cd6fb8" ownerguid="7c234ccc-0dbe-42b0-a377-db99ebd2b51e"> -<ExampleWords> -<AUni ws="en">ride</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What things are done to animals?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="10a53d76-3313-461c-85b4-2eaa95eea7a5"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">kutimushqa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="10a65da6-bb6b-4379-b64f-b831c4fc64da"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alumna</AUni> -<AUni ws="qvm-x-acl">alumna</AUni> -<AUni ws="qvm-x-akh">alumna</AUni> -<AUni ws="qvm-x-akl">alumna</AUni> -<AUni ws="qvm-x-ame">alumna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+alumna</AUni> -<AUni ws="qvm-x-acl">+alumna</AUni> -<AUni ws="qvm-x-akh">+alumna</AUni> -<AUni ws="qvm-x-akl">+alumna</AUni> -<AUni ws="qvm-x-ame">+alumna</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.719" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="28ec6c99-c77e-4bce-bd3a-969d78500297" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+alumna</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e2f9a74c-6560-423c-a6bc-a9ad17626e9e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2041bea7-9861-4dc2-b3d8-6cea641f1f79" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +alumna 
\entryTyp root 
\gENG alumna 
\gSPN alumna 
\e +alumna 
\c N0 
\ach alumna 
\akh alumna 
\acl alumna 
\akl alumna 
\ame alumna</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="10a82711-8829-461a-b172-fc8fff3d555c" ownerguid="8c28c640-db5b-43e2-a1e6-b0e381962129"> -<Abbreviation> -<AUni ws="en">6.3.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to dogs.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Dog</AUni> -</Name> -<Questions> -<objsur guid="c51bb041-41a4-4cf9-bac0-683244ff72dd" t="o" /> -<objsur guid="e5600418-c7fb-47f6-9718-644212c356b9" t="o" /> -<objsur guid="52d1fff8-807f-438e-a70d-747728629317" t="o" /> -<objsur guid="6f0003a6-14e2-43ed-a02c-0dfa8ac018f0" t="o" /> -<objsur guid="13c7b8f5-3f30-4eea-8589-498b9843c551" t="o" /> -<objsur guid="ff4165a4-179c-493f-a82a-d0dc2d496159" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="10ab143a-ab11-4ca9-a9b7-92a16a2778e7" ownerguid="d88d862c-01d4-4b43-9fbe-59208922e022"> -<ExampleWords> -<AUni ws="en">wait, wait for, wait up for, wait on, await, hang on, stand by, wait around, hang around, hold off, wait your turn, sit something out, cool your heels, bide your time, sit tight, sweat it out, hesitate, hesitation, wait and see, wait behind, lie in wait, waiting room, waiting list</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to waiting?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="10ac7335-fc1f-4bec-94e1-266ff5026057" ownerguid="a491b60d-8695-4139-98ff-0485684115e6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="83338005-464f-4e8e-96d2-2a799942a33d" t="r" /> -</Morph> -<Msa> -<objsur guid="715c8af0-d7ab-448b-a2fa-f8b36822dac0" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="10ad2300-18e0-4e12-becd-d5b72207427f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jinchi</AUni> -<AUni ws="qvm-x-acl">jinchi; jinche</AUni> -<AUni ws="qvm-x-akh">jinchi</AUni> -<AUni ws="qvm-x-akl">jinchi; jinche</AUni> -<AUni ws="qvm-x-ame">hinchi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hintri</AUni> -<AUni ws="qvm-x-acl">*hintri</AUni> -<AUni ws="qvm-x-akh">*hintri</AUni> -<AUni ws="qvm-x-akl">*hintri</AUni> -<AUni ws="qvm-x-ame">*hintri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.721" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6a86d041-9343-42ce-a1cf-cb3e5325e0d0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hintri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8abdb1e0-3181-4c7f-9e9f-2a273da03764" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aacb0d72-c9ac-4e58-b84b-b9301dea9139" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hintri 
\entryTyp root 
\gENG cut.sod 
\gSPN cortar 
\e *hintri 
\c V2 
\mp +FinalI 
\ach jinchi 
\akh jinchi 
\acl jinchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl jinche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jinchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jinche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hinchi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="10ae3166-5ee5-4a33-9a9c-071b55a7f68d" ownerguid="3cb4c07c-8760-4ff9-8d45-1c0bed80ffb3"> -<ExampleWords> -<AUni ws="en">egg, sperm, gamete, ovum, gene</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the part from the father and the part from the mother that make a baby?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="10af319e-d38a-4443-869a-c3280dc0c456" ownerguid="f491233f-fae4-49dc-a79d-2cb29e71afad"> -<Form> -<AUni ws="qvm-x-ach">adulteriu; adulterio</AUni> -<AUni ws="qvm-x-acl">adulteriu; adulteriu; adulterio</AUni> -<AUni ws="qvm-x-akh">adulteriu; adulterio</AUni> -<AUni ws="qvm-x-akl">adulteriu; adulteriu; adulterio</AUni> -<AUni ws="qvm-x-ame">adulteriu; adulterio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="10b1395b-f735-490c-97ea-1ac62da66050" ownerguid="60e37b10-d62f-481a-8bb8-b681e25921ac"> -<Form> -<AUni ws="qvm-x-ach">rëja</AUni> -<AUni ws="qvm-x-acl">rëja</AUni> -<AUni ws="qvm-x-akh">rëja</AUni> -<AUni ws="qvm-x-akl">rëja</AUni> -<AUni ws="qvm-x-ame">rëja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="10b13e82-37db-41e0-b912-0fca0351db84" ownerguid="32260b00-dd19-4316-a833-a8a6cf5b6783"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="b1c380f9-449a-41d9-bb60-fbaf246d22e8" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="bc49ef8f-7709-449e-a53c-7db114336637" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="10b4ac15-d407-4d11-bb6e-37b367638ab0" ownerguid="4e5bf9a7-e8b2-4f7d-804e-57f58265befb"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="10b5dae9-f818-4fd3-b37e-2b15416474bf" ownerguid="32cf3835-bced-4ea1-9c7a-f7ff653e59fe"> -<ExampleWords> -<AUni ws="en">cemetery, churchyard, graveyard, mausoleum, mass grave, burial ground, charnel house</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a place where many bodies are buried?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="10b6c417-d020-4318-a44a-ae69ea3eec5a" ownerguid="e28f3f79-d4a5-402c-8a70-196856791078"> -<Abbreviation> -<AUni ws="en">9.1.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.680" /> -<DateModified val="2022-9-23 16:55:8.680" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to someone changing something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Change something</AUni> -</Name> -<Questions> -<objsur guid="29a225aa-6123-4405-9259-c7b1c73d4df9" t="o" /> -<objsur guid="3d84afa8-1e71-474c-b3a1-0366798dd765" t="o" /> -<objsur guid="a358047f-bf6e-4e7e-97b6-975d7417f337" t="o" /> -<objsur guid="3a4c55cc-08bc-403c-a1c3-75505051463d" t="o" /> -<objsur guid="b5fc72b2-1a65-4cc0-95b7-bf0dcb62f2b6" t="o" /> -<objsur guid="1292411c-fed2-4234-8863-9a00ddcbfd84" t="o" /> -<objsur guid="2fd2e247-a998-494a-9044-549b0ce26336" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="c9b5f83e-529d-45af-949f-4cc6b0591b66" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="10b858d3-6b3b-48cb-8d7e-9359cce8c684"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">herre:ru</AUni> -<AUni ws="qvm-x-acl">herre:ru; herre:ru; herre:ro</AUni> -<AUni ws="qvm-x-akh">herre:ru</AUni> -<AUni ws="qvm-x-akl">herre:ru; herre:ru; herre:ro</AUni> -<AUni ws="qvm-x-ame">herre:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+herrero</AUni> -<AUni ws="qvm-x-acl">+herrero</AUni> -<AUni ws="qvm-x-akh">+herrero</AUni> -<AUni ws="qvm-x-akl">+herrero</AUni> -<AUni ws="qvm-x-ame">+herrero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.710" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="848d8854-cb76-4513-ad67-aff782a67f5f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+herrero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="86cbe132-d800-4312-aa36-c0734dcc96e3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b58b0b5c-48a0-48ba-adc0-4cb0168b59a8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +herrero 
\entryTyp root 
\gENG blacksmith 
\gSPN herrero 
\e +herrero 
\c N0 
\ach herre:ru 
\akh herre:ru 
\acl herre:ru / _# 
\acl herre:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl herre:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl herre:ru / _# 
\akl herre:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl herre:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame herre:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="10bf833f-e965-4966-a2b2-c12ef7406d32" ownerguid="f937313f-ec38-4f1b-86dc-cb78edd33ca2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="bd209b26-d059-49a5-a258-acc41aa6b1c2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="10c08185-ee0a-4714-9bad-dadf160e7d95" ownerguid="c85162f8-27f3-4a31-a25e-68333e91ee30"> -<Form> -<AUni ws="qvm-x-ach">pegla</AUni> -<AUni ws="qvm-x-acl">pegla</AUni> -<AUni ws="qvm-x-akh">peqla</AUni> -<AUni ws="qvm-x-akl">peqla</AUni> -<AUni ws="qvm-x-ame">piqla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="10c190cb-240a-4bbf-a422-d3c0cf6933d5" ownerguid="73b1f5d7-de2c-4439-bc7a-76f2ec875572"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="60b72160-8222-44ba-8cb7-1f2a7dfb7a5c" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="9aaa7a21-b0b3-4d68-91ac-c8285d9c937a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="10c70693-1c54-4894-ab36-a4eeb60d3c22" ownerguid="0158fed2-e8ca-4fea-b495-afe387d8d34d"> -<Form> -<AUni ws="qvm-x-ach">yumpay</AUni> -<AUni ws="qvm-x-acl">yumpay</AUni> -<AUni ws="qvm-x-akh">yumpay</AUni> -<AUni ws="qvm-x-akl">yumpay</AUni> -<AUni ws="qvm-x-ame">yumpay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="10c85314-931e-424b-82df-6ac843a47f75" ownerguid="dae6488c-7fea-4fa3-84c9-b611d017b6a5"> -<ExampleWords> -<AUni ws="en">washerwoman, dry cleaner</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) Who does the laundry?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="10ca659b-a5bf-4061-a264-19124a82dd4f" ownerguid="57ed66ee-f82b-4e80-955f-7492d85372b0"> -<ExampleWords> -<AUni ws="en">ambassador, ambassador, embassy, diplomat, diplomatic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to someone who represents their government in a foreign country?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="10cf0543-8e30-45b3-ab9a-6d039a917001" ownerguid="176dc633-782b-4e75-9704-62cc09b6774a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="10cfc365-623c-4fc7-b383-1b60acca0682" ownerguid="e931da8a-efc1-46cb-836a-72fba4a1eb4f"> -<ExampleWords> -<AUni ws="en">lead, guide</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to taking someone somewhere?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="10d3a014-b6ae-4b01-be14-2f751bdc7ff9" ownerguid="96a1ad48-1a70-425b-bd20-59294902581f"> -<ExampleWords> -<AUni ws="en">gesture (n), sign (n), signal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a gesture?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="10d53c9a-8aee-41d1-b1d6-41441b890721" ownerguid="93481409-ad52-4f7c-a289-3fb3dea3cc37"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.doubt</AUni> -<AUni ws="es">dudar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="96f35de6-e916-416c-871f-36f784a0de2e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="10d5870a-afb3-45d9-b12a-c7d1eb907007"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lo:bu</AUni> -<AUni ws="qvm-x-acl">lo:bu; lo:bu; lo:bo</AUni> -<AUni ws="qvm-x-akh">lo:bu</AUni> -<AUni ws="qvm-x-akl">lo:bu; lo:bu; lo:bo</AUni> -<AUni ws="qvm-x-ame">lo:bu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lobo</AUni> -<AUni ws="qvm-x-acl">+lobo</AUni> -<AUni ws="qvm-x-akh">+lobo</AUni> -<AUni ws="qvm-x-akl">+lobo</AUni> -<AUni ws="qvm-x-ame">+lobo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.104" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1edb177d-0268-4235-9863-21a7d20900ac" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lobo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d7707ab1-ec80-4226-a6a8-9e9333232ac1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9cbee5a5-220b-4f42-bf5b-4aebcd099d9b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lobo 
\entryTyp root 
\gENG wolf 
\gSPN lobo 
\e +lobo 
\c N0 
\ach lo:bu 
\akh lo:bu 
\acl lo:bu / _# 
\acl lo:bu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lo:bo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lo:bu / _# 
\akl lo:bu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lo:bo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lo:bu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="10d7b08f-7c8f-4731-a60c-ba4c90fbcddf" ownerguid="a50f38f9-87df-4259-b674-bf1aa4242ed9"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="10da67ed-648c-4431-b050-60f8967b16cb" ownerguid="dc177f3c-d0fd-4232-adf1-a77b339cdbb2"> -<ExampleWords> -<AUni ws="en">station, railroad station, bus station, gas station, petrol station, rest area, parking lot</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What kinds of buildings are used by travelers?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="10df8fd3-2076-40f1-995e-96afe1cd2796" ownerguid="f1954678-ed60-4039-a99b-45b9d4b722d0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="10e92a20-75c9-488b-b0bd-cef70ce61a44"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wacla</AUni> -<AUni ws="qvm-x-acl">wacla</AUni> -<AUni ws="qvm-x-akh">wakla</AUni> -<AUni ws="qvm-x-akl">wakla</AUni> -<AUni ws="qvm-x-ame">wakla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wak+lado</AUni> -<AUni ws="qvm-x-acl">*wak+lado</AUni> -<AUni ws="qvm-x-akh">*wak+lado</AUni> -<AUni ws="qvm-x-akl">*wak+lado</AUni> -<AUni ws="qvm-x-ame">*wak+lado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.444" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3b1fea98-06bd-48ae-bcd8-5f5033c9bb87" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wak+lado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ff385275-47c3-4b9c-a2e9-bcb77920bb28" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8fa700ed-58c1-4fd1-843e-2cd2317daac4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wak+lado 
\entryTyp root 
\gENG move.to.side 
\gSPN echar.a.lado 
\e *wak+lado 
\c V1 
\ach wacla 
\akh wakla 
\acl wacla 
\akl wakla 
\ame wakla 
\mcc *wak+lado / ~_ 1 | force *wak SIDE</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="10e92cd8-6d9d-4c1e-b946-f076814474e0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pag</AUni> -<AUni ws="qvm-x-acl">pag</AUni> -<AUni ws="qvm-x-akh">paq</AUni> -<AUni ws="qvm-x-akl">paq</AUni> -<AUni ws="qvm-x-ame">paq</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.508" /> -<DateModified val="2022-10-16 14:52:59.670" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="1" /> -<LexemeForm> -<objsur guid="388870a0-cbff-40e3-86fa-e65b7a346d7f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">FUT.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aafa5d02-399a-4048-b045-4c82d08978e0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fd354ec3-02ac-484c-9214-5d64e394463b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx FUT.1 
\entryTyp suffix 
\gENG FUT.1 
\gSPN FUT.1 
\e FUT.1 
\c V0/V0 
\o 150 
\mp NeverForeshortened 
\ach pag 
\akh paq 
\acl pag 
\akl paq 
\ame paq 
\mp +FinalC 
\mcc FUT.1 / [TakeFUT] ... _</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="10e96122-b738-4601-9772-7cd601892b40" ownerguid="2a6622ed-7113-46fc-97c1-2a208c4a9008"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="1c67a7fe-f439-4927-a950-0708fd75c90a" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">sore</AUni> -<AUni ws="es">adolorir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2347570f-1519-420a-9fe1-5d8e32563dda" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="10eb7cf9-511c-47a3-ad08-af2d437e9052" ownerguid="691e7d9a-5191-4f78-ae21-b5de1e013a6f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="10ebefab-eeaa-4ce5-962b-75e039facd05"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waytiga</AUni> -<AUni ws="qvm-x-acl">waytiga</AUni> -<AUni ws="qvm-x-akh">waytiqa</AUni> -<AUni ws="qvm-x-akl">waytiqa</AUni> -<AUni ws="qvm-x-ame">waytiqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waytiqa</AUni> -<AUni ws="qvm-x-acl">*waytiqa</AUni> -<AUni ws="qvm-x-akh">*waytiqa</AUni> -<AUni ws="qvm-x-akl">*waytiqa</AUni> -<AUni ws="qvm-x-ame">*waytiqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.635" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="00f6815b-3e10-4121-af0c-7acaeacfd293" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waytiqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ea78bea9-b6fd-43a4-a54a-214e2b95d919" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f32052bd-e342-4359-9f80-21a9f28ae274" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waytiqa 
\entryTyp root 
\gENG 
\gSPN 
\e *waytiqa 
\c V1 
\ach waytiga 
\akh waytiqa 
\acl waytiga 
\akl waytiqa 
\ame waytiqa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="10ed0330-b4e8-4d0d-8173-a54c79aab6d5" ownerguid="11628750-a93f-4d51-b38f-ee50ddcfbfab"> -<Form> -<AUni ws="qvm-x-ach">canalëta</AUni> -<AUni ws="qvm-x-acl">canalëta</AUni> -<AUni ws="qvm-x-akh">canalëta</AUni> -<AUni ws="qvm-x-akl">canalëta</AUni> -<AUni ws="qvm-x-ame">canalëta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="10efebff-e379-4908-b696-8f3ba0895a05" ownerguid="7f2b4a53-a64a-4663-9ca5-8765ede8bd2c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">DAN 9.4 Israel mayëcuna jutsa rurashganta confesacurmi Diosta manacorgä caynog nir:</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="10f0e28a-a156-4a18-8e97-4712b22d6c4b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">miel; miel</AUni> -<AUni ws="qvm-x-acl">miel; miel</AUni> -<AUni ws="qvm-x-akh">miel; miel</AUni> -<AUni ws="qvm-x-akl">miel; miel</AUni> -<AUni ws="qvm-x-ame">miel; miel</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+miel</AUni> -<AUni ws="qvm-x-acl">+miel</AUni> -<AUni ws="qvm-x-akh">+miel</AUni> -<AUni ws="qvm-x-akl">+miel</AUni> -<AUni ws="qvm-x-ame">+miel</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.426" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7a4663d2-4c89-4cb2-a5dc-2083b65c4a3a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+miel</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a60bab5c-c707-4b32-b7f8-20644f83cdeb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6dba9fc4-8173-4104-a5c7-5375058a0695" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +miel 
\entryTyp root 
\gENG 
\gSPN miel 
\e +miel 
\c N0 
\mp +FinalC 
\ach miel / _# 
\ach miel / ~_# 
\akh miel / _# 
\akh miel / ~_# 
\acl miel / _# 
\acl miel / ~_# 
\akl miel / _# 
\akl miel / ~_# 
\ame miel / _# 
\ame miel / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="10f147e9-e112-4986-843a-78903f2ac145" ownerguid="6ce8fc1f-dd46-49bb-b071-4d8ff2763c53"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7187247f-8fe3-4bdc-89ff-6ebd47afa0da" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="10f288a1-2de7-4807-a081-da1b50cd81cd" ownerguid="183dc976-34ef-4c1a-aaf4-03531a320304"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="10f69c6c-5541-49cc-aa8f-96442883c34a" ownerguid="b1756402-83c4-476d-8f55-010a0a10b5d9"> -<ExampleWords> -<AUni ws="en">profit, income, take (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to profit?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="10fdd681-b6ff-4fbb-9ac1-a00ca5f3c278" ownerguid="f48e6338-dde3-4d6a-85d1-90bc470293f2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="6e12d4b0-0920-41a8-8fc4-9f2d6644387c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="11005ef1-0a6e-47fe-83c0-5a3e4c5e2fff" ownerguid="bddc70ea-d46f-4e4b-83a1-a47bea858dd6"> -<ExampleWords> -<AUni ws="en">front (n), face, facade</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the front of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1102e705-1d48-4055-8af7-42f62f2f0732" ownerguid="e2fe33f8-bee4-47a3-9e2b-d1c9487e4f7d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 V0/V0 R0/R0 BN/BN</Run> -</AStr> -</Custom> -<Definition> -<AStr ws="en"> -<Run ws="en">content question marker</Run> -</AStr> -<AStr ws="es"> -<Run ws="es">pregunta de contenido</Run> -</AStr> -</Definition> -<Gloss> -<AUni ws="en">QUES</AUni> -<AUni ws="es">?CN</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="918019fc-e2a4-494b-af9f-eed9eecf9407" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="110404f2-fab5-4550-847c-c4c0e6f78f70"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">patilla</AUni> -<AUni ws="qvm-x-acl">patilla</AUni> -<AUni ws="qvm-x-akh">patilla</AUni> -<AUni ws="qvm-x-akl">patilla</AUni> -<AUni ws="qvm-x-ame">patilla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+patilla</AUni> -<AUni ws="qvm-x-acl">+patilla</AUni> -<AUni ws="qvm-x-akh">+patilla</AUni> -<AUni ws="qvm-x-akl">+patilla</AUni> -<AUni ws="qvm-x-ame">+patilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.757" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0149f250-7337-475c-a095-99353f957606" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+patilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4b462f2f-0d40-4bbf-ba4d-df13fcc5a1e0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ba5ce436-48f2-4039-b025-c915538ed40c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +patilla 
\entryTyp root 
\gENG sideburn 
\gSPN patilla 
\e +patilla 
\c N0 
\ach patilla 
\akh patilla 
\acl patilla 
\akl patilla 
\ame patilla 
\i JER 9.26 Tsaynogpis castigashagmi laplanta
\f + 
\fr 9.26 
\ft Waquin runacunaga 
\it patillanta
\it* nipäcun. Tsay witsan chunyag jircacho tag waquin runacuna laplanta rutucog ïdulucunata adorashpanmi. Laplanta tsaynog mana rutucunanpag Tayta Dios nishganta musyanayquipag liyinqui Levítico 19.27.
\f* rutucur chunyag jircacho tagcunatapis.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1104a58a-74ca-4f2a-bee1-2b3d3aaad64a" ownerguid="2827d3e2-eec1-4f19-a6a9-8dbb4cc1699c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2/V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="5fb5bc9d-5033-4105-8168-9f63c5f52221" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">1OJUST</AUni> -<AUni ws="es">1OJUST</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="984eb9db-3ffd-4471-90a6-dcb439c7fc2a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="11095ce7-5e0e-47e9-a0ee-d1bde24b058d" ownerguid="20f51a14-1e9e-4b4d-9240-a2cdb303d27e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="110d4412-6bf1-4f10-8351-8b0528200017" ownerguid="d1292db9-72eb-4227-9b8e-4d2473625e80"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="110fe2c8-1b56-4c0e-b951-5711efb3eece" ownerguid="dbbc964c-d7dd-4ed5-995f-fa3c7c8c9f29"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">viaje</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6280efea-c8cd-4db8-84c6-ac172d9608f7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="1116e52e-f466-4211-b8df-a1154ad6f512"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pu:tsi</AUni> -<AUni ws="qvm-x-acl">pu:tsi; pu:tse</AUni> -<AUni ws="qvm-x-akh">pu:tsi</AUni> -<AUni ws="qvm-x-akl">pu:tsi; pu:tse</AUni> -<AUni ws="qvm-x-ame">pu:tsi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pu:chi</AUni> -<AUni ws="qvm-x-acl">*pu:chi</AUni> -<AUni ws="qvm-x-akh">*pu:chi</AUni> -<AUni ws="qvm-x-akl">*pu:chi</AUni> -<AUni ws="qvm-x-ame">*pu:chi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.962" /> -<DateModified val="2022-10-10 21:18:47.197" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2d75646b-bcbb-4649-a5a1-3a9c02ded256" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pu:chi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="96b5b766-4157-49a1-ad21-6abc1fa96394" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3f39d04c-4ed1-427c-b381-f75416b3f8a8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pu:chi 
\entryTyp root 
\gENG 
\gSPN 
\e *pu:chi 
\c V1 
\mp +FinalI 
\ach pu:tsi 
\akh pu:tsi 
\acl pu:tsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pu:tse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pu:tsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pu:tse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pu:tsi 
\i DEU 28.5 Canastaykikuna tsukuy tsukuy kananpaqpis y artësaykikuna pütsiy pütsiy kananpaqpis bendicionninta churamunqami.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="111a4d91-df11-4523-89f2-822b92fd73b7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">esguy</AUni> -<AUni ws="qvm-x-acl">esguy</AUni> -<AUni ws="qvm-x-akh">esquy</AUni> -<AUni ws="qvm-x-akl">esquy</AUni> -<AUni ws="qvm-x-ame">isquy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*isquy</AUni> -<AUni ws="qvm-x-acl">*isquy</AUni> -<AUni ws="qvm-x-akh">*isquy</AUni> -<AUni ws="qvm-x-akl">*isquy</AUni> -<AUni ws="qvm-x-ame">*isquy</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.862" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4c10856a-f0e3-4cbc-8561-e010b65b9137" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*isquy</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2c7433dd-ff3f-45cd-888b-2b1a71d99024" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e6fc6233-14d0-45b0-ab9b-2b93fd4903e5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *isquy 
\entryTyp root 
\gENG pus 
\gSPN pus 
\e *isquy 
\c N0 
\mp +FinalC 
\ach esguy 
\akh esquy 
\acl esguy 
\akl esquy 
\ame isquy</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="111b8f9f-c25c-4716-8058-a144ce5528f6"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">relativizer</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="111e6213-5199-454e-be11-061e17979c42" ownerguid="7b7bf5a6-abac-4730-991d-a047417cc33b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="1120c276-995b-466d-90df-0020fa96defb"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">mikuy</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="11211f79-efd7-4f2c-8c35-500b9765d2ac" ownerguid="2b1967de-1836-4f04-8807-c0586e02dfd4"> -<Form> -<AUni ws="qvm-x-ach">traicionëru</AUni> -<AUni ws="qvm-x-acl">traicionëru; traicionëru; traicionëro</AUni> -<AUni ws="qvm-x-akh">traicionëru</AUni> -<AUni ws="qvm-x-akl">traicionëru; traicionëru; traicionëro</AUni> -<AUni ws="qvm-x-ame">traicionëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="11263764-3cb1-4b0b-a1b9-fc39b5d58420" ownerguid="7c234ccc-0dbe-42b0-a377-db99ebd2b51e"> -<ExampleWords> -<AUni ws="en">hunt, trap, snare, burn out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to killing animals?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="112b9de2-85e9-449f-8df8-2bc74f5b9f95" ownerguid="f0de6c5a-3df6-4483-8c63-2d8fcd6c97be"> -<ExampleWords> -<AUni ws="en">malnutrition, kwashiorkor, anemia, dystrophy, deficiency, anorexia</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the condition produced by not having enough food?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="112c0dfc-77da-4998-9fcb-6ded490bfd26"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tamya</AUni> -<AUni ws="qvm-x-acl">tamya</AUni> -<AUni ws="qvm-x-akh">tamya</AUni> -<AUni ws="qvm-x-akl">tamya</AUni> -<AUni ws="qvm-x-ame">tamya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tamya.v</AUni> -<AUni ws="qvm-x-acl">*tamya.v</AUni> -<AUni ws="qvm-x-akh">*tamya.v</AUni> -<AUni ws="qvm-x-akl">*tamya.v</AUni> -<AUni ws="qvm-x-ame">*tamya.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.794" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="affde07f-367a-40e0-ac90-2e2357aebe95" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tamya.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="69608420-f0bb-4ffc-8b28-66f8c4af8032" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4b8cd3d8-43d2-43c2-a138-4a550a87afbb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tamya.v 
\entryTyp root 
\gENG rain 
\gSPN llover 
\e *tamya.v 
\c V1 
\ach tamya 
\akh tamya 
\acl tamya 
\akl tamya 
\ame tamya</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="112c3108-503b-49b6-b13e-c6abb526c656" ownerguid="63ac84a0-40f5-463a-87e3-f9cbb48e16cd"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="112df881-e78a-4c44-b356-7f88a3c746ea" ownerguid="7a83fccc-3e3e-4659-846c-84d38e5e418a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">burn</AUni> -<AUni ws="es">quemar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2e48036b-ccfb-40e6-8525-f1ed026ea3c9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="11329ba5-a0d0-4efb-993c-aba5dc778120" ownerguid="1798391b-b843-4b16-bcf6-5cbdfece91c3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="1133ad78-9ce9-46aa-b181-bb6f7a84a07b" ownerguid="73d580ac-dc89-474c-8048-3453ebdda807"> -<Abbreviation> -<AUni ws="en">8.2.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.589" /> -<DateModified val="2022-9-23 16:55:8.589" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that something is near something else.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>83E At, Beside, Near, Far x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Near</AUni> -</Name> -<Questions> -<objsur guid="14377138-717d-4731-9cc2-dd2c38aaacd2" t="o" /> -<objsur guid="1952d9db-6039-4028-a561-c034c1d1e969" t="o" /> -<objsur guid="0f40f3ad-a1d9-48d4-9f23-b6428ebf09b1" t="o" /> -<objsur guid="73072771-3d07-4b0c-b4ca-f015c35bb8a6" t="o" /> -<objsur guid="3caefd0e-977c-40aa-8c51-91b6dd98d23d" t="o" /> -<objsur guid="75044ab0-2c7e-467f-a4c8-171c87fac728" t="o" /> -<objsur guid="55ca96b1-9b37-4dd1-b472-e5d580eac6a6" t="o" /> -<objsur guid="6f86ace3-12b3-4149-9f89-2b03bc156265" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="1135e661-d6a7-4f0b-9ea6-71e46f545596" ownerguid="d2c7f746-a2fd-4e12-bff5-84c612e376bd"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" t="r" /> -</Morph> -<Msa> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="1137590c-6f2f-4b69-b04e-f6a890a335a2" ownerguid="45f7b003-ade3-4efc-8dee-259dcbf80a4a"> -<Abbreviation> -<AUni ws="en">3.3.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to refusing to do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Refuse to do something</AUni> -</Name> -<Questions> -<objsur guid="bd3e9a8b-d8e6-4fc8-aa29-ffe057d74c6d" t="o" /> -<objsur guid="0332f71b-2f95-4fb6-ac14-36af83f3d31f" t="o" /> -<objsur guid="11498e57-d5b1-4981-8c77-296bd03aa5f0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="1138a898-5c76-425b-a9e9-07cf07d24621" ownerguid="3a9cec98-f941-4869-bc2b-454a48254b21"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 29.14 Aytsanta, garanta y ashashnincunataga campamentupita juc läduman jorgurcur rupatsinqui.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="1139f415-28b3-4f26-bea7-6a4b7cfa9790" ownerguid="93b8bd61-137a-4ebc-b12f-52fa5d2b3ea4"> -<ExampleWords> -<AUni ws="en">pick up, rise, freshen, gather, blow up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe when the wind begins?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="113a23b5-77a9-4ce6-bdc8-43fa85ff4912" ownerguid="785e7f1f-21ed-46b6-8599-c6ced4fd26d8"> -<ExampleWords> -<AUni ws="en">be promoted, move up the ladder, move on to higher things, promotion, rise, advancement</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer moving to a higher status or position in an organization?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="11417b76-1ed9-42bb-88d9-e42b937a33df" ownerguid="09d7ef9b-596d-4a68-b91d-e67fdaffa371"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoAffixAllomorph" guid="11433051-3e59-4f5e-b9d2-7440143d0388" ownerguid="f711d703-1eac-4059-b0da-24d34bd8df5e"> -<Form> -<AUni ws="qvm-x-ach">nö</AUni> -<AUni ws="qvm-x-acl">nö</AUni> -<AUni ws="qvm-x-akh">nö</AUni> -<AUni ws="qvm-x-akl">nö</AUni> -<AUni ws="qvm-x-ame">naw</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="11457e50-1991-419a-b92a-92639965bd90" ownerguid="5064da75-9e00-49bc-88af-d092af810018"> -<Form> -<AUni ws="qvm-x-ach">diccionariu; diccionario</AUni> -<AUni ws="qvm-x-acl">diccionariu; diccionariu; diccionario</AUni> -<AUni ws="qvm-x-akh">diccionariu; diccionario</AUni> -<AUni ws="qvm-x-akl">diccionariu; diccionariu; diccionario</AUni> -<AUni ws="qvm-x-ame">diccionariu; diccionario</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="1148684a-0f44-4b5a-9e3e-3823163cd4a1" ownerguid="e45b8bac-9623-4f84-a113-9dec13a8db64"> -<Abbreviation> -<AUni ws="en">3.5.1.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to announcing something--communicating something to many people.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Announce</AUni> -</Name> -<Questions> -<objsur guid="960b13d5-e3d5-4863-96ea-0e5c92343a46" t="o" /> -<objsur guid="6c9c1fa1-2178-43af-82f4-4a6147cead35" t="o" /> -<objsur guid="ff97e9ef-d81d-4140-84d2-7263107abac9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="11498e57-d5b1-4981-8c77-296bd03aa5f0" ownerguid="1137590c-6f2f-4b69-b04e-f6a890a335a2"> -<ExampleWords> -<AUni ws="en">refuse, deny, withhold</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to refusing to give something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="114a6f9f-ac38-4525-ae0c-aad56eabafed" ownerguid="9eaad86a-ba31-4ea5-8601-c90cfe296476"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="114c8f3d-991d-4296-a46f-26f3a69ee417" ownerguid="b6b73d41-e23f-4f22-b01e-7e75f4115fce"> -<ExampleWords> -<AUni ws="en">function, use</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the purpose of something like a machine or tool?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="114d446a-fba2-4ed1-95d1-79ca19ef67c6"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">ahaya</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="1152e254-d194-485d-9361-cd9f1588a56c" ownerguid="d22b41bd-20ca-4e70-b7ed-90f4460a44dc"> -<Form> -<AUni ws="qvm-x-ach">tamra</AUni> -<AUni ws="qvm-x-acl">tamra</AUni> -<AUni ws="qvm-x-akh">tamra</AUni> -<AUni ws="qvm-x-akl">tamra</AUni> -<AUni ws="qvm-x-ame">tamra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="1155eb80-4a8c-49f6-9875-2404f540d947" ownerguid="30941699-d337-4c85-bacf-d9cd93743610"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">perhaps</AUni> -<AUni ws="es">acaso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="285e456c-b430-4ff6-b6bf-b0f01134281a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="11569ae9-566d-4ed7-adc7-dc5b4177c6d0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">winchi</AUni> -<AUni ws="qvm-x-acl">winchi; winchi; winche</AUni> -<AUni ws="qvm-x-akh">winchi</AUni> -<AUni ws="qvm-x-akl">winchi; winchi; winche</AUni> -<AUni ws="qvm-x-ame">winchi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+buenos.días</AUni> -<AUni ws="qvm-x-acl">+buenos.días</AUni> -<AUni ws="qvm-x-akh">+buenos.días</AUni> -<AUni ws="qvm-x-akl">+buenos.días</AUni> -<AUni ws="qvm-x-ame">+buenos.días</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.991" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="83bb4a8e-30b8-434c-bf80-b83694fabb5a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+buenos.días</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8fec0515-0850-4061-b779-5a8386b8e370" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b4d00173-3223-408b-a7b0-f78edbfd7c41" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +buenos.días 
\entryTyp root 
\gENG good.day 
\gSPN buenos.días 
\e +buenos.días 
\c N0 V2 
\mp +assimilated 
\ach winchi 
\akh winchi 
\acl winchi / _# 
\acl winchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl winche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl winchi / _# 
\akl winchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl winche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame winchi 
\mp +FinalI</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1156c7c7-2ff1-4c14-97af-f6819a30c801" ownerguid="79ca34ea-68a7-4fe9-b5ac-4f3d6a1ab99d"> -<ExampleWords> -<AUni ws="en">newborn, baby, babe, infant, nursling, toddler, two-year-old, three-year-old, ankle-biter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a very small child?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="11592f63-a052-42c5-ad1a-264986616e3d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">airi; aire</AUni> -<AUni ws="qvm-x-acl">airi; airi; aire</AUni> -<AUni ws="qvm-x-akh">airi; aire</AUni> -<AUni ws="qvm-x-akl">airi; airi; aire</AUni> -<AUni ws="qvm-x-ame">airi; aire</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+aire</AUni> -<AUni ws="qvm-x-acl">+aire</AUni> -<AUni ws="qvm-x-akh">+aire</AUni> -<AUni ws="qvm-x-akl">+aire</AUni> -<AUni ws="qvm-x-ame">+aire</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.677" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3590432f-19ad-4ecc-89b9-7d7ab3a5d567" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+aire</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="662a3e97-f3cb-4f72-b67c-196f87a3d18d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5f6d7724-1ce8-45df-a285-7d36ba7c8947" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +aire 
\entryTyp root 
\gENG 
\gSPN 
\e +aire 
\c N0 
\mp +FinalI 
\ach airi / ~_# 
\ach aire / _# 
\akh airi / ~_# 
\akh aire / _# 
\acl airi / ~_# 
\acl airi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl aire +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl airi / ~_# 
\akl airi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl aire +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame airi / ~_# 
\ame aire / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1159cd91-1fe5-48dd-b10f-92068fda7349" ownerguid="776300df-bc16-4f81-a296-a5cb15251ccc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7f7b40a3-bbc4-4687-8c2b-668375d0d311" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="115aa277-205f-4eab-85a7-a66acaa9be9d" ownerguid="6c36a680-4ff4-43b9-a7c2-9037ceb0d3f6"> -<ExampleWords> -<AUni ws="en">circle, loop, ball, globe, sphere, arch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something that is round?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="115b8eaa-9743-4f66-a020-2f243d5f651b" ownerguid="d0959394-18a5-4fbf-a6b5-173495682fd3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">body</AUni> -<AUni ws="es">cuerpo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e91bb53d-8656-4d06-bd98-1ac8cae36bb9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="115c00ce-8c52-4e29-9aba-ae1eed0cc618" ownerguid="03458dde-6a66-459e-a778-8898a462d17b"> -<Form> -<AUni ws="qvm-x-ach">chari</AUni> -<AUni ws="qvm-x-acl">chari</AUni> -<AUni ws="qvm-x-akh">chari</AUni> -<AUni ws="qvm-x-akl">chari</AUni> -<AUni ws="qvm-x-ame">chari</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e1-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="8378f21c-cf54-437a-9d41-a303c764b326" t="r" /> -</PhoneEnv> -</rt> -<rt class="MoStemAllomorph" guid="115e7ac3-ce09-4701-a59f-2efa2719fb40" ownerguid="8f0de903-8416-4385-b9cc-f0cc55ec340c"> -<Form> -<AUni ws="qvm-x-ach">segpi</AUni> -<AUni ws="qvm-x-acl">segpi; segpe</AUni> -<AUni ws="qvm-x-akh">seqpi</AUni> -<AUni ws="qvm-x-akl">seqpi; seqpe</AUni> -<AUni ws="qvm-x-ame">siqpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="115fd3eb-b5cc-4209-afe2-600ea3b2101d" ownerguid="21bcc306-13cb-4162-98b3-2ba319ba14ea"> -<ExampleWords> -<AUni ws="en">agate, amethyst, beryl, carnelian, chalcedony, chrysolite, chrysoprase, diamond, emerald, garnet, ivory, jacinth, jasper, marble, onyx, pearl, quartz, ruby, sapphire, sardonyx, topaz</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of jewels are there?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="11628750-a93f-4d51-b38f-ee50ddcfbfab"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">canale:ta</AUni> -<AUni ws="qvm-x-acl">canale:ta</AUni> -<AUni ws="qvm-x-akh">canale:ta</AUni> -<AUni ws="qvm-x-akl">canale:ta</AUni> -<AUni ws="qvm-x-ame">canale:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+canaleta</AUni> -<AUni ws="qvm-x-acl">+canaleta</AUni> -<AUni ws="qvm-x-akh">+canaleta</AUni> -<AUni ws="qvm-x-akl">+canaleta</AUni> -<AUni ws="qvm-x-ame">+canaleta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.390" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="10ed0330-b4e8-4d0d-8173-a54c79aab6d5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+canaleta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1260485c-c406-4b2e-8170-8baf210e7c07" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b667f48d-aa15-4849-a1e9-73e7979f3b49" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +canaleta 
\entryTyp root 
\gENG 
\gSPN 
\e +canaleta 
\c N0 
\ach canale:ta 
\akh canale:ta 
\acl canale:ta 
\akl canale:ta 
\ame canale:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1162ea4b-fa62-482c-93e3-ba6a247c22c9" ownerguid="cabbb65d-f1ee-408d-847a-814f2a83e682"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/N0 V2/N0 N0/N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="ca26f1b9-f8cf-4106-a1b2-e3bc5ca10a48" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">PRT2</AUni> -<AUni ws="es">PRT2</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5a6f0521-2196-49ef-ac84-f9d082f56194" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="11659f73-c18d-4e6b-b451-56ef9e75ae47" ownerguid="f38f8344-838f-44ba-b103-22289c2d2793"> -<ExampleWords> -<AUni ws="en">muddy, boggy, marshy, swampy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe the ground when it is wet?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="11665f1d-aca9-4699-afb2-bcdea69c6645" ownerguid="83adeb9d-c0be-4073-894d-913014420280"> -<Abbreviation> -<AUni ws="en">8.3.7.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is important.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>65F Important, Unimportant</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Important</AUni> -</Name> -<Questions> -<objsur guid="2ff52e64-c4cc-4bfa-b246-c01309cfa955" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="8938e132-6534-4428-9b03-cb1f459b7cbe" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="1168d136-6344-4f8f-b717-9d921e1e8cf9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">campu; campo</AUni> -<AUni ws="qvm-x-acl">campu; campu; campo</AUni> -<AUni ws="qvm-x-akh">campu; campo</AUni> -<AUni ws="qvm-x-akl">campu; campu; campo</AUni> -<AUni ws="qvm-x-ame">campu; campo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+campo</AUni> -<AUni ws="qvm-x-acl">+campo</AUni> -<AUni ws="qvm-x-akh">+campo</AUni> -<AUni ws="qvm-x-akl">+campo</AUni> -<AUni ws="qvm-x-ame">+campo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.39" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5d045df9-8dbb-4018-80f4-fb7dee7a2085" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+campo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="91710373-7c97-4416-af9e-871245876b9b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ea85ea43-2d9d-4a5f-b7c6-df64009a67fe" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +campo 
\entryTyp root 
\gENG playing.field 
\gSPN campo 
\e +campo 
\c N0 
\ach campu / ~_# 
\ach campo / _# 
\akh campu / ~_# 
\akh campo / _# 
\acl campu / ~_# 
\acl campu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl campo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl campu / ~_# 
\akl campu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl campo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame campu / ~_# 
\ame campo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="11690994-4acd-4e9d-a63a-a5229ffd0938" ownerguid="bfa3be74-0390-4e2e-bdb7-ed41eb67e4f1"> -<ExampleWords> -<AUni ws="en">rain, precipitation, rainfall</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the rain?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="116bef13-e80f-4a15-bb0a-bb7b3794ffac" ownerguid="aab82dc7-de9f-44b3-845e-0c926f47cfb6"> -<Abbreviation> -<AUni ws="en">9.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this section for cases that bear a relationship to the 'Patient' of a proposition.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Patient-related cases</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="ca0f9b9b-31fc-4ae6-9563-abedc4a5af98" t="o" /> -<objsur guid="99c51a2c-ad49-48a6-bb0b-f059da745ec4" t="o" /> -<objsur guid="55b93f1c-6ce0-4d13-ae1e-f06360e4689c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="116e2dd4-5010-4170-b40c-81e8a6efed96" ownerguid="262fc4ae-7735-465b-934b-2125d95de147"> -<ExampleWords> -<AUni ws="en">be jealous, feel jealous, jealously, envy (v), begrudge, turn green, covet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling envious?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="11705186-50f2-478e-9e44-b30153f998aa" ownerguid="2269aeba-112c-4eab-a1e5-7d4f6aaf6c8d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="1172178a-2fae-4a9d-b05f-e1f56c83ff7a" ownerguid="38473463-4b92-4681-8fd0-0aca0342e88a"> -<ExampleWords> -<AUni ws="en">worm, shellfish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to small animals such as worms?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="11773808-47d6-42f7-923d-16a368585d22"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fi:la</AUni> -<AUni ws="qvm-x-acl">fi:la</AUni> -<AUni ws="qvm-x-akh">fi:la</AUni> -<AUni ws="qvm-x-akl">fi:la</AUni> -<AUni ws="qvm-x-ame">fi:la</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fila</AUni> -<AUni ws="qvm-x-acl">+fila</AUni> -<AUni ws="qvm-x-akh">+fila</AUni> -<AUni ws="qvm-x-akl">+fila</AUni> -<AUni ws="qvm-x-ame">+fila</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.548" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="065ee42e-c59e-4559-b009-2b76742c836a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fila</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5ab35d0b-871e-4ffc-8ff6-914ddc454db3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="83d86711-f889-4c3f-b3ed-6f2d8721d9cf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fila 
\entryTyp root 
\gENG line 
\gSPN fila 
\e +fila 
\c N0 
\ach fi:la 
\akh fi:la 
\acl fi:la 
\akl fi:la 
\ame fi:la</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="117999bf-4c47-4ac1-9417-234c526777a0" ownerguid="ccbbd16f-58c5-45c1-bfff-1fba64d9740e"> -<Question> -<AUni ws="en">(14) The preceding terms or "Aspects" are not usually relevant to stative words.</AUni> -</Question> -</rt> -<rt class="LexSense" guid="117c5a83-542b-4a46-8cc1-c331a62f9288" ownerguid="0080f1e6-54aa-45d6-9505-da5a488bc282"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">palm</AUni> -<AUni ws="es">palmera</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2db4a128-1dec-4363-b57b-29e084ca6a75" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="117d15f5-27ea-4ed5-973a-690e38c6e0ca"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ju:ya</AUni> -<AUni ws="qvm-x-acl">ju:ya</AUni> -<AUni ws="qvm-x-akh">ju:ya</AUni> -<AUni ws="qvm-x-akl">ju:ya</AUni> -<AUni ws="qvm-x-ame">hu:ya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hu:ya</AUni> -<AUni ws="qvm-x-acl">*hu:ya</AUni> -<AUni ws="qvm-x-akh">*hu:ya</AUni> -<AUni ws="qvm-x-akl">*hu:ya</AUni> -<AUni ws="qvm-x-ame">*hu:ya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.779" /> -<DateModified val="2022-10-10 21:19:47.697" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7d2b7fdf-c67f-424c-a64a-2f2e8e84a768" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hu:ya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b759a244-6b1f-41c6-a799-67dd1cc935e8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5a1bcba2-4b2d-4fcc-a51e-50f75d1cc603" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hu:ya 
\entryTyp root 
\gENG to.low 
\gSPN 
\e *hu:ya 
\c V1 
\ach ju:ya 
\akh ju:ya 
\acl ju:ya 
\akl ju:ya 
\ame hu:ya 
\i 1SA 15.14 Tsaynog niptinna Samuel caynog nergan: <<¿Imanirtag tsauraga uyshacuna y cabracuna wagamushganta y törucuna jüyamushganta mayaycä?>></Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="117ddddb-ba3f-4c6c-92cb-0a361448a812" ownerguid="da066ca6-9a83-4438-bb50-f98f0d18e877"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="117ee575-9394-4412-a0be-f81f0d169211" ownerguid="9b37dedc-eccc-41f7-9aa8-0622cb46051c"> -<Form> -<AUni ws="qvm-x-ach">pedasya</AUni> -<AUni ws="qvm-x-acl">pedasya</AUni> -<AUni ws="qvm-x-akh">pedasya</AUni> -<AUni ws="qvm-x-akl">pedasya</AUni> -<AUni ws="qvm-x-ame">pedasya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="117fefbb-1a82-444f-a00d-4af9adf357a5" ownerguid="85b50531-5fc2-4a1b-9353-a36b8d62d308"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="11803c86-bcdf-48c6-abc0-1f74eb9c32ed" ownerguid="57237095-23cf-43ba-aa6c-89cecdd35ff8"> -<ExampleWords> -<AUni ws="en">orphan, fatherless, motherless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a child whose parents have died?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1182cf87-4cbf-40d0-ab5f-535c8fe7e970" ownerguid="0b12ab7f-f74e-4328-8bb3-958003f74bb2"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="1185f098-7098-4d44-ac8d-0854255ca0fc" ownerguid="143aced3-f3a9-42f9-b618-3eb034c93fed"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">period</AUni> -<AUni ws="es">punto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="71599d85-cb1e-4444-90e9-b873583f04cd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="PunctuationForm" guid="118b4c35-9cd6-403e-8b8c-95610a267af2"> -<Form> -<Str> -<Run ws="qvm-x-akh">%</Run> -</Str> -</Form> -</rt> -<rt class="Segment" guid="118e3173-7a08-400e-9d81-dde5ef0ec3d2" ownerguid="ae55d49a-f4f4-4a32-a46b-9764902f0e41"> -<Analyses> -<objsur guid="f51d335c-a490-40e6-b1bb-b5df8792ba3b" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexSense" guid="118f16b7-97fb-4529-9bd4-59681124b167" ownerguid="d71826d3-83ba-4fd5-ad37-499370411f03"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">yikes!</AUni> -<AUni ws="es">ay!</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3d800574-d4ef-47b8-a1ff-60c90b533455" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="1192b9b6-fa7b-4279-bbc7-38599e8a40c6" ownerguid="4e17244e-6b00-463c-86b0-e24c799ec082"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.able</AUni> -<AUni ws="es">poder</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="54301972-0816-41c9-a908-b905e0a23485" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="1198b00e-959b-49dc-a4b2-4ca4e9b1cad2" ownerguid="f56a2511-10cc-4829-940d-49051429bfba"> -<ExampleWords> -<AUni ws="en">surface</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to the top of a liquid?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="1198c75a-06ed-4afe-a495-5474509c8fa3"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Tsaypa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="119efdc8-1663-47ab-80d1-fbdef8a470d4" ownerguid="f9d020d6-b129-4bb8-9509-3b4a6c27482e"> -<ExampleWords> -<AUni ws="en">interested, curious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels interested?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="119fefff-529d-43be-8a41-6f011df057a1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tuyu</AUni> -<AUni ws="qvm-x-acl">tuyu; tuyu; tuyo</AUni> -<AUni ws="qvm-x-akh">tuyu</AUni> -<AUni ws="qvm-x-akl">tuyu; tuyu; tuyo</AUni> -<AUni ws="qvm-x-ame">tuyu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tuyu</AUni> -<AUni ws="qvm-x-acl">*tuyu</AUni> -<AUni ws="qvm-x-akh">*tuyu</AUni> -<AUni ws="qvm-x-akl">*tuyu</AUni> -<AUni ws="qvm-x-ame">*tuyu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.27" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="09ad79ad-6c71-4af5-8077-4aadd45a0758" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tuyu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eec7eeb9-8922-43fc-81da-46d32095e6c2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e714a01c-1970-4da0-aee9-ce9661f9cf39" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tuyu 
\entryTyp root 
\gENG 
\gSPN 
\e *tuyu 
\c N0 
\ach tuyu 
\akh tuyu 
\acl tuyu / _# 
\acl tuyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tuyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tuyu / _# 
\akl tuyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tuyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tuyu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="11a1d285-620e-445e-80f3-385f308ab194" ownerguid="d80360f9-7319-40a7-a2bc-fd8718711ba4"> -<ExampleWords> -<AUni ws="en">previous (day), last (night), the (week) before, the preceding (year)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe a time that comes before another one?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="11a3107d-9ead-47d3-9fa9-db8831eabaab" ownerguid="ccbbd16f-58c5-45c1-bfff-1fba64d9740e"> -<ExampleWords> -<AUni ws="en">continue, continuous, keep on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(22) What words are used to indicate something is continuing?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="11a4f0f5-2d43-48c2-8805-882d27d0e04b" ownerguid="e9f1ef3a-fda5-4b3f-9101-a4b7c421a607"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="5dabd351-7655-4bee-8719-ccda4522241e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="11a56a16-e4f6-44ca-b503-a74021d11082" ownerguid="b4fe4698-54a2-4bcd-9490-e07ee1ee97af"> -<ExampleWords> -<AUni ws="en">cry your eyes out, tears roll down your cheeks, eyes full of tears, eyes are brimming with tears, cry your heart out, cry yourself to sleep</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to crying a lot?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="11a5ac0e-d34b-46c1-837e-db07b72c3c11" ownerguid="7ee92ca4-19aa-4abd-9f88-508766acc39c"> -<ExampleWords> -<AUni ws="en">unroll, unfurl</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to unrolling something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="11a665e8-016f-4b0c-9b61-317f29da6cdf" ownerguid="17bbd739-7fc0-4013-97f0-1805e465c65b"> -<Form> -<AUni ws="qvm-x-ach">malqueriädu</AUni> -<AUni ws="qvm-x-acl">malqueriädu; malqueriädu; malqueriädo</AUni> -<AUni ws="qvm-x-akh">malqueriädu</AUni> -<AUni ws="qvm-x-akl">malqueriädu; malqueriädu; malqueriädo</AUni> -<AUni ws="qvm-x-ame">malqueriädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="11a8085d-c69a-45e5-b97f-c18157752f07"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">co:chi; co:chi</AUni> -<AUni ws="qvm-x-acl">co:chi; co:chi; co:che</AUni> -<AUni ws="qvm-x-akh">co:chi; co:chi</AUni> -<AUni ws="qvm-x-akl">co:chi; co:chi; co:che</AUni> -<AUni ws="qvm-x-ame">co:chi; co:chi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+coche</AUni> -<AUni ws="qvm-x-acl">+coche</AUni> -<AUni ws="qvm-x-akh">+coche</AUni> -<AUni ws="qvm-x-akl">+coche</AUni> -<AUni ws="qvm-x-ame">+coche</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.140" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5866c663-06b9-4909-9567-4ae361229fea" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+coche</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9cd7f456-ee3a-4af0-a813-ffd2830b3c6e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="66a4f01b-ecb4-477f-b69c-03ee8e4cbfe0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +coche 
\entryTyp root 
\gENG coach 
\gSPN coche 
\e +coche 
\c N0 
\mp +FinalI 
\ach co:chi / _# 
\ach co:chi / ~_# 
\akh co:chi / _# 
\akh co:chi / ~_# 
\acl co:chi / _# 
\acl co:chi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl co:che +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl co:chi / _# 
\akl co:chi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl co:che +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame co:chi / _# 
\ame co:chi / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="11a9ae4a-4348-4a12-89b6-ab4fba7e692f" ownerguid="1ec85151-eba0-48f4-b56d-4f8040602a4b"> -<ExampleWords> -<AUni ws="en">inherit, receive an inheritance, succeed to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to inheriting something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="11aa56ed-dd43-4e91-b86a-29ac9c50b891" ownerguid="50c1a392-2928-407a-8306-3c70141e375e"> -<ExampleWords> -<AUni ws="en">future (adj), coming, forthcoming, upcoming, in the offing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that will exist or happen in the future?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="11aaee7f-f4d6-45e5-8fd5-08c2dee1fd8c" ownerguid="390ad7fc-8360-4eae-8736-3aedc15ae659"> -<ExampleWords> -<AUni ws="en">scale, large scale, small scale, projection</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the relationship between the size of the map and the size of the real land?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="11ac6b8e-7ca3-45e4-a15d-104923454136" ownerguid="b5134925-6924-4e53-87c9-71a9a7042005"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="11adb98f-ae31-4255-933e-663f0c38a61c" ownerguid="8b98c27e-351e-4953-ba13-d4d1e282ea33"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">teta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="da3cbefa-53b2-488a-9973-500ce70108e4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="11aec715-bc0e-4620-a71f-5f0563827a79" ownerguid="541dfa10-bf97-4713-a534-9cbcc7f66bc9"> -<ExampleWords> -<AUni ws="en">position, view, outlook, perspective, leaning, opinion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the position a person takes toward a question or issue?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="11aefcb9-b91f-41e6-88fa-8cd1a99e25e7" ownerguid="b49c25f0-a465-4350-86be-6787787e0eb7"> -<Form> -<AUni ws="qvm-x-ach">tijiral</AUni> -<AUni ws="qvm-x-acl">tijiral</AUni> -<AUni ws="qvm-x-akh">tijiral</AUni> -<AUni ws="qvm-x-akl">tijiral</AUni> -<AUni ws="qvm-x-ame">tijiral</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="11b0dd4c-ae64-45a3-8210-dc7ae6f420b4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gapra</AUni> -<AUni ws="qvm-x-acl">gapra</AUni> -<AUni ws="qvm-x-akh">qapra</AUni> -<AUni ws="qvm-x-akl">qapra</AUni> -<AUni ws="qvm-x-ame">qapra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qapra</AUni> -<AUni ws="qvm-x-acl">*qapra</AUni> -<AUni ws="qvm-x-akh">*qapra</AUni> -<AUni ws="qvm-x-akl">*qapra</AUni> -<AUni ws="qvm-x-ame">*qapra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.94" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f5a88569-6377-41ae-a5bc-06ab6129d01b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qapra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="53b976d9-3142-483f-a72b-e21f5fdc07f8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d98491fe-8843-4b52-834c-b854e839a29a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qapra 
\entryTyp root 
\gENG blind 
\gSPN ciego 
\e *qapra 
\c N0 
\ach gapra 
\akh qapra 
\acl gapra 
\akl qapra 
\ame qapra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="11b4a6b8-bcfa-4d1f-828d-a816464b4aa2" ownerguid="54a2f829-8cd0-4722-afba-a9e1351f0b3d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="11b78a83-0422-49fa-8e2b-42f5e31ece98" ownerguid="c5fda729-dae3-4ac7-aae3-ed4210571651"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.govern</AUni> -<AUni ws="es">gobernar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="36b032b5-ab75-4b7b-8531-47e9a184fc9b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="11b849f9-04a3-4a8e-9bfc-0bf997a71907" ownerguid="bba30b56-6cd8-4542-81ab-f983cf1354bd"> -<ExampleWords> -<AUni ws="en">distance, how far</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to how far something is?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="11befe8a-d0d4-499e-869c-7b30f5e6c599" ownerguid="9f792202-8023-4ef3-b269-5ae4b6908a0b"> -<ExampleWords> -<AUni ws="en">sacrifice, offer a sacrifice, offer up, burn on the altar, devote, consecrate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to offering a sacrifice?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="11bfea85-eaa6-4e9a-acd0-f04e83dc4607" ownerguid="14e5a753-b44a-4eda-bef6-da47add5e658"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fall</AUni> -<AUni ws="es">caerse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="91baed0d-3def-43af-ad75-01b6c4cc1b51" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="11c1b1cd-08a6-446f-95e5-24fd20b36b4d" ownerguid="d00bdac4-098c-4a8c-9e91-cabdfd6a2205"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="11c24a95-ec35-4d41-9d2d-d46b318a05d1" ownerguid="06cc958d-f7c2-4879-a166-719c7da8848a"> -<Form> -<AUni ws="qvm-x-ach">selva</AUni> -<AUni ws="qvm-x-acl">selva</AUni> -<AUni ws="qvm-x-akh">selva</AUni> -<AUni ws="qvm-x-akl">selva</AUni> -<AUni ws="qvm-x-ame">selva</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="11c918f1-ab12-4cc7-8a78-32c972895b51" ownerguid="dc5efcfb-dc41-4af4-9357-5eb7c6578708"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="11caaa01-c9f7-4cc0-b547-957d77b69fbb" ownerguid="8ada287c-bb36-440c-a7cb-7d311cf9a4db"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">demon</AUni> -<AUni ws="es">demonio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7caaf1f7-c371-4a07-a8a1-3e3997b787d2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="11cf45ec-f9d6-4c99-8782-738e26a342c8" ownerguid="e931da8a-efc1-46cb-836a-72fba4a1eb4f"> -<Abbreviation> -<AUni ws="en">7.3.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.528" /> -<DateModified val="2022-9-23 16:55:8.528" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to taking something or someone from its place.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Take something from somewhere</AUni> -</Name> -<Questions> -<objsur guid="1fe87376-1221-4adc-b784-da0f8e9c47de" t="o" /> -<objsur guid="7973d41d-6b76-4f6a-ab2c-4f1bf94fb5b2" t="o" /> -<objsur guid="0402cddd-0dce-46f9-b485-b3343fe8258f" t="o" /> -<objsur guid="bdc19513-7246-4678-99fe-9b4297d3f81f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="11d4dac7-0c21-4935-845f-aaacf54cd830" ownerguid="3ba9b660-33eb-4ab2-81b2-1ea05bfbdd91"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="11d570b2-926c-4e7e-9825-756483cad699" ownerguid="4f19ab95-428a-4a0b-a069-ca8be6b72b08"> -<ExampleWords> -<AUni ws="en">visit, appointment, interview, stay, time with, visitation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the event of visiting someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="11d6aed5-7a8f-44f7-89c6-45f502426208" ownerguid="9eaad86a-ba31-4ea5-8601-c90cfe296476"> -<Form> -<AUni ws="qvm-x-ach">marpu</AUni> -<AUni ws="qvm-x-acl">marpu; marpo</AUni> -<AUni ws="qvm-x-akh">marpu</AUni> -<AUni ws="qvm-x-akl">marpu; marpo</AUni> -<AUni ws="qvm-x-ame">marpu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="11d80cbb-53f2-4e1f-b6a4-e3c044229476" ownerguid="82aabdc6-ccee-4559-9a75-d2d11adab21e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="11d85f25-ef03-4de4-8e1d-ca99136de82e" ownerguid="82a4ae36-8e70-4c0d-8144-ad9fc3c0e04f"> -<ExampleWords> -<AUni ws="en">horizontal, prone, prostrate, longwise, flat on the ground, on its side, lie, prone, flush, on an even keel, on the level, parallel to the ground</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something in a horizontal position?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="11d93cd0-4afb-44e0-b841-2475d4b69585"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">canasta</AUni> -<AUni ws="qvm-x-acl">canasta</AUni> -<AUni ws="qvm-x-akh">canasta</AUni> -<AUni ws="qvm-x-akl">canasta</AUni> -<AUni ws="qvm-x-ame">canasta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+canasta</AUni> -<AUni ws="qvm-x-acl">+canasta</AUni> -<AUni ws="qvm-x-akh">+canasta</AUni> -<AUni ws="qvm-x-akl">+canasta</AUni> -<AUni ws="qvm-x-ame">+canasta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.487" /> -<DateModified val="2022-10-16 15:13:23.971" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="841cb6c1-8319-4c4d-86d3-310874f411f3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">canasta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9944ed58-6d62-48d8-9c37-57d362afb3eb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="04c6fa81-427d-46a2-ac37-04d39490f376" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx canasta 
\entryTyp root 
\gENG basket 
\gSPN canasta 
\e +canasta 
\c N0 
\ach canasta 
\akh canasta 
\acl canasta 
\akl canasta 
\ame canasta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="11dab3f9-8066-46fd-b830-9a50d23f6428" ownerguid="08ca6416-c865-4ce1-a654-0d393be6e17f"> -<Form> -<AUni ws="qvm-x-ach">onguina</AUni> -<AUni ws="qvm-x-acl">onguina</AUni> -<AUni ws="qvm-x-akh">onqina</AUni> -<AUni ws="qvm-x-akl">onqina</AUni> -<AUni ws="qvm-x-ame">unqina</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="11dafa01-3970-4db3-936c-63f269dc1275" ownerguid="e154b572-c987-4eca-a8d4-8eb92be44b0e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 20.10 Tsaymi lapanta polvuypa polvur ushashag.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="11dc43fd-5bb2-4c5c-95b9-12d0b8e9985f" ownerguid="4194f836-1472-4329-8411-1220e9a7d06e"> -<Form> -<AUni ws="qvm-x-ach">sïgui</AUni> -<AUni ws="qvm-x-acl">sïgui; sïgue</AUni> -<AUni ws="qvm-x-akh">sïgui</AUni> -<AUni ws="qvm-x-akl">sïgui; sïgue</AUni> -<AUni ws="qvm-x-ame">sïgui</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="11de0591-7d54-479b-84b2-0b48471a8e11"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pi:may</AUni> -<AUni ws="qvm-x-acl">pi:may</AUni> -<AUni ws="qvm-x-akh">pi:may</AUni> -<AUni ws="qvm-x-akl">pi:may</AUni> -<AUni ws="qvm-x-ame">pi:may</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pi:may</AUni> -<AUni ws="qvm-x-acl">*pi:may</AUni> -<AUni ws="qvm-x-akh">*pi:may</AUni> -<AUni ws="qvm-x-akl">*pi:may</AUni> -<AUni ws="qvm-x-ame">*pi:may</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.840" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d95579f6-8b1c-4d90-935f-83c64d93ca9c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pi:may</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4c5958fd-1ae9-4fe5-934f-7088e768ec2c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4f0c0de1-ffbd-470a-bd4e-eaf2cf88bcd1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pi:may 
\entryTyp root 
\gENG 
\gSPN quien.sea 
\e *pi:may 
\c N0 
\mp NeverForeshortened 
\ach pi:may 
\akh pi:may 
\acl pi:may 
\akl pi:may 
\ame pi:may 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="11df3c07-d2cc-4a61-b12b-d83002e90e2d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">e:ji; e:ji</AUni> -<AUni ws="qvm-x-acl">e:ji; e:ji; e:je</AUni> -<AUni ws="qvm-x-akh">e:ji; e:ji</AUni> -<AUni ws="qvm-x-akl">e:ji; e:ji; e:je</AUni> -<AUni ws="qvm-x-ame">e:ji; e:ji</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+eje</AUni> -<AUni ws="qvm-x-acl">+eje</AUni> -<AUni ws="qvm-x-akh">+eje</AUni> -<AUni ws="qvm-x-akl">+eje</AUni> -<AUni ws="qvm-x-ame">+eje</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.447" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="144a2fc6-ce5b-4c03-bd39-e1c7ea72e9b4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+eje</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f1fb2725-ed48-485c-ade6-1965497cd16e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7a3ac993-d868-426d-8bf3-2748482f89db" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +eje 
\entryTyp root 
\gENG 
\gSPN 
\e +eje 
\c N0 
\mp +FinalI 
\ach e:ji / _# 
\ach e:ji / ~_# 
\akh e:ji / _# 
\akh e:ji / ~_# 
\acl e:ji / _# 
\acl e:ji +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl e:je +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl e:ji / _# 
\akl e:ji +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl e:je +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame e:ji / _# 
\ame e:ji / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="11df614c-1a0d-4d41-b46c-522b1662df88" ownerguid="41c075a9-cc3f-4e64-8b24-b0e9d16472ca"> -<Form> -<AUni ws="qvm-x-ach">alga</AUni> -<AUni ws="qvm-x-acl">alga</AUni> -<AUni ws="qvm-x-akh">alqa</AUni> -<AUni ws="qvm-x-akl">alqa</AUni> -<AUni ws="qvm-x-ame">alqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="11e20d5e-801e-4971-8906-04cea1e96137" ownerguid="f2b94c3d-b681-4909-900a-083e287ef045"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="70ad8542-1ff9-4e21-ab35-5fa67e1269b5" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">stomach.growl</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="29b081c1-f41b-4355-be45-de4bff6cd4fc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="11e22a4a-f851-417e-a0d2-f9369791205d" ownerguid="7c80f6ee-e76d-4903-aee6-7a33d1da3f75"> -<ExampleWords> -<AUni ws="en">covered, draped, hung, wrapped</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that has been covered?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="11e83147-fac8-422d-99dc-be0903a78eb4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">junta</AUni> -<AUni ws="qvm-x-acl">junta</AUni> -<AUni ws="qvm-x-akh">junta</AUni> -<AUni ws="qvm-x-akl">junta</AUni> -<AUni ws="qvm-x-ame">junta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+junta</AUni> -<AUni ws="qvm-x-acl">+junta</AUni> -<AUni ws="qvm-x-akh">+junta</AUni> -<AUni ws="qvm-x-akl">+junta</AUni> -<AUni ws="qvm-x-ame">+junta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.892" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cbb63301-df75-40fc-aa58-267eddc00d80" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+junta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="23d7d6c2-f060-4af1-b8ab-348aa14504ee" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8b76e6d8-8237-4afd-9e83-648751112f31" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +junta 
\entryTyp root 
\gENG full 
\gSPN lleno 
\e +junta 
\c N0 
\ach junta 
\akh junta 
\acl junta 
\akl junta 
\ame junta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="11ec192e-7ec6-405b-af8c-647a26ee1e09" ownerguid="d2ca3194-e393-480e-ae1d-dd67bed55227"> -<ExampleWords> -<AUni ws="en">grow, growth, branch out, put down roots, spread, develop, extend, flourish, spring, swell, thrive, photosynthesis</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the growth of plants?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="11f00922-626d-4e6c-a5d7-8747597b34c5" ownerguid="7678a0e6-fc24-4695-b9d7-196c8f74c3c1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">suit</AUni> -<AUni ws="es">terno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="eac35f04-27d5-47d9-b6bf-db6cd435875a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="11f85ff3-8d15-431b-af47-45e271989db6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsacwa</AUni> -<AUni ws="qvm-x-acl">tsacwa</AUni> -<AUni ws="qvm-x-akh">tsakwa</AUni> -<AUni ws="qvm-x-akl">tsakwa</AUni> -<AUni ws="qvm-x-ame">tsakwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chakwa</AUni> -<AUni ws="qvm-x-acl">*chakwa</AUni> -<AUni ws="qvm-x-akh">*chakwa</AUni> -<AUni ws="qvm-x-akl">*chakwa</AUni> -<AUni ws="qvm-x-ame">*chakwa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.264" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2f8d3d51-bd5c-4d37-914c-4e5adf14601e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chakwa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b40a5aec-21d4-4c5a-9b21-5b7b5ad0c9a7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c73a8adb-490b-4edb-bd40-b60d5f33c4d3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chakwa 
\entryTyp root 
\gENG partridge 
\gSPN perdíz 
\e *chakwa 
\c N0 
\ach tsacwa 
\akh tsakwa 
\acl tsacwa 
\akl tsakwa 
\ame tsakwa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="11f8dd35-2de7-4903-8164-6683c458d3cf" ownerguid="13a3d6a8-b958-4761-9529-5348cbddce64"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="11f98281-761a-4a13-91fe-b565ef42762a" ownerguid="fd2ee979-9301-46e9-ac89-1243592d6b9b"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="11fec6dc-37fd-4903-9273-e4ef005fff77" ownerguid="fa9a6fa0-fc86-4e9d-a04b-b7aa62cde6b2"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoInflAffMsa" guid="11ffd77d-802d-41f0-86af-94f639eca49d" ownerguid="d32131fc-fd15-4162-8310-5223a1c65c20"> -<FromProdRestrict> -<objsur guid="2951ac05-262c-4ba5-9799-d306995c3bc8" t="r" /> -</FromProdRestrict> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="ca45d090-0c3b-4e36-9a40-58963588cdaf" t="r" /> -</Slots> -</rt> -<rt class="MoStemAllomorph" guid="1205ad97-fc0e-46b3-a817-db6d8eefe92f" ownerguid="3770ee03-dd32-4f7e-9ef2-98699bc413e5"> -<Form> -<AUni ws="qvm-x-ach">gapi</AUni> -<AUni ws="qvm-x-acl">gapi; gape</AUni> -<AUni ws="qvm-x-akh">qapi</AUni> -<AUni ws="qvm-x-akl">qapi; qape</AUni> -<AUni ws="qvm-x-ame">qapi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="1207a60d-d3f3-4dd3-b8dd-2a74e9d82c3a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">perfu:mi; perfu:mi</AUni> -<AUni ws="qvm-x-acl">perfu:mi; perfu:mi; perfu:me</AUni> -<AUni ws="qvm-x-akh">perfu:mi; perfu:mi</AUni> -<AUni ws="qvm-x-akl">perfu:mi; perfu:mi; perfu:me</AUni> -<AUni ws="qvm-x-ame">perfu:mi; perfu:mi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+perfume</AUni> -<AUni ws="qvm-x-acl">+perfume</AUni> -<AUni ws="qvm-x-akh">+perfume</AUni> -<AUni ws="qvm-x-akl">+perfume</AUni> -<AUni ws="qvm-x-ame">+perfume</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.798" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="949a8288-6b13-444f-b1c4-500455d06269" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+perfume</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0d19a616-0ee2-47aa-af09-66b1858ba98f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="47fa8ad6-8262-4511-8250-582e103a4f25" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +perfume 
\entryTyp root 
\gENG perfume 
\gSPN perfume 
\e +perfume 
\c N0 
\mp +FinalI 
\ach perfu:mi / _# 
\ach perfu:mi / ~_# 
\akh perfu:mi / _# 
\akh perfu:mi / ~_# 
\acl perfu:mi / _# 
\acl perfu:mi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl perfu:me +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl perfu:mi / _# 
\akl perfu:mi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl perfu:me +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame perfu:mi / _# 
\ame perfu:mi / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="12080e89-3e7a-4d80-8a3f-7ad3a8dc05b7" ownerguid="6a942d6e-e35b-458c-b8c6-2b1a5485d089"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="2599002d-5b30-4994-a0aa-edb47fe042e8" t="o" /> -<objsur guid="49b143f1-38c7-4726-bff8-ac466a9c3ea3" t="o" /> -<objsur guid="e7e255f8-0401-48f0-8b80-45fce4ba359d" t="o" /> -<objsur guid="dc0d289e-54f6-4002-9219-71829cffdbfe" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="12082a04-e3df-47d6-9faa-1b7764ffb96f" ownerguid="4cb5e536-5f25-44bd-b4c0-42be8a6baf4b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="121170d5-1be1-455b-87c8-0ba061d14835" ownerguid="15b7d6ea-aa4f-4864-836a-ee5e111181f3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="121227f9-722b-4106-ab93-8aed34221f7a" ownerguid="b0905fa9-2f90-410b-8eb5-7c7944c4f0f9"> -<ExampleWords> -<AUni ws="en">rape, rapist, force, sexually assault</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(17) What words refer to forcing a woman to have sex?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="12133373-a888-41dd-b057-e32bf9fb09cb" ownerguid="536a2d3e-2303-43bc-bf53-379131eb5730"> -<ExampleWords> -<AUni ws="en">primary color, secondary color, earth color, warm color, cool color, infrared</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a kind of color?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1213e7ce-8d92-46d9-96f8-d2480ff330bb" ownerguid="b654322c-087a-4153-a0d1-e329ddc2635b"> -<Form> -<AUni ws="qvm-x-ach">tagla</AUni> -<AUni ws="qvm-x-acl">tagla</AUni> -<AUni ws="qvm-x-akh">taqla</AUni> -<AUni ws="qvm-x-akl">taqla</AUni> -<AUni ws="qvm-x-ame">taqla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="12160682-2829-47eb-89b2-933c376ea594" ownerguid="c60cf6a1-7868-4536-ac73-387bfa26e04b"> -<ExampleWords> -<AUni ws="en">rebel cause, rebel movement</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the process of rebellion?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="121a418b-2ccf-4663-9843-6b3a7af2fed3" ownerguid="89f18502-3537-4716-9325-3693bf686f55"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="12231a01-0cfc-47ea-9347-537810bbdfab" ownerguid="9f2a2d08-f39f-4cf3-940a-bab3966c1bea"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Runa laquicur taugiraycan.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="1223be52-2b59-483e-9a0c-b77ecdbd997c" ownerguid="51fa1777-8f13-49c3-a309-354ebb1b5a14"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ictsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ictsu; ictso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">iktsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">iktsu; iktso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">iktsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="50c7cedb-e48d-4e40-b667-882924600f9d" t="r" /> -</Morph> -<Msa> -<objsur guid="9e409988-4e1d-45fa-8176-595e955af9d4" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="12275890-a641-49a9-a91c-cf6c8b125cc4" ownerguid="1e9a0881-f715-4057-9af8-251cb8eec9da"> -<ExampleWords> -<AUni ws="en">high, high-pitched, piercing, shrill, squeaky, tinny</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a sound or voice that is high on the musical scale?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="122956b3-570b-4668-a8b2-2988f9d8ec14"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ki:lu</AUni> -<AUni ws="qvm-x-acl">ki:lu; ki:lu; ki:lo</AUni> -<AUni ws="qvm-x-akh">ki:lu</AUni> -<AUni ws="qvm-x-akl">ki:lu; ki:lu; ki:lo</AUni> -<AUni ws="qvm-x-ame">ki:lu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+kilo</AUni> -<AUni ws="qvm-x-acl">+kilo</AUni> -<AUni ws="qvm-x-akh">+kilo</AUni> -<AUni ws="qvm-x-akl">+kilo</AUni> -<AUni ws="qvm-x-ame">+kilo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.983" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="71c6303f-2caf-447f-945c-c891bc307294" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+kilo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bbd6666e-257b-40e7-89f0-bdb42f17edec" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d588235f-f9ce-4acc-bb75-dd2d919a94f8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +kilo 
\entryTyp root 
\gENG 
\gSPN 
\e +kilo 
\c N0 
\ach ki:lu 
\akh ki:lu 
\acl ki:lu / _# 
\acl ki:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ki:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ki:lu / _# 
\akl ki:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ki:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ki:lu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="12297b7a-ac10-49e0-9e01-9646f9dc6d20" ownerguid="de6c022f-6ed0-483c-bfda-25b96598daad"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="1229dd8f-5cfc-4644-93c3-d256fc34d054" ownerguid="2470ad05-636e-4c85-96ab-cd880da58741"> -<Abbreviation> -<AUni ws="en">4.9.7.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.304" /> -<DateModified val="2022-9-23 16:55:8.304" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words used in Christianity.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Christianity</AUni> -</Name> -<Questions> -<objsur guid="d9ba9bd1-5d23-4a08-8b8d-95816a7eba0b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="122aab58-c0b6-4eec-9e24-32247913779d" ownerguid="0644f4da-c9fe-4239-bbe5-6efc85f98968"> -<ExampleWords> -<AUni ws="en">shovel, hoe, wheelbarrow, spade, pickax, plow, grader, bulldozer, steam shovel, backhoe, steam roller, earth moving equipment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What tools and machines are used to move dirt?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="122ac350-466c-42f3-8aef-687a9d416648"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shagshagyag</AUni> -<AUni ws="qvm-x-acl">shagshagyag</AUni> -<AUni ws="qvm-x-akh">shaqshaqyaq</AUni> -<AUni ws="qvm-x-akl">shaqshaqyaq</AUni> -<AUni ws="qvm-x-ame">shaqshaqyaq</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shaqshaqyaq</AUni> -<AUni ws="qvm-x-acl">*shaqshaqyaq</AUni> -<AUni ws="qvm-x-akh">*shaqshaqyaq</AUni> -<AUni ws="qvm-x-akl">*shaqshaqyaq</AUni> -<AUni ws="qvm-x-ame">*shaqshaqyaq</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.551" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9b393e83-7f93-4043-b364-a9942c3fa77c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shaqshaqyaq</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e9ab0c65-8cbe-4761-a409-69a9888c88a6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c3e99a56-db48-4824-ad93-32f78f7a2e52" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shaqshaqyaq 
\entryTyp root 
\gENG 
\gSPN 
\e *shaqshaqyaq 
\c N0 
\mp +FinalC 
\ach shagshagyag 
\akh shaqshaqyaq 
\acl shagshagyag 
\akl shaqshaqyaq 
\ame shaqshaqyaq 
\i 2Sa 6.5 Tayta Diospa babulninta aparmi Israel runacunawan Davidpis aywargan pasaypa cushishga. Tayta Diosta alabashpanmi arpacunata, salteriucunata, panderëtacunata, shagshagyagcunata y platïllucunatapis tucaraycar aywapäcorgan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="122b4df0-8ae3-4b05-8b1d-df7626d6fe51" ownerguid="70953222-5bc5-4fa2-a85a-01827f7bc537"> -<ExampleWords> -<AUni ws="en">find your way, navigate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to finding the way?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="122cbd7c-9136-4d5d-873c-c07e6e85a151"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mita; mita:</AUni> -<AUni ws="qvm-x-acl">mita; mita:</AUni> -<AUni ws="qvm-x-akh">mita; mita:</AUni> -<AUni ws="qvm-x-akl">mita; mita:</AUni> -<AUni ws="qvm-x-ame">mita; mita:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mitad</AUni> -<AUni ws="qvm-x-acl">+mitad</AUni> -<AUni ws="qvm-x-akh">+mitad</AUni> -<AUni ws="qvm-x-akl">+mitad</AUni> -<AUni ws="qvm-x-ame">+mitad</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.457" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1d734945-1322-42a2-b44a-5a3fa015f506" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mitad</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d31442aa-54be-4be2-851b-0135f5c1de72" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="935ff29c-60be-4854-98be-1c66beed7517" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mitad 
\entryTyp root 
\gENG middle 
\gSPN mitad 
\e +mitad 
\c N0 
\mp +FinalC 
\mp +underlong 
\ach mita foreshortened 
\ach mita: 
\mp +underlong 
\akh mita foreshortened 
\akh mita: 
\acl mita foreshortened 
\acl mita: 
\akl mita foreshortened 
\akl mita: 
\mp +underlong 
\ame mita foreshortened 
\ame mita: 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="122da1b7-770d-49b0-bf2a-247961c0dc24" ownerguid="4bedae6a-1df4-40e5-8a2f-ab0a1f41997e"> -<ExampleWords> -<AUni ws="en">wood</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What plant products are used for building?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="122dcd76-3ea4-43f6-a76f-f0b242b10ece"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yusulpa; yusulpa:</AUni> -<AUni ws="qvm-x-acl">yusulpa; yusulpa:</AUni> -<AUni ws="qvm-x-akh">yusulpa; yusulpa:</AUni> -<AUni ws="qvm-x-akl">yusulpa; yusulpa:</AUni> -<AUni ws="qvm-x-ame">yusulpa; yusulpa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+yusulpa:</AUni> -<AUni ws="qvm-x-acl">+yusulpa:</AUni> -<AUni ws="qvm-x-akh">+yusulpa:</AUni> -<AUni ws="qvm-x-akl">+yusulpa:</AUni> -<AUni ws="qvm-x-ame">+yusulpa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.800" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="08d5fb76-d888-4864-a85e-46d7c262d6f5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+yusulpa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7412d3d5-d912-4e07-83a3-2c92f9d5731a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="867adca7-4ad4-4b2f-80e2-384f5cb2d084" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +yusulpa: 
\entryTyp root 
\gENG thank.you 
\gSPN gracias 
\e +yusulpa: 
\c N0 
\mp +FinalC 
\mp +underlong 
\ach yusulpa foreshortened 
\ach yusulpa: 
\mp +underlong 
\akh yusulpa foreshortened 
\akh yusulpa: 
\acl yusulpa foreshortened 
\acl yusulpa: 
\akl yusulpa foreshortened 
\akl yusulpa: 
\mp +underlong 
\ame yusulpa foreshortened 
\ame yusulpa: 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="122e6f09-3673-44d7-ae10-7576507be9d2" ownerguid="6187e620-89bd-4b9d-9896-0c0c788e7740"> -<ExampleWords> -<AUni ws="en">league</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What is a group of teams called?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="122fb846-1519-4071-87c1-fe54db9dffa6" ownerguid="1a4ff06b-76db-4abb-b7ba-f5d21c619a6f"> -<Form> -<AUni ws="qvm-x-ach">shulti</AUni> -<AUni ws="qvm-x-acl">shulti; shulti; shulte</AUni> -<AUni ws="qvm-x-akh">shulti</AUni> -<AUni ws="qvm-x-akl">shulti; shulti; shulte</AUni> -<AUni ws="qvm-x-ame">shulti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="12300321-6ee6-4f3a-aaee-90d90c7022ab"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pilpa</AUni> -<AUni ws="qvm-x-acl">pilpa</AUni> -<AUni ws="qvm-x-akh">pilpa</AUni> -<AUni ws="qvm-x-akl">pilpa</AUni> -<AUni ws="qvm-x-ame">pilpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pillpa</AUni> -<AUni ws="qvm-x-acl">*pillpa</AUni> -<AUni ws="qvm-x-akh">*pillpa</AUni> -<AUni ws="qvm-x-akl">*pillpa</AUni> -<AUni ws="qvm-x-ame">*pillpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.830" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5da1ace1-7402-4a0d-94ac-d211fa35abba" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pillpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4ae9ffb9-bb8f-4d24-8873-2be38e3119a6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0a36fea1-b9b2-4331-bf74-4decc150be99" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pillpa 
\entryTyp root 
\gENG crack 
\gSPN pachurarse 
\e *pillpa 
\c V1 
\ach pilpa 
\akh pilpa 
\acl pilpa 
\akl pilpa 
\ame pilpa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1230c6ab-726b-4361-8c15-c8ffb9b432da" ownerguid="08d704f0-706b-4db9-9d6b-b5763469701d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pearls</AUni> -<AUni ws="es">perlas</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cf847d0d-2b41-4fa3-8f82-f82398579305" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="123925c9-1dc9-463b-86bc-a774025fafc9" ownerguid="b5db7cc5-1f04-4580-aeb6-14f142e2c344"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="123bd458-84f8-4748-a6db-b9bdc17331d7" ownerguid="ed4a2ca6-c03c-4c72-9431-b72fb7294b8f"> -<ExampleWords> -<AUni ws="en">wedding, ceremony, service, nuptials, church wedding, civil service</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a wedding ceremony?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="123c3410-3208-422d-b6e3-0f950931b958" ownerguid="515f9b40-0637-4ce3-b343-2d99de3f723b"> -<ExampleWords> -<AUni ws="en">plumber</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a person who works on water pipes?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="123c8124-826f-49a8-a1c3-94d155e60220"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cincuenta</AUni> -<AUni ws="qvm-x-acl">cincuenta</AUni> -<AUni ws="qvm-x-akh">cincuenta</AUni> -<AUni ws="qvm-x-akl">cincuenta</AUni> -<AUni ws="qvm-x-ame">cincuenta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cincuenta</AUni> -<AUni ws="qvm-x-acl">+cincuenta</AUni> -<AUni ws="qvm-x-akh">+cincuenta</AUni> -<AUni ws="qvm-x-akl">+cincuenta</AUni> -<AUni ws="qvm-x-ame">+cincuenta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.122" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c74b2074-e67c-4832-be7b-fff4e1aa9da8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cincuenta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fe7b5723-1331-4c9e-93fd-829c028210a3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6096aefd-c107-4397-b3ef-cc42ad00f772" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cincuenta 
\entryTyp root 
\gENG 
\gSPN 
\e +cincuenta 
\c N0 
\ach cincuenta 
\akh cincuenta 
\acl cincuenta 
\akl cincuenta 
\ame cincuenta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="12415a26-0388-48b0-99cb-d066df205d60" ownerguid="3055338f-eccc-4193-85b5-a44ef560434e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="12421298-40c5-40dc-a922-c38c6edfc3e4" ownerguid="80f812a9-671b-45eb-bb97-b687605766a2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="12454d31-d8bd-45e6-97a8-31273818231e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">huracán; huracan</AUni> -<AUni ws="qvm-x-acl">huracán; huracan</AUni> -<AUni ws="qvm-x-akh">huracán; huracan</AUni> -<AUni ws="qvm-x-akl">huracán; huracan</AUni> -<AUni ws="qvm-x-ame">huracán; huracan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+huracán</AUni> -<AUni ws="qvm-x-acl">+huracán</AUni> -<AUni ws="qvm-x-akh">+huracán</AUni> -<AUni ws="qvm-x-akl">+huracán</AUni> -<AUni ws="qvm-x-ame">+huracán</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.761" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3dfada3b-f4a3-41e1-a988-33b1051e95ec" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+huracán</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="44c7b317-a914-4041-8847-62611b55c609" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2fe51a34-6546-4d7f-9ea7-961b9ad61e69" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +huracán 
\entryTyp root 
\gENG storm 
\gSPN tormento 
\e +huracán 
\c N0 
\mp +FinalC 
\ach huracán / _# 
\ach huracan / ~_# 
\akh huracán / _# 
\akh huracan / ~_# 
\acl huracán / _# 
\acl huracan / ~_# 
\akl huracán / _# 
\akl huracan / ~_# 
\ame huracán / _# 
\ame huracan / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="124857a0-258e-4a14-9664-e4ddacc95a85" ownerguid="bccdcdc6-081c-4475-bcc8-cf3719d6bd51"> -<Form> -<AUni ws="qvm-x-ach">rata</AUni> -<AUni ws="qvm-x-acl">rata</AUni> -<AUni ws="qvm-x-akh">rata</AUni> -<AUni ws="qvm-x-akl">rata</AUni> -<AUni ws="qvm-x-ame">rata</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="1248631d-a4b0-45b3-879d-4b105c00b1e2" ownerguid="14a21d83-1aef-4f79-8088-7595e01cea86"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="1248f4d8-bd07-4539-9364-b8e4e07876dd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">Jesucristo; Jesucristu</AUni> -<AUni ws="qvm-x-acl">Jesucristo; Jesucristo; Jesucristu</AUni> -<AUni ws="qvm-x-akh">Jesucristo; Jesucristu</AUni> -<AUni ws="qvm-x-akl">Jesucristo; Jesucristo; Jesucristu</AUni> -<AUni ws="qvm-x-ame">Jesucristo; Jesucristu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+Jesucristo</AUni> -<AUni ws="qvm-x-acl">+Jesucristo</AUni> -<AUni ws="qvm-x-akh">+Jesucristo</AUni> -<AUni ws="qvm-x-akl">+Jesucristo</AUni> -<AUni ws="qvm-x-ame">+Jesucristo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.882" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2072da4f-9289-4b0e-9c2e-1d97df4bea99" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+Jesucristo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9849f945-ba66-4ba5-8829-3efad5f3a3e8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9364ff07-9368-4ff0-aacc-49e4940150e7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +Jesucristo 
\entryTyp root 
\gENG Jesus.Christ 
\gSPN Jesucristo 
\e +Jesucristo 
\c BN 
\ach Jesucristo / _# 
\ach Jesucristu / ~_# 
\akh Jesucristo / _# 
\akh Jesucristu / ~_# 
\acl Jesucristo / _# 
\acl Jesucristo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl Jesucristu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl Jesucristo / _# 
\akl Jesucristo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl Jesucristu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame Jesucristo / _# 
\ame Jesucristu / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="1250b0bf-4a27-4d46-92e9-e54af38e5a83"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">goshtay</AUni> -<AUni ws="qvm-x-acl">goshtay</AUni> -<AUni ws="qvm-x-akh">qoshtay</AUni> -<AUni ws="qvm-x-akl">qoshtay</AUni> -<AUni ws="qvm-x-ame">qushtay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qushtay</AUni> -<AUni ws="qvm-x-acl">*qushtay</AUni> -<AUni ws="qvm-x-akh">*qushtay</AUni> -<AUni ws="qvm-x-akl">*qushtay</AUni> -<AUni ws="qvm-x-ame">*qushtay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.890" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e09f3c49-a275-4ce6-9b70-263b1487bcca" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qushtay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="21f1d588-13a3-4a04-bf96-7cda5a85c8d7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="22d2da41-c1cb-4b4a-9673-88fcbc169c1a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qushtay 
\entryTyp root 
\gENG smoke 
\gSPN humo 
\e *qushtay 
\c N0 
\mp NeverForeshortened 
\ach goshtay 
\akh qoshtay 
\acl goshtay 
\akl qoshtay 
\ame qushtay 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1250b6c1-b253-475f-9005-59908b82ca34" ownerguid="6eaba0c3-cdfe-435d-8811-7f2ddf6facbd"> -<ExampleWords> -<AUni ws="en">swollen, puffy, inflamed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that has swollen?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1252b33d-965a-435b-b7c5-c776bcaa4901" ownerguid="4a44ac87-5ad5-44de-8170-9fd88b056010"> -<ExampleWords> -<AUni ws="en">janitor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who takes care of a building?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1257308f-0451-4b6b-b829-4dd6d8ca53bf" ownerguid="6f92ba78-b724-4224-9345-f67900bdbee7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="6cf66030-27c3-46a9-9845-a6e5dd604fcd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmAgent" guid="1257a971-fcef-4f06-a5e2-c289de5aaf72" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Approves> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="o" /> -</Approves> -<Disapproves> -<objsur guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" t="o" /> -</Disapproves> -<Human val="False" /> -<Name> -<AUni ws="en">M3Parser</AUni> -</Name> -<Notes> -<objsur guid="5cdae613-91b6-4225-b689-679c9cc4247e" t="o" /> -</Notes> -<Version> -<Uni>Normal</Uni> -</Version> -</rt> -<rt class="LexSense" guid="1259192c-a224-484b-8fae-14a1be7d2769" ownerguid="a14efc51-5bf2-4dc5-9f6b-baa38a357ea4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">close</AUni> -<AUni ws="es">cerrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1616e785-f1a5-4513-a577-b3dcb8e02130" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="125a1f7e-0ce6-4a29-ab84-ec4fb2278345" ownerguid="4d22a47b-8559-41a4-92dc-ac1591d7e383"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="3b89271c-e814-4082-96d4-e6acf5442ec9" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="cadb5186-5119-4af5-a95a-fc511f5d78bb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="125b28d9-8ae1-429d-b012-8cb499c7a161" ownerguid="7d2ac7e1-87be-4379-aabb-a7e61519ba1d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="125b531c-efab-44f9-aa93-270f74c998b3" ownerguid="d25f7907-091e-4cf7-bd8c-bdb97278b616"> -<ExampleWords> -<AUni ws="en">hammer, pound, club, whip</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to hitting something with a tool?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="125cabea-3fcc-4d23-9390-ee5284c6b239" ownerguid="36a2c83f-f7aa-41b0-9b17-f801f3720e4f"> -<ExampleWords> -<AUni ws="en">grow grain, sheaf, winnow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to growing grain?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="125ce0ac-96ce-46ab-ad40-a51a80fd36d0" ownerguid="eb00b4c2-5b87-4ef8-9548-800fc5c9b524"> -<ExampleWords> -<AUni ws="en">corrosion, detriment, erosion, maltreatment, mischief, vandalism</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the act of damaging something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="125ec8a5-7f85-4e68-9047-d0a5a0bbf67f" ownerguid="1f35e65f-3896-490f-adae-33d6f5bf66f9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="1260485c-c406-4b2e-8170-8baf210e7c07" ownerguid="11628750-a93f-4d51-b38f-ee50ddcfbfab"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="12660b9b-ad1e-4c72-bd96-7c2127a952b5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pitsu</AUni> -<AUni ws="qvm-x-acl">pitsu; pitso</AUni> -<AUni ws="qvm-x-akh">pitsu</AUni> -<AUni ws="qvm-x-akl">pitsu; pitso</AUni> -<AUni ws="qvm-x-ame">pitsu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pichu.v</AUni> -<AUni ws="qvm-x-acl">*pichu.v</AUni> -<AUni ws="qvm-x-akh">*pichu.v</AUni> -<AUni ws="qvm-x-akl">*pichu.v</AUni> -<AUni ws="qvm-x-ame">*pichu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.830" /> -<DateModified val="2022-10-10 21:18:47.197" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2a673917-ac2e-49d3-969c-ebf49b5f17ef" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pichu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3ccd2130-c625-456e-b58e-7513f2081f4a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="697e0d75-ad5a-4274-ad50-82cdf653b457" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pichu.v 
\entryTyp root 
\gENG 
\gSPN 
\e *pichu.v 
\c V1 
\ach pitsu 
\akh pitsu 
\acl pitsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pitso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pitsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pitso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pitsu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="126651f9-33d5-4757-a1f9-aab7e48b906b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">Bautista</AUni> -<AUni ws="qvm-x-acl">Bautista</AUni> -<AUni ws="qvm-x-akh">Bautista</AUni> -<AUni ws="qvm-x-akl">Bautista</AUni> -<AUni ws="qvm-x-ame">Bautista</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+Bautista</AUni> -<AUni ws="qvm-x-acl">+Bautista</AUni> -<AUni ws="qvm-x-akh">+Bautista</AUni> -<AUni ws="qvm-x-akl">+Bautista</AUni> -<AUni ws="qvm-x-ame">+Bautista</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.949" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6ec43395-12b9-42a5-a0fd-c2e61fe2b947" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+Bautista</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d50956c6-ca32-4b05-9fc7-5473955b1800" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="451c662b-9563-42a0-b790-c1a368abca64" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +Bautista 
\entryTyp root 
\gENG Baptist 
\gSPN Bautista 
\e +Bautista 
\c N0 
\ach Bautista 
\akh Bautista 
\acl Bautista 
\akl Bautista 
\ame Bautista</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="126cd1e4-744d-4cd4-930a-45b8109abc72" ownerguid="c7ff2590-0a87-42f0-a898-fba285de61a7"> -<Form> -<AUni ws="qvm-x-ach">picanti; picante</AUni> -<AUni ws="qvm-x-acl">picanti; picanti; picante</AUni> -<AUni ws="qvm-x-akh">picanti; picante</AUni> -<AUni ws="qvm-x-akl">picanti; picanti; picante</AUni> -<AUni ws="qvm-x-ame">picanti; picante</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="126d2776-1de4-4dbd-bdd6-053b15c018db" ownerguid="a1959b00-9702-4b45-ac46-93f18d3bc5e6"> -<ExampleWords> -<AUni ws="en">breathless, out of breath, draw breath</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to breathing quickly or with difficulty because of running or working hard?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="126e199f-69cc-4e72-bcf1-5417cc9e38fa" ownerguid="6a70d393-1181-48e5-ac69-114d61dd348b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="25ad259c-fe3d-42b1-83d8-5e5c9faa4c05" t="o" /> -<objsur guid="c488a61e-62e9-41a5-95fe-1735e53c7c90" t="o" /> -<objsur guid="daa2c8fc-f74d-4e14-a229-6d341aaa4aaa" t="o" /> -<objsur guid="329bd19f-b271-4b35-9269-741863625da8" t="o" /> -<objsur guid="b364bfaf-ee6d-4e15-994b-68200df791fa" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="126e911d-4fb6-4d0e-bed7-003f4fc2200e" ownerguid="dfbcadfe-cfd9-444d-8d12-8e4e494eb6f9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">but</AUni> -<AUni ws="es">pero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c6bcfa37-d847-4572-8e0f-d51a53411baf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="12704419-d074-494f-958b-bef848f39ebe" ownerguid="372dad9a-3c21-4576-a181-453ba1ef4188"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="12722e79-a117-4413-95fe-d2bd972c82ed" ownerguid="2158eb7d-eb59-4740-9628-9080d7f51a97"> -<ExampleWords> -<AUni ws="en">alarm clock, wake up call, rooster</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What means do people use to wake themselves up?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="12728c3e-d736-4322-8105-59d3a401e52a" ownerguid="ed898eea-b9c2-4cbe-aa72-abf64b226f4e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ba378090-694c-4cea-a020-bf91f5670129" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="127527f1-046d-452b-9a96-918251333a9a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jajayla</AUni> -<AUni ws="qvm-x-acl">jajayla</AUni> -<AUni ws="qvm-x-akh">jajayla</AUni> -<AUni ws="qvm-x-akl">jajayla</AUni> -<AUni ws="qvm-x-ame">hahayla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hajayla</AUni> -<AUni ws="qvm-x-acl">*hajayla</AUni> -<AUni ws="qvm-x-akh">*hajayla</AUni> -<AUni ws="qvm-x-akl">*hajayla</AUni> -<AUni ws="qvm-x-ame">*hajayla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.639" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ca2f1e0d-320f-44ce-91d1-6a51fe3bb6c3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hajayla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ffcafdc9-153b-4151-8195-fec594a0b004" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ea4cb563-ce0b-4f1c-b2c2-4666260171c2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hajayla 
\entryTyp root 
\gENG 
\gSPN 
\e *hajayla 
\c NOSUFF 
\ach jajayla 
\akh jajayla 
\acl jajayla 
\akl jajayla 
\ame hahayla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1276719c-1b11-4322-92ae-b9c5c280255e" ownerguid="f7e5fd2f-8764-4308-b739-94de05ec7041"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">one</AUni> -<AUni ws="es">uno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="70d698ec-d542-49b9-9066-9801c43cddba" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="1277c4ad-12b1-4f80-b767-b592eecef432" ownerguid="cbc24a98-1c64-467e-98aa-251a28e4c0b8"> -<ExampleWords> -<AUni ws="en">bathroom, toilet, latrine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) Where do people defecate?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1277cb9f-bf53-406e-a97f-3426cf3eee0b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">vi:va</AUni> -<AUni ws="qvm-x-acl">vi:va</AUni> -<AUni ws="qvm-x-akh">vi:va</AUni> -<AUni ws="qvm-x-akl">vi:va</AUni> -<AUni ws="qvm-x-ame">vi:va</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+viva.v</AUni> -<AUni ws="qvm-x-acl">+viva.v</AUni> -<AUni ws="qvm-x-akh">+viva.v</AUni> -<AUni ws="qvm-x-akl">+viva.v</AUni> -<AUni ws="qvm-x-ame">+viva.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.414" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bd18b390-e90a-41ce-a8a0-131c68338281" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+viva.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2e801808-2f5f-43dd-94e2-b53149c2ef5e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="96e73a2c-be5f-4236-8f20-447d3dbefda8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +viva.v 
\entryTyp root 
\gENG long.live 
\gSPN viva 
\e +viva.v 
\c V1 
\ach vi:va 
\akh vi:va 
\acl vi:va 
\akl vi:va 
\ame vi:va 
\i 1KI 1.40 Jerusalénman cutirnami Salomónpa guepanta aywapäcorgan pincullunta tucaraycar y gagapis yachapashganyag cushicuypita vivaraycar.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="12781062-ee36-4703-9bc0-cee4ed467ee5" ownerguid="cac1d7a8-7382-466e-ba4a-ba2bfe50f13b"> -<Abbreviation> -<AUni ws="en">3.5.9.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.184" /> -<DateModified val="2022-9-23 16:55:8.184" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to newspapers and magazines.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Newspaper</AUni> -</Name> -<OcmCodes> -<Uni>203 Dissemination of News and Information; 204 Press</Uni> -</OcmCodes> -<Questions> -<objsur guid="56e6a9fd-f3fc-49fc-adcc-383e281be878" t="o" /> -<objsur guid="c16d59ab-e122-4154-b197-dc3e89671d30" t="o" /> -<objsur guid="0f2fb84f-a9b5-451e-961b-478748c87cd3" t="o" /> -<objsur guid="f1cac99f-e12e-40ae-b57c-ae98bc937142" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="127cd857-3b4d-4bf2-985e-b0709b988afa" ownerguid="44710b2b-dbd3-4cfd-abe6-cebf7e5605f9"> -<Form> -<AUni ws="qvm-x-ach">nunaylu</AUni> -<AUni ws="qvm-x-acl">nunaylu; nunaylu; nunaylo</AUni> -<AUni ws="qvm-x-akh">nunaylu</AUni> -<AUni ws="qvm-x-akl">nunaylu; nunaylu; nunaylo</AUni> -<AUni ws="qvm-x-ame">nunaylu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StTxtPara" guid="12800eff-536c-46d4-92c4-2cd7c47c0c4f" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">rikapäkashqayki</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="fe52c697-533c-42ab-9fd5-50d0d06d673f" t="o" /> -</Segments> -</rt> -<rt class="CmDomainQ" guid="1285fbe0-edcb-4e19-aa7a-5fe771830c42" ownerguid="fbf40f2e-e743-479d-80b2-63325407d5d1"> -<ExampleWords> -<AUni ws="en">for example, e.g., as follows, as below, such as, let me give you an example, to illustrate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used to introduce an example?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="1286445c-8988-43a2-95ad-372a500eac73" ownerguid="503aec14-5708-47c1-a9c8-79938589e713"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pita</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pita</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pita</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pita</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pita</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ef81e8c3-e8c7-4bf5-9fdb-ebd4284a70bd" t="r" /> -</Morph> -<Msa> -<objsur guid="c516d14b-9b18-44a7-8c37-97267a8b8796" t="r" /> -</Msa> -<Sense> -<objsur guid="75f1d891-753c-42a9-8f14-18fa3dd1767b" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="128b7acc-91b4-4233-9639-1800155764f5" ownerguid="652b95bc-d0cf-45ac-b3d1-faa4374ecf1d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sign</AUni> -<AUni ws="es">letrero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a1890d66-e950-4b8c-809f-ddf4cad957f8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="128d5c2e-6aaf-4214-9502-9cb67e995766" ownerguid="bc8d0ad4-6ebf-4fa0-bc7e-60e8ec9c43db"> -<ExampleWords> -<AUni ws="en">eyebrow, brow, eyelash, lash, eyelid, lid, pupil, cornea, iris, white, eyeball, ball of the eye, corner of the eye, tear duct, retina, eye socket</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the parts of the eye?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="128edf2b-37fe-4e2e-8d42-c840ca63a159" ownerguid="3eea2cba-44f3-4381-8cc2-dcb00d88a7cd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="128f027c-5798-48b9-b326-d9ae9789fe02" ownerguid="6bfb7813-3a7d-47e2-88e1-d54034c07e5d"> -<ExampleWords> -<AUni ws="en">if I were you, you should do something, you ought to, you'd be better off, take my advice, take it from me, you'd be well advised to do something, on no account, you'd better, I would</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words do people use when giving advice?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1291baa1-16c1-4490-abc0-6c6174382dd6" ownerguid="53628a13-3087-4200-bb25-13995732318e"> -<Form> -<AUni ws="qvm-x-ach">cläsi; cläsi</AUni> -<AUni ws="qvm-x-acl">cläsi; cläsi; cläse</AUni> -<AUni ws="qvm-x-akh">cläsi; cläsi</AUni> -<AUni ws="qvm-x-akl">cläsi; cläsi; cläse</AUni> -<AUni ws="qvm-x-ame">cläsi; cläsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1292411c-fed2-4234-8863-9a00ddcbfd84" ownerguid="10b6c417-d020-4318-a44a-ae69ea3eec5a"> -<ExampleWords> -<AUni ws="en">quick, fast, rapid</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe a quick change?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1293e1db-288c-40c0-acec-29b95e4da31b" ownerguid="0281fb1d-ab12-41b9-a3dc-09ef6b1e4733"> -<ExampleWords> -<AUni ws="en">oblivion, end of existence, finality of death</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to not living on after death?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1295b013-d620-40ab-a1e4-b55fcd82868c" ownerguid="d7861def-70c1-470f-bca6-8230cbbaa3e9"> -<ExampleWords> -<AUni ws="en">eye, look somebody up and down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe how you look at someone if you don't trust them?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="12979d39-bacc-41f3-a0f5-798785407bbf" ownerguid="a16d9d81-5c04-47ce-9a21-8dab16896878"> -<Form> -<AUni ws="qvm-x-ach">castïllu</AUni> -<AUni ws="qvm-x-acl">castïllu; castïllu; castïllo</AUni> -<AUni ws="qvm-x-akh">castïllu</AUni> -<AUni ws="qvm-x-akl">castïllu; castïllu; castïllo</AUni> -<AUni ws="qvm-x-ame">castïllu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="12983417-f165-43af-bf17-49971e9614f6" ownerguid="d6ff47e6-435b-47a3-ba95-c26a2619fd55"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="129af35f-b807-43bd-bdf4-f910e1478452" ownerguid="88f84df5-8e9a-4b0a-8efc-563d5b35858c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">BAD</AUni> -<AUni ws="es">MALO</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cefe96d1-cda2-4d8a-8188-b610f8721520" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="129b62b9-b123-4f4a-b7f1-eeae9b05c40d" ownerguid="147c2e58-9ae8-460f-8cab-bf04a668945d"> -<ExampleWords> -<AUni ws="en">prophesy, foretell the future, predict the future</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being able to speak for God or deliver a message from God?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="129e39c9-515d-4558-b737-526d43c1a886" ownerguid="29e82cb2-b520-4476-98c7-e40a67fe8e25"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">calf</AUni> -<AUni ws="es">pantorrilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4e4a2edc-a2bb-44d9-a940-552e6187399d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="12a028d1-d910-4011-ab9d-59be69daaf65" ownerguid="e28f3f79-d4a5-402c-8a70-196856791078"> -<Abbreviation> -<AUni ws="en">9.1.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.680" /> -<DateModified val="2022-9-23 16:55:8.680" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to reacting or responding to something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">React, respond</AUni> -</Name> -<Questions> -<objsur guid="8b6698dc-3e93-4826-a711-c4a6609b0eeb" t="o" /> -<objsur guid="a6e4cffb-d5d1-44e1-b3a7-504f2c3c667b" t="o" /> -<objsur guid="f0de8b69-43ef-4a89-8186-033da98e0f15" t="o" /> -<objsur guid="a59fc3b7-939d-4b14-86d6-214ea3e3fa13" t="o" /> -<objsur guid="22436d8c-bcbf-431f-b10a-70676d9a3c57" t="o" /> -<objsur guid="31efa67e-d072-413e-86a3-b8c8e672b2fa" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="12a0ac5f-a5f0-459c-ab7c-b9346434f4cc" ownerguid="0d972590-5947-4983-a092-443697baec24"> -<ExampleWords> -<AUni ws="en">hoe, shovel, spade</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What tools are used for digging?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="12a0c6b0-7d10-49fd-8547-d01f14a339fb" ownerguid="826c3361-e08e-4ca8-8324-57b56884776c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="12a5ac1f-b770-4bea-ad3a-6ddb4ff1449d" ownerguid="a98f6042-6292-4046-a9e6-e51f220cf3c7"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Deu 20.8 Maygayquipis jaca shongu y mishi pulsu carga waquin cagta mana mantsarëtsinayquipag wayiquiman cuticuy.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="12a67b3b-17c8-4d82-9e33-b1791031eb53" ownerguid="c27b87cf-1211-4df2-96b1-12c416edabbe"> -<ExampleWords> -<AUni ws="en">comedian, humorist, joker, jokester, wit, wag, comic, clown, jester, buffoon, punster, fool, practical joker, gagman, wisecracker</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What is a person called who jokes?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="12a8878d-80dc-4d44-a323-e4788349cbab" ownerguid="dbd3e164-3f70-4395-9728-1c24c8900da6"> -<ExampleWords> -<AUni ws="en">utensil, tool, appliance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to cooking utensils?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="12a8cd56-9931-4ed8-99ed-c52bdf71adc4" ownerguid="02bd21d7-b47a-4ce9-91c1-e0ec532a64ef"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lance</AUni> -<AUni ws="es">lanza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="46c1386b-2397-4b21-a5f7-47c5fb7ee614" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="12ab92c0-dde0-430b-a848-c8ccc660a7fd" ownerguid="53cc3a9b-a692-45e7-82d0-8789d209e889"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="12acf71d-9703-4676-b8b7-48992f0641ce" ownerguid="4260e110-7b04-4d40-9391-486a57aa3031"> -<ExampleWords> -<AUni ws="en">mature</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something someone does that is mature?</AUni> -</Question> -</rt> -<rt class="PhCode" guid="12acfda9-92eb-4410-961e-e521d8328f5b" ownerguid="60f222f8-e2b9-4ffe-ac3c-0c7fb1a24e83"> -<Representation> -<AUni ws="qvm-x-ach">ñ</AUni> -<AUni ws="qvm-x-acl">ñ</AUni> -<AUni ws="qvm-x-akh">ñ</AUni> -<AUni ws="qvm-x-akl">ñ</AUni> -<AUni ws="qvm-x-ame">ñ</AUni> -</Representation> -</rt> -<rt class="CmSemanticDomain" guid="12b6934d-3a4a-4623-995f-865f401349ab" ownerguid="0f568473-880d-43bd-b5ce-590100fdcaf6"> -<Abbreviation> -<AUni ws="en">5.2.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.306" /> -<DateModified val="2022-9-23 16:55:8.306" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing the manner in which a person eats.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Manner of eating</AUni> -</Name> -<Questions> -<objsur guid="1c48d213-3a7b-4424-8167-9729b97d1215" t="o" /> -<objsur guid="4e84d51c-067a-4d4b-b8c8-ee60cff3db27" t="o" /> -<objsur guid="9057975b-1ed8-41bc-9495-8176b4da3a4f" t="o" /> -<objsur guid="f9b818a0-0f20-4960-a67e-0dfe141ec36f" t="o" /> -<objsur guid="34ee31c0-3770-4c8d-b699-12d256708577" t="o" /> -<objsur guid="013c2704-8624-498b-b146-1c838d992032" t="o" /> -<objsur guid="93fcd3fd-19e1-487f-abe1-e53978be7e31" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="12b6a9e2-f4c6-4b4f-aa70-ab7bf0f33057"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">senga</AUni> -<AUni ws="qvm-x-acl">senga</AUni> -<AUni ws="qvm-x-akh">senqa</AUni> -<AUni ws="qvm-x-akl">senqa</AUni> -<AUni ws="qvm-x-ame">sinqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*sinqa</AUni> -<AUni ws="qvm-x-acl">*sinqa</AUni> -<AUni ws="qvm-x-akh">*sinqa</AUni> -<AUni ws="qvm-x-akl">*sinqa</AUni> -<AUni ws="qvm-x-ame">*sinqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.683" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6bb861aa-f938-4b9e-9957-da3a82b75021" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*sinqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7b19ab85-7a73-4128-aa85-763bc369e465" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aed86177-c526-4e0d-8b04-6e8b27131479" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *sinqa 
\entryTyp root 
\gENG nose 
\gSPN naríz 
\e *sinqa 
\c N0 
\ach senga 
\akh senqa 
\acl senga 
\akl senqa 
\ame sinqa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="12b71a69-0c2f-4af3-8fb2-ec28fb8482db" ownerguid="b21ace5f-9307-4bdc-b103-9fdf14a5655e"> -<ExampleWords> -<AUni ws="en">weekly, every week, each week</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used to indicate that something happens every week?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="12b7c111-b685-4ad8-a2c2-59cd1a996e4d" ownerguid="a823dbb3-0137-43cd-9ebd-765a139a453e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="12bae6de-0592-4443-8c8a-b8eb4bfafdab"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">naca</AUni> -<AUni ws="qvm-x-acl">naca</AUni> -<AUni ws="qvm-x-akh">naka</AUni> -<AUni ws="qvm-x-akl">naka</AUni> -<AUni ws="qvm-x-ame">naka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñaka</AUni> -<AUni ws="qvm-x-acl">*ñaka</AUni> -<AUni ws="qvm-x-akh">*ñaka</AUni> -<AUni ws="qvm-x-akl">*ñaka</AUni> -<AUni ws="qvm-x-ame">*ñaka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.586" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1f50913e-241b-4056-80e9-b782f6a4db25" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñaka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="88b0c178-4035-43e1-a858-5f18a6dfb137" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e44796ff-313b-4b14-ad26-3bcc81057166" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñaka 
\entryTyp root 
\gENG suffer 
\gSPN sufrir 
\e *ñaka 
\c V1 
\ach naca 
\akh naka 
\acl naca 
\akl naka 
\ame naka</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="12bd8ec3-a1c6-4ed8-b126-e5ffb847244c" ownerguid="14e6ffd2-75db-4fce-84df-725aac9f55fb"> -<Morph> -<objsur guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" t="r" /> -</Morph> -<Msa> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="12bf3607-e1f1-409f-900a-f24a7e37a187" ownerguid="e872023d-4047-41cd-a5bf-cdfef4ac2fff"> -<Form> -<AUni ws="qvm-x-ach">wina</AUni> -<AUni ws="qvm-x-acl">wina</AUni> -<AUni ws="qvm-x-akh">wina</AUni> -<AUni ws="qvm-x-akl">wina</AUni> -<AUni ws="qvm-x-ame">wina</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="12bfb9d1-397a-4a2d-8ef8-f81220184cf4" ownerguid="474eb21f-72f2-45a5-91eb-d95776dfaf73"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">lumtsuy</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">lumtsuy</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">lumtsuy</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">lumtsuy</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">lumtsuy</Run> -</AStr> -</Form> -<Morph> -<objsur guid="016f3085-2d5e-47f3-946f-5066308fcadd" t="r" /> -</Morph> -<Msa> -<objsur guid="c41c60cc-83bf-48bb-8ded-b37916944eab" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="12bfdaba-25b4-40a1-96bd-b943cf3b91b9" ownerguid="cdf65d07-f019-436e-95e6-4d74aafc147c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d1685fdc-96d8-4baf-9cb8-523863adb67f" t="r" /> -</Morph> -<Msa> -<objsur guid="434f36b9-aa05-46d6-be7e-89240d9e2c4d" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="12c0555e-a132-4fdd-af9b-04716a8c2093" ownerguid="53451bc6-4247-494c-92a9-3b3d6f9be9e0"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="12c172dd-8bce-4d8d-9f64-f9faeea783ba"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa:gina</AUni> -<AUni ws="qvm-x-acl">pa:gina</AUni> -<AUni ws="qvm-x-akh">pa:gina</AUni> -<AUni ws="qvm-x-akl">pa:gina</AUni> -<AUni ws="qvm-x-ame">pa:gina</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+página</AUni> -<AUni ws="qvm-x-acl">+página</AUni> -<AUni ws="qvm-x-akh">+página</AUni> -<AUni ws="qvm-x-akl">+página</AUni> -<AUni ws="qvm-x-ame">+página</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.778" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0a7b860b-4a66-4def-a29a-54a4d7591623" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+página</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a8e5d72e-1ace-4eaa-a801-1dd74aa502db" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="30607b4a-a8f0-48cb-8c4f-1432e76fd903" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +página 
\entryTyp root 
\gENG page 
\gSPN página 
\e +página 
\c N0 
\ach pa:gina 
\akh pa:gina 
\acl pa:gina 
\akl pa:gina 
\ame pa:gina</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="12c34599-44bf-4064-90f3-0b5cc126ca0c" ownerguid="8eded5c0-fcd1-43c9-87bd-69ab3e302e96"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="12c63812-f1f5-4d11-8ca9-55980271341b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">diya</AUni> -<AUni ws="qvm-x-acl">diya</AUni> -<AUni ws="qvm-x-akh">diya</AUni> -<AUni ws="qvm-x-akl">diya</AUni> -<AUni ws="qvm-x-ame">diya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+día.1</AUni> -<AUni ws="qvm-x-acl">+día.1</AUni> -<AUni ws="qvm-x-akh">+día.1</AUni> -<AUni ws="qvm-x-akl">+día.1</AUni> -<AUni ws="qvm-x-ame">+día.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.426" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2a8d5831-6fd9-4bbe-a71c-d98709eb07b8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+día.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="89cfd2ca-8e4c-454f-ad83-96264469bbfc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5cd494b5-995d-4b5f-a3c1-f8209dc0999f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +día.1 
\entryTyp root 
\gENG birthday 
\gSPN cumpleaños 
\e +día.1 
\c N0 
\mp +assimilated 
\ach diya 
\akh diya 
\acl diya 
\akl diya 
\ame diya 
\i JOB 14.13 ¡Ima alirag canman tsaypita cawaritsimänayquipag diata jitapämaptiqui!</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="12c6d243-402d-4371-a12b-744e9fb0b6aa" ownerguid="d7861def-70c1-470f-bca6-8230cbbaa3e9"> -<ExampleWords> -<AUni ws="en">glare, scowl, frown, give a dirty look, glower</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe how you look at something if you are angry or unhappy about it?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="12ca5b46-eacd-43de-b681-ef6e13655b6e" ownerguid="46cb943c-9102-4d7e-93a5-f647287fcc10"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rock</AUni> -<AUni ws="es">roca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="15b77b59-9e47-4c73-90c2-15a54e0d54fe" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="12ca84f3-bb65-4e56-a495-9b2a1a46b1b0" ownerguid="b304749b-8e52-4b5a-b238-9cc5234b2044"> -<Form> -<AUni ws="qvm-x-ach">rapa</AUni> -<AUni ws="qvm-x-acl">rapa</AUni> -<AUni ws="qvm-x-akh">rapa</AUni> -<AUni ws="qvm-x-akl">rapa</AUni> -<AUni ws="qvm-x-ame">rapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="12cb3584-4c18-4fef-b600-a280aecfc31d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">supi</AUni> -<AUni ws="qvm-x-acl">supi; supi; supe</AUni> -<AUni ws="qvm-x-akh">supi</AUni> -<AUni ws="qvm-x-akl">supi; supi; supe</AUni> -<AUni ws="qvm-x-ame">supi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*supi.n</AUni> -<AUni ws="qvm-x-acl">*supi.n</AUni> -<AUni ws="qvm-x-akh">*supi.n</AUni> -<AUni ws="qvm-x-akl">*supi.n</AUni> -<AUni ws="qvm-x-ame">*supi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.754" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="64f5bee0-6e27-488f-8bfd-aa21c9f5145b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*supi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8a603834-740d-47d5-b4a1-466a5926b092" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="30695424-7e82-4941-a1bb-a0eafaa15d8f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *supi.n 
\entryTyp root 
\gENG fart 
\gSPN pedo 
\e *supi.n 
\c N0 
\mp +FinalI 
\ach supi 
\akh supi 
\acl supi / _# 
\acl supi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl supe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl supi / _# 
\akl supi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl supe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame supi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="12cc3933-0bab-4b41-bc88-aea8f068ea8d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shipu</AUni> -<AUni ws="qvm-x-acl">shipu; shipo</AUni> -<AUni ws="qvm-x-akh">shipu</AUni> -<AUni ws="qvm-x-akl">shipu; shipo</AUni> -<AUni ws="qvm-x-ame">shipu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shipu.v</AUni> -<AUni ws="qvm-x-acl">*shipu.v</AUni> -<AUni ws="qvm-x-akh">*shipu.v</AUni> -<AUni ws="qvm-x-akl">*shipu.v</AUni> -<AUni ws="qvm-x-ame">*shipu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.602" /> -<DateModified val="2022-10-10 21:18:47.207" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="667da006-bb4b-42ac-aac5-9d5ebc98ec70" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shipu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fdf3fdca-2a38-4390-ad4f-417403adf6fd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cceed7a1-b2d1-4da0-a2a9-d2a98bd5a63e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shipu.v 
\entryTyp root 
\gENG 
\gSPN 
\e *shipu.v 
\c V2 
\ach shipu 
\akh shipu 
\acl shipu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shipo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shipu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shipo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shipu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoInflAffMsa" guid="12ccc54c-91e7-41aa-abf7-76699e3503e4" ownerguid="26bab2b5-98cd-499a-8628-93bf684bc5e7"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="2167bf6d-84f4-4209-b618-7a1edf05092a" t="r" /> -</Slots> -</rt> -<rt class="MoStemAllomorph" guid="12cf8e87-019e-4e39-be06-e4969acc4fbe" ownerguid="608cf9b0-b9df-47d6-aec9-7d429c877173"> -<Form> -<AUni ws="qvm-x-ach">tsaga</AUni> -<AUni ws="qvm-x-acl">tsaga</AUni> -<AUni ws="qvm-x-akh">tsaqa</AUni> -<AUni ws="qvm-x-akl">tsaqa</AUni> -<AUni ws="qvm-x-ame">tsaqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="12d13dd6-a862-41d5-81a3-9e19dfdd2a08" ownerguid="d839f4ef-784f-4f94-bd37-31039eb5e3fe"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="12d73f07-821e-4621-98a7-486b1619e81a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">añas</AUni> -<AUni ws="qvm-x-acl">añas</AUni> -<AUni ws="qvm-x-akh">añas</AUni> -<AUni ws="qvm-x-akl">añas</AUni> -<AUni ws="qvm-x-ame">añas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*añas</AUni> -<AUni ws="qvm-x-acl">*añas</AUni> -<AUni ws="qvm-x-akh">*añas</AUni> -<AUni ws="qvm-x-akl">*añas</AUni> -<AUni ws="qvm-x-ame">*añas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.800" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c20fc66f-f2b1-43fd-84f8-a0a61cd1cdec" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*añas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5e7e8f2b-1811-4c33-96d2-c0acc755fb21" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ba8cb08a-a1ac-48ce-ac38-708111a42130" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *añas 
\entryTyp root 
\gENG 
\gSPN zorrillo 
\e *añas 
\c N0 
\mp +FinalC 
\ach añas 
\akh añas 
\acl añas 
\akl añas 
\ame añas</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="12d752d5-53a9-46f6-9e81-3153401cc760" ownerguid="06cb2024-5f7b-467c-b32c-ef4c56030ac0"> -<Abbreviation> -<AUni ws="en">8.4.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.640" /> -<DateModified val="2022-9-23 16:55:8.640" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to planning the time of an event.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Plan a time</AUni> -</Name> -<Questions> -<objsur guid="4bc8f0a5-d18d-4bbc-86c5-43bc0d6e69c0" t="o" /> -<objsur guid="bbc484f9-a167-4fcb-84cd-8bf9f0ba16a4" t="o" /> -<objsur guid="9e0c1717-3a25-4d44-ac7a-8824b303fbca" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="12d952dc-94d7-4068-b4d5-de30e80c8924" ownerguid="a98c1553-69e2-4620-9a5e-8c027b96520e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">condor</AUni> -<AUni ws="es">condor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2cc2c2e5-96d9-4e2b-a5a9-bee3cbc012ca" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="12d991ff-96b9-48ce-aa71-88f7305d6e6f" ownerguid="c01d8a5a-3f39-4061-9da5-f37d95177dee"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="12db9296-9995-41cc-888b-6085c55b83e5" ownerguid="5d1bb537-bcee-49f4-bb91-86f347bc471d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shine</AUni> -<AUni ws="es">alumbrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b76a828b-eac9-466a-9339-798850f3f534" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="12de2247-1736-40b4-8548-f23c500678fe" ownerguid="9c5d5f3a-51c2-4945-b1c5-d59421434b75"> -<Form> -<AUni ws="qvm-x-ach">palëta</AUni> -<AUni ws="qvm-x-acl">palëta</AUni> -<AUni ws="qvm-x-akh">palëta</AUni> -<AUni ws="qvm-x-akl">palëta</AUni> -<AUni ws="qvm-x-ame">palëta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="12e5427f-6be6-4fcd-9834-c8ae477fd415"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">escla:vu</AUni> -<AUni ws="qvm-x-acl">escla:vu; escla:vu; escla:vo</AUni> -<AUni ws="qvm-x-akh">escla:vu</AUni> -<AUni ws="qvm-x-akl">escla:vu; escla:vu; escla:vo</AUni> -<AUni ws="qvm-x-ame">escla:vu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+esclavo</AUni> -<AUni ws="qvm-x-acl">+esclavo</AUni> -<AUni ws="qvm-x-akh">+esclavo</AUni> -<AUni ws="qvm-x-akl">+esclavo</AUni> -<AUni ws="qvm-x-ame">+esclavo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.487" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b9e3d614-cb46-46b0-9d87-aa1c2f2ba563" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+esclavo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a6745453-3f1b-4716-97c7-2f860ddf88c3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="18a2fb8a-16a7-4c21-a801-45c2db6d189f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +esclavo 
\entryTyp root 
\gENG slave 
\gSPN esclavo 
\e +esclavo 
\c N0 
\ach escla:vu 
\akh escla:vu 
\acl escla:vu / _# 
\acl escla:vu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl escla:vo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl escla:vu / _# 
\akl escla:vu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl escla:vo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame escla:vu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="12e81535-d775-4908-bbe7-a83cfd6d8ba5" ownerguid="14a7ae1e-68e1-42dd-8dac-28006b0c7165"> -<Form> -<AUni ws="qvm-x-ach">tishya; tishyä</AUni> -<AUni ws="qvm-x-acl">tishya; tishyä</AUni> -<AUni ws="qvm-x-akh">tishya; tishyä</AUni> -<AUni ws="qvm-x-akl">tishya; tishyä</AUni> -<AUni ws="qvm-x-ame">tishya; tishyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="12e92c7e-ad96-4912-9dc9-840773c8d8af" ownerguid="efe242bb-d9d5-4120-8404-399fea031fe0"> -<Form> -<AUni ws="qvm-x-ach">chacU</AUni> -<AUni ws="qvm-x-acl">chacu</AUni> -<AUni ws="qvm-x-akh">chakU</AUni> -<AUni ws="qvm-x-akl">chakU</AUni> -<AUni ws="qvm-x-ame">chakU</AUni> -</Form> -<IsAbstract val="True" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="12ea5f4c-8b0d-480d-87c0-e1093d36c342" ownerguid="1ec85151-eba0-48f4-b56d-4f8040602a4b"> -<ExampleWords> -<AUni ws="en">will, last will and testament, probate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a will?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="12ebd22f-6b95-4c13-8f13-b6ad3d14bd85" ownerguid="4ead25b0-39ad-459b-a180-9f98727d5a9f"> -<Form> -<AUni ws="qvm-x-ach">lica</AUni> -<AUni ws="qvm-x-acl">lica</AUni> -<AUni ws="qvm-x-akh">lika</AUni> -<AUni ws="qvm-x-akl">lika</AUni> -<AUni ws="qvm-x-ame">lika</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="12ed3a86-33b0-4327-acac-d1e7279c02fa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jita</AUni> -<AUni ws="qvm-x-acl">jita</AUni> -<AUni ws="qvm-x-akh">jita</AUni> -<AUni ws="qvm-x-akl">jita</AUni> -<AUni ws="qvm-x-ame">hita</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hita.v1</AUni> -<AUni ws="qvm-x-acl">*hita.v1</AUni> -<AUni ws="qvm-x-akh">*hita.v1</AUni> -<AUni ws="qvm-x-akl">*hita.v1</AUni> -<AUni ws="qvm-x-ame">*hita.v1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.731" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c667c42a-4269-46b7-8e4d-d2fe7d254800" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hita.v1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ac18060f-110e-496f-92b1-00b734d4cd06" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0460ca79-f461-41b8-81d1-18d8f0253a00" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hita.v1 
\entryTyp root 
\gENG cast 
\gSPN echar 
\e *hita.v1 
\c V1 
\ach jita 
\akh jita 
\acl jita 
\akl jita 
\ame hita</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="12efc02d-8cda-4837-99ea-84dea2dfdd83" ownerguid="8ffcef92-94d7-468e-9737-fad8567dce13"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="12efda08-b8c3-47c6-a0b9-dc5dd64e0456" ownerguid="72274e9d-5d3c-4ae7-93ab-db3617cdda1e"> -<ExampleWords> -<AUni ws="en">feel (hot/cold/tired/sick), experience, come over all</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to feeling something with your whole body?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="12f07ce3-ec8f-4346-86f2-164babcd3ae3" ownerguid="4260e110-7b04-4d40-9391-486a57aa3031"> -<ExampleWords> -<AUni ws="en">maturely</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something someone does that is mature?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="12f12bf3-f232-4477-bf39-d91b7f55c2c3" ownerguid="457231c8-4eb6-4460-aa45-3e9f2c4e8975"> -<Abbreviation> -<AUni ws="en">8.4.6.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.660" /> -<DateModified val="2022-9-23 16:55:8.660" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to something happening often--happening or done many times.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Often</AUni> -</Name> -<Questions> -<objsur guid="c29f92f9-2781-4fde-9d47-137dbe748191" t="o" /> -<objsur guid="5737552b-09d9-4cfe-b3de-171b4ffc4672" t="o" /> -<objsur guid="238c7931-9f00-4811-a7ec-9c8bd0d2a78a" t="o" /> -<objsur guid="d8c84c77-1e1a-4421-ad21-60c051368cdf" t="o" /> -<objsur guid="a7cc2d4e-8265-4fe8-86bc-a07775baf95c" t="o" /> -<objsur guid="aa3478a3-c7c8-45eb-8ee8-b25f57a7d1de" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="12f16691-6aac-45c7-b072-af78a1d9a872" ownerguid="6a4508b4-c05d-4b1d-851f-455d62cb2d78"> -<Form> -<AUni ws="qvm-x-ach">lavatoriu; lavatorio</AUni> -<AUni ws="qvm-x-acl">lavatoriu; lavatoriu; lavatorio</AUni> -<AUni ws="qvm-x-akh">lavatoriu; lavatorio</AUni> -<AUni ws="qvm-x-akl">lavatoriu; lavatoriu; lavatorio</AUni> -<AUni ws="qvm-x-ame">lavatoriu; lavatorio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="12f8ca80-42e8-4fbf-b918-e0c79cb9b81a" ownerguid="a9470e53-ee43-4c87-9cce-09cc4fa6b1c1"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">We traveled <via> the highway most of the way.; What <route> will you follow?</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">via, course, route</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate the Path of movement?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="12fb0f74-8f09-4fbe-bc7b-41c9352a0111" ownerguid="4dc63b4c-d62e-46a3-9257-a888174bbff8"> -<Form> -<AUni ws="qvm-x-ach">cantu; canto</AUni> -<AUni ws="qvm-x-acl">cantu; cantu; canto</AUni> -<AUni ws="qvm-x-akh">cantu; canto</AUni> -<AUni ws="qvm-x-akl">cantu; cantu; canto</AUni> -<AUni ws="qvm-x-ame">cantu; canto</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="12fde7ca-dd9b-416e-9f77-28468f4112da" ownerguid="fe0f53d3-a585-4874-98f3-8e9b3424a84a"> -<Form> -<AUni ws="qvm-x-ach">gata</AUni> -<AUni ws="qvm-x-acl">gata</AUni> -<AUni ws="qvm-x-akh">qata</AUni> -<AUni ws="qvm-x-akl">qata</AUni> -<AUni ws="qvm-x-ame">qata</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="12fe5f6c-7f98-47ba-936a-bcd1065c2db3" ownerguid="c7c85346-158d-4881-839d-9a6a8e47209b"> -<Abbreviation> -<AUni ws="en">7.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use the domains in this section for words referring to moving in a direction related to the orientation of the person's body (not in relation to the position of the destination).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Move in a direction</AUni> -</Name> -<Questions> -<objsur guid="175072e7-b8fc-421c-9032-54ed92a7f689" t="o" /> -<objsur guid="9ac96c01-9c05-44db-9144-b24d97c2fad6" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="8e59041e-660b-4f3e-9a11-83217417209e" t="o" /> -<objsur guid="6de4e99b-2b5a-493a-a208-f024d1eabdf3" t="o" /> -<objsur guid="f4b18e9c-b465-4763-ba79-d7eed2cebcfa" t="o" /> -<objsur guid="9d6cbe74-93d6-41fb-b7e2-cc30adb28187" t="o" /> -<objsur guid="16081dd6-72e5-4826-b86d-958dd82a01c0" t="o" /> -<objsur guid="60a5fa58-45b1-41ae-9430-5200e8bfbcb8" t="o" /> -<objsur guid="8bcc3b3d-dd0c-4838-a33a-b395f354c86f" t="o" /> -<objsur guid="3c9fe647-2647-4f43-8bac-7facc054f7ff" t="o" /> -<objsur guid="36176d59-171b-4a0a-a0f7-a8f9857536a1" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="12ff3ad6-9f94-4450-b2ef-acdaef425998" ownerguid="86fdf532-60dc-435a-9409-bf988114cdcf"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">chunca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">chunca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">chunka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">chunka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">chunka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="fb0a8a06-4b50-4ab0-b4df-2d00d716343b" t="r" /> -</Morph> -<Msa> -<objsur guid="72310c60-6099-45d6-b8ef-84a2cecc293f" t="r" /> -</Msa> -<Sense> -<objsur guid="7580bc6a-c865-4237-b279-3220dfb95753" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="1300719d-cb10-40ea-a158-247cfd41a177"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tama:ñu</AUni> -<AUni ws="qvm-x-acl">tama:ñu; tama:ñu; tama:ño</AUni> -<AUni ws="qvm-x-akh">tama:ñu</AUni> -<AUni ws="qvm-x-akl">tama:ñu; tama:ñu; tama:ño</AUni> -<AUni ws="qvm-x-ame">tama:ñu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tamaño</AUni> -<AUni ws="qvm-x-acl">+tamaño</AUni> -<AUni ws="qvm-x-akh">+tamaño</AUni> -<AUni ws="qvm-x-akl">+tamaño</AUni> -<AUni ws="qvm-x-ame">+tamaño</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.794" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="56086a86-5904-41bb-a658-3bbe5e1d26ea" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tamaño</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b5b671d3-4d33-4765-ab1d-d708195aa79e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="832c473f-9183-488b-8af1-5c3cd3fe6149" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tamaño 
\entryTyp root 
\gENG size 
\gSPN tamaño 
\e +tamaño 
\c N0 
\ach tama:ñu 
\akh tama:ñu 
\acl tama:ñu / _# 
\acl tama:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tama:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tama:ñu / _# 
\akl tama:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tama:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tama:ñu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1302a161-b1bd-46cc-b44a-3c1f120591bb" ownerguid="3710e019-46c9-44db-a0aa-9054d3126161"> -<ExampleWords> -<AUni ws="en">drug paraphernalia</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What tools are used to take drugs?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1303c423-8310-4a36-b954-6e909f7af3f7" ownerguid="bc9d763c-e4fe-48ab-ad44-87a36f6cc06f"> -<ExampleWords> -<AUni ws="en">target</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to someone who is criticized?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="130a72c2-633c-4f2f-af85-35411c084db9" ownerguid="2e97b83d-1152-473f-9cbe-347f0655041a"> -<ExampleWords> -<AUni ws="en">wiggle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the ears moving?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="130e2cbb-7e51-4f6f-a1cf-7a053a44c9b7" ownerguid="ac9ee84f-f0c7-48b3-8e5a-b4c967112394"> -<Abbreviation> -<AUni ws="en">8.3.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is decorated.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Decorated</AUni> -</Name> -<OcmCodes> -<Uni>353 Building Interiors and Arrangement; Interior Decoration and Arrangement</Uni> -</OcmCodes> -<Questions> -<objsur guid="b962e322-e672-43d1-aa81-38ce319164a3" t="o" /> -<objsur guid="a095b4cf-3eec-486a-b603-6de49a7c6305" t="o" /> -<objsur guid="92c29fab-5740-4fc1-be29-da9918d99ebc" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="91e95825-677a-4221-9e55-78a73bbac6ee" t="o" /> -<objsur guid="312ce7a7-8c7c-416d-bf93-73376f1f16d8" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="13112337-eb61-4746-a7f8-f5512afb5a81" ownerguid="536a2d3e-2303-43bc-bf53-379131eb5730"> -<ExampleWords> -<AUni ws="en">blue, azure, baby-blue, beryl-blue, carbuncle, cerulean, cobalt, cyan, cyanic, indigo, lapis lazuli, navy blue, Prussian blue, royal blue, sapphire, sky blue, teal, turquoise, ultramarine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What are the shades of blue?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="131139b9-8fc9-43f3-ac33-4fed3668a22c" ownerguid="c817af65-7cc8-4105-a8ed-47067d97b73b"> -<ExampleWords> -<AUni ws="en">greens, surgical suit, white coat, nurses cap</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What special clothes are worn by doctors?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="13129ec3-872e-4183-8b6d-190a317ab0f4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">atsca</AUni> -<AUni ws="qvm-x-acl">atsca</AUni> -<AUni ws="qvm-x-akh">atska</AUni> -<AUni ws="qvm-x-akl">atska</AUni> -<AUni ws="qvm-x-ame">atska</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*achka</AUni> -<AUni ws="qvm-x-acl">*achka</AUni> -<AUni ws="qvm-x-akh">*achka</AUni> -<AUni ws="qvm-x-akl">*achka</AUni> -<AUni ws="qvm-x-ame">*achka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.639" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="56eaf5b7-255e-4811-bb18-f3465f56a55a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*achka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bf695009-b899-4e09-9659-5e682af50b4c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dae2c0a0-3f0a-4df5-a9eb-00e4e0aaebe9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *achka 
\entryTyp root 
\gENG many 
\gSPN mucho 
\e *achka 
\c N0 
\ach atsca 
\akh atska 
\acl atsca 
\akl atska 
\ame atska</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="131668a4-5e2f-47fa-95c5-9fb8e4e3a4e1" ownerguid="ceadcecc-fbf2-4c11-9122-54b7202bcacb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">new.field</AUni> -<AUni ws="es">chacra.nueva</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dd502690-9c38-478a-a5d8-5ef5595437e2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="13167df9-db41-473c-9569-f3c948e4f477" ownerguid="d2f3aed7-a012-414b-8269-a9170db0555d"> -<Form> -<AUni ws="qvm-x-ach">shalshalya</AUni> -<AUni ws="qvm-x-acl">shalshalya</AUni> -<AUni ws="qvm-x-akh">shalshalya</AUni> -<AUni ws="qvm-x-akl">shalshalya</AUni> -<AUni ws="qvm-x-ame">shalshalya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="1319aa46-ea1f-4045-a77a-1978d236fcae" ownerguid="93757be7-a56b-401d-a711-9fec677293d2"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="1321edb9-3abe-4b08-ad44-3d81788170be" ownerguid="47673f92-486c-422e-b979-7f35a6b3adde"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="7d7c0494-b16a-4c74-83c0-8a2e3617f882" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">disgust</AUni> -<AUni ws="es">asquear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7589e73b-f378-4ffe-b159-55fb113fa766" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="13222a7b-d65a-45c6-aa77-04410c9610c8" ownerguid="cadfe0ec-0857-471a-b3a8-0a97f896a7b3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="1325df44-76cf-4c95-a918-304f22d502a2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fle:ta</AUni> -<AUni ws="qvm-x-acl">fle:ta</AUni> -<AUni ws="qvm-x-akh">fle:ta</AUni> -<AUni ws="qvm-x-akl">fle:ta</AUni> -<AUni ws="qvm-x-ame">fle:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fletar</AUni> -<AUni ws="qvm-x-acl">+fletar</AUni> -<AUni ws="qvm-x-akh">+fletar</AUni> -<AUni ws="qvm-x-akl">+fletar</AUni> -<AUni ws="qvm-x-ame">+fletar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.568" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="404337c3-03d7-47ad-a82f-c962b9a4b72a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fletar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2b679f9a-f190-4923-bc0a-136b4949d162" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d6b4e906-3493-4744-88fa-837171596ea8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fletar 
\entryTyp root 
\gENG rent 
\gSPN fletar 
\e +fletar 
\c V2 
\ach fle:ta 
\akh fle:ta 
\acl fle:ta 
\akl fle:ta 
\ame fle:ta 
\i EZK 17.15 Tsaymi cachacunata cachargan Egiptupita cawallucunata y atsca soldäducunata flëtacamunanpag.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="13285d39-4c13-4ba9-ad6f-051f3dc0aed7" ownerguid="1bbc977d-5778-450c-abfa-be746b255c3d"> -<Form> -<AUni ws="qvm-x-ach">diäcunu</AUni> -<AUni ws="qvm-x-acl">diäcunu; diäcunu; diäcuno</AUni> -<AUni ws="qvm-x-akh">diäcunu</AUni> -<AUni ws="qvm-x-akl">diäcunu; diäcunu; diäcuno</AUni> -<AUni ws="qvm-x-ame">diäcunu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1328fef4-f7fa-4670-b0d9-99d949a07427" ownerguid="cb95189c-8c74-465b-af07-48e08dbf7c39"> -<ExampleWords> -<AUni ws="en">control yourself, self-control, restrain yourself, restraint, contain yourself, keep your temper</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to controlling your feelings?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="132dd35d-b261-4043-93c2-e6863d7ee865" ownerguid="6bd023f6-730e-44c2-ae8f-78df967e2e18"> -<ExampleWords> -<AUni ws="en">pull at, pull on, give something a pull, tug at, give something a tug</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to pulling something, but without making it come away from the thing it is connected to?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="13302bbd-3400-4297-b5c3-f9a5aef9f238" ownerguid="e28f3f79-d4a5-402c-8a70-196856791078"> -<ExampleWords> -<AUni ws="en">What are you doing? What are you up to? What do you think you are doing?</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) How do you ask someone what he is doing?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="13328071-fced-4c92-8204-494cd1066b5b" ownerguid="a387caa2-ccba-430a-96a1-09f6b233ab19"> -<Form> -<AUni ws="qvm-x-ach">bröma</AUni> -<AUni ws="qvm-x-acl">bröma</AUni> -<AUni ws="qvm-x-akh">bröma</AUni> -<AUni ws="qvm-x-akl">bröma</AUni> -<AUni ws="qvm-x-ame">bröma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="13351605-1d0a-41ba-8702-79c043f6f23e" ownerguid="85912845-21b0-41eb-8b8c-1f5c3d53df08"> -<ExampleWords> -<AUni ws="en">inspire, motivate, fire up, enthuse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to causing someone to feel enthusiastic?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="13361cb8-c030-4cd8-99cc-2d443ff6b336" ownerguid="23b1a6b4-8d91-425c-b8c2-52d06b1c1d23"> -<ExampleWords> -<AUni ws="en">breakable, brittle, delicate, fragile, flimsy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe something that is easily broken?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1338098c-7713-4820-a9ac-8a92509c8395" ownerguid="ef2aab61-f171-4aa2-bea2-308a8e343338"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="c9564e5d-6fdc-4261-9a4c-3ad629531e5b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoAffixAllomorph" guid="13381d5f-70dc-406a-ac52-792a856bd979" ownerguid="bbaea43a-2d94-44e0-a2cc-d81fbf5d59cd"> -<Form> -<AUni ws="qvm-x-ach">yag</AUni> -<AUni ws="qvm-x-acl">yag</AUni> -<AUni ws="qvm-x-akh">yaq</AUni> -<AUni ws="qvm-x-akl">yaq</AUni> -<AUni ws="qvm-x-ame">yaq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="1338ce3b-b3b0-46f3-b474-571cefe56e57" ownerguid="01cbdf1d-9732-4b93-a14c-f0837ecc797e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="1342b159-6cd9-47bf-b055-964f0256d367" ownerguid="fb003309-1d75-458e-aa57-0fa41ec866a8"> -<Form> -<AUni ws="qvm-x-ach">colegiu; colegio</AUni> -<AUni ws="qvm-x-acl">colegiu; colegiu; colegio</AUni> -<AUni ws="qvm-x-akh">colegiu; colegio</AUni> -<AUni ws="qvm-x-akl">colegiu; colegiu; colegio</AUni> -<AUni ws="qvm-x-ame">colegiu; colegio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="1344baaf-71cf-4b7e-af83-727e7bb88373" ownerguid="2cb96ed7-f686-4749-b7a5-028396b96019"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="1344d1f9-6656-46f6-8566-70e68faa1cfd" ownerguid="65b454ee-2a3d-4790-8efe-23f4e1c025b9"> -<Form> -<AUni ws="qvm-x-ach">chuecu; chueco</AUni> -<AUni ws="qvm-x-acl">chuecu; chuecu; chueco</AUni> -<AUni ws="qvm-x-akh">chuecu; chueco</AUni> -<AUni ws="qvm-x-akl">chuecu; chuecu; chueco</AUni> -<AUni ws="qvm-x-ame">chuecu; chueco</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="1344dce6-9fae-41ec-ad33-2fe557289a0e" ownerguid="2477844f-c33e-4607-857f-f5b8bc56037e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="8067325a-d571-4bba-9181-f891d745416d" t="o" /> -<objsur guid="97a62eb6-6aa7-42de-b251-e6ba935dbf72" t="o" /> -<objsur guid="5c2a6299-9c7a-4c02-ba6e-c8054a346b44" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">do.chiropractor</AUni> -<AUni ws="es">aberturar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0d777f56-4201-4695-ad1d-51c84d75d05f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="134558c7-12c3-4aab-9f7f-8f151fd42cd2" ownerguid="4bedae6a-1df4-40e5-8a2f-ab0a1f41997e"> -<ExampleWords> -<AUni ws="en">thatch, shingle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What plant products are used for the roof of a building?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1346aba1-8d16-4d86-8f50-d6de8aecf4f2" ownerguid="f11be6f7-2d7c-4e70-a319-c0e2114c7fbb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1346b729-bf4b-401b-bac6-5b1dcc22c889" ownerguid="f9516c66-ac2c-49dd-951a-0d3606450463"> -<ExampleWords> -<AUni ws="en">bias someone against, prejudice someone against</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to one person causing another to be unfair?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="13488e2b-afbc-453e-b013-abf6df6fa4e3" ownerguid="6cbdaf94-8e2c-4b26-936a-d2f86d158250"> -<ExampleWords> -<AUni ws="en">yellow, brown, black, white, red</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person's race on the basis of their color?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="134a4be4-8866-4243-a4fe-9f57e338c8b9" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<ExampleWords> -<AUni ws="en">cook, butcher, baker, restaurant owner, waiter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What are the occupations in food preparation?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="134bc233-8657-44c7-806f-7a8327bccd5a" ownerguid="f3544a0c-b902-49af-96ca-a51744c1763f"> -<Example> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">jatichi; munachi; parlachi</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="134c68a9-ac3f-4b7e-8fca-63642d796a75" ownerguid="7558d071-a885-447b-9aa2-604c29669492"> -<Abbreviation> -<AUni ws="en">4.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.256" /> -<DateModified val="2022-9-23 16:55:8.256" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a citizen of a country.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Citizen</AUni> -</Name> -<OcmCodes> -<Uni>641 Citizenship; 160 Demography; 161 Population; 162 Composition of Population; 163 Birth Statistics; 164 Morbidity; 165 Mortality; 168 Population Policy</Uni> -</OcmCodes> -<Questions> -<objsur guid="cd10b786-9db6-4575-a9fe-0b68b9430694" t="o" /> -<objsur guid="d17fbea8-e17f-49d0-9517-7651915f831e" t="o" /> -<objsur guid="caef2923-f573-47a5-aba1-c36e621b0abc" t="o" /> -<objsur guid="37ef9ff5-f156-48b4-912d-3069934e77d7" t="o" /> -<objsur guid="20f25e19-b425-4f82-9aa1-a8780c420f85" t="o" /> -<objsur guid="025a1127-3c4b-48ad-8f45-a249f78d9a02" t="o" /> -<objsur guid="79c6103b-2cdb-444a-8bf9-5d0c6b6749c8" t="o" /> -<objsur guid="d079b5fb-6a6e-45ff-913e-4546e2d6d882" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="d2f516f4-df1c-44f6-8704-76dd52201317" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="13549774-3e96-448c-b4c8-c81d94ad755d" ownerguid="b7ed2482-6883-4a02-a992-e86c2573cc74"> -<ExampleWords> -<AUni ws="en">put aside, put to the side, put beside, move aside, push aside</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to putting something to the side of something else?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="13568de9-7fd1-4997-a27d-bef1989b5a47"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">papa</AUni> -<AUni ws="qvm-x-acl">papa</AUni> -<AUni ws="qvm-x-akh">papa</AUni> -<AUni ws="qvm-x-akl">papa</AUni> -<AUni ws="qvm-x-ame">papa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*papa</AUni> -<AUni ws="qvm-x-acl">*papa</AUni> -<AUni ws="qvm-x-akh">*papa</AUni> -<AUni ws="qvm-x-akl">*papa</AUni> -<AUni ws="qvm-x-ame">*papa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.699" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="655dd8bf-59ce-42aa-9f67-b877f4a19e3e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*papa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f0d59d06-7dd4-473b-9b42-86d47f5c07f5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="18bc40a8-fc75-436d-9131-460c9ac3fa03" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *papa 
\entryTyp root 
\gENG potato 
\gSPN papa 
\e *papa 
\c N0 
\ach papa 
\akh papa 
\acl papa 
\akl papa 
\ame papa 
\mcc *papa +/ ~_ 1P.V</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="135f5aaf-e191-4688-9a98-bc76160fb439" ownerguid="cbc7166b-1360-4094-8d98-a77a380fdc86"> -<Form> -<AUni ws="qvm-x-ach">pani</AUni> -<AUni ws="qvm-x-acl">pani; pani; pane</AUni> -<AUni ws="qvm-x-akh">pani</AUni> -<AUni ws="qvm-x-akl">pani; pani; pane</AUni> -<AUni ws="qvm-x-ame">pani</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="13608284-783e-46b9-b96c-07b6ed91f713" ownerguid="2f33bc13-61ef-4192-9634-72d503c0e1ba"> -<Form> -<AUni ws="qvm-x-ach">däñu</AUni> -<AUni ws="qvm-x-acl">däñu; däño</AUni> -<AUni ws="qvm-x-akh">däñu</AUni> -<AUni ws="qvm-x-akl">däñu; däño</AUni> -<AUni ws="qvm-x-ame">däñu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="13611f30-bd8e-48f1-98f2-64bafa69dfc6" ownerguid="0c54aece-ae0a-403b-910a-a0d169782b5c"> -<Form> -<AUni ws="qvm-x-ach">salvador</AUni> -<AUni ws="qvm-x-acl">salvador</AUni> -<AUni ws="qvm-x-akh">salvador</AUni> -<AUni ws="qvm-x-akl">salvador</AUni> -<AUni ws="qvm-x-ame">salvador</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="13636163-1442-4711-9290-acdfc2d7fd39" ownerguid="f47e971c-6c4f-4043-9748-90e387f2cc3e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="13686e4a-3900-472f-9c20-24cbc8623726" ownerguid="b7f4fd44-fa17-46a8-bdaf-d3399d6cb0ac"> -<ExampleWords> -<AUni ws="en">lose, loss, misplace</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to losing something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="136ac640-143d-49f3-8433-e9e006521fa6" ownerguid="60364974-a005-4567-82e9-7aaeff894ab0"> -<ExampleWords> -<AUni ws="en">waterproof, watertight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that water cannot pass through?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="136b4d64-de79-48b9-8014-8bf9ac7b6d41"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">corrienti; corriente</AUni> -<AUni ws="qvm-x-acl">corrienti; corrienti; corriente</AUni> -<AUni ws="qvm-x-akh">corrienti; corriente</AUni> -<AUni ws="qvm-x-akl">corrienti; corrienti; corriente</AUni> -<AUni ws="qvm-x-ame">corrienti; corriente</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+corriente</AUni> -<AUni ws="qvm-x-acl">+corriente</AUni> -<AUni ws="qvm-x-akh">+corriente</AUni> -<AUni ws="qvm-x-akl">+corriente</AUni> -<AUni ws="qvm-x-ame">+corriente</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.211" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="84b26be1-8c7b-42d3-94a8-c8eb1965f975" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+corriente</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="df14a75d-d776-4cfc-a19e-82076f6c8de2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b1c74096-907d-409a-ba54-700e6774ea7f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +corriente 
\entryTyp root 
\gENG current 
\gSPN corriente 
\e +corriente 
\c N0 
\mp +FinalI 
\ach corrienti / ~_# 
\ach corriente / _# 
\akh corrienti / ~_# 
\akh corriente / _# 
\acl corrienti / ~_# 
\acl corrienti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl corriente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl corrienti / ~_# 
\akl corrienti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl corriente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame corrienti / ~_# 
\ame corriente / _# 
\i 1KI 4.22 Salomónpäga cada junag micuyta shuntapäcog sogta waranga sogta pachac (6,600) kïlu alinnin cag harinata, chunca quimsa waranga ishcay pachac (13,200) kïlu corrienti cag harinata,</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="136bcd61-c5da-464f-8c9a-81f6f992504e" ownerguid="fbc9c7c9-f6df-478c-86ae-d96ae0ef8021"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="136c49a6-0125-4b83-ad61-fa196aeab76e" ownerguid="6bc902d0-7e1b-4af5-a8bb-4d7362eaa96c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="a6ee3b26-629b-4ec4-9e7c-df3f25056f14" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">be.succulent</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="decbb379-4754-4271-9988-f61ef722a83d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="136ee2aa-9a25-45e2-ade0-0336e5210ff7" ownerguid="f2c32894-64b5-436c-ab8f-b5045fa2a753"> -<Form> -<AUni ws="qvm-x-ach">figura</AUni> -<AUni ws="qvm-x-acl">figura</AUni> -<AUni ws="qvm-x-akh">figura</AUni> -<AUni ws="qvm-x-akl">figura</AUni> -<AUni ws="qvm-x-ame">figura</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="136f2e28-1ec6-487c-8ce7-e62c4d0ffdf6" ownerguid="8bc527ac-155c-4d88-b553-aab9e97e5502"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1371fe6c-df75-4728-bf23-a8a1cbca2fb1" ownerguid="0aaacffe-9b6c-49a7-bf68-c0f9ff3e120e"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Who has the <most> children?</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">the most</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the largest group?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="137f4b18-c9b8-4aaf-be24-efcdaff871eb" ownerguid="bd8f8f0d-e1c1-4e7f-9467-6a882455dc95"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cay</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cay</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kay</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kay</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kay</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a7b299e0-c78a-4279-9168-db242095977e" t="r" /> -</Morph> -<Msa> -<objsur guid="90ff85be-42f6-4a30-a658-5b1780202333" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="1383f82a-bf94-4fd3-97c6-2f922df73929"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">go:rra</AUni> -<AUni ws="qvm-x-acl">go:rra</AUni> -<AUni ws="qvm-x-akh">go:rra</AUni> -<AUni ws="qvm-x-akl">go:rra</AUni> -<AUni ws="qvm-x-ame">go:rra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gorra</AUni> -<AUni ws="qvm-x-acl">+gorra</AUni> -<AUni ws="qvm-x-akh">+gorra</AUni> -<AUni ws="qvm-x-akl">+gorra</AUni> -<AUni ws="qvm-x-ame">+gorra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.619" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1935e307-f0cc-42bc-b391-1f00291f52c6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gorra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8d084b5d-2249-4a0d-94ca-7fab556eea92" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ba5bb5ea-0131-4dca-aa3f-e26f433e9548" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gorra 
\entryTyp root 
\gENG cap 
\gSPN gorra 
\e +gorra 
\c N0 
\ach go:rra 
\akh go:rra 
\acl go:rra 
\akl go:rra 
\ame go:rra 
\i Exo 28.4 Jaticunanpag röpancuna canga pectoral, efod, sotäna, bordashga tünica, görranirag coröna y wachcupis.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="138529ed-cd66-4274-8bc5-4ebb36b2e583" ownerguid="a2391a6a-c20c-4a14-bb4c-c2e8bbd697a6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">fiyu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">fiyu; fiyu; fiyo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">fiyu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">fiyu; fiyu; fiyo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">fiyu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="8af51d38-7b5d-4a73-89f8-f39e115e8e55" t="r" /> -</Morph> -<Msa> -<objsur guid="4780accf-3d86-484c-a8d2-c398d837871c" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="13878a16-5b51-48cf-8d2b-9e4a5659c1cf" ownerguid="284433df-7b37-4e63-a614-78520c483213"> -<ExampleWords> -<AUni ws="en">track</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to animal tracks?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="138c2ecc-98fe-44ae-a61c-58424f6b5400" ownerguid="10708644-7060-42cc-9ce5-b36c4f95f9c5"> -<Form> -<AUni ws="qvm-x-ach">icsi</AUni> -<AUni ws="qvm-x-acl">icsi; icsi; icse</AUni> -<AUni ws="qvm-x-akh">iksi</AUni> -<AUni ws="qvm-x-akl">iksi; iksi; ikse</AUni> -<AUni ws="qvm-x-ame">iksi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="138c3650-5df0-47cd-bcd4-1b93a02e4fe0" ownerguid="3389561c-f264-48b9-b94c-86c33fc3c423"> -<ExampleWords> -<AUni ws="en">average (n), mean, medium, median</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to an average number?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="139409c3-7860-4586-897f-85ba3226046c" ownerguid="48d3de9f-3619-4785-b50b-6921ba7eecd6"> -<Abbreviation> -<AUni ws="en">9.6.2.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.720" /> -<DateModified val="2022-9-23 16:55:8.720" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that something had no result.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89H Result</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Without result</AUni> -</Name> -<Questions> -<objsur guid="00efb4d1-3451-4957-b1a4-a7b23d716597" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="139c9830-e453-4fed-8fad-8a3f19e2324f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ganrapa</AUni> -<AUni ws="qvm-x-acl">ganrapa</AUni> -<AUni ws="qvm-x-akh">qanrapa</AUni> -<AUni ws="qvm-x-akl">qanrapa</AUni> -<AUni ws="qvm-x-ame">qanrapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qanrapa</AUni> -<AUni ws="qvm-x-acl">*qanrapa</AUni> -<AUni ws="qvm-x-akh">*qanrapa</AUni> -<AUni ws="qvm-x-akl">*qanrapa</AUni> -<AUni ws="qvm-x-ame">*qanrapa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.84" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="651053d9-85d5-45b8-b5a0-8e2c63e0a905" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qanrapa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d4ee1d67-cff2-47f6-9296-acdd67853f96" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="acdbed9e-5027-46ca-b7e4-131ca0e887b7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qanrapa 
\entryTyp root 
\gENG garbage 
\gSPN basura 
\e *qanrapa 
\c N0 
\ach ganrapa 
\akh qanrapa 
\acl ganrapa 
\akl qanrapa 
\ame qanrapa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="139cac3e-97c9-4cf1-89f9-97724b6a9728" ownerguid="06ac577a-4d61-4898-ac9d-e3f18b7504af"> -<ExampleWords> -<AUni ws="en">safe, clear, found, free, guarded, immune, impregnable, intact, invulnerable, protected, secure, security, sheltered, unharmed, unhurt, unscathed, untouched, welfare, be out of danger, at a safe distance, be in good hands, safe and sound, with a whole skin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe someone who is safe?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="139cd00c-429c-465a-a227-512af0c48039" ownerguid="7524887a-5cf0-4459-96d1-fd8262bef7d4"> -<Abbreviation> -<AUni ws="en">6.2.1.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.383" /> -<DateModified val="2022-9-23 16:55:8.383" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to growing cassava.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Growing cassava</AUni> -</Name> -<Questions> -<objsur guid="91bf167f-32e3-4d1f-b9ea-1975565ac2e9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="13a30676-1c05-4dd8-99cb-b631455ed94c" ownerguid="c55029f6-188e-4812-a5fd-c28e2dba66e2"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="13a3d6a8-b958-4761-9529-5348cbddce64"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">na:ga</AUni> -<AUni ws="qvm-x-acl">na:ga</AUni> -<AUni ws="qvm-x-akh">na:qa</AUni> -<AUni ws="qvm-x-akl">na:qa</AUni> -<AUni ws="qvm-x-ame">na:qa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*na:qa</AUni> -<AUni ws="qvm-x-acl">*na:qa</AUni> -<AUni ws="qvm-x-akh">*na:qa</AUni> -<AUni ws="qvm-x-akl">*na:qa</AUni> -<AUni ws="qvm-x-ame">*na:qa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.537" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e9d6062d-ebf6-4ae8-a623-9462384039f5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*na:qa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="11f8dd35-2de7-4903-8164-6683c458d3cf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="807e02de-291d-4638-a9d6-5df2e18c4f84" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *na:qa 
\entryTyp root 
\gENG already 
\gSPN ya 
\e *na:qa 
\c R0 
\ach na:ga 
\akh na:qa 
\acl na:ga 
\akl na:qa 
\ame na:qa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="13a91a11-9233-4f71-a8a6-99da0cc296bf" ownerguid="e27adda9-0761-4b7f-abbf-24938ce1c01a"> -<ExampleWords> -<AUni ws="en">performance, act, scene, intermission, curtain call</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What are the parts of a drama?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="13a99198-c3f6-4c25-89c3-d0669455c542" ownerguid="eef8c50e-c391-482c-9f60-1bba2d8892b3"> -<ExampleWords> -<AUni ws="en">program, ad</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to programs?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="13a9a25b-6b78-4d45-b51f-57e76b2ed7b2" ownerguid="fc170f70-520e-4f3e-b8b8-98e4b898fd24"> -<ExampleWords> -<AUni ws="en">border, boundary, frontier</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the edge of an area of land?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="13af106e-828a-4c96-bd36-e6880cf24eed"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">trapichi; trapiche</AUni> -<AUni ws="qvm-x-acl">trapichi; trapichi; trapiche</AUni> -<AUni ws="qvm-x-akh">trapichi; trapiche</AUni> -<AUni ws="qvm-x-akl">trapichi; trapichi; trapiche</AUni> -<AUni ws="qvm-x-ame">trapichi; trapiche</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+trapiche</AUni> -<AUni ws="qvm-x-acl">+trapiche</AUni> -<AUni ws="qvm-x-akh">+trapiche</AUni> -<AUni ws="qvm-x-akl">+trapiche</AUni> -<AUni ws="qvm-x-ame">+trapiche</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.68" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="47daceba-20d4-4709-a281-143ad6295a9e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+trapiche</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="322474ad-27f8-4338-8b3d-a40c115abede" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4160fad4-2645-43f9-af73-d5c3fe459fb2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +trapiche 
\entryTyp root 
\gENG mill 
\gSPN trapiche 
\e +trapiche 
\c N0 
\mp +FinalI 
\ach trapichi / ~_# 
\ach trapiche / _# 
\akh trapichi / ~_# 
\akh trapiche / _# 
\acl trapichi / ~_# 
\acl trapichi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl trapiche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl trapichi / ~_# 
\akl trapichi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl trapiche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame trapichi / ~_# 
\ame trapiche / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="13aff896-082c-4ec7-ac96-f512a692d943"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">garcu; garca</AUni> -<AUni ws="qvm-x-acl">garcu; garco; garca</AUni> -<AUni ws="qvm-x-akh">qarku; qarka</AUni> -<AUni ws="qvm-x-akl">qarku; qarko; qarka</AUni> -<AUni ws="qvm-x-ame">qarku; qarka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qarkU</AUni> -<AUni ws="qvm-x-acl">*qarkU</AUni> -<AUni ws="qvm-x-akh">*qarkU</AUni> -<AUni ws="qvm-x-akl">*qarkU</AUni> -<AUni ws="qvm-x-ame">*qarkU</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.114" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e7a232a3-a236-4cec-a634-9a423ea58322" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qarkU</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="59f2ffdb-9b58-46c7-9557-a2766f97e056" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="01a1eebe-0fa9-4302-b712-bc9f73ebc1de" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qarkU 
\entryTyp root 
\gENG throw.out 
\gSPN botar 
\e *qarkU 
\c V1 
\mp PMlowered 
\ach garcu 
\ach garca morphlowered 
\akh qarku 
\akh qarka morphlowered 
\acl garcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl garco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl garca morphlowered 
\akl qarku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qarko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qarka morphlowered 
\ame qarku 
\ame qarka morphlowered 
\i garcucärin</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="13b08dd5-8889-4a04-81f7-1025b04ac6cd" ownerguid="6bf7569e-dc79-49da-9ce1-e2e03303828a"> -<ExampleWords> -<AUni ws="en">punish, discipline, penalty, consequence, punishment, sentence</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to punishing someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="13b1520c-d4f0-4328-8b8c-e090132a842f" ownerguid="e6934a73-27f6-4bc8-a08d-4c5a2d3b330c"> -<Form> -<AUni ws="qvm-x-ach">especial</AUni> -<AUni ws="qvm-x-acl">especial</AUni> -<AUni ws="qvm-x-akh">especial</AUni> -<AUni ws="qvm-x-akl">especial</AUni> -<AUni ws="qvm-x-ame">especial</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="13b155dc-bd4e-4538-a384-c0aa23bfecd3" ownerguid="ed7930df-e7b4-43c9-a11a-b09521276b57"> -<ExampleWords> -<AUni ws="en">smell, scent (v), get a whiff of, catch a whiff of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to smelling something?</AUni> -</Question> -</rt> -<rt class="MoInflAffMsa" guid="13b178aa-cf95-4902-a68b-959ad06fd6f9" ownerguid="6f011005-9763-4284-9571-90529febecf7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="6c1a55b7-decb-4da3-86ca-e0b8dc1a89c0" t="r" /> -</Slots> -</rt> -<rt class="MoStemMsa" guid="13b51248-193a-4b3c-a735-2ead7b13963a" ownerguid="6efaac57-95a7-4aa7-9c6d-9df656a8e349"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="13b9bbd5-adce-4a25-bcfe-97d9bdd93a94" ownerguid="737471bd-1c3e-4fa6-8dae-ed89ed2a7336"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="13c1f126-df16-4971-aae7-4536265db834" ownerguid="26fb2e94-b8fe-4216-9057-ca17a71df83b"> -<ExampleWords> -<AUni ws="en">relaxed, at ease, calm, comfortable, laid-back, uninhibited</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels relaxed?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="13c46f40-b19c-4687-aa9e-9843cac6be89" ownerguid="be675724-22b7-4b01-9858-0296aea77a53" /> -<rt class="MoStemAllomorph" guid="13c4efef-13d3-4295-8991-b347474983a3" ownerguid="269a8ca0-f9ef-4958-8aaf-b1443a7357fb"> -<Form> -<AUni ws="qvm-x-ach">silla</AUni> -<AUni ws="qvm-x-acl">silla</AUni> -<AUni ws="qvm-x-akh">silla</AUni> -<AUni ws="qvm-x-akl">silla</AUni> -<AUni ws="qvm-x-ame">silla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="13c56253-6a2b-4fe6-a8e0-4bf5a8df33e3" ownerguid="c753fc8b-22ae-4e71-807f-56fb3ebd3cdd"> -<ExampleWords> -<AUni ws="en">impotence, impotent, frigid, frigidity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe a person who has difficulty having sex?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="13c7b8f5-3f30-4eea-8589-498b9843c551" ownerguid="10a82711-8829-461a-b172-fc8fff3d555c"> -<ExampleWords> -<AUni ws="en">bark, howl, yap, growl</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What sounds do dogs make?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="13c82f6d-e11a-4daa-b7c0-885528227788" ownerguid="d2ce7dd5-d5dd-4b16-b8c6-7ff7c7e1a0b7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ache</AUni> -<AUni ws="es">doler</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e7d7ac68-f231-474c-b7c2-93719211a3b6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="13c93d1d-6e68-4a11-8b04-122c32df54bd" ownerguid="653dbbd5-0bc8-4c89-b563-2ce36c18cdf6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fall</AUni> -<AUni ws="es">caerse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="48080147-65df-41f9-a50d-36d2dc3d7354" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="13caf546-58cb-4bfa-bf0b-d95b96280862" ownerguid="60b8dcfd-49a0-4ab4-82a7-2c5058b325ae"> -<ExampleWords> -<AUni ws="en">butt, dregs, leavings, offscouring, rags, scrap, sweepings</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the bad part that remains after the good part has been taken?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="13cb1014-1b77-47ad-ab99-527e27209218" ownerguid="9f828e9f-5fb4-4d30-bea1-2f4888b56d35"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">restore</AUni> -<AUni ws="es">reconciliarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="013d17c5-34f8-462f-8fbb-f8cf53541260" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="13cbfb60-7fe0-406b-8095-d4abc8dfdd43" ownerguid="d067b555-e53c-4c16-bb09-5314862d8bae"> -<ExampleWords> -<AUni ws="en">drunkard, drunk, wino, alcoholic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to someone who drinks a lot of alcohol?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="13cc66bd-6be9-4074-9bcd-7a7773807ccf" ownerguid="a099bda7-0779-49fd-a156-66b6d3e2c1d1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="624f96a0-9e89-4198-aac1-00948c68ac9e" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="6b7c151e-a79f-42d6-a9cb-94dd63f8395c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="13cfd356-0573-48f8-9945-2ac3670a03cc" ownerguid="b64933e3-fd57-4090-848e-2af0cc6d8e88"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="13d525c0-9114-4476-b167-a497c0a88a64" ownerguid="7fe9dad7-6fb0-4829-8f85-482da9040667"> -<Form> -<AUni ws="qvm-x-ach">pasäji; pasäji</AUni> -<AUni ws="qvm-x-acl">pasäji; pasäji; pasäje</AUni> -<AUni ws="qvm-x-akh">pasäji; pasäji</AUni> -<AUni ws="qvm-x-akl">pasäji; pasäji; pasäje</AUni> -<AUni ws="qvm-x-ame">pasäji; pasäji</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="13d6c4b2-d416-44eb-bdcf-4d17867e1e60"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">patatay</AUni> -<AUni ws="qvm-x-acl">patatay</AUni> -<AUni ws="qvm-x-akh">patatay</AUni> -<AUni ws="qvm-x-akl">patatay</AUni> -<AUni ws="qvm-x-ame">patatay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*patatay.n</AUni> -<AUni ws="qvm-x-acl">*patatay.n</AUni> -<AUni ws="qvm-x-akh">*patatay.n</AUni> -<AUni ws="qvm-x-akl">*patatay.n</AUni> -<AUni ws="qvm-x-ame">*patatay.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.749" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7f505a81-cf38-43eb-8aca-99f018d4af2d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*patatay.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="04a3b822-6b1f-41ab-8e55-75ff92b1d1b4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9bd455c1-b1f9-4fdb-9c19-c667a71e80f8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *patatay.n 
\entryTyp root 
\gENG 
\gSPN 
\e *patatay.n 
\c N0 
\mp +FinalC 
\ach patatay 
\akh patatay 
\acl patatay 
\akl patatay 
\ame patatay</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="13da26cd-8520-4a47-88ab-c377c5d6a418" ownerguid="598e009b-59a9-4571-80b5-ce5162587668"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">warmi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">warmi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">warmi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f527da1e-d074-47e5-ab55-35d9106f617d" t="r" /> -</Morph> -<Msa> -<objsur guid="86b5e60e-c55d-4797-a0a2-e6891fff7ec3" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="13daf2bf-e6ac-498e-b499-83776e67026c" ownerguid="d6aa7ce3-2aba-4f1d-b7e7-2f960d2a7e4c"> -<Form> -<AUni ws="qvm-x-ach">goplu</AUni> -<AUni ws="qvm-x-acl">goplu; goplu; goplo</AUni> -<AUni ws="qvm-x-akh">qoplu</AUni> -<AUni ws="qvm-x-akl">qoplu; qoplu; qoplo</AUni> -<AUni ws="qvm-x-ame">quplu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="13df6ee2-4189-4faa-b54d-768588d03978" ownerguid="0296465a-25de-4af6-a122-376956b4b452"> -<Abbreviation> -<AUni ws="en">9.2.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for pronouns that refer back to the subject of the sentence. These pronouns should be added to the chart of personal pronouns.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>92E Reciprocal Reference</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Reflexive pronouns</AUni> -</Name> -<Questions> -<objsur guid="583552b7-f105-4ed3-b54e-9cc02ba3c812" t="o" /> -<objsur guid="7cc7f06a-fac8-45fb-968b-8ebdd83b97a0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="13e23a61-727e-4436-8edd-1df3b946c5b5" ownerguid="be2f2785-7219-4a35-b8d3-aa56b9b78514"> -<ExampleWords> -<AUni ws="en">gather, collect, form, mass, congregate, converge, close (v), close in on, concentrate, crowd in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to more than one thing moving toward each other?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="13e46dd8-1461-40f7-b310-5516268147fb" ownerguid="da22329f-8b3c-4a18-9a43-2fa23eac7790"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="74e4a695-5fda-4f4b-9082-65da8e5ac1be" t="o" /> -</MorphBundles> -</rt> -<rt class="CmSemanticDomain" guid="13e67cc9-055b-4f9b-9217-a16b18db0329" ownerguid="1a635032-6e13-4a56-aa03-6c6a015c502e"> -<Abbreviation> -<AUni ws="en">9.4.4.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.700" /> -<DateModified val="2022-9-23 16:55:8.700" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that you think something is true, but you are not completely sure about it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>31E Suppose, Think Possible</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Think so</AUni> -</Name> -<Questions> -<objsur guid="dcd3c940-a90b-47a2-bd25-38103aefae7e" t="o" /> -<objsur guid="a16654a8-c06d-4d03-b4e6-f7ee7fdc41e3" t="o" /> -<objsur guid="d0b79c8a-5035-453c-8953-5ae964008daa" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="13e84f86-7181-4263-bd2a-b90b3f527363" ownerguid="a7dda087-ed7a-41d6-a202-5fcb2cff8d37"> -<Form> -<AUni ws="qvm-x-ach">sawan</AUni> -<AUni ws="qvm-x-acl">sawan</AUni> -<AUni ws="qvm-x-akh">sawan</AUni> -<AUni ws="qvm-x-akl">sawan</AUni> -<AUni ws="qvm-x-ame">sawan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="13e8749b-7e3f-4446-b1e9-27e06d404381" ownerguid="c2563ea4-c463-45ec-962e-938f8f832519"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="13e9f84a-f74e-444a-ade8-0b2c6d780b8b" ownerguid="c2d52c62-384b-44f4-8ec0-99721eecfa83"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="13ebe38d-75ac-4b67-9f42-99178eb81cfc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ojala:</AUni> -<AUni ws="qvm-x-acl">ojala:</AUni> -<AUni ws="qvm-x-akh">ojala:</AUni> -<AUni ws="qvm-x-akl">ojala:</AUni> -<AUni ws="qvm-x-ame">ojala:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ojalá</AUni> -<AUni ws="qvm-x-acl">+ojalá</AUni> -<AUni ws="qvm-x-akh">+ojalá</AUni> -<AUni ws="qvm-x-akl">+ojalá</AUni> -<AUni ws="qvm-x-ame">+ojalá</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.626" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1a157319-9618-461a-b24b-8aa366424f9f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ojalá</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="029d0078-1fe3-4d86-b21f-7a0d03af872c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8c72a5a0-e7a5-41e6-b7ea-d8438e9bf211" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ojalá 
\entryTyp root 
\gENG hope 
\gSPN ojala 
\e +ojalá 
\c ONSHEV 
\mp NeverForeshortened 
\ach ojala: 
\akh ojala: 
\acl ojala: 
\akl ojala: 
\ame ojala: 
\mp +FinalC 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="13edbeff-8913-49ef-8f02-777f86fb512d" ownerguid="265f5645-94cb-485c-8bf9-0a3ab2354f63"> -<Abbreviation> -<AUni ws="en">9.6.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating an association between two things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Association</AUni> -</Name> -<Questions> -<objsur guid="959e71ea-55d1-48d0-bf54-4730d84e9abf" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="13f1a6ef-23a0-4093-98ae-2ce78918dfe6" ownerguid="38d9125b-88fe-4f7a-9e21-5da82d3ee093"> -<Form> -<AUni ws="qvm-x-ach">timpu</AUni> -<AUni ws="qvm-x-acl">timpu; timpo</AUni> -<AUni ws="qvm-x-akh">timpu</AUni> -<AUni ws="qvm-x-akl">timpu; timpo</AUni> -<AUni ws="qvm-x-ame">timpu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="13f1d37e-e331-4dcb-adf5-0638b9bbb12e" ownerguid="70a8cc54-0a57-441c-916f-0e5394f46c56"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">float</AUni> -<AUni ws="es">flotar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="83973d59-8e5b-4c43-86dc-f51a02046a83" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="13f37d0b-6e2d-45c6-bd12-4b9d287fc862" ownerguid="a6d2646f-f761-4717-9dca-6b4dd5747fdb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="13f62fa1-589c-4a46-9bbc-b0fd1001e21f" ownerguid="6bf7569e-dc79-49da-9ce1-e2e03303828a"> -<Abbreviation> -<AUni ws="en">4.7.7.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to imprisoning someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>37H Imprison; 37I Guard, Watch Over</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Imprison</AUni> -</Name> -<OcmCodes> -<Uni>697 Prisons and Jails</Uni> -</OcmCodes> -<Questions> -<objsur guid="b6c593ba-04e3-419f-8b05-63dc0c784947" t="o" /> -<objsur guid="cd72a756-12e8-44a9-be31-336d8a58b719" t="o" /> -<objsur guid="abda9f4d-8804-43b7-b108-7eb0962a82e8" t="o" /> -<objsur guid="d5777843-50c5-499a-b5ad-8e8deac08546" t="o" /> -<objsur guid="9d894161-2e32-42c9-bb27-bf9a5e1190ea" t="o" /> -<objsur guid="f2f77cd4-473e-411f-a559-96899cc27dd0" t="o" /> -<objsur guid="cef3c761-8456-4d28-bdd9-91de093116ed" t="o" /> -<objsur guid="2da7a042-153b-4510-8a88-669b7dbad9bc" t="o" /> -<objsur guid="67aaccc0-94cc-47aa-a7de-d56e554214ad" t="o" /> -<objsur guid="932ade0f-4937-4504-8aa8-7a142776563d" t="o" /> -<objsur guid="6c13b21e-a7e8-41b0-b28a-af486b908ec8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="13fb8d8b-7492-4e86-85a4-e68f68e757f9" ownerguid="0858ccbb-eb10-411c-b5b1-8c0a47b00f30"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="13feb252-8ae3-4111-aa7c-aba67b0de3ed"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">awardienti</AUni> -<AUni ws="qvm-x-acl">awardienti; awardienti; awardiente</AUni> -<AUni ws="qvm-x-akh">awardienti</AUni> -<AUni ws="qvm-x-akl">awardienti; awardienti; awardiente</AUni> -<AUni ws="qvm-x-ame">awardienti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+aguardiente</AUni> -<AUni ws="qvm-x-acl">+aguardiente</AUni> -<AUni ws="qvm-x-akh">+aguardiente</AUni> -<AUni ws="qvm-x-akl">+aguardiente</AUni> -<AUni ws="qvm-x-ame">+aguardiente</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.918" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e6aff480-c777-400d-9388-cb171ec09073" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+aguardiente</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="66de936b-3dc7-44b3-bed3-1e815f6e33a1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c8b9229d-2621-4152-b21b-c689a681f83a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +aguardiente 
\entryTyp root 
\gENG cane.liquor 
\gSPN agua.ardiente 
\e +aguardiente 
\c N0 
\mp +assimilated 
\ach awardienti 
\akh awardienti 
\acl awardienti / _# 
\acl awardienti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl awardiente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl awardienti / _# 
\akl awardienti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl awardiente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame awardienti 
\mp +FinalI</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="13ffe585-602b-4b2b-b1bc-092de56d04d9" ownerguid="dc1a2c6f-1b32-4631-8823-36dacc8cb7bb"> -<ExampleWords> -<AUni ws="en">sunlit, be (out) in the sun, lit by the sun, shine on, be in the sunlight, sunny (spot)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe where the sun is shining?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="14006bf5-5e76-480c-8d47-5721792c53b1" ownerguid="45d867c7-8496-4c92-bb41-b7db5db47717"> -<ExampleWords> -<AUni ws="en">put on weight, gain weight, fill out, get fat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to someone becoming fat?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="140140f4-ee4b-485f-839e-b742395164af" ownerguid="b6e9b9c9-632b-48e7-99f7-fa53ebcb3bc5"> -<ExampleWords> -<AUni ws="en">knit, crochet, needlepoint, embroidery</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to knitting?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1404ca25-6a38-4bae-a40f-68165c3fcc88" ownerguid="b1688009-474d-4e2e-a137-acc1e32a435f"> -<ExampleWords> -<AUni ws="en">thick, heavy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something like cloth or paper that is thick?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="140c01da-b0f5-4b4a-ab32-943e62d241e9" ownerguid="16f07bf8-db51-4519-8707-956dbdaafc31"> -<Form> -<AUni ws="qvm-x-ach">gavilán; gavilan</AUni> -<AUni ws="qvm-x-acl">gavilán; gavilan</AUni> -<AUni ws="qvm-x-akh">gavilán; gavilan</AUni> -<AUni ws="qvm-x-akl">gavilán; gavilan</AUni> -<AUni ws="qvm-x-ame">gavilán; gavilan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="140f9770-8631-49fe-9438-d11576c75ffc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">negociu; negocio</AUni> -<AUni ws="qvm-x-acl">negociu; negociu; negocio</AUni> -<AUni ws="qvm-x-akh">negociu; negocio</AUni> -<AUni ws="qvm-x-akl">negociu; negociu; negocio</AUni> -<AUni ws="qvm-x-ame">negociu; negocio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+negocio.1</AUni> -<AUni ws="qvm-x-acl">+negocio.1</AUni> -<AUni ws="qvm-x-akh">+negocio.1</AUni> -<AUni ws="qvm-x-akl">+negocio.1</AUni> -<AUni ws="qvm-x-ame">+negocio.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.547" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3f0a3096-1984-4f68-8e1c-98faa6383e06" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+negocio.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d5f424b1-914b-477c-bc0b-e2b22ddecc4a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8dc72d0c-9050-4e3e-8ae6-e1d1cfc1990c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +negocio.1 
\entryTyp root 
\gENG business 
\gSPN negocio 
\e +negocio.1 
\c N0 
\ach negociu / ~_# 
\ach negocio / _# 
\akh negociu / ~_# 
\akh negocio / _# 
\acl negociu / ~_# 
\acl negociu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl negocio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl negociu / ~_# 
\akl negociu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl negocio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame negociu / ~_# 
\ame negocio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1411a228-89be-4888-80f0-e18e4c02745f" ownerguid="9a9b1081-67e4-4177-82a1-a6df6dca0db9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">four</AUni> -<AUni ws="es">cuatro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bf895756-857e-45c3-9edd-a546e2f06447" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="1419c11a-c7fe-4fa3-aba5-939255903645" ownerguid="caab9405-4904-4a8a-b426-5fbf33393c84"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">beans</AUni> -<AUni ws="es">habas</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="992b1320-0a0e-4f3d-88b1-07000bf3d8a3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="141a3fc7-7fb7-4b3a-87c4-a333c70f8fc0" ownerguid="844f922b-6fb6-49aa-864b-b1c49edaa1ae"> -<ExampleWords> -<AUni ws="en">earring, necklace, brooch, hairclip, comb, belt, hat, glasses, sunglasses, handkerchief</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to types of jewelry?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="141a83f7-cf8d-4a39-85bc-26602b3ed140" ownerguid="3620d0a2-cf9f-4f8f-8efb-10a74b607d69"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="141cae5b-a554-469c-b035-33ba2cbecb80" ownerguid="b3d3dd7d-0cb1-4c25-bcae-cc402fcfa3ea"> -<ExampleWords> -<AUni ws="en">break a fast</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to stopping a fast?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="141fbda8-9ce8-4160-a9cf-82436828ed8a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pata</AUni> -<AUni ws="qvm-x-acl">pata</AUni> -<AUni ws="qvm-x-akh">pata</AUni> -<AUni ws="qvm-x-akl">pata</AUni> -<AUni ws="qvm-x-ame">pata</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pata.v</AUni> -<AUni ws="qvm-x-acl">*pata.v</AUni> -<AUni ws="qvm-x-akh">*pata.v</AUni> -<AUni ws="qvm-x-akl">*pata.v</AUni> -<AUni ws="qvm-x-ame">*pata.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.749" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f05d2689-d40a-4cab-800f-e6de6134e60c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pata.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ecb19ae1-cb8b-46fc-9283-42ab801879c3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="564af024-8dbb-41cf-bbc4-693c4d0ba81b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pata.v 
\entryTyp root 
\gENG wrap.wool 
\gSPN arrollar.lana 
\e *pata.v 
\c V2 
\ach pata 
\akh pata 
\acl pata 
\akl pata 
\ame pata</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="14246d05-1c39-4e4a-ab88-3aa7e5206529" ownerguid="97dbafdc-5a68-4874-a018-66e5ad0badc3"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="142638e0-4211-4e00-94fc-55d7844c5c65" ownerguid="e5cbae69-deda-4875-a0da-edec1b462d60"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">greaves</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8c7e8946-4159-442f-a1ed-fe561a389089" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="1426e403-cbb5-479c-9ca3-9433e51e7174" ownerguid="d9d05e45-0a86-4881-b763-fc823156bcd5"> -<Form> -<AUni ws="qvm-x-ach">sentencia</AUni> -<AUni ws="qvm-x-acl">sentencia</AUni> -<AUni ws="qvm-x-akh">sentencia</AUni> -<AUni ws="qvm-x-akl">sentencia</AUni> -<AUni ws="qvm-x-ame">sentencia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="1428d897-2755-4fc4-981c-bc4fb7cc2e06"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">raju</AUni> -<AUni ws="qvm-x-acl">raju; raju; rajo</AUni> -<AUni ws="qvm-x-akh">raju</AUni> -<AUni ws="qvm-x-akl">raju; raju; rajo</AUni> -<AUni ws="qvm-x-ame">rahu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rahu</AUni> -<AUni ws="qvm-x-acl">*rahu</AUni> -<AUni ws="qvm-x-akh">*rahu</AUni> -<AUni ws="qvm-x-akl">*rahu</AUni> -<AUni ws="qvm-x-ame">*rahu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.236" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3e2c61f0-c2d2-49c5-aae0-e9cb8ecb6338" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rahu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e2d9f1b3-97b2-4661-b80c-0b9dc2ef3ee5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="93600bcb-463e-4ea3-bdbe-cbcf9160c7fe" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rahu 
\entryTyp root 
\gENG snow 
\gSPN nieve 
\e *rahu 
\c N0 
\ach raju 
\akh raju 
\acl raju / _# 
\acl raju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl rajo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl raju / _# 
\akl raju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl rajo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame rahu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="14297c35-f1d2-4df0-83d8-105bc68ce83a" ownerguid="3b78aaca-f43b-47a2-9683-cd2b204e0987"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="d6aac5f6-5b79-45cb-ba68-43c0a238d407" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="142b80f3-fdf2-4197-803b-a5f1ff3fdaa9" ownerguid="cfe9b0c6-238f-495b-8a73-709a6c2e551e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="142d11f6-fa58-4c2f-8574-36993a48a409" ownerguid="a3d95c6a-4b0b-4af0-aca8-addd042becd2"> -<ExampleWords> -<AUni ws="en">play, have fun, goof off, frolic, amuse oneself/others, amusement, play games, caper, gambol, disport</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used of play?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="142ef102-294d-4ecd-be96-191b68809e89" ownerguid="64a83014-6a55-42b9-8829-948557a0aefb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2 R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">grasp</AUni> -<AUni ws="es">empuñar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bd0843d6-4b8e-4cf5-a312-de186d375648" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="142fe0b4-6773-4be6-8a96-fc740209baa2" ownerguid="f553b9a9-c403-443e-b144-45033101e937"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="40830da1-dfb3-4087-8d35-bc84c52446b2" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">fertilize</AUni> -<AUni ws="es">abonar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="624aa51e-46e9-4d8e-aa44-9a7b87d2ae93" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="1431abed-afa5-49b5-8037-39547186176b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuartel; cuartil</AUni> -<AUni ws="qvm-x-acl">cuartel; cuartil; cuartel</AUni> -<AUni ws="qvm-x-akh">cuartel; cuartil</AUni> -<AUni ws="qvm-x-akl">cuartel; cuartil; cuartel</AUni> -<AUni ws="qvm-x-ame">cuartel; cuartil</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuartel</AUni> -<AUni ws="qvm-x-acl">+cuartel</AUni> -<AUni ws="qvm-x-akh">+cuartel</AUni> -<AUni ws="qvm-x-akl">+cuartel</AUni> -<AUni ws="qvm-x-ame">+cuartel</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.234" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8f65beef-b40a-44a7-985e-efc267b8ee98" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuartel</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e10672e8-a003-4e34-8a87-0d86eca06262" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bdb505ec-e22b-4cee-9d30-3f70fe045bfb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuartel 
\entryTyp root 
\gENG barracks 
\gSPN cuartel 
\e +cuartel 
\c N0 
\mp +FinalC 
\ach cuartel / _# 
\ach cuartil / ~_# 
\akh cuartel / _# 
\akh cuartil / ~_# 
\acl cuartel / _# 
\acl cuartil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cuartel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cuartel / _# 
\akl cuartil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cuartel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame cuartel / _# 
\ame cuartil / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="143423d0-3eeb-4ea7-8b29-6c8fc13fcf32" ownerguid="f8515dad-926c-4195-bf26-4a15b9a9c24b"> -<Form> -<AUni ws="qvm-x-ach">guemtsi</AUni> -<AUni ws="qvm-x-acl">guemtsi; guemtse</AUni> -<AUni ws="qvm-x-akh">qemtsi</AUni> -<AUni ws="qvm-x-akl">qemtsi; qemtse</AUni> -<AUni ws="qvm-x-ame">qimtsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="143600a5-af6b-4f5a-8ab0-5fb91903ed11" ownerguid="b9c1d2d0-47b4-4691-916b-de4bf47faed8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">monument</AUni> -<AUni ws="es">monumento</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4a4f0b29-ba24-4db5-a1a0-b460a025ef37" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="14362825-c0d6-4ffc-b901-9ae766a7e68a" ownerguid="1f507886-7b6c-47eb-8754-90c4f94828ea"> -<Form> -<AUni ws="qvm-x-ach">litru; litro</AUni> -<AUni ws="qvm-x-acl">litru; litru; litro</AUni> -<AUni ws="qvm-x-akh">litru; litro</AUni> -<AUni ws="qvm-x-akl">litru; litru; litro</AUni> -<AUni ws="qvm-x-ame">litru; litro</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="14377138-717d-4731-9cc2-dd2c38aaacd2" ownerguid="1133ad78-9ce9-46aa-b181-bb6f7a84a07b"> -<ExampleWords> -<AUni ws="en">near, nearby, close, close to, close by, not far, practically on top of, a short distance, locally, in the vicinity, nigh, around, a stone's throw, in the neighborhood</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is near something else?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1437cb54-3dab-4b6b-b98b-307049e28b4c" ownerguid="557c912e-5223-4c38-a818-f3638bb3b1ef"> -<Form> -<AUni ws="qvm-x-ach">peligru; peligro</AUni> -<AUni ws="qvm-x-acl">peligru; peligru; peligro</AUni> -<AUni ws="qvm-x-akh">peligru; peligro</AUni> -<AUni ws="qvm-x-akl">peligru; peligru; peligro</AUni> -<AUni ws="qvm-x-ame">peligru; peligro</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="1438c623-c4ce-4559-b71b-cfb86a71e6d7" ownerguid="ff7e3abd-6810-4128-83c9-701b4925c2fe"> -<Abbreviation> -<AUni ws="en">5.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.335" /> -<DateModified val="2022-9-23 16:55:8.335" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to lighting a fire.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Light a fire</AUni> -</Name> -<Questions> -<objsur guid="47c4e12a-3907-45bb-9fb3-706d21cd1c79" t="o" /> -<objsur guid="2f36236a-7e24-4216-aaa6-b5633b87c7c9" t="o" /> -<objsur guid="cf8b4f9b-80f2-4e89-904b-ac2695436625" t="o" /> -<objsur guid="55645ded-4ef8-4c84-9fb1-b7f1f113bebf" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="143a67d1-03bd-4969-9d51-b372a37c9ec2" ownerguid="2e95bd1e-82f0-461d-8ca6-b5f1ce1fb180"> -<ExampleWords> -<AUni ws="en">engaged, engagement, betrothed, betrothal, espoused, promised</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the state of being engaged to be married?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="143aced3-f3a9-42f9-b618-3eb034c93fed"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">puntu; punto</AUni> -<AUni ws="qvm-x-acl">puntu; puntu; punto</AUni> -<AUni ws="qvm-x-akh">puntu; punto</AUni> -<AUni ws="qvm-x-akl">puntu; puntu; punto</AUni> -<AUni ws="qvm-x-ame">puntu; punto</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+punto</AUni> -<AUni ws="qvm-x-acl">+punto</AUni> -<AUni ws="qvm-x-akh">+punto</AUni> -<AUni ws="qvm-x-akl">+punto</AUni> -<AUni ws="qvm-x-ame">+punto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.9" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dd83a5d0-3291-4e88-8c90-3e8517ec91ed" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+punto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="71599d85-cb1e-4444-90e9-b873583f04cd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1185f098-7098-4d44-ac8d-0854255ca0fc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +punto 
\entryTyp root 
\gENG period 
\gSPN punto 
\e +punto 
\c N0 
\ach puntu / ~_# 
\ach punto / _# 
\akh puntu / ~_# 
\akh punto / _# 
\acl puntu / ~_# 
\acl puntu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl punto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl puntu / ~_# 
\akl puntu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl punto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame puntu / ~_# 
\ame punto / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="143b6c58-9179-41a0-8dbd-c040f3feb62d" ownerguid="8503660c-03af-49ee-86b6-525aab4da828"> -<ExampleWords> -<AUni ws="en">can hear, can make out, within someone's hearing, within earshot, catch, get</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to being able to hear something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="143c3146-3f07-44ab-8773-6038328adbb5" ownerguid="8a4f1603-4b63-4a10-8fda-fa6368a4d676"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cure</AUni> -<AUni ws="es">remediar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aa37c442-81f0-4ad3-bbf0-d0f88089492b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="143d2f31-4fcc-4292-8a87-59663428f6fb" ownerguid="6415b209-5f89-4a7d-b0f1-0e99d4e35422"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rip</AUni> -<AUni ws="es">partir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c3645b25-53f3-4750-937f-87c376d8dae1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="14436a76-f030-4651-8f17-6f1acd27420d" ownerguid="a370aa5c-290b-4b03-a827-7a5f707fc846"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="14463fd5-65ef-4557-89d0-f80693126140" ownerguid="aed6c1ec-abbe-47e3-a6cc-a99ecff3b825"> -<ExampleWords> -<AUni ws="en">shimmering, glistening</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is shiny like water?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="1447278f-efff-4807-b9ea-c487dea1ba5e" ownerguid="32125c5f-d69a-442f-ba66-6277ec0a3b15"> -<Abbreviation> -<AUni ws="en">5.2.3.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.317" /> -<DateModified val="2022-9-23 16:55:8.317" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to food from seeds.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Food from seeds</AUni> -</Name> -<Questions> -<objsur guid="16a3f930-f98e-4ae9-b729-42b55def6b6b" t="o" /> -<objsur guid="6b5fbf3d-23b8-47ca-be22-f140925747ac" t="o" /> -<objsur guid="640fb35a-60c2-4843-834a-699959c45493" t="o" /> -<objsur guid="9c2dc070-8880-4d3d-82c6-7c1b54db3376" t="o" /> -<objsur guid="9b87e625-231f-4cef-b438-46574465e687" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="144768ff-920c-4831-8b2d-faa5427ceb7e" ownerguid="663e6f89-77f0-473c-997e-e54f26d8491b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">small.drum</AUni> -<AUni ws="es">tambor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="345be7b1-cfd5-456f-b480-6f799f49f8b1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="14486274-794a-42f0-9faa-8c7b6b0d4b18" ownerguid="7bf05f4e-909f-40ca-b742-9be21eba9fbb"> -<ExampleWords> -<AUni ws="en">ought to, should</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) obligation, weak: it is recommended that the agent complete the action of the main verb: 'Harry ought to get a haircut before meeting Sue's mother'.</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="144a2fc6-ce5b-4c03-bd39-e1c7ea72e9b4" ownerguid="11df3c07-d2cc-4a61-b12b-d83002e90e2d"> -<Form> -<AUni ws="qvm-x-ach">ëji; ëji</AUni> -<AUni ws="qvm-x-acl">ëji; ëji; ëje</AUni> -<AUni ws="qvm-x-akh">ëji; ëji</AUni> -<AUni ws="qvm-x-akl">ëji; ëji; ëje</AUni> -<AUni ws="qvm-x-ame">ëji; ëji</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="14500748-3d9a-4d15-9e2f-4b6a7e4c3eba" ownerguid="d34e0a48-653e-4a2f-b230-fe9e61129a6c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">knot</AUni> -<AUni ws="es">nudo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dca151da-8bff-4207-83ce-7df5c7ab65a2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="1458bbe7-4be6-401b-ae82-df116068bdb9" ownerguid="20baa5e7-4f02-4782-a292-c6281d7b5f3a"> -<ExampleWords> -<AUni ws="en">stick something into something, ram, drive, plunge, thrust</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to pushing something into an opening or into something soft?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="145d6801-3b01-4e22-b6a9-9077a06ba109" ownerguid="2dac3ce5-e364-4f46-a877-c29b09e16999"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">old.lady</AUni> -<AUni ws="es">vieja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c0f5223e-386e-40b7-b49c-a9c8f4de9b2a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="1461c106-d9e0-417d-9487-a57e6d0cced0" ownerguid="a6797fd1-e368-422b-9710-96e0af39552d"> -<Abbreviation> -<AUni ws="en">4.3.1.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.223" /> -<DateModified val="2022-9-23 16:55:8.223" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to behaving below a standard.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Below standard</AUni> -</Name> -<Questions> -<objsur guid="4c12ac80-82d8-4361-ad23-2fd4a8006f4e" t="o" /> -<objsur guid="7c341ba6-c7d8-448f-bdae-da6e96533bc7" t="o" /> -<objsur guid="738bcdf7-be51-4124-a9e5-26e947748b42" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="1465367f-459c-43da-b6cd-5b8d27b83a63" ownerguid="64a83014-6a55-42b9-8829-948557a0aefb"> -<Form> -<AUni ws="qvm-x-ach">apta</AUni> -<AUni ws="qvm-x-acl">apta</AUni> -<AUni ws="qvm-x-akh">apta</AUni> -<AUni ws="qvm-x-akl">apta</AUni> -<AUni ws="qvm-x-ame">apta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="1468d032-7543-46d7-8d90-71e27c40bffb" ownerguid="8f7259e1-c9fd-4f49-a9ea-1f4c039e9d06"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="146b015e-27f5-48bd-a4e4-91bdd0bca9b0" ownerguid="ea02bf34-a997-4b37-bb22-dd88f8e4e6b1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">classroom</AUni> -<AUni ws="es">salón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="717a94b7-0182-4acd-9611-342c23e4dab8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="146d739e-dae6-4f68-8039-50bc89a5ae6b" ownerguid="cb55f90f-9917-42c8-9c81-5a250c8a08b7" /> -<rt class="LexEntry" guid="146daca8-869f-4b32-bbc4-b26bccd0da7e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">dere:cha</AUni> -<AUni ws="qvm-x-acl">dere:cha</AUni> -<AUni ws="qvm-x-akh">dere:cha</AUni> -<AUni ws="qvm-x-akl">dere:cha</AUni> -<AUni ws="qvm-x-ame">dere:cha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+derecha</AUni> -<AUni ws="qvm-x-acl">+derecha</AUni> -<AUni ws="qvm-x-akh">+derecha</AUni> -<AUni ws="qvm-x-akl">+derecha</AUni> -<AUni ws="qvm-x-ame">+derecha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.376" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="882b377a-7fc3-4dcb-a7a8-05b9a780b601" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+derecha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2217b486-3823-43c4-844a-ff6fff19d6b4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8926851e-7f6a-41d2-86b8-1f59df5fb750" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +derecha 
\entryTyp root 
\gENG right 
\gSPN derecho 
\e +derecha 
\c N0 
\ach dere:cha 
\akh dere:cha 
\acl dere:cha 
\akl dere:cha 
\ame dere:cha</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="146ddd49-bf8b-463e-b5a9-9f11381b32ea" ownerguid="db85926f-7111-45b8-ae79-9a77456f8582"> -<Form> -<AUni ws="qvm-x-ach">tapra</AUni> -<AUni ws="qvm-x-acl">tapra</AUni> -<AUni ws="qvm-x-akh">tapra</AUni> -<AUni ws="qvm-x-akl">tapra</AUni> -<AUni ws="qvm-x-ame">tapra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="146f21d3-3847-4e10-abb7-9ac76543c72e" ownerguid="709d43dd-ce94-4df1-91b1-edb0b12fdaea"> -<ExampleWords> -<AUni ws="en">polish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What tools and materials are used to rub something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="14724f5b-48b9-4a8c-8c4d-69b36b5c05c0" ownerguid="9ea6cb48-9a4d-4259-9f33-b29f2309c1f6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">governor</AUni> -<AUni ws="es">gobernador</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7da408c5-a085-4b6c-8f57-c9d4720a7f18" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="14784775-37dd-4682-bdcc-b8944da947a5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jina</AUni> -<AUni ws="qvm-x-acl">jina</AUni> -<AUni ws="qvm-x-akh">jina</AUni> -<AUni ws="qvm-x-akl">jina</AUni> -<AUni ws="qvm-x-ame">hina</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.576" /> -<DateModified val="2022-10-16 15:27:47.114" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="47188d1c-c250-4a44-8281-3a43e696ff79" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">SIM2.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5a3e9dbc-32e4-498e-9fe3-635d62980299" t="o" /> -<objsur guid="995c92aa-8065-4e46-add3-98c79aa138f1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="63c00edc-b46b-4d62-8198-9ad122e06e73" t="o" /> -<objsur guid="b3b6f703-3493-421a-8d06-605026346b69" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx SIM2.1 
\entryTyp suffix 
\gENG SIM2 
\gSPN SIM2 
\e SIM2.1 
\c N0/N0 
\o 000 
\mp NeverChanged 
\ach jina 
\akh jina 
\acl jina 
\akl jina 
\ame hina 
\mcc SIM2.1 / ~_ (3P.V) ADV1 
\mcc SIM2.1 / ~_ ADV1</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="147b0673-64a8-47a7-bb2d-b7df87712fdf" ownerguid="536a2d3e-2303-43bc-bf53-379131eb5730"> -<ExampleWords> -<AUni ws="en">spectrum, rainbow, prism, spectral</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to all the colors arranged in the spectrum of the rainbow?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="147c2e58-9ae8-460f-8cab-bf04a668945d" ownerguid="61f52196-a8b2-496d-96ea-8c15dc7d377a"> -<Abbreviation> -<AUni ws="en">4.9.4.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.296" /> -<DateModified val="2022-9-23 16:55:8.296" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to speaking for God, including foretelling the future through divine knowledge.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33A" Prophesy; 33X Foretell, Tell Fortunes</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Prophecy</AUni> -</Name> -<Questions> -<objsur guid="129b62b9-b123-4f4a-b7f1-eeae9b05c40d" t="o" /> -<objsur guid="299ccbf3-add0-446c-bd94-2eb0b4259b4c" t="o" /> -<objsur guid="6e86790b-e452-417b-ba06-f4334b7da17a" t="o" /> -<objsur guid="dc780376-5df0-4bcd-a629-35261d3dd23c" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="c956a98a-4c85-4c85-868d-f27f44bd6422" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="148528d0-044b-420d-a3a7-c648885587d2" ownerguid="79ca34ea-68a7-4fe9-b5ac-4f3d6a1ab99d"> -<ExampleWords> -<AUni ws="en">infancy, babyhood</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the time period when a person is a baby?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="14878b7b-cff0-40e5-8006-271c2b941359" ownerguid="86f90eff-158b-4f6d-82e9-fab136dfd141"> -<ExampleWords> -<AUni ws="en">form, organize</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to starting an organization?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1488107d-c1b4-4aa1-a407-7ea1497d22e0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">trosado:ra</AUni> -<AUni ws="qvm-x-acl">trosado:ra</AUni> -<AUni ws="qvm-x-akh">trosado:ra</AUni> -<AUni ws="qvm-x-akl">trosado:ra</AUni> -<AUni ws="qvm-x-ame">trosado:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+trozadora</AUni> -<AUni ws="qvm-x-acl">+trozadora</AUni> -<AUni ws="qvm-x-akh">+trozadora</AUni> -<AUni ws="qvm-x-akl">+trozadora</AUni> -<AUni ws="qvm-x-ame">+trozadora</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.160" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a2f47e4d-1ba8-4ce2-9066-faeea4abc27d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+trozadora</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7374a61a-2f3e-45e6-bd10-9c2f5e6866cf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d3dc46a5-aba8-4b7c-a5e9-856debd9c38f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +trozadora 
\entryTyp root 
\gENG 
\gSPN 
\e +trozadora 
\c N0 
\ach trosado:ra 
\akh trosado:ra 
\acl trosado:ra 
\akl trosado:ra 
\ame trosado:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="14891149-e35b-4634-a181-ffe0967abaf9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">metru; metro</AUni> -<AUni ws="qvm-x-acl">metru; metru; metro</AUni> -<AUni ws="qvm-x-akh">metru; metro</AUni> -<AUni ws="qvm-x-akl">metru; metru; metro</AUni> -<AUni ws="qvm-x-ame">metru; metro</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+metro.1</AUni> -<AUni ws="qvm-x-acl">+metro.1</AUni> -<AUni ws="qvm-x-akh">+metro.1</AUni> -<AUni ws="qvm-x-akl">+metro.1</AUni> -<AUni ws="qvm-x-ame">+metro.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.416" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d8809567-4656-4869-8835-38009b3e6a34" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+metro.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8e862ee6-fd51-44b9-9e98-55fbfdaccec5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b4048275-25be-4621-8612-323e496d690a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +metro.1 
\entryTyp root 
\gENG meter 
\gSPN metro 
\e +metro.1 
\c N0 
\ach metru / ~_# 
\ach metro / _# 
\akh metru / ~_# 
\akh metro / _# 
\acl metru / ~_# 
\acl metru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl metro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl metru / ~_# 
\akl metru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl metro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame metru / ~_# 
\ame metro / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="148bea06-3fc0-4602-80c5-bceb64930013" ownerguid="af6a8ef0-b876-4dde-8593-829021ca3c82"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rafter</AUni> -<AUni ws="es">cabrio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3783dd9a-de59-4481-9dcd-47a3af8d5829" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="148e48e6-4231-4d73-8085-e068b97a341a" ownerguid="cbaf7804-5613-45ab-b7e8-f975ac2ec5b9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="148ec25f-def0-4bd9-97d3-3df8e8469642" ownerguid="3f39d04c-4ed1-427c-b381-f75416b3f8a8"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">DEU 28.5 Canastaykikuna tsukuy tsukuy kananpaqpis y artësaykikuna pütsiy pütsiy kananpaqpis bendicionninta churamunqami.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="148f5bfa-01e1-4ea0-b5e9-4581a6d85a7f" ownerguid="bc23a3e4-5815-4938-8a97-eedf3ec06cfd"> -<Form> -<AUni ws="qvm-x-ach">pömu</AUni> -<AUni ws="qvm-x-acl">pömu; pömu; pömo</AUni> -<AUni ws="qvm-x-akh">pömu</AUni> -<AUni ws="qvm-x-akl">pömu; pömu; pömo</AUni> -<AUni ws="qvm-x-ame">pömu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="14902456-1bff-433f-aaac-93b3ba1b7c84" ownerguid="f9a33614-2be4-42e9-a6a8-27024a7a2ac0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="f2da9513-3f4d-41f8-8474-4f3730af2cde" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="0abdb312-1d88-4717-8b5c-c6f6dfc0c10b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="14911c94-f92b-49b4-b37a-d6f1d3adfbdd" ownerguid="907f4c95-825f-4183-875f-02f6a18b8961"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sister.in.law</AUni> -<AUni ws="es">cuñada</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="010e409f-e36d-4eb7-8e09-60e4d68ba46d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="14925a1b-7c2e-445b-8adc-fb592f7450b2" ownerguid="e311cc3a-a387-449e-a05a-07ed9678411d"> -<ExampleWords> -<AUni ws="en">(priest's) robes, habit, cloth, vestments, frock, cassock, cowl, hood, clerical collar, skullcap, surplice, miter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to clothes worn by priests and other religious people?</AUni> -</Question> -</rt> -<rt class="PhCode" guid="14937ad5-e47a-46cd-8d04-caf8d726297f" ownerguid="5adde606-e77c-496c-9fb2-111a6b01e9fd"> -<Representation> -<AUni ws="qvm-x-ach">ll</AUni> -<AUni ws="qvm-x-acl">ll</AUni> -<AUni ws="qvm-x-akh">ll</AUni> -<AUni ws="qvm-x-akl">ll</AUni> -<AUni ws="qvm-x-ame">ll</AUni> -</Representation> -</rt> -<rt class="CmSemanticDomain" guid="14954a0f-5c8a-4680-90b0-53398bd3a2a7" ownerguid="07476166-c5e5-4701-97d3-d97de8b5be6f"> -<Abbreviation> -<AUni ws="en">3.2.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.103" /> -<DateModified val="2022-9-23 16:55:8.103" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that describe whether or not something is known.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>28C Well Known, Clearly Shown, Revealed; 28D Able To Be Known; 28E Not Able To Be Known, Secret</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Known, unknown</AUni> -</Name> -<Questions> -<objsur guid="8db6a8ad-e339-4910-9393-26a25c283e0f" t="o" /> -<objsur guid="06d6c86b-7104-4e53-b09b-c39cc22817f7" t="o" /> -<objsur guid="a6645b53-34f8-4660-974f-5c087f714a8b" t="o" /> -<objsur guid="7d5c4dff-952d-4e2f-b751-c266e43da80f" t="o" /> -<objsur guid="dd498a10-7360-4af7-b77f-c7a73f281e16" t="o" /> -<objsur guid="1f8b71fa-4d61-4d5d-b85b-40c468854ba4" t="o" /> -<objsur guid="a3a031f2-6b73-4704-9ede-7e00a5755b91" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="149c967c-0a25-479f-bcaf-80d537bdab01" ownerguid="3e501544-b8a2-428d-8d24-19efdcb9a2b8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">it.is.remember</AUni> -<AUni ws="es">se.acuerda.que</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3bbffc4d-2c8a-47cb-95c2-906cf6789761" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="149f3f7a-faef-4067-8f94-d9ad98a1ceb1" ownerguid="0d608afe-f31e-4e88-a67b-bd87135caa6a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="14a07949-5fcd-4ef4-81a4-e387caf7c98a" ownerguid="1ea9aeb3-3556-47b0-b1c0-adcb9e3589d2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="14a21d83-1aef-4f79-8088-7595e01cea86"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wa:ca</AUni> -<AUni ws="qvm-x-acl">wa:ca</AUni> -<AUni ws="qvm-x-akh">wa:ka</AUni> -<AUni ws="qvm-x-akl">wa:ka</AUni> -<AUni ws="qvm-x-ame">wa:ka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vaca</AUni> -<AUni ws="qvm-x-acl">+vaca</AUni> -<AUni ws="qvm-x-akh">+vaca</AUni> -<AUni ws="qvm-x-akl">+vaca</AUni> -<AUni ws="qvm-x-ame">+vaca</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.332" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ea877276-bcf1-418b-94c7-7596add1ae8a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vaca</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1248631d-a4b0-45b3-879d-4b105c00b1e2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="39585f5d-fe3c-475e-b22d-5a6ca07afe5d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vaca 
\entryTyp root 
\gENG cow 
\gSPN vaca 
\e +vaca 
\c N0 
\mp KQWchange 
\ach wa:ca 
\akh wa:ka 
\acl wa:ca 
\akl wa:ka 
\ame wa:ka 
\mp +assimilated</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="14a2c5ac-6607-4d24-a049-d5e4fa49a395" ownerguid="33c8a279-f1c4-41ea-b4ad-75b85e8c2223"> -<Form> -<AUni ws="qvm-x-ach">putsca</AUni> -<AUni ws="qvm-x-acl">putsca</AUni> -<AUni ws="qvm-x-akh">putska</AUni> -<AUni ws="qvm-x-akl">putska</AUni> -<AUni ws="qvm-x-ame">putska</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="14a32765-81b0-411e-89fa-91e092a70818" ownerguid="ec1bcace-fc10-45df-8e1f-29bce1ef786a"> -<Abbreviation> -<AUni ws="en">3.5.1.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.162" /> -<DateModified val="2022-9-23 16:55:8.162" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to calling someone--to say something loud because you want someone who is far away to listen to you.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33C' Call</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Call</AUni> -</Name> -<Questions> -<objsur guid="05fa05a2-d3fe-41a5-9e0c-9ce7f173f93b" t="o" /> -<objsur guid="80645391-c90f-441d-9385-783cc6f0ab78" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="14a372d7-ed7d-486e-b5ee-fc2daa923df4" ownerguid="48f6a6e5-aff4-47b5-8845-d7ebd0d64d3f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="14a3d1c7-5f88-416c-bddc-c18780a32918" ownerguid="3fdba5e5-eb24-4b2f-a6fc-d1ed7397c39c"> -<ExampleWords> -<AUni ws="en">expel, kick out, suspend</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to making someone leave school because of bad behavior?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="14a615c0-a476-4a72-a781-51d643bf5a66" ownerguid="8e39aa41-58a0-4ca0-8700-cc25921d7415"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="14a6614d-e9a4-42ea-912a-a1e83319927f" ownerguid="e6da67fe-1112-4161-a37e-7004e5632e5e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mu; mo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mu; mo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="45846476-db8b-4639-bef8-780e6651a907" t="r" /> -</Morph> -<Msa> -<objsur guid="84097b64-d9df-441f-a9d3-d11d4b9d9ea0" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="14a7ae1e-68e1-42dd-8dac-28006b0c7165"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tishya; tishya:</AUni> -<AUni ws="qvm-x-acl">tishya; tishya:</AUni> -<AUni ws="qvm-x-akh">tishya; tishya:</AUni> -<AUni ws="qvm-x-akl">tishya; tishya:</AUni> -<AUni ws="qvm-x-ame">tishya; tishya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tishya:</AUni> -<AUni ws="qvm-x-acl">*tishya:</AUni> -<AUni ws="qvm-x-akh">*tishya:</AUni> -<AUni ws="qvm-x-akl">*tishya:</AUni> -<AUni ws="qvm-x-ame">*tishya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.926" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="12e81535-d775-4908-bbe7-a83cfd6d8ba5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tishya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1e23276d-ce20-4dee-9c93-63eb34131ad1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="67de2383-8130-4cb8-93cd-8384ef7a77b7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tishya: 
\entryTyp root 
\gENG 
\gSPN 
\e *tishya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach tishya foreshortened 
\ach tishya: 
\akh tishya foreshortened 
\akh tishya: 
\acl tishya foreshortened 
\acl tishya: 
\akl tishya foreshortened 
\akl tishya: 
\ame tishya foreshortened 
\ame tishya: 
\i EXO 8.6 Tsauraga lapan yacuman aywaycur jananpa Aarón togriptinmi intëru Egiptuman tishyayparag säpucuna yargamorgan. 
\mcc *tishya: / _ ADV2 / _ 3 [yet]</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="14acf460-3535-4e53-9de2-06fe69601a9c" ownerguid="fccc2973-d590-4fc7-ba38-b9870732c9bf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">son</AUni> -<AUni ws="es">hijo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d0922dbd-37de-4144-8335-0e3531d8c93e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="14ad95ad-50fc-450f-b44d-4273df0b1e8b" ownerguid="21167445-f1b1-49b4-b147-bc792616c432"> -<Abbreviation> -<AUni ws="en">8.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a period of time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>67 Units of Time; 67H Indefinite Units of Time: Age, Lifetime, Interval, Period; 67I Definite Units of Time: Year, Month, Week, Day, Hour</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Period of time</AUni> -</Name> -<Questions> -<objsur guid="4d52f21f-9784-429f-aa3b-5daa75c16d62" t="o" /> -<objsur guid="fff36258-cd0d-4f61-9249-a98ecf762bca" t="o" /> -<objsur guid="e9b4472b-d5fe-4579-8803-967c65da223b" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="f8c6a6a9-49f0-408a-9237-a66e852da7d3" t="o" /> -<objsur guid="afe7cc92-e0ad-40d9-be56-aa12d2693a3f" t="o" /> -<objsur guid="b21ace5f-9307-4bdc-b103-9fdf14a5655e" t="o" /> -<objsur guid="4e23b037-0547-4650-89c3-2b259b637fb6" t="o" /> -<objsur guid="0622d3f7-1ab2-482b-9f9c-9c101cd35182" t="o" /> -<objsur guid="fcf16495-5226-4192-afdb-e748192efc3a" t="o" /> -<objsur guid="1689ac96-1159-4575-bf5f-d16345f9496c" t="o" /> -<objsur guid="659ccabf-f978-4852-a1a6-c225f1d76b97" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="14b4a829-51d9-4f8d-aa18-79b6234d31fa" ownerguid="96e6430e-2e16-401f-a96c-15d3ab24f6b7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="14b6e913-9d53-4abc-8483-bc58df660dbf" ownerguid="82e4394a-2f58-4356-8d9c-1ad9dbe95293"> -<ExampleWords> -<AUni ws="en">freezing, bitter, biting, cutting, raw</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe a wind that is cold?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="14b7f7f0-b746-48f1-8393-978c433f46ee" ownerguid="89ba59d4-b314-4070-83bb-f9f868bcd363"> -<ExampleWords> -<AUni ws="en">pencil, charcoal, eraser, paper</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What tools and materials are used to draw a picture?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="14b8a283-ab48-4991-9c2d-c247704cb9b0" ownerguid="2eaf4079-1eac-43b3-bd42-4225eb59613b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="14b9d6bc-7b49-49ec-b694-87f5c05a08ea"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cani</AUni> -<AUni ws="qvm-x-acl">cani; cane</AUni> -<AUni ws="qvm-x-akh">kani</AUni> -<AUni ws="qvm-x-akl">kani; kane</AUni> -<AUni ws="qvm-x-ame">kani</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kañi</AUni> -<AUni ws="qvm-x-acl">*kañi</AUni> -<AUni ws="qvm-x-akh">*kañi</AUni> -<AUni ws="qvm-x-akl">*kañi</AUni> -<AUni ws="qvm-x-ame">*kañi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.933" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4b9a43a8-dea6-4b98-a283-e5b9722f45a3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kañi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b066ab6c-3bde-42c0-94c4-15af18e5285e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bf768c56-37f7-416a-8be1-538e7fd1e76a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kañi 
\entryTyp root 
\gENG bite 
\gSPN morder 
\e *kañi 
\c V2 
\mp +FinalI 
\ach cani 
\akh kani 
\acl cani +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl cane +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kani +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kane +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kani</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="14be4ae5-cbf8-4462-8c01-b5a9b761ada7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ayudanti; ayudante</AUni> -<AUni ws="qvm-x-acl">ayudanti; ayudanti; ayudante</AUni> -<AUni ws="qvm-x-akh">ayudanti; ayudante</AUni> -<AUni ws="qvm-x-akl">ayudanti; ayudanti; ayudante</AUni> -<AUni ws="qvm-x-ame">ayudanti; ayudante</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ayudante</AUni> -<AUni ws="qvm-x-acl">+ayudante</AUni> -<AUni ws="qvm-x-akh">+ayudante</AUni> -<AUni ws="qvm-x-akl">+ayudante</AUni> -<AUni ws="qvm-x-ame">+ayudante</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.910" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aa9c222c-dc39-4451-8572-049e39b95540" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ayudante</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e8932e52-ada4-4dd5-947e-091637d10051" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="df9b5414-15bc-4c53-b583-b87c8e658f3f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ayudante 
\entryTyp root 
\gENG helper 
\gSPN ayudante 
\e +ayudante 
\c N0 
\mp +FinalI 
\ach ayudanti / ~_# 
\ach ayudante / _# 
\akh ayudanti / ~_# 
\akh ayudante / _# 
\acl ayudanti / ~_# 
\acl ayudanti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ayudante +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ayudanti / ~_# 
\akl ayudanti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ayudante +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ayudanti / ~_# 
\ame ayudante / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="14c3b818-ac64-4f6b-b84e-0957819f0740" ownerguid="4bbd0f6b-c6e9-43dc-94b0-b547b9beaa36"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="14c50831-e512-4ac7-b282-e6dbcf9f56ad" ownerguid="8206415e-a915-4842-a46a-fbea64f1a0e3"> -<ExampleWords> -<AUni ws="en">knick-knack, flimflam</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What ideophones are in your language?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="14c9782c-a7a5-4529-9841-36a35b057c83" ownerguid="62efa729-0920-4933-93f3-b6a48519a5c7"> -<ExampleWords> -<AUni ws="en">restitution, compensation, damages, reparations, indemnity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something a person gives to atone for a sin?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="14cb58a2-138f-442a-b5a3-fa245ede55ee" ownerguid="5abd1270-261a-4980-93e5-e10eacea99ad"> -<ExampleWords> -<AUni ws="en">jump up/down/off of/onto/out of the way, bound, spring, pounce, dive, jump overboard, somersault</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to jumping from one place to another place?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="14ce9f07-4132-42c5-b2ea-b16b96688cc6" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<ExampleWords> -<AUni ws="en">size, dimensions, magnitude</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to how big something is?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="14d104a3-c17f-4970-a9c0-28a9d862929d" ownerguid="0dfca7ad-cc58-4453-832a-50202cfc9f20"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="14da8c3c-5e96-49b0-9459-c7dfa54e82e9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ruina</AUni> -<AUni ws="qvm-x-acl">ruina</AUni> -<AUni ws="qvm-x-akh">ruina</AUni> -<AUni ws="qvm-x-akl">ruina</AUni> -<AUni ws="qvm-x-ame">ruina</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ruina</AUni> -<AUni ws="qvm-x-acl">+ruina</AUni> -<AUni ws="qvm-x-akh">+ruina</AUni> -<AUni ws="qvm-x-akl">+ruina</AUni> -<AUni ws="qvm-x-ame">+ruina</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.388" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="57346612-c110-475b-87af-d868f3ae1046" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ruina</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="26fa0230-5ec3-41a2-a846-b4a8e5b828fc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f3fe6e94-7a66-482f-b802-975b0a29fea4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ruina 
\entryTyp root 
\gENG ruin 
\gSPN ruina 
\e +ruina 
\c N0 
\ach ruina 
\akh ruina 
\acl ruina 
\akl ruina 
\ame ruina</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="14dc9eeb-191d-4bb1-8782-f74926482b23"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ictsu</AUni> -<AUni ws="qvm-x-acl">ictsu; ictso</AUni> -<AUni ws="qvm-x-akh">iktsu</AUni> -<AUni ws="qvm-x-akl">iktsu; iktso</AUni> -<AUni ws="qvm-x-ame">iktsu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ikchu</AUni> -<AUni ws="qvm-x-acl">*ikchu</AUni> -<AUni ws="qvm-x-akh">*ikchu</AUni> -<AUni ws="qvm-x-akl">*ikchu</AUni> -<AUni ws="qvm-x-ame">*ikchu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.792" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="50c7cedb-e48d-4e40-b667-882924600f9d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ikchu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9e409988-4e1d-45fa-8176-595e955af9d4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4ebb15be-343a-4d97-804b-6f450a74ca64" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ikchu 
\entryTyp root 
\gENG sob 
\gSPN sollozar 
\e *ikchu 
\c V1 
\ach ictsu 
\akh iktsu 
\acl ictsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ictso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl iktsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl iktso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame iktsu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="14dd6589-3725-4fa6-863c-3cd46e6ed272" ownerguid="99231692-d761-4fa7-bd41-1748534dfaf0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="14e05166-8977-459f-8efc-7f747f00b408" ownerguid="dbf1d8b9-e72f-47ae-a8f8-668abee90062"> -<Form> -<AUni ws="qvm-x-ach">pampa</AUni> -<AUni ws="qvm-x-acl">pampa</AUni> -<AUni ws="qvm-x-akh">pampa</AUni> -<AUni ws="qvm-x-akl">pampa</AUni> -<AUni ws="qvm-x-ame">pampa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="14e5a753-b44a-4eda-bef6-da47add5e658"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shasha</AUni> -<AUni ws="qvm-x-acl">shasha</AUni> -<AUni ws="qvm-x-akh">shasha</AUni> -<AUni ws="qvm-x-akl">shasha</AUni> -<AUni ws="qvm-x-ame">shasha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shasha</AUni> -<AUni ws="qvm-x-acl">*shasha</AUni> -<AUni ws="qvm-x-akh">*shasha</AUni> -<AUni ws="qvm-x-akl">*shasha</AUni> -<AUni ws="qvm-x-ame">*shasha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.551" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e069bd62-eb39-49ff-b97a-8a16048c560b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shasha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="91baed0d-3def-43af-ad75-01b6c4cc1b51" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="11bfea85-eaa6-4e9a-acd0-f04e83dc4607" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shasha 
\entryTyp root 
\gENG fall 
\gSPN caerse 
\e *shasha 
\c V1 
\ach shasha 
\akh shasha 
\acl shasha 
\akl shasha 
\ame shasha</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="14e6ffd2-75db-4fce-84df-725aac9f55fb" ownerguid="19195524-4f64-4a9b-a889-00a51ee347bf"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="7874accf-8584-4739-bdb0-3da6b06f7507" t="o" /> -<objsur guid="e9db18bb-4ba0-4ab4-ac5c-3cb4419d7025" t="o" /> -<objsur guid="23ecd92c-48c1-4dab-85b0-184962183308" t="o" /> -<objsur guid="12bd8ec3-a1c6-4ed8-b126-e5ffb847244c" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="14e9339a-47f0-480e-84c9-14ada79da311"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cushi</AUni> -<AUni ws="qvm-x-acl">cushi; cushe</AUni> -<AUni ws="qvm-x-akh">kushi</AUni> -<AUni ws="qvm-x-akl">kushi; kushe</AUni> -<AUni ws="qvm-x-ame">kushi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kushi.v</AUni> -<AUni ws="qvm-x-acl">*kushi.v</AUni> -<AUni ws="qvm-x-akh">*kushi.v</AUni> -<AUni ws="qvm-x-akl">*kushi.v</AUni> -<AUni ws="qvm-x-ame">*kushi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.23" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f2a54f64-3831-4455-80f4-5f44272661e5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kushi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="53712600-404b-40c0-9652-040c45c61b60" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="af060a32-14c5-4c48-822a-51fab0a5c163" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kushi.v 
\entryTyp root 
\gENG be.happy 
\gSPN alegrar(se) 
\e *kushi.v 
\c V1 
\mp +FinalI 
\ach cushi 
\akh kushi 
\acl cushi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl cushe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kushi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kushe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kushi 
\mcc *kushi.v / ~_ PASS</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="14e9c20c-6eb5-49a4-a03f-3be26a934500" ownerguid="79ebb5ce-f0fd-4fb5-9f22-1fa4965a555b"> -<Abbreviation> -<AUni ws="en">1.3.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.963" /> -<DateModified val="2022-9-23 16:55:7.963" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to bodies of standing water.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Ocean, lake</AUni> -</Name> -<Questions> -<objsur guid="043924d7-ffd4-4080-a8ad-130926e4eca9" t="o" /> -<objsur guid="6c300425-9386-4b6f-98ba-a06dc3029ac3" t="o" /> -<objsur guid="35cc80ae-bf09-4ba6-ae84-2f3f0fc4c6b1" t="o" /> -<objsur guid="8c0740c8-05a4-4822-900c-fcbc092cadb2" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="a105e31c-1268-4fc2-8655-838d34860ece" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="14ec6de4-9fb8-49e9-9b25-4970be64f86a" ownerguid="9dfb9f99-4e30-4cd8-a8ac-7b97d5a96a68"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9c59fe93-dd0a-4266-b63b-1f29b128253a" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">to.file</AUni> -<AUni ws="es">limar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="85d97d5a-8e32-47bb-8aa2-43901cfddde9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="14ece9d6-f743-417f-84f5-63203f1c18bd" ownerguid="36e8f1df-1798-4ae6-904d-600ca6eb4145"> -<ExampleWords> -<AUni ws="en">can't escape, can't get out, trapped, be stuck, there is no escape, be imprisoned, be a prisoner</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to being unable to escape?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="14f22067-85ca-4ffc-b711-bfc70c521da3"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">cm</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="14f29380-8807-4bd5-94af-eea59b161c5d" ownerguid="6cdb14a9-f0cf-4326-a64b-2a09e5ed6622"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="14f3be78-60ca-4953-baa1-5895f45291c0" ownerguid="ff505092-6d88-4b5e-8095-04e471d7ad4c"> -<ExampleWords> -<AUni ws="en">live forever, (have) eternal life, life everlasting, immortality, life after death</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the condition or state of living forever?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="14f6d694-e06a-4b04-b7c1-6aaa445246f6" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<ExampleWords> -<AUni ws="en">policeman, guard, watchman, soldier, officer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What are the occupations in the police and military?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="14f7c821-0599-4b48-a71a-421145dd4c8f" ownerguid="e0a8e1d9-c43e-4092-a8dc-476a3417924e"> -<ExampleWords> -<AUni ws="en">confidence, morale, positive thinking</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of confidence?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="14f882ff-a03c-4081-a4aa-a29988822757"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wallicu</AUni> -<AUni ws="qvm-x-acl">wallicu; wallicu; wallico</AUni> -<AUni ws="qvm-x-akh">walliku</AUni> -<AUni ws="qvm-x-akl">walliku; walliku; walliko</AUni> -<AUni ws="qvm-x-ame">walliku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*walliku</AUni> -<AUni ws="qvm-x-acl">*walliku</AUni> -<AUni ws="qvm-x-akh">*walliku</AUni> -<AUni ws="qvm-x-akl">*walliku</AUni> -<AUni ws="qvm-x-ame">*walliku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.455" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b99cb04d-0945-4464-9cf6-989f0012dbde" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*walliku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f1d30dca-f7be-4116-98e4-8131ee20fb62" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1d372d1b-3c0d-4573-8d1c-29ce91affca5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *walliku 
\entryTyp root 
\gENG weed 
\gSPN ? 
\e *walliku 
\c N0 
\ach wallicu 
\akh walliku 
\acl wallicu / _# 
\acl wallicu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wallico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl walliku / _# 
\akl walliku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl walliko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame walliku</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="14f9d479-2737-4d72-8831-dfb7ec34f4a1" ownerguid="0a3c4ad4-5c0e-4a68-8a67-f4e6d2191140"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lentils</AUni> -<AUni ws="es">lentejas</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5b484f18-2b64-44ed-8359-72507819e703" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="14fbc6ce-b0d7-4515-a5c7-53cb4e1d1e1f" ownerguid="609cc365-f052-4fe9-b16c-5b5eda586d28"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="14fef832-59de-4167-8508-ababf7d5abf1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">le:chi; le:chi</AUni> -<AUni ws="qvm-x-acl">le:chi; le:chi; le:che</AUni> -<AUni ws="qvm-x-akh">le:chi; le:chi</AUni> -<AUni ws="qvm-x-akl">le:chi; le:chi; le:che</AUni> -<AUni ws="qvm-x-ame">le:chi; le:chi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+leche.1</AUni> -<AUni ws="qvm-x-acl">+leche.1</AUni> -<AUni ws="qvm-x-akh">+leche.1</AUni> -<AUni ws="qvm-x-akl">+leche.1</AUni> -<AUni ws="qvm-x-ame">+leche.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.630" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="17869f75-4ce7-4698-a81c-4075d26d61da" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+leche.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f0d25b3e-3e36-43d6-b59c-1c02ee16348a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="24bd6800-3720-46d2-816f-9491d9a0b3a4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +leche.1 
\entryTyp root 
\gENG milk 
\gSPN leche 
\e +leche.1 
\c N0 
\mp +FinalI 
\ach le:chi / _# 
\ach le:chi / ~_# 
\akh le:chi / _# 
\akh le:chi / ~_# 
\acl le:chi / _# 
\acl le:chi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl le:che +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl le:chi / _# 
\akl le:chi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl le:che +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame le:chi / _# 
\ame le:chi / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="15013026-30d0-41bb-a489-0d584909cbee" ownerguid="5a8ff7bf-fa7d-4e2e-8531-bc0b902facee"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="15053303-517a-48dc-a531-c25048e71bf2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">regala</AUni> -<AUni ws="qvm-x-acl">regala</AUni> -<AUni ws="qvm-x-akh">regala</AUni> -<AUni ws="qvm-x-akl">regala</AUni> -<AUni ws="qvm-x-ame">regala</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+regalar</AUni> -<AUni ws="qvm-x-acl">+regalar</AUni> -<AUni ws="qvm-x-akh">+regalar</AUni> -<AUni ws="qvm-x-akl">+regalar</AUni> -<AUni ws="qvm-x-ame">+regalar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.318" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="25eebad7-78c3-43d5-bf7c-5f1b5bb502b6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+regalar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4eb03814-afa6-41e5-941e-dd45aae2f702" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8b0bd0e1-3bcd-472f-a381-99d62b7f6f2d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +regalar 
\entryTyp root 
\gENG give 
\gSPN regalar 
\e +regalar 
\c V2 
\ach regala 
\akh regala 
\acl regala 
\akl regala 
\ame regala</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="15095ea8-bd32-4307-b923-4980f0fcb911" ownerguid="08c05e00-9660-4491-af2f-a05fab27ef39"> -<ExampleWords> -<AUni ws="en">emaciated, skeletal, be skin and bones, underweight, gaunt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who is very thin?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="150c72c2-36af-4ee8-9525-2869e84a1258" ownerguid="9b267cc1-983c-407a-98d2-1e27add6292c"> -<ExampleWords> -<AUni ws="en">tied, bound, lashed, moored, tethered</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe things that have been tied?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="150cb376-bcdb-426d-8d6d-d8b1ca0736c7" ownerguid="c7c1c25a-d89d-4720-846c-d6e1dd723a17"> -<ExampleWords> -<AUni ws="en">olive, corn, canola, cottonseed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What seeds are used to make oil?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="151340d2-8d68-487d-8fbc-4466a4febedd" ownerguid="77f27500-aad8-409c-a28e-92df73794dce"> -<ExampleWords> -<AUni ws="en">opposition, the other side</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a group you are fighting against?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="15139add-b8bf-4f53-8831-be2188844933" ownerguid="6a6bbf65-b521-4b74-bf35-dede87217d3c"> -<ExampleWords> -<AUni ws="en">habit, habitual, mannerism, ways</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a habit?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="15142e80-79a9-4fc4-a556-dd4938b4bf4f" ownerguid="867e7660-1e22-4978-abff-e5a681c93dde"> -<Form> -<AUni ws="qvm-x-ach">anís; anis</AUni> -<AUni ws="qvm-x-acl">anís; anis</AUni> -<AUni ws="qvm-x-akh">anís; anis</AUni> -<AUni ws="qvm-x-akl">anís; anis</AUni> -<AUni ws="qvm-x-ame">anís; anis</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="1519c2a2-14ae-44ad-bfac-e68edd38ba55" ownerguid="28de12ca-087c-41e3-ba04-c6f8b460db46"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ra</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ra</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ra</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ra</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ra</Run> -</AStr> -</Form> -<Morph> -<objsur guid="c9195472-585e-46e8-ad5e-3cf1c0561f5a" t="r" /> -</Morph> -<Msa> -<objsur guid="a22f2957-a229-4afb-b8d3-b397bafea06d" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="151f9b79-6d07-4183-ac2a-fe3688829a03" ownerguid="47e3f461-984b-45b6-b09b-9fefb9191b15"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="151fb171-73f5-4ba9-bc88-8d071ffc582c" ownerguid="acd1956e-7b55-40c3-8c5c-3122e4bce2fe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dance</AUni> -<AUni ws="es">danza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6f50c212-ebb9-4dd7-9f44-a3658961f89c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="15278faf-ceb0-4fbf-b4f1-3afbec420083" ownerguid="6580913f-20ab-4d71-aa82-7e7dab230e09"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stool</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cda61434-4b44-4743-b75b-e083bc4e013f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="152ae262-6ff3-434d-addf-9f19188babd4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nombra</AUni> -<AUni ws="qvm-x-acl">nombra</AUni> -<AUni ws="qvm-x-akh">nombra</AUni> -<AUni ws="qvm-x-akl">nombra</AUni> -<AUni ws="qvm-x-ame">nombra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+nombrar</AUni> -<AUni ws="qvm-x-acl">+nombrar</AUni> -<AUni ws="qvm-x-akh">+nombrar</AUni> -<AUni ws="qvm-x-akl">+nombrar</AUni> -<AUni ws="qvm-x-ame">+nombrar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.566" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="977bc733-204f-4f2c-837b-ff262eae44e0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+nombrar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="00a1c838-da5d-4ea2-b726-7a74450434e4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="228ad802-b87e-4976-852b-bf3a3bae7429" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +nombrar 
\entryTyp root 
\gENG to.name 
\gSPN nombrar 
\e +nombrar 
\c V1 
\ach nombra 
\akh nombra 
\acl nombra 
\akl nombra 
\ame nombra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="152bbf43-b428-4755-8492-9baede14414f" ownerguid="6bfb7813-3a7d-47e2-88e1-d54034c07e5d"> -<ExampleWords> -<AUni ws="en">meddle, kibitz, kibitzer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to giving advice when the person doesn't want it?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="152eaf26-8eee-476c-bcd9-8fbf8862d8b8" ownerguid="7b2bb976-a035-4423-aa43-850c28641fea"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="15315290-06f5-4bad-8f8d-3a37eee014ea" ownerguid="d014a4fa-c994-4fc4-ae4d-cbb9039aae7f"> -<Form> -<AUni ws="qvm-x-ach">marzu; marzo</AUni> -<AUni ws="qvm-x-acl">marzu; marzu; marzo</AUni> -<AUni ws="qvm-x-akh">marzu; marzo</AUni> -<AUni ws="qvm-x-akl">marzu; marzu; marzo</AUni> -<AUni ws="qvm-x-ame">marzu; marzo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="153705f8-2a3b-4963-87ed-6bea24fae918" ownerguid="5c9f1fed-2e6d-4ad2-b804-9d3f09a277d3"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Tsay junag mana ayunag cäga pï captinpis Israel runacunapita gargushgami canga. (Margos)</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="15371bfe-76aa-4530-81ee-3d187722a0a4" ownerguid="9afb64d6-feae-4490-9b7e-95768627f643"> -<ExampleWords> -<AUni ws="en">exhort, encourage, encouragement</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to someone urging another to do what is good?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="15390637-5668-4c05-a72a-7d8d1db27a8e" ownerguid="bb29001e-97f3-4bb4-8946-7c33b9835fcb"> -<ExampleWords> -<AUni ws="en">stepbrother, stepsister</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) When your father or mother marries a person who already has children by a previous marriage, what words refer to those children?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="153af247-f733-401e-b674-678a9c347e57" ownerguid="186814de-424b-46de-99e9-78bad588c44c"> -<Form> -<AUni ws="qvm-x-ach">lacli</AUni> -<AUni ws="qvm-x-acl">lacli; lacle</AUni> -<AUni ws="qvm-x-akh">lakli</AUni> -<AUni ws="qvm-x-akl">lakli; lakle</AUni> -<AUni ws="qvm-x-ame">lakli</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="153b30a4-afac-4e88-9720-619551126cc0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wiyas</AUni> -<AUni ws="qvm-x-acl">wiyas</AUni> -<AUni ws="qvm-x-akh">wiyas</AUni> -<AUni ws="qvm-x-akl">wiyas</AUni> -<AUni ws="qvm-x-ame">wiyas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wiyas</AUni> -<AUni ws="qvm-x-acl">*wiyas</AUni> -<AUni ws="qvm-x-akh">*wiyas</AUni> -<AUni ws="qvm-x-akl">*wiyas</AUni> -<AUni ws="qvm-x-ame">*wiyas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.709" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d9a21a92-a57e-4893-8eac-e5bab46d6c5c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wiyas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4d78f5c6-64bd-428e-aa27-8059b2567da0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0eef2c84-0012-4c68-927f-9c0c707bf738" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wiyas 
\entryTyp root 
\gENG 
\gSPN 
\e *wiyas 
\c N0 
\mp +FinalC 
\ach wiyas 
\akh wiyas 
\acl wiyas 
\akl wiyas 
\ame wiyas</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="153ebcc9-8ac0-4a9b-aae9-7640c4180df3"> -<Form> -<Str> -<Run ws="en">PNCT</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="153fec18-54e9-4586-80e6-2bb8317b5177" ownerguid="100e62a6-b6f4-4b30-b317-0517d6b102a9"> -<ExampleWords> -<AUni ws="en">be shy, feel shy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling shy?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1540a357-563e-4f46-8004-4ff10ab15876"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cachara</AUni> -<AUni ws="qvm-x-acl">cachara</AUni> -<AUni ws="qvm-x-akh">kachara</AUni> -<AUni ws="qvm-x-akl">kachara</AUni> -<AUni ws="qvm-x-ame">kachara</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*katrara</AUni> -<AUni ws="qvm-x-acl">*katrara</AUni> -<AUni ws="qvm-x-akh">*katrara</AUni> -<AUni ws="qvm-x-akl">*katrara</AUni> -<AUni ws="qvm-x-ame">*katrara</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.953" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2034d20f-de62-445d-a240-9d2949da4e30" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*katrara</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2f1d6814-7b70-4ecf-ba81-86cf55c4970e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9ac55942-49e1-4530-830e-76d2b858bf4c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *katrara 
\entryTyp root 
\gENG leave 
\gSPN dejar 
\e *katrara 
\c V2 
\ach cachara 
\akh kachara 
\acl cachara 
\akl kachara 
\ame kachara 
\mcc *katrara / _... [trigger]</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="15416d6d-b78d-40d3-b0bc-ddc2405dae91" ownerguid="57f81c17-57cb-4d5e-afca-6197ecfdf443"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="1545d615-742e-483c-8304-b07c7694bbcf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chale:cu</AUni> -<AUni ws="qvm-x-acl">chale:cu; chale:cu; chale:co</AUni> -<AUni ws="qvm-x-akh">chale:cu</AUni> -<AUni ws="qvm-x-akl">chale:cu; chale:cu; chale:co</AUni> -<AUni ws="qvm-x-ame">chale:cu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+chaleco</AUni> -<AUni ws="qvm-x-acl">+chaleco</AUni> -<AUni ws="qvm-x-akh">+chaleco</AUni> -<AUni ws="qvm-x-akl">+chaleco</AUni> -<AUni ws="qvm-x-ame">+chaleco</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.272" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5c4a77e9-425e-4cd0-89f6-2b7790a0183a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+chaleco</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6e39c922-9d0f-4a25-9275-69ab40e852d8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ca0cc954-9f14-4afb-bbfc-a2aaddd2875f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +chaleco 
\entryTyp root 
\gENG jacket 
\gSPN chaleco 
\e +chaleco 
\c N0 
\ach chale:cu 
\akh chale:cu 
\acl chale:cu / _# 
\acl chale:cu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chale:co +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chale:cu / _# 
\akl chale:cu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chale:co +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chale:cu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1545e89c-6be6-4433-bbcb-4fc60344d7a9" ownerguid="611aa361-4ddd-450b-a152-94984a274575"> -<ExampleWords> -<AUni ws="en">desert, disown, divorce, dump, forsake, leave alone, maroon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to abandoning someone?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1546a0a9-dfaf-4800-ba48-d29225b4aec7" ownerguid="de6dce89-f1d7-4bba-8c9f-4067f9cacc1d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="f864ad80-66b7-481c-b880-0bcac8ab7b85" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="15479a59-8260-4ba0-8a89-edbfebdf9c5f" ownerguid="c79d49f1-74ec-4dba-a5aa-5e861af63d05"> -<ExampleWords> -<AUni ws="en">get the blame, get blamed for, take the blame, take the rap, carry the can, take the fall</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to being blamed for something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1548b3fd-394a-4efa-82b0-58303feca843" ownerguid="e7a941e6-e657-4e8e-b25b-5c2549631e93"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="154ba120-9c27-40ae-95e4-58ffec829bb6" ownerguid="97248d2a-b920-4dd9-9eb5-f36890a82e7d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">aspire</AUni> -<AUni ws="es">ambicionar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ad6f75e6-6807-4525-858d-75123b6cb344" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="154d5962-c193-4f45-9429-def61ba135ac" ownerguid="1fad303d-4172-455c-83f0-a7f5f5f1fdc3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="154e7a2c-70ac-4ba7-9853-2e6f7431dcf6" ownerguid="ea45cdbd-7684-410c-b107-2a5b343f6a9a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">console</AUni> -<AUni ws="es">consolar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2eba746a-e6bd-4fdf-8c4b-bb9fb76e30f7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="154eadd9-5f2d-44b8-9327-4f3c5bc8bd85"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">a:jus</AUni> -<AUni ws="qvm-x-acl">a:jus</AUni> -<AUni ws="qvm-x-akh">a:jus</AUni> -<AUni ws="qvm-x-akl">a:jus</AUni> -<AUni ws="qvm-x-ame">a:jus</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ajos</AUni> -<AUni ws="qvm-x-acl">+ajos</AUni> -<AUni ws="qvm-x-akh">+ajos</AUni> -<AUni ws="qvm-x-akl">+ajos</AUni> -<AUni ws="qvm-x-ame">+ajos</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.679" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6ceba7dc-4b01-4287-b720-0a2b4f0efa87" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ajos</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4be476fd-6dcf-4177-a3b3-3cda490ce052" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="80553532-5978-4134-a51d-6761cf66376c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ajos 
\entryTyp root 
\gENG garlic 
\gSPN ajos 
\e +ajos 
\c N0 
\mp +assimilated 
\ach a:jus 
\akh a:jus 
\acl a:jus 
\akl a:jus 
\ame a:jus 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="154fff07-52a0-4e5d-8c7a-3b1a88d44b84" ownerguid="2bdfe506-0a28-45bd-81e1-44dcedcc262a"> -<Form> -<AUni ws="qvm-x-ach">nación</AUni> -<AUni ws="qvm-x-acl">nación</AUni> -<AUni ws="qvm-x-akh">nación</AUni> -<AUni ws="qvm-x-akl">nación</AUni> -<AUni ws="qvm-x-ame">nación</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="15535c63-e0c9-4d46-a01d-b506ad776a47" ownerguid="0d972590-5947-4983-a092-443697baec24"> -<ExampleWords> -<AUni ws="en">manure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What tools are used for fertilizing?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="155510e7-ca58-418a-8c5c-8b044d67cebd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wichya</AUni> -<AUni ws="qvm-x-acl">wichya</AUni> -<AUni ws="qvm-x-akh">wichya</AUni> -<AUni ws="qvm-x-akl">wichya</AUni> -<AUni ws="qvm-x-ame">wichya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*witrya</AUni> -<AUni ws="qvm-x-acl">*witrya</AUni> -<AUni ws="qvm-x-akh">*witrya</AUni> -<AUni ws="qvm-x-akl">*witrya</AUni> -<AUni ws="qvm-x-ame">*witrya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.709" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d362ffb4-61ff-4224-8764-68b45b44b5b9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*witrya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="506c5c89-70a3-4a2d-914f-e55d392fd65c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3cf570fe-3caa-494d-a603-4081fa826f5b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *witrya 
\entryTyp root 
\gENG 
\gSPN 
\e *witrya 
\c V1 
\ach wichya 
\akh wichya 
\acl wichya 
\akl wichya 
\ame wichya</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="15578f59-2a91-482a-b0e1-a288a3d7dc5a" ownerguid="9683fda7-1c6d-4186-9588-c44a46b456a8"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Gen 31.10 Uywacuna tsaricunan witsanmi sueñuynëcho ricashcä muru chïvucuna alga chïvucuna yana chïvucuna cabracunata chulpaycagta.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="15589482-d0ee-4b8d-9d9e-f76da3eefaab"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">primer</AUni> -<AUni ws="qvm-x-acl">primer</AUni> -<AUni ws="qvm-x-akh">primer</AUni> -<AUni ws="qvm-x-akl">primer</AUni> -<AUni ws="qvm-x-ame">primer</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+primer</AUni> -<AUni ws="qvm-x-acl">+primer</AUni> -<AUni ws="qvm-x-akh">+primer</AUni> -<AUni ws="qvm-x-akl">+primer</AUni> -<AUni ws="qvm-x-ame">+primer</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.921" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5b831332-1dec-4a6c-913e-71034476af1b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+primer</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6fdf6799-8293-4fa4-999e-db63f0908440" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="615477f6-f481-447b-9231-15437a295812" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +primer 
\entryTyp root 
\gENG first 
\gSPN primero 
\e +primer 
\c N0 
\mp +FinalC 
\ach primer 
\akh primer 
\acl primer 
\akl primer 
\ame primer 
\i Exo 11.5 Tsaynoglami lapan uywacunapa primer orgu wawancunapis wanur ushacangapag.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="155b5b69-c14c-4361-a835-03913df7d6fc" ownerguid="7beca90c-3671-4b3c-bf9a-fb8f08ff914b"> -<ExampleWords> -<AUni ws="en">salt, salty, saline, to salt, grain of salt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to salt?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="155c1c4b-130a-48be-a6d9-9e35e74d32d9" ownerguid="0551c37c-61f2-402d-9e8e-74fe3c0e645c"> -<Form> -<AUni ws="qvm-x-ach">pishgu</AUni> -<AUni ws="qvm-x-acl">pishgu; pishgu; pishgo</AUni> -<AUni ws="qvm-x-akh">pishqu</AUni> -<AUni ws="qvm-x-akl">pishqu; pishqu; pishqo</AUni> -<AUni ws="qvm-x-ame">pishqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="155efa24-c269-4114-972b-3e5ca9663df1" ownerguid="4b2c725c-3642-46d5-9098-77ad8dc47222"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="1560177f-52d1-46d8-a48a-7e6e1329844a" ownerguid="2725259a-7ebf-44fc-8107-3c320e583cef"> -<Form> -<AUni ws="qvm-x-ach">comandanti; comandante</AUni> -<AUni ws="qvm-x-acl">comandanti; comandanti; comandante</AUni> -<AUni ws="qvm-x-akh">comandanti; comandante</AUni> -<AUni ws="qvm-x-akl">comandanti; comandanti; comandante</AUni> -<AUni ws="qvm-x-ame">comandanti; comandante</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1560370f-7090-4cbb-aa40-f277504d59af" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<ExampleWords> -<AUni ws="en">cheer up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(17) What do people say when they don't want someone to feel sad?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1560ec91-d883-49fa-84e7-63707ad2a581" ownerguid="cc36af80-42a1-4356-a9d2-2f517b12b3bc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">tercio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e86fac69-1362-49c1-82f9-07616daf2bb9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="1563492a-b374-4450-b019-6b7fc9234334" ownerguid="ae94138e-a8a2-4c05-bfa7-7b7dd55f7c16"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="15648f4a-8566-4153-af3e-ec3cdb0b1a6b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">viaje:ru</AUni> -<AUni ws="qvm-x-acl">viaje:ru; viaje:ru; viaje:ro</AUni> -<AUni ws="qvm-x-akh">viaje:ru</AUni> -<AUni ws="qvm-x-akl">viaje:ru; viaje:ru; viaje:ro</AUni> -<AUni ws="qvm-x-ame">viaje:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+viajero</AUni> -<AUni ws="qvm-x-acl">+viajero</AUni> -<AUni ws="qvm-x-akh">+viajero</AUni> -<AUni ws="qvm-x-akl">+viajero</AUni> -<AUni ws="qvm-x-ame">+viajero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.383" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="54a08ec8-9eba-47b1-a4bc-0035b116b36a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+viajero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b8fec924-fedb-4e03-8a2b-ba60c93e15db" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ca0bef58-cc5e-43db-a6a6-49ee5e4ba788" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +viajero 
\entryTyp root 
\gENG traveler 
\gSPN viajero 
\e +viajero 
\c N0 
\ach viaje:ru 
\akh viaje:ru 
\acl viaje:ru / _# 
\acl viaje:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl viaje:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl viaje:ru / _# 
\akl viaje:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl viaje:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame viaje:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="15668eec-fab7-43ca-bfde-e3e5e1115d66" ownerguid="effc49dd-6322-4302-899c-4cf540f0e2e4"> -<ExampleWords> -<AUni ws="en">soup, tomato soup, split green pea soup, clam chowder, broth, stew, gravy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to foods that contain a lot of water and are boiled?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="156db732-96a6-48d2-ba6a-889cc6f72853" ownerguid="0177f8a5-1fc5-4473-9e8f-88874b376475"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">no</AUni> -<AUni ws="es">no</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b2b2cafc-4a33-4aaf-bb37-ad49d349f0bb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="156e416a-5570-40c3-981b-0927f7ec0d3a" ownerguid="f0bf0322-8c8d-4f7b-a98a-778236426b21"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0 V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">skull</AUni> -<AUni ws="es">casco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="34c2eb75-4aa2-47ab-8d67-4555a82f6f5d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmFolder" guid="156eff82-9e78-4f5a-b187-5baf85db7cae" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Name> -<AUni ws="en">File paths in TsStrings</AUni> -</Name> -</rt> -<rt class="LexEntry" guid="156f3065-28b0-4549-96f8-63532853dbf5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">o:su</AUni> -<AUni ws="qvm-x-acl">o:su; o:su; o:so</AUni> -<AUni ws="qvm-x-akh">o:su</AUni> -<AUni ws="qvm-x-akl">o:su; o:su; o:so</AUni> -<AUni ws="qvm-x-ame">o:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+oso</AUni> -<AUni ws="qvm-x-acl">+oso</AUni> -<AUni ws="qvm-x-akh">+oso</AUni> -<AUni ws="qvm-x-akl">+oso</AUni> -<AUni ws="qvm-x-ame">+oso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.638" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e2c0a4e1-a58f-4d43-ba2e-d0d3113d1f81" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+oso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e86b3745-4b6c-4a5f-86dc-c71b10268ec8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="30265343-cc93-4499-a836-a3afb8b402e0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +oso 
\entryTyp root 
\gENG bear 
\gSPN oso 
\e +oso 
\c N0 
\ach o:su 
\akh o:su 
\acl o:su / _# 
\acl o:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl o:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl o:su / _# 
\akl o:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl o:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame o:su</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="15731398-b289-4b32-b931-6ecd898f990d" ownerguid="f7960e84-5af9-4999-9028-783058aa8c5c"> -<ExampleWords> -<AUni ws="en">every way, all-out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to all ways?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="15752a64-a32f-443c-be2c-5a754f4485ca" ownerguid="5b5bcd42-09bb-4c2f-a2da-569cfa69b6ac"> -<ExampleWords> -<AUni ws="en">draw attention to, call attention to, bring something to someone's attention, point out, focus attention on, highlight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to making someone pay attention to something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="15776edf-2cac-4733-a065-2ffc0d60da6c" ownerguid="751bd45c-abfb-443f-ac55-aad3472c20de"> -<ExampleWords> -<AUni ws="en">unintelligible, foreign</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe speech that someone cannot understand?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="15792430-038c-4c6e-950a-5da4a3d90f42" ownerguid="5c7f5987-c548-48ec-8c98-cee025b8598c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ROM 11.17 Tsaymi sacha olïvupa rämankunano kaykarpis tsay ali olivo yörapa sapinpita salvacionta chaskirkaykanki.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="157b6c9b-4b96-488e-8341-222945a61000" ownerguid="23fb1571-c04e-4850-b499-f170bc45247f"> -<ExampleWords> -<AUni ws="en">near-sighted, far-sighted, as blind as a bat, partially blind, have poor eyesight, astigmatism, color-blind, cross-eyed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who cannot see well?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="157cbc78-f1b6-4fe8-815a-8269ab6fc687" ownerguid="4bbd0f6b-c6e9-43dc-94b0-b547b9beaa36"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cushion</AUni> -<AUni ws="es">cojfn</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="14c3b818-ac64-4f6b-b84e-0957819f0740" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="157e063e-1d02-4366-914f-f18d0f59e50d" ownerguid="5bd2407b-b9c4-4a80-a747-ba70056e8ac7"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">SNG 7.12 Tsaycho ricamushun mä üvacuna maynacush murcuraycan y granädapis maynacush tucturaycan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="15800544-8230-498c-84bf-700812ae5317" ownerguid="8de202c1-1be0-4d1f-b4f9-2b01bf9b5472"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">yes</AUni> -<AUni ws="es">sí</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="51645e12-78fc-4d24-ad6a-f9e3d5337daf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="1581acb1-e44f-4b39-adef-ff76dde6af5b" ownerguid="f70de4ff-24a1-4678-a339-a1f2f8145aba"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">free</AUni> -<AUni ws="es">librar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d45483b7-7927-4e61-acf8-137469d4bfe6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="158247a4-68f4-4e16-bd29-fec5e811ba91" ownerguid="1ef4f624-13c2-4b63-b151-4e74f4ec307c"> -<Form> -<AUni ws="qvm-x-ach">incu</AUni> -<AUni ws="qvm-x-acl">incu; incu; inco</AUni> -<AUni ws="qvm-x-akh">inku</AUni> -<AUni ws="qvm-x-akl">inku; inku; inko</AUni> -<AUni ws="qvm-x-ame">inku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="1582eb0e-6a67-40ef-b405-f8ed78557d18" ownerguid="86c27056-e083-4db9-8ea8-8276c94ba50f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="1583f96b-9e4b-4f0d-af86-7189ced2a282"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shwan</AUni> -<AUni ws="qvm-x-acl">shwan</AUni> -<AUni ws="qvm-x-akh">shwan</AUni> -<AUni ws="qvm-x-akl">shwan</AUni> -<AUni ws="qvm-x-ame">shwan</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.599" /> -<DateModified val="2022-10-16 15:17:50.292" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0a1c9cf6-59e1-409f-91cc-4f2c76d802a2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">12CND</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="568dffe2-a0c1-4161-9f29-3dd1b06dbb2c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d03bae5b-d166-4baa-b2fc-ded1ef9ca9d1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx 12CND 
\entryTyp suffix 
\gENG 12CND 
\gSPN 12COND 
\e 12CND 
\c V1/V0 
\o 120 
\mp +FinalC 
\ach shwan 
\akh shwan 
\acl shwan 
\akl shwan 
\ame shwan 
\mp +foreshortens</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1589a9cf-f769-411e-a153-78b13573fcc6" ownerguid="7575d654-e528-4fe0-85eb-481b0e6654bb"> -<ExampleWords> -<AUni ws="en">machine, mechanics, machinery, apparatus, engine, motor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to machines?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1589ffbc-07fe-4803-9c1c-66ca9236e056" ownerguid="a3f1d702-8ca1-457a-a569-eb6fdf696bbe"> -<ExampleWords> -<AUni ws="en">approval, approbation, advocacy, endorsement, sanction</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to someone's approval?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="158b54b2-13ab-463a-9f07-767c7d253ee7" ownerguid="858af232-b570-4153-b4c0-f60930df9ced"> -<ExampleWords> -<AUni ws="en">there's more to someone/something than meets the eye, deceptive, deceptively, not be what you/it seem</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words indicate that someone or something is not what it seems to be?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="15947464-997a-4f44-9a4b-ac4916e7e19b" ownerguid="0f883eb0-00a1-44cc-b719-97fb6ec145d4"> -<Abbreviation> -<AUni ws="en">5.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.327" /> -<DateModified val="2022-9-23 16:55:8.327" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to adornment.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>49 Activities Involving Clothing and Adorning</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Adornment</AUni> -</Name> -<OcmCodes> -<Uni>300 Adornment; 515 Personal Hygiene; 302 Toilet; 305 Beauty Specialists</Uni> -</OcmCodes> -<Questions> -<objsur guid="891549c5-6df8-473f-92bb-811965c49f07" t="o" /> -<objsur guid="b01dbef2-6016-4c3c-9e84-57eb5e0378f1" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="844f922b-6fb6-49aa-864b-b1c49edaa1ae" t="o" /> -<objsur guid="5bdb3c06-fbee-4f5f-991a-e2128f65bb86" t="o" /> -<objsur guid="6b8366b9-b5e8-42b8-991c-c568d4442a81" t="o" /> -<objsur guid="c81004a7-499e-4e05-84c8-3d74a17e97fd" t="o" /> -<objsur guid="03e22b05-8505-442d-9c3b-7e691bd525e0" t="o" /> -<objsur guid="6ea9bfc6-723c-466f-9efc-0992879ae47d" t="o" /> -<objsur guid="93de2257-8303-490d-b2fe-6d1d838b08c6" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="1596d612-3357-4f2f-80fc-be4d3c255714" ownerguid="b2bb077a-92c8-4e54-8dfa-c89efd60b82d"> -<ExampleWords> -<AUni ws="en">pluck</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to pulling the feathers off of a dead bird?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1597acc2-4968-46e9-98d3-0760d0b4456e" ownerguid="cdccd898-2887-4738-9ae9-1e3b0920a8ac"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="159a991e-f541-4881-a26c-da2402354a2d" ownerguid="0f2ec646-30b7-4fa2-b5e3-59c4845321d9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="159f37ab-13d8-4b5c-b6b7-10a47156594b" ownerguid="8bd0a688-3bea-4dd3-8b46-f759216604b0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.load</AUni> -<AUni ws="es">cargar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="eb79da94-2758-4f78-9eab-f3864fc9ad44" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="15a238a9-eb54-4f43-a61a-f45218a4e362" ownerguid="efd03c89-bf8b-4d46-a921-06cc06f28356"> -<ExampleWords> -<AUni ws="en">ringleader, follower, hanger-on, adherent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a person's role in a group?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="15a39cf5-e4b4-4ad1-af0e-c9d3c8984d08" ownerguid="8a3fa8c2-0b6b-431e-b6bb-3a87a3933331"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="15a4b24f-d304-4b7d-8d1f-81cf6ed709ae" ownerguid="43d75b24-809e-44a7-a635-cb2edc31bd1d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">a.las.justas</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="84a56a35-dfc4-42b7-8d46-ca0730575b68" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="15a94be4-ecb1-4277-b2da-d2446f537170" ownerguid="d20a7f46-1849-488e-8262-93a0167d4210"> -<Form> -<AUni ws="qvm-x-ach">cuadernu; cuaderno</AUni> -<AUni ws="qvm-x-acl">cuadernu; cuadernu; cuaderno</AUni> -<AUni ws="qvm-x-akh">cuadernu; cuaderno</AUni> -<AUni ws="qvm-x-akl">cuadernu; cuadernu; cuaderno</AUni> -<AUni ws="qvm-x-ame">cuadernu; cuaderno</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="15aba1a6-ac19-4f00-ab5e-97c44e55b43e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mas</AUni> -<AUni ws="qvm-x-acl">mas</AUni> -<AUni ws="qvm-x-akh">mas</AUni> -<AUni ws="qvm-x-akl">mas</AUni> -<AUni ws="qvm-x-ame">mas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+más</AUni> -<AUni ws="qvm-x-acl">+más</AUni> -<AUni ws="qvm-x-akh">+más</AUni> -<AUni ws="qvm-x-akl">+más</AUni> -<AUni ws="qvm-x-ame">+más</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.386" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8ac0251c-ac8b-43e8-b92a-904077463439" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+más</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d8ee23d8-9eb3-4dbf-b605-44cf67cf672a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e6bc9f48-b268-46cf-820b-47dcc428530c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +más 
\entryTyp root 
\gENG more 
\gSPN más 
\e +más 
\c N0 
\mp +assimilated 
\ach mas 
\akh mas 
\acl mas 
\akl mas 
\ame mas 
\mp +FinalC 
\i Matatias caycashganmanmi Israel runacuna mas masna juntacargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="15b04bb3-b635-4a1b-8822-89ed32045460" ownerguid="721e7782-9add-41fa-a7cf-659d5ca33926"> -<ExampleWords> -<AUni ws="en">opponent, opposition, rival</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to the people you play against?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="15b0c3b3-f6d4-40dd-8198-c21e580aa565" ownerguid="08ecb774-7406-44b7-8447-894102b78ec9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="15b6563d-3582-4519-95dd-150f911400d3" ownerguid="a135776f-8f05-4910-9dec-d47a74ae9869"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="15b77b59-9e47-4c73-90c2-15a54e0d54fe" ownerguid="46cb943c-9102-4d7e-93a5-f647287fcc10"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="15b7d6ea-aa4f-4864-836a-ee5e111181f3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">red</AUni> -<AUni ws="qvm-x-acl">red</AUni> -<AUni ws="qvm-x-akh">red</AUni> -<AUni ws="qvm-x-akl">red</AUni> -<AUni ws="qvm-x-ame">red</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+red.1</AUni> -<AUni ws="qvm-x-acl">+red.1</AUni> -<AUni ws="qvm-x-akh">+red.1</AUni> -<AUni ws="qvm-x-akl">+red.1</AUni> -<AUni ws="qvm-x-ame">+red.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.316" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="310a39b0-5843-4692-82b9-5406c2ef9bcb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+red.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="121170d5-1be1-455b-87c8-0ba061d14835" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="32a6fc9a-6072-4404-be59-903c222b1382" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +red.1 
\entryTyp root 
\gENG net 
\gSPN red 
\e +red.1 
\c N0 
\mp +FinalC 
\ach red 
\akh red 
\acl red 
\akl red 
\ame red</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="15b9900c-6267-47b6-9430-e4bda7f0905e" ownerguid="7162885d-1d35-4baf-97d6-7368fff7c723"> -<ExampleWords> -<AUni ws="en">loose, too big</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is loose?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="15b9eff1-34df-4fa3-9270-095917eb7266" ownerguid="43cb3488-711b-4d9d-9d0e-03d0c1f6eb8b"> -<ExampleWords> -<AUni ws="en">ashamed, disgraced, embarrassed, shamefaced</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels ashamed?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="15baceb7-b239-417a-ae7a-de3bb4da72de" ownerguid="ac734a97-d49b-469b-8068-e59c6e9af96c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="15bced48-c71e-404d-968c-bef230e147e9" ownerguid="a3ba23d2-618e-4618-af18-9befae2f888b"> -<ExampleWords> -<AUni ws="en">grind, grate, scrape, scratch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to grinding something?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="15be7783-0dda-4182-928d-aa347c890394" ownerguid="e22aa72d-8119-410c-871e-cf23ff2aa36e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="MoStemMsa" guid="15be8fb8-d556-4408-b268-2358d711e4d7" ownerguid="6fe0cf64-0ad9-42ab-a418-64f6e1bbe68a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="15be9a65-e841-4091-a9d9-c8890e78b3c5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">diluviu; diluvio</AUni> -<AUni ws="qvm-x-acl">diluviu; diluviu; diluvio</AUni> -<AUni ws="qvm-x-akh">diluviu; diluvio</AUni> -<AUni ws="qvm-x-akl">diluviu; diluviu; diluvio</AUni> -<AUni ws="qvm-x-ame">diluviu; diluvio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+diluvio</AUni> -<AUni ws="qvm-x-acl">+diluvio</AUni> -<AUni ws="qvm-x-akh">+diluvio</AUni> -<AUni ws="qvm-x-akl">+diluvio</AUni> -<AUni ws="qvm-x-ame">+diluvio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.414" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d6afa699-5b0d-4cf3-819e-6b16a3730ad8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+diluvio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4ce86d40-d3fd-4c6c-83b9-69acb547f5a3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bbb6ff4e-7b24-4686-bd2e-8bf8074bcf2e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +diluvio 
\entryTyp root 
\gENG flood 
\gSPN diluvio 
\e +diluvio 
\c N0 
\ach diluviu / ~_# 
\ach diluvio / _# 
\akh diluviu / ~_# 
\akh diluvio / _# 
\acl diluviu / ~_# 
\acl diluviu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl diluvio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl diluviu / ~_# 
\akl diluviu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl diluvio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame diluviu / ~_# 
\ame diluvio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="15c0edac-ab90-4e82-b181-a4d2c88f4cf9" ownerguid="478b01f9-5ca7-40c5-905e-22206dde93f1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hell</AUni> -<AUni ws="es">infierno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4cec9045-a819-4790-8235-2d6f334658cf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="15c204b5-2346-4a5b-b94f-887fe6496583" ownerguid="c3b808d4-d94e-4c8e-b7b2-87b4f4a83198"> -<ExampleWords> -<AUni ws="en">sports clothes, work clothes, formal clothes, informal, office wear</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to clothes worn on a special occasion?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="15caeab7-fb9d-4ac6-95bc-aae058f3a0fc" ownerguid="04053f4c-0b2c-4d26-8e8c-2c816e350985"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="15cd3c26-af09-4ed6-a99c-c5c4e077d532" ownerguid="50b62b28-0676-4968-ba55-4e94964bb0ab"> -<Form> -<AUni ws="qvm-x-ach">cuti</AUni> -<AUni ws="qvm-x-acl">cuti; cuti; cute</AUni> -<AUni ws="qvm-x-akh">kuti</AUni> -<AUni ws="qvm-x-akl">kuti; kuti; kute</AUni> -<AUni ws="qvm-x-ame">kuti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="15d13fff-fb30-47d9-a601-b1a55e36a26a" ownerguid="4ccdcc51-e278-4495-b1e3-ea17ff1544e5"> -<Form> -<AUni ws="qvm-x-ach">tambur</AUni> -<AUni ws="qvm-x-acl">tambur</AUni> -<AUni ws="qvm-x-akh">tambur</AUni> -<AUni ws="qvm-x-akl">tambur</AUni> -<AUni ws="qvm-x-ame">tambur</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="15d3dbfb-6d2e-489b-adc3-b940b7ec2880" ownerguid="72274e9d-5d3c-4ae7-93ab-db3617cdda1e"> -<ExampleWords> -<AUni ws="en">irritating, itchy, prickly, scratchy, ticklish, tingly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words describe something that feels bad?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="15d4ff08-47eb-4537-9a1f-683e0908b8a7" ownerguid="65926a7a-bc46-4a40-a2c9-bf84696a3903"> -<ExampleWords> -<AUni ws="en">be gentle, careful, mild</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being gentle with someone or something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="15d92219-84d4-471e-9fe0-69856c69f0c9" ownerguid="4e791773-94c8-4667-93f8-92dc0100ddfe"> -<ExampleWords> -<AUni ws="en">go on a holiday, take a holiday, go on vacation, take a vacation, go on a trip</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to going on a holiday?</AUni> -</Question> -</rt> -<rt class="CmPossibilityList" guid="15db85ca-e88e-41ac-9503-97961d376138" ownerguid="65c9ed08-8bc7-4048-b5ab-367dadba7487"> -<DateCreated val="2022-9-23 16:55:7.762" /> -<DateModified val="2022-9-23 16:55:7.762" /> -<Depth val="127" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="True" /> -<IsVernacular val="False" /> -<ItemClsid val="5049" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Parts of Speech for English Reversal Index</AUni> -</Name> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="0" /> -</rt> -<rt class="LexEntry" guid="15dc9f41-febb-4e65-afe0-84d999892a3c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sue:ñu</AUni> -<AUni ws="qvm-x-acl">sue:ñu; sue:ñu; sue:ño</AUni> -<AUni ws="qvm-x-akh">sue:ñu</AUni> -<AUni ws="qvm-x-akl">sue:ñu; sue:ñu; sue:ño</AUni> -<AUni ws="qvm-x-ame">sue:ñu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sueño.1</AUni> -<AUni ws="qvm-x-acl">+sueño.1</AUni> -<AUni ws="qvm-x-akh">+sueño.1</AUni> -<AUni ws="qvm-x-akl">+sueño.1</AUni> -<AUni ws="qvm-x-ame">+sueño.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.733" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="244ee432-c009-4f7b-b24b-6818dd172773" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sueño.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9829bf1b-4dbd-4452-93ae-a0bcda5a6442" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5cd8e990-655c-47d8-8807-a66d612481af" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sueño.1 
\entryTyp root 
\gENG dream 
\gSPN sueño 
\e +sueño.1 
\c N0 
\ach sue:ñu 
\akh sue:ñu 
\acl sue:ñu / _# 
\acl sue:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sue:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sue:ñu / _# 
\akl sue:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sue:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sue:ñu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="15de34e4-6d84-43e7-a405-742d6da2c92b" ownerguid="0c1bcc98-9bc3-4da0-8eac-ff8a6eecbf84"> -<ExampleWords> -<AUni ws="en">innocence</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to his innocence?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="15df5c19-204d-4097-accc-179b20cf5280"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chiwa</AUni> -<AUni ws="qvm-x-acl">chiwa</AUni> -<AUni ws="qvm-x-akh">chiwa</AUni> -<AUni ws="qvm-x-akl">chiwa</AUni> -<AUni ws="qvm-x-ame">chiwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+chiva</AUni> -<AUni ws="qvm-x-acl">+chiva</AUni> -<AUni ws="qvm-x-akh">+chiva</AUni> -<AUni ws="qvm-x-akl">+chiva</AUni> -<AUni ws="qvm-x-ame">+chiva</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.325" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0c039c09-cb00-427f-b6dd-242470584187" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+chiva</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="afe19163-7cf1-4796-bd99-646d884d100f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7d7e0f0b-b4e7-4267-9303-296e9471e2ef" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +chiva 
\entryTyp root 
\gENG goat 
\gSPN chiva 
\e +chiva 
\c N0 
\ach chiwa 
\akh chiwa 
\acl chiwa 
\akl chiwa 
\ame chiwa 
\i NUM 15.11 Tsaynoglami rurapäcunqui töruta, carnita, carnishta o chiwa malwata apamurpis.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="15e0b54b-bb7c-4900-b048-20b718d05f79" ownerguid="f02ae505-d6b7-4b30-9d97-8505d0d1a0c7"> -<Abbreviation> -<AUni ws="en">9.6.3.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.720" /> -<DateModified val="2022-9-23 16:55:8.720" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that one of several things is in focus.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Markers of focus</AUni> -</Name> -<Questions> -<objsur guid="b1111ffa-50b0-4692-8ec9-a991730e86ab" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="15e4293a-8e5a-48b2-b76d-c9975faf87ba" ownerguid="51d4e258-430c-4032-94e3-ee53095e7045"> -<ExampleWords> -<AUni ws="en">solve, work out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to finding an answer?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="15e4f287-32aa-4f35-b99b-4f95d54fd253" ownerguid="4ea4845b-ab94-4424-a1ef-eea531e392df"> -<Form> -<AUni ws="qvm-x-ach">maya</AUni> -<AUni ws="qvm-x-acl">maya</AUni> -<AUni ws="qvm-x-akh">maya</AUni> -<AUni ws="qvm-x-akl">maya</AUni> -<AUni ws="qvm-x-ame">maya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="15e72a77-1b84-488d-a293-f16031debf90" ownerguid="0448c78b-dbb7-417c-afc5-b227a1475825"> -<ExampleWords> -<AUni ws="en">pursue, hunt down, look for, post want ads</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What do police do to suspected criminals?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="15ea98c8-b0b3-409a-9160-904f3644757b" ownerguid="ebccb87f-8554-4b1e-b829-d964c9d9cb9b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="15eb1ed9-3235-49b1-88b2-6adccd0e1392" ownerguid="93b8bd61-137a-4ebc-b12f-52fa5d2b3ea4"> -<ExampleWords> -<AUni ws="en">weather vane, weathercock, windsock, wind gauge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What instruments are used to measure the direction or force of the wind?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="15efc4e9-9c5d-4b27-8599-eb1e19c606c4" ownerguid="01441207-4935-49a5-a192-16d949f5606c"> -<ExampleWords> -<AUni ws="en">playing field, track, court, arena, stadium, gym, gymnasium</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(18) What is the place called where sports are played?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="15efdc05-7001-4527-a185-9e05ab0fbadc" ownerguid="e0a8e1d9-c43e-4092-a8dc-476a3417924e"> -<ExampleWords> -<AUni ws="en">insecure, unsure of yourself</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe someone who is not confident?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="15f091e7-c0ee-44f3-ad2d-107b8405c82d" ownerguid="fba27833-d6f1-4c36-ac39-28902b29261b"> -<ExampleWords> -<AUni ws="en">similarly, like, such as, as</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words indicate that something happens or is done in a similar way?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="15f2cdb3-ccc9-4cd3-9753-c0f23c99349a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ura</AUni> -<AUni ws="qvm-x-acl">ura</AUni> -<AUni ws="qvm-x-akh">ura</AUni> -<AUni ws="qvm-x-akl">ura</AUni> -<AUni ws="qvm-x-ame">ura</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ura</AUni> -<AUni ws="qvm-x-acl">*ura</AUni> -<AUni ws="qvm-x-akh">*ura</AUni> -<AUni ws="qvm-x-akl">*ura</AUni> -<AUni ws="qvm-x-ame">*ura</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.269" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b473345a-2b96-4c6c-9f2c-bb45f8ef8390" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ura</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bcd4a7aa-ed50-44ef-bf2e-c7c0b261a165" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a1f2fd0e-070b-4dcd-b432-208445dddb0d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ura 
\entryTyp root 
\gENG down 
\gSPN abajo 
\e *ura 
\c N0 
\ach ura 
\akh ura 
\acl ura 
\akl ura 
\ame ura</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="15f7b62a-a17b-41ac-b56e-85186914954c" ownerguid="1f195274-5596-4e32-96a1-a1946fb984a7"> -<Form> -<AUni ws="qvm-x-ach">yarpä</AUni> -<AUni ws="qvm-x-acl">yarpä</AUni> -<AUni ws="qvm-x-akh">yarpä</AUni> -<AUni ws="qvm-x-akl">yarpä</AUni> -<AUni ws="qvm-x-ame">yarpä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="4d5106b0-9756-4fc2-a2e3-b3bb0373fd9b" t="r" /> -</PhoneEnv> -</rt> -<rt class="CmDomainQ" guid="15f86fce-817c-47dc-a64c-2ee724bb5813" ownerguid="9c21f9bd-a7e0-4989-99f1-7fa2853ab73c"> -<ExampleWords> -<AUni ws="en">barbershop, hair salon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a place where hair is cut?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="15fb022e-1b45-41e9-bd8a-09ddc9dc6acd" ownerguid="af4ac058-d4b3-4c7a-ade8-6af762d0486d"> -<Abbreviation> -<AUni ws="en">3.3.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being determined to do something--deciding to do something and not letting anything stop you.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25O Patience, Endurance, Perseverance; 25F Be Eager, Be Earnest, In a Devoted Manner</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Determined</AUni> -</Name> -<Questions> -<objsur guid="25676eb6-f325-49d5-8b5e-63a3a6ed11df" t="o" /> -<objsur guid="1bc5431e-4cc6-495e-97e4-8a8b3cf0e194" t="o" /> -<objsur guid="41c393f7-c1d2-4fd8-8e81-17a43a858d1f" t="o" /> -<objsur guid="1641ed2a-306d-415b-9d62-e2ed62814f84" t="o" /> -<objsur guid="35767d2d-07d0-4514-966d-bdafa6beddff" t="o" /> -<objsur guid="1a7daeb3-9ee2-49c0-bee6-472ff0d2e6e1" t="o" /> -<objsur guid="4c6a4336-e370-40db-941d-822c0958797b" t="o" /> -<objsur guid="96b7f510-9c54-4535-b104-c0831aea4424" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="85912845-21b0-41eb-8b8c-1f5c3d53df08" t="r" /> -<objsur guid="afc25fbb-9060-4af2-8225-3fddbab2227d" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="15fb7fc2-8b47-4d43-9dcc-556fa34faf99" ownerguid="a2fdb6a9-ed0c-4444-a101-5adab718b86b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="cc7de08a-5c5a-4bab-b24d-d6521d803c58" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="a1f23521-5d64-407c-b377-e3da90256f12" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="1600e6fb-3f39-4089-92f1-ee50bb163e08" ownerguid="0644f4da-c9fe-4239-bbe5-6efc85f98968"> -<ExampleWords> -<AUni ws="en">survey, surveyor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to finding the boundaries of land?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1602117d-13e8-4a37-996e-650033e1b6ab" ownerguid="3f621386-9be4-41ca-9b32-e8a0938bef3a"> -<Form> -<AUni ws="qvm-x-ach">gashpa</AUni> -<AUni ws="qvm-x-acl">gashpa</AUni> -<AUni ws="qvm-x-akh">qashpa</AUni> -<AUni ws="qvm-x-akl">qashpa</AUni> -<AUni ws="qvm-x-ame">qashpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="16043947-a1ba-4e68-ae47-4110e7def074" ownerguid="91187226-bd32-4ed9-9ceb-404f574fb16d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="16065fe9-f201-4265-a6c4-5fbd3e97176c" ownerguid="5c770098-2c91-4a9c-bfa0-a7ffaa871a7f"> -<ExampleWords> -<AUni ws="en">get a job, find work</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to getting a job?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="16081dd6-72e5-4826-b86d-958dd82a01c0" ownerguid="12fe5f6c-7f98-47ba-936a-bcd1065c2db3"> -<Abbreviation> -<AUni ws="en">7.2.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to moving in a downward direction or to moving to a lower place.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15K Come/Go Down, Descend</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Move down</AUni> -</Name> -<Questions> -<objsur guid="25fadb18-9465-4539-b2c8-04891f39458b" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b14db9f4-5e1d-4a2b-bec0-0d6bcb5b1a31" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="16084ddf-f9f3-48ea-a912-cb510e7bd75e" ownerguid="b14db9f4-5e1d-4a2b-bec0-0d6bcb5b1a31"> -<ExampleWords> -<AUni ws="en">fall down, fall over, have a fall, fall flat on your face, collapse, topple over, keel over, go head over heels, fall headlong</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to falling from a standing position?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="160939a9-1800-4c6a-be12-f0fa0d4add6a" ownerguid="b91aa766-e633-445e-9f15-f5e448e47140"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 9.10 Tayta Diosta cäsucogcunaga inteligentimi caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="160abd54-9380-48fc-93a7-13e17ad73574" ownerguid="0a75e517-fa73-453b-b77e-dc73f12fb569"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">genuine</AUni> -<AUni ws="es">legítimo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d6a1cbb1-5770-4b64-bbf1-5255b7f78b9e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="1610a4f0-ffe4-41ad-8fa2-90f1615ece63"> -<Custom name="Allos" /> -<Comment> -<AStr ws="en"> -<Run ws="en">used as an obligatory suffix for affix templates which require more derivation</Run> -</AStr> -</Comment> -<DateCreated val="2022-10-18 13:35:32.794" /> -<DateModified val="2022-10-21 17:49:34.843" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="o" /> -</LexemeForm> -<MorphoSyntaxAnalyses> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="o" /> -<objsur guid="ca07312d-49a1-4d8c-8591-706cb7d5a595" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a1eaf593-3379-47ea-bee4-15cbbda9775f" t="o" /> -<objsur guid="db6117c5-121c-433a-a891-e69950f55761" t="o" /> -</Senses> -</rt> -<rt class="MoStemMsa" guid="16139090-9d13-49af-9483-d71b8937abf1" ownerguid="99424280-0bd3-41c1-97e9-e557f6493d73"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="1613d33c-0798-49b5-9430-bf2964943504"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rica; rica:</AUni> -<AUni ws="qvm-x-acl">rica; rica:</AUni> -<AUni ws="qvm-x-akh">rika; rika:</AUni> -<AUni ws="qvm-x-akl">rika; rika:</AUni> -<AUni ws="qvm-x-ame">rika; rika:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rika:</AUni> -<AUni ws="qvm-x-acl">*rika:</AUni> -<AUni ws="qvm-x-akh">*rika:</AUni> -<AUni ws="qvm-x-akl">*rika:</AUni> -<AUni ws="qvm-x-ame">*rika:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.358" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5903113c-7b6f-4e0b-b673-5a12bb3ac301" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rika:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="67f1945e-2b10-4696-9c5a-3210419d7420" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0e736586-a814-4c3a-afe1-36ae912daafb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rika: 
\entryTyp root 
\gENG watch 
\gSPN mirar 
\e *rika: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach rica foreshortened 
\ach rica: 
\akh rika foreshortened 
\akh rika: 
\acl rica foreshortened 
\acl rica: 
\akl rika foreshortened 
\akl rika: 
\ame rika foreshortened 
\ame rika: 
\mcc *rika: / _ REF / _ PNCT2 / _ RECIP | RECIP es de LU</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="161500ab-1187-4492-acbe-c2e46a11ab4f" ownerguid="02d404d7-f3d7-492c-92a0-c6c9ff1a1908"> -<ExampleWords> -<AUni ws="en">meal, mealtime</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to a time when people eat?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1616e785-f1a5-4513-a577-b3dcb8e02130" ownerguid="a14efc51-5bf2-4dc5-9f6b-baa38a357ea4"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StTxtPara" guid="1618137b-b1de-4ef5-857c-1377113af4f5" ownerguid="1b3624a5-d4f7-4190-9e19-d074a59aa870"> -<Contents> -<Str> -<Run ws="qvm-x-akh">warmin</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="79e8a700-f3c2-45ba-8e87-f7c00c2b315e" t="o" /> -</Segments> -</rt> -<rt class="MoStemAllomorph" guid="16185290-b267-4829-9810-13d067f7f69a" ownerguid="f32012c3-bf5d-469d-8d57-55d3be0df90f"> -<Form> -<AUni ws="qvm-x-ach">pelya</AUni> -<AUni ws="qvm-x-acl">pelya</AUni> -<AUni ws="qvm-x-akh">pelya</AUni> -<AUni ws="qvm-x-akl">pelya</AUni> -<AUni ws="qvm-x-ame">pelya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="161b84d1-0aa1-49a4-bc45-b3a67bcde4b7" ownerguid="527aa1ab-a791-4671-80e6-388296e34537"> -<Form> -<AUni ws="qvm-x-ach">lacli</AUni> -<AUni ws="qvm-x-acl">lacli; lacli; lacle</AUni> -<AUni ws="qvm-x-akh">lakli</AUni> -<AUni ws="qvm-x-akl">lakli; lakli; lakle</AUni> -<AUni ws="qvm-x-ame">lakli</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="161ca329-a6d2-4185-a8d6-acec11f7aa52" ownerguid="b6e9b9c9-632b-48e7-99f7-fa53ebcb3bc5"> -<ExampleWords> -<AUni ws="en">knitting, knitwear</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something that has been knitted?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="161cae07-d1cb-467c-920f-62ba9039584c" ownerguid="6f01b67c-33a0-4ed3-8205-f868e97a1a3a"> -<Abbreviation> -<AUni ws="en">7.2.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.518" /> -<DateModified val="2022-9-23 16:55:8.518" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to traveling in space.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Travel in space</AUni> -</Name> -<Questions> -<objsur guid="f1d413a7-c6f0-4c31-939b-7fdda99a520a" t="o" /> -<objsur guid="38778f88-2694-41b0-8ae9-46debf588303" t="o" /> -<objsur guid="0a285055-2502-4b08-bde9-d984a3f284b4" t="o" /> -<objsur guid="8b14fcaa-c183-40e2-b4b0-1859ae2a0044" t="o" /> -<objsur guid="f87471d7-b5f0-4925-892c-913e42f43fe4" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="999581c4-1611-4acb-ae1b-5e6c1dfe6f0c" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="161d3e0a-3a9c-4526-abec-e5e3dfe733db" ownerguid="1b3c60f3-541a-4e64-9ff0-c4d6a7882a40"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a07dfe6b-73e8-4ed3-b16f-28d091025c84" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="161dd1e0-cb7d-404e-9a68-4adcedb7ec23"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maski</AUni> -<AUni ws="qvm-x-acl">maski</AUni> -<AUni ws="qvm-x-akh">maski</AUni> -<AUni ws="qvm-x-akl">maski</AUni> -<AUni ws="qvm-x-ame">maski</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+más.que</AUni> -<AUni ws="qvm-x-acl">+más.que</AUni> -<AUni ws="qvm-x-akh">+más.que</AUni> -<AUni ws="qvm-x-akl">+más.que</AUni> -<AUni ws="qvm-x-ame">+más.que</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.386" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="37be5e9a-7166-47bd-a49f-f59d4359332b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+más.que</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5b98b357-078e-4492-9c6f-d5c47c209005" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ae6ba304-209e-4fcb-b0dd-1d81adeff725" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +más.que 
\entryTyp root 
\gENG go.on 
\gSPN mas.que 
\e +más.que 
\c NOSUFF 
\mp +assimilated 
\ach maski 
\akh maski 
\acl maski 
\akl maski 
\ame maski 
\mp +FinalI</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="161e9c9e-26b3-4a34-8547-0110d48c8bc7" ownerguid="a64236c5-ef12-4544-bd67-a0ef28748feb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="161f5d7a-a1db-49a1-8d43-b6df887e4ff9" ownerguid="60675bce-0619-4961-b3f6-7b96ecce6e7b"> -<Form> -<AUni ws="qvm-x-ach">washquitu</AUni> -<AUni ws="qvm-x-acl">washquitu; washquitu; washquito</AUni> -<AUni ws="qvm-x-akh">washkitu</AUni> -<AUni ws="qvm-x-akl">washkitu; washkitu; washkito</AUni> -<AUni ws="qvm-x-ame">washkitu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="162003e9-aa58-40a6-83eb-5657220f82d4" ownerguid="ed269fb7-fd3c-467a-907e-d485731d9068"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="1621aac3-4ea9-4373-bf1b-40fce0ca7b5e" ownerguid="286ee16c-a218-43d5-bbac-ab15f80c3fcf"> -<Abbreviation> -<AUni ws="en">8.1.7.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.579" /> -<DateModified val="2022-9-23 16:55:8.579" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to having insufficient--to not have enough.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>57E Need, Lack</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Lack</AUni> -</Name> -<Questions> -<objsur guid="da5fbaa9-0c8d-4d61-bd4d-07d089433f2c" t="o" /> -<objsur guid="af6405b4-1127-4be0-8450-1bd71d2453bb" t="o" /> -<objsur guid="52197ac2-6fcf-467b-9c36-654f1392a618" t="o" /> -<objsur guid="ad12ad45-5ab1-458b-a987-e97b5100b688" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="1621fa6b-5439-4606-b32b-b2f43553281b" ownerguid="284433df-7b37-4e63-a614-78520c483213"> -<ExampleWords> -<AUni ws="en">run, gallop, trot, canter, buck, kick, race, charge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) How do horses move?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="162238c7-09b4-4c1e-b666-63e562b29298"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">confesa</AUni> -<AUni ws="qvm-x-acl">confesa</AUni> -<AUni ws="qvm-x-akh">confesa</AUni> -<AUni ws="qvm-x-akl">confesa</AUni> -<AUni ws="qvm-x-ame">confesa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+confesar</AUni> -<AUni ws="qvm-x-acl">+confesar</AUni> -<AUni ws="qvm-x-akh">+confesar</AUni> -<AUni ws="qvm-x-akl">+confesar</AUni> -<AUni ws="qvm-x-ame">+confesar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.170" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0cf9393a-4c88-4bf6-bbbf-df6036a80335" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+confesar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7689d542-cbfb-4134-9b4b-50bd32a8df19" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7f2b4a53-a64a-4663-9ca5-8765ede8bd2c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +confesar 
\entryTyp root 
\gENG 
\gSPN 
\e +confesar 
\c V1 
\ach confesa 
\akh confesa 
\acl confesa 
\akl confesa 
\ame confesa 
\i DAN 9.4 Israel mayëcuna jutsa rurashganta confesacurmi Diosta manacorgä caynog nir:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1623895c-b419-43c7-a5c1-4c42a5577b4a" ownerguid="3df7d174-83d1-4e17-890e-1272e171ca41"> -<ExampleWords> -<AUni ws="en">metal, metallic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to metal?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="16280f85-24ce-44de-8888-adb2732dabd0" ownerguid="b790470f-ed4e-42ac-932d-cd15ef701b03"> -<ExampleWords> -<AUni ws="en">be impure, defiled, polluted, unwashed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that has not been purified?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="16289511-0f25-4448-a08a-b8eff09ce3a2" ownerguid="ef943f35-c22e-4bac-8925-5e3eb9c5a286"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">boots</AUni> -<AUni ws="es">botas</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ff0de241-b514-4d47-9963-4d842419b117" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoAffixAllomorph" guid="16294e64-8fd6-44f8-8863-2e666718d141" ownerguid="88843228-3d25-4192-af4b-b368a7803382"> -<Form> -<AUni ws="qvm-x-ach">niqui</AUni> -<AUni ws="qvm-x-acl">niqui</AUni> -<AUni ws="qvm-x-akh">niki</AUni> -<AUni ws="qvm-x-akl">niki</AUni> -<AUni ws="qvm-x-ame">niki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="35058c7a-447a-4ee8-89bd-323da24bf7c5" t="r" /> -</PhoneEnv> -</rt> -<rt class="LexEntry" guid="162ba30f-5ff4-4bcc-8246-3b7c97165d3f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ja:rra</AUni> -<AUni ws="qvm-x-acl">ja:rra</AUni> -<AUni ws="qvm-x-akh">ja:rra</AUni> -<AUni ws="qvm-x-akl">ja:rra</AUni> -<AUni ws="qvm-x-ame">ja:rra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+jarra</AUni> -<AUni ws="qvm-x-acl">+jarra</AUni> -<AUni ws="qvm-x-akh">+jarra</AUni> -<AUni ws="qvm-x-akl">+jarra</AUni> -<AUni ws="qvm-x-ame">+jarra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.882" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fb7953a7-d568-40ca-ae9c-69f7548cca9e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+jarra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6a91b188-fdd6-4575-a0c0-e2e8b5ae8a4b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="95a84b13-901f-4b91-85cc-fb356c460105" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +jarra 
\entryTyp root 
\gENG 
\gSPN 
\e +jarra 
\c N0 
\ach ja:rra 
\akh ja:rra 
\acl ja:rra 
\akl ja:rra 
\ame ja:rra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="162d7155-0968-4540-a829-2ced4996142b" ownerguid="98ce83bf-0aac-4133-8c84-e88cd7a37442"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">music</AUni> -<AUni ws="es">música</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="80b70805-0a91-47c2-9018-726e0b426bd7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="162dbb2a-1a09-4390-9ac1-fe568d0d97fb" ownerguid="093b3d2a-e0bc-4885-ac70-bf5125e201fe"> -<Form> -<AUni ws="qvm-x-ach">administrador</AUni> -<AUni ws="qvm-x-acl">administrador</AUni> -<AUni ws="qvm-x-akh">administrador</AUni> -<AUni ws="qvm-x-akl">administrador</AUni> -<AUni ws="qvm-x-ame">administrador</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="1635ba27-1e11-4229-8ed2-ecc25391985c" ownerguid="03894f92-24c9-4c9f-a977-dfeb641fd13a"> -<Form> -<AUni ws="qvm-x-ach">suerti; suerte</AUni> -<AUni ws="qvm-x-acl">suerti; suerti; suerte</AUni> -<AUni ws="qvm-x-akh">suerti; suerte</AUni> -<AUni ws="qvm-x-akl">suerti; suerti; suerte</AUni> -<AUni ws="qvm-x-ame">suerti; suerte</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiGloss" guid="163823b9-4b41-49fd-bd8e-a8c0e35db361" ownerguid="6f7aed1c-c4a2-4815-aec1-707d6d85def1"> -<Form> -<AUni ws="es">*ari.n</AUni> -</Form> -</rt> -<rt class="WfiMorphBundle" guid="16386033-f882-43ca-99d8-e661ca0fdd86" ownerguid="432acf5a-1d31-4f9c-8b2d-674b5dcec0b4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="1638e11e-a141-4f12-8c67-ea8cfaac398f" ownerguid="913347dd-d78a-42eb-8d0a-4c8ecb22f28b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pour</AUni> -<AUni ws="es">trasegar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aecd7a7e-100b-4ab0-9f15-835643b9eead" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="Segment" guid="1638fef8-ea1e-4b44-9786-25cf6737df89" ownerguid="7a3430d7-9c73-48fa-8802-69a58352bb0e"> -<Analyses> -<objsur guid="eee88182-8ede-4ded-b091-1ae920852d13" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexSense" guid="163b60d5-b72d-47f0-83ab-2d654b4938ab" ownerguid="87260e06-f99e-40f4-aaa8-7404dfc80216"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="b6e20317-2753-4f25-92c0-170ad46c60a3" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="e776ea6c-3687-495c-981d-188298228af8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="163d23dc-779d-4b67-8097-e3c21fa5d27c" ownerguid="728bbc7c-e5b3-47d8-8532-72239e5c88bb"> -<ExampleWords> -<AUni ws="en">summarize, summary, synopsis, overview</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a brief description of the major points or features of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="163dc981-4a06-4228-83ae-c5ed6a2f6d0b" ownerguid="5caafec8-c8f6-4d4f-9e6e-eb75154e76e2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="5b124e3c-fa78-4450-811d-111125ef6c38" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">godfather</AUni> -<AUni ws="es">compadre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="76b54d1b-cc27-4414-a41b-3d64d33ac704" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="163f451f-0ca9-4a43-98b6-c9aa884a6bb7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tena:za</AUni> -<AUni ws="qvm-x-acl">tena:za</AUni> -<AUni ws="qvm-x-akh">tena:za</AUni> -<AUni ws="qvm-x-akl">tena:za</AUni> -<AUni ws="qvm-x-ame">tena:za</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tenaza</AUni> -<AUni ws="qvm-x-acl">+tenaza</AUni> -<AUni ws="qvm-x-akh">+tenaza</AUni> -<AUni ws="qvm-x-akl">+tenaza</AUni> -<AUni ws="qvm-x-ame">+tenaza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.863" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="178d83b8-1021-4d29-bb8b-80ee8e72feda" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tenaza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="efab1cda-0c15-4d7a-8c99-aeab9b2f391f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0b4ab536-0e00-4b1b-83d7-8e92b67150b7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tenaza 
\entryTyp root 
\gENG 
\gSPN 
\e +tenaza 
\c N0 
\ach tena:za 
\akh tena:za 
\acl tena:za 
\akl tena:za 
\ame tena:za</Run> -</AStr> -</Custom> -</rt> -<rt class="StStyle" guid="164123a0-ca12-4c44-bd69-d5fb9d4b1a0b" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="14" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Dictionary-SenseNumber</Uni> -</Name> -<Rules> -<Prop bold="invert"></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<Usage> -<AUni ws="en">The number before each sense in an entry.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="MoStemAllomorph" guid="1641bc9a-4081-4706-865d-7eee94fa3d58" ownerguid="d0f847c9-44de-43a8-bdb6-cc46bb666a4a"> -<Form> -<AUni ws="qvm-x-ach">elgu; elgü</AUni> -<AUni ws="qvm-x-acl">elgö; elgu; elgo</AUni> -<AUni ws="qvm-x-akh">elqu; elqü</AUni> -<AUni ws="qvm-x-akl">elqö; elqu; elqo</AUni> -<AUni ws="qvm-x-ame">ilqu; ilqü</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1641ed2a-306d-415b-9d62-e2ed62814f84" ownerguid="15fb022e-1b45-41e9-bd8a-09ddc9dc6acd"> -<ExampleWords> -<AUni ws="en">go to any lengths, be hell-bent on, whatever the cost, ruthless, stop at nothing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to being so determined that you are even willing to do something bad?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1642d691-4bb4-47cd-b184-967e78330e3d" ownerguid="758bba23-3976-4c2c-a1da-7b0849b7dd2a"> -<Form> -<AUni ws="qvm-x-ach">jipashita</AUni> -<AUni ws="qvm-x-acl">jipashita</AUni> -<AUni ws="qvm-x-akh">jipashita</AUni> -<AUni ws="qvm-x-akl">jipashita</AUni> -<AUni ws="qvm-x-ame">hipashita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="164759d4-ed58-433c-9d8d-c2f9d1847e30"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ena:nu</AUni> -<AUni ws="qvm-x-acl">ena:nu; ena:nu; ena:no</AUni> -<AUni ws="qvm-x-akh">ena:nu</AUni> -<AUni ws="qvm-x-akl">ena:nu; ena:nu; ena:no</AUni> -<AUni ws="qvm-x-ame">ena:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+enano</AUni> -<AUni ws="qvm-x-acl">+enano</AUni> -<AUni ws="qvm-x-akh">+enano</AUni> -<AUni ws="qvm-x-akl">+enano</AUni> -<AUni ws="qvm-x-ame">+enano</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.457" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7fdd7e8d-0454-45a0-8bf5-45175a165fad" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+enano</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="047af8be-5a83-437b-82f7-a93ac46d2b9e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cad348c3-306c-4a2c-b61b-63dbe03e9d03" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +enano 
\entryTyp root 
\gENG dwarf 
\gSPN enano 
\e +enano 
\c N0 
\ach ena:nu 
\akh ena:nu 
\acl ena:nu / _# 
\acl ena:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ena:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ena:nu / _# 
\akl ena:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ena:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ena:nu 
\i Lev 21.20</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1647e90f-7869-4c90-bb70-2e6c55739e16" ownerguid="9b13abd6-15b7-4ba6-9106-e0fa8e831712"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hoop</AUni> -<AUni ws="es">aro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fb18da1f-b2e6-4afe-bb20-0a55fb1f3b25" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="1648e1ca-f0fe-437a-a87d-15d44b5a0641" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<ExampleWords> -<AUni ws="en">walk with a spring in your step, walk jauntily, swagger, flounce, mince, prance, saunter, strut</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to walking in various manners?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="164bdfee-b41b-40b7-bd8a-1aeda7cba9fd" ownerguid="6e71a43a-5fdf-4607-adde-4aec7a9c5871"> -<Form> -<AUni ws="qvm-x-ach">guenway</AUni> -<AUni ws="qvm-x-acl">guenway</AUni> -<AUni ws="qvm-x-akh">qenway</AUni> -<AUni ws="qvm-x-akl">qenway</AUni> -<AUni ws="qvm-x-ame">qinway</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="16513e47-19c4-4905-9b66-54c96ed85034" ownerguid="04543543-4c3d-4d71-aa87-53191ef3b7b0"> -<ExampleWords> -<AUni ws="en">immediate, right away, in no time at all</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that someone does something immediately?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="165215ef-3878-450b-b46e-ffaa02501295" ownerguid="b4aa4bbd-8abf-4503-96e4-05c75efd23d5"> -<ExampleWords> -<AUni ws="en">temperature, hot, warm, heat, cold, chilly, crisp, mild, unseasonably warm/cold, scorching, heat wave, cold spell, cold snap, frigid, freezing, be a chill in the air</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe the temperature?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="165269c3-1d48-499c-89ff-650179c2aae2" ownerguid="7cbbee8f-1f89-43e7-bfc0-a031a97b234e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="16543cb9-ae82-4e0a-be9d-de21cdd3a1a4" ownerguid="07f3e3d0-92f8-4873-802a-1b033a5b9c3f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="1655b993-f2ba-44d2-b6c8-d21f1ea8a1b8" ownerguid="4f2141b0-e7ec-4564-acf1-8ac376a7dea3"> -<Form> -<AUni ws="qvm-x-ach">tawa</AUni> -<AUni ws="qvm-x-acl">tawa</AUni> -<AUni ws="qvm-x-akh">tawa</AUni> -<AUni ws="qvm-x-akl">tawa</AUni> -<AUni ws="qvm-x-ame">tawa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1658315f-18e2-4b9e-a5fc-e1f37f8f7c62" ownerguid="f352a437-58f2-4920-aec3-eda8041f7447"> -<ExampleWords> -<AUni ws="en">debut, premiere, maiden (voyage)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the first time someone does something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="16588cd3-ead4-49f3-b019-60c35f3543a0" ownerguid="e28a8997-c1de-489b-9e34-d81a2349a530"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hedgehog</AUni> -<AUni ws="es">erizo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="946235f4-08ce-4e7f-bbd4-724022de7e8b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="165ac222-4741-4906-aaae-9810b043690c" ownerguid="85646774-8145-4553-b8a7-6927cd077908"> -<ExampleWords> -<AUni ws="en">herd instinct</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What other words relate to groups of animals?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="165f1fde-cf7a-4519-b023-448cb8c79c3c" ownerguid="c01bbcef-7d89-4753-bafd-3a7f23648982"> -<ExampleWords> -<AUni ws="en">dentist, dentistry, oral surgeon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a doctor who treats teeth?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="16601d9f-005e-45df-b29c-0a8540d998ce" ownerguid="7b513a02-c3ae-4243-9410-16854d911258"> -<ExampleWords> -<AUni ws="en">name (v), call, be christened, give a name to, choose a name, pick a name, call him/her 'name'</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to giving someone a name?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1660758f-45f2-4914-9c91-ad505fbc8a64" ownerguid="bb8ddf5f-707d-46c0-aff4-45683d26fd68"> -<ExampleWords> -<AUni ws="en">(no words in English)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate the object of a sentence?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="166174fd-1bf2-4914-94b8-06392b136d20" ownerguid="cf337287-c9fa-43d2-93c4-284f45e262c0"> -<ExampleWords> -<AUni ws="en">liver disease, hepatitis, jaundice, cirrhosis</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to a disease of the liver?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1665ac30-2ad5-4ac8-89cf-cf95617a1337" ownerguid="dc1a2c6f-1b32-4631-8823-36dacc8cb7bb"> -<ExampleWords> -<AUni ws="en">warm, heat, dry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What refer to the sun heating things?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="16697f3a-dd88-4361-b71d-4b7360588190" ownerguid="874c2463-a6f7-410a-86e6-f77dfb4ef4a3"> -<Form> -<AUni ws="qvm-x-ach">pacäpa</AUni> -<AUni ws="qvm-x-acl">pacäpa</AUni> -<AUni ws="qvm-x-akh">pakäpa</AUni> -<AUni ws="qvm-x-akl">pakäpa</AUni> -<AUni ws="qvm-x-ame">pakäpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="166a25c9-61cb-4b39-b354-e792ba184d98" ownerguid="c0d903bf-6502-45dd-9dd8-cff7f022c696"> -<ExampleWords> -<AUni ws="en">recount, renumber</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to determining the quantity of something a second time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="166e3e47-9a53-483f-9ea3-c6bea963d724" ownerguid="e0a8e1d9-c43e-4092-a8dc-476a3417924e"> -<ExampleWords> -<AUni ws="en">demoralize, shake someone's confidence, lose confidence</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to feeling less confident?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="166e4b97-7c7a-4eea-9b23-f75f90d8eeb1" ownerguid="aef26d30-dcbb-4a8c-b41b-866a8f6fec65"> -<Form> -<AUni ws="qvm-x-ach">lagui</AUni> -<AUni ws="qvm-x-acl">lagui; lagui; lague</AUni> -<AUni ws="qvm-x-akh">laqi</AUni> -<AUni ws="qvm-x-akl">laqi; laqi; laqe</AUni> -<AUni ws="qvm-x-ame">laqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="16718756-34bb-472a-ac89-289c986c5763" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<ExampleWords> -<AUni ws="en">walk carefully, watch your step, tread, pick your way, edge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to walking carefully?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1673f65d-9953-47de-9d96-654ce5e0a59a" ownerguid="b43fae8e-6b19-42ed-98cd-d363174b9cf8"> -<ExampleWords> -<AUni ws="en">dwarf, midget</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something that is small?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1674883d-c851-471f-b894-bbfd6ef28e77"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wara</AUni> -<AUni ws="qvm-x-acl">wara</AUni> -<AUni ws="qvm-x-akh">wara</AUni> -<AUni ws="qvm-x-akl">wara</AUni> -<AUni ws="qvm-x-ame">wara</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wara.v</AUni> -<AUni ws="qvm-x-acl">*wara.v</AUni> -<AUni ws="qvm-x-akh">*wara.v</AUni> -<AUni ws="qvm-x-akl">*wara.v</AUni> -<AUni ws="qvm-x-ame">*wara.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.526" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="37eb280d-ba91-44ce-9128-d049965367a9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wara.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f6e14fb1-6559-4667-8f14-a5f025efd226" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9729a818-219a-4faf-800a-79ba9ec9328b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wara.v 
\entryTyp root 
\gENG to.dawn 
\gSPN amanecer 
\e *wara.v 
\c V2 
\ach wara 
\akh wara 
\acl wara 
\akl wara 
\ame wara 
\mcc *wara.v / ~_ [y] (DIR.C) # 
\mcc *wara.v / ~_ REF 
\mcc *wara.v / ~_ PRMT 
\mcc *wara.v / ~_ INF (JUST) OBJ 
\mcc *wara.v /~_ INF 3P.C 
\mcc *wara.v / ~_ IN 1O [y] 
\mcc *wara.v / ~_ INF LIM2 
\mcc *wara.v / ~_ PL 
\mcc *wara.v / ~_ UP 
\mcc *wara.v / ~_ INF TOP</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1676b69a-9f83-499e-9707-8af5c395508d" ownerguid="e53c913f-91f1-4228-a845-7bfdfc80a1a8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="167a0377-df52-4b29-8a20-28e4cc67f5c1" ownerguid="684f9b1f-2d09-4caf-b20a-da64cd10841c"> -<Form> -<AUni ws="qvm-x-ach">vïga</AUni> -<AUni ws="qvm-x-acl">vïga</AUni> -<AUni ws="qvm-x-akh">vïga</AUni> -<AUni ws="qvm-x-akl">vïga</AUni> -<AUni ws="qvm-x-ame">vïga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="167a5bae-f06f-424c-bfcb-ec547a076c8d" ownerguid="79b580ff-64a7-445b-abcb-b49b9093779c"> -<Abbreviation> -<AUni ws="en">6.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to tending a herd in the fields.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Tend herds in fields</AUni> -</Name> -<OcmCodes> -<Uni>233 Pastoral Activities</Uni> -</OcmCodes> -<Questions> -<objsur guid="f64e6e08-528b-4b8a-9098-e55964f2b951" t="o" /> -<objsur guid="f576fbe1-2a44-4111-a8fc-2bc38942f348" t="o" /> -<objsur guid="af5dc9a0-b774-4854-a82d-9d2597f14195" t="o" /> -<objsur guid="4a858aba-c0f5-4f42-8114-2fff59df247f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="167bfba5-0785-4bb5-a083-3ffbefa57897" ownerguid="a42db5b4-6317-4d3f-beff-cb92dbaca914"> -<Abbreviation> -<AUni ws="en">3.2.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.101" /> -<DateModified val="2022-9-23 16:55:8.101" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the process of determining the truth or falsehood of something, or for determining the nature or value of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>30G To Distinguish, To Evaluate, To Judge</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Evaluate, test</AUni> -</Name> -<OcmCodes> -<Uni>125 Tests and Schedules Administered In the Field; 208 Public Opinion</Uni> -</OcmCodes> -<Questions> -<objsur guid="42a5ab4e-ed0a-4bf5-b04e-f2229eeba18d" t="o" /> -<objsur guid="a5672516-ed80-4ede-821f-ef437ab9caac" t="o" /> -<objsur guid="7f1e4971-c671-45e0-a800-0d1293c7ec09" t="o" /> -<objsur guid="38b426ec-1bb5-4ae2-a196-ddd92b8a9b2d" t="o" /> -<objsur guid="821e5928-8d5f-499a-a25f-828ab0351fc1" t="o" /> -<objsur guid="30d285d2-2a74-4032-b88c-807f3281df12" t="o" /> -<objsur guid="c5137cc6-9cbb-46d1-b97b-8ac70ea92cbf" t="o" /> -<objsur guid="5a919000-e5cc-4f0a-a66d-44e0dfe070b5" t="o" /> -<objsur guid="79d35a3a-320a-4550-98b5-d599c670a5da" t="o" /> -<objsur guid="086d54df-5229-4820-a1d4-6db06905bd4c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="167c8e3e-b0eb-4e42-8096-97b614616ca8" ownerguid="730fd40b-346e-4330-8a6e-76b3e17a332e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 25.10 Jucta wilapaptiquega pengaymanmi churashunquipag. Tsaynogpami malfämacho quëdanquipag.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="167d21c6-a28e-4309-a28e-a1ce0d7c5f14"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">inciensu; incienso</AUni> -<AUni ws="qvm-x-acl">inciensu; inciensu; incienso</AUni> -<AUni ws="qvm-x-akh">inciensu; incienso</AUni> -<AUni ws="qvm-x-akl">inciensu; inciensu; incienso</AUni> -<AUni ws="qvm-x-ame">inciensu; incienso</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+incienso.1</AUni> -<AUni ws="qvm-x-acl">+incienso.1</AUni> -<AUni ws="qvm-x-akh">+incienso.1</AUni> -<AUni ws="qvm-x-akl">+incienso.1</AUni> -<AUni ws="qvm-x-ame">+incienso.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.812" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1b6286ec-064c-43e8-93f1-7b4303acba83" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+incienso.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b31acbe5-d1fe-4d81-9935-1eaf364f2b0f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="508a2845-36ba-4b60-a0a8-23a3e0db91bb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +incienso.1 
\entryTyp root 
\gENG incense 
\gSPN incienso.1 
\e +incienso.1 
\c N0 
\ach inciensu / ~_# 
\ach incienso / _# 
\akh inciensu / ~_# 
\akh incienso / _# 
\acl inciensu / ~_# 
\acl inciensu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl incienso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl inciensu / ~_# 
\akl inciensu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl incienso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame inciensu / ~_# 
\ame incienso / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="16805469-5fd7-403f-b5f6-a3cb87531a55" ownerguid="ad852fb4-7c09-4628-81bc-d28b7174cc0e"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="1681e7df-f802-4cc2-88ad-61118ef035aa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gosgutay</AUni> -<AUni ws="qvm-x-acl">gosgutay</AUni> -<AUni ws="qvm-x-akh">qosqutay</AUni> -<AUni ws="qvm-x-akl">qosqutay</AUni> -<AUni ws="qvm-x-ame">qusqutay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qusqutay</AUni> -<AUni ws="qvm-x-acl">*qusqutay</AUni> -<AUni ws="qvm-x-akh">*qusqutay</AUni> -<AUni ws="qvm-x-akl">*qusqutay</AUni> -<AUni ws="qvm-x-ame">*qusqutay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.900" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e7ed02ad-b083-4614-b55c-1487c7914e97" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qusqutay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5639de46-d59d-4697-a944-97bd2d86dcd4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0e3ef08a-d8e9-45ab-b93c-5f7d9d50666e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qusqutay 
\entryTyp root 
\gENG haze 
\gSPN niebla.espesa 
\e *qusqutay 
\c N0 
\mp +FinalC 
\ach gosgutay 
\akh qosqutay 
\acl gosgutay 
\akl qosqutay 
\ame qusqutay</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1682cb76-5016-41c5-96fd-4719d16d7929" ownerguid="db6bb851-b6cf-41b3-9905-e56ea5b50686"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shit</AUni> -<AUni ws="es">mierda</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3f637c7c-e845-49fa-8af5-6b9a1dab62da" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="16835a46-c7fb-4cbf-9a93-3b5488e0d42a" ownerguid="85af0462-0f6d-45c1-8bbd-f26d918401b0"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="8912e6ef-da0f-4372-aa04-f21b9c6bfe55" t="o" /> -<objsur guid="942c4d5d-3c72-4872-b4fa-2df95f7fbeaa" t="o" /> -<objsur guid="ed6ec499-23ce-456b-bf15-d3bcd4ef9b4f" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="16846f04-3fb4-4a8f-baed-ebd337962ac0" ownerguid="2d37e83c-b72e-463d-bd58-22d4dc895241"> -<Form> -<AUni ws="qvm-x-ach">inti</AUni> -<AUni ws="qvm-x-acl">inti; inti; inte</AUni> -<AUni ws="qvm-x-akh">inti</AUni> -<AUni ws="qvm-x-akl">inti; inti; inte</AUni> -<AUni ws="qvm-x-ame">inti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1684d474-ffcf-4118-85b9-693c408d9f7f" ownerguid="50eb32a2-6dbb-4b7c-b370-aacdcfeaf5fc"> -<ExampleWords> -<AUni ws="en">enjoyment, pleasure, ecstasy, exhilaration, satisfaction</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the feeling you get when you enjoy doing something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1686007f-f1f3-478c-997a-17555dc2d7d1" ownerguid="1bb79229-b368-4a4e-9acd-6ddaf5bbfa65"> -<Form> -<AUni ws="qvm-x-ach">doncëlla</AUni> -<AUni ws="qvm-x-acl">doncëlla</AUni> -<AUni ws="qvm-x-akh">doncëlla</AUni> -<AUni ws="qvm-x-akl">doncëlla</AUni> -<AUni ws="qvm-x-ame">doncëlla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="1688280e-27c4-47a8-87b7-8fe31b174ab8" ownerguid="6137239a-b469-46be-b7cb-b9ac22fcc195"> -<Abbreviation> -<AUni ws="en">3.6.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.184" /> -<DateModified val="2022-9-23 16:55:8.184" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a test.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Test</AUni> -</Name> -<Questions> -<objsur guid="0e00798c-7d4e-4386-9f61-e4888d6db939" t="o" /> -<objsur guid="77971878-9ac9-448a-bb18-0211a520282d" t="o" /> -<objsur guid="10a043b0-af01-41a3-ac31-90a7ab11116f" t="o" /> -<objsur guid="e1678579-c8fb-48d6-87bd-c572534507e6" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="1689a701-427f-425b-ad78-09ef141cd13b" ownerguid="987c6c27-3982-4ce5-9938-e578b61ebfe3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">swindle</AUni> -<AUni ws="es">saquear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f4f06e1e-8a5f-4663-b43b-b2e0c68a8980" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="1689ac96-1159-4575-bf5f-d16345f9496c" ownerguid="14ad95ad-50fc-450f-b44d-4273df0b1e8b"> -<Abbreviation> -<AUni ws="en">8.4.1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.640" /> -<DateModified val="2022-9-23 16:55:8.640" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to an era--a very long period of time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Era</AUni> -</Name> -<Questions> -<objsur guid="ef3814fe-5002-4b10-8e1d-a61a85a97628" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="1689d952-fd70-4fbf-95ee-1ea7e8ab0150" ownerguid="aba3f7f1-9e13-4b48-acbb-3bf6d6bfa0e8"> -<ExampleWords> -<AUni ws="en">apothecary, avoirdupois, metric, troy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe a system of weights?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="168faaf0-7842-459e-a741-b5e337b0e1f0" ownerguid="1ecdd7ca-47cf-4594-91fa-23b6f68e18a9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cramp</AUni> -<AUni ws="es">calambre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="50f9fc8b-72c2-4833-a848-4ee474565a3b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="169746f5-c4c1-4f35-a781-0e77ef3472b6" ownerguid="7bcb6ae1-23bf-4034-b883-5f8bb779cc36"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="b2b8c6ca-f5d5-48b7-83a6-3c38960fc5a5" t="o" /> -<objsur guid="583cdc50-423c-499d-93dd-85f690c2a3a8" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="6e945b87-e9e3-4349-8eac-e8703cd95bc6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="1697d580-784f-4864-a2b5-5567e7f42c0c" ownerguid="3a94ef8b-8532-447c-a7ae-87ef105cea49"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1699803e-fe90-44ed-8fe1-c227e384fc19" ownerguid="e9fdc131-addb-4db6-8f79-ae0044e1eb81"> -<ExampleWords> -<AUni ws="en">inspired, holy, scriptural, biblical, sacred, prophetic, apostolic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe the sacred writings or a text from the sacred writings?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="169aeade-f11c-4f0c-9f28-5c4ed2559159" ownerguid="f858278a-2727-4403-9cf0-565cdececb1e"> -<Question> -<AUni ws="en">(9) meaning label: counterfactual</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="169b0e83-bfcd-4841-8948-0550b91a028c" ownerguid="91070bb9-fcac-4748-8f10-2c80428657d1"> -<Form> -<AUni ws="qvm-x-ach">lapi</AUni> -<AUni ws="qvm-x-acl">lapi; lape</AUni> -<AUni ws="qvm-x-akh">lapi</AUni> -<AUni ws="qvm-x-akl">lapi; lape</AUni> -<AUni ws="qvm-x-ame">lapi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="169b5708-3cc2-421a-a6c0-3de3a3b4491a" ownerguid="4eb41e40-4115-435a-934a-5d91022a29dc"> -<ExampleWords> -<AUni ws="en">debt, indebtedness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the money you owe?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="169c0993-d49f-4b65-995c-20681c85c82b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">toa:lla</AUni> -<AUni ws="qvm-x-acl">toa:lla</AUni> -<AUni ws="qvm-x-akh">toa:lla</AUni> -<AUni ws="qvm-x-akl">toa:lla</AUni> -<AUni ws="qvm-x-ame">toa:lla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+toalla</AUni> -<AUni ws="qvm-x-acl">+toalla</AUni> -<AUni ws="qvm-x-akh">+toalla</AUni> -<AUni ws="qvm-x-akl">+toalla</AUni> -<AUni ws="qvm-x-ame">+toalla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.936" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d51f2962-6d73-4e12-b1c6-423891d83969" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+toalla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d54c380b-5218-49d6-a1e2-540113f7bc15" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cc910b46-65ec-428f-9161-f2daeceba7b2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +toalla 
\entryTyp root 
\gENG towel 
\gSPN toalla 
\e +toalla 
\c N0 
\ach toa:lla 
\akh toa:lla 
\acl toa:lla 
\akl toa:lla 
\ame toa:lla</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="169d446b-d94b-42ca-bfd9-c0c9ef4823ba" ownerguid="db72da84-2cb0-480a-a0d2-0868132d4702"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="169d6e3c-34c2-4a4c-b65b-5bac05b82040"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nina</AUni> -<AUni ws="qvm-x-acl">nina</AUni> -<AUni ws="qvm-x-akh">nina</AUni> -<AUni ws="qvm-x-akl">nina</AUni> -<AUni ws="qvm-x-ame">nina</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*nina</AUni> -<AUni ws="qvm-x-acl">*nina</AUni> -<AUni ws="qvm-x-akh">*nina</AUni> -<AUni ws="qvm-x-akl">*nina</AUni> -<AUni ws="qvm-x-ame">*nina</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.558" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9592ea37-5d72-422b-b578-d3d7cf3eb70c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*nina</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="83410c4d-b0ef-4e3f-8f88-7543121065be" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="06ec1e12-9cdd-4178-88c8-527e3a4d9953" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *nina 
\entryTyp root 
\gENG fire 
\gSPN fuego 
\e *nina 
\c N0 
\ach nina 
\akh nina 
\acl nina 
\akl nina 
\ame nina 
\mcc *nina / ~_ 3P.V 
\mcc *nina / ~_ HUMAN 
\mcc *nina / ~_ DO1</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="16a0bd35-189b-40af-a8ef-34cd12a5ab61"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Kaypita</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="16a16ac2-b650-4332-ba23-e248c781a87d" ownerguid="42b3e6b1-7de0-4ff8-8c4e-94696de815c3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="49879410-4626-4f3c-96c0-d5a48f199317" t="r" /> -</Morph> -<Msa> -<objsur guid="3b914428-8cc9-47af-9f9c-c2de114360c0" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="16a24ba6-e316-40f3-944b-91f6a7bdf3ea" ownerguid="d7cd6668-9bae-4d42-bca4-f870f4885424"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mu; mo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mu; mo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="45846476-db8b-4639-bef8-780e6651a907" t="r" /> -</Morph> -<Msa> -<objsur guid="84097b64-d9df-441f-a9d3-d11d4b9d9ea0" t="r" /> -</Msa> -<Sense> -<objsur guid="788609d7-ea80-4813-aabb-8837acc21fd4" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="16a3f930-f98e-4ae9-b729-42b55def6b6b" ownerguid="1447278f-efff-4807-b9ea-c487dea1ba5e"> -<ExampleWords> -<AUni ws="en">seed, grain, cereal, bean, legume, nut</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to seeds that are eaten?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="16aafcd5-aacc-436e-9ff9-7e51d7a29d6a" ownerguid="daefd275-98e3-4534-a991-c7d396b54c69"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">I'll get around to it someday.; I'll do it later.</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(3) What do people say when they postpone doing something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="16ad9b0c-8950-47fd-9367-a43595b1ee64" ownerguid="ac396d29-a20a-4685-b8ed-f3e91203e148"> -<Form> -<AUni ws="qvm-x-ach">iscu</AUni> -<AUni ws="qvm-x-acl">iscu; iscu; isco</AUni> -<AUni ws="qvm-x-akh">isku</AUni> -<AUni ws="qvm-x-akl">isku; isku; isko</AUni> -<AUni ws="qvm-x-ame">isku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="16aeb96b-840c-49a2-8230-2a09a1cce1ca" ownerguid="0296465a-25de-4af6-a122-376956b4b452"> -<ExampleWords> -<AUni ws="en">pronoun</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to the class of pronouns?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="16b034f8-8365-4628-9775-8ef1e117a1f8" ownerguid="cbc0a8f5-9cba-41d2-a7e5-565fbf09c8c4"> -<ExampleWords> -<AUni ws="en">Hurrah! Hooray! Yeah! Three cheers! Hallelujah! Yippee! Yahoo!</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What do people say when they are happy?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="16b057a9-e796-4f0e-acce-026cbcb59bdf" ownerguid="dbbc964c-d7dd-4ed5-995f-fa3c7c8c9f29"> -<Form> -<AUni ws="qvm-x-ach">viäji; viäji</AUni> -<AUni ws="qvm-x-acl">viäji; viäji; viäje</AUni> -<AUni ws="qvm-x-akh">viäji; viäji</AUni> -<AUni ws="qvm-x-akl">viäji; viäji; viäje</AUni> -<AUni ws="qvm-x-ame">viäji; viäji</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="16b0c753-8527-4710-b4a5-e8b6706902cb" ownerguid="5ef13a22-d5d4-4b58-b73f-b6eaa745095b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bud</AUni> -<AUni ws="es">brotar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="989e44c7-6f88-47ef-893f-10eac1bc5c53" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="16b7d120-548c-4287-96a3-620ac4e0683e" ownerguid="6f3c704e-dcaf-4b93-85e7-35ab981102c8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.thunder</AUni> -<AUni ws="es">truenar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="959bf08e-2bd3-48f9-8a23-8fe810e2aca5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="16bb3a63-31aa-480b-a6cd-bf1a1332dce9" ownerguid="8b76f4a2-9926-4c76-8d4f-563371683219"> -<ExampleWords> -<AUni ws="en">chemistry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to working with chemicals?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="16bdda49-468e-408c-ad33-2d72d29aa389" ownerguid="75bb6504-5ee0-465d-9ec6-d585b47d3a87"> -<Form> -<AUni ws="qvm-x-ach">rejïlla</AUni> -<AUni ws="qvm-x-acl">rejïlla</AUni> -<AUni ws="qvm-x-akh">rejïlla</AUni> -<AUni ws="qvm-x-akl">rejïlla</AUni> -<AUni ws="qvm-x-ame">rejïlla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="16c29555-f3a7-43e0-9e3b-bda546dd3c8e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nawish</AUni> -<AUni ws="qvm-x-acl">nawish</AUni> -<AUni ws="qvm-x-akh">nawish</AUni> -<AUni ws="qvm-x-akl">nawish</AUni> -<AUni ws="qvm-x-ame">nawish</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñawish</AUni> -<AUni ws="qvm-x-acl">*ñawish</AUni> -<AUni ws="qvm-x-akh">*ñawish</AUni> -<AUni ws="qvm-x-akl">*ñawish</AUni> -<AUni ws="qvm-x-ame">*ñawish</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.596" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d7e4142b-ddc2-4378-b5d9-f7a074c3f771" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñawish</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c4e93e03-9170-4c9c-9a8c-cf90dfb2353b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0b3abfb5-4023-4cfa-81f4-520018db4572" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñawish 
\entryTyp root 
\gENG 
\gSPN oj¢n 
\e *ñawish 
\c N0 
\mp +FinalC 
\ach nawish 
\akh nawish 
\acl nawish 
\akl nawish 
\ame nawish</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="16c520be-2776-4b7b-8f11-7d330600e5eb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pilchi</AUni> -<AUni ws="qvm-x-acl">pilchi; pilche</AUni> -<AUni ws="qvm-x-akh">pilchi</AUni> -<AUni ws="qvm-x-akl">pilchi; pilche</AUni> -<AUni ws="qvm-x-ame">pilchi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pillchi</AUni> -<AUni ws="qvm-x-acl">*pillchi</AUni> -<AUni ws="qvm-x-akh">*pillchi</AUni> -<AUni ws="qvm-x-akl">*pillchi</AUni> -<AUni ws="qvm-x-ame">*pillchi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.830" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f87c1f54-fbe2-4f61-aad5-62bc5115f7e8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pillchi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="924591d0-9b21-401e-88f3-1fe79abe6f16" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="24c2f6e4-c17f-4619-b4e0-bf81535c390c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pillchi 
\entryTyp root 
\gENG squirt 
\gSPN espurrear 
\e *pillchi 
\c V2 
\mp +FinalI 
\ach pilchi 
\akh pilchi 
\acl pilchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pilche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pilchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pilche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pilchi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="16c74087-1c05-4c2b-8170-91e55b8b3be1" ownerguid="5c35c2f8-d17c-42a3-aa12-a4c29b6603e8"> -<ExampleWords> -<AUni ws="en">circuitous, coiled, convoluted, corrugated, curly, curvy, kinky, meandering, pretzel, serpentine, serrated, sinuous, snaky, spiral, tortuous, twisting, undulating, waved, waving, wavy, wind, winding, zigzag</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that has many bends?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="16c9de61-41a2-4e72-b452-143f699286d2" ownerguid="0656cd5e-641f-46f3-bcad-6f643727a344"> -<ExampleWords> -<AUni ws="en">recently, lately, in recent weeks/months, in the last/past few weeks/months, for the last/past few weeks/months</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that something has been happening up until now?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="16cb24af-2eb2-4bc1-9faa-5cf9adb98caf" ownerguid="38473463-4b92-4681-8fd0-0aca0342e88a"> -<ExampleWords> -<AUni ws="en">bacteria, germ, virus</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to one-celled animals (phylum Protozoa)?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="16cf2099-8e71-4c6c-ad42-1f5c7429f812"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">estancia</AUni> -<AUni ws="qvm-x-acl">estancia</AUni> -<AUni ws="qvm-x-akh">estancia</AUni> -<AUni ws="qvm-x-akl">estancia</AUni> -<AUni ws="qvm-x-ame">estancia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+estancia</AUni> -<AUni ws="qvm-x-acl">+estancia</AUni> -<AUni ws="qvm-x-akh">+estancia</AUni> -<AUni ws="qvm-x-akl">+estancia</AUni> -<AUni ws="qvm-x-ame">+estancia</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.498" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a4b14c64-72c5-4985-82fb-587d3802483e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+estancia</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="79a21388-99fc-4689-89a2-33d69a7ce05a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f4e5c717-4636-4ee3-bb5e-9193358c0cf7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +estancia 
\entryTyp root 
\gENG altitude 
\gSPN estancia 
\e +estancia 
\c N0 
\ach estancia 
\akh estancia 
\acl estancia 
\akl estancia 
\ame estancia</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="16d0fc05-aaa6-46fb-a769-3bb2d42cbca9" ownerguid="0108ee33-63b3-4d4c-8937-4bbce4d62898"> -<Form> -<AUni ws="qvm-x-ach">respondi</AUni> -<AUni ws="qvm-x-acl">respondi; responde</AUni> -<AUni ws="qvm-x-akh">respondi</AUni> -<AUni ws="qvm-x-akl">respondi; responde</AUni> -<AUni ws="qvm-x-ame">respondi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="16d14254-663d-4a62-ae5c-b07c0a8e538e" ownerguid="7648040b-0aa5-4d9a-8f13-ffd066b81602"> -<ExampleWords> -<AUni ws="en">measure, pace off, step off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to measuring how long something is?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="16d1b025-7c33-46e8-8a40-7b61d0d1daee" ownerguid="269b22ac-0aaa-4add-afc5-a67150dbb5af"> -<Form> -<AUni ws="qvm-x-ach">wilapista</AUni> -<AUni ws="qvm-x-acl">wilapista</AUni> -<AUni ws="qvm-x-akh">wilapista</AUni> -<AUni ws="qvm-x-akl">wilapista</AUni> -<AUni ws="qvm-x-ame">wilapista</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="16d2c60a-52d7-4ec5-a5b1-c559dc078bf3" ownerguid="5e7a5899-df78-4aa7-bec9-b354acfe087f"> -<Abbreviation> -<AUni ws="en">4.6.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.256" /> -<DateModified val="2022-9-23 16:55:8.256" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the police.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Police</AUni> -</Name> -<OcmCodes> -<Uni>625 Police</Uni> -</OcmCodes> -<Questions> -<objsur guid="05fbc3bf-c875-4719-89ca-09e922d850bd" t="o" /> -<objsur guid="f0cf5124-c39a-4862-bc26-762741ae43d4" t="o" /> -<objsur guid="b26a663f-ef47-48fc-a305-7d2f5879e04d" t="o" /> -<objsur guid="e846c82b-d0d2-4fd7-a203-b06f351dace1" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="0448c78b-dbb7-417c-afc5-b227a1475825" t="o" /> -<objsur guid="d7349bac-efc0-41ba-ba60-f23d38e97a36" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="16d6833d-1ae9-4829-87c4-457cd8d4a1e3" ownerguid="ac7de73d-0059-4f35-9317-462a1813edba"> -<ExampleWords> -<AUni ws="en">grind, mill</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to grinding flour?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="16dbd62c-f60d-4530-ba4e-0e74221e4681" ownerguid="77b4d6c1-87bf-4839-b4be-6a45119b700a"> -<Abbreviation> -<AUni ws="en">3.5.1.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.164" /> -<DateModified val="2022-9-23 16:55:8.164" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to hiding your thoughts.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Hide your thoughts</AUni> -</Name> -<Questions> -<objsur guid="746e3824-4c2f-4991-889d-5a68a618b8ad" t="o" /> -<objsur guid="5a6143a1-7ba3-40b6-bfdf-c53fdce2a9ed" t="o" /> -<objsur guid="dd70fad2-722e-46d8-a601-fce968a39d3c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="16dddcf2-2423-4096-a2d9-7ecf88d75b6f" ownerguid="e53a6ea9-00a7-4253-8347-c3cc89602ec4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="dd6ec3c5-db08-4296-b588-1d348099d74e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="16de6eab-afab-4ba4-a279-cf0ba4d7c9e6" ownerguid="d01f1c51-522e-4b35-81b3-00577dbfa3bd"> -<Abbreviation> -<AUni ws="en">8.3.3.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.617" /> -<DateModified val="2022-9-23 16:55:8.617" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to animal colors and markings.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Animal color, marking</AUni> -</Name> -<Questions> -<objsur guid="70ca5573-6220-4541-8000-4b492661fe90" t="o" /> -<objsur guid="b8a19f86-3533-4a5e-9c3b-7893cecfb5ba" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="944cf5af-469e-4b03-878f-a05d34b0d9f6" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="16e0a53e-f090-4cd8-92d2-1eb344c5ed20" ownerguid="50789089-ee7a-4d84-bac4-d78be5cf197e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">knead</AUni> -<AUni ws="es">amasar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b2d0820b-76e6-4033-8c25-01f3af721438" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="16e2b076-dfc4-49b6-b736-109d144f61a1" ownerguid="1c0c4951-03b6-49b8-8a8e-724397cfd5a7"> -<ExampleWords> -<AUni ws="en">be obsessed with, be fascinated by, can't get something out of your mind, have a thing about, have an unhealthy interest in, have a one-track mind</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling obsessed with something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="16e5b397-d4d6-4e01-acc9-95780d96ac5f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sagra:du</AUni> -<AUni ws="qvm-x-acl">sagra:du; sagra:du; sagra:do</AUni> -<AUni ws="qvm-x-akh">sagra:du</AUni> -<AUni ws="qvm-x-akl">sagra:du; sagra:du; sagra:do</AUni> -<AUni ws="qvm-x-ame">sagra:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sagrado</AUni> -<AUni ws="qvm-x-acl">+sagrado</AUni> -<AUni ws="qvm-x-akh">+sagrado</AUni> -<AUni ws="qvm-x-akl">+sagrado</AUni> -<AUni ws="qvm-x-ame">+sagrado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.419" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ef3ba8cd-edf2-4c8a-876c-214aef8eec91" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sagrado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="079e1a58-d922-41f9-88dd-bc9b44abbc52" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="100269ca-6c69-4892-a111-1e7cd8ce9649" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sagrado 
\entryTyp root 
\gENG 
\gSPN 
\e +sagrado 
\c N0 
\ach sagra:du 
\akh sagra:du 
\acl sagra:du / _# 
\acl sagra:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sagra:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sagra:du / _# 
\akl sagra:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sagra:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sagra:du</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="16e930c3-8e70-408a-840c-58cf5e512d44"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">largue:ra</AUni> -<AUni ws="qvm-x-acl">largue:ra</AUni> -<AUni ws="qvm-x-akh">largue:ra</AUni> -<AUni ws="qvm-x-akl">largue:ra</AUni> -<AUni ws="qvm-x-ame">largue:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+larguera</AUni> -<AUni ws="qvm-x-acl">+larguera</AUni> -<AUni ws="qvm-x-akh">+larguera</AUni> -<AUni ws="qvm-x-akl">+larguera</AUni> -<AUni ws="qvm-x-ame">+larguera</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.530" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="392f2fea-a667-4113-8488-6fd99662be8a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+larguera</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b13060be-f5da-4f24-9ad8-a18cb33ae795" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5e1bb354-f684-44e3-b342-9438f84e14b7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +larguera 
\entryTyp root 
\gENG 
\gSPN 
\e +larguera 
\c N0 
\ach largue:ra 
\akh largue:ra 
\acl largue:ra 
\akl largue:ra 
\ame largue:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="16e9855f-3941-4830-9b02-1b061a3dc45e" ownerguid="b917ffec-ab7e-496a-bfe4-35c567fa0785"> -<ExampleWords> -<AUni ws="en">electrical work</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to working with electricity?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="16ed17d5-dd66-4577-9d05-9016393eb142" ownerguid="043d12ac-c76d-4b4c-813b-4ef7758c8085"> -<ExampleWords> -<AUni ws="en">hiding place, hideout, refuge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the place where something is hidden?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="16ed4be7-55ee-44ba-af48-75991b621fa3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ape:nas</AUni> -<AUni ws="qvm-x-acl">ape:nas</AUni> -<AUni ws="qvm-x-akh">ape:nas</AUni> -<AUni ws="qvm-x-akl">ape:nas</AUni> -<AUni ws="qvm-x-ame">ape:nas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+apenas</AUni> -<AUni ws="qvm-x-acl">+apenas</AUni> -<AUni ws="qvm-x-akh">+apenas</AUni> -<AUni ws="qvm-x-akl">+apenas</AUni> -<AUni ws="qvm-x-ame">+apenas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.808" /> -<DateModified val="2022-10-10 21:19:47.695" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ffcb4402-f8c1-4d96-915d-ce28cfdc6134" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+apenas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b64463c6-448c-4167-a39e-3a541663f8a5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cf8ae81b-db43-44e6-b6da-7e04e4b79e2f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +apenas 
\entryTyp root 
\gENG barely 
\gSPN 
\e +apenas 
\c R0 
\mp +FinalC 
\ach ape:nas 
\akh ape:nas 
\acl ape:nas 
\akl ape:nas 
\ame ape:nas</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="16edaac9-0b48-4ef8-978b-746053190488" ownerguid="aaa5da77-f45a-4633-bf3d-c6da97b9c371"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wasp</AUni> -<AUni ws="es">avispa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8ea92ea0-a9d4-43bc-8981-6dcbe1bfa34c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="16ee1e09-27ad-48c5-aa07-6933ecbbc716" ownerguid="c05bf8c3-78f2-4ec5-b0d7-32d4963a5794"> -<Abbreviation> -<AUni ws="en">8.3.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.619" /> -<DateModified val="2022-9-23 16:55:8.619" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that describe something that is hard--not easily cut, or broken.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Hard, firm</AUni> -</Name> -<Questions> -<objsur guid="42ed6521-bef6-42ad-9d74-2feae473e914" t="o" /> -<objsur guid="4dec2011-1f40-48d1-b227-6254116094f2" t="o" /> -<objsur guid="5757c9ec-adf8-403d-8ae9-7a839f0faea5" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="16f07bf8-db51-4519-8707-956dbdaafc31"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gavilán; gavilan</AUni> -<AUni ws="qvm-x-acl">gavilán; gavilan</AUni> -<AUni ws="qvm-x-akh">gavilán; gavilan</AUni> -<AUni ws="qvm-x-akl">gavilán; gavilan</AUni> -<AUni ws="qvm-x-ame">gavilán; gavilan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gavilán</AUni> -<AUni ws="qvm-x-acl">+gavilán</AUni> -<AUni ws="qvm-x-akh">+gavilán</AUni> -<AUni ws="qvm-x-akl">+gavilán</AUni> -<AUni ws="qvm-x-ame">+gavilán</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.609" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="140c01da-b0f5-4b4a-ab32-943e62d241e9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gavilán</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ff12e15f-0259-469f-8b7c-8c3952dbffbe" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="59b5a455-9d30-4d2b-9140-f7e0c7ba34c9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gavilán 
\entryTyp root 
\gENG 
\gSPN gavilán 
\e +gavilán 
\c N0 
\mp +FinalC 
\ach gavilán / _# 
\ach gavilan / ~_# 
\akh gavilán / _# 
\akh gavilan / ~_# 
\acl gavilán / _# 
\acl gavilan / ~_# 
\akl gavilán / _# 
\akl gavilan / ~_# 
\ame gavilán / _# 
\ame gavilan / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="16f2b8e6-253d-451e-aacf-b5bd9952c2d9" ownerguid="67320802-4a28-43bc-908e-b523c5e965bf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">achaque</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="65dcc228-8e98-411c-8c0e-94566a298a36" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="16f7085b-3705-4ee4-8b98-6f2da18a7dce" ownerguid="23b1a6b4-8d91-425c-b8c2-52d06b1c1d23"> -<ExampleWords> -<AUni ws="en">broken, smashed, crushed, pulverized, (be) in pieces, busted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that has been broken?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="16fb9d11-13e1-4dd2-9672-4371461a0bca" ownerguid="00d642ae-3b07-4202-a777-9b2f12460309"> -<Form> -<AUni ws="qvm-x-ach">fiulayla</AUni> -<AUni ws="qvm-x-acl">fiulayla</AUni> -<AUni ws="qvm-x-akh">fiwlayla</AUni> -<AUni ws="qvm-x-akl">fiwlayla</AUni> -<AUni ws="qvm-x-ame">fiwlayla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="1701b5c0-0682-472d-8694-d9e2aa5f051e"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">aywarimuptiki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="17035e0f-bad8-4ee4-8f92-caa345042e18" ownerguid="d5368649-32f0-4ce2-970c-cfac70f94f07"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="170a43c5-7927-471b-922a-7e7f3c3df393" ownerguid="d69a1c2f-1e1a-455e-bdf0-3d3a4099719c"> -<Form> -<AUni ws="qvm-x-ach">panquëqui; panquëqui</AUni> -<AUni ws="qvm-x-acl">panquëqui; panquëqui; panquëque</AUni> -<AUni ws="qvm-x-akh">panquëqui; panquëqui</AUni> -<AUni ws="qvm-x-akl">panquëqui; panquëqui; panquëque</AUni> -<AUni ws="qvm-x-ame">panquëqui; panquëqui</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="170e283c-15df-4e14-868c-4ba3ae547f83" ownerguid="3cb4c07c-8760-4ff9-8d45-1c0bed80ffb3"> -<ExampleWords> -<AUni ws="en">be pregnant, be going to have a baby, be having a baby, be expecting, bear, carry, carry to term</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a woman being pregnant?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="170eaa19-0689-402d-ad31-01290004b11d" ownerguid="7a0cfaa7-f048-4a09-8320-52bf4b679ab9"> -<Form> -<AUni ws="qvm-x-ach">mägu</AUni> -<AUni ws="qvm-x-acl">mägu; mägu; mägo</AUni> -<AUni ws="qvm-x-akh">mägu</AUni> -<AUni ws="qvm-x-akl">mägu; mägu; mägo</AUni> -<AUni ws="qvm-x-ame">mägu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="17102138-b97a-4f1d-81bc-9be4af90889e" ownerguid="a3ba10f3-66e3-4ad5-8057-453b8941e497"> -<Abbreviation> -<AUni ws="en">4.8.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.284" /> -<DateModified val="2022-9-23 16:55:8.284" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to losing a fight.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Lose a fight</AUni> -</Name> -<Questions> -<objsur guid="6a7129fc-2107-49f2-aa83-4e825ec57609" t="o" /> -<objsur guid="c7a9d034-6346-4213-b2df-f6287f4814c8" t="o" /> -<objsur guid="ab9e950f-31ce-4e31-8dda-e2c99e2165a2" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="17107e5b-66ba-4b02-b8e6-1af31a62b356" ownerguid="5491f159-cddf-4b12-9637-87c8c61d4049"> -<Form> -<AUni ws="qvm-x-ach">pogu</AUni> -<AUni ws="qvm-x-acl">pogu; pogo</AUni> -<AUni ws="qvm-x-akh">poqu</AUni> -<AUni ws="qvm-x-akl">poqu; poqo</AUni> -<AUni ws="qvm-x-ame">puqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1711405b-3b1a-4399-88cc-de3c08fc8e69" ownerguid="3393b3b2-b324-408d-9c59-057a0de9c3bd"> -<ExampleWords> -<AUni ws="en">try for all your worth, do your utmost, do everything you can, do all you can, give your all, pull out all the stops, struggle to do something, go to great lengths to do something</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to doing all you can when you are trying to do something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="17143a61-c6db-49c8-8d7e-15a57ef92816" ownerguid="ffcc57f8-6c6d-4bf4-85be-9220ca7c739d"> -<ExampleWords> -<AUni ws="en">incest, intermarry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to marrying a close relative?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="171453f4-ff22-4530-8cdc-1f7170cd63d5" ownerguid="7fe7626d-bcfc-490a-981f-61a702901ca5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="WfiMorphBundle" guid="171a6ed5-1da6-49e7-9c46-3dee20862d84" ownerguid="4d8a2aae-c80c-4007-84b5-5255881a284c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">na</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">na</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">na</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">na</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">na</Run> -</AStr> -</Form> -<Morph> -<objsur guid="99b46deb-a91d-4222-a9fc-6c1a15fed4be" t="r" /> -</Morph> -<Msa> -<objsur guid="a5b30965-e5c8-452a-9057-ed02c784d19b" t="r" /> -</Msa> -</rt> -<rt class="FsClosedValue" guid="171ab253-4a58-43b1-911b-a7cfb5b68059" ownerguid="42aecc62-ac82-4123-9c65-1651c8b2f7c3"> -<Feature> -<objsur guid="e13ebd7a-824d-4405-8c23-e5a30f3d53a6" t="r" /> -</Feature> -<RefNumber val="0" /> -<Value> -<objsur guid="7fd2e9b4-402c-427c-a3e3-bbf386d652da" t="r" /> -</Value> -<ValueState val="0" /> -</rt> -<rt class="CmDomainQ" guid="171f7244-1965-487f-8479-28433c1e6c6a" ownerguid="d25f7907-091e-4cf7-bd8c-bdb97278b616"> -<ExampleWords> -<AUni ws="en">box, beat up, punch, hit out at, strike out at</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to hitting another person?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1723b385-3acb-4860-8e48-fa2b57392af0" ownerguid="26fb2e94-b8fe-4216-9057-ca17a71df83b"> -<ExampleWords> -<AUni ws="en">sedative, relaxant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something that causes someone to feel relaxed?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="17259862-8f6a-4167-b1bc-10c7bbc35e9f" ownerguid="aa64916d-be58-4591-9bd3-97cd0615fd54"> -<Form> -<AUni ws="qvm-x-ach">utiliza</AUni> -<AUni ws="qvm-x-acl">utiliza</AUni> -<AUni ws="qvm-x-akh">utiliza</AUni> -<AUni ws="qvm-x-akl">utiliza</AUni> -<AUni ws="qvm-x-ame">utiliza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="17272c18-18d4-48d7-a687-57408725336b" ownerguid="698c92ce-1791-4cb7-b3ae-a885613d34e6"> -<Category> -<objsur guid="38b17640-aa0a-406d-bc99-a54197290945" t="r" /> -</Category> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="faf42ce4-e9ce-48f7-8a64-c77b40306fe6" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="d334b12c-0091-4a5b-a11d-fb4c653f0ed9" t="o" /> -</MorphBundles> -</rt> -<rt class="MoInflAffMsa" guid="1728d758-293b-4e13-a8e4-e03410b2f777" ownerguid="9dafa8db-ebe1-4b32-a643-f84cc1a86c0d"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="17296a19-2182-430b-85fb-43eb494b0651"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lapani</AUni> -<AUni ws="qvm-x-acl">lapani; lapani; lapane</AUni> -<AUni ws="qvm-x-akh">lapani</AUni> -<AUni ws="qvm-x-akl">lapani; lapani; lapane</AUni> -<AUni ws="qvm-x-ame">lapani</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llapani</AUni> -<AUni ws="qvm-x-acl">*llapani</AUni> -<AUni ws="qvm-x-akh">*llapani</AUni> -<AUni ws="qvm-x-akl">*llapani</AUni> -<AUni ws="qvm-x-ame">*llapani</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.144" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bc3a8d92-bebb-4c64-b83e-5bd3c92864d9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llapani</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8ba60563-44e9-4fd9-8f0f-3af20cedf8ad" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="26868225-314d-44eb-90c4-9dc9c1048bd7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llapani 
\entryTyp root 
\gENG all 
\gSPN todos 
\e *llapani 
\c N1 
\mp +FinalI 
\ach lapani 
\akh lapani 
\acl lapani / _# 
\acl lapani +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lapane +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lapani / _# 
\akl lapani +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lapane +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lapani</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="172c6026-7c1a-4baa-b157-3ea31c006869" ownerguid="4e7a6dfe-3654-4ca1-874d-02424581b774"> -<ExampleWords> -<AUni ws="en">take a sounding, plumb</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to measuring how deep something is?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="172f7ed9-e4fa-46f1-8298-aad286a628ab" ownerguid="897460e7-bd16-4bbc-bfe3-db1d757017e2"> -<Form> -<AUni ws="qvm-x-ach">cëla</AUni> -<AUni ws="qvm-x-acl">cëla</AUni> -<AUni ws="qvm-x-akh">cëla</AUni> -<AUni ws="qvm-x-akl">cëla</AUni> -<AUni ws="qvm-x-ame">cëla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="1731c589-f449-423c-ab9e-ceedc0d33edc" ownerguid="50789089-ee7a-4d84-bac4-d78be5cf197e"> -<Form> -<AUni ws="qvm-x-ach">masara</AUni> -<AUni ws="qvm-x-acl">masara</AUni> -<AUni ws="qvm-x-akh">masara</AUni> -<AUni ws="qvm-x-akl">masara</AUni> -<AUni ws="qvm-x-ame">masara</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="17321b73-3887-4541-9049-9af2e1d69d9b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pti</AUni> -<AUni ws="qvm-x-acl">pti; pti; pte</AUni> -<AUni ws="qvm-x-akh">pti</AUni> -<AUni ws="qvm-x-akl">pti; pti; pte</AUni> -<AUni ws="qvm-x-ame">pti</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.475" /> -<DateModified val="2022-10-19 20:37:1.10" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2b2772da-2fbd-4846-99c3-d3f919125916" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">ADVDS</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6a97cf20-558d-4866-ba04-48c4807bc533" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5c9f1fed-2e6d-4ad2-b804-9d3f09a277d3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx ADVDS 
\entryTyp suffix 
\gENG ADVDS 
\gSPN ASD 
\e ADVDS 
\c V1/R1 
\o 080 
\mp +FinalI 
\ach pti 
\akh pti 
\acl pti / _# 
\acl pti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pti / _# 
\akl pti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pti 
\mp +foreshortens 
\i Tsay junag mana ayunag cäga pï captinpis Israel runacunapita gargushgami canga. (Margos) 
\i Tsay junag mana ayunag cäga pï carpis Israel runacunapita gargushgami canga. (Chavinillo)</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="17321cf5-d9cb-4de4-bb11-17c09fa27b53" ownerguid="9ec62ffe-69be-4b9b-944c-29a0f4f133db"> -<ExampleWords> -<AUni ws="en">accidental</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that happens in an accident?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="173393eb-8f31-45f5-ac3e-3dcb0c88eb4a" ownerguid="401bbbe4-a33a-4a1e-b26a-18a756e002c4"> -<ExampleWords> -<AUni ws="en">daunting</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that causes someone to feel cowardly?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="173415ac-c602-4090-90f2-5713b9dae190" ownerguid="9694bf77-8731-4f05-a894-cba7797278b9"> -<Form> -<AUni ws="qvm-x-ach">jincuru</AUni> -<AUni ws="qvm-x-acl">jincuru; jincuro</AUni> -<AUni ws="qvm-x-akh">jinkuru</AUni> -<AUni ws="qvm-x-akl">jinkuru; jinkuro</AUni> -<AUni ws="qvm-x-ame">hinkuru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="173923a3-b426-47bb-a833-686ddfb19423" ownerguid="b3d3dd7d-0cb1-4c25-bcae-cc402fcfa3ea"> -<ExampleWords> -<AUni ws="en">to fast, fast (n), not eat, go without food</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer fasting?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="173c0854-1958-4536-bc05-46e54e28b54e" ownerguid="931f5198-a4ff-472d-8f70-cf8806ec3ec7"> -<Form> -<AUni ws="qvm-x-ach">goshni</AUni> -<AUni ws="qvm-x-acl">goshni; goshni; goshne</AUni> -<AUni ws="qvm-x-akh">qoshni</AUni> -<AUni ws="qvm-x-akl">qoshni; qoshni; qoshne</AUni> -<AUni ws="qvm-x-ame">qushni</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="173c4bcf-6cb9-4473-bd57-2ee41acc3051"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsulu</AUni> -<AUni ws="qvm-x-acl">tsulu; tsulo</AUni> -<AUni ws="qvm-x-akh">tsulu</AUni> -<AUni ws="qvm-x-akl">tsulu; tsulo</AUni> -<AUni ws="qvm-x-ame">tsulu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chullu</AUni> -<AUni ws="qvm-x-acl">*chullu</AUni> -<AUni ws="qvm-x-akh">*chullu</AUni> -<AUni ws="qvm-x-akl">*chullu</AUni> -<AUni ws="qvm-x-ame">*chullu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.343" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e18b169e-552c-4904-ad58-db7efe755c1e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chullu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cd35f3b7-1ce6-4b01-b929-a8e708ea2f44" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b70deab5-76ba-4674-a1af-af0eab64e583" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chullu 
\entryTyp root 
\gENG melt 
\gSPN derritir 
\e *chullu 
\c V1 
\ach tsulu 
\akh tsulu 
\acl tsulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tsulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsulu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="173fdb8e-8edc-4673-8f39-649d0c953687" ownerguid="91ddf495-a28b-4a32-90dc-6f997d0cd069"> -<ExampleWords> -<AUni ws="en">blast (of a trumpet), blare, crash (of a cymbal), timbre</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe the sound made by a musical instrument?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="173ff215-d2a7-4360-90a2-fb3b5f9db7ca" ownerguid="66cbf861-88e7-47b7-8c5c-ff02f79d9337"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0 V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">moth</AUni> -<AUni ws="es">polilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b322d8c3-bb3f-47de-9863-cca168922f66" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="17412154-a6d4-41d7-b6f0-a5f35fd23a92" ownerguid="62200976-7753-4c79-bb7c-bf130fdf7f7f"> -<Form> -<AUni ws="qvm-x-ach">oglani</AUni> -<AUni ws="qvm-x-acl">oglani; oglani; oglane</AUni> -<AUni ws="qvm-x-akh">oqlani</AUni> -<AUni ws="qvm-x-akl">oqlani; oqlani; oqlane</AUni> -<AUni ws="qvm-x-ame">uqlani</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="17469642-61b2-4f3b-baa6-f7fc402b3761" ownerguid="50b5b065-147c-42de-8c5c-8b8b51e35306"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="1748b880-7dee-415a-9e0e-5c996c6ff8c8" ownerguid="206b0422-a0e1-4714-9328-878d63dcc121"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="174a4121-611a-4863-969f-8b997a01098a" ownerguid="8216627d-9d20-4a5c-8bfd-0709c16e7a08"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">We need five chickens in addition to the ten we already have.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">more than, over and above, as well as, plus, in addition to, on top of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate an amount that is more than an amount already mentioned?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="175072e7-b8fc-421c-9032-54ed92a7f689" ownerguid="12fe5f6c-7f98-47ba-936a-bcd1065c2db3"> -<ExampleWords> -<AUni ws="en">head (in a direction), go (in a direction)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to moving in a direction?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="1750fd81-6f0c-4be2-9f07-09475dc1a7e0"> -<Analyses> -<objsur guid="6a70c81a-31ac-4c37-bd61-f1ba2a278341" t="o" /> -<objsur guid="9533d698-55a5-4edd-9f05-e850c77a64f6" t="o" /> -</Analyses> -<Checksum val="67861599" /> -<Form> -<AUni ws="qvm-x-akh">yarpapäkun</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="17512db4-123c-4b02-beca-0bb7d1511d45" ownerguid="8f799eec-e143-4cf8-bce8-78ffc7c44fa5"> -<Form> -<AUni ws="qvm-x-ach">castïgu</AUni> -<AUni ws="qvm-x-acl">castïgu; castïgu; castïgo</AUni> -<AUni ws="qvm-x-akh">castïgu</AUni> -<AUni ws="qvm-x-akl">castïgu; castïgu; castïgo</AUni> -<AUni ws="qvm-x-ame">castïgu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="17563e74-6020-4a64-a1a9-b874ef533fcb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pichulu</AUni> -<AUni ws="qvm-x-acl">pichulu; pichulu; pichulo</AUni> -<AUni ws="qvm-x-akh">pichulu</AUni> -<AUni ws="qvm-x-akl">pichulu; pichulu; pichulo</AUni> -<AUni ws="qvm-x-ame">pichulu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pichulu</AUni> -<AUni ws="qvm-x-acl">+pichulu</AUni> -<AUni ws="qvm-x-akh">+pichulu</AUni> -<AUni ws="qvm-x-akl">+pichulu</AUni> -<AUni ws="qvm-x-ame">+pichulu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.820" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="be91df27-965e-4cec-938a-6d1097dfcc48" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pichulu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fc985e07-1d45-4fda-9815-d3f77da2c9af" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b785c289-0e78-4626-a25c-da44b2bc903a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pichulu 
\entryTyp root 
\gENG penis 
\gSPN pene 
\e +pichulu 
\c N0 
\ach pichulu 
\akh pichulu 
\acl pichulu / _# 
\acl pichulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pichulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pichulu / _# 
\akl pichulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pichulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pichulu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="175a97dc-d29c-40d3-8b7d-31c0520d4980"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">recita</AUni> -<AUni ws="qvm-x-acl">recita</AUni> -<AUni ws="qvm-x-akh">recita</AUni> -<AUni ws="qvm-x-akl">recita</AUni> -<AUni ws="qvm-x-ame">recita</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+recitar</AUni> -<AUni ws="qvm-x-acl">+recitar</AUni> -<AUni ws="qvm-x-akh">+recitar</AUni> -<AUni ws="qvm-x-akl">+recitar</AUni> -<AUni ws="qvm-x-ame">+recitar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.307" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9ec3d097-cb08-466f-98b1-d38fb7ff740e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+recitar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7591e213-98a4-4a89-b9fd-fbc53802f311" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7fcbc15a-3aaf-4d26-83f1-21cb4a55947c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +recitar 
\entryTyp root 
\gENG recite 
\gSPN recitar 
\e +recitar 
\c V1 
\ach recita 
\akh recita 
\acl recita 
\akl recita 
\ame recita 
\i Num 21.27 Tsaypitami poesiata recitagcunapis caynog nin:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="1761fe93-8b34-40eb-9318-a6c8836de474" ownerguid="965f9204-b884-4952-b2fd-2c95379ca9a7"> -<Form> -<AUni ws="qvm-x-ach">watpa</AUni> -<AUni ws="qvm-x-acl">watpa</AUni> -<AUni ws="qvm-x-akh">watpa</AUni> -<AUni ws="qvm-x-akl">watpa</AUni> -<AUni ws="qvm-x-ame">watpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1766b3fb-d188-487b-9ff2-c24a04a4e31c" ownerguid="469b0a30-3c26-4cfd-b948-7bb952eeff41"> -<ExampleWords> -<AUni ws="en">know someone by sight, be acquainted with, be acquaintances, don't know well, we've met</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to knowing someone, but not knowing him well?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="17686a2d-5914-4c4c-9d89-5eb941596f70" ownerguid="cbac3e35-e569-426a-a458-6cff4b51dec2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">adze</AUni> -<AUni ws="es">hoz</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="782a8746-6760-4b57-bdf4-c7389acfb296" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="176dc633-782b-4e75-9704-62cc09b6774a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">putsupa</AUni> -<AUni ws="qvm-x-acl">putsupa</AUni> -<AUni ws="qvm-x-akh">putsupa</AUni> -<AUni ws="qvm-x-akl">putsupa</AUni> -<AUni ws="qvm-x-ame">putsupa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puchupa</AUni> -<AUni ws="qvm-x-acl">*puchupa</AUni> -<AUni ws="qvm-x-akh">*puchupa</AUni> -<AUni ws="qvm-x-akl">*puchupa</AUni> -<AUni ws="qvm-x-ame">*puchupa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.972" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2857049e-127f-4c54-a627-81907765950f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puchupa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="10cf0543-8e30-45b3-ab9a-6d039a917001" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="791571c3-597f-4895-82ed-0f630fa869f6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puchupa 
\entryTyp root 
\gENG extra 
\gSPN 
\e *puchupa 
\c N0 
\ach putsupa 
\akh putsupa 
\acl putsupa 
\akl putsupa 
\ame putsupa 
\i Manualta ruranantsipag nistantsi putsupa taksha tëlakunata.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="176e1a36-c999-4ae8-bdf2-26017e186439" ownerguid="c103d339-24f2-45c6-8539-d3c445e15c49"> -<ExampleWords> -<AUni ws="en">clear throat, whistle, raise hand</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What non-verbal means are used to get someone's attention</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="17703d2d-8933-43b5-9ead-2f46c9ced38e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gachpa</AUni> -<AUni ws="qvm-x-acl">gachpa</AUni> -<AUni ws="qvm-x-akh">qachpa</AUni> -<AUni ws="qvm-x-akl">qachpa</AUni> -<AUni ws="qvm-x-ame">qachpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qatrapa</AUni> -<AUni ws="qvm-x-acl">*qatrapa</AUni> -<AUni ws="qvm-x-akh">*qatrapa</AUni> -<AUni ws="qvm-x-akl">*qatrapa</AUni> -<AUni ws="qvm-x-ame">*qatrapa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.144" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6360eeb4-01f1-4347-a540-7dfe381c1e45" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qatrapa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a26ffae3-6efd-4572-9b48-ae2ef2655be7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c292abfd-776d-49ad-83f1-079ab3875fe2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qatrapa 
\entryTyp root 
\gENG steril.land 
\gSPN tierra.estéril 
\e *qatrapa 
\c N0 
\ach gachpa 
\akh qachpa 
\acl gachpa 
\akl qachpa 
\ame qachpa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="17707401-b191-4d55-b924-9001ed074b53"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">faculta</AUni> -<AUni ws="qvm-x-acl">faculta</AUni> -<AUni ws="qvm-x-akh">faculta</AUni> -<AUni ws="qvm-x-akl">faculta</AUni> -<AUni ws="qvm-x-ame">faculta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+facultar</AUni> -<AUni ws="qvm-x-acl">+facultar</AUni> -<AUni ws="qvm-x-akh">+facultar</AUni> -<AUni ws="qvm-x-akl">+facultar</AUni> -<AUni ws="qvm-x-ame">+facultar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.528" /> -<DateModified val="2022-10-10 21:18:47.218" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f313ff63-b4a8-45cc-87bf-b64d44ef33e0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+facultar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5410af6e-6070-4e79-916e-b977b9ec9fff" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8cef2d5f-40bb-4ca8-ac67-e1acefe6aee9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +facultar 
\entryTyp root 
\gENG 
\gSPN 
\e +facultar 
\c V1 
\ach faculta 
\akh faculta 
\acl faculta 
\akl faculta 
\ame faculta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="17711328-2b18-4bab-82a2-3ffdbffda4cb" ownerguid="2810998c-d6cc-47a3-a946-66d0986a2767"> -<ExampleWords> -<AUni ws="en">swing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to moving something through the air?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1773715e-7b2f-41dc-88eb-99d2c7ea3f66"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shataca</AUni> -<AUni ws="qvm-x-acl">shataca</AUni> -<AUni ws="qvm-x-akh">shataka</AUni> -<AUni ws="qvm-x-akl">shataka</AUni> -<AUni ws="qvm-x-ame">shataka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shataka</AUni> -<AUni ws="qvm-x-acl">*shataka</AUni> -<AUni ws="qvm-x-akh">*shataka</AUni> -<AUni ws="qvm-x-akl">*shataka</AUni> -<AUni ws="qvm-x-ame">*shataka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.551" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d15f3626-d48f-4367-a3eb-d82e9d046295" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shataka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bb045497-8a03-4ab4-a3a3-5ef36b7bcac5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d3703371-0919-4eaf-858f-4e564724ba17" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shataka 
\entryTyp root 
\gENG devil 
\gSPN diablo 
\e *shataka 
\c N0 
\ach shataca 
\akh shataka 
\acl shataca 
\akl shataka 
\ame shataka</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="1774d9ea-7c7d-4c06-9267-bacc9e49213b" ownerguid="1b004786-7bfc-42be-bcd1-8616f9383206"> -<Form> -<AUni ws="qvm-x-ach">verdüra</AUni> -<AUni ws="qvm-x-acl">verdüra</AUni> -<AUni ws="qvm-x-akh">verdüra</AUni> -<AUni ws="qvm-x-akl">verdüra</AUni> -<AUni ws="qvm-x-ame">verdüra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="17763c82-85e9-4612-a820-f92416bd0ad0" ownerguid="f0e68d2f-f7b3-4722-80a4-8e9c5638b0d4"> -<ExampleWords> -<AUni ws="en">subject, topic, question</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the subject that is being studied?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1778b9f5-92c8-4f88-909b-a38926b5101a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wancash</AUni> -<AUni ws="qvm-x-acl">wancash</AUni> -<AUni ws="qvm-x-akh">wankash</AUni> -<AUni ws="qvm-x-akl">wankash</AUni> -<AUni ws="qvm-x-ame">wankash</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wankash</AUni> -<AUni ws="qvm-x-acl">*wankash</AUni> -<AUni ws="qvm-x-akh">*wankash</AUni> -<AUni ws="qvm-x-akl">*wankash</AUni> -<AUni ws="qvm-x-ame">*wankash</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.475" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f9443d15-2f7c-4f3b-b886-972849345627" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wankash</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0cf9b460-eca5-4975-af12-2e2951a2569b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9eedcbd6-c65f-4550-8d85-a20bdf903a09" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wankash 
\entryTyp root 
\gENG 
\gSPN 
\e *wankash 
\c N0 
\mp +FinalC 
\ach wancash 
\akh wankash 
\acl wancash 
\akl wankash 
\ame wankash 
\i 1SA 17.42 Tsauraga cuyaylapag wancashla mözuta ricaycurmi Davidta manacagman churar</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="177a8506-aa3c-4f8a-8c44-1b3ea5edef5e" ownerguid="e88d17e1-259f-4b13-a633-f0195dc17e29"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="177ea60e-7781-46f4-bdac-434d7b13c9b4" ownerguid="fba27833-d6f1-4c36-ac39-28902b29261b"> -<ExampleWords> -<AUni ws="en">resemble, bear a resemblance to, akin to, have an affinity with, the same sort of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something being like another thing?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="1782f340-545c-40b1-ad36-37848cee0a7b" ownerguid="2b65d33b-e7f4-4772-88e2-2ea5722577d6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">runa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">runa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">runa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">runa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">runa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="dbbd8356-c9df-482b-a128-55aaaa8ad47f" t="r" /> -</Morph> -<Msa> -<objsur guid="735a29e0-40d3-4d25-9e9a-e8181d173c29" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="17851b86-f8fb-4850-9b33-c1a9fcb0aec1" ownerguid="4f19ab95-428a-4a0b-a069-ca8be6b72b08"> -<Abbreviation> -<AUni ws="en">4.2.1.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.208" /> -<DateModified val="2022-9-23 16:55:8.208" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to showing hospitality to a visitor.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>34H Show Hospitality</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Show hospitality</AUni> -</Name> -<OcmCodes> -<Uni>576 Etiquette</Uni> -</OcmCodes> -<Questions> -<objsur guid="8f0b441e-a1aa-4d2f-96e7-14bb13b7f641" t="o" /> -<objsur guid="024be6bd-c403-4064-b217-ea1f339ac949" t="o" /> -<objsur guid="4ae06e75-d5ee-4d8b-a334-a1a90e391050" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="178624d8-5e2b-4f83-9bff-8b1d43e406ab" ownerguid="666d0b4a-257f-4b33-9b4f-216da109daa9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">number</AUni> -<AUni ws="es">número</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="baf5b826-eec5-43a7-bcb1-9378715e6046" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="17869f75-4ce7-4698-a81c-4075d26d61da" ownerguid="14fef832-59de-4167-8508-ababf7d5abf1"> -<Form> -<AUni ws="qvm-x-ach">lëchi; lëchi</AUni> -<AUni ws="qvm-x-acl">lëchi; lëchi; lëche</AUni> -<AUni ws="qvm-x-akh">lëchi; lëchi</AUni> -<AUni ws="qvm-x-akl">lëchi; lëchi; lëche</AUni> -<AUni ws="qvm-x-ame">lëchi; lëchi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="178a49b2-082c-4028-8998-9b1e8ff20915" ownerguid="66dedb31-dd2a-4e94-825e-331590ac59a9"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The word 'goner' <is derived from> the root 'go'.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">derive, derived from, derivation, rooted in the past</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words express the fact that something is derived from another?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="178b53a6-be1b-45ea-8ace-992938a1b246" ownerguid="45e5f48c-830f-4aba-9b99-0c93b0eda4f7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">clinic</AUni> -<AUni ws="es">sanitario</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="292f8871-7c28-49a3-af98-7fe14c5e0efa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="178ba3a5-991c-48c0-ad6d-b168d6dd718c" ownerguid="4d80670f-7cea-4381-bd29-2a1d7fdb295a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">garga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">garga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qarqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qarqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qarqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6f41aa37-069b-4d0e-9ac0-b37442f815c1" t="r" /> -</Morph> -<Msa> -<objsur guid="46d33e77-a6a6-47a9-9e01-e3a1573177a2" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="178d83b8-1021-4d29-bb8b-80ee8e72feda" ownerguid="163f451f-0ca9-4a43-98b6-c9aa884a6bb7"> -<Form> -<AUni ws="qvm-x-ach">tenäza</AUni> -<AUni ws="qvm-x-acl">tenäza</AUni> -<AUni ws="qvm-x-akh">tenäza</AUni> -<AUni ws="qvm-x-akl">tenäza</AUni> -<AUni ws="qvm-x-ame">tenäza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="178db256-29ff-4f56-a220-fbf316d529a8" ownerguid="b844d2f8-d3ef-4605-b038-8bc0a2cff0af"> -<ExampleWords> -<AUni ws="en">giant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a tall person?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="178f07bb-dd8d-4baf-9892-2dc7b80bd688" ownerguid="58b17d92-f7a8-430f-977a-38b17ff8147f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="1790a6e3-4fd2-4787-b235-8f1d54af8dfc" ownerguid="f3540c55-95d5-446a-8af7-002fea59c41f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">testicle</AUni> -<AUni ws="es">testfculo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="969db3b1-1c62-4f6c-9b75-665aeb8498e4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="179134d1-b00e-4a6e-be86-dadf9865aa36" ownerguid="48ca8966-6a2f-4197-9d87-6c3fa2f3f8b4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="1792765d-98c0-4add-9e65-6cb388944600" ownerguid="1e9a0881-f715-4057-9af8-251cb8eec9da"> -<ExampleWords> -<AUni ws="en">low, deep, bass, rich, resonant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a sound or voice that is low on the musical scale?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1794c03d-256c-4446-9f8c-bfa0584026c0" ownerguid="07fa99e4-1a4c-4f69-a02b-e18581115472"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="1798391b-b843-4b16-bcf6-5cbdfece91c3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mancha</AUni> -<AUni ws="qvm-x-acl">mancha</AUni> -<AUni ws="qvm-x-akh">mancha</AUni> -<AUni ws="qvm-x-akl">mancha</AUni> -<AUni ws="qvm-x-ame">mancha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mancha</AUni> -<AUni ws="qvm-x-acl">+mancha</AUni> -<AUni ws="qvm-x-akh">+mancha</AUni> -<AUni ws="qvm-x-akl">+mancha</AUni> -<AUni ws="qvm-x-ame">+mancha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.305" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b17973ee-a11a-4411-a998-d85347bd89e2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mancha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="11329ba5-a0d0-4efb-993c-aba5dc778120" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7d5d9c59-2c7a-46f0-a457-a57d4b762562" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mancha 
\entryTyp root 
\gENG stain 
\gSPN 
\e +mancha 
\c N0 
\ach mancha 
\akh mancha 
\acl mancha 
\akl mancha 
\ame mancha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="179a56b9-6eff-4b57-8682-da3c2a5f1e41"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pishpi</AUni> -<AUni ws="qvm-x-acl">pishpi; pishpi; pishpe</AUni> -<AUni ws="qvm-x-akh">pishpi</AUni> -<AUni ws="qvm-x-akl">pishpi; pishpi; pishpe</AUni> -<AUni ws="qvm-x-ame">pishpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pishpi</AUni> -<AUni ws="qvm-x-acl">*pishpi</AUni> -<AUni ws="qvm-x-akh">*pishpi</AUni> -<AUni ws="qvm-x-akl">*pishpi</AUni> -<AUni ws="qvm-x-ame">*pishpi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.858" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9b34f385-47a2-4bda-9ac9-b5248f635ced" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pishpi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2da79a5e-b2ef-4f20-b0aa-c2cdd002d8bc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ebec6059-9348-43ea-9db7-452b981dc33e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pishpi 
\entryTyp root 
\gENG puppy 
\gSPN cachorro 
\e *pishpi 
\c N0 
\mp +FinalI 
\ach pishpi 
\akh pishpi 
\acl pishpi / _# 
\acl pishpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pishpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pishpi / _# 
\akl pishpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pishpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pishpi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="179cb963-6c60-4e9e-b72f-0da7aee01909" ownerguid="dfdb5f68-ba99-439d-a245-b57b84d41a1a"> -<Form> -<AUni ws="qvm-x-ach">abëja</AUni> -<AUni ws="qvm-x-acl">abëja</AUni> -<AUni ws="qvm-x-akh">abëja</AUni> -<AUni ws="qvm-x-akl">abëja</AUni> -<AUni ws="qvm-x-ame">abëja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="179d5ce7-6875-4359-95b9-16fc79a1c4ad"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">principi; príncipe</AUni> -<AUni ws="qvm-x-acl">principi; principi; principe</AUni> -<AUni ws="qvm-x-akh">principi; príncipe</AUni> -<AUni ws="qvm-x-akl">principi; principi; principe</AUni> -<AUni ws="qvm-x-ame">principi; príncipe</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+príncipe</AUni> -<AUni ws="qvm-x-acl">+príncipe</AUni> -<AUni ws="qvm-x-akh">+príncipe</AUni> -<AUni ws="qvm-x-akl">+príncipe</AUni> -<AUni ws="qvm-x-ame">+príncipe</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.931" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bf870941-1b5b-4457-8117-71497348a261" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+príncipe</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9cd55063-3d43-467e-9ee0-12805d9bb1b5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="91cb83ea-0e5f-4dc0-b024-4e4545fd988f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +príncipe 
\entryTyp root 
\gENG 
\gSPN 
\e +príncipe 
\c N0 
\mp +FinalI 
\ach principi / ~_# 
\ach príncipe / _# 
\akh principi / ~_# 
\akh príncipe / _# 
\acl principi / ~_# 
\acl principi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl principe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl principi / ~_# 
\akl principi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl principe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame principi / ~_# 
\ame príncipe / _# 
\i 2SA 8.18 Davidpa tsurincunami príncipicuna cargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="179d8841-a49e-4e4b-a268-39c45a92c33e" ownerguid="81531d1a-04b9-44ca-92cb-be8555727f04"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -<Sense> -<objsur guid="ed102c60-ed6d-498f-b2c4-a195d53a84e2" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="179f5764-2b71-42d0-81d0-332e299ce94c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waywash</AUni> -<AUni ws="qvm-x-acl">waywash</AUni> -<AUni ws="qvm-x-akh">waywash</AUni> -<AUni ws="qvm-x-akl">waywash</AUni> -<AUni ws="qvm-x-ame">waywash</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waywash</AUni> -<AUni ws="qvm-x-acl">*waywash</AUni> -<AUni ws="qvm-x-akh">*waywash</AUni> -<AUni ws="qvm-x-akl">*waywash</AUni> -<AUni ws="qvm-x-ame">*waywash</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.637" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="44702807-231d-4b3d-98da-0c94acaa9bf3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waywash</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ffba1b72-6b52-4cf6-acde-b99524990e0f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="75e1d071-e208-4b8b-8106-f27001e395b4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waywash 
\entryTyp root 
\gENG 
\gSPN 
\e *waywash 
\c N0 
\mp +FinalC 
\ach waywash 
\akh waywash 
\acl waywash 
\akl waywash 
\ame waywash</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="17a1a84a-bcd3-4daf-b29b-5d059927dffb" ownerguid="b2da94ae-ff9d-49e9-b8f2-9d6d3dc10db1"> -<Form> -<AUni ws="qvm-x-ach">wacu</AUni> -<AUni ws="qvm-x-acl">wacu; wacu; waco</AUni> -<AUni ws="qvm-x-akh">waku</AUni> -<AUni ws="qvm-x-akl">waku; waku; wako</AUni> -<AUni ws="qvm-x-ame">waku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="17a2677a-c3cd-4762-8ce4-78a01bf211f2" ownerguid="eea7c79b-6150-4aba-8105-a94b7e6aeab7"> -<ExampleWords> -<AUni ws="en">faithfulness, allegiance, devotion, fidelity, loyalty, solidarity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the quality of being faithful?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="17a2c19b-e9ec-4b44-9e0e-c06d90b0a98d" ownerguid="31ec0cbc-4079-4c6c-873a-d0c406383db2"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="17a5d884-2eaa-4d36-a3c0-1b2b1be0312b" ownerguid="388c9235-aa66-4d43-aeb8-aa6cdfb69089"> -<Form> -<AUni ws="qvm-x-ach">wama</AUni> -<AUni ws="qvm-x-acl">wama</AUni> -<AUni ws="qvm-x-akh">wama</AUni> -<AUni ws="qvm-x-akl">wama</AUni> -<AUni ws="qvm-x-ame">wama</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="17aa33ba-a394-47c0-98ac-d41062a72008" ownerguid="1dda2c36-411b-416f-aa5c-78a95fc8d275"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Introducción Bíblica: Waquin runacuna mituta lapsha tablïtatanog ruraycur ogulaman escribergan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoMorphAdhocProhib" guid="17aa8be2-f212-4a4c-b737-4c0f11d7d40a" ownerguid="777f4eca-a64c-4ed7-8367-4e3ebdb5cd1f"> -<Adjacency val="4" /> -<Disabled val="False" /> -<FirstMorpheme> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</FirstMorpheme> -<RestOfMorphs> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</RestOfMorphs> -</rt> -<rt class="MoStemAllomorph" guid="17af1e12-6558-479a-822f-9d8d2ef34165" ownerguid="17c00a73-726d-4981-8444-1e4b0af7baf4"> -<Form> -<AUni ws="qvm-x-ach">aläpa</AUni> -<AUni ws="qvm-x-acl">aläpa</AUni> -<AUni ws="qvm-x-akh">aläpa</AUni> -<AUni ws="qvm-x-akl">aläpa</AUni> -<AUni ws="qvm-x-ame">aläpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="17b07eaf-5bbf-4fa0-a95e-8ee86290ee4c" ownerguid="cb1ecce3-ca8d-4b27-9438-20478dc6fde4"> -<Form> -<AUni ws="qvm-x-ach">upacsa</AUni> -<AUni ws="qvm-x-acl">upacsa</AUni> -<AUni ws="qvm-x-akh">upaksa</AUni> -<AUni ws="qvm-x-akl">upaksa</AUni> -<AUni ws="qvm-x-ame">upaksa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="17b2aa73-bbed-4202-9670-11b3f5263644" ownerguid="70103b13-f5f0-48d4-8d4e-d6e0268967aa"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="17b5b77a-87b2-4244-8f01-2a966bf6913a" ownerguid="d8070d34-09ce-43d5-bd3a-dc1b52086ddd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="1c308e76-8f1a-4982-a24f-c36dc4f45e3f" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">poetry</AUni> -<AUni ws="es">poesía</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="08b80c21-f68d-4e50-ac96-f34e47fb48a9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="17bbd739-7fc0-4013-97f0-1805e465c65b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">malqueria:du</AUni> -<AUni ws="qvm-x-acl">malqueria:du; malqueria:du; malqueria:do</AUni> -<AUni ws="qvm-x-akh">malqueria:du</AUni> -<AUni ws="qvm-x-akl">malqueria:du; malqueria:du; malqueria:do</AUni> -<AUni ws="qvm-x-ame">malqueria:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+malcriado</AUni> -<AUni ws="qvm-x-acl">+malcriado</AUni> -<AUni ws="qvm-x-akh">+malcriado</AUni> -<AUni ws="qvm-x-akl">+malcriado</AUni> -<AUni ws="qvm-x-ame">+malcriado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.275" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="11a665e8-016f-4b0c-9b61-317f29da6cdf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+malcriado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b2479069-3ae2-4fb4-b578-ffc0950c094c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3a6c51d8-c88d-403f-b5bb-391aa98145b1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +malcriado 
\entryTyp root 
\gENG ill.mannered 
\gSPN malcriado 
\e +malcriado 
\c N0 
\ach malqueria:du 
\akh malqueria:du 
\acl malqueria:du / _# 
\acl malqueria:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl malqueria:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl malqueria:du / _# 
\akl malqueria:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl malqueria:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame malqueria:du</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="17c00a73-726d-4981-8444-1e4b0af7baf4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ala:pa</AUni> -<AUni ws="qvm-x-acl">ala:pa</AUni> -<AUni ws="qvm-x-akh">ala:pa</AUni> -<AUni ws="qvm-x-akl">ala:pa</AUni> -<AUni ws="qvm-x-ame">ala:pa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*alla:pa</AUni> -<AUni ws="qvm-x-acl">*alla:pa</AUni> -<AUni ws="qvm-x-akh">*alla:pa</AUni> -<AUni ws="qvm-x-akl">*alla:pa</AUni> -<AUni ws="qvm-x-ame">*alla:pa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.737" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="17af1e12-6558-479a-822f-9d8d2ef34165" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*alla:pa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c74b5057-b070-4d31-9c4b-8cb70339dc76" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ca4c6b64-966b-43b2-9473-49c2f452fcca" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *alla:pa 
\entryTyp root 
\gENG too.much 
\gSPN demasiado 
\e *alla:pa 
\c R0 
\ach ala:pa 
\akh ala:pa 
\acl ala:pa 
\akl ala:pa 
\ame ala:pa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="17c485f9-1abf-4b8e-aa05-4493d70ccac5" ownerguid="2e9f06f3-c986-43da-a035-e3cc9aef13d4"> -<ExampleWords> -<AUni ws="en">job satisfaction, rewarding, fulfilling, satisfying, profitable, like your job, challenging</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being satisfied with your job?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="17c53e1a-f12c-41bc-9038-3134419c51bb" ownerguid="85d61f31-0156-44c3-b973-95ccd8e777bf"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="17c57722-51eb-46fd-a656-150f8e0ec5e0" ownerguid="61883dbf-387d-448d-9409-fafe751b804b"> -<Form> -<AUni ws="qvm-x-ach">quëda</AUni> -<AUni ws="qvm-x-acl">quëda</AUni> -<AUni ws="qvm-x-akh">quëda</AUni> -<AUni ws="qvm-x-akl">quëda</AUni> -<AUni ws="qvm-x-ame">quëda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="17c6c88c-3826-4b4d-b870-856967839501"> -<Analyses> -<objsur guid="2ef711fc-a58a-4ceb-b48a-7e1fc71ec429" t="o" /> -</Analyses> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">sirvinkipaq</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="17c8473e-c402-476d-8f93-8b20a5c9b925"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ama:las</AUni> -<AUni ws="qvm-x-acl">ama:las</AUni> -<AUni ws="qvm-x-akh">ama:las</AUni> -<AUni ws="qvm-x-akl">ama:las</AUni> -<AUni ws="qvm-x-ame">ama:las</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+a.malas</AUni> -<AUni ws="qvm-x-acl">+a.malas</AUni> -<AUni ws="qvm-x-akh">+a.malas</AUni> -<AUni ws="qvm-x-akl">+a.malas</AUni> -<AUni ws="qvm-x-ame">+a.malas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.920" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="991f90e0-aa64-4253-8ff0-55d4ba48fabb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+a.malas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6fa05c57-b1bb-485d-8ab7-782c8504219b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="91052f43-fe2a-41f3-90ab-623ee6e9eef0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +a.malas 
\entryTyp root 
\gENG 
\gSPN 
\e +a.malas 
\c R0 
\mp +FinalC 
\ach ama:las 
\akh ama:las 
\acl ama:las 
\akl ama:las 
\ame ama:las</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="17d50454-fe0c-4552-95cc-f4841295f8ec"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ana</AUni> -<AUni ws="qvm-x-acl">ana</AUni> -<AUni ws="qvm-x-akh">ana</AUni> -<AUni ws="qvm-x-akl">ana</AUni> -<AUni ws="qvm-x-ame">ana</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aña.v</AUni> -<AUni ws="qvm-x-acl">*aña.v</AUni> -<AUni ws="qvm-x-akh">*aña.v</AUni> -<AUni ws="qvm-x-akl">*aña.v</AUni> -<AUni ws="qvm-x-ame">*aña.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.800" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aaca6952-6e2e-4006-b736-a56406728d95" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aña.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b0c04ec9-cc27-4ac1-863a-b45e41c56f2f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4bfff667-2896-46d7-8e09-2ffd89710b83" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aña.v 
\entryTyp root 
\gENG be.hard 
\gSPN ser.duro 
\e *aña.v 
\c V2 
\ach ana 
\akh ana 
\acl ana 
\akl ana 
\ame ana</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="17d5f429-6550-4a3a-a755-5ac3c3d7e04f" ownerguid="944cf5af-469e-4b03-878f-a05d34b0d9f6"> -<Abbreviation> -<AUni ws="en">1.6.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for animal homes. It is necessary to think through the homes of each type of animal, especially the important ones.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Animal home</AUni> -</Name> -<OcmCodes> -<Uni>136e Homes</Uni> -</OcmCodes> -<Questions> -<objsur guid="1d7bfbdb-a91b-435c-9b1c-1616f2d60d2d" t="o" /> -<objsur guid="a2ce6283-ec59-4491-bacc-108dc88edd19" t="o" /> -<objsur guid="705a7220-3596-42e1-a5c2-924648dc8be6" t="o" /> -<objsur guid="ede50616-b51e-4716-ac79-aa7f469c8a1c" t="o" /> -<objsur guid="03162558-e718-4a4d-9fa6-60c6f2b212b3" t="o" /> -<objsur guid="c1758c3d-7e4e-4e25-9c01-1ad0f6c5d97a" t="o" /> -<objsur guid="7982b082-dfd0-4dfa-afa2-04968ef14c1b" t="o" /> -<objsur guid="40149dbb-11f0-419c-91be-c567dbfe3270" t="o" /> -<objsur guid="8a40c914-2bb9-4ffc-a872-288a0d3f134b" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="79b580ff-64a7-445b-abcb-b49b9093779c" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="17d6ce4f-9a6f-402c-92c2-ab3a79d3f8ff" ownerguid="c0d08d72-d213-4b19-81a1-183cf3eab937"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="17d6e838-bc61-48c4-8dfe-171202d71a91" ownerguid="75acb013-4207-4977-a465-6f66d5f47ef8"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="17db876f-dc0f-42a6-a1c8-9df5647513be" ownerguid="34cbaedb-160b-467b-8acd-46155d6a2400"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">enchant</AUni> -<AUni ws="es">encantar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5d112c4f-7089-41aa-8eca-8b4643bba3e6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="17dcc882-6d59-42c2-9f9e-e56e22dacd2b" ownerguid="69d366d2-9735-4a1b-b938-7b212932b568"> -<ExampleWords> -<AUni ws="en">Mercury, Venus, Earth, Mars, Jupiter, Saturn, Uranus, Neptune, Pluto</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the names of the planets?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="17df5b3a-0fb4-424f-8c10-73173c9c357a" ownerguid="583c98ff-1cc8-4b05-9086-974d13a78894"> -<ExampleWords> -<AUni ws="en">disorganize, disarrange, shuffle, mess up, randomize</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to disorganizing things?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="17dfc73a-aed1-4594-b0a4-01d953d1f395" ownerguid="77fd8e17-97e1-4435-aa2a-a788b66b6441"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -<Sense> -<objsur guid="ed102c60-ed6d-498f-b2c4-a195d53a84e2" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="17e20b50-8ff5-4461-aa01-1fb2723f1c82" ownerguid="cbc0a8f5-9cba-41d2-a7e5-565fbf09c8c4"> -<ExampleWords> -<AUni ws="en">laugh at, mock, titter, snicker, snigger</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to laughing at someone because they did something wrong?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="17e234a0-2ed7-4243-9593-088134466d50" ownerguid="4ebad5df-71d5-4a52-b3db-362245493461"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="17e669db-8dd4-4453-8f06-74b46306369a" ownerguid="df1b214f-62e0-4f0b-a3f1-0dc6b450c891"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 7.11 Tsay warmega caprïchunta rurar wayinchöpis manami tranquïlu täcuntsu.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="17e8706c-fae0-43af-81f3-ef73697442d5" ownerguid="d92b9f97-110c-4e3a-9aec-90c55b96dc01"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="17ec79c9-aa3d-4bea-93c9-a9d7259a2f11" ownerguid="f2027748-f208-4392-a6e6-e34020699ecd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chulku</AUni> -<AUni ws="es">chulcu</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9ed9b96f-9e6c-41b4-af61-b323e4586764" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="17edf9cf-e156-43c9-8661-012c3d265172" ownerguid="a31c85df-02a9-4dd8-a094-0f07a0afbcca"> -<ExampleWords> -<AUni ws="en">take off, remove, wipe off, peel off, scrape off, scratch off, rub off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to removing a part from the surface of something?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="17f1cbee-937d-495a-88fe-b340cd60bb92" ownerguid="f77172f4-dd8d-4624-9b2c-c0aaf9303635"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">na</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">na</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">na</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">na</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">na</Run> -</AStr> -</Form> -<Morph> -<objsur guid="99b46deb-a91d-4222-a9fc-6c1a15fed4be" t="r" /> -</Morph> -<Msa> -<objsur guid="a5b30965-e5c8-452a-9057-ed02c784d19b" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="17f69c8c-4a75-470d-8ec6-aa5c792c11cb" ownerguid="0d427d55-d63e-4a35-a66a-5e4dce0a963e"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">This <is different from> that.; <a different> man</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">differ, different, else, vary, dissimilar, unlike</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe two things that are different?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="17f990dc-f713-41a6-9de2-5cabddc023cc" ownerguid="7806664c-6392-461e-ae19-341f6277385f"> -<Form> -<AUni ws="qvm-x-ach">cachu</AUni> -<AUni ws="qvm-x-acl">cachu; cachu; cacho</AUni> -<AUni ws="qvm-x-akh">kachu</AUni> -<AUni ws="qvm-x-akl">kachu; kachu; kacho</AUni> -<AUni ws="qvm-x-ame">kachu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="17fb1c0c-9be2-49fd-bad6-b97d9b55d338"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mantequi:lla</AUni> -<AUni ws="qvm-x-acl">mantequi:lla</AUni> -<AUni ws="qvm-x-akh">mantequi:lla</AUni> -<AUni ws="qvm-x-akl">mantequi:lla</AUni> -<AUni ws="qvm-x-ame">mantequi:lla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mantequilla</AUni> -<AUni ws="qvm-x-acl">+mantequilla</AUni> -<AUni ws="qvm-x-akh">+mantequilla</AUni> -<AUni ws="qvm-x-akl">+mantequilla</AUni> -<AUni ws="qvm-x-ame">+mantequilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.325" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1d856724-9224-4ace-8445-db8c9eb6a46e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mantequilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f66e1459-3efb-45ab-b7c3-ae8ef6f354cc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c2f99132-e6ba-4154-8dd4-52c1798b4325" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mantequilla 
\entryTyp root 
\gENG 
\gSPN 
\e +mantequilla 
\c N0 
\ach mantequi:lla 
\akh mantequi:lla 
\acl mantequi:lla 
\akl mantequi:lla 
\ame mantequi:lla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="17ff4c40-2fa7-4909-b53f-fde50695ba7f" ownerguid="72862fee-38c5-48e5-8db3-0a3884cb00e0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="1800b2af-bc63-4d75-9650-bee3a7041bed" ownerguid="3a4ced6d-61c4-41cf-ac8a-02ba84fa9c64"> -<Form> -<AUni ws="qvm-x-ach">evangëlicu</AUni> -<AUni ws="qvm-x-acl">evangëlicu; evangëlicu; evangëlico</AUni> -<AUni ws="qvm-x-akh">evangëlicu</AUni> -<AUni ws="qvm-x-akl">evangëlicu; evangëlicu; evangëlico</AUni> -<AUni ws="qvm-x-ame">evangëlicu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="18043b8c-3ff0-46a5-87cc-626f62f967cc" ownerguid="ef5ee2be-8a32-452a-818b-80191edb8e41"> -<Abbreviation> -<AUni ws="en">6.2.1.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.397" /> -<DateModified val="2022-9-23 16:55:8.397" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to growing coconuts.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Growing coconuts</AUni> -</Name> -<Questions> -<objsur guid="090d54f5-61a2-4bc2-bfa0-d5f682f172d7" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="180a2220-942c-4e17-96ee-cd4f63a4c715" ownerguid="f899802d-bd32-427f-a101-c84219f7e14e"> -<Abbreviation> -<AUni ws="en">1.2.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.947" /> -<DateModified val="2022-9-23 16:55:7.947" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to soil and dirt.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>2E Earth, Mud, Sand, Rock</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Soil, dirt</AUni> -</Name> -<OcmCodes> -<Uni>134 Soil</Uni> -</OcmCodes> -<Questions> -<objsur guid="9ebd5bca-91ba-46b6-9faf-13d78fab1a12" t="o" /> -<objsur guid="828f0cf4-d3a5-4925-bcb5-ffc078471c65" t="o" /> -<objsur guid="cf1dd9e1-cc9d-4c43-8c3a-6056d7424d29" t="o" /> -<objsur guid="840c5f9c-4237-4373-bc4a-d86c9686daef" t="o" /> -<objsur guid="d11205e0-a6de-4b44-9527-720ee936a78e" t="o" /> -<objsur guid="59ed0b4d-43d3-4b94-8e40-a480f11de970" t="o" /> -<objsur guid="753d4c2f-9114-4cbe-8c68-a848d5d3821a" t="o" /> -<objsur guid="354c00a6-129c-4d9f-8928-be3c0b5de6b0" t="o" /> -<objsur guid="55b2e7df-b066-4ad9-9b32-77006d853fdb" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="18142c23-7636-49af-bcec-0e6e060e15a2" ownerguid="57e367f4-7029-4916-a700-791db32b4745"> -<ExampleWords> -<AUni ws="en">extravagant, spendthrift, big spender</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe someone who spends lots of money carelessly?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="18147a68-b70a-4610-aa92-2f7c676b385b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ashta</AUni> -<AUni ws="qvm-x-acl">ashta</AUni> -<AUni ws="qvm-x-akh">ashta</AUni> -<AUni ws="qvm-x-akl">ashta</AUni> -<AUni ws="qvm-x-ame">ashta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ashta</AUni> -<AUni ws="qvm-x-acl">*ashta</AUni> -<AUni ws="qvm-x-akh">*ashta</AUni> -<AUni ws="qvm-x-akl">*ashta</AUni> -<AUni ws="qvm-x-ame">*ashta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.850" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6c5e6d98-80da-4d45-9105-abb3bf577f75" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ashta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9b03b531-bf8b-4ac1-87dd-56d150d1c68f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a8bf92dc-d6e1-40ce-8037-79ab89f17476" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ashta 
\entryTyp root 
\gENG carry 
\gSPN llevar 
\e *ashta 
\c V1 
\ach ashta 
\akh ashta 
\acl ashta 
\akl ashta 
\ame ashta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="18192f4e-6c42-4652-b9ba-795227adca37" ownerguid="f022c550-5762-4552-acd7-2871c850a990"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">touch</AUni> -<AUni ws="es">tocar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aed65dc5-d9b9-4aa8-8ff9-d05eeee810c7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="181b40d7-648b-4099-a472-142bd4d84753" ownerguid="d80360f9-7319-40a7-a2bc-fd8718711ba4"> -<ExampleWords> -<AUni ws="en">before, by, not later than, at the latest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that something must be done before a particular time?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="181cd4a8-1211-491a-90da-4ac86f6b6604"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mujusya; mujusya:</AUni> -<AUni ws="qvm-x-acl">mujusya; mujusya:</AUni> -<AUni ws="qvm-x-akh">mujusya; mujusya:</AUni> -<AUni ws="qvm-x-akl">mujusya; mujusya:</AUni> -<AUni ws="qvm-x-ame">muhusya; muhusya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*muqusya:</AUni> -<AUni ws="qvm-x-acl">*muqusya:</AUni> -<AUni ws="qvm-x-akh">*muqusya:</AUni> -<AUni ws="qvm-x-akl">*muqusya:</AUni> -<AUni ws="qvm-x-ame">*muqusya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.527" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="105f93d2-d1ea-4a5f-bea1-20aa1f052adc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*muqusya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="762c209f-1289-4276-ba23-aee426928f9e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7346748c-b035-4a34-9617-e6e1cabfc26e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *muqusya: 
\entryTyp root 
\gENG rust 
\gSPN oxidar 
\e *muqusya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach mujusya foreshortened 
\ach mujusya: 
\akh mujusya foreshortened 
\akh mujusya: 
\acl mujusya foreshortened 
\acl mujusya: 
\akl mujusya foreshortened 
\akl mujusya: 
\ame muhusya foreshortened 
\ame muhusya:</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="181d2445-358a-4ea0-aff5-8c1e7e6cf98e" ownerguid="67b648fc-5317-4a74-8f22-30e8b1b34d51"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">̈</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">̈</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">̈</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">̈</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">̈</Run> -</AStr> -</Form> -<Morph> -<objsur guid="3a878dea-02ea-4b48-879e-8e5e29865122" t="r" /> -</Morph> -<Msa> -<objsur guid="c3d4a91d-b03e-4087-92b5-780b4f2da3cf" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="181d4c04-9b7f-4c9b-b752-45c2e360773a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bunruru; bunruru:</AUni> -<AUni ws="qvm-x-acl">bunruro:; bunruru; bunruro</AUni> -<AUni ws="qvm-x-akh">bunruru; bunruru:</AUni> -<AUni ws="qvm-x-akl">bunruro:; bunruru; bunruro</AUni> -<AUni ws="qvm-x-ame">bunruru; bunruru:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*bunruru:</AUni> -<AUni ws="qvm-x-acl">*bunruru:</AUni> -<AUni ws="qvm-x-akh">*bunruru:</AUni> -<AUni ws="qvm-x-akl">*bunruru:</AUni> -<AUni ws="qvm-x-ame">*bunruru:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.100" /> -<DateModified val="2022-10-10 21:18:47.215" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6bb422e4-4aaa-458e-83d1-fc2310f27cd1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*bunruru:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="783b8e9c-2591-42bd-aef3-63e74126e07a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9cafb420-1105-4825-99d4-0fab3bca82f4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *bunruru: 
\entryTyp root 
\gENG 
\gSPN 
\e *bunruru: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach bunruru foreshortened 
\ach bunruru: 
\akh bunruru foreshortened 
\akh bunruru: 
\mp +underlong 
\acl bunruro: 
\acl bunruru foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl bunruro foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\mp +underlong 
\akl bunruro: 
\akl bunruru foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl bunruro foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame bunruru foreshortened 
\ame bunruru: 
\i PSA 77.17 Ciëluchömi räyupis bunrurömorgan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="182070a8-884a-46d8-8e14-86d75686fe1f" ownerguid="2bdfe506-0a28-45bd-81e1-44dcedcc262a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="1821036a-12bc-461a-ad04-57973984da95" ownerguid="a85d0ad2-7b36-4e0b-81a7-2eba5f25e335"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="18232240-b33d-426a-a36c-13158a0a6b58"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fácil; fa:cil</AUni> -<AUni ws="qvm-x-acl">fácil; fa:cil; fa:cel</AUni> -<AUni ws="qvm-x-akh">fácil; fa:cil</AUni> -<AUni ws="qvm-x-akl">fácil; fa:cil; fa:cel</AUni> -<AUni ws="qvm-x-ame">fácil; fa:cil</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fácil.1</AUni> -<AUni ws="qvm-x-acl">+fácil.1</AUni> -<AUni ws="qvm-x-akh">+fácil.1</AUni> -<AUni ws="qvm-x-akl">+fácil.1</AUni> -<AUni ws="qvm-x-ame">+fácil.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.538" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e4a9e5cf-c393-4c7d-b48b-18970fd4c023" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fácil.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4b8aa45e-886e-4cec-b678-abae3ab5ff27" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cdc5453b-0cd3-4158-8992-533ace2bdf85" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fácil.1 
\entryTyp root 
\gENG easy 
\gSPN fácil 
\e +fácil.1 
\c N0 
\mp +FinalC 
\ach fácil / _# 
\ach fa:cil / ~_# 
\akh fácil / _# 
\akh fa:cil / ~_# 
\acl fácil / _# 
\acl fa:cil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl fa:cel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl fácil / _# 
\akl fa:cil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl fa:cel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame fácil / _# 
\ame fa:cil / ~_# 
\i NEH 4.13 Paycunatami churargä murälla wagtancunaman, fácil yaycunanpag cagcunaman y pipis mana cuidashgan cagcunamanpis.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1824b3e4-ee51-453d-8241-ef1bdd6001b4" ownerguid="5c31bdf6-901f-4f14-ab64-7a99524710fc"> -<ExampleWords> -<AUni ws="en">don't mind, not be fussy, it doesn't bother me</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words indicate that you don't care, because you will be happy no matter what happens?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="18254021-1c97-400e-85ed-1a3be561cdbf" ownerguid="b541715e-a327-4ee0-91ba-c7a83d22314a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1828767b-54c7-4488-ac36-35f3ee5804d6" ownerguid="cce98603-ff8f-4213-945a-bd6746716139"> -<ExampleWords> -<AUni ws="en">land (and sea), dry land, mainland, continent, inland, interior</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the land in contrast to the sea?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="18290e88-b731-466a-a69f-aefda0747274" ownerguid="3e94437c-324b-4421-a269-9bfc77ce769d"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="9c6f951d-f11e-4d8a-878b-d1cd91242e46" t="o" /> -<objsur guid="8431ccef-39aa-444d-ad8f-8d447592998e" t="o" /> -<objsur guid="9267d7c0-3485-4662-a5fd-c580cbb419fd" t="o" /> -</MorphBundles> -</rt> -<rt class="MoInflAffMsa" guid="1829a081-bc32-4291-9767-5bec080e6a37" ownerguid="32493268-8f3b-4c37-90fe-b4ba87c4c7e1"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="fda4c591-1349-4f9e-ab87-905ae2aa25e1" t="r" /> -</Slots> -</rt> -<rt class="MoStemMsa" guid="182c3e39-7f77-4f98-91c7-0cb1a4cc368a" ownerguid="d69caa77-a8de-4fc5-b76c-34f080dcfc94"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="182e948f-306a-4aef-a16d-48713c8124f5" ownerguid="3ec38ec1-2665-4697-a56b-a5662620a8a1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="1832da1e-8cc7-4ed1-8a8c-d4288936ef07" ownerguid="a9069cca-dc28-485f-976f-faa06b34a5a5"> -<Form> -<AUni ws="qvm-x-ach">shana; shanä</AUni> -<AUni ws="qvm-x-acl">shana; shanä</AUni> -<AUni ws="qvm-x-akh">shana; shanä</AUni> -<AUni ws="qvm-x-akl">shana; shanä</AUni> -<AUni ws="qvm-x-ame">shana; shanä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="18350afb-db97-4998-a86a-777099b7af70" ownerguid="db895b5d-f779-4cbe-aefa-bc2315054920"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="18376088-c521-4dba-b401-31e381a95ddb" ownerguid="aee2b530-dd69-4b57-8158-840f451bf33f"> -<Form> -<AUni ws="qvm-x-ach">jara</AUni> -<AUni ws="qvm-x-acl">jara</AUni> -<AUni ws="qvm-x-akh">jara</AUni> -<AUni ws="qvm-x-akl">jara</AUni> -<AUni ws="qvm-x-ame">hara</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="183cca06-d629-47c4-8406-bd20aa1012d5" ownerguid="cfcd574e-d9af-4501-8d99-690a0c2c5d61"> -<Form> -<AUni ws="qvm-x-ach">escüdu</AUni> -<AUni ws="qvm-x-acl">escüdu; escüdu; escüdo</AUni> -<AUni ws="qvm-x-akh">escüdu</AUni> -<AUni ws="qvm-x-akl">escüdu; escüdu; escüdo</AUni> -<AUni ws="qvm-x-ame">escüdu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="183dc976-34ef-4c1a-aaf4-03531a320304"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">verbe:na</AUni> -<AUni ws="qvm-x-acl">verbe:na</AUni> -<AUni ws="qvm-x-akh">verbe:na</AUni> -<AUni ws="qvm-x-akl">verbe:na</AUni> -<AUni ws="qvm-x-ame">verbe:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+verbena.1</AUni> -<AUni ws="qvm-x-acl">+verbena.1</AUni> -<AUni ws="qvm-x-akh">+verbena.1</AUni> -<AUni ws="qvm-x-akl">+verbena.1</AUni> -<AUni ws="qvm-x-ame">+verbena.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.371" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cf8b4f36-8583-4340-b9c7-84e90484dea5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+verbena.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="10f288a1-2de7-4807-a081-da1b50cd81cd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a0d79b1a-bbf8-4dfb-854c-1cf7cd071a70" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +verbena.1 
\entryTyp root 
\gENG 
\gSPN 
\e +verbena.1 
\c N0 
\ach verbe:na 
\akh verbe:na 
\acl verbe:na 
\akl verbe:na 
\ame verbe:na</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="184191ad-3fa8-4637-b32b-d0295bffbc65" ownerguid="dae5a6f9-9810-4a71-841d-1d76b2f4697f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="184631ed-78d4-44f4-98c7-7e4ea2771e02" ownerguid="46dbda42-fe21-4e52-8eeb-4263ded7031b"> -<ExampleWords> -<AUni ws="en">January, February, March, April, May, June, July, August, September, October, November, December</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the names of the months of the year?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="18466f68-8c21-4054-acf2-869c4074b430" ownerguid="26bab2b5-98cd-499a-8628-93bf684bc5e7"> -<Form> -<AUni ws="qvm-x-ach">pis</AUni> -<AUni ws="qvm-x-acl">pis</AUni> -<AUni ws="qvm-x-akh">pis</AUni> -<AUni ws="qvm-x-akl">pis</AUni> -<AUni ws="qvm-x-ame">pis</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="8378f21c-cf54-437a-9d41-a303c764b326" t="r" /> -</PhoneEnv> -</rt> -<rt class="CmDomainQ" guid="1847fbb3-5fcc-43d8-9a99-1d1728968495" ownerguid="6187e620-89bd-4b9d-9896-0c0c788e7740"> -<ExampleWords> -<AUni ws="en">net, ball</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What equipment is used in the game?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="18487705-0e2c-42e4-902e-b5b57f49ce65" ownerguid="1e57b75a-93c6-4394-854b-f5b3d7ae21be"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">GAL 5.20 ïdulukunata adorapäkun y runa mayinpaq brüjupäkun.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="1849797f-182b-4cc0-8c2c-1faef0b4d8c2" ownerguid="647603c2-6f32-48f3-91fa-1f7f0e44b539"> -<ExampleWords> -<AUni ws="en">water (v), add water, put water on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to putting water on something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1849e75e-6992-42de-865d-90c813223472" ownerguid="646e0b34-c5a8-492e-af7f-e7df0d3c38fb"> -<Form> -<AUni ws="qvm-x-ach">serviciu; servicio</AUni> -<AUni ws="qvm-x-acl">serviciu; serviciu; servicio</AUni> -<AUni ws="qvm-x-akh">serviciu; servicio</AUni> -<AUni ws="qvm-x-akl">serviciu; serviciu; servicio</AUni> -<AUni ws="qvm-x-ame">serviciu; servicio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="185393f2-7d3d-4ed8-8930-2c6f3d3d35d1" ownerguid="7ba5073c-52e9-4c23-b555-4055ebc5cba2"> -<Form> -<AUni ws="qvm-x-ach">cerata</AUni> -<AUni ws="qvm-x-acl">cerata</AUni> -<AUni ws="qvm-x-akh">cerata</AUni> -<AUni ws="qvm-x-akl">cerata</AUni> -<AUni ws="qvm-x-ame">cerata</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="18561033-3136-46f7-aabd-3efff1a05172"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sartén</AUni> -<AUni ws="qvm-x-acl">sartén</AUni> -<AUni ws="qvm-x-akh">sartén</AUni> -<AUni ws="qvm-x-akl">sartén</AUni> -<AUni ws="qvm-x-ame">sartén</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sartén.1</AUni> -<AUni ws="qvm-x-acl">+sartén.1</AUni> -<AUni ws="qvm-x-akh">+sartén.1</AUni> -<AUni ws="qvm-x-akl">+sartén.1</AUni> -<AUni ws="qvm-x-ame">+sartén.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.459" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e332093c-a484-44b5-9b49-b48a74a726d1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sartén.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="211ed6f3-615a-426a-b8aa-4282cf8dc8ac" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="34bebc99-a603-457b-ae51-3e6730e20da9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sartén.1 
\entryTyp root 
\gENG frying.pan 
\gSPN 
\e +sartén.1 
\c N0 
\mp +FinalC 
\ach sartén / _# 
\akh sartén / _# 
\acl sartén / _# 
\akl sartén / _# 
\ame sartén / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="185782da-c97e-483e-a876-6bd7300eec09"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">y</AUni> -<AUni ws="qvm-x-acl">y</AUni> -<AUni ws="qvm-x-akh">y</AUni> -<AUni ws="qvm-x-akl">y</AUni> -<AUni ws="qvm-x-ame">y</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.589" /> -<DateModified val="2022-10-16 15:10:57.56" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="2" /> -<LexemeForm> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">VOC</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6498f449-3d31-42a7-861a-9e0a1540ecf5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx VOC 
\entryTyp suffix 
\gENG VOC 
\gSPN VOC 
\e VOC 
\c N0/N0 
\o 160 
\mp +foreshortens 
\ach y / _# 
\akh y / _# 
\acl y / _# 
\akl y / _# 
\ame y / _# 
\mp +FinalC 
\mcc VOC / [TakeVOC] ... _</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="18595df7-1c69-40db-a7c1-74d490115c0c" ownerguid="e836b01b-6c1a-4d41-b90a-ea5f349f88d4"> -<Abbreviation> -<AUni ws="en">1.1.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.916" /> -<DateModified val="2022-9-23 16:55:7.916" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to causing air to move.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Blow air</AUni> -</Name> -<Questions> -<objsur guid="4bf7d06b-8080-41fe-b403-ae4acf9aab41" t="o" /> -<objsur guid="ef5b6218-4ae5-4de2-81df-1e7d73e8532b" t="o" /> -<objsur guid="b2007d1f-fc95-41e0-8e25-f577f3d1c415" t="o" /> -<objsur guid="cf1bc6f3-d623-4664-90d1-e85aaca9318e" t="o" /> -<objsur guid="640da054-d8c7-419b-a885-52edc06ea982" t="o" /> -<objsur guid="c0043fc0-97fb-49a2-a7e1-1414d42ec19c" t="o" /> -<objsur guid="0568f8f1-2b3b-4000-a444-9db3bced12a7" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="93b8bd61-137a-4ebc-b12f-52fa5d2b3ea4" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="185aa155-3604-4c14-a1c1-4d5b1f7a509a" ownerguid="457b9098-4e4c-41cf-9a91-c2cf5be1e867"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="d086d43a-9db6-4f58-8a05-b04f0e3e77c0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="185acfbd-c888-4bb7-a66e-9d33c7d841d5" ownerguid="d574c970-6834-4566-ae37-f42c7e95483b"> -<ExampleWords> -<AUni ws="en">heavy, burdensome, cumbersome, cumbrous, heavyweight, hefty, lumpish, massive, overweight, ponderous, unwieldy, weighty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is heavy?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="185b34c4-7f19-4cdc-a053-b2adb5aa85ba" ownerguid="390ad7fc-8360-4eae-8736-3aedc15ae659"> -<ExampleWords> -<AUni ws="en">road map, street map, contour map, geographical map, political map</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of maps are there?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="185d398b-1e9d-4de6-9606-908b55df3c3a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">janapay</AUni> -<AUni ws="qvm-x-acl">janapay</AUni> -<AUni ws="qvm-x-akh">janapay</AUni> -<AUni ws="qvm-x-akl">janapay</AUni> -<AUni ws="qvm-x-ame">hanapay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hanapay</AUni> -<AUni ws="qvm-x-acl">*hanapay</AUni> -<AUni ws="qvm-x-akh">*hanapay</AUni> -<AUni ws="qvm-x-akl">*hanapay</AUni> -<AUni ws="qvm-x-ame">*hanapay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.660" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aa9792af-02c7-400d-bf36-b34d38dca998" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hanapay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="450e5bad-4be9-4a84-9924-6f20034eb152" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2bcb8b2d-3843-477d-b01c-f14ad032b474" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hanapay 
\entryTyp root 
\gENG 
\gSPN 
\e *hanapay 
\c N0 
\mp +FinalC 
\ach janapay 
\akh janapay 
\acl janapay 
\akl janapay 
\ame hanapay</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="185d68ff-bf3a-4eec-9e9d-9dd4b781a8ed"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tucuy</AUni> -<AUni ws="qvm-x-acl">tucuy</AUni> -<AUni ws="qvm-x-akh">tukuy</AUni> -<AUni ws="qvm-x-akl">tukuy</AUni> -<AUni ws="qvm-x-ame">tukuy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tukuy</AUni> -<AUni ws="qvm-x-acl">*tukuy</AUni> -<AUni ws="qvm-x-akh">*tukuy</AUni> -<AUni ws="qvm-x-akl">*tukuy</AUni> -<AUni ws="qvm-x-ame">*tukuy</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.977" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7bada9b1-679f-4fa2-9342-872d628161f3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tukuy</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c89f2bcc-fc36-4b18-8e8a-0bccefa6f373" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="41f6181e-80ac-4d31-b864-cedbff8b8d40" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tukuy 
\entryTyp root 
\gENG all.kinds 
\gSPN toda.clase 
\e *tukuy 
\c N0 
\mp +FinalC 
\ach tucuy 
\akh tukuy 
\acl tucuy 
\akl tukuy 
\ame tukuy</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="1860968e-a899-4e22-b1f1-34c74536d538"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsegla</AUni> -<AUni ws="qvm-x-acl">tsegla</AUni> -<AUni ws="qvm-x-akh">tseqla</AUni> -<AUni ws="qvm-x-akl">tseqla</AUni> -<AUni ws="qvm-x-ame">tsiqla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chiqlla</AUni> -<AUni ws="qvm-x-acl">*chiqlla</AUni> -<AUni ws="qvm-x-akh">*chiqlla</AUni> -<AUni ws="qvm-x-akl">*chiqlla</AUni> -<AUni ws="qvm-x-ame">*chiqlla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.315" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="960d046c-5933-4f3e-b502-0749d76ccdf5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chiqlla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="857aab64-f05a-4ac3-840b-dd163e72a0c0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1b35fa2e-9d26-4482-b41e-06ad33619b1a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chiqlla 
\entryTyp root 
\gENG waist 
\gSPN cinturón 
\e *chiqlla 
\c N0 
\ach tsegla 
\akh tseqla 
\acl tsegla 
\akl tseqla 
\ame tsiqla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1862fe42-9ae8-46a8-8ae1-ef9eb406577c" ownerguid="ac4b7b10-975d-4504-8cad-8c3b1b593e09"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="1867689c-a66b-41ba-bcbb-cee8117ef8a9" ownerguid="cd3c67b1-76b4-429e-9022-7e4f66b59661"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EXO 5.12 Tsauraga Israel runacuna intëru Egiptupa mashtacargan punshapa trucan trïgu pashapa tumpuncunata ashinanpag.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="186814de-424b-46de-99e9-78bad588c44c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lacli</AUni> -<AUni ws="qvm-x-acl">lacli; lacle</AUni> -<AUni ws="qvm-x-akh">lakli</AUni> -<AUni ws="qvm-x-akl">lakli; lakle</AUni> -<AUni ws="qvm-x-ame">lakli</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llaklli.v</AUni> -<AUni ws="qvm-x-acl">*llaklli.v</AUni> -<AUni ws="qvm-x-akh">*llaklli.v</AUni> -<AUni ws="qvm-x-akl">*llaklli.v</AUni> -<AUni ws="qvm-x-ame">*llaklli.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.124" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="153af247-f733-401e-b674-678a9c347e57" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llaklli.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a185a816-aa61-4ad1-bc23-336e55f6d452" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e18f1f89-c637-4733-9f17-982a52e6beed" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llaklli.v 
\entryTyp root 
\gENG to.weed 
\gSPN deshierbar 
\e *llaklli.v 
\c V2 
\mp +FinalI 
\ach lacli 
\akh lakli 
\acl lacli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lacle +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lakli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lakle +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lakli</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="186e1efa-a4c0-4d36-baff-c02bd21b0000" ownerguid="799fe404-5ef1-4781-b56a-ccf2ac640bfb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spider</AUni> -<AUni ws="es">araña</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a6636684-7a4d-45f1-a61f-54b08f5d2b68" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="Segment" guid="186f74ee-d532-4c2a-bc3f-38d2ef2da245" ownerguid="3a6ba2a1-6774-4591-a376-2c85ffa26673"> -<Analyses> -<objsur guid="852b390a-04c7-4ffa-97e4-072ebffa88e9" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="CmDomainQ" guid="18716470-684f-47eb-8fc6-5111f75e5ed6" ownerguid="85912845-21b0-41eb-8b8c-1f5c3d53df08"> -<ExampleWords> -<AUni ws="en">motivating</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that causes someone to feel enthusiastic?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1871ca15-def7-403f-82ce-45d317a7a3c9" ownerguid="26dae1cf-1c92-4d82-a045-9bc8b3ea3647"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">load</AUni> -<AUni ws="es">carga</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6e34d3c9-43ec-4ed7-928a-0c3c1a725fc9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="18738cd8-afda-4543-88d4-d3d903cacf3d" ownerguid="06c59373-ac0f-4096-8c61-a86a78a0b2c3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">persuade</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cc9e40c1-ecd6-41a1-a614-ade37c7c7f49" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="18761d0f-a6b2-4181-8be6-6f839f5f2e2c" ownerguid="f352a437-58f2-4920-aec3-eda8041f7447"> -<ExampleWords> -<AUni ws="en">first (adv), first of all, beginning with, starting with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate an event or action that is first?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="187653e3-e53f-4248-834a-54b01e88b014" ownerguid="8bdf4847-903b-4af6-9553-3cfab65de516"> -<ExampleWords> -<AUni ws="en">calculate, work out, figure out, make, figure, compute, solve</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to determining the amount of something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1877bd52-c36c-4c14-9698-43ffb363e78d" ownerguid="9de5b3c3-74fa-48dd-8b6a-fcc711a258b5"> -<Form> -<AUni ws="qvm-x-ach">tupïdu</AUni> -<AUni ws="qvm-x-acl">tupïdu; tupïdu; tupïdo</AUni> -<AUni ws="qvm-x-akh">tupïdu</AUni> -<AUni ws="qvm-x-akl">tupïdu; tupïdu; tupïdo</AUni> -<AUni ws="qvm-x-ame">tupïdu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="18797252-68a4-4235-8672-9c5f12ef5e42" ownerguid="e3b02c76-d7ad-4d40-8fba-486bb3dcb1e2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bad.word</AUni> -<AUni ws="es">disparate</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="57835ac2-acce-4654-a32c-8672106a2aee" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="187a1c16-3bd1-4775-9edb-0c3bd0fbf36f" ownerguid="38bbb33a-90bf-4a2c-a0e5-4bde7e134bd9"> -<ExampleWords> -<AUni ws="en">sensitive, perceptive, acute sense</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe someone who can sense things better than other people?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="187c1138-5ed9-4a82-bf4c-ed727091d6ba" ownerguid="ad29b77c-0527-4b24-8b5a-73aff588a255"> -<Form> -<AUni ws="qvm-x-ach">catsu</AUni> -<AUni ws="qvm-x-acl">catsu; catso</AUni> -<AUni ws="qvm-x-akh">katsu</AUni> -<AUni ws="qvm-x-akl">katsu; katso</AUni> -<AUni ws="qvm-x-ame">katsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="187d666d-edb6-4f4a-8b6a-3ef3710dc50c" ownerguid="c44fcbde-c71e-44da-aba4-c575abff4057"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="18827245-e541-4039-a53c-0c4b7e2715ac"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">kamaraqla</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="188275bb-7309-4cb6-92d9-6f7aa9a1273b" ownerguid="3c130521-28d4-40bb-abbd-e5a2e8445814"> -<Form> -<AUni ws="qvm-x-ach">patga</AUni> -<AUni ws="qvm-x-acl">patga</AUni> -<AUni ws="qvm-x-akh">patqa</AUni> -<AUni ws="qvm-x-akl">patqa</AUni> -<AUni ws="qvm-x-ame">patqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="1882ccaf-04c8-4ff5-bb6f-738e384a0600"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">auquillu</AUni> -<AUni ws="qvm-x-acl">auquillu; auquillu; auquillo</AUni> -<AUni ws="qvm-x-akh">awkillu</AUni> -<AUni ws="qvm-x-akl">awkillu; awkillu; awkillo</AUni> -<AUni ws="qvm-x-ame">awkillu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*awkillu</AUni> -<AUni ws="qvm-x-acl">*awkillu</AUni> -<AUni ws="qvm-x-akh">*awkillu</AUni> -<AUni ws="qvm-x-akl">*awkillu</AUni> -<AUni ws="qvm-x-ame">*awkillu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.890" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="546d8b80-12e1-4fe2-b71b-1851fb71b3df" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*awkillu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e30ff684-cbdd-4c4d-9c2a-be1bd765f960" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="002c4623-d2b9-4539-a81c-dc759bc8f604" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *awkillu 
\entryTyp root 
\gENG mountain 
\gSPN 
\e *awkillu 
\c N0 
\ach auquillu 
\akh awkillu 
\acl auquillu / _# 
\acl auquillu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl auquillo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl awkillu / _# 
\akl awkillu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl awkillo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame awkillu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="18836c56-2f51-46ba-85b6-479df30fd057"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sitiu; sitio</AUni> -<AUni ws="qvm-x-acl">sitiu; sitiu; sitio</AUni> -<AUni ws="qvm-x-akh">sitiu; sitio</AUni> -<AUni ws="qvm-x-akl">sitiu; sitiu; sitio</AUni> -<AUni ws="qvm-x-ame">sitiu; sitio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sitio</AUni> -<AUni ws="qvm-x-acl">+sitio</AUni> -<AUni ws="qvm-x-akh">+sitio</AUni> -<AUni ws="qvm-x-akl">+sitio</AUni> -<AUni ws="qvm-x-ame">+sitio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.703" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e1594ad1-dc88-4c1d-9ef8-458a7c3dd817" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sitio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d7595222-ceb3-4cd7-b45c-b3320e555a79" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="43880891-0aaf-451e-90d9-f717201a753a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sitio 
\entryTyp root 
\gENG place 
\gSPN sitio 
\e +sitio 
\c N0 
\ach sitiu / ~_# 
\ach sitio / _# 
\akh sitiu / ~_# 
\akh sitio / _# 
\acl sitiu / ~_# 
\acl sitiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sitio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sitiu / ~_# 
\akl sitiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sitio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sitiu / ~_# 
\ame sitio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="1884cb09-d450-4435-9067-dbfbfff707e0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pe:chu</AUni> -<AUni ws="qvm-x-acl">pe:chu; pe:chu; pe:cho</AUni> -<AUni ws="qvm-x-akh">pe:chu</AUni> -<AUni ws="qvm-x-akl">pe:chu; pe:chu; pe:cho</AUni> -<AUni ws="qvm-x-ame">pe:chu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pecho</AUni> -<AUni ws="qvm-x-acl">+pecho</AUni> -<AUni ws="qvm-x-akh">+pecho</AUni> -<AUni ws="qvm-x-akl">+pecho</AUni> -<AUni ws="qvm-x-ame">+pecho</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.780" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b885c4f5-389c-4023-b3e8-9d2dd562fb70" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pecho</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="87a42488-93d2-4bca-a825-ee372936d8c0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fa6070ac-a165-483e-bcb8-efa9a90190ea" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pecho 
\entryTyp root 
\gENG breast 
\gSPN pecho 
\e +pecho 
\c N0 
\ach pe:chu 
\akh pe:chu 
\acl pe:chu / _# 
\acl pe:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pe:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pe:chu / _# 
\akl pe:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pe:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pe:chu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="1885464b-9ace-482f-b19d-09002bc0a8d1" ownerguid="2dac3ce5-e364-4f46-a877-c29b09e16999"> -<Form> -<AUni ws="qvm-x-ach">chacwas</AUni> -<AUni ws="qvm-x-acl">chacwas</AUni> -<AUni ws="qvm-x-akh">chakwas</AUni> -<AUni ws="qvm-x-akl">chakwas</AUni> -<AUni ws="qvm-x-ame">chakwas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1886503b-d589-4bfb-8cce-756470082f92" ownerguid="c1a63ba2-1db6-410d-a4ed-5f64d1798bc1"> -<ExampleWords> -<AUni ws="en">tide, rising tide, ebb tide, storm tide, high tide, low tide, the tide is in/out, neap tide</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the tide?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="1886ffc9-0a18-41ea-b2f6-c17c297f1681" ownerguid="6137239a-b469-46be-b7cb-b9ac22fcc195"> -<Abbreviation> -<AUni ws="en">3.6.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.184" /> -<DateModified val="2022-9-23 16:55:8.184" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to science.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Science</AUni> -</Name> -<OcmCodes> -<Uni>378 Atomic Energy; 810 Sciences and Humanities; Exact Knowledge; 811 Logic; 812 Philosophy; 813 Scientific Method; 814 Humanistic Studies; 815 Science; 816 Applied Science; 820 Ideas about Nature and People; Ideas about Nature and Man; 821 Ethnometeorology; 822 Ethnophysics; 823 Ethnogeography; 824 Ethnobotany; 825 Ethnozoology; 826 Ethnoanatomy; 827 Ethnophysiology; 828 Ethnopyschology; 829 Ethnosociology</Uni> -</OcmCodes> -<Questions> -<objsur guid="ebc01ac5-90a2-44d1-92b4-25843a6bf967" t="o" /> -<objsur guid="3611bf7a-d338-4b2e-944d-1388e63729eb" t="o" /> -<objsur guid="ce80e12a-cfde-4be3-91ab-069fb2324f3b" t="o" /> -<objsur guid="f85e1341-c32f-47b9-9d6e-877aff02a072" t="o" /> -<objsur guid="adfd8e34-9e60-45d9-aa62-36b6622d92e6" t="o" /> -<objsur guid="bb722f2f-6214-4dfd-b772-518f665f0ae3" t="o" /> -<objsur guid="588aa376-c63c-4ade-8da0-309ff4a15ee5" t="o" /> -<objsur guid="2e1619e4-a447-431c-a404-6b40325b51e8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="18885339-b20b-4ce5-a634-4a2231bc075a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aburri:du</AUni> -<AUni ws="qvm-x-acl">aburri:du; aburri:du; aburri:do</AUni> -<AUni ws="qvm-x-akh">aburri:du</AUni> -<AUni ws="qvm-x-akl">aburri:du; aburri:du; aburri:do</AUni> -<AUni ws="qvm-x-ame">aburri:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+aburrido</AUni> -<AUni ws="qvm-x-acl">+aburrido</AUni> -<AUni ws="qvm-x-akh">+aburrido</AUni> -<AUni ws="qvm-x-akl">+aburrido</AUni> -<AUni ws="qvm-x-ame">+aburrido</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.619" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ac44f84e-3bed-41fd-9565-615babdcce1c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+aburrido</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="09d13348-839e-470d-8dd2-c9a275d102bb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="be5685d5-6fd8-4d49-93e1-8b1237070318" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +aburrido 
\entryTyp root 
\gENG impatient 
\gSPN aburrido 
\e +aburrido 
\c N0 
\ach aburri:du 
\akh aburri:du 
\acl aburri:du / _# 
\acl aburri:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl aburri:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl aburri:du / _# 
\akl aburri:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl aburri:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame aburri:du</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="1889402e-5885-43c0-9b04-32c7a3031f8f" ownerguid="6a4ac57f-5256-4dca-a331-d54b1d122d6f"> -<Form> -<AUni ws="qvm-x-ach">viciu; vicio</AUni> -<AUni ws="qvm-x-acl">viciu; viciu; vicio</AUni> -<AUni ws="qvm-x-akh">viciu; vicio</AUni> -<AUni ws="qvm-x-akl">viciu; viciu; vicio</AUni> -<AUni ws="qvm-x-ame">viciu; vicio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="188ba7c5-49b2-4162-85f2-778797fd5960"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mulli</AUni> -<AUni ws="qvm-x-acl">mulli; mulli; mulle</AUni> -<AUni ws="qvm-x-akh">mulli</AUni> -<AUni ws="qvm-x-akl">mulli; mulli; mulle</AUni> -<AUni ws="qvm-x-ame">mulli</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mulli</AUni> -<AUni ws="qvm-x-acl">*mulli</AUni> -<AUni ws="qvm-x-akh">*mulli</AUni> -<AUni ws="qvm-x-akl">*mulli</AUni> -<AUni ws="qvm-x-ame">*mulli</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.497" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="afb198f1-7704-4f26-9862-707f514cc21a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mulli</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6835b705-bd58-4085-be16-d3ddf2aff737" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c3149d4e-05ef-4014-8fbc-d7255fcd4683" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mulli 
\entryTyp root 
\gENG fat 
\gSPN gordo 
\e *mulli 
\c N0 
\mp +FinalI 
\ach mulli 
\akh mulli 
\acl mulli / _# 
\acl mulli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mulle +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mulli / _# 
\akl mulli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mulle +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mulli</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="188bcef7-edc5-465b-ae81-ca4993aa67ab" ownerguid="4d040b38-4fb4-4bf7-8372-0ca7819dc383"> -<Form> -<AUni ws="qvm-x-ach">malwa</AUni> -<AUni ws="qvm-x-acl">malwa</AUni> -<AUni ws="qvm-x-akh">malwa</AUni> -<AUni ws="qvm-x-akl">malwa</AUni> -<AUni ws="qvm-x-ame">malwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="188d87af-7ca1-4062-82d9-275bb91da5f7" ownerguid="0bce7afa-8c12-4b94-8603-ddbae7206c70"> -<Form> -<AUni ws="qvm-x-ach">lä</AUni> -<AUni ws="qvm-x-acl">lä</AUni> -<AUni ws="qvm-x-akh">lä</AUni> -<AUni ws="qvm-x-akl">lä</AUni> -<AUni ws="qvm-x-ame">lä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="188fa1eb-3f9c-4d8b-ab1c-ba814d8889c8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cosecha</AUni> -<AUni ws="qvm-x-acl">cosecha</AUni> -<AUni ws="qvm-x-akh">cosecha</AUni> -<AUni ws="qvm-x-akl">cosecha</AUni> -<AUni ws="qvm-x-ame">cosecha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cosechar</AUni> -<AUni ws="qvm-x-acl">+cosechar</AUni> -<AUni ws="qvm-x-akh">+cosechar</AUni> -<AUni ws="qvm-x-akl">+cosechar</AUni> -<AUni ws="qvm-x-ame">+cosechar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.201" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="312f80e4-26ee-4c04-b319-eb6f65ae52ff" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cosechar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="663abbb4-7a3c-41bd-b6af-b541d6f59231" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="55a216b6-99d3-434b-8119-0342742bc4cc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cosechar 
\entryTyp root 
\gENG harvest 
\gSPN cosechar 
\e +cosechar 
\c V2 
\ach cosecha 
\akh cosecha 
\acl cosecha 
\akl cosecha 
\ame cosecha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="1892095d-b9c5-49df-a950-e43aeba7196a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsolga</AUni> -<AUni ws="qvm-x-acl">tsolga</AUni> -<AUni ws="qvm-x-akh">tsolqa</AUni> -<AUni ws="qvm-x-akl">tsolqa</AUni> -<AUni ws="qvm-x-ame">tsulqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chullaqa.1</AUni> -<AUni ws="qvm-x-acl">*chullaqa.1</AUni> -<AUni ws="qvm-x-akh">*chullaqa.1</AUni> -<AUni ws="qvm-x-akl">*chullaqa.1</AUni> -<AUni ws="qvm-x-ame">*chullaqa.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.335" /> -<DateModified val="2022-10-10 21:18:47.207" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c8e95c3a-b8e0-444c-94b4-bf0889bb245e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chullaqa.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="33435f22-d32b-48c3-9744-89d737371501" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7653e3d4-82b7-4cdd-a13d-11d605027196" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chullaqa.1 
\entryTyp root 
\gENG 
\gSPN 
\e *chullaqa.1 
\c V2 
\ach tsolga 
\akh tsolqa 
\acl tsolga 
\akl tsolqa 
\ame tsulqa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="18924ddb-69db-4c9a-ab9d-70facc22d603"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">animal</AUni> -<AUni ws="qvm-x-acl">animal</AUni> -<AUni ws="qvm-x-akh">animal</AUni> -<AUni ws="qvm-x-akl">animal</AUni> -<AUni ws="qvm-x-ame">animal</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+animal</AUni> -<AUni ws="qvm-x-acl">+animal</AUni> -<AUni ws="qvm-x-akh">+animal</AUni> -<AUni ws="qvm-x-akl">+animal</AUni> -<AUni ws="qvm-x-ame">+animal</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.769" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="93d1cf18-fef9-4720-8237-0acc60762f07" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+animal</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6478a79a-f38b-4d32-afab-83dd2bd5a831" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aaa533e0-4447-41d4-895d-b6aa7a4fb5d3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +animal 
\entryTyp root 
\gENG wild.animal 
\gSPN animal 
\e +animal 
\c N0 
\mp +FinalC 
\ach animal 
\akh animal 
\acl animal 
\akl animal 
\ame animal</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="1894eec4-4bd6-4826-a5bf-36a13d4d83f0" ownerguid="621ef4a5-ba61-48b2-8393-72b1b27b64e7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">fiyupa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">fiyupa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">fiyupa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">fiyupa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">fiyupa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f3f36382-d934-42ae-b249-b63285c40de3" t="r" /> -</Morph> -<Msa> -<objsur guid="2b29ba57-74ac-45ef-8f07-ca9a5d66a2b9" t="r" /> -</Msa> -<Sense> -<objsur guid="752709be-3797-4fae-8cdf-d2c6e9f50406" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="1896578b-8a80-4536-93b9-f91d80fccc66" ownerguid="8ee56c80-4f6b-4d4e-b1f6-6989b08d0f46"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="18974132-2c3a-4ab0-8e63-945620bb58a9" ownerguid="59aa8630-2777-4443-b02c-d6b48271f9e1"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="1898939c-7b57-48f4-8319-0e1025c4e534" ownerguid="4b36e29e-c7e0-4b62-8b9f-1564aff4be75"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lightly</AUni> -<AUni ws="es">ligeramente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2c7bd9de-cf7b-4b60-9521-e237cffb1c6e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="189c658f-cee3-40d1-88f6-58edb6505fed" ownerguid="3cd36fee-d3e2-4b9b-82a7-6f25d696c83f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="189cc20b-2c61-4286-989f-e5bbc4549c74" ownerguid="721e2ee8-7ea5-4d17-94cc-d77d8e92bd27"> -<ExampleWords> -<AUni ws="en">politeness, etiquette, formality, manners, courtesy, tact</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the quality of being polite?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="189cc28c-1263-4a57-bbe8-a83d5d1dd3a0"> -<Form> -<Str> -<Run ws="en">transi</Run> -</Str> -</Form> -</rt> -<rt class="CmSemanticDomain" guid="189f8c29-f0ff-44b6-a0db-5b287c412a75" ownerguid="f7da1907-e6c5-4d21-a8e8-81376f3467df"> -<Abbreviation> -<AUni ws="en">4.8.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.276" /> -<DateModified val="2022-9-23 16:55:8.276" /> -<Description> -<AStr ws="en"> -<Run ws="en">The words in this domain describe a situation in which people disagree about something so strongly that they might start fighting. But these words imply that they have not started fighting yet.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>39 Hostility, Strife; 39E Strife, Struggle</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Hostility</AUni> -</Name> -<OcmCodes> -<Uni>578 Ingroup Antagonisms</Uni> -</OcmCodes> -<Questions> -<objsur guid="24adea45-4651-4daa-b1b2-9a06e6eea6e9" t="o" /> -<objsur guid="007947c6-f72f-4274-986d-a7bde11e9732" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="eaed8c63-9f97-4116-927c-19f364a99e72" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="763fa2e0-c119-4f50-a307-81ed8c3497ed" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="18a1c5f0-a63c-49f6-89e1-9dced40784a9" ownerguid="a086be2e-79f6-4ba1-9677-fb6af2a33cdf"> -<Form> -<AUni ws="qvm-x-ach">wega</AUni> -<AUni ws="qvm-x-acl">wega</AUni> -<AUni ws="qvm-x-akh">weqa</AUni> -<AUni ws="qvm-x-akl">weqa</AUni> -<AUni ws="qvm-x-ame">wiqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StTxtPara" guid="18a1e0e4-c4be-401d-9fe5-39f92714d4cd" ownerguid="7d78db90-a316-4649-84b0-32db353e8633"> -<Contents> -<Str> -<Run ws="qvm-x-akh">tsaycho</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="3b9482d0-18ad-447d-ae2a-6c71cdaeb5c3" t="o" /> -</Segments> -</rt> -<rt class="LexSense" guid="18a2fb8a-16a7-4c21-a801-45c2db6d189f" ownerguid="12e5427f-6be6-4fcd-9834-c8ae477fd415"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">slave</AUni> -<AUni ws="es">esclavo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a6745453-3f1b-4716-97c7-2f860ddf88c3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="18a6684f-d324-45ee-855c-44d473916b14" ownerguid="21167445-f1b1-49b4-b147-bc792616c432"> -<Abbreviation> -<AUni ws="en">8.4.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a time period that is part of a longer time period.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>68 Aspect; 67 Duration of Time; 67F Duration of Time with Reference to Some Point of Time: Until, Delay, Still, From</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Aspectual time</AUni> -</Name> -<Questions> -<objsur guid="da15f3ef-54e7-4f4f-baf0-51817eda4f16" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="3f37bb6f-cd32-4430-aa35-700acabbee15" t="o" /> -<objsur guid="bbc5b3a2-4c6e-4d07-849b-4d616615a794" t="o" /> -<objsur guid="7b816f6a-4b46-403d-a1a2-2914ee070568" t="o" /> -<objsur guid="50c1a392-2928-407a-8306-3c70141e375e" t="o" /> -<objsur guid="615674ac-8158-4089-ae70-b55472fd279b" t="o" /> -<objsur guid="457231c8-4eb6-4460-aa45-3e9f2c4e8975" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="18a691ea-0bfc-4c58-b0fb-083ad493a98f" ownerguid="32e85ff9-9b83-4501-9b53-0a7b5fce9e56"> -<Form> -<AUni ws="qvm-x-ach">listu</AUni> -<AUni ws="qvm-x-acl">listu; listo</AUni> -<AUni ws="qvm-x-akh">listu</AUni> -<AUni ws="qvm-x-akl">listu; listo</AUni> -<AUni ws="qvm-x-ame">listu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="18ac9189-a8a0-488f-9895-d60eb0c950f4" ownerguid="5261497b-6beb-4db1-9de2-10b5f6f8ec69"> -<ExampleWords> -<AUni ws="en">go, dig in, have at it, let's go, let's do it, move it, let's get going, "on your marks, get set, go", "ready, set, go"</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What do people say when they want someone else to start?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="18af19b2-868a-45e4-b761-e0414d8debc1" ownerguid="e6cce7f5-6441-4d6e-8d80-af1b477342ac"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="9a413a24-c54a-46a9-ada0-50f15ddaad42" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="18b25043-9cdb-448b-a831-eabee9bfdacb" ownerguid="7a84fc29-136a-471c-81b1-61b911297af4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shag</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shag</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shaq</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shaq</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shaq</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a855a64d-1bb8-44af-b5f0-302d292c4df2" t="r" /> -</Morph> -<Msa> -<objsur guid="dc53e817-8c9f-407c-9e09-cc7f8ae7e19f" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="18b3ca02-18fe-4ab5-8709-c20957a0a2fb" ownerguid="9b0fef63-5935-447d-801a-bb02dd6212bb"> -<Abbreviation> -<AUni ws="en">4.3.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.225" /> -<DateModified val="2022-9-23 16:55:8.225" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to being proud--to think that something or someone is very good and to feel very good about them, especially to think and feel very good about yourself--to think that you are better than others, to think that you are better than you really are, or to talk and act as if you were better than other people.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88A' Arrogance, Haughtiness, Pride</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Proud</AUni> -</Name> -<Questions> -<objsur guid="781c7352-ec45-4bec-83a0-82a2ad435424" t="o" /> -<objsur guid="212d4c4e-646d-4c51-b4fa-425a5adaa27b" t="o" /> -<objsur guid="c91ea7d1-eb8e-49b2-95cf-91a87e723e36" t="o" /> -<objsur guid="393ee095-a5b3-4048-834d-2aa4e248b31b" t="o" /> -<objsur guid="e5e78c78-5fbd-40e0-95f2-6156f0dd17e8" t="o" /> -<objsur guid="bfc0d927-7901-4798-8f91-a547f3931ffb" t="o" /> -<objsur guid="ce3f9a94-8d75-46fe-b64b-78886566b9c7" t="o" /> -<objsur guid="1eafddce-8f98-461c-b552-2b745dcafdfe" t="o" /> -<objsur guid="3e1569c3-3d28-40c7-be31-9244a2d4529a" t="o" /> -<objsur guid="5fd7b144-11a2-43d5-84d9-cdca23a8a2b2" t="o" /> -<objsur guid="23ac2717-adc1-4592-8108-c3a4cbcec811" t="o" /> -<objsur guid="a88ab17e-77dc-42dc-ac74-390c53fedd7b" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="80415fac-b3d8-4e3c-bdb8-dc92f3c6dad8" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoAffixAllomorph" guid="18b86caf-a560-48d6-ab1d-03882ed1fbd7" ownerguid="008cecc8-8fcc-439a-88eb-d8bd404d5da9"> -<Form> -<AUni ws="qvm-x-ach">nin</AUni> -<AUni ws="qvm-x-acl">nin</AUni> -<AUni ws="qvm-x-akh">nin</AUni> -<AUni ws="qvm-x-akl">nin</AUni> -<AUni ws="qvm-x-ame">nin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="35058c7a-447a-4ee8-89bd-323da24bf7c5" t="r" /> -</PhoneEnv> -</rt> -<rt class="CmDomainQ" guid="18b9fd62-b74e-40d2-baae-7c8f73a0fde5" ownerguid="b1688009-474d-4e2e-a137-acc1e32a435f"> -<ExampleWords> -<AUni ws="en">thicker, thickest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to being thicker than another thing?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="18baa780-a049-4a32-a529-946761bb6c1e" ownerguid="1fda1a3b-a0e6-4384-8150-d8f0b354e1cb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bedding</AUni> -<AUni ws="es">cama</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6d6aee81-3230-4f76-9954-3d46659f0662" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="18bc40a8-fc75-436d-9131-460c9ac3fa03" ownerguid="13568de9-7fd1-4997-a27d-bef1989b5a47"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">potato</AUni> -<AUni ws="es">papa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f0d59d06-7dd4-473b-9b42-86d47f5c07f5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="18bed929-d313-4506-b9c4-cea2b5ec7bd4" ownerguid="bf0bdeeb-564d-407b-8bdf-31221aff7364"> -<ExampleWords> -<AUni ws="en">responsible</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone in a position of authority?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="18bf6c79-6399-4977-be3d-93135302d8c4" ownerguid="b2fd2d29-1389-4114-91a8-15b8d9742794"> -<Abbreviation> -<AUni ws="en">9.6.2.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.720" /> -<DateModified val="2022-9-23 16:55:8.720" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that something was done for the purpose of another thing happening.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89I Purpose</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Purpose</AUni> -</Name> -<Questions> -<objsur guid="a269179d-53ea-4542-b62f-e5ab71161f81" t="o" /> -<objsur guid="360c5abe-dc7d-441f-8800-f58700958f8c" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="9f91cd53-8b9e-4d76-82e4-5ede39112322" t="r" /> -<objsur guid="b6b73d41-e23f-4f22-b01e-7e75f4115fce" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="4fdf3cf1-0808-4f11-acdd-9db71550baab" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="18c1f944-eaf0-4e7e-8799-463da831e6f0" ownerguid="7acde7d5-1a5b-4e16-99c7-5f297d2643f4"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="060efb5b-4847-4ae5-b1d3-ba93468a0b64" t="o" /> -<objsur guid="ddb427dd-e4da-4cfc-9063-515e1f48c9b8" t="o" /> -<objsur guid="19876485-5fc7-4769-92a1-4e768ef5c8ab" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="18c4655f-4ea5-4faf-b72d-05b99e36b986" ownerguid="a3ba10f3-66e3-4ad5-8057-453b8941e497"> -<ExampleWords> -<AUni ws="en">fight a war, wage war, be at war, declare war, make war, go on the warpath, fight, clash</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to fighting a war?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="18c4b5d8-10e8-48d0-ae10-254baf852348" ownerguid="f0a3d251-8e38-4a25-8292-29ed6dc06c82"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="18c52ad6-be8c-4959-8b27-1b436d2d929a" ownerguid="99b5b80a-a2d6-4820-adfc-1da72528c272"> -<ExampleWords> -<AUni ws="en">correspond, be consistent with, agree, tally, coincide, match up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words indicate that two things that people said are the same?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="18c582a9-0303-4d08-949f-91719501988a" ownerguid="957e5b95-cd8d-4059-9447-97ad174673f9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="18c64ad2-68c9-4668-9146-65df5dfa5129" ownerguid="849db14f-7aec-4e44-a9c9-d98772cb3144"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">orphan</AUni> -<AUni ws="es">huTrfano</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f4402a20-b1dc-4c3f-8d51-52968c80fc77" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="18c9dabd-86ca-4643-80ba-d7b65638475e" ownerguid="0e551ad2-042f-4035-8e3d-0f8da29e7ef3"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="18ca1814-41aa-4c4b-805c-937e8abbfd2e" ownerguid="5dfd85c4-18ab-4790-bba6-a791f3e77cc6"> -<Form> -<AUni ws="qvm-x-ach">sábanas; säbanas</AUni> -<AUni ws="qvm-x-acl">sábanas; säbanas</AUni> -<AUni ws="qvm-x-akh">sábanas; säbanas</AUni> -<AUni ws="qvm-x-akl">sábanas; säbanas</AUni> -<AUni ws="qvm-x-ame">sábanas; säbanas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="18cc54c7-78b3-4062-85d6-c13cc59564a2" ownerguid="902ae190-e3c0-4d02-ba71-2045aadeb331"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="18cf7845-3bad-49f1-a70a-ec50823592cf" ownerguid="267e008e-547d-458b-b216-680ceab68b5f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sacred</AUni> -<AUni ws="es">sagrada</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="50bd29cc-b77f-4864-b56c-e70ab258e7d3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="18d0e279-ec76-463d-83cc-1c2e6f08c0d5" ownerguid="32092595-7c2a-4740-a8aa-8df5f4af5540"> -<Form> -<AUni ws="qvm-x-ach">izula</AUni> -<AUni ws="qvm-x-acl">izula</AUni> -<AUni ws="qvm-x-akh">izula</AUni> -<AUni ws="qvm-x-akl">izula</AUni> -<AUni ws="qvm-x-ame">izula</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="18d70325-cb68-4127-b695-3c18f7d79468" ownerguid="d2fbac5f-56d8-44be-844c-ad2acc3db7ca"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiGloss" guid="18d90e98-12d4-4906-a167-93370dcf1c79" ownerguid="29a5be6e-9941-4b90-8d56-727b860e6046"> -<Form> -<AUni ws="en">barley</AUni> -<AUni ws="es">cebada</AUni> -</Form> -</rt> -<rt class="MoMorphType" guid="18d9b1c3-b5b6-4c07-b92c-2fe1d2281bd4" ownerguid="d7f713d8-e8cf-11d3-9764-00c04f186933"> -<Abbreviation> -<AUni ws="en">ifxnfx</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">An infixing interfix is an infix that can occur between two roots or stems.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">infixing interfix</AUni> -</Name> -<Postfix> -<Uni>-</Uni> -</Postfix> -<Prefix> -<Uni>-</Uni> -</Prefix> -<SecondaryOrder val="0" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="18d9bebb-8d01-4cc1-8ac2-b84282a5921a" ownerguid="a31c85df-02a9-4dd8-a094-0f07a0afbcca"> -<ExampleWords> -<AUni ws="en">come apart, come free, come loose, come off, come undone, come unglued, come unhooked, come unstuck, break up, disintegrate, fall apart, fall off, fall to pieces, peel off, pop off, separate, unravel, unroll, work free, work loose</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to things coming apart?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="18e00566-096a-420f-a41e-aaaffcb9027e" ownerguid="f25efa89-4563-455b-b79c-4a684f17e2c0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cleft.palat</AUni> -<AUni ws="es">labio leporino?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="39d21c58-d9de-4376-b0e3-36c2e716e7d5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="18e5c604-25d6-4281-95c4-0920ba3a4ca8" ownerguid="43cb3488-711b-4d9d-9d0e-03d0c1f6eb8b"> -<ExampleWords> -<AUni ws="en">disgrace, dishonor, indignity, scandal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something that causes someone to feel ashamed?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="18e64269-5afa-4579-8789-72ad4940a2de"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">adora</AUni> -<AUni ws="qvm-x-acl">adora</AUni> -<AUni ws="qvm-x-akh">adora</AUni> -<AUni ws="qvm-x-akl">adora</AUni> -<AUni ws="qvm-x-ame">adora</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+adorar</AUni> -<AUni ws="qvm-x-acl">+adorar</AUni> -<AUni ws="qvm-x-akh">+adorar</AUni> -<AUni ws="qvm-x-akl">+adorar</AUni> -<AUni ws="qvm-x-ame">+adorar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.649" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ceacf42c-2844-4f63-837d-e59dc64a66cb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+adorar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3bc89f1d-dedb-410c-92d2-6d3aa2c30ea4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d31b2492-5ec8-4a57-8fc5-47c1f8b6491e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +adorar 
\entryTyp root 
\gENG worship 
\gSPN adorar 
\e +adorar 
\c V2 
\ach adora 
\akh adora 
\acl adora 
\akl adora 
\ame adora</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="18e71625-8ad9-43a1-9180-a8b1def6edf2" ownerguid="1f49a130-d4e0-4090-b0f3-6d778c4e1ce1"> -<Form> -<AUni ws="qvm-x-ach">tinqui</AUni> -<AUni ws="qvm-x-acl">tinqui; tinque</AUni> -<AUni ws="qvm-x-akh">tinki</AUni> -<AUni ws="qvm-x-akl">tinki; tinke</AUni> -<AUni ws="qvm-x-ame">tinki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="18e9622c-d31f-4bbc-aed6-e867365f2ece" ownerguid="b0ebe7d2-fde4-4b6e-a4f6-ed9f0ba0308a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="18e988c2-855b-42ed-955d-5ef7c22f4c2f" ownerguid="8a7fdd75-01dc-4d40-84ff-fa0484da3abb"> -<ExampleWords> -<AUni ws="en">thug, brute, hooligan, hoodlum, animal, psychopath, lout</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a person who is violent?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="18eb3939-0c02-4362-b9da-116fd8041522" ownerguid="df96455e-7c76-4c28-b068-f6c3fc846d45"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -<Sense> -<objsur guid="7cd134ea-89c1-4a60-8992-dcac673bd263" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="18f56d8d-781b-4a85-afb1-df5a8bfe435b" ownerguid="323ce24a-4adf-4efd-9eb6-8a3de1b7afa7"> -<Form> -<AUni ws="qvm-x-ach">hïgus</AUni> -<AUni ws="qvm-x-acl">hïgus</AUni> -<AUni ws="qvm-x-akh">hïgus</AUni> -<AUni ws="qvm-x-akl">hïgus</AUni> -<AUni ws="qvm-x-ame">hïgus</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="18f7863a-a08b-4bb3-b310-cbfb9b7354e4" ownerguid="75e6c9e1-b36e-4814-ae4a-cdb676bf9d07"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">runa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">runa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">runa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">runa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">runa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="dbbd8356-c9df-482b-a128-55aaaa8ad47f" t="r" /> -</Morph> -<Msa> -<objsur guid="735a29e0-40d3-4d25-9e9a-e8181d173c29" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="18f8473d-c49c-4c85-aea1-3f9eb6ed4a41" ownerguid="91cc7e8f-522e-4ff1-b545-5a5b72f4e953"> -<ExampleWords> -<AUni ws="en">worse, lesser, inferior</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is worse than something else?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="18f9a61c-88d0-4234-a962-056de3517d8d" ownerguid="01184d2a-7488-4439-927e-6d306d383f48"> -<Form> -<AUni ws="qvm-x-ach">asenta</AUni> -<AUni ws="qvm-x-acl">asenta</AUni> -<AUni ws="qvm-x-akh">asenta</AUni> -<AUni ws="qvm-x-akl">asenta</AUni> -<AUni ws="qvm-x-ame">asenta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="18fa8e4f-fcaf-4a16-8721-a2cee24cf900" ownerguid="0a27d9d1-0f1f-475a-92a2-bbccf5b15f41"> -<ExampleWords> -<AUni ws="en">hungry, hunger, famished, starved, ravenous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being hungry?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="18faa5e6-42ef-4a6d-ba8f-ab0276a93aee" ownerguid="e5246c0e-798c-439d-8749-30ef44e4521f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">BEN6</AUni> -<AUni ws="es">BEN6</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3e0cb08e-f924-4737-a489-3b32295615ca" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="18fe6bcc-b6a4-41cd-8188-62865fe6ca70" ownerguid="5c770098-2c91-4a9c-bfa0-a7ffaa871a7f"> -<ExampleWords> -<AUni ws="en">labor union, farmers cooperative, collective bargaining, labor relations</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to an organization of workers?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="18ff083f-a708-4124-8895-343dabe9bb35" ownerguid="965f9204-b884-4952-b2fd-2c95379ca9a7"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="1903ba2d-1a43-4b32-8965-60bc673915ec" ownerguid="ba685b9f-4cbe-4c3a-be7a-979fd014c56f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ooze</AUni> -<AUni ws="es">exudar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c764e6df-b66a-4691-8d9e-2b3e5e8e13e0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="190561bf-aa8c-4a33-985b-cd1592759912" ownerguid="9d428e57-e125-4575-b165-9bc6fd4ec507"> -<ExampleWords> -<AUni ws="en">convincing, persuasive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a person who can persuade others?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="19099415-cb0c-4b4a-83ed-9e101f34c67e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bendisi</AUni> -<AUni ws="qvm-x-acl">bendisi; bendise</AUni> -<AUni ws="qvm-x-akh">bendisi</AUni> -<AUni ws="qvm-x-akl">bendisi; bendise</AUni> -<AUni ws="qvm-x-ame">bendisi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bendecir.1</AUni> -<AUni ws="qvm-x-acl">+bendecir.1</AUni> -<AUni ws="qvm-x-akh">+bendecir.1</AUni> -<AUni ws="qvm-x-akl">+bendecir.1</AUni> -<AUni ws="qvm-x-ame">+bendecir.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.961" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="20eec82f-9b58-4aad-858f-d29228102fe6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bendecir.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="73bd0425-c4e6-408f-8dac-ad167b8f2943" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1961a111-bc94-46c4-8e26-052d1e84eece" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bendecir.1 
\entryTyp root 
\gENG to.bless 
\gSPN bendecir 
\e +bendecir.1 
\c V2 
\mp +assimilated 
\ach bendisi 
\akh bendisi 
\acl bendisi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl bendise +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl bendisi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl bendise +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame bendisi 
\mp +FinalI</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="19113eea-3a3d-4585-afc4-1586a9b28a01"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cinturón; cinturon</AUni> -<AUni ws="qvm-x-acl">cinturón; cinturon</AUni> -<AUni ws="qvm-x-akh">cinturón; cinturon</AUni> -<AUni ws="qvm-x-akl">cinturón; cinturon</AUni> -<AUni ws="qvm-x-ame">cinturón; cinturon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cinturón</AUni> -<AUni ws="qvm-x-acl">+cinturón</AUni> -<AUni ws="qvm-x-akh">+cinturón</AUni> -<AUni ws="qvm-x-akl">+cinturón</AUni> -<AUni ws="qvm-x-ame">+cinturón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.122" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2d152d7a-aaf7-4d2b-a15f-e996e295b7d7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cinturón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0b5f7ade-475e-4834-826e-a9dec3e5f06d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6ce38366-3569-4f08-b6e6-adfa58202059" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cinturón 
\entryTyp root 
\gENG belt 
\gSPN cinturón 
\e +cinturón 
\c N0 
\mp +FinalC 
\ach cinturón / _# 
\ach cinturon / ~_# 
\akh cinturón / _# 
\akh cinturon / ~_# 
\acl cinturón / _# 
\acl cinturon / ~_# 
\akl cinturón / _# 
\akl cinturon / ~_# 
\ame cinturón / _# 
\ame cinturon / ~_# 
\i 1SA 18.4 Nircurnami Jonatánga Davidta goycorgan jatirashgan capötinta, espädanta, flëchanta y cinturonnintapis.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="1911a7ae-ad67-4130-8b4e-51e22108cfde" ownerguid="e2a74cc1-03ee-4ca1-adcd-92b9fe2501de"> -<Form> -<AUni ws="qvm-x-ach">gora</AUni> -<AUni ws="qvm-x-acl">gora</AUni> -<AUni ws="qvm-x-akh">qora</AUni> -<AUni ws="qvm-x-akl">qora</AUni> -<AUni ws="qvm-x-ame">qura</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="1913fed8-1f71-4689-a3e9-74482e6c1b46"> -<Analyses> -<objsur guid="19d82084-dfa2-4189-9c8e-aea682049398" t="o" /> -<objsur guid="5f6a50e1-9754-44d0-9c78-d127fa949918" t="o" /> -<objsur guid="621ef4a5-ba61-48b2-8393-72b1b27b64e7" t="o" /> -<objsur guid="80b2aed8-1a4e-447b-bfc8-c68f2881fd42" t="o" /> -<objsur guid="8e1acde5-d828-43de-9d8f-f481480cf559" t="o" /> -<objsur guid="a2391a6a-c20c-4a14-bb4c-c2e8bbd697a6" t="o" /> -<objsur guid="fdd0e73f-9587-4bc9-98da-baf9233943bf" t="o" /> -</Analyses> -<Checksum val="1609332616" /> -<Form> -<AUni ws="qvm-x-akh">fiyupa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="StTxtPara" guid="1915d1c3-1c71-4415-912d-0327ae56198f" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">aywapäkushqayki. </Run> -<Run ws="en">\tr < V1 *aywa > PLALL REL1 2P</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="385164fe-8da0-4a08-9c02-9b4e14e48715" t="o" /> -<objsur guid="b7b2fe3e-31a0-4d05-857c-9a0cbbda2755" t="o" /> -</Segments> -</rt> -<rt class="LexEntry" guid="19180e45-9355-41ed-94ab-f5f51f4eb8a4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">malaga; malaga:</AUni> -<AUni ws="qvm-x-acl">malaga; malaga:</AUni> -<AUni ws="qvm-x-akh">malaqa; malaqa:</AUni> -<AUni ws="qvm-x-akl">malaqa; malaqa:</AUni> -<AUni ws="qvm-x-ame">malaqa; malaqa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mallaqa:</AUni> -<AUni ws="qvm-x-acl">*mallaqa:</AUni> -<AUni ws="qvm-x-akh">*mallaqa:</AUni> -<AUni ws="qvm-x-akl">*mallaqa:</AUni> -<AUni ws="qvm-x-ame">*mallaqa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.285" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4cb37737-3471-465d-bb02-1c845fa0d958" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mallaqa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="32983d4c-1a12-48b9-8bd9-525af5db4fe8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="83e66103-5555-49a4-b43f-7da3ac65591d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mallaqa: 
\entryTyp root 
\gENG hunger 
\gSPN hambre 
\e *mallaqa: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach malaga foreshortened 
\ach malaga: 
\akh malaqa foreshortened 
\akh malaqa: 
\acl malaga foreshortened 
\acl malaga: 
\akl malaqa foreshortened 
\akl malaqa: 
\ame malaqa foreshortened 
\ame malaqa:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1918649d-7299-402e-af69-fabd5b813133" ownerguid="fd9b8618-1f62-419b-85c3-365a12e85523"> -<ExampleWords> -<AUni ws="en">accede, accession, accept, acquiesce, acquiescence, give assent, consent, yield, grant a point</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to changing your thinking so that you agree with someone else?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="19192369-ae80-4963-87d4-e37090d27006"> -<Analyses> -<objsur guid="1d11a03e-037b-4e20-b890-2965f8667156" t="o" /> -<objsur guid="55d75f66-810f-4a08-8eb0-fa7078873979" t="o" /> -<objsur guid="582fe42e-9eb0-4deb-b681-ef835b7747f3" t="o" /> -</Analyses> -<Checksum val="-368363722" /> -<Form> -<AUni ws="qvm-x-akh">aywaptiki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiWordform" guid="19195524-4f64-4a9b-a889-00a51ee347bf"> -<Analyses> -<objsur guid="14e6ffd2-75db-4fce-84df-725aac9f55fb" t="o" /> -</Analyses> -<Checksum val="-907556723" /> -<Form> -<AUni ws="qvm-x-akh">kankimantsu</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="1919b709-5d41-4594-9259-9a64b46a125f" ownerguid="df687f25-5ed2-43c1-a2c9-78c1db3b4381"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="191c6030-6e33-4380-9a14-aa0ad4db4643"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">orgullo:sa</AUni> -<AUni ws="qvm-x-acl">orgullo:sa</AUni> -<AUni ws="qvm-x-akh">orgullo:sa</AUni> -<AUni ws="qvm-x-akl">orgullo:sa</AUni> -<AUni ws="qvm-x-ame">orgullo:sa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+orgullosa</AUni> -<AUni ws="qvm-x-acl">+orgullosa</AUni> -<AUni ws="qvm-x-akh">+orgullosa</AUni> -<AUni ws="qvm-x-akl">+orgullosa</AUni> -<AUni ws="qvm-x-ame">+orgullosa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.638" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7f8b2a13-8686-44bc-84fa-ca5df877023e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+orgullosa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aa9771e8-28e3-4325-a656-e3c67beea6be" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d8283e1f-1d92-45cf-a874-29f42d8b9896" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +orgullosa 
\entryTyp root 
\gENG 
\gSPN 
\e +orgullosa 
\c N0 
\ach orgullo:sa 
\akh orgullo:sa 
\acl orgullo:sa 
\akl orgullo:sa 
\ame orgullo:sa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="191c6340-34ee-4b75-a82f-7ed4db0f1a03" ownerguid="b63ce4e1-c832-4623-b489-b8b8ad094e8c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">talk</AUni> -<AUni ws="es">hablar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2dd120e8-8df6-4fda-b5b9-b1d1026d933f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="191ca5a5-0a67-426e-adfc-6fdf7c2aaa2c" ownerguid="dc177f3c-d0fd-4232-adf1-a77b339cdbb2"> -<Abbreviation> -<AUni ws="en">6.5.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.458" /> -<DateModified val="2022-9-23 16:55:8.458" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to a house where people live.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">House</AUni> -</Name> -<Questions> -<objsur guid="a5e8813a-aee1-4b33-98e6-1b29106e9448" t="o" /> -<objsur guid="a37a7f06-4b86-4af7-8262-f5c8c810f08c" t="o" /> -<objsur guid="cf41eab5-df71-4347-9f2b-bceafcee1178" t="o" /> -<objsur guid="2ae41cbe-9289-4d72-9415-450228af5808" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="19226a49-7c8e-4fb3-9297-e3517753c31b" ownerguid="ba1e8d2b-7d3e-4b65-a9be-ee1a4063c796"> -<ExampleWords> -<AUni ws="en">paranoid, paranoia</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to being worried when there is nothing to worry about?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1924617f-5c7f-4b1e-8cb6-a55666815325" ownerguid="068d0802-c08c-4b0e-9861-dc975d9235d8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">candle</AUni> -<AUni ws="es">vela</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a4fd9ee3-efb7-44b3-91ba-3212bc1818f2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="1926c011-b8c7-4363-ae71-d334b4fb65b4" ownerguid="bdc50987-5450-4385-a5ab-43970ecf866f"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PhEnvironment" guid="1929b7d2-c2d8-4659-8d3c-ab5b69aaf7f9" ownerguid="be765e3e-ea5e-11de-9d42-0013722f8dec"> -<Name> -<AUni ws="en">before -tsi, CAUS</AUni> -</Name> -<StringRepresentation> -<Str> -<Run underline="none" ws="en">/_ tsi</Run> -</Str> -</StringRepresentation> -</rt> -<rt class="LexSense" guid="192dbac7-beff-44be-967b-159b6d0cc5b0" ownerguid="ad852fb4-7c09-4628-81bc-d28b7174cc0e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">straight</AUni> -<AUni ws="es">de.frente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="16805469-5fd7-403f-b5f6-a3cb87531a55" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="192ea1f9-49b4-4f3a-996d-586273f8951d" ownerguid="99988f94-3aa4-4984-88df-ae228f01d3b7"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">This isn't the same man, it's <another> man.; I'm not talking about John, I'm talking about the <other> man.; I'm talking about someone <else>.; It must have been someone <other than> you.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">other, another, different, else, other than</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to another thing?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="193257cf-2e65-4773-8f1e-ed20c3ca484c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">iglesia</AUni> -<AUni ws="qvm-x-acl">iglesia</AUni> -<AUni ws="qvm-x-akh">iglesia</AUni> -<AUni ws="qvm-x-akl">iglesia</AUni> -<AUni ws="qvm-x-ame">iglesia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+iglesia.1</AUni> -<AUni ws="qvm-x-acl">+iglesia.1</AUni> -<AUni ws="qvm-x-akh">+iglesia.1</AUni> -<AUni ws="qvm-x-akl">+iglesia.1</AUni> -<AUni ws="qvm-x-ame">+iglesia.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.782" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3942c01d-f528-41aa-9510-820b0546a853" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+iglesia.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="56cfc0db-0a07-40df-9cab-428bf6a2572f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b859f3aa-edf8-4ff7-b31f-51b84e74a4fc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +iglesia.1 
\entryTyp root 
\gENG church 
\gSPN iglesia 
\e +iglesia.1 
\c N0 
\ach iglesia 
\akh iglesia 
\acl iglesia 
\akl iglesia 
\ame iglesia</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="19345475-28a5-4ce0-a084-c8bcd677d049" ownerguid="4c70907c-3512-45e0-9ce4-bb71d68bfcbd"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 14.17 Imatapis costalarcur jitaregnogmi jutsa rurashgäcunatapis gonganquipag.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="1935e307-f0cc-42bc-b391-1f00291f52c6" ownerguid="1383f82a-bf94-4fd3-97c6-2f922df73929"> -<Form> -<AUni ws="qvm-x-ach">görra</AUni> -<AUni ws="qvm-x-acl">görra</AUni> -<AUni ws="qvm-x-akh">görra</AUni> -<AUni ws="qvm-x-akl">görra</AUni> -<AUni ws="qvm-x-ame">görra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="19373fa1-471d-49f6-8dd7-819dcf2199b1" ownerguid="c9084524-56b4-44e2-84c0-6c4294cbf0ea"> -<Form> -<AUni ws="qvm-x-ach">goshpi</AUni> -<AUni ws="qvm-x-acl">goshpi; goshpe</AUni> -<AUni ws="qvm-x-akh">qoshpi</AUni> -<AUni ws="qvm-x-akl">qoshpi; qoshpe</AUni> -<AUni ws="qvm-x-ame">qushpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="193ad8a1-bbf8-4ddc-8cf3-ab7a6278ed09" ownerguid="ed269fb7-fd3c-467a-907e-d485731d9068"> -<Form> -<AUni ws="qvm-x-ach">funccioneru; funccionero</AUni> -<AUni ws="qvm-x-acl">funccioneru; funccioneru; funccionero</AUni> -<AUni ws="qvm-x-akh">funccioneru; funccionero</AUni> -<AUni ws="qvm-x-akl">funccioneru; funccioneru; funccionero</AUni> -<AUni ws="qvm-x-ame">funccioneru; funccionero</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="193f6362-cc2d-4723-9949-afc0692c28be" ownerguid="e88bdf5a-590d-43c9-b964-845f8ef04beb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="19413b9f-423f-45db-848d-1908f92c9f33"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">goshtatay</AUni> -<AUni ws="qvm-x-acl">goshtatay</AUni> -<AUni ws="qvm-x-akh">qoshtatay</AUni> -<AUni ws="qvm-x-akl">qoshtatay</AUni> -<AUni ws="qvm-x-ame">qushtatay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qushtatay</AUni> -<AUni ws="qvm-x-acl">*qushtatay</AUni> -<AUni ws="qvm-x-akh">*qushtatay</AUni> -<AUni ws="qvm-x-akl">*qushtatay</AUni> -<AUni ws="qvm-x-ame">*qushtatay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.882" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2332dea9-d5fb-4152-932c-3f4da8b75c41" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qushtatay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="73b13cea-6630-479a-9b53-214284e276ba" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ea371548-8ead-4869-8842-6cf05ea77301" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qushtatay 
\entryTyp root 
\gENG smoke 
\gSPN humo 
\e *qushtatay 
\c N0 
\mp +FinalC 
\ach goshtatay 
\akh qoshtatay 
\acl goshtatay 
\akl qoshtatay 
\ame qushtatay</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="19418d3e-9360-4259-84ea-c01ec8fa2272" ownerguid="5b146ef5-e84b-4863-8075-8d9394ba0454"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="19439634-92c1-488b-97a5-2b15d95700b9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lushwa; lushwa:</AUni> -<AUni ws="qvm-x-acl">lushwa; lushwa:</AUni> -<AUni ws="qvm-x-akh">lushwa; lushwa:</AUni> -<AUni ws="qvm-x-akl">lushwa; lushwa:</AUni> -<AUni ws="qvm-x-ame">lushwa; lushwa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llushwa:</AUni> -<AUni ws="qvm-x-acl">*llushwa:</AUni> -<AUni ws="qvm-x-akh">*llushwa:</AUni> -<AUni ws="qvm-x-akl">*llushwa:</AUni> -<AUni ws="qvm-x-ame">*llushwa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.245" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c95b69ad-61a1-45e4-8a53-eb211d68e6fb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llushwa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c4eb60da-938c-4943-9a76-7d6c35b845f3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="31ad7880-ec7d-4a42-b26a-4613c789afe7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llushwa: 
\entryTyp root 
\gENG slip 
\gSPN resbalar 
\e *llushwa: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach lushwa foreshortened 
\ach lushwa: 
\akh lushwa foreshortened 
\akh lushwa: 
\acl lushwa foreshortened 
\acl lushwa: 
\akl lushwa foreshortened 
\akl lushwa: 
\ame lushwa foreshortened 
\ame lushwa:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1946d320-2b71-4ea6-99c2-b26c655a4ef4" ownerguid="880d12b1-fa64-4a4b-801d-c3b45f43792f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1948b5a8-a830-493d-a93d-de6f5cbde00f" ownerguid="54f59b23-a2e8-4bfc-9da2-7dd7c37d2a47"> -<ExampleWords> -<AUni ws="en">have... -en</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) anterior: the situation occurs prior to reference time, and is relevant to the situation at reference time. This is different from a simple past or perfective, where the situation is reported for its own sake and independent of its relevance to any other situation.</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1948d50f-1850-456d-8dd2-4498cd72670d" ownerguid="a30e0391-ea64-4938-9eca-023c351d60af"> -<ExampleWords> -<AUni ws="en">discover, uncover, detect, find out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to discovering information?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="19510e79-0d56-42cb-93f5-e2cfc1daa1df" ownerguid="5c468a85-e45f-4ea0-a3ba-68feda7e85a1"> -<ExampleWords> -<AUni ws="en">knife, clamp, forceps, incubator</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What materials and instruments are used by obstetricians and midwives?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1952d9db-6039-4028-a561-c034c1d1e969" ownerguid="1133ad78-9ce9-46aa-b181-bb6f7a84a07b"> -<ExampleWords> -<AUni ws="en">nearby, nearest, the next, neighboring, local, surrounding</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is near?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="195801a7-52b5-4203-b90e-05a0ebeb8135"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">lakikushaq</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="PunctuationForm" guid="195842d2-2aa8-4566-bb2d-3fa40a9e3257"> -<Form> -<Str> -<Run ws="en">m</Run> -</Str> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="1958aa79-e531-41dc-a190-bb47e69b842f" ownerguid="ba506c00-02c6-4f6a-8222-135a37c52c53"> -<Form> -<AUni ws="qvm-x-ach">llausha</AUni> -<AUni ws="qvm-x-acl">llausha</AUni> -<AUni ws="qvm-x-akh">llawsha</AUni> -<AUni ws="qvm-x-akl">llawsha</AUni> -<AUni ws="qvm-x-ame">llawsha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="195bad5d-4c9a-40c4-b9aa-021b797f26af"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lata</AUni> -<AUni ws="qvm-x-acl">lata</AUni> -<AUni ws="qvm-x-akh">lata</AUni> -<AUni ws="qvm-x-akl">lata</AUni> -<AUni ws="qvm-x-ame">lata</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llata</AUni> -<AUni ws="qvm-x-acl">*llata</AUni> -<AUni ws="qvm-x-akh">*llata</AUni> -<AUni ws="qvm-x-akl">*llata</AUni> -<AUni ws="qvm-x-ame">*llata</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.172" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3756df57-05a0-4b04-bd8c-1b0ba79aeefe" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llata</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6db6ab9f-f824-44df-9643-4e00417aa710" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5aebb3ae-fff0-43ed-bc73-1c487e131d03" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llata 
\entryTyp root 
\gENG prostrate 
\gSPN prostarse 
\e *llata 
\c V1 
\ach lata 
\akh lata 
\acl lata 
\akl lata 
\ame lata 
\mcc *llata / ~_ BEN1 PRT1 
\i Exo 28.26 Tsay argöllacuna pectoral rurincho car efodman lataranga.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="195cd53a-6e26-4661-8356-d8d60017fbe5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">instrumentu; instrumento</AUni> -<AUni ws="qvm-x-acl">instrumentu; instrumentu; instrumento</AUni> -<AUni ws="qvm-x-akh">instrumentu; instrumento</AUni> -<AUni ws="qvm-x-akl">instrumentu; instrumentu; instrumento</AUni> -<AUni ws="qvm-x-ame">instrumentu; instrumento</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+instrumento</AUni> -<AUni ws="qvm-x-acl">+instrumento</AUni> -<AUni ws="qvm-x-akh">+instrumento</AUni> -<AUni ws="qvm-x-akl">+instrumento</AUni> -<AUni ws="qvm-x-ame">+instrumento</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.830" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3919396f-5815-4cd9-8b60-718a0d26d6ea" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+instrumento</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="397ccb44-2729-4224-b5ae-ef54ae1dbf45" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9ff6143e-d2ce-4dd1-9d72-418912941c6c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +instrumento 
\entryTyp root 
\gENG 
\gSPN 
\e +instrumento 
\c N0 
\ach instrumentu / ~_# 
\ach instrumento / _# 
\akh instrumentu / ~_# 
\akh instrumento / _# 
\acl instrumentu / ~_# 
\acl instrumentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl instrumento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl instrumentu / ~_# 
\akl instrumentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl instrumento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame instrumentu / ~_# 
\ame instrumento / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="195e5ba6-2515-4260-996c-0b75def11f64" ownerguid="81ecd805-5f71-4a50-81f2-f54772c89d15"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">disoriented</AUni> -<AUni ws="es">desorientado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="55d2fee3-5370-4d45-b661-65228e2e2c5a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="1960be68-e9a7-4d1a-aa71-598449bece1f" ownerguid="728dc1a1-1574-4824-b1d9-b3fdde6ff6b3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mourn</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8661d2a5-63da-4d8d-b39c-bc052d111240" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="1961a111-bc94-46c4-8e26-052d1e84eece" ownerguid="19099415-cb0c-4b4a-83ed-9e101f34c67e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.bless</AUni> -<AUni ws="es">bendecir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="73bd0425-c4e6-408f-8dac-ad167b8f2943" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="1962e41c-8e3d-4388-997f-38f963e6f54e"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">päkU</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="19636687-6b9e-4e70-9a81-27e59be353de" ownerguid="94ae196f-4dc0-4168-98c2-f14467cbda96"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="196586d9-80b9-493a-a9aa-0e020d04b7ad" ownerguid="00734aec-1d6f-45ab-ab85-f6c0ea7e6465"> -<Form> -<AUni ws="qvm-x-ach">aceiti; aceite</AUni> -<AUni ws="qvm-x-acl">aceiti; aceiti; aceite</AUni> -<AUni ws="qvm-x-akh">aceiti; aceite</AUni> -<AUni ws="qvm-x-akl">aceiti; aceiti; aceite</AUni> -<AUni ws="qvm-x-ame">aceiti; aceite</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1967236e-33ac-4025-88bc-e6740719d645" ownerguid="06b23bcd-69df-471a-b5a5-4ca8cab7f0d9"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John was talking <about> the new seed he bought.; I read <about> John in the newspaper.; a book <about> the President; the book <on> the President; the picture <of> the President; an experiment <concerning> growing rice; a course <in> history</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">about, on, concerning, on the subject of, regarding, re, with regard to, in, of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate what something is about?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1967350c-2cd0-467c-9602-58f8157c3851" ownerguid="8f7259e1-c9fd-4f49-a9ea-1f4c039e9d06"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">young.girl</AUni> -<AUni ws="es">muchacha</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1468d032-7543-46d7-8d90-71e27c40bffb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="196940fa-c47f-4e11-95ef-7d886b3f2d15"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ayca</AUni> -<AUni ws="qvm-x-acl">ayca</AUni> -<AUni ws="qvm-x-akh">ayka</AUni> -<AUni ws="qvm-x-akl">ayka</AUni> -<AUni ws="qvm-x-ame">ayka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ayka</AUni> -<AUni ws="qvm-x-acl">*ayka</AUni> -<AUni ws="qvm-x-akh">*ayka</AUni> -<AUni ws="qvm-x-akl">*ayka</AUni> -<AUni ws="qvm-x-ame">*ayka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.900" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="81ce1631-4723-4473-a246-c7e78191b065" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ayka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c3819f35-2ca1-49fa-9d85-94a75c0564d9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6000aff3-cc6c-4f8e-bf8b-bfd53a596126" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ayka 
\entryTyp root 
\gENG amount 
\gSPN cuanto 
\e *ayka 
\c N0 
\ach ayca 
\akh ayka 
\acl ayca 
\akl ayka 
\ame ayka</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="196bf7b1-54a1-4a78-8d10-c61585849c63" ownerguid="c7c85346-158d-4881-839d-9a6a8e47209b"> -<Abbreviation> -<AUni ws="en">7.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.518" /> -<DateModified val="2022-9-23 16:55:8.518" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to moving with someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15T Follow, Accompany; 15S Come/Go With, Travel With</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Accompany</AUni> -</Name> -<Questions> -<objsur guid="d5977802-c777-44ea-86c9-1657ecb61e28" t="o" /> -<objsur guid="bc24981c-8bfd-40ba-a81e-f5fa69d892f4" t="o" /> -<objsur guid="6d94358d-cfa2-4a2b-b9b8-706c728ab770" t="o" /> -<objsur guid="cb2677f0-804f-45e9-b1a0-1fbedee1a18e" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="6903b844-79be-4e9d-a3c8-1ca2a385bf4f" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="ecf9ebd7-f991-41df-98cd-bcf1254d5d0b" t="o" /> -<objsur guid="1b73b2bf-9582-4f8a-822a-e0d020272c7c" t="o" /> -<objsur guid="902cfcbe-6e42-4e55-b2a5-9146702fc16b" t="o" /> -<objsur guid="678a3319-a12b-4f92-857d-167def8ef583" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="196cf46a-00a8-4e9d-9162-721a3dc56067" ownerguid="70e2867f-a306-48e2-8bef-1308c97b7c35"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="196f81d0-6a1a-4cc0-936a-367423ff485c" ownerguid="9e6d7c69-788c-4d40-8584-32f185e91932"> -<Abbreviation> -<AUni ws="en">6.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to trapping an animal.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>6E Traps, Snares</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Trap</AUni> -</Name> -<OcmCodes> -<Uni>224 Hunting and Trapping</Uni> -</OcmCodes> -<Questions> -<objsur guid="89e98a38-d9e2-418f-b1c5-6384e27418af" t="o" /> -<objsur guid="6926d7b3-e3b5-432e-99fb-1ec62e3adb3e" t="o" /> -<objsur guid="69c79055-f6d9-4fc2-8f48-b82929ba5452" t="o" /> -<objsur guid="8806b9c5-069e-4835-8d2d-ee2493f686b5" t="o" /> -<objsur guid="e7320579-d56e-44ee-a033-49dad4688c85" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="19723178-8406-4bf2-bd99-60fcc454d383" ownerguid="aa2b547c-2c82-4ce0-a1b3-35fa809d666c"> -<ExampleWords> -<AUni ws="en">narrower, narrowest, thinner, thinnest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to being narrower than another thing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1978d8d8-09ad-4a01-88fb-01ecc5e5da5a" ownerguid="a3ba10f3-66e3-4ad5-8057-453b8941e497"> -<ExampleWords> -<AUni ws="en">war, battle, campaign, engagement, fight, contest, clash, skirmish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a time when armies fight?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="197e93ef-1596-43b2-af57-9042c6eab31f" ownerguid="4d8d52ab-8854-4a42-8e12-34604f635f67"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="197eac6b-4957-4e08-9122-d9c8bcdbfa63" ownerguid="6bf7569e-dc79-49da-9ce1-e2e03303828a"> -<ExampleWords> -<AUni ws="en">flog, beat, lash, scourge, whip</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to punishing someone by beating them?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="197eccac-0ba1-403e-a7a3-b091e9d35782" ownerguid="afdd8b8e-9502-4d06-94ee-e79815b65750"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">He <almost> died.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">almost, be near to, be on the brink of, come within an inch of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words indicate that something almost happens?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="197f907c-f581-4e66-a2df-6362304d6d98"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mi:na</AUni> -<AUni ws="qvm-x-acl">mi:na</AUni> -<AUni ws="qvm-x-akh">mi:na</AUni> -<AUni ws="qvm-x-akl">mi:na</AUni> -<AUni ws="qvm-x-ame">mi:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mina</AUni> -<AUni ws="qvm-x-acl">+mina</AUni> -<AUni ws="qvm-x-akh">+mina</AUni> -<AUni ws="qvm-x-akl">+mina</AUni> -<AUni ws="qvm-x-ame">+mina</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.436" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7fff6981-7a91-4512-b4ac-7f0b22dbecae" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mina</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0e587f56-241a-4a26-9375-95f6362cd0c4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="92e78485-1f64-4767-8732-cb95e4568a94" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mina 
\entryTyp root 
\gENG mine 
\gSPN mina 
\e +mina 
\c N0 
\ach mi:na 
\akh mi:na 
\acl mi:na 
\akl mi:na 
\ame mi:na</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="198181cf-3363-4dee-b22c-c8bdaaf53ce0" ownerguid="34d2e65f-4a27-45a4-8afc-c53b886f9909"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="91c37f95-cbf0-40a9-b1f7-793e00f0838d" t="o" /> -<objsur guid="4d05573f-9e71-4923-8dc2-6b68c856245a" t="o" /> -<objsur guid="33c3d198-ee61-4774-b31a-cc66733e6d63" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="1983847b-17b5-4bb0-b459-074e0259659a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">frenti; frente</AUni> -<AUni ws="qvm-x-acl">frenti; frenti; frente</AUni> -<AUni ws="qvm-x-akh">frenti; frente</AUni> -<AUni ws="qvm-x-akl">frenti; frenti; frente</AUni> -<AUni ws="qvm-x-ame">frenti; frente</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+frente</AUni> -<AUni ws="qvm-x-acl">+frente</AUni> -<AUni ws="qvm-x-akh">+frente</AUni> -<AUni ws="qvm-x-akl">+frente</AUni> -<AUni ws="qvm-x-ame">+frente</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.589" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7fd1ec60-5f15-4b09-bd1e-97f07ab4155d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+frente</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8ef2c278-fe87-4e16-ad8c-ab9ee5a4e086" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9cf6dda8-3d00-4a39-9e3a-b1f5ba05b402" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +frente 
\entryTyp root 
\gENG front 
\gSPN frente 
\e +frente 
\c N0 
\mp +FinalI 
\ach frenti / ~_# 
\ach frente / _# 
\akh frenti / ~_# 
\akh frente / _# 
\acl frenti / ~_# 
\acl frenti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl frente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl frenti / ~_# 
\akl frenti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl frente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame frenti / ~_# 
\ame frente / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="198436ae-c3c6-4f3c-8fe0-ea10c867f1c6" ownerguid="cb362fc7-b3aa-46f4-b9a8-0f8c97fb16fe"> -<Abbreviation> -<AUni ws="en">6.2.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.385" /> -<DateModified val="2022-9-23 16:55:8.385" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to growing grass, such as sod, hay, alfalfa, bamboo, papyrus, sugarcane, and tobacco. If one type of grass is cultivated extensively and there are many words related to it, set up a separate domain for it. This has already been done for sugarcane and tobacco, since they are so common around the world.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Growing grass</AUni> -</Name> -<OcmCodes> -<Uni>246 Forage Crops</Uni> -</OcmCodes> -<Questions> -<objsur guid="69cb0ddc-6bcb-4475-8ef4-180c764b849e" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="31426c31-9439-406c-9867-bc98c6ca0565" t="o" /> -<objsur guid="99d0d129-b427-4468-b4c6-91005be63e18" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="1984977c-621e-487a-b924-2c2a163bca1c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ticra</AUni> -<AUni ws="qvm-x-acl">ticra</AUni> -<AUni ws="qvm-x-akh">tikra</AUni> -<AUni ws="qvm-x-akl">tikra</AUni> -<AUni ws="qvm-x-ame">tikra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tikra</AUni> -<AUni ws="qvm-x-acl">*tikra</AUni> -<AUni ws="qvm-x-akh">*tikra</AUni> -<AUni ws="qvm-x-akl">*tikra</AUni> -<AUni ws="qvm-x-ame">*tikra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.896" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="631f5cf5-fe3f-4e2c-9b24-e01dc0a62752" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tikra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="68118a6a-bf1a-4523-a34c-85685caebd39" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9c2c35dd-5633-43f7-b4a7-bc89853f0faa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tikra 
\entryTyp root 
\gENG turn 
\gSPN volver 
\e *tikra 
\c V1 R0 
\ach ticra 
\akh tikra 
\acl ticra 
\akl tikra 
\ame tikra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1984aec6-dea6-4166-ab0a-18401b299dff" ownerguid="92c1bb05-e698-45df-abd3-e4aea63be3cb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="052ce110-0adc-4169-9108-6fa7f238cf29" t="o" /> -<objsur guid="30251ca8-a16d-4861-8000-2411e7750e8b" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="0a70d42a-ffca-4398-8c95-86b8e9cfc112" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="1985220b-1adf-45db-b8af-6d7bf464d86e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">arroz</AUni> -<AUni ws="qvm-x-acl">arroz</AUni> -<AUni ws="qvm-x-akh">arroz</AUni> -<AUni ws="qvm-x-akl">arroz</AUni> -<AUni ws="qvm-x-ame">arroz</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+arroz</AUni> -<AUni ws="qvm-x-acl">+arroz</AUni> -<AUni ws="qvm-x-akh">+arroz</AUni> -<AUni ws="qvm-x-akl">+arroz</AUni> -<AUni ws="qvm-x-ame">+arroz</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.928" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e83d3498-3ef2-4aba-a01b-3cbfa0eac18a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+arroz</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="541c9205-a7be-4795-82ef-0f0cb0375dc6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f35699a2-c7c6-49fb-8764-d408558bf3d3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +arroz 
\entryTyp root 
\gENG rice 
\gSPN arroz 
\e +arroz 
\c N0 
\mp +FinalC 
\ach arroz 
\akh arroz 
\acl arroz 
\akl arroz 
\ame arroz</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="19873fff-848b-4c68-8765-91952f6a3fe5" ownerguid="c0d903bf-6502-45dd-9dd8-cff7f022c696"> -<ExampleWords> -<AUni ws="en">calculation, sum, estimate, estimation, count (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the number or amount of something that is counted?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="19876485-5fc7-4769-92a1-4e768ef5c8ab" ownerguid="18c1f944-eaf0-4e7e-8799-463da831e6f0"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="198b676b-cc74-44eb-8a10-d10753c1625e" ownerguid="91053954-86ef-4146-a674-747249228584"> -<Form> -<AUni ws="qvm-x-ach">multa</AUni> -<AUni ws="qvm-x-acl">multa</AUni> -<AUni ws="qvm-x-akh">multa</AUni> -<AUni ws="qvm-x-akl">multa</AUni> -<AUni ws="qvm-x-ame">multa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="198dd276-aef3-4477-a22a-e719bb58ba41" ownerguid="3991615c-a7a6-43a0-9c31-fe61841d1403"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sack</AUni> -<AUni ws="es">quintal</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7feecc07-26cb-453b-aa09-ebae10f2bc05" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="199040b9-25fc-444e-a189-474d9a420e63" ownerguid="2051456f-2dc4-4ed8-b481-0c262253089f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ash</AUni> -<AUni ws="es">ceniza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8d74f29e-bcca-4d5f-a13e-6e00bbb345d1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="199368f4-203a-40a6-af16-a41a277c09f5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">promiti</AUni> -<AUni ws="qvm-x-acl">promiti; promite</AUni> -<AUni ws="qvm-x-akh">promiti</AUni> -<AUni ws="qvm-x-akl">promiti; promite</AUni> -<AUni ws="qvm-x-ame">promiti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+prometer</AUni> -<AUni ws="qvm-x-acl">+prometer</AUni> -<AUni ws="qvm-x-akh">+prometer</AUni> -<AUni ws="qvm-x-akl">+prometer</AUni> -<AUni ws="qvm-x-ame">+prometer</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.947" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ae75822b-1431-4727-81b9-66fafaa79d8b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+prometer</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="03433e9f-af7b-4e20-8144-b19b047c5fe6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="05c7dfd0-652c-4d43-8c94-f97c0d01adf5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +prometer 
\entryTyp root 
\gENG promise 
\gSPN prometer 
\e +prometer 
\c V2 
\mp +FinalI 
\ach promiti 
\akh promiti 
\acl promiti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl promite +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl promiti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl promite +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame promiti</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1994ff5e-a8a7-4128-9fba-4d61b0c2fca4" ownerguid="2f33bc13-61ef-4192-9634-72d503c0e1ba"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.damage</AUni> -<AUni ws="es">dañar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f2b016d8-6538-4f8c-b4dc-338d66daa19a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="199bd4f1-add4-464c-912d-70d515559655" ownerguid="ef409fc6-bd89-4cc6-ade5-abb882272313"> -<ExampleWords> -<AUni ws="en">preferable, preferred, favored</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that you prefer?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="199d8d5d-df47-4d7d-a02f-36b5778cfc34"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mulinu</AUni> -<AUni ws="qvm-x-acl">mulinu; mulinu; mulino</AUni> -<AUni ws="qvm-x-akh">mulinu</AUni> -<AUni ws="qvm-x-akl">mulinu; mulinu; mulino</AUni> -<AUni ws="qvm-x-ame">mulinu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+molino</AUni> -<AUni ws="qvm-x-acl">+molino</AUni> -<AUni ws="qvm-x-akh">+molino</AUni> -<AUni ws="qvm-x-akl">+molino</AUni> -<AUni ws="qvm-x-ame">+molino</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.467" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="04caf6c1-4a08-470a-94a3-5b2c9c370f9f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+molino</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7c66a8f6-cf61-4e29-85ea-a52aa2188119" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5fb5300e-45dd-4e5f-8999-99c097b15442" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +molino 
\entryTyp root 
\gENG 
\gSPN 
\e +molino 
\c N0 
\mp +assimilated 
\ach mulinu 
\akh mulinu 
\acl mulinu / _# 
\acl mulinu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mulino +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mulinu / _# 
\akl mulinu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mulino +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mulinu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="19a17a98-273c-439b-acee-6ee63f22f0bb" ownerguid="90f57cb3-1a42-4c45-808d-e9909d9396bd"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="19a55691-cea1-4975-8142-3ee36596d180" ownerguid="c8595a5f-4dde-4260-b8d8-265d0554ce93"> -<ExampleWords> -<AUni ws="en">win, come first, come in first, finish first, get in, first place</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to winning a game or other competition?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="19a556d6-2944-4fa9-bc19-2bbada0e0d03" ownerguid="3e05eea3-a390-43e8-9cb7-152d851aea32"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sit</AUni> -<AUni ws="es">sentarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="08f8059b-14df-46c3-845e-3a46da181564" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="19a66bd9-93e5-43ee-9d8c-ae425f98c17e" ownerguid="c4a23160-6547-4d86-b1ff-91c017f733f0"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">HAB 3.6 Ricacäriptenga maytsay nacioncunapis pasaypami catatan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="19a947fb-c6bb-494e-a88d-5bbb9b4965fe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pusha</AUni> -<AUni ws="qvm-x-acl">pusha</AUni> -<AUni ws="qvm-x-akh">pusha</AUni> -<AUni ws="qvm-x-akl">pusha</AUni> -<AUni ws="qvm-x-ame">pusha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pusha</AUni> -<AUni ws="qvm-x-acl">*pusha</AUni> -<AUni ws="qvm-x-akh">*pusha</AUni> -<AUni ws="qvm-x-akl">*pusha</AUni> -<AUni ws="qvm-x-ame">*pusha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.35" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ca4cf49f-e67c-4c4f-a78b-9979377ad1e8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pusha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d84b48a2-666d-4bb5-b9a4-3f4501c6110b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ec7d775b-ef00-4022-8e92-a65ea8412ab7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pusha 
\entryTyp root 
\gENG lead 
\gSPN encaminar 
\e *pusha 
\c V2 
\ach pusha 
\akh pusha 
\acl pusha 
\akl pusha 
\ame pusha 
\mcc *pusha / ~_ ADV1</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="19aa4d9f-1194-474d-81fb-61da1b8d3101" ownerguid="74586c4f-768f-4ae6-9864-d30ecee2a801"> -<Form> -<AUni ws="qvm-x-ach">agradecïdu</AUni> -<AUni ws="qvm-x-acl">agradecïdu; agradecïdu; agradecïdo</AUni> -<AUni ws="qvm-x-akh">agradecïdu</AUni> -<AUni ws="qvm-x-akl">agradecïdu; agradecïdu; agradecïdo</AUni> -<AUni ws="qvm-x-ame">agradecïdu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="19ab5cf1-1864-4db0-94a6-3ed04ddf2ef7" ownerguid="f48346c2-1c61-4bbd-a867-8d84532bc816"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="19ab9769-74cb-4aa5-9788-592301c934fb" ownerguid="6d5540de-e3b1-4396-aa44-a13bcad5e61a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="3e41f57f-74b9-4501-9a04-7cae94373f4f" t="o" /> -</Examples> -<Gloss> -<AUni ws="es">norte</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2e70c985-952a-4b6f-8396-fcb9d01af231" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="19ad3df7-cd74-4555-a28d-fa7355bf184c" ownerguid="738a09a5-59df-40f9-8a4e-176e00d03bbf"> -<ExampleWords> -<AUni ws="en">armory, arsenal, battery</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a group of weapons?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="19ad4375-5aab-4047-a750-a3f6cb513d6c" ownerguid="d6ae5750-f0ad-41fe-83f6-53f8a03121cc"> -<Form> -<AUni ws="qvm-x-ach">pacU</AUni> -<AUni ws="qvm-x-acl">pacU</AUni> -<AUni ws="qvm-x-akh">pakU</AUni> -<AUni ws="qvm-x-akl">pakU</AUni> -<AUni ws="qvm-x-ame">pakU</AUni> -</Form> -<IsAbstract val="True" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="19ade1ae-adcd-45a7-b0f0-812923a41d7b" ownerguid="2ab6f9f3-60c4-49e9-8068-4cd757b56390"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">trunk</AUni> -<AUni ws="es">baúl</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b24c2256-9970-4c1a-8dce-048a105cb93a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="19afe330-8f44-46ea-8969-b293893a1aa7" ownerguid="f0f3c371-166e-4a66-849f-60d6fa7ad889"> -<ExampleWords> -<AUni ws="en">anthology</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a collection of poems?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="19b31aec-44f2-4b47-aded-5cb900185a04" ownerguid="e4b6d614-7abb-412e-8607-55d3610da60e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="19b3fbee-ef66-47f4-bc63-edb56b02ae91"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ancu</AUni> -<AUni ws="qvm-x-acl">ancu; ancu; anco</AUni> -<AUni ws="qvm-x-akh">anku</AUni> -<AUni ws="qvm-x-akl">anku; anku; anko</AUni> -<AUni ws="qvm-x-ame">anku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*anku-anku</AUni> -<AUni ws="qvm-x-acl">*anku-anku</AUni> -<AUni ws="qvm-x-akh">*anku-anku</AUni> -<AUni ws="qvm-x-akl">*anku-anku</AUni> -<AUni ws="qvm-x-ame">*anku-anku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.788" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c3787529-45ae-4c61-8256-bc5e5e3658fa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*anku-anku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ba287029-72d0-4c95-a47f-4f5dd64b3064" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="212785e1-ecce-44d6-b4e0-cf935fba0990" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *anku-anku 
\entryTyp root 
\gENG tendon 
\gSPN coyuntura? 
\e *anku-anku 
\c N0 
\ach ancu 
\akh anku 
\acl ancu / _# 
\acl ancu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl anco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl anku / _# 
\akl anku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl anko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame anku</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="19b51f5a-9c14-4e64-88fd-f0517de6e817"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">verdi; verde</AUni> -<AUni ws="qvm-x-acl">verdi; verdi; verde</AUni> -<AUni ws="qvm-x-akh">verdi; verde</AUni> -<AUni ws="qvm-x-akl">verdi; verdi; verde</AUni> -<AUni ws="qvm-x-ame">verdi; verde</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+verde</AUni> -<AUni ws="qvm-x-acl">+verde</AUni> -<AUni ws="qvm-x-akh">+verde</AUni> -<AUni ws="qvm-x-akl">+verde</AUni> -<AUni ws="qvm-x-ame">+verde</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.373" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9e5ce494-5700-49d5-92ec-7246320156e2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+verde</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="834cb711-695a-4450-b4a5-7a38b75ef744" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c73e73fe-bc2a-4d16-bac9-ed8d3121b44a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +verde 
\entryTyp root 
\gENG green 
\gSPN verde 
\e +verde 
\c N0 V1 
\mp +FinalI 
\ach verdi / ~_# 
\ach verde / _# 
\akh verdi / ~_# 
\akh verde / _# 
\acl verdi / ~_# 
\acl verdi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl verde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl verdi / ~_# 
\akl verdi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl verde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame verdi / ~_# 
\ame verde / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="19b71414-72a1-4515-81c3-848f034c16a7" ownerguid="8a23ef82-2e94-4aa0-8fae-de0c62cebdbc"> -<Form> -<AUni ws="qvm-x-ach">bien; bien</AUni> -<AUni ws="qvm-x-acl">bien; bien</AUni> -<AUni ws="qvm-x-akh">bien; bien</AUni> -<AUni ws="qvm-x-akl">bien; bien</AUni> -<AUni ws="qvm-x-ame">bien; bien</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="19ba7cf1-e7bb-41f2-a7d2-3c52fcc858df"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">puma</AUni> -<AUni ws="qvm-x-acl">puma</AUni> -<AUni ws="qvm-x-akh">puma</AUni> -<AUni ws="qvm-x-akl">puma</AUni> -<AUni ws="qvm-x-ame">puma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puma</AUni> -<AUni ws="qvm-x-acl">*puma</AUni> -<AUni ws="qvm-x-akh">*puma</AUni> -<AUni ws="qvm-x-akl">*puma</AUni> -<AUni ws="qvm-x-ame">*puma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.0" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3ef5dee7-8db3-4d35-a2fb-a35f1356c945" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7c7f72da-cd54-40c7-a2e4-7c37674ee8fc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f55ce096-a06a-45a1-bd4e-35fc225d94a5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puma 
\entryTyp root 
\gENG puma 
\gSPN puma 
\e *puma 
\c N0 
\ach puma 
\akh puma 
\acl puma 
\akl puma 
\ame puma</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="19bb18b1-ba8e-440b-9cc4-47415b67de45" ownerguid="9612bdd6-15cb-4269-aaf9-481c7b35b5dd"> -<ExampleWords> -<AUni ws="en">mouth the words</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to speaking without making any sound?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="19bcff60-b148-4187-bacd-3e3c571302a9" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<ExampleWords> -<AUni ws="en">enlarged, swollen, inflated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe something that has been made big?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="19be2723-ceca-4dec-8459-ad887b8a83ef" ownerguid="e9fdc131-addb-4db6-8f79-ae0044e1eb81"> -<ExampleWords> -<AUni ws="en">commentary</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a book that interprets the sacred writings?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="19be5c30-1dd9-4294-a1ed-082d8e88cd95"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">patac; pata</AUni> -<AUni ws="qvm-x-acl">patac; pata</AUni> -<AUni ws="qvm-x-akh">patak; pata</AUni> -<AUni ws="qvm-x-akl">patak; pata</AUni> -<AUni ws="qvm-x-ame">patak; pata</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*patak</AUni> -<AUni ws="qvm-x-acl">*patak</AUni> -<AUni ws="qvm-x-akh">*patak</AUni> -<AUni ws="qvm-x-akl">*patak</AUni> -<AUni ws="qvm-x-ame">*patak</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.749" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3780aa04-3b50-4011-a234-a5eaf1e15270" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*patak</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="63afefbf-ab30-4c88-8a72-7308d6021d58" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1b06c6ef-d6e4-45c6-a078-369bdd34f2fa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *patak 
\entryTyp root 
\gENG flat.place 
\gSPN lugar.plano 
\e *patak 
\c N0 
\mp +FinalC 
\cm *** ch *** 
\ach patac 
\ach pata 
\cm *** kh *** 
\akh patak 
\akh pata 
\cm *** cl *** 
\acl patac 
\acl pata 
\cm *** kl *** 
\akl patak 
\akl pata 
\cm *** me *** 
\ame patak 
\ame pata</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="19c3ab6f-0cf4-44d4-b2e5-9b9d4005f6db" ownerguid="c54ada5e-e56f-4cd6-9367-b9bd5601067c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="19c53a65-3ef2-4bdb-b453-18ca5acc888a" ownerguid="e15322ea-b7fc-4b8e-8147-fe9c3313caba"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="19c5fda7-aff4-4812-b841-afd1953b9e75" ownerguid="d2e4e6aa-e699-41b4-8bb3-55e4793bd14b"> -<Form> -<AUni ws="qvm-x-ach">chaquipalta</AUni> -<AUni ws="qvm-x-acl">chaquipalta</AUni> -<AUni ws="qvm-x-akh">chakipalta</AUni> -<AUni ws="qvm-x-akl">chakipalta</AUni> -<AUni ws="qvm-x-ame">chakipalta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="19c6d424-cc8b-4bbb-ad4f-314a0e727e92" ownerguid="fc170f70-520e-4f3e-b8b8-98e4b898fd24"> -<ExampleWords> -<AUni ws="en">corner (adj)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe something that is on the corner?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="19cca110-d755-4e05-835c-d10c609d477b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rashta</AUni> -<AUni ws="qvm-x-acl">rashta</AUni> -<AUni ws="qvm-x-akh">rashta</AUni> -<AUni ws="qvm-x-akl">rashta</AUni> -<AUni ws="qvm-x-ame">rashta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rashta</AUni> -<AUni ws="qvm-x-acl">*rashta</AUni> -<AUni ws="qvm-x-akh">*rashta</AUni> -<AUni ws="qvm-x-akl">*rashta</AUni> -<AUni ws="qvm-x-ame">*rashta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.277" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c7a1ab3c-d801-44d1-b5c7-64992091beb7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rashta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3da8aead-9649-4eb7-97ee-8625e11ef3c3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aed4910b-0523-4233-bda7-fd04d2d924fe" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rashta 
\entryTyp root 
\gENG 
\gSPN 
\e *rashta 
\c N0 
\ach rashta 
\akh rashta 
\acl rashta 
\akl rashta 
\ame rashta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="19d1f034-1aa1-437b-9e36-faa3576213a8" ownerguid="fd850542-a957-4b6d-9726-e2600271f2ba"> -<Form> -<AUni ws="qvm-x-ach">desfila</AUni> -<AUni ws="qvm-x-acl">desfila</AUni> -<AUni ws="qvm-x-akh">desfila</AUni> -<AUni ws="qvm-x-akl">desfila</AUni> -<AUni ws="qvm-x-ame">desfila</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="19d54c2f-ae03-4cbc-9b7e-57292f92fbc1" ownerguid="c7c85346-158d-4881-839d-9a6a8e47209b"> -<Abbreviation> -<AUni ws="en">7.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.518" /> -<DateModified val="2022-9-23 16:55:8.518" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to pursuing someone--to follow someone in order to catch them.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15U Pursue, Follow</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Pursue</AUni> -</Name> -<Questions> -<objsur guid="94d2ee17-dadd-47df-9a77-e5b927a6dedc" t="o" /> -<objsur guid="48ba9cc9-f5d6-4362-b17e-3f7a9708f231" t="o" /> -<objsur guid="fb7f60c7-1968-4984-851d-ac556f9672de" t="o" /> -<objsur guid="e6a1fd5a-4265-4282-adb2-f470faa5206e" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="34c9408c-c3f7-49db-8bce-de7fa7da03d7" t="o" /> -<objsur guid="d7140538-fb99-4af9-8398-8c31a1b79fb5" t="o" /> -<objsur guid="36e8f1df-1798-4ae6-904d-600ca6eb4145" t="o" /> -<objsur guid="28a68cea-9128-4d5c-8542-8df38c907310" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="19d6fd70-9870-4226-89da-e9310a6c7ad8" ownerguid="283ad818-9670-4a23-b97a-05cd2810800e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="19d82084-dfa2-4189-9c8e-aea682049398" ownerguid="1913fed8-1f71-4689-a3e9-74482e6c1b46"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="bfdc7520-492f-46c1-b7f5-938d58a1c947" t="o" /> -<objsur guid="ad1c8d0b-0929-4c8a-ba19-b547c4081e9b" t="o" /> -</MorphBundles> -</rt> -<rt class="MoInflAffMsa" guid="19d8e776-3207-47b6-bd4e-4f4c71fa6989" ownerguid="6dde2d5d-c27f-432b-8bf8-ff740be6ad2a"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="0eb1d65f-6889-40e2-a5ee-818feedf259c" t="r" /> -</Slots> -</rt> -<rt class="CmDomainQ" guid="19da5626-3b0a-4e3b-a123-0bd8a982f164" ownerguid="73726931-ef12-4d39-a76e-7742f4b7c9cd"> -<ExampleWords> -<AUni ws="en">boom, prosper, prosperous, prosperity, bull market</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe a good economy?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="19dcb73c-85a2-4e66-9817-7d807eaf829c" ownerguid="dae490b0-c4a6-48a5-bcd0-7c9b25bf7554"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">frame</AUni> -<AUni ws="es">marco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="da1f898d-e45a-4d1f-a53e-50703871eb10" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="19de2180-3774-486a-8c23-01235b168eda" ownerguid="d502512c-966b-4752-8636-716fb29facfe"> -<ExampleWords> -<AUni ws="en">sleep poorly, sleep badly, sleep fitfully</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used of a bad sleep?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="19e26172-8ee0-4dab-a5a3-1ab23f739382" ownerguid="978b67de-3568-4965-a5e2-3e50cf8fa622"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoInflAffMsa" guid="19e28bb1-2f05-4e65-a0d6-47a005cd199a" ownerguid="5dfb5545-62ab-4401-a48a-70d7a8cfb3c9"> -<PartOfSpeech> -<objsur guid="a4fc78d6-7591-4fb3-8edd-82f10ae3739d" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="f9e1228b-4c5b-4e23-bd04-d513eddcbaea" t="r" /> -</Slots> -</rt> -<rt class="MoStemAllomorph" guid="19e292b8-e04f-4861-a770-83d13ff20f02" ownerguid="9d4bc93a-7272-4956-b4de-028551f6563b"> -<Form> -<AUni ws="qvm-x-ach">defiendi</AUni> -<AUni ws="qvm-x-acl">defiendi; defiende</AUni> -<AUni ws="qvm-x-akh">defiendi</AUni> -<AUni ws="qvm-x-akl">defiendi; defiende</AUni> -<AUni ws="qvm-x-ame">defiendi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="19e2dbf8-2a8c-4b95-8b91-2ae488cef46c" ownerguid="e88d17e1-259f-4b13-a633-f0195dc17e29"> -<Form> -<AUni ws="qvm-x-ach">dicta</AUni> -<AUni ws="qvm-x-acl">dicta</AUni> -<AUni ws="qvm-x-akh">dicta</AUni> -<AUni ws="qvm-x-akl">dicta</AUni> -<AUni ws="qvm-x-ame">dicta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoInflAffMsa" guid="19e38a32-084e-488a-9b8c-67b290e25694" ownerguid="66a1c8dc-e287-4b06-a384-370020e162b3"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="19e731d8-63d8-4491-83d8-5c35ddfd57e9" ownerguid="07a00100-85d1-4709-b898-8efa4f5a860a"> -<Category> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</Category> -<Evaluations> -<objsur guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="8cc7ea08-5c84-432a-96ad-344fc718615c" t="o" /> -<objsur guid="2c43985b-0df9-48a8-b742-996549f53c2a" t="o" /> -<objsur guid="2a539b5b-4b82-4a33-818c-8ed6eff03c23" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="19e87a2e-72b3-427b-bc2d-a5ff1436897d" ownerguid="1fce8fce-183c-4845-ac4d-dcfa16d7bbf5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="81065b96-7246-4262-bec3-0f07dcdee9be" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoInflAffMsa" guid="19eb2825-30d1-416a-8b25-408b37e64c35" ownerguid="278a0d7b-23fc-4092-a30b-e0525204c698"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="19eb6f21-eb62-4dbe-bfbb-3322ebf82b98" ownerguid="58f9004c-69b5-444d-a932-842c08d6907d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="19ebc539-9be7-4671-82a2-912be0464e23" ownerguid="5ec80646-cf32-41f0-b851-0c57c6275fc5"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="19ec349b-160f-4499-8721-6fd383b96f8e" ownerguid="e3a677a0-5bc3-42d8-8dee-efaa6179e4ec"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">eat.lunch</AUni> -<AUni ws="es">almorzar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1a08eaaa-2857-47af-adb8-ccfa14e5d377" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="19ed20ea-559f-4aa8-bdb3-b40988eaa6d7"> -<Analyses> -<objsur guid="41180113-78ed-4232-9b44-9b4df5759375" t="o" /> -</Analyses> -<Checksum val="-1395137413" /> -<Form> -<AUni ws="qvm-x-akh">kay</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="19ed8a2a-fe40-4a3e-8568-fac0dda5c6f6" ownerguid="ffcc57f8-6c6d-4bf4-85be-9220ca7c739d"> -<ExampleWords> -<AUni ws="en">marry, marriage, get married, tie the knot, get hitched, join together, unite, wed, marry into</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to marrying someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="19f401c3-1894-46a4-9f28-660599cf3b71" ownerguid="be4ab208-1fa0-463f-9ca0-4c7e3e03aafd"> -<Question> -<AUni ws="en">(2) What words are used to describe the actions done with these tools?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="19f4dc48-4179-47ef-be4f-753185d6336f" ownerguid="ceff0bcd-a262-4e41-bf0c-920b446951be"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -<Sense> -<objsur guid="db6117c5-121c-433a-a891-e69950f55761" t="r" /> -</Sense> -</rt> -<rt class="MoInflAffMsa" guid="19f56977-ab7e-4f38-a9f8-7d5786460d3c" ownerguid="a97be5dd-69dc-49bf-bcf1-a4da50b64eaa"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="fda4c591-1349-4f9e-ab87-905ae2aa25e1" t="r" /> -</Slots> -</rt> -<rt class="LexSense" guid="19f69682-1c26-433d-981c-97621c387c0e" ownerguid="8acdd3de-23dc-4804-b133-6ab5fe55583f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="0e1b1794-0273-4f27-8253-0b8b898c8be8" t="o" /> -<objsur guid="0253919b-c99d-446a-858a-790ab9a37842" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">scar</AUni> -<AUni ws="es">cicatríz</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="33d07e4d-0cac-4b66-9fba-be1726620439" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="19fc80c4-8bc5-4e98-9b96-9fe033a510d9" ownerguid="21cac048-07c3-4c63-8e32-c2163b5fee6e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="19fca2ae-fca1-4a68-8105-54ffb836fed9" ownerguid="7cbbee8f-1f89-43e7-bfc0-a031a97b234e"> -<Form> -<AUni ws="qvm-x-ach">wamra</AUni> -<AUni ws="qvm-x-acl">wamra</AUni> -<AUni ws="qvm-x-akh">wamra</AUni> -<AUni ws="qvm-x-akl">wamra</AUni> -<AUni ws="qvm-x-ame">wamra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="19fd8017-d396-4d1f-a1dc-bb989afc9099" ownerguid="dd3f680d-05ef-400e-bb4f-9cf66074bb0a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="19fea936-30d1-482f-a103-1c5549b19745" ownerguid="5c35c2f8-d17c-42a3-aa12-a4c29b6603e8"> -<Abbreviation> -<AUni ws="en">8.3.1.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.599" /> -<DateModified val="2022-9-23 16:55:8.599" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to twisting something--to take something long and turn one end one way and the other end the other way.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Twist, wring</AUni> -</Name> -<Questions> -<objsur guid="bd1827b7-7d99-4f78-a8c9-03325815cb9e" t="o" /> -<objsur guid="eb389295-d36d-4267-982a-d4bbae30031b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="1a01fb89-a5ef-4e2a-9b5f-7c507be1c556" ownerguid="e45b8bac-9623-4f84-a113-9dec13a8db64"> -<ExampleWords> -<AUni ws="en">get to the point, stick to the point, to the point</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to talking about the subject you are supposed to be talking about?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1a02c2ed-5ed3-40ad-8a76-eb6426f4b587"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">azadón; azadon</AUni> -<AUni ws="qvm-x-acl">azadón; azadon</AUni> -<AUni ws="qvm-x-akh">azadón; azadon</AUni> -<AUni ws="qvm-x-akl">azadón; azadon</AUni> -<AUni ws="qvm-x-ame">azadón; azadon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+azadón</AUni> -<AUni ws="qvm-x-acl">+azadón</AUni> -<AUni ws="qvm-x-akh">+azadón</AUni> -<AUni ws="qvm-x-akl">+azadón</AUni> -<AUni ws="qvm-x-ame">+azadón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.910" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3fa70d1f-7711-4346-be1e-e35056dfb03c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+azadón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a0c4890c-db0c-4fff-ae27-57f987c657b5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="808492a0-1232-48d3-95d9-4cbe55e0505d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +azadón 
\entryTyp root 
\gENG 
\gSPN 
\e +azadón 
\c N0 
\mp +FinalC 
\ach azadón / _# 
\ach azadon / ~_# 
\akh azadón / _# 
\akh azadon / ~_# 
\acl azadón / _# 
\acl azadon / ~_# 
\akl azadón / _# 
\akl azadon / ~_# 
\ame azadón / _# 
\ame azadon / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1a073729-2c51-4944-a319-16666876af45" ownerguid="0cce6d8e-cc43-4441-aa0f-c18893567d84"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">name</AUni> -<AUni ws="es">nombre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="04f6a3dd-b5c8-412a-8fc8-7469d9a8aa55" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="1a085ad3-710c-49a6-8a53-5375b3175036" ownerguid="1fda68d4-5941-4695-b656-090d603a3344"> -<ExampleWords> -<AUni ws="en">kitchen, cookhouse, bakery, butchery, food processing plant, restaurant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the place where food is prepared and cooked?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1a08eaaa-2857-47af-adb8-ccfa14e5d377" ownerguid="e3a677a0-5bc3-42d8-8dee-efaa6179e4ec"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1a0a2563-bd38-4553-b5d1-0122cf0834df" ownerguid="9b267cc1-983c-407a-98d2-1e27add6292c"> -<ExampleWords> -<AUni ws="en">loose, loosely, slack, give it some slack</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe something that has been tied loosely?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1a104d17-49a8-457c-baae-41ed1703ed9c" ownerguid="1ff743cb-49e0-483d-8a1d-4603a7d6c395"> -<ExampleWords> -<AUni ws="en">dwindle, decline, be on the decline, taper off, drop off, die down, ease off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to decreasing slowly?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1a123212-4517-4938-a074-30d0860cbe5e" ownerguid="4415f908-b544-436b-a241-784865c36719"> -<Form> -<AUni ws="qvm-x-ach">golpi; golpe</AUni> -<AUni ws="qvm-x-acl">golpi; golpi; golpe</AUni> -<AUni ws="qvm-x-akh">golpi; golpe</AUni> -<AUni ws="qvm-x-akl">golpi; golpi; golpe</AUni> -<AUni ws="qvm-x-ame">golpi; golpe</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="1a1247aa-8b89-4258-8aba-d5fd36f52574"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">punsha</AUni> -<AUni ws="qvm-x-acl">punsha</AUni> -<AUni ws="qvm-x-akh">punsha</AUni> -<AUni ws="qvm-x-akl">punsha</AUni> -<AUni ws="qvm-x-ame">punsha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*punsha</AUni> -<AUni ws="qvm-x-acl">*punsha</AUni> -<AUni ws="qvm-x-akh">*punsha</AUni> -<AUni ws="qvm-x-akl">*punsha</AUni> -<AUni ws="qvm-x-ame">*punsha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.3" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0a306dff-f9ce-4ba5-bb33-8f85d612ad75" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*punsha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="266f13aa-1cb4-450f-8566-7aea02c63a5e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="eca7f251-3b73-4ef7-b854-3cf2a903e4bd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *punsha 
\entryTyp root 
\gENG chaff 
\gSPN granzas 
\e *punsha 
\c N0 
\ach punsha 
\akh punsha 
\acl punsha 
\akl punsha 
\ame punsha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1a133357-60d6-4237-a951-14088964dcc1" ownerguid="381f5b16-0dd9-402b-bd55-1fc5f5d3e8e6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chalkboard</AUni> -<AUni ws="es">pizarra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e91575ef-4968-475a-9852-f0cf1448145d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="1a13d97a-0d02-4550-b177-32d34497437c" ownerguid="8594cb26-9f3c-48f5-b00b-f055eb5a5e61"> -<ExampleWords> -<AUni ws="en">riotous, convulsive, disorderly, tumultuous, turbulent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe a situation or actions when people are rioting?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1a157319-9618-461a-b24b-8aa366424f9f" ownerguid="13ebe38d-75ac-4b67-9f42-99178eb81cfc"> -<Form> -<AUni ws="qvm-x-ach">ojalä</AUni> -<AUni ws="qvm-x-acl">ojalä</AUni> -<AUni ws="qvm-x-akh">ojalä</AUni> -<AUni ws="qvm-x-akl">ojalä</AUni> -<AUni ws="qvm-x-ame">ojalä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="1a1fb51a-ca0d-4d38-a616-c1feb39409b1" ownerguid="3335ce6c-d135-4ea8-8a60-0858a3cbf893"> -<Form> -<AUni ws="qvm-x-ach">vacuna</AUni> -<AUni ws="qvm-x-acl">vacuna</AUni> -<AUni ws="qvm-x-akh">vacuna</AUni> -<AUni ws="qvm-x-akl">vacuna</AUni> -<AUni ws="qvm-x-ame">vacuna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="1a24de53-ec60-4d06-bf28-f15438e30590" ownerguid="50511a02-278a-496c-9073-30ea2b59a80c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="1a28d255-8f58-428c-9641-59f17f8b1e08" ownerguid="f5156cde-9735-4249-920d-597fb0a7a8e3"> -<Abbreviation> -<AUni ws="en">7.9.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.559" /> -<DateModified val="2022-9-23 16:55:8.559" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to tearing down buildings and other structures.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Tear down</AUni> -</Name> -<Questions> -<objsur guid="9b6555cb-f9f8-4197-86e0-92c045df3016" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="1a29f916-4708-48fe-b9be-f870d35e6b26"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gachga</AUni> -<AUni ws="qvm-x-acl">gachga</AUni> -<AUni ws="qvm-x-akh">qachqa</AUni> -<AUni ws="qvm-x-akl">qachqa</AUni> -<AUni ws="qvm-x-ame">qachqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qatrqa</AUni> -<AUni ws="qvm-x-acl">*qatrqa</AUni> -<AUni ws="qvm-x-akh">*qatrqa</AUni> -<AUni ws="qvm-x-akl">*qatrqa</AUni> -<AUni ws="qvm-x-ame">*qatrqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.153" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4244bbb4-0e6d-49b6-9cde-ecabead74188" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qatrqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8eb2d2e0-2cb6-439b-8438-6c9598ffee0d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f5db50ed-54d0-41b6-ba5a-bd2dd0beb900" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qatrqa 
\entryTyp root 
\gENG rough 
\gSPN aspero 
\e *qatrqa 
\c R0 
\ach gachga 
\akh qachqa 
\acl gachga 
\akl qachqa 
\ame qachqa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1a2a84e5-c3e6-478b-833b-596449c3bb9a" ownerguid="a0e224da-c76a-46a9-9b95-fa6e2402455f"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1a2ba558-57af-4344-bea2-ea7d5bc12d74" ownerguid="725d78eb-8cac-4b2f-b5a4-f0a9adb80f5d"> -<ExampleWords> -<AUni ws="en">disbelieve, unbelief, lack of faith, doubt, skepticism, agnosticism, atheism, paganism</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to thinking against God?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1a2bd04f-ddcb-490c-8d67-9be26c68c62e" ownerguid="fd3d1cd7-8b7e-4a63-846a-9e5ecd83dd0f"> -<Form> -<AUni ws="qvm-x-ach">talu</AUni> -<AUni ws="qvm-x-acl">talu; talu; talo</AUni> -<AUni ws="qvm-x-akh">talu</AUni> -<AUni ws="qvm-x-akl">talu; talu; talo</AUni> -<AUni ws="qvm-x-ame">talu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1a2d60bc-ebdc-4298-9eec-d45f76b7c799" ownerguid="36b3cfb6-0fea-4628-aa8d-f9b7af48f436"> -<ExampleWords> -<AUni ws="en">lizard</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to lizards?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1a341111-d154-402d-8656-ef83e7f7bfa6" ownerguid="99b5b80a-a2d6-4820-adfc-1da72528c272"> -<ExampleWords> -<AUni ws="en">the same, equal, equivalent, even, level</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that two numbers or amounts are the same?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1a3ad94a-4efd-4c07-ab05-f11b0827a0f6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gopi</AUni> -<AUni ws="qvm-x-acl">gopi; gopi; gope</AUni> -<AUni ws="qvm-x-akh">qopi</AUni> -<AUni ws="qvm-x-akl">qopi; qopi; qope</AUni> -<AUni ws="qvm-x-ame">qupi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qupi</AUni> -<AUni ws="qvm-x-acl">*qupi</AUni> -<AUni ws="qvm-x-akh">*qupi</AUni> -<AUni ws="qvm-x-akl">*qupi</AUni> -<AUni ws="qvm-x-ame">*qupi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.861" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8dcfe10a-3386-4b56-b39d-afaec9b5bb54" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qupi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="54feea30-58d6-4ec8-9d7b-1fa30c0d5777" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e31f62a6-da74-40ed-9737-555664be90fd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qupi 
\entryTyp root 
\gENG mat 
\gSPN 
\e *qupi 
\c N0 
\mp +FinalI 
\ach gopi 
\akh qopi 
\acl gopi / _# 
\acl gopi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gope +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qopi / _# 
\akl qopi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qope +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qupi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="1a3d7bce-39f3-416e-90e7-1e440c0663ac" ownerguid="6f026670-a028-4d76-925c-cdb77eab585b"> -<Form> -<AUni ws="qvm-x-ach">arma</AUni> -<AUni ws="qvm-x-acl">arma</AUni> -<AUni ws="qvm-x-akh">arma</AUni> -<AUni ws="qvm-x-akl">arma</AUni> -<AUni ws="qvm-x-ame">arma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="1a3db1c9-89e1-4c4e-8bc8-c8162e1b6805" ownerguid="b385d74f-330c-41de-9680-fcc599e8cdd6"> -<Form> -<AUni ws="qvm-x-ach">loglu</AUni> -<AUni ws="qvm-x-acl">loglu; loglo</AUni> -<AUni ws="qvm-x-akh">loqlu</AUni> -<AUni ws="qvm-x-akl">loqlu; loqlo</AUni> -<AUni ws="qvm-x-ame">luqlu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1a3ecc3a-e804-4359-9343-f6a1a4b3d746" ownerguid="90c06635-a12c-4cd4-a190-46925ff0f43e"> -<ExampleWords> -<AUni ws="en">examination, analysis, inspection, check, check-up, study, scrutiny, post mortem</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the act of examining something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1a422969-fa13-4960-a52e-113d344d0b6f" ownerguid="cb783ad9-4650-416e-bf63-88c4ca43fe6a"> -<ExampleWords> -<AUni ws="en">harm someone's reputation, damage someone's reputation, give someone a bad name, bring someone into disrepute, discredit, bring discredit on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to hurting someone's reputation?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1a4399d1-b7c4-4c86-92d5-5d45da3385a0" ownerguid="b602c0e1-5398-4cc9-850b-7cfb5c592d13"> -<ExampleWords> -<AUni ws="en">cane, dark glasses, seeing-eye dog, Braille</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What things are used by a blind person?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1a4ff06b-76db-4abb-b7ba-f5d21c619a6f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shulti</AUni> -<AUni ws="qvm-x-acl">shulti; shulti; shulte</AUni> -<AUni ws="qvm-x-akh">shulti</AUni> -<AUni ws="qvm-x-akl">shulti; shulti; shulte</AUni> -<AUni ws="qvm-x-ame">shulti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shullti</AUni> -<AUni ws="qvm-x-acl">*shullti</AUni> -<AUni ws="qvm-x-akh">*shullti</AUni> -<AUni ws="qvm-x-akl">*shullti</AUni> -<AUni ws="qvm-x-ame">*shullti</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.632" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="122fb846-1519-4071-87c1-fe54db9dffa6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shullti</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f007227f-4b6e-4149-827f-9a48526b38d3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="893b6a5f-db2c-421c-8a45-e766b7738309" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shullti 
\entryTyp root 
\gENG 
\gSPN 
\e *shullti 
\c N0 
\mp +FinalI 
\ach shulti 
\akh shulti 
\acl shulti / _# 
\acl shulti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shulte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shulti / _# 
\akl shulti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shulte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shulti</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1a500494-d420-452b-9798-9336b1649f97" ownerguid="61a14b92-7c6c-4337-a573-6653df85525d"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="1a5193e5-1b8b-4282-9dfb-cbca5d8b4ff1" ownerguid="3d4d2a28-ed45-4fc1-85ae-a16b964d7054"> -<Form> -<AUni ws="qvm-x-ach">togla</AUni> -<AUni ws="qvm-x-acl">togla</AUni> -<AUni ws="qvm-x-akh">toqla</AUni> -<AUni ws="qvm-x-akl">toqla</AUni> -<AUni ws="qvm-x-ame">tuqla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="1a52880b-1a7f-4706-ad3f-d5499439c590" ownerguid="93d0971a-ec84-4f2d-a7ae-1b604f995601"> -<Form> -<AUni ws="qvm-x-ach">rica</AUni> -<AUni ws="qvm-x-acl">rica</AUni> -<AUni ws="qvm-x-akh">rika</AUni> -<AUni ws="qvm-x-akl">rika</AUni> -<AUni ws="qvm-x-ame">rika</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="1a544fdb-5746-4156-9ed9-3bd3db0de3d9" ownerguid="bf9f70d1-9067-4e2e-aa04-da1c74b6cb29"> -<Form> -<AUni ws="qvm-x-ach">wachuy</AUni> -<AUni ws="qvm-x-acl">wachuy</AUni> -<AUni ws="qvm-x-akh">wachuy</AUni> -<AUni ws="qvm-x-akl">wachuy</AUni> -<AUni ws="qvm-x-ame">wachuy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1a5c17c1-2201-4efa-aca6-90f72ea73348" ownerguid="1bd42665-0610-4442-8d8d-7c666fee3a6d"> -<ExampleWords> -<AUni ws="en">moonless night, eclipse of the moon, eclipse (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe when or where the moon doesn't shine?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1a628a35-d450-4a2b-9f6b-a2a824562c69" ownerguid="cece6750-bb2f-46ae-8d44-52f2f9f3cdb2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="fa9023e0-a7b7-4141-8c10-7edf16514b40" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="1a635032-6e13-4a56-aa03-6c6a015c502e" ownerguid="3ea4c495-b837-4310-8741-38d89fa63e0b"> -<Abbreviation> -<AUni ws="en">9.4.4.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.700" /> -<DateModified val="2022-9-23 16:55:8.700" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to not feeling sure about something or someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Unsure</AUni> -</Name> -<Questions> -<objsur guid="9b03a3a8-62a7-425a-a92b-4025a1a2f258" t="o" /> -<objsur guid="275e50b7-c863-4528-a3e6-cae117ead8a6" t="o" /> -<objsur guid="2f75ebe0-6650-4723-8960-18596ca96997" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="13e67cc9-055b-4f9b-9217-a16b18db0329" t="o" /> -<objsur guid="e0b00a13-8648-4635-afe5-0be3c0b6a05c" t="o" /> -<objsur guid="858af232-b570-4153-b4c0-f60930df9ced" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="1a651e7b-d2fe-40a7-bb43-f85bb5a55e81" ownerguid="c837daba-ce1a-4069-8f54-8818faf920c9"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="1a6588a1-08cd-4e67-9e1b-f4af3944322a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chuclus</AUni> -<AUni ws="qvm-x-acl">chuclus</AUni> -<AUni ws="qvm-x-akh">chuklus</AUni> -<AUni ws="qvm-x-akl">chuklus</AUni> -<AUni ws="qvm-x-ame">chuklus</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chukllus</AUni> -<AUni ws="qvm-x-acl">*chukllus</AUni> -<AUni ws="qvm-x-akh">*chukllus</AUni> -<AUni ws="qvm-x-akl">*chukllus</AUni> -<AUni ws="qvm-x-ame">*chukllus</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.335" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="70e5956d-a941-40d5-8864-0acd8290179a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chukllus</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="80d88696-3447-4ab1-a871-44e93c5ec853" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b5ef1192-8900-4dfc-b200-e42d13100a06" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chukllus 
\entryTyp root 
\gENG grasshopper 
\gSPN langosta 
\e *chukllus 
\c N0 
\mp +FinalC 
\ach chuclus 
\akh chuklus 
\acl chuclus 
\akl chuklus 
\ame chuklus</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1a661b20-4003-4cd5-8ffa-8f1557665fec" ownerguid="a9a03ccc-eb79-4862-8711-d919db632f19"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1a6b05ad-72a5-445d-baa0-770be7c5c7ea" ownerguid="0296465a-25de-4af6-a122-376956b4b452"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">He <himself> admits he is guilty.; I did it <myself> without any help.; You can do what you want. <As for me>, I'm not going.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">as for me (I), as for you (you), as for him (he), as for us (we), as for them (they)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What pronouns are used to emphasize the people or things being spoken about, especially when you are emphasizing that one person does something and not someone else?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1a72aa41-1b78-430d-a354-78e39f77b997" ownerguid="aadefee4-ed14-4753-952e-e945f2972e37"> -<ExampleWords> -<AUni ws="en">part, bit, portion, section, segment, sample, cross-section, member</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a part of something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1a76e7ee-eaed-4535-ae7d-b1f6d6e5a07d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chacausha</AUni> -<AUni ws="qvm-x-acl">chacausha</AUni> -<AUni ws="qvm-x-akh">chakawsha</AUni> -<AUni ws="qvm-x-akl">chakawsha</AUni> -<AUni ws="qvm-x-ame">chakawsha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trakawsha</AUni> -<AUni ws="qvm-x-acl">*trakawsha</AUni> -<AUni ws="qvm-x-akh">*trakawsha</AUni> -<AUni ws="qvm-x-akl">*trakawsha</AUni> -<AUni ws="qvm-x-ame">*trakawsha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.48" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eeb80d1c-73bc-44d4-9633-e8a3faf62966" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trakawsha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="52c8d765-54c2-472a-982b-2b1dd737cbe8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a1d0c241-e331-4100-ba1f-a6175b8b1b8d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trakawsha 
\entryTyp root 
\gENG 
\gSPN 
\e *trakawsha 
\c N0 
\ach chacausha 
\akh chakawsha 
\acl chacausha 
\akl chakawsha 
\ame chakawsha 
\i DEU 18.3 Törukunata, carnishkunata y cabrakunata sacrificiupaq apapäkushqanpitami cürakunapa derëchun kanqa palitillan, chakawshan y cuwäjun.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1a78a53e-2625-4fff-9da6-de5e867684f1" ownerguid="884c283c-c156-459c-80a8-bfdbf902271c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="1a79a88c-eaab-46ea-8f23-d6a3d560136c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">juntu; junto</AUni> -<AUni ws="qvm-x-acl">juntu; juntu; junto</AUni> -<AUni ws="qvm-x-akh">juntu; junto</AUni> -<AUni ws="qvm-x-akl">juntu; juntu; junto</AUni> -<AUni ws="qvm-x-ame">juntu; junto</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+junto</AUni> -<AUni ws="qvm-x-acl">+junto</AUni> -<AUni ws="qvm-x-akh">+junto</AUni> -<AUni ws="qvm-x-akl">+junto</AUni> -<AUni ws="qvm-x-ame">+junto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.892" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="453b37f0-c697-44a4-b1d1-782688250b5d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+junto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d90a5bb0-7fcd-4c2f-9d73-2609b77c9e3b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="35d9a8b4-68af-46c4-94b9-79905c29780e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +junto 
\entryTyp root 
\gENG 
\gSPN 
\e +junto 
\c N0 
\ach juntu / ~_# 
\ach junto / _# 
\akh juntu / ~_# 
\akh junto / _# 
\acl juntu / ~_# 
\acl juntu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl junto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl juntu / ~_# 
\akl juntu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl junto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame juntu / ~_# 
\ame junto / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1a7b00c9-cbb0-4c1b-b63e-7019ae6243b4" ownerguid="90037347-4dde-4b7e-ac02-5a67c6cd79de"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1a7daeb3-9ee2-49c0-bee6-472ff0d2e6e1" ownerguid="15fb022e-1b45-41e9-bd8a-09ddc9dc6acd"> -<ExampleWords> -<AUni ws="en">stiffen your resolve, set your mind on, commit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to becoming more determined?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1a7ec24f-0253-4b20-bc0b-edcc85836672" ownerguid="efef45bd-26be-46f8-b85b-424be55bcdac"> -<ExampleWords> -<AUni ws="en">novelty, innovation, latest, original</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to something that is new?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1a7f07d5-9d0c-4e9f-b4a8-b1adccba2410" ownerguid="2b1bbad5-319c-4be7-b46a-1de7fd49b381"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fast?</AUni> -<AUni ws="es">rápido?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d9c24ac6-d5b4-4ed7-87b8-98506b679c30" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="1a7f3f9f-2dd1-42c3-86e1-5cb4990855dd" ownerguid="b64933e3-fd57-4090-848e-2af0cc6d8e88"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="82e9c3df-e95c-44d6-998d-f3779aad6808" t="r" /> -</Morph> -<Msa> -<objsur guid="1b3c6562-1662-468e-b5c0-fcf36256167d" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="1a8322d7-cda9-41e5-a14b-f41274cb7157" ownerguid="4f485a60-e3ba-42e6-9d59-185305c5d1f2"> -<Abbreviation> -<AUni ws="en">8.5.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to right and left.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Right, left</AUni> -</Name> -<Questions> -<objsur guid="e8589085-b03f-4853-8ad8-f96e58ec6a7f" t="o" /> -<objsur guid="fbb30e49-1e83-4ca0-91fa-55be49e8f227" t="o" /> -<objsur guid="ff43b51d-8209-4c2a-9f50-6a6768737623" t="o" /> -<objsur guid="cdb8d570-8e78-4458-a259-ab0b3d7640d2" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="1a894acf-87a1-44cd-b64b-47bcc04d5171" ownerguid="5eb6d0d0-79d3-41e5-b4bc-576076f05dc2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">informal</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4ffec0c2-3214-4804-8e92-d495a0e8fa7a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="1a8bb959-7690-4ab1-bab1-da8ba5164309" ownerguid="ed7930df-e7b4-43c9-a11a-b09521276b57"> -<ExampleWords> -<AUni ws="en">fragrant, aromatic, sweet-smelling, fresh, perfumed, delectable, delicious, nice, scented, wonderful</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe something that smells good?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1a8c6355-0d9f-49a3-80f0-ce26cc0b204e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">churcu</AUni> -<AUni ws="qvm-x-acl">churcu; churco</AUni> -<AUni ws="qvm-x-akh">churku</AUni> -<AUni ws="qvm-x-akl">churku; churko</AUni> -<AUni ws="qvm-x-ame">churku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trurku</AUni> -<AUni ws="qvm-x-acl">*trurku</AUni> -<AUni ws="qvm-x-akh">*trurku</AUni> -<AUni ws="qvm-x-akl">*trurku</AUni> -<AUni ws="qvm-x-ame">*trurku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.180" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e0524f38-9dee-4a59-8772-fdcf4b0956e6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trurku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="79898493-8da4-4ed9-b960-a1a212705cc4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7841cfc4-b0b2-4613-9fd0-799e4395e843" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trurku 
\entryTyp root 
\gENG place 
\gSPN poner 
\e *trurku 
\c V2 
\ach churcu 
\akh churku 
\acl churcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl churco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl churku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl churko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame churku</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1a8d1d13-3708-4bc2-a709-c245a7fd405e" ownerguid="df092f30-28ba-420c-bb67-d2eb55aa173e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="b323c609-c815-4ad1-9580-fd230e623dbf" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">chip</AUni> -<AUni ws="es">astilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0c674953-9fd3-49e8-a24a-68efb59d2b72" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="Text" guid="1a8d9e35-7022-4536-b104-ff840fa9fbc2"> -<Contents> -<objsur guid="bf3f1d61-0fb7-4d38-ad7b-0e74c2659ac5" t="o" /> -</Contents> -<DateCreated val="2022-09-27 21:50:43.184" /> -<DateModified val="2022-09-27 21:51:50.701" /> -<IsTranslated val="False" /> -<Name> -<AUni ws="en">Genesis 40:12-14</AUni> -</Name> -</rt> -<rt class="LexSense" guid="1a9ad89c-e148-4c4e-a622-2c440cab3908" ownerguid="a7dda087-ed7a-41d6-a202-5fcb2cff8d37"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ab8bede6-3526-4117-bb38-269328000049" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="1a9fbf42-e156-4830-9f5e-397151a079ed" ownerguid="aeb53f5e-f8ab-4d4a-9e27-bae9d9185057"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="1aa3b9b8-ed19-4ec5-a42b-57599a8cfe20"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chipya</AUni> -<AUni ws="qvm-x-acl">chipya</AUni> -<AUni ws="qvm-x-akh">chipya</AUni> -<AUni ws="qvm-x-akl">chipya</AUni> -<AUni ws="qvm-x-ame">chipya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tripiya</AUni> -<AUni ws="qvm-x-acl">*tripiya</AUni> -<AUni ws="qvm-x-akh">*tripiya</AUni> -<AUni ws="qvm-x-akl">*tripiya</AUni> -<AUni ws="qvm-x-ame">*tripiya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.119" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2bd22cf0-698e-474c-8aab-87c79dc7849f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tripiya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="313f4c42-6405-4fb6-a6a2-5237af6ed11b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="215ca7ce-111a-447e-a919-7a9bbf508d41" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tripiya 
\entryTyp root 
\gENG all 
\gSPN todo 
\e *tripiya 
\c N0 
\ach chipya 
\akh chipya 
\acl chipya 
\akl chipya 
\ame chipya 
\mcc *tripiya / ~_ PRMT 
\mcc *tripiya / ~_ PSTN</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1aa75a20-959f-488f-a967-7424796eef76" ownerguid="807bc1e5-a2fd-41a2-874b-f43c82ed334b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">feel</AUni> -<AUni ws="es">sentir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6af65fe8-596d-4533-92c7-9e562906319f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="1aa81139-728d-48cb-8039-5e50dfe9924d" ownerguid="0ee5b933-f1ab-485f-894a-51fe239cb726"> -<ExampleWords> -<AUni ws="en">tree, arboreal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to trees?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1aa8f059-38c5-43d5-a339-3550bc311e4b" ownerguid="6c6e3f3f-22a2-41c3-87b9-5a2191c5b35d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1aa9cd8b-f9c7-4ef1-9967-e90e8b5b8003" ownerguid="7c6cad26-79c3-403a-a3aa-59babdfcd46f"> -<ExampleWords> -<AUni ws="en">off color, under the weather, run down, not feel yourself, not be yourself</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to being a little sick?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="1aa9ce88-3320-413f-8a0b-dbdbe8eb03c6" ownerguid="3b9d2d42-89df-48d6-96d3-5451f1bcf6df"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pita</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pita</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pita</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pita</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pita</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ef81e8c3-e8c7-4bf5-9fdb-ebd4284a70bd" t="r" /> -</Morph> -<Msa> -<objsur guid="c516d14b-9b18-44a7-8c37-97267a8b8796" t="r" /> -</Msa> -<Sense> -<objsur guid="75f1d891-753c-42a9-8f14-18fa3dd1767b" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="1aaabd6b-fd59-4686-a3cf-9027808a5c8b" ownerguid="466a4708-420c-4053-b6af-a8b15fb1400e"> -<Form> -<AUni ws="qvm-x-ach">empëñu</AUni> -<AUni ws="qvm-x-acl">empëñu; empëñu; empëño</AUni> -<AUni ws="qvm-x-akh">empëñu</AUni> -<AUni ws="qvm-x-akl">empëñu; empëñu; empëño</AUni> -<AUni ws="qvm-x-ame">empëñu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="1aafafe8-61f2-431e-b9ba-67721b7cc12f" ownerguid="7f1c3292-9d1f-4271-8aa3-bbfd6511104c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="784699c8-295a-41e9-beba-dbe5c8b3858e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="1ab23a1b-07ae-44fc-b3c8-ceaac231ee9a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">camal</AUni> -<AUni ws="qvm-x-acl">camal</AUni> -<AUni ws="qvm-x-akh">camal</AUni> -<AUni ws="qvm-x-akl">camal</AUni> -<AUni ws="qvm-x-ame">camal</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+camal</AUni> -<AUni ws="qvm-x-acl">+camal</AUni> -<AUni ws="qvm-x-akh">+camal</AUni> -<AUni ws="qvm-x-akl">+camal</AUni> -<AUni ws="qvm-x-ame">+camal</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.29" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7282cd91-def6-4665-9b56-b1595d45b8f1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+camal</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5feabe3b-b103-427c-9411-f9dd861dccf4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="35294bb0-4091-4f83-9987-3f54268eab62" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +camal 
\entryTyp root 
\gENG slaughterhouse 
\gSPN camal 
\e +camal 
\c N0 
\mp +FinalC 
\ach camal 
\akh camal 
\acl camal 
\akl camal 
\ame camal</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1ab67a63-575a-400a-b155-4502f0da1634" ownerguid="86e5c062-d90f-476c-a363-264adfafedfa"> -<ExampleWords> -<AUni ws="en">jerk, twitch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to moving suddenly?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1ab79354-e86f-4714-915c-c605e0968cc2" ownerguid="376e9662-39a0-4b0d-a746-195ddf737241"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1abed02b-f727-489a-a673-b7c3adec2f64" ownerguid="74cd7314-5ef6-4505-a35a-81468b5a3f3a"> -<ExampleWords> -<AUni ws="en">situation, position, state of play</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a situation that exists at some time during a larger event or process?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1abfa027-70fd-4f58-957e-d1efa1dd3f23" ownerguid="66a1c8dc-e287-4b06-a384-370020e162b3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 N1/N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="3ace969d-9a80-44a5-839d-e18f56a5f6df" t="o" /> -<objsur guid="fd92955b-97bd-45bc-b7be-fce0acb7eff6" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">SIZE1</AUni> -<AUni ws="es">TAM1</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="19e38a32-084e-488a-9b8c-67b290e25694" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="1ac022bb-34dc-417f-8290-59472d36225d" ownerguid="e369a394-97cf-492b-974f-50349b5be319"> -<Form> -<AUni ws="qvm-x-ach">püsa</AUni> -<AUni ws="qvm-x-acl">püsa</AUni> -<AUni ws="qvm-x-akh">püsa</AUni> -<AUni ws="qvm-x-akl">püsa</AUni> -<AUni ws="qvm-x-ame">püsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="1ac1e89a-e7a1-4892-be5b-67bdb71696b3" ownerguid="0f23f3b8-8ed9-4670-8878-9ed7223a46d5"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="1ac38fc1-2fba-4b82-9f41-b636cb08d1f3" ownerguid="223b53db-03b9-46bb-bd2c-2ef9f6a2733c" /> -<rt class="CmDomainQ" guid="1ac47e12-22b3-4ae9-a5ac-29d7bd2314ee" ownerguid="50eb32a2-6dbb-4b7c-b370-aacdcfeaf5fc"> -<ExampleWords> -<AUni ws="en">keen, avid, great</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe someone who enjoys doing something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1ac84c43-3d90-4e7a-8479-7201d28c920a" ownerguid="5818445e-fd27-4f3a-865c-e9266daa2dd4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoInflAffixSlot" guid="1ac8c2fd-7b17-4fc7-b901-1d1db8a97b2d" ownerguid="a4fc78d6-7591-4fb3-8edd-82f10ae3739d"> -<Name> -<AUni ws="en">justp</AUni> -</Name> -<Optional val="True" /> -</rt> -<rt class="MoAffixAllomorph" guid="1acbb55c-ccc7-45f0-b507-b8645ea87900" ownerguid="fb2de51f-da06-435c-8dcf-320f193f47bc"> -<Form> -<AUni ws="qvm-x-ach">man</AUni> -<AUni ws="qvm-x-acl">man</AUni> -<AUni ws="qvm-x-akh">man</AUni> -<AUni ws="qvm-x-akl">man</AUni> -<AUni ws="qvm-x-ame">man</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="1acde26f-19cc-42d8-9731-ddeaf98565cf" ownerguid="2791f2fd-001c-4aa8-81fe-8062469d17fa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">entrust</AUni> -<AUni ws="es">encargar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7ba9f0a8-a61f-4a02-adf7-ef7305874cff" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="1ad22988-2248-46d9-8a75-6f2232a088a4" ownerguid="737471bd-1c3e-4fa6-8dae-ed89ed2a7336"> -<Form> -<AUni ws="qvm-x-ach">kilömetru</AUni> -<AUni ws="qvm-x-acl">kilömetru; kilömetru; kilömetro</AUni> -<AUni ws="qvm-x-akh">kilömetru</AUni> -<AUni ws="qvm-x-akl">kilömetru; kilömetru; kilömetro</AUni> -<AUni ws="qvm-x-ame">kilömetru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="1ad294b3-e347-4e6e-97a2-a8296e77c929"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">malaga:na</AUni> -<AUni ws="qvm-x-acl">malaga:na</AUni> -<AUni ws="qvm-x-akh">malaga:na</AUni> -<AUni ws="qvm-x-akl">malaga:na</AUni> -<AUni ws="qvm-x-ame">malaga:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mala.gana</AUni> -<AUni ws="qvm-x-acl">+mala.gana</AUni> -<AUni ws="qvm-x-akh">+mala.gana</AUni> -<AUni ws="qvm-x-akl">+mala.gana</AUni> -<AUni ws="qvm-x-ame">+mala.gana</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.275" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="26f1ced2-43c5-4bb6-ac10-7446d74679ff" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mala.gana</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6c197c3f-064c-4823-a8e4-89b47021fb65" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c1100596-da52-4162-9e6d-e7c0d02e6097" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mala.gana 
\entryTyp root 
\gENG 
\gSPN 
\e +mala.gana 
\c N0 
\ach malaga:na 
\akh malaga:na 
\acl malaga:na 
\akl malaga:na 
\ame malaga:na</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1ad2eafd-9bb6-4ea4-bc22-6a222a4b3fb7" ownerguid="41c075a9-cc3f-4e64-8b24-b0e9d16472ca"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">white.of.eyes</AUni> -<AUni ws="es">blanco.del.ojo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5d5933ba-851d-4205-9e8b-1b97526280dd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="1ad87c2c-1509-49e1-aef3-51a40a0fdd35" ownerguid="abab24dd-3897-4b19-a162-93d5230163a6"> -<Form> -<AUni ws="qvm-x-ach">pilta</AUni> -<AUni ws="qvm-x-acl">pilta</AUni> -<AUni ws="qvm-x-akh">pilta</AUni> -<AUni ws="qvm-x-akl">pilta</AUni> -<AUni ws="qvm-x-ame">pilta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="1adae7ed-9c1e-4d57-99af-d8bd12a8b27e" ownerguid="45ecf038-d244-4f96-a002-9d30d505854e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="031f8b7e-6228-4d31-bf53-845ba3eb966c" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="a1987332-8f72-4b38-b7a3-401428860e58" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="1adbdf83-f054-4c46-8d46-67686400f92a" ownerguid="76e1a0be-4631-4515-8f6e-b74bf40859b9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">storage</AUni> -<AUni ws="es">almacen</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d278f691-d823-4954-b508-62eaae8b2795" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="1add5ab4-6950-4327-bff5-139a3ce7e3f4" ownerguid="eeb617bc-720f-4434-ad8f-6106ca19f99e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">anteayer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="69965c17-d852-46e3-8a2d-158baba5bb53" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="1ade1f98-a8da-4da6-9974-bbd4a696a18d" ownerguid="2b67b37f-1128-4394-95b3-db82d5225196"> -<Form> -<AUni ws="qvm-x-ach">siusa</AUni> -<AUni ws="qvm-x-acl">siusa</AUni> -<AUni ws="qvm-x-akh">siwsa</AUni> -<AUni ws="qvm-x-akl">siwsa</AUni> -<AUni ws="qvm-x-ame">siwsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="1adfb93d-04e3-4edf-aaf2-bc702e50cb21" ownerguid="ae328926-69c4-4b51-a752-ef9e6eff92eb"> -<Form> -<AUni ws="qvm-x-ach">versu; verso</AUni> -<AUni ws="qvm-x-acl">versu; versu; verso</AUni> -<AUni ws="qvm-x-akh">versu; verso</AUni> -<AUni ws="qvm-x-akl">versu; versu; verso</AUni> -<AUni ws="qvm-x-ame">versu; verso</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="1adfecf2-0415-47ad-a211-0b257e16a576" ownerguid="7fe748c4-4ee6-45f7-b8e5-7c68966171d6"> -<Form> -<AUni ws="qvm-x-ach">väli; väli</AUni> -<AUni ws="qvm-x-acl">väli; väli; väle</AUni> -<AUni ws="qvm-x-akh">väli; väli</AUni> -<AUni ws="qvm-x-akl">väli; väli; väle</AUni> -<AUni ws="qvm-x-ame">väli; väli</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1ae00306-45c6-4ec8-8285-98c1a7715014" ownerguid="683f570a-0bfe-4a97-b55d-4319b328508b"> -<ExampleWords> -<AUni ws="en">water-power, water mill, water-wheel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to using water power?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1ae12111-7ec7-48de-9ecd-014df611fc32" ownerguid="45a8e1b4-b096-4303-8422-479bd6971fd1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c8dfc7d1-8420-44e5-b06b-b55cf64536d2" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">sick</AUni> -<AUni ws="es">enfermo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="65910896-de23-43b1-8270-2aa93cea2e3f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="1ae2aec2-6636-460c-bbbb-ad396897ffdc" ownerguid="1c82027b-da06-405a-a3e9-faaf125a461c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">infrequently</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a8b3fbbc-e556-435c-bae7-9aaa75dcb674" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="1ae59286-36b6-40de-b2e2-8127030d6ebf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsawa</AUni> -<AUni ws="qvm-x-acl">tsawa</AUni> -<AUni ws="qvm-x-akh">tsawa</AUni> -<AUni ws="qvm-x-akl">tsawa</AUni> -<AUni ws="qvm-x-ame">tsawa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chawa.v</AUni> -<AUni ws="qvm-x-acl">*chawa.v</AUni> -<AUni ws="qvm-x-akh">*chawa.v</AUni> -<AUni ws="qvm-x-akl">*chawa.v</AUni> -<AUni ws="qvm-x-ame">*chawa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.295" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fd1459c3-a81b-4a47-b0c7-4e3df681ee27" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chawa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="76dff45c-686c-4e5c-b193-db43a63e76fd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2ed83c4a-86eb-4acf-8f5b-c7e8d04aa87e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chawa.v 
\entryTyp root 
\gENG store.potatoes 
\gSPN guardar.papas 
\e *chawa.v 
\c V1 
\ach tsawa 
\akh tsawa 
\acl tsawa 
\akl tsawa 
\ame tsawa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="1ae6e023-810b-43f5-8de7-cbb3346890ef"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nalapag</AUni> -<AUni ws="qvm-x-acl">nalapag</AUni> -<AUni ws="qvm-x-akh">nalapaq</AUni> -<AUni ws="qvm-x-akl">nalapaq</AUni> -<AUni ws="qvm-x-ame">nalapaq</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.538" /> -<DateModified val="2022-10-15 16:7:12.272" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e2d14199-f3c0-4b1a-9114-320c7722ef6b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">NOM12PURJ1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a5828f29-3281-474f-84d6-378971bbc0be" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ad123b9e-2ba6-42ab-98c8-a31b0480ef22" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx NOM12PURJ1 
\entryTyp suffix 
\gENG NOM12PURJ 
\gSPN NOM12PROS 
\e NOM12PURJ1 
\c V1/N0 V2/N0 
\o 120 
\mp NeverForeshortened 
\ach nalapag 
\akh nalapaq 
\acl nalapag 
\akl nalapaq 
\ame nalapaq 
\mp +FinalC 
\mcc NOM12PURJ1 / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1ae86248-1f04-4ffc-8c72-cc4225cf4004" ownerguid="e93daac7-6c45-41e3-b69d-4a1ac5cdf95a"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="1ae89c4d-b129-47b5-a0d1-e550104d9457"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">engaña</AUni> -<AUni ws="qvm-x-acl">engaña</AUni> -<AUni ws="qvm-x-akh">engaña</AUni> -<AUni ws="qvm-x-akl">engaña</AUni> -<AUni ws="qvm-x-ame">engaña</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+engañar.1</AUni> -<AUni ws="qvm-x-acl">+engañar.1</AUni> -<AUni ws="qvm-x-akh">+engañar.1</AUni> -<AUni ws="qvm-x-akl">+engañar.1</AUni> -<AUni ws="qvm-x-ame">+engañar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.467" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="371525d8-c69f-4bbd-a0c5-981df3e66a0a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+engañar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aca24133-47fc-43af-88ed-b5dc34919f1d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ebab59fe-e0e9-42a2-97f3-460d8d71b4fd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +engañar.1 
\entryTyp root 
\gENG deceive 
\gSPN engañar.1 
\e +engañar 
\c V2 
\ach engaña 
\akh engaña 
\acl engaña 
\akl engaña 
\ame engaña</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1ae9aade-fecc-400a-bf1a-fa66355225e5" ownerguid="dd94f79c-59a2-494e-a056-52e326dafc39"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PhCode" guid="1aee27e9-b931-4605-896c-bb6cac6a605d" ownerguid="e1bd5b84-48dc-4df5-8cb0-de15793f00f6"> -<Representation> -<AUni ws="qvm-x-ach">ts</AUni> -<AUni ws="qvm-x-acl">ts</AUni> -<AUni ws="qvm-x-akh">ts</AUni> -<AUni ws="qvm-x-akl">ts</AUni> -<AUni ws="qvm-x-ame">ts</AUni> -</Representation> -</rt> -<rt class="PhCode" guid="1aeef2b7-1069-4f0d-99be-96e51dfa6c4a" ownerguid="30c775f1-e1c4-459f-9cbd-0c50d111a03f"> -<Representation> -<AUni ws="qvm-x-ach">̈</AUni> -<AUni ws="qvm-x-acl">̈</AUni> -<AUni ws="qvm-x-akh">̈</AUni> -<AUni ws="qvm-x-akl">̈</AUni> -<AUni ws="qvm-x-ame">̈</AUni> -</Representation> -</rt> -<rt class="CmDomainQ" guid="1af2b068-c259-470b-9d72-e1ca7d6b6903" ownerguid="793d3124-8b77-4ff0-82ec-09a3a9d8d865"> -<ExampleWords> -<AUni ws="en">undeserved, inappropriate, unwarranted, unearned</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that someone does not deserve?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1af4b79e-4212-4158-ae57-0ea374cec9d7" ownerguid="225c48dd-9fc2-4467-944f-16a098b4e518"> -<ExampleWords> -<AUni ws="en">conqueror, vanquisher, victor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the person who defeats the enemy?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1af62928-3bed-4511-8fa4-f359bc07ca98" ownerguid="ec0846d0-9424-4aa2-96b7-e3ea446be8ae"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="1af9c8bf-e343-406c-a610-9604cb7056bb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">biblia</AUni> -<AUni ws="qvm-x-acl">biblia</AUni> -<AUni ws="qvm-x-akh">biblia</AUni> -<AUni ws="qvm-x-akl">biblia</AUni> -<AUni ws="qvm-x-ame">biblia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+biblia</AUni> -<AUni ws="qvm-x-acl">+biblia</AUni> -<AUni ws="qvm-x-akh">+biblia</AUni> -<AUni ws="qvm-x-akl">+biblia</AUni> -<AUni ws="qvm-x-ame">+biblia</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.961" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="032ec2a3-52a7-485e-a65c-f6bf237120ca" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+biblia</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="41f6a2be-b0d6-4d69-8311-bc45fece219c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f36df56b-7299-441f-87c1-1f8376d15fb7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +biblia 
\entryTyp root 
\gENG bible 
\gSPN biblia 
\e +biblia 
\c N0 
\ach biblia 
\akh biblia 
\acl biblia 
\akl biblia 
\ame biblia</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1afb73ca-75cf-4dbc-9d80-e706b85bba49" ownerguid="98cc8439-9c18-453d-8383-45488ba4b606"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">heat</AUni> -<AUni ws="es">calentar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9d381ac9-c24a-48ae-94fb-e1e27a0e5339" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="1afc065a-f51b-4b41-aa93-c6a55c0d064e" ownerguid="28efc1c4-20dd-44f2-9caa-3098b2033b5f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="1afedd8a-1478-44b0-8828-b5d955ebdf49" ownerguid="6e5a4fd3-3971-4583-80b5-e66bd9e2b360"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="1aff13d3-5af1-4583-875c-5dcb984853a2" ownerguid="8dcc9732-0af2-4b44-9ad4-02c1948ee97d"> -<Form> -<AUni ws="qvm-x-ach">culebra</AUni> -<AUni ws="qvm-x-acl">culebra</AUni> -<AUni ws="qvm-x-akh">culebra</AUni> -<AUni ws="qvm-x-akl">culebra</AUni> -<AUni ws="qvm-x-ame">culebra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="1b004786-7bfc-42be-bcd1-8616f9383206"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">verdu:ra</AUni> -<AUni ws="qvm-x-acl">verdu:ra</AUni> -<AUni ws="qvm-x-akh">verdu:ra</AUni> -<AUni ws="qvm-x-akl">verdu:ra</AUni> -<AUni ws="qvm-x-ame">verdu:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+verdura</AUni> -<AUni ws="qvm-x-acl">+verdura</AUni> -<AUni ws="qvm-x-akh">+verdura</AUni> -<AUni ws="qvm-x-akl">+verdura</AUni> -<AUni ws="qvm-x-ame">+verdura</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.373" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1774d9ea-7c7d-4c06-9267-bacc9e49213b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+verdura</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aae94bdb-dda0-48a8-8942-6ed32dff39d9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="05aaedde-b217-43fa-8873-bac0140af913" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +verdura 
\entryTyp root 
\gENG vegetables 
\gSPN verdura 
\e +verdura 
\c N0 
\ach verdu:ra 
\akh verdu:ra 
\acl verdu:ra 
\akl verdu:ra 
\ame verdu:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1b01bd53-1817-48a3-bf44-3db102aa08d3" ownerguid="87f728c9-6808-47ea-b023-95627b8077ec"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="d8d85000-411c-437c-9a7b-5f80458674e7" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="654aa1aa-7c5a-4720-8709-6b266367d96f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="1b021e14-ef44-4c61-a64c-17a54ec01862" ownerguid="b275f58d-9a5d-411f-a811-7a8347a8a4e1"> -<Form> -<AUni ws="qvm-x-ach">chaufer</AUni> -<AUni ws="qvm-x-acl">chaufer</AUni> -<AUni ws="qvm-x-akh">chaufer</AUni> -<AUni ws="qvm-x-akl">chaufer</AUni> -<AUni ws="qvm-x-ame">chaufer</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="1b0270a5-babf-4151-99f5-279ba5a4b044" ownerguid="ba06de9e-63e1-43e6-ae94-77bea498379a"> -<Abbreviation> -<AUni ws="en">2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words for the whole human body, and general words for any part of the body. Use a drawing or photo to label each part. Some words may be more general than others are and include some of the other words. For instance 'head' is more general than 'face' or 'nose'. Be sure that both general and specific parts are labeled.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>8 Body, Body Parts, and Body Products; 8A Body; 8B Parts of the Body</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Body</AUni> -</Name> -<OcmCodes> -<Uni>140 Human Biology; 141 Anthropometry; 142 Descriptive Somatology</Uni> -</OcmCodes> -<Questions> -<objsur guid="df0d48c3-fb09-48ea-8fbd-1a51f16c0ced" t="o" /> -<objsur guid="ccda76e8-b888-4783-96c0-5c16d73088c9" t="o" /> -<objsur guid="57725619-6751-43af-ac67-86855a024a57" t="o" /> -<objsur guid="61b62a87-96d8-415d-93b1-89098168889b" t="o" /> -<objsur guid="b8cff0eb-a739-4c71-84b5-0a559e2e2504" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="7e2b6218-0837-4b16-a982-c9535cccdb21" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="d98c1c67-b70e-4a35-89db-2e744bd5197f" t="o" /> -<objsur guid="a80f12aa-c30d-4892-978a-b076985742d5" t="o" /> -<objsur guid="c5282457-be5f-4ce9-a802-91140cb0a22b" t="o" /> -<objsur guid="df2b9d7a-9b90-4704-8bc3-11dcffe985f4" t="o" /> -<objsur guid="2e5acfd2-3009-4496-9cc2-58d2a0088994" t="o" /> -<objsur guid="1d8633e0-4279-4ddc-826e-16aa08a977e5" t="o" /> -<objsur guid="49c525b3-2163-48e1-b3bd-57e5cdc486a4" t="o" /> -<objsur guid="4c862416-f7c4-4a3c-82ac-fe81e1efb879" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="1b03528f-e14c-42c4-abd9-dafd969f983d" ownerguid="37675f68-2df4-4f45-9d10-2dd417087230"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="1b03cb3a-a5da-498a-bfad-2d1a3fc93acb" ownerguid="b90644f9-6eed-4b42-9d66-175a1454ee7f"> -<Form> -<AUni ws="qvm-x-ach">secta</AUni> -<AUni ws="qvm-x-acl">secta</AUni> -<AUni ws="qvm-x-akh">secta</AUni> -<AUni ws="qvm-x-akl">secta</AUni> -<AUni ws="qvm-x-ame">secta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="1b06c6ef-d6e4-45c6-a078-369bdd34f2fa" ownerguid="19be5c30-1dd9-4294-a1ed-082d8e88cd95"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">flat.place</AUni> -<AUni ws="es">lugar.plano</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="63afefbf-ab30-4c88-8a72-7308d6021d58" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="1b08fea6-aa83-4600-85f4-661b55c0d6f0" ownerguid="ae6f73ab-432d-42e8-aa1a-c848652a13f0"> -<ExampleWords> -<AUni ws="en">madam, ma'am, Miss, Mrs., Ms., lady, Lady</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What do you call a woman when you talk to her?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1b0cecde-f4d5-4b96-88e5-bc2d46789590" ownerguid="2e30f02d-d1e6-489c-a1fb-8b9fb6ecd819"> -<ExampleWords> -<AUni ws="en">disappointed, crushed, disconcerted, discouraged, deflated, disillusioned, disenchanted, dispirited, frustrated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels disappointed?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="1b0fe7f9-c0ed-498b-9263-f8c0d31cc569" ownerguid="88843228-3d25-4192-af4b-b368a7803382"> -<Form> -<AUni ws="qvm-x-ach">yqui</AUni> -<AUni ws="qvm-x-acl">yqui</AUni> -<AUni ws="qvm-x-akh">yki</AUni> -<AUni ws="qvm-x-akl">yki</AUni> -<AUni ws="qvm-x-ame">yki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="b148e437-5e11-4abc-84bf-b21723b5a9f0" t="r" /> -</PhoneEnv> -</rt> -<rt class="LexEntry" guid="1b1367f9-17e2-4350-ac4f-0e2ec6319fd8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">dundi</AUni> -<AUni ws="qvm-x-acl">dundi; dunde</AUni> -<AUni ws="qvm-x-akh">dundi</AUni> -<AUni ws="qvm-x-akl">dundi; dunde</AUni> -<AUni ws="qvm-x-ame">dundi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+dondi.v</AUni> -<AUni ws="qvm-x-acl">+dondi.v</AUni> -<AUni ws="qvm-x-akh">+dondi.v</AUni> -<AUni ws="qvm-x-akl">+dondi.v</AUni> -<AUni ws="qvm-x-ame">+dondi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.437" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="36953628-f07a-4f8a-b15a-53b5e67bf157" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+dondi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ff811eae-204b-4eca-a613-d553c655d0a4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8858c86b-c557-42bd-916b-f78bc1eebc28" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +dondi.v 
\entryTyp root 
\gENG sting 
\gSPN picar 
\e +dondi.v 
\c V2 
\mp +FinalI 
\ach dundi 
\akh dundi 
\acl dundi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl dunde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl dundi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl dunde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame dundi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1b147dc1-3e31-4e83-83c7-78930d8d1df1" ownerguid="f7960e84-5af9-4999-9028-783058aa8c5c"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en"><Each> went his separate way.; <each> person</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">all, everything, the lot, every, each, without exception, altogether, total, a hundred percent, whatsoever, whichever</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to all of a group of things?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1b1fa59c-a161-47d4-b14e-90300db53826" ownerguid="bd02e853-2252-4134-ae55-3629fc6d5e3e"> -<Form> -<AUni ws="qvm-x-ach">tantiya</AUni> -<AUni ws="qvm-x-acl">tantiya</AUni> -<AUni ws="qvm-x-akh">tantiya</AUni> -<AUni ws="qvm-x-akl">tantiya</AUni> -<AUni ws="qvm-x-ame">tantiya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="1b2023ab-99fe-46af-9c82-b9d0c5eaf316"> -<Analyses> -<objsur guid="5663238a-9f7f-4218-aed2-a8cc9be6887e" t="o" /> -<objsur guid="d0a01de3-c88d-4904-91a9-9ea33ab82528" t="o" /> -</Analyses> -<Checksum val="-1922234109" /> -<Form> -<AUni ws="qvm-x-akh">rikatsikun</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoAffixAllomorph" guid="1b20df13-0cae-48c6-8db3-2cd0a2126e8d" ownerguid="6f011005-9763-4284-9571-90529febecf7"> -<Form> -<AUni ws="qvm-x-ach">̈</AUni> -<AUni ws="qvm-x-acl">̈</AUni> -<AUni ws="qvm-x-akh">̈</AUni> -<AUni ws="qvm-x-akl">̈</AUni> -<AUni ws="qvm-x-ame">̈</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="04c2c26a-62fd-4045-9c28-5e4da7139d19" t="r" /> -</PhoneEnv> -</rt> -<rt class="LexEntry" guid="1b211112-9a9c-4f18-9a73-8609cb590d7b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">posision</AUni> -<AUni ws="qvm-x-acl">posision</AUni> -<AUni ws="qvm-x-akh">posision</AUni> -<AUni ws="qvm-x-akl">posision</AUni> -<AUni ws="qvm-x-ame">posision</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+posesión.2</AUni> -<AUni ws="qvm-x-acl">+posesión.2</AUni> -<AUni ws="qvm-x-akh">+posesión.2</AUni> -<AUni ws="qvm-x-akl">+posesión.2</AUni> -<AUni ws="qvm-x-ame">+posesión.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.909" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c325dfa1-0dba-48b1-9377-33c36724f15a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+posesión.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e5be6e0e-dc97-4f22-b748-c4678de7cf60" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6bd29dea-8b29-4e19-b798-3f80a416b32c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +posesión.2 
\entryTyp root 
\gENG inheritance 
\gSPN herencia 
\e +posesión.2 
\c N0 
\mp +assimilated 
\ach posision 
\akh posision 
\acl posision 
\akl posision 
\ame posision 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1b23d298-3aaa-41bd-8537-01fd73a8b505" ownerguid="8bf2e2c1-18ec-4591-81f4-5964530099d3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StStyle" guid="1b25e2a0-5f78-40d1-943a-2b14caccf860" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="0" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Disabled Text</Uni> -</Name> -<Rules> -<Prop forecolor="6d6d6d"></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<Usage> -<AUni ws="en">Material marked as being disabled (no longer active)</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="LexSense" guid="1b26cc4a-9b80-41ef-aa55-a7572ebfe270" ownerguid="71a01bb8-b47c-449b-ad18-573402973638"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="dcdd35f7-cede-4fb2-a401-9853cf79d402" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="1b2733b4-a899-421d-80f9-72a7c1db5e6e" ownerguid="39611e8d-cc67-4c84-977c-094c5cbe9dbc"> -<ExampleWords> -<AUni ws="en">loneliness, homesickness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of loneliness?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1b289788-7af5-41a4-a0fc-9409b93e0f05" ownerguid="cf21bb99-7006-449d-afb9-e63e844d4440"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1b2db829-76d9-42b6-b4e8-449dc6d8d552" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<ExampleWords> -<AUni ws="en">walking stick, cane, crutch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(24) What words refer to a walking stick?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="1b339fa0-ab47-45ab-b56d-b94372e89816" ownerguid="d8b1a547-3592-41b4-b2dd-a7994b7357f4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="82e9c3df-e95c-44d6-998d-f3779aad6808" t="r" /> -</Morph> -<Msa> -<objsur guid="1b3c6562-1662-468e-b5c0-fcf36256167d" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="1b344699-4572-41bb-99c6-18a418329529" ownerguid="44d51316-1085-4051-a5b8-9f52bb62d819"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="1b35fa2e-9d26-4482-b41e-06ad33619b1a" ownerguid="1860968e-a899-4e22-b1f1-34c74536d538"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">waist</AUni> -<AUni ws="es">cinturón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="857aab64-f05a-4ac3-840b-dd163e72a0c0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="StText" guid="1b3624a5-d4f7-4190-9e19-d074a59aa870" ownerguid="b6e16590-f63c-4957-9177-2541ecaf56f4"> -<DateModified val="2022-10-13 15:25:25.350" /> -<Paragraphs> -<objsur guid="0a6ddf7d-44ad-4742-b444-7e394e248d2a" t="o" /> -<objsur guid="0bf46a6d-fab1-499d-a6e6-1d74b0149a24" t="o" /> -<objsur guid="63ad3139-0285-4f68-850d-ff478279f673" t="o" /> -<objsur guid="3a6ba2a1-6774-4591-a376-2c85ffa26673" t="o" /> -<objsur guid="1618137b-b1de-4ef5-857c-1377113af4f5" t="o" /> -<objsur guid="4c1a759e-49c7-4975-be13-1b09afab8993" t="o" /> -</Paragraphs> -<RightToLeft val="False" /> -</rt> -<rt class="LexExampleSentence" guid="1b371a2b-fd94-4519-9c5d-02f1584945ad" ownerguid="0a05d9ef-def4-4ce5-94e7-20daa4d18320"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 26.22 Chancäcanogragmi mishquiycun cuentestëru\f + 26.22 Waquin runacunaga \it nina shimi\it* nipäcun y waquin runacunanami \it wilapishtëru\it* nipäcun.\f* wilapashganga.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="1b399fa1-e4f7-4d7b-a33e-3972b8b556e2" ownerguid="1fda68d4-5941-4695-b656-090d603a3344"> -<Abbreviation> -<AUni ws="en">5.2.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.306" /> -<DateModified val="2022-9-23 16:55:8.306" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to food preservation and storage.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Food storage</AUni> -</Name> -<Questions> -<objsur guid="f8a63551-19e7-43e6-9bd1-2eeea3d3821e" t="o" /> -<objsur guid="36b367fb-3565-408d-98ec-5da88ed971dd" t="o" /> -<objsur guid="c0e7f19b-2880-4641-a1ce-43287ed6aa1d" t="o" /> -<objsur guid="8dbc9292-bfbe-423a-9942-c4f3f72f23fc" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="1b3b65b6-920e-4766-bb93-793727a8f301" ownerguid="fc6d1000-b760-4d53-8983-62c5d20e6a0d"> -<Form> -<AUni ws="qvm-x-ach">barcu; barco</AUni> -<AUni ws="qvm-x-acl">barcu; barcu; barco</AUni> -<AUni ws="qvm-x-akh">barcu; barco</AUni> -<AUni ws="qvm-x-akl">barcu; barcu; barco</AUni> -<AUni ws="qvm-x-ame">barcu; barco</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="1b3c60f3-541a-4e64-9ff0-c4d6a7882a40"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">recompensa</AUni> -<AUni ws="qvm-x-acl">recompensa</AUni> -<AUni ws="qvm-x-akh">recompensa</AUni> -<AUni ws="qvm-x-akl">recompensa</AUni> -<AUni ws="qvm-x-ame">recompensa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+recompensa</AUni> -<AUni ws="qvm-x-acl">+recompensa</AUni> -<AUni ws="qvm-x-akh">+recompensa</AUni> -<AUni ws="qvm-x-akl">+recompensa</AUni> -<AUni ws="qvm-x-ame">+recompensa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.307" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f2261938-60de-4777-8fc3-676b1e83630f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+recompensa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a07dfe6b-73e8-4ed3-b16f-28d091025c84" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="161d3e0a-3a9c-4526-abec-e5e3dfe733db" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +recompensa 
\entryTyp root 
\gENG 
\gSPN 
\e +recompensa 
\c N0 
\ach recompensa 
\akh recompensa 
\acl recompensa 
\akl recompensa 
\ame recompensa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoDerivAffMsa" guid="1b3c6562-1662-468e-b5c0-fcf36256167d" ownerguid="012d29ee-971b-4a9d-9b09-3561fc71c81d"> -<FromPartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</FromPartOfSpeech> -<ToPartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</ToPartOfSpeech> -</rt> -<rt class="LexSense" guid="1b3cb31f-4433-4195-bd21-e46c7d3dfa4e" ownerguid="a97be5dd-69dc-49bf-bcf1-a4da50b64eaa"> -<Gloss> -<AUni ws="en">HAVE</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="df50dc20-76ec-48c3-a0d2-a55e1cd253ab" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="1b3dccfe-29e4-478e-8443-17be9454a05a" ownerguid="7df3078c-f681-4123-a712-4b83e438ea1d"> -<Abbreviation> -<AUni ws="en">7.4.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to leaving something or someone in a place and going away.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>85D Leave in a Place</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Leave something</AUni> -</Name> -<Questions> -<objsur guid="6ac014ba-2a99-46b8-907c-b101dd5f20fd" t="o" /> -<objsur guid="8bb5a987-68f3-4a2a-8ee8-e9cb43af996f" t="o" /> -<objsur guid="a5b7564a-6c25-4fe5-9d29-50563b3357d1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="1b3e40b7-4ddb-4525-99d8-ef89a8f34f69" ownerguid="87d344ac-94cc-49d6-9878-ebc86a933033"> -<ExampleWords> -<AUni ws="en">helpful, accommodating, cooperative, obliging</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a person who helps another?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="1b3eed76-1e51-4f69-8048-bb85826be0b2" ownerguid="29bca0b2-b243-4a26-845b-64250b3599cf"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wata</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wata</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wata</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wata</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wata</Run> -</AStr> -</Form> -<Morph> -<objsur guid="3b701784-2198-494c-97a4-63dfed50856f" t="r" /> -</Morph> -<Msa> -<objsur guid="1b5b9bbf-3a6f-4db8-851a-e016cd3deb8b" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="1b40a824-0735-429b-a008-a354cfe5d5ce" ownerguid="c029eed8-2ec0-4f6f-aa22-3a066bb23ea6"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Mary washed <and> ironed the dress.; Mary washed the dress <and also> ironed it.; Mary <and> Laura washed the dress.; Mary washed the dress <and> Laura washed it <too>.; Laura <also> washed the dress.; Mary washed the dress <and> the shirt.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">and, also, too, besides, besides this, as well, so do I/so has she/so are they, in addition, not to mention, likewise, both...and, and also, again, further, in addition to, not only...but also, some...others, first...then, let me add</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that you are adding another thought to a previous one?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1b44be06-0e06-4441-b742-5975f82f85b2" ownerguid="834a5ed2-d9b6-493e-9c8c-0edfc1175db8"> -<Form> -<AUni ws="qvm-x-ach">memoriza</AUni> -<AUni ws="qvm-x-acl">memoriza</AUni> -<AUni ws="qvm-x-akh">memoriza</AUni> -<AUni ws="qvm-x-akl">memoriza</AUni> -<AUni ws="qvm-x-ame">memoriza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="1b450e43-b1f0-4ad2-a286-2688ed9fdde9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">filfa</AUni> -<AUni ws="qvm-x-acl">filfa</AUni> -<AUni ws="qvm-x-akh">filfa</AUni> -<AUni ws="qvm-x-akl">filfa</AUni> -<AUni ws="qvm-x-ame">filfa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+filfar</AUni> -<AUni ws="qvm-x-acl">+filfar</AUni> -<AUni ws="qvm-x-akh">+filfar</AUni> -<AUni ws="qvm-x-akl">+filfar</AUni> -<AUni ws="qvm-x-ame">+filfar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.556" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1ceedbe7-edd9-45a6-9b1f-7ca2b6bed279" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+filfar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e1537466-2604-4df0-a3d8-6821c2d14da4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="546c7f84-ec24-423b-aba6-93f99897ec02" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +filfar 
\entryTyp root 
\gENG 
\gSPN brillar 
\e +filfar 
\c V1 
\ach filfa 
\akh filfa 
\acl filfa 
\akl filfa 
\ame filfa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmRow" guid="1b4d1c03-9321-415b-a560-fe6831f317be" ownerguid="abc71f1c-dd0b-4f57-add8-9200ac20a653" /> -<rt class="CmSemanticDomain" guid="1b4f987d-3eaa-46dd-95ee-e0cb1f30cfbb" ownerguid="05e20a72-9496-4bba-8097-5605692e83a1"> -<Abbreviation> -<AUni ws="en">9.6.2.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.720" /> -<DateModified val="2022-9-23 16:55:8.720" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that something is generally true, but not true in every case.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">In general</AUni> -</Name> -<Questions> -<objsur guid="38375061-92be-4cc4-9dba-8ddaf2d26a69" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="1b526402-ffe8-49b3-8524-332115850b8c" ownerguid="725d78eb-8cac-4b2f-b5a4-f0a9adb80f5d"> -<ExampleWords> -<AUni ws="en">blaspheme, scoff, profane, irreverent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to speaking against God?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="1b53ff72-77e6-47b5-a562-8ff17cf66a53"> -<Analyses> -<objsur guid="4528c56e-618e-4fcb-abf2-d0e4be3a6a76" t="o" /> -</Analyses> -<Checksum val="1638850799" /> -<Form> -<AUni ws="qvm-x-akh">runa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="1b5a921b-6313-4b24-802b-ff46263c0b85" ownerguid="06980f1f-2d2d-48e9-b382-e0d3b4f4822b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="1b5b9bbf-3a6f-4db8-851a-e016cd3deb8b" ownerguid="7e8288eb-78e7-406e-aba6-b3b9ce712382"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1b5dd084-8a94-4a98-9a43-1fcd284a5bef" ownerguid="eef8c50e-c391-482c-9f60-1bba2d8892b3"> -<ExampleWords> -<AUni ws="en">station, band, frequency, reception</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to radio and television stations?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="1b619165-8798-4d24-8540-75733c2dc1c9" ownerguid="2ef711fc-a58a-4ceb-b48a-7e1fc71ec429"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">sirvi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">sirvi; sirve</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">sirvi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">sirvi; sirve</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">sirvi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e2c07440-dab7-4a6e-83c0-13f6b89cf75f" t="r" /> -</Morph> -<Msa> -<objsur guid="cc65327e-0bf0-4aec-8af9-8f858dbb7550" t="r" /> -</Msa> -<Sense> -<objsur guid="f728295b-d202-43bb-8273-7cd7bd74d531" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="1b6286ec-064c-43e8-93f1-7b4303acba83" ownerguid="167d21c6-a28e-4309-a28e-a1ce0d7c5f14"> -<Form> -<AUni ws="qvm-x-ach">inciensu; incienso</AUni> -<AUni ws="qvm-x-acl">inciensu; inciensu; incienso</AUni> -<AUni ws="qvm-x-akh">inciensu; incienso</AUni> -<AUni ws="qvm-x-akl">inciensu; inciensu; incienso</AUni> -<AUni ws="qvm-x-ame">inciensu; incienso</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1b62d9dc-4cc2-4056-85ee-d8d18473b353" ownerguid="a3fe0ca2-64fe-44db-ac3f-14513385bc25"> -<ExampleWords> -<AUni ws="en">pajamas, pj's, jammies, nightgown, nightie, nightclothes</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What special clothes are used when sleeping?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1b681a0c-c8d0-4b9c-8e81-003ed75c4bfb" ownerguid="ccbbd16f-58c5-45c1-bfff-1fba64d9740e"> -<Question> -<AUni ws="en">(9) imperfective: the situation is viewed as unbounded in the sense that it is habitual, continuous, progressive, or iterative.</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1b68b286-0dca-4025-90fa-8fdf4cd2d664"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cultu; culto</AUni> -<AUni ws="qvm-x-acl">cultu; cultu; culto</AUni> -<AUni ws="qvm-x-akh">cultu; culto</AUni> -<AUni ws="qvm-x-akl">cultu; cultu; culto</AUni> -<AUni ws="qvm-x-ame">cultu; culto</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+culto</AUni> -<AUni ws="qvm-x-acl">+culto</AUni> -<AUni ws="qvm-x-akh">+culto</AUni> -<AUni ws="qvm-x-akl">+culto</AUni> -<AUni ws="qvm-x-ame">+culto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.244" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="846fe98b-bb04-426d-866e-bf42056a0ab0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+culto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f8cb90a4-0ec7-4723-ab0f-7982ca43af62" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c55e24ac-17c0-4301-a067-2975eadb7722" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +culto 
\entryTyp root 
\gENG worship 
\gSPN culto 
\e +culto 
\c N0 
\ach cultu / ~_# 
\ach culto / _# 
\akh cultu / ~_# 
\akh culto / _# 
\acl cultu / ~_# 
\acl cultu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl culto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cultu / ~_# 
\akl cultu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl culto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cultu / ~_# 
\ame culto / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1b690414-a751-4900-9f19-60e823e483a1" ownerguid="c3fe0775-f03b-4a1f-ae57-c6c750ad5b39"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">charge</AUni> -<AUni ws="es">cobrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="eabf45f7-2885-41f5-8ae2-9869e1c84189" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="1b6afcd2-1530-4e2c-a02f-9d14248f3188"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cadala</AUni> -<AUni ws="qvm-x-acl">cadala</AUni> -<AUni ws="qvm-x-akh">cadala</AUni> -<AUni ws="qvm-x-akl">cadala</AUni> -<AUni ws="qvm-x-ame">cadala</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cadala</AUni> -<AUni ws="qvm-x-acl">+cadala</AUni> -<AUni ws="qvm-x-akh">+cadala</AUni> -<AUni ws="qvm-x-akl">+cadala</AUni> -<AUni ws="qvm-x-ame">+cadala</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.11" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6cafe20a-8230-47b3-9ab5-a7ce8991426d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cadala</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6b7802af-64c4-4212-9873-c051ca0d63d1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bf115c25-70b8-4217-bdfb-9a7bf64eba72" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cadala 
\entryTyp root 
\gENG often 
\gSPN a.menudo 
\e +cadala 
\c ONSHEV 
\ach cadala 
\akh cadala 
\acl cadala 
\akl cadala 
\ame cadala</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="1b6b0c12-9ecd-45cb-bb0e-0dadb435eddf" ownerguid="0ebf9fcc-ee38-4f5f-ab5e-c76e199ef7ae"> -<Abbreviation> -<AUni ws="en">8.1.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.567" /> -<DateModified val="2022-9-23 16:55:8.567" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that there are many things or people, or that there is much of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>59A Many, Few; 59B Much, Little; 59F Abundance, Excess, Sparing</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Many, much</AUni> -</Name> -<Questions> -<objsur guid="a33add98-ddcb-4f2b-ac39-fe068f9dc609" t="o" /> -<objsur guid="0bb62eee-190f-4b06-8769-2a0285e60a94" t="o" /> -<objsur guid="e03feeec-b703-4450-a9cc-12a571e2cfad" t="o" /> -<objsur guid="395145aa-e5e4-4072-897b-0e99561e25fb" t="o" /> -<objsur guid="c465f2fd-2efd-4165-b777-fd21e9c5897c" t="o" /> -<objsur guid="64981a50-b51d-425e-a78a-cb04ed852c5d" t="o" /> -<objsur guid="a5e4979f-69c0-4a97-9f40-ad865c189905" t="o" /> -<objsur guid="d1149a94-eb11-405e-88c3-e03a10a2c8d5" t="o" /> -<objsur guid="e271305f-65eb-4b48-82ce-bbc2b82b2298" t="o" /> -<objsur guid="b267cd1d-c859-47d3-a470-f7fabb7966e5" t="o" /> -<objsur guid="8c898340-bd2a-4ab1-b47a-215456b47a5e" t="o" /> -<objsur guid="42022333-b9bd-4f85-9327-b02b36492590" t="o" /> -<objsur guid="a8a18adf-f3c5-4b26-b2d5-c1ce999f3f03" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="1b6c55a2-2ebe-4f06-b420-eab77f0ea624" ownerguid="20549a61-b41c-4987-b0cc-0e5d27691671"> -<Form> -<AUni ws="qvm-x-ach">ladrillu; ladrillo</AUni> -<AUni ws="qvm-x-acl">ladrillu; ladrillu; ladrillo</AUni> -<AUni ws="qvm-x-akh">ladrillu; ladrillo</AUni> -<AUni ws="qvm-x-akl">ladrillu; ladrillu; ladrillo</AUni> -<AUni ws="qvm-x-ame">ladrillu; ladrillo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="1b6d6972-3466-4dd8-a93e-16d5131e3353" ownerguid="da421589-6183-4e82-ab9c-5cbe747ec0a0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">headstrap</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1c2916d7-62d5-49c7-a301-729d5fd36811" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="1b71e06b-a72b-4bcc-acaf-936c92715a84" ownerguid="73dfe06b-5660-4e22-8064-6a0dead8e3de"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">first</AUni> -<AUni ws="es">primero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b22cda5b-7012-4dbd-ba80-7d1e97978390" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="1b72f289-6849-44b1-85d3-27c3c3345923" ownerguid="e9fdc131-addb-4db6-8f79-ae0044e1eb81"> -<ExampleWords> -<AUni ws="en">canon, canonical, apocryphal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe whether or not a book should be considered a part of the sacred writings?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="1b73b2bf-9582-4f8a-822a-e0d020272c7c" ownerguid="196bf7b1-54a1-4a78-8d10-c61585849c63"> -<Abbreviation> -<AUni ws="en">7.2.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.518" /> -<DateModified val="2022-9-23 16:55:8.518" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to following someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15T Follow, Accompany; 15Q Come/Go Behind</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Follow</AUni> -</Name> -<Questions> -<objsur guid="03dff1be-fd9c-4601-b3e7-1d53fd681dc9" t="o" /> -<objsur guid="ac3643f0-90db-4d08-9e54-bddf55193d12" t="o" /> -<objsur guid="e5226cc4-ccdd-484a-8761-6bdfa79ce3f1" t="o" /> -<objsur guid="b98a5bcc-bbea-41cd-acde-2e10408657ee" t="o" /> -<objsur guid="ab54655b-4578-4f30-bf60-5dca06d576a6" t="o" /> -<objsur guid="f92a6344-889d-4b93-917f-c0cf30a745b7" t="o" /> -<objsur guid="3477f468-e8e2-4771-9203-9c6bcd4782d8" t="o" /> -<objsur guid="61e2cce7-cb48-42b5-b517-ea145842b097" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="1b74bcbd-05fb-424d-9696-78c95f94c936" ownerguid="a462dc51-7847-46f3-90ba-a2781972b9d0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">responsibility</AUni> -<AUni ws="es">cargo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f0186080-e861-4b07-9a0a-3944b41073d9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="1b765683-0974-4993-81c2-ba9dfaa48934" ownerguid="4ba1cb76-f683-42bd-80d8-5997db4824f8"> -<Form> -<AUni ws="qvm-x-ach">munta</AUni> -<AUni ws="qvm-x-acl">munta</AUni> -<AUni ws="qvm-x-akh">munta</AUni> -<AUni ws="qvm-x-akl">munta</AUni> -<AUni ws="qvm-x-ame">munta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="1b7874fb-cd3d-445e-a578-81554c897a42" ownerguid="2ae33e10-d42f-492c-9429-f486fb613a7d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wan</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wan</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wan</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wan</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wan</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b441a287-959f-4845-be39-c8c9c2b00da1" t="r" /> -</Morph> -<Msa> -<objsur guid="6a3c64a4-aa9f-4fcb-93ea-93a8b6c7edcc" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="1b7ad87a-5b48-4b76-a000-891132e8fa06" ownerguid="89c9becb-c2f1-4fd2-b247-1d887e7937df"> -<Form> -<AUni ws="qvm-x-ach">anqara</AUni> -<AUni ws="qvm-x-acl">anqara</AUni> -<AUni ws="qvm-x-akh">anqara</AUni> -<AUni ws="qvm-x-akl">anqara</AUni> -<AUni ws="qvm-x-ame">anqara</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1b7b424e-db34-4731-83ef-864e533b6659" ownerguid="7f7fc197-5064-43c0-af51-2919fb7355c9"> -<ExampleWords> -<AUni ws="en">connection, relationship, link (between), point of contact, association, tie, relation, correlation, interplay</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something that connects two things?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="1b7d216c-179b-4658-b0c1-ed7bc4e874b1" ownerguid="ceff0bcd-a262-4e41-bf0c-920b446951be"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -<Sense> -<objsur guid="1b926284-5562-4cf3-8ad2-65536a715093" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="1b7e0a68-9332-4eca-b813-922f5a88445d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">paciencia</AUni> -<AUni ws="qvm-x-acl">paciencia</AUni> -<AUni ws="qvm-x-akh">paciencia</AUni> -<AUni ws="qvm-x-akl">paciencia</AUni> -<AUni ws="qvm-x-ame">paciencia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pacenciar</AUni> -<AUni ws="qvm-x-acl">+pacenciar</AUni> -<AUni ws="qvm-x-akh">+pacenciar</AUni> -<AUni ws="qvm-x-akl">+pacenciar</AUni> -<AUni ws="qvm-x-ame">+pacenciar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.638" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="54af1cff-6162-4dbd-adf1-5830cf338da0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pacenciar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f1ef17bb-2975-4545-a49c-4fe2b0706163" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5268863f-289e-409c-a694-04143f743bc3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pacenciar 
\entryTyp root 
\gENG 
\gSPN pacenciar 
\e +pacenciar 
\c V2 
\mp +assimilated 
\ach paciencia 
\akh paciencia 
\acl paciencia 
\akl paciencia 
\ame paciencia</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1b802715-9ea9-4583-a090-32bf4ddd887b" ownerguid="dc1a2c6f-1b32-4631-8823-36dacc8cb7bb"> -<ExampleWords> -<AUni ws="en">come out, break through (the clouds), go behind (a cloud)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the sun shining through the clouds?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1b80c26b-3693-4f9b-8a63-e4f89ce53e5b" ownerguid="6fbe39fb-a4cb-4fcf-830b-8875fd4324e0"> -<ExampleWords> -<AUni ws="en">coercion, pressure, high-pressure tactics, strong-arm tactics</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something someone does in order to force someone to do something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1b885ad3-995a-4f30-987a-c9b534b52d92" ownerguid="db86135b-faf9-4772-804e-e6db4eb2c546"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gram</AUni> -<AUni ws="es">gramo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5e9b9676-dd94-4f68-8eac-d75773b79a6b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="Text" guid="1b88aaa4-d6e9-45a2-92d8-fdcfa9d75cd6"> -<Contents> -<objsur guid="2f802856-a864-428c-9f5e-b1de2b6a510e" t="o" /> -</Contents> -<DateCreated val="2022-10-11 15:24:29.152" /> -<DateModified val="2022-10-11 15:24:45.801" /> -<IsTranslated val="False" /> -<Name> -<AUni ws="en">DM-YN test bed</AUni> -</Name> -</rt> -<rt class="WfiAnalysis" guid="1b8adb92-b5e5-4408-bf9c-2ff8c6454755" ownerguid="f4b43a4b-dfc0-4733-893c-4fb449d24074"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="ace9f3cc-264f-4e13-90dd-9bac5c270226" t="o" /> -<objsur guid="5b866b03-0517-449f-855a-66feee71e0a2" t="o" /> -<objsur guid="5be12dbb-cb8e-41cc-96ff-781a5d8374ec" t="o" /> -<objsur guid="b2a9e122-c993-439b-b257-4b1e254a5aef" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="1b8e0af2-0a62-4b0c-b9af-59af6da8b0f1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">vinagri; vinagre</AUni> -<AUni ws="qvm-x-acl">vinagri; vinagri; vinagre</AUni> -<AUni ws="qvm-x-akh">vinagri; vinagre</AUni> -<AUni ws="qvm-x-akl">vinagri; vinagri; vinagre</AUni> -<AUni ws="qvm-x-ame">vinagri; vinagre</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vinagre</AUni> -<AUni ws="qvm-x-acl">+vinagre</AUni> -<AUni ws="qvm-x-akh">+vinagre</AUni> -<AUni ws="qvm-x-akl">+vinagre</AUni> -<AUni ws="qvm-x-ame">+vinagre</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.404" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6af4212d-1019-4a64-a0bc-9ab1256d88f8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vinagre</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bcfddc5b-a16f-474e-b7ec-3a65bebc525d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e34e1a48-6dfd-4dbc-98c4-ca39ac55f199" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vinagre 
\entryTyp root 
\gENG 
\gSPN 
\e +vinagre 
\c N0 
\mp +FinalI 
\ach vinagri / ~_# 
\ach vinagre / _# 
\akh vinagri / ~_# 
\akh vinagre / _# 
\acl vinagri / ~_# 
\acl vinagri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl vinagre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl vinagri / ~_# 
\akl vinagri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl vinagre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame vinagri / ~_# 
\ame vinagre / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="1b901416-7438-4ce5-bdfb-dee60e96b51a"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">mutsarkushpan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="1b905486-22ee-41e4-89cf-3c0e512bbc63"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chapi</AUni> -<AUni ws="qvm-x-acl">chapi; chape</AUni> -<AUni ws="qvm-x-akh">chapi</AUni> -<AUni ws="qvm-x-akl">chapi; chape</AUni> -<AUni ws="qvm-x-ame">chapi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chapi.2</AUni> -<AUni ws="qvm-x-acl">*chapi.2</AUni> -<AUni ws="qvm-x-akh">*chapi.2</AUni> -<AUni ws="qvm-x-akl">*chapi.2</AUni> -<AUni ws="qvm-x-ame">*chapi.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.284" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6beda555-823b-4390-8f8a-28406e68b5f8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chapi.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7fec728d-5d30-4419-929a-a414014373a9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="34f84ba9-1ddc-4c0f-bf74-90bd98afebd7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chapi.2 
\entryTyp root 
\gENG shove/hurl 
\gSPN zampar 
\e *chapi.2 
\c V1 
\mp +FinalI 
\ach chapi 
\akh chapi 
\acl chapi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl chape +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chapi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chape +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chapi 
\i ISA 24.13 Olïvuta cosechar chapiptin juc ishcaylana yörancho quëdashgannogmi canga.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1b926284-5562-4cf3-8ad2-65536a715093" ownerguid="93d0971a-ec84-4f2d-a7ae-1b604f995601"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.see</AUni> -<AUni ws="es">ver</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="1b95721d-4c8c-4af7-95eb-4eb18d17edd9" ownerguid="1c1b273d-9def-43bf-8abc-823eea459960"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="1b9638a9-7d74-48e9-8ec4-74fd66f07d9b" ownerguid="d8374966-089c-480b-8915-033787b1d8d6"> -<Form> -<AUni ws="qvm-x-ach">pargash</AUni> -<AUni ws="qvm-x-acl">pargash</AUni> -<AUni ws="qvm-x-akh">parqash</AUni> -<AUni ws="qvm-x-akl">parqash</AUni> -<AUni ws="qvm-x-ame">parqash</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="1b9675f6-fbdf-4823-b226-3ef2c8e2205e" ownerguid="c3928c26-1def-4e50-9da5-16ff1e6fa779"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1b969edb-64ad-489b-a4cf-4065e626e1c0" ownerguid="ca9c215a-e568-4d09-b3a9-b5727cd831d6"> -<ExampleWords> -<AUni ws="en">embalm, mummify, mummy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to preserving a dead body?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1b9fc92a-f57e-4e50-bd19-e82ee8023c18" ownerguid="c6e806f9-600c-4f3f-a41b-959c94fb123c"> -<Form> -<AUni ws="qvm-x-ach">quechua</AUni> -<AUni ws="qvm-x-acl">quechua</AUni> -<AUni ws="qvm-x-akh">quechua</AUni> -<AUni ws="qvm-x-akl">quechua</AUni> -<AUni ws="qvm-x-ame">quechua</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="1ba01f07-3b6e-4a73-b12b-f28f85af73e0" ownerguid="be468e11-6620-492e-8a6a-2e6173759ef7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="1ba42194-6f8b-48b7-83a2-4d64218ea6b8" ownerguid="3fb324dc-7e19-43b2-802a-b37e3d88671f"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="1ba433c0-abc7-46a0-9813-326b76a3fce9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sabor</AUni> -<AUni ws="qvm-x-acl">sabor</AUni> -<AUni ws="qvm-x-akh">sabor</AUni> -<AUni ws="qvm-x-akl">sabor</AUni> -<AUni ws="qvm-x-ame">sabor</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sabor</AUni> -<AUni ws="qvm-x-acl">+sabor</AUni> -<AUni ws="qvm-x-akh">+sabor</AUni> -<AUni ws="qvm-x-akl">+sabor</AUni> -<AUni ws="qvm-x-ame">+sabor</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.409" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c7fafad9-42e2-4e9d-a1c5-18b00ef34760" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sabor</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="812cc454-f3b8-40a0-9a07-4ebbb49abc8e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="574b283b-ad27-46c2-b800-af5ce7488bd3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sabor 
\entryTyp root 
\gENG 
\gSPN 
\e +sabor 
\c N0 
\mp +FinalC 
\ach sabor 
\akh sabor 
\acl sabor 
\akl sabor 
\ame sabor</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1ba79cf7-3010-40de-b0e3-583bc1890bcc" ownerguid="773a282a-9633-4bf1-95ca-58ee82d89b8d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1bafb7ad-a6d6-4d8d-94d0-3c71ea0e9ad5" ownerguid="6b1eeebd-2433-4f39-9e67-7ac4dd0fe20a"> -<ExampleWords> -<AUni ws="en">compass, needle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a compass?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1bb0436f-0422-4281-a8ee-df82643fb28a" ownerguid="273f4956-f79f-4b1e-b552-466280a65e60"> -<ExampleWords> -<AUni ws="en">show, expose, reveal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to showing something by moving something that has been covering it?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1bb60704-499b-4472-9c53-38587c01403a" ownerguid="2aca7b11-2928-46f1-acba-cbcf9a78ce8f"> -<Form> -<AUni ws="qvm-x-ach">olivos</AUni> -<AUni ws="qvm-x-acl">olivos</AUni> -<AUni ws="qvm-x-akh">olivos</AUni> -<AUni ws="qvm-x-akl">olivos</AUni> -<AUni ws="qvm-x-ame">olivos</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="1bb79229-b368-4a4e-9acd-6ddaf5bbfa65"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">donce:lla</AUni> -<AUni ws="qvm-x-acl">donce:lla</AUni> -<AUni ws="qvm-x-akh">donce:lla</AUni> -<AUni ws="qvm-x-akl">donce:lla</AUni> -<AUni ws="qvm-x-ame">donce:lla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+doncella.n</AUni> -<AUni ws="qvm-x-acl">+doncella.n</AUni> -<AUni ws="qvm-x-akh">+doncella.n</AUni> -<AUni ws="qvm-x-akl">+doncella.n</AUni> -<AUni ws="qvm-x-ame">+doncella.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.437" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1686007f-f1f3-478c-997a-17555dc2d7d1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+doncella.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6908727a-dbee-4fbf-baa5-f86dc4ddef71" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5bf08ef9-8172-44ba-87c2-ca48fb271e20" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +doncella.n 
\entryTyp root 
\gENG virgin 
\gSPN doncella 
\e +doncella.n 
\c N0 
\ach donce:lla 
\akh donce:lla 
\acl donce:lla 
\akl donce:lla 
\ame donce:lla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1bb9cd29-f501-4877-ac4a-4ab344c24475" ownerguid="da4e8f5c-b088-4c21-93a5-c820f5f919ff"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="1bbc977d-5778-450c-abfa-be746b255c3d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">dia:cunu</AUni> -<AUni ws="qvm-x-acl">dia:cunu; dia:cunu; dia:cuno</AUni> -<AUni ws="qvm-x-akh">dia:cunu</AUni> -<AUni ws="qvm-x-akl">dia:cunu; dia:cunu; dia:cuno</AUni> -<AUni ws="qvm-x-ame">dia:cunu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+diácono.1</AUni> -<AUni ws="qvm-x-acl">+diácono.1</AUni> -<AUni ws="qvm-x-akh">+diácono.1</AUni> -<AUni ws="qvm-x-akl">+diácono.1</AUni> -<AUni ws="qvm-x-ame">+diácono.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.406" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="13285d39-4c13-4ba9-ad6f-051f3dc0aed7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+diácono.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f7179bab-35f8-4461-8e4c-90bd09d111b3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b7e51b91-bb46-4e6b-a259-512c83f55028" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +diácono.1 
\entryTyp root 
\gENG deacon 
\gSPN diácono 
\e +diácono.1 
\c N0 
\ach dia:cunu 
\akh dia:cunu 
\acl dia:cunu / _# 
\acl dia:cunu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl dia:cuno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl dia:cunu / _# 
\akl dia:cunu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl dia:cuno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame dia:cunu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="1bc206bb-6330-42fe-ae46-070831594274" ownerguid="91ef6c77-bb2f-479a-890e-5cd6aa8694df"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">sueñu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">sueñu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">sueñu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">sueñu</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">sueñu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="fdea127e-b11a-40e0-8b9e-86c87a2e7bc2" t="r" /> -</Morph> -<Msa> -<objsur guid="4fbf9207-4073-4d41-b19a-5795c43bd316" t="r" /> -</Msa> -<Sense> -<objsur guid="2806a25d-0f9d-4c0b-88e1-172d3d586e82" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="1bc5431e-4cc6-495e-97e4-8a8b3cf0e194" ownerguid="15fb022e-1b45-41e9-bd8a-09ddc9dc6acd"> -<ExampleWords> -<AUni ws="en">determined, adamant, committed, driven, hard headed, inexorable, inflexible, obdurate, persevering, pertinacious, single-minded, steadfast, strong-willed, stubborn, tenacious, uncompromising</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a person who is determined?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1bc8047c-2042-4689-ade6-75e5e9867467" ownerguid="6ef0a089-c4b1-455d-af2f-1006ca10d997"> -<Form> -<AUni ws="qvm-x-ach">promësa</AUni> -<AUni ws="qvm-x-acl">promësa</AUni> -<AUni ws="qvm-x-akh">promësa</AUni> -<AUni ws="qvm-x-akl">promësa</AUni> -<AUni ws="qvm-x-ame">promësa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="1bca24e1-f372-4584-bc86-5d6052a22390"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pucutay</AUni> -<AUni ws="qvm-x-acl">pucutay</AUni> -<AUni ws="qvm-x-akh">pukutay</AUni> -<AUni ws="qvm-x-akl">pukutay</AUni> -<AUni ws="qvm-x-ame">pukutay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pukutay</AUni> -<AUni ws="qvm-x-acl">*pukutay</AUni> -<AUni ws="qvm-x-akh">*pukutay</AUni> -<AUni ws="qvm-x-akl">*pukutay</AUni> -<AUni ws="qvm-x-ame">*pukutay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.989" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="46cf4ee1-facb-451d-b633-2ae71796c81e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pukutay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3d4bf633-4f34-4884-a0c9-f5be63ae7138" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8678c1f4-e57f-45d8-a08e-85b03eed93aa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pukutay 
\entryTyp root 
\gENG cloud 
\gSPN nube 
\e *pukutay 
\c N0 
\mp NeverForeshortened 
\ach pucutay 
\akh pukutay 
\acl pucutay 
\akl pukutay 
\ame pukutay 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="1bca57cd-f248-49e7-83c8-6b538fc1c372" ownerguid="baeaf24b-30ff-424c-af6a-c2885e95d9e7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="LexEntry" guid="1bca5864-77c6-4502-9f76-b8b87f931c27"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ra:pis</AUni> -<AUni ws="qvm-x-acl">ra:pis</AUni> -<AUni ws="qvm-x-akh">ra:pis</AUni> -<AUni ws="qvm-x-akl">ra:pis</AUni> -<AUni ws="qvm-x-ame">ra:pis</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ra:pis</AUni> -<AUni ws="qvm-x-acl">*ra:pis</AUni> -<AUni ws="qvm-x-akh">*ra:pis</AUni> -<AUni ws="qvm-x-akl">*ra:pis</AUni> -<AUni ws="qvm-x-ame">*ra:pis</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.270" /> -<DateModified val="2022-10-10 21:18:47.203" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7717bb99-0248-464f-aa46-42448c769da1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ra:pis</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="83f882ec-68b3-469e-81de-8311d446f12a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5b735fc7-fbe0-4a65-a793-dacd7de7c9d5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ra:pis 
\entryTyp root 
\gENG 
\gSPN 
\e *ra:pis 
\c R0 
\mp +FinalC 
\ach ra:pis 
\akh ra:pis 
\acl ra:pis 
\akl ra:pis 
\ame ra:pis</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1bcc5f9c-0461-46e6-9e52-6c69941edbb3" ownerguid="d507ebb9-6fd7-4598-82c0-4f947d1e637e"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="1bcd4269-58b9-49f3-bb8f-70b32f5c7fa9" ownerguid="50b57bd6-5f6b-4793-8e74-7124894ad7cb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -<Sense> -<objsur guid="1b926284-5562-4cf3-8ad2-65536a715093" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="1bd2bd03-03f4-4172-a57f-c07aceb245f3" ownerguid="9bafc137-21e0-4383-9b24-c734aef576c3"> -<Form> -<AUni ws="qvm-x-ach">waychau</AUni> -<AUni ws="qvm-x-acl">waychau</AUni> -<AUni ws="qvm-x-akh">waychaw</AUni> -<AUni ws="qvm-x-akl">waychaw</AUni> -<AUni ws="qvm-x-ame">waychaw</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="1bd42665-0610-4442-8d8d-7c666fee3a6d" ownerguid="dc1a2c6f-1b32-4631-8823-36dacc8cb7bb"> -<Abbreviation> -<AUni ws="en">1.1.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.916" /> -<DateModified val="2022-9-23 16:55:7.916" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the moon. In your culture people may believe things about the moon. For instance in European culture people used to believe that the moon caused people to become crazy. So in English we have words like "moon-struck" and "lunatic." You should include such words in this domain.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Moon</AUni> -</Name> -<Questions> -<objsur guid="1d4a0fe8-d76c-4c3b-9fa8-3487161ba5fb" t="o" /> -<objsur guid="a2c66e2f-fc99-436a-a9df-68ac7d6d1cd1" t="o" /> -<objsur guid="751391d6-4ed4-4194-8268-d8bb16746c6e" t="o" /> -<objsur guid="b395b580-26c7-4e51-8f92-dd9a83a76641" t="o" /> -<objsur guid="70a4a894-d24d-4e98-8f00-77c32ec51e5a" t="o" /> -<objsur guid="81b7371a-fb47-4f41-bc5f-093bed8df0ba" t="o" /> -<objsur guid="1a5c17c1-2201-4efa-aca6-90f72ea73348" t="o" /> -<objsur guid="9977f305-b96d-40a3-926d-7949dbd14f89" t="o" /> -<objsur guid="69d62ac4-f57f-4904-a8ba-a8f6b59aa31a" t="o" /> -<objsur guid="e46b708a-4bb7-4921-bd7d-04b514d9f894" t="o" /> -<objsur guid="46c53915-02ef-4aea-9226-c3286c01ecb2" t="o" /> -<objsur guid="79a5407a-55c8-4ec1-986c-0840772babfa" t="o" /> -<objsur guid="326ffcde-1644-4678-9d1b-76a32e4de62c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="1bd5d8d9-c816-45aa-8269-98fa423cb451"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">raga; raga:</AUni> -<AUni ws="qvm-x-acl">raga; raga:</AUni> -<AUni ws="qvm-x-akh">raqa; raqa:</AUni> -<AUni ws="qvm-x-akl">raqa; raqa:</AUni> -<AUni ws="qvm-x-ame">raqa; raqa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*raqa:</AUni> -<AUni ws="qvm-x-acl">*raqa:</AUni> -<AUni ws="qvm-x-akh">*raqa:</AUni> -<AUni ws="qvm-x-akl">*raqa:</AUni> -<AUni ws="qvm-x-ame">*raqa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.270" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="04c13f19-7f74-4049-84ef-592a8f431d81" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*raqa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b8deea93-c45e-4ae0-bcc7-bd45c904fba8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="daae936a-89c8-40a5-be46-415bd848e37b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *raqa: 
\entryTyp root 
\gENG foundation 
\gSPN simiento 
\e *raqa: 
\c N0 
\mp +FinalC 
\mp +underlong 
\ach raga foreshortened 
\ach raga: 
\akh raqa foreshortened 
\akh raqa: 
\acl raga foreshortened 
\acl raga: 
\akl raqa foreshortened 
\akl raqa: 
\ame raqa foreshortened 
\ame raqa: 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="1bd626c2-0c06-4697-a9ab-0a79acfeb152"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">indiu; indio</AUni> -<AUni ws="qvm-x-acl">indiu; indiu; indio</AUni> -<AUni ws="qvm-x-akh">indiu; indio</AUni> -<AUni ws="qvm-x-akl">indiu; indiu; indio</AUni> -<AUni ws="qvm-x-ame">indiu; indio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+indio</AUni> -<AUni ws="qvm-x-acl">+indio</AUni> -<AUni ws="qvm-x-akh">+indio</AUni> -<AUni ws="qvm-x-akl">+indio</AUni> -<AUni ws="qvm-x-ame">+indio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.822" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="813dd578-4318-4ce0-bae2-82ee48f31a2a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+indio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2f6365b3-e63b-4b09-b3ad-af787773ff21" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fc79555a-5d7e-4b36-b031-af615760c286" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +indio 
\entryTyp root 
\gENG indian 
\gSPN indio 
\e +indio 
\c N0 
\ach indiu / ~_# 
\ach indio / _# 
\akh indiu / ~_# 
\akh indio / _# 
\acl indiu / ~_# 
\acl indiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl indio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl indiu / ~_# 
\akl indiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl indio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame indiu / ~_# 
\ame indio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1bd679b4-f20e-4c85-87a3-1e80f3ebfe2a" ownerguid="c6ea12be-7f25-45bf-938e-4c9a801b929f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="1bd6b7a5-bf54-4161-bd0f-224286974fef"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">monstru; monstro</AUni> -<AUni ws="qvm-x-acl">monstru; monstru; monstro</AUni> -<AUni ws="qvm-x-akh">monstru; monstro</AUni> -<AUni ws="qvm-x-akl">monstru; monstru; monstro</AUni> -<AUni ws="qvm-x-ame">monstru; monstro</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+monstro</AUni> -<AUni ws="qvm-x-acl">+monstro</AUni> -<AUni ws="qvm-x-akh">+monstro</AUni> -<AUni ws="qvm-x-akl">+monstro</AUni> -<AUni ws="qvm-x-ame">+monstro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.467" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2f22b5e5-1eec-4b90-a0ad-275e3b40b3d9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+monstro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ee117845-dcab-40d3-aee8-8988cf531702" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dd2acf5a-f941-41a6-9f46-909b779a31d1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +monstro 
\entryTyp root 
\gENG 
\gSPN 
\e +monstro 
\c N0 
\ach monstru / ~_# 
\ach monstro / _# 
\akh monstru / ~_# 
\akh monstro / _# 
\acl monstru / ~_# 
\acl monstru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl monstro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl monstru / ~_# 
\akl monstru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl monstro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame monstru / ~_# 
\ame monstro / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1bd8f896-4998-43b2-96d9-b3f0a7295f25" ownerguid="4a388000-d5c6-4127-91cd-f4e0c9fac6f1"> -<ExampleWords> -<AUni ws="en">information, info, content, facts, details, particulars, data</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to information?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1bde266b-3a91-41a8-bd18-5c714ff30316" ownerguid="b0905fa9-2f90-410b-8eb5-7c7944c4f0f9"> -<ExampleWords> -<AUni ws="en">bawdry, erotic, immoral, kinky, licentious, lustful, sensuous, voluptuous, indecent, obscene</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who is sexual immoral?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="1bded458-9a0f-4f31-b379-16ee23d40433" ownerguid="4b0bbf4a-bae7-431a-b85a-c3a0cffe19b4"> -<Form> -<AUni ws="qvm-x-ach">ycä</AUni> -<AUni ws="qvm-x-acl">ycä</AUni> -<AUni ws="qvm-x-akh">ykä</AUni> -<AUni ws="qvm-x-akl">ykä</AUni> -<AUni ws="qvm-x-ame">ykaa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="4d5106b0-9756-4fc2-a2e3-b3bb0373fd9b" t="r" /> -</PhoneEnv> -</rt> -<rt class="LexSense" guid="1bdf4e7b-4771-464b-99c6-c765114dcfeb" ownerguid="dc597a5b-37c8-4e1e-a71c-9bc1da75655b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">drain</AUni> -<AUni ws="es">escurrir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5df5581e-1f50-47ab-85d1-13117f46bc1e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="1be2e747-15b5-4fce-afcc-9d7faa515db5" ownerguid="7d6ceca0-b1e2-4993-9888-ab4305c0e811"> -<Form> -<AUni ws="qvm-x-ach">togpi</AUni> -<AUni ws="qvm-x-acl">togpi; togpi; togpe</AUni> -<AUni ws="qvm-x-akh">toqpi</AUni> -<AUni ws="qvm-x-akl">toqpi; toqpi; toqpe</AUni> -<AUni ws="qvm-x-ame">tuqpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="1be3ad4a-6182-49a9-be77-a1a5f654723f" ownerguid="7806664c-6392-461e-ae19-341f6277385f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gum</AUni> -<AUni ws="es">chicle</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="220e6db6-d429-427f-a263-c46b9e9dceed" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="1be67f0c-d2f3-41bb-9c6f-d82ab948d427" ownerguid="ffd0547e-e537-4614-ac3f-6d8cd3351f33"> -<ExampleWords> -<AUni ws="en">skull, second stomach (for cows, goats, sheep), spinal cord, lung, heart, small intestine, large intestine, liver, gall bladder, pancreas, kidney</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What are the internal parts of an animal?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1bed0d5f-e5d0-4be1-9297-388212beef53" ownerguid="2a62f8e4-7da3-4f37-bf44-e24033c99c00"> -<ExampleWords> -<AUni ws="en">aggravating, exasperating, galling, infuriating, insulting, irksome, maddening, objectionable, offending, offensive, vexing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe something that causes someone to feel angry?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1bee2942-0854-4a45-819a-1b5a3f1542bf" ownerguid="81a61411-2402-4397-bc49-30683b850ce6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1 V2/V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">BF</AUni> -<AUni ws="es">AQAL</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f5ac8aae-add3-428c-8670-61b9b9ef1327" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="1c009ce6-c4d3-4be7-bd27-02d93e8f9ef8" ownerguid="efc668bc-6e64-498d-8e03-c8c829fe229c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lioness</AUni> -<AUni ws="es">leona</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0bae4e83-01e9-4dcb-a5d1-c1a1cdaed487" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="1c00eec6-a852-48f6-aea6-f3b0d73f95b3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">esta:ñu</AUni> -<AUni ws="qvm-x-acl">esta:ñu; esta:ñu; esta:ño</AUni> -<AUni ws="qvm-x-akh">esta:ñu</AUni> -<AUni ws="qvm-x-akl">esta:ñu; esta:ñu; esta:ño</AUni> -<AUni ws="qvm-x-ame">esta:ñu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+estaño</AUni> -<AUni ws="qvm-x-acl">+estaño</AUni> -<AUni ws="qvm-x-akh">+estaño</AUni> -<AUni ws="qvm-x-akl">+estaño</AUni> -<AUni ws="qvm-x-ame">+estaño</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.508" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b05373d4-77d9-49e4-91da-ace22b3cdaec" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+estaño</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c2a100ad-9da3-45cb-88f8-12b76fac8d0b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="529f9000-22f0-42c9-931e-41d9e5c40929" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +estaño 
\entryTyp root 
\gENG tin 
\gSPN 
\e +estaño 
\c N0 
\ach esta:ñu 
\akh esta:ñu 
\acl esta:ñu / _# 
\acl esta:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl esta:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl esta:ñu / _# 
\akl esta:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl esta:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame esta:ñu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="1c018516-8c24-49ed-a8f1-f3b71c280a19"> -<Analyses> -<objsur guid="cc316ccb-1849-4610-8a0b-c99cbc9f2009" t="o" /> -</Analyses> -<Checksum val="-105465735" /> -<Form> -<AUni ws="qvm-x-akh">ishkan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="1c0191e6-c3d7-4ad0-9a72-22b4fcf5843c" ownerguid="d5c59f3d-5ec4-4ccb-b2c8-a4ee009ee479"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="1c03b708-0b24-407a-9f2f-6bca9a1e8d8b" ownerguid="7fe748c4-4ee6-45f7-b8e5-7c68966171d6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">receipt</AUni> -<AUni ws="es">vale</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f388ddf9-c41d-4d4e-be40-063bec82a996" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="1c048eae-8608-4987-a337-7228f9f72fc8" ownerguid="9b4b60f0-473f-4340-a4c1-6c6f92ad9786"> -<Form> -<AUni ws="qvm-x-ach">llanqui</AUni> -<AUni ws="qvm-x-acl">llanqui; llanqui; llanque</AUni> -<AUni ws="qvm-x-akh">llanki</AUni> -<AUni ws="qvm-x-akl">llanki; llanki; llanke</AUni> -<AUni ws="qvm-x-ame">llanki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="1c058512-9c4d-47ac-b13a-4d91161d442a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">atra:su</AUni> -<AUni ws="qvm-x-acl">atra:su; atra:su; atra:so</AUni> -<AUni ws="qvm-x-akh">atra:su</AUni> -<AUni ws="qvm-x-akl">atra:su; atra:su; atra:so</AUni> -<AUni ws="qvm-x-ame">atra:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+atraso</AUni> -<AUni ws="qvm-x-acl">+atraso</AUni> -<AUni ws="qvm-x-akh">+atraso</AUni> -<AUni ws="qvm-x-akl">+atraso</AUni> -<AUni ws="qvm-x-ame">+atraso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.870" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c21da79e-1b57-4ce2-8566-3b3ea06f65a5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+atraso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="02340639-5072-448e-a414-78dcb2e26e0c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b8abfad7-d129-4ae4-9cc4-226ebb0e7647" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +atraso 
\entryTyp root 
\gENG 
\gSPN atraso 
\e +atraso 
\c N0 
\ach atra:su 
\akh atra:su 
\acl atra:su / _# 
\acl atra:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl atra:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl atra:su / _# 
\akl atra:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl atra:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame atra:su</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1c07f1bf-a32a-4696-bac1-16704ad85ede" ownerguid="350667ee-592b-47af-adca-14e820ec58cf"> -<Question> -<AUni ws="en">(3) What are the noun forms of these words? </AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1c08525c-db8f-446b-b5ea-8bf25fd5be8c" ownerguid="ec6f626c-e7a0-4ec7-a541-d683f20c9271"> -<ExampleWords> -<AUni ws="en">area, vicinity, environs, neighborhood, surroundings, community, district, region, context</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the area around something else?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1c087574-defa-4621-ad70-d487d4a08a43" ownerguid="be0b7b6e-c484-4277-b788-c5b434079a2f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="1c0c4951-03b6-49b8-8a8e-724397cfd5a7" ownerguid="f9d020d6-b129-4bb8-9509-3b4a6c27482e"> -<Abbreviation> -<AUni ws="en">3.4.1.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.133" /> -<DateModified val="2022-9-23 16:55:8.133" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling obsessed--to be very interested in something for a long time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Obsessed</AUni> -</Name> -<Questions> -<objsur guid="16e2b076-dfc4-49b6-b736-109d144f61a1" t="o" /> -<objsur guid="af701296-dac7-42d2-8962-f8cdcba34499" t="o" /> -<objsur guid="6b8d5c87-49fd-41de-aee8-52053cc61a55" t="o" /> -<objsur guid="c70f67f8-6ef3-41e8-8797-5a0cf9bd2c24" t="o" /> -<objsur guid="5f59ba2f-f052-4221-897e-6358a6d44189" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="1c1198da-f907-4473-82dd-43598178b496"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">desayunu; desayuno</AUni> -<AUni ws="qvm-x-acl">desayunu; desayunu; desayuno</AUni> -<AUni ws="qvm-x-akh">desayunu; desayuno</AUni> -<AUni ws="qvm-x-akl">desayunu; desayunu; desayuno</AUni> -<AUni ws="qvm-x-ame">desayunu; desayuno</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+desayuno</AUni> -<AUni ws="qvm-x-acl">+desayuno</AUni> -<AUni ws="qvm-x-akh">+desayuno</AUni> -<AUni ws="qvm-x-akl">+desayuno</AUni> -<AUni ws="qvm-x-ame">+desayuno</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.386" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="59c2d7a8-95dc-431d-9d4b-89216a287c53" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+desayuno</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c1bcae72-34d7-4cdd-b40d-cd392591afef" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e58f15f3-420e-4a80-976d-55ae023316be" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +desayuno 
\entryTyp root 
\gENG breakfast 
\gSPN desayuno 
\e +desayuno 
\c N0 
\ach desayunu / ~_# 
\ach desayuno / _# 
\akh desayunu / ~_# 
\akh desayuno / _# 
\acl desayunu / ~_# 
\acl desayunu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl desayuno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl desayunu / ~_# 
\akl desayunu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl desayuno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame desayunu / ~_# 
\ame desayuno / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="1c166923-c2c1-404e-9b84-fc6c96816fc7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maculca</AUni> -<AUni ws="qvm-x-acl">maculca</AUni> -<AUni ws="qvm-x-akh">makulka</AUni> -<AUni ws="qvm-x-akl">makulka</AUni> -<AUni ws="qvm-x-ame">makulka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*makullka</AUni> -<AUni ws="qvm-x-acl">*makullka</AUni> -<AUni ws="qvm-x-akh">*makullka</AUni> -<AUni ws="qvm-x-akl">*makullka</AUni> -<AUni ws="qvm-x-ame">*makullka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.265" /> -<DateModified val="2022-10-10 21:19:47.698" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2b0da1d5-77e8-4dbf-b5ef-a2ca36044b09" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*makullka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e873108d-6afa-42bb-b649-a81390e866c8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="eadc40b4-38f1-465d-8191-70f8aa5e7f95" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *makullka 
\entryTyp root 
\gENG grow.stiff 
\gSPN 
\e *makullka 
\c V1 
\ach maculca 
\akh makulka 
\acl maculca 
\akl makulka 
\ame makulka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1c17ef11-68a6-4aa1-896e-a4ba0c006bd8" ownerguid="0c5445b7-c733-40af-91dc-9fef0a52262c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="fa0f7083-7b23-4da3-9808-df81d006696e" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="56e3dd29-e1bd-41fb-bce3-80efaad5a34e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="1c1ab146-3f58-4cae-96b8-ca8e7fe17a9a" ownerguid="913182a9-5615-4f96-a50e-7aadd51f18e3"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="1c1b273d-9def-43bf-8abc-823eea459960"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quinra</AUni> -<AUni ws="qvm-x-acl">quinra</AUni> -<AUni ws="qvm-x-akh">kinra</AUni> -<AUni ws="qvm-x-akl">kinra</AUni> -<AUni ws="qvm-x-ame">kinra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kinra</AUni> -<AUni ws="qvm-x-acl">*kinra</AUni> -<AUni ws="qvm-x-akh">*kinra</AUni> -<AUni ws="qvm-x-akl">*kinra</AUni> -<AUni ws="qvm-x-ame">*kinra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.983" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b5f0305b-e9ce-41fb-a8bc-5900aa9402c3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kinra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1b95721d-4c8c-4af7-95eb-4eb18d17edd9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7938c5cf-93d0-4b8f-943b-5d032105117b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kinra 
\entryTyp root 
\gENG level 
\gSPN a.nivel 
\e *kinra 
\c N0 
\ach quinra 
\akh kinra 
\acl quinra 
\akl kinra 
\ame kinra 
\i EXO 26.26 Quinranpa tsacarag guerucunata ruratsinqui acacia guerupita.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1c1bda00-c53e-4cde-b9db-ed8baa2b84d0" ownerguid="e22343c1-7f13-4dbd-aa61-16784ec9c367"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">peel.skin</AUni> -<AUni ws="es">pelar.piel</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3d7ca89d-06ac-4b06-95a5-89dff3378911" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="1c1ca5bf-75b8-48e8-a459-22b6ef7c5efc" ownerguid="df45abe8-d148-4729-afff-c7a0c4608128"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="1c1ca8c9-0a06-490b-8971-071888ec4fde" ownerguid="f841d2d0-ebbe-47cc-b47a-cf2915abeda8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">school.district</AUni> -<AUni ws="es">UGEL</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5501c00d-3501-4c10-9967-c9c7302182a1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="1c1e1fc5-5e41-4df4-bd34-2f3e20dd0bbc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tanga</AUni> -<AUni ws="qvm-x-acl">tanga</AUni> -<AUni ws="qvm-x-akh">tanqa</AUni> -<AUni ws="qvm-x-akl">tanqa</AUni> -<AUni ws="qvm-x-ame">tanqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tanqa.v</AUni> -<AUni ws="qvm-x-acl">*tanqa.v</AUni> -<AUni ws="qvm-x-akh">*tanqa.v</AUni> -<AUni ws="qvm-x-akl">*tanqa.v</AUni> -<AUni ws="qvm-x-ame">*tanqa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.802" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d4f0635d-0f97-4912-ab54-1017cc9ee614" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tanqa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="996979c0-4890-430c-a725-480686d6dabc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a1f18424-bdb0-4454-a038-14d4d9625272" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tanqa.v 
\entryTyp root 
\gENG push 
\gSPN empujar 
\e *tanqa.v 
\c V2 
\ach tanga 
\akh tanqa 
\acl tanga 
\akl tanqa 
\ame tanqa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1c1f65d7-347c-417e-9be1-beac6b42a5ba" ownerguid="96956f25-5845-44f9-bf3f-702520108a85"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1c235cde-4556-464c-ac6d-ba821fb02462" ownerguid="6e7d10f8-6da5-4a8a-a06d-952511194105"> -<ExampleWords> -<AUni ws="en">lose weight, work something off, work off some of this weight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something becoming light?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1c259d4a-a4b7-4881-ad9e-56c3959da548" ownerguid="3b986bd2-93d0-4ec5-b224-e94e21452077"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="1c273141-598c-4b87-93b5-1a41f96a4e9a" ownerguid="f651aadd-814c-488c-9101-cbff0150b5e1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lie</AUni> -<AUni ws="es">adrede</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fef9665f-ce2f-47fd-aefb-1165c0653bba" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="1c2916d7-62d5-49c7-a301-729d5fd36811" ownerguid="da421589-6183-4e82-ab9c-5cbe747ec0a0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1c29f792-622c-480b-b811-8a10f4106255" ownerguid="76a06e45-99f7-446f-a2e8-e23edf6064bd"> -<ExampleWords> -<AUni ws="en">decay, rot, decompose, perish, fester, mildew, molder, putrefy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to something decaying?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="1c2afedd-b532-41e4-8eb0-9b00c2d75090" ownerguid="f711d703-1eac-4059-b0da-24d34bd8df5e"> -<Form> -<AUni ws="qvm-x-ach">no</AUni> -<AUni ws="qvm-x-acl">no</AUni> -<AUni ws="qvm-x-akh">no</AUni> -<AUni ws="qvm-x-akl">no</AUni> -<AUni ws="qvm-x-ame">no</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="8378f21c-cf54-437a-9d41-a303c764b326" t="r" /> -</PhoneEnv> -</rt> -<rt class="MoStemAllomorph" guid="1c2c973a-6465-451f-aa07-f06d1c08b8d9" ownerguid="dc6e0d2d-7fae-4330-9334-15de85a2f115"> -<Form> -<AUni ws="qvm-x-ach">chapiri</AUni> -<AUni ws="qvm-x-acl">chapiri; chapire</AUni> -<AUni ws="qvm-x-akh">chapiri</AUni> -<AUni ws="qvm-x-akl">chapiri; chapire</AUni> -<AUni ws="qvm-x-ame">chapiri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1c2cb7c9-a904-439e-a711-5e0433d73ce6" ownerguid="225c48dd-9fc2-4467-944f-16a098b4e518"> -<ExampleWords> -<AUni ws="en">outwit, outsmart, be too clever for</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to defeating someone by using your intelligence?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="1c308e76-8f1a-4982-a24f-c36dc4f45e3f" ownerguid="17b5b77a-87b2-4244-8f01-2a966bf6913a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Num 21.27 Tsaypitami poesiata recitagcunapis caynog nin:</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="1c30f0c2-cb7d-4959-bdc2-7f2aa8451b6a" ownerguid="60dc7cf6-0a41-4cd3-99a6-0b7a71488e7e"> -<ExampleWords> -<AUni ws="en">bad feelings, negative emotions</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to bad feelings?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1c324d75-00b9-47c2-93b1-95870b2bbc6c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shu</AUni> -<AUni ws="qvm-x-acl">shu; shu; sho</AUni> -<AUni ws="qvm-x-akh">shu</AUni> -<AUni ws="qvm-x-akl">shu; shu; sho</AUni> -<AUni ws="qvm-x-ame">shu</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.609" /> -<DateModified val="2022-10-16 14:9:44.893" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="623ce4fc-c83d-436b-8252-481bc2e79754" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">2O</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7fd5787e-fab9-4d36-bb4a-82d01c28f736" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bf6a441e-59e4-4e54-9969-9a29db438690" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx 2O 
\entryTyp suffix 
\gENG 2O 
\gSPN 2O 
\e 2O 
\c V2/V1 
\ach shu 
\akh shu 
\acl shu / _# 
\acl shu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl sho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shu / _# 
\akl shu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shu 
\o 070 
\i EZK 27.13 Tsaynoglami Javán, Tubal y Mesec runacunapis ashmay runacunata y broncipita rurashga manëjucunata ranticushog canqui. 
\mcc 2O / _ ... 2 / _ ... 2P.V / _ ... 2P.I / _ ... 2PST / _ PSTNAR / _ 2PST / _ AG 
\mcc 2O / ~_ 3</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1c3415bd-d22d-4ae3-8002-deb9baa1c08e" ownerguid="d10301f3-573c-4005-ad65-1c73fb80b3b6"> -<ExampleWords> -<AUni ws="en">understand, understanding, comprehend, have/gain insight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to understanding something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1c341f68-b48e-4114-bc9a-8db41b7ff69a" ownerguid="5a886846-a7a2-49bb-b088-4b00d9902107"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1c34a82a-be25-4148-982b-ec6df72bb78d" ownerguid="f7e625a6-53e3-4f9b-8764-119e3906f5cf"> -<ExampleWords> -<AUni ws="en">single, unmarried, eligible, unwed, celibacy, celibate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being unmarried?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1c359042-0bd9-4cba-ae3d-a79bb3be6c48"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cobri; cobre</AUni> -<AUni ws="qvm-x-acl">cobri; cobri; cobre</AUni> -<AUni ws="qvm-x-akh">cobri; cobre</AUni> -<AUni ws="qvm-x-akl">cobri; cobri; cobre</AUni> -<AUni ws="qvm-x-ame">cobri; cobre</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cobre</AUni> -<AUni ws="qvm-x-acl">+cobre</AUni> -<AUni ws="qvm-x-akh">+cobre</AUni> -<AUni ws="qvm-x-akl">+cobre</AUni> -<AUni ws="qvm-x-ame">+cobre</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.132" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="39a56f22-0ca7-4d5d-9440-ed4fa319d3d9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cobre</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="27ca95e0-2cd0-4a74-a7f0-2a7ee3f38c2f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="26491087-e3a2-4223-89bd-bf54663b4930" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cobre 
\entryTyp root 
\gENG copper 
\gSPN cobre 
\e +cobre 
\c N0 
\mp +FinalI 
\ach cobri / ~_# 
\ach cobre / _# 
\akh cobri / ~_# 
\akh cobre / _# 
\acl cobri / ~_# 
\acl cobri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cobre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cobri / ~_# 
\akl cobri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cobre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cobri / ~_# 
\ame cobre / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="1c3c8af0-56b9-4617-862e-21f39b388606" ownerguid="50db27b5-89eb-4ffb-af82-566f51c8ec0b"> -<Abbreviation> -<AUni ws="en">2.6.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to dying.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>23G Live, Die</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Die</AUni> -</Name> -<OcmCodes> -<Uni>165 Mortality; 760 Death; 763 Dying</Uni> -</OcmCodes> -<Questions> -<objsur guid="cd5bbd6a-7439-4a79-b970-a64002cccc3a" t="o" /> -<objsur guid="6619a250-60be-4c7f-9bee-e5fe3193570f" t="o" /> -<objsur guid="d3d6dc89-c2d8-477d-a330-96231c3869ee" t="o" /> -<objsur guid="78fd31b9-6c87-4628-a305-877d98fb92dd" t="o" /> -<objsur guid="97305909-6dc0-4eab-8994-c0942d49e763" t="o" /> -<objsur guid="d0d03d31-db63-43b0-8fcb-ee62be1ea3b9" t="o" /> -<objsur guid="5b67fda2-e2bd-407b-afd2-c8ff4a458322" t="o" /> -<objsur guid="7b1ebf43-411a-4a91-a98d-9bece3e55510" t="o" /> -<objsur guid="01aa87d3-5fe3-4f09-929e-f5ac417ebddf" t="o" /> -<objsur guid="cc18a184-6021-4adb-851f-4b58dcf0baa8" t="o" /> -<objsur guid="83594431-c442-4dac-8eaa-31145c2ef890" t="o" /> -<objsur guid="6a372894-57a3-4aa2-84a1-6543c955fec7" t="o" /> -<objsur guid="90833f45-c501-48a5-b83e-6b0faa6f4c52" t="o" /> -<objsur guid="d84f0723-55d8-48c9-abd7-d9ad479fe99d" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="06a89652-70e0-40ac-b929-ed42f011c9fc" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b8d2fdb9-22ea-4040-8abb-aeeff0399f23" t="o" /> -<objsur guid="7e2b6218-0837-4b16-a982-c9535cccdb21" t="o" /> -<objsur guid="08d5e632-0aed-4924-b3bb-d43de3420385" t="o" /> -<objsur guid="f2d0f288-5bbe-4fa0-9e8f-ddcc74891701" t="o" /> -<objsur guid="ca9c215a-e568-4d09-b3a9-b5727cd831d6" t="o" /> -<objsur guid="32cf3835-bced-4ea1-9c7a-f7ff653e59fe" t="o" /> -<objsur guid="1ec85151-eba0-48f4-b56d-4f8040602a4b" t="o" /> -<objsur guid="0281fb1d-ab12-41b9-a3dc-09ef6b1e4733" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="1c3dce5e-48f5-4a00-85d5-86d16d65c18f" ownerguid="d853597b-f3ed-470b-b6dd-8fe93b8e43eb"> -<ExampleWords> -<AUni ws="en">quiet someone down, silence (v), hush, muffle, turn down, shut someone up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to making something or someone quieter?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="1c3ede01-b943-43a8-a321-5d76e4940492" ownerguid="618a6618-63eb-4cb3-a606-f6d4b5b16912"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">HOS 10.4 China aselgar chacraman juntagnogmi mana ali rurashgancunapis atsca carcaycan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="1c3f8996-362e-4ee0-af02-0dd02887f6aa" ownerguid="7556a257-3703-40d3-91d3-c891fb250947"> -<Abbreviation> -<AUni ws="en">4.9.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.296" /> -<DateModified val="2022-9-23 16:55:8.296" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to heaven and hell--the place where people go after they die.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>1C Regions Below the Surface of the Earth</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Heaven, hell</AUni> -</Name> -<OcmCodes> -<Uni>772 Cosmology; 775 Eschatology</Uni> -</OcmCodes> -<Questions> -<objsur guid="b21e144f-215a-4707-b239-a653504fc2d1" t="o" /> -<objsur guid="5870aa5b-30ce-43ed-a01c-88e1c77958c2" t="o" /> -<objsur guid="05c713ef-ee06-40a2-82e8-b3c43ec1468e" t="o" /> -<objsur guid="b38acc3e-29a3-420e-ab1f-173eb4e05505" t="o" /> -<objsur guid="f1af6769-e7aa-454b-be47-ce9fae936258" t="o" /> -<objsur guid="e1af4d84-e538-481c-a258-28e25803b990" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="ff505092-6d88-4b5e-8095-04e471d7ad4c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="1c402a63-d5e2-431a-b738-1e6f1db5e2d3" ownerguid="0f301187-4dbb-48c0-95fe-26155414e2b1"> -<Form> -<AUni ws="qvm-x-ach">cortïna</AUni> -<AUni ws="qvm-x-acl">cortïna</AUni> -<AUni ws="qvm-x-akh">cortïna</AUni> -<AUni ws="qvm-x-akl">cortïna</AUni> -<AUni ws="qvm-x-ame">cortïna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1c415ae2-c338-4d5d-98c0-20ebfba2fc54" ownerguid="bfa3be74-0390-4e2e-bdb7-ed41eb67e4f1"> -<ExampleWords> -<AUni ws="en">rainy season, monsoon, the rains</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe when it rains a lot?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1c4511fb-67f3-40e1-8018-f9c1522b34ef" ownerguid="61f40376-729d-4d99-894f-06c5689a06ac"> -<ExampleWords> -<AUni ws="en">flatten, flatten out, level off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something becoming flat?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1c456b17-538e-4b0b-8f35-f4bc5728a31e" ownerguid="00364f0c-9a3a-4910-a82e-1ffbc4d4137f"> -<ExampleWords> -<AUni ws="en">excitable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words describe a person who becomes excited easily?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1c48d213-3a7b-4424-8167-9729b97d1215" ownerguid="12b6934d-3a4a-4623-995f-865f401349ab"> -<ExampleWords> -<AUni ws="en">eat before others, eat early</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to eating before others?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1c4d559e-88b9-4449-bd92-33ea3a5666c3" ownerguid="d98c1c67-b70e-4a35-89db-2e744bd5197f"> -<ExampleWords> -<AUni ws="en">neck, nape (back of the neck), throat, Adam's apple, wrinkle, fold in skin of neck</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What are the parts of the neck?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1c4d8e2c-e13a-47d1-9fb9-d6c37eae61d7" ownerguid="6dc5c56b-ee06-4e04-9f46-72bf87deaf10"> -<Form> -<AUni ws="qvm-x-ach">murcu</AUni> -<AUni ws="qvm-x-acl">murcu; murco</AUni> -<AUni ws="qvm-x-akh">murku</AUni> -<AUni ws="qvm-x-akl">murku; murko</AUni> -<AUni ws="qvm-x-ame">murku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="1c512719-6ecb-48cb-980e-4ff20e8b5f9b" ownerguid="8d47c9ec-80c4-4309-9848-c453dcd71182"> -<Abbreviation> -<AUni ws="en">1.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.978" /> -<DateModified val="2022-9-23 16:55:7.978" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the spirits of things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Spirits of things</AUni> -</Name> -<Questions> -<objsur guid="adbe08c9-69da-4462-a12f-d398b9efd562" t="o" /> -<objsur guid="aab69c7a-1772-4237-9421-377904dae7bb" t="o" /> -<objsur guid="90f09f66-e4fa-4dbc-81bc-54e5c5e44666" t="o" /> -<objsur guid="5d55daf3-b5a7-4a51-9da2-347b3efc804b" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="7f6c81fb-02a4-415f-a363-fb11cc6b9254" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="1c51bc5a-cf40-41b5-a1ae-6f1cc6ae9849"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">despidi</AUni> -<AUni ws="qvm-x-acl">despidi; despide</AUni> -<AUni ws="qvm-x-akh">despidi</AUni> -<AUni ws="qvm-x-akl">despidi; despide</AUni> -<AUni ws="qvm-x-ame">despidi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+despedir</AUni> -<AUni ws="qvm-x-acl">+despedir</AUni> -<AUni ws="qvm-x-akh">+despedir</AUni> -<AUni ws="qvm-x-akl">+despedir</AUni> -<AUni ws="qvm-x-ame">+despedir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.396" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5675e4dc-3e09-4926-84d0-a1ae212d9e60" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+despedir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0b858740-8d28-49f2-a915-eb95bd55b552" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="38dabc67-f68a-4757-a0d9-526d452435a5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +despedir 
\entryTyp root 
\gENG take.leave 
\gSPN despedirse 
\e +despedir 
\c V2 
\mp +assimilated 
\ach despidi 
\akh despidi 
\acl despidi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl despide +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl despidi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl despide +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame despidi 
\mp +FinalI</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1c527713-93f8-4106-b8eb-464990aca715" ownerguid="62b40326-f74c-4d80-9b1c-4dae0fc07026"> -<ExampleWords> -<AUni ws="en">track, follow, read the signs, stalk, trail, chase</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to following a wild animal?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1c52bec7-6057-48ab-94c1-3d3a8e5579d0" ownerguid="707433b2-1fff-4a83-87fe-5dbe0c48c2fd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">moler</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d24d241c-8e02-4855-bdfa-10d44443e014" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="1c5683a2-2190-4800-b729-cdc2aa020dec" ownerguid="9c21f9bd-a7e0-4989-99f1-7fa2853ab73c"> -<ExampleWords> -<AUni ws="en">barber, hairdresser</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who cuts hair?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1c576b3e-0910-4700-8bb9-89a1d9304ef3" ownerguid="e7c1521c-60de-4787-9046-6842754b08cb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">foreign</AUni> -<AUni ws="es">extranjero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f9b51f60-2e09-49e0-b019-7e0de16ccf31" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="1c5e1aa8-7b9d-47e2-a1d1-f67e2b998e09" ownerguid="edb8ce11-8052-4356-a9d2-f73bf1fb60d2"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 3.7 Ama yachagtucuytsu. Mas bien Tayta Diosnintsita cäsucushpayqui lutancunata ama ruraytsu.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="1c64d24f-1555-4fc3-83e3-b3d6820021e8" ownerguid="20baa5e7-4f02-4782-a292-c6281d7b5f3a"> -<ExampleWords> -<AUni ws="en">poke, give something a poke, prod, jab, dig someone in the ribs</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to pushing something with your finger or a stick?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1c676c1c-4270-4e31-a3ca-42d845e87bac" ownerguid="725d78eb-8cac-4b2f-b5a4-f0a9adb80f5d"> -<ExampleWords> -<AUni ws="en">tolerance, intolerance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to allowing other people to practice their religion?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="1c67a7fe-f439-4927-a950-0708fd75c90a" ownerguid="10e96122-b738-4601-9772-7cd601892b40"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Ganyan purishgäpita aläpa macolcashgami caycä.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="1c6c2696-4676-4fa8-9cbe-3ccde7d376dc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">janaga</AUni> -<AUni ws="qvm-x-acl">janaga</AUni> -<AUni ws="qvm-x-akh">janaqa</AUni> -<AUni ws="qvm-x-akl">janaqa</AUni> -<AUni ws="qvm-x-ame">hanaqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hanaqa</AUni> -<AUni ws="qvm-x-acl">*hanaqa</AUni> -<AUni ws="qvm-x-akh">*hanaqa</AUni> -<AUni ws="qvm-x-akl">*hanaqa</AUni> -<AUni ws="qvm-x-ame">*hanaqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.660" /> -<DateModified val="2022-10-15 12:3:55.871" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5911e0a4-c160-46c8-9a65-9394fa9c929f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hanaqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="44de1025-7653-40b2-a502-52367b4e8af9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="276ad76d-3e1f-476b-812e-997a9b896053" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hanaqa 
\entryTyp root 
\gENG on.top 
\gSPN encima 
\e *hanaqa 
\c N0 
\ach janaga 
\akh janaqa 
\acl janaga 
\akl janaqa 
\ame hanaqa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1c6cf877-fcf6-458c-93b5-4420d1d5d535" ownerguid="61f52196-a8b2-496d-96ea-8c15dc7d377a"> -<ExampleWords> -<AUni ws="en">perform a miracle, produce a miracle, do a miracle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to performing a miracle?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1c6da039-581f-4f29-ac86-f0b8a7cef904" ownerguid="a35b7fd1-8427-492e-89f7-500f3e75b449"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stoop</AUni> -<AUni ws="es">agachar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ca47964b-09a0-45fb-baa8-9f2e7112641d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="1c6dc5fa-84c7-4c4f-ab8e-3bbb1401a80e" ownerguid="c0060a0d-c2c3-4cf1-9c4e-f796434a05dc"> -<Form> -<AUni ws="qvm-x-ach">exactu; exacto</AUni> -<AUni ws="qvm-x-acl">exactu; exactu; exacto</AUni> -<AUni ws="qvm-x-akh">exactu; exacto</AUni> -<AUni ws="qvm-x-akl">exactu; exactu; exacto</AUni> -<AUni ws="qvm-x-ame">exactu; exacto</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="1c6de239-f5c2-4003-90d8-e0137407ba24" ownerguid="fd9701f5-f358-44a8-964a-9c36a51e5603"> -<Form> -<AUni ws="qvm-x-ach">soldädu</AUni> -<AUni ws="qvm-x-acl">soldädu; soldädu; soldädo</AUni> -<AUni ws="qvm-x-akh">soldädu</AUni> -<AUni ws="qvm-x-akl">soldädu; soldädu; soldädo</AUni> -<AUni ws="qvm-x-ame">soldädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="1c71c899-6622-4c8c-8568-433b15e7f844" ownerguid="a0546f85-2590-4dc9-ae94-6512b1116b01"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1c73b9eb-a39a-4ebc-9bb0-7b6795676194" ownerguid="5c348090-12f4-4c83-8331-e10971bbc8d3"> -<ExampleWords> -<AUni ws="en">fat, grease</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to fat?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1c74880e-16da-4da1-93a4-8b1d32f083e4" ownerguid="3ed1ace6-903f-4928-b934-05fbce2441e0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="1c75221c-77ff-4c61-81f4-eeef1b7305e0" ownerguid="b275f58d-9a5d-411f-a811-7a8347a8a4e1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="1c7a684e-ba11-41e8-a415-be5b1962dba8" ownerguid="9c6f35e0-4a16-4a5e-8b0e-c165146b2d5b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="e9a71e35-9780-4d40-9961-4125d9513bb0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="1c7f205b-8fd3-4fed-9d21-68fcd0ee2f0c" ownerguid="a2d15c3f-53f7-491b-8675-1f4cabc6d6a7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1c807222-7eda-4b2c-8df9-7a828d739774" ownerguid="e5020b79-6fb0-4be4-a359-d4f899da5c7e"> -<ExampleWords> -<AUni ws="en">bone of contention</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something people quarrel about?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1c82027b-da06-405a-a3e9-faaf125a461c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">casual</AUni> -<AUni ws="qvm-x-acl">casual</AUni> -<AUni ws="qvm-x-akh">casual</AUni> -<AUni ws="qvm-x-akl">casual</AUni> -<AUni ws="qvm-x-ame">casual</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+casual</AUni> -<AUni ws="qvm-x-acl">+casual</AUni> -<AUni ws="qvm-x-akh">+casual</AUni> -<AUni ws="qvm-x-akl">+casual</AUni> -<AUni ws="qvm-x-ame">+casual</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.82" /> -<DateModified val="2022-10-10 21:19:47.694" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8324598d-bec7-4157-a5b5-eb078d075486" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+casual</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a8b3fbbc-e556-435c-bae7-9aaa75dcb674" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1ae2aec2-6636-460c-bbbb-ad396897ffdc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +casual 
\entryTyp root 
\gENG infrequently 
\gSPN 
\e +casual 
\c R0 
\mp +FinalC 
\ach casual 
\akh casual 
\acl casual 
\akl casual 
\ame casual</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1c8876db-19c9-490d-9015-fe84611d0a20" ownerguid="28b1aca0-8f20-42cc-bb36-9a97cc83c60a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="1c8d22d3-7a3d-489e-98f7-387b87ca10db"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chicha</AUni> -<AUni ws="qvm-x-acl">chicha</AUni> -<AUni ws="qvm-x-akh">chicha</AUni> -<AUni ws="qvm-x-akl">chicha</AUni> -<AUni ws="qvm-x-ame">chicha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+chicha</AUni> -<AUni ws="qvm-x-acl">+chicha</AUni> -<AUni ws="qvm-x-akh">+chicha</AUni> -<AUni ws="qvm-x-akl">+chicha</AUni> -<AUni ws="qvm-x-ame">+chicha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.303" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8805bb9a-2261-45e4-8b80-0feb74226aec" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+chicha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="06e37cd0-8b02-4109-b2e1-85b01edba404" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b179d84c-6be8-4ed8-b494-8afb002b0e47" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +chicha 
\entryTyp root 
\gENG drink 
\gSPN bebida 
\e +chicha 
\c N0 
\ach chicha 
\akh chicha 
\acl chicha 
\akl chicha 
\ame chicha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="1c8da3aa-3c74-4188-8949-5ab82fc1f99c" ownerguid="457231c8-4eb6-4460-aa45-3e9f2c4e8975"> -<Abbreviation> -<AUni ws="en">8.4.6.6.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.660" /> -<DateModified val="2022-9-23 16:55:8.660" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to something happening every time something else happens.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Every time</AUni> -</Name> -<Questions> -<objsur guid="e0fa4ef0-3a13-43d6-a7f6-f642614709d8" t="o" /> -<objsur guid="a4a57714-49c1-44c6-93f9-0b3770366b42" t="o" /> -<objsur guid="33c4a819-2260-4792-b6b6-92eb48e5ba76" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="1c8dbc6a-a4fa-41ca-8b12-3befdba3b006" ownerguid="b4de1d53-0874-4181-a642-87c7c372f11f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">match</AUni> -<AUni ws="es">fósforos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c8920105-990d-4274-8bd2-912d74496248" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="1c8f7bd4-7a42-4d0f-8334-1acfb0d57274" ownerguid="5bcb91f8-4679-4054-8878-eb33e05eeb76"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cup</AUni> -<AUni ws="es">taza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f9d4e316-b8f8-488e-ba9b-cad9589cba90" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="1c8ff4e7-4b09-4db4-9c3e-f96e520f0bc6" ownerguid="871819c6-e5de-47fa-ac8d-a42edf98fb2f"> -<Form> -<AUni ws="qvm-x-ach">llachu</AUni> -<AUni ws="qvm-x-acl">llachu; llachu; llacho</AUni> -<AUni ws="qvm-x-akh">llachu</AUni> -<AUni ws="qvm-x-akl">llachu; llachu; llacho</AUni> -<AUni ws="qvm-x-ame">llachu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1c9262c4-86e8-4950-a40a-cb0b9d3029cd" ownerguid="effc49dd-6322-4302-899c-4cf540f0e2e4"> -<ExampleWords> -<AUni ws="en">condiment, garnish, pickle, olive, black olive, green olive, tomato sauce, ketchup, mustard, mayonnaise, peanut butter, jam, jelly, preserves</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What types of condiments are there (foods that people only eat a little of, because they are expensive, strong tasting, or are added to other foods to flavor them)?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1c93d4c6-d971-444b-bb10-d38013d171ca" ownerguid="f59034ad-345b-4958-b94e-05dd822aee30"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="1c9a9969-86f6-41a3-a0eb-7e4a38310c34" ownerguid="ab6edc0a-0f28-4f0a-9260-26fed523be41"> -<Form> -<AUni ws="qvm-x-ach">wiscul</AUni> -<AUni ws="qvm-x-acl">wiscol</AUni> -<AUni ws="qvm-x-akh">wiskul</AUni> -<AUni ws="qvm-x-akl">wiskol</AUni> -<AUni ws="qvm-x-ame">wiskul</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="1ca26512-75f6-4a7a-a7cc-07d08aa799d9" ownerguid="0b7b9a1c-588b-475a-ac14-00f0999cbfe9"> -<Abbreviation> -<AUni ws="en">4.8.4.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.286" /> -<DateModified val="2022-9-23 16:55:8.286" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to repenting.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>41E Change Behavior</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Repent</AUni> -</Name> -<Questions> -<objsur guid="2178dc0a-d40d-4e82-8d29-eaadc41a6728" t="o" /> -<objsur guid="26ff75da-cc68-453b-9418-f5c9827b22a9" t="o" /> -<objsur guid="af720757-2691-4fa0-b1e0-4fb35db2dca5" t="o" /> -<objsur guid="69937431-feb1-4b5b-8007-9f59db582602" t="o" /> -<objsur guid="dbc116ec-b6b4-4111-ad78-9ba8f5c10a31" t="o" /> -<objsur guid="fe42a618-d811-4a61-9781-d784150d6558" t="o" /> -<objsur guid="96545548-7fd4-4764-9e17-0c30a599c1db" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="bce3f390-452c-4ca9-8c36-5fbcfd6b4755" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="4b669bed-ba46-41cc-bcba-c2ef8e129c85" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="1ca51c94-77dc-4825-98ea-a6dc8858fa5c" ownerguid="041b5ac9-99be-4281-a17e-654eff33d793"> -<ExampleWords> -<AUni ws="en">style (v), braid (v), fix, curl, cut, arrange</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to fixing a person's hair in a particular style?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1ca5d4fa-1395-4817-bb4a-2bfb9ccfb7cf" ownerguid="5c31bdf6-901f-4f14-ab64-7a99524710fc"> -<ExampleWords> -<AUni ws="en">not my problem, not my concern, that's your problem, (that's just) tough</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words indicate that you don't care about someone else's problem?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1ca7b170-09bd-4571-8a89-9058a239e2a9" ownerguid="02990ea1-29db-4ec9-9d39-5edc58f4b60c"> -<Form> -<AUni ws="qvm-x-ach">anticristo; anticristu</AUni> -<AUni ws="qvm-x-acl">anticristo; anticristo; anticristu</AUni> -<AUni ws="qvm-x-akh">anticristo; anticristu</AUni> -<AUni ws="qvm-x-akl">anticristo; anticristo; anticristu</AUni> -<AUni ws="qvm-x-ame">anticristo; anticristu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1ca95ac8-0e45-4c25-a190-9d46e692c248" ownerguid="f4580c19-ba9e-4f71-a46a-6f3c4b19c36c"> -<ExampleWords> -<AUni ws="en">sail, ship (v), cross (the river, lake)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to traveling on water?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1ca9c079-445d-44ea-9788-292e84a4fe16"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">elga; elga:</AUni> -<AUni ws="qvm-x-acl">elga; elga:</AUni> -<AUni ws="qvm-x-akh">elqa; elqa:</AUni> -<AUni ws="qvm-x-akl">elqa; elqa:</AUni> -<AUni ws="qvm-x-ame">ilqa; ilqa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*illaqa:</AUni> -<AUni ws="qvm-x-acl">*illaqa:</AUni> -<AUni ws="qvm-x-akh">*illaqa:</AUni> -<AUni ws="qvm-x-akl">*illaqa:</AUni> -<AUni ws="qvm-x-ame">*illaqa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.800" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eda72205-0375-4c7f-a2d4-c7487bfa6281" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*illaqa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="30e848f3-25c6-4a09-922e-4177b8387fef" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c9bccc0f-4508-46b4-932d-9c9e69ed6f26" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *illaqa: 
\entryTyp root 
\gENG disappear 
\gSPN desaparecer 
\e *illaqa: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach elga foreshortened 
\ach elga: 
\akh elqa foreshortened 
\akh elqa: 
\acl elga foreshortened 
\acl elga: 
\akl elqa foreshortened 
\akl elqa: 
\ame ilqa foreshortened 
\ame ilqa:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="1cb3c52e-5952-4aaf-82af-91b8d2c2b199"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rucu</AUni> -<AUni ws="qvm-x-acl">rucu; rucu; ruco</AUni> -<AUni ws="qvm-x-akh">ruku</AUni> -<AUni ws="qvm-x-akl">ruku; ruku; ruko</AUni> -<AUni ws="qvm-x-ame">ruku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ruku</AUni> -<AUni ws="qvm-x-acl">*ruku</AUni> -<AUni ws="qvm-x-akh">*ruku</AUni> -<AUni ws="qvm-x-akl">*ruku</AUni> -<AUni ws="qvm-x-ame">*ruku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.388" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="54f07fb6-71ae-485c-96da-9087a609ae4b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ruku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e8b72fe0-a1f1-4a66-a486-e391e497b6fe" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="75bef39d-c59a-40d9-bce5-3d9d8295a2b0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ruku 
\entryTyp root 
\gENG adult 
\gSPN adulto 
\e *ruku 
\c N0 
\ach rucu 
\akh ruku 
\acl rucu / _# 
\acl rucu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ruco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ruku / _# 
\akl ruku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ruko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ruku</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1cb41f46-2721-4af7-8867-b846749ecf2e" ownerguid="9a8f2f6a-a039-45dd-80d3-d1e0911907b2"> -<ExampleWords> -<AUni ws="en">owe tax</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to owing tax?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1cb585a4-a603-461c-bc6f-528a0c3751a2" ownerguid="e8204323-0906-4533-a3ce-32bb20540db2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wash.basin</AUni> -<AUni ws="es">lavatorio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="00c0e93e-8653-42eb-b1f2-62606bccb830" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="1cb79293-d4f7-4990-9f50-3bb595744f61" ownerguid="f4491f9b-3c5e-42ab-afc0-f22e19d0fff5"> -<Abbreviation> -<AUni ws="en">3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.94" /> -<DateModified val="2022-9-23 16:55:8.94" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words related to the immaterial, non-physical part of a person, as opposed to the body.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>26 Psychological Faculties</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Soul, spirit</AUni> -</Name> -<Questions> -<objsur guid="7cf7a256-7a17-43f7-acb1-9b737e5cc87e" t="o" /> -<objsur guid="8565b10f-3371-4868-aff6-5038117bd7ee" t="o" /> -<objsur guid="b9263983-a6ba-49f1-8d82-ef958db58650" t="o" /> -<objsur guid="a3adf82b-af09-43b2-a593-e4a4d58e2b9d" t="o" /> -<objsur guid="6fd6bb92-0d1b-42e4-83dc-71c82701d5fb" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="6fe11b6a-8d01-4a0b-bdeb-e4e6f420340a" t="o" /> -<objsur guid="a2508183-7ea5-434e-a773-00d53087d27b" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="1cb9266c-c5a6-4b25-8fa3-dbad81a53cd3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">micu; mica</AUni> -<AUni ws="qvm-x-acl">micu; mico; mica</AUni> -<AUni ws="qvm-x-akh">miku; mika</AUni> -<AUni ws="qvm-x-akl">miku; miko; mika</AUni> -<AUni ws="qvm-x-ame">miku; mika</AUni> -</Custom> -<AlternateForms> -<objsur guid="a654a1f1-4e67-4c58-a03e-bbbdd88d7bff" t="o" /> -</AlternateForms> -<CitationForm> -<AUni ws="qvm-x-ach">*mikU.v1</AUni> -<AUni ws="qvm-x-acl">*mikU.v1</AUni> -<AUni ws="qvm-x-akh">*mikU.v1</AUni> -<AUni ws="qvm-x-akl">*mikU.v1</AUni> -<AUni ws="qvm-x-ame">*mikU.v1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.426" /> -<DateModified val="2022-10-26 20:39:36.193" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dd16592c-f279-4db1-bec5-34c1d3ed2fcf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mikU.v1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="44aa6f68-7289-4246-8bc4-0e6ec4046fb2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2e4a04b6-4970-4ffb-b97f-05ce6b1768db" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mikU.v1 
\entryTyp root 
\gENG eat 
\gSPN comer 
\e *mikU.v1 
\c V1 
\mp PMlowered 
\ach micu 
\ach mica morphlowered 
\akh miku 
\akh mika morphlowered 
\acl micu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl mico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl mica morphlowered 
\akl miku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl miko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mika morphlowered 
\ame miku 
\ame mika morphlowered 
\mcc *mikU.v1 / _... [trigger] 
\mcc *miku.v1 / ~_ REFDIR 2IMP.1 
\mcc *miku.v1 / ~_ REFDIR INF</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="1cbb30d4-6c4a-4512-b807-1a21559996c8" ownerguid="37c320ce-22ec-4e81-aee3-4bf1dca9794f"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="c697fb5f-0b9d-4814-a324-c7fb79124f1e" t="o" /> -<objsur guid="2b967262-87cc-414c-9a8a-5e6877402f69" t="o" /> -<objsur guid="027aa802-27da-4b29-aa1a-b8f439822bf3" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="1cbb417c-8ed8-4df9-982b-c075aa899560" ownerguid="07476166-c5e5-4701-97d3-d97de8b5be6f"> -<ExampleWords> -<AUni ws="en">be aware of, be acquainted with, know a little, know about</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to knowing something slightly?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1cbd3bd0-ca9e-4a65-a993-b73f723448f8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">se:ñas</AUni> -<AUni ws="qvm-x-acl">se:ñas</AUni> -<AUni ws="qvm-x-akh">se:ñas</AUni> -<AUni ws="qvm-x-akl">se:ñas</AUni> -<AUni ws="qvm-x-ame">se:ñas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+señas</AUni> -<AUni ws="qvm-x-acl">+señas</AUni> -<AUni ws="qvm-x-akh">+señas</AUni> -<AUni ws="qvm-x-akl">+señas</AUni> -<AUni ws="qvm-x-ame">+señas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.500" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c134b9d3-ff7c-4fe1-88ad-d87528a83057" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+señas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aa4367be-e5b3-4fd9-9ef1-4abaf47be85c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0f688592-adec-4a06-9525-36250e7cf918" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +señas 
\entryTyp root 
\gENG sign 
\gSPN seña 
\e +señas 
\c N0 
\mp +FinalC 
\ach se:ñas 
\akh se:ñas 
\acl se:ñas 
\akl se:ñas 
\ame se:ñas</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1cbf6445-392d-425d-8a2c-4a8c9f8a9890" ownerguid="23e6746e-d74d-406b-a5f2-513c682b5db4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">hablador</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6b65e2ca-db74-4731-8dc8-c7a05b4191dd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="1cc4897f-1365-440a-aa3e-d42ee2fee5d1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cunca</AUni> -<AUni ws="qvm-x-acl">cunca</AUni> -<AUni ws="qvm-x-akh">kunka</AUni> -<AUni ws="qvm-x-akl">kunka</AUni> -<AUni ws="qvm-x-ame">kunka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kunka</AUni> -<AUni ws="qvm-x-acl">*kunka</AUni> -<AUni ws="qvm-x-akh">*kunka</AUni> -<AUni ws="qvm-x-akl">*kunka</AUni> -<AUni ws="qvm-x-ame">*kunka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.11" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="acd02b86-79e1-47d9-9cb6-e1cd334a5fb8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kunka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6a93d0a5-9033-4409-8af2-35184586ac7b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="66781c88-3c21-475e-867d-2a6908c24fcf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kunka 
\entryTyp root 
\gENG neck 
\gSPN cuello 
\e *kunka 
\c N0 
\ach cunca 
\akh kunka 
\acl cunca 
\akl kunka 
\ame kunka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1ccba061-db9f-4417-b619-e609cbacca45" ownerguid="a73c9c31-7e39-4c84-8614-4e84257a105a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">support</AUni> -<AUni ws="es">mantener</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6164c162-ab75-4dc6-9e50-1afe9efe6159" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="1ccdb873-e759-427c-b340-eef7176fbe78" ownerguid="447136bb-7611-4d4f-b7eb-82e985927aec"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">nine</AUni> -<AUni ws="es">nueve</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7030e221-a402-4383-beee-9607c2ce2981" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="1ccfff78-d728-4e4f-af30-e66e03e0ea03" ownerguid="0a12aec9-c600-46d1-b4fa-7ce4c8229bfd"> -<Form> -<AUni ws="qvm-x-ach">palchacha; palchachä</AUni> -<AUni ws="qvm-x-acl">palchacha; palchachä</AUni> -<AUni ws="qvm-x-akh">palchacha; palchachä</AUni> -<AUni ws="qvm-x-akl">palchacha; palchachä</AUni> -<AUni ws="qvm-x-ame">palchacha; palchachä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="1cd48173-729e-488e-9c81-5a51f7d7ad98" ownerguid="e49f4e94-6050-40c3-978e-a688d0a45b4d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="0924ce79-bb81-44c8-8141-c67544679302" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">meet</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="78f4db70-92b5-4cbf-ad47-43a8d1868a6a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="1cd588d2-a33c-401e-9902-7313a2061873" ownerguid="34082327-9615-4703-9817-d2ef3b93692d"> -<Form> -<AUni ws="qvm-x-ach">juclayla</AUni> -<AUni ws="qvm-x-acl">juclayla</AUni> -<AUni ws="qvm-x-akh">juklayla</AUni> -<AUni ws="qvm-x-akl">juklayla</AUni> -<AUni ws="qvm-x-ame">huklayla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="1cd876e1-7549-4dae-a9c7-a713083b3754" ownerguid="06c59373-ac0f-4096-8c61-a86a78a0b2c3"> -<Form> -<AUni ws="qvm-x-ach">inquita</AUni> -<AUni ws="qvm-x-acl">inquita</AUni> -<AUni ws="qvm-x-akh">inkita</AUni> -<AUni ws="qvm-x-akl">inkita</AUni> -<AUni ws="qvm-x-ame">inkita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="1cd96bb9-acf2-4050-8c18-b9d3196a0623"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gracias</AUni> -<AUni ws="qvm-x-acl">gracias</AUni> -<AUni ws="qvm-x-akh">gracias</AUni> -<AUni ws="qvm-x-akl">gracias</AUni> -<AUni ws="qvm-x-ame">gracias</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gracias</AUni> -<AUni ws="qvm-x-acl">+gracias</AUni> -<AUni ws="qvm-x-akh">+gracias</AUni> -<AUni ws="qvm-x-akl">+gracias</AUni> -<AUni ws="qvm-x-ame">+gracias</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.619" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="22566519-b2e9-40d1-9a94-023dfbc34f90" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gracias</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="84d06ef9-78e4-4107-a6b3-e86fbdb73d59" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f3523458-a28e-431d-9592-82a0db735e87" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gracias 
\entryTyp root 
\gENG thanks 
\gSPN gracias 
\e +gracias 
\c N0 
\mp +FinalC 
\ach gracias 
\akh gracias 
\acl gracias 
\akl gracias 
\ame gracias 
\mcc +gracias / ~_ JUST2.C 1P.V</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="1cd9f962-4366-4984-9435-d00768416411" ownerguid="f2b721dd-85af-4851-8b83-d68b2825942d"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ISA 43.2 Manami gashpaylapis gashpashunquitsu.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiAnalysis" guid="1ce1cf74-4502-483d-8c16-22a4dd7d5724" ownerguid="1e2f084c-71ac-42d4-8200-995f1be5d2c4"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="daa31a45-012f-45c6-9f8c-29bcccec67fe" t="o" /> -<objsur guid="785e8e68-c787-42ae-b02e-061099f35a9c" t="o" /> -<objsur guid="337061ba-8fa0-48e0-a4a6-84feb6b15623" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="1ce1d540-78fe-4f3b-8321-ca19e38a0902" ownerguid="d3b21664-5fdf-4052-915a-40b87cafcf65"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="207bece0-8d40-475d-8ec6-7ad057dee1df" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="b5349e80-ba2e-4f9f-b235-f062c0b8fa3c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="1ce21dcd-a762-403d-b70f-f81353bafa16" ownerguid="35c899e4-193b-470c-93f4-01cb1a7be14a"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1ce334e2-b478-495e-9563-afc7c94a4f3f" ownerguid="6866ee4c-78cd-47d1-ba4a-8461fdcc5e2a"> -<ExampleWords> -<AUni ws="en">illogical, irrational, make no sense, not hold water, not stand up, not add up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe thinking that is not logical?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1ce5f2e2-f2f5-41a3-abf5-c5544f6dcf1c" ownerguid="05a74610-1394-472f-acf9-17f5fd72e054"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">for</AUni> -<AUni ws="es">por</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3266d7ed-b4e4-4d07-90f7-b037c736fdcc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="1ce6644f-c691-4bd2-a171-d0a321601b9d" ownerguid="2d71c797-cdda-4bc1-99e6-6bc256bfbb3c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dish</AUni> -<AUni ws="es">plato</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4c5820a5-1284-4f69-b82c-6caf028931fc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="1ce6db96-fb29-453a-99b2-6ded4a9072ee" ownerguid="6a19c088-7fc7-47dd-a7a9-c8191ad99d45" /> -<rt class="CmDomainQ" guid="1ce9d6e9-ff4f-492b-a6f1-334b364968db" ownerguid="7d54d3dd-5fb2-4640-9bcf-c234696af894"> -<ExampleWords> -<AUni ws="en">honesty, integrity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the quality of being honest?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="1cec07b9-c736-451d-aeb8-e27d82256aa0" ownerguid="e6fa6045-881e-4f52-85c9-b9d7540eeffb"> -<Form> -<AUni ws="qvm-x-ach">shpa</AUni> -<AUni ws="qvm-x-acl">shpa</AUni> -<AUni ws="qvm-x-akh">shpa</AUni> -<AUni ws="qvm-x-akl">shpa</AUni> -<AUni ws="qvm-x-ame">shpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1cec97cd-018a-4f92-acf4-90a3c3f244bc" ownerguid="647603c2-6f32-48f3-91fa-1f7f0e44b539"> -<ExampleWords> -<AUni ws="en">pour, tip, sprinkle, empty, spill, decant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to pouring water out of a container?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1ced72da-3188-4613-bccf-279ac20bf450"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tal</AUni> -<AUni ws="qvm-x-acl">tal</AUni> -<AUni ws="qvm-x-akh">tal</AUni> -<AUni ws="qvm-x-akl">tal</AUni> -<AUni ws="qvm-x-ame">tal</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tal</AUni> -<AUni ws="qvm-x-acl">+tal</AUni> -<AUni ws="qvm-x-akh">+tal</AUni> -<AUni ws="qvm-x-akl">+tal</AUni> -<AUni ws="qvm-x-ame">+tal</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.782" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6fcc4e37-b2e8-418e-8f21-d0ae270be587" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tal</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fd642729-c121-4941-b3db-ee6fc9cc148f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="41ff1161-0307-40e9-91f0-fc47c11a3d28" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tal 
\entryTyp root 
\gENG such 
\gSPN tal 
\e +tal 
\c NOSUFF 
\ach tal 
\akh tal 
\acl tal 
\akl tal 
\ame tal</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="1cee6ecb-dc18-466b-bdc9-d9709f547ff1" ownerguid="209a148d-7e3e-4738-b799-db6ec9ca68a1"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">warmi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">warmi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">warmi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f527da1e-d074-47e5-ab55-35d9106f617d" t="r" /> -</Morph> -<Msa> -<objsur guid="86b5e60e-c55d-4797-a0a2-e6891fff7ec3" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="1ceedbe7-edd9-45a6-9b1f-7ca2b6bed279" ownerguid="1b450e43-b1f0-4ad2-a286-2688ed9fdde9"> -<Form> -<AUni ws="qvm-x-ach">filfa</AUni> -<AUni ws="qvm-x-acl">filfa</AUni> -<AUni ws="qvm-x-akh">filfa</AUni> -<AUni ws="qvm-x-akl">filfa</AUni> -<AUni ws="qvm-x-ame">filfa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="1cf0a6d6-4da8-41a0-9bea-38908fa4b0d8" ownerguid="d7326976-57e1-43c9-9027-1a20d5fd448f"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Lucyacaramushag - armacaramushag. This compares one´s testicles to olluco, saying that will wash them.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="1cf58085-9ff2-4425-8424-135c9ea4c305" ownerguid="58eeb55b-c57d-4f59-a7d6-9bf663fbf831"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John <managed> to bake bread.; John <succeeded> in earning enough money to buy a bicycle.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">succeed, success, accomplish, achieve, manage, contrive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to succeeding to do a task?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1cf861df-d4d6-4571-8294-5f773e33c415" ownerguid="31d13f5c-fcf7-430b-8746-2b6adac6e871"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="690bce22-76d3-476d-ba0d-47de4f771820" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="1cf8ddae-9796-4ca3-ab08-36f6ac8f8b0b" ownerguid="b9bcece5-a13a-487c-9517-ea7cb3b857a6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1cfef627-0d3c-46e3-8859-c400730dce8d" ownerguid="8a81b9bc-9c66-4d57-a2d1-2e592604c4b1"> -<ExampleWords> -<AUni ws="en">fill, fill up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something become full?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1d068b54-df9d-4d79-a13c-c7b4c2773f7f" ownerguid="b82c7ba0-9f4e-44da-bcd0-d30f5b224de5"> -<ExampleWords> -<AUni ws="en">prescription, prescribe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to the written instructions a doctor gives about how much medicine to take?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1d07fde2-be30-49bd-b907-4b79a5b5d1fc" ownerguid="394abd8a-b1b8-4743-8414-c2eb5f1b8bb1"> -<Form> -<AUni ws="qvm-x-ach">capshi</AUni> -<AUni ws="qvm-x-acl">capshi; capshi; capshe</AUni> -<AUni ws="qvm-x-akh">kapshi</AUni> -<AUni ws="qvm-x-akl">kapshi; kapshi; kapshe</AUni> -<AUni ws="qvm-x-ame">kapshi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="1d09d263-026e-4ce3-8808-812fd37077f2" ownerguid="27e2cc8b-8f5f-4090-8b41-da5f2d9d4f6f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="1d0b4b71-f1f6-485c-8523-0ae3c341a9ec" ownerguid="28ec5f29-2535-4cf7-959b-1578521614bd"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="CmDomainQ" guid="1d0c4143-72a6-413e-927b-e4748db94b0e" ownerguid="5c35c2f8-d17c-42a3-aa12-a4c29b6603e8"> -<ExampleWords> -<AUni ws="en">unbending, inflexible, inflexibility, rigid, rigidity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe something that cannot be bent?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1d0e4b07-21d0-43fc-8cbc-df226165f89f" ownerguid="77d0bb8d-671e-45d2-af5d-6dce46d37638" /> -<rt class="CmDomainQ" guid="1d0f07fd-0d93-49a4-b3b1-cf9ac24a9f0f" ownerguid="45d867c7-8496-4c92-bb41-b7db5db47717"> -<ExampleWords> -<AUni ws="en">plump, chubby</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe someone who is fat and attractive?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1d119231-0268-4976-b1da-5a53266a1371" ownerguid="9baac3cb-62f4-47c5-b2e2-26cd542aa9da"> -<Form> -<AUni ws="qvm-x-ach">lutsca; lutscä</AUni> -<AUni ws="qvm-x-acl">lutsca; lutscä</AUni> -<AUni ws="qvm-x-akh">lutska; lutskä</AUni> -<AUni ws="qvm-x-akl">lutska; lutskä</AUni> -<AUni ws="qvm-x-ame">lutska; lutskä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="1d11a03e-037b-4e20-b890-2965f8667156" ownerguid="19192369-ae80-4963-87d4-e37090d27006"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="21ead4a3-b620-483a-99f3-f737e6ebf1ef" t="o" /> -<objsur guid="ccf35d13-4127-4183-b6db-b4e704199266" t="o" /> -<objsur guid="d4bdfde8-d7e6-4721-abeb-143fd81e838b" t="o" /> -<objsur guid="fab62949-f8a6-424f-a128-d5c19a9c7478" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="1d11e1ba-14e8-421f-a31c-8e3cd9957639"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ancla</AUni> -<AUni ws="qvm-x-acl">ancla</AUni> -<AUni ws="qvm-x-akh">ancla</AUni> -<AUni ws="qvm-x-akl">ancla</AUni> -<AUni ws="qvm-x-ame">ancla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ancla</AUni> -<AUni ws="qvm-x-acl">+ancla</AUni> -<AUni ws="qvm-x-akh">+ancla</AUni> -<AUni ws="qvm-x-akl">+ancla</AUni> -<AUni ws="qvm-x-ame">+ancla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.767" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4036ea85-a81b-4311-886b-7cef7c1a70ee" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ancla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6d2fbdc9-de83-4548-b8d2-c7aaca931fcf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="db35c2c9-3a64-48f7-9397-611744057d31" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ancla 
\entryTyp root 
\gENG anchor 
\gSPN ancla 
\e +ancla 
\c N0 
\ach ancla 
\akh ancla 
\acl ancla 
\akl ancla 
\ame ancla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="1d138c73-f30e-4fc3-8c5a-e2f53084d956"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">culcush</AUni> -<AUni ws="qvm-x-acl">culcush</AUni> -<AUni ws="qvm-x-akh">kulkush</AUni> -<AUni ws="qvm-x-akl">kulkush</AUni> -<AUni ws="qvm-x-ame">kulkush</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kullkush</AUni> -<AUni ws="qvm-x-acl">*kullkush</AUni> -<AUni ws="qvm-x-akh">*kullkush</AUni> -<AUni ws="qvm-x-akl">*kullkush</AUni> -<AUni ws="qvm-x-ame">*kullkush</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.3" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="928fdacd-58a6-4e16-aa41-7501ad85fe2f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kullkush</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d1abb23e-f2a2-4c75-90ae-d950f54ae53a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8e1b6fa6-ae1a-46bc-963e-bf9873739a60" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kullkush 
\entryTyp root 
\gENG dove 
\gSPN paloma 
\e *kullkush 
\c N0 
\mp +FinalC 
\ach culcush 
\akh kulkush 
\acl culcush 
\akl kulkush 
\ame kulkush</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1d162f6a-4499-4a82-b954-b2e6826dd6e9" ownerguid="b477381b-1e52-48fd-b3e6-dedbb3c1245d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="1d166d63-d57a-4bd5-a5a1-9e4ff9a3c1de" ownerguid="e8586039-5b46-4c5c-9c1b-0b7685121aea"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="ed0639e8-45e6-49ea-8ca3-5356ae0ee128" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="bd5658dc-eed9-452f-9cd8-b367946c207e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="1d16a9b6-f94c-4b58-9c20-811089209ed2" ownerguid="9003a1d0-1a36-4d51-91c3-b55e655aa606"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="1d1cb68b-a4d5-43ab-9e13-4c113a5e8cc9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ratsac</AUni> -<AUni ws="qvm-x-acl">ratsac</AUni> -<AUni ws="qvm-x-akh">ratsak</AUni> -<AUni ws="qvm-x-akl">ratsak</AUni> -<AUni ws="qvm-x-ame">ratsak</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rachak</AUni> -<AUni ws="qvm-x-acl">*rachak</AUni> -<AUni ws="qvm-x-akh">*rachak</AUni> -<AUni ws="qvm-x-akl">*rachak</AUni> -<AUni ws="qvm-x-ame">*rachak</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.234" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c77525bd-0be6-4c3b-8b2d-d0590bcddd7c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rachak</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="95444f57-a28d-4fdc-874d-1063abe6bb3b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="98a0a540-c2d8-42e5-bc82-a62e00c6f870" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rachak 
\entryTyp root 
\gENG frog 
\gSPN sapo 
\e *rachak 
\c N0 
\mp +FinalC 
\ach ratsac 
\akh ratsak 
\acl ratsac 
\akl ratsak 
\ame ratsak</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="1d1ccbe5-8cd1-463a-b018-99f8d67b136d" ownerguid="a336e26e-c41e-4a12-bd4a-b62ca78865eb"> -<Form> -<AUni ws="qvm-x-ach">lutsca</AUni> -<AUni ws="qvm-x-acl">lutsca</AUni> -<AUni ws="qvm-x-akh">lutska</AUni> -<AUni ws="qvm-x-akl">lutska</AUni> -<AUni ws="qvm-x-ame">lutska</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="1d1cefbb-d017-478f-9207-2394065f5d88"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lashta</AUni> -<AUni ws="qvm-x-acl">lashta</AUni> -<AUni ws="qvm-x-akh">lashta</AUni> -<AUni ws="qvm-x-akl">lashta</AUni> -<AUni ws="qvm-x-ame">lashta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llashta.v</AUni> -<AUni ws="qvm-x-acl">*llashta.v</AUni> -<AUni ws="qvm-x-akh">*llashta.v</AUni> -<AUni ws="qvm-x-akl">*llashta.v</AUni> -<AUni ws="qvm-x-ame">*llashta.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.164" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="52c3f6d5-6876-4256-a9ac-eddcba421f86" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llashta.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b33cab68-9cbe-4b01-8b58-9c3b61582335" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="549bc8e4-7602-49a2-b9b7-9a7d7396cbb8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llashta.v 
\entryTyp root 
\gENG drag 
\gSPN arrastrar 
\e *llashta.v 
\c V1 
\ach lashta 
\akh lashta 
\acl lashta 
\akl lashta 
\ame lashta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1d203321-72af-48b5-9982-f6ac421a8c60" ownerguid="81cca8b9-9d12-4d7b-a013-9fcdbe9dacf9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="1d2097b0-904f-43f2-a510-795fd4650081"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uchcu</AUni> -<AUni ws="qvm-x-acl">uchcu; uchco</AUni> -<AUni ws="qvm-x-akh">uchku</AUni> -<AUni ws="qvm-x-akl">uchku; uchko</AUni> -<AUni ws="qvm-x-ame">uchku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*utrku.v</AUni> -<AUni ws="qvm-x-acl">*utrku.v</AUni> -<AUni ws="qvm-x-akh">*utrku.v</AUni> -<AUni ws="qvm-x-akl">*utrku.v</AUni> -<AUni ws="qvm-x-ame">*utrku.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.302" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="02e16f9d-2180-43fe-85e9-e9d5da838820" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*utrku.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ada92c0c-a1db-4a81-bcf9-675c47f67688" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cd7ba896-468f-4f06-a992-14aae0f8241f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *utrku.v 
\entryTyp root 
\gENG make.hole 
\gSPN hacer.hueco 
\e *utrku.v 
\c V1 
\ach uchcu 
\akh uchku 
\acl uchcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl uchco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl uchku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl uchko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame uchku</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1d2968a5-cbd1-4c2e-a03d-31e9ae0a5249" ownerguid="547f1151-5816-4d89-b0bc-ece2a86c92eb"> -<ExampleWords> -<AUni ws="en">move, move in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving to a new house?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1d2c5ff9-4bf2-46f1-b5f3-67073ffe0468" ownerguid="78dd1761-8403-4319-8b2d-a72f10256dc3"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="1d2d92fd-996d-4b98-8880-9587c31229b3" ownerguid="209a148d-7e3e-4738-b799-db6ec9ca68a1"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="MoStemMsa" guid="1d310caa-7f16-4936-ae14-536463e18679" ownerguid="6b968f98-4c19-45ca-9921-92e3c8a0c78d" /> -<rt class="CmDomainQ" guid="1d330527-48a7-416a-af9c-b2be7f991561" ownerguid="6fc8ae4d-9fad-462e-9ea0-c613c3c1cb5e"> -<ExampleWords> -<AUni ws="en">doubt, doubt the truth of, have doubts, debate in your mind, be skeptical, mistrust, suspect, harbor suspicions, take with a grain of salt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used of being unsure of the truth of something?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="1d34380d-61bf-4247-9145-ba318a14a97e" ownerguid="7cfc8b3c-ad67-4928-ae6a-74afd47ced89"> -<Abbreviation> -<AUni ws="en">8.1.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.579" /> -<DateModified val="2022-9-23 16:55:8.579" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a part of something that has been broken or cut off.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Piece</AUni> -</Name> -<Questions> -<objsur guid="063f4bcf-06ff-4b75-8229-77afa7e24c36" t="o" /> -<objsur guid="8eef5d81-3055-419b-80d8-5b6bfe1ee6d6" t="o" /> -<objsur guid="4c9aab64-c5ab-4d55-ae31-4b351c0e9fab" t="o" /> -<objsur guid="be66bbba-8231-4400-82a4-581c2069f8e3" t="o" /> -<objsur guid="1dcf7fcd-7ed4-4ff9-8419-9cf7cb44001c" t="o" /> -<objsur guid="73c95df6-6049-4ab5-bfa3-d9c351f5b731" t="o" /> -<objsur guid="75b644e6-4cdf-4841-a2fb-531c1742129d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="1d372d1b-3c0d-4573-8d1c-29ce91affca5" ownerguid="14f882ff-a03c-4081-a4aa-a29988822757"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">weed</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f1d30dca-f7be-4116-98e4-8131ee20fb62" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="1d3a7701-a996-4fb1-a219-5d5531c9ff26" ownerguid="2861a719-9482-4b0c-8564-d96a9af2ae05"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="1d4339b2-cbe1-4d30-aed2-ca0b370e593a" ownerguid="77b9bfa4-e806-406a-a1cf-779dffc5e18e"> -<Form> -<AUni ws="qvm-x-ach">icsi</AUni> -<AUni ws="qvm-x-acl">icsi; icse</AUni> -<AUni ws="qvm-x-akh">iksi</AUni> -<AUni ws="qvm-x-akl">iksi; ikse</AUni> -<AUni ws="qvm-x-ame">iksi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="1d44baa0-006a-471d-83ad-4a063b38bc16"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waya</AUni> -<AUni ws="qvm-x-acl">waya</AUni> -<AUni ws="qvm-x-akh">waya</AUni> -<AUni ws="qvm-x-akl">waya</AUni> -<AUni ws="qvm-x-ame">waya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waya.v</AUni> -<AUni ws="qvm-x-acl">*waya.v</AUni> -<AUni ws="qvm-x-akh">*waya.v</AUni> -<AUni ws="qvm-x-akl">*waya.v</AUni> -<AUni ws="qvm-x-ame">*waya.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.607" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="80105993-566f-4c1b-88dc-e1082646cc0d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waya.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ecbed43d-a57d-4c68-9226-f70c1c501099" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c8289ae0-0b20-451a-a964-c5a3813c0075" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waya.v 
\entryTyp root 
\gENG 
\gSPN ser.desigual 
\e *waya.v 
\c V1 
\ach waya 
\akh waya 
\acl waya 
\akl waya 
\ame waya</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="1d469409-8084-4c9a-9876-703ea1e1e3f8" ownerguid="531ef61d-ea5e-427d-8eba-cb6d4dee392b"> -<Form> -<AUni ws="qvm-x-ach">ishcupullu</AUni> -<AUni ws="qvm-x-acl">ishcupullu; ishcupullu; ishcupullo</AUni> -<AUni ws="qvm-x-akh">ishkupullu</AUni> -<AUni ws="qvm-x-akl">ishkupullu; ishkupullu; ishkupullo</AUni> -<AUni ws="qvm-x-ame">ishkupullu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1d48574e-35ac-442b-962f-aba9fd06ec76" ownerguid="e0a8e1d9-c43e-4092-a8dc-476a3417924e"> -<ExampleWords> -<AUni ws="en">encouraging</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that causes someone to feel confident?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1d4a0fe8-d76c-4c3b-9fa8-3487161ba5fb" ownerguid="1bd42665-0610-4442-8d8d-7c666fee3a6d"> -<ExampleWords> -<AUni ws="en">moon, lunar, satellite</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the moon?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="1d4a49be-b24d-498b-bda4-5a845e1c14d0" ownerguid="cf0f5056-0fc8-445e-bf69-e5eb38071d6e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">DAN 10.9 Parlashganta mayaycurmi desmayar pampaman upacsacaypa tunergä.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="1d4b0243-6c26-4d0e-9975-bd51a7687f51"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shogmi</AUni> -<AUni ws="qvm-x-acl">shogmi; shogme</AUni> -<AUni ws="qvm-x-akh">shoqmi</AUni> -<AUni ws="qvm-x-akl">shoqmi; shoqme</AUni> -<AUni ws="qvm-x-ame">shuqmi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shuqmi</AUni> -<AUni ws="qvm-x-acl">*shuqmi</AUni> -<AUni ws="qvm-x-akh">*shuqmi</AUni> -<AUni ws="qvm-x-akl">*shuqmi</AUni> -<AUni ws="qvm-x-ame">*shuqmi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.652" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="67e88608-5743-4699-8fbc-13f5356aaaef" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shuqmi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="55bc7319-cf62-4987-b89d-dfb9595289c3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="25d86a39-903d-418d-be1a-cd13a0d2c924" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shuqmi 
\entryTyp root 
\gENG leave 
\gSPN dejar 
\e *shuqmi 
\c V1 
\mp +FinalI 
\ach shogmi 
\akh shoqmi 
\acl shogmi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shogme +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shoqmi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shoqme +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shuqmi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1d4b825a-5b78-4b5c-a4aa-085abc8817b1" ownerguid="431dd85c-daef-4948-9280-6a8d43b9b335"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="7383c3a0-325f-48b1-bde2-53ba8d506aa5" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="964f3d60-c516-4d21-9110-45a47e583f9d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="1d4ec494-5757-45ca-a487-c3e4b309bf78" ownerguid="6ddf87ce-d100-4f94-b4d9-18a6d6ccc59c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7c3c6f36-d56a-4236-a85d-c446e0032343" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="1d5145ee-81e0-4bd5-90b6-c4dbfc0ba9c4" ownerguid="f7fcd1ee-4863-4a86-ad9d-3b2c9e444010"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ra</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ra</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ra</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ra</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ra</Run> -</AStr> -</Form> -<Morph> -<objsur guid="c9195472-585e-46e8-ad5e-3cf1c0561f5a" t="r" /> -</Morph> -<Msa> -<objsur guid="a22f2957-a229-4afb-b8d3-b397bafea06d" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="1d5ae8aa-a40b-4ebe-b498-99238b9e94c1" ownerguid="d68911f6-6507-483a-b015-44726fdf868a"> -<ExampleWords> -<AUni ws="en">work, labor, operate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to working?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1d5be594-4e8a-4b6e-b6d2-9c950170383f" ownerguid="d395edc8-fb58-4ba4-8446-dacf8ea0477a"> -<ExampleWords> -<AUni ws="en">smell sweaty, smelly, stink, body odor, natural smell of sweat, smell of old people, smell of someone who never bathes</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe the smell of sweat?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="1d5c798b-0f2d-49f2-bde6-cbcf2ef8fd02" ownerguid="fd9b8618-1f62-419b-85c3-365a12e85523"> -<Abbreviation> -<AUni ws="en">3.2.5.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.103" /> -<DateModified val="2022-9-23 16:55:8.103" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for when two people disagree about something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>31C Agree, Consent</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Disagree</AUni> -</Name> -<Questions> -<objsur guid="62aa37d3-0796-4132-b7e2-208cf46a6af9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="1d5e2962-0937-472e-84fb-c584fa3f5636"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">afana</AUni> -<AUni ws="qvm-x-acl">afana</AUni> -<AUni ws="qvm-x-akh">afana</AUni> -<AUni ws="qvm-x-akl">afana</AUni> -<AUni ws="qvm-x-ame">afana</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+afanar</AUni> -<AUni ws="qvm-x-acl">+afanar</AUni> -<AUni ws="qvm-x-akh">+afanar</AUni> -<AUni ws="qvm-x-akl">+afanar</AUni> -<AUni ws="qvm-x-ame">+afanar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.659" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2c94543b-5cb4-4632-834c-85af647fe53e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+afanar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="100efcf7-5aed-4719-9d06-feb643cd93a6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b2a76423-5ba7-4baf-8ccb-628baaa593b3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +afanar 
\entryTyp root 
\gENG worry 
\gSPN afana 
\e +afanar 
\c V1 
\ach afana 
\akh afana 
\acl afana 
\akl afana 
\ame afana</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1d5e3174-2a13-4ba1-8b9c-1ecb0638ccea" ownerguid="6339d20b-014e-473a-ac82-e0003bf10b2a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1d65240d-3000-4b2c-8263-576058381766" ownerguid="101c16f8-ec76-4ec7-895a-fd814fef51dd"> -<ExampleWords> -<AUni ws="en">treat a disease, arrest (the spread of a disease)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to treating a disease?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1d6557e6-6425-4e6d-adfe-275702545c8b" ownerguid="349f0278-7998-422a-9c3b-6053989cbb20"> -<ExampleWords> -<AUni ws="en">phrase, clause, sentence, paragraph</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to types of grammatical constructions?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1d66b9c2-d47c-4162-a27f-6d750e9e44c8" ownerguid="a42db5b4-6317-4d3f-beff-cb92dbaca914"> -<ExampleWords> -<AUni ws="en">instructed, learned, well-taught</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe someone who has learned?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1d694d53-f3c8-40de-a926-c36ca30851e3" ownerguid="0037693a-ae42-4e5c-85f5-10a05482d4ee"> -<ExampleWords> -<AUni ws="en">things, oddments, paraphernalia, stuff, odds and ends, bits and pieces, knick-knacks</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a group of things of different types?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1d6e4845-1aa5-4e73-addf-776a2d5aaf83" ownerguid="0f07adb7-4387-4723-9800-8362e825ad45"> -<ExampleWords> -<AUni ws="en">rock, stone, bedrock</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to a rock?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1d72c590-a3c3-470f-b0a5-ac4926b7b13b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">auli</AUni> -<AUni ws="qvm-x-acl">auli; aule</AUni> -<AUni ws="qvm-x-akh">awli</AUni> -<AUni ws="qvm-x-akl">awli; awle</AUni> -<AUni ws="qvm-x-ame">awli</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*awlli</AUni> -<AUni ws="qvm-x-acl">*awlli</AUni> -<AUni ws="qvm-x-akh">*awlli</AUni> -<AUni ws="qvm-x-akl">*awlli</AUni> -<AUni ws="qvm-x-ame">*awlli</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.890" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cf570bf3-6d6f-4d8b-a876-d6610aa74830" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*awlli</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0c627bd3-42d7-4308-a05d-7c7407ed81bf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3625b892-ccf1-42ee-af38-52b9e8ddb0c0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *awlli 
\entryTyp root 
\gENG ? 
\gSPN urdidar 
\e *awlli 
\c V2 
\mp +FinalI 
\ach auli 
\akh awli 
\acl auli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl aule +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl awli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl awle +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame awli</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="1d734945-1322-42a2-b44a-5a3fa015f506" ownerguid="122cbd7c-9136-4d5d-873c-c07e6e85a151"> -<Form> -<AUni ws="qvm-x-ach">mita; mitä</AUni> -<AUni ws="qvm-x-acl">mita; mitä</AUni> -<AUni ws="qvm-x-akh">mita; mitä</AUni> -<AUni ws="qvm-x-akl">mita; mitä</AUni> -<AUni ws="qvm-x-ame">mita; mitä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="1d734a3a-ee91-4c3d-b801-a14defe684e9"> -<Analyses> -<objsur guid="fc4b68a0-31cd-4193-9490-0f488f34fcde" t="o" /> -</Analyses> -<Checksum val="2091945153" /> -<Form> -<AUni ws="qvm-x-akh">aywakurqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="1d763460-c8cc-47b2-9f72-d2228e73303e" ownerguid="50eb32a2-6dbb-4b7c-b370-aacdcfeaf5fc"> -<ExampleWords> -<AUni ws="en">amusement, entertainment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something that causes someone to enjoys something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1d78efb0-a55e-4d1e-8c82-e77ec5039214" ownerguid="2a2af155-9db9-41c5-860a-fe0a3a09d6de"> -<ExampleWords> -<AUni ws="en">be concerned about, care about</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to thinking about what is good for someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1d7b4ddf-a34d-439d-aaa8-4903bf63c2fa" ownerguid="b102b67f-eec0-49ff-82b9-4243b6068788"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1d7bfbdb-a91b-435c-9b1c-1616f2d60d2d" ownerguid="17d5f429-6550-4a3a-a755-5ac3c3d7e04f"> -<ExampleWords> -<AUni ws="en">habitat, the wild</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to where an animal lives?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1d84f6e9-0dd5-4637-87a5-d06c484121b3" ownerguid="3f069313-4827-4fc5-b73b-b9fbd42ca38c"> -<ExampleWords> -<AUni ws="en">make amends, reconcile, ameliorate, restore, make up, make peace, pacify</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to enemies becoming reconciled?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1d856724-9224-4ace-8445-db8c9eb6a46e" ownerguid="17fb1c0c-9be2-49fd-bad6-b97d9b55d338"> -<Form> -<AUni ws="qvm-x-ach">mantequïlla</AUni> -<AUni ws="qvm-x-acl">mantequïlla</AUni> -<AUni ws="qvm-x-akh">mantequïlla</AUni> -<AUni ws="qvm-x-akl">mantequïlla</AUni> -<AUni ws="qvm-x-ame">mantequïlla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="1d85797c-7edf-4d81-9a2c-4be71a248bb6" ownerguid="2bdfe506-0a28-45bd-81e1-44dcedcc262a"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="1d861340-9bf9-47d2-b757-e81e541d470e"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Lumtsuy</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="1d8633e0-4279-4ddc-826e-16aa08a977e5" ownerguid="1b0270a5-babf-4151-99f5-279ba5a4b044"> -<Abbreviation> -<AUni ws="en">2.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the bones and joints.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Bone, joint</AUni> -</Name> -<Questions> -<objsur guid="dd8525b5-41f9-44e1-a37f-5af084a2e26b" t="o" /> -<objsur guid="cea50d62-e66c-4790-94fb-3354b178d73f" t="o" /> -<objsur guid="39578e12-1c3b-4531-87f9-1cfcaff8d44c" t="o" /> -<objsur guid="ea11db0e-0833-4cf6-bfd0-608fdbb0e159" t="o" /> -<objsur guid="e7e7ead5-a5f0-48f1-ae83-bfbd0d68e95b" t="o" /> -<objsur guid="e1e8e65b-30a9-4c76-b6a7-86ae5ab5d2ac" t="o" /> -<objsur guid="91d69bf7-62af-42be-a0d6-17b350b47443" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="d98c1c67-b70e-4a35-89db-2e744bd5197f" t="r" /> -<objsur guid="ffd0547e-e537-4614-ac3f-6d8cd3351f33" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="1d87bc2f-a1c1-495c-9c92-3a373f4f8d43" ownerguid="104d40c9-2a4f-4696-ad99-5cf0eb86ab2e"> -<ExampleWords> -<AUni ws="en">feel up to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to feeling good enough to do something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1d8c3d16-2016-4f76-900e-9fdfdf045602" ownerguid="3a2c0773-6b3e-4f8b-909d-c8f84d66d4f4"> -<ExampleWords> -<AUni ws="en">blank, ... (ellipsis), you know what I mean</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words can be used in the place of any word?</AUni> -</Question> -</rt> -<rt class="MoInflAffMsa" guid="1d8c4153-ed72-4898-b1ff-077c42c51fa3" ownerguid="b3cc49bd-6bca-4168-95d2-5e2a15da45e1"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1d8e60ae-29a9-415f-abcf-2025db52ea87" ownerguid="1088cc2f-83ae-4911-8018-401a745dcfd5"> -<ExampleWords> -<AUni ws="en">two nights ago, the night before last</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to two nights ago?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="1d915b17-524a-4314-a7f1-dc046f59d4f2" ownerguid="db72da84-2cb0-480a-a0d2-0868132d4702"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mu; mo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mu; mo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="45846476-db8b-4639-bef8-780e6651a907" t="r" /> -</Morph> -<Msa> -<objsur guid="84097b64-d9df-441f-a9d3-d11d4b9d9ea0" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="1d935d6a-eac6-4cba-8dca-f98d0396fc49" ownerguid="5966e182-2cab-444f-9c03-8c32a26b1dd5"> -<Form> -<AUni ws="qvm-x-ach">ancha</AUni> -<AUni ws="qvm-x-acl">ancha</AUni> -<AUni ws="qvm-x-akh">ancha</AUni> -<AUni ws="qvm-x-akl">ancha</AUni> -<AUni ws="qvm-x-ame">ancha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="1d961093-aaf4-4101-b5f9-a50a1efc7dd1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ci:ta</AUni> -<AUni ws="qvm-x-acl">ci:ta</AUni> -<AUni ws="qvm-x-akh">ci:ta</AUni> -<AUni ws="qvm-x-akl">ci:ta</AUni> -<AUni ws="qvm-x-ame">ci:ta</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.497" /> -<DateModified val="2022-10-15 16:17:7.270" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="000ef589-4518-4baf-b8c1-2d4e12aa92d4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">DIM</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="00c60237-8260-44be-88d0-a9ba66be4733" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="930d90ea-7f06-46e9-85e2-d3c272ae5b97" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx DIM 
\entryTyp suffix 
\gENG DIM 
\gSPN DIM 
\e DIM 
\c N0/N0 
\o 000 
\mp NeverChanged 
\ach ci:ta 
\akh ci:ta 
\acl ci:ta 
\akl ci:ta 
\ame ci:ta 
\mp NeverMonophthongized</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1d97172d-e7e4-436d-892e-ee043dd3bf88" ownerguid="9351d5b6-5a87-422a-9e82-ca6a0bacd3e9"> -<ExampleWords> -<AUni ws="en">calm someone, calm someone down, soothe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to causing someone to feel calm?</AUni> -</Question> -</rt> -<rt class="Segment" guid="1d98bd5b-3de6-4635-bb42-490527d89316" ownerguid="782b0946-7ede-4b42-b2f1-dc0e5e1a7342"> -<Analyses> -<objsur guid="d7cd6668-9bae-4d42-bca4-f870f4885424" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="1d99d348-34ab-4c49-b345-891795a22c6d" ownerguid="5d1bb537-bcee-49f4-bb91-86f347bc471d"> -<Form> -<AUni ws="qvm-x-ach">atsicyä</AUni> -<AUni ws="qvm-x-acl">atsicyä</AUni> -<AUni ws="qvm-x-akh">atsikyä</AUni> -<AUni ws="qvm-x-akl">atsikyä</AUni> -<AUni ws="qvm-x-ame">atsikyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="1d9a9214-0e83-4788-a2d0-77d5e26eafba" ownerguid="3a328ddb-10bf-4f79-844c-4fab5dae99c7"> -<Form> -<AUni ws="qvm-x-ach">rëmu</AUni> -<AUni ws="qvm-x-acl">rëmu; rëmu; rëmo</AUni> -<AUni ws="qvm-x-akh">rëmu</AUni> -<AUni ws="qvm-x-akl">rëmu; rëmu; rëmo</AUni> -<AUni ws="qvm-x-ame">rëmu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1d9bf168-771b-4bd4-be65-789156c422d8" ownerguid="ded0e58d-8ad7-4909-b0f1-b9ab9c10bb0d"> -<ExampleWords> -<AUni ws="en">queen (king's wife), prince (king's son), princess (king's daughter), duke (king's brother), duchess (king's sister), queen mother (king's mother), former king (king's father), noble, nobleman</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the members of the king's family called?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1d9c7103-5baf-4750-a5ea-f25874a8afe5" ownerguid="8033798b-e0b8-436a-9e27-62f2ed3bdb08"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tablecloth</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b93ed194-ff03-4c2f-a529-2a2565b13709" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="1d9ca436-7282-4c7b-934d-69f4139209f6" ownerguid="a730d0b4-b6db-45ac-bf6e-cefc96ae3fbb"> -<ExampleWords> -<AUni ws="en">deceiver, magician, conjurer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to someone who deceives?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1da15e72-9235-4c1f-97e7-028623d922ee" ownerguid="7babbb46-2299-4864-ba04-c8dc3f7be47f"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="1da90cff-87f3-4166-9127-8527847a9e95" ownerguid="6fa27e89-d7a9-4d52-9c08-feb552baf170"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="44c5ef41-6698-4608-8138-9314a3708930" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="1da9c4f4-8ae2-47d9-8068-ff65fa3848a9" ownerguid="49ee84ff-eb2b-4ba3-b193-3018d34599c2"> -<Abbreviation> -<AUni ws="en">6.8.5.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to repaying a debt.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Repay debt</AUni> -</Name> -<Questions> -<objsur guid="d6ebf816-af03-4de9-9234-9919b51303af" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="1daa5dd8-fe23-4f82-844d-2c9c9eef8fab" ownerguid="519bec6f-2db3-4703-a93f-b3da331d49a3"> -<Form> -<AUni ws="qvm-x-ach">ishqui</AUni> -<AUni ws="qvm-x-acl">ishqui; ishque</AUni> -<AUni ws="qvm-x-akh">ishki</AUni> -<AUni ws="qvm-x-akl">ishki; ishke</AUni> -<AUni ws="qvm-x-ame">ishki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="1dab46d7-a247-40f9-af59-ba729f690256" ownerguid="a39f772c-3e5b-48b6-b7bc-e8b00c6208ac"> -<Form> -<AUni ws="qvm-x-ach">muñica</AUni> -<AUni ws="qvm-x-acl">muñica</AUni> -<AUni ws="qvm-x-akh">muñica</AUni> -<AUni ws="qvm-x-akl">muñica</AUni> -<AUni ws="qvm-x-ame">muñica</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="1dacfd24-11d1-45f7-92e3-2a9e9ac6f96a" ownerguid="e40c8484-4541-4ce8-aa78-6007811164c4"> -<Form> -<AUni ws="qvm-x-ach">estuchi; estuche</AUni> -<AUni ws="qvm-x-acl">estuchi; estuchi; estuche</AUni> -<AUni ws="qvm-x-akh">estuchi; estuche</AUni> -<AUni ws="qvm-x-akl">estuchi; estuchi; estuche</AUni> -<AUni ws="qvm-x-ame">estuchi; estuche</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1db3ee11-91b0-41e9-91c6-5593466d44c0" ownerguid="d395edc8-fb58-4ba4-8446-dacf8ea0477a"> -<ExampleWords> -<AUni ws="en">break out in a sweat, break into a sweat, begin to sweat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used to describe a person beginning to sweat?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1db6fd68-f3a9-439d-b35d-08d74bc9156e" ownerguid="1dc9e33a-91ce-4c64-9bad-197ef3f4a6dd"> -<Form> -<AUni ws="qvm-x-ach">chinëru</AUni> -<AUni ws="qvm-x-acl">chinëru; chinëru; chinëro</AUni> -<AUni ws="qvm-x-akh">chinëru</AUni> -<AUni ws="qvm-x-akl">chinëru; chinëru; chinëro</AUni> -<AUni ws="qvm-x-ame">chinëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="1db7e5ac-01ea-4a41-8a2f-af91bdf73c0f" ownerguid="a56ab66b-6c3c-4116-9ada-e8430569dca8"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1dbd0c9e-768b-4c2d-92a0-5509eb84d597" ownerguid="5c091d8d-5bc4-40c3-8a30-2a08fb0794b8"> -<ExampleWords> -<AUni ws="en">be possessed by a spirit, drugs</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What causes someone to be in an unusual state of consciousness?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1dc0be0f-f56f-4e52-8646-d89d6133f86b" ownerguid="ad7c037b-9d49-405a-92bf-b5705a60d818"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="1dc717b9-c5e8-4482-b076-22102da9d553" ownerguid="87bd0d45-8a94-41cb-9864-90d53a11a4b9"> -<Abbreviation> -<AUni ws="en">4.7.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to breaking the law.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88R Act Lawlessly</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Break the law</AUni> -</Name> -<OcmCodes> -<Uni>674 Crime; 677 Organized Crime; 672 Liability; 673 Wrongs</Uni> -</OcmCodes> -<Questions> -<objsur guid="afd1ff80-111a-414d-8e0a-4361836308a8" t="o" /> -<objsur guid="2f4ad7be-19f4-44ce-8ee3-3bdaed50db31" t="o" /> -<objsur guid="3f71968a-d241-4fac-88ac-9d5ffc84c58e" t="o" /> -<objsur guid="8cbc1d52-76c5-43cd-b4a3-8a86a5a21088" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="1dc95887-4ab3-49bc-9c6b-bb4718df80bb" ownerguid="94e188d4-db09-4c38-9a7f-b99be42fb5b3"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EZR 7.22 Entreganayquipag autorizädu carcaycanqui hasta quimsa waranga quimsa pachac (3,300) kïlu guellayta, ishcay chunca ishcay waranga (22,000) kïlu trïguta, ishcay waranga ishcay pachac (2,200) litru vïnuta y hasta ishcay waranga ishcay pachac (2,200) litru aceitita.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="1dc9e33a-91ce-4c64-9bad-197ef3f4a6dd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chine:ru</AUni> -<AUni ws="qvm-x-acl">chine:ru; chine:ru; chine:ro</AUni> -<AUni ws="qvm-x-akh">chine:ru</AUni> -<AUni ws="qvm-x-akl">chine:ru; chine:ru; chine:ro</AUni> -<AUni ws="qvm-x-ame">chine:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+chinero</AUni> -<AUni ws="qvm-x-acl">+chinero</AUni> -<AUni ws="qvm-x-akh">+chinero</AUni> -<AUni ws="qvm-x-akl">+chinero</AUni> -<AUni ws="qvm-x-ame">+chinero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.315" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1db6fd68-f3a9-439d-b35d-08d74bc9156e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+chinero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d3d0a945-6e9b-41ea-bce2-8938d4b9b9d8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0235e4a4-d28d-4660-91a3-f5d640afb99c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +chinero 
\entryTyp root 
\gENG womanizer 
\gSPN 
\e +chinero 
\c N0 
\ach chine:ru 
\akh chine:ru 
\acl chine:ru / _# 
\acl chine:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chine:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chine:ru / _# 
\akl chine:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chine:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chine:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="1dcd440b-ee59-41e4-b3e1-f965817c8831"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aga</AUni> -<AUni ws="qvm-x-acl">aga</AUni> -<AUni ws="qvm-x-akh">aqa</AUni> -<AUni ws="qvm-x-akl">aqa</AUni> -<AUni ws="qvm-x-ame">aqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aqa</AUni> -<AUni ws="qvm-x-acl">*aqa</AUni> -<AUni ws="qvm-x-akh">*aqa</AUni> -<AUni ws="qvm-x-akl">*aqa</AUni> -<AUni ws="qvm-x-ame">*aqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.810" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="22113760-f033-420f-9e7c-428fe1593f6c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="faf276e0-4f09-4378-a9cb-9248ff35b346" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="862810e6-56ec-467a-a723-f4b6b7dcd310" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aqa 
\entryTyp root 
\gENG grind 
\gSPN moler 
\e *aqa 
\c V2 
\ach aga 
\akh aqa 
\acl aga 
\akl aqa 
\ame aqa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1dcdc877-6f3f-4a61-9a4c-e6629bf79fd6" ownerguid="e2806bed-b450-4469-900a-1afa7ded2224"> -<ExampleWords> -<AUni ws="en">outside (adj), outer, external, surface, superficial</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is on the outside?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1dce480b-2d79-4089-bc97-6a8345242aeb" ownerguid="7f91aa6d-f342-4fb9-9448-69d694cda9c5"> -<ExampleWords> -<AUni ws="en">size, magnitude</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a large degree?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1dcf7fcd-7ed4-4ff9-8419-9cf7cb44001c" ownerguid="1d34380d-61bf-4247-9145-ba318a14a97e"> -<ExampleWords> -<AUni ws="en">grain, flake, speck, fleck, crumb, morsel, tidbit, dot, mote</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a very small piece?</AUni> -</Question> -</rt> -<rt class="WfiGloss" guid="1dd18297-5738-423b-a527-e0f1a8a4735b" ownerguid="8bee3444-588c-4cf0-a7a8-87548bbf7731"> -<Form> -<AUni ws="en">one</AUni> -<AUni ws="es">uno(a)</AUni> -</Form> -</rt> -<rt class="LexEntry" guid="1dd1abbb-5a5c-481b-af96-5fe94d86ce49"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">crusi:la</AUni> -<AUni ws="qvm-x-acl">crusi:la</AUni> -<AUni ws="qvm-x-akh">crusi:la</AUni> -<AUni ws="qvm-x-akl">crusi:la</AUni> -<AUni ws="qvm-x-ame">crusi:la</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+crusila</AUni> -<AUni ws="qvm-x-acl">+crusila</AUni> -<AUni ws="qvm-x-akh">+crusila</AUni> -<AUni ws="qvm-x-akl">+crusila</AUni> -<AUni ws="qvm-x-ame">+crusila</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.223" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f15b1a71-5edf-4b3f-957f-2c9e9696d34b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+crusila</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9013d46a-119c-4d9b-aa45-543c5b5fa859" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="be4a219b-8d69-492a-a9dc-2f9fd12a73fb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +crusila 
\entryTyp root 
\gENG purple 
\gSPN 
\e +crusila 
\c N0 
\ach crusi:la 
\akh crusi:la 
\acl crusi:la 
\akl crusi:la 
\ame crusi:la</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1dd33502-ebe5-476b-9e1d-2287b2b31802" ownerguid="7b513a02-c3ae-4243-9410-16854d911258"> -<ExampleWords> -<AUni ws="en">naming ceremony, christening</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) When is a name given?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1dd45c2c-10a2-424f-bfbc-427c03ff0600" ownerguid="2aa41bcd-2aa4-4795-8b53-d12956906a1d"> -<Form> -<AUni ws="qvm-x-ach">viüdu</AUni> -<AUni ws="qvm-x-acl">viüdu; viüdu; viüdo</AUni> -<AUni ws="qvm-x-akh">viüdu</AUni> -<AUni ws="qvm-x-akl">viüdu; viüdu; viüdo</AUni> -<AUni ws="qvm-x-ame">viüdu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1dd5bac4-4572-447a-a56e-d54b9b37b0fc" ownerguid="f7960e84-5af9-4999-9028-783058aa8c5c"> -<ExampleWords> -<AUni ws="en">always, every time, any time, everyday</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to all times?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1dd6febd-0127-48b5-a634-18e4a9ab3f7d" ownerguid="2da260cb-03fd-4433-b51b-986bded9b951"> -<Form> -<AUni ws="qvm-x-ach">pishi; pishï</AUni> -<AUni ws="qvm-x-acl">pishë; pishi; pishe</AUni> -<AUni ws="qvm-x-akh">pishi; pishï</AUni> -<AUni ws="qvm-x-akl">pishë; pishi; pishe</AUni> -<AUni ws="qvm-x-ame">pishi; pishï</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="1dda2c36-411b-416f-aa5c-78a95fc8d275" ownerguid="96f273b1-b691-4510-bd81-976225c7017f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="17aa33ba-a394-47c0-98ac-d41062a72008" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="323546a7-3857-42c2-b1b2-dcbb20fd1712" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="1ddbfa9c-17b7-455e-a365-15a0d196e10c" ownerguid="8c2d4caf-fbe7-4901-a284-cf3ef41bdce3" /> -<rt class="CmSemanticDomain" guid="1de2cef5-3a2d-45c1-8cb6-06b2ac087907" ownerguid="61a28bdc-c05c-49d8-b47e-d54a9082156c"> -<Abbreviation> -<AUni ws="en">9.4.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.708" /> -<DateModified val="2022-9-23 16:55:8.708" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate a subordinate clause. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Subordinating particles</AUni> -</Name> -<Questions> -<objsur guid="87e3f560-7e9a-450a-9185-6ad4f5c6dc83" t="o" /> -<objsur guid="38795822-d4c0-4654-8b9a-fe136399ece1" t="o" /> -<objsur guid="354c57bd-432b-4e8f-b70e-2ea9a2864a03" t="o" /> -<objsur guid="87dddc72-9aa0-4238-8c39-bdfceca8175a" t="o" /> -<objsur guid="f148b85a-9639-46ba-a0d4-b9f5f8fe1634" t="o" /> -<objsur guid="92ca97bc-23da-478e-8ef3-98a5038bc565" t="o" /> -<objsur guid="7ec315da-4213-41fb-b32b-f52a83910ebc" t="o" /> -<objsur guid="8492c8f5-bd12-4035-a1a5-95827b2f285c" t="o" /> -<objsur guid="d9e90fbf-5f23-4cc4-9336-0fc72900f5dc" t="o" /> -<objsur guid="f256218b-0f3d-4121-bc09-5852949c9cef" t="o" /> -<objsur guid="2c1177ca-391a-4890-ac2d-9f24bdb70c04" t="o" /> -<objsur guid="f1b77a61-dd1b-4b4e-885d-aa6267e5f34b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="1de3efe7-490c-4167-91fe-0fe02118824f" ownerguid="ff877ccd-2f16-4d3d-8b3d-ee7a0968f239"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">SNG 1.16 Pasaypa cuyaylapagmi caycanqui, papïtu.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="1de3fed5-126b-4cce-bc55-c825530ce5be" ownerguid="741c417a-11e9-460c-9ab3-51b8220df016"> -<ExampleWords> -<AUni ws="en">surf, surfboard, ride the waves, dive under</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What do people do with waves?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1de6c3b5-7f6c-4220-833b-3109f9c923dd" ownerguid="f03fdc3a-e0f2-4ae8-bb23-b8e488562d9b"> -<Form> -<AUni ws="qvm-x-ach">jiuya</AUni> -<AUni ws="qvm-x-acl">jiuya</AUni> -<AUni ws="qvm-x-akh">jiwya</AUni> -<AUni ws="qvm-x-akl">jiwya</AUni> -<AUni ws="qvm-x-ame">hiwya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="1de7e3f8-1f6e-4ba0-a741-b0f5b25211e8" ownerguid="de917b61-5157-4309-b0b5-dfee703d61f3"> -<Form> -<AUni ws="qvm-x-ach">benëchu</AUni> -<AUni ws="qvm-x-acl">benëchu; benëchu; benëcho</AUni> -<AUni ws="qvm-x-akh">benëchu</AUni> -<AUni ws="qvm-x-akl">benëchu; benëchu; benëcho</AUni> -<AUni ws="qvm-x-ame">benëchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="1de848f6-a750-4c73-9334-13d36b6d888a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sirvi</AUni> -<AUni ws="qvm-x-acl">sirvi; sirve</AUni> -<AUni ws="qvm-x-akh">sirvi</AUni> -<AUni ws="qvm-x-akl">sirvi; sirve</AUni> -<AUni ws="qvm-x-ame">sirvi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+servir</AUni> -<AUni ws="qvm-x-acl">+servir</AUni> -<AUni ws="qvm-x-akh">+servir</AUni> -<AUni ws="qvm-x-akl">+servir</AUni> -<AUni ws="qvm-x-ame">+servir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.510" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e2c07440-dab7-4a6e-83c0-13f6b89cf75f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+servir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cc65327e-0bf0-4aec-8af9-8f858dbb7550" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f728295b-d202-43bb-8273-7cd7bd74d531" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +servir 
\entryTyp root 
\gENG serve 
\gSPN servir 
\e +servir 
\c V2 
\mp +FinalI 
\ach sirvi 
\akh sirvi 
\acl sirvi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl sirve +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sirvi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sirve +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sirvi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1de8527f-c14a-469e-a701-61bf941eac4a" ownerguid="cf079329-b4c0-4dfd-acb9-dd2e6dee6338"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">office</AUni> -<AUni ws="es">despacho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5d50e7a6-5442-4d69-8d21-01c8870dd078" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="1dea9d66-04e4-48ed-97aa-0e0a76df87c5" ownerguid="cb0e8865-afec-4259-839b-5ca760f571ec"> -<Form> -<AUni ws="qvm-x-ach">presidenti; presidente</AUni> -<AUni ws="qvm-x-acl">presidenti; presidenti; presidente</AUni> -<AUni ws="qvm-x-akh">presidenti; presidente</AUni> -<AUni ws="qvm-x-akl">presidenti; presidenti; presidente</AUni> -<AUni ws="qvm-x-ame">presidenti; presidente</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="1debc71f-e27c-4fe7-bb7b-b308608c09d9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jircan</AUni> -<AUni ws="qvm-x-acl">jircan</AUni> -<AUni ws="qvm-x-akh">jirkan</AUni> -<AUni ws="qvm-x-akl">jirkan</AUni> -<AUni ws="qvm-x-ame">hirkan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hirkan</AUni> -<AUni ws="qvm-x-acl">*hirkan</AUni> -<AUni ws="qvm-x-akh">*hirkan</AUni> -<AUni ws="qvm-x-akl">*hirkan</AUni> -<AUni ws="qvm-x-ame">*hirkan</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.731" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e3572cd4-53d7-4b07-a3a7-8d7a89882791" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hirkan</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d80f6a75-f4f8-434a-828d-717e5419db37" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="eeb02a53-fa5f-4d29-885d-6df1b02c4927" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hirkan 
\entryTyp root 
\gENG 
\gSPN colina 
\e *hirkan 
\c N0 
\mp +FinalC 
\ach jircan 
\akh jirkan 
\acl jircan 
\akl jirkan 
\ame hirkan 
\mcc *hirkan / ~_ 3P.C 
\i Jos 11.13 Marcacunata rupatsirpis jircancunacho sharcatsishgan cag marcacunataga manami rupatsergantsu. Puytucshu janancho sharcatsishga captinpis Hazorlatami rupatsergan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1dee7a9b-02c4-45da-b817-c6e4e7827ccc" ownerguid="bcb1252c-7cb4-4fbc-b83f-e5f9c65b4afb"> -<ExampleWords> -<AUni ws="en">next door, adjoin, border (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that something such as a building or country is next to another?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1df2fce0-1883-425b-9c13-39a1880e7678" ownerguid="223e408a-4c34-41c0-821f-20848376c90d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="1df304e9-c98a-4c80-b0bd-d122eae46b56" ownerguid="4b2c725c-3642-46d5-9098-77ad8dc47222"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">scrape</AUni> -<AUni ws="es">raspar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="155efa24-c269-4114-972b-3e5ca9663df1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="1df33d84-5adc-4723-a742-6ce21f17390c" ownerguid="4fbe296e-d1d8-4838-999f-5507149ff834"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="24331c65-58bc-4008-b3a6-5990d722b4d8" t="o" /> -<objsur guid="8c6ead37-8ac7-4d7e-9a58-5ed06ba7f859" t="o" /> -<objsur guid="712f3fa8-d49c-4baf-9d33-3ae4279eab85" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="1df531ad-83d7-4c2b-bd48-94fad938e7a8" ownerguid="ccba702a-8b01-49e8-b007-0b7a3c3a49f5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">study</AUni> -<AUni ws="es">estudiar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f53ddbca-bc03-4407-99df-3a702c5d64d2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="1df57ee2-492e-49fe-90a3-14ec78b4104c" ownerguid="2d894eca-8f6c-4b63-b265-0914a65d9be9"> -<ExampleWords> -<AUni ws="en">beer, wine, rice wine, sake, mead, whiskey, vodka, millet beer, banana beer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of alcoholic drinks are there?</AUni> -</Question> -</rt> -<rt class="PhCode" guid="1dfc06f6-bebf-41d8-901a-e410e64579b2" ownerguid="54482722-898d-4007-ba4d-c113b50789cd"> -<Representation> -<AUni ws="qvm-x-ach">y</AUni> -<AUni ws="qvm-x-acl">y</AUni> -<AUni ws="qvm-x-akh">y</AUni> -<AUni ws="qvm-x-akl">y</AUni> -<AUni ws="qvm-x-ame">y</AUni> -</Representation> -</rt> -<rt class="CmDomainQ" guid="1dfccf53-af1f-4429-b9a4-5c2ba89acdb7" ownerguid="36ad58e3-ade7-49b9-9922-de0b5c3f13c3"> -<ExampleWords> -<AUni ws="en">thickener, cornstarch, pectin, egg, gelatin, agar, wheat flour, corn flour, tapioca flour, cassava flour, sago flour, rice flour, glutinous rice flour</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to thickeners?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1dfdc916-4b15-43fe-80a1-a751bee7e476" ownerguid="8f4c15fa-54f9-41fc-8de3-2657d57e81f2"> -<Form> -<AUni ws="qvm-x-ach">shutu</AUni> -<AUni ws="qvm-x-acl">shutu; shuto</AUni> -<AUni ws="qvm-x-akh">shutu</AUni> -<AUni ws="qvm-x-akl">shutu; shuto</AUni> -<AUni ws="qvm-x-ame">shutu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1e00e58f-5974-4d3e-b0af-71810371ab60" ownerguid="ba1e8d2b-7d3e-4b65-a9be-ee1a4063c796"> -<ExampleWords> -<AUni ws="en">worrying, worrisome, alarming, anxious, bothersome, disturbing, nerve-racking, stressful, tense, niggling, alarmist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe something that causes someone to feel worried?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1e06fc23-60cd-44a0-9fa5-bdf756101db2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rayán; rayan</AUni> -<AUni ws="qvm-x-acl">rayán; rayan</AUni> -<AUni ws="qvm-x-akh">rayán; rayan</AUni> -<AUni ws="qvm-x-akl">rayán; rayan</AUni> -<AUni ws="qvm-x-ame">rayán; rayan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rayán</AUni> -<AUni ws="qvm-x-acl">+rayán</AUni> -<AUni ws="qvm-x-akh">+rayán</AUni> -<AUni ws="qvm-x-akl">+rayán</AUni> -<AUni ws="qvm-x-ame">+rayán</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.297" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="51e9af5f-df4b-4e49-b2ff-a4888e55803f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rayán</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0caeb26f-fa43-4d87-9741-a6c071cf63d6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2c985b42-b821-42f8-949c-580107a2b8f2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rayán 
\entryTyp root 
\gENG 
\gSPN 
\e +rayán 
\c N0 
\mp NeverMonophthongized 
\ach rayán / _# 
\ach rayan / ~_# 
\akh rayán / _# 
\akh rayan / ~_# 
\acl rayán / _# 
\acl rayan / ~_# 
\akl rayán / _# 
\akl rayan / ~_# 
\ame rayán / _# 
\ame rayan / ~_# 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="1e09f87f-89b7-4094-8bc1-64dacf609ebc" ownerguid="91cb814b-266a-4472-a280-d29d8032a4f5"> -<Form> -<AUni ws="qvm-x-ach">ración; racion</AUni> -<AUni ws="qvm-x-acl">ración; racion</AUni> -<AUni ws="qvm-x-akh">ración; racion</AUni> -<AUni ws="qvm-x-akl">ración; racion</AUni> -<AUni ws="qvm-x-ame">ración; racion</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="1e0a6241-fd13-49e2-8b30-6fc80983e28a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">atsikya</AUni> -<AUni ws="qvm-x-acl">atsikya</AUni> -<AUni ws="qvm-x-akh">atsikya</AUni> -<AUni ws="qvm-x-akl">atsikya</AUni> -<AUni ws="qvm-x-ame">atsikya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*achikya.v</AUni> -<AUni ws="qvm-x-acl">*achikya.v</AUni> -<AUni ws="qvm-x-akh">*achikya.v</AUni> -<AUni ws="qvm-x-akl">*achikya.v</AUni> -<AUni ws="qvm-x-ame">*achikya.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.639" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e3cd5b39-11a4-4a3b-bcfa-9fa214288d91" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*achikya.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8dfa1e7f-1c62-4c51-8579-a1e91fcec66e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9f9e25de-2d6c-4c14-a163-98ee54bdef83" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *achikya.v 
\entryTyp root 
\gENG 
\gSPN 
\e *achikya.v 
\c V1 
\ach atsikya 
\akh atsikya 
\acl atsikya 
\akl atsikya 
\ame atsikya 
\i GEN 1.17 Tsaykunata Tayta Dios jana patsaman churarqan kay patsaman atsikyamuptin tsakaypis junaqpis kananpaqmi.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="1e0e08a7-435a-458a-8345-b77e6f5e0085" ownerguid="843f5815-aa0c-4319-a068-045a69c4b514"> -<Form> -<AUni ws="qvm-x-ach">lucëru</AUni> -<AUni ws="qvm-x-acl">lucëru; lucëru; lucëro</AUni> -<AUni ws="qvm-x-akh">lucëru</AUni> -<AUni ws="qvm-x-akl">lucëru; lucëru; lucëro</AUni> -<AUni ws="qvm-x-ame">lucëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="1e102423-6167-486a-bfef-dad1c9cdf1eb" ownerguid="c0b7f354-a75c-41d5-a489-ae2df6364d02"> -<Abbreviation> -<AUni ws="en">7.2.4.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.516" /> -<DateModified val="2022-9-23 16:55:8.516" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for things used to move.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>6I Vehicles</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Vehicle</AUni> -</Name> -<Questions> -<objsur guid="a1956187-465b-4381-9bba-cc9f6fcdc1f7" t="o" /> -<objsur guid="d9560ce0-e5e1-47d4-95c2-cbed926fab27" t="o" /> -<objsur guid="74149f06-9b57-4206-bb03-e91f726c3e65" t="o" /> -<objsur guid="21268811-531a-462e-8608-0f4cae7e4c37" t="o" /> -<objsur guid="eb62d54b-9bc5-4074-b544-2053ff0b73c0" t="o" /> -<objsur guid="daf6d919-ab98-44a5-b79a-fd1221ab65ca" t="o" /> -<objsur guid="f38500ad-6902-4c75-8dc3-a2e4e77001bf" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="1e133738-49be-4c1c-a087-7b93e2c07574" ownerguid="38ab2681-fcc7-4a75-bb0b-29c5cd2e3a8f"> -<ExampleWords> -<AUni ws="en">summon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to summoning someone to come to you?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1e159a3c-16cf-444d-ade8-cf66c98c1826"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sesión; sesion</AUni> -<AUni ws="qvm-x-acl">sesión; sesion</AUni> -<AUni ws="qvm-x-akh">sesión; sesion</AUni> -<AUni ws="qvm-x-akl">sesión; sesion</AUni> -<AUni ws="qvm-x-ame">sesión; sesion</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sesión</AUni> -<AUni ws="qvm-x-acl">+sesión</AUni> -<AUni ws="qvm-x-akh">+sesión</AUni> -<AUni ws="qvm-x-akl">+sesión</AUni> -<AUni ws="qvm-x-ame">+sesión</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.510" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5ad3fe4b-92e1-40eb-a339-dd2c3f915a90" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sesión</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cd682493-6d1e-437c-bbd8-1115ace13617" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="43b25254-41d7-42e1-8877-87ac5fee5dcc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sesión 
\entryTyp root 
\gENG session 
\gSPN sesión 
\e +sesión 
\c N0 
\mp +FinalC 
\ach sesión / _# 
\ach sesion / ~_# 
\akh sesión / _# 
\akh sesion / ~_# 
\acl sesión / _# 
\acl sesion / ~_# 
\akl sesión / _# 
\akl sesion / ~_# 
\ame sesión / _# 
\ame sesion / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1e181b3d-b9cb-4b55-8c74-6038617e0dc8" ownerguid="4bfe53d2-fb85-4397-98a8-97d59b907064"> -<ExampleWords> -<AUni ws="en">bow, stern, starboard, port, deck, gunwale, below decks, mast, spar, crow's nest, figurehead, rudder, helm, superstructure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the parts of a boat?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1e1928c5-6ef0-457f-889d-aee4d016ac62" ownerguid="dd31246e-9402-48f1-ae98-07d340f56f8f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1e19502d-9160-4b44-a820-53282161d55e" ownerguid="b43fae8e-6b19-42ed-98cd-d363174b9cf8"> -<ExampleWords> -<AUni ws="en">undersized, dwarf, midget, extra small</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe something that is much smaller than other things of the same type?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1e1b4c17-9133-4682-8148-dec1f7c897b3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gaycu</AUni> -<AUni ws="qvm-x-acl">gaycu; gayco</AUni> -<AUni ws="qvm-x-akh">qayku</AUni> -<AUni ws="qvm-x-akl">qayku; qayko</AUni> -<AUni ws="qvm-x-ame">qayku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qayku</AUni> -<AUni ws="qvm-x-acl">*qayku</AUni> -<AUni ws="qvm-x-akh">*qayku</AUni> -<AUni ws="qvm-x-akl">*qayku</AUni> -<AUni ws="qvm-x-ame">*qayku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.165" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c8964dc4-2cfd-4eee-9df7-0ce268d0446e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qayku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="528a75ef-09a4-4c91-91ea-adb65d4453a5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4fae2d18-ce15-4289-8572-936463171f29" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qayku 
\entryTyp root 
\gENG put 
\gSPN echar 
\e *qayku 
\c V2 
\ach gaycu 
\akh qayku 
\acl gaycu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gayco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qayku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qayko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qayku 
\mcc *qayku / _ PLALL 
\i gaycupäcun</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1e1df59e-ea51-46bc-8b93-9746ce198201" ownerguid="d02a2605-f17a-4468-b495-570e1ec3872e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="1e23276d-ce20-4dee-9c93-63eb34131ad1" ownerguid="14a7ae1e-68e1-42dd-8dac-28006b0c7165"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="1e233c11-4703-457a-92c3-3d19c45729b1" ownerguid="5b39b650-7475-4958-8653-9c3f4389a28b"> -<Form> -<AUni ws="qvm-x-ach">japshi</AUni> -<AUni ws="qvm-x-acl">japshi; japshi; japshe</AUni> -<AUni ws="qvm-x-akh">japshi</AUni> -<AUni ws="qvm-x-akl">japshi; japshi; japshe</AUni> -<AUni ws="qvm-x-ame">hapshi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1e23d37c-83f8-4ef7-bf99-26976053d188" ownerguid="03352940-c220-4a32-a9a5-fc08d1d0dc71"> -<ExampleWords> -<AUni ws="en">garbage man, dustman</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a person who removes garbage?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1e28037c-3909-438b-bece-67a82baddbeb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">siempri; siempre</AUni> -<AUni ws="qvm-x-acl">siempri; siempre; siempri</AUni> -<AUni ws="qvm-x-akh">siempri; siempre</AUni> -<AUni ws="qvm-x-akl">siempri; siempre; siempri</AUni> -<AUni ws="qvm-x-ame">siempri; siempre</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+siempre</AUni> -<AUni ws="qvm-x-acl">+siempre</AUni> -<AUni ws="qvm-x-akh">+siempre</AUni> -<AUni ws="qvm-x-akl">+siempre</AUni> -<AUni ws="qvm-x-ame">+siempre</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.673" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3b28d36e-2d39-4e70-b532-7592fda80949" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+siempre</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d3e047d0-23fc-4391-8430-a07f1991bb8e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c61e5fbc-5387-408b-bdbd-1bed3680356f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +siempre 
\entryTyp root 
\gENG always 
\gSPN siempre 
\e +siempre 
\c R0 
\mp +FinalI 
\ach siempri / ~_# 
\ach siempre / _# 
\akh siempri / ~_# 
\akh siempre / _# 
\acl siempri / _# 
\acl siempre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl siempri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl siempri / _# 
\akl siempre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl siempri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame siempri / ~_# 
\ame siempre / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1e28460f-5633-4435-ac51-8bebd4cceb27" ownerguid="e40c8484-4541-4ce8-aa78-6007811164c4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1e288b05-6bd4-4749-bf60-83eb074b3c0d" ownerguid="e1ac83c2-352f-4a2e-9612-99e66d6d3d0c"> -<ExampleWords> -<AUni ws="en">slave, bondservant, serf</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a slave?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1e297f18-ce18-4398-bf2b-0754d3c0b8bb" ownerguid="763fa2e0-c119-4f50-a307-81ed8c3497ed"> -<ExampleWords> -<AUni ws="en">opponent, the opposition, enemy, foe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to someone who opposes something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1e2b3ba4-8568-43e3-b010-1ed75a2982f9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ma:ña</AUni> -<AUni ws="qvm-x-acl">ma:ña</AUni> -<AUni ws="qvm-x-akh">ma:ña</AUni> -<AUni ws="qvm-x-akl">ma:ña</AUni> -<AUni ws="qvm-x-ame">ma:ña</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+maña.n</AUni> -<AUni ws="qvm-x-acl">+maña.n</AUni> -<AUni ws="qvm-x-akh">+maña.n</AUni> -<AUni ws="qvm-x-akl">+maña.n</AUni> -<AUni ws="qvm-x-ame">+maña.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.325" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="013f9a25-8566-46ea-9d96-a2b6f9870bd8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+maña.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f07082ba-9a14-4d5d-b895-70c53871eb6e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f9b96870-eecc-4746-9a7b-8a9647ea3e32" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +maña.n 
\entryTyp root 
\gENG 
\gSPN 
\e +maña.n 
\c N0 
\ach ma:ña 
\akh ma:ña 
\acl ma:ña 
\akl ma:ña 
\ame ma:ña</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="1e2f084c-71ac-42d4-8200-995f1be5d2c4"> -<Analyses> -<objsur guid="1ce1cf74-4502-483d-8c16-22a4dd7d5724" t="o" /> -<objsur guid="3159b288-5a51-4a70-814b-2e866f61e4a8" t="o" /> -<objsur guid="3a69f8eb-eb96-4a29-b349-921314550427" t="o" /> -<objsur guid="3fb6e4bb-c608-4d3e-bd47-193a546b6c26" t="o" /> -<objsur guid="62ac799d-ad65-4fb5-a08f-a2c750b94997" t="o" /> -<objsur guid="94253887-8eb0-4704-946f-98a465c513f7" t="o" /> -<objsur guid="ca2f88ed-5d2b-4d01-baf7-e6ca8e0b8879" t="o" /> -<objsur guid="f2d823a1-804a-4388-b911-3bcb871b29c8" t="o" /> -<objsur guid="f39d9f45-6c4b-4e2f-9e86-6e1766545a1d" t="o" /> -</Analyses> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">yarpätsin</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="1e2f7cf8-0647-4962-99d3-56de7c57a6e5" ownerguid="ef409fc6-bd89-4cc6-ade5-abb882272313"> -<ExampleWords> -<AUni ws="en">favorite (n), favorite (adj), first choice, preference, number one</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something you like more than any others?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1e325dba-52d7-4832-a1da-8aa53dae90df" ownerguid="8c30a1c0-032a-4dc6-aba5-e3943448f9e5"> -<Form> -<AUni ws="qvm-x-ach">calentüra</AUni> -<AUni ws="qvm-x-acl">calentüra</AUni> -<AUni ws="qvm-x-akh">calentüra</AUni> -<AUni ws="qvm-x-akl">calentüra</AUni> -<AUni ws="qvm-x-ame">calentüra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="1e33f40e-2fa9-490d-b020-ddce6de67e30" ownerguid="2005ccc6-764d-4fbf-aee6-6f5162265f74"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">purple</AUni> -<AUni ws="es">morado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="41c3259d-dacb-451e-b037-58ce7968a83d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="1e3911e8-8b74-44db-965f-c8a247a99185" ownerguid="4b19f8b0-8e89-4229-b05b-b0325eeb3c53"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Num 8.25 Pitsga chunca (50) watata cumplircorga jubilaconganami.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="1e3a5e08-523e-4b3d-a8e9-d560d527b5ce" ownerguid="9bd490e6-8863-4ab4-9a0f-7e696f0a0d4a"> -<Form> -<AUni ws="qvm-x-ach">pauca</AUni> -<AUni ws="qvm-x-acl">pauca</AUni> -<AUni ws="qvm-x-akh">pawka</AUni> -<AUni ws="qvm-x-akl">pawka</AUni> -<AUni ws="qvm-x-ame">pawka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="1e3b026b-de35-45bd-9058-d8c6d10ec2e2" ownerguid="0b6b305f-f2ef-41f1-aabd-07862c3f4da0" /> -<rt class="CmDomainQ" guid="1e3b0f4d-23d4-49fc-9b29-896ce2caa783" ownerguid="5bcd08a6-cb46-41bb-a732-0d690b5ea596"> -<ExampleWords> -<AUni ws="en">tender, tough, crisp, crispy, raw, stale, fresh</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe food?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="1e419f7a-7363-46bc-8044-157ed0b40ccd" ownerguid="3b4b947a-f223-4c87-8839-9f6237cda9f6"> -<Abbreviation> -<AUni ws="en">7.3.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.536" /> -<DateModified val="2022-9-23 16:55:8.536" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for holding something in the hand.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>18 Attachment; 18A Grasp, Hold</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Hold</AUni> -</Name> -<Questions> -<objsur guid="9ab1d5a0-fd05-4320-b378-1bcb4ea1fa71" t="o" /> -<objsur guid="eb94ffcd-a478-4065-9050-e8b9f7f88dc1" t="o" /> -<objsur guid="4cff0898-0578-450a-a181-2efc43449a21" t="o" /> -<objsur guid="30975cf5-c7e0-43b3-af4d-3a971effae49" t="o" /> -<objsur guid="3e17ddd6-beae-4fa0-8051-5e06f1064064" t="o" /> -<objsur guid="b2150e1b-1141-427c-8a3d-cfdd23bc55bd" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="1e41c665-3968-4c2a-b3e1-b2ae6b225fdd" ownerguid="4275df2e-d4f6-461a-9279-39e0712dc082"> -<ExampleWords> -<AUni ws="en">appearance, looks, image, visage, features, countenance, profile</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the appearance of someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1e432fa6-e050-4192-87c1-8b98eb18ac65" ownerguid="e22d860a-d207-4649-8ab5-4592b838febb"> -<ExampleWords> -<AUni ws="en">whale, sperm whale, killer whale, blue whale, right whale, dolphin, porpoise</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What species of whales and dolphins are there?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1e44144f-e189-4097-a5db-98c0830825db" ownerguid="ac4f1bd6-8bd9-4c00-9d5e-e4b1cb59055b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="1e452b8b-fdf6-4ebd-ba25-ef78070fc359" ownerguid="de7a9f49-482c-45a6-82a7-b222fda78b7c"> -<Form> -<AUni ws="qvm-x-ach">alacrán; alacran</AUni> -<AUni ws="qvm-x-acl">alacrán; alacran</AUni> -<AUni ws="qvm-x-akh">alacrán; alacran</AUni> -<AUni ws="qvm-x-akl">alacrán; alacran</AUni> -<AUni ws="qvm-x-ame">alacrán; alacran</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="1e46d9b9-1d64-4f27-be0c-04a3a2a5b29c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">canta</AUni> -<AUni ws="qvm-x-acl">canta</AUni> -<AUni ws="qvm-x-akh">canta</AUni> -<AUni ws="qvm-x-akl">canta</AUni> -<AUni ws="qvm-x-ame">canta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+canta</AUni> -<AUni ws="qvm-x-acl">+canta</AUni> -<AUni ws="qvm-x-akh">+canta</AUni> -<AUni ws="qvm-x-akl">+canta</AUni> -<AUni ws="qvm-x-ame">+canta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.41" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0c6bd6f7-2787-45f5-a26b-29f68182e2fc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+canta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="58a33120-d221-43d4-af32-933f2259ce08" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="07b111e0-7e25-4b58-aea3-fdd82b62d316" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +canta 
\entryTyp root 
\gENG song 
\gSPN 
\e +canta 
\c N0 
\ach canta 
\akh canta 
\acl canta 
\akl canta 
\ame canta 
\mcc +canta / ~_ 1P.V YN?</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1e46ed08-e1f4-4320-bf0e-41cd5804d94c" ownerguid="ea17aba7-6d4e-4dbf-89ea-84a1b1c47647"> -<ExampleWords> -<AUni ws="en">expanded</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe a container that has been made big?</AUni> -</Question> -</rt> -<rt class="MoInflAffMsa" guid="1e4804b7-c62a-422f-b375-30094952accb" ownerguid="b5de92e2-0771-4446-b076-19342b7cc6cd"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="257de7fb-dab6-4b87-848b-3fbb8f5c3e04" t="r" /> -</Slots> -</rt> -<rt class="MoStemAllomorph" guid="1e4da206-0219-4f56-bba0-a9e618ca5dc8" ownerguid="9ffccad9-e445-41b8-b924-897bdee1eb58"> -<Form> -<AUni ws="qvm-x-ach">agtsalma</AUni> -<AUni ws="qvm-x-acl">agtsalma</AUni> -<AUni ws="qvm-x-akh">aqtsalma</AUni> -<AUni ws="qvm-x-akl">aqtsalma</AUni> -<AUni ws="qvm-x-ame">aqtsalma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="1e4daec2-7641-4a60-b0e0-25b4f250ba5f" ownerguid="ab80b556-2c7d-4e75-a58d-f5bb58b2feef"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="4fcb305a-f0a4-4d65-913e-de949df382e5" t="o" /> -<objsur guid="e39c50eb-60cd-4f36-a2e0-23dd104c0b57" t="o" /> -<objsur guid="6bbf02af-dd70-4407-9837-271d4e406f19" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="1e55062b-34b5-4ead-858b-0f3a9d76963e" ownerguid="42cc7fe5-c15d-4deb-85c2-1cadc4e18228"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="1e57b75a-93c6-4394-854b-f5b3d7ae21be" ownerguid="0537f54e-67e6-421d-9ab0-28ecccef1723"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="18487705-0e2c-42e4-902e-b5b57f49ce65" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">cast.spell</AUni> -<AUni ws="es">brujear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="99ac2583-b18d-4304-aa97-866e74d581c6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="1e57be76-81b2-4f82-ad26-e1a853a85acc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">iusanqui</AUni> -<AUni ws="qvm-x-acl">iusanqui; iusanqui; iusanque</AUni> -<AUni ws="qvm-x-akh">iwsanki</AUni> -<AUni ws="qvm-x-akl">iwsanki; iwsanki; iwsanke</AUni> -<AUni ws="qvm-x-ame">iwsanki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*iwsanki</AUni> -<AUni ws="qvm-x-acl">*iwsanki</AUni> -<AUni ws="qvm-x-akh">*iwsanki</AUni> -<AUni ws="qvm-x-akl">*iwsanki</AUni> -<AUni ws="qvm-x-ame">*iwsanki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.872" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d107f0d8-68ec-420b-831f-43675872174d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*iwsanki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="58d7f0a7-260a-4928-a20b-d23cba55ddce" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9c876278-ade9-48e6-adae-1d8e1700d60f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *iwsanki 
\entryTyp root 
\gENG hedgehog 
\gSPN puercoespín 
\e *iwsanki 
\c N0 
\mp +FinalI 
\ach iusanqui 
\akh iwsanki 
\acl iusanqui / _# 
\acl iusanqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl iusanque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl iwsanki / _# 
\akl iwsanki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl iwsanke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame iwsanki</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="1e583fad-633f-4c40-819a-3196950d9233" ownerguid="0fc9c27e-cf5d-49ba-b073-990cfc5ffe6b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" t="r" /> -</Morph> -<Msa> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="1e5abf5f-b384-435a-8353-ca903ef37c62"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pagchu</AUni> -<AUni ws="qvm-x-acl">pagchu; pagcho</AUni> -<AUni ws="qvm-x-akh">paqchu</AUni> -<AUni ws="qvm-x-akl">paqchu; paqcho</AUni> -<AUni ws="qvm-x-ame">paqchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*paqtru</AUni> -<AUni ws="qvm-x-acl">*paqtru</AUni> -<AUni ws="qvm-x-akh">*paqtru</AUni> -<AUni ws="qvm-x-akl">*paqtru</AUni> -<AUni ws="qvm-x-ame">*paqtru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.709" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0e28f1f2-a5dc-4634-96df-98673fe8bee2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*paqtru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="50c6c9d6-3c6b-4e7c-a05e-aa8b32aa8799" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="98b246b8-3373-4150-a3c5-2cad709b9461" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *paqtru 
\entryTyp root 
\gENG 
\gSPN 
\e *paqtru 
\c V1 
\ach pagchu 
\akh paqchu 
\acl pagchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pagcho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl paqchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl paqcho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame paqchu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1e5c56eb-0b35-498b-8c37-d56a8702b4b7" ownerguid="bb69d649-c392-464d-bb32-8cfae9e6df31"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="1e5fc686-33b9-42a2-a734-08fed4f70547" ownerguid="24996927-542b-4e10-a7cb-bc64930bb84f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">then</AUni> -<AUni ws="es">entonces</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="015ccf59-a66e-4001-8036-7c3724ec6594" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="1e610557-6345-45e3-a0bc-5c86b0eb3578" ownerguid="c81004a7-499e-4e05-84c8-3d74a17e97fd"> -<ExampleWords> -<AUni ws="en">clean, dirty, yellow, decayed, chipped, loose, worn, bad breath, food stuck between the teeth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used to describe the condition of your teeth?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1e6245da-fa8b-49a9-9a22-49a6aa3c73f4" ownerguid="738a09a5-59df-40f9-8a4e-176e00d03bbf"> -<ExampleWords> -<AUni ws="en">ammunition, bullet, projectile, shot, shell, cartridge, clip, pellet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words refer to things shot from weapons?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="1e6350d7-9fbd-41f7-915a-eb6d8e747e27" ownerguid="501dcdfc-ed38-44ad-a8bf-00e1d93b23ff"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pti</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pti</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pti</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b2772da-2fbd-4846-99c3-d3f919125916" t="r" /> -</Morph> -</rt> -<rt class="CmDomainQ" guid="1e66194f-27cd-4eb8-bcba-17f360afafd2" ownerguid="0539de86-f407-4b3d-b1b8-028822fb9f26"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Sorry? Pardon? Excuse me? What? What did you say? Would you mind repeating that? Could you say that again? Repeat after me.</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(6) What do you say when you want someone to repeat something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1e661dab-1225-4ad9-b13f-822d656c2862" ownerguid="c24f55f6-4e86-473c-b669-8d911b2307f7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="1e666e23-1269-4e27-95dd-06d44939b03a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wagru</AUni> -<AUni ws="qvm-x-acl">wagru; wagro</AUni> -<AUni ws="qvm-x-akh">waqru</AUni> -<AUni ws="qvm-x-akl">waqru; waqro</AUni> -<AUni ws="qvm-x-ame">waqru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waqru</AUni> -<AUni ws="qvm-x-acl">*waqru</AUni> -<AUni ws="qvm-x-akh">*waqru</AUni> -<AUni ws="qvm-x-akl">*waqru</AUni> -<AUni ws="qvm-x-ame">*waqru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.505" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8353e9dd-19c2-436e-b019-03de2781ecdd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waqru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e81eeda2-53fc-4950-bef8-d304449a125c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="288d1c25-7ae0-4822-aead-1ff2b40e59af" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waqru 
\entryTyp root 
\gENG gnaw 
\gSPN roer 
\e *waqru 
\c V2 
\ach wagru 
\akh waqru 
\acl wagru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wagro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl waqru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl waqro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame waqru</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="1e69cb1d-b951-49aa-9cfd-6770b0adf536" ownerguid="94ae196f-4dc0-4168-98c2-f14467cbda96"> -<Form> -<AUni ws="qvm-x-ach">ashac</AUni> -<AUni ws="qvm-x-acl">ashac</AUni> -<AUni ws="qvm-x-akh">ashak</AUni> -<AUni ws="qvm-x-akl">ashak</AUni> -<AUni ws="qvm-x-ame">ashak</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="1e6d0e27-b4f1-43d5-bae7-b5994590f66e" ownerguid="8562b03a-de13-4fed-bbd7-ee05d82cb818"> -<Form> -<AUni ws="qvm-x-ach">bautiza</AUni> -<AUni ws="qvm-x-acl">bautiza</AUni> -<AUni ws="qvm-x-akh">bautiza</AUni> -<AUni ws="qvm-x-akl">bautiza</AUni> -<AUni ws="qvm-x-ame">bautiza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1e728019-7349-4d3a-8a6e-0fd990c69735" ownerguid="a3f1d702-8ca1-457a-a569-eb6fdf696bbe"> -<ExampleWords> -<AUni ws="en">not approve, condemn, critical, critique, deprecate, disapprove of, disapproving, disqualify, frown on, invalidate, reject, take a dim view of, have a low opinion of, think badly of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to not approving of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1e742da0-e91a-433e-9b65-a123ca6c8565" ownerguid="9a9d59f7-defa-49e5-a722-30043de78eab"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">podar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c42b6c1b-370e-4de2-8ab0-e60c49d4ab4b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="1e75b86c-70d9-4e54-a587-da8b591d5247" ownerguid="d2ce7dd5-d5dd-4b16-b8c6-7ff7c7e1a0b7"> -<Form> -<AUni ws="qvm-x-ach">shimpa</AUni> -<AUni ws="qvm-x-acl">shimpa</AUni> -<AUni ws="qvm-x-akh">shimpa</AUni> -<AUni ws="qvm-x-akl">shimpa</AUni> -<AUni ws="qvm-x-ame">shimpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="1e7743e1-9108-4f56-8450-7c908507d477"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">watu</AUni> -<AUni ws="qvm-x-acl">watu; wato</AUni> -<AUni ws="qvm-x-akh">watu</AUni> -<AUni ws="qvm-x-akl">watu; wato</AUni> -<AUni ws="qvm-x-ame">watu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*watu.v</AUni> -<AUni ws="qvm-x-acl">*watu.v</AUni> -<AUni ws="qvm-x-akh">*watu.v</AUni> -<AUni ws="qvm-x-akl">*watu.v</AUni> -<AUni ws="qvm-x-ame">*watu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.576" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="97ec494e-cfa4-4af0-b99a-aca5c9adcbdf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*watu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="535a0085-7ecb-4bd4-a52f-e74ce8f4b21a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="579f9b85-27df-4edb-9625-173a2d526681" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *watu.v 
\entryTyp root 
\gENG visit 
\gSPN visitar 
\e *watu.v 
\c V2 
\ach watu 
\akh watu 
\acl watu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl watu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame watu 
\mcc *watu.v / ~_ PASS</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="1e78692d-2861-4ed1-954e-3dc46f90fc8a" ownerguid="216e816d-c432-4cd2-8157-c8ca240a3492"> -<Form> -<AUni ws="qvm-x-ach">bozal</AUni> -<AUni ws="qvm-x-acl">bozal</AUni> -<AUni ws="qvm-x-akh">bozal</AUni> -<AUni ws="qvm-x-akl">bozal</AUni> -<AUni ws="qvm-x-ame">bozal</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1e79abd1-6f05-48eb-acd8-79d08f3891ce" ownerguid="ca752706-1c9e-43e7-bd17-845c4736ccd8"> -<ExampleWords> -<AUni ws="en">inexact, inaccurate, sort of, kind of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is not exact?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1e7e4430-af20-4850-ab90-5a84f10e0c46" ownerguid="0546585f-d317-4279-8c7b-9286a128ad2e"> -<Form> -<AUni ws="qvm-x-ach">pachac</AUni> -<AUni ws="qvm-x-acl">pachac</AUni> -<AUni ws="qvm-x-akh">pachak</AUni> -<AUni ws="qvm-x-akl">pachak</AUni> -<AUni ws="qvm-x-ame">pachak</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="1e81b2d6-e9e0-4054-86b9-a176f4e651a5" ownerguid="22aba232-9fe9-4f6e-afda-41c40a29d3d8"> -<Form> -<AUni ws="qvm-x-ach">wagra</AUni> -<AUni ws="qvm-x-acl">wagra</AUni> -<AUni ws="qvm-x-akh">waqra</AUni> -<AUni ws="qvm-x-akl">waqra</AUni> -<AUni ws="qvm-x-ame">waqra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1e83c54d-a99e-4e94-826c-8a22e6163370" ownerguid="6e7d10f8-6da5-4a8a-a06d-952511194105"> -<ExampleWords> -<AUni ws="en">lighter, lightest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to being lighter than another thing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1e87ee51-abac-45ca-8c4c-a0fa3dec02b9" ownerguid="bc9d763c-e4fe-48ab-ad44-87a36f6cc06f"> -<ExampleWords> -<AUni ws="en">slam, pan, tear to shreds, pillory, do a hatchet job on, blast, castigate, condemn, damn, excoriate, execrate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to strongly criticizing someone or something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1e8ae6ad-888b-4dd1-ade8-d33bd17d6641" ownerguid="9f8b8c01-f790-469f-bc37-dece6227e276"> -<ExampleWords> -<AUni ws="en">simultaneous, synchronized, parallel, synchronous, contemporaneous, concurrent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe things that happen at the same time?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1e8c10a6-7869-4986-aa40-203151ad0582"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cose:cha</AUni> -<AUni ws="qvm-x-acl">cose:cha</AUni> -<AUni ws="qvm-x-akh">cose:cha</AUni> -<AUni ws="qvm-x-akl">cose:cha</AUni> -<AUni ws="qvm-x-ame">cose:cha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cosecha</AUni> -<AUni ws="qvm-x-acl">+cosecha</AUni> -<AUni ws="qvm-x-akh">+cosecha</AUni> -<AUni ws="qvm-x-akl">+cosecha</AUni> -<AUni ws="qvm-x-ame">+cosecha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.192" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8fff221d-0320-4926-b678-234d180e6af8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cosecha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3ddb10b2-71e4-415f-80fb-d9b26cd474e1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e14233c2-4026-4d5a-bfd0-2d9b309ff66f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cosecha 
\entryTyp root 
\gENG harvest 
\gSPN cosecha 
\e +cosecha 
\c N0 
\ach cose:cha 
\akh cose:cha 
\acl cose:cha 
\akl cose:cha 
\ame cose:cha</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="1e8c42f3-f8ef-4052-847c-0af4336ab3ca" ownerguid="f77172f4-dd8d-4624-9b2c-c0aaf9303635"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">camay</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">camay</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kamay</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kamay</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kamay</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f0b99234-0a2f-44c4-83ae-47801443b6b2" t="r" /> -</Morph> -<Msa> -<objsur guid="1829a081-bc32-4291-9767-5bec080e6a37" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="1e94e6a4-6fb3-4ade-9e3b-a34c77921726"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uyshe:ru</AUni> -<AUni ws="qvm-x-acl">uyshe:ru; uyshe:ru; uyshe:ro</AUni> -<AUni ws="qvm-x-akh">uyshe:ru</AUni> -<AUni ws="qvm-x-akl">uyshe:ru; uyshe:ru; uyshe:ro</AUni> -<AUni ws="qvm-x-ame">uyshe:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+uyshi:ru</AUni> -<AUni ws="qvm-x-acl">+uyshi:ru</AUni> -<AUni ws="qvm-x-akh">+uyshi:ru</AUni> -<AUni ws="qvm-x-akl">+uyshi:ru</AUni> -<AUni ws="qvm-x-ame">+uyshi:ru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.312" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e1eaff48-f1f7-4835-8ef7-33a23ca79067" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+uyshi:ru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d6653890-8f34-4609-9089-c180d7e0e699" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8b54800f-4bc2-41cd-9b17-a3a9e0e56763" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +uyshi:ru 
\entryTyp root 
\gENG sheepherder 
\gSPN pastor 
\e +uyshi:ru 
\c N0 
\ach uyshe:ru 
\akh uyshe:ru 
\acl uyshe:ru / _# 
\acl uyshe:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl uyshe:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl uyshe:ru / _# 
\akl uyshe:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl uyshe:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame uyshe:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1e994044-d580-4b55-a720-5c20fc2d96e5" ownerguid="61cb6bcd-2767-4c9c-88b9-559308894147"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">gaviota</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3ca847fe-b27b-4f52-a0a5-f7ed5c193ad1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="1e9a0881-f715-4057-9af8-251cb8eec9da" ownerguid="9efa7949-de15-499a-b382-4560e06c4fb4"> -<Abbreviation> -<AUni ws="en">3.5.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a person's voice and the way it sounds--the kind of sound a person makes when they speak or sing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Voice</AUni> -</Name> -<Questions> -<objsur guid="eb65c1a9-c43a-45ec-865f-f306f012911a" t="o" /> -<objsur guid="6ecaf667-971f-499f-a970-eb6eec8197d1" t="o" /> -<objsur guid="12275890-a641-49a9-a91c-cf6c8b125cc4" t="o" /> -<objsur guid="1792765d-98c0-4add-9e65-6cb388944600" t="o" /> -<objsur guid="5fa15bf1-c2d4-4dde-8e49-483dd96f35bb" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="acf5e294-d169-45c1-a9d3-960536e018cc" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="8c7da1d1-d7d7-470c-b6a3-edefb0e9a4d2" t="o" /> -<objsur guid="9612bdd6-15cb-4269-aaf9-481c7b35b5dd" t="o" /> -<objsur guid="b2fa4109-1165-4c1f-9613-c5b2d349d2d4" t="o" /> -<objsur guid="78b0ad1b-0766-41ba-b788-d176addd5e9f" t="o" /> -<objsur guid="f5642647-9b9c-499b-a66e-349593c863f1" t="o" /> -<objsur guid="e482bb5a-5a32-4bc5-a0de-32cbe0aa7908" t="o" /> -<objsur guid="e96f6860-0914-4324-9c49-48f24a0ff7f1" t="o" /> -<objsur guid="8f779877-7d86-4683-8a8b-298c7fc62815" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="1e9c5a92-99e6-4a2f-bdc3-453aa166b4b6" ownerguid="bccdcdc6-081c-4475-bcc8-cf3719d6bd51"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">light</AUni> -<AUni ws="es">prender</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ee397f50-b8fb-432a-ae42-0ead2a7609f6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="1e9ca312-b361-409f-ad1b-e652b5357749" ownerguid="615674ac-8158-4089-ae70-b55472fd279b"> -<ExampleWords> -<AUni ws="en">age, how old</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the age of something?</AUni> -</Question> -</rt> -<rt class="Segment" guid="1e9d9cbb-c30a-4242-8f75-a03d1ad3df77" ownerguid="a30d2287-d368-4ac8-839e-634193ad6567"> -<Analyses> -<objsur guid="1e2f084c-71ac-42d4-8200-995f1be5d2c4" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="CmDomainQ" guid="1e9e05d0-18d1-4546-a27d-03ab936b5e5c" ownerguid="aec8c246-0ef7-414a-94a6-b9fdd6812a7c"> -<ExampleWords> -<AUni ws="en">classless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe a society that is not divided into classes?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1e9e75c2-f4dd-445c-b0c8-5ecd45c4423e" ownerguid="e7f94aea-ba50-481d-b640-d5cd8bdedc72"> -<ExampleWords> -<AUni ws="en">kidney stone, pass (a kidney stone)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a kidney stone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1ea93998-be9c-4ae6-b87a-1279a5c89619" ownerguid="af8b0d9b-2175-4995-a70d-c58ea78c9b27"> -<Form> -<AUni ws="qvm-x-ach">cuti</AUni> -<AUni ws="qvm-x-acl">cuti; cute</AUni> -<AUni ws="qvm-x-akh">kuti</AUni> -<AUni ws="qvm-x-akl">kuti; kute</AUni> -<AUni ws="qvm-x-ame">kuti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1ea93e35-d39b-4eee-8b02-6f3d93b302d0" ownerguid="aa57936d-f8a9-4603-8c3d-27abccd13531"> -<ExampleWords> -<AUni ws="en">conserve, conservation, recycle, biodegradable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to protecting the environment?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1ea9aeb3-3556-47b0-b1c0-adcb9e3589d2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maldicia:du</AUni> -<AUni ws="qvm-x-acl">maldicia:du; maldicia:du; maldicia:do</AUni> -<AUni ws="qvm-x-akh">maldicia:du</AUni> -<AUni ws="qvm-x-akl">maldicia:du; maldicia:du; maldicia:do</AUni> -<AUni ws="qvm-x-ame">maldicia:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+maldiciado</AUni> -<AUni ws="qvm-x-acl">+maldiciado</AUni> -<AUni ws="qvm-x-akh">+maldiciado</AUni> -<AUni ws="qvm-x-akl">+maldiciado</AUni> -<AUni ws="qvm-x-ame">+maldiciado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.275" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c6e27b1f-787e-41bc-b1df-fc071d5a4e92" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+maldiciado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="14a07949-5fcd-4ef4-81a4-e387caf7c98a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="28608180-c4e7-4ec0-bf68-332e5ec93289" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +maldiciado 
\entryTyp root 
\gENG 
\gSPN 
\e +maldiciado 
\c N0 
\mp -underlong -foreshortens -mlowers 
\ach maldicia:du 
\akh maldicia:du 
\acl maldicia:du / _# 
\acl maldicia:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl maldicia:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl maldicia:du / _# 
\akl maldicia:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl maldicia:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame maldicia:du</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1eaa616c-fc5a-46ea-9aa0-05cc3d4f42de" ownerguid="65726302-2917-4638-bf41-cdb5cd3de093"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">entire</AUni> -<AUni ws="es">entero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="381bf2e6-855d-44dc-b291-fd3048259cc4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="1eabd857-bd45-43c3-bb24-033f26320ed3" ownerguid="8fff393a-23c2-42bb-8da8-9b151e790904"> -<ExampleWords> -<AUni ws="en">geriatric, senior</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe something to do with old people?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1eac5b4a-916f-41b8-9a5a-0ff246157159" ownerguid="95315cd7-fc3b-4467-af09-705d1c964552"> -<Form> -<AUni ws="qvm-x-ach">pinta</AUni> -<AUni ws="qvm-x-acl">pinta</AUni> -<AUni ws="qvm-x-akh">pinta</AUni> -<AUni ws="qvm-x-akl">pinta</AUni> -<AUni ws="qvm-x-ame">pinta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1eaca672-7d23-49b5-856c-2e2544d66911" ownerguid="985f099d-f38c-4957-907a-769d1a45ca10"> -<ExampleWords> -<AUni ws="en">steady, firm, stable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that is difficult to move?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="1eaccd6e-d5e5-41c6-96f4-b581e9a81f01" ownerguid="604ab9e6-0ad7-4a0d-b166-5d7150d8e6c9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="1eaea8cf-295c-4793-82a6-8d6d1a4101b3" ownerguid="6c54f0b0-b056-4090-b3f0-d5ec6710d4ab"> -<ExampleWords> -<AUni ws="en">lower</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making something low?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1eafddce-8f98-461c-b552-2b745dcafdfe" ownerguid="18b3ca02-18fe-4ab5-8709-c20957a0a2fb"> -<ExampleWords> -<AUni ws="en">pride, sense of achievement, aloofness, arrogance, audacity, conceit, egotism, flashiness, haughtiness, hauteur, loftiness, ostentation, pretension, self-importance, self-respect, self-will, showiness, snobbery, snobbishness, vanity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to the quality of being proud?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1eb30c47-b5e5-4294-bec9-77e9f3af43aa" ownerguid="5332c42f-b44c-48a8-84cc-c9be572133f7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1eb83b5f-7031-42c2-8f04-0be6fcceef6f" ownerguid="4a8c6c2e-7a8f-4dd6-97d3-20a35d7d10e9"> -<ExampleWords> -<AUni ws="en">bow, prostrate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a posture of giving honor?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1eb9a757-44da-4251-b252-6d2a43697a93" ownerguid="ad154560-7c01-42c5-827a-c582941b0faa"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="1ebdec50-63b7-4640-975d-4a46e9e1d7f1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ya:</AUni> -<AUni ws="qvm-x-acl">ya:</AUni> -<AUni ws="qvm-x-akh">ya:</AUni> -<AUni ws="qvm-x-akl">ya:</AUni> -<AUni ws="qvm-x-ame">ya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ya.1</AUni> -<AUni ws="qvm-x-acl">+ya.1</AUni> -<AUni ws="qvm-x-akh">+ya.1</AUni> -<AUni ws="qvm-x-akl">+ya.1</AUni> -<AUni ws="qvm-x-ame">+ya.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.780" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a394be8b-417e-4fba-84e4-5bd36bb18aa8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ya.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5f305fc9-a07c-4c6a-8602-2d49ae586f86" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9c594a4a-2c7a-44e7-9b53-0261a0190024" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ya.1 
\entryTyp root 
\gENG 
\gSPN 
\e +ya.1 
\c ONSHEV 
\mp NeverForeshortened 
\ach ya: 
\akh ya: 
\acl ya: 
\akl ya: 
\ame ya: 
\mp +FinalC 
\mp +FinalLength 
\i LUK 16.4 ¡A yä, kanan imata ruranäpaqpis musyänami!</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="1ec11352-4001-4c0e-9746-549a1525b19b" ownerguid="2d84d914-77fd-4ef1-9c30-8920db9bd166"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="486b870b-8df9-468d-870b-8a631c3eab5e" t="o" /> -<objsur guid="0a68028f-7bf1-4084-93b0-a79fbd9d7ddb" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="1ec14648-c92e-4ac1-8649-0e9f54e0136f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">turi</AUni> -<AUni ws="qvm-x-acl">turi; turi; ture</AUni> -<AUni ws="qvm-x-akh">turi</AUni> -<AUni ws="qvm-x-akl">turi; turi; ture</AUni> -<AUni ws="qvm-x-ame">turi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*turi</AUni> -<AUni ws="qvm-x-acl">*turi</AUni> -<AUni ws="qvm-x-akh">*turi</AUni> -<AUni ws="qvm-x-akl">*turi</AUni> -<AUni ws="qvm-x-ame">*turi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.17" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5b7b15b7-233f-4c40-a4f8-3d269b599087" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*turi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cb98d95c-4b52-49cb-adcf-420fe8a6133d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4a44f341-5690-4922-a7d4-7539abfd83be" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *turi 
\entryTyp root 
\gENG brother 
\gSPN hermano 
\e *turi 
\c N0 
\mp +FinalI 
\ach turi 
\akh turi 
\acl turi / _# 
\acl turi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ture +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl turi / _# 
\akl turi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ture +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame turi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="1ec1b06e-41d5-45d6-ac8a-7d749b1d8d2e" ownerguid="44710b2b-dbd3-4cfd-abe6-cebf7e5605f9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">scarecrow</AUni> -<AUni ws="es">espantapájaros</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c9610bc9-b4a4-49c8-bae6-184d4afe53d5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="1ec2677e-e1d1-46bf-bb5c-03a58b5e96b5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lushqui</AUni> -<AUni ws="qvm-x-acl">lushqui; lushqui; lushque</AUni> -<AUni ws="qvm-x-akh">lushki</AUni> -<AUni ws="qvm-x-akl">lushki; lushki; lushke</AUni> -<AUni ws="qvm-x-ame">lushki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llushki.n</AUni> -<AUni ws="qvm-x-acl">*llushki.n</AUni> -<AUni ws="qvm-x-akh">*llushki.n</AUni> -<AUni ws="qvm-x-akl">*llushki.n</AUni> -<AUni ws="qvm-x-ame">*llushki.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.235" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="73a0b1b0-9ade-454a-a1dc-26afbc001357" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llushki.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b23abbad-ecf7-48cd-805e-0e5bb2edbfc9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6a0e3f61-b144-472b-b606-c4787d32b16f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llushki.n 
\entryTyp root 
\gENG 
\gSPN maíz.pelado 
\e *llushki.n 
\c N0 
\mp +FinalI 
\ach lushqui 
\akh lushki 
\acl lushqui / _# 
\acl lushqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lushque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lushki / _# 
\akl lushki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lushke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lushki</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="1ec7e01b-c1fb-4401-ad08-f4c31304e863"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wasarima</AUni> -<AUni ws="qvm-x-acl">wasarima</AUni> -<AUni ws="qvm-x-akh">wasarima</AUni> -<AUni ws="qvm-x-akl">wasarima</AUni> -<AUni ws="qvm-x-ame">wasarima</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*washarima.v</AUni> -<AUni ws="qvm-x-acl">*washarima.v</AUni> -<AUni ws="qvm-x-akh">*washarima.v</AUni> -<AUni ws="qvm-x-akl">*washarima.v</AUni> -<AUni ws="qvm-x-ame">*washarima.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.546" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d31e1e1c-1ff8-4126-9066-ca6969a866eb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*washarima.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="50ff70b8-816c-439e-b116-c48a8d370f11" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5bd5d479-f6cc-4579-af4e-ef08ae9950fe" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *washarima.v 
\entryTyp root 
\gENG slander 
\gSPN rinsilla 
\e *washarima.v 
\c V1 
\ach wasarima 
\akh wasarima 
\acl wasarima 
\akl wasarima 
\ame wasarima</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="1ec85151-eba0-48f4-b56d-4f8040602a4b" ownerguid="1c3c8af0-56b9-4617-862e-21f39b388606"> -<Abbreviation> -<AUni ws="en">2.6.6.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to inheriting something from your parents after they die.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Inherit</AUni> -</Name> -<OcmCodes> -<Uni>428 Inheritance</Uni> -</OcmCodes> -<Questions> -<objsur guid="11a9ae4a-4348-4a12-89b6-ab4fba7e692f" t="o" /> -<objsur guid="9e198146-76bf-4ef2-bcad-b34a84a85e25" t="o" /> -<objsur guid="83dd800a-c4e7-410b-9bf0-749ed4846544" t="o" /> -<objsur guid="12ea5f4c-8b0d-480d-87c0-e1093d36c342" t="o" /> -<objsur guid="5d93fda1-ef72-4d8c-a081-88ace7465fa7" t="o" /> -<objsur guid="58a98f7e-990d-40af-a8cd-42aca051c7e6" t="o" /> -<objsur guid="e7607961-9e75-4817-a595-42bf52a620e5" t="o" /> -<objsur guid="8fac961a-685c-4efd-9735-1912e50dc944" t="o" /> -<objsur guid="f0b73104-37bb-4f78-937f-4d55e8e1b3e5" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="1ec96eaa-a0cc-4d13-b796-22eb2e274ef4" ownerguid="5952f6aa-ac17-4f7d-a1fc-001c7f5c1bf4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="1ecaa461-65c8-43d1-bb98-ae2c4b4f7ef8" ownerguid="c926057e-1c0a-4806-bfea-04505812bd6e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">juc</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">juc</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">juk</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">juk</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">huk</Run> -</AStr> -</Form> -<Morph> -<objsur guid="64a6c739-49a9-41ef-b000-1c2aceb30fc1" t="r" /> -</Morph> -<Msa> -<objsur guid="4f8f8fdd-f3f4-45d3-bfda-babfb57eb81a" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="1ecc2012-5762-44cd-91d6-34e3ba2857fa" ownerguid="0cc62b4a-d5ff-4f45-83d1-e2b46e5d159a"> -<ExampleWords> -<AUni ws="en">late at night, the early hours of the morning (2-4), the small hours, the wee hours of the morning, the first watch, the second watch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to the time between midnight and dawn?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1ecdd7ca-47cf-4594-91fa-23b6f68e18a9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">calambri; calambre</AUni> -<AUni ws="qvm-x-acl">calambri; calambri; calambre</AUni> -<AUni ws="qvm-x-akh">calambri; calambre</AUni> -<AUni ws="qvm-x-akl">calambri; calambri; calambre</AUni> -<AUni ws="qvm-x-ame">calambri; calambre</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+calambre</AUni> -<AUni ws="qvm-x-acl">+calambre</AUni> -<AUni ws="qvm-x-akh">+calambre</AUni> -<AUni ws="qvm-x-akl">+calambre</AUni> -<AUni ws="qvm-x-ame">+calambre</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.21" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d2f0343a-fa2f-4582-bca5-0c0c5860787d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+calambre</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="50f9fc8b-72c2-4833-a848-4ee474565a3b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="168faaf0-7842-459e-a741-b5e337b0e1f0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +calambre 
\entryTyp root 
\gENG cramp 
\gSPN calambre 
\e +calambre 
\c N0 
\mp +FinalI 
\ach calambri / ~_# 
\ach calambre / _# 
\akh calambri / ~_# 
\akh calambre / _# 
\acl calambri / ~_# 
\acl calambri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl calambre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl calambri / ~_# 
\akl calambri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl calambre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame calambri / ~_# 
\ame calambre / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="1ed50cb8-fafa-40f8-ae0c-a36a1fbfce79" ownerguid="907bfaf8-f715-47a4-a663-8878d628cdc3"> -<Form> -<AUni ws="qvm-x-ach">azotea</AUni> -<AUni ws="qvm-x-acl">azotea</AUni> -<AUni ws="qvm-x-akh">azotea</AUni> -<AUni ws="qvm-x-akl">azotea</AUni> -<AUni ws="qvm-x-ame">azotea</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1ed54941-0ece-42bc-99c9-7a744f29fb78" ownerguid="879e66bc-af29-4fe4-86e0-0047973a57d6"> -<ExampleWords> -<AUni ws="en">walker, cane, crutch, walking stick, wheelchair</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What things do people use to help them walk?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1ed780f9-7df9-40ec-88e0-ba593b38b8ed" ownerguid="bfa3be74-0390-4e2e-bdb7-ed41eb67e4f1"> -<ExampleWords> -<AUni ws="en">raindrop, drop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What is a single drop of rain?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1ed96ec7-2ce8-45cc-a77a-7ceae1d401b5" ownerguid="5e0faf19-8717-4dab-bf6f-c4225a3844b2"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="1edb177d-0268-4235-9863-21a7d20900ac" ownerguid="10d5870a-afb3-45d9-b12a-c7d1eb907007"> -<Form> -<AUni ws="qvm-x-ach">löbu</AUni> -<AUni ws="qvm-x-acl">löbu; löbu; löbo</AUni> -<AUni ws="qvm-x-akh">löbu</AUni> -<AUni ws="qvm-x-akl">löbu; löbu; löbo</AUni> -<AUni ws="qvm-x-ame">löbu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="1eddf116-849a-4080-9bbf-c8616cbf8147" ownerguid="fa972d1b-4e6a-4e70-8f2a-388f86594be6"> -<Form> -<AUni ws="qvm-x-ach">chä</AUni> -<AUni ws="qvm-x-acl">chä</AUni> -<AUni ws="qvm-x-akh">chä</AUni> -<AUni ws="qvm-x-akl">chä</AUni> -<AUni ws="qvm-x-ame">chä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmPossibilityList" guid="1ee09905-63dd-4c7a-a9bd-1d496743ccd6" ownerguid="af26d792-ea5e-11de-8f7e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">EntTyp</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:6.269" /> -<DateModified val="2018-8-2 16:32:6.269" /> -<Depth val="127" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="False" /> -<IsVernacular val="False" /> -<ItemClsid val="5118" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Complex Form Types</AUni> -</Name> -<Possibilities> -<objsur guid="fec038ed-6a8c-4fa5-bc96-a4f515a98c50" t="o" /> -<objsur guid="1f6ae209-141a-40db-983c-bee93af0ca3c" t="o" /> -<objsur guid="73266a3a-48e8-4bd7-8c84-91c730340b7d" t="o" /> -<objsur guid="98c273c4-f723-4fb0-80df-eede2204dfca" t="o" /> -<objsur guid="b2276dec-b1a6-4d82-b121-fd114c009c59" t="o" /> -<objsur guid="35cee792-74c8-444e-a9b7-ed0461d4d3b7" t="o" /> -<objsur guid="9466d126-246e-400b-8bba-0703e09bc567" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="True" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="MoStemMsa" guid="1ee17e07-0d29-4fd0-9838-4bc879945d44" ownerguid="77b9bfa4-e806-406a-a1cf-779dffc5e18e"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="1ee7bae5-1414-4f2e-ac5e-ce5178a628ec"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jauna</AUni> -<AUni ws="qvm-x-acl">jauna</AUni> -<AUni ws="qvm-x-akh">jawna</AUni> -<AUni ws="qvm-x-akl">jawna</AUni> -<AUni ws="qvm-x-ame">hawna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hawana.n</AUni> -<AUni ws="qvm-x-acl">*hawana.n</AUni> -<AUni ws="qvm-x-akh">*hawana.n</AUni> -<AUni ws="qvm-x-akl">*hawana.n</AUni> -<AUni ws="qvm-x-ame">*hawana.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.690" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e3e5abc0-ad89-4eb2-ae91-1b26ff2dc6a6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hawana.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3fd1ffe4-4890-44ba-97a7-68712a2d7b50" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d175aeb4-7377-4326-b8ec-c3a567061eb4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hawana.n 
\entryTyp root 
\gENG 
\gSPN almohada 
\e *hawana.n 
\c N0 
\ach jauna 
\akh jawna 
\acl jauna 
\akl jawna 
\ame hawna</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1ee8013e-c0a4-4310-bd9c-4e70f252b061" ownerguid="76dce78c-855d-41e5-9867-8fdccae9465f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="1eeb6be6-0578-42d4-8555-83f1cfb1b540" ownerguid="a39fec65-5ada-4bf8-b219-93ba7d47ff87"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="d8e1a4a5-f1bd-4b2f-9aed-13944bae58f5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="1ef00125-728f-4249-a81c-de760a5de8ef" ownerguid="b0e3486c-bd3d-4b5c-be9a-40cd2c0ce2a1"> -<ExampleWords> -<AUni ws="en">plait, braid</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to plaiting the hair?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1ef13f4d-cef0-44eb-94c8-2969c6700aa6" ownerguid="cf0ac4da-df0e-47ff-bb56-2d20ec9e5f87"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">God</AUni> -<AUni ws="es">Dios</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ba646443-df49-4855-826c-b3d58f83799f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="1ef4f624-13c2-4b63-b151-4e74f4ec307c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">incu</AUni> -<AUni ws="qvm-x-acl">incu; incu; inco</AUni> -<AUni ws="qvm-x-akh">inku</AUni> -<AUni ws="qvm-x-akl">inku; inku; inko</AUni> -<AUni ws="qvm-x-ame">inku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*inku</AUni> -<AUni ws="qvm-x-acl">*inku</AUni> -<AUni ws="qvm-x-akh">*inku</AUni> -<AUni ws="qvm-x-akl">*inku</AUni> -<AUni ws="qvm-x-ame">*inku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.822" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="158247a4-68f4-4e16-bd29-fec5e811ba91" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*inku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d737317c-6eae-4f8a-82ff-3eb7b5b000b6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="70b725f6-95fa-4d91-bb93-f54143630811" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *inku 
\entryTyp root 
\gENG stunted.child 
\gSPN niño.desnutrido 
\e *inku 
\c N0 
\ach incu 
\akh inku 
\acl incu / _# 
\acl incu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl inco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl inku / _# 
\akl inku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl inko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame inku</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="1ef67c9d-bc95-4723-ab8d-8f88aff8d453" ownerguid="ec3db861-a8b0-47b5-a12b-ef9a8a37dfaf"> -<Form> -<AUni ws="qvm-x-ach">profesional</AUni> -<AUni ws="qvm-x-acl">profesional</AUni> -<AUni ws="qvm-x-akh">profesional</AUni> -<AUni ws="qvm-x-akl">profesional</AUni> -<AUni ws="qvm-x-ame">profesional</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="1efaf16c-79c2-436c-b3ed-44622e265b50"> -<Analyses> -<objsur guid="f77fd6a4-0a27-4b86-8744-6616143af5e7" t="o" /> -</Analyses> -<Checksum val="-2117567722" /> -<Form> -<AUni ws="qvm-x-akh">kutirqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="1efc3f18-182b-4544-b4d4-b5693af9cb69" ownerguid="2f151c35-72e1-4665-bc05-6fc70a3ecff2"> -<ExampleWords> -<AUni ws="en">not good-looking, plain, homely, not much to look at, unattractive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is not good looking?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1eff2a79-ba7e-4a9b-b319-a660e4fa2d69" ownerguid="5c091d8d-5bc4-40c3-8a30-2a08fb0794b8"> -<ExampleWords> -<AUni ws="en">exorcist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What people deal with unusual states of consciousness?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1f012570-3ca4-4030-ab61-99e6e57064dd" ownerguid="f6c6d931-47ff-499a-8f5c-fe587d46d78d" /> -<rt class="CmDomainQ" guid="1f033a1a-7246-4d7d-a6f3-43696ce08e73" ownerguid="f7706644-542f-4fcb-b8e1-e91d04c8032a"> -<ExampleWords> -<AUni ws="en">condition, state, shape (as in 'to be in shape')</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to the condition of the body?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1f068f84-0949-4b94-b724-6f53acb1675f" ownerguid="8503660c-03af-49ee-86b6-525aab4da828"> -<ExampleWords> -<AUni ws="en">hear, overhear</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to hearing something?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="1f0a4119-c98b-49ab-8f21-3becf5f634d7" ownerguid="c8134c1c-e189-414e-b9be-4dcbfb484e29"> -<Form> -<AUni ws="qvm-x-ach">tsä</AUni> -<AUni ws="qvm-x-acl">tsä</AUni> -<AUni ws="qvm-x-akh">tsä</AUni> -<AUni ws="qvm-x-akl">tsä</AUni> -<AUni ws="qvm-x-ame">tsä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="1f0b8038-e9da-4275-98da-bc5699190b8b" ownerguid="79eb8229-3c23-4396-979d-b6911f63feda"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="1f0f411b-2502-4c42-a75e-55a09d0d9e08"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fundi</AUni> -<AUni ws="qvm-x-acl">fundi; funde</AUni> -<AUni ws="qvm-x-akh">fundi</AUni> -<AUni ws="qvm-x-akl">fundi; funde</AUni> -<AUni ws="qvm-x-ame">fundi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fundir</AUni> -<AUni ws="qvm-x-acl">+fundir</AUni> -<AUni ws="qvm-x-akh">+fundir</AUni> -<AUni ws="qvm-x-akl">+fundir</AUni> -<AUni ws="qvm-x-ame">+fundir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.589" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="405cd9d3-240c-420b-95c7-82d9c5cddec5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fundir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bb5bb5ee-66cb-4201-889e-bf7aa26534a3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="caabaa05-0c3a-4ed9-9679-d36236d07258" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fundir 
\entryTyp root 
\gENG cast 
\gSPN fundir 
\e +fundir 
\c V1 
\mp +FinalI 
\ach fundi 
\akh fundi 
\acl fundi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl funde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl fundi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl funde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame fundi</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="1f12f59b-d3b2-40cc-ac06-70229e3883d0" ownerguid="fbd7f989-f155-4a9c-9573-24146b38e522"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="584648d2-3486-4760-8b35-deb528e8b310" t="o" /> -<objsur guid="5fb8aed6-861a-4f3b-9b1c-d920ad2482b3" t="o" /> -<objsur guid="74dcb73f-817b-413d-a50e-5ede68a074ba" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="1f14932d-1bfa-4097-8adf-9b2fd9513672" ownerguid="2f33b4f7-25dd-447b-b1c7-354c295a270d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="1f170500-3a55-4f4d-aa23-c01d9540c88f" ownerguid="00b4f363-0289-4b25-8abb-6ef9518566d7"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="2df96298-2f3a-468c-aab3-a01729bb3812" t="o" /> -<objsur guid="332d0ed2-cf02-4432-87a3-9c9022aa528e" t="o" /> -<objsur guid="9238d66f-e2fa-4ced-87b4-050a53e00f11" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="1f195274-5596-4e32-96a1-a1946fb984a7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yarpa; yarpa:</AUni> -<AUni ws="qvm-x-acl">yarpa; yarpa:</AUni> -<AUni ws="qvm-x-akh">yarpa; yarpa:</AUni> -<AUni ws="qvm-x-akl">yarpa; yarpa:</AUni> -<AUni ws="qvm-x-ame">yarpa; yarpa:</AUni> -</Custom> -<AlternateForms> -<objsur guid="887ae17a-ced7-4093-8e19-bf260b43d5a9" t="o" /> -</AlternateForms> -<CitationForm> -<AUni ws="qvm-x-ach">*yarpa:.v2</AUni> -<AUni ws="qvm-x-acl">*yarpa:.v2</AUni> -<AUni ws="qvm-x-akh">*yarpa:.v2</AUni> -<AUni ws="qvm-x-akl">*yarpa:.v2</AUni> -<AUni ws="qvm-x-ame">*yarpa:.v2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.757" /> -<DateModified val="2022-10-27 20:43:10.30" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="15f7b62a-a17b-41ac-b56e-85186914954c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yarpa:.v2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7440cecd-7493-4b9e-86fd-dbf27ad2bfed" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="447e4c18-5a93-41fa-8398-831d8db8431e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yarpa:.v2 
\entryTyp root 
\gENG remember 
\gSPN recordar 
\e *yarpa:.v2 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach yarpa foreshortened 
\ach yarpa: 
\akh yarpa foreshortened 
\akh yarpa: 
\acl yarpa foreshortened 
\acl yarpa: 
\akl yarpa foreshortened 
\akl yarpa: 
\ame yarpa foreshortened 
\ame yarpa: 
\mcc *yarpa:.v2 / ~_ INF 
\mcc *yarpa:.v2 / ~_ PST 
\mcc *yarpa:.v2 / _... [trans] 
\mcc *yarpa:.v2 / ~_ CAUS</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1f1fdd6c-16b5-4b75-8ff5-0083cbc26fe8" ownerguid="dbebc3bd-2d01-4d62-a009-866c18ee3527"> -<ExampleWords> -<AUni ws="en">abortion, abort, have an abortion, terminate a pregnancy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to killing a baby before birth?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1f207b7e-46fe-43f4-a951-904dfa6b243b" ownerguid="23baedce-4764-43e2-9bfc-4a2837bd46b2"> -<Form> -<AUni ws="qvm-x-ach">kerosëni; kerosëni</AUni> -<AUni ws="qvm-x-acl">kerosëni; kerosëni; kerosëne</AUni> -<AUni ws="qvm-x-akh">kerosëni; kerosëni</AUni> -<AUni ws="qvm-x-akl">kerosëni; kerosëni; kerosëne</AUni> -<AUni ws="qvm-x-ame">kerosëni; kerosëni</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="1f20a5b5-2482-451e-b1f0-ee147ef781bb" ownerguid="529140d1-6e8e-44fe-99f0-95289e933607"> -<ExampleWords> -<AUni ws="en">genetics, inherit, heredity, run in the family, pass on, take after, bad blood, genes, breeding</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to inheriting physical traits from your ancestors?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="1f20f638-b2ce-49ae-aaa6-6c30b3145a8b" ownerguid="58583978-a4d6-4e42-9a14-2dc0a27e7b2c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">NAM 3.13 Soldäduyquicunapis pasaypa warmïshumi canga.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiAnalysis" guid="1f2173bf-8e27-4cb2-a28a-2ec98728541d" ownerguid="4bcf81e9-1edc-4872-a8d3-b0f710b56b30"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="afc021e0-6e80-4f6e-8de4-37813f7aede6" t="o" /> -<objsur guid="25dbe766-6fb3-48a4-b82a-862169ec4c70" t="o" /> -<objsur guid="d313b48c-75fd-4ab8-96c9-bb5bdec538ab" t="o" /> -<objsur guid="cb9586fd-055e-453d-bec8-7c59e6141963" t="o" /> -<objsur guid="375634ea-aea9-482b-ad17-ec516f497790" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="1f23990c-bafd-49dd-b996-d3280fcabc73" ownerguid="cb522575-344f-447c-bdf4-32e2ebfea8f5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="2fb2f317-3aa1-47ac-95e5-7b76ad3cac69" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="6d3ab4e1-7d8b-4ec2-a2b4-b76eeaef52de" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="1f24c267-6a42-42fa-969d-3a8cf9a1aff4" ownerguid="bc27752e-66ee-4878-8dc1-2185801096d4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="1f24d51d-13b2-4fca-82bc-3044bd814118" ownerguid="6cc0a0cb-41c5-4378-b254-de5460846a10"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="1f274cd5-6d8a-4e22-b22d-93d08989aaef" ownerguid="6bf7ceaa-d5fb-45fa-bfde-a66a8e8d0d33"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="1f3519f8-d946-4857-a1fd-553d98dddf6d" ownerguid="7185bd93-5281-46de-80af-767f0ec40ff6"> -<Abbreviation> -<AUni ws="en">3.2.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.94" /> -<DateModified val="2022-9-23 16:55:8.94" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that describe a person who does not think well.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>32E Lack of Capacity for Understanding</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Stupid</AUni> -</Name> -<Questions> -<objsur guid="feb8ea53-38a6-4f1d-a501-8702b2bd9cda" t="o" /> -<objsur guid="9a30535e-f048-43cd-9d28-f221d7d14371" t="o" /> -<objsur guid="8d4284bd-ea19-458b-ab42-912932c77a5e" t="o" /> -<objsur guid="05deb42d-939f-4532-aef8-ef710880c23d" t="o" /> -<objsur guid="82f4a90a-e58b-421b-8469-c35cbac6f965" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="1f35e65f-3896-490f-adae-33d6f5bf66f9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">comi:nus</AUni> -<AUni ws="qvm-x-acl">comi:nus</AUni> -<AUni ws="qvm-x-akh">comi:nus</AUni> -<AUni ws="qvm-x-akl">comi:nus</AUni> -<AUni ws="qvm-x-ame">comi:nus</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cominos</AUni> -<AUni ws="qvm-x-acl">+cominos</AUni> -<AUni ws="qvm-x-akh">+cominos</AUni> -<AUni ws="qvm-x-akl">+cominos</AUni> -<AUni ws="qvm-x-ame">+cominos</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.152" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="465ba383-0cc4-4594-8094-7c3503ecc432" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cominos</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="125ec8a5-7f85-4e68-9047-d0a5a0bbf67f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2ccbca8d-4cbb-49fa-ab8f-ff9b3e874ecf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cominos 
\entryTyp root 
\gENG ? 
\gSPN comino 
\e +cominos 
\c N0 
\mp +FinalC 
\ach comi:nus 
\akh comi:nus 
\acl comi:nus 
\akl comi:nus 
\ame comi:nus</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1f36827a-bb8c-4822-943a-bacd7ee562fb" ownerguid="985f099d-f38c-4957-907a-769d1a45ca10"> -<ExampleWords> -<AUni ws="en">fixed, immovable, stuck, jammed, stiff, won't budge, can't budge something, can't move, immobile, paralyzed, stranded, entangled, caught, bound, permanent, rooted, entrenched, established, settled, set</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that cannot move?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="1f36c833-128e-44e9-b2bf-695dc9d17165" ownerguid="3d020b79-f1d4-4a06-bae2-2daaa658474b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b699320c-1182-41cf-a567-d8008edefdda" t="r" /> -</Morph> -</rt> -<rt class="CmDomainQ" guid="1f398e75-b03c-4d5e-a315-67f26c2d4414" ownerguid="c2dbe83a-d638-45ac-a6d5-5f041b9dde71"> -<ExampleWords> -<AUni ws="en">the disabled, people with disabilities, the handicapped, cripple (n), lame (n), paraplegic (legs only), quadriplegic (all four limbs), paralytic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a disabled person?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1f3f3064-6df3-4816-8964-16423bb8cbce"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">calendariu; calendario</AUni> -<AUni ws="qvm-x-acl">calendariu; calendariu; calendario</AUni> -<AUni ws="qvm-x-akh">calendariu; calendario</AUni> -<AUni ws="qvm-x-akl">calendariu; calendariu; calendario</AUni> -<AUni ws="qvm-x-ame">calendariu; calendario</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+calendario</AUni> -<AUni ws="qvm-x-acl">+calendario</AUni> -<AUni ws="qvm-x-akh">+calendario</AUni> -<AUni ws="qvm-x-akl">+calendario</AUni> -<AUni ws="qvm-x-ame">+calendario</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.21" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d467d9de-44fc-4817-8ed0-f80bc7c00154" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+calendario</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6c3cec89-f390-4f9f-bb98-f467abda4edd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0c81d9c2-d1c9-4013-8197-0413ddedbfe4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +calendario 
\entryTyp root 
\gENG calendar 
\gSPN calendario 
\e +calendario 
\c N0 
\ach calendariu / ~_# 
\ach calendario / _# 
\akh calendariu / ~_# 
\akh calendario / _# 
\acl calendariu / ~_# 
\acl calendariu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl calendario +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl calendariu / ~_# 
\akl calendariu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl calendario +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame calendariu / ~_# 
\ame calendario / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1f4106a6-8898-43f0-9503-dc12c59da657" ownerguid="a7dae83a-dce6-47ea-ab3f-ac8a3af4cce9"> -<ExampleWords> -<AUni ws="en">flag, standard, seal, coat of arms</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the flag and other symbols of a country?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1f41494f-fcdd-40b8-b130-fe98f87c3bad" ownerguid="31debfe3-91da-4588-b433-21b0e14a101b"> -<ExampleWords> -<AUni ws="en">tunnel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a tunnel?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="1f4219f4-e1b2-410e-973c-88c97ff00be9" ownerguid="ccfb9c3b-2049-4345-8c51-b12d3308741a"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="f7ecc0a7-c35d-4bc0-9701-4ce3657c02e6" t="o" /> -<objsur guid="7028fa54-9921-4857-9f35-916a83256c34" t="o" /> -<objsur guid="e4c86bd8-d4d7-4210-a097-1e49678d5633" t="o" /> -<objsur guid="616a4bcd-b0ea-4593-9104-ced83f2d6e51" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiMorphBundle" guid="1f438bcf-4f47-4f80-9b15-5bb565bcca62" ownerguid="ade9b029-59be-454d-a8ee-389eb1be8202"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">runa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">runa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">runa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">runa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">runa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="dbbd8356-c9df-482b-a128-55aaaa8ad47f" t="r" /> -</Morph> -<Msa> -<objsur guid="735a29e0-40d3-4d25-9e9a-e8181d173c29" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="1f447adf-66a8-4a5c-abf7-cfa371682434" ownerguid="ed7930df-e7b4-43c9-a11a-b09521276b57"> -<ExampleWords> -<AUni ws="en">smell, sniff, snuff, savor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to deliberately trying to smell something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1f470830-1043-4737-9a91-1757481e1392" ownerguid="fc1e4ea7-15fa-4bbf-8697-f312762504ba"> -<ExampleWords> -<AUni ws="en">to comb, comb, brush, pick, tangle, snarl, rats nest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to combing the hair?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1f488231-7d46-4d24-866e-aabaf0aaa8a2" ownerguid="a5206e1d-e5aa-414e-b96a-3bb9681a4866"> -<Form> -<AUni ws="qvm-x-ach">eneldu; eneldo</AUni> -<AUni ws="qvm-x-acl">eneldu; eneldu; eneldo</AUni> -<AUni ws="qvm-x-akh">eneldu; eneldo</AUni> -<AUni ws="qvm-x-akl">eneldu; eneldu; eneldo</AUni> -<AUni ws="qvm-x-ame">eneldu; eneldo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="1f49a130-d4e0-4090-b0f3-6d778c4e1ce1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tinqui</AUni> -<AUni ws="qvm-x-acl">tinqui; tinque</AUni> -<AUni ws="qvm-x-akh">tinki</AUni> -<AUni ws="qvm-x-akl">tinki; tinke</AUni> -<AUni ws="qvm-x-ame">tinki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tinki.v</AUni> -<AUni ws="qvm-x-acl">*tinki.v</AUni> -<AUni ws="qvm-x-akh">*tinki.v</AUni> -<AUni ws="qvm-x-akl">*tinki.v</AUni> -<AUni ws="qvm-x-ame">*tinki.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.906" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="18e71625-8ad9-43a1-9180-a8b1def6edf2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tinki.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d178c175-c562-43e2-82d6-f3f28329a09d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="05076c3f-7053-4faa-bce4-afc6a2b4f153" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tinki.v 
\entryTyp root 
\gENG tie.knot 
\gSPN hacer.nudo 
\e *tinki.v 
\c V2 
\mp +FinalI 
\ach tinqui 
\akh tinki 
\acl tinqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tinque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tinki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tinke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tinki</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="1f4a4add-64e1-4a96-a17f-ead783c8eac7" ownerguid="b355b744-58b3-4741-b357-f16a481fe886"> -<Form> -<AUni ws="qvm-x-ach">quïta</AUni> -<AUni ws="qvm-x-acl">quïta</AUni> -<AUni ws="qvm-x-akh">quïta</AUni> -<AUni ws="qvm-x-akl">quïta</AUni> -<AUni ws="qvm-x-ame">quïta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="1f4baeb7-dcaa-4c28-9956-a4818b4cc565"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">normal</AUni> -<AUni ws="qvm-x-acl">normal</AUni> -<AUni ws="qvm-x-akh">normal</AUni> -<AUni ws="qvm-x-akl">normal</AUni> -<AUni ws="qvm-x-ame">normal</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+normal</AUni> -<AUni ws="qvm-x-acl">+normal</AUni> -<AUni ws="qvm-x-akh">+normal</AUni> -<AUni ws="qvm-x-akl">+normal</AUni> -<AUni ws="qvm-x-ame">+normal</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.568" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="52e050f5-7932-41fa-bf55-6918c9d51ac6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+normal</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="21aeeafa-7e29-41c3-956b-9f3d2e391d91" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="86dcdc62-5bc4-4e14-a6c3-fa92c3c6a3f1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +normal 
\entryTyp root 
\gENG 
\gSPN 
\e +normal 
\c N0 
\mp +FinalC 
\ach normal 
\akh normal 
\acl normal 
\akl normal 
\ame normal</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1f4c3eed-4e2c-4be6-a886-6ff6f5cecadc" ownerguid="9e587127-4f2c-4796-9c67-d37332b57303"> -<ExampleWords> -<AUni ws="en">same age, age mate, generation, peer, peer group, age group</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to people born during the same time period?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="1f4c7635-daa8-4324-9935-2656d95d0a1a" ownerguid="77fd8e17-97e1-4435-aa2a-a788b66b6441"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -<Sense> -<objsur guid="7cd134ea-89c1-4a60-8992-dcac673bd263" t="r" /> -</Sense> -</rt> -<rt class="CmSemanticDomain" guid="1f4efae7-1029-4b66-80ee-802459a7baf5" ownerguid="21167445-f1b1-49b4-b147-bc792616c432"> -<Abbreviation> -<AUni ws="en">8.4.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.640" /> -<DateModified val="2022-9-23 16:55:8.640" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use the domains in this section for words that relate one time to another. Use this domain for words that indicate a temporal relation between situations.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>67 Points of Time; 67B A Point of Time with Reference to Other Points of Time: Before, Long Ago, Now, At the Same Time, When, About, After</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Relative time</AUni> -</Name> -<Questions> -<objsur guid="3eb68211-89d3-4f01-bdc7-a0b03855e4de" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="00269021-e1c4-474d-9dba-341d296bdac7" t="o" /> -<objsur guid="d80360f9-7319-40a7-a2bc-fd8718711ba4" t="o" /> -<objsur guid="6bf8ce57-1970-4efb-a7d7-b0bf8be6fb6b" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="1f507886-7b6c-47eb-8754-90c4f94828ea"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">litru; litro</AUni> -<AUni ws="qvm-x-acl">litru; litru; litro</AUni> -<AUni ws="qvm-x-akh">litru; litro</AUni> -<AUni ws="qvm-x-akl">litru; litru; litro</AUni> -<AUni ws="qvm-x-ame">litru; litro</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+litro.1</AUni> -<AUni ws="qvm-x-acl">+litro.1</AUni> -<AUni ws="qvm-x-akh">+litro.1</AUni> -<AUni ws="qvm-x-akl">+litro.1</AUni> -<AUni ws="qvm-x-ame">+litro.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.104" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="14362825-c0d6-4ffc-b901-9ae766a7e68a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+litro.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="303f451b-7431-4a9e-aca2-1e5f9549ffbe" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ea6bafd9-a140-4861-8808-1d69707d3138" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +litro.1 
\entryTyp root 
\gENG liter 
\gSPN litro 
\e +litro.1 
\c N0 
\ach litru / ~_# 
\ach litro / _# 
\akh litru / ~_# 
\akh litro / _# 
\acl litru / ~_# 
\acl litru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl litro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl litru / ~_# 
\akl litru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl litro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame litru / ~_# 
\ame litro / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="1f50913e-241b-4056-80e9-b782f6a4db25" ownerguid="12bae6de-0592-4443-8c8a-b8eb4bfafdab"> -<Form> -<AUni ws="qvm-x-ach">naca</AUni> -<AUni ws="qvm-x-acl">naca</AUni> -<AUni ws="qvm-x-akh">naka</AUni> -<AUni ws="qvm-x-akl">naka</AUni> -<AUni ws="qvm-x-ame">naka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="1f51c050-d0da-4f1d-87b8-2d9c2a6adba1" ownerguid="728ef786-3d8f-474b-9cbc-f299e971b56b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1f555d1b-a79c-44dd-9af9-4ff84a484808" ownerguid="d47b69e0-ab4a-4111-aec3-2c889a4e70b3"> -<ExampleWords> -<AUni ws="en">create, dream up, imagine, compose, contrive, design, devise, invent, conceive of, think up, make up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to inventing something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1f58b0df-f222-416d-b494-c9ec614b0ef2" ownerguid="c793b885-6264-40bb-82d8-0251d7239da1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1f5b7a13-5d48-4173-9077-369f4f15ce13" ownerguid="0e590da7-c027-42e0-b580-f65686cee461"> -<ExampleWords> -<AUni ws="en">surprising, startling, amazing, astonishing, incredible, wonderful, awe-inspiring, awesome, unexpected</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that causes someone to feel surprised?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1f5d37d1-04f1-4837-8381-324b8a7bcfbb" ownerguid="c8e3c39c-d895-4e42-8e1e-1574137ba016"> -<ExampleWords> -<AUni ws="en">outhouse, bunkhouse, garage, shed, barn</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What other buildings are associated with the house and built next to it?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1f5f4c34-124d-4cf2-973b-e27be46fadb4" ownerguid="8f098359-ae2f-4935-8558-4911baa64932"> -<Form> -<AUni ws="qvm-x-ach">numpa</AUni> -<AUni ws="qvm-x-acl">numpa</AUni> -<AUni ws="qvm-x-akh">numpa</AUni> -<AUni ws="qvm-x-akl">numpa</AUni> -<AUni ws="qvm-x-ame">numpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="1f608e18-958e-4bb3-a977-04879fb5acd5" ownerguid="5bcd08a6-cb46-41bb-a732-0d690b5ea596"> -<Abbreviation> -<AUni ws="en">5.2.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.317" /> -<DateModified val="2022-9-23 16:55:8.317" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to eating meat and to types of animals that are eaten. Only include those animals that are commonly eaten, especially those that are domesticated.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Food from animals</AUni> -</Name> -<OcmCodes> -<Uni>266 Cannibalism</Uni> -</OcmCodes> -<Questions> -<objsur guid="dc1e1177-ca1b-4de5-9d4d-0f742c51c849" t="o" /> -<objsur guid="9cc1e05b-5e6c-4601-ab9c-2cb62f0a8170" t="o" /> -<objsur guid="f4e125fc-9c1d-4936-a2fd-4f6f7b1f41bd" t="o" /> -<objsur guid="0f1e3e0b-b441-4982-9fbd-ec5976893cbc" t="o" /> -<objsur guid="0d8bbf9c-5a1c-43c7-a254-ac1e5b7abe60" t="o" /> -<objsur guid="63013426-3bd5-409f-8bcb-cedc739f3133" t="o" /> -<objsur guid="d07bd6be-07d3-4cc2-a857-4f53d1cc88f7" t="o" /> -<objsur guid="44abdd69-6326-4757-ab6e-d9cbb1c58f97" t="o" /> -<objsur guid="06ade770-03ce-45c3-ac0d-66e7118237f1" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="944cf5af-469e-4b03-878f-a05d34b0d9f6" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="5c348090-12f4-4c83-8331-e10971bbc8d3" t="o" /> -<objsur guid="d4769748-7c4e-4359-9da5-2ea64d5948d9" t="o" /> -<objsur guid="aa5658da-8926-4519-83a5-d451dc5a6b49" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="1f6118c8-f860-48b6-bafd-1968b8a24b25" ownerguid="7babf463-5e62-4a82-96d3-ef5989803c41"> -<ExampleWords> -<AUni ws="en">survive, live through, last, remain, survivor, escape, squeak by, make it</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to surviving?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1f6591ea-8379-43c7-8753-7d2de14a105f" ownerguid="fcfc5d75-a155-4c4f-b607-fac923566087"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bird</AUni> -<AUni ws="es">ave</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9b6a566e-965b-4ba8-a9e2-3f1be30ecf34" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="1f66f157-3c19-4ed0-b1a3-cbceeb3bfadc" ownerguid="2899cfd7-a7b3-4907-84a1-ce94cdd76a5b"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1f679fa2-7bdd-40e9-b88f-c0f0281e89b1" ownerguid="2351f52a-8822-46ad-99c4-7ef526e94a6f"> -<ExampleWords> -<AUni ws="en">repetition</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to something you do again?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1f67cc79-28fa-4bf7-8628-cde94f66566a" ownerguid="f67a0a6b-e728-4787-94dc-e473b557c58f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntryType" guid="1f6ae209-141a-40db-983c-bee93af0ca3c" ownerguid="1ee09905-63dd-4c7a-a9bd-1d496743ccd6"> -<Abbreviation> -<AUni ws="en">comp.</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">A stem that is made up of more than one root.</Run> -</AStr> -</Description> -<Discussion> -<objsur guid="b314f2f8-ea5e-11de-86b7-0013722f8dec" t="o" /> -</Discussion> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Compound</AUni> -</Name> -<ReverseAbbr> -<AUni ws="en">comp. of</AUni> -</ReverseAbbr> -<ReverseName> -<AUni ws="en">Compound of</AUni> -</ReverseName> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="1f6d7d09-716b-46a9-83fd-42099d90bfe5" ownerguid="85646774-8145-4553-b8a7-6927cd077908"> -<ExampleWords> -<AUni ws="en">flock (of birds), bevy, colony, covey, flight, flock, gaggle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a group of birds?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1f6f0cfa-15a2-40af-b1c4-d9823c1faa62" ownerguid="b09c222a-28a2-4748-bbe2-9e6e35812817"> -<Form> -<AUni ws="qvm-x-ach">revela</AUni> -<AUni ws="qvm-x-acl">revela</AUni> -<AUni ws="qvm-x-akh">revela</AUni> -<AUni ws="qvm-x-akl">revela</AUni> -<AUni ws="qvm-x-ame">revela</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="Segment" guid="1f71e8be-bcac-4f36-b6b4-47b0904d7a3c" ownerguid="0e881f39-54e3-497e-994d-c82f65194c55"> -<Analyses> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="fa7aeb71-200a-4a5d-9436-13faa1972fea" t="r" /> -<objsur guid="25651c34-3e31-419d-86b5-cda6907f0a4f" t="r" /> -<objsur guid="7a34d709-dd7d-4ac4-94e8-58e444587dd4" t="r" /> -<objsur guid="a85a5670-81ba-47b9-8443-95e8be60ebec" t="r" /> -<objsur guid="bb723df0-2b97-461e-bae3-564d9c1a0cfd" t="r" /> -<objsur guid="4fccec2d-58a4-466f-a087-a79d6bf13b57" t="r" /> -<objsur guid="f69934b2-1374-4eec-8857-8cde011be648" t="r" /> -<objsur guid="26ca52f1-b5e7-41e8-aa2e-cf2572524687" t="r" /> -</Analyses> -<BeginOffset val="9" /> -</rt> -<rt class="LexEntry" guid="1f7366b1-96fb-4d21-9015-f730037e8a34"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pare:ju</AUni> -<AUni ws="qvm-x-acl">pare:ju; pare:ju; pare:jo</AUni> -<AUni ws="qvm-x-akh">pare:ju</AUni> -<AUni ws="qvm-x-akl">pare:ju; pare:ju; pare:jo</AUni> -<AUni ws="qvm-x-ame">pare:ju</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+parejo.r</AUni> -<AUni ws="qvm-x-acl">+parejo.r</AUni> -<AUni ws="qvm-x-akh">+parejo.r</AUni> -<AUni ws="qvm-x-akl">+parejo.r</AUni> -<AUni ws="qvm-x-ame">+parejo.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.719" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c6f19b8a-95b4-4c9c-8c7e-bece7a89066f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+parejo.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="422f9a53-8138-4bcc-80b2-205748f6c709" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d752d3b9-53d0-4652-8f74-af8611d3834c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +parejo.r 
\entryTyp root 
\gENG together 
\gSPN juntos 
\e +parejo.r 
\c R0 
\ach pare:ju 
\akh pare:ju 
\acl pare:ju / _# 
\acl pare:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pare:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pare:ju / _# 
\akl pare:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pare:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pare:ju</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1f784ba9-27d3-4ab2-acb6-020926ba4cb1" ownerguid="45993c48-3893-4d9e-96a3-b6b1ad160538"> -<ExampleWords> -<AUni ws="en">destitute, abject poverty, owns nothing but the clothes on his back</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used for very bad poverty?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1f78d7ca-860f-47c2-84ce-f6c8f2c643f7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuchillu</AUni> -<AUni ws="qvm-x-acl">cuchillu; cuchillu; cuchillo</AUni> -<AUni ws="qvm-x-akh">cuchillu</AUni> -<AUni ws="qvm-x-akl">cuchillu; cuchillu; cuchillo</AUni> -<AUni ws="qvm-x-ame">cuchillu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuchillo.1</AUni> -<AUni ws="qvm-x-acl">+cuchillo.1</AUni> -<AUni ws="qvm-x-akh">+cuchillo.1</AUni> -<AUni ws="qvm-x-akl">+cuchillo.1</AUni> -<AUni ws="qvm-x-ame">+cuchillo.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.234" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="635038c2-e732-44f2-a14e-afd6e75e12fb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuchillo.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="56c1a0d6-b1fc-4aeb-9938-bcaa764c35f9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4e152c41-a2fb-4d34-ae22-d649fa7711fb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuchillo.1 
\entryTyp root 
\gENG knife 
\gSPN cuchillo 
\e +cuchillo.1 
\c N0 
\mp +assimilated 
\ach cuchillu 
\akh cuchillu 
\acl cuchillu / _# 
\acl cuchillu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cuchillo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cuchillu / _# 
\akl cuchillu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cuchillo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cuchillu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="1f78ede1-e0c1-4656-bbc5-a5976322ac34" ownerguid="5ec4cb19-0127-4e01-8d32-31703728bbcb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a4d42f6f-d626-4469-8166-21d6f4e69d6d" t="r" /> -</Morph> -<Msa> -<objsur guid="72dc7bab-4d12-4cdb-a144-3c853f889fb5" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="1f7c1d6c-8df3-4516-bd04-57c46059c0f7" ownerguid="fd33670e-ef16-4566-a62e-aa077e58407b"> -<ExampleWords> -<AUni ws="en">knocking, rap, clatter, patter, rattle, tap, beat, cadence, drum, rhythmic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a repeated sound?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1f84dbd4-b741-4167-9c0c-c9d667be4d39" ownerguid="64ce1000-d0fc-4b9e-bc84-5af9ae9d98c1"> -<Form> -<AUni ws="qvm-x-ach">siqui</AUni> -<AUni ws="qvm-x-acl">siqui; siqui; sique</AUni> -<AUni ws="qvm-x-akh">siki</AUni> -<AUni ws="qvm-x-akl">siki; siki; sike</AUni> -<AUni ws="qvm-x-ame">siki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="1f880c05-7c66-439a-867a-50935f5fcb93"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">antuja</AUni> -<AUni ws="qvm-x-acl">antuja</AUni> -<AUni ws="qvm-x-akh">antuja</AUni> -<AUni ws="qvm-x-akl">antuja</AUni> -<AUni ws="qvm-x-ame">antuja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+antojar</AUni> -<AUni ws="qvm-x-acl">+antojar</AUni> -<AUni ws="qvm-x-akh">+antojar</AUni> -<AUni ws="qvm-x-akl">+antojar</AUni> -<AUni ws="qvm-x-ame">+antojar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.790" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2a6c69ae-72b2-4813-839a-ed86bdfb5790" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+antojar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c5428ab1-0a9d-4c3e-a909-ff4a5730054d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5a3b5134-4e83-4bc7-9292-746ffcf4e077" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +antojar 
\entryTyp root 
\gENG yearn 
\gSPN antojar 
\e +antojar 
\c V1 
\ach antuja 
\akh antuja 
\acl antuja 
\akl antuja 
\ame antuja</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1f8b71fa-4d61-4d5d-b85b-40c468854ba4" ownerguid="14954a0f-5c8a-4680-90b0-53398bd3a2a7"> -<ExampleWords> -<AUni ws="en">apparent, evident, obvious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that is easily known?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="1f8c5066-62ff-4727-b478-52c4e4bcbc3a" ownerguid="93bcba15-4329-416a-b6ff-4f3c73b2cd4f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="e84f26c6-fd3f-457c-9d99-d73b881025c4" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="9db9d984-aa87-4540-adf5-e21096acdd7e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="1f8d1e84-9348-4ade-b78d-7632a8faee71" ownerguid="8b435128-ed72-4842-a56a-c6305355edb1"> -<Form> -<AUni ws="qvm-x-ach">pared</AUni> -<AUni ws="qvm-x-acl">pared</AUni> -<AUni ws="qvm-x-akh">pared</AUni> -<AUni ws="qvm-x-akl">pared</AUni> -<AUni ws="qvm-x-ame">pared</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="1f8e2b4e-f205-4c8b-886c-3670b8e63241" ownerguid="644f0c8f-8385-4b09-8494-923025f5d637"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">?</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6cefc2f4-fd97-494b-a4e6-52f70631c0e6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="1f8ecfc1-a315-4216-8979-29e3693623bb" ownerguid="bc8d0ad4-6ebf-4fa0-bc7e-60e8ec9c43db"> -<ExampleWords> -<AUni ws="en">dilate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to the pupil of the eye getting bigger or smaller?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1f907841-5559-4ae5-b92c-a303575b4232" ownerguid="7211546a-9b07-43b9-9b9f-38cdf95a1f60"> -<Form> -<AUni ws="qvm-x-ach">pogsha</AUni> -<AUni ws="qvm-x-acl">pogsha</AUni> -<AUni ws="qvm-x-akh">poqsha</AUni> -<AUni ws="qvm-x-akl">poqsha</AUni> -<AUni ws="qvm-x-ame">puqsha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="1f92e10b-3419-45f2-b720-412cf83c44bf" ownerguid="f3a3c98c-a0bc-4db7-9836-e2bfe57f50fa"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d1685fdc-96d8-4baf-9cb8-523863adb67f" t="r" /> -</Morph> -<Msa> -<objsur guid="434f36b9-aa05-46d6-be7e-89240d9e2c4d" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="1f97b0bb-2669-4f1a-8d16-7f0af8a4d4eb" ownerguid="d4fca9fe-870a-4110-99bb-10a29c29b2e6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pis</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pis</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pis</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pis</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pis</Run> -</AStr> -</Form> -<Morph> -<objsur guid="18466f68-8c21-4054-acf2-869c4074b430" t="r" /> -</Morph> -<Msa> -<objsur guid="12ccc54c-91e7-41aa-abf7-76699e3503e4" t="r" /> -</Msa> -<Sense> -<objsur guid="f109a3dc-7ba8-4575-8afa-20ef7d8c2a73" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="1f991099-1fbd-426e-9a2e-dc611fb4bea3" ownerguid="df2b9d7a-9b90-4704-8bc3-11dcffe985f4"> -<ExampleWords> -<AUni ws="en">callus, calloused</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to thick skin?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1f999640-8527-4462-8faa-7d160b9cf0c4" ownerguid="540fa096-41dc-417e-aad1-b3e85766ba61"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="1f9a1de4-d752-4c65-afc0-cb065b82d6ec" ownerguid="0757343a-8784-48c2-b926-81322f3d4295"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">field.boss</AUni> -<AUni ws="es">capataz</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3b4fe670-4b70-4df8-a563-143d188ce19f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="1fa20644-752a-4aa2-8869-52d4e44e7ed9" ownerguid="ac734a97-d49b-469b-8068-e59c6e9af96c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">disciple</AUni> -<AUni ws="es">discípulo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="15baceb7-b239-417a-ae7a-de3bb4da72de" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="1fa26fe3-7530-41c7-9802-afeaf0f8e8ab" ownerguid="0f568473-880d-43bd-b5ce-590100fdcaf6"> -<ExampleWords> -<AUni ws="en">choke, gag</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to difficulty in swallowing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1fa3146f-b730-499d-9d27-2c8670799bf3" ownerguid="2d5d634e-75b5-4921-922e-573a809a49f8"> -<ExampleWords> -<AUni ws="en">man-made, hand-made, manufactured, artificial, synthetic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that was made?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1fa590dc-97d1-46f2-a89c-b4fe604f57bb" ownerguid="f9d020d6-b129-4bb8-9509-3b4a6c27482e"> -<ExampleWords> -<AUni ws="en">lose interest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to becoming less interested in something?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="1fa683b9-78fd-4feb-9978-55d5953f38ec" ownerguid="6137239a-b469-46be-b7cb-b9ac22fcc195"> -<Abbreviation> -<AUni ws="en">3.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.184" /> -<DateModified val="2022-9-23 16:55:8.184" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a subject that is taught or a subject that you study at school.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Subject of teaching</AUni> -</Name> -<Questions> -<objsur guid="54bc7396-74f9-4157-b361-74e8dc522c6f" t="o" /> -<objsur guid="702b8646-2448-4d0a-ae6f-3abbd3303b95" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="1fa9a06e-0c38-4483-926f-b68732e8057e" ownerguid="45993c48-3893-4d9e-96a3-b6b1ad160538"> -<ExampleWords> -<AUni ws="en">be poor, be below the poverty line, hardship case</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being poor?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="1faa4b42-bd79-4797-aa30-587d4773ce4e" ownerguid="2f1e7c1e-2a3e-4567-92aa-4ad250403417"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="7023f417-dd4c-4655-a9c2-1faef01d2a8c" t="o" /> -<objsur guid="dad17c90-c508-4d6b-9d10-d567079b57f4" t="o" /> -<objsur guid="798e9cc1-a1a0-4ee5-a348-4c99fe97c7ba" t="o" /> -<objsur guid="843e0bfb-77b6-4898-b353-6263e9316b6f" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="1fab899d-7719-4649-95de-7f084351bb38" ownerguid="5c091d8d-5bc4-40c3-8a30-2a08fb0794b8"> -<ExampleWords> -<AUni ws="en">vision, trance, hallucination</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to an unusual state of consciousness?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1fac0565-e4bc-405a-bac5-48e764913a81" ownerguid="df2ee830-0668-43d7-8a32-e2fd3e7b31d8"> -<Question> -<AUni ws="en">(15) expected future: the situation is to occur in the near future; what is scheduled to happen.</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1fad303d-4172-455c-83f0-a7f5f5f1fdc3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">achcay</AUni> -<AUni ws="qvm-x-acl">achcay</AUni> -<AUni ws="qvm-x-akh">achkay</AUni> -<AUni ws="qvm-x-akl">achkay</AUni> -<AUni ws="qvm-x-ame">achkay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*atrakay</AUni> -<AUni ws="qvm-x-acl">*atrakay</AUni> -<AUni ws="qvm-x-akh">*atrakay</AUni> -<AUni ws="qvm-x-akl">*atrakay</AUni> -<AUni ws="qvm-x-ame">*atrakay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.870" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0fc3d86e-bcc9-4c58-a72d-4fbc644ded06" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*atrakay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="154d5962-c193-4f45-9429-def61ba135ac" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6c0c1026-9c4a-4a96-842c-95b3907a3800" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *atrakay 
\entryTyp root 
\gENG witch 
\gSPN bruja 
\e *atrakay 
\c N0 
\mp +FinalC 
\ach achcay 
\akh achkay 
\acl achcay 
\akl achkay 
\ame achkay</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1fae0f17-23eb-4c1e-a86d-9a564880ec52" ownerguid="bfe32ef1-d815-4321-919e-945bc548f05d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="1fafcb53-5b4a-4bb1-9c3b-10871ba927d8" ownerguid="bd88e09a-0127-434a-b9e2-28ea6537b797"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StStyle" guid="1fafdfa6-34a7-4577-b4aa-0c6518af623a" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="7d2c80cd-af87-4d56-8337-cfd389b775bb" t="r" /> -</BasedOn> -<Context val="14" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Classified-MainEntry</Uni> -</Name> -<Next> -<objsur guid="945e6502-615b-4863-a18c-111e4d6b36c6" t="r" /> -</Next> -<Rules> -<Prop bold="invert" fontsize="12000" fontsizeUnit="mpt" italic="off" spaceAfter="2000" spaceBefore="8000"></Prop> -</Rules> -<Structure val="0" /> -<Type val="0" /> -<Usage> -<AUni ws="en">In a Classified Dictionary, the heading giving the classification name</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="MoStemMsa" guid="1fb07df4-66f9-4162-9332-d09244792585" ownerguid="f7b29046-5b1d-42d0-9a2e-386a140c6172"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="1fb0a0fb-ece3-4b8c-a26d-e34f11f3da8c" ownerguid="f12b8990-96e0-4f38-8395-52d4c360d4c7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">get.wife</AUni> -<AUni ws="es">tener.esposa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="86b5e60e-c55d-4797-a0a2-e6891fff7ec3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="1fb44ae6-5d0f-4e1b-a1fb-c8738acd0b7e" ownerguid="2e95bd1e-82f0-461d-8ca6-b5f1ce1fb180"> -<ExampleWords> -<AUni ws="en">court, courtship, woo, suit, suitor, date, flirt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to a man trying to get a woman to marry him?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1fb4e021-81b1-4606-92ae-e980b7686554" ownerguid="c01bbcef-7d89-4753-bafd-3a7f23648982"> -<ExampleWords> -<AUni ws="en">vet, veterinarian</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a doctor who treats animals?</AUni> -</Question> -</rt> -<rt class="MoDerivAffMsa" guid="1fb682b6-7646-4105-a588-b94332dd1288" ownerguid="27e74a51-5c7c-4462-a610-b9e1574dba20"> -<FromPartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</FromPartOfSpeech> -<ToPartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</ToPartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1fb6f405-e1ed-4a9c-87d8-394a90870357" ownerguid="892b66f4-5dfd-4451-a491-4c4fd2179081"> -<ExampleWords> -<AUni ws="en">murder money, blood money, cursed money</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to money given to a person for betraying or murdering someone.</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1fba6370-8264-4270-9240-bdd2cea4f16a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">palabra</AUni> -<AUni ws="qvm-x-acl">palabra</AUni> -<AUni ws="qvm-x-akh">palabra</AUni> -<AUni ws="qvm-x-akl">palabra</AUni> -<AUni ws="qvm-x-ame">palabra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+palabra</AUni> -<AUni ws="qvm-x-acl">+palabra</AUni> -<AUni ws="qvm-x-akh">+palabra</AUni> -<AUni ws="qvm-x-akl">+palabra</AUni> -<AUni ws="qvm-x-ame">+palabra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.658" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cb26cdc8-728d-4894-99ec-b32c6aa25910" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+palabra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c4b1c515-a01e-4368-bcae-05c277331656" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6c64fb21-52c2-4c9f-9f97-2e6ccfbd7c7d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +palabra 
\entryTyp root 
\gENG palabra 
\gSPN word 
\e +palabra 
\c N0 
\ach palabra 
\akh palabra 
\acl palabra 
\akl palabra 
\ame palabra</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="1fbb9f10-4371-4b1f-8b2b-f1ec9600913c" ownerguid="85af0462-0f6d-45c1-8bbd-f26d918401b0"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="32ae910e-4620-478e-a5a9-8319c736e36c" t="o" /> -<objsur guid="cee89495-f092-4a92-a02b-3ba29ca2c285" t="o" /> -<objsur guid="49654459-bc2b-4639-8b2c-88e30b626a04" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="1fbe05ec-7e18-4943-b35b-00c42eafd67f" ownerguid="adde4a66-9040-47a9-91ab-327934a2e97e"> -<ExampleWords> -<AUni ws="en">carpenter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who works with wood?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1fbf5d05-bf65-43ec-a932-33d32bb74e71" ownerguid="f1373316-7917-4dca-9d33-c6b520bd4034"> -<ExampleWords> -<AUni ws="en">machine, machinery, hardware, computer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to machines?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1fc0df05-2548-40d0-8084-ad538f4c5d10" ownerguid="9885c1fa-c724-4afc-bb33-6af3b26909f1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="1fc3971c-133f-414c-ad62-6e04615c5d55" ownerguid="8b180827-a748-445b-9a01-fbe77fb19c65"> -<PartOfSpeech> -<objsur guid="85ffb381-0567-4202-8640-53cbaec77e45" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="1fc69f1d-8a5b-4533-b20b-3e9f0fbf004d" ownerguid="2bdfe506-0a28-45bd-81e1-44dcedcc262a"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="1fc9f43c-f64f-4db7-b9d5-f2a32ece534a" ownerguid="00fd6b27-f641-48bc-be5b-572dbfeaeb88"> -<Form> -<AUni ws="qvm-x-ach">recupera</AUni> -<AUni ws="qvm-x-acl">recupera</AUni> -<AUni ws="qvm-x-akh">recupera</AUni> -<AUni ws="qvm-x-akl">recupera</AUni> -<AUni ws="qvm-x-ame">recupera</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="1fcbb0f1-3b64-44a6-a35b-9a082473bae2" ownerguid="54a8929b-4853-4f2f-839f-50b25f7975f1"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Tsaymi Caín pasaypa rabyaptin cäranpis jukaqyarqan\f + \fr 4.5 \ft Wakinkunaqa \it juknasyarqan\it* nipäkun.\f*.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="1fce8fce-183c-4845-ac4d-dcfa16d7bbf5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">adivinanza</AUni> -<AUni ws="qvm-x-acl">adivinanza</AUni> -<AUni ws="qvm-x-akh">adivinanza</AUni> -<AUni ws="qvm-x-akl">adivinanza</AUni> -<AUni ws="qvm-x-ame">adivinanza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+adivinanza</AUni> -<AUni ws="qvm-x-acl">+adivinanza</AUni> -<AUni ws="qvm-x-akh">+adivinanza</AUni> -<AUni ws="qvm-x-akl">+adivinanza</AUni> -<AUni ws="qvm-x-ame">+adivinanza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.639" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="559a72ac-ccbb-4054-b1ad-1a0dd3194718" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+adivinanza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="81065b96-7246-4262-bec3-0f07dcdee9be" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="19e87a2e-72b3-427b-bc2d-a5ff1436897d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +adivinanza 
\entryTyp root 
\gENG 
\gSPN 
\e +adivinanza 
\c N0 
\ach adivinanza 
\akh adivinanza 
\acl adivinanza 
\akl adivinanza 
\ame adivinanza</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="1fd1c87d-0f8d-4141-838d-7040eaeaba68" ownerguid="10806316-f433-4da4-a08b-73638d735c1d"> -<Form> -<AUni ws="qvm-x-ach">yusulpäqui; yusulpäqui</AUni> -<AUni ws="qvm-x-acl">yusulpäqui; yusulpäqui</AUni> -<AUni ws="qvm-x-akh">yusulpäki; yusulpäki</AUni> -<AUni ws="qvm-x-akl">yusulpäki; yusulpäki</AUni> -<AUni ws="qvm-x-ame">yusulpäki; yusulpäki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="1fd513e3-e1ae-48ef-a5c1-4a3d08c7f268" ownerguid="b2a52981-8b33-497e-83b7-a740bb8ddd11"> -<Form> -<AUni ws="qvm-x-ach">gaushu</AUni> -<AUni ws="qvm-x-acl">gaushu; gaushu; gausho</AUni> -<AUni ws="qvm-x-akh">qawshu</AUni> -<AUni ws="qvm-x-akl">qawshu; qawshu; qawsho</AUni> -<AUni ws="qvm-x-ame">qawshu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="1fd63fda-c3f5-4273-bd1f-c1a55a186b22" ownerguid="66789af7-e6eb-4d34-9525-6a1a04212e3d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="1fd69fde-6415-4406-a6dc-e091e8039b57" ownerguid="4b23658b-471f-4b76-9438-8d46f96107d0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">authority</AUni> -<AUni ws="es">autoridad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8aef72a4-e3c8-4cbd-b22f-996db1c2f2a4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="1fd8a47f-98b6-42ae-8f00-726f1318afb8" ownerguid="99e47884-cd6b-42dd-9e8e-be04e8791dcb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="r" /> -</Morph> -</rt> -<rt class="CmSemanticDomain" guid="1fd8a8d6-6795-4a5b-90e0-342e8b0975a1" ownerguid="8b76f4a2-9926-4c76-8d4f-563371683219"> -<Abbreviation> -<AUni ws="en">6.6.2.9.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.468" /> -<DateModified val="2022-9-23 16:55:8.468" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to bombs or chemicals exploding.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Explode</AUni> -</Name> -<Questions> -<objsur guid="8f3e7179-b081-40dd-8076-2a25b88592dd" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="1fd92017-3e7a-4a27-8064-874824cc87f5" ownerguid="6187e620-89bd-4b9d-9896-0c0c788e7740"> -<ExampleWords> -<AUni ws="en">coach, referee</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What is the staff of a team called?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="1fda1a3b-a0e6-4384-8150-d8f0b354e1cb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ca:ma</AUni> -<AUni ws="qvm-x-acl">ca:ma</AUni> -<AUni ws="qvm-x-akh">ca:ma</AUni> -<AUni ws="qvm-x-akl">ca:ma</AUni> -<AUni ws="qvm-x-ame">ca:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cama</AUni> -<AUni ws="qvm-x-acl">+cama</AUni> -<AUni ws="qvm-x-akh">+cama</AUni> -<AUni ws="qvm-x-akl">+cama</AUni> -<AUni ws="qvm-x-ame">+cama</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.290" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="70a8aca5-a421-41d0-ae69-e9fdbd82f7ce" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cama</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6d6aee81-3230-4f76-9954-3d46659f0662" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="18baa780-a049-4a32-a529-946761bb6c1e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cama 
\entryTyp root 
\gENG bedding 
\gSPN cama 
\e +cama 
\c N0 
\ach ca:ma 
\akh ca:ma 
\acl ca:ma 
\akl ca:ma 
\ame ca:ma</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="1fda68d4-5941-4695-b656-090d603a3344" ownerguid="4098899a-0ad0-4d71-9f9f-b99d5ba2e0d5"> -<Abbreviation> -<AUni ws="en">5.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.306" /> -<DateModified val="2022-9-23 16:55:8.306" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to food preparation.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Food preparation</AUni> -</Name> -<OcmCodes> -<Uni>252 Food Preparation; 265 Food Service Industries</Uni> -</OcmCodes> -<Questions> -<objsur guid="f940cff2-2ca2-4e3a-bf09-b5ed176643b5" t="o" /> -<objsur guid="a1d39530-7de6-4b41-893b-71d1953909b4" t="o" /> -<objsur guid="7c67cec7-5ed2-4521-9bbd-3ba27ce44be5" t="o" /> -<objsur guid="34bae5cb-6584-4b07-8ea2-c108c180326f" t="o" /> -<objsur guid="1a085ad3-710c-49a6-8a53-5375b3175036" t="o" /> -<objsur guid="8a3042d5-4ebc-4b88-829b-9445e4284beb" t="o" /> -<objsur guid="f937314a-30a1-42d7-8ab0-16fd9759b34f" t="o" /> -<objsur guid="b473dc9f-5301-49cf-9e97-90ececa253e7" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="fc0afb69-a4d4-439a-91cd-ed0ce67677b5" t="o" /> -<objsur guid="726923d4-b25c-46eb-8ab0-427207177ae3" t="o" /> -<objsur guid="dbd3e164-3f70-4395-9728-1c24c8900da6" t="o" /> -<objsur guid="1b399fa1-e4f7-4d7b-a33e-3972b8b556e2" t="o" /> -<objsur guid="cd01db6c-8aa6-42d1-93ac-05e81a8be523" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="1fdcf32e-23b5-4867-8686-13ef8f5bd1c4" ownerguid="592b6dec-d349-4752-b154-8a6af343cb93"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">goad</AUni> -<AUni ws="es">picar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e755f95d-ab3b-4749-ab4a-3a84ffcdd708" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="1fddbc22-8662-4ac5-a597-1bb174c825f3" ownerguid="98f9ceff-e8a2-4e24-abc4-561b80bb5889"> -<ExampleWords> -<AUni ws="en">preservative, salt, formaldehyde, embalming fluid, canning jar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something used to preserve something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="1fdffcb4-f070-403d-b719-ff3ca91f3969" ownerguid="998d216b-33ee-495a-8fa3-a58161623411"> -<Form> -<AUni ws="qvm-x-ach">muti; muti</AUni> -<AUni ws="qvm-x-acl">muti; muti; mute</AUni> -<AUni ws="qvm-x-akh">muti; muti</AUni> -<AUni ws="qvm-x-akl">muti; muti; mute</AUni> -<AUni ws="qvm-x-ame">muti; muti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="1fe1118a-b72f-4314-8934-ac806494f501" ownerguid="bee96736-8acc-4639-8145-2cffb8739056"> -<Form> -<AUni ws="qvm-x-ach">ejerciciu; ejercicio</AUni> -<AUni ws="qvm-x-acl">ejerciciu; ejerciciu; ejercicio</AUni> -<AUni ws="qvm-x-akh">ejerciciu; ejercicio</AUni> -<AUni ws="qvm-x-akl">ejerciciu; ejerciciu; ejercicio</AUni> -<AUni ws="qvm-x-ame">ejerciciu; ejercicio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="1fe7b7e5-f809-4e90-99a6-9f1991e96972"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">:tsi</AUni> -<AUni ws="qvm-x-acl">:tsi; :tse</AUni> -<AUni ws="qvm-x-akh">:tsi</AUni> -<AUni ws="qvm-x-akl">:tsi; :tse</AUni> -<AUni ws="qvm-x-ame">:tsi</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.497" /> -<DateModified val="2022-10-16 14:57:42.573" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5e46ae65-54c6-4814-bc32-f0e79a556030" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">CAUSHELP</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="292ae651-f5de-4294-ac06-25acfe912125" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b07fc6e4-2556-4a6c-8c9e-10ce1736e6a7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx CAUSHELP 
\entryTyp suffix 
\gENG CAUSHELP 
\gSPN CAUSAYU 
\e CAUSHELP 
\c V1/V2 
\o 000 
\mp +mlowers 
\ach :tsi 
\akh :tsi 
\acl :tsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl :tse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl :tsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl :tse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame :tsi 
\mp +FinalI 
\mp +foreshortens 
\mcc CAUSHELP / _ HELP</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1fe87376-1221-4adc-b784-da0f8e9c47de" ownerguid="11cf45ec-f9d6-4c99-8782-738e26a342c8"> -<ExampleWords> -<AUni ws="en">take, take away, remove, draw off, empty, evacuate, milk, strain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to taking something from somewhere?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1feb2fbe-35ba-48a6-bfbe-e3f2cc4102d7" ownerguid="cb95189c-8c74-465b-af07-48e08dbf7c39"> -<ExampleWords> -<AUni ws="en">feeling, emotion, sentiment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a feeling?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1feb47f1-e410-406f-8bfc-f17ef31cb2a8" ownerguid="ab8f12fb-57b0-4d61-8ae0-50d7cbc412df"> -<ExampleWords> -<AUni ws="en">permafrost</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to frozen ground?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1febc5d9-b865-4510-b866-2eecdc01bcec" ownerguid="34fe8676-7bda-493d-a012-bc5748e87823"> -<ExampleWords> -<AUni ws="en">point</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a point?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="1fef910c-2d59-405a-a680-882f96b8158b" ownerguid="efef45bd-26be-46f8-b85b-424be55bcdac"> -<ExampleWords> -<AUni ws="en">fresh, raw</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe food that is new?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="1ff3d16a-3452-4eb9-9b83-73cbbd05c78a" ownerguid="043a481a-83ab-44a6-a3eb-15aefa03f77b"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="1ff49b50-5e49-40c3-8542-c4d8a5846e86" ownerguid="641c0fe9-e019-433f-8d77-e80584d03dc5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="1ff549d6-2597-40f0-9f74-711147529b99" ownerguid="0d972590-5947-4983-a092-443697baec24"> -<ExampleWords> -<AUni ws="en">plow, plow blade</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What tools are used for plowing?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="1ff743cb-49e0-483d-8a1d-4603a7d6c395" ownerguid="8216627d-9d20-4a5c-8bfd-0709c16e7a08"> -<Abbreviation> -<AUni ws="en">8.1.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.569" /> -<DateModified val="2022-9-23 16:55:8.569" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to something decreasing in number or amount--to be less than before.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>59G Increase, Decrease</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Decrease</AUni> -</Name> -<Questions> -<objsur guid="a3d233e4-605f-412f-9fda-bed40f7494ff" t="o" /> -<objsur guid="9bca93d5-512a-4277-9c20-ad52ad5dd1d9" t="o" /> -<objsur guid="08e65bc9-bd54-4978-b03e-8364531888dc" t="o" /> -<objsur guid="1a104d17-49a8-457c-baae-41ed1703ed9c" t="o" /> -<objsur guid="8f3e3a8c-193e-44ab-acc4-61f633a01a30" t="o" /> -<objsur guid="b2e2da71-45a7-4c4f-b9bc-f14b379808a0" t="o" /> -<objsur guid="32cbc583-0132-48b5-b626-f875d1a35f63" t="o" /> -<objsur guid="c0015d08-0a96-482f-aeda-3ad3ad9292f3" t="o" /> -<objsur guid="c50a390b-5251-47f5-a760-62293332f5d9" t="o" /> -<objsur guid="740715c2-f03b-4a1b-a6ff-35c7c34fd1f1" t="o" /> -<objsur guid="a38f237b-d629-42c4-8010-d843f7374e9c" t="o" /> -<objsur guid="d505454b-a7af-4b61-93a7-28c858e2ae3d" t="o" /> -<objsur guid="224bf8aa-7f50-474c-8c5b-d334964eddb7" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="1ff89b31-8226-40a6-81e0-f03d8ede0e9f"> -<Analyses> -<objsur guid="2418dd59-fa53-44a5-964d-f9dae2183b5e" t="o" /> -<objsur guid="2a6a1f3b-6f03-4a6a-ba58-77e5f136229b" t="o" /> -<objsur guid="933404fc-9865-4f05-ad2a-55d83ac396f9" t="o" /> -<objsur guid="f2f973f2-acde-4ac7-a693-49c0ab861c5d" t="o" /> -</Analyses> -<Checksum val="1827161414" /> -<Form> -<AUni ws="qvm-x-akh">kutiykur</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="1ff8a120-8fd9-48e0-98c6-f75833598f0c" ownerguid="8b22ef54-ea90-403c-92c1-ae0cc04c051c"> -<Form> -<AUni ws="qvm-x-ach">lagwa</AUni> -<AUni ws="qvm-x-acl">lagwa</AUni> -<AUni ws="qvm-x-akh">laqwa</AUni> -<AUni ws="qvm-x-akl">laqwa</AUni> -<AUni ws="qvm-x-ame">laqwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="1ff8ac16-696a-4eee-8dc8-4293d3123b58" ownerguid="8197eac8-65a6-4b9e-a86b-698929a5e952"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="1ff9b53b-68ca-40d1-8cf0-f7fab9e91cb4" ownerguid="e704c2e1-c9af-456e-aa2a-12b51a5d4814"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="1ff9ed87-0b97-4333-81d3-e5d6ecf23449"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ticsa</AUni> -<AUni ws="qvm-x-acl">ticsa</AUni> -<AUni ws="qvm-x-akh">tiksa</AUni> -<AUni ws="qvm-x-akl">tiksa</AUni> -<AUni ws="qvm-x-ame">tiksa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tiksa</AUni> -<AUni ws="qvm-x-acl">*tiksa</AUni> -<AUni ws="qvm-x-akh">*tiksa</AUni> -<AUni ws="qvm-x-akl">*tiksa</AUni> -<AUni ws="qvm-x-ame">*tiksa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.896" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fabca4ce-6c9a-42b2-a93b-355626308d99" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tiksa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6e39d19c-8967-4dbf-9ce5-d0c71919bf17" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cf2c82fe-d191-4d89-a6bb-2df56c80385e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tiksa 
\entryTyp root 
\gENG ant 
\gSPN hormiga 
\e *tiksa 
\c N0 
\ach ticsa 
\akh tiksa 
\acl ticsa 
\akl tiksa 
\ame tiksa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="1ff9fb9a-ad87-44b7-8cd7-a60bb16d9c1f" ownerguid="fea3c863-afd1-40af-aabe-51dfe7dda361"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="1ffebc95-cdd8-41f9-977d-ed8556048060"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">daña:du</AUni> -<AUni ws="qvm-x-acl">daña:du; daña:du; daña:do</AUni> -<AUni ws="qvm-x-akh">daña:du</AUni> -<AUni ws="qvm-x-akl">daña:du; daña:du; daña:do</AUni> -<AUni ws="qvm-x-ame">daña:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+dañado</AUni> -<AUni ws="qvm-x-acl">+dañado</AUni> -<AUni ws="qvm-x-akh">+dañado</AUni> -<AUni ws="qvm-x-akl">+dañado</AUni> -<AUni ws="qvm-x-ame">+dañado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.356" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c3490bbf-39a3-4fef-96ef-7ff51983c0b6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+dañado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6b89368c-0e25-43b4-ae32-564c5b889256" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b4cd38e9-ff82-4913-bba0-6d002ab8e103" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +dañado 
\entryTyp root 
\gENG bruise 
\gSPN moretón 
\e +dañado 
\c N0 
\ach daña:du 
\akh daña:du 
\acl daña:du / _# 
\acl daña:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl daña:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl daña:du / _# 
\akl daña:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl daña:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame daña:du</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="1ffec240-293e-4737-a1e7-de1183cb7e04" ownerguid="4e2adaed-145e-45fc-8448-81c0bd47c414"> -<ExampleWords> -<AUni ws="en">never, not ever, never once, not once, never for a moment, not for a moment, never ever, at no time, not in a million years, never in a million years, have never been known to do something</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something that never happens?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="200475f8-03bd-4170-ba81-462baa7b57c1"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">V1</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="2005ccc6-764d-4fbf-aee6-6f5162265f74"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mora:du</AUni> -<AUni ws="qvm-x-acl">mora:du; mora:du; mora:do</AUni> -<AUni ws="qvm-x-akh">mora:du</AUni> -<AUni ws="qvm-x-akl">mora:du; mora:du; mora:do</AUni> -<AUni ws="qvm-x-ame">mora:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+morado</AUni> -<AUni ws="qvm-x-acl">+morado</AUni> -<AUni ws="qvm-x-akh">+morado</AUni> -<AUni ws="qvm-x-akl">+morado</AUni> -<AUni ws="qvm-x-ame">+morado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.477" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="81190e5b-abbe-4e16-9e66-827f965b20b6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+morado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="41c3259d-dacb-451e-b037-58ce7968a83d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1e33f40e-2fa9-490d-b020-ddce6de67e30" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +morado 
\entryTyp root 
\gENG purple 
\gSPN morado 
\e +morado 
\c N0 
\ach mora:du 
\akh mora:du 
\acl mora:du / _# 
\acl mora:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mora:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mora:du / _# 
\akl mora:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mora:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mora:du</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="200644dc-8048-4bd9-891f-90917dc21b7b" ownerguid="5fcadae4-b4a8-4600-8d30-c4f67986d619"> -<ExampleWords> -<AUni ws="en">amputate, amputation, lose a limb, sever, mutilate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the event or process that results in losing a limb?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="200708e1-513d-44c2-8539-9380eb1ce2fb" ownerguid="800095d2-1ed7-4257-b8e6-4768271a3185"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">father.in.law</AUni> -<AUni ws="es">suegro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cac9a59e-9f01-4d26-b981-b932f6adfd1f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2008199a-5d1d-4842-8af9-95e9ed27a154" ownerguid="d853597b-f3ed-470b-b6dd-8fe93b8e43eb"> -<ExampleWords> -<AUni ws="en">get quieter, go quiet, die down, die away, fade away, fall silent, lower your voice</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to becoming quieter?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="20082b62-9dfd-498a-89a1-f92039b1d410" ownerguid="c2a254da-0fb7-4748-ab3d-a4cde4aa5a82"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PunctuationForm" guid="200bb3d3-48f2-4bd2-951d-a6ea605d5f40"> -<Form> -<Str> -<Run ws="en">objec</Run> -</Str> -</Form> -</rt> -<rt class="LexSense" guid="200def8b-f75e-45c4-8603-a3eed38a9257" ownerguid="b76173eb-aeae-4006-92e5-2283e56986bc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">diminishù</AUni> -<AUni ws="es">mermar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8f8238f0-673f-41bd-9058-4581f7555c45" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="200e8f2f-9ede-425f-84b8-1807c067174c" ownerguid="04e7a4bd-d63e-4aaa-adcc-8cccf4cac9ae"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0 V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">friend</AUni> -<AUni ws="es">amigo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="36ee33bd-7480-4c52-8821-200f32765aa4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="201059fb-5838-4f7f-ba7b-5c5ba2102e9c" ownerguid="d2df3d6b-f9a5-404e-b3ec-b59dac569484"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="26d7b3ef-f288-4664-9179-0ea2360bf9ec" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="2012676e-f75d-443e-a7cd-e4a20c1190dc" ownerguid="466a4708-420c-4053-b6af-a8b15fb1400e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">urgently</AUni> -<AUni ws="es">con.empeño</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a808fe1d-51b3-451d-afb3-d102e87963f5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="20163637-5ac5-4fca-8102-b9da224d719d"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">rikakatsipakun</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="20191d4a-6662-463b-ab09-59194aa0dc11"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bisco:chu</AUni> -<AUni ws="qvm-x-acl">bisco:chu; bisco:chu; bisco:cho</AUni> -<AUni ws="qvm-x-akh">bisco:chu</AUni> -<AUni ws="qvm-x-akl">bisco:chu; bisco:chu; bisco:cho</AUni> -<AUni ws="qvm-x-ame">bisco:chu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+biscocho.1</AUni> -<AUni ws="qvm-x-acl">+biscocho.1</AUni> -<AUni ws="qvm-x-akh">+biscocho.1</AUni> -<AUni ws="qvm-x-akl">+biscocho.1</AUni> -<AUni ws="qvm-x-ame">+biscocho.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.969" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0da1f89c-4f5a-408e-96a3-ebb9f5c275e0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+biscocho.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="591d7c1b-ce74-4b28-80e0-100c3938d010" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8ae17b84-ee9e-4ced-a429-94cc7eaac7f0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +biscocho.1 
\entryTyp root 
\gENG sweetbread 
\gSPN biscocho 
\e +biscocho.1 
\c N0 
\ach bisco:chu 
\akh bisco:chu 
\acl bisco:chu / _# 
\acl bisco:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl bisco:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl bisco:chu / _# 
\akl bisco:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl bisco:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame bisco:chu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="201ad1fc-fc85-4e8e-a617-ab87abc5028d" ownerguid="e3d23dcf-2c2c-4094-b8ed-d1381de5b36f"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="202132cd-96da-4c43-9319-57cb8c97955b" ownerguid="b179244b-7f64-4aa2-bc77-417eaf8c17c7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="20219549-f91d-4f97-929b-efbf09c43204" ownerguid="216e816d-c432-4cd2-8157-c8ca240a3492"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="202218a0-2594-4641-ae74-e961ceaabd60" ownerguid="3f773a06-f2cc-4ae4-8a38-aa5c9f333353"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="7fb17e9a-74c4-48b5-ae43-af12650884b3" t="o" /> -<objsur guid="04c80675-befb-483a-92d5-c21013e30c64" t="o" /> -<objsur guid="340482ed-82e5-42c0-af38-1a9267181c9d" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiMorphBundle" guid="202421c8-91ba-48da-8f7e-dd9796ab2f33" ownerguid="658631d0-f29a-4ed0-925e-04fa323762f9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="2026ac6b-06ed-47fb-b7ae-b9f17d5b0af8" ownerguid="4c61a088-d8d6-43cb-b2ac-a3e9cedd6a35"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">trillar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="25b7a2c5-a7fe-476c-b14e-a9e6612ef249" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="20278ac0-c56a-4f5f-b881-81f8b3a0b302" ownerguid="780093c1-faaa-4732-8305-4e024b56005d"> -<Form> -<AUni ws="qvm-x-ach">tirita</AUni> -<AUni ws="qvm-x-acl">tirita</AUni> -<AUni ws="qvm-x-akh">tirita</AUni> -<AUni ws="qvm-x-akl">tirita</AUni> -<AUni ws="qvm-x-ame">tirita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2028a034-cff2-4b1c-be05-a4088a8f8a84" ownerguid="87f3106b-69de-4cb1-9efc-b19cda92fe96"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="048475e0-a16c-4ec9-b1f8-b2e41f180dd1" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">character</AUni> -<AUni ws="es">carácter</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0e6f9eb3-a39b-4735-b94b-3571220f4056" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="2029d4cd-6640-47b5-b954-25c201ae3d30" ownerguid="be74f6a4-8830-469e-9e17-074205097ec2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sleepily</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="66204b24-5821-4d17-8e79-8620bfc3dbcf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="202b5306-b111-4068-9fba-c86d97bbeb28"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pirgantsa</AUni> -<AUni ws="qvm-x-acl">pirgantsa</AUni> -<AUni ws="qvm-x-akh">pirqantsa</AUni> -<AUni ws="qvm-x-akl">pirqantsa</AUni> -<AUni ws="qvm-x-ame">pirqantsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pirqancha</AUni> -<AUni ws="qvm-x-acl">*pirqancha</AUni> -<AUni ws="qvm-x-akh">*pirqancha</AUni> -<AUni ws="qvm-x-akl">*pirqancha</AUni> -<AUni ws="qvm-x-ame">*pirqancha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.850" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ac2c9cc0-eaf2-4665-ba3f-21f266684f37" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pirqancha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="236f055a-6af4-4b9e-b372-3315d3384e43" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7f481354-d363-410c-b318-e0f65f16bfc4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pirqancha 
\entryTyp root 
\gENG wall-walk 
\gSPN caminar 
\e *pirqancha 
\c V1 
\ach pirgantsa 
\akh pirqantsa 
\acl pirgantsa 
\akl pirqantsa 
\ame pirqantsa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="202c2c38-e8aa-4b82-a567-e7111fb3f511"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tucru</AUni> -<AUni ws="qvm-x-acl">tucru; tucro</AUni> -<AUni ws="qvm-x-akh">tukru</AUni> -<AUni ws="qvm-x-akl">tukru; tukro</AUni> -<AUni ws="qvm-x-ame">tukru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tukru.v</AUni> -<AUni ws="qvm-x-acl">*tukru.v</AUni> -<AUni ws="qvm-x-akh">*tukru.v</AUni> -<AUni ws="qvm-x-akl">*tukru.v</AUni> -<AUni ws="qvm-x-ame">*tukru.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.977" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2edb84c2-d134-434e-aa84-68ea849f3969" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tukru.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ec8e7abd-3b3a-4d99-b1d0-21ccd3983b1b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ee6371b0-ca33-47ac-9a9c-bf49aa5dbd95" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tukru.v 
\entryTyp root 
\gENG staff 
\gSPN palo 
\e *tukru.v 
\c V1 
\ach tucru 
\akh tukru 
\acl tucru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tucro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tukru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tukro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tukru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="202ede89-e05f-4e57-8666-6b4a71075182" ownerguid="9bd22b75-3bbb-4b10-96ca-255b1c9e97b1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sulfur</AUni> -<AUni ws="es">azufre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="473c50a6-02df-41be-933b-e9390d41ac12" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="202efc2a-dc75-4ed8-8dfc-078a8d54719a" ownerguid="c7a8f9a0-a81f-41c9-82fb-312387dbcdf7"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">DAN 4.14 Tsay yörata muturishpayqui lapan rämancunata laumay. Nircur höjancunatapis lapanta sipichay.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="203350a6-3908-4c04-b951-d2204ef530cd" ownerguid="28b3fe11-1c56-46d9-85f8-24e6867e5452"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">content</AUni> -<AUni ws="es">contento</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e6024719-1f42-4555-8805-cb26f53e56f7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="20341cf2-72cc-420b-bb38-6d77ca1c14e8" ownerguid="5225d309-285b-4169-bf8b-646f2bf1ca28"> -<Form> -<AUni ws="qvm-x-ach">noresti; noreste</AUni> -<AUni ws="qvm-x-acl">noresti; noresti; noreste</AUni> -<AUni ws="qvm-x-akh">noresti; noreste</AUni> -<AUni ws="qvm-x-akl">noresti; noresti; noreste</AUni> -<AUni ws="qvm-x-ame">noresti; noreste</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="2034d20f-de62-445d-a240-9d2949da4e30" ownerguid="1540a357-563e-4f46-8004-4ff10ab15876"> -<Form> -<AUni ws="qvm-x-ach">cachara</AUni> -<AUni ws="qvm-x-acl">cachara</AUni> -<AUni ws="qvm-x-akh">kachara</AUni> -<AUni ws="qvm-x-akl">kachara</AUni> -<AUni ws="qvm-x-ame">kachara</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PunctuationForm" guid="2034e6dd-a553-4aec-84b3-594bb6ab3ed6"> -<Form> -<Str> -<Run ws="en">fr</Run> -</Str> -</Form> -</rt> -<rt class="MoStemMsa" guid="203661a9-d64d-4d00-8c95-a72b8debc86b" ownerguid="93c0134f-6930-499b-bb0c-e306b0af173f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="203d46e3-0d71-4257-aeca-fbab7af0e539"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ca:su</AUni> -<AUni ws="qvm-x-acl">ca:su; ca:su; ca:so</AUni> -<AUni ws="qvm-x-akh">ca:su</AUni> -<AUni ws="qvm-x-akl">ca:su; ca:su; ca:so</AUni> -<AUni ws="qvm-x-ame">ca:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+caso</AUni> -<AUni ws="qvm-x-acl">+caso</AUni> -<AUni ws="qvm-x-akh">+caso</AUni> -<AUni ws="qvm-x-akl">+caso</AUni> -<AUni ws="qvm-x-ame">+caso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.820" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dde1507d-bfff-4add-8efe-1b525e93e462" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+caso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c8d5f7ec-7f25-480c-bfaf-c9b48ffec3a7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c8eb728c-f0ac-4793-b4f4-bbaa55de99f2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +caso 
\entryTyp root 
\gENG case 
\gSPN caso 
\e +caso 
\c N0 
\ach ca:su 
\akh ca:su 
\acl ca:su / _# 
\acl ca:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ca:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ca:su / _# 
\akl ca:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ca:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ca:su 
\i Num 5.12 <<Israel runacunata caynog ninqui: Avëcis cäsu canman pï warmipis runanta ganratar jarucushgan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="203f46d2-f0d0-4dda-8d1a-ddc15065b005" ownerguid="ffd0547e-e537-4614-ac3f-6d8cd3351f33"> -<Abbreviation> -<AUni ws="en">1.6.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the parts of a reptile.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Parts of a reptile</AUni> -</Name> -<Questions> -<objsur guid="620bd4a3-2288-477b-8c78-5824edd7a251" t="o" /> -<objsur guid="f21666ba-62fa-4442-9d0e-95eee76d100f" t="o" /> -<objsur guid="ec015fe2-b371-4d99-a68e-7fecb65c2187" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="203f9c02-bac6-4ed8-b6c9-af4589007047" ownerguid="a8b3fa0c-077e-4c0d-b4cc-36dcfbdcb4d4"> -<ExampleWords> -<AUni ws="en">colored, discolored, bleached, dyed, faded, mantled, painted, shaded, stained, tinged, tinted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something whose color has changed?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2041bea7-9861-4dc2-b3d8-6cea641f1f79" ownerguid="10a65da6-bb6b-4379-b64f-b831c4fc64da"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">alumna</AUni> -<AUni ws="es">alumna</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e2f9a74c-6560-423c-a6bc-a9ad17626e9e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="2049d587-5ba1-420d-ad86-d9ada997e069"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jorgu</AUni> -<AUni ws="qvm-x-acl">jorgu; jorgo</AUni> -<AUni ws="qvm-x-akh">jorqu</AUni> -<AUni ws="qvm-x-akl">jorqu; jorqo</AUni> -<AUni ws="qvm-x-ame">hurqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hurqu</AUni> -<AUni ws="qvm-x-acl">*hurqu</AUni> -<AUni ws="qvm-x-akh">*hurqu</AUni> -<AUni ws="qvm-x-akl">*hurqu</AUni> -<AUni ws="qvm-x-ame">*hurqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.771" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a216c09c-e564-4c98-9217-4720961f0dab" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hurqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7899d4e0-16b1-41d2-af08-95aaa5c5bd5a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fbfe5dc7-88b8-4eb4-983a-85768a6a8d5b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hurqu 
\entryTyp root 
\gENG take.out 
\gSPN sacar 
\e *hurqu 
\c V2 
\ach jorgu 
\akh jorqu 
\acl jorgu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl jorgo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jorqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jorqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hurqu 
\mcc *hurqu / _ BEN1 / _... CAUS / _ REF NMN / _ PLALLM / _ HELP</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="204c48b3-fb1d-4ab5-bb1d-e9850304dd7c" ownerguid="034238d6-7583-4103-a70a-64706a4d9af4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">purr</AUni> -<AUni ws="es">roncar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0b970638-785b-4a33-ba52-7f0a93de15a7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="204d2162-913a-4c72-855a-6c4405674fee" ownerguid="b08ae47a-1125-4f6f-8a6f-37b5c96397da"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fear</AUni> -<AUni ws="es">temer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="368e989e-c76b-4285-992c-e5fadbe0866d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="205124a1-d3ff-4b0c-8c67-42149b6b23ca"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsa:ga</AUni> -<AUni ws="qvm-x-acl">tsa:ga</AUni> -<AUni ws="qvm-x-akh">tsa:qa</AUni> -<AUni ws="qvm-x-akl">tsa:qa</AUni> -<AUni ws="qvm-x-ame">tsa:qa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chay+TOP</AUni> -<AUni ws="qvm-x-acl">*chay+TOP</AUni> -<AUni ws="qvm-x-akh">*chay+TOP</AUni> -<AUni ws="qvm-x-akl">*chay+TOP</AUni> -<AUni ws="qvm-x-ame">*chay+TOP</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.295" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4d21e4e8-9f3e-4adf-910a-22dfb674ab2c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chay+TOP</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d8b8e53b-0351-43c6-afc4-723f49302116" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="077fafd0-1d3b-41ed-875c-3288312550a0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chay+TOP 
\entryTyp root 
\gENG 
\gSPN 
\e *chay+TOP 
\c N0 
\ach tsa:ga 
\akh tsa:qa 
\acl tsa:ga 
\akl tsa:qa 
\ame tsa:qa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="2051456f-2dc4-4ed8-b481-0c262253089f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">litpa</AUni> -<AUni ws="qvm-x-acl">litpa</AUni> -<AUni ws="qvm-x-akh">litpa</AUni> -<AUni ws="qvm-x-akl">litpa</AUni> -<AUni ws="qvm-x-ame">litpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llitpa</AUni> -<AUni ws="qvm-x-acl">*llitpa</AUni> -<AUni ws="qvm-x-akh">*llitpa</AUni> -<AUni ws="qvm-x-akl">*llitpa</AUni> -<AUni ws="qvm-x-ame">*llitpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.213" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ccafc533-b57c-4c41-9ddc-d6d907368a88" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llitpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8d74f29e-bcca-4d5f-a13e-6e00bbb345d1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="199040b9-25fc-444e-a189-474d9a420e63" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llitpa 
\entryTyp root 
\gENG ash 
\gSPN ceniza 
\e *llitpa 
\c N0 
\ach litpa 
\akh litpa 
\acl litpa 
\akl litpa 
\ame litpa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="20549a61-b41c-4987-b0cc-0e5d27691671"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ladrillu; ladrillo</AUni> -<AUni ws="qvm-x-acl">ladrillu; ladrillu; ladrillo</AUni> -<AUni ws="qvm-x-akh">ladrillu; ladrillo</AUni> -<AUni ws="qvm-x-akl">ladrillu; ladrillu; ladrillo</AUni> -<AUni ws="qvm-x-ame">ladrillu; ladrillo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ladrillo</AUni> -<AUni ws="qvm-x-acl">+ladrillo</AUni> -<AUni ws="qvm-x-akh">+ladrillo</AUni> -<AUni ws="qvm-x-akl">+ladrillo</AUni> -<AUni ws="qvm-x-ame">+ladrillo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.43" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1b6c55a2-2ebe-4f06-b420-eab77f0ea624" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ladrillo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5f7e99a8-62f8-4275-bd10-9f4c30793b5b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6a6b3756-0e0a-491b-a3d6-8ffc9ddb954a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ladrillo 
\entryTyp root 
\gENG brick 
\gSPN ladrillo 
\e +ladrillo 
\c N0 
\ach ladrillu / ~_# 
\ach ladrillo / _# 
\akh ladrillu / ~_# 
\akh ladrillo / _# 
\acl ladrillu / ~_# 
\acl ladrillu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ladrillo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ladrillu / ~_# 
\akl ladrillu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ladrillo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ladrillu / ~_# 
\ame ladrillo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="2059c1db-1ce2-4ab8-9b8c-1dcd84307713" ownerguid="2e02f747-b24a-43f1-90d2-96053fc8615d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="205f83f1-f67a-4104-8cd7-b426f48a1f44" ownerguid="c1c1dcb4-8fe5-43ac-9b91-b2b2bc33de5b"> -<ExampleWords> -<AUni ws="en">threaten, menace, intimidate, terrorize, frighten, cow, bully, browbeat, blackmail, extort, warn</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to threatening someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2061094a-b4a4-430f-abcc-53343d24700c" ownerguid="bafa274e-8bf0-4cf7-8ce7-2c28293db809"> -<ExampleWords> -<AUni ws="en">front door, back door, side door, screen door, double doors, glass door, sliding door</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What kinds of doors are there?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2061dce1-5afe-4654-af2b-2fbbb9cb6022" ownerguid="67fd8c15-a1fa-4f38-9250-309e869910ca"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="2061f38d-0bf7-4dcb-af69-9c6a12014be8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shu:ra</AUni> -<AUni ws="qvm-x-acl">shu:ra</AUni> -<AUni ws="qvm-x-akh">shu:ra</AUni> -<AUni ws="qvm-x-akl">shu:ra</AUni> -<AUni ws="qvm-x-ame">shu:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shu:ra</AUni> -<AUni ws="qvm-x-acl">*shu:ra</AUni> -<AUni ws="qvm-x-akh">*shu:ra</AUni> -<AUni ws="qvm-x-akl">*shu:ra</AUni> -<AUni ws="qvm-x-ame">*shu:ra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.660" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="89ca943e-2560-4660-884e-c75fa6b6c8e4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shu:ra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="076e33c8-29bc-49cc-a58a-c435a3c30dea" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3ed071bd-3f4e-47c9-92bc-20a1f608d05a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shu:ra 
\entryTyp root 
\gENG ? 
\gSPN jora 
\e *shu:ra 
\c N0 
\ach shu:ra 
\akh shu:ra 
\acl shu:ra 
\akl shu:ra 
\ame shu:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="2066be46-f4ae-41da-9496-4a949d6ff527" ownerguid="00fd6b27-f641-48bc-be5b-572dbfeaeb88"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="20694d1a-2637-46ee-a27b-56f7347b15d3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lugar</AUni> -<AUni ws="qvm-x-acl">lugar</AUni> -<AUni ws="qvm-x-akh">lugar</AUni> -<AUni ws="qvm-x-akl">lugar</AUni> -<AUni ws="qvm-x-ame">lugar</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lugar</AUni> -<AUni ws="qvm-x-acl">+lugar</AUni> -<AUni ws="qvm-x-akh">+lugar</AUni> -<AUni ws="qvm-x-akl">+lugar</AUni> -<AUni ws="qvm-x-ame">+lugar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.114" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7281f9c3-3138-4451-b848-383324621b26" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lugar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="29c1c11c-535c-4c66-958e-5438568a35c5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4373a172-2ddf-4320-b0ef-079cb270d1d1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lugar 
\entryTyp root 
\gENG 
\gSPN 
\e +lugar 
\c N0 
\mp +FinalC 
\ach lugar 
\akh lugar 
\acl lugar 
\akl lugar 
\ame lugar</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="206a3c27-7631-461e-9efe-2fa790455c7c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pesca</AUni> -<AUni ws="qvm-x-acl">pesca</AUni> -<AUni ws="qvm-x-akh">pesca</AUni> -<AUni ws="qvm-x-akl">pesca</AUni> -<AUni ws="qvm-x-ame">pesca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pescar</AUni> -<AUni ws="qvm-x-acl">+pescar</AUni> -<AUni ws="qvm-x-akh">+pescar</AUni> -<AUni ws="qvm-x-akl">+pescar</AUni> -<AUni ws="qvm-x-ame">+pescar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.810" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ef01bcc8-8978-4dd5-8c63-79c4a1729998" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pescar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f4ccbe7d-dbcb-409c-beee-1a3e9648fb7f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4897c333-7811-4ee5-95c5-d160db9546ae" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pescar 
\entryTyp root 
\gENG shoot 
\gSPN pescar 
\e +pescar 
\c V2 
\ach pesca 
\akh pesca 
\acl pesca 
\akl pesca 
\ame pesca 
\mcc +pescar / ~_ PRTSPM1</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="206b0422-a0e1-4714-9328-878d63dcc121"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">saluda</AUni> -<AUni ws="qvm-x-acl">saluda</AUni> -<AUni ws="qvm-x-akh">saluda</AUni> -<AUni ws="qvm-x-akl">saluda</AUni> -<AUni ws="qvm-x-ame">saluda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+saludar</AUni> -<AUni ws="qvm-x-acl">+saludar</AUni> -<AUni ws="qvm-x-akh">+saludar</AUni> -<AUni ws="qvm-x-akl">+saludar</AUni> -<AUni ws="qvm-x-ame">+saludar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.429" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="86865563-7769-4c40-9ebc-df0f2c6f9e5b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+saludar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1748b880-7dee-415a-9e0e-5c996c6ff8c8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="913198ef-d365-46f4-84a2-fdad605d474e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +saludar 
\entryTyp root 
\gENG greet 
\gSPN saludar 
\e +saludar 
\c V2 
\ach saluda 
\akh saluda 
\acl saluda 
\akl saluda 
\ame saluda</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="206ba643-c242-4ff6-a8ab-c5324e0b3340" ownerguid="feb45ae0-0c1b-48a4-a258-c4edf4159d39"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="9e39793f-6f7f-4cba-aeb9-69fb47036cf3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2072da4f-9289-4b0e-9c2e-1d97df4bea99" ownerguid="1248f4d8-bd07-4539-9364-b8e4e07876dd"> -<Form> -<AUni ws="qvm-x-ach">Jesucristo; Jesucristu</AUni> -<AUni ws="qvm-x-acl">Jesucristo; Jesucristo; Jesucristu</AUni> -<AUni ws="qvm-x-akh">Jesucristo; Jesucristu</AUni> -<AUni ws="qvm-x-akl">Jesucristo; Jesucristo; Jesucristu</AUni> -<AUni ws="qvm-x-ame">Jesucristo; Jesucristu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="207314f7-0922-4e67-933e-743d6cb0b0fb" ownerguid="79140357-b082-48e9-8d25-b34ee0a5ff5a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="d210b04b-657d-4f72-8777-045e404e9bbd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoAffixAllomorph" guid="2077e726-cf37-4913-b54c-2d034d4883b4" ownerguid="4516f994-a4be-439b-b3df-9bc3693701b9"> -<Form> -<AUni ws="qvm-x-ach">g</AUni> -<AUni ws="qvm-x-acl">g</AUni> -<AUni ws="qvm-x-akh">q</AUni> -<AUni ws="qvm-x-akl">q</AUni> -<AUni ws="qvm-x-ame">q</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="2078ee66-5396-493d-a8a3-bebd56bf0f3d" ownerguid="c137b1b1-3dc5-4d81-9e2b-2fc5f6cc4e4e"> -<Form> -<AUni ws="qvm-x-ach">lupi</AUni> -<AUni ws="qvm-x-acl">lupi; lupe</AUni> -<AUni ws="qvm-x-akh">lupi</AUni> -<AUni ws="qvm-x-akl">lupi; lupe</AUni> -<AUni ws="qvm-x-ame">lupi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="207a61fc-e8d0-41a8-94bb-357fb6e5a32e" ownerguid="bd8a4e42-c7bb-4281-8118-ff644562b54e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.vinager</AUni> -<AUni ws="es">vinagrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cf11a988-d5a8-4fe2-95e0-7e11f1eb6941" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="207bece0-8d40-475d-8ec6-7ad057dee1df" ownerguid="1ce1d540-78fe-4f3b-8321-ca19e38a0902"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2SA 3.29 Tsaynog rurashganpita lapan castancuna y castancunapita miragcunapis imayyagpis nacapäcutsun canserishga gueriwan carpis o leprawan carpis.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="207d3ddc-dee9-43db-be01-56ed6a5e161f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quinray</AUni> -<AUni ws="qvm-x-acl">quinray</AUni> -<AUni ws="qvm-x-akh">kinray</AUni> -<AUni ws="qvm-x-akl">kinray</AUni> -<AUni ws="qvm-x-ame">kinray</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kinray</AUni> -<AUni ws="qvm-x-acl">*kinray</AUni> -<AUni ws="qvm-x-akh">*kinray</AUni> -<AUni ws="qvm-x-akl">*kinray</AUni> -<AUni ws="qvm-x-ame">*kinray</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.991" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="29c0ccd8-4935-4e89-a387-e3578688986e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kinray</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="273f2f47-a9b3-495b-b3a0-a73b0d367efc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e828986c-b6ce-489f-a93d-0a827a8b7e4c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kinray 
\entryTyp root 
\gENG level 
\gSPN a.nivel 
\e *kinray 
\c N0 
\mp +FinalC 
\ach quinray 
\akh kinray 
\acl quinray 
\akl kinray 
\ame kinray 
\i Gen 12.9 Tsaypita aywacurna cercaman cercaman witir aywargan Neguev tsaqui jirca quinrayyag. 
\i Gen 14.7b Tsay quinraypami Amalec runacunata asulargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="207e810e-b6be-453d-a247-46126733f040" ownerguid="2e5acfd2-3009-4496-9cc2-58d2a0088994"> -<ExampleWords> -<AUni ws="en">blonde, brunette, redhead, towhead, redheaded, fair-haired, dark-haired, black-haired, grey-haired</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe someone who has hair of a particular color?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="208266d2-32ea-40d4-9a2f-33f8ecd35555" ownerguid="dfdcfa24-b013-4566-af4a-28ef1dfd4742"> -<ExampleWords> -<AUni ws="en">abacus, almanac, beam, calendar, caliper, chain, chronometer, clock, compass, dial, gauge, instrument, level, line, micrometer, plumb, protractor, quadrant, rod, rule, ruler, sextant, square, straightedge, tape, tapeline, thermometer, watch, yardstick</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What instruments are used to measure something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2082b248-6be6-4b73-8a24-262f56e13969"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">borra:cha</AUni> -<AUni ws="qvm-x-acl">borra:cha</AUni> -<AUni ws="qvm-x-akh">borra:cha</AUni> -<AUni ws="qvm-x-akl">borra:cha</AUni> -<AUni ws="qvm-x-ame">borra:cha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+borracha</AUni> -<AUni ws="qvm-x-acl">+borracha</AUni> -<AUni ws="qvm-x-akh">+borracha</AUni> -<AUni ws="qvm-x-akl">+borracha</AUni> -<AUni ws="qvm-x-ame">+borracha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.979" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ec62a826-2ffb-4744-b559-9395e865be15" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+borracha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e51383ed-486d-44f4-a006-017b7f39990c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f99aa928-abae-489c-875a-73555579c5db" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +borracha 
\entryTyp root 
\gENG drunkard 
\gSPN borracho 
\e +borracha 
\c N0 
\ach borra:cha 
\akh borra:cha 
\acl borra:cha 
\akl borra:cha 
\ame borra:cha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="2084be86-a681-48c5-9ef0-6ee12c9a250b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">corrala</AUni> -<AUni ws="qvm-x-acl">corrala</AUni> -<AUni ws="qvm-x-akh">corrala</AUni> -<AUni ws="qvm-x-akl">corrala</AUni> -<AUni ws="qvm-x-ame">corrala</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+corralar</AUni> -<AUni ws="qvm-x-acl">+corralar</AUni> -<AUni ws="qvm-x-akh">+corralar</AUni> -<AUni ws="qvm-x-akl">+corralar</AUni> -<AUni ws="qvm-x-ame">+corralar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.211" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a9503672-0665-4b1b-bf3a-a1ea7843f981" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+corralar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fcc0fc0b-879b-4d83-9371-6202457d2b9e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="36e18aa8-8c5b-48f5-99f4-e8f07098eecb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +corralar 
\entryTyp root 
\gENG corral 
\gSPN corralar 
\e +corralar 
\c V2 
\ach corrala 
\akh corrala 
\acl corrala 
\akl corrala 
\ame corrala</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="2091a546-620c-49b5-bfa8-14d0a755c236" ownerguid="48f6a6e5-aff4-47b5-8845-d7ebd0d64d3f"> -<Form> -<AUni ws="qvm-x-ach">lushu</AUni> -<AUni ws="qvm-x-acl">lushu; lusho</AUni> -<AUni ws="qvm-x-akh">lushu</AUni> -<AUni ws="qvm-x-akl">lushu; lusho</AUni> -<AUni ws="qvm-x-ame">lushu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="2094e16b-1c0f-47ee-b34c-2ae71a0d9a34" ownerguid="62e53799-aac2-4507-a871-81ae7ef85cce"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pay</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pay</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pay</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pay</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pay</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6d4121d0-f0ed-4233-81e4-f54d239a5704" t="r" /> -</Morph> -<Msa> -<objsur guid="d9219b0e-14bd-4167-bd13-182acfa0647f" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="2095603f-4d0a-4363-b77a-2b77772c0938" ownerguid="32da55f7-a216-468e-9680-01ef7ea68a52"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">reach</AUni> -<AUni ws="es">alcanzar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c03c8f95-5dcc-46fa-bad6-9d022c103215" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="20981e70-4d02-4a47-a698-c4e3b6081378" ownerguid="74261e57-5f50-4201-b7e9-270bc186ffe3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dry</AUni> -<AUni ws="es">secar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d7007555-794e-4746-9288-1e163a2f615e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="20991a77-86c7-4b78-bf2e-fa5b6df11fae" ownerguid="a8858d53-24ec-4a5a-9f96-b0403126e302"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">strength</AUni> -<AUni ws="es">fuerza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c31489c6-af06-4c67-83a0-2f1ecc3339b3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2099a9ba-3095-45a9-a0b1-66fdce11bb71" ownerguid="ead8a9a3-59b0-459b-94e0-7ceb4453d62a"> -<Form> -<AUni ws="qvm-x-ach">nïñu</AUni> -<AUni ws="qvm-x-acl">nïñu; nïñu; nïño</AUni> -<AUni ws="qvm-x-akh">nïñu</AUni> -<AUni ws="qvm-x-akl">nïñu; nïñu; nïño</AUni> -<AUni ws="qvm-x-ame">nïñu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="209a050f-de0c-49f4-ac5c-f7be1043f262" ownerguid="80dc5ca1-44ce-4406-add8-2bbe19c122ab"> -<ExampleWords> -<AUni ws="en">record, make a recording, cut a record, tape</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to recording music?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="209a148d-7e3e-4738-b799-db6ec9ca68a1" ownerguid="6cea20b9-67a9-4e43-81b5-ac54e38743d6"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="1cee6ecb-dc18-466b-bdc9-d9709f547ff1" t="o" /> -<objsur guid="5a6e6b8a-3cf2-4766-b089-fc9b27006e42" t="o" /> -<objsur guid="1d2d92fd-996d-4b98-8880-9587c31229b3" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="209d8df7-471b-4016-9498-83f3d8cabd45" ownerguid="e78c718b-6c58-4e53-a172-a006152082fa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tennis.shoe</AUni> -<AUni ws="es">zapatillo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5642d641-c6b5-4b18-9d8a-4a4dfc7039c6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="209f7376-cbba-4542-b598-0973c956b0e1" ownerguid="0ac5e5f9-e7fe-4d37-a631-eab1ceb1f8ae"> -<ExampleWords> -<AUni ws="en">slope, steep, gentle, contour, gradient</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe how steep a mountain is?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="20a1603a-2157-40b9-b2f9-04d4bdf73e10" ownerguid="4a59d4da-141b-4e72-9281-9e73ea3e01ad"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">june.bug</AUni> -<AUni ws="es">abejorro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="416cce0f-97b2-4a11-96cd-df687ee01ff0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="20a2e768-ef72-4393-8f4c-96540ff15891"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pusag</AUni> -<AUni ws="qvm-x-acl">pusag</AUni> -<AUni ws="qvm-x-akh">pusaq</AUni> -<AUni ws="qvm-x-akl">pusaq</AUni> -<AUni ws="qvm-x-ame">pusaq</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pusaq</AUni> -<AUni ws="qvm-x-acl">*pusaq</AUni> -<AUni ws="qvm-x-akh">*pusaq</AUni> -<AUni ws="qvm-x-akl">*pusaq</AUni> -<AUni ws="qvm-x-ame">*pusaq</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.34" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="69d1826f-79e5-4aa8-8a8a-07e97561e879" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pusaq</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="acf5d624-d859-4a04-b0a2-2ab79facbdfe" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ab184505-6f6b-4e17-bdbf-c1c9f1379fea" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pusaq 
\entryTyp root 
\gENG eight 
\gSPN ocho 
\e *pusaq 
\c N0 
\mp +FinalC 
\ach pusag 
\akh pusaq 
\acl pusag 
\akl pusaq 
\ame pusaq</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="20a3ca22-53dc-4715-be60-c25bafb6aeb9" ownerguid="be3559d9-d69f-4e06-8184-071c35aa2e10"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">He did it <for no reason>.; There is <no basis> for your claim.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">without cause, unreasonable, without basis, absurd, for no reason, by itself</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something has no cause or reason?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="20a6163d-35a9-439c-872d-de777efbd067" ownerguid="95849c42-5a38-4a44-ad73-229308acef2e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="20a80766-ae37-4a0c-8cd6-a6589f4d2e9d" ownerguid="abf2ace8-ee72-480d-b8d4-a4c58d238a8d"> -<Form> -<AUni ws="qvm-x-ach">responsu; responso</AUni> -<AUni ws="qvm-x-acl">responsu; responsu; responso</AUni> -<AUni ws="qvm-x-akh">responsu; responso</AUni> -<AUni ws="qvm-x-akl">responsu; responsu; responso</AUni> -<AUni ws="qvm-x-ame">responsu; responso</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="20a84a72-9241-4026-a818-120f1baec986"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chanca</AUni> -<AUni ws="qvm-x-acl">chanca</AUni> -<AUni ws="qvm-x-akh">chanka</AUni> -<AUni ws="qvm-x-akl">chanka</AUni> -<AUni ws="qvm-x-ame">chanka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tranka.v</AUni> -<AUni ws="qvm-x-acl">*tranka.v</AUni> -<AUni ws="qvm-x-akh">*tranka.v</AUni> -<AUni ws="qvm-x-akl">*tranka.v</AUni> -<AUni ws="qvm-x-ame">*tranka.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.58" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e78fdb1a-ba01-4255-8ca7-68405fa1fa8d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tranka.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8250878b-2826-4ab0-8b38-5de175792ae4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e82ab449-4e0e-4b5f-a1b6-3ab3013cd8b3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tranka.v 
\entryTyp root 
\gENG 
\gSPN 
\e *tranka.v 
\c V1 
\ach chanca 
\akh chanka 
\acl chanca 
\akl chanka 
\ame chanka</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="20aa53b7-7aa6-45aa-a448-888cd648e934" ownerguid="6ea9bfc6-723c-466f-9efc-0992879ae47d"> -<ExampleWords> -<AUni ws="en">file teeth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to filing the teeth?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="20b1a64d-4b7c-44b3-a0f3-a22f43d0d145" ownerguid="77c1318b-be8f-4aac-8114-2b6858829a7c"> -<Form> -<AUni ws="qvm-x-ach">jaca</AUni> -<AUni ws="qvm-x-acl">jaca</AUni> -<AUni ws="qvm-x-akh">jaka</AUni> -<AUni ws="qvm-x-akl">jaka</AUni> -<AUni ws="qvm-x-ame">haka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="20b29a54-4436-41f8-b4ca-2529651db539" ownerguid="63802f24-056b-41b9-9046-1daf869fa622"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="20b58e68-7ed6-4ec9-b7f5-b3ceb229442b" ownerguid="c81004a7-499e-4e05-84c8-3d74a17e97fd"> -<ExampleWords> -<AUni ws="en">toothbrush, floss, toothpick, toothpaste, mouthwash</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What do people use to clean their teeth?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="20b6e2ae-3638-4c31-803b-ce8eb255fa57"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aya</AUni> -<AUni ws="qvm-x-acl">aya</AUni> -<AUni ws="qvm-x-akh">aya</AUni> -<AUni ws="qvm-x-akl">aya</AUni> -<AUni ws="qvm-x-ame">aya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aya.n</AUni> -<AUni ws="qvm-x-acl">*aya.n</AUni> -<AUni ws="qvm-x-akh">*aya.n</AUni> -<AUni ws="qvm-x-akl">*aya.n</AUni> -<AUni ws="qvm-x-ame">*aya.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.900" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="577f0bde-b146-47fe-9b31-e9d5f3457fcc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aya.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="34f4f7ba-d7ab-4c6e-963b-aead3ca48be0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a9182b98-7759-457c-83b2-6f86b37cd06f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aya.n 
\entryTyp root 
\gENG corpse 
\gSPN cadaver 
\e *aya.n 
\c N0 
\ach aya 
\akh aya 
\acl aya 
\akl aya 
\ame aya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="20baa5e7-4f02-4782-a292-c6281d7b5f3a" ownerguid="d9f336cf-0682-4702-ab94-5ade755ddc64"> -<Abbreviation> -<AUni ws="en">7.3.2.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.528" /> -<DateModified val="2022-9-23 16:55:8.528" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for when someone or something causes something to move away from him.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Push</AUni> -</Name> -<Questions> -<objsur guid="bd844382-2279-4a6f-9ee2-bc8f8235a4d5" t="o" /> -<objsur guid="c7c5b39f-48f5-4b19-99d1-730be030e693" t="o" /> -<objsur guid="ed040e5a-dff3-4620-bf6c-789bb1de931c" t="o" /> -<objsur guid="eaae4f48-7a09-4f3d-9a75-183b00625e04" t="o" /> -<objsur guid="42e0143c-b62c-4792-a074-440a5b8905a9" t="o" /> -<objsur guid="cdb16615-8f9f-4c36-af5c-20cb086348ff" t="o" /> -<objsur guid="40bde16a-a4cc-47ae-9c6e-0b11170ca440" t="o" /> -<objsur guid="1c64d24f-1555-4fc3-83e3-b3d6820021e8" t="o" /> -<objsur guid="4e61f567-d7bb-40d0-9236-a7a403a8f3cd" t="o" /> -<objsur guid="e0805071-b345-4f88-975e-71d2e1f582bd" t="o" /> -<objsur guid="f58b5619-94f4-41f6-b59a-38ae9f5b3b56" t="o" /> -<objsur guid="beebcdc8-8ef7-4cb8-b73e-9162146465c1" t="o" /> -<objsur guid="1458bbe7-4be6-401b-ae82-df116068bdb9" t="o" /> -<objsur guid="289aa571-03f4-4ea3-90d2-8190af79fefa" t="o" /> -<objsur guid="a045cf60-6997-4439-ac02-0d32b9e8e8a3" t="o" /> -<objsur guid="e8fe45e4-1d3b-4419-b6c3-a471377f2baf" t="o" /> -<objsur guid="3ac704be-801c-4a2b-ad1f-0c42d63604d2" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="20bc2ed7-1d37-4026-a7d8-55b74e3ead6d" ownerguid="3991615c-a7a6-43a0-9c31-fe61841d1403"> -<Form> -<AUni ws="qvm-x-ach">quintal</AUni> -<AUni ws="qvm-x-acl">quintal</AUni> -<AUni ws="qvm-x-akh">quintal</AUni> -<AUni ws="qvm-x-akl">quintal</AUni> -<AUni ws="qvm-x-ame">quintal</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="20c36cdb-240f-44e1-aff6-f24c2dd37f22" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<ExampleWords> -<AUni ws="en">step on, put foot on/in, tread on, stamp on, underfoot</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to stepping on something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="20cb688a-85b2-4f64-8806-c03a03f89b61" ownerguid="1030cc2f-0c38-4df8-b6f6-87f4e2091742"> -<Form> -<AUni ws="qvm-x-ach">levadüra</AUni> -<AUni ws="qvm-x-acl">levadüra</AUni> -<AUni ws="qvm-x-akh">levadüra</AUni> -<AUni ws="qvm-x-akl">levadüra</AUni> -<AUni ws="qvm-x-ame">levadüra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="20cf5f5d-df51-4878-9397-33d69494a30e" ownerguid="90c1c53f-b530-48b2-bc18-a59cb05b5501"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ISA 3.16 Chaquincunacho watacushgan adornuncuna chilinyänanpagmi gatswayparag purinpis.</Run> -</AStr> -</Example> -</rt> -<rt class="CmAnnotationDefn" guid="20cf6c1c-9389-4380-91f5-dfa057003d51" ownerguid="8d4cbd80-0dca-4a83-8a1f-9db3aa4cff54"> -<Abbreviation> -<AUni ws="en">pt</AUni> -</Abbreviation> -<AllowsComment val="False" /> -<AllowsFeatureStructure val="False" /> -<AllowsInstanceOf val="False" /> -<BackColor val="0" /> -<CanCreateOrphan val="False" /> -<CopyCutPastable val="True" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">Used internally by the program to keep track of when some process was last applied to an object.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<InstanceOfSignature val="0" /> -<IsProtected val="True" /> -<MaxDupOccur val="0" /> -<Multi val="False" /> -<Name> -<AUni ws="en">Process Time</AUni> -</Name> -<PromptUser val="False" /> -<Severity val="0" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -<UserCanCreate val="False" /> -<ZeroWidth val="False" /> -</rt> -<rt class="LexEntry" guid="20d32230-184e-44e4-a123-703f7a0deb35"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ajayla</AUni> -<AUni ws="qvm-x-acl">ajayla</AUni> -<AUni ws="qvm-x-akh">ajayla</AUni> -<AUni ws="qvm-x-akl">ajayla</AUni> -<AUni ws="qvm-x-ame">ahayla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ahaylla</AUni> -<AUni ws="qvm-x-acl">*ahaylla</AUni> -<AUni ws="qvm-x-akh">*ahaylla</AUni> -<AUni ws="qvm-x-akl">*ahaylla</AUni> -<AUni ws="qvm-x-ame">*ahaylla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.669" /> -<DateModified val="2022-10-10 21:18:47.215" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="856aec03-6ec3-4cca-ad5d-59493f58d251" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ahaylla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2e366f3d-257a-4847-9c23-f553adcfd25c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="02fa9fa9-43f5-41ac-b1ed-41e8f818ed60" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ahaylla 
\entryTyp root 
\gENG 
\gSPN 
\e *ahaylla 
\c V1 
\ach ajayla 
\akh ajayla 
\acl ajayla 
\akl ajayla 
\ame ahayla</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="20d3fda2-12a1-42ad-82ab-56a8f90ce479" ownerguid="50ab3705-a81e-4fcc-b3ae-95c075966f69"> -<ExampleWords> -<AUni ws="en">bubble, foam, foaming, froth, whip</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to water forming bubbles?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="20d53906-3a6f-4975-b4a7-db3a5f5861e5" ownerguid="cbc22dc6-a815-49f8-985f-00001c278817"> -<Form> -<AUni ws="qvm-x-ach">finädu</AUni> -<AUni ws="qvm-x-acl">finädu; finädu; finädo</AUni> -<AUni ws="qvm-x-akh">finädu</AUni> -<AUni ws="qvm-x-akl">finädu; finädu; finädo</AUni> -<AUni ws="qvm-x-ame">finädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="20da6b66-7f2f-4b44-9282-4aab1b6958e9" ownerguid="ac187298-85e8-43ed-ba85-cc06a62c08ba"> -<ExampleWords> -<AUni ws="en">shed (skin), molt (feathers)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to animals such as snakes, birds, and insects shedding their skin?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="20de2f4a-6936-49ef-905a-737c961cf9e1" ownerguid="c8602dc5-5c91-480a-b5ce-1c82fe3da83a"> -<ExampleWords> -<AUni ws="en">even, crooked, decayed, white, yellow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a person's teeth?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="20e28482-4108-4a2d-88b7-5e31d37d91d3" ownerguid="d128c232-6dcb-4a21-bc9d-728f28e27005"> -<Form> -<AUni ws="qvm-x-ach">guërra</AUni> -<AUni ws="qvm-x-acl">guërra</AUni> -<AUni ws="qvm-x-akh">guërra</AUni> -<AUni ws="qvm-x-akl">guërra</AUni> -<AUni ws="qvm-x-ame">guërra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="20e3ec5c-0a75-4d9b-8c95-a1666082acab" ownerguid="d00bdac4-098c-4a8c-9e91-cabdfd6a2205"> -<Form> -<AUni ws="qvm-x-ach">wanwanya; wanwanyä</AUni> -<AUni ws="qvm-x-acl">wanwanya; wanwanyä</AUni> -<AUni ws="qvm-x-akh">wanwanya; wanwanyä</AUni> -<AUni ws="qvm-x-akl">wanwanya; wanwanyä</AUni> -<AUni ws="qvm-x-ame">wanwanya; wanwanyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="20e60320-b14b-4bc1-9d2d-6d28e1c79cfc" ownerguid="8d47c9ec-80c4-4309-9848-c453dcd71182"> -<ExampleWords> -<AUni ws="en">living thing, life form, organism</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something that is alive?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="20e7732b-07a9-4377-9b77-a2b3309c25e5" ownerguid="cd4300c9-265e-4457-8e33-4e0c9a4d4ba8"> -<ExampleWords> -<AUni ws="en">increase in value, inflate, inflation, appreciate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to increasing the value of something?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="20e7d987-0d55-46d4-ab69-0b0cce2f1e24" ownerguid="fcd22c85-7ee1-4d31-8633-9dbd32344211"> -<Abbreviation> -<AUni ws="en">7.2.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to moving away from a place.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15D Leave, Depart, Flee, Escape, Send</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Leave</AUni> -</Name> -<Questions> -<objsur guid="c3a08c27-751a-4148-b3d4-74b344478a50" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b08424b7-a2f1-4a0e-82d1-665249e12cfc" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="20eb022d-a563-4148-9068-a2d6bd1e16c4" ownerguid="d5319800-c4ad-4a6f-957e-3b4b993e7b7f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="3a3fd95e-0873-452e-b317-628c2416d717" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">dirty!</AUni> -<AUni ws="es">sucio!</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a5b42144-371c-4767-a26f-bafed0c81b90" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="20ec7fa8-33dd-4671-afa6-993abc6398bb"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">ending</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="20ec9ced-9671-427a-a201-7d48491a157b" ownerguid="4a4392f2-adfd-4a53-ad99-27246f8e7f60"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.found</AUni> -<AUni ws="es">fundar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f3434500-83df-4a55-99d8-a4ece17d4d38" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="20ed42d8-510f-4a32-89be-793ed315faf1" ownerguid="8ce6709f-f772-4638-a1aa-c132666f3563"> -<ExampleWords> -<AUni ws="en">annoyance, exasperation, frustration, irritation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of annoyance?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="20eec82f-9b58-4aad-858f-d29228102fe6" ownerguid="19099415-cb0c-4b4a-83ed-9e101f34c67e"> -<Form> -<AUni ws="qvm-x-ach">bendisi</AUni> -<AUni ws="qvm-x-acl">bendisi; bendise</AUni> -<AUni ws="qvm-x-akh">bendisi</AUni> -<AUni ws="qvm-x-akl">bendisi; bendise</AUni> -<AUni ws="qvm-x-ame">bendisi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="20ef979b-dc82-4bf3-a4c4-bc02c73ee4b3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">carnish</AUni> -<AUni ws="qvm-x-acl">carnish</AUni> -<AUni ws="qvm-x-akh">carnish</AUni> -<AUni ws="qvm-x-akl">carnish</AUni> -<AUni ws="qvm-x-ame">carnish</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cordero.1</AUni> -<AUni ws="qvm-x-acl">+cordero.1</AUni> -<AUni ws="qvm-x-akh">+cordero.1</AUni> -<AUni ws="qvm-x-akl">+cordero.1</AUni> -<AUni ws="qvm-x-ame">+cordero.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.190" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7295ccf5-e015-4f85-80aa-17bc0c2625d6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cordero.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d2064bed-8fc1-4149-a02d-cc2c1c741531" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bce88b55-6cfe-4234-b4df-6c1a62fb53fd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cordero.1 
\entryTyp root 
\gENG lamb 
\gSPN cordero 
\e +cordero.1 
\c N0 
\mp +FinalC 
\ach carnish 
\akh carnish 
\acl carnish 
\akl carnish 
\ame carnish</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="20f1f288-b76f-4679-bf9d-677dd009790a" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<ExampleWords> -<AUni ws="en">trample, wear a path</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(19) What words refer to the effect of walking on something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="20f25e19-b425-4f82-9aa1-a8780c420f85" ownerguid="134c68a9-ac3f-4b7e-8fca-63642d796a75"> -<ExampleWords> -<AUni ws="en">census, take a census, number (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to counting the citizens?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="20f45413-19df-4423-bcf8-5f9924503731"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aspi</AUni> -<AUni ws="qvm-x-acl">aspi; aspe</AUni> -<AUni ws="qvm-x-akh">aspi</AUni> -<AUni ws="qvm-x-akl">aspi; aspe</AUni> -<AUni ws="qvm-x-ame">aspi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aspi</AUni> -<AUni ws="qvm-x-acl">*aspi</AUni> -<AUni ws="qvm-x-akh">*aspi</AUni> -<AUni ws="qvm-x-akl">*aspi</AUni> -<AUni ws="qvm-x-ame">*aspi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.850" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b3c7fd4f-3f63-468a-bea5-945a41171df7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aspi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fb918c26-7177-46e0-89ff-194a1606aeb4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7bfba858-0f05-4ce7-8db0-15f3e12c608e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aspi 
\entryTyp root 
\gENG scratch 
\gSPN rascar 
\e *aspi 
\c V2 
\mp +FinalI 
\ach aspi 
\akh aspi 
\acl aspi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl aspe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl aspi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl aspe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame aspi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="20f51a14-1e9e-4b4d-9240-a2cdb303d27e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">goluta</AUni> -<AUni ws="qvm-x-acl">goluta</AUni> -<AUni ws="qvm-x-akh">qoluta</AUni> -<AUni ws="qvm-x-akl">qoluta</AUni> -<AUni ws="qvm-x-ame">quluta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qulluta</AUni> -<AUni ws="qvm-x-acl">*qulluta</AUni> -<AUni ws="qvm-x-akh">*qulluta</AUni> -<AUni ws="qvm-x-akl">*qulluta</AUni> -<AUni ws="qvm-x-ame">*qulluta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.851" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="54a9197c-f4c8-4eec-861c-1204db14a439" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qulluta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="11095ce7-5e0e-47e9-a0ee-d1bde24b058d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="08315cb5-3be0-4d7d-854b-fa244289c7e2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qulluta 
\entryTyp root 
\gENG round.rock 
\gSPN 
\e *qulluta 
\c N0 
\ach goluta 
\akh qoluta 
\acl goluta 
\akl qoluta 
\ame quluta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="20fab998-033b-4e50-ae7f-4906bd5a39ae" ownerguid="5c1fb772-962c-4941-8593-f81f27add753"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="20fadd54-6cec-4bb3-a47c-66c29aaff227" ownerguid="65bb0844-9a71-4eec-9b86-bf4b4b508a28"> -<Abbreviation> -<AUni ws="en">4.4.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to avoiding something bad, such as trouble or someone you don't want to meet.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Avoid</AUni> -</Name> -<Questions> -<objsur guid="c42048a6-ae61-4814-85d5-cbec8686ad00" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="20ff7b21-2af8-4d28-ac7c-78ddafcec7ba"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">trampa</AUni> -<AUni ws="qvm-x-acl">trampa</AUni> -<AUni ws="qvm-x-akh">trampa</AUni> -<AUni ws="qvm-x-akl">trampa</AUni> -<AUni ws="qvm-x-ame">trampa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+trampa</AUni> -<AUni ws="qvm-x-acl">+trampa</AUni> -<AUni ws="qvm-x-akh">+trampa</AUni> -<AUni ws="qvm-x-akl">+trampa</AUni> -<AUni ws="qvm-x-ame">+trampa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.48" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8c73f2c7-53ea-4372-b646-da9ca953f36d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+trampa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6698511c-2a1a-4cfd-a3d4-2ef8b20f2c70" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cffd12d0-f19a-4b7e-ad95-1be48a8e9b25" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +trampa 
\entryTyp root 
\gENG trap 
\gSPN trampa 
\e +trampa 
\c N0 
\ach trampa 
\akh trampa 
\acl trampa 
\akl trampa 
\ame trampa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="210424c0-cabd-4ec9-bcb4-f2d34073f95c" ownerguid="4317e079-ae91-404e-baaa-ab8c97e0da7d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="21043c41-eb08-4830-9cce-3f639bb9bd31" ownerguid="f37f3a4f-e1e2-4ac2-b4b3-9c02223e6dcf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="cb237afa-c428-4439-8e70-0dd984e3ef0e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="21065a53-7f6d-4b25-9b4b-6d4fad141cac" ownerguid="ad7cc381-1dc6-4fc2-94a4-acd5bf7a11da"> -<ExampleWords> -<AUni ws="en">make sure, make certain, insure, ensure, see that, see to it</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to doing something in order to be certain that something will happen?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2107e683-bc9d-4917-ba4c-a8ab0d42c820" ownerguid="d2c0de49-eaa3-4b97-b23a-c9a1487a5af9"> -<Form> -<AUni ws="qvm-x-ach">yära</AUni> -<AUni ws="qvm-x-acl">yära</AUni> -<AUni ws="qvm-x-akh">yära</AUni> -<AUni ws="qvm-x-akl">yära</AUni> -<AUni ws="qvm-x-ame">yära</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="21083632-77f8-4c64-b957-34c04bce47f4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">iscupullu</AUni> -<AUni ws="qvm-x-acl">iscupullu; iscupullu; iscupullo</AUni> -<AUni ws="qvm-x-akh">iskupullu</AUni> -<AUni ws="qvm-x-akl">iskupullu; iskupullu; iskupullo</AUni> -<AUni ws="qvm-x-ame">iskupullu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*iskupullu</AUni> -<AUni ws="qvm-x-acl">*iskupullu</AUni> -<AUni ws="qvm-x-akh">*iskupullu</AUni> -<AUni ws="qvm-x-akl">*iskupullu</AUni> -<AUni ws="qvm-x-ame">*iskupullu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.860" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2d0b209f-044d-4e3e-923d-50c58cde9b2a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*iskupullu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="22f3bf70-7951-421a-9714-6c5c0876c682" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a0cd3b93-84b4-46b1-bc50-0bf090e5e014" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *iskupullu 
\entryTyp root 
\gENG 
\gSPN 
\e *iskupullu 
\c N0 
\ach iscupullu 
\akh iskupullu 
\acl iscupullu / _# 
\acl iscupullu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl iscupullo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl iskupullu / _# 
\akl iskupullu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl iskupullo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame iskupullu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2109b537-3ee7-4727-928a-99bbe846d08f" ownerguid="54b6dff4-a21d-490d-8279-69f36a179c93"> -<ExampleWords> -<AUni ws="en">meeting place, venue, rendezvous, center, haunt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the place where people meet?</AUni> -</Question> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="210b55d0-3031-4731-891b-77f3eaa2a10a" ownerguid="e6fa6045-881e-4f52-85c9-b9d7540eeffb" /> -<rt class="WfiWordform" guid="210d3d1c-036d-4a24-8d8b-b004d99be60c"> -<Analyses> -<objsur guid="faea150f-b612-4fce-81b2-06d69eda8a9e" t="o" /> -</Analyses> -<Checksum val="-844944953" /> -<Form> -<AUni ws="qvm-x-akh">yarqumun</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="210fcfec-1ee9-494c-96be-72730127f7f2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sue:la</AUni> -<AUni ws="qvm-x-acl">sue:la</AUni> -<AUni ws="qvm-x-akh">sue:la</AUni> -<AUni ws="qvm-x-akl">sue:la</AUni> -<AUni ws="qvm-x-ame">sue:la</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+suela</AUni> -<AUni ws="qvm-x-acl">+suela</AUni> -<AUni ws="qvm-x-akh">+suela</AUni> -<AUni ws="qvm-x-akl">+suela</AUni> -<AUni ws="qvm-x-ame">+suela</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.733" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6d0aa439-5ca4-4e17-9ea4-230a2580901a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+suela</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d09017e9-ba73-4b85-97a3-d9697c3b8619" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="be5f332d-78cd-43a7-b5fc-0b975c31281a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +suela 
\entryTyp root 
\gENG leather 
\gSPN suela 
\e +suela 
\c N0 
\ach sue:la 
\akh sue:la 
\acl sue:la 
\akl sue:la 
\ame sue:la</Run> -</AStr> -</Custom> -</rt> -<rt class="Segment" guid="211029d5-d23f-4f12-9012-c1d684993ec4" ownerguid="a067c5ec-fc08-47da-98ba-acff5d70cac0"> -<BeginOffset val="0" /> -</rt> -<rt class="LexEntry" guid="21113dbe-2d87-4c6b-b681-c8a66bc8aafe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chaga</AUni> -<AUni ws="qvm-x-acl">chaga</AUni> -<AUni ws="qvm-x-akh">chaqa</AUni> -<AUni ws="qvm-x-akl">chaqa</AUni> -<AUni ws="qvm-x-ame">chaqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*traqa</AUni> -<AUni ws="qvm-x-acl">*traqa</AUni> -<AUni ws="qvm-x-akh">*traqa</AUni> -<AUni ws="qvm-x-akl">*traqa</AUni> -<AUni ws="qvm-x-ame">*traqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.68" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="be366adb-d4c5-4424-8a22-6f06c46c2f55" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*traqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b99ab801-6b4b-46c4-a636-1add64dd477e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5b93a6b2-6957-42d8-a8c9-74b025f63bcb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *traqa 
\entryTyp root 
\gENG scoop 
\gSPN servir 
\e *traqa 
\c V2 
\ach chaga 
\akh chaqa 
\acl chaga 
\akl chaqa 
\ame chaqa</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="2114eaf4-5a4e-4844-90ec-1fa4fc6f90bb" ownerguid="e44c182e-34ee-4712-9db8-cd2fbaf0ec26"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">warmi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">warmi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">warmi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f527da1e-d074-47e5-ab55-35d9106f617d" t="r" /> -</Morph> -<Msa> -<objsur guid="86b5e60e-c55d-4797-a0a2-e6891fff7ec3" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="21163ac2-bda6-4506-851d-daaa2b45efc5" ownerguid="35b617b3-6503-4e5e-aff6-fccfe4730f9e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="21167445-f1b1-49b4-b147-bc792616c432" ownerguid="c72985cf-b07f-4ed5-873a-a2209929667e"> -<Abbreviation> -<AUni ws="en">8.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words related to time, and for words indicating the temporal location of an event.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>67 Time</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Time</AUni> -</Name> -<OcmCodes> -<Uni>805 Ordering of Time</Uni> -</OcmCodes> -<Questions> -<objsur guid="7f99006f-541b-4816-a9c7-a8bb7ae56723" t="o" /> -<objsur guid="5e8a01ea-42bd-427a-89dc-ad06dadaba0e" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="14ad95ad-50fc-450f-b44d-4273df0b1e8b" t="o" /> -<objsur guid="c2b720f5-1123-446e-9f60-088a3272b889" t="o" /> -<objsur guid="532245e7-8f46-4394-9045-240475ee62e8" t="o" /> -<objsur guid="06cb2024-5f7b-467c-b32c-ef4c56030ac0" t="o" /> -<objsur guid="1f4efae7-1029-4b66-80ee-802459a7baf5" t="o" /> -<objsur guid="18a6684f-d324-45ee-855c-44d473916b14" t="o" /> -<objsur guid="780fbf89-f2ba-404c-b288-f6ca637bbc90" t="o" /> -<objsur guid="df149819-608f-46cd-ba0f-55f1d9d2e8ec" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="211b8ff1-233c-4884-9284-bbde7998a0b2" ownerguid="b0e2635e-47c4-4995-942b-07f6635faf6f"> -<ExampleWords> -<AUni ws="en">beekeeping, beekeeper, suit, hive, bee, honey, honeycomb, wax, queen, drone, worker, nectar, sting, smoke</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to keeping bees?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="211ed6f3-615a-426a-b8aa-4282cf8dc8ac" ownerguid="18561033-3136-46f7-aabd-3efff1a05172"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StTxtPara" guid="2120c813-0e82-4ae3-9f40-cfc12ec9e382" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">rikakamuptiki. </Run> -<Run ws="en">\tr < V2 *rika > REF AFAR ADVDS 2P</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="b95741a0-f0ad-4258-858e-98f319e66951" t="o" /> -<objsur guid="08b11e79-1924-4e53-bdde-51191a4c82f8" t="o" /> -</Segments> -</rt> -<rt class="MoStemAllomorph" guid="2120d890-2ebd-4093-8043-7fc096fdb2dc" ownerguid="84a817f1-0231-4d9e-8427-162a9b850f17"> -<Form> -<AUni ws="qvm-x-ach">espäda</AUni> -<AUni ws="qvm-x-acl">espäda</AUni> -<AUni ws="qvm-x-akh">espäda</AUni> -<AUni ws="qvm-x-akl">espäda</AUni> -<AUni ws="qvm-x-ame">espäda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="21235d4e-36b0-4559-92eb-e0c98c5cd361" ownerguid="795f21b4-7318-4cf0-8afd-1f7283dc6b40"> -<Form> -<AUni ws="qvm-x-ach">piña</AUni> -<AUni ws="qvm-x-acl">piña</AUni> -<AUni ws="qvm-x-akh">piña</AUni> -<AUni ws="qvm-x-akl">piña</AUni> -<AUni ws="qvm-x-ame">piña</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2125110b-c026-48c4-89ba-2753c1f738a8" ownerguid="e626c65e-eb79-4230-b07a-a6d975d3fe3d"> -<ExampleWords> -<AUni ws="en">narrow, curved, thin lips, thick lips</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a person's mouth?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="21268811-531a-462e-8608-0f4cae7e4c37" ownerguid="1e102423-6167-486a-bfef-dad1c9cdf1eb"> -<ExampleWords> -<AUni ws="en">drive, cycle, pedal, ride</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to moving in a vehicle?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="21269478-1012-469e-be33-72ac3f6703ee" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<ExampleWords> -<AUni ws="en">sad, depressing, grievous, heartbreaking, plaintive, mournful, tragic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe something that causes someone to feel sad?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="212785e1-ecce-44d6-b4e0-cf935fba0990" ownerguid="19b3fbee-ef66-47f4-bc63-edb56b02ae91"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tendon</AUni> -<AUni ws="es">coyuntura?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ba287029-72d0-4c95-a47f-4f5dd64b3064" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="212914f2-1f1a-4ab4-8aae-7955ec0c4d84"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ya; ya:</AUni> -<AUni ws="qvm-x-acl">ya; ya:</AUni> -<AUni ws="qvm-x-akh">ya; ya:</AUni> -<AUni ws="qvm-x-akl">ya; ya:</AUni> -<AUni ws="qvm-x-ame">ya; ya:</AUni> -</Custom> -<AlternateForms> -<objsur guid="6fbee6c7-3e01-4108-b3fd-e300077d0160" t="o" /> -</AlternateForms> -<DateCreated val="2022-9-23 18:26:20.487" /> -<DateModified val="2022-10-16 15:8:45.400" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cb0fda97-5d64-4a50-89f0-b6c38c582b4c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">BEC</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a65486e9-3066-4a42-8c90-7aadcf10ae12" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="59a58f31-e8cb-4d44-8c51-5f05fd4f00ba" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx BEC 
\entryTyp suffix 
\gENG BEC 
\gSPN CONV 
\e BEC 
\c N0/V1 N0/V2 R0/V1 
\o 000 
\mp -PMonophthongizes 
\mp +underlong 
\ach ya foreshortened 
\ach ya: 
\akh ya foreshortened 
\akh ya: 
\acl ya foreshortened 
\acl ya: 
\akl ya foreshortened 
\akl ya: 
\ame ya foreshortened 
\ame ya: 
\mp +FinalC 
\mp +FinalLength 
\mcc BEC / ~_ 1PRS2 
\mcc BEC / ~_ [q] # 
\mcc BEC / [TakeBEC] ..._ 
\mcc mcc BEC / ~_ [q] 
\mcc BEC / ~_ 1 TOP 
\mcc BEC / REL 3P ~_ [q] 
\mcc BEC / 1P ~_ 
\mcc BEC / 2P ~_ [q] 
\mcc BEC / REL1 [poss] ~_ 
\mcc BEC / ~_... BEC 
\mcc BEC / ~_ 1O</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="2129b102-5acc-4824-ad82-f0663cced42a" ownerguid="ccfb9c3b-2049-4345-8c51-b12d3308741a"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="724831f2-a76a-4195-802e-0353e2d5220b" t="o" /> -<objsur guid="8db46b46-2795-45ce-85b4-f6ff4b9c932d" t="o" /> -<objsur guid="00f2c3a8-65a7-4ae4-8a4d-b63d7f3f0489" t="o" /> -<objsur guid="ff87faa0-9a20-4808-977d-e7033ae0ce60" t="o" /> -</MorphBundles> -</rt> -<rt class="LexExampleSentence" guid="212ab151-2641-42d6-9c3c-ec85178d1a33" ownerguid="d9c2e604-bbf7-4382-8732-88500e441a0e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2KI 25.19 Tsaynoglami prësu tsarergan soldäducunapa capitanninta, reyta yätseg pitsga runacunata, lëva shuntag capitanta y sogta chunca (60) mayor runacunatapis.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="212d4c4e-646d-4c51-b4fa-425a5adaa27b" ownerguid="18b3ca02-18fe-4ab5-8709-c20957a0a2fb"> -<ExampleWords> -<AUni ws="en">be proud of yourself, be full of yourself, fancy yourself, let something go to your head</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to being proud of yourself?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="212efd8b-49b9-416e-b06d-69e405e9298f" ownerguid="d2c54b09-ad0e-4660-9902-c9c80c3c64f4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2130356b-9e02-4547-8f91-cb37af3c7198" ownerguid="4153416a-784d-4f7c-a664-2640f7979a14"> -<ExampleWords> -<AUni ws="en">flotsam, snag, logjam</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to something floating down a river or caught in it?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2132d9a2-9242-4a24-8d0f-6065a95cf30b" ownerguid="f4580c19-ba9e-4f71-a46a-6f3c4b19c36c"> -<ExampleWords> -<AUni ws="en">set sail, sail off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to leaving in a boat?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="21333e29-eec4-4f7c-9235-5fd3fef531a2" ownerguid="f47e971c-6c4f-4043-9748-90e387f2cc3e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">close</AUni> -<AUni ws="es">cerca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="13636163-1442-4711-9290-acdfc2d7fd39" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="213434a0-a01a-49df-9f76-bb1f7bd7ff27" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<ExampleWords> -<AUni ws="en">dismal, depressing, dreary, bleak, cheerless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words describe a place that causes someone to feel sad?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2134b548-e24c-48a4-8fcc-09a474fc866e" ownerguid="873ef4a1-6694-485e-b894-7cf311fa11d5"> -<Form> -<AUni ws="qvm-x-ach">gata</AUni> -<AUni ws="qvm-x-acl">gata</AUni> -<AUni ws="qvm-x-akh">qata</AUni> -<AUni ws="qvm-x-akl">qata</AUni> -<AUni ws="qvm-x-ame">qata</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="21387cd0-102f-4acc-9f2e-df93dd5afddd" ownerguid="70bf4aaa-4f1d-457a-9739-51dfdfc500a0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ff5f4734-2c7c-42d4-bd26-41d4e52e68bc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2138a390-8f67-435d-a9ef-a0dd429c6a76" ownerguid="4c4fbb9a-2361-4eb0-a23a-6ecbfa3e4a66"> -<Form> -<AUni ws="qvm-x-ach">pïpï</AUni> -<AUni ws="qvm-x-acl">pïpï</AUni> -<AUni ws="qvm-x-akh">pïpï</AUni> -<AUni ws="qvm-x-akl">pïpï</AUni> -<AUni ws="qvm-x-ame">pïpï</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="21395208-dfce-48c7-994a-efb11d7c5d81" ownerguid="84812e05-5a4d-4776-abaa-761b9a977ff6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">childless</AUni> -<AUni ws="es">sin.hijos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f0aab5ce-22a0-497a-a0e1-6c600d8ebee4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="2139db65-1662-4a7f-889d-014baf893e14"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">afeita</AUni> -<AUni ws="qvm-x-acl">afeita</AUni> -<AUni ws="qvm-x-akh">afeita</AUni> -<AUni ws="qvm-x-akl">afeita</AUni> -<AUni ws="qvm-x-ame">afeita</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+afeitar</AUni> -<AUni ws="qvm-x-acl">+afeitar</AUni> -<AUni ws="qvm-x-akh">+afeitar</AUni> -<AUni ws="qvm-x-akl">+afeitar</AUni> -<AUni ws="qvm-x-ame">+afeitar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.659" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="67e19eda-002b-436d-872a-fca3929ac906" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+afeitar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="734f4b9e-461a-4324-b0d9-ce68544dc64e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5fff0004-4f2b-4d17-9e1a-626f52ffc806" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +afeitar 
\entryTyp root 
\gENG shave 
\gSPN afeitarse 
\e +afeitar 
\c V2 
\ach afeita 
\akh afeita 
\acl afeita 
\akl afeita 
\ame afeita</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="213a9500-2982-48b6-a465-1db001c4a828" ownerguid="41cef4fd-9a23-4439-b3e7-74a300b7a8cc"> -<Form> -<AUni ws="qvm-x-ach">puru</AUni> -<AUni ws="qvm-x-acl">puru; puru; puro</AUni> -<AUni ws="qvm-x-akh">puru</AUni> -<AUni ws="qvm-x-akl">puru; puru; puro</AUni> -<AUni ws="qvm-x-ame">puru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="213abc0b-c9b5-4baf-8ad9-910f3580eee3" ownerguid="8db17eef-6c42-4ba0-9f07-a3b0e7c8f1e1"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">I'm looking for the man <who> killed John.; I found the coin <that> I lost.; That is the reason <why> I did it.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">who, whom, that, which, why</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What pronouns are used in relative clauses?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2144eeab-4f3b-4482-8bdd-80db990741c8" ownerguid="789acf1f-932f-4e95-b9dd-23422aea34da"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">jealous</AUni> -<AUni ws="es">envidioso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="62eeb856-b466-418a-82e7-83eb291873ea" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="21461d78-02f9-4be6-80e3-6a4498ce8f4c" ownerguid="a3ba10f3-66e3-4ad5-8057-453b8941e497"> -<Abbreviation> -<AUni ws="en">4.8.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.286" /> -<DateModified val="2022-9-23 16:55:8.286" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a prisoner of war.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>55E Prisoner of War</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Prisoner of war</AUni> -</Name> -<Questions> -<objsur guid="7874a589-a19d-436a-8b88-1e890963f0fd" t="o" /> -<objsur guid="0f97a8d9-6fc5-4ac1-9bf6-e2ffec529763" t="o" /> -<objsur guid="5961bea3-66ed-4e29-a1b9-51d28f30ae96" t="o" /> -<objsur guid="e7645251-5ece-4b62-8405-24512a10bd6f" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="13f62fa1-589c-4a46-9bbc-b0fd1001e21f" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="2147bbb5-ceb3-49c4-ac4c-fdb48901be61" ownerguid="e76fb4fe-f105-420c-9054-bb1e7246cd53"> -<Form> -<AUni ws="qvm-x-ach">arëti; arëti</AUni> -<AUni ws="qvm-x-acl">arëti; arëti; arëte</AUni> -<AUni ws="qvm-x-akh">arëti; arëti</AUni> -<AUni ws="qvm-x-akl">arëti; arëti; arëte</AUni> -<AUni ws="qvm-x-ame">arëti; arëti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="2148f121-ca32-49ed-822f-c79de01ef739" ownerguid="3fea4881-b06a-48a6-8c43-2acda231b2ad"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="214eaa5a-e3ec-422e-aa9b-f78f85cd8c2a" ownerguid="e54cd744-d106-4bcf-bd07-b8783c075c21"> -<ExampleWords> -<AUni ws="en">set the fashion, set the trend, bring in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to making something fashionable?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="21512e7f-02a5-4047-a9a7-3d2dd1915b18" ownerguid="5c468a85-e45f-4ea0-a3ba-68feda7e85a1"> -<ExampleWords> -<AUni ws="en">deliver, delivery, help to give birth, midwifery, obstetrics</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to giving help to a woman who is giving birth?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2151f146-f6b1-44ae-a647-0ccbc1c13ec9" ownerguid="29e82cb2-b520-4476-98c7-e40a67fe8e25"> -<Form> -<AUni ws="qvm-x-ach">ancu</AUni> -<AUni ws="qvm-x-acl">ancu; ancu; anco</AUni> -<AUni ws="qvm-x-akh">anku</AUni> -<AUni ws="qvm-x-akl">anku; anku; anko</AUni> -<AUni ws="qvm-x-ame">anku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="2155198b-ec9f-4a49-a77b-daa69776d026"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">amayna</AUni> -<AUni ws="qvm-x-acl">amayna</AUni> -<AUni ws="qvm-x-akh">amayna</AUni> -<AUni ws="qvm-x-akl">amayna</AUni> -<AUni ws="qvm-x-ame">amayna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*amayna</AUni> -<AUni ws="qvm-x-acl">*amayna</AUni> -<AUni ws="qvm-x-akh">*amayna</AUni> -<AUni ws="qvm-x-akl">*amayna</AUni> -<AUni ws="qvm-x-ame">*amayna</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.749" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d1b97313-ed82-4c6f-9720-e4120e5d9f7d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*amayna</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c0a0e0ed-7657-44b5-8941-bd317b03737d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cb2b29f5-b06c-43f3-b7c0-c51ec187503f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *amayna 
\entryTyp root 
\gENG 
\gSPN calmar 
\e *amayna 
\c V2 
\ach amayna 
\akh amayna 
\acl amayna 
\akl amayna 
\ame amayna</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="2158eb7d-eb59-4740-9628-9080d7f51a97" ownerguid="d502512c-966b-4752-8636-716fb29facfe"> -<Abbreviation> -<AUni ws="en">5.7.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.337" /> -<DateModified val="2022-9-23 16:55:8.337" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to waking up from sleep.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Wake up</AUni> -</Name> -<Questions> -<objsur guid="eccc2460-5836-479b-bf58-ad2e7f9e3e2a" t="o" /> -<objsur guid="2f5b07ba-8f3f-4f23-a784-dd40b75a79cf" t="o" /> -<objsur guid="2b383778-9e56-4aa8-8138-f332044acebc" t="o" /> -<objsur guid="5d688afc-ce70-49e2-84d0-c097e19ad384" t="o" /> -<objsur guid="12722e79-a117-4413-95fe-d2bd972c82ed" t="o" /> -<objsur guid="65526c13-6a92-49df-aabc-429428114a7d" t="o" /> -<objsur guid="5fd01fc2-a453-45b8-92e1-c43e009e3dcb" t="o" /> -<objsur guid="fe9a428d-4e10-47de-9fd8-79550627b0ab" t="o" /> -<objsur guid="592d6342-db62-4c77-9070-d7bf07b28394" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="2158eecf-90e9-47c3-b69a-bf0a456506f3" ownerguid="6a23a757-18ae-47dc-b62b-6f29edacf38b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="215ca7ce-111a-447e-a919-7a9bbf508d41" ownerguid="1aa3b9b8-ed19-4ec5-a42b-57599a8cfe20"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">all</AUni> -<AUni ws="es">todo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="313f4c42-6405-4fb6-a6a2-5237af6ed11b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="215e8989-3a09-45a6-9407-ccb42cff0d6d" ownerguid="04272a3a-e644-4701-8b40-5b50e4775dde"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" t="r" /> -</Morph> -<Msa> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="215f645b-5b5d-4a79-b4fb-06837581bd12" ownerguid="9351d5b6-5a87-422a-9e82-ca6a0bacd3e9"> -<ExampleWords> -<AUni ws="en">calming</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that causes someone to feel calm?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2161034a-eedb-4eef-81fb-b7541055f354" ownerguid="dc0a84c0-a16d-490a-bf52-1f539844011b"> -<Form> -<AUni ws="qvm-x-ach">malamäña</AUni> -<AUni ws="qvm-x-acl">malamäña</AUni> -<AUni ws="qvm-x-akh">malamäña</AUni> -<AUni ws="qvm-x-akl">malamäña</AUni> -<AUni ws="qvm-x-ame">malamäña</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2162eb83-d27a-4874-83cb-475f4ac28ff1" ownerguid="c2630384-2f72-4a96-baed-3fff03383362"> -<ExampleWords> -<AUni ws="en">lie fallow, animals graze, plow under plants</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What is done to a field after the crops are harvested?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="21647a26-2e52-4ae7-9fd8-c63eb9b5e0a6" ownerguid="9a25af4b-3063-4f36-8a44-c6732e91a2b5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">flower</AUni> -<AUni ws="es">flor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f588a915-ba11-4d1c-af51-b2446bb5eda8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2166002a-b1f3-404d-8a04-fcb7218abf4a" ownerguid="98830eda-3997-4f4a-9ba4-664df669e7e2"> -<ExampleWords> -<AUni ws="en">foxhole, trench</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a hole dug in the ground to protect soldiers?</AUni> -</Question> -</rt> -<rt class="MoInflAffixSlot" guid="2167bf6d-84f4-4209-b618-7a1edf05092a" ownerguid="86ff66f6-0774-407a-a0dc-3eeaf873daf7"> -<Name> -<AUni ws="en">word final</AUni> -</Name> -<Optional val="True" /> -</rt> -<rt class="LexEntry" guid="216e816d-c432-4cd2-8157-c8ca240a3492"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bozal</AUni> -<AUni ws="qvm-x-acl">bozal</AUni> -<AUni ws="qvm-x-akh">bozal</AUni> -<AUni ws="qvm-x-akl">bozal</AUni> -<AUni ws="qvm-x-ame">bozal</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bozal</AUni> -<AUni ws="qvm-x-acl">+bozal</AUni> -<AUni ws="qvm-x-akh">+bozal</AUni> -<AUni ws="qvm-x-akl">+bozal</AUni> -<AUni ws="qvm-x-ame">+bozal</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.971" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1e78692d-2861-4ed1-954e-3dc46f90fc8a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bozal</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="20219549-f91d-4f97-929b-efbf09c43204" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="39dcbe57-eda5-4885-a526-4a9c5a24da54" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bozal 
\entryTyp root 
\gENG harness 
\gSPN bozal 
\e +bozal 
\c N0 
\mp +FinalC 
\ach bozal 
\akh bozal 
\acl bozal 
\akl bozal 
\ame bozal</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="216fee19-bbaf-4102-a026-60143d38eee1" ownerguid="236b8042-6086-4bed-a156-aaef077d1721"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="2bf4687d-1ae8-44ef-a4d5-bfcf5f5774de" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="eb17a916-b104-43ec-bd5b-7380da738e8f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="21708129-5541-4e13-b8c0-021b6287468a" ownerguid="85d0d551-4d20-4930-86d7-84fe189fcc96"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuna</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuna</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuna</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuna</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuna</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f236a19a-86ce-4599-91f5-fb178488e065" t="r" /> -</Morph> -<Msa> -<objsur guid="0851fe14-f99e-4e06-befc-3a76b044ea37" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="21719dcb-f831-43f2-a17e-1dc450d1198e" ownerguid="63494b6a-462e-4971-a0b8-5266c53ae274"> -<Form> -<AUni ws="qvm-x-ach">galpa</AUni> -<AUni ws="qvm-x-acl">galpa</AUni> -<AUni ws="qvm-x-akh">qalpa</AUni> -<AUni ws="qvm-x-akl">qalpa</AUni> -<AUni ws="qvm-x-ame">qalpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="21783234-94f7-4fed-a23f-23c511f7a84d" ownerguid="262fc4ae-7735-465b-934b-2125d95de147"> -<ExampleWords> -<AUni ws="en">jealousy, envy (n), covetousness, resentment, sour grapes</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of jealousy?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2178dc0a-d40d-4e82-8d29-eaadc41a6728" ownerguid="1ca26512-75f6-4a7a-a7cc-07d08aa799d9"> -<ExampleWords> -<AUni ws="en">feel convicted, recognize your sin, realize one has done wrong, regret</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that a person recognizes he has done wrong?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="217b1425-2d48-40ba-ab37-268ec3fecb7b" ownerguid="c250e6e6-092d-43d7-8a10-fcaebc4e64bd"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoInflAffixSlot" guid="2187f650-9ef3-4104-9740-f007f3b51ffe" ownerguid="86ff66f6-0774-407a-a0dc-3eeaf873daf7"> -<Name> -<AUni ws="en">tense</AUni> -</Name> -<Optional val="True" /> -</rt> -<rt class="CmSemanticDomain" guid="218c1d59-0ebb-4936-b9cf-0a93e88aa729" ownerguid="5e3bb9e5-fd70-4c5a-95a0-938bc4876a47"> -<Abbreviation> -<AUni ws="en">3.2.7.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling hopeless--to thinking that nothing good will happen in the future.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25D Hope, Look Forward To</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Hopeless</AUni> -</Name> -<Questions> -<objsur guid="9b4d3645-1655-4d2f-829a-2a4dcbc0531b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="218c20eb-0f4d-488a-befc-efab0fb8773d" ownerguid="284433df-7b37-4e63-a614-78520c483213"> -<ExampleWords> -<AUni ws="en">herd (v), flock (v), swarm (v), herd instinct, fly in formation, move as a herd</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to animals moving in a group?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="218cd73f-2342-4c48-b522-c02a684b3a21" ownerguid="2ed6281d-4e4f-43a1-b2aa-964ed5af3674"> -<Form> -<AUni ws="qvm-x-ach">jauna</AUni> -<AUni ws="qvm-x-acl">jauna</AUni> -<AUni ws="qvm-x-akh">jawna</AUni> -<AUni ws="qvm-x-akl">jawna</AUni> -<AUni ws="qvm-x-ame">hawna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="219198db-1c89-4b7a-9b69-ee26e9568638" ownerguid="54153363-ba65-4136-ac54-f489c3976296"> -<Form> -<AUni ws="qvm-x-ach">favorëci</AUni> -<AUni ws="qvm-x-acl">favorëci; favorëce</AUni> -<AUni ws="qvm-x-akh">favorëci</AUni> -<AUni ws="qvm-x-akl">favorëci; favorëce</AUni> -<AUni ws="qvm-x-ame">favorëci</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="2191d0e8-c885-415a-843c-9b3c36383f91"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">birbiqui</AUni> -<AUni ws="qvm-x-acl">birbiqui; birbiqui; birbique</AUni> -<AUni ws="qvm-x-akh">birbiqui</AUni> -<AUni ws="qvm-x-akl">birbiqui; birbiqui; birbique</AUni> -<AUni ws="qvm-x-ame">birbiqui</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+berbiquí</AUni> -<AUni ws="qvm-x-acl">+berbiquí</AUni> -<AUni ws="qvm-x-akh">+berbiquí</AUni> -<AUni ws="qvm-x-akl">+berbiquí</AUni> -<AUni ws="qvm-x-ame">+berbiquí</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.961" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0d54886a-965b-42e5-b70a-f3ff34734f8b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+berbiquí</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="673f0fb3-f04f-488d-9a31-c54b8833f4e6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e2495a6a-6d6c-419d-b533-66e1837f4950" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +berbiquí 
\entryTyp root 
\gENG brace 
\gSPN berbiquí 
\e +berbiquí 
\c N0 
\mp +FinalI 
\ach birbiqui 
\akh birbiqui 
\acl birbiqui / _# 
\acl birbiqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl birbique +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl birbiqui / _# 
\akl birbiqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl birbique +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame birbiqui 
\mp +assimilated</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="21941ca6-61ff-4a6a-b58a-2f28c234665a" ownerguid="e9a661d2-f167-4471-8c49-1f8e27e5cd60"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="21962c2b-f7f5-4977-9786-f79992da9494" ownerguid="04207506-5a9f-49eb-adae-80ab00bd5510"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="21970e01-db5c-4453-9ffc-84ac99e38d96" ownerguid="c6ea12be-7f25-45bf-938e-4c9a801b929f"> -<Form> -<AUni ws="qvm-x-ach">cuadru; cuadro</AUni> -<AUni ws="qvm-x-acl">cuadru; cuadru; cuadro</AUni> -<AUni ws="qvm-x-akh">cuadru; cuadro</AUni> -<AUni ws="qvm-x-akl">cuadru; cuadru; cuadro</AUni> -<AUni ws="qvm-x-ame">cuadru; cuadro</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="21989978-9e59-4191-ba0b-62aa1f83f3b2" ownerguid="386b1f9e-33b6-46f3-bc2d-6b50758b82f5"> -<Form> -<AUni ws="qvm-x-ach">suëlëru</AUni> -<AUni ws="qvm-x-acl">suëlëru; suëlëru; suëlëro</AUni> -<AUni ws="qvm-x-akh">suëlëru</AUni> -<AUni ws="qvm-x-akl">suëlëru; suëlëru; suëlëro</AUni> -<AUni ws="qvm-x-ame">suëlëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="219c0659-bd6f-4d35-80c9-2af4da065ebd" ownerguid="d93bac06-fdd0-4cc8-b309-7defaa7a3511"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8b798583-6f5f-4d46-9aa2-c268648abf03" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="219cb684-f18b-4821-9b20-a20f642dfbb5" ownerguid="bd8bc3ad-a027-4c40-88e6-f3d406d5b7f9"> -<Category> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</Category> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="ccd0d19c-d931-4628-8dce-ce3249edbdb3" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="f4f4c9bc-fcb5-446d-9371-f16bc9beecb7" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="219d619b-e373-41d8-9612-7375c6bababd" ownerguid="a19e219a-6cc1-4057-a8d9-18554ae88de1"> -<ExampleWords> -<AUni ws="en">change someone's diaper, diaper, nappy, bathe, baby powder, baby lotion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to cleaning a baby?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="21a284ab-b9a3-42c8-8fb9-96aff1e1fe8f" ownerguid="4f485a60-e3ba-42e6-9d59-185305c5d1f2"> -<Abbreviation> -<AUni ws="en">8.5.2.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating a direction toward something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Towards</AUni> -</Name> -<Questions> -<objsur guid="9524a77a-ecea-4991-8c0c-6515cbe268d0" t="o" /> -<objsur guid="2dd63e0f-c5ce-4950-bb3c-333ceff8259d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="21a35c7d-a266-42fb-ba87-8b0ba75318a8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">paltacshi</AUni> -<AUni ws="qvm-x-acl">paltacshi; paltacshi; paltacshe</AUni> -<AUni ws="qvm-x-akh">paltakshi</AUni> -<AUni ws="qvm-x-akl">paltakshi; paltakshi; paltakshe</AUni> -<AUni ws="qvm-x-ame">paltakshi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*palltakshi</AUni> -<AUni ws="qvm-x-acl">*palltakshi</AUni> -<AUni ws="qvm-x-akh">*palltakshi</AUni> -<AUni ws="qvm-x-akl">*palltakshi</AUni> -<AUni ws="qvm-x-ame">*palltakshi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.679" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f6ca485d-1124-4f9f-8bd2-d5ae4c69a64d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*palltakshi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="012e3458-d6e7-4962-b599-e91f2b9fd617" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a8d71b5e-6c79-4f47-9c72-ec53ace5a0c0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *palltakshi 
\entryTyp root 
\gENG 
\gSPN 
\e *palltakshi 
\c N0 
\mp +FinalI 
\ach paltacshi 
\akh paltakshi 
\acl paltacshi / _# 
\acl paltacshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl paltacshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl paltakshi / _# 
\akl paltakshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl paltakshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame paltakshi 
\i NUM 6.19 Nircurnami rutucushga nazareo runata cüra macyanga calduypa yanushga carnipa paltacshinta.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="21a8e209-ca32-402d-bd32-5de34ff04e95" ownerguid="3044799a-4b36-46c0-8a25-0739f8abc8e7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">empty</AUni> -<AUni ws="es">vaciar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3f719986-7034-4748-a34e-a11805e71426" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="StTxtPara" guid="21aa99d0-5366-4a51-9ed9-921b9a84fedb" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">qarqakutsin</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="7977f3d1-06d4-4640-827d-ae94181dc923" t="o" /> -</Segments> -</rt> -<rt class="LexEntry" guid="21adcdce-d6a7-46ac-925e-7202981a1736"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chunku</AUni> -<AUni ws="qvm-x-acl">chunku; chunko</AUni> -<AUni ws="qvm-x-akh">chunku</AUni> -<AUni ws="qvm-x-akl">chunku; chunko</AUni> -<AUni ws="qvm-x-ame">chunku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trunku.v</AUni> -<AUni ws="qvm-x-acl">*trunku.v</AUni> -<AUni ws="qvm-x-akh">*trunku.v</AUni> -<AUni ws="qvm-x-akl">*trunku.v</AUni> -<AUni ws="qvm-x-ame">*trunku.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.170" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a34ad215-7028-480b-bac4-f2166356f2d7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trunku.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d6e9a81e-b216-4727-ab25-20bc3d73665b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2e08136f-b7cd-4aa6-a662-efc1a218a5d7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trunku.v 
\entryTyp root 
\gENG crouch 
\gSPN agacharse 
\e *trunku.v 
\c V1 
\ach chunku 
\akh chunku 
\acl chunku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl chunko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chunku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chunko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chunku</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="21aeeafa-7e29-41c3-956b-9f3d2e391d91" ownerguid="1f4baeb7-dcaa-4c28-9956-a4818b4cc565"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="21af77d9-509e-49a1-8fc4-ce70cbd3c65b" ownerguid="79cf4ef2-3ec7-463a-843e-a7b1bfcb0639"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">watch</AUni> -<AUni ws="es">vigilar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dbb1f37d-1321-41ee-8778-57de02b33b2d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="21af7e4a-207d-4f30-969e-81401a34ee22" ownerguid="056cea8c-3d46-4127-8242-d87318f8ac81"> -<Form> -<AUni ws="qvm-x-ach">gatu</AUni> -<AUni ws="qvm-x-acl">gatu; gato</AUni> -<AUni ws="qvm-x-akh">qatu</AUni> -<AUni ws="qvm-x-akl">qatu; qato</AUni> -<AUni ws="qvm-x-ame">qatu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="21b75837-da89-46f0-a053-1253bf80f96d"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">munayniyuq</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="21b838db-1881-48f8-b151-fceb15c02883" ownerguid="90e8d874-2c41-475c-94dd-e1ae6c78812a"> -<Form> -<AUni ws="qvm-x-ach">pactu; pacto</AUni> -<AUni ws="qvm-x-acl">pactu; pactu; pacto</AUni> -<AUni ws="qvm-x-akh">pactu; pacto</AUni> -<AUni ws="qvm-x-akl">pactu; pactu; pacto</AUni> -<AUni ws="qvm-x-ame">pactu; pacto</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="21ba7841-486a-487a-9c62-0ec66e4cbef6" ownerguid="ba1e8d2b-7d3e-4b65-a9be-ee1a4063c796"> -<ExampleWords> -<AUni ws="en">feel a little worried, slightly worried, a bit anxious, not so sure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to being a little worried?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="21bae63e-b92c-42c2-a573-039156d84366" ownerguid="908a1a2c-342a-48d8-abbf-dff79aa5504f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.bad.luck</AUni> -<AUni ws="es">ser.mala.suerte</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="42b8afa2-0e77-4ab5-af11-98bd680843d4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="21bcc306-13cb-4162-98b3-2ba319ba14ea" ownerguid="f899802d-bd32-427f-a101-c84219f7e14e"> -<Abbreviation> -<AUni ws="en">1.2.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.947" /> -<DateModified val="2022-9-23 16:55:7.947" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to jewels and precious stones.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>2F Precious and Semiprecious Stones and Substances</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Jewel</AUni> -</Name> -<Questions> -<objsur guid="dad86efa-f57a-4ccd-9f98-168eb16978da" t="o" /> -<objsur guid="115fd3eb-b5cc-4209-afe2-600ea3b2101d" t="o" /> -<objsur guid="bbba8dfc-55a4-4686-a305-060849a97025" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="21bd5d63-6ac9-4381-86e9-8c4da4b70e50"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tiempu; tiempo</AUni> -<AUni ws="qvm-x-acl">tiempu; tiempu; tiempo</AUni> -<AUni ws="qvm-x-akh">tiempu; tiempo</AUni> -<AUni ws="qvm-x-akl">tiempu; tiempu; tiempo</AUni> -<AUni ws="qvm-x-ame">tiempu; tiempo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tiempo.1</AUni> -<AUni ws="qvm-x-acl">+tiempo.1</AUni> -<AUni ws="qvm-x-akh">+tiempo.1</AUni> -<AUni ws="qvm-x-akl">+tiempo.1</AUni> -<AUni ws="qvm-x-ame">+tiempo.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.886" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b19f6456-c6b2-462d-b28e-0c3139956b44" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tiempo.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bf4ac4ae-286c-463c-8b36-aaf96849d3d2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5a7a5abe-a9a5-42e6-a681-1b04eb68e784" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tiempo.1 
\entryTyp root 
\gENG time 
\gSPN tiempo 
\e +tiempo.1 
\c N0 
\ach tiempu / ~_# 
\ach tiempo / _# 
\akh tiempu / ~_# 
\akh tiempo / _# 
\acl tiempu / ~_# 
\acl tiempu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tiempo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tiempu / ~_# 
\akl tiempu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tiempo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tiempu / ~_# 
\ame tiempo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoDerivAffMsa" guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" ownerguid="9b9d021f-4b7d-46dc-aecc-0ed2c1394117"> -<FromPartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</FromPartOfSpeech> -<ToPartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</ToPartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="21c080f4-f458-4355-b53a-65ed41d9d1d1" ownerguid="5c770098-2c91-4a9c-bfa0-a7ffaa871a7f"> -<ExampleWords> -<AUni ws="en">work for, be employed, have a job, be in the employ of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to working for someone?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="21c09cc4-7392-48d9-ba55-7dea028f2381" ownerguid="874c2463-a6f7-410a-86e6-f77dfb4ef4a3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hiding.place</AUni> -<AUni ws="es">escondite</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6c36f347-52ed-435f-b9ad-3b674afab45c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="21c0be4f-602a-4acc-bc12-044382466345" ownerguid="4d52d128-44c8-4574-a625-ecbd5828d87b"> -<Form> -<AUni ws="qvm-x-ach">chashla</AUni> -<AUni ws="qvm-x-acl">chashla</AUni> -<AUni ws="qvm-x-akh">chashla</AUni> -<AUni ws="qvm-x-akl">chashla</AUni> -<AUni ws="qvm-x-ame">chashla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="21c252cc-f418-437a-8a57-a6b1b9818c91" ownerguid="7eb75846-e4f3-4427-90ec-e4808da9c8c2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="21c45bf7-c32e-4c3b-84cf-2d33bc14dbd1" ownerguid="c2604a26-003e-4991-9059-b2e1a17e796c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="66af7274-92aa-4ec4-8e4f-ed12adebe603" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="bfbeb073-ec0d-4978-97c4-ba6fd2b3cc92" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="21c52ca9-67f1-45af-87f6-fb8e15e0c05f" ownerguid="54a66603-d266-4e82-89f5-2fae943bc5cd"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mu; mo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mu; mo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="45846476-db8b-4639-bef8-780e6651a907" t="r" /> -</Morph> -<Msa> -<objsur guid="84097b64-d9df-441f-a9d3-d11d4b9d9ea0" t="r" /> -</Msa> -<Sense> -<objsur guid="788609d7-ea80-4813-aabb-8837acc21fd4" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="21c7f342-b99c-4689-bf7c-192b239dea03" ownerguid="5e0faf19-8717-4dab-bf6f-c4225a3844b2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stiffen</AUni> -<AUni ws="es">endurecer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1ed96ec7-2ce8-45cc-a77a-7ceae1d401b5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="21c84cdb-cb9f-452e-a14a-9be78dcd285b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">hi:lu</AUni> -<AUni ws="qvm-x-acl">hi:lu; hi:lu; hi:lo</AUni> -<AUni ws="qvm-x-akh">hi:lu</AUni> -<AUni ws="qvm-x-akl">hi:lu; hi:lu; hi:lo</AUni> -<AUni ws="qvm-x-ame">hi:lu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hilo</AUni> -<AUni ws="qvm-x-acl">+hilo</AUni> -<AUni ws="qvm-x-akh">+hilo</AUni> -<AUni ws="qvm-x-akl">+hilo</AUni> -<AUni ws="qvm-x-ame">+hilo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.710" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="efdad723-c9ba-4729-aac5-1febb547bce8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hilo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fd78cd1e-aa35-4076-8446-9bcd658e9f7f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0a7e8393-c2b8-4a2a-aa65-2f236b18a83e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hilo 
\entryTyp root 
\gENG thread 
\gSPN hilo 
\e +hilo 
\c N0 
\ach hi:lu 
\akh hi:lu 
\acl hi:lu / _# 
\acl hi:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl hi:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl hi:lu / _# 
\akl hi:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl hi:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hi:lu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="21c90725-57f4-490f-bccc-a5dfec231372"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">oguitin</AUni> -<AUni ws="qvm-x-acl">oguitin; oguitin; oguiten</AUni> -<AUni ws="qvm-x-akh">oqitin</AUni> -<AUni ws="qvm-x-akl">oqitin; oqitin; oqiten</AUni> -<AUni ws="qvm-x-ame">uqitin</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uqiti.1</AUni> -<AUni ws="qvm-x-acl">*uqiti.1</AUni> -<AUni ws="qvm-x-akh">*uqiti.1</AUni> -<AUni ws="qvm-x-akl">*uqiti.1</AUni> -<AUni ws="qvm-x-ame">*uqiti.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.251" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a2aa8c2d-48f6-468c-9b86-bd11c8f2e155" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uqiti.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="73d08203-50d9-4c98-b646-92b41173f234" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="59b4fe6b-15f3-4ebd-9945-139d84cf849d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uqiti.1 
\entryTyp root 
\gENG intestine 
\gSPN intestino 
\e *uqiti.1 
\c N0 
\mp +FinalC 
\ach oguitin 
\akh oqitin 
\acl oguitin / _# 
\acl oguitin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl oguiten +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl oqitin / _# 
\akl oqitin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl oqiten +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame uqitin</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="21cac048-07c3-4c63-8e32-c2163b5fee6e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fa:ma</AUni> -<AUni ws="qvm-x-acl">fa:ma</AUni> -<AUni ws="qvm-x-akh">fa:ma</AUni> -<AUni ws="qvm-x-akl">fa:ma</AUni> -<AUni ws="qvm-x-ame">fa:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fama</AUni> -<AUni ws="qvm-x-acl">+fama</AUni> -<AUni ws="qvm-x-akh">+fama</AUni> -<AUni ws="qvm-x-akl">+fama</AUni> -<AUni ws="qvm-x-ame">+fama</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.528" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d445455b-b2e3-49f9-b061-64e5949a9a69" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fama</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="19fc80c4-8bc5-4e98-9b96-9fe033a510d9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6d148d6f-db27-4db7-88a8-e04b0547e063" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fama 
\entryTyp root 
\gENG 
\gSPN 
\e +fama 
\c N0 
\ach fa:ma 
\akh fa:ma 
\acl fa:ma 
\akl fa:ma 
\ame fa:ma 
\i DEU 22.19 Nircurmi Israel jipashta mala fämaman churar perdisyunta rurashganpita pägatsenga pachac (100) yorag guellayta.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="21cad27d-c285-46c5-86ad-5cb644b6df55" ownerguid="5c0e4a9c-7d56-4ad4-b39f-4b081f3329bd"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Lev 15.9 Purgacionwan caycag runa muntacushgan sillapis impürumi canga.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="21cb61bc-1fa1-4037-8f0e-cad6259d416f" ownerguid="ac9ee84f-f0c7-48b3-8e5a-b4c967112394"> -<ExampleWords> -<AUni ws="en">quality, condition, state, character, nature, feature</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to the quality or condition of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="21cd5d8f-adde-4f59-ba25-236434a282f9" ownerguid="f86dc09d-23e8-4ccd-81be-ab2213aa9339"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">full</AUni> -<AUni ws="es">lleno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cf87f617-2e89-4d86-8442-945268c5f7cd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="21d1998d-dfc2-4151-8d77-3c73f30916f8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cachari</AUni> -<AUni ws="qvm-x-acl">cachari; cachare</AUni> -<AUni ws="qvm-x-akh">kachari</AUni> -<AUni ws="qvm-x-akl">kachari; kachare</AUni> -<AUni ws="qvm-x-ame">kachari</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*katrari</AUni> -<AUni ws="qvm-x-acl">*katrari</AUni> -<AUni ws="qvm-x-akh">*katrari</AUni> -<AUni ws="qvm-x-akl">*katrari</AUni> -<AUni ws="qvm-x-ame">*katrari</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.961" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="609f45cf-9df1-4976-b948-69672b584e8f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*katrari</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c533f197-4448-4a72-87f3-bef95ff4fc6e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bd4655e4-072b-43d3-892a-12e527b3920c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *katrari 
\entryTyp root 
\gENG leave 
\gSPN dejar 
\e *katrari 
\c V2 
\mp +FinalI 
\ach cachari 
\akh kachari 
\acl cachari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl cachare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kachari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kachare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kachari 
\mcc *katrari / ~_ IN1 
\mcc *katrari / ~_ IMPFV1 [y] TOP 
\mcc *katrari / ~_ PASS [y] TOP</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="21d3d21f-b602-4c1c-aeb0-e3f919fc2cb7" ownerguid="bd7d0c9c-791e-4c34-b9ed-ebddad8f9724"> -<ExampleWords> -<AUni ws="en">to judge, render a verdict, rule on a case</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used of the action of judging a person?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="21d421a5-5548-4095-b5d6-bc943dce9df1" ownerguid="641ce610-2818-47d1-a2cc-6d3ea09a9e08"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Num 24.9 Leonnogmi Israel nación lupucuycun.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="21d4b633-4abf-4485-b242-3060aab7b1c9" ownerguid="dd12ac0f-55cc-4c79-a50c-d23cc7ea60b3"> -<ExampleWords> -<AUni ws="en">bathroom, bathtub, tub, shower, shower stall, bathhouse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) Where does a person take a bath?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="21d53d94-ff64-4346-901b-9a2664021e9e" ownerguid="e3e71352-0500-4792-9401-ca1bb77c1833"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="21d540f7-a318-4175-a931-00a88c0fb93e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsogu</AUni> -<AUni ws="qvm-x-acl">tsogu; tsogu; tsogo</AUni> -<AUni ws="qvm-x-akh">tsoqu</AUni> -<AUni ws="qvm-x-akl">tsoqu; tsoqu; tsoqo</AUni> -<AUni ws="qvm-x-ame">tsuqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chuqu.n</AUni> -<AUni ws="qvm-x-acl">*chuqu.n</AUni> -<AUni ws="qvm-x-akh">*chuqu.n</AUni> -<AUni ws="qvm-x-akl">*chuqu.n</AUni> -<AUni ws="qvm-x-ame">*chuqu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.356" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="498d5782-2a7d-4779-8dc7-9464f570861a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chuqu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="72a8d191-c0d9-412b-aa25-6dcbab9f228a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="64172332-c311-4875-9d3f-5d68db518744" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chuqu.n 
\entryTyp root 
\gENG a.grass 
\gSPN una.hierba 
\e *chuqu.n 
\c N0 
\ach tsogu 
\akh tsoqu 
\acl tsogu / _# 
\acl tsogu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tsogo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsoqu / _# 
\akl tsoqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tsoqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsuqu 
\mcc *chuqu.n / ~_ BEC</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="21e34963-9abf-43b6-af83-d46d11dcf72b" ownerguid="554b3b38-c53e-46c2-9a7a-ed9cade4673a"> -<Form> -<AUni ws="qvm-x-ach">papel; papil</AUni> -<AUni ws="qvm-x-acl">papel; papil; papel</AUni> -<AUni ws="qvm-x-akh">papel; papil</AUni> -<AUni ws="qvm-x-akl">papel; papil; papel</AUni> -<AUni ws="qvm-x-ame">papel; papil</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="21ea111c-849e-4d0d-b0e0-605eb523d05f" ownerguid="b6686c7c-39de-40b5-adee-67fc7dc54374"> -<ExampleWords> -<AUni ws="en">zero, one, two, three, four, five, six, seven, eight, nine, ten, eleven, twelve, thirteen...</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the cardinal numbers? (the numbers you use when you count)</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="21ead4a3-b620-483a-99f3-f737e6ebf1ef" ownerguid="1d11a03e-037b-4e20-b890-2965f8667156"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -<Sense> -<objsur guid="ed102c60-ed6d-498f-b2c4-a195d53a84e2" t="r" /> -</Sense> -</rt> -<rt class="CmSemanticDomain" guid="21ebc64a-a1b8-45bd-b7f6-143a053f1d31" ownerguid="01441207-4935-49a5-a192-16d949f5606c"> -<Abbreviation> -<AUni ws="en">4.2.6.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.217" /> -<DateModified val="2022-9-23 16:55:8.217" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a particular sport. The example words are from the sport of basketball. If you do not play basketball in your culture, you can rename this domain and use it for one of your sports. Add other domains for each of your sports.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Basketball</AUni> -</Name> -<Questions> -<objsur guid="fa092524-01e2-4bc5-b66b-687a56c28a69" t="o" /> -<objsur guid="79c73723-660d-4fc0-a891-00b490334f04" t="o" /> -<objsur guid="d1c5d45c-4b8b-42b1-ab42-36b9d3432042" t="o" /> -<objsur guid="feca0df6-9b3b-4c8c-853d-5a4f281d6d71" t="o" /> -<objsur guid="52f566e1-61fd-4daa-9801-5ffcc50a6266" t="o" /> -<objsur guid="39c10826-4a49-4e2b-b92e-a31ebe8c3dbd" t="o" /> -<objsur guid="a91eabb4-50e0-4a6a-b9d7-d66fc2e83f57" t="o" /> -<objsur guid="e24d12d1-5e14-441a-b765-f5bc57874b08" t="o" /> -<objsur guid="b335d915-3f83-4681-b53e-156a8264176e" t="o" /> -<objsur guid="d3d54c06-8c6c-4743-bfad-39d346ed986c" t="o" /> -<objsur guid="cda1a977-5df8-4e0d-89cc-5d0b7f1120e4" t="o" /> -<objsur guid="661f4184-a6f8-4e69-b6c8-391b9d476411" t="o" /> -<objsur guid="4921e48e-a48f-40de-902e-3058b8bfcd0a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="21f17d32-a075-47c0-a237-9965da31c3f9" ownerguid="5b5bcd42-09bb-4c2f-a2da-569cfa69b6ac"> -<ExampleWords> -<AUni ws="en">not want to draw attention to yourself, keep a low profile, low key</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to trying to prevent people from paying attention to you?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="21f1d588-13a3-4a04-bf96-7cda5a85c8d7" ownerguid="1250b0bf-4a27-4d46-92e9-e54af38e5a83"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="21f21658-a69a-491c-a37b-156a8f4ad3fb" ownerguid="f29dccae-1654-4eb7-8aae-04f7df4fe90c"> -<Abbreviation> -<AUni ws="en">8.3.7.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something, such as a tool or way of doing something, that is unsuitable for a particular time, place, purpose, or job.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>66 Proper, Improper</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Wrong, unsuitable</AUni> -</Name> -<Questions> -<objsur guid="33534a5f-f67f-449c-8b45-a4bd6e745635" t="o" /> -<objsur guid="6f454f0e-8f67-40fb-871a-13f274487358" t="o" /> -<objsur guid="eeafd87b-f7ee-4ef4-9562-98887a44177a" t="o" /> -<objsur guid="ab08e42f-ec7d-4bb3-9ae4-0d1ba4530c81" t="o" /> -<objsur guid="2f96b703-04b0-40bb-9139-09bc5a50b43d" t="o" /> -<objsur guid="35c4dc79-e74e-44e6-bdf3-cb03834ddbea" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="21f2e1fb-5bf3-4ec5-a0c6-6942dd4683e2" ownerguid="afe7cc92-e0ad-40d9-be56-aa12d2693a3f"> -<ExampleWords> -<AUni ws="en">day, whole day, day and night, a day and a night, 24 hour day, 'morning, noon and night'</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a day?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="21f5a554-9670-4bc0-9a91-cab2e2f4522a" ownerguid="c1ee74c5-dd40-4e3f-85d1-b9fb87302aac"> -<Form> -<AUni ws="qvm-x-ach">lipta</AUni> -<AUni ws="qvm-x-acl">lipta</AUni> -<AUni ws="qvm-x-akh">lipta</AUni> -<AUni ws="qvm-x-akl">lipta</AUni> -<AUni ws="qvm-x-ame">lipta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="21fbe221-aa1c-4abb-9a36-046cb3ad229d" ownerguid="2d822f05-e966-4735-b868-4dea83d5ca30"> -<Form> -<AUni ws="qvm-x-ach">räya</AUni> -<AUni ws="qvm-x-acl">räya</AUni> -<AUni ws="qvm-x-akh">räya</AUni> -<AUni ws="qvm-x-akl">räya</AUni> -<AUni ws="qvm-x-ame">räya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="21ffb591-045f-4ca8-909c-020fb39b0223" ownerguid="836a7fed-e497-4ecb-8057-16c2c95ad368"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="22001e38-caec-4b13-ac94-447b686176c8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wagli</AUni> -<AUni ws="qvm-x-acl">wagli; wagle</AUni> -<AUni ws="qvm-x-akh">waqli</AUni> -<AUni ws="qvm-x-akl">waqli; waqle</AUni> -<AUni ws="qvm-x-ame">waqli</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waqlli.v</AUni> -<AUni ws="qvm-x-acl">*waqlli.v</AUni> -<AUni ws="qvm-x-akh">*waqlli.v</AUni> -<AUni ws="qvm-x-akl">*waqlli.v</AUni> -<AUni ws="qvm-x-ame">*waqlli.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.503" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7f610040-0350-457f-958d-556ef0493f4f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waqlli.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="797aabc7-bddd-42f5-bfac-277b4dc775f2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4233f3c5-3a4e-4b79-8432-f94f9bed8504" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waqlli.v 
\entryTyp root 
\gENG 
\gSPN ladear 
\e *waqlli.v 
\c V1 
\mp +FinalI 
\ach wagli 
\akh waqli 
\acl wagli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wagle +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl waqli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl waqle +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame waqli</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="2201d46d-8d8b-411c-88fb-6b976d2b3ab4" ownerguid="899c0ce1-dd5f-4e39-8e71-ab2acec295b9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bite</AUni> -<AUni ws="es">morder</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e9062ad5-194c-4a19-8a5a-7d96b1ce0653" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="22043cbd-d2df-4275-8be4-6e34f5d03fa9" ownerguid="9ecbe4dd-d8b5-4c0e-93ba-0af49bb92c03"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2204621e-254a-403f-89ac-eb82a2d220b4" ownerguid="c1a70060-ba04-4f16-879e-5563492aee02"> -<ExampleWords> -<AUni ws="en">rich, wealthy, affluent, prosperous, well-off, privileged</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who is rich?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2205bcf2-0fb7-46f2-82a1-f53fa4d2c8ae" ownerguid="8efb07c6-ea3b-4bc6-a72d-fccbfe0091f5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="22098891-41ef-465f-832d-ae74342fa59c" ownerguid="5fdf3946-7e47-4fd2-906f-4da7ce5fa490"> -<ExampleWords> -<AUni ws="en">carefully worded, careful, well thought through, off the cuff, off hand, wise, stupid, thoughtless, foolish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe an answer?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="220d90fe-0082-4c5c-93e1-20c527d3762b" ownerguid="eed3064f-530f-46fc-9115-3f94ac70c46a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a08f1569-36b9-4cb7-8187-00d9cbeae32a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="220e6db6-d429-427f-a263-c46b9e9dceed" ownerguid="7806664c-6392-461e-ae19-341f6277385f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="220e9b95-e701-40c9-8b57-75b53b84f20a" ownerguid="46d13b18-d016-4b11-9f95-d5b99061469f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">store</AUni> -<AUni ws="es">almacer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d5eb2790-6516-428c-871f-253ce453aa11" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="22113760-f033-420f-9e7c-428fe1593f6c" ownerguid="1dcd440b-ee59-41e4-b3e1-f965817c8831"> -<Form> -<AUni ws="qvm-x-ach">aga</AUni> -<AUni ws="qvm-x-acl">aga</AUni> -<AUni ws="qvm-x-akh">aqa</AUni> -<AUni ws="qvm-x-akl">aqa</AUni> -<AUni ws="qvm-x-ame">aqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="221343dd-01e5-4d57-9add-45cecf31fc89" ownerguid="99460595-a669-4c67-8f08-861cb2eb3b0a"> -<Form> -<AUni ws="qvm-x-ach">gachi</AUni> -<AUni ws="qvm-x-acl">gachi; gachi; gache</AUni> -<AUni ws="qvm-x-akh">qachi</AUni> -<AUni ws="qvm-x-akl">qachi; qachi; qache</AUni> -<AUni ws="qvm-x-ame">qachi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="221369a4-3d3d-45fa-8ef7-0b4c2cf9af2d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">india; india:</AUni> -<AUni ws="qvm-x-acl">india; india:</AUni> -<AUni ws="qvm-x-akh">india; india:</AUni> -<AUni ws="qvm-x-akl">india; india:</AUni> -<AUni ws="qvm-x-ame">india; india:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+india:</AUni> -<AUni ws="qvm-x-acl">+india:</AUni> -<AUni ws="qvm-x-akh">+india:</AUni> -<AUni ws="qvm-x-akl">+india:</AUni> -<AUni ws="qvm-x-ame">+india:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.820" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a01683b8-8c5e-4b9c-8e70-ee28bffb3bf9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+india:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="530a106f-e77c-4dea-b631-58dd612ed658" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="93d1a3dd-19ff-4948-907f-c94f7430f9a9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +india: 
\entryTyp root 
\gENG 
\gSPN 
\e +india: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach india foreshortened 
\ach india: 
\mp +underlong 
\akh india foreshortened 
\akh india: 
\acl india foreshortened 
\acl india: 
\akl india foreshortened 
\akl india: 
\mp +underlong 
\ame india foreshortened 
\ame india:</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="22149171-89c8-4177-abca-775d9d91c881" ownerguid="ba0a3fc5-861e-42bd-ab09-f549603f3e63"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="22177450-c055-4886-84cf-5e1b97961b79" ownerguid="807edb7d-7b8f-4063-a175-8bd5614b98ff"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">?</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8cc414ee-7b0b-4d7d-8acb-9749d42749c9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="2217b486-3823-43c4-844a-ff6fff19d6b4" ownerguid="146daca8-869f-4b32-bbc4-b26bccd0da7e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="221804de-7738-4075-bf74-fe378a981b4e" ownerguid="cfbbb86a-b988-46d3-aff9-4a13557ebe01"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PunctuationForm" guid="2218797a-b020-41d2-b92f-0fed6834f7bd"> -<Form> -<Str> -<Run ws="en">cm</Run> -</Str> -</Form> -</rt> -<rt class="LexExampleSentence" guid="221a6efa-ca95-4a91-937d-2a98c4843384" ownerguid="270f25ae-9cfc-46f4-8fe9-a67e4e1d3050"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 32.21 Aaróntanami Moisés caynog nergan: <<Israel runacuna ¿imanashushcanquitag cayjinanpa jutsata ruraycatsinayquipäga?>></Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="221aa170-49b7-4d63-b348-4d01a9a547e3" ownerguid="738a09a5-59df-40f9-8a4e-176e00d03bbf"> -<ExampleWords> -<AUni ws="en">blowgun, ram, sling, slingshot, whip</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What other types of weapons are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="221afb35-6893-45c8-8517-cb393c1b3e63" ownerguid="9f0bcab1-8256-47a1-853c-408f025e04e7"> -<ExampleWords> -<AUni ws="en">lie, falsehood, fib, white lie, half-truth, perjury, propaganda</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a lie?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="221baa7f-d852-467e-899f-b5783f42b438" ownerguid="251531bb-0f71-44fc-af97-1beb4d74c834"> -<Form> -<AUni ws="qvm-x-ach">ingreïdu</AUni> -<AUni ws="qvm-x-acl">ingreïdu; ingreïdu; ingreïdo</AUni> -<AUni ws="qvm-x-akh">ingreïdu</AUni> -<AUni ws="qvm-x-akl">ingreïdu; ingreïdu; ingreïdo</AUni> -<AUni ws="qvm-x-ame">ingreïdu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="221bff21-d688-40a2-9e5a-9ea5af0e42a9" ownerguid="2899cfd7-a7b3-4907-84a1-ce94cdd76a5b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="549ec106-5381-476d-ba85-dd51737c8910" t="o" /> -</Examples> -<Gloss> -<AUni ws="es">vendar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1f66f157-3c19-4ed0-b1a3-cbceeb3bfadc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="221c314f-9888-49d3-b237-aae57c76dc0c" ownerguid="9cfe4c5a-80d4-4b31-ba89-79b2e3d28a1c"> -<ExampleWords> -<AUni ws="en">nail, fingernail, toenail</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a fingernail or toenail?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="221c98d6-17a0-432c-9e42-9cfd00aaf2ac" ownerguid="9d865347-6656-4ab7-8613-bf2e8bc53aa7"> -<ExampleWords> -<AUni ws="en">cut, bayonet, buffet, butt, chop, claw, clout, club, gash, jab, knife, lacerate, maul, savage, slice, spear, stab, traumatize, scratch, scrape, graze, mutilate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to being injured by being cut?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="221e394d-6a63-434c-b821-219ce42312d1" ownerguid="bdaecf2f-d0fa-49f7-891e-bcb0a31ae630"> -<ExampleWords> -<AUni ws="en">after, afterward, afterwards, later, later on, subsequently, after that, beyond that, hence</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something happens after a particular time or event?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="221edb0f-99a2-495f-800d-28135fe358ce" ownerguid="612424b8-997e-4661-a452-772e14a3c4a0"> -<ExampleWords> -<AUni ws="en">refusal, rejection</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the act of rejecting an offer?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="221f4990-c5cc-4c35-ba99-4f102ceaa6a4" ownerguid="780fbf89-f2ba-404c-b288-f6ca637bbc90"> -<ExampleWords> -<AUni ws="en">go ahead, proceed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to continuing to do something without waiting?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="2223645b-2a48-41f7-bd28-695c6fadda9a" ownerguid="8e1acde5-d828-43de-9d8f-f481480cf559"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">fiyu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">fiyu; fiyu; fiyo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">fiyu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">fiyu; fiyu; fiyo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">fiyu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="8af51d38-7b5d-4a73-89f8-f39e115e8e55" t="r" /> -</Morph> -<Msa> -<objsur guid="4780accf-3d86-484c-a8d2-c398d837871c" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="2225eb38-087a-4963-b078-b1acf79448eb" ownerguid="0db5817e-05bf-4703-a6b9-e239ac44f857"> -<ExampleWords> -<AUni ws="en">the sexes, male and female, men and women, boys and girls, ladies and gentlemen, guys and gals</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What pairs of words refer to male and female people?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="222e9145-f20b-4c21-9ec3-b2406acd6e56" ownerguid="5b08e461-b967-4802-bc2e-c5cd7ce6b5f5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ka</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ka</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="22806abf-f462-448a-bb3e-39bbf5d75aea" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="22300e2c-3d7d-4c36-a2b7-e2bbb247f793" ownerguid="ef5ee2be-8a32-452a-818b-80191edb8e41"> -<Abbreviation> -<AUni ws="en">6.2.1.7.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.397" /> -<DateModified val="2022-9-23 16:55:8.397" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to growing coffee.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Growing coffee</AUni> -</Name> -<Questions> -<objsur guid="c9144ba5-abec-4e21-84cb-12e706880f4a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="2232ab14-ff9d-4403-b432-21884e84369c" ownerguid="c6dd4537-9d9b-4fbb-9d81-8b23c1ac66f2"> -<Form> -<AUni ws="qvm-x-ach">gargu</AUni> -<AUni ws="qvm-x-acl">gargu; gargo</AUni> -<AUni ws="qvm-x-akh">qarqu</AUni> -<AUni ws="qvm-x-akl">qarqu; qarqo</AUni> -<AUni ws="qvm-x-ame">qarqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2234e787-90bb-4d10-9cc0-793719da9ba2" ownerguid="45d867c7-8496-4c92-bb41-b7db5db47717"> -<ExampleWords> -<AUni ws="en">pudgy, flabby, full, thick, ample, podgy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words describe a part of the body that is fat?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="22369c6c-16f9-4bc7-9c49-980030f7fba6" ownerguid="d88d862c-01d4-4b43-9fbe-59208922e022"> -<ExampleWords> -<AUni ws="en">keep someone waiting, make someone wait, delay</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making someone wait?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="223829bb-4fc2-4541-8d0f-bd919345ff5c" ownerguid="bc241f99-65c1-4a28-9abf-c1949935d4b1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="223a7ed4-5dde-4141-8dd4-bd2e4e05e105" ownerguid="dc1a2c6f-1b32-4631-8823-36dacc8cb7bb"> -<ExampleWords> -<AUni ws="en">solar energy, solar power, solar panel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(17) What words refer to using the power of the sun?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="223b53db-03b9-46bb-bd2c-2ef9f6a2733c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">caprichu:du</AUni> -<AUni ws="qvm-x-acl">caprichu:du</AUni> -<AUni ws="qvm-x-akh">caprichu:du</AUni> -<AUni ws="qvm-x-akl">caprichu:du</AUni> -<AUni ws="qvm-x-ame">caprichu:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+caprichudo</AUni> -<AUni ws="qvm-x-acl">+caprichudo</AUni> -<AUni ws="qvm-x-akh">+caprichudo</AUni> -<AUni ws="qvm-x-akl">+caprichudo</AUni> -<AUni ws="qvm-x-ame">+caprichudo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.520" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="abe7e681-7674-4d75-b245-2fc3c40ba170" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+caprichudo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1ac38fc1-2fba-4b82-9f41-b636cb08d1f3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9f9635e0-90ba-4383-b8af-9724c32bf49c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +caprichudo 
\entryTyp root 
\gENG rebellious 
\gSPN rebelde 
\e +caprichudo 
\c ONSHEV 
\ach caprichu:du 
\akh caprichu:du 
\acl caprichu:du 
\akl caprichu:du 
\ame caprichu:du</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="223c23ec-7258-4d6f-b444-7de7f226ddb6" ownerguid="99e47884-cd6b-42dd-9e8e-be04e8791dcb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">camay</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">camay</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kamay</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kamay</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kamay</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f0b99234-0a2f-44c4-83ae-47801443b6b2" t="r" /> -</Morph> -<Msa> -<objsur guid="1829a081-bc32-4291-9767-5bec080e6a37" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="223e408a-4c34-41c0-821f-20848376c90d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">me:ti</AUni> -<AUni ws="qvm-x-acl">me:ti; me:te</AUni> -<AUni ws="qvm-x-akh">me:ti</AUni> -<AUni ws="qvm-x-akl">me:ti; me:te</AUni> -<AUni ws="qvm-x-ame">me:ti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+meter.1</AUni> -<AUni ws="qvm-x-acl">+meter.1</AUni> -<AUni ws="qvm-x-akh">+meter.1</AUni> -<AUni ws="qvm-x-akl">+meter.1</AUni> -<AUni ws="qvm-x-ame">+meter.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.416" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="690bc17e-12f3-45b7-a937-b609c88d9891" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+meter.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1df2fce0-1883-425b-9c13-39a1880e7678" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="33ac5273-b23b-4eff-887e-0ff89b62913a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +meter.1 
\entryTyp root 
\gENG involve 
\gSPN meter 
\e +meter.1 
\c V1 
\mp +FinalI 
\ach me:ti 
\akh me:ti 
\acl me:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl me:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl me:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl me:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame me:ti</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="223eafd0-082e-4d69-847c-0df8e906b91a" ownerguid="df2ee830-0668-43d7-8a32-e2fd3e7b31d8"> -<Question> -<AUni ws="en">(14) Immediate may also be combined with anterior or imperative.</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="223f55e2-d046-4d41-a3c4-87baf62135df" ownerguid="e496a6d3-a00c-470e-81c3-314f3f97840e"> -<ExampleWords> -<AUni ws="en">sugarcane, rhubarb, celery</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of stems are eaten?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="22429b25-428b-431d-8fad-59c3df2981e4" ownerguid="bb4a762f-0d53-4092-a621-f35a8c7cdf7a"> -<Form> -<AUni ws="qvm-x-ach">chiya; chiyä</AUni> -<AUni ws="qvm-x-acl">chiya; chiyä</AUni> -<AUni ws="qvm-x-akh">chiya; chiyä</AUni> -<AUni ws="qvm-x-akl">chiya; chiyä</AUni> -<AUni ws="qvm-x-ame">chiya; chiyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="22436d8c-bcbf-431f-b10a-70676d9a3c57" ownerguid="12a028d1-d910-4011-ab9d-59be69daaf65"> -<ExampleWords> -<AUni ws="en">reactions, reflexes</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the ability to react quickly to something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="22439507-37c3-4c61-b620-2e5e1cdd0319"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tibiu; tibio</AUni> -<AUni ws="qvm-x-acl">tibiu; tibiu; tibio</AUni> -<AUni ws="qvm-x-akh">tibiu; tibio</AUni> -<AUni ws="qvm-x-akl">tibiu; tibiu; tibio</AUni> -<AUni ws="qvm-x-ame">tibiu; tibio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tibio</AUni> -<AUni ws="qvm-x-acl">+tibio</AUni> -<AUni ws="qvm-x-akh">+tibio</AUni> -<AUni ws="qvm-x-akl">+tibio</AUni> -<AUni ws="qvm-x-ame">+tibio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.884" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="255b72c9-c48d-4a94-af5b-fdb5a053a3f9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tibio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4313561b-583a-4bab-b86a-394b53d9b31a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c03b535d-57db-4d84-b20f-a092848b6521" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tibio 
\entryTyp root 
\gENG 
\gSPN 
\e +tibio 
\c N0 
\ach tibiu / ~_# 
\ach tibio / _# 
\akh tibiu / ~_# 
\akh tibio / _# 
\acl tibiu / ~_# 
\acl tibiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tibio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tibiu / ~_# 
\akl tibiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tibio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tibiu / ~_# 
\ame tibio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2245c17c-41bd-4271-81f4-1160a0ca330e" ownerguid="593073d6-9893-4670-98fb-c485406a950b"> -<ExampleWords> -<AUni ws="en">intercessor, go-between, intermediary, mediator, peacemaker</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who intercedes?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="22477931-f3e4-4b35-88cd-1b284d6d22c8" ownerguid="e6ff7084-b532-472e-a5b1-b2f9a8712b05"> -<Form> -<AUni ws="qvm-x-ach">tipla</AUni> -<AUni ws="qvm-x-acl">tipla</AUni> -<AUni ws="qvm-x-akh">tipla</AUni> -<AUni ws="qvm-x-akl">tipla</AUni> -<AUni ws="qvm-x-ame">tipla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="2247cb98-7939-4a30-8a5b-be3d47bda694" ownerguid="851413bf-5eb7-4230-b034-e9178b5925bc"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="22498fd7-23ff-4245-836a-d54b704df528" ownerguid="3ba9b660-33eb-4ab2-81b2-1ea05bfbdd91"> -<Form> -<AUni ws="qvm-x-ach">montäña</AUni> -<AUni ws="qvm-x-acl">montäña</AUni> -<AUni ws="qvm-x-akh">montäña</AUni> -<AUni ws="qvm-x-akl">montäña</AUni> -<AUni ws="qvm-x-ame">montäña</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="224a4540-055a-4752-b5f9-ab280c8137f4" ownerguid="2322e9e9-f483-412e-be1d-e5bef48714f5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">encircle</AUni> -<AUni ws="es">enrodar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5ec45cb7-51fb-4241-84e0-690587155596" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="224a6455-0c29-4617-b479-ca418f8416f5" ownerguid="f51bcafa-e624-4555-b8f1-b5726d74734d"> -<ExampleWords> -<AUni ws="en">laws, canon, code of laws, legal code</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to all the laws of a country?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="224bf8aa-7f50-474c-8c5b-d334964eddb7" ownerguid="1ff743cb-49e0-483d-8a1d-4603a7d6c395"> -<ExampleWords> -<AUni ws="en">erode, eat into, deplete, whittle away</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to something slowly reducing the number or amount of something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="224d4341-02a4-4f52-b9fe-540d09f391a4" ownerguid="101c16f8-ec76-4ec7-895a-fd814fef51dd"> -<ExampleWords> -<AUni ws="en">set a bone, reduce a dislocation, cast, splint, crutches, cane, plaster, sling, brace</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to treating a broken bone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2251c592-8d30-40a7-9e40-e33830adb1be" ownerguid="019c50f8-47d4-4b5c-bf01-cc1259de969c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="22564611-ec0f-4491-81e5-2fb6feeac095" ownerguid="01a27073-ca68-4d05-865a-c2f34463ddf0"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="22566519-b2e9-40d1-9a94-023dfbc34f90" ownerguid="1cd96bb9-acf2-4050-8c18-b9d3196a0623"> -<Form> -<AUni ws="qvm-x-ach">gracias</AUni> -<AUni ws="qvm-x-acl">gracias</AUni> -<AUni ws="qvm-x-akh">gracias</AUni> -<AUni ws="qvm-x-akl">gracias</AUni> -<AUni ws="qvm-x-ame">gracias</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="22585b10-ded1-45c2-8f80-bb2018a59914" ownerguid="b17e6e3e-90f4-4b02-81b7-fd472be8c9bd"> -<Form> -<AUni ws="qvm-x-ach">partëra</AUni> -<AUni ws="qvm-x-acl">partëra</AUni> -<AUni ws="qvm-x-akh">partëra</AUni> -<AUni ws="qvm-x-akl">partëra</AUni> -<AUni ws="qvm-x-ame">partëra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="225a2892-1bfd-43b4-b192-9398f05fd0f1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">puestu; puesto</AUni> -<AUni ws="qvm-x-acl">puestu; puestu; puesto</AUni> -<AUni ws="qvm-x-akh">puestu; puesto</AUni> -<AUni ws="qvm-x-akl">puestu; puestu; puesto</AUni> -<AUni ws="qvm-x-ame">puestu; puesto</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+puesto.n</AUni> -<AUni ws="qvm-x-acl">+puesto.n</AUni> -<AUni ws="qvm-x-akh">+puesto.n</AUni> -<AUni ws="qvm-x-akl">+puesto.n</AUni> -<AUni ws="qvm-x-ame">+puesto.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.972" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a5e70fa3-19fb-4fde-88da-2272bee10294" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+puesto.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c74947ba-c8b8-477d-830a-1a3d358c36d2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8346e037-c9ec-4e9d-958f-adefae84a1fb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +puesto.n 
\entryTyp root 
\gENG place 
\gSPN puesto 
\e +puesto.n 
\c N0 
\ach puestu / ~_# 
\ach puesto / _# 
\akh puestu / ~_# 
\akh puesto / _# 
\acl puestu / ~_# 
\acl puestu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl puesto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl puestu / ~_# 
\akl puestu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl puesto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame puestu / ~_# 
\ame puesto / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="225a35c4-22c0-44b9-8fe8-ca2f81599704" ownerguid="96d55d8f-8542-4f56-8e5e-bce28f7ceb19"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="225c48dd-9fc2-4467-944f-16a098b4e518" ownerguid="a3ba10f3-66e3-4ad5-8057-453b8941e497"> -<Abbreviation> -<AUni ws="en">4.8.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.284" /> -<DateModified val="2022-9-23 16:55:8.284" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to defeating someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>39L Conquer</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Defeat</AUni> -</Name> -<Questions> -<objsur guid="e3233be5-c3d4-43ac-98c0-393b389000fc" t="o" /> -<objsur guid="33b5e2c6-d749-44b9-9c93-61cf16ac862b" t="o" /> -<objsur guid="d6fd27db-68de-4c22-9bef-1ebe8053648a" t="o" /> -<objsur guid="c16b0c37-c392-47c9-b7f9-719958adfed2" t="o" /> -<objsur guid="1c2cb7c9-a904-439e-a711-5e0433d73ce6" t="o" /> -<objsur guid="2a809e38-7d91-4b0a-a291-9b2e1e62101f" t="o" /> -<objsur guid="1af4b79e-4212-4158-ae57-0ea374cec9d7" t="o" /> -<objsur guid="2a4f517b-edb1-425d-a456-6121138954db" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="2265a4bd-379d-4a9d-80d5-2318e6c8c683" ownerguid="f76c3803-1c7a-4181-9a87-64ae7231a67d"> -<Abbreviation> -<AUni ws="en">8.5.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.668" /> -<DateModified val="2022-9-23 16:55:8.668" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that something is outside something else.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>83C Among, Between, In, Inside</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Inside</AUni> -</Name> -<Questions> -<objsur guid="722a2521-4390-4736-990b-582014a4997b" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="f4829d9d-a93f-4fc5-918c-6d4c501a6573" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="2269aeba-112c-4eab-a1e5-7d4f6aaf6c8d" ownerguid="fde45a84-0200-401f-bfe2-e5eec524e5ca"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="e74c8f82-47ce-478b-8ac4-f60f84dd18d2" t="o" /> -<objsur guid="96d49f90-8c9c-496c-988e-a9b1815dd69f" t="o" /> -<objsur guid="c229197b-bc65-4438-bb78-0c1010a38d78" t="o" /> -<objsur guid="11705186-50f2-478e-9e44-b30153f998aa" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiMorphBundle" guid="226d3d92-1383-4d89-bcee-76001a884b07" ownerguid="6a70c81a-31ac-4c37-bd61-f1ba2a278341"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">päcu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">päcu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">päku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">päku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">päku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d9706437-e094-4fe8-b14f-01ea8dfdec23" t="r" /> -</Morph> -<Msa> -<objsur guid="f32a5a50-f426-45b8-ae08-eba8e0a53b74" t="r" /> -</Msa> -<Sense> -<objsur guid="f9fa41d4-dd29-40f1-be9f-24911a0fb7bb" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="2271721f-4c3c-45b2-b378-b1549b03c59d" ownerguid="a86b2e14-1299-4f59-842c-c4c5a401aace"> -<ExampleWords> -<AUni ws="en">distinguish, identify, know, place, realize, recognize, recognition, pick out, tell, not mistake</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to recognizing something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="22743cd1-08fc-4b78-bd4b-7ce6d6923ba9" ownerguid="cfa72fa4-c17c-4c62-80f5-b9b347e94ba1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">go.rancid</AUni> -<AUni ws="es">ranciar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e95a1edc-d88b-4172-b9a6-ccda111cf8be" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="22751dce-e4ca-4033-9562-2103e57ee20a" ownerguid="3cd36fee-d3e2-4b9b-82a7-6f25d696c83f"> -<Form> -<AUni ws="qvm-x-ach">uysu</AUni> -<AUni ws="qvm-x-acl">uysu; uyso</AUni> -<AUni ws="qvm-x-akh">uysu</AUni> -<AUni ws="qvm-x-akl">uysu; uyso</AUni> -<AUni ws="qvm-x-ame">uysu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2277cb0d-5615-4e2e-b5f5-10f090982cde" ownerguid="5fd34ae2-6b2d-4841-ac57-cee710e19006"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">custom</AUni> -<AUni ws="es">costumbre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a6cbe677-559b-4905-ba94-e1544a18a514" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="227c03ea-ea19-4edc-8527-3ddc09db49c5" ownerguid="84622623-77dc-4eac-a84d-fc9dc4a72b39"> -<Form> -<AUni ws="qvm-x-ach">cäsu</AUni> -<AUni ws="qvm-x-acl">cäsu; cäso</AUni> -<AUni ws="qvm-x-akh">cäsu</AUni> -<AUni ws="qvm-x-akl">cäsu; cäso</AUni> -<AUni ws="qvm-x-ame">cäsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="227c59db-601d-422b-8842-470cd7540560" ownerguid="eaed8c63-9f97-4116-927c-19f364a99e72"> -<ExampleWords> -<AUni ws="en">unfriendly, cool, strained, frosty, turn sour</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a relationship that is unfriendly?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="227fb664-a77f-41ed-8ccc-1daafc834d73"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chiwi</AUni> -<AUni ws="qvm-x-acl">chiwi; chiwi; chiwe</AUni> -<AUni ws="qvm-x-akh">chiwi</AUni> -<AUni ws="qvm-x-akl">chiwi; chiwi; chiwe</AUni> -<AUni ws="qvm-x-ame">chiwi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*triwi.n</AUni> -<AUni ws="qvm-x-acl">*triwi.n</AUni> -<AUni ws="qvm-x-akh">*triwi.n</AUni> -<AUni ws="qvm-x-akl">*triwi.n</AUni> -<AUni ws="qvm-x-ame">*triwi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.139" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e6a5ccc3-d144-41a0-90bf-92cc95e79e90" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*triwi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b9f8e4f3-7411-4695-9fb9-b914f8829314" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="db6381d1-a13c-4d13-8142-d75aa44e273b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *triwi.n 
\entryTyp root 
\gENG type.potato 
\gSPN clase.papa 
\e *triwi.n 
\c N0 
\mp +FinalI 
\ach chiwi 
\akh chiwi 
\acl chiwi / _# 
\acl chiwi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chiwe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chiwi / _# 
\akl chiwi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chiwe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chiwi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoAffixAllomorph" guid="22806abf-f462-448a-bb3e-39bbf5d75aea" ownerguid="bbff1d40-e754-42d6-ad25-68f2993e137d"> -<Form> -<AUni ws="qvm-x-ach">ka</AUni> -<AUni ws="qvm-x-acl">ka</AUni> -<AUni ws="qvm-x-akh">ka</AUni> -<AUni ws="qvm-x-akl">ka</AUni> -<AUni ws="qvm-x-ame">ka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<MsEnvFeatures> -<objsur guid="afcb93c3-7487-43bb-b6ef-e20d3699f66c" t="o" /> -</MsEnvFeatures> -</rt> -<rt class="LexSense" guid="2284b653-aacd-4424-a012-df7d429e10ec" ownerguid="e9515a66-8027-4815-a23c-3614b5c5089a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.hungry</AUni> -<AUni ws="es">tener.hambre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f0aaf32c-78ce-437b-a2ba-10bb748068a9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2286493c-d865-481e-91dc-8151c9cff5ff" ownerguid="75825d72-695b-4e92-9f33-0f3ab4d7dd11"> -<ExampleWords> -<AUni ws="en">ptui</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the sound made when spitting?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2287115c-850a-4910-bd2d-c71276f89471" ownerguid="c2891be6-e7d7-41d5-add0-da25e169a446"> -<Form> -<AUni ws="qvm-x-ach">revelación; revelacion</AUni> -<AUni ws="qvm-x-acl">revelación; revelacion</AUni> -<AUni ws="qvm-x-akh">revelación; revelacion</AUni> -<AUni ws="qvm-x-akl">revelación; revelacion</AUni> -<AUni ws="qvm-x-ame">revelación; revelacion</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2289b511-878b-4f22-b59c-2872f02d780b" ownerguid="768aed05-dbc9-4caf-9461-76cb3720f908"> -<ExampleWords> -<AUni ws="en">throb, throbbing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to a pain that increases and decreases repeatedly?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="228a64f0-4807-4567-a3dc-138ecb262512"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shogli</AUni> -<AUni ws="qvm-x-acl">shogli; shogle</AUni> -<AUni ws="qvm-x-akh">shoqli</AUni> -<AUni ws="qvm-x-akl">shoqli; shoqle</AUni> -<AUni ws="qvm-x-ame">shuqli</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shuqlli</AUni> -<AUni ws="qvm-x-acl">*shuqlli</AUni> -<AUni ws="qvm-x-akh">*shuqlli</AUni> -<AUni ws="qvm-x-akl">*shuqlli</AUni> -<AUni ws="qvm-x-ame">*shuqlli</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.652" /> -<DateModified val="2022-10-10 21:18:47.207" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9fab97a2-8a98-4a2d-857d-cfa88767ea81" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shuqlli</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="86145e0c-9cbf-42a9-a25d-13c00ef8d255" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="91b91076-3441-4cc6-ad42-2721a8385e5c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shuqlli 
\entryTyp root 
\gENG 
\gSPN 
\e *shuqlli 
\c V1 
\mp +FinalI 
\ach shogli 
\akh shoqli 
\acl shogli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shogle +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shoqli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shoqle +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shuqli</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="228ad802-b87e-4976-852b-bf3a3bae7429" ownerguid="152ae262-6ff3-434d-addf-9f19188babd4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.name</AUni> -<AUni ws="es">nombrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="00a1c838-da5d-4ea2-b726-7a74450434e4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="228cf19d-02a1-4fb1-83b0-8a91b0c7206e" ownerguid="36176d59-171b-4a0a-a0f7-a8f9857536a1"> -<ExampleWords> -<AUni ws="en">go straight, in a straight line, direct, as the crow flies</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving straight?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="228d3a02-a554-45bc-9067-92434f3a17a3" ownerguid="538a4c20-01d7-40b9-b462-ae279ff3dc27"> -<ExampleWords> -<AUni ws="en">gray, ashen, charcoal gray, grizzle, grizzled, grizzly, hoar, hoary, leaden, mouse-colored, mousy, muddy, slate-gray, smoky, sooty, steel-gray</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is gray in color?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="228eb66f-4b13-49df-b062-0209da2f772b" ownerguid="41cef4fd-9a23-4439-b3e7-74a300b7a8cc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">coca.gourd</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0a0f975d-5952-44b1-9fa7-29a62adf19ed" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="2295c217-db8e-4b3e-a5b8-45f105cfe599" ownerguid="4b82a47e-6a4c-43b6-8897-8a44bf15a9c9"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="22964c49-7908-47c3-beb1-8c33e073470b" ownerguid="c8595a5f-4dde-4260-b8d8-265d0554ce93"> -<ExampleWords> -<AUni ws="en">win easily, win hands down, sweep to victory, romp home, sweep the board</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to winning easily?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2297c530-50b7-4b44-80fc-1fabc227aff5" ownerguid="d6c36bbe-a6b6-4c25-9ea3-e2289212431f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">debtor</AUni> -<AUni ws="es">deudor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5db4959f-074b-455e-bc6d-c86ab785a88a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="2297dbd6-f42c-49b5-9874-dc16376897d4" ownerguid="bf57579e-47db-43a0-b876-b81c8ea5554c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">young.man</AUni> -<AUni ws="es">mozo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="663e1995-17c4-41e8-9c25-9fff81b0c786" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="229eb9bd-17e4-482a-aa26-2c12d563440c" ownerguid="753a3f61-c380-483d-8c0a-588acdfbba17"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="22a011f7-7e10-4de3-8433-faf9b5e8a6b5" ownerguid="691bdba3-c216-4b42-877c-674bbdb517a7"> -<ExampleWords> -<AUni ws="en">not trust, distrust, be suspicious of, be suspicious of, view someone with suspicion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to not trusting someone?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="22a0ca9f-7947-4ac8-a411-9e74b9c2642d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">oli:vus</AUni> -<AUni ws="qvm-x-acl">oli:vus</AUni> -<AUni ws="qvm-x-akh">oli:vus</AUni> -<AUni ws="qvm-x-akl">oli:vus</AUni> -<AUni ws="qvm-x-ame">oli:vus</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+olivos.2</AUni> -<AUni ws="qvm-x-acl">+olivos.2</AUni> -<AUni ws="qvm-x-akh">+olivos.2</AUni> -<AUni ws="qvm-x-akl">+olivos.2</AUni> -<AUni ws="qvm-x-ame">+olivos.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.628" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2a8612ee-d680-427d-bc38-68a588d65d09" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+olivos.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="de45e86b-9f26-4947-8240-82d9fbd22a39" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="817d04f0-6555-41db-9960-fe39270e8d47" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +olivos.2 
\entryTyp root 
\gENG olive 
\gSPN 
\e +olivos.2 
\c N0 
\mp +FinalC 
\ach oli:vus 
\akh oli:vus 
\acl oli:vus 
\akl oli:vus 
\ame oli:vus</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="22a26c80-94d5-492a-936d-afd8dcb44c47" ownerguid="a497fb49-8d8d-4cf1-821f-67470b8e8098"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="22a4035d-3144-44c9-9bf4-83681b01e794" ownerguid="8225de87-35a3-4c7a-b35c-f45b152caebe"> -<ExampleWords> -<AUni ws="en">suggest, point to, imply, give the impression</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something showing that something might be true?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="22a43fb4-bdb5-4829-9140-ca54a6790241" ownerguid="4a0669d9-38b7-4482-95ce-8b4a229bab19"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">large.rock</AUni> -<AUni ws="es">peña</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e08a40b6-834b-448b-8103-5a8ab8af65c4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="22a800c3-f5dc-4b2b-9f1f-10b2333c333c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maygani</AUni> -<AUni ws="qvm-x-acl">maygani; maygani; maygane</AUni> -<AUni ws="qvm-x-akh">mayqani</AUni> -<AUni ws="qvm-x-akl">mayqani; mayqani; mayqane</AUni> -<AUni ws="qvm-x-ame">mayqani</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mayqani</AUni> -<AUni ws="qvm-x-acl">*mayqani</AUni> -<AUni ws="qvm-x-akh">*mayqani</AUni> -<AUni ws="qvm-x-akl">*mayqani</AUni> -<AUni ws="qvm-x-ame">*mayqani</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.384" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="347214bf-e07d-4cc8-b9f1-fd2ebf3814e5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mayqani</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e4a5be10-a274-4e9a-b2e6-40ea7358d842" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="33fbe42e-485d-4e0d-83c8-531b7a47eb6f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mayqani 
\entryTyp root 
\gENG which 
\gSPN cual 
\e *mayqani 
\c N1 
\mp +FinalI 
\ach maygani 
\akh mayqani 
\acl maygani / _# 
\acl maygani +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl maygane +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mayqani / _# 
\akl mayqani +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mayqane +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mayqani</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="22a99a38-71cb-46ee-8ac0-90f16ff0b0fa" ownerguid="f6df56d5-05df-40f4-9c66-8042b406f68d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -<Sense> -<objsur guid="7cd134ea-89c1-4a60-8992-dcac673bd263" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="22aaf82f-4320-4b39-bc3a-f64055eda0ae" ownerguid="c60cf6a1-7868-4536-ac73-387bfa26e04b"> -<ExampleWords> -<AUni ws="en">leader of a rebellion, rebel leader, revolutionary leader</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What is the leader of a rebellion called?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="22ab2e40-daa3-4bce-a058-8b9748650a70" ownerguid="7cfc8b3c-ad67-4928-ae6a-74afd47ced89"> -<ExampleWords> -<AUni ws="en">complete, full, whole, in full, in its entirety, be all there, all of, entire, intact, undivided, united</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is whole?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="22aba232-9fe9-4f6e-afda-41c40a29d3d8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wagra</AUni> -<AUni ws="qvm-x-acl">wagra</AUni> -<AUni ws="qvm-x-akh">waqra</AUni> -<AUni ws="qvm-x-akl">waqra</AUni> -<AUni ws="qvm-x-ame">waqra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waqra</AUni> -<AUni ws="qvm-x-acl">*waqra</AUni> -<AUni ws="qvm-x-akh">*waqra</AUni> -<AUni ws="qvm-x-akl">*waqra</AUni> -<AUni ws="qvm-x-ame">*waqra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.505" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1e81b2d6-e9e0-4054-86b9-a176f4e651a5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waqra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a8e0f7dd-4e42-4482-b087-5cab01b93363" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="32fce4a2-2ad8-44e3-86a8-d9417cecec55" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waqra 
\entryTyp root 
\gENG horn 
\gSPN cuerno 
\e *waqra 
\c N0 
\ach wagra 
\akh waqra 
\acl wagra 
\akl waqra 
\ame waqra 
\i Canan mana chasquimarga yapaychöga wagratami tarinquipag.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="22acd714-b11e-462a-bd8e-6ff50843c103" ownerguid="cde96694-79e5-44af-8d38-d988d1938e5f"> -<Abbreviation> -<AUni ws="en">6.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.458" /> -<DateModified val="2022-9-23 16:55:8.458" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the parts and areas of a building.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>7C Parts and Areas of Buildings</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Parts of a building</AUni> -</Name> -<Questions> -<objsur guid="e02318e6-e2dd-4c67-9e48-2eba4002f466" t="o" /> -<objsur guid="a0fae60b-0697-437d-b562-459ff648420d" t="o" /> -<objsur guid="38099f47-2012-4ffb-a7b2-0eab39022b21" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="50903b35-5606-4727-8474-01c06bf588da" t="o" /> -<objsur guid="eec72226-106c-4825-b245-6e18110ee917" t="o" /> -<objsur guid="3a568f98-8446-4327-876b-7c5ec78d9084" t="o" /> -<objsur guid="bafa274e-8bf0-4cf7-8ce7-2c28293db809" t="o" /> -<objsur guid="eeee02e1-157e-4786-ab92-80c92e5023b8" t="o" /> -<objsur guid="58be5db0-c648-4522-bad0-02cd9cc15f37" t="o" /> -<objsur guid="d2b61570-af54-44f3-846e-6d7ec9d3737f" t="o" /> -<objsur guid="84a8d541-9571-4ce9-abea-bd9cccb8dbf0" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="22ad1223-f8bd-40c6-97e3-ccfd459a49ef" ownerguid="b3ff132a-ac26-4c51-a325-be3beb92c8e0"> -<Form> -<AUni ws="qvm-x-ach">caspa</AUni> -<AUni ws="qvm-x-acl">caspa</AUni> -<AUni ws="qvm-x-akh">caspa</AUni> -<AUni ws="qvm-x-akl">caspa</AUni> -<AUni ws="qvm-x-ame">caspa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="22ad5bb1-f6d7-4107-81ba-2f81cb985022"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">aywakuptïqa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiWordform" guid="22b01be7-bbe4-4473-a6cf-4e7e87306d60"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">tarqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="22b147b4-6edd-4338-ba8d-ade0f608d941" ownerguid="e180e046-1dd0-4f30-85ab-aada2c945041"> -<Form> -<AUni ws="qvm-x-ach">acsa</AUni> -<AUni ws="qvm-x-acl">acsa</AUni> -<AUni ws="qvm-x-akh">aksa</AUni> -<AUni ws="qvm-x-akl">aksa</AUni> -<AUni ws="qvm-x-ame">aksa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="22b15dbb-393c-4159-a80e-7d651bd02092" ownerguid="054f479c-f87a-4ee3-bc51-b80249cde0ce"> -<Form> -<AUni ws="qvm-x-ach">combu; combo</AUni> -<AUni ws="qvm-x-acl">combu; combu; combo</AUni> -<AUni ws="qvm-x-akh">combu; combo</AUni> -<AUni ws="qvm-x-akl">combu; combu; combo</AUni> -<AUni ws="qvm-x-ame">combu; combo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="22b1b7aa-2451-4ca8-bedd-bea3a6ba93d4" ownerguid="06ad8615-b0d1-4f3e-897b-e73e058104e1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="22b1f683-802b-4d48-bbf7-ca642cf3f5ac" ownerguid="db5c48df-4562-47e3-8962-4fa94cf7ea8a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lets.see</AUni> -<AUni ws="es">a.ver</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ea66b5e2-d298-413e-9633-f0cb41751b75" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="22b52461-ebe0-422d-a7cb-7b9359e7a701"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shogpi</AUni> -<AUni ws="qvm-x-acl">shogpi; shogpi; shogpe</AUni> -<AUni ws="qvm-x-akh">shoqpi</AUni> -<AUni ws="qvm-x-akl">shoqpi; shoqpi; shoqpe</AUni> -<AUni ws="qvm-x-ame">shuqpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shuqpi.n</AUni> -<AUni ws="qvm-x-acl">*shuqpi.n</AUni> -<AUni ws="qvm-x-akh">*shuqpi.n</AUni> -<AUni ws="qvm-x-akl">*shuqpi.n</AUni> -<AUni ws="qvm-x-ame">*shuqpi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.652" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="34d3cafa-6d6f-442c-84ca-d81be3f7f715" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shuqpi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="67ccf8c6-a7c7-40df-864a-115f41357a80" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2b7747e9-3327-4700-9e0d-1492c76a05d1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shuqpi.n 
\entryTyp root 
\gENG pass.g.pig 
\gSPN jubeo 
\e *shuqpi.n 
\c N0 
\mp +FinalI 
\ach shogpi 
\akh shoqpi 
\acl shogpi / _# 
\acl shogpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shogpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shoqpi / _# 
\akl shoqpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shoqpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shuqpi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="22b5b9d6-be48-4718-9b5d-1eaba53053b9" ownerguid="b6686c7c-39de-40b5-adee-67fc7dc54374"> -<ExampleWords> -<AUni ws="en">one thousand, two thousand</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) multiples of one thousand</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="22b66ef5-8dc8-4f64-8303-181efaf665c1" ownerguid="43848228-1b74-4d32-a279-c6826f9190fd"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="c0a8d088-78b3-40e6-a4ea-e43393fea3a3" t="r" /> -</Morph> -<Msa> -<objsur guid="3503ea2c-6d6a-40bd-ab49-d2f29a6d368a" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="22b8b918-ebf8-40ac-acd3-2d7849e29907" ownerguid="a9f5ead1-80d8-4344-8860-f035cb403617"> -<Form> -<AUni ws="qvm-x-ach">jicha</AUni> -<AUni ws="qvm-x-acl">jicha</AUni> -<AUni ws="qvm-x-akh">jicha</AUni> -<AUni ws="qvm-x-akl">jicha</AUni> -<AUni ws="qvm-x-ame">hicha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="22bad4ca-5905-40c3-9b5a-19f48c665a6b" ownerguid="cdccd898-2887-4738-9ae9-1e3b0920a8ac"> -<Form> -<AUni ws="qvm-x-ach">chiclaushu</AUni> -<AUni ws="qvm-x-acl">chiclaushu; chiclaushu; chiclausho</AUni> -<AUni ws="qvm-x-akh">chiklawshu</AUni> -<AUni ws="qvm-x-akl">chiklawshu; chiklawshu; chiklawsho</AUni> -<AUni ws="qvm-x-ame">chiklawshu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="22bbd1af-ca0f-4076-82e9-0f4cfaf43fa4" ownerguid="72274e9d-5d3c-4ae7-93ab-db3617cdda1e"> -<ExampleWords> -<AUni ws="en">touchable, tangible, palpable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What words describe something that can be felt?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="22bde921-33c6-40be-8884-c079ac031cc8"> -<Analyses> -<objsur guid="432acf5a-1d31-4f9c-8b2d-674b5dcec0b4" t="o" /> -<objsur guid="c32f6536-3f9f-4d6e-90fb-4b375d9d195f" t="o" /> -</Analyses> -<Checksum val="297836957" /> -<Form> -<AUni ws="qvm-x-akh">jutinmi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="22be628e-6f89-4393-8427-195349f5896f" ownerguid="c21b5bb9-262c-4c84-88b7-27aa810b7daa"> -<Form> -<AUni ws="qvm-x-ach">pucuta; pucutä</AUni> -<AUni ws="qvm-x-acl">pucuta; pucutä</AUni> -<AUni ws="qvm-x-akh">pukuta; pukutä</AUni> -<AUni ws="qvm-x-akl">pukuta; pukutä</AUni> -<AUni ws="qvm-x-ame">pukuta; pukutä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="22bf031c-cd0a-4ae5-8e49-a569cad42ab1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">api</AUni> -<AUni ws="qvm-x-acl">api; api; ape</AUni> -<AUni ws="qvm-x-akh">api</AUni> -<AUni ws="qvm-x-akl">api; api; ape</AUni> -<AUni ws="qvm-x-ame">api</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*api</AUni> -<AUni ws="qvm-x-acl">*api</AUni> -<AUni ws="qvm-x-akh">*api</AUni> -<AUni ws="qvm-x-akl">*api</AUni> -<AUni ws="qvm-x-ame">*api</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.808" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b9f0dd42-87d2-4abe-8a00-8d7c6d6715e6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*api</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8e7b0bea-ee2b-46a5-8967-46a8c6b451bc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d1dca22b-5ec2-44c8-84e1-dac0acfb62a2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *api 
\entryTyp root 
\gENG pudding 
\gSPN mazamorra 
\e *api 
\c N0 
\mp +FinalI 
\ach api 
\akh api 
\acl api / _# 
\acl api +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ape +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl api / _# 
\akl api +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ape +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame api</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="22bf2c84-cfd5-40ed-b285-eede62c78388" ownerguid="f4efeaf5-2519-40aa-99d8-baba2acc673f"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 29.24 Suwacog runata janamparga quiquinmi pengaycho cangapag.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="22c27f0c-f9ef-4cb0-ad82-93f2702fc969" ownerguid="f7f8cb90-5bb1-4dd9-b0d2-194539e34d60"> -<Form> -<AUni ws="qvm-x-ach">sacsa; sacsä</AUni> -<AUni ws="qvm-x-acl">sacsa; sacsä</AUni> -<AUni ws="qvm-x-akh">saksa; saksä</AUni> -<AUni ws="qvm-x-akl">saksa; saksä</AUni> -<AUni ws="qvm-x-ame">saksa; saksä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="22c2834c-988f-4245-97ee-9f08a6f4fc7e" ownerguid="d9e03373-2058-4d9c-b4cd-7babe75e5d6a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="22c303d7-5983-4a5e-8a9b-7654b4dc1fb4" ownerguid="a122b79d-c2ec-40b0-ab0e-26c238dd06d2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mud.wall</AUni> -<AUni ws="es">tapia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ce9019f3-7d02-41cb-aea5-e4371688b104" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="22c50a6a-9f84-46c5-9230-f58fe9c5acda" ownerguid="68dec44d-7c5b-4e12-9f6e-0aa0b8dec042"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="22c5e587-7344-48d8-84d4-f02869ee72db" ownerguid="e975f49e-455e-41f4-8410-e3cb486570c4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="3761b773-0444-4655-8caf-44a83885a188" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="22c84fcb-36ce-4b91-84c1-e01201077c74" ownerguid="c96ac1eb-12f2-47af-9e96-9d99fce7e8f5"> -<ExampleWords> -<AUni ws="en">receive, take, accept, pick up, get, obtain, gain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to receiving something from someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="22c9a570-6d24-4a71-bf75-ed03f2a5fabf" ownerguid="abb362dd-be9e-4508-a818-32afb7b9acd1"> -<Form> -<AUni ws="qvm-x-ach">formal</AUni> -<AUni ws="qvm-x-acl">formal</AUni> -<AUni ws="qvm-x-akh">formal</AUni> -<AUni ws="qvm-x-akl">formal</AUni> -<AUni ws="qvm-x-ame">formal</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="22cb156e-420a-4b73-bbe9-5bd9d0417f3b" ownerguid="349f0278-7998-422a-9c3b-6053989cbb20"> -<ExampleWords> -<AUni ws="en">grammar, syntax, morphology</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the study of grammar?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="22cebd0a-c289-4ab5-b82f-e6506ed3568a" ownerguid="38ab2681-fcc7-4a75-bb0b-29c5cd2e3a8f"> -<ExampleWords> -<AUni ws="en">send, dismiss, transfer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to sending someone somewhere?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="22d0be6c-8093-4e9e-be0f-df09e714fc3b" ownerguid="a3ba10f3-66e3-4ad5-8057-453b8941e497"> -<ExampleWords> -<AUni ws="en">war, warfare, fighting, civil war, conflict, armed conflict</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to war?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="22d2da41-c1cb-4b4a-9673-88fcbc169c1a" ownerguid="1250b0bf-4a27-4d46-92e9-e54af38e5a83"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">smoke</AUni> -<AUni ws="es">humo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="21f1d588-13a3-4a04-bf96-7cda5a85c8d7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="22d3ead5-1fa4-41ab-8bed-b217e18d8e13" ownerguid="ef860ee3-a4a5-4a42-b810-fdf41e35d151"> -<ExampleWords> -<AUni ws="en">pastorate, priesthood, ministry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the profession of being a religious leader?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="22d7c7c0-e4a3-463c-b84f-276b73360c2f" ownerguid="0698b0f4-0a31-4a70-9262-8d36677d8faa"> -<ExampleWords> -<AUni ws="en">neglect, allow to grow wild, become overgrown, let the weeds grow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to neglecting plants?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="22db13b4-8ff0-443f-adc6-1100ca58e57c" ownerguid="fe962b84-619c-4318-8461-38767daceb3e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">press</AUni> -<AUni ws="es">apresurar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6d831b43-8db7-4c37-ae5c-248f018c42c5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="22dba64d-28de-40f7-9e78-18a38f30642b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wilapa</AUni> -<AUni ws="qvm-x-acl">wilapa</AUni> -<AUni ws="qvm-x-akh">wilapa</AUni> -<AUni ws="qvm-x-akl">wilapa</AUni> -<AUni ws="qvm-x-ame">wilapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*willapa</AUni> -<AUni ws="qvm-x-acl">*willapa</AUni> -<AUni ws="qvm-x-akh">*willapa</AUni> -<AUni ws="qvm-x-akl">*willapa</AUni> -<AUni ws="qvm-x-ame">*willapa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.656" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="788e03b3-ed03-4f60-88c3-e4b81b2b4e3e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*willapa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fb2e8792-b7dd-4d8b-85a9-fb2015f58423" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="98eedf7e-34a7-484b-bc09-eb5c159d9b25" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *willapa 
\entryTyp root 
\gENG news 
\gSPN noticia 
\e *willapa 
\c N0 
\ach wilapa 
\akh wilapa 
\acl wilapa 
\akl wilapa 
\ame wilapa 
\mcc *willapa / ~_ ADV5</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="22dfc54b-198c-4e35-b306-21ffa5ef0c0d" ownerguid="02d404d7-f3d7-492c-92a0-c6c9ff1a1908"> -<ExampleWords> -<AUni ws="en">Let's say grace. Let's thank the Lord for the food. Let's eat. Dig in.</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What do people say at the beginning of a meal?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="22e0d872-703a-48c6-a2ca-898bfd39e98e"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">whose</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="22e4b16f-7bf6-474e-be3d-94a53d5c5353" ownerguid="ff1ba929-bc37-48bd-83a9-c049ced3ef00"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">measles</AUni> -<AUni ws="es">sarampion</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="304682b3-bfc8-428d-a562-7905a2fceb0f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="22e67755-9387-48a6-a301-3c1076f73436" ownerguid="a6b042b8-9ab8-4f14-87f9-b6562a5a82de"> -<Form> -<AUni ws="qvm-x-ach">polvu</AUni> -<AUni ws="qvm-x-acl">polvu; polvo</AUni> -<AUni ws="qvm-x-akh">polvu</AUni> -<AUni ws="qvm-x-akl">polvu; polvo</AUni> -<AUni ws="qvm-x-ame">polvu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="22e68523-52f6-4ebb-b10d-4afbebc4aceb" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<ExampleWords> -<AUni ws="en">medium, average, medium-sized, average-sized, in between</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(17) What words describe something that is not big or small?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="22e6db76-b312-4492-8124-662f596cc1ff" ownerguid="100e62a6-b6f4-4b30-b317-0517d6b102a9"> -<ExampleWords> -<AUni ws="en">come out of your shell, come out of yourself, open up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to not being shy?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="22e860df-d66b-4d71-9367-cfb5a9fdf09b" ownerguid="01bdba39-7318-4c79-8798-e28bb3af16dc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="70df1369-a1ab-4c20-af03-6ca913864b5c" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">trust</AUni> -<AUni ws="es">confianza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2b15ddb3-303a-45a8-8367-f3f75fc1c5d0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="22e8f542-0ab1-4f25-af50-fd0d02917fda" ownerguid="05472990-3f51-40b3-bca8-df3cf383328b"> -<Abbreviation> -<AUni ws="en">3.5.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.172" /> -<DateModified val="2022-9-23 16:55:8.172" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to figurative speech--saying something that is not meant to be understood literally (according to the normal meaning of each word), or saying something that compares one thing to another.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Figurative</AUni> -</Name> -<Questions> -<objsur guid="b4d72877-eb52-4c74-8dda-dcb6df4e761f" t="o" /> -<objsur guid="47f7eed7-5803-4c50-a40b-e3296d4274a2" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="22ec1ad2-9080-4ae8-83e2-731ffe1c33f0" ownerguid="9e940a56-a94f-49b1-a795-d8a78b83d26b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="22eed30b-9f29-4845-925a-f553fea63fff"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chisha</AUni> -<AUni ws="qvm-x-acl">chisha</AUni> -<AUni ws="qvm-x-akh">chisha</AUni> -<AUni ws="qvm-x-akl">chisha</AUni> -<AUni ws="qvm-x-ame">chisha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trisha</AUni> -<AUni ws="qvm-x-acl">*trisha</AUni> -<AUni ws="qvm-x-akh">*trisha</AUni> -<AUni ws="qvm-x-akl">*trisha</AUni> -<AUni ws="qvm-x-ame">*trisha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.129" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="40ad7b1f-c0f1-4f0a-b413-69ca27f5f601" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trisha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c3977675-e63e-4d29-ab45-354328033c3e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="df51ab41-d40c-4d77-9372-0343746283bb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trisha 
\entryTyp root 
\gENG scat 
\gSPN zape 
\e *trisha 
\c NOSUFF 
\ach chisha 
\akh chisha 
\acl chisha 
\akl chisha 
\ame chisha</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="22f03c3e-bf6a-4c6c-b02f-eb8bd0398ff6" ownerguid="0f66f970-4598-4b80-92f4-1d5fe4f0a8ea"> -<PartOfSpeech> -<objsur guid="07455e91-118a-4d7d-848c-39bedd355a3d" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="22f3bf70-7951-421a-9714-6c5c0876c682" ownerguid="21083632-77f8-4c64-b957-34c04bce47f4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="22f423c5-8417-425e-bbf3-c99f5483d53e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wana</AUni> -<AUni ws="qvm-x-acl">wana</AUni> -<AUni ws="qvm-x-akh">wana</AUni> -<AUni ws="qvm-x-akl">wana</AUni> -<AUni ws="qvm-x-ame">wana</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wana</AUni> -<AUni ws="qvm-x-acl">*wana</AUni> -<AUni ws="qvm-x-akh">*wana</AUni> -<AUni ws="qvm-x-akl">*wana</AUni> -<AUni ws="qvm-x-ame">*wana</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.475" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ac1c2981-b3a5-4ad9-aee1-8fcaf20741d1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wana</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="780659d4-93fc-420f-b245-e2be2d65bf1f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c0b4b1cb-1f51-45fd-a133-b7a45929554c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wana 
\entryTyp root 
\gENG 
\gSPN comprender 
\e *wana 
\c V2 
\ach wana 
\akh wana 
\acl wana 
\akl wana 
\ame wana</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="22f943d1-3a95-4b3b-bf1b-e9fcb94255c3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">liqui</AUni> -<AUni ws="qvm-x-acl">liqui; liqui; lique</AUni> -<AUni ws="qvm-x-akh">liki</AUni> -<AUni ws="qvm-x-akl">liki; liki; like</AUni> -<AUni ws="qvm-x-ame">liki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lliki.n</AUni> -<AUni ws="qvm-x-acl">*lliki.n</AUni> -<AUni ws="qvm-x-akh">*lliki.n</AUni> -<AUni ws="qvm-x-akl">*lliki.n</AUni> -<AUni ws="qvm-x-ame">*lliki.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.194" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2e76df7e-b483-4e26-b1ca-223119315051" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lliki.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d78ebab4-8887-4f8f-93e5-76f7ac4c139d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="becdbb71-0ebf-438c-bfea-a51c9ca20500" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lliki.n 
\entryTyp root 
\gENG broad 
\gSPN ancho 
\e *lliki.n 
\c N0 
\mp +FinalI 
\ach liqui 
\akh liki 
\acl liqui / _# 
\acl liqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lique +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl liki / _# 
\akl liki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl like +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame liki</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="22fbaceb-f8bc-420a-8758-56456daecd78" ownerguid="01441207-4935-49a5-a192-16d949f5606c"> -<ExampleWords> -<AUni ws="en">referee, to referee, referee's whistle, umpire, to umpire, official, commissioner, timekeeper, to keep time, call time, stop play, to rule</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(20) What is the person called who enforces the rules?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="22fcb968-b0fb-48e9-8958-3e0c8cd4d3cc" ownerguid="45f7b003-ade3-4efc-8dee-259dcbf80a4a"> -<ExampleWords> -<AUni ws="en">plea, entreaty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to what is said when a person pleads?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2301ef20-57e9-4c0a-a62a-5a1092f82622" ownerguid="975d0109-1bba-4b0e-85b8-2c6b51c8e074"> -<ExampleWords> -<AUni ws="en">sit up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to sitting up from a lying position?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2306c290-4ca1-427f-a22a-c0ca32e1fbca" ownerguid="5a39edae-1ace-4889-b636-1dfd2a1bcc3c"> -<ExampleWords> -<AUni ws="en">pour, dip out, wring out, wring from, squeeze out, suck out, pump, milk, soak up, absorb, absorbent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to taking water out of something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2307cb23-54a8-47e7-b937-cfee82366bd4" ownerguid="a09c7bc2-692c-4e60-8683-65b84eff22cd"> -<Form> -<AUni ws="qvm-x-ach">piña</AUni> -<AUni ws="qvm-x-acl">piña</AUni> -<AUni ws="qvm-x-akh">piña</AUni> -<AUni ws="qvm-x-akl">piña</AUni> -<AUni ws="qvm-x-ame">piña</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="230a29fd-ae41-4dd4-b256-18ba3c826c9a" ownerguid="32fc19fd-a04e-4b69-9442-f7d57348ec55"> -<ExampleWords> -<AUni ws="en">bull, cow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to male or female cattle?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="230b2045-7512-41d4-ba24-05039422fa83" ownerguid="011ba232-abe5-4cbb-9530-0fc73d59c77b"> -<Form> -<AUni ws="qvm-x-ach">barrëta</AUni> -<AUni ws="qvm-x-acl">barrëta</AUni> -<AUni ws="qvm-x-akh">barrëta</AUni> -<AUni ws="qvm-x-akl">barrëta</AUni> -<AUni ws="qvm-x-ame">barrëta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="230b8166-5259-457b-9f7c-89395f942a95" ownerguid="65b454ee-2a3d-4790-8efe-23f4e1c025b9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="230fd58e-05b8-49dd-a730-e87856df4818" ownerguid="62352a5a-c18b-4ffe-acdd-75b7b6afff6b"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="23105142-5e16-4e92-8a57-a99a21696fec" ownerguid="ed238399-cf2a-4342-8b03-cbbdc9137c7a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="23108c32-555b-48da-aedb-2837d7b7e9d5" ownerguid="edd1834a-85cd-4ee9-a8f6-d2cc2c536a30"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">translator</AUni> -<AUni ws="es">traductor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d292ee46-dfd3-4674-bde4-f56f7d4d2aab" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2310d329-6eca-4f7b-b530-0b6145259a5c" ownerguid="2f98291a-47a7-4b7b-9256-2c0249105be1"> -<ExampleWords> -<AUni ws="en">various</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a group of things that are different?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2315d72c-276a-4a0f-ae89-942f0b13bfeb" ownerguid="86265c7f-9c96-4206-8647-9a6a670816bd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">cántaro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dbf1c817-98bb-42bb-850d-7465281a68a0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="2318ff20-eefd-4aa4-8166-ae55bf2a30e4" ownerguid="5131f911-b782-4b33-8a54-142d3af32ea3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">custom</AUni> -<AUni ws="es">costumbre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f61dc856-e924-4b7b-94d8-fd7e50dc55b6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="231907bb-fc6c-4d03-8aa4-eb3621e3230d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ticpi</AUni> -<AUni ws="qvm-x-acl">ticpi; ticpe</AUni> -<AUni ws="qvm-x-akh">tikpi</AUni> -<AUni ws="qvm-x-akl">tikpi; tikpe</AUni> -<AUni ws="qvm-x-ame">tikpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tikpi.v</AUni> -<AUni ws="qvm-x-acl">*tikpi.v</AUni> -<AUni ws="qvm-x-akh">*tikpi.v</AUni> -<AUni ws="qvm-x-akl">*tikpi.v</AUni> -<AUni ws="qvm-x-ame">*tikpi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.896" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e34f5455-940e-4f44-a59d-383c16acddf2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tikpi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8afc9345-9132-4c4e-b021-eabf4717551a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="617a0b5d-8be3-4fcd-a564-97a4b334879c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tikpi.v 
\entryTyp root 
\gENG 
\gSPN 
\e *tikpi.v 
\c V1 
\mp +FinalI 
\ach ticpi 
\akh tikpi 
\acl ticpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ticpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tikpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tikpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tikpi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="23190f9e-2db2-4ef9-8c0e-495dbef05571" ownerguid="c753fc8b-22ae-4e71-807f-56fb3ebd3cdd"> -<Abbreviation> -<AUni ws="en">2.6.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.63" /> -<DateModified val="2022-9-23 16:55:8.63" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to attracting someone sexually--to cause someone to want to have sex with you, and for words related to being sexually attracted to someone--to want to have sex with someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Attract sexually</AUni> -</Name> -<Questions> -<objsur guid="971a9cea-c155-4c6d-832f-1fe304592b97" t="o" /> -<objsur guid="527e8f5e-b2c1-418b-8669-35275df55ba7" t="o" /> -<objsur guid="ca68c0d1-26a3-4197-9800-5c98ed55a323" t="o" /> -<objsur guid="f9367127-a1ad-41fc-af7f-34499d72dea3" t="o" /> -<objsur guid="3aff009f-11fb-40f4-89cb-90fe0964f7b1" t="o" /> -<objsur guid="b2fd4377-e8e3-4ee7-9def-ca0fb2aea53b" t="o" /> -<objsur guid="97028a01-c52b-4092-8449-90c22e561e0a" t="o" /> -<objsur guid="98185a5d-f358-4e10-abc4-80e06693034a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="23193c5a-77b5-480c-937e-1e265768f050" ownerguid="5c69b52c-85cf-49fc-9976-95b5f8f7c104"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="231a35c2-78fc-4d8e-8367-9a5dbcdd5d28" ownerguid="fe4be3a5-3356-413b-8f90-2450a82bf8f5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cure</AUni> -<AUni ws="es">remedio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c4b4f877-e3e1-4479-bc1d-4702bc0ceb85" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="231f3feb-a5e5-4820-ac2d-6bcae06886a0" ownerguid="8add7f4d-333b-4b2c-9999-48a14162152b"> -<ExampleWords> -<AUni ws="en">ascetic, conformist, moderate, puritan, stoic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a self-controlled person?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2320bbd3-c06d-4bf5-af1d-6b08111fa25f" ownerguid="99b5b80a-a2d6-4820-adfc-1da72528c272"> -<ExampleWords> -<AUni ws="en">uniform, homogeneous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that is the same in all its parts?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2322e9e9-f483-412e-be1d-e5bef48714f5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jiruru</AUni> -<AUni ws="qvm-x-acl">jiruru; jiruro</AUni> -<AUni ws="qvm-x-akh">jiruru</AUni> -<AUni ws="qvm-x-akl">jiruru; jiruro</AUni> -<AUni ws="qvm-x-ame">hiruru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hiruru.v</AUni> -<AUni ws="qvm-x-acl">*hiruru.v</AUni> -<AUni ws="qvm-x-akh">*hiruru.v</AUni> -<AUni ws="qvm-x-akl">*hiruru.v</AUni> -<AUni ws="qvm-x-ame">*hiruru.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.731" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="af38a106-eabc-40d4-892b-eff75e72b524" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hiruru.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5ec45cb7-51fb-4241-84e0-690587155596" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="224a4540-055a-4752-b5f9-ab280c8137f4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hiruru.v 
\entryTyp root 
\gENG encircle 
\gSPN enrodar 
\e *hiruru.v 
\c V1 
\ach jiruru 
\akh jiruru 
\acl jiruru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl jiruro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jiruru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jiruro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hiruru</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="23241b4a-cc88-4181-a44a-59552310ad8c" ownerguid="70523557-5d4c-45a0-96e5-ba315a1ef609"> -<Form> -<AUni ws="qvm-x-ach">atiëni</AUni> -<AUni ws="qvm-x-acl">atiëni; atiëne</AUni> -<AUni ws="qvm-x-akh">atiëni</AUni> -<AUni ws="qvm-x-akl">atiëni; atiëne</AUni> -<AUni ws="qvm-x-ame">atiëni</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="232570be-c370-4d86-a116-869480fe4890" ownerguid="b7ba320b-ee5b-499a-8e1f-ab37678473fe"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="23269e62-4954-4826-abb6-0f62860b7ace" ownerguid="4e791773-94c8-4667-93f8-92dc0100ddfe"> -<ExampleWords> -<AUni ws="en">holidaymaker, vacationer, tourist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a person who is on holiday?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="232dfe67-9480-4a3b-88f1-314b08e468f7" ownerguid="c8749481-41bd-4411-8265-e512f23b489a"> -<Form> -<AUni ws="qvm-x-ach">taquilla</AUni> -<AUni ws="qvm-x-acl">taquilla</AUni> -<AUni ws="qvm-x-akh">taquilla</AUni> -<AUni ws="qvm-x-akl">taquilla</AUni> -<AUni ws="qvm-x-ame">taquilla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="232eddd6-6c1d-4ce9-bc46-1df5c50386d6" ownerguid="af6a8ef0-b876-4dde-8593-829021ca3c82"> -<Form> -<AUni ws="qvm-x-ach">terrädu</AUni> -<AUni ws="qvm-x-acl">terrädu; terrädu; terrädo</AUni> -<AUni ws="qvm-x-akh">terrädu</AUni> -<AUni ws="qvm-x-akl">terrädu; terrädu; terrädo</AUni> -<AUni ws="qvm-x-ame">terrädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2330302a-d1f0-4827-a93f-9b92e8ee216b" ownerguid="bc96b3e3-6185-4925-b79e-8f0f9555bfb7"> -<ExampleWords> -<AUni ws="en">dialect, foreign language, accent, pidgin, slang, colloquial</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the type of language a person speaks?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="2330813b-7413-41a8-8eb2-ae138511c953" ownerguid="a7824686-a3f3-4c8a-907e-5d841cf846c8"> -<Abbreviation> -<AUni ws="en">8.3.3.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.609" /> -<DateModified val="2022-9-23 16:55:8.609" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is bright.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Bright</AUni> -</Name> -<Questions> -<objsur guid="58b252e9-3104-4305-81bf-963eefc43a6d" t="o" /> -<objsur guid="d9265e71-d330-4b0d-b78a-2129d2764da8" t="o" /> -<objsur guid="aa9643ff-e602-47e2-9a1e-4f0b4af335c4" t="o" /> -<objsur guid="9967d50b-ade7-4641-a23a-2bc05f70d45d" t="o" /> -<objsur guid="0bbafc6c-2a66-48ec-bd30-c4b3491b350a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="StTxtPara" guid="2330e42f-a84d-4d3f-85c3-137e4f5266a0" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">qarqukan</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="74944e94-e875-4bb2-8aaf-f320d587b6b0" t="o" /> -</Segments> -</rt> -<rt class="MoStemAllomorph" guid="2331bdf1-b0bf-41e3-9152-6289a37a4eb5" ownerguid="ece72519-f223-4968-b92e-80b654ded50e"> -<Form> -<AUni ws="qvm-x-ach">manacag</AUni> -<AUni ws="qvm-x-acl">manacag</AUni> -<AUni ws="qvm-x-akh">manakaq</AUni> -<AUni ws="qvm-x-akl">manakaq</AUni> -<AUni ws="qvm-x-ame">manakaq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="23327c24-70fd-4892-bcaa-2565037eda38" ownerguid="85c3c579-109f-40dd-8c7a-ffb5e04b894d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gnaw</AUni> -<AUni ws="es">masticar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4ebea370-d6d1-49e0-9424-00ffa9464786" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2332dea9-d5fb-4152-932c-3f4da8b75c41" ownerguid="19413b9f-423f-45db-848d-1908f92c9f33"> -<Form> -<AUni ws="qvm-x-ach">goshtatay</AUni> -<AUni ws="qvm-x-acl">goshtatay</AUni> -<AUni ws="qvm-x-akh">qoshtatay</AUni> -<AUni ws="qvm-x-akl">qoshtatay</AUni> -<AUni ws="qvm-x-ame">qushtatay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2334f178-4aae-4745-86ec-2a6dd81ed0a6" ownerguid="0a27d9d1-0f1f-475a-92a2-bbccf5b15f41"> -<ExampleWords> -<AUni ws="en">hunger pains, stomach is growling</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the symptoms of hunger?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="23389cf4-61da-4fd6-b578-a02cad68bc89"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jerga</AUni> -<AUni ws="qvm-x-acl">jerga</AUni> -<AUni ws="qvm-x-akh">jerga</AUni> -<AUni ws="qvm-x-akl">jerga</AUni> -<AUni ws="qvm-x-ame">jerga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+jerga</AUni> -<AUni ws="qvm-x-acl">+jerga</AUni> -<AUni ws="qvm-x-akh">+jerga</AUni> -<AUni ws="qvm-x-akl">+jerga</AUni> -<AUni ws="qvm-x-ame">+jerga</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.882" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e7491e9b-bbe5-4825-b887-47552bbb7642" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+jerga</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4273db56-92ed-4003-8dc6-38ebf6cdfeed" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f40dbc33-e2a7-41b2-9a64-043db5d3cd66" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +jerga 
\entryTyp root 
\gENG cloth 
\gSPN tela 
\e +jerga 
\c N0 
\ach jerga 
\akh jerga 
\acl jerga 
\akl jerga 
\ame jerga</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="233c23bd-a3cb-4582-b5ea-b0a8cba9e5b3" ownerguid="dc77b359-1f29-42ba-b89d-9fefc586f4a3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="e423053e-2656-445d-a054-99dc5eeda03b" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="e7b4deb5-b4fa-4626-b20f-614ad3699c4c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="233f63df-3032-4a01-80d0-574488e709a6" ownerguid="08c05e00-9660-4491-af2f-a05fab27ef39"> -<ExampleWords> -<AUni ws="en">flat stomach</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to a thin stomach?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2340a756-d651-496b-9c16-b42df4fdd6c0" ownerguid="bd4a2527-f66c-4f48-922e-8b180bba8ef6"> -<ExampleWords> -<AUni ws="en">lamp, lantern, candle, lamp stand, light fixture</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What kinds of things are used to provide light in a house?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="23412b34-922d-4570-a2ba-9afbb2e12958" ownerguid="7cf4f041-38f3-4f45-8dd1-0c2641702518"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">con.hambre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e363fc6f-65ec-4d2e-948b-e6dc231a1675" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="234712e7-8014-4b3f-83ee-8eb22fe2cbc1" ownerguid="c36131c3-b5e1-4aac-a7b5-7c9cfa1e8f74"> -<ExampleWords> -<AUni ws="en">bleat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What sounds do goats make?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2347570f-1519-420a-9fe1-5d8e32563dda" ownerguid="2a6622ed-7113-46fc-97c1-2a208c4a9008"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="234784ab-bf1f-4aa6-b526-bad257cd3cd2" ownerguid="0aaacffe-9b6c-49a7-bf68-c0f9ff3e120e"> -<ExampleWords> -<AUni ws="en">the least</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the smallest group?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="234915ac-ca4d-4582-91a7-3be549143ad9" ownerguid="9b9d021f-4b7d-46dc-aecc-0ed2c1394117"> -<Form> -<AUni ws="qvm-x-ach">y</AUni> -<AUni ws="qvm-x-acl">y</AUni> -<AUni ws="qvm-x-akh">y</AUni> -<AUni ws="qvm-x-akl">y</AUni> -<AUni ws="qvm-x-ame">y</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="234d71bb-c6b8-4d6b-9cfe-3d847d335a82" ownerguid="9e775794-3dda-4942-b6af-087ffd57f342"> -<ExampleWords> -<AUni ws="en">side (n), flank, right side, left side</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the side of something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="234da5fc-1518-4e51-977c-9be0eb98295f" ownerguid="75825d72-695b-4e92-9f33-0f3ab4d7dd11"> -<ExampleWords> -<AUni ws="en">mouth is dry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to not having any saliva in your mouth?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="234f2055-3270-4b63-aef0-d27179de4f5d" ownerguid="8bdf4847-903b-4af6-9553-3cfab65de516"> -<ExampleWords> -<AUni ws="en">problem, equation, square root, squared, graph, axis</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words are used to talk about mathematics?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="234ffbfa-5c7e-432b-bdef-485eb7bd5bc2" ownerguid="c6b62d63-b355-46c9-a8c7-e0a0bf112a9e"> -<ExampleWords> -<AUni ws="en">infrastructure, public works, park</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the things the government builds to provide for the needs of the public?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="2351f52a-8822-46ad-99c4-7ef526e94a6f" ownerguid="457231c8-4eb6-4460-aa45-3e9f2c4e8975"> -<Abbreviation> -<AUni ws="en">8.4.6.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.660" /> -<DateModified val="2022-9-23 16:55:8.660" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to something happening again or doing something again.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Again</AUni> -</Name> -<Questions> -<objsur guid="3e31d660-f84e-485e-bb0f-1192c1dd4048" t="o" /> -<objsur guid="4fd2b576-9e1f-4816-a713-d389bb166f79" t="o" /> -<objsur guid="721eb2fb-af24-4046-b5ae-1accdfd80df2" t="o" /> -<objsur guid="b9a20b82-7fda-4b85-b449-6aaada701fc0" t="o" /> -<objsur guid="6cd97788-6daf-4a44-bd03-4e69b804fbb2" t="o" /> -<objsur guid="ce88960e-27de-4f64-8977-5a22b2b93a2b" t="o" /> -<objsur guid="1f679fa2-7bdd-40e9-b88f-c0f0281e89b1" t="o" /> -<objsur guid="3a849b14-872d-4f3c-9ba7-e192a6d26801" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="FsClosedValue" guid="23525f46-75e8-48ae-baae-b5fb65226a7d" ownerguid="4cd146cd-b869-48a4-a075-4226ca327a72"> -<Feature> -<objsur guid="e13ebd7a-824d-4405-8c23-e5a30f3d53a6" t="r" /> -</Feature> -<RefNumber val="0" /> -<Value> -<objsur guid="d955a1e1-2da8-486d-8f53-3509c47b67fc" t="r" /> -</Value> -<ValueState val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="23526206-5b8f-4e85-9bcd-13465dd0847f" ownerguid="8f612b2f-84d4-4a0e-8332-1a47079740dc"> -<Form> -<AUni ws="qvm-x-ach">ofiendi</AUni> -<AUni ws="qvm-x-acl">ofiendi; ofiende</AUni> -<AUni ws="qvm-x-akh">ofiendi</AUni> -<AUni ws="qvm-x-akl">ofiendi; ofiende</AUni> -<AUni ws="qvm-x-ame">ofiendi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="2352ee66-dda1-42bf-b6a6-16a57be77398" ownerguid="83ad737f-5596-41a1-8eec-010df8debc33"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="23556ce6-03ce-43bf-bcbb-bcad20b831f1" ownerguid="27048124-c204-4585-9997-c51728f085d6"> -<ExampleWords> -<AUni ws="en">ingratitude</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to not thanking someone?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2355f1fb-810d-468e-9a3d-bd4b4ca1332b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuyti</AUni> -<AUni ws="qvm-x-acl">cuyti; cuyte</AUni> -<AUni ws="qvm-x-akh">kuyti</AUni> -<AUni ws="qvm-x-akl">kuyti; kuyte</AUni> -<AUni ws="qvm-x-ame">kuyti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kuyti</AUni> -<AUni ws="qvm-x-acl">*kuyti</AUni> -<AUni ws="qvm-x-akh">*kuyti</AUni> -<AUni ws="qvm-x-akl">*kuyti</AUni> -<AUni ws="qvm-x-ame">*kuyti</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.33" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7cdb2eba-1a9e-4544-b5cf-448f309681b2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kuyti</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="71b45680-8c54-4e72-9bb6-6e9453b8969e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2478cae4-af41-49f7-93fa-cb1f98a5e046" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kuyti 
\entryTyp root 
\gENG 
\gSPN humillarse 
\e *kuyti 
\c V1 
\mp +FinalI 
\ach cuyti 
\akh kuyti 
\acl cuyti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl cuyte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kuyti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kuyte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kuyti</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="2356672c-3e0a-48f4-9dd7-b73d0d39e65b" ownerguid="75905f34-76c6-486b-b24c-1c1a472cf614"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0 | SC dice warayninpagga</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">mañana</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="08e2f5de-8d01-4ec0-a69c-2fcacfc7f5d3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="23588df6-8312-4935-bafa-c8edaad0f7b5" ownerguid="cd207cf2-912f-49b5-b48a-e4b942b8b281"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hook</AUni> -<AUni ws="es">anzuelo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="54a95820-8b47-4118-a5df-a79ee515e433" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2359028c-cfb4-45a7-8cd6-c8c1e539a6cb" ownerguid="7ddbd56f-e458-4a72-a9bc-9b7db6bde75a"> -<ExampleWords> -<AUni ws="en">throne, crown, diadem, scepter, royal robes, presidential seal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the symbols of the ruler?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="23605fc0-402f-4a2c-9d0f-b38e54929deb" ownerguid="7a2f695b-dc64-4de2-9cde-19fc62d67627"> -<Form> -<AUni ws="qvm-x-ach">ayni</AUni> -<AUni ws="qvm-x-acl">ayni; ayne</AUni> -<AUni ws="qvm-x-akh">ayni</AUni> -<AUni ws="qvm-x-akl">ayni; ayne</AUni> -<AUni ws="qvm-x-ame">ayni</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="2361a30e-0c4a-4dc9-ab51-c7c1f02dcd81" ownerguid="49611d51-4f8f-4bee-b195-6ec12990758f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="2361c4c1-b81b-4714-8387-6e2bd407bdce" ownerguid="f45f9c23-b6ae-4026-aa41-de4b6eab4ddc"> -<Form> -<AUni ws="qvm-x-ach">tïza</AUni> -<AUni ws="qvm-x-acl">tïza</AUni> -<AUni ws="qvm-x-akh">tïza</AUni> -<AUni ws="qvm-x-akl">tïza</AUni> -<AUni ws="qvm-x-ame">tïza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="236229a4-150b-4012-bf63-34394ad00f98" ownerguid="834c0976-f985-4355-a1be-b39d31579892"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="98aaf22e-a3ff-48ec-801a-6ad863738a93" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">billow</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dca558a5-909c-4b45-96e9-3978ded13259" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="236b8042-6086-4bed-a156-aaef077d1721"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pasma</AUni> -<AUni ws="qvm-x-acl">pasma</AUni> -<AUni ws="qvm-x-akh">pasma</AUni> -<AUni ws="qvm-x-akl">pasma</AUni> -<AUni ws="qvm-x-ame">pasma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pasma.v</AUni> -<AUni ws="qvm-x-acl">*pasma.v</AUni> -<AUni ws="qvm-x-akh">*pasma.v</AUni> -<AUni ws="qvm-x-akl">*pasma.v</AUni> -<AUni ws="qvm-x-ame">*pasma.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.749" /> -<DateModified val="2022-10-10 21:18:47.204" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fab3d03b-6b60-46d4-8cba-249299e17236" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pasma.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eb17a916-b104-43ec-bd5b-7380da738e8f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="216fee19-bbaf-4102-a026-60143d38eee1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pasma.v 
\entryTyp root 
\gENG 
\gSPN 
\e *pasma.v 
\c V1 
\ach pasma 
\akh pasma 
\acl pasma 
\akl pasma 
\ame pasma 
\i Lev 14.37 Wayita ricapacuycashgancho mupalishga verdiyaycagta o pucayaycagta tarerga y tapya pasmaycagta tarerga</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="236bb9b2-bc2f-4378-be7c-bb4d205d45ac" ownerguid="e4582d00-a49b-4f42-be7f-d56cc462a064"> -<Form> -<AUni ws="qvm-x-ach">turnu; turno</AUni> -<AUni ws="qvm-x-acl">turnu; turnu; turno</AUni> -<AUni ws="qvm-x-akh">turnu; turno</AUni> -<AUni ws="qvm-x-akl">turnu; turnu; turno</AUni> -<AUni ws="qvm-x-ame">turnu; turno</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="236df946-3daf-46a8-bcea-eadff484f064" ownerguid="d4e73f6f-8a8f-47c7-8c51-fa2f62a215b3"> -<Form> -<AUni ws="qvm-x-ach">pï</AUni> -<AUni ws="qvm-x-acl">pï</AUni> -<AUni ws="qvm-x-akh">pï</AUni> -<AUni ws="qvm-x-akl">pï</AUni> -<AUni ws="qvm-x-ame">pï</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="236e9510-edac-4196-8ad5-51475798a59d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ajusya; ajusya:</AUni> -<AUni ws="qvm-x-acl">ajusya; ajusya:</AUni> -<AUni ws="qvm-x-akh">ajusya; ajusya:</AUni> -<AUni ws="qvm-x-akl">ajusya; ajusya:</AUni> -<AUni ws="qvm-x-ame">ahusya; ahusya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ajusya:</AUni> -<AUni ws="qvm-x-acl">+ajusya:</AUni> -<AUni ws="qvm-x-akh">+ajusya:</AUni> -<AUni ws="qvm-x-akl">+ajusya:</AUni> -<AUni ws="qvm-x-ame">+ajusya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.679" /> -<DateModified val="2022-10-10 21:18:47.215" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="67127b03-b43d-4e7f-8caf-3f6c2d8c98df" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ajusya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="be13cbb1-9026-483a-bda6-43b275c95d51" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a71f1afb-48d7-41ab-ab0e-6e417d34fcbd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ajusya: 
\entryTyp root 
\gENG 
\gSPN 
\e +ajusya: 
\c V1 
\mp KQWchange +assimilated 
\mp +underlong 
\ach ajusya foreshortened 
\ach ajusya: 
\akh ajusya foreshortened 
\akh ajusya: 
\acl ajusya foreshortened 
\acl ajusya: 
\akl ajusya foreshortened 
\akl ajusya: 
\ame ahusya foreshortened 
\ame ahusya: 
\mp +FinalLength 
\i PSA 102.4 Guewa äjusyashgannogmi shongöpis pasaypa ushacaycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="236f055a-6af4-4b9e-b372-3315d3384e43" ownerguid="202b5306-b111-4068-9fba-c86d97bbeb28"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="237446cf-ba78-4bcc-8616-56a88aa39555" ownerguid="ae2f0ff8-d3d7-409e-a19b-84d4bd88c1ed"> -<Form> -<AUni ws="qvm-x-ach">yacha</AUni> -<AUni ws="qvm-x-acl">yacha</AUni> -<AUni ws="qvm-x-akh">yacha</AUni> -<AUni ws="qvm-x-akl">yacha</AUni> -<AUni ws="qvm-x-ame">yacha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2374f162-5a3e-40b8-b85f-1802ea02f391" ownerguid="f8ac9b37-12df-48d6-9455-239166f4dc96"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9dc084f3-059c-4c7c-9dd6-aff6331a2fa5" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="53ab2edd-e95e-4340-8914-12327e09dbdc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="237553f5-6971-4ca1-ba7a-4713100ccc16" ownerguid="64e6c0db-6dd6-4b80-bbe9-c96bb161674b"> -<ExampleWords> -<AUni ws="en">fraction, proportion, percentage, decimal, decimal point</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to a fraction of something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="237588e0-0c25-4490-8a91-7da45950d3f2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ñapu</AUni> -<AUni ws="qvm-x-acl">ñapu; ñapo</AUni> -<AUni ws="qvm-x-akh">ñapu</AUni> -<AUni ws="qvm-x-akl">ñapu; ñapo</AUni> -<AUni ws="qvm-x-ame">ñapu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñapu</AUni> -<AUni ws="qvm-x-acl">*ñapu</AUni> -<AUni ws="qvm-x-akh">*ñapu</AUni> -<AUni ws="qvm-x-akl">*ñapu</AUni> -<AUni ws="qvm-x-ame">*ñapu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.588" /> -<DateModified val="2022-10-10 21:18:47.204" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4673c2d2-2249-4e8e-9cd5-e9cd3adc0a42" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñapu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e0def57b-c217-4a4f-a0bc-df98a1923603" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3ed9c166-8953-47a8-89ba-c9b027155cf5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñapu 
\entryTyp root 
\gENG 
\gSPN 
\e *ñapu 
\c V1 
\ach ñapu 
\akh ñapu 
\acl ñapu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ñapo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ñapu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ñapo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ñapu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="237998a4-2383-4cc1-bddf-1681e0939c01"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jucpun</AUni> -<AUni ws="qvm-x-acl">jucpun</AUni> -<AUni ws="qvm-x-akh">jukpun</AUni> -<AUni ws="qvm-x-akl">jukpun</AUni> -<AUni ws="qvm-x-ame">hukpun</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hukpun</AUni> -<AUni ws="qvm-x-acl">*hukpun</AUni> -<AUni ws="qvm-x-akh">*hukpun</AUni> -<AUni ws="qvm-x-akl">*hukpun</AUni> -<AUni ws="qvm-x-ame">*hukpun</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.759" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c3189012-59d1-475d-91cc-e1be9210a8ba" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hukpun</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3ef808d4-a554-4f8e-961d-7d0f6c9f7105" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="660f0005-fe4b-44b4-93f2-cc19fb8a8d96" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hukpun 
\entryTyp root 
\gENG earlier 
\gSPN antes 
\e *hukpun 
\c R0 
\mp +FinalC 
\ach jucpun 
\akh jukpun 
\acl jucpun 
\akl jukpun 
\ame hukpun</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="2379edc3-5e9a-475a-8aa8-d13d517ae608" ownerguid="3803a235-d25f-4e2d-bc02-08ccf1e37b94"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="44c0c0d9-c799-4d24-b6f8-2731cb3ed53d" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="7cdfadd2-1885-414b-b93f-720eb705a771" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="237ebd58-c847-459f-aaea-9bd6e948b2d8" ownerguid="250a52e4-ede0-427d-8382-46a5742d4f96"> -<ExampleWords> -<AUni ws="en">hospitalize</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to putting someone in the hospital?</AUni> -</Question> -</rt> -<rt class="Segment" guid="2383bfb6-fb9f-4ce6-95fc-d071a64ce57f" ownerguid="c495e7e1-4786-42de-82e5-fec137178f57"> -<Analyses> -<objsur guid="c6ebf386-d8fa-4e08-9d2b-32569ec1e7dc" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="CmDomainQ" guid="2387376a-c8d2-40a7-9d9e-3fa362729c4f" ownerguid="ccbbd16f-58c5-45c1-bfff-1fba64d9740e"> -<ExampleWords> -<AUni ws="en">aspect</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What general words refer to an aspect of an event?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="238c7931-9f00-4811-a7ec-9c8bd0d2a78a" ownerguid="12f12bf3-f232-4477-bf39-d91b7f55c2c3"> -<ExampleWords> -<AUni ws="en">rarely, infrequently</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that something does not happen often?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="238c7c4f-06a6-4830-9781-434919a32b18" ownerguid="0e551ad2-042f-4035-8e3d-0f8da29e7ef3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">put</AUni> -<AUni ws="es">echar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="18c9dabd-86ca-4643-80ba-d7b65638475e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="238e17cd-1e4e-4204-a258-30d5f96ca987" ownerguid="f2c723cb-6f41-4472-a402-3477466bb5a8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="238e243d-899e-4e96-950b-c0293200f294" ownerguid="b5db7cc5-1f04-4580-aeb6-14f142e2c344"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.in.heat</AUni> -<AUni ws="es">estar.en.celo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="123925c9-1dc9-463b-86bc-a774025fafc9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="23911ccd-4561-4775-8754-b89af31e24aa" ownerguid="931492cb-c86f-4217-94ec-2cdfa96f960b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="fbcc08a9-a02d-47cf-a578-02e615cd0d53" t="o" /> -<objsur guid="0dcbe193-f755-4c03-84c9-1e12dd94715c" t="o" /> -<objsur guid="955a2b72-ef11-4c33-ab55-86c4b67a613d" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">try</AUni> -<AUni ws="es">probar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cd05113a-057f-4977-aec0-f899577f1b26" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="23917db0-b81a-432f-91d4-8950ffdc5e83" ownerguid="f38f8344-838f-44ba-b103-22289c2d2793"> -<ExampleWords> -<AUni ws="en">wet, get something wet, splash, anoint, dabble, daub, douse, spatter, spray, sprinkle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to making something wet?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="2392275c-1635-43e4-9f84-732de012ba36" ownerguid="bbfd32d9-d744-46a2-addd-823f246ed04f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="23934c3d-229c-47b4-b679-27988bc667df" ownerguid="84a414bb-8b0a-4d50-a453-ac463e0aaa61"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoAffixAllomorph" guid="23954545-f604-47ed-b087-dacdc1814125" ownerguid="c945146a-76bc-4f4b-baad-3884292eb7bc"> -<Form> -<AUni ws="qvm-x-ach">lanpa</AUni> -<AUni ws="qvm-x-acl">lanpa</AUni> -<AUni ws="qvm-x-akh">lanpa</AUni> -<AUni ws="qvm-x-akl">lanpa</AUni> -<AUni ws="qvm-x-ame">lanpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="23961839-60a4-4f8e-a1cd-779d2332cff6" ownerguid="7fb2a453-3db7-4a50-bd47-55991d7b66a1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="2397e66b-6547-4ba5-a898-1aaff0dbdeec" ownerguid="6307e96b-9481-4edf-84c4-8afed61042ad"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="239c0b80-b9e8-4a87-80ab-25c44d4d6d3a" ownerguid="bb4f0608-4ac0-4cbc-b206-3614d98b7d29"> -<Form> -<AUni ws="qvm-x-ach">umru; umro</AUni> -<AUni ws="qvm-x-acl">umru; umru; umro</AUni> -<AUni ws="qvm-x-akh">umru; umro</AUni> -<AUni ws="qvm-x-akl">umru; umru; umro</AUni> -<AUni ws="qvm-x-ame">umru; umro</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="23a0cb53-289f-4b35-b8a4-dfaaeaf774aa" ownerguid="7d472dd5-636d-4499-bf66-83cf23c0dbe1"> -<ExampleWords> -<AUni ws="en">childhood</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the time period when a person is a child?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="23a23d7d-caff-46c7-b7aa-d86a56794770" ownerguid="cb83441f-eb47-4fba-84b7-3408fb808b98"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="23a693f1-587e-41cd-a895-f02805668193" ownerguid="d7861def-70c1-470f-bca6-8230cbbaa3e9"> -<ExampleWords> -<AUni ws="en">stare, gaze, gape, gawk, peer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to looking at something for a long time or in amazement?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="23a93d3a-f0ed-4b0f-b10b-9a0f39bebbb4" ownerguid="82eb3050-d382-48f6-a049-22a5f8a3b25a"> -<ExampleWords> -<AUni ws="en">stay, stay behind, stay back, remain, remain behind, stay where you are, stay put, remain in place, hold your place, hold still, freeze, stationary, standstill, stand around, stand still, linger, tarry, abide</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to someone not moving?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="23ab4776-6246-4620-80c4-f51e778b5206" ownerguid="38d1a6fe-0811-4eb0-a1d8-f69b6ad978e0"> -<ExampleWords> -<AUni ws="en">bless, pronounce a blessing, give a blessing, bestow a blessing, invoke</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to blessing someone?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="23ab5dd0-b6fd-4565-9924-0b681c7b353d" ownerguid="94fe65b8-1f0e-4c53-bf0e-a85014c0c4a8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">minute</AUni> -<AUni ws="es">minuto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="68f1a77b-3b44-45e5-bc0c-54188b03a277" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="23abe54b-ee2e-40b1-beec-b504c2bcdf29" ownerguid="de6b15d3-6409-4998-b03d-903133f4ad70"> -<ExampleWords> -<AUni ws="en">lullaby, hymn, psalm, carol, national anthem, lament, ballad, funeral dirge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What types of songs are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="23ac2717-adc1-4592-8108-c3a4cbcec811" ownerguid="18b3ca02-18fe-4ab5-8709-c20957a0a2fb"> -<ExampleWords> -<AUni ws="en">go to your head</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to something making someone proud?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="23afcdfb-44b7-4bc6-8923-000adace9a03" ownerguid="d978baea-da66-4787-a304-7962b3d6ba35"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mold</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0b0b820d-5d65-47c4-a199-ad10c0978a52" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="23b1a6b4-8d91-425c-b8c2-52d06b1c1d23" ownerguid="e5f9c9cf-0b0c-47aa-b7df-8c37f211cd00"> -<Abbreviation> -<AUni ws="en">7.8.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.549" /> -<DateModified val="2022-9-23 16:55:8.549" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring breaking something into pieces, perhaps with the added idea of doing it accidentally or without being careful.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>19D Break, Break Through</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Break</AUni> -</Name> -<Questions> -<objsur guid="fce4a5cc-2b3e-4bf7-97bd-01f45a019d4c" t="o" /> -<objsur guid="ead53cdb-d7ae-4c4a-88ae-46aec7f942dc" t="o" /> -<objsur guid="2ca409d7-6e1a-48bc-99bf-fc2054475015" t="o" /> -<objsur guid="16f7085b-3705-4ee4-8b98-6f2da18a7dce" t="o" /> -<objsur guid="8c82297b-a524-437c-9e9c-5dc18b09267d" t="o" /> -<objsur guid="346bfb5d-92ea-4da5-8a92-78172b0a2b1d" t="o" /> -<objsur guid="dc65c5b9-7fd6-4ea0-a134-7254ea48f2c2" t="o" /> -<objsur guid="13361cb8-c030-4cd8-99cc-2d443ff6b336" t="o" /> -<objsur guid="83de3372-3cc3-486d-8edf-4dce6f85557f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="23b1fa95-2e58-4ec0-b63f-e63b6217b19c" ownerguid="512e8ebe-f0d9-40fc-bc3b-c0465185c662"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="23b394ba-7dfd-4613-be9b-cfd46b9be60c" ownerguid="db68aba5-9675-4de1-9557-5c8b3eef2377"> -<Form> -<AUni ws="qvm-x-ach">sur</AUni> -<AUni ws="qvm-x-acl">sur</AUni> -<AUni ws="qvm-x-akh">sur</AUni> -<AUni ws="qvm-x-akl">sur</AUni> -<AUni ws="qvm-x-ame">sur</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="23b3c93c-112d-4f97-9a7f-ca2dce874eff" ownerguid="feca6b23-1ca1-4d99-ac79-3672d1d1f7db"> -<ExampleWords> -<AUni ws="en">fine, fine (n), financial penalty, citation, ticket, cite, confiscate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to fining someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="23b4f436-8601-4670-9009-5ded09306346" ownerguid="f8e4ec0e-f295-48dc-8730-336a91934050"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="23baedce-4764-43e2-9bfc-4a2837bd46b2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">kerose:ni; kerose:ni</AUni> -<AUni ws="qvm-x-acl">kerose:ni; kerose:ni; kerose:ne</AUni> -<AUni ws="qvm-x-akh">kerose:ni; kerose:ni</AUni> -<AUni ws="qvm-x-akl">kerose:ni; kerose:ni; kerose:ne</AUni> -<AUni ws="qvm-x-ame">kerose:ni; kerose:ni</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+kerosene</AUni> -<AUni ws="qvm-x-acl">+kerosene</AUni> -<AUni ws="qvm-x-akh">+kerosene</AUni> -<AUni ws="qvm-x-akl">+kerosene</AUni> -<AUni ws="qvm-x-ame">+kerosene</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.981" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1f207b7e-46fe-43f4-a951-904dfa6b243b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+kerosene</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6730cf67-bc7f-4b30-83a9-dfe4fa79d5a8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bcf2e1bc-8c58-4abb-940c-8cbcf8a4e334" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +kerosene 
\entryTyp root 
\gENG kerosene 
\gSPN kerosene 
\e +kerosene 
\c N0 
\mp +FinalI 
\ach kerose:ni / _# 
\ach kerose:ni / ~_# 
\akh kerose:ni / _# 
\akh kerose:ni / ~_# 
\acl kerose:ni / _# 
\acl kerose:ni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl kerose:ne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kerose:ni / _# 
\akl kerose:ni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kerose:ne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kerose:ni / _# 
\ame kerose:ni / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="23bc906d-c15a-4368-b0ca-7443d5e37b83" ownerguid="b2fd2d29-1389-4114-91a8-15b8d9742794"> -<Abbreviation> -<AUni ws="en">9.6.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.720" /> -<DateModified val="2022-9-23 16:55:8.720" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that indicate that someone or something is the cause for an event or state, that one event is the cause for another event or state, or that an event or state is reasonable (having sufficient cause). For instance in the sentence, "John caused David to fall," "John caused" is an enabling proposition that brings about the primary proposition "David fell."</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89G Cause and/or Reason</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Cause</AUni> -</Name> -<Questions> -<objsur guid="537143e9-2faa-42f0-ae71-4515afe9f113" t="o" /> -<objsur guid="3d35984b-4181-477d-b266-7a3ab1fbbf1c" t="o" /> -<objsur guid="08e72798-692f-4c79-bb46-83cad5118da8" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="6fbe39fb-a4cb-4fcf-830b-8875fd4324e0" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="e173ea34-c216-4702-aa24-ca9ab40d48dd" t="o" /> -<objsur guid="be3559d9-d69f-4e06-8184-071c35aa2e10" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="23beda3b-bd80-4764-86b5-98817310e5b9" ownerguid="e804c942-cc17-42fc-b2f7-f8f06af39479"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="23c08902-d58e-41d9-bd1a-a39faf2cd97e" ownerguid="07a04735-d4f4-446d-b749-741a3a0b4259"> -<Form> -<AUni ws="qvm-x-ach">comadreja</AUni> -<AUni ws="qvm-x-acl">comadreja</AUni> -<AUni ws="qvm-x-akh">comadreja</AUni> -<AUni ws="qvm-x-akl">comadreja</AUni> -<AUni ws="qvm-x-ame">comadreja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="23c0ff5c-4f14-4dc4-a602-8d1be87db8db" ownerguid="4f80a620-30db-4529-94e8-f0cd9d0b0e96"> -<ExampleWords> -<AUni ws="en">castrate, spay, neutered</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to castrating an animal?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="23c3ddd8-ade5-4537-8a78-46a951974691" ownerguid="36e8f1df-1798-4ae6-904d-600ca6eb4145"> -<ExampleWords> -<AUni ws="en">break out, make a break for it, bust out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to escaping from prison?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="23c42a67-7bdd-4897-8518-b3eae6f804ab" ownerguid="be300735-7062-4abf-8154-4ab725f5798c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="23d49622-1677-4c9d-bc20-fa5c13735557" ownerguid="eeedff8f-4a3f-43f2-a11e-a1d3b1fb93d1"> -<Form> -<AUni ws="qvm-x-ach">agu</AUni> -<AUni ws="qvm-x-acl">agu; agu; ago</AUni> -<AUni ws="qvm-x-akh">aqu</AUni> -<AUni ws="qvm-x-akl">aqu; aqu; aqo</AUni> -<AUni ws="qvm-x-ame">aqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="23d4dbe1-7927-4238-86b2-a7387f27e1b3" ownerguid="5e3bb9e5-fd70-4c5a-95a0-938bc4876a47"> -<ExampleWords> -<AUni ws="en">expectation, prospect, possibility</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something that may happen in the future?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="23d6fa1f-67b6-4c9c-9cd7-f641d6e0fc9c" ownerguid="bba30b56-6cd8-4542-81ab-f983cf1354bd"> -<ExampleWords> -<AUni ws="en">farther, further, beyond, past, on the other side of, farthest, furthest, extreme, in the offing, background</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words indicate that something is farther than something else?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="23d7d6c2-f060-4af1-b8ab-348aa14504ee" ownerguid="11e83147-fac8-422d-99dc-be0903a78eb4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="23da2d91-9019-48fa-807a-9d771bf4489f" ownerguid="5225d309-285b-4169-bf8b-646f2bf1ca28"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">north.east</AUni> -<AUni ws="es">noreste</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a7f6e9bd-c715-4f82-bd06-b092fa1927ef" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="23db077d-3423-4e9d-9670-21b5f71d84d1" ownerguid="6740fdcd-7f41-4a62-a3b7-90502edb44f3"> -<Form> -<AUni ws="qvm-x-ach">gotu</AUni> -<AUni ws="qvm-x-acl">gotu; gotu; goto</AUni> -<AUni ws="qvm-x-akh">qotu</AUni> -<AUni ws="qvm-x-akl">qotu; qotu; qoto</AUni> -<AUni ws="qvm-x-ame">qutu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="23dc1f19-b584-4be8-acb2-15498877ce1e" ownerguid="ef860ee3-a4a5-4a42-b810-fdf41e35d151"> -<ExampleWords> -<AUni ws="en">laity, layperson, flock</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to followers of a religion who are not leaders?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="23dc662b-3b24-4546-8b1c-14d8c041813c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ishanca</AUni> -<AUni ws="qvm-x-acl">ishanca</AUni> -<AUni ws="qvm-x-akh">ishanka</AUni> -<AUni ws="qvm-x-akl">ishanka</AUni> -<AUni ws="qvm-x-ame">ishanka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ishanka</AUni> -<AUni ws="qvm-x-acl">*ishanka</AUni> -<AUni ws="qvm-x-akh">*ishanka</AUni> -<AUni ws="qvm-x-akl">*ishanka</AUni> -<AUni ws="qvm-x-ame">*ishanka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.842" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9d584c28-b17b-436a-9a66-e993a288099e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ishanka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="81635412-aeae-48d7-9f0e-5ee43b1249fa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6ff59e45-2e29-42fd-94c6-b4033ce2487a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ishanka 
\entryTyp root 
\gENG nettles 
\gSPN hortiga 
\e *ishanka 
\c N0 
\ach ishanca 
\akh ishanka 
\acl ishanca 
\akl ishanka 
\ame ishanka</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="23dd44ad-716e-4a56-aa1b-49e6e80077d6" ownerguid="fed2b7bd-2315-4085-b0a7-2ced988120f3"> -<ExampleWords> -<AUni ws="en">choose, select, prefer, decide on, pick, designate, elect, favor, opt for, specify, vote, would rather have</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to choosing something?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="23e0aa74-790c-44e7-ac7f-ced4c150c4f6" ownerguid="86b9a71b-ca76-4d73-97a5-3cf7adc6128f"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2ki 6.29 Tsaynog nimaptinmi wawäta picantircur micapäcushcä. Tsaypitanami parlapäcushgänogla warantin junag nergä paypa wawantana micapäcunäpag.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="23e6746e-d74d-406b-a5f2-513c682b5db4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">badula:qui; badula:qui</AUni> -<AUni ws="qvm-x-acl">badula:qui; badula:qui; badula:que</AUni> -<AUni ws="qvm-x-akh">badula:qui; badula:qui</AUni> -<AUni ws="qvm-x-akl">badula:qui; badula:qui; badula:que</AUni> -<AUni ws="qvm-x-ame">badula:qui; badula:qui</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+badulaque</AUni> -<AUni ws="qvm-x-acl">+badulaque</AUni> -<AUni ws="qvm-x-akh">+badulaque</AUni> -<AUni ws="qvm-x-akl">+badulaque</AUni> -<AUni ws="qvm-x-ame">+badulaque</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.931" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fa704138-e9cc-4ac1-985b-6371af5e5f69" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+badulaque</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6b65e2ca-db74-4731-8dc8-c7a05b4191dd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1cbf6445-392d-425d-8a2c-4a8c9f8a9890" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +badulaque 
\entryTyp root 
\gENG 
\gSPN hablador 
\e +badulaque 
\c N0 
\mp +FinalI 
\ach badula:qui / _# 
\ach badula:qui / ~_# 
\akh badula:qui / _# 
\akh badula:qui / ~_# 
\acl badula:qui / _# 
\acl badula:qui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl badula:que +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl badula:qui / _# 
\akl badula:qui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl badula:que +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame badula:qui / _# 
\ame badula:qui / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="23e75c8e-3abb-4ce9-8ad8-848738442a0e" ownerguid="eca46133-c350-4573-a349-9b7ce11b6fa8"> -<ExampleWords> -<AUni ws="en">container, vessel, bowl, pot, receptacle, bottle, box, crate, barrel, bucket, can, case, suitcase, chest, chamber pot</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a container?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="23e98c4c-7dde-4e40-b6e1-4691eb71d535" ownerguid="b0a0b9f0-8b7d-456a-8eac-5bf835934d4f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="23ecd92c-48c1-4dab-85b0-184962183308" ownerguid="14e6ffd2-75db-4fce-84df-725aac9f55fb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">man</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">man</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">man</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">man</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">man</Run> -</AStr> -</Form> -<Morph> -<objsur guid="8fd16108-afa0-46a2-956c-3bc4cbb3eaf2" t="r" /> -</Morph> -<Msa> -<objsur guid="f4d20bdf-75f8-4c69-afe3-f6617be92a6e" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="23eda898-b2f4-403e-ae38-fcbd4415229a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">racta</AUni> -<AUni ws="qvm-x-acl">racta</AUni> -<AUni ws="qvm-x-akh">rakta</AUni> -<AUni ws="qvm-x-akl">rakta</AUni> -<AUni ws="qvm-x-ame">rakta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rakta</AUni> -<AUni ws="qvm-x-acl">*rakta</AUni> -<AUni ws="qvm-x-akh">*rakta</AUni> -<AUni ws="qvm-x-akl">*rakta</AUni> -<AUni ws="qvm-x-ame">*rakta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.236" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4684e54d-aaaa-44b9-b65a-2a6596473263" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rakta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="283414bb-2c9e-4d2d-ae83-04217e49b966" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cd8e698c-879b-4c2c-882d-d06d82e53510" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rakta 
\entryTyp root 
\gENG thick 
\gSPN grueso 
\e *rakta 
\c N0 
\ach racta 
\akh rakta 
\acl racta 
\akl rakta 
\ame rakta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="23eeeb6e-c74a-4b6b-9e71-10eb8c1b09e8" ownerguid="4493f427-1c13-4246-bd62-08b5f53b6df5"> -<Form> -<AUni ws="qvm-x-ach">mayga</AUni> -<AUni ws="qvm-x-acl">mayga</AUni> -<AUni ws="qvm-x-akh">mayqa</AUni> -<AUni ws="qvm-x-akl">mayqa</AUni> -<AUni ws="qvm-x-ame">mayqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="23ef6097-8dc9-4b54-baa5-a874467488bc" ownerguid="7af2dfed-a641-43a1-bada-75e7d2240d3d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">far</AUni> -<AUni ws="es">lejos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c1ee14c3-60f5-4ff8-8885-84d7fb3aacb3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="StStyle" guid="23efa4cc-0347-4fc1-a33d-57b57ee852f9" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="aba229f3-ca42-4727-a903-0abc3d418607" t="r" /> -</BasedOn> -<Context val="14" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Sense-Reference-Number</Uni> -</Name> -<Rules> -<Prop></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<Usage> -<AUni ws="en">Used for sense numbers in cross references.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="CmSemanticDomain" guid="23fa2115-3979-472c-8939-4db8d54e4c98" ownerguid="fe9253f4-d063-4d63-91af-85273d61337f"> -<Abbreviation> -<AUni ws="en">8.3.5.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.619" /> -<DateModified val="2022-9-23 16:55:8.619" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing two things that are opposite.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Opposite</AUni> -</Name> -<Questions> -<objsur guid="5e4f206a-7d52-40cd-9e3e-0a341ad0d829" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="23fab0d7-991a-4947-9768-eb530774280b" ownerguid="cf728419-ef0e-4351-865c-7b76d404a9d5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fine</AUni> -<AUni ws="es">fino</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3e00c600-24bb-4ca4-a3f7-5d9038485963" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="23fb1571-c04e-4850-b499-f170bc45247f" ownerguid="c2dbe83a-d638-45ac-a6d5-5f041b9dde71"> -<Abbreviation> -<AUni ws="en">2.5.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.47" /> -<DateModified val="2022-9-23 16:55:8.47" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to having poor eyesight.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Poor eyesight</AUni> -</Name> -<Questions> -<objsur guid="157b6c9b-4b96-488e-8341-222945a61000" t="o" /> -<objsur guid="bbbdfe7c-b6f7-4684-a229-038c51b3a33f" t="o" /> -<objsur guid="bae2a05a-410c-49a5-a6dd-2819d2413139" t="o" /> -<objsur guid="aec67a46-8ff8-48e1-b80c-bd9ceb2a32a8" t="o" /> -<objsur guid="7b958bfb-4b4f-4fe0-a4dd-1db75679d423" t="o" /> -<objsur guid="2faa2764-a720-4e2e-8fe5-9cf948ecb604" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="23fc63a6-4afc-48b8-88bf-a94a6904f5c7" ownerguid="95849c42-5a38-4a44-ad73-229308acef2e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="cb584960-1522-4504-a870-1c1a8efdc7b6" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="20a6163d-35a9-439c-872d-de777efbd067" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="23fcb6ab-bfac-42a7-a643-edf7ca90864e" ownerguid="2bdfe506-0a28-45bd-81e1-44dcedcc262a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">nation</AUni> -<AUni ws="es">nación</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="182070a8-884a-46d8-8e14-86d75686fe1f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2400b7c7-f5ad-45c8-af91-926ef1177b2f" ownerguid="08788e9a-93b8-4a2e-ab01-dea177f061e8"> -<ExampleWords> -<AUni ws="en">guest, dinner guest, guest of honor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) Who is invited to a feast?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="240560f4-bbc5-4669-a1fa-1482b9f46d39" ownerguid="0903592a-a301-44c5-9b71-89328c1c8e38" /> -<rt class="CmDomainQ" guid="2405d0c3-2b96-4792-bcf3-8815992adb68" ownerguid="de544ebd-9f94-4831-8887-944c3bbbc254"> -<ExampleWords> -<AUni ws="en">Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the names of the days of the week?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="240f5598-e72b-40c5-9e82-e1ca038b52a2" ownerguid="7831223b-e5ed-4186-a321-94e9ae72a27d"> -<ExampleWords> -<AUni ws="en">lob, throw up in the air</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to throwing something high in the air?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="24135721-a637-4451-8eae-b8a0facaf447" ownerguid="9a456463-3c71-4f9a-8117-dc2fcb087bd3"> -<ExampleWords> -<AUni ws="en">build up a fire</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to making a fire bigger?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="24142e23-a657-4a08-98e9-5bae08869b5d" ownerguid="659ccabf-f978-4852-a1a6-c225f1d76b97"> -<ExampleWords> -<AUni ws="en">holiday, vacation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a special day of the year?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="24168b67-792d-4cc3-8242-e3a3382e90e2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quiqui</AUni> -<AUni ws="qvm-x-acl">quiqui; quiqui; quique</AUni> -<AUni ws="qvm-x-akh">kiki</AUni> -<AUni ws="qvm-x-akl">kiki; kiki; kike</AUni> -<AUni ws="qvm-x-ame">kiki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kiki</AUni> -<AUni ws="qvm-x-acl">*kiki</AUni> -<AUni ws="qvm-x-akh">*kiki</AUni> -<AUni ws="qvm-x-akl">*kiki</AUni> -<AUni ws="qvm-x-ame">*kiki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.981" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="db1666d0-28b9-4c60-b9d2-b3c4cdb4d130" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kiki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="82e15746-ea26-49bb-9fae-33f73f0ae09a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="41619c66-c4a1-4c19-906e-5d6ea9e0c184" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kiki 
\entryTyp root 
\gENG self 
\gSPN mismo 
\e *kiki 
\c N1 
\mp +FinalI 
\ach quiqui 
\akh kiki 
\acl quiqui / _# 
\acl quiqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl quique +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kiki / _# 
\akl kiki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kike +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kiki</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="2418dd59-fa53-44a5-964d-f9dae2183b5e" ownerguid="1ff89b31-8226-40a6-81e0-f03d8ede0e9f"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="6d935f99-3abf-4c02-a306-00f6c62ae775" t="o" /> -<objsur guid="4948a765-8aaf-49f0-9583-6607607ee90d" t="o" /> -<objsur guid="bbb00905-2054-4d55-a0ea-cd0fba9de02a" t="o" /> -<objsur guid="c89805a2-a4b4-4fb9-8446-cc1467d5a270" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="24222d27-1e21-4d92-b935-3ceaf3968dbf" ownerguid="af700054-258a-458a-9e38-e90397833e51"> -<ExampleWords> -<AUni ws="en">write, write down, take dictation, spell</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to writing?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="24254a24-f827-4a75-b547-49573068d3f2" ownerguid="582fe42e-9eb0-4deb-b681-ef835b7747f3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pti</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pti</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pti</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b2772da-2fbd-4846-99c3-d3f919125916" t="r" /> -</Morph> -<Msa> -<objsur guid="6a97cf20-558d-4866-ba04-48c4807bc533" t="r" /> -</Msa> -<Sense> -<objsur guid="5c9f1fed-2e6d-4ad2-b804-9d3f09a277d3" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="242de55d-1982-4099-a98b-a71d991104a8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsuctsu</AUni> -<AUni ws="qvm-x-acl">tsuctsu; tsuctsu; tsuctso</AUni> -<AUni ws="qvm-x-akh">tsuktsu</AUni> -<AUni ws="qvm-x-akl">tsuktsu; tsuktsu; tsuktso</AUni> -<AUni ws="qvm-x-ame">tsuktsu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chukchu.n</AUni> -<AUni ws="qvm-x-acl">*chukchu.n</AUni> -<AUni ws="qvm-x-akh">*chukchu.n</AUni> -<AUni ws="qvm-x-akl">*chukchu.n</AUni> -<AUni ws="qvm-x-ame">*chukchu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.335" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="390f69ab-79ee-4427-99f5-cf8c516ff75f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chukchu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9ccb9ab6-99e7-43b9-a2a4-381aeb09ee62" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="69573a83-203e-451e-9cde-fb808750d220" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chukchu.n 
\entryTyp root 
\gENG trembling 
\gSPN palodismo 
\e *chukchu.n 
\c N0 
\ach tsuctsu 
\akh tsuktsu 
\acl tsuctsu / _# 
\acl tsuctsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tsuctso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsuktsu / _# 
\akl tsuktsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tsuktso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsuktsu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="242e7d1d-ae8e-4f41-b552-a051066904b5" ownerguid="cdf65d07-f019-436e-95e6-4d74aafc147c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="242ed73e-f890-40b7-bcc7-a9897560d25d" ownerguid="be89e0ba-4c6a-4986-ac0d-859a901b89a1"> -<ExampleWords> -<AUni ws="en">imaginary, abstract, conceptual, creative (thought), fanciful, fictional, hypothetical, unreal, nonexistent, doesn't exist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe something that someone has imagined?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="24331c65-58bc-4008-b3a6-5990d722b4d8" ownerguid="1df33d84-5adc-4723-a742-6ce21f17390c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">runa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">runa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">runa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">runa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">runa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="dbbd8356-c9df-482b-a128-55aaaa8ad47f" t="r" /> -</Morph> -<Msa> -<objsur guid="735a29e0-40d3-4d25-9e9a-e8181d173c29" t="r" /> -</Msa> -</rt> -<rt class="FsFeatStruc" guid="24345e2d-4861-4c31-9052-304787d41236" ownerguid="554634ac-1f6d-4bfc-8e9c-9d1dfeca4367"> -<FeatureSpecs> -<objsur guid="4963a1ec-a279-43b7-926e-ca32d6bd08eb" t="o" /> -</FeatureSpecs> -<Type> -<objsur guid="efc7ecdf-44ed-4b11-9eef-41aaa905ca65" t="r" /> -</Type> -</rt> -<rt class="MoStemMsa" guid="24357b19-28a5-49f2-b6f6-e490276ba094" ownerguid="8a8c0973-3791-4d9f-99b6-58923b88ef41"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="24361be2-49be-4860-bb56-4e46dd1e8b0c" ownerguid="b790470f-ed4e-42ac-932d-cd15ef701b03"> -<Abbreviation> -<AUni ws="en">4.9.5.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.296" /> -<DateModified val="2022-9-23 16:55:8.296" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to things that are taboo--something to be avoided; a religious, social, or cultural restriction on behavior, as opposed to a government law.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Taboo</AUni> -</Name> -<OcmCodes> -<Uni>784 Avoidance and Taboo</Uni> -</OcmCodes> -<Questions> -<objsur guid="45df4e1c-e47e-4d67-8c6b-9e6f358bef57" t="o" /> -<objsur guid="002ab270-719f-4bba-97e4-9758117765b8" t="o" /> -<objsur guid="6fab4fb4-6aed-483e-9d57-c2cc2d60008c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="2437526e-450a-461c-a1c0-2a410b169db4" ownerguid="87bd0d45-8a94-41cb-9864-90d53a11a4b9"> -<ExampleWords> -<AUni ws="en">adjudicate, judge, administer, justice, jury</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to administering the law?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="24398eec-edd1-449a-ad36-d609be24a79e" ownerguid="d60faf11-cc6e-48db-8a13-82f86d78ab00"> -<Abbreviation> -<AUni ws="en">7.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to having something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Have, be with</AUni> -</Name> -<Questions> -<objsur guid="5bb6f3ce-7077-470b-a8f8-30db92e362b3" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="d9cb2e69-133d-4525-bca5-50b0f3402cbb" t="r" /> -<objsur guid="da988f73-fc9d-4a23-b70d-22299a7c6097" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="56d1a950-8798-45fb-bccd-d8b1eb37c071" t="o" /> -<objsur guid="c96ac1eb-12f2-47af-9e96-9d99fce7e8f5" t="o" /> -<objsur guid="adfc2bcd-6b8e-486c-b105-29b286b61cc0" t="o" /> -<objsur guid="86c065ea-2420-4619-82d4-1d43527b3371" t="o" /> -<objsur guid="7df3078c-f681-4123-a712-4b83e438ea1d" t="o" /> -<objsur guid="e7119442-3063-422a-a03e-d02e570ccd0f" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="243d4720-99f6-47d8-9bd7-d9008eee5c5e" ownerguid="c6688928-6694-4264-8048-a60b665b5793"> -<ExampleWords> -<AUni ws="en">smoker</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a person who smokes tobacco?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="243d8a57-d5ed-4d7f-bd5e-f2605634f0fc" ownerguid="55201761-fe2e-40d5-a2a7-8079e00a2c32"> -<Abbreviation> -<AUni ws="en">4.8.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.276" /> -<DateModified val="2022-9-23 16:55:8.276" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to defending someone from attack.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Defend</AUni> -</Name> -<Questions> -<objsur guid="2d8a77a2-4bde-4cc7-a9f2-f1f3ee4a8087" t="o" /> -<objsur guid="70ab21b3-4ad0-455a-a20e-ed7e8bb85c02" t="o" /> -<objsur guid="33badd0f-7c93-44c8-b151-f9fb588f23aa" t="o" /> -<objsur guid="799ee65e-3c30-4068-af26-9aa2de3cfdd3" t="o" /> -<objsur guid="ad530357-3096-4972-9c3e-13785932791d" t="o" /> -<objsur guid="4b0ad291-9fd7-4653-8cf0-1cc4081b21d0" t="o" /> -<objsur guid="8a1f8076-c76a-48de-9732-650b16518218" t="o" /> -<objsur guid="d38e8d64-0e7d-47b1-8cea-a10046d670b0" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="e83586c6-8d8e-4a23-bdda-a1731a5ece22" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="243da013-7072-4095-b32f-b46a0b2fc109"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pilwa</AUni> -<AUni ws="qvm-x-acl">pilwa</AUni> -<AUni ws="qvm-x-akh">pilwa</AUni> -<AUni ws="qvm-x-akl">pilwa</AUni> -<AUni ws="qvm-x-ame">pilwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pillwa</AUni> -<AUni ws="qvm-x-acl">*pillwa</AUni> -<AUni ws="qvm-x-akh">*pillwa</AUni> -<AUni ws="qvm-x-akl">*pillwa</AUni> -<AUni ws="qvm-x-ame">*pillwa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.838" /> -<DateModified val="2022-10-10 21:18:47.197" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="79a83ffa-5bdc-41eb-8738-11e0ea9b056f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pillwa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9ca837a5-9f76-4d02-b96c-8a9deedea996" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3c16084e-4bc7-4332-b7e0-18abdfd61df4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pillwa 
\entryTyp root 
\gENG 
\gSPN 
\e *pillwa 
\c V1 
\ach pilwa 
\akh pilwa 
\acl pilwa 
\akl pilwa 
\ame pilwa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="2442a843-96eb-4547-beda-43676628b2c8" ownerguid="3a9aafc5-9af2-4a5e-a2ed-34cf2052b109"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2SA 23.1 Pay versushganmi caynog nin:</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="244ee432-c009-4f7b-b24b-6818dd172773" ownerguid="15dc9f41-febb-4e65-afe0-84d999892a3c"> -<Form> -<AUni ws="qvm-x-ach">suëñu</AUni> -<AUni ws="qvm-x-acl">suëñu; suëñu; suëño</AUni> -<AUni ws="qvm-x-akh">suëñu</AUni> -<AUni ws="qvm-x-akl">suëñu; suëñu; suëño</AUni> -<AUni ws="qvm-x-ame">suëñu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="24512c3f-8587-4e4a-998e-48bac9a11c55" ownerguid="fb872b7f-a80c-4475-96d0-c031d4237846"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="24519976-4c39-4849-b4b5-02a36d994170" ownerguid="e4b6d614-7abb-412e-8607-55d3610da60e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.snow</AUni> -<AUni ws="es">nevar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="19b31aec-44f2-4b47-aded-5cb900185a04" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2451d605-4487-48ba-b3b4-89c901499ced" ownerguid="4a673080-646f-4b1b-99a2-3e59e432b836"> -<Form> -<AUni ws="qvm-x-ach">pochgu</AUni> -<AUni ws="qvm-x-acl">pochgu; pochgo</AUni> -<AUni ws="qvm-x-akh">pochqu</AUni> -<AUni ws="qvm-x-akl">pochqu; pochqo</AUni> -<AUni ws="qvm-x-ame">puchqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="2452a189-8b55-4ea6-b602-7a9d0cfa0ca0" ownerguid="d8070d34-09ce-43d5-bd3a-dc1b52086ddd"> -<Form> -<AUni ws="qvm-x-ach">poesía</AUni> -<AUni ws="qvm-x-acl">poesía</AUni> -<AUni ws="qvm-x-akh">poesía</AUni> -<AUni ws="qvm-x-akl">poesía</AUni> -<AUni ws="qvm-x-ame">poesía</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2453bb74-17fa-466e-ae91-53760dc9c5ca" ownerguid="7a043f3c-8587-4c52-82ac-e90b2d9bc0f4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bag</AUni> -<AUni ws="es">bolsa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="063936e1-be14-4b2a-8019-31d194707cf2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="245441c8-7471-41c6-93d8-42315aa19428"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shagshi</AUni> -<AUni ws="qvm-x-acl">shagshi; shagshe</AUni> -<AUni ws="qvm-x-akh">shaqshi</AUni> -<AUni ws="qvm-x-akl">shaqshi; shaqshe</AUni> -<AUni ws="qvm-x-ame">shaqshi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shaqshi</AUni> -<AUni ws="qvm-x-acl">*shaqshi</AUni> -<AUni ws="qvm-x-akh">*shaqshi</AUni> -<AUni ws="qvm-x-akl">*shaqshi</AUni> -<AUni ws="qvm-x-ame">*shaqshi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.551" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="642f7dc4-81ae-4fac-9277-b29ebb3c30d9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shaqshi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fce04bcf-a0ef-4fcf-8b91-acd814690e63" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7a5960d7-b9eb-4388-a63b-55163d267084" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shaqshi 
\entryTyp root 
\gENG sift 
\gSPN cernir 
\e *shaqshi 
\c V2 
\mp +FinalI 
\ach shagshi 
\akh shaqshi 
\acl shagshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shagshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shaqshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shaqshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shaqshi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="24546d36-2801-4661-9087-0ef7d8226579" ownerguid="0249a66f-940e-439b-9d7a-6d2ae604b988"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="245718ee-4c83-45fb-9cb9-1e6cfe025d9b"> -<Analyses> -<objsur guid="29a5be6e-9941-4b90-8d56-727b860e6046" t="o" /> -</Analyses> -<Checksum val="-1322009354" /> -<Form> -<AUni ws="qvm-x-akh">cebäda</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="245f1813-7bcc-476d-814e-f3f58e7f3f9b" ownerguid="ae04020a-3bb2-4672-ad75-71ce72d461ea"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">I want you to come here. <Then> I'll go there.; You wanted to come here. <So> I decided to let you.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">then, so</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What conjunctions join two sentences?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="24605a88-4c28-4db6-b209-a6fca2fddd9e" ownerguid="5ccc9ce6-4bc1-4bbb-a0af-730d34adce30"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9e90dbd6-46fa-4905-9872-039c8afcf858" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">of</AUni> -<AUni ws="es">de</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7130d5b8-edd6-4495-b8f0-df0db747b3b0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="24609324-c073-405b-a4ba-d1bb46127695"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shun</AUni> -<AUni ws="qvm-x-acl">shun</AUni> -<AUni ws="qvm-x-akh">shun</AUni> -<AUni ws="qvm-x-akl">shun</AUni> -<AUni ws="qvm-x-ame">shun</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.599" /> -<DateModified val="2022-10-16 15:17:57.653" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7bf0ec7b-02f7-4092-aa36-f612b96044b9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">12FUT</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5b9b30eb-486b-40e3-9d46-728bf203dd76" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4c0644ee-cb09-4932-9bca-10d87cf498f3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx 12FUT 
\entryTyp suffix 
\gENG 12FUT 
\gSPN 12FUT 
\e 12FUT 
\c V1/V0 
\o 120 
\mp +FinalC 
\ach shun 
\akh shun 
\acl shun 
\akl shun 
\ame shun</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="2462666c-f504-47ca-8df2-347401977ceb" ownerguid="4c48acbd-5156-4f6d-bd93-750bcd92bca2"> -<Form> -<AUni ws="qvm-x-ach">juzga</AUni> -<AUni ws="qvm-x-acl">juzga</AUni> -<AUni ws="qvm-x-akh">juzga</AUni> -<AUni ws="qvm-x-akl">juzga</AUni> -<AUni ws="qvm-x-ame">juzga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="246299ea-c8d9-4523-a9fb-f2f670654862"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chani</AUni> -<AUni ws="qvm-x-acl">chani; chani; chane</AUni> -<AUni ws="qvm-x-akh">chani</AUni> -<AUni ws="qvm-x-akl">chani; chani; chane</AUni> -<AUni ws="qvm-x-ame">chani</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trani</AUni> -<AUni ws="qvm-x-acl">*trani</AUni> -<AUni ws="qvm-x-akh">*trani</AUni> -<AUni ws="qvm-x-akl">*trani</AUni> -<AUni ws="qvm-x-ame">*trani</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.58" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="77bb8b66-f3ff-470f-8c7c-44dda94825f7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trani</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="59001859-1748-4387-9e36-b60f8e474bc2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d2d7e3e5-e5c8-4c9a-beba-843fbef0f0a2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trani 
\entryTyp root 
\gENG expensive 
\gSPN costoso 
\e *trani 
\c N0 
\mp +FinalI 
\ach chani 
\akh chani 
\acl chani / _# 
\acl chani +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chane +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chani / _# 
\akl chani +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chane +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chani</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="2466a226-1733-4816-b3a3-ec3fa317f8d3" ownerguid="e7a941e6-e657-4e8e-b25b-5c2549631e93"> -<Form> -<AUni ws="qvm-x-ach">alala; alalä</AUni> -<AUni ws="qvm-x-acl">alala; alalä</AUni> -<AUni ws="qvm-x-akh">alala; alalä</AUni> -<AUni ws="qvm-x-akl">alala; alalä</AUni> -<AUni ws="qvm-x-ame">alala; alalä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="246c3bdf-44d3-484b-8f92-4db257f7e134" ownerguid="db8e775d-498e-4d81-a4bc-892e50922bf9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="246e3ff5-6b51-4366-b84b-138037e2e923"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alfombra</AUni> -<AUni ws="qvm-x-acl">alfombra</AUni> -<AUni ws="qvm-x-akh">alfombra</AUni> -<AUni ws="qvm-x-akl">alfombra</AUni> -<AUni ws="qvm-x-ame">alfombra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+alfombrar</AUni> -<AUni ws="qvm-x-acl">+alfombrar</AUni> -<AUni ws="qvm-x-akh">+alfombrar</AUni> -<AUni ws="qvm-x-akl">+alfombrar</AUni> -<AUni ws="qvm-x-ame">+alfombrar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.699" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a28bf2a4-827a-41b5-a192-4b7b2ec18285" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+alfombrar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e031f069-255a-47c4-b038-8e644dee0221" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="60087791-93f4-498e-adf5-5bf7bb3e53c6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +alfombrar 
\entryTyp root 
\gENG to.carpet 
\gSPN alfombrar 
\e +alfombrar 
\c V1 
\ach alfombra 
\akh alfombra 
\acl alfombra 
\akl alfombra 
\ame alfombra</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="246f054e-64f7-4cec-b2e6-47d92c08324c" ownerguid="66eea5ae-7a9a-4cda-9c78-59a943cec536"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">lapa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">lapa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">lapa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">lapa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">lapa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="0655d4c4-dcff-4fca-931a-8964415a96b4" t="r" /> -</Morph> -<Msa> -<objsur guid="b16d0818-05dc-49f7-8cdf-889b0be5517e" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="2470ad05-636e-4c85-96ab-cd880da58741" ownerguid="7556a257-3703-40d3-91d3-c891fb250947"> -<Abbreviation> -<AUni ws="en">4.9.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.296" /> -<DateModified val="2022-9-23 16:55:8.296" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to official religions, groups within a religion, and religious meetings. Each religion will have different names for its groups. Answer each question for each religion.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>11B Socio-Religious</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Religious organization</AUni> -</Name> -<OcmCodes> -<Uni>779 Theological Systems; 790 Ecclesiastical Organization; 794 Congregations; 795 Religious Denominations; Sects; 797 Missions</Uni> -</OcmCodes> -<Questions> -<objsur guid="6f6f7bfb-252b-4ba0-858b-0ad9d636b434" t="o" /> -<objsur guid="50a82c7d-25b8-49e1-8c3a-483c793f5d90" t="o" /> -<objsur guid="9c85127f-d801-4f5a-859f-53aaa38a0c91" t="o" /> -<objsur guid="87deef96-4e49-475f-be71-8c291c96bf76" t="o" /> -<objsur guid="6ae1708f-df4f-464f-9fe5-304ad11ff535" t="o" /> -<objsur guid="28d4b72e-4199-4fbd-b067-4dafaf29b544" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="ef860ee3-a4a5-4a42-b810-fdf41e35d151" t="o" /> -<objsur guid="1229dd8f-5cfc-4644-93c3-d256fc34d054" t="o" /> -<objsur guid="ab8f5391-ad8b-42dc-a43c-22590a09ce77" t="o" /> -<objsur guid="4ce22ed0-6fe3-47ae-83e4-e7c7310cb1d4" t="o" /> -<objsur guid="df647b1a-ed79-4a8e-b781-56ed25fe4405" t="o" /> -<objsur guid="f211defe-d80f-4e40-9842-af19cb0719e7" t="o" /> -<objsur guid="f6134be5-3f96-4750-a03e-fca381a42db1" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="247643e1-281d-409c-9b29-ea9f202672c1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sortiya</AUni> -<AUni ws="qvm-x-acl">sortiya</AUni> -<AUni ws="qvm-x-akh">sortiya</AUni> -<AUni ws="qvm-x-akl">sortiya</AUni> -<AUni ws="qvm-x-ame">sortiya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sortear</AUni> -<AUni ws="qvm-x-acl">+sortear</AUni> -<AUni ws="qvm-x-akh">+sortear</AUni> -<AUni ws="qvm-x-akl">+sortear</AUni> -<AUni ws="qvm-x-ame">+sortear</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.723" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="57138ef8-df11-4587-bb7d-8aa3b32a28f4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sortear</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d1ad1ae8-6ac0-4a83-bf10-504c050a02eb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ba80cc19-a99a-4dc5-9647-41161b0def58" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sortear 
\entryTyp root 
\gENG 
\gSPN 
\e +sortear 
\c V1 
\mp +assimilated 
\ach sortiya 
\akh sortiya 
\acl sortiya 
\akl sortiya 
\ame sortiya 
\i Mandagniqui rey cananpag churaptëga gamcunapa tsuriquitami soldädo cananpag sorteädu apanga.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="2477844f-c33e-4607-857f-f5b8bc56037e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shilqui</AUni> -<AUni ws="qvm-x-acl">shilqui; shilque</AUni> -<AUni ws="qvm-x-akh">shilki</AUni> -<AUni ws="qvm-x-akl">shilki; shilke</AUni> -<AUni ws="qvm-x-ame">shilki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shillki.v</AUni> -<AUni ws="qvm-x-acl">*shillki.v</AUni> -<AUni ws="qvm-x-akh">*shillki.v</AUni> -<AUni ws="qvm-x-akl">*shillki.v</AUni> -<AUni ws="qvm-x-ame">*shillki.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.579" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aef4b5fa-a311-4536-805d-233f05ae8413" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shillki.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0d777f56-4201-4695-ad1d-51c84d75d05f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1344dce6-9fae-41ec-ad33-2fe557289a0e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shillki.v 
\entryTyp root 
\gENG do.chiropractor 
\gSPN aberturar 
\e *shillki.v 
\c V1 
\mp +FinalI 
\ach shilqui 
\akh shilki 
\acl shilqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shilque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shilki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shilke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shilki 
\i Shamuy shilquinäpag. 
\i Shilquirishayqui. 
\i Shilquicushcä.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="24780963-f14a-4197-8d5a-c1358ef8c0bc" ownerguid="c6e181fc-c268-4a86-8822-306d3b9e34f6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="24780e0b-20c2-48ec-9cf4-b2bbf19dc5ef" ownerguid="8cce4003-fb3c-43a1-a1d6-9c91a5d67cd5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="24788942-e426-42c1-ac99-eee22d797b8c" ownerguid="63ac84a0-40f5-463a-87e3-f9cbb48e16cd"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a654a1f1-4e67-4c58-a03e-bbbdd88d7bff" t="r" /> -</Morph> -<Msa> -<objsur guid="44aa6f68-7289-4246-8bc4-0e6ec4046fb2" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="2478cae4-af41-49f7-93fa-cb1f98a5e046" ownerguid="2355f1fb-810d-468e-9a3d-bd4b4ca1332b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">humillarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="71b45680-8c54-4e72-9bb6-6e9453b8969e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="247c210a-8582-4cd2-93bd-7ca6eb692537" ownerguid="d6e9e2b5-155f-4e7b-b841-f5589e1b5c89"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dance</AUni> -<AUni ws="es">bailar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="74ba6466-8984-4a7c-a28e-effea5e84ab4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="247e448a-dc88-4a1b-917d-5d4e4addbc0d" ownerguid="eed3064f-530f-46fc-9115-3f94ac70c46a"> -<Form> -<AUni ws="qvm-x-ach">cushpi</AUni> -<AUni ws="qvm-x-acl">cushpi; cushpi; cushpe</AUni> -<AUni ws="qvm-x-akh">kushpi</AUni> -<AUni ws="qvm-x-akl">kushpi; kushpi; kushpe</AUni> -<AUni ws="qvm-x-ame">kushpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="2486586e-178f-4d24-8f63-020b13f1156e" ownerguid="3b0e81b6-a586-492d-8757-d84495a5631d"> -<Form> -<AUni ws="qvm-x-ach">shancapa</AUni> -<AUni ws="qvm-x-acl">shancapa</AUni> -<AUni ws="qvm-x-akh">shankapa</AUni> -<AUni ws="qvm-x-akl">shankapa</AUni> -<AUni ws="qvm-x-ame">shankapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="24877c4f-ea70-4c15-906d-429fcd711307" ownerguid="462b3ad8-842e-48e6-aba8-a83606dd8a69"> -<Form> -<AUni ws="qvm-x-ach">tsatay</AUni> -<AUni ws="qvm-x-acl">tsatay</AUni> -<AUni ws="qvm-x-akh">tsatay</AUni> -<AUni ws="qvm-x-akl">tsatay</AUni> -<AUni ws="qvm-x-ame">tsatay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="2489f068-51f1-4ed3-9044-652a38a92ffd" ownerguid="b5987fee-71fb-400d-8f6f-2991bce15d00"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="248c8bb7-aa53-4fe1-aebc-4da5dc26c138" ownerguid="76662e0a-c33f-4ade-8f11-e668d2cd276c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">know</AUni> -<AUni ws="es">saber</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c6047088-dfa1-409b-a901-2a442c5a94b5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="248e58eb-4e0a-43d3-9910-0fae1ac0b81b" ownerguid="bca1d45b-f438-497e-b9b2-1f0e67f3a410"> -<Form> -<AUni ws="qvm-x-ach">pastu; pasto</AUni> -<AUni ws="qvm-x-acl">pastu; pastu; pasto</AUni> -<AUni ws="qvm-x-akh">pastu; pasto</AUni> -<AUni ws="qvm-x-akl">pastu; pastu; pasto</AUni> -<AUni ws="qvm-x-ame">pastu; pasto</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="248e826d-7bcd-474f-b411-8ca54718a672"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">susiga</AUni> -<AUni ws="qvm-x-acl">susiga</AUni> -<AUni ws="qvm-x-akh">susiga</AUni> -<AUni ws="qvm-x-akl">susiga</AUni> -<AUni ws="qvm-x-ame">susiga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+susegar</AUni> -<AUni ws="qvm-x-acl">+susegar</AUni> -<AUni ws="qvm-x-akh">+susegar</AUni> -<AUni ws="qvm-x-akl">+susegar</AUni> -<AUni ws="qvm-x-ame">+susegar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.754" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0b8cb047-f8b6-46b3-956d-c6738e97faa3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+susegar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="546ddcc3-6aa9-4386-ab7f-459d7505e2c9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8af97413-d229-49f2-a52d-076ff1160781" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +susegar 
\entryTyp root 
\gENG 
\gSPN 
\e +susegar 
\c V1 
\ach susiga 
\akh susiga 
\acl susiga 
\akl susiga 
\ame susiga</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="2492b498-9515-41c1-8e4a-60c863a7fcdd" ownerguid="2b9ce81a-0194-423a-8be4-098b909b0e64"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">na</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">na</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">na</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">na</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">na</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7a9a0db9-5eb5-414c-9dd3-907a54abc86b" t="r" /> -</Morph> -<Msa> -<objsur guid="a91771ad-8785-4e3e-b6f8-793820e3a8bd" t="r" /> -</Msa> -</rt> -<rt class="MoAffixAllomorph" guid="2493b0d6-56b4-4ad1-8952-831ac0432d21" ownerguid="a97be5dd-69dc-49bf-bcf1-a4da50b64eaa"> -<Form> -<AUni ws="qvm-x-ach">niyug</AUni> -<AUni ws="qvm-x-acl">niyog</AUni> -<AUni ws="qvm-x-akh">niyuq</AUni> -<AUni ws="qvm-x-akl">niyoq</AUni> -<AUni ws="qvm-x-ame">niyuq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="35058c7a-447a-4ee8-89bd-323da24bf7c5" t="r" /> -</PhoneEnv> -</rt> -<rt class="MoStemMsa" guid="24948353-8f72-4f21-87d3-a8a0bed3e858" ownerguid="f99036a0-438b-45d0-9238-87c647f43d7f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="2495d5b2-9623-4b99-9066-04e164c9bb14"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chacra</AUni> -<AUni ws="qvm-x-acl">chacra</AUni> -<AUni ws="qvm-x-akh">chakra</AUni> -<AUni ws="qvm-x-akl">chakra</AUni> -<AUni ws="qvm-x-ame">chakra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trakra</AUni> -<AUni ws="qvm-x-acl">*trakra</AUni> -<AUni ws="qvm-x-akh">*trakra</AUni> -<AUni ws="qvm-x-akl">*trakra</AUni> -<AUni ws="qvm-x-ame">*trakra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.48" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cd674ab6-1c89-440f-a23a-9830cd212065" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trakra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9febae43-db52-489f-8ef8-a9492c454aea" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f0606490-47ad-41fa-9fa3-14c915d3373b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trakra 
\entryTyp root 
\gENG field 
\gSPN terreno 
\e *trakra 
\c N0 
\ach chacra 
\akh chakra 
\acl chacra 
\akl chakra 
\ame chakra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="24996927-542b-4e10-a7cb-bc64930bb84f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsaura</AUni> -<AUni ws="qvm-x-acl">tsaura</AUni> -<AUni ws="qvm-x-akh">tsawra</AUni> -<AUni ws="qvm-x-akl">tsawra</AUni> -<AUni ws="qvm-x-ame">tsawra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chay+hora</AUni> -<AUni ws="qvm-x-acl">*chay+hora</AUni> -<AUni ws="qvm-x-akh">*chay+hora</AUni> -<AUni ws="qvm-x-akl">*chay+hora</AUni> -<AUni ws="qvm-x-ame">*chay+hora</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.295" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="37ddebb7-bc96-4510-85b9-e42fb50ee968" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chay+hora</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="015ccf59-a66e-4001-8036-7c3724ec6594" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1e5fc686-33b9-42a2-a734-08fed4f70547" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chay+hora 
\entryTyp root 
\gENG then 
\gSPN entonces 
\e *chay+hora 
\c ONSHEV 
\ach tsaura 
\akh tsawra 
\acl tsaura 
\akl tsawra 
\ame tsawra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="24997110-3f76-4303-9331-edcd870e51cc" ownerguid="627280f0-4f98-4b31-ad23-eabe37b002ad"> -<ExampleWords> -<AUni ws="en">fine, fibrous, fine-spun</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something like thread that is thin?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="249f00ac-0d7a-4490-ad55-8bf72040c910" ownerguid="c931dded-3f19-41d2-8558-d87ce1db63c9"> -<Form> -<AUni ws="qvm-x-ach">guecha</AUni> -<AUni ws="qvm-x-acl">guecha</AUni> -<AUni ws="qvm-x-akh">qecha</AUni> -<AUni ws="qvm-x-akl">qecha</AUni> -<AUni ws="qvm-x-ame">qicha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="24a09c48-5ae6-467f-8bf4-f531bc104ff2" ownerguid="5952f6aa-ac17-4f7d-a1fc-001c7f5c1bf4"> -<Form> -<AUni ws="qvm-x-ach">ashmay</AUni> -<AUni ws="qvm-x-acl">ashmay</AUni> -<AUni ws="qvm-x-akh">ashmay</AUni> -<AUni ws="qvm-x-akl">ashmay</AUni> -<AUni ws="qvm-x-ame">ashmay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="24a280c7-8eb2-4f75-83f9-8ff536345cc0" ownerguid="79ca34ea-68a7-4fe9-b5ac-4f3d6a1ab99d"> -<ExampleWords> -<AUni ws="en">crawl, wiggle, turn over, sit up, toddle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a baby moving?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="24a29d62-81ba-4794-8cd9-ee0494f73629" ownerguid="e6e3adc7-b678-4f54-933d-2839455c2ff6"> -<Form> -<AUni ws="qvm-x-ach">chiqui</AUni> -<AUni ws="qvm-x-acl">chiqui; chique</AUni> -<AUni ws="qvm-x-akh">chiki</AUni> -<AUni ws="qvm-x-akl">chiki; chike</AUni> -<AUni ws="qvm-x-ame">chiki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="24a2abc7-5b93-4b7f-84bb-aee810fd18d5" ownerguid="e0e4dd0f-4743-4439-a6db-6e410ea088ca"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="r" /> -</Morph> -</rt> -<rt class="MoStemAllomorph" guid="24a4ef77-2799-407b-a17f-240b9e18b92e" ownerguid="eb8d7a3b-ad1a-46d4-8cb6-9a54961b3f6a"> -<Form> -<AUni ws="qvm-x-ach">sagacida; sagacidä; sacasida; sacasidä</AUni> -<AUni ws="qvm-x-acl">sagacida; sagacidä; sacasida; sacasidä</AUni> -<AUni ws="qvm-x-akh">sagacida; sagacidä; sacasida; sacasidä</AUni> -<AUni ws="qvm-x-akl">sagacida; sagacidä; sacasida; sacasidä</AUni> -<AUni ws="qvm-x-ame">sagacida; sagacidä; sacasida; sacasidä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="24abd3dd-5184-4077-94c7-1afb4f8d5f2c" ownerguid="591fd489-36e6-4ffd-a976-58876d851829"> -<ExampleWords> -<AUni ws="en">mucus, snot, booger</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What does the nose produce?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="24ac0a5d-4080-4bce-b752-c6df26e8891d" ownerguid="c973e727-1dd5-4b6b-add2-80da460b12d3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="71f5e0c2-013e-41f2-bf4e-0da3b985a57e" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="8a7ae5c0-466d-46f8-b5bb-66ff9cc084c4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="24ad69d7-6498-4482-bd74-f4d0f448fc77" ownerguid="0a1377a6-73a7-42e6-a810-97c3f51d3761"> -<Form> -<AUni ws="qvm-x-ach">puñal</AUni> -<AUni ws="qvm-x-acl">puñal</AUni> -<AUni ws="qvm-x-akh">puñal</AUni> -<AUni ws="qvm-x-akl">puñal</AUni> -<AUni ws="qvm-x-ame">puñal</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="24adea45-4651-4daa-b1b2-9a06e6eea6e9" ownerguid="189f8c29-f0ff-44b6-a0db-5b287c412a75"> -<ExampleWords> -<AUni ws="en">conflict, antagonism, discord, disharmony, friction, hostility, ill feeling, rivalry, strife, tension, sit on a powder key, cold war, phony war</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to hostility between people?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="24af2113-f8f0-44b7-ab4b-fd2a96341e62" ownerguid="d106ac7b-fd48-4879-9752-37038b3b39e0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.worthwhile</AUni> -<AUni ws="es">convenir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="497fe439-65a1-4ad0-bcf1-6b20c5011da9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="24af8838-b9c2-43d9-b4b6-4ce8286544e7" ownerguid="78a977cb-31d3-4a4a-b2a5-8cbbd69a7c6a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="7db5a75b-80de-4b70-8ad2-93ff53f91755" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="e233f98c-7064-4101-a273-271196278937" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="24b78cba-d55b-44d2-8a76-5f3df1bf5009"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">muñanca</AUni> -<AUni ws="qvm-x-acl">muñanca</AUni> -<AUni ws="qvm-x-akh">muñanka</AUni> -<AUni ws="qvm-x-akl">muñanka</AUni> -<AUni ws="qvm-x-ame">muñanka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*muñanka</AUni> -<AUni ws="qvm-x-acl">*muñanka</AUni> -<AUni ws="qvm-x-akh">*muñanka</AUni> -<AUni ws="qvm-x-akl">*muñanka</AUni> -<AUni ws="qvm-x-ame">*muñanka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.497" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bc9bd837-ae7c-4e7d-be15-0d7984e48f80" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*muñanka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7a342e82-d07e-435d-9f8c-2ccb853804a1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f6408bf3-7052-4f94-a091-46800988bf9f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *muñanka 
\entryTyp root 
\gENG 
\gSPN 
\e *muñanka 
\c N0 
\ach muñanca 
\akh muñanka 
\acl muñanca 
\akl muñanka 
\ame muñanka</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="24b94b1c-9eea-41f7-a044-348ad9a259c5" ownerguid="a3fe0ca2-64fe-44db-ac3f-14513385bc25"> -<ExampleWords> -<AUni ws="en">stay up (late), stay awake</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to staying awake and not going to sleep?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="24bb516a-baef-484a-9da3-991eb96e1484" ownerguid="8a81b9bc-9c66-4d57-a2d1-2e592604c4b1"> -<ExampleWords> -<AUni ws="en">crowded, packed, crammed with, be packed out, booked up, fully booked, congested, dense, occupied, throng, thronged, thronging</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a place that is full of people?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="24bb6dc4-2374-4b4c-a39d-8a439dc4416e" ownerguid="f943628b-a409-4384-bb7b-66c8ec485202"> -<Form> -<AUni ws="qvm-x-ach">cucuta; cucutä</AUni> -<AUni ws="qvm-x-acl">cucuta; cucutä</AUni> -<AUni ws="qvm-x-akh">kukuta; kukutä</AUni> -<AUni ws="qvm-x-akl">kukuta; kukutä</AUni> -<AUni ws="qvm-x-ame">kukuta; kukutä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="24bc7ba6-90ea-4de0-b0f9-30700e14e52d" ownerguid="be280123-dda6-49a0-bd8c-5e2855b56159"> -<ExampleWords> -<AUni ws="en">cultivate, plant, seed (a field), sow seed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to planting seeds in a field?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="24bd6800-3720-46d2-816f-9491d9a0b3a4" ownerguid="14fef832-59de-4167-8508-ababf7d5abf1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">milk</AUni> -<AUni ws="es">leche</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f0d25b3e-3e36-43d6-b59c-1c02ee16348a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="24bf0860-4b01-4495-add1-b473df5bc4df"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">capacapa</AUni> -<AUni ws="qvm-x-acl">capacapa</AUni> -<AUni ws="qvm-x-akh">kapakapa</AUni> -<AUni ws="qvm-x-akl">kapakapa</AUni> -<AUni ws="qvm-x-ame">kapakapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kapakapa</AUni> -<AUni ws="qvm-x-acl">*kapakapa</AUni> -<AUni ws="qvm-x-akh">*kapakapa</AUni> -<AUni ws="qvm-x-akl">*kapakapa</AUni> -<AUni ws="qvm-x-ame">*kapakapa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.933" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="846aa43b-c8bc-426c-836a-a16419c850b1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kapakapa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f53ce0f7-7cd5-452c-aec3-25654191e6d5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f9004ff6-409e-42b3-8f88-c361b6386dc5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kapakapa 
\entryTyp root 
\gENG cartilage 
\gSPN cartílago 
\e *kapakapa 
\c N0 
\ach capacapa 
\akh kapakapa 
\acl capacapa 
\akl kapakapa 
\ame kapakapa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="24c08bec-13d7-4e24-828f-6343dada879a" ownerguid="aec0f6eb-10bb-40a6-a595-735f238f8f36"> -<Form> -<AUni ws="qvm-x-ach">ichichag</AUni> -<AUni ws="qvm-x-acl">ichichag</AUni> -<AUni ws="qvm-x-akh">ichichaq</AUni> -<AUni ws="qvm-x-akl">ichichaq</AUni> -<AUni ws="qvm-x-ame">ichichaq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="24c2f6e4-c17f-4619-b4e0-bf81535c390c" ownerguid="16c520be-2776-4b7b-8f11-7d330600e5eb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">squirt</AUni> -<AUni ws="es">espurrear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="924591d0-9b21-401e-88f3-1fe79abe6f16" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="24c45f8e-e5de-4b90-9b96-cc74a5f3363c" ownerguid="02a3dfc6-4bac-4230-a40e-1455102143e1"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Ishcay versículo cashganta tantyanantsipag juc cömami escribiraycan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="24c5b1f6-ad09-463f-a9c5-b39132a38143" ownerguid="2b6f9af7-04ee-4030-a2cd-87d55959caa8"> -<ExampleWords> -<AUni ws="en">scare easily, timid, be of a nervous disposition</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe someone who is easily frightened?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="24cbc912-4c61-45d9-898d-09565af3e4fc" ownerguid="bb4e0a69-db20-4757-beff-5dcb1c5e0f92"> -<ExampleWords> -<AUni ws="en">oppressed, persecuted, tyrannized</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a person who is oppressed?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="24ce6eaa-ec54-4fc2-a256-5d1989a5f450" ownerguid="df0af4e7-7ba7-48f2-b1cf-5f8991ac97ce"> -<Form> -<AUni ws="qvm-x-ach">goshpu</AUni> -<AUni ws="qvm-x-acl">goshpu; goshpu; goshpo</AUni> -<AUni ws="qvm-x-akh">qoshpu</AUni> -<AUni ws="qvm-x-akl">qoshpu; qoshpu; qoshpo</AUni> -<AUni ws="qvm-x-ame">qushpu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="24d3d7f9-0fda-4759-930b-6b721d3e9115" ownerguid="af0909a5-928a-4421-baaa-f33b14302714"> -<Abbreviation> -<AUni ws="en">9.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.688" /> -<DateModified val="2022-9-23 16:55:8.688" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain to list all adverbs. If there are many adverbs in your language, it is probably not worth the trouble to list them here. The Shoebox program (and other dictionary programs) can sort your dictionary by part of speech.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Adverbs</AUni> -</Name> -<Questions> -<objsur guid="09cd6b08-4f37-4ad5-b498-531bce53da02" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="24da28da-7ac0-4ec3-b758-9e53e24844b9" ownerguid="44dc42e4-e9c7-4aa9-ac9b-1008385244b1"> -<ExampleWords> -<AUni ws="en">parental, paternal, maternal, fatherly, motherly, parentage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something having to do with your parents?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="24dcd977-5e52-4c2b-858d-58b7d5209f56"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">arcu</AUni> -<AUni ws="qvm-x-acl">arcu; arco</AUni> -<AUni ws="qvm-x-akh">arku</AUni> -<AUni ws="qvm-x-akl">arku; arko</AUni> -<AUni ws="qvm-x-ame">arku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*arku.v</AUni> -<AUni ws="qvm-x-acl">*arku.v</AUni> -<AUni ws="qvm-x-akh">*arku.v</AUni> -<AUni ws="qvm-x-akl">*arku.v</AUni> -<AUni ws="qvm-x-ame">*arku.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.830" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9f3e435f-640f-412a-81a1-de14ad4d2238" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*arku.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e0e93482-646f-4fcb-a967-b57b54ca6a8e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="65888d76-787b-4cc2-8b4f-19773dcc01a5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *arku.v 
\entryTyp root 
\gENG pile.up (corn stalks) 
\gSPN amontonar 
\e *arku.v 
\c V2 
\ach arcu 
\akh arku 
\acl arcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl arco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl arku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl arko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame arku</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="24df2bfe-488a-4ded-bd96-e53332c28125" ownerguid="fc54a9d3-a717-47c2-a271-e57aceaf8529"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">love</AUni> -<AUni ws="es">amar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6ee88865-51d6-40db-b9fa-4ba30a1cf4e7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="24e1b248-622c-4466-a023-280ea101b754" ownerguid="83adeb9d-c0be-4073-894d-913014420280"> -<ExampleWords> -<AUni ws="en">good, fine, excellent, moral, nice, worthy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a person who is good?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="24e51d15-c342-47d1-8e6d-ad75e9845245" ownerguid="3196b963-90b0-44ec-99ac-7ea5ba3a41a4"> -<Form> -<AUni ws="qvm-x-ach">aniversariu; aniversario</AUni> -<AUni ws="qvm-x-acl">aniversariu; aniversariu; aniversario</AUni> -<AUni ws="qvm-x-akh">aniversariu; aniversario</AUni> -<AUni ws="qvm-x-akl">aniversariu; aniversariu; aniversario</AUni> -<AUni ws="qvm-x-ame">aniversariu; aniversario</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="24e5cd5e-b539-4807-9a11-f7f078505f9d" ownerguid="5d9a4b83-1cd2-4944-90b1-0a4c118fd1d2"> -<Form> -<AUni ws="qvm-x-ach">gawi</AUni> -<AUni ws="qvm-x-acl">gawi; gawe</AUni> -<AUni ws="qvm-x-akh">qawi</AUni> -<AUni ws="qvm-x-akl">qawi; qawe</AUni> -<AUni ws="qvm-x-ame">qawi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="24e73ba1-ed07-43da-9ac3-ad7f9d629abf" ownerguid="647603c2-6f32-48f3-91fa-1f7f0e44b539"> -<ExampleWords> -<AUni ws="en">sprinkle (with water), splash (water on), spray (water on), drizzle, spatter, splatter, squirt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to putting drops of water on something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="24e7ac69-b0f1-4930-bbd9-217f5d9b49a2" ownerguid="6efaac57-95a7-4aa7-9c6d-9df656a8e349"> -<Form> -<AUni ws="qvm-x-ach">gracia</AUni> -<AUni ws="qvm-x-acl">gracia</AUni> -<AUni ws="qvm-x-akh">gracia</AUni> -<AUni ws="qvm-x-akl">gracia</AUni> -<AUni ws="qvm-x-ame">gracia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="24ec0727-7912-42e6-9ba1-a70ab6ee72e4" ownerguid="66fda8c8-a5eb-41f6-a67e-754ac23c542f"> -<PartOfSpeech> -<objsur guid="85ffb381-0567-4202-8640-53cbaec77e45" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="24ef72c6-0ff8-41eb-b766-115b83082829" ownerguid="3147ae2e-bb1c-45ae-8da3-b656a0ede47d"> -<Form> -<AUni ws="qvm-x-ach">lauracha</AUni> -<AUni ws="qvm-x-acl">lauracha</AUni> -<AUni ws="qvm-x-akh">lawracha</AUni> -<AUni ws="qvm-x-akl">lawracha</AUni> -<AUni ws="qvm-x-ame">lawracha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="24f18dca-1f13-4e72-8994-4a2832d459f4" ownerguid="73bb8073-650f-4d61-ba41-e4ecbda4c9a2"> -<Form> -<AUni ws="qvm-x-ach">yanqui</AUni> -<AUni ws="qvm-x-acl">yanqui; yanque</AUni> -<AUni ws="qvm-x-akh">yanki</AUni> -<AUni ws="qvm-x-akl">yanki; yanke</AUni> -<AUni ws="qvm-x-ame">yanki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="24f19741-42c6-4548-a443-1d7e40e6598e" ownerguid="6f01b67c-33a0-4ed3-8205-f868e97a1a3a"> -<ExampleWords> -<AUni ws="en">circulate, go on a circuit, circumnavigate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to moving from place to place and then returning to the first place?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="24f679aa-f170-429a-a6cf-b068081e2668" ownerguid="62a7eac8-a0b8-44ba-a4bb-dfefefdbd216"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="24fc29b5-dfe1-4109-a09b-8bfd26fd5ee8" ownerguid="6c9e1060-2c61-44e1-9e2f-272dcfa04ebf"> -<Form> -<AUni ws="qvm-x-ach">envidia</AUni> -<AUni ws="qvm-x-acl">envidia</AUni> -<AUni ws="qvm-x-akh">envidia</AUni> -<AUni ws="qvm-x-akl">envidia</AUni> -<AUni ws="qvm-x-ame">envidia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="24fd802d-c4a7-443d-8571-6ad4cda1d2a4" ownerguid="75825d72-695b-4e92-9f33-0f3ab4d7dd11"> -<ExampleWords> -<AUni ws="en">saliva, spit, spittle, sputum, phlegm, drool, slobber, drivel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to saliva?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2504119a-086f-4d7e-ae40-78201708e152" ownerguid="8616e673-bb26-4140-8890-e15f45735529"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="25046e40-4301-4e9b-add0-fe806d439632" ownerguid="34a02a17-23fb-4260-9f97-c125842a3594"> -<ExampleWords> -<AUni ws="en">birth ceremony, christening, naming ceremony, baptism</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a ceremony celebrating a child's birth?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="25079657-7759-4f10-98b0-a2f3a4ce231e" ownerguid="3c774a89-7af1-4806-98e8-b0102f4a4aba"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="250a52e4-ede0-427d-8382-46a5742d4f96" ownerguid="101c16f8-ec76-4ec7-895a-fd814fef51dd"> -<Abbreviation> -<AUni ws="en">2.5.7.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.63" /> -<DateModified val="2022-9-23 16:55:8.63" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that refer to a place where the sick and injured are treated.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Hospital</AUni> -</Name> -<OcmCodes> -<Uni>743 Hospitals and Clinics</Uni> -</OcmCodes> -<Questions> -<objsur guid="bfb81fb8-1569-4666-b99c-d3ea5a161c84" t="o" /> -<objsur guid="c092d1ae-eb91-47c7-98ec-67f28d86c10b" t="o" /> -<objsur guid="7fd3c1b0-95b4-4ca7-a778-c1755a807e3b" t="o" /> -<objsur guid="a48916c8-0800-498e-acf9-a71afa2e4b87" t="o" /> -<objsur guid="2e3e3413-e13f-416b-abc8-739a061ba61c" t="o" /> -<objsur guid="237ebd58-c847-459f-aaea-9bd6e948b2d8" t="o" /> -<objsur guid="fa88c987-f71c-4d60-9edd-a1d949fbbd4c" t="o" /> -<objsur guid="7ae72427-7ad6-42cb-be07-461e9fce945b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="250baab9-5a31-493c-95ea-9fee8baf9fd5" ownerguid="5cc64831-c14a-4dbe-beba-214e725ad041"> -<Abbreviation> -<AUni ws="en">7.2.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.506" /> -<DateModified val="2022-9-23 16:55:8.506" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to moving in a graceful manner.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Graceful</AUni> -</Name> -<Questions> -<objsur guid="a346839b-794f-4988-b508-3d195ddf726b" t="o" /> -<objsur guid="2b1bf398-f40b-4d85-9274-83bccc0f759b" t="o" /> -<objsur guid="d313731d-1b92-49d7-ae79-3c5cd07d5300" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b5aa5873-4c66-4d2d-935a-18e0ab231dbb" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="250eed0f-becf-43d9-b0d3-1e0308f103b1" ownerguid="bc9d763c-e4fe-48ab-ad44-87a36f6cc06f"> -<ExampleWords> -<AUni ws="en">criticize, be critical, be a critic of, critique, accuse, attack, launch into an attack on, badmouth, belittle, blame, carp, cavil, censure, cite, charge, decry, denounce, deprecate, deride, disparage, gibe, harangue, judge, lay into, mock, rake someone over the coals, recriminate, reprehend, reproach, ridicule, scoff, speak evil of, tear down (someone), voice your disapproval</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to criticizing someone or something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="251531bb-0f71-44fc-af97-1beb4d74c834"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ingrei:du</AUni> -<AUni ws="qvm-x-acl">ingrei:du; ingrei:du; ingrei:do</AUni> -<AUni ws="qvm-x-akh">ingrei:du</AUni> -<AUni ws="qvm-x-akl">ingrei:du; ingrei:du; ingrei:do</AUni> -<AUni ws="qvm-x-ame">ingrei:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+increado</AUni> -<AUni ws="qvm-x-acl">+increado</AUni> -<AUni ws="qvm-x-akh">+increado</AUni> -<AUni ws="qvm-x-akl">+increado</AUni> -<AUni ws="qvm-x-ame">+increado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.812" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="221baa7f-d852-467e-899f-b5783f42b438" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+increado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="34c92650-34b7-47a0-9d68-21ee96430534" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8c160bc1-ca98-4dcd-87fa-ed60043f8a1a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +increado 
\entryTyp root 
\gENG 
\gSPN 
\e +increado 
\c N0 
\ach ingrei:du 
\akh ingrei:du 
\acl ingrei:du / _# 
\acl ingrei:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ingrei:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ingrei:du / _# 
\akl ingrei:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ingrei:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ingrei:du</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="2517e8ce-94e1-4de9-8605-d63cabe2c9f3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rogu</AUni> -<AUni ws="qvm-x-acl">rogu; rogu; rogo</AUni> -<AUni ws="qvm-x-akh">roqu</AUni> -<AUni ws="qvm-x-akl">roqu; roqu; roqo</AUni> -<AUni ws="qvm-x-ame">ruqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ruqu.n</AUni> -<AUni ws="qvm-x-acl">*ruqu.n</AUni> -<AUni ws="qvm-x-akh">*ruqu.n</AUni> -<AUni ws="qvm-x-akl">*ruqu.n</AUni> -<AUni ws="qvm-x-ame">*ruqu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.409" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b9d6b5d2-12c3-489c-8735-dafa4c420657" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ruqu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="71b761b1-f785-4a70-8268-c289cf7ff281" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d894b7d0-20f6-4cfe-b5a7-15612c799f36" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ruqu.n 
\entryTyp root 
\gENG 
\gSPN 
\e *ruqu.n 
\c N0 
\ach rogu 
\akh roqu 
\acl rogu / _# 
\acl rogu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl rogo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl roqu / _# 
\akl roqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl roqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ruqu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="2517f7a1-fbab-4ef3-b34b-ac722d1092ae" ownerguid="6ef0a089-c4b1-455d-af2f-1006ca10d997"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">promise</AUni> -<AUni ws="es">promesa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="53bda18c-5af4-47f7-a786-2d13750f8ddc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="251a7adc-f3d5-4fb5-b38b-d8f8edc130da" ownerguid="6bfc7703-3351-4580-919f-5da95152633d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rod</AUni> -<AUni ws="es">barilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="613e8b36-988d-4010-bfc1-de5baba10dfc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="251b17bd-5796-43ce-ba10-54140a99a1e0" ownerguid="265f5645-94cb-485c-8bf9-0a3ab2354f63"> -<Abbreviation> -<AUni ws="en">9.6.1.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.718" /> -<DateModified val="2022-9-23 16:55:8.718" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating equivalence between two things or propositions.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89S Equivalence</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Equivalence</AUni> -</Name> -<Questions> -<objsur guid="3e68fb18-4399-4b6d-bfcf-d3d3bf3f9a5e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="251ba062-8967-4710-9264-a77d083c1ec7" ownerguid="570108aa-64f7-46b9-9f02-a200f6ce9d76"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="251c58e5-af8f-4480-9d5a-0011018f3f00"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ordena</AUni> -<AUni ws="qvm-x-acl">ordena</AUni> -<AUni ws="qvm-x-akh">ordena</AUni> -<AUni ws="qvm-x-akl">ordena</AUni> -<AUni ws="qvm-x-ame">ordena</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ordenar</AUni> -<AUni ws="qvm-x-acl">+ordenar</AUni> -<AUni ws="qvm-x-akh">+ordenar</AUni> -<AUni ws="qvm-x-akl">+ordenar</AUni> -<AUni ws="qvm-x-ame">+ordenar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.628" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f29d859a-0d1b-4d26-baeb-e5c7edffd101" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ordenar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="30b8f7db-afc3-45a0-9438-0ac977421a5c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="28fe8218-cf00-415d-90f0-18a57bf6e6b2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ordenar 
\entryTyp root 
\gENG order 
\gSPN ordenar 
\e +ordenar 
\c V2 
\ach ordena 
\akh ordena 
\acl ordena 
\akl ordena 
\ame ordena</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="251ee782-dbc2-484b-ae41-216e29d3920c" ownerguid="5095fe64-ebb3-4190-ab27-bb5b09f07793"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">heel</AUni> -<AUni ws="es">talón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="338f588e-db4e-4952-a514-07ecfbc07757" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="252159f4-2acc-44a4-b019-f6e0eceb994d" ownerguid="813a720d-2477-4a67-bf2d-938ab6586dae"> -<Form> -<AUni ws="qvm-x-ach">goñu</AUni> -<AUni ws="qvm-x-acl">goñu; goño</AUni> -<AUni ws="qvm-x-akh">qoñu</AUni> -<AUni ws="qvm-x-akl">qoñu; qoño</AUni> -<AUni ws="qvm-x-ame">quñu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="252886c4-9317-4c6b-a69e-13520eb89736" ownerguid="4f19ab95-428a-4a0b-a069-ca8be6b72b08"> -<Abbreviation> -<AUni ws="en">4.2.1.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.207" /> -<DateModified val="2022-9-23 16:55:8.207" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to welcoming a visitor.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>34G Welcome, Receive</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Welcome, receive</AUni> -</Name> -<Questions> -<objsur guid="4fae3b69-c063-4665-927b-ccbe15b13944" t="o" /> -<objsur guid="8e724c9e-d97f-4d26-b889-b8d6df152482" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="252f2eb5-2597-4b0b-9e9b-900032570ebb" ownerguid="0335fea0-5034-4542-9273-6a33f229dbb5"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="25313318-d4d6-4ae5-a54c-104eb9dc589d" ownerguid="809aad69-630b-4f0f-9556-5f03c800bbe0"> -<Form> -<AUni ws="qvm-x-ach">tsaqui</AUni> -<AUni ws="qvm-x-acl">tsaqui; tsaque</AUni> -<AUni ws="qvm-x-akh">tsaki</AUni> -<AUni ws="qvm-x-akl">tsaki; tsake</AUni> -<AUni ws="qvm-x-ame">tsaki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="25315671-13d9-4c95-b04e-2234f7bf7e39" ownerguid="5b1e0bfb-3f12-4e5e-9e9f-13f91752a853"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">grandchild</AUni> -<AUni ws="es">nieto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="40f30c0a-9a61-4a72-ac2c-ab8393f5ba8c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="2533fe71-e6ec-4e7b-855d-63045a6bbeba" ownerguid="cbc22dc6-a815-49f8-985f-00001c278817"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="25368b49-057d-43fb-b5e3-a611cc378e39" ownerguid="dc1ab28c-3e1e-474c-8359-2548b7ad5595"> -<ExampleWords> -<AUni ws="en">description, descriptive, portrayal, profile, account, report, commentary, characterization, definition, redefinition, depiction, representation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to what you say when you describe something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2536e011-ff02-45d9-8e1d-ee8b4e6fc60c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ami</AUni> -<AUni ws="qvm-x-acl">ami; ame</AUni> -<AUni ws="qvm-x-akh">ami</AUni> -<AUni ws="qvm-x-akl">ami; ame</AUni> -<AUni ws="qvm-x-ame">ami</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ami</AUni> -<AUni ws="qvm-x-acl">*ami</AUni> -<AUni ws="qvm-x-akh">*ami</AUni> -<AUni ws="qvm-x-akl">*ami</AUni> -<AUni ws="qvm-x-ame">*ami</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.757" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f5ed700d-36f4-4222-b1fc-1ae42d62bbf0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ami</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="71b199db-39ec-48c3-af5a-404eeae29f8c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cf2b2480-2a5a-4e81-83bc-cc1feb5664c2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ami 
\entryTyp root 
\gENG flip 
\gSPN voltear 
\e *ami 
\c V2 
\mp +FinalI 
\ach ami 
\akh ami 
\acl ami +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ame +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ami +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ame +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ami</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="25382909-4325-49d2-8295-22e02f377ddc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">togushyacu; togushyaca</AUni> -<AUni ws="qvm-x-acl">togushyacu; togushyaco; togushyaca</AUni> -<AUni ws="qvm-x-akh">toqushyaku; toqushyaka</AUni> -<AUni ws="qvm-x-akl">toqushyaku; toqushyako; toqushyaka</AUni> -<AUni ws="qvm-x-ame">tuqushyaku; tuqushyaka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tuqushyakU</AUni> -<AUni ws="qvm-x-acl">*tuqushyakU</AUni> -<AUni ws="qvm-x-akh">*tuqushyakU</AUni> -<AUni ws="qvm-x-akl">*tuqushyakU</AUni> -<AUni ws="qvm-x-ame">*tuqushyakU</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.27" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ef632957-0863-4481-987c-e017810c8aad" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tuqushyakU</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5b416b99-469b-4c18-af5d-9b3303ea1a44" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="56ffe9b0-dd1b-4ceb-9f8b-a1ad4bab7d64" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tuqushyakU 
\entryTyp root 
\gENG get.toqosh 
\gSPN recoger.tocosh 
\e *tuqushyakU 
\c V1 
\mp PMlowered 
\ach togushyacu 
\ach togushyaca morphlowered 
\akh toqushyaku 
\akh toqushyaka morphlowered 
\acl togushyacu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl togushyaco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl togushyaca morphlowered 
\akl toqushyaku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl toqushyako +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl toqushyaka morphlowered 
\ame tuqushyaku 
\ame tuqushyaka morphlowered</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="253a61b8-e47b-4548-ba6f-a9005d516fee"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">experiencia</AUni> -<AUni ws="qvm-x-acl">experiencia</AUni> -<AUni ws="qvm-x-akh">experiencia</AUni> -<AUni ws="qvm-x-akl">experiencia</AUni> -<AUni ws="qvm-x-ame">experiencia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+experiencia</AUni> -<AUni ws="qvm-x-acl">+experiencia</AUni> -<AUni ws="qvm-x-akh">+experiencia</AUni> -<AUni ws="qvm-x-akl">+experiencia</AUni> -<AUni ws="qvm-x-ame">+experiencia</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.526" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="01da34fd-33e1-4ac8-9606-f5ebb91ea37d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+experiencia</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c4f37edd-43f4-48a3-ab0a-c6b5c137093f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a87beacd-074d-4d28-8891-83240a67eafd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +experiencia 
\entryTyp root 
\gENG 
\gSPN 
\e +experiencia 
\c N0 
\ach experiencia 
\akh experiencia 
\acl experiencia 
\akl experiencia 
\ame experiencia 
\i 1KI 3.7 Rey caycarpis nogaga mözularag captë manami experienciä canragtsu.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="253dac9b-8a56-4b3e-9a93-cd70379841be" ownerguid="2bdfe506-0a28-45bd-81e1-44dcedcc262a"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="253e0282-d9bd-447b-ad0d-8195f9f9fa08" ownerguid="d8dd9aea-ceb9-44e3-8758-97d435c730c3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="254013ed-578a-4494-9f16-c9f53b2fd949" ownerguid="70e1006e-2895-4a9e-b2a7-a0816d7ef2ba"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">MAT 13.30 Cosëchachönami achoqkunata kaynoq nishaq: <Puntata ballicuta shuntarkur wankupäkuy rupatsinantsipaq. Trïguta itsanqa shuntarkur taqëman churapäkuy.></Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="2540ea13-279e-4bac-9951-8acdd2159eb2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ce:na</AUni> -<AUni ws="qvm-x-acl">ce:na</AUni> -<AUni ws="qvm-x-akh">ce:na</AUni> -<AUni ws="qvm-x-akl">ce:na</AUni> -<AUni ws="qvm-x-ame">ce:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cenar</AUni> -<AUni ws="qvm-x-acl">+cenar</AUni> -<AUni ws="qvm-x-akh">+cenar</AUni> -<AUni ws="qvm-x-akl">+cenar</AUni> -<AUni ws="qvm-x-ame">+cenar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.102" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="481d20bb-a0c0-4230-8c0c-9abac00a9937" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cenar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="05c3a652-52b3-4915-acb1-7aa67ea6fa32" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7b023dc2-a59b-4052-b287-0a7e02238056" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cenar 
\entryTyp root 
\gENG sup 
\gSPN cenar 
\e +cenar 
\c V1 
\ach ce:na 
\akh ce:na 
\acl ce:na 
\akl ce:na 
\ame ce:na</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="2541515b-c9ae-4d6a-8e92-dac25e7f4608"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Tsurinkunapa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="2541b188-5bc6-497e-b9c7-e9426ef282b0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">muyru</AUni> -<AUni ws="qvm-x-acl">muyru; muyru; muyro</AUni> -<AUni ws="qvm-x-akh">muyru</AUni> -<AUni ws="qvm-x-akl">muyru; muyru; muyro</AUni> -<AUni ws="qvm-x-ame">muyru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*muyru</AUni> -<AUni ws="qvm-x-acl">*muyru</AUni> -<AUni ws="qvm-x-akh">*muyru</AUni> -<AUni ws="qvm-x-akl">*muyru</AUni> -<AUni ws="qvm-x-ame">*muyru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.527" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9b3d4dd9-5ad0-4a3a-9d9a-ff91892bca83" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*muyru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6aaec51e-6b0f-463e-b25c-b8c8aaa1b5b1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="962a9df9-ea6d-453e-9fc4-b292eb3f09cc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *muyru 
\entryTyp root 
\gENG round 
\gSPN redondo 
\e *muyru 
\c N0 
\ach muyru 
\akh muyru 
\acl muyru / _# 
\acl muyru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl muyro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl muyru / _# 
\akl muyru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl muyro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame muyru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="254710be-4fff-440e-beab-142d24b1f8c5" ownerguid="fe58ae61-ab0b-43a4-86fb-d9aedd199932"> -<ExampleWords> -<AUni ws="en">do not mix, incompatible, do not go well together</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to different things that do not mix well with each other?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="25473cff-26f2-435b-a571-f0d79fbf9108" ownerguid="d22b41bd-20ca-4e70-b7ed-90f4460a44dc" /> -<rt class="WfiMorphBundle" guid="254b8872-916d-4081-883b-0e879f6bf0fe" ownerguid="cbb679d3-ae6f-497e-b7d3-16b5a16a0730"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ta</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ta</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ta</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ta</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ta</Run> -</AStr> -</Form> -<Morph> -<objsur guid="4f3f1430-f126-405a-98a8-5d0b732eb948" t="r" /> -</Morph> -<Msa> -<objsur guid="eac932ef-fd79-454b-b2f7-95e85dbb829a" t="r" /> -</Msa> -<Sense> -<objsur guid="043eec5a-5d9b-4292-877e-68d1d35e7f30" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="254cbce1-b870-4058-af1f-d4c53eb12859" ownerguid="6f011005-9763-4284-9571-90529febecf7"> -<Definition> -<AStr ws="en"> -<Run ws="en">first person possessive</Run> -</AStr> -<AStr ws="es"> -<Run ws="es">primera persona posesiva</Run> -</AStr> -</Definition> -<Gloss> -<AUni ws="en">1P</AUni> -<AUni ws="es">1P</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e08edebb-ad33-475b-bbae-8a45668c8c12" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="254d6a4d-3676-456a-8d48-c0904c9ef660" ownerguid="a33fc8bd-1004-451d-a46a-2476025fc95b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="254e1ce7-5846-4d4d-900f-a676ccceacce"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cutu</AUni> -<AUni ws="qvm-x-acl">cutu; cutu; cuto</AUni> -<AUni ws="qvm-x-akh">kutu</AUni> -<AUni ws="qvm-x-akl">kutu; kutu; kuto</AUni> -<AUni ws="qvm-x-ame">kutu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kutu.n</AUni> -<AUni ws="qvm-x-acl">*kutu.n</AUni> -<AUni ws="qvm-x-akh">*kutu.n</AUni> -<AUni ws="qvm-x-akl">*kutu.n</AUni> -<AUni ws="qvm-x-ame">*kutu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.33" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="739cc7ce-812c-4084-a995-7f2ac03012cc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kutu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5c6b604e-93ef-44ce-900a-ba1fae187d0e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="79eb933b-13d5-49f5-ba45-bffc520b1df8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kutu.n 
\entryTyp root 
\gENG 
\gSPN cortado 
\e *kutu.n 
\c N0 
\ach cutu 
\akh kutu 
\acl cutu / _# 
\acl cutu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cuto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kutu / _# 
\akl kutu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kuto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kutu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="254ea2ee-073c-46a2-9b3a-1d171d0e61e1" ownerguid="fb0abeda-0de3-4220-9907-01539104d9dd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sacristan</AUni> -<AUni ws="es">saristán</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="040f2271-3921-45af-9f35-af1350673443" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="2552ab27-56ff-4eca-8ac4-8796f68a5d71" ownerguid="5557909e-dd68-490a-8495-66bc75256739"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="2553a4c6-6557-4000-835e-6f721ac16c8d" ownerguid="099d9539-baa5-4a7a-86b1-ebc30409efd7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="255583c5-e554-48a3-a99b-894b7e76c532"> -<Analyses> -<objsur guid="829086bb-82c7-4342-87aa-2bc3308b84da" t="o" /> -</Analyses> -<Checksum val="-2063727850" /> -<Form> -<AUni ws="qvm-x-akh">vïdan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="255a117e-3b81-489e-8b04-cffaabc7bd3f" ownerguid="2629943b-3a69-4c6b-9956-2aa59ebd03d3"> -<ExampleWords> -<AUni ws="en">historian, archaeologist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who studies history?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="255b72c9-c48d-4a94-af5b-fdb5a053a3f9" ownerguid="22439507-37c3-4c61-b620-2e5e1cdd0319"> -<Form> -<AUni ws="qvm-x-ach">tibiu; tibio</AUni> -<AUni ws="qvm-x-acl">tibiu; tibiu; tibio</AUni> -<AUni ws="qvm-x-akh">tibiu; tibio</AUni> -<AUni ws="qvm-x-akl">tibiu; tibiu; tibio</AUni> -<AUni ws="qvm-x-ame">tibiu; tibio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="255d8a4d-c89b-4b37-9d84-d18b57fcfa03" ownerguid="3013df2e-80a3-49c0-a77e-991532b8bfeb"> -<Form> -<AUni ws="qvm-x-ach">peru</AUni> -<AUni ws="qvm-x-acl">peru</AUni> -<AUni ws="qvm-x-akh">peru</AUni> -<AUni ws="qvm-x-akl">peru</AUni> -<AUni ws="qvm-x-ame">peru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="255ee357-81e5-4816-ad43-e4bc1cf3725b" ownerguid="e2d1467c-2610-4296-870b-873d92cc8f19"> -<Form> -<AUni ws="qvm-x-ach">shama</AUni> -<AUni ws="qvm-x-acl">shama</AUni> -<AUni ws="qvm-x-akh">shama</AUni> -<AUni ws="qvm-x-akl">shama</AUni> -<AUni ws="qvm-x-ame">shama</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="25617a8f-7b8a-49c0-8fa9-fd7e83bb5efb" ownerguid="d7455e4a-a06d-483c-9810-623aba9b634a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="3f9e53d3-f836-4ee3-8953-24000f6acf9e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="25620a19-79d9-49c2-9f0b-1bf097925836" ownerguid="32fc19fd-a04e-4b69-9442-f7d57348ec55"> -<ExampleWords> -<AUni ws="en">udder</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What are the parts of a cow?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="256324eb-cbdd-4ae7-9fdd-a0445c8787d9" ownerguid="cb99a086-8c6d-4f90-81db-6afa69ae5455"> -<ExampleWords> -<AUni ws="en">splash</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What sounds do fish make?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="25651c34-3e31-419d-86b5-cda6907f0a4f"> -<Form> -<Str> -<Run ws="qvm-x-akh"><</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="25676eb6-f325-49d5-8b5e-63a3a6ed11df" ownerguid="15fb022e-1b45-41e9-bd8a-09ddc9dc6acd"> -<ExampleWords> -<AUni ws="en">determined, aspire, be intent on, be set on, set your mind on, be resolved, mean business, purposefully, tenacious, put yourself into</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being determined to do something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2571158c-4f30-4f33-b282-f285466940d2" ownerguid="44d51316-1085-4051-a5b8-9f52bb62d819"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hard</AUni> -<AUni ws="es">duro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1b344699-4572-41bb-99c6-18a418329529" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="2571230e-ed34-4688-a534-f1f05548422b" ownerguid="82e1df69-8c52-4ae1-ab94-efaf11bc9086"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lay.on.side</AUni> -<AUni ws="es">acostarse.por.costado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dfce98a5-c7da-4cd4-b86f-fc6b163b929b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="2574c8e7-7940-4952-b911-9e5ee9f63015"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">li</AUni> -<AUni ws="qvm-x-acl">li; li; le</AUni> -<AUni ws="qvm-x-akh">li</AUni> -<AUni ws="qvm-x-akl">li; li; le</AUni> -<AUni ws="qvm-x-ame">li</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.508" /> -<DateModified val="2022-10-15 16:14:46.204" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="66271d47-34ad-4f67-917e-5a1f15d14a14" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">DO2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="78ef9b8e-8c76-4a50-bf41-d7eda1077fdf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a6c8ff0d-0def-4e2d-8457-c62751f760b2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx DO2 
\entryTyp suffix 
\gENG DO2 
\gSPN HACER2 
\e DO2 
\c N0/V1 
\o 020 
\mp +FinalI 
\ach li 
\akh li 
\acl li / _# 
\acl li +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl le +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl li / _# 
\akl li +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl le +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame li 
\mcc DO2 / INF.noI ~_</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="25763563-5ad6-4b4d-9073-3fc88f6dd44e" ownerguid="bfeba2a4-4479-49e9-838c-3baa2ad0fcae"> -<Abbreviation> -<AUni ws="en">8.3.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.619" /> -<DateModified val="2022-9-23 16:55:8.619" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the nature of character of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>58A Nature, Character; 58C Basic Principles or Features Defining the Nature of Something</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Nature, character</AUni> -</Name> -<Questions> -<objsur guid="4541b9e1-d334-411d-9bd7-ec9171075312" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoInflAffixSlot" guid="257de7fb-dab6-4b87-848b-3fbb8f5c3e04" ownerguid="86ff66f6-0774-407a-a0dc-3eeaf873daf7"> -<Name> -<AUni ws="en">subject</AUni> -</Name> -<Optional val="False" /> -</rt> -<rt class="CmDomainQ" guid="257f2775-e170-4f95-a13f-39e9030c500f" ownerguid="e5020b79-6fb0-4be4-a359-d4f899da5c7e"> -<ExampleWords> -<AUni ws="en">quarrel (v), altercate, argue, bicker, clash, contend with, differ, disagree, dispute (v), dissent, feud (v), fight (v), quibble, row (v), scrap, squabble (v), wrangle (v), find fault with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to quarreling?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="257f89b1-55c9-42bd-88f2-f35b829a7a66" ownerguid="880d12b1-fa64-4a4b-801d-c3b45f43792f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">student</AUni> -<AUni ws="es">alumno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1946d320-2b71-4ea6-99c2-b26c655a4ef4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="257fff26-7818-41f5-908d-8ce7059a0d6b" ownerguid="2a62f8e4-7da3-4f37-bf44-e24033c99c00"> -<ExampleWords> -<AUni ws="en">angry, furious, stormy, heated, furor, uproar, feelings run high</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words describe something said or done in an angry manner?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="25808cfb-f179-4b90-be9d-c3e46ef10aa2" ownerguid="adde4a66-9040-47a9-91ab-327934a2e97e"> -<ExampleWords> -<AUni ws="en">wood, sawdust, shavings, chips</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What materials does a carpenter work with?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="258487b4-40f3-422b-891c-dfe8878194f9" ownerguid="fafe2d9f-e8c3-48b4-9aa9-d05ab9460952"> -<Form> -<AUni ws="qvm-x-ach">perdi</AUni> -<AUni ws="qvm-x-acl">perdi; perde</AUni> -<AUni ws="qvm-x-akh">perdi</AUni> -<AUni ws="qvm-x-akl">perdi; perde</AUni> -<AUni ws="qvm-x-ame">perdi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="25860479-cf94-4e82-a8e9-6e27a33ff16a" ownerguid="dfe59469-d1bf-4ed2-9faa-6d5af52eefdd"> -<ExampleWords> -<AUni ws="en">fill, choke, clog, deluge, drench, flood, inundate, plug, saturate, soak</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to filling something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="258705fa-c65b-49c7-92c3-52ed91af6f2f" ownerguid="647603c2-6f32-48f3-91fa-1f7f0e44b539"> -<ExampleWords> -<AUni ws="en">pour, come out, flow, drip, leak, ooze, gush, spurt, squirt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to water coming out of something?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="258864e5-cd2f-4494-827e-b4bfe8140288" ownerguid="89e74a22-861c-4358-9402-d95b9b33a18f"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="676b32a3-2e5f-42cc-af47-3c3bc6e003d2" t="o" /> -<objsur guid="0f7978d4-e3c5-4861-af2d-60952cac64c6" t="o" /> -<objsur guid="3c0850d0-c78e-4db8-a80f-67e08c090862" t="o" /> -<objsur guid="b6eb8ae9-1fd3-481a-83bf-31e911c487f1" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="25890ad1-d967-438f-ae4d-36f3adf63e94" ownerguid="d585e706-3cf6-472f-9ede-de024a7d488f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="258a4628-53bf-4914-b378-363e78f7b7d2" ownerguid="84a414bb-8b0a-4d50-a453-ac463e0aaa61"> -<Form> -<AUni ws="qvm-x-ach">cospiadöra</AUni> -<AUni ws="qvm-x-acl">cospiadöra</AUni> -<AUni ws="qvm-x-akh">cospiadöra</AUni> -<AUni ws="qvm-x-akl">cospiadöra</AUni> -<AUni ws="qvm-x-ame">cospiadöra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="258b076d-f0ff-47e4-9eea-4ed827393955" ownerguid="dd3f680d-05ef-400e-bb4f-9cf66074bb0a"> -<Form> -<AUni ws="qvm-x-ach">sapiri</AUni> -<AUni ws="qvm-x-acl">sapiri; sapire</AUni> -<AUni ws="qvm-x-akh">sapiri</AUni> -<AUni ws="qvm-x-akl">sapiri; sapire</AUni> -<AUni ws="qvm-x-ame">sapiri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="258cdec3-1c28-4451-8fac-7b2332849291" ownerguid="f3d162d7-da79-4ce4-9610-040f03b57d9d"> -<ExampleWords> -<AUni ws="en">be premature</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to giving birth early?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="258fb850-872b-4a2d-99da-d7eb93cd9761" ownerguid="5257eee1-d68f-4d7f-b0f0-f99cbb91e396"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="f90ce2cb-53eb-4dd6-9a7d-722e3accb11c" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="a2b740a2-98ce-4275-8bf1-9ef98a873036" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="25913107-8071-40ec-a5b6-cd9fcf0185eb" ownerguid="3aee5038-949e-45a4-aed6-243ca71ce366"> -<Form> -<AUni ws="qvm-x-ach">tienda</AUni> -<AUni ws="qvm-x-acl">tienda</AUni> -<AUni ws="qvm-x-akh">tienda</AUni> -<AUni ws="qvm-x-akl">tienda</AUni> -<AUni ws="qvm-x-ame">tienda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="2591e110-4e99-42bc-bfc9-1a2b22e068d6" ownerguid="374811b2-b918-47ad-b4b6-20a055c01a26"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">g</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">g</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">q</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">q</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">q</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2077e726-cf37-4913-b54c-2d034d4883b4" t="r" /> -</Morph> -<Msa> -<objsur guid="cc4f521e-5e38-4217-aa16-46da99d423ec" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="2593d643-e4fd-47e0-9bb9-0afb58c1ef44" ownerguid="97219600-e2ec-4d68-972c-9745588cf2f7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="2594fe01-4d20-4a20-b093-2df70bced18f" ownerguid="080bf07b-e58b-4a75-bb97-84d980a143f0"> -<Abbreviation> -<AUni ws="en">8.3.1.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.609" /> -<DateModified val="2022-9-23 16:55:8.609" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to stretching something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Stretch</AUni> -</Name> -<Questions> -<objsur guid="772bc31f-26f9-47cc-9edd-467ed3d9c1f2" t="o" /> -<objsur guid="349094ad-c941-4396-be13-88edf6565d94" t="o" /> -<objsur guid="d9af1cb4-a20d-4891-8893-5d4e6effea28" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="25955a98-54ba-42ea-b749-4c31733fcb37" ownerguid="d74f70b2-d286-473a-8d89-933a142093e9"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Gen 35.2 Nircurna purificacushpayqui röpayquita trucacäriy.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="2595b261-8812-4849-9c4f-c1c23e5754ba" ownerguid="67c0feb8-3f09-44d7-b596-a15b2b2c7cd2"> -<Form> -<AUni ws="qvm-x-ach">presenta</AUni> -<AUni ws="qvm-x-acl">presenta</AUni> -<AUni ws="qvm-x-akh">presenta</AUni> -<AUni ws="qvm-x-akl">presenta</AUni> -<AUni ws="qvm-x-ame">presenta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2598f457-b7cc-47f6-afd2-6de0b04c52c9" ownerguid="a764174f-ccb7-48b1-add7-158bc89a5e81"> -<ExampleWords> -<AUni ws="en">failure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to someone who has failed?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="2599002d-5b30-4994-a0aa-edb47fe042e8" ownerguid="12080e89-3e7a-4d80-8a3f-7ad3a8dc05b7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuti</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuti; cute</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuti</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuti; kute</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuti</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1ea93998-be9c-4ae6-b87a-1279a5c89619" t="r" /> -</Morph> -<Msa> -<objsur guid="35967ee3-872d-4b56-ae00-e643fda7e9f3" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="259a52eb-c1fd-499b-b4c4-e838f0eb5391" ownerguid="d2822a2f-3338-46d4-bf35-0917358ce611"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6fe49b5e-093a-457b-9f14-02b68e8cec63" t="r" /> -</Morph> -</rt> -<rt class="CmDomainQ" guid="259ba3a7-e3cd-49c5-99b5-18c5a8f94b5a" ownerguid="fd33670e-ef16-4566-a62e-aa077e58407b"> -<ExampleWords> -<AUni ws="en">discordant, bad, disharmony, racket, raucous, shrill, strident, grating</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a bad sound?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="259ea414-e90d-4089-84bc-422e5a73b272" ownerguid="0c1bcc98-9bc3-4da0-8eac-ff8a6eecbf84"> -<ExampleWords> -<AUni ws="en">blameless, inculpable, irreproachable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe someone who is not guilty?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="25a4ace8-a46e-47bb-9597-d055f72abf62" ownerguid="c27b87cf-1211-4df2-96b1-12c416edabbe"> -<ExampleWords> -<AUni ws="en">to joke, be witty, jest, crack a joke, make pun, to pun, make fun of, make sport of, retort, banter, kid, wisecrack, come back at, josh, clown</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words are used of joking?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="25a4ea55-4f95-4595-842c-6e4b093ce1c3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">estadiu; estadio</AUni> -<AUni ws="qvm-x-acl">estadiu; estadiu; estadio</AUni> -<AUni ws="qvm-x-akh">estadiu; estadio</AUni> -<AUni ws="qvm-x-akl">estadiu; estadiu; estadio</AUni> -<AUni ws="qvm-x-ame">estadiu; estadio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+estadio</AUni> -<AUni ws="qvm-x-acl">+estadio</AUni> -<AUni ws="qvm-x-akh">+estadio</AUni> -<AUni ws="qvm-x-akl">+estadio</AUni> -<AUni ws="qvm-x-ame">+estadio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.498" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7abdad1a-5fa0-4b69-846e-8958f4b02292" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+estadio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="44b6a572-4c4b-46ba-9c2d-29436f49b55c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ed5f696c-960d-4675-b476-b847310836a5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +estadio 
\entryTyp root 
\gENG stadium 
\gSPN estadio 
\e +estadio 
\c N0 
\ach estadiu / ~_# 
\ach estadio / _# 
\akh estadiu / ~_# 
\akh estadio / _# 
\acl estadiu / ~_# 
\acl estadiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl estadio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl estadiu / ~_# 
\akl estadiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl estadio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame estadiu / ~_# 
\ame estadio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="25a7db3b-dc79-4f75-8ecb-95a1cc1cc3a2" ownerguid="c2dbe83a-d638-45ac-a6d5-5f041b9dde71"> -<ExampleWords> -<AUni ws="en">disability, handicap (n), disfigurement, mutilation, paralysis, palsy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the condition of being disabled?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="25a9b015-aa73-4426-b7ce-256fa54c9ea9" ownerguid="333bdd9e-1ba6-4fe6-934f-676d7cc98bd6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rock</AUni> -<AUni ws="es">piedra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a79bbc0a-a7df-46d7-ba39-51473d2f3d92" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="25abad4d-8ebf-451a-907c-69b9392e5402" ownerguid="42be1634-72ca-4a20-80a1-ba726e5cd1d2"> -<ExampleWords> -<AUni ws="en">slice, cut once, cut in one movement</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to cutting something with one slice?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="25ac70e7-7886-4b90-81f7-79e087d01899"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wapya</AUni> -<AUni ws="qvm-x-acl">wapya</AUni> -<AUni ws="qvm-x-akh">wapya</AUni> -<AUni ws="qvm-x-akl">wapya</AUni> -<AUni ws="qvm-x-ame">wapya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wapya</AUni> -<AUni ws="qvm-x-acl">*wapya</AUni> -<AUni ws="qvm-x-akh">*wapya</AUni> -<AUni ws="qvm-x-akl">*wapya</AUni> -<AUni ws="qvm-x-ame">*wapya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.495" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b98dc2d0-2622-4cfa-a26e-8e9ffea433fd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wapya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8ebf7180-b50c-4891-a1c1-c04f0779eabb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ddb7dde0-4b6b-4c36-8461-8fcdad18f09b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wapya 
\entryTyp root 
\gENG 
\gSPN sacudir 
\e *wapya 
\c V2 
\ach wapya 
\akh wapya 
\acl wapya 
\akl wapya 
\ame wapya</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="25ad259c-fe3d-42b1-83d8-5e5c9faa4c05" ownerguid="126e199f-69cc-4e72-bcf1-5417cc9e38fa"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="25ad985f-7f1a-489e-85a5-1758b55fc419" ownerguid="9e1b0f9f-a2f0-4e31-9507-ff06bc4526de"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="25afd740-7b76-43bb-b42b-586e35f0a334" ownerguid="efef45bd-26be-46f8-b85b-424be55bcdac"> -<ExampleWords> -<AUni ws="en">new, brand new, recent, latest, be just out, be hot off the press</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that has been sold for only a short time?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="25b13d90-d919-4746-b212-c25403ea925b" ownerguid="7496cea3-d239-4a1e-9121-cdbf98e3a4e9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">long.live</AUni> -<AUni ws="es">viva</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3401c4bc-5366-4547-9686-9d2727c0d8b0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="25b1d7fe-8d8a-4651-bab0-f285a39c87b4" ownerguid="eef8c50e-c391-482c-9f60-1bba2d8892b3"> -<ExampleWords> -<AUni ws="en">broadcast</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to making programs?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="25b7151f-6b51-4df3-aecc-0082bdee8830" ownerguid="a0767a55-ff99-4eba-adbd-be135e932a79"> -<Form> -<AUni ws="qvm-x-ach">ricäri; ricära</AUni> -<AUni ws="qvm-x-acl">ricäri; ricäre; ricära</AUni> -<AUni ws="qvm-x-akh">rikäri; rikära</AUni> -<AUni ws="qvm-x-akl">rikäri; rikäre; rikära</AUni> -<AUni ws="qvm-x-ame">rikäri; rikära</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="25b7a2c5-a7fe-476c-b14e-a9e6612ef249" ownerguid="4c61a088-d8d6-43cb-b2ac-a3e9cedd6a35"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="25b987bd-0116-4a0a-83e7-aeee603226ab" ownerguid="efef45bd-26be-46f8-b85b-424be55bcdac"> -<ExampleWords> -<AUni ws="en">new, newfound</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe an experience or feeling that you have never had before?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="25ba9a8c-70a1-4d45-afa3-e5e9c18dfa2d" ownerguid="0b48bd1c-e9e7-40e9-9181-3d0bc411185a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="25be9247-4a35-471f-8701-02f4e3de4257" ownerguid="469b0a30-3c26-4cfd-b948-7bb952eeff41"> -<ExampleWords> -<AUni ws="en">know someone's name, know of someone, have heard the name, have heard of someone, have heard about someone</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to knowing about someone, whom you have not met?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="25bf6690-6ed1-42e9-8a4a-3518f9cf382c" ownerguid="7556a257-3703-40d3-91d3-c891fb250947"> -<Abbreviation> -<AUni ws="en">4.9.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.294" /> -<DateModified val="2022-9-23 16:55:8.294" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to theology--the study of God and what people believe about God.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Theology</AUni> -</Name> -<OcmCodes> -<Uni>779 Theological Systems; 770 Religious Beliefs; 772 Cosmology; 773 Mythology; 774 Animism; 775 Eschatology</Uni> -</OcmCodes> -<Questions> -<objsur guid="916e8b1e-6e08-44a1-b0b5-faeb5dbf7a3d" t="o" /> -<objsur guid="c129b7c5-f71e-4bbb-a6cb-b36d028e2298" t="o" /> -<objsur guid="35c6387b-2fbd-418c-bdb5-6b4b72bca235" t="o" /> -<objsur guid="c1bd14f5-a2c4-4a87-b4dd-7f8f9cbc40fc" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="e9fdc131-addb-4db6-8f79-ae0044e1eb81" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="25bff852-eb02-44d5-9869-68aa20f2266a" ownerguid="eb7d0129-e073-421c-bcd7-43bef6f3bf54"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="25c0c9cb-493f-4a50-8531-6cf1bc88f3c7" ownerguid="31debfe3-91da-4588-b433-21b0e14a101b"> -<ExampleWords> -<AUni ws="en">center line, shoulder, edge, median, lane, passing lane, bed, roadbed, surface, pavement, sidewalk, curb</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What are the parts of a road?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="25c44aac-17ee-4c31-97f9-c3b3dab9343b" ownerguid="93c0134f-6930-499b-bb0c-e306b0af173f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">turkey.buzzard</AUni> -<AUni ws="es">gallinazo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="203661a9-d64d-4d00-8c95-a72b8debc86b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="25c44b44-468a-41e6-ade6-47c9a978a21f" ownerguid="83f04eb9-bcd2-4636-bc78-5fcc0bcf6c10"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="25c7ad48-2052-44fb-8ba6-2b3b7f32254f" ownerguid="c73f868b-a74a-4b28-ac3b-e09ffbe90b67"> -<Form> -<AUni ws="qvm-x-ach">tsimpa</AUni> -<AUni ws="qvm-x-acl">tsimpa</AUni> -<AUni ws="qvm-x-akh">tsimpa</AUni> -<AUni ws="qvm-x-akl">tsimpa</AUni> -<AUni ws="qvm-x-ame">tsimpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StStyle" guid="25d17a96-4130-49c5-8f2b-497c1953556a" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="14" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Reversal-Headword</Uni> -</Name> -<Rules> -<Prop bold="invert"></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<Usage> -<AUni ws="en">Used for the reversal form at the start of a reversal entry.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="MoStemMsa" guid="25d3c844-a553-42fd-91ab-d92903ef1475" ownerguid="b52db03e-dd96-46e2-a33a-7bb17cea373c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="25d414eb-329b-478b-96de-ce9cb7d15e5c" ownerguid="b16de6a0-71dd-448c-9ffa-49f6646a5219"> -<ExampleWords> -<AUni ws="en">speed up, put on a spurt, kick</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to running faster?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="25d86a39-903d-418d-be1a-cd13a0d2c924" ownerguid="1d4b0243-6c26-4d0e-9975-bd51a7687f51"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">leave</AUni> -<AUni ws="es">dejar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="55bc7319-cf62-4987-b89d-dfb9595289c3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="25da20bf-f0ad-46d9-9701-645654d31ba9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tro:paza</AUni> -<AUni ws="qvm-x-acl">tro:paza</AUni> -<AUni ws="qvm-x-akh">tro:paza</AUni> -<AUni ws="qvm-x-akl">tro:paza</AUni> -<AUni ws="qvm-x-ame">tro:paza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tropazar</AUni> -<AUni ws="qvm-x-acl">+tropazar</AUni> -<AUni ws="qvm-x-akh">+tropazar</AUni> -<AUni ws="qvm-x-akl">+tropazar</AUni> -<AUni ws="qvm-x-ame">+tropazar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.149" /> -<DateModified val="2022-10-10 21:18:47.207" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a36cc8f6-df92-49b5-8b43-30cdb83d0424" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tropazar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f6f20032-d75f-4337-b72b-ee6d4b014e77" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c8abe9ee-d9b9-4534-84cb-70161ccb093e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tropazar 
\entryTyp root 
\gENG 
\gSPN 
\e +tropazar 
\c V1 
\ach tro:paza 
\akh tro:paza 
\acl tro:paza 
\akl tro:paza 
\ame tro:paza 
\i PSA 86.14 Wanutsicogcunaga tröpazacarcurmi wanutsimayta munarcaycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="25dbe766-6fb3-48a4-b82a-862169ec4c70" ownerguid="1f2173bf-8e27-4cb2-a28a-2ec98728541d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="r" /> -</Morph> -</rt> -<rt class="MoStemAllomorph" guid="25e02713-755b-4a8c-8cc9-66a8f122f06c" ownerguid="fecba2a8-a385-4a36-94e2-4003b2d1e0d2"> -<Form> -<AUni ws="qvm-x-ach">ñätu</AUni> -<AUni ws="qvm-x-acl">ñätu; ñätu; ñäto</AUni> -<AUni ws="qvm-x-akh">ñätu</AUni> -<AUni ws="qvm-x-akl">ñätu; ñätu; ñäto</AUni> -<AUni ws="qvm-x-ame">ñätu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="25e455c0-9dca-4d83-a299-85b2c467cc1c" ownerguid="ba1e8d2b-7d3e-4b65-a9be-ee1a4063c796"> -<ExampleWords> -<AUni ws="en">worry someone, alarm (v), bother, concern (v), cause someone concern, disturb, trouble (v), bother, prey on your mind, cause concern, be a cause for concern, weigh on your mind, disquiet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to causing someone to feel worried?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="25e619ec-517f-4150-9022-3a7282598f0c" ownerguid="768aed05-dbc9-4caf-9461-76cb3720f908"> -<ExampleWords> -<AUni ws="en">cry out, scream, howl, yell, shriek, groan, moan, weep</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words refer to making noise because you are in pain?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="25e7fa93-5a87-4855-8bc8-637ff26ca3e0" ownerguid="4e2ab412-6bb4-411d-ae7e-70062b3c7375"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">garga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">garga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qarqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qarqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qarqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e9154280-f82e-445f-8700-b610d772df34" t="r" /> -</Morph> -<Msa> -<objsur guid="c7dbec8d-838d-4a92-a15b-4f3d5b563513" t="r" /> -</Msa> -<Sense> -<objsur guid="85c9f7db-4fd1-4d3d-80fd-9e0c1d3b8a91" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="25ebdecb-daaa-463f-a406-b4860802239b" ownerguid="6cd3e32f-db84-4c8f-9d97-02f8c3fdd8eb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="25ec62f6-7052-4b61-b565-6e0ba26698dc" ownerguid="3fdba5e5-eb24-4b2f-a6fc-d1ed7397c39c"> -<ExampleWords> -<AUni ws="en">public school, state school, private school, boarding school, co-educational, comprehensive school, religious school, seminary, academy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a special kind of school?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="25ecb154-9454-4f3f-ba75-a1f67295e56c" ownerguid="afe7cc92-e0ad-40d9-be56-aa12d2693a3f"> -<ExampleWords> -<AUni ws="en">day (as opposed to night), during the day, daytime, daylight, daylight hours</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words are used for the period of time when the sun is shining?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="25eebad7-78c3-43d5-bf7c-5f1b5bb502b6" ownerguid="15053303-517a-48dc-a531-c25048e71bf2"> -<Form> -<AUni ws="qvm-x-ach">regala</AUni> -<AUni ws="qvm-x-acl">regala</AUni> -<AUni ws="qvm-x-akh">regala</AUni> -<AUni ws="qvm-x-akl">regala</AUni> -<AUni ws="qvm-x-ame">regala</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="25f08c63-8cb0-4d97-b425-7b7ed2e8d7c3" ownerguid="8bce78d1-5783-4ceb-b63d-faaf55ca4876"> -<Form> -<AUni ws="qvm-x-ach">profetïsa</AUni> -<AUni ws="qvm-x-acl">profetïsa</AUni> -<AUni ws="qvm-x-akh">profetïsa</AUni> -<AUni ws="qvm-x-akl">profetïsa</AUni> -<AUni ws="qvm-x-ame">profetïsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="25f6e4b7-d0ff-46a3-ba0e-899ea9e9cf90" ownerguid="edaf912c-12f2-463d-b1e3-9a2702f05927"> -<Form> -<AUni ws="qvm-x-ach">caldu</AUni> -<AUni ws="qvm-x-acl">caldu; caldo</AUni> -<AUni ws="qvm-x-akh">caldu</AUni> -<AUni ws="qvm-x-akl">caldu; caldo</AUni> -<AUni ws="qvm-x-ame">caldu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="25f86535-2f0f-4abe-87f6-f00774bd7968" ownerguid="423e06e6-9950-435b-8597-ec5aac3a3f31"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="25f93a53-4316-41b6-8c9a-89f21d27cc82" ownerguid="f70de4ff-24a1-4678-a339-a1f2f8145aba"> -<Form> -<AUni ws="qvm-x-ach">libra</AUni> -<AUni ws="qvm-x-acl">libra</AUni> -<AUni ws="qvm-x-akh">libra</AUni> -<AUni ws="qvm-x-akl">libra</AUni> -<AUni ws="qvm-x-ame">libra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="Segment" guid="25f97d8a-1620-43de-82d7-bfc1c51a691d" ownerguid="80ba0bb2-721e-4f64-9a7e-6cdb72125cf0"> -<Analyses> -<objsur guid="55d75f66-810f-4a08-8eb0-fa7078873979" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="CmDomainQ" guid="25fadb18-9465-4539-b2c8-04891f39458b" ownerguid="16081dd6-72e5-4826-b86d-958dd82a01c0"> -<ExampleWords> -<AUni ws="en">move down, go down, lower oneself, climb down, jump down, descend, descent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving down slowly or purposefully?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="25fda56f-f556-498e-929e-82f255c12692" ownerguid="e033ca92-ee8c-4ab9-9368-5f6f4e942987"> -<ExampleWords> -<AUni ws="en">communication, contact</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the process by which people contact each other?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="25fe4b71-1d9f-41a1-905f-67e217815534" ownerguid="d853597b-f3ed-470b-b6dd-8fe93b8e43eb"> -<ExampleWords> -<AUni ws="en">whisper (n), murmur, rustle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a quiet sound?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="25feced8-28d4-4fba-aca2-25cc8a3f7d1a"> -<Analyses> -<objsur guid="74778ce4-f823-4579-96fa-7ed43eedd31e" t="o" /> -</Analyses> -<Checksum val="-1515143429" /> -<Form> -<AUni ws="qvm-x-akh">aywan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="25ffde00-613c-4a30-b135-c85cad8f15f4" ownerguid="93489181-ad8c-4a18-8dbc-fd7a9c871126"> -<ExampleWords> -<AUni ws="en">bad-tempered, grumpy, grouchy, disagreeable, cantankerous, uptight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a person who is often bad-tempered?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="2608bcf8-ed20-4501-8510-4ecacf922dd4" ownerguid="7c80f6ee-e76d-4903-aee6-7a33d1da3f75"> -<Abbreviation> -<AUni ws="en">7.3.7.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to wrapping something--to cover something on all sides with something like leaves, cloth, or paper.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79Z Wrapped</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Wrap</AUni> -</Name> -<Questions> -<objsur guid="c3d6488d-a644-4b91-a777-9d83810fe93a" t="o" /> -<objsur guid="68ea6f20-8a18-420c-bb51-874b6afcabd1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="260b9a66-30e1-4d98-b9da-1fc9e3f1b5c0" ownerguid="ce499998-ef67-40df-bdce-53ec0a1e0875"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">crecer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3e7b8318-ca3f-4722-89a2-a2745aede60e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="260ed8be-5ad1-4916-81fe-1d67a91e0584" ownerguid="e5dc2a6b-4139-4762-a925-0d0ea22588ea"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tilted</AUni> -<AUni ws="es">ladeado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0e138b3b-71eb-4c5c-89b9-b9547279207b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="260fa75c-a744-4285-aa06-71499a63b3b9" ownerguid="9cfe4c5a-80d4-4b31-ba89-79b2e3d28a1c"> -<ExampleWords> -<AUni ws="en">finger, toe, digit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to the fingers and toes?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="26118801-f6b1-45e1-98ce-63ba59372032"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">calzonci:llu</AUni> -<AUni ws="qvm-x-acl">calzonci:llu; calzonci:llu; calzonci:llo</AUni> -<AUni ws="qvm-x-akh">calzonci:llu</AUni> -<AUni ws="qvm-x-akl">calzonci:llu; calzonci:llu; calzonci:llo</AUni> -<AUni ws="qvm-x-ame">calzonci:llu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+calzoncillo</AUni> -<AUni ws="qvm-x-acl">+calzoncillo</AUni> -<AUni ws="qvm-x-akh">+calzoncillo</AUni> -<AUni ws="qvm-x-akl">+calzoncillo</AUni> -<AUni ws="qvm-x-ame">+calzoncillo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.290" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ecffce63-6a38-4d7c-8f93-3066c447f642" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+calzoncillo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="777f8781-ca32-4368-8cf8-f1c09fa80aaf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ff5c0122-12ac-4dbe-9c15-5fdb108b690f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +calzoncillo 
\entryTyp root 
\gENG underwear 
\gSPN calzoncillo 
\e +calzoncillo 
\c N0 
\ach calzonci:llu 
\akh calzonci:llu 
\acl calzonci:llu / _# 
\acl calzonci:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl calzonci:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl calzonci:llu / _# 
\akl calzonci:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl calzonci:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame calzonci:llu 
\i Exo 28.42 Tsaynogpis lïnupita calzoncillunta tseglapita gonguryag ruratsipanqui pengayninta tsapananpag.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="2611b86e-0798-407a-9971-76ffc7ccbc1a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gara</AUni> -<AUni ws="qvm-x-acl">gara</AUni> -<AUni ws="qvm-x-akh">qara</AUni> -<AUni ws="qvm-x-akl">qara</AUni> -<AUni ws="qvm-x-ame">qara</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qara.v</AUni> -<AUni ws="qvm-x-acl">*qara.v</AUni> -<AUni ws="qvm-x-akh">*qara.v</AUni> -<AUni ws="qvm-x-akl">*qara.v</AUni> -<AUni ws="qvm-x-ame">*qara.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.111" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="729cc538-3438-455f-b5b9-702b39f9af7a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qara.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2c2114b5-b47c-4755-ac7a-f23e81f592a4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="97893091-7ac7-4c94-818a-551bf27bdeb4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qara.v 
\entryTyp root 
\gENG give 
\gSPN regalar 
\e *qara.v 
\c V2 
\ach gara 
\akh qara 
\acl gara 
\akl qara 
\ame qara 
\mcc *qara.v / ~_ PRT2 OBJ 3P</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="2615ce37-e5df-4fbd-999c-549afcb01b96" ownerguid="cdf94156-faa3-4909-82d8-70b8d42cd7bd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="26162987-9dac-4257-8ea6-42a4d8d85b0d" ownerguid="3ec9fbad-4bd2-48f5-b9d7-4ac32811986c" /> -<rt class="DsConstChart" guid="261a7061-3858-41a8-bfff-71af82d24306" ownerguid="c3fe8c1e-ea5e-11de-9e45-0013722f8dec"> -<BasedOn> -<objsur guid="7e7e7d3b-029c-417c-9339-ef58ebd0021e" t="r" /> -</BasedOn> -<DateCreated val="2022-10-20 18:41:20.562" /> -<DateModified val="2022-10-20 18:41:20.562" /> -<Template> -<objsur guid="c414012a-ea5e-11de-99fc-0013722f8dec" t="r" /> -</Template> -</rt> -<rt class="CmDomainQ" guid="261b1872-096d-45ac-a431-023dc24ce722" ownerguid="26fb2e94-b8fe-4216-9057-ca17a71df83b"> -<ExampleWords> -<AUni ws="en">relax someone, put someone at ease, make someone feel at home</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to causing someone to feel relaxed?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="261ba6d7-194b-4bac-b5bc-02c73b652d57" ownerguid="7c234ccc-0dbe-42b0-a377-db99ebd2b51e"> -<ExampleWords> -<AUni ws="en">herd, shoo away, scare off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to someone moving animals?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="261c2c22-0412-4c77-95c7-e95a5e63e674" ownerguid="0066f0f7-02dd-4f8e-afa5-59b8cb5a434a"> -<ExampleWords> -<AUni ws="en">blab, inform on, rat on, snitch, squeal, tattle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to telling secrets to an enemy?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="261e9c9f-fed5-4eaf-afa0-551d8db19a1a" ownerguid="a8b9e892-df3e-44c4-8c68-7a0f7f4468bb"> -<ExampleWords> -<AUni ws="en">hyrax, coney, dassie</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What species of hyrax are there?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="2621e605-3ecc-4f3d-b28c-f8c92b3c4584" ownerguid="ac9ee84f-f0c7-48b3-8e5a-b4c967112394"> -<Abbreviation> -<AUni ws="en">8.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.609" /> -<DateModified val="2022-9-23 16:55:8.609" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to the texture of something--how the surface of something feels when you touch it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Texture</AUni> -</Name> -<Questions> -<objsur guid="b1893c78-7d24-4e0b-96ee-c025b9760103" t="o" /> -<objsur guid="5a896721-cead-4f4e-a788-0bfd0cb13920" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="16ee1e09-27ad-48c5-aa07-6933ecbbc716" t="r" /> -<objsur guid="3f535689-944a-4e9c-8f64-ec6395b7c8d7" t="r" /> -<objsur guid="47f170eb-5f1d-49a5-85bb-240047f392c0" t="r" /> -<objsur guid="e43c9905-ae67-4627-8b10-bd7a453828b4" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="867f515b-ed0f-431e-a84a-6c562e1bdbb7" t="o" /> -<objsur guid="2e09535f-f61f-4ff5-8d56-23c2916cbb7f" t="o" /> -<objsur guid="313ca832-ce91-44c9-bb35-bd130c39d924" t="o" /> -<objsur guid="396a2a1b-832f-4180-b26a-c606550541d7" t="o" /> -<objsur guid="c8aea8b2-4088-4d20-a0d2-45c2ad974ee1" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="26221a7a-19fb-4e4e-a2c9-8c0dc9ae4281" ownerguid="b9395be6-f646-44d2-abbd-45b51e743f04"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="2622ad27-0e3a-4b12-a6c9-63dd3912d654" ownerguid="fa789ec1-b4d9-42cf-9adb-375c52d9ebc4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="26237de6-c73b-4adf-83e0-e94771b19c59" ownerguid="9c2d1f1d-81d4-4776-9be7-9fc5b920ca14"> -<Form> -<AUni ws="qvm-x-ach">isca</AUni> -<AUni ws="qvm-x-acl">isca</AUni> -<AUni ws="qvm-x-akh">iska</AUni> -<AUni ws="qvm-x-akl">iska</AUni> -<AUni ws="qvm-x-ame">iska</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="26238173-f407-4964-b7fe-c9ce0d73fbe1" ownerguid="f6567cc1-f3d8-46f1-b133-030b6b9a9417"> -<Form> -<AUni ws="qvm-x-ach">goyu; goyü</AUni> -<AUni ws="qvm-x-acl">goyö; goyu; goyo</AUni> -<AUni ws="qvm-x-akh">qoyu; qoyü</AUni> -<AUni ws="qvm-x-akl">qoyö; qoyu; qoyo</AUni> -<AUni ws="qvm-x-ame">quyu; quyü</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2624df91-cf04-4aa9-b841-520543c912fb" ownerguid="69d0a37d-f5b3-48a5-9486-5654d37b030b"> -<ExampleWords> -<AUni ws="en">mill (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What things are used to mill grain?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="26266f06-b9f6-4793-8351-876028722d27" ownerguid="0644f4da-c9fe-4239-bbe5-6efc85f98968"> -<ExampleWords> -<AUni ws="en">land use</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to working with land?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="2629943b-3a69-4c6b-9956-2aa59ebd03d3" ownerguid="3160b7ad-e4e8-4a46-8e2e-d5e601969547"> -<Abbreviation> -<AUni ws="en">3.5.4.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.174" /> -<DateModified val="2022-9-23 16:55:8.174" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to history.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">History</AUni> -</Name> -<OcmCodes> -<Uni>1210 Archaeological Excavation Methods; 1211 Dating Methods in Archaeology; 1212 Laboratory Analysis of Materials Other Than Dating Methods in Archaeology; 1213 Comparative Data [in Reconstructing History]; 129 Archaeological Survey Methods; 138 Post Depositional Processes in Archaeological Sites; 159 Life History Materials; 170 History and Culture Change; 171 Comparative Evidence; Distributional Evidence; 1710 Cultural Revitalization and Ethnogenesis; 172 Prehistory; Archaeology; 173 Traditional History; 174 Historical Reconstruction; 175 History; Recorded History; 176 Innovation; 177 Acculturation and Culture Contact; 178 Sociocultural Trends; 910 Archaeological Measures, Techniques and Analysis; 911 Chronologies and Cultural Sequences; 912 Cultural Stratigraphy; 913 Functional Specialization; 914 Typologies and Classification; 915 Archaeological Inventories</Uni> -</OcmCodes> -<Questions> -<objsur guid="fab1efde-edb6-4d91-a02c-372e8ac4dfde" t="o" /> -<objsur guid="a85ffffa-6255-4d26-bf93-b7683f201e02" t="o" /> -<objsur guid="255a117e-3b81-489e-8b04-cffaabc7bd3f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="262b992b-e981-4368-aae1-f1e5e7df4254" ownerguid="c85162f8-27f3-4a31-a25e-68333e91ee30"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="262bd36b-2cf5-4c6e-8ce4-d506498ef445" ownerguid="ce194a5d-5485-4804-9421-d3804cf31764"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StTxtPara" guid="262d0404-2451-40f9-b01e-e0190dd07374" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">yarparaykan. </Run> -<Run ws="en">\tr < V1 *yarpäv1 > DUR IMPFV 3</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="5f1bd9cb-5fb2-4ef2-be0e-82a6d4447a55" t="o" /> -<objsur guid="992184b1-c323-4c81-83f5-f48d2f7c9569" t="o" /> -</Segments> -</rt> -<rt class="CmDomainQ" guid="262d1248-9c84-4b7c-bad6-b35910f50d99" ownerguid="101c16f8-ec76-4ec7-895a-fd814fef51dd"> -<ExampleWords> -<AUni ws="en">prescribe, prescription</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to telling a sick person what to do in order to get well?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="262fc4ae-7735-465b-934b-2125d95de147" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<Abbreviation> -<AUni ws="en">3.4.2.1.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.143" /> -<DateModified val="2022-9-23 16:55:8.143" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling jealous--to feel bad when someone does well, has something good, receives something good, or something good happens to them, because you want what they have. Also use this domain for words for when a husband (or wife) is jealous because he thinks his wife loves someone else.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88V Envy, Jealousy</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Jealous</AUni> -</Name> -<Questions> -<objsur guid="116e2dd4-5010-4170-b40c-81e8a6efed96" t="o" /> -<objsur guid="21783234-94f7-4fed-a23f-23c511f7a84d" t="o" /> -<objsur guid="9e3b9734-d3aa-43e9-8ef5-e5680a379633" t="o" /> -<objsur guid="533fef7a-553e-4ca5-94bb-8c918746cd56" t="o" /> -<objsur guid="9e1883b1-c4b9-442a-be7d-3d48cbac2777" t="o" /> -<objsur guid="aa2b19eb-c7e5-4540-8092-45205607715f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="2634878b-1a46-4a48-9d37-3a50d6bb4fbf" ownerguid="6a14394b-49a2-467f-8513-cc4adb1b74c6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bad.man</AUni> -<AUni ws="es">hombre.fio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0fc1e85b-3e7a-4e48-bf1b-02b1f21d64ad" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2638b6ed-5379-4aec-9c90-3d2c349c02db" ownerguid="d63c5f73-85d8-4a05-bb72-8a88e2ef624a"> -<Form> -<AUni ws="qvm-x-ach">shinca</AUni> -<AUni ws="qvm-x-acl">shinca</AUni> -<AUni ws="qvm-x-akh">shinka</AUni> -<AUni ws="qvm-x-akl">shinka</AUni> -<AUni ws="qvm-x-ame">shinka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="26393290-fcaa-4b0d-9b9b-47ed5126e098" ownerguid="6eaa1fec-1b02-4a75-96a8-f6bc2b26a327"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ishcay</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ishcay</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ishkay</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ishkay</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ishkay</Run> -</AStr> -</Form> -<Morph> -<objsur guid="c1eb2557-31b5-4111-8b24-ecb7862def99" t="r" /> -</Morph> -<Msa> -<objsur guid="0cf492ae-6cf0-40c0-80d8-763443288627" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="263c270f-0214-4568-b67b-02b6aebdfbac" ownerguid="49aa89f2-2022-4213-845e-dbbb4b53476c"> -<ExampleWords> -<AUni ws="en">the last, the latter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to the last thing?</AUni> -</Question> -</rt> -<rt class="StTxtPara" guid="264049ec-4de2-434d-9aa5-3247fad798cd" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">yarquramun</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="5961bb1e-a966-4b23-afb5-3903de6d3bf6" t="o" /> -</Segments> -</rt> -<rt class="LexEntry" guid="2643f75d-e7dc-4b5c-ba8e-e47d48d89d42"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ciuda; ciuda:</AUni> -<AUni ws="qvm-x-acl">ciuda; ciuda:</AUni> -<AUni ws="qvm-x-akh">ciuda; ciuda:</AUni> -<AUni ws="qvm-x-akl">ciuda; ciuda:</AUni> -<AUni ws="qvm-x-ame">ciuda; ciuda:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ciudad</AUni> -<AUni ws="qvm-x-acl">+ciudad</AUni> -<AUni ws="qvm-x-akh">+ciudad</AUni> -<AUni ws="qvm-x-akl">+ciudad</AUni> -<AUni ws="qvm-x-ame">+ciudad</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.122" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f2a641bc-8f69-48f4-8b49-c58e39d9f9e7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ciudad</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6065eaf9-aed1-4027-8ada-20f7685b82ff" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="76cc9009-1efe-415a-8010-8ca88357a7ea" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ciudad 
\entryTyp root 
\gENG city 
\gSPN ciudad 
\e +ciudad 
\c N0 
\mp +FinalC 
\mp +underlong 
\ach ciuda foreshortened 
\ach ciuda: 
\mp +underlong 
\akh ciuda foreshortened 
\akh ciuda: 
\acl ciuda foreshortened 
\acl ciuda: 
\akl ciuda foreshortened 
\akl ciuda: 
\mp +underlong 
\ame ciuda foreshortened 
\ame ciuda: 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="26443451-b2c9-4d4d-9932-9393ae184a9d" ownerguid="ed7930df-e7b4-43c9-a11a-b09521276b57"> -<ExampleWords> -<AUni ws="en">strong, powerful, pungent, heady, redolent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words describe something that can be smelled easily?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="26452ebb-d7d8-434e-8b72-bc29db8a242b" ownerguid="e7caa24f-155d-47cd-946d-cc0d06dfc764"> -<ExampleWords> -<AUni ws="en">beloved, dear</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe someone who is loved?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="26458e29-e274-4c71-a303-5d4957110fbf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsapa</AUni> -<AUni ws="qvm-x-acl">tsapa</AUni> -<AUni ws="qvm-x-akh">tsapa</AUni> -<AUni ws="qvm-x-akl">tsapa</AUni> -<AUni ws="qvm-x-ame">tsapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chapa.n</AUni> -<AUni ws="qvm-x-acl">*chapa.n</AUni> -<AUni ws="qvm-x-akh">*chapa.n</AUni> -<AUni ws="qvm-x-akl">*chapa.n</AUni> -<AUni ws="qvm-x-ame">*chapa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.274" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f44f95a4-c45f-47da-9d8b-f3c8e0a750e9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chapa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d57d397f-8b32-4f7e-8fde-35432f26128a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f10442d0-b8c3-4c16-873a-3694c9a159ac" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chapa.n 
\entryTyp root 
\gENG interruption 
\gSPN interrupción 
\e *chapa.n 
\c N0 
\ach tsapa 
\akh tsapa 
\acl tsapa 
\akl tsapa 
\ame tsapa 
\mcc *chapa.n / ~_ 1P.V GOAL</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="26491087-e3a2-4223-89bd-bf54663b4930" ownerguid="1c359042-0bd9-4cba-ae3d-a79bb3be6c48"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">copper</AUni> -<AUni ws="es">cobre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="27ca95e0-2cd0-4a74-a7f0-2a7ee3f38c2f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="264950bc-cf8b-4e1a-a850-8c65c69c5dbd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aru</AUni> -<AUni ws="qvm-x-acl">aru; aro</AUni> -<AUni ws="qvm-x-akh">aru</AUni> -<AUni ws="qvm-x-akl">aru; aro</AUni> -<AUni ws="qvm-x-ame">aru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aru</AUni> -<AUni ws="qvm-x-acl">*aru</AUni> -<AUni ws="qvm-x-akh">*aru</AUni> -<AUni ws="qvm-x-akl">*aru</AUni> -<AUni ws="qvm-x-ame">*aru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.838" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0820878f-b19d-48b7-968b-c27e9c3773df" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="32de04f0-1251-40ea-97c7-b30d30668c9a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="089069c9-b537-468b-af57-dfcdd574ebbc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aru 
\entryTyp root 
\gENG work 
\gSPN trabajar 
\e *aru 
\c V2 
\ach aru 
\akh aru 
\acl aru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl aro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl aru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl aro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame aru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="264dd51d-bbaa-4563-9db6-21c946fdca88"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">llanqui</AUni> -<AUni ws="qvm-x-acl">llanqui; llanque</AUni> -<AUni ws="qvm-x-akh">llanki</AUni> -<AUni ws="qvm-x-akl">llanki; llanke</AUni> -<AUni ws="qvm-x-ame">llanki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llanki</AUni> -<AUni ws="qvm-x-acl">*llanki</AUni> -<AUni ws="qvm-x-akh">*llanki</AUni> -<AUni ws="qvm-x-akl">*llanki</AUni> -<AUni ws="qvm-x-ame">*llanki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.134" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c4c0bcf5-5794-4344-8fa5-875a4a12b9f2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llanki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="651f7f7b-2eb0-49d1-9e19-bfa78e024e29" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2ca6a2af-ce13-44c8-94f1-86580b261d25" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llanki 
\entryTyp root 
\gENG to.trade 
\gSPN cambiar 
\e *llanki 
\c V1 
\mp +FinalI 
\ach llanqui 
\akh llanki 
\acl llanqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl llanque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl llanki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl llanke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame llanki</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="265006a8-3bab-4747-8a26-affcadf068d2" ownerguid="8fe88230-944c-4cfe-973d-a79050a56e5e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cabbage</AUni> -<AUni ws="es">col</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e384640d-300f-4451-bf4e-81b59510a94c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="265c55d2-9185-4f1f-a9e8-91618f9bd549"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">misha</AUni> -<AUni ws="qvm-x-acl">misha</AUni> -<AUni ws="qvm-x-akh">misha</AUni> -<AUni ws="qvm-x-akl">misha</AUni> -<AUni ws="qvm-x-ame">misha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*misha.n</AUni> -<AUni ws="qvm-x-acl">*misha.n</AUni> -<AUni ws="qvm-x-akh">*misha.n</AUni> -<AUni ws="qvm-x-akl">*misha.n</AUni> -<AUni ws="qvm-x-ame">*misha.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.455" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1064d293-38cb-48e2-8126-648e27c62155" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*misha.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="308371bb-74f4-46d9-ae09-bac3de818ed5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f0cd4fd9-cd3b-4e13-97e2-a22bf13d3e72" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *misha.n 
\entryTyp root 
\gENG white.patch 
\gSPN pelo.blanco 
\e *misha.n 
\c N0 
\ach misha 
\akh misha 
\acl misha 
\akl misha 
\ame misha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="265f5645-94cb-485c-8bf9-0a3ab2354f63" ownerguid="7f7fc197-5064-43c0-af51-2919fb7355c9"> -<Abbreviation> -<AUni ws="en">9.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this section for words indicating coordinate relations. Do not put any words in this domain. It is only for organizational purposes.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Coordinate relations</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c029eed8-2ec0-4f6f-aa22-3a066bb23ea6" t="o" /> -<objsur guid="8b5f9519-7301-4400-b93d-ebde4ea3def8" t="o" /> -<objsur guid="13edbeff-8913-49ef-8f02-777f86fb512d" t="o" /> -<objsur guid="ecf1cce7-ed58-44bf-870a-e8579b309c54" t="o" /> -<objsur guid="30fff450-1aa5-4993-9c14-c8019a5f072e" t="o" /> -<objsur guid="d8dfa6fc-84ea-4178-b4f5-95e0c113140a" t="o" /> -<objsur guid="ea7c06d0-5e33-4702-b6a0-51582b216fe8" t="o" /> -<objsur guid="251b17bd-5796-43ce-ba10-54140a99a1e0" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="2663958f-2dfe-4db0-848c-0fafa554226b" ownerguid="a93654fd-99a8-47cc-a86d-1cb2e6c8df68"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="2665802a-a963-427a-bbf4-be10878c8739" ownerguid="4b1e9d5e-4e91-4170-a283-3f520744657b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fight</AUni> -<AUni ws="es">pelea</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b8e47f02-8f30-4064-b742-0791b681a28e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="266aa733-c29e-4308-8e68-b72d34b811d3" ownerguid="e6e3adc7-b678-4f54-933d-2839455c2ff6"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="266aad0c-6770-4a6e-8958-2a790b4974ef" ownerguid="08c05e00-9660-4491-af2f-a05fab27ef39"> -<ExampleWords> -<AUni ws="en">slim, slender, trim, willowy, keep your figure, dapper, svelte</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe someone who is thin and attractive?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="266c0fc5-c677-4432-805b-6baa45acc49d" ownerguid="4e90365c-54f2-4d08-99a7-723092e9bfeb"> -<Form> -<AUni ws="qvm-x-ach">sagcha</AUni> -<AUni ws="qvm-x-acl">sagcha</AUni> -<AUni ws="qvm-x-akh">saqcha</AUni> -<AUni ws="qvm-x-akl">saqcha</AUni> -<AUni ws="qvm-x-ame">saqcha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="266d0d13-1d5e-4ec5-9cf4-d743e8c8539d" ownerguid="51c2e2e4-438c-414b-bd15-773b664dd289"> -<ExampleWords> -<AUni ws="en">have mercy, be merciful, be compassionate, feel sorry for, have a heart, be kind, empathize, empathy, pity (v), spare</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to having mercy on someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="266f13aa-1cb4-450f-8566-7aea02c63a5e" ownerguid="1a1247aa-8b89-4258-8aba-d5fd36f52574"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="2671d8b4-e4f0-4661-969e-e97efaee82ab" ownerguid="581f0bd9-485e-4fb8-9c41-fabc63f33d43"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="f722d2ad-9fdd-4e61-b49e-4012fa221957" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="d5569f11-6620-4f09-9c10-9c53d0fe4719" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="2671e4a5-5017-49a8-a018-7a8b14beb3e0" ownerguid="ddea0833-7497-489f-9768-111b39f8a72b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="0d01c3f1-382a-4d7d-bd48-a043ac36a62d" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="0e7cce3e-992a-4152-b1e1-c94136f40bcd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="StTxtPara" guid="2672eed3-c1ce-4367-bad4-a4ee4904abc6" ownerguid="2f802856-a864-428c-9f5e-b1de2b6a510e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">shequn.</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="d8abae3e-c8c6-4f8b-a30e-39b6e7d4d178" t="o" /> -</Segments> -</rt> -<rt class="LexSense" guid="26764ffd-a0f0-4c0c-9e9f-94479e019684" ownerguid="9eae4253-ffc1-4515-9ca5-5716bb4fd648"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">measure</AUni> -<AUni ws="es">medir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="920d2c5f-d824-4436-bf71-26b381612203" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="26799ab6-6125-4a90-b239-d6f017767437" ownerguid="ac4a936e-6c05-4e73-8d40-dfe4223b47fa"> -<ExampleWords> -<AUni ws="en">card game, poker</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What is the game called?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="267b98aa-e17c-4ebb-a752-ed4210701867" ownerguid="a2508183-7ea5-434e-a773-00d53087d27b"> -<Abbreviation> -<AUni ws="en">3.1.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.94" /> -<DateModified val="2022-9-23 16:55:8.94" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to noticing something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Notice</AUni> -</Name> -<Questions> -<objsur guid="af9ecd07-95c6-41ca-92b4-c7058fd9d437" t="o" /> -<objsur guid="8f6845c1-c843-43b0-a552-c1ccb09f5fb0" t="o" /> -<objsur guid="8b8f336b-e1e7-4c19-86c0-027b2901848e" t="o" /> -<objsur guid="b3a8bc33-42fe-4266-af17-8dbf0b8a2c49" t="o" /> -<objsur guid="35d41ab8-c945-4cee-acc7-5dbab0ef059d" t="o" /> -<objsur guid="40055381-0807-4933-9984-f973f668e899" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="267cfa86-1b16-4f58-88ef-988eb679d967" ownerguid="7acde7d5-1a5b-4e16-99c7-5f297d2643f4"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="40957f68-47c9-4d50-a069-01c85150a3d1" t="o" /> -<objsur guid="be488868-2b5b-4101-82c5-68b710043610" t="o" /> -<objsur guid="90589778-e2d1-4d93-b82e-9a2d930905c5" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="267e008e-547d-458b-b216-680ceab68b5f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sagra:da</AUni> -<AUni ws="qvm-x-acl">sagra:da</AUni> -<AUni ws="qvm-x-akh">sagra:da</AUni> -<AUni ws="qvm-x-akl">sagra:da</AUni> -<AUni ws="qvm-x-ame">sagra:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sagrada</AUni> -<AUni ws="qvm-x-acl">+sagrada</AUni> -<AUni ws="qvm-x-akh">+sagrada</AUni> -<AUni ws="qvm-x-akl">+sagrada</AUni> -<AUni ws="qvm-x-ame">+sagrada</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.419" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aa00559b-89ee-4e86-af66-6fc68058d08c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sagrada</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="50bd29cc-b77f-4864-b56c-e70ab258e7d3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="18cf7845-3bad-49f1-a70a-ec50823592cf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sagrada 
\entryTyp root 
\gENG sacred 
\gSPN sagrada 
\e +sagrada 
\c N0 
\ach sagra:da 
\akh sagra:da 
\acl sagra:da 
\akl sagra:da 
\ame sagra:da</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="267e9636-39da-4a81-afeb-c468811f18e3" ownerguid="ab80b556-2c7d-4e75-a58d-f5bb58b2feef"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="71560f64-7c62-43a8-9fd5-238a483c7330" t="o" /> -<objsur guid="ab97c5c0-ae29-4cf8-9916-f5caae9368ce" t="o" /> -<objsur guid="8d139617-5d3e-41d7-baee-03075c28c135" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="2680989b-b43a-4576-b2df-38129aa3cdee" ownerguid="541e8471-d944-4f8d-86d4-176b78b0bdc4"> -<Form> -<AUni ws="qvm-x-ach">y</AUni> -<AUni ws="qvm-x-acl">y</AUni> -<AUni ws="qvm-x-akh">y</AUni> -<AUni ws="qvm-x-akl">y</AUni> -<AUni ws="qvm-x-ame">y</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2681c2e0-acef-415e-aac1-57d9868a9298" ownerguid="8add7f4d-333b-4b2c-9999-48a14162152b"> -<ExampleWords> -<AUni ws="en">abstain, behave, behave yourself, constrain, contain yourself, control yourself, discipline yourself, forbear, forgo, restrain yourself, say no, tolerate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to being self-controlled?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="26824f4a-2206-49e9-9029-61555cde6e5b" ownerguid="4c9458da-13a4-4bed-b7c7-f843e9c73479"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2683334c-8bbe-4466-9a26-baf8128f39eb" ownerguid="a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f"> -<ExampleWords> -<AUni ws="en">sight, view, scene, scenery, picture, show, spectacle, vision, vista, panorama</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to something that is seen?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2683f6d3-f4ef-4f5a-8864-32679ec323e2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chunca</AUni> -<AUni ws="qvm-x-acl">chunca</AUni> -<AUni ws="qvm-x-akh">chunka</AUni> -<AUni ws="qvm-x-akl">chunka</AUni> -<AUni ws="qvm-x-ame">chunka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trunka</AUni> -<AUni ws="qvm-x-acl">*trunka</AUni> -<AUni ws="qvm-x-akh">*trunka</AUni> -<AUni ws="qvm-x-akl">*trunka</AUni> -<AUni ws="qvm-x-ame">*trunka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.170" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fb0a8a06-4b50-4ab0-b4df-2d00d716343b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trunka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="72310c60-6099-45d6-b8ef-84a2cecc293f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7580bc6a-c865-4237-b279-3220dfb95753" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trunka 
\entryTyp root 
\gENG ten 
\gSPN diez 
\e *trunka 
\c N0 
\ach chunca 
\akh chunka 
\acl chunca 
\akl chunka 
\ame chunka 
\i Chuncapis shamunqui. 
\i Chuncarag gongaycunquiman. - Cuidä gongaycunquiman.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="26868225-314d-44eb-90c4-9dc9c1048bd7" ownerguid="17296a19-2182-430b-85fb-43eb494b0651"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">all</AUni> -<AUni ws="es">todos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8ba60563-44e9-4fd9-8f0f-3af20cedf8ad" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="26890fc1-88a4-4cf8-a402-f0d2f422b070" ownerguid="a345d090-14e2-4897-9186-debcb05ab27c"> -<ExampleWords> -<AUni ws="en">next, following, ensuing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that happens next?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="268bd992-240d-4e26-a831-9a4b03ee5d1b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cerro:ju</AUni> -<AUni ws="qvm-x-acl">cerro:ju; cerro:ju; cerro:jo</AUni> -<AUni ws="qvm-x-akh">cerro:ju</AUni> -<AUni ws="qvm-x-akl">cerro:ju; cerro:ju; cerro:jo</AUni> -<AUni ws="qvm-x-ame">cerro:ju</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cerrojo</AUni> -<AUni ws="qvm-x-acl">+cerrojo</AUni> -<AUni ws="qvm-x-akh">+cerrojo</AUni> -<AUni ws="qvm-x-akl">+cerrojo</AUni> -<AUni ws="qvm-x-ame">+cerrojo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.112" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ed93a1cb-0747-4033-9933-4cd78badd2ae" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cerrojo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dd2867a8-116c-43c4-bcc7-b8fae7f6adfa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="909e1d20-e4ba-4cca-b1af-ba143bc688d0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cerrojo 
\entryTyp root 
\gENG 
\gSPN 
\e +cerrojo 
\c N0 
\ach cerro:ju 
\akh cerro:ju 
\acl cerro:ju / _# 
\acl cerro:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cerro:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cerro:ju / _# 
\akl cerro:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cerro:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cerro:ju 
\i JDG 16.3 Tsaymi puncuta quiciunnintinta jorgurishpan cerröjuntinta umrucurcur apacorgan Hebrón tsimpan lömayag.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="268e58a9-38ac-485c-a39c-7c84122d35dc" ownerguid="d8ea1902-5fa6-4fda-b7b2-1f9c301cdc5f"> -<ExampleWords> -<AUni ws="en">member, one of, part of, belong to, go with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words indicate that something is a member of a group?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="268eea0d-a87c-4c9e-814e-b80239fccb6e" ownerguid="35b617b3-6503-4e5e-aff6-fccfe4730f9e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="21163ac2-bda6-4506-851d-daaa2b45efc5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="268f17ab-9a58-435f-baff-a4d9fd29aa49" ownerguid="defbe920-aa69-4033-b0d9-f0194c13fe90"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">unhappy</AUni> -<AUni ws="es">descontento</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b9e5f7d4-7799-4116-b176-ae685aebdc0c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="26955bce-9ce3-40a6-88cd-57200cd3c2ec" ownerguid="d06dae77-134a-403f-ba88-52ecd66c0522"> -<ExampleWords> -<AUni ws="en">lichen</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What general words refer to lichen?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="269a842b-ad09-4bb8-baae-56b03314af72" ownerguid="8f0448a2-9846-4c09-8bf0-3fdebf292475"> -<Form> -<AUni ws="qvm-x-ach">chegra</AUni> -<AUni ws="qvm-x-acl">chegra</AUni> -<AUni ws="qvm-x-akh">cheqra</AUni> -<AUni ws="qvm-x-akl">cheqra</AUni> -<AUni ws="qvm-x-ame">chiqra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="269a8ca0-f9ef-4958-8aaf-b1443a7357fb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">silla</AUni> -<AUni ws="qvm-x-acl">silla</AUni> -<AUni ws="qvm-x-akh">silla</AUni> -<AUni ws="qvm-x-akl">silla</AUni> -<AUni ws="qvm-x-ame">silla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sillar</AUni> -<AUni ws="qvm-x-acl">+sillar</AUni> -<AUni ws="qvm-x-akh">+sillar</AUni> -<AUni ws="qvm-x-akl">+sillar</AUni> -<AUni ws="qvm-x-ame">+sillar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.681" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="13c4efef-13d3-4295-8991-b347474983a3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sillar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7fb549a8-ad90-4405-b1cb-bbec85bf82f9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e8e32301-c5c7-457c-bf5c-1a8bff8fc179" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sillar 
\entryTyp root 
\gENG 
\gSPN 
\e +sillar 
\c V2 
\ach silla 
\akh silla 
\acl silla 
\akl silla 
\ame silla 
\i Tsaymi wara tuta tsaca tsacala bürrunta Abraham sillacorgan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="269b22ac-0aaa-4add-afc5-a67150dbb5af"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wilapista</AUni> -<AUni ws="qvm-x-acl">wilapista</AUni> -<AUni ws="qvm-x-akh">wilapista</AUni> -<AUni ws="qvm-x-akl">wilapista</AUni> -<AUni ws="qvm-x-ame">wilapista</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*willapista</AUni> -<AUni ws="qvm-x-acl">*willapista</AUni> -<AUni ws="qvm-x-akh">*willapista</AUni> -<AUni ws="qvm-x-akl">*willapista</AUni> -<AUni ws="qvm-x-ame">*willapista</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.656" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="16d1b025-7c33-46e8-8a40-7b61d0d1daee" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*willapista</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0c536643-88a9-4b37-8be8-7f5ebb634c4c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="da1e9a52-aa02-4d81-919f-d2845c483e3d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *willapista 
\entryTyp root 
\gENG gossiper 
\gSPN chismoso 
\e *willapista 
\c N0 
\ach wilapista 
\akh wilapista 
\acl wilapista 
\akl wilapista 
\ame wilapista</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="269c801f-c5a2-4b2c-b0dc-920825a0afb3" ownerguid="c05bf8c3-78f2-4ec5-b0d7-32d4963a5794"> -<ExampleWords> -<AUni ws="en">material, composition, stuff, substance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the material something is made of?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="26a2f392-94ed-4bdb-bff1-46580070bbd1" ownerguid="91f07f78-6bd9-4077-8958-df3a63f853ef"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="26a44825-7012-4a4a-be23-3e6c7c865af7" ownerguid="ee0585b1-627a-4a71-888d-b5d82619431e"> -<ExampleWords> -<AUni ws="en">Brit, the English, American, Canadian, Aussie, Kiwi</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used to refer to a citizen of these countries?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="26a490b5-9e23-4273-bae4-3f1eaafd19d2" ownerguid="2e5acfd2-3009-4496-9cc2-58d2a0088994"> -<ExampleWords> -<AUni ws="en">follicle, root, end, split end</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the parts of a hair?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="26a515f7-aba0-4fb1-9ca8-691bd50699f2" ownerguid="b53deac1-26c7-4fe9-9109-8496e248e8c7"> -<ExampleWords> -<AUni ws="en">election, elect, to vote, vote, candidate, campaign</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to electing a government official?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="26a61321-a9d8-44e3-81c3-a83c85e1158e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">carpinte:ru</AUni> -<AUni ws="qvm-x-acl">carpinte:ru; carpinte:ru; carpinte:ro</AUni> -<AUni ws="qvm-x-akh">carpinte:ru</AUni> -<AUni ws="qvm-x-akl">carpinte:ru; carpinte:ru; carpinte:ro</AUni> -<AUni ws="qvm-x-ame">carpinte:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+carpintero</AUni> -<AUni ws="qvm-x-acl">+carpintero</AUni> -<AUni ws="qvm-x-akh">+carpintero</AUni> -<AUni ws="qvm-x-akl">+carpintero</AUni> -<AUni ws="qvm-x-ame">+carpintero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.700" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f702ed38-be44-4f07-afc9-7fefff142a7f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+carpintero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3dbb9695-02d1-43d0-9e77-bc3a2754fc96" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e5c0bf84-62e6-4df1-aa4e-2e8ed8ea944e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +carpintero 
\entryTyp root 
\gENG carpenter 
\gSPN carpentero 
\e +carpintero 
\c N0 
\ach carpinte:ru 
\akh carpinte:ru 
\acl carpinte:ru / _# 
\acl carpinte:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl carpinte:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl carpinte:ru / _# 
\akl carpinte:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl carpinte:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame carpinte:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="26a917d7-9ce9-4cc6-a006-b9aed4a4f355" ownerguid="b93d9c47-2a86-4719-8864-71b8ddc50398"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -</rt> -<rt class="MoStemMsa" guid="26b344ca-5de5-4040-bd1d-a2153442bc87" ownerguid="f42416f1-2bb8-4790-a812-2cdc678e76f3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="26b3b70e-a1e4-43a9-93ee-137b9605632c" ownerguid="f15c69e4-f623-4269-a3b7-ab4f609221a2"> -<Form> -<AUni ws="qvm-x-ach">wacücuy</AUni> -<AUni ws="qvm-x-acl">wacöcuy</AUni> -<AUni ws="qvm-x-akh">wakükuy</AUni> -<AUni ws="qvm-x-akl">wakökuy</AUni> -<AUni ws="qvm-x-ame">wakükuy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="26b97047-edb1-44e9-8c7b-463de9cfbe78" ownerguid="8c28c640-db5b-43e2-a1e6-b0e381962129"> -<Abbreviation> -<AUni ws="en">6.3.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to sheep.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Sheep</AUni> -</Name> -<Questions> -<objsur guid="ca61a29f-cf92-4b84-8474-bddc10eb9dde" t="o" /> -<objsur guid="3652af6a-b32e-4dc5-ac89-a532d4a6b958" t="o" /> -<objsur guid="08674bc4-1196-4e18-8f6f-b86dd121d2df" t="o" /> -<objsur guid="ceb226a1-2c25-4757-9ba2-e6a1f7ab226e" t="o" /> -<objsur guid="7db43df0-6bce-41e5-863b-dc829935ca7c" t="o" /> -<objsur guid="5a55273d-58bb-44ff-8d57-6652bf8485f0" t="o" /> -<objsur guid="b8afd8d3-acdc-4d1c-a984-91ea9d31afaf" t="o" /> -<objsur guid="323a29b0-ad4f-4604-af76-7637f7b1e5e5" t="o" /> -<objsur guid="3295a38a-b26b-4b93-b04b-6ccda9e1e1ba" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="26bab2b5-98cd-499a-8628-93bf684bc5e7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pis</AUni> -<AUni ws="qvm-x-acl">pis</AUni> -<AUni ws="qvm-x-akh">pis</AUni> -<AUni ws="qvm-x-akl">pis</AUni> -<AUni ws="qvm-x-ame">pis</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.508" /> -<DateModified val="2022-10-16 15:24:24.735" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="18466f68-8c21-4054-acf2-869c4074b430" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">EVEN1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="12ccc54c-91e7-41aa-abf7-76699e3503e4" t="o" /> -<objsur guid="8b7a32d0-6744-4c78-9071-7cf96938c9b3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f109a3dc-7ba8-4575-8afa-20ef7d8c2a73" t="o" /> -<objsur guid="27209cd4-d89a-460e-befd-662658c0f17e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx EVEN1 
\entryTyp suffix 
\gENG EVEN1 
\gSPN TAMB1 
\e EVEN1 
\c N0/N0 V0/V0 R0/R0 ONSHEV/ONSHEV BN/BN 
\o 220 
\mp NeverLowered 
\ach pis 
\akh pis 
\acl pis 
\akl pis 
\ame pis 
\mp +FinalC 
\mcc EVEN1 / ~_ EVEN1</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="26bb96b2-cde5-4038-b59a-cca3d9c311c2" ownerguid="f2d0f288-5bbe-4fa0-9e8f-ddcc74891701"> -<ExampleWords> -<AUni ws="en">death chant, dirge, funeral march</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What special music is played?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="26bc089a-a989-4763-be6c-05d127d1c0e8" ownerguid="af4ac058-d4b3-4c7a-ade8-6af762d0486d"> -<Abbreviation> -<AUni ws="en">3.3.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to doing something deliberately--to intend to do something, as opposed to doing something accidentally.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Deliberately</AUni> -</Name> -<Questions> -<objsur guid="b702daa0-8e4d-4f27-a485-0da5202f300b" t="o" /> -<objsur guid="b5766c90-9f35-475b-bb6d-467b96ad0589" t="o" /> -<objsur guid="a8ad0ffc-3a82-4dbd-ac8d-61a6cf2cf655" t="o" /> -<objsur guid="0f1f3d3b-c043-40d3-8961-3d296c551b9b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="26bd3710-7a3b-4893-ab06-24fa95faefa6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">costala</AUni> -<AUni ws="qvm-x-acl">costala</AUni> -<AUni ws="qvm-x-akh">costala</AUni> -<AUni ws="qvm-x-akl">costala</AUni> -<AUni ws="qvm-x-ame">costala</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+costalar</AUni> -<AUni ws="qvm-x-acl">+costalar</AUni> -<AUni ws="qvm-x-akh">+costalar</AUni> -<AUni ws="qvm-x-akl">+costalar</AUni> -<AUni ws="qvm-x-ame">+costalar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.205" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="88c22d07-813b-4ca2-846c-7c8e53461f53" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+costalar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f36c20da-30f6-4a22-94ca-68e46a281daf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4c70907c-3512-45e0-9ce4-bb71d68bfcbd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +costalar 
\entryTyp root 
\gENG 
\gSPN 
\e +costalar 
\c V1 
\ach costala 
\akh costala 
\acl costala 
\akl costala 
\ame costala 
\i JOB 14.17 Imatapis costalarcur jitaregnogmi jutsa rurashgäcunatapis gonganquipag.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="26be5b84-3e67-4384-b326-2d37df208246" ownerguid="95883da9-2f84-4779-b644-a6fd0a82ec93"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="97eadecd-0d73-494b-a38a-89e45a79d7a6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="26c5be2c-ba46-4f92-b8bc-a2de6af7bca5" ownerguid="01d78278-4376-4e9b-bf37-5423217504d9"> -<Form> -<AUni ws="qvm-x-ach">sabïdu</AUni> -<AUni ws="qvm-x-acl">sabïdu; sabïdu; sabïdo</AUni> -<AUni ws="qvm-x-akh">sabïdu</AUni> -<AUni ws="qvm-x-akl">sabïdu; sabïdu; sabïdo</AUni> -<AUni ws="qvm-x-ame">sabïdu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="26c7a8f4-8a4f-41a2-ba15-26f5154c1931" ownerguid="ef3dae4d-47a9-4631-bd3f-c25d309a6732"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">reside</AUni> -<AUni ws="es">residir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="49886695-7a83-4ac8-8f88-7deec4238172" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="PunctuationForm" guid="26ca52f1-b5e7-41e8-aa2e-cf2572524687"> -<Form> -<Str> -<Run ws="en">3</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="26cf8b7d-ceea-468f-a2b7-522f1b643598" ownerguid="50db27b5-89eb-4ffb-af82-566f51c8ec0b"> -<ExampleWords> -<AUni ws="en">outlive, survive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to living longer than someone else?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="26d1a0d6-e385-4db2-9ea4-a08f41abe679"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">atiendi</AUni> -<AUni ws="qvm-x-acl">atiendi; atiende</AUni> -<AUni ws="qvm-x-akh">atiendi</AUni> -<AUni ws="qvm-x-akl">atiendi; atiende</AUni> -<AUni ws="qvm-x-ame">atiendi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+atender</AUni> -<AUni ws="qvm-x-acl">+atender</AUni> -<AUni ws="qvm-x-akh">+atender</AUni> -<AUni ws="qvm-x-akl">+atender</AUni> -<AUni ws="qvm-x-ame">+atender</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.860" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="823e86fb-7592-4f5a-9dd9-05d3303aa419" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+atender</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d060e7e7-cb18-4c8a-9031-1ce238a683bc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4e28a0fd-86fa-47b3-a23c-c35e0caf80d5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +atender 
\entryTyp root 
\gENG attend 
\gSPN atender 
\e +atender 
\c V2 
\mp +FinalI 
\ach atiendi 
\akh atiendi 
\acl atiendi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl atiende +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl atiendi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl atiende +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame atiendi 
\i 1KI 1.2 Tsaymi rey Davidta yanapagnincuna caynog nergan: <<Sirvir atiendishunayquipag y oglar goñötsishunayquipag doncëlla jipashta ashipäcamushag.>></Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="26d1d925-99fd-481c-8d85-8984a8eb331e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pasa</AUni> -<AUni ws="qvm-x-acl">pasa</AUni> -<AUni ws="qvm-x-akh">pasa</AUni> -<AUni ws="qvm-x-akl">pasa</AUni> -<AUni ws="qvm-x-ame">pasa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pasar.1</AUni> -<AUni ws="qvm-x-acl">+pasar.1</AUni> -<AUni ws="qvm-x-akh">+pasar.1</AUni> -<AUni ws="qvm-x-akl">+pasar.1</AUni> -<AUni ws="qvm-x-ame">+pasar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.737" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="883ada6f-0bf2-4887-9c50-61a9cb250b4c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pasar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b7f64f45-98d1-4eac-9cd3-956bf92b1494" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b281c2a1-e437-4c28-abc0-f935f65e4d43" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pasar.1 
\entryTyp root 
\gENG pass 
\gSPN pasar 
\e +pasar.1 
\c V2 
\ach pasa 
\akh pasa 
\acl pasa 
\akl pasa 
\ame pasa 
\mcc +pasar.1 / ~_ [y] ([case]) ([shade]) ([wfinal]) # 
\mcc +pasar.1 / ~_ INF [pa] 
\mcc +pasar.1 / ~_ ADV2</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="26d32f3e-ced6-45fc-afd0-7e017fa252c6" ownerguid="3160b7ad-e4e8-4a46-8e2e-d5e601969547"> -<Abbreviation> -<AUni ws="en">3.5.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.174" /> -<DateModified val="2022-9-23 16:55:8.174" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a riddle--something someone says that is hard to understand.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Riddle</AUni> -</Name> -<Questions> -<objsur guid="89329634-4457-4df9-b99d-75abe9ed36bc" t="o" /> -<objsur guid="0c5c3089-d49f-4cb6-857b-c836791dd19f" t="o" /> -<objsur guid="46747c01-03c2-4190-ade1-07556374e847" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="26d5730c-a7fa-4d6e-9e00-b90dd8aba2a6" ownerguid="e91b9c15-7ab1-4a6e-b5e3-4c2c6efa637a"> -<Example> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ajayapäkun, mantsarapäkun, sheqshipäkuywan, siksikyapäkun, yarpapäkun, yarpapäkushunki, nistapäkun</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="26d58e56-7203-4d96-8fc1-2c066e37ebde" ownerguid="0dcaa668-c529-4a1c-89c8-2eb8a44caa73"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="26d69310-0a72-4ae3-809d-57d4b7af09d5" ownerguid="5dcf3ce8-aa00-4478-b00e-691549fa29e8"> -<ExampleWords> -<AUni ws="en">self-centered, selfish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is selfish?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="26d7b3ef-f288-4664-9179-0ea2360bf9ec" ownerguid="d2df3d6b-f9a5-404e-b3ec-b59dac569484"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="26d91e4f-2b30-42db-a7d7-a3cc25b1cfe6" ownerguid="efcb6b84-43e7-44fc-ab08-2256230c48b2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">grandmother</AUni> -<AUni ws="es">abuela</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="823dc29c-ccbc-499f-84e8-30e43efc3ec3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="26dae1cf-1c92-4d82-a045-9bc8b3ea3647"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">carga</AUni> -<AUni ws="qvm-x-acl">carga</AUni> -<AUni ws="qvm-x-akh">carga</AUni> -<AUni ws="qvm-x-akl">carga</AUni> -<AUni ws="qvm-x-ame">carga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+carga</AUni> -<AUni ws="qvm-x-acl">+carga</AUni> -<AUni ws="qvm-x-akh">+carga</AUni> -<AUni ws="qvm-x-akl">+carga</AUni> -<AUni ws="qvm-x-ame">+carga</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.62" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e2b6e9cb-4279-4c03-8fb6-bd1c616d149e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+carga</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6e34d3c9-43ec-4ed7-928a-0c3c1a725fc9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1871ca15-def7-403f-82ce-45d317a7a3c9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +carga 
\entryTyp root 
\gENG load 
\gSPN carga 
\e +carga 
\c N0 
\ach carga 
\akh carga 
\acl carga 
\akl carga 
\ame carga 
\mcc +carga / _ ([poss]) (PLUR) OBJ / _ EVEN1 / _ WITH1.V / _ PLUR</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="26ddd68b-9112-4344-95ac-203ca466fc62"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wishtu</AUni> -<AUni ws="qvm-x-acl">wishtu; wishto</AUni> -<AUni ws="qvm-x-akh">wishtu</AUni> -<AUni ws="qvm-x-akl">wishtu; wishto</AUni> -<AUni ws="qvm-x-ame">wishtu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wishtu.v</AUni> -<AUni ws="qvm-x-acl">*wishtu.v</AUni> -<AUni ws="qvm-x-akh">*wishtu.v</AUni> -<AUni ws="qvm-x-akl">*wishtu.v</AUni> -<AUni ws="qvm-x-ame">*wishtu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.697" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0fe9a9e9-da1b-4118-b61d-eb113fa90751" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wishtu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5a6c3085-e731-45da-be51-a78f32c6e302" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="eca09c70-f7d0-43fc-847f-d3e59bb699e6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wishtu.v 
\entryTyp root 
\gENG bend 
\gSPN doblar 
\e *wishtu.v 
\c V1 
\ach wishtu 
\akh wishtu 
\acl wishtu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wishto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wishtu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wishto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wishtu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="26df24a6-2b35-412e-b1b0-f9e77989cb97"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Markaykipis</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="26dfaffb-7781-4e48-bcbd-c37da55256fd" ownerguid="9f6754ae-a429-4bba-8f6f-2cd4ea0cbe45"> -<ExampleWords> -<AUni ws="en">lose your virginity, become sexually active, have sex for the first time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to no longer being a virgin?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="26dfc70b-06b7-4c2f-9946-c175abe22e46" ownerguid="c16334a0-be29-4a1e-a870-4cb3f1df984d"> -<ExampleWords> -<AUni ws="en">gather, accumulate, amass, assemble, bring together, bunch up, collect, compile, concentrate, consolidate, cumulate, group (v), heap, heap up, herd together, layer (v), mass together, pile, rally, round-up, stack, stack up, load</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to gathering things?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="26e0a6b0-efe2-4a36-91a5-612b8fc61247" ownerguid="a5625b5c-8657-44b4-9700-185095eb5e15"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="dafbee4c-fb98-4562-87b4-9f5986cee961" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="6cc03415-e59c-4f5c-b0c9-1e55f639b589" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="26e1488c-d9d8-438a-870b-00ed6f26637b" ownerguid="44003c2e-c9c2-42c8-9ac1-8b40c11ba7f4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">flirt</AUni> -<AUni ws="es">coquetear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9cbe80db-c38c-4ef2-83b9-3ca21c0be1f9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="26e7b9f6-6d75-4826-802c-026654fcd33e" ownerguid="6fb6928b-fa1e-4c9b-aa84-df8eccfc5900"> -<Form> -<AUni ws="qvm-x-ach">nubisya; nubisyä</AUni> -<AUni ws="qvm-x-acl">nubisya; nubisyä</AUni> -<AUni ws="qvm-x-akh">nubisya; nubisyä</AUni> -<AUni ws="qvm-x-akl">nubisya; nubisyä</AUni> -<AUni ws="qvm-x-ame">nubisya; nubisyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="26e9770d-034e-49c9-81a1-4927900d0935" ownerguid="3770ee03-dd32-4f7e-9ef2-98699bc413e5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wring</AUni> -<AUni ws="es">exprimir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f3c67570-9ea5-44e7-b769-eea677b93525" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="26ea3bc1-d709-48f2-8438-aab4770e7495" ownerguid="fa174837-2f92-417f-818c-05a86c64b9e3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="26eb6f24-8810-421d-a95d-ef172687f8a0" ownerguid="92ff5d9a-21a8-440b-b10d-d98675987524"> -<Form> -<AUni ws="qvm-x-ach">inmundu; inmundo</AUni> -<AUni ws="qvm-x-acl">inmundu; inmundu; inmundo</AUni> -<AUni ws="qvm-x-akh">inmundu; inmundo</AUni> -<AUni ws="qvm-x-akl">inmundu; inmundu; inmundo</AUni> -<AUni ws="qvm-x-ame">inmundu; inmundo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="26ecd164-331c-4317-9664-4a96a0f6b5fd" ownerguid="9b3a5c6d-7f69-4cee-b4fa-98773152e5f1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">owl</AUni> -<AUni ws="es">buho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="801bab55-65fe-4ee2-9091-09d188399929" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="26f1ced2-43c5-4bb6-ac10-7446d74679ff" ownerguid="1ad294b3-e347-4e6e-97a2-a8296e77c929"> -<Form> -<AUni ws="qvm-x-ach">malagäna</AUni> -<AUni ws="qvm-x-acl">malagäna</AUni> -<AUni ws="qvm-x-akh">malagäna</AUni> -<AUni ws="qvm-x-akl">malagäna</AUni> -<AUni ws="qvm-x-ame">malagäna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="26f480c4-9335-4524-b2ed-47859a10568b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nana</AUni> -<AUni ws="qvm-x-acl">nana</AUni> -<AUni ws="qvm-x-akh">nana</AUni> -<AUni ws="qvm-x-akl">nana</AUni> -<AUni ws="qvm-x-ame">nana</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*nana.v</AUni> -<AUni ws="qvm-x-acl">*nana.v</AUni> -<AUni ws="qvm-x-akh">*nana.v</AUni> -<AUni ws="qvm-x-akl">*nana.v</AUni> -<AUni ws="qvm-x-ame">*nana.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.537" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fd469863-41f3-4fb3-9611-7275c23b7938" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*nana.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5e06be76-ef7a-443b-a77a-f743505739ea" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ea3f3326-6049-4e87-8751-391ccd7a89ff" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *nana.v 
\entryTyp root 
\gENG hurt 
\gSPN doler 
\e *nana.v 
\c V1 
\ach nana 
\akh nana 
\acl nana 
\akl nana 
\ame nana 
\mcc *nana.v / ~_ BEN1 DUR</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="26f5baa8-4357-41f0-80f3-de0ba45a44cc" ownerguid="50b57bd6-5f6b-4793-8e74-7124894ad7cb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -<Sense> -<objsur guid="8825f180-b774-47d3-9faa-e76a889e064f" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="26f5dc1a-d1b0-43cb-83f5-9e250fc36679" ownerguid="8f0b27ca-8223-4e67-8600-7096fd25be52"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">plant</AUni> -<AUni ws="es">hierba</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="739eb3aa-87d1-448c-a601-915864006452" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="26f60a4b-11d5-435a-8dbd-ac29c06c14f6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mitu</AUni> -<AUni ws="qvm-x-acl">mitu; mitu; mito</AUni> -<AUni ws="qvm-x-akh">mitu</AUni> -<AUni ws="qvm-x-akl">mitu; mitu; mito</AUni> -<AUni ws="qvm-x-ame">mitu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mitu</AUni> -<AUni ws="qvm-x-acl">*mitu</AUni> -<AUni ws="qvm-x-akh">*mitu</AUni> -<AUni ws="qvm-x-akl">*mitu</AUni> -<AUni ws="qvm-x-ame">*mitu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.457" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b63da3fe-91e1-471c-bbd4-8eca4ef0fa7e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mitu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8fa45805-f4f4-47e0-ab15-7ea16ba9133f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="78f3c1d2-91e5-4205-a2e0-6f7e6ddf81bf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mitu 
\entryTyp root 
\gENG mud 
\gSPN barro 
\e *mitu 
\c N0 
\ach mitu 
\akh mitu 
\acl mitu / _# 
\acl mitu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mitu / _# 
\akl mitu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mitu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="26f61d92-9f8e-42f5-8d57-ec4e357cbfb9" ownerguid="abed43e3-4ccc-47e4-be82-f025d2edf0d1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ground</AUni> -<AUni ws="es">molido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="390cf96c-5b15-4c2c-8917-515f1b1c4db4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="26f9e33b-5352-4d15-a37d-d95a9de3c560" ownerguid="5d654943-5ce0-4ae5-a598-9b99cfdf380b"> -<Form> -<AUni ws="qvm-x-ach">engäñu</AUni> -<AUni ws="qvm-x-acl">engäñu; engäñu; engäño</AUni> -<AUni ws="qvm-x-akh">engäñu</AUni> -<AUni ws="qvm-x-akl">engäñu; engäñu; engäño</AUni> -<AUni ws="qvm-x-ame">engäñu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="26fa0230-5ec3-41a2-a846-b4a8e5b828fc" ownerguid="14da8c3c-5e96-49b0-9459-c7dfa54e82e9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="26fad68a-741b-412a-b35f-7ca220b4f4ba" ownerguid="691bdba3-c216-4b42-877c-674bbdb517a7"> -<ExampleWords> -<AUni ws="en">trust, confidence, faith, blind faith</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling that you can trust someone?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="26fb2e94-b8fe-4216-9057-ca17a71df83b" ownerguid="afa77a2a-8b0f-4a39-91bc-040e90ffbb3a"> -<Abbreviation> -<AUni ws="en">3.4.1.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.133" /> -<DateModified val="2022-9-23 16:55:8.133" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling relaxed--to feel good when you are not working and nothing bad is happening.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Relaxed</AUni> -</Name> -<Questions> -<objsur guid="3f350278-7be5-4e61-8a49-f6daa1c1e46e" t="o" /> -<objsur guid="ead2b0e5-3187-45be-ad5a-73873b6c7ccf" t="o" /> -<objsur guid="13c1f126-df16-4971-aae7-4536265db834" t="o" /> -<objsur guid="261b1872-096d-45ac-a431-023dc24ce722" t="o" /> -<objsur guid="1723b385-3acb-4860-8e48-fa2b57392af0" t="o" /> -<objsur guid="3730b9d0-138a-4a46-bd91-bc5506f6b79d" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="64e3d6b1-1d61-454c-97ab-e1d7cb0a8917" t="r" /> -<objsur guid="8e65904c-f9e9-4e12-b430-c1ddc540f1ae" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="26fec227-ced2-4320-b29e-c9a76dd5d9d7" ownerguid="d3d6f6df-222d-4b2d-be44-c38e2de1fe9b"> -<Form> -<AUni ws="qvm-x-ach">las</AUni> -<AUni ws="qvm-x-acl">las</AUni> -<AUni ws="qvm-x-akh">las</AUni> -<AUni ws="qvm-x-akl">las</AUni> -<AUni ws="qvm-x-ame">las</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="26ff3a9e-b547-46c0-bb68-d7fef95b93ba" ownerguid="783cd8b8-8d25-4a62-ac42-eae420ee850f"> -<Form> -<AUni ws="qvm-x-ach">jinan</AUni> -<AUni ws="qvm-x-acl">jinan</AUni> -<AUni ws="qvm-x-akh">jinan</AUni> -<AUni ws="qvm-x-akl">jinan</AUni> -<AUni ws="qvm-x-ame">hinan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="26ff75da-cc68-453b-9418-f5c9827b22a9" ownerguid="1ca26512-75f6-4a7a-a7cc-07d08aa799d9"> -<ExampleWords> -<AUni ws="en">repent, have a change of heart, reverse your behavior, reform, go straight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that a person has decided to change his behavior?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="270034fa-9931-47d0-9d97-c0fb8909e0eb" ownerguid="5fdf3946-7e47-4fd2-906f-4da7ce5fa490"> -<ExampleWords> -<AUni ws="en">have no answer, lack answer, not know what to answer, don't know how to answer, don't know what to say, don't have an answer, can't answer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to not having an answer or not knowing what to answer?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="27021fa2-34d7-44d6-b173-f90d227ca1f1" ownerguid="e9515a66-8027-4815-a23c-3614b5c5089a"> -<Form> -<AUni ws="qvm-x-ach">yarga; yargä</AUni> -<AUni ws="qvm-x-acl">yarga; yargä</AUni> -<AUni ws="qvm-x-akh">yarqa; yarqä</AUni> -<AUni ws="qvm-x-akl">yarqa; yarqä</AUni> -<AUni ws="qvm-x-ame">yarqa; yarqä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="27048124-c204-4585-9997-c51728f085d6" ownerguid="a4958dd9-03cc-4863-ab76-cd0682060cb0"> -<Abbreviation> -<AUni ws="en">3.5.1.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.164" /> -<DateModified val="2022-9-23 16:55:8.164" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to thanking someone--to tell someone that you feel good about something they did for you.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33J' Thanks; 25I Thankful, Grateful</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Thank</AUni> -</Name> -<Questions> -<objsur guid="076b560d-d19f-40d7-9d3f-ace7487dd280" t="o" /> -<objsur guid="cfdf9c6c-156a-4a17-b3aa-0fa620edd3e7" t="o" /> -<objsur guid="680d33a7-ac19-4d89-ab84-2504ea7aa678" t="o" /> -<objsur guid="5da19132-615b-4f7f-bfa6-d445ae871e3b" t="o" /> -<objsur guid="360260ef-26ce-4609-a37f-5a35df9337d7" t="o" /> -<objsur guid="55adb5d5-8613-4b7b-ae01-4eb517c12288" t="o" /> -<objsur guid="23556ce6-03ce-43bf-bcbb-bcad20b831f1" t="o" /> -<objsur guid="0bbabe2a-eb62-4435-82c1-54c211f603fc" t="o" /> -<objsur guid="29631770-858d-4d76-b309-515796516ebc" t="o" /> -<objsur guid="6c1fe473-e3cf-4717-b6ff-6710aca0ea38" t="o" /> -<objsur guid="7201c509-d213-473d-a220-516e564a976a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="2704b55f-0dfc-45fd-80c9-0ff8c12f8604"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chompa</AUni> -<AUni ws="qvm-x-acl">chompa</AUni> -<AUni ws="qvm-x-akh">chompa</AUni> -<AUni ws="qvm-x-akl">chompa</AUni> -<AUni ws="qvm-x-ame">chompa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+chompa</AUni> -<AUni ws="qvm-x-acl">+chompa</AUni> -<AUni ws="qvm-x-akh">+chompa</AUni> -<AUni ws="qvm-x-akl">+chompa</AUni> -<AUni ws="qvm-x-ame">+chompa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.333" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2cf8708a-de3b-4368-8d9f-e1239494fd5a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+chompa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="401b313f-a7e7-4182-852f-1e39ba88567e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b1d26b82-5ef7-4c46-97f1-dad7fbcc40c0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +chompa 
\entryTyp root 
\gENG sweater 
\gSPN chompa 
\e +chompa 
\c N0 
\ach chompa 
\akh chompa 
\acl chompa 
\akl chompa 
\ame chompa</Run> -</AStr> -</Custom> -</rt> -<rt class="DsConstChart" guid="2704ec44-9c8f-4afe-821c-3499a0f7ba25" ownerguid="c3fe8c1e-ea5e-11de-9e45-0013722f8dec"> -<BasedOn> -<objsur guid="2f802856-a864-428c-9f5e-b1de2b6a510e" t="r" /> -</BasedOn> -<DateCreated val="2022-10-11 15:24:29.218" /> -<DateModified val="2022-10-11 15:24:29.218" /> -<Template> -<objsur guid="c414012a-ea5e-11de-99fc-0013722f8dec" t="r" /> -</Template> -</rt> -<rt class="MoStemAllomorph" guid="270967d2-18cc-4be8-80b0-974ef729316e" ownerguid="93e1aa75-1c40-4f20-84ed-61ec4e93094b"> -<Form> -<AUni ws="qvm-x-ach">janca</AUni> -<AUni ws="qvm-x-acl">janca</AUni> -<AUni ws="qvm-x-akh">janka</AUni> -<AUni ws="qvm-x-akl">janka</AUni> -<AUni ws="qvm-x-ame">hanka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StTxtPara" guid="270c1729-7810-46f0-8bc7-9ed215380f89" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">aywapäkashqayki</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="e8fbdae7-f182-48be-810d-8bc55dc312c6" t="o" /> -</Segments> -</rt> -<rt class="LexSense" guid="270f25ae-9cfc-46f4-8fe9-a67e4e1d3050" ownerguid="a8edb4f9-cc35-4486-9979-e49dd9391f4a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="221a6efa-ca95-4a91-937d-2a98c4843384" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="32ade28b-a4b3-44cc-92a3-acb7e2878954" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="2711fff1-dd66-4632-a407-308db9cbc672" ownerguid="9f845bde-606d-4abd-b5e5-dc788512c578"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="271200ea-801e-4591-9ffb-70fbac5e6070" ownerguid="6de4e99b-2b5a-493a-a208-f024d1eabdf3"> -<ExampleWords> -<AUni ws="en">move back, back up, move backwards, move in reverse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving backwards while still facing forward?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="27124f91-aa81-4673-a885-7bc28ecd91f5" ownerguid="d586a164-ac8f-4356-8aa8-07721c2b5e09"> -<ExampleWords> -<AUni ws="en">send, mail (v), post</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to sending a letter?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="27128d22-736d-43e1-b306-296ced8bc929" ownerguid="49ee84ff-eb2b-4ba3-b193-3018d34599c2"> -<ExampleWords> -<AUni ws="en">loan, mortgage, debt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the money that is borrowed?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="271a0f17-545d-4a19-92df-2a7d9970fb92"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uchu</AUni> -<AUni ws="qvm-x-acl">uchu; ucho</AUni> -<AUni ws="qvm-x-akh">uchu</AUni> -<AUni ws="qvm-x-akl">uchu; ucho</AUni> -<AUni ws="qvm-x-ame">uchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*utru</AUni> -<AUni ws="qvm-x-acl">*utru</AUni> -<AUni ws="qvm-x-akh">*utru</AUni> -<AUni ws="qvm-x-akl">*utru</AUni> -<AUni ws="qvm-x-ame">*utru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.310" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="083795fb-f8a5-4de7-9ca1-b0a4846d38aa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*utru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="056a4349-b378-4c20-aef3-3b25cfcffbda" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f000ca49-d72f-4705-94dc-acb414fb99e2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *utru 
\entryTyp root 
\gENG chew 
\gSPN masticar 
\e *utru 
\c V2 
\ach uchu 
\akh uchu 
\acl uchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ucho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl uchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ucho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame uchu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="271d7c47-3960-49c8-9632-8dd133421f61" ownerguid="025da6f4-b1b6-423a-8c0f-b324f531a6f1"> -<ExampleWords> -<AUni ws="en">angiosperm, annual, aquatic, biennial, bracken, brake, creeper, deciduous, edible, flower, greens, herbaceous, hybrid, leafy, legume, luscious, parasite, perennial, plankton, pulse, sedge, succulent, tropical, vegetable, vine, weed, woody, wort</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe types of plants?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="27209cd4-d89a-460e-befd-662658c0f17e" ownerguid="26bab2b5-98cd-499a-8628-93bf684bc5e7"> -<Gloss> -<AUni ws="en">EVEN1</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8b7a32d0-6744-4c78-9071-7cf96938c9b3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="2722cd46-a725-4464-a19d-09a5b9783d95"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cristia:nu</AUni> -<AUni ws="qvm-x-acl">cristia:nu; cristia:nu; cristia:no</AUni> -<AUni ws="qvm-x-akh">cristia:nu</AUni> -<AUni ws="qvm-x-akl">cristia:nu; cristia:nu; cristia:no</AUni> -<AUni ws="qvm-x-ame">cristia:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cristiano</AUni> -<AUni ws="qvm-x-acl">+cristiano</AUni> -<AUni ws="qvm-x-akh">+cristiano</AUni> -<AUni ws="qvm-x-akl">+cristiano</AUni> -<AUni ws="qvm-x-ame">+cristiano</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.221" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d3a042aa-549c-43e3-b550-2470a285e4be" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cristiano</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f0191755-03e5-434f-87d3-67e1b86f83af" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bfc08dd8-fea5-4334-ad1d-55db4ae94955" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cristiano 
\entryTyp root 
\gENG christian 
\gSPN cristiano 
\e +cristiano 
\c N0 
\ach cristia:nu 
\akh cristia:nu 
\acl cristia:nu / _# 
\acl cristia:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cristia:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cristia:nu / _# 
\akl cristia:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cristia:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cristia:nu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="2725259a-7ebf-44fc-8107-3c320e583cef"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">comandanti; comandante</AUni> -<AUni ws="qvm-x-acl">comandanti; comandanti; comandante</AUni> -<AUni ws="qvm-x-akh">comandanti; comandante</AUni> -<AUni ws="qvm-x-akl">comandanti; comandanti; comandante</AUni> -<AUni ws="qvm-x-ame">comandanti; comandante</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+comandante</AUni> -<AUni ws="qvm-x-acl">+comandante</AUni> -<AUni ws="qvm-x-akh">+comandante</AUni> -<AUni ws="qvm-x-akl">+comandante</AUni> -<AUni ws="qvm-x-ame">+comandante</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.152" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1560177f-52d1-46d8-a48a-7e6e1329844a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+comandante</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d1e0665e-50b8-4602-b873-4a30bd259dff" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e681a2aa-c8b2-45f5-b99a-de6849b6ec8e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +comandante 
\entryTyp root 
\gENG commander 
\gSPN comandante 
\e +comandante 
\c N0 
\mp +FinalI 
\ach comandanti / ~_# 
\ach comandante / _# 
\akh comandanti / ~_# 
\akh comandante / _# 
\acl comandanti / ~_# 
\acl comandanti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl comandante +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl comandanti / ~_# 
\akl comandanti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl comandante +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame comandanti / ~_# 
\ame comandante / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="27280dac-32bf-4b69-b004-10a471de5254" ownerguid="018cd6f2-4772-47b7-a059-d64dc4cee2f6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="27285ffe-6343-4b33-bfe0-0f671fde9af6" ownerguid="7a1a3d41-5cf2-4654-8553-c770820eb213"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="a4c630eb-8edf-4bb3-bab7-3b934b4188d0" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="dea84abb-62c1-4174-a342-303fdf4468a4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="27293c9a-6a5a-4ce1-9ff7-a92a87b6b2d9" ownerguid="295dc021-5b50-47b3-8340-1631c6d6fadc"> -<ExampleWords> -<AUni ws="en">comfort</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a comfortable feeling?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="272ab810-6dd3-42ed-9852-05de5058c80c" ownerguid="efd03c89-bf8b-4d46-a921-06cc06f28356"> -<ExampleWords> -<AUni ws="en">for, against, opposed, hold back, be on the fringes</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a person's stance toward a group?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="27330d45-7bab-4879-bd68-405508d038dd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ballicu</AUni> -<AUni ws="qvm-x-acl">ballicu; ballicu; ballico</AUni> -<AUni ws="qvm-x-akh">ballicu</AUni> -<AUni ws="qvm-x-akl">ballicu; ballicu; ballico</AUni> -<AUni ws="qvm-x-ame">ballicu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ballico.1</AUni> -<AUni ws="qvm-x-acl">+ballico.1</AUni> -<AUni ws="qvm-x-akh">+ballico.1</AUni> -<AUni ws="qvm-x-akl">+ballico.1</AUni> -<AUni ws="qvm-x-ame">+ballico.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.941" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="719c22bd-b0e0-4496-817e-21a9838f75bf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ballico.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="822ee2f8-d496-4f5b-848e-ff5139239e7a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fd62ab46-54ce-41e4-a4b6-c6e5c52337eb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ballico.1 
\entryTyp root 
\gENG 
\gSPN 
\e +ballico.1 
\c N0 
\mp +assimilated 
\ach ballicu 
\akh ballicu 
\acl ballicu / _# 
\acl ballicu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ballico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ballicu / _# 
\akl ballicu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ballico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ballicu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="27348b90-0447-486b-b8dc-098d58158942" ownerguid="08ecb774-7406-44b7-8447-894102b78ec9"> -<Form> -<AUni ws="qvm-x-ach">walcash</AUni> -<AUni ws="qvm-x-acl">walcash</AUni> -<AUni ws="qvm-x-akh">walkash</AUni> -<AUni ws="qvm-x-akl">walkash</AUni> -<AUni ws="qvm-x-ame">walkash</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="27378db6-3d26-4667-9e88-61ac7980c5f7" ownerguid="7fb6d72a-958e-4289-ab6d-e1e5a2a9c52e"> -<Form> -<AUni ws="qvm-x-ach">ushtüchi</AUni> -<AUni ws="qvm-x-acl">ushtöchi; ushtöchi; ushtöche</AUni> -<AUni ws="qvm-x-akh">ushtüchi</AUni> -<AUni ws="qvm-x-akl">ushtöchi; ushtöchi; ushtöche</AUni> -<AUni ws="qvm-x-ame">ushtüchi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="273cede5-daa5-4e7b-8c79-a1f7dd710973" ownerguid="7648040b-0aa5-4d9a-8f13-ffd066b81602"> -<ExampleWords> -<AUni ws="en">long, lengthy, extensive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is long?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="273ed438-255c-4fec-83dd-089b21984d46"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">culandru</AUni> -<AUni ws="qvm-x-acl">culandru; culandru; culandro</AUni> -<AUni ws="qvm-x-akh">culandru</AUni> -<AUni ws="qvm-x-akl">culandru; culandru; culandro</AUni> -<AUni ws="qvm-x-ame">culandru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+culantro.2</AUni> -<AUni ws="qvm-x-acl">+culantro.2</AUni> -<AUni ws="qvm-x-akh">+culantro.2</AUni> -<AUni ws="qvm-x-akl">+culantro.2</AUni> -<AUni ws="qvm-x-ame">+culantro.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.244" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="64347e91-8f49-4870-9f41-a3cd538bf696" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+culantro.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e978ce0a-1aef-4bb8-9e2c-88cc517732b2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="636e6a15-a7dc-4464-8625-e54fb5e8f350" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +culantro.2 
\entryTyp root 
\gENG cilantro 
\gSPN culantro 
\e +culantro.2 
\c N0 
\mp +assimilated 
\ach culandru 
\akh culandru 
\acl culandru / _# 
\acl culandru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl culandro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl culandru / _# 
\akl culandru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl culandro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame culandru</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="273ef9cc-651e-4fdb-8f65-39e117325c50" ownerguid="e5bb5cac-ce9b-4bc3-863d-7ca471ff4651"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="8b8510be-1a87-4ca8-93cf-1e23142332b7" t="o" /> -<objsur guid="7d1a08a0-11e2-4bfa-a72b-54b0ef8c72ed" t="o" /> -<objsur guid="7f71d241-a7e6-412f-815c-7ac993b090e8" t="o" /> -<objsur guid="a66e5867-59c0-4dcd-b258-d49f3e83f68d" t="o" /> -<objsur guid="d41284f9-d7c6-4080-b48b-8e8b47a73a03" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="273f2f47-a9b3-495b-b3a0-a73b0d367efc" ownerguid="207d3ddc-dee9-43db-be01-56ed6a5e161f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="273f4956-f79f-4b1e-b552-466280a65e60" ownerguid="a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f"> -<Abbreviation> -<AUni ws="en">2.3.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to showing something to someone so that they can see it--to cause someone to see something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Show, let someone see</AUni> -</Name> -<Questions> -<objsur guid="eb8f8d9b-8bad-4d09-b05a-fefe5d99a410" t="o" /> -<objsur guid="1bb0436f-0422-4281-a8ee-df82643fb28a" t="o" /> -<objsur guid="28a8c3bc-4c61-45f2-b3b2-9ca230b32503" t="o" /> -<objsur guid="b47eafdc-7965-4830-b96e-49a59fdad3d2" t="o" /> -<objsur guid="7f72dc39-81cc-416e-bc5a-f6103a58e59d" t="o" /> -<objsur guid="a995d9d3-e7d3-469b-b571-6e34d5f25d8c" t="o" /> -<objsur guid="39b9a555-7a81-457b-bb8a-96faf1eddf80" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="4093bfe8-54b3-4ffc-bfe3-3999279840b5" t="r" /> -<objsur guid="8225de87-35a3-4c7a-b35c-f45b152caebe" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="27423fe5-3716-4bfb-a42b-d20e5b78167f" ownerguid="78e69fe7-3b10-4c63-978c-ad8026cd9808"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">acuse</AUni> -<AUni ws="es">reprender</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9c5524e4-e0dd-4d3c-9f72-0d1be7e50ce1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="274597dc-b3d1-4ebe-899b-40b12ce65453" ownerguid="809aad69-630b-4f0f-9556-5f03c800bbe0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dry</AUni> -<AUni ws="es">secar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="759ac4db-d4bc-453b-bc58-69f7a42362df" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2748d3bf-7ad4-47d0-8df4-a3f956ccb088" ownerguid="ebe651d9-2313-486c-8252-140e2a613ffa"> -<Form> -<AUni ws="qvm-x-ach">domingu</AUni> -<AUni ws="qvm-x-acl">domingu; domingu; domingo</AUni> -<AUni ws="qvm-x-akh">domingu</AUni> -<AUni ws="qvm-x-akl">domingu; domingu; domingo</AUni> -<AUni ws="qvm-x-ame">domingu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="274b1f42-bcdf-4d28-a509-3eccf4fa6b56" ownerguid="6a0d81eb-93c1-406d-8b29-04f710ef5eed"> -<Gloss> -<AUni ws="en">SIM3</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="845afc45-963c-49a0-ac56-937fd0c2349e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="275201ba-67a2-4013-b5c6-43496c67b974"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ra:tu</AUni> -<AUni ws="qvm-x-acl">ra:tu; ra:tu; ra:to</AUni> -<AUni ws="qvm-x-akh">ra:tu</AUni> -<AUni ws="qvm-x-akl">ra:tu; ra:tu; ra:to</AUni> -<AUni ws="qvm-x-ame">ra:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rato</AUni> -<AUni ws="qvm-x-acl">+rato</AUni> -<AUni ws="qvm-x-akh">+rato</AUni> -<AUni ws="qvm-x-akl">+rato</AUni> -<AUni ws="qvm-x-ame">+rato</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.287" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="52ced6e6-6813-460f-9f6b-1f4a39994517" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rato</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="06f4f7a5-2404-45e3-9493-717c1527d9d1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c70ec5b4-208f-4dde-add7-4f4813371448" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rato 
\entryTyp root 
\gENG moment 
\gSPN rato 
\e +rato 
\c N0 
\ach ra:tu 
\akh ra:tu 
\acl ra:tu / _# 
\acl ra:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ra:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ra:tu / _# 
\akl ra:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ra:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ra:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="275280b9-3886-4637-b9e7-07e96f0bfa4a" ownerguid="afa77a2a-8b0f-4a39-91bc-040e90ffbb3a"> -<ExampleWords> -<AUni ws="en">happy, happily, cheerful, cheerfully, chipper, content, contented, contentedly, glad, gladly, jaunty, merry, mirthful, pleased, satisfied</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels happy?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2755e81a-94e7-4509-8f0c-84dc79a05d5c" ownerguid="c2563ea4-c463-45ec-962e-938f8f832519"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="13e8749b-7e3f-4446-b1e9-27e06d404381" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="275d055e-4559-4f35-865e-249383132be7" ownerguid="b179244b-7f64-4aa2-bc77-417eaf8c17c7"> -<Form> -<AUni ws="qvm-x-ach">gaviöta</AUni> -<AUni ws="qvm-x-acl">gaviöta</AUni> -<AUni ws="qvm-x-akh">gaviöta</AUni> -<AUni ws="qvm-x-akl">gaviöta</AUni> -<AUni ws="qvm-x-ame">gaviöta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="275de9ce-3fdc-4230-8731-90c205d29c0f" ownerguid="311b5dab-0433-4cba-9928-2d0b656c696d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="275e3dd9-2efe-4997-8167-1463dc893b26" ownerguid="5e3de2f1-e0d3-4153-931c-4edc342a30b1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="275e50b7-c863-4528-a3e6-cae117ead8a6" ownerguid="1a635032-6e13-4a56-aa03-6c6a015c502e"> -<ExampleWords> -<AUni ws="en">have doubts, have reservations, have misgivings, have mixed feelings, have qualms, hesitant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to not being sure whether you should do something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="275e6120-cb23-4690-b136-7b93b7ea3081" ownerguid="05472990-3f51-40b3-bca8-df3cf383328b"> -<ExampleWords> -<AUni ws="en">make a speech, give a speech, preach, sermonize, teach, lecture (v), give a talk on, address (v), orate, public speaking</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to making a speech?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="275e8994-3b50-4690-b349-12e6f1b359a8" ownerguid="e5bb5cac-ce9b-4bc3-863d-7ca471ff4651"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="013edc49-6b0f-426e-ae2c-6f0ed77cdefd" t="o" /> -<objsur guid="576944bf-f90c-4d91-863d-7090961e1f11" t="o" /> -<objsur guid="2d457e99-b9f8-47b1-9b92-4a753ff32fc7" t="o" /> -<objsur guid="0921a29c-703b-4cb8-9094-4d7b8fbdd189" t="o" /> -<objsur guid="f3514abb-723c-4fab-99f2-1fdbf786322b" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="275f048d-f5d1-4d7c-81e2-6e45df03773d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pagas</AUni> -<AUni ws="qvm-x-acl">pagas</AUni> -<AUni ws="qvm-x-akh">paqas</AUni> -<AUni ws="qvm-x-akl">paqas</AUni> -<AUni ws="qvm-x-ame">paqas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*paqas</AUni> -<AUni ws="qvm-x-acl">*paqas</AUni> -<AUni ws="qvm-x-akh">*paqas</AUni> -<AUni ws="qvm-x-akl">*paqas</AUni> -<AUni ws="qvm-x-ame">*paqas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.699" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d48c24a3-88d9-4162-a4d8-18f9936c543e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*paqas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c7102aac-4a4b-43d2-8fd2-8e67461ca1c1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b74b4a19-b366-4cc1-a3f2-5047193f19cb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *paqas 
\entryTyp root 
\gENG night 
\gSPN noche 
\e *paqas 
\c N0 
\mp +FinalC 
\ach pagas 
\akh paqas 
\acl pagas 
\akl paqas 
\ame paqas</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="2762fb71-b8ac-48e9-9929-98ebbd9d11de" ownerguid="d83a1fec-6b16-4327-ab5d-328aa4f6a678"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="2763a576-6e04-4678-a3ac-29e09aea277b" ownerguid="097c4430-fda8-4a6d-8886-df2ded026dc6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">early</AUni> -<AUni ws="es">temprano</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b0557124-8d2c-47f0-a658-84d2830d0a30" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="27655c2e-2bb5-4474-a861-ca0d9269a593" ownerguid="1017cbc3-0dfb-4930-9881-28f96784035c"> -<ExampleWords> -<AUni ws="en">coast, glide, float</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to continuing to move without trying to speed up or slow down?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="276765c8-1f3e-4a89-9b71-337c760a013a" ownerguid="da3c18df-1023-4ef1-8a28-3b7549604028"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pick</AUni> -<AUni ws="es">coger</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7a6331fc-4eae-42a7-9da0-de5e49481187" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="27679469-3d91-45c2-869f-6d168739db1c" ownerguid="589c760d-b110-4325-934e-2560d627ebba"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">female.in.law</AUni> -<AUni ws="es">nuera</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c41c60cc-83bf-48bb-8ded-b37916944eab" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="276ad76d-3e1f-476b-812e-997a9b896053" ownerguid="1c6c2696-4676-4fa8-9cbe-3ccde7d376dc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">on.top</AUni> -<AUni ws="es">encima</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="44de1025-7653-40b2-a502-52367b4e8af9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="276b5d68-0839-45da-93fa-b8d604b80136" ownerguid="e0959576-1ac4-4900-8cec-cbf47580cd59"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="276d4677-a7d0-412d-b6d3-9a10d0f54428" ownerguid="6601b6a4-645a-47fb-8275-bfe335210009"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">blanket</AUni> -<AUni ws="es">frazada</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dc11f8c6-ae04-4674-ad9b-fedd42b5c97e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="27708f10-c681-4a29-9e98-3d3b7eb1f806" ownerguid="0c21ae3d-10b1-481f-8d8f-66e2590c4578"> -<ExampleWords> -<AUni ws="en">be lazy, lazy person, idle, dally, idler, do-nothing, loafer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is lazy?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2771f533-e3b5-4ddf-80b1-6014cb18a067" ownerguid="439cc8c7-7109-4d49-8091-7fff68338f16"> -<Form> -<AUni ws="qvm-x-ach">ajaa</AUni> -<AUni ws="qvm-x-acl">ajaa</AUni> -<AUni ws="qvm-x-akh">ajaa</AUni> -<AUni ws="qvm-x-akl">ajaa</AUni> -<AUni ws="qvm-x-ame">ahaa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="2774985c-6fda-4084-9dec-afa01055e39f" ownerguid="cc8896fc-fb52-48aa-853e-8a145e0ebb6e"> -<Form> -<AUni ws="qvm-x-ach">legli</AUni> -<AUni ws="qvm-x-acl">legli; legle</AUni> -<AUni ws="qvm-x-akh">leqli</AUni> -<AUni ws="qvm-x-akl">leqli; leqle</AUni> -<AUni ws="qvm-x-ame">liqli</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="277518d3-62dc-4328-99e4-3406fcbe494d" ownerguid="f518e5fa-7656-4b9f-9442-fdbcf72c5482"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">touch</AUni> -<AUni ws="es">tocar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e6049c07-418d-4d57-afa7-754207018596" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="2777249f-9706-4b64-81dd-0fc6f934766f" ownerguid="4c2996fe-c80e-49aa-8b03-eadc2298f7b5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">weak</AUni> -<AUni ws="es">débil</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="782baa7b-8a35-4a19-a060-9db9414e00ed" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="277a09ec-b04b-418a-ab8a-8c219b3ceeb0" ownerguid="3b2de55c-317a-4c5a-8732-7df8b74be33c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.crack</AUni> -<AUni ws="es">rajar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7564abb8-fd51-44a2-8e1d-ce0ddbd6e7ac" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="277bf9f3-4b94-4f47-99b1-235ee8a476a9" ownerguid="8841af5e-74e6-4c5d-a313-ba9aa7fdb78b"> -<ExampleWords> -<AUni ws="en">on your feet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) How do you order someone to stand?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="278154d8-639f-45ca-afbb-6908c7c2361e" ownerguid="31a7ec5f-da68-429d-99c9-6cf84807ddfb"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="27876569-50ed-4bcb-869d-03ad02234416" ownerguid="35faefb3-7498-4735-9b05-e7035dd368fc"> -<ExampleWords> -<AUni ws="en">drought, blight, disease, locusts, insect plague, storm, exhausted soil, bad seed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What causes crop failure?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="278a0d7b-23fc-4092-a30b-e0525204c698"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">:shi</AUni> -<AUni ws="qvm-x-acl">:shi; :she</AUni> -<AUni ws="qvm-x-akh">:shi</AUni> -<AUni ws="qvm-x-akl">:shi; :she</AUni> -<AUni ws="qvm-x-ame">:shi</AUni> -</Custom> -<Comment> -<AStr ws="en"> -<Run ws="en">the suffix begins with length</Run> -</AStr> -</Comment> -<DateCreated val="2022-9-23 18:26:20.518" /> -<DateModified val="2022-10-15 16:11:3.509" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cb1c2160-2e1e-468e-b07f-a1e39e130d10" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">HELP</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="19eb2825-30d1-416a-8b25-408b37e64c35" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b2cda79e-3f2c-45e2-9cfb-72c73e92145a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx HELP 
\entryTyp suffix 
\gENG HELP 
\gSPN AYUD 
\e HELP 
\c V1/V2 V2/V2 
\o 000 
\mp +mlowers +foreshortens 
\ach :shi 
\akh :shi 
\acl :shi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl :she +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl :shi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl :she +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame :shi 
\mp +FinalI 
\mcc HELP / [TakeHELP] ..._ 
\mcc HELP / UP IN ~_ 
\mcc HELP / UP IMPFV1 ~_ 
\mcc HELP / REFDIR IN ~_ AFAR 
\mcc HELP / REF IMPFV1 ~_ AFAR 
\mcc HELP / PASS IN ~_ AFAR 
\mcc HELP / PASS IMPFV1 ~_ AFAR 
\mcc HELP / *sharkU IN ~_ 
\mcc HELP / *sharkU IMPFV1 ~_</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="278bc00f-d42a-4e99-8433-5a06acfca7f9" ownerguid="d79e6547-9b93-484d-b7bf-c64c2625a319"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">grated.potato</AUni> -<AUni ws="es">papa.rellada</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c1faafc7-eb8b-44e8-a247-fe0322799722" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="278ed943-d968-43c7-93d2-5e709d1f40a5" ownerguid="ff0379d4-2c69-4b74-a08b-9e7d5e6f867b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 30.32,33 lapan fuerzayquiwan sengayquita sinyacur yawarta jorgushgayquinogmi</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="278fccdc-ac7f-470a-afa3-f9ade881d8cd" ownerguid="fb6840e2-11f3-434c-bb10-e35bbe7d80f1"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="278fd359-901a-40c2-adfe-dc4a27af3c50" ownerguid="fc193988-26ca-49e9-849a-b12456d98792"> -<ExampleWords> -<AUni ws="en">crazy, mad, insane, berserk, barmy, deranged, dotty, batty, flaky</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is crazy?</AUni> -</Question> -</rt> -<rt class="MoInflAffMsa" guid="2790cea0-6fc1-4d02-ae0a-c73ee8e5d03e" ownerguid="0ea972e6-0904-41bb-977b-7ee45ab4b91b"> -<PartOfSpeech> -<objsur guid="a4fc78d6-7591-4fb3-8edd-82f10ae3739d" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="f9e1228b-4c5b-4e23-bd04-d513eddcbaea" t="r" /> -</Slots> -</rt> -<rt class="LexEntry" guid="2791f2fd-001c-4aa8-81fe-8062469d17fa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">payta</AUni> -<AUni ws="qvm-x-acl">payta</AUni> -<AUni ws="qvm-x-akh">payta</AUni> -<AUni ws="qvm-x-akl">payta</AUni> -<AUni ws="qvm-x-ame">payta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*payta</AUni> -<AUni ws="qvm-x-acl">*payta</AUni> -<AUni ws="qvm-x-akh">*payta</AUni> -<AUni ws="qvm-x-akl">*payta</AUni> -<AUni ws="qvm-x-ame">*payta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.769" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="790df96d-8f22-4004-9506-89a32e25badd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*payta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7ba9f0a8-a61f-4a02-adf7-ef7305874cff" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1acde26f-19cc-42d8-9731-ddeaf98565cf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *payta 
\entryTyp root 
\gENG entrust 
\gSPN encargar 
\e *payta 
\c V2 
\ach payta 
\akh payta 
\acl payta 
\akl payta 
\ame payta 
\mcc *payta / ~_ NMN 
\mcc *payta / ~_ [q] NEG</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="2796343c-5e2a-40c0-8973-a7f52083a32e" ownerguid="592c0a6f-2e24-4d4b-80e7-bace75879ff3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">lapa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">lapa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">lapa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">lapa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">lapa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="0655d4c4-dcff-4fca-931a-8964415a96b4" t="r" /> -</Morph> -<Msa> -<objsur guid="b16d0818-05dc-49f7-8cdf-889b0be5517e" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="2799d65e-8295-4291-8553-b0d5dde0e04c" ownerguid="28ec5f29-2535-4cf7-959b-1578521614bd"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="279a4072-adbe-4aa9-8176-e970ee4e3fd4" ownerguid="623a4526-0041-4dc5-b1d9-716b40e3d02a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">nga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">nga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">nqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">nqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="5dcad267-89ba-4258-b423-e84c57ba90ed" t="r" /> -</Morph> -<Msa> -<objsur guid="cdacd2fc-4611-457d-b88f-3c9c8bb345b9" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="279acb7e-451e-4986-995d-9c9a1bfc6772" ownerguid="ad61acd7-a41f-450c-89ff-6a1a758546d3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.heavy</AUni> -<AUni ws="es">ser.pesado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3d346683-aa99-438b-91fa-7fc4a8c46918" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="279acfc5-580e-4524-8634-ed61c121e50e" ownerguid="8cb0145f-33b0-4899-ade3-ca6a98fd48f3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="dd5a7ca5-61c6-48f7-a548-cec87d1a0aa0" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="85a83beb-f71a-4ed3-acae-95c801bd84e3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="27a24374-8763-4113-93e1-de647c698c2e" ownerguid="57ed66ee-f82b-4e80-955f-7492d85372b0"> -<ExampleWords> -<AUni ws="en">speak for, represent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to speaking for a group of people?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="27a558b3-c84b-4d59-894b-53f62204ac8f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yuri</AUni> -<AUni ws="qvm-x-acl">yuri; yure</AUni> -<AUni ws="qvm-x-akh">yuri</AUni> -<AUni ws="qvm-x-akl">yuri; yure</AUni> -<AUni ws="qvm-x-ame">yuri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yuri</AUni> -<AUni ws="qvm-x-acl">*yuri</AUni> -<AUni ws="qvm-x-akh">*yuri</AUni> -<AUni ws="qvm-x-akl">*yuri</AUni> -<AUni ws="qvm-x-ame">*yuri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.800" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0dd16e33-2dc1-4f16-b63f-d75858d53308" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yuri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="97d97ab2-ed30-4daa-a8de-2e03eb0ab92e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aa8241a0-5379-4e51-8c33-663491a3bdae" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yuri 
\entryTyp root 
\gENG be.born 
\gSPN nacer 
\e *yuri 
\c V1 
\mp +FinalI 
\ach yuri 
\akh yuri 
\acl yuri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl yure +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yuri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yure +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame yuri</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="27a7baa4-5df5-4f24-b958-9f45303f4cd8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">patro:na</AUni> -<AUni ws="qvm-x-acl">patro:na</AUni> -<AUni ws="qvm-x-akh">patro:na</AUni> -<AUni ws="qvm-x-akl">patro:na</AUni> -<AUni ws="qvm-x-ame">patro:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+patrona</AUni> -<AUni ws="qvm-x-acl">+patrona</AUni> -<AUni ws="qvm-x-akh">+patrona</AUni> -<AUni ws="qvm-x-akl">+patrona</AUni> -<AUni ws="qvm-x-ame">+patrona</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.767" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2baffc08-a706-4292-b5da-f1c4aaddd562" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+patrona</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ed29e7ab-79c9-44da-ba36-c906998ec471" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6f3020d2-25e5-4abb-93cd-2b6da07ed398" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +patrona 
\entryTyp root 
\gENG 
\gSPN patrona 
\e +patrona 
\c N0 
\ach patro:na 
\akh patro:na 
\acl patro:na 
\akl patro:na 
\ame patro:na</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="27b34c00-3d63-4d25-bea6-14002f31108a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">va:li</AUni> -<AUni ws="qvm-x-acl">va:li; va:le</AUni> -<AUni ws="qvm-x-akh">va:li</AUni> -<AUni ws="qvm-x-akl">va:li; va:le</AUni> -<AUni ws="qvm-x-ame">va:li</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+valer</AUni> -<AUni ws="qvm-x-acl">+valer</AUni> -<AUni ws="qvm-x-akh">+valer</AUni> -<AUni ws="qvm-x-akl">+valer</AUni> -<AUni ws="qvm-x-ame">+valer</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.341" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9c860c71-c009-4e8f-8c01-8183ae852138" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+valer</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="743601ad-61dc-4741-84e8-491f0a192a61" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="484778a1-cc8f-49db-809c-496b826188fa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +valer 
\entryTyp root 
\gENG be.worth 
\gSPN valer 
\e +valer 
\c V2 
\mp +FinalI 
\ach va:li 
\akh va:li 
\acl va:li +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl va:le +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl va:li +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl va:le +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame va:li</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="27b5a149-05a9-4663-bb4a-2592abb862ab"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tauga</AUni> -<AUni ws="qvm-x-acl">tauga</AUni> -<AUni ws="qvm-x-akh">tawqa</AUni> -<AUni ws="qvm-x-akl">tawqa</AUni> -<AUni ws="qvm-x-ame">tawqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tawqa</AUni> -<AUni ws="qvm-x-acl">*tawqa</AUni> -<AUni ws="qvm-x-akh">*tawqa</AUni> -<AUni ws="qvm-x-akl">*tawqa</AUni> -<AUni ws="qvm-x-ame">*tawqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.835" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="966245e8-9bae-4bed-8ac7-7f428e335215" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tawqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="efa53d25-7889-421a-997d-0c8f2c34c3f3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0f2d9d38-80e7-4819-889d-2020243c8a7d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tawqa 
\entryTyp root 
\gENG collect 
\gSPN juntar 
\e *tawqa 
\c V2 
\ach tauga 
\akh tawqa 
\acl tauga 
\akl tawqa 
\ame tawqa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="27bb6b5a-6d40-4c62-8d2f-d2fad5a11013" ownerguid="0dd57450-628a-4eaf-8ce8-12b18b43ea2a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ZEC 11.2 Basáncho cag encina yöracuna, tupïdu munti ushacashga captin wagapäcuy.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="27bb9e53-4625-4d0d-ae06-8354c010943f" ownerguid="7d1f52aa-a865-4c5a-8e03-78166153d9ae"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="27c05c03-8a3e-41e0-9f5e-69a5e5bc3997" ownerguid="fb2de51f-da06-435c-8dcf-320f193f47bc"> -<Gloss> -<AUni ws="en">GOAL</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="78b4abbf-5b84-4215-b706-3b23cbb0dd3d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="27c40b9a-1c91-4519-a95b-8241829c338a" ownerguid="0e312109-1cc2-4645-96f5-97caeaf7c869"> -<Form> -<AUni ws="qvm-x-ach">andas</AUni> -<AUni ws="qvm-x-acl">andas</AUni> -<AUni ws="qvm-x-akh">andas</AUni> -<AUni ws="qvm-x-akl">andas</AUni> -<AUni ws="qvm-x-ame">andas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="27ca95e0-2cd0-4a74-a7f0-2a7ee3f38c2f" ownerguid="1c359042-0bd9-4cba-ae3d-a79bb3be6c48"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="27cac4ef-4886-4de9-96ee-8ecd838cf6a4" ownerguid="db1921e9-dd6c-4477-ab3d-27218a5c6b70"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="27cd1da3-50b6-4fbe-aaf4-0b4745d3ee36" ownerguid="dafda84e-19f2-457c-b1dd-b9a92fdf240f"> -<Form> -<AUni ws="qvm-x-ach">luta</AUni> -<AUni ws="qvm-x-acl">luta</AUni> -<AUni ws="qvm-x-akh">luta</AUni> -<AUni ws="qvm-x-akl">luta</AUni> -<AUni ws="qvm-x-ame">luta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="27cd74c6-8088-4553-8100-53ad87c89cca" ownerguid="59fd41ae-f85a-4799-892a-679c1c7784df"> -<Form> -<AUni ws="qvm-x-ach">noticia</AUni> -<AUni ws="qvm-x-acl">noticia</AUni> -<AUni ws="qvm-x-akh">noticia</AUni> -<AUni ws="qvm-x-akl">noticia</AUni> -<AUni ws="qvm-x-ame">noticia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="27ce598a-7654-4a41-8ed2-a0474e33fb73" ownerguid="29211892-1ee2-4732-b797-4c444e60e55b"> -<Form> -<AUni ws="qvm-x-ach">chiriyampu</AUni> -<AUni ws="qvm-x-acl">chiriyampu; chiriyampu; chiriyampo</AUni> -<AUni ws="qvm-x-akh">chiriyampu</AUni> -<AUni ws="qvm-x-akl">chiriyampu; chiriyampu; chiriyampo</AUni> -<AUni ws="qvm-x-ame">chiriyampu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="27d0a3ff-6769-49d3-a8f5-f98a9eb3b196" ownerguid="d85d0838-a9e4-4787-8fce-7d0466bc24b9"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Mary washed the dress <three times>.; I have lent John money <many times>.; I have lent John money <twice>.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">once, one time, single time, twice, two times, three times, thrice, four times, many times</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate the number of times something has happened? ("He fell down three times.")</AUni> -</Question> -</rt> -<rt class="LexSense" guid="27d0d5ca-0daf-480a-9df8-f0e754d2b9c0" ownerguid="71816e58-0789-45cf-91cc-c8934a996f4a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">señalar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="60da7964-9217-4e41-9534-33ab0d30884b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="27d27c8f-c91f-406e-a9de-dbbf2fdc2230" ownerguid="04752883-aa3e-42a2-bd42-454e9cd99b11"> -<ExampleWords> -<AUni ws="en">I figure that..., I conclude that...</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) inference from reasoning: the speaker infers the situation described on the basis of intuition, logic, a dream, previous experience, or some other mental construct.</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="27d2d722-894d-4847-8657-3e81d4ab8abb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mojusya; mojusya:</AUni> -<AUni ws="qvm-x-acl">mojusya; mojusya:</AUni> -<AUni ws="qvm-x-akh">mojusya; mojusya:</AUni> -<AUni ws="qvm-x-akl">mojusya; mojusya:</AUni> -<AUni ws="qvm-x-ame">mojusya; mojusya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mohos+ya:</AUni> -<AUni ws="qvm-x-acl">+mohos+ya:</AUni> -<AUni ws="qvm-x-akh">+mohos+ya:</AUni> -<AUni ws="qvm-x-akl">+mohos+ya:</AUni> -<AUni ws="qvm-x-ame">+mohos+ya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.467" /> -<DateModified val="2022-10-10 21:18:47.204" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a71b28db-8e68-494b-baff-830dd8708b27" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mohos+ya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dbc7c02c-45ec-49ae-b76b-ac0c42a91ad1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="834215e0-814a-4fd7-9704-5c138980952b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mohos+ya: 
\entryTyp root 
\gENG 
\gSPN 
\e +mohos+ya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach mojusya foreshortened 
\ach mojusya: 
\mp +underlong 
\akh mojusya foreshortened 
\akh mojusya: 
\acl mojusya foreshortened 
\acl mojusya: 
\akl mojusya foreshortened 
\akl mojusya: 
\mp +underlong 
\ame mojusya foreshortened 
\ame mojusya: 
\i 2KI 21.13 Ganra plätu mojusyashga captin ucparcur shumag limpiashgannogmi Jerusalén marcatapis limpiashag.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="27d309b3-642e-4231-a10c-d18fa78f27c4" ownerguid="a5855a80-ede7-423d-9f7b-428cb68d910b"> -<Form> -<AUni ws="qvm-x-ach">unapis</AUni> -<AUni ws="qvm-x-acl">unapis</AUni> -<AUni ws="qvm-x-akh">unapis</AUni> -<AUni ws="qvm-x-akl">unapis</AUni> -<AUni ws="qvm-x-ame">unapis</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="27d416a7-e31d-41b6-9849-8da33931189b" ownerguid="0108ee33-63b3-4d4c-8937-4bbce4d62898"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="27d6042c-7fb2-4e3d-8ce0-93399afb84e7" ownerguid="8ba297c7-4197-4846-b90f-5915d87763df"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="27d6357d-7d97-47f6-b471-2628e535cf0a" ownerguid="64fa0ba7-73cb-40e9-a8d2-3e61fff146c9"> -<ExampleWords> -<AUni ws="en">hair color, black, brown, brunette, blond, auburn, red, redhead, dyed, bleached</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe the color of a person's hair?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="27d97a65-3e6e-490c-8fac-047a6ba84a11" ownerguid="9a466e3d-e249-4c70-a52a-395c4d4fd851"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.shoulder</AUni> -<AUni ws="es">hombrear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8a03b9ba-52e3-4fa1-874d-862d5eecf4a7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="27dcdca5-4cc7-4fd4-839b-cca680aa4b1b" ownerguid="6740fdcd-7f41-4a62-a3b7-90502edb44f3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="FsFeatStruc" guid="27dd9aa5-d7e8-447c-967e-762edd338dee" ownerguid="3e0194d5-abf7-4735-8f91-d383c71f24d6"> -<FeatureSpecs> -<objsur guid="609518e6-51e7-4638-8ace-1891bef48e16" t="o" /> -</FeatureSpecs> -<Type> -<objsur guid="efc7ecdf-44ed-4b11-9eef-41aaa905ca65" t="r" /> -</Type> -</rt> -<rt class="LexEntry" guid="27e2cc8b-8f5f-4090-8b41-da5f2d9d4f6f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">dere:chu</AUni> -<AUni ws="qvm-x-acl">dere:chu; dere:chu; dere:cho</AUni> -<AUni ws="qvm-x-akh">dere:chu</AUni> -<AUni ws="qvm-x-akl">dere:chu; dere:chu; dere:cho</AUni> -<AUni ws="qvm-x-ame">dere:chu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+derecho</AUni> -<AUni ws="qvm-x-acl">+derecho</AUni> -<AUni ws="qvm-x-akh">+derecho</AUni> -<AUni ws="qvm-x-akl">+derecho</AUni> -<AUni ws="qvm-x-ame">+derecho</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.384" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d45ba2f2-6b2d-4f58-992a-b76c0edb392e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+derecho</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1d09d263-026e-4ce3-8808-812fd37077f2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="419bb91d-df23-47ce-8f0c-4a3c65278644" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +derecho 
\entryTyp root 
\gENG 
\gSPN 
\e +derecho 
\c N0 
\ach dere:chu 
\akh dere:chu 
\acl dere:chu / _# 
\acl dere:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl dere:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl dere:chu / _# 
\akl dere:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl dere:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame dere:chu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="27e376f1-c650-41d5-add8-c9c462c23ee9" ownerguid="6daa3b80-7c0c-4f3a-93ae-d097c1cb5899"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">prune</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bd9dddad-d821-46f0-9525-d95cf63b38ab" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="27e4482a-b0ae-4881-b14c-5bd8b80f6140" ownerguid="02b0fb37-fa6f-477c-b80b-17d424313e7b"> -<Form> -<AUni ws="qvm-x-ach">profesora</AUni> -<AUni ws="qvm-x-acl">profesora</AUni> -<AUni ws="qvm-x-akh">profesora</AUni> -<AUni ws="qvm-x-akl">profesora</AUni> -<AUni ws="qvm-x-ame">profesora</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="27e6e28e-18de-4515-9bbe-3a4b2893480f" ownerguid="8497fb66-8b91-46b9-a0d5-fb9385319561"> -<ExampleWords> -<AUni ws="en">disgusting, revolting, horrible, bad, off, awful, distasteful, terrible, unpalatable, unsavory, yucky</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe something that tastes bad?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="27e6fd3c-c2d6-49d6-9b64-d85936575049" ownerguid="88cc9efc-129d-4378-b3c7-5100abf6e9f7"> -<Form> -<AUni ws="qvm-x-ach">paylay</AUni> -<AUni ws="qvm-x-acl">paylay</AUni> -<AUni ws="qvm-x-akh">paylay</AUni> -<AUni ws="qvm-x-akl">paylay</AUni> -<AUni ws="qvm-x-ame">paylay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="27e74a51-5c7c-4462-a610-b9e1574dba20"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa</AUni> -<AUni ws="qvm-x-acl">pa</AUni> -<AUni ws="qvm-x-akh">pa</AUni> -<AUni ws="qvm-x-akl">pa</AUni> -<AUni ws="qvm-x-ame">pa</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.487" /> -<DateModified val="2022-10-16 16:8:44.784" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="3" /> -<LexemeForm> -<objsur guid="6fe49b5e-093a-457b-9f14-02b68e8cec63" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">BCM2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1fb682b6-7646-4105-a588-b94332dd1288" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f52e08c0-435c-4dbe-ad80-845a3b04af64" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx BCM2 
\entryTyp suffix 
\gENG BCM2 
\gSPN CNV2 
\e BCM2 
\c N0/V1 
\ach pa 
\akh pa 
\acl pa 
\akl pa 
\ame pa 
\o 020 
\mcc BCM2 / [TakeBCM2] _</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="27e765af-1968-4778-96d2-2b0101f69d4c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">racuy</AUni> -<AUni ws="qvm-x-acl">racuy</AUni> -<AUni ws="qvm-x-akh">rakuy</AUni> -<AUni ws="qvm-x-akl">rakuy</AUni> -<AUni ws="qvm-x-ame">rakuy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rakuy</AUni> -<AUni ws="qvm-x-acl">*rakuy</AUni> -<AUni ws="qvm-x-akh">*rakuy</AUni> -<AUni ws="qvm-x-akl">*rakuy</AUni> -<AUni ws="qvm-x-ame">*rakuy</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.246" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2c75276a-1eb3-471c-8f26-a6cb07ced47c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rakuy</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="32a4629d-1358-4e31-b3f3-d31119bd6e7a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dc3f5d4d-9957-41cb-9d77-49cd17091fbb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rakuy 
\entryTyp root 
\gENG thick 
\gSPN grueso 
\e *rakuy 
\c N0 
\mp +FinalC 
\ach racuy 
\akh rakuy 
\acl racuy 
\akl rakuy 
\ame rakuy 
\mcc *rakuy / _ [poss]</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="27e82ff8-b987-44f1-82b6-eb06cc399ff0" ownerguid="3a328ddb-10bf-4f79-844c-4fab5dae99c7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">oar</AUni> -<AUni ws="es">remo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="501292ea-f67c-422a-ac23-b6f1dcb8cf7a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="27eb4b33-9d82-4994-b8bb-f02a9910e556" ownerguid="51b16b91-7097-4e98-a371-4c32f2c566e1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">deep</AUni> -<AUni ws="es">profundo?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e8d8e6d1-cb6a-43b4-ae0e-5eb49d4ddd90" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="27eb7861-04ed-42d1-b5e7-8a4c21fd798f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nirag</AUni> -<AUni ws="qvm-x-acl">nirag</AUni> -<AUni ws="qvm-x-akh">niraq</AUni> -<AUni ws="qvm-x-akl">niraq</AUni> -<AUni ws="qvm-x-ame">niraq</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*niraq</AUni> -<AUni ws="qvm-x-acl">*niraq</AUni> -<AUni ws="qvm-x-akh">*niraq</AUni> -<AUni ws="qvm-x-akl">*niraq</AUni> -<AUni ws="qvm-x-ame">*niraq</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.558" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a01be9f7-4647-40c3-96b5-fc28512267ea" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*niraq</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0621de40-b91e-4036-a210-9544fa697411" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="86e002fe-3918-4b1c-83f0-8e36424be2d3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *niraq 
\entryTyp root 
\gENG 
\gSPN 
\e *niraq 
\c N0 
\mp +FinalC 
\ach nirag 
\akh niraq 
\acl nirag 
\akl niraq 
\ame niraq 
\mcc *niraq / ~_# ' si ocurre sin sufijo, debe ser sufijo</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="27eba62a-9019-455a-aa63-fe963de1f559" ownerguid="b0905fa9-2f90-410b-8eb5-7c7944c4f0f9"> -<ExampleWords> -<AUni ws="en">fornicate, fornication, deflower (a virgin)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to sex before marriage?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="27ee8fbf-dec0-4435-879c-e4d91d1ec4f5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">azue:la</AUni> -<AUni ws="qvm-x-acl">azue:la</AUni> -<AUni ws="qvm-x-akh">azue:la</AUni> -<AUni ws="qvm-x-akl">azue:la</AUni> -<AUni ws="qvm-x-ame">azue:la</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+azuela</AUni> -<AUni ws="qvm-x-acl">+azuela</AUni> -<AUni ws="qvm-x-akh">+azuela</AUni> -<AUni ws="qvm-x-akl">+azuela</AUni> -<AUni ws="qvm-x-ame">+azuela</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.910" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="05af1415-817b-437c-8199-c4f650141a2e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+azuela</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="98ffa023-ef13-4edf-b2ad-b513262e0a5a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a4355894-ab4b-4f05-850d-66ce11affc7f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +azuela 
\entryTyp root 
\gENG hook 
\gSPN azuela 
\e +azuela 
\c N0 
\ach azue:la 
\akh azue:la 
\acl azue:la 
\akl azue:la 
\ame azue:la</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="27f0a69e-85d4-4811-8490-a13f76a62120" ownerguid="b3779c87-0f69-469c-8014-943e0338f9bc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">daughter</AUni> -<AUni ws="es">hija</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d1d364b6-495d-4b03-b0e1-ff765aa11d56" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="27f57b6f-49c4-4fa5-9ac0-fe85be2e566e" ownerguid="f30563f9-3a8b-4ca3-a632-77354009248b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">na</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">na</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">na</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">na</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">na</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38151a50-9c63-4a70-8bbb-e5cfc5339ad5" t="r" /> -</Morph> -<Msa> -<objsur guid="3afae7ea-b6f9-4990-9b80-c355228ee832" t="r" /> -</Msa> -</rt> -<rt class="WfiWordform" guid="27f5d266-52fb-4719-816c-fdb7226d59ec"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">IMPFV</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="27fb91f6-5df9-473b-bc10-a84ad1e35b9a" ownerguid="98e38521-8531-427b-b04e-65db6679710e"> -<Form> -<AUni ws="qvm-x-ach">yarcu; yarca</AUni> -<AUni ws="qvm-x-acl">yarcu; yarco; yarca</AUni> -<AUni ws="qvm-x-akh">yarku; yarka</AUni> -<AUni ws="qvm-x-akl">yarku; yarko; yarka</AUni> -<AUni ws="qvm-x-ame">yarku; yarka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="27fe9d67-c057-4c09-becc-a741aa2bcb97" ownerguid="50b5b065-147c-42de-8c5c-8b8b51e35306"> -<Form> -<AUni ws="qvm-x-ach">cäza</AUni> -<AUni ws="qvm-x-acl">cäza</AUni> -<AUni ws="qvm-x-akh">cäza</AUni> -<AUni ws="qvm-x-akl">cäza</AUni> -<AUni ws="qvm-x-ame">cäza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="27ff87a9-39a1-42ac-915a-5dca6db6dfe1" ownerguid="5bcf23fe-ca50-43bc-a10d-1184430aa39d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="0d777b9e-8995-4454-b224-aa55c18f4dee" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">reconcile</AUni> -<AUni ws="es">amistar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4afdf343-f240-4cd4-a807-a5d8fafea2bd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="27fff73c-45cd-46f5-afca-689034f533c7" ownerguid="5b5bcd42-09bb-4c2f-a2da-569cfa69b6ac"> -<ExampleWords> -<AUni ws="en">attention is divided</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to paying attention to more than one thing?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="28013fe4-a331-4794-a144-183f7d04712c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alabanza</AUni> -<AUni ws="qvm-x-acl">alabanza</AUni> -<AUni ws="qvm-x-akh">alabanza</AUni> -<AUni ws="qvm-x-akl">alabanza</AUni> -<AUni ws="qvm-x-ame">alabanza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+alabanza</AUni> -<AUni ws="qvm-x-acl">+alabanza</AUni> -<AUni ws="qvm-x-akh">+alabanza</AUni> -<AUni ws="qvm-x-akl">+alabanza</AUni> -<AUni ws="qvm-x-ame">+alabanza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.689" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="92cbc1e7-8c50-45ad-b6cd-c1d4f13b87d7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+alabanza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="82c8cf16-53af-4be5-80c1-3341ae8ae29d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a124f35b-ceb8-4906-86e2-b89e1a51fd49" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +alabanza 
\entryTyp root 
\gENG praise 
\gSPN alabanza 
\e +alabanza 
\c N0 
\ach alabanza 
\akh alabanza 
\acl alabanza 
\akl alabanza 
\ame alabanza</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="2801e582-fd5f-46da-b446-4dd5882c9bda" ownerguid="3430f8ab-f9ad-47af-a0f0-315210361573"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V2 V2/V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">CAUS</AUni> -<AUni ws="es">CAUS</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="2804261d-b8d1-4e39-aef4-b34ddaff6990"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">parpa</AUni> -<AUni ws="qvm-x-acl">parpa</AUni> -<AUni ws="qvm-x-akh">parpa</AUni> -<AUni ws="qvm-x-akl">parpa</AUni> -<AUni ws="qvm-x-ame">parpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*parpa</AUni> -<AUni ws="qvm-x-acl">*parpa</AUni> -<AUni ws="qvm-x-akh">*parpa</AUni> -<AUni ws="qvm-x-akl">*parpa</AUni> -<AUni ws="qvm-x-ame">*parpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.719" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f8de0bea-d704-41ea-9184-6f37b4a2926d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*parpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2c7a7290-619e-4703-82cf-b829b9825e3b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ea1e56b2-d19f-420a-b401-deea19be213f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *parpa 
\entryTyp root 
\gENG 
\gSPN mazamorra.seca 
\e *parpa 
\c N0 
\ach parpa 
\akh parpa 
\acl parpa 
\akl parpa 
\ame parpa</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="2804db36-0bf7-411a-981c-bdad79f62672" ownerguid="06980f1f-2d2d-48e9-b382-e0d3b4f4822b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">warmi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">warmi; warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">warmi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">warmi; warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">warmi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ddf5b3ec-6ef7-4a2a-b160-365cb7d372df" t="r" /> -</Morph> -<Msa> -<objsur guid="e9ece695-28de-48a2-aff1-266bce7d2a60" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="2806a25d-0f9d-4c0b-88e1-172d3d586e82" ownerguid="5386368c-d3e5-4ff4-88b0-f27c801a9d1d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dream</AUni> -<AUni ws="es">soñar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4fbf9207-4073-4d41-b19a-5795c43bd316" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="280877d4-880a-4df1-b171-82090da99aa5" ownerguid="696ba84e-5ae8-414d-8bc9-2564a77257ad"> -<Form> -<AUni ws="qvm-x-ach">ünicu</AUni> -<AUni ws="qvm-x-acl">ünicu</AUni> -<AUni ws="qvm-x-akh">ünicu</AUni> -<AUni ws="qvm-x-akl">ünicu</AUni> -<AUni ws="qvm-x-ame">ünicu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="280a78e7-b556-4d01-8c02-63e10b85e34a" ownerguid="639d387e-fed9-4ef5-9fe8-8788d1347c72"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="2810998c-d6cc-47a3-a946-66d0986a2767" ownerguid="d60faf11-cc6e-48db-8a13-82f86d78ab00"> -<Abbreviation> -<AUni ws="en">7.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.528" /> -<DateModified val="2022-9-23 16:55:8.528" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to moving something or someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Move something</AUni> -</Name> -<OcmCodes> -<Uni>480 Travel and Transportation</Uni> -</OcmCodes> -<Questions> -<objsur guid="3c40ff6f-f0d4-404f-9329-7c8118a2fcda" t="o" /> -<objsur guid="cb376633-7091-4b37-a386-357fb97be6cf" t="o" /> -<objsur guid="17711328-2b18-4bab-82a2-3ffdbffda4cb" t="o" /> -<objsur guid="a3cf0836-48b6-4347-b17f-979bab39baad" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="6430b89c-7077-418a-a558-51f0e3f2c1a6" t="o" /> -<objsur guid="d9f336cf-0682-4702-ab94-5ade755ddc64" t="o" /> -<objsur guid="e931da8a-efc1-46cb-836a-72fba4a1eb4f" t="o" /> -<objsur guid="3b4b947a-f223-4c87-8839-9f6237cda9f6" t="o" /> -<objsur guid="40590157-9412-4558-b0f7-311867b649cc" t="o" /> -<objsur guid="8b9f23f4-a147-4ea8-a13a-c5b1edc7f5e4" t="o" /> -<objsur guid="7c80f6ee-e76d-4903-aee6-7a33d1da3f75" t="o" /> -<objsur guid="991357dc-9f56-47ed-8790-85cbd5f9b06f" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="2812c5a6-0c5a-4896-8ead-d56cc48691dc" ownerguid="04272a3a-e644-4701-8b40-5b50e4775dde"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">camay</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">camay</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kamay</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kamay</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kamay</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f0b99234-0a2f-44c4-83ae-47801443b6b2" t="r" /> -</Morph> -<Msa> -<objsur guid="1829a081-bc32-4291-9767-5bec080e6a37" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="2813ad95-18a8-46b9-900c-0f1e6532c0f6" ownerguid="73499b8b-76fc-4121-8bfa-1bdebe537259"> -<ExampleWords> -<AUni ws="en">carnivore, carnivorous, meat eater, meat eating, predator, predatory, insectivore, insectivorous, herbivore, herbivorous, plant eating, omnivore, omnivorous, scavenger, parasite</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to animals that eat certain things?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="281456c0-3c60-461d-8dba-68bf7474783c" ownerguid="d7ca7972-220f-4f74-a0dd-cfd436b042b3"> -<Form> -<AUni ws="qvm-x-ach">monji; monje</AUni> -<AUni ws="qvm-x-acl">monji; monji; monje</AUni> -<AUni ws="qvm-x-akh">monji; monje</AUni> -<AUni ws="qvm-x-akl">monji; monji; monje</AUni> -<AUni ws="qvm-x-ame">monji; monje</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="28166177-6e50-4f57-97cd-3a79d8864049" ownerguid="df17c748-7c4b-457f-8415-fc6638e354ed"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/NOSUFF V2/NOSUFF N0/NOSUFF BN/NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">EXCL1</AUni> -<AUni ws="es">ADM1</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="af255979-788b-4a1f-a319-52bbd3287aa2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="28174ef9-89d2-4059-bc8c-32fef000368b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">institu:tu</AUni> -<AUni ws="qvm-x-acl">institu:tu; institu:tu; institu:to</AUni> -<AUni ws="qvm-x-akh">institu:tu</AUni> -<AUni ws="qvm-x-akl">institu:tu; institu:tu; institu:to</AUni> -<AUni ws="qvm-x-ame">institu:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+instituto</AUni> -<AUni ws="qvm-x-acl">+instituto</AUni> -<AUni ws="qvm-x-akh">+instituto</AUni> -<AUni ws="qvm-x-akl">+instituto</AUni> -<AUni ws="qvm-x-ame">+instituto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.830" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a466ebdf-8337-43a4-a0cd-fd5f87673d8f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+instituto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0bca0245-7de5-42e2-8e82-2dfd684802be" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b7fae644-e755-43e6-8961-8febad6ef4bd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +instituto 
\entryTyp root 
\gENG institute 
\gSPN instituto 
\e +instituto 
\c N0 
\ach institu:tu 
\akh institu:tu 
\acl institu:tu / _# 
\acl institu:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl institu:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl institu:tu / _# 
\akl institu:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl institu:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame institu:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="28197508-fbb5-4f3d-999e-6de0a1b2cc74" ownerguid="8684b125-b27f-4710-a39c-dde870d8fe34"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="281bfc6f-a948-424f-b42e-783b83744808"> -<Analyses> -<objsur guid="bfc8e70f-4069-4341-b965-d8ea0e9e09e4" t="o" /> -</Analyses> -<Checksum val="-682822117" /> -<Form> -<AUni ws="qvm-x-akh">lapan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="2821d970-f5ee-4909-857d-93eaa4f4085c" ownerguid="6e0c3542-ff20-47ef-9b51-0d3621577a68"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="282270ab-a085-45f8-a4c6-d62fc91e425a" ownerguid="c658f7a8-db8b-45a3-902f-dbb4631b50ed"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="28240e14-456e-4cc2-afd0-280d9ccb3b9f" ownerguid="3a9d62dc-08c7-4fc4-b628-97763eea9fce"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="282629f3-bb3b-4ab9-9389-2ffa51cf53b8" ownerguid="0de28f92-c851-413c-bb6c-3ad21f5e267f"> -<ExampleWords> -<AUni ws="en">Listen. Listen up. Hear me. Your attention please. Pay attention. Lend an ear. Mark my words. Hark.</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What do you say when you want someone to listen to you?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2827d3e2-eec1-4f19-a6a9-8dbb4cc1699c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ma</AUni> -<AUni ws="qvm-x-acl">ma</AUni> -<AUni ws="qvm-x-akh">ma</AUni> -<AUni ws="qvm-x-akl">ma</AUni> -<AUni ws="qvm-x-ame">ma</AUni> -</Custom> -<Comment> -<AStr ws="en"> -<Run ws="en">no length</Run> -</AStr> -</Comment> -<DateCreated val="2022-9-23 18:26:20.599" /> -<DateModified val="2022-10-16 15:19:18.661" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="35bd5de7-6155-406b-aa0c-5736e3901c1d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">1OJUST</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="984eb9db-3ffd-4471-90a6-dcb439c7fc2a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1104a58a-74ca-4f2a-bee1-2b3d3aaad64a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx 1OJUST 
\entryTyp suffix 
\gENG 1O 
\gSPN 1O 
\e 1OJUST 
\c V2/V1 
\o 070 
\mp +mlowers 
\ach ma 
\akh ma 
\acl ma 
\akl ma 
\ame ma 
\i EXO 14.15 Tsauraga Moisésta Tayta Dios caynog nergan: <<Israel runacuna aywananpag ninayquipa trucanga ¿imanirtag manacamalar caycanqui? 
\mcc 1OJUST / _ JUST</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="2828d9f1-32c1-4c69-8099-cba8f8e74ed8" ownerguid="dfbb1135-3552-4f84-8e4a-5f2ee2144bf3"> -<Form> -<AUni ws="qvm-x-ach">maläya</AUni> -<AUni ws="qvm-x-acl">maläya</AUni> -<AUni ws="qvm-x-akh">maläya</AUni> -<AUni ws="qvm-x-akl">maläya</AUni> -<AUni ws="qvm-x-ame">maläya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="282a720b-8428-42cf-93b7-fafbbcd11e6a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">u:li; u:li</AUni> -<AUni ws="qvm-x-acl">u:li; u:li; u:le</AUni> -<AUni ws="qvm-x-akh">u:li; u:li</AUni> -<AUni ws="qvm-x-akl">u:li; u:li; u:le</AUni> -<AUni ws="qvm-x-ame">u:li; u:li</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+uli</AUni> -<AUni ws="qvm-x-acl">+uli</AUni> -<AUni ws="qvm-x-akh">+uli</AUni> -<AUni ws="qvm-x-akl">+uli</AUni> -<AUni ws="qvm-x-ame">+uli</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.210" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="90d0a3a2-34ec-4419-b928-825813fa3823" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+uli</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="661c53cb-c7f6-49d4-befb-5774b7dc4308" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="610e7ece-893f-4356-913c-1d9228088b43" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +uli 
\entryTyp root 
\gENG plastic 
\gSPN plástico 
\e +uli 
\c N0 
\mp +FinalI 
\ach u:li / _# 
\ach u:li / ~_# 
\akh u:li / _# 
\akh u:li / ~_# 
\acl u:li / _# 
\acl u:li +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl u:le +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl u:li / _# 
\akl u:li +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl u:le +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame u:li / _# 
\ame u:li / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="282ac3a8-05d3-4b5d-be5d-4e72042c7a45" ownerguid="6566df15-fcc8-4856-b981-db7f8d833470"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">salvation</AUni> -<AUni ws="es">salvación</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7e7face4-c099-4822-97d7-e464592af9a5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="StStyle" guid="282f9ae7-d4dc-4c9b-93b5-413a7d3986b1" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="14" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Reversal-Vernacular</Uni> -</Name> -<Rules> -<Prop italic="invert"></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<Usage> -<AUni ws="en">Used for items in reversal entries that contain vernacular text.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="MoStemAllomorph" guid="283348ea-4944-41e6-9135-84889c63f362" ownerguid="bc102db5-fe31-4be6-8c2e-b6d2a9d035ae"> -<Form> -<AUni ws="qvm-x-ach">löca</AUni> -<AUni ws="qvm-x-acl">löca</AUni> -<AUni ws="qvm-x-akh">löca</AUni> -<AUni ws="qvm-x-akl">löca</AUni> -<AUni ws="qvm-x-ame">löca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="283414bb-2c9e-4d2d-ae83-04217e49b966" ownerguid="23eda898-b2f4-403e-ae38-fcbd4415229a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2834b99c-5335-4d5f-9ee6-1c9277b0134f" ownerguid="d8631167-08bd-4571-bc7c-57a4407da51c"> -<ExampleWords> -<AUni ws="en">convention, caucus</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a meeting of a political party?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="283ac82f-bbf3-4efd-a0bb-f45ab895903f" ownerguid="9cfb58a8-8ccb-4ad7-8ffe-8318781beeb9"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="283ad818-9670-4a23-b97a-05cd2810800e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">luchuc</AUni> -<AUni ws="qvm-x-acl">luchuc</AUni> -<AUni ws="qvm-x-akh">luchuk</AUni> -<AUni ws="qvm-x-akl">luchuk</AUni> -<AUni ws="qvm-x-ame">luchuk</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llutruk</AUni> -<AUni ws="qvm-x-acl">*llutruk</AUni> -<AUni ws="qvm-x-akh">*llutruk</AUni> -<AUni ws="qvm-x-akl">*llutruk</AUni> -<AUni ws="qvm-x-ame">*llutruk</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.245" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="57f3d6ac-afa4-4ec7-9d9b-a535d13ea624" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llutruk</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="19d6fd70-9870-4226-89da-e9310a6c7ad8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0ad7cd10-0a35-4745-8026-2d9456098cb3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llutruk 
\entryTyp root 
\gENG 
\gSPN 
\e *llutruk 
\c N0 
\mp +FinalC 
\ach luchuc 
\akh luchuk 
\acl luchuc 
\akl luchuk 
\ame luchuk</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="283c06e1-d14c-4d8d-b01e-d64af8cbd1af" ownerguid="474aa982-8350-47e2-a983-e1e2bce9d928"> -<ExampleWords> -<AUni ws="en">exhilarated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to feeling very good?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="283f0511-19ec-4b4c-925e-4bfc73f20598" ownerguid="99b5b80a-a2d6-4820-adfc-1da72528c272"> -<ExampleWords> -<AUni ws="en">equally, of equal, equal in, just as, as...as, every bit as, even, evenly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words indicate that two things are the same in some way?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="284433df-7b37-4e63-a614-78520c483213" ownerguid="e76227e8-4a04-4fbd-a16e-5baa3d9e97a9"> -<Abbreviation> -<AUni ws="en">1.6.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for ways in which animals move. Only include words specific for the movement of animals. For the movement of people use the domains under Movement. It is necessary to think through how each type of animal moves, especially the important ones.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Animal movement</AUni> -</Name> -<OcmCodes> -<Uni>136c Movements</Uni> -</OcmCodes> -<Questions> -<objsur guid="666ae48d-2d66-4013-9166-090466f3f686" t="o" /> -<objsur guid="4902bc8b-5e1d-42ee-b611-2ab92a47be49" t="o" /> -<objsur guid="36378b50-7c62-431f-a1c3-b4f6fdad0ee7" t="o" /> -<objsur guid="1621fa6b-5439-4606-b32b-b2f43553281b" t="o" /> -<objsur guid="3e0cc3d0-a5c9-41ea-9602-1945fe1270d4" t="o" /> -<objsur guid="58e378f4-7599-4cec-81c0-44aa7e3c36d1" t="o" /> -<objsur guid="6df41d2d-3650-4816-a690-bc94c942c7d1" t="o" /> -<objsur guid="2ef96063-86fe-4ee4-909b-1b770d479e89" t="o" /> -<objsur guid="6b2b9fec-34f9-4279-9e12-7d85ff359cf3" t="o" /> -<objsur guid="01326043-4ba1-454d-a5d0-d351d7943236" t="o" /> -<objsur guid="a9b79ed2-d70d-49ce-9bf9-c4ad7ac03dd7" t="o" /> -<objsur guid="42f2314d-8f0e-4e0d-a63c-adc885597ccd" t="o" /> -<objsur guid="218c20eb-0f4d-488a-befc-efab0fb8773d" t="o" /> -<objsur guid="13878a16-5b51-48cf-8d2b-9e4a5659c1cf" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="2844551b-9c8b-464b-b45d-7ce09a61f99a" ownerguid="bc8d0ad4-6ebf-4fa0-bc7e-60e8ec9c43db"> -<ExampleWords> -<AUni ws="en">tears</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What do the eyes produce?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2847f8e4-5aaa-4eda-b52f-2049bab47769" ownerguid="c8b8f2cd-0fb9-4306-bd78-43eb27dc15fd"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="28489b2a-bcf3-432b-9312-66cdab92f929" ownerguid="0281fb1d-ab12-41b9-a3dc-09ef6b1e4733"> -<ExampleWords> -<AUni ws="en">netherworld, heaven, hell</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the place where dead people are?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="284a5884-2198-46f3-a725-1ad38402cc0f" ownerguid="04ab642a-10f0-468c-a0a0-b7f7223f2134"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 39.3 Wachanarga guempucaycashganchömi wachapäcun.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="284a664a-51da-48c1-8ebc-a5589fc40942" ownerguid="bdcde8dd-d02f-4682-a697-1a6f5ea24dbf"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="284be73d-e0d7-4953-983b-caaad5cf4610" ownerguid="b594278c-c938-48ea-a157-49ff67244ef5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">urinate</AUni> -<AUni ws="es">orinar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cf57b621-6b75-4635-ac90-38511cfa7b90" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="2854734e-834a-42cb-8812-d9e7028916dc" ownerguid="cb362fc7-b3aa-46f4-b9a8-0f8c97fb16fe"> -<Abbreviation> -<AUni ws="en">6.2.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.383" /> -<DateModified val="2022-9-23 16:55:8.383" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to growing vegetables, such as asparagus, beans, broccoli, cabbage, celery, chard, cucumbers, eggplant, melons, peas, peppers, pumpkins, spinach, squash, tomatoes, and watermelons. If one type of vegetable is cultivated extensively and there are many words related to it, set up a separate domain for it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Growing vegetables</AUni> -</Name> -<OcmCodes> -<Uni>244 Vegetable Production</Uni> -</OcmCodes> -<Questions> -<objsur guid="b0d95aff-fcec-4cba-90c7-d1dee005df49" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="2855cda6-a031-46aa-bf3f-718d94374d46" ownerguid="fd9b8618-1f62-419b-85c3-365a12e85523"> -<Abbreviation> -<AUni ws="en">3.2.5.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.103" /> -<DateModified val="2022-9-23 16:55:8.103" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to protesting--to say publicly that you do not like something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Protest</AUni> -</Name> -<Questions> -<objsur guid="dde88c6f-c4da-4e44-ad41-bcee753f95c0" t="o" /> -<objsur guid="c0b3bde0-1b06-4993-afe5-b6508eee86af" t="o" /> -<objsur guid="7d5867c0-319f-4ccf-9564-4b6a80b51e0c" t="o" /> -<objsur guid="d8284e5f-f544-4ef9-b3b3-cd1b2b8af4f3" t="o" /> -<objsur guid="cac81820-f8b0-47a1-9cb0-085b42503e55" t="o" /> -<objsur guid="a9fdb9ca-549a-4ed1-b384-c6c83542d686" t="o" /> -<objsur guid="e6f7c1d4-f57b-461b-a3bb-9a4c2d3022ba" t="o" /> -<objsur guid="ab563b0a-b739-432e-b35d-3be8f00a5250" t="o" /> -<objsur guid="0853c586-0e87-4ab4-aa91-e90973d6f1a7" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="8594cb26-9f3c-48f5-b00b-f055eb5a5e61" t="r" /> -<objsur guid="f3dbb078-6265-4861-a6e3-46cc151c5d72" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="28564ac1-8b08-47e9-ae8b-6d8ebec2429a" ownerguid="c5f78084-f48c-4610-b101-af68b8ee5bac"> -<Form> -<AUni ws="qvm-x-ach">päsas</AUni> -<AUni ws="qvm-x-acl">päsas</AUni> -<AUni ws="qvm-x-akh">päsas</AUni> -<AUni ws="qvm-x-akl">päsas</AUni> -<AUni ws="qvm-x-ame">päsas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="2857049e-127f-4c54-a627-81907765950f" ownerguid="176dc633-782b-4e75-9704-62cc09b6774a"> -<Form> -<AUni ws="qvm-x-ach">putsupa</AUni> -<AUni ws="qvm-x-acl">putsupa</AUni> -<AUni ws="qvm-x-akh">putsupa</AUni> -<AUni ws="qvm-x-akl">putsupa</AUni> -<AUni ws="qvm-x-ame">putsupa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="28578ad1-e574-4812-8aa4-3bc9834c155c" ownerguid="94cad4ca-c2ec-4ff3-b9b1-11107549941d"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The box <weighs> five kilos.</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(2) What words indicate a point on a scale?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="285e456c-b430-4ff6-b6bf-b0f01134281a" ownerguid="30941699-d337-4c85-bacf-d9cd93743610" /> -<rt class="WfiMorphBundle" guid="285e9809-dcea-4140-9282-e6a842d2d1a9" ownerguid="dbf05a52-ffa6-4413-9ee8-c5be0da0e3d0"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">lapa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">lapa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">lapa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">lapa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">lapa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="0655d4c4-dcff-4fca-931a-8964415a96b4" t="r" /> -</Morph> -<Msa> -<objsur guid="b16d0818-05dc-49f7-8cdf-889b0be5517e" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="285f77bf-5315-40be-9247-d5fa93db1470" ownerguid="9351d5b6-5a87-422a-9e82-ca6a0bacd3e9"> -<ExampleWords> -<AUni ws="en">Cool it. Take it easy. Calm down.</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What do you say to someone when you want them to be calm?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="28608180-c4e7-4ec0-bf68-332e5ec93289" ownerguid="1ea9aeb3-3556-47b0-b1c0-adcb9e3589d2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="14a07949-5fcd-4ef4-81a4-e387caf7c98a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="2861a719-9482-4b0c-8564-d96a9af2ae05"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waryana</AUni> -<AUni ws="qvm-x-acl">waryana</AUni> -<AUni ws="qvm-x-akh">waryana</AUni> -<AUni ws="qvm-x-akl">waryana</AUni> -<AUni ws="qvm-x-ame">waryana</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waryana</AUni> -<AUni ws="qvm-x-acl">*waryana</AUni> -<AUni ws="qvm-x-akh">*waryana</AUni> -<AUni ws="qvm-x-akl">*waryana</AUni> -<AUni ws="qvm-x-ame">*waryana</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.544" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b86a6cbe-ffa6-4f8d-a482-7fe0fa11d2c1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waryana</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1d3a7701-a996-4fb1-a219-5d5531c9ff26" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="baa7495d-7cf1-4f82-b549-89e28140665c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waryana 
\entryTyp root 
\gENG 
\gSPN ? 
\e *waryana 
\c N0 
\ach waryana 
\akh waryana 
\acl waryana 
\akl waryana 
\ame waryana</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="2862d41b-cc80-4c63-8e60-755a72e501b0" ownerguid="e835155c-8c66-43d8-b109-188a02dfa990"> -<Form> -<AUni ws="qvm-x-ach">pucsu</AUni> -<AUni ws="qvm-x-acl">pucsu; pucsu; pucso</AUni> -<AUni ws="qvm-x-akh">puksu</AUni> -<AUni ws="qvm-x-akl">puksu; puksu; pukso</AUni> -<AUni ws="qvm-x-ame">puksu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="2862f81c-3457-42fd-834d-32a18246a589"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">oración; oracion</AUni> -<AUni ws="qvm-x-acl">oración; oracion</AUni> -<AUni ws="qvm-x-akh">oración; oracion</AUni> -<AUni ws="qvm-x-akl">oración; oracion</AUni> -<AUni ws="qvm-x-ame">oración; oracion</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+oración</AUni> -<AUni ws="qvm-x-acl">+oración</AUni> -<AUni ws="qvm-x-akh">+oración</AUni> -<AUni ws="qvm-x-akl">+oración</AUni> -<AUni ws="qvm-x-ame">+oración</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.628" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2b45fc87-7bf1-46d9-bf27-b2ee940da388" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+oración</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="00c99c5d-be06-47c4-b135-99472571f673" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="57788dfe-4923-4f50-87f8-ac17e53a656c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +oración 
\entryTyp root 
\gENG sentence 
\gSPN oración 
\e +oración 
\c N0 
\mp +FinalC 
\ach oración / _# 
\ach oracion / ~_# 
\akh oración / _# 
\akh oracion / ~_# 
\acl oración / _# 
\acl oracion / ~_# 
\akl oración / _# 
\akl oracion / ~_# 
\ame oración / _# 
\ame oracion / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="2866f7ae-4d9a-403d-a1ff-c318b24dc289" ownerguid="99e8a6c6-700e-42bf-b4ba-516e36c9c64c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="286a091f-f599-4c7a-a736-e8cf10be2d78" ownerguid="f9ffbf37-9b65-4de7-a303-c1ef823a75f7"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoAffixAllomorph" guid="286e28ce-5753-4999-aea3-22d07bf32829" ownerguid="852335c0-3900-49e5-8717-136f53f3ed79"> -<Form> -<AUni ws="qvm-x-ach">nnin</AUni> -<AUni ws="qvm-x-acl">nnin</AUni> -<AUni ws="qvm-x-akh">nnin</AUni> -<AUni ws="qvm-x-akl">nnin</AUni> -<AUni ws="qvm-x-ame">nnin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="286ee16c-a218-43d5-bbac-ab15f80c3fcf" ownerguid="c6c772af-7b6b-4393-b0da-5b4a329d3426"> -<Abbreviation> -<AUni ws="en">8.1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.579" /> -<DateModified val="2022-9-23 16:55:8.579" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being or having enough--to have as much of something or as many of something as you need or want.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>57B Have Sufficient; 59E Enough, Sufficient</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Enough</AUni> -</Name> -<Questions> -<objsur guid="0e367db2-a18f-4bd8-a850-cd5d9ba583a5" t="o" /> -<objsur guid="c28c46fa-f939-45d1-b32a-67d5ffa7a25f" t="o" /> -<objsur guid="9a83ae45-3345-4b37-8f4c-504e70b04e03" t="o" /> -<objsur guid="3c31683d-1c33-48e5-a2f6-8d614c363c4d" t="o" /> -<objsur guid="ea5c562c-9956-4650-b9ab-5a5b56788676" t="o" /> -<objsur guid="d9390d47-4a5a-4a6c-bbc9-7e475ffe54d5" t="o" /> -<objsur guid="6d5727fb-63b8-4772-b504-11d2f20442da" t="o" /> -<objsur guid="b0a74692-fe6d-48ec-aa9d-949afe375bbb" t="o" /> -<objsur guid="41d24e83-5304-4034-a3bc-ee16beaa76dc" t="o" /> -<objsur guid="01e01cc2-4d3e-43b5-bfca-08311bc1d99c" t="o" /> -<objsur guid="2a3c5d4b-402f-4483-9e8a-c084413f45dc" t="o" /> -<objsur guid="088efc20-4995-4b9a-a3bb-3db15d1dbba8" t="o" /> -<objsur guid="3b9639d5-fa4d-43bf-bb0f-72e150506e79" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="755a7462-1d87-48b0-939c-08be5b5ea002" t="o" /> -<objsur guid="1621aac3-4ea9-4373-bf1b-40fce0ca7b5e" t="o" /> -<objsur guid="d1b3d0f0-5319-4a6a-8a70-2179a8e76d22" t="o" /> -<objsur guid="60b8dcfd-49a0-4ab4-82a7-2c5058b325ae" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="287051ce-5217-4808-a640-48c86b3d51d4" ownerguid="965c6a0b-3034-4e2f-a00b-ed2eb3119a5d"> -<ExampleWords> -<AUni ws="en">whoa (stop)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words are only used in the imperative?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2871314f-078a-492f-882c-40090f983fa9" ownerguid="04543543-4c3d-4d71-aa87-53191ef3b7b0"> -<ExampleWords> -<AUni ws="en">then and there</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that someone does something immediately without thinking about it?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2871a89b-d85d-4173-9566-825dc08dcebe" ownerguid="0a3c4ad4-5c0e-4a68-8a67-f4e6d2191140"> -<Form> -<AUni ws="qvm-x-ach">lentëjas</AUni> -<AUni ws="qvm-x-acl">lentëjas</AUni> -<AUni ws="qvm-x-akh">lentëjas</AUni> -<AUni ws="qvm-x-akl">lentëjas</AUni> -<AUni ws="qvm-x-ame">lentëjas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2872d7af-27f3-4c1d-b8eb-2540c21f148c" ownerguid="c5996b7d-0acc-4ac7-bfa0-09b93a0eccbc"> -<ExampleWords> -<AUni ws="en">mine shaft, tailings, entrance, head</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the parts of a mine?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="2872da04-6218-47b5-ab55-6c7602abb25f" ownerguid="77fd8e17-97e1-4435-aa2a-a788b66b6441"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -<Sense> -<objsur guid="8825f180-b774-47d3-9faa-e76a889e064f" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="2876c38f-f039-44b8-a580-123565329048" ownerguid="721e7782-9add-41fa-a7cf-659d5ca33926"> -<ExampleWords> -<AUni ws="en">player, contestant, team members, captain, star</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the people who play games?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="287be46e-e4b2-4b22-9c66-b4835fb2a321" ownerguid="b5700ad7-36a1-4608-8789-8f84007244f8"> -<ExampleWords> -<AUni ws="en">lethargic, sluggish, languid</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who is tired and doesn't want to work?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="287dba10-dc8c-4529-921a-6e3af29aa5f4" ownerguid="6ddf87ce-d100-4f94-b4d9-18a6d6ccc59c"> -<Form> -<AUni ws="qvm-x-ach">palga</AUni> -<AUni ws="qvm-x-acl">palga</AUni> -<AUni ws="qvm-x-akh">palqa</AUni> -<AUni ws="qvm-x-akl">palqa</AUni> -<AUni ws="qvm-x-ame">palqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="2880442e-e300-402d-8a45-10ea09bb219a" ownerguid="a1fe830b-7192-4115-a731-f34ad046181a"> -<Form> -<AUni ws="qvm-x-ach">quimsani</AUni> -<AUni ws="qvm-x-acl">quimsani; quimsani; quimsane</AUni> -<AUni ws="qvm-x-akh">kimsani</AUni> -<AUni ws="qvm-x-akl">kimsani; kimsani; kimsane</AUni> -<AUni ws="qvm-x-ame">kimsani</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2885e290-3b69-46cd-88ad-ce4ef70df6bb" ownerguid="0cc62b4a-d5ff-4f45-83d1-e2b46e5d159a"> -<ExampleWords> -<AUni ws="en">dawn, sunrise, daybreak, aurora, cockcrow, dawning, sunup</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to dawn?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="28885090-a609-4e87-8333-a46af61ed256"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rachi</AUni> -<AUni ws="qvm-x-acl">rachi; rache</AUni> -<AUni ws="qvm-x-akh">rachi</AUni> -<AUni ws="qvm-x-akl">rachi; rache</AUni> -<AUni ws="qvm-x-ame">rachi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ratri</AUni> -<AUni ws="qvm-x-acl">*ratri</AUni> -<AUni ws="qvm-x-akh">*ratri</AUni> -<AUni ws="qvm-x-akl">*ratri</AUni> -<AUni ws="qvm-x-ame">*ratri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.287" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c470f62c-f06b-4393-b051-381d9f597b26" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ratri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7d557503-3b58-46bf-ab6c-e3b6cded3fe0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2fe0a017-f273-4ad4-9b8a-99127a4864ee" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ratri 
\entryTyp root 
\gENG break 
\gSPN romper 
\e *ratri 
\c V2 
\mp +FinalI 
\ach rachi 
\akh rachi 
\acl rachi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl rache +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rachi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rache +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame rachi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="2888bec4-57d9-48d6-bccd-f0a75920a144" ownerguid="0825b038-b0b2-43ac-935d-d1a061ca70c8"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoAffixAllomorph" guid="2888f024-c888-4574-b97e-4bec94b8aa06" ownerguid="2e3cdcdd-46bc-48c3-8aed-0541a5421c38"> -<Form> -<AUni ws="qvm-x-ach">nacU</AUni> -<AUni ws="qvm-x-acl">nacU</AUni> -<AUni ws="qvm-x-akh">nakU</AUni> -<AUni ws="qvm-x-akl">nakU</AUni> -<AUni ws="qvm-x-ame">nakU</AUni> -</Form> -<IsAbstract val="True" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="288abc07-7343-4b64-8441-a84fbdc35786" ownerguid="0f6a898d-6286-4b97-b07d-97213b9c723a"> -<Form> -<AUni ws="qvm-x-ach">böti; böti</AUni> -<AUni ws="qvm-x-acl">böti; böti; böte</AUni> -<AUni ws="qvm-x-akh">böti; böti</AUni> -<AUni ws="qvm-x-akl">böti; böti; böte</AUni> -<AUni ws="qvm-x-ame">böti; böti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="288cecc2-bb7a-471f-8d54-cb34d45d43b0" ownerguid="66338f06-ea72-40e7-b1f4-276337f98641"> -<Form> -<AUni ws="qvm-x-ach">unay</AUni> -<AUni ws="qvm-x-acl">unay</AUni> -<AUni ws="qvm-x-akh">unay</AUni> -<AUni ws="qvm-x-akl">unay</AUni> -<AUni ws="qvm-x-ame">unay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="288d1c25-7ae0-4822-aead-1ff2b40e59af" ownerguid="1e666e23-1269-4e27-95dd-06d44939b03a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gnaw</AUni> -<AUni ws="es">roer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e81eeda2-53fc-4950-bef8-d304449a125c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="288deac0-6a0a-4593-80f3-852573e035fc" ownerguid="d1fa5a96-43b1-4974-9134-dd49a6603053"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">NMN</AUni> -<AUni ws="es">NMN</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a91771ad-8785-4e3e-b6f8-793820e3a8bd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="288efcf8-aa00-47ef-9746-5ae900d8cd17" ownerguid="9aff8697-9a18-4058-bcf0-d892577efae3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">root</AUni> -<AUni ws="es">raiz</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8f625ffb-9d4d-4102-960e-e61f57558d31" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="28930ff3-7396-4454-8135-5508b62e3986" ownerguid="a3c61773-dc65-4dc5-830f-6f921f3524ba"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">respect</AUni> -<AUni ws="es">respeto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="440bea58-d5df-486c-b3e2-bade7bef9cb6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="2899cfd7-a7b3-4907-84a1-ce94cdd76a5b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">venda</AUni> -<AUni ws="qvm-x-acl">venda</AUni> -<AUni ws="qvm-x-akh">venda</AUni> -<AUni ws="qvm-x-akl">venda</AUni> -<AUni ws="qvm-x-ame">venda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vendar</AUni> -<AUni ws="qvm-x-acl">+vendar</AUni> -<AUni ws="qvm-x-akh">+vendar</AUni> -<AUni ws="qvm-x-akl">+vendar</AUni> -<AUni ws="qvm-x-ame">+vendar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.363" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e0a4817e-b383-4c10-9a6d-d074c81840e7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vendar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1f66f157-3c19-4ed0-b1a3-cbceeb3bfadc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="221bff21-d688-40a2-9e5a-9ea5af0e42a9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vendar 
\entryTyp root 
\gENG 
\gSPN vendar 
\e +vendar 
\c V2 
\ach venda 
\akh venda 
\acl venda 
\akl venda 
\ame venda 
\i EST 7.8,9 Rey Asuero tsaynog niptinmi wardyacuna jucla Amánta tsarircur bendargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="289aa571-03f4-4ea3-90d2-8190af79fefa" ownerguid="20baa5e7-4f02-4782-a292-c6281d7b5f3a"> -<ExampleWords> -<AUni ws="en">push in, squeeze in, jam in, force, stuff</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to pushing something into a small space?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="28a37d39-8347-4254-99bf-8e3c37dbf8a8" ownerguid="6430b89c-7077-418a-a558-51f0e3f2c1a6"> -<Abbreviation> -<AUni ws="en">7.3.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.528" /> -<DateModified val="2022-9-23 16:55:8.528" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to setting something upright.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Set upright</AUni> -</Name> -<Questions> -<objsur guid="b03a1b23-a435-41b3-8d41-2ed1244f59f1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="28a4e00c-de72-4c2a-8b2e-ac12e16c4757"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pie:za</AUni> -<AUni ws="qvm-x-acl">pie:za</AUni> -<AUni ws="qvm-x-akh">pie:za</AUni> -<AUni ws="qvm-x-akl">pie:za</AUni> -<AUni ws="qvm-x-ame">pie:za</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pieza</AUni> -<AUni ws="qvm-x-acl">+pieza</AUni> -<AUni ws="qvm-x-akh">+pieza</AUni> -<AUni ws="qvm-x-akl">+pieza</AUni> -<AUni ws="qvm-x-ame">+pieza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.830" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9b56d2e5-f06a-4b9c-b173-ce022d9b8078" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pieza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cd2d05c6-7d57-4bb0-9dc6-a5a01a7312c4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c33095fb-6ad0-4b2d-bcb5-a54e9ac16ad6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pieza 
\entryTyp root 
\gENG piece 
\gSPN pieza 
\e +pieza 
\c N0 
\ach pie:za 
\akh pie:za 
\acl pie:za 
\akl pie:za 
\ame pie:za</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="28a68cea-9128-4d5c-8542-8df38c907310" ownerguid="19d54c2f-ae03-4cbc-9b7e-57292f92fbc1"> -<Abbreviation> -<AUni ws="en">7.2.6.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.518" /> -<DateModified val="2022-9-23 16:55:8.518" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to setting someone free.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>37J Release, Set Free</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Set free</AUni> -</Name> -<Questions> -<objsur guid="8b67e92f-52c2-475c-b845-7a0611bd353e" t="o" /> -<objsur guid="92a6f151-7f8b-452a-99fa-b1e9f6c138b7" t="o" /> -<objsur guid="d3918eef-4d01-4e8a-ab12-f9531a8b4bca" t="o" /> -<objsur guid="960a23be-fe9a-40e3-bbdb-e00d5bb0dd67" t="o" /> -<objsur guid="abb41b18-4eb8-459d-90bd-8d833411cc09" t="o" /> -<objsur guid="c0d32bc8-c3f3-4ad7-9830-eb1ebd9d3e36" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="c8c74ec6-3f7a-4b45-b0e9-399b97c4a800" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="28a8c3bc-4c61-45f2-b3b2-9ca230b32503" ownerguid="273f4956-f79f-4b1e-b552-466280a65e60"> -<ExampleWords> -<AUni ws="en">show off, flourish, parade, flaunt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to showing something that you are proud of?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="28afa227-f462-4a14-b8d3-a45b5cff261a" ownerguid="611aa361-4ddd-450b-a152-94984a274575"> -<ExampleWords> -<AUni ws="en">abandon, dump, jettison, leave, leave behind</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to abandoning something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="28b0587f-f28f-4fcf-a367-028c6c4dacf8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">caminu; camino</AUni> -<AUni ws="qvm-x-acl">caminu; caminu; camino</AUni> -<AUni ws="qvm-x-akh">caminu; camino</AUni> -<AUni ws="qvm-x-akl">caminu; caminu; camino</AUni> -<AUni ws="qvm-x-ame">caminu; camino</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+camino</AUni> -<AUni ws="qvm-x-acl">+camino</AUni> -<AUni ws="qvm-x-akh">+camino</AUni> -<AUni ws="qvm-x-akl">+camino</AUni> -<AUni ws="qvm-x-ame">+camino</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.31" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b504b0a2-8803-4848-a379-a2f6e56be581" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+camino</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f28ba5fd-5ad0-4d41-8418-fc647831bbf2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="92c5ca0d-6af7-4018-8c9a-4b7c10602cab" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +camino 
\entryTyp root 
\gENG road 
\gSPN camino 
\e +camino 
\c N0 
\ach caminu / ~_# 
\ach camino / _# 
\akh caminu / ~_# 
\akh camino / _# 
\acl caminu / ~_# 
\acl caminu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl camino +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl caminu / ~_# 
\akl caminu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl camino +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame caminu / ~_# 
\ame camino / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="28b1aca0-8f20-42cc-bb36-9a97cc83c60a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">malwa</AUni> -<AUni ws="qvm-x-acl">malwa</AUni> -<AUni ws="qvm-x-akh">malwa</AUni> -<AUni ws="qvm-x-akl">malwa</AUni> -<AUni ws="qvm-x-ame">malwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mallwa.n</AUni> -<AUni ws="qvm-x-acl">*mallwa.n</AUni> -<AUni ws="qvm-x-akh">*mallwa.n</AUni> -<AUni ws="qvm-x-akl">*mallwa.n</AUni> -<AUni ws="qvm-x-ame">*mallwa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.295" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c65e3040-c397-4019-b12e-f4a1e8eab3aa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mallwa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1c8876db-19c9-490d-9015-fe84611d0a20" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b5e5c1c8-106b-410a-b802-7d7f7f473298" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mallwa.n 
\entryTyp root 
\gENG young 
\gSPN tierno 
\e *mallwa.n 
\c N0 
\ach malwa 
\akh malwa 
\acl malwa 
\akl malwa 
\ame malwa 
\mcc *mallwa.n / ~_ ADV1</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="28b3fe11-1c56-46d9-85f8-24e6867e5452"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">contentu; contento</AUni> -<AUni ws="qvm-x-acl">contentu; contentu; contento</AUni> -<AUni ws="qvm-x-akh">contentu; contento</AUni> -<AUni ws="qvm-x-akl">contentu; contentu; contento</AUni> -<AUni ws="qvm-x-ame">contentu; contento</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+contento</AUni> -<AUni ws="qvm-x-acl">+contento</AUni> -<AUni ws="qvm-x-akh">+contento</AUni> -<AUni ws="qvm-x-akl">+contento</AUni> -<AUni ws="qvm-x-ame">+contento</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.172" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7fa9b462-1ad2-4684-b060-5e67f8610b3d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+contento</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e6024719-1f42-4555-8805-cb26f53e56f7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="203350a6-3908-4c04-b951-d2204ef530cd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +contento 
\entryTyp root 
\gENG content 
\gSPN contento 
\e +contento 
\c N0 
\ach contentu / ~_# 
\ach contento / _# 
\akh contentu / ~_# 
\akh contento / _# 
\acl contentu / ~_# 
\acl contentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl contento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl contentu / ~_# 
\akl contentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl contento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame contentu / ~_# 
\ame contento / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="28b70a10-87ac-482c-9236-d44cd4e57ff5" ownerguid="59ee2eeb-d59f-44e0-8d71-51e12fccc837"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">seven</AUni> -<AUni ws="es">siete</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="08ea4d43-532d-4e56-818a-372b9984ab3e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="28b76dcc-1ef9-4d17-834e-a0774a3867eb" ownerguid="2fc69f71-e9f1-45f9-b88e-bdaf97457fc3"> -<ExampleWords> -<AUni ws="en">to speed, move fast, hurry, hasten, be brief</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to doing something quickly?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="28b9dcd1-b65a-44d2-91cd-c28d1d839019" ownerguid="61274b35-6a9f-4a70-b385-36d783abf631"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tomorrow</AUni> -<AUni ws="es">mañana</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7af9732c-a7fb-4a39-8f78-ca558272fafd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="28ba8f5c-5baa-4500-a6f5-be292caa673f" ownerguid="b0a9a631-e0dc-47d4-a762-e9a627732218"> -<Abbreviation> -<AUni ws="en">4.5.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.253" /> -<DateModified val="2022-9-23 16:55:8.253" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to disobeying someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>36C Obey, Disobey</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Disobey</AUni> -</Name> -<Questions> -<objsur guid="e1beba85-e228-460d-bdb2-b879335882be" t="o" /> -<objsur guid="0e8e3d1c-bd1d-4b04-932f-598000b83a97" t="o" /> -<objsur guid="852bd375-4805-4a25-9860-f4ee37ba3717" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="28be3894-9309-46a2-9409-aaead04534ec" ownerguid="e9746b92-864d-4a1e-8553-207d78261999"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">marca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">marca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">marka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">marka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">marka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="efaff767-d6db-45ec-8ec0-666b57a06435" t="r" /> -</Morph> -<Msa> -<objsur guid="f87af9c0-e238-4649-8df0-ab17b19c3572" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="28be415f-632d-4854-bd45-702fbe39108b" ownerguid="e1c40888-f755-4237-a63f-2b1e50e4551b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="28c7b919-7694-4bf1-ad27-2ce0a2487588" ownerguid="cbc0a8f5-9cba-41d2-a7e5-565fbf09c8c4"> -<ExampleWords> -<AUni ws="en">make someone laugh, amuse, crack someone up, have someone in hysterics, have someone in stitches, tickle, ticklish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to causing someone to laugh?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="28c8e92f-eb09-47be-a59e-0d376240bfb2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wawayshu</AUni> -<AUni ws="qvm-x-acl">wawayshu; wawayshu; wawaysho</AUni> -<AUni ws="qvm-x-akh">wawayshu</AUni> -<AUni ws="qvm-x-akl">wawayshu; wawayshu; wawaysho</AUni> -<AUni ws="qvm-x-ame">wawayshu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wawayshu</AUni> -<AUni ws="qvm-x-acl">*wawayshu</AUni> -<AUni ws="qvm-x-akh">*wawayshu</AUni> -<AUni ws="qvm-x-akl">*wawayshu</AUni> -<AUni ws="qvm-x-ame">*wawayshu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.597" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cfe980aa-c398-4271-9793-bdcee7d853f7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wawayshu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dd3a6b8a-7812-47cf-b3ce-a29b9139c7c0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ff8e17b3-5123-41f2-ba30-895f7d434fb0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wawayshu 
\entryTyp root 
\gENG calf.of.leg 
\gSPN paltorrilla 
\e *wawayshu 
\c N0 
\ach wawayshu 
\akh wawayshu 
\acl wawayshu / _# 
\acl wawayshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wawaysho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wawayshu / _# 
\akl wawayshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl wawaysho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wawayshu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="28c99401-2125-4c98-b959-3c806cf62b9d" ownerguid="08c05e00-9660-4491-af2f-a05fab27ef39"> -<ExampleWords> -<AUni ws="en">skinny, bony, scrawny, scraggy, angular</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe someone who is thin and not attractive?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="28cf3211-cf46-45e0-94b6-f423e8e8c1f1" ownerguid="94e5ea59-3346-42cf-ad13-04f0029f72c1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">distribute</AUni> -<AUni ws="es">repartir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aa90b3d3-5509-4ca3-b5c0-a295f5d62ec8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="28cf64d0-7604-456d-98c1-91e7b3bdd73a" ownerguid="5be839f1-0799-44e9-b3fc-7bc558cef1eb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">brag</AUni> -<AUni ws="es">jactarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b2a30d91-2e47-45f5-a782-8709ada207a2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="28d11532-0485-4496-8973-e4904a1e4e2b" ownerguid="9a456463-3c71-4f9a-8117-dc2fcb087bd3"> -<ExampleWords> -<AUni ws="en">(no words in English)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to sharing fire with a neighbor whose fire has gone out?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="28d4b72e-4199-4fbd-b067-4dafaf29b544" ownerguid="2470ad05-636e-4c85-96ab-cd880da58741"> -<ExampleWords> -<AUni ws="en">convert, conversion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to beginning to believe in a religion or changing from one religion to another?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="28d4ec2b-08a6-4a73-94a5-70f4fd91c215"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chinchi</AUni> -<AUni ws="qvm-x-acl">chinchi; chinche</AUni> -<AUni ws="qvm-x-akh">chinchi</AUni> -<AUni ws="qvm-x-akl">chinchi; chinche</AUni> -<AUni ws="qvm-x-ame">chinchi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trintri</AUni> -<AUni ws="qvm-x-acl">*trintri</AUni> -<AUni ws="qvm-x-akh">*trintri</AUni> -<AUni ws="qvm-x-akl">*trintri</AUni> -<AUni ws="qvm-x-ame">*trintri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.119" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="29189f3e-8442-4307-9f2f-c87f5ba97e3e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trintri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5490c80f-2617-4533-a669-9d2c93165c35" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a46f3f5c-35a2-40a5-b9bc-0adb716ad4c5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trintri 
\entryTyp root 
\gENG smile.w.squint 
\gSPN sonreír.bizco 
\e *trintri 
\c V1 
\mp +FinalI 
\ach chinchi 
\akh chinchi 
\acl chinchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl chinche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chinchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chinche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chinchi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="28d6a186-b5fd-4b1d-bf51-d52fd8ce502e" ownerguid="9f425812-8e7a-4cc4-b427-4cab065d2be6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">protrude</AUni> -<AUni ws="es">sobresalir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="76285b10-1fc6-4067-aca1-574525c60662" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="28d7f703-b172-4b91-be7b-0cfd89458030" ownerguid="fbacf4d9-6603-49ff-9cbb-4e5bc203e5ed"> -<Form> -<AUni ws="qvm-x-ach">prïma</AUni> -<AUni ws="qvm-x-acl">prïma</AUni> -<AUni ws="qvm-x-akh">prïma</AUni> -<AUni ws="qvm-x-akl">prïma</AUni> -<AUni ws="qvm-x-ame">prïma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="28d8b867-07ee-4534-83b6-b380f16cdb41" ownerguid="e28228bc-647f-47e4-a342-39fb00cdb918"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stick</AUni> -<AUni ws="es">palo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f88f11fa-0243-48a8-9b24-8d3d7d8fb087" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="28d9fed3-03c0-4e63-a3d2-4bc1a07eb1b4" ownerguid="08239f53-daa5-47a6-9f39-29a9064b0c27"> -<ExampleWords> -<AUni ws="en">attachment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to something that is joined to something else?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="28dc7531-8269-4502-b4ee-fb30a6474f1b" ownerguid="51d9d243-35cc-4a1e-bcdd-f2749975f5fd"> -<ExampleWords> -<AUni ws="en">real, actual, genuine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is real?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="28de12ca-087c-41e3-ba04-c6f8b460db46" ownerguid="84e3cdd2-d9ce-4f33-99b4-cf478bf23689"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="7384b134-e929-4086-a180-1dc9440ec2a6" t="o" /> -<objsur guid="1519c2a2-14ae-44ad-bfac-e68edd38ba55" t="o" /> -<objsur guid="8976cb4b-2b73-4c42-98dc-a28926ac387e" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="28e0ecb3-3619-4b58-b7cd-9aa6ad4965a8" ownerguid="d5071ea4-711e-489c-b97f-e4cee62229ca"> -<Form> -<AUni ws="qvm-x-ach">muralla</AUni> -<AUni ws="qvm-x-acl">muralla</AUni> -<AUni ws="qvm-x-akh">muralla</AUni> -<AUni ws="qvm-x-akl">muralla</AUni> -<AUni ws="qvm-x-ame">muralla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="28e128b0-0c0c-4c7f-a36c-33ca094585fd" ownerguid="895e74fd-2855-4235-9028-0e3c722a0fb9"> -<Form> -<AUni ws="qvm-x-ach">rpU</AUni> -<AUni ws="qvm-x-acl">rpU</AUni> -<AUni ws="qvm-x-akh">rpU</AUni> -<AUni ws="qvm-x-akl">rpU</AUni> -<AUni ws="qvm-x-ame">rpU</AUni> -</Form> -<IsAbstract val="True" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="28e17853-f187-4c34-a5c6-4f5500a4f137" ownerguid="f6271e8f-3bbe-4c81-be8d-3160910bbe0d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">juchu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">juchu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">juchu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">juchu</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">huchu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7f636f39-d70f-4513-91c8-00e021e2b066" t="r" /> -</Morph> -<Msa> -<objsur guid="658e88f6-7dd0-44bd-b964-2a49bcb92fca" t="r" /> -</Msa> -<Sense> -<objsur guid="443c75ec-e77f-449e-b5e6-9094f8287d87" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="28e34f62-36c9-4145-b65a-c47518ee29ce" ownerguid="3005971d-de4d-401f-8400-b25de5e052ad"> -<ExampleWords> -<AUni ws="en">middle (adj), center (adj), central</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is in the middle?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="28e377fe-d40d-4095-85eb-62c66d4f9703" ownerguid="9f0f8ccb-3a9f-48cb-93a5-6fa5b1e38ec1"> -<Example> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">Tsaynöpami rupaykatsirqan achushqa qoturaykaq trïguta, achüni kaykaq trïguta, üva yörakunata y olïvu yörakunatapis.</Run> -</AStr> -</Example> -<Reference> -<Str> -<Run ws="en">JDG 15.5</Run> -</Str> -</Reference> -</rt> -<rt class="LexSense" guid="28e4d6c6-1d4b-405a-8e97-8c8bd7dcc607" ownerguid="468965f6-d3df-4f2a-aebd-67d3a371a775"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">is.pleasing.to</AUni> -<AUni ws="es">es.bueno.para</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cf7b779b-f209-4218-ac07-f4056871b99f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="28e813df-400a-4735-b3dd-0ec1ede10941" ownerguid="7dfd2d48-3518-43a6-b075-38dbae91e485"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8034a22d-6d25-42d2-a788-b47aff1b577d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="28e874fb-b2e7-4afa-a4d7-600306ad2583" ownerguid="6745c89d-1fcd-44b8-be4b-9fd9d62f64e7"> -<Abbreviation> -<AUni ws="en">4.2.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.217" /> -<DateModified val="2022-9-23 16:55:8.217" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to exercise.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Exercise</AUni> -</Name> -<Questions> -<objsur guid="c3a267cd-9d7f-47cb-94aa-b0c66a6f7280" t="o" /> -<objsur guid="ca8ac08b-2701-45a6-a72a-9c63e4609827" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="28eb8d70-5882-4384-82f1-8bb8b8e73692" ownerguid="ceff0bcd-a262-4e41-bf0c-920b446951be"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="WfiAnalysis" guid="28ec5f29-2535-4cf7-959b-1578521614bd" ownerguid="5ea4f6af-0125-4cdd-8a90-8a2d9089df5f"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="58aa9070-9dac-47b9-861a-5e3d3086047c" t="o" /> -<objsur guid="1d0b4b71-f1f6-485c-8523-0ae3c341a9ec" t="o" /> -<objsur guid="2799d65e-8295-4291-8553-b0d5dde0e04c" t="o" /> -<objsur guid="effa8182-479a-4f3d-bf04-c1f6f0271ae8" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="28ec6c99-c77e-4bce-bd3a-969d78500297" ownerguid="10a65da6-bb6b-4379-b64f-b831c4fc64da"> -<Form> -<AUni ws="qvm-x-ach">alumna</AUni> -<AUni ws="qvm-x-acl">alumna</AUni> -<AUni ws="qvm-x-akh">alumna</AUni> -<AUni ws="qvm-x-akl">alumna</AUni> -<AUni ws="qvm-x-ame">alumna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="28ec81ce-5a72-415f-9e37-4abd04a83130" ownerguid="a781d57d-174d-47a6-b6a1-ae635a13df84"> -<ExampleWords> -<AUni ws="en">household</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the people who live in your house?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="28efc1c4-20dd-44f2-9caa-3098b2033b5f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">upya</AUni> -<AUni ws="qvm-x-acl">upya</AUni> -<AUni ws="qvm-x-akh">upya</AUni> -<AUni ws="qvm-x-akl">upya</AUni> -<AUni ws="qvm-x-ame">upya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*upya.v</AUni> -<AUni ws="qvm-x-acl">*upya.v</AUni> -<AUni ws="qvm-x-akh">*upya.v</AUni> -<AUni ws="qvm-x-akl">*upya.v</AUni> -<AUni ws="qvm-x-ame">*upya.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.251" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c1f9db81-7bd9-45ea-b23a-0f499e9a7bb7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*upya.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1afc065a-f51b-4b41-aa93-c6a55c0d064e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2b7c747b-add4-4035-8405-2a9ad67bf9a3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *upya.v 
\entryTyp root 
\gENG drink 
\gSPN tomar 
\e *upya.v 
\c V1 
\ach upya 
\akh upya 
\acl upya 
\akl upya 
\ame upya</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="28f61c31-a3e7-41ae-ad26-e69433ad830b" ownerguid="ae4b7642-8d6c-4ea1-ba9d-6726f18d12c4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="2c4a21d5-915c-461b-acf5-4b9d12ba5de9" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">deserve</AUni> -<AUni ws="es">merecer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f723f0a1-2f76-48ae-bb5e-8174c4bf8fa0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="28fe4892-b5e3-4dc9-9f65-b2b0c1ba2aba"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">distri:tu</AUni> -<AUni ws="qvm-x-acl">distri:tu; distri:tu; distri:to</AUni> -<AUni ws="qvm-x-akh">distri:tu</AUni> -<AUni ws="qvm-x-akl">distri:tu; distri:tu; distri:to</AUni> -<AUni ws="qvm-x-ame">distri:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+distrito</AUni> -<AUni ws="qvm-x-acl">+distrito</AUni> -<AUni ws="qvm-x-akh">+distrito</AUni> -<AUni ws="qvm-x-akl">+distrito</AUni> -<AUni ws="qvm-x-ame">+distrito</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.426" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5f1aa4d8-a382-4a59-9578-fcb34a6aa414" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+distrito</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5c589b05-ec84-4db2-ae6d-e5b1ce560893" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="104089fe-dd52-45f6-a402-07ed6d2ca948" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +distrito 
\entryTyp root 
\gENG district 
\gSPN distrito 
\e +distrito 
\c N0 
\ach distri:tu 
\akh distri:tu 
\acl distri:tu / _# 
\acl distri:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl distri:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl distri:tu / _# 
\akl distri:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl distri:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame distri:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="28fe8218-cf00-415d-90f0-18a57bf6e6b2" ownerguid="251c58e5-af8f-4480-9d5a-0011018f3f00"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">order</AUni> -<AUni ws="es">ordenar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="30b8f7db-afc3-45a0-9438-0ac977421a5c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="28fe906f-5355-4757-b3e4-a3657d5dc964" ownerguid="cdc5453b-0cd3-4158-8992-533ace2bdf85"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">NEH 4.13 Paycunatami churargä murälla wagtancunaman, fácil yaycunanpag cagcunaman y pipis mana cuidashgan cagcunamanpis.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="29058ca7-0752-4993-9a46-aa6902af7c24" ownerguid="654dfe8f-2d53-418e-bb5a-4f080ecc6413"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="2909ed76-8447-4796-9c6b-14731f9bfcb0" ownerguid="546a4409-fcd1-4d4d-9780-2d6a5e7d21e1"> -<Form> -<AUni ws="qvm-x-ach">umpu</AUni> -<AUni ws="qvm-x-acl">umpu; umpo</AUni> -<AUni ws="qvm-x-akh">umpu</AUni> -<AUni ws="qvm-x-akl">umpu; umpo</AUni> -<AUni ws="qvm-x-ame">umpu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="290f0994-ce8e-4922-975f-fa091f566823" ownerguid="3dd684e6-75d9-41f4-aaa3-fb0cb3c7d400"> -<Abbreviation> -<AUni ws="en">4.4.4.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to relief.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>22E Relief from Trouble</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Relief</AUni> -</Name> -<Questions> -<objsur guid="df34173c-d851-4357-a3a5-d4f3d0546333" t="o" /> -<objsur guid="9df85a9b-3b9c-4996-bfb6-73fd7a42efbd" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="290f4e97-4d4a-49fd-aa52-112b0584004a" ownerguid="7ba76f5b-8f11-4043-915b-4b6c0e5c71d4"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="29148dac-78df-4796-bde8-1fa2ff1b8107" ownerguid="b10eb88e-6f3f-4738-a771-0535e023196e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="3d9f88b8-0119-43be-a2e5-31b392cb7dc5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2914a0e9-5df7-4a8e-b9ec-fc7730832155" ownerguid="6187e620-89bd-4b9d-9896-0c0c788e7740"> -<ExampleWords> -<AUni ws="en">pass, score</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What do the players do?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="29189f3e-8442-4307-9f2f-c87f5ba97e3e" ownerguid="28d4ec2b-08a6-4a73-94a5-70f4fd91c215"> -<Form> -<AUni ws="qvm-x-ach">chinchi</AUni> -<AUni ws="qvm-x-acl">chinchi; chinche</AUni> -<AUni ws="qvm-x-akh">chinchi</AUni> -<AUni ws="qvm-x-akl">chinchi; chinche</AUni> -<AUni ws="qvm-x-ame">chinchi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2919f5a8-40f9-4ff8-aa94-e69f0f72d191" ownerguid="cc6f100a-5220-4f53-801c-b1fdcc619608"> -<ExampleWords> -<AUni ws="en">older, elder</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who is older than someone else?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="291bc461-479d-4b8d-b3fa-e9096fd9bff9" ownerguid="2e33e3ee-ae2f-4d15-99dd-963049ef71af"> -<Form> -<AUni ws="qvm-x-ach">olgu; olgü</AUni> -<AUni ws="qvm-x-acl">olgö; olgu; olgo</AUni> -<AUni ws="qvm-x-akh">olqu; olqü</AUni> -<AUni ws="qvm-x-akl">olqö; olqu; olqo</AUni> -<AUni ws="qvm-x-ame">ulqu; ulqü</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="291c8527-bdf9-40db-802d-75b005d870e9" ownerguid="021a89a4-c0d7-4a50-ace8-1e273f2e0705"> -<Form> -<AUni ws="qvm-x-ach">leprösu</AUni> -<AUni ws="qvm-x-acl">leprösu; leprösu; lepröso</AUni> -<AUni ws="qvm-x-akh">leprösu</AUni> -<AUni ws="qvm-x-akl">leprösu; leprösu; lepröso</AUni> -<AUni ws="qvm-x-ame">leprösu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="291fd82e-76e8-4574-abdc-c440160a1db5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuchu</AUni> -<AUni ws="qvm-x-acl">cuchu; cuchu; cucho</AUni> -<AUni ws="qvm-x-akh">kuchu</AUni> -<AUni ws="qvm-x-akl">kuchu; kuchu; kucho</AUni> -<AUni ws="qvm-x-ame">kuchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kutru.n</AUni> -<AUni ws="qvm-x-acl">*kutru.n</AUni> -<AUni ws="qvm-x-akh">*kutru.n</AUni> -<AUni ws="qvm-x-akl">*kutru.n</AUni> -<AUni ws="qvm-x-ame">*kutru.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.33" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="92f07e1a-4b26-4b83-a269-df8d22a211a1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kutru.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bf6c5e07-bf17-48e2-bebf-2d25441e11a4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="77a41451-4d3f-48e8-8491-a29de06fafef" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kutru.n 
\entryTyp root 
\gENG edge 
\gSPN orilla 
\e *kutru.n 
\c N0 
\ach cuchu 
\akh kuchu 
\acl cuchu / _# 
\acl cuchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cucho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kuchu / _# 
\akl kuchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kucho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kuchu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="29211892-1ee2-4732-b797-4c444e60e55b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chiriyampu</AUni> -<AUni ws="qvm-x-acl">chiriyampu; chiriyampu; chiriyampo</AUni> -<AUni ws="qvm-x-akh">chiriyampu</AUni> -<AUni ws="qvm-x-akl">chiriyampu; chiriyampu; chiriyampo</AUni> -<AUni ws="qvm-x-ame">chiriyampu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tririyampu</AUni> -<AUni ws="qvm-x-acl">*tririyampu</AUni> -<AUni ws="qvm-x-akh">*tririyampu</AUni> -<AUni ws="qvm-x-akl">*tririyampu</AUni> -<AUni ws="qvm-x-ame">*tririyampu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.129" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="27ce598a-7654-4a41-8ed2-a0474e33fb73" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tririyampu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="105691a0-6992-49a1-ac05-2f536129f45b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b3afe4b7-0904-4a18-85dd-4564fa7a518e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tririyampu 
\entryTyp root 
\gENG katydid 
\gSPN chicharra 
\e *tririyampu 
\c N0 
\ach chiriyampu 
\akh chiriyampu 
\acl chiriyampu / _# 
\acl chiriyampu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chiriyampo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chiriyampu / _# 
\akl chiriyampu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chiriyampo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chiriyampu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="2921f59a-c0f4-40d7-9682-47b1561e0c11" ownerguid="5c4df70f-4924-4ecf-8411-ed892c0b677e"> -<Form> -<AUni ws="qvm-x-ach">copia</AUni> -<AUni ws="qvm-x-acl">copia</AUni> -<AUni ws="qvm-x-akh">copia</AUni> -<AUni ws="qvm-x-akl">copia</AUni> -<AUni ws="qvm-x-ame">copia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="29282c30-0be7-4a11-8742-bb1ff919cfa6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">garapachu; garapacha</AUni> -<AUni ws="qvm-x-acl">garapachu; garapacho; garapacha</AUni> -<AUni ws="qvm-x-akh">qarapachu; qarapacha</AUni> -<AUni ws="qvm-x-akl">qarapachu; qarapacho; qarapacha</AUni> -<AUni ws="qvm-x-ame">qarapachu; qarapacha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qarapatrU</AUni> -<AUni ws="qvm-x-acl">*qarapatrU</AUni> -<AUni ws="qvm-x-akh">*qarapatrU</AUni> -<AUni ws="qvm-x-akl">*qarapatrU</AUni> -<AUni ws="qvm-x-ame">*qarapatrU</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.104" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b17fe1fe-024b-4742-a58c-d21981cfad14" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qarapatrU</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="35dc9de6-4b48-4512-8154-96deaaa5ebf3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="eb0275e7-9a4d-4f9b-94bf-873e1e4d61c3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qarapatrU 
\entryTyp root 
\gENG make.naked 
\gSPN desnudar 
\e *qarapatrU 
\c V1 
\mp PMlowered 
\ach garapachu 
\ach garapacha morphlowered 
\akh qarapachu 
\akh qarapacha morphlowered 
\acl garapachu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl garapacho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl garapacha morphlowered 
\akl qarapachu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qarapacho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qarapacha morphlowered 
\ame qarapachu 
\ame qarapacha morphlowered</Run> -</AStr> -</Custom> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="292ae651-f5de-4294-ac06-25acfe912125" ownerguid="1fe7b7e5-f809-4e90-99a6-9f1991e96972" /> -<rt class="CmDomainQ" guid="292f6a33-ff27-4ce9-a81f-80508b6eaaf5" ownerguid="3dd684e6-75d9-41f4-aaa3-fb0cb3c7d400"> -<ExampleWords> -<AUni ws="en">respond, help, go to help, come to the aid of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the response of a person who sees someone in trouble?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="292f8871-7c28-49a3-af98-7fe14c5e0efa" ownerguid="45e5f48c-830f-4aba-9b99-0c93b0eda4f7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="29330913-4ca8-4b4a-94ac-97a2d1835154" ownerguid="2db23146-37ba-415e-9270-9571ebbfac63"> -<Form> -<AUni ws="qvm-x-ach">chilpi</AUni> -<AUni ws="qvm-x-acl">chilpi; chilpe</AUni> -<AUni ws="qvm-x-akh">chilpi</AUni> -<AUni ws="qvm-x-akl">chilpi; chilpe</AUni> -<AUni ws="qvm-x-ame">chilpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="2933a9c1-aa62-46fb-a03c-68aed7fae9b7" ownerguid="ff7e3abd-6810-4128-83c9-701b4925c2fe"> -<Abbreviation> -<AUni ws="en">5.5.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.337" /> -<DateModified val="2022-9-23 16:55:8.337" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for verbs that are used of fire: "The fire is ____." In some languages there are verbs for what is happening to the thing that is burning: "The house is ____."</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>14H Burning</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Burn</AUni> -</Name> -<Questions> -<objsur guid="0a123879-7884-408a-8cb5-96e4154ddda4" t="o" /> -<objsur guid="477012aa-6ccb-40fa-a161-e26f633c7e60" t="o" /> -<objsur guid="4cac52c0-0d6d-48c5-8903-aff661548efc" t="o" /> -<objsur guid="d1f57d8b-3aca-4291-9d12-5aafcc70344e" t="o" /> -<objsur guid="4f8db101-ca54-469b-a3bc-5f0bac059497" t="o" /> -<objsur guid="9c5ca6d7-ec43-40de-a0e3-6d823370b5ee" t="o" /> -<objsur guid="33a0e7ad-f799-422c-8065-0c69899b98bb" t="o" /> -<objsur guid="bccf3040-41ad-4156-ba7b-e8f9cf5049a4" t="o" /> -<objsur guid="c332f2a6-fb3a-4d2d-95c9-2ce84b6bb3c0" t="o" /> -<objsur guid="4c99a811-780b-4c8d-b3a0-9a25bb698b62" t="o" /> -<objsur guid="f350637e-824a-4de7-a46e-a3f8104d8823" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="29364b21-16cf-45f8-843b-0e1306971799" ownerguid="3c602e0d-86f5-4b0a-8c5c-89f61df3cfa8"> -<Form> -<AUni ws="qvm-x-ach">ayünu</AUni> -<AUni ws="qvm-x-acl">ayünu; ayünu; ayüno</AUni> -<AUni ws="qvm-x-akh">ayünu</AUni> -<AUni ws="qvm-x-akl">ayünu; ayünu; ayüno</AUni> -<AUni ws="qvm-x-ame">ayünu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="29366746-50da-4c40-b276-ccf85f210ae8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">laya</AUni> -<AUni ws="qvm-x-acl">laya</AUni> -<AUni ws="qvm-x-akh">laya</AUni> -<AUni ws="qvm-x-akl">laya</AUni> -<AUni ws="qvm-x-ame">laya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llaya.v</AUni> -<AUni ws="qvm-x-acl">*llaya.v</AUni> -<AUni ws="qvm-x-akh">*llaya.v</AUni> -<AUni ws="qvm-x-akl">*llaya.v</AUni> -<AUni ws="qvm-x-ame">*llaya.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.184" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a7c13fcc-c45e-4df9-9bd9-2a3fd2875f8a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llaya.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4f04b079-7425-4126-a21c-dc8c78523a31" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7222b2b0-b937-4dcb-bd5f-08fa6af1f4d9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llaya.v 
\entryTyp root 
\gENG 
\gSPN enojarse 
\e *llaya.v 
\c V1 
\ach laya 
\akh laya 
\acl laya 
\akl laya 
\ame laya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="293c1d6f-c376-4706-9f93-dc2c7e43fe2c" ownerguid="ffa13b7d-5eaa-43be-8518-51d9aa08f321"> -<ExampleWords> -<AUni ws="en">one apiece, two apiece, three apiece, one each, two each, three each</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words indicate that everyone is to get a certain number of something?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="293d0ef6-e095-4eb3-8816-884ae22918ba" ownerguid="72791192-a596-4669-ab01-8235a0cc3b43"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">na</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">na</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">na</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">na</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">na</Run> -</AStr> -</Form> -<Morph> -<objsur guid="99b46deb-a91d-4222-a9fc-6c1a15fed4be" t="r" /> -</Morph> -<Msa> -<objsur guid="a5b30965-e5c8-452a-9057-ed02c784d19b" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="2942b38b-b928-4712-a0f6-441270c4ca50" ownerguid="ab8ca07c-b23c-43dc-b705-7fe34ddf6d4d"> -<ExampleWords> -<AUni ws="en">exaggerate, stretch the truth, inflate your story, distort, overemphasize, overstate, overemphasize, overrate, overdo, make too much of, blow something out of proportion, lay it on thick, dramatize, be melodramatic, be overly dramatic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to exaggerating?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="29487264-a5ad-47cc-9966-2424e2d7fb28"> -<Analyses> -<objsur guid="b7a04cf8-e33b-4a8f-b3c7-78c322732100" t="o" /> -</Analyses> -<Checksum val="1404364099" /> -<Form> -<AUni ws="qvm-x-akh">noqapis</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexExampleSentence" guid="29494ad9-0984-49fb-b3a8-3125050f6fb4" ownerguid="7257a78b-c58a-4ff3-9883-204b9afa6030"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 144.2 Paymi amparamagnë y salvamagnë.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="2949cd82-21b1-4c67-809a-f2b3fc173a6b" ownerguid="550fea46-5c7f-4751-a0b3-f0e06e15e121"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="294abfc3-ea06-4cb0-8bf3-105442333125" ownerguid="62f3fd0b-ef3d-4b23-999e-06c0b290a67c"> -<Form> -<AUni ws="qvm-x-ach">tranquilida; tranquilidä</AUni> -<AUni ws="qvm-x-acl">tranquilida; tranquilidä</AUni> -<AUni ws="qvm-x-akh">tranquilida; tranquilidä</AUni> -<AUni ws="qvm-x-akl">tranquilida; tranquilidä</AUni> -<AUni ws="qvm-x-ame">tranquilida; tranquilidä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="294b467a-6520-4bc4-9317-580174bc64be" ownerguid="825477a7-22cb-4e39-b1ba-830ceb56818e"> -<Form> -<AUni ws="qvm-x-ach">chuluc</AUni> -<AUni ws="qvm-x-acl">chuluc</AUni> -<AUni ws="qvm-x-akh">chuluk</AUni> -<AUni ws="qvm-x-akl">chuluk</AUni> -<AUni ws="qvm-x-ame">chuluk</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="294d3bf5-366a-40fb-94ed-efe086be3b60"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">traduci</AUni> -<AUni ws="qvm-x-acl">traduci; traduce</AUni> -<AUni ws="qvm-x-akh">traduci</AUni> -<AUni ws="qvm-x-akl">traduci; traduce</AUni> -<AUni ws="qvm-x-ame">traduci</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+traducir</AUni> -<AUni ws="qvm-x-acl">+traducir</AUni> -<AUni ws="qvm-x-akh">+traducir</AUni> -<AUni ws="qvm-x-akl">+traducir</AUni> -<AUni ws="qvm-x-ame">+traducir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.38" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6be18097-ac5a-48fe-a5ed-53f7ddc1bd89" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+traducir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a937025b-b5e3-45e2-be6d-fc06234a3b30" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="08f980bd-c049-4619-9a20-9e34da99202b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +traducir 
\entryTyp root 
\gENG translate 
\gSPN traducir 
\e +traducir 
\c V2 
\mp +FinalI 
\ach traduci 
\akh traduci 
\acl traduci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl traduce +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl traduci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl traduce +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame traduci</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="294fa03b-6fed-4d89-ac5e-66c562948895"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rega:lu</AUni> -<AUni ws="qvm-x-acl">rega:lu; rega:lu; rega:lo</AUni> -<AUni ws="qvm-x-akh">rega:lu</AUni> -<AUni ws="qvm-x-akl">rega:lu; rega:lu; rega:lo</AUni> -<AUni ws="qvm-x-ame">rega:lu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+regalo</AUni> -<AUni ws="qvm-x-acl">+regalo</AUni> -<AUni ws="qvm-x-akh">+regalo</AUni> -<AUni ws="qvm-x-akl">+regalo</AUni> -<AUni ws="qvm-x-ame">+regalo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.318" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f26569bd-3ae8-417d-ab83-c82a8a2884f2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+regalo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="713064f5-212d-4bd5-84c7-6e73638e59e9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="698cddd4-6079-4d38-ace2-a15f2b7c74ae" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +regalo 
\entryTyp root 
\gENG present 
\gSPN regalo 
\e +regalo 
\c N0 
\ach rega:lu 
\akh rega:lu 
\acl rega:lu / _# 
\acl rega:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl rega:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rega:lu / _# 
\akl rega:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl rega:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame rega:lu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="29508344-d298-4cb0-bfeb-a9b03c3918ea" ownerguid="85e286c1-1d60-4f0a-a2fa-d9c693f7b775"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmPossibility" guid="2951ac05-262c-4ba5-9799-d306995c3bc8" ownerguid="b80bb21a-ea5e-11de-8c5d-0013722f8dec"> -<Abbreviation> -<AUni ws="en">takesPLALLF</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-10-21 16:36:48.418" /> -<DateModified val="2022-10-21 16:40:8.685" /> -<Description> -<AStr ws="en"> -<Run ws="en">Those roots which can take -</Run> -<Run ws="qvm-x-akh">päkU,</Run> -<Run ws="en"> PLALLF</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">takes PLALLF</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="2951c233-dd0b-4516-82b6-2c4cd8117b49" ownerguid="aaf9d375-f0a0-4c7b-bbf8-3c7ffd4f5a52"> -<ExampleWords> -<AUni ws="en">fluctuate, fluctuation, move, vary</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a change in degree?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2951f40e-8323-46f8-8a16-9a02c5b8ed18" ownerguid="9e87dc31-103d-49fd-97bd-d459c7c4f0c5"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="295346f9-eb51-46c6-9868-46ae5cba544d" ownerguid="892f4033-1332-4426-9fca-14d126677c5f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="29567dce-9944-4dca-a47d-ae78f497cca1" ownerguid="c8602dc5-5c91-480a-b5ce-1c82fe3da83a"> -<ExampleWords> -<AUni ws="en">pick</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What do people do to their teeth?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="295ad13c-f7e8-452c-a664-794961e9aa0b" ownerguid="aeb1401c-7ad6-466e-b6bc-816665d786bb"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JHN 21.11 Tsaynog niptinmi Simón Pedro büquiman witsarcur redta garachämorgan pescäducunata shuntananpag.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="295dc021-5b50-47b3-8340-1631c6d6fadc" ownerguid="72274e9d-5d3c-4ae7-93ab-db3617cdda1e"> -<Abbreviation> -<AUni ws="en">2.3.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.32" /> -<DateModified val="2022-9-23 16:55:8.32" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling comfortable--to feel good in your body because there is nothing around you that makes you feel bad. This includes comfortable clothes, chair, bed, temperature, or journey.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Comfortable</AUni> -</Name> -<Questions> -<objsur guid="8f6fe9b8-e447-4270-bae0-0c57c493ae74" t="o" /> -<objsur guid="5f1e80b6-e9b3-4c0d-8406-cf471dcc390e" t="o" /> -<objsur guid="c4590678-1eb9-4e65-8a67-fc9254af4e8f" t="o" /> -<objsur guid="27293c9a-6a5a-4ce1-9ff7-a92a87b6b2d9" t="o" /> -<objsur guid="615faa11-79f2-4eeb-810f-6b271c6841ab" t="o" /> -<objsur guid="e8a9ea69-c72b-4253-82bb-9e41e1e815ef" t="o" /> -<objsur guid="fd425c34-6efa-4489-aae4-ad0baa3f0609" t="o" /> -<objsur guid="8b5f3568-a9a1-4809-ba05-42d25fe70068" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="296059c7-01de-4864-8c15-305b6dff7923" ownerguid="d06dae77-134a-403f-ba88-52ecd66c0522"> -<Question> -<AUni ws="en">(5) What species of liverworts are there?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2961131a-5d7d-4f69-9b58-3a1fc18ed0dc" ownerguid="4a4780b0-3faf-4148-8382-3dcc08956c80"> -<Form> -<AUni ws="qvm-x-ach">porfin</AUni> -<AUni ws="qvm-x-acl">porfin</AUni> -<AUni ws="qvm-x-akh">porfin</AUni> -<AUni ws="qvm-x-akl">porfin</AUni> -<AUni ws="qvm-x-ame">porfin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="29631770-858d-4d76-b309-515796516ebc" ownerguid="27048124-c204-4585-9997-c51728f085d6"> -<ExampleWords> -<AUni ws="en">ingrate, ungrateful wretch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to a person who does not thank someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="29635548-a894-4138-802b-c4198791dd0a" ownerguid="a3e905b8-107b-4311-bb50-0abe151131b3"> -<ExampleWords> -<AUni ws="en">permission, authorization, consent, clearance, someone's say-so, license, green light, the okay, the go-ahead</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to permission to do something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="29690693-d2bd-43fd-b607-5e406dbb5e4d" ownerguid="a206887b-8a9d-455a-9585-c53ca146e484"> -<Form> -<AUni ws="qvm-x-ach">punta</AUni> -<AUni ws="qvm-x-acl">punta</AUni> -<AUni ws="qvm-x-akh">punta</AUni> -<AUni ws="qvm-x-akl">punta</AUni> -<AUni ws="qvm-x-ame">punta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="296c047e-5078-4781-a6f6-75c7562888d5" ownerguid="8e39aa41-58a0-4ca0-8700-cc25921d7415"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">toasted.grain</AUni> -<AUni ws="es">grano.tostado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="14a615c0-a476-4a72-a781-51d643bf5a66" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="296e9a6b-3f37-4381-a83b-719866552202" ownerguid="47905104-632f-45bc-b18c-a689e514158f"> -<Form> -<AUni ws="qvm-x-ach">cajïta</AUni> -<AUni ws="qvm-x-acl">cajïta</AUni> -<AUni ws="qvm-x-akh">cajïta</AUni> -<AUni ws="qvm-x-akl">cajïta</AUni> -<AUni ws="qvm-x-ame">cajïta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="296f6ad9-3715-4938-a99d-b7b9fd55413a" ownerguid="8c70c2ce-1b0c-4832-b025-2833afc56423"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9fb016c3-4869-42ee-8f69-726dff6c9821" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="d402a99b-296e-4f60-9438-de77cdd465e3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="29702062-4717-4437-be2e-14763373ed45" ownerguid="753836ad-8751-4f9c-a204-b4f429529538"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="297085b3-6660-4e9a-96e2-7d6813f667c0" ownerguid="59b02f4e-4380-4541-83a3-e1533d913c22"> -<Form> -<AUni ws="qvm-x-ach">tïsicu</AUni> -<AUni ws="qvm-x-acl">tïsicu; tïsicu; tïsico</AUni> -<AUni ws="qvm-x-akh">tïsicu</AUni> -<AUni ws="qvm-x-akl">tïsicu; tïsicu; tïsico</AUni> -<AUni ws="qvm-x-ame">tïsicu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2972a24e-a1f8-457e-b937-ad1753eab063" ownerguid="e0e83cc9-b876-47f6-8e66-60c9c505b927"> -<ExampleWords> -<AUni ws="en">dangerous, threatening, life threatening</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is dangerous?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="297324d9-93ac-487c-bbf6-74aa3dd017f8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ho:ja</AUni> -<AUni ws="qvm-x-acl">ho:ja</AUni> -<AUni ws="qvm-x-akh">ho:ja</AUni> -<AUni ws="qvm-x-akl">ho:ja</AUni> -<AUni ws="qvm-x-ame">ho:ja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hoja</AUni> -<AUni ws="qvm-x-acl">+hoja</AUni> -<AUni ws="qvm-x-akh">+hoja</AUni> -<AUni ws="qvm-x-akl">+hoja</AUni> -<AUni ws="qvm-x-ame">+hoja</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.741" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e9803a65-4743-4ab5-8055-530b5c357435" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hoja</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8113325d-cef1-49db-b504-644c3162a580" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="35264f34-ac56-49af-8e2b-c10b38a363b7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hoja 
\entryTyp root 
\gENG leaf 
\gSPN hoja 
\e +hoja 
\c N0 
\ach ho:ja 
\akh ho:ja 
\acl ho:ja 
\akl ho:ja 
\ame ho:ja</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="297aa3e3-50b7-4aa4-8022-d5ecac25f64b" ownerguid="81531d1a-04b9-44ca-92cb-be8555727f04"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -<Sense> -<objsur guid="db6117c5-121c-433a-a891-e69950f55761" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="297d94b9-d163-4a6f-9172-02f7569458a0" ownerguid="797a10b9-ef8f-411e-8043-7b4e46426caa"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="297f0f67-5bca-49d8-ad5e-63007241f9fa" ownerguid="85646774-8145-4553-b8a7-6927cd077908"> -<ExampleWords> -<AUni ws="en">culture</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What is a group of small animals called?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="297f69f1-160e-442f-be7b-efcb44722b9c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">togla</AUni> -<AUni ws="qvm-x-acl">togla</AUni> -<AUni ws="qvm-x-akh">toqla</AUni> -<AUni ws="qvm-x-akl">toqla</AUni> -<AUni ws="qvm-x-ame">tuqla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tuqlla.n</AUni> -<AUni ws="qvm-x-acl">*tuqlla.n</AUni> -<AUni ws="qvm-x-akh">*tuqlla.n</AUni> -<AUni ws="qvm-x-akl">*tuqlla.n</AUni> -<AUni ws="qvm-x-ame">*tuqlla.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.7" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5c93efd5-8a99-4144-a77d-8e31730ebeac" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tuqlla.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a256ddf0-fc9e-43c9-a272-6c32471967f5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ca6248f9-3913-4da0-9764-e1d0684d9071" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tuqlla.n 
\entryTyp root 
\gENG 
\gSPN 
\e *tuqlla.n 
\c N0 
\ach togla 
\akh toqla 
\acl togla 
\akl toqla 
\ame tuqla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="297fee80-2171-4516-a2db-90b599f8cb45"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wacha</AUni> -<AUni ws="qvm-x-acl">wacha</AUni> -<AUni ws="qvm-x-akh">wacha</AUni> -<AUni ws="qvm-x-akl">wacha</AUni> -<AUni ws="qvm-x-ame">wacha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*watra</AUni> -<AUni ws="qvm-x-acl">*watra</AUni> -<AUni ws="qvm-x-akh">*watra</AUni> -<AUni ws="qvm-x-akl">*watra</AUni> -<AUni ws="qvm-x-ame">*watra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.584" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5e20307f-af34-4115-a7ce-3dfbe836838a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*watra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b6c4ff26-c9e8-484a-b138-297c945e7305" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="97a3ab31-c8a3-4e1c-8790-10d74532d894" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *watra 
\entryTyp root 
\gENG bear 
\gSPN parir 
\e *watra 
\c V2 
\ach wacha 
\akh wacha 
\acl wacha 
\akl wacha 
\ame wacha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="2980026f-fad6-4941-a76e-033ddaecdabe" ownerguid="426a871a-86dc-41af-a698-1a77dae28f35"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">care</AUni> -<AUni ws="es">cuidar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ad542860-254b-421c-8195-a6add455fd27" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="29850dc4-2ffa-4720-b4c6-472f07991b37" ownerguid="71430132-f2ea-40fe-b3f5-b6775741cc56"> -<ExampleWords> -<AUni ws="en">sew, spin thread, embroider, knit, crochet, mend, patch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used for the activity?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="29899511-9a0d-4342-aa07-e9fd001b22a9" ownerguid="9ef41718-0161-4427-af6d-55c02e92b015"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="2989ee89-b549-478d-b7ff-d90bdc8e6d2f" ownerguid="c8134c1c-e189-414e-b9be-4dcbfb484e29" /> -<rt class="LexSense" guid="2997c7e0-7852-4b1e-86bc-d078ee533eba" ownerguid="e916fa72-0848-4f7c-b412-8dfcfd814b0f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">obligation</AUni> -<AUni ws="es">cumplimiento</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8f193636-44cf-44c2-ab9c-bd799bce875d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoInflAffMsa" guid="2999bb54-aa09-4eed-affb-cf684bd15cf6" ownerguid="88843228-3d25-4192-af4b-b368a7803382"> -<PartOfSpeech> -<objsur guid="85ffb381-0567-4202-8640-53cbaec77e45" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="769c8d34-7ae5-450b-9e9b-f62d75e5f18a" t="r" /> -</Slots> -</rt> -<rt class="LexEntry" guid="299c2c32-9eee-4983-bf99-83dc623d7469"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">janjampa</AUni> -<AUni ws="qvm-x-acl">janjampa</AUni> -<AUni ws="qvm-x-akh">janjampa</AUni> -<AUni ws="qvm-x-akl">janjampa</AUni> -<AUni ws="qvm-x-ame">hanhampa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hanjampa.v</AUni> -<AUni ws="qvm-x-acl">*hanjampa.v</AUni> -<AUni ws="qvm-x-akh">*hanjampa.v</AUni> -<AUni ws="qvm-x-akl">*hanjampa.v</AUni> -<AUni ws="qvm-x-ame">*hanjampa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.660" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4e155dae-bec9-432b-9bfc-6f845d10891e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hanjampa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ad8a9294-25ba-47fe-a809-681a77ae2041" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="04c9eb2f-5c98-44ef-9df9-1e18bf95b45a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hanjampa.v 
\entryTyp root 
\gENG weakness 
\gSPN debilidad 
\e *hanjampa.v 
\c V1 
\ach janjampa 
\akh janjampa 
\acl janjampa 
\akl janjampa 
\ame hanhampa 
\i SAN MATEO 6.16 <<Tayta Diosta manacunayquipag ayunarga ama waquin runacunanöga capäcuytsu. Paycunaga ayunaycashganta runacuna tantyacunanpagmi janjampaycachaycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="299ccbf3-add0-446c-bd94-2eb0b4259b4c" ownerguid="147c2e58-9ae8-460f-8cab-bf04a668945d"> -<ExampleWords> -<AUni ws="en">prophecy, prediction, prophetic utterance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to what is said?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="299e51d8-367a-4ace-abb8-63a7610080fd" ownerguid="5b08e461-b967-4802-bc2e-c5cd7ce6b5f5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="29a00ab3-32a7-4267-a095-43932216bb71" ownerguid="de6b15d3-6409-4998-b03d-903133f4ad70"> -<ExampleWords> -<AUni ws="en">hum, whistle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to singing without using words?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="29a225aa-6123-4405-9259-c7b1c73d4df9" ownerguid="10b6c417-d020-4318-a44a-ae69ea3eec5a"> -<ExampleWords> -<AUni ws="en">change (v), change (n), revise, revision, revolutionize, revolution, reform, reformation, modify, modification, develop, development, make different, impact, process, transform</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to refer to changing something?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="29a5be6e-9941-4b90-8d56-727b860e6046" ownerguid="245718ee-4c83-45fb-9cb9-1e6cfe025d9b"> -<Category> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</Category> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="18d90e98-12d4-4906-a167-93370dcf1c79" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="8742d8c8-0797-4b47-8f77-04fb6475d9bf" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="29a6d13c-2c6b-4844-93ee-4956c3dcb4fc" ownerguid="64f835b8-4528-4f5b-845b-113fc3c255fe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/N0 V2/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">PRTSPF</AUni> -<AUni ws="es">PRTESM</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="29cc4630-807f-4b49-93bc-09cb0176dae2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="29a6fa7f-a14a-4f9e-8b10-e9ea0f3e8ff3" ownerguid="7babbb46-2299-4864-ba04-c8dc3f7be47f"> -<Form> -<AUni ws="qvm-x-ach">guepishta</AUni> -<AUni ws="qvm-x-acl">guepishta</AUni> -<AUni ws="qvm-x-akh">qepishta</AUni> -<AUni ws="qvm-x-akl">qepishta</AUni> -<AUni ws="qvm-x-ame">qipishta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="29a70926-986d-4a0b-b456-0581cdaff452"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pulan</AUni> -<AUni ws="qvm-x-acl">pulan</AUni> -<AUni ws="qvm-x-akh">pulan</AUni> -<AUni ws="qvm-x-akl">pulan</AUni> -<AUni ws="qvm-x-ame">pulan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pullan.n</AUni> -<AUni ws="qvm-x-acl">*pullan.n</AUni> -<AUni ws="qvm-x-akh">*pullan.n</AUni> -<AUni ws="qvm-x-akl">*pullan.n</AUni> -<AUni ws="qvm-x-ame">*pullan.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.994" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8432da97-a154-4b79-8030-e17924374add" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pullan.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="42492e6e-8306-4a4a-af60-e63491d97114" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8be79fd9-52a8-4124-8184-0b3644dd833e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pullan.n 
\entryTyp root 
\gENG half 
\gSPN mitad 
\e *pullan.n 
\c N0 
\mp +FinalC 
\ach pulan 
\akh pulan 
\acl pulan 
\akl pulan 
\ame pulan 
\i Exo 27.5 Tsaynog churaptiquimi tsay rejïlla quëdanga pulannincho.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="29a80353-0b22-4987-bceb-be893dcabf82" ownerguid="6eb1cb04-4be5-48bc-b2a1-ec90fd81a464"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">duck</AUni> -<AUni ws="es">pato</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b50fda9d-ad6f-4454-8978-b7e2cfeb8366" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="29a8d1fc-7c36-4813-b53d-23e1aaf5ff92" ownerguid="ed7930df-e7b4-43c9-a11a-b09521276b57"> -<ExampleWords> -<AUni ws="en">get rid of that smell, air out a room, deodorize, mask a scent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(20) What words refer to getting rid of a smell?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="29a8ebbe-ebc4-4295-b6af-84331d019361" ownerguid="bc96b3e3-6185-4925-b79e-8f0f9555bfb7"> -<Abbreviation> -<AUni ws="en">3.5.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.172" /> -<DateModified val="2022-9-23 16:55:8.172" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that refer to words and groups of words.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33B Word, Passage</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Word</AUni> -</Name> -<OcmCodes> -<Uni>104 Glossary</Uni> -</OcmCodes> -<Questions> -<objsur guid="9be9b834-b462-4fcb-be17-351469de6a93" t="o" /> -<objsur guid="073e3cd6-eaae-43fc-b670-5b8a3285a587" t="o" /> -<objsur guid="52b648b7-6d44-4b32-8b06-bfd1b63bfd95" t="o" /> -<objsur guid="d877768c-b50a-4dff-bf99-b7fad9224092" t="o" /> -<objsur guid="d004b129-770a-4ed6-a286-d2920d1fced7" t="o" /> -<objsur guid="06c7371f-036e-4c18-b06a-5c5e615222c6" t="o" /> -<objsur guid="48ed6fa4-26ee-4c16-9aa4-bf3dbf1d4756" t="o" /> -<objsur guid="3011e644-8bf5-4973-97c7-2cdbfed6f53e" t="o" /> -<objsur guid="e386c569-e9be-46ec-a099-d970dc2a38a4" t="o" /> -<objsur guid="2e55f507-df84-4c78-920f-8cd3db7edc97" t="o" /> -<objsur guid="7c620f08-4ec3-400c-8feb-1313cff7ea70" t="o" /> -<objsur guid="d16a9494-ec55-4ad0-ad2d-6aaa191c1992" t="o" /> -<objsur guid="e62844f5-7c25-4693-85e3-e25a27bfd924" t="o" /> -<objsur guid="0f632f6d-3cf4-4a26-9f4c-ec243d126215" t="o" /> -<objsur guid="71fb62d6-392b-44b7-9025-2a0693f851dd" t="o" /> -<objsur guid="0e608d1a-6a79-4c5a-a1ce-5ddddddc099d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="29acb1c8-99b9-4af3-a5e5-46aef6f9ed83" ownerguid="7a8cb8d3-797d-478d-b7dd-265a1eedc0c1"> -<ExampleWords> -<AUni ws="en">enclosure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to an area that has a fence around it?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="29adb6ac-9066-4aed-8c56-7fb7ed983e5d" ownerguid="997eba85-9a15-48c2-8906-40ea725e8fa5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="29b081c1-f41b-4355-be45-de4bff6cd4fc" ownerguid="f2b94c3d-b681-4909-900a-083e287ef045"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="29b4d263-2836-4028-8512-613d9d3fb383" ownerguid="8bdf4847-903b-4af6-9553-3cfab65de516"> -<ExampleWords> -<AUni ws="en">mathematics, math, arithmetic, geometry, algebra, calculus, trigonometry, statistics</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to mathematics?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="29b6ffe2-1299-4aa0-b3cd-63ef76214003"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsegta</AUni> -<AUni ws="qvm-x-acl">tsegta</AUni> -<AUni ws="qvm-x-akh">tseqta</AUni> -<AUni ws="qvm-x-akl">tseqta</AUni> -<AUni ws="qvm-x-ame">tsiqta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chiqta.v</AUni> -<AUni ws="qvm-x-acl">*chiqta.v</AUni> -<AUni ws="qvm-x-akh">*chiqta.v</AUni> -<AUni ws="qvm-x-akl">*chiqta.v</AUni> -<AUni ws="qvm-x-ame">*chiqta.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.323" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f8c6916f-32ec-4176-8a23-fdeee3716b5d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chiqta.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="72d3345c-8901-404a-878c-919ce3190c67" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="78378698-1fc7-4610-afdf-56c440f059d2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chiqta.v 
\entryTyp root 
\gENG to.split.wood 
\gSPN rajar.leña 
\e *chiqta.v 
\c V1 
\ach tsegta 
\akh tseqta 
\acl tsegta 
\akl tseqta 
\ame tsiqta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="29b93ff7-8707-444b-8f7f-f7391ed7aed4" ownerguid="efd03c89-bf8b-4d46-a921-06cc06f28356"> -<ExampleWords> -<AUni ws="en">join with, hesitate to join, stand apart, stand aloof</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a person's relationship with a group?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="29b970d1-2e6f-453f-bacc-b6f12ae5bed7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">apari</AUni> -<AUni ws="qvm-x-acl">apari; apare</AUni> -<AUni ws="qvm-x-akh">apari</AUni> -<AUni ws="qvm-x-akl">apari; apare</AUni> -<AUni ws="qvm-x-ame">apari</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*apa+ri</AUni> -<AUni ws="qvm-x-acl">*apa+ri</AUni> -<AUni ws="qvm-x-akh">*apa+ri</AUni> -<AUni ws="qvm-x-akl">*apa+ri</AUni> -<AUni ws="qvm-x-ame">*apa+ri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.800" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ae6b368e-4e46-4ee3-8e8a-a42b97f6e579" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*apa+ri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fc2e4b51-6086-4f7b-afbd-1d724c498e36" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7f4c2e24-ace1-4d6f-ae0a-8a27d8de466a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *apa+ri 
\entryTyp root 
\gENG carry 
\gSPN llevar 
\e *apa+ri 
\c V1 
\mp +FinalI 
\ach apari 
\akh apari 
\acl apari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl apare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl apari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl apare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame apari 
\mcc *apa+ri / ~_ PNCT1</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="29bca0b2-b243-4a26-845b-64250b3599cf" ownerguid="fedc3f24-d978-420e-b329-0f2a69385360"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="1b3eed76-1e51-4f69-8048-bb85826be0b2" t="o" /> -<objsur guid="593b5b97-47d5-4af2-be8a-6321e6a33496" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="29bdd268-f0af-48cb-a718-2e654b204c59" ownerguid="edbfc928-049c-4cb7-8c88-8e8af38287c7"> -<ExampleWords> -<AUni ws="en">make up, get back together</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to loving each other again after having problems?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="29c0ccd8-4935-4e89-a387-e3578688986e" ownerguid="207d3ddc-dee9-43db-be01-56ed6a5e161f"> -<Form> -<AUni ws="qvm-x-ach">quinray</AUni> -<AUni ws="qvm-x-acl">quinray</AUni> -<AUni ws="qvm-x-akh">kinray</AUni> -<AUni ws="qvm-x-akl">kinray</AUni> -<AUni ws="qvm-x-ame">kinray</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="29c1c11c-535c-4c66-958e-5438568a35c5" ownerguid="20694d1a-2637-46ee-a27b-56f7347b15d3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="29cbc121-787f-41c4-af32-4d51921a8189" ownerguid="b0e5042d-1ade-4fb1-a6fd-9a165f5c4763"> -<ExampleWords> -<AUni ws="en">kidnapping, abduction</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the act of kidnapping someone?</AUni> -</Question> -</rt> -<rt class="MoDerivAffMsa" guid="29cc4630-807f-4b49-93bc-09cb0176dae2" ownerguid="64f835b8-4528-4f5b-845b-113fc3c255fe"> -<FromPartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</FromPartOfSpeech> -<ToPartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</ToPartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="29cc52d1-a143-4b59-9683-3f86876054ab" ownerguid="e5020b79-6fb0-4be4-a359-d4f899da5c7e"> -<ExampleWords> -<AUni ws="en">argument, argumentation, angry words, disputation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something someone says in an quarrel?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="29cd037e-f1bb-4a3b-89f6-bc7fc717f57a" ownerguid="721e7782-9add-41fa-a7cf-659d5ca33926"> -<ExampleWords> -<AUni ws="en">bingo, blackjack, bridge, cards, checkers, chess, charades, craps, dice, dominoes, gin, hearts, jacks, lotto, mahjong, marbles, Monopoly, Parcheesi, poker, roulette, solitaire</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the names of specific board games?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="29cd7e81-0315-490f-b1bf-ee8c4343acf9" ownerguid="35e61ec4-0542-4583-b5da-0aa5e31a35aa"> -<ExampleWords> -<AUni ws="en">be born, birth, arrive, arrival, come along, come into the world</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a baby being born?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="29cfa848-10dd-48b8-a751-28a386af3f0e" ownerguid="52a7b4cb-3ebe-4c1f-8e5c-4d86e1d7d10b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="840819ff-8e8d-44e2-a503-ed688872bd5b" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -<Sense> -<objsur guid="909cfa11-00e3-4787-b51b-dfac729061be" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="29cffa74-eefc-42a2-82a1-2584e8266134" ownerguid="3dcc4d9c-d6fc-4acf-9310-eb4909d235c6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">leaf</AUni> -<AUni ws="es">oja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="661ed029-3a87-4561-af56-94128312d401" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="29d131d2-5e52-49e3-83b1-c872d331cf03" ownerguid="64493789-1c2c-4b24-a7e6-f00ff9be923e"> -<Abbreviation> -<AUni ws="en">6.1.2.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.348" /> -<DateModified val="2022-9-23 16:55:8.348" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being useless--words describing something that cannot be used to do anything.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>65D Useful, Useless; 65E Advantageous, Not Advantageous</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Useless</AUni> -</Name> -<Questions> -<objsur guid="eeeab716-7f5c-4254-bbd3-297c796233bd" t="o" /> -<objsur guid="87c3ea63-5f26-462c-84c9-12e0ce3bccff" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="29d16530-b453-498a-8710-72249df022d5" ownerguid="d661c6a6-ccb2-46a1-a848-4dcfb42d6969"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.pleasing</AUni> -<AUni ws="es">gustar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bf1b7fe6-7bf0-4bd1-b4ff-52545af034cb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="29d53fdc-0fff-48f5-aee2-b1b0969dec7e" ownerguid="2ea679e8-3377-4877-876c-9db06ea203b5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.parallel</AUni> -<AUni ws="es">estar.paralelo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0642854e-0a08-4ef1-af00-412fa6b30bca" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="29d6da63-f4a4-4e4f-81a7-908a04d3ca75" ownerguid="f691e303-f700-4e58-9dcd-f7ab86946e51"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 103.21 Tayta Diosta sirveg y munashganta rurag ejercitunpis, payta agradëcicäriy.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="29d7cb44-cc26-484e-9e2f-6bbef1dfb158" ownerguid="c79d49f1-74ec-4dba-a5aa-5e861af63d05"> -<ExampleWords> -<AUni ws="en">blame yourself, reproach yourself</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to blaming yourself for something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="29d9006d-6e3b-45bb-89b9-8dfb2ffadbb6" ownerguid="807bc1e5-a2fd-41a2-874b-f43c82ed334b"> -<Form> -<AUni ws="qvm-x-ach">lamca</AUni> -<AUni ws="qvm-x-acl">lamca</AUni> -<AUni ws="qvm-x-akh">lamka</AUni> -<AUni ws="qvm-x-akl">lamka</AUni> -<AUni ws="qvm-x-ame">lamka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="29dea368-293d-41ea-8542-38798f802b19"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">venta:na</AUni> -<AUni ws="qvm-x-acl">venta:na</AUni> -<AUni ws="qvm-x-akh">venta:na</AUni> -<AUni ws="qvm-x-akl">venta:na</AUni> -<AUni ws="qvm-x-ame">venta:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ventana</AUni> -<AUni ws="qvm-x-acl">+ventana</AUni> -<AUni ws="qvm-x-akh">+ventana</AUni> -<AUni ws="qvm-x-akl">+ventana</AUni> -<AUni ws="qvm-x-ame">+ventana</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.363" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="06dc8a8f-17cd-400a-a972-188d32804273" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ventana</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f03633e0-feef-4a6c-b3e0-37a5abd85bf2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="73387d82-c573-48b0-9265-43b2b3f03985" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ventana 
\entryTyp root 
\gENG window 
\gSPN ventana 
\e +ventana 
\c N0 
\ach venta:na 
\akh venta:na 
\acl venta:na 
\akl venta:na 
\ame venta:na</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="29e185bf-b7f6-4684-ba22-1d75568900b1" ownerguid="2b2bedd5-3f9c-4c18-a256-aa65ee19f15c"> -<ExampleWords> -<AUni ws="en">not be suited, be wrong for, not be right for, not be someone's type</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to people being incompatible?</AUni> -</Question> -</rt> -<rt class="StStyle" guid="29e239ee-95f3-4c1e-97d7-e2a6794cd174" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="15" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>DefaultFootnoteCharacters</Uni> -</Name> -<Rules> -<Prop></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<UserLevel val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="29e46493-b2bf-4f94-acd5-ab118b83babd" ownerguid="56cb7acc-108f-44ab-a7dc-d995bf6db8c5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="29e61f80-e6aa-4bb2-bb66-4fb1dee5912d" ownerguid="7459c0d8-4da1-4944-a95e-bc64cde860f5"> -<ExampleWords> -<AUni ws="en">invite, extend an invitation, invite over, ask someone to something, assemble, bring together, call up, call together, call a meeting, collect, convene, gather, mobilize, muster, rally, request someone's presence, round up, summon, bid someone come</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used of causing people to meet together?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="29e82cb2-b520-4476-98c7-e40a67fe8e25"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ancu</AUni> -<AUni ws="qvm-x-acl">ancu; ancu; anco</AUni> -<AUni ws="qvm-x-akh">anku</AUni> -<AUni ws="qvm-x-akl">anku; anku; anko</AUni> -<AUni ws="qvm-x-ame">anku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*anku.n</AUni> -<AUni ws="qvm-x-acl">*anku.n</AUni> -<AUni ws="qvm-x-akh">*anku.n</AUni> -<AUni ws="qvm-x-akl">*anku.n</AUni> -<AUni ws="qvm-x-ame">*anku.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.790" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2151f146-f6b1-44ae-a647-0ccbc1c13ec9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*anku.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4e4a2edc-a2bb-44d9-a940-552e6187399d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="129e39c9-515d-4558-b737-526d43c1a886" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *anku.n 
\entryTyp root 
\gENG calf 
\gSPN pantorrilla 
\e *anku.n 
\c N0 
\ach ancu 
\akh anku 
\acl ancu / _# 
\acl ancu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl anco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl anku / _# 
\akl anku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl anko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame anku</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="29ebbd1d-3de1-43c7-b993-f204fa28f9f1" ownerguid="7ca45f0e-9923-4f81-878d-da1b20f82bf6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="29ee9181-6e74-4215-bb59-41fbd8ac801c" ownerguid="0158fed2-e8ca-4fea-b495-afe387d8d34d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="29f0d6e7-da4c-4fde-85f2-28b642df1d6f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa; pa:</AUni> -<AUni ws="qvm-x-acl">pa; pa:</AUni> -<AUni ws="qvm-x-akh">pa; pa:</AUni> -<AUni ws="qvm-x-akl">pa; pa:</AUni> -<AUni ws="qvm-x-ame">pa; pa:</AUni> -</Custom> -<Comment> -<AStr ws="en"> -<Run ws="en">potentially morphlowers</Run> -</AStr> -</Comment> -<DateCreated val="2022-9-23 18:26:20.487" /> -<DateModified val="2022-10-16 16:7:8.76" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="1" /> -<LexemeForm> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">BEN1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0dcd7049-8472-4f62-ab4f-e3cdb41b8742" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e8b60316-f643-448b-9a60-60bffc9ea560" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx BEN1 
\entryTyp suffix 
\gENG BEN1 
\gSPN BEN1 
\e BEN1 
\c V1/V2 V2/V2 
\o 030 
\mp +mlowers 
\mp +underlong 
\ach pa foreshortened 
\ach pa: 
\akh pa foreshortened 
\akh pa: 
\acl pa foreshortened 
\acl pa: 
\akl pa foreshortened 
\akl pa: 
\ame pa foreshortened 
\ame pa: 
\mp +FinalC 
\mp +FinalLength 
\mcc *rika: / ~_ BEN1 
\mcc BEN1 / *ima.v ~_ [q] 
\mcc BEN1 REF / [TakeBENREF] _ 
\mcc BEN1 / ~_ 1 [ques] 
\mcc BEN1 / ~_ 1 WARN2 
\mcc BEN1 / *pacha.v ~_ [q] 
\mcc BEN1 / ~_ REFDIR UP 
\mcc BEN1 / ~_ 1 EVEN1 
\mcc BEN1 / ~_ AG BEC</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="29f1bdb5-0f23-4974-bc8e-6633c6f6d608" ownerguid="f07024f3-83b6-4d32-a6b1-36b0f24328ca"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="29f2b880-eddc-47b1-94bc-ff048d122e04" ownerguid="756728a8-9eb8-4329-aee2-d6a3d64585f2"> -<ExampleWords> -<AUni ws="en">melt, melted, melt down, molten, thaw, liquefy, soften, dissolve, soluble</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to solids changing into liquids?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="29f6b1c2-cb37-4bc9-83e8-78d361c9e1af" ownerguid="d32fda34-6a18-4483-bba0-61fde014f904"> -<Form> -<AUni ws="qvm-x-ach">canca</AUni> -<AUni ws="qvm-x-acl">canca</AUni> -<AUni ws="qvm-x-akh">kanka</AUni> -<AUni ws="qvm-x-akl">kanka</AUni> -<AUni ws="qvm-x-ame">kanka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="29f83ace-d0c4-49c3-b753-3866a64e87b4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">dibuja</AUni> -<AUni ws="qvm-x-acl">dibuja</AUni> -<AUni ws="qvm-x-akh">dibuja</AUni> -<AUni ws="qvm-x-akl">dibuja</AUni> -<AUni ws="qvm-x-ame">dibuja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+dibuja</AUni> -<AUni ws="qvm-x-acl">+dibuja</AUni> -<AUni ws="qvm-x-akh">+dibuja</AUni> -<AUni ws="qvm-x-akl">+dibuja</AUni> -<AUni ws="qvm-x-ame">+dibuja</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.406" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3971263a-e709-4227-9e49-f4e48bc48b28" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+dibuja</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7d189c63-8094-46e9-8e0c-4e74252781a9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d70d7909-280f-4d53-b583-28c7cff5cb70" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +dibuja 
\entryTyp root 
\gENG draw 
\gSPN dibujar 
\e +dibujar 
\c V1 
\ach dibuja 
\akh dibuja 
\acl dibuja 
\akl dibuja 
\ame dibuja</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="29f9dc7f-f1a2-4143-a3ec-55aeb9bb3144" ownerguid="c6132280-d2aa-46f8-9e94-b087dbda09cb"> -<ExampleWords> -<AUni ws="en">balance something, steady something</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to balancing something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2a02552e-580e-4063-ac83-19d6f8501c2b" ownerguid="ad7cc381-1dc6-4fc2-94a4-acd5bf7a11da"> -<ExampleWords> -<AUni ws="en">certainly, absolutely, definitely, there is no doubt, undoubtedly, without a doubt, without doubt, without a shadow of a doubt, unquestionably, be beyond dispute, there's no denying, there are no two ways about it, there is no question</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is certainly true?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="2a0595ef-e07a-46e3-b0e3-fc8866dfd3aa"> -<Form> -<Str> -<Run ws="en">trans</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="2a065fd0-780b-4781-a5cf-332303f18754" ownerguid="768aed05-dbc9-4caf-9461-76cb3720f908"> -<ExampleWords> -<AUni ws="en">painful, aching, sore (adj), stiff, tender</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a part of your body that is in pain?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2a076a01-f505-4f98-a423-a7b940aa4fc9" ownerguid="91ddf495-a28b-4a32-90dc-6f997d0cd069"> -<ExampleWords> -<AUni ws="en">play, pluck, fiddle, blast, beat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to playing a musical instrument?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2a0b8f7c-503a-4860-8a12-afd38f6b768b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">liyi</AUni> -<AUni ws="qvm-x-acl">liyi; liye</AUni> -<AUni ws="qvm-x-akh">liyi</AUni> -<AUni ws="qvm-x-akl">liyi; liye</AUni> -<AUni ws="qvm-x-ame">liyi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+leer</AUni> -<AUni ws="qvm-x-acl">+leer</AUni> -<AUni ws="qvm-x-akh">+leer</AUni> -<AUni ws="qvm-x-akl">+leer</AUni> -<AUni ws="qvm-x-ame">+leer</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.63" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="826aa9c9-85db-4e8a-b5cf-547919e3bc30" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+leer</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cf686b15-80dc-4908-b6d4-755ab6fba460" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="483f367d-6a7b-4f0e-bf66-551bb101e3fe" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +leer 
\entryTyp root 
\gENG read 
\gSPN leer 
\e +leer 
\c V2 
\mp +FinalI 
\ach liyi 
\akh liyi 
\acl liyi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl liye +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl liyi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl liye +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame liyi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="2a0d1094-b7d8-4ff5-a299-53bea90915ba" ownerguid="aa995098-cd36-4b13-a40b-e4334297bc30"> -<Form> -<AUni ws="qvm-x-ach">shupu</AUni> -<AUni ws="qvm-x-acl">shupu; shupo</AUni> -<AUni ws="qvm-x-akh">shupu</AUni> -<AUni ws="qvm-x-akl">shupu; shupo</AUni> -<AUni ws="qvm-x-ame">shupu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2a11bf8c-e1dd-4738-add4-85a914c05ea8" ownerguid="f38f8344-838f-44ba-b103-22289c2d2793"> -<ExampleWords> -<AUni ws="en">absorbent, porous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words describe something that can soak up water?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2a11d530-e50a-42e4-9139-57a8c2264875" ownerguid="38473463-4b92-4681-8fd0-0aca0342e88a"> -<ExampleWords> -<AUni ws="en">coral, sea anemone, Portuguese man-of-war, jellyfish, hydra, medusa</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to water animals with tentacles (phylum Coelenterata)?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2a14b38c-b241-481f-98c5-dd5c28f32e6b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsacra</AUni> -<AUni ws="qvm-x-acl">tsacra</AUni> -<AUni ws="qvm-x-akh">tsakra</AUni> -<AUni ws="qvm-x-akl">tsakra</AUni> -<AUni ws="qvm-x-ame">tsakra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chakra</AUni> -<AUni ws="qvm-x-acl">*chakra</AUni> -<AUni ws="qvm-x-akh">*chakra</AUni> -<AUni ws="qvm-x-akl">*chakra</AUni> -<AUni ws="qvm-x-ame">*chakra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.264" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="76e2435f-4370-4a2a-8c4f-a37a297c6bf3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chakra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8e551e7f-6927-4ee4-95b3-328bbc4b0486" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c5f1b2a4-8ed4-405c-83ed-cf06350ca559" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chakra 
\entryTyp root 
\gENG lay.next.to 
\gSPN ser.al.lado 
\e *chakra 
\c V1 
\ach tsacra 
\akh tsakra 
\acl tsacra 
\akl tsakra 
\ame tsakra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="2a14efdb-10d2-46e8-8bc7-31629abd5f67" ownerguid="c0d8c0ff-3cee-4f62-ba1f-fffdbde9f8b9"> -<Form> -<AUni ws="qvm-x-ach">centimu; céntimo</AUni> -<AUni ws="qvm-x-acl">centimu; centimu; centimo</AUni> -<AUni ws="qvm-x-akh">centimu; céntimo</AUni> -<AUni ws="qvm-x-akl">centimu; centimu; centimo</AUni> -<AUni ws="qvm-x-ame">centimu; céntimo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="2a189027-7548-4acf-8da7-ea2210303e63" ownerguid="b460cae4-7d17-45df-8df6-1f741c26ed69"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 36.6 Ali arreglag cashgayquega jatun puntacuna firmi cashgannogmi caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="2a1d2fa6-cc37-4094-8b69-ad9e4d5423b9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">herencia</AUni> -<AUni ws="qvm-x-acl">herencia</AUni> -<AUni ws="qvm-x-akh">herencia</AUni> -<AUni ws="qvm-x-akl">herencia</AUni> -<AUni ws="qvm-x-ame">herencia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+herencia</AUni> -<AUni ws="qvm-x-acl">+herencia</AUni> -<AUni ws="qvm-x-akh">+herencia</AUni> -<AUni ws="qvm-x-akl">+herencia</AUni> -<AUni ws="qvm-x-ame">+herencia</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.708" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="79e2287b-12a1-4448-87b0-7a789921d062" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+herencia</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c245456a-e288-462a-bc49-07c0c60d36b2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5639e6f9-f4b2-482e-b365-3740a92de801" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +herencia 
\entryTyp root 
\gENG inheritance 
\gSPN herencia 
\e +herencia 
\c N0 
\ach herencia 
\akh herencia 
\acl herencia 
\akl herencia 
\ame herencia</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="2a20d5e5-d765-4ad4-ad09-081ae9bc7b2c" ownerguid="a2efa866-b02c-4893-a7ba-d6c4629ea7e3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">part</AUni> -<AUni ws="es">parte</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1093286d-ed8e-4fd7-b1cb-8b652efa1443" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="2a23127b-932f-45d3-a394-2f2bbc84fe98" ownerguid="8ffcef92-94d7-468e-9737-fad8567dce13"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="2a23a069-3747-4f4d-b8ca-452915e6a383" ownerguid="9aaf8588-96ab-49f5-90b0-833e7dd1661d"> -<Form> -<AUni ws="qvm-x-ach">listu; listo</AUni> -<AUni ws="qvm-x-acl">listu; listu; listo</AUni> -<AUni ws="qvm-x-akh">listu; listo</AUni> -<AUni ws="qvm-x-akl">listu; listu; listo</AUni> -<AUni ws="qvm-x-ame">listu; listo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="2a23d126-5fb9-458e-9b62-1e6cd6615330" ownerguid="6ee14639-c536-42c1-b392-f94736f9575a" /> -<rt class="CmDomainQ" guid="2a27ea0c-bbac-4e9f-a6a7-1ce2282c2a86" ownerguid="64e3d6b1-1d61-454c-97ab-e1d7cb0a8917"> -<ExampleWords> -<AUni ws="en">make someone nervous, fluster, unsettle, unnerve, psych out, put someone on edge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to causing someone to feel nervous?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2a2a1816-481c-435d-a270-ea9acc2f840b" ownerguid="68f6d2c8-8f83-42f8-aa7e-40cf1c067186"> -<Form> -<AUni ws="qvm-x-ach">cäza</AUni> -<AUni ws="qvm-x-acl">cäza</AUni> -<AUni ws="qvm-x-akh">cäza</AUni> -<AUni ws="qvm-x-akl">cäza</AUni> -<AUni ws="qvm-x-ame">cäza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2a2a3d16-1e0d-4173-87bf-63c1ac5708d1" ownerguid="d49f2c9d-1b4a-4370-b107-71f9b9fbdc8e"> -<ExampleWords> -<AUni ws="en">neighborhood, community, our street, our area, subdivision, housing development, compound, apartment complex, district, vicinity, environs</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the area around your house?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="2a2af155-9db9-41c5-860a-fe0a3a09d6de" ownerguid="7185bd93-5281-46de-80af-767f0ec40ff6"> -<Abbreviation> -<AUni ws="en">3.2.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.94" /> -<DateModified val="2022-9-23 16:55:8.94" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to thinking about something for some time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>30 Think; 30A To Think, Thought; 30B To Think About, with the Implied Purpose of Responding Appropriately</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Think about</AUni> -</Name> -<Questions> -<objsur guid="85751096-e8d4-409a-8660-811c1b3f99bc" t="o" /> -<objsur guid="785a8282-9394-41d9-9953-1dc7625066af" t="o" /> -<objsur guid="74c8e39e-9f51-4935-aadf-cb6d1fcc16c1" t="o" /> -<objsur guid="1d78efb0-a55e-4d1e-8c82-e77ec5039214" t="o" /> -<objsur guid="f83d1ed8-4742-4e29-bb4b-9a0eb0aa674f" t="o" /> -<objsur guid="338b7927-b5c4-4d99-b417-62b3659348f1" t="o" /> -<objsur guid="4637e515-2d94-4f49-b3c7-e4fda3efe87f" t="o" /> -<objsur guid="448b51cf-0ccd-4333-9eb5-9f84212eb54a" t="o" /> -<objsur guid="4d485f55-26d2-4920-bf51-b5b6022c183b" t="o" /> -<objsur guid="df455c4b-a9f3-476e-9a6b-5ab2e06c2bf9" t="o" /> -<objsur guid="0e1e8d25-e849-49d7-baf9-cc780ce4298d" t="o" /> -<objsur guid="fc720254-20d9-44b0-b5ab-001cdbc87e1b" t="o" /> -<objsur guid="cf3738eb-518b-42ad-a1ad-807b56afa1e5" t="o" /> -<objsur guid="2c3f5c39-5ad3-445f-bdba-30d55dd3c747" t="o" /> -<objsur guid="a3c88264-3855-46ee-a082-250f32bf4602" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="2a2ba3b8-9bb9-4d40-891e-abdc052eb9c6" ownerguid="9d428e57-e125-4575-b165-9bc6fd4ec507"> -<ExampleWords> -<AUni ws="en">come around to (someone's) view, see it (someone's) way, be won over</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to someone being persuaded to change his thinking or decision?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2a306667-9c33-4209-9afa-f569e66255fa" ownerguid="33e66099-515e-41f3-99a7-4201aff047c2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rag</AUni> -<AUni ws="es">retazo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="96667e69-c6d7-4460-8073-fa2d94d0ce48" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2a306f37-b8e0-4305-aa57-454dcffd6818" ownerguid="f2342d42-bdc4-449c-9891-58f90318b9f1"> -<ExampleWords> -<AUni ws="en">news, message, report, account</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to something someone says?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2a341cad-eee2-4b8f-87e4-9fcad0325492" ownerguid="bafa274e-8bf0-4cf7-8ce7-2c28293db809"> -<ExampleWords> -<AUni ws="en">doorknob, door handle, lock, key, bolt, hinge, doornail, threshold, doorsill, doorstep, doormat, doorframe, lintel, doorpost, doorbell</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the parts of a door?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2a34e7c1-8d72-4c77-946c-8a8f431bd4b3" ownerguid="c9b8ecc1-a39d-4f42-b9c4-6a968934715b"> -<Form> -<AUni ws="qvm-x-ach">tupu</AUni> -<AUni ws="qvm-x-acl">tupu; tupo</AUni> -<AUni ws="qvm-x-akh">tupu</AUni> -<AUni ws="qvm-x-akl">tupu; tupo</AUni> -<AUni ws="qvm-x-ame">tupu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="2a356743-fac1-4a25-b8b8-6f1254cb0bec" ownerguid="60675bce-0619-4961-b3f6-7b96ecce6e7b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2a38b417-b286-4c43-a6b4-2f97c990ab9b" ownerguid="316f27aa-ed6d-4bc3-9d14-840946a6f4e9"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en"><How> big a box is it? (very big)</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">how</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What question words ask for an ad-adjective in the answer?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2a392b79-02e4-4558-8270-61dc1752c1ee" ownerguid="2ef43df6-27e5-4493-a0bb-29a459207a6a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">?</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fa834b38-d5b9-4d8f-bffc-779c7b173159" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2a3c5d4b-402f-4483-9e8a-c084413f45dc" ownerguid="286ee16c-a218-43d5-bbac-ab15f80c3fcf"> -<ExampleWords> -<AUni ws="en">not...enough, too little</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe a situation in which someone does not do enough or something does not happens enough?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2a3cc80b-f4bd-43f6-a20c-eaed80723653" ownerguid="fbcfd1a3-b1f3-4e35-a413-43038de002c5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="2a41474f-1dff-4f68-a787-65d99d7936a2" ownerguid="78bf0de0-e54a-446a-9ccd-79dace661e64"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="2a41ef6f-bc95-4429-8202-c7f639a0eadc" ownerguid="59923773-7a83-4932-8f63-86758743d8fd"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="2a42bdae-8ce6-4b08-84f4-7d1cc3487d27"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">corral</AUni> -<AUni ws="qvm-x-acl">corral</AUni> -<AUni ws="qvm-x-akh">corral</AUni> -<AUni ws="qvm-x-akl">corral</AUni> -<AUni ws="qvm-x-ame">corral</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+corral</AUni> -<AUni ws="qvm-x-acl">+corral</AUni> -<AUni ws="qvm-x-akh">+corral</AUni> -<AUni ws="qvm-x-akl">+corral</AUni> -<AUni ws="qvm-x-ame">+corral</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.211" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2cf9cb1a-7ce2-42ad-b6f2-21335549cbdf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+corral</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8ebeeb23-abb5-458c-ad5c-f6b799c7f66a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9e8ce636-ca1a-4c33-a06a-a88978abc25a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +corral 
\entryTyp root 
\gENG corral 
\gSPN corral 
\e +corral 
\c N0 
\mp +FinalC 
\ach corral 
\akh corral 
\acl corral 
\akl corral 
\ame corral</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="2a4aef47-a1f1-4efb-9183-5d4f7eccae39" ownerguid="77d0bb8d-671e-45d2-af5d-6dce46d37638"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="1d0e4b07-21d0-43fc-8cbc-df226165f89f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2a4bb74d-8e20-4293-929d-87c8e6278e61" ownerguid="bf25931d-4760-4c66-abe8-c05a6dc5adbe"> -<ExampleWords> -<AUni ws="en">immersed, submerged, undersea, underwater, submarine, sunken</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to being under the water?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2a4c0f0a-0566-4a2e-8995-f69bcdcec674" ownerguid="c5b8c936-1e01-4e86-9145-a2b721ec9e39"> -<ExampleWords> -<AUni ws="en">dig, mine, excavate, tunnel, burrow, unearth, undermine, cave in, bulldoze, shovel out, scoop, scratch out, scrape, drill, dredge, sink (a hole)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to digging?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2a4f517b-edb1-425d-a456-6121138954db" ownerguid="225c48dd-9fc2-4467-944f-16a098b4e518"> -<ExampleWords> -<AUni ws="en">conquering, victorious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe the person who defeats the enemy?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2a501715-2d53-4d07-b9c1-2549b6e58c99" ownerguid="cdf30dcc-b306-4466-8684-a060f503c6ed"> -<Form> -<AUni ws="qvm-x-ach">togu</AUni> -<AUni ws="qvm-x-acl">togu; togo</AUni> -<AUni ws="qvm-x-akh">toqu</AUni> -<AUni ws="qvm-x-akl">toqu; toqo</AUni> -<AUni ws="qvm-x-ame">tuqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2a53176b-1674-430a-ad23-e4dcaa44750f" ownerguid="8bcc3b3d-dd0c-4838-a33a-b395f354c86f"> -<ExampleWords> -<AUni ws="en">move in a circle, curve, circulate, turn around, swing, cycle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving around in a circle?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="2a539b5b-4b82-4a33-818c-8ed6eff03c23" ownerguid="19e731d8-63d8-4491-83d8-5c35ddfd57e9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="eb4bc344-be42-4c27-95e2-7abd4a6c2b27" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -<Sense> -<objsur guid="51cc5088-f15f-43ad-802d-b00dfa615a64" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="2a54c162-d75e-403e-8e9a-8c70e14453a4" ownerguid="ab6edc0a-0f28-4f0a-9260-26fed523be41"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">turkey.buzzard</AUni> -<AUni ws="es">gallinazo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fd5534e3-7ac9-49c0-843a-82a7f1bf3a9b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="2a55a794-b4db-472c-a75b-305004893796" ownerguid="a8b8063f-903a-4906-abbb-9e4ebad7408c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">conforme</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ae77feed-32fe-4a68-b4b0-b46ab9454dd6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2a57cafa-d4a3-4cb6-b7fe-437b373bdb29" ownerguid="4445cccd-e9b9-4f25-9e8c-2ef58408297d"> -<ExampleWords> -<AUni ws="en">to undress, get undressed, take off, strip, rip off, get out of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to taking clothing off?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2a57fa30-ee20-4db8-89d8-92b821b131eb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">putsi</AUni> -<AUni ws="qvm-x-acl">putsi; putse</AUni> -<AUni ws="qvm-x-akh">putsi</AUni> -<AUni ws="qvm-x-akl">putsi; putse</AUni> -<AUni ws="qvm-x-ame">putsi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puchi</AUni> -<AUni ws="qvm-x-acl">*puchi</AUni> -<AUni ws="qvm-x-akh">*puchi</AUni> -<AUni ws="qvm-x-akl">*puchi</AUni> -<AUni ws="qvm-x-ame">*puchi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.962" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f055a648-a469-4d15-8d0c-6fc07f45c74f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puchi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b8ce888e-c0c8-4f8e-befc-64d02c73d2e6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="398ee06a-d615-4226-89a5-04b89c1b8770" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puchi 
\entryTyp root 
\gENG scatter 
\gSPN desparramar 
\e *puchi 
\c V1 
\mp +FinalI 
\ach putsi 
\akh putsi 
\acl putsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl putse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl putsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl putse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame putsi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2a5bdf2e-b966-4196-8e16-2e9158803b29" ownerguid="00364f0c-9a3a-4910-a82e-1ffbc4d4137f"> -<ExampleWords> -<AUni ws="en">sensation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to something that causes someone to feel excited?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2a5dd56d-0048-467d-bd83-7cfde6c3316c" ownerguid="d117aa22-3f18-47c4-9683-51ecf1dc7134"> -<ExampleWords> -<AUni ws="en">head, cob, husk, corn silk, kernel, tassel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What are the parts of maize?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="2a62f8e4-7da3-4f37-bf44-e24033c99c00" ownerguid="60dc7cf6-0a41-4cd3-99a6-0b7a71488e7e"> -<Abbreviation> -<AUni ws="en">3.4.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.143" /> -<DateModified val="2022-9-23 16:55:8.143" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling angry--to feel bad when someone does something wrong and to want to do something bad to them.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88X Anger, Be Indignant With; 25P Offend, Be Offended; 88W Resentful, Hold a Grudge Against</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Angry</AUni> -</Name> -<Questions> -<objsur guid="ddbe011a-d12b-417c-97e5-44d99e981bd4" t="o" /> -<objsur guid="4fac9b9b-011b-40e7-94d0-9d9800fbaaa4" t="o" /> -<objsur guid="bff7e039-a9fe-4f22-949d-9b911806fc2d" t="o" /> -<objsur guid="a6e28844-ea5f-4a13-b25f-274e6e5b3c02" t="o" /> -<objsur guid="a4d63307-ce03-499f-a4f1-ee3b261a1c43" t="o" /> -<objsur guid="34d350d2-160d-45a3-b899-b176d1b27eaa" t="o" /> -<objsur guid="52c05b88-573f-4de2-b328-40c53366e956" t="o" /> -<objsur guid="3642a1a3-9833-4b45-ba5a-a185909c64e0" t="o" /> -<objsur guid="e0e7c201-20d6-4edb-86c8-9bb7af15c9cc" t="o" /> -<objsur guid="1bed0d5f-e5d0-4be1-9297-388212beef53" t="o" /> -<objsur guid="b774701d-233d-489b-bba1-2bd1dadc215c" t="o" /> -<objsur guid="257fff26-7818-41f5-908d-8ce7059a0d6b" t="o" /> -<objsur guid="036b1597-1357-4ce6-b827-2a4c5e942499" t="o" /> -<objsur guid="6677b0ef-748e-41d4-b007-f20df73d03f5" t="o" /> -<objsur guid="d4b161e3-382e-43ca-839b-8d3b8dcab40b" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="8ce6709f-f772-4638-a1aa-c132666f3563" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="2a65a9fc-5720-4264-9eaf-429c10c2b751" ownerguid="87d27b82-e7f3-47e2-b510-6e6127ee7375"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lap</AUni> -<AUni ws="es">encima.de.piernas</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="732ca1cb-afa2-4b31-b30c-fb83fd085f10" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="2a6622ed-7113-46fc-97c1-2a208c4a9008"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">macolca</AUni> -<AUni ws="qvm-x-acl">macolca</AUni> -<AUni ws="qvm-x-akh">macolca</AUni> -<AUni ws="qvm-x-akl">macolca</AUni> -<AUni ws="qvm-x-ame">macolca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+macolcar</AUni> -<AUni ws="qvm-x-acl">+macolcar</AUni> -<AUni ws="qvm-x-akh">+macolcar</AUni> -<AUni ws="qvm-x-akl">+macolcar</AUni> -<AUni ws="qvm-x-ame">+macolcar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.253" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2fc95f69-96fb-4e52-a029-4494452b5f13" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+macolcar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2347570f-1519-420a-9fe1-5d8e32563dda" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="10e96122-b738-4601-9772-7cd601892b40" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +macolcar 
\entryTyp root 
\gENG sore 
\gSPN adolorir 
\e +macolcar 
\c V1 
\ach macolca 
\akh macolca 
\acl macolca 
\akl macolca 
\ame macolca 
\i Ganyan purishgäpita aläpa macolcashgami caycä.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="2a673917-ac2e-49d3-969c-ebf49b5f17ef" ownerguid="12660b9b-ad1e-4c72-bd96-7c2127a952b5"> -<Form> -<AUni ws="qvm-x-ach">pitsu</AUni> -<AUni ws="qvm-x-acl">pitsu; pitso</AUni> -<AUni ws="qvm-x-akh">pitsu</AUni> -<AUni ws="qvm-x-akl">pitsu; pitso</AUni> -<AUni ws="qvm-x-ame">pitsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2a6794a8-8858-4177-8e48-452919718d82" ownerguid="bcfd5ef2-c048-4c84-88dc-0b954c735490"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="e95fa9aa-1d95-4c5c-bc01-626d6f92f556" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="2a6a1f3b-6f03-4a6a-ba58-77e5f136229b" ownerguid="1ff89b31-8226-40a6-81e0-f03d8ede0e9f"> -<Category> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</Category> -<Evaluations> -<objsur guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="bd90dbb0-7fd5-4fe2-93ea-495296aaa153" t="o" /> -<objsur guid="9dbb7b56-35d2-4b80-8106-8aff76b58d56" t="o" /> -<objsur guid="55626b56-bb0a-42f0-a89d-dbbddc7136b2" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="2a6c69ae-72b2-4813-839a-ed86bdfb5790" ownerguid="1f880c05-7c66-439a-867a-50935f5fcb93"> -<Form> -<AUni ws="qvm-x-ach">antuja</AUni> -<AUni ws="qvm-x-acl">antuja</AUni> -<AUni ws="qvm-x-akh">antuja</AUni> -<AUni ws="qvm-x-akl">antuja</AUni> -<AUni ws="qvm-x-ame">antuja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2a75f1fd-a2cd-41e8-9459-e365b2bd6b25" ownerguid="3f4c559f-ab4f-411f-a23b-d2396c977005"> -<ExampleWords> -<AUni ws="en">becloud, befog, block, blot out, cloak, cloud, conceal, cover, eclipse, enshroud, hide, mask, obfuscate, obscure, obstruct, occlude, screen, shroud, veil</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to something blocking another thing from view?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2a769b25-7b6b-44c5-8566-40470c6a3966" ownerguid="70523557-5d4c-45a0-96e5-ba315a1ef609"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">depend.on</AUni> -<AUni ws="es">atenerse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="36ad1a45-361d-4f24-a8b6-a07db85f2536" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="2a78ff49-3a86-4120-ae06-95f7864e5851" ownerguid="eca147b6-fc3d-4f35-b3db-325652e862ec"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">inheritance</AUni> -<AUni ws="es">herencia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a6d78f9d-79a6-4bce-8e71-4c23bdd5cb00" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2a7a21f3-1ae4-49a3-9e8b-b7da015722c6" ownerguid="a27acfa8-6c48-4621-a14b-c560fe8fade6"> -<Form> -<AUni ws="qvm-x-ach">yali</AUni> -<AUni ws="qvm-x-acl">yali</AUni> -<AUni ws="qvm-x-akh">yali</AUni> -<AUni ws="qvm-x-akl">yali</AUni> -<AUni ws="qvm-x-ame">yali</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="2a7be77e-bf76-4440-b377-b8d24b6cb3fe" ownerguid="bd745493-61d8-47b0-9ff9-060f86ce7e17"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="2a7dc487-ab9b-4c1e-8e95-7c68aaa05b6c" ownerguid="80b83200-a7bd-4277-a948-9f7204df9caf"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2a809e38-7d91-4b0a-a291-9b2e1e62101f" ownerguid="225c48dd-9fc2-4467-944f-16a098b4e518"> -<ExampleWords> -<AUni ws="en">defeat (n), rout, beating, conquest, discomfiture, drubbing, subjection, triumph, victory</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the defeat of an enemy?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2a85bfe2-aeb1-4061-8e5b-3af609d4b6c1" ownerguid="a2e3ee97-fa71-4934-9ccd-5f9aec0fd908"> -<Form> -<AUni ws="qvm-x-ach">rïca</AUni> -<AUni ws="qvm-x-acl">rïca</AUni> -<AUni ws="qvm-x-akh">rïca</AUni> -<AUni ws="qvm-x-akl">rïca</AUni> -<AUni ws="qvm-x-ame">rïca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="2a8612ee-d680-427d-bc38-68a588d65d09" ownerguid="22a0ca9f-7947-4ac8-a411-9e74b9c2642d"> -<Form> -<AUni ws="qvm-x-ach">olïvus</AUni> -<AUni ws="qvm-x-acl">olïvus</AUni> -<AUni ws="qvm-x-akh">olïvus</AUni> -<AUni ws="qvm-x-akl">olïvus</AUni> -<AUni ws="qvm-x-ame">olïvus</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2a88e63d-34c7-4748-85f8-b59abd665f22" ownerguid="0aae0254-dc06-4906-8ecf-2d8450fb83f1"> -<ExampleWords> -<AUni ws="en">flop down, fall into bed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe how a person lies down?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2a890343-0fd1-47a7-9f95-85f1f7356b39" ownerguid="f883266a-146a-41c7-b1db-85120840c3a8"> -<ExampleWords> -<AUni ws="en">unattainable, out of reach</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that something is impossible to get?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2a8d5831-6fd9-4bbe-a71c-d98709eb07b8" ownerguid="12c63812-f1f5-4d11-8ca9-55980271341b"> -<Form> -<AUni ws="qvm-x-ach">diya</AUni> -<AUni ws="qvm-x-acl">diya</AUni> -<AUni ws="qvm-x-akh">diya</AUni> -<AUni ws="qvm-x-akl">diya</AUni> -<AUni ws="qvm-x-ame">diya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="2a91f69d-2e54-49df-a465-f69ec36ebdfd" ownerguid="3f7749c1-5eff-4496-9953-dbca38442e94"> -<Form> -<AUni ws="qvm-x-ach">volcán; volcan</AUni> -<AUni ws="qvm-x-acl">volcán; volcan</AUni> -<AUni ws="qvm-x-akh">volcán; volcan</AUni> -<AUni ws="qvm-x-akl">volcán; volcan</AUni> -<AUni ws="qvm-x-ame">volcán; volcan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2a952192-5ef9-4d6a-94e9-9816af927f31" ownerguid="999c8aee-88d8-4f27-8d57-ccfd45acb830"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">robe</AUni> -<AUni ws="es">túnica</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cede80ac-8204-450f-84a8-c755bb5e20e5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="2a97d1fa-f9e4-458d-9a3b-955d7751f46b" ownerguid="4a094d70-797c-49b3-b118-7267cb273e87"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">what</AUni> -<AUni ws="es">qué</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a6eba134-b805-46fa-bc18-a9728f8d1af0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2a9c9bc5-e51b-4c11-b8fe-aaf2077e31ea" ownerguid="86f90eff-158b-4f6d-82e9-fab136dfd141"> -<ExampleWords> -<AUni ws="en">organization, club, society, institution, company</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to an organization?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2a9ef917-25e7-43c8-93a6-555f4f0cb203" ownerguid="789add20-33d4-440c-9d8f-92f41e492adf"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="2aa41bcd-2aa4-4795-8b53-d12956906a1d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">viu:du</AUni> -<AUni ws="qvm-x-acl">viu:du; viu:du; viu:do</AUni> -<AUni ws="qvm-x-akh">viu:du</AUni> -<AUni ws="qvm-x-akl">viu:du; viu:du; viu:do</AUni> -<AUni ws="qvm-x-ame">viu:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+viudo</AUni> -<AUni ws="qvm-x-acl">+viudo</AUni> -<AUni ws="qvm-x-akh">+viudo</AUni> -<AUni ws="qvm-x-akl">+viudo</AUni> -<AUni ws="qvm-x-ame">+viudo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.414" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1dd45c2c-10a2-424f-bfbc-427c03ff0600" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+viudo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="60af729c-0430-430b-9618-a7162f19fe97" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8999a832-1cb4-4d9f-bd50-084c784fc13a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +viudo 
\entryTyp root 
\gENG widower 
\gSPN viudo 
\e +viudo 
\c N0 
\ach viu:du 
\akh viu:du 
\acl viu:du / _# 
\acl viu:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl viu:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl viu:du / _# 
\akl viu:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl viu:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame viu:du</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2aa6d2f1-eb8e-4a93-8626-92cc45803ecb" ownerguid="03352940-c220-4a32-a9a5-fc08d1d0dc71"> -<ExampleWords> -<AUni ws="en">litterbug</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a person who leaves garbage in a public place?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="2aab4c43-9e09-436e-bfc7-7c4c7edfaf44" ownerguid="6f011005-9763-4284-9571-90529febecf7"> -<Form> -<AUni ws="qvm-x-ach">̈</AUni> -<AUni ws="qvm-x-acl">̈</AUni> -<AUni ws="qvm-x-akh">̈</AUni> -<AUni ws="qvm-x-akl">̈</AUni> -<AUni ws="qvm-x-ame">̈</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="2aabc847-934a-44fc-a44e-ab680d2fdd28" ownerguid="d6ce6b98-ff16-4be0-b3ef-9919e275f39e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="2aabd548-5ee2-4962-8f10-84d1b0427c41" ownerguid="65bb0844-9a71-4eec-9b86-bf4b4b508a28"> -<Abbreviation> -<AUni ws="en">4.4.3.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to enduring a problem.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Endure</AUni> -</Name> -<Questions> -<objsur guid="e20220bc-b282-4d34-b629-4a60ed7d2dd6" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="2aae4501-3b9a-4641-aad8-43ce30209e9d" ownerguid="960ff213-d101-4de3-9d45-a4762a433412"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.spicy</AUni> -<AUni ws="es">ser.picante</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6506e780-1bb7-4864-adf9-333416cf7afa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="2ab15785-a7f4-4e39-8995-b9cddf72a64c" ownerguid="05dec5a6-b9db-45a0-9f16-79de9cda3f13"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">delirar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0605b44f-27ee-40ea-865d-9a58a05cba7b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2ab1f973-a235-4bbc-9cd4-81e4291f3eba" ownerguid="755a7462-1d87-48b0-939c-08be5b5ea002"> -<ExampleWords> -<AUni ws="en">extra (n), surplus, excess, leftover, overflow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the amount that is extra?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2ab21fc1-e61e-48a9-9b43-579a8e94f566" ownerguid="9a9a6de7-7471-4db7-9663-2c1eb1630f5c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="2ab52bfe-a1f6-483a-bd7b-f4524a6b0c16"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waga</AUni> -<AUni ws="qvm-x-acl">waga</AUni> -<AUni ws="qvm-x-akh">waqa</AUni> -<AUni ws="qvm-x-akl">waqa</AUni> -<AUni ws="qvm-x-ame">waqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waqa.v</AUni> -<AUni ws="qvm-x-acl">*waqa.v</AUni> -<AUni ws="qvm-x-akh">*waqa.v</AUni> -<AUni ws="qvm-x-akl">*waqa.v</AUni> -<AUni ws="qvm-x-ame">*waqa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.495" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d100a60e-40fa-45d4-8643-92375fc3d00c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waqa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dae1adcc-bc09-4a2e-8fca-8dd1fcb23810" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b288f0f1-b148-4b70-87f1-0cd24f92dd5d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waqa.v 
\entryTyp root 
\gENG cry 
\gSPN llorar 
\e *waqa.v 
\c V1 
\ach waga 
\akh waqa 
\acl waga 
\akl waqa 
\ame waqa 
\i Olgu wamra yuriptin nipäcun cananmi si chacra wagan, gueru wagan, munticunapis wagan. Pay shacsharcurnaga aröshimäshun.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="2ab6f9f3-60c4-49e9-8068-4cd757b56390"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">babul</AUni> -<AUni ws="qvm-x-acl">babul</AUni> -<AUni ws="qvm-x-akh">babul</AUni> -<AUni ws="qvm-x-akl">babul</AUni> -<AUni ws="qvm-x-ame">babul</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+baúl</AUni> -<AUni ws="qvm-x-acl">+baúl</AUni> -<AUni ws="qvm-x-akh">+baúl</AUni> -<AUni ws="qvm-x-akl">+baúl</AUni> -<AUni ws="qvm-x-ame">+baúl</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.949" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2f90b295-69a2-4a45-856d-87a80bfe4852" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+baúl</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b24c2256-9970-4c1a-8dce-048a105cb93a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="19ade1ae-adcd-45a7-b0f0-812923a41d7b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +baúl 
\entryTyp root 
\gENG trunk 
\gSPN baúl 
\e +baúl 
\c N0 
\mp +assimilated 
\ach babul 
\akh babul 
\acl babul 
\akl babul 
\ame babul 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="2ab976b6-c090-4455-ba9a-7467509b11af" ownerguid="dc1055aa-98c7-4ecd-845c-e5e3a51529b9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="2ab982d7-1466-4662-a977-09525ffdcd6e" ownerguid="0150ade5-3f84-412b-95fb-ba7b54ecbbce"> -<Form> -<AUni ws="qvm-x-ach">utensiliu; utensilio</AUni> -<AUni ws="qvm-x-acl">utensiliu; utensiliu; utensilio</AUni> -<AUni ws="qvm-x-akh">utensiliu; utensilio</AUni> -<AUni ws="qvm-x-akl">utensiliu; utensiliu; utensilio</AUni> -<AUni ws="qvm-x-ame">utensiliu; utensilio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="2ab9c036-15ef-4151-b6cb-ec5729fb8181" ownerguid="5ff16f03-4466-4c06-ae98-9c5ba4fa6aca"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rura</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rura</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rura</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rura</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rura</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6ffa80ef-8157-43c1-b9e5-3564ece26f98" t="r" /> -</Morph> -<Msa> -<objsur guid="1926c011-b8c7-4363-ae71-d334b4fb65b4" t="r" /> -</Msa> -<Sense> -<objsur guid="7911c1cd-1831-48c8-b08d-d789ab9c2171" t="r" /> -</Sense> -</rt> -<rt class="LexExampleSentence" guid="2aba5ecc-fda3-4094-8f09-f4896b0c498b" ownerguid="6ba35e86-b8c4-4089-b3ee-327bd976c737"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 6.31 Tsay jananmanmi imaycantapis embargatsin.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="2ac16dcc-03a0-4e14-a971-7e9be144f5f5" ownerguid="b9a4ee1f-9ca3-4582-920a-c70d6682dca2"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2ac4e305-e4fb-45d2-91db-c935cf6eeaf3" ownerguid="2e5a80f9-35ae-4850-9627-be530832a781"> -<ExampleWords> -<AUni ws="en">please</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What particles are used to show respect?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2ac5d8ae-9262-4e38-aaac-04380a24ddb0" ownerguid="2bdfe506-0a28-45bd-81e1-44dcedcc262a"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="2ac5e60f-d184-48eb-a0a8-47efc9f6c1b4" ownerguid="bad07400-ad11-4f98-9a6d-83aeae23913f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yarpa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yarpa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yarpa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yarpa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yarpa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="390d6b92-9796-4636-b528-170a1b6aa62a" t="r" /> -</Morph> -<Msa> -<objsur guid="19ab5cf1-1864-4db0-94a6-3ed04ddf2ef7" t="r" /> -</Msa> -<Sense> -<objsur guid="b76c1d77-e3dc-4a8b-9cf7-6fb696740bed" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="2ac8a48b-fbb6-46ce-9e6a-c9174abe277c" ownerguid="db2232d9-8b17-4920-936f-2b6249c6f7fa"> -<ExampleWords> -<AUni ws="en">stealing, burglary, larceny, robbery, shoplifting, theft</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to the crime of stealing?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="2ac93338-7b99-40e4-93ce-ffb4d86825cd" ownerguid="95f76778-3484-4cbf-a51d-e6acb79bd884"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="2aca7b11-2928-46f1-acba-cbcf9a78ce8f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">olivos</AUni> -<AUni ws="qvm-x-acl">olivos</AUni> -<AUni ws="qvm-x-akh">olivos</AUni> -<AUni ws="qvm-x-akl">olivos</AUni> -<AUni ws="qvm-x-ame">olivos</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+olivos.1</AUni> -<AUni ws="qvm-x-acl">+olivos.1</AUni> -<AUni ws="qvm-x-akh">+olivos.1</AUni> -<AUni ws="qvm-x-akl">+olivos.1</AUni> -<AUni ws="qvm-x-ame">+olivos.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.628" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1bb60704-499b-4472-9c53-38587c01403a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+olivos.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="019a080d-5194-4515-ac46-60f94f08b09c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f9de0388-86ef-4741-a41a-59ef4f18864c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +olivos.1 
\entryTyp root 
\gENG olive 
\gSPN olivos 
\e +olivos.1 
\c N0 
\mp NeverChanged 
\ach olivos 
\akh olivos 
\acl olivos 
\akl olivos 
\ame olivos 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2acfd0a0-1caf-407e-87ca-81f8053e4a39" ownerguid="eb00b4c2-5b87-4ef8-9548-800fc5c9b524"> -<ExampleWords> -<AUni ws="en">blight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to something that damages things?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2ad1023c-ef18-4c85-8131-6bf42d89f0fe" ownerguid="78699c92-e4f1-4160-b3f6-382bd509379a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2ad42158-6958-4f5e-9376-162068e223f0" ownerguid="65ef6aae-019f-4980-b6d9-5b7ad2c8e68f"> -<ExampleWords> -<AUni ws="en">proverbial, axiomatic, pithy, succinct, terse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe a saying?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2ad86227-3df2-4577-8923-694e7df7f669" ownerguid="773a282a-9633-4bf1-95ca-58ee82d89b8d"> -<Form> -<AUni ws="qvm-x-ach">arrienda</AUni> -<AUni ws="qvm-x-acl">arrienda</AUni> -<AUni ws="qvm-x-akh">arrienda</AUni> -<AUni ws="qvm-x-akl">arrienda</AUni> -<AUni ws="qvm-x-ame">arrienda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2ad93bd3-fb74-4909-84c5-898be7a4a6d0" ownerguid="de2b5010-6fa5-41f6-8916-c6808283acec"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dog</AUni> -<AUni ws="es">perro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a5a96727-b9ab-4fec-8afa-12701c6c1be4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="2adb2d6a-24c7-4f89-8ae6-0c88d270e94b" ownerguid="fe6cfaa7-1e0c-4fae-806c-7ae07375ba6c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="2adb4fb7-4801-4305-abe5-600911718370"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">carta</AUni> -<AUni ws="qvm-x-acl">carta</AUni> -<AUni ws="qvm-x-akh">carta</AUni> -<AUni ws="qvm-x-akl">carta</AUni> -<AUni ws="qvm-x-ame">carta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+carta.n</AUni> -<AUni ws="qvm-x-acl">+carta.n</AUni> -<AUni ws="qvm-x-akh">+carta.n</AUni> -<AUni ws="qvm-x-akl">+carta.n</AUni> -<AUni ws="qvm-x-ame">+carta.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.72" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cbe94dff-a88d-4606-915e-5ff63d796b74" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+carta.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d97cf16c-9cd0-41fc-a93f-a62cd45cce9b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3b0affd6-556e-4166-af43-12030332e324" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +carta.n 
\entryTyp root 
\gENG letter 
\gSPN carta 
\e +carta.n 
\c N0 
\ach carta 
\akh carta 
\acl carta 
\akl carta 
\ame carta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2ade06af-f67b-40f0-b88c-b15713be388a" ownerguid="aadefee4-ed14-4753-952e-e945f2972e37"> -<ExampleWords> -<AUni ws="en">episode, installment, chapter, scene, part, extract, excerpt, clip</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the parts of a story?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2adf0549-e19f-48af-8109-8822f51ac1ee" ownerguid="7214fcfd-0c0d-41fb-939e-8ae18626a61f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="2ae0c81d-02f5-4f28-80ab-843c7e7ebda0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">hundi</AUni> -<AUni ws="qvm-x-acl">hundi; hunde</AUni> -<AUni ws="qvm-x-akh">hundi</AUni> -<AUni ws="qvm-x-akl">hundi; hunde</AUni> -<AUni ws="qvm-x-ame">hundi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hundir</AUni> -<AUni ws="qvm-x-acl">+hundir</AUni> -<AUni ws="qvm-x-akh">+hundir</AUni> -<AUni ws="qvm-x-akl">+hundir</AUni> -<AUni ws="qvm-x-ame">+hundir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.761" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="65c81409-cbae-4491-965c-8987e3b56aa7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hundir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="51e76297-1669-47a3-b37d-c7f1f3eff120" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ec67552a-57e3-436d-a83d-8914b718bbfd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hundir 
\entryTyp root 
\gENG 
\gSPN 
\e +hundir 
\c V1 
\mp +FinalI 
\ach hundi 
\akh hundi 
\acl hundi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl hunde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl hundi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl hunde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hundi</Run> -</AStr> -</Custom> -</rt> -<rt class="StTxtPara" guid="2ae0cb9d-15d7-47b6-88ed-91c21e8605f4" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">rikapäkushqayki. </Run> -<Run ws="en">\tr < V2 *rika > PLALL REL1 2P</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="6de23687-ef08-48cc-9e58-d81039f6d445" t="o" /> -<objsur guid="38d6ec14-07dc-4266-a9fc-e11f180d3c15" t="o" /> -</Segments> -</rt> -<rt class="MoInflAffMsa" guid="2ae2b1a8-66c6-48dc-bae3-78542bc06a22" ownerguid="084fcee6-0c7c-4818-a44f-b3afd29d0f8e"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="ca45d090-0c3b-4e36-9a40-58963588cdaf" t="r" /> -</Slots> -</rt> -<rt class="WfiAnalysis" guid="2ae33e10-d42f-492c-9429-f486fb613a7d" ownerguid="000b687a-776a-4b90-b0c0-b3dac8bf3406"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="e63044c4-6043-4706-ae26-f26b788c2435" t="o" /> -<objsur guid="bc411fdd-048e-4884-8169-f26a9acb77cd" t="o" /> -<objsur guid="6eab1673-a0af-4703-9335-1c6e15147759" t="o" /> -<objsur guid="b2830b88-2927-4dd0-b99d-a7c33904266b" t="o" /> -<objsur guid="1b7874fb-cd3d-445e-a578-81554c897a42" t="o" /> -<objsur guid="78fd50d7-5cbe-4a77-9fcf-b8065d06bd1e" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="2ae41cbe-9289-4d72-9415-450228af5808" ownerguid="191ca5a5-0a67-426e-adfc-6fdf7c2aaa2c"> -<ExampleWords> -<AUni ws="en">inside, indoors, indoor, interior</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the inside of a house?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2aea920f-b9de-4d07-829c-476d73484c69" ownerguid="cb7c33f2-148b-44f9-bce6-855453fc253a"> -<Form> -<AUni ws="qvm-x-ach">gocha</AUni> -<AUni ws="qvm-x-acl">gocha</AUni> -<AUni ws="qvm-x-akh">qocha</AUni> -<AUni ws="qvm-x-akl">qocha</AUni> -<AUni ws="qvm-x-ame">qucha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2aeb03cc-4ff5-4664-9467-75d9b3d0ed86" ownerguid="b8d2fdb9-22ea-4040-8abb-aeeff0399f23"> -<ExampleWords> -<AUni ws="en">slaughter, destroy, put down, put away, put something out of it misery</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(18) What words refer to killing an animal?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="2aec3ca7-a7d5-475c-acc2-6bcdd325d6c2" ownerguid="a94ca324-c7a1-4dd6-a357-80cb255f5e43"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="b910c55b-27ca-4c8e-b5e5-00944b5883b4" t="o" /> -<objsur guid="5fd5b8a6-b1d6-4484-a4be-af272e068a74" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="2aef695f-6d50-444a-b985-2f41c2e76a2f" ownerguid="0049ffed-8bf4-446d-9240-870d3ce7b5c1"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="2aefc6aa-aeb5-4f42-bf7c-d95b5ec07604"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">warca</AUni> -<AUni ws="qvm-x-acl">warca</AUni> -<AUni ws="qvm-x-akh">warka</AUni> -<AUni ws="qvm-x-akl">warka</AUni> -<AUni ws="qvm-x-ame">warka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*warka</AUni> -<AUni ws="qvm-x-acl">*warka</AUni> -<AUni ws="qvm-x-akh">*warka</AUni> -<AUni ws="qvm-x-akl">*warka</AUni> -<AUni ws="qvm-x-ame">*warka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.534" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0282f195-0af0-48d6-a242-05a267fd57a3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*warka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3f98f2bc-1d37-4f91-9a94-f189ffd87174" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="950a7396-72b3-450d-ac68-30f7548b6787" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *warka 
\entryTyp root 
\gENG hang 
\gSPN colgar 
\e *warka 
\c V1 
\ach warca 
\akh warka 
\acl warca 
\akl warka 
\ame warka</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2af37b06-bc50-47a4-ba1f-9db37c64c06b" ownerguid="8bcc3b3d-dd0c-4838-a33a-b395f354c86f"> -<ExampleWords> -<AUni ws="en">rotate, spin, wheel, twirl, whirl, gyrate, roll, gyrate, revolve, swivel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to rotating?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2af59f6f-6068-45d9-adbb-87df6df1efaf" ownerguid="dbdba393-677c-4ed5-95f6-cea4c2a71e69"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">invite</AUni> -<AUni ws="es">invitar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5c6f35eb-ef0f-4a2c-8331-740b90919423" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="2af65c0d-e176-48d4-a80c-70a645124172" ownerguid="6ff37bc8-20e8-4616-acb1-795443250355"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="CmDomainQ" guid="2b047f9d-78e2-4db2-ac04-2e9175d10d46" ownerguid="cb783ad9-4650-416e-bf63-88c4ca43fe6a"> -<ExampleWords> -<AUni ws="en">have a bad reputation, be of evil repute, be poorly thought of, have a bad name</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to having a bad reputation?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2b0554bf-9432-461a-b95e-1430a2e257ae" ownerguid="ac187298-85e8-43ed-ba85-cc06a62c08ba"> -<ExampleWords> -<AUni ws="en">young, puppy, cub, foal, kid, kitten, lamb, litter, chick, brood, fledgling, larva, roe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a young animal?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2b06d979-7ca1-4a50-8a53-64413a1fec7c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ruru</AUni> -<AUni ws="qvm-x-acl">ruru; ruru; ruro</AUni> -<AUni ws="qvm-x-akh">ruru</AUni> -<AUni ws="qvm-x-akl">ruru; ruru; ruro</AUni> -<AUni ws="qvm-x-ame">ruru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ruru</AUni> -<AUni ws="qvm-x-acl">*ruru</AUni> -<AUni ws="qvm-x-akh">*ruru</AUni> -<AUni ws="qvm-x-akl">*ruru</AUni> -<AUni ws="qvm-x-ame">*ruru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.399" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d9dacf66-561b-49f6-b9f8-8d3ffdc1cd49" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ruru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7150ec1a-3500-41bf-aa26-33b97e51a1e4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ed9b5ebe-45da-46a2-8e80-f61044825747" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ruru 
\entryTyp root 
\gENG 
\gSPN 
\e *ruru 
\c N0 
\ach ruru 
\akh ruru 
\acl ruru / _# 
\acl ruru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ruro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ruru / _# 
\akl ruru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ruro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ruru 
\mcc *ruru / ~_ 3P</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2b09b1f1-c948-4b87-9b90-fb2d67805ca5" ownerguid="c0d903bf-6502-45dd-9dd8-cff7f022c696"> -<ExampleWords> -<AUni ws="en">innumerable, unnumbered, uncountable, uncounted, countless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe an amount that cannot be counted?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2b0da1d5-77e8-4dbf-b5ef-a2ca36044b09" ownerguid="1c166923-c2c1-404e-9b84-fc6c96816fc7"> -<Form> -<AUni ws="qvm-x-ach">maculca</AUni> -<AUni ws="qvm-x-acl">maculca</AUni> -<AUni ws="qvm-x-akh">makulka</AUni> -<AUni ws="qvm-x-akl">makulka</AUni> -<AUni ws="qvm-x-ame">makulka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="2b0daa2f-2553-4076-8009-cabc39fcaba2" ownerguid="320cf7d7-ddc6-4226-8900-b23cc5256217"> -<Form> -<AUni ws="qvm-x-ach">baranda</AUni> -<AUni ws="qvm-x-acl">baranda</AUni> -<AUni ws="qvm-x-akh">baranda</AUni> -<AUni ws="qvm-x-akl">baranda</AUni> -<AUni ws="qvm-x-ame">baranda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2b0df007-f3b2-498b-8bf3-69e2a97d9ad6" ownerguid="dfdcfa24-b013-4566-af4a-28ef1dfd4742"> -<ExampleWords> -<AUni ws="en">measure, take a measurement, assay, assess, balance, calibrate, determine, fathom, gauge, grade, mete, meter, pace, plumb, quantify, rank, reach, read, take a reading, record, rule, sound, span, step off, stretch, stride, survey, tape, test, time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to measuring something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2b0e0c74-2dd1-4e20-ab6b-278412e2eb0a" ownerguid="014f053d-667c-426d-8bac-11529a04b478"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="2b0fbd58-ad45-48b6-b06f-72760f2d92ee"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cama; cama:</AUni> -<AUni ws="qvm-x-acl">cama; cama:</AUni> -<AUni ws="qvm-x-akh">kama; kama:</AUni> -<AUni ws="qvm-x-akl">kama; kama:</AUni> -<AUni ws="qvm-x-ame">kama; kama:</AUni> -</Custom> -<AlternateForms> -<objsur guid="09e49116-7275-469a-8592-9638e58b9237" t="o" /> -</AlternateForms> -<CitationForm> -<AUni ws="qvm-x-ach">*kama:</AUni> -<AUni ws="qvm-x-acl">*kama:</AUni> -<AUni ws="qvm-x-akh">*kama:</AUni> -<AUni ws="qvm-x-akl">*kama:</AUni> -<AUni ws="qvm-x-ame">*kama:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.912" /> -<DateModified val="2022-10-11 16:12:51.540" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f382655d-cde8-44f5-924d-61b9332cecab" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kama:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="66d7140f-e1ff-4e38-b18a-f27df1a96745" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e147424b-1a5d-4071-9258-dd7624e8a2c9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kama: 
\entryTyp root 
\gENG be.able 
\gSPN poder 
\e *kama: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach cama foreshortened 
\ach cama: 
\akh kama foreshortened 
\akh kama: 
\acl cama foreshortened 
\acl cama: 
\akl kama foreshortened 
\akl kama: 
\ame kama foreshortened 
\ame kama: 
\mcc *kama: / _ INSTL1 / _ INSTL3 / _ INSTL4</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2b1112a8-00db-491d-ac54-d058abc4ddde" ownerguid="97ed5af8-29ca-428d-8ac5-c61b61a963fd"> -<ExampleWords> -<AUni ws="en">colorful, multicolored, gaudy, garish, harlequin, multihued, many-colored, many-hued, brightly colored, variegated, polychrome, polychromatic, kaleidoscope, kaleidoscopic, play of colors, motley, pepper-and-salt, grizzled, mosaic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that has many different colors?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2b114c76-e85b-4b49-aef5-68ac9eb76215" ownerguid="d35769c5-bbb0-4773-98a6-14b11b576665"> -<Form> -<AUni ws="qvm-x-ach">jangu</AUni> -<AUni ws="qvm-x-acl">jangu; jangu; jango</AUni> -<AUni ws="qvm-x-akh">janqu</AUni> -<AUni ws="qvm-x-akl">janqu; janqu; janqo</AUni> -<AUni ws="qvm-x-ame">hanqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2b14600c-29c1-4322-8c50-9083cebeebe5" ownerguid="f38f8344-838f-44ba-b103-22289c2d2793"> -<ExampleWords> -<AUni ws="en">dampen, moisten, lick</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to making something slightly wet?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2b15ddb3-303a-45a8-8367-f3f75fc1c5d0" ownerguid="01bdba39-7318-4c79-8798-e28bb3af16dc"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2b16e65a-7d89-434f-a7fb-556ebf00fbd7" ownerguid="0296465a-25de-4af6-a122-376956b4b452"> -<ExampleWords> -<AUni ws="en">I, me, my, mine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What pronouns refer to the speaker?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2b17fa72-8cff-456c-b7cf-921c7b457c33"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shulu</AUni> -<AUni ws="qvm-x-acl">shulu; shulu; shulo</AUni> -<AUni ws="qvm-x-akh">shulu</AUni> -<AUni ws="qvm-x-akl">shulu; shulu; shulo</AUni> -<AUni ws="qvm-x-ame">shulu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shullu.n</AUni> -<AUni ws="qvm-x-acl">*shullu.n</AUni> -<AUni ws="qvm-x-akh">*shullu.n</AUni> -<AUni ws="qvm-x-akl">*shullu.n</AUni> -<AUni ws="qvm-x-ame">*shullu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.632" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a07bbb0f-ba72-46ff-bd0d-555bbc764e65" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shullu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="07e1b1da-3ab0-4611-bd0a-2aedd7ab18d9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="02eb9409-74d8-4840-aa32-ce70ffa0dd19" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shullu.n 
\entryTyp root 
\gENG 
\gSPN 
\e *shullu.n 
\c N0 
\ach shulu 
\akh shulu 
\acl shulu / _# 
\acl shulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shulu / _# 
\akl shulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shulu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="2b1967de-1836-4f04-8807-c0586e02dfd4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">traicione:ru</AUni> -<AUni ws="qvm-x-acl">traicione:ru; traicione:ru; traicione:ro</AUni> -<AUni ws="qvm-x-akh">traicione:ru</AUni> -<AUni ws="qvm-x-akl">traicione:ru; traicione:ru; traicione:ro</AUni> -<AUni ws="qvm-x-ame">traicione:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+traicionero</AUni> -<AUni ws="qvm-x-acl">+traicionero</AUni> -<AUni ws="qvm-x-akh">+traicionero</AUni> -<AUni ws="qvm-x-akl">+traicionero</AUni> -<AUni ws="qvm-x-ame">+traicionero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.380" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="11211f79-efd7-4f2c-8c35-500b9765d2ac" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+traicionero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="90084b12-5470-4757-8caf-31e13c2a67c6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="72111f4d-376f-466e-b5f4-7cd96909a504" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +traicionero 
\entryTyp root 
\gENG traitor 
\gSPN traicionero 
\e +traicionero 
\c N0 
\ach traicione:ru 
\akh traicione:ru 
\acl traicione:ru / _# 
\acl traicione:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl traicione:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl traicione:ru / _# 
\akl traicione:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl traicione:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame traicione:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="2b1bbad5-319c-4be7-b46a-1de7fd49b381"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">acata</AUni> -<AUni ws="qvm-x-acl">acata</AUni> -<AUni ws="qvm-x-akh">akata</AUni> -<AUni ws="qvm-x-akl">akata</AUni> -<AUni ws="qvm-x-ame">akata</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*akata</AUni> -<AUni ws="qvm-x-acl">*akata</AUni> -<AUni ws="qvm-x-akh">*akata</AUni> -<AUni ws="qvm-x-akl">*akata</AUni> -<AUni ws="qvm-x-ame">*akata</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.679" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b6a0e8ff-ff1d-4a94-98c2-5dc44a9950c9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*akata</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d9c24ac6-d5b4-4ed7-87b8-98506b679c30" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1a7f07d5-9d0c-4e9f-b4a8-b1adccba2410" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *akata 
\entryTyp root 
\gENG fast? 
\gSPN rápido? 
\e *akata 
\c V1 
\ach acata 
\akh akata 
\acl acata 
\akl akata 
\ame akata</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2b1bf398-f40b-4d85-9274-83bccc0f759b" ownerguid="250baab9-5a31-493c-95ea-9fee8baf9fd5"> -<ExampleWords> -<AUni ws="en">graceful, elegant, smooth, flowing, effortless, easy, with ease</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe graceful movements?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2b1bfbd8-f41a-406c-a25a-0a7da6098e93" ownerguid="054e81ce-abd8-4069-989d-13e2fa58851c"> -<ExampleWords> -<AUni ws="en">showy, ostentatious, ostentatiously, flashy, pretentious, pretentiously, proudly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who shows off?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2b1c4c5d-3f45-42a2-abee-8e8a4c60621e" ownerguid="725d78eb-8cac-4b2f-b5a4-f0a9adb80f5d"> -<ExampleWords> -<AUni ws="en">fanatic, fanaticism, bigot, bigotry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to extreme beliefs that are evil?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2b1e73b8-342f-4829-9772-1465ebbc378c" ownerguid="49f45f97-95f8-4a53-8952-f90147af2ba9"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">All of my family was there <except> me.; Everyone went <except> John.; John spent everything <except for> ten dollars.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">except, except for, apart from, aside from, bar, excepting, but for, but, with the exception of, but not</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is not included in a group, rule, or pattern?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2b2143d9-f65e-4c32-806b-996a30e7655e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">agra</AUni> -<AUni ws="qvm-x-acl">agra</AUni> -<AUni ws="qvm-x-akh">aqra</AUni> -<AUni ws="qvm-x-akl">aqra</AUni> -<AUni ws="qvm-x-ame">aqra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aqra</AUni> -<AUni ws="qvm-x-acl">*aqra</AUni> -<AUni ws="qvm-x-akh">*aqra</AUni> -<AUni ws="qvm-x-akl">*aqra</AUni> -<AUni ws="qvm-x-ame">*aqra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.820" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2c6271e2-09a8-4584-82ef-b3dc319d2b29" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aqra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f88400e1-92a4-46b8-9fb2-45452fb93dd9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3b09e4e6-827a-458d-bcae-171c837aec92" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aqra 
\entryTyp root 
\gENG skinny 
\gSPN flaco 
\e *aqra 
\c N0 
\ach agra 
\akh aqra 
\acl agra 
\akl aqra 
\ame aqra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoAffixAllomorph" guid="2b2772da-2fbd-4846-99c3-d3f919125916" ownerguid="17321b73-3887-4541-9049-9af2e1d69d9b"> -<Form> -<AUni ws="qvm-x-ach">pti</AUni> -<AUni ws="qvm-x-acl">pti; pti; pte</AUni> -<AUni ws="qvm-x-akh">pti</AUni> -<AUni ws="qvm-x-akl">pti; pti; pte</AUni> -<AUni ws="qvm-x-ame">pti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="2b279f5f-9aef-41e6-8c66-71225dddd883" ownerguid="035874f8-c759-4c87-a050-6e3f305cb6ac"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="2b27b8ca-188e-44ad-aa86-ffa1f99106e3" ownerguid="08239f53-daa5-47a6-9f39-29a9064b0c27"> -<Abbreviation> -<AUni ws="en">7.5.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.546" /> -<DateModified val="2022-9-23 16:55:8.546" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to adding something to another thing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>59H Add, Subtract</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Add to something</AUni> -</Name> -<Questions> -<objsur guid="0b945c10-bd33-41b0-80d9-a445390d3ef7" t="o" /> -<objsur guid="7c42ea20-49bc-43f9-8ec7-32cf98c17c9e" t="o" /> -<objsur guid="85e4bdb6-ea5f-4ca3-b8d5-5d51c0f547ee" t="o" /> -<objsur guid="497bb031-0afc-4577-a8c3-6c3aea168dad" t="o" /> -<objsur guid="e931b6be-3b1d-45f1-ae66-dbb01417f6a4" t="o" /> -<objsur guid="e5f5f754-7bc8-48a5-9158-e116008ac976" t="o" /> -<objsur guid="33bb3d02-4127-43e3-bd32-45a968ab6524" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="83899b19-8b39-4bf0-b124-4c6188569ec8" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="2b29ba57-74ac-45ef-8f07-ca9a5d66a2b9" ownerguid="8c7382be-3bbb-4ec7-923a-38a343e9c4fb"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2b2a527b-ed91-4830-a8d0-b22049744d59" ownerguid="9f868391-f1df-4682-bdcb-2c2c799006cf"> -<ExampleWords> -<AUni ws="en">memory, recollection</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the things a person remembers?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="2b2bedd5-3f9c-4c18-a256-aa65ee19f15c" ownerguid="f29dccae-1654-4eb7-8aae-04f7df4fe90c"> -<Abbreviation> -<AUni ws="en">8.3.7.7.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being compatible--words that describe two things or people that can be together or work together without problems or conflict.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Compatible</AUni> -</Name> -<Questions> -<objsur guid="c667ea4f-2460-4e57-9532-323bc13d4dcc" t="o" /> -<objsur guid="e70e1641-9ddb-4339-99a9-0f3a878697cc" t="o" /> -<objsur guid="e6fce2dd-1848-483c-8c0b-12535167fc3f" t="o" /> -<objsur guid="90a191f8-39c1-4598-b366-c224aaa29ded" t="o" /> -<objsur guid="ff05c388-abf1-430f-a682-ca624a6e2c37" t="o" /> -<objsur guid="83bfe903-d186-4490-b7d3-f02ab74aefab" t="o" /> -<objsur guid="29e185bf-b7f6-4684-ba22-1d75568900b1" t="o" /> -<objsur guid="b7e54d59-2478-4437-bcc0-1ae6a0f95245" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="2b2bf002-7515-4a95-a6a6-e9b2046ecbe5" ownerguid="f03b07e0-70c5-45e7-805f-35a0d5b59009"> -<Form> -<AUni ws="qvm-x-ach">ripiu; ripio</AUni> -<AUni ws="qvm-x-acl">ripiu; ripiu; ripio</AUni> -<AUni ws="qvm-x-akh">ripiu; ripio</AUni> -<AUni ws="qvm-x-akl">ripiu; ripiu; ripio</AUni> -<AUni ws="qvm-x-ame">ripiu; ripio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2b2f72ca-1ca9-4c55-9e49-779c76f97d31" ownerguid="72274e9d-5d3c-4ae7-93ab-db3617cdda1e"> -<ExampleWords> -<AUni ws="en">comfortable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to feeling good?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2b31a9b5-b5b2-4a58-b4d0-5c804e719291" ownerguid="8e851b2f-ffa0-40bf-8cb8-2c739ce8f242"> -<Form> -<AUni ws="qvm-x-ach">planta</AUni> -<AUni ws="qvm-x-acl">planta</AUni> -<AUni ws="qvm-x-akh">planta</AUni> -<AUni ws="qvm-x-akl">planta</AUni> -<AUni ws="qvm-x-ame">planta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="2b31cc23-d72f-42e6-9188-303fda009760" ownerguid="8e1acde5-d828-43de-9d8f-f481480cf559"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="LexExampleSentence" guid="2b349640-9a0e-4099-a6d9-d023940a660c" ownerguid="ff43a873-509b-4153-a8b0-14d8bc9705ce"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">DAN 3.5 Imay hörapis trompëtata, quënata, arpa malwata, guitärrata, arpata, zampöñata y mas waquin instrumentucunatapis wagamushganta mayaycur juc yarpayla lapayqui mandag Nabucodonosor ichitsishgan monumentu naupanman gongurpacäriy adoranayquipag.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="2b355337-42b8-47ac-ab54-c3ff633e6faf" ownerguid="d4a8d2fd-b493-4467-941a-677883b2281e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="2b370eb5-3a3e-42fc-8753-fd2ad3dafa09"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">man</AUni> -<AUni ws="qvm-x-acl">man</AUni> -<AUni ws="qvm-x-akh">man</AUni> -<AUni ws="qvm-x-akl">man</AUni> -<AUni ws="qvm-x-ame">man</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.497" /> -<DateModified val="2022-10-16 15:30:37.610" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="2" /> -<LexemeForm> -<objsur guid="8fd16108-afa0-46a2-956c-3bc4cbb3eaf2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">COND</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f4d20bdf-75f8-4c69-afe3-f6617be92a6e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="efd2df79-e52f-4f5a-b991-45b48ca667f7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx COND 
\entryTyp suffix 
\gENG COND 
\gSPN COND 
\e COND 
\c V0/V0 
\o 180 
\mp +FinalC 
\ach man 
\akh man 
\acl man 
\akl man 
\ame man 
\mcc COND / 1 ... _ / 2 ... _ / 3 ... _ 
\mcc COND / ~_ COND 
\mcc COND / PL 1 ~_ TOP</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2b383778-9e56-4aa8-8138-f332044acebc" ownerguid="2158eb7d-eb59-4740-9628-9080d7f51a97"> -<ExampleWords> -<AUni ws="en">call, shake, dump water on him</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What do people do to wake someone up?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2b3a0a8e-ba9a-401c-b9bd-bba960a95486" ownerguid="bc011a6a-46e2-492e-b923-6dc6e03dcea4"> -<Form> -<AUni ws="qvm-x-ach">shipi</AUni> -<AUni ws="qvm-x-acl">shipi; shipi; shipe</AUni> -<AUni ws="qvm-x-akh">shipi</AUni> -<AUni ws="qvm-x-akl">shipi; shipi; shipe</AUni> -<AUni ws="qvm-x-ame">shipi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2b40ee2f-ccc6-4941-aa82-30354b401eb1" ownerguid="440608df-3c98-4dc8-9fd3-fad08afe7aef"> -<ExampleWords> -<AUni ws="en">limit, boundary, extent, (furthest) reach, barrier, restriction</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a limit beyond which something may not move?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2b439c51-4151-4da9-99b3-e8735385d919"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aficiona:du</AUni> -<AUni ws="qvm-x-acl">aficiona:du; aficiona:du; aficiona:do</AUni> -<AUni ws="qvm-x-akh">aficiona:du</AUni> -<AUni ws="qvm-x-akl">aficiona:du; aficiona:du; aficiona:do</AUni> -<AUni ws="qvm-x-ame">aficiona:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+aficionado</AUni> -<AUni ws="qvm-x-acl">+aficionado</AUni> -<AUni ws="qvm-x-akh">+aficionado</AUni> -<AUni ws="qvm-x-akl">+aficionado</AUni> -<AUni ws="qvm-x-ame">+aficionado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.659" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a611f35f-f658-40e7-b9b3-3a473bae66bc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+aficionado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="602eddb4-a0de-4440-951e-e894895c59de" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="68120e2f-cb98-4774-8bac-c4f7fb3acf4a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +aficionado 
\entryTyp root 
\gENG 
\gSPN 
\e +aficionado 
\c N0 
\ach aficiona:du 
\akh aficiona:du 
\acl aficiona:du / _# 
\acl aficiona:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl aficiona:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl aficiona:du / _# 
\akl aficiona:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl aficiona:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame aficiona:du 
\i 2CH 26.10 Chacrapag aficionädu captinmi üva chacrancunacho y waquin chacrancunachöpis arunanpag mincaynincuna tsaytsica cargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="2b45fc87-7bf1-46d9-bf27-b2ee940da388" ownerguid="2862f81c-3457-42fd-834d-32a18246a589"> -<Form> -<AUni ws="qvm-x-ach">oración; oracion</AUni> -<AUni ws="qvm-x-acl">oración; oracion</AUni> -<AUni ws="qvm-x-akh">oración; oracion</AUni> -<AUni ws="qvm-x-akl">oración; oracion</AUni> -<AUni ws="qvm-x-ame">oración; oracion</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2b46b048-cc76-4dff-97fd-1b297c989481" ownerguid="d41c16d7-0ab0-49ce-bbea-b2440595bc8a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">make.salty</AUni> -<AUni ws="es">hacer.salado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ab3e3003-0087-493d-b61c-b3c5249a4ab9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="2b4d3c49-4504-45f8-b165-2b0be2b64398" ownerguid="9fec2e0f-2d3e-48cb-a0ac-de3d74b2aab7"> -<Category> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</Category> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="c154e7e9-a748-4d55-83ce-a1761338b7da" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="d74b741c-0f77-49f1-81b2-2e9f9c18f48c" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="2b51c504-604d-47b8-8b37-91ddb9278407" ownerguid="358189f8-6a0b-427a-bfde-a5f72e8f3875"> -<Form> -<AUni ws="qvm-x-ach">chaccha</AUni> -<AUni ws="qvm-x-acl">chaccha</AUni> -<AUni ws="qvm-x-akh">chakcha</AUni> -<AUni ws="qvm-x-akl">chakcha</AUni> -<AUni ws="qvm-x-ame">chakcha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="2b535569-a059-40cd-93b8-2361dc417390" ownerguid="d5c59f3d-5ec4-4ccb-b2c8-a4ee009ee479"> -<Form> -<AUni ws="qvm-x-ach">ismu</AUni> -<AUni ws="qvm-x-acl">ismu; ismo</AUni> -<AUni ws="qvm-x-akh">ismu</AUni> -<AUni ws="qvm-x-akl">ismu; ismo</AUni> -<AUni ws="qvm-x-ame">ismu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2b58eb13-4693-46d8-bba0-74c88d72f65d" ownerguid="0049664f-0931-487b-ab3c-ce11e134ce7a"> -<ExampleWords> -<AUni ws="en">-ing, -ed, -s</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What affixes can be joined to verbs?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2b5a4c4a-751b-449b-95ec-9bbb6c9a97d5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">siuya</AUni> -<AUni ws="qvm-x-acl">siuya</AUni> -<AUni ws="qvm-x-akh">siwya</AUni> -<AUni ws="qvm-x-akl">siwya</AUni> -<AUni ws="qvm-x-ame">siwya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*siwya</AUni> -<AUni ws="qvm-x-acl">*siwya</AUni> -<AUni ws="qvm-x-akh">*siwya</AUni> -<AUni ws="qvm-x-akl">*siwya</AUni> -<AUni ws="qvm-x-ame">*siwya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.711" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4b1dc97d-14ad-4a46-b132-dc26641e3b94" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*siwya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5e50bbfe-26b6-4875-94b7-43d9f42e4316" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f89c667b-8387-4b38-8848-6b1cd2359421" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *siwya 
\entryTyp root 
\gENG 
\gSPN 
\e *siwya 
\c V1 
\ach siuya 
\akh siwya 
\acl siuya 
\akl siwya 
\ame siwya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2b5e5cf3-4d68-4786-9dc3-ca04bc49b70d" ownerguid="a9fbc056-3134-41af-baf4-9f63fa5bd5ae"> -<ExampleWords> -<AUni ws="en">drip, drip on, fall to the ground, splash on, hit, splatter, sprinkle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What do drops of water do?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2b602364-16c3-492a-81cf-87ece9d0ed46" ownerguid="eb662979-604c-455e-a2c6-a84b03a2ee3a"> -<ExampleWords> -<AUni ws="en">early, first thing, at the crack of dawn, bright and early</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words indicate that something happens early in the morning?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2b61cd39-0a4d-446e-a7e2-aaea4f4005bd" ownerguid="77b4d6c1-87bf-4839-b4be-6a45119b700a"> -<ExampleWords> -<AUni ws="en">ask, question, inquire, interrogate, interview</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to saying something in order to get information?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2b644c06-4b57-49c8-ada7-7166d7ad4821" ownerguid="e49f4e94-6050-40c3-978e-a688d0a45b4d"> -<Form> -<AUni ws="qvm-x-ach">tupa; tupä</AUni> -<AUni ws="qvm-x-acl">tupa; tupä</AUni> -<AUni ws="qvm-x-akh">tupa; tupä</AUni> -<AUni ws="qvm-x-akl">tupa; tupä</AUni> -<AUni ws="qvm-x-ame">tupa; tupä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="2b65d33b-e7f4-4772-88e2-2ea5722577d6" ownerguid="c49e2343-6be3-464c-9a5c-2fe31ec6de41"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="1782f340-545c-40b1-ad36-37848cee0a7b" t="o" /> -<objsur guid="b84367e5-ae2c-4ee4-8e39-97bee9d19f9f" t="o" /> -<objsur guid="ff291ff5-3f22-4867-a55d-d9ac54b79d9a" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="2b679f9a-f190-4923-bc0a-136b4949d162" ownerguid="1325df44-76cf-4c95-a918-304f22d502a2"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="2b67b37f-1128-4394-95b3-db82d5225196"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">siusa</AUni> -<AUni ws="qvm-x-acl">siusa</AUni> -<AUni ws="qvm-x-akh">siwsa</AUni> -<AUni ws="qvm-x-akl">siwsa</AUni> -<AUni ws="qvm-x-ame">siwsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*siwsa.n</AUni> -<AUni ws="qvm-x-acl">*siwsa.n</AUni> -<AUni ws="qvm-x-akh">*siwsa.n</AUni> -<AUni ws="qvm-x-akl">*siwsa.n</AUni> -<AUni ws="qvm-x-ame">*siwsa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.703" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1ade1f98-a8da-4da6-9974-bbd4a696a18d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*siwsa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="96ce33d8-f6ae-4254-a072-488924b0ac6c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6c6d64b2-25d5-43c0-8b36-414c2066402f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *siwsa.n 
\entryTyp root 
\gENG drizzle 
\gSPN llovizna 
\e *siwsa.n 
\c N0 
\ach siusa 
\akh siwsa 
\acl siusa 
\akl siwsa 
\ame siwsa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="2b698a91-88e5-43ec-8368-836fc2bf4376"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">watga</AUni> -<AUni ws="qvm-x-acl">watga</AUni> -<AUni ws="qvm-x-akh">watqa</AUni> -<AUni ws="qvm-x-akl">watqa</AUni> -<AUni ws="qvm-x-ame">watqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*watiqa</AUni> -<AUni ws="qvm-x-acl">*watiqa</AUni> -<AUni ws="qvm-x-akh">*watiqa</AUni> -<AUni ws="qvm-x-akl">*watiqa</AUni> -<AUni ws="qvm-x-ame">*watiqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.566" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c72160eb-c2ea-4453-b73c-b19f8dc12ac9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*watiqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7f66f6ee-c166-4ec3-9900-0d074a20e444" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6dc8ed7b-03f6-4d88-bb1b-d93580151acc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *watiqa 
\entryTyp root 
\gENG spy 
\gSPN espiar 
\e *watiqa 
\c V2 
\ach watga 
\akh watqa 
\acl watga 
\akl watqa 
\ame watqa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2b6eeb2f-2d08-4a18-8485-907a9f64cb52" ownerguid="474aa982-8350-47e2-a983-e1e2bce9d928"> -<ExampleWords> -<AUni ws="en">cheerful (thought)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that causes someone to feel good?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2b6f3302-e8bd-42d5-bc4b-bef840efaee7" ownerguid="0ac5e5f9-e7fe-4d37-a631-eab1ceb1f8ae"> -<ExampleWords> -<AUni ws="en">foot, bottom</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to the bottom of a mountain?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="2b6f9af7-04ee-4030-a2cd-87d55959caa8" ownerguid="60dc7cf6-0a41-4cd3-99a6-0b7a71488e7e"> -<Abbreviation> -<AUni ws="en">3.4.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.143" /> -<DateModified val="2022-9-23 16:55:8.143" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to fear--to feel bad because you think something bad might happen to you.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25V Fear, Terror, Alarm</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Afraid</AUni> -</Name> -<Questions> -<objsur guid="9da07673-752d-4979-bf89-8375cab3c98c" t="o" /> -<objsur guid="c54d0575-df62-48d0-9a28-f2ff5c53ab7d" t="o" /> -<objsur guid="37b2e36d-91e1-4576-87bd-9dfdfd7029ca" t="o" /> -<objsur guid="37c550f5-83c0-483c-9f3e-ace36ee74313" t="o" /> -<objsur guid="695b7028-da7a-4be5-8e02-a317b58b6781" t="o" /> -<objsur guid="dfbc41a5-0023-4dd6-afec-860069cc40ac" t="o" /> -<objsur guid="7262dd08-5627-4ad1-960e-4e13ab0c93b8" t="o" /> -<objsur guid="d291b04b-43e1-42dd-beb2-f42592a2d895" t="o" /> -<objsur guid="aaea47af-baed-4cf8-a679-99d2509601a3" t="o" /> -<objsur guid="24c5b1f6-ad09-463f-a9c5-b39132a38143" t="o" /> -<objsur guid="b4c87ab5-c2ca-4c64-8392-b8d765b517b1" t="o" /> -<objsur guid="8b2e460a-628b-4966-8113-ac72d9a2f343" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="401bbbe4-a33a-4a1e-b26a-18a756e002c4" t="r" /> -<objsur guid="76a4a286-1c8a-4c4a-9eaf-dca040be574a" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="ba1e8d2b-7d3e-4b65-a9be-ee1a4063c796" t="o" /> -<objsur guid="64e3d6b1-1d61-454c-97ab-e1d7cb0a8917" t="o" /> -<objsur guid="100e62a6-b6f4-4b30-b317-0517d6b102a9" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="2b720a3a-faf3-436b-a774-6fe4d64e870b" ownerguid="8ec729f7-3741-4b94-8527-1883f31b930d"> -<Form> -<AUni ws="qvm-x-ach">lömu</AUni> -<AUni ws="qvm-x-acl">lömu; lömu; lömo</AUni> -<AUni ws="qvm-x-akh">lömu</AUni> -<AUni ws="qvm-x-akl">lömu; lömu; lömo</AUni> -<AUni ws="qvm-x-ame">lömu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2b72e465-1724-4261-9b97-6cb8f8e0ac8d" ownerguid="bddc70ea-d46f-4e4b-83a1-a47bea858dd6"> -<ExampleWords> -<AUni ws="en">front (adj), frontal, anterior</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is on the front?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="2b7462bb-4ce7-4e5d-a722-1dd1ce585066" ownerguid="03d900be-35b2-4a93-85f5-773b666cefb5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="2b769d92-3bfa-4d71-ab93-5bae440c9aed" ownerguid="0c1bcc98-9bc3-4da0-8eac-ff8a6eecbf84"> -<ExampleWords> -<AUni ws="en">acquittal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the acquittal?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2b76f8ac-f8a1-470d-8cd0-17fb31657cde" ownerguid="c8380d80-c01c-4638-9a43-37df36123ef2"> -<Form> -<AUni ws="qvm-x-ach">masbien</AUni> -<AUni ws="qvm-x-acl">masbien</AUni> -<AUni ws="qvm-x-akh">masbien</AUni> -<AUni ws="qvm-x-akl">masbien</AUni> -<AUni ws="qvm-x-ame">masbien</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2b7747e9-3327-4700-9e0d-1492c76a05d1" ownerguid="22b52461-ebe0-422d-a7cb-7b9359e7a701"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pass.g.pig</AUni> -<AUni ws="es">jubeo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="67ccf8c6-a7c7-40df-864a-115f41357a80" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="2b79e5b4-d75a-4df2-bce7-6fb18a56b115" ownerguid="61a14b92-7c6c-4337-a573-6653df85525d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">quickly</AUni> -<AUni ws="es">rápido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1a500494-d420-452b-9798-9336b1649f97" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2b7b561c-6643-4a5b-958e-aaf1c44d90eb" ownerguid="74cd7314-5ef6-4505-a35a-81468b5a3f3a"> -<ExampleWords> -<AUni ws="en">situation, things, conditions, state of affairs, set-up, context</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the general situation that exists in a place?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2b7c747b-add4-4035-8405-2a9ad67bf9a3" ownerguid="28efc1c4-20dd-44f2-9caa-3098b2033b5f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">drink</AUni> -<AUni ws="es">tomar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1afc065a-f51b-4b41-aa93-c6a55c0d064e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2b7d5fe2-6e83-44c0-ac56-d64f25ab7555" ownerguid="b536622c-80a3-4b31-9d22-4ed2fb76324d"> -<ExampleWords> -<AUni ws="en">city, town, village, hamlet, burg, community, urban</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a city?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2b7e0483-15d8-4b3b-9bdc-6072fc0f49a9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">almira</AUni> -<AUni ws="qvm-x-acl">almira</AUni> -<AUni ws="qvm-x-akh">almira</AUni> -<AUni ws="qvm-x-akl">almira</AUni> -<AUni ws="qvm-x-ame">almira</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+admirar</AUni> -<AUni ws="qvm-x-acl">+admirar</AUni> -<AUni ws="qvm-x-akh">+admirar</AUni> -<AUni ws="qvm-x-akl">+admirar</AUni> -<AUni ws="qvm-x-ame">+admirar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.649" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eb9c7edd-be37-4abc-91a9-2a7563306328" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+admirar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b61a4027-8a59-4f05-a97f-799fe6b9461b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7661ed0b-c3db-46ca-b7f9-8329c2886423" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +admirar 
\entryTyp root 
\gENG 
\gSPN admirar 
\e +admirar 
\c V2 
\ach almira 
\akh almira 
\acl almira 
\akl almira 
\ame almira</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2b7ede55-fd63-4f2b-b6e3-8bc0c2b01e9d" ownerguid="e6221c7a-4608-4114-ba9f-532a3b943113"> -<ExampleWords> -<AUni ws="en">feather, feathered, plumage, plume, quill, down, wing, winged, wing tip, beak, bill, cockscomb (rooster's red crest), wattles (rooster's red flap of skin under beak), crop, gizzard, claw, talon, egg, eggshell, egg tooth, craw, gullet, spur</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the parts of a bird?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2b7f76b6-4b95-4c6a-bbe2-9c2b74d0e708" ownerguid="95f05398-93c8-4a32-a29a-ee455bdc3217"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="2b811885-9a34-40b5-b8a4-9e31883e0050" ownerguid="4b1fe9c3-961e-4074-9ea1-ce5cb4dcd415"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="2b82df8b-2188-4ae9-a1eb-b3c50f21199e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tri:gu</AUni> -<AUni ws="qvm-x-acl">tri:gu; tri:gu; tri:go</AUni> -<AUni ws="qvm-x-akh">tri:gu</AUni> -<AUni ws="qvm-x-akl">tri:gu; tri:gu; tri:go</AUni> -<AUni ws="qvm-x-ame">tri:gu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+trigo</AUni> -<AUni ws="qvm-x-acl">+trigo</AUni> -<AUni ws="qvm-x-akh">+trigo</AUni> -<AUni ws="qvm-x-akl">+trigo</AUni> -<AUni ws="qvm-x-ame">+trigo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.980" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7a236ac0-f14c-48aa-aa34-214831e1ee96" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+trigo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f8141324-cefd-49b1-9c6f-cad8066005c6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c3941ad5-8d10-49bb-9b2c-d6f60816e5d0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +trigo 
\entryTyp root 
\gENG wheat 
\gSPN trigo 
\e +trigo 
\c N0 
\ach tri:gu 
\akh tri:gu 
\acl tri:gu / _# 
\acl tri:gu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tri:go +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tri:gu / _# 
\akl tri:gu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tri:go +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tri:gu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="2b8329ee-2a8c-4f1d-84a3-e58a079d2a91"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pitsu</AUni> -<AUni ws="qvm-x-acl">pitsu; pitsu; pitso</AUni> -<AUni ws="qvm-x-akh">pitsu</AUni> -<AUni ws="qvm-x-akl">pitsu; pitsu; pitso</AUni> -<AUni ws="qvm-x-ame">pitsu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pichu.n</AUni> -<AUni ws="qvm-x-acl">*pichu.n</AUni> -<AUni ws="qvm-x-akh">*pichu.n</AUni> -<AUni ws="qvm-x-akl">*pichu.n</AUni> -<AUni ws="qvm-x-ame">*pichu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.828" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="61a2d8b4-3bcc-4dab-a438-22931fb4a21e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pichu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d1402a63-5d21-4fdc-97c2-3312dbc62bf6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="64bd8cfc-e5e0-45c3-a0a6-b1efecd37598" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pichu.n 
\entryTyp root 
\gENG grass 
\gSPN hierba 
\e *pichu.n 
\c N0 
\ach pitsu 
\akh pitsu 
\acl pitsu / _# 
\acl pitsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pitso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pitsu / _# 
\akl pitsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pitso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pitsu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="2b835d64-901b-4d4f-9ed8-cac3bed4a3ad" ownerguid="de6d1645-af53-4181-87bf-f3ae86ff3ad0"> -<Form> -<AUni ws="qvm-x-ach">cachca</AUni> -<AUni ws="qvm-x-acl">cachca</AUni> -<AUni ws="qvm-x-akh">kachka</AUni> -<AUni ws="qvm-x-akl">kachka</AUni> -<AUni ws="qvm-x-ame">kachka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="2b846476-00cf-4d82-97a1-26e1eda880ca" ownerguid="4260e110-7b04-4d40-9391-486a57aa3031"> -<Abbreviation> -<AUni ws="en">4.3.1.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.223" /> -<DateModified val="2022-9-23 16:55:8.223" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to behaving in an immature way--for either a child or an adult to act like a child.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88M Mature Behavior</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Immature in behavior</AUni> -</Name> -<Questions> -<objsur guid="5071eb8e-ecf8-46bd-ac88-22d12fb9b6cd" t="o" /> -<objsur guid="d7101189-1549-41cd-8470-05d200204605" t="o" /> -<objsur guid="86ab2cab-0a45-4582-a15b-1fc181525883" t="o" /> -<objsur guid="dbc56caa-2c70-4567-bb35-7ac59849b3de" t="o" /> -<objsur guid="f959b605-9ae3-4613-9c49-cf0038288e8c" t="o" /> -<objsur guid="e3a00836-9e04-42c7-8047-fb190c78a83e" t="o" /> -<objsur guid="553c001f-c1bd-4537-a83e-83b9255f8ba5" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="2b84ebd8-2c6a-4acf-896f-754bf9d8c3aa" ownerguid="efefadd4-0419-4705-a08e-cb3298edb4f0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2b85808d-3d03-4217-b82f-0ac4a4642fd9" ownerguid="04582a28-b94a-4e7f-8cc4-5cdefa8a39f0"> -<ExampleWords> -<AUni ws="en">boyish, childish, effeminate, milksop, mincing, sissified, sissy, unmanly, wimp, womanish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe a man who acts like a boy or a woman?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2b86891f-52d7-4659-a39e-d75f8322e852"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">canala</AUni> -<AUni ws="qvm-x-acl">canala</AUni> -<AUni ws="qvm-x-akh">kanala</AUni> -<AUni ws="qvm-x-akl">kanala</AUni> -<AUni ws="qvm-x-ame">kanala</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kañalla</AUni> -<AUni ws="qvm-x-acl">*kañalla</AUni> -<AUni ws="qvm-x-akh">*kañalla</AUni> -<AUni ws="qvm-x-akl">*kañalla</AUni> -<AUni ws="qvm-x-ame">*kañalla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.933" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0681100c-183d-4cdd-8c8c-3691c4a79b34" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kañalla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="baf4193b-06de-4c41-9b09-65d06ba7cf61" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="37f9d238-30fe-4b0e-8210-35c3e63f8dea" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kañalla 
\entryTyp root 
\gENG frying.pan 
\gSPN sartén 
\e *kañalla 
\c N0 
\ach canala 
\akh kanala 
\acl canala 
\akl kanala 
\ame kanala 
\mcc *kañalla / ~_ 2P.V [pur]</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="2b893d04-3450-4862-b046-7df6f87272f6" ownerguid="c82fa28f-7e26-489e-a244-4d69cea87b94"> -<Abbreviation> -<AUni ws="en">6.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to finance.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>57 Possess, Transfer, Exchange</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Finance</AUni> -</Name> -<OcmCodes> -<Uni>450 Finance</Uni> -</OcmCodes> -<Questions> -<objsur guid="64f6e570-119d-441c-82f4-598abacdc275" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="ff736f67-197b-46b9-bc14-edbeb1fb3d5a" t="o" /> -<objsur guid="4f22ebdb-01db-432a-9d7a-41cd44010265" t="o" /> -<objsur guid="749ad6fe-5509-4e45-b236-84ea12de102e" t="o" /> -<objsur guid="67931f1c-9a0c-4d18-9762-e553c132256c" t="o" /> -<objsur guid="49ee84ff-eb2b-4ba3-b193-3018d34599c2" t="o" /> -<objsur guid="43282de6-51e1-4e52-99fc-d54e2043fb6c" t="o" /> -<objsur guid="ed2113c8-1784-4808-ab1a-fd269f86fa99" t="o" /> -<objsur guid="9a8f2f6a-a039-45dd-80d3-d1e0911907b2" t="o" /> -<objsur guid="63b18261-faf3-4ab2-bcb4-7c3ac4d6d6ba" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="2b895c6b-117b-4b60-9a71-1caf7a6dd597" ownerguid="e6b476da-71f1-48bd-a1cb-88b106dec2a5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.unforgiving</AUni> -<AUni ws="es">guardar.rincor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2f02df4e-5f69-4e5d-a001-dcb57c769f0a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="2b8bc574-dd91-4475-a7ae-fc75e3ba292c" ownerguid="6c4b744b-9c17-463a-961c-4210d7825dee"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="2b8cef5f-b5c2-4f81-b19a-c870c0b9e048" ownerguid="6a8ba01b-0f1b-4a43-8990-ab78eda673fc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7598acfd-db2d-4fb5-8afb-b9cc4cc4322b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="2b8f4e5e-6713-40ce-9f0a-13ec663dd12b" ownerguid="ec3e8cba-764f-41d8-8fa7-97d1d8067fb1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoAffixAllomorph" guid="2b952a19-fce6-44e5-ab25-c091ef27f843" ownerguid="bbff1d40-e754-42d6-ad25-68f2993e137d"> -<Form> -<AUni ws="qvm-x-ach">ku</AUni> -<AUni ws="qvm-x-acl">ku</AUni> -<AUni ws="qvm-x-akh">ku</AUni> -<AUni ws="qvm-x-akl">ku</AUni> -<AUni ws="qvm-x-ame">ku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="2b967262-87cc-414c-9a8a-5e6877402f69" ownerguid="1cbb30d4-6c4a-4512-b807-1a21559996c8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="57e435ff-f14a-44e1-b595-dff01f37fcc1" t="r" /> -</Morph> -<Msa> -<objsur guid="be6973f5-a2b1-46a6-9dd0-379cd8bb168a" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="2b9b0229-8189-4202-813a-5c2878b6909c" ownerguid="75ccb853-52a7-4f79-86a3-f3e653b648e4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="2b9c1681-c55d-4fcf-892e-4fd28f7b65df"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsegta</AUni> -<AUni ws="qvm-x-acl">tsegta</AUni> -<AUni ws="qvm-x-akh">tseqta</AUni> -<AUni ws="qvm-x-akl">tseqta</AUni> -<AUni ws="qvm-x-ame">tsiqta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chiqta.n</AUni> -<AUni ws="qvm-x-acl">*chiqta.n</AUni> -<AUni ws="qvm-x-akh">*chiqta.n</AUni> -<AUni ws="qvm-x-akl">*chiqta.n</AUni> -<AUni ws="qvm-x-ame">*chiqta.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.315" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="720e418e-6b0f-42b5-9a22-297f5d22e90d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chiqta.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9a682783-0f14-477e-9c68-8b88e0ee8058" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="44f80ef5-18f4-4a64-93d5-2739fa0a3cd0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chiqta.n 
\entryTyp root 
\gENG split.firewood 
\gSPN leña.rajada 
\e *chiqta.n 
\c N0 
\ach tsegta 
\akh tseqta 
\acl tsegta 
\akl tseqta 
\ame tsiqta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2b9c20ca-94e0-456c-8be5-bed007ac19a5" ownerguid="98830eda-3997-4f4a-9ba4-664df669e7e2"> -<ExampleWords> -<AUni ws="en">fort, fortress, base, castle, bunker, post</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a fort?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="2b9ce81a-0194-423a-8be4-098b909b0e64" ownerguid="d9c288d9-54c0-42ab-a3e0-70d8a1951a74"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="8247e43e-d3ab-481f-8c0a-11d19341ba37" t="o" /> -<objsur guid="2492b498-9515-41c1-8e4a-60c863a7fcdd" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="2b9de917-69d6-4232-ae20-d57f32c2cd3c" ownerguid="61f52196-a8b2-496d-96ea-8c15dc7d377a"> -<ExampleWords> -<AUni ws="en">supernatural power, miraculous power, might, force, omnipotence, almighty, all-powerful</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to supernatural power?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2b9f692f-ff54-44fa-90a3-8d2a815c7e71" ownerguid="a3bc1fbd-9f2f-4a9d-ae6e-7b02da8a05b4"> -<ExampleWords> -<AUni ws="en">poke, dig, jab, pierce, prick, stick</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used to describe the actions done with these tools?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2ba174b3-7441-4ba8-a159-1961ba55ff01" ownerguid="f99ca948-e6f8-40bd-a120-c10cfe309159"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="2ba2f762-b6d4-4a4c-9119-aab9e3772316"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">katay</AUni> -<AUni ws="qvm-x-acl">katay</AUni> -<AUni ws="qvm-x-akh">katay</AUni> -<AUni ws="qvm-x-akl">katay</AUni> -<AUni ws="qvm-x-ame">katay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+acá.está</AUni> -<AUni ws="qvm-x-acl">+acá.está</AUni> -<AUni ws="qvm-x-akh">+acá.está</AUni> -<AUni ws="qvm-x-akl">+acá.está</AUni> -<AUni ws="qvm-x-ame">+acá.está</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.627" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fd16a547-94e5-43e8-a82b-aaaae21b5c8a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+acá.está</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c59fb6a7-a6eb-4ebe-bfa8-fd18a5089b55" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="95049019-a5ea-4ac1-a081-cbcf24a7723c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +acá.está 
\entryTyp root 
\gENG here.it.is 
\gSPN acá.está 
\e +acá.está 
\c NOSUFF 
\ach katay 
\akh katay 
\acl katay 
\akl katay 
\ame katay</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2ba41241-db0f-48d0-9ac1-0a1f5bb30637" ownerguid="06ac577a-4d61-4898-ac9d-e3f18b7504af"> -<ExampleWords> -<AUni ws="en">savior, defender, deliverer, liberator, rescuer, protector, guardian</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a person who saves someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2ba423b5-0d6e-4e01-82b1-60ffab48ae34" ownerguid="756f67e9-2b22-4c43-913c-ceff0e781545"> -<ExampleWords> -<AUni ws="en">put in/into/inside, slide something into, tuck in/into/under, insert</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to putting something into a hole or small space?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2ba62955-1df9-459e-b7d6-eb24b0d72c3a" ownerguid="df51e17a-2d75-4c49-b2d1-c22e16898414"> -<Form> -<AUni ws="qvm-x-ach">batya</AUni> -<AUni ws="qvm-x-acl">batya</AUni> -<AUni ws="qvm-x-akh">batya</AUni> -<AUni ws="qvm-x-akl">batya</AUni> -<AUni ws="qvm-x-ame">batya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="2baaa609-e450-4137-83c0-5fe389f56e7a" ownerguid="65d840b4-2631-4232-8b18-8f48ed193507"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2bab8a1d-05f1-4062-8bb9-876b35267916" ownerguid="aba3f7f1-9e13-4b48-acbb-3bf6d6bfa0e8"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The rice <weighs> one kilo.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">is, weigh, how heavy, weigh in at</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that something is a particular weight?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2bac24a3-b9c6-42ea-befd-2faf99940fb0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mantsari</AUni> -<AUni ws="qvm-x-acl">mantsari; mantsare</AUni> -<AUni ws="qvm-x-akh">mantsari</AUni> -<AUni ws="qvm-x-akl">mantsari; mantsare</AUni> -<AUni ws="qvm-x-ame">mantsari</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*manchari</AUni> -<AUni ws="qvm-x-acl">*manchari</AUni> -<AUni ws="qvm-x-akh">*manchari</AUni> -<AUni ws="qvm-x-akl">*manchari</AUni> -<AUni ws="qvm-x-ame">*manchari</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.305" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4b51fdd2-a72e-44b3-ac9d-b875b44d2982" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*manchari</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d9359824-5dfb-47d3-b09c-89ce8446c231" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="40db08b7-4d5e-4992-8530-7a77edfd9036" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *manchari 
\entryTyp root 
\gENG 
\gSPN 
\e *manchari 
\c V2 
\mp +FinalI 
\ach mantsari 
\akh mantsari 
\acl mantsari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl mantsare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mantsari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mantsare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mantsari</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="2baffc08-a706-4292-b5da-f1c4aaddd562" ownerguid="27a7baa4-5df5-4f24-b958-9f45303f4cd8"> -<Form> -<AUni ws="qvm-x-ach">patröna</AUni> -<AUni ws="qvm-x-acl">patröna</AUni> -<AUni ws="qvm-x-akh">patröna</AUni> -<AUni ws="qvm-x-akl">patröna</AUni> -<AUni ws="qvm-x-ame">patröna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2bb02c2b-8c98-4cf9-bcd6-2ce11ba3693f" ownerguid="30c95b70-d638-488a-8356-8f06cdc1ecce"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">eyebrow</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="885ec6c2-44bd-42d6-b959-cb086efc0c46" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2bb0a3d0-d08c-42fd-a2b8-76fb9ca83ea9" ownerguid="628f61e8-c8ba-40b5-864f-8bac1e189fa2"> -<Form> -<AUni ws="qvm-x-ach">ishcu</AUni> -<AUni ws="qvm-x-acl">ishcu; ishco</AUni> -<AUni ws="qvm-x-akh">ishku</AUni> -<AUni ws="qvm-x-akl">ishku; ishko</AUni> -<AUni ws="qvm-x-ame">ishku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="2bb178b7-e4b6-423a-a109-a97207cfba90"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">romanilla</AUni> -<AUni ws="qvm-x-acl">romanilla</AUni> -<AUni ws="qvm-x-akh">romanilla</AUni> -<AUni ws="qvm-x-akl">romanilla</AUni> -<AUni ws="qvm-x-ame">romanilla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+romanilla</AUni> -<AUni ws="qvm-x-acl">+romanilla</AUni> -<AUni ws="qvm-x-akh">+romanilla</AUni> -<AUni ws="qvm-x-akl">+romanilla</AUni> -<AUni ws="qvm-x-ame">+romanilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.378" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="93d8c59d-b8b0-4b5e-8419-f17702fb4905" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+romanilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="105fbd07-5c5e-488e-a817-72c78b290cb0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b1b656ec-b1d1-4696-b448-1ae5e54a5804" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +romanilla 
\entryTyp root 
\gENG 
\gSPN 
\e +romanilla 
\c N0 
\ach romanilla 
\akh romanilla 
\acl romanilla 
\akl romanilla 
\ame romanilla</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2bb2b1fb-45fa-4534-88a0-905833fecefb" ownerguid="401bbbe4-a33a-4a1e-b26a-18a756e002c4"> -<ExampleWords> -<AUni ws="en">cowardly, chicken, chickenhearted, fainthearted, gutless, lily-livered, pusillanimous, sissified, spineless, weak-kneed, wimpy, yellow, yellow bellied</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels cowardly?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2bb89101-d907-4fd2-b037-d2f940cd9c5b" ownerguid="94af09fa-ff23-433b-a881-ceaca87d9d18"> -<ExampleWords> -<AUni ws="en">weakness, infirmity, disability, vulnerability</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a person's weakness?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2bbd43f9-d19a-4cdc-b594-bac1cbbf386a" ownerguid="c7c7a8fe-4065-4e67-b741-e52c211972b0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="52ab6101-62b6-44b2-a910-adce280168e4" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">interruption</AUni> -<AUni ws="es">interrupción</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ec3019ea-f7ea-4e62-82b0-8dd963403d6f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2bc89d50-2978-4bde-ab95-ea36239d386d" ownerguid="768aed05-dbc9-4caf-9461-76cb3720f908"> -<ExampleWords> -<AUni ws="en">attack, sharp, pang, piercing, prick, shooting, stab, stabbing, throes, paroxysm, wrenching pain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to a pain that lasts a short time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2bcad434-6a54-4ae5-9ca4-da680a8ef304" ownerguid="49aa89f2-2022-4213-845e-dbbb4b53476c"> -<ExampleWords> -<AUni ws="en">last (week), latest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words indicate that something is the last before now?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2bcb85a5-37b9-4782-a7c1-cd3778cb9c88" ownerguid="ccbbd16f-58c5-45c1-bfff-1fba64d9740e"> -<ExampleWords> -<AUni ws="en">sudden, suddenly, suddenness, immediate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(21) What words are used to indicate that something happened suddenly?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2bcb8b2d-3843-477d-b01c-f14ad032b474" ownerguid="185d398b-1e9d-4de6-9606-908b55df3c3a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="450e5bad-4be9-4a84-9924-6f20034eb152" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="2bcd888d-0d23-4ead-962b-d5f8c53f22f5" ownerguid="5bd7d08f-b49b-4ddf-8fd6-b86b60337013"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="2bcf0283-cd78-48da-ae77-a3ab3c0cac33" ownerguid="7a2f695b-dc64-4de2-9cde-19fc62d67627"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="2bcf7499-0d6b-42c6-a871-2d4d1115ae06" ownerguid="d38c92e2-6409-4b6b-842e-013486e407ee"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">already</AUni> -<AUni ws="es">ya</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8190ca13-8e01-4b81-9571-1d8fa988326f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2bcf98f4-e542-45e9-8bd0-47f3ecbb0886" ownerguid="480b21f9-059d-4da4-abb9-7a51b2d19095"> -<Form> -<AUni ws="qvm-x-ach">abyu</AUni> -<AUni ws="qvm-x-acl">abyu; abyu; abyo</AUni> -<AUni ws="qvm-x-akh">abyu</AUni> -<AUni ws="qvm-x-akl">abyu; abyu; abyo</AUni> -<AUni ws="qvm-x-ame">abyu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="2bd22cf0-698e-474c-8aab-87c79dc7849f" ownerguid="1aa3b9b8-ed19-4ec5-a42b-57599a8cfe20"> -<Form> -<AUni ws="qvm-x-ach">chipya</AUni> -<AUni ws="qvm-x-acl">chipya</AUni> -<AUni ws="qvm-x-akh">chipya</AUni> -<AUni ws="qvm-x-akl">chipya</AUni> -<AUni ws="qvm-x-ame">chipya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2bd52d0b-e49e-429d-af2d-d51712f79020" ownerguid="d395edc8-fb58-4ba4-8446-dacf8ea0477a"> -<ExampleWords> -<AUni ws="en">bead of sweat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What is a drop of sweat called?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2bd7ff12-4fc2-449c-9505-03b47609512c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">juniu; junio</AUni> -<AUni ws="qvm-x-acl">juniu; juniu; junio</AUni> -<AUni ws="qvm-x-akh">juniu; junio</AUni> -<AUni ws="qvm-x-akl">juniu; juniu; junio</AUni> -<AUni ws="qvm-x-ame">juniu; junio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+junio</AUni> -<AUni ws="qvm-x-acl">+junio</AUni> -<AUni ws="qvm-x-akh">+junio</AUni> -<AUni ws="qvm-x-akl">+junio</AUni> -<AUni ws="qvm-x-ame">+junio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.892" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a26720ab-2fe7-4ee1-8695-39fd440cf446" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+junio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3055e5eb-62e9-49ce-b0ab-1e5cba610b2e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8f1ab2a1-1ed9-484c-8483-3aad952489d9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +junio 
\entryTyp root 
\gENG June 
\gSPN junio 
\e +junio 
\c N0 
\ach juniu / ~_# 
\ach junio / _# 
\akh juniu / ~_# 
\akh junio / _# 
\acl juniu / ~_# 
\acl juniu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl junio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl juniu / ~_# 
\akl juniu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl junio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame juniu / ~_# 
\ame junio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="2bdde15a-8f71-4546-b70f-d8b7aeef885d" ownerguid="09fcebfc-65b6-4d70-93a0-bad0a7419e7e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">admonish</AUni> -<AUni ws="es">darle.idea</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2e9ce871-af4b-4d67-a804-5ff2f8ffabda" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2bde6aaf-48c6-427d-bd1e-6adeef38f94a" ownerguid="b14db9f4-5e1d-4a2b-bec0-0d6bcb5b1a31"> -<ExampleWords> -<AUni ws="en">fall from, fall out, come off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to falling off of something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2bdfe506-0a28-45bd-81e1-44dcedcc262a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nación; nacion</AUni> -<AUni ws="qvm-x-acl">nación; nacion</AUni> -<AUni ws="qvm-x-akh">nación; nacion</AUni> -<AUni ws="qvm-x-akl">nación; nacion</AUni> -<AUni ws="qvm-x-ame">nación; nacion</AUni> -</Custom> -<AlternateForms> -<objsur guid="e8a43b8e-2b95-4bc7-8d87-b6f726f809ba" t="o" /> -<objsur guid="91ed2bc1-9acd-49f3-8cef-a1fbfa787a73" t="o" /> -<objsur guid="dc4a5eae-77f4-4bfb-a929-102d7c3c2f58" t="o" /> -<objsur guid="253dac9b-8a56-4b3e-9a93-cd70379841be" t="o" /> -<objsur guid="b1dec1a7-00c4-42c1-b35b-0a1960f2c3fc" t="o" /> -<objsur guid="6d36274e-7f3f-437a-93c2-0b24834a482d" t="o" /> -<objsur guid="2ac5d8ae-9262-4e38-aaac-04380a24ddb0" t="o" /> -<objsur guid="9eeae6c5-7920-421c-8d35-c7907d8f1e1a" t="o" /> -<objsur guid="1d85797c-7edf-4d81-9a2c-4be71a248bb6" t="o" /> -<objsur guid="4d951bc2-d057-43d1-8351-d415904eed63" t="o" /> -<objsur guid="35a3855a-00e1-4bc8-8f79-f582531c331a" t="o" /> -<objsur guid="3695aa86-5d49-4813-a911-c6a9470f02ed" t="o" /> -<objsur guid="db1d5e87-9ba3-4e61-9614-9df2e3e02df8" t="o" /> -<objsur guid="9fcc4811-1538-4d95-a3db-cdce22f73c5d" t="o" /> -<objsur guid="1fc69f1d-8a5b-4533-b20b-3e9f0fbf004d" t="o" /> -<objsur guid="f5932650-e1e1-4d5d-9f60-f9fd03184529" t="o" /> -</AlternateForms> -<CitationForm> -<AUni ws="qvm-x-ach">+nación</AUni> -<AUni ws="qvm-x-acl">+nación</AUni> -<AUni ws="qvm-x-akh">+nación</AUni> -<AUni ws="qvm-x-akl">+nación</AUni> -<AUni ws="qvm-x-ame">+nación</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.537" /> -<DateModified val="2022-10-15 14:2:23.922" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="154fff07-52a0-4e5d-8c7a-3b1a88d44b84" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+nación</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="182070a8-884a-46d8-8e14-86d75686fe1f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="23fcb6ab-bfac-42a7-a643-edf7ca90864e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +nación 
\entryTyp root 
\gENG nation 
\gSPN nación 
\e +nación 
\c N0 
\mp +FinalC 
\ach nación / _# 
\ach nacion / ~_# 
\akh nación / _# 
\akh nacion / ~_# 
\acl nación / _# 
\acl nacion / ~_# 
\akl nación / _# 
\akl nacion / ~_# 
\ame nación / _# 
\ame nacion / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2be1f037-ef82-4b65-8f6d-c96df837b009" ownerguid="a3e905b8-107b-4311-bb50-0abe151131b3"> -<ExampleWords> -<AUni ws="en">be allowed, allowable, permissible, acceptable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe something that people are allowed to do?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2be3695b-378a-4592-b101-120790bda6b3" ownerguid="885c5382-cb0d-4bc0-8aa4-c79a75d00cd2"> -<Form> -<AUni ws="qvm-x-ach">jama</AUni> -<AUni ws="qvm-x-acl">jama</AUni> -<AUni ws="qvm-x-akh">jama</AUni> -<AUni ws="qvm-x-akl">jama</AUni> -<AUni ws="qvm-x-ame">hama</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StTxtPara" guid="2be397ad-0921-4bd7-96cc-5f352c2f8f51" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">yarqamun. </Run> -<Run ws="en">\tr < V1 *yarqUv1 > AFAR 3</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="6c34173b-be71-4a88-98fe-ba78babe6492" t="o" /> -<objsur guid="4ef19b53-1b79-4395-950d-74ee4167e789" t="o" /> -</Segments> -</rt> -<rt class="WfiMorphBundle" guid="2be74f1d-905b-4203-a953-587c7c1c0886" ownerguid="61310595-90e0-4e8e-84d1-c6f39b1a65ab"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</Msa> -<Sense> -<objsur guid="2801e582-fd5f-46da-b446-4dd5882c9bda" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="2be7d8cb-9425-427a-9d38-ae8292790b99" ownerguid="69d0a37d-f5b3-48a5-9486-5654d37b030b"> -<ExampleWords> -<AUni ws="en">rice, wheat, maize</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What crops are milled?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2bea0d64-fca6-4864-a4d9-30eeb68fc280"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mapa</AUni> -<AUni ws="qvm-x-acl">mapa</AUni> -<AUni ws="qvm-x-akh">mapa</AUni> -<AUni ws="qvm-x-akl">mapa</AUni> -<AUni ws="qvm-x-ame">mapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mapa</AUni> -<AUni ws="qvm-x-acl">*mapa</AUni> -<AUni ws="qvm-x-akh">*mapa</AUni> -<AUni ws="qvm-x-akl">*mapa</AUni> -<AUni ws="qvm-x-ame">*mapa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.336" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6adeaa4e-d557-476a-9731-6b243fa7c5c5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mapa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9c695b1e-953b-4888-9410-414a87138011" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e1848b28-0b1f-4ecc-b7d7-ea1f6aa6351a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mapa 
\entryTyp root 
\gENG 
\gSPN cuerpo.grasoso 
\e *mapa 
\c N0 
\ach mapa 
\akh mapa 
\acl mapa 
\akl mapa 
\ame mapa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="2bea4b4a-90b3-4a4a-b8ec-a8406aa7a4ea"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cabal</AUni> -<AUni ws="qvm-x-acl">cabal</AUni> -<AUni ws="qvm-x-akh">cabal</AUni> -<AUni ws="qvm-x-akl">cabal</AUni> -<AUni ws="qvm-x-ame">cabal</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cabal</AUni> -<AUni ws="qvm-x-acl">+cabal</AUni> -<AUni ws="qvm-x-akh">+cabal</AUni> -<AUni ws="qvm-x-akl">+cabal</AUni> -<AUni ws="qvm-x-ame">+cabal</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.1" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bb71c3de-c7d6-4aba-af01-2f4bc4a4f6c3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cabal</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4270c4f0-e1b1-448f-8095-8147cb1c2b59" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b30ea4cb-9615-47a2-a171-1adb09d5882d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cabal 
\entryTyp root 
\gENG 
\gSPN derecho 
\e +cabal 
\c R0 
\mp +FinalC 
\ach cabal 
\akh cabal 
\acl cabal 
\akl cabal 
\ame cabal</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="2bef8b66-9d06-4ecf-a6cf-0e664b90dd35"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shinti</AUni> -<AUni ws="qvm-x-acl">shinti; shinti; shinte</AUni> -<AUni ws="qvm-x-akh">shinti</AUni> -<AUni ws="qvm-x-akl">shinti; shinti; shinte</AUni> -<AUni ws="qvm-x-ame">shinti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shinti</AUni> -<AUni ws="qvm-x-acl">*shinti</AUni> -<AUni ws="qvm-x-akh">*shinti</AUni> -<AUni ws="qvm-x-akl">*shinti</AUni> -<AUni ws="qvm-x-ame">*shinti</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.600" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b8110ae7-358a-458f-80f8-d8c38a6a9fb3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shinti</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="65929d64-1bf4-44a1-91f9-7c75bacc05f0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="54fd0ad5-7700-4b28-aaf4-b8cf819573c5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shinti 
\entryTyp root 
\gENG food 
\gSPN comida 
\e *shinti 
\c N0 
\mp +FinalI 
\ach shinti 
\akh shinti 
\acl shinti / _# 
\acl shinti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shinte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shinti / _# 
\akl shinti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shinte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shinti</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="2bf018bf-7b92-4a89-bcd5-0c69c4320a69" ownerguid="0e2004b5-4971-44ef-8270-38efac8e7461"> -<Form> -<AUni ws="qvm-x-ach">puertu; puerto</AUni> -<AUni ws="qvm-x-acl">puertu; puertu; puerto</AUni> -<AUni ws="qvm-x-akh">puertu; puerto</AUni> -<AUni ws="qvm-x-akl">puertu; puertu; puerto</AUni> -<AUni ws="qvm-x-ame">puertu; puerto</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2bf04621-4523-4a66-adfe-5f83390c8b1e" ownerguid="06cc958d-f7c2-4879-a166-719c7da8848a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">jungle</AUni> -<AUni ws="es">selva</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="af579430-9c02-4fff-ab5e-e5365f62963b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="2bf10ffa-0bd6-4c8d-81ea-cfea6ab78e59" ownerguid="0e74ec78-23bd-4fb0-bddb-de094c8347fd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="2bf116b4-8117-4ab7-90f4-63b302e09533" ownerguid="3580bb8b-c0d5-4af8-ac76-7b53f2a50b6b"> -<Form> -<AUni ws="qvm-x-ach">borrächu</AUni> -<AUni ws="qvm-x-acl">borrächu; borrächu; borrächo</AUni> -<AUni ws="qvm-x-akh">borrächu</AUni> -<AUni ws="qvm-x-akl">borrächu; borrächu; borrächo</AUni> -<AUni ws="qvm-x-ame">borrächu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PunctuationForm" guid="2bf37289-6f30-40a1-9957-456b5d26ceb2"> -<Form> -<Str> -<Run ws="en">20</Run> -</Str> -</Form> -</rt> -<rt class="LexExampleSentence" guid="2bf4687d-1ae8-44ef-a4d5-bfcf5f5774de" ownerguid="216fee19-bbaf-4102-a026-60143d38eee1"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Lev 14.37 Wayita ricapacuycashgancho mupalishga verdiyaycagta o pucayaycagta tarerga y tapya pasmaycagta tarerga</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="2bf6e7e9-a3f7-4218-8b39-c37b126e3a85" ownerguid="0a8c55d6-1b79-4cfe-aef5-ac180fa65968"> -<Form> -<AUni ws="qvm-x-ach">útil; ütil</AUni> -<AUni ws="qvm-x-acl">útil; ütil; ütel</AUni> -<AUni ws="qvm-x-akh">útil; ütil</AUni> -<AUni ws="qvm-x-akl">útil; ütil; ütel</AUni> -<AUni ws="qvm-x-ame">útil; ütil</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="2c04fa05-eebf-4331-b392-23f795c32382" ownerguid="b6686c7c-39de-40b5-adee-67fc7dc54374"> -<Abbreviation> -<AUni ws="en">8.1.1.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.559" /> -<DateModified val="2022-9-23 16:55:8.559" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the number one. It appears that every language has a word for 'one' and 'two', but not every language has a word for the numbers higher than two. Many languages have several words that mean 'one'.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">One</AUni> -</Name> -<Questions> -<objsur guid="e14ff0d1-190b-40a2-9190-3bb37901cfd0" t="o" /> -<objsur guid="a9db508e-5624-4f6c-b662-6b8e7765a1ef" t="o" /> -<objsur guid="91eac181-4464-47aa-b6cc-b432097ebedc" t="o" /> -<objsur guid="d5ada2cd-e35e-4778-92dd-ffe0b887914b" t="o" /> -<objsur guid="aa2759b9-382c-4224-8377-5f8f7796cffb" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="457231c8-4eb6-4460-aa45-3e9f2c4e8975" t="r" /> -<objsur guid="4651aef1-e18f-481e-9c3e-d9dfff4a6b51" t="r" /> -<objsur guid="e94a5cf3-1fd4-4b52-902f-bbf0ad6bac2b" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="2c071d8c-555b-40f8-b225-e03adcd13b58"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">amansa</AUni> -<AUni ws="qvm-x-acl">amansa</AUni> -<AUni ws="qvm-x-akh">amansa</AUni> -<AUni ws="qvm-x-akl">amansa</AUni> -<AUni ws="qvm-x-ame">amansa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+amansar</AUni> -<AUni ws="qvm-x-acl">+amansar</AUni> -<AUni ws="qvm-x-akh">+amansar</AUni> -<AUni ws="qvm-x-akl">+amansar</AUni> -<AUni ws="qvm-x-ame">+amansar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.749" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b9e6271f-afac-4860-8169-61212e1a0825" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+amansar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="70e80a7c-53ef-4dc3-942c-4ddb4bd933f6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6a3b7672-4c74-4c6f-8a10-d818481ea06c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +amansar 
\entryTyp root 
\gENG break.in 
\gSPN amansar 
\e +amansar 
\c V1 
\ach amansa 
\akh amansa 
\acl amansa 
\akl amansa 
\ame amansa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="2c077d0e-4c3b-48c1-a65f-74b017f67ade" ownerguid="f7055198-136a-4ef8-9faa-9b1d0bfced5a"> -<Form> -<AUni ws="qvm-x-ach">tashma</AUni> -<AUni ws="qvm-x-acl">tashma</AUni> -<AUni ws="qvm-x-akh">tashma</AUni> -<AUni ws="qvm-x-akl">tashma</AUni> -<AUni ws="qvm-x-ame">tashma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2c0aab81-a82e-424f-ab74-7571776108b4" ownerguid="45e90d41-a462-4671-968f-92166378b3f0"> -<ExampleWords> -<AUni ws="en">remind, jog someone's memory, refresh someone's memory, prompt, be a reminder, reminder</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to reminding someone of something they must do or something they should know?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2c0b0618-90c5-444f-9224-be6e6855c943" ownerguid="52bff85b-cf9a-477e-90d4-b5777500bd79"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">anvil</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7abce009-1635-4003-918e-a3d351898354" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2c0b8817-5517-445e-85d1-1b8fdf1ab789" ownerguid="f1373316-7917-4dca-9d33-c6b520bd4034"> -<ExampleWords> -<AUni ws="en">mechanic, machinist, operator, engineer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who works with machines?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2c0c9b51-b081-4f1c-b8a8-8c474764c906"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wapi</AUni> -<AUni ws="qvm-x-acl">wapi; wape</AUni> -<AUni ws="qvm-x-akh">wapi</AUni> -<AUni ws="qvm-x-akl">wapi; wape</AUni> -<AUni ws="qvm-x-ame">wapi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wapi</AUni> -<AUni ws="qvm-x-acl">*wapi</AUni> -<AUni ws="qvm-x-akh">*wapi</AUni> -<AUni ws="qvm-x-akl">*wapi</AUni> -<AUni ws="qvm-x-ame">*wapi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.493" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="372bb2b3-80fd-4516-b392-e4bb675b3de1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wapi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7a577e72-7de9-43ea-9cb6-b679c52fe556" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="063aa885-b2a1-4938-a4de-33aaa688c7c9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wapi 
\entryTyp root 
\gENG 
\gSPN 
\e *wapi 
\c V1 
\mp +FinalI 
\ach wapi 
\akh wapi 
\acl wapi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wape +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wapi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wape +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wapi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="2c0e4f54-fb2b-455d-84c0-c0b9ed42926f" ownerguid="abbadf39-6727-4a3e-b6cd-c0fa98520d10"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2c1177ca-391a-4890-ac2d-9f24bdb70c04" ownerguid="1de2cef5-3a2d-45c1-8cb6-06b2ac087907"> -<Question> -<AUni ws="en">(11) subsequent: following a reference time in the past.</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="2c143278-3ea0-49c6-9e50-e0bf7c8cf4e2" ownerguid="f76c3803-1c7a-4181-9a87-64ae7231a67d"> -<Abbreviation> -<AUni ws="en">8.5.1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that something is at an indefinite location.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Indefinite location</AUni> -</Name> -<Questions> -<objsur guid="64c6048d-84e9-4594-8587-dd864876f5a9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="2c16d4ab-fd37-4f02-9ee8-ec73ac01d8f2" ownerguid="d1687857-0f1d-4098-affb-b283a6677b6b"> -<ExampleWords> -<AUni ws="en">mostly, mainly, in most cases, most of the time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that something happens or someone does something more than anything else?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2c187ab3-c435-4e5b-bf4f-d097f3e549b1" ownerguid="f234e40b-4277-4970-872f-0654f19fdced"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bean</AUni> -<AUni ws="es">frijól</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7d8084d8-98db-407b-8ce2-f57522f7f362" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="2c1ab268-3b1f-4f5a-b180-6e065dc20729" ownerguid="0eeb062f-1ee4-425b-a2c1-18feb55c4269"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2c1fa9df-09c4-44aa-916e-495ca1ff7d67" ownerguid="fb84538a-17a8-4adc-8d50-e2b66f8e4099"> -<ExampleWords> -<AUni ws="en">toll, statistics</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a number of people or things?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2c20fd4f-c619-4df5-b8e4-6b05e0d395e1" ownerguid="80637c82-f211-4619-adc5-3c6ecda29ff2"> -<Form> -<AUni ws="qvm-x-ach">legitima</AUni> -<AUni ws="qvm-x-acl">legitima</AUni> -<AUni ws="qvm-x-akh">legitima</AUni> -<AUni ws="qvm-x-akl">legitima</AUni> -<AUni ws="qvm-x-ame">legitima</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="2c2114b5-b47c-4755-ac7a-f23e81f592a4" ownerguid="2611b86e-0798-407a-9971-76ffc7ccbc1a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="2c24c135-6ca7-4348-9590-c64a2341cd8a"> -<Analyses> -<objsur guid="8f3ca5ee-a855-4813-aff8-7c1eae13a948" t="o" /> -</Analyses> -<Checksum val="2025244821" /> -<Form> -<AUni ws="qvm-x-akh">japalanna</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="2c25b6db-6d3c-41bc-9e3e-f591cde9e63f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shuqui</AUni> -<AUni ws="qvm-x-acl">shuqui; shuque</AUni> -<AUni ws="qvm-x-akh">shuki</AUni> -<AUni ws="qvm-x-akl">shuki; shuke</AUni> -<AUni ws="qvm-x-ame">shuki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shuki</AUni> -<AUni ws="qvm-x-acl">*shuki</AUni> -<AUni ws="qvm-x-akh">*shuki</AUni> -<AUni ws="qvm-x-akl">*shuki</AUni> -<AUni ws="qvm-x-ame">*shuki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.620" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bfa4f634-83a1-4ebc-bf86-c2b41a8dc173" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shuki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8a9257da-eaf6-4f21-9de6-7452b8d1b129" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="67949e26-4fb9-4520-90dc-4bd05c9b5415" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shuki 
\entryTyp root 
\gENG 
\gSPN 
\e *shuki 
\c V1 
\mp +FinalI 
\ach shuqui 
\akh shuki 
\acl shuqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shuque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shuki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shuke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shuki</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="2c2cd814-0957-4477-901e-e9a2749a48a4" ownerguid="d212adf8-f182-4cab-9708-eb7ea2535c02"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="2c2ce3c4-c613-4962-b183-dbb126e4d34e" ownerguid="399eafc3-827b-4381-b94f-0981d2f465c9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">too.much</AUni> -<AUni ws="es">demasiado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="65b1b094-f462-4915-95d6-041dd9261734" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="2c2d5805-2762-4a00-845d-bdc330d69918"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aypa</AUni> -<AUni ws="qvm-x-acl">aypa</AUni> -<AUni ws="qvm-x-akh">aypa</AUni> -<AUni ws="qvm-x-akl">aypa</AUni> -<AUni ws="qvm-x-ame">aypa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aypa</AUni> -<AUni ws="qvm-x-acl">*aypa</AUni> -<AUni ws="qvm-x-akh">*aypa</AUni> -<AUni ws="qvm-x-akl">*aypa</AUni> -<AUni ws="qvm-x-ame">*aypa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.908" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="97fb3356-ac4c-4e76-98de-10508f8d4b17" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aypa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e44f3378-2517-48f9-a7a0-17d97b0cb2d6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ce32c5be-b887-4d36-893f-2f4a68dc97f5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aypa 
\entryTyp root 
\gENG many 
\gSPN mucho 
\e *aypa 
\c N0 
\ach aypa 
\akh aypa 
\acl aypa 
\akl aypa 
\ame aypa 
\mcc *aypa / ~_ 1P.V GOAL 
\mcc *aypa / _ JUST.V / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="2c2e661f-c1b5-4b27-b05e-a5aa44864cc5" ownerguid="e7c8c42f-0e98-496f-a246-fd4a35bfab99"> -<Form> -<AUni ws="qvm-x-ach">obra</AUni> -<AUni ws="qvm-x-acl">obra</AUni> -<AUni ws="qvm-x-akh">obra</AUni> -<AUni ws="qvm-x-akl">obra</AUni> -<AUni ws="qvm-x-ame">obra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2c2f3072-ead0-4b3b-bff6-d78a4d17cdf4" ownerguid="47b7d210-055d-4652-a536-648f0af21fd9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">canal</AUni> -<AUni ws="es">acequia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b5ce40ab-8536-4c2e-a034-0f537d38ddc3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="2c30400e-7e06-4759-b7e5-3e4b0a7fc24c" ownerguid="847e4e13-d1cf-4d03-982d-e022f9c2bdfa"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">AMO 3.5 Pishgucunapis trampaman cäyin ima micuytapis jitapaptintsiragmi.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="2c320ff6-9728-432a-b83f-be2dbf8e9fb5" ownerguid="d2f516f4-df1c-44f6-8704-76dd52201317"> -<ExampleWords> -<AUni ws="en">foreign, overseas</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something from a foreign country?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="2c322d8b-d762-43ce-b905-aab41f9c7bbb" ownerguid="5e9f361d-17dc-4ada-a312-8da269d22a64"> -<Abbreviation> -<AUni ws="en">1.6.1.1.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.978" /> -<DateModified val="2022-9-23 16:55:7.978" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for bats--flying mammals (phylum Chordata, class Mammalia, order Chiroptera).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Bat</AUni> -</Name> -<Questions> -<objsur guid="0937e972-6c60-4c0d-a6ae-e616f9778831" t="o" /> -<objsur guid="e8eda55b-41e2-4c8a-8f2f-d9a883752a7c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="2c35be4b-bb68-40df-8f3b-2303c45df045" ownerguid="aea88426-5f10-4b18-9364-eee04437c4ee"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mustard</AUni> -<AUni ws="es">mostaza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cf9a69b3-ca1b-476e-8968-8bfbb0b68873" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="2c36f301-2fd3-4ed1-9a82-54bff0bf7593" ownerguid="fa26f731-ad59-4228-bbd9-b0efb196a660"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">room</AUni> -<AUni ws="es">cuarto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9018d38f-6ad7-4c69-bcc3-680613a28ef8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="Text" guid="2c3879be-5223-4ff2-942d-42115dc6615d"> -<Contents> -<objsur guid="7e7e7d3b-029c-417c-9339-ef58ebd0021e" t="o" /> -</Contents> -<DateCreated val="2022-10-20 18:41:20.546" /> -<DateModified val="2022-10-20 20:25:38.255" /> -<Genres> -<objsur guid="c18de718-ea5e-11de-937a-0013722f8dec" t="r" /> -</Genres> -<IsTranslated val="False" /> -<Name> -<AUni ws="en">Words that should fail due to morph lowering</AUni> -</Name> -</rt> -<rt class="CmDomainQ" guid="2c3f5c39-5ad3-445f-bdba-30d55dd3c747" ownerguid="2a2af155-9db9-41c5-860a-fe0a3a09d6de"> -<ExampleWords> -<AUni ws="en">unthinking, unintentional, thoughtless, mindless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to failing to think about what you are doing?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="2c401e7f-6ce9-470f-b6b6-fadf7a798536" ownerguid="f7706644-542f-4fcb-b8e1-e91d04c8032a"> -<Abbreviation> -<AUni ws="en">2.4.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.32" /> -<DateModified val="2022-9-23 16:55:8.32" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to resting.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>23F Tire, Rest</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Rest</AUni> -</Name> -<Questions> -<objsur guid="069591e4-d59c-488f-aa65-53e3ad6955a8" t="o" /> -<objsur guid="6f561d20-0c73-4d72-ba5e-f0948853afe8" t="o" /> -<objsur guid="6c9c745a-cc12-4dc3-8b87-1eab5aea7cd4" t="o" /> -<objsur guid="a561ffe8-4abb-4e33-bfaa-b0a72c29533c" t="o" /> -<objsur guid="e2ce359b-92fd-4109-93cd-670dbdaa4020" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="d502512c-966b-4752-8636-716fb29facfe" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="2c4232f4-aaca-48a0-9037-a28ba6056c1d" ownerguid="cdfc188f-21e6-470e-8e81-be88ec8f431b"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="46895cf3-fcf5-4b03-aaf4-b4383fe38b6c" t="o" /> -<objsur guid="f612a136-42d2-4989-80ea-e12e2aaf3fa7" t="o" /> -<objsur guid="f981be5e-c07d-4b65-8b69-b85c090fcdcb" t="o" /> -<objsur guid="456fddad-4812-4b99-b660-1973d6e53b06" t="o" /> -<objsur guid="ef753713-c8f6-4a3d-8dae-d8f867fa005e" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="2c427245-e60b-4eb8-aacc-3c8dc257c98a" ownerguid="d17a8a67-48d5-42e3-ba64-32708483e536"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">slide/fall</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c7e3e66c-7867-43c2-8153-b04596045bec" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="2c42f822-2079-440c-b3b7-7725b6a8db8b" ownerguid="3f37bb6f-cd32-4430-aa35-700acabbee15"> -<Abbreviation> -<AUni ws="en">8.4.6.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the end of an action or situation.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Stop something</AUni> -</Name> -<Questions> -<objsur guid="e03e32e1-edc9-4e21-824a-7c223f80133e" t="o" /> -<objsur guid="3c50b9b2-b6ba-4997-bb43-277259316291" t="o" /> -<objsur guid="bf6de4f3-9e4a-4e72-8946-1b13107db077" t="o" /> -<objsur guid="cafb2ee2-a44d-4344-b29f-d33034cc5304" t="o" /> -<objsur guid="dfb4604b-ff50-4c33-bd39-623015506149" t="o" /> -<objsur guid="5e6e5d93-f58e-4703-8cc3-b054ca9f74f9" t="o" /> -<objsur guid="59b94361-31b8-4613-ab44-b972000c3c16" t="o" /> -<objsur guid="df18d488-2d3c-425d-9bb3-f1be9b032368" t="o" /> -<objsur guid="f1132ab7-5dd4-44a0-a2a9-e4090b2f54a7" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="2c43985b-0df9-48a8-b742-996549f53c2a" ownerguid="19e731d8-63d8-4491-83d8-5c35ddfd57e9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1bded458-9a0f-4f31-b379-16ee23d40433" t="r" /> -</Morph> -<Msa> -<objsur guid="4867346d-ecb1-40e9-a091-3bc5d299d8a0" t="r" /> -</Msa> -<Sense> -<objsur guid="0c80b2fb-9490-4024-803b-d2336c4bba43" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="2c439f03-3a12-4d6e-9035-ccea75da048b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">propiu; propio</AUni> -<AUni ws="qvm-x-acl">propiu; propiu; propio</AUni> -<AUni ws="qvm-x-akh">propiu; propio</AUni> -<AUni ws="qvm-x-akl">propiu; propiu; propio</AUni> -<AUni ws="qvm-x-ame">propiu; propio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+propio</AUni> -<AUni ws="qvm-x-acl">+propio</AUni> -<AUni ws="qvm-x-akh">+propio</AUni> -<AUni ws="qvm-x-akl">+propio</AUni> -<AUni ws="qvm-x-ame">+propio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.950" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e7e26130-4e6e-4fad-883b-b52250eb87ed" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+propio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7a359b70-1cef-48cf-a4d7-3ef77727adce" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f2eda85d-012f-4dc7-b978-038d940c01c8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +propio 
\entryTyp root 
\gENG 
\gSPN 
\e +propio 
\c N0 
\ach propiu / ~_# 
\ach propio / _# 
\akh propiu / ~_# 
\akh propio / _# 
\acl propiu / ~_# 
\acl propiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl propio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl propiu / ~_# 
\akl propiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl propio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame propiu / ~_# 
\ame propio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="2c4552ce-6cb0-4c34-9525-ac0f62cd6ee8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ro:sa</AUni> -<AUni ws="qvm-x-acl">ro:sa</AUni> -<AUni ws="qvm-x-akh">ro:sa</AUni> -<AUni ws="qvm-x-akl">ro:sa</AUni> -<AUni ws="qvm-x-ame">ro:sa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rosa</AUni> -<AUni ws="qvm-x-acl">+rosa</AUni> -<AUni ws="qvm-x-akh">+rosa</AUni> -<AUni ws="qvm-x-akl">+rosa</AUni> -<AUni ws="qvm-x-ame">+rosa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.378" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b3bb84dd-69bf-477d-93a1-34644776a797" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rosa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aae8b259-db24-4abe-b794-4fd955cafc47" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="44908083-e7f1-4d45-8a34-815b975e2a6a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rosa 
\entryTyp root 
\gENG rose 
\gSPN rosa 
\e +rosa 
\c N0 
\ach ro:sa 
\akh ro:sa 
\acl ro:sa 
\akl ro:sa 
\ame ro:sa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="2c4a21d5-915c-461b-acf5-4b9d12ba5de9" ownerguid="28f61c31-a3e7-41ae-ad26-e69433ad830b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">MRK 1.7 Paypa lanqi watunta paskapänaläpaqpis manami merecïtsu.</Run> -</AStr> -</Example> -</rt> -<rt class="LexExampleSentence" guid="2c4be219-8d6a-4e85-b202-281fc52075f6" ownerguid="7602cc30-22c3-4de0-b593-de4d585b62a1"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 7.20 Llena quillachöragmi cutimonga.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="2c50cc83-b690-47f7-84a7-5a205a4f1293" ownerguid="d01f1c51-522e-4b35-81b3-00577dbfa3bd"> -<ExampleWords> -<AUni ws="en">color-blind</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words describe someone who cannot see color?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2c561345-a734-4b43-9531-b9d4fe4c280a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pichumientu</AUni> -<AUni ws="qvm-x-acl">pichumientu; pichumientu; pichumiento</AUni> -<AUni ws="qvm-x-akh">pichumientu</AUni> -<AUni ws="qvm-x-akl">pichumientu; pichumientu; pichumiento</AUni> -<AUni ws="qvm-x-ame">pichumientu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pitrumientu</AUni> -<AUni ws="qvm-x-acl">+pitrumientu</AUni> -<AUni ws="qvm-x-akh">+pitrumientu</AUni> -<AUni ws="qvm-x-akl">+pitrumientu</AUni> -<AUni ws="qvm-x-ame">+pitrumientu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.871" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aa5c83a2-9fda-42c5-b047-7190883298e3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pitrumientu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="62f4dbb5-05b5-4ab2-8626-13847d75199a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cc53c147-7fad-4bff-81d7-125cd14a409a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pitrumientu 
\entryTyp root 
\gENG 
\gSPN 
\e +pitrumientu 
\c N0 
\ach pichumientu 
\akh pichumientu 
\acl pichumientu / _# 
\acl pichumientu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pichumiento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pichumientu / _# 
\akl pichumientu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pichumiento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pichumientu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="2c571ed8-0c95-46c3-b1cc-b30632c08be8" ownerguid="6335fd7e-0903-4ba6-a248-56d3c7b9471f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rat</AUni> -<AUni ws="es">rata</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3031743a-cc9d-4ded-bd3c-806e158c1388" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="2c576c40-17ae-45a7-9ec8-6c16e02ab9c3" ownerguid="f950b7cc-fb85-4dbb-b8ca-934d38cae7fc"> -<Abbreviation> -<AUni ws="en">9.2.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain to list all clause level conjunctions--conjunctions that join two clauses.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Clause conjunctions</AUni> -</Name> -<Questions> -<objsur guid="8c9429a0-ca6e-4771-9777-dee7839d3cf8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="2c5a7999-c186-4025-a951-ac7e5afea5cb"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Kanan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="2c5ce276-75ea-4fcd-9224-0796162d675e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alwasir</AUni> -<AUni ws="qvm-x-acl">alwasir</AUni> -<AUni ws="qvm-x-akh">alwasir</AUni> -<AUni ws="qvm-x-akl">alwasir</AUni> -<AUni ws="qvm-x-ame">alwasir</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+alguacil</AUni> -<AUni ws="qvm-x-acl">+alguacil</AUni> -<AUni ws="qvm-x-akh">+alguacil</AUni> -<AUni ws="qvm-x-akl">+alguacil</AUni> -<AUni ws="qvm-x-ame">+alguacil</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.729" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d75693e4-21b6-4d15-8397-add81b3042ed" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+alguacil</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="71d13442-06a9-4f20-8f41-48381908011f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9e680670-ab57-419f-87c9-f2a1f77030aa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +alguacil 
\entryTyp root 
\gENG sentry.boys 
\gSPN alguacil 
\e +alguacil 
\c N0 
\mp +assimilated 
\ach alwasir 
\akh alwasir 
\acl alwasir 
\akl alwasir 
\ame alwasir 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="2c6271e2-09a8-4584-82ef-b3dc319d2b29" ownerguid="2b2143d9-f65e-4c32-806b-996a30e7655e"> -<Form> -<AUni ws="qvm-x-ach">agra</AUni> -<AUni ws="qvm-x-acl">agra</AUni> -<AUni ws="qvm-x-akh">aqra</AUni> -<AUni ws="qvm-x-akl">aqra</AUni> -<AUni ws="qvm-x-ame">aqra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="2c62ccfa-0223-449f-87ed-62bba4173897"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alaba</AUni> -<AUni ws="qvm-x-acl">alaba</AUni> -<AUni ws="qvm-x-akh">alaba</AUni> -<AUni ws="qvm-x-akl">alaba</AUni> -<AUni ws="qvm-x-ame">alaba</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+alabar.1</AUni> -<AUni ws="qvm-x-acl">+alabar.1</AUni> -<AUni ws="qvm-x-akh">+alabar.1</AUni> -<AUni ws="qvm-x-akl">+alabar.1</AUni> -<AUni ws="qvm-x-ame">+alabar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.689" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6274f0fd-90c6-4bf0-bfec-612b233303f1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+alabar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="82a9ecc4-ffc6-45c4-b1a7-e384391b6785" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bd74c32f-7d7e-4fd0-ab5b-59670006e70b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +alabar.1 
\entryTyp root 
\gENG praise 
\gSPN alabar 
\e +alabar.1 
\c V2 
\ach alaba 
\akh alaba 
\acl alaba 
\akl alaba 
\ame alaba</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="2c668e7d-116b-4ce6-aa68-9ec0f9bef9bf" ownerguid="d8af8890-8c77-4bbb-920f-4af130da85c8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="bb0cd83d-b40b-4e1e-b663-38ba08b1d207" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">machine</AUni> -<AUni ws="es">máquina</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7f126665-ffc6-4695-86da-712c72e4577a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2c66d52f-1e89-45a2-ba49-a555edfe75a7" ownerguid="31efa8f1-bc4a-4588-aa31-79c4654cf2dc"> -<Form> -<AUni ws="qvm-x-ach">gorushta</AUni> -<AUni ws="qvm-x-acl">gorushta</AUni> -<AUni ws="qvm-x-akh">qorushta</AUni> -<AUni ws="qvm-x-akl">qorushta</AUni> -<AUni ws="qvm-x-ame">qurushta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2c682304-727e-43d6-a691-645a618e2cb0" ownerguid="ab8d8dc9-eeb7-41ff-93a9-cbbd50b89a73"> -<ExampleWords> -<AUni ws="en">can't do something, not be able to do something, cannot, be incapable of, not be capable of, be unable to do something, someone's inability to do something, incompetent, unqualified, unfitted, untrained, not be equipped, be ill-equipped, powerless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a person's inability to do a job?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2c6bcf05-4f1d-4e8a-af5a-0a6792e378fe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ra:na</AUni> -<AUni ws="qvm-x-acl">ra:na</AUni> -<AUni ws="qvm-x-akh">ra:na</AUni> -<AUni ws="qvm-x-akl">ra:na</AUni> -<AUni ws="qvm-x-ame">ra:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rana</AUni> -<AUni ws="qvm-x-acl">+rana</AUni> -<AUni ws="qvm-x-akh">+rana</AUni> -<AUni ws="qvm-x-akl">+rana</AUni> -<AUni ws="qvm-x-ame">+rana</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.256" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="333a6901-b4a8-437c-bb2b-0bf454cbef3d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rana</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e55b9c5f-0d3d-44bd-aeb5-1849f9f15109" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9cac0b96-e71a-4150-a499-a2d8428ea667" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rana 
\entryTyp root 
\gENG frog 
\gSPN rana 
\e +rana 
\c N0 
\ach ra:na 
\akh ra:na 
\acl ra:na 
\akl ra:na 
\ame ra:na 
\i PSA 105.30 Intëru nacionman ränacunami juntargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="2c6e8250-1515-446b-9f97-93ee2d876c6d" ownerguid="0f2ec646-30b7-4fa2-b5e3-59c4845321d9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="2c71c1e6-bbad-42c2-9fc6-4d2378380667" ownerguid="e3ee97a4-fdb0-4a10-a43a-214a74f1f7f8" /> -<rt class="LexSense" guid="2c729fe3-4104-4b5d-9832-66e1e57aeb60" ownerguid="c9084524-56b4-44e2-84c0-6c4294cbf0ea"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gather</AUni> -<AUni ws="es">recoger</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b18717c0-6eb0-4c3b-bf66-ffe5127e3d43" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="2c7433dd-ff3f-45cd-888b-2b1a71d99024" ownerguid="111a4d91-df11-4523-89f2-822b92fd73b7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="2c75276a-1eb3-471c-8f26-a6cb07ced47c" ownerguid="27e765af-1968-4778-96d2-2b0101f69d4c"> -<Form> -<AUni ws="qvm-x-ach">racuy</AUni> -<AUni ws="qvm-x-acl">racuy</AUni> -<AUni ws="qvm-x-akh">rakuy</AUni> -<AUni ws="qvm-x-akl">rakuy</AUni> -<AUni ws="qvm-x-ame">rakuy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="2c7a7290-619e-4703-82cf-b829b9825e3b" ownerguid="2804261d-b8d1-4e39-aef4-b34ddaff6990"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="2c7bd9de-cf7b-4b60-9521-e237cffb1c6e" ownerguid="4b36e29e-c7e0-4b62-8b9f-1564aff4be75"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="2c7cb499-562d-4b42-8f26-e3317e0f4c69"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">milu</AUni> -<AUni ws="qvm-x-acl">milu; milo</AUni> -<AUni ws="qvm-x-akh">milu</AUni> -<AUni ws="qvm-x-akl">milu; milo</AUni> -<AUni ws="qvm-x-ame">milu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*millu.v</AUni> -<AUni ws="qvm-x-acl">*millu.v</AUni> -<AUni ws="qvm-x-akh">*millu.v</AUni> -<AUni ws="qvm-x-akl">*millu.v</AUni> -<AUni ws="qvm-x-ame">*millu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.436" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9a5455af-ab0e-450d-a3e8-291786b8d888" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*millu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b20fa758-fe17-43d6-bdf2-528ee8706e9a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="43a1301a-3ecd-4a1d-ac86-fa7a90148b5c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *millu.v 
\entryTyp root 
\gENG wind 
\gSPN dar.cuerda 
\e *millu.v 
\c V2 
\ach milu 
\akh milu 
\acl milu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl milo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl milu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl milo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame milu 
\i Tagay jipash miluycachanmi.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="2c80b148-d950-42f3-bd9f-c2202aefc0be" ownerguid="d16e4de3-696d-4414-82cf-fec2568fefeb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2c843c2d-7825-4412-a949-1f56791d1ee2" ownerguid="bc9d763c-e4fe-48ab-ad44-87a36f6cc06f"> -<ExampleWords> -<AUni ws="en">find fault with, pick holes in, knock, run down, denigrate, put down, get at</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to criticizing someone in an unfair way?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2c85b91b-199a-4480-8106-42960abafc84" ownerguid="6430b89c-7077-418a-a558-51f0e3f2c1a6"> -<ExampleWords> -<AUni ws="en">lug, haul, cart</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to carrying something very heavy?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2c8ae99c-06f1-4c12-95ba-37a825918c0d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lanzade:ra</AUni> -<AUni ws="qvm-x-acl">lanzade:ra</AUni> -<AUni ws="qvm-x-akh">lanzade:ra</AUni> -<AUni ws="qvm-x-akl">lanzade:ra</AUni> -<AUni ws="qvm-x-ame">lanzade:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lanzadera</AUni> -<AUni ws="qvm-x-acl">+lanzadera</AUni> -<AUni ws="qvm-x-akh">+lanzadera</AUni> -<AUni ws="qvm-x-akl">+lanzadera</AUni> -<AUni ws="qvm-x-ame">+lanzadera</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.510" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="30c137a5-1541-42e3-9695-08dfff2c0cff" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lanzadera</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0dc306d8-5107-4af8-8cfc-4bded357a1d3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8af43f48-e883-435a-8de5-26175fbbae18" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lanzadera 
\entryTyp root 
\gENG 
\gSPN 
\e +lanzadera 
\c N0 
\ach lanzade:ra 
\akh lanzade:ra 
\acl lanzade:ra 
\akl lanzade:ra 
\ame lanzade:ra 
\i JOB 7.6 Nogapa vïdä caycan telarcho awag runa lansadërata rasla pasatsegnogmi.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="2c8b8807-759f-455f-b8dd-7f48f1723da0" ownerguid="717fc03c-3d1e-47c0-914f-d78cf37926e7"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="2c8d9971-fe96-418a-a8ee-f176f542080f" ownerguid="3f7eb622-ecbd-47fc-9e94-b00397ba7fd3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="6ab55b88-9407-46a8-9a43-5f9a34e09174" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="0903d905-2a1b-4bc9-894a-07fcbc6fc0aa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2c905295-6aae-49c8-80ef-eac0dcb8efb0" ownerguid="354216f5-0435-4252-8ac9-55c718c2c6a9"> -<Form> -<AUni ws="qvm-x-ach">ulta</AUni> -<AUni ws="qvm-x-acl">ulta</AUni> -<AUni ws="qvm-x-akh">ulta</AUni> -<AUni ws="qvm-x-akl">ulta</AUni> -<AUni ws="qvm-x-ame">ulta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2c92fd5c-4435-45e4-9230-15437a8851f9" ownerguid="430ce279-1464-4d55-8483-5525a3c3094d"> -<ExampleWords> -<AUni ws="en">servant, manservant, maidservant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a servant?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2c93feb7-bc12-4af1-ba38-a8c8bb5f1b77" ownerguid="4bfe53d2-fb85-4397-98a8-97d59b907064"> -<ExampleWords> -<AUni ws="en">ship, boat, canoe, raft, life raft, lifeboat, ship's boat, surfboard, submarine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What types of boats are there?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2c944b55-73bf-42b4-b951-04eb7d08b483" ownerguid="7e286ec9-c553-4ec2-8194-b7ccf77f5491"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="2c94543b-5cb4-4632-834c-85af647fe53e" ownerguid="1d5e2962-0937-472e-84fb-c584fa3f5636"> -<Form> -<AUni ws="qvm-x-ach">afana</AUni> -<AUni ws="qvm-x-acl">afana</AUni> -<AUni ws="qvm-x-akh">afana</AUni> -<AUni ws="qvm-x-akl">afana</AUni> -<AUni ws="qvm-x-ame">afana</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="2c96d9ad-62d9-47eb-b44a-060e3f497217"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">muntu</AUni> -<AUni ws="qvm-x-acl">muntu; munto</AUni> -<AUni ws="qvm-x-akh">muntu</AUni> -<AUni ws="qvm-x-akl">muntu; munto</AUni> -<AUni ws="qvm-x-ame">muntu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*muntu</AUni> -<AUni ws="qvm-x-acl">*muntu</AUni> -<AUni ws="qvm-x-akh">*muntu</AUni> -<AUni ws="qvm-x-akl">*muntu</AUni> -<AUni ws="qvm-x-ame">*muntu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.497" /> -<DateModified val="2022-10-10 21:18:47.203" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f9d91f2d-20d9-499d-b8ec-0b04a6c0381f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*muntu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="97b6a68e-54f2-4e93-a6da-fa516a8aa206" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9a756508-f1c3-4c22-9049-04a801f14687" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *muntu 
\entryTyp root 
\gENG 
\gSPN 
\e *muntu 
\c V1 
\ach muntu 
\akh muntu 
\acl muntu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl munto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl muntu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl munto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame muntu 
\mcc *muntu / ~_ 3</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2c981f79-84e6-4daf-a94c-7d6488f36d8a" ownerguid="99b5b80a-a2d6-4820-adfc-1da72528c272"> -<ExampleWords> -<AUni ws="en">overlap</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words indicate that a part of one thing is the same as part of something else?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2c985b42-b821-42f8-949c-580107a2b8f2" ownerguid="1e06fc23-60cd-44a0-9fa5-bdf756101db2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="0caeb26f-fa43-4d87-9741-a6c071cf63d6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2c988c2b-3119-4df3-bcf7-3e928237d9d7" ownerguid="586ff3ab-1bb6-4d14-8340-7fed4aa347e4"> -<Form> -<AUni ws="qvm-x-ach">döci; döci</AUni> -<AUni ws="qvm-x-acl">döci; döci; döce</AUni> -<AUni ws="qvm-x-akh">döci; döci</AUni> -<AUni ws="qvm-x-akl">döci; döci; döce</AUni> -<AUni ws="qvm-x-ame">döci; döci</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="2c98b8eb-4934-48ad-92fb-3dbd05a7d844" ownerguid="6da91360-4cf5-44e6-a474-97972221ea79"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="2ca02ddc-1749-4622-b561-0eed8981fb87" ownerguid="07c7a2d3-fdae-4f12-a914-d3d4e0ae1835"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ZEC 11.16 Tsay mitsikuqqa shumaq mitsinanpa trukanqa wera weranlanta mikurmi shillulantana jitarinqa</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="2ca40224-3c99-4a5b-8410-42a66c7aabd4" ownerguid="768aed05-dbc9-4caf-9461-76cb3720f908"> -<ExampleWords> -<AUni ws="en">backache, earache, headache, migraine, stomachache, toothache, labor pains, sore throat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to pain in a particular part of your body?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2ca409d7-6e1a-48bc-99bf-fc2054475015" ownerguid="23b1a6b4-8d91-425c-b8c2-52d06b1c1d23"> -<ExampleWords> -<AUni ws="en">break into pieces, smash, crush, pulverize, atomize</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to breaking something into many small pieces?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2ca6a2af-ce13-44c8-94f1-86580b261d25" ownerguid="264dd51d-bbaa-4563-9db6-21c946fdca88"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.trade</AUni> -<AUni ws="es">cambiar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="651f7f7b-2eb0-49d1-9e19-bfa78e024e29" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="2cad92d8-cf01-41af-9add-ff34fe0660c6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ranchi</AUni> -<AUni ws="qvm-x-acl">ranchi; ranchi; ranche</AUni> -<AUni ws="qvm-x-akh">ranchi</AUni> -<AUni ws="qvm-x-akl">ranchi; ranchi; ranche</AUni> -<AUni ws="qvm-x-ame">ranchi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rantri</AUni> -<AUni ws="qvm-x-acl">*rantri</AUni> -<AUni ws="qvm-x-akh">*rantri</AUni> -<AUni ws="qvm-x-akl">*rantri</AUni> -<AUni ws="qvm-x-ame">*rantri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.256" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="39a14bfa-a5e4-4f4a-81a1-dd2395e87580" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rantri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="37dca8b0-7906-4f99-99e5-dee678ad19e6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4178b348-8672-4f91-9206-d774920c9a71" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rantri 
\entryTyp root 
\gENG yellow.corn 
\gSPN maíz.amarillo 
\e *rantri 
\c N0 
\mp +FinalI 
\ach ranchi 
\akh ranchi 
\acl ranchi / _# 
\acl ranchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ranche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ranchi / _# 
\akl ranchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ranche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ranchi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="2cb1c6f5-06d2-4c1c-9987-28f5b62dd370" ownerguid="00a13013-72ac-4a52-a4fa-9f65210728c9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">crush</AUni> -<AUni ws="es">amollar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a4ff4988-38de-4537-b332-9661d49600d4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2cb2f337-85ad-4a25-b2b9-414d4a86afed" ownerguid="6105a207-4311-4920-8c19-63259424bfaf"> -<ExampleWords> -<AUni ws="en">save, salvation, sanctify, redeem, justify, regenerate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to what God does to save a person?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2cb38051-cb13-482b-9ac1-0d4eb2145410"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fi:lu</AUni> -<AUni ws="qvm-x-acl">fi:lu; fi:lu; fi:lo</AUni> -<AUni ws="qvm-x-akh">fi:lu</AUni> -<AUni ws="qvm-x-akl">fi:lu; fi:lu; fi:lo</AUni> -<AUni ws="qvm-x-ame">fi:lu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+filo</AUni> -<AUni ws="qvm-x-acl">+filo</AUni> -<AUni ws="qvm-x-akh">+filo</AUni> -<AUni ws="qvm-x-akl">+filo</AUni> -<AUni ws="qvm-x-ame">+filo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.556" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5dede794-7b4e-42ba-9937-f561a1018d3c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+filo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c0ecce91-f94c-421f-8419-8bece4bc3a48" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cb806c3c-2219-474e-8cb7-875357e338dc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +filo 
\entryTyp root 
\gENG sharp 
\gSPN filo 
\e +filo 
\c N0 
\ach fi:lu 
\akh fi:lu 
\acl fi:lu / _# 
\acl fi:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl fi:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl fi:lu / _# 
\akl fi:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl fi:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame fi:lu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="2cb761cb-ba96-4a2e-a0b9-b6d39fe1054e"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">desgraciapis</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="2cb7ba38-be8e-4f01-8801-0bbded208392" ownerguid="b1ac5179-f888-4fb1-a8ba-b108e78acca8"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="2cb7f63b-dd59-43f6-a8cc-f4aff09d3eec"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wala; wala:</AUni> -<AUni ws="qvm-x-acl">wala; wala:</AUni> -<AUni ws="qvm-x-akh">wala; wala:</AUni> -<AUni ws="qvm-x-akl">wala; wala:</AUni> -<AUni ws="qvm-x-ame">wala; wala:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*walla:</AUni> -<AUni ws="qvm-x-acl">*walla:</AUni> -<AUni ws="qvm-x-akh">*walla:</AUni> -<AUni ws="qvm-x-akl">*walla:</AUni> -<AUni ws="qvm-x-ame">*walla:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.452" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6abe3999-5ea5-4a36-88f7-a2400f5c0939" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*walla:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f0c9f0dd-583e-4373-bb7f-6da776a95aaf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="31d5e786-10d6-439a-8919-3324fb51bfb4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *walla: 
\entryTyp root 
\gENG in.vain 
\gSPN en.vano 
\e *walla: 
\c N0 
\mp +FinalC 
\mp +underlong 
\ach wala foreshortened 
\ach wala: 
\akh wala foreshortened 
\akh wala: 
\acl wala foreshortened 
\acl wala: 
\akl wala foreshortened 
\akl wala: 
\ame wala foreshortened 
\ame wala: 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="2cb96ed7-f686-4749-b7a5-028396b96019"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lámpara; lampara</AUni> -<AUni ws="qvm-x-acl">lámpara; lampara</AUni> -<AUni ws="qvm-x-akh">lámpara; lampara</AUni> -<AUni ws="qvm-x-akl">lámpara; lampara</AUni> -<AUni ws="qvm-x-ame">lámpara; lampara</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lámpara</AUni> -<AUni ws="qvm-x-acl">+lámpara</AUni> -<AUni ws="qvm-x-akh">+lámpara</AUni> -<AUni ws="qvm-x-akl">+lámpara</AUni> -<AUni ws="qvm-x-ame">+lámpara</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.63" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d779f2b2-c363-4e6e-a859-a9922448bca6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lámpara</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1344baaf-71cf-4b7e-af83-727e7bb88373" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e63ae5a6-beaf-4d84-86b1-b882db667ea4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lámpara 
\entryTyp root 
\gENG lamp 
\gSPN lámpara 
\e +lámpara 
\c N0 
\ach lámpara / _# 
\ach lampara / ~_# 
\akh lámpara / _# 
\akh lampara / ~_# 
\acl lámpara / _# 
\acl lampara / ~_# 
\akl lámpara / _# 
\akl lampara / ~_# 
\ame lámpara / _# 
\ame lampara / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="2cb9c97e-cd67-48ae-a5ea-bcef7746ae11" ownerguid="65aae10b-bc67-4198-9942-e150e7f50f7c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">piece</AUni> -<AUni ws="es">pieza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e4e3c7d7-fdaf-455e-84f5-4ef63c04f98c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="2cc059e7-dc71-49e5-a67d-a417245ae4e5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guemapa</AUni> -<AUni ws="qvm-x-acl">guemapa</AUni> -<AUni ws="qvm-x-akh">qemapa</AUni> -<AUni ws="qvm-x-akl">qemapa</AUni> -<AUni ws="qvm-x-ame">qimapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qimapa</AUni> -<AUni ws="qvm-x-acl">*qimapa</AUni> -<AUni ws="qvm-x-akh">*qimapa</AUni> -<AUni ws="qvm-x-akl">*qimapa</AUni> -<AUni ws="qvm-x-ame">*qimapa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.183" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eeafbde1-35bf-484b-bb5b-465e755b2d59" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qimapa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d93a3aef-6104-4ae3-a0f5-bbf2b7061420" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4e7c9f3e-a517-4ed4-804a-9b923595c204" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qimapa 
\entryTyp root 
\gENG 
\gSPN 
\e *qimapa 
\c N0 
\ach guemapa 
\akh qemapa 
\acl guemapa 
\akl qemapa 
\ame qimapa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="2cc2c2e5-96d9-4e2b-a5a9-bee3cbc012ca" ownerguid="a98c1553-69e2-4620-9a5e-8c027b96520e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="2cc624fa-76cb-46ab-87c8-c13c6adb1c72" ownerguid="fcd22c85-7ee1-4d31-8633-9dbd32344211"> -<Abbreviation> -<AUni ws="en">7.2.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to moving away from the speaker. In Australian languages many movement words are marked for direction toward or away from the speaker.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Go</AUni> -</Name> -<Questions> -<objsur guid="41ea267d-b914-4019-8762-9005f1fc7ca7" t="o" /> -<objsur guid="4a49f2c4-3af3-4d11-862f-4027b0668be7" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="aa8d812b-7c13-414a-ad02-a4240d2cef68" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="2cc6c5da-9460-424c-924a-29c538c4be00" ownerguid="e7766633-cdbd-4a60-a8d7-c4de9089f605"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">do.half</AUni> -<AUni ws="es">hacer.mitad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5071c920-b3ca-43dc-be62-39129f73a247" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="2ccab97a-fb98-4054-a29b-e5ceac8ca1b4" ownerguid="b9c752a4-66be-493c-8955-cfa5324a54c1"> -<Abbreviation> -<AUni ws="en">4.9.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.296" /> -<DateModified val="2022-9-23 16:55:8.296" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for personal expressions of devotion to God, in whatever ways the religion defines and expresses it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>53G Worship, Reverence</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Worship</AUni> -</Name> -<Questions> -<objsur guid="365f692c-e1fe-4713-a23e-f9c01bf97e11" t="o" /> -<objsur guid="729c9a97-a220-443b-9f23-a046e8e9f84d" t="o" /> -<objsur guid="f6bc06da-a69f-4895-bf16-2f650bfb19f7" t="o" /> -<objsur guid="31caca70-7665-478c-94c6-e070c3e7ed87" t="o" /> -<objsur guid="b8eecdd6-e055-4109-971d-5d9bc10368ac" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="2ccb2c45-7b0c-466e-8390-7e99425b78bc" ownerguid="d507ebb9-6fd7-4598-82c0-4f947d1e637e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="593d5292-7683-45d7-99a5-c0b744c09242" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">dare</AUni> -<AUni ws="es">desafiar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1bcc5f9c-0461-46e6-9e52-6c69941edbb3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="2ccbca8d-4cbb-49fa-ab8f-ff9b3e874ecf" ownerguid="1f35e65f-3896-490f-adae-33d6f5bf66f9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">?</AUni> -<AUni ws="es">comino</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="125ec8a5-7f85-4e68-9047-d0a5a0bbf67f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="2cccfd92-de45-42c2-83f7-1e0ef7dfddc1" ownerguid="06a44085-cbcf-4217-ae5e-56c51899c99a"> -<Abbreviation> -<AUni ws="en">8.3.5.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.619" /> -<DateModified val="2022-9-23 16:55:8.619" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is unique--not like anything else.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>58G Distinctive, Unique</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Unique</AUni> -</Name> -<Questions> -<objsur guid="bc6b6484-99cd-4951-ac3d-8d827ee473f7" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="2cce71bb-e093-496f-ae46-287be3547e00" ownerguid="970a70bf-bb15-4f18-92f0-8cc9d4c5b9cb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="375b7926-fa74-44a9-a11e-e54bc287b376" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="2ccf76d1-7700-4a6b-b4b7-2e6492c51791"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wa:ji</AUni> -<AUni ws="qvm-x-acl">wa:ji; wa:ji; wa:je</AUni> -<AUni ws="qvm-x-akh">wa:ji</AUni> -<AUni ws="qvm-x-akl">wa:ji; wa:ji; wa:je</AUni> -<AUni ws="qvm-x-ame">wa:hi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wa:ji</AUni> -<AUni ws="qvm-x-acl">*wa:ji</AUni> -<AUni ws="qvm-x-akh">*wa:ji</AUni> -<AUni ws="qvm-x-akl">*wa:ji</AUni> -<AUni ws="qvm-x-ame">*wa:ji</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.434" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="76fd3868-3f06-4f3f-8cfa-0a3fef55b67f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wa:ji</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3785b47d-8b2e-46bb-9823-a2bc88deece4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0a7bfd3f-f601-43ba-bb3a-a74421e00cd4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wa:ji 
\entryTyp root 
\gENG reciprocity 
\gSPN reciprocidad 
\e *wa:ji 
\c N0 
\mp +FinalI 
\ach wa:ji 
\akh wa:ji 
\acl wa:ji / _# 
\acl wa:ji +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wa:je +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wa:ji / _# 
\akl wa:ji +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl wa:je +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wa:hi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="2cd48908-8f12-4e0f-a22e-87237618ce9f" ownerguid="85214614-ab45-4805-9014-092750d47511"> -<Abbreviation> -<AUni ws="en">4.7.5.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to vindicating someone--to prove that someone is innocent of an accusation made against them.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Vindicate</AUni> -</Name> -<Questions> -<objsur guid="00f24232-d84e-42d0-b378-eac3897323c6" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="2cda2a08-8c83-440b-83ee-41590737da66" ownerguid="dc5efcfb-dc41-4af4-9357-5eb7c6578708"> -<Form> -<AUni ws="qvm-x-ach">nana; nanä</AUni> -<AUni ws="qvm-x-acl">nana; nanä</AUni> -<AUni ws="qvm-x-akh">nana; nanä</AUni> -<AUni ws="qvm-x-akl">nana; nanä</AUni> -<AUni ws="qvm-x-ame">nana; nanä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2cde4242-ccd0-4400-a2ee-19f5f5aab465" ownerguid="5d21b3f1-85d5-4999-af64-c4d0101050c0"> -<ExampleWords> -<AUni ws="en">to humble someone, humiliate, debase</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to one person causing another to be humble?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2ce1e385-a5c5-418b-9f9f-6d9cc44d0ed6" ownerguid="c945146a-76bc-4f4b-baad-3884292eb7bc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ADV3</AUni> -<AUni ws="es">ADV3</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7a075486-8619-4e92-af0d-d5a8ab8fe18e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2ce23e01-1b67-447f-8590-cc9f5af74090" ownerguid="8f2fb60a-ff21-435a-a9d4-f579c5d7e851"> -<Form> -<AUni ws="qvm-x-ach">arash</AUni> -<AUni ws="qvm-x-acl">arash</AUni> -<AUni ws="qvm-x-akh">arash</AUni> -<AUni ws="qvm-x-akl">arash</AUni> -<AUni ws="qvm-x-ame">arash</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2ce66da1-919f-4b5a-b882-05db8b566d54" ownerguid="100c4fd3-744d-4964-a885-00afa91af0c6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wallow</AUni> -<AUni ws="es">revolcar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="57731423-7fa1-4db7-bbec-33e18eb2c698" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2ce74186-9494-40b5-a150-3b8066da4c12" ownerguid="de6dce89-f1d7-4bba-8c9f-4067f9cacc1d"> -<Form> -<AUni ws="qvm-x-ach">serina</AUni> -<AUni ws="qvm-x-acl">serina</AUni> -<AUni ws="qvm-x-akh">serina</AUni> -<AUni ws="qvm-x-akl">serina</AUni> -<AUni ws="qvm-x-ame">serina</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="2ced01c9-7b41-4d56-a6e8-37a803fee055" ownerguid="62352a5a-c18b-4ffe-acdd-75b7b6afff6b"> -<Form> -<AUni ws="qvm-x-ach">encarga</AUni> -<AUni ws="qvm-x-acl">encarga</AUni> -<AUni ws="qvm-x-akh">encarga</AUni> -<AUni ws="qvm-x-akl">encarga</AUni> -<AUni ws="qvm-x-ame">encarga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2ced3144-ce52-42bd-8fda-e7d9a7e305d8" ownerguid="09a91a89-1936-4bc3-bca0-5206a35f67cd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shrink</AUni> -<AUni ws="es">encogerse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f350805b-9fc6-4598-8c82-75c9f8b8656c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="2cee0d5b-86bd-4cee-b1eb-781af915a9ce"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">perga</AUni> -<AUni ws="qvm-x-acl">perga</AUni> -<AUni ws="qvm-x-akh">perqa</AUni> -<AUni ws="qvm-x-akl">perqa</AUni> -<AUni ws="qvm-x-ame">pirqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pirqa.n</AUni> -<AUni ws="qvm-x-acl">*pirqa.n</AUni> -<AUni ws="qvm-x-akh">*pirqa.n</AUni> -<AUni ws="qvm-x-akl">*pirqa.n</AUni> -<AUni ws="qvm-x-ame">*pirqa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.850" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6d37b2bd-9e2a-40a4-adf3-62a7cece6fc2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pirqa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="04cf3262-fd40-47c8-ad21-52f6c2546c4d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a5822b96-a849-4b28-8dd1-48ea51613cc7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pirqa.n 
\entryTyp root 
\gENG stone.wall 
\gSPN muralla 
\e *pirqa.n 
\c N0 
\ach perga 
\akh perqa 
\acl perga 
\akl perqa 
\ame pirqa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2ceeb3e5-742c-4908-a79e-54e70483bfe5" ownerguid="9d6cbe74-93d6-41fb-b7e2-cc30adb28187"> -<ExampleWords> -<AUni ws="en">climb, scale, clamber, shin up, shinny up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to climbing?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2cf279c1-3d44-4888-a902-59ab340a39df" ownerguid="d9b1216f-1802-4aee-b08b-4158c3398bb3"> -<Form> -<AUni ws="qvm-x-ach">plomäda</AUni> -<AUni ws="qvm-x-acl">plomäda</AUni> -<AUni ws="qvm-x-akh">plomäda</AUni> -<AUni ws="qvm-x-akl">plomäda</AUni> -<AUni ws="qvm-x-ame">plomäda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2cf2c3e6-fea3-4b3d-95bf-a252cc309a7a" ownerguid="a5ba96ff-77b0-49c5-b1a8-bf8f13879627"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pregnant</AUni> -<AUni ws="es">embarazada</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="608c4cf8-251b-4417-8976-50c6bb4870ce" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2cf2cabf-0598-4763-8036-ec6b2c0b99be" ownerguid="ec0455d5-4578-45c7-bd7d-8aa6b3a8da42"> -<Form> -<AUni ws="qvm-x-ach">yanta</AUni> -<AUni ws="qvm-x-acl">yanta</AUni> -<AUni ws="qvm-x-akh">yanta</AUni> -<AUni ws="qvm-x-akl">yanta</AUni> -<AUni ws="qvm-x-ame">yanta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="2cf7adf9-116e-472c-ae7a-c69e92289886" ownerguid="8a337ef9-c767-4521-a209-d5a6f9a76e90"> -<Form> -<AUni ws="qvm-x-ach">wicsu</AUni> -<AUni ws="qvm-x-acl">wicsu; wicso</AUni> -<AUni ws="qvm-x-akh">wiksu</AUni> -<AUni ws="qvm-x-akl">wiksu; wikso</AUni> -<AUni ws="qvm-x-ame">wiksu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="2cf86171-527b-4f94-b45a-b90279c21e4b" ownerguid="51e29e8e-e7e3-4064-8813-1415766701a1"> -<Form> -<AUni ws="qvm-x-ach">evangeliu; evangelio</AUni> -<AUni ws="qvm-x-acl">evangeliu; evangeliu; evangelio</AUni> -<AUni ws="qvm-x-akh">evangeliu; evangelio</AUni> -<AUni ws="qvm-x-akl">evangeliu; evangeliu; evangelio</AUni> -<AUni ws="qvm-x-ame">evangeliu; evangelio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="2cf8708a-de3b-4368-8d9f-e1239494fd5a" ownerguid="2704b55f-0dfc-45fd-80c9-0ff8c12f8604"> -<Form> -<AUni ws="qvm-x-ach">chompa</AUni> -<AUni ws="qvm-x-acl">chompa</AUni> -<AUni ws="qvm-x-akh">chompa</AUni> -<AUni ws="qvm-x-akl">chompa</AUni> -<AUni ws="qvm-x-ame">chompa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="2cf9cb1a-7ce2-42ad-b6f2-21335549cbdf" ownerguid="2a42bdae-8ce6-4b08-84f4-7d1cc3487d27"> -<Form> -<AUni ws="qvm-x-ach">corral</AUni> -<AUni ws="qvm-x-acl">corral</AUni> -<AUni ws="qvm-x-akh">corral</AUni> -<AUni ws="qvm-x-akl">corral</AUni> -<AUni ws="qvm-x-ame">corral</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="2d00f099-e49a-4122-9bc4-bf3ce310a326" ownerguid="097c4430-fda8-4a6d-8886-df2ded026dc6"> -<Form> -<AUni ws="qvm-x-ach">tuta</AUni> -<AUni ws="qvm-x-acl">tuta</AUni> -<AUni ws="qvm-x-akh">tuta</AUni> -<AUni ws="qvm-x-akl">tuta</AUni> -<AUni ws="qvm-x-ame">tuta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2d050800-b636-486b-b29a-941116d2bb3e" ownerguid="b553e989-2b2a-4b1e-a987-ae75f3862501"> -<ExampleWords> -<AUni ws="en">for all I care, who cares?, so what?, not my problem, not my concern, that's your problem, that's your lookout, tough!</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What do people say when they don't care?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2d05d266-1787-4020-b7f7-d91cdc3dae23" ownerguid="99231692-d761-4fa7-bd41-1748534dfaf0"> -<Form> -<AUni ws="qvm-x-ach">ishpani</AUni> -<AUni ws="qvm-x-acl">ishpani; ishpani; ishpane</AUni> -<AUni ws="qvm-x-akh">ishpani</AUni> -<AUni ws="qvm-x-akl">ishpani; ishpani; ishpane</AUni> -<AUni ws="qvm-x-ame">ishpani</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2d062841-920b-4872-92bd-46ac5b36e67e" ownerguid="b93bdfa4-486c-44a0-8266-557ccdc78b31"> -<ExampleWords> -<AUni ws="en">crackle, pop, hiss, roar of the flames</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What sounds do fires make?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2d096be9-3dc8-4622-81fc-9cd439494f6f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ranti</AUni> -<AUni ws="qvm-x-acl">ranti; rante</AUni> -<AUni ws="qvm-x-akh">ranti</AUni> -<AUni ws="qvm-x-akl">ranti; rante</AUni> -<AUni ws="qvm-x-ame">ranti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ranti</AUni> -<AUni ws="qvm-x-acl">*ranti</AUni> -<AUni ws="qvm-x-akh">*ranti</AUni> -<AUni ws="qvm-x-akl">*ranti</AUni> -<AUni ws="qvm-x-ame">*ranti</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.256" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="01713dd5-7367-4397-a6c6-5c0659dcd289" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ranti</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0962b890-97ef-4c05-af34-6e94ee0c1224" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e280b04b-b35a-4226-bf97-965331fbc695" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ranti 
\entryTyp root 
\gENG buy 
\gSPN comprar 
\e *ranti 
\c V2 
\mp +FinalI 
\ach ranti 
\akh ranti 
\acl ranti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl rante +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ranti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rante +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ranti</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2d0b030b-05af-48de-ac2a-ada5c29fe31d" ownerguid="fc82fcec-d03c-4fb0-bf62-714c71754402"> -<ExampleWords> -<AUni ws="en">menopause</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the time when a woman can no longer become pregnant?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2d0b209f-044d-4e3e-923d-50c58cde9b2a" ownerguid="21083632-77f8-4c64-b957-34c04bce47f4"> -<Form> -<AUni ws="qvm-x-ach">iscupullu</AUni> -<AUni ws="qvm-x-acl">iscupullu; iscupullu; iscupullo</AUni> -<AUni ws="qvm-x-akh">iskupullu</AUni> -<AUni ws="qvm-x-akl">iskupullu; iskupullu; iskupullo</AUni> -<AUni ws="qvm-x-ame">iskupullu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="2d0b3058-d8bb-4110-a54a-e507b0d3a0e4" ownerguid="4c862416-f7c4-4a3c-82ac-fe81e1efb879"> -<Abbreviation> -<AUni ws="en">2.1.8.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for functions of the heart and blood veins.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Heart</AUni> -</Name> -<Questions> -<objsur guid="f88029a0-62c6-48f1-99b8-37c1f992de49" t="o" /> -<objsur guid="e6bcf776-ce9b-4b9b-a93f-98aa34dd673a" t="o" /> -<objsur guid="ce231ebf-c3b4-42a2-99e1-27088fa0bb84" t="o" /> -<objsur guid="4bc98110-088d-476e-9a8c-23d0885d34ad" t="o" /> -<objsur guid="08c6f2bf-76ee-42f0-9563-d71903ded7d7" t="o" /> -<objsur guid="59f59588-b682-4cc9-85c8-5c1159fc0c0e" t="o" /> -<objsur guid="80945422-0e2e-479c-bf0d-b0e66d182e7f" t="o" /> -<objsur guid="bbecdc46-eaf3-4073-8224-eecc6cf20442" t="o" /> -<objsur guid="c63af925-af2c-41a2-978b-ec111473297c" t="o" /> -<objsur guid="909a3a5c-1e72-4582-a224-59925876200d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="2d0b59fb-b2a8-4b15-9413-ac41b8af1581" ownerguid="cb99a086-8c6d-4f90-81db-6afa69ae5455"> -<ExampleWords> -<AUni ws="en">sing, song, cry, call, birdcall, birdsong, caw (crow), chatter, cheep, chirp, coo (dove), gaggle, gobble (turkey), honk (goose), hoot (owl), peep, quack (duck), screech, squawk, trill, trumpet, tweet, twitter, warble, whir, whistle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What sounds do birds make?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="2d0f45f3-2471-4d69-9429-76c51a12e2a8" ownerguid="d80eed43-f599-44bf-8256-1cda94aac2ee"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="0b3ee4f4-e0cf-449a-9c27-346ba47e0d7b" t="o" /> -<objsur guid="068a97c1-05c0-418e-ade5-8e9873d1a049" t="o" /> -<objsur guid="3d98d183-ada8-4b08-815d-afafc7822d94" t="o" /> -<objsur guid="51d2e551-7d1d-49d9-9873-f6c625fdd083" t="o" /> -<objsur guid="362641d1-68a9-471f-a4a5-9f0d794c0ba7" t="o" /> -<objsur guid="bd7018ab-b5aa-420b-b8e5-43dabbf4bbb2" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="2d1113b6-33e2-48d9-8e62-be13aa03f889" ownerguid="a4ad6152-c5c0-4a2e-88ba-32585113f559"> -<Form> -<AUni ws="qvm-x-ach">tsogtsi</AUni> -<AUni ws="qvm-x-acl">tsogtsi; tsogtse</AUni> -<AUni ws="qvm-x-akh">tsoqtsi</AUni> -<AUni ws="qvm-x-akl">tsoqtsi; tsoqtse</AUni> -<AUni ws="qvm-x-ame">tsuqtsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2d11cf4e-e2bd-4ff1-8c9e-b582d307e1fd" ownerguid="45ebfa40-e500-45d6-b0dd-f61a14c0c832"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="bab28b0a-5aa2-461d-ba0f-288d0696a3b3" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">hang</AUni> -<AUni ws="es">colgar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bb44a23b-2836-4029-8de1-ce58d2682d82" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="2d11d601-c73e-4c0c-a4dc-bc686c7fb4d2" ownerguid="89b2a975-13b0-483a-935f-5880fd0c420f"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Lev 19.36 Pitapis mana engañanayquipag tupuyquipis pësayquipis y balanzayquipis exacto catsun.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="2d11e332-8246-440c-b2c9-09d27ca4f574" ownerguid="054374ba-4897-4b39-b0ee-8c5c4f4a9c73"> -<Form> -<AUni ws="qvm-x-ach">wayrinca</AUni> -<AUni ws="qvm-x-acl">wayrinca</AUni> -<AUni ws="qvm-x-akh">wayrinka</AUni> -<AUni ws="qvm-x-akl">wayrinka</AUni> -<AUni ws="qvm-x-ame">wayrinka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2d12a2a8-4814-44b4-b88f-ace2e4abfc5f" ownerguid="60364974-a005-4567-82e9-7aaeff894ab0"> -<ExampleWords> -<AUni ws="en">watery, aquatic, amphibious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that belongs to the water or is found in water?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2d152d7a-aaf7-4d2b-a15f-e996e295b7d7" ownerguid="19113eea-3a3d-4585-afc4-1586a9b28a01"> -<Form> -<AUni ws="qvm-x-ach">cinturón; cinturon</AUni> -<AUni ws="qvm-x-acl">cinturón; cinturon</AUni> -<AUni ws="qvm-x-akh">cinturón; cinturon</AUni> -<AUni ws="qvm-x-akl">cinturón; cinturon</AUni> -<AUni ws="qvm-x-ame">cinturón; cinturon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="2d155a04-f9e8-4ba0-ae39-089ac0d62feb"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">aywaptiyki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="2d1a69ec-e6bd-45d4-a43f-95cf01ced86d" ownerguid="684f9b1f-2d09-4caf-b20a-da64cd10841c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="2d1e4abb-1430-452e-9ca9-384d85970b49" ownerguid="9e940a56-a94f-49b1-a795-d8a78b83d26b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="22ec1ad2-9080-4ae8-83e2-731ffe1c33f0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="2d1ea615-677d-4f84-963f-84f43f5bb154" ownerguid="6ed896a6-bab7-4fdf-a4fd-a5ee49f380d2"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="5a1f0bfe-4c02-4160-b28c-107a5a8814cf" t="o" /> -<objsur guid="ebe62b35-2d8c-40b8-9c4e-13cfa414d18c" t="o" /> -<objsur guid="f779c97c-2a7e-44db-ba91-5bb7a5014e29" t="o" /> -<objsur guid="6c736fd6-9b8e-4205-86f5-d1be859e027a" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="2d1fcf19-f24b-435d-89d0-3cbe1bb231e9" ownerguid="d8f2f873-fa4c-411b-a91e-7ccbcc7a33ce"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dig</AUni> -<AUni ws="es">escarbar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f0f784fe-838a-4beb-b56a-b502b4015766" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2d205c25-b617-41a8-b4b8-ac5f1f9f99d2" ownerguid="66cbf861-88e7-47b7-8c5c-ff02f79d9337"> -<Form> -<AUni ws="qvm-x-ach">puyu</AUni> -<AUni ws="qvm-x-acl">puyu; puyu; puyo</AUni> -<AUni ws="qvm-x-akh">puyu</AUni> -<AUni ws="qvm-x-akl">puyu; puyu; puyo</AUni> -<AUni ws="qvm-x-ame">puyu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2d21704b-b1f3-4801-b286-7c0b49aa58eb" ownerguid="902cfcbe-6e42-4e55-b2a5-9146702fc16b"> -<ExampleWords> -<AUni ws="en">guide, leader, pilot, point man, usher</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who guides?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2d21f432-d504-4150-89de-480cfbd0c04a" ownerguid="5fa180eb-8427-41aa-af2a-cf08dce5c88f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">totter</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="54c28b77-7f56-4ce7-a646-cf4b7974e5e3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="2d235efe-a723-47e7-83f6-62b7fdd0377b" ownerguid="92cf5055-f329-4301-a1b8-acf9d02c7e60"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">that</AUni> -<AUni ws="es">aquel</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4d988f15-7d59-4021-b721-4ca746eaf932" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="2d28f9c9-ff25-4f47-a9dc-c545ea868393" ownerguid="bb82db52-e73c-4f14-8ceb-a59a14022102"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="2d2a4197-2111-466b-bee6-05c6929d6781" ownerguid="89883f90-e57f-43f2-8a7e-c5e98770a26d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="2d2bbffa-0608-4a75-8960-141fe384d508" ownerguid="0e2004b5-4971-44ef-8270-38efac8e7461"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="2d2e22bb-f2c6-43c7-a473-bff42dfef180" ownerguid="56bd561e-4863-4c8c-a4d0-4b560f7c9b3c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">touch</AUni> -<AUni ws="es">tocar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4b5bd2d8-b164-471a-8650-c6631e0236bf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="2d30e329-9f67-442f-bf9b-20015ff4bb82" ownerguid="e1f515b4-cdb7-4aec-aa7d-7a3a00716b56"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 4.8 Tantyacog captiquega pïmaypis valurashushpayqui respitashunquipagmi.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="2d31f066-a341-4ae5-9cb4-823bb141230b" ownerguid="79662c08-e4e4-46d9-81c2-833818ba17f7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">figure</AUni> -<AUni ws="es">figura</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="71840a86-d349-4f6d-8d74-53dda00f8d61" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="2d3615a7-d19a-4180-81b7-67d5e2072960"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wichpi</AUni> -<AUni ws="qvm-x-acl">wichpi; wichpi; wichpe</AUni> -<AUni ws="qvm-x-akh">wichpi</AUni> -<AUni ws="qvm-x-akl">wichpi; wichpi; wichpe</AUni> -<AUni ws="qvm-x-ame">wichpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*witrpi</AUni> -<AUni ws="qvm-x-acl">*witrpi</AUni> -<AUni ws="qvm-x-akh">*witrpi</AUni> -<AUni ws="qvm-x-akl">*witrpi</AUni> -<AUni ws="qvm-x-ame">*witrpi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.699" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5e7d9554-f1ac-410c-8d5b-f210f369ec08" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*witrpi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9c7b4917-a0dd-4710-b73d-2e3146f89891" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b2919b4a-33a6-46cf-9001-177e59f2da77" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *witrpi 
\entryTyp root 
\gENG cliff 
\gSPN escarpa 
\e *witrpi 
\c N0 
\mp +FinalI 
\ach wichpi 
\akh wichpi 
\acl wichpi / _# 
\acl wichpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wichpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wichpi / _# 
\akl wichpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl wichpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wichpi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="2d366c70-fd53-4f2e-b8ce-8c681805eac3" ownerguid="4a8d4d97-d0bb-4019-81e5-93b1808a8226"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="2d37e83c-b72e-463d-bd58-22d4dc895241"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">inti</AUni> -<AUni ws="qvm-x-acl">inti; inti; inte</AUni> -<AUni ws="qvm-x-akh">inti</AUni> -<AUni ws="qvm-x-akl">inti; inti; inte</AUni> -<AUni ws="qvm-x-ame">inti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*inti</AUni> -<AUni ws="qvm-x-acl">*inti</AUni> -<AUni ws="qvm-x-akh">*inti</AUni> -<AUni ws="qvm-x-akl">*inti</AUni> -<AUni ws="qvm-x-ame">*inti</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.832" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="16846f04-3fb4-4a8f-baed-ebd337962ac0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*inti</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="690a2664-eef4-439f-a586-108d1661e097" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="af73842b-c513-44d4-9ce8-780abeff2314" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *inti 
\entryTyp root 
\gENG sun 
\gSPN sol 
\e *inti 
\c N0 
\mp +FinalI 
\ach inti 
\akh inti 
\acl inti / _# 
\acl inti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl inte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl inti / _# 
\akl inti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl inte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame inti</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2d3bc41a-0452-46d6-b1a0-53c17f6198d7" ownerguid="6a6f0748-a6e9-4d64-b14e-543bb6ec2ec8"> -<ExampleWords> -<AUni ws="en">unconformity, nonconformity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to not being like most other people?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2d3ea645-0e8c-43b3-bb7e-32daea3d5d64"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">espi:ga</AUni> -<AUni ws="qvm-x-acl">espi:ga</AUni> -<AUni ws="qvm-x-akh">espi:ga</AUni> -<AUni ws="qvm-x-akl">espi:ga</AUni> -<AUni ws="qvm-x-ame">espi:ga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+espiga.1</AUni> -<AUni ws="qvm-x-acl">+espiga.1</AUni> -<AUni ws="qvm-x-akh">+espiga.1</AUni> -<AUni ws="qvm-x-akl">+espiga.1</AUni> -<AUni ws="qvm-x-ame">+espiga.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.498" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="af68cbfd-318d-46cf-8de8-7b36c1779782" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+espiga.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ccbde4ce-97a8-46de-9e3d-dd527daa5874" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d1321bbd-f84b-4665-ae4d-b3a935a3e55c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +espiga.1 
\entryTyp root 
\gENG peg/pin 
\gSPN 
\e +espiga.1 
\c N0 
\ach espi:ga 
\akh espi:ga 
\acl espi:ga 
\akl espi:ga 
\ame espi:ga 
\i Exo 36.24 Cada marcupa ishcay espïgan captinmi cada marcupa ishcay bäsincuna cargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="2d3efb5a-72c3-48e5-ad04-99bbcefeed94" ownerguid="7c616aef-75fd-43c8-90a5-87ca7fdbcbab"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2d41ed7f-a1e1-402d-a0de-d66b1cd763bb" ownerguid="71a2cc77-f968-4341-84c1-6c16d007a093"> -<ExampleWords> -<AUni ws="en">butcher, butchery, dress (meat)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to cutting up an animal?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2d453f5a-84f3-485b-8f5a-2a3e53764bda" ownerguid="b843bb9f-565f-4e78-be1c-f96fadc77d8a"> -<Form> -<AUni ws="qvm-x-ach">läja</AUni> -<AUni ws="qvm-x-acl">läja</AUni> -<AUni ws="qvm-x-akh">läja</AUni> -<AUni ws="qvm-x-akl">läja</AUni> -<AUni ws="qvm-x-ame">läja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="2d457e99-b9f8-47b1-9b92-4a753ff32fc7" ownerguid="275e8994-3b50-4690-b349-12e6f1b359a8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="82e9c3df-e95c-44d6-998d-f3779aad6808" t="r" /> -</Morph> -<Msa> -<objsur guid="1b3c6562-1662-468e-b5c0-fcf36256167d" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="2d481f91-12c4-4397-9ab3-c070c6a3d927" ownerguid="738a09a5-59df-40f9-8a4e-176e00d03bbf"> -<ExampleWords> -<AUni ws="en">armor, shield, helmet, breastplate, greave, buckler, corselet, mail, panoply, plate, plating, bullet proof vest, visor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(19) What types of armor are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2d4b5141-d1aa-4d85-b06d-380cd64268fc" ownerguid="e1dd83dd-955a-4bc7-a761-fc91555da1f8"> -<ExampleWords> -<AUni ws="en">complete, thorough, full, comprehensive, exhaustive, entire</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is done completely?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2d4eb82f-b694-4326-bf39-b3ef4af6a84f" ownerguid="9080bb0a-b965-4da7-84c7-2e87b4088e07"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2d4f1ae9-7019-4503-90b4-bcb58396a0b3" ownerguid="eb0c9e02-e4c1-4e5e-84b6-be63aaf439d5"> -<ExampleWords> -<AUni ws="en">nephew, niece</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to your brother's child?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="2d4f50bf-c363-4bcb-8bdc-b9ee5e98cebd" ownerguid="67de2383-8130-4cb8-93cd-8384ef7a77b7"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EXO 8.6 Tsauraga lapan yacuman aywaycur jananpa Aarón togriptinmi intëru Egiptuman tishyayparag säpucuna yargamorgan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="2d50fa31-b6fa-49ce-82b3-520da673b74d" ownerguid="c05e4d92-5154-4cf9-846b-0af3dde4a279"> -<Form> -<AUni ws="qvm-x-ach">llävi; llävi</AUni> -<AUni ws="qvm-x-acl">llävi; llävi; lläve</AUni> -<AUni ws="qvm-x-akh">llävi; llävi</AUni> -<AUni ws="qvm-x-akl">llävi; llävi; lläve</AUni> -<AUni ws="qvm-x-ame">llävi; llävi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2d5104b7-0ca0-4026-8888-5e5d8a325390" ownerguid="e76227e8-4a04-4fbd-a16e-5baa3d9e97a9"> -<ExampleWords> -<AUni ws="en">roost, (hen) gathers chicks</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What do birds do?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2d5149c2-0c75-4cbf-81bf-0679b21db1fc" ownerguid="e4d01123-4e1c-4a7e-bd59-34ac88aae6fa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">coat</AUni> -<AUni ws="es">capote</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="08347449-2a49-4ec2-bdbc-8855d7f3231a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2d534e89-91dc-4a1c-bf0a-c71e4c01aa38" ownerguid="898aacea-1fbf-4e07-a8da-330f39a9a386"> -<Form> -<AUni ws="qvm-x-ach">tapu</AUni> -<AUni ws="qvm-x-acl">tapu; tapo</AUni> -<AUni ws="qvm-x-akh">tapu</AUni> -<AUni ws="qvm-x-akl">tapu; tapo</AUni> -<AUni ws="qvm-x-ame">tapu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="2d563d27-8ac3-41c9-b326-856c9e1f6401" ownerguid="6c36a680-4ff4-43b9-a7c2-9037ceb0d3f6"> -<Abbreviation> -<AUni ws="en">8.3.1.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.607" /> -<DateModified val="2022-9-23 16:55:8.607" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is concave--extending inward in shape away from the viewer. The inside of a bowl is concave in shape.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Concave</AUni> -</Name> -<Questions> -<objsur guid="89f60275-5df4-4800-b26b-b94ad97e9670" t="o" /> -<objsur guid="1024cad5-e6c3-4638-bc6a-4197491413aa" t="o" /> -<objsur guid="973b9161-980e-4e88-9d35-812359cd5dc0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="2d56a239-f47f-4079-a633-b9c5813b6458" ownerguid="49c3474f-d0a5-485f-a96a-5bd3fd31509c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">believer</AUni> -<AUni ws="es">creyente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3a879cc0-93e5-4be9-a178-849d552cb4a1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="2d56fc06-c1e6-4517-a6b0-f6a34819c089" ownerguid="b45ea8c7-35ba-464c-98c1-b2a711140dbf"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="2d57ebec-b9cc-48f8-bf5e-165cfa6739e9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">palaciu; palacio</AUni> -<AUni ws="qvm-x-acl">palaciu; palaciu; palacio</AUni> -<AUni ws="qvm-x-akh">palaciu; palacio</AUni> -<AUni ws="qvm-x-akl">palaciu; palaciu; palacio</AUni> -<AUni ws="qvm-x-ame">palaciu; palacio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+palacio</AUni> -<AUni ws="qvm-x-acl">+palacio</AUni> -<AUni ws="qvm-x-akh">+palacio</AUni> -<AUni ws="qvm-x-akl">+palacio</AUni> -<AUni ws="qvm-x-ame">+palacio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.658" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e24ee12a-3599-40ac-81b6-707481152dff" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+palacio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7196b245-d526-403c-b8b4-a51bd1e58b47" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cf04c48c-d5a1-4fb6-9312-52f92d517b98" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +palacio 
\entryTyp root 
\gENG palace 
\gSPN palacio 
\e +palacio 
\c N0 
\ach palaciu / ~_# 
\ach palacio / _# 
\akh palaciu / ~_# 
\akh palacio / _# 
\acl palaciu / ~_# 
\acl palaciu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl palacio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl palaciu / ~_# 
\akl palaciu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl palacio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame palaciu / ~_# 
\ame palacio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="2d5d634e-75b5-4921-922e-573a809a49f8" ownerguid="e28f3f79-d4a5-402c-8a70-196856791078"> -<Abbreviation> -<AUni ws="en">9.1.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.680" /> -<DateModified val="2022-9-23 16:55:8.680" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to making something--joining things together to create something to be that did not exist before.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>42C Make, Create</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Make</AUni> -</Name> -<Questions> -<objsur guid="e2d6bcd7-1556-4b3d-8912-700cf7fcee19" t="o" /> -<objsur guid="b6518989-b842-4b75-9290-d2d2088df9d8" t="o" /> -<objsur guid="6e31aa83-8f7b-43d4-acf5-68944710fdb7" t="o" /> -<objsur guid="1fa3146f-b730-499d-9d27-2c8670799bf3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="2d5de6a6-c53e-40e7-85da-7ea4a357fdb3" ownerguid="646dab64-5c2f-4f45-8e28-4d13437639d4"> -<ExampleWords> -<AUni ws="en">hold hands, be together, do things together, share, give gifts, show affection</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What are the outward signs of friendship?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2d64b8ea-232e-488a-aee0-46d5bf4bc12a" ownerguid="ee8fef09-1ba5-499f-a736-f2f0081b6cce"> -<Form> -<AUni ws="qvm-x-ach">säbadu</AUni> -<AUni ws="qvm-x-acl">säbadu; säbadu; säbado</AUni> -<AUni ws="qvm-x-akh">säbadu</AUni> -<AUni ws="qvm-x-akl">säbadu; säbadu; säbado</AUni> -<AUni ws="qvm-x-ame">säbadu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2d65cbaf-e095-48b2-9581-d0a50d927518" ownerguid="66789af7-e6eb-4d34-9525-6a1a04212e3d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mold</AUni> -<AUni ws="es">moldear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1fd63fda-c3f5-4273-bd1f-c1a55a186b22" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="2d65fa03-6f0e-4834-94da-fd6e667f380e" ownerguid="d68ff392-9595-4af1-adc5-e138c7ffd2c7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2d692405-a802-4562-a01d-6ae7d9541b97" ownerguid="fba27833-d6f1-4c36-ac39-28902b29261b"> -<ExampleWords> -<AUni ws="en">be like, take after, be a chip off the old block</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to being like your mother or father?</AUni> -</Question> -</rt> -<rt class="StText" guid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365" ownerguid="8c0862e6-4b58-44e3-a7e1-b73c29fa3492"> -<DateModified val="2022-10-27 20:47:13.644" /> -<Paragraphs> -<objsur guid="e70a8a4d-d5eb-486b-86c3-41d274a9dc56" t="o" /> -<objsur guid="39565473-a6e6-4353-b6cd-75e2ddd6eca4" t="o" /> -<objsur guid="0e881f39-54e3-497e-994d-c82f65194c55" t="o" /> -<objsur guid="8fd02b5b-ff2f-4b79-82a5-49b68248014e" t="o" /> -<objsur guid="7a3430d7-9c73-48fa-8802-69a58352bb0e" t="o" /> -<objsur guid="7ebea6b0-00ca-41d3-ba2c-c5a079f79cec" t="o" /> -<objsur guid="c495e7e1-4786-42de-82e5-fec137178f57" t="o" /> -<objsur guid="aec38955-64b7-4fe6-942e-4c2ae08e2fd3" t="o" /> -<objsur guid="2ae0cb9d-15d7-47b6-88ed-91c21e8605f4" t="o" /> -<objsur guid="1915d1c3-1c71-4415-912d-0327ae56198f" t="o" /> -<objsur guid="ae55d49a-f4f4-4a32-a46b-9764902f0e41" t="o" /> -<objsur guid="9a4116ea-854f-4905-b59d-a93e7540a437" t="o" /> -<objsur guid="8aa08cd5-fc81-4f45-b2f6-d4d807c4fb11" t="o" /> -<objsur guid="3f22f35c-3cd7-4dbe-ab01-9ce2bdf60ddc" t="o" /> -<objsur guid="2be397ad-0921-4bd7-96cc-5f352c2f8f51" t="o" /> -<objsur guid="afaf3c09-e7ae-48ec-84ea-141cd4fe563a" t="o" /> -<objsur guid="346e0eef-6251-4263-895b-0457fc7c3c96" t="o" /> -<objsur guid="80ba0bb2-721e-4f64-9a7e-6cdb72125cf0" t="o" /> -<objsur guid="2120c813-0e82-4ae3-9f40-cfc12ec9e382" t="o" /> -<objsur guid="782b0946-7ede-4b42-b2f1-dc0e5e1a7342" t="o" /> -<objsur guid="a30d2287-d368-4ac8-839e-634193ad6567" t="o" /> -<objsur guid="b0f724c9-6bc4-4bf2-9218-d67682918740" t="o" /> -<objsur guid="262d0404-2451-40f9-b01e-e0190dd07374" t="o" /> -<objsur guid="72716f79-42bb-44a0-bd13-f9daba74de2e" t="o" /> -<objsur guid="3687a5d2-d188-42d9-902e-c87bf79ca94e" t="o" /> -<objsur guid="6ab5a4fa-da56-4225-81be-c0c7e10933e7" t="o" /> -<objsur guid="8df03913-223b-4e4c-982e-8818ccc798de" t="o" /> -<objsur guid="df9cae37-4752-488c-b43e-fe4523b780ef" t="o" /> -<objsur guid="73bec73b-0953-4483-a47c-1947eb0522b1" t="o" /> -<objsur guid="4752c504-3fb6-4b2a-8865-767be12596b8" t="o" /> -<objsur guid="d3c455db-ef72-49c6-902d-0c916d2beeca" t="o" /> -<objsur guid="cea561d7-e88a-4d47-90d5-af8e3ac2914b" t="o" /> -<objsur guid="537679d0-642e-48dc-8cd3-04e1c19c3470" t="o" /> -<objsur guid="8a6f12f3-9fc4-43f7-badf-83e0bce41c2c" t="o" /> -<objsur guid="5ee176c4-c63e-4b8d-a966-d927606f0795" t="o" /> -<objsur guid="c4bdf4bb-c922-43b6-8e5f-6a60db876c0b" t="o" /> -</Paragraphs> -<RightToLeft val="False" /> -</rt> -<rt class="CmDomainQ" guid="2d6d7cae-b696-400b-bb7d-dbeac2db35fb" ownerguid="896d57d4-4c25-4f0b-9985-a30974f64704"> -<ExampleWords> -<AUni ws="en">follow, be a disciple</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a disciple following someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2d6dc434-92a9-4191-b9ab-f5eaea455f19" ownerguid="e9fdc131-addb-4db6-8f79-ae0044e1eb81"> -<ExampleWords> -<AUni ws="en">Apocrypha</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a book that is revered but not considered part of the sacred writings?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2d6e03ef-9fcf-425a-8dcf-5057aa7fd886" ownerguid="3ae3a1be-cfb5-4953-b65b-68f0c51b1d40"> -<ExampleWords> -<AUni ws="en">chisel, hammer, marble, clay</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What tools and materials are used to carve a sculpture?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2d707bb2-a093-498f-b188-f3ee9d6623e0" ownerguid="ea2d0dc5-2cdb-4686-9f48-abe65ed295a4"> -<ExampleWords> -<AUni ws="en">move over, walk over, run over, overrun</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to moving over something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2d713e08-e6ea-48e8-839d-14708255f5fc" ownerguid="cd228b14-1b52-4cba-8490-b43ede82c598"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">smoke</AUni> -<AUni ws="es">fumar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3fe6248d-a235-4bd9-a2df-dd6806387d6a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="2d71c797-cdda-4bc1-99e6-6bc256bfbb3c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pla:tu</AUni> -<AUni ws="qvm-x-acl">pla:tu; pla:tu; pla:to</AUni> -<AUni ws="qvm-x-akh">pla:tu</AUni> -<AUni ws="qvm-x-akl">pla:tu; pla:tu; pla:to</AUni> -<AUni ws="qvm-x-ame">pla:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+plato</AUni> -<AUni ws="qvm-x-acl">+plato</AUni> -<AUni ws="qvm-x-akh">+plato</AUni> -<AUni ws="qvm-x-akl">+plato</AUni> -<AUni ws="qvm-x-ame">+plato</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.881" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ab6df95e-b55d-42fc-a8d1-c08d24aefd7f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+plato</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4c5820a5-1284-4f69-b82c-6caf028931fc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1ce6644f-c691-4bd2-a171-d0a321601b9d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +plato 
\entryTyp root 
\gENG dish 
\gSPN plato 
\e +plato 
\c N0 
\ach pla:tu 
\akh pla:tu 
\acl pla:tu / _# 
\acl pla:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pla:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pla:tu / _# 
\akl pla:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pla:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pla:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="2d72af45-adb1-4382-9e45-07cc96384897" ownerguid="ac20049d-d2e8-4dd5-9642-672edecad64f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">work</AUni> -<AUni ws="es">trabajo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ab5f2042-21a2-45fb-ac8f-7cd2481bd104" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoInflAffMsa" guid="2d74ad57-78d8-4748-98d2-3aacf2799c2f" ownerguid="89fb9e9a-1c52-4d3a-99aa-5fdd061f778f"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="b6f091af-032e-4c9c-9c5c-443c1328d1e2" t="r" /> -</Slots> -</rt> -<rt class="LexSense" guid="2d7541fd-8d5e-4ee2-9151-77bdc4cb0dbb" ownerguid="2ed6281d-4e4f-43a1-b2aa-964ed5af3674"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">sostener</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3435baa9-afe0-441c-87a7-85b0e8f2bc3f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2d75646b-bcbb-4649-a5a1-3a9c02ded256" ownerguid="1116e52e-f466-4211-b8df-a1154ad6f512"> -<Form> -<AUni ws="qvm-x-ach">pütsi</AUni> -<AUni ws="qvm-x-acl">pütsi; pütse</AUni> -<AUni ws="qvm-x-akh">pütsi</AUni> -<AUni ws="qvm-x-akl">pütsi; pütse</AUni> -<AUni ws="qvm-x-ame">pütsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="2d771682-d394-4860-82e0-fe7d2d0416f9"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">yarpatsin</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="2d79a3d8-84e1-41df-9fd0-356919049e34" ownerguid="993b8955-52db-4b2a-8e9a-405a155e7b60"> -<ExampleWords> -<AUni ws="en">smelt (metal ore), melt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to melting rocks to get metal out of them?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2d81ab63-d53f-4d48-ab27-7121eabf5d00"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lagshu</AUni> -<AUni ws="qvm-x-acl">lagshu; lagsho</AUni> -<AUni ws="qvm-x-akh">laqshu</AUni> -<AUni ws="qvm-x-akl">laqshu; laqsho</AUni> -<AUni ws="qvm-x-ame">laqshu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llaqshu</AUni> -<AUni ws="qvm-x-acl">*llaqshu</AUni> -<AUni ws="qvm-x-akh">*llaqshu</AUni> -<AUni ws="qvm-x-akl">*llaqshu</AUni> -<AUni ws="qvm-x-ame">*llaqshu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.164" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e5015dc8-4c4d-4709-9e0e-167f61edc4a9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llaqshu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ccb516fc-cb35-4da1-8e83-8a13fc216ef4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2eb3205f-f64f-4375-8cbe-2e2d89d58d3b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llaqshu 
\entryTyp root 
\gENG move.lips 
\gSPN mover.labios 
\e *llaqshu 
\c V1 
\ach lagshu 
\akh laqshu 
\acl lagshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lagsho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl laqshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl laqsho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame laqshu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="2d822f05-e966-4735-b868-4dea83d5ca30"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ra:ya</AUni> -<AUni ws="qvm-x-acl">ra:ya</AUni> -<AUni ws="qvm-x-akh">ra:ya</AUni> -<AUni ws="qvm-x-akl">ra:ya</AUni> -<AUni ws="qvm-x-ame">ra:ya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+raya</AUni> -<AUni ws="qvm-x-acl">+raya</AUni> -<AUni ws="qvm-x-akh">+raya</AUni> -<AUni ws="qvm-x-akl">+raya</AUni> -<AUni ws="qvm-x-ame">+raya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.295" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="21fbe221-aa1c-4abb-9a36-046cb3ad229d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+raya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2fd31333-a7ab-4db8-aaa8-d48e939f3199" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="653834ab-93c2-462c-90e0-828c272bb0fa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +raya 
\entryTyp root 
\gENG line 
\gSPN raya 
\e +raya 
\c N0 
\ach ra:ya 
\akh ra:ya 
\acl ra:ya 
\akl ra:ya 
\ame ra:ya</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="2d82a268-ad4b-4c6f-b1f2-0d79d4daa4f8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ca</AUni> -<AUni ws="qvm-x-acl">ca</AUni> -<AUni ws="qvm-x-akh">ka</AUni> -<AUni ws="qvm-x-akl">ka</AUni> -<AUni ws="qvm-x-ame">ka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ka</AUni> -<AUni ws="qvm-x-acl">*ka</AUni> -<AUni ws="qvm-x-akh">*ka</AUni> -<AUni ws="qvm-x-akl">*ka</AUni> -<AUni ws="qvm-x-ame">*ka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.902" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="63e241cb-3471-43ad-8545-4d005f632d4d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d3b5839a-9f79-4b2d-96b3-8cee7717866b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e0657c44-7fed-4604-8196-6f3aa01eee03" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ka 
\entryTyp root 
\gENG be 
\gSPN ser 
\e *ka 
\c V2 
\ach ca 
\akh ka 
\acl ca 
\akl ka 
\ame ka 
\mcc *ka / ~_ PASS IMPFV1 
\mcc *ka / ~_ 1 TOP 
\mcc *ka / ~_ 1 YET2 
\mcc *ka / ~_ PRMT # 
\mcc *ka / ~_ PST REF 
\mcc *ka / ~_ 1O 
\mcc *ka / ~_ 3 TOP 
\mcc *ka / ~_ [ben] 
\mcc *ka / ~_ DELIB 
\mcc *ka / ~_ DES 
\mcc *ka / ~_ DUR 1 
\mcc *ka / ~_ NMN 
\mcc *ka / ~_ NOM 3P.V # 
\mcc *ka / ~_ NOM 3P.V ABL 
\mcc *ka / ~_ NOM 3P.V EVEN1 
\mcc *ka / ~_ NOM 3P.V TOP 
\mcc *ka / ~_ INF ([just]) [loc] 
\mcc *ka / ~_ INF JUST2.C 1P.V 
\mcc *ka / ~_ INF JUST2.C TOP 
\mcc *ka / ~_ INF PLUR 
\mcc *ka / ~_ INF [sim] 
\mcc *ka / ~_ INTER 
\mcc *ka / ~_ OUT BEN1 
\mcc *ka / ~_ OUT REF PLDIR 
\mcc *ka / ~_ PLST 
\mcc *ka / ~_ PRTSPF 
\mcc *ka / ~_ PSTN 
\mcc *ka / ~_ PL INF # 
\mcc *ka / ~_ NOM 3P.V LIM1 EVEN1 
\mcc *ka / ~_ NOM 1P.V # 
\mcc *ka / ~_ PASS PRT2 
\mcc *ka / ~_ PRT1 [case] 
\mcc *ka / ~_ 1 EVEN2 
\mcc *ka / ~_ ADVSS1.2 [pa] 
\mcc *ka / ~_ DWN 1O 3 
\mcc *ka / ~_ ADVSS1.2 TOP PLUR</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="2d830e7e-9ddd-4c55-8e82-c1cb78b96d2e" ownerguid="69b43685-e475-487b-8324-f666f6ff2c76"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2d84518c-df95-4cfc-a5e2-671e373c7019" ownerguid="e7c58c11-2911-446a-96b0-2113247f3792"> -<ExampleWords> -<AUni ws="en">be related (to someone)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to indicate that two people are related?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2d848550-93d1-48bf-bb76-ba718478d623" ownerguid="a74c97f9-27c1-43a4-a735-eeae29947bb7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pen</AUni> -<AUni ws="es">lápiz.1</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6d32cbb2-ee13-442b-81c1-3717b98bdb42" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="2d84d914-77fd-4ef1-9c30-8920db9bd166"> -<Analyses> -<objsur guid="1ec11352-4001-4c0e-9746-549a1525b19b" t="o" /> -<objsur guid="b2d00b9e-8ea4-4fc0-8452-02e9a67d7fe0" t="o" /> -</Analyses> -<Checksum val="570119096" /> -<Form> -<AUni ws="qvm-x-akh">kaq</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="2d860387-7af2-4c5c-80c2-7b79940f65f6" ownerguid="f5cd1354-93b8-47c7-97d3-9aadaa900381"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="e78d3b49-1db5-47a8-95bd-ade74523a4fd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="2d860998-e3b9-4383-a207-3e95b9eac68f" ownerguid="fad6de1d-f958-4b2b-9c77-412085c2a3ef"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="2d88bcf2-f2ea-4dc1-8806-ddf925e2e4e6" ownerguid="d9104a31-4975-481b-adbd-ad89adcdc0e8"> -<Form> -<AUni ws="qvm-x-ach">regor</AUni> -<AUni ws="qvm-x-acl">regor</AUni> -<AUni ws="qvm-x-akh">regor</AUni> -<AUni ws="qvm-x-akl">regor</AUni> -<AUni ws="qvm-x-ame">regor</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="2d88f104-0684-4ed1-884a-d76d39bb3ed7" ownerguid="69a44a3a-d60d-40b3-8a28-91d2df8ee40f"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EZR 7.20 Diosniquipa templunpag imapis pishiptenga jorgunqui churacunä almacenpita.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="2d894eca-8f6c-4b63-b265-0914a65d9be9" ownerguid="5bcd08a6-cb46-41bb-a732-0d690b5ea596"> -<Abbreviation> -<AUni ws="en">5.2.3.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.317" /> -<DateModified val="2022-9-23 16:55:8.317" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for types of beverages containing alcohol.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Alcoholic beverage</AUni> -</Name> -<OcmCodes> -<Uni>273 Alcoholic Beverages; 270 Drink and Drugs; Drink, Drugs and Indulgence</Uni> -</OcmCodes> -<Questions> -<objsur guid="faa47603-bcf5-4630-9f28-f10dc278df61" t="o" /> -<objsur guid="1df57ee2-492e-49fe-90a3-14ec78b4104c" t="o" /> -<objsur guid="8eb12c90-3637-49a6-9e65-e634ed3ce51b" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="ee8a20b7-4202-489a-b8cd-bdebaf770313" t="o" /> -<objsur guid="d067b555-e53c-4c16-bb09-5314862d8bae" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="2d8a77a2-4bde-4cc7-a9f2-f1f3ee4a8087" ownerguid="243d8a57-d5ed-4d7f-bd5e-f2605634f0fc"> -<ExampleWords> -<AUni ws="en">defend, fight back, hit back at, put up a fight, struggle against, resist, self-defense</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to defending yourself from attack?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="2d8cba92-d33c-4716-8370-26c1c20fe7d6" ownerguid="be35fa70-bb74-4320-86a0-c1e999146d57"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">AMO 4.12 Tsaynog carga wagtayquita wiracäriy shamur castiganäpag.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiWordform" guid="2d8d437c-6f6a-464b-bf44-b54b7c97eaf4"> -<Analyses> -<objsur guid="db72da84-2cb0-480a-a0d2-0868132d4702" t="o" /> -</Analyses> -<Checksum val="-1070642672" /> -<Form> -<AUni ws="qvm-x-akh">aywapäkamushqayki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="2d906540-9a74-440c-b519-d2bc6e87a111" ownerguid="dc0a84c0-a16d-490a-bf52-1f539844011b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="2d92e248-1512-4e89-b886-425814c6dd32" ownerguid="721e7782-9add-41fa-a7cf-659d5ca33926"> -<Abbreviation> -<AUni ws="en">4.2.6.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.216" /> -<DateModified val="2022-9-23 16:55:8.216" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a particular game. The example words are from the game of chess. If you do not play chess in your culture, you can rename this domain and use it for one of your games. Add other domains for each of your games.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Chess</AUni> -</Name> -<Questions> -<objsur guid="a4ea7ef6-3a01-4425-8869-620fd4727de3" t="o" /> -<objsur guid="e2e3fe7f-3a8d-4fea-ad5f-7cd60c952c4a" t="o" /> -<objsur guid="87393d85-9ff8-448b-8b04-69abcd7d8905" t="o" /> -<objsur guid="ebfdde54-fb55-41b9-a4f0-a915355cf576" t="o" /> -<objsur guid="3d4374cf-7071-46f3-8976-5c38bc1a1ee4" t="o" /> -<objsur guid="60a9f7ea-e49a-455b-a4b3-a26c994e2033" t="o" /> -<objsur guid="67164bbc-3fc1-4621-9888-2345a0199139" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="2d9301f3-aeef-49d1-bbd8-9da536dd79af" ownerguid="444d93a7-d896-4c50-871b-cbb18d3f7bb9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c44acf78-eb37-435e-bd59-961987964dfa" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">group</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="67d58613-7fc4-46da-8ebf-cef148ad8009" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="2d9523b0-11e3-4051-824f-fe31e3b7ca29"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shututu</AUni> -<AUni ws="qvm-x-acl">shututu; shututo</AUni> -<AUni ws="qvm-x-akh">shututu</AUni> -<AUni ws="qvm-x-akl">shututu; shututo</AUni> -<AUni ws="qvm-x-ame">shututu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shututu.v</AUni> -<AUni ws="qvm-x-acl">*shututu.v</AUni> -<AUni ws="qvm-x-akh">*shututu.v</AUni> -<AUni ws="qvm-x-akl">*shututu.v</AUni> -<AUni ws="qvm-x-ame">*shututu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.662" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="62521bb1-3688-4feb-ae4f-c9e13cc8452d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shututu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f2d372e0-8d38-4299-979f-ff2ef096e894" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="897e8ae7-f339-465e-8628-f5600a2dba27" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shututu.v 
\entryTyp root 
\gENG 
\gSPN 
\e *shututu.v 
\c V1 
\ach shututu 
\akh shututu 
\acl shututu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shututo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shututu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shututo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shututu 
\i JOB 24.8 Tamyarga pasaypa shututuylami ushman.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="2d97b72e-9a0b-4f23-8512-8eb630fcefa2" ownerguid="d71c3011-e4cf-443a-b2c8-f39662c0370a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">frame</AUni> -<AUni ws="es">quicio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="de9d5f3b-a72b-4d99-83c0-97baa9e314b6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="2d992d65-6708-43a7-8afa-7da2d77cb470"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">abubilla</AUni> -<AUni ws="qvm-x-acl">abubilla</AUni> -<AUni ws="qvm-x-akh">abubilla</AUni> -<AUni ws="qvm-x-akl">abubilla</AUni> -<AUni ws="qvm-x-ame">abubilla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+abubilla</AUni> -<AUni ws="qvm-x-acl">+abubilla</AUni> -<AUni ws="qvm-x-akh">+abubilla</AUni> -<AUni ws="qvm-x-akl">+abubilla</AUni> -<AUni ws="qvm-x-ame">+abubilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.619" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="002e9054-66a2-4703-9ca9-bfb3f426a971" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+abubilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dc1f2ee7-4bf7-4190-8264-cc56ddcfddcc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b4544ce4-018b-42a4-a743-1cfef8f4e26a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +abubilla 
\entryTyp root 
\gENG hoopoe 
\gSPN abubilla 
\e +abubilla 
\c N0 
\ach abubilla 
\akh abubilla 
\acl abubilla 
\akl abubilla 
\ame abubilla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="2d9a7fef-1302-4f0e-8708-7339d07116a4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rga</AUni> -<AUni ws="qvm-x-acl">rga</AUni> -<AUni ws="qvm-x-akh">rqa</AUni> -<AUni ws="qvm-x-akl">rqa</AUni> -<AUni ws="qvm-x-ame">rqa</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.558" /> -<DateModified val="2022-10-18 13:48:3.103" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="57e435ff-f14a-44e1-b595-dff01f37fcc1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">PST</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="be6973f5-a2b1-46a6-9dd0-379cd8bb168a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0e064397-2e1c-4aab-a076-37fcf5d55e34" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx PST 
\entryTyp suffix 
\gENG PST 
\gSPN PSD 
\e PST 
\mp +foreshortens 
\ach rga 
\akh rqa 
\acl rga 
\akl rqa 
\ame rqa 
\c V1/V1 
\mcc PST / ~_... [adv] 
\mcc PST / ~_ [ben] 
\mcc PST / ~_ REF PLDIR NOM 
\mcc PST / ~_ ... PST 
\mcc PST / ~_ AG 
\mcc PST / ~_ CAUS 
\mcc PST / ~_ AFAR 
\mcc PST / _ [person] 
\o 080</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="2d9aa1d3-1518-4780-888f-ccbe169b14cc" ownerguid="5d3fb59c-adce-48cd-adfc-84c905d503df"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hang.over</AUni> -<AUni ws="es">colgar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f112e361-8e17-4727-aac5-6f4af2cea24b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2d9c1e5a-f800-4d86-84eb-da7324160285" ownerguid="931492cb-c86f-4217-94ec-2cdfa96f960b"> -<Form> -<AUni ws="qvm-x-ach">proba</AUni> -<AUni ws="qvm-x-acl">proba</AUni> -<AUni ws="qvm-x-akh">proba</AUni> -<AUni ws="qvm-x-akl">proba</AUni> -<AUni ws="qvm-x-ame">proba</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="2da260cb-03fd-4433-b51b-986bded9b951"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pishi; pishi:</AUni> -<AUni ws="qvm-x-acl">pishe:; pishi; pishe</AUni> -<AUni ws="qvm-x-akh">pishi; pishi:</AUni> -<AUni ws="qvm-x-akl">pishe:; pishi; pishe</AUni> -<AUni ws="qvm-x-ame">pishi; pishi:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pishi:</AUni> -<AUni ws="qvm-x-acl">*pishi:</AUni> -<AUni ws="qvm-x-akh">*pishi:</AUni> -<AUni ws="qvm-x-akl">*pishi:</AUni> -<AUni ws="qvm-x-ame">*pishi:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.850" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1dd6febd-0127-48b5-a634-18e4a9ab3f7d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pishi:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="353ad767-f58d-4e54-b02b-24d238ea3095" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6bd3c638-a676-4e7d-85ef-f791017ed50b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pishi: 
\entryTyp root 
\gENG lack 
\gSPN faltar 
\e *pishi: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach pishi foreshortened 
\ach pishi: 
\akh pishi foreshortened 
\akh pishi: 
\mp +underlong 
\acl pishe: 
\acl pishi foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pishe foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\mp +underlong 
\akl pishe: 
\akl pishi foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pishe foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pishi foreshortened 
\ame pishi: 
\mcc *pishi: / ~_ 1 COND</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2da5c340-d5c8-43e9-bb29-14e22ca6a2c9" ownerguid="879e66bc-af29-4fe4-86e0-0047973a57d6"> -<ExampleWords> -<AUni ws="en">lame, disabled</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe someone who cannot walk well?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2da756c8-f724-42dd-907b-2fe240fcedd3" ownerguid="96dd6359-9eec-44ef-94bd-9d0273d159b6"> -<Form> -<AUni ws="qvm-x-ach">tortilla</AUni> -<AUni ws="qvm-x-acl">tortilla</AUni> -<AUni ws="qvm-x-akh">tortilla</AUni> -<AUni ws="qvm-x-akl">tortilla</AUni> -<AUni ws="qvm-x-ame">tortilla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="2da79a5e-b2ef-4f20-b0aa-c2cdd002d8bc" ownerguid="179a56b9-6eff-4b57-8682-da3c2a5f1e41"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2da7a042-153b-4510-8a88-669b7dbad9bc" ownerguid="13f62fa1-589c-4a46-9bbc-b0fd1001e21f"> -<ExampleWords> -<AUni ws="en">escape, break out of jail, jailbreak, escapee, escaped prisoner, be on the run</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words are used of escaping from prison?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2da8c387-06da-4e21-95e1-04a7e530e35b" ownerguid="c0f4715e-55c9-4379-ab6f-ad561a5e7151"> -<ExampleWords> -<AUni ws="en">believable, convincing, indubitable, undeniable, indisputable, incontrovertible, credible, trustworthy, faithful, dependable, to be depended on, probable, persuasive, plausible, authoritative, reliable, have a ring of truth, sounds right, certain, convincing, sure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something or someone that can be believed?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2dab7f46-e203-4d46-b574-ccf8bd395187"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">huerta</AUni> -<AUni ws="qvm-x-acl">huerta</AUni> -<AUni ws="qvm-x-akh">huerta</AUni> -<AUni ws="qvm-x-akl">huerta</AUni> -<AUni ws="qvm-x-ame">huerta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+huerta</AUni> -<AUni ws="qvm-x-acl">+huerta</AUni> -<AUni ws="qvm-x-akh">+huerta</AUni> -<AUni ws="qvm-x-akl">+huerta</AUni> -<AUni ws="qvm-x-ame">+huerta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.751" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="611f7035-57c1-4096-972d-39799fa82748" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+huerta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="76f04951-504a-4cd7-9298-0091155eff1a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="036630ab-0dbf-4247-b30d-ed47995bc092" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +huerta 
\entryTyp root 
\gENG garden 
\gSPN huerta 
\e +huerta 
\c N0 
\ach huerta 
\akh huerta 
\acl huerta 
\akl huerta 
\ame huerta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="2dac3ce5-e364-4f46-a877-c29b09e16999"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chacwas</AUni> -<AUni ws="qvm-x-acl">chacwas</AUni> -<AUni ws="qvm-x-akh">chakwas</AUni> -<AUni ws="qvm-x-akl">chakwas</AUni> -<AUni ws="qvm-x-ame">chakwas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chakwas</AUni> -<AUni ws="qvm-x-acl">*chakwas</AUni> -<AUni ws="qvm-x-akh">*chakwas</AUni> -<AUni ws="qvm-x-akl">*chakwas</AUni> -<AUni ws="qvm-x-ame">*chakwas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.272" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1885464b-9ace-482f-b19d-09002bc0a8d1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chakwas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c0f5223e-386e-40b7-b49c-a9c8f4de9b2a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="145d6801-3b01-4e22-b6a9-9077a06ba109" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chakwas 
\entryTyp root 
\gENG old.lady 
\gSPN vieja 
\e *chakwas 
\c N0 
\mp +FinalC 
\ach chacwas 
\akh chakwas 
\acl chacwas 
\akl chakwas 
\ame chakwas</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="2daede19-ce5f-46b6-ae68-32d6092441f1" ownerguid="f7706644-542f-4fcb-b8e1-e91d04c8032a"> -<Abbreviation> -<AUni ws="en">2.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.32" /> -<DateModified val="2022-9-23 16:55:8.32" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being energetic.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Energetic</AUni> -</Name> -<Questions> -<objsur guid="fd2021d5-076b-4687-9abb-35740e45ddea" t="o" /> -<objsur guid="5ea92851-aab7-4352-b8e3-23df8de081ea" t="o" /> -<objsur guid="590f64e6-db34-4625-84e9-974ef403b56b" t="o" /> -<objsur guid="3b955d8b-1581-4a57-b7db-584903354c41" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="2db0eb22-0c74-4545-91f1-f4f84d761976" ownerguid="f036c423-db57-42a5-bf98-6fc824c187f1"> -<Form> -<AUni ws="qvm-x-ach">comisión; comision</AUni> -<AUni ws="qvm-x-acl">comisión; comision</AUni> -<AUni ws="qvm-x-akh">comisión; comision</AUni> -<AUni ws="qvm-x-akl">comisión; comision</AUni> -<AUni ws="qvm-x-ame">comisión; comision</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="2db23146-37ba-415e-9270-9571ebbfac63"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chilpi</AUni> -<AUni ws="qvm-x-acl">chilpi; chilpe</AUni> -<AUni ws="qvm-x-akh">chilpi</AUni> -<AUni ws="qvm-x-akl">chilpi; chilpe</AUni> -<AUni ws="qvm-x-ame">chilpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trilpi</AUni> -<AUni ws="qvm-x-acl">*trilpi</AUni> -<AUni ws="qvm-x-akh">*trilpi</AUni> -<AUni ws="qvm-x-akl">*trilpi</AUni> -<AUni ws="qvm-x-ame">*trilpi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.109" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="29330913-4ca8-4b4a-94ac-97a2d1835154" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trilpi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d21efeba-d19a-4abf-8f77-83f418ada3dd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="48eadff7-e51e-4488-b5c7-b6ed452e4b2f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trilpi 
\entryTyp root 
\gENG radiate 
\gSPN irradiar 
\e *trilpi 
\c V1 
\mp +FinalI 
\ach chilpi 
\akh chilpi 
\acl chilpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl chilpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chilpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chilpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chilpi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="2db2514f-b81a-4b43-9499-a2778cc179dc" ownerguid="f8bcfda9-8e69-47d6-970c-556a792e23f7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">give.water</AUni> -<AUni ws="es">dar.agua</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a0283cec-1bc7-4dae-b8e8-346f7d7cabe1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="2db37e45-cdd6-43ef-b23d-1c35d73bb5ed" ownerguid="0f9ea100-4122-4980-8893-e7169c281d95"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="2db4a128-1dec-4363-b57b-29e084ca6a75" ownerguid="0080f1e6-54aa-45d6-9505-da5a488bc282"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="2db55146-9c38-4795-99f8-494127dde9ee" ownerguid="0cd68f79-9bea-45ed-a980-2a3606b35c22"> -<Form> -<AUni ws="qvm-x-ach">läwa</AUni> -<AUni ws="qvm-x-acl">läwa</AUni> -<AUni ws="qvm-x-akh">läwa</AUni> -<AUni ws="qvm-x-akl">läwa</AUni> -<AUni ws="qvm-x-ame">läwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="2dbada7d-356e-4054-92c9-99b4ef2567e9"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">jukninpis</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="2dc01132-0b36-4620-9b68-4bb310ceaf1d" ownerguid="3c549735-95e1-4af3-ab1f-e0d8f93f4297"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="2dc14a40-bb9f-4d43-9d0c-aa3e236131eb" ownerguid="ae015229-0907-4e8e-8408-309706403927"> -<Form> -<AUni ws="qvm-x-ach">camilla</AUni> -<AUni ws="qvm-x-acl">camilla</AUni> -<AUni ws="qvm-x-akh">camilla</AUni> -<AUni ws="qvm-x-akl">camilla</AUni> -<AUni ws="qvm-x-ame">camilla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2dc156d6-6103-4499-8039-7f57afe620fd" ownerguid="ce6d5e60-7cf6-46ab-bd02-453ec7b04f7a"> -<ExampleWords> -<AUni ws="en">feel good about yourself</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling good about yourself?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2dc159d9-8648-4ab3-9cc3-4f3575e197ef" ownerguid="a1fc2a49-f105-4f42-9af4-4c7af7084072"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">new</AUni> -<AUni ws="es">nuevo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b7a578bb-9746-43fc-8668-99635b9c8015" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2dc21a6e-7b5e-48f4-b5d3-0c44fa453eb2" ownerguid="0281fb1d-ab12-41b9-a3dc-09ef6b1e4733"> -<ExampleWords> -<AUni ws="en">offer a sacrifice, pray for the dead, keep someone's memory alive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to caring for the spirit of a dead person?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2dc374ee-517f-4755-9ea6-9d464c7be65b" ownerguid="d333614a-4e75-4f5f-9024-59dd71e3ae42"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2dc43c28-c03e-461a-a767-348b3a9cb5b0" ownerguid="7e2b6218-0837-4b16-a982-c9535cccdb21"> -<ExampleWords> -<AUni ws="en">remains, bones, skeleton</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a body after it has decayed?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2dc5d8ae-4078-434f-91dc-3970cac11d02"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pullera</AUni> -<AUni ws="qvm-x-acl">pullera</AUni> -<AUni ws="qvm-x-akh">pullera</AUni> -<AUni ws="qvm-x-akl">pullera</AUni> -<AUni ws="qvm-x-ame">pullera</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pollera</AUni> -<AUni ws="qvm-x-acl">+pollera</AUni> -<AUni ws="qvm-x-akh">+pollera</AUni> -<AUni ws="qvm-x-akl">+pollera</AUni> -<AUni ws="qvm-x-ame">+pollera</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.899" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cf497a89-d190-4d57-a79b-d6ff6d622750" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pollera</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e4aba5f2-dde4-4d3a-9253-c46a81eb7c46" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="38735235-65e0-4126-ba48-896e27bec111" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pollera 
\entryTyp root 
\gENG skirt 
\gSPN traje 
\e +pollera 
\c N0 
\ach pullera 
\akh pullera 
\acl pullera 
\akl pullera 
\ame pullera</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="2dc81b71-65c4-4313-9b60-a1535cd24d84" ownerguid="3d020b79-f1d4-4a06-bae2-2daaa658474b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yqui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yqui</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yki</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1b0fe7f9-c0ed-498b-9263-f8c0d31cc569" t="r" /> -</Morph> -<Msa> -<objsur guid="2999bb54-aa09-4eed-affb-cf684bd15cf6" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="2dca9338-85cb-4f58-b40d-d2d759e8edd6" ownerguid="c72985cf-b07f-4ed5-873a-a2209929667e"> -<Abbreviation> -<AUni ws="en">8.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.660" /> -<DateModified val="2022-9-23 16:55:8.660" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that refer to the place where something is located and for words indicating the location of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>83 Spatial Positions; 83B Where, Somewhere, Everywhere</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Location</AUni> -</Name> -<OcmCodes> -<Uni>131 Location</Uni> -</OcmCodes> -<Questions> -<objsur guid="6a89247e-450f-421d-bcaf-0ddfdc886a3a" t="o" /> -<objsur guid="f59a6321-2aac-49e7-8705-6d0cd62952c3" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="f76c3803-1c7a-4181-9a87-64ae7231a67d" t="o" /> -<objsur guid="4f485a60-e3ba-42e6-9d59-185305c5d1f2" t="o" /> -<objsur guid="80bcbc99-3c85-46d6-b15c-895367231747" t="o" /> -<objsur guid="a4b03891-c2df-4d72-bbdc-13bc8d4eceba" t="o" /> -<objsur guid="3785d9f3-0922-4d79-a0fa-b97c4a26fe17" t="o" /> -<objsur guid="8fbed974-7d25-44c3-80cb-7d02e4069007" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="2dce881f-eb9c-4f4a-94a0-d8f3d0575bcf" ownerguid="99b40843-54bf-4c59-ae1d-d7146cebec48"> -<ExampleWords> -<AUni ws="en">knock on wood, touch wood, keep your fingers crossed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What do people say to try to prevent bad luck?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2dd120e8-8df6-4fda-b5b9-b1d1026d933f" ownerguid="b63ce4e1-c832-4623-b489-b8b8ad094e8c"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="2dd34b75-13c0-4b3c-94a2-ff0281420538" ownerguid="f134eabe-ecd2-4f0a-8566-00a9086e0307"> -<Form> -<AUni ws="qvm-x-ach">sëda</AUni> -<AUni ws="qvm-x-acl">sëda</AUni> -<AUni ws="qvm-x-akh">sëda</AUni> -<AUni ws="qvm-x-akl">sëda</AUni> -<AUni ws="qvm-x-ame">sëda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2dd417d1-4b48-4333-b18e-ff0592ebb774" ownerguid="e91f8610-c6b2-4c1c-a650-a9e008cbed83"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c49721aa-6c6e-48a1-a2f7-c2d1e8b0ee7a" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="de2cc438-a144-47ff-8d73-ebed2a62839e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2dd50068-4289-4734-b289-3b9071ffa942" ownerguid="4275df2e-d4f6-461a-9279-39e0712dc082"> -<ExampleWords> -<AUni ws="en">look like, have the look of, have the appearance of, resemble</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that something looks like another thing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2dd63e0f-c5ce-4950-bb3c-333ceff8259d" ownerguid="21a284ab-b9a3-42c8-8fb9-96aff1e1fe8f"> -<ExampleWords> -<AUni ws="en">to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something moves (from one place) to another place?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2dd6b799-4e64-43f0-a4c4-5ec802342278" ownerguid="b843bb9f-565f-4e78-be1c-f96fadc77d8a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">flat.rock</AUni> -<AUni ws="es">laja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="107c735d-7186-41d4-9129-0c917f221a1e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2ddea611-81ce-4c93-9d39-b45cf39224c0" ownerguid="fa972d1b-4e6a-4e70-8f2a-388f86594be6"> -<Form> -<AUni ws="qvm-x-ach">chag</AUni> -<AUni ws="qvm-x-acl">chag</AUni> -<AUni ws="qvm-x-akh">chaq</AUni> -<AUni ws="qvm-x-akl">chaq</AUni> -<AUni ws="qvm-x-ame">chaq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e1-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="8378f21c-cf54-437a-9d41-a303c764b326" t="r" /> -</PhoneEnv> -</rt> -<rt class="MoStemMsa" guid="2ddf128e-b25f-488a-a54b-c16369a7e1e6" ownerguid="739d590b-35a9-4209-a7e9-3b6681652d61"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2ddfd3e5-e88f-4f26-a317-44ce3dba600b" ownerguid="79f3b53a-eb56-4188-87f8-48317f76e7ce"> -<ExampleWords> -<AUni ws="en">fast, Lent, Ramadan</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a time when a person fasts or denies himself in some other way?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2de02543-4a87-4354-89bb-42e1d3c2c1ce" ownerguid="dae6488c-7fea-4fa3-84c9-b611d017b6a5"> -<ExampleWords> -<AUni ws="en">clean, dirty, filthy, soiled, stained, faded, old, new, brand new, never been worn, worn, torn, ripped, patched, mended</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words are used to describe the condition of clothes?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2de351b5-b927-4cbb-8ee2-65779b408c55" ownerguid="d4a78550-b02b-4479-bcf3-ad40880667db"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2de628a6-0dbf-422d-94d3-b355f76539fa" ownerguid="55201761-fe2e-40d5-a2a7-8079e00a2c32"> -<ExampleWords> -<AUni ws="en">fight, have a fight, get into a fight, fighting, battle, brawl, bully, clash, come to blows, confront, duel, engage (the enemy), face (an enemy), feud, jostle, joust, oppose, scuffle, set-to, spar, skirmish, squabble, strive, struggle, tussle, war, wrestle, be in the fray, go on the warpath</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to enemies fighting?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2de85fd6-01d9-4b92-9d3f-8d05106f8a6c" ownerguid="4d798f5d-c10b-49ec-82fa-1669b68b2d93"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="6bfb90cf-1c34-474a-b057-ad8d6063e989" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">in.love</AUni> -<AUni ws="es">enamorar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="53982e68-e61c-489c-b137-1ca81194e344" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2de91341-3cec-4e89-9e12-a0f700f4752f" ownerguid="c1144a6e-3fce-4084-93d6-6f305eda8b1f"> -<ExampleWords> -<AUni ws="en">good, blessed, fortunate, easy, prosperous, carefree, trouble free, quality, plentiful, fun-filled, fantastic, great, full, fruitful, productive, enjoyable, happy, wonderful</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a good life?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2dec4433-4b46-403b-8e72-eab40a68ea7c" ownerguid="8a337ef9-c767-4521-a209-d5a6f9a76e90"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bend</AUni> -<AUni ws="es">torcer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="eb934804-9628-4560-ba6d-b89454e41883" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="2dedbb06-d081-4e57-b70d-40cc99bd5533" ownerguid="508d2900-dee3-41df-9da3-41843ac47cf4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="4f8f306c-ed77-4373-b3f0-1f01cd99a90e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2def8f5c-0a90-42c4-9e0a-93ed2558c89e" ownerguid="32d5b3de-0500-4ad6-b94e-20b8001d0a91"> -<ExampleWords> -<AUni ws="en">bang, buzz, chug, clack, clang, clank, clatter, click, clink, clump, clunk, crackle, crash, creak, crunch, fizz, gurgle, hiss, howl, patter, ping, purr, putter, roar, rumble, rustle, screech, splash, splutter, squelch, swish, thud, thump, thunder, wheeze, whine, whir, zing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to making a noise while moving?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2df03b37-ef2d-457f-b84d-4ba6f0a73d15" ownerguid="9b63f4be-db36-4c49-be7b-8d5500e46367"> -<Form> -<AUni ws="qvm-x-ach">traviësu</AUni> -<AUni ws="qvm-x-acl">traviësu; traviësu; traviëso</AUni> -<AUni ws="qvm-x-akh">traviësu</AUni> -<AUni ws="qvm-x-akl">traviësu; traviësu; traviëso</AUni> -<AUni ws="qvm-x-ame">traviësu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="2df96298-2f3a-468c-aab3-a01729bb3812" ownerguid="1f170500-3a55-4f4d-aa23-c01d9540c88f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wawa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wawa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wawa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wawa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wawa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="947ece62-6ca2-4ac8-a84c-d2baa509eb59" t="r" /> -</Morph> -<Msa> -<objsur guid="2d28f9c9-ff25-4f47-a9dc-c545ea868393" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="2df9c4cc-e841-4259-8122-0b94a6e134e3" ownerguid="9c00b1af-91e4-4840-a1d7-2f6e86dbe9f9"> -<Form> -<AUni ws="qvm-x-ach">panteón; panteon</AUni> -<AUni ws="qvm-x-acl">panteón; panteon</AUni> -<AUni ws="qvm-x-akh">panteón; panteon</AUni> -<AUni ws="qvm-x-akl">panteón; panteon</AUni> -<AUni ws="qvm-x-ame">panteón; panteon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="2dfb79a5-5b6c-4ce9-bed3-9e48233c01fb" ownerguid="00966ac0-e2d5-429f-80a1-6de9cee48e2d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoAffixAllomorph" guid="2dfe7d41-6e63-49b3-9934-a7ca2fa9fd74" ownerguid="efe35dbf-ae76-4d63-b9ee-47f06f007351"> -<Form> -<AUni ws="qvm-x-ach">la</AUni> -<AUni ws="qvm-x-acl">la</AUni> -<AUni ws="qvm-x-akh">la</AUni> -<AUni ws="qvm-x-akl">la</AUni> -<AUni ws="qvm-x-ame">la</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="2dfee515-e744-4d5e-bbe8-0062eda17b23" ownerguid="b715f06f-153e-4a6a-b018-7a5388b0daae"> -<Form> -<AUni ws="qvm-x-ach">bandëra</AUni> -<AUni ws="qvm-x-acl">bandëra</AUni> -<AUni ws="qvm-x-akh">bandëra</AUni> -<AUni ws="qvm-x-akl">bandëra</AUni> -<AUni ws="qvm-x-ame">bandëra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2dffbfef-b1ab-4570-84aa-a5ba20254073" ownerguid="a3fe0ca2-64fe-44db-ac3f-14513385bc25"> -<ExampleWords> -<AUni ws="en">keep (someone) awake</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to preventing someone from going to sleep?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2e00aedb-79e7-44a8-8130-4307f0447d23" ownerguid="3240f52a-83c8-47b9-8a94-a99be0956bbc"> -<Form> -<AUni ws="qvm-x-ach">macha; machä</AUni> -<AUni ws="qvm-x-acl">macha; machä</AUni> -<AUni ws="qvm-x-akh">macha; machä</AUni> -<AUni ws="qvm-x-akl">macha; machä</AUni> -<AUni ws="qvm-x-ame">macha; machä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="2e02f747-b24a-43f1-90d2-96053fc8615d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">changui</AUni> -<AUni ws="qvm-x-acl">changui; changue</AUni> -<AUni ws="qvm-x-akh">chanqi</AUni> -<AUni ws="qvm-x-akl">chanqi; chanqe</AUni> -<AUni ws="qvm-x-ame">chanqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tranqi.v</AUni> -<AUni ws="qvm-x-acl">*tranqi.v</AUni> -<AUni ws="qvm-x-akh">*tranqi.v</AUni> -<AUni ws="qvm-x-akl">*tranqi.v</AUni> -<AUni ws="qvm-x-ame">*tranqi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.58" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0cfc6a15-3c6c-4670-95db-e496c624cc61" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tranqi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2059c1db-1ce2-4ab8-9b8c-1dcd84307713" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3e681d99-2cd7-4ca8-a88b-214ea2d19ef9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tranqi.v 
\entryTyp root 
\gENG cut.tuber 
\gSPN cortar.tuber 
\e *tranqi.v 
\c V1 
\mp +FinalI 
\ach changui 
\akh chanqi 
\acl changui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl changue +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chanqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chanqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chanqi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2e06d495-4397-40ab-98b9-c6619877c6f6" ownerguid="3d10e03a-7902-458d-9c45-938da103d639"> -<ExampleWords> -<AUni ws="en">hollow out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to making something convex?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2e07e3b7-aff0-4f2e-84d1-554d8e3f0cb4" ownerguid="05a05da3-0adf-41e2-9a72-0e9ae7aeb3db"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="2e08136f-b7cd-4aa6-a662-efc1a218a5d7" ownerguid="21adcdce-d6a7-46ac-925e-7202981a1736"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">crouch</AUni> -<AUni ws="es">agacharse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d6e9a81e-b216-4727-ab25-20bc3d73665b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2e092836-d57e-41c8-ba90-faa93accdd96" ownerguid="b7b0819b-eceb-4f16-ae6d-2298c4df1e6f"> -<ExampleWords> -<AUni ws="en">meet a deadline, on schedule</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to finishing something within the time that is allowed?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="2e09535f-f61f-4ff5-8d56-23c2916cbb7f" ownerguid="2621e605-3ecc-4f3d-b28c-f8c92b3c4584"> -<Abbreviation> -<AUni ws="en">8.3.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.609" /> -<DateModified val="2022-9-23 16:55:8.609" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to being rough.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79P Uneven, Level</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Rough</AUni> -</Name> -<Questions> -<objsur guid="f7898fa0-6627-4815-b5ed-e8ede708ae65" t="o" /> -<objsur guid="6f6d5d02-f5e4-4a3d-ae20-060df000db7e" t="o" /> -<objsur guid="cb205993-ef8b-42a7-a3f3-810d3c3dc605" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="2e0a0604-75ef-42b1-8429-d3dcc7d10353" ownerguid="058bcc9b-c5fa-4e59-ab58-199b261ad2ee"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2e108cb3-817d-42e1-b7fc-51ab6a6ad905" ownerguid="00dde3be-e53d-42c3-b3ff-717e25cbffb6"> -<ExampleWords> -<AUni ws="en">prayer, supplication, intercession, petition, thanksgiving, grace, benediction</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to prayer?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2e111894-f46f-4e2c-9f5c-9c153120dc77" ownerguid="3df7d174-83d1-4e17-890e-1272e171ca41"> -<ExampleWords> -<AUni ws="en">magnet, magnetic, magnetism, lodestone</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a piece of iron that attracts other pieces of iron?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2e11f9cd-da1e-4588-ac82-ad7b78001fca" ownerguid="b044e890-ce30-455c-aede-7e9d5569396e"> -<ExampleWords> -<AUni ws="en">astronomy, astronomer, astrology, astrologer, stargazer, magi</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to the study of the stars?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="2e1207e4-99ab-4bf2-8bab-61482f0c25f5" ownerguid="f2f973f2-acde-4ac7-a693-49c0ab861c5d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">r</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">r</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">r</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">r</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">r</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a96fae79-db91-498f-a3f4-4aaeff3f9499" t="r" /> -</Morph> -<Msa> -<objsur guid="973e08a0-60b3-4ff1-9973-ac70ea0a16bc" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="2e1619e4-a447-431c-a404-6b40325b51e8" ownerguid="1886ffc9-0a18-41ea-b2f6-c17c297f1681"> -<ExampleWords> -<AUni ws="en">scientist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a person who studies science?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2e16473f-2f93-4744-bec2-ed99e6eddeed" ownerguid="499691fd-d2e5-4781-ae2b-a09eebef1440"> -<Form> -<AUni ws="qvm-x-ach">watul</AUni> -<AUni ws="qvm-x-acl">watul</AUni> -<AUni ws="qvm-x-akh">watul</AUni> -<AUni ws="qvm-x-akl">watul</AUni> -<AUni ws="qvm-x-ame">watul</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="2e16fa56-78c4-484d-91fe-b68e8171cd38"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sepla</AUni> -<AUni ws="qvm-x-acl">sepla</AUni> -<AUni ws="qvm-x-akh">sepla</AUni> -<AUni ws="qvm-x-akl">sepla</AUni> -<AUni ws="qvm-x-ame">sipla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*siplla</AUni> -<AUni ws="qvm-x-acl">*siplla</AUni> -<AUni ws="qvm-x-akh">*siplla</AUni> -<AUni ws="qvm-x-akl">*siplla</AUni> -<AUni ws="qvm-x-ame">*siplla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.693" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="40e2dca4-78f5-4fec-a4f4-6e14cdcd79ff" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*siplla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="baf352bc-a5db-407c-ae84-a95c5bea0ef6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="54c24a33-4249-4ee9-a82b-856bd95f06d4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *siplla 
\entryTyp root 
\gENG bald 
\gSPN calvo 
\e *siplla 
\c N0 
\ach sepla 
\akh sepla 
\acl sepla 
\akl sepla 
\ame sipla</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2e17700d-27ba-4240-9b75-616832f1b352" ownerguid="3be7e3fe-89d4-471a-92bd-8c70fcb146bb"> -<ExampleWords> -<AUni ws="en">lip-read, lip-reading</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to a deaf person understanding someone by watching their mouth?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="2e1ac83f-3ca6-46a4-a5af-ee776c9b7cf5" ownerguid="0ab7ab07-fa3e-4a57-a7cd-68d786eff0d3"> -<Evaluations> -<objsur guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="8950d086-ce36-43b4-8c8a-8a5414533bad" t="o" /> -<objsur guid="a2d0b3d4-2203-48f8-ae10-b956e3db266d" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="2e1eacb2-6b88-4720-903f-e763dfa9b1f9" ownerguid="3d5a1a32-6e9e-486c-8c3b-d12bfe9a3114"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="2e211d98-c6bb-45b2-9ff6-87ad2d243439" ownerguid="c0a8228c-21da-4593-898a-c19aa9f6d2a3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">foundation</AUni> -<AUni ws="es">cimiento</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a8d542c4-32fa-402e-9ca8-4750a288ce32" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="FsClosedValue" guid="2e236e6a-122c-4d99-a9a3-c1b75539d445" ownerguid="0359513a-1c12-4d0b-8d40-8a469c105a11"> -<Feature> -<objsur guid="e13ebd7a-824d-4405-8c23-e5a30f3d53a6" t="r" /> -</Feature> -<RefNumber val="0" /> -<Value> -<objsur guid="7fd2e9b4-402c-427c-a3e3-bbf386d652da" t="r" /> -</Value> -<ValueState val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="2e2a17ba-9d81-4a3d-8af5-96c8f0e39e7e" ownerguid="ff736f67-197b-46b9-bc14-edbeb1fb3d5a"> -<Abbreviation> -<AUni ws="en">6.8.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to storing wealth.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Store wealth</AUni> -</Name> -<OcmCodes> -<Uni>454 Saving and Investment; 453 Banking</Uni> -</OcmCodes> -<Questions> -<objsur guid="94bf8d14-f28c-49f5-a015-93f0b1ef9642" t="o" /> -<objsur guid="39727162-c214-4dc4-9c86-c34b082a2cb5" t="o" /> -<objsur guid="e19cbe30-6499-4465-a837-19d739166956" t="o" /> -<objsur guid="2ece989d-1dbf-451a-b3a3-56d2d5002623" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="2e2bdbad-d0ce-461e-bff3-b0a8a7cf7100"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lagya</AUni> -<AUni ws="qvm-x-acl">lagya</AUni> -<AUni ws="qvm-x-akh">laqya</AUni> -<AUni ws="qvm-x-akl">laqya</AUni> -<AUni ws="qvm-x-ame">laqya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llaqya.v</AUni> -<AUni ws="qvm-x-acl">*llaqya.v</AUni> -<AUni ws="qvm-x-akh">*llaqya.v</AUni> -<AUni ws="qvm-x-akl">*llaqya.v</AUni> -<AUni ws="qvm-x-ame">*llaqya.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.164" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9dbbc2d6-73a3-4faf-b9c7-fd8dde446265" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llaqya.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9bc4a434-f791-4d73-839b-707c09898c69" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="326feae6-84f5-4602-8af3-db266b261b85" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llaqya.v 
\entryTyp root 
\gENG slap 
\gSPN sopapear 
\e *llaqya.v 
\c V2 
\ach lagya 
\akh laqya 
\acl lagya 
\akl laqya 
\ame laqya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2e2d9588-26ec-4420-91a3-aacaaca1f731" ownerguid="7ee3ccb5-e6cb-4028-9af5-62ae782967b5"> -<ExampleWords> -<AUni ws="en">blacksmith shop, foundry, steelworks</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a place where people work with metal?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2e2e4992-66b2-4e84-8f9b-84ee7d598ccd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guepsha</AUni> -<AUni ws="qvm-x-acl">guepsha</AUni> -<AUni ws="qvm-x-akh">qepsha</AUni> -<AUni ws="qvm-x-akl">qepsha</AUni> -<AUni ws="qvm-x-ame">qipsha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qipsha</AUni> -<AUni ws="qvm-x-acl">*qipsha</AUni> -<AUni ws="qvm-x-akh">*qipsha</AUni> -<AUni ws="qvm-x-akl">*qipsha</AUni> -<AUni ws="qvm-x-ame">*qipsha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.195" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="87c07b39-a869-4708-a470-aaf84129e41a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qipsha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ae68497d-80be-4de6-8c6c-64dceb31409b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c9c9d65a-aa7d-4fc5-b17d-f42ac1c4454c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qipsha 
\entryTyp root 
\gENG 
\gSPN 
\e *qipsha 
\c N0 
\ach guepsha 
\akh qepsha 
\acl guepsha 
\akl qepsha 
\ame qipsha</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="2e30dfec-6533-4e5f-9471-ec0537cba858" ownerguid="77c1318b-be8f-4aac-8114-2b6858829a7c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="2e30f02d-d1e6-489c-a1fb-8b9fb6ecd819" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<Abbreviation> -<AUni ws="en">3.4.2.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.143" /> -<DateModified val="2022-9-23 16:55:8.143" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling disappointed--to feel bad because something did not happen that you wanted to happen or someone did not do something that you wanted them to do.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Disappointed</AUni> -</Name> -<Questions> -<objsur guid="59e21792-b446-4778-97bf-dc63c7944116" t="o" /> -<objsur guid="09552194-eb1d-49fb-8e1f-eab98ee10a9f" t="o" /> -<objsur guid="1b0cecde-f4d5-4b96-88e5-bc2d46789590" t="o" /> -<objsur guid="ce98d503-1f42-4d27-aa07-ff7654ed26bc" t="o" /> -<objsur guid="9c2d554f-96ce-4b56-9dac-749f13631930" t="o" /> -<objsur guid="9a5aea32-89db-4854-9127-133447b94640" t="o" /> -<objsur guid="0efbdda7-2850-4e84-9b7a-5814be441220" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="2e32f3d4-080f-4da1-a948-63bce64c5dcc" ownerguid="10806316-f433-4da4-a08b-73638d735c1d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">thankyou</AUni> -<AUni ws="es">gracias</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0af77782-52ae-4ca2-81a1-8e621bc8e7aa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="2e33e3ee-ae2f-4d15-99dd-963049ef71af"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">olgu; olgu:</AUni> -<AUni ws="qvm-x-acl">olgo:; olgu; olgo</AUni> -<AUni ws="qvm-x-akh">olqu; olqu:</AUni> -<AUni ws="qvm-x-akl">olqo:; olqu; olqo</AUni> -<AUni ws="qvm-x-ame">ulqu; ulqu:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ullqu:</AUni> -<AUni ws="qvm-x-acl">*ullqu:</AUni> -<AUni ws="qvm-x-akh">*ullqu:</AUni> -<AUni ws="qvm-x-akl">*ullqu:</AUni> -<AUni ws="qvm-x-ame">*ullqu:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.220" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="291bc461-479d-4b8d-b3fa-e9096fd9bff9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ullqu:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="045e290f-e49a-4000-ac6b-5a1465c844ca" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="67d1c4aa-1d28-40be-9236-46dad2605abc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ullqu: 
\entryTyp root 
\gENG scold 
\gSPN renegar 
\e *ullqu: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach olgu foreshortened 
\ach olgu: 
\akh olqu foreshortened 
\akh olqu: 
\mp +underlong 
\acl olgo: 
\acl olgu foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl olgo foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\mp +underlong 
\akl olqo: 
\akl olqu foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl olqo foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ulqu foreshortened 
\ame ulqu: 
\mcc *ullqu: / ~_ PASS 
\mcc *ullqu: / ~_ [ref] NMN 
\mcc *ullqu: / ~_ [ben] [q] 
\mcc *ullqu: / ~_ 1</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="2e35e409-5397-40d2-99f9-9770ba588552" ownerguid="a3c59ae6-1cc7-4fe0-b4d2-8a7bd720b152"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Uruy uruy micun. Comen excesivamente. Sacsashganpita mastami.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="2e366f3d-257a-4847-9c23-f553adcfd25c" ownerguid="20d32230-184e-44e4-a123-703f7a0deb35"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="2e375d89-90db-4540-b75b-3c39effdf6cf" ownerguid="7e973f42-7d44-4724-b3e4-ef7d3dc08b6d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">get.tired.of</AUni> -<AUni ws="es">hartar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9826cbc8-4b21-4043-a38b-6f71bffa16ef" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2e39c0b9-5ee7-492e-a885-cb18fe521023" ownerguid="d9256aa4-556d-4225-b533-1414b403a2ce"> -<Form> -<AUni ws="qvm-x-ach">chi</AUni> -<AUni ws="qvm-x-acl">chi</AUni> -<AUni ws="qvm-x-akh">chi</AUni> -<AUni ws="qvm-x-akl">chi</AUni> -<AUni ws="qvm-x-ame">chi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e1-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="8378f21c-cf54-437a-9d41-a303c764b326" t="r" /> -</PhoneEnv> -</rt> -<rt class="CmDomainQ" guid="2e3b9ede-2e68-4241-bbbe-d110f7f61e80" ownerguid="79b580ff-64a7-445b-abcb-b49b9093779c"> -<ExampleWords> -<AUni ws="en">birdcage, chicken coop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) Where do people keep birds?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2e3cdcdd-46bc-48c3-8aed-0541a5421c38"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nacu; naca</AUni> -<AUni ws="qvm-x-acl">nacu; naco; naca</AUni> -<AUni ws="qvm-x-akh">naku; naka</AUni> -<AUni ws="qvm-x-akl">naku; nako; naka</AUni> -<AUni ws="qvm-x-ame">naku; naka</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.568" /> -<DateModified val="2022-10-16 14:5:10.614" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2888f024-c888-4574-b97e-4bec94b8aa06" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">RECIP</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b82cfe35-39fd-45ff-aeed-524a769cd259" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c3bf5dba-92a1-4ccf-bd35-4e43c5d074d5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx RECIP 
\entryTyp suffix 
\gENG RECIP 
\gSPN RECIP 
\e RECIP 
\c V2/V1 V1/V1 
\o 030 
\mp PMlowered 
\ach nacu 
\ach naca morphlowered 
\akh naku 
\akh naka morphlowered 
\acl nacu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl naco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl naca morphlowered 
\akl naku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl nako +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl naka morphlowered 
\ame naku 
\ame naka morphlowered</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2e3e3413-e13f-416b-abc8-739a061ba61c" ownerguid="250a52e4-ede0-427d-8382-46a5742d4f96"> -<ExampleWords> -<AUni ws="en">ambulance, hospital ship</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a vehicle for transporting the injured?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2e411906-71e3-41ae-9cda-f47d6c92c243" ownerguid="324cc026-a13b-40f4-936c-3e743c8d8b82" /> -<rt class="LexSense" guid="2e417874-c05e-41f5-963f-abe9a62af891" ownerguid="fa688d24-91cb-47d7-a8b3-095723765204"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.dull</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="104d7209-2fa6-4135-b03b-d7f58f04da08" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="StTxtPara" guid="2e436723-3341-45cd-8599-70c46d88ae19" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">yarpapäkutsin</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="5cad8c88-c7b5-46bc-a0c0-d35143c986e3" t="o" /> -</Segments> -</rt> -<rt class="CmDomainQ" guid="2e43c08e-1c89-4520-870d-3a708b616eee" ownerguid="effc49dd-6322-4302-899c-4cf540f0e2e4"> -<ExampleWords> -<AUni ws="en">cooked food, prepared food, dish, course</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to prepared food?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2e46f736-5775-4f4a-aff0-0881cfd1ece4" ownerguid="49bc0d75-4f07-44b4-a50f-bc9a557dc15e"> -<ExampleWords> -<AUni ws="en">polygamy, multiple wives</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used of having more than one wife?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2e48036b-ccfb-40e6-8525-f1ed026ea3c9" ownerguid="7a83fccc-3e3e-4659-846c-84d38e5e418a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="2e4a04b6-4970-4ffb-b97f-05ce6b1768db" ownerguid="1cb9266c-c5a6-4b25-8fa3-dbad81a53cd3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.eat</AUni> -<AUni ws="es">comer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="44aa6f68-7289-4246-8bc4-0e6ec4046fb2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="2e4ce5bf-f891-48a2-acf7-498be8718921"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jatun</AUni> -<AUni ws="qvm-x-acl">jatun</AUni> -<AUni ws="qvm-x-akh">jatun</AUni> -<AUni ws="qvm-x-akl">jatun</AUni> -<AUni ws="qvm-x-ame">hatun</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hatun</AUni> -<AUni ws="qvm-x-acl">*hatun</AUni> -<AUni ws="qvm-x-akh">*hatun</AUni> -<AUni ws="qvm-x-akl">*hatun</AUni> -<AUni ws="qvm-x-ame">*hatun</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.690" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cf615c1d-89a6-4101-ba37-62b0155ba83d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hatun</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="857ed72f-f2e9-42be-b917-ffdee7a2c084" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5cf983a8-9c6c-4944-a93a-5ec856c38498" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hatun 
\entryTyp root 
\gENG big 
\gSPN grande 
\e *hatun 
\c N0 
\mp NeverLowered 
\ach jatun 
\akh jatun 
\acl jatun 
\akl jatun 
\ame hatun 
\mp +FinalC 
\mcc *hatun / ~_ 3P.C</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="2e4e8d22-8f20-4212-90ad-2f2c63747b1a" ownerguid="87cdcd18-d309-4913-8d74-ee421f703757"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">businessman</AUni> -<AUni ws="es">negociante</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a7ef4cdb-46e2-4838-8228-dcac670abcf8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2e515f58-df56-4b97-8d84-706693496b6d" ownerguid="a3fe0ca2-64fe-44db-ac3f-14513385bc25"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">goodnight, sleep tight, pleasant dreams, sweet dreams</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(10) What does someone say to someone else who is going to sleep?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2e54a022-5f36-4758-8eda-9e679228ac6a" ownerguid="60316512-ccfc-44b5-bde5-9c327a76895b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="78710fae-dfd3-4166-b350-10be1444670f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2e55f507-df84-4c78-920f-8cd3db7edc97" ownerguid="29a8ebbe-ebc4-4295-b6af-84331d019361"> -<ExampleWords> -<AUni ws="en">terminology, jargon, technical term, specialized vocabulary</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to special words that are used to talk about a particular area of life?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2e569721-7d70-4723-a945-dd4aaf460e86" ownerguid="ba339cf2-8191-4519-9289-a9d996eb059c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="2e56b62a-178f-44f7-be33-9805c8221084" ownerguid="6048bde3-5661-48f9-8b50-c9aaccf06f89"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">growth.apex</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6e2d946f-3d16-4e0a-b28f-f64921214903" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="2e5a80f9-35ae-4850-9627-be530832a781" ownerguid="f02ae505-d6b7-4b30-9d97-8505d0d1a0c7"> -<Abbreviation> -<AUni ws="en">9.6.3.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.720" /> -<DateModified val="2022-9-23 16:55:8.720" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that the speaker uses to show respect or a lack of respect to the person he is addressing. Some languages have elaborate systems of honorifics. Other languages have none. Languages with a stratified social structure often use honorifics. Egalitarian societies generally lack them, but some egalitarian societies may use them. For instance in Nahuatl there are four levels of honorifics. Level 1 is how one addresses intimates, small children, and pets. Level 2 is for strangers and persons treated formally. Level 3 is for respected persons, the dead, and God. Level 4 is for obsequious respect, as for the archbishop in an interview with a priest, and for ritual kin. (Jane H. Hill and Kenneth C. Hill. 1978. Honorific usage in modern Nahuatl: the expression of social distance and respect in the Nahuatl of the Malinche Volcano area, Language 54:123-155.) In Japanese, which has a stratified social structure, a person uses one set of words and affixes when speaking to someone below you in the social hierarchy, such as your wife, children, and pets. A different set of words is used when speaking to peers. Another set is used when speaking to a superior. A fourth set is used when speaking to the emperor. English used to have two pronouns for second person singular. 'Thou' was used for equals and inferiors, and 'you' was used for superiors. Your language may have special honorific words used as (1) pronouns, (2) affixes, (3) particles, (4) terms of direct address, (5) greetings (6) requests, (7) apologies.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Honorifics</AUni> -</Name> -<Questions> -<objsur guid="ef5205dc-186f-4a79-8e31-f183e8f7775f" t="o" /> -<objsur guid="eabea05a-41f9-4248-a88f-65c8ee86da23" t="o" /> -<objsur guid="2ac4e305-e4fb-45d2-91db-c935cf6eeaf3" t="o" /> -<objsur guid="87292506-1d69-4852-92ad-60137b34c2c1" t="o" /> -<objsur guid="67d5477a-1e95-49fe-a843-4396991e5fd9" t="o" /> -<objsur guid="79e5ec43-1626-4150-b412-d8621daa3603" t="o" /> -<objsur guid="dee567cb-6264-47d9-a17c-d3ac632d3334" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="2e5ace90-5795-4e92-b9e3-99163ea973d7" ownerguid="8f779877-7d86-4683-8a8b-298c7fc62815"> -<ExampleWords> -<AUni ws="en">not know what to say, be speechless, tongue-tied, cat's got your tongue</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to not knowing what to say?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="2e5acfd2-3009-4496-9cc2-58d2a0088994" ownerguid="1b0270a5-babf-4151-99f5-279ba5a4b044"> -<Abbreviation> -<AUni ws="en">2.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to hair.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Hair</AUni> -</Name> -<Questions> -<objsur guid="537fc51c-7e7e-4a5a-819e-57c0b0e69887" t="o" /> -<objsur guid="cc3626c4-a572-48fb-a822-3a1dc1b4d51b" t="o" /> -<objsur guid="26a490b5-9e23-4273-bae4-3f1eaafd19d2" t="o" /> -<objsur guid="321cb29d-fdf8-40bb-8caf-a83f60ce9e3a" t="o" /> -<objsur guid="610bc603-a54e-47a5-9dd8-d49201ee2209" t="o" /> -<objsur guid="991ef507-e3bd-439e-bdaa-2d6c50d27b31" t="o" /> -<objsur guid="ea3f475b-b869-46b0-81c1-ff55807fe513" t="o" /> -<objsur guid="207e810e-b6be-453d-a247-46126733f040" t="o" /> -<objsur guid="8542eae9-e549-4998-a6fa-225fbdc07ee0" t="o" /> -<objsur guid="46bb821e-dbb2-4c1a-8169-4648a9effccb" t="o" /> -<objsur guid="a6e78d23-0064-4c3d-9c16-6a506bf57164" t="o" /> -<objsur guid="54f5e376-af1f-4a39-a0ea-83ba928bf9b3" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="6b8366b9-b5e8-42b8-991c-c568d4442a81" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="2e5f243e-9f91-4d2c-99d9-3e0b0b881ded" ownerguid="aaf4227a-cfb7-4470-b67d-0c41f8f232d7"> -<Form> -<AUni ws="qvm-x-ach">tosta</AUni> -<AUni ws="qvm-x-acl">tosta</AUni> -<AUni ws="qvm-x-akh">tosta</AUni> -<AUni ws="qvm-x-akl">tosta</AUni> -<AUni ws="qvm-x-ame">tosta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2e603cd0-d976-4592-bcb8-12e9eb3caabf" ownerguid="9d865347-6656-4ab7-8613-bf2e8bc53aa7"> -<ExampleWords> -<AUni ws="en">wounded in action, purple heart</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to a person wounded in war?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2e604b38-28c3-4b5a-bc36-216f4e341a07" ownerguid="a42db5b4-6317-4d3f-beff-cb92dbaca914"> -<ExampleWords> -<AUni ws="en">amateur, disciple, layman, student</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to someone who is learning?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2e61b40e-2fdb-47c4-a2d0-cd77f8b9adee"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maja</AUni> -<AUni ws="qvm-x-acl">maja</AUni> -<AUni ws="qvm-x-akh">maja</AUni> -<AUni ws="qvm-x-akl">maja</AUni> -<AUni ws="qvm-x-ame">maha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*masa.v</AUni> -<AUni ws="qvm-x-acl">*masa.v</AUni> -<AUni ws="qvm-x-akh">*masa.v</AUni> -<AUni ws="qvm-x-akl">*masa.v</AUni> -<AUni ws="qvm-x-ame">*masa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.354" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f2363171-724b-46b1-a10b-668c98b24cdf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*masa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5ec6f96e-99d3-47a6-92dd-2390269e6350" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b50d6175-d480-4e2d-a90c-9064edddd36a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *masa.v 
\entryTyp root 
\gENG spread 
\gSPN tender 
\e *masa.v 
\c V1 
\ach maja 
\akh maja 
\acl maja 
\akl maja 
\ame maha 
\mcc *masa.v / ~_ PRTSPF1</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2e623e64-ea95-46ea-83b8-77e435233824" ownerguid="e6cf2c28-7630-41d7-835d-bd171ab67378"> -<ExampleWords> -<AUni ws="en">altruistic, selfless, unselfish, thinks of others, self-sacrificing, benevolent, Good Samaritan</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is selfless?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2e6498dc-7f4a-4b28-b8bd-92d0b6643002" ownerguid="acf5e294-d169-45c1-a9d3-960536e018cc"> -<ExampleWords> -<AUni ws="en">audible, clear, loud and clear</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that can be heard?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2e64bb97-2b53-402b-a764-c24749e89f58" ownerguid="00a0c11a-91df-4639-9564-610d81425ce9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="2e6667f2-1f4a-4281-8b88-70fd70470161" ownerguid="5b1b076d-b710-454f-a3f0-87466a70bd0d"> -<Form> -<AUni ws="qvm-x-ach">grampa</AUni> -<AUni ws="qvm-x-acl">grampa</AUni> -<AUni ws="qvm-x-akh">grampa</AUni> -<AUni ws="qvm-x-akl">grampa</AUni> -<AUni ws="qvm-x-ame">grampa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2e6caa31-8956-4ba9-9668-02bf02790a5c" ownerguid="7988974c-99fd-40dd-9b5e-2d81ec603ddc"> -<ExampleWords> -<AUni ws="en">forest, forested, rain forest, grove, wood, wooded, woodland, woods, thicket, jungle, taiga, orchard</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a forest or group of trees?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2e70c985-952a-4b6f-8396-fcb9d01af231" ownerguid="6d5540de-e3b1-4396-aa44-a13bcad5e61a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2e70e0b7-0f07-4d7b-b966-8332f0358cdc" ownerguid="34c3edad-a158-44e7-989b-5b74401e6945"> -<ExampleWords> -<AUni ws="en">produce gas, give off fumes</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the production of gas?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2e76df7e-b483-4e26-b1ca-223119315051" ownerguid="22f943d1-3a95-4b3b-bf1b-e9fcb94255c3"> -<Form> -<AUni ws="qvm-x-ach">liqui</AUni> -<AUni ws="qvm-x-acl">liqui; liqui; lique</AUni> -<AUni ws="qvm-x-akh">liki</AUni> -<AUni ws="qvm-x-akl">liki; liki; like</AUni> -<AUni ws="qvm-x-ame">liki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2e79bcfb-cd27-4473-9eb0-44beec54c059" ownerguid="445caa42-9ffd-48b3-831b-70e68fe81718"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">crest</AUni> -<AUni ws="es">cresta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="587c26e4-1a1f-4e00-9472-83d91163980b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2e7bdcb4-b6af-4257-a5b3-3f31751345c5" ownerguid="b0220f1b-891c-4db2-abd0-0865edfb345e"> -<Form> -<AUni ws="qvm-x-ach">wagui</AUni> -<AUni ws="qvm-x-acl">wagui; wague</AUni> -<AUni ws="qvm-x-akh">waqi</AUni> -<AUni ws="qvm-x-akl">waqi; waqe</AUni> -<AUni ws="qvm-x-ame">waqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PunctuationForm" guid="2e7d55c1-5ae3-4d4c-959b-ab1be7059fe3"> -<Form> -<Str> -<Run ws="en">IMPFV</Run> -</Str> -</Form> -</rt> -<rt class="MoStemMsa" guid="2e801808-2f5f-43dd-94e2-b53149c2ef5e" ownerguid="1277cb9f-bf53-406e-a97f-3426cf3eee0b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PunctuationForm" guid="2e80e132-d233-49d2-9a5a-2e25d07248c6"> -<Form> -<Str> -<Run ws="en">9</Run> -</Str> -</Form> -</rt> -<rt class="MoStemMsa" guid="2e87abb2-30e7-4da8-8cc8-c0f22f1f1ef3" ownerguid="bb438dc5-9f54-4bc3-b5ad-ec1f6b93d0d8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="2e8859a9-52ee-46fb-8355-77f1c75862e1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ticti</AUni> -<AUni ws="qvm-x-acl">ticti; ticti; ticte</AUni> -<AUni ws="qvm-x-akh">tikti</AUni> -<AUni ws="qvm-x-akl">tikti; tikti; tikte</AUni> -<AUni ws="qvm-x-ame">tikti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tikti</AUni> -<AUni ws="qvm-x-acl">*tikti</AUni> -<AUni ws="qvm-x-akh">*tikti</AUni> -<AUni ws="qvm-x-akl">*tikti</AUni> -<AUni ws="qvm-x-ame">*tikti</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.896" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bf6ae899-1eed-4587-bec4-26664fcf87a6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tikti</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="56b267cb-eff7-4256-9063-d4e73f3a3a76" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a80811bb-bfbd-46d6-9d89-e89632efc942" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tikti 
\entryTyp root 
\gENG wart 
\gSPN 
\e *tikti 
\c N0 
\mp +FinalI 
\ach ticti 
\akh tikti 
\acl ticti / _# 
\acl ticti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ticte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tikti / _# 
\akl tikti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tikte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tikti</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="2e88eec3-7bb5-4dc7-85de-d2bf1d4690ec" ownerguid="dedf9bc3-21a0-4eee-827f-f11c03b1e934"> -<Form> -<AUni ws="qvm-x-ach">tardi; tarde</AUni> -<AUni ws="qvm-x-acl">tardi; tardi; tarde</AUni> -<AUni ws="qvm-x-akh">tardi; tarde</AUni> -<AUni ws="qvm-x-akl">tardi; tardi; tarde</AUni> -<AUni ws="qvm-x-ame">tardi; tarde</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2e8a7266-ece4-40ca-9d25-e0ae2f230f6b" ownerguid="513771eb-8467-468a-8bc8-e52567e66df9"> -<ExampleWords> -<AUni ws="en">affiliate with, partner with, work with, work together, collaborate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the process of relating to other people at work?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2e8c6de1-80fb-4712-b4a4-4ed0df17c88a" ownerguid="928741b5-bff6-4dd1-be37-ec6e7a4eb6ca"> -<ExampleWords> -<AUni ws="en">bank, riverbank, levee, sandbar, embankment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words are used of the edge of a river?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2e8cc4fb-cf6c-48b1-8f6f-0ed818d09a9a" ownerguid="82d5ad14-fa2a-4853-ba84-32d94531126d"> -<Form> -<AUni ws="qvm-x-ach">shinshi</AUni> -<AUni ws="qvm-x-acl">shinshi; shinshe</AUni> -<AUni ws="qvm-x-akh">shinshi</AUni> -<AUni ws="qvm-x-akl">shinshi; shinshe</AUni> -<AUni ws="qvm-x-ame">shinshi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2e8cf450-d6d9-49b4-9687-15175ac3e775" ownerguid="b2d2501f-e8da-4675-8505-9b5dc5b52d4c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="9a3aea3c-6e4e-44fc-93df-e609071f8fa9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="2e95bd1e-82f0-461d-8ca6-b5f1ce1fb180" ownerguid="ffcc57f8-6c6d-4bf4-85be-9220ca7c739d"> -<Abbreviation> -<AUni ws="en">2.6.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.63" /> -<DateModified val="2022-9-23 16:55:8.63" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for all the words related to arranging a marriage. Cultures vary widely in their practices. In some cultures marriages are arranged by the parents. In other cultures a man must seek a wife for himself. Some cultures allow either practice or a combination of the two. So some of the questions below may be inappropriate to your culture.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Arrange a marriage</AUni> -</Name> -<OcmCodes> -<Uni>583 Mode of Marriage; 584 Arranging a Marriage</Uni> -</OcmCodes> -<Questions> -<objsur guid="4e483974-58fa-4e2d-a33c-e6f37037b95c" t="o" /> -<objsur guid="f9cd8c1f-fd4f-43b5-85c6-348c876931dd" t="o" /> -<objsur guid="9eec928a-e293-4c1b-bc39-d8b90a767bc8" t="o" /> -<objsur guid="dd40920f-9363-49cb-bbb1-bc3e3a575c77" t="o" /> -<objsur guid="143a67d1-03bd-4969-9d51-b372a37c9ec2" t="o" /> -<objsur guid="3645189c-85ea-4848-b4fc-2d9d0ac11641" t="o" /> -<objsur guid="8ffe3a78-47be-426d-b6f5-2077d85d3728" t="o" /> -<objsur guid="efe73907-3bcd-4630-82a3-fe850ed10bfc" t="o" /> -<objsur guid="1fb44ae6-5d0f-4e1b-a1fb-c8738acd0b7e" t="o" /> -<objsur guid="8dc1a404-947c-4158-ade0-1cd329375c17" t="o" /> -<objsur guid="c0c5882c-ca60-492b-8a2b-6fdbc637e964" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="da203891-90a2-48f0-955a-8a80b6c62af9" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="2e97b83d-1152-473f-9cbe-347f0655041a" ownerguid="d98c1c67-b70e-4a35-89db-2e744bd5197f"> -<Abbreviation> -<AUni ws="en">2.1.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the ear.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Ear</AUni> -</Name> -<Questions> -<objsur guid="95ff56cf-ff80-48d5-8839-120d07103b4a" t="o" /> -<objsur guid="6d3647e5-30d1-4d1b-a207-a25f65c9dcc9" t="o" /> -<objsur guid="c11e11bc-cc76-4e10-80ca-b887f0063fdb" t="o" /> -<objsur guid="0650c70d-74de-4f9a-b9cf-9abb63d68428" t="o" /> -<objsur guid="130a72c2-633c-4f2f-af85-35411c084db9" t="o" /> -<objsur guid="5d15fd4a-ca42-4f06-b1c1-9a819656e6ed" t="o" /> -<objsur guid="ffe3de16-b845-4c64-ac84-cdc34140a78b" t="o" /> -<objsur guid="63c2442d-30af-4ff3-8ffb-232e6326bb06" t="o" /> -<objsur guid="ced904df-9991-421c-9280-295b0ce22664" t="o" /> -<objsur guid="ae17a9fd-0943-4206-b3ff-6bca561e13ad" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="8503660c-03af-49ee-86b6-525aab4da828" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="2e994579-9439-4cae-a6d8-ae29194121f0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">perjuiciu; perjuicio</AUni> -<AUni ws="qvm-x-acl">perjuiciu; perjuiciu; perjuicio</AUni> -<AUni ws="qvm-x-akh">perjuiciu; perjuicio</AUni> -<AUni ws="qvm-x-akl">perjuiciu; perjuiciu; perjuicio</AUni> -<AUni ws="qvm-x-ame">perjuiciu; perjuicio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+perjuicio</AUni> -<AUni ws="qvm-x-acl">+perjuicio</AUni> -<AUni ws="qvm-x-akh">+perjuicio</AUni> -<AUni ws="qvm-x-akl">+perjuicio</AUni> -<AUni ws="qvm-x-ame">+perjuicio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.800" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a890a40e-d753-4bbd-8e16-f27c747a3fcf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+perjuicio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="83ac1bdb-573b-4a07-a34d-5c85092a0893" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="774f00eb-1a9e-4de1-9bbc-25ae900f0551" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +perjuicio 
\entryTyp root 
\gENG injury 
\gSPN perjuicio 
\e +perjuicio 
\c N0 
\ach perjuiciu / ~_# 
\ach perjuicio / _# 
\akh perjuiciu / ~_# 
\akh perjuicio / _# 
\acl perjuiciu / ~_# 
\acl perjuiciu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl perjuicio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl perjuiciu / ~_# 
\akl perjuiciu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl perjuicio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame perjuiciu / ~_# 
\ame perjuicio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2e99584d-fe82-4e7d-b25f-bbd09d050818" ownerguid="f3627c41-5daf-4f73-ac42-8a0522035e0b"> -<ExampleWords> -<AUni ws="en">herb, herbal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a plant that is used as a medicine?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2e998270-a158-4bf6-98fa-000ebd3facee"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tío; tiyu</AUni> -<AUni ws="qvm-x-acl">ti:u; tiyu; tiyo</AUni> -<AUni ws="qvm-x-akh">tío; tiyu</AUni> -<AUni ws="qvm-x-akl">ti:u; tiyu; tiyo</AUni> -<AUni ws="qvm-x-ame">tío; tiyu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tío</AUni> -<AUni ws="qvm-x-acl">+tío</AUni> -<AUni ws="qvm-x-akh">+tío</AUni> -<AUni ws="qvm-x-akl">+tío</AUni> -<AUni ws="qvm-x-ame">+tío</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.936" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e590ab77-3d23-4304-94c8-db20572a9ab7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tío</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ab99f8d0-f8c1-46a0-b1e5-61b876e7bfa9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c49ff747-0c85-4599-8963-51baf9cb8001" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tío 
\entryTyp root 
\gENG uncle 
\gSPN tío 
\e +tío 
\c N0 
\ach tío / _# 
\ach tiyu / ~_# 
\akh tío / _# 
\akh tiyu / ~_# 
\acl ti:u / _# 
\acl tiyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tiyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ti:u / _# 
\akl tiyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tiyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tío / _# 
\ame tiyu / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="2e9cc2ae-cde3-4d19-93fc-43fdb657e255" ownerguid="c3d3c269-a682-4198-867d-37e42b6af96b"> -<Form> -<AUni ws="qvm-x-ach">pïsu</AUni> -<AUni ws="qvm-x-acl">pïsu; pïsu; pïso</AUni> -<AUni ws="qvm-x-akh">pïsu</AUni> -<AUni ws="qvm-x-akl">pïsu; pïsu; pïso</AUni> -<AUni ws="qvm-x-ame">pïsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="2e9ce871-af4b-4d67-a804-5ff2f8ffabda" ownerguid="09fcebfc-65b6-4d70-93a0-bad0a7419e7e"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="2e9f06f3-c986-43da-a035-e3cc9aef13d4" ownerguid="d68911f6-6507-483a-b015-44726fdf868a"> -<Abbreviation> -<AUni ws="en">6.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.367" /> -<DateModified val="2022-9-23 16:55:8.367" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being satisfied with your job.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Job satisfaction</AUni> -</Name> -<Questions> -<objsur guid="17c485f9-1abf-4b8e-aa05-4493d70ccac5" t="o" /> -<objsur guid="75b0a760-4d07-4e92-8bf9-3b3ccd782a54" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="2ea38f3e-8291-447b-9649-27cabde45c12"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ma:su</AUni> -<AUni ws="qvm-x-acl">ma:su; ma:su; ma:so</AUni> -<AUni ws="qvm-x-akh">ma:su</AUni> -<AUni ws="qvm-x-akl">ma:su; ma:su; ma:so</AUni> -<AUni ws="qvm-x-ame">ma:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+maso</AUni> -<AUni ws="qvm-x-acl">+maso</AUni> -<AUni ws="qvm-x-akh">+maso</AUni> -<AUni ws="qvm-x-akl">+maso</AUni> -<AUni ws="qvm-x-ame">+maso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.356" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="069628ef-427e-465b-8b70-649a3b16b4e8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+maso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="506cdae5-e78b-4374-b539-666db13e389f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d98b42a5-c304-4a98-a18a-8b1470a9e382" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +maso 
\entryTyp root 
\gENG 
\gSPN 
\e +maso 
\c N0 
\ach ma:su 
\akh ma:su 
\acl ma:su / _# 
\acl ma:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ma:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ma:su / _# 
\akl ma:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ma:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ma:su</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="2ea679e8-3377-4877-876c-9db06ea203b5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gaga; gaga:</AUni> -<AUni ws="qvm-x-acl">gaga; gaga:</AUni> -<AUni ws="qvm-x-akh">qaqa; qaqa:</AUni> -<AUni ws="qvm-x-akl">qaqa; qaqa:</AUni> -<AUni ws="qvm-x-ame">qaqa; qaqa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qaqa:</AUni> -<AUni ws="qvm-x-acl">*qaqa:</AUni> -<AUni ws="qvm-x-akh">*qaqa:</AUni> -<AUni ws="qvm-x-akl">*qaqa:</AUni> -<AUni ws="qvm-x-ame">*qaqa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.940" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="397ef5b8-06e7-491b-9663-f551d7004d50" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qaqa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0642854e-0a08-4ef1-af00-412fa6b30bca" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="29d53fdc-0fff-48f5-aee2-b1b0969dec7e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qaqa: 
\entryTyp root 
\gENG be.parallel 
\gSPN estar.paralelo 
\e *qaqa: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach gaga foreshortened 
\ach gaga: 
\akh qaqa foreshortened 
\akh qaqa: 
\acl gaga foreshortened 
\acl gaga: 
\akl qaqa foreshortened 
\akl qaqa: 
\ame qaqa foreshortened 
\ame qaqa:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="2ea9352e-995b-48ed-8e69-3a3c247cab3e" ownerguid="a97be5dd-69dc-49bf-bcf1-a4da50b64eaa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">HAVE</AUni> -<AUni ws="es">TENER</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="19f56977-ab7e-4f38-a9f8-7d5786460d3c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="2eab4a9a-efe6-4af7-9c91-64ed6114cf08" ownerguid="ea9c8d4b-29b3-4fe8-a081-86b1c98e644e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="2eaf4079-1eac-43b3-bd42-4225eb59613b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sa:cu</AUni> -<AUni ws="qvm-x-acl">sa:cu; sa:cu; sa:co</AUni> -<AUni ws="qvm-x-akh">sa:cu</AUni> -<AUni ws="qvm-x-akl">sa:cu; sa:cu; sa:co</AUni> -<AUni ws="qvm-x-ame">sa:cu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+saco</AUni> -<AUni ws="qvm-x-acl">+saco</AUni> -<AUni ws="qvm-x-akh">+saco</AUni> -<AUni ws="qvm-x-akl">+saco</AUni> -<AUni ws="qvm-x-ame">+saco</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.417" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2f6864f2-fe86-41ca-9ff3-c3291a427c9a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+saco</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="14b8a283-ab48-4991-9c2d-c247704cb9b0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5764fcf2-1f97-4144-89cd-64a7a3c5c71b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +saco 
\entryTyp root 
\gENG coat 
\gSPN saco 
\e +saco 
\c N0 
\ach sa:cu 
\akh sa:cu 
\acl sa:cu / _# 
\acl sa:cu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sa:co +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sa:cu / _# 
\akl sa:cu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sa:co +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sa:cu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="2eb242e5-f0f1-4411-bd0c-f1d9d7371fc4" ownerguid="7825d262-bf2c-4a69-aa62-b464e088dcad"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="050c2d07-4321-409b-8bb1-10e4799b7338" t="o" /> -<objsur guid="e24e36e4-ea4b-40e3-b4ea-23040287a5b7" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="2eb3205f-f64f-4375-8cbe-2e2d89d58d3b" ownerguid="2d81ab63-d53f-4d48-ab27-7121eabf5d00"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">move.lips</AUni> -<AUni ws="es">mover.labios</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ccb516fc-cb35-4da1-8e83-8a13fc216ef4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2eb83d8b-77aa-4599-a28c-03ac08adafc9" ownerguid="ccbbd16f-58c5-45c1-bfff-1fba64d9740e"> -<Question> -<AUni ws="en">(2) continuous: a single situation is viewed as in progress, as maintained over a period of time; also called "durative." The English "Progressive" is a continuous restricted to dynamic words. English 'I am reading; *I am knowing the number'.</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="2eba12c6-7817-4dfd-9e7c-94c8b8b389ef" ownerguid="5bcd08a6-cb46-41bb-a732-0d690b5ea596"> -<Abbreviation> -<AUni ws="en">5.2.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.317" /> -<DateModified val="2022-9-23 16:55:8.317" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that describe food that is prohibited by the culture or religion. Do not list the foods that are prohibited.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Prohibited food</AUni> -</Name> -<Questions> -<objsur guid="966794a7-a8ac-46f4-9ea5-4f72f4aa6fc9" t="o" /> -<objsur guid="d594201b-7335-41ed-8c44-ecd4de15bea5" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="2eba746a-e6bd-4fdf-8c4b-bb9fb76e30f7" ownerguid="ea45cdbd-7684-410c-b107-2a5b343f6a9a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="2ebe1d76-492a-4a50-ad94-9c2310918ef3" ownerguid="a02b67e5-8246-4859-9c7c-99e7c9a116e4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mountain</AUni> -<AUni ws="es">cerro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4ac16465-8fc0-48ff-8cab-fdf785aa78eb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2ec1e1ba-5873-4608-aa2d-13e9d4a59bfd" ownerguid="8c41d2d1-6da6-4ab8-8b29-7e226192d64e"> -<ExampleWords> -<AUni ws="en">clot, scab, blood stain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to blood when it dries?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2ec4a945-279e-4984-b20c-89733f2394fe" ownerguid="54a2f829-8cd0-4722-afba-a9e1351f0b3d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="6c6e899a-5072-4282-bca9-4c6c2517d361" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">guarantee</AUni> -<AUni ws="es">garantía</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="11b4a6b8-bcfa-4d1f-828d-a816464b4aa2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="2ec7128c-61c0-4095-9f4b-70c3de2bd12b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">isqui</AUni> -<AUni ws="qvm-x-acl">isqui; isqui; isque</AUni> -<AUni ws="qvm-x-akh">iski</AUni> -<AUni ws="qvm-x-akl">iski; iski; iske</AUni> -<AUni ws="qvm-x-ame">iski</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*iski.n</AUni> -<AUni ws="qvm-x-acl">*iski.n</AUni> -<AUni ws="qvm-x-akh">*iski.n</AUni> -<AUni ws="qvm-x-akl">*iski.n</AUni> -<AUni ws="qvm-x-ame">*iski.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.852" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6a8aa24b-ab0f-4b59-86d0-2f5800edcecd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*iski.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="70ff8d39-94bd-4b97-885d-2b27263c6ff8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3af929bf-e30f-4c99-afeb-0df20875175e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *iski.n 
\entryTyp root 
\gENG nit 
\gSPN liendre 
\e *iski.n 
\c N0 
\mp +FinalI 
\ach isqui 
\akh iski 
\acl isqui / _# 
\acl isqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl isque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl iski / _# 
\akl iski +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl iske +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame iski</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="2ec766be-79fc-4051-a56d-7bda64f875ee"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jita</AUni> -<AUni ws="qvm-x-acl">jita</AUni> -<AUni ws="qvm-x-akh">jita</AUni> -<AUni ws="qvm-x-akl">jita</AUni> -<AUni ws="qvm-x-ame">hita</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hita.v2</AUni> -<AUni ws="qvm-x-acl">*hita.v2</AUni> -<AUni ws="qvm-x-akh">*hita.v2</AUni> -<AUni ws="qvm-x-akl">*hita.v2</AUni> -<AUni ws="qvm-x-ame">*hita.v2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.731" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="57b1d961-01d8-4fbe-87ca-1c65cec621cb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hita.v2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7b5f8f27-345e-4dea-8978-41a45bb264ed" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c90ad49d-685d-4887-9dea-ab1ed2a3a974" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hita.v2 
\entryTyp root 
\gENG cast 
\gSPN echar 
\e *hita.v2 
\c V2 
\ach jita 
\akh jita 
\acl jita 
\akl jita 
\ame hita 
\mcc *hita.v2 / _... [trans] 
\mcc *hita.v2 / ~_ CAUS</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="2eccb4a6-a6dc-4f0e-8c6c-c8093528b0d2" ownerguid="716ec168-e053-46af-8a2a-ddaea677f7be"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">close</AUni> -<AUni ws="es">tapar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="90894922-4542-4c3b-b77f-eb73cb22fd1f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2ecd24b4-965e-4b8a-930b-c3097b2ef3c0" ownerguid="c345f278-91ff-463d-b9a6-8abac8a267eb"> -<ExampleWords> -<AUni ws="en">club moss</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(18) What species of club mosses are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2ece989d-1dbf-451a-b3a3-56d2d5002623" ownerguid="2e2a17ba-9d81-4a3d-8af5-96c8f0e39e7e"> -<ExampleWords> -<AUni ws="en">bank, storehouse, vault, safe, piggy bank, cookie jar, cash box, wallet, purse, money belt, under the mattress</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) Where is wealth stored?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2ed507df-d454-4a95-8c6a-3db0c525e8bc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">barril</AUni> -<AUni ws="qvm-x-acl">barril; barril; barrel</AUni> -<AUni ws="qvm-x-akh">barril</AUni> -<AUni ws="qvm-x-akl">barril; barril; barrel</AUni> -<AUni ws="qvm-x-ame">barril</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+barril</AUni> -<AUni ws="qvm-x-acl">+barril</AUni> -<AUni ws="qvm-x-akh">+barril</AUni> -<AUni ws="qvm-x-akl">+barril</AUni> -<AUni ws="qvm-x-ame">+barril</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.959" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9cb109f8-fb2f-4d4b-9b14-e06f93fb339a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+barril</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dd9e0450-d3db-4b6b-867c-953c57e90fbf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="38cadaa3-3362-4f54-b611-44a62fb922d3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +barril 
\entryTyp root 
\gENG barrel 
\gSPN barrel 
\e +barril 
\c N0 
\mp +FinalC 
\ach barril 
\akh barril 
\acl barril / _# 
\acl barril +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl barrel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl barril / _# 
\akl barril +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl barrel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame barril</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="2ed6281d-4e4f-43a1-b2aa-964ed5af3674"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jauna</AUni> -<AUni ws="qvm-x-acl">jauna</AUni> -<AUni ws="qvm-x-akh">jawna</AUni> -<AUni ws="qvm-x-akl">jawna</AUni> -<AUni ws="qvm-x-ame">hawna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hawana.v</AUni> -<AUni ws="qvm-x-acl">*hawana.v</AUni> -<AUni ws="qvm-x-akh">*hawana.v</AUni> -<AUni ws="qvm-x-akl">*hawana.v</AUni> -<AUni ws="qvm-x-ame">*hawana.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.690" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="218cd73f-2342-4c48-b522-c02a684b3a21" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hawana.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3435baa9-afe0-441c-87a7-85b0e8f2bc3f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2d7541fd-8d5e-4ee2-9151-77bdc4cb0dbb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hawana.v 
\entryTyp root 
\gENG 
\gSPN sostener 
\e *hawana.v 
\c V1 
\ach jauna 
\akh jawna 
\acl jauna 
\akl jawna 
\ame hawna 
\mcc *hawana.v / ~_ 3</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="2ed708d3-26f9-4502-9653-b628e93e8506"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mucyu</AUni> -<AUni ws="qvm-x-acl">mucyu; mucyu; mucyo</AUni> -<AUni ws="qvm-x-akh">mukyu</AUni> -<AUni ws="qvm-x-akl">mukyu; mukyu; mukyo</AUni> -<AUni ws="qvm-x-ame">mukyu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mukyu</AUni> -<AUni ws="qvm-x-acl">*mukyu</AUni> -<AUni ws="qvm-x-akh">*mukyu</AUni> -<AUni ws="qvm-x-akl">*mukyu</AUni> -<AUni ws="qvm-x-ame">*mukyu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.487" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d79f92af-1ec8-4915-b822-578ac0139a0f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mukyu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="42b97696-0fdd-4386-8d8d-78d433dbbb8f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6e0cf1b5-8bad-439d-94d7-2e7ddd8f294c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mukyu 
\entryTyp root 
\gENG 
\gSPN 
\e *mukyu 
\c N0 
\ach mucyu 
\akh mukyu 
\acl mucyu / _# 
\acl mucyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mucyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mukyu / _# 
\akl mukyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mukyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mukyu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="2ed83b4e-2d1b-4347-8400-183f5f6c0e73" ownerguid="a2fdb6a9-ed0c-4444-a101-5adab718b86b"> -<Form> -<AUni ws="qvm-x-ach">catu</AUni> -<AUni ws="qvm-x-acl">catu; cato</AUni> -<AUni ws="qvm-x-akh">katu</AUni> -<AUni ws="qvm-x-akl">katu; kato</AUni> -<AUni ws="qvm-x-ame">katu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2ed83c4a-86eb-4acf-8f5b-c7e8d04aa87e" ownerguid="1ae59286-36b6-40de-b2e2-8127030d6ebf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">store.potatoes</AUni> -<AUni ws="es">guardar.papas</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="76dff45c-686c-4e5c-b193-db43a63e76fd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2edb84c2-d134-434e-aa84-68ea849f3969" ownerguid="202c2c38-e8aa-4b82-a567-e7111fb3f511"> -<Form> -<AUni ws="qvm-x-ach">tucru</AUni> -<AUni ws="qvm-x-acl">tucru; tucro</AUni> -<AUni ws="qvm-x-akh">tukru</AUni> -<AUni ws="qvm-x-akl">tukru; tukro</AUni> -<AUni ws="qvm-x-ame">tukru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2edb948e-b447-4ead-8b03-40d8d3e94ba4" ownerguid="45f7b003-ade3-4efc-8dee-259dcbf80a4a"> -<ExampleWords> -<AUni ws="en">appeal (n), petition (n), request (n), solicitation, question</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to what is said when someone makes a request?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2edc2e03-06c8-4ca5-93fd-ad7a51c7a393" ownerguid="a9f5ead1-80d8-4344-8860-f035cb403617"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spill</AUni> -<AUni ws="es">derramar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9e5df875-3579-4c7e-89fe-38b5f2a1fe51" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="2edd491f-b480-41a0-94aa-92467ade8de3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quichqui</AUni> -<AUni ws="qvm-x-acl">quichqui; quichque</AUni> -<AUni ws="qvm-x-akh">kichki</AUni> -<AUni ws="qvm-x-akl">kichki; kichke</AUni> -<AUni ws="qvm-x-ame">kichki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kitrki.v</AUni> -<AUni ws="qvm-x-acl">*kitrki.v</AUni> -<AUni ws="qvm-x-akh">*kitrki.v</AUni> -<AUni ws="qvm-x-akl">*kitrki.v</AUni> -<AUni ws="qvm-x-ame">*kitrki.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.3" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cb205164-284c-4422-999d-beac5c7817af" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kitrki.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6a1f92e3-5b69-410c-8a90-24e24ded3353" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8fec0ef1-c298-4680-8ee4-c2e7aff3f516" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kitrki.v 
\entryTyp root 
\gENG 
\gSPN to.crowd 
\e *kitrki.v 
\c V1 
\mp +FinalI 
\ach quichqui 
\akh kichki 
\acl quichqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl quichque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kichki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kichke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kichki 
\mcc *kitrki.v / ~_ BEN2 
\mcc *kitrki.v / ~_ BEN1 DUR AG</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="2ede4825-ac22-4edf-8b87-bb4dedad5e2c" ownerguid="50566b61-7526-4162-8d4f-611e9a8f672f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="2ee1ab9d-0ca7-4b6a-8212-b3bc2d24a2ff" ownerguid="9db00bb9-0443-4017-9185-2a6e3f43e556"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="r" /> -</Morph> -</rt> -<rt class="WfiWordform" guid="2ee21c8c-1e85-4195-8e41-8d1d1ba80671"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">aywakumun</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="2ee2a1f9-95e6-4d69-af6c-71ab30cb0f8d" ownerguid="6f01b67c-33a0-4ed3-8205-f868e97a1a3a"> -<ExampleWords> -<AUni ws="en">traveler, passenger, tourist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a person who is traveling?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2ee3bb41-0248-41aa-b352-b8a1927cd48d" ownerguid="9edd1d74-f08a-4f5e-a196-3478c9a9d111"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="2ee4dabe-4a44-4e44-8d94-183adf0901ea" ownerguid="3fcd9a41-4aab-4e0a-a92d-3732842dce91"> -<Form> -<AUni ws="qvm-x-ach">tusha</AUni> -<AUni ws="qvm-x-acl">tusha</AUni> -<AUni ws="qvm-x-akh">tusha</AUni> -<AUni ws="qvm-x-akl">tusha</AUni> -<AUni ws="qvm-x-ame">tusha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2ee8ce4e-8cf7-4e7e-8ed9-64c1ee346585" ownerguid="ea17aba7-6d4e-4dbf-89ea-84a1b1c47647"> -<ExampleWords> -<AUni ws="en">small</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words describe a small container?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2ef10dfb-89a6-4d82-83a2-910544d7c4e5" ownerguid="7bd72622-c2c5-4ecc-97ef-60bbbe9008a2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cactus</AUni> -<AUni ws="es">nopal</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="83a0514a-6140-4b88-8d7d-a9800e488f72" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="2ef1c923-3a98-4b23-a1d1-99cf3fd74919"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yarputsi</AUni> -<AUni ws="qvm-x-acl">yarputsi; yarputse</AUni> -<AUni ws="qvm-x-akh">yarputsi</AUni> -<AUni ws="qvm-x-akl">yarputsi; yarputse</AUni> -<AUni ws="qvm-x-ame">yarputsi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yarpuchi</AUni> -<AUni ws="qvm-x-acl">*yarpuchi</AUni> -<AUni ws="qvm-x-akh">*yarpuchi</AUni> -<AUni ws="qvm-x-akl">*yarpuchi</AUni> -<AUni ws="qvm-x-ame">*yarpuchi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.760" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bc831a09-ec37-419b-894a-38a93d42b68c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yarpuchi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4891e48d-bb7c-4014-bb51-657f37725fde" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cb41b89b-d7bf-4d05-b346-1f4c68793fd3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yarpuchi 
\entryTyp root 
\gENG 
\gSPN hacer.bajar 
\e *yarpuchi 
\c V2 
\mp +FinalI 
\ach yarputsi 
\akh yarputsi 
\acl yarputsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl yarputse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yarputsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yarputse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame yarputsi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="2ef43df6-27e5-4493-a0bb-29a459207a6a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">capural</AUni> -<AUni ws="qvm-x-acl">capural</AUni> -<AUni ws="qvm-x-akh">capural</AUni> -<AUni ws="qvm-x-akl">capural</AUni> -<AUni ws="qvm-x-ame">capural</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+capural</AUni> -<AUni ws="qvm-x-acl">+capural</AUni> -<AUni ws="qvm-x-akh">+capural</AUni> -<AUni ws="qvm-x-akl">+capural</AUni> -<AUni ws="qvm-x-ame">+capural</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.52" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7137908e-4644-4ac6-93e6-228f44d65504" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+capural</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fa834b38-d5b9-4d8f-bffc-779c7b173159" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2a392b79-02e4-4558-8270-61dc1752c1ee" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +capural 
\entryTyp root 
\gENG ? 
\gSPN ? 
\e +capural 
\c N0 
\mp +FinalC 
\ach capural 
\akh capural 
\acl capural 
\akl capural 
\ame capural</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="2ef711fc-a58a-4ceb-b48a-7e1fc71ec429" ownerguid="17c6c88c-3826-4b4d-b870-856967839501"> -<Evaluations> -<objsur guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="1b619165-8798-4d24-8540-75733c2dc1c9" t="o" /> -<objsur guid="a0de790c-a0e3-477e-ab81-61518d8a6c21" t="o" /> -<objsur guid="e8d7775a-6b80-4740-ab32-93878969fdb2" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="2ef96063-86fe-4ee4-909b-1b770d479e89" ownerguid="284433df-7b37-4e63-a614-78520c483213"> -<ExampleWords> -<AUni ws="en">slither, glide</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) How do snakes move?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2f02df4e-5f69-4e5d-a001-dcb57c769f0a" ownerguid="e6b476da-71f1-48bd-a1cb-88b106dec2a5"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="2f033328-b19b-4bd9-9f5a-17e0c24ba219" ownerguid="e98ddf1c-3983-48cf-9741-902e978c8dfe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.face</AUni> -<AUni ws="es">carear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="05afacd9-c11a-4430-875a-9917a75b28d0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="2f038240-8d35-4fd2-a7d8-d93aaebc6793" ownerguid="8dd50c7c-53e0-4a97-9d2d-c09497e792d3" /> -<rt class="MoStemAllomorph" guid="2f055da6-d716-43ca-8f71-f2d2cdd92afe" ownerguid="3ca10d5c-77d8-4b6c-8dad-a24807659aa6"> -<Form> -<AUni ws="qvm-x-ach">wegti</AUni> -<AUni ws="qvm-x-acl">wegti; wegte</AUni> -<AUni ws="qvm-x-akh">weqti</AUni> -<AUni ws="qvm-x-akl">weqti; weqte</AUni> -<AUni ws="qvm-x-ame">wiqti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2f058427-718c-44f3-9719-92672418fd8d" ownerguid="6afd1b44-48cb-4b05-adbc-71adccc401ff"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">jerky</AUni> -<AUni ws="es">charqui</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5e637fee-1c0e-4aad-a4c0-0a8b5fef4d76" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2f0698bd-fed6-47e9-b689-2fe12c1b5ab6" ownerguid="e6b476da-71f1-48bd-a1cb-88b106dec2a5"> -<Form> -<AUni ws="qvm-x-ach">nanapara; nanaparä</AUni> -<AUni ws="qvm-x-acl">nanapara; nanaparä</AUni> -<AUni ws="qvm-x-akh">nanapara; nanaparä</AUni> -<AUni ws="qvm-x-akl">nanapara; nanaparä</AUni> -<AUni ws="qvm-x-ame">nanapara; nanaparä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="2f07b895-9867-4be1-a570-b910fca6e0af"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">nacionqa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="2f0935dc-3f29-46d7-a07d-75230de3b17f" ownerguid="c0f4715e-55c9-4379-ab6f-ad561a5e7151"> -<ExampleWords> -<AUni ws="en">evidence, grounds, basis</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to the reason a person believes something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2f0b2d4a-acff-4ac4-8380-99f05dd5f545" ownerguid="5fd34ae2-6b2d-4841-ac57-cee710e19006"> -<Form> -<AUni ws="qvm-x-ach">üsu</AUni> -<AUni ws="qvm-x-acl">üsu; üsu; üso</AUni> -<AUni ws="qvm-x-akh">üsu</AUni> -<AUni ws="qvm-x-akl">üsu; üsu; üso</AUni> -<AUni ws="qvm-x-ame">üsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2f0f8a21-8efc-4ef6-802d-d8e971826016" ownerguid="01d78278-4376-4e9b-bf37-5423217504d9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="7586b07b-2280-4b13-96f0-3358ed3eee32" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="be6eae69-0c6b-4e11-9607-30b7c187b7be" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="2f11a76b-9af1-4544-b0f0-f5749959c73c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">usya</AUni> -<AUni ws="qvm-x-acl">usya</AUni> -<AUni ws="qvm-x-akh">usya</AUni> -<AUni ws="qvm-x-akl">usya</AUni> -<AUni ws="qvm-x-ame">usya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*usya.n</AUni> -<AUni ws="qvm-x-acl">*usya.n</AUni> -<AUni ws="qvm-x-akh">*usya.n</AUni> -<AUni ws="qvm-x-akl">*usya.n</AUni> -<AUni ws="qvm-x-ame">*usya.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.292" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b8a312be-6a2b-4da5-86a1-8e9e20dbf199" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*usya.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e6e50926-4e2d-4b5e-bf33-fed1a832f5da" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="688863f2-17ad-44be-a149-c7c410933fcd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *usya.n 
\entryTyp root 
\gENG clear 
\gSPN escampar 
\e *usya.n 
\c N0 
\ach usya 
\akh usya 
\acl usya 
\akl usya 
\ame usya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2f1224c9-015a-480f-a769-7c88460b8b1d" ownerguid="ffcc57f8-6c6d-4bf4-85be-9220ca7c739d"> -<ExampleWords> -<AUni ws="en">remarry, remarriage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to marrying again after being widowed or divorced?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="2f151c35-72e1-4665-bc05-6fc70a3ecff2" ownerguid="4275df2e-d4f6-461a-9279-39e0712dc082"> -<Abbreviation> -<AUni ws="en">2.3.1.8.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.32" /> -<DateModified val="2022-9-23 16:55:8.32" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing someone or something that is ugly--not pleasing in appearance.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79D Beautiful, Ugly</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Ugly</AUni> -</Name> -<Questions> -<objsur guid="1efc3f18-182b-4544-b4d4-b5693af9cb69" t="o" /> -<objsur guid="d3ead23b-0cd4-43ec-bbd3-4c248da91253" t="o" /> -<objsur guid="ee298e81-06aa-4185-a410-76732a85c3bb" t="o" /> -<objsur guid="345aa09b-4b52-4fa7-b71e-179120466169" t="o" /> -<objsur guid="c310cf3e-8c9c-4752-8be0-27bc1948b02e" t="o" /> -<objsur guid="ea040675-8fd1-4659-a1d7-2f1bbf055353" t="o" /> -<objsur guid="e69610ea-1788-4540-9212-4e771d467985" t="o" /> -<objsur guid="318f2179-c0fd-4c9b-b4a3-a5254e3d98f8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="2f16311f-c325-492c-a958-93c1f5ea057d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cutsu</AUni> -<AUni ws="qvm-x-acl">cutsu; cutso</AUni> -<AUni ws="qvm-x-akh">kutsu</AUni> -<AUni ws="qvm-x-akl">kutsu; kutso</AUni> -<AUni ws="qvm-x-ame">kutsu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kuchu</AUni> -<AUni ws="qvm-x-acl">*kuchu</AUni> -<AUni ws="qvm-x-akh">*kuchu</AUni> -<AUni ws="qvm-x-akl">*kuchu</AUni> -<AUni ws="qvm-x-ame">*kuchu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.3" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c45cf65c-09c5-405f-9994-f6c72c4b61f9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kuchu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9eb2db55-c39c-4f11-bc8c-525ceb6d1662" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c94eaa39-4ca3-4937-9fd8-4a242c9e79e8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kuchu 
\entryTyp root 
\gENG cut 
\gSPN cortar 
\e *kuchu 
\c V2 
\ach cutsu 
\akh kutsu 
\acl cutsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl cutso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kutsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kutso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kutsu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="2f164160-f983-4d0c-b026-d048d8b88976" ownerguid="52de16bd-6e72-403c-a187-0c5178ce44b5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="c0a8d088-78b3-40e6-a4ea-e43393fea3a3" t="r" /> -</Morph> -<Msa> -<objsur guid="3503ea2c-6d6a-40bd-ab49-d2f29a6d368a" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="2f193b45-e3e4-4de7-b033-ccb525d16256" ownerguid="858188d8-a065-4935-be65-2786d510e503"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="4a65ee03-8cbc-4b05-b5f0-e07e3be8f881" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="d4182dfa-488f-4ef2-beae-b4cde64fdbaa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="2f196632-8bc5-4e81-b006-65e570981414"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wari</AUni> -<AUni ws="qvm-x-acl">wari; ware</AUni> -<AUni ws="qvm-x-akh">wari</AUni> -<AUni ws="qvm-x-akl">wari; ware</AUni> -<AUni ws="qvm-x-ame">wari</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wari.v</AUni> -<AUni ws="qvm-x-acl">*wari.v</AUni> -<AUni ws="qvm-x-akh">*wari.v</AUni> -<AUni ws="qvm-x-akl">*wari.v</AUni> -<AUni ws="qvm-x-ame">*wari.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.534" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="58a8c86d-1be6-435f-9dad-a3f26a0e2bfd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wari.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dfe007a4-f2c3-49c4-a95e-aec20dd84db1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b3747a01-4413-473e-a8df-a437ec2f250e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wari.v 
\entryTyp root 
\gENG be.hot 
\gSPN ser.caliente 
\e *wari.v 
\c V1 
\mp +FinalI 
\ach wari 
\akh wari 
\acl wari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ware +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ware +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wari</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="2f1d6814-7b70-4ecf-ba81-86cf55c4970e" ownerguid="1540a357-563e-4f46-8004-4ff10ab15876"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="2f1db449-959c-48ed-a922-89052cfdb165" ownerguid="00a0c11a-91df-4639-9564-610d81425ce9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">handkerchief</AUni> -<AUni ws="es">pañuelo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2e64bb97-2b53-402b-a764-c24749e89f58" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2f1e4b2b-ea1b-4dc9-ab4a-7748d7f25360" ownerguid="e931da8a-efc1-46cb-836a-72fba4a1eb4f"> -<ExampleWords> -<AUni ws="en">take, bring, escort, whisk someone away</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to taking someone somewhere?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="2f1e7c1e-2a3e-4567-92aa-4ad250403417"> -<Analyses> -<objsur guid="1faa4b42-bd79-4797-aa30-587d4773ce4e" t="o" /> -</Analyses> -<Checksum val="-469919684" /> -<Form> -<AUni ws="qvm-x-akh">rikapäman</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="2f1fc2cd-042b-40c1-b6de-b91989d80a6d" ownerguid="78e69fe7-3b10-4c63-978c-ad8026cd9808"> -<Form> -<AUni ws="qvm-x-ach">acusa</AUni> -<AUni ws="qvm-x-acl">acusa</AUni> -<AUni ws="qvm-x-akh">acusa</AUni> -<AUni ws="qvm-x-akl">acusa</AUni> -<AUni ws="qvm-x-ame">acusa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="2f20e2a5-9e6b-4c6a-a7e5-3c4e64c35d14"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shilcu</AUni> -<AUni ws="qvm-x-acl">shilcu; shilcu; shilco</AUni> -<AUni ws="qvm-x-akh">shilku</AUni> -<AUni ws="qvm-x-akl">shilku; shilku; shilko</AUni> -<AUni ws="qvm-x-ame">shilku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shillku</AUni> -<AUni ws="qvm-x-acl">*shillku</AUni> -<AUni ws="qvm-x-akh">*shillku</AUni> -<AUni ws="qvm-x-akl">*shillku</AUni> -<AUni ws="qvm-x-ame">*shillku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.581" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f64da5d0-17fd-4537-b37f-0a7d73a3f9a3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shillku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a3874e81-d550-4db1-8f35-ac3a1c7c4659" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7b1190ea-1558-41e8-a5da-668d010c049d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shillku 
\entryTyp root 
\gENG sticker 
\gSPN espina 
\e *shillku 
\c N0 
\ach shilcu 
\akh shilku 
\acl shilcu / _# 
\acl shilcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shilco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shilku / _# 
\akl shilku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shilko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shilku</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="2f213891-c720-4bf4-b597-fa3fbf1e8517" ownerguid="6d9b435c-f319-4c9b-958d-2a3d0454a6ea"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">camel</AUni> -<AUni ws="es">camello</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a2412f4b-abe7-4a95-8d08-f0ce1928a6dc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2f22b5e5-1eec-4b90-a0ad-275e3b40b3d9" ownerguid="1bd6b7a5-bf54-4161-bd0f-224286974fef"> -<Form> -<AUni ws="qvm-x-ach">monstru; monstro</AUni> -<AUni ws="qvm-x-acl">monstru; monstru; monstro</AUni> -<AUni ws="qvm-x-akh">monstru; monstro</AUni> -<AUni ws="qvm-x-akl">monstru; monstru; monstro</AUni> -<AUni ws="qvm-x-ame">monstru; monstro</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="2f259730-53c5-4b4e-9f6c-c4218500afdf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">malase:ña</AUni> -<AUni ws="qvm-x-acl">malase:ña</AUni> -<AUni ws="qvm-x-akh">malase:ña</AUni> -<AUni ws="qvm-x-akl">malase:ña</AUni> -<AUni ws="qvm-x-ame">malase:ña</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mala.seña</AUni> -<AUni ws="qvm-x-acl">+mala.seña</AUni> -<AUni ws="qvm-x-akh">+mala.seña</AUni> -<AUni ws="qvm-x-akl">+mala.seña</AUni> -<AUni ws="qvm-x-ame">+mala.seña</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.275" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="322991ce-cc53-4ad2-a124-f225e2ab7ac1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mala.seña</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7a23df81-50b9-4613-b77f-9700b133a3b8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="08e4e395-3a98-44c6-ae49-a1b6efd01a72" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mala.seña 
\entryTyp root 
\gENG evil.omen 
\gSPN mala.se¤a 
\e +mala.seña 
\c N0 
\ach malase:ña 
\akh malase:ña 
\acl malase:ña 
\akl malase:ña 
\ame malase:ña</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="2f28f1ab-476e-4317-8787-124d95d6b9d2" ownerguid="b2fd2d29-1389-4114-91a8-15b8d9742794"> -<Abbreviation> -<AUni ws="en">9.6.2.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.720" /> -<DateModified val="2022-9-23 16:55:8.720" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that the speaker is conceding a point in a debate.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89K Concession</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Concession</AUni> -</Name> -<Questions> -<objsur guid="e2b73d6a-99b1-4f6d-9ede-5770864b89a4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="2f2d9029-530c-4282-b5dd-f049776d7ba7" ownerguid="5c69b52c-85cf-49fc-9976-95b5f8f7c104"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">weed</AUni> -<AUni ws="es">desyerbar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="23193c5a-77b5-480c-937e-1e265768f050" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2f3198fe-a5e4-4a35-a833-22d69589d1b8" ownerguid="9a456463-3c71-4f9a-8117-dc2fcb087bd3"> -<ExampleWords> -<AUni ws="en">rekindle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to restarting a fire that has died down?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2f33b4f7-25dd-447b-b1c7-354c295a270d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">garmi; garma</AUni> -<AUni ws="qvm-x-acl">garmi; garme; garma</AUni> -<AUni ws="qvm-x-akh">qarmi; qarma</AUni> -<AUni ws="qvm-x-akl">qarmi; qarme; qarma</AUni> -<AUni ws="qvm-x-ame">qarmi; qarma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qarmI</AUni> -<AUni ws="qvm-x-acl">*qarmI</AUni> -<AUni ws="qvm-x-akh">*qarmI</AUni> -<AUni ws="qvm-x-akl">*qarmI</AUni> -<AUni ws="qvm-x-ame">*qarmI</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.116" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="761acd0e-249e-4bc6-b157-eab6769a8f31" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qarmI</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1f14932d-1bfa-4097-8adf-9b2fd9513672" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0a442874-c534-437b-ad54-0a941d25b112" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qarmI 
\entryTyp root 
\gENG open 
\gSPN abrir 
\e *qarmI 
\c V1 
\mp +FinalI 
\ach garmi 
\ach garma morphlowered 
\akh qarmi 
\akh qarma morphlowered 
\acl garmi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl garme +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl garma morphlowered 
\akl qarmi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qarme +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qarma morphlowered 
\ame qarmi 
\ame qarma morphlowered</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="2f33bc13-61ef-4192-9634-72d503c0e1ba"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">da:ñu</AUni> -<AUni ws="qvm-x-acl">da:ñu; da:ño</AUni> -<AUni ws="qvm-x-akh">da:ñu</AUni> -<AUni ws="qvm-x-akl">da:ñu; da:ño</AUni> -<AUni ws="qvm-x-ame">da:ñu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+dañar.2</AUni> -<AUni ws="qvm-x-acl">+dañar.2</AUni> -<AUni ws="qvm-x-akh">+dañar.2</AUni> -<AUni ws="qvm-x-akl">+dañar.2</AUni> -<AUni ws="qvm-x-ame">+dañar.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.364" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="13608284-783e-46b9-b96c-07b6ed91f713" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+dañar.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f2b016d8-6538-4f8c-b4dc-338d66daa19a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1994ff5e-a8a7-4128-9fba-4d61b0c2fca4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +dañar.2 
\entryTyp root 
\gENG to.damage 
\gSPN dañar 
\e +dañar.2 
\c V1 
\ach da:ñu 
\akh da:ñu 
\acl da:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl da:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl da:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl da:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame da:ñu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2f343e25-995d-4d51-8c67-d9f235961de0" ownerguid="e626c65e-eb79-4230-b07a-a6d975d3fe3d"> -<ExampleWords> -<AUni ws="en">wipe, cover, gag someone</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What do people do to their mouth?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2f36236a-7e24-4216-aaa6-b5633b87c7c9" ownerguid="1438c623-c4ce-4559-b71b-cfb86a71e6d7"> -<ExampleWords> -<AUni ws="en">catch fire, start burning, burst into flames, spark, smolder</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something beginning to burn?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2f38c1e9-d82f-4c59-9a6c-db9e9cd4d408" ownerguid="6910b634-4d03-4fea-b771-849f2948e5c6"> -<Form> -<AUni ws="qvm-x-ach">idiöma</AUni> -<AUni ws="qvm-x-acl">idiöma</AUni> -<AUni ws="qvm-x-akh">idiöma</AUni> -<AUni ws="qvm-x-akl">idiöma</AUni> -<AUni ws="qvm-x-ame">idiöma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2f39e518-401f-458a-a713-f05d354a7570" ownerguid="45993c48-3893-4d9e-96a3-b6b1ad160538"> -<ExampleWords> -<AUni ws="en">poor (person, man), destitute (person), needy, bankrupt, broke, needy, underprivileged, impoverished</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who is poor?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2f3aa923-0f00-4789-b8e3-fd04945c740e" ownerguid="e2d3294b-4463-48bb-95e4-8c9b5238ecec"> -<ExampleWords> -<AUni ws="en">be ridiculous, make a fool of yourself</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to doing something that causes someone to mock you?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2f3e3877-d1c9-4649-8384-3a5e96a49164" ownerguid="4c4894d5-6bbc-46cb-91f9-fbcfcd3931e7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="2f3f3967-2be5-4d03-8fcd-de9d0b412e98" ownerguid="022e57c2-c632-4419-93be-602cf7f29c7d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="bd38f425-3c0e-45b3-9389-0e9653691e4f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="2f48550a-3702-4bdb-bb3e-09bee13e0c4e" ownerguid="784206f3-6f68-4d54-b582-250080a9b777"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="338d8dd1-c4af-406d-a709-7b555df2ae1f" t="o" /> -<objsur guid="bb35f5d6-849e-433b-bc91-147c3017e028" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">BCM1.1</AUni> -<AUni ws="es">CONV1</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b5d8be30-16d2-419e-bb80-39977d5242bd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2f4ad7be-19f4-44ce-8ee3-3bdaed50db31" ownerguid="1dc717b9-c5e8-4482-b076-22102da9d553"> -<ExampleWords> -<AUni ws="en">crime, misdemeanor, felony, capital offense, treason, illegality, lawbreaking, offense, wrong, wrongdoing, outrage, transgression, trespass, sin, evil</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a crime?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2f4b584d-4d3a-4959-9246-bf8329215dab" ownerguid="d0959394-18a5-4fbf-a6b5-173495682fd3"> -<Form> -<AUni ws="qvm-x-ach">cuerpu; cuerpo</AUni> -<AUni ws="qvm-x-acl">cuerpu; cuerpu; cuerpo</AUni> -<AUni ws="qvm-x-akh">cuerpu; cuerpo</AUni> -<AUni ws="qvm-x-akl">cuerpu; cuerpu; cuerpo</AUni> -<AUni ws="qvm-x-ame">cuerpu; cuerpo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="2f4e5b2e-ec3c-4fb7-b766-8cda065082a4" ownerguid="0a75e517-fa73-453b-b77e-dc73f12fb569"> -<Form> -<AUni ws="qvm-x-ach">legïtimu</AUni> -<AUni ws="qvm-x-acl">legïtimu; legïtimu; legïtimo</AUni> -<AUni ws="qvm-x-akh">legïtimu</AUni> -<AUni ws="qvm-x-akl">legïtimu; legïtimu; legïtimo</AUni> -<AUni ws="qvm-x-ame">legïtimu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="2f58bd8d-98ba-43a6-a143-441d8a630f7d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ruri</AUni> -<AUni ws="qvm-x-acl">ruri; ruri; rure</AUni> -<AUni ws="qvm-x-akh">ruri</AUni> -<AUni ws="qvm-x-akl">ruri; ruri; rure</AUni> -<AUni ws="qvm-x-ame">ruri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ruri</AUni> -<AUni ws="qvm-x-acl">*ruri</AUni> -<AUni ws="qvm-x-akh">*ruri</AUni> -<AUni ws="qvm-x-akl">*ruri</AUni> -<AUni ws="qvm-x-ame">*ruri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.399" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4a2e2644-f3c7-430c-bccc-06e6174f233f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ruri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="df2a1f95-f8e8-4991-bd04-18eda8f38d73" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b7d62112-bdc1-4c17-8d57-1555f22d56e4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ruri 
\entryTyp root 
\gENG inside 
\gSPN adentro 
\e *ruri 
\c N0 
\mp +FinalI 
\ach ruri 
\akh ruri 
\acl ruri / _# 
\acl ruri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl rure +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ruri / _# 
\akl ruri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl rure +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ruri</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="2f59b387-4523-42cb-baa3-eeea40f02a93" ownerguid="5f0f5899-03f5-4d31-9b11-4a84db13c35d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">let's.go</AUni> -<AUni ws="es">vamos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="86a40190-3765-4ed7-bc6e-630b3d19ad1c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2f5b07ba-8f3f-4f23-a784-dd40b75a79cf" ownerguid="2158eb7d-eb59-4740-9628-9080d7f51a97"> -<ExampleWords> -<AUni ws="en">wake (someone) up, get (someone) up, rouse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to someone waking someone else up?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2f5c5f9e-a882-49cb-b08d-768ea391729c" ownerguid="89e72c49-ac4e-49d6-b972-b04ad54d9e0d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="2f60136d-3e81-4fd9-8321-d0deff74d2be" ownerguid="f1e7c689-72f6-4766-8c94-0330e54bbb14"> -<Form> -<AUni ws="qvm-x-ach">chegri</AUni> -<AUni ws="qvm-x-acl">chegri; chegri; chegre</AUni> -<AUni ws="qvm-x-akh">cheqri</AUni> -<AUni ws="qvm-x-akl">cheqri; cheqri; cheqre</AUni> -<AUni ws="qvm-x-ame">chiqri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="2f6365b3-e63b-4b09-b3ad-af787773ff21" ownerguid="1bd626c2-0c06-4697-a9ab-0a79acfeb152"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="2f66241c-4724-4c50-8860-915d2f076d09" ownerguid="58f26019-27ad-44ab-a3bd-82eb8e5fce32"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">peel</AUni> -<AUni ws="es">mondar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6aab7496-9a3b-48df-913c-175a10f03a79" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2f6864f2-fe86-41ca-9ff3-c3291a427c9a" ownerguid="2eaf4079-1eac-43b3-bd42-4225eb59613b"> -<Form> -<AUni ws="qvm-x-ach">säcu</AUni> -<AUni ws="qvm-x-acl">säcu; säcu; säco</AUni> -<AUni ws="qvm-x-akh">säcu</AUni> -<AUni ws="qvm-x-akl">säcu; säcu; säco</AUni> -<AUni ws="qvm-x-ame">säcu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2f6b8aa0-16be-4ba6-8531-0619759ae7b3" ownerguid="7c6cad26-79c3-403a-a3aa-59babdfcd46f"> -<ExampleWords> -<AUni ws="en">be sick, be ill, not be well, be in a bad way, do poorly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being sick?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2f6ef9fd-0111-454e-b40b-5c6bead1acd1" ownerguid="88829161-f325-46c5-afa1-4c3ad14c987b"> -<Form> -<AUni ws="qvm-x-ach">tsaca</AUni> -<AUni ws="qvm-x-acl">tsaca</AUni> -<AUni ws="qvm-x-akh">tsaka</AUni> -<AUni ws="qvm-x-akl">tsaka</AUni> -<AUni ws="qvm-x-ame">tsaka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2f718c6f-29a3-4cf4-838b-e900bd641d5b" ownerguid="46c44f13-ca96-4108-bc90-950e4c3a25c7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="bc9f24b0-f740-42c8-ba9d-fa8bd4e652c0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2f750a70-27ba-4b05-89fc-f7c834b08059" ownerguid="628d8675-0a30-46be-a46d-8a584a52ad5b"> -<Form> -<AUni ws="qvm-x-ach">tapia</AUni> -<AUni ws="qvm-x-acl">tapia</AUni> -<AUni ws="qvm-x-akh">tapia</AUni> -<AUni ws="qvm-x-akl">tapia</AUni> -<AUni ws="qvm-x-ame">tapia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2f75ebe0-6650-4723-8960-18596ca96997" ownerguid="1a635032-6e13-4a56-aa03-6c6a015c502e"> -<ExampleWords> -<AUni ws="en">make someone unsure, make someone uncertain, cause doubt, cause uncertainty, it makes you wonder, raise doubts</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to making someone unsure about something?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="2f767ec6-4adc-40e2-91b9-89d650b6a7b6" ownerguid="af080ffa-3fd0-43d6-ac09-22c545bbfbb0"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ISA 17.5 Trïguta achuriptin raströjulana quëdashgannogmi canga.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="2f7a41e6-ea19-4e47-bfb1-9a642e3a0182" ownerguid="a7ecefe2-bb1a-45db-ba70-38a81182c855"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StText" guid="2f802856-a864-428c-9f5e-b1de2b6a510e" ownerguid="1b88aaa4-d6e9-45a2-92d8-fdcfa9d75cd6"> -<DateModified val="2022-10-11 16:10:53.19" /> -<Paragraphs> -<objsur guid="7ff31d9c-f8ac-4cd6-9102-74aaac2da6dc" t="o" /> -<objsur guid="2672eed3-c1ce-4367-bad4-a4ee4904abc6" t="o" /> -<objsur guid="c6f4df11-a92b-4446-a8d7-dc6bc8cc11a1" t="o" /> -</Paragraphs> -<RightToLeft val="False" /> -</rt> -<rt class="MoStemAllomorph" guid="2f867bb9-24d2-46a9-8042-4f0ca47eaf34" ownerguid="9040c8fd-b0d7-4fdd-97c0-081a6a79531f"> -<Form> -<AUni ws="qvm-x-ach">yanin</AUni> -<AUni ws="qvm-x-acl">yanin</AUni> -<AUni ws="qvm-x-akh">yanin</AUni> -<AUni ws="qvm-x-akl">yanin</AUni> -<AUni ws="qvm-x-ame">yanin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2f87af16-3fdc-4261-a570-a22600c1ed09" ownerguid="df2ee830-0668-43d7-8a32-e2fd3e7b31d8"> -<Question> -<AUni ws="en">(5) hesternal: yesterday.</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2f884421-8838-4f28-afcf-b828c57efebf" ownerguid="4a18c381-84a9-484b-8727-f8e9244c3404"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="2f8876d6-cac1-4f38-91fa-35afc196b9f4" ownerguid="0ff6458d-3bc8-4c59-bc24-edba90fa582d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="58ea2c9c-9f7e-40a1-a60a-5588872eadc1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="2f895f94-e468-42c6-8195-683926f2f150" ownerguid="321264e3-bd8d-4c08-895b-94f56a413b40"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="2f8a2a0b-1dc6-432c-bf9b-3211cefbfb81" ownerguid="f124a350-c42e-4830-802c-3d3e504eb958"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sob</AUni> -<AUni ws="es">sollozar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f5b788f0-d468-40fd-8d4f-30bdf106fc81" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2f8a5488-e469-4e6f-a23b-35c5afe48021" ownerguid="bdaecf2f-d0fa-49f7-891e-bcb0a31ae630"> -<ExampleWords> -<AUni ws="en">sequel, aftermath, what follows</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the events that happen after an event?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2f8d3d51-bd5c-4d37-914c-4e5adf14601e" ownerguid="11f85ff3-8d15-431b-af47-45e271989db6"> -<Form> -<AUni ws="qvm-x-ach">tsacwa</AUni> -<AUni ws="qvm-x-acl">tsacwa</AUni> -<AUni ws="qvm-x-akh">tsakwa</AUni> -<AUni ws="qvm-x-akl">tsakwa</AUni> -<AUni ws="qvm-x-ame">tsakwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="2f8fa194-59ac-43e5-a1a9-4aa4903d0caf" ownerguid="a47a29e7-0fb2-4c94-8bc5-bcf87a0f1276"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="2f90b295-69a2-4a45-856d-87a80bfe4852" ownerguid="2ab6f9f3-60c4-49e9-8068-4cd757b56390"> -<Form> -<AUni ws="qvm-x-ach">babul</AUni> -<AUni ws="qvm-x-acl">babul</AUni> -<AUni ws="qvm-x-akh">babul</AUni> -<AUni ws="qvm-x-akl">babul</AUni> -<AUni ws="qvm-x-ame">babul</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="2f92dfc5-4875-4210-b116-9e7960cbdadc" ownerguid="30e52c37-25d0-4ade-8e84-12f17bf413bd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="2f934c7c-77e6-4458-a39d-336433d1daee" ownerguid="e44c182e-34ee-4712-9db8-cd2fbaf0ec26"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="2f94bca1-a6d8-417f-a0d1-6a9bc16c15fa" ownerguid="80ee826e-1a27-421d-968b-80e0a6e177f0"> -<Form> -<AUni ws="qvm-x-ach">desmaya</AUni> -<AUni ws="qvm-x-acl">desmaya</AUni> -<AUni ws="qvm-x-akh">desmaya</AUni> -<AUni ws="qvm-x-akl">desmaya</AUni> -<AUni ws="qvm-x-ame">desmaya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="2f96b703-04b0-40bb-9139-09bc5a50b43d" ownerguid="21f21658-a69a-491c-a37b-156a8f4ad3fb"> -<ExampleWords> -<AUni ws="en">be out of place, be out of keeping, not be in keeping, incongruous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something being unsuitable for a particular place?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2f9714d1-97ec-497b-b74c-d56d2b30d283"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ticpi</AUni> -<AUni ws="qvm-x-acl">ticpi; ticpi; ticpe</AUni> -<AUni ws="qvm-x-akh">tikpi</AUni> -<AUni ws="qvm-x-akl">tikpi; tikpi; tikpe</AUni> -<AUni ws="qvm-x-ame">tikpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tikpi.n</AUni> -<AUni ws="qvm-x-acl">*tikpi.n</AUni> -<AUni ws="qvm-x-akh">*tikpi.n</AUni> -<AUni ws="qvm-x-akl">*tikpi.n</AUni> -<AUni ws="qvm-x-ame">*tikpi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.894" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="05778617-d490-43b6-a80a-6b449e76a41d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tikpi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="468a9fe9-dbfc-407f-b965-6c9308bfabfc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8e9a3f84-2199-4b06-b220-ff5724cc1106" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tikpi.n 
\entryTyp root 
\gENG pin 
\gSPN imperdible 
\e *tikpi.n 
\c N0 
\mp +FinalI 
\ach ticpi 
\akh tikpi 
\acl ticpi / _# 
\acl ticpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ticpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tikpi / _# 
\akl tikpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tikpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tikpi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="2f97652f-c3ff-44d8-8e3a-9d241c75352c" ownerguid="76ad9048-8462-46f3-9de2-61b1a32bc35f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">pobrecito</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d5f5faf3-d944-4b05-b49c-42fe18154f4b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="2f98291a-47a7-4b7b-9256-2c0249105be1" ownerguid="fe9253f4-d063-4d63-91af-85273d61337f"> -<Abbreviation> -<AUni ws="en">8.3.5.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.619" /> -<DateModified val="2022-9-23 16:55:8.619" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing a group of things that are all different from each other.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Various</AUni> -</Name> -<Questions> -<objsur guid="2310d329-6eca-4f7b-b530-0b6145259a5c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="2f9d1d60-88a0-4795-a849-c7adae2cf46b" ownerguid="eb842dc1-ad9c-4c1a-9eb2-a48b7f3092be"> -<ExampleWords> -<AUni ws="en">the air force</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the air force?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2f9ef6f2-636b-42df-a6a1-3c9113524170" ownerguid="ac876e5b-d93a-4188-b511-c928871446cd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="2f9fae77-2d1a-454b-908a-853b1318f847" ownerguid="41bf21ef-863d-48f1-9051-99fd35b16f2a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">godfather</AUni> -<AUni ws="es">padrino</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="62891c29-7bde-42e5-87c7-7e58f9d67da6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2fa0fcad-b5f6-41b4-89c2-25d4bf1ca64a" ownerguid="e7caa24f-155d-47cd-946d-cc0d06dfc764"> -<ExampleWords> -<AUni ws="en">adore, worship, be devoted to, dote on, think the world of, mean the world to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to loving someone very much?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2faa2764-a720-4e2e-8fe5-9cf948ecb604" ownerguid="23fb1571-c04e-4850-b499-f170bc45247f"> -<ExampleWords> -<AUni ws="en">eye exam, prescription, frames, lens</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the making of glasses?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2fabf27e-a3b4-49d4-a178-ac4e862de439" ownerguid="8d59263b-19c2-4281-bf59-8448128f2326"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="2fad72c5-6105-419b-bd70-bc9415b3e9a0" ownerguid="304b7d5f-51af-480a-af98-77a7578039fa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="c42d52a8-59f3-4a45-9b3f-12fd27adff57" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2fadb2ee-e65d-4b03-891b-744bcc302f86" ownerguid="63d7756e-2388-447c-8e80-bcfead5b05df"> -<Form> -<AUni ws="qvm-x-ach">cebatsi</AUni> -<AUni ws="qvm-x-acl">cebatsi; cebatse</AUni> -<AUni ws="qvm-x-akh">cebatsi</AUni> -<AUni ws="qvm-x-akl">cebatsi; cebatse</AUni> -<AUni ws="qvm-x-ame">cebatsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="2fb2f317-3aa1-47ac-95e5-7b76ad3cac69" ownerguid="1f23990c-bafd-49dd-b996-d3280fcabc73"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">LUK 6.38 Melqayniki juntatami melqapäshunkipaq.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="2fb7213e-0e9b-4f92-bb67-d0acb24f26e8" ownerguid="df6302ad-0d24-4317-ad63-b99c6039aaab"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="2fbd26b9-f5b2-41bb-b813-3759b2601a1b" ownerguid="bb895a9a-d6f3-41ed-9603-2b424e317208"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">potter.wheel</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="98598227-82c9-408f-a7fa-e6d9edc4248f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2fc3e74a-b1a1-4a8e-a01e-f5b1f2731152" ownerguid="62964baf-fea6-4d8e-8509-d312bff8761a"> -<ExampleWords> -<AUni ws="en">pole, pack, backpack, suitcase, case, briefcase, sling, stretcher, tray, grass ring for head, carrying basket for back, rope, string, liana</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What tools are used for carrying things?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="2fc3f27d-1b50-4882-bfa6-5880c00505a5" ownerguid="673cbb74-543d-43d6-a3fc-8f6cb079080b"> -<Form> -<AUni ws="qvm-x-ach">shatya</AUni> -<AUni ws="qvm-x-acl">shatya</AUni> -<AUni ws="qvm-x-akh">shatya</AUni> -<AUni ws="qvm-x-akl">shatya</AUni> -<AUni ws="qvm-x-ame">shatya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2fc5ebfb-79c9-4c5f-a273-298ebb941cc8" ownerguid="0d4d4f1b-a385-4ea0-9496-9ff1b7a2b52a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">running</AUni> -<AUni ws="es">corriendo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="567ed321-3668-4132-aaae-04c42f174895" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="2fc69f71-e9f1-45f9-b88e-bdaf97457fc3" ownerguid="df149819-608f-46cd-ba0f-55f1d9d2e8ec"> -<Abbreviation> -<AUni ws="en">8.4.8.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.660" /> -<DateModified val="2022-9-23 16:55:8.660" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to doing something at a quick speed or something happening quickly.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Quick</AUni> -</Name> -<Questions> -<objsur guid="5450d52f-7395-45b7-a5f6-4a294adaf6f4" t="o" /> -<objsur guid="e263a4ae-76b1-4fd9-b269-b394047f90fe" t="o" /> -<objsur guid="66a933f6-44c1-48a2-aaa3-3eb97c31b9b8" t="o" /> -<objsur guid="28b76dcc-1ef9-4d17-834e-a0774a3867eb" t="o" /> -<objsur guid="ef1154e6-b822-44d9-a5dd-96c5dba4249d" t="o" /> -<objsur guid="68f17f5c-87fb-457c-8249-0266f253ca17" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="1017cbc3-0dfb-4930-9881-28f96784035c" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="2fc6c80d-e6ee-4a91-8466-43f3b1b056d8" ownerguid="658631d0-f29a-4ed0-925e-04fa323762f9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wayi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wayi; wayi; waye</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wayi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wayi; wayi; waye</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wayi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="908a9492-ef77-4052-a703-5d519cb12013" t="r" /> -</Morph> -<Msa> -<objsur guid="87a61372-b529-41d0-892b-ca33273dc85c" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="2fc6e3a3-635f-46f6-ad6d-1674d5d1d766"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rindi</AUni> -<AUni ws="qvm-x-acl">rindi; rinde</AUni> -<AUni ws="qvm-x-akh">rindi</AUni> -<AUni ws="qvm-x-akl">rindi; rinde</AUni> -<AUni ws="qvm-x-ame">rindi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rendirse</AUni> -<AUni ws="qvm-x-acl">+rendirse</AUni> -<AUni ws="qvm-x-akh">+rendirse</AUni> -<AUni ws="qvm-x-akl">+rendirse</AUni> -<AUni ws="qvm-x-ame">+rendirse</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.328" /> -<DateModified val="2022-10-10 21:18:47.203" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3115ffaa-944a-44bd-9988-1060320c390c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rendirse</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9a9bd1b2-cccd-4154-9265-87abedcae4cc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="33697836-9c07-4604-9e79-751c6b62a48e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rendirse 
\entryTyp root 
\gENG 
\gSPN 
\e +rendirse 
\c V1 
\mp +assimilated 
\ach rindi 
\akh rindi 
\acl rindi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl rinde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rindi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rinde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame rindi 
\mp +FinalI 
\i 2SA 10.19 Israel soldäducuna tsaynog vinciptinmi Hadad-ezerta yanapag mandag reycuna Davidman rindicushpan Davidpa munayninchöna cawapäcorgan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="2fc95f69-96fb-4e52-a029-4494452b5f13" ownerguid="2a6622ed-7113-46fc-97c1-2a208c4a9008"> -<Form> -<AUni ws="qvm-x-ach">macolca</AUni> -<AUni ws="qvm-x-acl">macolca</AUni> -<AUni ws="qvm-x-akh">macolca</AUni> -<AUni ws="qvm-x-akl">macolca</AUni> -<AUni ws="qvm-x-ame">macolca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="2fca5547-5210-4cee-82aa-bbee936f2d79" ownerguid="b2192fec-bc78-4900-b363-4ad62318be86"> -<Form> -<AUni ws="qvm-x-ach">maran</AUni> -<AUni ws="qvm-x-acl">maran</AUni> -<AUni ws="qvm-x-akh">maran</AUni> -<AUni ws="qvm-x-akl">maran</AUni> -<AUni ws="qvm-x-ame">maran</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="2fcd9bc3-1801-488e-8b8e-8fa7c30eea5a" ownerguid="b7eaa4f1-8aa8-4f77-9cf2-2bc36d5cc650"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="2fcebb57-1e50-47ad-98bf-cafaa7c67cbd"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">11</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="2fcf82e0-b224-4cb9-97b7-e823d1383515" ownerguid="a730d0b4-b6db-45ac-bf6e-cefc96ae3fbb"> -<ExampleWords> -<AUni ws="en">impostor, charlatan, fraud, fake, pretender, quack, wolf in sheep's clothing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to someone who pretends to be someone else?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2fd00980-86ee-4708-8139-71706001cafa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pincu</AUni> -<AUni ws="qvm-x-acl">pincu; pincu; pinco</AUni> -<AUni ws="qvm-x-akh">pinku</AUni> -<AUni ws="qvm-x-akl">pinku; pinku; pinko</AUni> -<AUni ws="qvm-x-ame">pinku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pinku</AUni> -<AUni ws="qvm-x-acl">*pinku</AUni> -<AUni ws="qvm-x-akh">*pinku</AUni> -<AUni ws="qvm-x-akl">*pinku</AUni> -<AUni ws="qvm-x-ame">*pinku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.840" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="480e637a-50ce-4b59-9476-7e7df6d6e91c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pinku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8c9e08b9-a2d7-4d1f-8936-f65992e0a2c6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4342cfdd-e14e-49f2-b258-449bb127d5ee" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pinku 
\entryTyp root 
\gENG roof.structure 
\gSPN cumbrera 
\e *pinku 
\c N0 
\ach pincu 
\akh pinku 
\acl pincu / _# 
\acl pincu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pinco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pinku / _# 
\akl pinku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pinko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pinku</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="2fd0c8da-9c23-4682-9a19-2efb4a0fda8d" ownerguid="ca98bd7b-8711-41f6-86d0-5cd07b7bfe0d"> -<ExampleWords> -<AUni ws="en">destroyed, ruined, wrecked, be in ruins</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that has been destroyed?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2fd2e247-a998-494a-9044-549b0ce26336" ownerguid="10b6c417-d020-4318-a44a-ae69ea3eec5a"> -<ExampleWords> -<AUni ws="en">slow, gradual</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe a slow change?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="2fd31333-a7ab-4db8-aaa8-d48e939f3199" ownerguid="2d822f05-e966-4735-b868-4dea83d5ca30"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="2fd412d5-ea92-4d42-b6b3-15274efba81e" ownerguid="75202262-cdba-4c43-9343-764c84138797"> -<ExampleWords> -<AUni ws="en">aunt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to your mother's sister?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2fd8b6a6-52c1-47ea-8c5e-c44c4ff1e4d2" ownerguid="656862c1-80f3-461a-b9cb-cc8873506f39"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">grinding.stone</AUni> -<AUni ws="es">amoladera</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="33067bc7-6824-4fe8-a844-c3556184df2a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2fd90f74-3ec1-4965-8d42-c5b0727951e6" ownerguid="aba62efa-b83b-442b-8e16-df72eee20258"> -<Form> -<AUni ws="qvm-x-ach">abëtu</AUni> -<AUni ws="qvm-x-acl">abëtu; abëtu; abëto</AUni> -<AUni ws="qvm-x-akh">abëtu</AUni> -<AUni ws="qvm-x-akl">abëtu; abëtu; abëto</AUni> -<AUni ws="qvm-x-ame">abëtu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="2fd95fe8-d411-493f-8144-493c5dcb0c12" ownerguid="354c761d-03d5-4445-89e1-4f7c9673ab11"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">strong</AUni> -<AUni ws="es">fuerte</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="41833478-6044-4c71-a2fc-8d2d9ff83ebe" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="2fdc30cd-57ab-469a-924a-84b3a4f0b171" ownerguid="d53b457a-a080-4f9e-9757-70adf465fb77"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="2fe0a017-f273-4ad4-9b8a-99127a4864ee" ownerguid="28885090-a609-4e87-8333-a46af61ed256"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">break</AUni> -<AUni ws="es">romper</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7d557503-3b58-46bf-ab6c-e3b6cded3fe0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="2fe51a34-6546-4d7f-9ea7-961b9ad61e69" ownerguid="12454d31-d8bd-45e6-97a8-31273818231e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">storm</AUni> -<AUni ws="es">tormento</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="44c7b317-a914-4041-8847-62611b55c609" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="2fe5cd00-3cd8-4a22-9758-aceb33590a1d" ownerguid="8594cb26-9f3c-48f5-b00b-f055eb5a5e61"> -<ExampleWords> -<AUni ws="en">riot (n), civil disobedience, civil disturbance, clash, commotion, confrontation, disorder, disorderly conduct, disturbance, frenzy, furor, melee, outbreak, rampage, tumult, turbulence, turmoil, unrest, upheaval, uproar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a riot?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2fe8b0d1-6492-43f4-a1f8-a0d89be6ca6b" ownerguid="889de305-82ad-4d1a-9a97-63733ed27bfc"> -<ExampleWords> -<AUni ws="en">prepared, ready</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a person who has prepared?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="2feb574b-e452-46da-8dcb-d9dc09b1fd54"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yupa</AUni> -<AUni ws="qvm-x-acl">yupa</AUni> -<AUni ws="qvm-x-akh">yupa</AUni> -<AUni ws="qvm-x-akl">yupa</AUni> -<AUni ws="qvm-x-ame">yupa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yupa</AUni> -<AUni ws="qvm-x-acl">*yupa</AUni> -<AUni ws="qvm-x-akh">*yupa</AUni> -<AUni ws="qvm-x-akl">*yupa</AUni> -<AUni ws="qvm-x-ame">*yupa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.798" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9b00a381-54f4-47f6-8177-55679643cc26" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yupa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="abcd9b8e-bb9a-4f82-aa32-d71bb3383102" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b2f1b041-bbab-4e41-9864-13d34bae6a5d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yupa 
\entryTyp root 
\gENG count 
\gSPN contar 
\e *yupa 
\c V1 
\ach yupa 
\akh yupa 
\acl yupa 
\akl yupa 
\ame yupa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="2feba8da-76e0-40bd-ad77-1608c0bd8a45" ownerguid="98f41510-b28c-4b6d-8782-1a7e589ab737"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="2fece058-54b0-4d24-8938-4fa894a75434" ownerguid="ccfb9c3b-2049-4345-8c51-b12d3308741a"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="9cb14f15-a446-499c-bec2-a406938aecc9" t="o" /> -<objsur guid="4ec8c2c2-5f48-4880-a8fe-447894002612" t="o" /> -<objsur guid="daba7235-e459-4b49-9d15-1a9191c44cd2" t="o" /> -</MorphBundles> -</rt> -<rt class="LexExampleSentence" guid="2fed386b-57c6-449b-97f7-b4ddaedbf2de" ownerguid="a3a95572-f54c-4d49-b138-c671d55e6cd5"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JDG 4.21 Tsaymi Jaelqa lawchi punta [NOTA: Wakin runakunaqa puntañösa nipäkun.] estäcata y mäsuta aptarkur upäla yaykurir Sísarataqa sentïdunpa estäcawan takaykurqan pampaman pasashqanyaq.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="2ff0022f-24d4-49ba-9e63-7a04b90ec8ec" ownerguid="5bdb3c06-fbee-4f5f-991a-e2128f65bb86"> -<ExampleWords> -<AUni ws="en">lipstick, cream, powder, blusher, eyeliner, eyeshadow, foundation, mascara, rouge, nail polish, moisturizer, eye pencil, lotion, ointment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to types of cosmetics?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="2ff52e64-c4cc-4bfa-b246-c01309cfa955" ownerguid="11665f1d-aca9-4699-afb2-bcdea69c6645"> -<ExampleWords> -<AUni ws="en">important, main (thing), grand, great, urgent, worthy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is important?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="2ffda0b5-f5b3-4d1c-a920-e59249678f64" ownerguid="f7422014-f252-4852-91df-3743c9e88638"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">inexpensive</AUni> -<AUni ws="es">barato</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9467a1c4-d24a-48a6-aa7e-c351c2be356d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="2ffe455b-880b-4073-900e-8a44ddcc40e9" ownerguid="6ce8fc1f-dd46-49bb-b071-4d8ff2763c53"> -<Form> -<AUni ws="qvm-x-ach">sonïdu</AUni> -<AUni ws="qvm-x-acl">sonïdu; sonïdu; sonïdo</AUni> -<AUni ws="qvm-x-akh">sonïdu</AUni> -<AUni ws="qvm-x-akl">sonïdu; sonïdu; sonïdo</AUni> -<AUni ws="qvm-x-ame">sonïdu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="30011610-0ca9-4d7d-ba2e-377fc3c76e74"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">panca</AUni> -<AUni ws="qvm-x-acl">panca</AUni> -<AUni ws="qvm-x-akh">panka</AUni> -<AUni ws="qvm-x-akl">panka</AUni> -<AUni ws="qvm-x-ame">panka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*panka</AUni> -<AUni ws="qvm-x-acl">*panka</AUni> -<AUni ws="qvm-x-akh">*panka</AUni> -<AUni ws="qvm-x-akl">*panka</AUni> -<AUni ws="qvm-x-ame">*panka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.687" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8942a91f-f0ea-4c38-bacc-2edfb0b0504d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*panka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c3a87e45-ac0a-46d1-a928-2e8bc69bf541" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d8f7ebe0-f28e-40c1-923e-f3c9f22f7bbc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *panka 
\entryTyp root 
\gENG tie 
\gSPN amarrar 
\e *panka 
\c V2 
\ach panca 
\akh panka 
\acl panca 
\akl panka 
\ame panka</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="3005971d-de4d-401f-8400-b25de5e052ad" ownerguid="91913920-8a6a-4ba0-9361-d6cc9e1f3639"> -<Abbreviation> -<AUni ws="en">8.6.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.678" /> -<DateModified val="2022-9-23 16:55:8.678" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the middle part or center of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Middle</AUni> -</Name> -<Questions> -<objsur guid="10539428-e8bb-4956-a891-ace1a31ab94f" t="o" /> -<objsur guid="28e34f62-36c9-4145-b65a-c47518ee29ce" t="o" /> -<objsur guid="cd3d3c01-4194-4e0d-acb5-21512cda8376" t="o" /> -<objsur guid="3b18e4e3-d6bf-40e6-a6ab-508ce6a5d488" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="300615a4-4b24-48c5-990b-1d9daf616b29" ownerguid="e0b00a13-8648-4635-afe5-0be3c0b6a05c"> -<ExampleWords> -<AUni ws="en">maybe, perhaps, possibly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that the speaker is guessing about a number or amount, but is not certain?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="300f05a1-ebb2-426a-bd4e-f9b3b689cf7a" ownerguid="f8d8429d-349a-4028-9943-edc1224cab49"> -<Form> -<AUni ws="qvm-x-ach">naypis</AUni> -<AUni ws="qvm-x-acl">naypis</AUni> -<AUni ws="qvm-x-akh">naypis</AUni> -<AUni ws="qvm-x-akl">naypis</AUni> -<AUni ws="qvm-x-ame">naypis</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="300fa660-8b07-461f-b069-01791191ecfd" ownerguid="db5c48df-4562-47e3-8962-4fa94cf7ea8a"> -<Form> -<AUni ws="qvm-x-ach">mä</AUni> -<AUni ws="qvm-x-acl">mä</AUni> -<AUni ws="qvm-x-akh">mä</AUni> -<AUni ws="qvm-x-akl">mä</AUni> -<AUni ws="qvm-x-ame">mä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="30110333-e055-4d05-917a-2c3298dc9a00" ownerguid="095e25b2-3b28-4ff9-a32a-ff660cd188df"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3011e644-8bf5-4973-97c7-2cdbfed6f53e" ownerguid="29a8ebbe-ebc4-4295-b6af-84331d019361"> -<ExampleWords> -<AUni ws="en">etymology, derivation, etymon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to the history of a word?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3013df2e-80a3-49c0-a77e-991532b8bfeb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">peru</AUni> -<AUni ws="qvm-x-acl">peru</AUni> -<AUni ws="qvm-x-akh">peru</AUni> -<AUni ws="qvm-x-akl">peru</AUni> -<AUni ws="qvm-x-ame">peru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pero.2</AUni> -<AUni ws="qvm-x-acl">+pero.2</AUni> -<AUni ws="qvm-x-akh">+pero.2</AUni> -<AUni ws="qvm-x-akl">+pero.2</AUni> -<AUni ws="qvm-x-ame">+pero.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.808" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="255d8a4d-c89b-4b37-9d84-d18b57fcfa03" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pero.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5eed873a-0db7-4989-b4d8-f190b0c81b03" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c3b91618-02c2-48fe-839d-ff6f274eef8f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pero.2 
\entryTyp root 
\gENG but 
\gSPN pero 
\e +pero.2 
\c NOSUFF 
\mp +assimilated 
\ach peru 
\akh peru 
\acl peru 
\akl peru 
\ame peru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="3014de03-88e5-4330-9682-51963a41ca50" ownerguid="73499b8b-76fc-4121-8bfa-1bdebe537259"> -<Abbreviation> -<AUni ws="en">1.6.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.994" /> -<DateModified val="2022-9-23 16:55:7.994" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for sharks and rays--animals with cartilage instead of bones (phylum Chordata, class Chondrichthyes), and eels (phylum Chordata, class Cyclostomata).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>4E Fishes and Other Sea Creatures</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Shark, ray</AUni> -</Name> -<OcmCodes> -<Uni>136j Fish and Mollusk</Uni> -</OcmCodes> -<Questions> -<objsur guid="9d9b51e2-2477-449c-b23e-41e6c7e5bb9a" t="o" /> -<objsur guid="7cb68169-ef72-4b46-adeb-8621889bbc71" t="o" /> -<objsur guid="37e24b5b-2e0b-4617-9585-434bb748cd7f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="301a6161-cc8e-4a60-93c5-94f8ca51cdc2" ownerguid="5ea72913-a220-4d8c-aa5a-15eb9dc0d4c5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="3022168e-4457-4e3e-a753-50b6be4129e7" ownerguid="97febdac-6408-4ea2-85e0-52628656daea"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2SA 8.16 Lapan soldäduncunapa capitanninmi cargan Sarviapa tsurin Joab, y Ahiludpa tsurin Josafat cargan documentuta archivag.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="3022c764-ba88-41d0-94db-393312214f4e" ownerguid="ff736f67-197b-46b9-bc14-edbeb1fb3d5a"> -<Abbreviation> -<AUni ws="en">6.8.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to property--the things you own.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>57D Treasure</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Possession, property</AUni> -</Name> -<OcmCodes> -<Uni>422 Property in Movables; 423 Real Property; 424 Incorporeal Property</Uni> -</OcmCodes> -<Questions> -<objsur guid="fc9666a9-eb9c-4bee-be4f-65d252471724" t="o" /> -<objsur guid="dfbae33d-76f4-4040-b7fc-484160957112" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="3023a66d-3f2d-469f-acbc-a5aebf5e5eaf" ownerguid="5fd599c2-f57f-4646-8ea1-011959f0360c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2SA 9.3 Tsaynog niptin Siba nergan: <<Au, cawaycanragmi Jonatánpa tsurin. Itsanga ishcan chaquin macllucashgami caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexExampleSentence" guid="30251ca8-a16d-4861-8000-2411e7750e8b" ownerguid="1984aec6-dea6-4166-ab0a-18401b299dff"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">SNG 8.5 Gamta ricchatsishcä ninanga cuyanacunantsipag sentïduyquita quichashcä ninanmi.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="30265343-cc93-4499-a836-a3afb8b402e0" ownerguid="156f3065-28b0-4549-96f8-63532853dbf5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bear</AUni> -<AUni ws="es">oso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e86b3745-4b6c-4a5f-86dc-c71b10268ec8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="30268fd6-c304-4297-956f-ceaabf59d8c9" ownerguid="47ed6c39-b728-4ae7-be7c-c45c714c3153"> -<ExampleWords> -<AUni ws="en">beans</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What crops are threshed?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="30280d0a-8c9d-4a10-a4ac-75def661adce" ownerguid="09ba0db6-0881-4df8-8508-be23625f17fb"> -<Form> -<AUni ws="qvm-x-ach">gati</AUni> -<AUni ws="qvm-x-acl">gati; gate</AUni> -<AUni ws="qvm-x-akh">qati</AUni> -<AUni ws="qvm-x-akl">qati; qate</AUni> -<AUni ws="qvm-x-ame">qati</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="3028bda7-2095-48d2-886d-435eb4c698f3" ownerguid="8e1ff524-21fe-4f7a-b54f-6290688c160d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="302ab46f-eda4-4df3-b4c3-6b11bc645c32"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">planta</AUni> -<AUni ws="qvm-x-acl">planta</AUni> -<AUni ws="qvm-x-akh">planta</AUni> -<AUni ws="qvm-x-akl">planta</AUni> -<AUni ws="qvm-x-ame">planta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+planta</AUni> -<AUni ws="qvm-x-acl">+planta</AUni> -<AUni ws="qvm-x-akh">+planta</AUni> -<AUni ws="qvm-x-akl">+planta</AUni> -<AUni ws="qvm-x-ame">+planta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.871" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d4e85a4f-721e-4f61-aec4-3c47740127c0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+planta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a39eb1aa-f40e-45e6-91a6-c84ce391028c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ab1c00bf-0c24-476f-b2bf-c09740ab1a3a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +planta 
\entryTyp root 
\gENG plant 
\gSPN planta 
\e +planta 
\c N0 
\ach planta 
\akh planta 
\acl planta 
\akl planta 
\ame planta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="302d171a-81bd-4e82-aad8-a84e8f4593d9" ownerguid="823d9c71-5417-40d9-b10d-fca0ad206f45"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="302e9117-4224-43d7-918a-e0d550745f85" ownerguid="dc1a2c6f-1b32-4631-8823-36dacc8cb7bb"> -<ExampleWords> -<AUni ws="en">rise, set, cross the sky, come up, go down, sink</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to how the sun moves?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="302fe325-5326-4de6-bec0-4bf3d460e23c" ownerguid="43b31821-3238-491f-aa7c-651e534d9c47"> -<Form> -<AUni ws="qvm-x-ach">destina</AUni> -<AUni ws="qvm-x-acl">destina</AUni> -<AUni ws="qvm-x-akh">destina</AUni> -<AUni ws="qvm-x-akl">destina</AUni> -<AUni ws="qvm-x-ame">destina</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="3031743a-cc9d-4ded-bd3c-806e158c1388" ownerguid="6335fd7e-0903-4ba6-a248-56d3c7b9471f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="3031f652-16a7-4b1d-bec1-851d04482a0b" ownerguid="7d9af2fc-ebd4-4ec9-91f9-da752b344607"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="0e258fd4-b3ac-48ac-828d-7a4342f980f0" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">amount</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="80687b49-b6c9-451f-a79c-7f1c4b0e3562" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="303539ba-7253-4590-b8c4-7751caa52c65" ownerguid="d6c29733-beeb-4fc9-975f-5e78a8acc273"> -<Abbreviation> -<AUni ws="en">6.1.2.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.350" /> -<DateModified val="2022-9-23 16:55:8.350" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the power used to do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>76 Power, Force</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Power, force</AUni> -</Name> -<OcmCodes> -<Uni>370 Energy and Power; 371 Power Development; 379 Miscellaneous Power Production</Uni> -</OcmCodes> -<Questions> -<objsur guid="34cb13e5-5cda-4abe-aede-69da94d0feb2" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="3036bc79-3cf7-48d1-b5ca-1c3efc586b50" ownerguid="d06dae77-134a-403f-ba88-52ecd66c0522"> -<ExampleWords> -<AUni ws="en">moss</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What general words refer to moss?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3036e5b6-1db5-4b85-8ac4-a0f59688ec95" ownerguid="ecbc2581-772a-415b-bf79-7863f20fb6e2"> -<Form> -<AUni ws="qvm-x-ach">lactsi</AUni> -<AUni ws="qvm-x-acl">lactsi; lactse</AUni> -<AUni ws="qvm-x-akh">laktsi</AUni> -<AUni ws="qvm-x-akl">laktsi; laktse</AUni> -<AUni ws="qvm-x-ame">laktsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="3038da8a-1773-466f-90b4-14ca63e62fc3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rashta</AUni> -<AUni ws="qvm-x-acl">rashta</AUni> -<AUni ws="qvm-x-akh">rashta</AUni> -<AUni ws="qvm-x-akl">rashta</AUni> -<AUni ws="qvm-x-ame">rashta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rashta.v</AUni> -<AUni ws="qvm-x-acl">*rashta.v</AUni> -<AUni ws="qvm-x-akh">*rashta.v</AUni> -<AUni ws="qvm-x-akl">*rashta.v</AUni> -<AUni ws="qvm-x-ame">*rashta.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.277" /> -<DateModified val="2022-10-10 21:18:47.203" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3f0809ba-2f72-4e39-9fb6-ef483707eb34" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rashta.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="38319b51-4aad-4e94-b88d-7e338bfe4f21" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6d50297f-2bfb-4e34-8f8f-0e4b8e85c4af" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rashta.v 
\entryTyp root 
\gENG 
\gSPN 
\e *rashta.v 
\c V1 
\ach rashta 
\akh rashta 
\acl rashta 
\akl rashta 
\ame rashta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="303f451b-7431-4a9e-aca2-1e5f9549ffbe" ownerguid="1f507886-7b6c-47eb-8754-90c4f94828ea"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="303fb9fb-f6f1-46f0-b341-dbf71f00dc2d" ownerguid="cbc24a98-1c64-467e-98aa-251a28e4c0b8"> -<ExampleWords> -<AUni ws="en">constipation, constipated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to when it is difficult to defecate?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3043396a-40b8-4a30-8e03-6d1d555b9796" ownerguid="80dc5ca1-44ce-4406-add8-2bbe19c122ab"> -<ExampleWords> -<AUni ws="en">music, record, tape, cassette, CD, compact disc</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to music recordings?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3043a3d2-07c1-4e72-851d-b70963bf4d31" ownerguid="6646f5bd-fbce-44b4-8f80-3dd989e53d4c"> -<Form> -<AUni ws="qvm-x-ach">sauma</AUni> -<AUni ws="qvm-x-acl">sauma</AUni> -<AUni ws="qvm-x-akh">sawma</AUni> -<AUni ws="qvm-x-akl">sawma</AUni> -<AUni ws="qvm-x-ame">sawma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="3043ec91-2fd0-4c13-a00e-6023b989c88f" ownerguid="b2e3717e-3a9c-4260-b089-5a96e0893055"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3043fd75-f743-40e0-92b9-823ae92e8e04" ownerguid="8fff393a-23c2-42bb-8da8-9b151e790904"> -<ExampleWords> -<AUni ws="en">old man, old woman, elder, senior citizen, senior, old people, the old</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to an old person?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3044799a-4b36-46c0-8a25-0739f8abc8e7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tali</AUni> -<AUni ws="qvm-x-acl">tali; tale</AUni> -<AUni ws="qvm-x-akh">tali</AUni> -<AUni ws="qvm-x-akl">tali; tale</AUni> -<AUni ws="qvm-x-ame">tali</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*talli</AUni> -<AUni ws="qvm-x-acl">*talli</AUni> -<AUni ws="qvm-x-akh">*talli</AUni> -<AUni ws="qvm-x-akl">*talli</AUni> -<AUni ws="qvm-x-ame">*talli</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.784" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="752a41f8-ad23-40c0-b283-9c1072813b07" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*talli</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3f719986-7034-4748-a34e-a11805e71426" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="21a8e209-ca32-402d-bd32-5de34ff04e95" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *talli 
\entryTyp root 
\gENG empty 
\gSPN vaciar 
\e *talli 
\c V2 
\mp +FinalI 
\ach tali 
\akh tali 
\acl tali +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tale +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tali +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tale +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tali</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="30456073-086a-4511-9d56-08541c561e54" ownerguid="b33da469-fefa-44f3-b35c-d70411bfe7e1"> -<ExampleWords> -<AUni ws="en">marketing, advertisement, sales promotion, slogan, wholesale, retail, service, mercantile, commerce, salesmanship, merchandising</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to trying to get someone to buy something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="304682b3-bfc8-428d-a562-7905a2fceb0f" ownerguid="ff1ba929-bc37-48bd-83a9-c049ced3ef00"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="30474a47-7437-4d90-9c71-963a226ac221" ownerguid="df51e17a-2d75-4c49-b2d1-c22e16898414"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3048ceda-619b-49ca-a32a-9c3a08dd05b7" ownerguid="dae6488c-7fea-4fa3-84c9-b611d017b6a5"> -<ExampleWords> -<AUni ws="en">wash clothes, launder, do the laundry, dry clean</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to washing clothes?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="304af057-605a-4410-b1f5-19e52941753e" ownerguid="8bdf4847-903b-4af6-9553-3cfab65de516"> -<ExampleWords> -<AUni ws="en">mathematician, statistician</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a person who studies mathematics?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="304b7d5f-51af-480a-af98-77a7578039fa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gransa</AUni> -<AUni ws="qvm-x-acl">gransa</AUni> -<AUni ws="qvm-x-akh">gransa</AUni> -<AUni ws="qvm-x-akl">gransa</AUni> -<AUni ws="qvm-x-ame">gransa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+granza</AUni> -<AUni ws="qvm-x-acl">+granza</AUni> -<AUni ws="qvm-x-akh">+granza</AUni> -<AUni ws="qvm-x-akl">+granza</AUni> -<AUni ws="qvm-x-ame">+granza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.629" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a57d07e8-3006-4b77-b54d-9d7be5a364fa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+granza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c42d52a8-59f3-4a45-9b3f-12fd27adff57" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2fad72c5-6105-419b-bd70-bc9415b3e9a0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +granza 
\entryTyp root 
\gENG 
\gSPN 
\e +granza 
\c N0 
\ach gransa 
\akh gransa 
\acl gransa 
\akl gransa 
\ame gransa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="304df4f5-a9ba-40ec-82b0-f24ae363e238" ownerguid="f74f28d1-8742-4c9f-95dc-d08336e91249"> -<ExampleWords> -<AUni ws="en">youth (adj), juvenile, teenage, adolescent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something to do with young people?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="304f00fa-0e91-4498-b623-24fbd3ee5e8e" ownerguid="64e41545-3a0a-4524-a8d4-8e5e0f0e2391"> -<ExampleWords> -<AUni ws="en">lampstand, stand, wick, chimney, bulb, light bulb, lamp shade, switch, filament, socket</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the parts of a lamp?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3050cbfe-3beb-49e3-9df6-2a344dd631c2" ownerguid="dc177f3c-d0fd-4232-adf1-a77b339cdbb2"> -<ExampleWords> -<AUni ws="en">military base, guardhouse, barracks, fort, blockhouse, bomb shelter, watchtower, lookout, bunker</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What kinds of buildings are used by the military?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3050f906-7d12-49b7-9303-99d5ae237935" ownerguid="5b5e6818-ede9-4980-bb47-6cb17453f7dc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">machu</AUni> -<AUni ws="es">machu</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d6625930-9a70-4aa1-9d3b-14e1fadeca7a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="30510ce6-f449-461e-b108-e13db4aacb92" ownerguid="e27adda9-0761-4b7f-abbf-24938ce1c01a"> -<ExampleWords> -<AUni ws="en">actor, actress, star, performer, extra, director, stagehand</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the people who act?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="30524fa0-c17c-4d5d-ae8d-de8692e53c12" ownerguid="0b12ab7f-f74e-4328-8bb3-958003f74bb2"> -<Form> -<AUni ws="qvm-x-ach">importa</AUni> -<AUni ws="qvm-x-acl">importa</AUni> -<AUni ws="qvm-x-akh">importa</AUni> -<AUni ws="qvm-x-akl">importa</AUni> -<AUni ws="qvm-x-ame">importa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="30526819-6ff3-41b2-ba71-c9d7a8fe5f21" ownerguid="dc177f3c-d0fd-4232-adf1-a77b339cdbb2"> -<ExampleWords> -<AUni ws="en">barn, shed, hen house, coop, kennel, pound, doghouse, stable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What kinds of buildings are used by animals?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="305510ac-7ef4-4295-b1a0-befcee5b1fed" ownerguid="94519d8a-0ad6-4acd-8413-84cb6e9928c7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3055338f-eccc-4193-85b5-a44ef560434e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sapsapya; sapsapya:</AUni> -<AUni ws="qvm-x-acl">sapsapya; sapsapya:</AUni> -<AUni ws="qvm-x-akh">sapsapya; sapsapya:</AUni> -<AUni ws="qvm-x-akl">sapsapya; sapsapya:</AUni> -<AUni ws="qvm-x-ame">sapsapya; sapsapya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*sapsapya:</AUni> -<AUni ws="qvm-x-acl">*sapsapya:</AUni> -<AUni ws="qvm-x-akh">*sapsapya:</AUni> -<AUni ws="qvm-x-akl">*sapsapya:</AUni> -<AUni ws="qvm-x-ame">*sapsapya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.449" /> -<DateModified val="2022-10-10 21:18:47.203" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a6ea2980-07c9-49f1-8d10-1ac1f56a85fa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*sapsapya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="12415a26-0388-48b0-99cb-d066df205d60" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="638f94c2-59fd-4691-ba09-21e53ef10613" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *sapsapya: 
\entryTyp root 
\gENG 
\gSPN 
\e *sapsapya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach sapsapya foreshortened 
\ach sapsapya: 
\akh sapsapya foreshortened 
\akh sapsapya: 
\acl sapsapya foreshortened 
\acl sapsapya: 
\akl sapsapya foreshortened 
\akl sapsapya: 
\ame sapsapya foreshortened 
\ame sapsapya:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="3055e5eb-62e9-49ce-b0ab-1e5cba610b2e" ownerguid="2bd7ff12-4fc2-449c-9505-03b47609512c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3056981e-aa4f-4c3b-8e39-609913a69a60"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ogra</AUni> -<AUni ws="qvm-x-acl">ogra</AUni> -<AUni ws="qvm-x-akh">oqra</AUni> -<AUni ws="qvm-x-akl">oqra</AUni> -<AUni ws="qvm-x-ame">uqra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uqra</AUni> -<AUni ws="qvm-x-acl">*uqra</AUni> -<AUni ws="qvm-x-akh">*uqra</AUni> -<AUni ws="qvm-x-akl">*uqra</AUni> -<AUni ws="qvm-x-ame">*uqra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.261" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="933228c9-b168-4228-8742-83e633403abc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uqra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e20a5a33-9803-47fb-abb1-15d48931c335" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="afc3a4e4-ad5d-46dc-addb-54e58f1cfe01" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uqra 
\entryTyp root 
\gENG lose 
\gSPN perder 
\e *uqra 
\c V2 
\ach ogra 
\akh oqra 
\acl ogra 
\akl oqra 
\ame uqra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="3056e83e-abe2-47cf-b1b3-b65483420155" ownerguid="cc308441-2f6a-49a5-91b9-3c392e55f57e"> -<Form> -<AUni ws="qvm-x-ach">regidor</AUni> -<AUni ws="qvm-x-acl">regidor</AUni> -<AUni ws="qvm-x-akh">regidor</AUni> -<AUni ws="qvm-x-akl">regidor</AUni> -<AUni ws="qvm-x-ame">regidor</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3056e985-c492-4378-b3f6-3078d3ecf5c2" ownerguid="906743a7-bf46-485d-9915-0d474a4de46e"> -<Form> -<AUni ws="qvm-x-ach">gaplu</AUni> -<AUni ws="qvm-x-acl">gaplu; gaplo</AUni> -<AUni ws="qvm-x-akh">qaplu</AUni> -<AUni ws="qvm-x-akl">qaplu; qaplo</AUni> -<AUni ws="qvm-x-ame">qaplu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="305b4f50-e946-404e-a341-68a19aa7b2e9" ownerguid="a9a93240-5237-4ad0-911a-152179f78550"> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="305c79e2-21a0-4e61-bb64-c94a29064447" ownerguid="87260e06-f99e-40f4-aaa8-7404dfc80216"> -<Form> -<AUni ws="qvm-x-ach">centëna</AUni> -<AUni ws="qvm-x-acl">centëna</AUni> -<AUni ws="qvm-x-akh">centëna</AUni> -<AUni ws="qvm-x-akl">centëna</AUni> -<AUni ws="qvm-x-ame">centëna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="30607b4a-a8f0-48cb-8c4f-1432e76fd903" ownerguid="12c172dd-8bce-4d8d-9f64-f9faeea783ba"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">page</AUni> -<AUni ws="es">página</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a8e5d72e-1ace-4eaa-a801-1dd74aa502db" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="3061cd4c-dc5e-434e-aa7d-8ea86ef932ef" ownerguid="b355b744-58b3-4741-b357-f16a481fe886"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="306707d2-e4e5-4b16-96b4-09fa5c1c1984"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sella:ma</AUni> -<AUni ws="qvm-x-acl">sella:ma</AUni> -<AUni ws="qvm-x-akh">sella:ma</AUni> -<AUni ws="qvm-x-akl">sella:ma</AUni> -<AUni ws="qvm-x-ame">silla:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*sella:ma</AUni> -<AUni ws="qvm-x-acl">*sella:ma</AUni> -<AUni ws="qvm-x-akh">*sella:ma</AUni> -<AUni ws="qvm-x-akl">*sella:ma</AUni> -<AUni ws="qvm-x-ame">*sella:ma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.490" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="abb2e81d-b19e-4a29-b110-3e9125e73635" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*sella:ma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0e1d0c98-ffb6-494b-b094-ea9a7517ab95" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="584143c1-6ec9-4397-866e-abc694813fc3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *sella:ma 
\entryTyp root 
\gENG 
\gSPN mucho 
\e *sella:ma 
\c R0 
\ach sella:ma 
\akh sella:ma 
\acl sella:ma 
\akl sella:ma 
\ame silla:ma</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3068f420-ca35-475f-b3c8-1ee9406d80a7" ownerguid="7edf9e7c-3e32-4307-b5e3-b0d704df7803"> -<ExampleWords> -<AUni ws="en">spin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to spinning thread?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="30695424-7e82-4941-a1bb-a0eafaa15d8f" ownerguid="12cb3584-4c18-4fef-b600-a280aecfc31d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fart</AUni> -<AUni ws="es">pedo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8a603834-740d-47d5-b4a1-466a5926b092" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="306aa768-0c74-4e14-9e38-87df3977d915"> -<Analyses> -<objsur guid="c552c8a3-e8fc-44e9-81f9-52ad272b6640" t="o" /> -</Analyses> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">nirqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="PunctuationForm" guid="306bdf79-deb2-4b16-845f-5ab8538aec25"> -<Form> -<Str> -<Run ws="en">19</Run> -</Str> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="306cb3d2-6e3a-4f5c-b7de-75f580c0db61" ownerguid="6ae44dd0-08c7-4556-99a6-d2b2b1c6ba54"> -<Form> -<AUni ws="qvm-x-ach">wawaguñuy</AUni> -<AUni ws="qvm-x-acl">wawagoñuy</AUni> -<AUni ws="qvm-x-akh">wawaquñuy</AUni> -<AUni ws="qvm-x-akl">wawaqoñuy</AUni> -<AUni ws="qvm-x-ame">wawaquñuy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="306f7c08-acc5-4f85-8e0a-0af89cdd7c23" ownerguid="59f5c685-49e8-4e49-8c94-d98f301fa758"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="30760877-00dc-47eb-b629-7b2ed79691c0" ownerguid="6626ad39-4ceb-454c-b21f-7058b164c30a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tooth</AUni> -<AUni ws="es">diente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="665b735d-d9ad-4c06-a442-bec9d5ba1b46" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="307a53b8-0a72-4a94-9108-f3e3ec2821b6" ownerguid="5ce6f0d8-3b4b-4723-9526-88451429b850"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">comb</AUni> -<AUni ws="es">peine</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aef4f6cf-d138-4765-8555-da088e94035f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="307ac57e-97a5-4682-8b22-5262366e068a" ownerguid="ca888b55-65c1-4d59-a662-afc8a367db43"> -<Form> -<AUni ws="qvm-x-ach">yapay</AUni> -<AUni ws="qvm-x-acl">yapay</AUni> -<AUni ws="qvm-x-akh">yapay</AUni> -<AUni ws="qvm-x-akl">yapay</AUni> -<AUni ws="qvm-x-ame">yapay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="307b69b0-c808-4356-a92b-9637e9139d8e" ownerguid="7d7bb92f-5baf-418e-8ad3-92cfdc3a8d41"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="307b6c74-3765-4e58-b29c-682a2033cd53"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cawitu</AUni> -<AUni ws="qvm-x-acl">cawitu; cawitu; cawito</AUni> -<AUni ws="qvm-x-akh">kawitu</AUni> -<AUni ws="qvm-x-akl">kawitu; kawitu; kawito</AUni> -<AUni ws="qvm-x-ame">kawitu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kawitu</AUni> -<AUni ws="qvm-x-acl">*kawitu</AUni> -<AUni ws="qvm-x-akh">*kawitu</AUni> -<AUni ws="qvm-x-akl">*kawitu</AUni> -<AUni ws="qvm-x-ame">*kawitu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.973" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="65de72f4-7252-49f0-9b0a-7c037b0aa0ab" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kawitu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b6c4a65b-a4a3-4e8e-8533-260fe7e80011" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ff440d45-87d3-4b28-a245-e31503248c38" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kawitu 
\entryTyp root 
\gENG bed 
\gSPN tarima 
\e *kawitu 
\c N0 
\ach cawitu 
\akh kawitu 
\acl cawitu / _# 
\acl cawitu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cawito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kawitu / _# 
\akl kawitu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kawito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kawitu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="307bca4f-dfc5-4c2d-ae79-85d996e15013" ownerguid="aac92bf0-55c7-470c-80ed-b57afcd03792"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">suit</AUni> -<AUni ws="es">vestido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b2ce6e2f-1095-45de-8732-56d8c4f46f1a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="307bd120-e876-4218-b489-8c794914b8c6" ownerguid="40c4b498-7132-4ed0-9840-97622a4b9369"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="e942950e-192c-413c-8419-785063365e02" t="o" /> -<objsur guid="b1a8b40f-7404-4a7a-a42a-782ddcd2debd" t="o" /> -<objsur guid="817a97ec-2f15-436f-92e4-1e0d30d8983a" t="o" /> -<objsur guid="65f01a72-3b64-4788-9431-af7a3d9bf6ac" t="o" /> -</MorphBundles> -</rt> -<rt class="LexExampleSentence" guid="307fe0c8-c631-4e03-af0d-b99a7e6278d9" ownerguid="ced82449-19d7-49d1-a0d8-05762f22e014"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2ki 12.11 Nircurnami templuta altsatsinanpag incargädu runacunata entregargan \nd Tayta Diospa\nd* templunta altsag carpintërucunata, contratistacunata,</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="3080b9e6-14ed-4e96-b737-c2004cdaeb34" ownerguid="5e46fc16-b4dd-4c3e-8da3-978013893f5a"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="3082a971-4a66-4ada-8908-5901d21c7ff1" ownerguid="5f6a50e1-9754-44d0-9c78-d127fa949918"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">fiyu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">fiyu; fiyu; fiyo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">fiyu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">fiyu; fiyu; fiyo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">fiyu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="8af51d38-7b5d-4a73-89f8-f39e115e8e55" t="r" /> -</Morph> -<Msa> -<objsur guid="4780accf-3d86-484c-a8d2-c398d837871c" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="308371bb-74f4-46d9-ae09-bac3de818ed5" ownerguid="265c55d2-9185-4f1f-a9e8-91618f9bd549"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="308481cf-df1f-44c6-8671-01eb7d3dd211" ownerguid="a22c41ff-78f7-4ea6-a3a2-bb235e0c18e3"> -<Form> -<AUni ws="qvm-x-ach">ogui</AUni> -<AUni ws="qvm-x-acl">ogui; ogui; ogue</AUni> -<AUni ws="qvm-x-akh">oqi</AUni> -<AUni ws="qvm-x-akl">oqi; oqi; oqe</AUni> -<AUni ws="qvm-x-ame">uqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3087d9bb-ddf6-4c72-a72f-3ed75fb47d5f" ownerguid="8da299ce-1c69-47f8-aa99-dac4a6ebf1ed"> -<Form> -<AUni ws="qvm-x-ach">rinri</AUni> -<AUni ws="qvm-x-acl">rinri; rinri; rinre</AUni> -<AUni ws="qvm-x-akh">rinri</AUni> -<AUni ws="qvm-x-akl">rinri; rinri; rinre</AUni> -<AUni ws="qvm-x-ame">rinri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="308ebe9f-c557-413d-890e-717100263310" ownerguid="63ac84a0-40f5-463a-87e3-f9cbb48e16cd"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</Msa> -</rt> -<rt class="WfiWordform" guid="308fd07a-ac84-4a5d-900a-d0add146512b"> -<Analyses> -<objsur guid="3cb83e74-a33e-4e2a-a375-45c3007c271e" t="o" /> -</Analyses> -<Checksum val="-137963927" /> -<Form> -<AUni ws="qvm-x-akh">manami</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="3092cc01-6591-4ea3-b543-7c5f4f9df9bd" ownerguid="aba3f7f1-9e13-4b48-acbb-3bf6d6bfa0e8"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">I have a <scale> we can use to weigh the rice.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">scale, balance, weight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What instruments are used to weigh something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="30941699-d337-4c85-bacf-d9cd93743610"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aca:su</AUni> -<AUni ws="qvm-x-acl">aca:su</AUni> -<AUni ws="qvm-x-akh">aca:su</AUni> -<AUni ws="qvm-x-akl">aca:su</AUni> -<AUni ws="qvm-x-ame">aca:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+acaso</AUni> -<AUni ws="qvm-x-acl">+acaso</AUni> -<AUni ws="qvm-x-akh">+acaso</AUni> -<AUni ws="qvm-x-akl">+acaso</AUni> -<AUni ws="qvm-x-ame">+acaso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.627" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b9c17ff5-3338-4eab-8bf1-48f6633d066a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+acaso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="285e456c-b430-4ff6-b6bf-b0f01134281a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1155eb80-4a8c-49f6-9875-2404f540d947" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +acaso 
\entryTyp root 
\gENG perhaps 
\gSPN acaso 
\e +acaso 
\c NOSUFF 
\ach aca:su 
\akh aca:su 
\acl aca:su 
\akl aca:su 
\ame aca:su</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="30954ee0-f9e2-430e-b754-e6dc8e3d855a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alfombra</AUni> -<AUni ws="qvm-x-acl">alfombra</AUni> -<AUni ws="qvm-x-akh">alfombra</AUni> -<AUni ws="qvm-x-akl">alfombra</AUni> -<AUni ws="qvm-x-ame">alfombra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+alfombra</AUni> -<AUni ws="qvm-x-acl">+alfombra</AUni> -<AUni ws="qvm-x-akh">+alfombra</AUni> -<AUni ws="qvm-x-akl">+alfombra</AUni> -<AUni ws="qvm-x-ame">+alfombra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.699" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dd453137-8a41-465a-8b9b-c2ad69db59a9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+alfombra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5bf5a8b3-b167-4f35-b9b5-982d9938ab52" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a6b3680b-d540-426c-ab38-5c48aa697467" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +alfombra 
\entryTyp root 
\gENG carpet 
\gSPN alfombra 
\e +alfombra 
\c N0 
\ach alfombra 
\akh alfombra 
\acl alfombra 
\akl alfombra 
\ame alfombra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="309585b0-add3-4d8e-bc2b-67e0f6b53343"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">balanza</AUni> -<AUni ws="qvm-x-acl">balanza</AUni> -<AUni ws="qvm-x-akh">balanza</AUni> -<AUni ws="qvm-x-akl">balanza</AUni> -<AUni ws="qvm-x-ame">balanza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+balanza</AUni> -<AUni ws="qvm-x-acl">+balanza</AUni> -<AUni ws="qvm-x-akh">+balanza</AUni> -<AUni ws="qvm-x-akl">+balanza</AUni> -<AUni ws="qvm-x-ame">+balanza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.939" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d27c8398-b119-46d2-b35b-4757d36e3fed" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+balanza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="efff2c89-5b8b-4d04-828c-473a992cd40f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="78394ca3-fd02-4454-8a1a-a660c4c9a38b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +balanza 
\entryTyp root 
\gENG balance 
\gSPN balanza 
\e +balanza 
\c N0 
\ach balanza 
\akh balanza 
\acl balanza 
\akl balanza 
\ame balanza</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="30975cf5-c7e0-43b3-af4d-3a971effae49" ownerguid="1e419f7a-7363-46bc-8044-157ed0b40ccd"> -<ExampleWords> -<AUni ws="en">hold in the palm</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to holding something with the hand open?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="309ef96d-4cdb-4c3c-b386-8078d6f83fda"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">santu; santo</AUni> -<AUni ws="qvm-x-acl">santu; santu; santo</AUni> -<AUni ws="qvm-x-akh">santu; santo</AUni> -<AUni ws="qvm-x-akl">santu; santu; santo</AUni> -<AUni ws="qvm-x-ame">santu; santo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+santo.1</AUni> -<AUni ws="qvm-x-acl">+santo.1</AUni> -<AUni ws="qvm-x-akh">+santo.1</AUni> -<AUni ws="qvm-x-akl">+santo.1</AUni> -<AUni ws="qvm-x-ame">+santo.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.449" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e21b5dbf-bc02-481c-a3b2-eccd7fbb21e8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+santo.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9b468fc0-6ec7-4305-af13-38a3822dc53a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aea6bc32-69f2-498f-bdaa-f8fc992b8cea" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +santo.1 
\entryTyp root 
\gENG saint 
\gSPN santo 
\e +santo.1 
\c N0 
\ach santu / ~_# 
\ach santo / _# 
\akh santu / ~_# 
\akh santo / _# 
\acl santu / ~_# 
\acl santu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl santo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl santu / ~_# 
\akl santu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl santo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame santu / ~_# 
\ame santo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="309f3e12-8e35-43a7-82d7-b390276bff44"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">kashqantami</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="30a20421-5f33-4561-a4bf-14689d5e39df" ownerguid="07cf5182-d090-4432-817b-037895b5cd1d"> -<ExampleWords> -<AUni ws="en">lose (wealth), lose your business, lose your shirt, loss, suffer loss, fail to make a profit, go bankrupt, fall behind, fall into debt, be unprofitable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to losing wealth?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="30a3c0f1-4ba1-407e-94bf-1715fd67e80f" ownerguid="d0dee676-f3ae-43cc-96f1-7e3bb65870f5"> -<ExampleWords> -<AUni ws="en">fit, dovetail, go in, go on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to something fitting?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="30a5530f-49a2-454f-be28-aabe5e618b16"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uywa</AUni> -<AUni ws="qvm-x-acl">uywa</AUni> -<AUni ws="qvm-x-akh">uywa</AUni> -<AUni ws="qvm-x-akl">uywa</AUni> -<AUni ws="qvm-x-ame">uywa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uywa.n</AUni> -<AUni ws="qvm-x-acl">*uywa.n</AUni> -<AUni ws="qvm-x-akh">*uywa.n</AUni> -<AUni ws="qvm-x-akl">*uywa.n</AUni> -<AUni ws="qvm-x-ame">*uywa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.322" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="320cd8e9-5629-4c21-b04d-f1bee0c46c94" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uywa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b6df5b53-34e2-4024-9ac3-ec5b23db067f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a88760d8-6aa4-4100-8052-fabaf4471e5e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uywa.n 
\entryTyp root 
\gENG animal 
\gSPN animal 
\e *uywa.n 
\c N0 
\ach uywa 
\akh uywa 
\acl uywa 
\akl uywa 
\ame uywa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="30a5d4c9-0ae3-4708-97f3-78b706f7d517" ownerguid="6342c8bf-55b5-400f-af7e-63055fe6813b"> -<ExampleWords> -<AUni ws="en">ladder, stepladder, rope ladder, rung, step</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What tools are used for climbing?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="30a99ae8-a2f5-41a1-99cd-c5dd83eea2f9" ownerguid="8cce4003-fb3c-43a1-a1d6-9c91a5d67cd5"> -<Form> -<AUni ws="qvm-x-ach">camión; camion</AUni> -<AUni ws="qvm-x-acl">camión; camion</AUni> -<AUni ws="qvm-x-akh">camión; camion</AUni> -<AUni ws="qvm-x-akl">camión; camion</AUni> -<AUni ws="qvm-x-ame">camión; camion</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="30aa8b93-ab4c-4c83-aea8-cb56b47a39be" ownerguid="b5aa5873-4c66-4d2d-935a-18e0ab231dbb"> -<ExampleWords> -<AUni ws="en">clumsy, klutz, be all thumbs, accident-prone, ham-fisted, bungling, bumbling, bull in a china shop, butterfingers</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who is clumsy and often has accidents?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="30ad1169-769b-4cc9-9fd8-e266e57475ae" ownerguid="5f19b3eb-124c-4e45-a1a4-f4740c6bad00"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="30aded66-fb83-4093-964c-ed54f2204cbf" ownerguid="8ea4e0d4-71a2-4583-a1fe-f1a941af8478"> -<ExampleWords> -<AUni ws="en">I suggest, can I suggest, can I make a suggestion, let's, how about, what about, why don't you, you could always, we may as well, we might as well</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words do people use when suggesting something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="30b1ec81-8779-4e86-af69-5323fd38bd2a" ownerguid="00269021-e1c4-474d-9dba-341d296bdac7"> -<ExampleWords> -<AUni ws="en">sequence, series, succession, chain, course, progression</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a group of events that happen in order?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="30b295a7-8ab8-4ddd-a104-80e01526c2c8" ownerguid="699732d0-79d8-46c4-8d61-961295dda65c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sting</AUni> -<AUni ws="es">pico</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="415bda1e-07a0-4554-a5f8-91117eb063ec" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="30b2c864-504d-4b4a-8b01-f16af8b5e4ce" ownerguid="783a316a-c748-4435-9e6a-77d316274fa4"> -<Form> -<AUni ws="qvm-x-ach">ataca</AUni> -<AUni ws="qvm-x-acl">ataca</AUni> -<AUni ws="qvm-x-akh">ataca</AUni> -<AUni ws="qvm-x-akl">ataca</AUni> -<AUni ws="qvm-x-ame">ataca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="30b376a1-3d37-4428-8970-8bcf4312a004" ownerguid="a086be2e-79f6-4ba1-9677-fb6af2a33cdf"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="30b3faa8-747e-465f-833a-a9957a259be2" ownerguid="c16334a0-be29-4a1e-a870-4cb3f1df984d"> -<Abbreviation> -<AUni ws="en">7.5.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to separating things into groups, and scattering things. The basic idea of this domain involves a situation in which two or more things are together, and someone moves them so that they are no longer together.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>63G Separate; 15N Disperse, Scatter</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Separate, scatter</AUni> -</Name> -<Questions> -<objsur guid="857a247e-9b95-4284-ad69-061b709c55d9" t="o" /> -<objsur guid="36e675e6-9536-4ecd-ac53-9fed86a737f1" t="o" /> -<objsur guid="bddfd523-a158-4739-b701-b0c48d013d3e" t="o" /> -<objsur guid="80d0a650-1487-4a2d-947f-4234a2dea989" t="o" /> -<objsur guid="dc4a84b4-86b9-434f-bc0c-264670551081" t="o" /> -<objsur guid="5b2888c4-dfb9-4e76-91c2-14f45332626d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="30b43745-3452-4143-bb57-180593703039" ownerguid="0487d560-7421-4859-bd46-91ee95dd2582"> -<Form> -<AUni ws="qvm-x-ach">pacha</AUni> -<AUni ws="qvm-x-acl">pacha</AUni> -<AUni ws="qvm-x-akh">pacha</AUni> -<AUni ws="qvm-x-akl">pacha</AUni> -<AUni ws="qvm-x-ame">pacha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="30b52c52-eaa8-4126-b951-69b241080818" ownerguid="56b1d8b1-5514-4661-8073-f0ed9ba0ca2f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">October</AUni> -<AUni ws="es">octubre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9ab144b9-54bd-499f-a903-d768f8e06cf8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="30b615bb-c200-42b8-a36a-dd4ecf277d14" ownerguid="31171aa9-e243-4b46-abd8-f3e52843cdfc"> -<ExampleWords> -<AUni ws="en">opossum, possum, kangaroo, wallaby, Tasmanian devil, wombat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What species of marsupials are there?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="30b64577-5180-4dfa-9e8a-c8a7cc746f57" ownerguid="63f5d940-5d28-4e00-80a4-a0c68655b1b3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sheath</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b631bb2a-e901-46eb-8337-98b23ff37855" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="30b89170-9666-4414-aa49-d32f09b55dab"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">td</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="30b8f7db-afc3-45a0-9438-0ac977421a5c" ownerguid="251c58e5-af8f-4480-9d5a-0011018f3f00"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="30b95730-dfb6-4ea9-8323-9d1ac363a612" ownerguid="acf5e294-d169-45c1-a9d3-960536e018cc"> -<ExampleWords> -<AUni ws="en">inaudible, unheard, subsonic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that cannot be heard?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="30bc60d4-7a97-469b-9431-1ccd9bfc0a9d" ownerguid="64e3d6b1-1d61-454c-97ab-e1d7cb0a8917"> -<ExampleWords> -<AUni ws="en">tense, strained, uneasy, nail biting, charged, nerve-racking</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe something that causes someone to feel nervous?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="30bf17f3-f3e8-477b-8bce-67e647db6f8c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quisha</AUni> -<AUni ws="qvm-x-acl">quisha</AUni> -<AUni ws="qvm-x-akh">kisha</AUni> -<AUni ws="qvm-x-akl">kisha</AUni> -<AUni ws="qvm-x-ame">kisha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kisha.n</AUni> -<AUni ws="qvm-x-acl">*kisha.n</AUni> -<AUni ws="qvm-x-akh">*kisha.n</AUni> -<AUni ws="qvm-x-akl">*kisha.n</AUni> -<AUni ws="qvm-x-ame">*kisha.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.993" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5c3f9bac-c13c-4451-a684-b0dfdbc32aa6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kisha.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f30a9c57-c993-4160-88ed-dd3ceb114e9c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9b6c51cd-8a39-4470-a0c5-c78b6bc4ef1b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kisha.n 
\entryTyp root 
\gENG food 
\gSPN comida 
\e *kisha.n 
\c N0 
\ach quisha 
\akh kisha 
\acl quisha 
\akl kisha 
\ame kisha</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="30c137a5-1541-42e3-9695-08dfff2c0cff" ownerguid="2c8ae99c-06f1-4c12-95ba-37a825918c0d"> -<Form> -<AUni ws="qvm-x-ach">lanzadëra</AUni> -<AUni ws="qvm-x-acl">lanzadëra</AUni> -<AUni ws="qvm-x-akh">lanzadëra</AUni> -<AUni ws="qvm-x-akl">lanzadëra</AUni> -<AUni ws="qvm-x-ame">lanzadëra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="30c19ffd-4cf4-4bf8-b7d2-53ab5544935b"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">lakikur</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="PhPhoneme" guid="30c775f1-e1c4-459f-9cbd-0c50d111a03f" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="1aeef2b7-1069-4f0d-99be-96e51dfa6c4a" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">vowel length</Run> -</AStr> -</Description> -<Name> -<AUni ws="qvm-x-ach">̈</AUni> -<AUni ws="qvm-x-acl">̈</AUni> -<AUni ws="qvm-x-akh">̈</AUni> -<AUni ws="qvm-x-akl">̈</AUni> -<AUni ws="qvm-x-ame">̈</AUni> -</Name> -</rt> -<rt class="LexEntry" guid="30c95b70-d638-488a-8356-8f06cdc1ecce"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ce:ja</AUni> -<AUni ws="qvm-x-acl">ce:ja</AUni> -<AUni ws="qvm-x-akh">ce:ja</AUni> -<AUni ws="qvm-x-akl">ce:ja</AUni> -<AUni ws="qvm-x-ame">ce:ja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ceja</AUni> -<AUni ws="qvm-x-acl">+ceja</AUni> -<AUni ws="qvm-x-akh">+ceja</AUni> -<AUni ws="qvm-x-akl">+ceja</AUni> -<AUni ws="qvm-x-ame">+ceja</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.102" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e163d719-b67e-46d3-a501-02f49f6aa791" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ceja</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="885ec6c2-44bd-42d6-b959-cb086efc0c46" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2bb02c2b-8c98-4cf9-bcd6-2ce11ba3693f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ceja 
\entryTyp root 
\gENG eyebrow 
\gSPN 
\e +ceja 
\c N0 
\ach ce:ja 
\akh ce:ja 
\acl ce:ja 
\akl ce:ja 
\ame ce:ja</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="30c95fc4-e60c-4da2-8c39-943116563a62"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tinsha</AUni> -<AUni ws="qvm-x-acl">tinsha</AUni> -<AUni ws="qvm-x-akh">tinsha</AUni> -<AUni ws="qvm-x-akl">tinsha</AUni> -<AUni ws="qvm-x-ame">tinsha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tinsha</AUni> -<AUni ws="qvm-x-acl">*tinsha</AUni> -<AUni ws="qvm-x-akh">*tinsha</AUni> -<AUni ws="qvm-x-akl">*tinsha</AUni> -<AUni ws="qvm-x-ame">*tinsha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.914" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dbc05de0-1fce-4f2f-bcd6-bb71d99ce838" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tinsha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e2ff4713-8e38-4e1d-add3-8c942382c27a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="589637d9-9624-43e7-a706-02e8effee7f8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tinsha 
\entryTyp root 
\gENG 
\gSPN 
\e *tinsha 
\c N0 
\ach tinsha 
\akh tinsha 
\acl tinsha 
\akl tinsha 
\ame tinsha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="30ccfb7f-2232-4200-a662-ece020feaf9e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">inca</AUni> -<AUni ws="qvm-x-acl">inca</AUni> -<AUni ws="qvm-x-akh">inca</AUni> -<AUni ws="qvm-x-akl">inca</AUni> -<AUni ws="qvm-x-ame">inca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+inca</AUni> -<AUni ws="qvm-x-acl">+inca</AUni> -<AUni ws="qvm-x-akh">+inca</AUni> -<AUni ws="qvm-x-akl">+inca</AUni> -<AUni ws="qvm-x-ame">+inca</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.812" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3715f953-8c20-44c3-a0a0-2152c85f4c1f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+inca</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b0eec267-89be-49b2-b930-0c4fad240c17" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="48f4761f-ab12-4d0d-99cc-1157f4666d20" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +inca 
\entryTyp root 
\gENG inca 
\gSPN inca 
\e +inca 
\c N0 
\ach inca 
\akh inca 
\acl inca 
\akl inca 
\ame inca</Run> -</AStr> -</Custom> -</rt> -<rt class="PartOfSpeech" guid="30d07580-5052-4d91-bc24-469b8b2d7df9" ownerguid="ecf8c677-320a-452c-85c0-1f0df87b5be5"> -<Abbreviation> -<AUni ws="en">adj</AUni> -<AUni ws="es">adj</AUni> -</Abbreviation> -<BackColor val="0" /> -<CatalogSourceId> -<Uni>Adjective</Uni> -</CatalogSourceId> -<DateCreated val="2022-10-15 15:37:7.785" /> -<DateModified val="2022-10-15 15:37:7.785" /> -<Description> -<AStr ws="en"> -<Run ws="en">An adjective is a part of speech whose members modify nouns. An adjective specifies the attributes of a noun referent. Note: this is one case among many. Adjectives are a class of modifiers.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Adjective</AUni> -<AUni ws="es">Adjetivo</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="30d285d2-2a74-4032-b88c-807f3281df12" ownerguid="167bfba5-0785-4bb5-a083-3ffbefa57897"> -<ExampleWords> -<AUni ws="en">difference, distinction, distinctions</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the difference between two things?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="30d58c31-b27d-4842-bb70-0d0656328606" ownerguid="ecc972e2-fd45-4364-be97-09555bc9e8d0"> -<Form> -<AUni ws="qvm-x-ach">ras</AUni> -<AUni ws="qvm-x-acl">ras</AUni> -<AUni ws="qvm-x-akh">ras</AUni> -<AUni ws="qvm-x-akl">ras</AUni> -<AUni ws="qvm-x-ame">ras</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="30d9af93-8db6-4f1a-87d8-59b1a1954eb0" ownerguid="f425d6e1-3b81-4a76-98ae-9b14d5590058"> -<Form> -<AUni ws="qvm-x-ach">shintica; shinticä</AUni> -<AUni ws="qvm-x-acl">shintica; shinticä</AUni> -<AUni ws="qvm-x-akh">shintika; shintikä</AUni> -<AUni ws="qvm-x-akl">shintika; shintikä</AUni> -<AUni ws="qvm-x-ame">shintika; shintikä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="30dc92a3-04a1-4b8f-ae05-51e006bef67b" ownerguid="4093bfe8-54b3-4ffc-bfe3-3999279840b5"> -<ExampleWords> -<AUni ws="en">explain, explanation, elaborate, elucidate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to explaining something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="30def189-c8e4-4f8b-9364-87930a74102b" ownerguid="530849d4-bd70-4741-9f10-08584d3d2736"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="30deff68-82da-438f-86ae-88fbe589f40f" ownerguid="79b580ff-64a7-445b-abcb-b49b9093779c"> -<ExampleWords> -<AUni ws="en">breed, crossbred, crossbreed, hybrid, interbred, mongrel, stud</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to breeding animals?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="30e52c37-25d0-4ade-8e84-12f17bf413bd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sentencia</AUni> -<AUni ws="qvm-x-acl">sentencia</AUni> -<AUni ws="qvm-x-akh">sentencia</AUni> -<AUni ws="qvm-x-akl">sentencia</AUni> -<AUni ws="qvm-x-ame">sentencia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sentencia</AUni> -<AUni ws="qvm-x-acl">+sentencia</AUni> -<AUni ws="qvm-x-akh">+sentencia</AUni> -<AUni ws="qvm-x-akl">+sentencia</AUni> -<AUni ws="qvm-x-ame">+sentencia</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.490" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="96690f40-77a1-44cf-9c74-99eee2f6f121" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sentencia</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2f92dfc5-4875-4210-b116-9e7960cbdadc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8af26a63-ddee-47a7-843c-88462cba7130" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sentencia 
\entryTyp root 
\gENG sentence 
\gSPN sentencia 
\e +sentencia 
\c N0 
\ach sentencia 
\akh sentencia 
\acl sentencia 
\akl sentencia 
\ame sentencia</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="30e5893f-0956-49ed-bb02-68087e7963e9" ownerguid="c21c28e8-9731-4ee0-acbb-32501bf8abd1"> -<ExampleWords> -<AUni ws="en">alligator, caiman, crocodile</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What species of crocodiles are there?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="30e6b42c-6bbf-4659-99e7-aa4b8e68c9ce" ownerguid="8e11dd10-459b-4fb3-b876-7d80ec5f8a4d"> -<Abbreviation> -<AUni ws="en">4.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.217" /> -<DateModified val="2022-9-23 16:55:8.217" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being good or moral in behavior.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88B Just, Righteous; 88C Holy, Pure; 41C Particular Patterns of Behavior</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Good, moral</AUni> -</Name> -<Questions> -<objsur guid="946a7f7f-b306-4da0-8a94-cfc1008292f7" t="o" /> -<objsur guid="9414df5f-4ed9-47aa-802f-68a6188a7425" t="o" /> -<objsur guid="c9386fdf-0006-4199-b684-9405298ab1f8" t="o" /> -<objsur guid="ea5a9e26-8b98-4de1-b08b-24609e0c15bf" t="o" /> -<objsur guid="c671336d-379d-4bab-9c4b-fdbf511364d0" t="o" /> -<objsur guid="fd17e47b-fd48-486e-8237-d356939df7fb" t="o" /> -<objsur guid="f6a23174-f58c-4eef-8dee-db043ada5b23" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="83adeb9d-c0be-4073-894d-913014420280" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="744d1402-05f5-4491-9c15-a5af03595edb" t="o" /> -<objsur guid="a6797fd1-e368-422b-9710-96e0af39552d" t="o" /> -<objsur guid="4260e110-7b04-4d40-9391-486a57aa3031" t="o" /> -<objsur guid="cb783ad9-4650-416e-bf63-88c4ca43fe6a" t="o" /> -<objsur guid="afc25fbb-9060-4af2-8225-3fddbab2227d" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="30e7327c-90ef-4603-9d04-3b93d2e5f4f8" ownerguid="6fb1d03c-b0fe-49b7-a473-168f12a54a36"> -<ExampleWords> -<AUni ws="en">no later than, at the latest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words indicate that something will happen no later than a particular time?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="30e848f3-25c6-4a09-922e-4177b8387fef" ownerguid="1ca9c079-445d-44ea-9788-292e84a4fe16"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="30ea3057-753d-4c4c-9b1f-ed30e569feea" ownerguid="87bd0d45-8a94-41cb-9864-90d53a11a4b9"> -<Abbreviation> -<AUni ws="en">4.7.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a court of law.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>56A Court of Justice; 56B Lawsuit, Case</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Court of law</AUni> -</Name> -<OcmCodes> -<Uni>698 Special Courts</Uni> -</OcmCodes> -<Questions> -<objsur guid="824ef6bd-ea6a-4e0e-96bb-dc550f312182" t="o" /> -<objsur guid="3307e4d2-da79-4054-b1b3-0ecfb2d7f1f4" t="o" /> -<objsur guid="3a0ad3a5-e016-41d8-8ded-31e3542283be" t="o" /> -<objsur guid="d7d783c3-090f-43d5-9d5d-18216be9c65b" t="o" /> -<objsur guid="c2dd3616-fdf8-421d-aee1-c89fa0a78153" t="o" /> -<objsur guid="66753b28-00e8-4f85-80a5-358860706dfb" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="cca44b46-437c-42ee-93d7-a8820d61d0c8" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="30ec66cd-df0e-475b-a614-7a91c8210db7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yumpay</AUni> -<AUni ws="qvm-x-acl">yumpay</AUni> -<AUni ws="qvm-x-akh">yumpay</AUni> -<AUni ws="qvm-x-akl">yumpay</AUni> -<AUni ws="qvm-x-ame">yumpay</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.497" /> -<DateModified val="2022-10-16 14:54:17.124" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ea450a1a-d611-49b9-867c-b9388fbb0b9a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">COV</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8fd0e0a2-1b9d-4036-af10-684955b4761f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8be4e5a1-d332-43b4-aa68-c05dcdf96cc2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx COV 
\entryTyp suffix 
\gENG COV 
\gSPN CUB 
\e COV 
\c N0/N0 
\o 220 
\mp +FinalC 
\ach yumpay 
\akh yumpay 
\acl yumpay 
\akl yumpay 
\ame yumpay</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="30f03c38-1f95-49d6-b4c9-9254f1d7404b" ownerguid="a0ce1188-88d8-46a0-b675-df7f8400beaa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="7509bf8c-b9dd-4bdd-a310-ab283088d154" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">corner</AUni> -<AUni ws="es">esquina</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5ac01377-a8cc-4ee7-bad1-e61e489d17de" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="30f7a18a-dbce-4131-bf93-42695f709df6" ownerguid="a6f2f005-4706-4048-9599-bc5108a31077"> -<Form> -<AUni ws="qvm-x-ach">turmanyuy</AUni> -<AUni ws="qvm-x-acl">turmanyuy</AUni> -<AUni ws="qvm-x-akh">turmanyuy</AUni> -<AUni ws="qvm-x-akl">turmanyuy</AUni> -<AUni ws="qvm-x-ame">turmanyuy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="30fa4dfc-c21d-46f6-8fd8-55b6c9f3577b" ownerguid="ab80b556-2c7d-4e75-a58d-f5bb58b2feef"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="3d7d2b1e-e68a-4fda-a291-5c92e4db643b" t="o" /> -<objsur guid="711e7a82-dfaa-41c1-8b5b-e02bc4200139" t="o" /> -<objsur guid="6cad76b5-7965-4a94-b7a9-23de432163e3" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="30ff9da4-98e4-4fc6-8df5-174414a63fa0" ownerguid="e4517880-aa2d-4977-b55a-dcb0b6d1f533"> -<ExampleWords> -<AUni ws="en">beautifully, prettily, attractively, exquisitely</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words indicate that something is done in a beautiful way?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="30fff450-1aa5-4993-9c14-c8019a5f072e" ownerguid="265f5645-94cb-485c-8bf9-0a3ab2354f63"> -<Abbreviation> -<AUni ws="en">9.6.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating a contrast between two thoughts that are different in some way.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89W Contrast</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">But</AUni> -</Name> -<Questions> -<objsur guid="37934b99-d109-4c0f-af4f-dbfb74529b7a" t="o" /> -<objsur guid="d4140cbc-11c8-477a-8263-54826b97fead" t="o" /> -<objsur guid="ef1bb5ad-73ae-423e-8872-bde596910811" t="o" /> -<objsur guid="45b23172-42ed-4b6c-970f-95fcd4098939" t="o" /> -<objsur guid="e7e21d3a-6a13-48ce-b4b2-42247af50648" t="o" /> -<objsur guid="797f3129-3cfe-4cd9-ba4c-0c761ec17bb2" t="o" /> -<objsur guid="0bcba319-fd51-47b3-95d3-fc7073fa9289" t="o" /> -<objsur guid="ab5529a2-6aa0-4b87-8e5d-fb822ed9ddb8" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="49f45f97-95f8-4a53-8952-f90147af2ba9" t="o" /> -<objsur guid="f94e9041-49b0-4d25-aa54-9446c5ab45f4" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="3103399c-32a8-4a6f-a198-3c15b9123aba" ownerguid="6eeef67a-549e-41a2-a3eb-6499150723c2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bitter</AUni> -<AUni ws="es">amargo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="93a9af43-27d2-4313-8557-6b039d7fe640" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3104a95b-5bef-4b2f-89a8-28fa5300d1ea" ownerguid="4c862416-f7c4-4a3c-82ac-fe81e1efb879"> -<ExampleWords> -<AUni ws="en">adrenal, endocrine, pituitary, thyroid, thymus, sweat gland, salivary gland, mammary gland, hormone, hormonal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the glands?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="31084b3e-4348-489e-ba40-6f8847ef46c5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shucuy</AUni> -<AUni ws="qvm-x-acl">shucuy</AUni> -<AUni ws="qvm-x-akh">shukuy</AUni> -<AUni ws="qvm-x-akl">shukuy</AUni> -<AUni ws="qvm-x-ame">shukuy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shukuy</AUni> -<AUni ws="qvm-x-acl">*shukuy</AUni> -<AUni ws="qvm-x-akh">*shukuy</AUni> -<AUni ws="qvm-x-akl">*shukuy</AUni> -<AUni ws="qvm-x-ame">*shukuy</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.622" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d807beb4-ac39-4565-bafb-e82801003479" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shukuy</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5d9af6ba-4e69-4309-8fd2-3941002b97c1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f815acdf-eaf1-4ed8-b4c1-98fbb0cc0807" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shukuy 
\entryTyp root 
\gENG moccasin 
\gSPN mocasfn 
\e *shukuy 
\c N0 
\mp +FinalC 
\ach shucuy 
\akh shukuy 
\acl shucuy 
\akl shukuy 
\ame shukuy</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="31089a7b-3d86-47a4-aa86-2879999722ca" ownerguid="bf6a441e-59e4-4e54-9969-9a29db438690"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EZK 27.13 Tsaynoglami Javán, Tubal y Mesec runacunapis ashmay runacunata y broncipita rurashga manëjucunata ranticushog canqui.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="310a39b0-5843-4692-82b9-5406c2ef9bcb" ownerguid="15b7d6ea-aa4f-4864-836a-ee5e111181f3"> -<Form> -<AUni ws="qvm-x-ach">red</AUni> -<AUni ws="qvm-x-acl">red</AUni> -<AUni ws="qvm-x-akh">red</AUni> -<AUni ws="qvm-x-akl">red</AUni> -<AUni ws="qvm-x-ame">red</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="311238e6-8918-42d3-aa2d-3e099ed22849" ownerguid="cbc7166b-1360-4094-8d98-a77a380fdc86"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="3115ffaa-944a-44bd-9988-1060320c390c" ownerguid="2fc6e3a3-635f-46f6-ad6d-1674d5d1d766"> -<Form> -<AUni ws="qvm-x-ach">rindi</AUni> -<AUni ws="qvm-x-acl">rindi; rinde</AUni> -<AUni ws="qvm-x-akh">rindi</AUni> -<AUni ws="qvm-x-akl">rindi; rinde</AUni> -<AUni ws="qvm-x-ame">rindi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="31162ea0-1a50-4705-ad7f-dca19f5eb601" ownerguid="31ec0cbc-4079-4c6c-873a-d0c406383db2"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="r" /> -</Morph> -</rt> -<rt class="CmSemanticDomain" guid="31171aa9-e243-4b46-abd8-f3e52843cdfc" ownerguid="5e9f361d-17dc-4ada-a312-8da269d22a64"> -<Abbreviation> -<AUni ws="en">1.6.1.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.978" /> -<DateModified val="2022-9-23 16:55:7.978" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for marsupials (phylum Chordata, class Mammalia, order Marsupialia). Marsupials carry their young in a pouch.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Marsupial</AUni> -</Name> -<Questions> -<objsur guid="6177e09f-8ed8-40eb-9f98-8d73b9044ea8" t="o" /> -<objsur guid="30b615bb-c200-42b8-a36a-dd4ecf277d14" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="311b5dab-0433-4cba-9928-2d0b656c696d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">corona</AUni> -<AUni ws="qvm-x-acl">corona</AUni> -<AUni ws="qvm-x-akh">corona</AUni> -<AUni ws="qvm-x-akl">corona</AUni> -<AUni ws="qvm-x-ame">corona</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+coronar</AUni> -<AUni ws="qvm-x-acl">+coronar</AUni> -<AUni ws="qvm-x-akh">+coronar</AUni> -<AUni ws="qvm-x-akl">+coronar</AUni> -<AUni ws="qvm-x-ame">+coronar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.192" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="de4f843e-85c8-4e4a-b9ea-1ffe28b9b135" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+coronar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="275de9ce-3fdc-4230-8731-90c205d29c0f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8cdf0b84-1d00-4a94-a89d-fafc753a6f39" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +coronar 
\entryTyp root 
\gENG 
\gSPN 
\e +coronar 
\c V2 
\ach corona 
\akh corona 
\acl corona 
\akl corona 
\ame corona</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="311ee438-8ba8-4e3a-9924-82fa5f870acc" ownerguid="37675f68-2df4-4f45-9d10-2dd417087230"> -<Form> -<AUni ws="qvm-x-ach">desalenta</AUni> -<AUni ws="qvm-x-acl">desalenta</AUni> -<AUni ws="qvm-x-akh">desalenta</AUni> -<AUni ws="qvm-x-akl">desalenta</AUni> -<AUni ws="qvm-x-ame">desalenta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="31214385-6f41-400c-a286-902b820dcaed"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tiji:ra</AUni> -<AUni ws="qvm-x-acl">tiji:ra</AUni> -<AUni ws="qvm-x-akh">tiji:ra</AUni> -<AUni ws="qvm-x-akl">tiji:ra</AUni> -<AUni ws="qvm-x-ame">tiji:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tijeras</AUni> -<AUni ws="qvm-x-acl">+tijeras</AUni> -<AUni ws="qvm-x-akh">+tijeras</AUni> -<AUni ws="qvm-x-akl">+tijeras</AUni> -<AUni ws="qvm-x-ame">+tijeras</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.886" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f9528962-2b46-42a0-8bd8-caca48c57ec4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tijeras</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0e282bb2-cb30-41c2-bba9-a4f46df718c6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7b47df7a-9448-4904-9621-9f7d3ac8f670" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tijeras 
\entryTyp root 
\gENG scissors 
\gSPN tijeras 
\e +tijeras 
\c N0 
\ach tiji:ra 
\akh tiji:ra 
\acl tiji:ra 
\akl tiji:ra 
\ame tiji:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="31269e8f-6ffb-4df5-9ac7-93ea031bfff1" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<ExampleWords> -<AUni ws="en">cubic (inch, foot, yard)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to a unit of size?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="312820e2-4738-43c4-a998-c2d48967fc7b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">a:shi</AUni> -<AUni ws="qvm-x-acl">a:shi</AUni> -<AUni ws="qvm-x-akh">a:shi</AUni> -<AUni ws="qvm-x-akl">a:shi</AUni> -<AUni ws="qvm-x-ame">a:shi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*a:shi</AUni> -<AUni ws="qvm-x-acl">*a:shi</AUni> -<AUni ws="qvm-x-akh">*a:shi</AUni> -<AUni ws="qvm-x-akl">*a:shi</AUni> -<AUni ws="qvm-x-ame">*a:shi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.840" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c51aeec4-2885-4f21-ab98-94779b79190e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*a:shi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b2b02fb7-483f-4bc4-9e69-b752906f3aa2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9f9d7ea8-a60d-47fe-8fe2-f70bb2d55ad3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *a:shi 
\entryTyp root 
\gENG 
\gSPN así.dice 
\e *a:shi 
\c NOSUFF 
\mp +FinalI 
\ach a:shi 
\akh a:shi 
\acl a:shi 
\akl a:shi 
\ame a:shi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="3128d478-4d6d-4879-a380-2bb055a3c51d" ownerguid="5195d933-c9e7-4e81-b6e6-01a16790c638"> -<Form> -<AUni ws="qvm-x-ach">yega</AUni> -<AUni ws="qvm-x-acl">yega</AUni> -<AUni ws="qvm-x-akh">yeqa</AUni> -<AUni ws="qvm-x-akl">yeqa</AUni> -<AUni ws="qvm-x-ame">yiqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="31293342-b7b5-489d-88b4-69c8a986560f" ownerguid="59e8d53c-73a3-42ad-86a1-73dde75b6bb4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rent</AUni> -<AUni ws="es">arrendamiento</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f53efd82-fe8e-4a59-9e3b-e41450967713" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="312ce7a7-8c7c-416d-bf93-73376f1f16d8" ownerguid="130e2cbb-7e51-4f6f-a1cf-7a053a44c9b7"> -<Abbreviation> -<AUni ws="en">8.3.8.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing the appearance of something that has pleasing aspects or inspires awe and wonder in the viewer. For instance, the palace of a king, the home of a rich man, or a temple may be elaborately decorated and be described as glorious or magnificent. Or something in nature such as a sunset or flower may inspire awe and wonder.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79E Glorious</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Glory</AUni> -</Name> -<Questions> -<objsur guid="9ab8332d-2602-415c-b9b0-d185a12be0aa" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="312f80e4-26ee-4c04-b319-eb6f65ae52ff" ownerguid="188fa1eb-3f9c-4d8b-ab1c-ba814d8889c8"> -<Form> -<AUni ws="qvm-x-ach">cosecha</AUni> -<AUni ws="qvm-x-acl">cosecha</AUni> -<AUni ws="qvm-x-akh">cosecha</AUni> -<AUni ws="qvm-x-akl">cosecha</AUni> -<AUni ws="qvm-x-ame">cosecha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="31326f10-3544-4fd3-871e-22f6871ee0d8" ownerguid="64e41545-3a0a-4524-a8d4-8e5e0f0e2391"> -<ExampleWords> -<AUni ws="en">the lights are on, be lit up, ablaze</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the lights being on in a place?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="31364db4-f44f-4375-954c-ccc088d48e96" ownerguid="5e640c5a-aa6a-4cf0-9ad2-45e88a91c052"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoAffixAllomorph" guid="313750f4-cfad-48d3-a7eb-3bae7d9481fb" ownerguid="c4133918-247c-46dc-991b-ce9ccd2d2ced"> -<Form> -<AUni ws="qvm-x-ach">ntsi</AUni> -<AUni ws="qvm-x-acl">ntsi</AUni> -<AUni ws="qvm-x-akh">ntsi</AUni> -<AUni ws="qvm-x-akl">ntsi</AUni> -<AUni ws="qvm-x-ame">ntsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="313a65bf-450f-48da-8903-a43247f1a5f8" ownerguid="e5f9c9cf-0b0c-47aa-b7df-8c37f211cd00"> -<Abbreviation> -<AUni ws="en">7.8.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.557" /> -<DateModified val="2022-9-23 16:55:8.557" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to making a hole or opening in something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>19B Pierce, Cut</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Make hole, opening</AUni> -</Name> -<Questions> -<objsur guid="6e669b11-afd9-4879-b97b-8f695f02797d" t="o" /> -<objsur guid="a3f903ec-95f8-47a1-8c17-5833ba1257d3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="313ca832-ce91-44c9-bb35-bd130c39d924" ownerguid="2621e605-3ecc-4f3d-b28c-f8c92b3c4584"> -<Abbreviation> -<AUni ws="en">8.3.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.609" /> -<DateModified val="2022-9-23 16:55:8.609" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is sharp.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79S Sharp</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Sharp</AUni> -</Name> -<Questions> -<objsur guid="971a60e2-f021-4438-99f4-d4030dff0738" t="o" /> -<objsur guid="c257b457-d631-4715-b0b5-1c6688fe2d04" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="34fe8676-7bda-493d-a012-bc5748e87823" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="313f4c42-6405-4fb6-a6a2-5237af6ed11b" ownerguid="1aa3b9b8-ed19-4ec5-a42b-57599a8cfe20"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="31426c31-9439-406c-9867-bc98c6ca0565" ownerguid="198436ae-c3c6-4f3c-8fe0-ea10c867f1c6"> -<Abbreviation> -<AUni ws="en">6.2.1.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.385" /> -<DateModified val="2022-9-23 16:55:8.385" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to growing sugarcane.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Growing sugarcane</AUni> -</Name> -<Questions> -<objsur guid="fbafff36-9702-4215-b7c8-e9830735917b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="3142bb37-c4d4-4c71-9a41-99d72b0df88d" ownerguid="319b7245-2c99-422b-a23e-d33810811ef9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">r</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">r</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">r</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">r</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">r</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a96fae79-db91-498f-a3f4-4aaeff3f9499" t="r" /> -</Morph> -<Msa> -<objsur guid="973e08a0-60b3-4ff1-9973-ac70ea0a16bc" t="r" /> -</Msa> -</rt> -<rt class="LexExampleSentence" guid="3144ec7b-f1bb-40df-ba34-9e759c69dc28" ownerguid="871e6c62-7ae3-4c76-9ea3-a7f757d6016d"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">juti+tsi</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="314520c6-a372-417e-b05e-7e2f52faa611" ownerguid="8f0de903-8416-4385-b9cc-f0cc55ec340c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="aa40eb75-f625-4277-9fa4-1eac2452325b" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">low.pants</AUni> -<AUni ws="es">pantalón.bajo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b704c9db-2761-4cd6-b0bb-9e758f0b8fd9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="3147ae2e-bb1c-45ae-8da3-b656a0ede47d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lauracha</AUni> -<AUni ws="qvm-x-acl">lauracha</AUni> -<AUni ws="qvm-x-akh">lawracha</AUni> -<AUni ws="qvm-x-akl">lawracha</AUni> -<AUni ws="qvm-x-ame">lawracha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llawratra</AUni> -<AUni ws="qvm-x-acl">*llawratra</AUni> -<AUni ws="qvm-x-akh">*llawratra</AUni> -<AUni ws="qvm-x-akl">*llawratra</AUni> -<AUni ws="qvm-x-ame">*llawratra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.182" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="24ef72c6-0ff8-41eb-b766-115b83082829" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llawratra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9a9d2fee-2467-4761-b72f-910b434a9c41" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b1d6db02-ac5c-4cbe-b174-53cad9901cf1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llawratra 
\entryTyp root 
\gENG 
\gSPN ? 
\e *llawratra 
\c N0 
\ach lauracha 
\akh lawracha 
\acl lauracha 
\akl lawracha 
\ame lawracha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="314bb7f6-079f-49aa-ac78-4e3130fe7c77" ownerguid="d80360f9-7319-40a7-a2bc-fd8718711ba4"> -<ExampleWords> -<AUni ws="en">come before, precede</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to coming before something else in a series?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="314c8fea-4bdb-4bc8-ab67-a26a9c5abbd4" ownerguid="c05bf8c3-78f2-4ec5-b0d7-32d4963a5794"> -<Abbreviation> -<AUni ws="en">8.3.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.628" /> -<DateModified val="2022-9-23 16:55:8.628" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that describe something that is stiff--not easy to bend.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Stiff, flexible</AUni> -</Name> -<Questions> -<objsur guid="7eadf473-4d1b-4a77-afb0-8341436c52cf" t="o" /> -<objsur guid="a1e67572-e613-4351-9d34-e2c39c1ed4b4" t="o" /> -<objsur guid="c1c0bf9b-f5bc-4996-ab0d-ad3d4537933a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="314d6c78-0f1a-4454-baac-07ab4c94b271"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">voz</AUni> -<AUni ws="qvm-x-acl">voz</AUni> -<AUni ws="qvm-x-akh">voz</AUni> -<AUni ws="qvm-x-akl">voz</AUni> -<AUni ws="qvm-x-ame">voz</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+voz</AUni> -<AUni ws="qvm-x-acl">+voz</AUni> -<AUni ws="qvm-x-akh">+voz</AUni> -<AUni ws="qvm-x-akl">+voz</AUni> -<AUni ws="qvm-x-ame">+voz</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.432" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="43a42f93-17ce-4b2b-bb9d-79655d9ec43d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+voz</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4acdf4b1-d46b-49ed-acda-7169bd214205" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0c1ceb4c-d2e4-4ab3-8e00-a53480514c0c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +voz 
\entryTyp root 
\gENG voice 
\gSPN voz 
\e +voz 
\c N0 
\mp +FinalC 
\ach voz 
\akh voz 
\acl voz 
\akl voz 
\ame voz</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="314e274b-5c6c-4da5-8834-1effe71bdbd5" ownerguid="bf6e1719-11ee-4ace-9c84-72019c01aabc"> -<ExampleWords> -<AUni ws="en">spring up, well up, bubble up, flow out of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to water coming out of the ground?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="31551e8e-a923-4e72-80a2-7946d9c92f10" ownerguid="ff057800-b07c-4b82-b27d-99a1e7c01f14"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="3155c627-a0c8-4c39-845e-e6c5ac72ad45" ownerguid="80672cf3-91e0-456b-9f7a-a503002fd4d6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="77f8d20e-74da-47bd-86ed-3d3489408278" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3158b624-44e8-48d0-b520-75c49ffbf00c" ownerguid="66abfbe5-e011-48de-8773-905f1b1ce215"> -<ExampleWords> -<AUni ws="en">potter's wheel, sponge, kiln, brick form, form for tile, mold</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What tools are used to work with clay?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="3159b288-5a51-4a70-814b-2e866f61e4a8" ownerguid="1e2f084c-71ac-42d4-8200-995f1be5d2c4"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="b7a971e8-63c5-47a8-b1e2-63c86f30f108" t="o" /> -<objsur guid="a204faec-678b-4e46-93ee-8f52fd067519" t="o" /> -<objsur guid="91bdcedf-4c73-4c70-92bc-c228671429b2" t="o" /> -<objsur guid="e7306af4-785d-4f5e-9239-d1df2bf73051" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="315a17c4-2b78-42dd-a7d6-e8a0cc502619" ownerguid="9040c8fd-b0d7-4fdd-97c0-081a6a79531f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">abundance</AUni> -<AUni ws="es">abundancia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fcb128f2-37b1-4780-8d21-5e85e9917532" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="315c1ccc-fdda-4948-a788-d81c7ad4f705" ownerguid="9a3cf33a-4804-4eb4-8dfd-80f6018764e5"> -<Form> -<AUni ws="qvm-x-ach">lapi</AUni> -<AUni ws="qvm-x-acl">lapi; lapi; lape</AUni> -<AUni ws="qvm-x-akh">lapi</AUni> -<AUni ws="qvm-x-akl">lapi; lapi; lape</AUni> -<AUni ws="qvm-x-ame">lapi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="315c65d4-e7a6-402a-a35d-156a7f966589" ownerguid="e3735bab-69a6-43b1-99e0-4a08e88df940"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="315f6657-60d5-4e6e-a710-2e0cfbbfa6bc" ownerguid="af5804b9-5f0a-4603-92d7-e382b51f21e6"> -<Form> -<AUni ws="qvm-x-ach">cebadillu</AUni> -<AUni ws="qvm-x-acl">cebadillu; cebadillu; cebadillo</AUni> -<AUni ws="qvm-x-akh">cebadillu</AUni> -<AUni ws="qvm-x-akl">cebadillu; cebadillu; cebadillo</AUni> -<AUni ws="qvm-x-ame">cebadillu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3160197e-cc5f-49a5-a517-550ffb72675a" ownerguid="a57185c3-0cb5-41fa-94bf-da0c9edac600"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">He gave you <three times what> he gave me.; He gave you <three times as much as> he gave me.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">twice as much (as), two times as much (as), two times what, double what</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something is two or three times the amount of something else?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="31609e09-a8f4-4d14-a67d-dacfcce44dbf" ownerguid="aa8ae4da-326c-4446-8d1c-635794db05f5"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="3160b7ad-e4e8-4a46-8e2e-d5e601969547" ownerguid="c9aee4df-ac3e-4159-bd1a-060db1a5f070"> -<Abbreviation> -<AUni ws="en">3.5.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.174" /> -<DateModified val="2022-9-23 16:55:8.174" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a story.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33C Discourse Types</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Story</AUni> -</Name> -<Questions> -<objsur guid="0bae8b30-caab-4f0f-8254-76981acb962e" t="o" /> -<objsur guid="d22374e3-2142-4b74-880d-b9bd505da29c" t="o" /> -<objsur guid="e3759ffa-590f-42a6-a67b-07731f65ce42" t="o" /> -<objsur guid="ec8a632e-9de1-499d-805e-3fc55c7b3726" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="f0404b23-db91-46c7-87e1-9f1be0712980" t="o" /> -<objsur guid="65ef6aae-019f-4980-b6d9-5b7ad2c8e68f" t="o" /> -<objsur guid="26d32f3e-ced6-45fc-afd0-7e017fa252c6" t="o" /> -<objsur guid="f0f3c371-166e-4a66-849f-60d6fa7ad889" t="o" /> -<objsur guid="2629943b-3a69-4c6b-9956-2aa59ebd03d3" t="o" /> -<objsur guid="a4fa9f98-73c6-4c3e-9dad-d73d2634be3b" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="31624097-d995-4b84-ae46-069b1961ec93" ownerguid="57237095-23cf-43ba-aa6c-89cecdd35ff8"> -<ExampleWords> -<AUni ws="en">orphanage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a place where orphans are taken care of?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="31666704-ce20-4b9a-9f76-0835b0f1703f" ownerguid="672982f9-90f7-4d71-85da-a54578f61abe"> -<Form> -<AUni ws="qvm-x-ach">alar</AUni> -<AUni ws="qvm-x-acl">alar</AUni> -<AUni ws="qvm-x-akh">alar</AUni> -<AUni ws="qvm-x-akl">alar</AUni> -<AUni ws="qvm-x-ame">alar</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3168bd48-f555-4ad8-bb6c-ef0b9dd56849" ownerguid="728bbc7c-e5b3-47d8-8532-72239e5c88bb"> -<ExampleWords> -<AUni ws="en">summarize, summary, review, recap</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to repeating what someone has said, but saying it in fewer words?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="316f27aa-ed6d-4bc3-9d14-840946a6f4e9" ownerguid="3a2c0773-6b3e-4f8b-909d-c8f84d66d4f4"> -<Abbreviation> -<AUni ws="en">9.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.680" /> -<DateModified val="2022-9-23 16:55:8.680" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general adjectives that can replace or stand for a specific adjective.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">General adjectives</AUni> -</Name> -<Questions> -<objsur guid="ecaf8ff7-f033-4919-9171-3811efa82e8f" t="o" /> -<objsur guid="3fdb5f98-c55f-40a6-8c5a-046ded3e6c36" t="o" /> -<objsur guid="2a38b417-b286-4c43-a6b4-2f97c990ab9b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="316fa139-700e-4faa-b939-1071dc53d35e" ownerguid="7bf76855-b806-4912-bf0e-beaa90d4c25d"> -<Form> -<AUni ws="qvm-x-ach">wagshi</AUni> -<AUni ws="qvm-x-acl">wagshi; wagshi; wagshe</AUni> -<AUni ws="qvm-x-akh">waqshi</AUni> -<AUni ws="qvm-x-akl">waqshi; waqshi; waqshe</AUni> -<AUni ws="qvm-x-ame">waqshi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="3170d496-c6d1-47af-afd6-312414e04280" ownerguid="7140238c-a839-4012-9732-77099e69ddd3"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="317105a0-c45c-4b03-9211-f8e8d2e2b50e" ownerguid="cbc0a8f5-9cba-41d2-a7e5-565fbf09c8c4"> -<ExampleWords> -<AUni ws="en">ho ho ho, ha ha ha</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to the sound of a person makes when he is laughing?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3172de51-a297-4877-a407-cd0b5ce64030"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pesadi:lla</AUni> -<AUni ws="qvm-x-acl">pesadi:lla</AUni> -<AUni ws="qvm-x-akh">pesadi:lla</AUni> -<AUni ws="qvm-x-akl">pesadi:lla</AUni> -<AUni ws="qvm-x-ame">pesadi:lla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pesadilla</AUni> -<AUni ws="qvm-x-acl">+pesadilla</AUni> -<AUni ws="qvm-x-akh">+pesadilla</AUni> -<AUni ws="qvm-x-akl">+pesadilla</AUni> -<AUni ws="qvm-x-ame">+pesadilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.810" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="85c77b3e-c77a-4f7c-bef6-f4bf494539a5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pesadilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5c979484-a161-4129-ae62-6efa434252ab" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3d80cca9-9246-413d-a0b8-71c6bdca94b9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pesadilla 
\entryTyp root 
\gENG 
\gSPN 
\e +pesadilla 
\c N0 
\ach pesadi:lla 
\akh pesadi:lla 
\acl pesadi:lla 
\akl pesadi:lla 
\ame pesadi:lla</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3175818d-b4e4-4362-8fbf-961dc46a1c0d" ownerguid="8a81b9bc-9c66-4d57-a2d1-2e592604c4b1"> -<ExampleWords> -<AUni ws="en">fill, fill up, cram, pack, stuff, crowd, load, load up, fill to the brim, flood, inject, jam, pump something full, suffuse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making something full?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="31777669-e37b-4b77-9cce-0d8c33f6ebb9" ownerguid="79ebb5ce-f0fd-4fb5-9f22-1fa4965a555b"> -<Abbreviation> -<AUni ws="en">1.3.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.963" /> -<DateModified val="2022-9-23 16:55:7.963" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to bodies of standing water with plants growing in them.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Swamp</AUni> -</Name> -<Questions> -<objsur guid="cb25c946-dd2e-4c18-bb26-cabf8b4f143c" t="o" /> -<objsur guid="87ddd0ab-a5ba-4a76-8d5a-302555ba2034" t="o" /> -<objsur guid="98cb87a1-8548-42f8-9bf2-6e1205e093b4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="317ca901-c4a3-4bdd-bcf2-bd4fd93a6c73" ownerguid="f3dbb078-6265-4861-a6e3-46cc151c5d72"> -<ExampleWords> -<AUni ws="en">complaint, grievance, gripe, grumble, objection, cause for complaint</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something that someone complains about?</AUni> -</Question> -</rt> -<rt class="MoInflAffMsa" guid="317d050e-253e-445f-bb1c-45ec554f114e" ownerguid="0ea972e6-0904-41bb-977b-7ee45ab4b91b"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="fda4c591-1349-4f9e-ab87-905ae2aa25e1" t="r" /> -</Slots> -</rt> -<rt class="CmSemanticDomain" guid="3180b6aa-3ad9-4bd3-96f7-ae72264406fb" ownerguid="e931da8a-efc1-46cb-836a-72fba4a1eb4f"> -<Abbreviation> -<AUni ws="en">7.3.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.528" /> -<DateModified val="2022-9-23 16:55:8.528" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to moving something back to an original place or person. (Something is in a place, someone (or something) moves it, then someone moves it back to the first place.)</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Return something</AUni> -</Name> -<Questions> -<objsur guid="dee94ada-a104-4f24-ba86-77a894d50534" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiGloss" guid="3184fe20-ccaf-4eae-8ae7-2ae0f73f60ae" ownerguid="6f2499f2-4b04-481d-b053-8fdca016e056" /> -<rt class="MoStemAllomorph" guid="31885488-b574-43d5-8ce2-59a3392d6575" ownerguid="7a043f3c-8587-4c52-82ac-e90b2d9bc0f4"> -<Form> -<AUni ws="qvm-x-ach">bolsa</AUni> -<AUni ws="qvm-x-acl">bolsa</AUni> -<AUni ws="qvm-x-akh">bolsa</AUni> -<AUni ws="qvm-x-akl">bolsa</AUni> -<AUni ws="qvm-x-ame">bolsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="318a5c41-2943-415b-a5c7-1a0eb5bef481" ownerguid="f38f8344-838f-44ba-b103-22289c2d2793"> -<ExampleWords> -<AUni ws="en">humid, moist, muggy, steamy, tropical</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe the air when there is water in it?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="318bb2cf-d3ac-4e0c-91d8-652917a706a1" ownerguid="f8ac9b37-12df-48d6-9455-239166f4dc96"> -<Form> -<AUni ws="qvm-x-ach">tronquea</AUni> -<AUni ws="qvm-x-acl">tronquea</AUni> -<AUni ws="qvm-x-akh">tronquea</AUni> -<AUni ws="qvm-x-akl">tronquea</AUni> -<AUni ws="qvm-x-ame">tronquea</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PunctuationForm" guid="318bf9f9-aa14-41c5-a2de-8b7490464438"> -<Form> -<Str> -<Run ws="en">N0</Run> -</Str> -</Form> -</rt> -<rt class="LexEntry" guid="318c8249-be92-4a1d-a930-d896c7f33f34"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">peligro:su</AUni> -<AUni ws="qvm-x-acl">peligro:su; peligro:su; peligro:so</AUni> -<AUni ws="qvm-x-akh">peligro:su</AUni> -<AUni ws="qvm-x-akl">peligro:su; peligro:su; peligro:so</AUni> -<AUni ws="qvm-x-ame">peligro:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+peligroso</AUni> -<AUni ws="qvm-x-acl">+peligroso</AUni> -<AUni ws="qvm-x-akh">+peligroso</AUni> -<AUni ws="qvm-x-akl">+peligroso</AUni> -<AUni ws="qvm-x-ame">+peligroso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.790" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="85f92415-e3d0-49ae-b05d-a49cd4879e3c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+peligroso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b1c1dde8-eb4b-4220-b6b2-d554fadfd634" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="57837d75-156a-44b7-996a-07392cb707a3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +peligroso 
\entryTyp root 
\gENG dangerous 
\gSPN pelegroso 
\e +peligroso 
\c N0 
\ach peligro:su 
\akh peligro:su 
\acl peligro:su / _# 
\acl peligro:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl peligro:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl peligro:su / _# 
\akl peligro:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl peligro:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame peligro:su</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="318dc442-ba4c-4a79-afdb-3a9d3cf54fa6" ownerguid="a3114026-3243-493e-b04d-4cd401fb8d7b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="318e90a6-c064-49c9-913f-c95b0b0920a7" ownerguid="3fca793b-3f79-4972-ba71-3486ea899f5f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="318f2179-c0fd-4c9b-b4a3-a5254e3d98f8" ownerguid="2f151c35-72e1-4665-bc05-6fc70a3ecff2"> -<ExampleWords> -<AUni ws="en">contorted, cunning, hard-featured, rough</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe the face of a person who is bad?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="318fcd9a-e32d-426d-a970-82e76c1de089" ownerguid="69b19738-1f89-4839-ab20-6054675f394d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="0f181615-b802-4ef4-887e-23b00a1a9169" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="StStyle" guid="3191611c-41c6-4ecf-bcd5-a5084cc3e1f2" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="7d2c80cd-af87-4d56-8337-cfd389b775bb" t="r" /> -</BasedOn> -<Context val="0" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Heading 2</Uni> -</Name> -<Next> -<objsur guid="7d2c80cd-af87-4d56-8337-cfd389b775bb" t="r" /> -</Next> -<Rules> -<Prop bold="invert" fontsize="12000" fontsizeUnit="mpt" italic="invert" spaceAfter="3000" spaceBefore="12000"></Prop> -</Rules> -<Structure val="0" /> -<Type val="0" /> -<Usage> -<AUni ws="en">Second-level headings (1.1, 1.2, 1.3)</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="LexEntry" guid="3196b963-90b0-44ec-99ac-7ea5ba3a41a4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aniversariu; aniversario</AUni> -<AUni ws="qvm-x-acl">aniversariu; aniversariu; aniversario</AUni> -<AUni ws="qvm-x-akh">aniversariu; aniversario</AUni> -<AUni ws="qvm-x-akl">aniversariu; aniversariu; aniversario</AUni> -<AUni ws="qvm-x-ame">aniversariu; aniversario</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+aniversario</AUni> -<AUni ws="qvm-x-acl">+aniversario</AUni> -<AUni ws="qvm-x-akh">+aniversario</AUni> -<AUni ws="qvm-x-akl">+aniversario</AUni> -<AUni ws="qvm-x-ame">+aniversario</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.778" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="24e51d15-c342-47d1-8e6d-ad75e9845245" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+aniversario</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7f9bde25-211e-46c9-bb54-2705591c11a9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="df70ea38-b5b5-42fa-b796-244eb1202e4f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +aniversario 
\entryTyp root 
\gENG anniversary 
\gSPN aniversario 
\e +aniversario 
\c N0 
\ach aniversariu / ~_# 
\ach aniversario / _# 
\akh aniversariu / ~_# 
\akh aniversario / _# 
\acl aniversariu / ~_# 
\acl aniversariu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl aniversario +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl aniversariu / ~_# 
\akl aniversariu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl aniversario +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame aniversariu / ~_# 
\ame aniversario / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="31990a6a-8a08-4700-9ef2-5e0d9ca45f53" ownerguid="6bf8ce57-1970-4efb-a7d7-b0bf8be6fb6b"> -<ExampleWords> -<AUni ws="en">badly-timed, ill-timed, come at the wrong time, at a bad time, inopportune</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something happening at the wrong time?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="319a4ffd-ec50-4f91-81f6-21101cf5937d" ownerguid="3e8606b7-a314-4aea-a161-41cfd4009c80"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="96f1fa13-28bb-417a-a251-7e88cc912657" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="319b502c-f39c-4d27-aa6d-0547f3354248" ownerguid="4bef8767-9346-4e30-acf4-88a2c62ad30b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="319b7245-2c99-422b-a23e-d33810811ef9" ownerguid="a72939e5-3808-4c71-960d-f24c5688e1cf"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="cd4190e5-ccf0-429c-99ab-2cd8f2ef6a08" t="o" /> -<objsur guid="707ec89b-63d7-4303-ba42-4772dcfae9ec" t="o" /> -<objsur guid="ea4e2880-127a-4b3c-b521-fcd4aa3fd5f8" t="o" /> -<objsur guid="3142bb37-c4d4-4c71-9a41-99d72b0df88d" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="31a1db66-c2a7-4afc-9e95-deeeddb36618" ownerguid="56984b2b-3417-49b4-a082-1a383551a9e9"> -<ExampleWords> -<AUni ws="en">false labor, early labor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feelings a woman has when she thinks she is beginning to go into labor?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="31a7512b-6b46-4d0d-a71b-69a4b837f3ff" ownerguid="7191be07-9702-4a82-ba0b-2fd748164668"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="ead02163-707b-44cf-9a47-367305c1689f" t="o" /> -<objsur guid="3ae46517-a263-48bb-8a7d-a5265aa10100" t="o" /> -<objsur guid="711f4cac-4cd7-43ef-bf12-b4b1adfd2722" t="o" /> -<objsur guid="e3b4235e-cb4e-4cae-8309-a98d7b63344f" t="o" /> -<objsur guid="54ea3254-2c6a-4205-84f8-9a4d3d6ba276" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="31a7ec5f-da68-429d-99c9-6cf84807ddfb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">junta</AUni> -<AUni ws="qvm-x-acl">junta</AUni> -<AUni ws="qvm-x-akh">junta</AUni> -<AUni ws="qvm-x-akl">junta</AUni> -<AUni ws="qvm-x-ame">junta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+juntar.1</AUni> -<AUni ws="qvm-x-acl">+juntar.1</AUni> -<AUni ws="qvm-x-akh">+juntar.1</AUni> -<AUni ws="qvm-x-akl">+juntar.1</AUni> -<AUni ws="qvm-x-ame">+juntar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.892" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a8f06ef3-2a11-48e4-9c30-011e83cd1ab5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+juntar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="278154d8-639f-45ca-afbb-6908c7c2361e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c0134bc6-815d-4de1-97eb-0591be49bd2a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +juntar.1 
\entryTyp root 
\gENG gather 
\gSPN juntar 
\e +juntar.1 
\c V2 
\ach junta 
\akh junta 
\acl junta 
\akl junta 
\ame junta 
\co ncc +juntar.1 / _ CAUS / _ BEN1 / _ REL2 / _ DUR 
\mcc +juntar.1 / ~_ REF PLDIR</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="31aa6591-3c3e-4ff9-aaaf-3447f584eaa1" ownerguid="efa87dee-281c-4f4d-812f-8b5cb8b5bcf8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="adbbaefc-f8a4-4143-8822-bc10a07db717" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="31ac6469-0c46-4296-93b5-b9de215f836f" ownerguid="9b573e8a-d017-4918-b37e-0d5a600c0b6c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">oxen</AUni> -<AUni ws="es">buyes</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="91fb82d0-f4a9-4542-aeaa-01acadbff4ea" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="31ad7880-ec7d-4a42-b26a-4613c789afe7" ownerguid="19439634-92c1-488b-97a5-2b15d95700b9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">slip</AUni> -<AUni ws="es">resbalar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c4eb60da-938c-4943-9a76-7d6c35b845f3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="31ae0337-0d31-4f61-a435-df4ed150cd4d" ownerguid="ff057800-b07c-4b82-b27d-99a1e7c01f14"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sticker</AUni> -<AUni ws="es">trTbol</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="31551e8e-a923-4e72-80a2-7946d9c92f10" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="31aed0c5-1155-4c12-97c2-eb73f67b64e7" ownerguid="38473463-4b92-4681-8fd0-0aca0342e88a"> -<ExampleWords> -<AUni ws="en">centipede</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to centipedes--animals with a body with many segments and two legs on each segment (phylum Arthropoda, class Chilopoda)?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="31af73a8-7b1b-4ddc-adfa-4f835a66b975"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">palpalla</AUni> -<AUni ws="qvm-x-acl">palpalla</AUni> -<AUni ws="qvm-x-akh">palpalla</AUni> -<AUni ws="qvm-x-akl">palpalla</AUni> -<AUni ws="qvm-x-ame">palpalla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pallpalla</AUni> -<AUni ws="qvm-x-acl">*pallpalla</AUni> -<AUni ws="qvm-x-akh">*pallpalla</AUni> -<AUni ws="qvm-x-akl">*pallpalla</AUni> -<AUni ws="qvm-x-ame">*pallpalla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.679" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9f9014a7-d96e-41fc-9e05-b1b6b4efa0f2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pallpalla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f67139bb-8a9a-4825-a951-db825af70bcb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="51fdd09e-ee62-4419-9cf7-22fc2f7ae50c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pallpalla 
\entryTyp root 
\gENG gossamer 
\gSPN como.encaje 
\e *pallpalla 
\c V1 
\ach palpalla 
\akh palpalla 
\acl palpalla 
\akl palpalla 
\ame palpalla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="31b314be-236e-4854-b921-4d416a5e66ce"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">vinchi:lla</AUni> -<AUni ws="qvm-x-acl">vinchi:lla</AUni> -<AUni ws="qvm-x-akh">vinchi:lla</AUni> -<AUni ws="qvm-x-akl">vinchi:lla</AUni> -<AUni ws="qvm-x-ame">vinchi:lla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vinchilla</AUni> -<AUni ws="qvm-x-acl">+vinchilla</AUni> -<AUni ws="qvm-x-akh">+vinchilla</AUni> -<AUni ws="qvm-x-akl">+vinchilla</AUni> -<AUni ws="qvm-x-ame">+vinchilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.404" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="48beb660-805e-4e51-a959-9b8039a0fa5e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vinchilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="abaf5ed9-480f-4862-8c25-3bb67a84b955" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="34ef7b53-7747-4698-ac51-d88d86d827d5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vinchilla 
\entryTyp root 
\gENG 
\gSPN 
\e +vinchilla 
\c N0 
\ach vinchi:lla 
\akh vinchi:lla 
\acl vinchi:lla 
\akl vinchi:lla 
\ame vinchi:lla 
\i ISA 3.19 Tsaynoglami ushacätsenga walgancunata y brasilëtancunata, umancho jatirashgan vinchïllancunata</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="31b453ae-00c4-453f-8aa3-de4485764ddb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lucya</AUni> -<AUni ws="qvm-x-acl">lucya</AUni> -<AUni ws="qvm-x-akh">lukya</AUni> -<AUni ws="qvm-x-akl">lukya</AUni> -<AUni ws="qvm-x-ame">lukya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llukya</AUni> -<AUni ws="qvm-x-acl">*llukya</AUni> -<AUni ws="qvm-x-akh">*llukya</AUni> -<AUni ws="qvm-x-akl">*llukya</AUni> -<AUni ws="qvm-x-ame">*llukya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.225" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="57eeb96f-cb61-4195-8fa0-ff80cf1aa246" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llukya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e54fa2bb-1fc6-4b9c-8c1c-3b34096666a0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d7326976-57e1-43c9-9027-1a20d5fd448f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llukya 
\entryTyp root 
\gENG scrub.potatoe 
\gSPN lavar.papa 
\e *llukya 
\c V1 
\ach lucya 
\akh lukya 
\acl lucya 
\akl lukya 
\ame lukya 
\i Lucyacaramushag - armacaramushag. This compares one´s testicles to olluco, saying that will wash them.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="31b4c2e1-eb8a-4b2d-b04a-2d9591af4f17" ownerguid="c72985cf-b07f-4ed5-873a-a2209929667e"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">What <state> is your house in?; My house is in bad <shape>.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">state, condition, shape, position</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to the state or condition of something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="31b6d46a-7d87-4de3-860c-fd4cc75815ae" ownerguid="b4fe4698-54a2-4bcd-9490-e07ee1ee97af"> -<ExampleWords> -<AUni ws="en">cry, your eyes water</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to crying because something gets in your eyes?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="31b70dbc-6959-4ceb-b7e7-b084f24ab870" ownerguid="960ff213-d101-4de3-9d45-a4762a433412"> -<Form> -<AUni ws="qvm-x-ach">aya; ayä</AUni> -<AUni ws="qvm-x-acl">aya; ayä</AUni> -<AUni ws="qvm-x-akh">aya; ayä</AUni> -<AUni ws="qvm-x-akl">aya; ayä</AUni> -<AUni ws="qvm-x-ame">aya; ayä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="31b8af41-cbce-4c3c-b2b7-a1c8eb5f1412"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">autoriza:du</AUni> -<AUni ws="qvm-x-acl">autoriza:du; autoriza:du; autoriza:do</AUni> -<AUni ws="qvm-x-akh">autoriza:du</AUni> -<AUni ws="qvm-x-akl">autoriza:du; autoriza:du; autoriza:do</AUni> -<AUni ws="qvm-x-ame">autoriza:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+autorizado</AUni> -<AUni ws="qvm-x-acl">+autorizado</AUni> -<AUni ws="qvm-x-akh">+autorizado</AUni> -<AUni ws="qvm-x-akl">+autorizado</AUni> -<AUni ws="qvm-x-ame">+autorizado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.880" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b0df4f25-fdd3-4fad-b13d-8049a12f57ee" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+autorizado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bdaaeab4-2500-4a52-9dbd-4926d5cd9254" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a6ec503d-379e-478f-89f3-107fc84fedf7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +autorizado 
\entryTyp root 
\gENG 
\gSPN 
\e +autorizado 
\c N0 
\ach autoriza:du 
\akh autoriza:du 
\acl autoriza:du / _# 
\acl autoriza:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl autoriza:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl autoriza:du / _# 
\akl autoriza:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl autoriza:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame autoriza:du 
\i Runacunata tantyatsinanpag Jesucristo niptinmi musyantsi Jesucristo yachatsishganta escribinanpagpis apostolcuna autorizädu cashganta.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="31bd7d5f-e96b-4810-9e4f-d468e2602025" ownerguid="53b28d2d-001b-42ac-9e83-0c371ff94f45"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">turn</AUni> -<AUni ws="es">voltear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8392b224-f488-4da3-9055-b03b51d9bf17" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="31c08c9b-77f7-4672-ba5d-197c7ef2c1ba" ownerguid="c221b7f9-d102-4dfe-83b0-de944357b91d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="1083d176-42ad-45a2-bbdd-03ee60842a0e" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="4432a27f-1c8e-44fb-b9cc-d556bbb57851" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="31c09272-cb7e-4724-a494-17bf0e109065" ownerguid="e1f5490e-19bd-4861-8039-962cd46de12e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="31c103f8-ada7-4eab-9995-b790e53da76a" ownerguid="f3bd3a06-b6ff-4683-aca7-140038927e22"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="31c195b6-fc55-448e-9622-0b5f9258645b" ownerguid="0e79435b-f5ff-4061-81ff-49557ba2aed4"> -<ExampleWords> -<AUni ws="en">allied, bonded, related, friendly, affiliated, associated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe a group of people who have a relationship?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="31ca1296-d254-495e-b1e5-c6ee7b33e33e" ownerguid="e3284653-244a-4f45-99ed-8ce887c5d606"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dance</AUni> -<AUni ws="es">danzar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="49d3dd07-74ae-4c9b-8693-1a0489aa9e3d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="31caca70-7665-478c-94c6-e070c3e7ed87" ownerguid="2ccab97a-fb98-4054-a29b-e5ceac8ca1b4"> -<ExampleWords> -<AUni ws="en">bow, kneel, genuflect, prostrate oneself</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What actions or postures symbolize worship?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="31ccb9e3-d434-4430-ac84-486cc5a1c53d" ownerguid="d68911f6-6507-483a-b015-44726fdf868a"> -<Abbreviation> -<AUni ws="en">6.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.365" /> -<DateModified val="2022-9-23 16:55:8.365" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is difficult or impossible to do.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Difficult, impossible</AUni> -</Name> -<Questions> -<objsur guid="ef5e1d9d-47a1-430d-addb-f03cad39a6fb" t="o" /> -<objsur guid="8db0d570-2928-4376-bd13-f3dee953750c" t="o" /> -<objsur guid="9792deeb-6fbf-4c07-b3a6-5d15d25312a9" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="77bcdcab-e9fd-48ba-8dcd-63f425367735" t="o" /> -<objsur guid="58eeb55b-c57d-4f59-a7d6-9bf663fbf831" t="o" /> -<objsur guid="a764174f-ccb7-48b1-add7-158bc89a5e81" t="o" /> -<objsur guid="7c6ba6e5-d81e-4a50-a111-c946a0793378" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="31ccef1b-afe2-4ecb-ac42-c7b2aa525da2" ownerguid="958ad4ea-45cd-43bc-9076-de28e5d85518"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 6.7 Waran waran wagaylawanmi nawëpis pasaypa nubisyaycan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="31cefbde-dad6-487a-b626-83a45d6fa84a" ownerguid="51da849a-e8a0-4574-a558-9ac13a31b5f2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="31cf848a-6e81-47ec-877d-bd6beb74931c" ownerguid="41e903cf-de45-49e2-8faa-0ced648a61ea"> -<Form> -<AUni ws="qvm-x-ach">pishta</AUni> -<AUni ws="qvm-x-acl">pishta</AUni> -<AUni ws="qvm-x-akh">pishta</AUni> -<AUni ws="qvm-x-akl">pishta</AUni> -<AUni ws="qvm-x-ame">pishta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="31d0407f-cb5e-4fae-96c7-bbef69cc8009"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">curu</AUni> -<AUni ws="qvm-x-acl">curu; curu; curo</AUni> -<AUni ws="qvm-x-akh">kuru</AUni> -<AUni ws="qvm-x-akl">kuru; kuru; kuro</AUni> -<AUni ws="qvm-x-ame">kuru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kuru.n</AUni> -<AUni ws="qvm-x-acl">*kuru.n</AUni> -<AUni ws="qvm-x-akh">*kuru.n</AUni> -<AUni ws="qvm-x-akl">*kuru.n</AUni> -<AUni ws="qvm-x-ame">*kuru.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.23" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9761c645-67a0-4d95-83b7-e9fec662b05e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kuru.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="57cf7295-3398-4be3-be2c-56f0cd62268d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b2777f54-8484-4db5-a1cd-adc28f8127eb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kuru.n 
\entryTyp root 
\gENG bug 
\gSPN bichu 
\e *kuru.n 
\c N0 
\ach curu 
\akh kuru 
\acl curu / _# 
\acl curu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl curo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kuru / _# 
\akl kuru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kuro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kuru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="31d04eec-f855-4675-88e3-3e62cca59a84"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mutu</AUni> -<AUni ws="qvm-x-acl">mutu; muto</AUni> -<AUni ws="qvm-x-akh">mutu</AUni> -<AUni ws="qvm-x-akl">mutu; muto</AUni> -<AUni ws="qvm-x-ame">mutu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mutu.v</AUni> -<AUni ws="qvm-x-acl">*mutu.v</AUni> -<AUni ws="qvm-x-akh">*mutu.v</AUni> -<AUni ws="qvm-x-akl">*mutu.v</AUni> -<AUni ws="qvm-x-ame">*mutu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.517" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="08549622-feb2-4313-b9c3-6374e10ceeb6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mutu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a315f87a-e9b6-4fe1-b9fd-5cc54dd57ecf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0aa21c2a-24bb-45cb-88a5-5a0161f6177c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mutu.v 
\entryTyp root 
\gENG cut 
\gSPN cortar 
\e *mutu.v 
\c V2 
\ach mutu 
\akh mutu 
\acl mutu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl muto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mutu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl muto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mutu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="31d13f5c-fcf7-430b-8746-2b6adac6e871"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wera</AUni> -<AUni ws="qvm-x-acl">wera</AUni> -<AUni ws="qvm-x-akh">wera</AUni> -<AUni ws="qvm-x-akl">wera</AUni> -<AUni ws="qvm-x-ame">wira</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wira.1</AUni> -<AUni ws="qvm-x-acl">*wira.1</AUni> -<AUni ws="qvm-x-akh">*wira.1</AUni> -<AUni ws="qvm-x-akl">*wira.1</AUni> -<AUni ws="qvm-x-ame">*wira.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.678" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a70cc197-093c-41ca-b154-ddfbe1d2f035" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wira.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="690bce22-76d3-476d-ba0d-47de4f771820" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1cf861df-d4d6-4571-8294-5f773e33c415" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wira.1 
\entryTyp root 
\gENG 
\gSPN 
\e *wira.1 
\c N0 
\ach wera 
\akh wera 
\acl wera 
\akl wera 
\ame wira</Run> -</AStr> -</Custom> -</rt> -<rt class="StStyle" guid="31d215a7-ac39-4d1c-be7d-88fe2b7c8d34" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="0" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Emphasized Text</Uni> -</Name> -<Rules> -<Prop italic="invert"></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<Usage> -<AUni ws="en">Material to be emphasized</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="WfiWordform" guid="31d34dc6-878e-4f67-bc21-88cbf658a063"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">nimaptikipis</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="31d441c5-02eb-4d40-be94-b48e37b59652"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ogaushu</AUni> -<AUni ws="qvm-x-acl">ogaushu; ogaushu; ogausho</AUni> -<AUni ws="qvm-x-akh">oqawshu</AUni> -<AUni ws="qvm-x-akl">oqawshu; oqawshu; oqawsho</AUni> -<AUni ws="qvm-x-ame">uqawshu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uqawshu</AUni> -<AUni ws="qvm-x-acl">*uqawshu</AUni> -<AUni ws="qvm-x-akh">*uqawshu</AUni> -<AUni ws="qvm-x-akl">*uqawshu</AUni> -<AUni ws="qvm-x-ame">*uqawshu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.251" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5eb57d71-5fe5-43cc-9910-255118deca0c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uqawshu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="742cc876-9824-4739-82b0-be7e02ec4c0f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d97cef24-bda8-4649-8b12-aca3ff8174e0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uqawshu 
\entryTyp root 
\gENG ogawshu 
\gSPN ogaushu 
\e *uqawshu 
\c N0 
\ach ogaushu 
\akh oqawshu 
\acl ogaushu / _# 
\acl ogaushu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ogausho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl oqawshu / _# 
\akl oqawshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl oqawsho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame uqawshu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="31d5bcf4-a4d8-4680-998a-f3d664217a39" ownerguid="8b7e5a38-1d5d-44ee-bc7c-ff787a79da7f"> -<Form> -<AUni ws="qvm-x-ach">tsari</AUni> -<AUni ws="qvm-x-acl">tsari; tsari; tsare</AUni> -<AUni ws="qvm-x-akh">tsari</AUni> -<AUni ws="qvm-x-akl">tsari; tsari; tsare</AUni> -<AUni ws="qvm-x-ame">tsari</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="31d5e786-10d6-439a-8919-3324fb51bfb4" ownerguid="2cb7f63b-dd59-43f6-a8cc-f4aff09d3eec"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">in.vain</AUni> -<AUni ws="es">en.vano</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f0c9f0dd-583e-4373-bb7f-6da776a95aaf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="31dc3d15-c6f8-4405-a33b-8f3a52f8671a" ownerguid="5bcd08a6-cb46-41bb-a732-0d690b5ea596"> -<Abbreviation> -<AUni ws="en">5.2.3.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.317" /> -<DateModified val="2022-9-23 16:55:8.317" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to things people drink.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Beverage</AUni> -</Name> -<OcmCodes> -<Uni>272 Nonalcoholic Beverages</Uni> -</OcmCodes> -<Questions> -<objsur guid="4ad1c2fc-6fc9-421b-88bf-54add3c3681b" t="o" /> -<objsur guid="ecea6f00-1dae-4a99-b099-b49cf877f0bc" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="31ddaae3-07ce-4f7b-b05c-aa4e9bb93ea0" ownerguid="d33042a7-36e6-496e-b2b5-69a668175a46"> -<Form> -<AUni ws="qvm-x-ach">provincia</AUni> -<AUni ws="qvm-x-acl">provincia</AUni> -<AUni ws="qvm-x-akh">provincia</AUni> -<AUni ws="qvm-x-akl">provincia</AUni> -<AUni ws="qvm-x-ame">provincia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="31ddcca6-59d1-4d18-828d-c391fd39f96f" ownerguid="3566012f-e7af-4199-9074-59fb67ed2279"> -<Form> -<AUni ws="qvm-x-ach">wara; warä</AUni> -<AUni ws="qvm-x-acl">wara; warä</AUni> -<AUni ws="qvm-x-akh">wara; warä</AUni> -<AUni ws="qvm-x-akl">wara; warä</AUni> -<AUni ws="qvm-x-ame">wara; warä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="31dde2d7-92e3-4d6c-84ee-2fc05d84ec81" ownerguid="331d2881-5a44-49a5-ae78-6e858b12c5ab"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">kestrel</AUni> -<AUni ws="es">cernícalo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="32fd8aad-9349-4802-b8f0-3dd553a4faa6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="31debfe3-91da-4588-b433-21b0e14a101b" ownerguid="c6b62d63-b355-46c9-a8c7-e0a0bf112a9e"> -<Abbreviation> -<AUni ws="en">6.5.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.458" /> -<DateModified val="2022-9-23 16:55:8.458" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a road.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>1P Thoroughfares: Roads, Streets, Paths, etc.</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Road</AUni> -</Name> -<OcmCodes> -<Uni>363 Streets and Traffic</Uni> -</OcmCodes> -<Questions> -<objsur guid="d31b12a5-7b2e-4204-9994-9297d104f22c" t="o" /> -<objsur guid="f7c5f9aa-ddb7-4398-beaa-396cffa36733" t="o" /> -<objsur guid="e7beeba7-a2b3-45c8-95af-1d5fd6daa027" t="o" /> -<objsur guid="1f41494f-fcdd-40b8-b130-fe98f87c3bad" t="o" /> -<objsur guid="25c0c9cb-493f-4a50-8531-6cf1bc88f3c7" t="o" /> -<objsur guid="8c50a2a6-f059-46a2-accf-595a4db5dceb" t="o" /> -<objsur guid="b9056d19-ca35-4bdc-a910-06047c620a73" t="o" /> -<objsur guid="f9f0be58-c149-4191-8ee9-e76cac3ad606" t="o" /> -<objsur guid="5d38fb3b-00f7-4695-a1f3-cdb338ea1416" t="o" /> -<objsur guid="c8a94f83-28de-4733-9f2e-e7a7e4b453a6" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="31e0fde8-b3ab-47ae-b791-54309e6ed0bd" ownerguid="615674ac-8158-4089-ae70-b55472fd279b"> -<Abbreviation> -<AUni ws="en">8.4.6.5.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.658" /> -<DateModified val="2022-9-23 16:55:8.658" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something modern--a word that describes something like a machine, system, or country that uses the most recent equipment, ideas, and methods.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Modern</AUni> -</Name> -<Questions> -<objsur guid="e8376733-8ed4-4af1-ac28-8eb6bf2a5461" t="o" /> -<objsur guid="44a09f2d-ac56-4166-8dc9-022e0032ed76" t="o" /> -<objsur guid="da2363a6-978d-404c-bf9c-674e724b64a5" t="o" /> -<objsur guid="b1fe10fb-af55-4779-8f36-6e0ed972e18c" t="o" /> -<objsur guid="c445aa36-42ed-4a11-beda-e011d0bb414c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="31e64ebf-a753-4ed3-ba9b-337f57b6351f" ownerguid="6b8366b9-b5e8-42b8-991c-c568d4442a81"> -<ExampleWords> -<AUni ws="en">beautician, hair stylist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person that cares for people's hair?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="31e693b3-394b-491a-a44c-515084592124" ownerguid="8dadf36f-cf98-4a46-b26b-98a3882b7a13"> -<Form> -<AUni ws="qvm-x-ach">cuchus</AUni> -<AUni ws="qvm-x-acl">cuchus</AUni> -<AUni ws="qvm-x-akh">kuchus</AUni> -<AUni ws="qvm-x-akl">kuchus</AUni> -<AUni ws="qvm-x-ame">kuchus</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="31e7ed11-6644-4c39-8a2b-18de4fd15760"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsucla</AUni> -<AUni ws="qvm-x-acl">tsucla</AUni> -<AUni ws="qvm-x-akh">tsukla</AUni> -<AUni ws="qvm-x-akl">tsukla</AUni> -<AUni ws="qvm-x-ame">tsukla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chuklla</AUni> -<AUni ws="qvm-x-acl">*chuklla</AUni> -<AUni ws="qvm-x-akh">*chuklla</AUni> -<AUni ws="qvm-x-akl">*chuklla</AUni> -<AUni ws="qvm-x-ame">*chuklla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.335" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cc196134-9852-48b6-a4b1-09f337ef2f27" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chuklla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a01956ef-582e-49db-9f92-8039d2837a22" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bf26a560-18cb-430f-80e5-3707302adbc0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chuklla 
\entryTyp root 
\gENG hut 
\gSPN chosa 
\e *chuklla 
\c N0 
\ach tsucla 
\akh tsukla 
\acl tsucla 
\akl tsukla 
\ame tsukla</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="31ec0cbc-4079-4c6c-873a-d0c406383db2" ownerguid="044eef17-ef15-46c5-9ff5-83b31c637421"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="17a2c19b-e9ec-4b44-9e0e-c06d90b0a98d" t="o" /> -<objsur guid="31162ea0-1a50-4705-ad7f-dca19f5eb601" t="o" /> -<objsur guid="adcac372-98b1-425a-979d-2777af1d6603" t="o" /> -<objsur guid="32786ffc-2810-4d7d-92c6-d625c78030dd" t="o" /> -<objsur guid="e7f20475-e3f4-42e6-a6c7-16aae48900e8" t="o" /> -<objsur guid="98da10ac-50ec-4ec8-8d6d-1011e20d7648" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="31efa67e-d072-413e-86a3-b8c8e672b2fa" ownerguid="12a028d1-d910-4011-ab9d-59be69daaf65"> -<ExampleWords> -<AUni ws="en">responsive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to reacting in a good way?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="31efa8f1-bc4a-4588-aa31-79c4654cf2dc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gorushta</AUni> -<AUni ws="qvm-x-acl">gorushta</AUni> -<AUni ws="qvm-x-akh">qorushta</AUni> -<AUni ws="qvm-x-akl">qorushta</AUni> -<AUni ws="qvm-x-ame">qurushta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qurushta</AUni> -<AUni ws="qvm-x-acl">*qurushta</AUni> -<AUni ws="qvm-x-akh">*qurushta</AUni> -<AUni ws="qvm-x-akl">*qurushta</AUni> -<AUni ws="qvm-x-ame">*qurushta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.871" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2c66d52f-1e89-45a2-ba49-a555edfe75a7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qurushta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d77430d7-f474-429a-b220-e6d33db59f94" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cb65fa4c-4205-413e-bbab-a83f3689d3af" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qurushta 
\entryTyp root 
\gENG corn.cob 
\gSPN coronta 
\e *qurushta 
\c N0 
\ach gorushta 
\akh qorushta 
\acl gorushta 
\akl qorushta 
\ame qurushta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="31f9a5da-56ec-4747-a55a-60245ef767b7" ownerguid="c69c62e0-4059-4740-891c-eb0a8de5b1e8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">snore</AUni> -<AUni ws="es">roncar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e0b52011-b350-4a3a-b3fe-69ed0689a9fc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="32007d71-135e-425a-9145-f3e1eb63e695" ownerguid="e80a94f0-dfa2-421b-a204-1d158579f225"> -<Form> -<AUni ws="qvm-x-ach">suwa</AUni> -<AUni ws="qvm-x-acl">suwa</AUni> -<AUni ws="qvm-x-akh">suwa</AUni> -<AUni ws="qvm-x-akl">suwa</AUni> -<AUni ws="qvm-x-ame">suwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="3200eee1-7757-4a17-8c3c-74e75699722c" ownerguid="f369fcea-d729-419d-9ca0-da8246776b35"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">untie</AUni> -<AUni ws="es">desatar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ceb02834-5534-4019-ac97-4a79515c3789" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="32092595-7c2a-4740-a8aa-8df5f4af5540"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">izula</AUni> -<AUni ws="qvm-x-acl">izula</AUni> -<AUni ws="qvm-x-akh">izula</AUni> -<AUni ws="qvm-x-akl">izula</AUni> -<AUni ws="qvm-x-ame">izula</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+izula</AUni> -<AUni ws="qvm-x-acl">+izula</AUni> -<AUni ws="qvm-x-akh">+izula</AUni> -<AUni ws="qvm-x-akl">+izula</AUni> -<AUni ws="qvm-x-ame">+izula</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.872" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="18d0e279-ec76-463d-83cc-1c2e6f08c0d5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+izula</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6323142c-3503-4a38-b05b-e9253e04ec57" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3be1ca85-b88d-4a28-8c13-da4f9c441262" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +izula 
\entryTyp root 
\gENG 
\gSPN izula 
\e +izula 
\c N0 
\ach izula 
\akh izula 
\acl izula 
\akl izula 
\ame izula</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="320bff25-51eb-40cf-aff4-ae9f7f507ebf" ownerguid="a1542519-a9ed-40af-8acb-f33efaed31ec"> -<Form> -<AUni ws="qvm-x-ach">llama</AUni> -<AUni ws="qvm-x-acl">llama</AUni> -<AUni ws="qvm-x-akh">llama</AUni> -<AUni ws="qvm-x-akl">llama</AUni> -<AUni ws="qvm-x-ame">llama</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="320cd8e9-5629-4c21-b04d-f1bee0c46c94" ownerguid="30a5530f-49a2-454f-be28-aabe5e618b16"> -<Form> -<AUni ws="qvm-x-ach">uywa</AUni> -<AUni ws="qvm-x-acl">uywa</AUni> -<AUni ws="qvm-x-akh">uywa</AUni> -<AUni ws="qvm-x-akl">uywa</AUni> -<AUni ws="qvm-x-ame">uywa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="320cf7d7-ddc6-4226-8900-b23cc5256217"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">baranda</AUni> -<AUni ws="qvm-x-acl">baranda</AUni> -<AUni ws="qvm-x-akh">baranda</AUni> -<AUni ws="qvm-x-akl">baranda</AUni> -<AUni ws="qvm-x-ame">baranda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+veranda</AUni> -<AUni ws="qvm-x-acl">+veranda</AUni> -<AUni ws="qvm-x-akh">+veranda</AUni> -<AUni ws="qvm-x-akl">+veranda</AUni> -<AUni ws="qvm-x-ame">+veranda</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.363" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2b0daa2f-2553-4076-8009-cabc39fcaba2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+veranda</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="345d9bac-97bc-4484-9adc-f307565c365d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a933578e-82dd-4b74-95ed-5d9a1afcc802" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +veranda 
\entryTyp root 
\gENG veranda 
\gSPN veranda 
\e +veranda 
\c N0 
\ach baranda 
\akh baranda 
\acl baranda 
\akl baranda 
\ame baranda</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="320d945e-ab48-4e21-a2da-db2f131c956c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">truca</AUni> -<AUni ws="qvm-x-acl">truca</AUni> -<AUni ws="qvm-x-akh">truka</AUni> -<AUni ws="qvm-x-akl">truka</AUni> -<AUni ws="qvm-x-ame">truka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+trocar.1</AUni> -<AUni ws="qvm-x-acl">+trocar.1</AUni> -<AUni ws="qvm-x-akh">+trocar.1</AUni> -<AUni ws="qvm-x-akl">+trocar.1</AUni> -<AUni ws="qvm-x-ame">+trocar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.147" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f06b3187-fa1f-4047-a4ca-61050c3e5b56" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+trocar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="00451b86-befe-41ca-bb7b-badd37f041b1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5f7adf3c-1206-42b5-953f-283be0124ca4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +trocar.1 
\entryTyp root 
\gENG change 
\gSPN cambiar 
\e +trocar.1 
\c V2 
\mp +assimilated KQWchange 
\ach truca 
\akh truka 
\acl truca 
\akl truka 
\ame truka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="320dd3d3-c487-4397-8e6e-7af6ccac5723"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mawa</AUni> -<AUni ws="qvm-x-acl">mawa</AUni> -<AUni ws="qvm-x-akh">mawa</AUni> -<AUni ws="qvm-x-akl">mawa</AUni> -<AUni ws="qvm-x-ame">mawa</AUni> -</Custom> -<AlternateForms> -<objsur guid="8eb6f35a-ccdb-4ebe-a1ee-3ee04c6fae57" t="o" /> -</AlternateForms> -<CitationForm> -<AUni ws="qvm-x-ach">*mawa</AUni> -<AUni ws="qvm-x-acl">*mawa</AUni> -<AUni ws="qvm-x-akh">*mawa</AUni> -<AUni ws="qvm-x-akl">*mawa</AUni> -<AUni ws="qvm-x-ame">*mawa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.366" /> -<DateModified val="2022-10-15 14:16:12.904" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5d1a1dab-bd44-44b3-b7bb-19936167c28c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mawa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c9bcf862-8dc9-4c35-a7af-cfbbb6fffee5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="98905286-984f-47c2-9bd4-5d227eb5e7a2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mawa 
\entryTyp root 
\gENG scrape 
\gSPN recoger 
\e *mawa 
\c V2 
\ach mawa 
\akh mawa 
\acl mawa 
\akl mawa 
\ame mawa</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="32122830-315f-4796-8b0c-63bb033e31eb"> -<Analyses> -<objsur guid="4e2ab412-6bb4-411d-ae7e-70062b3c7375" t="o" /> -<objsur guid="79436830-092b-4d13-a715-f392d7e33708" t="o" /> -</Analyses> -<Checksum val="1456830510" /> -<Form> -<AUni ws="qvm-x-akh">qarqakatsin</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="32125c5f-d69a-442f-ba66-6277ec0a3b15" ownerguid="5bcd08a6-cb46-41bb-a732-0d690b5ea596"> -<Abbreviation> -<AUni ws="en">5.2.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.317" /> -<DateModified val="2022-9-23 16:55:8.317" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to food from plants.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Food from plants</AUni> -</Name> -<OcmCodes> -<Uni>137h Crops and vegetables</Uni> -</OcmCodes> -<Questions> -<objsur guid="82715064-e466-452d-8361-c7ec7d92c94d" t="o" /> -<objsur guid="b0164278-ce6a-4d74-832f-91a1055a4089" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="025da6f4-b1b6-423a-8c0f-b324f531a6f1" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="1447278f-efff-4807-b9ea-c487dea1ba5e" t="o" /> -<objsur guid="9cae4ee3-03cf-46f7-9475-21d66c93ae04" t="o" /> -<objsur guid="929720f5-c264-49fd-b817-3e1ebff6e1de" t="o" /> -<objsur guid="e496a6d3-a00c-470e-81c3-314f3f97840e" t="o" /> -<objsur guid="462f5606-5bd8-4543-aa35-26b0cffd7163" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="321264e3-bd8d-4c08-895b-94f56a413b40" ownerguid="a72939e5-3808-4c71-960d-f24c5688e1cf"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="727bf718-fe80-4272-846a-39cf214b7d28" t="o" /> -<objsur guid="2f895f94-e468-42c6-8195-683926f2f150" t="o" /> -<objsur guid="33cec9cf-4d25-470a-880f-331f1a0c535e" t="o" /> -<objsur guid="74920621-63ba-4d4a-8a2c-09fc5a60c9d3" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="3212d12a-a8dc-469e-811b-f685550609cc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ilapa</AUni> -<AUni ws="qvm-x-acl">ilapa</AUni> -<AUni ws="qvm-x-akh">ilapa</AUni> -<AUni ws="qvm-x-akl">ilapa</AUni> -<AUni ws="qvm-x-ame">ilapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*illapa</AUni> -<AUni ws="qvm-x-acl">*illapa</AUni> -<AUni ws="qvm-x-akh">*illapa</AUni> -<AUni ws="qvm-x-akl">*illapa</AUni> -<AUni ws="qvm-x-ame">*illapa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.792" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="94f6e9c5-3517-440d-835b-53dacc3d6c4d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*illapa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0d57b7bb-9cbe-4e69-83aa-d29aaf800468" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e4c13723-327f-430f-a17c-34f2a0494019" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *illapa 
\entryTyp root 
\gENG fire 
\gSPN disparar 
\e *illapa 
\c V2 
\ach ilapa 
\akh ilapa 
\acl ilapa 
\akl ilapa 
\ame ilapa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="32165869-e318-43fd-8a97-f8107e223014" ownerguid="0472e02f-0667-4768-8304-4b45df3ab6cd"> -<Form> -<AUni ws="qvm-x-ach">malicia</AUni> -<AUni ws="qvm-x-acl">malicia</AUni> -<AUni ws="qvm-x-akh">malicia</AUni> -<AUni ws="qvm-x-akl">malicia</AUni> -<AUni ws="qvm-x-ame">malicia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="3216ae81-7328-452b-8f7e-7240ab0e8246" ownerguid="69da6101-b9e3-42c5-92ff-fe6091c9f833"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pointed.rock</AUni> -<AUni ws="es">piedra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a3843af8-0a6b-4a00-bb36-c78fb72ea3af" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="32172222-630c-4f4e-bbe3-de396bf4472c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">arini:lla</AUni> -<AUni ws="qvm-x-acl">arini:lla</AUni> -<AUni ws="qvm-x-akh">arini:lla</AUni> -<AUni ws="qvm-x-akl">arini:lla</AUni> -<AUni ws="qvm-x-ame">arini:lla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+arinilla</AUni> -<AUni ws="qvm-x-acl">+arinilla</AUni> -<AUni ws="qvm-x-akh">+arinilla</AUni> -<AUni ws="qvm-x-akl">+arinilla</AUni> -<AUni ws="qvm-x-ame">+arinilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.828" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5539441a-ec80-4d0c-9d20-8bb2173f56d6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+arinilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="080c09a8-08f1-4b87-b751-224461788971" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fd0613ef-a9cc-461c-b1b8-0d3ee06fe505" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +arinilla 
\entryTyp root 
\gENG 
\gSPN 
\e +arinilla 
\c N0 
\ach arini:lla 
\akh arini:lla 
\acl arini:lla 
\akl arini:lla 
\ame arini:lla</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="32180913-9cd2-4f37-b617-5c140eb118e9" ownerguid="ff7e3abd-6810-4128-83c9-701b4925c2fe"> -<ExampleWords> -<AUni ws="en">burn something, set something on fire, set fire to, torch (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to deliberately burning something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="32186e12-0ce0-4b08-a6de-10d87b525d91" ownerguid="85214614-ab45-4805-9014-092750d47511"> -<ExampleWords> -<AUni ws="en">legal process, due process of law, lawsuit, jurisdiction, take legal action, jurisprudence</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the process of administering the law?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="32190647-b1d5-424e-af95-749e0637f945" ownerguid="569c6e73-cd36-4a45-94b4-5d3c0083ce73"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">burn</AUni> -<AUni ws="es">arder</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="43ea5cdd-d703-4530-956a-a32dc5aa617b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="321cb29d-fdf8-40bb-8caf-a83f60ce9e3a" ownerguid="2e5acfd2-3009-4496-9cc2-58d2a0088994"> -<ExampleWords> -<AUni ws="en">head hair, forelock, body hair, pubic hair</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to hair on different parts of the body?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="321cf755-4f45-4291-a288-b84a4ff6650f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cla:ru</AUni> -<AUni ws="qvm-x-acl">cla:ru; cla:ru; cla:ro</AUni> -<AUni ws="qvm-x-akh">cla:ru</AUni> -<AUni ws="qvm-x-akl">cla:ru; cla:ru; cla:ro</AUni> -<AUni ws="qvm-x-ame">cla:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+claro</AUni> -<AUni ws="qvm-x-acl">+claro</AUni> -<AUni ws="qvm-x-akh">+claro</AUni> -<AUni ws="qvm-x-akl">+claro</AUni> -<AUni ws="qvm-x-ame">+claro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.132" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fb41fa17-7747-47b8-ac78-dddd111a4461" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+claro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fc3e74ac-587b-4abd-bfec-bdbf7b494598" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="06be368c-7db5-4823-a142-6501ca835e06" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +claro 
\entryTyp root 
\gENG of.course 
\gSPN claro 
\e +claro 
\c N0 
\ach cla:ru 
\akh cla:ru 
\acl cla:ru / _# 
\acl cla:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cla:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cla:ru / _# 
\akl cla:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cla:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cla:ru 
\i HOS 11.12 Kay textuqa hebreucho manami clärutsu. Tsaymi wakin traduccionkuna kayno nipäkun: <<Judá runakunami itsanqa käsukamar imaypis yärakaman.>></Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="321d0a74-705f-40bf-8d24-809f65bee895" ownerguid="793993ac-20c1-49f0-9716-e4cdc7da4439"> -<Abbreviation> -<AUni ws="en">9.4.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.698" /> -<DateModified val="2022-9-23 16:55:8.698" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate aspects of stative verbs. Aspects describe the temporal contours of a situation. They may be combined with any of the tenses, either in the same morpheme or in combinations of morphemes. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Aspect--stative verbs</AUni> -</Name> -<Questions> -<objsur guid="5befe8de-1788-4d67-9d97-64eb8c5400f0" t="o" /> -<objsur guid="d3109011-4182-44f1-883e-69d7e8e176eb" t="o" /> -<objsur guid="66b6d278-2e0e-452e-aa32-1bb9281e20f5" t="o" /> -<objsur guid="e450c835-bcdd-420a-b23c-89f2d13bf04f" t="o" /> -<objsur guid="d119825a-a748-4ad9-bcd8-eaa0fe53092f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="321e2a7b-19c7-4344-a879-506fda30975a" ownerguid="a4f6fc2a-b7cb-44a6-9f09-4a635cb6057d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6fe49b5e-093a-457b-9f14-02b68e8cec63" t="r" /> -</Morph> -</rt> -<rt class="MoStemAllomorph" guid="321f9a55-4c41-454a-9e12-cc1f6756eecf" ownerguid="a8b8063f-903a-4906-abbb-9e4ebad7408c"> -<Form> -<AUni ws="qvm-x-ach">cangalan</AUni> -<AUni ws="qvm-x-acl">cangalan</AUni> -<AUni ws="qvm-x-akh">kanqalan</AUni> -<AUni ws="qvm-x-akl">kanqalan</AUni> -<AUni ws="qvm-x-ame">kanqalan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="3222ac38-9e08-4de2-8c2b-5a0c3db29c50" ownerguid="c94b01e7-d8ef-4ec5-8372-c14d19ae9d62" /> -<rt class="MoStemMsa" guid="322474ad-27f8-4338-8b3d-a40c115abede" ownerguid="13af106e-828a-4c96-bd36-e6880cf24eed"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="32260b00-dd19-4316-a833-a8a6cf5b6783"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">panata</AUni> -<AUni ws="qvm-x-acl">panata</AUni> -<AUni ws="qvm-x-akh">panata</AUni> -<AUni ws="qvm-x-akl">panata</AUni> -<AUni ws="qvm-x-ame">panata</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pañata</AUni> -<AUni ws="qvm-x-acl">*pañata</AUni> -<AUni ws="qvm-x-akh">*pañata</AUni> -<AUni ws="qvm-x-akl">*pañata</AUni> -<AUni ws="qvm-x-ame">*pañata</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.689" /> -<DateModified val="2022-10-10 21:18:47.204" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="89a450e3-09d4-4d2c-a7cb-364d49dd3196" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pañata</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bc49ef8f-7709-449e-a53c-7db114336637" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="10b13e82-37db-41e0-b912-0fca0351db84" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pañata 
\entryTyp root 
\gENG 
\gSPN 
\e *pañata 
\c V1 
\ach panata 
\akh panata 
\acl panata 
\akl panata 
\ame panata 
\i AMO 2.13 Muytipaylapa cargashga aywaycag carrëta pampata panatashgannogmi ushacätsishayqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="3226fbd3-0c57-4f7b-a5d9-c02b1fada477" ownerguid="de49aef7-c3de-4490-b89a-a279b594b155"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2680989b-b43a-4576-b2df-38129aa3cdee" t="r" /> -</Morph> -<Msa> -<objsur guid="cef713b0-c87a-4118-be17-50cd0e304659" t="r" /> -</Msa> -<Sense> -<objsur guid="d694458a-a59b-4ed7-a237-68d44f896647" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="322991ce-cc53-4ad2-a124-f225e2ab7ac1" ownerguid="2f259730-53c5-4b4e-9f6c-c4218500afdf"> -<Form> -<AUni ws="qvm-x-ach">malasëña</AUni> -<AUni ws="qvm-x-acl">malasëña</AUni> -<AUni ws="qvm-x-akh">malasëña</AUni> -<AUni ws="qvm-x-akl">malasëña</AUni> -<AUni ws="qvm-x-ame">malasëña</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="322a02bd-73dc-4af6-a70c-2ff39eb35b0e" ownerguid="b2d00b9e-8ea4-4fc0-8452-02e9a67d7fe0"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63e241cb-3471-43ad-8545-4d005f632d4d" t="r" /> -</Morph> -<Msa> -<objsur guid="d3b5839a-9f79-4b2d-96b3-8cee7717866b" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="322ea6dc-8404-4ece-b0a1-9ab736fcce0a" ownerguid="736b52c0-42be-49f6-95a2-0b567a9ea81a"> -<Form> -<AUni ws="qvm-x-ach">brüjutsi</AUni> -<AUni ws="qvm-x-acl">brüjutsi; brüjutse</AUni> -<AUni ws="qvm-x-akh">brüjutsi</AUni> -<AUni ws="qvm-x-akl">brüjutsi; brüjutse</AUni> -<AUni ws="qvm-x-ame">brüjutsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="322f07ab-d63c-4860-ba89-e505889d8bdb"> -<Analyses> -<objsur guid="70452de9-2140-4d6d-99ae-4f141a2b507f" t="o" /> -</Analyses> -<Checksum val="1464765954" /> -<Form> -<AUni ws="qvm-x-akh">rikakushqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="323023ae-6574-406a-870c-d78f694d4039" ownerguid="82d03809-1149-4ba4-9e71-5a2342de8675"> -<Form> -<AUni ws="qvm-x-ach">chutin</AUni> -<AUni ws="qvm-x-acl">chutin; chutin; chuten</AUni> -<AUni ws="qvm-x-akh">chutin</AUni> -<AUni ws="qvm-x-akl">chutin; chutin; chuten</AUni> -<AUni ws="qvm-x-ame">chutin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="323546a7-3857-42c2-b1b2-dcbb20fd1712" ownerguid="96f273b1-b691-4510-bd81-976225c7017f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="3235b8c1-d71e-4e20-a354-744403a3f7ba" ownerguid="56af7635-6d73-41c5-a74e-a55e2bde7edb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="32392247-66fa-4705-bca5-4fc1c532e18a" ownerguid="4f390d36-5d1c-4ab9-95a9-255b04a7ecff"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">smooth</AUni> -<AUni ws="es">pulido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b2ba5707-f5e2-4d24-9da4-64d6d54e35b5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="323a29b0-ad4f-4604-af76-7637f7b1e5e5" ownerguid="26b97047-edb1-44e9-8c7b-463de9cfbe78"> -<ExampleWords> -<AUni ws="en">pasture, range, pen, fold, sheepfold</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) Where are sheep kept?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="323ce24a-4adf-4efd-9eb6-8a3de1b7afa7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">hi:gus</AUni> -<AUni ws="qvm-x-acl">hi:gus</AUni> -<AUni ws="qvm-x-akh">hi:gus</AUni> -<AUni ws="qvm-x-akl">hi:gus</AUni> -<AUni ws="qvm-x-ame">hi:gus</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+higos</AUni> -<AUni ws="qvm-x-acl">+higos</AUni> -<AUni ws="qvm-x-akh">+higos</AUni> -<AUni ws="qvm-x-akl">+higos</AUni> -<AUni ws="qvm-x-ame">+higos</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.710" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="18f56d8d-781b-4a85-afb1-df5a8bfe435b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+higos</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f3e7d33c-bdbe-4924-9ae2-57054a70966f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="378e0a9c-a43d-4164-baac-2a735634719d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +higos 
\entryTyp root 
\gENG 
\gSPN 
\e +higos 
\c N0 
\mp +FinalC 
\ach hi:gus 
\akh hi:gus 
\acl hi:gus 
\akl hi:gus 
\ame hi:gus</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="3240f52a-83c8-47b9-8a94-a99be0956bbc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">macha; macha:</AUni> -<AUni ws="qvm-x-acl">macha; macha:</AUni> -<AUni ws="qvm-x-akh">macha; macha:</AUni> -<AUni ws="qvm-x-akl">macha; macha:</AUni> -<AUni ws="qvm-x-ame">macha; macha:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*matra:</AUni> -<AUni ws="qvm-x-acl">*matra:</AUni> -<AUni ws="qvm-x-akh">*matra:</AUni> -<AUni ws="qvm-x-akl">*matra:</AUni> -<AUni ws="qvm-x-ame">*matra:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.366" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2e00aedb-79e7-44a8-8130-4307f0447d23" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*matra:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3c3c1fcb-c505-4402-a96e-f3506b3a7d61" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="88a55585-7efd-4e46-8fac-6674caf6dca7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *matra: 
\entryTyp root 
\gENG be/get.drunk 
\gSPN emborracharse 
\e *matra: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach macha foreshortened 
\ach macha: 
\akh macha foreshortened 
\akh macha: 
\acl macha foreshortened 
\acl macha: 
\akl macha foreshortened 
\akl macha: 
\ame macha foreshortened 
\ame macha: 
\mcc *matra: / ~_ INF [casenoobj]</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="324156c8-3324-423e-8c53-dee15746889e" ownerguid="8497fb66-8b91-46b9-a0d5-fb9385319561"> -<ExampleWords> -<AUni ws="en">taste, relish, savor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to tasting something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="32493268-8f3b-4c37-90fe-b4ba87c4c7e1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">camay</AUni> -<AUni ws="qvm-x-acl">camay</AUni> -<AUni ws="qvm-x-akh">kamay</AUni> -<AUni ws="qvm-x-akl">kamay</AUni> -<AUni ws="qvm-x-ame">kamay</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.528" /> -<DateModified val="2022-10-15 16:8:27.586" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f0b99234-0a2f-44c4-83ae-47801443b6b2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">LIM2.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1829a081-bc32-4291-9767-5bec080e6a37" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6df018e8-8cba-4167-adb5-b1882d23dbc8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx LIM2.2 
\entryTyp suffix 
\gENG LIM2.2 
\gSPN LIM2.2 
\e LIM2.2 
\c N0/N0 BN/BN 
\o 210 
\mp +FinalC 
\ach camay 
\akh kamay 
\acl camay 
\akl kamay 
\ame kamay 
\mcc LIM2.2 / *waray _</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="324a5f0a-bc87-4b54-a8fc-9548a50eaf0a" ownerguid="e1f5490e-19bd-4861-8039-962cd46de12e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c22f91f5-a672-432c-93f3-8e4ba7ec824a" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="31c09272-cb7e-4724-a494-17bf0e109065" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="324cc026-a13b-40f4-936c-3e743c8d8b82"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mío</AUni> -<AUni ws="qvm-x-acl">mío</AUni> -<AUni ws="qvm-x-akh">mío</AUni> -<AUni ws="qvm-x-akl">mío</AUni> -<AUni ws="qvm-x-ame">mío</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mío</AUni> -<AUni ws="qvm-x-acl">+mío</AUni> -<AUni ws="qvm-x-akh">+mío</AUni> -<AUni ws="qvm-x-akl">+mío</AUni> -<AUni ws="qvm-x-ame">+mío</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.465" /> -<DateModified val="2022-10-10 21:18:47.204" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="584cdf3b-1a97-4730-bd53-5cf51cfb8c48" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mío</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2e411906-71e3-41ae-9cda-f47d6c92c243" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="93fb75bb-fa7d-458c-b10b-07a554c8f640" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mío 
\entryTyp root 
\gENG 
\gSPN 
\e +mío 
\c NOSUFF 
\ach mío 
\akh mío 
\acl mío 
\akl mío 
\ame mío</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="324dda72-6cbf-4162-aa21-fec47e866359" ownerguid="cd4300c9-265e-4457-8e33-4e0c9a4d4ba8"> -<ExampleWords> -<AUni ws="en">evaluate, evaluation, value (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to evaluating the value of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3251774f-0b2e-4373-8c2f-ed48e5e836e0" ownerguid="84990520-e200-4390-a1b8-04ceb53c2918"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">feed</AUni> -<AUni ws="es">alimentar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5ad117fc-a62a-4ce6-acb2-d17ac48a1d1f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3252aa27-8b8e-46a9-9bfb-197762e7acda" ownerguid="87bd0d45-8a94-41cb-9864-90d53a11a4b9"> -<ExampleWords> -<AUni ws="en">law enforcement, police, policeman, enforce</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to enforcing the law?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="32531532-2479-43d1-90fc-14d6f6535b37" ownerguid="7ada7f5d-3855-4c33-a73c-7744e3198d0a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">HOS 10.7 Samariacho tag mandag reytaga shacluta yacu apagnogmi prësu apacärenga.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="32540e5e-0d86-4480-8dfb-245f9d80679f" ownerguid="fa29531c-ac63-4371-8eea-5ecf01abde4e"> -<Form> -<AUni ws="qvm-x-ach">jegchi</AUni> -<AUni ws="qvm-x-acl">jegchi; jegche</AUni> -<AUni ws="qvm-x-akh">jeqchi</AUni> -<AUni ws="qvm-x-akl">jeqchi; jeqche</AUni> -<AUni ws="qvm-x-ame">hiqchi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3254cc7a-0aa7-43ae-988a-813f9b29b2a7" ownerguid="9b6d179d-fbb7-498a-91ce-60ade91c49ee"> -<Form> -<AUni ws="qvm-x-ach">segundu; segundo</AUni> -<AUni ws="qvm-x-acl">segundu; segundu; segundo</AUni> -<AUni ws="qvm-x-akh">segundu; segundo</AUni> -<AUni ws="qvm-x-akl">segundu; segundu; segundo</AUni> -<AUni ws="qvm-x-ame">segundu; segundo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="3255ee97-05f8-4f6e-88ec-a87ad0d9a951" ownerguid="42a4f423-6440-43ba-8430-793fbbdd9d15"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 5.12 Tsauraga Israel runacuna intëru Egiptupa mashtacargan punshapa trucan trïgu päshapa tumpuncunata ashinanpag.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="32588373-668c-4995-a836-c3864c4f6c35" ownerguid="e7f94aea-ba50-481d-b640-d5cd8bdedc72"> -<ExampleWords> -<AUni ws="en">produce urine, store urine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What do the kidneys and bladder do?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3259f405-1ee8-403c-8fa5-cc5b0c4a914c" ownerguid="bb8ddf5f-707d-46c0-aff4-45683d26fd68"> -<ExampleWords> -<AUni ws="en">to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate the indirect object of a sentence?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="325be7b9-7aec-465e-8a45-ec1342c54fcd" ownerguid="00269021-e1c4-474d-9dba-341d296bdac7"> -<ExampleWords> -<AUni ws="en">be in order, ordered, in sequence, be the right way round, in chronological order, chronological, consecutive, consecutively, successive, in succession, one after another, one after the other, (three years) running, sequential</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a group of things that have been put in order?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="325cc876-f8a2-4609-b9e9-548f9b47c9b4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tincu</AUni> -<AUni ws="qvm-x-acl">tincu; tincu; tinco</AUni> -<AUni ws="qvm-x-akh">tinku</AUni> -<AUni ws="qvm-x-akl">tinku; tinku; tinko</AUni> -<AUni ws="qvm-x-ame">tinku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tinku.n</AUni> -<AUni ws="qvm-x-acl">*tinku.n</AUni> -<AUni ws="qvm-x-akh">*tinku.n</AUni> -<AUni ws="qvm-x-akl">*tinku.n</AUni> -<AUni ws="qvm-x-ame">*tinku.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.906" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d206ff77-02b6-4dd2-8d85-8c24ce095d72" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tinku.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="72695616-6010-424c-b3cb-b68dba0894c6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7bbd8be8-abd9-4ebf-9dfa-d1a25986650b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tinku.n 
\entryTyp root 
\gENG meeting 
\gSPN encuentro 
\e *tinku.n 
\c N0 
\ach tincu 
\akh tinku 
\acl tincu / _# 
\acl tincu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tinco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tinku / _# 
\akl tinku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tinko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tinku 
\mcc *tinku.n / ~_ PRT 
\mcc *tinku.n / ~_ NOW 
\mcc *tinku.n / ~_ ADV5</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="325d03a8-8db4-47ae-ba37-a5473a3937db" ownerguid="c80e109f-2311-4596-bf24-13b75968d58c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="325ef214-57a6-4ed0-8f69-2f83ea8df8df" ownerguid="d88d862c-01d4-4b43-9fbe-59208922e022"> -<ExampleWords> -<AUni ws="en">look forward to, expectant, (I) can't wait, patient, impatient</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe how a person feels when he must wait?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="32620b9d-0b19-48af-ae50-737f2d919ab5" ownerguid="1088cc2f-83ae-4911-8018-401a745dcfd5"> -<ExampleWords> -<AUni ws="en">night, nighttime</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to night?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="32637235-4346-4317-961a-7c4ac62566c6" ownerguid="b2830b72-c642-484f-9485-24682aa11ed8"> -<ExampleWords> -<AUni ws="en">omen, sign, harbinger, portent, presage, foreshadowing, message from the beyond</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to something that shows or tells a secret?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3264c6e5-5450-4ffd-8415-99ddac21d62b" ownerguid="a5bfa564-0cad-4014-8007-7372a7def937"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3264d7f6-3fe3-477b-b5a7-7ec640d08e9d" ownerguid="474aa982-8350-47e2-a983-e1e2bce9d928"> -<ExampleWords> -<AUni ws="en">up, high</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels good?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="32657780-4344-4d4e-b1e4-66b38d32540e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yaya</AUni> -<AUni ws="qvm-x-acl">yaya</AUni> -<AUni ws="qvm-x-akh">yaya</AUni> -<AUni ws="qvm-x-akl">yaya</AUni> -<AUni ws="qvm-x-ame">yaya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yaya</AUni> -<AUni ws="qvm-x-acl">*yaya</AUni> -<AUni ws="qvm-x-akh">*yaya</AUni> -<AUni ws="qvm-x-akl">*yaya</AUni> -<AUni ws="qvm-x-ame">*yaya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.770" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f6ece4a1-7f90-4687-89f5-6b778f56839b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yaya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f603aa2a-33c9-427b-8a2f-61807dc21c2e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="828fc502-0d5c-40d9-99b6-8f89b404b9ee" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yaya 
\entryTyp root 
\gENG esteemed 
\gSPN estimado 
\e *yaya 
\c N0 
\ach yaya 
\akh yaya 
\acl yaya 
\akl yaya 
\ame yaya 
\mcc *yaya / ~_ 3P.V</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="3266d7ed-b4e4-4d07-90f7-b037c736fdcc" ownerguid="05a74610-1394-472f-acf9-17f5fd72e054" /> -<rt class="CmDomainQ" guid="3267bf8e-15a4-4c2a-b882-e184687e368a" ownerguid="04752883-aa3e-42a2-bd42-454e9cd99b11"> -<ExampleWords> -<AUni ws="en">according to our ancestors...</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) evidence from folklore: the speaker claims that the situation described is part of established oral history (e.g., mythology).</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3269fc56-1efd-4212-8385-ed692d878351" ownerguid="75fce016-3aa7-4e73-9003-db242c2f8c86"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="326aa08f-7346-4062-a4cd-208d32f36537" ownerguid="935da513-126e-4cab-8e07-625458821181"> -<ExampleWords> -<AUni ws="en">unification, union</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the act of forming a group?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="326cd6bc-4087-4cb4-8227-5744a8139083" ownerguid="02d404d7-f3d7-492c-92a0-c6c9ff1a1908"> -<ExampleWords> -<AUni ws="en">(Please) pass (the salt). May I have (the salt, please).</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What do people say when they want something?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="326f098a-9bac-4e2e-9b0b-3b6e7a7bf952" ownerguid="f30563f9-3a8b-4ca3-a632-77354009248b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="326f2174-eef5-4ed4-987d-021d9e7946a1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">garcu</AUni> -<AUni ws="qvm-x-acl">garcu; garco</AUni> -<AUni ws="qvm-x-akh">qarku</AUni> -<AUni ws="qvm-x-akl">qarku; qarko</AUni> -<AUni ws="qvm-x-ame">qarku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qarku</AUni> -<AUni ws="qvm-x-acl">*qarku</AUni> -<AUni ws="qvm-x-akh">*qarku</AUni> -<AUni ws="qvm-x-akl">*qarku</AUni> -<AUni ws="qvm-x-ame">*qarku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.115" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9a173912-e4b7-48b0-8912-9551312eb363" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qarku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="436c4159-c8a9-406d-bd73-c603b9bc2d42" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="eada1aa7-4ef8-4968-b0ab-a663612a8b5c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qarku 
\entryTyp root 
\gENG throw.out 
\gSPN botar 
\e *qarku 
\c V1 
\ach garcu 
\akh qarku 
\acl garcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl garco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qarku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qarko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qarku 
\mcc *qarku / _... PLDIR</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="326feae6-84f5-4602-8af3-db266b261b85" ownerguid="2e2bdbad-d0ce-461e-bff3-b0a8a7cf7100"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">slap</AUni> -<AUni ws="es">sopapear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9bc4a434-f791-4d73-839b-707c09898c69" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="326ffcde-1644-4678-9d1b-76a32e4de62c" ownerguid="1bd42665-0610-4442-8d8d-7c666fee3a6d"> -<ExampleWords> -<AUni ws="en">(lunar) month</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to the time it takes for the moon to go through its phases?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3271c8e7-0541-4342-b230-3613446785e7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">are:na</AUni> -<AUni ws="qvm-x-acl">are:na</AUni> -<AUni ws="qvm-x-akh">are:na</AUni> -<AUni ws="qvm-x-akl">are:na</AUni> -<AUni ws="qvm-x-ame">are:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+arena</AUni> -<AUni ws="qvm-x-acl">+arena</AUni> -<AUni ws="qvm-x-akh">+arena</AUni> -<AUni ws="qvm-x-akl">+arena</AUni> -<AUni ws="qvm-x-ame">+arena</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.820" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b5feeee5-bf0c-4305-98cd-699548838cc5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+arena</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bf02a27c-7eb0-4701-a37b-722d84a80e1c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e965382b-755e-4b07-80fa-a6059438c14c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +arena 
\entryTyp root 
\gENG sand 
\gSPN arena 
\e +arena 
\c N0 
\ach are:na 
\akh are:na 
\acl are:na 
\akl are:na 
\ame are:na</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="327281fe-f369-401c-8140-e0f3ffe6348b" ownerguid="a5855a80-ede7-423d-9f7b-428cb68d910b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">similar</AUni> -<AUni ws="es">semejanza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="39729f79-7380-42a8-8a49-aac426b0769d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="32738524-aa80-44c5-9a01-c406626e4ce6" ownerguid="4194f836-1472-4329-8411-1220e9a7d06e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">follow</AUni> -<AUni ws="es">seguir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c4eab316-c681-4844-b7e7-91756b7ddb4d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="327711f0-ee6d-43ec-b0be-09b9262a53d0" ownerguid="93b8bd61-137a-4ebc-b12f-52fa5d2b3ea4"> -<ExampleWords> -<AUni ws="en">windstorm, sandstorm, tempest, tempestuous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe a windstorm?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="32786ffc-2810-4d7d-92c6-d625c78030dd" ownerguid="31ec0cbc-4079-4c6c-873a-d0c406383db2"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="3278dca8-0985-4176-bb15-3b0c774e3f37" ownerguid="cdf65d07-f019-436e-95e6-4d74aafc147c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="3279c153-7682-46ba-8c7b-ab35a66b59cc" ownerguid="04752883-aa3e-42a2-bd42-454e9cd99b11"> -<Question> -<AUni ws="en">(7) second-hand evidence: the speaker claims to have heard of the situation described from someone who was a direct witness.</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="327ae1d9-5161-4909-8595-7081009549ca" ownerguid="afdd8b8e-9502-4d06-94ee-e79815b65750"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">We are <almost> finished.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">almost, nearly, just about, practically, as good as, more or less, not quite</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that something is almost finished?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="327dec4c-abff-4943-a33d-656140ba3806" ownerguid="89ad4e41-bf08-4d93-a4f3-f72e8cc62bed"> -<Question> -<AUni ws="en">(3) What words describe the relationship between a husband's parents and his wife's parents?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="328412ac-7dab-40ed-8f88-104ee8b6cbe6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">capaz</AUni> -<AUni ws="qvm-x-acl">capaz</AUni> -<AUni ws="qvm-x-akh">capaz</AUni> -<AUni ws="qvm-x-akl">capaz</AUni> -<AUni ws="qvm-x-ame">capaz</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+capaz</AUni> -<AUni ws="qvm-x-acl">+capaz</AUni> -<AUni ws="qvm-x-akh">+capaz</AUni> -<AUni ws="qvm-x-akl">+capaz</AUni> -<AUni ws="qvm-x-ame">+capaz</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.52" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5939fdf3-0990-4560-96d8-20560b4d91a3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+capaz</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7dec2756-2172-4541-b0f8-42ffb90ad00b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="80e98c24-f829-4727-afc0-afd8a8adf519" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +capaz 
\entryTyp root 
\gENG perhaps 
\gSPN capaz 
\e +capaz 
\c R0 
\mp +FinalC 
\ach capaz 
\akh capaz 
\acl capaz 
\akl capaz 
\ame capaz</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="3284ec03-6c14-4317-8e39-b4b06c2085c4" ownerguid="662cbcbc-a71e-4251-aca6-0cb1db47de9d"> -<Form> -<AUni ws="qvm-x-ach">iwala</AUni> -<AUni ws="qvm-x-acl">iwala</AUni> -<AUni ws="qvm-x-akh">iwala</AUni> -<AUni ws="qvm-x-akl">iwala</AUni> -<AUni ws="qvm-x-ame">iwala</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3285606b-b0fe-44ad-85b1-6df3df31473e" ownerguid="cb55f90f-9917-42c8-9c81-5a250c8a08b7"> -<Form> -<AUni ws="qvm-x-ach">la</AUni> -<AUni ws="qvm-x-acl">la</AUni> -<AUni ws="qvm-x-akh">la</AUni> -<AUni ws="qvm-x-akl">la</AUni> -<AUni ws="qvm-x-ame">la</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="328a1d9a-5792-4c37-9bdd-23841e9013ec" ownerguid="f2b0d936-da1a-4871-b734-24e101878b58"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="5d708102-1321-4961-b63d-af02ae2ec512" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="328ac1f9-b452-427f-9881-9be0a44cc5c7" ownerguid="623a4526-0041-4dc5-b1d9-716b40e3d02a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">truca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">truca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">truka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">truka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">truka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f06b3187-fa1f-4047-a4ca-61050c3e5b56" t="r" /> -</Morph> -<Msa> -<objsur guid="00451b86-befe-41ca-bb7b-badd37f041b1" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="32906471-98ec-4463-a89b-ee0cf3e88ad3" ownerguid="6c32038c-adf3-4085-bde3-cd2f21a421ba"> -<ExampleWords> -<AUni ws="en">throw away, throw aside, toss, junk, jettison, discard, eliminate, heave, reject, expel, dispose of, cast off, throw overboard, get rid of, rid yourself of, dump, clean out, purge, smoke out, unload, delete</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used for throwing something away?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3290b3ac-930b-4aad-8325-40d996418f6e" ownerguid="05472990-3f51-40b3-bca8-df3cf383328b"> -<ExampleWords> -<AUni ws="en">audience</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the people listening to the speech?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="32922991-52e6-497c-bbd1-db375f9af8ca"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">urcus</AUni> -<AUni ws="qvm-x-acl">urcus</AUni> -<AUni ws="qvm-x-akh">urkus</AUni> -<AUni ws="qvm-x-akl">urkus</AUni> -<AUni ws="qvm-x-ame">urkus</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*urkus</AUni> -<AUni ws="qvm-x-acl">*urkus</AUni> -<AUni ws="qvm-x-akh">*urkus</AUni> -<AUni ws="qvm-x-akl">*urkus</AUni> -<AUni ws="qvm-x-ame">*urkus</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.271" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4834aaf1-8e8d-46c1-a52c-811210a674b5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*urkus</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7bfa773e-dbed-4274-91b2-c5fa9b6e964b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bd9d994f-840f-4671-b1eb-94c374d1b0a8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *urkus 
\entryTyp root 
\gENG 
\gSPN 
\e *urkus 
\c N0 
\mp +FinalC 
\ach urcus 
\akh urkus 
\acl urcus 
\akl urkus 
\ame urkus</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="32937435-da56-4752-b867-4de0869207d3" ownerguid="a497fb49-8d8d-4cf1-821f-67470b8e8098"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="8a3a2c97-f0cc-4dae-98c9-a2a6041d35c7" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="22a26c80-94d5-492a-936d-afd8dcb44c47" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="PunctuationForm" guid="32939bcb-0073-47ee-a7c8-391ea96039bf"> -<Form> -<Str> -<Run ws="en">16</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="3295a38a-b26b-4b93-b04b-6ccda9e1e1ba" ownerguid="26b97047-edb1-44e9-8c7b-463de9cfbe78"> -<ExampleWords> -<AUni ws="en">flock</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What is a group of sheep called?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="32961915-11f8-4fb7-ad54-abd1517b02fb" ownerguid="5ef13a22-d5d4-4b58-b73f-b6eaa745095b"> -<Form> -<AUni ws="qvm-x-ach">tseqli</AUni> -<AUni ws="qvm-x-acl">tseqli; tseqle</AUni> -<AUni ws="qvm-x-akh">tseqli</AUni> -<AUni ws="qvm-x-akl">tseqli; tseqle</AUni> -<AUni ws="qvm-x-ame">tsiqli</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="3296ecd0-8c71-4de0-9d66-2156bc32712f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sha</AUni> -<AUni ws="qvm-x-acl">sha</AUni> -<AUni ws="qvm-x-akh">sha</AUni> -<AUni ws="qvm-x-akl">sha</AUni> -<AUni ws="qvm-x-ame">sha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*sha</AUni> -<AUni ws="qvm-x-acl">*sha</AUni> -<AUni ws="qvm-x-akh">*sha</AUni> -<AUni ws="qvm-x-akl">*sha</AUni> -<AUni ws="qvm-x-ame">*sha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.521" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0afe81a1-17ac-43f7-b680-790a2cdf733b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*sha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d5ee69c1-5d9d-4818-9c8c-413e3e02f841" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7d61f2e7-3298-4e1f-ac68-08a41ab09a7a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *sha 
\entryTyp root 
\gENG come 
\gSPN venir 
\e *sha 
\c V1 
\ach sha 
\akh sha 
\acl sha 
\akl sha 
\ame sha 
\mcc *sha / _ ... AFAR / _ ... BEN2 / _ UP / _ BKFRTH 
\mcc *sha / ~_ ... INF.noI # 
\mcc *sha / ~_ UP 
\mcc *sha / ~_ PNCT1 | should be shäri-</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="32974828-df2f-4a0d-ba0d-e3499f9a1659"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">le:wa</AUni> -<AUni ws="qvm-x-acl">le:wa</AUni> -<AUni ws="qvm-x-akh">le:wa</AUni> -<AUni ws="qvm-x-akl">le:wa</AUni> -<AUni ws="qvm-x-ame">le:wa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+legua</AUni> -<AUni ws="qvm-x-acl">+legua</AUni> -<AUni ws="qvm-x-akh">+legua</AUni> -<AUni ws="qvm-x-akl">+legua</AUni> -<AUni ws="qvm-x-ame">+legua</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.840" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6d413607-02b7-44b9-8986-65cb5a04447b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+legua</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dc8ba09b-1dd8-46f9-8c88-df18840c8d52" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="382c6397-8c5e-4f5d-a1bd-3c2dc395d7c5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +legua 
\entryTyp root 
\gENG league 
\gSPN legua 
\e +legua 
\c N0 
\ach le:wa 
\akh le:wa 
\acl le:wa 
\akl le:wa 
\ame le:wa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="32983d4c-1a12-48b9-8bd9-525af5db4fe8" ownerguid="19180e45-9355-41ed-94ab-f5f51f4eb8a4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="32998b42-bc5e-4b4f-a991-bcf09c4f7540" ownerguid="cd8b2a8b-687b-42e9-91e7-cfb8812b64ee"> -<ExampleWords> -<AUni ws="en">mistake, error, slip, mix-up, slip-up, oversight, aberration</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a mistake?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="329bd19f-b271-4b35-9269-741863625da8" ownerguid="126e199f-69cc-4e72-bcf1-5417cc9e38fa"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6fe49b5e-093a-457b-9f14-02b68e8cec63" t="r" /> -</Morph> -</rt> -<rt class="MoStemMsa" guid="329cad3f-1cda-4f05-a85a-322613c38bec" ownerguid="c72cf7f4-606c-4dd4-925c-089175dbcf77"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="329dc45c-3163-45d6-acf8-3e9a80569472" ownerguid="8442e9df-f5be-4b28-8621-865b99e288c4"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Lev 27.14 <<Pipis wayinta Jehovápag entregaptenga wayita ricaycur cüra täsanga ayca preciun cashgantapis. Tsay wayipa precionga cüra churashgannoglami canga.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiWordform" guid="32a37f44-5411-41ed-a890-dad53140ba62"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Tsawraqa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="32a4629d-1358-4e31-b3f3-d31119bd6e7a" ownerguid="27e765af-1968-4778-96d2-2b0101f69d4c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="32a6fc9a-6072-4404-be59-903c222b1382" ownerguid="15b7d6ea-aa4f-4864-836a-ee5e111181f3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">net</AUni> -<AUni ws="es">red</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="121170d5-1be1-455b-87c8-0ba061d14835" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="32a771fb-3657-4ff5-8add-839d2155f876"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">e:ra</AUni> -<AUni ws="qvm-x-acl">e:ra</AUni> -<AUni ws="qvm-x-akh">e:ra</AUni> -<AUni ws="qvm-x-akl">e:ra</AUni> -<AUni ws="qvm-x-ame">e:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+era</AUni> -<AUni ws="qvm-x-acl">+era</AUni> -<AUni ws="qvm-x-akh">+era</AUni> -<AUni ws="qvm-x-akl">+era</AUni> -<AUni ws="qvm-x-ame">+era</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.485" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="45b7dddf-0ddc-4668-b540-7b7c9a877341" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+era</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e9cf3f1a-76d4-42e5-bc33-f562f8bc75b3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="56953b3f-47ba-4c8c-ba99-7065e87eab66" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +era 
\entryTyp root 
\gENG threshing.floor 
\gSPN era 
\e +era 
\c N0 V1 
\ach e:ra 
\akh e:ra 
\acl e:ra 
\akl e:ra 
\ame e:ra 
\i DEU 16.13 Trïgu ërayta y üva palayta usharkur qanchis junaq Ramäda fiestata rurapäkunki.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoAffixAllomorph" guid="32a89aca-7ab0-40b1-a1b6-8d284bda57b6" ownerguid="c2ebfbd0-5e63-4232-86c9-625e47379016"> -<Form> -<AUni ws="qvm-x-ach">ri</AUni> -<AUni ws="qvm-x-acl">ri</AUni> -<AUni ws="qvm-x-akh">ri</AUni> -<AUni ws="qvm-x-akl">ri</AUni> -<AUni ws="qvm-x-ame">ri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="32a8b75f-144d-48b8-826b-fa2770fe46dd" ownerguid="4d5ffd0b-4dce-4f6e-b166-aa996cd87e47"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">dibujo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bac2c107-9d4c-438c-b899-4c46f24ff693" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="32a93390-7842-494c-b0e9-46f05bc68ac6" ownerguid="a6710378-186d-4b6b-8e32-7f38e12ccfd9"> -<Form> -<AUni ws="qvm-x-ach">aygui</AUni> -<AUni ws="qvm-x-acl">aygui; aygue</AUni> -<AUni ws="qvm-x-akh">ayqi</AUni> -<AUni ws="qvm-x-akl">ayqi; ayqe</AUni> -<AUni ws="qvm-x-ame">ayqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="32a9d128-5db5-4992-a2f8-fb9c1a16fc75" ownerguid="938bbb33-be76-412f-bd2f-ca94ca1500fb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cardboard</AUni> -<AUni ws="es">cartón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="91be7960-f97d-4d64-a469-4163377055cd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="32ade28b-a4b3-44cc-92a3-acb7e2878954" ownerguid="a8edb4f9-cc35-4486-9979-e49dd9391f4a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="32ae910e-4620-478e-a5a9-8319c736e36c" ownerguid="1fbb9f10-4371-4b1f-8b2b-f1ec9600913c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="32b1b8cc-7f84-4aa6-96a2-d0d718432c64" ownerguid="86c8bff0-cf2e-4823-a850-9fde7ac0b5d1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="32b5b89d-f706-4dcd-84ef-20bfad9f31c7" ownerguid="d1b3d0f0-5319-4a6a-8a70-2179a8e76d22"> -<ExampleWords> -<AUni ws="en">someone's needs, necessity, requirement, need (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something that is needed?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="32b71c12-b9b4-4b31-8ee4-f8ce7235b5b3" ownerguid="7e4d4600-ace8-4a2d-bb36-b53463439321"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="32bafc47-f221-41c7-9f39-9b2d410f419f" ownerguid="df2b9d7a-9b90-4704-8bc3-11dcffe985f4"> -<ExampleWords> -<AUni ws="en">flesh (colored), white, black, blotchy, red, bloom, blush, fair, dark, florid, glowing, sanguine, swarthy, albino</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe the color of a person's skin?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="32bce531-833b-4f99-be43-4614eaa871ff" ownerguid="f4580c19-ba9e-4f71-a46a-6f3c4b19c36c"> -<ExampleWords> -<AUni ws="en">embark</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to getting into a boat?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="32bd4389-c6c2-4961-96ee-f67746108cf9" ownerguid="4843c8e5-7c5c-4892-8f4c-610054073035"> -<Form> -<AUni ws="qvm-x-ach">tupu</AUni> -<AUni ws="qvm-x-acl">tupu; tupu; tupo</AUni> -<AUni ws="qvm-x-akh">tupu</AUni> -<AUni ws="qvm-x-akl">tupu; tupu; tupo</AUni> -<AUni ws="qvm-x-ame">tupu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="32bebe7e-bdcc-4e40-8f0a-894cd6b26f25" ownerguid="ba06de9e-63e1-43e6-ae94-77bea498379a"> -<Abbreviation> -<AUni ws="en">2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.32" /> -<DateModified val="2022-9-23 16:55:8.32" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a person being healthy--not sick.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>23H Health, Vigor, Strength</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Healthy</AUni> -</Name> -<OcmCodes> -<Uni>147 Physiological Data; 740 Health and Welfare</Uni> -</OcmCodes> -<Questions> -<objsur guid="5950a336-11e5-41d4-8504-f4db590ba3d5" t="o" /> -<objsur guid="aba0a8e3-0fc6-49b5-b00d-416825e8b03f" t="o" /> -<objsur guid="e03c4c2c-05b2-4781-b433-4e74db37d242" t="o" /> -<objsur guid="f9ef85f4-c0f5-40ff-b2ff-9af02703ab62" t="o" /> -<objsur guid="4028fb2d-d582-4ea5-8520-d8ecdad54a3b" t="o" /> -<objsur guid="093af034-7ba4-4b75-ae87-f188354e42c4" t="o" /> -<objsur guid="ca3e11c8-b4c8-4a97-b97e-1eba0c708fa6" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="7c6cad26-79c3-403a-a3aa-59babdfcd46f" t="o" /> -<objsur guid="cf337287-c9fa-43d2-93c4-284f45e262c0" t="o" /> -<objsur guid="9d865347-6656-4ab7-8613-bf2e8bc53aa7" t="o" /> -<objsur guid="c2dbe83a-d638-45ac-a6d5-5f041b9dde71" t="o" /> -<objsur guid="fa32115e-e389-47bd-91e1-61779172ccf2" t="o" /> -<objsur guid="a894d991-d5da-45a6-9c62-009133257f36" t="o" /> -<objsur guid="101c16f8-ec76-4ec7-895a-fd814fef51dd" t="o" /> -<objsur guid="a01a1900-fc1f-462e-ba3d-ae822711b034" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="32bf055a-d666-4d6e-a3c6-6c984e2c9868" ownerguid="cac1d7a8-7382-466e-ba4a-ba2bfe50f13b"> -<Abbreviation> -<AUni ws="en">3.5.9.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.184" /> -<DateModified val="2022-9-23 16:55:8.184" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the telephone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Telephone</AUni> -</Name> -<OcmCodes> -<Uni>206 Telephone and Telegraph</Uni> -</OcmCodes> -<Questions> -<objsur guid="8f982976-82d3-44a5-a4aa-a4bfab39db88" t="o" /> -<objsur guid="4a68328c-f426-4f2e-88fa-7dec74770eee" t="o" /> -<objsur guid="d85dd225-c792-4dd2-b968-dbf081004470" t="o" /> -<objsur guid="c928dc84-0741-4173-ad98-eaf81c6c5c0b" t="o" /> -<objsur guid="b2384851-cca7-4dd2-9410-b7095bb9bf4d" t="o" /> -<objsur guid="7c439dc1-4adf-4381-8a98-cb4c55508452" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="32c03dea-c4d1-468e-baf1-12c41ac62010" ownerguid="a8915eb1-7c23-441b-8d45-d7ce8dbff520"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="32c96e96-31e4-45da-9937-dab59eb5051b" ownerguid="77748469-fcf1-4cde-a3f6-47432eac5b6e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -<Sense> -<objsur guid="ed102c60-ed6d-498f-b2c4-a195d53a84e2" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="32cbc583-0132-48b5-b626-f875d1a35f63" ownerguid="1ff743cb-49e0-483d-8a1d-4603a7d6c395"> -<ExampleWords> -<AUni ws="en">decreasingly, lose ground, become less and less, get less and less</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words indicate that something happens or someone does something less than before?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="32cd7528-05c5-4ef2-8dc4-ead0a764ee32" ownerguid="4e28a0fd-86fa-47b3-a23c-c35e0caf80d5"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 1.2 Tsaymi rey Davidta yanapagnincuna caynog nergan: <<Sirvir atiendishunayquipag y oglar goñötsishunayquipag doncëlla jipashta ashipäcamushag.>></Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="32cf3835-bced-4ea1-9c7a-f7ff653e59fe" ownerguid="1c3c8af0-56b9-4617-862e-21f39b388606"> -<Abbreviation> -<AUni ws="en">2.6.6.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a grave--the place where a dead body is put.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>7G Miscellaneous Constructions</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Grave</AUni> -</Name> -<Questions> -<objsur guid="e316ac5f-501c-414b-a148-95e579cc3a8b" t="o" /> -<objsur guid="10b5dae9-f818-4fd3-b37e-2b15416474bf" t="o" /> -<objsur guid="60889f60-c94b-4dcf-8dc4-4fa9a40cede5" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="32d5b3de-0500-4ad6-b94e-20b8001d0a91" ownerguid="5cc64831-c14a-4dbe-beba-214e725ad041"> -<Abbreviation> -<AUni ws="en">7.2.1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to making a noise while moving.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Move noisily</AUni> -</Name> -<Questions> -<objsur guid="2def8f5c-0a90-42c4-9e0a-93ed2558c89e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="32d80bfa-df21-40b6-ad23-c572953d4e8e" ownerguid="a4446893-4605-42dd-a26f-8902220567a7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">startle</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="106e1ba9-5b0f-4b1e-8b61-b7dbc260d3a9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="32da55f7-a216-468e-9680-01ef7ea68a52"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aypa; aypa:</AUni> -<AUni ws="qvm-x-acl">aypa; aypa:</AUni> -<AUni ws="qvm-x-akh">aypa; aypa:</AUni> -<AUni ws="qvm-x-akl">aypa; aypa:</AUni> -<AUni ws="qvm-x-ame">aypa; aypa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aypa:</AUni> -<AUni ws="qvm-x-acl">*aypa:</AUni> -<AUni ws="qvm-x-akh">*aypa:</AUni> -<AUni ws="qvm-x-akl">*aypa:</AUni> -<AUni ws="qvm-x-ame">*aypa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.900" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5ff533ee-3d09-4ef0-8eaa-a903bfbfa77a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aypa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c03c8f95-5dcc-46fa-bad6-9d022c103215" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2095603f-4d0a-4363-b77a-2b77772c0938" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aypa: 
\entryTyp root 
\gENG reach 
\gSPN alcanzar 
\e *aypa: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach aypa foreshortened 
\ach aypa: 
\akh aypa foreshortened 
\akh aypa: 
\acl aypa foreshortened 
\acl aypa: 
\akl aypa foreshortened 
\akl aypa: 
\ame aypa foreshortened 
\ame aypa:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="32de04f0-1251-40ea-97c7-b30d30668c9a" ownerguid="264950bc-cf8b-4e1a-a850-8c65c69c5dbd"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="32dfbbb9-0089-46b7-9fea-a8c850e44ec0" ownerguid="b68d23ac-107c-4f83-ad4c-0eb39bde54ee"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2 N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">forgive</AUni> -<AUni ws="es">disculpar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ee451cee-ab4c-4a1f-bbd8-82e3ad7bddd0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="32e85ff9-9b83-4501-9b53-0a7b5fce9e56"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">listu</AUni> -<AUni ws="qvm-x-acl">listu; listo</AUni> -<AUni ws="qvm-x-akh">listu</AUni> -<AUni ws="qvm-x-akl">listu; listo</AUni> -<AUni ws="qvm-x-ame">listu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+listo.v</AUni> -<AUni ws="qvm-x-acl">+listo.v</AUni> -<AUni ws="qvm-x-akh">+listo.v</AUni> -<AUni ws="qvm-x-akl">+listo.v</AUni> -<AUni ws="qvm-x-ame">+listo.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.104" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="18a691ea-0bfc-4c58-b0fb-083ad493a98f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+listo.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eadd1f8e-eb69-4ae3-8f37-95099587d223" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="743c9781-a750-47ad-8024-3a59d012d658" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +listo.v 
\entryTyp root 
\gENG be.ready 
\gSPN ser.listo 
\e +listo.v 
\c V1 
\ach listu 
\akh listu 
\acl listu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl listo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl listu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl listo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame listu 
\mcc +listo.v / ~_ NMN</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="32ecceab-74d8-48e3-bdd0-1e4d8b2edafd" ownerguid="0dfdb2ba-84df-49e8-9564-d2ffc6256715"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="32ee64a8-b693-4a7f-a8a0-55304ebe5c7b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">salta</AUni> -<AUni ws="qvm-x-acl">salta</AUni> -<AUni ws="qvm-x-akh">salta</AUni> -<AUni ws="qvm-x-akl">salta</AUni> -<AUni ws="qvm-x-ame">salta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+saltar</AUni> -<AUni ws="qvm-x-acl">+saltar</AUni> -<AUni ws="qvm-x-akh">+saltar</AUni> -<AUni ws="qvm-x-akl">+saltar</AUni> -<AUni ws="qvm-x-ame">+saltar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.429" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="019af96a-1761-4351-be4d-e89558fdd584" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+saltar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a378735f-986b-445f-81d6-3a65d0c374a5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7520d9db-fd24-4e98-96d7-6c9ca6021008" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +saltar 
\entryTyp root 
\gENG jump 
\gSPN saltar 
\e +saltar 
\c V1 
\ach salta 
\akh salta 
\acl salta 
\akl salta 
\ame salta 
\i Gen 32.32 Jacobpa mama chanca mogunta tsay tsacay saltacäsishga captinmi Israel runacunaga uywata pishtar cananyagpis mana micuntsu tseglanman tincog ancu ancunta.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="32f40f19-a8c8-4a2b-ad07-127d084cb751" ownerguid="b17e6e3e-90f4-4b02-81b7-fd472be8c9bd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">midwife</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="69bbe4cc-01df-4a0d-b779-5eee93ff4358" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="32f727cf-3aaa-4b32-b96a-756603281a36" ownerguid="03d900be-35b2-4a93-85f5-773b666cefb5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">päca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">päca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">päka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">päka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">päku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e89f4461-706d-4840-bf9f-bfa3b395d737" t="r" /> -</Morph> -<Msa> -<objsur guid="f32a5a50-f426-45b8-ae08-eba8e0a53b74" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="32f7444b-091a-4d21-a765-68476baeb878" ownerguid="d88f62ce-1375-4ddb-a635-ff73b844d650"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="32f868e0-54a7-4d04-8689-ac10e13396e5" ownerguid="811e8c93-d97a-4aab-bd67-268b7783ff11"> -<Abbreviation> -<AUni ws="en">6.2.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.397" /> -<DateModified val="2022-9-23 16:55:8.397" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to cutting grass.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Cut grass</AUni> -</Name> -<Questions> -<objsur guid="50590f79-0c58-4710-8781-3823717137d4" t="o" /> -<objsur guid="9066a0a6-bdc2-4046-a312-6e64507aef0f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="32fa4a2b-1974-489c-9bf8-e38a19d3158d" ownerguid="4f00a4d0-3509-404d-a630-82e6f433928a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">gotear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3ce24bbb-0bde-4376-b7bc-04b180fd36c5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="32fbefe6-f63d-495d-a054-258d6ecf131d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lanchon</AUni> -<AUni ws="qvm-x-acl">lanchon</AUni> -<AUni ws="qvm-x-akh">lanchon</AUni> -<AUni ws="qvm-x-akl">lanchon</AUni> -<AUni ws="qvm-x-ame">lanchon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+planchón.1</AUni> -<AUni ws="qvm-x-acl">+planchón.1</AUni> -<AUni ws="qvm-x-akh">+planchón.1</AUni> -<AUni ws="qvm-x-akl">+planchón.1</AUni> -<AUni ws="qvm-x-ame">+planchón.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.871" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dc0217a3-8758-4480-8ddf-37945eaf342a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+planchón.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="857e29f0-e73c-452d-9a08-a780593da810" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dbbea1c5-74ff-4906-b89f-747215209c35" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +planchón.1 
\entryTyp root 
\gENG 
\gSPN 
\e +planchón.1 
\c N0 
\mp +assimilated 
\ach lanchon 
\akh lanchon 
\acl lanchon 
\akl lanchon 
\ame lanchon 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="32fc19fd-a04e-4b69-9442-f7d57348ec55" ownerguid="8c28c640-db5b-43e2-a1e6-b0e381962129"> -<Abbreviation> -<AUni ws="en">6.3.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to cattle and the care of cattle.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Cattle</AUni> -</Name> -<Questions> -<objsur guid="b63c3f01-b9cf-4773-919d-81f7124e6c8d" t="o" /> -<objsur guid="230a29fd-ae41-4dd4-b256-18ba3c826c9a" t="o" /> -<objsur guid="a25b217d-f678-4be4-86a5-f08ecd95df3d" t="o" /> -<objsur guid="70680dec-9c77-43fe-b6ea-1a0bee91dce0" t="o" /> -<objsur guid="03bf7117-1725-4957-b75a-6808b428158a" t="o" /> -<objsur guid="25620a19-79d9-49c2-9f0b-1bf097925836" t="o" /> -<objsur guid="64c1d04d-b06e-4baa-9e06-237b5a6a0371" t="o" /> -<objsur guid="443a4768-0441-4562-beda-476dbde6a3f5" t="o" /> -<objsur guid="d1a7a9f4-9623-4612-92f8-96c0fa5e3c47" t="o" /> -<objsur guid="a420f6b1-41a1-469f-871b-8aa8f626d388" t="o" /> -<objsur guid="5008c22a-bb65-4a88-b4a7-333e9130d976" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="32fce4a2-2ad8-44e3-86a8-d9417cecec55" ownerguid="22aba232-9fe9-4f6e-afda-41c40a29d3d8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="6bf335ea-7f65-4675-8634-005803550c98" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">horn</AUni> -<AUni ws="es">cuerno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a8e0f7dd-4e42-4482-b087-5cab01b93363" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="32fd8aad-9349-4802-b8f0-3dd553a4faa6" ownerguid="331d2881-5a44-49a5-ae78-6e858b12c5ab"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="32ffc887-d90d-4fa3-96cf-c3174ba1742e" ownerguid="3ac14d51-6820-4ca5-9551-bde7ff823cec"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">separate</AUni> -<AUni ws="es">apartar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="df8e3ae5-0e4e-4b0a-b0c4-58da088d30ff" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="330302e6-6e57-436d-99ca-25d01b06aab0" ownerguid="b2e3717e-3a9c-4260-b089-5a96e0893055"> -<Form> -<AUni ws="qvm-x-ach">diplöma</AUni> -<AUni ws="qvm-x-acl">diplöma</AUni> -<AUni ws="qvm-x-akh">diplöma</AUni> -<AUni ws="qvm-x-akl">diplöma</AUni> -<AUni ws="qvm-x-ame">diplöma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="33037a4d-3454-4c59-9a61-c5fb747f107a" ownerguid="34e92ff1-32aa-49c7-b4da-d161bedc5adc"> -<Abbreviation> -<AUni ws="en">6.6.2.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.468" /> -<DateModified val="2022-9-23 16:55:8.468" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to working with bricks.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Working with bricks</AUni> -</Name> -<OcmCodes> -<Uni>333 Masonry</Uni> -</OcmCodes> -<Questions> -<objsur guid="d37a701d-e0dd-46ac-8b8b-5256fe507ec0" t="o" /> -<objsur guid="ce8324b7-468b-4437-9b0f-95b8029c7348" t="o" /> -<objsur guid="ebc60fe7-4758-4ca1-8fe4-fbbbc573329e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="330665cf-d6d8-4860-823b-5e3dd6454d26" ownerguid="907f4c95-825f-4183-875f-02f6a18b8961"> -<Form> -<AUni ws="qvm-x-ach">cuñäda</AUni> -<AUni ws="qvm-x-acl">cuñäda</AUni> -<AUni ws="qvm-x-akh">cuñäda</AUni> -<AUni ws="qvm-x-akl">cuñäda</AUni> -<AUni ws="qvm-x-ame">cuñäda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="33067bc7-6824-4fe8-a844-c3556184df2a" ownerguid="656862c1-80f3-461a-b9cb-cc8873506f39"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3307e4d2-da79-4054-b1b3-0ecfb2d7f1f4" ownerguid="30ea3057-753d-4c4c-9b1f-ed30e569feea"> -<ExampleWords> -<AUni ws="en">courthouse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) Where is a court held?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="330a7b77-43e3-41d9-98b2-9e16c5d6022f" ownerguid="e949f393-2a5b-4792-af8f-75138322ceee"> -<ExampleWords> -<AUni ws="en">strengthen, bolster</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to making someone stronger?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="330b1e97-6414-4989-8581-4ceac3e0c93f" ownerguid="af74046a-6667-48a1-a068-ed96ca9d8fb2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mattress</AUni> -<AUni ws="es">colchón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="eac04665-21b1-4078-9e10-62a6d958d08b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="330e710d-59ea-44c1-932d-f01134b35715"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">almacen</AUni> -<AUni ws="qvm-x-acl">almacen</AUni> -<AUni ws="qvm-x-akh">almacen</AUni> -<AUni ws="qvm-x-akl">almacen</AUni> -<AUni ws="qvm-x-ame">almacen</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+almacén.2</AUni> -<AUni ws="qvm-x-acl">+almacén.2</AUni> -<AUni ws="qvm-x-akh">+almacén.2</AUni> -<AUni ws="qvm-x-akl">+almacén.2</AUni> -<AUni ws="qvm-x-ame">+almacén.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.709" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3c35974b-1190-4bbf-8045-def89d3f1c73" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+almacén.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8f196a2c-f9c4-47a7-a0e1-1e5e4787461d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="69a44a3a-d60d-40b3-8a28-91d2df8ee40f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +almacén.2 
\entryTyp root 
\gENG 
\gSPN 
\e +almacén.2 
\c N0 
\mp +FinalC 
\ach almacen / ~_# 
\akh almacen / ~_# 
\acl almacen / ~_# 
\akl almacen / ~_# 
\ame almacen / ~_# 
\i EZR 7.20 Diosniquipa templunpag imapis pishiptenga jorgunqui churacunä almacenpita.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="33103d73-2567-42f5-8fcd-a399587f59b9" ownerguid="8080c7ed-e69a-4a8a-bd8d-bf3447b13630"> -<ExampleWords> -<AUni ws="en">process harvest, shell groundnuts, shell beans, remove beans from pods, husk corn, remove leaves from maize cob, remove maize from the cob, dry, separate bad from good</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to processing the harvest?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="33123a02-ba41-4da4-97fb-6d70fe47c79b" ownerguid="ff7e3abd-6810-4128-83c9-701b4925c2fe"> -<ExampleWords> -<AUni ws="en">fireball, torch, firebrand, fireworks, firecracker, burn a field before planting</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of fire are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="33127b94-f2b9-4d0a-89d2-a3b03460d34d" ownerguid="04582a28-b94a-4e7f-8cc4-5cdefa8a39f0"> -<ExampleWords> -<AUni ws="en">man, guy, bloke, chap, fellow, gentleman, male, men folk</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a man?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="33153e04-e1e0-479a-a3be-45d4cd280d6f" ownerguid="67e57493-d286-4271-b877-f63f962dddf1"> -<ExampleWords> -<AUni ws="en">small, narrow (plot of ground), cramped, poky</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words describe a small area?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="331592df-f46e-4c42-8796-93c96d858cb1" ownerguid="8f7c9d7d-9b2a-40f3-9314-8f16f0aa31ef"> -<ExampleWords> -<AUni ws="en">folding, jointed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that can be folded?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="331a61cf-32e3-4c20-ac27-e6c9c45c8669" ownerguid="516e8837-8901-4ac8-bd3d-7927c27b8862"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">trots</AUni> -<AUni ws="es">corridos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bee1d449-731f-4348-9f7e-a1b88914af6e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="331d158b-ddf2-4432-b196-8a71723e385f" ownerguid="aadefee4-ed14-4753-952e-e945f2972e37"> -<ExampleWords> -<AUni ws="en">aspect, side, dimension, facet, factor, feature, detail</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the parts of a situation?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="331d2881-5a44-49a5-ae78-6e858b12c5ab"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quilicsa</AUni> -<AUni ws="qvm-x-acl">quilicsa</AUni> -<AUni ws="qvm-x-akh">kiliksa</AUni> -<AUni ws="qvm-x-akl">kiliksa</AUni> -<AUni ws="qvm-x-ame">kiliksa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*killiksa</AUni> -<AUni ws="qvm-x-acl">*killiksa</AUni> -<AUni ws="qvm-x-akh">*killiksa</AUni> -<AUni ws="qvm-x-akl">*killiksa</AUni> -<AUni ws="qvm-x-ame">*killiksa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.983" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9a802f69-5a84-4584-9ba0-b938cdf836e7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*killiksa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="32fd8aad-9349-4802-b8f0-3dd553a4faa6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="31dde2d7-92e3-4d6c-84ee-2fc05d84ec81" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *killiksa 
\entryTyp root 
\gENG kestrel 
\gSPN cernícalo 
\e *killiksa 
\c N0 
\ach quilicsa 
\akh kiliksa 
\acl quilicsa 
\akl kiliksa 
\ame kiliksa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="331f3da0-866d-438e-bde2-393f62291b3a" ownerguid="c1ccbaa5-7adb-4ad1-a826-a014b7ebb2ff"> -<Form> -<AUni ws="qvm-x-ach">miseria</AUni> -<AUni ws="qvm-x-acl">miseria</AUni> -<AUni ws="qvm-x-akh">miseria</AUni> -<AUni ws="qvm-x-akl">miseria</AUni> -<AUni ws="qvm-x-ame">miseria</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="332475d0-28ef-4611-9572-01666bf79fc8" ownerguid="d1401d06-ca1a-4df6-ae5e-b283707d5120"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2KI 18.21 Shogushman tucnacuptiqui maqui paltayquiman tsalcu yaycognogmi mandagnin rey faraónpis gamcunapag canga.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="332bcaca-dbb6-449f-b14c-37480791b593" ownerguid="a6f2f005-4706-4048-9599-bc5108a31077"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rainbow</AUni> -<AUni ws="es">arcoiris</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a9d0dc64-260e-409a-89d6-abded02550c6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="332c1e60-e621-426a-b90a-33ad863a78f7" ownerguid="b1e3461b-4ea1-4329-9015-56044a1882f1"> -<MorphoSyntaxAnalysis> -<objsur guid="e414c58c-943d-4c9b-91f2-c6ea5c87b68a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="332d0ed2-cf02-4432-87a3-9c9022aa528e" ownerguid="1f170500-3a55-4f4d-aa23-c01d9540c88f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="332d8dcc-88c6-4b76-be5c-755e065d9016" ownerguid="d59a84e1-5e12-4cb7-b72b-15c51810ad48"> -<ExampleWords> -<AUni ws="en">disunited, divided, divided in spirit, going in different directions, discordant, out of tune, on bad terms, dissenting, factious, at odds, at cross purposes, up in arms, embroiled, torn</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a group that is disunited?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3335ce6c-d135-4ea8-8a60-0858a3cbf893"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">vacuna</AUni> -<AUni ws="qvm-x-acl">vacuna</AUni> -<AUni ws="qvm-x-akh">vacuna</AUni> -<AUni ws="qvm-x-akl">vacuna</AUni> -<AUni ws="qvm-x-ame">vacuna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vacunar</AUni> -<AUni ws="qvm-x-acl">+vacunar</AUni> -<AUni ws="qvm-x-akh">+vacunar</AUni> -<AUni ws="qvm-x-akl">+vacunar</AUni> -<AUni ws="qvm-x-ame">+vacunar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.332" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1a1fb51a-ca0d-4d38-a616-c1feb39409b1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vacunar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="35e00b14-d94b-4030-aea1-3f86511d0ac5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c57f25d8-ca26-4b95-9dce-c918a1f779c0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vacunar 
\entryTyp root 
\gENG vaccinate 
\gSPN vacunar 
\e +vacunar 
\c V1 
\ach vacuna 
\akh vacuna 
\acl vacuna 
\akl vacuna 
\ame vacuna</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="33386176-2c1b-41b4-9064-6ba520f566fb" ownerguid="99d7ae3c-10df-4a64-9711-e9d3cf65f3bb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">herb</AUni> -<AUni ws="es">hierba</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cea03b1a-4991-41c7-ba14-8c995af3b627" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3338e0a8-060c-4c1d-8b8f-20aac14ca903" ownerguid="6ea13b69-b2a8-41f9-b0bc-14316ebc5118"> -<ExampleWords> -<AUni ws="en">obscure, shrouded in mystery, mysterious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe an unclear connection between two things?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="333a6901-b4a8-437c-bb2b-0bf454cbef3d" ownerguid="2c6bcf05-4f1d-4e8a-af5a-0a6792e378fe"> -<Form> -<AUni ws="qvm-x-ach">räna</AUni> -<AUni ws="qvm-x-acl">räna</AUni> -<AUni ws="qvm-x-akh">räna</AUni> -<AUni ws="qvm-x-akl">räna</AUni> -<AUni ws="qvm-x-ame">räna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="333abfbb-ad21-48b0-9baa-6527d28efdb1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wasca</AUni> -<AUni ws="qvm-x-acl">wasca</AUni> -<AUni ws="qvm-x-akh">waska</AUni> -<AUni ws="qvm-x-akl">waska</AUni> -<AUni ws="qvm-x-ame">waska</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waska.v</AUni> -<AUni ws="qvm-x-acl">*waska.v</AUni> -<AUni ws="qvm-x-akh">*waska.v</AUni> -<AUni ws="qvm-x-akl">*waska.v</AUni> -<AUni ws="qvm-x-ame">*waska.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.556" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b3de44ce-c4af-4c9b-8435-bad3792f8a43" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waska.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6cb6c821-fb9d-4642-9eef-6ca3a9304b61" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="debda89b-6547-4a90-859d-7280e9928d9d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waska.v 
\entryTyp root 
\gENG whip 
\gSPN azotar 
\e *waska.v 
\c V2 
\ach wasca 
\akh waska 
\acl wasca 
\akl waska 
\ame waska</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="333bdd9e-1ba6-4fe6-934f-676d7cc98bd6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rumi</AUni> -<AUni ws="qvm-x-acl">rumi; rumi; rume</AUni> -<AUni ws="qvm-x-akh">rumi</AUni> -<AUni ws="qvm-x-akl">rumi; rumi; rume</AUni> -<AUni ws="qvm-x-ame">rumi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rumi</AUni> -<AUni ws="qvm-x-acl">*rumi</AUni> -<AUni ws="qvm-x-akh">*rumi</AUni> -<AUni ws="qvm-x-akl">*rumi</AUni> -<AUni ws="qvm-x-ame">*rumi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.388" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="895463b4-528a-4c52-9571-c0af6a969974" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rumi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a79bbc0a-a7df-46d7-ba39-51473d2f3d92" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="25a9b015-aa73-4426-b7ce-256fa54c9ea9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rumi 
\entryTyp root 
\gENG rock 
\gSPN piedra 
\e *rumi 
\c N0 
\mp +FinalI 
\ach rumi 
\akh rumi 
\acl rumi / _# 
\acl rumi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl rume +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rumi / _# 
\akl rumi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl rume +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame rumi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="334291fd-5753-49d3-b0d8-50a3ba279709" ownerguid="bba30b56-6cd8-4542-81ab-f983cf1354bd"> -<ExampleWords> -<AUni ws="en">too far, out of sight, out of range, beyond reach, out of reach, out of hearing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that something is far enough so that you cannot do something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="33435f22-d32b-48c3-9744-89d737371501" ownerguid="1892095d-b9c5-49df-a950-e43aeba7196a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="33445e29-0ec1-441a-ba07-7afb7c32c92f" ownerguid="fec02498-8d8f-4213-afa3-426351ee3b38"> -<Form> -<AUni ws="qvm-x-ach">tröja</AUni> -<AUni ws="qvm-x-acl">tröja</AUni> -<AUni ws="qvm-x-akh">tröja</AUni> -<AUni ws="qvm-x-akl">tröja</AUni> -<AUni ws="qvm-x-ame">tröja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="334f2b59-a28d-44a2-b17b-e9ccd9a94901" ownerguid="ea990893-7941-4ab7-8090-acbaf1b1cf97"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">staff</AUni> -<AUni ws="es">bastón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b0c00e92-defc-4b18-b7ea-8b7870e556e6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3351f46d-d8ca-44fe-8b70-12375d5d2e3e" ownerguid="8411fa09-b1a5-4b62-aa47-f28bee9f6616"> -<ExampleWords> -<AUni ws="en">usefulness, utility</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the quality of being useful?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="33534a5f-f67f-449c-8b45-a4bd6e745635" ownerguid="21f21658-a69a-491c-a37b-156a8f4ad3fb"> -<ExampleWords> -<AUni ws="en">improper, ill-suited, ill-timed, inadmissible, inapt, incongruous, incorrect, indecent, indelicate, malapropos, presumptuous, unacceptable, unapt, unbecoming, unbefitting, undue, unfit, unfitting, unsuited to, untimely, untoward</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is unsuitable?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3353c4e6-59ab-46f1-a12e-cac7d6a22749" ownerguid="e9ef98d9-8844-4804-88a5-614493d150f5"> -<ExampleWords> -<AUni ws="en">alert, watchful, vigilant, keep your eyes peeled, aware, clear headed, coherent, wary, mindful, responsive, sensitive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who is alert?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3354a18d-d5ab-40ca-86d7-0b44f408f0cb" ownerguid="cd01db6c-8aa6-42d1-93ac-05e81a8be523"> -<ExampleWords> -<AUni ws="en">serve, dish up, to ladle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to serving food?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="33566204-d674-40ed-8fd8-63676d75513d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">malway</AUni> -<AUni ws="qvm-x-acl">malway</AUni> -<AUni ws="qvm-x-akh">malway</AUni> -<AUni ws="qvm-x-akl">malway</AUni> -<AUni ws="qvm-x-ame">malway</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mallway</AUni> -<AUni ws="qvm-x-acl">*mallway</AUni> -<AUni ws="qvm-x-akh">*mallway</AUni> -<AUni ws="qvm-x-akl">*mallway</AUni> -<AUni ws="qvm-x-ame">*mallway</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.293" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="52656619-6f17-47a5-a70a-b4b0ac318401" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mallway</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4c50d93f-2c22-4050-9338-3bf2e73b00d9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a4b8ae11-05a7-45d8-9527-2191d0f7b4c8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mallway 
\entryTyp root 
\gENG rest.hour 
\gSPN descanso 
\e *mallway 
\c N0 
\mp +FinalC 
\ach malway 
\akh malway 
\acl malway 
\akl malway 
\ame malway 
\i MAT 20.5 Pulan junaqpis y malway hörapis yapayshi minkay asheq aywarqan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="33576754-2962-46d1-b3be-0af1dbf5199f" ownerguid="8b0ef0bb-eca6-4882-a2e8-6c776570f76f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cup</AUni> -<AUni ws="es">vaso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="043a5c84-4796-4aaa-ad72-80e60261194b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="3358f29f-13e7-4b8c-a04d-67a77d3e9b79" ownerguid="520cb0dd-0b70-49ec-ab70-d15efdf0c390" /> -<rt class="MoStemMsa" guid="335a98a3-c342-422e-9ca4-75d31f326324" ownerguid="d81b6655-eda2-4945-a6f4-965104769770" /> -<rt class="LexEntry" guid="335acc66-724a-4cf2-80f4-d4efcd73e003"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ga:nas</AUni> -<AUni ws="qvm-x-acl">ga:nas</AUni> -<AUni ws="qvm-x-akh">ga:nas</AUni> -<AUni ws="qvm-x-akl">ga:nas</AUni> -<AUni ws="qvm-x-ame">ga:nas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ganas</AUni> -<AUni ws="qvm-x-acl">+ganas</AUni> -<AUni ws="qvm-x-akh">+ganas</AUni> -<AUni ws="qvm-x-akl">+ganas</AUni> -<AUni ws="qvm-x-ame">+ganas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.599" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5fa20d01-79f5-4435-8e30-9788655ef642" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ganas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9fc68e80-42d1-4865-a7ea-1e6efd06e848" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="83eeab55-6a19-4aed-8b68-328d8ed6fc89" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ganas 
\entryTyp root 
\gENG 
\gSPN ganas 
\e +ganas 
\c N0 
\mp +FinalC 
\ach ga:nas 
\akh ga:nas 
\acl ga:nas 
\akl ga:nas 
\ame ga:nas</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="335b2f6c-e789-4801-8491-f8dcc10a9663" ownerguid="36c4afbc-dced-457f-b9ac-0127e1718e2e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3361bc64-667f-404a-b96e-c2fedeea1a99"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waru</AUni> -<AUni ws="qvm-x-acl">waru; waro</AUni> -<AUni ws="qvm-x-akh">waru</AUni> -<AUni ws="qvm-x-akl">waru; waro</AUni> -<AUni ws="qvm-x-ame">waru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waru</AUni> -<AUni ws="qvm-x-acl">*waru</AUni> -<AUni ws="qvm-x-akh">*waru</AUni> -<AUni ws="qvm-x-akl">*waru</AUni> -<AUni ws="qvm-x-ame">*waru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.536" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="071d8e93-13f4-4f38-9d6f-b0649a38c594" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6e4e8c4c-4c2c-4373-a087-3f0d9df73afb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="caa7ce9d-0d7e-4db9-94b9-9e179853ec58" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waru 
\entryTyp root 
\gENG bite? 
\gSPN morder? 
\e *waru 
\c V2 
\ach waru 
\akh waru 
\acl waru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl waro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl waru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl waro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame waru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="33664c68-9d1b-4feb-a0fc-1d42b54914f5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">almentu; almento</AUni> -<AUni ws="qvm-x-acl">almentu; almentu; almento</AUni> -<AUni ws="qvm-x-akh">almentu; almento</AUni> -<AUni ws="qvm-x-akl">almentu; almentu; almento</AUni> -<AUni ws="qvm-x-ame">almentu; almento</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+alimento.2</AUni> -<AUni ws="qvm-x-acl">+alimento.2</AUni> -<AUni ws="qvm-x-akh">+alimento.2</AUni> -<AUni ws="qvm-x-akl">+alimento.2</AUni> -<AUni ws="qvm-x-ame">+alimento.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.707" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f2bf808a-4678-4ed7-b3f2-d2e350793ce9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+alimento.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="db0214b2-f988-4d05-ac84-289569445868" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d04923f6-42c4-40cd-b2b4-0b9f79447650" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +alimento.2 
\entryTyp root 
\gENG food 
\gSPN alimento 
\e +alimento.2 
\c N0 
\ach almentu / ~_# 
\ach almento / _# 
\akh almentu / ~_# 
\akh almento / _# 
\acl almentu / ~_# 
\acl almentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl almento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl almentu / ~_# 
\akl almentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl almento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame almentu / ~_# 
\ame almento / _# 
\i Tsayshi jinan höra aywar yayan yana carnita apamurqan warminpa almentunpaq. (Juan Ösu)</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="3366df1f-d70e-4052-8d39-7159e5b24c0b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wayu</AUni> -<AUni ws="qvm-x-acl">wayu; wayo</AUni> -<AUni ws="qvm-x-akh">wayu</AUni> -<AUni ws="qvm-x-akl">wayu; wayo</AUni> -<AUni ws="qvm-x-ame">wayu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wayu</AUni> -<AUni ws="qvm-x-acl">*wayu</AUni> -<AUni ws="qvm-x-akh">*wayu</AUni> -<AUni ws="qvm-x-akl">*wayu</AUni> -<AUni ws="qvm-x-ame">*wayu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.637" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d2de80dc-25f8-436f-8752-0d1dd8e9b8bc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wayu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f471efde-5fc9-44b2-a3ca-935eb53ea2d8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="70e8bb77-a56c-4f04-8b16-d60d912f6495" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wayu 
\entryTyp root 
\gENG produce 
\gSPN producir 
\e *wayu 
\c V1 
\ach wayu 
\akh wayu 
\acl wayu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wayo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wayu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wayo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wayu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="336848f8-2ebd-499b-ba6e-1fe94f6b9a36" ownerguid="0fa0be21-2246-40b2-86b1-ca572fe8c16c"> -<ExampleWords> -<AUni ws="en">could care less, couldn't care less, be bored to tears, be bored stiff, be bored out of your mind, someone's eyes glaze over</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to feeling very uninterested?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="33697836-9c07-4604-9e79-751c6b62a48e" ownerguid="2fc6e3a3-635f-46f6-ad6d-1674d5d1d766"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="6d795822-4e75-4266-b044-8acce0e299d0" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="9a9bd1b2-cccd-4154-9265-87abedcae4cc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="336b3c92-6094-4f42-b9d8-e8abd9a2d37f" ownerguid="6d3b58ca-5265-4041-830b-c023067354f0"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="ce27b712-68c3-4813-9428-595a9acd846f" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiMorphBundle" guid="337061ba-8fa0-48e0-a4a6-84feb6b15623" ownerguid="1ce1cf74-4502-483d-8c16-22a4dd7d5724"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="3370cae3-8302-4e41-98ba-babce07bfdd3" ownerguid="af26d96c-bc85-4162-8468-9b71b5c64de6"> -<Form> -<AUni ws="qvm-x-ach">wipi</AUni> -<AUni ws="qvm-x-acl">wipi; wipi; wipe</AUni> -<AUni ws="qvm-x-akh">wipi</AUni> -<AUni ws="qvm-x-akl">wipi; wipi; wipe</AUni> -<AUni ws="qvm-x-ame">wipi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="3374391f-3d36-4e37-9de3-ab6541adb8c6" ownerguid="054374ba-4897-4b39-b0ee-8c5c4f4a9c73"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3374bf88-074f-49cc-88d5-d6dd6751d677" ownerguid="8ce6709f-f772-4638-a1aa-c132666f3563"> -<ExampleWords> -<AUni ws="en">annoy, antagonize, bug, exacerbate, exasperate, frustrate, gall, harass, hassle, irritate, nag, needle, nettle, pester, piss someone off, much to my annoyance, it ticks me off, it hacks me off, get on your nerves, get under your skin, drive you crazy, drive you nuts, drive you up the wall</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to causing someone to feel annoyed?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3378188d-6eed-4c37-8962-7e6c5f2b95bb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ladrón; ladron</AUni> -<AUni ws="qvm-x-acl">ladrón; ladron</AUni> -<AUni ws="qvm-x-akh">ladrón; ladron</AUni> -<AUni ws="qvm-x-akl">ladrón; ladron</AUni> -<AUni ws="qvm-x-ame">ladrón; ladron</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ladrón</AUni> -<AUni ws="qvm-x-acl">+ladrón</AUni> -<AUni ws="qvm-x-akh">+ladrón</AUni> -<AUni ws="qvm-x-akl">+ladrón</AUni> -<AUni ws="qvm-x-ame">+ladrón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.43" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ae38add3-35f2-4998-8ae2-319be84dca9b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ladrón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="06130dbf-3d25-4d94-8b85-fddfe83aedba" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f9c5db2a-3d3f-45e2-8f41-9f7d95d2f33c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ladrón 
\entryTyp root 
\gENG theif 
\gSPN ladrón 
\e +ladrón 
\c N0 
\mp +FinalC 
\ach ladrón / _# 
\ach ladron / ~_# 
\akh ladrón / _# 
\akh ladron / ~_# 
\acl ladrón / _# 
\acl ladron / ~_# 
\akl ladrón / _# 
\akl ladron / ~_# 
\ame ladrón / _# 
\ame ladron / ~_# 
\i PRO 6.30 Ladruntapis yarganar suwacuptenga cuyapashwanragmi.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="3380c677-0533-4d34-a07f-ba57dc8fc893" ownerguid="6c7f0837-ac1e-4d41-8774-f8fc826cfd91"> -<Form> -<AUni ws="qvm-x-ach">chuli</AUni> -<AUni ws="qvm-x-acl">chuli; chule</AUni> -<AUni ws="qvm-x-akh">chuli</AUni> -<AUni ws="qvm-x-akl">chuli; chule</AUni> -<AUni ws="qvm-x-ame">chuli</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="33816680-2be1-4755-85ee-7dca98371497" ownerguid="f726d9bb-ae80-4c01-bdef-b600cb27736e"> -<ExampleWords> -<AUni ws="en">office, factory, plant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the place where a business works?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="33868b43-9269-47a8-b523-b37453950044" ownerguid="cf47477d-c32d-444f-9967-2d0d13393aaf"> -<Form> -<AUni ws="qvm-x-ach">pashta</AUni> -<AUni ws="qvm-x-acl">pashta</AUni> -<AUni ws="qvm-x-akh">pashta</AUni> -<AUni ws="qvm-x-akl">pashta</AUni> -<AUni ws="qvm-x-ame">pashta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="3388ec9f-d179-46d1-87e4-8a2ddb25375f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuptu</AUni> -<AUni ws="qvm-x-acl">cuptu; cupto</AUni> -<AUni ws="qvm-x-akh">kuptu</AUni> -<AUni ws="qvm-x-akl">kuptu; kupto</AUni> -<AUni ws="qvm-x-ame">kuptu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kuptu</AUni> -<AUni ws="qvm-x-acl">*kuptu</AUni> -<AUni ws="qvm-x-akh">*kuptu</AUni> -<AUni ws="qvm-x-akl">*kuptu</AUni> -<AUni ws="qvm-x-ame">*kuptu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.13" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e49a5aee-f347-46b0-a22a-19b7204057ab" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kuptu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e7c7c1ea-79b7-4d41-8a28-ea6ac1ae17ac" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="99e95bf5-86f9-40e1-8806-da801bc8a364" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kuptu 
\entryTyp root 
\gENG break 
\gSPN trozarse 
\e *kuptu 
\c V1 
\ach cuptu 
\akh kuptu 
\acl cuptu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl cupto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kuptu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kupto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kuptu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="3389561c-f264-48b9-b94c-86c33fc3c423" ownerguid="f7960e84-5af9-4999-9028-783058aa8c5c"> -<Abbreviation> -<AUni ws="en">8.1.5.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.579" /> -<DateModified val="2022-9-23 16:55:8.579" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to an average number.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Average</AUni> -</Name> -<Questions> -<objsur guid="138c3650-5df0-47cd-bcd4-1b93a02e4fe0" t="o" /> -<objsur guid="b65a1cfd-1b7f-4672-bebe-49bb20c00e50" t="o" /> -<objsur guid="a11e5e9a-2eba-4066-883f-023e2e7d1904" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="338b7927-b5c4-4d99-b417-62b3659348f1" ownerguid="2a2af155-9db9-41c5-860a-fe0a3a09d6de"> -<ExampleWords> -<AUni ws="en">line of thought, line of thinking, train of thought, reasoning</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a series of thoughts?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="338c048a-b0d9-4136-9385-d89fcacefcb1" ownerguid="4d60eb1f-bd22-45af-9581-dcc897efcfb4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="46b4e928-51ab-4fb1-b4c4-295de6a3e0c0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="338d8dd1-c4af-406d-a709-7b555df2ae1f" ownerguid="2f48550a-3702-4bdb-bb3e-09bee13e0c4e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yoragatargan. \tr yoragatarganxx.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="338d9dbe-8c51-43fd-8654-b4878c17eeab" ownerguid="4bf670d1-e204-4627-9847-583083bd6a0c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">great horned owl</AUni> -<AUni ws="es">buho americano</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="db2c15df-25ad-42a7-9c04-9c05f3f4119f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="338f588e-db4e-4952-a514-07ecfbc07757" ownerguid="5095fe64-ebb3-4190-ab27-bb5b09f07793"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="338face4-b7c8-48c8-9257-6eb6c8b3ff67" ownerguid="73d580ac-dc89-474c-8048-3453ebdda807"> -<ExampleWords> -<AUni ws="en">distance, how far, span, as the crow flies</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the distance between two things?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="3393b3b2-b324-408d-9c59-057a0de9c3bd" ownerguid="d8366daf-ae1d-4b2c-a447-478c73580639"> -<Abbreviation> -<AUni ws="en">6.1.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.346" /> -<DateModified val="2022-9-23 16:55:8.346" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that someone is trying to do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>68E Try, Attempt</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Try, attempt</AUni> -</Name> -<Questions> -<objsur guid="f4da626c-2e02-4044-958a-1488e7408cb6" t="o" /> -<objsur guid="f340abab-4ffd-41e5-97b7-42a3a04671a9" t="o" /> -<objsur guid="1711405b-3b1a-4399-88cc-de3c08fc8e69" t="o" /> -<objsur guid="96737276-7ef2-4df4-80ee-f17c8b9f0eb2" t="o" /> -<objsur guid="5d0c5aa2-3102-4c17-859b-64121f3cb486" t="o" /> -<objsur guid="431a8340-fb32-423e-af94-681ffe07e354" t="o" /> -<objsur guid="422f0c87-b949-422a-b2e3-6bb5e2c122be" t="o" /> -<objsur guid="b4bbb7b8-d484-4238-8162-f8956cd7fecb" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="339641bb-6fa8-45d1-be48-fcd65d45963d" ownerguid="484602df-3914-4538-a36f-62a75fc50306"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0 V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="731292c7-f732-4987-8d14-e18e8cbc0dc6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3399c934-a257-4582-b2b2-0d9a870778f5" ownerguid="04752883-aa3e-42a2-bd42-454e9cd99b11"> -<ExampleWords> -<AUni ws="en">I was there and...</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) direct evidence: the speaker claims to have witnessed the situation, but does not specify the type of sensory evidence.</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="339d8e7a-d699-498d-afd3-9da240ba8565"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mashta</AUni> -<AUni ws="qvm-x-acl">mashta</AUni> -<AUni ws="qvm-x-akh">mashta</AUni> -<AUni ws="qvm-x-akl">mashta</AUni> -<AUni ws="qvm-x-ame">mashta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mashta</AUni> -<AUni ws="qvm-x-acl">*mashta</AUni> -<AUni ws="qvm-x-akh">*mashta</AUni> -<AUni ws="qvm-x-akl">*mashta</AUni> -<AUni ws="qvm-x-ame">*mashta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.356" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3b89a05b-1ad5-443f-bf78-e56e3b26b95b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mashta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9aee1fb7-1dcc-4050-a7b8-a92cae5b1d54" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="361987af-ffa9-4ab4-a9fd-bed338501f3f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mashta 
\entryTyp root 
\gENG spread 
\gSPN desparramar 
\e *mashta 
\c V2 
\ach mashta 
\akh mashta 
\acl mashta 
\akl mashta 
\ame mashta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="339ee46b-d69a-4f2e-8fba-d1b2adff763b" ownerguid="749ad6fe-5509-4e45-b236-84ea12de102e"> -<Abbreviation> -<AUni ws="en">6.8.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being generous.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Generous</AUni> -</Name> -<Questions> -<objsur guid="84c4c444-ce7e-4d27-9b4c-efd6ef0a4976" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="339f54a5-125b-435f-bf37-cfc2a2bd26d3" ownerguid="767aa167-af3d-4e11-a68b-ec31f9d2ef1a"> -<Abbreviation> -<AUni ws="en">3.5.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.174" /> -<DateModified val="2022-9-23 16:55:8.174" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for facial expressions--ways in which people move the parts of their faces to show feeling or communicate something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>23B Processes Involving the Mouth, Other Than Eating and Drinking</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Facial expression</AUni> -</Name> -<Questions> -<objsur guid="0dfb1f43-7067-4dfb-b6cb-335587b9dd8d" t="o" /> -<objsur guid="35b7d4ef-54f8-422f-bfa2-9c762fbc1726" t="o" /> -<objsur guid="5ac23764-3002-442b-b777-a55f4cede8a3" t="o" /> -<objsur guid="c22e3404-f80c-4dc6-a56f-4e95f3cb2ff8" t="o" /> -<objsur guid="87eefbd9-227c-403e-bd40-8f1346c7c106" t="o" /> -<objsur guid="d9edf27f-d0cb-41a8-8ed8-19c012be0cdc" t="o" /> -<objsur guid="a345c2c4-ba9a-4bf9-b4c0-412303a19de3" t="o" /> -<objsur guid="e3ee9929-1eef-44c4-886b-0c0aae9587db" t="o" /> -<objsur guid="a6ff0a3e-661c-4948-8a0b-3db2c10c0639" t="o" /> -<objsur guid="e16d034f-b31e-4a4d-827f-13f9ff0420c2" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="339fc947-a5bc-4e61-b4c0-f87b112eac47" ownerguid="82cb0881-5c23-4df2-b22c-45aa078032c1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">SOUND</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c7db5260-9bec-4199-b8b4-d0cb9b6b111b" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="d557d038-6a15-444b-a9cd-794db7acd4fa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="33a0e7ad-f799-422c-8065-0c69899b98bb" ownerguid="2933a9c1-aa62-46fb-a03c-68aed7fae9b7"> -<ExampleWords> -<AUni ws="en">blacken, scorch, singe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to something burning partly?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="33a45f09-1242-44f0-b333-f1f71db0d79a" ownerguid="825477a7-22cb-4e39-b1ba-830ceb56818e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">clown</AUni> -<AUni ws="es">payaso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f3c1c116-780d-458e-9621-49fd2b1b6288" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="33aaffd5-8fd6-431a-a7ab-54fcd3b84fe5" ownerguid="54a14bc8-1822-43c7-9264-7b5bc31ef8fb"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="33ac5273-b23b-4eff-887e-0ff89b62913a" ownerguid="223e408a-4c34-41c0-821f-20848376c90d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">involve</AUni> -<AUni ws="es">meter</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1df2fce0-1883-425b-9c13-39a1880e7678" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="33ad2cea-7c3d-43a0-8ccb-2c5a1afd1fc8" ownerguid="ff39e472-fc70-4848-86f0-53a17ba96f65"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="CmDomainQ" guid="33ad7bee-2c3b-405b-beba-fd7bded9a553" ownerguid="b553e989-2b2a-4b1e-a987-ae75f3862501"> -<ExampleWords> -<AUni ws="en">casual, offhand, nonchalant, gaily</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something someone does when they don't care?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="33af9d02-2e3b-4580-ae35-cef0764cf162" ownerguid="055b2e6f-cacc-4740-a7f8-4ee42b6f73a3"> -<Form> -<AUni ws="qvm-x-ach">häbil</AUni> -<AUni ws="qvm-x-acl">häbil; häbil; häbel</AUni> -<AUni ws="qvm-x-akh">häbil</AUni> -<AUni ws="qvm-x-akl">häbil; häbil; häbel</AUni> -<AUni ws="qvm-x-ame">häbil</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="33b1fc6b-00f7-4b38-b663-94c1c2de14e0" ownerguid="b2f95320-1b8e-4f64-bf96-3c274a7f00b5"> -<Form> -<AUni ws="qvm-x-ach">jucla</AUni> -<AUni ws="qvm-x-acl">jucla</AUni> -<AUni ws="qvm-x-akh">jukla</AUni> -<AUni ws="qvm-x-akl">jukla</AUni> -<AUni ws="qvm-x-ame">hukla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="33b3470e-6798-4240-a1ff-03cc998ea829" ownerguid="7b39e22d-bdac-4a5e-bee0-1bf549ccdd75"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">lä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">lä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">lä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">lä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">lä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="188d87af-7ca1-4062-82d9-275bb91da5f7" t="r" /> -</Morph> -<Msa> -<objsur guid="e118995f-d03c-4537-8b1a-0955253a34a0" t="r" /> -</Msa> -<Sense> -<objsur guid="ff407389-1512-478e-824b-bd527d047076" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="33b5e2c6-d749-44b9-9c93-61cf16ac862b" ownerguid="225c48dd-9fc2-4467-944f-16a098b4e518"> -<ExampleWords> -<AUni ws="en">beat, defeat, outplay, be more than match for</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to defeating someone in a game or other competition?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="33b7f772-bf9a-4a16-b3dd-3f64f4e7ee58" ownerguid="d585e706-3cf6-472f-9ede-de024a7d488f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">protrude</AUni> -<AUni ws="es">salir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="25890ad1-d967-438f-ae4d-36f3adf63e94" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="33badd0f-7c93-44c8-b151-f9fb588f23aa" ownerguid="243d8a57-d5ed-4d7f-bd5e-f2605634f0fc"> -<ExampleWords> -<AUni ws="en">beat back, beat off, drive off, hold out against, fend off, fight off, fling back, repel, repulse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to successfully defending yourself or someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="33bb3d02-4127-43e3-bd32-45a968ab6524" ownerguid="2b27b8ca-188e-44ad-aa86-ffa1f99106e3"> -<ExampleWords> -<AUni ws="en">extra, supplemental, supplementary</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that is added?</AUni> -</Question> -</rt> -<rt class="Segment" guid="33bbadaf-f1c4-4b6b-95bf-bfffccdb9332" ownerguid="6ab5a4fa-da56-4225-81be-c0c7e10933e7"> -<Analyses> -<objsur guid="71db9179-0dd5-445f-b153-c1857c6cf612" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexSense" guid="33c0d13c-9d15-408d-9aab-005a62e05ed8" ownerguid="7381046a-85e1-4f7c-9510-742040c489ab"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">answer</AUni> -<AUni ws="es">contestar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8c6d9ef8-4012-4518-80c5-88927d5df8bf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="33c10bc2-7d76-4176-a477-e17b6ed5996d" ownerguid="db2232d9-8b17-4920-936f-2b6249c6f7fa"> -<ExampleWords> -<AUni ws="en">hot, pirated, stolen</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words describe something that is stolen?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="33c3655d-5220-4b47-a7e9-d0d3b28d3998"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gueli</AUni> -<AUni ws="qvm-x-acl">gueli; guele</AUni> -<AUni ws="qvm-x-akh">qeli</AUni> -<AUni ws="qvm-x-akl">qeli; qele</AUni> -<AUni ws="qvm-x-ame">qili</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qilli</AUni> -<AUni ws="qvm-x-acl">*qilli</AUni> -<AUni ws="qvm-x-akh">*qilli</AUni> -<AUni ws="qvm-x-akl">*qilli</AUni> -<AUni ws="qvm-x-ame">*qilli</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.175" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fd7bcf72-791e-4e3f-aeed-274dc72b7b1b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qilli</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3ecdd64b-4226-4e72-8458-df93d4dbdeb7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="90c14711-87a6-4a4f-9d5f-b3f3c91d9345" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qilli 
\entryTyp root 
\gENG be.attracted 
\gSPN ser.atrafdo 
\e *qilli 
\c V2 
\mp +FinalI 
\ach gueli 
\akh qeli 
\acl gueli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl guele +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qeli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qele +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qili</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="33c3d198-ee61-4774-b31a-cc66733e6d63" ownerguid="198181cf-3363-4dee-b22c-c8bdaaf53ce0"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6fe49b5e-093a-457b-9f14-02b68e8cec63" t="r" /> -</Morph> -</rt> -<rt class="CmDomainQ" guid="33c3d564-553a-4c55-b229-a4162b1bd79d" ownerguid="8b76f4a2-9926-4c76-8d4f-563371683219"> -<ExampleWords> -<AUni ws="en">chemical, compound, molecule, molecular, radical, valence</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to chemicals?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="33c4a819-2260-4792-b6b6-92eb48e5ba76" ownerguid="1c8da3aa-3c74-4188-8949-5ab82fc1f99c"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John waters his cows <every> evening.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">every (day)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that something happens every day or week?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="33c5a3fe-b5d2-4689-bbdc-f838fbff1c10"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">permiti</AUni> -<AUni ws="qvm-x-acl">permiti; permite</AUni> -<AUni ws="qvm-x-akh">permiti</AUni> -<AUni ws="qvm-x-akl">permiti; permite</AUni> -<AUni ws="qvm-x-ame">permiti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+permitir</AUni> -<AUni ws="qvm-x-acl">+permitir</AUni> -<AUni ws="qvm-x-akh">+permitir</AUni> -<AUni ws="qvm-x-akl">+permitir</AUni> -<AUni ws="qvm-x-ame">+permitir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.800" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="00b17ec9-6506-4d11-9fc9-818fdeeefe85" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+permitir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="537a206d-d035-48ee-acc4-bf164d641f42" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="56383ab7-a301-4380-83a6-7558a5f39a1d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +permitir 
\entryTyp root 
\gENG allow 
\gSPN permitir 
\e +permitir 
\c V2 
\mp +FinalI 
\ach permiti 
\akh permiti 
\acl permiti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl permite +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl permiti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl permite +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame permiti</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="33c873b3-faf8-465c-b4e8-6e43f42f0c4a" ownerguid="e54cd744-d106-4bcf-bd07-b8783c075c21"> -<ExampleWords> -<AUni ws="en">fashionable, trendy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who has fashionable things?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="33c8a279-f1c4-41ea-b4ad-75b85e8c2223"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">putsca</AUni> -<AUni ws="qvm-x-acl">putsca</AUni> -<AUni ws="qvm-x-akh">putska</AUni> -<AUni ws="qvm-x-akl">putska</AUni> -<AUni ws="qvm-x-ame">putska</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puchka</AUni> -<AUni ws="qvm-x-acl">*puchka</AUni> -<AUni ws="qvm-x-akh">*puchka</AUni> -<AUni ws="qvm-x-akl">*puchka</AUni> -<AUni ws="qvm-x-ame">*puchka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.962" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="14a2c5ac-6607-4d24-a049-d5e4fa49a395" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puchka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c8bc00e2-6b0d-48bd-9022-9c6b13040763" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="06d67b56-22bc-4e30-b45e-8f42db7b8174" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puchka 
\entryTyp root 
\gENG spin 
\gSPN hilar 
\e *puchka 
\c V2 
\ach putsca 
\akh putska 
\acl putsca 
\akl putska 
\ame putska</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="33cd3765-f1aa-4ee4-aeaa-f8493b7d589c" ownerguid="f56a2511-10cc-4829-940d-49051429bfba"> -<ExampleWords> -<AUni ws="en">dilute</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to making a liquid thinner?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="33ce4ed9-4642-42b1-829b-bbe1596ec327" ownerguid="abbec739-657c-4b04-9e4f-8dd9c2a1b43b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="33cec9cf-4d25-470a-880f-331f1a0c535e" ownerguid="321264e3-bd8d-4c08-895b-94f56a413b40"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="82e9c3df-e95c-44d6-998d-f3779aad6808" t="r" /> -</Morph> -<Msa> -<objsur guid="1b3c6562-1662-468e-b5c0-fcf36256167d" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="33d07b34-7dcd-4b80-91c7-31b34213c724" ownerguid="9d6126d3-6083-4451-8b5c-a28b09dfcad2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="0daa87e1-0842-4be2-9b40-aa852f6fb5d4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="33d07e4d-0cac-4b66-9fba-be1726620439" ownerguid="8acdd3de-23dc-4804-b133-6ab5fe55583f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="33d1a85d-ff32-4ab3-a9fc-2779022c0bac"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wamaya; wamaya:</AUni> -<AUni ws="qvm-x-acl">wamaya; wamaya:</AUni> -<AUni ws="qvm-x-akh">wamaya; wamaya:</AUni> -<AUni ws="qvm-x-akl">wamaya; wamaya:</AUni> -<AUni ws="qvm-x-ame">wamaya; wamaya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wamaya:</AUni> -<AUni ws="qvm-x-acl">*wamaya:</AUni> -<AUni ws="qvm-x-akh">*wamaya:</AUni> -<AUni ws="qvm-x-akl">*wamaya:</AUni> -<AUni ws="qvm-x-ame">*wamaya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.465" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0006063d-3d44-4a80-9927-68baac6b1342" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wamaya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b41d76cc-1c6c-4cbb-a7e5-da25cae7a096" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="72ba2c7e-e694-4e53-aedc-660a817e6995" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wamaya: 
\entryTyp root 
\gENG happy.to.see 
\gSPN anhelar.ver 
\e *wamaya: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach wamaya foreshortened 
\ach wamaya: 
\akh wamaya foreshortened 
\akh wamaya: 
\acl wamaya foreshortened 
\acl wamaya: 
\akl wamaya foreshortened 
\akl wamaya: 
\ame wamaya foreshortened 
\ame wamaya:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="33d461b9-896e-428f-a281-85052303463e" ownerguid="e4316953-e75a-41a4-96a3-fd2ca43906d9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="807e3b9d-8829-4534-ad91-2914fe0e7b96" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">order</AUni> -<AUni ws="es">órden</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="da4b1c8f-1d4e-44bc-a075-360d1525d581" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="33d60b1d-438b-4c7f-a4bb-9eb1e75a6b27" ownerguid="70953222-5bc5-4fa2-a85a-01827f7bc537"> -<ExampleWords> -<AUni ws="en">tell someone the way, give someone directions, show someone the way, direct</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What refer to telling someone the way?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="33d86ad9-8404-44fa-a89c-e4e01253f304"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">crucifica</AUni> -<AUni ws="qvm-x-acl">crucifica</AUni> -<AUni ws="qvm-x-akh">crucifica</AUni> -<AUni ws="qvm-x-akl">crucifica</AUni> -<AUni ws="qvm-x-ame">crucifica</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+crucificar.1</AUni> -<AUni ws="qvm-x-acl">+crucificar.1</AUni> -<AUni ws="qvm-x-akh">+crucificar.1</AUni> -<AUni ws="qvm-x-akl">+crucificar.1</AUni> -<AUni ws="qvm-x-ame">+crucificar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.223" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c8bd517d-479e-464b-99fd-a1f9fe33d330" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+crucificar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c46ce743-e121-4191-9a32-effb16364526" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d39c8243-5f4b-41af-9e8d-486ff7746a3b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +crucificar.1 
\entryTyp root 
\gENG crucify 
\gSPN crucificar 
\e +crucificar.1 
\c V2 
\ach crucifica 
\akh crucifica 
\acl crucifica 
\akl crucifica 
\ame crucifica</Run> -</AStr> -</Custom> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="33dcdba1-aa82-4097-bd0c-272315630142" ownerguid="b531b2f1-791f-4c7d-81e6-75560b715ef8" /> -<rt class="LexSense" guid="33e4c15f-49fb-439f-af59-3b2243ecac50" ownerguid="bc5e0227-243f-4347-bc02-775398459106"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">world</AUni> -<AUni ws="es">mundo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7a81e7a1-9cb6-45e3-9399-b25ad01a643d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="33e5bf1c-a8c0-4ac3-ac79-8db639a0f161" ownerguid="0e453182-6d1a-486e-abab-c7d4f35fc417"> -<Form> -<AUni ws="qvm-x-ach">wampu</AUni> -<AUni ws="qvm-x-acl">wampu; wampo</AUni> -<AUni ws="qvm-x-akh">wampu</AUni> -<AUni ws="qvm-x-akl">wampu; wampo</AUni> -<AUni ws="qvm-x-ame">wampu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="33e66099-515e-41f3-99a7-4201aff047c2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sagpi</AUni> -<AUni ws="qvm-x-acl">sagpi; sagpi; sagpe</AUni> -<AUni ws="qvm-x-akh">saqpi</AUni> -<AUni ws="qvm-x-akl">saqpi; saqpi; saqpe</AUni> -<AUni ws="qvm-x-ame">saqpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*saqpi</AUni> -<AUni ws="qvm-x-acl">*saqpi</AUni> -<AUni ws="qvm-x-akh">*saqpi</AUni> -<AUni ws="qvm-x-akl">*saqpi</AUni> -<AUni ws="qvm-x-ame">*saqpi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.449" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5d34fc3f-83f0-48f9-95fe-1b62c6ceb6c9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*saqpi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="96667e69-c6d7-4460-8073-fa2d94d0ce48" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2a306667-9c33-4209-9afa-f569e66255fa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *saqpi 
\entryTyp root 
\gENG rag 
\gSPN retazo 
\e *saqpi 
\c N0 
\mp +FinalI 
\ach sagpi 
\akh saqpi 
\acl sagpi / _# 
\acl sagpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sagpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl saqpi / _# 
\akl saqpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl saqpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame saqpi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="33e816d6-1e7b-4cf0-a6eb-cf2a4efada05" ownerguid="74586c4f-768f-4ae6-9864-d30ecee2a801"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="0b9e0b9d-95b5-4c1a-831f-9402be5465f6" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="c3b951ca-540d-4977-85a6-18dc65203287" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="33e82517-2fe3-468a-ab9c-7dba5274318d" ownerguid="56f5cbf7-5cc1-4ad6-9fc5-e8db18cb69d1"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="33ebc93c-1aad-414e-89c5-5dbdfd3fae7b" ownerguid="abed43e3-4ccc-47e4-be82-f025d2edf0d1"> -<Form> -<AUni ws="qvm-x-ach">ñutu</AUni> -<AUni ws="qvm-x-acl">ñutu; ñutu; ñuto</AUni> -<AUni ws="qvm-x-akh">ñutu</AUni> -<AUni ws="qvm-x-akl">ñutu; ñutu; ñuto</AUni> -<AUni ws="qvm-x-ame">ñutu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="33f1853a-cca8-4a19-9efa-fc9fd540e3ab" ownerguid="35cde277-d423-4d48-ba2d-7dd065577b1f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="33f53061-97dd-4ae8-a88c-47062f704bad" ownerguid="646dab64-5c2f-4f45-8e28-4d13437639d4"> -<ExampleWords> -<AUni ws="en">intimate, intimacy, close, deep, long-standing, old friend, improper</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe a friendship?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="33f69efa-6dbe-402d-afc9-76931f04c2c0" ownerguid="ac550d1f-ec74-46a8-bf81-7832ace533ee"> -<ExampleWords> -<AUni ws="en">popular, well-liked, be in favor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone that many people like?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="33f7b618-5308-408d-81be-fcb26473cd75" ownerguid="dd5d3ad7-9163-4276-a348-fecdd895bb37"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">thin</AUni> -<AUni ws="es">delgado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cb6d7a60-dba6-43b7-a5e8-c0cad18c84c9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="33fbe42e-485d-4e0d-83c8-531b7a47eb6f" ownerguid="22a800c3-f5dc-4b2b-9f1f-10b2333c333c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">which</AUni> -<AUni ws="es">cual</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e4a5be10-a274-4e9a-b2e6-40ea7358d842" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="33fc324a-0fcd-42a6-963f-dd9a6b839b1d" ownerguid="4177b91c-dc7b-4bcc-b8a1-32889406924e"> -<Form> -<AUni ws="qvm-x-ach">arenilla</AUni> -<AUni ws="qvm-x-acl">arenilla</AUni> -<AUni ws="qvm-x-akh">arenilla</AUni> -<AUni ws="qvm-x-akl">arenilla</AUni> -<AUni ws="qvm-x-ame">arenilla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="33fe7a8a-427d-46f8-916d-8c2ab202280b" ownerguid="6646f5bd-fbce-44b4-8f80-3dd989e53d4c"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="33ff6f42-16ee-49ee-ba6e-95eedb5b1d67" ownerguid="efbdc60d-47a8-4dbb-9da5-cc7a4894e935"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="33ffe68c-f92c-457b-a37c-9eccb07e4e91" ownerguid="0546585f-d317-4279-8c7b-9286a128ad2e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="3401c4bc-5366-4547-9686-9d2727c0d8b0" ownerguid="7496cea3-d239-4a1e-9121-cdbf98e3a4e9" /> -<rt class="WfiMorphBundle" guid="340482ed-82e5-42c0-af38-1a9267181c9d" ownerguid="202218a0-2594-4641-ae74-e961ceaabd60"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="34056dae-0880-43a3-b79b-4a6322ce5621" ownerguid="c1bb19fb-b8e4-4b92-afe3-296a0b05de46"> -<Form> -<AUni ws="qvm-x-ach">shimpi</AUni> -<AUni ws="qvm-x-acl">shimpi; shimpe</AUni> -<AUni ws="qvm-x-akh">shimpi</AUni> -<AUni ws="qvm-x-akl">shimpi; shimpe</AUni> -<AUni ws="qvm-x-ame">shimpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="34065c6e-7501-4f7e-8ce2-05fbe1e3aa08" ownerguid="3c051b0c-97a4-4680-b3ba-aa6357c46647"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Tsaymi Abrahamga chacranpa chaninta manashgannogla Hit runacunapa naupancho manashgannogla Efronta amänu pägargan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="340669ac-7888-4e57-b70a-c8a959b37e9e" ownerguid="c4fdb9ce-93cc-405b-b673-4058821bf794"> -<ExampleWords> -<AUni ws="en">timepiece, watch, clock, alarm clock, digital watch, analog watch, electric clock, sundial, pendulum, hourglass</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to machines for telling time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3406a2ad-775c-4046-97ce-56be7ff67627" ownerguid="55a7b809-4196-4c5a-a6d6-09b586ce71e7"> -<ExampleWords> -<AUni ws="en">outcast, pariah</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who has been ostracized?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="34082327-9615-4703-9817-d2ef3b93692d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">juclayla</AUni> -<AUni ws="qvm-x-acl">juclayla</AUni> -<AUni ws="qvm-x-akh">juklayla</AUni> -<AUni ws="qvm-x-akl">juklayla</AUni> -<AUni ws="qvm-x-ame">huklayla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hukllaylla</AUni> -<AUni ws="qvm-x-acl">*hukllaylla</AUni> -<AUni ws="qvm-x-akh">*hukllaylla</AUni> -<AUni ws="qvm-x-akl">*hukllaylla</AUni> -<AUni ws="qvm-x-ame">*hukllaylla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.751" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1cd588d2-a33c-401e-9902-7313a2061873" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hukllaylla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="41b04248-c472-404e-90cc-f877ad3eead9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b76c5002-f55a-4871-82db-18d65707232b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hukllaylla 
\entryTyp root 
\gENG only.one 
\gSPN solo.uno 
\e *hukllaylla 
\c N0 
\ach juclayla 
\akh juklayla 
\acl juclayla 
\akl juklayla 
\ame huklayla</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="34095b82-e3c7-4466-8172-43b3483c3309" ownerguid="95a8d932-9554-439f-afb5-ab158f2eed96"> -<ExampleWords> -<AUni ws="en">alternate, repeat, cycle, rotate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to things alternating?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="340a633c-324e-43af-a843-c6032a28d697"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aywa</AUni> -<AUni ws="qvm-x-acl">aywa</AUni> -<AUni ws="qvm-x-akh">aywa</AUni> -<AUni ws="qvm-x-akl">aywa</AUni> -<AUni ws="qvm-x-ame">aywa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aywa</AUni> -<AUni ws="qvm-x-acl">*aywa</AUni> -<AUni ws="qvm-x-akh">*aywa</AUni> -<AUni ws="qvm-x-akl">*aywa</AUni> -<AUni ws="qvm-x-ame">*aywa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.910" /> -<DateModified val="2022-10-17 13:27:23.321" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aywa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ed102c60-ed6d-498f-b2c4-a195d53a84e2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aywa 
\entryTyp root 
\gENG go 
\gSPN ir 
\e *aywa 
\c V1 
\ach aywa 
\akh aywa 
\acl aywa 
\akl aywa 
\ame aywa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3412d08e-fffb-4e58-b0e1-429e57e2e318" ownerguid="99b5b80a-a2d6-4820-adfc-1da72528c272"> -<ExampleWords> -<AUni ws="en">corresponding, equivalent, counterpart, opposite number</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words indicate that something in one group is the same in some way as something in another group?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="34149da1-be39-4f73-93cb-146c109f3ff1" ownerguid="3d5d93ce-00e0-46ff-b220-553c12c38381"> -<ExampleWords> -<AUni ws="en">menstruate, period, having (your) period, time of month, menstruation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the time of bleeding?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3418c7c9-f27e-4dc9-91bf-30c36b2bbddf" ownerguid="d7d0ab6d-4b75-4800-8bc8-77eb50f6bc66"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="341926ec-14e9-405b-82d7-e40dc0d3bd24"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">albañil</AUni> -<AUni ws="qvm-x-acl">albañil; albañil; albañel</AUni> -<AUni ws="qvm-x-akh">albañil</AUni> -<AUni ws="qvm-x-akl">albañil; albañil; albañel</AUni> -<AUni ws="qvm-x-ame">albañil</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+albañil</AUni> -<AUni ws="qvm-x-acl">+albañil</AUni> -<AUni ws="qvm-x-akh">+albañil</AUni> -<AUni ws="qvm-x-akl">+albañil</AUni> -<AUni ws="qvm-x-ame">+albañil</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.697" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="55df9f75-ac1f-4131-b78a-f719a48d3418" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+albañil</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0dae55a1-cee7-4026-bead-5a70bfea0c42" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5e86186f-b890-4790-96a7-ce2b31c523cd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +albañil 
\entryTyp root 
\gENG contractor 
\gSPN albañil 
\e +albañil 
\c N0 
\mp +FinalC 
\ach albañil 
\akh albañil 
\acl albañil / _# 
\acl albañil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl albañel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl albañil / _# 
\akl albañil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl albañel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame albañil</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="34196164-98c9-4762-b40e-2786a0ce33c3" ownerguid="ecaff061-6a12-4ad6-b818-9b140a9a3e11"> -<ExampleWords> -<AUni ws="en">design</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the way something is designed?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="341a2361-d63c-44a6-bb6e-0d6d9ecb2b76" ownerguid="bfbfb9b5-363d-4767-a5cb-1b11b348efd6"> -<ExampleWords> -<AUni ws="en">none, not any, no, not one, not a, nothing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to not any of a number of things?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="341d5db4-d517-4c25-97d7-704820bf1d50"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">documentu; documento</AUni> -<AUni ws="qvm-x-acl">documentu; documentu; documento</AUni> -<AUni ws="qvm-x-akh">documentu; documento</AUni> -<AUni ws="qvm-x-akl">documentu; documentu; documento</AUni> -<AUni ws="qvm-x-ame">documentu; documento</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+documento</AUni> -<AUni ws="qvm-x-acl">+documento</AUni> -<AUni ws="qvm-x-akh">+documento</AUni> -<AUni ws="qvm-x-akl">+documento</AUni> -<AUni ws="qvm-x-ame">+documento</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.435" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6392e4c0-2fe4-4dac-9609-144539bc81e7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+documento</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="03a14a7b-b3ff-440f-910b-a22bcd1b4415" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="966028ff-8e70-4fe0-963e-377a12d8be82" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +documento 
\entryTyp root 
\gENG 
\gSPN 
\e +documento 
\c N0 
\ach documentu / ~_# 
\ach documento / _# 
\akh documentu / ~_# 
\akh documento / _# 
\acl documentu / ~_# 
\acl documentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl documento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl documentu / ~_# 
\akl documentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl documento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame documentu / ~_# 
\ame documento / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="341e674e-54f2-4df0-9c39-66ddd5aa2c61" ownerguid="f99af8a2-0082-4adc-9fff-47ba21d7ef83"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 38.30 ¿Pitag lamar yacuta tsururötsin?</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="341fe30b-d319-4cbc-9824-f2629464c7ad" ownerguid="744d1402-05f5-4491-9c15-a5af03595edb"> -<ExampleWords> -<AUni ws="en">sin (v), behave badly, misbehave, do wrong, be up to something, get into, indulge in, commit, stoop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to doing something bad?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="3420b36a-a033-4af9-a8c4-53f8221ee56e" ownerguid="4f485a60-e3ba-42e6-9d59-185305c5d1f2"> -<Abbreviation> -<AUni ws="en">8.5.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating a direction away from something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Away from</AUni> -</Name> -<Questions> -<objsur guid="ff168a35-d3fa-440e-a8f1-547265c8772f" t="o" /> -<objsur guid="a0a829b4-b930-44e1-a4f0-f892c2a5fe00" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="3421189c-0b52-4d4e-aac3-252bcac4544b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">langu</AUni> -<AUni ws="qvm-x-acl">langu; lango</AUni> -<AUni ws="qvm-x-akh">lanqu</AUni> -<AUni ws="qvm-x-akl">lanqu; lanqo</AUni> -<AUni ws="qvm-x-ame">lanqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llanqu</AUni> -<AUni ws="qvm-x-acl">*llanqu</AUni> -<AUni ws="qvm-x-akh">*llanqu</AUni> -<AUni ws="qvm-x-akl">*llanqu</AUni> -<AUni ws="qvm-x-ame">*llanqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.144" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fcb0151d-07d3-4220-a0db-5b89d311704e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llanqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cf1914a5-dd75-4708-9baa-b70e40cf3fca" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ecc8923b-0f94-43c2-829c-8bc213d2666c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llanqu 
\entryTyp root 
\gENG 
\gSPN aplastar.con.pie 
\e *llanqu 
\c V1 
\ach langu 
\akh lanqu 
\acl langu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lango +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lanqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lanqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lanqu 
\i HAB 3.12 Castigarga nacioncunatapis langurmi ushanqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="34242f55-fb02-4d57-9e9d-e4f6e897523a" ownerguid="878a313b-a201-444e-8bdb-67048d60c63e"> -<ExampleWords> -<AUni ws="en">ignore, disregard, not take any notice of, not listen to, fall on deaf ears</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to ignoring something someone says to you?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="34251e95-3878-4360-8a1f-df247959a619" ownerguid="71708d92-1d5b-4b5a-af2f-ba11a0941d11"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="3427c125-0765-42ea-afc9-ff8e51b7e74e" ownerguid="66ea9520-f017-4c7e-ad86-88dbd17cdc36"> -<Form> -<AUni ws="qvm-x-ach">logla</AUni> -<AUni ws="qvm-x-acl">logla</AUni> -<AUni ws="qvm-x-akh">loqla</AUni> -<AUni ws="qvm-x-akl">loqla</AUni> -<AUni ws="qvm-x-ame">luqla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="3428d24a-3bf7-40ad-84c4-5d5372be9647"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tagcu</AUni> -<AUni ws="qvm-x-acl">tagcu; tagcu; tagco</AUni> -<AUni ws="qvm-x-akh">taqku</AUni> -<AUni ws="qvm-x-akl">taqku; taqku; taqko</AUni> -<AUni ws="qvm-x-ame">taqku</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.538" /> -<DateModified val="2022-10-15 16:7:39.394" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cfd7bb61-262b-4212-85b0-698ad7c2a51f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">NEGSTR</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f93a6705-e8f0-4c6d-a54c-bed2cba01ec5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="86c79098-8e0d-4914-abc0-e22ad95a73fb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx NEGSTR 
\entryTyp suffix 
\gENG 
\gSPN NEGFT 
\e NEGSTR 
\c V0/V0 N0/N0 
\ach tagcu 
\akh taqku 
\acl tagcu / _# 
\acl tagcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tagco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl taqku / _# 
\akl taqku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl taqko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame taqku 
\o 220 
\mcc NEGSTR / ~_ NOW</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="342a2fee-0577-4e7f-b2e8-b44afa961ba3" ownerguid="43c44a23-e71b-4ff3-b208-f72d89c5b577"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">conscience</AUni> -<AUni ws="es">conciencia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="93ac05e1-c8f7-4023-a911-36c9304994ad" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="342e7ee2-c751-4b67-9d9b-137d2100c2f6" ownerguid="c79d49f1-74ec-4dba-a5aa-5e861af63d05"> -<ExampleWords> -<AUni ws="en">shift the blame, pass the buck</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to blaming someone else for something that is your fault?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="342fb76c-fcd7-4975-af0b-eb6c0950bbf3" ownerguid="f0306842-35a9-4b48-82ca-be753b28d92d"> -<Form> -<AUni ws="qvm-x-ach">shalu</AUni> -<AUni ws="qvm-x-acl">shalu; shalo</AUni> -<AUni ws="qvm-x-akh">shalu</AUni> -<AUni ws="qvm-x-akl">shalu; shalo</AUni> -<AUni ws="qvm-x-ame">shalu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="3430f8ab-f9ad-47af-a0f0-315210361573"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsi</AUni> -<AUni ws="qvm-x-acl">tsi; tse</AUni> -<AUni ws="qvm-x-akh">tsi</AUni> -<AUni ws="qvm-x-akl">tsi; tse</AUni> -<AUni ws="qvm-x-ame">tsi</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.495" /> -<DateModified val="2022-10-20 21:46:48.887" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">CAUS</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="o" /> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2801e582-fd5f-46da-b446-4dd5882c9bda" t="o" /> -<objsur guid="80f44d0c-72fe-4b3c-b505-6b06de3ee220" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx CAUS 
\entryTyp suffix 
\gENG CAUS 
\gSPN CAUS 
\e CAUS 
\c V1/V2 V2/V2 
\o 000 
\mp +mlowers 
\ach tsi 
\akh tsi 
\acl tsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsi 
\mp +FinalI 
\mcc CAUS / PRF ~_ 
\mcc CAUS / ~_... CAUS</Run> -</AStr> -</Custom> -</rt> -<rt class="MoMorphType" guid="3433683d-08a9-4bae-ae53-2a7798f64068" ownerguid="d7f713d8-e8cf-11d3-9764-00c04f186933"> -<Abbreviation> -<AUni ws="en">sfxnfx</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">A suffixing interfix is a suffix that can occur between two roots or stems.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">suffixing interfix</AUni> -</Name> -<Prefix> -<Uni>-</Uni> -</Prefix> -<SecondaryOrder val="0" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="34339e50-2a59-492b-8437-683e834db4a1" ownerguid="5e8f97eb-5732-4ef2-bec0-bfe818b9d41c"> -<Form> -<AUni ws="qvm-x-ach">jutsa</AUni> -<AUni ws="qvm-x-acl">jutsa</AUni> -<AUni ws="qvm-x-akh">jutsa</AUni> -<AUni ws="qvm-x-akl">jutsa</AUni> -<AUni ws="qvm-x-ame">hutsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="34353638-fce9-46ba-849d-41c822927b95"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Tsaycho</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="3435baa9-afe0-441c-87a7-85b0e8f2bc3f" ownerguid="2ed6281d-4e4f-43a1-b2aa-964ed5af3674"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="3435ea42-8af7-4c31-b80b-95c9deafa691" ownerguid="9f1d1b75-c36d-418c-822f-8408eb5a1500"> -<Form> -<AUni ws="qvm-x-ach">diamanti; diamante</AUni> -<AUni ws="qvm-x-acl">diamanti; diamanti; diamante</AUni> -<AUni ws="qvm-x-akh">diamanti; diamante</AUni> -<AUni ws="qvm-x-akl">diamanti; diamanti; diamante</AUni> -<AUni ws="qvm-x-ame">diamanti; diamante</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="343b13da-73e9-45dc-a051-0e0efde14df7" ownerguid="9b0fef63-5935-447d-801a-bb02dd6212bb"> -<ExampleWords> -<AUni ws="en">idolize, revere, worship, put someone on a pedestal, hero-worship</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to admiring someone very much?</AUni> -</Question> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="343b8dc5-eec2-4cec-b5df-a2909c950e5c" ownerguid="84c0d211-d8b5-43db-89ba-207123efad9e" /> -<rt class="MoStemAllomorph" guid="343e1439-f709-4633-86fa-1b6dd2c90bb4" ownerguid="e91f8610-c6b2-4c1c-a650-a9e008cbed83"> -<Form> -<AUni ws="qvm-x-ach">muerti; muerte</AUni> -<AUni ws="qvm-x-acl">muerti; muerti; muerte</AUni> -<AUni ws="qvm-x-akh">muerti; muerte</AUni> -<AUni ws="qvm-x-akl">muerti; muerti; muerte</AUni> -<AUni ws="qvm-x-ame">muerti; muerte</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="34410c40-5ff9-49f8-8d15-aa263cb28f68" ownerguid="50eb32a2-6dbb-4b7c-b370-aacdcfeaf5fc"> -<ExampleWords> -<AUni ws="en">like, enjoy, love, be fond of, get a lot of pleasure out of, savor, with relish, exhilarate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to enjoying something?</AUni> -</Question> -</rt> -<rt class="MoInflAffixSlot" guid="34426d22-8e6e-44f9-9308-73fe011a7617" ownerguid="86ff66f6-0774-407a-a0dc-3eeaf873daf7"> -<Name> -<AUni ws="en">object</AUni> -</Name> -<Optional val="True" /> -</rt> -<rt class="CmSemanticDomain" guid="3445e61b-61a3-4ede-93f5-402ebe9ca51c" ownerguid="5ea9301a-9906-4e81-97cf-48ee95a54c63"> -<Abbreviation> -<AUni ws="en">3.3.3.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.121" /> -<DateModified val="2022-9-23 16:55:8.121" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to warning someone--saying something to someone so that he will not do something bad.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33U' Warn</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Warn</AUni> -</Name> -<Questions> -<objsur guid="db7fe3a0-7a13-4809-acde-13be0a41414c" t="o" /> -<objsur guid="8b06e055-3702-4e0c-bba9-33584b1dec4d" t="o" /> -<objsur guid="dcd3f0fa-4ffa-4953-a567-48b72debd84c" t="o" /> -<objsur guid="5a5123a2-da1a-4ea1-b818-b80c3e3da995" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="3448a62a-7774-463d-a8cd-af8cfa753338" ownerguid="ab80b556-2c7d-4e75-a58d-f5bb58b2feef"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="fdf95697-78c5-43fb-b6af-ee8c48fa12e8" t="o" /> -<objsur guid="6534be2f-bea5-4200-a1aa-3af64aa53114" t="o" /> -<objsur guid="6d3735d2-ee99-4ced-b8bd-5b02678b8851" t="o" /> -<objsur guid="012d3508-7a6f-4dec-a3bf-ba19fd580a89" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="344d884c-3580-4482-9e52-2089d94bb72a" ownerguid="f735b05b-c9bc-45cb-a47a-902193a5e236"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="4a1f3e62-a777-4126-8e47-8856e88c9b62" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="73e5fe08-dee8-4478-b626-587ce0c1bf1f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="PunctuationForm" guid="344dfa42-5710-4f00-b9b1-f552bbce2b13"> -<Form> -<Str> -<Run ws="en">an</Run> -</Str> -</Form> -</rt> -<rt class="LexEntry" guid="344e6d59-ca3d-4ba7-ac73-4241f61160f9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fle:cha</AUni> -<AUni ws="qvm-x-acl">fle:cha</AUni> -<AUni ws="qvm-x-akh">fle:cha</AUni> -<AUni ws="qvm-x-akl">fle:cha</AUni> -<AUni ws="qvm-x-ame">fle:cha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+flechar</AUni> -<AUni ws="qvm-x-acl">+flechar</AUni> -<AUni ws="qvm-x-akh">+flechar</AUni> -<AUni ws="qvm-x-akl">+flechar</AUni> -<AUni ws="qvm-x-ame">+flechar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.568" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="955689d0-6139-4135-a7fa-ac1d05ae7a0f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+flechar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="829a8f59-61d2-42c7-8ecc-20f495a9fccc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0810c72f-0fbf-492c-87df-a9184202b31b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +flechar 
\entryTyp root 
\gENG shoot.arrow 
\gSPN flechar 
\e +flechar 
\c V2 
\ach fle:cha 
\akh fle:cha 
\acl fle:cha 
\akl fle:cha 
\ame fle:cha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="344f3fe0-ec4e-4396-a1bd-7a0eeda9e84b" ownerguid="99a01c0d-9892-49a9-bfef-c779a2c3eab9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="68bde32e-13f9-4d93-b2c6-4c369c4ae4d3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3458fc8d-0772-4540-99b8-6e8844da7e7c" ownerguid="bdaecf2f-d0fa-49f7-891e-bcb0a31ae630"> -<ExampleWords> -<AUni ws="en">next, following, later, subsequent, succeeding, ensuing, after, future, consequent, latter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that comes after something else?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="345aa09b-4b52-4fa7-b71e-179120466169" ownerguid="2f151c35-72e1-4665-bc05-6fc70a3ecff2"> -<ExampleWords> -<AUni ws="en">eyesore, monstrosity, blot on the landscape</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something that is ugly?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="345be257-3301-42e5-aba4-d492c4cfde6a" ownerguid="ccbbd16f-58c5-45c1-bfff-1fba64d9740e"> -<ExampleWords> -<AUni ws="en">try, attempt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(19) What words are used to indicate that someone is attempting to do something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="345be7b1-cfd5-456f-b480-6f799f49f8b1" ownerguid="663e6f89-77f0-473c-997e-e54f26d8491b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="345c63cc-d055-4377-8bd5-c20214c47d9d" ownerguid="65429919-05cf-4261-8822-c821702f636f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="345d9bac-97bc-4484-9adc-f307565c365d" ownerguid="320cf7d7-ddc6-4226-8900-b23cc5256217"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="345e019f-87d2-415d-ba37-9fb85460f7e1" ownerguid="adde4a66-9040-47a9-91ab-327934a2e97e"> -<Abbreviation> -<AUni ws="en">6.6.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.468" /> -<DateModified val="2022-9-23 16:55:8.468" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to lumbering--cutting down trees and cutting them up.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Lumbering</AUni> -</Name> -<OcmCodes> -<Uni>313 Lumbering</Uni> -</OcmCodes> -<Questions> -<objsur guid="9a5d153a-c42a-43ca-83de-bb0c9129b54e" t="o" /> -<objsur guid="b1871824-6cc4-414e-9974-e890a07f8757" t="o" /> -<objsur guid="f2840096-a3a4-46bc-a78a-c913a18e53ce" t="o" /> -<objsur guid="6699f3bd-70b6-4a7e-82bb-26ddc297471d" t="o" /> -<objsur guid="7579afad-3713-4a0d-b115-5bb0382a2180" t="o" /> -<objsur guid="ea6b53be-c0c4-499c-b920-8d88b0e7c6e8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="345e967a-7261-49d0-8fe4-7d529c34ea95" ownerguid="62352a5a-c18b-4ffe-acdd-75b7b6afff6b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">encargar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="230fd58e-05b8-49dd-a730-e87856df4818" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="346330ef-c52e-496b-ab7d-cbf55e7928b1" ownerguid="d66a286d-698f-4879-a57f-6674a9e685a6"> -<Form> -<AUni ws="qvm-x-ach">enlaja</AUni> -<AUni ws="qvm-x-acl">enlaja</AUni> -<AUni ws="qvm-x-akh">enlaja</AUni> -<AUni ws="qvm-x-akl">enlaja</AUni> -<AUni ws="qvm-x-ame">enlaja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="346470e5-8576-4649-ac52-bbda074b73d4" ownerguid="f6df56d5-05df-40f4-9c66-8042b406f68d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">la</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">la</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">la</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">la</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">la</Run> -</AStr> -</Form> -</rt> -<rt class="CmDomainQ" guid="346bfb5d-92ea-4da5-8a92-78172b0a2b1d" ownerguid="23b1a6b4-8d91-425c-b8c2-52d06b1c1d23"> -<ExampleWords> -<AUni ws="en">burst, break open</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a container like a bag, bottle, or bubble breaking because there was too much inside?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="346c29e0-a7fe-4b47-b7f8-35cd5b35f4d9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">forsa</AUni> -<AUni ws="qvm-x-acl">forsa</AUni> -<AUni ws="qvm-x-akh">forsa</AUni> -<AUni ws="qvm-x-akl">forsa</AUni> -<AUni ws="qvm-x-ame">forsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+esforzar</AUni> -<AUni ws="qvm-x-acl">+esforzar</AUni> -<AUni ws="qvm-x-akh">+esforzar</AUni> -<AUni ws="qvm-x-akl">+esforzar</AUni> -<AUni ws="qvm-x-ame">+esforzar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.495" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a88c03b9-3080-437f-a1b6-d489ce3d6f07" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+esforzar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b5b16ddc-27b6-4f4c-be52-b965019a5ed7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3c7ce2cc-5937-4e4f-9bf2-9e1c4348acdf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +esforzar 
\entryTyp root 
\gENG exert 
\gSPN esforzar 
\e +esforzar 
\c V2 
\ach forsa 
\akh forsa 
\acl forsa 
\akl forsa 
\ame forsa</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="346d709b-28ea-4da0-aeab-de4922d63fe9" ownerguid="52972973-4858-4e2b-8ddb-097b56612c1d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -</rt> -<rt class="StTxtPara" guid="346e0eef-6251-4263-895b-0457fc7c3c96" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">rikaptiki. </Run> -<Run ws="en">\tr < V2 *rika > ADVDS 2P</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="a9174308-3b52-438f-b333-c29be9012c1d" t="o" /> -<objsur guid="d7adca64-02e0-4963-9e73-ab438baedad4" t="o" /> -</Segments> -</rt> -<rt class="LexSense" guid="346f0b0e-3eda-4894-adb4-cb5a664c52cf" ownerguid="95bd1b8a-6f27-4b8e-90dd-2c4a489ea4cd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">food</AUni> -<AUni ws="es">comida</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8980c228-838b-41d3-bcc6-78bdd2757c99" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="347214bf-e07d-4cc8-b9f1-fd2ebf3814e5" ownerguid="22a800c3-f5dc-4b2b-9f1f-10b2333c333c"> -<Form> -<AUni ws="qvm-x-ach">maygani</AUni> -<AUni ws="qvm-x-acl">maygani; maygani; maygane</AUni> -<AUni ws="qvm-x-akh">mayqani</AUni> -<AUni ws="qvm-x-akl">mayqani; mayqani; mayqane</AUni> -<AUni ws="qvm-x-ame">mayqani</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="34729d66-9399-41a5-98eb-e34afcca4700" ownerguid="6fb1d03c-b0fe-49b7-a473-168f12a54a36"> -<ExampleWords> -<AUni ws="en">be behind with, overdue, be in arrears</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to being late to pay back a loan?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="347763dc-8b04-4cc3-952e-bc6be7144f08" ownerguid="fe58ae61-ab0b-43a4-86fb-d9aedd199932"> -<ExampleWords> -<AUni ws="en">mixer, blender, food processor, eggbeater</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What tools and machines are used to mix things?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3477e27b-8396-42eb-ade4-2c1c2423e05c" ownerguid="805612cb-6296-434b-8ca1-14ff9ed0a2a1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3477f468-e8e2-4771-9203-9c6bcd4782d8" ownerguid="1b73b2bf-9582-4f8a-822a-e0d020272c7c"> -<ExampleWords> -<AUni ws="en">lag behind, fall behind, straggle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to moving slower than the person you are following?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="347a550e-3c34-494a-b7eb-693cc9e9bb9d" ownerguid="fadc0a78-523b-4977-a78a-aecf75c90c5e"> -<Form> -<AUni ws="qvm-x-ach">walca; walcä</AUni> -<AUni ws="qvm-x-acl">walca; walcä</AUni> -<AUni ws="qvm-x-akh">walka; walkä</AUni> -<AUni ws="qvm-x-akl">walka; walkä</AUni> -<AUni ws="qvm-x-ame">walka; walkä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="347f4844-5b46-4edf-885f-2c2b73dfffd1" ownerguid="f80c6f32-48c4-4d25-97cf-d1a665635b12"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3480218a-7fd8-44c9-b6c6-cf76b1017c33" ownerguid="b3be00a9-41a4-42ae-ba51-320b5000a563"> -<ExampleWords> -<AUni ws="en">burrow, den, foxhole, lair</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a hole made by an animal?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="348188ea-62fe-45d9-876f-33d3d33c1a55" ownerguid="ac527685-f31d-42f3-81bd-97221a01c7ef"> -<ExampleWords> -<AUni ws="en">archetype, epitome, hero, ideal, paragon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the best pattern or example of something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3485b6a2-2d95-4a1a-99fe-3c64b221bad2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuentaste:ra</AUni> -<AUni ws="qvm-x-acl">cuentaste:ra</AUni> -<AUni ws="qvm-x-akh">cuentaste:ra</AUni> -<AUni ws="qvm-x-akl">cuentaste:ra</AUni> -<AUni ws="qvm-x-ame">cuentaste:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuentastera</AUni> -<AUni ws="qvm-x-acl">+cuentastera</AUni> -<AUni ws="qvm-x-akh">+cuentastera</AUni> -<AUni ws="qvm-x-akl">+cuentastera</AUni> -<AUni ws="qvm-x-ame">+cuentastera</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.242" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="77f244e6-2404-4aa7-87d2-1bc307d2a499" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuentastera</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6d633df3-74b7-4087-92e5-95ff8214325f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b8ba0162-1a22-40e5-8df7-64ce4cfd78cc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuentastera 
\entryTyp root 
\gENG gossiper 
\gSPN chismoso 
\e +cuentastera 
\c N0 
\ach cuentaste:ra 
\akh cuentaste:ra 
\acl cuentaste:ra 
\akl cuentaste:ra 
\ame cuentaste:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3489f816-80dd-4c46-a8d0-f343152d522c" ownerguid="f29dccae-1654-4eb7-8aae-04f7df4fe90c"> -<ExampleWords> -<AUni ws="en">right, proper, applicable, apposite, apropos, becoming, befitting, correspond, correspondent, corresponding, decent, due, expected, felicitous, germane, meet, opportune, pertinent, pleasing, principled, properly, right-minded, rightful, smart, suitable, suited, timely, well, well-timed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is proper?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="348a9784-be12-457f-8957-952190a70c08" ownerguid="cbc24a98-1c64-467e-98aa-251a28e4c0b8"> -<ExampleWords> -<AUni ws="en">diaper, nappies</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What things are used for babies?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="348aec66-32c6-488c-b9cb-d23010b43ee3" ownerguid="4e795972-eb00-48c5-8084-a264092d0851" /> -<rt class="CmDomainQ" guid="348c332c-e095-4f8f-8cf3-626b68acb5e9" ownerguid="da39c0d9-a5c1-4f10-bd3b-4e988abcab5a"> -<ExampleWords> -<AUni ws="en">gnaw at you</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to feeling sorry for a long time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="348e576b-d9a5-46a2-ab8d-f411ca9ed5ce" ownerguid="79f3b53a-eb56-4188-87f8-48317f76e7ce"> -<ExampleWords> -<AUni ws="en">ascetic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who denies himself for religious purposes?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="349094ad-c941-4396-be13-88edf6565d94" ownerguid="2594fe01-4d20-4a20-b093-2df70bced18f"> -<ExampleWords> -<AUni ws="en">elastic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that can be stretched?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="349937e3-a2fd-41f8-b7c4-bd6fa106add4" ownerguid="b4aa4bbd-8abf-4503-96e4-05c75efd23d5"> -<Abbreviation> -<AUni ws="en">1.1.3.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.932" /> -<DateModified val="2022-9-23 16:55:7.932" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to floods.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Flood</AUni> -</Name> -<Questions> -<objsur guid="84f66b44-9e2b-40dc-b424-054809b58c37" t="o" /> -<objsur guid="3ca98e61-5eaf-44ad-a8e1-7231a54c2912" t="o" /> -<objsur guid="adb8cc38-5c13-4a0b-8a62-4ebdc86c1ee3" t="o" /> -<objsur guid="d5c61719-6b48-4ead-830d-e058b0202731" t="o" /> -<objsur guid="5c142d53-8324-4a8c-b809-95af2001b9a6" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="4153416a-784d-4f7c-a664-2640f7979a14" t="r" /> -<objsur guid="bfa3be74-0390-4e2e-bdb7-ed41eb67e4f1" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="349a9fdb-707c-4030-8511-514d65f01d89" ownerguid="dae490b0-c4a6-48a5-bcd0-7c9b25bf7554"> -<Form> -<AUni ws="qvm-x-ach">marcu</AUni> -<AUni ws="qvm-x-acl">marcu; marcu; marco</AUni> -<AUni ws="qvm-x-akh">marcu</AUni> -<AUni ws="qvm-x-akl">marcu; marcu; marco</AUni> -<AUni ws="qvm-x-ame">marcu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="349f0278-7998-422a-9c3b-6053989cbb20" ownerguid="b32a39c4-43ff-4522-aed0-b2d5b8ad7157"> -<Abbreviation> -<AUni ws="en">9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.678" /> -<DateModified val="2022-9-23 16:55:8.678" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for technical linguistic terms that refer to grammatical words and constructions. Most languages have few if any words in this domain.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Grammar</AUni> -</Name> -<Questions> -<objsur guid="22cb156e-420a-4b73-bbe9-5bd9d0417f3b" t="o" /> -<objsur guid="05357446-f303-470c-b777-3c0d693469ab" t="o" /> -<objsur guid="1d6557e6-6425-4e6d-adfe-275702545c8b" t="o" /> -<objsur guid="95a4990a-80b3-44fe-8f91-6110305da460" t="o" /> -<objsur guid="e2d971fd-a0d2-41aa-a5d0-a44f38c2906b" t="o" /> -<objsur guid="7deedb2c-ed66-4d41-b35f-b34db16e99a8" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="29a8ebbe-ebc4-4295-b6af-84331d019361" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="3a2c0773-6b3e-4f8b-909d-c8f84d66d4f4" t="o" /> -<objsur guid="af0909a5-928a-4421-baaa-f33b14302714" t="o" /> -<objsur guid="5422d4ba-8af4-4767-912e-43b60ef28eab" t="o" /> -<objsur guid="61a28bdc-c05c-49d8-b47e-d54a9082156c" t="o" /> -<objsur guid="aab82dc7-de9f-44b3-845e-0c926f47cfb6" t="o" /> -<objsur guid="7f7fc197-5064-43c0-af51-2919fb7355c9" t="o" /> -<objsur guid="5b7666bd-c6c1-45e7-aa2e-1799fcb16d97" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="34a00b5a-dd25-4b0e-96d4-0f7cad0a9ffd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">salu:du</AUni> -<AUni ws="qvm-x-acl">salu:du; salu:du; salu:do</AUni> -<AUni ws="qvm-x-akh">salu:du</AUni> -<AUni ws="qvm-x-akl">salu:du; salu:du; salu:do</AUni> -<AUni ws="qvm-x-ame">salu:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+saludo</AUni> -<AUni ws="qvm-x-acl">+saludo</AUni> -<AUni ws="qvm-x-akh">+saludo</AUni> -<AUni ws="qvm-x-akl">+saludo</AUni> -<AUni ws="qvm-x-ame">+saludo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.437" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ca43d0e5-7f0b-4a34-b512-ef174cfe5b3d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+saludo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8f60c7e1-b7c1-4867-8972-b11d3a663867" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d2336d12-f4f4-4048-946c-7c9c843bbabf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +saludo 
\entryTyp root 
\gENG greeting 
\gSPN saludos 
\e +saludo 
\c N0 
\ach salu:du 
\akh salu:du 
\acl salu:du / _# 
\acl salu:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl salu:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl salu:du / _# 
\akl salu:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl salu:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame salu:du</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="34a02a17-23fb-4260-9f97-c125842a3594" ownerguid="35e61ec4-0542-4583-b5da-0aa5e31a35aa"> -<Abbreviation> -<AUni ws="en">2.6.3.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a birth ceremony.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Birth ceremony</AUni> -</Name> -<OcmCodes> -<Uni>852 Ceremonial During Infancy and Childhood; 851 Social Placement</Uni> -</OcmCodes> -<Questions> -<objsur guid="25046e40-4301-4e9b-add0-fe806d439632" t="o" /> -<objsur guid="b0f83371-2b20-49d0-bd16-6126cb869c0c" t="o" /> -<objsur guid="b3cc8e6a-89c9-42ff-a67a-6ee781bff720" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="34a64d1e-26fd-450d-9bc3-3921f3666e21" ownerguid="effc49dd-6322-4302-899c-4cf540f0e2e4"> -<ExampleWords> -<AUni ws="en">main dish, side dish, meat dish, casserole, vegetable, staple, bread, soup, salad, fruit, condiment, dessert, candy, cookie, sweets, savories, snack</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a major class of prepared food?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="34a7ddc7-2c9b-43ba-b96e-e53c352806e1" ownerguid="c8c74ec6-3f7a-4b45-b0e9-399b97c4a800"> -<ExampleWords> -<AUni ws="en">free, open, open-ended, unrestricted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe an activity that is free?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="34acb4ae-05b2-4099-99f4-daea5a4675cc" ownerguid="100e62a6-b6f4-4b30-b317-0517d6b102a9"> -<ExampleWords> -<AUni ws="en">shyness, inhibition</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of shyness?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="34ba4ef1-2ded-4424-b628-d4ffcab07d72" ownerguid="c2616b18-174b-4e33-b93b-0dbe097ccd3e"> -<Form> -<AUni ws="qvm-x-ach">pächuy</AUni> -<AUni ws="qvm-x-acl">pächuy</AUni> -<AUni ws="qvm-x-akh">pächuy</AUni> -<AUni ws="qvm-x-akl">pächuy</AUni> -<AUni ws="qvm-x-ame">pächuy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="34bae5cb-6584-4b07-8ea2-c108c180326f" ownerguid="1fda68d4-5941-4695-b656-090d603a3344"> -<ExampleWords> -<AUni ws="en">food, meal, dish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the thing that is cooked?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="34bebc99-a603-457b-ae51-3e6730e20da9" ownerguid="18561033-3136-46f7-aabd-3efff1a05172"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">frying.pan</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="211ed6f3-615a-426a-b8aa-4282cf8dc8ac" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="34c0f342-861b-437a-ae74-cacd84542924" ownerguid="e949f393-2a5b-4792-af8f-75138322ceee"> -<ExampleWords> -<AUni ws="en">strong, powerful, muscular, well-built, strapping, steely</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a person who is strong?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="34c2eb75-4aa2-47ab-8d67-4555a82f6f5d" ownerguid="f0bf0322-8c8d-4f7b-a98a-778236426b21" /> -<rt class="CmSemanticDomain" guid="34c3edad-a158-44e7-989b-5b74401e6945" ownerguid="756728a8-9eb8-4329-aee2-d6a3d64585f2"> -<Abbreviation> -<AUni ws="en">1.2.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.947" /> -<DateModified val="2022-9-23 16:55:7.947" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to gas.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Gas</AUni> -</Name> -<Questions> -<objsur guid="47d81411-d865-42e1-a8de-56faf521d8b6" t="o" /> -<objsur guid="cd051692-e945-4b38-b8db-272eb54a78ce" t="o" /> -<objsur guid="6fa25ec8-48fd-4f40-b1cb-050f4c5966fe" t="o" /> -<objsur guid="2e70e0b7-0f07-4d7b-b966-8332f0358cdc" t="o" /> -<objsur guid="b1a5e891-14fe-417b-bcd7-78030a47b2ee" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="34c3fb58-228e-43e9-a720-a1f75e6ffdaf" ownerguid="b6b956bf-e624-4338-8e09-0d8a80dd2ba1"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="34c92650-34b7-47a0-9d68-21ee96430534" ownerguid="251531bb-0f71-44fc-af97-1beb4d74c834"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="34c9408c-c3f7-49db-8bce-de7fa7da03d7" ownerguid="19d54c2f-ae03-4cbc-9b7e-57292f92fbc1"> -<Abbreviation> -<AUni ws="en">7.2.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.518" /> -<DateModified val="2022-9-23 16:55:8.518" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to catching someone who is trying to escape.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>37F Seize, Take into Custody</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Catch, capture</AUni> -</Name> -<Questions> -<objsur guid="e34386f2-643e-4439-b88b-9f4cdfaa6319" t="o" /> -<objsur guid="86cee8fb-c733-4bcf-86ac-a4cd3cead957" t="o" /> -<objsur guid="4d13172c-73fd-429d-8197-15888d0ef2c4" t="o" /> -<objsur guid="5f03dca8-7e4b-4f57-92fa-0d4d78917c51" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="0448c78b-dbb7-417c-afc5-b227a1475825" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="34cb13e5-5cda-4abe-aede-69da94d0feb2" ownerguid="303539ba-7253-4590-b8c4-7751caa52c65"> -<ExampleWords> -<AUni ws="en">power, force, energy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the power used to do something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="34cbaedb-160b-467b-8acd-46155d6a2400"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">encanta</AUni> -<AUni ws="qvm-x-acl">encanta</AUni> -<AUni ws="qvm-x-akh">encanta</AUni> -<AUni ws="qvm-x-akl">encanta</AUni> -<AUni ws="qvm-x-ame">encanta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+encantar</AUni> -<AUni ws="qvm-x-acl">+encantar</AUni> -<AUni ws="qvm-x-akh">+encantar</AUni> -<AUni ws="qvm-x-akl">+encantar</AUni> -<AUni ws="qvm-x-ame">+encantar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.457" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cd525f66-028a-4ff9-8b02-6d7423b45414" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+encantar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5d112c4f-7089-41aa-8eca-8b4643bba3e6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="17db876f-dc0f-42a6-a1c8-9df5647513be" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +encantar 
\entryTyp root 
\gENG enchant 
\gSPN encantar 
\e +encantar 
\c V1 
\ach encanta 
\akh encanta 
\acl encanta 
\akl encanta 
\ame encanta</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="34cc3a83-e5b7-4a9b-8876-c04cba4ee287" ownerguid="670857e8-048a-4ab7-92a8-ebc28a5f914b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -<Sense> -<objsur guid="1b926284-5562-4cf3-8ad2-65536a715093" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="34cd6a60-04b6-41e6-abc5-91ca001cad01"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lichi</AUni> -<AUni ws="qvm-x-acl">lichi; liche</AUni> -<AUni ws="qvm-x-akh">lichi</AUni> -<AUni ws="qvm-x-akl">lichi; liche</AUni> -<AUni ws="qvm-x-ame">lichi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llitri</AUni> -<AUni ws="qvm-x-acl">*llitri</AUni> -<AUni ws="qvm-x-akh">*llitri</AUni> -<AUni ws="qvm-x-akl">*llitri</AUni> -<AUni ws="qvm-x-ame">*llitri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.213" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0bef0b38-eefe-4798-b063-50e3ab19e312" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llitri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6d75fb7e-7ffd-447e-bb30-dd5da87ce3be" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fa4b17c7-9f91-4655-8e73-8c6051ab1cc3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llitri 
\entryTyp root 
\gENG squirt 
\gSPN espurrear 
\e *llitri 
\c V1 
\mp +FinalI 
\ach lichi 
\akh lichi 
\acl lichi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl liche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lichi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl liche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lichi</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="34d2e65f-4a27-45a4-8afc-c53b886f9909"> -<Analyses> -<objsur guid="00bbedc3-7d9d-42e4-a331-13882d44a401" t="o" /> -<objsur guid="198181cf-3363-4dee-b22c-c8bdaaf53ce0" t="o" /> -<objsur guid="42882481-3390-4c4b-b98d-a50cd21c60d7" t="o" /> -<objsur guid="42fc2fe1-46eb-4646-b011-d351d39083e2" t="o" /> -<objsur guid="944a44d3-52c6-4cd9-9d8a-6acf6e2f2be4" t="o" /> -<objsur guid="ba3dfe4c-7db2-40f0-8994-eb010001f6c7" t="o" /> -<objsur guid="fe82422e-d33d-4920-85ea-62e3428e6576" t="o" /> -</Analyses> -<Checksum val="-754868146" /> -<Form> -<AUni ws="qvm-x-akh">pasaypa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="34d318ed-04ba-4a2d-aca5-3ce9578bd169" ownerguid="67146bf0-738b-4f63-9595-139c4e9e351c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="34d350d2-160d-45a3-b899-b176d1b27eaa" ownerguid="2a62f8e4-7da3-4f37-bf44-e24033c99c00"> -<ExampleWords> -<AUni ws="en">boil, burn, chafe, fume, fuss, mope, seethe, simmer, smolder, stew, sulk, sullen, bear a grudge, hold a grudge against, have something against, have it in for, hold something against someone, there is no love lost between</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to feeling angry for a long time?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="34d3cafa-6d6f-442c-84ca-d81be3f7f715" ownerguid="22b52461-ebe0-422d-a7cb-7b9359e7a701"> -<Form> -<AUni ws="qvm-x-ach">shogpi</AUni> -<AUni ws="qvm-x-acl">shogpi; shogpi; shogpe</AUni> -<AUni ws="qvm-x-akh">shoqpi</AUni> -<AUni ws="qvm-x-akl">shoqpi; shoqpi; shoqpe</AUni> -<AUni ws="qvm-x-ame">shuqpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="34d60dc3-c587-48dc-8401-d64a0ec1304c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">logla</AUni> -<AUni ws="qvm-x-acl">logla</AUni> -<AUni ws="qvm-x-akh">loqla</AUni> -<AUni ws="qvm-x-akl">loqla</AUni> -<AUni ws="qvm-x-ame">luqla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lluqlla</AUni> -<AUni ws="qvm-x-acl">*lluqlla</AUni> -<AUni ws="qvm-x-akh">*lluqlla</AUni> -<AUni ws="qvm-x-akl">*lluqlla</AUni> -<AUni ws="qvm-x-ame">*lluqlla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.225" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b8466559-5efe-44f7-b237-d14e81584d7d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lluqlla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d12eb24a-def8-4395-addf-03fa45e4d8b0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0e918e3d-4301-4112-a5e3-141f93b7f3ad" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lluqlla 
\entryTyp root 
\gENG landslide 
\gSPN huayco 
\e *lluqlla 
\c N0 
\ach logla 
\akh loqla 
\acl logla 
\akl loqla 
\ame luqla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="34d9ff2d-d665-41a8-8966-e765e9addb45" ownerguid="4cb5e536-5f25-44bd-b4c0-42be8a6baf4b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">thin</AUni> -<AUni ws="es">flaco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="12082a04-e3df-47d6-9faa-1b7764ffb96f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="34da294c-ccb5-4306-bed7-bc4a795fa364" ownerguid="e18fdcdf-fda5-47cc-a9d8-58b6c8a3877d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">drum</AUni> -<AUni ws="es">bombo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5972b613-ebb5-4e87-9e5d-4fe9d1a2b6f9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="34daa9c1-323e-4d01-9f60-b6a3a08d4962" ownerguid="8fda01cc-e0f5-40fc-a6cd-163788e6b224"> -<Form> -<AUni ws="qvm-x-ach">coröna</AUni> -<AUni ws="qvm-x-acl">coröna</AUni> -<AUni ws="qvm-x-akh">coröna</AUni> -<AUni ws="qvm-x-akl">coröna</AUni> -<AUni ws="qvm-x-ame">coröna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="34dae3f8-e483-4fe5-893e-8838b910ab6a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">timpi</AUni> -<AUni ws="qvm-x-acl">timpi; timpe</AUni> -<AUni ws="qvm-x-akh">timpi</AUni> -<AUni ws="qvm-x-akl">timpi; timpe</AUni> -<AUni ws="qvm-x-ame">timpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*timpi</AUni> -<AUni ws="qvm-x-acl">*timpi</AUni> -<AUni ws="qvm-x-akh">*timpi</AUni> -<AUni ws="qvm-x-akl">*timpi</AUni> -<AUni ws="qvm-x-ame">*timpi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.906" /> -<DateModified val="2022-10-10 21:19:47.694" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0500f409-5b75-45b6-8524-4535688f5b9a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*timpi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f31f054d-c34c-4a67-a7f8-f8951078fffb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c33fa5fa-9f0b-4889-a467-aef3271eba75" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *timpi 
\entryTyp root 
\gENG poke 
\gSPN 
\e *timpi 
\c V2 
\mp +FinalI 
\ach timpi 
\akh timpi 
\acl timpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl timpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl timpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl timpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame timpi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="34db08b4-cffa-4484-a596-6e73f22d6845" ownerguid="70f9e69f-bcd4-45e6-87a1-ddbf2ae42402"> -<Form> -<AUni ws="qvm-x-ach">alquila</AUni> -<AUni ws="qvm-x-acl">alquila</AUni> -<AUni ws="qvm-x-akh">alquila</AUni> -<AUni ws="qvm-x-akl">alquila</AUni> -<AUni ws="qvm-x-ame">alquila</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="34dd26b6-d081-42f5-8be9-c5fe7a7253b2" ownerguid="64493789-1c2c-4b24-a7e6-f00ff9be923e"> -<Abbreviation> -<AUni ws="en">6.1.2.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.348" /> -<DateModified val="2022-9-23 16:55:8.348" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to something being available to use.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Available</AUni> -</Name> -<Questions> -<objsur guid="0e0b29cd-9e67-4633-9703-ae25b1ff5894" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="34de6a0b-a295-4d54-8dcd-f32aa4a4ed58" ownerguid="94f50cb8-9a59-42cc-9891-247cc3de7428"> -<ExampleWords> -<AUni ws="en">rusty, corroded, tarnished, rusted, eaten away, eaten through</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe metal that has rusted?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="34e1ead6-ad50-46a6-937e-6d9ab362a326" ownerguid="eaacfc93-b8dc-4f0f-ab2f-524b6590e911"> -<Form> -<AUni ws="qvm-x-ach">sego; segü</AUni> -<AUni ws="qvm-x-acl">sego; segö</AUni> -<AUni ws="qvm-x-akh">seqo; seqü</AUni> -<AUni ws="qvm-x-akl">seqo; seqö</AUni> -<AUni ws="qvm-x-ame">siqu; siqü</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="34e3847d-f842-49f4-9966-e776bb01c56a" ownerguid="06b23bcd-69df-471a-b5a5-4ca8cab7f0d9"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The <subject> of the book is the President.; The <topic> of the discussion is efficiency.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">subject, topic, theme, issue, question, matter, business, thing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the thing something is about?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="34e47811-7b0a-4cb8-994b-139fbb213c7c" ownerguid="73308bb8-de11-49da-b4df-fd546cdfad56"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="ce4f5865-bb4c-4e7f-be18-e39b3cd91e3f" t="o" /> -</Examples> -<Gloss> -<AUni ws="es">virgen</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c5c77976-9213-4aa7-ada1-c387fe0f7162" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="34e47f05-c6a8-466e-b161-97269380ac72" ownerguid="75555a9c-c36f-4491-bd2f-f63391bd339f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="e173eb34-6ea3-4a0e-ba9a-d3b3db8a0819" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="34e5a15c-2ba6-45ca-8f54-d35db9d3c3a8" ownerguid="662cbcbc-a71e-4251-aca6-0cb1db47de9d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="34e8fe39-20f2-4da5-bde0-62b31ef77c2c" ownerguid="a06d8571-f152-4ad9-9cff-47685527e2b4"> -<Form> -<AUni ws="qvm-x-ach">pilta</AUni> -<AUni ws="qvm-x-acl">pilta</AUni> -<AUni ws="qvm-x-akh">pilta</AUni> -<AUni ws="qvm-x-akl">pilta</AUni> -<AUni ws="qvm-x-ame">pilta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="34e92ff1-32aa-49c7-b4da-d161bedc5adc" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<Abbreviation> -<AUni ws="en">6.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.468" /> -<DateModified val="2022-9-23 16:55:8.468" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to working with minerals.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Working with minerals</AUni> -</Name> -<OcmCodes> -<Uni>320 Processing of Basic Materials; 310 Exploitative Activities; 306 Jewelry Manufacture</Uni> -</OcmCodes> -<Questions> -<objsur guid="80bf903e-873f-472e-a0c8-abe5f4ec7b03" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c5996b7d-0acc-4ac7-bfa0-09b93a0eccbc" t="o" /> -<objsur guid="993b8955-52db-4b2a-8e9a-405a155e7b60" t="o" /> -<objsur guid="7ee3ccb5-e6cb-4028-9af5-62ae782967b5" t="o" /> -<objsur guid="66abfbe5-e011-48de-8773-905f1b1ce215" t="o" /> -<objsur guid="5a585789-2ef6-42c5-9c5a-34ff716059b7" t="o" /> -<objsur guid="3f6dc9af-0c50-44d5-99f0-4aa67c668186" t="o" /> -<objsur guid="084e2568-3f54-4eab-b436-8a87fb466659" t="o" /> -<objsur guid="33037a4d-3454-4c59-9a61-c5fb747f107a" t="o" /> -<objsur guid="8b76f4a2-9926-4c76-8d4f-563371683219" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="34e9aa91-0482-41e9-be44-acfe27e3184d" ownerguid="736b52c0-42be-49f6-95a2-0b567a9ea81a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="34ee31c0-3770-4c8d-b699-12d256708577" ownerguid="12b6934d-3a4a-4623-995f-865f401349ab"> -<ExampleWords> -<AUni ws="en">gobble, inhale, wolf down, devour, eat fast</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to eating fast?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="34ef2d61-7637-4d35-ab8f-0110eec93359" ownerguid="b868b0ae-af5b-431c-8739-ee563065b80e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="34ef7b53-7747-4698-ac51-d88d86d827d5" ownerguid="31b314be-236e-4854-b921-4d416a5e66ce"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="45e663c0-f1ab-4147-9f68-7423ca1d9680" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="abaf5ed9-480f-4862-8c25-3bb67a84b955" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="34f2be49-cb77-4299-bb2e-9308d0278797"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">muña:</AUni> -<AUni ws="qvm-x-acl">muña:</AUni> -<AUni ws="qvm-x-akh">muña:</AUni> -<AUni ws="qvm-x-akl">muña:</AUni> -<AUni ws="qvm-x-ame">muña:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*muña:</AUni> -<AUni ws="qvm-x-acl">*muña:</AUni> -<AUni ws="qvm-x-akh">*muña:</AUni> -<AUni ws="qvm-x-akl">*muña:</AUni> -<AUni ws="qvm-x-ame">*muña:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.497" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c0907427-7899-4279-8b98-04a7bfa58ed5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*muña:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="479cd9a4-a9c6-4326-9f46-f3f99c4780b7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a2423b5d-c60b-4965-95c4-7da3f3844486" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *muña: 
\entryTyp root 
\gENG 
\gSPN 
\e *muña: 
\c N0 
\mp NeverForeshortened 
\ach muña: 
\akh muña: 
\acl muña: 
\akl muña: 
\ame muña: 
\mp +underlong 
\mp +FinalC 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="34f3f19d-5a4c-4039-8aa2-4f311e7a7fb6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">garwash</AUni> -<AUni ws="qvm-x-acl">garwash</AUni> -<AUni ws="qvm-x-akh">qarwash</AUni> -<AUni ws="qvm-x-akl">qarwash</AUni> -<AUni ws="qvm-x-ame">qarwash</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qarwash</AUni> -<AUni ws="qvm-x-acl">*qarwash</AUni> -<AUni ws="qvm-x-akh">*qarwash</AUni> -<AUni ws="qvm-x-akl">*qarwash</AUni> -<AUni ws="qvm-x-ame">*qarwash</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.124" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="00195736-1538-4292-97ca-cc83f1147a49" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qarwash</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9d6e31cf-4676-421a-8810-fee5263df8e0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c85566a5-6c34-441b-a7a9-a3e1aa310318" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qarwash 
\entryTyp root 
\gENG yellow 
\gSPN amarillo 
\e *qarwash 
\c N0 
\mp +FinalC 
\ach garwash 
\akh qarwash 
\acl garwash 
\akl qarwash 
\ame qarwash</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="34f4f7ba-d7ab-4c6e-963b-aead3ca48be0" ownerguid="20b6e2ae-3638-4c31-803b-ce8eb255fa57"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="34f727c7-dd53-42e8-85b2-641018b3a78e" ownerguid="45d867c7-8496-4c92-bb41-b7db5db47717"> -<ExampleWords> -<AUni ws="en">fatten</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to making someone fat?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="34f84ba9-1ddc-4c0f-bf74-90bd98afebd7" ownerguid="1b905486-22ee-41e4-89cf-3c0e512bbc63"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="44e6b043-e9a3-4aec-8ffa-6c1768d74b70" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">shove/hurl</AUni> -<AUni ws="es">zampar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7fec728d-5d30-4419-929a-a414014373a9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="34f9b8b3-0cef-477d-b7fb-2a1ceec20b95"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">muru</AUni> -<AUni ws="qvm-x-acl">muru; muru; muro</AUni> -<AUni ws="qvm-x-akh">muru</AUni> -<AUni ws="qvm-x-akl">muru; muru; muro</AUni> -<AUni ws="qvm-x-ame">muru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*muru.n</AUni> -<AUni ws="qvm-x-acl">*muru.n</AUni> -<AUni ws="qvm-x-akh">*muru.n</AUni> -<AUni ws="qvm-x-akl">*muru.n</AUni> -<AUni ws="qvm-x-ame">*muru.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.507" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="94b13808-6b7c-4c34-bb1c-d6b7042d5c50" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*muru.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="36d26f55-6983-41ba-bf4d-ecc3726ffb56" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c5e1cd91-b0cb-4770-8ed9-5f23ffca2276" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *muru.n 
\entryTyp root 
\gENG seed 
\gSPN semilla 
\e *muru.n 
\c N0 
\ach muru 
\akh muru 
\acl muru / _# 
\acl muru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl muro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl muru / _# 
\akl muru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl muro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame muru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="34fceb87-d95a-4e6b-8e82-6b8a0170467b" ownerguid="f4352fbe-968b-42cc-a2e0-3ab7fcb0edeb"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 109.20 Tayta Dios tsaynog castigatsun conträcunata y wasä rimagcunata.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="34fe8676-7bda-493d-a012-bc5748e87823" ownerguid="313ca832-ce91-44c9-bb35-bd130c39d924"> -<Abbreviation> -<AUni ws="en">8.3.2.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.609" /> -<DateModified val="2022-9-23 16:55:8.609" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is pointed.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Pointed</AUni> -</Name> -<Questions> -<objsur guid="55897412-6224-4a2d-950b-ff857c5c072a" t="o" /> -<objsur guid="1febc5d9-b865-4510-b866-2eecdc01bcec" t="o" /> -<objsur guid="f1769037-e4a7-4e7f-bf6f-deaa59b54a47" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoDerivAffMsa" guid="3503ea2c-6d6a-40bd-ab49-d2f29a6d368a" ownerguid="de332ef3-655b-40b5-829c-a551d40dec89"> -<FromPartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</FromPartOfSpeech> -<ToPartOfSpeech> -<objsur guid="f3ea5225-9cc3-474e-b548-7bda3376fce1" t="r" /> -</ToPartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="3503f9b0-54bf-411e-aed6-405c2874a2e6" ownerguid="aab1c99c-625d-4540-b8d6-dee565b9672f"> -<Form> -<AUni ws="qvm-x-ach">cabecïlla</AUni> -<AUni ws="qvm-x-acl">cabecïlla</AUni> -<AUni ws="qvm-x-akh">cabecïlla</AUni> -<AUni ws="qvm-x-akl">cabecïlla</AUni> -<AUni ws="qvm-x-ame">cabecïlla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PhEnvironment" guid="35058c7a-447a-4ee8-89bd-323da24bf7c5" ownerguid="be765e3e-ea5e-11de-9d42-0013722f8dec"> -<Name> -<AUni ws="en">after a consonant</AUni> -</Name> -<StringRepresentation> -<Str> -<Run underline="none" ws="en">/[C]_</Run> -</Str> -</StringRepresentation> -</rt> -<rt class="MoStemAllomorph" guid="35065e37-b67b-409c-b0cc-35637a4ad143" ownerguid="a26c3c21-bb9a-4b82-a354-fa9b54d681f4"> -<Form> -<AUni ws="qvm-x-ach">botëlla</AUni> -<AUni ws="qvm-x-acl">botëlla</AUni> -<AUni ws="qvm-x-akh">botëlla</AUni> -<AUni ws="qvm-x-akl">botëlla</AUni> -<AUni ws="qvm-x-ame">botëlla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="350667ee-592b-47af-adca-14e820ec58cf" ownerguid="a03663ca-0c66-4570-be2d-b40105cc4400"> -<Abbreviation> -<AUni ws="en">9.4.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.708" /> -<DateModified val="2022-9-23 16:55:8.708" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that negate or deny the truth of something, or that answer a yes/no question in the negative.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>69B Negation; 69C Negation Combined with Clitics</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">No, not</AUni> -</Name> -<Questions> -<objsur guid="b8849c2f-9a10-45f6-ab36-a14ea14d645f" t="o" /> -<objsur guid="8f9c1493-1d9b-4bf9-a2c3-0485ba74598c" t="o" /> -<objsur guid="1c07f1bf-a32a-4696-bac1-16704ad85ede" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="35084c69-7be0-4d8b-81e0-e354085c47e6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lapta</AUni> -<AUni ws="qvm-x-acl">lapta</AUni> -<AUni ws="qvm-x-akh">lapta</AUni> -<AUni ws="qvm-x-akl">lapta</AUni> -<AUni ws="qvm-x-ame">lapta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llapta</AUni> -<AUni ws="qvm-x-acl">*llapta</AUni> -<AUni ws="qvm-x-akh">*llapta</AUni> -<AUni ws="qvm-x-akl">*llapta</AUni> -<AUni ws="qvm-x-ame">*llapta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.152" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cb90bc06-170f-4366-8352-9dd0901c214d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llapta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0e0392d0-90fd-4042-8fe0-3145c902a4bc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8eb0bf5b-13e5-4862-ae32-b15eb94ca6ac" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llapta 
\entryTyp root 
\gENG feel 
\gSPN sentir 
\e *llapta 
\c N0 
\ach lapta 
\akh lapta 
\acl lapta 
\akl lapta 
\ame lapta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="35095efa-b9e7-4797-83f3-35e637a7475a" ownerguid="d3c023e0-10f2-444e-9bff-ebe4bd58fcf5"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 31.22 Quiquinmi colchancunatapis awacun.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="350b8501-e64e-4fcc-8961-0ddd63ba94cd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">color</AUni> -<AUni ws="qvm-x-acl">color</AUni> -<AUni ws="qvm-x-akh">color</AUni> -<AUni ws="qvm-x-akl">color</AUni> -<AUni ws="qvm-x-ame">color</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+color</AUni> -<AUni ws="qvm-x-acl">+color</AUni> -<AUni ws="qvm-x-akh">+color</AUni> -<AUni ws="qvm-x-akl">+color</AUni> -<AUni ws="qvm-x-ame">+color</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.142" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="977c4b66-ca50-45d3-b046-ff6c0c2005db" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+color</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b914fd62-d5f0-4784-9f21-fb9086d3f7d4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="48a3e3ea-18b0-4f08-9d25-69497f245e62" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +color 
\entryTyp root 
\gENG color 
\gSPN color 
\e +color 
\c N0 
\mp +FinalC 
\ach color 
\akh color 
\acl color 
\akl color 
\ame color</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3510164b-e877-4ae6-b31a-9de75c9f00c8" ownerguid="b3feec25-7afd-49bc-aedb-e0e1c0ce85d7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">erase</AUni> -<AUni ws="es">borrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f7e06b9c-31a7-4a9c-a339-2943f7a9d0a2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3511a980-6e73-4712-b8be-eb5dfc5522c5" ownerguid="84eb31d3-b932-4b3b-b945-85884ea856c7"> -<ExampleWords> -<AUni ws="en">have a good chance, stand a good chance, be set to do something, be on course</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words indicate that someone or something will probably be successful?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="35191f11-7f54-4b5f-aa82-3ea5d0c9fcaf" ownerguid="dfbcadfe-cfd9-444d-8d12-8e4e494eb6f9"> -<Form> -<AUni ws="qvm-x-ach">nagatan</AUni> -<AUni ws="qvm-x-acl">nagatan</AUni> -<AUni ws="qvm-x-akh">naqatan</AUni> -<AUni ws="qvm-x-akl">naqatan</AUni> -<AUni ws="qvm-x-ame">naqatan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="35218f84-0e53-4849-9a4a-b2189c13dbc3" ownerguid="b2a52981-8b33-497e-83b7-a740bb8ddd11"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="35264f34-ac56-49af-8e2b-c10b38a363b7" ownerguid="297324d9-93ac-487c-bbf6-74aa3dd017f8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">leaf</AUni> -<AUni ws="es">hoja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8113325d-cef1-49db-b504-644c3162a580" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="35288e7a-efd4-430f-bfba-1d3a4940fe35" ownerguid="dae6488c-7fea-4fa3-84c9-b611d017b6a5"> -<ExampleWords> -<AUni ws="en">soak, scrub, rinse, wring, hang up (to dry), dry, take down, iron, fold, put away, hang up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the steps is washing clothes?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="352913ff-b78b-4d11-bbdf-a36e15fba68f" ownerguid="e180e046-1dd0-4f30-85ab-aada2c945041"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="35294bb0-4091-4f83-9987-3f54268eab62" ownerguid="1ab23a1b-07ae-44fc-b3c8-ceaac231ee9a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">slaughterhouse</AUni> -<AUni ws="es">camal</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5feabe3b-b103-427c-9411-f9dd861dccf4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="3530be75-7fbe-4cc0-b1c9-0364fba567ee" ownerguid="50d9d887-1375-4164-90af-eb29f5e73292"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b43ad487-6e73-48ff-9ec0-62d0371aba88" t="r" /> -</Morph> -<Msa> -<objsur guid="b0ee83ce-c1ff-41c7-8aa1-b6e53ae19ebd" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="3530feba-d30e-43cb-9e35-7bea1ee85085" ownerguid="61883dbf-387d-448d-9409-fafe751b804b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stay</AUni> -<AUni ws="es">quedar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="93198438-9065-40e1-9b1f-6c2bc8602343" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="3535c5d6-9a8b-4b47-9392-228dd5ffde12" ownerguid="ddef7299-818b-42bf-8cd5-443fbb90eae4"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1ki 19.12 Nina pasariptinnami walwalyaylapa wayra pasaycagnog mayacargan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="3536b173-3a6c-4eaa-8894-bfd038cb091a" ownerguid="a7b32d1b-1be7-43ec-94a1-fc7bdd826168"> -<ExampleWords> -<AUni ws="en">He lives <just> across the street.</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What particles are in your language?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="353951ea-d333-4799-a447-22c5f539a121" ownerguid="de972142-b8c4-4d5f-8fa2-f1ab61d4b33e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b699320c-1182-41cf-a567-d8008edefdda" t="r" /> -</Morph> -</rt> -<rt class="CmDomainQ" guid="3539c7b2-f30c-41f0-be34-86dd72e3a687" ownerguid="cc6f100a-5220-4f53-801c-b1fdcc619608"> -<ExampleWords> -<AUni ws="en">old, elderly, aged, aging, ancient, be getting on, not be as young as you were, patriarchal, senior</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a person or animal that is old?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="353ad767-f58d-4e54-b02b-24d238ea3095" ownerguid="2da260cb-03fd-4433-b51b-986bded9b951"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="353b1f99-9ff0-40ae-a5d8-2569f676acc8" ownerguid="f3a8cb6f-cdc8-42b3-a969-08dd7c907079"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pastor</AUni> -<AUni ws="es">pastor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d4aec8b3-b477-4f8b-aefd-2c7c91a23d02" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="353bdeef-c37b-4deb-b4ac-363d414b6fdb" ownerguid="83899b19-8b39-4bf0-b124-4c6188569ec8"> -<ExampleWords> -<AUni ws="en">add up, tally (v), total (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to adding a series of numbers?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="353d5ac5-8fe4-4ec0-b962-faf432ab5820" ownerguid="f167559b-ff48-44ac-8289-1e0e3641738c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="5b97f556-7799-4387-aef1-34aecd05feac" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">eager</AUni> -<AUni ws="es">ansioso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="81dc3b39-3d90-494a-b512-d5980720a05a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="353e3c5f-6f7a-46b5-9159-faa255c44d2e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">trompu; trompo</AUni> -<AUni ws="qvm-x-acl">trompu; trompu; trompo</AUni> -<AUni ws="qvm-x-akh">trompu; trompo</AUni> -<AUni ws="qvm-x-akl">trompu; trompu; trompo</AUni> -<AUni ws="qvm-x-ame">trompu; trompo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+trompo.1</AUni> -<AUni ws="qvm-x-acl">+trompo.1</AUni> -<AUni ws="qvm-x-akh">+trompo.1</AUni> -<AUni ws="qvm-x-akl">+trompo.1</AUni> -<AUni ws="qvm-x-ame">+trompo.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.149" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="648c8fb3-94a3-4a20-9a84-c5bf1c6a8760" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+trompo.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8afd1975-e14d-4cc0-ab40-5ddcc721323b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cec1d274-3bc6-4f72-b0d9-d5666d629096" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +trompo.1 
\entryTyp root 
\gENG top 
\gSPN trompo 
\e +trompo.1 
\c N0 
\ach trompu / ~_# 
\ach trompo / _# 
\akh trompu / ~_# 
\akh trompo / _# 
\acl trompu / ~_# 
\acl trompu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl trompo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl trompu / ~_# 
\akl trompu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl trompo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame trompu / ~_# 
\ame trompo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="353e7fe5-ef78-4cdb-b28a-d0bcf7053e8d" ownerguid="cef4e479-ed16-45a9-ab32-1da63f0b63ae"> -<Form> -<AUni ws="qvm-x-ach">oficina</AUni> -<AUni ws="qvm-x-acl">oficina</AUni> -<AUni ws="qvm-x-akh">oficina</AUni> -<AUni ws="qvm-x-akl">oficina</AUni> -<AUni ws="qvm-x-ame">oficina</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3540305e-d8b7-4712-8ff9-dcfb9538e51a" ownerguid="9a9c7174-4148-43c2-875c-0d2f884a5fe3"> -<ExampleWords> -<AUni ws="en">mess, clutter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to things that are scattered around a place and make it look untidy?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="3540a10a-e927-4976-afa9-7dd4fb658136" ownerguid="907b24b6-7dcc-428e-afec-86cb20362d4a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a4d42f6f-d626-4469-8166-21d6f4e69d6d" t="r" /> -</Morph> -<Msa> -<objsur guid="72dc7bab-4d12-4cdb-a144-3c853f889fb5" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="3540d65f-1321-4222-9959-40351a471342" ownerguid="62b40326-f74c-4d80-9b1c-4dae0fc07026"> -<ExampleWords> -<AUni ws="en">track, print, footprint, paw print, hoof print, sign, trail</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the marks left by an animal on the ground?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3541cb7e-e9be-47ca-8ba8-c47e860c9c46"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rica</AUni> -<AUni ws="qvm-x-acl">rica</AUni> -<AUni ws="qvm-x-akh">rika</AUni> -<AUni ws="qvm-x-akl">rika</AUni> -<AUni ws="qvm-x-ame">rika</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rika.r</AUni> -<AUni ws="qvm-x-acl">*rika.r</AUni> -<AUni ws="qvm-x-akh">*rika.r</AUni> -<AUni ws="qvm-x-akl">*rika.r</AUni> -<AUni ws="qvm-x-ame">*rika.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.358" /> -<DateModified val="2022-10-16 16:0:38.21" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="49879410-4626-4f3c-96c0-d5a48f199317" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rika.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3b914428-8cc9-47af-9f9c-c2de114360c0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3844b05a-8c3e-4fb1-beac-615795c4efc0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rika.r 
\entryTyp root 
\gENG 
\gSPN 
\e *rika.r 
\c NOSUFF 
\ach rica 
\akh rika 
\acl rica 
\akl rika 
\ame rika</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="354216f5-0435-4252-8ac9-55c718c2c6a9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ulta</AUni> -<AUni ws="qvm-x-acl">ulta</AUni> -<AUni ws="qvm-x-akh">ulta</AUni> -<AUni ws="qvm-x-akl">ulta</AUni> -<AUni ws="qvm-x-ame">ulta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ullta</AUni> -<AUni ws="qvm-x-acl">*ullta</AUni> -<AUni ws="qvm-x-akh">*ullta</AUni> -<AUni ws="qvm-x-akl">*ullta</AUni> -<AUni ws="qvm-x-ame">*ullta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.210" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2c905295-6aae-49c8-80ef-eac0dcb8efb0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ullta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e49a1b88-5374-4924-bd40-f3bdca89eb9f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4393bba7-a130-4a6e-9c6f-17725a5cc9b9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ullta 
\entryTyp root 
\gENG swallow 
\gSPN tragar 
\e *ullta 
\c V2 
\ach ulta 
\akh ulta 
\acl ulta 
\akl ulta 
\ame ulta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="3543570b-2091-4978-ad07-c81d7474626e" ownerguid="74693758-e781-4a77-a90c-fdec7f1437fa"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3543763a-2b35-46cd-a4fe-2d8ed8677acf" ownerguid="e626c65e-eb79-4230-b07a-a6d975d3fe3d"> -<ExampleWords> -<AUni ws="en">lip, tongue, tooth, gum, uvula, palate, alveolar ridge, mouth cavity, roof, velum, throat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the parts of the mouth?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3545ca41-0ddd-40a3-9809-2a62d51e75f6" ownerguid="a7824686-a3f3-4c8a-907e-5d841cf846c8"> -<ExampleWords> -<AUni ws="en">twinkle, glitter, shimmer, flicker, glimmer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something shining with small points of light?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3548db4c-ec03-4cde-8af5-2baf938c130e" ownerguid="a9898fad-e79b-44f2-b06b-7d35f1e05a38"> -<Form> -<AUni ws="qvm-x-ach">perdón; perdon</AUni> -<AUni ws="qvm-x-acl">perdón; perdon</AUni> -<AUni ws="qvm-x-akh">perdón; perdon</AUni> -<AUni ws="qvm-x-akl">perdón; perdon</AUni> -<AUni ws="qvm-x-ame">perdón; perdon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="35497a81-f6d8-4b55-afb9-98de2ded55fe" ownerguid="50826f66-6321-4219-a56d-825b561dca8c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="354c00a6-129c-4d9f-8928-be3c0b5de6b0" ownerguid="180a2220-942c-4e17-96ee-cd4f63a4c715"> -<ExampleWords> -<AUni ws="en">topsoil, sod</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to the dirt on the top of the ground with grass in it?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="354c57bd-432b-4e8f-b70e-2ea9a2864a03" ownerguid="1de2cef5-3a2d-45c1-8cb6-06b2ac087907"> -<Question> -<AUni ws="en">(3) complement to words of thinking</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="354c761d-03d5-4445-89e1-4f7c9673ab11"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fuerti; fuerte</AUni> -<AUni ws="qvm-x-acl">fuerti; fuerti; fuerte</AUni> -<AUni ws="qvm-x-akh">fuerti; fuerte</AUni> -<AUni ws="qvm-x-akl">fuerti; fuerti; fuerte</AUni> -<AUni ws="qvm-x-ame">fuerti; fuerte</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fuerte</AUni> -<AUni ws="qvm-x-acl">+fuerte</AUni> -<AUni ws="qvm-x-akh">+fuerte</AUni> -<AUni ws="qvm-x-akl">+fuerte</AUni> -<AUni ws="qvm-x-ame">+fuerte</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.589" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="da72aae5-7ee2-492d-8128-71ea76c386cd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fuerte</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="41833478-6044-4c71-a2fc-8d2d9ff83ebe" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2fd95fe8-d411-493f-8144-493c5dcb0c12" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fuerte 
\entryTyp root 
\gENG strong 
\gSPN fuerte 
\e +fuerte 
\c N0 
\ach fuerti / ~_# 
\ach fuerte / _# 
\akh fuerti / ~_# 
\akh fuerte / _# 
\acl fuerti / ~_# 
\acl fuerti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl fuerte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl fuerti / ~_# 
\akl fuerti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl fuerte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame fuerti / ~_# 
\ame fuerte / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="35530c4e-e575-4c46-9d88-cad35f8ffca4" ownerguid="77f0d0dc-61ee-4373-9879-35a7059bd892"> -<ExampleWords> -<AUni ws="en">dentist, oral surgeon, dentistry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a person who treats bad teeth?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3554b527-35dc-4459-980f-026b908e9ab6" ownerguid="00dde3be-e53d-42c3-b3ff-717e25cbffb6"> -<ExampleWords> -<AUni ws="en">pray, talk to God, beseech</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to praying to God?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="355dfbd3-b572-4fa3-8c4d-788e269ab328" ownerguid="81e366fa-450b-42ad-b23f-7074dc7823e2"> -<ExampleWords> -<AUni ws="en">attitude, mentality, way of thinking, outlook, worldview</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a person's opinions and feelings about something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="355ee7ce-8c6e-45c8-9d11-694fd89c9d08" ownerguid="dd89c520-a4bf-43fb-82b6-279504c7ca57"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">drink</AUni> -<AUni ws="es">tomar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="686f77b1-be8b-433c-a5a9-6046ffc2f85f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="35624f3a-2029-43b3-b70a-83e63ac9052f" ownerguid="af0909a5-928a-4421-baaa-f33b14302714"> -<Abbreviation> -<AUni ws="en">9.2.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain to list all affixes that do not fit in any of the subdomains under it. This section should be filled out by a linguist.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Affixes</AUni> -</Name> -<Questions> -<objsur guid="59419694-f41f-4c7e-bc50-aa6c24001b07" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="0049664f-0931-487b-ab3c-ce11e134ce7a" t="o" /> -<objsur guid="a4f4943f-ad94-4736-bf5d-f8a3cb15919f" t="o" /> -<objsur guid="751f726b-b7cd-470e-a9fd-f2f1b460dd0d" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="35628a1d-4e2b-48a5-9beb-4466da40eb6f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">consue:lu</AUni> -<AUni ws="qvm-x-acl">consue:lu; consue:lu; consue:lo</AUni> -<AUni ws="qvm-x-akh">consue:lu</AUni> -<AUni ws="qvm-x-akl">consue:lu; consue:lu; consue:lo</AUni> -<AUni ws="qvm-x-ame">consue:lu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+consuelo</AUni> -<AUni ws="qvm-x-acl">+consuelo</AUni> -<AUni ws="qvm-x-akh">+consuelo</AUni> -<AUni ws="qvm-x-akl">+consuelo</AUni> -<AUni ws="qvm-x-ame">+consuelo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.172" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c38d2594-3369-4a7d-b358-ba7007a053c9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+consuelo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e2bce012-8afd-4024-b0d6-353c0bd56f48" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d4c8b8fd-93fe-4c19-9f59-616f4eca18bd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +consuelo 
\entryTyp root 
\gENG 
\gSPN 
\e +consuelo 
\c N0 
\ach consue:lu 
\akh consue:lu 
\acl consue:lu / _# 
\acl consue:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl consue:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl consue:lu / _# 
\akl consue:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl consue:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame consue:lu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="3563914c-9058-480c-b767-a5dbf078fd47" ownerguid="b8c444ec-e0db-4f80-8a7f-cc6812b0a76f"> -<Form> -<AUni ws="qvm-x-ach">chïna</AUni> -<AUni ws="qvm-x-acl">chïna</AUni> -<AUni ws="qvm-x-akh">chïna</AUni> -<AUni ws="qvm-x-akl">chïna</AUni> -<AUni ws="qvm-x-ame">chïna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="3566012f-e7af-4199-9074-59fb67ed2279"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wara; wara:</AUni> -<AUni ws="qvm-x-acl">wara; wara:</AUni> -<AUni ws="qvm-x-akh">wara; wara:</AUni> -<AUni ws="qvm-x-akl">wara; wara:</AUni> -<AUni ws="qvm-x-ame">wara; wara:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wara:</AUni> -<AUni ws="qvm-x-acl">*wara:</AUni> -<AUni ws="qvm-x-akh">*wara:</AUni> -<AUni ws="qvm-x-akl">*wara:</AUni> -<AUni ws="qvm-x-ame">*wara:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.515" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="31ddcca6-59d1-4d18-828d-c391fd39f96f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wara:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d2813fb1-22ca-4641-8463-6dc5023c693e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5efba326-7d82-4cfa-99af-64c198d68bc6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wara: 
\entryTyp root 
\gENG dawn 
\gSPN amanecer 
\e *wara: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach wara foreshortened 
\ach wara: 
\akh wara foreshortened 
\akh wara: 
\acl wara foreshortened 
\acl wara: 
\akl wara foreshortened 
\akl wara: 
\ame wara foreshortened 
\ame wara: 
\mcc *wara: / ~_ [y] ([evid]) # 
\mcc *wara: / ~_ INF LIM2 
\mcc *wara: / ~_ INF 3P.C 
\mcc *wara: / ~_ PRMT 
\mcc *wara: / ~_ UNDONE 
\mcc *wara: / ~_ INF TOP</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3566cfa6-ee0a-4d56-a1a6-b4b17d46aa7d" ownerguid="5cccfc11-4c8b-461f-bab8-e6e5ac587f6e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">store.method</AUni> -<AUni ws="es">un.método</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="00fd1904-e58e-402e-b15a-f4acd87191d2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="35677f7b-24a3-4d74-a919-fca11c314ac1" ownerguid="83322b11-96f4-481b-bc88-2ce9d94939a2"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="3568dadb-97a1-4d11-991f-9bc276301568" ownerguid="7909b8bc-221d-43ce-a4a3-13052517806c"> -<Form> -<AUni ws="qvm-x-ach">wayra</AUni> -<AUni ws="qvm-x-acl">wayra</AUni> -<AUni ws="qvm-x-akh">wayra</AUni> -<AUni ws="qvm-x-akl">wayra</AUni> -<AUni ws="qvm-x-ame">wayra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="356b0b82-0613-4576-a096-a637a3687182" ownerguid="75dd6637-1564-4de8-889c-7f3e3e371ec2"> -<Form> -<AUni ws="qvm-x-ach">guetu</AUni> -<AUni ws="qvm-x-acl">guetu; gueto</AUni> -<AUni ws="qvm-x-akh">qetu</AUni> -<AUni ws="qvm-x-akl">qetu; qeto</AUni> -<AUni ws="qvm-x-ame">qitu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="356bd76c-7c38-4758-83c8-3eab983f0898" ownerguid="d06dae77-134a-403f-ba88-52ecd66c0522"> -<ExampleWords> -<AUni ws="en">reindeer moss</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What species of lichen are there?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="356e0ecc-5163-4323-96d1-03cd7a2053d9"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">word</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="356e454b-552c-442d-98f9-ab005dc99137" ownerguid="933404fc-9865-4f05-ad2a-55d83ac396f9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuti</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuti; cute</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuti</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuti; kute</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuti</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1ea93998-be9c-4ae6-b87a-1279a5c89619" t="r" /> -</Morph> -<Msa> -<objsur guid="35967ee3-872d-4b56-ae00-e643fda7e9f3" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="356e958b-1eea-4034-901e-05ba8f863b99" ownerguid="0037693a-ae42-4e5c-85f5-10a05482d4ee"> -<ExampleWords> -<AUni ws="en">et cetera, etc., and what not, and so forth, and the like, and on and on, ... [ellipsis]</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words are used to end a list of things to indicate that there are more things in the list?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="356f8763-1497-4290-8a4b-9e38e6377106" ownerguid="a8197bd1-918e-45e4-b312-be565f0c1f52"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shag</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shag</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shaq</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shaq</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shaq</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a855a64d-1bb8-44af-b5f0-302d292c4df2" t="r" /> -</Morph> -<Msa> -<objsur guid="dc53e817-8c9f-407c-9e09-cc7f8ae7e19f" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="357552ba-e18b-4cce-b517-67ab944a961f" ownerguid="d2981cc1-0ce5-43b9-983a-d2c472277b4e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">candy</AUni> -<AUni ws="es">caramelos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="82fb6886-5f72-4588-9465-ab5017b06cf2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="35767d2d-07d0-4514-966d-bdafa6beddff" ownerguid="15fb022e-1b45-41e9-bd8a-09ddc9dc6acd"> -<ExampleWords> -<AUni ws="en">determination, ambition, commitment, drive, endurance, perseverance, pertinacity, resolve, spirit, fighting spirit, steadfastness, sticktoitiveness, tenacity, will, willpower</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the quality of being determined?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="35769d48-f104-4325-9b9e-ce7aa56e8e3f" ownerguid="9f845bde-606d-4abd-b5e5-dc788512c578"> -<Form> -<AUni ws="qvm-x-ach">löma</AUni> -<AUni ws="qvm-x-acl">löma</AUni> -<AUni ws="qvm-x-akh">löma</AUni> -<AUni ws="qvm-x-akl">löma</AUni> -<AUni ws="qvm-x-ame">löma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3577f665-7a3f-4f8f-bcfd-fd5ed4a9f8e1" ownerguid="5718fcc8-1eba-4b8d-9b6b-0c8349f53f80"> -<ExampleWords> -<AUni ws="en">hit, on target</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to hitting a target?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3579b94e-f625-42b2-9419-0a18bd636a1f" ownerguid="cc0fbaac-6af7-4c71-98a1-c85c10225719"> -<Form> -<AUni ws="qvm-x-ach">ticu</AUni> -<AUni ws="qvm-x-acl">ticu; ticu; tico</AUni> -<AUni ws="qvm-x-akh">tiku</AUni> -<AUni ws="qvm-x-akl">tiku; tiku; tiko</AUni> -<AUni ws="qvm-x-ame">tiku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmPossibilityList" guid="3579e0a0-4c90-4c4b-acf1-fb1a9b364c27" ownerguid="969d7d6f-ba94-4fcd-a478-0d128eb9d423"> -<DateCreated val="2022-9-23 16:55:24.356" /> -<DateModified val="2022-9-23 16:55:24.356" /> -<Depth val="127" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="True" /> -<IsVernacular val="False" /> -<ItemClsid val="5049" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="es">Parts of Speech for Spanish Reversal Index</AUni> -</Name> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="0" /> -</rt> -<rt class="LexExampleSentence" guid="357ab8f3-34b2-4ee2-9fd1-10030912850a" ownerguid="05b180cd-a269-45fa-8c67-1d3aa4c6356b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">NUM 16.40 Tsaynoqpami Aarónpita miraqkunala \nd Tayta Diospa \nd* nawpancho qoshtatsinanpaq karkaykan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="357f6258-1d36-4306-96ef-f556d794c7e4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shapu</AUni> -<AUni ws="qvm-x-acl">shapu; shapo</AUni> -<AUni ws="qvm-x-akh">shapu</AUni> -<AUni ws="qvm-x-akl">shapu; shapo</AUni> -<AUni ws="qvm-x-ame">shapu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shapu</AUni> -<AUni ws="qvm-x-acl">*shapu</AUni> -<AUni ws="qvm-x-akh">*shapu</AUni> -<AUni ws="qvm-x-akl">*shapu</AUni> -<AUni ws="qvm-x-ame">*shapu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.549" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b88f97b6-e97d-46e3-90c3-8e5e4269edfd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shapu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="00228eeb-c95e-4beb-96ff-96e8cf3418ae" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3660de70-f3bf-42b4-8e4b-955040df4bab" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shapu 
\entryTyp root 
\gENG 
\gSPN 
\e *shapu 
\c V1 
\ach shapu 
\akh shapu 
\acl shapu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shapo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shapu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shapo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shapu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="3580bb8b-c0d5-4af8-ac76-7b53f2a50b6b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">borra:chu</AUni> -<AUni ws="qvm-x-acl">borra:chu; borra:chu; borra:cho</AUni> -<AUni ws="qvm-x-akh">borra:chu</AUni> -<AUni ws="qvm-x-akl">borra:chu; borra:chu; borra:cho</AUni> -<AUni ws="qvm-x-ame">borra:chu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+borracho</AUni> -<AUni ws="qvm-x-acl">+borracho</AUni> -<AUni ws="qvm-x-akh">+borracho</AUni> -<AUni ws="qvm-x-akl">+borracho</AUni> -<AUni ws="qvm-x-ame">+borracho</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.979" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2bf116b4-8117-4ab7-90f4-63b302e09533" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+borracho</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="055c2b3e-91c7-4b4f-aa06-8d3a3d6dbe2f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f597411c-16e3-43fa-bd1d-ce57b41bdc37" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +borracho 
\entryTyp root 
\gENG drunkard 
\gSPN borracho 
\e +borracho 
\c N0 
\ach borra:chu 
\akh borra:chu 
\acl borra:chu / _# 
\acl borra:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl borra:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl borra:chu / _# 
\akl borra:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl borra:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame borra:chu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="358189f8-6a0b-427a-bfde-a5f72e8f3875"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chaccha</AUni> -<AUni ws="qvm-x-acl">chaccha</AUni> -<AUni ws="qvm-x-akh">chakcha</AUni> -<AUni ws="qvm-x-akl">chakcha</AUni> -<AUni ws="qvm-x-ame">chakcha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chakcha</AUni> -<AUni ws="qvm-x-acl">*chakcha</AUni> -<AUni ws="qvm-x-akh">*chakcha</AUni> -<AUni ws="qvm-x-akl">*chakcha</AUni> -<AUni ws="qvm-x-ame">*chakcha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.264" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2b51c504-604d-47b8-8b37-91ddb9278407" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chakcha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="682f6ac5-10c1-41ff-8519-faaf5d114484" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="068a39b4-00a3-45ee-bbc1-eb6240b93f48" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chakcha 
\entryTyp root 
\gENG stand.out 
\gSPN parado 
\e *chakcha 
\c N0 
\ach chaccha 
\akh chakcha 
\acl chaccha 
\akl chakcha 
\ame chakcha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="35858020-0102-4fe3-a239-fa4df7199979"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">regui</AUni> -<AUni ws="qvm-x-acl">regui; regue</AUni> -<AUni ws="qvm-x-akh">reqi</AUni> -<AUni ws="qvm-x-akl">reqi; reqe</AUni> -<AUni ws="qvm-x-ame">riqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*riqsi</AUni> -<AUni ws="qvm-x-acl">*riqsi</AUni> -<AUni ws="qvm-x-akh">*riqsi</AUni> -<AUni ws="qvm-x-akl">*riqsi</AUni> -<AUni ws="qvm-x-ame">*riqsi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.368" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="79408083-34c6-4667-a6da-4780f8e41e51" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*riqsi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="669363a9-6784-4258-afcb-e8579533eaf6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="df747b83-4b1e-4658-89b4-a65608c737a7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *riqsi 
\entryTyp root 
\gENG know 
\gSPN conocer 
\e *riqsi 
\c V2 
\mp +FinalI 
\ach regui 
\akh reqi 
\acl regui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl regue +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl reqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl reqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame riqi 
\mcc *riqsi / ~_ ADV2 JUST.V 
\mcc *riqsi / ~_ INF GEN JUST.V</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="3586c15a-a93d-44f2-b62a-61e82852e84e" ownerguid="f47e971c-6c4f-4043-9748-90e387f2cc3e"> -<Form> -<AUni ws="qvm-x-ach">cerca</AUni> -<AUni ws="qvm-x-acl">cerca</AUni> -<AUni ws="qvm-x-akh">cerca</AUni> -<AUni ws="qvm-x-akl">cerca</AUni> -<AUni ws="qvm-x-ame">cerca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="35891df2-2701-4710-bb17-b6677a410c44" ownerguid="d219ca82-8616-423d-a266-758f621759e6"> -<Form> -<AUni ws="qvm-x-ach">shilpi</AUni> -<AUni ws="qvm-x-acl">shilpi; shilpi; shilpe</AUni> -<AUni ws="qvm-x-akh">shilpi</AUni> -<AUni ws="qvm-x-akl">shilpi; shilpi; shilpe</AUni> -<AUni ws="qvm-x-ame">shilpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="358dad69-ddfb-4c37-8854-e4f57d51c3c4" ownerguid="3ca50578-7cab-42f1-aada-779844ac936d"> -<Form> -<AUni ws="qvm-x-ach">tuca</AUni> -<AUni ws="qvm-x-acl">tuca</AUni> -<AUni ws="qvm-x-akh">tuka</AUni> -<AUni ws="qvm-x-akl">tuka</AUni> -<AUni ws="qvm-x-ame">tuka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3590432f-19ad-4ecc-89b9-7d7ab3a5d567" ownerguid="11592f63-a052-42c5-ad1a-264986616e3d"> -<Form> -<AUni ws="qvm-x-ach">airi; aire</AUni> -<AUni ws="qvm-x-acl">airi; airi; aire</AUni> -<AUni ws="qvm-x-akh">airi; aire</AUni> -<AUni ws="qvm-x-akl">airi; airi; aire</AUni> -<AUni ws="qvm-x-ame">airi; aire</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3590bdfb-1aca-4060-8ea8-e477cced2fa2" ownerguid="43cb3488-711b-4d9d-9d0e-03d0c1f6eb8b"> -<ExampleWords> -<AUni ws="en">humiliated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to feeling very ashamed?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="35953982-46dd-44c8-b697-ec76b4ba62f3" ownerguid="0622d3f7-1ab2-482b-9f9c-9c101cd35182"> -<ExampleWords> -<AUni ws="en">season, rainy season, long rains, short rains, dry season, cold season, hot season</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a season related to the weather?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="35967ee3-872d-4b56-ae00-e643fda7e9f3" ownerguid="af8b0d9b-2175-4995-a70d-c58ea78c9b27"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3596a5ba-f677-4047-b407-0980dfa44bc8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">centi:metru</AUni> -<AUni ws="qvm-x-acl">centi:metru; centi:metru; centi:metro</AUni> -<AUni ws="qvm-x-akh">centi:metru</AUni> -<AUni ws="qvm-x-akl">centi:metru; centi:metru; centi:metro</AUni> -<AUni ws="qvm-x-ame">centi:metru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+centímetro.1</AUni> -<AUni ws="qvm-x-acl">+centímetro.1</AUni> -<AUni ws="qvm-x-akh">+centímetro.1</AUni> -<AUni ws="qvm-x-akl">+centímetro.1</AUni> -<AUni ws="qvm-x-ame">+centímetro.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.110" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="94f29c8c-83fd-41ee-bbc7-5a240ef7fc7b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+centímetro.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f829581b-8169-4843-a74c-21fd704d6b9d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="879d2c0d-31c0-4946-b832-5c21b74e6452" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +centímetro.1 
\entryTyp root 
\gENG 
\gSPN 
\e +centímetro.1 
\c N0 
\ach centi:metru 
\akh centi:metru 
\acl centi:metru / _# 
\acl centi:metru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl centi:metro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl centi:metru / _# 
\akl centi:metru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl centi:metro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame centi:metru</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="35994c9e-faa0-4c61-a45a-d52c8bbbed75" ownerguid="9e87dc31-103d-49fd-97bd-d459c7c4f0c5"> -<Form> -<AUni ws="qvm-x-ach">forma</AUni> -<AUni ws="qvm-x-acl">forma</AUni> -<AUni ws="qvm-x-akh">forma</AUni> -<AUni ws="qvm-x-akl">forma</AUni> -<AUni ws="qvm-x-ame">forma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="359ce429-d763-4c3b-ba3e-c41941b9edd1" ownerguid="35da454a-cfbd-4aa4-8290-bf1abf8543d3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">amputee</AUni> -<AUni ws="es">amputado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c65e8453-53ae-4dd3-a65c-693b85536a3b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="35a24cfb-98cd-485d-afe6-7ff7eedb3d23" ownerguid="7f1b2fc4-6bac-4581-a920-44c514817783"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">suedra</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">suedra</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">suedra</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">suedra</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">suedra</Run> -</AStr> -</Form> -<Morph> -<objsur guid="9c84b0d7-347a-41f4-8777-e19188698650" t="r" /> -</Morph> -<Msa> -<objsur guid="aecaad50-2be5-4df2-9882-5fdc32055323" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="35a3855a-00e1-4bc8-8f79-f582531c331a" ownerguid="2bdfe506-0a28-45bd-81e1-44dcedcc262a"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="35a89a55-d852-4ca8-8863-4314f180cd91" ownerguid="c1722a8f-173e-4169-b0de-2d53df2a428a"> -<Form> -<AUni ws="qvm-x-ach">shga</AUni> -<AUni ws="qvm-x-acl">shga</AUni> -<AUni ws="qvm-x-akh">shqa</AUni> -<AUni ws="qvm-x-akl">shqa</AUni> -<AUni ws="qvm-x-ame">shqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="35a9da32-53ee-44fa-9c65-5a15f88ad283" ownerguid="69541573-f845-4e77-91f6-1e3551fc6c82"> -<Abbreviation> -<AUni ws="en">9.7.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.731" /> -<DateModified val="2022-9-23 16:55:8.731" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the proper names of highways, roads, streets, and trails in the language area. If there are many such names, only include the important names (e.g. King's Highway) or commonly used names (e.g. Main Street).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Names of streets</AUni> -</Name> -<Questions> -<objsur guid="d36725fa-a951-4289-8cdb-9c4a6b3dafb3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="35acdd1a-0ca5-446c-9192-97c42b36a3f3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chapsa</AUni> -<AUni ws="qvm-x-acl">chapsa</AUni> -<AUni ws="qvm-x-akh">chapsa</AUni> -<AUni ws="qvm-x-akl">chapsa</AUni> -<AUni ws="qvm-x-ame">chapsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chapsa</AUni> -<AUni ws="qvm-x-acl">*chapsa</AUni> -<AUni ws="qvm-x-akh">*chapsa</AUni> -<AUni ws="qvm-x-akl">*chapsa</AUni> -<AUni ws="qvm-x-ame">*chapsa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.284" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4c096914-0a69-42dd-a7ad-a8e47d1c2ed3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chapsa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="45ee963d-2666-443c-8098-defa07c513e0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="86f3e67a-69df-4bed-aafa-e3deaeb26e90" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chapsa 
\entryTyp root 
\gENG green.twig 
\gSPN rama 
\e *chapsa 
\c N0 
\ach chapsa 
\akh chapsa 
\acl chapsa 
\akl chapsa 
\ame chapsa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="35afb080-7a99-4e03-8f60-6219c8777501" ownerguid="b47d2604-8b23-41e9-9158-01526dd83894"> -<ExampleWords> -<AUni ws="en">world (adj), global, worldwide, universal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that affects the whole world?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="35b0bc44-8268-4507-b094-d94566452bc1" ownerguid="7096da32-2828-4992-8f07-e4bced3312a0"> -<Form> -<AUni ws="qvm-x-ach">macha</AUni> -<AUni ws="qvm-x-acl">macha</AUni> -<AUni ws="qvm-x-akh">macha</AUni> -<AUni ws="qvm-x-akl">macha</AUni> -<AUni ws="qvm-x-ame">macha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="35b11855-77fb-4ad7-8299-c546b2df8ac2" ownerguid="e7b229cb-037f-4f90-9be8-406afc73735d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="35b12a7a-2051-4614-92bd-4f3518a8c964"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">an</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="35b3e539-e823-4c12-8991-18397c27b643" ownerguid="f43ea635-fc56-4aae-8450-ad5ff77cec24"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="35b617b3-6503-4e5e-aff6-fccfe4730f9e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">venena</AUni> -<AUni ws="qvm-x-acl">venena</AUni> -<AUni ws="qvm-x-akh">venena</AUni> -<AUni ws="qvm-x-akl">venena</AUni> -<AUni ws="qvm-x-ame">venena</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+envenenar</AUni> -<AUni ws="qvm-x-acl">+envenenar</AUni> -<AUni ws="qvm-x-akh">+envenenar</AUni> -<AUni ws="qvm-x-akl">+envenenar</AUni> -<AUni ws="qvm-x-ame">+envenenar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.477" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="760ddf8d-f2c8-4ff0-af42-61c828345412" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+envenenar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="21163ac2-bda6-4506-851d-daaa2b45efc5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="268eea0d-a87c-4c9e-814e-b80239fccb6e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +envenenar 
\entryTyp root 
\gENG 
\gSPN 
\e +envenenar 
\c V1 
\ach venena 
\akh venena 
\acl venena 
\akl venena 
\ame venena</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="35b7d4ef-54f8-422f-bfa2-9c762fbc1726" ownerguid="339f54a5-125b-435f-bf37-cfc2a2bd26d3"> -<ExampleWords> -<AUni ws="en">stare, glare, roll your eyes, wink, blink, lift your eyes, raise your eyebrows, narrow your eyebrows, wrinkle your brow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to an expression using the eyes?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="35b8c66c-1927-4919-86bc-09776c2f4b10" ownerguid="498336e7-b7bd-48ec-bdbd-a5e68d52fbda"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pti</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pti</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pti</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b2772da-2fbd-4846-99c3-d3f919125916" t="r" /> -</Morph> -<Msa> -<objsur guid="6a97cf20-558d-4866-ba04-48c4807bc533" t="r" /> -</Msa> -<Sense> -<objsur guid="5c9f1fed-2e6d-4ad2-b804-9d3f09a277d3" t="r" /> -</Sense> -</rt> -<rt class="WfiWordform" guid="35ba743d-f225-4c85-befc-1b1a5cce4baa"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">PRF</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="35bd4f3a-30ed-4f96-9f2c-b0fce2865820" ownerguid="d974afac-8da9-4e3d-840e-412a093ad72d"> -<Form> -<AUni ws="qvm-x-ach">mishqui</AUni> -<AUni ws="qvm-x-acl">mishqui; mishqui; mishque</AUni> -<AUni ws="qvm-x-akh">mishki</AUni> -<AUni ws="qvm-x-akl">mishki; mishki; mishke</AUni> -<AUni ws="qvm-x-ame">mishki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="35bd5de7-6155-406b-aa0c-5736e3901c1d" ownerguid="2827d3e2-eec1-4f19-a6a9-8dbb4cc1699c"> -<Form> -<AUni ws="qvm-x-ach">mala</AUni> -<AUni ws="qvm-x-acl">mala</AUni> -<AUni ws="qvm-x-akh">mala</AUni> -<AUni ws="qvm-x-akl">mala</AUni> -<AUni ws="qvm-x-ame">mala</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="35be4deb-c0c5-4227-bb03-65c77932f2a7" ownerguid="cb99a086-8c6d-4f90-81db-6afa69ae5455"> -<ExampleWords> -<AUni ws="en">squeak</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What sounds do mice make?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="35bf9038-d3ab-4f6d-9c15-fb26035f4876" ownerguid="abbec739-657c-4b04-9e4f-8dd9c2a1b43b"> -<Form> -<AUni ws="qvm-x-ach">ruëda</AUni> -<AUni ws="qvm-x-acl">ruëda</AUni> -<AUni ws="qvm-x-akh">ruëda</AUni> -<AUni ws="qvm-x-akl">ruëda</AUni> -<AUni ws="qvm-x-ame">ruëda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="35c301f7-eb96-4a0e-9c1c-b13b0c12687f" ownerguid="0e590da7-c027-42e0-b580-f65686cee461"> -<ExampleWords> -<AUni ws="en">surprise (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something that causes someone to feel surprised?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="35c44c66-c5cf-4491-a5cf-f93f1c130932" ownerguid="e27adda9-0761-4b7f-abbf-24938ce1c01a"> -<ExampleWords> -<AUni ws="en">cast</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to all the actors?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="35c451b8-6059-48ca-a368-ff981fabc02d" ownerguid="975d0109-1bba-4b0e-85b8-2c6b51c8e074"> -<ExampleWords> -<AUni ws="en">be sitting, be seated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being in a sitting position?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="35c4dc79-e74e-44e6-bdf3-cb03834ddbea" ownerguid="21f21658-a69a-491c-a37b-156a8f4ad3fb"> -<ExampleWords> -<AUni ws="en">be out of place, misfit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to someone being unsuitable for a particular place?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="35c6387b-2fbd-418c-bdb5-6b4b72bca235" ownerguid="25bf6690-6ed1-42e9-8a4a-3518f9cf382c"> -<ExampleWords> -<AUni ws="en">heterodoxy, sect, denomination, dissent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to disagreement over doctrine?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="35c899e4-193b-470c-93f4-01cb1a7be14a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">firma</AUni> -<AUni ws="qvm-x-acl">firma</AUni> -<AUni ws="qvm-x-akh">firma</AUni> -<AUni ws="qvm-x-akl">firma</AUni> -<AUni ws="qvm-x-ame">firma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+firmar</AUni> -<AUni ws="qvm-x-acl">+firmar</AUni> -<AUni ws="qvm-x-akh">+firmar</AUni> -<AUni ws="qvm-x-akl">+firmar</AUni> -<AUni ws="qvm-x-ame">+firmar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.558" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="71504d39-3404-4f79-b2ba-55f0501c4614" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+firmar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1ce21dcd-a762-403d-b70f-f81353bafa16" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0bc58878-07d9-47c3-bf2d-f9272a37c53b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +firmar 
\entryTyp root 
\gENG sign 
\gSPN firmar 
\e +firmar 
\c V1 
\ach firma 
\akh firma 
\acl firma 
\akl firma 
\ame firma</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="35cb6809-a076-4c8c-8a6d-73e213c83614"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">ashirqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="35cc80ae-bf09-4ba6-ae84-2f3f0fc4c6b1" ownerguid="14e9c20c-6eb5-49a4-a03f-3be26a934500"> -<ExampleWords> -<AUni ws="en">surface, bottom, abyssal depths, abyssal plain, thermal layer, seamount, continental shelf, shallows, the depths, the deep, open sea</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the parts of bodies of water?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="35ccf696-a683-44f3-b126-6f63f443073b" ownerguid="4651aef1-e18f-481e-9c3e-d9dfff4a6b51"> -<ExampleWords> -<AUni ws="en">lonely, lonesome</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe someone who is alone and unhappy?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="35cde277-d423-4d48-ba2d-7dd065577b1f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pispa</AUni> -<AUni ws="qvm-x-acl">pispa</AUni> -<AUni ws="qvm-x-akh">pispa</AUni> -<AUni ws="qvm-x-akl">pispa</AUni> -<AUni ws="qvm-x-ame">pispa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pispa</AUni> -<AUni ws="qvm-x-acl">*pispa</AUni> -<AUni ws="qvm-x-akh">*pispa</AUni> -<AUni ws="qvm-x-akl">*pispa</AUni> -<AUni ws="qvm-x-ame">*pispa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.861" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="682255eb-9217-40d8-8f11-7aadecf4035c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pispa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="33f1853a-cca8-4a19-9efa-fc9fd540e3ab" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4346339c-6799-4aee-a108-04c6bc677e1e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pispa 
\entryTyp root 
\gENG chap 
\gSPN hender 
\e *pispa 
\c V1 
\ach pispa 
\akh pispa 
\acl pispa 
\akl pispa 
\ame pispa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntryType" guid="35cee792-74c8-444e-a9b7-ed0461d4d3b7" ownerguid="1ee09905-63dd-4c7a-a9bd-1d496743ccd6"> -<Abbreviation> -<AUni ws="en">ph. v.</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">A combination of a lexical verb and a verbal particle that forms a single semantic and syntactic unit.</Run> -</AStr> -</Description> -<Discussion> -<objsur guid="b641f0de-ea5e-11de-9395-0013722f8dec" t="o" /> -</Discussion> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Phrasal Verb</AUni> -</Name> -<ReverseAbbr> -<AUni ws="en">ph. v. of</AUni> -</ReverseAbbr> -<ReverseName> -<AUni ws="en">Phrasal Verb of</AUni> -</ReverseName> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="35d41ab8-c945-4cee-acc7-5dbab0ef059d" ownerguid="267b98aa-e17c-4ebb-a752-ed4210701867"> -<ExampleWords> -<AUni ws="en">call attention to, bring something to someone's attention, point out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to trying to get someone to notice something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="35d9a8b4-68af-46c4-94b9-79905c29780e" ownerguid="1a79a88c-eaab-46ea-8f23-d6a3d560136c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="d90a5bb0-7fcd-4c2f-9d73-2609b77c9e3b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="35da19f3-7b32-4b67-ac53-b7893d85a83e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">que:ca</AUni> -<AUni ws="qvm-x-acl">que:ca</AUni> -<AUni ws="qvm-x-akh">que:ca</AUni> -<AUni ws="qvm-x-akl">que:ca</AUni> -<AUni ws="qvm-x-ame">que:ca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+queca</AUni> -<AUni ws="qvm-x-acl">+queca</AUni> -<AUni ws="qvm-x-akh">+queca</AUni> -<AUni ws="qvm-x-akl">+queca</AUni> -<AUni ws="qvm-x-ame">+queca</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.821" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4cae13ab-03f4-4a1f-8d18-f78dc049a446" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+queca</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="50798d1a-78b4-4752-849f-27048afb7a8e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6b2ac337-e1da-4601-b0c6-2263b1a0e202" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +queca 
\entryTyp root 
\gENG limestone 
\gSPN 
\e +queca 
\c N0 
\ach que:ca 
\akh que:ca 
\acl que:ca 
\akl que:ca 
\ame que:ca</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="35da454a-cfbd-4aa4-8290-bf1abf8543d3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ushu</AUni> -<AUni ws="qvm-x-acl">ushu; ushu; usho</AUni> -<AUni ws="qvm-x-akh">ushu</AUni> -<AUni ws="qvm-x-akl">ushu; ushu; usho</AUni> -<AUni ws="qvm-x-ame">ushu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ushu</AUni> -<AUni ws="qvm-x-acl">*ushu</AUni> -<AUni ws="qvm-x-akh">*ushu</AUni> -<AUni ws="qvm-x-akl">*ushu</AUni> -<AUni ws="qvm-x-ame">*ushu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.292" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f4004ebb-5819-43e4-878b-f87e01a0b155" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ushu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c65e8453-53ae-4dd3-a65c-693b85536a3b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="359ce429-d763-4c3b-ba3e-c41941b9edd1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ushu 
\entryTyp root 
\gENG amputee 
\gSPN amputado 
\e *ushu 
\c N0 
\ach ushu 
\akh ushu 
\acl ushu / _# 
\acl ushu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl usho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ushu / _# 
\akl ushu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl usho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ushu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="35da8e1e-d22b-422e-a143-2dfd31e96439"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tra:ji; tra:ji</AUni> -<AUni ws="qvm-x-acl">tra:ji; tra:ji; tra:je</AUni> -<AUni ws="qvm-x-akh">tra:ji; tra:ji</AUni> -<AUni ws="qvm-x-akl">tra:ji; tra:ji; tra:je</AUni> -<AUni ws="qvm-x-ame">tra:ji; tra:ji</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+traje</AUni> -<AUni ws="qvm-x-acl">+traje</AUni> -<AUni ws="qvm-x-akh">+traje</AUni> -<AUni ws="qvm-x-akl">+traje</AUni> -<AUni ws="qvm-x-ame">+traje</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.460" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="79205602-7409-46e6-9f2c-2b2ce91392f5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+traje</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c071a407-0b36-47a0-bb9b-204c44382e6d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4751cefe-9455-438e-a12c-b9d17b930ebd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +traje 
\entryTyp root 
\gENG skirt 
\gSPN falda 
\e +traje 
\c N0 
\mp +FinalI 
\ach tra:ji / _# 
\ach tra:ji / ~_# 
\akh tra:ji / _# 
\akh tra:ji / ~_# 
\acl tra:ji / _# 
\acl tra:ji +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tra:je +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tra:ji / _# 
\akl tra:ji +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tra:je +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tra:ji / _# 
\ame tra:ji / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="35db5edd-524e-495b-95a3-2ab04d0c853a" ownerguid="a6797fd1-e368-422b-9710-96e0af39552d"> -<ExampleWords> -<AUni ws="en">acceptable, satisfactory, normal, pleasing, polite, well mannered</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe the behavior of someone who acts acceptably?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="35db829b-819b-4f9c-bc9a-338558213919" ownerguid="d086c2ad-2d11-4250-a25a-dc6538439db6"> -<ExampleWords> -<AUni ws="en">double (adj), couplet, duplex</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something with two parts?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="35dc9c39-dd28-4ab7-85aa-0de42829394a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pucla</AUni> -<AUni ws="qvm-x-acl">pucla</AUni> -<AUni ws="qvm-x-akh">pukla</AUni> -<AUni ws="qvm-x-akl">pukla</AUni> -<AUni ws="qvm-x-ame">pukla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puklla</AUni> -<AUni ws="qvm-x-acl">*puklla</AUni> -<AUni ws="qvm-x-akh">*puklla</AUni> -<AUni ws="qvm-x-akl">*puklla</AUni> -<AUni ws="qvm-x-ame">*puklla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.980" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8411f403-d36c-4fd4-bd5f-4db257e2dda2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puklla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="82b535a1-2dbe-47e8-80bb-1def69778fec" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cba15e5a-705c-453e-b762-a5a0c960b7c4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puklla 
\entryTyp root 
\gENG play 
\gSPN jugar 
\e *puklla 
\c V2 
\ach pucla 
\akh pukla 
\acl pucla 
\akl pukla 
\ame pukla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="35dc9de6-4b48-4512-8154-96deaaa5ebf3" ownerguid="29282c30-0be7-4a11-8742-bb1ff919cfa6"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="35dce600-289a-454e-b3a4-859e301c5793" ownerguid="0656cd5e-641f-46f3-bcad-6f643727a344"> -<ExampleWords> -<AUni ws="en">latest, up-to-date, up-to-the-minute</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe news of something that happened recently?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="35dcff53-e5cc-4437-8a67-610e4df296d4" ownerguid="37dda99b-483f-41dc-aa75-fd02c28bdb9d"> -<Form> -<AUni ws="qvm-x-ach">jornal</AUni> -<AUni ws="qvm-x-acl">jornal</AUni> -<AUni ws="qvm-x-akh">jornal</AUni> -<AUni ws="qvm-x-akl">jornal</AUni> -<AUni ws="qvm-x-ame">jornal</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="35dea042-a941-4ab3-9e2b-559d3353bc12" ownerguid="97cfa993-e9f4-4f63-82d4-feaf1134c864"> -<Form> -<AUni ws="qvm-x-ach">wiuya</AUni> -<AUni ws="qvm-x-acl">wiuya</AUni> -<AUni ws="qvm-x-akh">wiwya</AUni> -<AUni ws="qvm-x-akl">wiwya</AUni> -<AUni ws="qvm-x-ame">wiwya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="35e00b14-d94b-4030-aea1-3f86511d0ac5" ownerguid="3335ce6c-d135-4ea8-8a60-0858a3cbf893"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="35e07006-0cc0-4bae-bc1c-e49df3f245a2" ownerguid="0ac5e5f9-e7fe-4d37-a631-eab1ceb1f8ae"> -<ExampleWords> -<AUni ws="en">mountain, mount, hill, volcano, plateau, moor, butte, crag, dome, height, highland, upland, uplift, mound, formation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What types of mountains are there?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="35e08c7e-9471-4a84-915a-c225d988984f" ownerguid="435b142e-1904-4c51-ac7d-1d186a668d80"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">what.do</AUni> -<AUni ws="es">que.hacer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="46d848a1-f02c-464d-ae87-70ad086b853d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="35e3e1ba-6cd2-49f2-97d7-f387418c8cf3" ownerguid="9ba9f3ff-0c6e-466d-ad92-67c97b96fcb1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">half</AUni> -<AUni ws="es">medio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3c61cce2-042c-4338-b08d-ecf2c0e3b271" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="35e61ec4-0542-4583-b5da-0aa5e31a35aa" ownerguid="50db27b5-89eb-4ffb-af82-566f51c8ec0b"> -<Abbreviation> -<AUni ws="en">2.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.63" /> -<DateModified val="2022-9-23 16:55:8.63" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to giving birth and being born.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>23C Birth, Procreation</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Birth</AUni> -</Name> -<OcmCodes> -<Uni>163 Birth Statistics; 840 Reproduction; 841 Menstruation; 844 Childbirth; 846 Postnatal Care</Uni> -</OcmCodes> -<Questions> -<objsur guid="96953f8f-d868-4057-bb76-5c310aa133d6" t="o" /> -<objsur guid="29cd7e81-0315-490f-b1bf-ee8c4343acf9" t="o" /> -<objsur guid="a4aeac4c-8591-463a-8161-6b0f1d40f2dd" t="o" /> -<objsur guid="84ca0cf6-9ab8-4b01-a582-180b4ffa4a05" t="o" /> -<objsur guid="0c83dc82-25d9-42d2-ae23-8423269b934d" t="o" /> -<objsur guid="a3358e05-9a48-4ca2-a9f9-a61aaf6789ba" t="o" /> -<objsur guid="0f20536c-9b9a-4ab4-bb81-e87d8c68b7e4" t="o" /> -<objsur guid="69a9ca98-a970-4195-8050-3ea56b6367a2" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="3cb4c07c-8760-4ff9-8d45-1c0bed80ffb3" t="o" /> -<objsur guid="bd002dfa-e842-47d6-b11b-3c213cbf133a" t="o" /> -<objsur guid="dbebc3bd-2d01-4d62-a009-866c18ee3527" t="o" /> -<objsur guid="56984b2b-3417-49b4-a082-1a383551a9e9" t="o" /> -<objsur guid="5c468a85-e45f-4ea0-a3ba-68feda7e85a1" t="o" /> -<objsur guid="f3d162d7-da79-4ce4-9610-040f03b57d9d" t="o" /> -<objsur guid="f4f99472-0b23-42b9-8b51-1d56fe24715b" t="o" /> -<objsur guid="447f258b-2160-42c7-9431-ffeeb86edcb8" t="o" /> -<objsur guid="34a02a17-23fb-4260-9f97-c125842a3594" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="35e9ddaf-4fad-47bb-8ff0-3f9c5c89bee1" ownerguid="8662aa19-df80-4dc7-b6b3-270db0d1456a"> -<Form> -<AUni ws="qvm-x-ach">wacwagta</AUni> -<AUni ws="qvm-x-acl">wacwagta</AUni> -<AUni ws="qvm-x-akh">wakwaqta</AUni> -<AUni ws="qvm-x-akl">wakwaqta</AUni> -<AUni ws="qvm-x-ame">wakwaqta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="35eab8a3-6cae-4fa1-bfc9-538c0aafab10" ownerguid="3803a235-d25f-4e2d-bc02-08ccf1e37b94"> -<Form> -<AUni ws="qvm-x-ach">mamay</AUni> -<AUni ws="qvm-x-acl">mamay</AUni> -<AUni ws="qvm-x-akh">mamay</AUni> -<AUni ws="qvm-x-akl">mamay</AUni> -<AUni ws="qvm-x-ame">mamay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="35ec485f-9c2f-4672-aa8f-55fd6b85be3e" ownerguid="f11be6f7-2d7c-4e70-a319-c0e2114c7fbb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">brain</AUni> -<AUni ws="es">cerebro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1346aba1-8d16-4d86-8f50-d6de8aecf4f2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="35ef5de3-54ad-4393-9d81-69ded6337bf5" ownerguid="78ee36f3-ec9d-454d-ae94-067fc167287d"> -<Form> -<AUni ws="qvm-x-ach">shanari</AUni> -<AUni ws="qvm-x-acl">shanari; shanare</AUni> -<AUni ws="qvm-x-akh">shanari</AUni> -<AUni ws="qvm-x-akl">shanari; shanare</AUni> -<AUni ws="qvm-x-ame">shanari</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="35f13d30-eab2-4d41-9fb1-fc26f33adbd2" ownerguid="a1959b00-9702-4b45-ac46-93f18d3bc5e6"> -<ExampleWords> -<AUni ws="en">breathe, rise and fall (of the chest)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to breathing?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="35f2fac5-d35a-43d5-8f00-92c5addfca93" ownerguid="8294ca3f-0aed-4517-bdc9-dc5ee6763c29"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">approach</AUni> -<AUni ws="es">acercar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8b31e840-a605-465b-a2a9-466c41264581" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="35f7b36d-56e7-44ef-a104-261f7dd385e7" ownerguid="d01f1c51-522e-4b35-81b3-00577dbfa3bd"> -<ExampleWords> -<AUni ws="en">color, shade, tint, hue, coloring, pigment, tincture, cast, palette, coloration, complexion, chroma, chromatic, tone</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to color?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="35fadd19-b681-4242-a2c8-78ee933d78c5" ownerguid="ed7930df-e7b4-43c9-a11a-b09521276b57"> -<ExampleWords> -<AUni ws="en">faint</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words describe something that cannot be smelled easily?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="35faefb3-7498-4735-9b05-e7035dd368fc" ownerguid="c2630384-2f72-4a96-baed-3fff03383362"> -<Abbreviation> -<AUni ws="en">6.2.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.428" /> -<DateModified val="2022-9-23 16:55:8.428" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to crop failure.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Crop failure</AUni> -</Name> -<Questions> -<objsur guid="6dd8f41e-d393-4d0e-87f8-d3bc5e9896d2" t="o" /> -<objsur guid="27876569-50ed-4bcb-869d-03ad02234416" t="o" /> -<objsur guid="61d730c8-f938-47aa-9a48-f336a30669b9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="35fd7788-3a6f-4923-bbda-feacda095234" ownerguid="e61dd088-2f71-4c91-83eb-c4d110170511"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="b09fb115-da7b-492d-89f6-d6d3cf23e981" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="35fd92de-528a-4cbd-973f-3682599dab63" ownerguid="f422a5b8-2f47-42d7-9641-0808908da9cf"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="360260ef-26ce-4609-a37f-5a35df9337d7" ownerguid="27048124-c204-4585-9997-c51728f085d6"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Thank you. Thanks. That's very kind of you. That's very good of you. I appreciate it. You shouldn't have, You've saved my life. I'd like to thank. Many thanks. Bless you. Blessings on you. Much obliged. I'm indebted to you. I'm in your debt. I'm beholden to you.</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(5) What do people say when they thank someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="360332db-226c-4218-a03f-b523f44fdcb1" ownerguid="d93eecf7-6db3-40b9-851f-ccc8b74552fc"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="36036966-410a-453d-a8b6-ae6dc7e12b61" ownerguid="5d72af95-facd-4be2-80e9-37528f0f34b5"> -<ExampleWords> -<AUni ws="en">segment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the parts of worms?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="36041c98-0e06-4766-926b-1bc536fa383d" ownerguid="8c3afdce-2305-4cb6-8cb9-ea32c0e77e68"> -<Form> -<AUni ws="qvm-x-ach">ciëlu</AUni> -<AUni ws="qvm-x-acl">ciëlu; ciëlu; ciëlo</AUni> -<AUni ws="qvm-x-akh">ciëlu</AUni> -<AUni ws="qvm-x-akl">ciëlu; ciëlu; ciëlo</AUni> -<AUni ws="qvm-x-ame">ciëlu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="36054e37-a1d7-458f-8d20-cbeb50854eee" ownerguid="66abfbe5-e011-48de-8773-905f1b1ce215"> -<ExampleWords> -<AUni ws="en">clay, lump of clay</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to clay?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="360c5abe-dc7d-441f-8800-f58700958f8c" ownerguid="18bf6c79-6399-4977-be3d-93135302d8c4"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Do something <lest> something happen.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">in order that...not, so that...not, lest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that the purpose is so that something will not happen?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="360f9f07-9aaf-465b-bb83-6a6ad9167e06" ownerguid="fdd0e73f-9587-4bc9-98da-baf9233943bf"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="83338005-464f-4e8e-96d2-2a799942a33d" t="r" /> -</Morph> -<Msa> -<objsur guid="715c8af0-d7ab-448b-a2fa-f8b36822dac0" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="3611bf7a-d338-4b2e-944d-1388e63729eb" ownerguid="1886ffc9-0a18-41ea-b2f6-c17c297f1681"> -<ExampleWords> -<AUni ws="en">mathematics, physics</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a branch of science?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="36123ffe-14d8-4198-b32c-eabd0b23e0dd" ownerguid="67931f1c-9a0c-4d18-9762-e553c132256c"> -<Abbreviation> -<AUni ws="en">6.8.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to bargaining over the price of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Bargain</AUni> -</Name> -<Questions> -<objsur guid="c24499e8-b786-4b06-9b73-f2d286049323" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="36127a72-3ce7-4ca1-a9c6-ca3ebbeb7f83" ownerguid="a7824686-a3f3-4c8a-907e-5d841cf846c8"> -<ExampleWords> -<AUni ws="en">shine, glow, gleam, blaze, shed light, radiate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a light source shining?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="3615c3d1-fd5b-40c5-80ad-80bfd6451d56" ownerguid="a3ba10f3-66e3-4ad5-8057-453b8941e497"> -<Abbreviation> -<AUni ws="en">4.8.3.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.286" /> -<DateModified val="2022-9-23 16:55:8.286" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to plundering--stealing something from an enemy during a war.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Plunder</AUni> -</Name> -<Questions> -<objsur guid="59c5c317-8c33-44b2-bbf0-c24e767ce67c" t="o" /> -<objsur guid="93c9ac70-c8f5-4f04-8419-8144710bc5b6" t="o" /> -<objsur guid="a0811c78-a31e-4818-9e53-3b7d2cddfac1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="36176d59-171b-4a0a-a0f7-a8f9857536a1" ownerguid="12fe5f6c-7f98-47ba-936a-bcd1065c2db3"> -<Abbreviation> -<AUni ws="en">7.2.2.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to moving straight without changing direction.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Move straight without turning</AUni> -</Name> -<Questions> -<objsur guid="228cf19d-02a1-4fb1-83b0-8a91b0c7206e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="361987af-ffa9-4ab4-a9fd-bed338501f3f" ownerguid="339d8e7a-d699-498d-afd3-9da240ba8565"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spread</AUni> -<AUni ws="es">desparramar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9aee1fb7-1dcc-4050-a7b8-a92cae5b1d54" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="3620a5f7-c2e8-4d68-b77d-5486a660fc41" ownerguid="a94b99e6-d195-405f-9919-77405d1ae217"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">red.potato</AUni> -<AUni ws="es">papa.roja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cf9e53e1-6d76-4dc6-bcc8-78cabc189b2d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="3620d0a2-cf9f-4f8f-8efb-10a74b607d69"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pucun</AUni> -<AUni ws="qvm-x-acl">pucun</AUni> -<AUni ws="qvm-x-akh">pukun</AUni> -<AUni ws="qvm-x-akl">pukun</AUni> -<AUni ws="qvm-x-ame">pukun</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pukun</AUni> -<AUni ws="qvm-x-acl">*pukun</AUni> -<AUni ws="qvm-x-akh">*pukun</AUni> -<AUni ws="qvm-x-akl">*pukun</AUni> -<AUni ws="qvm-x-ame">*pukun</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.982" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cbac5ff6-e276-410c-bec4-c79dcc227644" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pukun</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="141a83f7-cf8d-4a39-85bc-26602b3ed140" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3c25c524-e141-448d-a1bb-9b183fec6aad" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pukun 
\entryTyp root 
\gENG ? 
\gSPN ? 
\e *pukun 
\c N0 
\mp +FinalC 
\ach pucun 
\akh pukun 
\acl pucun 
\akl pukun 
\ame pukun</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="3621102b-734a-470d-b193-96c9f2a61fb8" ownerguid="c80b3056-5862-486d-9c65-8ecb973b5adf"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="3625b892-ccf1-42ee-af38-52b9e8ddb0c0" ownerguid="1d72c590-a3c3-470f-b0a5-ac4926b7b13b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">?</AUni> -<AUni ws="es">urdidar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0c627bd3-42d7-4308-a05d-7c7407ed81bf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3625c35c-054a-4577-87f0-9981492157a9" ownerguid="4153416a-784d-4f7c-a664-2640f7979a14"> -<ExampleWords> -<AUni ws="en">waterfall, falls, rapids, cascade, cataract, spillway, race</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a part of a river that is steep?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="362641d1-68a9-471f-a4a5-9f0d794c0ba7" ownerguid="2d0f45f3-2471-4d69-9429-76c51a12e2a8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pti</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pti</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pti</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b2772da-2fbd-4846-99c3-d3f919125916" t="r" /> -</Morph> -<Msa> -<objsur guid="6a97cf20-558d-4866-ba04-48c4807bc533" t="r" /> -</Msa> -<Sense> -<objsur guid="5c9f1fed-2e6d-4ad2-b804-9d3f09a277d3" t="r" /> -</Sense> -</rt> -<rt class="CmSemanticDomain" guid="362a2bdd-985e-4bc0-a41c-358bd1babb12" ownerguid="f595deab-1838-4ddb-9ebe-55fb3007b309"> -<Abbreviation> -<AUni ws="en">4.8.3.6.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.286" /> -<DateModified val="2022-9-23 16:55:8.286" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a spy.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Spy</AUni> -</Name> -<Questions> -<objsur guid="c41c66ce-c760-4b34-bc69-0388da0a1f39" t="o" /> -<objsur guid="78e6e00a-485e-4314-ab38-e7a61a7e4652" t="o" /> -<objsur guid="5afa69bc-38c8-4ca9-98d5-b284428e2f8b" t="o" /> -<objsur guid="f0d85714-7e60-44f0-bf85-92a09f645599" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="362d310c-2f64-450f-8996-92ec079aaa38" ownerguid="0a1b26b2-2152-45e2-9b63-4a68fca73a90"> -<ExampleWords> -<AUni ws="en">choir, ensemble, singing group, soloist, duo, trio, quartet, band, dance band, concert band, marching band, brass band, orchestra, full orchestra, string quartet, chamber orchestra</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What is a group of musicians called?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3633e03f-a6ed-400a-beb5-320010ec3684" ownerguid="d59a84e1-5e12-4cb7-b72b-15c51810ad48"> -<ExampleWords> -<AUni ws="en">divisive, disruptive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a person, force, or influence that divides a group?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3635a512-39a0-44cc-8fc0-d632d79de039" ownerguid="41c94c0d-1305-44ef-8799-972c22fa3a1e"> -<Form> -<AUni ws="qvm-x-ach">jauma</AUni> -<AUni ws="qvm-x-acl">jauma</AUni> -<AUni ws="qvm-x-akh">jawma</AUni> -<AUni ws="qvm-x-akl">jawma</AUni> -<AUni ws="qvm-x-ame">hawma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="3635f85e-cda9-4e17-a148-a437b072cea2" ownerguid="8b6ddb1f-0335-4f1a-bd7a-3a505a1a6a7c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="36372816-1267-4cbe-af02-6d9e4c0ecf5c" ownerguid="c2630384-2f72-4a96-baed-3fff03383362"> -<ExampleWords> -<AUni ws="en">ripe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe a crop that is ready to harvest?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="36378b50-7c62-431f-a1c3-b4f6fdad0ee7" ownerguid="284433df-7b37-4e63-a614-78520c483213"> -<ExampleWords> -<AUni ws="en">trot, run, wag its tail</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) How do dogs move?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3637f33f-5b3e-4d3a-86ac-1ec5da5ef2d5" ownerguid="4a5b16e0-73de-46b4-ab77-5538a7b9cbb0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="363882f3-97cb-47dc-a422-51bf2cd2d533" ownerguid="902ae190-e3c0-4d02-ba71-2045aadeb331"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bite.up</AUni> -<AUni ws="es">morder</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="18cc54c7-78b3-4062-85d6-c13cc59564a2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="363ae1b9-851d-4bf7-9430-82f713d0a2cc" ownerguid="44b6e20f-e5f5-43ff-8b32-3eec05151f47"> -<Form> -<AUni ws="qvm-x-ach">quita</AUni> -<AUni ws="qvm-x-acl">quita</AUni> -<AUni ws="qvm-x-akh">kita</AUni> -<AUni ws="qvm-x-akl">kita</AUni> -<AUni ws="qvm-x-ame">kita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="363be834-31d3-4d6f-87ae-65b2f5669eea" ownerguid="06ac577a-4d61-4898-ac9d-e3f18b7504af"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">We are safe here.; We made it to safety.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">safety, place of safety, refuge, sanctuary, shelter, safe house, safe harbor, haven, stronghold, asylum, hideout, retreat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a place where you are safe?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="363d94ce-52bd-4c68-ba70-a1682b76ada7" ownerguid="f0fa94d2-410b-4437-9250-35adfeb0fdfc"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="36412d07-fc63-4df2-9821-69f37daf5064" ownerguid="e45f9991-f49f-4c37-8646-11fced900bb0"> -<Form> -<AUni ws="qvm-x-ach">viva</AUni> -<AUni ws="qvm-x-acl">viva</AUni> -<AUni ws="qvm-x-akh">viva</AUni> -<AUni ws="qvm-x-akl">viva</AUni> -<AUni ws="qvm-x-ame">viva</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3642a1a3-9833-4b45-ba5a-a185909c64e0" ownerguid="2a62f8e4-7da3-4f37-bf44-e24033c99c00"> -<ExampleWords> -<AUni ws="en">anger (v), make someone angry, make someone mad, aggravate, antagonize, chafe, cross someone, disturb, embitter, enrage, exasperate, gall, incense, infuriate, insult (v), irk, madden, needle, nettle, offend, cause offense, peeve, perturb, pique, provoke, rankle, rile, vex, make your blood boil, make you sick, get someone going, get someone's back up, wind someone up, be like a red flag to a bull</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to causing someone to feel angry?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="36441432-e638-43f2-ad42-2b01d1d802f0" ownerguid="3d1289b3-6e97-40a4-9ffc-10e13121768d"> -<Form> -<AUni ws="qvm-x-ach">imperatïvu</AUni> -<AUni ws="qvm-x-acl">imperatïvu; imperatïvu; imperatïvo</AUni> -<AUni ws="qvm-x-akh">imperatïvu</AUni> -<AUni ws="qvm-x-akl">imperatïvu; imperatïvu; imperatïvo</AUni> -<AUni ws="qvm-x-ame">imperatïvu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3645189c-85ea-4848-b4fc-2d9d0ac11641" ownerguid="2e95bd1e-82f0-461d-8ca6-b5f1ce1fb180"> -<ExampleWords> -<AUni ws="en">fiancé, fiancée, engaged couple, bride-to-be, husband-to-be</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the people who are engaged to be married?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3647b4a3-8274-4254-986d-badd8fac9c35" ownerguid="b015f460-faeb-4aa5-b453-9e5e9ae061fe"> -<ExampleWords> -<AUni ws="en">fuddy-duddy, old fogy, old guard, traditionalist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to someone who is old fashioned?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3652af6a-b32e-4dc5-ac89-a532d4a6b958" ownerguid="26b97047-edb1-44e9-8c7b-463de9cfbe78"> -<ExampleWords> -<AUni ws="en">ram, ewe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to male or female sheep?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="36532ec0-f032-4438-bb15-968e743bee60" ownerguid="b57972fb-7816-449e-91df-7672421cf377"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ISA 2.21 Nircurmi pasaypa mantsacur gagacunapa shilincunamanpis y machaycunamanpis pacacärenga.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="365e1e94-9db7-4ef1-a1cb-28583eebcfd8" ownerguid="db17f6fd-68f7-4756-8166-2629a0407c75"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="365f692c-e1fe-4713-a23e-f9c01bf97e11" ownerguid="2ccab97a-fb98-4054-a29b-e5ceac8ca1b4"> -<Question> -<AUni ws="en">(1) What words refer to relating to God or to the spirits?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="365fdc2e-9999-4aaa-aa02-af53dd9d0e2e" ownerguid="bb268227-ccf5-4bdd-8d68-eaedb6e0ade1"> -<Category> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</Category> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="ca59eacf-a5bd-47b6-9a1d-42fd1ce9fe01" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="88713d51-2873-4c48-8cd6-f0e14b7147ef" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="3660de70-f3bf-42b4-8e4b-955040df4bab" ownerguid="357f6258-1d36-4306-96ef-f556d794c7e4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="00228eeb-c95e-4beb-96ff-96e8cf3418ae" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="36624920-468d-4bed-8af1-5747231659d0" ownerguid="0656f6a7-9a88-4c03-a8ab-ace8c0f52ebf"> -<ExampleWords> -<AUni ws="en">be illegitimate, fatherless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to being a child without a father?</AUni> -</Question> -</rt> -<rt class="StStyle" guid="366e9470-26f7-4bdf-86e4-f829784c3113" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="7d2c80cd-af87-4d56-8337-cfd389b775bb" t="r" /> -</BasedOn> -<Context val="0" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Heading 3</Uni> -</Name> -<Next> -<objsur guid="7d2c80cd-af87-4d56-8337-cfd389b775bb" t="r" /> -</Next> -<Rules> -<Prop bold="off" fontsize="12000" fontsizeUnit="mpt" italic="invert" spaceAfter="3000" spaceBefore="12000"></Prop> -</Rules> -<Structure val="0" /> -<Type val="0" /> -<Usage> -<AUni ws="en">Third-level headings (1.1.1, 1.1.2, 1.1.3)</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="LexEntry" guid="36719ebe-01da-4021-9132-3f5cf745f696"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">curur</AUni> -<AUni ws="qvm-x-acl">curur</AUni> -<AUni ws="qvm-x-akh">kurur</AUni> -<AUni ws="qvm-x-akl">kurur</AUni> -<AUni ws="qvm-x-ame">kurur</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kurur</AUni> -<AUni ws="qvm-x-acl">*kurur</AUni> -<AUni ws="qvm-x-akh">*kurur</AUni> -<AUni ws="qvm-x-akl">*kurur</AUni> -<AUni ws="qvm-x-ame">*kurur</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.23" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="062aa67a-f10e-4af3-ac48-481e681e8813" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kurur</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c8199b44-19c1-44e6-9798-9264eee1502f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6d21a62e-2328-4af9-8aa1-714ffc8b9aa9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kurur 
\entryTyp root 
\gENG 
\gSPN obilo 
\e *kurur 
\c N0 
\mp +FinalC 
\ach curur 
\akh kurur 
\acl curur 
\akl kurur 
\ame kurur</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="36726051-5c4d-416d-b164-6f418ec5f500" ownerguid="acf5e294-d169-45c1-a9d3-960536e018cc"> -<ExampleWords> -<AUni ws="en">echo</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a sound that is repeated faintly?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="36755130-9861-4b5f-a036-c6007f2154f9" ownerguid="53b28d2d-001b-42ac-9e83-0c371ff94f45"> -<Form> -<AUni ws="qvm-x-ach">tuma</AUni> -<AUni ws="qvm-x-acl">tuma</AUni> -<AUni ws="qvm-x-akh">tuma</AUni> -<AUni ws="qvm-x-akl">tuma</AUni> -<AUni ws="qvm-x-ame">tuma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="36763352-1e59-4529-94c0-3e37f6ef0f0a" ownerguid="f9fb91a7-8199-4b9a-9c31-4b1c5d553bde"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">beg</AUni> -<AUni ws="es">rogar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="455ea5bc-a67d-401b-afc0-73e79bdf6555" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="36802e93-5dba-4068-8831-81ce1f7ce4e8" ownerguid="795f21b4-7318-4cf0-8afd-1f7283dc6b40"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="3682ec03-ee53-4840-a984-9a6c6d8ebc79" ownerguid="738e1ab1-f471-470b-9cb4-c6bfb781f7c0"> -<Form> -<AUni ws="qvm-x-ach">galgu</AUni> -<AUni ws="qvm-x-acl">galgu; galgu; galgo</AUni> -<AUni ws="qvm-x-akh">qalqu</AUni> -<AUni ws="qvm-x-akl">qalqu; qalqu; qalqo</AUni> -<AUni ws="qvm-x-ame">qalqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3686382b-325a-420a-9cdd-0765c5d1a0b8" ownerguid="952bdaa1-8cb6-4bb2-9645-582195db4c19"> -<Form> -<AUni ws="qvm-x-ach">junash</AUni> -<AUni ws="qvm-x-acl">junash</AUni> -<AUni ws="qvm-x-akh">junash</AUni> -<AUni ws="qvm-x-akl">junash</AUni> -<AUni ws="qvm-x-ame">hunash</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StTxtPara" guid="3687a5d2-d188-42d9-902e-c87bf79ca94e" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">rikakushqan</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="5ef1803c-9c2b-42c9-8642-000bd2408885" t="o" /> -</Segments> -</rt> -<rt class="MoStemAllomorph" guid="36881a53-e53b-4168-8c48-66f1c6dded4c" ownerguid="75a50c67-1bed-4d31-a32a-698fabf50724"> -<Form> -<AUni ws="qvm-x-ach">cäña</AUni> -<AUni ws="qvm-x-acl">cäña</AUni> -<AUni ws="qvm-x-akh">cäña</AUni> -<AUni ws="qvm-x-akl">cäña</AUni> -<AUni ws="qvm-x-ame">cäña</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="368e989e-c76b-4285-992c-e5fadbe0866d" ownerguid="b08ae47a-1125-4f6f-8a6f-37b5c96397da"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="36922ba8-264d-46ab-ab82-ada961bfc3a2" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<ExampleWords> -<AUni ws="en">mass, giant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something that is big?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="36934fab-c0ed-4f25-a387-e1cca26b2401" ownerguid="0ebf9fcc-ee38-4f5f-ab5e-c76e199ef7ae"> -<Abbreviation> -<AUni ws="en">8.1.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.569" /> -<DateModified val="2022-9-23 16:55:8.569" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related there being few or little of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>59B Much, Little</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Few, little</AUni> -</Name> -<Questions> -<objsur guid="082be604-a4d7-4138-bde6-e947d4880a76" t="o" /> -<objsur guid="37f89401-ad4c-45b4-a93b-a824b10ac049" t="o" /> -<objsur guid="f2600b8d-7da2-4d5f-9bf2-6178601d07ea" t="o" /> -<objsur guid="dec21f8a-a0e5-4350-adf5-012f70e13b28" t="o" /> -<objsur guid="b7001f5d-c08c-47f4-8f6d-d3376a1ec24d" t="o" /> -<objsur guid="95123d19-a47d-48e0-820c-f81fda09d646" t="o" /> -<objsur guid="7e28b8b1-939c-4ec2-be64-326bde4d4f65" t="o" /> -<objsur guid="650e109e-7f5b-4a06-81b6-2028832200ff" t="o" /> -<objsur guid="b700d7da-6192-417d-9c8f-bdee3c45595b" t="o" /> -<objsur guid="ebbfb2af-c92b-4867-a6e2-e31a0673aab5" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="36938519-4e05-4c02-a968-10b50ac6f18b" ownerguid="880647e5-6543-46dd-9178-8edae9272add"> -<ExampleWords> -<AUni ws="en">willing to learn, open your mind, open-minded, open to new ideas, teachable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being willing to learn?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3694f92f-8cb1-41e8-ab61-e3a502d6afc5" ownerguid="59a16c9d-9192-494b-8996-26d508ede738"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="563fe679-fcb0-4404-8c08-be2ed08e23a1" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="69b9bba6-5cf2-4b2a-b7d6-1c7ba7887b7e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="36953628-f07a-4f8a-b15a-53b5e67bf157" ownerguid="1b1367f9-17e2-4350-ac4f-0e2ec6319fd8"> -<Form> -<AUni ws="qvm-x-ach">dundi</AUni> -<AUni ws="qvm-x-acl">dundi; dunde</AUni> -<AUni ws="qvm-x-akh">dundi</AUni> -<AUni ws="qvm-x-akl">dundi; dunde</AUni> -<AUni ws="qvm-x-ame">dundi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3695aa86-5d49-4813-a911-c6a9470f02ed" ownerguid="2bdfe506-0a28-45bd-81e1-44dcedcc262a"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="36960ddc-c114-4c47-b4c6-8c8a04b6249d" ownerguid="ce541ccc-6035-4a49-8396-93beb4f3a36f"> -<Form> -<AUni ws="qvm-x-ach">shuructa</AUni> -<AUni ws="qvm-x-acl">shuructa</AUni> -<AUni ws="qvm-x-akh">shurukta</AUni> -<AUni ws="qvm-x-akl">shurukta</AUni> -<AUni ws="qvm-x-ame">shurukta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="369dc270-7df7-4aa7-af3c-2a8792edeca0" ownerguid="f2c017ab-bed1-4971-9b72-f303449257b1"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="369fcb81-c7ee-42f2-9b3c-144dcf00496d" ownerguid="8c9fdbea-7063-48ab-9e75-cfb05208ab9d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wooden.spoon</AUni> -<AUni ws="es">cucharón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9a275f7a-6f75-4e85-afaf-f771c6015520" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="36a02f4d-0bf1-4407-9b59-8e5449af0aaf" ownerguid="fba27833-d6f1-4c36-ac39-28902b29261b"> -<ExampleWords> -<AUni ws="en">have something in common, share something, correspond</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something being like another thing in some way?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="36a0ae18-6a46-4cb8-8c84-a2f7273c7301" ownerguid="8d5c28b8-91be-40b0-b6c2-4d5adbb495a3"> -<ExampleWords> -<AUni ws="en">disgust, gross out, nauseate, revolt, sicken, turn your stomach</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to causing someone to feel disgusted?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="36a1085e-5704-4c83-b55b-fedf24630c6c" ownerguid="401f0ae3-d7e0-4533-80e0-2f2e06f5d052"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">healthy</AUni> -<AUni ws="es">gordo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="713ab112-c7c6-4607-905c-6a9899bf436a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="36a1d06f-d975-409f-8bef-91253549b69d" ownerguid="ea17aba7-6d4e-4dbf-89ea-84a1b1c47647"> -<ExampleWords> -<AUni ws="en">big, large, capacious, voluminous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a big container?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="36a2c83f-f7aa-41b0-9b17-f801f3720e4f" ownerguid="cb362fc7-b3aa-46f4-b9a8-0f8c97fb16fe"> -<Abbreviation> -<AUni ws="en">6.2.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.382" /> -<DateModified val="2022-9-23 16:55:8.382" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words related to growing grain crops such as barley, maize (corn), millet, oats, rice, rye, sesame, sorghum, and wheat. If one crop is cultivated extensively and there are many words related to it, set up a separate domain for it. This has already been done for rice, wheat, and maize, since they are so common around the world.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Growing grain</AUni> -</Name> -<OcmCodes> -<Uni>243 Cereal Agriculture</Uni> -</OcmCodes> -<Questions> -<objsur guid="125cabea-3fcc-4d23-9390-ee5284c6b239" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="7d7bc686-faf5-484b-8519-b2529ac581bf" t="o" /> -<objsur guid="d7e4e538-039f-47bb-aa42-a2cf455668cc" t="o" /> -<objsur guid="37f6a1d9-985d-465e-b62d-37c1f9bf855b" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="36a38094-b3a9-4925-ab81-97995a903219" ownerguid="d5d0d386-30f7-4ece-a7f6-de2de22a4609"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="792d7024-5f31-4a07-8dce-07a5f28051a6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="36a3fe72-e6be-4e07-a8b2-10b0e403e51d" ownerguid="4f485a60-e3ba-42e6-9d59-185305c5d1f2"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The ship was sailing <against> the wind.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">against</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words indicate that two things are going in different directions?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="36a51425-a745-49cd-9730-94b1189f1839" ownerguid="7b2702a5-9ab0-4c7e-b7b0-d665d3e60668"> -<Form> -<AUni ws="qvm-x-ach">washcu</AUni> -<AUni ws="qvm-x-acl">washcu; washcu; washco</AUni> -<AUni ws="qvm-x-akh">washku</AUni> -<AUni ws="qvm-x-akl">washku; washku; washko</AUni> -<AUni ws="qvm-x-ame">washku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="36a6163f-c527-4dbe-9d41-e9e7fb11bb09" ownerguid="7a84fc29-136a-471c-81b1-61b911297af4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wanu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wanu; wano</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wanu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wanu; wano</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wanu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="9315bafb-8125-42cb-ac3d-613c760213b3" t="r" /> -</Morph> -<Msa> -<objsur guid="52c4e986-5fd0-4705-87fe-8ddc628aff31" t="r" /> -</Msa> -</rt> -<rt class="LexExampleSentence" guid="36a83453-a357-4178-84b7-b44a60ba8f65" ownerguid="7a652915-c2f6-4b48-bba0-92702aebb20e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">alishnin, "lo mejor"</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="36aac3d4-8466-43b9-a047-8d636b0b6ee4" ownerguid="d585e706-3cf6-472f-9ede-de024a7d488f"> -<Form> -<AUni ws="qvm-x-ach">watgu</AUni> -<AUni ws="qvm-x-acl">watgu; watgo</AUni> -<AUni ws="qvm-x-akh">watqu</AUni> -<AUni ws="qvm-x-akl">watqu; watqo</AUni> -<AUni ws="qvm-x-ame">watqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="36ab813b-4e8f-4fdd-bdf1-c315d8a03fef" ownerguid="ea0f3bf0-2843-479b-9b9b-ec30cdf45936"> -<Form> -<AUni ws="qvm-x-ach">waran</AUni> -<AUni ws="qvm-x-acl">waran</AUni> -<AUni ws="qvm-x-akh">waran</AUni> -<AUni ws="qvm-x-akl">waran</AUni> -<AUni ws="qvm-x-ame">waran</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="36ad1a45-361d-4f24-a8b6-a07db85f2536" ownerguid="70523557-5d4c-45a0-96e5-ba315a1ef609"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="36ad58e3-ade7-49b9-9922-de0b5c3f13c3" ownerguid="5bcd08a6-cb46-41bb-a732-0d690b5ea596"> -<Abbreviation> -<AUni ws="en">5.2.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.317" /> -<DateModified val="2022-9-23 16:55:8.317" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to ingredients--the things that are added together when preparing food.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>5B Condiments</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Cooking ingredients</AUni> -</Name> -<Questions> -<objsur guid="b8c5d4b1-e2f7-430a-aaf3-61496cc2d13b" t="o" /> -<objsur guid="1dfccf53-af1f-4429-b9a4-5c2ba89acdb7" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="9bb6f1ed-7170-4caa-a14c-747fd95ca30e" t="o" /> -<objsur guid="7beca90c-3671-4b3c-bf9a-fb8f08ff914b" t="o" /> -<objsur guid="bf0b24d2-4bd6-4e9c-8775-a623ace8db56" t="o" /> -<objsur guid="e11d6360-6fa9-45a9-a23e-2252a301cf86" t="o" /> -<objsur guid="c7c1c25a-d89d-4720-846c-d6e1dd723a17" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="36b032b5-ab75-4b7b-8531-47e9a184fc9b" ownerguid="c5fda729-dae3-4ac7-aae3-ed4210571651"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="36b367fb-3565-408d-98ec-5da88ed971dd" ownerguid="1b399fa1-e4f7-4d7b-a33e-3972b8b556e2"> -<ExampleWords> -<AUni ws="en">dry, salt, preservative</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What methods and materials are used to preserve food?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="36b3cfb6-0fea-4628-aa8d-f9b7af48f436" ownerguid="ee446395-781b-4651-afef-cad78b71f843"> -<Abbreviation> -<AUni ws="en">1.6.1.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.994" /> -<DateModified val="2022-9-23 16:55:7.994" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to lizards.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Lizard</AUni> -</Name> -<Questions> -<objsur guid="1a2d60bc-ebdc-4298-9eec-d45f76b7c799" t="o" /> -<objsur guid="70360a67-8070-4475-b108-deb91a682d9b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="36b491a9-b5d0-48f4-8ff9-1bc8297793c2" ownerguid="7bca1201-31f8-4f65-8da9-af0eff36b388"> -<ExampleWords> -<AUni ws="en">gossip, busybody, talebearer, tattler, tattletale, chatterer, slanderer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to someone who gossips?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="36b7654f-4f60-4031-904a-5d40c0c8b406"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sicsicya; sicsicya:</AUni> -<AUni ws="qvm-x-acl">sicsicya; sicsicya:</AUni> -<AUni ws="qvm-x-akh">siksikya; siksikya:</AUni> -<AUni ws="qvm-x-akl">siksikya; siksikya:</AUni> -<AUni ws="qvm-x-ame">siksikya; siksikya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*siksikya:</AUni> -<AUni ws="qvm-x-acl">*siksikya:</AUni> -<AUni ws="qvm-x-akh">*siksikya:</AUni> -<AUni ws="qvm-x-akl">*siksikya:</AUni> -<AUni ws="qvm-x-ame">*siksikya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.673" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0834f3ca-aa72-4562-a420-9e61a00790a6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*siksikya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="47ac2dbd-5b77-48fd-8595-7b1894663f47" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f5fa0072-b0e7-4f34-95cc-da3841053f15" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *siksikya: 
\entryTyp root 
\gENG quake 
\gSPN temblar 
\e *siksikya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach sicsicya foreshortened 
\ach sicsicya: 
\akh siksikya foreshortened 
\akh siksikya: 
\acl sicsicya foreshortened 
\acl sicsicya: 
\akl siksikya foreshortened 
\akl siksikya: 
\ame siksikya foreshortened 
\ame siksikya:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="36b96ffe-7a62-4e99-ad99-b59a751ade80"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">garpu</AUni> -<AUni ws="qvm-x-acl">garpu; garpo</AUni> -<AUni ws="qvm-x-akh">qarpu</AUni> -<AUni ws="qvm-x-akl">qarpu; qarpo</AUni> -<AUni ws="qvm-x-ame">qarpu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qarpu</AUni> -<AUni ws="qvm-x-acl">*qarpu</AUni> -<AUni ws="qvm-x-akh">*qarpu</AUni> -<AUni ws="qvm-x-akl">*qarpu</AUni> -<AUni ws="qvm-x-ame">*qarpu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.116" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1078ab99-306b-4b88-b111-c4cc83600115" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qarpu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6f03245a-986b-401a-bf0c-1f51c94cbbb8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c3cb9d35-11ae-472e-9aaf-76ee075dd5ed" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qarpu 
\entryTyp root 
\gENG throw.down 
\gSPN botar 
\e *qarpu 
\c V2 
\ach garpu 
\akh qarpu 
\acl garpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl garpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qarpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qarpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qarpu 
\mcc *qarpu / _... CAUS</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="36ba0c72-075d-43aa-b33a-e737ef4bae86" ownerguid="8596f086-ee46-4245-8d45-2171a60e19e4"> -<ExampleWords> -<AUni ws="en">come into contact, make contact, touch, bump into, come together, brush, skim, graze, meet, connect, butt up against, come to rest against</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to two things moving until they touch each other?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="36bb9636-ba59-4721-8c18-f1f55bf290a4" ownerguid="e3ef35b7-abc6-41f0-bc90-2d5bee99160e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="36bc0db3-e9b0-444b-b181-ed81670113b4" ownerguid="03458dde-6a66-459e-a778-8898a462d17b" /> -<rt class="LexEntry" guid="36bf7e87-332f-45d2-a3fd-0c7dd269dad5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">disponi</AUni> -<AUni ws="qvm-x-acl">disponi; dispone</AUni> -<AUni ws="qvm-x-akh">disponi</AUni> -<AUni ws="qvm-x-akl">disponi; dispone</AUni> -<AUni ws="qvm-x-ame">disponi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+disponer</AUni> -<AUni ws="qvm-x-acl">+disponer</AUni> -<AUni ws="qvm-x-akh">+disponer</AUni> -<AUni ws="qvm-x-akl">+disponer</AUni> -<AUni ws="qvm-x-ame">+disponer</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.426" /> -<DateModified val="2022-10-10 21:18:47.218" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="69241b1a-f4d8-4408-bb44-e906d5390390" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+disponer</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="53670ecd-4986-4ed9-9a5a-bb29133e2512" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a09630c3-4e3b-4e1b-b245-8d26f0b888ad" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +disponer 
\entryTyp root 
\gENG 
\gSPN 
\e +disponer 
\c V2 
\mp +FinalI 
\ach disponi 
\akh disponi 
\acl disponi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl dispone +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl disponi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl dispone +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame disponi 
\i 1KI 10.8 Yachag cashpayqui disponishgayquita y parlashgayquita wiyar ima cushishgarag mandäshishogniquicuna y sirvishogniquicuna caycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="36c49831-906d-4b77-903a-bfc051512ce3"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Imapaqnataq</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="36c4afbc-dced-457f-b9ac-0127e1718e2e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nue:vi; nue:vi</AUni> -<AUni ws="qvm-x-acl">nue:vi; nue:vi; nue:ve</AUni> -<AUni ws="qvm-x-akh">nue:vi; nue:vi</AUni> -<AUni ws="qvm-x-akl">nue:vi; nue:vi; nue:ve</AUni> -<AUni ws="qvm-x-ame">nue:vi; nue:vi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+nueve</AUni> -<AUni ws="qvm-x-acl">+nueve</AUni> -<AUni ws="qvm-x-akh">+nueve</AUni> -<AUni ws="qvm-x-akl">+nueve</AUni> -<AUni ws="qvm-x-ame">+nueve</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.578" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ccb0b9d7-a822-4ac0-b933-28eacb7c3134" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+nueve</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="335b2f6c-e789-4801-8491-f8dcc10a9663" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b669ea44-29b6-4841-92ff-6c34b969117d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +nueve 
\entryTyp root 
\gENG nine 
\gSPN nueve 
\e +nueve 
\c N0 
\mp +FinalI 
\ach nue:vi / _# 
\ach nue:vi / ~_# 
\akh nue:vi / _# 
\akh nue:vi / ~_# 
\acl nue:vi / _# 
\acl nue:vi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl nue:ve +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl nue:vi / _# 
\akl nue:vi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl nue:ve +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame nue:vi / _# 
\ame nue:vi / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="36c700e2-6dbd-4e82-94a4-97994c78ff7c" ownerguid="7bf05f4e-909f-40ca-b742-9be21eba9fbb"> -<ExampleWords> -<AUni ws="en">can</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) root possibility: it is possible for the agent to carry out the action of the main verb; i.e. s/he is able and external conditions allow it: 'You can get that kind of paper at Ulbrich's'.</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="36cbebaa-cb88-428b-9f88-b07241440b60" ownerguid="71430132-f2ea-40fe-b3f5-b6775741cc56"> -<ExampleWords> -<AUni ws="en">sisal, cotton, wool</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What materials are used?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="36d26f55-6983-41ba-bf4d-ecc3726ffb56" ownerguid="34f9b8b3-0cef-477d-b7fb-2a1ceec20b95"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="36da1c5b-cbaa-4959-bafa-8d3533c94527" ownerguid="e1bfbabf-6076-4702-8013-05c093abd868"> -<Form> -<AUni ws="qvm-x-ach">caprïchu</AUni> -<AUni ws="qvm-x-acl">caprïchu; caprïchu; caprïcho</AUni> -<AUni ws="qvm-x-akh">caprïchu</AUni> -<AUni ws="qvm-x-akl">caprïchu; caprïchu; caprïcho</AUni> -<AUni ws="qvm-x-ame">caprïchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="36da6b7d-22c3-4de3-8a6e-979ec842e55a" ownerguid="cf337287-c9fa-43d2-93c4-284f45e262c0"> -<ExampleWords> -<AUni ws="en">cancer, cancerous, tumor, skin cancer, leukemia, lung cancer, liver cancer, malignancy, malignant, benign</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(17) What words refer to cancer?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="36ddec0c-d34f-4a22-b6b0-0453d1f835a8" ownerguid="99861dcb-c6ca-4e50-a19a-efadbb10c2cf"> -<ExampleWords> -<AUni ws="en">antique (v), antiquate, give something an antique look</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to changing something that is new, so that it looks like it is old?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="36def2ae-13bb-4af4-8730-d59e635afc48" ownerguid="0ac5e5f9-e7fe-4d37-a631-eab1ceb1f8ae"> -<ExampleWords> -<AUni ws="en">pass, tunnel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to a place you can travel through the mountains?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="36e18aa8-8c5b-48f5-99f4-e8f07098eecb" ownerguid="2084be86-a681-48c5-9ef0-6ee12c9a250b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">corral</AUni> -<AUni ws="es">corralar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fcc0fc0b-879b-4d83-9371-6202457d2b9e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="36e5b459-8650-4dd8-ba2a-4be624af35af"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lauchi</AUni> -<AUni ws="qvm-x-acl">lauchi; lauchi; lauche</AUni> -<AUni ws="qvm-x-akh">lawchi</AUni> -<AUni ws="qvm-x-akl">lawchi; lawchi; lawche</AUni> -<AUni ws="qvm-x-ame">lawchi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llawchi.n</AUni> -<AUni ws="qvm-x-acl">*llawchi.n</AUni> -<AUni ws="qvm-x-akh">*llawchi.n</AUni> -<AUni ws="qvm-x-akl">*llawchi.n</AUni> -<AUni ws="qvm-x-ame">*llawchi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.174" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="701acdeb-6452-4933-9a75-9822009e08b0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llawchi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f4580a74-cca5-4267-afe0-668660d9754c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e0e08d62-fb08-41bf-b695-7f6e5705997d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llawchi.n 
\entryTyp root 
\gENG sharp 
\gSPN filo 
\e *llawchi.n 
\c N0 
\mp +FinalI 
\ach lauchi 
\akh lawchi 
\acl lauchi / _# 
\acl lauchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lauche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lawchi / _# 
\akl lawchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lawche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lawchi 
\i JOL 1.6 Quiruncunapis waguncunapis leonpanogragmi lauchi cashga.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="36e65048-89ed-4573-96c7-b202d4cf9904" ownerguid="faf39e77-d6f3-458b-b679-1151969a0a0a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">vice</AUni> -<AUni ws="es">teniente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="428cf47c-d760-4af2-b793-70c9885b3f77" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="36e675e6-9536-4ecd-ac53-9fed86a737f1" ownerguid="30b3faa8-747e-465f-833a-a9957a259be2"> -<ExampleWords> -<AUni ws="en">separate fighting people, disperse troops</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used of separating people?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="36e75614-ae42-4990-ae91-e5d6f9768ad7" ownerguid="8b180827-a748-445b-9a01-fbe77fb19c65"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">below</AUni> -<AUni ws="es">abajo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1fc3971c-133f-414c-ad62-6e04615c5d55" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="36e8a2af-fe7b-40c4-97ed-9e5e9899b3d2" ownerguid="7d2ac7e1-87be-4379-aabb-a7e61519ba1d"> -<Form> -<AUni ws="qvm-x-ach">mata</AUni> -<AUni ws="qvm-x-acl">mata</AUni> -<AUni ws="qvm-x-akh">mata</AUni> -<AUni ws="qvm-x-akl">mata</AUni> -<AUni ws="qvm-x-ame">mata</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="36e8f1df-1798-4ae6-904d-600ca6eb4145" ownerguid="19d54c2f-ae03-4cbc-9b7e-57292f92fbc1"> -<Abbreviation> -<AUni ws="en">7.2.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.518" /> -<DateModified val="2022-9-23 16:55:8.518" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to escaping from danger.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Escape</AUni> -</Name> -<Questions> -<objsur guid="bbf7a35a-9949-49d3-ab32-df9bb9d2554c" t="o" /> -<objsur guid="23c3ddd8-ade5-4537-8a78-46a951974691" t="o" /> -<objsur guid="c3a2455b-ba7b-4c0b-8d50-42e99e8c8860" t="o" /> -<objsur guid="3c2e85ea-4e64-4118-bbc4-321338efe50e" t="o" /> -<objsur guid="e09628e7-5462-46b3-a665-2158031c429c" t="o" /> -<objsur guid="670f875c-c167-4cbc-9613-ebe07231c5f6" t="o" /> -<objsur guid="693174a2-9473-411a-9dd2-3ef42d58f153" t="o" /> -<objsur guid="893da458-6c4d-474d-a513-629e3ad575a9" t="o" /> -<objsur guid="7d213e8e-c68a-4d83-a172-ead9e0c12815" t="o" /> -<objsur guid="d84c4f61-5374-4d94-97ba-770b29bb6107" t="o" /> -<objsur guid="92927492-d29d-490a-a2cc-6e42f39831f0" t="o" /> -<objsur guid="14ece9d6-f743-417f-84f5-63203f1c18bd" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="36ebcfd6-67d3-4573-8f2e-1eed62749c6c" ownerguid="77b4d6c1-87bf-4839-b4be-6a45119b700a"> -<ExampleWords> -<AUni ws="en">inquisitive, curious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who asks a lot of questions?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="36eceb5c-7b19-4666-b973-ee3f019f10ff" ownerguid="b4e6c077-4f5e-44f3-8868-1f7ae3486585"> -<ExampleWords> -<AUni ws="en">plate, dinner plate, salad plate, bowl, cereal bowl</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a dish for food?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="36ed38fb-66b7-4ae6-a8ab-2f1c30cbb940" ownerguid="f8863b67-b911-4334-a1b6-6eb913bd14af"> -<ExampleWords> -<AUni ws="en">widen, get wider, broaden out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something becoming wide?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="36ed6663-ff00-4a89-8fdd-4d81eafa92f4"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">with</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="36ee33bd-7480-4c52-8821-200f32765aa4" ownerguid="04e7a4bd-d63e-4aaa-adcc-8cccf4cac9ae" /> -<rt class="MoStemMsa" guid="36f468c6-e901-44de-8f42-48e94531e09a" ownerguid="8563e871-9fbc-437e-b2be-f9989199f760"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="36f4aca3-8c9a-41e4-85fe-4e3ef8d95849"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">permi:su</AUni> -<AUni ws="qvm-x-acl">permi:su; permi:su; permi:so</AUni> -<AUni ws="qvm-x-akh">permi:su</AUni> -<AUni ws="qvm-x-akl">permi:su; permi:su; permi:so</AUni> -<AUni ws="qvm-x-ame">permi:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+permiso</AUni> -<AUni ws="qvm-x-acl">+permiso</AUni> -<AUni ws="qvm-x-akh">+permiso</AUni> -<AUni ws="qvm-x-akl">+permiso</AUni> -<AUni ws="qvm-x-ame">+permiso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.800" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f427b988-e330-4f86-bc3a-b0e4b8248196" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+permiso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="428b37c2-310b-4d1a-b0a4-fab31d3d22c2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="518c87e4-94b5-4ce3-b71f-73e7508cbd83" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +permiso 
\entryTyp root 
\gENG permission 
\gSPN permiso 
\e +permiso 
\c N0 
\ach permi:su 
\akh permi:su 
\acl permi:su / _# 
\acl permi:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl permi:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl permi:su / _# 
\akl permi:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl permi:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame permi:su</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="36f4f601-59df-483f-86e5-9b727074f6f1" ownerguid="5446b5cf-f05a-4bb2-89eb-ce63e27040f3"> -<ExampleWords> -<AUni ws="en">movement, introduction, bar, finale</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to part of a piece of music?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="36f7d426-4144-4d08-a564-802e432371e6" ownerguid="62979c5a-891c-4a40-ba05-023b70013c5e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="36f977c7-2d7b-4fde-afe2-cad04f895fdf" ownerguid="50db27b5-89eb-4ffb-af82-566f51c8ec0b"> -<ExampleWords> -<AUni ws="en">all your life, for life, lifelong</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words indicate that something is true of your whole life?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="36fca4ef-c980-4713-9519-bbcc5470661a" ownerguid="bcbc4135-9e93-4f0a-9206-ef842cbe35c8"> -<Form> -<AUni ws="qvm-x-ach">frega</AUni> -<AUni ws="qvm-x-acl">frega</AUni> -<AUni ws="qvm-x-akh">frega</AUni> -<AUni ws="qvm-x-akl">frega</AUni> -<AUni ws="qvm-x-ame">frega</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="36ff60dd-26f3-410d-aada-b53c8fb77601" ownerguid="f76a8805-9c29-4675-bdfb-81791d2c4a11"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="36ffd0ac-de31-4192-80f4-f4137016c930" ownerguid="80563285-4de7-4040-8080-a5b22208e7d5"> -<ExampleWords> -<AUni ws="en">launch an attack, mount an attack, start a fight, pick a fight, be spoiling for a fight, looking for a fight, challenge (someone to fight)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to starting to fight?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3700df16-3a05-4f8d-bbf6-ff0f480ddda2" ownerguid="c0cdd140-1306-4718-977b-5753756c8ec7"> -<Form> -<AUni ws="qvm-x-ach">en</AUni> -<AUni ws="qvm-x-acl">en</AUni> -<AUni ws="qvm-x-akh">en</AUni> -<AUni ws="qvm-x-akl">en</AUni> -<AUni ws="qvm-x-ame">en</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="3701a143-3105-468c-9058-c75eeac15729" ownerguid="0b459857-2866-4fce-9f7e-bb69d723fe26"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="37022db8-cf6e-461a-a812-b83890cd11aa" ownerguid="611aa361-4ddd-450b-a152-94984a274575"> -<ExampleWords> -<AUni ws="en">derelict</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something that has been abandoned?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="37030423-92d4-4c1c-a9ee-e62d7e97f73c" ownerguid="b608174e-b249-42d5-bcbe-af80eca90ea1"> -<Form> -<AUni ws="qvm-x-ach">cimientu</AUni> -<AUni ws="qvm-x-acl">cimientu; cimiento</AUni> -<AUni ws="qvm-x-akh">cimientu</AUni> -<AUni ws="qvm-x-akl">cimientu; cimiento</AUni> -<AUni ws="qvm-x-ame">cimientu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="37051288-2012-463e-bb5c-14a73f03950f" ownerguid="5ada976b-651c-475f-8a0b-673b1b10c070"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="370a3224-a821-49b0-bf54-f0a5f66bc542" ownerguid="5bd7d08f-b49b-4ddf-8fd6-b86b60337013"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="2bcd888d-0d23-4ead-962b-d5f8c53f22f5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="370b0948-68d8-4c45-9ae8-c4abbf690724" ownerguid="de7b8df5-83a7-4456-a63a-1075ff17dbaf"> -<ExampleWords> -<AUni ws="en">blemish, blot, dapple, excrescence, freckle, mole, pimple, speck, speckle, small fault</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a blemish in something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="370bfa5c-1575-48dc-89ca-9262d85021f6" ownerguid="08d5e632-0aed-4924-b3bb-d43de3420385"> -<ExampleWords> -<AUni ws="en">funeral, wake, graveside service, burial service, last rites</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a funeral?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="370d84d9-ff8e-47a2-b631-c4463c66732c" ownerguid="8563e871-9fbc-437e-b2be-f9989199f760"> -<Form> -<AUni ws="qvm-x-ach">pucyu</AUni> -<AUni ws="qvm-x-acl">pucyu; pucyu; pucyo</AUni> -<AUni ws="qvm-x-akh">pukyu</AUni> -<AUni ws="qvm-x-akl">pukyu; pukyu; pukyo</AUni> -<AUni ws="qvm-x-ame">pukyu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="370f96de-1cae-4df6-b8a9-0ee1b125b8e0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">japrichu</AUni> -<AUni ws="qvm-x-acl">japrichu; japrichu; japricho</AUni> -<AUni ws="qvm-x-akh">japrichu</AUni> -<AUni ws="qvm-x-akl">japrichu; japrichu; japricho</AUni> -<AUni ws="qvm-x-ame">haprichu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hapritru</AUni> -<AUni ws="qvm-x-acl">*hapritru</AUni> -<AUni ws="qvm-x-akh">*hapritru</AUni> -<AUni ws="qvm-x-akl">*hapritru</AUni> -<AUni ws="qvm-x-ame">*hapritru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.670" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fa74d721-c891-40b6-a543-76efeb48cb35" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hapritru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6cf27f94-6493-452e-8908-46aff9b50f4e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b2a806e4-6ef4-4c46-9d6c-93a1620acfca" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hapritru 
\entryTyp root 
\gENG 
\gSPN 
\e *hapritru 
\c N0 
\ach japrichu 
\akh japrichu 
\acl japrichu / _# 
\acl japrichu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl japricho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl japrichu / _# 
\akl japrichu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl japricho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame haprichu 
\i AMO 8.6 Gamcunaga trïgupa japrichuntapis ranticuycanqui mana perdinayquipag.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="3710e019-46c9-44db-a0aa-9054d3126161" ownerguid="4098899a-0ad0-4d71-9f9f-b99d5ba2e0d5"> -<Abbreviation> -<AUni ws="en">5.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.325" /> -<DateModified val="2022-9-23 16:55:8.325" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to narcotics and drugs that are not used as medicine but as stimulants. Narcotics are often addicting and harmful to a person's health.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Narcotic</AUni> -</Name> -<OcmCodes> -<Uni>276 Recreational and Non-therapeutic Drugs; Narcotics and Stimulants</Uni> -</OcmCodes> -<Questions> -<objsur guid="07277be9-3d52-4526-b4bb-ebd9c03f6805" t="o" /> -<objsur guid="1046c1c6-c9be-467a-a668-fb854776a424" t="o" /> -<objsur guid="8be4f966-23bb-4f8e-b584-1756c24f5a63" t="o" /> -<objsur guid="1302a161-b1bd-46cc-b44a-3c1f120591bb" t="o" /> -<objsur guid="4db71386-1598-45be-a253-3ca584ee6ef8" t="o" /> -<objsur guid="9b8beafc-e5f0-4454-ac0e-881b721b239b" t="o" /> -<objsur guid="836d5cd7-fa2e-4f2b-b84a-28fd167db0b3" t="o" /> -<objsur guid="5ffd4a9e-5576-4d29-a157-c448f9a460a6" t="o" /> -<objsur guid="59dd7137-f371-4e60-bccb-4fbbffa83dec" t="o" /> -<objsur guid="79bcc71c-99f7-4e6c-83fa-e8c685a200e9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="37143363-d2d8-4630-9906-345dc6abc7f2" ownerguid="f8863b67-b911-4334-a1b6-6eb913bd14af"> -<ExampleWords> -<AUni ws="en">widening, broadening</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the process of becoming wide?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="371525d8-c69f-4bbd-a0c5-981df3e66a0a" ownerguid="1ae89c4d-b129-47b5-a0d1-e550104d9457"> -<Form> -<AUni ws="qvm-x-ach">engaña</AUni> -<AUni ws="qvm-x-acl">engaña</AUni> -<AUni ws="qvm-x-akh">engaña</AUni> -<AUni ws="qvm-x-akl">engaña</AUni> -<AUni ws="qvm-x-ame">engaña</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3715f953-8c20-44c3-a0a0-2152c85f4c1f" ownerguid="30ccfb7f-2232-4200-a662-ece020feaf9e"> -<Form> -<AUni ws="qvm-x-ach">inca</AUni> -<AUni ws="qvm-x-acl">inca</AUni> -<AUni ws="qvm-x-akh">inca</AUni> -<AUni ws="qvm-x-akl">inca</AUni> -<AUni ws="qvm-x-ame">inca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="371af07a-4172-4963-8d51-3172340543ce" ownerguid="0d2167a3-9787-43a6-bdec-ac3010926e0a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tree</AUni> -<AUni ws="es">saúco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="00e2f85e-0318-4a04-920b-9905a0d6cbf8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="371b4510-0ae7-4ed7-95d8-3450d5a69e3d" ownerguid="0c54aece-ae0a-403b-910a-a0d169782b5c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">savior</AUni> -<AUni ws="es">salvador</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bad09629-d0e5-4d26-bc3a-de14302f5ba6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="37203e9e-97d3-49e4-ab88-d56679468189" ownerguid="b6e45998-9f6a-4b19-9cda-62410a11afa2"> -<ExampleWords> -<AUni ws="en">have magical powers, magic (adj), magical, supernatural, occult, mystic, weird</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe someone or something that can do magic?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="37213965-e00a-4c46-bec8-aef47afe898c" ownerguid="50adfc7d-79d2-4fb2-9ffd-76362080842e"> -<Form> -<AUni ws="qvm-x-ach">guepa; guepä</AUni> -<AUni ws="qvm-x-acl">guepa; guepä</AUni> -<AUni ws="qvm-x-akh">qepa; qepä</AUni> -<AUni ws="qvm-x-akl">qepa; qepä</AUni> -<AUni ws="qvm-x-ame">qipa; qipä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3722ceac-46ac-4369-b1b1-3704fdf07603" ownerguid="800095d2-1ed7-4257-b8e6-4768271a3185"> -<Form> -<AUni ws="qvm-x-ach">suedru; suedro</AUni> -<AUni ws="qvm-x-acl">suedru; suedru; suedro</AUni> -<AUni ws="qvm-x-akh">suedru; suedro</AUni> -<AUni ws="qvm-x-akl">suedru; suedru; suedro</AUni> -<AUni ws="qvm-x-ame">suedru; suedro</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="37268ad8-4ffd-4bc9-b102-c7f110348382" ownerguid="7684c6b8-53d5-4553-a4f3-4c66dc531ddb"> -<Form> -<AUni ws="qvm-x-ach">ñïñu</AUni> -<AUni ws="qvm-x-acl">ñïñu; ñïñu; ñïño</AUni> -<AUni ws="qvm-x-akh">ñïñu</AUni> -<AUni ws="qvm-x-akl">ñïñu; ñïñu; ñïño</AUni> -<AUni ws="qvm-x-ame">ñïñu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="37283496-d4d0-4f65-a4c3-c440da999c63" ownerguid="c345f278-91ff-463d-b9a6-8abac8a267eb"> -<ExampleWords> -<AUni ws="en">hay, alfalfa</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What plants are eaten by animals?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3729461a-ec98-4159-b87c-917ed4b738bd" ownerguid="e3935eec-43c6-49f3-a6ce-18a0de673428"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="3b8ff450-1ff2-4a1d-9e57-660fac19a719" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="372a4f84-6b4d-47b6-aab9-bb2d7201e139" ownerguid="3fdba5e5-eb24-4b2f-a6fc-d1ed7397c39c"> -<ExampleWords> -<AUni ws="en">attend, go to school, enter school</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to attending school?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="372b9136-b494-4155-a638-41b7ebf6e074" ownerguid="c30e4dcd-a9cf-45c8-81ea-e9bd19d61bb7"> -<Form> -<AUni ws="qvm-x-ach">artesänu</AUni> -<AUni ws="qvm-x-acl">artesänu; artesänu; artesäno</AUni> -<AUni ws="qvm-x-akh">artesänu</AUni> -<AUni ws="qvm-x-akl">artesänu; artesänu; artesäno</AUni> -<AUni ws="qvm-x-ame">artesänu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="372bb2b3-80fd-4516-b392-e4bb675b3de1" ownerguid="2c0c9b51-b081-4f1c-b8a8-8c474764c906"> -<Form> -<AUni ws="qvm-x-ach">wapi</AUni> -<AUni ws="qvm-x-acl">wapi; wape</AUni> -<AUni ws="qvm-x-akh">wapi</AUni> -<AUni ws="qvm-x-akl">wapi; wape</AUni> -<AUni ws="qvm-x-ame">wapi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="372dad9a-3c21-4576-a181-453ba1ef4188"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">vacu:na</AUni> -<AUni ws="qvm-x-acl">vacu:na</AUni> -<AUni ws="qvm-x-akh">vacu:na</AUni> -<AUni ws="qvm-x-akl">vacu:na</AUni> -<AUni ws="qvm-x-ame">vacu:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vacuna</AUni> -<AUni ws="qvm-x-acl">+vacuna</AUni> -<AUni ws="qvm-x-akh">+vacuna</AUni> -<AUni ws="qvm-x-akl">+vacuna</AUni> -<AUni ws="qvm-x-ame">+vacuna</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.332" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="92494091-96cb-40be-b29d-b32d7b583c94" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vacuna</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="12704419-d074-494f-958b-bef848f39ebe" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="071f13e9-bd13-43d9-88c9-7a56e639ed0c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vacuna 
\entryTyp root 
\gENG vaccination 
\gSPN vacuna 
\e +vacuna 
\c N0 
\ach vacu:na 
\akh vacu:na 
\acl vacu:na 
\akl vacu:na 
\ame vacu:na</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3730b9d0-138a-4a46-bd91-bc5506f6b79d" ownerguid="26fb2e94-b8fe-4216-9057-ca17a71df83b"> -<ExampleWords> -<AUni ws="en">relaxing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that causes someone to feel relaxed?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="373129a9-bf61-4459-8795-97673291e5da" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<ExampleWords> -<AUni ws="en">sadness, dejection, depression, despondency, dismal feeling, gloom, gloominess, grief, heartache, self-pity, misery, pain, sorrow, unhappiness, woe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of sadness?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="37341404-0d02-4cb4-926c-511c9d9706bc" ownerguid="c48704fc-d333-48f9-af23-e4e77da3ca85"> -<Form> -<AUni ws="qvm-x-ach">cama</AUni> -<AUni ws="qvm-x-acl">cama</AUni> -<AUni ws="qvm-x-akh">kama</AUni> -<AUni ws="qvm-x-akl">kama</AUni> -<AUni ws="qvm-x-ame">kama</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="3734c2bf-2df5-4da2-a997-099ca1cfde8c" ownerguid="d2226181-a021-43f7-9746-bb41ba9601ea"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">break</AUni> -<AUni ws="es">romper</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b2d5076b-4e0b-498d-8d70-5020c0711429" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="3735603d-7c81-4258-901a-198682a69433" ownerguid="b400cf18-032f-424e-aa44-fb7c99ad52f9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9a20da5d-ca8d-4217-99de-f7c5f9ebe167" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">?</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="75cf1249-2a1a-434f-bd69-e5ac5a4bed51" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="373694eb-ec5e-405d-a4b4-1966b9405112" ownerguid="0472e02f-0667-4768-8304-4b45df3ab6cd"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="37378c68-9c9a-458d-9652-ce2f0b5be548" ownerguid="b6686c7c-39de-40b5-adee-67fc7dc54374"> -<ExampleWords> -<AUni ws="en">million, billion, trillion, quadrillion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) numbers larger than one thousand</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3737a09a-8213-4e79-ac9d-77db78b260d1" ownerguid="71430132-f2ea-40fe-b3f5-b6775741cc56"> -<ExampleWords> -<AUni ws="en">needle, knitting needle, spinning wheel, sewing machine, pins, scissors, tape measure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What tools are used?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3738d392-d7ee-4565-971f-b9e211542c23" ownerguid="5a36106b-cace-41ee-8de8-b8418d8ac433"> -<Form> -<AUni ws="qvm-x-ach">iñinu</AUni> -<AUni ws="qvm-x-acl">iñinu; iñinu; iñino</AUni> -<AUni ws="qvm-x-akh">iñinu</AUni> -<AUni ws="qvm-x-akl">iñinu; iñinu; iñino</AUni> -<AUni ws="qvm-x-ame">iñinu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="3738d425-2ccf-49df-9281-86a96b3f0173" ownerguid="696ba84e-5ae8-414d-8bc9-2564a77257ad"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="be378dc5-0efe-4014-aa54-b0c587666dff" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="9d3f2d66-0196-4b7c-b876-c25240149dab" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="373ab3df-b2eb-44cf-b236-a4a7c3e0bb86" ownerguid="75052baa-9846-4aeb-9f6d-25f104c641fb"> -<Form> -<AUni ws="qvm-x-ach">calwa</AUni> -<AUni ws="qvm-x-acl">calwa</AUni> -<AUni ws="qvm-x-akh">kalwa</AUni> -<AUni ws="qvm-x-akl">kalwa</AUni> -<AUni ws="qvm-x-ame">kalwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="373c0aac-c9ee-4cae-b815-3ae5b7007fea" ownerguid="ff7e3abd-6810-4128-83c9-701b4925c2fe"> -<ExampleWords> -<AUni ws="en">fire, combustion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to a fire?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="373d0f40-8d63-45ed-a36c-6d34f5970b90" ownerguid="b1e3461b-4ea1-4329-9015-56044a1882f1"> -<PartOfSpeech> -<objsur guid="f3ea5225-9cc3-474e-b548-7bda3376fce1" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="373e4115-9c10-4839-bac6-dd388713efd6" ownerguid="e83586c6-8d8e-4a23-bdda-a1731a5ece22"> -<ExampleWords> -<AUni ws="en">make defense, defend, uphold, protect, fortify, excuse, apologize, plead, make a case for, represent, advocate, argue a case, prove, offer proof</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to defending someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3742de40-560d-4f39-9a5c-cc3afc413016" ownerguid="ec8e1481-827c-4554-bf50-0d3f592f3702"> -<ExampleWords> -<AUni ws="en">cotton, wool, nylon, polyester, silk</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe the material cloth is made from?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="374683e3-8955-42ab-98a1-2125ed1882bb" ownerguid="ed269fb7-fd3c-467a-907e-d485731d9068"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">host</AUni> -<AUni ws="es">funccionero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="162003e9-aa58-40a6-83eb-5657220f82d4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="374811b2-b918-47ad-b4b6-20a055c01a26" ownerguid="89e74a22-861c-4358-9402-d95b9b33a18f"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="b5daf67d-caa0-4cb1-ba6e-85247e96d4aa" t="o" /> -<objsur guid="e28915f3-f893-463f-be4e-120a06f28be4" t="o" /> -<objsur guid="9a92ce04-fba8-47e4-a62e-14ff17b2840f" t="o" /> -<objsur guid="2591e110-4e99-42bc-bfc9-1a2b22e068d6" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="374f8454-403f-40b1-8cc0-b3aa4b65080c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">unya</AUni> -<AUni ws="qvm-x-acl">unya</AUni> -<AUni ws="qvm-x-akh">unya</AUni> -<AUni ws="qvm-x-akl">unya</AUni> -<AUni ws="qvm-x-ame">unya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*unya.v</AUni> -<AUni ws="qvm-x-acl">*unya.v</AUni> -<AUni ws="qvm-x-akh">*unya.v</AUni> -<AUni ws="qvm-x-akl">*unya.v</AUni> -<AUni ws="qvm-x-ame">*unya.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.239" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4b1cc6ac-6853-4090-8136-3b7b3e279582" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*unya.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7a9e482f-8c1a-4704-aff8-7c72655ec640" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cf6dd4ba-cfdb-4638-89b2-e64c06509e1b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *unya.v 
\entryTyp root 
\gENG drop 
\gSPN caer 
\e *unya.v 
\c V1 
\ach unya 
\akh unya 
\acl unya 
\akl unya 
\ame unya</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="375634ea-aea9-482b-ad17-ec516f497790" ownerguid="1f2173bf-8e27-4cb2-a28a-2ec98728541d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" t="r" /> -</Morph> -<Msa> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="3756df57-05a0-4b04-bd8c-1b0ba79aeefe" ownerguid="195bad5d-4c9a-40c4-b9aa-021b797f26af"> -<Form> -<AUni ws="qvm-x-ach">lata</AUni> -<AUni ws="qvm-x-acl">lata</AUni> -<AUni ws="qvm-x-akh">lata</AUni> -<AUni ws="qvm-x-akl">lata</AUni> -<AUni ws="qvm-x-ame">lata</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="3759bdda-2b52-43dc-8995-8379e3129dce" ownerguid="b2fd2d29-1389-4114-91a8-15b8d9742794"> -<Abbreviation> -<AUni ws="en">9.6.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.720" /> -<DateModified val="2022-9-23 16:55:8.720" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating relations involving correspondences--a situation in which one thing is the same or similar in some respect to something else.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89E Relations Involving Correspondence</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Relations involving correspondences</AUni> -</Name> -<Questions> -<objsur guid="a2e640ed-b9e7-4da5-8c34-b2aeb0cd2629" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="375a69e7-cdcf-492f-be86-470a6093a206"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">dieciseisi</AUni> -<AUni ws="qvm-x-acl">dieciseisi; dieciseisi; dieciseise</AUni> -<AUni ws="qvm-x-akh">dieciseisi</AUni> -<AUni ws="qvm-x-akl">dieciseisi; dieciseisi; dieciseise</AUni> -<AUni ws="qvm-x-ame">dieciseisi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+dieciséis</AUni> -<AUni ws="qvm-x-acl">+dieciséis</AUni> -<AUni ws="qvm-x-akh">+dieciséis</AUni> -<AUni ws="qvm-x-akl">+dieciséis</AUni> -<AUni ws="qvm-x-ame">+dieciséis</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.406" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="105397dd-dbc8-4dc2-8311-6ecd063ea9da" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+dieciséis</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f7505053-1254-4263-a62e-44406f20e5af" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3dcfe593-6744-4da8-a6ad-6a0c6912be3c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +dieciséis 
\entryTyp root 
\gENG sixteen 
\gSPN dieciséis 
\e +dieciséis 
\c N0 
\mp +assimilated 
\ach dieciseisi 
\akh dieciseisi 
\acl dieciseisi / _# 
\acl dieciseisi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl dieciseise +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl dieciseisi / _# 
\akl dieciseisi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl dieciseise +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame dieciseisi 
\mp +FinalI</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="375a906d-ce35-4c69-939c-a263cf448a31"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fle:ti; fle:ti</AUni> -<AUni ws="qvm-x-acl">fle:ti; fle:ti; fle:te</AUni> -<AUni ws="qvm-x-akh">fle:ti; fle:ti</AUni> -<AUni ws="qvm-x-akl">fle:ti; fle:ti; fle:te</AUni> -<AUni ws="qvm-x-ame">fle:ti; fle:ti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+flete</AUni> -<AUni ws="qvm-x-acl">+flete</AUni> -<AUni ws="qvm-x-akh">+flete</AUni> -<AUni ws="qvm-x-akl">+flete</AUni> -<AUni ws="qvm-x-ame">+flete</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.568" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3eaba7ff-1463-4598-b7c5-1d154eabb694" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+flete</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e7956ca5-d415-47d0-b88e-f84339f0b9d6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d2d9ea9f-405f-4538-b3a8-5df7dfd107c4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +flete 
\entryTyp root 
\gENG 
\gSPN 
\e +flete 
\c N0 
\mp +FinalI 
\ach fle:ti / _# 
\ach fle:ti / ~_# 
\akh fle:ti / _# 
\akh fle:ti / ~_# 
\acl fle:ti / _# 
\acl fle:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl fle:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl fle:ti / _# 
\akl fle:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl fle:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame fle:ti / _# 
\ame fle:ti / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="375b7926-fa74-44a9-a11e-e54bc287b376" ownerguid="970a70bf-bb15-4f18-92f0-8cc9d4c5b9cb"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="375d1eae-35ea-43eb-8d24-67023afed5d1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mishqui</AUni> -<AUni ws="qvm-x-acl">mishqui; mishque</AUni> -<AUni ws="qvm-x-akh">mishki</AUni> -<AUni ws="qvm-x-akl">mishki; mishke</AUni> -<AUni ws="qvm-x-ame">mishki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mishki.v</AUni> -<AUni ws="qvm-x-acl">*mishki.v</AUni> -<AUni ws="qvm-x-akh">*mishki.v</AUni> -<AUni ws="qvm-x-akl">*mishki.v</AUni> -<AUni ws="qvm-x-ame">*mishki.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.457" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7a7ddd45-4f81-480e-8427-373a30a9c90c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mishki.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d2f1e620-8add-4111-9a75-42fd07223055" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a92818d9-500b-4298-b87c-4464944b4980" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mishki.v 
\entryTyp root 
\gENG be.sweet 
\gSPN ser.dulce 
\e *mishki.v 
\c V1 
\mp +FinalI 
\ach mishqui 
\akh mishki 
\acl mishqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl mishque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mishki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mishke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mishki</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="375fb2b7-69bd-4c2a-85bf-cadce82f6e5f" ownerguid="094ad767-9400-4ac2-a94d-ea6531715f91"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="3761057c-5f59-4c0c-9b43-76d6d984cba8" ownerguid="e556f881-fe4b-45da-b528-1c1adf38662e"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="3761b773-0444-4655-8caf-44a83885a188" ownerguid="e975f49e-455e-41f4-8410-e3cb486570c4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="3763768a-7166-4ef2-80b6-b2e760e8b27d" ownerguid="62ac799d-ad65-4fb5-a08f-a2c750b94997"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="376436ca-2704-4ae7-b344-7cbdcf6b3ae1" ownerguid="62964baf-fea6-4d8e-8509-d312bff8761a"> -<Question> -<AUni ws="en">(2) What words are used to describe the actions done with these tools?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="37675f68-2df4-4f45-9d10-2dd417087230"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">desalenta</AUni> -<AUni ws="qvm-x-acl">desalenta</AUni> -<AUni ws="qvm-x-akh">desalenta</AUni> -<AUni ws="qvm-x-akl">desalenta</AUni> -<AUni ws="qvm-x-ame">desalenta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+desalentar</AUni> -<AUni ws="qvm-x-acl">+desalentar</AUni> -<AUni ws="qvm-x-akh">+desalentar</AUni> -<AUni ws="qvm-x-akl">+desalentar</AUni> -<AUni ws="qvm-x-ame">+desalentar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.386" /> -<DateModified val="2022-10-10 21:19:47.694" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="311ee438-8ba8-4e3a-9924-82fa5f870acc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+desalentar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1b03528f-e14c-42c4-abd9-dafd969f983d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a9a19a49-6cfb-4c94-9c71-1c7c704cf6d5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +desalentar 
\entryTyp root 
\gENG discourage 
\gSPN 
\e +desalentar 
\c V1 
\ach desalenta 
\akh desalenta 
\acl desalenta 
\akl desalenta 
\ame desalenta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="37681a76-9240-40b8-9459-34fd39cd9670" ownerguid="654dfe8f-2d53-418e-bb5a-4f080ecc6413"> -<Form> -<AUni ws="qvm-x-ach">asya</AUni> -<AUni ws="qvm-x-acl">asya</AUni> -<AUni ws="qvm-x-akh">asya</AUni> -<AUni ws="qvm-x-akl">asya</AUni> -<AUni ws="qvm-x-ame">asya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="376e9662-39a0-4b0d-a746-195ddf737241"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">co:ta</AUni> -<AUni ws="qvm-x-acl">co:ta</AUni> -<AUni ws="qvm-x-akh">co:ta</AUni> -<AUni ws="qvm-x-akl">co:ta</AUni> -<AUni ws="qvm-x-ame">co:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuota</AUni> -<AUni ws="qvm-x-acl">+cuota</AUni> -<AUni ws="qvm-x-akh">+cuota</AUni> -<AUni ws="qvm-x-akl">+cuota</AUni> -<AUni ws="qvm-x-ame">+cuota</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.254" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ee3aa0d9-7924-4c5b-adad-b0fae6c60a01" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuota</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1ab79354-e86f-4714-915c-c605e0968cc2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="be0979ee-989d-4012-a5f7-3859ca577a39" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuota 
\entryTyp root 
\gENG contribution 
\gSPN cuota 
\e +cuota 
\c N0 
\ach co:ta 
\akh co:ta 
\acl co:ta 
\akl co:ta 
\ame co:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="376f112e-2934-40fc-bc7f-71d25f0e647b" ownerguid="77d1610f-4757-46de-b5f8-e127dc270dfd"> -<ExampleWords> -<AUni ws="en">weaver</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to someone who weaves?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="376f5ccc-bcdf-4ce2-94fe-ee83826095fa" ownerguid="e3ee97a4-fdb0-4a10-a43a-214a74f1f7f8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="2c71c1e6-bbad-42c2-9fc6-4d2378380667" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="37703c7d-1c22-48df-85c3-63b0e7cccd0f" ownerguid="ed7930df-e7b4-43c9-a11a-b09521276b57"> -<ExampleWords> -<AUni ws="en">hold your nose</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(22) What words refer to holding your nose so you don't smell something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3770ee03-dd32-4f7e-9ef2-98699bc413e5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gapi</AUni> -<AUni ws="qvm-x-acl">gapi; gape</AUni> -<AUni ws="qvm-x-akh">qapi</AUni> -<AUni ws="qvm-x-akl">qapi; qape</AUni> -<AUni ws="qvm-x-ame">qapi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qapi</AUni> -<AUni ws="qvm-x-acl">*qapi</AUni> -<AUni ws="qvm-x-akh">*qapi</AUni> -<AUni ws="qvm-x-akl">*qapi</AUni> -<AUni ws="qvm-x-ame">*qapi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.92" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1205ad97-fc0e-46b3-a817-db6d8eefe92f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qapi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f3c67570-9ea5-44e7-b769-eea677b93525" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="26e9770d-034e-49c9-81a1-4927900d0935" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qapi 
\entryTyp root 
\gENG wring 
\gSPN exprimir 
\e *qapi 
\c V2 
\mp +FinalI 
\ach gapi 
\akh qapi 
\acl gapi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gape +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qapi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qape +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qapi</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="3774a985-0599-41d2-853b-b83dc9356b3a"> -<Analyses> -<objsur guid="86fdf532-60dc-435a-9409-bf988114cdcf" t="o" /> -</Analyses> -<Checksum val="317598945" /> -<Form> -<AUni ws="qvm-x-akh">chunka</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiWordform" guid="3774f050-df33-457b-870a-7bbbf31930c1"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Noemími</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="377c95d8-9aa1-4a59-99a3-5debf0fd9ee2" ownerguid="e94a5cf3-1fd4-4b52-902f-bbf0ad6bac2b"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en"><Only> men can grow beards.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">only, just, exclusively, nothing but, nothing else, be limited to, be restricted to, be confined to, be unique to, be peculiar to, exclusive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate something is true of only one thing or one group of things, and not true of others?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="377d7d68-e119-4097-955b-8dc9406fbce3" ownerguid="d71d0e76-5cd5-48cd-b6ce-a1456eb1d24b"> -<Form> -<AUni ws="qvm-x-ach">anca</AUni> -<AUni ws="qvm-x-acl">anca</AUni> -<AUni ws="qvm-x-akh">anka</AUni> -<AUni ws="qvm-x-akl">anka</AUni> -<AUni ws="qvm-x-ame">anka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3780aa04-3b50-4011-a234-a5eaf1e15270" ownerguid="19be5c30-1dd9-4294-a1ed-082d8e88cd95"> -<Form> -<AUni ws="qvm-x-ach">patac; pata</AUni> -<AUni ws="qvm-x-acl">patac; pata</AUni> -<AUni ws="qvm-x-akh">patak; pata</AUni> -<AUni ws="qvm-x-akl">patak; pata</AUni> -<AUni ws="qvm-x-ame">patak; pata</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="37839bcb-67be-4626-832b-03e5901c7dea" ownerguid="51f5f243-692c-4f29-af5b-3a386fd5215c"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="3783dd9a-de59-4481-9dcd-47a3af8d5829" ownerguid="af6a8ef0-b876-4dde-8593-829021ca3c82"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="3785b47d-8b2e-46bb-9823-a2bc88deece4" ownerguid="2ccf76d1-7700-4a6b-b4b7-2e6492c51791"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="3785d9f3-0922-4d79-a0fa-b97c4a26fe17" ownerguid="2dca9338-85cb-4f58-b40d-d2d759e8edd6"> -<Abbreviation> -<AUni ws="en">8.5.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that indicate a spatial relation between situations.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Spatial relations</AUni> -</Name> -<Questions> -<objsur guid="716b678d-5de4-44b7-9f10-c70135444967" t="o" /> -<objsur guid="d7b703b2-ece1-4fea-bf74-92b572c8ebaf" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="3787b076-8bcc-4676-b78b-feef69c28bdc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">par</AUni> -<AUni ws="qvm-x-acl">par</AUni> -<AUni ws="qvm-x-akh">par</AUni> -<AUni ws="qvm-x-akl">par</AUni> -<AUni ws="qvm-x-ame">par</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+par</AUni> -<AUni ws="qvm-x-acl">+par</AUni> -<AUni ws="qvm-x-akh">+par</AUni> -<AUni ws="qvm-x-akl">+par</AUni> -<AUni ws="qvm-x-ame">+par</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.709" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f3664d77-0ccd-4a12-8d35-047113bb9ef9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+par</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ee292d37-91a5-4dfa-85dd-5434ea93c0a7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9c6def39-3de7-45e5-8922-830f12a5fc93" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +par 
\entryTyp root 
\gENG pair 
\gSPN par 
\e +par 
\c N0 
\mp +FinalC 
\ach par 
\akh par 
\acl par 
\akl par 
\ame par 
\mcc +par / ~_ JUST2.C 3P 
\mcc +par / ~_ [with] 
\mcc +par / ~_ JUST2.C LIM1 
\mcc +par / ~_ JUST2.C [pur]SIM1 
\mcc +par / ~_ JUST2.C 
\mcc +par / ~_ JUST2.C PRT2 
\mcc +par / ~_ ALL.1</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="37893259-ead5-4bdd-a906-95026f894067" ownerguid="0ac5e5f9-e7fe-4d37-a631-eab1ceb1f8ae"> -<ExampleWords> -<AUni ws="en">cliff, bluff, butte, escarpment, ridge, precipice, brow, ledge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a steep place on a mountain?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3789d8cb-a9a0-455d-8b4b-b5d4863c7831" ownerguid="93b8bd61-137a-4ebc-b12f-52fa5d2b3ea4"> -<ExampleWords> -<AUni ws="en">wind, windy, wind current</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to the wind?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="378e0a9c-a43d-4164-baac-2a735634719d" ownerguid="323ce24a-4adf-4efd-9eb6-8a3de1b7afa7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="f3e7d33c-bdbe-4924-9ae2-57054a70966f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="37934b99-d109-4c0f-af4f-dbfb74529b7a" ownerguid="30fff450-1aa5-4993-9c14-c8019a5f072e"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">I want to do something, <but> can't do it.; I tried to do something, <but> couldn't do it.; I promised to do something, <but> didn't do it.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">but, however</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that someone wants to do something, but is not able to do it?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3793a7b7-a136-4c99-9830-65dffd7ccc6c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">campamentu; campamento</AUni> -<AUni ws="qvm-x-acl">campamentu; campamentu; campamento</AUni> -<AUni ws="qvm-x-akh">campamentu; campamento</AUni> -<AUni ws="qvm-x-akl">campamentu; campamentu; campamento</AUni> -<AUni ws="qvm-x-ame">campamentu; campamento</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+campamento</AUni> -<AUni ws="qvm-x-acl">+campamento</AUni> -<AUni ws="qvm-x-akh">+campamento</AUni> -<AUni ws="qvm-x-akl">+campamento</AUni> -<AUni ws="qvm-x-ame">+campamento</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.31" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="849f4a69-671d-4449-b696-78f579563201" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+campamento</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ce582558-e453-4b84-88cd-371495f02195" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="be50f2f4-e630-4378-89ed-8fd4308b99fc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +campamento 
\entryTyp root 
\gENG encampment 
\gSPN campamento 
\e +campamento 
\c N0 
\ach campamentu / ~_# 
\ach campamento / _# 
\akh campamentu / ~_# 
\akh campamento / _# 
\acl campamentu / ~_# 
\acl campamentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl campamento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl campamentu / ~_# 
\akl campamentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl campamento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame campamentu / ~_# 
\ame campamento / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="37949156-faca-4ced-b597-58fb79c1ba68" ownerguid="7a4e422f-faef-4f0d-b434-400d1e224a87"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stud</AUni> -<AUni ws="es">cemental</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4706f600-9bc5-4368-af02-a8c0bb9ecf1b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="3796e854-8953-44b3-9756-f962c9f332de" ownerguid="c97341c5-219d-4458-ad38-384b875d43d4"> -<Form> -<AUni ws="qvm-x-ach">achcu</AUni> -<AUni ws="qvm-x-acl">achcu; achco</AUni> -<AUni ws="qvm-x-akh">achku</AUni> -<AUni ws="qvm-x-akl">achku; achko</AUni> -<AUni ws="qvm-x-ame">achku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="379e43d7-e74d-4785-adaf-0d4f78e8b7a4" ownerguid="cc0fbaac-6af7-4c71-98a1-c85c10225719"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="fdd30be9-8be6-43d7-b965-2ba326f216dc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="379e605b-f539-4f2b-ac07-b3e4603eaa4d" ownerguid="5ee64d88-c462-4505-b14a-5d36e357a024"> -<ExampleWords> -<AUni ws="en">top (n), topside, summit, peak, pinnacle, cap, head</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the top of something?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="37a08f65-5a79-4e17-8e19-0975d6531d64" ownerguid="c27b87cf-1211-4df2-96b1-12c416edabbe"> -<Abbreviation> -<AUni ws="en">4.2.8.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.217" /> -<DateModified val="2022-9-23 16:55:8.217" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being serious--not laughing or joking.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25L Laugh, Cry, Groan x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Serious</AUni> -</Name> -<Questions> -<objsur guid="f034a9af-11cb-4f5b-b67c-da6f6cf372cc" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="37a2c4a5-86da-4f7f-b38c-7def52ad08ac" ownerguid="a1959b00-9702-4b45-ac46-93f18d3bc5e6"> -<ExampleWords> -<AUni ws="en">choke, strangle, suffocate, smother</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to killing someone by stopping them from breathing?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="37a7cae3-e023-417c-a065-5f5a982e4094" ownerguid="d3315d4b-c39c-479e-ab46-b8875a90f675"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="37a8e3a9-6979-4493-bcf3-f4247c60bd1b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chusca</AUni> -<AUni ws="qvm-x-acl">chusca</AUni> -<AUni ws="qvm-x-akh">chuska</AUni> -<AUni ws="qvm-x-akl">chuska</AUni> -<AUni ws="qvm-x-ame">chuska</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*truska</AUni> -<AUni ws="qvm-x-acl">*truska</AUni> -<AUni ws="qvm-x-akh">*truska</AUni> -<AUni ws="qvm-x-akl">*truska</AUni> -<AUni ws="qvm-x-ame">*truska</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.190" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="63981f1b-eeab-4fca-ac78-7637b8099b22" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*truska</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="746202ef-5008-481b-a916-811327d547c2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6200b8bf-10f5-4449-ac1f-1eadd2c0c5eb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *truska 
\entryTyp root 
\gENG ordinary 
\gSPN corriente 
\e *truska 
\c N0 
\ach chusca 
\akh chuska 
\acl chusca 
\akl chuska 
\ame chuska</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="37aa41d5-742b-4a63-959d-1afb9bde53b0" ownerguid="f3a3c98c-a0bc-4db7-9836-e2bfe57f50fa"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -</rt> -<rt class="LexExampleSentence" guid="37afab7e-7aef-4b39-9ce9-9551bcf848eb" ownerguid="04c9eb2f-5c98-44ef-9df9-1e18bf95b45a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">SAN MATEO 6.16 <<Tayta Diosta manacunayquipag ayunarga ama waquin runacunanöga capäcuytsu. Paycunaga ayunaycashganta runacuna tantyacunanpagmi janjampaycachaycan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="37b2e36d-91e1-4576-87bd-9dfdfd7029ca" ownerguid="2b6f9af7-04ee-4030-a2cd-87d55959caa8"> -<ExampleWords> -<AUni ws="en">afraid, fearful, frightened, alarmed, panicky, quaking, scared, skittish, weak-kneed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels afraid?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="37b4fb1f-5fb7-42cf-8e1a-e9d68e90473c" ownerguid="f1092161-733a-4873-8885-7df06f52421f"> -<Gloss> -<AUni ws="en">LOC</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="67d4d16b-3fe8-47b5-b211-66dac0610398" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="37be5e9a-7166-47bd-a49f-f59d4359332b" ownerguid="161dd1e0-cb7d-404e-9a68-4adcedb7ec23"> -<Form> -<AUni ws="qvm-x-ach">maski</AUni> -<AUni ws="qvm-x-acl">maski</AUni> -<AUni ws="qvm-x-akh">maski</AUni> -<AUni ws="qvm-x-akl">maski</AUni> -<AUni ws="qvm-x-ame">maski</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="37c320ce-22ec-4e81-aee3-4bf1dca9794f"> -<Analyses> -<objsur guid="1cbb30d4-6c4a-4512-b807-1a21559996c8" t="o" /> -</Analyses> -<Checksum val="-806966554" /> -<Form> -<AUni ws="qvm-x-akh">wanurqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="37c550f5-83c0-483c-9f3e-ace36ee74313" ownerguid="2b6f9af7-04ee-4030-a2cd-87d55959caa8"> -<ExampleWords> -<AUni ws="en">terrified, terror, panic, panic-stricken, petrified, scared stiff, scared out of your wits, scared to death</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to feeling very afraid?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="37c8e54c-d943-48db-bf9f-b48eb28b333c" ownerguid="f39b14c4-52cf-4afa-956c-f0f5815ef6ac"> -<ExampleWords> -<AUni ws="en">check, make sure, make certain, double-check, verify, confirm, check out, crosscheck, see for yourself, check up on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to checking something to make sure it is true or correct?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="37cad029-9bef-45b4-9f98-d9d34c78e295"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">febreru; febrero</AUni> -<AUni ws="qvm-x-acl">febreru; febreru; febrero</AUni> -<AUni ws="qvm-x-akh">febreru; febrero</AUni> -<AUni ws="qvm-x-akl">febreru; febreru; febrero</AUni> -<AUni ws="qvm-x-ame">febreru; febrero</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+febrero</AUni> -<AUni ws="qvm-x-acl">+febrero</AUni> -<AUni ws="qvm-x-akh">+febrero</AUni> -<AUni ws="qvm-x-akl">+febrero</AUni> -<AUni ws="qvm-x-ame">+febrero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.538" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6cf6b549-c21a-47e0-a549-d818816c30f6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+febrero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="66568c65-f5ba-4be1-a63f-3ee88b301aff" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d6e1f988-e0f3-4b4f-a633-3eeba8017843" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +febrero 
\entryTyp root 
\gENG February 
\gSPN febrero 
\e +febrero 
\c N0 
\ach febreru / ~_# 
\ach febrero / _# 
\akh febreru / ~_# 
\akh febrero / _# 
\acl febreru / ~_# 
\acl febreru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl febrero +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl febreru / ~_# 
\akl febreru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl febrero +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame febreru / ~_# 
\ame febrero / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="37cbc188-8068-4c32-9bc5-569af50de4fa" ownerguid="d98c1c67-b70e-4a35-89db-2e744bd5197f"> -<ExampleWords> -<AUni ws="en">face, forehead, cheek, chin, cleft (in chin), dimple (in cheek), jaw</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the parts of the face?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="37cd04ad-6e4d-4df6-a52d-a7153fb42334" ownerguid="85188748-1919-4210-a9e9-91171d9d6454"> -<ExampleWords> -<AUni ws="en">anchovy, barracuda, bass, blackfish, bonefish, bream, carp, cod, codfish, crappie, darter, flatfish, flounder, gar, garfish, garpike, goldfish, grouper, guppy, halibut, herring, lungfish, mackerel, marlin, pickerel, pike, piranha, pollack, pompano, sailfish, salmon, sardine, sea horse, shad, sole, spearfish, sturgeon, sucker, sunfish, swordfish, tarpon, tuna, turbot, whitefish, whiting, wrasse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What species of saltwater fish are there?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="37d1a4be-3a32-4033-9695-58b4b77ac36a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">puenti; puente</AUni> -<AUni ws="qvm-x-acl">puenti; puenti; puente</AUni> -<AUni ws="qvm-x-akh">puenti; puente</AUni> -<AUni ws="qvm-x-akl">puenti; puenti; puente</AUni> -<AUni ws="qvm-x-ame">puenti; puente</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+puente</AUni> -<AUni ws="qvm-x-acl">+puente</AUni> -<AUni ws="qvm-x-akh">+puente</AUni> -<AUni ws="qvm-x-akl">+puente</AUni> -<AUni ws="qvm-x-ame">+puente</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.972" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0261864a-a6b8-473d-99b5-9e4f700a9174" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+puente</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9db8b722-16ce-401f-92fd-1f9baade5e98" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0bacb10b-4ae9-44fe-a538-0739cca4f9a8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +puente 
\entryTyp root 
\gENG bridge 
\gSPN puente 
\e +puente 
\c N0 
\mp +FinalI 
\ach puenti / ~_# 
\ach puente / _# 
\akh puenti / ~_# 
\akh puente / _# 
\acl puenti / ~_# 
\acl puenti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl puente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl puenti / ~_# 
\akl puenti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl puente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame puenti / ~_# 
\ame puente / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="37d26989-d409-45c9-b1f4-762d77258d94" ownerguid="c736e4c8-b84f-4647-9b7d-ad7186102181"> -<Form> -<AUni ws="qvm-x-ach">garwanchu</AUni> -<AUni ws="qvm-x-acl">garwanchu; garwancho</AUni> -<AUni ws="qvm-x-akh">qarwanchu</AUni> -<AUni ws="qvm-x-akl">qarwanchu; qarwancho</AUni> -<AUni ws="qvm-x-ame">qarwanchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="37d6a83e-42e7-4a31-9f83-15c9a0dd500b" ownerguid="707433b2-1fff-4a83-87fe-5dbe0c48c2fd"> -<Form> -<AUni ws="qvm-x-ach">chamcha; chamsha</AUni> -<AUni ws="qvm-x-acl">chamcha; chamsha</AUni> -<AUni ws="qvm-x-akh">chamcha; chamsha</AUni> -<AUni ws="qvm-x-akl">chamcha; chamsha</AUni> -<AUni ws="qvm-x-ame">chamcha; chamsha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="37d9836f-4730-4ebf-a5a3-35608eacf17f" ownerguid="eacf722f-ee09-45ab-8963-b80cfa67342f"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="37da60a5-22fd-4aa1-89ee-cdb20649b7fb" ownerguid="57c9a370-0f46-4475-98fd-c7a8b3f5074c"> -<ExampleWords> -<AUni ws="en">spoil, sour, poison</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to spoiling a relationship?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="37dc0590-9057-4959-8767-dc29e5c325a8" ownerguid="cba6876c-5b48-42f4-ae0a-7fbe9bb971ef"> -<ExampleWords> -<AUni ws="en">in the shade, shaded, shady, shadowy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something in the shadow of something else?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="37dca8b0-7906-4f99-99e5-dee678ad19e6" ownerguid="2cad92d8-cf01-41af-9add-ff34fe0660c6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="37dccc1c-123e-423f-8a05-740edc9165e2" ownerguid="0e250e72-6c3f-424f-9e62-2dcc9729d817"> -<ExampleWords> -<AUni ws="en">duplex, tandem, tripartite</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to something made up of a certain number of parts?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="37dd219d-d88b-44cf-b625-0f64f80db488" ownerguid="d125240e-5990-4bf3-b99d-9b645cc79f08"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="37dd6a25-c0c2-4475-9960-05b4a898397d" ownerguid="9baac3cb-62f4-47c5-b2e2-26cd542aa9da"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">slip</AUni> -<AUni ws="es">resbalar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="41ab383d-47c1-4ca4-a243-7949e146cb7b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="37dda99b-483f-41dc-aa75-fd02c28bdb9d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jornal</AUni> -<AUni ws="qvm-x-acl">jornal</AUni> -<AUni ws="qvm-x-akh">jornal</AUni> -<AUni ws="qvm-x-akl">jornal</AUni> -<AUni ws="qvm-x-ame">jornal</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+jornal</AUni> -<AUni ws="qvm-x-acl">+jornal</AUni> -<AUni ws="qvm-x-akh">+jornal</AUni> -<AUni ws="qvm-x-akl">+jornal</AUni> -<AUni ws="qvm-x-ame">+jornal</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.882" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="35dcff53-e5cc-4437-8a67-610e4df296d4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+jornal</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f4bab397-7d89-4721-9f9f-0c835eaae968" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="73653acf-65b2-4161-a460-98373b915bdf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +jornal 
\entryTyp root 
\gENG daily.wage 
\gSPN jornal 
\e +jornal 
\c N0 
\mp +FinalC 
\ach jornal 
\akh jornal 
\acl jornal 
\akl jornal 
\ame jornal</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="37ddebb7-bc96-4510-85b9-e42fb50ee968" ownerguid="24996927-542b-4e10-a7cb-bc64930bb84f"> -<Form> -<AUni ws="qvm-x-ach">tsaura</AUni> -<AUni ws="qvm-x-acl">tsaura</AUni> -<AUni ws="qvm-x-akh">tsawra</AUni> -<AUni ws="qvm-x-akl">tsawra</AUni> -<AUni ws="qvm-x-ame">tsawra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="37e173d5-5cc3-4e00-bd94-4007816343b7" ownerguid="ef860ee3-a4a5-4a42-b810-fdf41e35d151"> -<ExampleWords> -<AUni ws="en">pastor, minister, parson</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What is a leader of the (Christian-Protestant) religion called?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="37e24b5b-2e0b-4617-9585-434bb748cd7f" ownerguid="3014de03-88e5-4330-9682-51963a41ca50"> -<ExampleWords> -<AUni ws="en">cartilaginous, ray-finned, soft finned</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe sharks and rays?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="37e6c8b5-f63c-4f5b-8c16-eccd727d6618" ownerguid="55201761-fe2e-40d5-a2a7-8079e00a2c32"> -<Abbreviation> -<AUni ws="en">4.8.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.276" /> -<DateModified val="2022-9-23 16:55:8.276" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to fighting against something bad.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>39C Resistance</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Fight against something bad</AUni> -</Name> -<Questions> -<objsur guid="6139e60c-acce-41d3-9f2f-f0a40bca0a87" t="o" /> -<objsur guid="a8161188-80c5-4fb3-9539-2f53adf30a22" t="o" /> -<objsur guid="7e0435fe-a756-4c99-8a56-a6480dccb7e2" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="37e72fb3-140e-441a-a0a1-9edd11dbc066" ownerguid="ed7930df-e7b4-43c9-a11a-b09521276b57"> -<ExampleWords> -<AUni ws="en">sense of smell, a good nose</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the ability to smell?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="37ea66e1-0c91-4667-af86-270256ea6e9a" ownerguid="f5642647-9b9c-499b-a66e-349593c863f1"> -<ExampleWords> -<AUni ws="en">silence</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a time when everyone is silent?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="37eb280d-ba91-44ce-9128-d049965367a9" ownerguid="1674883d-c851-471f-b894-bbfd6ef28e77"> -<Form> -<AUni ws="qvm-x-ach">wara</AUni> -<AUni ws="qvm-x-acl">wara</AUni> -<AUni ws="qvm-x-akh">wara</AUni> -<AUni ws="qvm-x-akl">wara</AUni> -<AUni ws="qvm-x-ame">wara</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="37ebf319-eb0c-4818-8a45-c9a66628b338"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">acapara</AUni> -<AUni ws="qvm-x-acl">acapara</AUni> -<AUni ws="qvm-x-akh">acapara</AUni> -<AUni ws="qvm-x-akl">acapara</AUni> -<AUni ws="qvm-x-ame">acapara</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+acaparar</AUni> -<AUni ws="qvm-x-acl">+acaparar</AUni> -<AUni ws="qvm-x-akh">+acaparar</AUni> -<AUni ws="qvm-x-akl">+acaparar</AUni> -<AUni ws="qvm-x-ame">+acaparar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.619" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6650d92c-a2ca-4d57-84a9-eba8a69635a7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+acaparar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b7ef83dd-ae38-41cf-bd4c-513127be9bb4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8a306ee6-b581-4d79-957a-730820d565df" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +acaparar 
\entryTyp root 
\gENG 
\gSPN acaparar 
\e +acaparar 
\c V1 
\ach acapara 
\akh acapara 
\acl acapara 
\akl acapara 
\ame acapara 
\i HOS 5.10 Judá runacunapa autoridänincunaga jucpa lindërunta acaparagnogmi carcaycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="37ef9ff5-f156-48b4-912d-3069934e77d7" ownerguid="134c68a9-ac3f-4b7e-8fca-63642d796a75"> -<ExampleWords> -<AUni ws="en">birth certificate, passport, identification papers</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What official documents are used to prove citizenship?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="37f1c36f-35ca-4550-bdbc-99d971c28eb5" ownerguid="effc49dd-6322-4302-899c-4cf540f0e2e4"> -<ExampleWords> -<AUni ws="en">bread, pastry, brown bread, white bread, biscuit, muffin, roll, sweetbread, sandwich, tortilla, toast, loaf</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What types of bread are there?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="37f6a1d9-985d-465e-b62d-37c1f9bf855b" ownerguid="36a2c83f-f7aa-41b0-9b17-f801f3720e4f"> -<Abbreviation> -<AUni ws="en">6.2.1.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.382" /> -<DateModified val="2022-9-23 16:55:8.382" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to growing maize.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Growing maize</AUni> -</Name> -<Questions> -<objsur guid="55671b8d-5f2a-41c4-96ec-9b35c7ba7d4d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="37f89401-ad4c-45b4-a93b-a824b10ac049" ownerguid="36934fab-c0ed-4f25-a387-e1cca26b2401"> -<ExampleWords> -<AUni ws="en">not much, very little, to speak of, hardly any, scarcely any, almost no, minimal, negligible, precious little, next to nothing, a smattering of, a scrap of, tiny, minute</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that there is a very small amount of something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="37f99b50-3a99-4441-8d9f-20091de8ed43" ownerguid="de7a9f49-482c-45a6-82a7-b222fda78b7c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="37f9d238-30fe-4b0e-8210-35c3e63f8dea" ownerguid="2b86891f-52d7-4659-a39e-d75f8322e852"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">frying.pan</AUni> -<AUni ws="es">sartén</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="baf4193b-06de-4c41-9b09-65d06ba7cf61" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="37faed5d-0579-48de-bdb1-e593b1ee4037" ownerguid="ad4eb470-ce57-4c4a-9a65-553e6fca9e57"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="37fb0b59-c926-4989-8d8d-d04d18522623" ownerguid="4bef8767-9346-4e30-acf4-88a2c62ad30b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="319b502c-f39c-4d27-aa6d-0547f3354248" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="37ff94b1-1ee9-4850-ae3c-c9477bf6f4e7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cana</AUni> -<AUni ws="qvm-x-acl">cana</AUni> -<AUni ws="qvm-x-akh">kana</AUni> -<AUni ws="qvm-x-akl">kana</AUni> -<AUni ws="qvm-x-ame">kana</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kaña</AUni> -<AUni ws="qvm-x-acl">*kaña</AUni> -<AUni ws="qvm-x-akh">*kaña</AUni> -<AUni ws="qvm-x-akl">*kaña</AUni> -<AUni ws="qvm-x-ame">*kaña</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.931" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8533b1a4-10f1-4e59-bd1d-5b951a0f4164" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kaña</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f31f5c35-89e7-4ec4-b634-c88e03d37851" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cbcbee3a-7a4c-4c83-b053-26f793db9765" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kaña 
\entryTyp root 
\gENG burn 
\gSPN quemar 
\e *kaña 
\c V2 
\ach cana 
\akh kana 
\acl cana 
\akl kana 
\ame kana 
\mcc *kaña / ~ _ 3 
\mcc *kaña / ~_ 3FUT 
\mcc *kaña / ~ _ 3 
\mcc *kaña / ~ _ NOM12PUR 
\mcc *kaña / ~_ ADVSS2</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="38015e31-1471-455a-867a-94611f8d0c6c" ownerguid="6bfb7813-3a7d-47e2-88e1-d54034c07e5d"> -<ExampleWords> -<AUni ws="en">don't know what to tell you</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to not knowing what to advise?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3803250e-a297-418c-b29d-f3204fc07562" ownerguid="83899b19-8b39-4bf0-b124-4c6188569ec8"> -<ExampleWords> -<AUni ws="en">total (n), total (adj), sum, tally (n), grand total, subtotal, gross, aggregate, amount</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the total?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3803a235-d25f-4e2d-bc02-08ccf1e37b94"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mamay</AUni> -<AUni ws="qvm-x-acl">mamay</AUni> -<AUni ws="qvm-x-akh">mamay</AUni> -<AUni ws="qvm-x-akl">mamay</AUni> -<AUni ws="qvm-x-ame">mamay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mamay</AUni> -<AUni ws="qvm-x-acl">*mamay</AUni> -<AUni ws="qvm-x-akh">*mamay</AUni> -<AUni ws="qvm-x-akl">*mamay</AUni> -<AUni ws="qvm-x-ame">*mamay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.295" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="35eab8a3-6cae-4fa1-bfc9-538c0aafab10" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mamay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7cdfadd2-1885-414b-b93f-720eb705a771" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2379edc3-5e9a-475a-8aa8-d13d517ae608" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mamay 
\entryTyp root 
\gENG 
\gSPN 
\e *mamay 
\c N0 
\mp +FinalC 
\ach mamay 
\akh mamay 
\acl mamay 
\akl mamay 
\ame mamay 
\i LEV 20.14 Pipis mamay wawata warminpaq tsarararqa pasaypa jutsatami ruraykan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="38083de6-ff9f-4889-87b8-c428b8be57f2" ownerguid="64fcd0a7-1ca7-412d-bb55-c91f7392fde2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wild</AUni> -<AUni ws="es">chúcaro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="60c24999-fb34-470d-8c5e-0279c1cecb87" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3808562e-c1a1-49e4-9836-0df615ad1ba5" ownerguid="8f7c9d7d-9b2a-40f3-9314-8f16f0aa31ef"> -<ExampleWords> -<AUni ws="en">fold, fold up, crease, get creased</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something folding?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="38096588-e644-45fe-ad0f-e11aca4d8951" ownerguid="4698e532-c598-4164-95b4-0a6c99ae4a7b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="38099f47-2012-4ffb-a7b2-0eab39022b21" ownerguid="22acd714-b11e-462a-bd8e-6ff50843c103"> -<ExampleWords> -<AUni ws="en">inside, interior, outside, exterior</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the inside or outside of a building?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="380b0d15-77a1-49ba-ad83-a508e7ffb83d" ownerguid="b4aa4bbd-8abf-4503-96e4-05c75efd23d5"> -<Abbreviation> -<AUni ws="en">1.1.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.932" /> -<DateModified val="2022-9-23 16:55:7.932" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to storms.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Storm</AUni> -</Name> -<Questions> -<objsur guid="d45fe6ce-93aa-45ae-88da-ea15fc9922b8" t="o" /> -<objsur guid="93d9ef97-60cd-4528-8070-d5b6742dbaa0" t="o" /> -<objsur guid="9e4bf6e0-2eda-4066-84cd-3913b93987ca" t="o" /> -<objsur guid="550b163a-9517-4f35-b69c-d77e0d5c5797" t="o" /> -<objsur guid="a228f038-a880-4c8f-afdc-d3afb6e6eb69" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="3811ec65-8452-4ea5-97c5-3ea80b0d2f0d" ownerguid="5a48d8b8-ccea-4ad3-8577-00bc6a9522bb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="55989abb-453d-4bcf-bac3-3667e726212a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="3812b590-5335-4c64-aaac-8b0470b1175e" ownerguid="7d1f52aa-a865-4c5a-8e03-78166153d9ae"> -<Form> -<AUni ws="qvm-x-ach">garatsa</AUni> -<AUni ws="qvm-x-acl">garatsa</AUni> -<AUni ws="qvm-x-akh">qaratsa</AUni> -<AUni ws="qvm-x-akl">qaratsa</AUni> -<AUni ws="qvm-x-ame">qaratsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="38151a50-9c63-4a70-8bbb-e5cfc5339ad5" ownerguid="81d52ec1-f6de-483a-9686-50973ea72f8e"> -<Form> -<AUni ws="qvm-x-ach">na</AUni> -<AUni ws="qvm-x-acl">na</AUni> -<AUni ws="qvm-x-akh">na</AUni> -<AUni ws="qvm-x-akl">na</AUni> -<AUni ws="qvm-x-ame">na</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="381625c2-3535-4060-a206-9a5414eb5e39" ownerguid="04207506-5a9f-49eb-adae-80ab00bd5510"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="r" /> -</Morph> -</rt> -<rt class="LexSense" guid="38171158-f930-4797-8157-0f8a0afc712c" ownerguid="0ce19759-6e90-47b7-bf9c-b5892b6808bf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">orange</AUni> -<AUni ws="es">naranja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="acabc150-4dd5-4fa4-8c91-efba123955e0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="381868f5-4778-4f93-9756-596650f13c4e" ownerguid="a452f567-9fdb-43cd-a74c-65e11171d4a1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wind</AUni> -<AUni ws="es">viento</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="681d317b-8d15-4729-b283-389b074fd96e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="38199f75-31ef-4682-928e-aa7038054ead" ownerguid="b5045b35-adc8-430e-a61a-0db5a8f9b0e6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="381a46a1-69c1-45b5-bb66-ff3b7f998d62" ownerguid="3dc5b56e-243f-4e4e-b250-97bd2f7ab8ba"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="381bf2e6-855d-44dc-b291-fd3048259cc4" ownerguid="65726302-2917-4638-bf41-cdb5cd3de093"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="381d3074-0d6d-40a9-b684-15cb22ea12d9" ownerguid="a781d57d-174d-47a6-b6a1-ae635a13df84"> -<ExampleWords> -<AUni ws="en">tribe, tribal, clan, race</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to groups of people who are related to you?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="381d9a6d-c6b3-4b62-a1f6-a2a7c66fce66" ownerguid="84afa73b-f1cd-471b-ae3b-7f3887fd4589"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="74af24ed-1128-45fc-9a44-eafcc860ccba" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="381f5b16-0dd9-402b-bd55-1fc5f5d3e8e6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">piza:rra</AUni> -<AUni ws="qvm-x-acl">piza:rra</AUni> -<AUni ws="qvm-x-akh">piza:rra</AUni> -<AUni ws="qvm-x-akl">piza:rra</AUni> -<AUni ws="qvm-x-ame">piza:rra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pizarra</AUni> -<AUni ws="qvm-x-acl">+pizarra</AUni> -<AUni ws="qvm-x-akh">+pizarra</AUni> -<AUni ws="qvm-x-akl">+pizarra</AUni> -<AUni ws="qvm-x-ame">+pizarra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.871" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="699b8834-cd48-4bb6-a07f-a076f6c281bd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pizarra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e91575ef-4968-475a-9852-f0cf1448145d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1a133357-60d6-4237-a951-14088964dcc1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pizarra 
\entryTyp root 
\gENG chalkboard 
\gSPN pizarra 
\e +pizarra 
\c N0 
\ach piza:rra 
\akh piza:rra 
\acl piza:rra 
\akl piza:rra 
\ame piza:rra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="381f901c-28f8-4dec-b2f0-0a77c4771012" ownerguid="effc49dd-6322-4302-899c-4cf540f0e2e4"> -<ExampleWords> -<AUni ws="en">roast beef, steak, fried chicken, fish and chips, hamburger, hot dog, pizza, spaghetti, casserole, lasagna, stew</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What types of foods are made primarily from meat?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="381fe5b7-6080-4e25-89b4-cd3499ebfc1a" ownerguid="ac396d29-a20a-4685-b8ed-f3e91203e148"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">calcium</AUni> -<AUni ws="es">cal</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8aac78ab-7bcb-43d0-9018-d581b27a2ee4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="38219471-50d3-4980-8735-05bf1a958013" ownerguid="84622623-77dc-4eac-a84d-fc9dc4a72b39"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="38234dbe-a513-4112-bd69-b22ad6b39cec" ownerguid="45b07db7-67ef-46cf-9506-8e69a0baec81"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3827d809-6a03-4428-8693-d7b403c10e7f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsicay</AUni> -<AUni ws="qvm-x-acl">tsicay</AUni> -<AUni ws="qvm-x-akh">tsikay</AUni> -<AUni ws="qvm-x-akl">tsikay</AUni> -<AUni ws="qvm-x-ame">tsikay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chikay</AUni> -<AUni ws="qvm-x-acl">*chikay</AUni> -<AUni ws="qvm-x-akh">*chikay</AUni> -<AUni ws="qvm-x-akl">*chikay</AUni> -<AUni ws="qvm-x-ame">*chikay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.305" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="493d7fe6-6a63-40ff-b205-0f29ada2c314" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chikay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="43b993a1-9fb1-48e7-831d-0c6b61a1b5c9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="472f89c7-45a6-4a24-b04d-b3a6cc4014db" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chikay 
\entryTyp root 
\gENG 
\gSPN 
\e *chikay 
\c N0 
\mp +FinalC 
\ach tsicay 
\akh tsikay 
\acl tsicay 
\akl tsikay 
\ame tsikay</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="38287ee5-dee2-4483-9862-42efb30f678f" ownerguid="de342a1f-1002-4c22-b361-2fe0e5e91614"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiGloss" guid="382a76f2-91e4-4c93-bd9d-53c5ecd5f8c4" ownerguid="41180113-78ed-4232-9b44-9b4df5759375"> -<Form> -<AUni ws="es">*kay</AUni> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="382b61a7-245f-4b42-ba38-05c4010cbbd9" ownerguid="89e5cf73-f8ae-4115-a7f9-c6164a4241d6"> -<Form> -<AUni ws="qvm-x-ach">puytucshu</AUni> -<AUni ws="qvm-x-acl">puytucshu; puytucshu; puytucsho</AUni> -<AUni ws="qvm-x-akh">puytukshu</AUni> -<AUni ws="qvm-x-akl">puytukshu; puytukshu; puytuksho</AUni> -<AUni ws="qvm-x-ame">puytukshu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="382c6397-8c5e-4f5d-a1bd-3c2dc395d7c5" ownerguid="32974828-df2f-4a0d-ba0d-e3499f9a1659"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">league</AUni> -<AUni ws="es">legua</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dc8ba09b-1dd8-46f9-8c88-df18840c8d52" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoInflAffMsa" guid="382e9c39-4806-4765-a8a2-5ecb5ad0e3bd" ownerguid="a9c20a59-9f8d-4543-8717-0774299aedc4"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="cc7bce64-81a2-4c23-9cb0-ba8f7d274837" t="r" /> -</Slots> -</rt> -<rt class="MoStemMsa" guid="38319b51-4aad-4e94-b88d-7e338bfe4f21" ownerguid="3038da8a-1773-466f-90b4-14ca63e62fc3"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="38375061-92be-4cc4-9dba-8ddaf2d26a69" ownerguid="1b4f987d-3eaa-46dd-95ee-e0cb1f30cfbb"> -<ExampleWords> -<AUni ws="en">in general, generally, mostly, on the whole, in most cases</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is generally true?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="383c2ec3-31d1-4892-9d6f-69c8146f1d49" ownerguid="8f098359-ae2f-4935-8558-4911baa64932"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">never</AUni> -<AUni ws="es">nunca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ed4c3722-4021-4d93-8366-c2b186904243" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="3842a6a7-041c-4900-a969-b51d29a7701c" ownerguid="c80b3056-5862-486d-9c65-8ecb973b5adf"> -<Form> -<AUni ws="qvm-x-ach">torma</AUni> -<AUni ws="qvm-x-acl">torma</AUni> -<AUni ws="qvm-x-akh">torma</AUni> -<AUni ws="qvm-x-akl">torma</AUni> -<AUni ws="qvm-x-ame">torma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="3844b05a-8c3e-4fb1-beac-615795c4efc0" ownerguid="3541cb7e-e9be-47ca-8ba8-c47e860c9c46"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="3b914428-8cc9-47af-9f9c-c2de114360c0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="38473463-4b92-4681-8fd0-0aca0342e88a" ownerguid="73499b8b-76fc-4121-8bfa-1bdebe537259"> -<Abbreviation> -<AUni ws="en">1.6.1.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.994" /> -<DateModified val="2022-9-23 16:55:7.994" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the names of worms, animals with shells, and other animals that do not fit into any of the other categories.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>4E Fishes and Other Sea Creatures</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Small animals</AUni> -</Name> -<OcmCodes> -<Uni>136g Amphibian, worm; 136j Fish and Mollusk</Uni> -</OcmCodes> -<Questions> -<objsur guid="1172178a-2fae-4a9d-b05f-e1f56c83ff7a" t="o" /> -<objsur guid="16cb24af-2eb2-4bc1-9faa-5cf9adb98caf" t="o" /> -<objsur guid="76e87d03-f13a-45ad-b32c-e036d02f8129" t="o" /> -<objsur guid="2a11d530-e50a-42e4-9139-57a8c2264875" t="o" /> -<objsur guid="ab7570a3-bd4c-498d-a34e-a212d45b9096" t="o" /> -<objsur guid="c7e62900-2323-425f-bdbb-a1ea2fe1a571" t="o" /> -<objsur guid="bbfdf9e8-3659-4dad-973b-7e8cccfb5d6d" t="o" /> -<objsur guid="65821f46-6779-4eab-affa-c6d6373cea49" t="o" /> -<objsur guid="cc148779-97c3-4ddb-a0c9-15060e3d9456" t="o" /> -<objsur guid="e59cf10f-2d4a-4dfd-94f0-58d6c7831165" t="o" /> -<objsur guid="658339a5-b45c-4a45-8bdb-7fd45adac0c5" t="o" /> -<objsur guid="31aed0c5-1155-4c12-97c2-eb73f67b64e7" t="o" /> -<objsur guid="7da63927-b83f-4c91-a4ba-ae89860f64a0" t="o" /> -<objsur guid="0b71d729-125d-4dcb-8013-aa32e5c4dc7d" t="o" /> -<objsur guid="d75a09a7-09ce-469c-8542-03452701855c" t="o" /> -<objsur guid="d5d26b4e-f0b1-4a32-a1e2-505673db02bd" t="o" /> -<objsur guid="c6cbdb63-b4d9-46f0-81c9-239ec3c93336" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="384776d0-96f4-4d09-8016-526a9ec285b0" ownerguid="016ba72b-a69f-4f3c-a01e-0b325f469539"> -<Form> -<AUni ws="qvm-x-ach">alayri</AUni> -<AUni ws="qvm-x-acl">alayri; alayri; alayre</AUni> -<AUni ws="qvm-x-akh">alayri</AUni> -<AUni ws="qvm-x-akl">alayri; alayri; alayre</AUni> -<AUni ws="qvm-x-ame">alayri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="384c653a-aba8-4e94-bfc9-1f1f6fec0ec4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ce:na</AUni> -<AUni ws="qvm-x-acl">ce:na</AUni> -<AUni ws="qvm-x-akh">ce:na</AUni> -<AUni ws="qvm-x-akl">ce:na</AUni> -<AUni ws="qvm-x-ame">ce:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cena</AUni> -<AUni ws="qvm-x-acl">+cena</AUni> -<AUni ws="qvm-x-akh">+cena</AUni> -<AUni ws="qvm-x-akl">+cena</AUni> -<AUni ws="qvm-x-ame">+cena</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.102" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="97667d7a-7588-45f4-b3ca-cb3ecd3e6203" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cena</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0aad0b7c-ec3a-4175-a5d3-342c111c6118" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4f1abea2-7ab7-4e38-baf7-e26b25d5a13a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cena 
\entryTyp root 
\gENG dinner 
\gSPN cena 
\e +cena 
\c N0 
\ach ce:na 
\akh ce:na 
\acl ce:na 
\akl ce:na 
\ame ce:na</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="384f7ec4-3100-4734-9e25-17740dcbc68c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">je:mi</AUni> -<AUni ws="qvm-x-acl">je:mi; je:mi; je:me</AUni> -<AUni ws="qvm-x-akh">je:mi</AUni> -<AUni ws="qvm-x-akl">je:mi; je:mi; je:me</AUni> -<AUni ws="qvm-x-ame">hi:mi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*he:mi</AUni> -<AUni ws="qvm-x-acl">*he:mi</AUni> -<AUni ws="qvm-x-akh">*he:mi</AUni> -<AUni ws="qvm-x-akl">*he:mi</AUni> -<AUni ws="qvm-x-ame">*he:mi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.700" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ee110d82-0bed-49b6-b1f3-21d84176c75f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*he:mi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b6c5f5d6-a961-425d-a993-5f4acf5b0a8a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a796ec30-1ed8-4f31-935c-156a9adcea61" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *he:mi 
\entryTyp root 
\gENG unit.of.measure 
\gSPN unidad.de.medida 
\e *he:mi 
\c N0 
\mp +FinalI 
\ach je:mi 
\akh je:mi 
\acl je:mi / _# 
\acl je:mi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl je:me +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl je:mi / _# 
\akl je:mi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl je:me +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hi:mi 
\i 2CH 6.12,13 Tsay patacpa largunpis y achunpis cargan ishcay metro juc cuarta. Altunna cargan juc metro juc cuarta juc jëmin.</Run> -</AStr> -</Custom> -</rt> -<rt class="Segment" guid="385164fe-8da0-4a08-9c02-9b4e14e48715" ownerguid="1915d1c3-1c71-4415-912d-0327ae56198f"> -<Analyses> -<objsur guid="77748469-fcf1-4cde-a3f6-47432eac5b6e" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexSense" guid="38559a42-99b0-4f9e-a379-62579de9e365" ownerguid="4c4894d5-6bbc-46cb-91f9-fbcfcd3931e7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">?</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2f3e3877-d1c9-4649-8384-3a5e96a49164" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="385ddf1b-c028-4bfd-81e0-bd7c2b401be0" ownerguid="944a44d3-52c6-4cd9-9d8a-6acf6e2f2be4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="WfiWordform" guid="38607ce4-d4de-4611-bf39-0084413ac8d8"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">imatapis</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="3864367c-8ad6-4d5a-9fae-340a7c8e4820" ownerguid="5f8aec4d-cfc6-49ff-96fc-74373c2c16ba"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="3866d89b-263c-41c4-b8e1-4c869e39d121" ownerguid="a2417520-5648-492d-b8c5-c2dc258604ef"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wayi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wayi; wayi; waye</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wayi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wayi; wayi; waye</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wayi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="908a9492-ef77-4052-a703-5d519cb12013" t="r" /> -</Morph> -<Msa> -<objsur guid="87a61372-b529-41d0-892b-ca33273dc85c" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="38689a9a-475f-4ad8-831b-c847bd6bf295"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wachpu</AUni> -<AUni ws="qvm-x-acl">wachpu; wachpo</AUni> -<AUni ws="qvm-x-akh">wachpu</AUni> -<AUni ws="qvm-x-akl">wachpu; wachpo</AUni> -<AUni ws="qvm-x-ame">wachpu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*watrupu</AUni> -<AUni ws="qvm-x-acl">*watrupu</AUni> -<AUni ws="qvm-x-akh">*watrupu</AUni> -<AUni ws="qvm-x-akl">*watrupu</AUni> -<AUni ws="qvm-x-ame">*watrupu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.586" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cadc25fd-fc38-4d3a-be0c-fc96823e9761" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*watrupu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="68947563-8667-4e92-be1f-cc1e2e438a23" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d5290279-d991-46cf-a8a7-2b5390d11181" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *watrupu 
\entryTyp root 
\gENG tie.up 
\gSPN atar 
\e *watrupu 
\c V1 
\ach wachpu 
\akh wachpu 
\acl wachpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wachpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wachpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wachpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wachpu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="386951ce-4ba2-49ea-93b9-77d39d642f49" ownerguid="d030f0c7-31a3-47da-be35-46f1eba63ae9"> -<ExampleWords> -<AUni ws="en">beguiling, bewitching, charming, dazzling, delightful, enchanting, enthralling, fascinating, gratifying, impressive, pleasing, thrilling</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe something that causes someone to like a person or thing?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3869901f-6ff8-43e8-8caf-f454d9eee33f" ownerguid="0f73685c-b28f-48dd-bb81-ee9c8297599e"> -<Form> -<AUni ws="qvm-x-ach">waycu</AUni> -<AUni ws="qvm-x-acl">waycu; wayco</AUni> -<AUni ws="qvm-x-akh">wayku</AUni> -<AUni ws="qvm-x-akl">wayku; wayko</AUni> -<AUni ws="qvm-x-ame">wayku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="386a1ffc-4c9b-4b9c-aefd-fa6fa089967e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">-pa</AUni> -<AUni ws="qvm-x-acl">-pa</AUni> -<AUni ws="qvm-x-akh">-pa</AUni> -<AUni ws="qvm-x-akl">-pa</AUni> -<AUni ws="qvm-x-ame">-pa</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.546" /> -<DateModified val="2022-10-16 16:7:15.855" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="2" /> -<LexemeForm> -<objsur guid="83338005-464f-4e8e-96d2-2a799942a33d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">-pa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="715c8af0-d7ab-448b-a2fa-f8b36822dac0" t="o" /> -<objsur guid="9e717853-bae2-43ea-877b-f3cc67789d3b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bcc9b3cf-ed79-4582-a8ec-688dd11569bf" t="o" /> -<objsur guid="d28ec940-cce9-45b5-baf9-8328415d952b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx -pa 
\entryTyp root 
\gENG GEN 
\gSPN GEN 
\e -pa 
\c N0 
\ach -pa 
\akh -pa 
\acl -pa 
\akl -pa 
\ame -pa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="386a5b19-ab65-4822-bea8-39a3683a1361" ownerguid="0c94e084-d9f3-4880-9c97-c8e7d2ff5653"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tie</AUni> -<AUni ws="es">amarrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4ccc54df-7c4a-4954-a7f2-32eccca17277" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="386b1f9e-33b6-46f3-bc2d-6b50758b82f5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sue:le:ru</AUni> -<AUni ws="qvm-x-acl">sue:le:ru; sue:le:ru; sue:le:ro</AUni> -<AUni ws="qvm-x-akh">sue:le:ru</AUni> -<AUni ws="qvm-x-akl">sue:le:ru; sue:le:ru; sue:le:ro</AUni> -<AUni ws="qvm-x-ame">sue:le:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+suelero</AUni> -<AUni ws="qvm-x-acl">+suelero</AUni> -<AUni ws="qvm-x-akh">+suelero</AUni> -<AUni ws="qvm-x-akl">+suelero</AUni> -<AUni ws="qvm-x-ame">+suelero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.733" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="21989978-9e59-4191-ba0b-62aa1f83f3b2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+suelero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c030a690-0464-414c-80f4-417537b5848f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="98958be1-ff22-4079-bd78-d9182fee21e7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +suelero 
\entryTyp root 
\gENG leather.worker 
\gSPN suelero 
\e +suelero 
\c N0 
\ach sue:le:ru 
\akh sue:le:ru 
\acl sue:le:ru / _# 
\acl sue:le:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sue:le:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sue:le:ru / _# 
\akl sue:le:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sue:le:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sue:le:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="38702665-019c-4c2f-afa1-5f62aadc81bd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ministru; ministro</AUni> -<AUni ws="qvm-x-acl">ministru; ministru; ministro</AUni> -<AUni ws="qvm-x-akh">ministru; ministro</AUni> -<AUni ws="qvm-x-akl">ministru; ministru; ministro</AUni> -<AUni ws="qvm-x-ame">ministru; ministro</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ministro</AUni> -<AUni ws="qvm-x-acl">+ministro</AUni> -<AUni ws="qvm-x-akh">+ministro</AUni> -<AUni ws="qvm-x-akl">+ministro</AUni> -<AUni ws="qvm-x-ame">+ministro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.444" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c016bd4e-6888-402f-9ed1-91de1edb8040" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ministro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6a464e42-ff49-4bf3-a10f-964154af8adf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cca9ca85-2edf-4c17-9ae3-9a46277c7bb8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ministro 
\entryTyp root 
\gENG 
\gSPN 
\e +ministro 
\c N0 
\ach ministru / ~_# 
\ach ministro / _# 
\akh ministru / ~_# 
\akh ministro / _# 
\acl ministru / ~_# 
\acl ministru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ministro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ministru / ~_# 
\akl ministru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ministro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ministru / ~_# 
\ame ministro / _# 
\i DAN 6.2 Paycunata mandananpagmi quimsa ministrucunata churargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="38735235-65e0-4126-ba48-896e27bec111" ownerguid="2dc5d8ae-4078-434f-91dc-3970cac11d02"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">skirt</AUni> -<AUni ws="es">traje</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e4aba5f2-dde4-4d3a-9253-c46a81eb7c46" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="3873bad7-bb0b-439e-b358-6a27fc6d8ae4" ownerguid="c6e812df-19dd-4f8f-abfa-5ba01d91c7b6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c6e75132-5e90-49b7-9a8e-3ef8604ef28b" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="034f0bde-20cb-4809-845e-d8acc566b201" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="38747176-6ec8-486c-a786-3a250f72aff1"> -<Analyses> -<objsur guid="503aec14-5708-47c1-a9c8-79938589e713" t="o" /> -</Analyses> -<Checksum val="1662104544" /> -<Form> -<AUni ws="qvm-x-akh">tsaypita</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="38778f88-2694-41b0-8ae9-46debf588303" ownerguid="161cae07-d1cb-467c-920f-62ba9039584c"> -<ExampleWords> -<AUni ws="en">spacecraft, spaceship, rocket, space shuttle, space station, satellite, flying saucer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a vehicle that travels in space?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="38789334-fada-4cfc-9122-077bdfda02b5" ownerguid="cbac3e35-e569-426a-a458-6cff4b51dec2"> -<Form> -<AUni ws="qvm-x-ach">ösi</AUni> -<AUni ws="qvm-x-acl">ösi; ösi; öse</AUni> -<AUni ws="qvm-x-akh">ösi</AUni> -<AUni ws="qvm-x-akl">ösi; ösi; öse</AUni> -<AUni ws="qvm-x-ame">ösi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="38795822-d4c0-4654-8b9a-fe136399ece1" ownerguid="1de2cef5-3a2d-45c1-8cb6-06b2ac087907"> -<Question> -<AUni ws="en">(2) Complement clauses: A main verb may take as its direct object a clause. These are often referred to as "Noun clauses" or "Noun complements". The verb form of the subordinate clause is usually determined by the semantics of the main verb, so in this case, our meaning labels will just refer to the context. If a verb form occurs in the complements to words of thinking and believing, the meaning label will be complement to words of thinking and believing.</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="387a9500-a9d5-43a7-9f26-a9ed47815515" ownerguid="73b58acf-e488-4618-8773-806a170d4e9d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="387ca6ca-8c83-4b70-ace5-981dba4287e1" ownerguid="00d642ae-3b07-4202-a777-9b2f12460309"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="387ef7fb-37fd-4e40-b288-cb7bf0307e0b" ownerguid="4a6b60b0-7b96-4437-936b-00432e82384f"> -<Form> -<AUni ws="qvm-x-ach">yoraga; yoragä</AUni> -<AUni ws="qvm-x-acl">yoraga; yoragä</AUni> -<AUni ws="qvm-x-akh">yoraqa; yoraqä</AUni> -<AUni ws="qvm-x-akl">yoraqa; yoraqä</AUni> -<AUni ws="qvm-x-ame">yuraqa; yuraqä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="388097a9-b7e6-425b-9a63-189d1c4af774" ownerguid="c50af688-c627-4cdd-81b8-622a2ad1216c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="38824245-7f7d-4081-ab7c-29c35d481dc3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tormentu; tormento</AUni> -<AUni ws="qvm-x-acl">tormentu; tormentu; tormento</AUni> -<AUni ws="qvm-x-akh">tormentu; tormento</AUni> -<AUni ws="qvm-x-akl">tormentu; tormentu; tormento</AUni> -<AUni ws="qvm-x-ame">tormentu; tormento</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tormento</AUni> -<AUni ws="qvm-x-acl">+tormento</AUni> -<AUni ws="qvm-x-akh">+tormento</AUni> -<AUni ws="qvm-x-akl">+tormento</AUni> -<AUni ws="qvm-x-ame">+tormento</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.957" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fad59328-d141-49a1-ac12-e7b20750e72e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tormento</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5542c7da-b266-4ff0-8ae0-23a7af5123ff" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="be2a4a74-8d95-4acf-8252-2cd58debd1e4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tormento 
\entryTyp root 
\gENG + 
\gSPN + 
\e +tormento 
\c N0 
\ach tormentu / ~_# 
\ach tormento / _# 
\akh tormentu / ~_# 
\akh tormento / _# 
\acl tormentu / ~_# 
\acl tormentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tormento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tormentu / ~_# 
\akl tormentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tormento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tormentu / ~_# 
\ame tormento / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3883358c-f83c-40c3-9693-f37bbbe3d9e0" ownerguid="ef1b0b81-1213-422f-9566-fa24e5513ec2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8b433f50-feb1-41e4-ade6-17da1fd1a2be" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="3884c740-550e-46bd-ab97-8a61f3f9eef2" ownerguid="d6334316-8fc1-40f5-ae49-faece188c167"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="3885231e-8b18-4da3-af76-c75e8b731ed8" ownerguid="3b4b947a-f223-4c87-8839-9f6237cda9f6"> -<Abbreviation> -<AUni ws="en">7.3.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.536" /> -<DateModified val="2022-9-23 16:55:8.536" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to picking something up.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Pick up</AUni> -</Name> -<Questions> -<objsur guid="43c796a1-b15a-4bb5-80f3-df7c60b7db01" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="38877d9c-e6c5-4593-b01f-500c0fc607a6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">malumya</AUni> -<AUni ws="qvm-x-acl">malumya</AUni> -<AUni ws="qvm-x-akh">malumya</AUni> -<AUni ws="qvm-x-akl">malumya</AUni> -<AUni ws="qvm-x-ame">malumya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mallumya</AUni> -<AUni ws="qvm-x-acl">*mallumya</AUni> -<AUni ws="qvm-x-akh">*mallumya</AUni> -<AUni ws="qvm-x-akl">*mallumya</AUni> -<AUni ws="qvm-x-ame">*mallumya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.285" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5290fae4-2e3e-494b-8eef-0f645eeff289" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mallumya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b2165782-bfba-49d3-b34a-5b3298d5fba5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="01cdbaf9-8cfc-4fca-8e10-063da7f67c05" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mallumya 
\entryTyp root 
\gENG worm 
\gSPN gusano 
\e *mallumya 
\c N0 
\ach malumya 
\akh malumya 
\acl malumya 
\akl malumya 
\ame malumya</Run> -</AStr> -</Custom> -</rt> -<rt class="MoAffixAllomorph" guid="388870a0-cbff-40e3-86fa-e65b7a346d7f" ownerguid="10e92cd8-6d9d-4c1e-b946-f076814474e0"> -<Form> -<AUni ws="qvm-x-ach">pag</AUni> -<AUni ws="qvm-x-acl">pag</AUni> -<AUni ws="qvm-x-akh">paq</AUni> -<AUni ws="qvm-x-akl">paq</AUni> -<AUni ws="qvm-x-ame">paq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="388b9bb6-3bf7-42af-bc88-4320b453a853" ownerguid="d06628e5-7cc3-40db-b99a-459eec99e731"> -<Form> -<AUni ws="qvm-x-ach">significa</AUni> -<AUni ws="qvm-x-acl">significa</AUni> -<AUni ws="qvm-x-akh">significa</AUni> -<AUni ws="qvm-x-akl">significa</AUni> -<AUni ws="qvm-x-ame">significa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="388c9235-aa66-4d43-aeb8-aa6cdfb69089"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wama</AUni> -<AUni ws="qvm-x-acl">wama</AUni> -<AUni ws="qvm-x-akh">wama</AUni> -<AUni ws="qvm-x-akl">wama</AUni> -<AUni ws="qvm-x-ame">wama</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wama</AUni> -<AUni ws="qvm-x-acl">*wama</AUni> -<AUni ws="qvm-x-akh">*wama</AUni> -<AUni ws="qvm-x-akl">*wama</AUni> -<AUni ws="qvm-x-ame">*wama</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.465" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="17a5d884-2eaa-4d36-a3c0-1b2b1be0312b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wama</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="014bc832-b96d-4339-8c24-fc57ffcaf626" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="93b9850e-c0b2-4a7b-85a9-455291872ffb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wama 
\entryTyp root 
\gENG raro 
\gSPN ? 
\e *wama 
\c V1 
\ach wama 
\akh wama 
\acl wama 
\akl wama 
\ame wama</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="388c9942-b41e-41ad-8f88-be1c6ce83740"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">moguru</AUni> -<AUni ws="qvm-x-acl">moguru; moguru; moguro</AUni> -<AUni ws="qvm-x-akh">moquru</AUni> -<AUni ws="qvm-x-akl">moquru; moquru; moquro</AUni> -<AUni ws="qvm-x-ame">muquru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*muquru</AUni> -<AUni ws="qvm-x-acl">*muquru</AUni> -<AUni ws="qvm-x-akh">*muquru</AUni> -<AUni ws="qvm-x-akl">*muquru</AUni> -<AUni ws="qvm-x-ame">*muquru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.527" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="45ee122c-0ca9-49a9-ac29-03449edd785e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*muquru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8835d427-d665-4aec-ba62-e86226c00103" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d36ece25-d0f4-4990-8edb-2467bbed42c5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *muquru 
\entryTyp root 
\gENG ball 
\gSPN bola 
\e *muquru 
\c N0 
\ach moguru 
\akh moquru 
\acl moguru / _# 
\acl moguru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl moguro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl moquru / _# 
\akl moquru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl moquro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame muquru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="38994546-69ff-4f92-9219-4ba104de87be"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">arte:sa</AUni> -<AUni ws="qvm-x-acl">arte:sa</AUni> -<AUni ws="qvm-x-akh">arte:sa</AUni> -<AUni ws="qvm-x-akl">arte:sa</AUni> -<AUni ws="qvm-x-ame">arte:sa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+artesa</AUni> -<AUni ws="qvm-x-acl">+artesa</AUni> -<AUni ws="qvm-x-akh">+artesa</AUni> -<AUni ws="qvm-x-akl">+artesa</AUni> -<AUni ws="qvm-x-ame">+artesa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.830" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="75837d65-5722-4bd8-b565-99c6b7e4a1af" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+artesa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d17f0e31-8a2c-4875-b414-c9a0e924dd29" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0e607539-9613-4bc3-8c12-546a0f3aa698" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +artesa 
\entryTyp root 
\gENG 
\gSPN 
\e +artesa 
\c N0 
\ach arte:sa 
\akh arte:sa 
\acl arte:sa 
\akl arte:sa 
\ame arte:sa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3899dfb5-2154-46da-a1e6-86e0ed934985" ownerguid="929720f5-c264-49fd-b817-3e1ebff6e1de"> -<ExampleWords> -<AUni ws="en">vegetable, tomato, leek, squash, carrot, beans, greens, spinach, cabbage, lettuce, eggplant, okra, pumpkin, cucumber, red pepper, green pepper, cassava leaf</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What types of vegetables are eaten?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="389c0a53-160d-43c5-8c1d-93e078f8031e" ownerguid="b6b73d41-e23f-4f22-b01e-7e75f4115fce"> -<ExampleWords> -<AUni ws="en">purposeless, without purpose, lack a goal, aimless, drifting, no direction</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to not having any purpose?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="389c616b-3514-4b8b-b409-a5360057a677" ownerguid="a97e1e43-8347-41a8-b258-5ec7de90442c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cave</AUni> -<AUni ws="es">cueva</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="09368bb3-7e45-47f4-b60a-7a85ffb72ba5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="38a26e71-a048-488f-898d-0a80e11306da" ownerguid="6a0efdb4-785f-45d1-94d1-1da42723b28f"> -<Form> -<AUni ws="qvm-x-ach">novedä</AUni> -<AUni ws="qvm-x-acl">novedä</AUni> -<AUni ws="qvm-x-akh">novedä</AUni> -<AUni ws="qvm-x-akl">novedä</AUni> -<AUni ws="qvm-x-ame">novedä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="38a37bb4-850b-4823-9e21-08dcf13b6358" ownerguid="a6341082-8a31-43c6-87d4-0a180914a374"> -<Form> -<AUni ws="qvm-x-ach">chura</AUni> -<AUni ws="qvm-x-acl">chura</AUni> -<AUni ws="qvm-x-akh">chura</AUni> -<AUni ws="qvm-x-akl">chura</AUni> -<AUni ws="qvm-x-ame">chura</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="38aa0019-55c0-4148-81a5-1a59ea703c9b" ownerguid="73b1f5d7-de2c-4439-bc7a-76f2ec875572"> -<Form> -<AUni ws="qvm-x-ach">lesión; lesion</AUni> -<AUni ws="qvm-x-acl">lesión; lesion</AUni> -<AUni ws="qvm-x-akh">lesión; lesion</AUni> -<AUni ws="qvm-x-akl">lesión; lesion</AUni> -<AUni ws="qvm-x-ame">lesión; lesion</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="38ab2681-fcc7-4a75-bb0b-29c5cd2e3a8f" ownerguid="c7c85346-158d-4881-839d-9a6a8e47209b"> -<Abbreviation> -<AUni ws="en">7.2.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.526" /> -<DateModified val="2022-9-23 16:55:8.526" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to causing someone to go somewhere.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Send someone</AUni> -</Name> -<Questions> -<objsur guid="22cebd0a-c289-4ab5-b82f-e6506ed3568a" t="o" /> -<objsur guid="1e133738-49be-4c1c-a087-7b93e2c07574" t="o" /> -<objsur guid="9a2aee69-da09-4300-98ab-f01860e48489" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="38acd925-2ac3-41cf-89b4-aeaf38db0035" ownerguid="b2bb077a-92c8-4e54-8dfa-c89efd60b82d"> -<ExampleWords> -<AUni ws="en">hen house, duck pond, birdcage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) Where are domesticated birds kept?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="38af7490-8810-4d18-9761-ca6266fe5b9d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">walga</AUni> -<AUni ws="qvm-x-acl">walga</AUni> -<AUni ws="qvm-x-akh">walqa</AUni> -<AUni ws="qvm-x-akl">walqa</AUni> -<AUni ws="qvm-x-ame">walqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wallqa.n</AUni> -<AUni ws="qvm-x-acl">*wallqa.n</AUni> -<AUni ws="qvm-x-akh">*wallqa.n</AUni> -<AUni ws="qvm-x-akl">*wallqa.n</AUni> -<AUni ws="qvm-x-ame">*wallqa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.465" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e03360d9-6efa-4ad6-a429-01c4ba13c696" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wallqa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b908a012-504a-45b6-8eb5-e9ec55ed6be0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e7b31579-292f-41c1-b8b8-d44ce680c995" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wallqa.n 
\entryTyp root 
\gENG necklace 
\gSPN collar 
\e *wallqa.n 
\c N0 
\ach walga 
\akh walqa 
\acl walga 
\akl walqa 
\ame walqa</Run> -</AStr> -</Custom> -</rt> -<rt class="PartOfSpeech" guid="38b17640-aa0a-406d-bc99-a54197290945" ownerguid="ecf8c677-320a-452c-85c0-1f0df87b5be5"> -<Abbreviation> -<AUni ws="en">bn</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-09-27 21:54:54.961" /> -<DateModified val="2022-09-27 21:55:06.144" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Biblical Name</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="38b24d20-6502-4cdf-98d5-f507d81b632d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pica</AUni> -<AUni ws="qvm-x-acl">pica</AUni> -<AUni ws="qvm-x-akh">pica</AUni> -<AUni ws="qvm-x-akl">pica</AUni> -<AUni ws="qvm-x-ame">pica</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pica</AUni> -<AUni ws="qvm-x-acl">+pica</AUni> -<AUni ws="qvm-x-akh">+pica</AUni> -<AUni ws="qvm-x-akl">+pica</AUni> -<AUni ws="qvm-x-ame">+pica</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.818" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c32f378b-9edd-4188-9d97-caf6f605680a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pica</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d5b5ab36-aab1-4d71-8fdd-ea09a3d23523" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5b98da65-3f75-466a-a009-f92b8d5aa401" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pica 
\entryTyp root 
\gENG goad 
\gSPN picar 
\e +pica 
\c N0 
\ach pica 
\akh pica 
\acl pica 
\akl pica 
\ame pica</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="38b30d56-1554-40fb-a1ea-c1cf17eadf84" ownerguid="5dfb5545-62ab-4401-a48a-70d7a8cfb3c9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 BN/BN</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">INST</AUni> -<AUni ws="es">COM</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6a3c64a4-aa9f-4fcb-93ea-93a8b6c7edcc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="38b426ec-1bb5-4ae2-a196-ddd92b8a9b2d" ownerguid="167bfba5-0785-4bb5-a083-3ffbefa57897"> -<ExampleWords> -<AUni ws="en">choice</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the thing that is thought better?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="38b56d7c-9f14-4caa-b186-c99c75b45055" ownerguid="98d8ed5b-9b34-4d7c-abba-0303dc28b6d5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="38b902a8-1bb7-4cc5-84aa-6f77223cd00f" ownerguid="7f73f730-304d-4edf-a19a-ce9797d4545a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="b6e4d5f8-3fca-4486-8642-d29ff2e22d14" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="38bbb33a-90bf-4a2c-a0e5-4bde7e134bd9" ownerguid="ba06de9e-63e1-43e6-ae94-77bea498379a"> -<Abbreviation> -<AUni ws="en">2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words related to all the senses--sight, hearing, smell, taste, and feeling. Some languages may not distinguish some of these senses, and some languages may have words for other senses. There are also other senses that animals have. If your language has words for other senses, include them here.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>24 Sensory Events and States; 24G General Sensory Perception</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Sense, perceive</AUni> -</Name> -<OcmCodes> -<Uni>151 Sensation and Perception</Uni> -</OcmCodes> -<Questions> -<objsur guid="69a42d9e-cc63-4aa0-b583-1cc51cf4fa06" t="o" /> -<objsur guid="f11c9a97-1761-430e-a8d3-1d8efd2a6aff" t="o" /> -<objsur guid="3d6ba4b6-9b2c-4434-ad75-cf5c16f761a6" t="o" /> -<objsur guid="00f90586-d4e7-456c-ab95-5e4157b47375" t="o" /> -<objsur guid="0db995d0-14d3-4248-b64b-631d4c75cf07" t="o" /> -<objsur guid="e0b50e1e-5e50-46d7-ad3e-ec7b45d54acb" t="o" /> -<objsur guid="187a1c16-3bd1-4775-9edb-0c3bd0fbf36f" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f" t="o" /> -<objsur guid="8503660c-03af-49ee-86b6-525aab4da828" t="o" /> -<objsur guid="8497fb66-8b91-46b9-a0d5-fb9385319561" t="o" /> -<objsur guid="ed7930df-e7b4-43c9-a11a-b09521276b57" t="o" /> -<objsur guid="72274e9d-5d3c-4ae7-93ab-db3617cdda1e" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" ownerguid="340a633c-324e-43af-a843-c6032a28d697"> -<Form> -<AUni ws="qvm-x-ach">aywa</AUni> -<AUni ws="qvm-x-acl">aywa</AUni> -<AUni ws="qvm-x-akh">aywa</AUni> -<AUni ws="qvm-x-akl">aywa</AUni> -<AUni ws="qvm-x-ame">aywa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="38bdff04-c7a9-41fa-a6a2-7aa214de308c" ownerguid="596ab399-e442-4afe-8796-633a49de65a7"> -<Abbreviation> -<AUni ws="en">4.7.9.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.274" /> -<DateModified val="2022-9-23 16:55:8.274" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being impartial.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Impartial</AUni> -</Name> -<Questions> -<objsur guid="6a4546a4-dea4-413f-8d75-f8b65678274f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="38bf569c-c1e9-4530-876b-5bcc629d06ca"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gochgu</AUni> -<AUni ws="qvm-x-acl">gochgu; gochgu; gochgo</AUni> -<AUni ws="qvm-x-akh">qochqu</AUni> -<AUni ws="qvm-x-akl">qochqu; qochqu; qochqo</AUni> -<AUni ws="qvm-x-ame">quchqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qutrqu.n</AUni> -<AUni ws="qvm-x-acl">*qutrqu.n</AUni> -<AUni ws="qvm-x-akh">*qutrqu.n</AUni> -<AUni ws="qvm-x-akl">*qutrqu.n</AUni> -<AUni ws="qvm-x-ame">*qutrqu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.910" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a8f817ec-8ea5-4741-9d34-5b20b6699796" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qutrqu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3ac33c82-201f-4142-8711-7b665ed92584" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5fba4972-5e20-4fe0-87df-b236ea9d33bb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qutrqu.n 
\entryTyp root 
\gENG 
\gSPN 
\e *qutrqu.n 
\c N0 
\ach gochgu 
\akh qochqu 
\acl gochgu / _# 
\acl gochgu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gochgo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qochqu / _# 
\akl qochqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qochqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame quchqu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="38c34e04-c76c-4c5e-b3d1-7d98e7fda0ad"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wancu</AUni> -<AUni ws="qvm-x-acl">wancu; wancu; wanco</AUni> -<AUni ws="qvm-x-akh">wanku</AUni> -<AUni ws="qvm-x-akl">wanku; wanku; wanko</AUni> -<AUni ws="qvm-x-ame">wanku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wanku.n</AUni> -<AUni ws="qvm-x-acl">*wanku.n</AUni> -<AUni ws="qvm-x-akh">*wanku.n</AUni> -<AUni ws="qvm-x-akl">*wanku.n</AUni> -<AUni ws="qvm-x-ame">*wanku.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.475" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ca57b56e-fabd-4831-bb21-1ca19507bbd5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wanku.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5ecdd6fe-561b-4e4f-8b7e-a9d573267041" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="56307c1b-9bac-460f-87a8-3688a58744a9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wanku.n 
\entryTyp root 
\gENG bundle 
\gSPN ? 
\e *wanku.n 
\c N0 
\ach wancu 
\akh wanku 
\acl wancu / _# 
\acl wancu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wanco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wanku / _# 
\akl wanku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl wanko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wanku 
\mcc *wanku.n / ~_ [prtall]</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="38c3e015-f9c6-436a-8940-0ea13a6f8029" ownerguid="c60cf6a1-7868-4536-ac73-387bfa26e04b"> -<ExampleWords> -<AUni ws="en">lead a rebellion, organize a rebellion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What does the leader of a rebellion do?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="38c4f865-6e2e-42d0-8c87-bdf2e0745505" ownerguid="8be79fd9-52a8-4124-8184-0b3644dd833e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 27.5 Tsaynog churaptiquimi tsay rejïlla quëdanga pulannincho.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="38c63a78-ec6f-423a-bcb1-e8349c2beed4" ownerguid="06700833-ca70-4c41-a4f3-a6bcbe7c1099"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="38c6663d-af87-4f6e-a4d1-d4baaf603d40" ownerguid="d84032c0-de38-4cfb-acae-585b3f46c4e1"> -<Form> -<AUni ws="qvm-x-ach">jagaya; jagayä</AUni> -<AUni ws="qvm-x-acl">jagaya; jagayä</AUni> -<AUni ws="qvm-x-akh">jaqaya; jaqayä</AUni> -<AUni ws="qvm-x-akl">jaqaya; jaqayä</AUni> -<AUni ws="qvm-x-ame">haqaya; haqayä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="38c7bec1-cd8b-4d1c-9d26-a2685955bf94"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">desprecia</AUni> -<AUni ws="qvm-x-acl">desprecia</AUni> -<AUni ws="qvm-x-akh">desprecia</AUni> -<AUni ws="qvm-x-akl">desprecia</AUni> -<AUni ws="qvm-x-ame">desprecia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+despreciar</AUni> -<AUni ws="qvm-x-acl">+despreciar</AUni> -<AUni ws="qvm-x-akh">+despreciar</AUni> -<AUni ws="qvm-x-akl">+despreciar</AUni> -<AUni ws="qvm-x-ame">+despreciar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.396" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cfba3a86-1109-4780-aa5f-ce223fb9735f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+despreciar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c2bd856a-cc49-49c4-bc45-4f0987720bbd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="518ae71d-be53-4c3e-8377-976927cf7378" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +despreciar 
\entryTyp root 
\gENG deprecate 
\gSPN despreciar 
\e +despreciar 
\c V2 
\ach desprecia 
\akh desprecia 
\acl desprecia 
\akl desprecia 
\ame desprecia</Run> -</AStr> -</Custom> -</rt> -<rt class="MoAffixAllomorph" guid="38c9806d-deee-45af-8c6f-32a4531f668e" ownerguid="c94b01e7-d8ef-4ec5-8372-c14d19ae9d62"> -<Form> -<AUni ws="qvm-x-ach">ylapa</AUni> -<AUni ws="qvm-x-acl">ylapa</AUni> -<AUni ws="qvm-x-akh">ylapa</AUni> -<AUni ws="qvm-x-akl">ylapa</AUni> -<AUni ws="qvm-x-ame">ylapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="38c9e629-28ac-43da-8657-4c9dbe7a8496" ownerguid="3ee8fa9d-8c04-445c-ad78-d15f56ac2a93"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PunctuationForm" guid="38ca6eff-c44c-4a2b-acc6-d3765be6eac9"> -<Form> -<Str> -<Run ws="en">f</Run> -</Str> -</Form> -</rt> -<rt class="LexSense" guid="38cadaa3-3362-4f54-b611-44a62fb922d3" ownerguid="2ed507df-d454-4a95-8c6a-3db0c525e8bc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">barrel</AUni> -<AUni ws="es">barrel</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dd9e0450-d3db-4b6b-867c-953c57e90fbf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="38cc7fdc-270f-4776-a3b1-1edf0a21bbf3" ownerguid="8116dec0-458c-4cf1-ac9a-958dd9e6f22c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">semen</AUni> -<AUni ws="es">semen</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0d8c558b-9f99-48d1-bab5-0076887bdf66" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="38cd9d10-9d38-4428-bb21-a43b64dbcd55" ownerguid="d4e8f608-e7f8-4a9f-9299-c3f17e267bd5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pop.out</AUni> -<AUni ws="es">sobresale</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6aed89a5-91a3-4873-aaec-aaef8d361b32" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="38ceef18-e1b8-48b0-8c9c-d610e67061d0" ownerguid="d8389a63-8b39-4e23-8528-cd756dae2f5c"> -<ExampleWords> -<AUni ws="en">paper, sheet, page, card, cardboard</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to paper?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="38d04e53-f4b8-4118-96bc-4f668ae65591" ownerguid="dfc4cb14-2772-48c2-9c28-ca6af49cd78e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ce99e4ce-2e96-462c-8cc9-f628652b9190" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="38d1a6fe-0811-4eb0-a1d8-f69b6ad978e0" ownerguid="61f52196-a8b2-496d-96ea-8c15dc7d377a"> -<Abbreviation> -<AUni ws="en">4.9.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.296" /> -<DateModified val="2022-9-23 16:55:8.296" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to blessing someone--saying something that causes something good to happen, or requests God to do something good to someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33C" Bless, Curse</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Bless</AUni> -</Name> -<Questions> -<objsur guid="23ab4776-6246-4620-80c4-f51e778b5206" t="o" /> -<objsur guid="67ae0ed5-d599-49c5-a52c-4f2abd9c9ae8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="38d33d92-63de-42d4-9191-5d16f397a23a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wawi:ta</AUni> -<AUni ws="qvm-x-acl">wawi:ta</AUni> -<AUni ws="qvm-x-akh">wawi:ta</AUni> -<AUni ws="qvm-x-akl">wawi:ta</AUni> -<AUni ws="qvm-x-ame">wawi:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wawi:ta</AUni> -<AUni ws="qvm-x-acl">*wawi:ta</AUni> -<AUni ws="qvm-x-akh">*wawi:ta</AUni> -<AUni ws="qvm-x-akl">*wawi:ta</AUni> -<AUni ws="qvm-x-ame">*wawi:ta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.597" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cc29c11b-2d87-49f3-9554-cac090216d7e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wawi:ta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="63550092-53cc-4363-b6b8-4f516115d8a6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="93357e9b-37c8-44be-bcef-a2f1f63928b8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wawi:ta 
\entryTyp root 
\gENG poor.thing 
\gSPN pobrecita 
\e *wawi:ta 
\c NOSUFF 
\ach wawi:ta 
\akh wawi:ta 
\acl wawi:ta 
\akl wawi:ta 
\ame wawi:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="38d36a45-2e85-478c-b027-852ac7d42019"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">tänäpaqpis</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="38d4d060-21dc-450b-b9f1-6973edeb3e46" ownerguid="d25f7907-091e-4cf7-bd8c-bdb97278b616"> -<ExampleWords> -<AUni ws="en">collide, hit each other, run into each other</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to two things moving so that they hit each other?</AUni> -</Question> -</rt> -<rt class="Segment" guid="38d6ec14-07dc-4266-a9fc-e11f180d3c15" ownerguid="2ae0cb9d-15d7-47b6-88ed-91c21e8605f4"> -<Analyses> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="fa7aeb71-200a-4a5d-9436-13faa1972fea" t="r" /> -<objsur guid="25651c34-3e31-419d-86b5-cda6907f0a4f" t="r" /> -<objsur guid="7a34d709-dd7d-4ac4-94e8-58e444587dd4" t="r" /> -<objsur guid="a85a5670-81ba-47b9-8443-95e8be60ebec" t="r" /> -<objsur guid="bb723df0-2b97-461e-bae3-564d9c1a0cfd" t="r" /> -<objsur guid="4fccec2d-58a4-466f-a087-a79d6bf13b57" t="r" /> -<objsur guid="b6f85872-82e2-4115-b10c-9d4e33accf3d" t="r" /> -<objsur guid="afffb5bb-d332-4ad0-b30c-3ea9206a1815" t="r" /> -<objsur guid="d3da10af-d6fb-4b58-9133-b9d5c3ec090c" t="r" /> -</Analyses> -<BeginOffset val="18" /> -</rt> -<rt class="MoStemAllomorph" guid="38d7b756-329e-413b-9b34-d3b15acfa819" ownerguid="44ed48bc-633d-43d2-8aa6-fd1a2b7e04ef"> -<Form> -<AUni ws="qvm-x-ach">mädrin</AUni> -<AUni ws="qvm-x-acl">mädrin; mädrin; mädren</AUni> -<AUni ws="qvm-x-akh">mädrin</AUni> -<AUni ws="qvm-x-akl">mädrin; mädrin; mädren</AUni> -<AUni ws="qvm-x-ame">mädrin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="38d81174-1bcd-48d1-940c-1abd826aece6" ownerguid="64fe56d1-54de-47c0-992b-a8bedb2fe71c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2SA 17.29 Tsaynöpis apapäkurqan abëjapa mishkinta, niknita, uyshata, cabrata y wäkakunapa lëchinpita rurashqa quësuta.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="38d9125b-88fe-4f7a-9e21-5da82d3ee093"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">timpu</AUni> -<AUni ws="qvm-x-acl">timpu; timpo</AUni> -<AUni ws="qvm-x-akh">timpu</AUni> -<AUni ws="qvm-x-akl">timpu; timpo</AUni> -<AUni ws="qvm-x-ame">timpu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*timpu</AUni> -<AUni ws="qvm-x-acl">*timpu</AUni> -<AUni ws="qvm-x-akh">*timpu</AUni> -<AUni ws="qvm-x-akl">*timpu</AUni> -<AUni ws="qvm-x-ame">*timpu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.906" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="13f1a6ef-23a0-4093-98ae-2ce78918dfe6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*timpu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6f80142f-b1f5-4105-ad05-4663fa5b4a9d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="961acfa2-fd18-4c9e-9842-4f6f79b2ed6b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *timpu 
\entryTyp root 
\gENG boil 
\gSPN hervir 
\e *timpu 
\c V2 
\ach timpu 
\akh timpu 
\acl timpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl timpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl timpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl timpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame timpu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="38da97cf-f372-4c4f-b444-eeef5dca18c2" ownerguid="90e2fae7-1c14-45de-a830-1d888cc05952"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 12.11 Papänë läzuwan astashga cashuptiquipis nogaga fiërru puntayog ronzalwanragmi astashayquipag.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="38dabc67-f68a-4757-a0d9-526d452435a5" ownerguid="1c51bc5a-cf40-41b5-a1ae-6f1cc6ae9849"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">take.leave</AUni> -<AUni ws="es">despedirse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0b858740-8d28-49f2-a915-eb95bd55b552" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="38e17076-4b21-4a04-966b-3280d15fc27a" ownerguid="398a86b9-9499-40cb-a097-a365fac253c8"> -<Form> -<AUni ws="qvm-x-ach">sacha</AUni> -<AUni ws="qvm-x-acl">sacha</AUni> -<AUni ws="qvm-x-akh">sacha</AUni> -<AUni ws="qvm-x-akl">sacha</AUni> -<AUni ws="qvm-x-ame">sacha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="38e35cbd-321d-4d39-ae68-50898da5a86f" ownerguid="737ac182-6676-4e3b-bae7-523199291521"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="38e474c7-be7a-4821-a8b8-6b80897a3477" ownerguid="8841af5e-74e6-4c5d-a313-ba9aa7fdb78b"> -<ExampleWords> -<AUni ws="en">stand around, stand together</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to standing near something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="38e74415-a978-46ac-b3e5-5006fe052b2d" ownerguid="cb9f3356-5143-4671-bfd5-b97046f03937"> -<Form> -<AUni ws="qvm-x-ach">töma</AUni> -<AUni ws="qvm-x-acl">töma</AUni> -<AUni ws="qvm-x-akh">töma</AUni> -<AUni ws="qvm-x-akl">töma</AUni> -<AUni ws="qvm-x-ame">töma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="38e8e977-3248-4f69-9e18-bdf86ff2a714" ownerguid="efd03c89-bf8b-4d46-a921-06cc06f28356"> -<ExampleWords> -<AUni ws="en">bystander, onlooker, spectator, wall flower</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a person who is not involved in a group or activity?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="38e8fe8a-29f2-43de-a5a5-c86e812d6763" ownerguid="d90db6d4-6c78-4ac8-9764-0cafa79b8b31"> -<ExampleWords> -<AUni ws="en">army, band</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a group of soldiers in the army?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="38edcdd7-740f-4d4b-9e14-765e963cf57d" ownerguid="9d97ee4f-b5db-4100-9e5a-de46e1259f9b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">seal</AUni> -<AUni ws="es">sello</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="10404bc0-83cb-44d0-9415-e4ceb913bbf3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="38f22da4-335e-4e40-803b-d83bc53162b8" ownerguid="09d452b3-8f58-4d30-bdc8-3fa16032a0c2"> -<Form> -<AUni ws="qvm-x-ach">wagrag</AUni> -<AUni ws="qvm-x-acl">wagrag</AUni> -<AUni ws="qvm-x-akh">waqraq</AUni> -<AUni ws="qvm-x-akl">waqraq</AUni> -<AUni ws="qvm-x-ame">waqraq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="38f70ced-afd2-4173-83eb-3a26af82e53a" ownerguid="c6d4c02a-a2b4-41e9-8f28-63b4516d3b96"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">filthy</AUni> -<AUni ws="es">suciedad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8dcdf13a-f4a1-4d9f-8013-3ccb7fdd7f90" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="38f93e68-365b-467a-b4a0-9cd70ed2b678" ownerguid="d6e9e2b5-155f-4e7b-b841-f5589e1b5c89"> -<Form> -<AUni ws="qvm-x-ach">rucupu</AUni> -<AUni ws="qvm-x-acl">rucupu; rucupo</AUni> -<AUni ws="qvm-x-akh">rukupu</AUni> -<AUni ws="qvm-x-akl">rukupu; rukupo</AUni> -<AUni ws="qvm-x-ame">rukupu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="38f9ca27-51af-4027-b096-a15c4d08cbfa" ownerguid="7c6cad26-79c3-403a-a3aa-59babdfcd46f"> -<ExampleWords> -<AUni ws="en">feel ill, not feel well, feel rough, feel funny, feel sick, feel sick to your stomach, groggy, feel faint</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to feeling sick?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="38fe3cd8-f539-4905-90dc-0aed70ea1206" ownerguid="5491f159-cddf-4b12-9637-87c8c61d4049"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ripen</AUni> -<AUni ws="es">madurar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="06b4828c-a386-482a-b77b-094f732eb06c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="3900a1b3-d468-484e-8f1f-b804096f5147"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gati</AUni> -<AUni ws="qvm-x-acl">gati</AUni> -<AUni ws="qvm-x-akh">qati</AUni> -<AUni ws="qvm-x-akl">qati</AUni> -<AUni ws="qvm-x-ame">qati</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qati</AUni> -<AUni ws="qvm-x-acl">*qati</AUni> -<AUni ws="qvm-x-akh">*qati</AUni> -<AUni ws="qvm-x-akl">*qati</AUni> -<AUni ws="qvm-x-ame">*qati</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.144" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3a06a78c-752d-4aa1-be12-a5b87d78891b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qati</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4892cb61-9578-4920-9783-321d4bd7667f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fde99846-cd4b-4e1b-8e15-7cbd48249b00" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qati 
\entryTyp root 
\gENG 
\gSPN 
\e *qati 
\c R0 
\mp NeverLowered 
\ach gati 
\akh qati 
\acl gati 
\akl qati 
\ame qati 
\mp +FinalI 
\i 1SA 7.11 Tsaymi Filistea runacunata gati gatiycur atacargan Mizpapita Bet-car mas uraganyag.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="39023064-7ae7-4526-8b7d-81d461142f26" ownerguid="743b003a-0fc5-4822-bd7b-36ea4a7a74a5"> -<Form> -<AUni ws="qvm-x-acl">jorgo</AUni> -<AUni ws="qvm-x-akl">jorqo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3903d5bc-0104-47fb-a964-99e1162c704f" ownerguid="56ef3f06-7fb9-462e-a7d0-517f3ce1623f"> -<ExampleWords> -<AUni ws="en">carnivore, meat eater, meat eating</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to carnivores?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3908126f-b434-4d6a-b9aa-feea60bf060b" ownerguid="4bbd0f6b-c6e9-43dc-94b0-b547b9beaa36"> -<Form> -<AUni ws="qvm-x-ach">gueshta</AUni> -<AUni ws="qvm-x-acl">gueshta</AUni> -<AUni ws="qvm-x-akh">qeshta</AUni> -<AUni ws="qvm-x-akl">qeshta</AUni> -<AUni ws="qvm-x-ame">qishta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3908bb21-4c84-48c8-95f9-5530ba8f5299" ownerguid="0177f8a5-1fc5-4473-9e8f-88874b376475"> -<Form> -<AUni ws="qvm-x-ach">mana</AUni> -<AUni ws="qvm-x-acl">mana</AUni> -<AUni ws="qvm-x-akh">mana</AUni> -<AUni ws="qvm-x-akl">mana</AUni> -<AUni ws="qvm-x-ame">mana</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="390ad7fc-8360-4eae-8736-3aedc15ae659" ownerguid="6f01b67c-33a0-4ed3-8205-f868e97a1a3a"> -<Abbreviation> -<AUni ws="en">7.2.4.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.518" /> -<DateModified val="2022-9-23 16:55:8.518" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a map--a drawing of the world or part of the world.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Map</AUni> -</Name> -<OcmCodes> -<Uni>102 Maps</Uni> -</OcmCodes> -<Questions> -<objsur guid="d5a9fa63-cddc-4009-bc17-3af37d8fecc3" t="o" /> -<objsur guid="185b34c4-7f19-4cdc-a053-b2adb5aa85ba" t="o" /> -<objsur guid="d01b2bad-e0c9-486f-a9a2-b7c30cf9b3c8" t="o" /> -<objsur guid="46b7f7df-51bc-4276-8f47-0d0645b86532" t="o" /> -<objsur guid="d463e7da-1efd-41f0-8246-a63f3285cae6" t="o" /> -<objsur guid="cc334785-2a77-4aa1-8222-e4ad149f0032" t="o" /> -<objsur guid="11aaee7f-f4d6-45e5-8fd5-08c2dee1fd8c" t="o" /> -<objsur guid="86eee1a1-9163-4e4d-a053-a681d7b51126" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="390c9564-7eb7-4117-913c-a8ca94e9fd26" ownerguid="77748469-fcf1-4cde-a3f6-47432eac5b6e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -<Sense> -<objsur guid="7cd134ea-89c1-4a60-8992-dcac673bd263" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="390cbc1e-9a2d-4c69-afe7-f9b5eacac827" ownerguid="b6354c4e-f9c1-4c5c-846d-43b9722006b5"> -<Form> -<AUni ws="qvm-x-ach">mantun</AUni> -<AUni ws="qvm-x-acl">mantun</AUni> -<AUni ws="qvm-x-akh">mantun</AUni> -<AUni ws="qvm-x-akl">mantun</AUni> -<AUni ws="qvm-x-ame">mantun</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="390cf96c-5b15-4c2c-8917-515f1b1c4db4" ownerguid="abed43e3-4ccc-47e4-be82-f025d2edf0d1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="390d6b92-9796-4636-b528-170a1b6aa62a" ownerguid="f48346c2-1c61-4bbd-a867-8d84532bc816"> -<Form> -<AUni ws="qvm-x-ach">yarpa</AUni> -<AUni ws="qvm-x-acl">yarpa</AUni> -<AUni ws="qvm-x-akh">yarpa</AUni> -<AUni ws="qvm-x-akl">yarpa</AUni> -<AUni ws="qvm-x-ame">yarpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="abe0ecdd-ea94-4f30-a907-034beb750359" t="r" /> -<objsur guid="ae5f3ffd-a9d0-4eaa-9040-50a5a57e64bc" t="r" /> -<objsur guid="c00e385f-cbe6-4724-8993-cc46e22ee3ba" t="r" /> -<objsur guid="e381191f-e778-41d7-9369-2559954d06ce" t="r" /> -</PhoneEnv> -</rt> -<rt class="MoStemAllomorph" guid="390f69ab-79ee-4427-99f5-cf8c516ff75f" ownerguid="242de55d-1982-4099-a98b-a71d991104a8"> -<Form> -<AUni ws="qvm-x-ach">tsuctsu</AUni> -<AUni ws="qvm-x-acl">tsuctsu; tsuctsu; tsuctso</AUni> -<AUni ws="qvm-x-akh">tsuktsu</AUni> -<AUni ws="qvm-x-akl">tsuktsu; tsuktsu; tsuktso</AUni> -<AUni ws="qvm-x-ame">tsuktsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="391567ad-148f-48ab-a241-dc168e9d5f4a" ownerguid="89e2435c-fb17-439b-b3b8-609262c3b02c"> -<Form> -<AUni ws="qvm-x-ach">ejädu</AUni> -<AUni ws="qvm-x-acl">ejädu; ejädu; ejädo</AUni> -<AUni ws="qvm-x-akh">ejädu</AUni> -<AUni ws="qvm-x-akl">ejädu; ejädu; ejädo</AUni> -<AUni ws="qvm-x-ame">ejädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="391642ab-ada9-4ebc-8448-539942462b34" ownerguid="89ba59d4-b314-4070-83bb-f9f868bcd363"> -<ExampleWords> -<AUni ws="en">picture, painting, drawing, sketch, illustration, study, portrait, landscape, cartoon, caricature</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something that has been drawn or painted?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3917729f-c2d7-4835-a6f1-23a15428eec8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lu:tu</AUni> -<AUni ws="qvm-x-acl">lu:tu; lu:tu; lu:to</AUni> -<AUni ws="qvm-x-akh">lu:tu</AUni> -<AUni ws="qvm-x-akl">lu:tu; lu:tu; lu:to</AUni> -<AUni ws="qvm-x-ame">lu:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+luto</AUni> -<AUni ws="qvm-x-acl">+luto</AUni> -<AUni ws="qvm-x-akh">+luto</AUni> -<AUni ws="qvm-x-akl">+luto</AUni> -<AUni ws="qvm-x-ame">+luto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.122" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="47abc34c-6e4e-4705-9e65-0114f0a0c437" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+luto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6182d682-fe52-4dc1-9302-daaf309dad4a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0a908ce9-68eb-49ba-a718-ff96af7a6d60" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +luto 
\entryTyp root 
\gENG 
\gSPN luto 
\e +luto 
\c N0 
\ach lu:tu 
\akh lu:tu 
\acl lu:tu / _# 
\acl lu:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lu:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lu:tu / _# 
\akl lu:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lu:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lu:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="3917c48b-db8d-4ea3-a95c-ffb18627ca8a" ownerguid="400f89d6-11fb-4d8d-9d00-d91a7964a1ad"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="3919396f-5815-4cd9-8b60-718a0d26d6ea" ownerguid="195cd53a-6e26-4661-8356-d8d60017fbe5"> -<Form> -<AUni ws="qvm-x-ach">instrumentu; instrumento</AUni> -<AUni ws="qvm-x-acl">instrumentu; instrumentu; instrumento</AUni> -<AUni ws="qvm-x-akh">instrumentu; instrumento</AUni> -<AUni ws="qvm-x-akl">instrumentu; instrumentu; instrumento</AUni> -<AUni ws="qvm-x-ame">instrumentu; instrumento</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="391a8f4d-8ffd-4cac-b152-382553bbf44d" ownerguid="79b580ff-64a7-445b-abcb-b49b9093779c"> -<ExampleWords> -<AUni ws="en">fish tank, fishbowl, aquarium, fishpond</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) Where do people keep fish?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="391fbbb9-6a14-47f1-a6d2-1f76aa8aaf77" ownerguid="a66cfd2a-34be-4210-92a3-1ae4b7901be8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="392559c1-f8e1-4bfd-8404-887e035b3f43" ownerguid="d06dae77-134a-403f-ba88-52ecd66c0522"> -<ExampleWords> -<AUni ws="en">phytoplankton, plankton, scum</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to moss, fungus, and algae?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="392663c8-5ebe-4dd2-936a-87859a399d1d" ownerguid="d4521b0f-0703-48cc-94a0-f42ccc09959c"> -<ExampleWords> -<AUni ws="en">manner, means, how, somehow, anyhow, every way, no way, each way, however</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What pronouns express indefinite reference of a manner?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="39288e58-4b48-499a-84ea-39fb8a295a95" ownerguid="cf5f83be-2c19-4cf8-8cc5-53bd32b50530"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">This job is very important <to> John.; The proposal looks good <in> my <opinion>.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">to, in my opinion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate who is evaluating the proposition?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="392b8fe3-5a0b-46c2-a595-f13d84c3bd06"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gueulla</AUni> -<AUni ws="qvm-x-acl">gueulla</AUni> -<AUni ws="qvm-x-akh">qewlla</AUni> -<AUni ws="qvm-x-akl">qewlla</AUni> -<AUni ws="qvm-x-ame">qiwlla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qiwlla</AUni> -<AUni ws="qvm-x-acl">*qiwlla</AUni> -<AUni ws="qvm-x-akh">*qiwlla</AUni> -<AUni ws="qvm-x-akl">*qiwlla</AUni> -<AUni ws="qvm-x-ame">*qiwlla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.224" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="93dfb133-8694-4c51-845f-41b6ebd0ec04" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qiwlla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d50ed764-16d3-4e44-aaf3-1e26171fcb1f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6cb91819-16b3-4277-afba-10dc9892ede7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qiwlla 
\entryTyp root 
\gENG seagull 
\gSPN gaviota 
\e *qiwlla 
\c N0 
\ach gueulla 
\akh qewlla 
\acl gueulla 
\akl qewlla 
\ame qiwlla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="392c217d-9126-4779-bdfa-9b6afe2a8fd8" ownerguid="4006aab6-6c0d-46fa-9f18-c7631502e198"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="392e3a82-74ce-4b93-91a3-b5364a6f7b3a" ownerguid="5bd29c33-dea2-48cf-8757-c9dce45df113"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">revive</AUni> -<AUni ws="es">revivificar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f8c74f54-e31b-4b4b-b8a3-332d65be3545" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="392f2fea-a667-4113-8488-6fd99662be8a" ownerguid="16e930c3-8e70-408a-840c-58cf5e512d44"> -<Form> -<AUni ws="qvm-x-ach">larguëra</AUni> -<AUni ws="qvm-x-acl">larguëra</AUni> -<AUni ws="qvm-x-akh">larguëra</AUni> -<AUni ws="qvm-x-akl">larguëra</AUni> -<AUni ws="qvm-x-ame">larguëra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="3934d975-76f9-4daf-b5f6-1451da8d67df"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cachi; cachi:</AUni> -<AUni ws="qvm-x-acl">cache:; cachi; cache</AUni> -<AUni ws="qvm-x-akh">kachi; kachi:</AUni> -<AUni ws="qvm-x-akl">kache:; kachi; kache</AUni> -<AUni ws="qvm-x-ame">kachi; kachi:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*katri:</AUni> -<AUni ws="qvm-x-acl">*katri:</AUni> -<AUni ws="qvm-x-akh">*katri:</AUni> -<AUni ws="qvm-x-akl">*katri:</AUni> -<AUni ws="qvm-x-ame">*katri:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.963" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6e4a49d6-08a7-4c34-84e7-97e60f43edc0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*katri:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="67a07790-3a1e-43d0-a551-2af4180ad66d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="947fc1ea-cbf2-438a-bcb7-1e116702698e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *katri: 
\entryTyp root 
\gENG to.salt 
\gSPN salar 
\e *katri: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach cachi foreshortened 
\ach cachi: 
\akh kachi foreshortened 
\akh kachi: 
\mp +underlong 
\acl cache: 
\acl cachi foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl cache foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\mp +underlong 
\akl kache: 
\akl kachi foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kache foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kachi foreshortened 
\ame kachi: 
\mcc *katri: / ~_ [y]</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="39356b17-d6c7-48fb-8ac5-d1b22d420d30" ownerguid="718d0c91-5938-4f5c-a690-f0b8b0c7fb48"> -<Form> -<AUni ws="qvm-x-ach">primicia</AUni> -<AUni ws="qvm-x-acl">primicia</AUni> -<AUni ws="qvm-x-akh">primicia</AUni> -<AUni ws="qvm-x-akl">primicia</AUni> -<AUni ws="qvm-x-ame">primicia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="39379449-fae6-48f9-a06f-e6c26329204b" ownerguid="c9256e98-8692-452c-b447-26bd4d3a67c6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="3939e395-b73c-4341-9dba-98306f089e4c" ownerguid="45a8e1b4-b096-4303-8422-479bd6971fd1"> -<Form> -<AUni ws="qvm-x-ach">gueshya</AUni> -<AUni ws="qvm-x-acl">gueshya</AUni> -<AUni ws="qvm-x-akh">qeshya</AUni> -<AUni ws="qvm-x-akl">qeshya</AUni> -<AUni ws="qvm-x-ame">qishya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="393b5f04-972d-41e2-89b7-d08b3dd3ae70"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lla:vi</AUni> -<AUni ws="qvm-x-acl">lla:vi; lla:ve</AUni> -<AUni ws="qvm-x-akh">lla:vi</AUni> -<AUni ws="qvm-x-akl">lla:vi; lla:ve</AUni> -<AUni ws="qvm-x-ame">lla:vi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+llave.v</AUni> -<AUni ws="qvm-x-acl">+llave.v</AUni> -<AUni ws="qvm-x-akh">+llave.v</AUni> -<AUni ws="qvm-x-akl">+llave.v</AUni> -<AUni ws="qvm-x-ame">+llave.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.174" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a3953a29-b9c0-4415-bd66-c21f09ba6a47" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+llave.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b8ea7b65-4676-49da-814b-7e2fb59de2ee" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cd177332-a2fa-40aa-8913-267944ac56c1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +llave.v 
\entryTyp root 
\gENG to.lock 
\gSPN echar.llave 
\e +llave.v 
\c V2 
\mp +FinalI 
\ach lla:vi 
\akh lla:vi 
\acl lla:vi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lla:ve +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lla:vi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lla:ve +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lla:vi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="393e199a-1770-4e8e-9c9e-38baef03cca1" ownerguid="a1c56408-3690-4ef1-9bf4-ee429ce97dad"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="393e4eeb-3d07-4cbd-9257-7ebf9cfccfe5" ownerguid="8e1ff524-21fe-4f7a-b54f-6290688c160d"> -<Form> -<AUni ws="qvm-x-ach">warantilan</AUni> -<AUni ws="qvm-x-acl">warantilan</AUni> -<AUni ws="qvm-x-akh">warantilan</AUni> -<AUni ws="qvm-x-akl">warantilan</AUni> -<AUni ws="qvm-x-ame">warantilan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="393ee095-a5b3-4048-834d-2aa4e248b31b" ownerguid="18b3ca02-18fe-4ab5-8709-c20957a0a2fb"> -<ExampleWords> -<AUni ws="en">self-important, pompous, jumped up, have delusions of grandeur, get too big for your boots/britches</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to thinking you are more important than you really are?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3942c01d-f528-41aa-9510-820b0546a853" ownerguid="193257cf-2e65-4773-8f1e-ed20c3ca484c"> -<Form> -<AUni ws="qvm-x-ach">iglesia</AUni> -<AUni ws="qvm-x-acl">iglesia</AUni> -<AUni ws="qvm-x-akh">iglesia</AUni> -<AUni ws="qvm-x-akl">iglesia</AUni> -<AUni ws="qvm-x-ame">iglesia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3949cf53-d6e7-4f9f-b669-f75c58863d09" ownerguid="611b2472-693c-4554-8fcd-63e5a5083932"> -<Form> -<AUni ws="qvm-x-ach">calapösu</AUni> -<AUni ws="qvm-x-acl">calapösu; calapösu; calapöso</AUni> -<AUni ws="qvm-x-akh">calapösu</AUni> -<AUni ws="qvm-x-akl">calapösu; calapösu; calapöso</AUni> -<AUni ws="qvm-x-ame">calapösu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="394aa396-e251-4098-9b6e-a879be42c59c" ownerguid="0a27d9d1-0f1f-475a-92a2-bbccf5b15f41"> -<ExampleWords> -<AUni ws="en">lack of appetite, no appetite, not hungry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to not wanting to eat?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="394abd8a-b1b8-4743-8414-c2eb5f1b8bb1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">capshi</AUni> -<AUni ws="qvm-x-acl">capshi; capshi; capshe</AUni> -<AUni ws="qvm-x-akh">kapshi</AUni> -<AUni ws="qvm-x-akl">kapshi; kapshi; kapshe</AUni> -<AUni ws="qvm-x-ame">kapshi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kapshi</AUni> -<AUni ws="qvm-x-acl">*kapshi</AUni> -<AUni ws="qvm-x-akh">*kapshi</AUni> -<AUni ws="qvm-x-akl">*kapshi</AUni> -<AUni ws="qvm-x-ame">*kapshi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.943" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1d07fde2-be30-49bd-b907-4b79a5b5d1fc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kapshi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e9ee99ea-6336-433e-8fc9-12d6adbf9128" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ddf5674f-4460-44fe-bdb0-80f33e9c2229" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kapshi 
\entryTyp root 
\gENG goat 
\gSPN cabra 
\e *kapshi 
\c N0 
\mp +FinalI 
\ach capshi 
\akh kapshi 
\acl capshi / _# 
\acl capshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl capshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kapshi / _# 
\akl kapshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kapshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kapshi 
\i ISA 11.6 Tigriwan capshipis juntumi punonga.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="394bdc4e-ce41-4b29-a8a8-8e56e40fc150" ownerguid="4cc16a45-f4d9-42e2-9c96-ca2a16bcfa4e"> -<Form> -<AUni ws="qvm-x-ach">escalëra</AUni> -<AUni ws="qvm-x-acl">escalëra</AUni> -<AUni ws="qvm-x-akh">escalëra</AUni> -<AUni ws="qvm-x-akl">escalëra</AUni> -<AUni ws="qvm-x-ame">escalëra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="394d5cfc-0581-494e-aca0-264b11f15270" ownerguid="678a3319-a12b-4f92-857d-167def8ef583"> -<ExampleWords> -<AUni ws="en">crowd, flock, flood, hail, parade, pelt, pour, rain, roll, shower, stream, swarm, teem, throng, troop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to many things moving together?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="394e2c36-b678-4dd3-863d-46ec784324de"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ca; ca:</AUni> -<AUni ws="qvm-x-acl">ca; ca:</AUni> -<AUni ws="qvm-x-akh">ka; ka:</AUni> -<AUni ws="qvm-x-akl">ka; ka:</AUni> -<AUni ws="qvm-x-ame">ka; ka:</AUni> -</Custom> -<AlternateForms> -<objsur guid="c904019d-ee7e-4035-8c65-3ae9aeb5912a" t="o" /> -<objsur guid="d1685fdc-96d8-4baf-9cb8-523863adb67f" t="o" /> -</AlternateForms> -<DateCreated val="2022-9-23 18:26:20.546" /> -<DateModified val="2022-10-15 16:6:15.211" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c7c24da9-2b97-43d3-a5a1-e0781bbcb1b1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">PASS</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="434f36b9-aa05-46d6-be7e-89240d9e2c4d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e71b6efb-183c-4225-97aa-9a21b21e3744" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx PASS 
\entryTyp suffix 
\gENG PASS 
\gSPN PSV 
\e PASS 
\c V1/V1 V2/V2 
\o 025, 035 | was 015, but HM aywapacaycan, where BEN1 is 030; has to be before REFDIR which is 30 
\mp +foreshortens 
\mp +underlong 
\ach ca foreshortened 
\ach ca: 
\akh ka foreshortened 
\akh ka: 
\acl ca foreshortened 
\acl ca: 
\akl ka foreshortened 
\akl ka: 
\ame ka foreshortened 
\ame ka: 
\mp +FinalC 
\mp +FinalLength 
\mcc PASS / *qipa: ~_ IN 
\mcc PASS / ~_ UP PLDIR 
\mcc PASS IN1 PLDIR / [pasplr] _ 
\mcc PASS PLDIR / [pasplr] _ 
\mcc PASS PLDIRL / [pasplr] _ 
\mcc PASS / ~_ IMPFV1 1O 
\mcc PASS / ~_ UP (CAUS) 1O 
\mcc PASS / *traski ~_ (IMPFV1) [person] COND 
\mcc PASS / ~_ HELP 
\mcc PASS / ~_ PASS 
\mcc PASS / ~_ PNCT1 
\mcc PASS / ~_ REF 
\mcc PASS / ~_ REF</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="394ecccf-47ea-43b8-a8d3-6626652ed445" ownerguid="50b57bd6-5f6b-4793-8e74-7124894ad7cb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -<Sense> -<objsur guid="7cd134ea-89c1-4a60-8992-dcac673bd263" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="395145aa-e5e4-4072-897b-0e99561e25fb" ownerguid="1b6b0c12-9ecd-45cb-bb0e-0dadb435eddf"> -<ExampleWords> -<AUni ws="en">flood of, wave of, deluge of, avalanche of, stream, torrent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that many things are happening?</AUni> -</Question> -</rt> -<rt class="StTxtPara" guid="39565473-a6e6-4353-b6cd-75e2ddd6eca4" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">aywan.</Run> -<Run ws="en">\tr < V1 *aywa > 3</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="ae55e996-fb0d-4140-ab0d-2b43376db4b8" t="o" /> -<objsur guid="e94c46fe-4b79-42d6-978d-b7bdcb474966" t="o" /> -</Segments> -</rt> -<rt class="CmDomainQ" guid="39578e12-1c3b-4531-87f9-1cfcaff8d44c" ownerguid="1d8633e0-4279-4ddc-826e-16aa08a977e5"> -<ExampleWords> -<AUni ws="en">skull, jawbone, shoulder blade, collarbone, clavicle, backbone, rib, hip, tibia, tailbone, carpal, carpus, cranium, femur, fibula, humerus, mandible, mandibular, maxillary, metacarpus, metacarpal, metatarsus, metatarsal, parietal bone, pelvis, pelvic, radius, shinbone, spine, sternum, tarsus, ulna, vertebra, vertebral</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to specific bones?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="39585f5d-fe3c-475e-b22d-5a6ca07afe5d" ownerguid="14a21d83-1aef-4f79-8088-7595e01cea86"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cow</AUni> -<AUni ws="es">vaca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1248631d-a4b0-45b3-879d-4b105c00b1e2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="395bf5da-0e51-4de8-ac12-ec02a81b4233" ownerguid="5765f05e-0589-4c90-98bc-0219b3af292b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">coal</AUni> -<AUni ws="es">carbón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="01fff518-ac30-4f67-872c-ec87d4e2d660" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="395d511a-58d1-483b-a2c2-7442b8631afd" ownerguid="9992b4ba-908a-42ac-a727-bb58b7f9b1c1"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="395e410b-a74b-4233-8c9f-263f584cb467" ownerguid="80628870-6d6a-4743-a05d-88d1cf1d0bcc"> -<Form> -<AUni ws="qvm-x-ach">gasha</AUni> -<AUni ws="qvm-x-acl">gasha</AUni> -<AUni ws="qvm-x-akh">qasha</AUni> -<AUni ws="qvm-x-akl">qasha</AUni> -<AUni ws="qvm-x-ame">qasha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="39611e8d-cc67-4c84-977c-094c5cbe9dbc" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<Abbreviation> -<AUni ws="en">3.4.2.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.143" /> -<DateModified val="2022-9-23 16:55:8.143" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling lonely--to feel bad because you are alone and not with people you love.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Lonely</AUni> -</Name> -<Questions> -<objsur guid="82d096b5-fb64-4fb3-88a6-dd36774b8752" t="o" /> -<objsur guid="1b2733b4-a899-421d-80f9-72a7c1db5e6e" t="o" /> -<objsur guid="0810587c-7fef-41d6-b63c-7c05ed44ec02" t="o" /> -<objsur guid="5fc9cdd4-ef72-4f47-b34a-02c5e096f61a" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="4651aef1-e18f-481e-9c3e-d9dfff4a6b51" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="3962e7de-114b-4339-9e92-9e821d29412f" ownerguid="00364f0c-9a3a-4910-a82e-1ffbc4d4137f"> -<ExampleWords> -<AUni ws="en">calm down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to becoming less excited?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3965539f-3ced-4670-8d64-0a2b5215ed2b" ownerguid="9e61a509-b7fd-422e-bd51-42e6be23fd60"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="39666b23-2ed8-4c2e-a820-4351816db46b" ownerguid="7d472317-b5e8-4cae-a03f-913ecdaf4c29"> -<ExampleWords> -<AUni ws="en">rattlesnake, python, boa, anaconda, cobra, viper, mamba, sea snake, adder, anaconda, asp, boa, bushmaster, cobra, copperhead, cottonmouth, fer-de-lance, mamba, water moccasin, python, racer, rattler, rattlesnake, sidewinder, viper</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What species of snake are there?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="396801b2-f5a3-4dcc-b518-42cae634003b" ownerguid="f036c423-db57-42a5-bf98-6fc824c187f1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="e8123769-0039-4951-b983-504b3cbecc1b" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">comission</AUni> -<AUni ws="es">comisión</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="02316144-3a6a-4a06-9d75-92abdeea0d8c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="396a2a1b-832f-4180-b26a-c606550541d7" ownerguid="2621e605-3ecc-4f3d-b28c-f8c92b3c4584"> -<Abbreviation> -<AUni ws="en">8.3.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.609" /> -<DateModified val="2022-9-23 16:55:8.609" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is blunt.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Blunt</AUni> -</Name> -<Questions> -<objsur guid="81cdb830-46f0-4b11-a295-84966b558492" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="396e5ef7-557d-4a0a-b30c-14bf09f0c06f" ownerguid="a7568031-43e3-4cf9-b162-ac2fe74125f1"> -<ExampleWords> -<AUni ws="en">opportunity, chance, opening, occasion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to an opportunity to do something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="396e6652-60e2-4582-b570-59c624dfcf6e" ownerguid="3d6216c5-5f8d-4ffa-bc97-c68b63b9fd49"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="f4a6a548-9b7e-4a73-9522-5c4b6adaeecc" t="o" /> -</Examples> -<Gloss> -<AUni ws="es">halcón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="911bef17-6b94-4f0c-840c-4132bb6e685f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3970f229-139d-4dff-90ab-c0a63ae5a3ef" ownerguid="fd9b8618-1f62-419b-85c3-365a12e85523"> -<ExampleWords> -<AUni ws="en">shake hands, shake on it, kiss, holding hands, bow, nod in agreement</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a gesture expressing agreement?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3971263a-e709-4227-9e49-f4e48bc48b28" ownerguid="29f83ace-d0c4-49c3-b753-3866a64e87b4"> -<Form> -<AUni ws="qvm-x-ach">dibuja</AUni> -<AUni ws="qvm-x-acl">dibuja</AUni> -<AUni ws="qvm-x-akh">dibuja</AUni> -<AUni ws="qvm-x-akl">dibuja</AUni> -<AUni ws="qvm-x-ame">dibuja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="39727162-c214-4dc4-9c86-c34b082a2cb5" ownerguid="2e2a17ba-9d81-4a3d-8af5-96c8f0e39e7e"> -<ExampleWords> -<AUni ws="en">save, invest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used of saving wealth?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="39729f79-7380-42a8-8a49-aac426b0769d" ownerguid="a5855a80-ede7-423d-9f7b-428cb68d910b" /> -<rt class="CmDomainQ" guid="39737e5d-a40d-4194-825f-a8c1feac12bd" ownerguid="f858278a-2727-4403-9cf0-565cdececb1e"> -<Question> -<AUni ws="en">(2) There are at least three types of conditional sentences. (Labels, explanations, and examples from Li and Thompson 1981): [Li, Charles N., and Sandra A. Thompson. 1981. Mandarin Chinese: A functional reference grammar. Berkeley and Los Angeles: University of California Press.]</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="397698e1-92b5-4342-9c3b-b4f8fcd1a7c2" ownerguid="8e22b698-d917-429a-bcc9-2bde7a7eee03"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Lev 11.30 Shulaccuna impürumi caycan salamanqesa carpis, cocodrilo carpis, lagarto carpis, arash carpis y camaleón carpis.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="397ccb44-2729-4224-b5ae-ef54ae1dbf45" ownerguid="195cd53a-6e26-4661-8356-d8d60017fbe5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="397d9287-bb24-4fdb-8511-65e51f22b259" ownerguid="07476166-c5e5-4701-97d3-d97de8b5be6f"> -<ExampleWords> -<AUni ws="en">unknown</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to what is not known about a topic?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="397e207d-5c5d-4698-b501-c421c9440718" ownerguid="7141bc81-88db-46c0-8cfd-90a5b466f8b3"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="397ef5b8-06e7-491b-9663-f551d7004d50" ownerguid="2ea679e8-3377-4877-876c-9db06ea203b5"> -<Form> -<AUni ws="qvm-x-ach">gaga; gagä</AUni> -<AUni ws="qvm-x-acl">gaga; gagä</AUni> -<AUni ws="qvm-x-akh">qaqa; qaqä</AUni> -<AUni ws="qvm-x-akl">qaqa; qaqä</AUni> -<AUni ws="qvm-x-ame">qaqa; qaqä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="398438a1-57ec-4250-ad26-c9e8e9691507" ownerguid="e0dc68e0-5490-4c50-a18a-a58f0240c54c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">contented</AUni> -<AUni ws="es">tranquilo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a2c7d7fb-170b-4155-93eb-5d56fbdc4280" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="39869d1a-8b3a-4b1a-b24d-9891fd7dbbed" ownerguid="b43fae8e-6b19-42ed-98cd-d363174b9cf8"> -<ExampleWords> -<AUni ws="en">size</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to how small something is?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="39870854-1ee6-43e5-b229-aecf50e0b985" ownerguid="b8d2fdb9-22ea-4040-8abb-aeeff0399f23"> -<ExampleWords> -<AUni ws="en">kill, kill off, cause death, be a killer, destroy, decimate, wipe out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words refer to something such as an accident or disease killing someone?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="398a86b9-9499-40cb-a097-a365fac253c8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sacha</AUni> -<AUni ws="qvm-x-acl">sacha</AUni> -<AUni ws="qvm-x-akh">sacha</AUni> -<AUni ws="qvm-x-akl">sacha</AUni> -<AUni ws="qvm-x-ame">sacha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*satra</AUni> -<AUni ws="qvm-x-acl">*satra</AUni> -<AUni ws="qvm-x-akh">*satra</AUni> -<AUni ws="qvm-x-akl">*satra</AUni> -<AUni ws="qvm-x-ame">*satra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.470" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="38e17076-4b21-4a04-966b-3280d15fc27a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*satra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="091e344c-c36f-4733-a8d4-a3b567b88cf3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5c7f5987-c548-48ec-8c98-cee025b8598c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *satra 
\entryTyp root 
\gENG 
\gSPN 
\e *satra 
\c N0 
\ach sacha 
\akh sacha 
\acl sacha 
\akl sacha 
\ame sacha 
\i ROM 11.17 Tsaymi sacha olïvupa rämankunano kaykarpis tsay ali olivo yörapa sapinpita salvacionta chaskirkaykanki.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="398cdfd4-4e53-4c07-b6b4-a8875670f07c" ownerguid="49c878dd-277f-4bc9-b8ad-9ba192709108"> -<ExampleWords> -<AUni ws="en">meow, mew, caterwaul, hiss, purr</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What sounds do cats make?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="398ee06a-d615-4226-89a5-04b89c1b8770" ownerguid="2a57fa30-ee20-4db8-89d8-92b821b131eb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">scatter</AUni> -<AUni ws="es">desparramar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b8ce888e-c0c8-4f8e-befc-64d02c73d2e6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="398ffed0-bfa7-452c-8521-7d37b3082dcf" ownerguid="d6c29733-beeb-4fc9-975f-5e78a8acc273"> -<Abbreviation> -<AUni ws="en">6.1.2.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.350" /> -<DateModified val="2022-9-23 16:55:8.350" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to working hard.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Work hard</AUni> -</Name> -<Questions> -<objsur guid="cc8e0de0-cd1b-469e-a329-7f1e521a0b4b" t="o" /> -<objsur guid="5894434d-9a08-4340-8b95-671b1bd34f4d" t="o" /> -<objsur guid="4416727b-c725-4e1f-b367-05c9ddbc3c61" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="3991615c-a7a6-43a0-9c31-fe61841d1403"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quintal</AUni> -<AUni ws="qvm-x-acl">quintal</AUni> -<AUni ws="qvm-x-akh">quintal</AUni> -<AUni ws="qvm-x-akl">quintal</AUni> -<AUni ws="qvm-x-ame">quintal</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+quintal</AUni> -<AUni ws="qvm-x-acl">+quintal</AUni> -<AUni ws="qvm-x-akh">+quintal</AUni> -<AUni ws="qvm-x-akl">+quintal</AUni> -<AUni ws="qvm-x-ame">+quintal</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.841" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="20bc2ed7-1d37-4026-a7d8-55b74e3ead6d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+quintal</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7feecc07-26cb-453b-aa09-ebae10f2bc05" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="198dd276-aef3-4477-a22a-e719bb58ba41" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +quintal 
\entryTyp root 
\gENG sack 
\gSPN quintal 
\e +quintal 
\c N0 
\mp +FinalC 
\ach quintal 
\akh quintal 
\acl quintal 
\akl quintal 
\ame quintal</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="39964a34-7d9b-4631-9a8a-8143f992f58d" ownerguid="7f1dfb68-bf07-472d-a481-b802d2591ca6"> -<ExampleWords> -<AUni ws="en">(no words in English)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to female circumcision?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="399e218f-3673-45ec-b9e4-9c65db3fc44d" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<ExampleWords> -<AUni ws="en">president, MP, congressman, senator, legislator, cabinet member, minister, ambassador, civil servant, lawyer, lobbyist, tax collector, customs officer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What are the occupations in politics?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="399eafc3-827b-4381-b94f-0981d2f465c9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">amatar</AUni> -<AUni ws="qvm-x-acl">amatar</AUni> -<AUni ws="qvm-x-akh">amatar</AUni> -<AUni ws="qvm-x-akl">amatar</AUni> -<AUni ws="qvm-x-ame">amatar</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+amatalo</AUni> -<AUni ws="qvm-x-acl">+amatalo</AUni> -<AUni ws="qvm-x-akh">+amatalo</AUni> -<AUni ws="qvm-x-akl">+amatalo</AUni> -<AUni ws="qvm-x-ame">+amatalo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.749" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3d69b583-b553-495b-be7e-178acff1d88a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+amatalo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="65b1b094-f462-4915-95d6-041dd9261734" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2c2ce3c4-c613-4962-b183-dbb126e4d34e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +amatalo 
\entryTyp root 
\gENG too.much 
\gSPN demasiado 
\e +amatalo 
\c N0 
\mp +assimilated 
\ach amatar 
\akh amatar 
\acl amatar 
\akl amatar 
\ame amatar 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="39a14bfa-a5e4-4f4a-81a1-dd2395e87580" ownerguid="2cad92d8-cf01-41af-9add-ff34fe0660c6"> -<Form> -<AUni ws="qvm-x-ach">ranchi</AUni> -<AUni ws="qvm-x-acl">ranchi; ranchi; ranche</AUni> -<AUni ws="qvm-x-akh">ranchi</AUni> -<AUni ws="qvm-x-akl">ranchi; ranchi; ranche</AUni> -<AUni ws="qvm-x-ame">ranchi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="39a15d2a-03f8-4092-a8af-36c0d3e8dd62" ownerguid="cd6f1b37-5bdd-4237-8827-b1c947c8e1b4"> -<ExampleWords> -<AUni ws="en">opaque, obscure, dark, darkened, impervious-to-light</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that cannot be seen through?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="39a4cb96-5ca5-47a2-a4c8-76c60fc936f4" ownerguid="7f6c81fb-02a4-415f-a363-fb11cc6b9254"> -<ExampleWords> -<AUni ws="en">god, goddess, the gods, pantheon, deity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to lesser gods?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="39a56f22-0ca7-4d5d-9440-ed4fa319d3d9" ownerguid="1c359042-0bd9-4cba-ae3d-a79bb3be6c48"> -<Form> -<AUni ws="qvm-x-ach">cobri; cobre</AUni> -<AUni ws="qvm-x-acl">cobri; cobri; cobre</AUni> -<AUni ws="qvm-x-akh">cobri; cobre</AUni> -<AUni ws="qvm-x-akl">cobri; cobri; cobre</AUni> -<AUni ws="qvm-x-ame">cobri; cobre</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="39a5be25-5d19-4606-b778-283afe53c51a" ownerguid="787a91ea-99bb-4965-94f2-fcef144aee12"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">clap</AUni> -<AUni ws="es">palmear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c5d10af2-b4d8-4955-ab33-2631f89f489c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="39a72fc6-9fd8-47e6-ae8b-0c78bca4b392" ownerguid="e67f4c6c-1636-4a04-a14a-8dfb1f375003"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="39aa356e-c2a9-4728-9147-bbb03741bc74" ownerguid="59e8d53c-73a3-42ad-86a1-73dde75b6bb4"> -<Form> -<AUni ws="qvm-x-ach">arrindu; arrindo</AUni> -<AUni ws="qvm-x-acl">arrindu; arrindu; arrindo</AUni> -<AUni ws="qvm-x-akh">arrindu; arrindo</AUni> -<AUni ws="qvm-x-akl">arrindu; arrindu; arrindo</AUni> -<AUni ws="qvm-x-ame">arrindu; arrindo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="39abc9a8-1e9a-408e-9449-16662b47afde" ownerguid="636d70ed-cf52-4b74-8fa3-eab46fe5bab6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">vomit</AUni> -<AUni ws="es">vomitar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c99ecba4-4c1c-4384-b3e0-ce7c2154be91" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="39b16684-2ff4-4a8b-9795-4bd471948b04" ownerguid="5151d545-a147-4c16-b63f-7a8bfeb75c3c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="39b3c19a-3604-4eb4-ad7e-a837f6bf4ab6" ownerguid="a0cf4e6c-c605-47d8-865f-21f4690e7aef"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bracelet</AUni> -<AUni ws="es">brazalete</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9ad91d15-9f42-40b2-a375-ec6653d9fbd2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="39b9a555-7a81-457b-bb8a-96faf1eddf80" ownerguid="273f4956-f79f-4b1e-b552-466280a65e60"> -<ExampleWords> -<AUni ws="en">display, exhibit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to what is shown?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="39b9fcb5-f2bb-41c7-b536-3ffc4af3ea7e" ownerguid="4a673080-646f-4b1b-99a2-3e59e432b836"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="39bf3a75-0264-49a8-9aa6-26dc4bc4c9cc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mangu; mango</AUni> -<AUni ws="qvm-x-acl">mangu; mangu; mango</AUni> -<AUni ws="qvm-x-akh">mangu; mango</AUni> -<AUni ws="qvm-x-akl">mangu; mangu; mango</AUni> -<AUni ws="qvm-x-ame">mangu; mango</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mango</AUni> -<AUni ws="qvm-x-acl">+mango</AUni> -<AUni ws="qvm-x-akh">+mango</AUni> -<AUni ws="qvm-x-akl">+mango</AUni> -<AUni ws="qvm-x-ame">+mango</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.315" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6b1732f6-d7e9-48af-815d-5fa14be05f48" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mango</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fabecd05-45b6-42bb-ab02-9a812cd9eb6f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="77949ccf-e474-4fd5-bc12-c832c33004a6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mango 
\entryTyp root 
\gENG 
\gSPN 
\e +mango 
\c N0 
\ach mangu / ~_# 
\ach mango / _# 
\akh mangu / ~_# 
\akh mango / _# 
\acl mangu / ~_# 
\acl mangu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mango +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mangu / ~_# 
\akl mangu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mango +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mangu / ~_# 
\ame mango / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="39c10826-4a49-4e2b-b92e-a31ebe8c3dbd" ownerguid="21ebc64a-a1b8-45bd-b7f6-143a053f1d31"> -<ExampleWords> -<AUni ws="en">basketball team</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What is a group of players called?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="39c2d767-f01f-4f89-bfc7-b98f991c5af4" ownerguid="8cb720fd-07b9-4766-b12f-938b786413fe"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="39c5d0b7-8e76-4926-96aa-36b4d5166502" ownerguid="eb842dc1-ad9c-4c1a-9eb2-a48b7f3092be"> -<ExampleWords> -<AUni ws="en">airman, pilot, wingman</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a soldier in the air force?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="39cb7964-8ebd-4629-bf1c-363eca8ba6e6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cabra</AUni> -<AUni ws="qvm-x-acl">cabra</AUni> -<AUni ws="qvm-x-akh">cabra</AUni> -<AUni ws="qvm-x-akl">cabra</AUni> -<AUni ws="qvm-x-ame">cabra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cabra</AUni> -<AUni ws="qvm-x-acl">+cabra</AUni> -<AUni ws="qvm-x-akh">+cabra</AUni> -<AUni ws="qvm-x-akl">+cabra</AUni> -<AUni ws="qvm-x-ame">+cabra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.9" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b9292504-0f7d-435d-87bc-e5a7c8f6e12d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cabra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a84e6f52-6596-410c-ad66-f3b3b0749a1d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f5e9b151-abfb-4ccf-aad7-ecfb8f4864e9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cabra 
\entryTyp root 
\gENG goat 
\gSPN cabra 
\e +cabra 
\c N0 
\ach cabra 
\akh cabra 
\acl cabra 
\akl cabra 
\ame cabra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="39d1a35e-b6d0-4c94-99c4-fb6150548912" ownerguid="f732bdb5-9a04-468a-b50b-510f94d20fb4"> -<ExampleWords> -<AUni ws="en">tablecloth, runner, centerpiece, table decoration</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What do people commonly put on top of a table that is closely associated with the table?</AUni> -</Question> -</rt> -<rt class="MoInflAffMsa" guid="39d1c8b2-dca3-4184-82dc-a2b4e87e52d7" ownerguid="bbaea43a-2d94-44e0-a2cc-d81fbf5d59cd"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="fda4c591-1349-4f9e-ab87-905ae2aa25e1" t="r" /> -</Slots> -</rt> -<rt class="MoStemMsa" guid="39d21c58-d9de-4376-b0e3-36c2e716e7d5" ownerguid="f25efa89-4563-455b-b79c-4a684f17e2c0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="39d602e1-416a-431c-af99-8bdc476727e3" ownerguid="bbb7808d-7901-4f32-be05-86e73a8a9e57"> -<Form> -<AUni ws="qvm-x-ach">tocäyu</AUni> -<AUni ws="qvm-x-acl">tocäyu; tocäyu; tocäyo</AUni> -<AUni ws="qvm-x-akh">tocäyu</AUni> -<AUni ws="qvm-x-akl">tocäyu; tocäyu; tocäyo</AUni> -<AUni ws="qvm-x-ame">tocäyu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="39d63bc8-37b1-4be4-8ac3-693221ae62d6" ownerguid="57c9a370-0f46-4475-98fd-c7a8b3f5074c"> -<ExampleWords> -<AUni ws="en">spoil, impair, mar, detract from</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to spoiling the quality of something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="39d6927b-af95-4112-8e14-3acddc3b319f" ownerguid="04370e1f-25aa-4d9e-97c5-de9b59156666"> -<ExampleWords> -<AUni ws="en">remarry, second marriage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used when a person marries again?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="39da5c85-d257-42ec-8bd2-d373499bbe6a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">subraya</AUni> -<AUni ws="qvm-x-acl">subraya</AUni> -<AUni ws="qvm-x-akh">subraya</AUni> -<AUni ws="qvm-x-akl">subraya</AUni> -<AUni ws="qvm-x-ame">subraya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+subrayar</AUni> -<AUni ws="qvm-x-acl">+subrayar</AUni> -<AUni ws="qvm-x-akh">+subrayar</AUni> -<AUni ws="qvm-x-akl">+subrayar</AUni> -<AUni ws="qvm-x-ame">+subrayar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.733" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="acc384f3-bf34-47dc-9444-3c147eb16c82" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+subrayar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="49e6ab83-b702-4e5a-8d5d-bd04a8f5f321" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="05d508ca-9654-4706-bfce-c9dbd3db2955" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +subrayar 
\entryTyp root 
\gENG 
\gSPN 
\e +subrayar 
\c V1 
\ach subraya 
\akh subraya 
\acl subraya 
\akl subraya 
\ame subraya</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="39db0b37-53b3-4cb4-b539-23fadcc865e7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bece:ra</AUni> -<AUni ws="qvm-x-acl">bece:ra</AUni> -<AUni ws="qvm-x-akh">bece:ra</AUni> -<AUni ws="qvm-x-akl">bece:ra</AUni> -<AUni ws="qvm-x-ame">bece:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+becerra</AUni> -<AUni ws="qvm-x-acl">+becerra</AUni> -<AUni ws="qvm-x-akh">+becerra</AUni> -<AUni ws="qvm-x-akl">+becerra</AUni> -<AUni ws="qvm-x-ame">+becerra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.961" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8c8a726b-dda2-41ad-bbb6-cf41a952c636" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+becerra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b1ac3b9b-6649-4ee9-bd87-237e550d2623" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7e9e0696-e3aa-4821-b1c2-9ebfdd0d47f9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +becerra 
\entryTyp root 
\gENG 
\gSPN becerra 
\e +becerra 
\c N0 
\ach bece:ra 
\akh bece:ra 
\acl bece:ra 
\akl bece:ra 
\ame bece:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="39db9b36-ab36-4a89-b92a-38b3903218b6" ownerguid="b536622c-80a3-4b31-9d22-4ed2fb76324d"> -<ExampleWords> -<AUni ws="en">district, park</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a part of a city?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="39dc871c-d3de-4867-a85d-d4ceea143340" ownerguid="e42c8edc-9652-4701-ac07-13c5e831282c"> -<Form> -<AUni ws="qvm-x-ach">waman</AUni> -<AUni ws="qvm-x-acl">waman</AUni> -<AUni ws="qvm-x-akh">waman</AUni> -<AUni ws="qvm-x-akl">waman</AUni> -<AUni ws="qvm-x-ame">waman</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="39dcb6b9-94df-45be-a128-c14c7a9dcdbd" ownerguid="cf337287-c9fa-43d2-93c4-284f45e262c0"> -<Abbreviation> -<AUni ws="en">2.5.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.47" /> -<DateModified val="2022-9-23 16:55:8.47" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to stomach illness.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Stomach illness</AUni> -</Name> -<Questions> -<objsur guid="eb9e8656-9536-4791-82dd-4633617c45ae" t="o" /> -<objsur guid="6df52638-1d35-4e79-89b2-b8bf7bce3385" t="o" /> -<objsur guid="ded4dfbf-8f08-4fcc-8e1b-2dfbf520a3e4" t="o" /> -<objsur guid="f9d3485c-1f3c-4201-a8cf-0814b23f3a63" t="o" /> -<objsur guid="725c75bc-3644-4872-869f-012870c7110e" t="o" /> -<objsur guid="84c7c7f0-dc57-4bfa-97bb-44970b5e58d6" t="o" /> -<objsur guid="eccc17c5-4427-4716-bfa3-3dfe6f33bc2c" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="b9a4b336-080a-4973-a7e3-a9af10fc347c" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="39dcbe57-eda5-4885-a526-4a9c5a24da54" ownerguid="216e816d-c432-4cd2-8157-c8ca240a3492"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">harness</AUni> -<AUni ws="es">bozal</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="20219549-f91d-4f97-929b-efbf09c43204" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="39e08f69-88c4-4893-b931-736121c439aa" ownerguid="ef99137c-3c5c-4b69-9370-03ffac8c5e6e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">prostrate</AUni> -<AUni ws="es">prostarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="469c297a-18d2-4775-affa-530c1cbd8b72" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="39e14d41-1f37-4510-9f7b-8182d8177dde" ownerguid="d502512c-966b-4752-8636-716fb29facfe"> -<ExampleWords> -<AUni ws="en">wet the bed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words are used of urinating while asleep?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="39e29c84-5080-40c1-b250-4cbe429825ca" ownerguid="72274e9d-5d3c-4ae7-93ab-db3617cdda1e"> -<ExampleWords> -<AUni ws="en">unfelt, intangible</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(17) What words describe something that cannot be felt?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="39f0ad41-8d7d-470a-bb0a-5d4081b26b0b" ownerguid="078e693c-6beb-471a-9705-7c930452a4d7"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mala vïda.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="39f930c8-0b42-4a8d-9442-0454bc897f02" ownerguid="fe66d433-5135-498e-a29d-b42bf0317252"> -<ExampleWords> -<AUni ws="en">busybody, eavesdropper, interloper, intruder, meddler, snoop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who meddles?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="39f97d87-a106-4037-a51d-4e089d34ece4" ownerguid="01d33cfd-73ef-49be-9d53-afbe43b0d724"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="3a018a0a-d0bc-4ef6-9287-bed19e0bcfc6" ownerguid="b2da94ae-ff9d-49e9-b8f2-9d6d3dc10db1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3a0299e5-f25d-45ef-a483-6152ec9b16e2" ownerguid="4fdf3cf1-0808-4f11-acdd-9db71550baab"> -<ExampleWords> -<AUni ws="en">without purpose, for no purpose, in vain, purposeless, senseless, chance, indiscriminate, meaningless, pointless, undirected</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that there is no purpose to an action?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3a06a78c-752d-4aa1-be12-a5b87d78891b" ownerguid="3900a1b3-d468-484e-8f1f-b804096f5147"> -<Form> -<AUni ws="qvm-x-ach">gati</AUni> -<AUni ws="qvm-x-acl">gati</AUni> -<AUni ws="qvm-x-akh">qati</AUni> -<AUni ws="qvm-x-akl">qati</AUni> -<AUni ws="qvm-x-ame">qati</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="3a0a43e1-8410-4478-9bda-e1178dc3414d" ownerguid="bfc449fe-bc53-4325-b0ac-9c960e7549eb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="3a0a69b2-2c43-4dde-8944-fb9b8dcafab8" ownerguid="5f98069e-f3f5-48b9-a105-3e244deb8c71"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3a0ad3a5-e016-41d8-8ded-31e3542283be" ownerguid="30ea3057-753d-4c4c-9b1f-ed30e569feea"> -<ExampleWords> -<AUni ws="en">courtroom, judge's chambers, jury room</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the parts of a courthouse?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3a0c046f-8aaf-4b8d-a00e-9104515a8e66" ownerguid="ff3d89de-92db-4eb1-ab00-4f9a92720e16"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fang</AUni> -<AUni ws="es">colmillo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="709a3771-e459-4b5e-a8af-3ca0f9ccdf3d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="3a0c5d41-d078-4040-88e8-9048fa1255f7" ownerguid="a47a29e7-0fb2-4c94-8bc5-bcf87a0f1276"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pull.off</AUni> -<AUni ws="es">quitar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2f8fa194-59ac-43e5-a1a9-4aa4903d0caf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="3a0dc521-f028-4c17-945c-b121e2d3dc0b" ownerguid="afe7cc92-e0ad-40d9-be56-aa12d2693a3f"> -<Abbreviation> -<AUni ws="en">8.4.1.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.638" /> -<DateModified val="2022-9-23 16:55:8.638" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to days relative to each other.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>67J Units of Time with Reference to Other Units or Points of Time: Yesterday, Today, Next Day</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Yesterday, today, tomorrow</AUni> -</Name> -<Questions> -<objsur guid="d4ad203b-91e3-41e5-8ae5-e5e792f870f9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="3a0e781a-bd54-407e-bf1e-706516449191" ownerguid="82ecb5b3-9128-4b38-b9c5-612857417ceb"> -<ExampleWords> -<AUni ws="en">contemptible, deplorable, despicable, displeasing, distasteful, obnoxious, odious, offensive, unpleasant, not very nice, leave a bad taste in the mouth, morbid</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that people dislike?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3a124f13-9ec0-4333-bbfc-d11d82b216d1" ownerguid="d117aa22-3f18-47c4-9683-51ecf1dc7134"> -<ExampleWords> -<AUni ws="en">shoot, sprout, bud, new growth, old growth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(17) What is new growth on a plant called?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3a169b3c-d21d-470c-92e2-2899e764358b" ownerguid="05a05da3-0adf-41e2-9a72-0e9ae7aeb3db"> -<Form> -<AUni ws="qvm-x-ach">pitish</AUni> -<AUni ws="qvm-x-acl">pitish</AUni> -<AUni ws="qvm-x-akh">pitish</AUni> -<AUni ws="qvm-x-akl">pitish</AUni> -<AUni ws="qvm-x-ame">pitish</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="3a1c0164-d08e-4e96-97b3-d05b6b0ad410" ownerguid="fbacf4d9-6603-49ff-9cbb-4e5bc203e5ed"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="3a1e62e2-5b51-40ab-99a2-0cdc1fda885f" ownerguid="0c49d8bb-06a5-4b7d-a317-c94d9ecb8850"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="3a20c23d-6d54-4a66-a51f-4903335230fe" ownerguid="a498112c-17c7-4f5c-a6c0-96e9f0e99de8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">begin</AUni> -<AUni ws="es">empezar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3a9db7aa-5239-4545-baca-6360c336d60d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="3a24a209-1fcc-41d3-bf33-0b8a1e541caa" ownerguid="89a9e395-7530-4527-98e4-c153cac68269"> -<Form> -<AUni ws="qvm-x-ach">azucar</AUni> -<AUni ws="qvm-x-acl">azucar</AUni> -<AUni ws="qvm-x-akh">azucar</AUni> -<AUni ws="qvm-x-akl">azucar</AUni> -<AUni ws="qvm-x-ame">azucar</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="3a24aece-a859-435c-bad6-99ac68e3414d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pla:ya</AUni> -<AUni ws="qvm-x-acl">pla:ya</AUni> -<AUni ws="qvm-x-akh">pla:ya</AUni> -<AUni ws="qvm-x-akl">pla:ya</AUni> -<AUni ws="qvm-x-ame">pla:ya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+playa</AUni> -<AUni ws="qvm-x-acl">+playa</AUni> -<AUni ws="qvm-x-akh">+playa</AUni> -<AUni ws="qvm-x-akl">+playa</AUni> -<AUni ws="qvm-x-ame">+playa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.881" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9c8fff0f-e5ba-44b8-af07-3efba0bf8cb4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+playa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8423b913-c4da-4018-98a8-0e8e504f6e9c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dba26d7c-3acb-4697-a781-9b0b2d83b788" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +playa 
\entryTyp root 
\gENG beach 
\gSPN playa 
\e +playa 
\c N0 
\ach pla:ya 
\akh pla:ya 
\acl pla:ya 
\akl pla:ya 
\ame pla:ya</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="3a264cfb-bd13-4f47-8d87-b217333366f8" ownerguid="a0cf4e6c-c605-47d8-865f-21f4690e7aef"> -<Form> -<AUni ws="qvm-x-ach">brasilëta</AUni> -<AUni ws="qvm-x-acl">brasilëta</AUni> -<AUni ws="qvm-x-akh">brasilëta</AUni> -<AUni ws="qvm-x-akl">brasilëta</AUni> -<AUni ws="qvm-x-ame">brasilëta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3a287d78-7868-4732-8bff-70b4135a36bd" ownerguid="edeb9458-3bdb-4d14-aaa1-6eb457307b9c"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">I <urge> you to help.; I <request> that you help.; <Let> us all do our part.; <Why don't> you do something to help?; <Please> do something to help.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">urge, request, let, why don't, please</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that the speaker is encouraging or inciting someone to action.</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="3a28ab73-2847-44a4-97ed-7129269f1366" ownerguid="9f3b4cab-dc8a-430e-88f3-d3002df64fb8"> -<Abbreviation> -<AUni ws="en">7.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.498" /> -<DateModified val="2022-9-23 16:55:8.498" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to kneeling.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>17C Kneel x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Kneel</AUni> -</Name> -<Questions> -<objsur guid="935272f5-e282-47e4-a954-c366d24d1a85" t="o" /> -<objsur guid="ab862032-421f-4807-8b1f-61cefc110c2a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="3a2acb3c-3a3c-48ba-8a91-d54781f5aa88" ownerguid="3fea4881-b06a-48a6-8c43-2acda231b2ad"> -<Form> -<AUni ws="qvm-x-ach">uywa</AUni> -<AUni ws="qvm-x-acl">uywa</AUni> -<AUni ws="qvm-x-akh">uywa</AUni> -<AUni ws="qvm-x-akl">uywa</AUni> -<AUni ws="qvm-x-ame">uywa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="3a2c0773-6b3e-4f8b-909d-c8f84d66d4f4" ownerguid="349f0278-7998-422a-9c3b-6053989cbb20"> -<Abbreviation> -<AUni ws="en">9.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.680" /> -<DateModified val="2022-9-23 16:55:8.680" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use the following section for words that don't belong in any other domain because they are so general in meaning that you can use them to talk about any topic. Use this domain for general and indefinite words that can be used in the place of any word. Some languages have a general word that can replace a noun or a verb. For instance some Philippine languages use the word 'kwan' in this way. Colloquial German can use the word 'dings' as a noun or verb. Often these words are used when you can't remember the particular word you are trying to think of. In English we use the word 'blank' when we don't want to say a word, for instance when we are testing someone and want them to say the word.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>13 Be, Become, Exist, Happen</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">General words</AUni> -</Name> -<Questions> -<objsur guid="1d8c3d16-2016-4f76-900e-9fdfdf045602" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="a72ca6f7-e389-408a-8276-fec4d60a3a56" t="o" /> -<objsur guid="e28f3f79-d4a5-402c-8a70-196856791078" t="o" /> -<objsur guid="0037693a-ae42-4e5c-85f5-10a05482d4ee" t="o" /> -<objsur guid="316f27aa-ed6d-4bc3-9d14-840946a6f4e9" t="o" /> -<objsur guid="d9b9db39-d87e-4d04-8298-1f1b969dbda1" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="3a328ddb-10bf-4f79-844c-4fab5dae99c7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">re:mu</AUni> -<AUni ws="qvm-x-acl">re:mu; re:mu; re:mo</AUni> -<AUni ws="qvm-x-akh">re:mu</AUni> -<AUni ws="qvm-x-akl">re:mu; re:mu; re:mo</AUni> -<AUni ws="qvm-x-ame">re:mu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+remo</AUni> -<AUni ws="qvm-x-acl">+remo</AUni> -<AUni ws="qvm-x-akh">+remo</AUni> -<AUni ws="qvm-x-akl">+remo</AUni> -<AUni ws="qvm-x-ame">+remo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.328" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1d9a9214-0e83-4788-a2d0-77d5e26eafba" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+remo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="501292ea-f67c-422a-ac23-b6f1dcb8cf7a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="27e82ff8-b987-44f1-82b6-eb06cc399ff0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +remo 
\entryTyp root 
\gENG oar 
\gSPN remo 
\e +remo 
\c N0 
\ach re:mu 
\akh re:mu 
\acl re:mu / _# 
\acl re:mu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl re:mo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl re:mu / _# 
\akl re:mu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl re:mo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame re:mu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3a33872e-db6e-4004-90b0-bd6c23562182" ownerguid="4de25240-867b-4e2a-845c-14f2bc956e0d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">plague</AUni> -<AUni ws="es">plaga</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5cf2ed80-9593-4ec2-9f59-650567bb3500" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="3a346084-49dd-4cdf-a418-e8a949688aad"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">retrata</AUni> -<AUni ws="qvm-x-acl">retrata</AUni> -<AUni ws="qvm-x-akh">retrata</AUni> -<AUni ws="qvm-x-akl">retrata</AUni> -<AUni ws="qvm-x-ame">retrata</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+retratar</AUni> -<AUni ws="qvm-x-acl">+retratar</AUni> -<AUni ws="qvm-x-akh">+retratar</AUni> -<AUni ws="qvm-x-akl">+retratar</AUni> -<AUni ws="qvm-x-ame">+retratar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.346" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="40ca31d9-ee25-478c-8d09-f1bf3b4dde42" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+retratar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="600198a3-2264-46c9-a9f3-511d91cff085" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="40ad6fb7-0147-4ed1-b6f6-ebbce7f9f091" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +retratar 
\entryTyp root 
\gENG take.picture 
\gSPN retratar 
\e +retratar 
\c V2 
\ach retrata 
\akh retrata 
\acl retrata 
\akl retrata 
\ame retrata</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="3a356d55-270d-4e5e-a671-a04c64f28927" ownerguid="f7b29046-5b1d-42d0-9a2e-386a140c6172"> -<Form> -<AUni ws="qvm-x-ach">logya; logyä</AUni> -<AUni ws="qvm-x-acl">logya; logyä</AUni> -<AUni ws="qvm-x-akh">loqya; loqyä</AUni> -<AUni ws="qvm-x-akl">loqya; loqyä</AUni> -<AUni ws="qvm-x-ame">luqya; luqyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3a378bb9-9772-4735-ba41-77fba8f2d53b" ownerguid="dff03b86-9d10-486f-a7b0-b56d5a31840a"> -<Form> -<AUni ws="qvm-x-ach">waja</AUni> -<AUni ws="qvm-x-acl">waja</AUni> -<AUni ws="qvm-x-akh">waja</AUni> -<AUni ws="qvm-x-akl">waja</AUni> -<AUni ws="qvm-x-ame">waha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3a3b23c3-eb41-4218-9b2e-241bcfa6bd11" ownerguid="8e92b134-6846-44f9-84d6-7971044c38f2"> -<Form> -<AUni ws="qvm-x-ach">jamuta</AUni> -<AUni ws="qvm-x-acl">jamuta</AUni> -<AUni ws="qvm-x-akh">jamuta</AUni> -<AUni ws="qvm-x-akl">jamuta</AUni> -<AUni ws="qvm-x-ame">hamuta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="3a3fd95e-0873-452e-b317-628c2416d717" ownerguid="20eb022d-a563-4148-9068-a2d6bd1e16c4"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">LAM 2.15 ¡Atatalay! ¿Tagaychi may marcapitapis mas cuyaylapag cargan?</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="3a40f9b4-4777-4076-aa0d-578dd5759d7f" ownerguid="41cac849-613d-4be4-a3bc-389412b7f653"> -<ExampleWords> -<AUni ws="en">repair, fix, mend, restore, restoration, undo, correct, rebuild, right, put to rights</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to repairing something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3a41a9eb-39ab-4593-a945-f40dcbba2674" ownerguid="f996e144-02df-417b-8d67-c2b1adba1085"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="3a451b36-8ac3-438f-b22e-f08b95a559b8" ownerguid="ae782d96-cc83-495f-8500-2d483d9a060f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">habit</AUni> -<AUni ws="es">hábito</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d0279dfd-667e-41e3-b6ec-9b96e9770ba9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="3a455ed8-3531-488f-8643-4c21d98a6943" ownerguid="b2d2501f-e8da-4675-8505-9b5dc5b52d4c"> -<Form> -<AUni ws="qvm-x-ach">jucnayla</AUni> -<AUni ws="qvm-x-acl">jucnayla</AUni> -<AUni ws="qvm-x-akh">juknayla</AUni> -<AUni ws="qvm-x-akl">juknayla</AUni> -<AUni ws="qvm-x-ame">huknayla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="3a45672c-b155-4581-bde3-328a0e995b6e" ownerguid="3aad1996-7180-45d0-a76d-6580ea53ab20"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="3a47f175-c648-4fb9-87b7-05719db084fa" ownerguid="5b9e7504-0b50-4041-b4f2-c46c0f9fd854"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="eb4bc344-be42-4c27-95e2-7abd4a6c2b27" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -<Sense> -<objsur guid="51cc5088-f15f-43ad-802d-b00dfa615a64" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="3a4a4b49-79b0-4aac-8e18-83fff0fb571a" ownerguid="deba4a79-3398-4dfa-b692-461f181f2ebb"> -<Form> -<AUni ws="qvm-x-ach">tsoglu</AUni> -<AUni ws="qvm-x-acl">tsoglu; tsoglu; tsoglo</AUni> -<AUni ws="qvm-x-akh">tsoqlu</AUni> -<AUni ws="qvm-x-akl">tsoqlu; tsoqlu; tsoqlo</AUni> -<AUni ws="qvm-x-ame">tsuqlu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3a4bbd82-e5be-4c1c-8a9f-7ca539cee369" ownerguid="7c6ba6e5-d81e-4a50-a111-c946a0793378"> -<ExampleWords> -<AUni ws="en">give someone an advantage, give someone the edge, be to someone's advantage, be in someone's favor, favor (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that something gives one person an advantage over others?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3a4c55cc-08bc-403c-a1c3-75505051463d" ownerguid="10b6c417-d020-4318-a44a-ae69ea3eec5a"> -<ExampleWords> -<AUni ws="en">big, major, sweeping, radical, fundamental, revolutionary, monumental</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a big change?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3a4ced6d-61c4-41cf-ac8a-02ba84fa9c64"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">evange:licu</AUni> -<AUni ws="qvm-x-acl">evange:licu; evange:licu; evange:lico</AUni> -<AUni ws="qvm-x-akh">evange:licu</AUni> -<AUni ws="qvm-x-akl">evange:licu; evange:licu; evange:lico</AUni> -<AUni ws="qvm-x-ame">evange:licu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+evangélico</AUni> -<AUni ws="qvm-x-acl">+evangélico</AUni> -<AUni ws="qvm-x-akh">+evangélico</AUni> -<AUni ws="qvm-x-akl">+evangélico</AUni> -<AUni ws="qvm-x-ame">+evangélico</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.518" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1800b2af-bc63-4d75-9650-bee3a7041bed" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+evangélico</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aa068512-8259-461b-90ee-2d09d74f3946" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7718d8be-f964-410f-a50e-63f5dd4e5114" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +evangélico 
\entryTyp root 
\gENG 
\gSPN 
\e +evangélico 
\c N0 
\ach evange:licu 
\akh evange:licu 
\acl evange:licu / _# 
\acl evange:licu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl evange:lico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl evange:licu / _# 
\akl evange:licu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl evange:lico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame evange:licu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3a4fe3ac-c9e9-4e16-92c3-0e59d995f490" ownerguid="91ddf495-a28b-4a32-90dc-6f997d0cd069"> -<ExampleWords> -<AUni ws="en">percussion instruments, drum, snare drum, bass drum, tympani, cymbal, bell, xylophone, marimba, rattle, castanet, bangle, jingle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the types of instruments that you hit?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3a53aa48-6c6e-4f55-9e32-915914a420b5" ownerguid="edbfc928-049c-4cb7-8c88-8e8af38287c7"> -<ExampleWords> -<AUni ws="en">love, passion, romance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the feeling of love?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3a53d330-6339-4dbe-8586-6564d5c6f4ed" ownerguid="da15ff44-522b-4be6-bbfe-95b39d8e10c1"> -<Form> -<AUni ws="qvm-x-ach">respita</AUni> -<AUni ws="qvm-x-acl">respita</AUni> -<AUni ws="qvm-x-akh">respita</AUni> -<AUni ws="qvm-x-akl">respita</AUni> -<AUni ws="qvm-x-ame">respita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="3a545732-145a-4034-8f72-e08d752cb4d4" ownerguid="0eefa07a-e0a3-49e3-aeb4-62f1eafd8e23"> -<Abbreviation> -<AUni ws="en">9.5.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating a person who accompanied the subject of a proposition.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">With, be with</AUni> -</Name> -<Questions> -<objsur guid="b9072b5a-36f1-4649-8399-f2bd3ae416b2" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="3a568f98-8446-4327-876b-7c5ec78d9084" ownerguid="22acd714-b11e-462a-bd8e-6ff50843c103"> -<Abbreviation> -<AUni ws="en">6.5.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.458" /> -<DateModified val="2022-9-23 16:55:8.458" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a floor.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Floor</AUni> -</Name> -<Questions> -<objsur guid="b2e7580e-9a0c-4b34-ab59-0fa949d53707" t="o" /> -<objsur guid="3a6d3d29-82aa-4cf1-bf2c-fc1d7332d7bc" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="3a5918e6-cab9-4fde-bbcc-d65a0bb191d6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">compaña</AUni> -<AUni ws="qvm-x-acl">compaña</AUni> -<AUni ws="qvm-x-akh">compaña</AUni> -<AUni ws="qvm-x-akl">compaña</AUni> -<AUni ws="qvm-x-ame">compaña</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+acompañar</AUni> -<AUni ws="qvm-x-acl">+acompañar</AUni> -<AUni ws="qvm-x-akh">+acompañar</AUni> -<AUni ws="qvm-x-akl">+acompañar</AUni> -<AUni ws="qvm-x-ame">+acompañar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.629" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6ff56c07-4c3d-4eb0-9cd6-063f8e2e99dc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+acompañar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b554a305-4f76-472b-a0d7-55025daf05d7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="704c913f-781a-46cb-ab19-e67c655078b3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +acompañar 
\entryTyp root 
\gENG accompany 
\gSPN acompañar 
\e +acompañar 
\c V2 
\ach compaña 
\akh compaña 
\acl compaña 
\akl compaña 
\ame compaña 
\i RUT 1.15 Gampis paylawan compañacur cuticuy.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="3a5ce2fc-1493-435a-90a3-a6d1e3ac255a" ownerguid="a6993674-4df0-418f-a032-ae376db5048b"> -<Form> -<AUni ws="qvm-x-ach">tinäcu</AUni> -<AUni ws="qvm-x-acl">tinäcu; tinäcu; tinäco</AUni> -<AUni ws="qvm-x-akh">tinäcu</AUni> -<AUni ws="qvm-x-akl">tinäcu; tinäcu; tinäco</AUni> -<AUni ws="qvm-x-ame">tinäcu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3a5daa13-c3dc-4ea9-bf36-e5719ae165e7" ownerguid="ac7de73d-0059-4f35-9317-462a1813edba"> -<ExampleWords> -<AUni ws="en">grain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the grain before it is ground?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3a5fac6d-5d82-419b-b358-f4ab54f8a44f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pantalón; pantalon</AUni> -<AUni ws="qvm-x-acl">pantalón; pantalon</AUni> -<AUni ws="qvm-x-akh">pantalón; pantalon</AUni> -<AUni ws="qvm-x-akl">pantalón; pantalon</AUni> -<AUni ws="qvm-x-ame">pantalón; pantalon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pantalón</AUni> -<AUni ws="qvm-x-acl">+pantalón</AUni> -<AUni ws="qvm-x-akh">+pantalón</AUni> -<AUni ws="qvm-x-akl">+pantalón</AUni> -<AUni ws="qvm-x-ame">+pantalón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.689" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8584176f-00b7-4b21-8f0e-54412fceaf13" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pantalón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7eba3397-0169-4c68-88b7-f81508bbda4b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="77c0f57f-eaa0-43c4-aa9d-d13d7b3d2793" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pantalón 
\entryTyp root 
\gENG pants 
\gSPN pantalón 
\e +pantalón 
\c N0 
\mp +FinalC 
\ach pantalón / _# 
\ach pantalon / ~_# 
\akh pantalón / _# 
\akh pantalon / ~_# 
\acl pantalón / _# 
\acl pantalon / ~_# 
\akl pantalón / _# 
\akl pantalon / ~_# 
\ame pantalón / _# 
\ame pantalon / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3a611aa3-67e8-430e-90e4-e1b059ee526b" ownerguid="7f1dfb68-bf07-472d-a481-b802d2591ca6"> -<ExampleWords> -<AUni ws="en">foreskin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What part is cut off?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="3a69f8eb-eb96-4a29-b349-921314550427" ownerguid="1e2f084c-71ac-42d4-8200-995f1be5d2c4"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="62ac2523-38de-46e1-a92f-806198307d46" t="o" /> -<objsur guid="7e628128-7aef-4ec1-b679-d029eebd9a40" t="o" /> -<objsur guid="5babb57c-3637-494d-9d45-14babc1b4b3f" t="o" /> -</MorphBundles> -</rt> -<rt class="StTxtPara" guid="3a6ba2a1-6774-4591-a376-2c85ffa26673" ownerguid="1b3624a5-d4f7-4190-9e19-d074a59aa870"> -<Contents> -<Str> -<Run ws="qvm-x-akh">aliyanki</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="186f74ee-d532-4c2a-bc3f-38d2ef2da245" t="o" /> -</Segments> -</rt> -<rt class="LexSense" guid="3a6c51d8-c88d-403f-b5bb-391aa98145b1" ownerguid="17bbd739-7fc0-4013-97f0-1805e465c65b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ill.mannered</AUni> -<AUni ws="es">malcriado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b2479069-3ae2-4fb4-b578-ffc0950c094c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3a6d3d29-82aa-4cf1-bf2c-fc1d7332d7bc" ownerguid="3a568f98-8446-4327-876b-7c5ec78d9084"> -<ExampleWords> -<AUni ws="en">carpet, carpeted, rug, throw rug, floor mat, rushes, straw mat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What do people cover their floors with?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3a70547f-fc1b-4938-b69f-39e16bc50fbc" ownerguid="e791df50-8880-4080-a5ee-d4e58bb7b8ca"> -<ExampleWords> -<AUni ws="en">free time, spare time, time off, time out, leisure time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to time when you don't have to work?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3a70df0c-2f93-4147-81c4-a055b1f0b72e" ownerguid="72274e9d-5d3c-4ae7-93ab-db3617cdda1e"> -<ExampleWords> -<AUni ws="en">soothing, pleasurable, sensuous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe something that feels good?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3a713bf4-8be8-4a94-a0d0-8a2523b9dcf4" ownerguid="d68ff392-9595-4af1-adc5-e138c7ffd2c7"> -<Form> -<AUni ws="qvm-x-ach">platëru</AUni> -<AUni ws="qvm-x-acl">platëru; platëru; platëro</AUni> -<AUni ws="qvm-x-akh">platëru</AUni> -<AUni ws="qvm-x-akl">platëru; platëru; platëro</AUni> -<AUni ws="qvm-x-ame">platëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3a737ff0-a0ca-4ffa-af6f-5431dce4be43" ownerguid="df2ee830-0668-43d7-8a32-e2fd3e7b31d8"> -<Question> -<AUni ws="en">(3) future: the situation takes place after the moment of speech; the speaker predicts that the situation in the proposition will hold.</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3a74f389-819a-40a3-bf2f-8f73f1752eec" ownerguid="48d2e013-81fd-40f7-89ed-548ff9f47492"> -<Form> -<AUni ws="qvm-x-ach">profundu; profundo</AUni> -<AUni ws="qvm-x-acl">profundu; profundu; profundo</AUni> -<AUni ws="qvm-x-akh">profundu; profundo</AUni> -<AUni ws="qvm-x-akl">profundu; profundu; profundo</AUni> -<AUni ws="qvm-x-ame">profundu; profundo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3a7b7064-d223-4def-9955-e204de69cb52" ownerguid="b5d47dab-541a-428f-9d26-4593f29eab3c"> -<Form> -<AUni ws="qvm-x-ach">nushi</AUni> -<AUni ws="qvm-x-acl">nushi; nushi; nushe</AUni> -<AUni ws="qvm-x-akh">nushi</AUni> -<AUni ws="qvm-x-akl">nushi; nushi; nushe</AUni> -<AUni ws="qvm-x-ame">nushi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3a81edd3-ea86-4a92-b714-85e9e0af16c1" ownerguid="7558d071-a885-447b-9aa2-604c29669492"> -<ExampleWords> -<AUni ws="en">monarchy, democracy, democratic, republic, republican, autocratic, dictatorship, dictatorial, communist, communistic, socialist, socialistic, theocracy, theocratic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe the kind of government in a country?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3a849b14-872d-4f3c-9ba7-e192a6d26801" ownerguid="2351f52a-8822-46ad-99c4-7ef526e94a6f"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Mary washed the dress <over and over again>.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">repeated, repeatedly, recurrent, recurring, repetitive, again and again, over and over again, always, never stop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words indicate that something is done many times?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3a859d7f-7496-489d-8029-d3a836b4bee7" ownerguid="aa57936d-f8a9-4603-8c3d-27abccd13531"> -<ExampleWords> -<AUni ws="en">world, nature, environment, environmental</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the world around us?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3a860950-1a98-4523-b896-b2b54d07b51b" ownerguid="6740fdcd-7f41-4a62-a3b7-90502edb44f3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">goiter</AUni> -<AUni ws="es">bocio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="27dcdca5-4cc7-4fd4-839b-cca680aa4b1b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoAffixAllomorph" guid="3a878dea-02ea-4b48-879e-8e5e29865122" ownerguid="ac650401-00f0-4159-ae7f-74aa96840e4e"> -<Form> -<AUni ws="qvm-x-ach">̈</AUni> -<AUni ws="qvm-x-acl">̈</AUni> -<AUni ws="qvm-x-akh">̈</AUni> -<AUni ws="qvm-x-akl">̈</AUni> -<AUni ws="qvm-x-ame">̈</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="3a879cc0-93e5-4be9-a178-849d552cb4a1" ownerguid="49c3474f-d0a5-485f-a96a-5bd3fd31509c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3a8a48ff-311c-4a81-a33a-378ca3fe8342" ownerguid="02d404d7-f3d7-492c-92a0-c6c9ff1a1908"> -<ExampleWords> -<AUni ws="en">snack, light breakfast, light meal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a small meal?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3a8ad1cb-089e-4c9e-854f-e1d774dd4feb" ownerguid="0221a7f3-34e8-44d7-8218-1f4c1c3b60e3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">hueso.oido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="92e60117-743f-4e2f-9305-ded145febb45" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="3a927206-bd54-4119-a0e3-0a37a0165afb" ownerguid="4c48acbd-5156-4f6d-bd93-750bcd92bca2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">judge</AUni> -<AUni ws="es">juzgar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="62551890-0cfd-4bdc-aaa8-065405b81474" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="3a94ef8b-8532-447c-a7ae-87ef105cea49"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yunta</AUni> -<AUni ws="qvm-x-acl">yunta</AUni> -<AUni ws="qvm-x-akh">yunta</AUni> -<AUni ws="qvm-x-akl">yunta</AUni> -<AUni ws="qvm-x-ame">yunta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yunta</AUni> -<AUni ws="qvm-x-acl">*yunta</AUni> -<AUni ws="qvm-x-akh">*yunta</AUni> -<AUni ws="qvm-x-akl">*yunta</AUni> -<AUni ws="qvm-x-ame">*yunta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.790" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="01b9c7e5-ee76-41cb-a889-64f1fba53ea0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yunta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1697d580-784f-4864-a2b5-5567e7f42c0c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="66cd9ebf-eb63-40c9-9a3d-95b9404c579c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yunta 
\entryTyp root 
\gENG plow 
\gSPN arado 
\e *yunta 
\c N0 
\ach yunta 
\akh yunta 
\acl yunta 
\akl yunta 
\ame yunta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3a97e94d-0a5a-44e0-893e-e92921011156" ownerguid="94af09fa-ff23-433b-a881-ceaca87d9d18"> -<ExampleWords> -<AUni ws="en">vulnerable, defenseless, powerless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who is weak and who can easily be hurt or get sick?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3a9aafc5-9af2-4a5e-a2ed-34cf2052b109" ownerguid="f79a1999-42df-440c-9521-c0e75f3e2d2d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="2442a843-96eb-4547-beda-43676628b2c8" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="70cecfb2-2968-4408-8e95-950dbd49d11c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="3a9b22d8-9c9e-4f95-9e82-8b9d5868d0d7" ownerguid="41bf21ef-863d-48f1-9051-99fd35b16f2a"> -<Form> -<AUni ws="qvm-x-ach">padrïnu</AUni> -<AUni ws="qvm-x-acl">padrïnu; padrïnu; padrïno</AUni> -<AUni ws="qvm-x-akh">padrïnu</AUni> -<AUni ws="qvm-x-akl">padrïnu; padrïnu; padrïno</AUni> -<AUni ws="qvm-x-ame">padrïnu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="3a9cec98-f941-4869-bc2b-454a48254b21" ownerguid="f3aa5ec5-b872-43f1-ac23-42d9a371442b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="1138a898-5c76-425b-a9e9-07cf07d24621" t="o" /> -</Examples> -<Gloss> -<AUni ws="es">suciedad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9c32556a-b736-4697-921b-508a3ab14578" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="3a9d62dc-08c7-4fc4-b628-97763eea9fce"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chicchi</AUni> -<AUni ws="qvm-x-acl">chicchi; chicchi; chicche</AUni> -<AUni ws="qvm-x-akh">chikchi</AUni> -<AUni ws="qvm-x-akl">chikchi; chikchi; chikche</AUni> -<AUni ws="qvm-x-ame">chikchi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chikchi</AUni> -<AUni ws="qvm-x-acl">*chikchi</AUni> -<AUni ws="qvm-x-akh">*chikchi</AUni> -<AUni ws="qvm-x-akl">*chikchi</AUni> -<AUni ws="qvm-x-ame">*chikchi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.305" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eb910171-bc74-4285-a65a-5f9e8911464f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chikchi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="28240e14-456e-4cc2-afd0-280d9ccb3b9f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9b7dbd93-e38b-411d-ae2b-41c4472e96d8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chikchi 
\entryTyp root 
\gENG bat 
\gSPN morcielago 
\e *chikchi 
\c N0 
\mp +FinalI 
\ach chicchi 
\akh chikchi 
\acl chicchi / _# 
\acl chicchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chicche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chikchi / _# 
\akl chikchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chikche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chikchi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="3a9da652-d75f-40dc-8b95-e314d9e38437"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">carta</AUni> -<AUni ws="qvm-x-acl">carta</AUni> -<AUni ws="qvm-x-akh">carta</AUni> -<AUni ws="qvm-x-akl">carta</AUni> -<AUni ws="qvm-x-ame">carta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+carta.v</AUni> -<AUni ws="qvm-x-acl">+carta.v</AUni> -<AUni ws="qvm-x-akh">+carta.v</AUni> -<AUni ws="qvm-x-akl">+carta.v</AUni> -<AUni ws="qvm-x-ame">+carta.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.72" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dfe694ec-fb1c-4c9e-889e-6312c7fdd54b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+carta.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9c7ccdd8-8f55-40af-bb5a-45ac0b3e1a3e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7a3947c9-d586-46bb-8038-1b0083aaf082" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +carta.v 
\entryTyp root 
\gENG write.letter 
\gSPN hacer.carta 
\e +carta.v 
\c V2 
\ach carta 
\akh carta 
\acl carta 
\akl carta 
\ame carta 
\mcc +carta.v / ~ _ [q] 
\mcc +carta.v / ~_ 3 
\mcc +carta.v / ~_ PASS IMPFV1 (PL) AFAR</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="3a9db7aa-5239-4545-baca-6360c336d60d" ownerguid="a498112c-17c7-4f5c-a6c0-96e9f0e99de8"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="3aa7b922-02d7-440b-bfcb-802b78a52b9c" ownerguid="3b986bd2-93d0-4ec5-b224-e94e21452077"> -<Form> -<AUni ws="qvm-x-ach">guechwa</AUni> -<AUni ws="qvm-x-acl">guechwa</AUni> -<AUni ws="qvm-x-akh">qechwa</AUni> -<AUni ws="qvm-x-akl">qechwa</AUni> -<AUni ws="qvm-x-ame">qichwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3aa81ce7-843f-4d38-b7f1-c2dea8391095" ownerguid="01441207-4935-49a5-a192-16d949f5606c"> -<ExampleWords> -<AUni ws="en">commentator, announcer, sportscaster, reporter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(23) What is a person called who comments on sports?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3aa87a2c-bff5-48a1-bf63-ec25adab8437" ownerguid="5064da75-9e00-49bc-88af-d092af810018"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="3aab9c42-b696-4440-8e28-8380f5d25199" ownerguid="541dfa10-bf97-4713-a534-9cbcc7f66bc9"> -<Abbreviation> -<AUni ws="en">3.2.5.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.103" /> -<DateModified val="2022-9-23 16:55:8.103" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to an extreme belief--something that you believe, that most people think is not good.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Extreme belief</AUni> -</Name> -<Questions> -<objsur guid="d00b78de-ddc9-460e-be71-5924646843ce" t="o" /> -<objsur guid="efadf4a6-799b-4c0d-82ab-f1abfff5a0b1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="Segment" guid="3aac8ef7-d981-47eb-b94a-d9b5d7076db9" ownerguid="476c8028-fb5f-41b7-8a10-cdea0850c384"> -<Analyses> -<objsur guid="ab80b556-2c7d-4e75-a58d-f5bb58b2feef" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="WfiAnalysis" guid="3aad1996-7180-45d0-a76d-6580ea53ab20" ownerguid="ccfb9c3b-2049-4345-8c51-b12d3308741a"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="cfd2c49b-786e-40bd-80dc-ed41e7f95625" t="o" /> -<objsur guid="4726c369-6e08-441e-aa45-251be0cff11f" t="o" /> -<objsur guid="e90dcf43-9981-40d3-a399-5cc67d56a0d8" t="o" /> -<objsur guid="3a45672c-b155-4581-bde3-328a0e995b6e" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="3aae052e-2daa-4ad3-beb6-3772850747f7" ownerguid="f7b7eb3c-b784-4ba5-8dac-a68fd27ce0ea"> -<ExampleWords> -<AUni ws="en">mistletoe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of parasites live on plants?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3aafd578-e2b0-496b-a632-2e78e88c22a4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">taulish</AUni> -<AUni ws="qvm-x-acl">taulish</AUni> -<AUni ws="qvm-x-akh">tawlish</AUni> -<AUni ws="qvm-x-akl">tawlish</AUni> -<AUni ws="qvm-x-ame">tawlish</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tawllish.n</AUni> -<AUni ws="qvm-x-acl">*tawllish.n</AUni> -<AUni ws="qvm-x-akh">*tawllish.n</AUni> -<AUni ws="qvm-x-akl">*tawllish.n</AUni> -<AUni ws="qvm-x-ame">*tawllish.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.835" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7bf5653c-52a1-4edd-ab7e-e767228d980e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tawllish.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="993ad8fe-a9a4-4288-b58a-006dc1b2496b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="78fa2d13-99e3-41ee-8b4e-df2d846c0515" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tawllish.n 
\entryTyp root 
\gENG 
\gSPN 
\e *tawllish.n 
\c N0 
\mp +FinalC 
\ach taulish 
\akh tawlish 
\acl taulish 
\akl tawlish 
\ame tawlish 
\i Exo 30.32 Tsaynogpis acramushag muru muru cabracunata y taulish cabracunata.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="3ab01c1e-439b-44a6-95d0-6c680f6f46d3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">habilo:su</AUni> -<AUni ws="qvm-x-acl">habilo:su; habilo:su; habilo:so</AUni> -<AUni ws="qvm-x-akh">habilo:su</AUni> -<AUni ws="qvm-x-akl">habilo:su; habilo:su; habilo:so</AUni> -<AUni ws="qvm-x-ame">habilo:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+habiloso</AUni> -<AUni ws="qvm-x-acl">+habiloso</AUni> -<AUni ws="qvm-x-akh">+habiloso</AUni> -<AUni ws="qvm-x-akl">+habiloso</AUni> -<AUni ws="qvm-x-ame">+habiloso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.639" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3fdde86b-d871-457d-87df-4bf6430185ca" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+habiloso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bc706e2a-1dc0-438f-989c-69a733d67e31" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f09796c7-fc3b-4252-b096-4a5370c0671f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +habiloso 
\entryTyp root 
\gENG talented 
\gSPN habiloso 
\e +habiloso 
\c N0 
\ach habilo:su 
\akh habilo:su 
\acl habilo:su / _# 
\acl habilo:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl habilo:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl habilo:su / _# 
\akl habilo:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl habilo:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame habilo:su</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3ab21c61-1d19-4469-b7f5-d723757ceea8" ownerguid="50db27b5-89eb-4ffb-af82-566f51c8ec0b"> -<ExampleWords> -<AUni ws="en">life, lifetime, days, lifespan, life expectancy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the time when a person is alive?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3ab4261e-b985-47c0-b77d-f2cc14cad8f5" ownerguid="3f3d5f08-d5ea-42f1-8ad7-4da9f23ff4ee"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">graft</AUni> -<AUni ws="es">injertar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c13084f5-f68e-4a48-9fe8-338b875c21b5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="3ab523ec-0fae-487c-b613-f8c5de8ce1e0" ownerguid="0b4071ea-5a42-4451-813e-d9344ed21c52"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 9.26 Lamarpa büqui fiwlayla pasaqno y chipshata anka fiwlayla apaqnömi vïdäpis ushakaykan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="3ab7c4d2-ff23-490c-9c30-e5796131a73c" ownerguid="c2c44f7a-4add-4907-addd-12cb05044695"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dull</AUni> -<AUni ws="es">gastado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b012ffc8-9c79-43c1-bfb1-36f3162a3578" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="3aba0fe0-c861-4b9c-b9f6-c4147f05920c" ownerguid="0e453182-6d1a-486e-abab-c7d4f35fc417"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">float</AUni> -<AUni ws="es">flotar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="eba49772-fb81-41c4-b8bb-281a74b0e16c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="3abc31f5-5e24-4548-aae7-df036c23df0d" ownerguid="53628a13-3087-4200-bb25-13995732318e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3ac14d51-6820-4ca5-9551-bde7ff823cec"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rawa</AUni> -<AUni ws="qvm-x-acl">rawa</AUni> -<AUni ws="qvm-x-akh">rawa</AUni> -<AUni ws="qvm-x-akl">rawa</AUni> -<AUni ws="qvm-x-ame">rawa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rawa.v</AUni> -<AUni ws="qvm-x-acl">*rawa.v</AUni> -<AUni ws="qvm-x-akh">*rawa.v</AUni> -<AUni ws="qvm-x-akl">*rawa.v</AUni> -<AUni ws="qvm-x-ame">*rawa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.287" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="94b6ac91-a407-4e98-bb20-3f0cb54541ef" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rawa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="df8e3ae5-0e4e-4b0a-b0c4-58da088d30ff" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="32ffc887-d90d-4fa3-96cf-c3174ba1742e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rawa.v 
\entryTyp root 
\gENG separate 
\gSPN apartar 
\e *rawa.v 
\c V1 
\ach rawa 
\akh rawa 
\acl rawa 
\akl rawa 
\ame rawa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="3ac33c82-201f-4142-8711-7b665ed92584" ownerguid="38bf569c-c1e9-4530-876b-5bcc629d06ca"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoMorphAdhocProhib" guid="3ac5c7bc-792f-4730-9f19-45d9406d8786" ownerguid="777f4eca-a64c-4ed7-8367-4e3ebdb5cd1f"> -<Adjacency val="4" /> -<Disabled val="True" /> -<FirstMorpheme> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</FirstMorpheme> -<RestOfMorphs> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</RestOfMorphs> -</rt> -<rt class="CmDomainQ" guid="3ac704be-801c-4a2b-ad1f-0c42d63604d2" ownerguid="20baa5e7-4f02-4782-a292-c6281d7b5f3a"> -<ExampleWords> -<AUni ws="en">wheel (v), push, roll, trundle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(17) What words refer to pushing something with wheels?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3ac9df26-e3b1-4635-bf06-06f5bf957fc3" ownerguid="7fc5c4e8-8d66-4a8e-9368-9c85043c95a1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">arrow</AUni> -<AUni ws="es">flecha</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9b9beef3-780c-424d-aeab-2edfbc83124a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="3acb05ff-c56a-4e53-8d6b-a92ef79d7cbd" ownerguid="a20245bb-760f-4eec-babf-65e35326b66d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="dc9703bc-cf70-43c7-a685-350bc0c7aaf0" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="9e207525-5fa3-40d3-aa6e-dec8f631cd7d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="3ace969d-9a80-44a5-839d-e18f56a5f6df" ownerguid="1abfa027-70fd-4f58-957e-d1efa1dd3f23"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsaysicasag papacuna</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="3acf5e20-b626-4f0a-a582-d386a0e30792" ownerguid="eca46133-c350-4573-a349-9b7ce11b6fa8"> -<Abbreviation> -<AUni ws="en">6.7.7.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a sheath--a container for a weapon.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Sheath</AUni> -</Name> -<Questions> -<objsur guid="fdc4e295-4ef6-4997-9c6d-6a902af80ed8" t="o" /> -<objsur guid="fc7785e9-8e85-42ee-8604-7444f28e344b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="3ade4894-7cc7-4722-8719-4a922d0e16a2" ownerguid="7c6cad26-79c3-403a-a3aa-59babdfcd46f"> -<ExampleWords> -<AUni ws="en">have (a disease), suffer from, be sick with, infected with, stricken with, have an attack of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to being sick with a disease?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3ae14c8e-42ad-4bd4-b6d3-0ee6ab4ac3fe" ownerguid="c8b8f2cd-0fb9-4306-bd78-43eb27dc15fd"> -<Form> -<AUni ws="qvm-x-ach">tama</AUni> -<AUni ws="qvm-x-acl">tama</AUni> -<AUni ws="qvm-x-akh">tama</AUni> -<AUni ws="qvm-x-akl">tama</AUni> -<AUni ws="qvm-x-ame">tama</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="3ae3a1be-cfb5-4953-b65b-68f0c51b1d40" ownerguid="0bc02285-8e70-442a-8d08-e04d922507c8"> -<Abbreviation> -<AUni ws="en">6.6.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.476" /> -<DateModified val="2022-9-23 16:55:8.476" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to sculpture.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Sculpture</AUni> -</Name> -<Questions> -<objsur guid="e753b1dc-ead6-42fd-acc3-fce90dabae97" t="o" /> -<objsur guid="db59b61c-fdd1-4dc4-9fd0-f2eb008ccd41" t="o" /> -<objsur guid="a5ffa20c-871f-4b70-83bd-449751045d59" t="o" /> -<objsur guid="2d6e03ef-9fcf-425a-8dcf-5057aa7fd886" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="3ae46517-a263-48bb-8a7d-a5265aa10100" ownerguid="31a7512b-6b46-4d0d-a71b-69a4b837f3ff"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d1685fdc-96d8-4baf-9cb8-523863adb67f" t="r" /> -</Morph> -<Msa> -<objsur guid="434f36b9-aa05-46d6-be7e-89240d9e2c4d" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="3ae6cbf1-ef25-48a4-a022-50b77bf5b510"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alcaldi; alcalde</AUni> -<AUni ws="qvm-x-acl">alcaldi; alcaldi; alcalde</AUni> -<AUni ws="qvm-x-akh">alcaldi; alcalde</AUni> -<AUni ws="qvm-x-akl">alcaldi; alcaldi; alcalde</AUni> -<AUni ws="qvm-x-ame">alcaldi; alcalde</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+alcalde</AUni> -<AUni ws="qvm-x-acl">+alcalde</AUni> -<AUni ws="qvm-x-akh">+alcalde</AUni> -<AUni ws="qvm-x-akl">+alcalde</AUni> -<AUni ws="qvm-x-ame">+alcalde</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.699" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f393501c-4b2c-4320-86f1-e7521775d019" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+alcalde</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d2958f56-27b4-4a35-b7ce-3d3c356d32e7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="76cb6f51-fcce-4ef3-81ad-9a3e8b633405" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +alcalde 
\entryTyp root 
\gENG mayor 
\gSPN alcalde 
\e +alcalde 
\c N0 
\mp +FinalI 
\ach alcaldi / ~_# 
\ach alcalde / _# 
\akh alcaldi / ~_# 
\akh alcalde / _# 
\acl alcaldi / ~_# 
\acl alcaldi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl alcalde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl alcaldi / ~_# 
\akl alcaldi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl alcalde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame alcaldi / ~_# 
\ame alcalde / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3aeaed53-b398-4fcd-9289-24dfdc47c9df" ownerguid="4093bfe8-54b3-4ffc-bfe3-3999279840b5"> -<ExampleWords> -<AUni ws="en">comment, remark, observation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something that is said about something?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="3aec74e5-6cfd-46d2-b26f-503fad761583" ownerguid="6342c8bf-55b5-400f-af7e-63055fe6813b"> -<Abbreviation> -<AUni ws="en">6.7.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to parts of tools and machines. You need to think of different tools and machines, and think of each part.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Parts of tools</AUni> -</Name> -<Questions> -<objsur guid="fb771764-bb1b-40d1-a716-578f521db5c9" t="o" /> -<objsur guid="df3151f8-731b-46b3-89d8-fe1de67b8577" t="o" /> -<objsur guid="c89b68a6-accf-4d9a-b488-b2ee1f53d835" t="o" /> -<objsur guid="432025d1-a86c-42ce-92f8-aa7658279d2a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="3aee5038-949e-45a4-aed6-243ca71ce366"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tienda</AUni> -<AUni ws="qvm-x-acl">tienda</AUni> -<AUni ws="qvm-x-akh">tienda</AUni> -<AUni ws="qvm-x-akl">tienda</AUni> -<AUni ws="qvm-x-ame">tienda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tienda</AUni> -<AUni ws="qvm-x-acl">+tienda</AUni> -<AUni ws="qvm-x-akh">+tienda</AUni> -<AUni ws="qvm-x-akl">+tienda</AUni> -<AUni ws="qvm-x-ame">+tienda</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.886" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="25913107-8071-40ec-a5b6-cd9fcf0185eb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tienda</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="83d731b3-dbad-4181-bce1-93e725136441" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="79566860-3b43-40fd-93d0-5ae32a4e5262" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tienda 
\entryTyp root 
\gENG store 
\gSPN tienda 
\e +tienda 
\c N0 
\ach tienda 
\akh tienda 
\acl tienda 
\akl tienda 
\ame tienda</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3af929bf-e30f-4c99-afeb-0df20875175e" ownerguid="2ec7128c-61c0-4095-9f4b-70c3de2bd12b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">nit</AUni> -<AUni ws="es">liendre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="70ff8d39-94bd-4b97-885d-2b27263c6ff8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3af96c90-205d-43ee-9ffa-955509d7b27f" ownerguid="4b3a9b5a-df7d-4ec2-9576-2c07fe396021"> -<ExampleWords> -<AUni ws="en">dance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to dancing?</AUni> -</Question> -</rt> -<rt class="MoDerivAffMsa" guid="3afae7ea-b6f9-4990-9b80-c355228ee832" ownerguid="81d52ec1-f6de-483a-9686-50973ea72f8e"> -<FromPartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</FromPartOfSpeech> -<ToPartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</ToPartOfSpeech> -</rt> -<rt class="LexSense" guid="3afc8b13-17c7-4518-a0db-00c74f0b9914" ownerguid="73497264-81a2-49dd-9f3b-7c42c8a8ee23"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="412177dd-ccfc-4f31-9410-8c3a3179bca1" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="467a27d2-8717-48a5-9d23-3d0f9b3152c1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3aff009f-11fb-40f4-89cb-90fe0964f7b1" ownerguid="23190f9e-2db2-4ef9-8c0e-495dbef05571"> -<ExampleWords> -<AUni ws="en">sexy, attractive, desirable, voluptuous, sultry, alluring, luscious, appealing, beautiful, allure, sensual, sensuous, good-looking, glamorous, seductive, handsome, tempting, irresistible, enticing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe someone who is sexually attractive?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3b01e95a-ca9c-4922-ab0b-66872acc6c51" ownerguid="e84c68d7-7b45-45bc-a3ea-6b8676c14233"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shell.beans</AUni> -<AUni ws="es">pelar.habas</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c2e2f6dc-5c3c-4d59-a77d-3222c9f42d72" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3b03674f-1aff-4969-b3d8-b5303dc6c295" ownerguid="0de28f92-c851-413c-bb6c-3ad21f5e267f"> -<ExampleWords> -<AUni ws="en">listener, audience, eavesdropper, auditor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to someone who listens?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3b03bd47-c5cd-46eb-ae97-e6f3bce9e6e0" ownerguid="41a8ce11-1743-4a6f-98b2-35174e008309"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="3b0490a4-ee2f-4179-bbe8-4a0f808a04b1" ownerguid="b83e66f0-f907-42ff-b43b-34d85214708d"> -<Form> -<AUni ws="qvm-x-ach">cabala</AUni> -<AUni ws="qvm-x-acl">cabala</AUni> -<AUni ws="qvm-x-akh">cabala</AUni> -<AUni ws="qvm-x-akl">cabala</AUni> -<AUni ws="qvm-x-ame">cabala</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="3b05cd00-350b-48e4-9138-8a0bec4a7649"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">runaynaqlaqa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="3b09e4e6-827a-458d-bcae-171c837aec92" ownerguid="2b2143d9-f65e-4c32-806b-996a30e7655e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">skinny</AUni> -<AUni ws="es">flaco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f88400e1-92a4-46b8-9fb2-45452fb93dd9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="3b0ac3c8-2a9b-474d-a25f-4226ceb430ca" ownerguid="957e5b95-cd8d-4059-9447-97ad174673f9"> -<Form> -<AUni ws="qvm-x-ach">yöra</AUni> -<AUni ws="qvm-x-acl">yöra</AUni> -<AUni ws="qvm-x-akh">yöra</AUni> -<AUni ws="qvm-x-akl">yöra</AUni> -<AUni ws="qvm-x-ame">yüra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="3b0affd6-556e-4166-af43-12030332e324" ownerguid="2adb4fb7-4801-4305-abe5-600911718370"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">letter</AUni> -<AUni ws="es">carta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d97cf16c-9cd0-41fc-a93f-a62cd45cce9b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="3b0cda59-be2f-4d90-8250-58abaa01511f" ownerguid="42b7ea65-3cb9-4bc5-829c-334bdddcac5b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3b0e81b6-a586-492d-8757-d84495a5631d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shancapa</AUni> -<AUni ws="qvm-x-acl">shancapa</AUni> -<AUni ws="qvm-x-akh">shankapa</AUni> -<AUni ws="qvm-x-akl">shankapa</AUni> -<AUni ws="qvm-x-ame">shankapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shankapa</AUni> -<AUni ws="qvm-x-acl">*shankapa</AUni> -<AUni ws="qvm-x-akh">*shankapa</AUni> -<AUni ws="qvm-x-akl">*shankapa</AUni> -<AUni ws="qvm-x-ame">*shankapa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.541" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2486586e-178f-4d24-8f63-020b13f1156e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shankapa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b828fb35-8b6d-402b-853b-a1cc5222e0ca" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f2baf473-faa4-4b2e-a208-31b69acb5f48" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shankapa 
\entryTyp root 
\gENG left.overs 
\gSPN 
\e *shankapa 
\c N0 
\ach shancapa 
\akh shankapa 
\acl shancapa 
\akl shankapa 
\ame shankapa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3b0fc691-a1a3-4343-92c1-deb574158648" ownerguid="b93bdfa4-486c-44a0-8266-557ccdc78b31"> -<ExampleWords> -<AUni ws="en">burn (n), burned off area</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to an area of ground that has been burned?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3b106c51-5bc1-4da6-b822-2a095c2e3bc9" ownerguid="851d9ccc-2a49-4ef0-947f-dd6f5e91b410"> -<Form> -<AUni ws="qvm-x-ach">jagchu</AUni> -<AUni ws="qvm-x-acl">jagchu; jagchu; jagcho</AUni> -<AUni ws="qvm-x-akh">jaqchu</AUni> -<AUni ws="qvm-x-akl">jaqchu; jaqchu; jaqcho</AUni> -<AUni ws="qvm-x-ame">haqchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="3b125519-8d20-4069-8102-5ea3b6fbe110" ownerguid="c2616b18-174b-4e33-b93b-0dbe097ccd3e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="e259c942-a8c3-470e-8b78-7aa38ad74b3c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="3b141557-a064-4823-acdd-03222e6de62d" ownerguid="a2335c2a-e3b7-46c4-8e6e-5494a4b6fea5"> -<Form> -<AUni ws="qvm-x-ach">gapchu</AUni> -<AUni ws="qvm-x-acl">gapchu; gapcho</AUni> -<AUni ws="qvm-x-akh">qapchu</AUni> -<AUni ws="qvm-x-akl">qapchu; qapcho</AUni> -<AUni ws="qvm-x-ame">qapchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3b1479b0-32c2-4428-a9db-a734bac71a78" ownerguid="effc8ca7-1c35-4e4d-9b41-e7db8201be81"> -<Form> -<AUni ws="qvm-x-ach">miju; mijo</AUni> -<AUni ws="qvm-x-acl">miju; miju; mijo</AUni> -<AUni ws="qvm-x-akh">miju; mijo</AUni> -<AUni ws="qvm-x-akl">miju; miju; mijo</AUni> -<AUni ws="qvm-x-ame">miju; mijo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3b156c67-d242-4d38-9bf4-b02573075e14" ownerguid="82e4394a-2f58-4356-8d9c-1ad9dbe95293"> -<ExampleWords> -<AUni ws="en">fan, cooler, air-conditioning, air-conditioner, air-conditioned, refrigeration</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What things do people use to stay cool when it is hot?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="3b17041c-3369-4c6e-9a21-a2c7544cbb1b" ownerguid="faea150f-b612-4fce-81b2-06d69eda8a9e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="3b18e4e3-d6bf-40e6-a6ab-508ce6a5d488" ownerguid="3005971d-de4d-401f-8400-b25de5e052ad"> -<ExampleWords> -<AUni ws="en">in the middle, halfway, midway, midpoint</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the middle position between two places, times, or amounts?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3b18fd9f-1361-47fd-ae1c-dbafc879fefd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">toscu; tosco</AUni> -<AUni ws="qvm-x-acl">toscu; toscu; tosco</AUni> -<AUni ws="qvm-x-akh">toscu; tosco</AUni> -<AUni ws="qvm-x-akl">toscu; toscu; tosco</AUni> -<AUni ws="qvm-x-ame">toscu; tosco</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tosco.n</AUni> -<AUni ws="qvm-x-acl">+tosco.n</AUni> -<AUni ws="qvm-x-akh">+tosco.n</AUni> -<AUni ws="qvm-x-akl">+tosco.n</AUni> -<AUni ws="qvm-x-ame">+tosco.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.965" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ea7d40eb-d500-4f5f-ae00-c1398ecffdb9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tosco.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9592006a-4da4-4c05-bf2f-fe4a1b8c8f98" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ea75f0f7-7a82-42e5-97e0-44f241c59f5c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tosco.n 
\entryTyp root 
\gENG rough 
\gSPN tosco 
\e +tosco.n 
\c N0 
\ach toscu / ~_# 
\ach tosco / _# 
\akh toscu / ~_# 
\akh tosco / _# 
\acl toscu / ~_# 
\acl toscu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tosco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl toscu / ~_# 
\akl toscu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tosco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame toscu / ~_# 
\ame tosco / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3b193ba1-ddcc-4c87-bd40-ab7d59b885f5" ownerguid="0cebe947-9794-4972-8ecd-c3a300d394d7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">crystal</AUni> -<AUni ws="es">cristal</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ab019246-9513-4e2d-880e-382fbeda7887" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="3b19fe3b-741e-4c50-9fab-a12fdf4ca3c7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guechpa</AUni> -<AUni ws="qvm-x-acl">guechpa</AUni> -<AUni ws="qvm-x-akh">qechpa</AUni> -<AUni ws="qvm-x-akl">qechpa</AUni> -<AUni ws="qvm-x-ame">qichpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qitrpa</AUni> -<AUni ws="qvm-x-acl">*qitrpa</AUni> -<AUni ws="qvm-x-akh">*qitrpa</AUni> -<AUni ws="qvm-x-akl">*qitrpa</AUni> -<AUni ws="qvm-x-ame">*qitrpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.216" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e462a9e2-9630-4b56-b107-5fa033511c8d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qitrpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="df815d5f-5e79-4e81-94b3-fb1a1c9ee3a2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="056577e0-ac99-4ad9-b740-6160dce5eee0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qitrpa 
\entryTyp root 
\gENG first.born 
\gSPN primogénito 
\e *qitrpa 
\c N0 
\ach guechpa 
\akh qechpa 
\acl guechpa 
\akl qechpa 
\ame qichpa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="3b1fea98-06bd-48ae-bcd8-5f5033c9bb87" ownerguid="10e92a20-75c9-488b-b0bd-cef70ce61a44"> -<Form> -<AUni ws="qvm-x-ach">wacla</AUni> -<AUni ws="qvm-x-acl">wacla</AUni> -<AUni ws="qvm-x-akh">wakla</AUni> -<AUni ws="qvm-x-akl">wakla</AUni> -<AUni ws="qvm-x-ame">wakla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="3b20e9e1-8152-4182-a4d5-980609809c68" ownerguid="d299e78b-b4e5-4b52-8dc2-54b91154382d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="decda8c0-e869-4864-843a-b29c2d91675f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="3b284638-4b37-420f-88c8-e102db9c725a" ownerguid="42882481-3390-4c4b-b98d-a50cd21c60d7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="MoStemMsa" guid="3b28774b-cc14-476d-aa61-63015deb6b4a" ownerguid="cf47477d-c32d-444f-9967-2d0d13393aaf"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3b28c9b3-6371-4999-a063-46492b02026c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">teso:ru</AUni> -<AUni ws="qvm-x-acl">teso:ru; teso:ru; teso:ro</AUni> -<AUni ws="qvm-x-akh">teso:ru</AUni> -<AUni ws="qvm-x-akl">teso:ru; teso:ru; teso:ro</AUni> -<AUni ws="qvm-x-ame">teso:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tesoro</AUni> -<AUni ws="qvm-x-acl">+tesoro</AUni> -<AUni ws="qvm-x-akh">+tesoro</AUni> -<AUni ws="qvm-x-akl">+tesoro</AUni> -<AUni ws="qvm-x-ame">+tesoro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.876" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0b1407da-6d26-4302-80ea-5ce8611d4a8d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tesoro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fe3cb348-3a61-4661-bb7b-16196d128efb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ca2f8cf3-3b7e-441f-8dc1-9260d3b95fd8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tesoro 
\entryTyp root 
\gENG 
\gSPN 
\e +tesoro 
\c N0 
\ach teso:ru 
\akh teso:ru 
\acl teso:ru / _# 
\acl teso:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl teso:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl teso:ru / _# 
\akl teso:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl teso:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame teso:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="3b28d36e-2d39-4e70-b532-7592fda80949" ownerguid="1e28037c-3909-438b-bece-67a82baddbeb"> -<Form> -<AUni ws="qvm-x-ach">siempri; siempre</AUni> -<AUni ws="qvm-x-acl">siempri; siempre; siempri</AUni> -<AUni ws="qvm-x-akh">siempri; siempre</AUni> -<AUni ws="qvm-x-akl">siempri; siempre; siempri</AUni> -<AUni ws="qvm-x-ame">siempri; siempre</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3b29477d-74a3-4dbf-9715-db89a8cbb5d3" ownerguid="f8863b67-b911-4334-a1b6-6eb913bd14af"> -<ExampleWords> -<AUni ws="en">widening, wide spot</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a place where something is wide?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="3b2a2c66-a4dd-414c-8ea5-77258724e5f1" ownerguid="54a66603-d266-4e82-89f5-2fae943bc5cd"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yarga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yarga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yarqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yarqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yarqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="8adec79f-7ef5-4fc4-bb8b-93b1a76cc445" t="r" /> -</Morph> -<Msa> -<objsur guid="1afedd8a-1478-44b0-8828-b5d955ebdf49" t="r" /> -</Msa> -<Sense> -<objsur guid="7917a032-4704-4ecd-bde0-bc0a89612317" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="3b2de55c-317a-4c5a-8732-7df8b74be33c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ra:ja</AUni> -<AUni ws="qvm-x-acl">ra:ja</AUni> -<AUni ws="qvm-x-akh">ra:ja</AUni> -<AUni ws="qvm-x-akl">ra:ja</AUni> -<AUni ws="qvm-x-ame">ra:ja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rajar</AUni> -<AUni ws="qvm-x-acl">+rajar</AUni> -<AUni ws="qvm-x-akh">+rajar</AUni> -<AUni ws="qvm-x-akl">+rajar</AUni> -<AUni ws="qvm-x-ame">+rajar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.236" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a769c2ec-1f84-4ddc-b37a-4a01c46ca6fe" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rajar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7564abb8-fd51-44a2-8e1d-ce0ddbd6e7ac" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="277a09ec-b04b-418a-ab8a-8c219b3ceeb0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rajar 
\entryTyp root 
\gENG to.crack 
\gSPN rajar 
\e +rajar 
\c V1 
\ach ra:ja 
\akh ra:ja 
\acl ra:ja 
\akl ra:ja 
\ame ra:ja</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3b2fee60-89b6-4b54-9278-79e4b423a22e" ownerguid="72862fee-38c5-48e5-8db3-0a3884cb00e0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">town.council</AUni> -<AUni ws="es">cabildo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="17ff4c40-2fa7-4909-b53f-fde50695ba7f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3b341551-0b8b-4b96-87af-3130b92f8451" ownerguid="e4517880-aa2d-4977-b55a-dcb0b6d1f533"> -<ExampleWords> -<AUni ws="en">beautify, spruce up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to making something beautiful?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3b34cf8d-998b-4cb6-bee7-34cdfdfee925"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chiwin</AUni> -<AUni ws="qvm-x-acl">chiwin; chiwin; chiwen</AUni> -<AUni ws="qvm-x-akh">chiwin</AUni> -<AUni ws="qvm-x-akl">chiwin; chiwin; chiwen</AUni> -<AUni ws="qvm-x-ame">chiwin</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*triwin</AUni> -<AUni ws="qvm-x-acl">*triwin</AUni> -<AUni ws="qvm-x-akh">*triwin</AUni> -<AUni ws="qvm-x-akl">*triwin</AUni> -<AUni ws="qvm-x-ame">*triwin</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.139" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c4a508f3-379f-4938-b77d-c37de4d1db6a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*triwin</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d15e9dbf-b9bc-40cc-a322-d7b556b3fe14" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4333f636-d53d-4a89-984c-9a067d877434" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *triwin 
\entryTyp root 
\gENG bile 
\gSPN 
\e *triwin 
\c N0 
\mp +FinalC 
\ach chiwin 
\akh chiwin 
\acl chiwin / _# 
\acl chiwin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chiwen +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chiwin / _# 
\akl chiwin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chiwen +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame chiwin 
\i Ayag chiwinnëtapis pampamanmi jichapäcushga.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3b3536a8-9ef3-4927-9fe0-7de812cfc504" ownerguid="df0af4e7-7ba7-48f2-b1cf-5f8991ac97ce"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">pelo.crespo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e2e50769-b260-40c3-bbcf-44b7f4803044" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3b41533f-d297-4ba9-873e-97915ab02994" ownerguid="0aae0254-dc06-4906-8ecf-2d8450fb83f1"> -<ExampleWords> -<AUni ws="en">lie, lie down, lie back, recline, stretch out, sprawl, prostrate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to lying down from a standing or sitting positions?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3b430c74-3702-4f2c-9cf6-135105c49dae" ownerguid="b8fc7997-5daa-4c03-bcce-30f7295dfe62"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">?</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e6399c0e-55bd-453c-98ed-882a9d160a8c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="3b4b947a-f223-4c87-8839-9f6237cda9f6" ownerguid="2810998c-d6cc-47a3-a946-66d0986a2767"> -<Abbreviation> -<AUni ws="en">7.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.536" /> -<DateModified val="2022-9-23 16:55:8.536" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words for using the hands to move something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Handle something</AUni> -</Name> -<Questions> -<objsur guid="0fe35855-245c-4bdb-866d-049818104428" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c35cba91-742c-4b98-b848-dfd520d959cf" t="o" /> -<objsur guid="3885231e-8b18-4da3-af76-c75e8b731ed8" t="o" /> -<objsur guid="b7ed2482-6883-4a02-a992-e86c2573cc74" t="o" /> -<objsur guid="1e419f7a-7363-46bc-8044-157ed0b40ccd" t="o" /> -<objsur guid="5db1b502-7c36-44fb-a7b4-50744e9ec286" t="o" /> -<objsur guid="eb821083-3fb0-441a-9f1d-ad2a9ed918d8" t="o" /> -<objsur guid="df47f55d-b15d-4261-881e-3c4b0dc6d9be" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="3b4ec7ce-4889-4666-a80f-3e709a917893" ownerguid="c2a254da-0fb7-4748-ab3d-a4cde4aa5a82"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">son.in.law</AUni> -<AUni ws="es">yerno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="20082b62-9dfd-498a-89a1-f92039b1d410" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="3b4fe670-4b70-4df8-a563-143d188ce19f" ownerguid="0757343a-8784-48c2-b926-81322f3d4295"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="3b52986b-81f2-4103-84b5-879d72648ef1" ownerguid="a97e1e43-8347-41a8-b258-5ec7de90442c"> -<Form> -<AUni ws="qvm-x-ach">machay</AUni> -<AUni ws="qvm-x-acl">machay</AUni> -<AUni ws="qvm-x-akh">machay</AUni> -<AUni ws="qvm-x-akl">machay</AUni> -<AUni ws="qvm-x-ame">machay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3b53d1ba-e709-4e2e-b282-94297f74dcd7" ownerguid="656862c1-80f3-461a-b9cb-cc8873506f39"> -<Form> -<AUni ws="qvm-x-ach">muchca</AUni> -<AUni ws="qvm-x-acl">muchca</AUni> -<AUni ws="qvm-x-akh">muchka</AUni> -<AUni ws="qvm-x-akl">muchka</AUni> -<AUni ws="qvm-x-ame">muchka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3b566414-2a28-4329-97ea-1f7fcde4da11" ownerguid="6ab060ca-ecfc-4a46-accb-42b0473998cd"> -<ExampleWords> -<AUni ws="en">link, connect</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something linking two things?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3b572380-65c1-4a4c-bbe7-7e90af09ce0d" ownerguid="f6eb81d5-caba-4735-be6f-ae038656b555"> -<ExampleWords> -<AUni ws="en">craft</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to working with materials?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3b5e5f19-53ee-4bf0-bba6-91da27a3a405" ownerguid="b24d098c-b6f0-411a-909d-6566b23f2d91"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8589599f-3ef1-4df3-af4c-f885bed3da45" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="3b626ac3-8a69-46e3-8df4-a90741567e4e" ownerguid="caf2115b-eedb-41b5-80df-0c291df27dde"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3b673a05-fd79-4b49-a972-6bdacd6a03b8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">casha</AUni> -<AUni ws="qvm-x-acl">casha</AUni> -<AUni ws="qvm-x-akh">kasha</AUni> -<AUni ws="qvm-x-akl">kasha</AUni> -<AUni ws="qvm-x-ame">kasha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kasha</AUni> -<AUni ws="qvm-x-acl">*kasha</AUni> -<AUni ws="qvm-x-akh">*kasha</AUni> -<AUni ws="qvm-x-akl">*kasha</AUni> -<AUni ws="qvm-x-ame">*kasha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.953" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="55878268-a9ed-44ae-8424-02e7dd245f3f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kasha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="74775b7e-fa84-457c-8efb-d8ea9f364b54" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ae83ce8c-bbf8-441c-ae00-01dea8893636" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kasha 
\entryTyp root 
\gENG thorn 
\gSPN espina 
\e *kasha 
\c N0 
\ach casha 
\akh kasha 
\acl casha 
\akl kasha 
\ame kasha 
\mcc *kasha / ~_ [poss] 
\mcc *kasha / ~_ HUMAN</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3b67c22a-4f00-4187-9f76-a69b3561b227" ownerguid="41b80f5d-0298-4d3c-b1a3-6d5e6c3985b1"> -<ExampleWords> -<AUni ws="en">desire, lust, avarice, burn, covet, crave, grasping, greed, inflamed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to lusting for something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3b67c4a9-6745-43ee-9f43-7a73a24124bd" ownerguid="962941b2-66bd-437f-aadc-b1921bcae5b4"> -<ExampleWords> -<AUni ws="en">poison, toxin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to poison?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3b693a07-5e0b-4cf1-82f6-a56ccfe40c90" ownerguid="8052744f-7a9a-49da-89e3-4c518126180b"> -<ExampleWords> -<AUni ws="en">bewildered, mixed-up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe someone who is very confused?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3b69f044-7969-45ca-9387-7065d6f130b8" ownerguid="b93bdfa4-486c-44a0-8266-557ccdc78b31"> -<ExampleWords> -<AUni ws="en">flames, heat, light, smoke, fumes, exhaust, sparks, ash, soot</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What do fires produce?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="3b69f6b6-d64a-43aa-99dc-05e34f81e07f" ownerguid="67931f1c-9a0c-4d18-9762-e553c132256c"> -<Abbreviation> -<AUni ws="en">6.8.4.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to hiring or renting something--to pay money so that you can use something that belongs to someone else.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>57M Hire, Rent Out</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Hire, rent</AUni> -</Name> -<OcmCodes> -<Uni>427 Renting and Leasing</Uni> -</OcmCodes> -<Questions> -<objsur guid="1070eff4-a200-4fa7-9573-a09f10f508de" t="o" /> -<objsur guid="6bf8fb6b-eb6f-40b7-aa27-d253a7722838" t="o" /> -<objsur guid="dc852959-b589-4bab-ba1e-e0eefb793305" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="3b6ae0e3-ee45-4c41-a35d-ef315d202309" ownerguid="995751ef-d71b-429c-a4ee-032f5b309bd7"> -<ExampleWords> -<AUni ws="en">man, woman, boy, girl</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to male and female people?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3b701784-2198-494c-97a4-63dfed50856f" ownerguid="7e8288eb-78e7-406e-aba6-b3b9ce712382"> -<Form> -<AUni ws="qvm-x-ach">wata</AUni> -<AUni ws="qvm-x-acl">wata</AUni> -<AUni ws="qvm-x-akh">wata</AUni> -<AUni ws="qvm-x-akl">wata</AUni> -<AUni ws="qvm-x-ame">wata</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="3b734f1e-083d-42c4-b4ef-5b03e13e3525"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">palanga:nu</AUni> -<AUni ws="qvm-x-acl">palanga:nu; palanga:nu; palanga:no</AUni> -<AUni ws="qvm-x-akh">palanga:nu</AUni> -<AUni ws="qvm-x-akl">palanga:nu; palanga:nu; palanga:no</AUni> -<AUni ws="qvm-x-ame">palanga:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+palangano</AUni> -<AUni ws="qvm-x-acl">+palangano</AUni> -<AUni ws="qvm-x-akh">+palangano</AUni> -<AUni ws="qvm-x-akl">+palangano</AUni> -<AUni ws="qvm-x-ame">+palangano</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.666" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7b07f850-6071-440d-9e69-56575d38a83a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+palangano</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8e15ab9f-d4e7-49b7-93ad-70ad2e68fdaf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5567d858-a80f-458e-afb2-d67e30f025f3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +palangano 
\entryTyp root 
\gENG 
\gSPN 
\e +palangano 
\c N0 
\ach palanga:nu 
\akh palanga:nu 
\acl palanga:nu / _# 
\acl palanga:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl palanga:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl palanga:nu / _# 
\akl palanga:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl palanga:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame palanga:nu 
\i PRO 26.12 Palangänu runaga mana tantyacog runapitapis mas peormi caycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="3b74df3a-cead-4977-9a17-85cbeea5f24e" ownerguid="3e48dcd9-21da-40ac-b0f9-1c0cb94ebcb5"> -<Form> -<AUni ws="qvm-x-ach">tsinca</AUni> -<AUni ws="qvm-x-acl">tsinca</AUni> -<AUni ws="qvm-x-akh">tsinka</AUni> -<AUni ws="qvm-x-akl">tsinka</AUni> -<AUni ws="qvm-x-ame">tsinka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="3b75c4bd-154f-4d71-83c0-4e2c8e373ad6" ownerguid="b5de92e2-0771-4446-b076-19342b7cc6cd"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="3b78aaca-f43b-47a2-9683-cd2b204e0987"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cocodrilu; cocodrilo</AUni> -<AUni ws="qvm-x-acl">cocodrilu; cocodrilu; cocodrilo</AUni> -<AUni ws="qvm-x-akh">cocodrilu; cocodrilo</AUni> -<AUni ws="qvm-x-akl">cocodrilu; cocodrilu; cocodrilo</AUni> -<AUni ws="qvm-x-ame">cocodrilu; cocodrilo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cocodrilo</AUni> -<AUni ws="qvm-x-acl">+cocodrilo</AUni> -<AUni ws="qvm-x-akh">+cocodrilo</AUni> -<AUni ws="qvm-x-akl">+cocodrilo</AUni> -<AUni ws="qvm-x-ame">+cocodrilo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.132" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0d5ae0a0-bd6d-49dc-8724-7e4434f38c67" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cocodrilo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d6aac5f6-5b79-45cb-ba68-43c0a238d407" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="14297c35-f1d2-4df0-83d8-105bc68ce83a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cocodrilo 
\entryTyp root 
\gENG 
\gSPN 
\e +cocodrilo 
\c N0 
\ach cocodrilu / ~_# 
\ach cocodrilo / _# 
\akh cocodrilu / ~_# 
\akh cocodrilo / _# 
\acl cocodrilu / ~_# 
\acl cocodrilu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cocodrilo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cocodrilu / ~_# 
\akl cocodrilu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cocodrilo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cocodrilu / ~_# 
\ame cocodrilo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3b79e58c-baa4-413c-b675-02c8bc50ae53" ownerguid="5b5bcd42-09bb-4c2f-a2da-569cfa69b6ac"> -<ExampleWords> -<AUni ws="en">pay attention, keep your mind on, take note, attentive, devote attention to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to paying attention?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3b839b9a-1650-430b-b2bf-cfcce59c96be" ownerguid="101c16f8-ec76-4ec7-895a-fd814fef51dd"> -<ExampleWords> -<AUni ws="en">diagnose, prognosis, draw/take a sample, examine a patient, take an x-ray, do a test, test for, lab report, take someone's temperature, take someone's blood pressure, take someone's pulse, check-up, take a sample, specimen</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to trying to find out what is wrong with a sick person?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3b865224-b301-4b5c-9a35-66084ace37ac" ownerguid="9120b0eb-edf6-429c-89f0-37b2d8c5a594"> -<Form> -<AUni ws="qvm-x-ach">menta</AUni> -<AUni ws="qvm-x-acl">menta</AUni> -<AUni ws="qvm-x-akh">menta</AUni> -<AUni ws="qvm-x-akl">menta</AUni> -<AUni ws="qvm-x-ame">menta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="3b89271c-e814-4082-96d4-e6acf5442ec9" ownerguid="125a1f7e-0ce6-4a29-ab84-ec4fb2278345"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 28.2 Wauguiqui Aarón respitädu cüra car jaticunanpag röpancunata ruratsinqui cuyaylapagta.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="3b89a05b-1ad5-443f-bf78-e56e3b26b95b" ownerguid="339d8e7a-d699-498d-afd3-9da240ba8565"> -<Form> -<AUni ws="qvm-x-ach">mashta</AUni> -<AUni ws="qvm-x-acl">mashta</AUni> -<AUni ws="qvm-x-akh">mashta</AUni> -<AUni ws="qvm-x-akl">mashta</AUni> -<AUni ws="qvm-x-ame">mashta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="3b8fd99c-a4f7-4f1f-b046-2d0649166611"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">acagya; acagya:</AUni> -<AUni ws="qvm-x-acl">acagya; acagya:</AUni> -<AUni ws="qvm-x-akh">akaqya; akaqya:</AUni> -<AUni ws="qvm-x-akl">akaqya; akaqya:</AUni> -<AUni ws="qvm-x-ame">akaqya; akaqya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*akaqya:</AUni> -<AUni ws="qvm-x-acl">*akaqya:</AUni> -<AUni ws="qvm-x-akh">*akaqya:</AUni> -<AUni ws="qvm-x-akl">*akaqya:</AUni> -<AUni ws="qvm-x-ame">*akaqya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.679" /> -<DateModified val="2022-10-10 21:18:47.215" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="db983b66-fc09-426a-8b67-3510483d9f6b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*akaqya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a86d8492-2702-4217-8291-bd473dd617f8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c85fad70-7ce9-434a-80e1-9b2b24c0d172" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *akaqya: 
\entryTyp root 
\gENG 
\gSPN 
\e *akaqya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach acagya foreshortened 
\ach acagya: 
\akh akaqya foreshortened 
\akh akaqya: 
\acl acagya foreshortened 
\acl acagya: 
\akl akaqya foreshortened 
\akl akaqya: 
\ame akaqya foreshortened 
\ame akaqya:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="3b8ff450-1ff2-4a1d-9e57-660fac19a719" ownerguid="e3935eec-43c6-49f3-a6ce-18a0de673428"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3b9054da-13ce-4128-bbd4-fea040f070e6" ownerguid="5261497b-6beb-4db1-9de2-10b5f6f8ec69"> -<ExampleWords> -<AUni ws="en">achieve, appear, arrive, attain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words indicate that some state has begun?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3b90c54e-d1ea-4663-9c74-32946a760a02" ownerguid="a51bee8c-209a-48e7-b26e-611645f3c4fb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">other.side</AUni> -<AUni ws="es">vuelta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="55cec91f-07f2-4291-948a-3f7383c9c918" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="3b913de5-6dfe-410d-ab77-8d0cf51b5314"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gaya</AUni> -<AUni ws="qvm-x-acl">gaya</AUni> -<AUni ws="qvm-x-akh">qaya</AUni> -<AUni ws="qvm-x-akl">qaya</AUni> -<AUni ws="qvm-x-ame">qaya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qaya</AUni> -<AUni ws="qvm-x-acl">*qaya</AUni> -<AUni ws="qvm-x-akh">*qaya</AUni> -<AUni ws="qvm-x-akl">*qaya</AUni> -<AUni ws="qvm-x-ame">*qaya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.165" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="77193f1c-38d9-409c-bb3e-5bd2c8d18060" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qaya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6c1f7a2e-0103-4d51-9cff-2a5a42e454dc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8ab815f7-c161-43c5-8511-a06978013227" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qaya 
\entryTyp root 
\gENG call 
\gSPN llamar 
\e *qaya 
\c R0 V2 
\ach gaya 
\akh qaya 
\acl gaya 
\akl qaya 
\ame qaya 
\mcc *qaya / ~_ PASS IMPFV1 1 COND</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="3b914428-8cc9-47af-9f9c-c2de114360c0" ownerguid="3541cb7e-e9be-47ca-8ba8-c47e860c9c46"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3b91ec57-ef8c-43a6-8237-6c7b35aaba32"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cachu</AUni> -<AUni ws="qvm-x-acl">cachu; cacho</AUni> -<AUni ws="qvm-x-akh">kachu</AUni> -<AUni ws="qvm-x-akl">kachu; kacho</AUni> -<AUni ws="qvm-x-ame">kachu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*katru.v</AUni> -<AUni ws="qvm-x-acl">*katru.v</AUni> -<AUni ws="qvm-x-akh">*katru.v</AUni> -<AUni ws="qvm-x-akl">*katru.v</AUni> -<AUni ws="qvm-x-ame">*katru.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.971" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fcb25243-3f49-4da4-9f29-a76e7e9d25e2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*katru.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="00a08be3-c28b-49cf-af75-372159774a46" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c747424d-4cf6-4390-8264-b80429c66bdc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *katru.v 
\entryTyp root 
\gENG chew 
\gSPN masticar 
\e *katru.v 
\c V2 
\ach cachu 
\akh kachu 
\acl cachu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl cacho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kachu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kacho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kachu</Run> -</AStr> -</Custom> -</rt> -<rt class="Segment" guid="3b9482d0-18ad-447d-ae2a-6c71cdaeb5c3" ownerguid="18a1e0e4-c4be-401d-9fe5-39f92714d4cd"> -<Analyses> -<objsur guid="8959b37f-207f-4770-b1d2-fad2be7e2575" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="CmDomainQ" guid="3b955d8b-1581-4a57-b7db-584903354c41" ownerguid="2daede19-ce5f-46b6-ae68-32d6092441f1"> -<ExampleWords> -<AUni ws="en">energy, vigor, get-up-and-go, vitality, vim and vigor, oomph</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the strength or ability to be energetic?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3b9639d5-fa4d-43bf-bb0f-72e150506e79" ownerguid="286ee16c-a218-43d5-bbac-ab15f80c3fcf"> -<ExampleWords> -<AUni ws="en">not have enough, can't afford, be strapped for cash</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to not having enough of something to do what you want?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a"> -<Form> -<Str> -<Run ws="qvm-x-akh">\</Run> -</Str> -</Form> -</rt> -<rt class="LexEntry" guid="3b970db0-5d31-4c00-bbc6-f7f38e0c620e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">vi:vu</AUni> -<AUni ws="qvm-x-acl">vi:vu</AUni> -<AUni ws="qvm-x-akh">vi:vu</AUni> -<AUni ws="qvm-x-akl">vi:vu</AUni> -<AUni ws="qvm-x-ame">vi:vu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vivo</AUni> -<AUni ws="qvm-x-acl">+vivo</AUni> -<AUni ws="qvm-x-akh">+vivo</AUni> -<AUni ws="qvm-x-akl">+vivo</AUni> -<AUni ws="qvm-x-ame">+vivo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.414" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bb95300a-5ff2-48b0-b772-aaf25a464305" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vivo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7e0a3d65-5cfd-40ce-bfd4-687c9b818e36" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6b980c6f-d710-4143-bb37-a7f72b4ed656" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vivo 
\entryTyp root 
\gENG alert 
\gSPN vivo 
\e +vivo 
\c ONSHEV 
\ach vi:vu 
\akh vi:vu 
\acl vi:vu 
\akl vi:vu 
\ame vi:vu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="3b986bd2-93d0-4ec5-b224-e94e21452077"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guechwa</AUni> -<AUni ws="qvm-x-acl">guechwa</AUni> -<AUni ws="qvm-x-akh">qechwa</AUni> -<AUni ws="qvm-x-akl">qechwa</AUni> -<AUni ws="qvm-x-ame">qichwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qitrwa</AUni> -<AUni ws="qvm-x-acl">*qitrwa</AUni> -<AUni ws="qvm-x-akh">*qitrwa</AUni> -<AUni ws="qvm-x-akl">*qitrwa</AUni> -<AUni ws="qvm-x-ame">*qitrwa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.216" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3aa7b922-02d7-440b-bfcb-802b78a52b9c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qitrwa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1c259d4a-a4b7-4881-ad9e-56c3959da548" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bb4a5c41-557a-4d0d-b3a5-c6c6f2085f45" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qitrwa 
\entryTyp root 
\gENG valley 
\gSPN valle 
\e *qitrwa 
\c N0 
\ach guechwa 
\akh qechwa 
\acl guechwa 
\akl qechwa 
\ame qichwa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="3b9bd1a8-c522-4272-81ec-ba43f3911dab" ownerguid="64d112a2-be5c-41c5-aa4c-2010afdb8fec"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="3b9d2d42-89df-48d6-96d3-5451f1bcf6df" ownerguid="d9d09b53-b951-4552-9639-20a9bce75091"> -<Category> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</Category> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="075b24d7-cec6-4ae5-a6c6-29b5b6577b58" t="o" /> -<objsur guid="1aa9ce88-3320-413f-8a0b-dbdbe8eb03c6" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="3b9dc8c6-3071-4da2-8677-e35c19a1f2bf" ownerguid="dbd3e164-3f70-4395-9728-1c24c8900da6"> -<ExampleWords> -<AUni ws="en">refrigerator, freezer, icebox, cupboard, pantry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What appliances are used to store food?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3ba50b69-1e06-4f92-b29c-845aeccfc0db" ownerguid="e6cb051b-48e9-4064-bc02-f73151dc0b7c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cross</AUni> -<AUni ws="es">cruz</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6b4664cd-d1b7-429e-9f31-0f07cc264168" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3ba53128-c324-4f8f-bbbd-1636bda4636c" ownerguid="6e04a3e2-3b3a-4d0b-bf71-1596ca0aa211"> -<ExampleWords> -<AUni ws="en">be careless, irresponsible</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is careless in his work?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3ba7b5a4-38b1-4107-a05e-b7d62e560880"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">recomendación; recomendacion</AUni> -<AUni ws="qvm-x-acl">recomendación; recomendacion</AUni> -<AUni ws="qvm-x-akh">recomendación; recomendacion</AUni> -<AUni ws="qvm-x-akl">recomendación; recomendacion</AUni> -<AUni ws="qvm-x-ame">recomendación; recomendacion</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+recomendación</AUni> -<AUni ws="qvm-x-acl">+recomendación</AUni> -<AUni ws="qvm-x-akh">+recomendación</AUni> -<AUni ws="qvm-x-akl">+recomendación</AUni> -<AUni ws="qvm-x-ame">+recomendación</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.307" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a5b55a99-ee42-47fa-b5ef-58ca6b789acc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+recomendación</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="679249a1-9dd9-44dd-b74c-52e401eba1fa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e753fc6d-65dc-4d03-b9de-10f51de496de" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +recomendación 
\entryTyp root 
\gENG reccomendation 
\gSPN recomendación 
\e +recomendación 
\c N0 
\mp +FinalC 
\ach recomendación / _# 
\ach recomendacion / ~_# 
\akh recomendación / _# 
\akh recomendacion / ~_# 
\acl recomendación / _# 
\acl recomendacion / ~_# 
\akl recomendación / _# 
\akl recomendacion / ~_# 
\ame recomendación / _# 
\ame recomendacion / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3ba98a3c-cb94-4470-a6c3-c1a455a038de" ownerguid="f0fb7da6-1307-40cf-910d-2a7a279934ed"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">muzzle</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a1534f8f-3582-41b9-b3c1-2e3f04b1b66a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="3ba9b660-33eb-4ab2-81b2-1ea05bfbdd91"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">monta:ña</AUni> -<AUni ws="qvm-x-acl">monta:ña</AUni> -<AUni ws="qvm-x-akh">monta:ña</AUni> -<AUni ws="qvm-x-akl">monta:ña</AUni> -<AUni ws="qvm-x-ame">monta:ña</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+montaña</AUni> -<AUni ws="qvm-x-acl">+montaña</AUni> -<AUni ws="qvm-x-akh">+montaña</AUni> -<AUni ws="qvm-x-akl">+montaña</AUni> -<AUni ws="qvm-x-ame">+montaña</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.475" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="22498fd7-23ff-4245-836a-d54b704df528" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+montaña</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="11d4dac7-0c21-4935-845f-aaacf54cd830" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ecffd965-8b83-4958-93d4-327927c43313" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +montaña 
\entryTyp root 
\gENG high.jungle 
\gSPN monta¤a 
\e +montaña 
\c N0 
\ach monta:ña 
\akh monta:ña 
\acl monta:ña 
\akl monta:ña 
\ame monta:ña</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="3baa9487-8ce5-4a20-bf39-eca59eea5dc9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bru:ja</AUni> -<AUni ws="qvm-x-acl">bru:ja</AUni> -<AUni ws="qvm-x-akh">bru:ja</AUni> -<AUni ws="qvm-x-akl">bru:ja</AUni> -<AUni ws="qvm-x-ame">bru:ja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bruja</AUni> -<AUni ws="qvm-x-acl">+bruja</AUni> -<AUni ws="qvm-x-akh">+bruja</AUni> -<AUni ws="qvm-x-akl">+bruja</AUni> -<AUni ws="qvm-x-ame">+bruja</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.989" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bcb9a1bf-60d4-4a95-bc2a-3103fbd04821" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bruja</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="69f61779-9849-476f-830e-51fc0c69cba9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="de056be0-6e8f-4e31-ad6b-2fcdff0ad874" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bruja 
\entryTyp root 
\gENG 
\gSPN 
\e +bruja 
\c N0 
\ach bru:ja 
\akh bru:ja 
\acl bru:ja 
\akl bru:ja 
\ame bru:ja</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="3bad396c-96e2-4fb7-a07f-c81731474e03" ownerguid="e3447274-2d76-4d2d-bc29-2000cc94760a"> -<Form> -<AUni ws="qvm-x-ach">cashu</AUni> -<AUni ws="qvm-x-acl">cashu; cashu; casho</AUni> -<AUni ws="qvm-x-akh">kashu</AUni> -<AUni ws="qvm-x-akl">kashu; kashu; kasho</AUni> -<AUni ws="qvm-x-ame">kashu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3bae45d6-f0d1-44f8-bfac-b627f370f68a" ownerguid="00cf30ee-24b0-4e3d-b186-9bc1ef75c50d"> -<Form> -<AUni ws="qvm-x-ach">auquis</AUni> -<AUni ws="qvm-x-acl">auquis</AUni> -<AUni ws="qvm-x-akh">awkis</AUni> -<AUni ws="qvm-x-akl">awkis</AUni> -<AUni ws="qvm-x-ame">awkis</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="3bb512aa-49a6-491c-9fcc-d819cb8e516b" ownerguid="4ef76c70-68d7-49b1-a4a2-7b2e6c7ff89a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3bb65738-49b0-4369-8038-e714e91d10a9" ownerguid="b0e2635e-47c4-4995-942b-07f6635faf6f"> -<ExampleWords> -<AUni ws="en">collect honey</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to collecting honey?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3bbe3015-fa1c-49f3-9eeb-096fa0d66e1e" ownerguid="e45f9991-f49f-4c37-8646-11fced900bb0"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="3bbf9e45-c1f6-4a48-bfe9-a46ead84a7da" ownerguid="8946d237-a97c-4745-a03a-2c651f37aeb5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="3bbffc4d-2c8a-47cb-95c2-906cf6789761" ownerguid="3e501544-b8a2-428d-8d24-19efdcb9a2b8"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="3bc89f1d-dedb-410c-92d2-6d3aa2c30ea4" ownerguid="18e64269-5afa-4579-8789-72ad4940a2de"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="3bc93709-4070-4112-9476-86356295542a" ownerguid="80079656-7d30-4205-8db5-e55a469a0669"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="3bc961d1-9f4f-4f1b-ada7-b1e9a2928ea4" ownerguid="ac2e424b-6aee-4031-8864-7b3f4a6fb5a3"> -<Abbreviation> -<AUni ws="en">3.5.1.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to telling the truth.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33R Speak Truth, Speak Falsehood; 88E Honesty, Sincerity</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Tell the truth</AUni> -</Name> -<Questions> -<objsur guid="b102a10b-358f-415c-914a-1272c83cfb86" t="o" /> -<objsur guid="635f738f-5c2b-495d-914d-b7601df80ef0" t="o" /> -<objsur guid="7114a74b-71ae-4da1-a693-ad7651020613" t="o" /> -<objsur guid="dc6be838-61c3-438c-bc9e-75d60d761c86" t="o" /> -<objsur guid="e68529ed-bb50-40d0-8e96-ab04367d37a0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="3bc98df1-f7ae-40e7-acab-ffed89ca63ef" ownerguid="db4d08c6-10bb-4f11-91c0-6b4949c9c7ea"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PhEnvironment" guid="3bc9aba3-0585-4f44-806b-3ed4184ffa92" ownerguid="be765e3e-ea5e-11de-9d42-0013722f8dec"> -<Name> -<AUni ws="en">after i</AUni> -</Name> -<StringRepresentation> -<Str> -<Run underline="none" ws="qvm-x-akh">/i_</Run> -</Str> -</StringRepresentation> -</rt> -<rt class="CmDomainQ" guid="3bcfb533-f297-4100-be92-90b51cef37d3" ownerguid="3fbe3ea6-3ad3-430f-ab67-2d9c9f852c61"> -<ExampleWords> -<AUni ws="en">Go! Now!</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What do you say when you want someone to start doing something now?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3bd6d449-e91e-40d2-ad65-dcb830cb4cbc" ownerguid="012d29ee-971b-4a9d-9b09-3561fc71c81d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">DO</AUni> -<AUni ws="es">HACER</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1b3c6562-1662-468e-b5c0-fcf36256167d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3bd94625-eb4c-42ca-8b39-24ac43f95770" ownerguid="91913920-8a6a-4ba0-9361-d6cc9e1f3639"> -<ExampleWords> -<AUni ws="en">body, chassis</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the main part of something?</AUni> -</Question> -</rt> -<rt class="PhBdryMarker" guid="3bde17ce-e39a-4bae-8a5c-a8d96fd4cb56" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="be97bf02-ea5e-11de-9f9d-0013722f8dec" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">Morpheme boundary</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">+</AUni> -<AUni ws="qvm-x-ach">+</AUni> -</Name> -</rt> -<rt class="LexSense" guid="3be1ca85-b88d-4a28-8c13-da4f9c441262" ownerguid="32092595-7c2a-4740-a8aa-8df5f4af5540"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">izula</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6323142c-3503-4a38-b05b-e9253e04ec57" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3be48dbd-cf40-40f1-a9d7-668973368f17" ownerguid="ad7cc381-1dc6-4fc2-94a4-acd5bf7a11da"> -<ExampleWords> -<AUni ws="en">can't go wrong, be a dead cert, it's in the bag, it's a safe bet, it's a sure bet, foolproof</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that something will certainly succeed?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3be6393e-5823-46cc-af78-38b5413569d0" ownerguid="c0f4715e-55c9-4379-ab6f-ad561a5e7151"> -<ExampleWords> -<AUni ws="en">believer, follower</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a person who believes?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="3be6a502-f105-45f7-bdf8-0872885ae1d5" ownerguid="bc7eecb3-e6fc-4278-a8e3-cfcd6f87472a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">AMO 2.13 Muytipaylapa cargashga aywaycag carrëta pampata panatashgannogmi ushacätsishayqui.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="3be7e3fe-89d4-471a-92bd-8c70fcb146bb" ownerguid="c2dbe83a-d638-45ac-a6d5-5f041b9dde71"> -<Abbreviation> -<AUni ws="en">2.5.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.47" /> -<DateModified val="2022-9-23 16:55:8.47" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being deaf.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Deaf</AUni> -</Name> -<Questions> -<objsur guid="f9e57dc7-d5fc-4959-a3bf-7512a6069495" t="o" /> -<objsur guid="44f21db6-de71-4a1d-885e-9b8e5ba594f9" t="o" /> -<objsur guid="a5c3edd5-2f07-4d21-b49a-c7c34d1f62be" t="o" /> -<objsur guid="bb06edb5-107f-48dc-9816-ed4c91742bd8" t="o" /> -<objsur guid="e709dab6-0787-4e46-b077-de61b0d3af91" t="o" /> -<objsur guid="99574527-ffce-4857-9617-38aba5877a81" t="o" /> -<objsur guid="5c100f8a-4a0a-49ab-ac7d-b298ae52c77c" t="o" /> -<objsur guid="9cd65a41-9d6e-4d42-957c-1f5f93f48ddc" t="o" /> -<objsur guid="2e17700d-27ba-4240-9b75-616832f1b352" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="8503660c-03af-49ee-86b6-525aab4da828" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="3bec5d36-0630-4df1-8647-20f18b1586ad" ownerguid="fcc4ce3e-c994-4dfd-b404-ff9f6196a9d6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">die</AUni> -<AUni ws="es">morir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="52c4e986-5fd0-4705-87fe-8ddc628aff31" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="3becf137-bfe0-4485-874d-d6f4d9d6b7ca" ownerguid="40d540ef-2338-410e-af93-f9bf69cd4892"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="3bf0b3c4-5ce6-4ff9-b632-a53722625a70" ownerguid="db8e775d-498e-4d81-a4bc-892e50922bf9"> -<Form> -<AUni ws="qvm-x-ach">säpu</AUni> -<AUni ws="qvm-x-acl">säpu; säpu; säpo</AUni> -<AUni ws="qvm-x-akh">säpu</AUni> -<AUni ws="qvm-x-akl">säpu; säpu; säpo</AUni> -<AUni ws="qvm-x-ame">säpu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="3bf16545-84d5-4261-aa5e-c9c915f156bf" ownerguid="f068e266-e8ea-4671-934f-17929e749315"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a3428ad4-e052-4bdf-93a8-30329ec06ade" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="3bf739c7-a3e8-4617-a150-022fe7633fb5" ownerguid="baa72d83-f62b-499e-af40-5d41c39a9499"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="3c010d2f-d6a9-4f68-8347-20040e4a7966" ownerguid="fea3c863-afd1-40af-aabe-51dfe7dda361"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="e62cb8cf-ade7-4857-afaa-fbc786b9eb33" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">weak.concentration</AUni> -<AUni ws="es">poco.cargado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1ff9fb9a-ad87-44b7-8cd7-a60bb16d9c1f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3c018890-6bbb-42ea-a6bc-504fb245314c" ownerguid="8e11dd10-459b-4fb3-b876-7d80ec5f8a4d"> -<ExampleWords> -<AUni ws="en">behave, act, conduct yourself, be, acquit yourself, bear, comport, deal, deport, devote, lead, live, occupy, order your steps, practice</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to behaving in a particular way?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3c051b0c-97a4-4680-b3ba-aa6357c46647" ownerguid="b2a97d92-6ce6-4640-93e4-c81eab5e885a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="34065c6e-7501-4f7e-8ce2-05fbe1e3aa08" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="07cb0f34-d7b8-45b9-8c44-d0e26fa672b6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="3c07409c-a60a-47ad-902f-c387b92ed5b6" ownerguid="716ec168-e053-46af-8a2a-ddaea677f7be"> -<Form> -<AUni ws="qvm-x-ach">shucuta</AUni> -<AUni ws="qvm-x-acl">shucuta</AUni> -<AUni ws="qvm-x-akh">shukuta</AUni> -<AUni ws="qvm-x-akl">shukuta</AUni> -<AUni ws="qvm-x-ame">shukuta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3c07497e-cd3c-4ae5-a267-e3a66d2fad9a" ownerguid="6137239a-b469-46be-b7cb-b9ac22fcc195"> -<ExampleWords> -<AUni ws="en">teach, educate, instruct, lecture, edify, tutor, coach, inform, indoctrinate, infuse, instill</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to teaching?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="3c0850d0-c78e-4db8-a80f-67e08c090862" ownerguid="258864e5-cd2f-4494-827e-b4bfe8140288"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="82e9c3df-e95c-44d6-998d-f3779aad6808" t="r" /> -</Morph> -<Msa> -<objsur guid="1b3c6562-1662-468e-b5c0-fcf36256167d" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="3c09226f-6a85-4445-a137-346690358d3f" ownerguid="95fb6952-8926-4e83-813f-bdb285dc48d3"> -<Form> -<AUni ws="qvm-x-ach">sachu</AUni> -<AUni ws="qvm-x-acl">sachu; sachu; sacho</AUni> -<AUni ws="qvm-x-akh">sachu</AUni> -<AUni ws="qvm-x-akl">sachu; sachu; sacho</AUni> -<AUni ws="qvm-x-ame">sachu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3c0a1551-fc93-4785-8f01-caa0f781b092" ownerguid="5c35c2f8-d17c-42a3-aa12-a4c29b6603e8"> -<ExampleWords> -<AUni ws="en">bendable, flexible, flexibility, jointed, pliable, plastic, supple</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe something that can be bent?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3c0e62d3-e706-4e9e-9683-4d15dae6bd2d" ownerguid="b4fe4698-54a2-4bcd-9490-e07ee1ee97af"> -<ExampleWords> -<AUni ws="en">wipe away, dry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What do people do to tears?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3c0e7568-963b-4d3d-bfc0-392fde95cbff" ownerguid="cb48de57-4fef-47d8-8989-397a6bc6377a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">slap</AUni> -<AUni ws="es">sopapear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7e8761e6-2b75-48b7-9809-94ed790d4e2f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3c0e84a8-ca22-4ff3-bcfd-068535fe23e0" ownerguid="0e79435b-f5ff-4061-81ff-49557ba2aed4"> -<ExampleWords> -<AUni ws="en">relate to, associate with, affiliate with, participate with, partner with, fellowship with, interact with, be acquainted with, work with, collaborate, have a relationship, going together, going out, going steady</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the process of relating to other people?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3c0eedde-c3be-4880-8014-a7c6a257718c" ownerguid="bd02e853-2252-4134-ae55-3629fc6d5e3e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">understand</AUni> -<AUni ws="es">comprender</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d0a52214-0f44-4bd8-afa2-376ea2bd2078" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="3c12ad51-8643-4ba6-bac4-36f356f2393f" ownerguid="de332ef3-655b-40b5-829c-a551d40dec89"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/N0 V2/N0 N0/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">PRT1</AUni> -<AUni ws="es">PRT1</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3503ea2c-6d6a-40bd-ab49-d2f29a6d368a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="3c130521-28d4-40bb-abbd-e5a2e8445814"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">patga</AUni> -<AUni ws="qvm-x-acl">patga</AUni> -<AUni ws="qvm-x-akh">patqa</AUni> -<AUni ws="qvm-x-akl">patqa</AUni> -<AUni ws="qvm-x-ame">patqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*patqa</AUni> -<AUni ws="qvm-x-acl">*patqa</AUni> -<AUni ws="qvm-x-akh">*patqa</AUni> -<AUni ws="qvm-x-akl">*patqa</AUni> -<AUni ws="qvm-x-ame">*patqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.759" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="188275bb-7309-4cb6-92d9-6f7aa9a1273b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*patqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b4e57a46-db12-4f4e-a584-82a731356d5c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5e5642e9-f6cd-4361-a3a5-614947a7f8e7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *patqa 
\entryTyp root 
\gENG 
\gSPN ? 
\e *patqa 
\c V1 
\ach patga 
\akh patqa 
\acl patga 
\akl patqa 
\ame patqa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3c16084e-4bc7-4332-b7e0-18abdfd61df4" ownerguid="243da013-7072-4095-b32f-b46a0b2fc109"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="9ca837a5-9f76-4d02-b96c-8a9deedea996" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="3c1cc1ec-4c1a-448b-aa8f-46a733353db0" ownerguid="75e7846d-d21f-4ea3-94ce-80b724644bb4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="41514485-be31-4102-9d53-571c193cbc03" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="4a7d372e-1f9c-46cb-aceb-4dd390217a4a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="3c1d829d-0ad2-4b50-9886-df081a7bfe33" ownerguid="607b1ccf-f64f-419e-b568-d649439bcec7"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="d3822147-5713-4cf0-bbc7-5278307c9640" t="o" /> -<objsur guid="6d4e96a9-17b2-421d-924a-e2e5a3c8ff54" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="3c1eef95-6710-499d-aded-43acaf255992" ownerguid="608cf9b0-b9df-47d6-aec9-7d429c877173"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">piled</AUni> -<AUni ws="es">amontonado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7b29a93f-ed97-459d-b2d3-2d5521d2cd4f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="3c214122-30c6-40c6-b947-3d5bc49434f8" ownerguid="08bcc187-08e4-4016-89a3-73c45fda9f3d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">free</AUni> -<AUni ws="es">libre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fa68f188-7930-4082-ba7d-a19510405afa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="3c214f4f-39dd-44d7-b39d-5d2739bf6748" ownerguid="4386a7fb-da26-446f-a1ef-827ce0f78951"> -<Form> -<AUni ws="qvm-x-ach">canëla</AUni> -<AUni ws="qvm-x-acl">canëla</AUni> -<AUni ws="qvm-x-akh">canëla</AUni> -<AUni ws="qvm-x-akl">canëla</AUni> -<AUni ws="qvm-x-ame">canëla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="3c2402c4-9bc3-4ecb-a75b-f791f8e66771" ownerguid="8af43f48-e883-435a-8de5-26175fbbae18"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 7.6 Nogapa vïdä caycan telarcho awag runa lansadërata rasla pasatsegnogmi.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="3c257201-65a4-4e60-85dd-9fe11b052aaa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nqui</AUni> -<AUni ws="qvm-x-acl">nqui; nqui; nque</AUni> -<AUni ws="qvm-x-akh">nki</AUni> -<AUni ws="qvm-x-akl">nki; nki; nke</AUni> -<AUni ws="qvm-x-ame">nki</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.607" /> -<DateModified val="2022-10-16 14:8:28.883" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eefb29ad-f416-4367-b09c-bb45b5e9cf21" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0d90ca1d-7b60-41a3-a022-dba460606a1c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="08cdcf68-e555-46a8-9801-1003a592bece" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx 2 
\entryTyp suffix 
\gENG 2 
\gSPN 2 
\e 2 
\c V1/V0 
\o 120 
\mp +foreshortens 
\ach nqui 
\akh nki 
\acl nqui / _# 
\acl nqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl nque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl nki / _# 
\akl nki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl nke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame nki 
\mp +FinalI</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3c25c524-e141-448d-a1bb-9b183fec6aad" ownerguid="3620d0a2-cf9f-4f8f-8efb-10a74b607d69"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">?</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="141a83f7-cf8d-4a39-85bc-26602b3ed140" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3c2e85ea-4e64-4118-bbc4-321338efe50e" ownerguid="36e8f1df-1798-4ae6-904d-600ca6eb4145"> -<ExampleWords> -<AUni ws="en">run away, run off, bolt, run for it, make a run for it, take to your heels, scatter, run for your life</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to running away from someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3c2fe35e-5777-48a5-aad5-681cf561d9c8" ownerguid="f2a599c6-6343-4246-8847-446bb3b0bd21"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3c31683d-1c33-48e5-a2f6-8d614c363c4d" ownerguid="286ee16c-a218-43d5-bbac-ab15f80c3fcf"> -<ExampleWords> -<AUni ws="en">do enough, sufficiently, adequacy, adequately, satisfactorily, sufficiency</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a situation in which someone does enough or something happens enough?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3c35974b-1190-4bbf-8045-def89d3f1c73" ownerguid="330e710d-59ea-44c1-932d-f01134b35715"> -<Form> -<AUni ws="qvm-x-ach">almacen</AUni> -<AUni ws="qvm-x-acl">almacen</AUni> -<AUni ws="qvm-x-akh">almacen</AUni> -<AUni ws="qvm-x-akl">almacen</AUni> -<AUni ws="qvm-x-ame">almacen</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3c380b03-5c35-4d94-883d-ad4af821199d" ownerguid="c38569e1-858a-43c7-b482-36188effe39a"> -<Form> -<AUni ws="qvm-x-ach">setiembri; setiembre</AUni> -<AUni ws="qvm-x-acl">setiembri; setiembri; setiembre</AUni> -<AUni ws="qvm-x-akh">setiembri; setiembre</AUni> -<AUni ws="qvm-x-akl">setiembri; setiembri; setiembre</AUni> -<AUni ws="qvm-x-ame">setiembri; setiembre</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="3c3b383d-2e6d-40de-8d0e-5bf2cbab3a98" ownerguid="f3306815-e47c-4345-9ccd-b85729375237"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">axe</AUni> -<AUni ws="es">hacha</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="96a32bc8-2d08-4819-b53c-11452cca5f5f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3c3b6297-7418-44e2-98c5-9f1fbfa59876" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<ExampleWords> -<AUni ws="en">get bigger, expand, grow, swell up, stretch, inflate, increase in size, swell, mushroom</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something becoming big?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3c3c1fcb-c505-4402-a96e-f3506b3a7d61" ownerguid="3240f52a-83c8-47b9-8a94-a99be0956bbc"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3c404755-b77f-4de9-842b-d323af1fd1ca"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cupllu</AUni> -<AUni ws="qvm-x-acl">cupllu; cupllu; cupllo</AUni> -<AUni ws="qvm-x-akh">kupllu</AUni> -<AUni ws="qvm-x-akl">kupllu; kupllu; kupllo</AUni> -<AUni ws="qvm-x-ame">kupllu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kupllu</AUni> -<AUni ws="qvm-x-acl">*kupllu</AUni> -<AUni ws="qvm-x-akh">*kupllu</AUni> -<AUni ws="qvm-x-akl">*kupllu</AUni> -<AUni ws="qvm-x-ame">*kupllu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.13" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="037e2e5d-b194-4e93-9b84-fc0eed43c0ff" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kupllu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c04bad9f-ac61-4a2f-bdb2-9a05bae18f02" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a2adc8a5-885f-4920-81b1-fb4df2f7cb16" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kupllu 
\entryTyp root 
\gENG twig 
\gSPN ? 
\e *kupllu 
\c N0 
\ach cupllu 
\akh kupllu 
\acl cupllu / _# 
\acl cupllu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cupllo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kupllu / _# 
\akl kupllu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kupllo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kupllu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3c4070a4-5950-4cfb-b3c3-d61cfec1fc20" ownerguid="ed7930df-e7b4-43c9-a11a-b09521276b57"> -<ExampleWords> -<AUni ws="en">odorless, inodorous, inodorousness, scentless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What words describe something that has no smell?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3c40ff6f-f0d4-404f-9329-7c8118a2fcda" ownerguid="2810998c-d6cc-47a3-a946-66d0986a2767"> -<ExampleWords> -<AUni ws="en">move, transfer, transport, shift, relocate, shunt, conduct, convey</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3c4527b4-a029-40a7-9add-09c8eda05dc1" ownerguid="c9256e98-8692-452c-b447-26bd4d3a67c6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fly</AUni> -<AUni ws="es">mosca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="39379449-fae6-48f9-a06f-e6c26329204b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3c45adda-b5ba-4eac-8b02-0a9a2b2e64e0" ownerguid="65bb0844-9a71-4eec-9b86-bf4b4b508a28"> -<ExampleWords> -<AUni ws="en">cry for help, rise to the occasion, respond, take action, deal with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What does a person do when he is in trouble?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3c45e3e4-7785-4763-9f6a-f3398b5c9a9e" ownerguid="6a6f0748-a6e9-4d64-b14e-543bb6ec2ec8"> -<ExampleWords> -<AUni ws="en">unusual, abnormal, exceptional, aberrant, peculiar, unnatural, eccentric, uncommon, rare, unique, odd, strange, queer, quaint, original, unconventional, weird</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a person who is not like most other people?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3c472965-ae3b-421d-9e73-51fdeb07d571" ownerguid="5f726266-21e9-467f-a6b6-9513c54958c4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3c4f3090-5820-46cb-a89e-51307ed69e00"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">calca</AUni> -<AUni ws="qvm-x-acl">calca</AUni> -<AUni ws="qvm-x-akh">kalka</AUni> -<AUni ws="qvm-x-akl">kalka</AUni> -<AUni ws="qvm-x-ame">kalka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kallka</AUni> -<AUni ws="qvm-x-acl">*kallka</AUni> -<AUni ws="qvm-x-akh">*kallka</AUni> -<AUni ws="qvm-x-akl">*kallka</AUni> -<AUni ws="qvm-x-ame">*kallka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.910" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a860f584-d611-436f-b202-0fe70c8bae88" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kallka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="68d0bf24-3cd0-4612-9d02-e633fea20ef4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="71c49268-6b01-40b3-a2bd-7c8202b327dd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kallka 
\entryTyp root 
\gENG swell 
\gSPN inca 
\e *kallka 
\c N0 
\ach calca 
\akh kalka 
\acl calca 
\akl kalka 
\ame kalka</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3c50b9b2-b6ba-4997-bb43-277259316291" ownerguid="2c42f822-2079-440c-b3b7-7725b6a8db8b"> -<ExampleWords> -<AUni ws="en">end (something), stop (something), stanch (flow of blood), obstruct (justice), arrest (progress), halt (traffic), impede (progress), inhibit (flow), delay (someone/event), hold up (traffic), detain (someone), discontinue (product), suspend (action), terminate (someone's life), conclude (story), cease (hostilities), desist from (doing something), bring closure to (something), curtail</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words (transitive verbs) indicate that someone is stopping something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3c51f6bd-01a5-401e-a90d-c632f094d50b" ownerguid="8e861786-8f47-4019-9f59-fcb9e5e65c7f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="a95c38c1-9f7a-4da9-8dfb-d73a55a21eba" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">mistreat</AUni> -<AUni ws="es">maltratar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fe04128e-533e-4d69-b06b-59f515cc38ce" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="3c549735-95e1-4af3-ab1f-e0d8f93f4297"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shawata</AUni> -<AUni ws="qvm-x-acl">shawata</AUni> -<AUni ws="qvm-x-akh">shawata</AUni> -<AUni ws="qvm-x-akl">shawata</AUni> -<AUni ws="qvm-x-ame">shawata</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shawata</AUni> -<AUni ws="qvm-x-acl">*shawata</AUni> -<AUni ws="qvm-x-akh">*shawata</AUni> -<AUni ws="qvm-x-akl">*shawata</AUni> -<AUni ws="qvm-x-ame">*shawata</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.561" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5946eea1-4944-492b-8179-bc921413dd7b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shawata</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2dc01132-0b36-4620-9b68-4bb310ceaf1d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b19f1030-aa45-4184-996e-bc5edc3201c9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shawata 
\entryTyp root 
\gENG carry 
\gSPN llevar 
\e *shawata 
\c V2 
\ach shawata 
\akh shawata 
\acl shawata 
\akl shawata 
\ame shawata</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3c55dbf8-8d69-4f05-976f-8f5546cfb367" ownerguid="987fc4a4-4519-4253-9e50-58f06d10962b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wait</AUni> -<AUni ws="es">esperar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="41352f09-57dc-427e-80db-51b0f2153ec5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="3c56470e-48bb-4dfa-8d35-f7b53a85e53e" ownerguid="dd94f79c-59a2-494e-a056-52e326dafc39"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">proud</AUni> -<AUni ws="es">orgulloso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1ae9aade-fecc-400a-bf1a-fa66355225e5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="3c57a5cc-61bc-4348-8c32-6dc77c827177" ownerguid="c97341c5-219d-4458-ad38-384b875d43d4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">grab</AUni> -<AUni ws="es">agarrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="95b11bcc-acc0-40db-ae9a-b51adb17c3ca" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="3c58ac69-5ba3-46c2-b028-3a8983d93ab1" ownerguid="00bbedc3-7d9d-42e4-a331-13882d44a401"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pasa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pasa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pasa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pasa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pasa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="883ada6f-0bf2-4887-9c50-61a9cb250b4c" t="r" /> -</Morph> -<Msa> -<objsur guid="b7f64f45-98d1-4eac-9cd3-956bf92b1494" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="3c5d80ea-1524-4062-a90b-d1cd1cbe067d" ownerguid="eb00b4c2-5b87-4ef8-9548-800fc5c9b524"> -<ExampleWords> -<AUni ws="en">wear away, wear out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to using something for a long time until it is damaged?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3c6009e9-ffe3-409b-8dab-14c6bd2c2231" ownerguid="91616394-52c4-4ca9-9e66-b84073930186"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3c602e0d-86f5-4b0a-8c5c-89f61df3cfa8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ayu:nu</AUni> -<AUni ws="qvm-x-acl">ayu:nu; ayu:nu; ayu:no</AUni> -<AUni ws="qvm-x-akh">ayu:nu</AUni> -<AUni ws="qvm-x-akl">ayu:nu; ayu:nu; ayu:no</AUni> -<AUni ws="qvm-x-ame">ayu:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ayuno</AUni> -<AUni ws="qvm-x-acl">+ayuno</AUni> -<AUni ws="qvm-x-akh">+ayuno</AUni> -<AUni ws="qvm-x-akl">+ayuno</AUni> -<AUni ws="qvm-x-ame">+ayuno</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.910" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="29364b21-16cf-45f8-843b-0e1306971799" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ayuno</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="702da3e4-8e47-4662-a5cc-0136259adf09" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7cbdac04-abeb-450c-988a-8f54ef8c3800" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ayuno 
\entryTyp root 
\gENG fast 
\gSPN 
\e +ayuno 
\c N0 
\ach ayu:nu 
\akh ayu:nu 
\acl ayu:nu / _# 
\acl ayu:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ayu:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ayu:nu / _# 
\akl ayu:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ayu:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ayu:nu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="3c61cce2-042c-4338-b08d-ecf2c0e3b271" ownerguid="9ba9f3ff-0c6e-466d-ad92-67c97b96fcb1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3c63967b-a6aa-4150-86ca-17f016d2dffe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">suedra</AUni> -<AUni ws="qvm-x-acl">suedra</AUni> -<AUni ws="qvm-x-akh">suedra</AUni> -<AUni ws="qvm-x-akl">suedra</AUni> -<AUni ws="qvm-x-ame">suedra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+suegra</AUni> -<AUni ws="qvm-x-acl">+suegra</AUni> -<AUni ws="qvm-x-akh">+suegra</AUni> -<AUni ws="qvm-x-akl">+suegra</AUni> -<AUni ws="qvm-x-ame">+suegra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.733" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9c84b0d7-347a-41f4-8777-e19188698650" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+suegra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aecaad50-2be5-4df2-9882-5fdc32055323" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cf6264a9-fd56-4235-b6b8-c5cb94d0b1f5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +suegra 
\entryTyp root 
\gENG mother.in.law 
\gSPN suegra 
\e +suegra 
\c N0 
\ach suedra 
\akh suedra 
\acl suedra 
\akl suedra 
\ame suedra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3c6401e9-5a4b-45c3-b6f7-9b931fcf49d2" ownerguid="7684c6b8-53d5-4553-a4f3-4c66dc531ddb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">niño</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4863d14d-5592-4aea-9fa5-dbe86dca14ad" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3c646b82-a414-451c-b795-407ceccc1fed" ownerguid="5db1b502-7c36-44fb-a7b4-50744e9ec286"> -<ExampleWords> -<AUni ws="en">tickle, pinch, crack a knuckle, hug, embrace</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What other actions are done with the hands?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3c665ac5-276c-43c9-bc2c-68340d430984" ownerguid="7ff4fa9d-4f87-4ec4-86de-dac7ed2b938f"> -<Form> -<AUni ws="qvm-x-ach">asuntu; asunto</AUni> -<AUni ws="qvm-x-acl">asuntu; asuntu; asunto</AUni> -<AUni ws="qvm-x-akh">asuntu; asunto</AUni> -<AUni ws="qvm-x-akl">asuntu; asuntu; asunto</AUni> -<AUni ws="qvm-x-ame">asuntu; asunto</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="3c684436-fa67-470d-97b4-d9e7c8ab0a3c" ownerguid="5ea4f6af-0125-4cdd-8a90-8a2d9089df5f"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="41f66d8b-5492-4015-a9fe-33f2c070472e" t="o" /> -<objsur guid="032b0ba1-8ce5-4742-87c7-741ad8e2c761" t="o" /> -<objsur guid="0aadf12f-f5a8-4234-88da-15e81b04c84d" t="o" /> -<objsur guid="e33bd5b0-9b34-43ef-bb02-dfed84fc43e8" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="3c688cf8-f038-44a9-8b9e-a753e64e0b59" ownerguid="a21b17d1-0ff3-4733-b4cf-57c6ad2793c0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3c68b033-ae44-4399-9ff8-4e9fdf44c32a" ownerguid="5ee64d88-c462-4505-b14a-5d36e357a024"> -<ExampleWords> -<AUni ws="en">top (adj), uppermost</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is on the top?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3c6cd50b-217f-4893-9554-bbe54ba6f883" ownerguid="673cbb74-543d-43d6-a3fc-8f6cb079080b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="8da144b6-16d7-4f3f-8a8d-e5ea9d69d7b9" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">drench</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="616f44da-a750-468c-b75b-4ea350d09615" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3c6f1958-0d22-4df1-b6de-4181faa74e7d" ownerguid="0656f6a7-9a88-4c03-a8ab-ace8c0f52ebf"> -<ExampleWords> -<AUni ws="en">have a child out of wedlock</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a woman having a child when she is not married?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3c703265-d19c-409a-aaa5-998654e5b1df"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tipsi</AUni> -<AUni ws="qvm-x-acl">tipsi; tipse</AUni> -<AUni ws="qvm-x-akh">tipsi</AUni> -<AUni ws="qvm-x-akl">tipsi; tipse</AUni> -<AUni ws="qvm-x-ame">tipsi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tipsi</AUni> -<AUni ws="qvm-x-acl">*tipsi</AUni> -<AUni ws="qvm-x-akh">*tipsi</AUni> -<AUni ws="qvm-x-akl">*tipsi</AUni> -<AUni ws="qvm-x-ame">*tipsi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.924" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="703e29d6-fe69-4868-a202-7b91273c505c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tipsi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e2fe312e-1b45-405d-84d8-06edf73d2e56" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8c04fb80-bf77-4c04-9a4f-ab4988d5d6b4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tipsi 
\entryTyp root 
\gENG pinch 
\gSPN pellizcar 
\e *tipsi 
\c V2 
\mp +FinalI 
\ach tipsi 
\akh tipsi 
\acl tipsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tipse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tipsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tipse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tipsi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="3c749405-26bc-49be-b227-5d2cad59d98a" ownerguid="87ed45e4-6cd1-4e9a-91c7-91462cc0663b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="3c75ec22-f1b9-4110-addf-c9606a0be82b" ownerguid="e42c8edc-9652-4701-ac07-13c5e831282c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3c774a89-7af1-4806-98e8-b0102f4a4aba"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quilla</AUni> -<AUni ws="qvm-x-acl">quilla</AUni> -<AUni ws="qvm-x-akh">killa</AUni> -<AUni ws="qvm-x-akl">killa</AUni> -<AUni ws="qvm-x-ame">killa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*killa</AUni> -<AUni ws="qvm-x-acl">*killa</AUni> -<AUni ws="qvm-x-akh">*killa</AUni> -<AUni ws="qvm-x-akl">*killa</AUni> -<AUni ws="qvm-x-ame">*killa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.983" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="67bac343-97bc-4bd0-81ac-a9c06cd55d74" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*killa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="25079657-7759-4f10-98b0-a2f3a4ce231e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="af824d61-9a01-4f40-9fa7-8b62fc94cbd6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *killa 
\entryTyp root 
\gENG moon 
\gSPN luna 
\e *killa 
\c N0 
\ach quilla 
\akh killa 
\acl quilla 
\akl killa 
\ame killa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3c790b4e-377d-44f5-848b-3497b8083ab8" ownerguid="eb81c747-0ebf-451c-8969-8474a94a4d47"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">find</AUni> -<AUni ws="es">encontrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a9dd4f2d-6697-44ce-b819-cccf7e979272" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="3c79b486-8b20-4231-a454-14779da278c6" ownerguid="8cd3d5a0-cbda-4ef0-a68c-ceb1f52a5612"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 24.3 Viüdapa buyintapis prenda tsaricurcun.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="3c7ac582-5a40-4654-9eac-fe6fd4733804" ownerguid="0aae0254-dc06-4906-8ecf-2d8450fb83f1"> -<ExampleWords> -<AUni ws="en">bed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the place where a person lies?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3c7ce2cc-5937-4e4f-9bf2-9e1c4348acdf" ownerguid="346c29e0-a7fe-4b47-b7f8-35cd5b35f4d9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">exert</AUni> -<AUni ws="es">esforzar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b5b16ddc-27b6-4f4c-be52-b965019a5ed7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="3c7e09d7-888d-4950-869f-c29aaf1a4364" ownerguid="ffe6d90a-c302-4d64-a075-c6efdb2caacd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ford</AUni> -<AUni ws="es">vado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5f033937-0a4e-4d74-939a-68a70aed197f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3c80533d-3116-4b57-914c-abc76c0042fd" ownerguid="b6686c7c-39de-40b5-adee-67fc7dc54374"> -<ExampleWords> -<AUni ws="en">the digits, the tens, hundreds, thousands, millions, billions, trillions</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words are used to refer to the numbers of a certain decimal place?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3c817644-55ca-4408-b143-dd56459c49d0" ownerguid="edc2c502-a452-425a-89e7-15c18d080f50"> -<Form> -<AUni ws="qvm-x-ach">maldición; maldicion</AUni> -<AUni ws="qvm-x-acl">maldición; maldicion</AUni> -<AUni ws="qvm-x-akh">maldición; maldicion</AUni> -<AUni ws="qvm-x-akl">maldición; maldicion</AUni> -<AUni ws="qvm-x-ame">maldición; maldicion</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="3c85553c-4669-4181-8ac6-ec4290e85a02" ownerguid="f9308afb-73bc-4444-a6bd-1a762dd98cdd"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1PE 3.6 Tsaynömi Sarapis runan Abrahamta cäsukushpan <<taytalä>> nir shumaq respëtuwan rikarqan.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="3c88d8fb-6d25-4ca0-acbb-a01a893dcfbb" ownerguid="d0a01de3-c88d-4904-91a9-9ea33ab82528"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="3c894d33-73d8-45a2-86e4-7d6483a8758c" ownerguid="bfd8c3e0-7007-40d5-856b-7f41e88d5397"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StStyle" guid="3c8c511b-4683-4289-88d0-024f66540f6f" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="7d2c80cd-af87-4d56-8337-cfd389b775bb" t="r" /> -</BasedOn> -<Context val="0" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Bulleted List</Uni> -</Name> -<Next> -<objsur guid="3c8c511b-4683-4289-88d0-024f66540f6f" t="r" /> -</Next> -<Rules> -<Prop bulNumScheme="101" bulNumStartAt="1" firstIndent="-9000" leadingIndent="21000"></Prop> -</Rules> -<Structure val="0" /> -<Type val="0" /> -<Usage> -<AUni ws="en">A bulleted list of paragraphs</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="CmDomainQ" guid="3c8e0062-8270-4546-8ca4-0033b81b6c9f" ownerguid="fa8e72a0-1bfe-4b49-a287-293b44213960"> -<ExampleWords> -<AUni ws="en">so that</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) purpose: the clause states the purpose for which the main clause action is taking place. Often called a "final" clause: 'He was saving his money so that his son could go to college'.</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3c8e1f29-b3ba-4c9e-b623-3ab1597dde13" ownerguid="cbf21710-d2f3-4284-ae07-9a3635ccde6b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">flute</AUni> -<AUni ws="es">flauta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e029ec88-2772-4fd1-a792-3dd4fe05df28" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="3c8eaf3d-757f-431d-9987-26115942e00e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yaycu</AUni> -<AUni ws="qvm-x-acl">yaycu; yayco</AUni> -<AUni ws="qvm-x-akh">yayku</AUni> -<AUni ws="qvm-x-akl">yayku; yayko</AUni> -<AUni ws="qvm-x-ame">yayku</AUni> -</Custom> -<AlternateForms> -<objsur guid="5dd3bb68-8b96-4402-aa83-49b3f4f12f2a" t="o" /> -</AlternateForms> -<CitationForm> -<AUni ws="qvm-x-ach">*yayku</AUni> -<AUni ws="qvm-x-acl">*yayku</AUni> -<AUni ws="qvm-x-akh">*yayku</AUni> -<AUni ws="qvm-x-akl">*yayku</AUni> -<AUni ws="qvm-x-ame">*yayku</AUni> -</CitationForm> -<DateCreated val="2022-09-23 18:26:24.780" /> -<DateModified val="2022-12-07 18:59:51.260" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f59345b0-7519-4965-909c-58e05ec8a078" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yayku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4be60c04-c8c8-4229-9590-6df57b3be008" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="477a00b7-d2cb-4571-9bd0-19ec0a08b76d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yayku 
\entryTyp root 
\gENG enter 
\gSPN entrar 
\e *yayku 
\c V1 
\ach yaycu 
\akh yayku 
\acl yaycu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl yayco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yayku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yayko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame yayku</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3c91ce2a-2980-40cd-a2e7-62b381a2086b" ownerguid="6c6259f0-eca6-4a30-8662-eedbaf293527"> -<ExampleWords> -<AUni ws="en">closed, close minded, rigid, inflexible, entrenched, reactionary, diehard, intransigent, have fixed ideas, stick in the mud</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe a person who refuses to change his mind?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3c9327ae-645a-408d-a5b0-e25edc3617b7" ownerguid="d0de0fe3-cb05-4d8b-9809-4ffb92099fdb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3c951962-45d2-46ac-b797-1042e9081ca0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">campeona:tu</AUni> -<AUni ws="qvm-x-acl">campeona:tu; campeona:tu; campeona:to</AUni> -<AUni ws="qvm-x-akh">campeona:tu</AUni> -<AUni ws="qvm-x-akl">campeona:tu; campeona:tu; campeona:to</AUni> -<AUni ws="qvm-x-ame">campeona:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+campeonato</AUni> -<AUni ws="qvm-x-acl">+campeonato</AUni> -<AUni ws="qvm-x-akh">+campeonato</AUni> -<AUni ws="qvm-x-akl">+campeonato</AUni> -<AUni ws="qvm-x-ame">+campeonato</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.390" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ca36a099-d6f1-4c77-ae86-57de3c10d9b2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+campeonato</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fb742c26-5a90-4bf6-add1-f80add8157bb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e6c9da09-3b80-4226-a26e-4364af4b24f0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +campeonato 
\entryTyp root 
\gENG championship 
\gSPN campeonato 
\e +campeonato 
\c N0 
\ach campeona:tu 
\akh campeona:tu 
\acl campeona:tu / _# 
\acl campeona:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl campeona:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl campeona:tu / _# 
\akl campeona:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl campeona:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame campeona:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3c96ed61-91cd-4c22-9899-c3c04c667490" ownerguid="59d6cf52-5c9a-4333-a6fb-8ee99d077dc1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.hard</AUni> -<AUni ws="es">estar.duro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="92cdd3e8-490c-4935-acd9-f0157f31cf1c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3c988773-bfcb-4142-b28f-b26ebcd30cf2" ownerguid="f2022802-4f43-4fa2-8c58-33a8b9e75895"> -<ExampleWords> -<AUni ws="en">turn up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to increasing what a machine is doing?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="3c9a1f95-f07d-4163-8149-ab0f7452262b"> -<Analyses> -<objsur guid="fb6840e2-11f3-434c-bb10-e35bbe7d80f1" t="o" /> -</Analyses> -<Checksum val="-887341378" /> -<Form> -<AUni ws="qvm-x-akh">aywapäkashqayki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="3c9dd0d1-805e-4451-87b9-000ebbef9354"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nista</AUni> -<AUni ws="qvm-x-acl">nista</AUni> -<AUni ws="qvm-x-akh">nista</AUni> -<AUni ws="qvm-x-akl">nista</AUni> -<AUni ws="qvm-x-ame">nista</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+necesitar.1</AUni> -<AUni ws="qvm-x-acl">+necesitar.1</AUni> -<AUni ws="qvm-x-akh">+necesitar.1</AUni> -<AUni ws="qvm-x-akl">+necesitar.1</AUni> -<AUni ws="qvm-x-ame">+necesitar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.547" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bb2918b3-e742-4043-9f70-c6d8bd0e8e46" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+necesitar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cad56e0b-e952-4e6c-af95-41145bf487a9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="98220c0d-27e5-47f4-95d9-b61043081a1d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +necesitar.1 
\entryTyp root 
\gENG need 
\gSPN necesitar 
\e +necesitar.1 
\c V2 
\mp -underlong 
\ach nista 
\akh nista 
\acl nista 
\akl nista 
\ame nista</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="3c9fe647-2647-4f43-8bac-7facc054f7ff" ownerguid="12fe5f6c-7f98-47ba-936a-bcd1065c2db3"> -<Abbreviation> -<AUni ws="en">7.2.2.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to moving back and forth.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>16 Non-Linear Movement</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Move back and forth</AUni> -</Name> -<Questions> -<objsur guid="5afe4e0c-f6db-4af9-b616-431470abb0e3" t="o" /> -<objsur guid="0ce62b8a-0df7-4c7f-99ab-e147af0e0539" t="o" /> -<objsur guid="e6f27d78-2179-4a6d-ada1-f179fb8c979d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="3ca10d5c-77d8-4b6c-8dad-a24807659aa6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wegti</AUni> -<AUni ws="qvm-x-acl">wegti; wegte</AUni> -<AUni ws="qvm-x-akh">weqti</AUni> -<AUni ws="qvm-x-akl">weqti; weqte</AUni> -<AUni ws="qvm-x-ame">wiqti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wiqti.v</AUni> -<AUni ws="qvm-x-acl">*wiqti.v</AUni> -<AUni ws="qvm-x-akh">*wiqti.v</AUni> -<AUni ws="qvm-x-akl">*wiqti.v</AUni> -<AUni ws="qvm-x-ame">*wiqti.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.676" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2f055da6-d716-43ca-8f71-f2d2cdd92afe" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wiqti.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dfeba437-d2d5-471f-b481-b4f48c973969" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="760a0281-8197-4780-b6f1-9af9867884fc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wiqti.v 
\entryTyp root 
\gENG 
\gSPN legañar 
\e *wiqti.v 
\c V1 
\mp +FinalI 
\ach wegti 
\akh weqti 
\acl wegti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wegte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl weqti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl weqte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wiqti</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3ca343f4-2bf0-45c7-a792-a71c3a49b4b6" ownerguid="09bf6181-150d-452c-9520-bed1b8a2d45c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hey</AUni> -<AUni ws="es">oye</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="81706936-959a-437a-b9ab-ae642908dd78" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="3ca36744-0455-4b97-b50d-974223966812" ownerguid="4cfcff0f-d396-4309-b67c-c7357facd62c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3ca50578-7cab-42f1-aada-779844ac936d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tuca</AUni> -<AUni ws="qvm-x-acl">tuca</AUni> -<AUni ws="qvm-x-akh">tuka</AUni> -<AUni ws="qvm-x-akl">tuka</AUni> -<AUni ws="qvm-x-ame">tuka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tocar.2</AUni> -<AUni ws="qvm-x-acl">+tocar.2</AUni> -<AUni ws="qvm-x-akh">+tocar.2</AUni> -<AUni ws="qvm-x-akl">+tocar.2</AUni> -<AUni ws="qvm-x-ame">+tocar.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.944" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="358dad69-ddfb-4c37-8854-e4f57d51c3c4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tocar.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0c879183-7046-4fd1-ae61-bd30cb68711e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c66801f1-af98-4cce-9a77-295c32f3091c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tocar.2 
\entryTyp root 
\gENG play 
\gSPN tocar 
\e +tocar.2 
\c V2 
\mp +assimilated KQWchange 
\ach tuca 
\akh tuka 
\acl tuca 
\akl tuka 
\ame tuka</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="3ca847fe-b27b-4f52-a0a5-f7ed5c193ad1" ownerguid="61cb6bcd-2767-4c9c-88b9-559308894147"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3ca98e61-5eaf-44ad-a8e1-7231a54c2912" ownerguid="349937e3-a2fd-41f8-b7c4-bd6fa106add4"> -<ExampleWords> -<AUni ws="en">flood (n), flood (v), flooding, inundate, deluge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to when the ground is covered by water?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3caa1177-bc11-4934-989b-567d7733ebe5" ownerguid="5c35c2f8-d17c-42a3-aa12-a4c29b6603e8"> -<ExampleWords> -<AUni ws="en">akimbo, askew, awry, bandy, catawampus, contorted, crooked, deviating, distorted, skewed, tortuous, warped</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that should be straight but is bent?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="3cad3ed9-564b-4ca8-bc0a-b437506eabb5"> -<Analyses> -<objsur guid="81622280-13ae-4f67-bf16-618e0d13abad" t="o" /> -</Analyses> -<Checksum val="-138694798" /> -<Form> -<AUni ws="qvm-x-akh">tsaymi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="3cad75a3-4f7c-41c2-9ee8-9ebb9e204238" ownerguid="3cb4c07c-8760-4ff9-8d45-1c0bed80ffb3"> -<ExampleWords> -<AUni ws="en">beget, begetting, begotten, impregnate, get (her) pregnant, father (v) a child, procreate, procreation, reproduce, sire, engender, generate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a man causing a woman to become pregnant?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3caec22c-0922-42d7-95bf-bfae42f09ffb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cla:va</AUni> -<AUni ws="qvm-x-acl">cla:va</AUni> -<AUni ws="qvm-x-akh">cla:va</AUni> -<AUni ws="qvm-x-akl">cla:va</AUni> -<AUni ws="qvm-x-ame">cla:va</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+clavar</AUni> -<AUni ws="qvm-x-acl">+clavar</AUni> -<AUni ws="qvm-x-akh">+clavar</AUni> -<AUni ws="qvm-x-akl">+clavar</AUni> -<AUni ws="qvm-x-ame">+clavar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.132" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8ee2c73d-60b0-4ca4-a630-cc8d58f9f69e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+clavar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bb1c1f9a-c0f7-4bef-a4b3-270f0c09607f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8d3ea0c7-042f-4428-b514-d183a2fdd277" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +clavar 
\entryTyp root 
\gENG to.nail 
\gSPN clavar 
\e +clavar 
\c V2 
\ach cla:va 
\akh cla:va 
\acl cla:va 
\akl cla:va 
\ame cla:va</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3caefd0e-977c-40aa-8c51-91b6dd98d23d" ownerguid="1133ad78-9ce9-46aa-b181-bb6f7a84a07b"> -<ExampleWords> -<AUni ws="en">approach, get near, get nearer, near (v), draw near, get close, get closer, close in on, get as close as possible</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to moving nearer to someone or something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3caf9fca-e1ea-4536-a6ed-689414758aa8" ownerguid="9fc25175-3b4a-4248-bc7f-b86012ec584f"> -<ExampleWords> -<AUni ws="en">fuel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the thing that is burned by a fire?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3cb21869-33d6-432a-b81b-144527c0a079" ownerguid="9d865347-6656-4ab7-8613-bf2e8bc53aa7"> -<ExampleWords> -<AUni ws="en">pull, strain, tear, cramp, spasm, convulsion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to injuring a muscle?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="3cb4c07c-8760-4ff9-8d45-1c0bed80ffb3" ownerguid="35e61ec4-0542-4583-b5da-0aa5e31a35aa"> -<Abbreviation> -<AUni ws="en">2.6.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being pregnant.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Pregnancy</AUni> -</Name> -<OcmCodes> -<Uni>843 Pregnancy; 842 Conception</Uni> -</OcmCodes> -<Questions> -<objsur guid="3cad75a3-4f7c-41c2-9ee8-9ebb9e204238" t="o" /> -<objsur guid="5b34ff73-7fe6-46bc-8106-7fcdb81536ba" t="o" /> -<objsur guid="170e283c-15df-4e14-868c-4ba3ae547f83" t="o" /> -<objsur guid="42ec6e2d-2bc4-44e3-9b0c-9bd30177303b" t="o" /> -<objsur guid="025f80eb-67fd-4d33-a8ca-9e55a2cfda8b" t="o" /> -<objsur guid="4dea33ba-dc32-44b7-b42b-0abf8d17bb53" t="o" /> -<objsur guid="10ae3166-5ee5-4a33-9a9c-071b55a7f68d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="3cb83e74-a33e-4e2a-a375-45c3007c271e" ownerguid="308fd07a-ac84-4a5d-900a-d0add146512b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="5e4c11d8-63d3-417e-872b-f77990e57282" t="o" /> -<objsur guid="70169d61-bc45-4823-a16f-b1ab206ce7a6" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="3cba6442-a533-450e-89ca-da92c7240ad0" ownerguid="ef9cab13-702b-495f-8238-5a15e69b0bd4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3cbc6885-f099-454f-a0c3-ebbb708e04f6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">felfa</AUni> -<AUni ws="qvm-x-acl">felfa</AUni> -<AUni ws="qvm-x-akh">felfa</AUni> -<AUni ws="qvm-x-akl">felfa</AUni> -<AUni ws="qvm-x-ame">felfa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+felfa</AUni> -<AUni ws="qvm-x-acl">+felfa</AUni> -<AUni ws="qvm-x-akh">+felfa</AUni> -<AUni ws="qvm-x-akl">+felfa</AUni> -<AUni ws="qvm-x-ame">+felfa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.538" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4609249f-fc65-43d9-b5ba-62578123ac28" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+felfa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a7fb657f-bc40-40e9-b16b-e8c0d01b1c1d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f49f41e7-6d19-4288-a7a7-6da95f152630" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +felfa 
\entryTyp root 
\gENG 
\gSPN 
\e +felfa 
\c N0 
\ach felfa 
\akh felfa 
\acl felfa 
\akl felfa 
\ame felfa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3cbe2e41-8f1e-4363-897f-6aca373054e4" ownerguid="c7cabc9e-0ca4-46f6-aa35-7180c26a202b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">decorate</AUni> -<AUni ws="es">adornar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="79dd72c1-f45f-4284-a474-17c6d087492a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3cbf2104-ba2a-402b-aa29-1b7c227c3e4a" ownerguid="92e441df-7e56-4e2c-b205-79a95800f567"> -<ExampleWords> -<AUni ws="en">competitor, opposition, rival</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person that you compete against?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3cc1544a-63ad-4f10-b44f-94d88a147db2" ownerguid="94eec3c2-abc3-48d6-b3a8-e3e7ebb7ac98"> -<Form> -<AUni ws="qvm-x-ach">seis</AUni> -<AUni ws="qvm-x-acl">seis</AUni> -<AUni ws="qvm-x-akh">seis</AUni> -<AUni ws="qvm-x-akl">seis</AUni> -<AUni ws="qvm-x-ame">seis</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StTxtPara" guid="3cc175be-e3d5-4a68-911f-9a15f7242cf9" ownerguid="dd975191-a41c-461a-9340-3cf71ab48eae"> -<ParseIsCurrent val="False" /> -</rt> -<rt class="LexSense" guid="3cc8e765-5fda-4aea-bdc9-ed81fce76e0a" ownerguid="4a64d301-3123-4ede-a86b-e875df072ab3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fall</AUni> -<AUni ws="es">caer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="76d47d55-31c5-4947-a177-58ac09f463dd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="3cc9dac6-326c-4195-bdc0-c9c8c63eb94c" ownerguid="b233ad14-84dc-4edd-9d8d-cc86dc46719e"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="3ccc3a21-07c8-4983-a044-e3c74b538135" ownerguid="7648040b-0aa5-4d9a-8f13-ffd066b81602"> -<Abbreviation> -<AUni ws="en">8.2.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.589" /> -<DateModified val="2022-9-23 16:55:8.589" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being short in length.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>81C Long, Short, Far</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Short, not long</AUni> -</Name> -<Questions> -<objsur guid="fa3654cd-0b78-4d45-94ce-9e4e941a535f" t="o" /> -<objsur guid="0466d38d-6cf7-4ceb-b599-97816eb66762" t="o" /> -<objsur guid="5e85ef4d-14af-4fd2-9e7b-12f362d665e3" t="o" /> -<objsur guid="7a00987e-7965-4de2-8e45-9bcd49d8ab69" t="o" /> -<objsur guid="8336621b-5268-4fe8-aa8b-a3f8d7b2c30c" t="o" /> -<objsur guid="c1e0cbab-3470-4c55-95c3-23fbacaef6a5" t="o" /> -<objsur guid="aba57a9f-97e9-4620-882c-fde6a929879a" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="1133ad78-9ce9-46aa-b181-bb6f7a84a07b" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="3ccd2130-c625-456e-b58e-7513f2081f4a" ownerguid="12660b9b-ad1e-4c72-bd96-7c2127a952b5"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="3cd05e18-5c20-460a-9c81-eb99df913591" ownerguid="512e8ebe-f0d9-40fc-bc3b-c0465185c662"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">linseed</AUni> -<AUni ws="es">linaza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="23b1fa95-2e58-4ec0-b63f-e63b6217b19c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="3cd0fa6f-d544-45af-84b4-262bc1c1d35a" ownerguid="4e2ab412-6bb4-411d-ae7e-70062b3c7375"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</Msa> -<Sense> -<objsur guid="2801e582-fd5f-46da-b446-4dd5882c9bda" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="3cd248a3-9a0c-453f-b315-a95c5f96af7e" ownerguid="6ad910f6-c929-4bce-90f1-53cb1035e659"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="b7179551-8920-4a54-af06-f59a104c2f24" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="3cd36fee-d3e2-4b9b-82a7-6f25d696c83f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uysu</AUni> -<AUni ws="qvm-x-acl">uysu; uyso</AUni> -<AUni ws="qvm-x-akh">uysu</AUni> -<AUni ws="qvm-x-akl">uysu; uyso</AUni> -<AUni ws="qvm-x-ame">uysu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uysu</AUni> -<AUni ws="qvm-x-acl">*uysu</AUni> -<AUni ws="qvm-x-akh">*uysu</AUni> -<AUni ws="qvm-x-akl">*uysu</AUni> -<AUni ws="qvm-x-ame">*uysu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.312" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="22751dce-e4ca-4033-9562-2103e57ee20a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uysu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="189c658f-cee3-40d1-88f6-58edb6505fed" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="baa60d67-f110-4695-978c-c31d943d61b5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uysu 
\entryTyp root 
\gENG bow.head 
\gSPN agachar 
\e *uysu 
\c V1 
\ach uysu 
\akh uysu 
\acl uysu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl uyso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl uysu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl uyso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame uysu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3cd577aa-051b-4afe-9e3d-837fa4c4205b" ownerguid="7c6ba6e5-d81e-4a50-a111-c946a0793378"> -<ExampleWords> -<AUni ws="en">advantage, asset, privilege</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to an advantage?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="3cd5dbc4-34c8-4fb6-93b3-91f4f101398f" ownerguid="0f2ec646-30b7-4fa2-b5e3-59c4845321d9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yqui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yqui</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yki</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1b0fe7f9-c0ed-498b-9263-f8c0d31cc569" t="r" /> -</Morph> -<Msa> -<objsur guid="2999bb54-aa09-4eed-affb-cf684bd15cf6" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="3cd72321-789c-439d-aeaa-0d391762ec8a" ownerguid="546a4409-fcd1-4d4d-9780-2d6a5e7d21e1"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3cd834dc-67c6-4f85-982b-6bb4f1073668" ownerguid="87bd0d45-8a94-41cb-9864-90d53a11a4b9"> -<ExampleWords> -<AUni ws="en">in accordance with, just, lawful, legal, legality</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that agrees or disagrees with the law?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3cd9b95d-4b55-464b-aa96-c5d8517f6e8e" ownerguid="d8366daf-ae1d-4b2c-a447-478c73580639"> -<ExampleWords> -<AUni ws="en">technical, strategic, tactical</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a method of doing something?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="3cd9f49b-2724-4d32-8eb4-b7d84ab7bb24" ownerguid="bafcff46-fb61-4d1e-b08f-1ea0177d7902"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ta</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ta</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ta</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ta</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ta</Run> -</AStr> -</Form> -<Morph> -<objsur guid="4f3f1430-f126-405a-98a8-5d0b732eb948" t="r" /> -</Morph> -<Msa> -<objsur guid="eac932ef-fd79-454b-b2f7-95e85dbb829a" t="r" /> -</Msa> -<Sense> -<objsur guid="043eec5a-5d9b-4292-877e-68d1d35e7f30" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="3cdb4159-47a3-499a-8301-155b3348d22a" ownerguid="9ffccad9-e445-41b8-b924-897bdee1eb58"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3cdd8137-7c49-4822-a164-f7c5f20c8671" ownerguid="b4e6c077-4f5e-44f3-8868-1f7ae3486585"> -<ExampleWords> -<AUni ws="en">eating utensil, knife, butter knife, steak knife, fork, dessert fork, spoon, teaspoon, soup spoon, spatula, serving spoon, chopsticks</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the utensils used to cut and move food?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3cde4829-bbcd-45aa-a2e4-527b921fa3bf" ownerguid="9ecafa63-d487-4cf6-9a07-48e243b8c1a3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gang.up.on</AUni> -<AUni ws="es">atacar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6b9ac07b-1336-4ee6-8586-1fb59b8c42f2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3cdf8bc6-eedb-4a49-8677-7425823870a2" ownerguid="ad7cc381-1dc6-4fc2-94a4-acd5bf7a11da"> -<ExampleWords> -<AUni ws="en">certain, definite, conclusive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that is certain?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3ce20fa4-6e9e-4423-9897-595137856c59" ownerguid="a3d95c6a-4b0b-4af0-aca8-addd042becd2"> -<ExampleWords> -<AUni ws="en">playful, frolicsome, mischievous, frisky, prankish, jolly, rollicking</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a person who plays?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3ce24bbb-0bde-4376-b7bc-04b180fd36c5" ownerguid="4f00a4d0-3509-404d-a630-82e6f433928a"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3ce2967a-687a-4166-93d9-924431fa1ea6" ownerguid="627280f0-4f98-4b31-ad23-eabe37b002ad"> -<ExampleWords> -<AUni ws="en">flimsy, tenuous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that is thin and weak?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3ce29b1a-c84f-40ff-9d02-6b8c8eeb15bd" ownerguid="5fccd177-1059-44ce-9e5c-ced1350c9027"> -<Form> -<AUni ws="qvm-x-ach">purga</AUni> -<AUni ws="qvm-x-acl">purga</AUni> -<AUni ws="qvm-x-akh">purqa</AUni> -<AUni ws="qvm-x-akl">purqa</AUni> -<AUni ws="qvm-x-ame">purqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="3ce2a472-0a9b-4776-9727-5770a13f8c5a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ichicsanayla</AUni> -<AUni ws="qvm-x-acl">ichicsanayla</AUni> -<AUni ws="qvm-x-akh">ichiksanayla</AUni> -<AUni ws="qvm-x-akl">ichiksanayla</AUni> -<AUni ws="qvm-x-ame">ichiksanayla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ichiksanaylla</AUni> -<AUni ws="qvm-x-acl">*ichiksanaylla</AUni> -<AUni ws="qvm-x-akh">*ichiksanaylla</AUni> -<AUni ws="qvm-x-akl">*ichiksanaylla</AUni> -<AUni ws="qvm-x-ame">*ichiksanaylla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.782" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="00f9c03d-3c02-4d3a-aeec-3d17c778c77a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ichiksanaylla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0f9418ce-7051-40d4-8d83-b66fc215f7b5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4280f45c-8b0a-4e0b-952c-426e70c6104b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ichiksanaylla 
\entryTyp root 
\gENG 
\gSPN 
\e *ichiksanaylla 
\c N0 
\ach ichicsanayla 
\akh ichiksanayla 
\acl ichicsanayla 
\akl ichiksanayla 
\ame ichiksanayla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3ce3ede3-91ad-40e5-ae8f-39f4466993b3" ownerguid="e9136a3a-1564-4822-99ae-e70c050441d7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sir</AUni> -<AUni ws="es">señor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9434cf79-4760-4a13-a2cc-e97e30895fb6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="3ce6009b-a7b6-411d-9f94-90312fe5f7d7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wegru</AUni> -<AUni ws="qvm-x-acl">wegru; wegru; wegro</AUni> -<AUni ws="qvm-x-akh">weqru</AUni> -<AUni ws="qvm-x-akl">weqru; weqru; weqro</AUni> -<AUni ws="qvm-x-ame">wiqru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wiqru</AUni> -<AUni ws="qvm-x-acl">*wiqru</AUni> -<AUni ws="qvm-x-akh">*wiqru</AUni> -<AUni ws="qvm-x-akl">*wiqru</AUni> -<AUni ws="qvm-x-ame">*wiqru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.668" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cfe6168a-1d66-4236-82a6-e60eafbccf22" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wiqru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="710caccc-2724-41f8-8d52-1d7a9161463c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="676f71ed-9f51-4db3-9463-80e02b16b14d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wiqru 
\entryTyp root 
\gENG lame 
\gSPN cojo 
\e *wiqru 
\c N0 
\ach wegru 
\akh weqru 
\acl wegru / _# 
\acl wegru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wegro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl weqru / _# 
\akl weqru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl weqro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wiqru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3cea19d0-1e9e-44b1-a690-2e7da1d94d78" ownerguid="7adf468c-b93a-4b04-8af6-4c691122a4eb"> -<ExampleWords> -<AUni ws="en">white, alabaster, albino, bleached, chalky, cream, cream-colored, creamy, eggshell, fair, ivory, lily-white, milk-white, milky, off-white, oyster white, pearl, pearly, snowy, snow-white</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is white in color?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3cec966e-57e9-446e-9521-44649340e9fc" ownerguid="6a39a61b-ec4d-452b-bf97-f613fb10dc4a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">plaster</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a023b8e6-41d0-4d86-99cc-94428a5ccaa0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3cecb9c3-e0ee-49d9-9572-35a1f004b3b1" ownerguid="a31c85df-02a9-4dd8-a094-0f07a0afbcca"> -<ExampleWords> -<AUni ws="en">erase, delete, cross out, rub out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to removing words from a book, or music from a tape?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3cedd17f-f90b-4e20-b989-8737cef9787d" ownerguid="ccbbd16f-58c5-45c1-bfff-1fba64d9740e"> -<Question> -<AUni ws="en">(11) completive: to do something thoroughly and to completion, e.g. 'to shoot someone dead, to eat up'.</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3cf2a0f2-7a94-4d8e-94fc-6ff648abf4a9" ownerguid="4c31ac6a-3197-4762-9937-2fdea90784b7"> -<ExampleWords> -<AUni ws="en">suddenness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the suddenness of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3cf570fe-3caa-494d-a603-4081fa826f5b" ownerguid="155510e7-ca58-418a-8c5c-8b044d67cebd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="506c5c89-70a3-4a2d-914f-e55d392fd65c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="3cfa7114-1de9-4f6f-9e31-64858df1de7c" ownerguid="8bce78d1-5783-4ceb-b63d-faaf55ca4876"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">prophetess</AUni> -<AUni ws="es">profetisa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ec2fb55e-473b-48ce-b61a-102366aeeb4a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3cfc84d6-312f-4274-b3b5-be0b7459b01e" ownerguid="82e4394a-2f58-4356-8d9c-1ad9dbe95293"> -<ExampleWords> -<AUni ws="en">get the chills, ague</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to feeling cold because you are sick?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3cfd1ae0-54db-44ef-a8d6-6b9e0258464c" ownerguid="917dd571-2df9-4c5c-b438-3785933f9c42"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cheese</AUni> -<AUni ws="es">queso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ed90c9b4-3309-465d-90c4-8ce1b9ab7656" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3d0028f2-0522-4230-a878-5c6dc629aa97" ownerguid="716b3e9d-9bb9-42a6-ba56-829b1c018b28"> -<ExampleWords> -<AUni ws="en">housewife, housekeeper</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who manages a house?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3d00410a-a71a-4e0f-aa4b-fc495522c63c" ownerguid="9f6754ae-a429-4bba-8f6f-2cd4ea0cbe45"> -<ExampleWords> -<AUni ws="en">abstain (from sex), abstinence, restraint, celibacy, chastity, continence, honor, purity, virtue</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to maintaining your virginity?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3d00e84c-9991-4a2b-a5e8-ed881ffdf872" ownerguid="cef4e479-ed16-45a9-ab32-1da63f0b63ae"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">office</AUni> -<AUni ws="es">oficina</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4d296be1-9f70-4e48-ac7c-4667be0543cc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="3d020b79-f1d4-4a06-bae2-2daaa658474b" ownerguid="6a70d393-1181-48e5-ac69-114d61dd348b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="97f7e317-de59-417c-b8a9-d2054b82ae6d" t="o" /> -<objsur guid="77f807f8-d736-4d35-b41e-8b972f4e24e1" t="o" /> -<objsur guid="2dc81b71-65c4-4313-9b60-a1535cd24d84" t="o" /> -<objsur guid="1f36c833-128e-44e9-b2bf-695dc9d17165" t="o" /> -<objsur guid="8f2cadfd-2b4e-4dc2-b249-61f8f4abe576" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="3d0243da-2738-4254-ba9c-745e0d941af8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cacha</AUni> -<AUni ws="qvm-x-acl">cacha</AUni> -<AUni ws="qvm-x-akh">kacha</AUni> -<AUni ws="qvm-x-akl">kacha</AUni> -<AUni ws="qvm-x-ame">kacha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*katra.v</AUni> -<AUni ws="qvm-x-acl">*katra.v</AUni> -<AUni ws="qvm-x-akh">*katra.v</AUni> -<AUni ws="qvm-x-akl">*katra.v</AUni> -<AUni ws="qvm-x-ame">*katra.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.963" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5fc72b7d-a847-47aa-856a-9ba8bcf0ab5c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*katra.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7dbc96e8-51a7-4b67-87a5-b4e3880c063c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cdfa6417-81ee-49c2-b001-419fd9c3ff25" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *katra.v 
\entryTyp root 
\gENG send 
\gSPN enviar 
\e *katra.v 
\c V2 
\ach cacha 
\akh kacha 
\acl cacha 
\akl kacha 
\ame kacha 
\mcc *katra.v / ~_ PNCT1 
\mcc *katra.v / ~_ PNCT2 
\mcc *katra.v / ~_ DUR 
\mcc *katra.v / ~_ [ref] NMN [case]</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3d037389-f0c4-4130-af4f-ed8d689220c2" ownerguid="f38f8344-838f-44ba-b103-22289c2d2793"> -<ExampleWords> -<AUni ws="en">green, juicy, succulent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe plants when there is water in them?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3d081371-33fd-4738-9eed-1814f4d7550e" ownerguid="57d85dc6-8fb4-4b0f-a608-610d7ae1fd1c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">corral</AUni> -<AUni ws="es">corral</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d7dd0cad-db63-49e6-b49e-6f22f9a7d7b9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="3d08ce45-5945-47a6-bf21-027c38081590" ownerguid="d52fd88d-9fda-4915-9cab-f82c0e044534"> -<Form> -<AUni ws="qvm-x-ach">taclla</AUni> -<AUni ws="qvm-x-acl">taclla</AUni> -<AUni ws="qvm-x-akh">taklla</AUni> -<AUni ws="qvm-x-akl">taklla</AUni> -<AUni ws="qvm-x-ame">taklla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="3d10e03a-7902-458d-9c45-938da103d639" ownerguid="6c36a680-4ff4-43b9-a7c2-9037ceb0d3f6"> -<Abbreviation> -<AUni ws="en">8.3.1.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.607" /> -<DateModified val="2022-9-23 16:55:8.607" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is hollow--empty on the inside.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Hollow</AUni> -</Name> -<Questions> -<objsur guid="c09a2433-5eae-4752-86cf-064555eeef47" t="o" /> -<objsur guid="2e06d495-4397-40ab-98b9-c6619877c6f6" t="o" /> -<objsur guid="e4f9347c-a334-446f-9cbd-ea9568240754" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="3d1289b3-6e97-40a4-9ffc-10e13121768d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">imperati:vu</AUni> -<AUni ws="qvm-x-acl">imperati:vu; imperati:vu; imperati:vo</AUni> -<AUni ws="qvm-x-akh">imperati:vu</AUni> -<AUni ws="qvm-x-akl">imperati:vu; imperati:vu; imperati:vo</AUni> -<AUni ws="qvm-x-ame">imperati:vu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+imperativo</AUni> -<AUni ws="qvm-x-acl">+imperativo</AUni> -<AUni ws="qvm-x-akh">+imperativo</AUni> -<AUni ws="qvm-x-akl">+imperativo</AUni> -<AUni ws="qvm-x-ame">+imperativo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.810" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="36441432-e638-43f2-ad42-2b01d1d802f0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+imperativo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="00d04806-0836-427e-959b-a56d42615f1b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="563bd84d-8fa8-47d9-acdc-d566eab0d19a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +imperativo 
\entryTyp root 
\gENG imperative 
\gSPN imperativo 
\e +imperativo 
\c N0 
\ach imperati:vu 
\akh imperati:vu 
\acl imperati:vu / _# 
\acl imperati:vu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl imperati:vo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl imperati:vu / _# 
\akl imperati:vu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl imperati:vo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame imperati:vu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="3d14b004-bfeb-41f3-8a76-832e2aba01bb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">paisa:nu</AUni> -<AUni ws="qvm-x-acl">paisa:nu; paisa:nu; paisa:no</AUni> -<AUni ws="qvm-x-akh">paisa:nu</AUni> -<AUni ws="qvm-x-akl">paisa:nu; paisa:nu; paisa:no</AUni> -<AUni ws="qvm-x-ame">paisa:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+paisano</AUni> -<AUni ws="qvm-x-acl">+paisano</AUni> -<AUni ws="qvm-x-akh">+paisano</AUni> -<AUni ws="qvm-x-akl">+paisano</AUni> -<AUni ws="qvm-x-ame">+paisano</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.648" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="acef96aa-8f5f-4ef2-a1ca-6b090d7c9bf6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+paisano</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9195831b-33be-4b85-93bf-c63630405096" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f99f6b63-6b7c-4ff5-bcca-2b9b0e52e8c9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +paisano 
\entryTyp root 
\gENG 
\gSPN 
\e +paisano 
\c N0 
\ach paisa:nu 
\akh paisa:nu 
\acl paisa:nu / _# 
\acl paisa:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl paisa:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl paisa:nu / _# 
\akl paisa:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl paisa:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame paisa:nu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="3d14ecb2-bc12-464c-ac34-a216ab3228dc"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Chayaptinmi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="3d16309a-47af-4bc5-b7e7-99782d966ad0" ownerguid="d81b6655-eda2-4945-a6f4-965104769770"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wish</AUni> -<AUni ws="es">deseo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="335a98a3-c342-422e-9ca4-75d31f326324" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="3d1737b3-d05f-468d-bce7-dd3e3b409859"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chulpa</AUni> -<AUni ws="qvm-x-acl">chulpa</AUni> -<AUni ws="qvm-x-akh">chulpa</AUni> -<AUni ws="qvm-x-akl">chulpa</AUni> -<AUni ws="qvm-x-ame">chulpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chullpa</AUni> -<AUni ws="qvm-x-acl">*chullpa</AUni> -<AUni ws="qvm-x-akh">*chullpa</AUni> -<AUni ws="qvm-x-akl">*chullpa</AUni> -<AUni ws="qvm-x-ame">*chullpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.343" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ffeaa021-a071-43f1-9bc3-26d5a182814a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chullpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f9b0ec0a-9293-45b9-9dc2-eca99c90600c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9683fda7-1c6d-4186-9588-c44a46b456a8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chullpa 
\entryTyp root 
\gENG wash.head 
\gSPN lavar.cabeza 
\e *chullpa 
\c V1 
\ach chulpa 
\akh chulpa 
\acl chulpa 
\akl chulpa 
\ame chulpa 
\i Gen 31.10 Uywacuna tsaricunan witsanmi sueñuynëcho ricashcä muru chïvucuna alga chïvucuna yana chïvucuna cabracunata chulpaycagta.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="3d1b3cc4-1505-4078-b66f-43cacd1cff64" ownerguid="798ec463-abb7-40ce-b5b7-98bc2358a6c7"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="3d227028-c442-414b-a7b4-5f402cf014dc" ownerguid="761ed6be-d61a-48d3-b666-2e09756a2bc6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="3d229ce8-9865-4efa-91ff-448f8ff2d824" ownerguid="47a1aafd-8ce7-471e-98df-d8c67f04a5e1"> -<Form> -<AUni ws="qvm-x-ach">ayni</AUni> -<AUni ws="qvm-x-acl">ayni; ayni; ayne</AUni> -<AUni ws="qvm-x-akh">ayni</AUni> -<AUni ws="qvm-x-akl">ayni; ayni; ayne</AUni> -<AUni ws="qvm-x-ame">ayni</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="3d251cfd-3ea3-4b4e-9916-be945e4baa40" ownerguid="0ea972e6-0904-41bb-977b-7ee45ab4b91b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">SIM4</AUni> -<AUni ws="es">SIM4</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="317d050e-253e-445f-bb1c-45ec554f114e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3d2b3054-4fe6-42c5-950a-7e35c82ce197" ownerguid="a3ba10f3-66e3-4ad5-8057-453b8941e497"> -<ExampleWords> -<AUni ws="en">warmonger, militarist, hawk</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a person who wants to fight a war?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3d2d6a05-a0ec-4bab-a0d9-2b70c654cd44" ownerguid="8e65904c-f9e9-4e12-b430-c1ddc540f1ae"> -<ExampleWords> -<AUni ws="en">relax (your posture), slouch, lean back, slump</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to changing your posture so that it is relaxed?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3d2ecf63-5ad1-4436-b086-b8fceda8e586" ownerguid="099d9539-baa5-4a7a-86b1-ebc30409efd7"> -<Form> -<AUni ws="qvm-x-ach">campanilla</AUni> -<AUni ws="qvm-x-acl">campanilla</AUni> -<AUni ws="qvm-x-akh">campanilla</AUni> -<AUni ws="qvm-x-akl">campanilla</AUni> -<AUni ws="qvm-x-ame">campanilla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="3d346683-aa99-438b-91fa-7fc4a8c46918" ownerguid="ad61acd7-a41f-450c-89ff-6a1a758546d3"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3d35984b-4181-477d-b266-7a3ab1fbbf1c" ownerguid="23bc906d-c15a-4368-b0ca-7443d5e37b83"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">I did it <because> I wanted to.; I did it <because of> him.; His statement is <the origin of> all the confusion.; The <source> of the problem is a lack of motivation.; Laziness <breeds> hunger.; The storm <caused> a lot of damage.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">cause, reason, source, because, because of, for this reason, for the above reasons, for the following reasons, first cause, origin, breed (v), gives birth to, due to, owing to, thus</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something is the cause or reason for an event or state?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3d36807e-d481-4b5a-ab57-3c11400b92d8" ownerguid="91aee6e3-5c77-4b16-b448-1f719bcdaea9"> -<Form> -<AUni ws="qvm-x-ach">äya</AUni> -<AUni ws="qvm-x-acl">äya</AUni> -<AUni ws="qvm-x-akh">äya</AUni> -<AUni ws="qvm-x-akl">äya</AUni> -<AUni ws="qvm-x-ame">äya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="3d3d05ea-adf1-42d9-a873-aa80ee2864a9" ownerguid="f13ed73c-8b8d-4f97-a172-09f8f88d124f"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">arurcö.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="3d3d2701-e924-4032-9628-76cacd844db0" ownerguid="7d91c78d-7d8a-489a-861b-45f523787f40"> -<Form> -<AUni ws="qvm-x-ach">asaltanti; asaltante</AUni> -<AUni ws="qvm-x-acl">asaltanti; asaltanti; asaltante</AUni> -<AUni ws="qvm-x-akh">asaltanti; asaltante</AUni> -<AUni ws="qvm-x-akl">asaltanti; asaltanti; asaltante</AUni> -<AUni ws="qvm-x-ame">asaltanti; asaltante</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="3d3e0018-65b0-425b-8f8d-e5e622bd6c76" ownerguid="89a9e395-7530-4527-98e4-c153cac68269"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sugar</AUni> -<AUni ws="es">azucar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4cda9f31-b74f-4de3-b010-2fce01634f7b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="3d3ee180-caea-48b0-ad1f-ab9b74fb7cc1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">consula</AUni> -<AUni ws="qvm-x-acl">consula</AUni> -<AUni ws="qvm-x-akh">consula</AUni> -<AUni ws="qvm-x-akl">consula</AUni> -<AUni ws="qvm-x-ame">consula</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+consolar</AUni> -<AUni ws="qvm-x-acl">+consolar</AUni> -<AUni ws="qvm-x-akh">+consolar</AUni> -<AUni ws="qvm-x-akl">+consolar</AUni> -<AUni ws="qvm-x-ame">+consolar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.172" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c5149aaa-ee9f-4e5d-b1cc-2f5c2d287f58" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+consolar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5d0280d7-b338-4e4b-8b33-ab41f9e85d4c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dbf76fbc-822f-47aa-a7d7-174a1eb3a042" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +consolar 
\entryTyp root 
\gENG comfort 
\gSPN consolar 
\e +consolar 
\c V2 
\ach consula 
\akh consula 
\acl consula 
\akl consula 
\ame consula</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3d402273-4c6c-4c41-8c56-c74d2c54f1a9" ownerguid="546a4409-fcd1-4d4d-9780-2d6a5e7d21e1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">squat</AUni> -<AUni ws="es">agacharse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3cd72321-789c-439d-aeaa-0d391762ec8a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="3d4330fa-8ccc-4a69-9215-5b705855a949" ownerguid="51ba6159-f1fc-4fce-a281-3ba5f1a248c0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3d4374cf-7071-46f3-8976-5c38bc1a1ee4" ownerguid="2d92e248-1512-4e89-b886-425814c6dd32"> -<ExampleWords> -<AUni ws="en">white, black</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What is each side called?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3d4451ab-0b52-4228-94b7-c328ff92094f" ownerguid="0d935e77-e437-426f-acff-dccfb516ec8c"> -<ExampleWords> -<AUni ws="en">busy, have a lot to do, have your hands full, pressure, overburdened</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a person who is busy and has a lot to do?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3d44bb08-5d91-4e2a-a757-985d734e1cc9" ownerguid="8ea4e0d4-71a2-4583-a1fe-f1a941af8478"> -<ExampleWords> -<AUni ws="en">suggestion, proposal, recommendation, proposition, submission</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something that someone suggests?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3d45b8da-d44d-45db-810c-0ed611add210" ownerguid="8f59cd3a-6443-4abb-9505-cfcb0682d9f7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">defeat</AUni> -<AUni ws="es">vencer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="82700189-f942-4890-a528-56dc2208cb70" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="3d48e0df-8e07-4e2f-9e29-19cc96df1bc1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wishcash</AUni> -<AUni ws="qvm-x-acl">wishcash</AUni> -<AUni ws="qvm-x-akh">wishkash</AUni> -<AUni ws="qvm-x-akl">wishkash</AUni> -<AUni ws="qvm-x-ame">wishkash</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wishkash</AUni> -<AUni ws="qvm-x-acl">*wishkash</AUni> -<AUni ws="qvm-x-akh">*wishkash</AUni> -<AUni ws="qvm-x-akl">*wishkash</AUni> -<AUni ws="qvm-x-ame">*wishkash</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.688" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="865f6801-e33a-48be-9efc-1f78f767c9ae" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wishkash</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8ad8868f-ea73-42d1-9bd0-34dcf085f98f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="01112706-32ad-48ec-ae23-9c24a8c957f7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wishkash 
\entryTyp root 
\gENG animal 
\gSPN animal 
\e *wishkash 
\c N0 
\mp +FinalC 
\ach wishcash 
\akh wishkash 
\acl wishcash 
\akl wishkash 
\ame wishkash</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3d4a4c5d-8674-42de-96c8-a8d60696d28e" ownerguid="5ea9301a-9906-4e81-97cf-48ee95a54c63"> -<ExampleWords> -<AUni ws="en">influential</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a person who has influence?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3d4bf633-4f34-4884-a0c9-f5be63ae7138" ownerguid="1bca24e1-f372-4584-bc86-5d6052a22390"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="3d4c940f-3a94-451d-8493-dddd7539cef5" ownerguid="9330f5a7-4e79-485e-a656-e76a3e6eda86"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3d4d2a28-ed45-4fc1-85ae-a16b964d7054"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">togla</AUni> -<AUni ws="qvm-x-acl">togla</AUni> -<AUni ws="qvm-x-akh">toqla</AUni> -<AUni ws="qvm-x-akl">toqla</AUni> -<AUni ws="qvm-x-ame">tuqla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tuqlla.v</AUni> -<AUni ws="qvm-x-acl">*tuqlla.v</AUni> -<AUni ws="qvm-x-akh">*tuqlla.v</AUni> -<AUni ws="qvm-x-akl">*tuqlla.v</AUni> -<AUni ws="qvm-x-ame">*tuqlla.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.7" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1a5193e5-1b8b-4282-9dfb-cbca5d8b4ff1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tuqlla.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ec472a9c-7ab2-4d47-b71e-3d39eef0f88c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a3147249-29eb-4b76-a99c-21e29d7b1f27" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tuqlla.v 
\entryTyp root 
\gENG 
\gSPN 
\e *tuqlla.v 
\c V1 
\ach togla 
\akh toqla 
\acl togla 
\akl toqla 
\ame tuqla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3d50155a-58a1-4fa3-967f-ddfd9e765f35" ownerguid="f134eabe-ecd2-4f0a-8566-00a9086e0307"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">silk</AUni> -<AUni ws="es">seda</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="561b0508-05a6-4437-a173-2f63d012da5e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3d5324e9-9822-4ab7-b03c-d94399f2923b" ownerguid="a3ba10f3-66e3-4ad5-8057-453b8941e497"> -<ExampleWords> -<AUni ws="en">deploy, maneuver, outmaneuver, flank, outflank, advance, charge, overrun, retreat, withdraw</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to an army moving?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3d575c2a-3e4c-4b89-b66a-9bd3bfb6190a" ownerguid="45f7b003-ade3-4efc-8dee-259dcbf80a4a"> -<ExampleWords> -<AUni ws="en">importunate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe a person who pleads?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3d5a1a32-6e9e-486c-8c3b-d12bfe9a3114"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mache:ti; mache:ti</AUni> -<AUni ws="qvm-x-acl">mache:ti; mache:ti; mache:te</AUni> -<AUni ws="qvm-x-akh">mache:ti; mache:ti</AUni> -<AUni ws="qvm-x-akl">mache:ti; mache:ti; mache:te</AUni> -<AUni ws="qvm-x-ame">mache:ti; mache:ti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+machete.1</AUni> -<AUni ws="qvm-x-acl">+machete.1</AUni> -<AUni ws="qvm-x-akh">+machete.1</AUni> -<AUni ws="qvm-x-akl">+machete.1</AUni> -<AUni ws="qvm-x-ame">+machete.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.255" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8b33d8dd-6bab-4215-b7a4-2ed686659b60" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+machete.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2e1eacb2-6b88-4720-903f-e763dfa9b1f9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a9811ae6-1b46-48aa-90d1-7c8872df2eee" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +machete.1 
\entryTyp root 
\gENG machete 
\gSPN machete 
\e +machete.1 
\c N0 
\mp +FinalI 
\ach mache:ti / _# 
\ach mache:ti / ~_# 
\akh mache:ti / _# 
\akh mache:ti / ~_# 
\acl mache:ti / _# 
\acl mache:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mache:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mache:ti / _# 
\akl mache:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mache:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mache:ti / _# 
\ame mache:ti / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3d5d34bd-d7f8-4aab-854d-6c4298bb7261" ownerguid="df647b1a-ed79-4a8e-b781-56ed25fe4405"> -<ExampleWords> -<AUni ws="en">Buddhism, Buddhist, Buddha, temple, pagoda, nirvana, enlightenment, monk</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to talk about Buddhism?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="3d5d93ce-00e0-46ff-b220-553c12c38381" ownerguid="4c862416-f7c4-4a3c-82ac-fe81e1efb879"> -<Abbreviation> -<AUni ws="en">2.1.8.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the female reproductive organs and a woman's monthly menstrual cycle. Some of these terms may be taboo. Care must be exercised in which terms are included in the dictionary. A group of women should decide which terms are 'public' and can go in the dictionary, and which would be considered taboo, overly crude, or embarrassing. For example some societies have been afraid that their women will be taken advantage of if these terms are known.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Female organs</AUni> -</Name> -<OcmCodes> -<Uni>841 Menstruation</Uni> -</OcmCodes> -<Questions> -<objsur guid="554fd48b-56bb-4abf-81ea-4f0c56c8708c" t="o" /> -<objsur guid="80d29620-0144-485a-b310-896540b9616a" t="o" /> -<objsur guid="34149da1-be39-4f73-93cb-146c109f3ff1" t="o" /> -<objsur guid="fccb8ef9-d05f-49fc-ba12-c904ba09f06f" t="o" /> -<objsur guid="442cf27f-21ef-44cb-9e4d-6f263793ce61" t="o" /> -<objsur guid="62debb69-b66d-4539-98d8-023b56f21aa1" t="o" /> -<objsur guid="c403429e-82a7-4282-bb44-0e07f7ffb81e" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="a19e219a-6cc1-4057-a8d9-18554ae88de1" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="3d5fd46d-438c-412a-a678-ec7a94b34566" ownerguid="08c05e00-9660-4491-af2f-a05fab27ef39"> -<ExampleWords> -<AUni ws="en">thin, slight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is thin?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3d60286b-4da2-4ea8-930c-c06c44140e17" ownerguid="590570c5-3267-4966-b0db-2af7a5105c83"> -<ExampleWords> -<AUni ws="en">until, wait until</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something will not happen until something else happens?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="3d61ca37-9c74-4e57-befe-7da01bc80edc" ownerguid="54ad558c-fce3-40ea-b28d-52a66a4efd42"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">gori quiru; gori chirapa (cuando solea y llueve a la vez)</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="3d6216c5-5f8d-4ffa-bc97-c68b63b9fd49"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">halcón; halcon</AUni> -<AUni ws="qvm-x-acl">halcón; halcon</AUni> -<AUni ws="qvm-x-akh">halcón; halcon</AUni> -<AUni ws="qvm-x-akl">halcón; halcon</AUni> -<AUni ws="qvm-x-ame">halcón; halcon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+halcón</AUni> -<AUni ws="qvm-x-acl">+halcón</AUni> -<AUni ws="qvm-x-akh">+halcón</AUni> -<AUni ws="qvm-x-akl">+halcón</AUni> -<AUni ws="qvm-x-ame">+halcón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.650" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="45c6d442-44ca-454e-a7a7-0eca0cc0f675" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+halcón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="911bef17-6b94-4f0c-840c-4132bb6e685f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="396e6652-60e2-4582-b570-59c624dfcf6e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +halcón 
\entryTyp root 
\gENG 
\gSPN halcón 
\e +halcón 
\c N0 
\mp +FinalC 
\ach halcón / _# 
\ach halcon / ~_# 
\akh halcón / _# 
\akh halcon / ~_# 
\acl halcón / _# 
\acl halcon / ~_# 
\akl halcón / _# 
\akl halcon / ~_# 
\ame halcón / _# 
\ame halcon / ~_# 
\i Lev 7.13,14 Ama micapäcunquitsu tucuy casta ancacunata, tucuy casta wisculcunata, tucuy casta halconcunata y quilicsatapis,</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="3d64aa68-b0e4-4015-9db9-7a5cb6004fa2" ownerguid="ba67b8ec-8279-40cf-8c38-dd9a0e490ad0"> -<Form> -<AUni ws="qvm-x-ach">waru</AUni> -<AUni ws="qvm-x-acl">waru; waru; waro</AUni> -<AUni ws="qvm-x-akh">waru</AUni> -<AUni ws="qvm-x-akl">waru; waru; waro</AUni> -<AUni ws="qvm-x-ame">waru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3d69b583-b553-495b-be7e-178acff1d88a" ownerguid="399eafc3-827b-4381-b94f-0981d2f465c9"> -<Form> -<AUni ws="qvm-x-ach">amatar</AUni> -<AUni ws="qvm-x-acl">amatar</AUni> -<AUni ws="qvm-x-akh">amatar</AUni> -<AUni ws="qvm-x-akl">amatar</AUni> -<AUni ws="qvm-x-ame">amatar</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3d6b2408-41cb-4fdc-a0c3-764854db17de" ownerguid="c4059dba-46be-403f-a555-96e49c3b144f"> -<Form> -<AUni ws="qvm-x-ach">chiclascu</AUni> -<AUni ws="qvm-x-acl">chiclascu; chiclascu; chiclasco</AUni> -<AUni ws="qvm-x-akh">chiklasku</AUni> -<AUni ws="qvm-x-akl">chiklasku; chiklasku; chiklasko</AUni> -<AUni ws="qvm-x-ame">chiklasku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3d6ba4b6-9b2c-4434-ad75-cf5c16f761a6" ownerguid="38bbb33a-90bf-4a2c-a0e5-4bde7e134bd9"> -<ExampleWords> -<AUni ws="en">senses</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to all the senses?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3d707fe4-c5ec-49df-9d5e-b3aeee36384f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cumpa; cumpa:</AUni> -<AUni ws="qvm-x-acl">cumpa; cumpa:</AUni> -<AUni ws="qvm-x-akh">cumpa; cumpa:</AUni> -<AUni ws="qvm-x-akl">cumpa; cumpa:</AUni> -<AUni ws="qvm-x-ame">cumpa; cumpa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+compadre.2</AUni> -<AUni ws="qvm-x-acl">+compadre.2</AUni> -<AUni ws="qvm-x-akh">+compadre.2</AUni> -<AUni ws="qvm-x-akl">+compadre.2</AUni> -<AUni ws="qvm-x-ame">+compadre.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.152" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5889c52b-464e-4af0-84da-1e34ee81f4cf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+compadre.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="817b4da2-c804-4692-bc7e-1d575d60e158" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e5e7bc77-dad6-4fc0-a8bb-e5dba7c84116" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +compadre.2 
\entryTyp root 
\gENG godfather 
\gSPN compadre 
\e +compadre.2 
\c N0 
\mp +FinalLength 
\mp +underlong 
\ach cumpa foreshortened 
\ach cumpa: 
\mp +underlong 
\akh cumpa foreshortened 
\akh cumpa: 
\acl cumpa foreshortened 
\acl cumpa: 
\akl cumpa foreshortened 
\akl cumpa: 
\mp +underlong 
\ame cumpa foreshortened 
\ame cumpa: 
\mp +FinalC 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3d71f224-c1be-42b8-8425-35103d14ebec" ownerguid="f595deab-1838-4ddb-9ebe-55fb3007b309"> -<ExampleWords> -<AUni ws="en">battery, cavalry, cohort, detachment, detail, guard, host, legion, palace guard</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What types of military units are there?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3d73dfa6-dca0-47db-a7e8-bd63f73569a7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ultu</AUni> -<AUni ws="qvm-x-acl">ultu; ultu; ulto</AUni> -<AUni ws="qvm-x-akh">ultu</AUni> -<AUni ws="qvm-x-akl">ultu; ultu; ulto</AUni> -<AUni ws="qvm-x-ame">ultu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ulltu</AUni> -<AUni ws="qvm-x-acl">*ulltu</AUni> -<AUni ws="qvm-x-akh">*ulltu</AUni> -<AUni ws="qvm-x-akl">*ulltu</AUni> -<AUni ws="qvm-x-ame">*ulltu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.218" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a578ea88-bc35-4164-b476-8a6c4af23546" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ulltu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4aa46dcd-be5f-485a-b0fe-fa1f66fd713a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="83f7b1ee-908f-46b0-b4b1-99491f0b6398" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ulltu 
\entryTyp root 
\gENG tadpole 
\gSPN renacuajo 
\e *ulltu 
\c N0 
\ach ultu 
\akh ultu 
\acl ultu / _# 
\acl ultu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ulto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ultu / _# 
\akl ultu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ulto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ultu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="3d740f68-3212-44a3-9de8-6e4c6d99c0a4" ownerguid="0c5e2310-1d3a-4460-987f-dfdfecc5090d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="LexSense" guid="3d7887f2-a6a2-444d-b612-987de491f5bb" ownerguid="66cbd546-2f10-413e-8d0c-4952c1cfaa1e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hyssop</AUni> -<AUni ws="es">hisopo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0da2d7a7-60bf-452f-8181-043bd3836d25" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="3d7acd54-124e-4666-83a6-1417a9afb890" ownerguid="10708644-7060-42cc-9ce5-b36c4f95f9c5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3d7c34c0-0246-464a-9466-d39e86c131cd" ownerguid="8a11e609-e88d-4247-8c5f-224ddb20de10"> -<ExampleWords> -<AUni ws="en">clothing, clothes, dress</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to clothing?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3d7c8d67-9918-402b-9d2d-c3cff26dcee0" ownerguid="50b5aa47-15cf-4ce1-b196-5700b1dc872e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chapel</AUni> -<AUni ws="es">capilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="eb0b0629-b461-46d3-936d-a9311f98ce8c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="3d7ca89d-06ac-4b06-95a5-89dff3378911" ownerguid="e22343c1-7f13-4dbd-aa61-16784ec9c367"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="3d7d2b1e-e68a-4fda-a291-5c92e4db643b" ownerguid="30fa4dfc-c21d-46f6-8fd8-55b6c9f3577b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">gargu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">gargu; gargo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qarqu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qarqu; qarqo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qarqu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="73ffd175-ad05-4d66-af47-2c487b1126eb" t="r" /> -</Morph> -<Msa> -<objsur guid="6da469f9-1f0c-4335-acc0-6c49a7bb5c21" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="3d7dc063-5337-4252-8188-25754e276518" ownerguid="cab6c5b3-599b-46f6-b585-386ffca6c796"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="3d800574-d4ef-47b8-a1ff-60c90b533455" ownerguid="d71826d3-83ba-4fd5-ad37-499370411f03" /> -<rt class="LexSense" guid="3d80cca9-9246-413d-a0b8-71c6bdca94b9" ownerguid="3172de51-a297-4877-a407-cd0b5ce64030"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="5c979484-a161-4129-ae62-6efa434252ab" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="3d80ddcb-329f-4d45-b03c-cd2a8dfe0d87" ownerguid="f211de02-1d76-4edd-b61a-d6b65f027782"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="546b240c-2823-4eed-b8d0-075c6eb0b492" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">turn</AUni> -<AUni ws="es">voltear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4dfa41a7-997b-49db-a7d6-bd18d7388edf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3d818829-c181-451f-9c41-4a2c219a2aba" ownerguid="7dbd7f43-4291-47f8-a392-6fdf3c98d522"> -<ExampleWords> -<AUni ws="en">reproductive organs, sexual organs, genitals, gonad, pubes, privates</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to the reproductive organs?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3d821d25-e699-43d3-a48c-09878ccf207f" ownerguid="ba67b8ec-8279-40cf-8c38-dd9a0e490ad0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="4bd03dab-5560-4e9d-821e-d0025b0ecd8b" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">crossing</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4ede6541-e643-4922-b257-83c0a534b7a6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="3d832ace-78ec-44f1-9588-671d0de52beb" ownerguid="6f3aae2b-f3f4-470e-8348-fdff71b72706"> -<Form> -<AUni ws="qvm-x-ach">lushcu</AUni> -<AUni ws="qvm-x-acl">lushcu; lushcu; lushco</AUni> -<AUni ws="qvm-x-akh">lushku</AUni> -<AUni ws="qvm-x-akl">lushku; lushku; lushko</AUni> -<AUni ws="qvm-x-ame">lushku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="3d83afe4-ef49-4290-bd99-325f05806f58" ownerguid="72da0752-f34e-4282-9738-06bc39ad399f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="3d849f01-0fce-4fd4-ba33-bfb9e840bf93" ownerguid="63494b6a-462e-4971-a0b8-5266c53ae274" /> -<rt class="CmDomainQ" guid="3d84afa8-1e71-474c-b3a1-0366798dd765" ownerguid="10b6c417-d020-4318-a44a-ae69ea3eec5a"> -<ExampleWords> -<AUni ws="en">revolutionary, reformer, radical</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who changes something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3d85b542-b26a-4cd4-a930-f04091213c99" ownerguid="aba3f7f1-9e13-4b48-acbb-3bf6d6bfa0e8"> -<ExampleWords> -<AUni ws="en">support, carry, hold, load, weight, pressure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to how much weight something can support without breaking or falling?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3d8c04c7-725a-4bd2-a81a-2a7817beb710" ownerguid="f76a8805-9c29-4675-bdfb-81791d2c4a11"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">perro.orejón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="36ff60dd-26f3-410d-aada-b53c8fb77601" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3d90b57a-24b6-439c-b475-8e6bd78178b8" ownerguid="063e0810-8e49-44ef-aa8f-bb9e63bb66dd"> -<ExampleWords> -<AUni ws="en">purchase, merchandise, goods</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something that is bought?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="3d941464-0ecf-4a32-b23d-cfc699f00ef9" ownerguid="49ee1a30-4e7d-400e-824f-9b2f2c1786e3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="3d94317b-7eb0-4ac1-92e4-5c66af0698e8" ownerguid="ea839451-f89e-4432-b361-3086ca4f13fd"> -<ExampleWords> -<AUni ws="en">be accustomed to, used to, familiar with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being accustomed to something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3d95b411-7d02-486a-8444-ce8077a858bc" ownerguid="fe8b2653-2144-405b-8886-53662db8d64e"> -<Form> -<AUni ws="qvm-x-ach">vämu</AUni> -<AUni ws="qvm-x-acl">vämu</AUni> -<AUni ws="qvm-x-akh">vämu</AUni> -<AUni ws="qvm-x-akl">vämu</AUni> -<AUni ws="qvm-x-ame">vämu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3d96fafa-1c1d-4615-91ac-a8bfd4cfb5c8" ownerguid="f5156cde-9735-4249-920d-597fb0a7a8e3"> -<ExampleWords> -<AUni ws="en">broken, broken down, busted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that has broken?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="3d98d183-ada8-4b08-815d-afafc7822d94" ownerguid="2d0f45f3-2471-4d69-9429-76c51a12e2a8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mu; mo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mu; mo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="45846476-db8b-4639-bef8-780e6651a907" t="r" /> -</Morph> -<Msa> -<objsur guid="84097b64-d9df-441f-a9d3-d11d4b9d9ea0" t="r" /> -</Msa> -<Sense> -<objsur guid="788609d7-ea80-4813-aabb-8837acc21fd4" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="3d99e29d-cdf6-43e9-9173-13bfbfa10105" ownerguid="9d897083-b92e-4a74-99c9-536ddbd56329"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">leper</AUni> -<AUni ws="es">lepra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9849683a-78cb-4f69-bde3-7457cd883167" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="3d9f88b8-0119-43be-a2e5-31b392cb7dc5" ownerguid="b10eb88e-6f3f-4738-a771-0535e023196e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="3da8aead-9649-4eb7-97ee-8625e11ef3c3" ownerguid="19cca110-d755-4e05-835c-d10c609d477b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="3daa071a-2bfd-4a5e-804a-01802953ebfc" ownerguid="907c3cf2-76ef-47fd-b3ee-777ca3050cd7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3db825a9-77c4-49b2-b8a1-fccfc53cc451" ownerguid="9b158c9e-9ba5-4be2-a9a1-77ef888a3b06"> -<ExampleWords> -<AUni ws="en">impure, adulterated, mixed, polluted, tainted, diluted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is not pure?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="3dba39bc-48f2-4bcb-9357-c8fbed6922ca" ownerguid="9efa7949-de15-499a-b382-4560e06c4fb4"> -<Abbreviation> -<AUni ws="en">3.5.1.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.164" /> -<DateModified val="2022-9-23 16:55:8.164" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to promising to do something--to say that you will do something in the future.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33Y Promise</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Promise</AUni> -</Name> -<Questions> -<objsur guid="9eb88d3a-098d-416c-9498-ac1061af8e60" t="o" /> -<objsur guid="0c72a78b-4261-4391-9ccc-c897bb165461" t="o" /> -<objsur guid="0ed5b243-11cd-4441-90e2-d28a3ab416a0" t="o" /> -<objsur guid="b42350cd-2d42-4406-9906-ab39106accf8" t="o" /> -<objsur guid="0b1a12bb-5184-4e07-9764-148e5eb03621" t="o" /> -<objsur guid="0b66d65c-5c0d-4f76-87c8-1790d962916d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="3dbb9695-02d1-43d0-9e77-bc3a2754fc96" ownerguid="26a61321-a9d8-44e3-81c3-a83c85e1158e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="3dbbd658-7e8c-43b5-9acd-fd1770c0d1ad" ownerguid="df6302ad-0d24-4317-ad63-b99c6039aaab"> -<Form> -<AUni ws="qvm-x-ach">puywan; puyway</AUni> -<AUni ws="qvm-x-acl">puywan; puyway</AUni> -<AUni ws="qvm-x-akh">puywan; puyway</AUni> -<AUni ws="qvm-x-akl">puywan; puyway</AUni> -<AUni ws="qvm-x-ame">puywan; puyway</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3dbdc174-e189-4d50-a964-128cd5225259" ownerguid="b015f460-faeb-4aa5-b453-9e5e9ae061fe"> -<ExampleWords> -<AUni ws="en">antiquate, render obsolete</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to making something old fashioned by doing the same thing a new way?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3dbe1958-3e71-46a2-9094-8577ccc76a17" ownerguid="fa8e72a0-1bfe-4b49-a287-293b44213960"> -<Question> -<AUni ws="en">(1) There are a variety of adverbial clauses (other than conditional clauses) that sometimes require a special verb form. The meaning labels for these uses are coded according to the type of clause (purpose, concessive, etc.), whether any particular temporal deixis is part of the meaning, and under "co-occurrence restrictions," whether a particular conjunction is present. The types of clauses we might run into are:</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3dbfae5b-0639-4b39-98d2-47ad6fe2330f" ownerguid="b58ab18c-6ecb-420d-b1a2-2269f99dd788"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3dc5b56e-243f-4e4e-b250-97bd2f7ab8ba"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">muchuy</AUni> -<AUni ws="qvm-x-acl">muchuy</AUni> -<AUni ws="qvm-x-akh">muchuy</AUni> -<AUni ws="qvm-x-akl">muchuy</AUni> -<AUni ws="qvm-x-ame">muchuy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mutruy</AUni> -<AUni ws="qvm-x-acl">*mutruy</AUni> -<AUni ws="qvm-x-akh">*mutruy</AUni> -<AUni ws="qvm-x-akl">*mutruy</AUni> -<AUni ws="qvm-x-ame">*mutruy</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.525" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="092e3754-97f6-4d75-9a8a-cc6fa8076694" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mutruy</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="381a46a1-69c1-45b5-bb66-ff3b7f998d62" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="96c81b31-9e75-46ac-9768-1a43ac52534f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mutruy 
\entryTyp root 
\gENG famine 
\gSPN hambruna 
\e *mutruy 
\c N0 
\mp +FinalC 
\ach muchuy 
\akh muchuy 
\acl muchuy 
\akl muchuy 
\ame muchuy</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3dc65a87-af50-4d43-b6dd-1ae1e8a6da06" ownerguid="0ee5b933-f1ab-485f-894a-51fe239cb726"> -<ExampleWords> -<AUni ws="en">broadleaf, conifer, coniferous, cycad, deciduous, evergreen, fir, fruit tree, palm, pine, timber</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to general types of trees?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3dcbda4f-4255-40d8-b8b8-a2b65cb39815" ownerguid="be4a63e7-f4ba-4de2-be69-d26219d99cb6"> -<ExampleWords> -<AUni ws="en">kick, give something a kick, kick in (a door), boot, punt, stamp, stomp on, stub your toe on something</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to kicking something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3dcc4d9c-d6fc-4acf-9310-eb4909d235c6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rapra</AUni> -<AUni ws="qvm-x-acl">rapra</AUni> -<AUni ws="qvm-x-akh">rapra</AUni> -<AUni ws="qvm-x-akl">rapra</AUni> -<AUni ws="qvm-x-ame">rapra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rapra</AUni> -<AUni ws="qvm-x-acl">*rapra</AUni> -<AUni ws="qvm-x-akh">*rapra</AUni> -<AUni ws="qvm-x-akl">*rapra</AUni> -<AUni ws="qvm-x-ame">*rapra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.270" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="64b830af-5640-49d6-8e10-ca156ebc1aae" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rapra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="661ed029-3a87-4561-af56-94128312d401" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="29cffa74-eefc-42a2-82a1-2584e8266134" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rapra 
\entryTyp root 
\gENG leaf 
\gSPN oja 
\e *rapra 
\c N0 
\ach rapra 
\akh rapra 
\acl rapra 
\akl rapra 
\ame rapra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3dceeb2a-2b4d-4aae-8dcd-1fd4ab5c2970" ownerguid="c137b1b1-3dc5-4d81-9e2b-2fc5f6cc4e4e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pluck</AUni> -<AUni ws="es">arrancar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="83ef15ba-190f-48af-b607-f5c873b967f2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="3dcfe593-6744-4da8-a6ad-6a0c6912be3c" ownerguid="375a69e7-cdcf-492f-be86-470a6093a206"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sixteen</AUni> -<AUni ws="es">dieciséis</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f7505053-1254-4263-a62e-44406f20e5af" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="3dd0db3c-578a-432e-a1e8-4bf5fdd7e9d4" ownerguid="6af4876a-55e8-4f29-817e-fae11789e759"> -<Form> -<AUni ws="qvm-x-ach">valor</AUni> -<AUni ws="qvm-x-acl">valor</AUni> -<AUni ws="qvm-x-akh">valor</AUni> -<AUni ws="qvm-x-akl">valor</AUni> -<AUni ws="qvm-x-ame">valor</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="3dd12591-d9fc-48ac-be53-a7ebf1ec4019" ownerguid="5b9e7504-0b50-4041-b4f2-c46c0f9fd854"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">na</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">na</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">na</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">na</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">na</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7a9a0db9-5eb5-414c-9dd3-907a54abc86b" t="r" /> -</Morph> -<Msa> -<objsur guid="a91771ad-8785-4e3e-b6f8-793820e3a8bd" t="r" /> -</Msa> -<Sense> -<objsur guid="288deac0-6a0a-4593-80f3-852573e035fc" t="r" /> -</Sense> -</rt> -<rt class="PunctuationForm" guid="3dd54e9c-de56-432d-a86f-64a21c1e23f4"> -<Form> -<Str> -<Run ws="en">fqa</Run> -</Str> -</Form> -</rt> -<rt class="CmSemanticDomain" guid="3dd684e6-75d9-41f4-aaa3-fb0cb3c7d400" ownerguid="9bb173c6-cf38-47cd-803f-ebdf964ca2fc"> -<Abbreviation> -<AUni ws="en">4.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to responding to someone in trouble.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25M Encouragement, Consolation</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Respond to someone in trouble</AUni> -</Name> -<OcmCodes> -<Uni>748 Social Work</Uni> -</OcmCodes> -<Questions> -<objsur guid="292f6a33-ff27-4ce9-a81f-80508b6eaaf5" t="o" /> -<objsur guid="efafc853-df06-4cda-88b3-ffe5f22db079" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="51c2e2e4-438c-414b-bd15-773b664dd289" t="o" /> -<objsur guid="7ec98665-275f-4d57-8022-2740b9e90059" t="o" /> -<objsur guid="65926a7a-bc46-4a40-a2c9-bf84696a3903" t="o" /> -<objsur guid="06ac577a-4d61-4898-ac9d-e3f18b7504af" t="o" /> -<objsur guid="0a42fd83-3b30-4c85-bb68-f5132e9ffeee" t="o" /> -<objsur guid="6c282031-f1ca-492a-b94c-b48e74e6f25d" t="o" /> -<objsur guid="290f0994-ce8e-4922-975f-fa091f566823" t="o" /> -<objsur guid="0eda983b-633e-4b11-b5c8-28be60067782" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="3dda9c18-5c5c-4006-ad75-e7be86412510" ownerguid="cc086a9a-4167-45cf-b672-bf9e235905fb"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="3ddb10b2-71e4-415f-80fb-d9b26cd474e1" ownerguid="1e8c10a6-7869-4986-aa40-203151ad0582"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3dddcd57-36f8-4d5a-8ad6-0cee0517cec4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mana</AUni> -<AUni ws="qvm-x-acl">mana</AUni> -<AUni ws="qvm-x-akh">mana</AUni> -<AUni ws="qvm-x-akl">mana</AUni> -<AUni ws="qvm-x-ame">mana</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*maña.v</AUni> -<AUni ws="qvm-x-acl">*maña.v</AUni> -<AUni ws="qvm-x-akh">*maña.v</AUni> -<AUni ws="qvm-x-akl">*maña.v</AUni> -<AUni ws="qvm-x-ame">*maña.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.334" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="56e76dee-5c1f-4573-b4fb-b2973776f47f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*maña.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d1b37519-fe28-4857-af64-d58fd0f4f579" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dbcdaf0f-f881-4e36-a594-cd315b5d81bb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *maña.v 
\entryTyp root 
\gENG entreat 
\gSPN pedir 
\e *maña.v 
\c V2 
\ach mana 
\akh mana 
\acl mana 
\akl mana 
\ame mana 
\mcc *maña.v / ~_ DUR 1 
\mcc *maña.v / ~_ DUR [q] 
\mcc *maña.v / ~_ INTER 
\mcc *maña.v / ~_ NMN 
\mcc *maña.v / ~_ PASS [q] 
\mcc *maña.v / ~_ AG TOP | debe ser manága 
\mcc *maña.v / ~_ 1 TOP | debe ser manága</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3ddfef1a-5831-458c-88bb-75978d6a42e1" ownerguid="d6ab90a1-24c7-4fc5-a1ae-92c8f826f2b3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fall/be.on.back</AUni> -<AUni ws="es">caer/estar.por.espalda</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a5aa95aa-738a-45b1-9b07-243dada56361" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3de0ec93-5f6c-4102-b3fc-45d35c591c01" ownerguid="e54cd744-d106-4bcf-bd07-b8783c075c21"> -<ExampleWords> -<AUni ws="en">fashionable, be in fashion, be the fashion, in, be the in thing, chic, cult, designer, be the latest thing, be all the rage, trendy, be in vogue</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is fashionable?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3de12e00-bba6-405c-81d6-e60e63ea9371" ownerguid="3e24f147-d901-4552-b7cf-a8dac2cb30b7"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="3de24900-ef8f-4cd7-966c-70f1d387eb10" ownerguid="aab1c99c-625d-4540-b8d6-dee565b9672f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="73c2e63a-b154-4fc1-9b89-729989f1ba28" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="3dec69b4-a1c1-45ad-990f-88956b027333" ownerguid="41a0adc2-9949-4de7-afb7-335a653a6ce2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3dee4718-f385-4183-90d9-a581899a2230"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">adivina</AUni> -<AUni ws="qvm-x-acl">adivina</AUni> -<AUni ws="qvm-x-akh">adivina</AUni> -<AUni ws="qvm-x-akl">adivina</AUni> -<AUni ws="qvm-x-ame">adivina</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+adivinar.1</AUni> -<AUni ws="qvm-x-acl">+adivinar.1</AUni> -<AUni ws="qvm-x-akh">+adivinar.1</AUni> -<AUni ws="qvm-x-akl">+adivinar.1</AUni> -<AUni ws="qvm-x-ame">+adivinar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.647" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a21dd887-a570-4cba-9fd0-052cc3809e22" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+adivinar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a1a6f6da-365e-4d82-abeb-2bf667617fe1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0c11b3dc-380b-4922-baed-b193d8450177" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +adivinar.1 
\entryTyp root 
\gENG to.divine 
\gSPN adivinar 
\e +adivinar.1 
\c V1 
\ach adivina 
\akh adivina 
\acl adivina 
\akl adivina 
\ame adivina</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3def8a1b-35b0-4492-ad28-685070414ba5" ownerguid="536a2d3e-2303-43bc-bf53-379131eb5730"> -<ExampleWords> -<AUni ws="en">green, greenish, apple-green, bottle-green, chlorine, emerald, grass, grass-green, khaki, leaf-green, leek-green, lime-green, olive, pea, pea-green, peacock, sap green, sea-green, topaz, verdant, viridian</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What are the shades of green?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3df65933-9f5e-4015-81e3-c4f9336a0bbd" ownerguid="c0a67d43-5d34-4238-90b2-638acc817f11"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="3df7d174-83d1-4e17-890e-1272e171ca41" ownerguid="f899802d-bd32-427f-a101-c84219f7e14e"> -<Abbreviation> -<AUni ws="en">1.2.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.947" /> -<DateModified val="2022-9-23 16:55:7.947" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to metal.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>2G Metals</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Metal</AUni> -</Name> -<Questions> -<objsur guid="1623895c-b419-43c7-a5c1-4c42a5577b4a" t="o" /> -<objsur guid="7c7bda8c-0864-4838-8ddc-f0ab7c36eaa9" t="o" /> -<objsur guid="08fb2319-e702-459e-a0dd-d9a22d53ff0b" t="o" /> -<objsur guid="2e111894-f46f-4e2c-9f5c-9c153120dc77" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="7ee3ccb5-e6cb-4028-9af5-62ae782967b5" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="3df9d059-a6ff-4a29-9830-4dc564d7f282" ownerguid="fda0c1ac-5728-4ba2-9f8e-827f161b5bb1"> -<ExampleWords> -<AUni ws="en">alert, watchful, vigilant, keep your eyes peeled, keep your eyes open, look out, keep a lookout for</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to always watching to see if anything bad happens?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3dfa5f1b-ebc6-41b0-868b-97d29487c70c" ownerguid="f89a7c90-4a8f-44fc-9664-7b0e30c49569"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">car</AUni> -<AUni ws="es">carro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0b3b354a-b157-4e7e-b31f-6ba28da6c71b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="3dfada3b-f4a3-41e1-a988-33b1051e95ec" ownerguid="12454d31-d8bd-45e6-97a8-31273818231e"> -<Form> -<AUni ws="qvm-x-ach">huracán; huracan</AUni> -<AUni ws="qvm-x-acl">huracán; huracan</AUni> -<AUni ws="qvm-x-akh">huracán; huracan</AUni> -<AUni ws="qvm-x-akl">huracán; huracan</AUni> -<AUni ws="qvm-x-ame">huracán; huracan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3dfb3260-8651-42b3-9732-3721502052a1" ownerguid="5bb495a5-ab5b-4409-8cd1-e48b56401fad"> -<ExampleWords> -<AUni ws="en">take a short time, be for a short time, brief, briefly, briefness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something happens for a short time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3dfb5634-ebe2-470d-8b0f-591b912b9339" ownerguid="8a11e609-e88d-4247-8c5f-224ddb20de10"> -<ExampleWords> -<AUni ws="en">shabby</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe clothing?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3dfdcdd9-ed5e-4c77-9758-241c66975336" ownerguid="758bba23-3976-4c2c-a1da-7b0849b7dd2a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="3e00c600-24bb-4ca4-a3f7-5d9038485963" ownerguid="cf728419-ef0e-4351-865c-7b76d404a9d5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="3e018ee3-ca47-42d0-97bc-c3152620a42f" ownerguid="8e381793-573b-4e96-b532-33c89092d3bf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rocket</AUni> -<AUni ws="es">cohete</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e9c0a858-09cc-4534-b71a-fafeb7cb46e3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoInflAffMsa" guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" ownerguid="1610a4f0-ffe4-41ad-8fa2-90f1615ece63"> -<InflFeats> -<objsur guid="27dd9aa5-d7e8-447c-967e-762edd338dee" t="o" /> -</InflFeats> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="77569715-032a-48c9-97d9-e9802fb13f2e" t="r" /> -</Slots> -</rt> -<rt class="MoStemAllomorph" guid="3e03849d-53ec-471e-ac96-4d7585421483" ownerguid="fa174837-2f92-417f-818c-05a86c64b9e3"> -<Form> -<AUni ws="qvm-x-ach">tacra</AUni> -<AUni ws="qvm-x-acl">tacra</AUni> -<AUni ws="qvm-x-akh">takra</AUni> -<AUni ws="qvm-x-akl">takra</AUni> -<AUni ws="qvm-x-ame">takra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="3e052be9-a210-4ede-b854-fb2b22a08415" ownerguid="50adfc7d-79d2-4fb2-9ffd-76362080842e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.behind</AUni> -<AUni ws="es">estar.atras</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="51feb485-34f4-412a-bc3a-67316a521bc6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3e05bd0b-5246-40fa-8ada-2c341062c4d2" ownerguid="b3d3dd7d-0cb1-4c25-bcae-cc402fcfa3ea"> -<ExampleWords> -<AUni ws="en">neither eat nor drink, liquid diet, daytime fast, total fast</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to different kinds of fasts?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3e05eea3-a390-43e8-9cb7-152d851aea32"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chapa</AUni> -<AUni ws="qvm-x-acl">chapa</AUni> -<AUni ws="qvm-x-akh">chapa</AUni> -<AUni ws="qvm-x-akl">chapa</AUni> -<AUni ws="qvm-x-ame">chapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trapa</AUni> -<AUni ws="qvm-x-acl">*trapa</AUni> -<AUni ws="qvm-x-akh">*trapa</AUni> -<AUni ws="qvm-x-akl">*trapa</AUni> -<AUni ws="qvm-x-ame">*trapa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.68" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5dc55046-5351-421a-becb-16eabc7a33c9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trapa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="08f8059b-14df-46c3-845e-3a46da181564" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="19a556d6-2944-4fa9-bc19-2bbada0e0d03" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trapa 
\entryTyp root 
\gENG sit 
\gSPN sentarse 
\e *trapa 
\c V1 
\ach chapa 
\akh chapa 
\acl chapa 
\akl chapa 
\ame chapa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="3e06506f-e821-488c-9be9-42267c0e6c0d" ownerguid="6334b0e6-6de2-4f5c-94b6-caae5357ddb4"> -<Form> -<AUni ws="qvm-x-ach">langui</AUni> -<AUni ws="qvm-x-acl">langui; langui; langue</AUni> -<AUni ws="qvm-x-akh">lanqi</AUni> -<AUni ws="qvm-x-akl">lanqi; lanqi; lanqe</AUni> -<AUni ws="qvm-x-ame">lanqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3e068caf-b8cd-4677-934a-a6d100e3a3fe" ownerguid="cd8b2a8b-687b-42e9-91e7-cfb8812b64ee"> -<ExampleWords> -<AUni ws="en">mistake, misprint, spelling mistake, slip of the tongue, error, typographical error, typo</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a mistake in writing or speaking?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="3e0809e5-2807-4f2c-bb37-350f6168c434" ownerguid="6f8d4578-3c91-47b5-a3c5-a3004e9f6e65"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -<Sense> -<objsur guid="1b926284-5562-4cf3-8ad2-65536a715093" t="r" /> -</Sense> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="3e0cb08e-f924-4737-a489-3b32295615ca" ownerguid="e5246c0e-798c-439d-8749-30ef44e4521f" /> -<rt class="CmDomainQ" guid="3e0cc3d0-a5c9-41ea-9602-1945fe1270d4" ownerguid="284433df-7b37-4e63-a614-78520c483213"> -<ExampleWords> -<AUni ws="en">walk, stalk, charge, run down, prowl</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) How do lions move?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3e1121ca-9fe4-4e30-bb6b-46425b3938c0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">talentu; talento</AUni> -<AUni ws="qvm-x-acl">talentu; talentu; talento</AUni> -<AUni ws="qvm-x-akh">talentu; talento</AUni> -<AUni ws="qvm-x-akl">talentu; talentu; talento</AUni> -<AUni ws="qvm-x-ame">talentu; talento</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+talento</AUni> -<AUni ws="qvm-x-acl">+talento</AUni> -<AUni ws="qvm-x-akh">+talento</AUni> -<AUni ws="qvm-x-akl">+talento</AUni> -<AUni ws="qvm-x-ame">+talento</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.784" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cb88b4c7-91dc-4a42-aee9-762ffed8db03" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+talento</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="04d5c58f-b000-46f0-909b-a9f982020773" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5dabf427-d6ec-4910-9c96-6ee8df98474b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +talento 
\entryTyp root 
\gENG talent 
\gSPN talento 
\e +talento 
\c N0 
\ach talentu / ~_# 
\ach talento / _# 
\akh talentu / ~_# 
\akh talento / _# 
\acl talentu / ~_# 
\acl talentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl talento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl talentu / ~_# 
\akl talentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl talento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame talentu / ~_# 
\ame talento / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="3e11ed6b-8bbc-431d-b290-415b1eb030a9" ownerguid="9b63f4be-db36-4c49-be7b-8d5500e46367"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3e1569c3-3d28-40c7-be31-9244a2d4529a" ownerguid="18b3ca02-18fe-4ab5-8709-c20957a0a2fb"> -<ExampleWords> -<AUni ws="en">snob, prig</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to a proud person?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3e1713b2-17fd-41cb-8114-67d15657ebe7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">paña</AUni> -<AUni ws="qvm-x-acl">paña</AUni> -<AUni ws="qvm-x-akh">paña</AUni> -<AUni ws="qvm-x-akl">paña</AUni> -<AUni ws="qvm-x-ame">paña</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*paña</AUni> -<AUni ws="qvm-x-acl">*paña</AUni> -<AUni ws="qvm-x-akh">*paña</AUni> -<AUni ws="qvm-x-akl">*paña</AUni> -<AUni ws="qvm-x-ame">*paña</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.689" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0de7a66e-6746-431c-9ed1-9c4afa274ddf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*paña</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="903e74b4-2a51-4678-91f9-b3b1f74e584c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cfbd6379-8a04-4f51-ac78-ccbc155cf3c9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *paña 
\entryTyp root 
\gENG frolic 
\gSPN correr 
\e *paña 
\c V1 
\ach paña 
\akh paña 
\acl paña 
\akl paña 
\ame paña</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3e17178d-5dac-41dc-b9e9-6cb8d519a1dd" ownerguid="cbc0a8f5-9cba-41d2-a7e5-565fbf09c8c4"> -<ExampleWords> -<AUni ws="en">smile, smile at, grin, wide grin, big smile, half smile, slight smile, smirk, crack a smile, beam</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to smiling?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3e179873-5e21-4511-bdc3-d2587785da3d" ownerguid="67e57493-d286-4271-b877-f63f962dddf1"> -<ExampleWords> -<AUni ws="en">circumference, around</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words refer to how big around an area is?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3e17ddd6-beae-4fa0-8051-5e06f1064064" ownerguid="1e419f7a-7363-46bc-8044-157ed0b40ccd"> -<ExampleWords> -<AUni ws="en">hold in the fist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to holding something with the hand closed?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3e1be7e8-41bb-4a3c-ad63-ee8cc640c1c9" ownerguid="0bac846b-10fa-4a97-ab51-5fae1db19d81"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3e1bf327-fc33-4051-afe1-f210b4b2592f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">carca</AUni> -<AUni ws="qvm-x-acl">carca</AUni> -<AUni ws="qvm-x-akh">karka</AUni> -<AUni ws="qvm-x-akl">karka</AUni> -<AUni ws="qvm-x-ame">karka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*karka</AUni> -<AUni ws="qvm-x-acl">*karka</AUni> -<AUni ws="qvm-x-akh">*karka</AUni> -<AUni ws="qvm-x-akl">*karka</AUni> -<AUni ws="qvm-x-ame">*karka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.943" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="edb9e7db-ef05-4326-8701-d4388c60eaa6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*karka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7abd7118-d5d1-4d2a-8689-6f1dc45cae97" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="725bed9d-fbfa-4bdd-b5e4-89718faadfb2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *karka 
\entryTyp root 
\gENG manure 
\gSPN bosta 
\e *karka 
\c N0 
\ach carca 
\akh karka 
\acl carca 
\akl karka 
\ame karka</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="3e1f27a1-bd93-491e-93be-278b15111c60" ownerguid="971d4ac1-f78a-4449-ad2c-46a914490b15"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="3e249782-7687-4f36-913b-87c2fde74739" ownerguid="95ac4eb7-e429-4eef-beb0-84e52e7eaf12"> -<Category> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</Category> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="87605aa2-e67d-4db0-b80f-f0903d389651" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="94ecd265-98cd-4a61-bb71-1f526310c1c8" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="3e24f147-d901-4552-b7cf-a8dac2cb30b7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ticlampa</AUni> -<AUni ws="qvm-x-acl">ticlampa</AUni> -<AUni ws="qvm-x-akh">tiklampa</AUni> -<AUni ws="qvm-x-akl">tiklampa</AUni> -<AUni ws="qvm-x-ame">tiklampa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tikllampa</AUni> -<AUni ws="qvm-x-acl">*tikllampa</AUni> -<AUni ws="qvm-x-akh">*tikllampa</AUni> -<AUni ws="qvm-x-akl">*tikllampa</AUni> -<AUni ws="qvm-x-ame">*tikllampa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.886" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e394dd21-5ac0-4a4b-a942-1ded0d1486f4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tikllampa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3de12e00-bba6-405c-81d6-e60e63ea9371" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="93972514-1932-4985-b015-2c47afe67983" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tikllampa 
\entryTyp root 
\gENG somersault 
\gSPN rodar 
\e *tikllampa 
\c V1 
\ach ticlampa 
\akh tiklampa 
\acl ticlampa 
\akl tiklampa 
\ame tiklampa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3e2ad7d0-bc59-4009-90f3-58240429e4ed" ownerguid="844f922b-6fb6-49aa-864b-b1c49edaa1ae"> -<ExampleWords> -<AUni ws="en">ring, bracelet, watch, armband, cuff link, bangle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to jewelry worn on the hands and arms?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3e2c61f0-c2d2-49c5-aae0-e9cb8ecb6338" ownerguid="1428d897-2755-4fc4-981c-bc4fb7cc2e06"> -<Form> -<AUni ws="qvm-x-ach">raju</AUni> -<AUni ws="qvm-x-acl">raju; raju; rajo</AUni> -<AUni ws="qvm-x-akh">raju</AUni> -<AUni ws="qvm-x-akl">raju; raju; rajo</AUni> -<AUni ws="qvm-x-ame">rahu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="3e2c8dd9-1512-4557-a7a8-559a23e7592a"> -<Analyses> -<objsur guid="6de6ebb0-8896-4615-8718-e7ce8f9da605" t="o" /> -</Analyses> -<Checksum val="-1743135738" /> -<Form> -<AUni ws="qvm-x-akh">waqashpan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="3e2d74cc-fe59-48fd-9ac8-2adc30b8ad30" ownerguid="08239f53-daa5-47a6-9f39-29a9064b0c27"> -<ExampleWords> -<AUni ws="en">join (n), joint, junction, connection, contact point, intersection, seam</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to the place where two things are joined together?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3e2ee506-b109-4990-a709-e91251eabfb2" ownerguid="a6e5baf2-4823-4627-a09f-4c503514006a"> -<Form> -<AUni ws="qvm-x-ach">ila; ilä</AUni> -<AUni ws="qvm-x-acl">ila; ilä</AUni> -<AUni ws="qvm-x-akh">ila; ilä</AUni> -<AUni ws="qvm-x-akl">ila; ilä</AUni> -<AUni ws="qvm-x-ame">ila; ilä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3e31d660-f84e-485e-bb0f-1192c1dd4048" ownerguid="2351f52a-8822-46ad-99c4-7ef526e94a6f"> -<ExampleWords> -<AUni ws="en">again, once again, once more, yet again, one more time, afresh, fresh, another time, another time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that an event happens again?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3e32894b-00fc-4383-b887-86728532b89f" ownerguid="fa32115e-e389-47bd-91e1-61779172ccf2"> -<ExampleWords> -<AUni ws="en">infection, contagion, curse, spirit, psychosomatic, bacteria, virus, germ, chill, exposure, chemical imbalance, genetic defect</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What things cause disease?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3e32a277-da77-4a82-9704-a5b2caceccc8" ownerguid="68dcc8eb-e314-4701-9118-22f59ba41e40"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">plant</AUni> -<AUni ws="es">sembrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="53a66030-9d75-43a9-987f-32528946f07f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="3e33e752-9030-4282-9f85-285385316bf4" ownerguid="fa29531c-ac63-4371-8eea-5ecf01abde4e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gape</AUni> -<AUni ws="es">boquear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c4245745-5410-4a99-b890-9cceeeca1e3e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3e396766-08b6-4c09-bc46-1053946f872a" ownerguid="ed7930df-e7b4-43c9-a11a-b09521276b57"> -<ExampleWords> -<AUni ws="en">perfume, deodorant, deodorizer, incense, scent, air-freshener</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(21) What things do people use to get rid of or cover up a bad smell?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3e3b63b0-ea86-4749-beba-e287e25462ed"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuta</AUni> -<AUni ws="qvm-x-acl">cuta</AUni> -<AUni ws="qvm-x-akh">kuta</AUni> -<AUni ws="qvm-x-akl">kuta</AUni> -<AUni ws="qvm-x-ame">kuta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kuta.v</AUni> -<AUni ws="qvm-x-acl">*kuta.v</AUni> -<AUni ws="qvm-x-akh">*kuta.v</AUni> -<AUni ws="qvm-x-akl">*kuta.v</AUni> -<AUni ws="qvm-x-ame">*kuta.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.23" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d42f9739-acd3-4e8b-8252-6a12413a8d87" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kuta.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="90506446-fd27-49e8-9652-e82314ce02cf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a2bb3f67-3e5d-404a-aa52-0657d7052f8f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kuta.v 
\entryTyp root 
\gENG punch 
\gSPN punzar 
\e *kuta.v 
\c V2 
\ach cuta 
\akh kuta 
\acl cuta 
\akl kuta 
\ame kuta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3e3c10e3-76b8-44be-af75-fdee312428d8" ownerguid="67d10a00-fda8-4a3a-becd-f3ae3b00fcca"> -<ExampleWords> -<AUni ws="en">shocking, horrible, horrifying, shattering</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that causes someone to feel shocked?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3e3da000-108c-4649-85ee-8e7411f1d1df" ownerguid="07f3e3d0-92f8-4873-802a-1b033a5b9c3f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">squat</AUni> -<AUni ws="es">agacharse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="16543cb9-ae82-4e0a-be9d-de21cdd3a1a4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="3e3e9af5-1be0-449c-9ffd-98891fb64bb6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">paluma</AUni> -<AUni ws="qvm-x-acl">paluma</AUni> -<AUni ws="qvm-x-akh">paluma</AUni> -<AUni ws="qvm-x-akl">paluma</AUni> -<AUni ws="qvm-x-ame">paluma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+paloma</AUni> -<AUni ws="qvm-x-acl">+paloma</AUni> -<AUni ws="qvm-x-akh">+paloma</AUni> -<AUni ws="qvm-x-akl">+paloma</AUni> -<AUni ws="qvm-x-ame">+paloma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.669" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b67ba03f-aad8-49bd-b44d-681ffe9b9387" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+paloma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5df42573-788c-42de-a8e3-3a1c28700676" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a9b02e2f-faca-4883-a79d-d29fae1e1ea2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +paloma 
\entryTyp root 
\gENG dove 
\gSPN paloma 
\e +paloma 
\c N0 
\ach paluma 
\akh paluma 
\acl paluma 
\akl paluma 
\ame paluma</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="3e41f57f-74b9-4501-9a04-7cae94373f4f" ownerguid="19ab9769-74cb-4aa5-9788-592301c934fb"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">GEN 14.15 Tsay marca caycan Damasco marcapa norte cag lädunpami.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="3e43bb2b-3be4-4bcf-ad0f-710994eda4bd" ownerguid="8dd50c7c-53e0-4a97-9d2d-c09497e792d3"> -<Form> -<AUni ws="qvm-x-ach">manatsayga; manatsäga</AUni> -<AUni ws="qvm-x-acl">manatsayga; manatsäga</AUni> -<AUni ws="qvm-x-akh">manatsayqa; manatsäqa</AUni> -<AUni ws="qvm-x-akl">manatsayqa; manatsäqa</AUni> -<AUni ws="qvm-x-ame">manatsayqa; manatsäqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="3e46bb5e-d14e-4712-a3df-84c347f726bf" ownerguid="e74d0d95-ce52-46f8-9f6d-67c48695bd1f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="05e9865f-08b5-460c-8ef8-922c8efe8e72" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="65f54332-10cf-4ec1-aa4d-dce6fc89e63a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="3e476adb-695e-48c3-a9b6-9a07934eac7a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pasma</AUni> -<AUni ws="qvm-x-acl">pasma</AUni> -<AUni ws="qvm-x-akh">pasma</AUni> -<AUni ws="qvm-x-akl">pasma</AUni> -<AUni ws="qvm-x-ame">pasma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pasma.n</AUni> -<AUni ws="qvm-x-acl">*pasma.n</AUni> -<AUni ws="qvm-x-akh">*pasma.n</AUni> -<AUni ws="qvm-x-akl">*pasma.n</AUni> -<AUni ws="qvm-x-ame">*pasma.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.747" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4a07702a-1732-49d5-bf05-9e0e69d935d6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pasma.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="64c7443d-becc-4b6c-b0e1-48c8033c1aef" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d47faa1a-c65b-4e3c-9ae3-5d0d197e311f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pasma.n 
\entryTyp root 
\gENG a.sickness 
\gSPN una.enfermedad 
\e *pasma.n 
\c N0 
\ach pasma 
\akh pasma 
\acl pasma 
\akl pasma 
\ame pasma</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="3e48dcd9-21da-40ac-b0f9-1c0cb94ebcb5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsinca</AUni> -<AUni ws="qvm-x-acl">tsinca</AUni> -<AUni ws="qvm-x-akh">tsinka</AUni> -<AUni ws="qvm-x-akl">tsinka</AUni> -<AUni ws="qvm-x-ame">tsinka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chinka</AUni> -<AUni ws="qvm-x-acl">*chinka</AUni> -<AUni ws="qvm-x-akh">*chinka</AUni> -<AUni ws="qvm-x-akl">*chinka</AUni> -<AUni ws="qvm-x-ame">*chinka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.315" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3b74df3a-cead-4977-9a17-85cbeea5f24e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chinka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b8ced0aa-cbcf-46e5-bbd5-8a3ef6423817" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="47299433-89e5-4877-bae9-f23f29f63db9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chinka 
\entryTyp root 
\gENG to.hide 
\gSPN esconderse 
\e *chinka 
\c V2 
\ach tsinca 
\akh tsinka 
\acl tsinca 
\akl tsinka 
\ame tsinka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="3e4b180b-3153-498d-859a-9cca21027d26"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">entrena</AUni> -<AUni ws="qvm-x-acl">entrena</AUni> -<AUni ws="qvm-x-akh">entrena</AUni> -<AUni ws="qvm-x-akl">entrena</AUni> -<AUni ws="qvm-x-ame">entrena</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+entrenar</AUni> -<AUni ws="qvm-x-acl">+entrenar</AUni> -<AUni ws="qvm-x-akh">+entrenar</AUni> -<AUni ws="qvm-x-akl">+entrenar</AUni> -<AUni ws="qvm-x-ame">+entrenar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.477" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d6762b0d-9a61-4741-ab9b-a8aafed309a8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+entrenar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="607cd1d2-ad55-46c0-bfb4-8563f5fed94d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ed9401e1-eff1-48e2-a5f0-1d776002cdcb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +entrenar 
\entryTyp root 
\gENG train 
\gSPN entrenar 
\e +entrenar 
\c V1 
\ach entrena 
\akh entrena 
\acl entrena 
\akl entrena 
\ame entrena</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="3e501544-b8a2-428d-8d24-19efdcb9a2b8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">a:nir</AUni> -<AUni ws="qvm-x-acl">a:nir</AUni> -<AUni ws="qvm-x-akh">a:nir</AUni> -<AUni ws="qvm-x-akl">a:nir</AUni> -<AUni ws="qvm-x-ame">a:nir</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*a:nir</AUni> -<AUni ws="qvm-x-acl">*a:nir</AUni> -<AUni ws="qvm-x-akh">*a:nir</AUni> -<AUni ws="qvm-x-akl">*a:nir</AUni> -<AUni ws="qvm-x-ame">*a:nir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.769" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="686d1659-18c6-47af-b6d4-6dd68d8b620a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*a:nir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3bbffc4d-2c8a-47cb-95c2-906cf6789761" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="149c967c-0a25-479f-bcaf-80d537bdab01" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *a:nir 
\entryTyp root 
\gENG it.is.remember 
\gSPN se.acuerda.que 
\e *a:nir 
\c R0 
\mp +FinalC 
\ach a:nir 
\akh a:nir 
\acl a:nir 
\akl a:nir 
\ame a:nir 
\mcc *a:nir / ~_ TOP</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="3e546c11-bcb6-4024-b2f3-c15be40e257f" ownerguid="8add7f4d-333b-4b2c-9999-48a14162152b"> -<Abbreviation> -<AUni ws="en">4.3.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.235" /> -<DateModified val="2022-9-23 16:55:8.235" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a lack of self-control.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88K Self-Control, Lack of Self-Control; 88G' Extravagant Living, Intemperate Living</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Lack self-control</AUni> -</Name> -<Questions> -<objsur guid="5de13bb9-dad1-4e4a-81bb-8ca6efd8d959" t="o" /> -<objsur guid="ca74d4ad-f7d8-4586-9d66-5efb3d7e976f" t="o" /> -<objsur guid="d0d50f6c-4c59-4bcf-887b-dc09a836bbe5" t="o" /> -<objsur guid="8eb3d235-d6ac-431b-8b25-317ca1c18225" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="3e669818-6f4c-4423-b65c-1f4503b67cc3" ownerguid="de7b8df5-83a7-4456-a63a-1075ff17dbaf"> -<ExampleWords> -<AUni ws="en">blemished, defaced, marred</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that has a blemish on it?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3e681d99-2cd7-4ca8-a88b-214ea2d19ef9" ownerguid="2e02f747-b24a-43f1-90d2-96053fc8615d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cut.tuber</AUni> -<AUni ws="es">cortar.tuber</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2059c1db-1ce2-4ab8-9b8c-1dcd84307713" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3e683400-6cb1-4e00-9ff7-c671a05d7916" ownerguid="e1ac83c2-352f-4a2e-9612-99e66d6d3d0c"> -<ExampleWords> -<AUni ws="en">slavery, bondage, servitude</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the condition of being a slave?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3e6855d7-88d8-417d-b50b-de5a0a60f724" ownerguid="5c770098-2c91-4a9c-bfa0-a7ffaa871a7f"> -<ExampleWords> -<AUni ws="en">wages, salary, income, benefits</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the money a person receives for his work?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3e68fb18-4399-4b6d-bfcf-d3d3bf3f9a5e" ownerguid="251b17bd-5796-43ce-ba10-54140a99a1e0"> -<ExampleWords> -<AUni ws="en">that is, that means, i.e.</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate equivalence?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3e690c3b-9712-4c08-bc12-d2ff29ca08c3" ownerguid="0b0801a3-8a0c-40ea-bf41-07df80bd0d5f"> -<ExampleWords> -<AUni ws="en">dry, dusty, thirsty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe the ground when it is dry?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3e694d80-c839-4d02-b1e2-ca81eb39fc68" ownerguid="8a9a46db-4b68-4a68-ab33-057314c49af4"> -<Form> -<AUni ws="qvm-x-ach">cawa</AUni> -<AUni ws="qvm-x-acl">cawa</AUni> -<AUni ws="qvm-x-akh">kawa</AUni> -<AUni ws="qvm-x-akl">kawa</AUni> -<AUni ws="qvm-x-ame">kawa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3e69797d-7ebd-4edb-99c1-1e39ccfa8120" ownerguid="989afba4-ae9a-4839-aae7-39bc6c381672"> -<Form> -<AUni ws="qvm-x-ach">limushna</AUni> -<AUni ws="qvm-x-acl">limushna</AUni> -<AUni ws="qvm-x-akh">limushna</AUni> -<AUni ws="qvm-x-akl">limushna</AUni> -<AUni ws="qvm-x-ame">limushna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="3e716b2b-d6e1-4b01-87e4-bc68988f629c" ownerguid="7a656e80-04f9-4fc6-8b2c-f32144812ecb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chair</AUni> -<AUni ws="es">silleta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ae2a0601-f811-42f5-96f5-75cc9dc27100" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="3e738725-24d9-424e-85aa-6130dd5cf4aa" ownerguid="c0d08d72-d213-4b19-81a1-183cf3eab937"> -<Form> -<AUni ws="qvm-x-ach">wayna</AUni> -<AUni ws="qvm-x-acl">wayna</AUni> -<AUni ws="qvm-x-akh">wayna</AUni> -<AUni ws="qvm-x-akl">wayna</AUni> -<AUni ws="qvm-x-ame">wayna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="3e774275-0ff7-45e7-b90a-b54d468978ae" ownerguid="99e8a6c6-700e-42bf-b4ba-516e36c9c64c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lion</AUni> -<AUni ws="es">león</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2866f7ae-4d9a-403d-a1ff-c318b24dc289" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="3e77b243-a1ee-4695-a362-3eecd5c3bfd6" ownerguid="fd3d1cd7-8b7e-4a63-846a-9e5ecd83dd0f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="e49d5e90-0245-442d-83c3-9789c1a06b80" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="0577c6d5-3409-4031-aa46-31e021524fcb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3e79a18d-425d-4551-b8a3-771aa7beed10" ownerguid="edbfc928-049c-4cb7-8c88-8e8af38287c7"> -<ExampleWords> -<AUni ws="en">hurt someone, break someone's heart, grow apart, break up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to problems between people who love each other?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3e7b8318-ca3f-4722-89a2-a2745aede60e" ownerguid="ce499998-ef67-40df-bdce-53ec0a1e0875"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3e85ef4d-9d4b-4988-a70d-64f21c1b80c7" ownerguid="bc8d0ad4-6ebf-4fa0-bc7e-60e8ec9c43db"> -<ExampleWords> -<AUni ws="en">eye</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to an eye?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3e8606b7-a314-4aea-a161-41cfd4009c80"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mímica; mi:mica</AUni> -<AUni ws="qvm-x-acl">mímica; mi:mica</AUni> -<AUni ws="qvm-x-akh">mímica; mi:mica</AUni> -<AUni ws="qvm-x-akl">mímica; mi:mica</AUni> -<AUni ws="qvm-x-ame">mímica; mi:mica</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mímica</AUni> -<AUni ws="qvm-x-acl">+mímica</AUni> -<AUni ws="qvm-x-akh">+mímica</AUni> -<AUni ws="qvm-x-akl">+mímica</AUni> -<AUni ws="qvm-x-ame">+mímica</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.457" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f1543491-e30b-449e-9c10-f66fe86c959b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mímica</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="96f1fa13-28bb-417a-a251-7e88cc912657" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="319a4ffd-ec50-4f91-81f6-21101cf5937d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mímica 
\entryTyp root 
\gENG 
\gSPN 
\e +mímica 
\c N0 
\ach mímica / _# 
\ach mi:mica / ~_# 
\akh mímica / _# 
\akh mi:mica / ~_# 
\acl mímica / _# 
\acl mi:mica / ~_# 
\akl mímica / _# 
\akl mi:mica / ~_# 
\ame mímica / _# 
\ame mi:mica / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3e8c2e51-4c0e-4adc-8166-d6a6fc39edd3" ownerguid="84d67c87-86ff-4e71-8a26-abe048132f8f"> -<ExampleWords> -<AUni ws="en">razor, safety razor, razor blade, razor strap, shaving cream, shaving soap, shaving brush</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What tools are used to shave?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="3e8c9bfc-bacb-40a7-8f98-b072981b8be8" ownerguid="7a386228-f92e-436c-9fd1-c3f3abab6906"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">truca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">truca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">truka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">truka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">truka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b1cdb80c-35c5-4979-883c-de2444ca71b8" t="r" /> -</Morph> -<Msa> -<objsur guid="9f321175-ae6b-4195-86db-ec5e5e30463b" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="3e942362-4f09-4717-ab30-e9bec8d6de17" ownerguid="92e441df-7e56-4e2c-b205-79a95800f567"> -<ExampleWords> -<AUni ws="en">compete with, try to beat, gain an advantage over, oppose, engage, fight, struggle, vie</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to competing with someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3e942749-5d23-4820-90ae-6131bc6962c1" ownerguid="cf337287-c9fa-43d2-93c4-284f45e262c0"> -<ExampleWords> -<AUni ws="en">infectious, contagious, catching</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe a disease that people can get easily?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="3e94437c-324b-4421-a269-9bfc77ce769d"> -<Analyses> -<objsur guid="18290e88-b731-466a-a69f-aefda0747274" t="o" /> -</Analyses> -<Checksum val="94828136" /> -<Form> -<AUni ws="qvm-x-akh">peorraqchari</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="3e94fc79-2484-4848-ae0c-be7362858a27" ownerguid="d21db541-4122-465f-9db5-4c76f5e84426"> -<ExampleWords> -<AUni ws="en">the breadwinner, wage-earner, salaried, on a salary</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to someone who earns money?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3e96acab-996f-4657-b1d3-5c35bc00e0ed" ownerguid="45421256-0af0-4ec8-92b6-340d343009ed"> -<Form> -<AUni ws="qvm-x-ach">arröba</AUni> -<AUni ws="qvm-x-acl">arröba</AUni> -<AUni ws="qvm-x-akh">arröba</AUni> -<AUni ws="qvm-x-akl">arröba</AUni> -<AUni ws="qvm-x-ame">arröba</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="3e9895f5-b1e8-4244-9ef7-acfcbe1306ec" ownerguid="eddfebbd-7e9b-411a-b5d7-478fda696ff2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3e9a5c80-c1cc-4d0a-bdbc-81003a24c55f" ownerguid="100e62a6-b6f4-4b30-b317-0517d6b102a9"> -<ExampleWords> -<AUni ws="en">intimidation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something that causes someone to feel shy?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3e9bfdc6-507f-4ef1-b30f-07d4f631417f" ownerguid="e6cce7f5-6441-4d6e-8d80-af1b477342ac"> -<Form> -<AUni ws="qvm-x-ach">casëru</AUni> -<AUni ws="qvm-x-acl">casëru; casëru; casëro</AUni> -<AUni ws="qvm-x-akh">casëru</AUni> -<AUni ws="qvm-x-akl">casëru; casëru; casëro</AUni> -<AUni ws="qvm-x-ame">casëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="3e9ed499-7b7e-494f-978d-7d8d9c9397cb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ranra</AUni> -<AUni ws="qvm-x-acl">ranra</AUni> -<AUni ws="qvm-x-akh">ranra</AUni> -<AUni ws="qvm-x-akl">ranra</AUni> -<AUni ws="qvm-x-ame">ranra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ranra.n</AUni> -<AUni ws="qvm-x-acl">*ranra.n</AUni> -<AUni ws="qvm-x-akh">*ranra.n</AUni> -<AUni ws="qvm-x-akl">*ranra.n</AUni> -<AUni ws="qvm-x-ame">*ranra.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.256" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b49f5869-e8e8-4f00-8d7e-d4890c494e12" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ranra.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f6124550-3261-47d8-b284-b83ac48c4e5e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="66460329-9ab7-401e-aeb7-b4246feb01c5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ranra.n 
\entryTyp root 
\gENG 
\gSPN 
\e *ranra.n 
\c N0 
\ach ranra 
\akh ranra 
\acl ranra 
\akl ranra 
\ame ranra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3ea27a24-17eb-4823-aff4-cf8fdb13ef54" ownerguid="ca752706-1c9e-43e7-bd17-845c4736ccd8"> -<ExampleWords> -<AUni ws="en">estimate (n), approximation, ballpark figure, round figure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a number that is approximate?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3ea3712c-71d5-4673-bf50-f41b40e4f5a7" ownerguid="76ad9fa6-4fde-4c80-a977-15677369edc2"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="3ea4c495-b837-4310-8741-38d89fa63e0b" ownerguid="61a28bdc-c05c-49d8-b47e-d54a9082156c"> -<Abbreviation> -<AUni ws="en">9.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.700" /> -<DateModified val="2022-9-23 16:55:8.700" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate epistemic moods. Epistemic moods have the whole proposition in their scope and indicate the degree of commitment of the speaker to the truth or future truth of the proposition. They may be combined with any of the tenses, either in the same morpheme or in combinations of morphemes. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>71 Mode</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Epistemic moods</AUni> -</Name> -<Questions> -<objsur guid="a84e78a3-43ab-44ef-a5a5-5e35fefbc108" t="o" /> -<objsur guid="fab1d9ba-d84c-43d6-9841-c263727e1d68" t="o" /> -<objsur guid="5e45f5e4-15eb-49c0-a6cb-4fedf2374e7d" t="o" /> -<objsur guid="7a9066b5-34e7-4777-b4a2-100155dbf929" t="o" /> -<objsur guid="0af9a02d-9a85-4e5b-b10d-81fa31290fd7" t="o" /> -<objsur guid="a3343f49-2ba8-4159-9cc5-7f76c09bd655" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="ad7cc381-1dc6-4fc2-94a4-acd5bf7a11da" t="o" /> -<objsur guid="af6fe2d6-576d-473f-8a32-583779d95d1d" t="o" /> -<objsur guid="84eb31d3-b932-4b3b-b945-85884ea856c7" t="o" /> -<objsur guid="85c5b8f7-8086-493d-b70d-a361bfa56f09" t="o" /> -<objsur guid="e0c32642-7c51-4e23-a776-f63f2f2f936d" t="o" /> -<objsur guid="1a635032-6e13-4a56-aa03-6c6a015c502e" t="o" /> -<objsur guid="7c022751-a9f9-412d-8b27-8cd03b797e2d" t="o" /> -<objsur guid="ca495e57-a8e0-4294-bfe3-7b7995dc96c7" t="o" /> -<objsur guid="f883266a-146a-41c7-b1db-85120840c3a8" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="3ea52505-aa6c-4f28-b475-f15ac1820ec1" ownerguid="61f52196-a8b2-496d-96ea-8c15dc7d377a"> -<Abbreviation> -<AUni ws="en">4.9.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.296" /> -<DateModified val="2022-9-23 16:55:8.296" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to demon possession--when a demon or spirit influences or controls the behavior of a person. Use this domain for all words related to the relationship between spirits and people, including communication between people and spirits. Also use this domain for words referring to casting out demons--causing a demon to stop influencing or controlling a person.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>53K Exorcism</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Demon possession</AUni> -</Name> -<Questions> -<objsur guid="491fc428-ca50-4455-9621-2ba3b706a8ce" t="o" /> -<objsur guid="50d44417-9bd4-437f-910f-081e3ee70374" t="o" /> -<objsur guid="890d564d-17c4-487b-b7be-2be70697dbc2" t="o" /> -<objsur guid="4e91a25f-0986-4f46-b3f2-861ad252f66a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="3eaba7ff-1463-4598-b7c5-1d154eabb694" ownerguid="375a906d-ce35-4c69-939c-a263cf448a31"> -<Form> -<AUni ws="qvm-x-ach">flëti; flëti</AUni> -<AUni ws="qvm-x-acl">flëti; flëti; flëte</AUni> -<AUni ws="qvm-x-akh">flëti; flëti</AUni> -<AUni ws="qvm-x-akl">flëti; flëti; flëte</AUni> -<AUni ws="qvm-x-ame">flëti; flëti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3eb04e00-fd28-40fb-887b-7d4480a0d0f1" ownerguid="e3b02c76-d7ad-4d40-8fba-486bb3dcb1e2"> -<Form> -<AUni ws="qvm-x-ach">disparäti; disparäti</AUni> -<AUni ws="qvm-x-acl">disparäti; disparäti; disparäte</AUni> -<AUni ws="qvm-x-akh">disparäti; disparäti</AUni> -<AUni ws="qvm-x-akl">disparäti; disparäti; disparäte</AUni> -<AUni ws="qvm-x-ame">disparäti; disparäti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3eb0b1e0-c492-49cf-85a5-bd3ddf881611" ownerguid="f9d020d6-b129-4bb8-9509-3b4a6c27482e"> -<ExampleWords> -<AUni ws="en">interest, curio, attraction, entertainment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something that is interesting?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3eb236ab-933a-4af5-9aa2-0c16e9dcae24" ownerguid="bba30b56-6cd8-4542-81ab-f983cf1354bd"> -<ExampleWords> -<AUni ws="en">long distance, long haul, long range, a fur piece</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a long distance?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3eb23dc9-a8d9-440e-8b9c-8bc3b1ec0a88" ownerguid="c4d1812b-e3d4-4191-ad65-5443673770c2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StStyle" guid="3eb5354a-9f55-4165-a411-eca7f9d2a845" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="0" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Writing System Abbreviation</Uni> -</Name> -<Rules> -<Prop fontsize="8000" fontsizeUnit="mpt" italic="invert"></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<UserLevel val="1" /> -</rt> -<rt class="CmDomainQ" guid="3eb5468a-a00b-45a5-9020-a5ecf594d808" ownerguid="42be1634-72ca-4a20-80a1-ba726e5cd1d2"> -<ExampleWords> -<AUni ws="en">hack, cut repeatedly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to cutting something with many slices?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3eb68211-89d3-4f01-bdc7-a0b03855e4de" ownerguid="1f4efae7-1029-4b66-80ee-802459a7baf5"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">When did it happen <relative to> his death?</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">relative to, in relation to, before or after</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to one time in relation to another time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3eb877e9-d681-47fb-b817-470e2a8ee807" ownerguid="410a3d81-290f-416b-8012-3aa16eaa9e55"> -<ExampleWords> -<AUni ws="en">dress, skirt, blouse, underwear, slip, petticoat, bra, shoe, sock, nylons, stockings, hat, glove, sweater, coat, nightgown, maternity dress, belt, scarf, shawl, veil</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to pieces of women's clothing?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3ebcb976-eb76-4782-aacb-9f1c2514f994"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alca:bu</AUni> -<AUni ws="qvm-x-acl">alca:bu; alca:bu; alca:bo</AUni> -<AUni ws="qvm-x-akh">alca:bu</AUni> -<AUni ws="qvm-x-akl">alca:bu; alca:bu; alca:bo</AUni> -<AUni ws="qvm-x-ame">alca:bu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+al.cabo</AUni> -<AUni ws="qvm-x-acl">+al.cabo</AUni> -<AUni ws="qvm-x-akh">+al.cabo</AUni> -<AUni ws="qvm-x-akl">+al.cabo</AUni> -<AUni ws="qvm-x-ame">+al.cabo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.729" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="86bc2487-be0b-4aae-8f0e-bb9a45207583" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+al.cabo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fef4f06c-633e-45f8-b820-b5a63eff7937" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8768e719-7051-47d3-9ad5-ed0d0364d431" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +al.cabo 
\entryTyp root 
\gENG warily 
\gSPN al.cabo 
\e +al.cabo 
\c R0 
\ach alca:bu 
\akh alca:bu 
\acl alca:bu / _# 
\acl alca:bu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl alca:bo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl alca:bu / _# 
\akl alca:bu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl alca:bo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame alca:bu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoInflAffMsa" guid="3ebd5f60-74ad-4165-b305-1627b85d8d55" ownerguid="52068c0e-41e0-4d0b-9224-902e04c927f0"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="fda4c591-1349-4f9e-ab87-905ae2aa25e1" t="r" /> -</Slots> -</rt> -<rt class="LexSense" guid="3ec14543-41a8-47e6-b939-7adbb7780b84" ownerguid="967d4311-3d9f-45dc-bda3-d60f324c7313"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">skinny</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c4459ad0-de38-45e6-845a-098200d5574b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="3ec38ec1-2665-4697-a56b-a5662620a8a1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ma:pa</AUni> -<AUni ws="qvm-x-acl">ma:pa</AUni> -<AUni ws="qvm-x-akh">ma:pa</AUni> -<AUni ws="qvm-x-akl">ma:pa</AUni> -<AUni ws="qvm-x-ame">ma:pa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mapa</AUni> -<AUni ws="qvm-x-acl">+mapa</AUni> -<AUni ws="qvm-x-akh">+mapa</AUni> -<AUni ws="qvm-x-akl">+mapa</AUni> -<AUni ws="qvm-x-ame">+mapa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.336" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="70d79283-bee9-4e04-825b-ab9a7afe36c1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mapa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="182e948f-306a-4aef-a16d-48713c8124f5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a67caa25-92b4-4ba9-b22d-4c6c9993faff" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mapa 
\entryTyp root 
\gENG map 
\gSPN 
\e +mapa.sp 
\c N0 
\ach ma:pa 
\akh ma:pa 
\acl ma:pa 
\akl ma:pa 
\ame ma:pa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3ec3a65a-b31c-45c5-91ba-3d3f0061f7d5" ownerguid="5ea9301a-9906-4e81-97cf-48ee95a54c63"> -<ExampleWords> -<AUni ws="en">influence, sway, bias, pull strings, work on, affect, impact, make an impression on, prejudice, bribe, bring into line, lead by the nose</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to influencing someone to change his thinking or decision?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3ec43596-23e7-43fa-8853-9c69b6683451"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">punu</AUni> -<AUni ws="qvm-x-acl">punu; puno</AUni> -<AUni ws="qvm-x-akh">punu</AUni> -<AUni ws="qvm-x-akl">punu; puno</AUni> -<AUni ws="qvm-x-ame">punu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puñu</AUni> -<AUni ws="qvm-x-acl">*puñu</AUni> -<AUni ws="qvm-x-akh">*puñu</AUni> -<AUni ws="qvm-x-akl">*puñu</AUni> -<AUni ws="qvm-x-ame">*puñu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.11" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0757cb8b-604d-4d62-aa1d-105843c740e2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puñu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9da0fb89-0053-4a69-95bf-8b732fe8d281" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e64b1ceb-08db-4407-8f97-2022ce97fb11" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puñu 
\entryTyp root 
\gENG sleep 
\gSPN dormir 
\e *puñu 
\c V1 
\ach punu 
\akh punu 
\acl punu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl puno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl punu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl puno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame punu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3ec6e423-488a-47d6-993f-cbb8cd2bd4e6" ownerguid="60b8dcfd-49a0-4ab4-82a7-2c5058b325ae"> -<ExampleWords> -<AUni ws="en">left, remain, be left over, survive, be still standing, to spare, to go, in hand</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to something remaining?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3ec8287e-f199-495c-825c-7844d33c39cb" ownerguid="b3be00a9-41a4-42ae-ba51-320b5000a563"> -<ExampleWords> -<AUni ws="en">conduit, culvert, ditch, foxhole, mine, pit, pothole, rut, subway, shaft, trench, trough, tunnel, well</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to man-made holes in the ground?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3ec83a46-5f75-4664-8390-399c91bfb6d0" ownerguid="b1688009-474d-4e2e-a137-acc1e32a435f"> -<ExampleWords> -<AUni ws="en">how thick, be ten centimeters thick</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words indicate how thick something is?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3ec9a829-56bc-42c4-8ab4-71a650d0b025" ownerguid="fc193988-26ca-49e9-849a-b12456d98792"> -<ExampleWords> -<AUni ws="en">craziness, insanity, lunacy, madness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something someone does that is crazy?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3ec9fbad-4bd2-48f5-b9d7-4ac32811986c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mutsa</AUni> -<AUni ws="qvm-x-acl">mutsa</AUni> -<AUni ws="qvm-x-akh">mutsa</AUni> -<AUni ws="qvm-x-akl">mutsa</AUni> -<AUni ws="qvm-x-ame">mutsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mucha</AUni> -<AUni ws="qvm-x-acl">*mucha</AUni> -<AUni ws="qvm-x-akh">*mucha</AUni> -<AUni ws="qvm-x-akl">*mucha</AUni> -<AUni ws="qvm-x-ame">*mucha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.487" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4254e311-a255-4270-8f52-a86c7b9aa2c9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mucha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="26162987-9dac-4257-8ea6-42a4d8d85b0d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="57b6a765-2c9c-4b5f-8b57-3466b65cda43" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mucha 
\entryTyp root 
\gENG kiss 
\gSPN besar 
\e *mucha 
\c V2 N0 
\ach mutsa 
\akh mutsa 
\acl mutsa 
\akl mutsa 
\ame mutsa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="3ecdd64b-4226-4e72-8458-df93d4dbdeb7" ownerguid="33c3655d-5220-4b47-a7e9-d0d3b28d3998"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="3ece58b5-f5c4-4ce9-9708-3b108c2982ec" ownerguid="99e04950-3a2f-49f1-a518-c7db96a93855"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">strength</AUni> -<AUni ws="es">fuerza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5ccb0107-0e79-409c-86de-194924c13651" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="3ed071bd-3f4e-47c9-92bc-20a1f608d05a" ownerguid="2061f38d-0bf7-4dcb-af69-9c6a12014be8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">?</AUni> -<AUni ws="es">jora</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="076e33c8-29bc-49cc-a58a-c435a3c30dea" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="3ed1ace6-903f-4928-b934-05fbce2441e0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">colcha</AUni> -<AUni ws="qvm-x-acl">colcha</AUni> -<AUni ws="qvm-x-akh">colcha</AUni> -<AUni ws="qvm-x-akl">colcha</AUni> -<AUni ws="qvm-x-ame">colcha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+colcha</AUni> -<AUni ws="qvm-x-acl">+colcha</AUni> -<AUni ws="qvm-x-akh">+colcha</AUni> -<AUni ws="qvm-x-akl">+colcha</AUni> -<AUni ws="qvm-x-ame">+colcha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.142" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ee7b7615-c7b9-49b6-b7b3-92eeb0df41a9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+colcha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1c74880e-16da-4da1-93a4-8b1d32f083e4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d3c023e0-10f2-444e-9bff-ebe4bd58fcf5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +colcha 
\entryTyp root 
\gENG pad 
\gSPN 
\e +colcha 
\c N0 
\ach colcha 
\akh colcha 
\acl colcha 
\akl colcha 
\ame colcha 
\i PRO 31.22 Quiquinmi colchancunatapis awacun.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="3ed43ff0-25b5-49e3-998d-8404b1b1febc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">hile:ra</AUni> -<AUni ws="qvm-x-acl">hile:ra</AUni> -<AUni ws="qvm-x-akh">hile:ra</AUni> -<AUni ws="qvm-x-akl">hile:ra</AUni> -<AUni ws="qvm-x-ame">hile:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hilera</AUni> -<AUni ws="qvm-x-acl">+hilera</AUni> -<AUni ws="qvm-x-akh">+hilera</AUni> -<AUni ws="qvm-x-akl">+hilera</AUni> -<AUni ws="qvm-x-ame">+hilera</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.710" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="08e133a2-e67a-43e0-a6d2-406a0b01f9f0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hilera</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fc1055c6-7840-4067-8881-4cb4fca2bade" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="037164f9-e13f-4c8d-8ffd-dd1dd65c64c1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hilera 
\entryTyp root 
\gENG 
\gSPN 
\e +hilera 
\c N0 
\ach hile:ra 
\akh hile:ra 
\acl hile:ra 
\akl hile:ra 
\ame hile:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3ed8a812-ee3d-45b8-b45c-d51bf0f24b44" ownerguid="0622d3f7-1ab2-482b-9f9c-9c101cd35182"> -<ExampleWords> -<AUni ws="en">term, semester, trimester, quarter, midterm</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used for a part of a school year?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3ed9c166-8953-47a8-89ba-c9b027155cf5" ownerguid="237588e0-0c25-4490-8a91-7da45950d3f2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="e0def57b-c217-4a4f-a0bc-df98a1923603" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="3edb307f-be46-40b6-a6a4-ae075b40258c" ownerguid="3f37bb6f-cd32-4430-aa35-700acabbee15"> -<Abbreviation> -<AUni ws="en">8.4.6.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that indicate that something will start to happen at some time and continue for some time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Since, from</AUni> -</Name> -<Questions> -<objsur guid="c15a4424-91f4-4a49-ab11-66fe5be5f629" t="o" /> -<objsur guid="0e9c2e14-a793-4554-9777-60a03a81afea" t="o" /> -<objsur guid="ea859d68-b19e-46e4-aaed-6e441ff9ff85" t="o" /> -<objsur guid="faaaab67-9e3d-40f4-9728-7ae44e4b31f8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="3ede5194-23d1-435e-b8ad-e5d1b55c6587" ownerguid="c1722a8f-173e-4169-b0de-2d53df2a428a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1 V2/V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">PRF</AUni> -<AUni ws="es">PRF</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="85e3456d-a3a6-4fb2-848b-ab16e0bc1f03" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="3edfdc67-855f-4fcd-8a8d-83e1e19b4d19" ownerguid="888e536c-c808-4be9-93af-d820bd655942"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8ce952c6-9d1e-4ad6-b106-14d29df5bf5f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3ee01e32-7293-4290-9625-7e4225cba55f" ownerguid="4526b41d-6f3c-494f-93a2-ea3e9705269d"> -<ExampleWords> -<AUni ws="en">delay, make someone late, hold someone up, keep, detain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to something delaying someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3ee55dad-42a1-4e4a-9ecb-a9e8e58311fe" ownerguid="af62c8f6-43c7-4c44-a0d1-ab9bcff8e26f"> -<ExampleWords> -<AUni ws="en">likewise</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to doing the same thing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3ee645e9-8233-4a5a-ab72-f5f7c7151680" ownerguid="99861dcb-c6ca-4e50-a19a-efadbb10c2cf"> -<ExampleWords> -<AUni ws="en">familiar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe an experience or feeling that you have had before?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3ee68483-1382-48b1-b82e-20b3bf0bc1be" ownerguid="9483f1c8-e35e-444e-954d-347735049bd3"> -<Form> -<AUni ws="qvm-x-ach">lagüna</AUni> -<AUni ws="qvm-x-acl">lagüna</AUni> -<AUni ws="qvm-x-akh">lagüna</AUni> -<AUni ws="qvm-x-akl">lagüna</AUni> -<AUni ws="qvm-x-ame">lagüna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="3ee8fa9d-8c04-445c-ad78-d15f56ac2a93"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">limpia</AUni> -<AUni ws="qvm-x-acl">limpia</AUni> -<AUni ws="qvm-x-akh">limpia</AUni> -<AUni ws="qvm-x-akl">limpia</AUni> -<AUni ws="qvm-x-ame">limpia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+limpiar</AUni> -<AUni ws="qvm-x-acl">+limpiar</AUni> -<AUni ws="qvm-x-akh">+limpiar</AUni> -<AUni ws="qvm-x-akl">+limpiar</AUni> -<AUni ws="qvm-x-ame">+limpiar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.94" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="847ec14f-f4d1-4253-9099-ec302cd2dab4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+limpiar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="38c9e629-28ac-43da-8657-4c9dbe7a8496" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="705974df-727d-43eb-b37d-2d298ef3e25f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +limpiar 
\entryTyp root 
\gENG clean 
\gSPN limpiar 
\e +limpiar 
\c V2 
\ach limpia 
\akh limpia 
\acl limpia 
\akl limpia 
\ame limpia</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="3eea2cba-44f3-4381-8cc2-dcb00d88a7cd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">esponja</AUni> -<AUni ws="qvm-x-acl">esponja</AUni> -<AUni ws="qvm-x-akh">esponja</AUni> -<AUni ws="qvm-x-akl">esponja</AUni> -<AUni ws="qvm-x-ame">esponja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+esponja</AUni> -<AUni ws="qvm-x-acl">+esponja</AUni> -<AUni ws="qvm-x-akh">+esponja</AUni> -<AUni ws="qvm-x-akl">+esponja</AUni> -<AUni ws="qvm-x-ame">+esponja</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.498" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="50225cf0-3766-4e72-b86f-8399e2e2c231" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+esponja</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="128edf2b-37fe-4e2e-8d42-c840ca63a159" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="45bef8a9-d44e-4f91-a2c5-44edb458005e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +esponja 
\entryTyp root 
\gENG sponge 
\gSPN 
\e +esponja 
\c N0 
\ach esponja 
\akh esponja 
\acl esponja 
\akl esponja 
\ame esponja</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3eecf862-60aa-49a1-93f4-faa077e78b6f" ownerguid="a1e39ec2-25be-4665-9e71-c431c03e7a20"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.empty</AUni> -<AUni ws="es">ser.vacío</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c1396c04-8309-428b-8bef-180ea43141da" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="3eed1726-bb10-45b6-8efc-02b2c7b4e737" ownerguid="c63f35a0-2718-4406-aebf-404012ab4276"> -<Form> -<AUni ws="qvm-x-ach">reina</AUni> -<AUni ws="qvm-x-acl">reina</AUni> -<AUni ws="qvm-x-akh">reina</AUni> -<AUni ws="qvm-x-akl">reina</AUni> -<AUni ws="qvm-x-ame">reina</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="3ef36790-ba95-4f35-b689-79eb7fe3edba"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">togu</AUni> -<AUni ws="qvm-x-acl">togu; togu; togo</AUni> -<AUni ws="qvm-x-akh">toqu</AUni> -<AUni ws="qvm-x-akl">toqu; toqu; toqo</AUni> -<AUni ws="qvm-x-ame">tuqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tuqu.n</AUni> -<AUni ws="qvm-x-acl">*tuqu.n</AUni> -<AUni ws="qvm-x-akh">*tuqu.n</AUni> -<AUni ws="qvm-x-akl">*tuqu.n</AUni> -<AUni ws="qvm-x-ame">*tuqu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.27" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0496d775-8d78-4385-96d5-f66a0d17873a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tuqu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d5a088d8-5bbf-47e0-b9c0-b00e19038621" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="585e1936-4755-401e-8bd8-352bf63ca413" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tuqu.n 
\entryTyp root 
\gENG 
\gSPN alma 
\e *tuqu.n 
\c N0 
\ach togu 
\akh toqu 
\acl togu / _# 
\acl togu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl togo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl toqu / _# 
\akl toqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl toqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tuqu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="3ef49824-0a6d-4a95-9dd8-7fcdfd39bc7c" ownerguid="d08be0cd-3aca-4b2f-897a-31716c4de596"> -<Form> -<AUni ws="qvm-x-ach">liuta</AUni> -<AUni ws="qvm-x-acl">liuta</AUni> -<AUni ws="qvm-x-akh">liwta</AUni> -<AUni ws="qvm-x-akl">liwta</AUni> -<AUni ws="qvm-x-ame">liwta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3ef5dee7-8db3-4d35-a2fb-a35f1356c945" ownerguid="19ba7cf1-e7bb-41f2-a7d2-3c52fcc858df"> -<Form> -<AUni ws="qvm-x-ach">puma</AUni> -<AUni ws="qvm-x-acl">puma</AUni> -<AUni ws="qvm-x-akh">puma</AUni> -<AUni ws="qvm-x-akl">puma</AUni> -<AUni ws="qvm-x-ame">puma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="3ef71921-8840-4e39-996a-69ae077b5f05" ownerguid="3fb94643-163e-4454-8d2e-3b638a5cf32b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3ef7d749-ff24-4227-9f02-b7156951ad51" ownerguid="49c878dd-277f-4bc9-b8ad-9ba192709108"> -<ExampleWords> -<AUni ws="en">cat, feline</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to cats?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3ef808d4-a554-4f8e-961d-7d0f6c9f7105" ownerguid="237998a4-2383-4cc1-bddf-1681e0939c01"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3ef84bc3-3210-4f61-b8dd-c509821e7984"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chi:vu</AUni> -<AUni ws="qvm-x-acl">chi:vu; chi:vu; chi:vo</AUni> -<AUni ws="qvm-x-akh">chi:vu</AUni> -<AUni ws="qvm-x-akl">chi:vu; chi:vu; chi:vo</AUni> -<AUni ws="qvm-x-ame">chi:vu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+chivo</AUni> -<AUni ws="qvm-x-acl">+chivo</AUni> -<AUni ws="qvm-x-akh">+chivo</AUni> -<AUni ws="qvm-x-akl">+chivo</AUni> -<AUni ws="qvm-x-ame">+chivo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.325" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f43b9caa-13fc-4fc5-8c73-1778cf213f68" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+chivo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="633d3e03-c114-4e59-a49f-c01fcb951bb9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7089f32e-5c4d-4a28-ab45-0bbaa78b2043" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +chivo 
\entryTyp root 
\gENG goat 
\gSPN chivo 
\e +chivo 
\c N0 
\ach chi:vu 
\akh chi:vu 
\acl chi:vu / _# 
\acl chi:vu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chi:vo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chi:vu / _# 
\akl chi:vu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chi:vo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chi:vu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3efb2de6-b026-4515-b0c9-d548f8b15606" ownerguid="66abfbe5-e011-48de-8773-905f1b1ce215"> -<ExampleWords> -<AUni ws="en">mold, shape, form, throw a pot</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What does a potter do with clay?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3f011b07-c808-4010-b389-564cd379791f" ownerguid="5ac3cb4d-76e4-43e0-90e9-e33a3755e800"> -<Form> -<AUni ws="qvm-x-ach">lamparín; lamparin</AUni> -<AUni ws="qvm-x-acl">lamparín; lamparin</AUni> -<AUni ws="qvm-x-akh">lamparín; lamparin</AUni> -<AUni ws="qvm-x-akl">lamparín; lamparin</AUni> -<AUni ws="qvm-x-ame">lamparín; lamparin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3f068d6e-b99d-4e75-856f-c2d4472da658" ownerguid="cb95189c-8c74-465b-af07-48e08dbf7c39"> -<ExampleWords> -<AUni ws="en">emotional, sensitive, sentimental, passionate, intense, intensity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe someone who has strong emotions?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="3f069313-4827-4fc5-b73b-b9fbd42ca38c" ownerguid="0b7b9a1c-588b-475a-ac14-00f0999cbfe9"> -<Abbreviation> -<AUni ws="en">4.8.4.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.286" /> -<DateModified val="2022-9-23 16:55:8.286" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to reconciling with someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>40A Reconciliation; 40 Reconciliation, Forgiveness</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Reconcile</AUni> -</Name> -<Questions> -<objsur guid="1d84f6e9-0dd5-4637-87a5-d06c484121b3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="3f0809ba-2f72-4e39-9fb6-ef483707eb34" ownerguid="3038da8a-1773-466f-90b4-14ca63e62fc3"> -<Form> -<AUni ws="qvm-x-ach">rashta</AUni> -<AUni ws="qvm-x-acl">rashta</AUni> -<AUni ws="qvm-x-akh">rashta</AUni> -<AUni ws="qvm-x-akl">rashta</AUni> -<AUni ws="qvm-x-ame">rashta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3f0a3096-1984-4f68-8e1c-98faa6383e06" ownerguid="140f9770-8631-49fe-9438-d11576c75ffc"> -<Form> -<AUni ws="qvm-x-ach">negociu; negocio</AUni> -<AUni ws="qvm-x-acl">negociu; negociu; negocio</AUni> -<AUni ws="qvm-x-akh">negociu; negocio</AUni> -<AUni ws="qvm-x-akl">negociu; negociu; negocio</AUni> -<AUni ws="qvm-x-ame">negociu; negocio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3f0ca873-b941-4c1b-82a7-a0ca91b7704f" ownerguid="0105615f-0a96-4d08-ab00-ca4b4473de39"> -<ExampleWords> -<AUni ws="en">miser</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who refuses to share?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3f0e629e-93e6-4a6a-a57a-d3b3ea845954" ownerguid="ef943f35-c22e-4bac-8925-5e3eb9c5a286"> -<Form> -<AUni ws="qvm-x-ach">bötas</AUni> -<AUni ws="qvm-x-acl">bötas</AUni> -<AUni ws="qvm-x-akh">bötas</AUni> -<AUni ws="qvm-x-akl">bötas</AUni> -<AUni ws="qvm-x-ame">bötas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="3f154064-ef0c-4aa2-b666-054ea036ad14" ownerguid="ca328b05-cfbd-4c55-8463-13e237905f32"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">post</AUni> -<AUni ws="es">posta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5936219b-0ba3-4e93-a77b-1f444f98eba0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3f155a8f-ca1d-42c8-a554-d1eacba6502b" ownerguid="0fabc72a-ce97-41f3-8a2d-2f27eae09499"> -<ExampleWords> -<AUni ws="en">square, rectangle, cube, block</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something that is square?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3f15d334-68da-4ece-8688-fe1f4ac9465f" ownerguid="75a664f1-1c69-4a49-be7b-ad0be56cade0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">guinea.pig</AUni> -<AUni ws="es">cuy</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cb341ec1-e805-4446-a81d-ed1239a1689f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="3f19bd62-99b6-4524-a081-45f4014ccf08" ownerguid="9886f609-95e4-4b61-8d4b-07bf0eb003de"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3f1b8895-cd2c-4f80-9171-148a99536b61"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">atsqui; atsqui:</AUni> -<AUni ws="qvm-x-acl">atsque:; atsqui; atsque</AUni> -<AUni ws="qvm-x-akh">atski; atski:</AUni> -<AUni ws="qvm-x-akl">atske:; atski; atske</AUni> -<AUni ws="qvm-x-ame">atski; atski:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*achki:</AUni> -<AUni ws="qvm-x-acl">*achki:</AUni> -<AUni ws="qvm-x-akh">*achki:</AUni> -<AUni ws="qvm-x-akl">*achki:</AUni> -<AUni ws="qvm-x-ame">*achki:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.639" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7cccd906-601d-4b2b-8981-a315ba7310ff" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*achki:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dd3d1090-d908-474d-bad0-bec9bacfe4a5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="933c64d8-3d12-4427-a91a-a192262aac43" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *achki: 
\entryTyp root 
\gENG to.light 
\gSPN alumbrar 
\e *achki: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach atsqui foreshortened 
\ach atsqui: 
\akh atski foreshortened 
\akh atski: 
\mp +underlong 
\acl atsque: 
\acl atsqui foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl atsque foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\mp +underlong 
\akl atske: 
\akl atski foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl atske foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame atski foreshortened 
\ame atski:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="3f21f68a-2cb8-4f1d-9b45-a0fff10821ab" ownerguid="0757343a-8784-48c2-b926-81322f3d4295"> -<Form> -<AUni ws="qvm-x-ach">capataz</AUni> -<AUni ws="qvm-x-acl">capataz</AUni> -<AUni ws="qvm-x-akh">capataz</AUni> -<AUni ws="qvm-x-akl">capataz</AUni> -<AUni ws="qvm-x-ame">capataz</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StTxtPara" guid="3f22f35c-3cd7-4dbe-ab01-9ce2bdf60ddc" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">mikaman. </Run> -<Run ws="en">\tr < V2 *mikUv2 > 1O 3</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="d44681b4-4022-4435-9f4d-7f96b0c84f3b" t="o" /> -<objsur guid="5f972a4e-3740-47bd-a442-00891c0a63ca" t="o" /> -</Segments> -</rt> -<rt class="CmDomainQ" guid="3f24223a-608f-4490-888f-d1481aedaee1" ownerguid="b93bdfa4-486c-44a0-8266-557ccdc78b31"> -<ExampleWords> -<AUni ws="en">ash, blackened wood, charred remains</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What is left behind by a fire?</AUni> -</Question> -</rt> -<rt class="MoDerivAffMsa" guid="3f2628c2-c996-47dc-b083-d75626ba04eb" ownerguid="3430f8ab-f9ad-47af-a0f0-315210361573"> -<FromMsFeatures> -<objsur guid="561bebab-a99f-46ca-a2ba-21b1abff8715" t="o" /> -</FromMsFeatures> -<FromPartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</FromPartOfSpeech> -<ToMsFeatures> -<objsur guid="afde1c9a-2780-4c3f-8864-3274f31f962e" t="o" /> -</ToMsFeatures> -<ToPartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</ToPartOfSpeech> -</rt> -<rt class="LexEntry" guid="3f2a2fc1-284f-4ee3-a5bd-62123a87d4c1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ancha</AUni> -<AUni ws="qvm-x-acl">ancha</AUni> -<AUni ws="qvm-x-akh">ancha</AUni> -<AUni ws="qvm-x-akl">ancha</AUni> -<AUni ws="qvm-x-ame">ancha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*antra.v</AUni> -<AUni ws="qvm-x-acl">*antra.v</AUni> -<AUni ws="qvm-x-akh">*antra.v</AUni> -<AUni ws="qvm-x-akl">*antra.v</AUni> -<AUni ws="qvm-x-ame">*antra.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.798" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="04ea667d-49ba-4057-941f-3ad4972fb00f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*antra.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="78efd21c-0956-475b-9a61-1024f3a127b6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ad58df32-1584-4b93-9eb4-5b619cc5aad4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *antra.v 
\entryTyp root 
\gENG spread.legs 
\gSPN piernas.exten 
\e *antra.v 
\c V1 
\ach ancha 
\akh ancha 
\acl ancha 
\akl ancha 
\ame ancha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3f2c6a2a-ec81-4cf1-be48-086c119d6a87" ownerguid="fd7e03f8-61c9-47e9-afa4-ab8917db03a5"> -<ExampleWords> -<AUni ws="en">bribe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the gift?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3f2e1f53-f349-4cd2-8b28-5cebe4316ffe" ownerguid="de6b15d3-6409-4998-b03d-903133f4ad70"> -<ExampleWords> -<AUni ws="en">sing, serenade, yodel, chant, croon, burst into song, wail, warble</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to singing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3f3078ac-f31e-4ff9-a221-826b7737ff34" ownerguid="b6b73d41-e23f-4f22-b01e-7e75f4115fce"> -<ExampleWords> -<AUni ws="en">be meant to do something, supposed to do something, be intended to do something, be designed to do something</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words indicate that something is done or made for a particular purpose?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3f311b41-5b8e-4380-b10a-667d071acb82" ownerguid="e7f94aea-ba50-481d-b640-d5cd8bdedc72"> -<ExampleWords> -<AUni ws="en">urinate, pee, piss, take a piss, take a leak</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to urinating?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3f350278-7be5-4e61-8a49-f6daa1c1e46e" ownerguid="26fb2e94-b8fe-4216-9057-ca17a71df83b"> -<ExampleWords> -<AUni ws="en">relax, rest, unbend, unwind, feel at home, feel at ease, be at ease, take it easy, take things easy, make yourself at home, loosen up, let your hair down, let yourself go</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling relaxed?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="3f37bb6f-cd32-4430-aa35-700acabbee15" ownerguid="18a6684f-d324-45ee-855c-44d473916b14"> -<Abbreviation> -<AUni ws="en">8.4.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to starting something, or for something beginning to happen.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>68A Begin, Start</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Start something</AUni> -</Name> -<Questions> -<objsur guid="6bbbd697-2258-4745-b6f7-ff06852deccd" t="o" /> -<objsur guid="0f9c82ce-465a-47b4-8245-ab581067bea3" t="o" /> -<objsur guid="d09b08ad-4097-4fb9-a6ba-90c1f42141a1" t="o" /> -<objsur guid="049fbcee-0d2c-4d70-9d1c-5c9d01419512" t="o" /> -<objsur guid="5939a8d7-d4f7-4cad-b508-446a964db6dd" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="d47b69e0-ab4a-4111-aec3-2c889a4e70b3" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="5261497b-6beb-4db1-9de2-10b5f6f8ec69" t="o" /> -<objsur guid="2c42f822-2079-440c-b3b7-7725b6a8db8b" t="o" /> -<objsur guid="86615235-8cdd-413d-b722-11bc5a4653d6" t="o" /> -<objsur guid="590570c5-3267-4966-b0db-2af7a5105c83" t="o" /> -<objsur guid="3edb307f-be46-40b6-a6a4-ae075b40258c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="3f395989-5b47-4c95-b0c8-d3cb2b46c5ec" ownerguid="9554a768-c252-4032-ab95-6d3f4229275f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">burlap</AUni> -<AUni ws="es">crudo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dd4e0802-222a-4a24-8d8e-54c5f3e7b529" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="3f39d04c-4ed1-427c-b381-f75416b3f8a8" ownerguid="1116e52e-f466-4211-b8df-a1154ad6f512"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="148ec25f-def0-4bd9-97d3-3df8e8469642" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="96b5b766-4157-49a1-ad21-6abc1fa96394" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3f39f3b2-ee37-4225-a344-2a0d71dd8597" ownerguid="aba3f7f1-9e13-4b48-acbb-3bf6d6bfa0e8"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The shopkeeper <weighed> the rice.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">weigh</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to weighing something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3f3a3b6a-9054-4522-b8fe-3ac50702bd00" ownerguid="ac4a9f08-539d-41a4-8b40-70f9144bc18e"> -<Form> -<AUni ws="qvm-x-ach">harina</AUni> -<AUni ws="qvm-x-acl">harina</AUni> -<AUni ws="qvm-x-akh">harina</AUni> -<AUni ws="qvm-x-akl">harina</AUni> -<AUni ws="qvm-x-ame">harina</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="3f3d5f08-d5ea-42f1-8ad7-4da9f23ff4ee"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">injerta</AUni> -<AUni ws="qvm-x-acl">injerta</AUni> -<AUni ws="qvm-x-akh">injerta</AUni> -<AUni ws="qvm-x-akl">injerta</AUni> -<AUni ws="qvm-x-ame">injerta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+injertar</AUni> -<AUni ws="qvm-x-acl">+injertar</AUni> -<AUni ws="qvm-x-akh">+injertar</AUni> -<AUni ws="qvm-x-akl">+injertar</AUni> -<AUni ws="qvm-x-ame">+injertar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.822" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="53488182-9707-4d7a-b789-9680cb98141e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+injertar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c13084f5-f68e-4a48-9fe8-338b875c21b5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3ab4261e-b985-47c0-b77d-f2cc14cad8f5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +injertar 
\entryTyp root 
\gENG graft 
\gSPN injertar 
\e +injertar 
\c V2 
\ach injerta 
\akh injerta 
\acl injerta 
\akl injerta 
\ame injerta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3f402b8b-141a-4e77-982e-e649d476d051" ownerguid="fa9fba9b-536a-4054-9957-ffd3e6165b3f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="649c752d-789b-4fe9-a719-2fedef70e6c6" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="b6aad208-7a9d-4d2c-bab5-84a4d21fec56" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3f458610-09e3-49fc-b8a7-a3b152df0d07" ownerguid="b9a4b336-080a-4973-a7e3-a9af10fc347c"> -<ExampleWords> -<AUni ws="en">stomach, tummy, digestive tract, lining</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the parts of the stomach?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="3f482434-e92a-4f29-ba8b-e317dc1c1aa9" ownerguid="5fef74b3-10a2-4ee5-9b51-61d80776ff05"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mika</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d7a52586-e3cb-47a4-bb0f-95c98b351afd" t="r" /> -</Morph> -<Msa> -<objsur guid="f69667c3-a01d-49bd-8565-d45a284be800" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="3f4c559f-ab4f-411f-a23b-d2396c977005" ownerguid="a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f"> -<Abbreviation> -<AUni ws="en">2.3.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being able to see something--words that describe something that can be seen, something that cannot be seen, something that is easy to see, or something that is difficult to see.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Visible</AUni> -</Name> -<Questions> -<objsur guid="c75f8eb4-ddc2-4fb2-99c1-664f19977b70" t="o" /> -<objsur guid="915208ba-87c0-4c7e-8169-5af9c68e0591" t="o" /> -<objsur guid="8c981051-1466-48e3-b715-ae9e85859ef8" t="o" /> -<objsur guid="6f2beb8d-fbd0-4def-8751-e5a316924a0e" t="o" /> -<objsur guid="7440508f-0bd3-4c82-b9cd-b555ddd450b8" t="o" /> -<objsur guid="05edcf56-f53c-4680-b355-5abaf1fb33e3" t="o" /> -<objsur guid="af47c794-c4a3-4d9f-9c46-6bf9622d7e4c" t="o" /> -<objsur guid="7750177c-4d42-4891-9a1c-3bd775b00ff5" t="o" /> -<objsur guid="6a8b16db-3b97-40cb-ba0e-1091fbdb9739" t="o" /> -<objsur guid="2a75f1fd-a2cd-41e8-9459-e365b2bd6b25" t="o" /> -<objsur guid="7841ec21-bace-4d07-b019-828138032742" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="043d12ac-c76d-4b4c-813b-4ef7758c8085" t="r" /> -<objsur guid="cd6f1b37-5bdd-4237-8827-b1c947c8e1b4" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="79a33505-0c33-4e92-89b9-6a42e6ff2228" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="3f4d7a58-34fb-4c3d-b138-920297fbbb2a" ownerguid="043943c3-16e2-460b-a7c7-eca3b3ebfb70"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">yarn</AUni> -<AUni ws="es">hilo.torcilado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f828c29a-b557-4656-baa0-15000122403a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="3f535689-944a-4e9c-8f64-ec6395b7c8d7" ownerguid="879e66bc-af29-4fe4-86e0-0047973a57d6"> -<Abbreviation> -<AUni ws="en">7.2.1.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for moving across a smooth or lubricated surface.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Slip, slide</AUni> -</Name> -<Questions> -<objsur guid="7d2aec13-9588-46c9-9289-884875f633cb" t="o" /> -<objsur guid="e3a4e19d-8302-4c06-b941-3623fd864fcb" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="3f5686f0-43f8-49b1-8b9e-3229d608d67a" ownerguid="c17dc40d-3b15-4cb6-9148-8a3b3db6c1cc"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 7.4 Yachaytapis caynog ninqui: <<Cuyashgä amïgämi canqui.>></Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="3f5a2f9c-b293-482d-9d11-2f316b553459"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wishga</AUni> -<AUni ws="qvm-x-acl">wishga</AUni> -<AUni ws="qvm-x-akh">wishqa</AUni> -<AUni ws="qvm-x-akl">wishqa</AUni> -<AUni ws="qvm-x-ame">wishqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wishqa.v</AUni> -<AUni ws="qvm-x-acl">*wishqa.v</AUni> -<AUni ws="qvm-x-akh">*wishqa.v</AUni> -<AUni ws="qvm-x-akl">*wishqa.v</AUni> -<AUni ws="qvm-x-ame">*wishqa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.688" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="523920eb-10e8-4bf7-af70-5c5aa9cf63cd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wishqa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a8f0dcf9-f674-426e-9f78-f626cd137032" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e0817e35-4d79-4bdf-907e-0d1d3e5464be" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wishqa.v 
\entryTyp root 
\gENG cold 
\gSPN gripe 
\e *wishqa.v 
\c V1 
\ach wishga 
\akh wishqa 
\acl wishga 
\akl wishqa 
\ame wishqa 
\i JOB 41.18 Wishgacuptenga elguyragmi senganpa yargamun.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="3f5b3228-d768-47e6-881e-9e77cc9b6fc0" ownerguid="745147a3-157d-472b-a4cb-e71da4669788"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3f612cb6-33c4-4ffa-9049-8a9dab86afb3" ownerguid="c8595a5f-4dde-4260-b8d8-265d0554ce93"> -<ExampleWords> -<AUni ws="en">win a fight, win a victory, gain the victory, be victorious, come out on top, prevail, win the day, carry the day, emerge victorious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to winning a fight or war?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3f621386-9be4-41ca-9b32-e8a0938bef3a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gashpa</AUni> -<AUni ws="qvm-x-acl">gashpa</AUni> -<AUni ws="qvm-x-akh">qashpa</AUni> -<AUni ws="qvm-x-akl">qashpa</AUni> -<AUni ws="qvm-x-ame">qashpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qashpa.n</AUni> -<AUni ws="qvm-x-acl">*qashpa.n</AUni> -<AUni ws="qvm-x-akh">*qashpa.n</AUni> -<AUni ws="qvm-x-akl">*qashpa.n</AUni> -<AUni ws="qvm-x-ame">*qashpa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.134" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1602117d-13e8-4a37-996e-650033e1b6ab" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qashpa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c76200b4-59d7-4038-9273-da61c40e554a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dafa6072-e167-487f-9d64-5de75056ea6b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qashpa.n 
\entryTyp root 
\gENG 
\gSPN 
\e *qashpa.n 
\c N0 
\ach gashpa 
\akh qashpa 
\acl gashpa 
\akl qashpa 
\ame qashpa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="3f637c7c-e845-49fa-8af5-6b9a1dab62da" ownerguid="db6bb851-b6cf-41b3-9905-e56ea5b50686"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3f646064-ed6c-422f-8295-fd00535ae707" ownerguid="7fed6281-326a-4a15-8cbf-dc574594da19"> -<ExampleWords> -<AUni ws="en">play music/a piece, perform, hold a concert, make music, read music, play by ear, improvise</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used of playing music?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3f6aacd1-69ee-4100-a7d7-0785904ae8a6" ownerguid="d574c970-6834-4566-ae37-f42c7e95483b"> -<ExampleWords> -<AUni ws="en">weighted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that has been made heavy?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="3f6dc9af-0c50-44d5-99f0-4aa67c668186" ownerguid="34e92ff1-32aa-49c7-b4da-d161bedc5adc"> -<Abbreviation> -<AUni ws="en">6.6.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.468" /> -<DateModified val="2022-9-23 16:55:8.468" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to working with oil and gas.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Working with oil and gas</AUni> -</Name> -<OcmCodes> -<Uni>315 Oil and Gas Wells</Uni> -</OcmCodes> -<Questions> -<objsur guid="f7155d52-ea52-4b6f-8353-479c737e6018" t="o" /> -<objsur guid="52fa7b28-9c0e-4e3d-96c4-190d6e0c07d9" t="o" /> -<objsur guid="9745f913-96ee-4aea-8fcb-196cb217f799" t="o" /> -<objsur guid="d74796ad-cbf0-41b1-9ad5-9cba87f0cb85" t="o" /> -<objsur guid="76760b1d-99bc-4dad-97fb-e86535e6b3b9" t="o" /> -<objsur guid="a505d3f3-312a-4451-a35e-0f80d53b899f" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="34c3edad-a158-44e7-989b-5b74401e6945" t="r" /> -<objsur guid="962cb994-0183-4ac5-94b2-82a33f1d64e4" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="3f71968a-d241-4fac-88ac-9d5ffc84c58e" ownerguid="1dc717b9-c5e8-4482-b076-22102da9d553"> -<ExampleWords> -<AUni ws="en">criminal, lawbreaker, underworld</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who breaks the law?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3f719986-7034-4748-a34e-a11805e71426" ownerguid="3044799a-4b36-46c0-8a25-0739f8abc8e7"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="3f773a06-f2cc-4ae4-8a38-aa5c9f333353"> -<Analyses> -<objsur guid="202218a0-2594-4641-ae74-e961ceaabd60" t="o" /> -</Analyses> -<Checksum val="1298466963" /> -<Form> -<AUni ws="qvm-x-akh">mandashqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="3f7749c1-5eff-4496-9953-dbca38442e94"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">volcán; volcan</AUni> -<AUni ws="qvm-x-acl">volcán; volcan</AUni> -<AUni ws="qvm-x-akh">volcán; volcan</AUni> -<AUni ws="qvm-x-akl">volcán; volcan</AUni> -<AUni ws="qvm-x-ame">volcán; volcan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+volcán</AUni> -<AUni ws="qvm-x-acl">+volcán</AUni> -<AUni ws="qvm-x-akh">+volcán</AUni> -<AUni ws="qvm-x-akl">+volcán</AUni> -<AUni ws="qvm-x-ame">+volcán</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.424" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2a91f69d-2e54-49df-a465-f69ec36ebdfd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+volcán</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="59495eec-7287-4b5d-928b-4f8bdf2d552d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a1e70889-4eae-46bd-92e7-d102daf15f50" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +volcán 
\entryTyp root 
\gENG 
\gSPN 
\e +volcán 
\c N0 
\mp +FinalC 
\ach volcán / _# 
\ach volcan / ~_# 
\akh volcán / _# 
\akh volcan / ~_# 
\acl volcán / _# 
\acl volcan / ~_# 
\akl volcán / _# 
\akl volcan / ~_# 
\ame volcán / _# 
\ame volcan / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="3f7eb622-ecbd-47fc-9e94-b00397ba7fd3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">honor</AUni> -<AUni ws="qvm-x-acl">honor</AUni> -<AUni ws="qvm-x-akh">honor</AUni> -<AUni ws="qvm-x-akl">honor</AUni> -<AUni ws="qvm-x-ame">honor</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+honor</AUni> -<AUni ws="qvm-x-acl">+honor</AUni> -<AUni ws="qvm-x-akh">+honor</AUni> -<AUni ws="qvm-x-akl">+honor</AUni> -<AUni ws="qvm-x-ame">+honor</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.741" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9f1d939d-c40d-4e76-ab14-0720733355b1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+honor</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0903d905-2a1b-4bc9-894a-07fcbc6fc0aa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2c8d9971-fe96-418a-a8ee-f176f542080f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +honor 
\entryTyp root 
\gENG 
\gSPN 
\e +honor 
\c N0 
\mp +FinalC 
\ach honor 
\akh honor 
\acl honor 
\akl honor 
\ame honor 
\i Nircurna Saratapis caynog nergan: <<Turiquita goycushgäcunaga waranga guellay chaninmi caycan. Tsaymi cananga honorniquita pipis mana parlaycanganatsu.>></Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3f832715-5b69-40ef-8193-d470912cbc41" ownerguid="b6e45998-9f6a-4b19-9cda-62410a11afa2"> -<ExampleWords> -<AUni ws="en">abracadabra, open sesame</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words are used when performing sorcery?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3f83d875-013c-4097-beea-0a9c60752631" ownerguid="da7866e6-1f15-4693-991d-5b5234334976"> -<Form> -<AUni ws="qvm-x-ach">gapchuchuy</AUni> -<AUni ws="qvm-x-acl">gapchuchuy</AUni> -<AUni ws="qvm-x-akh">qapchuchuy</AUni> -<AUni ws="qvm-x-akl">qapchuchuy</AUni> -<AUni ws="qvm-x-ame">qapchuchuy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StStyle" guid="3f844794-09d1-45fa-9d75-05c62e2b836d" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="14" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Dictionary-Headword</Uni> -</Name> -<Rules> -<Prop bold="invert"></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<Usage> -<AUni ws="en">The main headword at the start of the entry.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="MoStemMsa" guid="3f881eba-2add-4a23-9753-3e58f869cbbc" ownerguid="f05fd2fe-08e4-46ad-bba3-e09cb79b2f62"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="3f8d3c1f-0243-46fb-8c87-8af0b9ae40c8" ownerguid="c159bc1a-aaf5-4615-9268-5121e0dfa419"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">half</AUni> -<AUni ws="es">mitad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0c0012ef-a330-4a9d-8fb1-6619cc966142" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="3f8dcac1-8d88-4d0e-ba98-d4e2d65b18c1" ownerguid="bc5b25bc-06f4-4569-9e0c-c427dbacdb2e"> -<Form> -<AUni ws="qvm-x-ach">anya</AUni> -<AUni ws="qvm-x-acl">anya</AUni> -<AUni ws="qvm-x-akh">anya</AUni> -<AUni ws="qvm-x-akl">anya</AUni> -<AUni ws="qvm-x-ame">anya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="3f909240-d039-49c2-aa1a-66fadd00e871" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<ExampleWords> -<AUni ws="en">sidewalk, walkway, promenade, path, footpath, stepping-stone</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(17) What words refer to a place where a person walks?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3f930114-49a3-4332-94d4-45e240d6f710" ownerguid="994d2c17-eae0-4475-9854-e967d565dbcc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">simple</AUni> -<AUni ws="es">sencillo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4afedb64-b6cc-4cd1-bd33-ab8a482be0b4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="3f9311b3-7166-4e2c-8c7d-535ae0e75c40"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">PLALL</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="3f935f6b-6283-4e8e-94bd-5d9b95114b84" ownerguid="bf292d0e-f15c-4083-aebb-0673efe33125"> -<Form> -<AUni ws="qvm-x-ach">putu</AUni> -<AUni ws="qvm-x-acl">putu; putu; puto</AUni> -<AUni ws="qvm-x-akh">putu</AUni> -<AUni ws="qvm-x-akl">putu; putu; puto</AUni> -<AUni ws="qvm-x-ame">putu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="3f971e77-cb40-4b90-a658-5c13dc4905f9" ownerguid="fb227763-b05d-4b53-9a50-69a8e8376bb3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sweep</AUni> -<AUni ws="es">barrer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9b618ae9-a560-4b16-b966-2243b3621081" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="3f98f2bc-1d37-4f91-9a94-f189ffd87174" ownerguid="2aefc6aa-aeb5-4f42-bf7c-d95b5ec07604"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3f9c528b-ea7b-4a52-bcf3-55b2b9ce0c27" ownerguid="bc9d763c-e4fe-48ab-ad44-87a36f6cc06f"> -<ExampleWords> -<AUni ws="en">critic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a person who often criticizes other people?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3f9e53d3-f836-4ee3-8953-24000f6acf9e" ownerguid="d7455e4a-a06d-483c-9810-623aba9b634a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="3fa1c127-9b36-48a1-bb26-f13d5864ce67" ownerguid="dd8fe16b-4d31-470b-96e3-4b043128490d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="3fa3c27d-4956-46dd-8c29-8970e4d099f1" ownerguid="88519985-6c9c-4206-a781-56dfd09a526d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="3fa67290-1c2b-4c9d-b9db-bacc58bebbb4" ownerguid="602d5a5a-03fc-4c5d-a72f-e9ff18ffe5b0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="3fa70d1f-7711-4346-be1e-e35056dfb03c" ownerguid="1a02c2ed-5ed3-40ad-8a76-eb6426f4b587"> -<Form> -<AUni ws="qvm-x-ach">azadón; azadon</AUni> -<AUni ws="qvm-x-acl">azadón; azadon</AUni> -<AUni ws="qvm-x-akh">azadón; azadon</AUni> -<AUni ws="qvm-x-akl">azadón; azadon</AUni> -<AUni ws="qvm-x-ame">azadón; azadon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3fab0bd2-c3e9-4c0f-b38c-34ed06113237" ownerguid="a503cb69-5336-4b15-bb94-6a81a7c96a05"> -<Form> -<AUni ws="qvm-x-ach">shiri</AUni> -<AUni ws="qvm-x-acl">shiri; shire</AUni> -<AUni ws="qvm-x-akh">shiri</AUni> -<AUni ws="qvm-x-akl">shiri; shire</AUni> -<AUni ws="qvm-x-ame">shiri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3fac5caf-878e-4cab-ad0d-19c55c4494e5" ownerguid="5095fe64-ebb3-4190-ab27-bb5b09f07793"> -<Form> -<AUni ws="qvm-x-ach">chunchug</AUni> -<AUni ws="qvm-x-acl">chunchog</AUni> -<AUni ws="qvm-x-akh">chunchuq</AUni> -<AUni ws="qvm-x-akl">chunchoq</AUni> -<AUni ws="qvm-x-ame">chunchuq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="3fae9066-eb66-444e-bd41-818b9f7b3bae" ownerguid="6045c6eb-efea-4586-95f8-840d32578d66"> -<Abbreviation> -<AUni ws="en">7.5.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.549" /> -<DateModified val="2022-9-23 16:55:8.549" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to putting something somewhere.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>85B Put, Place</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Put</AUni> -</Name> -<Questions> -<objsur guid="424f9da6-2571-4130-ae74-a94c17569707" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="4068488f-59e9-47d1-8884-a1d6dcc10c36" t="o" /> -<objsur guid="dfe59469-d1bf-4ed2-9faa-6d5af52eefdd" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="3fb0ed61-9184-44b0-adee-73aed4964aea" ownerguid="0d972590-5947-4983-a092-443697baec24"> -<ExampleWords> -<AUni ws="en">pruning hook, pruning shears</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What tools are used for cutting plants?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3fb324dc-7e19-43b2-802a-b37e3d88671f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sujeta</AUni> -<AUni ws="qvm-x-acl">sujeta</AUni> -<AUni ws="qvm-x-akh">sujeta</AUni> -<AUni ws="qvm-x-akl">sujeta</AUni> -<AUni ws="qvm-x-ame">sujeta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sujetar</AUni> -<AUni ws="qvm-x-acl">+sujetar</AUni> -<AUni ws="qvm-x-akh">+sujetar</AUni> -<AUni ws="qvm-x-akl">+sujetar</AUni> -<AUni ws="qvm-x-ame">+sujetar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.744" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="485487c7-d954-4e57-8e8c-d65c3edaab8f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sujetar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1ba42194-6f8b-48b7-83a2-4d64218ea6b8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f1310417-4cb4-4488-ba1d-99a992793169" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sujetar 
\entryTyp root 
\gENG subject 
\gSPN dominar 
\e +sujetar 
\c V2 
\ach sujeta 
\akh sujeta 
\acl sujeta 
\akl sujeta 
\ame sujeta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="3fb3baf7-1c60-499f-a226-260eb82a89a7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lagtu</AUni> -<AUni ws="qvm-x-acl">lagtu; lagto</AUni> -<AUni ws="qvm-x-akh">laqtu</AUni> -<AUni ws="qvm-x-akl">laqtu; laqto</AUni> -<AUni ws="qvm-x-ame">laqtu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llaqtu.v</AUni> -<AUni ws="qvm-x-acl">*llaqtu.v</AUni> -<AUni ws="qvm-x-akh">*llaqtu.v</AUni> -<AUni ws="qvm-x-akl">*llaqtu.v</AUni> -<AUni ws="qvm-x-ame">*llaqtu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.164" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0239a87b-d869-4fcd-8aa6-549511a959c7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llaqtu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="04c398d9-e3d4-4a40-9002-5ba8b7fbb9e1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a9d739fc-2e79-47a4-9251-bdd1da3cc9bc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llaqtu.v 
\entryTyp root 
\gENG remove.teeth 
\gSPN desmolar 
\e *llaqtu.v 
\c V2 
\ach lagtu 
\akh laqtu 
\acl lagtu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lagto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl laqtu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl laqto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame laqtu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="3fb6e4bb-c608-4d3e-bd47-193a546b6c26" ownerguid="1e2f084c-71ac-42d4-8200-995f1be5d2c4"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="856fd6b6-7327-4852-9d53-d872137d0b3a" t="o" /> -<objsur guid="0a6f8fa6-35f1-4a79-bd15-9219aabcb1f1" t="o" /> -<objsur guid="00fee43d-7a5d-4104-aa18-1a20de4986ce" t="o" /> -<objsur guid="a6a4a898-03b5-414b-998a-c2a71f51cd21" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="3fb94643-163e-4454-8d2e-3b638a5cf32b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">micu</AUni> -<AUni ws="qvm-x-acl">micu; mico</AUni> -<AUni ws="qvm-x-akh">miku</AUni> -<AUni ws="qvm-x-akl">miku; miko</AUni> -<AUni ws="qvm-x-ame">miku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*miku.v1</AUni> -<AUni ws="qvm-x-acl">*miku.v1</AUni> -<AUni ws="qvm-x-akh">*miku.v1</AUni> -<AUni ws="qvm-x-akl">*miku.v1</AUni> -<AUni ws="qvm-x-ame">*miku.v1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.426" /> -<DateModified val="2022-10-26 20:41:31.531" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fb252d76-88a0-4cf2-9d07-278c0bd93b1a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*miku.v1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3ef71921-8840-4e39-996a-69ae077b5f05" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d9887788-8464-437b-a18e-c60a606a2c5f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *miku.v1 
\entryTyp root 
\gENG eat 
\gSPN comer 
\e *miku.v1 
\c V1 
\ach micu 
\akh miku 
\acl micu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl mico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl miku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl miko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame miku</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="3fb987e8-0bfb-4092-976c-eb2433d2ff6c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tapsi</AUni> -<AUni ws="qvm-x-acl">tapsi; tapse</AUni> -<AUni ws="qvm-x-akh">tapsi</AUni> -<AUni ws="qvm-x-akl">tapsi; tapse</AUni> -<AUni ws="qvm-x-ame">tapsi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tapsi</AUni> -<AUni ws="qvm-x-acl">*tapsi</AUni> -<AUni ws="qvm-x-akh">*tapsi</AUni> -<AUni ws="qvm-x-akl">*tapsi</AUni> -<AUni ws="qvm-x-ame">*tapsi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.815" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0fe12b6d-19c7-456c-9b84-5649dd818668" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tapsi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5c664afa-3670-4b92-a72b-f8ece5ec3c75" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="efac1102-cd92-4199-a1f6-2044c6bf064b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tapsi 
\entryTyp root 
\gENG bump 
\gSPN dar.sacudidas 
\e *tapsi 
\c V2 
\mp +FinalI 
\ach tapsi 
\akh tapsi 
\acl tapsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tapse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tapsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tapse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tapsi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3fbc5f03-201a-40ae-96b7-852b7f10d470" ownerguid="0ba86b69-2a31-49c2-8922-d0c366d0b11c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pull</AUni> -<AUni ws="es">jalar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a85a1596-eb26-42cf-b969-6e7aa71345b4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="3fbd8961-af70-4968-a11f-3b29cc4a0962" ownerguid="f15d7055-db7a-499a-932b-aafa1f228965"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">take.a.walk</AUni> -<AUni ws="es">pasear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4975ed48-d35b-41bb-9304-f949d48ec245" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="3fbe3ea6-3ad3-430f-ab67-2d9c9f852c61" ownerguid="7b816f6a-4b46-403d-a1a2-2914ee070568"> -<Abbreviation> -<AUni ws="en">8.4.6.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to now.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Now</AUni> -</Name> -<Questions> -<objsur guid="d512c79e-f4b4-4089-bddf-039ce4c34899" t="o" /> -<objsur guid="b86974ed-132e-4fb0-8fe9-3db1d6647e59" t="o" /> -<objsur guid="3bcfb533-f297-4100-be92-90b51cef37d3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="3fc01e2a-ab32-4c45-a94e-6ee82f3f1496"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gargu; garga</AUni> -<AUni ws="qvm-x-acl">gargu; gargo; garga</AUni> -<AUni ws="qvm-x-akh">qarqu; qarqa</AUni> -<AUni ws="qvm-x-akl">qarqu; qarqo; qarqa</AUni> -<AUni ws="qvm-x-ame">qarqu; qarqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qarqU.v1</AUni> -<AUni ws="qvm-x-acl">*qarqU.v1</AUni> -<AUni ws="qvm-x-akh">*qarqU.v1</AUni> -<AUni ws="qvm-x-akl">*qarqU.v1</AUni> -<AUni ws="qvm-x-ame">*qarqU.v1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.122" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="71583c6a-be7f-4e39-addb-31ebc3800993" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qarqU.v1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="51a3b8ae-cb8b-41de-9feb-1e71f83763e0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ee3738e5-05c3-43a0-97ab-2b59325dcfe8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qarqU.v1 
\entryTyp root 
\gENG throw.out 
\gSPN botar 
\e *qarqU.v1 
\c V1 
\mp PMlowered 
\ach gargu 
\ach garga morphlowered 
\akh qarqu 
\akh qarqa morphlowered 
\acl gargu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gargo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl garga morphlowered 
\akl qarqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qarqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qarqa morphlowered 
\ame qarqu 
\ame qarqa morphlowered 
\mcc *qarqU.v1 / ~_ CAUS</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="3fc1d130-732b-4f36-b1c3-a31d02a5c834" ownerguid="40ffe791-d9ca-4135-a1df-e308e27feedb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">basket</AUni> -<AUni ws="es">cereta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e3a2cc24-863b-4868-84d0-bbe3d9120340" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="3fc346f9-0471-4d2b-ae7c-4f206b228eaf" ownerguid="7b761534-c8e7-4ea3-bf57-d83c05fba7fa"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3fc3c5c0-3062-4657-bce7-34d777223e8d" ownerguid="5a4a8ae5-a209-4946-8fa1-3c3bd5083e0d"> -<ExampleWords> -<AUni ws="en">religious ceremony, worship service, church service, time of prayer, prayer meeting, Bible study, liturgy, invocation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a religious ceremony?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3fc4d3f0-d6ed-49e8-94a5-4976818a7c0d" ownerguid="483a342d-2cab-40ab-a1af-dc2693735ef6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="3fc69c06-18da-454d-ae78-99ca5a08db72" ownerguid="66fda8c8-a5eb-41f6-a67e-754ac23c542f"> -<Form> -<AUni ws="qvm-x-ach">washaga</AUni> -<AUni ws="qvm-x-acl">washaga</AUni> -<AUni ws="qvm-x-akh">washaqa</AUni> -<AUni ws="qvm-x-akl">washaqa</AUni> -<AUni ws="qvm-x-ame">washaqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="3fc97a97-c581-4050-81ab-8ed49e3e23a0" ownerguid="703b72ec-ce56-460e-af9e-6175bf998908"> -<Form> -<AUni ws="qvm-x-ach">tsun</AUni> -<AUni ws="qvm-x-acl">tsun</AUni> -<AUni ws="qvm-x-akh">tsun</AUni> -<AUni ws="qvm-x-akl">tsun</AUni> -<AUni ws="qvm-x-ame">tsun</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="3fca793b-3f79-4972-ba71-3486ea899f5f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ayuna</AUni> -<AUni ws="qvm-x-acl">ayuna</AUni> -<AUni ws="qvm-x-akh">ayuna</AUni> -<AUni ws="qvm-x-akl">ayuna</AUni> -<AUni ws="qvm-x-ame">ayuna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ayunar</AUni> -<AUni ws="qvm-x-acl">+ayunar</AUni> -<AUni ws="qvm-x-akh">+ayunar</AUni> -<AUni ws="qvm-x-akl">+ayunar</AUni> -<AUni ws="qvm-x-ame">+ayunar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.910" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="72c4b420-0f0a-4e52-b73d-9aefed905cf6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ayunar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="318e90a6-c064-49c9-913f-c95b0b0920a7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="86ca4010-52b6-4117-bcd7-b8b12f4ca330" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ayunar 
\entryTyp root 
\gENG fast 
\gSPN ayunar 
\e +ayunar 
\c V1 
\ach ayuna 
\akh ayuna 
\acl ayuna 
\akl ayuna 
\ame ayuna</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="3fcad420-b0c6-4137-86e2-d651b77bc74c" ownerguid="5e26d2e6-4a03-425b-9499-34ce237993c2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="3fcd9a41-4aab-4e0a-a92d-3732842dce91"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tusha</AUni> -<AUni ws="qvm-x-acl">tusha</AUni> -<AUni ws="qvm-x-akh">tusha</AUni> -<AUni ws="qvm-x-akl">tusha</AUni> -<AUni ws="qvm-x-ame">tusha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tusha</AUni> -<AUni ws="qvm-x-acl">*tusha</AUni> -<AUni ws="qvm-x-akh">*tusha</AUni> -<AUni ws="qvm-x-akl">*tusha</AUni> -<AUni ws="qvm-x-ame">*tusha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.25" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2ee4dabe-4a44-4e44-8d94-183adf0901ea" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tusha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9003c29c-599e-4f59-a9e7-38d0d62853d1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b531caf2-666b-46c3-a145-6258e7a12c67" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tusha 
\entryTyp root 
\gENG post 
\gSPN poste 
\e *tusha 
\c N0 
\ach tusha 
\akh tusha 
\acl tusha 
\akl tusha 
\ame tusha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3fd04e66-dda6-48cd-ab72-49c29f748a24" ownerguid="675eccbb-9858-4cd4-8405-5f0d0faa792c"> -<ExampleWords> -<AUni ws="en">negotiate, try to reach an agreement, discuss terms</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to two people trying to reach an agreement?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3fd0a9df-ac97-4b2d-ba87-dca1db5b6432" ownerguid="4e7a6dfe-3654-4ca1-874d-02424581b774"> -<ExampleWords> -<AUni ws="en">deep, deeply, deep-seated, in the depths, deep down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is deep?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="3fd0f77d-1883-4e68-9f8b-9e029da511a8" ownerguid="0fa0be21-2246-40b2-86b1-ca572fe8c16c"> -<ExampleWords> -<AUni ws="en">uninteresting, not very interesting, boring, dull, tedious, uneventful, unexciting, humdrum, monotonous, repetitive, long-winded</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe something that is uninteresting?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3fd1ffe4-4890-44ba-97a7-68712a2d7b50" ownerguid="1ee7bae5-1414-4f2e-ac5e-ce5178a628ec"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="3fd34185-19a1-44bd-8555-bc76e2847bee" ownerguid="7185bd93-5281-46de-80af-767f0ec40ff6"> -<Abbreviation> -<AUni ws="en">3.2.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.94" /> -<DateModified val="2022-9-23 16:55:8.94" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to instinct--to know something without being told, to know what to do without taught how to do it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Instinct</AUni> -</Name> -<Questions> -<objsur guid="e2de3ed5-b892-4c3b-a180-cfb73793997a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="3fd65fc8-17a4-49fe-89ac-3f1c84143c12" ownerguid="e7f301c7-b8d1-4696-b030-b06755ef28dc"> -<Form> -<AUni ws="qvm-x-ach">gargu; garga</AUni> -<AUni ws="qvm-x-acl">gargu; gargo; garga</AUni> -<AUni ws="qvm-x-akh">qarqu</AUni> -<AUni ws="qvm-x-akl">qarqu; qarqo; qarqa</AUni> -<AUni ws="qvm-x-ame">qarqu; qarqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<StemName> -<objsur guid="ee11e7e3-3838-48c4-88ec-3815091bab33" t="r" /> -</StemName> -</rt> -<rt class="LexEntry" guid="3fd9fd6b-5a58-4c74-a970-1036a5de58c2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shuya</AUni> -<AUni ws="qvm-x-acl">shuya</AUni> -<AUni ws="qvm-x-akh">shuya</AUni> -<AUni ws="qvm-x-akl">shuya</AUni> -<AUni ws="qvm-x-ame">shuya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shuya</AUni> -<AUni ws="qvm-x-acl">*shuya</AUni> -<AUni ws="qvm-x-akh">*shuya</AUni> -<AUni ws="qvm-x-akl">*shuya</AUni> -<AUni ws="qvm-x-ame">*shuya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.662" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0a288cfa-c3fa-4f48-8828-2e9662824527" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shuya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0686dcc5-d695-485c-81ce-496fb95e1eb6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bb7fe352-ae90-4194-96c4-33a39dad752d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shuya 
\entryTyp root 
\gENG wait 
\gSPN esperar 
\e *shuya 
\c V2 
\ach shuya 
\akh shuya 
\acl shuya 
\akl shuya 
\ame shuya 
\mcc *shuya / _ REF / _ PL / _ PNCT1</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3fdb5f98-c55f-40a6-8c5a-046ded3e6c36" ownerguid="316f27aa-ed6d-4bc3-9d14-840946a6f4e9"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en"><What kind of> a man is he? (a good man); <What sort of> man is he?</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">what kind of, what sort of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What question words ask for an adjective in the answer?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="3fdba5e5-eb24-4b2f-a6fc-d1ed7397c39c" ownerguid="6137239a-b469-46be-b7cb-b9ac22fcc195"> -<Abbreviation> -<AUni ws="en">3.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.184" /> -<DateModified val="2022-9-23 16:55:8.184" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to school.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">School</AUni> -</Name> -<OcmCodes> -<Uni>870 Education; 871 Educational System; 872 Elementary Education; 873 Liberal Arts Education; 874 Vocational Education; 875 Teachers; 876 Educational Theory and Methods; 877 Students</Uni> -</OcmCodes> -<Questions> -<objsur guid="a14ab76b-a061-4ac6-ac65-15f0fe4e9bf4" t="o" /> -<objsur guid="5493241e-cc9f-405f-9437-47829a6ca838" t="o" /> -<objsur guid="25ec62f6-7052-4b61-b565-6e0ba26698dc" t="o" /> -<objsur guid="6bf8ff56-5aa8-43bb-8f2c-e7d0ceeef32f" t="o" /> -<objsur guid="9ed12150-bd31-430d-a0e8-d5c8c3707900" t="o" /> -<objsur guid="e49a55f1-9ec5-4181-8fe9-3b611e3b4d8d" t="o" /> -<objsur guid="372a4f84-6b4d-47b6-aab9-bb2d7201e139" t="o" /> -<objsur guid="f28e0fa2-ebd4-4c79-84e4-375192755ac1" t="o" /> -<objsur guid="14a3d1c7-5f88-416c-bddc-c18780a32918" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="3fdcf634-ea65-47c1-8a3d-c25a64defa2b" ownerguid="e0c3b4ec-ae80-44db-a2a6-9f4b3289e003"> -<Form> -<AUni ws="qvm-x-ach">tucna</AUni> -<AUni ws="qvm-x-acl">tucna</AUni> -<AUni ws="qvm-x-akh">tukna</AUni> -<AUni ws="qvm-x-akl">tukna</AUni> -<AUni ws="qvm-x-ame">tukna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="3fdde86b-d871-457d-87df-4bf6430185ca" ownerguid="3ab01c1e-439b-44a6-95d0-6c680f6f46d3"> -<Form> -<AUni ws="qvm-x-ach">habilösu</AUni> -<AUni ws="qvm-x-acl">habilösu; habilösu; habilöso</AUni> -<AUni ws="qvm-x-akh">habilösu</AUni> -<AUni ws="qvm-x-akl">habilösu; habilösu; habilöso</AUni> -<AUni ws="qvm-x-ame">habilösu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="3fde4613-ddcf-4f33-81e5-15a0ab7b13d2" ownerguid="5a8d99f2-b4ce-49ad-aa45-611951fa1022"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="3fdf807a-d185-4b25-a893-4513d9de0be1" ownerguid="077fe92a-afbc-4183-bec3-bfa8d83a2ba2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="fe163d6d-cad5-4667-909c-709c2860d315" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">flavor</AUni> -<AUni ws="es">gusto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f4d1b0e7-0b9d-4a34-b19d-48efe3aa5c47" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3fe34fda-181b-49ad-86d8-5ba0becc4fb7" ownerguid="87d344ac-94cc-49d6-9878-ebc86a933033"> -<ExampleWords> -<AUni ws="en">helper, aide, accomplice, assistant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What is a person called who helps another?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="3fe6248d-a235-4bd9-a2df-dd6806387d6a" ownerguid="cd228b14-1b52-4cba-8490-b43ede82c598"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="3fe843ca-542c-4c21-8684-3532a6d47eb9" ownerguid="0f46cb61-7bb5-410d-abc5-4a75dc80a24f"> -<ExampleWords> -<AUni ws="en">hard to believe, unbelievable, doubtful, incredible, unconvincing, disputable, untrustworthy, unfaithful, undependable, improbable, unpersuasive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something or someone that is hard to believed?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="3fea4881-b06a-48a6-8c43-2acda231b2ad"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uywa</AUni> -<AUni ws="qvm-x-acl">uywa</AUni> -<AUni ws="qvm-x-akh">uywa</AUni> -<AUni ws="qvm-x-akl">uywa</AUni> -<AUni ws="qvm-x-ame">uywa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uywa.v</AUni> -<AUni ws="qvm-x-acl">*uywa.v</AUni> -<AUni ws="qvm-x-akh">*uywa.v</AUni> -<AUni ws="qvm-x-akl">*uywa.v</AUni> -<AUni ws="qvm-x-ame">*uywa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.322" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3a2acb3c-3a3c-48ba-8a91-d54781f5aa88" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uywa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2148f121-ca32-49ed-822f-c79de01ef739" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8b47555e-bf1a-47a6-8a9c-a2396271e155" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uywa.v 
\entryTyp root 
\gENG raise 
\gSPN criar 
\e *uywa.v 
\c V2 
\ach uywa 
\akh uywa 
\acl uywa 
\akl uywa 
\ame uywa 
\mcc *uywa.v / ~_ REF NMN 
\mcc *uywa.v / ~_ REF NOM12PUR 
\mcc *uywa.v / ~_ REFDIR NMN</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="3fed3c8d-0f6f-4f72-8427-066c0f5d4f07" ownerguid="8b76f4a2-9926-4c76-8d4f-563371683219"> -<ExampleWords> -<AUni ws="en">acetate, alcohol, amino, ammonia, arsenic, asbestos, bicarbonate, butane, camphor, carbohydrate, chloride, chlorine, cleaner, cleanser, colloidal, creosote, cyanide, detergent, diesel, dioxide, emulsion, enamel, ethane, ethanol, ether, fluoride, fluorite, fuel, gas, gel, helium, hydrogen, iodine, leaven, hydrocarbon, hydrochloric, gasohol, gasoline, glycerin, kerosene, lacquer, latex, lithium, lubricant, methane, neon, nitrogen, nylon, oil, oxide, oxygen, ozone, paraffin, peroxide, phosgene, petrochemical, petrol, petrolatum, petroleum, polyester, protein, rayon, resin, rosin, yeast, silicate, silicon, sodium, solution, sol, solvent, spar, sulfuric, tallow, tannin, tartar, thinner, turpentine, varnish, vitriol, water</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What are the names of specific chemicals?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="3fef0346-9d8c-498b-a942-0266b865dee4" ownerguid="5ec80646-cf32-41f0-b851-0c57c6275fc5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="ccfe1647-389f-487e-a29f-df4054997c39" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="19ebc539-9be7-4671-82a2-912be0464e23" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="3ff439c7-219d-4f2f-8e3f-8456b53a030f" ownerguid="f50ba0f7-1847-42cf-85a4-65393a3d6131"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="83338005-464f-4e8e-96d2-2a799942a33d" t="r" /> -</Morph> -<Msa> -<objsur guid="715c8af0-d7ab-448b-a2fa-f8b36822dac0" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="3ff6f18e-1e5e-4db8-9fec-fb023ac45889" ownerguid="aa23f4a2-4f66-458c-8ac9-e19fa0b0b6d3"> -<Form> -<AUni ws="qvm-x-ach">waugui</AUni> -<AUni ws="qvm-x-acl">waugui; waugui; waugue</AUni> -<AUni ws="qvm-x-akh">wawqi</AUni> -<AUni ws="qvm-x-akl">wawqi; wawqi; wawqe</AUni> -<AUni ws="qvm-x-ame">wawqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="3ff9b3bb-918b-4baf-92aa-604e49789df0" ownerguid="97b72009-1a4d-44d7-ab89-419600c00f19"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cloth</AUni> -<AUni ws="es">balleta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f4c119e0-3463-4ddc-9c00-251c5f579c78" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="3ffa2e07-3c4c-4861-9c51-f8b9008172c2" ownerguid="623c8efb-3af4-455e-a528-26ce16f10dc0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">last.child</AUni> -<AUni ws="es">último.hijo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bb8e98a6-bd6c-4890-b970-953fa1bcb0cb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="3ffa6c2c-234f-4e40-9a16-266449f5580b" ownerguid="6c54f0b0-b056-4090-b3f0-d5ec6710d4ab"> -<ExampleWords> -<AUni ws="en">lowered</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that has been made low?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="3ffabe8c-4d3f-44aa-a488-9468675f3f8f" ownerguid="b29e78c9-045a-4a6c-8d87-9586d034b6ef"> -<Form> -<AUni ws="qvm-x-ach">taushi</AUni> -<AUni ws="qvm-x-acl">taushi; taushe</AUni> -<AUni ws="qvm-x-akh">tawshi</AUni> -<AUni ws="qvm-x-akl">tawshi; tawshe</AUni> -<AUni ws="qvm-x-ame">tawshi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="3ffb96ae-9527-46a9-82a4-f0f4ea54113a" ownerguid="8403401a-498b-4e78-997e-a450a11d4c5d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 V0/V0 R0/R0 ONSHEV/ONSHEV BN/BN</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">NEG</AUni> -<AUni ws="es">NEG</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="3ffba1ec-748c-494e-be11-17cf33f85cc2" ownerguid="ead8a9a3-59b0-459b-94e0-7ceb4453d62a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="4ef7f74f-4f7a-4d1b-b5a4-4eefd0da9f96" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="3ffbdc73-a174-4297-ab45-4353ead59a44" ownerguid="0e0e91e3-6d3f-4310-b235-bf0ee9c88679"> -<Form> -<AUni ws="qvm-x-ach">chishya; chishyä</AUni> -<AUni ws="qvm-x-acl">chishya; chishyä</AUni> -<AUni ws="qvm-x-akh">chishya; chishyä</AUni> -<AUni ws="qvm-x-akl">chishya; chishyä</AUni> -<AUni ws="qvm-x-ame">chishya; chishyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="3fffecbb-f479-49d0-a327-409f681e69df" ownerguid="71363186-30b5-4e69-a491-b55627ab9548"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hurry</AUni> -<AUni ws="es">apurar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="740700fd-f185-4425-83ac-08b29b53706e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="4000f0bd-eb61-4a1b-8e99-0674c7c56be3" ownerguid="8b435128-ed72-4842-a56a-c6305355edb1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="40019add-d835-4b79-a1fd-2419f598973d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ni</AUni> -<AUni ws="qvm-x-acl">ni</AUni> -<AUni ws="qvm-x-akh">ni</AUni> -<AUni ws="qvm-x-akl">ni</AUni> -<AUni ws="qvm-x-ame">ni</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ni</AUni> -<AUni ws="qvm-x-acl">+ni</AUni> -<AUni ws="qvm-x-akh">+ni</AUni> -<AUni ws="qvm-x-akl">+ni</AUni> -<AUni ws="qvm-x-ame">+ni</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.558" /> -<DateModified val="2022-10-15 15:41:7.692" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="82ec99ca-9338-40ee-9942-ada2577c84da" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ni</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="79c4feb2-9da0-423f-b92a-3f308074069c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f0ec74d9-5426-4638-8aea-4146f49eb678" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ni 
\entryTyp root 
\gENG nor 
\gSPN ni 
\e +ni 
\c NOSUFF 
\mp +FinalI 
\ach ni 
\akh ni 
\acl ni 
\akl ni 
\ame ni</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="40055381-0807-4933-9984-f973f668e899" ownerguid="267b98aa-e17c-4ebb-a752-ed4210701867"> -<ExampleWords> -<AUni ws="en">distract</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to trying to get someone to not notice something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4006aab6-6c0d-46fa-9f18-c7631502e198"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gashpi</AUni> -<AUni ws="qvm-x-acl">gashpi; gashpe</AUni> -<AUni ws="qvm-x-akh">gashpi</AUni> -<AUni ws="qvm-x-akl">gashpi; gashpe</AUni> -<AUni ws="qvm-x-ame">gashpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gashpi</AUni> -<AUni ws="qvm-x-acl">+gashpi</AUni> -<AUni ws="qvm-x-akh">+gashpi</AUni> -<AUni ws="qvm-x-akl">+gashpi</AUni> -<AUni ws="qvm-x-ame">+gashpi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.607" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="95abe4dc-df1c-439d-bfe3-64fb4027670a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gashpi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="392c217d-9126-4779-bdfa-9b6afe2a8fd8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f7087b2a-c535-4e5e-9406-91f8fa19c79f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gashpi 
\entryTyp root 
\gENG scratch 
\gSPN raspar 
\e +gashpi 
\c V2 
\mp +FinalI 
\ach gashpi 
\akh gashpi 
\acl gashpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gashpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl gashpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl gashpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame gashpi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="400b9b99-a217-428e-a1a0-7766bbb3d2c2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nag</AUni> -<AUni ws="qvm-x-acl">nag</AUni> -<AUni ws="qvm-x-akh">naq</AUni> -<AUni ws="qvm-x-akl">naq</AUni> -<AUni ws="qvm-x-ame">naq</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.566" /> -<DateModified val="2022-10-18 13:48:52.31" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="62634ec0-20a9-44fd-89d0-5fa099663ee5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">PSTNAR</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="081dad20-ad96-439a-9979-59d56223a8a9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dc980556-b952-45f1-acb0-7557122fb558" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx PSTNAR 
\entryTyp suffix 
\gENG PSTNAR 
\gSPN PSNR 
\e PSTNAR 
\c V1/V0 V2/V0 
\o 120 
\mp NeverForeshortened 
\ach nag 
\akh naq 
\acl nag 
\akl naq 
\ame naq 
\mp +FinalC 
\mcc PSTNAR / ~_ QUERY</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="400d318e-a9ef-40b4-92be-0d7e96e51d8a" ownerguid="71757ff0-d698-426d-a791-50c4bde6f735"> -<Abbreviation> -<AUni ws="en">9.5.1.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that mark the Source (original location) of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Source (of movement)</AUni> -</Name> -<Questions> -<objsur guid="988fbfb9-2d1d-4a65-8d59-148dbffbe226" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="400f89d6-11fb-4d8d-9d00-d91a7964a1ad"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ampara</AUni> -<AUni ws="qvm-x-acl">ampara</AUni> -<AUni ws="qvm-x-akh">ampara</AUni> -<AUni ws="qvm-x-akl">ampara</AUni> -<AUni ws="qvm-x-ame">ampara</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+amparar</AUni> -<AUni ws="qvm-x-acl">+amparar</AUni> -<AUni ws="qvm-x-akh">+amparar</AUni> -<AUni ws="qvm-x-akl">+amparar</AUni> -<AUni ws="qvm-x-ame">+amparar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.759" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="42609395-d7a0-4a22-bbaa-04cb5dda6786" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+amparar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3917c48b-db8d-4ea3-a95c-ffb18627ca8a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7257a78b-c58a-4ff3-9883-204b9afa6030" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +amparar 
\entryTyp root 
\gENG 
\gSPN 
\e +amparar 
\c V2 
\ach ampara 
\akh ampara 
\acl ampara 
\akl ampara 
\ame ampara 
\i PSA 144.2 Paymi amparamagnë y salvamagnë.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="4010c798-c18d-4499-bb4e-37dfc6f4ba14" ownerguid="bce337e0-118c-4bda-990e-fb91e0d27f4b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="40149dbb-11f0-419c-91be-c567dbfe3270" ownerguid="17d5f429-6550-4a3a-a755-5ac3c3d7e04f"> -<ExampleWords> -<AUni ws="en">spider web, cobweb</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) Where do spiders live?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4016c083-2cca-458e-bc26-06712cf8a5ff" ownerguid="49ee84ff-eb2b-4ba3-b193-3018d34599c2"> -<ExampleWords> -<AUni ws="en">rent, hire, lease, charter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to renting something?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="4018bc6e-4673-4694-b46c-6beeef24631b"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">same</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="401b313f-a7e7-4182-852f-1e39ba88567e" ownerguid="2704b55f-0dfc-45fd-80c9-0ff8c12f8604"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="401bbbe4-a33a-4a1e-b26a-18a756e002c4" ownerguid="65bb0844-9a71-4eec-9b86-bf4b4b508a28"> -<Abbreviation> -<AUni ws="en">4.4.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling cowardly--to be afraid to do something because you think something bad might happen to you.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Cowardice</AUni> -</Name> -<Questions> -<objsur guid="ad2dc5ac-7e3b-4b44-b1a7-bf7f6ff66496" t="o" /> -<objsur guid="49a3036a-a5a3-4da7-9c67-e2494aa16f08" t="o" /> -<objsur guid="2bb2b1fb-45fa-4534-88a0-905833fecefb" t="o" /> -<objsur guid="40c50146-3ebd-47e5-9843-526c8f7a9c5c" t="o" /> -<objsur guid="173393eb-8f31-45f5-ac3e-3dcb0c88eb4a" t="o" /> -<objsur guid="6acd8a7d-ebcd-44ce-a583-d7ab720fe5f2" t="o" /> -<objsur guid="d3e3ffd4-aed5-40f3-8610-9cffa36ced8a" t="o" /> -<objsur guid="76b9fdb1-ec8b-4658-915c-e9b367cb202c" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="2b6f9af7-04ee-4030-a2cd-87d55959caa8" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="401f0ae3-d7e0-4533-80e0-2f2e06f5d052"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wanla</AUni> -<AUni ws="qvm-x-acl">wanla</AUni> -<AUni ws="qvm-x-akh">wanla</AUni> -<AUni ws="qvm-x-akl">wanla</AUni> -<AUni ws="qvm-x-ame">wanla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wanlla</AUni> -<AUni ws="qvm-x-acl">*wanlla</AUni> -<AUni ws="qvm-x-akh">*wanlla</AUni> -<AUni ws="qvm-x-akl">*wanlla</AUni> -<AUni ws="qvm-x-ame">*wanlla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.475" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4a2350ff-1227-43c6-93fc-26d4ab064794" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wanlla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="713ab112-c7c6-4607-905c-6a9899bf436a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="36a1085e-5704-4c83-b55b-fedf24630c6c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wanlla 
\entryTyp root 
\gENG healthy 
\gSPN gordo 
\e *wanlla 
\c N0 
\ach wanla 
\akh wanla 
\acl wanla 
\akl wanla 
\ame wanla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="40214773-0c6c-49dc-97a0-94a87c300f27" ownerguid="089e5530-5add-47ed-9ac8-58cfa08e0536"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.floor</AUni> -<AUni ws="es">entablar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6a1d46ab-1047-4b00-a46e-fb9542286960" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="4021b5e9-e556-45e2-b1a8-0416c51ba93c" ownerguid="e4fb2d9a-9684-4a9b-934d-8d9727b8d132"> -<Form> -<AUni ws="qvm-x-ach">gatu</AUni> -<AUni ws="qvm-x-acl">gatu; gatu; gato</AUni> -<AUni ws="qvm-x-akh">qatu</AUni> -<AUni ws="qvm-x-akl">qatu; qatu; qato</AUni> -<AUni ws="qvm-x-ame">qatu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="40248a12-1809-4561-b786-e4e274c14d82" ownerguid="5e9f361d-17dc-4ada-a312-8da269d22a64"> -<Abbreviation> -<AUni ws="en">1.6.1.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.978" /> -<DateModified val="2022-9-23 16:55:7.978" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for primates (phylum Chordata, class Mammalia, order Primates).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Primate</AUni> -</Name> -<Questions> -<objsur guid="cd61abb3-318e-4fa0-8a9b-602cdf3cffc9" t="o" /> -<objsur guid="7e86bce5-e1d4-427a-8486-cd2d54eff74b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="4026fea0-48be-41a8-aba4-627040eed493" ownerguid="f6567cc1-f3d8-46f1-b133-030b6b9a9417"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bruise</AUni> -<AUni ws="es">magullar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cf55ee93-6d44-421a-ad9c-a644973f1b1d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="40270442-476c-423e-aa85-b0a2cb4a26ea" ownerguid="bdaecf2f-d0fa-49f7-891e-bcb0a31ae630"> -<ExampleWords> -<AUni ws="en">later, it can wait, it will wait</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words indicate that something will not be done now, but later?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4028fb2d-d582-4ea5-8520-d8ecdad54a3b" ownerguid="32bebe7e-bdcc-4e40-8f0a-894cd6b26f25"> -<ExampleWords> -<AUni ws="en">health, well-being, condition, physiology</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a person's physical condition?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="402929ae-1aa3-4b8f-870f-d3a89c99cd27" ownerguid="5489f4ae-34a7-4f8b-9086-4247b0d8b3de"> -<ExampleWords> -<AUni ws="en">ambush, ambuscade, bushwhack, jump, lie in wait for, mug, pounce, strike, turn on, waylay</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to ambushing someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="402956f3-e3b3-450e-ad60-3cd419aa8d22" ownerguid="4432db51-bbe3-46fc-9b3c-92fa775d8a7c"> -<Form> -<AUni ws="qvm-x-ach">tranca</AUni> -<AUni ws="qvm-x-acl">tranca</AUni> -<AUni ws="qvm-x-akh">tranca</AUni> -<AUni ws="qvm-x-akl">tranca</AUni> -<AUni ws="qvm-x-ame">tranca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="402b412b-fe37-451d-82a3-35b24b824630" ownerguid="ab8f12fb-57b0-4d61-8ae0-50d7cbc412df"> -<ExampleWords> -<AUni ws="en">snowflake, hailstone, block of ice, ice cube</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a piece of snow or ice?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4030a3b1-5665-4f7e-ab6a-95d9e09f70b3" ownerguid="4c31ac6a-3197-4762-9937-2fdea90784b7"> -<ExampleWords> -<AUni ws="en">suddenly, abruptly, without warning, without notice</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used to indicate that something happened suddenly?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="40315e1f-a1d4-4197-9e4f-d664c359bd81" ownerguid="fecf0558-0467-4946-b2de-b314af921dcd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="4c8fb112-1d17-41bf-977b-dd2de6ae336e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="403469fa-40eb-4d02-91ea-0e5fc242a9bc" ownerguid="a01a1900-fc1f-462e-ba3d-ae822711b034"> -<ExampleWords> -<AUni ws="en">mentally ill, insane, mad, crazy, disturbed, mentally disabled, crackbrained, crazed, demonized, demon possessed, feeble minded, melancholic, neurotic, obsessive, paranoid, preoccupied, psychopathic, psychotic, retarded, catatonic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is mentally ill?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4036ea85-a81b-4311-886b-7cef7c1a70ee" ownerguid="1d11e1ba-14e8-421f-a31c-8e3cd9957639"> -<Form> -<AUni ws="qvm-x-ach">ancla</AUni> -<AUni ws="qvm-x-acl">ancla</AUni> -<AUni ws="qvm-x-akh">ancla</AUni> -<AUni ws="qvm-x-akl">ancla</AUni> -<AUni ws="qvm-x-ame">ancla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="403f06ff-a982-4447-8bc7-c3f71237999e"> -<Analyses> -<objsur guid="e22444ea-92b3-4abc-a341-69f01dfab3a4" t="o" /> -</Analyses> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">nipäkun</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="403f2e6e-c261-4054-8084-8f6918ad5b92" ownerguid="8bcc6508-263d-4d0d-8eb7-25ec230a157e" /> -<rt class="CmDomainQ" guid="404250b1-f312-43cb-b09d-a7fe7121fdc7" ownerguid="d117aa22-3f18-47c4-9683-51ecf1dc7134"> -<ExampleWords> -<AUni ws="en">bark, burl, knot, hull, husk, shell, cork</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the outside of a plant?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="404337c3-03d7-47ad-a82f-c962b9a4b72a" ownerguid="1325df44-76cf-4c95-a918-304f22d502a2"> -<Form> -<AUni ws="qvm-x-ach">flëta</AUni> -<AUni ws="qvm-x-acl">flëta</AUni> -<AUni ws="qvm-x-akh">flëta</AUni> -<AUni ws="qvm-x-akl">flëta</AUni> -<AUni ws="qvm-x-ame">flëta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="404e92e1-51e6-4389-8902-9012af56692d" ownerguid="9351d5b6-5a87-422a-9e82-ca6a0bacd3e9"> -<ExampleWords> -<AUni ws="en">calm (n), composure, presence of mind, equanimity, peace, placidity, poise, repose, serenity, tranquility</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of calm?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="404ee88b-9a94-4b0e-b682-54b09b8ef49b"> -<Form> -<Str> -<Run ws="en">tran</Run> -</Str> -</Form> -</rt> -<rt class="CmSemanticDomain" guid="40516af2-d413-418e-8b68-8443847ee169" ownerguid="8a11e609-e88d-4247-8c5f-224ddb20de10"> -<Abbreviation> -<AUni ws="en">5.3.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.327" /> -<DateModified val="2022-9-23 16:55:8.327" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to parts of clothing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Parts of clothing</AUni> -</Name> -<OcmCodes> -<Uni>293 Paraphernalia</Uni> -</OcmCodes> -<Questions> -<objsur guid="a977dae5-a8a3-4e8c-b647-c0586ff510b6" t="o" /> -<objsur guid="49379a1d-0a64-4f56-9f28-1ce25aa982c4" t="o" /> -<objsur guid="7eedb548-5ce2-4fb1-9cad-3bb5116ad5e0" t="o" /> -<objsur guid="9bf76421-79ff-4940-b4fb-35aec683cf17" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="40550f62-de29-404e-826d-875f91fd9cb0" ownerguid="e0e8af5a-04c1-49a1-9955-9a2af7879068"> -<ExampleWords> -<AUni ws="en">apparent, evident, obvious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that is easily known?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="40590157-9412-4558-b0f7-311867b649cc" ownerguid="2810998c-d6cc-47a3-a946-66d0986a2767"> -<Abbreviation> -<AUni ws="en">7.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.536" /> -<DateModified val="2022-9-23 16:55:8.536" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for turning something--to cause something to change direction, or to cause something to revolve or move in a circle.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>16 Non-Linear Movement</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Turn something</AUni> -</Name> -<Questions> -<objsur guid="80305b40-daa5-422a-a8b4-745d09a75c59" t="o" /> -<objsur guid="0ec73911-b05f-43ee-a7f4-0591bb18343d" t="o" /> -<objsur guid="450d285d-b9d0-4329-b418-041307921b55" t="o" /> -<objsur guid="6a59e1f6-1b5f-4268-a0b1-907bbdfff3c3" t="o" /> -<objsur guid="0fc3f51e-106b-412b-bcd0-90829c2c4dae" t="o" /> -<objsur guid="6836e7bd-d3f7-45cf-9e7d-1f5065aafc79" t="o" /> -<objsur guid="e037dbd3-9da7-42b2-b9ef-78fd57fdb3eb" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="405a8b33-cbc5-466d-905c-36eb59e40a57" ownerguid="ceedce41-cdef-4766-9c5e-8ff5608c5464"> -<ExampleWords> -<AUni ws="en">store the harvest, store food, put in sacks, tie together, heap of grain, haystack, sheaf of grain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to storing the harvest?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="405cd9d3-240c-420b-95c7-82d9c5cddec5" ownerguid="1f0f411b-2502-4c42-a75e-55a09d0d9e08"> -<Form> -<AUni ws="qvm-x-ach">fundi</AUni> -<AUni ws="qvm-x-acl">fundi; funde</AUni> -<AUni ws="qvm-x-akh">fundi</AUni> -<AUni ws="qvm-x-akl">fundi; funde</AUni> -<AUni ws="qvm-x-ame">fundi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="405dfa30-b552-4571-a2b5-28e824536e06" ownerguid="531af868-b5fb-41c2-ba50-764458f9102f"> -<ExampleWords> -<AUni ws="en">poinsettia, rose bush, bougainvillea</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of bushes are there?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="405f1654-370d-4749-8c59-bd6252af4f62" ownerguid="d18515b2-75c1-48d1-81e8-f22be8396300"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ISA 56.12 ¡Canan upyashgantsinog warapis fiestata rurar pasashgantsiyag\f + \fr 56.12 \ft Waquincunaga cansashgantsiyag nipäcun.\f* upyashun!>></Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="4061538e-8356-4944-a2a7-df8ea9d471e0" ownerguid="fecba2a8-a385-4a36-94e2-4003b2d1e0d2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="4063e25b-10e3-42ed-9743-b28582001a65" ownerguid="43dd6293-28be-49a1-89f1-422b07947fda"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="40653862-b20c-4c46-bcae-904bbaebb45f" ownerguid="4c61a088-d8d6-43cb-b2ac-a3e9cedd6a35"> -<Form> -<AUni ws="qvm-x-ach">trilla</AUni> -<AUni ws="qvm-x-acl">trilla</AUni> -<AUni ws="qvm-x-akh">trilla</AUni> -<AUni ws="qvm-x-akl">trilla</AUni> -<AUni ws="qvm-x-ame">trilla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="4068488f-59e9-47d1-8884-a1d6dcc10c36" ownerguid="3fae9066-eb66-444e-bd41-818b9f7b3bae"> -<Abbreviation> -<AUni ws="en">7.5.9.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.549" /> -<DateModified val="2022-9-23 16:55:8.549" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to putting lots of things on something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Load, pile</AUni> -</Name> -<Questions> -<objsur guid="c1ece65e-13d8-41b2-996b-f479283173d1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="4068b06d-820d-448b-8fa7-d36006fba8b7" ownerguid="aa2b547c-2c82-4ce0-a1b3-35fa809d666c"> -<ExampleWords> -<AUni ws="en">how narrow, be only (one inch) wide, be (two inches) (too) narrow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words indicate how narrow something is?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="406c0bf1-74ba-4db3-9654-427c72a2db68"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">responsabli; responsable</AUni> -<AUni ws="qvm-x-acl">responsabli; responsabli; responsable</AUni> -<AUni ws="qvm-x-akh">responsabli; responsable</AUni> -<AUni ws="qvm-x-akl">responsabli; responsabli; responsable</AUni> -<AUni ws="qvm-x-ame">responsabli; responsable</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+responsable</AUni> -<AUni ws="qvm-x-acl">+responsable</AUni> -<AUni ws="qvm-x-akh">+responsable</AUni> -<AUni ws="qvm-x-akl">+responsable</AUni> -<AUni ws="qvm-x-ame">+responsable</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.338" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c4d85afe-d875-4b34-85c2-5cb494e28912" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+responsable</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ee3a3fc0-ccc5-4431-9b63-04a84df8511e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="58c8d5cc-d3fb-4d35-a135-b2330d95961d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +responsable 
\entryTyp root 
\gENG responsable 
\gSPN responsable 
\e +responsable 
\c N0 
\mp +FinalI 
\ach responsabli / ~_# 
\ach responsable / _# 
\akh responsabli / ~_# 
\akh responsable / _# 
\acl responsabli / ~_# 
\acl responsabli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl responsable +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl responsabli / ~_# 
\akl responsabli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl responsable +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame responsabli / ~_# 
\ame responsable / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="4073645e-af63-4f01-814f-0f8f3f376227" ownerguid="94f406f8-a186-4f07-ab69-7457479fd6a5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="4078aba9-aa73-495a-b092-4a6d79b240f8" ownerguid="024ec8bc-fd9f-4f71-8e86-b4e1a027da53"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">raspberry.bush</AUni> -<AUni ws="es">frambueso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b6d74740-dbbc-4492-9a02-3769cce0e687" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4079752a-245a-4960-842b-20acc789c160" ownerguid="0066f0f7-02dd-4f8e-afa5-59b8cb5a434a"> -<ExampleWords> -<AUni ws="en">treacherous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe someone who betrays someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="407b8988-90f1-45b7-ac2b-6cfb7f2e6232" ownerguid="985f099d-f38c-4957-907a-769d1a45ca10"> -<ExampleWords> -<AUni ws="en">unsteady, shaky, easily moved, unstable, unsettled, rickety, tottering, wobbly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is easy to move?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="40830da1-dfb3-4087-8d35-bc84c52446b2" ownerguid="142fe0b4-6773-4be6-8a96-fc740209baa2"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ZEP 1.17 Ayancunapis uywapa litscannog mashtaranga.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="4083c501-02ef-45ec-8b64-cb09a0c58ca7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">folle:tu</AUni> -<AUni ws="qvm-x-acl">folle:tu; folle:tu; folle:to</AUni> -<AUni ws="qvm-x-akh">folle:tu</AUni> -<AUni ws="qvm-x-akl">folle:tu; folle:tu; folle:to</AUni> -<AUni ws="qvm-x-ame">folle:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+folleto</AUni> -<AUni ws="qvm-x-acl">+folleto</AUni> -<AUni ws="qvm-x-akh">+folleto</AUni> -<AUni ws="qvm-x-akl">+folleto</AUni> -<AUni ws="qvm-x-ame">+folleto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.568" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5996d2dd-5f21-4c40-a1c3-f76e968fdac3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+folleto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a657fb7e-d01b-490b-b7ae-b37f896a3cb2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cc12d735-9fca-4430-93b6-a77839d651d6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +folleto 
\entryTyp root 
\gENG pamphlet 
\gSPN folleto 
\e +folleto 
\c N0 
\ach folle:tu 
\akh folle:tu 
\acl folle:tu / _# 
\acl folle:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl folle:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl folle:tu / _# 
\akl folle:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl folle:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame folle:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4084ca2c-07c4-4550-9447-a386bef57423" ownerguid="642ff468-e6c8-4fd0-8f52-262efa8f7774"> -<ExampleWords> -<AUni ws="en">hate, wish evil on, wish one ill, want revenge, have it in for</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to hating someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="40899de2-ccdc-4e66-a358-5a9a54743ff4" ownerguid="e08e252a-9227-42e4-bcb8-b803d25071b6"> -<ExampleWords> -<AUni ws="en">be embarrassed, feel embarrassed, squirm, I could have died, I almost died</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling embarrassed?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="408a637e-691e-4969-a28f-ddd7d0b94b30"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sauci; sauce</AUni> -<AUni ws="qvm-x-acl">sauci; sauci; sauce</AUni> -<AUni ws="qvm-x-akh">sauci; sauce</AUni> -<AUni ws="qvm-x-akl">sauci; sauci; sauce</AUni> -<AUni ws="qvm-x-ame">sauci; sauce</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sauce</AUni> -<AUni ws="qvm-x-acl">+sauce</AUni> -<AUni ws="qvm-x-akh">+sauce</AUni> -<AUni ws="qvm-x-akl">+sauce</AUni> -<AUni ws="qvm-x-ame">+sauce</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.470" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="941fca98-c1d4-412d-80d7-b9fea42e3cda" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sauce</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b1e3c056-bb71-4e65-a481-5d5d3ec4ea06" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8b0989f5-aed1-4666-9873-8d3c16a4818e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sauce 
\entryTyp root 
\gENG willow 
\gSPN sauce 
\e +sauce 
\c N0 
\mp +FinalI 
\ach sauci / ~_# 
\ach sauce / _# 
\akh sauci / ~_# 
\akh sauce / _# 
\acl sauci / ~_# 
\acl sauci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sauce +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sauci / ~_# 
\akl sauci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sauce +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sauci / ~_# 
\ame sauce / _# 
\i JOB 40.22 Mayu cuchuncho caycag sauce yöracuna jirururarmi lantupan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="408ee2fe-d56b-4533-ac0e-1e45efd457b0" ownerguid="cc8896fc-fb52-48aa-853e-8a145e0ebb6e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="4093bfe8-54b3-4ffc-bfe3-3999279840b5" ownerguid="6137239a-b469-46be-b7cb-b9ac22fcc195"> -<Abbreviation> -<AUni ws="en">3.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.184" /> -<DateModified val="2022-9-23 16:55:8.184" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to showing someone how something works, or explaining something to someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Show, explain</AUni> -</Name> -<Questions> -<objsur guid="df874c71-cbc9-49da-ba23-65a6b7de01d3" t="o" /> -<objsur guid="30dc92a3-04a1-4b8f-ae05-51e006bef67b" t="o" /> -<objsur guid="3aeaed53-b398-4fcd-9289-24dfdc47c9df" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="273f4956-f79f-4b1e-b552-466280a65e60" t="r" /> -<objsur guid="8225de87-35a3-4c7a-b35c-f45b152caebe" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="409524ed-24d0-49a1-a77d-90205075dd92" ownerguid="4c69ee77-777e-4a6e-b592-d29537dfd146"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">polled</AUni> -<AUni ws="es">ser.descornado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9de2228b-1cd5-4489-a848-087f04149642" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="40957f68-47c9-4d50-a069-01c85150a3d1" ownerguid="267cfa86-1b16-4f58-88ef-988eb679d967"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ya</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ya</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ya</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ya</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ya</Run> -</AStr> -</Form> -<Morph> -<objsur guid="0266a2a0-8dee-41c8-9584-efdc790cb2f2" t="r" /> -</Morph> -</rt> -<rt class="CmSemanticDomain" guid="4098899a-0ad0-4d71-9f9f-b99d5ba2e0d5" ownerguid="0f883eb0-00a1-44cc-b719-97fb6ec145d4"> -<Abbreviation> -<AUni ws="en">5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.306" /> -<DateModified val="2022-9-23 16:55:8.306" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to food.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>5 Foods and Condiments; 5A Food</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Food</AUni> -</Name> -<OcmCodes> -<Uni>146 Nutrition</Uni> -</OcmCodes> -<Questions> -<objsur guid="c9df34b1-7f6c-4b20-849f-ec10b8f35cd1" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="1fda68d4-5941-4695-b656-090d603a3344" t="o" /> -<objsur guid="0f568473-880d-43bd-b5ce-590100fdcaf6" t="o" /> -<objsur guid="5bcd08a6-cb46-41bb-a732-0d690b5ea596" t="o" /> -<objsur guid="c6688928-6694-4264-8048-a60b665b5793" t="o" /> -<objsur guid="3710e019-46c9-44db-a0aa-9054d3126161" t="o" /> -<objsur guid="029e0760-3306-41cc-b032-40befb22303e" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="4099fa0a-f905-4aee-8a50-2da2f7ffebbf" ownerguid="b5134925-6924-4e53-87c9-71a9a7042005"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="11ac6b8e-7ca3-45e4-a15d-104923454136" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="409a2bb3-32ed-46cb-9dec-be7c3d19c974" ownerguid="aaa01b5f-0899-42cd-a62b-60c74fcdf5be"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="409c1010-c797-4c0f-88b3-b2897f52feb3" ownerguid="e3ef35b7-abc6-41f0-bc90-2d5bee99160e"> -<Form> -<AUni ws="qvm-x-ach">llamu</AUni> -<AUni ws="qvm-x-acl">llamu; llamo</AUni> -<AUni ws="qvm-x-akh">llamu</AUni> -<AUni ws="qvm-x-akl">llamu; llamo</AUni> -<AUni ws="qvm-x-ame">llamu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="409c6739-bef4-4237-b7d7-883aabaaf0ce"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">marfil</AUni> -<AUni ws="qvm-x-acl">marfil</AUni> -<AUni ws="qvm-x-akh">marfil</AUni> -<AUni ws="qvm-x-akl">marfil</AUni> -<AUni ws="qvm-x-ame">marfil</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+marfil</AUni> -<AUni ws="qvm-x-acl">+marfil</AUni> -<AUni ws="qvm-x-akh">+marfil</AUni> -<AUni ws="qvm-x-akl">+marfil</AUni> -<AUni ws="qvm-x-ame">+marfil</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.344" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="60dc07ac-09c3-403f-b4dc-155c2ba950fa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+marfil</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7f11aea2-0583-4947-8d46-12878fccc34b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d02b34ef-98cd-4db1-8097-921725ce12ed" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +marfil 
\entryTyp root 
\gENG ivory 
\gSPN marfil 
\e +marfil 
\c N0 
\mp NeverLowered 
\ach marfil 
\akh marfil 
\acl marfil 
\akl marfil 
\ame marfil 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="40a41fad-5317-436d-8c3f-e52650865c7f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rcu; rca</AUni> -<AUni ws="qvm-x-acl">rcu; rco; rca</AUni> -<AUni ws="qvm-x-akh">rku; rka</AUni> -<AUni ws="qvm-x-akl">rku; rko; rka</AUni> -<AUni ws="qvm-x-ame">rku; rka</AUni> -</Custom> -<AlternateForms> -<objsur guid="7d283361-5a96-443d-a27e-892fff7dade7" t="o" /> -</AlternateForms> -<DateCreated val="2022-9-23 18:26:20.589" /> -<DateModified val="2022-10-16 13:51:27.953" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="edb14f46-62c7-4f1d-a3da-c62c8d887e9c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">UP</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c6e7792f-f209-4623-b3a0-f732c9368e47" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f13ed73c-8b8d-4f97-a172-09f8f88d124f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx UP 
\entryTyp suffix 
\gENG UP 
\gSPN ARR 
\e UP 
\c V1/V1 V2/V2 
\o 040 
\mp PMlowered +foreshortens 
\ach rcu 
\ach rca morphlowered 
\akh rku 
\akh rka morphlowered 
\acl rcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl rco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl rca morphlowered 
\akl rku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rka morphlowered 
\ame rku 
\ame rka morphlowered 
\mcc UP / PASS ~_ PLDIR 
\mcc UP / PLDIR ~_ PLDIR 
\mcc UP / *yatra.v1 ~_ IMPFV1 CAUS 
\mcc UP / ~_ UP 
\mcc UP / ~_ IMPFV1 1O 
\mcc UP / ~_ IMPFV1 CAUS 
\i yanaparcamay 
\i munarcö. 
\i yanaparcö. 
\i Rätu guepishtarcö. 
\i arurcö.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="40aa831f-cb62-4077-87fe-44a6aae92640" ownerguid="9389dcf8-096d-415f-91ab-e03ef84e16e8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a5af1845-8fde-493c-ae1b-46ccacaea819" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="40ad6fb7-0147-4ed1-b6f6-ebbce7f9f091" ownerguid="3a346084-49dd-4cdf-a418-e8a949688aad"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">take.picture</AUni> -<AUni ws="es">retratar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="600198a3-2264-46c9-a9f3-511d91cff085" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="40ad7b1f-c0f1-4f0a-b413-69ca27f5f601" ownerguid="22eed30b-9f29-4845-925a-f553fea63fff"> -<Form> -<AUni ws="qvm-x-ach">chisha</AUni> -<AUni ws="qvm-x-acl">chisha</AUni> -<AUni ws="qvm-x-akh">chisha</AUni> -<AUni ws="qvm-x-akl">chisha</AUni> -<AUni ws="qvm-x-ame">chisha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="40b01283-cec8-41d7-9a98-9dbace2197b2" ownerguid="fa829fcb-40f4-4003-8cca-561074eded13"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="40b037a5-852a-4db9-ae5f-1909b844a381" ownerguid="0ce61f27-9de8-49b2-9189-6f6efe488f6d"> -<ExampleWords> -<AUni ws="en">overlook</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to looking for something and not seeing it?</AUni> -</Question> -</rt> -<rt class="StTxtPara" guid="40b87c51-c84f-44af-b3b0-e8d66629d8a8" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">aywapäkumushqayki</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="822ef051-c1b1-4272-9c65-21e32187812c" t="o" /> -</Segments> -</rt> -<rt class="CmDomainQ" guid="40bde16a-a4cc-47ae-9c6e-0b11170ca440" ownerguid="20baa5e7-4f02-4782-a292-c6281d7b5f3a"> -<ExampleWords> -<AUni ws="en">push</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to pushing something along the ground?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="40bf1f44-8f66-480e-bd7e-677aeaaffaac" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<ExampleWords> -<AUni ws="en">march, parade, goose-step, in step</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to walking like a soldier?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="40c4b498-7132-4ed0-9840-97622a4b9369"> -<Analyses> -<objsur guid="307bd120-e876-4218-b489-8c794914b8c6" t="o" /> -<objsur guid="b13ce5d7-e5f9-42b8-bae0-12fd1fec9b43" t="o" /> -<objsur guid="b4f8d2c6-f44f-4bf1-a0b7-5f65328545d3" t="o" /> -</Analyses> -<Checksum val="1340781910" /> -<Form> -<AUni ws="qvm-x-akh">kanqanatsu</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexExampleSentence" guid="40c4c089-f0a6-4ad0-9fa7-6f9dc8b07d71" ownerguid="0ca8ae6f-c062-402b-a83d-da1fb91dfb33"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">SNG 8.8 Nanantsipaga manaragmi chuchunpis pushcunragtsu.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="40c50146-3ebd-47e5-9843-526c8f7a9c5c" ownerguid="401bbbe4-a33a-4a1e-b26a-18a756e002c4"> -<ExampleWords> -<AUni ws="en">unnerve</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to causing someone to feel cowardly?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="40ca31d9-ee25-478c-8d09-f1bf3b4dde42" ownerguid="3a346084-49dd-4cdf-a418-e8a949688aad"> -<Form> -<AUni ws="qvm-x-ach">retrata</AUni> -<AUni ws="qvm-x-acl">retrata</AUni> -<AUni ws="qvm-x-akh">retrata</AUni> -<AUni ws="qvm-x-akl">retrata</AUni> -<AUni ws="qvm-x-ame">retrata</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="40cbfd35-4d6f-4c60-96a4-3f885c3c8acd" ownerguid="e545baab-581d-4af8-81f2-5a884e272349"> -<ExampleWords> -<AUni ws="en">saddle, bit, bridle, reins, harness, yoke</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What equipment is used to ride or harness a horse?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="40cea1b9-db8c-4434-9360-d458d0976738" ownerguid="fb6c5e27-6fb5-4dac-ad1a-4a1d633df22e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">scale</AUni> -<AUni ws="es">trepar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4440d1d3-ee29-4201-b289-ffb7eba831b7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="40d0a9f2-1c32-4753-90ff-ff46d203ea0b" ownerguid="4578750f-42d2-4504-b625-7d070df56dc6"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="b72074cf-94db-4193-8a53-843f13103fbd" t="o" /> -<objsur guid="a1cb0fa5-32ba-4832-8749-180ee960f6c4" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="40d3fe94-d6f0-4957-9d5d-19207821c6a9" ownerguid="c08014b2-4262-43da-9dd5-8a4db5deac1e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="40d44a7b-defb-4dd7-85f4-e486e14423f3" ownerguid="d502512c-966b-4752-8636-716fb29facfe"> -<ExampleWords> -<AUni ws="en">be asleep, sleep</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used of being asleep?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="40d540ef-2338-410e-af93-f9bf69cd4892"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tagsha</AUni> -<AUni ws="qvm-x-acl">tagsha</AUni> -<AUni ws="qvm-x-akh">taqsha</AUni> -<AUni ws="qvm-x-akl">taqsha</AUni> -<AUni ws="qvm-x-ame">taqsha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*taqsha</AUni> -<AUni ws="qvm-x-acl">*taqsha</AUni> -<AUni ws="qvm-x-akh">*taqsha</AUni> -<AUni ws="qvm-x-akl">*taqsha</AUni> -<AUni ws="qvm-x-ame">*taqsha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.823" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aef9cae6-b311-4d12-a931-ab6155fe3c39" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*taqsha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3becf137-bfe0-4485-874d-d6f4d9d6b7ca" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8359d51d-f60e-4a72-a628-193306723f27" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *taqsha 
\entryTyp root 
\gENG wash.clothes 
\gSPN lavar.ropa 
\e *taqsha 
\c V2 
\ach tagsha 
\akh taqsha 
\acl tagsha 
\akl taqsha 
\ame taqsha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="40d69d3d-b0b0-40e5-bbbf-010b7b9d202a" ownerguid="771e3882-f672-4e67-8580-edd82d7e5090"> -<ExampleWords> -<AUni ws="en">consideration, courtesy, graciousness, kindness, kindliness, thoughtfulness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the character quality of doing good?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="40d82769-17e5-4bb6-881e-406f887039f6"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Jue</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="40db08b7-4d5e-4992-8530-7a77edfd9036" ownerguid="2bac24a3-b9c6-42ea-befd-2faf99940fb0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="d9359824-5dfb-47d3-b09c-89ce8446c231" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="40e0fc88-ad7b-409f-ba80-22361ca2fe24" ownerguid="51e888b5-f778-43fe-8a33-5b956e876eec"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="40e28065-a966-4bef-a988-283110aa115b" ownerguid="fb1e64ab-fced-4693-8ffe-9e8f0b9c35a3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="4197c03f-bfef-4c2b-8786-54a109321428" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">to.glory</AUni> -<AUni ws="es">halagar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6c435fc1-180d-4a31-a63c-7139eced6fa1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="40e2dca4-78f5-4fec-a4f4-6e14cdcd79ff" ownerguid="2e16fa56-78c4-484d-91fe-b68e8171cd38"> -<Form> -<AUni ws="qvm-x-ach">sepla</AUni> -<AUni ws="qvm-x-acl">sepla</AUni> -<AUni ws="qvm-x-akh">sepla</AUni> -<AUni ws="qvm-x-akl">sepla</AUni> -<AUni ws="qvm-x-ame">sipla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="40e79867-912f-4c5f-80ee-3f53013d3f6f" ownerguid="45993c48-3893-4d9e-96a3-b6b1ad160538"> -<ExampleWords> -<AUni ws="en">poverty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the condition of being poor?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="40e813fc-da50-4c89-9461-980849bb50c8" ownerguid="0c7c33f2-4cfa-42df-84bb-19fc915a72bd"> -<ExampleWords> -<AUni ws="en">copy (n), duplicate, photocopy, duplication, clone, replica, reproduction</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a copy of something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="40e83808-2c11-4e9f-bec7-e96820e4363a" ownerguid="e442afe1-e7cd-4ab2-b456-963e2e041a1e"> -<ExampleWords> -<AUni ws="en">slow down, slow up, decelerate, coast to a stop, (its) speed fell, ease off, reduce your speed, decrease your speed, come to a stop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to moving more slowly?</AUni> -</Question> -</rt> -<rt class="StTxtPara" guid="40ee76e2-b35f-46c7-9ffc-8c8411198673" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">aywakashqan</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="486c2de1-4992-4833-a667-9c73b12affd1" t="o" /> -</Segments> -</rt> -<rt class="LexSense" guid="40f0de76-229c-4c52-86bd-25c602ec50d1" ownerguid="851413bf-5eb7-4230-b034-e9178b5925bc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="2247cb98-7939-4a30-8a5b-be3d47bda694" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="40f16859-b81d-45a5-b812-9e5724eba471" ownerguid="baa72d83-f62b-499e-af40-5d41c39a9499"> -<Form> -<AUni ws="qvm-x-ach">shaclu</AUni> -<AUni ws="qvm-x-acl">shaclu; shaclo</AUni> -<AUni ws="qvm-x-akh">shaklu</AUni> -<AUni ws="qvm-x-akl">shaklu; shaklo</AUni> -<AUni ws="qvm-x-ame">shaklu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="40f30c0a-9a61-4a72-ac2c-ab8393f5ba8c" ownerguid="5b1e0bfb-3f12-4e5e-9e9f-13f91752a853"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="40f3b605-aab8-4820-8643-9b30fabc412d" ownerguid="f167559b-ff48-44ac-8289-1e0e3641738c"> -<Form> -<AUni ws="qvm-x-ach">achpita</AUni> -<AUni ws="qvm-x-acl">achpita</AUni> -<AUni ws="qvm-x-akh">achpita</AUni> -<AUni ws="qvm-x-akl">achpita</AUni> -<AUni ws="qvm-x-ame">achpita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoInflAffMsa" guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" ownerguid="008cecc8-8fcc-439a-88eb-d8bd404d5da9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="6c1a55b7-decb-4da3-86ca-e0b8dc1a89c0" t="r" /> -</Slots> -</rt> -<rt class="CmDomainQ" guid="40f60763-8748-43b9-8b84-87d3fb62e406" ownerguid="00041516-72d1-4e56-9ed8-fe235a9b1a68"> -<ExampleWords> -<AUni ws="en">place, order, rank, slot, grade</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the place that something has in a series?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="40ff5cee-31d8-4c89-a212-877347212a0e" ownerguid="0f568473-880d-43bd-b5ce-590100fdcaf6"> -<Abbreviation> -<AUni ws="en">5.2.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.315" /> -<DateModified val="2022-9-23 16:55:8.315" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being full of food.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Satiated, full</AUni> -</Name> -<Questions> -<objsur guid="f62dae27-a008-45d6-864d-2c96d63ef05b" t="o" /> -<objsur guid="e443f8e9-f15c-4d2c-b2b6-110a512b49f4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="40ff96f5-d1fa-4449-8fab-5f4adc59425c" ownerguid="c7f350ff-2a07-4fc8-be34-bf651711bcd1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="40ffe791-d9ca-4135-a1df-e308e27feedb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shicra</AUni> -<AUni ws="qvm-x-acl">shicra</AUni> -<AUni ws="qvm-x-akh">shikra</AUni> -<AUni ws="qvm-x-akl">shikra</AUni> -<AUni ws="qvm-x-ame">shikra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shikra</AUni> -<AUni ws="qvm-x-acl">*shikra</AUni> -<AUni ws="qvm-x-akh">*shikra</AUni> -<AUni ws="qvm-x-akl">*shikra</AUni> -<AUni ws="qvm-x-ame">*shikra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.571" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b21435d2-137a-4111-8f63-6ffeea671b2c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shikra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e3a2cc24-863b-4868-84d0-bbe3d9120340" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3fc1d130-732b-4f36-b1c3-a31d02a5c834" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shikra 
\entryTyp root 
\gENG basket 
\gSPN cereta 
\e *shikra 
\c N0 
\ach shicra 
\akh shikra 
\acl shicra 
\akl shikra 
\ame shikra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="4104237b-4a9c-4d03-8037-965f95f462a8" ownerguid="810d01d5-4569-418e-b535-bcfebc6aca5e"> -<Form> -<AUni ws="qvm-x-ach">mejora</AUni> -<AUni ws="qvm-x-acl">mejora</AUni> -<AUni ws="qvm-x-akh">mejora</AUni> -<AUni ws="qvm-x-akl">mejora</AUni> -<AUni ws="qvm-x-ame">mejora</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="41064032-9e71-462b-af7e-019afbe385a0" ownerguid="9992b4ba-908a-42ac-a727-bb58b7f9b1c1"> -<Form> -<AUni ws="qvm-x-ach">tsaca</AUni> -<AUni ws="qvm-x-acl">tsaca</AUni> -<AUni ws="qvm-x-akh">tsaka</AUni> -<AUni ws="qvm-x-akl">tsaka</AUni> -<AUni ws="qvm-x-ame">tsaka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4106dbae-eac4-448e-b4e3-abf2121fd80c" ownerguid="bd002dfa-e842-47d6-b11b-3c213cbf133a"> -<ExampleWords> -<AUni ws="en">unborn child, unborn baby, fetus, embryo</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to an unborn baby?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="410a3d81-290f-416b-8012-3aa16eaa9e55" ownerguid="8a11e609-e88d-4247-8c5f-224ddb20de10"> -<Abbreviation> -<AUni ws="en">5.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.325" /> -<DateModified val="2022-9-23 16:55:8.325" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to women's clothing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Women's clothing</AUni> -</Name> -<Questions> -<objsur guid="3eb877e9-d681-47fb-b817-470e2a8ee807" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="410b65e2-879d-44b7-9634-e224564d36ee" ownerguid="e5d556fc-50ac-43fb-a2dd-5d462c9a861e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="dc6f5737-3830-4a75-842d-57a76127af32" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="410e2b69-5e57-424c-b804-5da8de93c2cf" ownerguid="edeb9458-3bdb-4d14-aaa1-6eb457307b9c"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">We <should not> do anything to hinder them.; We <ought not to> do anything that might harm them.; I <caution> you not to interfere.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">should not, ought not to, caution</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that something should not be done?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="41109bdc-0212-42a2-9d55-1a7251e60e21" ownerguid="d1ad4b21-19ad-4175-979a-832533796120"> -<Form> -<AUni ws="qvm-x-ach">quimsa</AUni> -<AUni ws="qvm-x-acl">quimsa</AUni> -<AUni ws="qvm-x-akh">kimsa</AUni> -<AUni ws="qvm-x-akl">kimsa</AUni> -<AUni ws="qvm-x-ame">kimsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="4116995c-cb92-4d40-b6f3-02f720095339" ownerguid="8ce06964-1c8e-494b-a177-ad1c4f16ea97"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="4810777e-4d08-424a-adcd-ab2b65ed9f37" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="41180113-78ed-4232-9b44-9b4df5759375" ownerguid="19ed20ea-559f-4aa8-bdb3-b40988eaa6d7"> -<Category> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</Category> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="382a76f2-91e4-4c93-bd9d-53c5ecd5f8c4" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="7f188e67-b079-4943-be81-fd1c9b8ce3b0" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="411b1ec5-6972-4239-a00a-648175abbbda" ownerguid="6bd023f6-730e-44c2-ae8f-78df967e2e18"> -<ExampleWords> -<AUni ws="en">attract, lure, draw</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to causing something to move towards you without touching it?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="411b3d52-60b2-47b4-844d-bbfdfa6a1c34"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">notificación; notificacion</AUni> -<AUni ws="qvm-x-acl">notificación; notificacion</AUni> -<AUni ws="qvm-x-akh">notificación; notificacion</AUni> -<AUni ws="qvm-x-akl">notificación; notificacion</AUni> -<AUni ws="qvm-x-ame">notificación; notificacion</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+notificación</AUni> -<AUni ws="qvm-x-acl">+notificación</AUni> -<AUni ws="qvm-x-akh">+notificación</AUni> -<AUni ws="qvm-x-akl">+notificación</AUni> -<AUni ws="qvm-x-ame">+notificación</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.568" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="81f10dbd-fa1f-4276-ae3e-cd8748c484be" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+notificación</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ab98496d-8c4a-4be9-8086-ec5eaf8bde91" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="87aa8f63-d0e9-4c20-9afc-6acbac3111a9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +notificación 
\entryTyp root 
\gENG 
\gSPN 
\e +notificación 
\c N0 
\mp +FinalC 
\ach notificación / _# 
\ach notificacion / ~_# 
\akh notificación / _# 
\akh notificacion / ~_# 
\acl notificación / _# 
\acl notificacion / ~_# 
\akl notificación / _# 
\akl notificacion / ~_# 
\ame notificación / _# 
\ame notificacion / ~_# 
\i NEH 6.2 Tsaymi Sanbalat y Gesem notificacionta apatsimorgan caynog nir: <<Ono jutiyog pampacho caycag maygan marcamanpis juntacäshun.>></Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="411bacc7-d754-4035-86aa-d2e5c294d9bc" ownerguid="0448140b-6044-4929-a748-9d84095ebb1b"> -<Form> -<AUni ws="qvm-x-ach">paquipa</AUni> -<AUni ws="qvm-x-acl">paquipa</AUni> -<AUni ws="qvm-x-akh">pakipa</AUni> -<AUni ws="qvm-x-akl">pakipa</AUni> -<AUni ws="qvm-x-ame">pakipa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="411e2f93-b331-4717-94f1-43dc9151808c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">togush</AUni> -<AUni ws="qvm-x-acl">togush</AUni> -<AUni ws="qvm-x-akh">toqush</AUni> -<AUni ws="qvm-x-akl">toqush</AUni> -<AUni ws="qvm-x-ame">tuqush</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tuqush</AUni> -<AUni ws="qvm-x-acl">*tuqush</AUni> -<AUni ws="qvm-x-akh">*tuqush</AUni> -<AUni ws="qvm-x-akl">*tuqush</AUni> -<AUni ws="qvm-x-ame">*tuqush</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.27" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="42d61fef-622b-4512-979f-0a394cec26da" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tuqush</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fec47d37-7710-4b53-b532-7e5b4997356c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aa734ecb-a6be-4796-b978-74be5b7efc2e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tuqush 
\entryTyp root 
\gENG 
\gSPN tocosh 
\e *tuqush 
\c N0 
\mp +FinalC 
\ach togush 
\akh toqush 
\acl togush 
\akl toqush 
\ame tuqush</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="411f9559-9127-43a7-b17f-ab4d9b38e050"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">laga</AUni> -<AUni ws="qvm-x-acl">laga</AUni> -<AUni ws="qvm-x-akh">laqa</AUni> -<AUni ws="qvm-x-akl">laqa</AUni> -<AUni ws="qvm-x-ame">laqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llaqa</AUni> -<AUni ws="qvm-x-acl">*llaqa</AUni> -<AUni ws="qvm-x-akh">*llaqa</AUni> -<AUni ws="qvm-x-akl">*llaqa</AUni> -<AUni ws="qvm-x-ame">*llaqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.154" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a1d867dd-8bcf-40b6-8c95-d5c25e1a2a0e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llaqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="91c19f3b-3f6b-41f4-be9d-d1176db8a423" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a5e913d9-34a0-49e0-afab-6b5a1353929d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llaqa 
\entryTyp root 
\gENG stick 
\gSPN pegar 
\e *llaqa 
\c V1 
\ach laga 
\akh laqa 
\acl laga 
\akl laqa 
\ame laqa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="412177dd-ccfc-4f31-9410-8c3a3179bca1" ownerguid="3afc8b13-17c7-4518-a0db-00c74f0b9914"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 65.12 Chunyag jircacunacho guewacunapis verdiypami verdiycan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="41258c13-eeec-45eb-84e3-4ee45f5583a9" ownerguid="f9ffbf37-9b65-4de7-a303-c1ef823a75f7"> -<Form> -<AUni ws="qvm-x-ach">shinshi</AUni> -<AUni ws="qvm-x-acl">shinshi; shinshe</AUni> -<AUni ws="qvm-x-akh">shinshi</AUni> -<AUni ws="qvm-x-akl">shinshi; shinshe</AUni> -<AUni ws="qvm-x-ame">shinshi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="412657d3-d938-4697-910b-207fb098d594" ownerguid="84622623-77dc-4eac-a84d-fc9dc4a72b39"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">obey</AUni> -<AUni ws="es">hacer.caso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="38219471-50d3-4980-8735-05bf1a958013" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="41270f2a-7fab-42b4-9771-f300041a4427"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wayra; wayra:</AUni> -<AUni ws="qvm-x-acl">wayra; wayra:</AUni> -<AUni ws="qvm-x-akh">wayra; wayra:</AUni> -<AUni ws="qvm-x-akl">wayra; wayra:</AUni> -<AUni ws="qvm-x-ame">wayra; wayra:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wayra:</AUni> -<AUni ws="qvm-x-acl">*wayra:</AUni> -<AUni ws="qvm-x-akh">*wayra:</AUni> -<AUni ws="qvm-x-akl">*wayra:</AUni> -<AUni ws="qvm-x-ame">*wayra:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.617" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="894fd25d-75fc-4480-a2a9-d81513325407" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wayra:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b1a62e2e-70fd-41b6-b470-a6dd665de204" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="676a5019-0c99-4f7a-b47a-34928056bddd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wayra: 
\entryTyp root 
\gENG blow 
\gSPN soplar 
\e *wayra: 
\c V1 
\mp NeverMonophthongized 
\mp +underlong 
\ach wayra foreshortened 
\ach wayra: 
\akh wayra foreshortened 
\akh wayra: 
\acl wayra foreshortened 
\acl wayra: 
\akl wayra foreshortened 
\akl wayra: 
\ame wayra foreshortened 
\ame wayra: 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="412b5149-bf7e-4a77-9977-1d103a72335f" ownerguid="5c8f69ec-e607-45a0-943a-4c405d198ad5"> -<Form> -<AUni ws="qvm-x-ach">agtsa</AUni> -<AUni ws="qvm-x-acl">agtsa</AUni> -<AUni ws="qvm-x-akh">aqtsa</AUni> -<AUni ws="qvm-x-akl">aqtsa</AUni> -<AUni ws="qvm-x-ame">aqtsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="413258ae-7346-4321-b6e5-47bdb1edf23f" ownerguid="c5b8c936-1e01-4e86-9145-a2b721ec9e39"> -<ExampleWords> -<AUni ws="en">bury</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to putting something in a hole and covering it up?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4133ad46-9ef2-4a5c-8249-f312a5beeeb7" ownerguid="f8863b67-b911-4334-a1b6-6eb913bd14af"> -<ExampleWords> -<AUni ws="en">wider, widest, broader, broadest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to being wider than another thing?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="41352f09-57dc-427e-80db-51b0f2153ec5" ownerguid="987fc4a4-4519-4253-9e50-58f06d10962b"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="413eeef0-6e5b-425d-a13e-0c5b28c30f38" ownerguid="579659d9-7f03-465d-a59b-647c5a6b29bb"> -<Form> -<AUni ws="qvm-x-ach">mamïta</AUni> -<AUni ws="qvm-x-acl">mamïta</AUni> -<AUni ws="qvm-x-akh">mamïta</AUni> -<AUni ws="qvm-x-akl">mamïta</AUni> -<AUni ws="qvm-x-ame">mamïta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="413fca01-e365-4ba8-a1c7-e82200eb36a0" ownerguid="9aff8697-9a18-4058-bcf0-d892577efae3"> -<Form> -<AUni ws="qvm-x-ach">gawan</AUni> -<AUni ws="qvm-x-acl">gawan</AUni> -<AUni ws="qvm-x-akh">qawan</AUni> -<AUni ws="qvm-x-akl">qawan</AUni> -<AUni ws="qvm-x-ame">qawan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="414a3822-a42d-4bec-99d2-e0611ff0ed81" ownerguid="f4eedd50-153b-4e11-a513-27e6c45e5cca"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="c7784bfa-35aa-430b-9af8-a5faac4edc37" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="414a3835-7713-476a-8acf-baf24c7966ca" ownerguid="907bfaf8-f715-47a4-a663-8878d628cdc3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">roof</AUni> -<AUni ws="es">azotea</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="91f49d9f-74b0-4d1b-8ea1-164bb5aae211" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="414b6364-f210-454e-8e20-440fd5831f49" ownerguid="dc94635b-d56c-42e5-ab54-54b4a0f85166"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">money</AUni> -<AUni ws="es">dinero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c003b52c-ad4b-4349-a365-357b4655a667" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="414bd6af-fa6f-45eb-a18c-5a510fe1a300" ownerguid="79ebb5ce-f0fd-4fb5-9f22-1fa4965a555b"> -<ExampleWords> -<AUni ws="en">marine, oceanic, riverine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something belonging to the water?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="414c2b5b-7a33-4056-becf-ff42afb44ad5" ownerguid="69d039e6-f669-4d54-8b67-89b19ff0a19c"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">It rained <during> the night.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">during, in, in the course of, during the course of, through, throughout, over, by day, by night, during the middle of, in the interim, within</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something happened during some time period?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="414dd991-545b-49d2-9178-2d9fac238e2d" ownerguid="99294b5b-feef-4b5b-ad6e-9482505569bb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">nqui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">nqui; nqui; nque</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">nki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">nki; nki; nke</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="eefb29ad-f416-4367-b09c-bb45b5e9cf21" t="r" /> -</Morph> -<Msa> -<objsur guid="0d90ca1d-7b60-41a3-a022-dba460606a1c" t="r" /> -</Msa> -<Sense> -<objsur guid="08cdcf68-e555-46a8-9801-1003a592bece" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="414e3366-7b0f-4498-9b8d-d99ab5a882f7" ownerguid="e27adda9-0761-4b7f-abbf-24938ce1c01a"> -<ExampleWords> -<AUni ws="en">playwright, play writer, dramatist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a person who writes plays?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4150ca15-772c-4bdd-bb49-21cac48d7d85" ownerguid="bc96b3e3-6185-4925-b79e-8f0f9555bfb7"> -<ExampleWords> -<AUni ws="en">linguistics, linguistic, metalanguage, vocabulary, dictionary, grammar, syntax, morphology, phonology, phonetics, sounds, semantics, meaning, pragmatics, rhetoric, pronunciation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words are used to talk about language?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="41514485-be31-4102-9d53-571c193cbc03" ownerguid="3c1cc1ec-4c1a-448b-aa8f-46a733353db0"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">DAN 1.14 Tsaymi pruëbata ruragnog manacushganogla chunca junag paycunataga verdüralata garargan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="4153416a-784d-4f7c-a664-2640f7979a14" ownerguid="79ebb5ce-f0fd-4fb5-9f22-1fa4965a555b"> -<Abbreviation> -<AUni ws="en">1.3.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.963" /> -<DateModified val="2022-9-23 16:55:7.963" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to bodies of flowing water.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">River</AUni> -</Name> -<Questions> -<objsur guid="c2c43aa1-8da1-4bb4-a9c6-6d0a04817b50" t="o" /> -<objsur guid="7bd4519c-954a-4146-88d0-162d1ce86650" t="o" /> -<objsur guid="5a7f19bf-553b-4ec1-a495-f47f3b034cf9" t="o" /> -<objsur guid="c829f99b-e3d6-4bce-bd37-93dd63071d02" t="o" /> -<objsur guid="3625c35c-054a-4577-87f0-9981492157a9" t="o" /> -<objsur guid="44b6e54a-b21f-4d11-ada3-dba8b04f8f73" t="o" /> -<objsur guid="99bbe317-74e9-4dd2-8e66-d5c98ebe4106" t="o" /> -<objsur guid="7fbe76a0-ac41-4232-9fd6-2678e48a452a" t="o" /> -<objsur guid="b5d6d800-b2e6-45d6-9c84-c7efebb76072" t="o" /> -<objsur guid="2130356b-9e02-4547-8f91-cb37af3c7198" t="o" /> -<objsur guid="7ea75797-3109-4ca4-99c6-8741bf3e4d0e" t="o" /> -<objsur guid="9d6c5b27-1602-4270-b86e-d3d7f6dd7595" t="o" /> -<objsur guid="95364960-9b26-4544-aad1-4a7c289d2007" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="349937e3-a2fd-41f8-b7c4-bd6fa106add4" t="r" /> -<objsur guid="e8ec3885-c692-4b90-a5b3-4c86da642666" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="4153ac29-a1a8-45ba-a3f0-29ddb4a6ed8b" ownerguid="83b071ec-d634-4c76-aef0-6a4ea6b206be"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 8.17 Jachapa sapincuna shalaman sapitsashgannogmi paycunapis rïcuyashpan fuerti ricacun.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="4153d589-c7d8-4c4f-8066-55e0fbbeb0ec" ownerguid="708152e0-9019-460e-88a8-8227505806e8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bit</AUni> -<AUni ws="es">freno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bb36bac5-ad5e-45e1-928c-2fc33d2ef566" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="4153efe3-67e5-482c-ac36-1db356ab6c57" ownerguid="0a350627-948b-483b-800b-bc18ff6a28fe"> -<Form> -<AUni ws="qvm-x-ach">cruza</AUni> -<AUni ws="qvm-x-acl">cruza</AUni> -<AUni ws="qvm-x-akh">cruza</AUni> -<AUni ws="qvm-x-akl">cruza</AUni> -<AUni ws="qvm-x-ame">cruza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="41550802-effe-41fa-9ee5-f0748d752172" ownerguid="48ac206f-2706-4500-bb63-2e499b790259"> -<ExampleWords> -<AUni ws="en">ability, capacity, circumspection, cleverness, competence, cunning, discernment, discretion, discrimination, insight, intelligence, IQ, judgment, knowledge, philosophy, profundity, prudence, rationality, reasoning, sagacity, sanity, sense, sensibility, shrewdness, smarts, sophistication, understanding, wisdom, wit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the ability to think well?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="41551b37-e74e-4fbf-8411-290dbb18b302"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nuspa</AUni> -<AUni ws="qvm-x-acl">nuspa</AUni> -<AUni ws="qvm-x-akh">nuspa</AUni> -<AUni ws="qvm-x-akl">nuspa</AUni> -<AUni ws="qvm-x-ame">nuspa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñuspa</AUni> -<AUni ws="qvm-x-acl">*ñuspa</AUni> -<AUni ws="qvm-x-akh">*ñuspa</AUni> -<AUni ws="qvm-x-akl">*ñuspa</AUni> -<AUni ws="qvm-x-ame">*ñuspa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.608" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="daf38169-5ea0-4bb6-897c-40a223e0d130" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñuspa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4a138925-7942-4784-a9cd-83d9594c18de" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="778c8996-cbc1-4c4f-9118-9ece2f0bbf3d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñuspa 
\entryTyp root 
\gENG talk.in.sleep 
\gSPN habl.en.sueño 
\e *ñuspa 
\c V1 
\ach nuspa 
\akh nuspa 
\acl nuspa 
\akl nuspa 
\ame nuspa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmAgentEvaluation" guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" ownerguid="67e9b8bf-c312-458e-89c3-6e9326e48aa0" /> -<rt class="MoStemMsa" guid="415bda1e-07a0-4554-a5f8-91117eb063ec" ownerguid="699732d0-79d8-46c4-8d61-961295dda65c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="4160fad4-2645-43f9-af73-d5c3fe459fb2" ownerguid="13af106e-828a-4c96-bd36-e6880cf24eed"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mill</AUni> -<AUni ws="es">trapiche</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="322474ad-27f8-4338-8b3d-a40c115abede" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="41619c66-c4a1-4c19-906e-5d6ea9e0c184" ownerguid="24168b67-792d-4cc3-8242-e3a3382e90e2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">self</AUni> -<AUni ws="es">mismo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="82e15746-ea26-49bb-9fae-33f73f0ae09a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="416287ce-d3d7-4695-8a16-ddd1d3f0fa66" ownerguid="ad4d28bb-0408-4aa7-bbac-ed1c060f3023"> -<Form> -<AUni ws="qvm-x-ach">apäri</AUni> -<AUni ws="qvm-x-acl">apäri; apäre</AUni> -<AUni ws="qvm-x-akh">apäri</AUni> -<AUni ws="qvm-x-akl">apäri; apäre</AUni> -<AUni ws="qvm-x-ame">apäri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="416cbc74-517c-46ec-a4ae-d623a477e995" ownerguid="6e660c8b-5898-4482-b003-af758b1708b9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="455bef49-aa50-4458-9a4b-362ad85b3bf1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="416cce0f-97b2-4a11-96cd-df687ee01ff0" ownerguid="4a59d4da-141b-4e72-9281-9e73ea3e01ad"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="416d9a40-7e38-4bd0-9df0-e0dc528ea234" ownerguid="58be5db0-c648-4522-bad0-02cd9cc15f37"> -<ExampleWords> -<AUni ws="en">good foundation, firm foundation, even foundation, proper foundation, weak foundation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe how good a foundation is?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="417346fe-16dc-4fb7-8989-1af5a412a09a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jarca; jarca:</AUni> -<AUni ws="qvm-x-acl">jarca; jarca:</AUni> -<AUni ws="qvm-x-akh">jarka; jarka:</AUni> -<AUni ws="qvm-x-akl">jarka; jarka:</AUni> -<AUni ws="qvm-x-ame">harka; harka:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*harka:</AUni> -<AUni ws="qvm-x-acl">*harka:</AUni> -<AUni ws="qvm-x-akh">*harka:</AUni> -<AUni ws="qvm-x-akl">*harka:</AUni> -<AUni ws="qvm-x-ame">*harka:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.680" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9b4ecc37-a618-4d1a-bac4-4e70b55f27c4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*harka:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c99f92c0-b953-4668-abef-7d2b10f4a455" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b57400c7-c815-4bc2-98a2-335f4af2f125" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *harka: 
\entryTyp root 
\gENG intercept 
\gSPN atajar 
\e *harka: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach jarca foreshortened 
\ach jarca: 
\akh jarka foreshortened 
\akh jarka: 
\acl jarca foreshortened 
\acl jarca: 
\akl jarka foreshortened 
\akl jarka: 
\ame harka foreshortened 
\ame harka:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="4173d390-b298-46bd-8342-992b71970408" ownerguid="94426d56-c31d-475e-aa54-94fbf738c0c5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9af54cc4-9076-4ea8-9714-206cc1ace3d5" t="o" /> -<objsur guid="db0669e6-87ac-4bee-b77f-d791afddfca1" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">AMONG2</AUni> -<AUni ws="es">ENTRE2</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c4f6fad5-4115-4ba7-81b1-981ead920c7a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="4174059a-d052-4ea1-ab37-8232c85b248e" ownerguid="a206887b-8a9d-455a-9585-c53ca146e484"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">peak</AUni> -<AUni ws="es">punta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6c4cd593-153e-465c-8d0e-88450e81f41f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="41755edb-69ae-4ef8-bd96-10aec552c55e" ownerguid="ba1e8d2b-7d3e-4b65-a9be-ee1a4063c796"> -<ExampleWords> -<AUni ws="en">relief, relieved, be a weight off your mind, relax</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to not being worried about something that you were worried about before?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="41773ee3-d7b5-4ae9-a0ff-cb164979b5b7" ownerguid="e87b0d47-6e52-42a5-9c14-6b35e317ebd2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="4177b91c-dc7b-4bcc-b8a1-32889406924e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">arenilla</AUni> -<AUni ws="qvm-x-acl">arenilla</AUni> -<AUni ws="qvm-x-akh">arenilla</AUni> -<AUni ws="qvm-x-akl">arenilla</AUni> -<AUni ws="qvm-x-ame">arenilla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+arenilla</AUni> -<AUni ws="qvm-x-acl">+arenilla</AUni> -<AUni ws="qvm-x-akh">+arenilla</AUni> -<AUni ws="qvm-x-akl">+arenilla</AUni> -<AUni ws="qvm-x-ame">+arenilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.820" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="33fc324a-0fcd-42a6-963f-dd9a6b839b1d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+arenilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dd71f950-17e9-46eb-95a3-6045a2136f2b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="924abdd2-ac83-42dd-83d2-57026de88bdb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +arenilla 
\entryTyp root 
\gENG sand 
\gSPN arenilla 
\e +arenilla 
\c N0 
\ach arenilla 
\akh arenilla 
\acl arenilla 
\akl arenilla 
\ame arenilla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="4178b348-8672-4f91-9206-d774920c9a71" ownerguid="2cad92d8-cf01-41af-9add-ff34fe0660c6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">yellow.corn</AUni> -<AUni ws="es">maíz.amarillo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="37dca8b0-7906-4f99-99e5-dee678ad19e6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="4179e6f2-2c5b-4435-81be-08b02547060b" ownerguid="bc5b25bc-06f4-4569-9e0c-c427dbacdb2e"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="417cca65-5e1b-42f6-85b4-cb5d4da09e4f" ownerguid="aa87c23f-f7ba-4973-a774-94e755ef4964"> -<Form> -<AUni ws="qvm-x-ach">provëchu</AUni> -<AUni ws="qvm-x-acl">provëchu; provëchu; provëcho</AUni> -<AUni ws="qvm-x-akh">provëchu</AUni> -<AUni ws="qvm-x-akl">provëchu; provëchu; provëcho</AUni> -<AUni ws="qvm-x-ame">provëchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="417f4e80-e241-4dc4-8f05-03d19be20f71" ownerguid="8c59455f-304b-4424-b296-b362aaebbc4c"> -<Form> -<AUni ws="qvm-x-ach">canca</AUni> -<AUni ws="qvm-x-acl">canca</AUni> -<AUni ws="qvm-x-akh">kanka</AUni> -<AUni ws="qvm-x-akl">kanka</AUni> -<AUni ws="qvm-x-ame">kanka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="41833478-6044-4c71-a2fc-8d2d9ff83ebe" ownerguid="354c761d-03d5-4445-89e1-4f7c9673ab11"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="41837400-bdc5-4cbc-a1dc-d793f713f883" ownerguid="f02ae505-d6b7-4b30-9d97-8505d0d1a0c7"> -<Abbreviation> -<AUni ws="en">9.6.3.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.720" /> -<DateModified val="2022-9-23 16:55:8.720" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that a speaker uses when he hesitates or pauses while he is speaking in order to think about what he is saying.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Hesitation fillers</AUni> -</Name> -<Questions> -<objsur guid="f386fb86-e724-4fdb-be1a-a896c2aff489" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="41846def-c6ee-4e9a-94cd-4ae5c102eaa6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chaqui</AUni> -<AUni ws="qvm-x-acl">chaqui; chaqui; chaque</AUni> -<AUni ws="qvm-x-akh">chaki</AUni> -<AUni ws="qvm-x-akl">chaki; chaki; chake</AUni> -<AUni ws="qvm-x-ame">chaki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*traki</AUni> -<AUni ws="qvm-x-acl">*traki</AUni> -<AUni ws="qvm-x-akh">*traki</AUni> -<AUni ws="qvm-x-akl">*traki</AUni> -<AUni ws="qvm-x-ame">*traki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.48" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aa72e5af-be0b-4d6b-909c-6d352c63ad19" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*traki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0ba57047-88b5-4075-9790-45a46ea8038d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="845df58d-33dc-46cb-a969-8cd0ebfcb43d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *traki 
\entryTyp root 
\gENG foot 
\gSPN pie 
\e *traki 
\c N0 
\mp +FinalI 
\ach chaqui 
\akh chaki 
\acl chaqui / _# 
\acl chaqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chaque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chaki / _# 
\akl chaki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chake +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chaki</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="418659df-c426-4175-a326-a34a835d1712" ownerguid="7aaf3b02-0ef7-4b4e-a9d3-8617b1d841a6"> -<Form> -<AUni ws="qvm-x-ach">altar</AUni> -<AUni ws="qvm-x-acl">altar</AUni> -<AUni ws="qvm-x-akh">altar</AUni> -<AUni ws="qvm-x-akl">altar</AUni> -<AUni ws="qvm-x-ame">altar</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="41899487-6db7-43d8-b2d3-35a71755aa06" ownerguid="ff0a16f2-c44d-4ed4-9520-c214acfb68e5"> -<ExampleWords> -<AUni ws="en">rule, reign, be in power</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to ruling?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="41945ba0-8631-4e37-928b-0eeec193147f" ownerguid="9e30ddc7-57fb-424d-bae9-86c213864e92"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JER 52.21 Rakunnami karqan pitsqa metro pulannoq.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="4194f836-1472-4329-8411-1220e9a7d06e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">si:gui</AUni> -<AUni ws="qvm-x-acl">si:gui; si:gue</AUni> -<AUni ws="qvm-x-akh">si:gui</AUni> -<AUni ws="qvm-x-akl">si:gui; si:gue</AUni> -<AUni ws="qvm-x-ame">si:gui</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+seguir</AUni> -<AUni ws="qvm-x-acl">+seguir</AUni> -<AUni ws="qvm-x-akh">+seguir</AUni> -<AUni ws="qvm-x-akl">+seguir</AUni> -<AUni ws="qvm-x-ame">+seguir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.518" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="11dc43fd-5bb2-4c5c-95b9-12d0b8e9985f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+seguir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c4eab316-c681-4844-b7e7-91756b7ddb4d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="32738524-aa80-44c5-9a01-c406626e4ce6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +seguir 
\entryTyp root 
\gENG follow 
\gSPN seguir 
\e +seguir 
\c V2 
\mp +FinalI 
\ach si:gui 
\akh si:gui 
\acl si:gui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl si:gue +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl si:gui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl si:gue +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame si:gui</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="4195da6a-ee95-43c5-93eb-f887f0fab558" ownerguid="5f22e72b-5029-485a-a5e8-7fa7276c9920"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">̈</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">̈</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">̈</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">̈</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">̈</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1b20df13-0cae-48c6-8db3-2cd0a2126e8d" t="r" /> -</Morph> -<Msa> -<objsur guid="13b178aa-cf95-4902-a68b-959ad06fd6f9" t="r" /> -</Msa> -</rt> -<rt class="LexExampleSentence" guid="4197c03f-bfef-4c2b-8786-54a109321428" ownerguid="40e28065-a966-4bef-a988-283110aa115b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 25.27 Aläpa mishquita micuptiqui däñashushgayquinogmi runacuna aläpa alabashushgayquipis\f + 25.27 Waquin runacunaga \it alagashushgayquipis\it* nipäcun.\f* mana ali caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="41988a9a-f8b3-4817-aeeb-9409cce668e3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wiru</AUni> -<AUni ws="qvm-x-acl">wiru; wiru; wiro</AUni> -<AUni ws="qvm-x-akh">wiru</AUni> -<AUni ws="qvm-x-akl">wiru; wiru; wiro</AUni> -<AUni ws="qvm-x-ame">wiru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wiru.n</AUni> -<AUni ws="qvm-x-acl">*wiru.n</AUni> -<AUni ws="qvm-x-akh">*wiru.n</AUni> -<AUni ws="qvm-x-akl">*wiru.n</AUni> -<AUni ws="qvm-x-ame">*wiru.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.678" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d0c74192-031a-42de-bb14-4c4da66b08c3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wiru.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="61663d67-9c75-46ba-a455-d505be2dc0bc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8a2fbf1a-1ee8-4794-8310-7e376a763662" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wiru.n 
\entryTyp root 
\gENG cane 
\gSPN caña 
\e *wiru.n 
\c N0 
\ach wiru 
\akh wiru 
\acl wiru / _# 
\acl wiru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wiro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wiru / _# 
\akl wiru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl wiro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wiru</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="419b05c9-c8b7-4068-9b32-ad9b54aff09d" ownerguid="50d9d887-1375-4164-90af-eb29f5e73292"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="419bb91d-df23-47ce-8f0c-4a3c65278644" ownerguid="27e2cc8b-8f5f-4090-8b41-da5f2d9d4f6f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="1d09d263-026e-4ce3-8808-812fd37077f2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="419bc00a-43a7-46f5-a596-b8471401be6f" ownerguid="c0b81647-2e6a-4716-9969-5010e8e43408"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="41a089de-32a7-4b25-b4d7-2e50c22f38a7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">goñu</AUni> -<AUni ws="qvm-x-acl">goñu; goñu; goño</AUni> -<AUni ws="qvm-x-akh">qoñu</AUni> -<AUni ws="qvm-x-akl">qoñu; qoñu; qoño</AUni> -<AUni ws="qvm-x-ame">quñu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*quñu.n</AUni> -<AUni ws="qvm-x-acl">*quñu.n</AUni> -<AUni ws="qvm-x-akh">*quñu.n</AUni> -<AUni ws="qvm-x-akl">*quñu.n</AUni> -<AUni ws="qvm-x-ame">*quñu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.861" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4cc11da7-e2b5-48e6-b3f9-690c235c29b4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*quñu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="99b970e4-5deb-48ed-9dd5-ce6e1726d3f8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ba463dc0-5214-4d18-93f2-b598d4acc89a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *quñu.n 
\entryTyp root 
\gENG warm 
\gSPN cálido 
\e *quñu.n 
\c N0 
\ach goñu 
\akh qoñu 
\acl goñu / _# 
\acl goñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl goño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qoñu / _# 
\akl qoñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qoño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame quñu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="41a0adc2-9949-4de7-afb7-335a653a6ce2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ritangu</AUni> -<AUni ws="qvm-x-acl">ritango; ritangu; ritango</AUni> -<AUni ws="qvm-x-akh">ritanqu</AUni> -<AUni ws="qvm-x-akl">ritanqo; ritanqu; ritanqo</AUni> -<AUni ws="qvm-x-ame">ritanqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ritanqu</AUni> -<AUni ws="qvm-x-acl">*ritanqu</AUni> -<AUni ws="qvm-x-akh">*ritanqu</AUni> -<AUni ws="qvm-x-akl">*ritanqu</AUni> -<AUni ws="qvm-x-ame">*ritanqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.368" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8561c720-372c-472f-a871-15fd2585e4e1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ritanqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3dec69b4-a1c1-45ad-990f-88956b027333" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c8f316c1-3506-4943-833d-846730bdc5b6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ritanqu 
\entryTyp root 
\gENG meat 
\gSPN chicharron 
\e *ritanqu 
\c N0 
\ach ritangu 
\akh ritanqu 
\acl ritango / _# 
\acl ritangu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ritango +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ritanqo / _# 
\akl ritanqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ritanqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ritanqu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="41a310e7-a4bf-471a-984d-4b266b99fb60"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cha:pa</AUni> -<AUni ws="qvm-x-acl">cha:pa</AUni> -<AUni ws="qvm-x-akh">cha:pa</AUni> -<AUni ws="qvm-x-akl">cha:pa</AUni> -<AUni ws="qvm-x-ame">cha:pa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+chapa</AUni> -<AUni ws="qvm-x-acl">+chapa</AUni> -<AUni ws="qvm-x-akh">+chapa</AUni> -<AUni ws="qvm-x-akl">+chapa</AUni> -<AUni ws="qvm-x-ame">+chapa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.274" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="65537c19-dda0-4d04-835a-9e127bdd0f3b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+chapa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6d559cb4-edd4-4e99-9a6d-7116f71f55e6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e986127c-1a4e-4356-a1d2-2aeba5214a03" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +chapa 
\entryTyp root 
\gENG brand 
\gSPN fierro.marcar 
\e +chapa 
\c N0 
\ach cha:pa 
\akh cha:pa 
\acl cha:pa 
\akl cha:pa 
\ame cha:pa</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="41a40359-6a38-44bd-bec0-10f32cac43fc" ownerguid="0fc9c27e-cf5d-49ba-b073-990cfc5ffe6b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="41a81a4b-1a69-405e-8d6a-e3302c6f11dd" ownerguid="0bc2029e-1a6f-4f6d-b034-82524355271e"> -<Form> -<AUni ws="qvm-x-ach">maläya; maläyä</AUni> -<AUni ws="qvm-x-acl">maläya; maläyä</AUni> -<AUni ws="qvm-x-akh">maläya; maläyä</AUni> -<AUni ws="qvm-x-akl">maläya; maläyä</AUni> -<AUni ws="qvm-x-ame">maläya; maläyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="41a8ce11-1743-4a6f-98b2-35174e008309"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sagta</AUni> -<AUni ws="qvm-x-acl">sagta</AUni> -<AUni ws="qvm-x-akh">saqta</AUni> -<AUni ws="qvm-x-akl">saqta</AUni> -<AUni ws="qvm-x-ame">saqta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*saqta</AUni> -<AUni ws="qvm-x-acl">*saqta</AUni> -<AUni ws="qvm-x-akh">*saqta</AUni> -<AUni ws="qvm-x-akl">*saqta</AUni> -<AUni ws="qvm-x-ame">*saqta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.459" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0df6b53f-c51a-4aea-97a7-9680f887a0b8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*saqta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3b03bd47-c5cd-46eb-ae97-e6f3bce9e6e0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="96f99260-4fbe-4a43-9735-4c7e2bbd149d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *saqta 
\entryTyp root 
\gENG throw.down 
\gSPN tumbar 
\e *saqta 
\c V2 
\ach sagta 
\akh saqta 
\acl sagta 
\akl saqta 
\ame saqta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="41a9b68d-f542-4a58-b67e-16d652442cae" ownerguid="af2f9cce-2c39-4b1b-a137-5f37c3374e2a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="41ab383d-47c1-4ca4-a243-7949e146cb7b" ownerguid="9baac3cb-62f4-47c5-b2e2-26cd542aa9da"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="41ad2bda-3e91-4cd1-83a5-9a5d873cc29e" ownerguid="aa8203e4-ecff-4f6d-b9b6-eda8c10f968b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">white</AUni> -<AUni ws="es">blanco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9dc23c68-72c8-4499-b7b9-56e31b7ad24b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="41ae92c8-4def-4b55-adf1-64cab734f7ca" ownerguid="be89e0ba-4c6a-4986-ac0d-859a901b89a1"> -<ExampleWords> -<AUni ws="en">daydream (v), dream about, dream of, fantasize, live in a fantasy world</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to imagining something that you would like to do?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="41aff74c-3bda-4f83-99de-692d9e5cda54" ownerguid="fcf16495-5226-4192-afdb-e748192efc3a"> -<ExampleWords> -<AUni ws="en">yearly, every year, annually, annual</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used to indicate that something happens every year?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="41b04248-c472-404e-90cc-f877ad3eead9" ownerguid="34082327-9615-4703-9817-d2ef3b93692d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="41b6a87e-e270-402d-99ba-80cd8c2558da" ownerguid="d7a7c02b-d75c-4b00-a9a6-942ee64e8c57"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">arrive</AUni> -<AUni ws="es">llegar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a25ee531-622d-4a1e-bef2-feee1c1de264" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="41b80f5d-0298-4d3c-b1a3-6d5e6c3985b1" ownerguid="af4ac058-d4b3-4c7a-ade8-6af762d0486d"> -<Abbreviation> -<AUni ws="en">3.3.1.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to lusting for something--to want something bad or forbidden.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25B Desire Strongly</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Lust</AUni> -</Name> -<Questions> -<objsur guid="3b67c22a-4f00-4187-9f76-a69b3561b227" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="41b8c45d-d329-4d73-bfc4-b1de4ed1272a" ownerguid="e2565f5b-ed3f-487f-97cb-b6786f567cfc"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="41b91fdb-5a11-4ba1-a570-3d9fbdfd1a56"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsapa; tsapa:</AUni> -<AUni ws="qvm-x-acl">tsapa; tsapa:</AUni> -<AUni ws="qvm-x-akh">tsapa; tsapa:</AUni> -<AUni ws="qvm-x-akl">tsapa; tsapa:</AUni> -<AUni ws="qvm-x-ame">tsapa; tsapa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chapa:</AUni> -<AUni ws="qvm-x-acl">*chapa:</AUni> -<AUni ws="qvm-x-akh">*chapa:</AUni> -<AUni ws="qvm-x-akl">*chapa:</AUni> -<AUni ws="qvm-x-ame">*chapa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.274" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="601a9c19-a4b5-4196-b58b-6187e5695f02" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chapa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="07611917-3fef-4141-aa18-98c5fe83db88" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d50e7740-5969-488a-b885-ebec37c755ca" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chapa: 
\entryTyp root 
\gENG 
\gSPN atajar 
\e *chapa: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach tsapa foreshortened 
\ach tsapa: 
\akh tsapa foreshortened 
\akh tsapa: 
\acl tsapa foreshortened 
\acl tsapa: 
\akl tsapa foreshortened 
\akl tsapa: 
\ame tsapa foreshortened 
\ame tsapa:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="41b94f3b-bdef-438d-ab3f-21e69f2fa86b" ownerguid="7d8f3442-8298-4a59-b5b0-4a6616bc70d4"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="41ba563b-3303-4f74-995d-264944d16b70" ownerguid="a33ec443-5299-4582-8442-18b37ea28ecd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">older</AUni> -<AUni ws="es">mayor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="686e5cc6-08f3-410c-a525-e36454eef1ec" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="41badfbf-f512-4b98-a145-24e39d29624b" ownerguid="c0b81647-2e6a-4716-9969-5010e8e43408"> -<Form> -<AUni ws="qvm-x-ach">ripi</AUni> -<AUni ws="qvm-x-acl">ripi; ripe</AUni> -<AUni ws="qvm-x-akh">ripi</AUni> -<AUni ws="qvm-x-akl">ripi; ripe</AUni> -<AUni ws="qvm-x-ame">ripi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="41bbd16f-18f1-456d-ad5e-edb13aa0b421" ownerguid="cba1f6cc-58ac-4d09-aa6a-1661f5945787"> -<ExampleWords> -<AUni ws="en">obvious, transparent, clear, easy to understand, evident</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is easy to understand?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="41bcb326-2501-4335-84bd-5b7c3383ee69" ownerguid="60de6613-9d48-4e43-a554-3dea73950517"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="41bd72ff-b10b-4ef5-b6fc-acb484a25383" ownerguid="044f740b-94f3-4096-aa3a-c07f5e708346"> -<ExampleWords> -<AUni ws="en">collection, set</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to things that someone has collected?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="41bf21ef-863d-48f1-9051-99fd35b16f2a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">padri:nu</AUni> -<AUni ws="qvm-x-acl">padri:nu; padri:nu; padri:no</AUni> -<AUni ws="qvm-x-akh">padri:nu</AUni> -<AUni ws="qvm-x-akl">padri:nu; padri:nu; padri:no</AUni> -<AUni ws="qvm-x-ame">padri:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+padrino</AUni> -<AUni ws="qvm-x-acl">+padrino</AUni> -<AUni ws="qvm-x-akh">+padrino</AUni> -<AUni ws="qvm-x-akl">+padrino</AUni> -<AUni ws="qvm-x-ame">+padrino</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.648" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3a9b22d8-9c9e-4f95-9e82-8b9d5868d0d7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+padrino</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="62891c29-7bde-42e5-87c7-7e58f9d67da6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2f9fae77-2d1a-454b-908a-853b1318f847" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +padrino 
\entryTyp root 
\gENG godfather 
\gSPN padrino 
\e +padrino 
\c N0 
\ach padri:nu 
\akh padri:nu 
\acl padri:nu / _# 
\acl padri:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl padri:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl padri:nu / _# 
\akl padri:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl padri:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame padri:nu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoInflAffixTemplate" guid="41bf7d01-644e-4430-aab3-7662a94270ac" ownerguid="86ff66f6-0774-407a-a0dc-3eeaf873daf7"> -<Disabled val="True" /> -<Final val="True" /> -<SuffixSlots> -<objsur guid="cc7bce64-81a2-4c23-9cb0-ba8f7d274837" t="r" /> -<objsur guid="ca45d090-0c3b-4e36-9a40-58963588cdaf" t="r" /> -<objsur guid="b31b892c-cb26-4efd-b65c-29374c5e75b6" t="r" /> -<objsur guid="2187f650-9ef3-4104-9740-f007f3b51ffe" t="r" /> -<objsur guid="257de7fb-dab6-4b87-848b-3fbb8f5c3e04" t="r" /> -<objsur guid="6b5fd694-545b-4dac-8fa7-cbce40f8838e" t="r" /> -<objsur guid="2167bf6d-84f4-4209-b618-7a1edf05092a" t="r" /> -</SuffixSlots> -</rt> -<rt class="LexEntry" guid="41c075a9-cc3f-4e64-8b24-b0e9d16472ca"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alga</AUni> -<AUni ws="qvm-x-acl">alga</AUni> -<AUni ws="qvm-x-akh">alqa</AUni> -<AUni ws="qvm-x-akl">alqa</AUni> -<AUni ws="qvm-x-ame">alqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*allqa</AUni> -<AUni ws="qvm-x-acl">*allqa</AUni> -<AUni ws="qvm-x-akh">*allqa</AUni> -<AUni ws="qvm-x-akl">*allqa</AUni> -<AUni ws="qvm-x-ame">*allqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.739" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="11df614c-1a0d-4d41-b46c-522b1662df88" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*allqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5d5933ba-851d-4205-9e8b-1b97526280dd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1ad2eafd-9bb6-4ea4-bc22-6a222a4b3fb7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *allqa 
\entryTyp root 
\gENG white.of.eyes 
\gSPN blanco.del.ojo 
\e *allqa 
\c N0 
\ach alga 
\akh alqa 
\acl alga 
\akl alqa 
\ame alqa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="41c14613-f6fd-4406-8619-6e2c9bf55937" ownerguid="8f779877-7d86-4683-8a8b-298c7fc62815"> -<ExampleWords> -<AUni ws="en">slow of speech, not fluent, poor speaker, stutter, stammer, have a speech impediment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to not being able to speak correctly?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="41c3259d-dacb-451e-b037-58ce7968a83d" ownerguid="2005ccc6-764d-4fbf-aee6-6f5162265f74"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="41c3635f-2f5c-4976-ad15-3554b57bfa87" ownerguid="490e2a18-c880-45c4-8c39-56cd08458164"> -<Form> -<AUni ws="qvm-x-ach">goplu</AUni> -<AUni ws="qvm-x-acl">goplu; goplo</AUni> -<AUni ws="qvm-x-akh">qoplu</AUni> -<AUni ws="qvm-x-akl">qoplu; qoplo</AUni> -<AUni ws="qvm-x-ame">quplu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="41c393f7-c1d2-4fd8-8e81-17a43a858d1f" ownerguid="15fb022e-1b45-41e9-bd8a-09ddc9dc6acd"> -<ExampleWords> -<AUni ws="en">stubborn, steadfast, resolute, dogged, wholehearted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a person's behavior that is determined?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="41c3a481-5e95-4675-aa9a-1ca5d9e3599c" ownerguid="59a533ee-6a5c-439e-8be5-28a4f5e55172"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="53632b8c-932d-436b-b378-9b58d834bcde" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="41c40d0b-2130-4302-8e10-ab9a8da5484a" ownerguid="444407f2-0c75-4bb9-a84c-cbd52d0fa9c9"> -<ExampleWords> -<AUni ws="en">stage of life, time of life, phase</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the time periods of a person's life?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="41c65d34-fc50-4121-b41c-dd3903c42bf7" ownerguid="091a58e4-d2ad-4f7f-bd0f-a1905a9c96ee"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="41c7ff9b-3005-48ec-9f6f-d4f94f8e0e58" ownerguid="77882bc5-c87d-44ad-985b-0a15ef40f13f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" t="r" /> -</Morph> -<Msa> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="41c89b73-39aa-4008-9329-a04489590b23" ownerguid="b093ef57-bd1b-42e6-a7d3-88f4dd08d62a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">anyone</AUni> -<AUni ws="es">alguien</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5e23d2c2-7929-4bf9-b3ee-c72694efb96f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="41c94c0d-1305-44ef-8799-972c22fa3a1e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jauma</AUni> -<AUni ws="qvm-x-acl">jauma</AUni> -<AUni ws="qvm-x-akh">jawma</AUni> -<AUni ws="qvm-x-akl">jawma</AUni> -<AUni ws="qvm-x-ame">hawma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hawma</AUni> -<AUni ws="qvm-x-acl">*hawma</AUni> -<AUni ws="qvm-x-akh">*hawma</AUni> -<AUni ws="qvm-x-akl">*hawma</AUni> -<AUni ws="qvm-x-ame">*hawma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.698" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3635a512-39a0-44cc-8fc0-d632d79de039" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hawma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="00b74f20-f24e-4f15-be24-9d8dfd4c49f3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="79938a1b-6a1f-4ec3-a7e8-a12c7a85ac63" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hawma 
\entryTyp root 
\gENG 
\gSPN 
\e *hawma 
\c V1 
\ach jauma 
\akh jawma 
\acl jauma 
\akl jawma 
\ame hawma</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="41cac849-613d-4be4-a3bc-389412b7f653" ownerguid="f5156cde-9735-4249-920d-597fb0a7a8e3"> -<Abbreviation> -<AUni ws="en">7.9.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.559" /> -<DateModified val="2022-9-23 16:55:8.559" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to repairing something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Repair</AUni> -</Name> -<Questions> -<objsur guid="3a40f9b4-4777-4076-aa0d-578dd5759d7f" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="98f9ceff-e8a2-4e24-abc4-561b80bb5889" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="41cae28f-73b2-4828-9226-b04fb727955e" ownerguid="b1ac5179-f888-4fb1-a8ba-b108e78acca8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mend</AUni> -<AUni ws="es">remendar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2cb7ba38-be8e-4f01-8801-0bbded208392" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="41ccdef7-3a96-4010-bc4b-9e7092aa7ce3" ownerguid="9dc7a6ed-842d-4e73-a731-451ab2ba1b4a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wan</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wan</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wan</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wan</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wan</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b441a287-959f-4845-be39-c8c9c2b00da1" t="r" /> -</Morph> -<Msa> -<objsur guid="6a3c64a4-aa9f-4fcb-93ea-93a8b6c7edcc" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="41cdc887-575e-4ad9-901d-cb2cb6a732a5" ownerguid="6187e620-89bd-4b9d-9896-0c0c788e7740"> -<ExampleWords> -<AUni ws="en">forward, fullback, goalie, guard, halfback, striker, sweeper, wing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What is a person called who participates in the game?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="41cef4fd-9a23-4439-b3e7-74a300b7a8cc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">puru</AUni> -<AUni ws="qvm-x-acl">puru; puru; puro</AUni> -<AUni ws="qvm-x-akh">puru</AUni> -<AUni ws="qvm-x-akl">puru; puru; puro</AUni> -<AUni ws="qvm-x-ame">puru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puru</AUni> -<AUni ws="qvm-x-acl">*puru</AUni> -<AUni ws="qvm-x-akh">*puru</AUni> -<AUni ws="qvm-x-akl">*puru</AUni> -<AUni ws="qvm-x-ame">*puru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.25" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="213a9500-2982-48b6-a465-1db001c4a828" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0a0f975d-5952-44b1-9fa7-29a62adf19ed" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="228eb66f-4b13-49df-b062-0209da2f772b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puru 
\entryTyp root 
\gENG coca.gourd 
\gSPN 
\e *puru 
\c N0 
\ach puru 
\akh puru 
\acl puru / _# 
\acl puru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl puro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl puru / _# 
\akl puru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl puro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame puru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="41d24e83-5304-4034-a3bc-ee16beaa76dc" ownerguid="286ee16c-a218-43d5-bbac-ab15f80c3fcf"> -<ExampleWords> -<AUni ws="en">not be enough, be running short, not last, won't last</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words indicate that there is not enough of something for what you need?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="41d53c0b-5ec9-4a23-b700-39b482206ba5" ownerguid="89085bab-7f2a-44cb-99c1-0d2c20de4e95"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="41d604dc-7c66-458c-a6fe-deff9c5db5d3" ownerguid="e03c889b-8368-4d9f-aac6-5cd3a43b01ca"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">garga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">garga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qarqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qarqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qarqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e9154280-f82e-445f-8700-b610d772df34" t="r" /> -</Morph> -<Msa> -<objsur guid="c7dbec8d-838d-4a92-a15b-4f3d5b563513" t="r" /> -</Msa> -<Sense> -<objsur guid="85c9f7db-4fd1-4d3d-80fd-9e0c1d3b8a91" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="41d64812-70c3-4bfb-9af1-36e46ca287eb" ownerguid="00c2946f-882c-4da8-8759-d012bc0b8c2d"> -<Form> -<AUni ws="qvm-x-ach">tëma</AUni> -<AUni ws="qvm-x-acl">tëma</AUni> -<AUni ws="qvm-x-akh">tëma</AUni> -<AUni ws="qvm-x-akl">tëma</AUni> -<AUni ws="qvm-x-ame">tëma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="41dbcc42-8064-4ade-99dd-2b5ba75ef401" ownerguid="0472e02f-0667-4768-8304-4b45df3ab6cd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">suspect</AUni> -<AUni ws="es">maliciar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="373694eb-ec5e-405d-a4b4-1966b9405112" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="41dd4f9a-0ba7-4ba6-9df6-37438756d15d" ownerguid="02eef9b2-805e-434f-acb3-6824423884b2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">little.bell</AUni> -<AUni ws="es">cascabel</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0938a4a4-b46f-43af-b68c-b139adf342b6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="41dffbd8-76f3-4116-a7b4-4a830f54acdc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lausa</AUni> -<AUni ws="qvm-x-acl">lausa</AUni> -<AUni ws="qvm-x-akh">lawsa</AUni> -<AUni ws="qvm-x-akl">lawsa</AUni> -<AUni ws="qvm-x-ame">lawsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llawsa.n</AUni> -<AUni ws="qvm-x-acl">*llawsa.n</AUni> -<AUni ws="qvm-x-akh">*llawsa.n</AUni> -<AUni ws="qvm-x-akl">*llawsa.n</AUni> -<AUni ws="qvm-x-ame">*llawsa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.184" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ebd8974d-03a4-4fa4-af19-f15e6a6b6035" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llawsa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e176e209-c166-4123-ae86-eae4632ec9c6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c6e3ff24-4cef-47fe-bcec-c87bbc70df38" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llawsa.n 
\entryTyp root 
\gENG 
\gSPN baba 
\e *llawsa.n 
\c N0 
\ach lausa 
\akh lawsa 
\acl lausa 
\akl lawsa 
\ame lawsa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="41e1e4ae-4444-4926-95ed-224375ca69fa" ownerguid="ee853949-a6a2-4735-97ca-ebeb2aa7ddaf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">caerse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f40744a7-7d96-4267-891e-93958e3dc0b3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="41e55d2f-8bd9-46c1-be7e-da5445d49184" ownerguid="de8cc82b-a6bb-411d-8ec6-da92f915f422" /> -<rt class="LexSense" guid="41e5a3c8-0123-45e4-be60-c26664b6c54d" ownerguid="96ca12fb-8af6-4d92-abeb-4962787c31d9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">father</AUni> -<AUni ws="es">padre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="693ae820-c8e3-4c95-bd94-d2d0acb3975e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="41e7f16d-6f87-4d82-b597-1073b2e1a6c2"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Wawäkunatapis</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="41e903cf-de45-49e2-8faa-0ced648a61ea"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pishta</AUni> -<AUni ws="qvm-x-acl">pishta</AUni> -<AUni ws="qvm-x-akh">pishta</AUni> -<AUni ws="qvm-x-akl">pishta</AUni> -<AUni ws="qvm-x-ame">pishta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pishta.n</AUni> -<AUni ws="qvm-x-acl">*pishta.n</AUni> -<AUni ws="qvm-x-akh">*pishta.n</AUni> -<AUni ws="qvm-x-akl">*pishta.n</AUni> -<AUni ws="qvm-x-ame">*pishta.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.861" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="31cf848a-6e81-47ec-877d-bd6beb74931c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pishta.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ed9e9280-bebd-4e76-b664-01fbd1aeb23d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8d43ed14-e0c7-42da-bb78-f28b6c5c0020" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pishta.n 
\entryTyp root 
\gENG slaughter 
\gSPN degollar 
\e *pishta.n 
\c N0 
\ach pishta 
\akh pishta 
\acl pishta 
\akl pishta 
\ame pishta 
\mcc *pishta.n / _ PUR</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="41e93460-14a1-4f9d-b5f4-438a08fab7f1" ownerguid="d4b2c1de-1c10-4bcc-95f7-2838748fc7f0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="41e94600-e09b-407d-9601-0ead84e367c0" ownerguid="77f27500-aad8-409c-a28e-92df73794dce"> -<ExampleWords> -<AUni ws="en">enemy (troops/action/tanks), hostile (forces/territory)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something belonging to the enemy?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="41e9643d-f004-4e43-8680-e5ae23b3ad0d" ownerguid="93de2257-8303-490d-b2fe-6d1d838b08c6"> -<ExampleWords> -<AUni ws="en">to bite (your nails), scratch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What do people do with their nails?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="41ea267d-b914-4019-8762-9005f1fc7ca7" ownerguid="2cc624fa-76cb-46ab-87c8-c13c6adb1c72"> -<ExampleWords> -<AUni ws="en">go (away), leave here/this place, get out of here</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving away from the speaker?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="41eb5489-46bc-4ceb-84dc-f14fb1d53284" ownerguid="b3779c87-0f69-469c-8014-943e0338f9bc"> -<Form> -<AUni ws="qvm-x-ach">hïja</AUni> -<AUni ws="qvm-x-acl">hïja</AUni> -<AUni ws="qvm-x-akh">hïja</AUni> -<AUni ws="qvm-x-akl">hïja</AUni> -<AUni ws="qvm-x-ame">hïja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="41ecb52f-fde7-45a9-a917-a34fb86d0641" ownerguid="6ccb8155-1954-4380-8bec-ca5e56533210"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="41ed06b0-be71-4be0-b9ed-473b91f2e45b" ownerguid="482fae12-4041-4cf4-a652-9b7e0ed382a7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pedagogical</AUni> -<AUni ws="es">pedagógico</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cd4d49cb-fc99-40f8-a8cf-73e35d89034f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="41ef9c15-761e-4fc8-8761-ed723b8730cc" ownerguid="5471fd91-b13a-44e5-a336-5603b5f1cc39"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wan</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wan</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wan</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wan</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wan</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b441a287-959f-4845-be39-c8c9c2b00da1" t="r" /> -</Morph> -<Msa> -<objsur guid="19e28bb1-2f05-4e65-a0d6-47a005cd199a" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="41f6181e-80ac-4d31-b864-cedbff8b8d40" ownerguid="185d68ff-bf3a-4eec-9e9d-9dd4b781a8ed"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">all.kinds</AUni> -<AUni ws="es">toda.clase</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c89f2bcc-fc36-4b18-8e8a-0bccefa6f373" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="41f66ae9-8c1f-4787-a423-7549db98114c" ownerguid="c9b8ecc1-a39d-4f42-b9c4-6a968934715b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">measure</AUni> -<AUni ws="es">medir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f3dcb349-c1b6-400e-a79f-cd9e2ae00e9b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="41f66d8b-5492-4015-a9fe-33f2c070472e" ownerguid="3c684436-fa67-470d-97b4-d9e7c8ab0a3c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuya</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuya</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuya</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuya</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuya</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ed8e0c9a-5a44-4448-bc6b-1b766f141f5c" t="r" /> -</Morph> -<Msa> -<objsur guid="6ee88865-51d6-40db-b9fa-4ba30a1cf4e7" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="41f6a2be-b0d6-4d69-8311-bc45fece219c" ownerguid="1af9c8bf-e343-406c-a610-9604cb7056bb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="41f780ae-5543-4ce9-88d7-ad58d8d85d26" ownerguid="a46546ee-4adb-46bc-b3fd-20a014278659"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="41f841da-ad90-43ad-8090-f05946d0b665" ownerguid="d52a0cc9-7aa4-4a2a-a8a0-406da6d392d4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="41f85e19-edf1-479c-a15b-19df91d88a6d" ownerguid="50db27b5-89eb-4ffb-af82-566f51c8ec0b"> -<ExampleWords> -<AUni ws="en">a good/bad/hard life, a life of crime/poverty, a miserable/lonely existence, lead a good/bad/hard life, live well/happily</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to having a particular kind of life?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="41ff1161-0307-40e9-91f0-fc47c11a3d28" ownerguid="1ced72da-3188-4613-bccf-279ac20bf450"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">such</AUni> -<AUni ws="es">tal</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fd642729-c121-4941-b3db-ee6fc9cc148f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="4200b8ab-7c89-499c-b218-48b9de70f2e7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lawa</AUni> -<AUni ws="qvm-x-acl">lawa</AUni> -<AUni ws="qvm-x-akh">lawa</AUni> -<AUni ws="qvm-x-akl">lawa</AUni> -<AUni ws="qvm-x-ame">lawa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llawa</AUni> -<AUni ws="qvm-x-acl">*llawa</AUni> -<AUni ws="qvm-x-akh">*llawa</AUni> -<AUni ws="qvm-x-akl">*llawa</AUni> -<AUni ws="qvm-x-ame">*llawa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.174" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c71fb1fe-f3b0-47bc-9231-903194c0eabb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llawa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d4179f3d-cc19-4d3f-abd2-d2c7ef2bc609" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="da7474e4-1a36-4be6-b573-9d0c6272bceb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llawa 
\entryTyp root 
\gENG cut 
\gSPN cortar 
\e *llawa 
\c V2 
\ach lawa 
\akh lawa 
\acl lawa 
\akl lawa 
\ame lawa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="42022333-b9bd-4f85-9327-b02b36492590" ownerguid="1b6b0c12-9ecd-45cb-bb0e-0dadb435eddf"> -<ExampleWords> -<AUni ws="en">large, big, high, sizable, considerable, substantial, significant, generous, handsome, hefty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words describe a large number or amount?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="42023b55-102a-4470-b229-d21ac3c08ec5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pla:za</AUni> -<AUni ws="qvm-x-acl">pla:za</AUni> -<AUni ws="qvm-x-akh">pla:za</AUni> -<AUni ws="qvm-x-akl">pla:za</AUni> -<AUni ws="qvm-x-ame">pla:za</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+plaza</AUni> -<AUni ws="qvm-x-acl">+plaza</AUni> -<AUni ws="qvm-x-akh">+plaza</AUni> -<AUni ws="qvm-x-akl">+plaza</AUni> -<AUni ws="qvm-x-ame">+plaza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.881" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c980eee5-03a4-497e-b191-8fc70f45192b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+plaza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dfc262ce-0c61-4e02-9ee7-6ce348c924de" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e5de53da-42bb-4d6f-960d-b1157e741284" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +plaza 
\entryTyp root 
\gENG market 
\gSPN mercado 
\e +plaza 
\c N0 
\ach pla:za 
\akh pla:za 
\acl pla:za 
\akl pla:za 
\ame pla:za</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="420693e3-e1b0-4da6-b9a9-289c52652e66" ownerguid="96e6430e-2e16-401f-a96c-15d3ab24f6b7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">whisker</AUni> -<AUni ws="es">barba</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="14b4a829-51d9-4f8d-aa18-79b6234d31fa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="42092895-8c78-4420-9c69-c0174c79142f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pogasha; pogasha:</AUni> -<AUni ws="qvm-x-acl">pogasha; pogasha:</AUni> -<AUni ws="qvm-x-akh">poqasha; poqasha:</AUni> -<AUni ws="qvm-x-akl">poqasha; poqasha:</AUni> -<AUni ws="qvm-x-ame">puqasha; puqasha:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puqusha:</AUni> -<AUni ws="qvm-x-acl">*puqusha:</AUni> -<AUni ws="qvm-x-akh">*puqusha:</AUni> -<AUni ws="qvm-x-akl">*puqusha:</AUni> -<AUni ws="qvm-x-ame">*puqusha:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.630" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9185952d-4dfb-45e2-9ec4-fe176789930a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puqusha:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e5c7e10c-24b9-430d-a528-1df3a2384dc6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="059299a4-67af-47d8-bdf1-947a861f91e9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puqusha: 
\entryTyp root 
\gENG to.foam 
\gSPN babas 
\e *puqusha: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach pogasha foreshortened 
\ach pogasha: 
\akh poqasha foreshortened 
\akh poqasha: 
\acl pogasha foreshortened 
\acl pogasha: 
\akl poqasha foreshortened 
\akl poqasha: 
\ame puqasha foreshortened 
\ame puqasha:</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="4209fb1a-730b-441b-bdeb-3b5df16e2dd8" ownerguid="bd8f8f0d-e1c1-4e7f-9467-6a882455dc95"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">no</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">no</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">no</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">no</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">no</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1c2afedd-b532-41e4-8eb0-9b00c2d75090" t="r" /> -</Morph> -<Msa> -<objsur guid="dbacef16-50cb-4f71-a590-54ec4684dfe4" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="420cb575-9a8d-4148-a329-b1ac4310c21a" ownerguid="83ad737f-5596-41a1-8eec-010df8debc33"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="2352ee66-dda1-42bf-b6a6-16a57be77398" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="420ff208-a84c-49f1-9aaf-144ce943f977" ownerguid="0d608afe-f31e-4e88-a67b-bd87135caa6a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">measure</AUni> -<AUni ws="es">media.arroba</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="149f3f7a-faef-4067-8f94-d9ad98a1ceb1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="42133f78-9860-4bb7-8083-5559083f0714" ownerguid="6745c89d-1fcd-44b8-be4b-9fd9d62f64e7"> -<Abbreviation> -<AUni ws="en">4.2.6.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.217" /> -<DateModified val="2022-9-23 16:55:8.217" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to gambling.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Gambling</AUni> -</Name> -<OcmCodes> -<Uni>525 Gambling</Uni> -</OcmCodes> -<Questions> -<objsur guid="0efcb855-c0cb-43f4-ab48-329797930c11" t="o" /> -<objsur guid="d24df519-2b6b-405d-8044-576dfa3ba6db" t="o" /> -<objsur guid="b03e029e-eac6-42d1-b240-7ce052330291" t="o" /> -<objsur guid="ccb5ae28-f956-4111-bbde-43a61eee39f0" t="o" /> -<objsur guid="7f3ed10f-0321-4e56-a34f-f10e978562d3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="421816fd-6f4f-4541-b143-6b4a914fd370" ownerguid="dd8e05ab-db1d-4bda-8764-099c15889a64"> -<Form> -<AUni ws="qvm-x-ach">cursu; curso</AUni> -<AUni ws="qvm-x-acl">cursu; cursu; curso</AUni> -<AUni ws="qvm-x-akh">cursu; curso</AUni> -<AUni ws="qvm-x-akl">cursu; cursu; curso</AUni> -<AUni ws="qvm-x-ame">cursu; curso</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="421cb230-6f22-4ce2-ac64-2b006841bb8b" ownerguid="ff057800-b07c-4b82-b27d-99a1e7c01f14"> -<Form> -<AUni ws="qvm-x-ach">tribul</AUni> -<AUni ws="qvm-x-acl">tribul</AUni> -<AUni ws="qvm-x-akh">tribul</AUni> -<AUni ws="qvm-x-akl">tribul</AUni> -<AUni ws="qvm-x-ame">tribul</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="4220191a-8726-489e-8ff2-c2c219d33197" ownerguid="753836ad-8751-4f9c-a204-b4f429529538"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">studies</AUni> -<AUni ws="es">estudios</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="29702062-4717-4437-be2e-14763373ed45" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="42204061-cd0d-4fe3-9951-bc38063db767" ownerguid="a01a1900-fc1f-462e-ba3d-ae822711b034"> -<ExampleWords> -<AUni ws="en">have a nervous breakdown, crack up, go mad, go insane, go crazy, go senile, develop a psychosis</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to becoming mentally ill?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="4222d48d-05d3-4c82-91ef-90561c9d2a83" ownerguid="e00ffcd7-c6bc-463c-8116-9da90e825e34"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="f222b79b-8aef-4764-9aad-6e61aee73e71" t="o" /> -</MorphBundles> -</rt> -<rt class="CmSemanticDomain" guid="4223d3ba-5560-4c30-b013-4e31fee36329" ownerguid="7d111356-e04e-4891-960c-2f35147eba82"> -<Abbreviation> -<AUni ws="en">9.7.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.731" /> -<DateModified val="2022-9-23 16:55:8.731" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the name of a building.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Names of buildings</AUni> -</Name> -<Questions> -<objsur guid="c4402bfe-a757-495a-9609-48f661b03512" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="422ca569-c2b1-4b5f-a044-87776085d080" ownerguid="d2ca3194-e393-480e-ae1d-dd67bed55227"> -<ExampleWords> -<AUni ws="en">compost pile</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) Where are dead plants put?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="422f0c87-b949-422a-b2e3-6bb5e2c122be" ownerguid="3393b3b2-b324-408d-9c59-057a0de9c3bd"> -<ExampleWords> -<AUni ws="en">try and do something, in an effort to do something, in an attempt to do something</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to doing something in order to try to do something else?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="422f9a53-8138-4bcc-80b2-205748f6c709" ownerguid="1f7366b1-96fb-4d21-9015-f730037e8a34"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="4231feeb-d7d1-4f48-907e-6cbe21827c29" ownerguid="5c4a3227-111c-422f-aec2-b6edeee36482"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="0a7978e2-746f-408a-a779-cf02317ded88" t="o" /> -<objsur guid="c8e2eb72-693e-427a-bb73-98dccb32b979" t="o" /> -<objsur guid="e87e81b2-43cb-490a-96b6-336fdc89e5c6" t="o" /> -<objsur guid="4fb32f3a-e508-40a4-b208-86b2518065c9" t="o" /> -<objsur guid="6c26ac5f-35d0-49b8-9f33-d9cebdfe844e" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="4233f3c5-3a4e-4b79-8432-f94f9bed8504" ownerguid="22001e38-caec-4b13-ac94-447b686176c8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">ladear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="797aabc7-bddd-42f5-bfac-277b4dc775f2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="42378eb9-7411-46c7-8b90-d25ee5da20d6" ownerguid="cbc22dc6-a815-49f8-985f-00001c278817"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9ed5ab14-a4a3-41d4-b626-48c177d2955f" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">deceased</AUni> -<AUni ws="es">finado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2533fe71-e6ec-4e7b-855d-63045a6bbeba" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="42380902-6254-4462-8cab-6cd81562795c" ownerguid="e4b04a0f-b137-40da-9038-f5655c32e367"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EZK 29.7 Aptarcushuptiqui paquicäcushpayquimi paycunata tsalcushcanqui.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="423a5a5b-ac0f-47f4-862e-03983a2ea560" ownerguid="a94b99e6-d195-405f-9919-77405d1ae217"> -<Form> -<AUni ws="qvm-x-ach">shiwa</AUni> -<AUni ws="qvm-x-acl">shiwa</AUni> -<AUni ws="qvm-x-akh">shiwa</AUni> -<AUni ws="qvm-x-akl">shiwa</AUni> -<AUni ws="qvm-x-ame">shiwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="423ad7d8-5224-4c18-a930-f6a3e59d4018" ownerguid="5174e55e-5292-4ab9-9b2c-fc37610aaf72"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pistol</AUni> -<AUni ws="es">pistola</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="08997433-a793-4c22-8806-d80a73082cd5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="423b1787-e12e-4424-bcc9-e5fe7b9a3600" ownerguid="935da513-126e-4cab-8e07-625458821181"> -<ExampleWords> -<AUni ws="en">come together, assemble, band together, collect, cluster, come together, congregate, convene, crowd, flock, gather, join forces, muster, rendezvous, stream, throng, unite, join</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to people coming together to form a group?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="423b41a9-5824-4611-a537-2a43120ea983" ownerguid="751731b9-43be-4f3d-a968-bdc8fdb4e286"> -<Form> -<AUni ws="qvm-x-ach">autoriza</AUni> -<AUni ws="qvm-x-acl">autoriza</AUni> -<AUni ws="qvm-x-akh">autoriza</AUni> -<AUni ws="qvm-x-akl">autoriza</AUni> -<AUni ws="qvm-x-ame">autoriza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="423d7370-f1aa-4314-94ef-86c6211c7e9b" ownerguid="4db7beac-642c-4eb0-8efa-40b4ce911da5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="423e06e6-9950-435b-8597-ec5aac3a3f31"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">legiti</AUni> -<AUni ws="qvm-x-acl">legiti; legite</AUni> -<AUni ws="qvm-x-akh">legiti</AUni> -<AUni ws="qvm-x-akl">legiti; legite</AUni> -<AUni ws="qvm-x-ame">legiti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+legitimar.3</AUni> -<AUni ws="qvm-x-acl">+legitimar.3</AUni> -<AUni ws="qvm-x-akh">+legitimar.3</AUni> -<AUni ws="qvm-x-akl">+legitimar.3</AUni> -<AUni ws="qvm-x-ame">+legitimar.3</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.72" /> -<DateModified val="2022-10-10 21:19:47.698" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4c88dc6e-f7cd-490f-9e77-4f5b3e0b0912" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+legitimar.3</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="25f86535-2f0f-4abe-87f6-f00774bd7968" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="54d680f8-2862-4837-85ac-6d0a4e917d73" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +legitimar.3 
\entryTyp root 
\gENG make.legitimate 
\gSPN 
\e +legitimar.3 
\c V2 
\mp +FinalI 
\ach legiti 
\akh legiti 
\acl legiti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl legite +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl legiti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl legite +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame legiti 
\i GAL 4.5 Tsaynoqpami paypa wamrankunana kanantsipaq legitikamashkantsi.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="42409077-f232-4859-93cf-e1f95979450d" ownerguid="e64a3b56-3e9f-4574-9550-a68725e5a9ed"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="4241e10d-2e64-40a8-9948-9c5640533b21" ownerguid="62efa729-0920-4933-93f3-b6a48519a5c7"> -<ExampleWords> -<AUni ws="en">atone, expiate, make up for, make amends, compensate, repay, pay for, pay your debt to society</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to atoning for a sin?</AUni> -</Question> -</rt> -<rt class="MoInflAffixSlot" guid="4241ff27-a983-4a4f-b554-ba2444cca308" ownerguid="86ff66f6-0774-407a-a0dc-3eeaf873daf7"> -<Name> -<AUni ws="en">benefit</AUni> -</Name> -<Optional val="True" /> -</rt> -<rt class="MoStemAllomorph" guid="4244bbb4-0e6d-49b6-9cde-ecabead74188" ownerguid="1a29f916-4708-48fe-b9be-f870d35e6b26"> -<Form> -<AUni ws="qvm-x-ach">gachga</AUni> -<AUni ws="qvm-x-acl">gachga</AUni> -<AUni ws="qvm-x-akh">qachqa</AUni> -<AUni ws="qvm-x-akl">qachqa</AUni> -<AUni ws="qvm-x-ame">qachqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="4246d409-c802-47c6-a3f9-a1317f59d1bb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuadra</AUni> -<AUni ws="qvm-x-acl">cuadra</AUni> -<AUni ws="qvm-x-akh">cuadra</AUni> -<AUni ws="qvm-x-akl">cuadra</AUni> -<AUni ws="qvm-x-ame">cuadra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuadrar</AUni> -<AUni ws="qvm-x-acl">+cuadrar</AUni> -<AUni ws="qvm-x-akh">+cuadrar</AUni> -<AUni ws="qvm-x-akl">+cuadrar</AUni> -<AUni ws="qvm-x-ame">+cuadrar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.223" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7395efda-f76d-4cba-8ef4-3333d84e58e4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuadrar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f69bbb7a-5ee3-4b30-b2a1-f0b1dd124f54" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a091cfe6-190a-4e75-bf0c-8730574ebad7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuadrar 
\entryTyp root 
\gENG park 
\gSPN cuadrar 
\e +cuadrar 
\c V1 
\ach cuadra 
\akh cuadra 
\acl cuadra 
\akl cuadra 
\ame cuadra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="42471d90-8ba5-45c1-b7bb-d1006b88911e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chuscuni</AUni> -<AUni ws="qvm-x-acl">chuscuni; chuscuni; chuscune</AUni> -<AUni ws="qvm-x-akh">chuskuni</AUni> -<AUni ws="qvm-x-akl">chuskuni; chuskuni; chuskune</AUni> -<AUni ws="qvm-x-ame">chuskuni</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*truskuni</AUni> -<AUni ws="qvm-x-acl">*truskuni</AUni> -<AUni ws="qvm-x-akh">*truskuni</AUni> -<AUni ws="qvm-x-akl">*truskuni</AUni> -<AUni ws="qvm-x-ame">*truskuni</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.190" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b2996b9a-b242-40d5-a0ad-60305d6bdacd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*truskuni</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="507a1cdf-5a27-49e6-94c6-b2742d033113" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e85086f7-9336-4b01-bee3-4ff962fdb64a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *truskuni 
\entryTyp root 
\gENG four 
\gSPN cuatro 
\e *truskuni 
\c N0 
\mp +FinalI 
\ach chuscuni 
\akh chuskuni 
\acl chuscuni / _# 
\acl chuscuni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chuscune +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chuskuni / _# 
\akl chuskuni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chuskune +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chuskuni 
\mcc *truskuni / _ 1P / _ 2P</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="4247d4f4-c3f2-47ad-a3f1-8377c732f6ea" ownerguid="e66ff615-20cc-4db8-88d1-7632e4644782"> -<Form> -<AUni ws="qvm-x-ach">rapi</AUni> -<AUni ws="qvm-x-acl">rapi; rapi; rape</AUni> -<AUni ws="qvm-x-akh">rapi</AUni> -<AUni ws="qvm-x-akl">rapi; rapi; rape</AUni> -<AUni ws="qvm-x-ame">rapi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="42492e6e-8306-4a4a-af60-e63491d97114" ownerguid="29a70926-986d-4a0b-b456-0581cdaff452"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="424bda37-67d4-4ec3-a39a-7bba0c9f3b97"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nuqui</AUni> -<AUni ws="qvm-x-acl">nuqui; nuque</AUni> -<AUni ws="qvm-x-akh">nuki</AUni> -<AUni ws="qvm-x-akl">nuki; nuke</AUni> -<AUni ws="qvm-x-ame">nuki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñuki</AUni> -<AUni ws="qvm-x-acl">*ñuki</AUni> -<AUni ws="qvm-x-akh">*ñuki</AUni> -<AUni ws="qvm-x-akl">*ñuki</AUni> -<AUni ws="qvm-x-ame">*ñuki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.598" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="de927fe2-6c0f-4797-829e-2bcf46aa3c71" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñuki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8b682b02-6738-4067-a519-80ec92f4f2a9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="85d1fc4b-657c-4ec1-8461-f9413b4a8fe7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñuki 
\entryTyp root 
\gENG lift.head 
\gSPN alzar.cabeza 
\e *ñuki 
\c V1 
\mp +FinalI 
\ach nuqui 
\akh nuki 
\acl nuqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl nuque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl nuki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl nuke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame nuki</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="424ced39-d801-419a-86fe-265942a9b74b" ownerguid="64493789-1c2c-4b24-a7e6-f00ff9be923e"> -<Abbreviation> -<AUni ws="en">6.1.2.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.350" /> -<DateModified val="2022-9-23 16:55:8.350" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to taking care of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Take care of something</AUni> -</Name> -<Questions> -<objsur guid="625036c3-082e-426d-b55f-fa8baabf1725" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="424f9da6-2571-4130-ae74-a94c17569707" ownerguid="3fae9066-eb66-444e-bd41-818b9f7b3bae"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Put: John <put> the knife on the table.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">put, install, lodge, mount, place (v), position (v), set, situate, sling, stash, stow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to putting something somewhere?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4254e311-a255-4270-8f52-a86c7b9aa2c9" ownerguid="3ec9fbad-4bd2-48f5-b9d7-4ac32811986c"> -<Form> -<AUni ws="qvm-x-ach">mutsa</AUni> -<AUni ws="qvm-x-acl">mutsa</AUni> -<AUni ws="qvm-x-akh">mutsa</AUni> -<AUni ws="qvm-x-akl">mutsa</AUni> -<AUni ws="qvm-x-ame">mutsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="42587f2a-0511-4221-ac81-290368b8375a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">agula</AUni> -<AUni ws="qvm-x-acl">agula</AUni> -<AUni ws="qvm-x-akh">aqula</AUni> -<AUni ws="qvm-x-akl">aqula</AUni> -<AUni ws="qvm-x-ame">aqula</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aqulla</AUni> -<AUni ws="qvm-x-acl">*aqulla</AUni> -<AUni ws="qvm-x-akh">*aqulla</AUni> -<AUni ws="qvm-x-akl">*aqulla</AUni> -<AUni ws="qvm-x-ame">*aqulla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.920" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5827cdf4-103f-4a60-bef2-afd388e1f186" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aqulla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b6396f29-e2ba-4da9-ad75-5bbe21872785" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b0b80351-a3b7-4fe4-9900-5d36dcff894b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aqulla 
\entryTyp root 
\gENG crush 
\gSPN amollar 
\e *aqulla 
\c V2 
\ach agula 
\akh aqula 
\acl agula 
\akl aqula 
\ame aqula 
\i Exo 32.19 Tsayta ricarmi fiyupa rabyacur apamushgan läjacunata agolagpag punta chaquincho sagtariycorgan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="42609395-d7a0-4a22-bbaa-04cb5dda6786" ownerguid="400f89d6-11fb-4d8d-9d00-d91a7964a1ad"> -<Form> -<AUni ws="qvm-x-ach">ampara</AUni> -<AUni ws="qvm-x-acl">ampara</AUni> -<AUni ws="qvm-x-akh">ampara</AUni> -<AUni ws="qvm-x-akl">ampara</AUni> -<AUni ws="qvm-x-ame">ampara</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="4260e110-7b04-4d40-9391-486a57aa3031" ownerguid="30e6b42c-6bbf-4659-99e7-aa4b8e68c9ce"> -<Abbreviation> -<AUni ws="en">4.3.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.223" /> -<DateModified val="2022-9-23 16:55:8.223" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to acting maturely--to act like an adult rather than a child.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88M Mature Behavior</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Mature in behavior</AUni> -</Name> -<Questions> -<objsur guid="f853ed3d-512d-4333-a262-72467949b911" t="o" /> -<objsur guid="798b5157-6c20-4b23-97a4-b38c890d3b9a" t="o" /> -<objsur guid="04ce4be2-d609-4ebe-86d4-b8c967aca233" t="o" /> -<objsur guid="12acf71d-9703-4676-b8b7-48992f0641ce" t="o" /> -<objsur guid="12f07ce3-ec8f-4346-86f2-164babcd3ae3" t="o" /> -<objsur guid="6379394c-efad-42d8-9a80-75bf07d62864" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="2b846476-00cf-4d82-97a1-26e1eda880ca" t="o" /> -<objsur guid="de1ffd73-af3b-47a2-8e98-ac1659a84cac" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="4268cbc0-6680-4779-99d7-1df8d8cbf450"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quisqui</AUni> -<AUni ws="qvm-x-acl">quisqui; quisqui; quisque</AUni> -<AUni ws="qvm-x-akh">kiski</AUni> -<AUni ws="qvm-x-akl">kiski; kiski; kiske</AUni> -<AUni ws="qvm-x-ame">kiski</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kiski</AUni> -<AUni ws="qvm-x-acl">*kiski</AUni> -<AUni ws="qvm-x-akh">*kiski</AUni> -<AUni ws="qvm-x-akl">*kiski</AUni> -<AUni ws="qvm-x-ame">*kiski</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.993" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6aa6459b-2ade-423d-997d-dc2a3837c4bf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kiski</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="89312133-fc69-447a-8408-36ec787c434d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b738210b-80e8-48eb-88f5-c611c101250e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kiski 
\entryTyp root 
\gENG puppy 
\gSPN cachorro 
\e *kiski 
\c N0 
\mp +FinalI 
\ach quisqui 
\akh kiski 
\acl quisqui / _# 
\acl quisqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl quisque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kiski / _# 
\akl kiski +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kiske +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kiski</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="4268dc30-454d-41f8-8187-b430b3e46ec3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ogla</AUni> -<AUni ws="qvm-x-acl">ogla</AUni> -<AUni ws="qvm-x-akh">oqla</AUni> -<AUni ws="qvm-x-akl">oqla</AUni> -<AUni ws="qvm-x-ame">uqla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uqlla.n</AUni> -<AUni ws="qvm-x-acl">*uqlla.n</AUni> -<AUni ws="qvm-x-akh">*uqlla.n</AUni> -<AUni ws="qvm-x-akl">*uqlla.n</AUni> -<AUni ws="qvm-x-ame">*uqlla.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.261" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cbd559f1-8c1a-43f1-9beb-d712229a35ad" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uqlla.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6f7278dc-3994-49b7-baab-3a6e0cc01d86" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c90a7953-b33f-41f6-878d-d9c0be980bbe" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uqlla.n 
\entryTyp root 
\gENG brood 
\gSPN empollar 
\e *uqlla.n 
\c N0 
\ach ogla 
\akh oqla 
\acl ogla 
\akl oqla 
\ame uqla 
\i 1KI 3.21 Tsauraga riccharcamur chuchunäpäga wanushga wamralana oglanëcho caycashga.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="426987c2-1b53-4ca9-a179-0acf38ffef85" ownerguid="6d5fdd15-7352-4395-85d4-6fa6fd1ecd3b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">navel</AUni> -<AUni ws="es">ombligo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="52b0ddb1-622b-47ed-9d41-fd02b89fc53f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="426a871a-86dc-41af-a698-1a77dae28f35"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuida</AUni> -<AUni ws="qvm-x-acl">cuida</AUni> -<AUni ws="qvm-x-akh">cuida</AUni> -<AUni ws="qvm-x-akl">cuida</AUni> -<AUni ws="qvm-x-ame">cuida</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuidar</AUni> -<AUni ws="qvm-x-acl">+cuidar</AUni> -<AUni ws="qvm-x-akh">+cuidar</AUni> -<AUni ws="qvm-x-akl">+cuidar</AUni> -<AUni ws="qvm-x-ame">+cuidar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.244" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c6dacfc4-075a-498c-850c-0691a429093f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuidar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ad542860-254b-421c-8195-a6add455fd27" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2980026f-fad6-4941-a76e-033ddaecdabe" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuidar 
\entryTyp root 
\gENG care 
\gSPN cuidar 
\e +cuidar 
\c V2 
\ach cuida 
\akh cuida 
\acl cuida 
\akl cuida 
\ame cuida</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="426adc6b-ccc4-4818-801f-bab9e8c606d0" ownerguid="ecf1cce7-ed58-44bf-870a-e8579b309c54"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">We eat vegetables <with> our rice.; We used mud <mixed with> a little cement to plaster the wall.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">with, together with, combined with, mixed with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate combinative relation?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="426c262a-b7e6-4f55-98f3-9ec9087461f2" ownerguid="6dc38373-e5b8-49e7-a672-abaa1df9c720"> -<Form> -<AUni ws="qvm-x-ach">alfabëtu</AUni> -<AUni ws="qvm-x-acl">alfabëtu; alfabëtu; alfabëto</AUni> -<AUni ws="qvm-x-akh">alfabëtu</AUni> -<AUni ws="qvm-x-akl">alfabëtu; alfabëtu; alfabëto</AUni> -<AUni ws="qvm-x-ame">alfabëtu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="4270c4f0-e1b1-448f-8095-8147cb1c2b59" ownerguid="2bea4b4a-90b3-4a4a-b8ec-a8406aa7a4ea"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="42714b96-6b18-4fa4-a6f9-27d2e21f6f0a" ownerguid="a128788d-9e04-47fd-b3ca-7d8adc3ceae8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pit</AUni> -<AUni ws="es">pozo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="abadfe44-ccba-40b3-8d0b-8f9bb846c2e9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="4273db56-92ed-4003-8dc6-38ebf6cdfeed" ownerguid="23389cf4-61da-4fd6-b578-a02cad68bc89"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="4275df2e-d4f6-461a-9279-39e0712dc082" ownerguid="a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f"> -<Abbreviation> -<AUni ws="en">2.3.1.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to how something appears.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>58B Appearance as an Outward Manifestation of Form</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Appearance</AUni> -</Name> -<Questions> -<objsur guid="c0d744db-7744-4ab9-b135-7b2045f39e4f" t="o" /> -<objsur guid="1e41c665-3968-4c2a-b3e1-b2ae6b225fdd" t="o" /> -<objsur guid="2dd50068-4289-4734-b289-3b9071ffa942" t="o" /> -<objsur guid="7d7eb2e0-bf69-4cb6-b3e5-87d378776fa5" t="o" /> -<objsur guid="fa9a7a20-c783-46ed-891a-9b0f49dad0f9" t="o" /> -<objsur guid="880417ee-b348-4ed0-9a03-37ebc48f9aac" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="e4517880-aa2d-4977-b55a-dcb0b6d1f533" t="o" /> -<objsur guid="2f151c35-72e1-4665-bc05-6fc70a3ecff2" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="427842fe-e98f-4e25-9720-00122ce5b5e9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">achalau</AUni> -<AUni ws="qvm-x-acl">achalau</AUni> -<AUni ws="qvm-x-akh">achalaw</AUni> -<AUni ws="qvm-x-akl">achalaw</AUni> -<AUni ws="qvm-x-ame">achalaw</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*achallaw</AUni> -<AUni ws="qvm-x-acl">*achallaw</AUni> -<AUni ws="qvm-x-akh">*achallaw</AUni> -<AUni ws="qvm-x-akl">*achallaw</AUni> -<AUni ws="qvm-x-ame">*achallaw</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.629" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8812573a-bfe8-4119-bae0-40c0104d96ed" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*achallaw</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7c9bdadd-8bb1-412a-a2d5-7e0c4c993c16" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9c52c588-223a-4efc-aa79-e7d964722c57" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *achallaw 
\entryTyp root 
\gENG wow! 
\gSPN ay! 
\e *achallaw 
\c NOSUFF 
\ach achalau 
\akh achalaw 
\acl achalau 
\akl achalaw 
\ame achalaw</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="427caf99-75f8-44cc-8bd5-6d0f4384aa07" ownerguid="97cfa993-e9f4-4f63-82d4-feaf1134c864"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="427cc33c-02b1-4df1-ba89-0ed94809ec0d" ownerguid="79c40493-932f-4b5b-a443-412e11af8537"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">advance</AUni> -<AUni ws="es">avanzar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d2bf4e44-4613-4a75-a53f-cae886bbc598" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="PunctuationForm" guid="427fccee-0384-41e7-b336-e248f4faf702"> -<Form> -<Str> -<Run ws="en">7</Run> -</Str> -</Form> -</rt> -<rt class="LexSense" guid="4280f45c-8b0a-4e0b-952c-426e70c6104b" ownerguid="3ce2a472-0a9b-4776-9727-5770a13f8c5a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="0f9418ce-7051-40d4-8d83-b66fc215f7b5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="4281158a-087c-4914-af5b-24a6103aa096" ownerguid="74c519e5-e149-41c3-b085-3188895e1efd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lay.out</AUni> -<AUni ws="es">tender</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7824dc6a-3310-4b73-87be-4f3600ac2ce0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="4281f073-e4a1-4b1c-a158-ba3ad0a13d22" ownerguid="cd994f17-c4c5-441f-8928-619285f963fb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">church</AUni> -<AUni ws="es">iglesia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cb8b1e0e-8308-4752-b019-654377e8dffa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="42882481-3390-4c4b-b98d-a50cd21c60d7" ownerguid="34d2e65f-4a27-45a4-8afc-c53b886f9909"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="5d2800b7-2778-498f-be2d-fc75ecb226c8" t="o" /> -<objsur guid="e31665b5-014a-4dc8-aebb-86b9a05d0ae9" t="o" /> -<objsur guid="3b284638-4b37-420f-88c8-e102db9c725a" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="428b37c2-310b-4d1a-b0a4-fab31d3d22c2" ownerguid="36f4aca3-8c9a-41e4-85fe-4e3ef8d95849"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="428cf47c-d760-4af2-b793-70c9885b3f77" ownerguid="faf39e77-d6f3-458b-b679-1151969a0a0a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="428fc5ea-71a4-4a6c-aa5b-d06ef9ff6346" ownerguid="e6ea429d-8e0a-49b1-b7f6-d35e342c53c2"> -<Form> -<AUni ws="qvm-x-ach">inticsharcu; inticsharca</AUni> -<AUni ws="qvm-x-acl">inticsharcu; inticsharco; inticsharca</AUni> -<AUni ws="qvm-x-akh">intiksharku; intiksharka</AUni> -<AUni ws="qvm-x-akl">intiksharku; intiksharko; intiksharka</AUni> -<AUni ws="qvm-x-ame">intiksharku; intiksharka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="42a4f423-6440-43ba-8430-793fbbdd9d15" ownerguid="7b8ad325-aa92-4fa6-b47e-8b9b5d1edeaf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="3255ee97-05f8-4f6e-88ec-a87ad0d9a951" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">straw</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6fc54439-431a-480f-bc66-44254bd811a2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="42a5ab4e-ed0a-4bf5-b04e-f2229eeba18d" ownerguid="167bfba5-0785-4bb5-a083-3ffbefa57897"> -<ExampleWords> -<AUni ws="en">adjudge, adjudicate, assay, assess, assessment, calculate, consider, decide, decision, determine, discern, estimate, evaluate, evaluation, examine, gauge, judge, judgment, judicious, question, regard, render, scrupulous, seek (truth), size, taste, test, testing, view</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the process of determining the truth of something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="42ad4f14-9133-4932-96e0-74d7f52812d9" ownerguid="49cd2c20-098a-46d9-9e47-6bf109308793"> -<ExampleWords> -<AUni ws="en">important, stand out, be conspicuous, be prominent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is emphasized?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="42ae9658-acdd-4035-ad9f-c787080ff0f9" ownerguid="10629560-8228-47ed-a541-6fd1dc3c7369"> -<Form> -<AUni ws="qvm-x-ach">ninshi</AUni> -<AUni ws="qvm-x-acl">ninshi; ninshi; ninshe</AUni> -<AUni ws="qvm-x-akh">ninshi</AUni> -<AUni ws="qvm-x-akl">ninshi; ninshi; ninshe</AUni> -<AUni ws="qvm-x-ame">ninshi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="FsFeatStruc" guid="42aecc62-ac82-4123-9c65-1651c8b2f7c3" ownerguid="9db6c688-9950-447c-a2c8-0c17d03c5c8e"> -<FeatureSpecs> -<objsur guid="171ab253-4a58-43b1-911b-a7cfb5b68059" t="o" /> -</FeatureSpecs> -<Type> -<objsur guid="efc7ecdf-44ed-4b11-9eef-41aaa905ca65" t="r" /> -</Type> -</rt> -<rt class="CmSemanticDomain" guid="42b21a6e-e2f3-4468-9e92-49ee4de6909a" ownerguid="0eefa07a-e0a3-49e3-aeb4-62f1eafd8e23"> -<Abbreviation> -<AUni ws="en">9.5.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating when two or more people each do the same thing and do it together, or when they do it separately.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Together</AUni> -</Name> -<Questions> -<objsur guid="5fb0bd88-ebd7-4189-a63c-ed57b80414cb" t="o" /> -<objsur guid="d62ef952-cd0a-40d6-b7f3-9116699323b8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="42b34fad-0e53-464a-9153-ba1d2f93c853" ownerguid="b01ae659-98cd-44f9-8771-1696c490fcbf"> -<Form> -<AUni ws="qvm-x-ach">mineral</AUni> -<AUni ws="qvm-x-acl">mineral</AUni> -<AUni ws="qvm-x-akh">mineral</AUni> -<AUni ws="qvm-x-akl">mineral</AUni> -<AUni ws="qvm-x-ame">mineral</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="42b3e6b1-7de0-4ff8-8c4e-94696de815c3" ownerguid="c5524a37-6cf8-4e54-aa51-2a2114ddf17b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="16a16ac2-b650-4332-ba23-e248c781a87d" t="o" /> -<objsur guid="52c55035-1875-445b-898b-61c2099fc3e7" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="42b520b9-536e-40ec-b03b-8903f4fc43d3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yupi</AUni> -<AUni ws="qvm-x-acl">yupi; yupi; yupe</AUni> -<AUni ws="qvm-x-akh">yupi</AUni> -<AUni ws="qvm-x-akl">yupi; yupi; yupe</AUni> -<AUni ws="qvm-x-ame">yupi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yupi</AUni> -<AUni ws="qvm-x-acl">*yupi</AUni> -<AUni ws="qvm-x-akh">*yupi</AUni> -<AUni ws="qvm-x-akl">*yupi</AUni> -<AUni ws="qvm-x-ame">*yupi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.798" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="79a9bf56-0a8e-46ad-99f9-f845da57cbb6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yupi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d59affa1-8aeb-4005-b720-97ce31812489" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9cb488ec-6ea3-43c5-8ca6-e97a3083a5c8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yupi 
\entryTyp root 
\gENG track 
\gSPN huella 
\e *yupi 
\c N0 
\mp +FinalI 
\ach yupi 
\akh yupi 
\acl yupi / _# 
\acl yupi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl yupe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yupi / _# 
\akl yupi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl yupe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame yupi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="42b6d887-7ee2-4170-9907-fc2b1b32c7bd" ownerguid="0cebe947-9794-4972-8ecd-c3a300d394d7"> -<Form> -<AUni ws="qvm-x-ach">cristal</AUni> -<AUni ws="qvm-x-acl">cristal</AUni> -<AUni ws="qvm-x-akh">cristal</AUni> -<AUni ws="qvm-x-akl">cristal</AUni> -<AUni ws="qvm-x-ame">cristal</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="42b7ea65-3cb9-4bc5-829c-334bdddcac5b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">deporti:vu</AUni> -<AUni ws="qvm-x-acl">deporti:vu; deporti:vu; deporti:vo</AUni> -<AUni ws="qvm-x-akh">deporti:vu</AUni> -<AUni ws="qvm-x-akl">deporti:vu; deporti:vu; deporti:vo</AUni> -<AUni ws="qvm-x-ame">deporti:vu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+deportivo</AUni> -<AUni ws="qvm-x-acl">+deportivo</AUni> -<AUni ws="qvm-x-akh">+deportivo</AUni> -<AUni ws="qvm-x-akl">+deportivo</AUni> -<AUni ws="qvm-x-ame">+deportivo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.376" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8a7bfbe8-14c4-407a-98ee-f57770e1de48" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+deportivo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3b0cda59-be2f-4d90-8250-58abaa01511f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="52cddc4c-5abf-49af-bf4c-84787b6f099d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +deportivo 
\entryTyp root 
\gENG 
\gSPN 
\e +deportivo 
\c N0 
\ach deporti:vu 
\akh deporti:vu 
\acl deporti:vu / _# 
\acl deporti:vu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl deporti:vo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl deporti:vu / _# 
\akl deporti:vu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl deporti:vo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame deporti:vu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="42b8afa2-0e77-4ab5-af11-98bd680843d4" ownerguid="908a1a2c-342a-48d8-abbf-dff79aa5504f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="42b8c953-6dbd-4c19-a5b5-8610050d1ba5" ownerguid="7ade32e9-68ed-4769-a59a-14558b85584a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">priest</AUni> -<AUni ws="es">cura</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5b05f0b2-feac-4432-810f-1fbdc13961af" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="42b97696-0fdd-4386-8d8d-78d433dbbb8f" ownerguid="2ed708d3-26f9-4502-9653-b628e93e8506"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="42bbdab0-7c09-4852-9ca7-d5939f54539c" ownerguid="da8c3912-9f3a-478c-832f-132abddf5c03"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">toasted.flour</AUni> -<AUni ws="es">harina.tostada</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c6835e27-579b-40f9-b37b-478ac0d170c9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoInflAffixSlot" guid="42bc87c7-a17e-4c3e-850a-437f19ff6b36" ownerguid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5"> -<Name> -<AUni ws="en">plural</AUni> -</Name> -<Optional val="True" /> -</rt> -<rt class="CmSemanticDomain" guid="42be1634-72ca-4a20-80a1-ba726e5cd1d2" ownerguid="e5f9c9cf-0b0c-47aa-b7df-8c37f211cd00"> -<Abbreviation> -<AUni ws="en">7.8.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.557" /> -<DateModified val="2022-9-23 16:55:8.557" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to cutting something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>19B Pierce, Cut</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Cut</AUni> -</Name> -<Questions> -<objsur guid="d3dc74b2-68aa-4f5a-966a-2f20efb025f4" t="o" /> -<objsur guid="25abad4d-8ebf-451a-907c-69b9392e5402" t="o" /> -<objsur guid="3eb5468a-a00b-45a5-9020-a5ecf594d808" t="o" /> -<objsur guid="6dc8414a-07ab-49e9-9dc9-7b31dc5c961e" t="o" /> -<objsur guid="fc3815b0-9055-45f7-84ca-dc0fcb938486" t="o" /> -<objsur guid="b4d1c9c7-8767-4893-afdb-4a69d91aa9c8" t="o" /> -<objsur guid="431b29c6-387a-41d0-903b-1d37090195df" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="42be9b41-13db-44c9-9108-61a04d740d94" ownerguid="e4517880-aa2d-4977-b55a-dcb0b6d1f533"> -<ExampleWords> -<AUni ws="en">beauty, looks, good looks</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the quality of being beautiful?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="42c19b88-f596-4a8b-b906-ae9f09754563" ownerguid="5058c141-f0a2-4368-b1c4-d0962e7f613f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stack</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="83175cdf-1aff-41f2-85b9-127cc7709bf8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="42c56d72-f21c-4e54-ae10-db73d06e9e67" ownerguid="86928d3c-0e55-488a-b86e-de28805c963a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="42cc7fe5-c15d-4deb-85c2-1cadc4e18228"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wasarima</AUni> -<AUni ws="qvm-x-acl">wasarima</AUni> -<AUni ws="qvm-x-akh">wasarima</AUni> -<AUni ws="qvm-x-akl">wasarima</AUni> -<AUni ws="qvm-x-ame">wasarima</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*washarima.n</AUni> -<AUni ws="qvm-x-acl">*washarima.n</AUni> -<AUni ws="qvm-x-akh">*washarima.n</AUni> -<AUni ws="qvm-x-akl">*washarima.n</AUni> -<AUni ws="qvm-x-ame">*washarima.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.546" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0609806b-2193-4a06-ab77-61c7668d05bd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*washarima.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1e55062b-34b5-4ead-858b-0f3a9d76963e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a524d203-39e2-41dc-9a67-d0b49e025cb1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *washarima.n 
\entryTyp root 
\gENG slander 
\gSPN rinsilla 
\e *washarima.n 
\c N0 
\ach wasarima 
\akh wasarima 
\acl wasarima 
\akl wasarima 
\ame wasarima</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="42d2d628-a675-4b99-85c6-3db08e2b30b7" ownerguid="4872c571-5518-4b38-8579-b26952b20ee3"> -<Form> -<AUni ws="qvm-x-ach">camtsa</AUni> -<AUni ws="qvm-x-acl">camtsa</AUni> -<AUni ws="qvm-x-akh">kamtsa</AUni> -<AUni ws="qvm-x-akl">kamtsa</AUni> -<AUni ws="qvm-x-ame">kamtsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="42d34e5b-96b3-4745-a9a1-f8fef237f0c2" ownerguid="e086ff1a-7212-4c35-b8fd-daf2d211ef0a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="42d471b3-57f3-4b62-af67-37707d2e25fd" ownerguid="c6e806f9-600c-4f3f-a41b-959c94fb123c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="42d53a89-607a-465e-93e5-d73af708511d" ownerguid="bfbfb9b5-363d-4767-a5cb-1b11b348efd6"> -<ExampleWords> -<AUni ws="en">no one, nobody</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to no person?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="42d61fef-622b-4512-979f-0a394cec26da" ownerguid="411e2f93-b331-4717-94f1-43dc9151808c"> -<Form> -<AUni ws="qvm-x-ach">togush</AUni> -<AUni ws="qvm-x-acl">togush</AUni> -<AUni ws="qvm-x-akh">toqush</AUni> -<AUni ws="qvm-x-akl">toqush</AUni> -<AUni ws="qvm-x-ame">tuqush</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="42dae6b6-3cee-497c-89b1-fece3a248d38" ownerguid="e080687b-0900-4dd0-9677-e3aaa3eae641"> -<ExampleWords> -<AUni ws="en">explain, throw light on, shed light on, enlighten, elucidate, by way of explanation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to explaining something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="42dbc7f5-de12-4261-adbe-8a34f267e29b" ownerguid="937576c5-65b5-4f33-a5e0-6e04bcce4c1b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="42dcace7-c24b-4bed-8a37-e31bbd2c8a52" ownerguid="be89e0ba-4c6a-4986-ac0d-859a901b89a1"> -<ExampleWords> -<AUni ws="en">imaginative, creative (person)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe someone who imagines?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="42dfbd36-20c5-4e3f-9184-ce32d704cc85" ownerguid="9f8b8c01-f790-469f-bc37-dece6227e276"> -<ExampleWords> -<AUni ws="en">synchronize, tie something in with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to arranging two events so that they happen at the same time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="42e0143c-b62c-4792-a074-440a5b8905a9" ownerguid="20baa5e7-4f02-4782-a292-c6281d7b5f3a"> -<ExampleWords> -<AUni ws="en">push on, press</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to pushing something, but without making it move?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="42e26f8d-e3e6-41f8-bcaf-ac5d38168be1" ownerguid="49471924-2458-4cb0-9430-f38cfc2fb63b"> -<Question> -<AUni ws="en">(1) What words refer to working with bones?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="42e61599-6c2f-4de4-8e97-4a42487b4094" ownerguid="8fdbb94a-55bf-4afc-9983-f6b33312b1b7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">totter</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="75539858-8a57-4ca5-a0bc-03e3f68b4828" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="42e6aba7-f2f6-486e-8dde-68dfca7da21f" ownerguid="f838a849-ffc9-4530-93f0-db41ad4218c6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bloom</AUni> -<AUni ws="es">florecer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dec805df-458c-4c17-9cf7-ee4949691fb1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="42e812b3-09e1-49c8-94bb-68bf36d919bc" ownerguid="57ed66ee-f82b-4e80-955f-7492d85372b0"> -<ExampleWords> -<AUni ws="en">representative, contingent, envoy, delegate, delegation, deputation, mission, mouthpiece, spokesman</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to someone who represents another person?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="42ea5201-7e9c-4624-b9b4-0e7a470be696" ownerguid="443857d7-ea23-4280-aeef-e8540a02a8af"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">troop</AUni> -<AUni ws="es">tropa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="04612026-2041-42fc-87b7-a695c598163e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="42ec6e2d-2bc4-44e3-9b0c-9bd30177303b" ownerguid="3cb4c07c-8760-4ff9-8d45-1c0bed80ffb3"> -<ExampleWords> -<AUni ws="en">pregnant, big as a house, expectant, expecting</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a woman who is pregnant?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="42ed41dc-391d-44f1-b7d9-13fd43d85b00" ownerguid="5f22e72b-5029-485a-a5e8-7fa7276c9920"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ta</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ta</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ta</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ta</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ta</Run> -</AStr> -</Form> -<Morph> -<objsur guid="4f3f1430-f126-405a-98a8-5d0b732eb948" t="r" /> -</Morph> -<Msa> -<objsur guid="eac932ef-fd79-454b-b2f7-95e85dbb829a" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="42ed6521-bef6-42ad-9d74-2feae473e914" ownerguid="16ee1e09-27ad-48c5-aa07-6933ecbbc716"> -<ExampleWords> -<AUni ws="en">hard, adamant, firm, indurate, petrified, concrete, tough</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is hard?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="42f2314d-8f0e-4e0d-a63c-adc885597ccd" ownerguid="284433df-7b37-4e63-a614-78520c483213"> -<ExampleWords> -<AUni ws="en">migrate, migration, fly south</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to the annual migration of animals?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="42f241ab-188e-4562-abac-21bd54714ba5" ownerguid="eaa8aa46-b632-48a0-a7fb-b8ef4b7dcc4e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="42fb01f0-1c33-4a97-b077-19c557c3705b" ownerguid="ece42d2d-cced-443b-83cd-22d573670894"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">escupir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bb10227b-09f8-4cd0-8b46-3b36c3073257" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="42fb38d6-fed2-4007-86f5-b75134136924" ownerguid="f325a53d-f583-4762-b7b0-afee1815106e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">trunk</AUni> -<AUni ws="es">tronco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="eb85f2e7-706b-4ed7-a959-fc13e38c72c2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="42fb4760-dd48-410c-8eb9-b8539ca51cdb" ownerguid="742996cd-b87f-40a8-bdb3-dba74219bd73"> -<ExampleWords> -<AUni ws="en">hot, warm, boiling</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to feeling hot?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="42fb8cc3-1fc0-4317-8091-d933def9a89d" ownerguid="a1c56408-3690-4ef1-9bf4-ee429ce97dad"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">jerky</AUni> -<AUni ws="es">cecina</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="393e199a-1770-4e8e-9c9e-38baef03cca1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="42fc2fe1-46eb-4646-b011-d351d39083e2" ownerguid="34d2e65f-4a27-45a4-8afc-c53b886f9909"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="e36fba56-c007-477e-b0f7-2877e972bc8b" t="o" /> -<objsur guid="b82fbf74-2144-4e54-a12c-690108739b87" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="43015d9d-bf75-4099-9fd4-e3d44a652e09" ownerguid="a419d056-ce49-4c3b-b5ff-56fc3afe6740"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">backpack</AUni> -<AUni ws="es">mochilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b5fc08cc-68d5-47de-bfb0-24ccd87d0efa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="4302d543-41c0-43c8-a167-1fbe1470afb9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pishi</AUni> -<AUni ws="qvm-x-acl">pishi; pishi; pishe</AUni> -<AUni ws="qvm-x-akh">pishi</AUni> -<AUni ws="qvm-x-akl">pishi; pishi; pishe</AUni> -<AUni ws="qvm-x-ame">pishi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pishi.n</AUni> -<AUni ws="qvm-x-acl">*pishi.n</AUni> -<AUni ws="qvm-x-akh">*pishi.n</AUni> -<AUni ws="qvm-x-akl">*pishi.n</AUni> -<AUni ws="qvm-x-ame">*pishi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.858" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4a23f313-9f9c-4bc9-a250-c2d0f19b572e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pishi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bb51f629-5fcb-49ba-b6ba-63bf03340a55" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="01441c77-603a-4dcd-920c-cdb7c5fcb9c2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pishi.n 
\entryTyp root 
\gENG small 
\gSPN pequeño 
\e *pishi.n 
\c N0 
\mp +FinalI 
\ach pishi 
\akh pishi 
\acl pishi / _# 
\acl pishi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pishe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pishi / _# 
\akl pishi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pishe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pishi 
\mcc *pishi.n 3P.V / _ ABL 
\mcc *pishi.n / ~_ 1P.V</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="43031b44-eb30-4e57-9f70-64f1a0570687" ownerguid="ec266c79-865d-436e-a476-6f4e30d85a84"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.imprison</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8e85a4ce-6359-4da2-aa5c-12dcf0b9b94d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="43041fa3-fcc3-4679-ab41-772bb171dab3" ownerguid="81d21551-f443-430f-b26a-11e481d95c37"> -<Form> -<AUni ws="qvm-x-ach">shaptu</AUni> -<AUni ws="qvm-x-acl">shaptu; shapto</AUni> -<AUni ws="qvm-x-akh">shaptu</AUni> -<AUni ws="qvm-x-akl">shaptu; shapto</AUni> -<AUni ws="qvm-x-ame">shaptu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="4308b26b-16b7-454c-91e4-e58d2baaff9a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">carre:ra</AUni> -<AUni ws="qvm-x-acl">carre:ra</AUni> -<AUni ws="qvm-x-akh">carre:ra</AUni> -<AUni ws="qvm-x-akl">carre:ra</AUni> -<AUni ws="qvm-x-ame">carre:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+carrera</AUni> -<AUni ws="qvm-x-acl">+carrera</AUni> -<AUni ws="qvm-x-akh">+carrera</AUni> -<AUni ws="qvm-x-akl">+carrera</AUni> -<AUni ws="qvm-x-ame">+carrera</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.920" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4d3455be-f020-447d-90c1-8ac891e032b1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+carrera</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="43096f67-2ebf-4e67-be29-80095fe94452" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ad306ab0-5996-43a2-96c1-0727ca3f600e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +carrera 
\entryTyp root 
\gENG race 
\gSPN carrera 
\e +carrera 
\c V1 
\ach carre:ra 
\akh carre:ra 
\acl carre:ra 
\akl carre:ra 
\ame carre:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="43096f67-2ebf-4e67-be29-80095fe94452" ownerguid="4308b26b-16b7-454c-91e4-e58d2baaff9a"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="430c4788-00a9-4d2f-ac2a-2e3793462851" ownerguid="f4dd3e1b-dbb7-4634-9f42-c612e1872b28"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="430ce279-1464-4d55-8483-5525a3c3094d" ownerguid="b0a9a631-e0dc-47d4-a762-e9a627732218"> -<Abbreviation> -<AUni ws="en">4.5.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.253" /> -<DateModified val="2022-9-23 16:55:8.253" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to serving someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>35B Serve</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Serve</AUni> -</Name> -<Questions> -<objsur guid="fb2762f1-ed59-4c11-b6e4-7fbfcfad8f18" t="o" /> -<objsur guid="2c92fd5c-4435-45e4-9230-15437a8851f9" t="o" /> -<objsur guid="b2ec36e2-628e-483f-9a61-9c785ff5875b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="430d9a4f-ce0e-42ac-b4ef-464c359c5de1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shogu</AUni> -<AUni ws="qvm-x-acl">shogu; shogo</AUni> -<AUni ws="qvm-x-akh">shoqu</AUni> -<AUni ws="qvm-x-akl">shoqu; shoqo</AUni> -<AUni ws="qvm-x-ame">shuqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shuqu</AUni> -<AUni ws="qvm-x-acl">*shuqu</AUni> -<AUni ws="qvm-x-akh">*shuqu</AUni> -<AUni ws="qvm-x-akl">*shuqu</AUni> -<AUni ws="qvm-x-ame">*shuqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.673" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f169bdbf-2a18-45d2-8eb6-173acbedcad3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shuqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d0acef7f-85ff-4f95-b112-03d9d858ca22" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c30daabe-9a8c-4ad8-988a-d95526f11d80" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shuqu 
\entryTyp root 
\gENG suck 
\gSPN chupar 
\e *shuqu 
\c V2 
\ach shogu 
\akh shoqu 
\acl shogu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shogo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shoqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shoqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shuqu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="4312f3ed-d7c6-41ce-ba13-d644e1c021a5"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">parlapäkurqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="4313561b-583a-4bab-b86a-394b53d9b31a" ownerguid="22439507-37c3-4c61-b620-2e5e1cdd0319"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="43169400-179f-482c-bda2-b2c3b28273f0" ownerguid="e08e252a-9227-42e4-bcb8-b803d25071b6"> -<ExampleWords> -<AUni ws="en">mortified, never felt so embarrassed in my whole life</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to feeling very embarrassed?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="43173510-a91b-4d02-8886-94a995cffdb9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">iti</AUni> -<AUni ws="qvm-x-acl">iti; iti; ite</AUni> -<AUni ws="qvm-x-akh">iti</AUni> -<AUni ws="qvm-x-akl">iti; iti; ite</AUni> -<AUni ws="qvm-x-ame">iti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*iti</AUni> -<AUni ws="qvm-x-acl">*iti</AUni> -<AUni ws="qvm-x-akh">*iti</AUni> -<AUni ws="qvm-x-akl">*iti</AUni> -<AUni ws="qvm-x-ame">*iti</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.870" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="718fa169-c4f2-461d-a593-d16a715c38d0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*iti</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fab158df-5d1b-4420-b8d2-b8ee108e0210" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="63646be8-6206-42e7-a981-274a81f24a5f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *iti 
\entryTyp root 
\gENG infant 
\gSPN infante 
\e *iti 
\c N0 
\mp +FinalI 
\ach iti 
\akh iti 
\acl iti / _# 
\acl iti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ite +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl iti / _# 
\akl iti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ite +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame iti</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="4317e079-ae91-404e-baaa-ab8c97e0da7d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">abusi:vu</AUni> -<AUni ws="qvm-x-acl">abusi:vu; abusi:vu; abusi:vo</AUni> -<AUni ws="qvm-x-akh">abusi:vu</AUni> -<AUni ws="qvm-x-akl">abusi:vu; abusi:vu; abusi:vo</AUni> -<AUni ws="qvm-x-ame">abusi:vu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+abusivo</AUni> -<AUni ws="qvm-x-acl">+abusivo</AUni> -<AUni ws="qvm-x-akh">+abusivo</AUni> -<AUni ws="qvm-x-akl">+abusivo</AUni> -<AUni ws="qvm-x-ame">+abusivo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.619" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7cf13f55-3ff9-43cf-8cbf-c0a9450fca2a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+abusivo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="210424c0-cabd-4ec9-bcb4-f2d34073f95c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="daff5c30-443e-40a4-a6ac-6c9519faf076" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +abusivo 
\entryTyp root 
\gENG abusive 
\gSPN abusivo 
\e +abusivo 
\c N0 
\ach abusi:vu 
\akh abusi:vu 
\acl abusi:vu / _# 
\acl abusi:vu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl abusi:vo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl abusi:vu / _# 
\akl abusi:vu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl abusi:vo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame abusi:vu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="431a8340-fb32-423e-af94-681ffe07e354" ownerguid="3393b3b2-b324-408d-9c59-057a0de9c3bd"> -<ExampleWords> -<AUni ws="en">bend over backwards to do something, go out of your way to do something, take the trouble to do something</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to trying hard to do something for someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="431b29c6-387a-41d0-903b-1d37090195df" ownerguid="42be1634-72ca-4a20-80a1-ba726e5cd1d2"> -<ExampleWords> -<AUni ws="en">cut, incision</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a cut?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="431dd85c-daef-4948-9280-6a8d43b9b335"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">llicullicu</AUni> -<AUni ws="qvm-x-acl">llicullicu; llicullicu; llicullico</AUni> -<AUni ws="qvm-x-akh">llikulliku</AUni> -<AUni ws="qvm-x-akl">llikulliku; llikulliku; llikulliko</AUni> -<AUni ws="qvm-x-ame">llikulliku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llikulliku</AUni> -<AUni ws="qvm-x-acl">*llikulliku</AUni> -<AUni ws="qvm-x-akh">*llikulliku</AUni> -<AUni ws="qvm-x-akl">*llikulliku</AUni> -<AUni ws="qvm-x-ame">*llikulliku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.203" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e35d18bf-2e3d-4cb3-bb2b-850f29f0b2bd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llikulliku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="964f3d60-c516-4d21-9110-45a47e583f9d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1d4b825a-5b78-4b5c-a4aa-085abc8817b1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llikulliku 
\entryTyp root 
\gENG 
\gSPN 
\e *llikulliku 
\c N0 
\ach llicullicu 
\akh llikulliku 
\acl llicullicu / _# 
\acl llicullicu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl llicullico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl llikulliku / _# 
\akl llikulliku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl llikulliko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame llikulliku 
\i Grüllaga llicullicu niragmi. Itsanga jatunmi caycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="431e87e3-4b90-4fd1-b110-1b36d06f34d4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ga:na</AUni> -<AUni ws="qvm-x-acl">ga:na</AUni> -<AUni ws="qvm-x-akh">ga:na</AUni> -<AUni ws="qvm-x-akl">ga:na</AUni> -<AUni ws="qvm-x-ame">ga:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ganar</AUni> -<AUni ws="qvm-x-acl">+ganar</AUni> -<AUni ws="qvm-x-akh">+ganar</AUni> -<AUni ws="qvm-x-akl">+ganar</AUni> -<AUni ws="qvm-x-ame">+ganar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.599" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e6453faa-2e2a-41e2-a412-7c536f0ff983" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ganar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e7e3f7b1-7877-460a-bd43-77cef40811dc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7b673416-97b0-412a-baf5-0809bf53cf6c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ganar 
\entryTyp root 
\gENG beat 
\gSPN ganar 
\e +ganar 
\c V2 
\ach ga:na 
\akh ga:na 
\acl ga:na 
\akl ga:na 
\ame ga:na</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="431f7d00-5a75-4537-9824-fcb14e98657b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sumbador</AUni> -<AUni ws="qvm-x-acl">sumbador</AUni> -<AUni ws="qvm-x-akh">sumbador</AUni> -<AUni ws="qvm-x-akl">sumbador</AUni> -<AUni ws="qvm-x-ame">sumbador</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sumbador</AUni> -<AUni ws="qvm-x-acl">+sumbador</AUni> -<AUni ws="qvm-x-akh">+sumbador</AUni> -<AUni ws="qvm-x-akl">+sumbador</AUni> -<AUni ws="qvm-x-ame">+sumbador</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.752" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="977bc6e1-0ee1-4993-a567-64a8f044eaef" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sumbador</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d97145da-a2e6-47ae-aad3-e9347850cb69" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bcc70686-2c32-4944-8e42-fa92556d88bc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sumbador 
\entryTyp root 
\gENG whip 
\gSPN sumbador 
\e +sumbador 
\c N0 
\mp +FinalC 
\ach sumbador 
\akh sumbador 
\acl sumbador 
\akl sumbador 
\ame sumbador</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="432025d1-a86c-42ce-92f8-aa7658279d2a" ownerguid="3aec74e5-6cfd-46d2-b26f-503fad761583"> -<ExampleWords> -<AUni ws="en">handle, blade, teeth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What are the parts of a saw?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4325b0ba-e7de-4bb9-ba67-64ae03b6db04" ownerguid="0fa95a9d-ed47-4b1f-8afe-2eb20a786a66"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="43262af9-f13d-4eab-a0d3-047eaa90deb6" ownerguid="7981a8e1-cf0b-44a0-9de4-12160b2f201d"> -<ExampleWords> -<AUni ws="en">trespass, trespasser</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to going onto someone's property without permission?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="43282de6-51e1-4e52-99fc-d54e2043fb6c" ownerguid="2b893d04-3450-4862-b046-7df6f87272f6"> -<Abbreviation> -<AUni ws="en">6.8.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to money.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>6K Money and Monetary Units</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Money</AUni> -</Name> -<OcmCodes> -<Uni>436 Medium of Exchange; 457 Foreign Exchange</Uni> -</OcmCodes> -<Questions> -<objsur guid="b71d5c2b-48b8-49d4-8cb0-98132d67d2a2" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="0772919e-eb4c-45e3-b705-73007f5e5583" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="4328930a-6eae-447d-aeb1-7af3999ab85c" ownerguid="fa2f39bd-7130-4cea-9eaa-efaad4e9f622"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hoarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b8765f40-c14a-45e5-bad4-ed1a2eb73a39" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="4329f97e-43d4-4f20-a416-a1aff055e5e9" ownerguid="c8de900d-4ef2-4805-b27c-f5bc872b34c9"> -<Form> -<AUni ws="qvm-x-ach">bojanda</AUni> -<AUni ws="qvm-x-acl">bojanda</AUni> -<AUni ws="qvm-x-akh">bojanda</AUni> -<AUni ws="qvm-x-akl">bojanda</AUni> -<AUni ws="qvm-x-ame">bojanda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="432a3698-8fab-4a99-8e76-d0672bb53876"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">espanta</AUni> -<AUni ws="qvm-x-acl">espanta</AUni> -<AUni ws="qvm-x-akh">espanta</AUni> -<AUni ws="qvm-x-akl">espanta</AUni> -<AUni ws="qvm-x-ame">espanta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+espantar</AUni> -<AUni ws="qvm-x-acl">+espantar</AUni> -<AUni ws="qvm-x-akh">+espantar</AUni> -<AUni ws="qvm-x-akl">+espantar</AUni> -<AUni ws="qvm-x-ame">+espantar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.495" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="83b2fef2-68d9-4b36-89da-51be69b25f44" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+espantar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7e6304b9-4271-4bcb-995e-d41aadf9b70d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0a746590-24b7-41fe-b7c2-902bc2e3c5da" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +espantar 
\entryTyp root 
\gENG amaze 
\gSPN espantar 
\e +espantar 
\c V1 
\ach espanta 
\akh espanta 
\acl espanta 
\akl espanta 
\ame espanta</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="432acf5a-1d31-4f9c-8b2d-674b5dcec0b4" ownerguid="22bde921-33c6-40be-8884-c079ac031cc8"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="e6086777-9787-4aff-a1ab-852108e27180" t="o" /> -<objsur guid="8fda77ab-3b2b-46a5-8e6b-39b612a1c662" t="o" /> -<objsur guid="16386033-f882-43ca-99d8-e661ca0fdd86" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="432c0230-984e-4af6-862b-c11985596062" ownerguid="b5f45cd2-8dd5-4a74-b334-0d4859d26d89"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="432d62eb-d4cc-41fb-8fae-7ff802630af0" ownerguid="091ee60b-b9e7-4205-8690-bce5f4efcfb0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="43306c03-81cc-4e31-bf7b-36ff591d0165" ownerguid="adf6ad2b-7af9-4bd8-a7b4-f864b9dad86d"> -<ExampleWords> -<AUni ws="en">initiation, bar mitzvah</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to initiation rites?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4333f335-964b-436b-b2dc-b247d5e99a1b" ownerguid="77f0d0dc-61ee-4373-9879-35a7059bd892"> -<ExampleWords> -<AUni ws="en">lose a tooth, knock out, missing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to losing a tooth?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4333f636-d53d-4a89-984c-9a067d877434" ownerguid="3b34cf8d-998b-4cb6-bee7-34cdfdfee925"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="69169006-316d-4447-8104-330b25616aaa" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">bile</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d15e9dbf-b9bc-40cc-a322-d7b556b3fe14" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="433745af-c87f-4407-b205-2d3967afdd36" ownerguid="6681f03b-06c4-4509-9253-e4739c9c1614"> -<ExampleWords> -<AUni ws="en">give alms</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to giving to a beggar?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="433a451a-31c4-4a80-a6ea-9fca4b837bf7" ownerguid="45631b01-889a-49f8-8eb0-9c138e84248c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fifteen</AUni> -<AUni ws="es">quince</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="91f8c852-454d-4e98-8384-06f7873f737f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="433fa810-2219-4631-832e-8d467ecda89e" ownerguid="7f96b8bb-5ff4-4be1-ae43-b3c7e32b9a71"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="434231c2-39d6-402d-9cc3-059eb06dfc11" ownerguid="0205145d-23b6-4c3c-bf2d-bf866bb010e7"> -<ExampleWords> -<AUni ws="en">waterworks, canal, ditch, dam, cistern, pipe, pump, siphon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the things used to transport water?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4342cfdd-e14e-49f2-b258-449bb127d5ee" ownerguid="2fd00980-86ee-4708-8139-71706001cafa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">roof.structure</AUni> -<AUni ws="es">cumbrera</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8c9e08b9-a2d7-4d1f-8936-f65992e0a2c6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntryType" guid="4343b1ef-b54f-4fa4-9998-271319a6d74c" ownerguid="bb372467-5230-43ef-9cc7-4d40b053fb94"> -<Abbreviation> -<AUni ws="en">fr. var.</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">If two forms are free variants, the same speaker might use either one in the same setting. The more frequent form would be considered the basic form.</Run> -</AStr> -</Description> -<Discussion> -<objsur guid="b6df4b4a-ea5e-11de-8285-0013722f8dec" t="o" /> -</Discussion> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Free Variant</AUni> -</Name> -<ReverseAbbr> -<AUni ws="en">fr. var. of</AUni> -</ReverseAbbr> -<ReverseName> -<AUni ws="en">Free Variant of</AUni> -</ReverseName> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntryType" guid="3942addb-99fd-43e9-ab7d-99025ceb0d4e" ownerguid="bb372467-5230-43ef-9cc7-4d40b053fb94"> -<Abbreviation> -<AUni ws="en">unspec. var.</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">A variant form that hasn't been labeled as a specific kind of variant.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Unspecified Variant</AUni> -</Name> -<ReverseAbbr> -<AUni ws="en">unspec. var. of</AUni> -</ReverseAbbr> -<ReverseName> -<AUni ws="en">Unspecified Variant of</AUni> -</ReverseName> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="4345ebbb-679d-41b7-bef4-62e266ca4d95" ownerguid="790462ec-625c-44b3-a794-ed4339017602"> -<Form> -<AUni ws="qvm-x-ach">aytsa</AUni> -<AUni ws="qvm-x-acl">aytsa</AUni> -<AUni ws="qvm-x-akh">aytsa</AUni> -<AUni ws="qvm-x-akl">aytsa</AUni> -<AUni ws="qvm-x-ame">aytsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="4346339c-6799-4aee-a108-04c6bc677e1e" ownerguid="35cde277-d423-4d48-ba2d-7dd065577b1f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chap</AUni> -<AUni ws="es">hender</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="33f1853a-cca8-4a19-9efa-fc9fd540e3ab" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="43471cd9-1a72-4a54-a72a-01746af742d3" ownerguid="98d8ed5b-9b34-4d7c-abba-0303dc28b6d5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsaca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsaca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsaka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsaka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsaka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2f6ef9fd-0111-454e-b40b-5c6bead1acd1" t="r" /> -</Morph> -<Msa> -<objsur guid="c9c2dbeb-bead-45f7-8061-8bbf73c1c7f3" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="434a5ea4-7189-4255-8541-a4d30f91b62b" ownerguid="6fceec81-1967-4fe5-81f3-86bcaf3f1c2f"> -<ExampleWords> -<AUni ws="en">cancel, call off, be off, scrub, shelve</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to canceling an event?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="434ae813-7419-424c-962e-75ead9745b02" ownerguid="be3559d9-d69f-4e06-8184-071c35aa2e10"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">It is <unreasonable> to assume that anything will come of this.; What you are saying is <ridiculous>.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">contrary to reason, absurd</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something is contrary to reason?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="434ec34f-e7ca-44f8-9252-dff5b9b2b62f" ownerguid="83adeb9d-c0be-4073-894d-913014420280"> -<Abbreviation> -<AUni ws="en">8.3.7.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is better than something else.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Better</AUni> -</Name> -<Questions> -<objsur guid="8def58d3-25c0-4edc-b51d-380e97647dbc" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="91cc7e8f-522e-4ff1-b545-5a5b72f4e953" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoInflAffMsa" guid="434f36b9-aa05-46d6-be7e-89240d9e2c4d" ownerguid="394e2c36-b678-4dd3-863d-46ec784324de"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="43524615-1ad3-4e97-9fa5-e8ee3a1582e7" ownerguid="aebb2f11-8120-46f8-9df3-6a264d9c804f"> -<Form> -<AUni ws="qvm-x-ach">muchu; muchü</AUni> -<AUni ws="qvm-x-acl">muchö; muchu; mucho</AUni> -<AUni ws="qvm-x-akh">muchu; muchü</AUni> -<AUni ws="qvm-x-akl">muchö; muchu; mucho</AUni> -<AUni ws="qvm-x-ame">muchu; muchü</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="43524cec-eecb-4328-ac3e-b2496d4a567f" ownerguid="9626fb26-242a-4a7d-81db-f88ba1fbeb7c"> -<Form> -<AUni ws="qvm-x-ach">comunëru</AUni> -<AUni ws="qvm-x-acl">comunëru; comunëru; comunëro</AUni> -<AUni ws="qvm-x-akh">comunëru</AUni> -<AUni ws="qvm-x-akl">comunëru; comunëru; comunëro</AUni> -<AUni ws="qvm-x-ame">comunëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="435349a6-81ef-4ebf-b606-9d8585fdbc52" ownerguid="fc749e89-9938-4e14-951c-31a922a7a572"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shameless</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ed2e2203-73f6-4ce9-8546-3ca2104dbc5b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="43545105-d8c3-4fc0-91ed-47e37ca393eb" ownerguid="9a456463-3c71-4f9a-8117-dc2fcb087bd3"> -<ExampleWords> -<AUni ws="en">pull out of the fire, snatch from the flames</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to taking something out of a fire?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="4357a691-75c2-4117-b16e-fed484f0261c"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">for</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="4358ad59-6b5b-4432-b752-145a27be9a26" ownerguid="9b4b60f0-473f-4340-a4c1-6c6f92ad9786"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="435986d6-f56d-4ff4-8f08-aa8b3c7c9d2b" ownerguid="0f7a8f2c-3e57-4cbd-8a9c-83754f0c6047"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="435b142e-1904-4c51-ac7d-1d186a668d80"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">imana; imana:</AUni> -<AUni ws="qvm-x-acl">imana; imana:</AUni> -<AUni ws="qvm-x-akh">imana; imana:</AUni> -<AUni ws="qvm-x-akl">imana; imana:</AUni> -<AUni ws="qvm-x-ame">imana; imana:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*imana:</AUni> -<AUni ws="qvm-x-acl">*imana:</AUni> -<AUni ws="qvm-x-akh">*imana:</AUni> -<AUni ws="qvm-x-akl">*imana:</AUni> -<AUni ws="qvm-x-ame">*imana:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.802" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="61369051-342b-4bb7-826a-9a51e0c31b7c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*imana:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="46d848a1-f02c-464d-ae87-70ad086b853d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="35e08c7e-9471-4a84-915a-c225d988984f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *imana: 
\entryTyp root 
\gENG what.do 
\gSPN que.hacer 
\e *imana: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach imana foreshortened 
\ach imana: 
\akh imana foreshortened 
\akh imana: 
\acl imana foreshortened 
\acl imana: 
\akl imana foreshortened 
\akl imana: 
\ame imana foreshortened 
\ame imana: 
\mcc *imana: / _... 12FUT / _... (PL) 1FUT / _... (PL) 1FUT2 / _...2O / _ (PL) PST / _ PRF / _ CMPLT1 / _ IMPFV1 
\mcc *imana: / ~_... REL</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="435df14c-be24-43b4-8184-6d09fd9d8037" ownerguid="d1f005cd-4f3e-4578-bb1f-60923a05a977"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8af3e5df-7f86-499d-85ad-4440cfd07fa2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4360546e-37c9-41fa-ac96-f48f9fab8eef" ownerguid="9fc25175-3b4a-4248-bc7f-b86012ec584f"> -<ExampleWords> -<AUni ws="en">firewood, bundle of firewood, piece of firewood, stack of firewood</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to firewood?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4369e292-e9da-463b-9aef-f56289b63ff8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">común; comun</AUni> -<AUni ws="qvm-x-acl">común; comun</AUni> -<AUni ws="qvm-x-akh">común; comun</AUni> -<AUni ws="qvm-x-akl">común; comun</AUni> -<AUni ws="qvm-x-ame">común; comun</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+común</AUni> -<AUni ws="qvm-x-acl">+común</AUni> -<AUni ws="qvm-x-akh">+común</AUni> -<AUni ws="qvm-x-akl">+común</AUni> -<AUni ws="qvm-x-ame">+común</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.162" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="50c7e9a1-b995-460a-8978-c9716f9e3f9f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+común</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0c4e710e-ebef-4e3e-b9c6-190d080dd4d7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5c8c771f-5e89-403b-b021-cbdfcd9ea8a2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +común 
\entryTyp root 
\gENG 
\gSPN común 
\e +común 
\c N0 
\mp +FinalC 
\ach común / _# 
\ach comun / ~_# 
\akh común / _# 
\akh comun / ~_# 
\acl común / _# 
\acl comun / ~_# 
\akl común / _# 
\akl comun / ~_# 
\ame común / _# 
\ame comun / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="436c4159-c8a9-406d-bd73-c603b9bc2d42" ownerguid="326f2174-eef5-4ed4-987d-021d9e7946a1"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="436c4a88-703d-4237-815a-547ab5488ffe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">asya; asya:</AUni> -<AUni ws="qvm-x-acl">asya; asya:</AUni> -<AUni ws="qvm-x-akh">asya; asya:</AUni> -<AUni ws="qvm-x-akl">asya; asya:</AUni> -<AUni ws="qvm-x-ame">asya; asya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*asya:</AUni> -<AUni ws="qvm-x-acl">*asya:</AUni> -<AUni ws="qvm-x-akh">*asya:</AUni> -<AUni ws="qvm-x-akl">*asya:</AUni> -<AUni ws="qvm-x-ame">*asya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.858" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5512ff0a-f0db-4595-b912-2a5605d95d24" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*asya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a10dd8c7-73b7-4b9d-b678-5c1e5382cfbd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a9af7c35-f782-4198-916d-8e818eb8613f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *asya: 
\entryTyp root 
\gENG stink 
\gSPN apestar 
\e *asya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach asya foreshortened 
\ach asya: 
\akh asya foreshortened 
\akh asya: 
\acl asya foreshortened 
\acl asya: 
\akl asya foreshortened 
\akl asya: 
\ame asya foreshortened 
\ame asya:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="436dd4f9-96a8-45d6-8c9d-db565746c264" ownerguid="bdaecf2f-d0fa-49f7-891e-bcb0a31ae630"> -<ExampleWords> -<AUni ws="en">after, next, later, further on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words indicate that something comes after another in a series?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4371f081-a53d-4727-9c9e-33bc9b14b0cc" ownerguid="932aa4f1-c31a-4d26-8e59-8b3f8371044b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fish</AUni> -<AUni ws="es">pez</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a53ea826-40f2-4f62-a199-c96cc2d49503" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="4373236c-a468-4a20-a536-76605739db6c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lamtsa</AUni> -<AUni ws="qvm-x-acl">lamtsa</AUni> -<AUni ws="qvm-x-akh">lamtsa</AUni> -<AUni ws="qvm-x-akl">lamtsa</AUni> -<AUni ws="qvm-x-ame">lamtsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llamcha</AUni> -<AUni ws="qvm-x-acl">*llamcha</AUni> -<AUni ws="qvm-x-akh">*llamcha</AUni> -<AUni ws="qvm-x-akl">*llamcha</AUni> -<AUni ws="qvm-x-ame">*llamcha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.134" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dda3c38e-45a0-44b2-bd02-9243b7f0a442" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llamcha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c4fd105f-2da4-4c48-99f5-84165a31aadc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="baa950c0-5e0a-40c4-98c9-d5141f1f72aa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llamcha 
\entryTyp root 
\gENG strip 
\gSPN descascarar 
\e *llamcha 
\c V2 
\ach lamtsa 
\akh lamtsa 
\acl lamtsa 
\akl lamtsa 
\ame lamtsa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="4373a172-2ddf-4320-b0ef-079cb270d1d1" ownerguid="20694d1a-2637-46ee-a27b-56f7347b15d3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="29c1c11c-535c-4c66-958e-5438568a35c5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="4375d9f7-09eb-4ad1-8104-c3d74c93ce8f" ownerguid="f0d22468-8e75-46b4-8034-bd8a8c1c873e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="4375f75f-1c74-4559-817b-772deb8e8777" ownerguid="85e286c1-1d60-4f0a-a2fa-d9c693f7b775"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">December</AUni> -<AUni ws="es">diciembre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="29508344-d298-4cb0-bfeb-a9b03c3918ea" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="43826ea1-2ce1-40e6-a553-836c312d441b" ownerguid="0bd3a443-92ec-4aba-9f6d-67e1ba8c2d94"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="4383b317-2430-4fa5-a40e-a43cbabb03fc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">palagar</AUni> -<AUni ws="qvm-x-acl">palagar</AUni> -<AUni ws="qvm-x-akh">palagar</AUni> -<AUni ws="qvm-x-akl">palagar</AUni> -<AUni ws="qvm-x-ame">palagar</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+paladar</AUni> -<AUni ws="qvm-x-acl">+paladar</AUni> -<AUni ws="qvm-x-akh">+paladar</AUni> -<AUni ws="qvm-x-akl">+paladar</AUni> -<AUni ws="qvm-x-ame">+paladar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.658" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="825a20b7-f635-47f2-9f02-0ace389a451d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+paladar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="857c3d5d-7fda-4b92-8f6b-d60a4dc87cb2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b7281bba-888d-44f8-844a-620419417918" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +paladar 
\entryTyp root 
\gENG 
\gSPN 
\e +paladar 
\c N0 
\mp +FinalC 
\ach palagar 
\akh palagar 
\acl palagar 
\akl palagar 
\ame palagar</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="43848228-1b74-4d32-a279-c6826f9190fd" ownerguid="a104adb9-9e74-4130-aee8-072da2a9ac22"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="93fde103-45c1-4fec-9a5f-3ab9d7992f4c" t="o" /> -<objsur guid="ce68937b-de97-4335-a96d-e0158093a2a5" t="o" /> -<objsur guid="22b66ef5-8dc8-4f64-8303-181efaf665c1" t="o" /> -<objsur guid="0aa14179-fcb2-4311-8cf4-6a844b389b3c" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="4385b9bf-35d5-413d-b7bb-239a67cf8843" ownerguid="99ee1558-34b2-4a1b-bfd2-eb4ccbfe7728"> -<ExampleWords> -<AUni ws="en">rely on, depend on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to relying on someone to do something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4386a7fb-da26-446f-a1ef-827ce0f78951"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cane:la</AUni> -<AUni ws="qvm-x-acl">cane:la</AUni> -<AUni ws="qvm-x-akh">cane:la</AUni> -<AUni ws="qvm-x-akl">cane:la</AUni> -<AUni ws="qvm-x-ame">cane:la</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+canela</AUni> -<AUni ws="qvm-x-acl">+canela</AUni> -<AUni ws="qvm-x-akh">+canela</AUni> -<AUni ws="qvm-x-akl">+canela</AUni> -<AUni ws="qvm-x-ame">+canela</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.410" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3c214f4f-39dd-44d7-b39d-5d2739bf6748" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+canela</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c759e8cb-9b5d-4eef-860c-79a8793fb6a2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="926e9d28-087e-4600-beda-f5f83ead9b47" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +canela 
\entryTyp root 
\gENG cinammon 
\gSPN canela 
\e +canela 
\c N0 
\ach cane:la 
\akh cane:la 
\acl cane:la 
\akl cane:la 
\ame cane:la</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="43873b41-c559-435d-ad89-ffab5c2448eb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">vi:nu</AUni> -<AUni ws="qvm-x-acl">vi:nu; vi:nu; vi:no</AUni> -<AUni ws="qvm-x-akh">vi:nu</AUni> -<AUni ws="qvm-x-akl">vi:nu; vi:nu; vi:no</AUni> -<AUni ws="qvm-x-ame">vi:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vino</AUni> -<AUni ws="qvm-x-acl">+vino</AUni> -<AUni ws="qvm-x-akh">+vino</AUni> -<AUni ws="qvm-x-akl">+vino</AUni> -<AUni ws="qvm-x-ame">+vino</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.404" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c66aeb13-2604-4097-8f50-c8232255d314" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vino</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ab520d54-2664-4dda-945e-d025f7bf6bb8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="47094c18-8b83-41b8-88dd-fc64d907862d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vino 
\entryTyp root 
\gENG wine 
\gSPN vino 
\e +vino 
\c N0 
\ach vi:nu 
\akh vi:nu 
\acl vi:nu / _# 
\acl vi:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl vi:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl vi:nu / _# 
\akl vi:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl vi:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame vi:nu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="43880891-0aaf-451e-90d9-f717201a753a" ownerguid="18836c56-2f51-46ba-85b6-479df30fd057"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">place</AUni> -<AUni ws="es">sitio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d7595222-ceb3-4cd7-b45c-b3320e555a79" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="438b92df-f32b-4b69-a29c-0d3cfb05e51f" ownerguid="bd9bb361-3c12-4c70-8098-40b0df9824ce"> -<ExampleWords> -<AUni ws="en">lack respect, show disrespect, disrespectful, dishonor, despise</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a lack of respect?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="438d8a21-78f6-426e-9227-3eb03aa0c708" ownerguid="50ac28ab-7385-408f-b5eb-3e27b191fcf4"> -<ExampleWords> -<AUni ws="en">publish, engrave, in print, out of print, copyright, censor, censorship, desktop publishing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to making books?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="43908409-7850-4ff3-88d3-9c5001f93263" ownerguid="5e7a5899-df78-4aa7-bec9-b354acfe087f"> -<ExampleWords> -<AUni ws="en">mail, post, post office, stamp, postman, postal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the postal system?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="43909f8c-4f58-41fb-88a1-92d9f3c8ebce" ownerguid="6e480c94-c45a-442e-a8fd-e63511df6b3a"> -<Form> -<AUni ws="qvm-x-ach">quirun</AUni> -<AUni ws="qvm-x-acl">quirun</AUni> -<AUni ws="qvm-x-akh">kirun</AUni> -<AUni ws="qvm-x-akl">kirun</AUni> -<AUni ws="qvm-x-ame">kirun</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="4390e993-552f-417f-a6ab-1d7ee15bb530"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gowa</AUni> -<AUni ws="qvm-x-acl">gowa</AUni> -<AUni ws="qvm-x-akh">qowa</AUni> -<AUni ws="qvm-x-akl">qowa</AUni> -<AUni ws="qvm-x-ame">quwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qusa</AUni> -<AUni ws="qvm-x-acl">*qusa</AUni> -<AUni ws="qvm-x-akh">*qusa</AUni> -<AUni ws="qvm-x-akl">*qusa</AUni> -<AUni ws="qvm-x-ame">*qusa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.880" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5405f561-9b73-4f01-b6ad-7a915540e860" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qusa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9e0d923f-300b-4061-afdd-0284966a7647" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9a7e6399-c3b1-4e1b-936a-856d09a944a7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qusa 
\entryTyp root 
\gENG husband 
\gSPN esposo 
\e *qusa 
\c N0 
\ach gowa 
\akh qowa 
\acl gowa 
\akl qowa 
\ame quwa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="4393bba7-a130-4a6e-9c6f-17725a5cc9b9" ownerguid="354216f5-0435-4252-8ac9-55c718c2c6a9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">swallow</AUni> -<AUni ws="es">tragar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e49a1b88-5374-4924-bd40-f3bdca89eb9f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4393f7ba-66ed-4ab4-8c03-246ce56ea6ea" ownerguid="e949f393-2a5b-4792-af8f-75138322ceee"> -<ExampleWords> -<AUni ws="en">fit, physically fit, athletic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe someone who can work or run for a long time?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="439cc8c7-7109-4d49-8091-7fff68338f16"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ajaa</AUni> -<AUni ws="qvm-x-acl">ajaa</AUni> -<AUni ws="qvm-x-akh">ajaa</AUni> -<AUni ws="qvm-x-akl">ajaa</AUni> -<AUni ws="qvm-x-ame">ahaa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ahaa</AUni> -<AUni ws="qvm-x-acl">*ahaa</AUni> -<AUni ws="qvm-x-akh">*ahaa</AUni> -<AUni ws="qvm-x-akl">*ahaa</AUni> -<AUni ws="qvm-x-ame">*ahaa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.669" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2771f533-e3b5-4ddf-80b1-6014cb18a067" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ahaa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8d3f390d-350e-432c-b8f0-2055981c2771" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a460ff54-b604-4119-b66e-1e008a0a4ed5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ahaa 
\entryTyp root 
\gENG ahaa 
\gSPN ajaa 
\e *ahaa 
\c V1 
\ach ajaa 
\akh ajaa 
\acl ajaa 
\akl ajaa 
\ame ahaa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="439ee5a8-4246-479e-8d14-10cff381797a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uniformi; uniforme</AUni> -<AUni ws="qvm-x-acl">uniformi; uniformi; uniforme</AUni> -<AUni ws="qvm-x-akh">uniformi; uniforme</AUni> -<AUni ws="qvm-x-akl">uniformi; uniformi; uniforme</AUni> -<AUni ws="qvm-x-ame">uniformi; uniforme</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+uniforme</AUni> -<AUni ws="qvm-x-acl">+uniforme</AUni> -<AUni ws="qvm-x-akh">+uniforme</AUni> -<AUni ws="qvm-x-akl">+uniforme</AUni> -<AUni ws="qvm-x-ame">+uniforme</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.231" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="441e2574-cd06-426c-911d-848ace780cbd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+uniforme</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="93006b52-1d87-461d-a8d2-f7e4ef8e7cd8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ded4e3b9-2990-40da-8a45-c94737702790" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +uniforme 
\entryTyp root 
\gENG 
\gSPN 
\e +uniforme 
\c N0 
\mp +FinalI 
\ach uniformi / ~_# 
\ach uniforme / _# 
\akh uniformi / ~_# 
\akh uniforme / _# 
\acl uniformi / ~_# 
\acl uniformi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl uniforme +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl uniformi / ~_# 
\akl uniformi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl uniforme +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame uniformi / ~_# 
\ame uniforme / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="43a1301a-3ecd-4a1d-ac86-fa7a90148b5c" ownerguid="2c7cb499-562d-4b42-8f26-e3317e0f4c69"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9f05ab60-9e24-4a73-a583-840b0c28beab" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">wind</AUni> -<AUni ws="es">dar.cuerda</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b20fa758-fe17-43d6-bdf2-528ee8706e9a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="43a42f93-17ce-4b2b-bb9d-79655d9ec43d" ownerguid="314d6c78-0f1a-4454-baac-07ab4c94b271"> -<Form> -<AUni ws="qvm-x-ach">voz</AUni> -<AUni ws="qvm-x-acl">voz</AUni> -<AUni ws="qvm-x-akh">voz</AUni> -<AUni ws="qvm-x-akl">voz</AUni> -<AUni ws="qvm-x-ame">voz</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="43a692af-46d8-4b35-8cfa-8522901487cf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ti</AUni> -<AUni ws="qvm-x-acl">ti; ti; te</AUni> -<AUni ws="qvm-x-akh">ti</AUni> -<AUni ws="qvm-x-akl">ti; ti; te</AUni> -<AUni ws="qvm-x-ame">ti</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.477" /> -<DateModified val="2022-10-16 15:15:32.486" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="51895bae-ad96-4beb-abc8-21b9aa5204d5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">ALL.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9b413f6f-f64e-49ae-a71a-a0ac12ad56f8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7178229f-f42d-4301-a777-9c6811e0cca6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx ALL.1 
\entryTyp suffix 
\gENG ALL.1 
\gSPN TODO.1 
\e ALL.1 
\c V1/N0 N0/N0 
\o 120 
\mp +foreshortens 
\ach ti 
\akh ti 
\acl ti / _# 
\acl ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ti / _# 
\akl ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ti 
\mp +FinalI 
\mcc ALL.1 / 1O ~_ 
\mcc ALL.1 / ~_ PRT2 
\mcc ALL.1 / ~_ 3P.V 
\mcc ALL.1 / ~_ 1P.V 
\mcc ALL.1 / ~_ 2P.I 
\mcc ALL.1 / ~_ 12P.VC</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="43a6dc11-4a78-4102-a51d-3b14ce7b77d1" ownerguid="8596f086-ee46-4245-8d45-2171a60e19e4"> -<ExampleWords> -<AUni ws="en">contact, be in contact, touch, rest against, up against, together, end to end</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to two things touching each other?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="43a6e00c-6214-4193-94b7-73e5a4a092c9" ownerguid="6ed67bed-4755-4ff6-8325-091d6c82186d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="43a921aa-5292-47e3-bb5f-b2596ea68aef" ownerguid="8fed77b0-d483-4c2b-bfec-7c5bfbf3881b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dust</AUni> -<AUni ws="es">polvo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d60eb785-6b10-4814-a1a2-dfb90a4ac7b0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="43a9a384-9c57-4480-9b6b-2b08cb39d770" ownerguid="84a414bb-8b0a-4d50-a453-ac463e0aaa61"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="4876b8f4-604a-47b3-802f-918d18f32fde" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="23934c3d-229c-47b4-b679-27988bc667df" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="43af89b4-ad83-4e01-95c7-1b36080739c7" ownerguid="df2b9d7a-9b90-4704-8bc3-11dcffe985f4"> -<ExampleWords> -<AUni ws="en">goose flesh, goose pimples, goose bumps</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to the small bumps on your skin when you are cold, ill, or frightened?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="43b1b97b-7035-49eb-9269-84469f4bfbf4" ownerguid="7c234ccc-0dbe-42b0-a377-db99ebd2b51e"> -<ExampleWords> -<AUni ws="en">circus, cockfight, bullfight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What special events feature animals?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="43b25254-41d7-42e1-8877-87ac5fee5dcc" ownerguid="1e159a3c-16cf-444d-ade8-cf66c98c1826"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">session</AUni> -<AUni ws="es">sesión</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cd682493-6d1e-437c-bbd8-1115ace13617" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="43b31821-3238-491f-aa7c-651e534d9c47"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">destina</AUni> -<AUni ws="qvm-x-acl">destina</AUni> -<AUni ws="qvm-x-akh">destina</AUni> -<AUni ws="qvm-x-akl">destina</AUni> -<AUni ws="qvm-x-ame">destina</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+destinar</AUni> -<AUni ws="qvm-x-acl">+destinar</AUni> -<AUni ws="qvm-x-akh">+destinar</AUni> -<AUni ws="qvm-x-akl">+destinar</AUni> -<AUni ws="qvm-x-ame">+destinar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.396" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="302fe325-5326-4de6-bec0-4bf3d460e23c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+destinar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d82d5b71-1dfe-4512-b7de-bc7bedb77434" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7cd5077b-20b8-4f14-b7b3-f7e2ced1997a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +destinar 
\entryTyp root 
\gENG destine 
\gSPN destinar 
\e +destinar 
\c V2 
\ach destina 
\akh destina 
\acl destina 
\akl destina 
\ame destina</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="43b3a433-9f89-442a-8d9e-15013afb1e5b" ownerguid="dcbfb374-33ae-4520-99d4-233644bd7eb4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="43b940dd-883e-4e69-b3d3-5d576b435990"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">urgenti; urgente</AUni> -<AUni ws="qvm-x-acl">urgenti; urgente; urgenti</AUni> -<AUni ws="qvm-x-akh">urgenti; urgente</AUni> -<AUni ws="qvm-x-akl">urgenti; urgente; urgenti</AUni> -<AUni ws="qvm-x-ame">urgenti; urgente</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+urgente</AUni> -<AUni ws="qvm-x-acl">+urgente</AUni> -<AUni ws="qvm-x-akh">+urgente</AUni> -<AUni ws="qvm-x-akl">+urgente</AUni> -<AUni ws="qvm-x-ame">+urgente</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.271" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="837937fe-b166-4c68-a2db-8205b98c1dc6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+urgente</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="087a9c5b-b1f8-4e6b-a050-8ae8347b80a0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="48676727-e968-49af-9d2b-daa1070e9418" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +urgente 
\entryTyp root 
\gENG 
\gSPN 
\e +urgente 
\c R0 
\mp +FinalI 
\ach urgenti / ~_# 
\ach urgente / _# 
\akh urgenti / ~_# 
\akh urgente / _# 
\acl urgenti / _# 
\acl urgente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl urgenti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl urgenti / _# 
\akl urgente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl urgenti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame urgenti / ~_# 
\ame urgente / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="43b993a1-9fb1-48e7-831d-0c6b61a1b5c9" ownerguid="3827d809-6a03-4428-8693-d7b403c10e7f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="43bdb771-3fa8-4661-81b9-c48892d044b0" ownerguid="47e4b48f-7259-4ca7-abb1-f52c974bfc84"> -<Form> -<AUni ws="qvm-x-ach">shapshapya; shapshapyä</AUni> -<AUni ws="qvm-x-acl">shapshapya; shapshapyä</AUni> -<AUni ws="qvm-x-akh">shapshapya; shapshapyä</AUni> -<AUni ws="qvm-x-akl">shapshapya; shapshapyä</AUni> -<AUni ws="qvm-x-ame">shapshapya; shapshapyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="43c44a23-e71b-4ff3-b208-f72d89c5b577"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">conciencia</AUni> -<AUni ws="qvm-x-acl">conciencia</AUni> -<AUni ws="qvm-x-akh">conciencia</AUni> -<AUni ws="qvm-x-akl">conciencia</AUni> -<AUni ws="qvm-x-ame">conciencia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+conciencia.1</AUni> -<AUni ws="qvm-x-acl">+conciencia.1</AUni> -<AUni ws="qvm-x-akh">+conciencia.1</AUni> -<AUni ws="qvm-x-akl">+conciencia.1</AUni> -<AUni ws="qvm-x-ame">+conciencia.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.162" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d10dfb82-f169-4e5b-b834-c45a82ea65fa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+conciencia.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="93ac05e1-c8f7-4023-a911-36c9304994ad" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="342a2fee-0577-4e7f-b2e8-b44afa961ba3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +conciencia.1 
\entryTyp root 
\gENG conscience 
\gSPN conciencia 
\e +conciencia.1 
\c N0 
\ach conciencia 
\akh conciencia 
\acl conciencia 
\akl conciencia 
\ame conciencia</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="43c796a1-b15a-4bb5-80f3-df7c60b7db01" ownerguid="3885231e-8b18-4da3-af76-c75e8b731ed8"> -<ExampleWords> -<AUni ws="en">pick up, take, get</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to picking something up?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="43cb3488-711b-4d9d-9d0e-03d0c1f6eb8b" ownerguid="da39c0d9-a5c1-4f10-bd3b-4e988abcab5a"> -<Abbreviation> -<AUni ws="en">3.4.2.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.143" /> -<DateModified val="2022-9-23 16:55:8.143" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling ashamed--to feel bad because people think you did something bad.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25R Shame, Disgrace, Humiliation; 88T Act Shamefully</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Ashamed</AUni> -</Name> -<Questions> -<objsur guid="ff6a2cad-80b3-4b7d-84db-bb4d65a41823" t="o" /> -<objsur guid="491a434f-9a3f-4a06-a86d-27d13d2b8e4a" t="o" /> -<objsur guid="15b9eff1-34df-4fa3-9270-095917eb7266" t="o" /> -<objsur guid="3590bdfb-1aca-4060-8ea8-e477cced2fa2" t="o" /> -<objsur guid="6a11c415-f7f8-4c97-a915-0bbe78c4761c" t="o" /> -<objsur guid="18e5c604-25d6-4281-95c4-0920ba3a4ca8" t="o" /> -<objsur guid="44cbbb19-8c69-4608-ba80-2546da7f6267" t="o" /> -<objsur guid="4ad7622e-ae12-45db-91ca-a679667d4a13" t="o" /> -<objsur guid="7d6e84f0-20ab-45b0-9f30-696c2fc2b72e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="43cf709a-7ddc-4df9-92c5-ea50feababbe" ownerguid="101c16f8-ec76-4ec7-895a-fd814fef51dd"> -<ExampleWords> -<AUni ws="en">give someone treatment, treat, treatment, medical treatment, therapy, therapeutic, medical procedure, rehabilitation, medical aid, first aid, go to the aid of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to treating someone who is sick or injured?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="43d1bf5f-8105-4ae5-ac43-5b7649c64552" ownerguid="c0e232e4-df59-4033-85e4-4c55de8720e1" /> -<rt class="MoStemMsa" guid="43d1e2f6-9b07-4f12-bdba-17aecac82d49" ownerguid="59bd1a58-be99-4685-acf7-9f17bac9c430"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="43d5f6c6-0566-4851-b8a4-84458965e912" ownerguid="5765f05e-0589-4c90-98bc-0219b3af292b"> -<Form> -<AUni ws="qvm-x-ach">carbón; carbon</AUni> -<AUni ws="qvm-x-acl">carbón; carbon</AUni> -<AUni ws="qvm-x-akh">carbón; carbon</AUni> -<AUni ws="qvm-x-akl">carbón; carbon</AUni> -<AUni ws="qvm-x-ame">carbón; carbon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="43d75b24-809e-44a7-a635-cb2edc31bd1d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">raspi</AUni> -<AUni ws="qvm-x-acl">raspi; raspi; raspe</AUni> -<AUni ws="qvm-x-akh">raspi</AUni> -<AUni ws="qvm-x-akl">raspi; raspi; raspe</AUni> -<AUni ws="qvm-x-ame">raspi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*raspi</AUni> -<AUni ws="qvm-x-acl">*raspi</AUni> -<AUni ws="qvm-x-akh">*raspi</AUni> -<AUni ws="qvm-x-akl">*raspi</AUni> -<AUni ws="qvm-x-ame">*raspi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.277" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b51e001a-6b36-4eaf-8e14-486207f69ac6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*raspi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="84a56a35-dfc4-42b7-8d46-ca0730575b68" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="15a4b24f-d304-4b7d-8d1f-81cf6ed709ae" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *raspi 
\entryTyp root 
\gENG 
\gSPN a.las.justas 
\e *raspi 
\c R0 
\mp +FinalI 
\ach raspi 
\akh raspi 
\acl raspi / _# 
\acl raspi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl raspe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl raspi / _# 
\akl raspi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl raspe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame raspi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="43d8810f-928e-404a-b5af-01ed8e07aeb2" ownerguid="653dbbd5-0bc8-4c89-b563-2ce36c18cdf6"> -<Form> -<AUni ws="qvm-x-ach">shicwa</AUni> -<AUni ws="qvm-x-acl">shicwa</AUni> -<AUni ws="qvm-x-akh">shikwa</AUni> -<AUni ws="qvm-x-akl">shikwa</AUni> -<AUni ws="qvm-x-ame">shikwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="43dc9e35-0613-432c-9fee-5001d2e92467" ownerguid="9b62e5bc-6efd-4005-a445-e48f78c366b1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="051bfff3-6e63-48ef-9433-cd675f4f8ff5" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">scepter</AUni> -<AUni ws="es">bastón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="60202329-88f3-4c13-b5d8-12485c2014cf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="43dd6293-28be-49a1-89f1-422b07947fda"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">carni; carni</AUni> -<AUni ws="qvm-x-acl">carni; carni; carne</AUni> -<AUni ws="qvm-x-akh">carni; carni</AUni> -<AUni ws="qvm-x-akl">carni; carni; carne</AUni> -<AUni ws="qvm-x-ame">carni; carni</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+carnero.1</AUni> -<AUni ws="qvm-x-acl">+carnero.1</AUni> -<AUni ws="qvm-x-akh">+carnero.1</AUni> -<AUni ws="qvm-x-akl">+carnero.1</AUni> -<AUni ws="qvm-x-ame">+carnero.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.62" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bfdc347a-41d3-4f80-bd7c-2c566ba12e20" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+carnero.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4063e25b-10e3-42ed-9743-b28582001a65" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="65dd8e11-aaea-4a2c-b5d5-660be93b7b55" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +carnero.1 
\entryTyp root 
\gENG ram 
\gSPN carnero 
\e +carnero.1 
\c N0 
\mp +FinalI 
\ach carni / _# 
\ach carni / ~_# 
\akh carni / _# 
\akh carni / ~_# 
\acl carni / _# 
\acl carni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl carne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl carni / _# 
\akl carni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl carne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame carni / _# 
\ame carni / ~_# 
\i Gen 22.13 Tsaypita ticraycushgancho Abraham ricargan juc carni shiracacho tsaricashga caycagta. 
\mcc +carnero.1 / ~_ PRT2</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="43ded3bb-1a22-4585-bf11-0b66d2228911" ownerguid="e4517880-aa2d-4977-b55a-dcb0b6d1f533"> -<ExampleWords> -<AUni ws="en">beautiful, attractive, pretty, lovely, gorgeous, splendid, magnificent, stunning, superb, exquisite, elegant, artistic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that is beautiful?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="43e2f1e5-0bad-44d8-a79e-9e1044176d43" ownerguid="efbdc60d-47a8-4dbb-9da5-cc7a4894e935"> -<Form> -<AUni ws="qvm-x-ach">yali</AUni> -<AUni ws="qvm-x-acl">yali; yale</AUni> -<AUni ws="qvm-x-akh">yali</AUni> -<AUni ws="qvm-x-akl">yali; yale</AUni> -<AUni ws="qvm-x-ame">yali</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="43e5d83f-92e1-49ce-bc95-8d361afe88ca" ownerguid="8ad49531-ca06-44d4-9792-1a8730396f58"> -<Form> -<AUni ws="qvm-x-ach">chulgu</AUni> -<AUni ws="qvm-x-acl">chulgu; chulgu; chulgo</AUni> -<AUni ws="qvm-x-akh">chulqu</AUni> -<AUni ws="qvm-x-akl">chulqu; chulqu; chulqo</AUni> -<AUni ws="qvm-x-ame">chulqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="43e9931c-d63d-4fa4-934c-80870b1d2ccf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ripyu</AUni> -<AUni ws="qvm-x-acl">ripyu; ripyo</AUni> -<AUni ws="qvm-x-akh">ripyu</AUni> -<AUni ws="qvm-x-akl">ripyu; ripyo</AUni> -<AUni ws="qvm-x-ame">ripyu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ripiar</AUni> -<AUni ws="qvm-x-acl">+ripiar</AUni> -<AUni ws="qvm-x-akh">+ripiar</AUni> -<AUni ws="qvm-x-akl">+ripiar</AUni> -<AUni ws="qvm-x-ame">+ripiar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.368" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b15f10d8-9dd6-4179-a01a-e3d6ccd4febe" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ripiar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f9dd8bc0-a6ef-4677-9ed1-1afbac7b6834" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="78357148-43cc-4fc3-99ab-88ccfc8a46e6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ripiar 
\entryTyp root 
\gENG ? 
\gSPN ? 
\e +ripiar 
\c V1 
\ach ripyu 
\akh ripyu 
\acl ripyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ripyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ripyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ripyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ripyu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="43ea5cdd-d703-4530-956a-a32dc5aa617b" ownerguid="569c6e73-cd36-4a45-94b4-5d3c0083ce73"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="43eb9bce-ca1f-4781-ba36-6f59bb7012e8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cara:ju</AUni> -<AUni ws="qvm-x-acl">cara:ju; cara:ju; cara:jo</AUni> -<AUni ws="qvm-x-akh">cara:ju</AUni> -<AUni ws="qvm-x-akl">cara:ju; cara:ju; cara:jo</AUni> -<AUni ws="qvm-x-ame">cara:ju</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+carajo</AUni> -<AUni ws="qvm-x-acl">+carajo</AUni> -<AUni ws="qvm-x-akh">+carajo</AUni> -<AUni ws="qvm-x-akl">+carajo</AUni> -<AUni ws="qvm-x-ame">+carajo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.520" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e56911ae-b405-425c-a51e-9118da8456da" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+carajo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dd58aab8-2f8b-4e23-8756-2a647584a83c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ffe8fe5b-2e84-4bf8-973a-d9d23a2c8beb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +carajo 
\entryTyp root 
\gENG exclamation 
\gSPN exclamación 
\e +carajo 
\c N0 
\ach cara:ju 
\akh cara:ju 
\acl cara:ju / _# 
\acl cara:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cara:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cara:ju / _# 
\akl cara:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cara:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cara:ju</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="43ec9472-059d-404a-8ad9-3dcdddf1ed36" ownerguid="0ac5e5f9-e7fe-4d37-a631-eab1ceb1f8ae"> -<ExampleWords> -<AUni ws="en">plateau, mesa, tableland</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a mountain with a flat top?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="43f2068d-1d84-48bb-bb97-3dd0a657f732" ownerguid="be68fa80-5f68-4870-a8d0-25830ebe0e74"> -<Form> -<AUni ws="qvm-x-ach">ananau</AUni> -<AUni ws="qvm-x-acl">ananau</AUni> -<AUni ws="qvm-x-akh">ananaw</AUni> -<AUni ws="qvm-x-akl">ananaw</AUni> -<AUni ws="qvm-x-ame">ananaw</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="43f7784d-72d5-413c-b0de-51c5263781b8" ownerguid="47ca0709-4df5-4faa-8f72-302922245f12"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="43ffda30-6aac-4c20-8ef6-61d9c0246950" ownerguid="ea8efa6f-3058-4008-9cc2-afa4bb11ab53"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">sucio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5e484986-7738-48d5-8b55-e5902f8d69d7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="44003c2e-c9c2-42c8-9ac1-8b40c11ba7f4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lamu</AUni> -<AUni ws="qvm-x-acl">lamu; lamo</AUni> -<AUni ws="qvm-x-akh">lamu</AUni> -<AUni ws="qvm-x-akl">lamu; lamo</AUni> -<AUni ws="qvm-x-ame">lamu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llamu.1</AUni> -<AUni ws="qvm-x-acl">*llamu.1</AUni> -<AUni ws="qvm-x-akh">*llamu.1</AUni> -<AUni ws="qvm-x-akl">*llamu.1</AUni> -<AUni ws="qvm-x-ame">*llamu.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.134" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c0a379b8-5709-4ce0-a753-b883e4f007b4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llamu.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9cbe80db-c38c-4ef2-83b9-3ca21c0be1f9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="26e1488c-d9d8-438a-870b-00ed6f26637b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llamu.1 
\entryTyp root 
\gENG flirt 
\gSPN coquetear 
\e *llamu.1 
\c V1 
\ach lamu 
\akh lamu 
\acl lamu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lamo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lamu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lamo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lamu</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="440276af-f1f6-4c39-8ffa-d88c37d3e7ee"> -<Form> -<Str> -<Run ws="en">17</Run> -</Str> -</Form> -</rt> -<rt class="CmSemanticDomain" guid="4405e74c-f64c-4609-8f7b-99ba563d659a" ownerguid="e7c58c11-2911-446a-96b0-2113247f3792"> -<Abbreviation> -<AUni ws="en">4.1.9.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.201" /> -<DateModified val="2022-9-23 16:55:8.201" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to adopting a child.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>35G Adopt</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Adopt</AUni> -</Name> -<OcmCodes> -<Uni>597 Adoption</Uni> -</OcmCodes> -<Questions> -<objsur guid="f7387a3f-2a9f-4837-a8d4-ba6d06fe7d6c" t="o" /> -<objsur guid="05b6e031-d26b-4927-b59d-b02fcc529c9b" t="o" /> -<objsur guid="db12b518-5db1-42c7-8891-7d8ae784b16e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="440608df-3c98-4dc8-9fd3-fad08afe7aef" ownerguid="8b9f23f4-a147-4ea8-a13a-c5b1edc7f5e4"> -<Abbreviation> -<AUni ws="en">7.3.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a limit beyond which something may or should not go, and for words referring to imposing a limit.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>80B Limits, Boundaries of Space</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Limit</AUni> -</Name> -<Questions> -<objsur guid="76cad815-7747-4b07-a123-967e9f4d842b" t="o" /> -<objsur guid="2b40ee2f-ccc6-4941-aa82-30354b401eb1" t="o" /> -<objsur guid="8e4e4743-7f78-4807-a9e6-041ee5a573a9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="44079ec4-4264-4d66-aece-2a72ac012fad" ownerguid="5fdf3946-7e47-4fd2-906f-4da7ce5fa490"> -<ExampleWords> -<AUni ws="en">answer, give an answer, reply, get back to, respond, acknowledge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to answering a question?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="44080016-486f-4ae9-9a62-11ad198835ec" ownerguid="ff08921e-f93c-4d2d-abda-b1fa76c32f18"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="4409214d-5c17-4b64-85e0-744035864253" ownerguid="f053aee4-2685-495f-bec4-8f64065cf855"> -<Form> -<AUni ws="qvm-x-ach">noviembri; noviembre</AUni> -<AUni ws="qvm-x-acl">noviembri; noviembri; noviembre</AUni> -<AUni ws="qvm-x-akh">noviembri; noviembre</AUni> -<AUni ws="qvm-x-akl">noviembri; noviembri; noviembre</AUni> -<AUni ws="qvm-x-ame">noviembri; noviembre</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="440bea58-d5df-486c-b3e2-bade7bef9cb6" ownerguid="a3c61773-dc65-4dc5-830f-6f921f3524ba"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="440c24c0-e87f-41e0-a3b7-3b4733a463e8" ownerguid="a13a84d6-c9c5-467a-bbb6-08a85e1e01c9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wash.head</AUni> -<AUni ws="es">lavar.cabeza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f2129bdc-43d2-4a75-b18f-881065f8a9f6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="440cd9c8-e4b2-4352-abcd-d754f138dd56" ownerguid="7d7bb92f-5baf-418e-8ad3-92cfdc3a8d41"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="d590103a-fbc1-4455-b9de-c6cbba25c713" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="307b69b0-c808-4356-a92b-9637e9139d8e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="4415172e-f4db-4b4d-919c-5ff95090df8e" ownerguid="955f2d12-877d-4c57-8b27-5a32a4a58ed4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="4415aff1-4d74-463e-a25d-9832c7477329" ownerguid="bb8ddf5f-707d-46c0-aff4-45683d26fd68"> -<Abbreviation> -<AUni ws="en">9.5.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that mark an instrument used to do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>90B Instrument</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Instrument</AUni> -</Name> -<Questions> -<objsur guid="e2a8dda6-d93b-49a0-bef9-1690ac69ed88" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="6342c8bf-55b5-400f-af7e-63055fe6813b" t="r" /> -<objsur guid="64493789-1c2c-4b24-a7e6-f00ff9be923e" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="4415f908-b544-436b-a241-784865c36719"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">golpi; golpe</AUni> -<AUni ws="qvm-x-acl">golpi; golpi; golpe</AUni> -<AUni ws="qvm-x-akh">golpi; golpe</AUni> -<AUni ws="qvm-x-akl">golpi; golpi; golpe</AUni> -<AUni ws="qvm-x-ame">golpi; golpe</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+golpe</AUni> -<AUni ws="qvm-x-acl">+golpe</AUni> -<AUni ws="qvm-x-akh">+golpe</AUni> -<AUni ws="qvm-x-akl">+golpe</AUni> -<AUni ws="qvm-x-ame">+golpe</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.619" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1a123212-4517-4938-a074-30d0860cbe5e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+golpe</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c0719f6a-1765-4cc4-815c-ac3bce98acd0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a84f914e-b2e4-4571-bc2b-ef476d3af0f3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +golpe 
\entryTyp root 
\gENG bruise 
\gSPN +golpe 
\e +golpe 
\c N0 
\mp +FinalI 
\ach golpi / ~_# 
\ach golpe / _# 
\akh golpi / ~_# 
\akh golpe / _# 
\acl golpi / ~_# 
\acl golpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl golpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl golpi / ~_# 
\akl golpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl golpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame golpi / ~_# 
\ame golpe / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4416727b-c725-4e1f-b367-05c9ddbc3c61" ownerguid="398ffed0-bfa7-452c-8521-7d37b3082dcf"> -<ExampleWords> -<AUni ws="en">overburdened, worn</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who works too hard?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4418496c-c969-4a59-ad37-cccf989c0e5f" ownerguid="c606feb2-920e-4f73-bb06-8a0ab1e0b5ea"> -<Form> -<AUni ws="qvm-x-ach">pulpa</AUni> -<AUni ws="qvm-x-acl">pulpa</AUni> -<AUni ws="qvm-x-akh">pulpa</AUni> -<AUni ws="qvm-x-akl">pulpa</AUni> -<AUni ws="qvm-x-ame">pulpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="441e2574-cd06-426c-911d-848ace780cbd" ownerguid="439ee5a8-4246-479e-8d14-10cff381797a"> -<Form> -<AUni ws="qvm-x-ach">uniformi; uniforme</AUni> -<AUni ws="qvm-x-acl">uniformi; uniformi; uniforme</AUni> -<AUni ws="qvm-x-akh">uniformi; uniforme</AUni> -<AUni ws="qvm-x-akl">uniformi; uniformi; uniforme</AUni> -<AUni ws="qvm-x-ame">uniformi; uniforme</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="441f9368-35e9-496a-b4f4-e475db4f5d38"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">censu; censo</AUni> -<AUni ws="qvm-x-acl">censu; censu; censo</AUni> -<AUni ws="qvm-x-akh">censu; censo</AUni> -<AUni ws="qvm-x-akl">censu; censu; censo</AUni> -<AUni ws="qvm-x-ame">censu; censo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+censo</AUni> -<AUni ws="qvm-x-acl">+censo</AUni> -<AUni ws="qvm-x-akh">+censo</AUni> -<AUni ws="qvm-x-akl">+censo</AUni> -<AUni ws="qvm-x-ame">+censo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.102" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fbbb6db7-ec5f-4c97-a8dc-3d617de55c32" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+censo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eb55ed0e-f488-44c8-a15f-b1bc3b011985" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="754c35a6-eb7d-40df-858f-4937e0186a08" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +censo 
\entryTyp root 
\gENG 
\gSPN 
\e +censo 
\c N0 
\ach censu / ~_# 
\ach censo / _# 
\akh censu / ~_# 
\akh censo / _# 
\acl censu / ~_# 
\acl censu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl censo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl censu / ~_# 
\akl censu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl censo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame censu / ~_# 
\ame censo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="442187d0-2263-46be-834b-68d7bca12316" ownerguid="cc09a97f-555a-4d8e-aaef-b9365fffb0c4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">order</AUni> -<AUni ws="es">mando</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6b7b6d67-3fe2-4930-b1ea-ce760b8b70b1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="44236418-c5d0-44d9-b5c1-94fca40d97ce"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ishcay</AUni> -<AUni ws="qvm-x-acl">ishcay</AUni> -<AUni ws="qvm-x-akh">ishkay</AUni> -<AUni ws="qvm-x-akl">ishkay</AUni> -<AUni ws="qvm-x-ame">ishkay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ishkay</AUni> -<AUni ws="qvm-x-acl">*ishkay</AUni> -<AUni ws="qvm-x-akh">*ishkay</AUni> -<AUni ws="qvm-x-akl">*ishkay</AUni> -<AUni ws="qvm-x-ame">*ishkay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.850" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c1eb2557-31b5-4111-8b24-ecb7862def99" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ishkay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0cf492ae-6cf0-40c0-80d8-763443288627" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9e06fe94-7cd9-40d9-b715-d3120ff1c3e4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ishkay 
\entryTyp root 
\gENG two 
\gSPN dos 
\e *ishkay 
\c N0 
\mp +FinalC 
\ach ishcay 
\akh ishkay 
\acl ishcay 
\akl ishkay 
\ame ishkay</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="44236cb4-1b2c-4919-b2d7-612342924248" ownerguid="644f0c8f-8385-4b09-8494-923025f5d637"> -<Form> -<AUni ws="qvm-x-ach">lili</AUni> -<AUni ws="qvm-x-acl">lili; lili; lile</AUni> -<AUni ws="qvm-x-akh">lili</AUni> -<AUni ws="qvm-x-akl">lili; lili; lile</AUni> -<AUni ws="qvm-x-ame">lili</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4424f893-ae9b-4ebc-97b4-eced0072bdd3" ownerguid="cd6f1b37-5bdd-4237-8827-b1c947c8e1b4"> -<ExampleWords> -<AUni ws="en">translucent, frosted, cloudy, clouded, hazy, dim, unclear, vague, foggy, smoky, indistinct, faint, misty, muddy, shadowy, turbid</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that light shines through but you can't see through clearly?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="442784f7-6d63-4427-af68-26eafc3cb306" ownerguid="b602c0e1-5398-4cc9-850b-7cfb5c592d13"> -<ExampleWords> -<AUni ws="en">blindness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the condition of being blind?</AUni> -</Question> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="44290eac-98c5-4f10-84b2-20bacedcab79" ownerguid="9f78c5f9-4700-43c3-8f06-ce023673dc01" /> -<rt class="LexEntry" guid="442bfc0c-557f-4857-8f9b-2f3321c9fd06"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shuntu</AUni> -<AUni ws="qvm-x-acl">shuntu; shuntu; shunto</AUni> -<AUni ws="qvm-x-akh">shuntu</AUni> -<AUni ws="qvm-x-akl">shuntu; shuntu; shunto</AUni> -<AUni ws="qvm-x-ame">shuntu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shuntu</AUni> -<AUni ws="qvm-x-acl">*shuntu</AUni> -<AUni ws="qvm-x-akh">*shuntu</AUni> -<AUni ws="qvm-x-akl">*shuntu</AUni> -<AUni ws="qvm-x-ame">*shuntu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.642" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bad6895f-2d13-4784-a168-acbbab16f563" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shuntu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5433cac9-0eaf-4789-863b-fda377b7d0b9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e710b1eb-41f4-47a8-b78e-2512ec2e0263" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shuntu 
\entryTyp root 
\gENG spindle 
\gSPN huso 
\e *shuntu 
\c N0 
\ach shuntu 
\akh shuntu 
\acl shuntu / _# 
\acl shuntu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shunto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shuntu / _# 
\akl shuntu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shunto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shuntu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="442cf27f-21ef-44cb-9e4d-6f263793ce61" ownerguid="3d5d93ce-00e0-46ff-b220-553c12c38381"> -<ExampleWords> -<AUni ws="en">sanitary towel, sanitary napkin, tampon, pad, menstrual cloth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What materials are used by women to absorb the discharge?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4432a27f-1c8e-44fb-b9cc-d556bbb57851" ownerguid="c221b7f9-d102-4dfe-83b0-de944357b91d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="4432db51-bbe3-46fc-9b3c-92fa775d8a7c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tranca</AUni> -<AUni ws="qvm-x-acl">tranca</AUni> -<AUni ws="qvm-x-akh">tranca</AUni> -<AUni ws="qvm-x-akl">tranca</AUni> -<AUni ws="qvm-x-ame">tranca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+trancar</AUni> -<AUni ws="qvm-x-acl">+trancar</AUni> -<AUni ws="qvm-x-akh">+trancar</AUni> -<AUni ws="qvm-x-akl">+trancar</AUni> -<AUni ws="qvm-x-ame">+trancar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.58" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="402956f3-e3b3-450e-ad60-3cd419aa8d22" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+trancar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="46218318-888b-49d8-9ae6-47262a1626fc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b77a0a5e-b4cc-4e17-b9e8-e024ea8ba2c5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +trancar 
\entryTyp root 
\gENG ? 
\gSPN tranquear 
\e +trancar 
\c V1 
\ach tranca 
\akh tranca 
\acl tranca 
\akl tranca 
\ame tranca</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4433420f-4e8c-471d-b64b-4d06433254ce" ownerguid="fd33670e-ef16-4566-a62e-aa077e58407b"> -<ExampleWords> -<AUni ws="en">blare, blast, outburst, outcry, report</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a sudden sound?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4436132f-7291-40e7-bb6d-690830eea3c1" ownerguid="4a18c381-84a9-484b-8727-f8e9244c3404"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">collect</AUni> -<AUni ws="es">recoger</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2f884421-8838-4f28-afcf-b828c57efebf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="443687e1-5e4c-4fd4-b53c-60addf440e2a" ownerguid="78a977cb-31d3-4a4a-b2a5-8cbbd69a7c6a"> -<Form> -<AUni ws="qvm-x-ach">prefectu; prefecto</AUni> -<AUni ws="qvm-x-acl">prefectu; prefectu; prefecto</AUni> -<AUni ws="qvm-x-akh">prefectu; prefecto</AUni> -<AUni ws="qvm-x-akl">prefectu; prefectu; prefecto</AUni> -<AUni ws="qvm-x-ame">prefectu; prefecto</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="443857d7-ea23-4280-aeef-e8540a02a8af"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tro:pa</AUni> -<AUni ws="qvm-x-acl">tro:pa</AUni> -<AUni ws="qvm-x-akh">tro:pa</AUni> -<AUni ws="qvm-x-akl">tro:pa</AUni> -<AUni ws="qvm-x-ame">tro:pa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tropa</AUni> -<AUni ws="qvm-x-acl">+tropa</AUni> -<AUni ws="qvm-x-akh">+tropa</AUni> -<AUni ws="qvm-x-akl">+tropa</AUni> -<AUni ws="qvm-x-ame">+tropa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.149" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="80d8b4a5-dce6-4586-b34a-01c89b4ccf64" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tropa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="04612026-2041-42fc-87b7-a695c598163e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="42ea5201-7e9c-4624-b9b4-0e7a470be696" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tropa 
\entryTyp root 
\gENG troop 
\gSPN tropa 
\e +tropa 
\c N0 
\ach tro:pa 
\akh tro:pa 
\acl tro:pa 
\akl tro:pa 
\ame tro:pa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="44389cb6-74e2-430d-a6ce-bad90fa52a46" ownerguid="684fe2fa-e37f-4ae7-b114-169ff276c1ed"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="443a4768-0441-4562-beda-476dbde6a3f5" ownerguid="32fc19fd-a04e-4b69-9442-f7d57348ec55"> -<ExampleWords> -<AUni ws="en">moo, low, bellow, snort</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What sounds do cows make?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="443a703b-ceb6-4e43-a6a6-62918e46293d" ownerguid="dc94635b-d56c-42e5-ab54-54b4a0f85166"> -<Form> -<AUni ws="qvm-x-ach">guellay</AUni> -<AUni ws="qvm-x-acl">guellay</AUni> -<AUni ws="qvm-x-akh">qellay</AUni> -<AUni ws="qvm-x-akl">qellay</AUni> -<AUni ws="qvm-x-ame">qillay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="443af387-a949-4f1e-93fb-dbc9a4bb875a" ownerguid="93b8bd61-137a-4ebc-b12f-52fa5d2b3ea4"> -<ExampleWords> -<AUni ws="en">intermittent, gusty, blustery</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a wind that comes and goes?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" ownerguid="5fa2d1bc-777b-49e4-bf4d-188dab771e54" /> -<rt class="LexSense" guid="443c75ec-e77f-449e-b5e6-9094f8287d87" ownerguid="5b3b77dc-0773-482d-a906-edb842914a6c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">landslide</AUni> -<AUni ws="es">derrumbe</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="658e88f6-7dd0-44bd-b964-2a49bcb92fca" t="r" /> -</MorphoSyntaxAnalysis> -<Custom name="Target Equivalent"> -<AStr ws="en"> -<Run ws="en">silfw://localhost/link?database%3dSouth+Conchucos%26tool%3dlexiconEdit%26guid%3dec1c8d76-3798-412e-8d83-957d4caff51b%26tag%3d</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="443c9bfa-87ea-4f13-b932-936c55ac306a" ownerguid="e6c9fe4c-199e-4934-b622-739a85b0830d"> -<ExampleWords> -<AUni ws="en">organize, dispose, structure, get together, get it together, get your act together, chart, marshal, put in a chart, put in a table, put in a matrix, sort, sort out, systematize, tabulate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to organizing things?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="443e261f-a765-4eb8-89bd-173dc332e4dc" ownerguid="c8c8b1f6-a898-4d5b-a1ce-fa7284915e8f"> -<ExampleWords> -<AUni ws="en">epidemic (of disease), forest/grass fire, storm, famine, plague (of insects), earthquake, war</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What types of disasters are there?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="443fdf7d-c80e-467b-b576-2ec5e015bb1b" ownerguid="7486c9ef-5a75-4a89-85ea-7065c61e4e4a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">public</AUni> -<AUni ws="es">público</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5f4999ae-804a-4ac7-8db3-07ca5ac1b343" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="4440d1d3-ee29-4201-b289-ffb7eba831b7" ownerguid="fb6c5e27-6fb5-4dac-ad1a-4a1d633df22e"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="44414653-42e8-48ca-80b2-08fa1036dc69" ownerguid="abe6286b-fca1-40cd-bfde-82eac17c4a4b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">widow</AUni> -<AUni ws="es">viuda</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="79bb539f-1e28-4b65-af45-945ba95b5719" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="4443080b-3ed8-4acc-bc77-35377eb52294"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">:du</AUni> -<AUni ws="qvm-x-acl">:du; :du; :do</AUni> -<AUni ws="qvm-x-akh">:du</AUni> -<AUni ws="qvm-x-akl">:du; :du; :do</AUni> -<AUni ws="qvm-x-ame">:du</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.558" /> -<DateModified val="2022-10-16 14:52:53.736" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f4edd3f4-35c8-4eb1-b300-bc490a9455f6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">PRTSPM1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f4b810ee-56db-4358-ad11-92d7676bd9e4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e6f2dce9-e515-45aa-aa4a-e6647828efa8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx PRTSPM1 
\entryTyp suffix 
\gENG PRTSPM1 
\gSPN PRTESM1 
\e PRTSPM1 
\c V1/N0 V2/N0 
\o 000 
\mp -PMonophthongizes 
\ach :du 
\akh :du 
\acl :du / _# 
\acl :du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl :do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl :du / _# 
\akl :du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl :do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame :du 
\mp +foreshortens 
\mcc PRTSPM1 / {+FinalLength} ~_</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="444407f2-0c75-4bb9-a84c-cbd52d0fa9c9" ownerguid="50db27b5-89eb-4ffb-af82-566f51c8ec0b"> -<Abbreviation> -<AUni ws="en">2.6.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a stage of life--a time period in a person's life.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Stage of life</AUni> -</Name> -<OcmCodes> -<Uni>145 Ontogenetic Data; 850 Infancy and Childhood; 880 Adolescence, Adulthood, and Old Age</Uni> -</OcmCodes> -<Questions> -<objsur guid="41c40d0b-2130-4302-8e10-ab9a8da5484a" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="79ca34ea-68a7-4fe9-b5ac-4f3d6a1ab99d" t="o" /> -<objsur guid="7d472dd5-636d-4499-bf66-83cf23c0dbe1" t="o" /> -<objsur guid="f74f28d1-8742-4c9f-95dc-d08336e91249" t="o" /> -<objsur guid="fc82fcec-d03c-4fb0-bf62-714c71754402" t="o" /> -<objsur guid="8fff393a-23c2-42bb-8da8-9b151e790904" t="o" /> -<objsur guid="f718fc15-59b2-4b6a-a9e3-39b3e8d487d7" t="o" /> -<objsur guid="adf6ad2b-7af9-4bd8-a7b4-f864b9dad86d" t="o" /> -<objsur guid="9e587127-4f2c-4796-9c67-d37332b57303" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="4445cccd-e9b9-4f25-9e8c-2ef58408297d" ownerguid="8a11e609-e88d-4247-8c5f-224ddb20de10"> -<Abbreviation> -<AUni ws="en">5.3.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.327" /> -<DateModified val="2022-9-23 16:55:8.327" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to wearing clothing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>49 Activities Involving Clothing and Adorning</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Wear clothing</AUni> -</Name> -<Questions> -<objsur guid="ad412fac-a62b-480b-b253-4c8d66218a5e" t="o" /> -<objsur guid="7c970668-e5ab-484f-a199-5d0f76fa2d44" t="o" /> -<objsur guid="2a57cafa-d4a3-4cb6-b7fe-437b373bdb29" t="o" /> -<objsur guid="08e5096a-de5f-4564-99d1-c0b87e3d84b2" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="444a01a0-f8a3-4e84-8aea-c9accfe7f0a0" ownerguid="f13ed73c-8b8d-4f97-a172-09f8f88d124f"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yanaparcö.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="444a4b3a-347d-4e9b-994c-5114f5ecc4dc" ownerguid="9b158c9e-9ba5-4be2-a9a1-77ef888a3b06"> -<ExampleWords> -<AUni ws="en">pure, pristine, sheer, solid, unadulterated, unblended, uncombined, uncompounded, undiluted, unmixed, unpolluted, untainted, 100%</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is pure?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="444d93a7-d896-4c50-871b-cbb18d3f7bb9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gru:pu</AUni> -<AUni ws="qvm-x-acl">gru:pu; gru:pu; gru:po</AUni> -<AUni ws="qvm-x-akh">gru:pu</AUni> -<AUni ws="qvm-x-akl">gru:pu; gru:pu; gru:po</AUni> -<AUni ws="qvm-x-ame">gru:pu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+grupo</AUni> -<AUni ws="qvm-x-acl">+grupo</AUni> -<AUni ws="qvm-x-akh">+grupo</AUni> -<AUni ws="qvm-x-akl">+grupo</AUni> -<AUni ws="qvm-x-ame">+grupo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.629" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="de83ecb6-4150-42a1-ac25-d619357a83c7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+grupo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="67d58613-7fc4-46da-8ebf-cef148ad8009" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2d9301f3-aeef-49d1-bbd8-9da536dd79af" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +grupo 
\entryTyp root 
\gENG group 
\gSPN 
\e +grupo 
\c N0 
\ach gru:pu 
\akh gru:pu 
\acl gru:pu / _# 
\acl gru:pu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gru:po +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl gru:pu / _# 
\akl gru:pu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl gru:po +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame gru:pu 
\i Num 1.52 Lapan Israel runacunaga bandëran cashgan cagchömi grüpunpa grüpunpa posädacärenga.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="44517993-980b-43b0-89bc-9fb27eb7aa3b" ownerguid="85b50531-5fc2-4a1b-9353-a36b8d62d308"> -<Form> -<AUni ws="qvm-x-ach">verruga</AUni> -<AUni ws="qvm-x-acl">verruga</AUni> -<AUni ws="qvm-x-akh">verruga</AUni> -<AUni ws="qvm-x-akl">verruga</AUni> -<AUni ws="qvm-x-ame">verruga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="4451aa09-44e4-49bc-9a0b-0e897b172173"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wira</AUni> -<AUni ws="qvm-x-acl">wira</AUni> -<AUni ws="qvm-x-akh">wira</AUni> -<AUni ws="qvm-x-akl">wira</AUni> -<AUni ws="qvm-x-ame">wira</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wira.v</AUni> -<AUni ws="qvm-x-acl">*wira.v</AUni> -<AUni ws="qvm-x-akh">*wira.v</AUni> -<AUni ws="qvm-x-akl">*wira.v</AUni> -<AUni ws="qvm-x-ame">*wira.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.678" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c4f5e56b-b871-473b-80fc-575b2e71d68a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wira.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="056d3bd4-db8f-4462-b997-81a92f863b85" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="be35fa70-bb74-4320-86a0-c1e999146d57" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wira.v 
\entryTyp root 
\gENG 
\gSPN 
\e *wira.v 
\c V1 
\ach wira 
\akh wira 
\acl wira 
\akl wira 
\ame wira 
\i AMO 4.12 Tsaynog carga wagtayquita wiracäriy shamur castiganäpag.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4453906e-ca8f-4c8c-9075-cf3be601957f" ownerguid="edbfc928-049c-4cb7-8c88-8e8af38287c7"> -<ExampleWords> -<AUni ws="en">fall in love, love at first sight, be swept off your feet, be interested in, fancy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to starting to love someone?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="44559b2b-48e0-4820-827c-0014c76e1158" ownerguid="d7740902-abdb-495f-9ea5-9b0a031144d3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">muchu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">muchu; mucho</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">muchu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">muchu; mucho</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">muchu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6d379b70-90c0-43c3-af94-5acc3bd0a821" t="r" /> -</Morph> -<Msa> -<objsur guid="56946af8-5f8f-4e94-bb10-1ff9b1e059cc" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="445944ec-03b1-49ee-8ae9-a9d6536f6248" ownerguid="67d74de1-33f9-4d39-8fa5-5dd27e7cd1d1"> -<ExampleWords> -<AUni ws="en">suspected (terrorist), be under suspicion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe someone who is suspected?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4459a3cc-68db-4e86-9065-b28d8087dc3e" ownerguid="ffcc57f8-6c6d-4bf4-85be-9220ca7c739d"> -<ExampleWords> -<AUni ws="en">married, marital, matrimonial, conjugal, nuptial, connubial</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words describe something having to do with marriage?</AUni> -</Question> -</rt> -<rt class="PartOfSpeech" guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" ownerguid="86ff66f6-0774-407a-a0dc-3eeaf873daf7"> -<Abbreviation> -<AUni ws="en">vi</AUni> -<AUni ws="es">vi</AUni> -</Abbreviation> -<AffixTemplates> -<objsur guid="5c9566c6-f995-489c-bae3-40530bd780e2" t="o" /> -<objsur guid="e4fcc681-0430-4a8f-8c20-accc2f56264a" t="o" /> -</AffixTemplates> -<BackColor val="0" /> -<CatalogSourceId> -<Uni>IntransitiveVerb</Uni> -</CatalogSourceId> -<DateCreated val="2022-09-23 18:31:53.648" /> -<DateModified val="2022-12-07 18:59:51.260" /> -<Description> -<AStr ws="en"> -<Run ws="en">An intransitive verb is a verb that cannot take a direct object, and describes a property, state, or situation involving only one participant.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Intransitive verb</AUni> -<AUni ws="es">Verbo intransitivo</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="445a6a9e-804d-4689-8fc0-06127c9643d9" ownerguid="cac1d7a8-7382-466e-ba4a-ba2bfe50f13b"> -<ExampleWords> -<AUni ws="en">program, article</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to programs and messages?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="445b765d-9425-49cf-a22b-31409217bc34" ownerguid="5dcf3ce8-aa00-4478-b00e-691549fa29e8"> -<ExampleWords> -<AUni ws="en">be selfish, think of nobody but yourself, self-centered, egocentric, look out for yourself, look out for number one</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to being selfish?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="445caa42-9ffd-48b3-831b-70e68fe81718"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cresta</AUni> -<AUni ws="qvm-x-acl">cresta</AUni> -<AUni ws="qvm-x-akh">cresta</AUni> -<AUni ws="qvm-x-akl">cresta</AUni> -<AUni ws="qvm-x-ame">cresta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cresta</AUni> -<AUni ws="qvm-x-acl">+cresta</AUni> -<AUni ws="qvm-x-akh">+cresta</AUni> -<AUni ws="qvm-x-akl">+cresta</AUni> -<AUni ws="qvm-x-ame">+cresta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.211" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6b8daebe-98f7-425d-91db-d2cfbea4a344" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cresta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="587c26e4-1a1f-4e00-9472-83d91163980b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2e79bcfb-cd27-4473-9eb0-44beec54c059" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cresta 
\entryTyp root 
\gENG crest 
\gSPN cresta 
\e +cresta 
\c N0 
\ach cresta 
\akh cresta 
\acl cresta 
\akl cresta 
\ame cresta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="445d2d3f-807f-4be1-8657-65e9869df12c" ownerguid="9c741043-0a48-40d1-8ba3-bb9c57d036a5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="445f3084-f250-40fa-87ba-ebd233f9018f" ownerguid="5e9f361d-17dc-4ada-a312-8da269d22a64"> -<Abbreviation> -<AUni ws="en">1.6.1.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.978" /> -<DateModified val="2022-9-23 16:55:7.978" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for mammals with few or no teeth--anteaters (phylum Chordata, class Mammalia, order Edentata), pangolins (phylum Chordata, class Mammalia, order Pholidota), aardvarks (phylum Chordata, class Mammalia, order Tubulidentata), and platypus--mammals that lay eggs (phylum Chordata, class Mammalia, order Monotremata).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Anteater, aardvark</AUni> -</Name> -<Questions> -<objsur guid="9be6b3df-887f-45b5-8f21-0ff238074edd" t="o" /> -<objsur guid="bdfb6bd2-ddf0-4ef7-bde9-2a788f4b7f2d" t="o" /> -<objsur guid="e98005c3-f911-4b41-b3e8-44e37b429d2c" t="o" /> -<objsur guid="7b4a5a86-6647-480b-b3be-aab3a295aeaf" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="4462464b-8800-4a30-b186-9c311be0c547" ownerguid="771e3882-f672-4e67-8580-edd82d7e5090"> -<ExampleWords> -<AUni ws="en">accommodating, benevolent, benign, caring, charitable, chivalrous, considerate, courteous, gentle, gracious, humane, kind, kindhearted, kindly, nice, obliging, thoughtful</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a person who does good to other people?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="4466969e-c86b-4570-931c-b36377271a06" ownerguid="ae7d2dd7-7c7d-4f25-90f6-ae153c694063"> -<Form> -<AUni ws="qvm-x-ach">päcu</AUni> -<AUni ws="qvm-x-acl">päcu</AUni> -<AUni ws="qvm-x-akh">päku</AUni> -<AUni ws="qvm-x-akl">päku</AUni> -<AUni ws="qvm-x-ame">päku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="446a4f64-d5ca-4ea1-9e48-a256a95e1149" ownerguid="b015f460-faeb-4aa5-b453-9e5e9ae061fe"> -<ExampleWords> -<AUni ws="en">old, customary, inveterate, passé, traditional, tried and true, well-trodden</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe an old fashioned idea or way of doing something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="44702807-231d-4b3d-98da-0c94acaa9bf3" ownerguid="179f5764-2b71-42d0-81d0-332e299ce94c"> -<Form> -<AUni ws="qvm-x-ach">waywash</AUni> -<AUni ws="qvm-x-acl">waywash</AUni> -<AUni ws="qvm-x-akh">waywash</AUni> -<AUni ws="qvm-x-akl">waywash</AUni> -<AUni ws="qvm-x-ame">waywash</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="44710b2b-dbd3-4cfd-abe6-cebf7e5605f9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nunaylu</AUni> -<AUni ws="qvm-x-acl">nunaylu; nunaylu; nunaylo</AUni> -<AUni ws="qvm-x-akh">nunaylu</AUni> -<AUni ws="qvm-x-akl">nunaylu; nunaylu; nunaylo</AUni> -<AUni ws="qvm-x-ame">nunaylu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*nunayllu</AUni> -<AUni ws="qvm-x-acl">*nunayllu</AUni> -<AUni ws="qvm-x-akh">*nunayllu</AUni> -<AUni ws="qvm-x-akl">*nunayllu</AUni> -<AUni ws="qvm-x-ame">*nunayllu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.578" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="127cd857-3b4d-4bf2-985e-b0709b988afa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*nunayllu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c9610bc9-b4a4-49c8-bae6-184d4afe53d5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1ec1b06e-41d5-45d6-ac8a-7d749b1d8d2e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *nunayllu 
\entryTyp root 
\gENG scarecrow 
\gSPN espantapájaros 
\e *nunayllu 
\c N0 
\ach nunaylu 
\akh nunaylu 
\acl nunaylu / _# 
\acl nunaylu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl nunaylo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl nunaylu / _# 
\akl nunaylu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl nunaylo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame nunaylu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="447136bb-7611-4d4f-b7eb-82e985927aec"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">isgun</AUni> -<AUni ws="qvm-x-acl">isgun</AUni> -<AUni ws="qvm-x-akh">isqun</AUni> -<AUni ws="qvm-x-akl">isqun</AUni> -<AUni ws="qvm-x-ame">isqun</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*isqun</AUni> -<AUni ws="qvm-x-acl">*isqun</AUni> -<AUni ws="qvm-x-akh">*isqun</AUni> -<AUni ws="qvm-x-akl">*isqun</AUni> -<AUni ws="qvm-x-ame">*isqun</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.862" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c8a4d9b1-8aec-4cb5-8f1c-1e10183bd164" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*isqun</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7030e221-a402-4383-beee-9607c2ce2981" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1ccdb873-e759-427c-b340-eef7176fbe78" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *isqun 
\entryTyp root 
\gENG nine 
\gSPN nueve 
\e *isqun 
\c N0 
\mp +FinalC 
\ach isgun 
\akh isqun 
\acl isgun 
\akl isqun 
\ame isqun</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="4475359d-8f1d-4112-a2a2-ef2985c7fd22" ownerguid="7ffaf94c-bfa2-4afc-b25a-246727eed01f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="4476049e-82b6-450c-8f66-c139e30eae9d" ownerguid="019e3b64-c68a-4b19-bec5-a22f4eb88f48"> -<ExampleWords> -<AUni ws="en">network, weaving</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to woven material?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4477a132-65fe-47cf-84b1-d66e695bf9eb" ownerguid="b9bcece5-a13a-487c-9517-ea7cb3b857a6"> -<Form> -<AUni ws="qvm-x-ach">pirgash</AUni> -<AUni ws="qvm-x-acl">pirgash</AUni> -<AUni ws="qvm-x-akh">pirqash</AUni> -<AUni ws="qvm-x-akl">pirqash</AUni> -<AUni ws="qvm-x-ame">pirqash</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="44798d07-57ef-4356-a81c-13cb8eb3e40b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">be:ta</AUni> -<AUni ws="qvm-x-acl">be:ta</AUni> -<AUni ws="qvm-x-akh">be:ta</AUni> -<AUni ws="qvm-x-akl">be:ta</AUni> -<AUni ws="qvm-x-ame">be:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vetar</AUni> -<AUni ws="qvm-x-acl">+vetar</AUni> -<AUni ws="qvm-x-akh">+vetar</AUni> -<AUni ws="qvm-x-akl">+vetar</AUni> -<AUni ws="qvm-x-ame">+vetar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.381" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bf2bf036-737a-4b42-947a-a72e23c4ce34" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vetar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ee1f813e-b2c9-44be-a5ee-2e0d54008df1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c07f11d3-2cf0-4850-95e0-934525bdca4a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vetar 
\entryTyp root 
\gENG 
\gSPN 
\e +vetar 
\c V1 
\ach be:ta 
\akh be:ta 
\acl be:ta 
\akl be:ta 
\ame be:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="447d1ede-0b3d-40c2-9447-0416664d8c9d" ownerguid="58812056-10ca-4d79-8bbf-21ecb8e4ab87"> -<Form> -<AUni ws="qvm-x-ach">nagtsa</AUni> -<AUni ws="qvm-x-acl">nagtsa</AUni> -<AUni ws="qvm-x-akh">naqtsa</AUni> -<AUni ws="qvm-x-akl">naqtsa</AUni> -<AUni ws="qvm-x-ame">naqtsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="447e4c18-5a93-41fa-8398-831d8db8431e" ownerguid="1f195274-5596-4e32-96a1-a1946fb984a7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.remember</AUni> -<AUni ws="es">recordar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7440cecd-7493-4b9e-86fd-dbf27ad2bfed" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="447ef380-52ea-4c04-8906-3c37b0d3ed34" ownerguid="59f5c685-49e8-4e49-8c94-d98f301fa758"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hook</AUni> -<AUni ws="es">anzuelo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="306f7c08-acc5-4f85-8e0a-0af89cdd7c23" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="447f258b-2160-42c7-9431-ffeeb86edcb8" ownerguid="35e61ec4-0542-4583-b5da-0aa5e31a35aa"> -<Abbreviation> -<AUni ws="en">2.6.3.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being unable to have children.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Fertile, infertile</AUni> -</Name> -<Questions> -<objsur guid="fef6cbd1-63d2-4c29-b030-35db14f1ccc8" t="o" /> -<objsur guid="c3304287-ad57-4fed-9e89-c5effc8cb9fd" t="o" /> -<objsur guid="6f215ee2-708e-4158-85dc-fac977c5691f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="4481ff61-202d-4a0c-946a-51cecee4f3fb" ownerguid="44acfa0f-1a00-4e7d-8b98-1851b4484599"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">whoever</AUni> -<AUni ws="es">cualquier</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="07483f10-ecd9-4a55-91fd-294b665943b7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="44856a69-e528-40d1-9dc5-06023eac5bf7" ownerguid="0f46cb61-7bb5-410d-abc5-4a75dc80a24f"> -<ExampleWords> -<AUni ws="en">not believe, disbelief, unbelief, lack faith in, fail to believe, refuse to believe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to not believing something or someone.</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="448675cc-a73a-4a52-9228-bd56c7378c89"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cupchu</AUni> -<AUni ws="qvm-x-acl">cupchu; cupcho</AUni> -<AUni ws="qvm-x-akh">kupchu</AUni> -<AUni ws="qvm-x-akl">kupchu; kupcho</AUni> -<AUni ws="qvm-x-ame">kupchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kuptru</AUni> -<AUni ws="qvm-x-acl">*kuptru</AUni> -<AUni ws="qvm-x-akh">*kuptru</AUni> -<AUni ws="qvm-x-akl">*kuptru</AUni> -<AUni ws="qvm-x-ame">*kuptru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.13" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d7d5b49d-fb79-460f-ad77-f5d6fbd5283b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kuptru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="971c55d8-d8bf-4d9a-9f06-8ac5f85d753e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9cc23cf5-89f7-4304-b7be-1609a23682d4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kuptru 
\entryTyp root 
\gENG gnaw 
\gSPN dentar 
\e *kuptru 
\c V1 
\ach cupchu 
\akh kupchu 
\acl cupchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl cupcho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kupchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kupcho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kupchu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="44867b2f-c33d-4ecb-a95a-3efb356ce1ae" ownerguid="05ded765-2e82-4ad0-a986-c8e5d1d4a941"> -<Form> -<AUni ws="qvm-x-ach">palitilla</AUni> -<AUni ws="qvm-x-acl">palitilla</AUni> -<AUni ws="qvm-x-akh">palitilla</AUni> -<AUni ws="qvm-x-akl">palitilla</AUni> -<AUni ws="qvm-x-ame">palitilla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="44870512-7cb2-469c-9b20-e15d3ce62655"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sacyador</AUni> -<AUni ws="qvm-x-acl">sacyador</AUni> -<AUni ws="qvm-x-akh">sacyador</AUni> -<AUni ws="qvm-x-akl">sacyador</AUni> -<AUni ws="qvm-x-ame">sacyador</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+saqueador</AUni> -<AUni ws="qvm-x-acl">+saqueador</AUni> -<AUni ws="qvm-x-akh">+saqueador</AUni> -<AUni ws="qvm-x-akl">+saqueador</AUni> -<AUni ws="qvm-x-ame">+saqueador</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.470" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6620c3c6-7e41-409d-8a58-f8fffbdc9aa0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+saqueador</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="710c9113-6bfc-4f4f-87e3-4bea3c014b94" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e55525b9-7448-4fbf-a4af-3fe112ec757b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +saqueador 
\entryTyp root 
\gENG swindler 
\gSPN saqueador 
\e +saqueador 
\c N0 
\mp +FinalC 
\ach sacyador 
\akh sacyador 
\acl sacyador 
\akl sacyador 
\ame sacyador</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="44872591-ca58-46c1-877e-2e204d0de134" ownerguid="7c35bb94-49c7-464a-b533-2255bc261138"> -<Form> -<AUni ws="qvm-x-ach">serruchu; serrucho</AUni> -<AUni ws="qvm-x-acl">serruchu; serruchu; serrucho</AUni> -<AUni ws="qvm-x-akh">serruchu; serrucho</AUni> -<AUni ws="qvm-x-akl">serruchu; serruchu; serrucho</AUni> -<AUni ws="qvm-x-ame">serruchu; serrucho</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="448b51cf-0ccd-4333-9eb5-9f84212eb54a" ownerguid="2a2af155-9db9-41c5-860a-fe0a3a09d6de"> -<ExampleWords> -<AUni ws="en">thinking</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to the thoughts a person is thinking at a particular time?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="448cff36-7250-45b7-a8a0-71779304cb1f" ownerguid="e11b6e55-ed8e-46ca-b7e9-8cc7d0a11531"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="448ddc0f-4710-4d8e-9467-ae0af08cbf48" ownerguid="d2e73238-ff99-4ba3-8ce6-d8ae98721710"> -<ExampleWords> -<AUni ws="en">agreement, consent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the act of agreeing to do something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="448f2b55-fd86-430a-8594-39bc914d80b1" ownerguid="52b04e15-7062-4fb2-9eaa-4fe8726f302a"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Hello. Howdy. How are you? How ya doin'? Good morning. Good afternoon. Good evening. Good to see you. Pleased to meet you.</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(5) What words and expressions are used when greeting someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="448f8188-4d18-4b17-a0bb-b7845c6f2a7f" ownerguid="dcc276da-db5c-46fe-9d64-da7e34f8c562"> -<Form> -<AUni ws="qvm-x-ach">plänu</AUni> -<AUni ws="qvm-x-acl">plänu; plänu; pläno</AUni> -<AUni ws="qvm-x-akh">plänu</AUni> -<AUni ws="qvm-x-akl">plänu; plänu; pläno</AUni> -<AUni ws="qvm-x-ame">plänu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="44908083-e7f1-4d45-8a34-815b975e2a6a" ownerguid="2c4552ce-6cb0-4c34-9525-ac0f62cd6ee8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rose</AUni> -<AUni ws="es">rosa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aae8b259-db24-4abe-b794-4fd955cafc47" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="4493b95b-4c01-42db-8f77-9dcd2f97ae71" ownerguid="e2a74cc1-03ee-4ca1-adcd-92b9fe2501de"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="4493f427-1c13-4246-bd62-08b5f53b6df5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mayga</AUni> -<AUni ws="qvm-x-acl">mayga</AUni> -<AUni ws="qvm-x-akh">mayqa</AUni> -<AUni ws="qvm-x-akl">mayqa</AUni> -<AUni ws="qvm-x-ame">mayqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mayqa</AUni> -<AUni ws="qvm-x-acl">*mayqa</AUni> -<AUni ws="qvm-x-akh">*mayqa</AUni> -<AUni ws="qvm-x-akl">*mayqa</AUni> -<AUni ws="qvm-x-ame">*mayqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.384" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="23eeeb6e-c74a-4b6b-9e71-10eb8c1b09e8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mayqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e6a43c28-e946-4f01-a76e-62b0c9b2e87f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="74040f19-daf9-44ee-9950-1334685e2480" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mayqa 
\entryTyp root 
\gENG which 
\gSPN cual 
\e *mayqa 
\c N1 
\ach mayga 
\akh mayqa 
\acl mayga 
\akl mayqa 
\ame mayqa</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="4495f9fb-3ebe-4456-b7e3-c9439cf85dbb"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">rikatsipäkumashqanki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="44965070-4e6a-4e0f-9602-43a9b269b495" ownerguid="ea67b3b5-f3d6-407b-9222-ea54265ab382"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">enebriate</AUni> -<AUni ws="es">emborracharse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dbff50c6-5341-4b62-aaf8-e9d6867ea467" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="4499f82c-b573-4b8d-bc46-7ceec90c42d7" ownerguid="994d2c17-eae0-4475-9854-e967d565dbcc"> -<Form> -<AUni ws="qvm-x-ach">sencïllu</AUni> -<AUni ws="qvm-x-acl">sencïllu; sencïllu; sencïllo</AUni> -<AUni ws="qvm-x-akh">sencïllu</AUni> -<AUni ws="qvm-x-akl">sencïllu; sencïllu; sencïllo</AUni> -<AUni ws="qvm-x-ame">sencïllu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="449a0aab-9d4f-43d4-a522-26276769db74"> -<Analyses> -<objsur guid="e0ac46b6-6746-4953-8c6d-840a8ba10b37" t="o" /> -</Analyses> -<Checksum val="1699355445" /> -<Form> -<AUni ws="qvm-x-akh">kanqa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="44a09f2d-ac56-4166-8dc9-022e0032ed76" ownerguid="31e0fde8-b3ab-47ae-b791-54309e6ed0bd"> -<ExampleWords> -<AUni ws="en">advanced, developed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a modern country?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="44a0d75b-d1ff-4ded-af49-72df732d8425" ownerguid="50db27b5-89eb-4ffb-af82-566f51c8ec0b"> -<ExampleWords> -<AUni ws="en">keep alive, life support, preserve, sustain, subsist on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to keeping someone alive?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="44a199b8-c84a-400d-9870-f023ee9ba878" ownerguid="0dfca7ad-cc58-4453-832a-50202cfc9f20"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">Easter</AUni> -<AUni ws="es">Pascua</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="14d104a3-c17f-4970-a9c0-28a9d862929d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="44a1c433-826b-4c16-ad2a-710911431d7c" ownerguid="a158029e-b425-4e6f-92fa-3be549a0715c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="44a2a3d8-1b7c-47f6-b344-2681025123ef" ownerguid="d2c7f746-a2fd-4e12-bff5-84c612e376bd"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a4d42f6f-d626-4469-8166-21d6f4e69d6d" t="r" /> -</Morph> -<Msa> -<objsur guid="72dc7bab-4d12-4cdb-a144-3c853f889fb5" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="44a31c2a-c0ef-4cb6-b7c3-fc202ecdff8b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">la:</AUni> -<AUni ws="qvm-x-acl">la:</AUni> -<AUni ws="qvm-x-akh">la:</AUni> -<AUni ws="qvm-x-akl">la:</AUni> -<AUni ws="qvm-x-ame">la:</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.508" /> -<DateModified val="2022-10-16 14:2:6.87" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="1" /> -<LexemeForm> -<objsur guid="e646b923-0e79-4a46-a065-b5396cb895fb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">EXCL4</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f9cb2a30-bcf2-45b4-b8a6-45834c36e310" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6707fef7-4158-4126-9090-a8e55fc36eb3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx EXCL4 
\entryTyp suffix 
\gENG EXCL4 
\gSPN ADM4 
\e EXCL4 
\c N0/N0 
\o 220 
\mp NeverForeshortened 
\ach la: 
\akh la: 
\acl la: 
\akl la: 
\ame la: 
\mp +FinalC 
\mp +FinalLength 
\i PSA 137.5 ¡Ay Jerusalén marcalä marca! 
\mcc EXCL4 / *marka _</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="44a3d832-ac23-4ec2-b3f8-e4ecd82faf51" ownerguid="9fc41e37-c61f-4b55-a5b9-d3c3da85925d"> -<Form> -<AUni ws="qvm-x-ach">tuncu</AUni> -<AUni ws="qvm-x-acl">tuncu; tunco</AUni> -<AUni ws="qvm-x-akh">tunku</AUni> -<AUni ws="qvm-x-akl">tunku; tunko</AUni> -<AUni ws="qvm-x-ame">tunku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="44a3e749-4bd9-49c3-ace5-44b274662125" ownerguid="e6ec43ef-0100-4cf4-a047-c575ee8613b4"> -<ExampleWords> -<AUni ws="en">control, be in control, manipulate, pull strings, call the shots, be in the driver's seat, steer, regulate, govern, dominate, monopolize, have a monopoly, have a stranglehold, have a hold over, wrap someone around your finger, hold sway, be the boss, be domineering, oppress, keep someone down, repress, walk all over</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to controlling someone or something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="44a9052c-c3a2-491b-ac0f-a5795901eafe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gloria</AUni> -<AUni ws="qvm-x-acl">gloria</AUni> -<AUni ws="qvm-x-akh">gloria</AUni> -<AUni ws="qvm-x-akl">gloria</AUni> -<AUni ws="qvm-x-ame">gloria</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gloria</AUni> -<AUni ws="qvm-x-acl">+gloria</AUni> -<AUni ws="qvm-x-akh">+gloria</AUni> -<AUni ws="qvm-x-akl">+gloria</AUni> -<AUni ws="qvm-x-ame">+gloria</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.617" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="add33d77-245d-44a4-8541-290270a34930" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gloria</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ad3da97f-f128-42b7-8738-e28e289bc1d3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fbfbe52b-34c0-4c64-95e5-eedc3008966f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gloria 
\entryTyp root 
\gENG glory 
\gSPN gloria 
\e +gloria 
\c N0 
\ach gloria 
\akh gloria 
\acl gloria 
\akl gloria 
\ame gloria</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="44aa6f68-7289-4246-8bc4-0e6ec4046fb2" ownerguid="1cb9266c-c5a6-4b25-8fa3-dbad81a53cd3"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="44abdd69-6326-4757-ab6e-d9cbb1c58f97" ownerguid="1f608e18-958e-4bb3-a977-04879fb5acd5"> -<ExampleWords> -<AUni ws="en">shrimp, lobster</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What types of small animals are eaten?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="44acfa0f-1a00-4e7d-8b98-1851b4484599"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pi:na; pi:na:</AUni> -<AUni ws="qvm-x-acl">pi:na; pi:na:</AUni> -<AUni ws="qvm-x-akh">pi:na; pi:na:</AUni> -<AUni ws="qvm-x-akl">pi:na; pi:na:</AUni> -<AUni ws="qvm-x-ame">pi:na; pi:na:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pi:na:</AUni> -<AUni ws="qvm-x-acl">*pi:na:</AUni> -<AUni ws="qvm-x-akh">*pi:na:</AUni> -<AUni ws="qvm-x-akl">*pi:na:</AUni> -<AUni ws="qvm-x-ame">*pi:na:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.840" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a3336d76-8a12-47be-a70c-72ab5bc37d09" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pi:na:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="07483f10-ecd9-4a55-91fd-294b665943b7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4481ff61-202d-4a0c-946a-51cecee4f3fb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pi:na: 
\entryTyp root 
\gENG whoever 
\gSPN cualquier 
\e *pi:na: 
\c N0 
\mp +FinalC 
\mp +underlong 
\ach pi:na foreshortened 
\ach pi:na: 
\akh pi:na foreshortened 
\akh pi:na: 
\acl pi:na foreshortened 
\acl pi:na: 
\akl pi:na foreshortened 
\akl pi:na: 
\ame pi:na foreshortened 
\ame pi:na: 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="44ae6bff-3236-4e4d-ae9b-b06981188e08" ownerguid="510d5c78-1d23-441a-9f3f-25c2b251ac8f"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="44b0423f-3160-4954-acae-eead2054c86b" ownerguid="74693758-e781-4a77-a90c-fdec7f1437fa"> -<Form> -<AUni ws="qvm-x-ach">consagra</AUni> -<AUni ws="qvm-x-acl">consagra</AUni> -<AUni ws="qvm-x-akh">consagra</AUni> -<AUni ws="qvm-x-akl">consagra</AUni> -<AUni ws="qvm-x-ame">consagra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="44b156ee-8417-47a3-bc09-041a34b30afb" ownerguid="67e57493-d286-4271-b877-f63f962dddf1"> -<ExampleWords> -<AUni ws="en">huge, immense, vast, enormous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a very big area?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="44b64439-183c-4f1a-85ec-327511c3bd4b" ownerguid="ad1704a0-f590-4406-881b-95656cf33c61"> -<Form> -<AUni ws="qvm-x-ach">ternëra</AUni> -<AUni ws="qvm-x-acl">ternëra</AUni> -<AUni ws="qvm-x-akh">ternëra</AUni> -<AUni ws="qvm-x-akl">ternëra</AUni> -<AUni ws="qvm-x-ame">ternëra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="44b6a572-4c4b-46ba-9c2d-29436f49b55c" ownerguid="25a4ea55-4f95-4595-842c-6e4b093ce1c3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="44b6e20f-e5f5-43ff-8b32-3eec05151f47"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quita</AUni> -<AUni ws="qvm-x-acl">quita</AUni> -<AUni ws="qvm-x-akh">kita</AUni> -<AUni ws="qvm-x-akl">kita</AUni> -<AUni ws="qvm-x-ame">kita</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kita.n</AUni> -<AUni ws="qvm-x-acl">*kita.n</AUni> -<AUni ws="qvm-x-akh">*kita.n</AUni> -<AUni ws="qvm-x-akl">*kita.n</AUni> -<AUni ws="qvm-x-ame">*kita.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.993" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="363ae1b9-851d-4bf7-9430-82f713d0a2cc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kita.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="70f34efd-1ebd-4a4a-a816-889b9fc168c5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0a816fe4-cb8f-4e17-a626-625deb658fde" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kita.n 
\entryTyp root 
\gENG 
\gSPN pozo.grande 
\e *kita.n 
\c N0 
\ach quita 
\akh kita 
\acl quita 
\akl kita 
\ame kita</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="44b6e54a-b21f-4d11-ada3-dba8b04f8f73" ownerguid="4153416a-784d-4f7c-a664-2640f7979a14"> -<ExampleWords> -<AUni ws="en">source, head, headwaters, mouth, upstream, downstream, bend, whirlpool, eddy, river bottom, riverbed, backwater, narrows, oxbow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What are the parts of a river?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="44b8043f-c0df-4837-a739-9b785204fb05" ownerguid="c9b5f83e-529d-45af-949f-4cc6b0591b66"> -<ExampleWords> -<AUni ws="en">improve, improvement, ameliorate, correct, develop, reform, remedy, renovate, renovation, upgrade</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to improving something?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="44bbf34a-9887-4f6f-8d8a-41461e571a2d" ownerguid="fa0c4030-a408-4b46-b248-e2fa3ad2baf4"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Tsapuycamashga.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="44bf22fd-3725-4c49-bd3c-434402c33493" ownerguid="bd4a2527-f66c-4f48-922e-8b180bba8ef6"> -<Abbreviation> -<AUni ws="en">5.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.306" /> -<DateModified val="2022-9-23 16:55:8.306" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to furniture.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>6O Furniture</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Furniture</AUni> -</Name> -<OcmCodes> -<Uni>352 Furniture</Uni> -</OcmCodes> -<Questions> -<objsur guid="565a1211-0638-49f2-adac-b382c646553e" t="o" /> -<objsur guid="7e28eba7-07d5-489a-899e-8a450998e4a5" t="o" /> -<objsur guid="8a2955f2-4fcf-49c7-8ff8-78720114c244" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="f732bdb5-9a04-468a-b50b-510f94d20fb4" t="o" /> -<objsur guid="4fc734f2-a91d-4693-8caf-e7fe51a2df8a" t="o" /> -<objsur guid="943eb131-2761-4c98-90a0-0bdfb0f8584d" t="o" /> -<objsur guid="fe89a0f4-2155-424b-bf90-c1133dc41c8d" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="44c0c0d9-c799-4d24-b6f8-2731cb3ed53d" ownerguid="2379edc3-5e9a-475a-8aa8-d13d517ae608"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">LEV 20.14 Pipis mamay wawata warminpaq tsarararqa pasaypa jutsatami ruraykan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="44c35774-7ee2-469c-b6be-c77af11a848b" ownerguid="5261497b-6beb-4db1-9de2-10b5f6f8ec69"> -<ExampleWords> -<AUni ws="en">begin, start, commence, initiate, to institute</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to indicate that something has begun?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="44c5ef41-6698-4608-8138-9314a3708930" ownerguid="6fa27e89-d7a9-4d52-9c08-feb552baf170"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="44c7b317-a914-4041-8847-62611b55c609" ownerguid="12454d31-d8bd-45e6-97a8-31273818231e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="44c8e484-3c8c-47df-8593-14d8c23d33d6" ownerguid="7988974c-99fd-40dd-9b5e-2d81ec603ddc"> -<ExampleWords> -<AUni ws="en">ecosystem, vegetation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the types of plants that grow in an area?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="44cbbb19-8c69-4608-ba80-2546da7f6267" ownerguid="43cb3488-711b-4d9d-9d0e-03d0c1f6eb8b"> -<ExampleWords> -<AUni ws="en">shameful, degrading, disgraceful, dishonorable, humiliating, ignominious, opprobrious, scandalous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that causes someone to feel ashamed?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="44ccd0fe-509a-48f9-bdbd-b7a0eaf81096" ownerguid="de8a0885-39a4-494f-bf8f-736e609222eb"> -<Form> -<AUni ws="qvm-x-ach">tsururo; tsururü</AUni> -<AUni ws="qvm-x-acl">tsururo; tsururö</AUni> -<AUni ws="qvm-x-akh">tsururo; tsururü</AUni> -<AUni ws="qvm-x-akl">tsururo; tsururö</AUni> -<AUni ws="qvm-x-ame">tsururu; tsururü</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="44ce939d-39c7-40bb-9a81-c475a3dbc9db"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">munapäkütsu</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="44d1191e-c36c-4a61-96ca-0bec06a31c4c" ownerguid="59db2324-e961-4a97-a9ad-38791a07dc23"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ec3a7db4-af42-4144-bac1-a8b0465cdeaf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="44d1e099-ef7e-4e43-9940-4a1cb9135a0b" ownerguid="ba5bb5ea-0131-4dca-aa3f-e26f433e9548"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 28.4 Jaticunanpag röpancuna canga pectoral, efod, sotäna, bordashga tünica, görranirag coröna y wachcupis.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiWordform" guid="44d45af1-5ffb-41a1-96f1-e071a0acd4ae"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">length</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="44d51316-1085-4051-a5b8-9f52bb62d819"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chucru</AUni> -<AUni ws="qvm-x-acl">chucru; chucru; chucro</AUni> -<AUni ws="qvm-x-akh">chukru</AUni> -<AUni ws="qvm-x-akl">chukru; chukru; chukro</AUni> -<AUni ws="qvm-x-ame">chukru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trukru.n</AUni> -<AUni ws="qvm-x-acl">*trukru.n</AUni> -<AUni ws="qvm-x-akh">*trukru.n</AUni> -<AUni ws="qvm-x-akl">*trukru.n</AUni> -<AUni ws="qvm-x-ame">*trukru.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.160" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f536b94d-4e61-42d6-be20-72632aab9192" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trukru.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1b344699-4572-41bb-99c6-18a418329529" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2571158c-4f30-4f33-b282-f285466940d2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trukru.n 
\entryTyp root 
\gENG hard 
\gSPN duro 
\e *trukru.n 
\c N0 
\ach chucru 
\akh chukru 
\acl chucru / _# 
\acl chucru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chucro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chukru / _# 
\akl chukru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chukro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chukru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="44da7cff-5e51-48ba-b129-05b0e8a20bc6" ownerguid="b2fee662-c451-4d32-aca5-a913ca0b2164"> -<ExampleWords> -<AUni ws="en">clamp, vise, pliers, tongs, tweezers, hot pad</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What tools are used for holding things?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="44dc42e4-e9c7-4aa9-ac9b-1008385244b1" ownerguid="529140d1-6e8e-44fe-99f0-95289e933607"> -<Abbreviation> -<AUni ws="en">4.1.9.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to parents.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Father, mother</AUni> -</Name> -<Questions> -<objsur guid="ab538bab-0c31-4e14-b31f-049c662531d1" t="o" /> -<objsur guid="bc8256d3-349f-4ba5-bac8-310ade4e556e" t="o" /> -<objsur guid="6cba945d-6221-4a9d-804d-b83dae5f1b93" t="o" /> -<objsur guid="ce45d7c1-1511-47d0-810b-f18aac3de105" t="o" /> -<objsur guid="80c7c296-9f2e-4cd6-ba06-a20b3a237063" t="o" /> -<objsur guid="b89a011d-318d-4704-881f-46a0905ac84b" t="o" /> -<objsur guid="24da28da-7ac0-4ec3-b758-9e53e24844b9" t="o" /> -<objsur guid="f854e173-a63f-422c-9184-bef5e3b9fcfe" t="o" /> -<objsur guid="e1a655e6-6fb7-4fdc-8a0d-e8978fe1af54" t="o" /> -<objsur guid="f750e8f3-559c-4f6a-92e7-159699156a2a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="44dc5b75-5e51-4dd2-b5fa-b09f190fb6f9" ownerguid="97e1aba5-2ac1-44a3-8f18-59b2347a54a1"> -<ExampleWords> -<AUni ws="en">roofing material, tile roof, tile, tin roof, tin sheet, shingle, wooden shingle, asphalt shingle, shake, thatched roof, thatch, grass roof, grass, straw, palm leaf, sod, canvas (tent)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What materials are used to make a roof?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="44dddad2-98e5-4f25-8d07-832aea441990" ownerguid="fe4be3a5-3356-413b-8f90-2450a82bf8f5"> -<Form> -<AUni ws="qvm-x-ach">jampi</AUni> -<AUni ws="qvm-x-acl">jampi; jampi; jampe</AUni> -<AUni ws="qvm-x-akh">jampi</AUni> -<AUni ws="qvm-x-akl">jampi; jampi; jampe</AUni> -<AUni ws="qvm-x-ame">hampi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="44de1025-7653-40b2-a502-52367b4e8af9" ownerguid="1c6c2696-4676-4fa8-9cbe-3ccde7d376dc"> -<PartOfSpeech> -<objsur guid="85ffb381-0567-4202-8640-53cbaec77e45" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="44e04722-1abc-40b1-9ac3-213a81a8e21f" ownerguid="f067ae9a-5f5b-44a4-b710-bb1357746fa8"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1SA 16.14 Tsay witsanmi \nd Tayta Diospa\nd* Espíritun Saúlpita yargucushga cargan. Tsaymi Saúlta löcutätsinanpag juc demoniuta \nd Tayta Dios\nd* consientiptinmi Saúlga fiyupa löcutar purergan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexExampleSentence" guid="44e6b043-e9a3-4aec-8ffa-6c1768d74b70" ownerguid="34f84ba9-1ddc-4c0f-bf74-90bd98afebd7"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ISA 24.13 Olïvuta cosechar chapiptin juc ishcaylana yörancho quëdashgannogmi canga.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="44e721b2-a967-46b4-a7e7-b05ef852b3d9" ownerguid="53ce5d16-865f-4de5-bae1-92badd1c9883"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="44e93c57-cb7c-476b-b0e7-e5d5078f8776" ownerguid="0d427d55-d63e-4a35-a66a-5e4dce0a963e"> -<ExampleWords> -<AUni ws="en">different, unequal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that two numbers or amounts are different?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="44ea9485-c22a-4461-81e6-f048e4e27b92" ownerguid="be0bef3b-acd0-4c75-9d6f-a0dc1ec768dd"> -<Form> -<AUni ws="qvm-x-ach">malfäma</AUni> -<AUni ws="qvm-x-acl">malfäma</AUni> -<AUni ws="qvm-x-akh">malfäma</AUni> -<AUni ws="qvm-x-akl">malfäma</AUni> -<AUni ws="qvm-x-ame">malfäma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="44ed48bc-633d-43d2-8aa6-fd1a2b7e04ef"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ma:drin</AUni> -<AUni ws="qvm-x-acl">ma:drin; ma:drin; ma:dren</AUni> -<AUni ws="qvm-x-akh">ma:drin</AUni> -<AUni ws="qvm-x-akl">ma:drin; ma:drin; ma:dren</AUni> -<AUni ws="qvm-x-ame">ma:drin</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+madre.1</AUni> -<AUni ws="qvm-x-acl">+madre.1</AUni> -<AUni ws="qvm-x-akh">+madre.1</AUni> -<AUni ws="qvm-x-akl">+madre.1</AUni> -<AUni ws="qvm-x-ame">+madre.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.255" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="38d7b756-329e-413b-9b34-d3b15acfa819" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+madre.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5b5af92e-2da5-4d16-9352-36a418524518" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="594c6c68-b6cb-45db-a8ec-3164ed3dcc0f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +madre.1 
\entryTyp root 
\gENG 
\gSPN 
\e +madre.1 
\c N0 
\mp +FinalC 
\ach ma:drin 
\akh ma:drin 
\acl ma:drin / _# 
\acl ma:drin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ma:dren +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ma:drin / _# 
\akl ma:drin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ma:dren +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame ma:drin</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="44f21db6-de71-4a1d-885e-9b8e5ba594f9" ownerguid="3be7e3fe-89d4-471a-92bd-8c70fcb146bb"> -<ExampleWords> -<AUni ws="en">be hard of hearing, hearing impaired</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who is partially deaf?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="44f24397-3af2-4bc3-8e8a-fb88c335f5b8" ownerguid="f96e8a7b-d84c-4d74-b5f7-1c43535a1e0c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">boat</AUni> -<AUni ws="es">buque</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5ddd1047-5a61-4615-9481-15e728698131" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="44f80ef5-18f4-4a64-93d5-2739fa0a3cd0" ownerguid="2b9c1681-c55d-4fcf-892e-4fd28f7b65df"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">split.firewood</AUni> -<AUni ws="es">leña.rajada</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9a682783-0f14-477e-9c68-8b88e0ee8058" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="44fa2a29-171a-4521-8368-333b60c58d95" ownerguid="c8595a5f-4dde-4260-b8d8-265d0554ce93"> -<ExampleWords> -<AUni ws="en">prize, winnings, jackpot, trophy, cup</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to something that you win?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="450080e4-2cd2-4cb7-9e96-d443bdaa05e2"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">castigamätsun</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiWordform" guid="45025fcf-2f74-44fc-a7d4-f55c6efef836"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">kutikäriy</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexExampleSentence" guid="45074b2a-a799-4809-93c4-ef1718362d08" ownerguid="78c94df1-9f7a-4b71-981a-3fc1c3a5d7d7"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">GEN 27.33 Tsaynog niptin Isaacga mantsacashga watpa watpa parlar caynog nergan...</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="45088671-2128-4751-9522-a37a31dc5c63" ownerguid="f49b582e-e616-4541-924b-8f90b8ba608e"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="450d285d-b9d0-4329-b418-041307921b55" ownerguid="40590157-9412-4558-b0f7-311867b649cc"> -<ExampleWords> -<AUni ws="en">spin, revolve</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to causing something to revolve?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="450e5bad-4be9-4a84-9924-6f20034eb152" ownerguid="185d398b-1e9d-4de6-9606-908b55df3c3a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="45121eff-2c34-41f8-ac02-741de0dcdf04" ownerguid="8c7c953d-3c76-483f-a8b0-3a12bab0668b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">aveja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="79b25689-73a7-4e5d-97a8-57f7cc46f100" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="4516f994-a4be-439b-b3df-9bc3693701b9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">g</AUni> -<AUni ws="qvm-x-acl">g</AUni> -<AUni ws="qvm-x-akh">q</AUni> -<AUni ws="qvm-x-akl">q</AUni> -<AUni ws="qvm-x-ame">q</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.518" /> -<DateModified val="2022-10-16 15:15:45.232" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="1" /> -<LexemeForm> -<objsur guid="2077e726-cf37-4913-b54c-2d034d4883b4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">HUMAN</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cc4f521e-5e38-4217-aa16-46da99d423ec" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bd7ef33f-1485-4e23-adae-44c49cf33d36" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx HUMAN 
\entryTyp suffix 
\gENG HUMAN 
\gSPN HUMANO 
\e HUMAN 
\c N0/N0 N1/N0 
\o 020 
\mp +foreshortens 
\ach g 
\akh q 
\acl g 
\akl q 
\ame q 
\mp +FinalC 
\i manapis aycaglatami 
\mcc HUMAN / [TakeHuman] ..._ 
\mcc HUMAN / {+FinalC} ~_</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="451a3659-8fc4-473e-8a9a-e1691fb4b9f8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nana</AUni> -<AUni ws="qvm-x-acl">nana</AUni> -<AUni ws="qvm-x-akh">nana</AUni> -<AUni ws="qvm-x-akl">nana</AUni> -<AUni ws="qvm-x-ame">nana</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñaña</AUni> -<AUni ws="qvm-x-acl">*ñaña</AUni> -<AUni ws="qvm-x-akh">*ñaña</AUni> -<AUni ws="qvm-x-akl">*ñaña</AUni> -<AUni ws="qvm-x-ame">*ñaña</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.588" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5d063e5b-5aa7-46e2-971b-052ff85c4f84" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñaña</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c993a5f3-0ab4-4b7e-b7c0-d9f03d71bd3b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="75ed6438-45c2-42c9-b319-ea5beabb30e6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñaña 
\entryTyp root 
\gENG sister.of.female 
\gSPN hermana 
\e *ñaña 
\c N0 
\ach nana 
\akh nana 
\acl nana 
\akl nana 
\ame nana 
\mcc *ñaña / ~_ GEN YET2</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="451c662b-9563-42a0-b790-c1a368abca64" ownerguid="126651f9-33d5-4757-a1f9-aab7e48b906b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">Baptist</AUni> -<AUni ws="es">Bautista</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d50956c6-ca32-4b05-9fc7-5473955b1800" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="451e1000-25b4-406c-8f2e-69f195a4db3d" ownerguid="bd550c69-9ff6-4ab2-85d7-718b054adfa4"> -<Form> -<AUni ws="qvm-x-ach">ñutgu</AUni> -<AUni ws="qvm-x-acl">ñutgu; ñutgu; ñutgo</AUni> -<AUni ws="qvm-x-akh">ñutqu</AUni> -<AUni ws="qvm-x-akl">ñutqu; ñutqu; ñutqo</AUni> -<AUni ws="qvm-x-ame">ñutqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="451e2239-c5b7-44a2-89c0-41a02a687db1" ownerguid="d90c0174-8858-4304-90ed-b0719171d998"> -<Form> -<AUni ws="qvm-x-ach">luychu</AUni> -<AUni ws="qvm-x-acl">luychu; luychu; luycho</AUni> -<AUni ws="qvm-x-akh">luychu</AUni> -<AUni ws="qvm-x-akl">luychu; luychu; luycho</AUni> -<AUni ws="qvm-x-ame">luychu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="451e960e-0cdf-4349-a4fb-6004c3b83a07" ownerguid="c01442d9-7a0d-41b5-9fbf-5f78c8d5999a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="451ebe30-eaeb-4aa3-94c6-f177e9bcf8ff" ownerguid="01b30761-2ba2-4a44-ade8-a72dd70de7b6"> -<Form> -<AUni ws="qvm-x-ach">doctor</AUni> -<AUni ws="qvm-x-acl">doctor</AUni> -<AUni ws="qvm-x-akh">doctor</AUni> -<AUni ws="qvm-x-akl">doctor</AUni> -<AUni ws="qvm-x-ame">doctor</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="451f6cda-11bc-488b-9b90-54b69d665478" ownerguid="a8cb73ed-e20b-4977-905f-a6b6d8177827"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="45200d6b-d7a2-4d5f-8ffd-6864cf6dcfab" ownerguid="7002a15a-d1b9-40b1-b746-af6950273652"> -<Form> -<AUni ws="qvm-x-ach">jiwa</AUni> -<AUni ws="qvm-x-acl">jiwa</AUni> -<AUni ws="qvm-x-akh">jiwa</AUni> -<AUni ws="qvm-x-akl">jiwa</AUni> -<AUni ws="qvm-x-ame">hiwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="4524fc30-b933-4841-ade3-a8482a897244"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">peleande:ru</AUni> -<AUni ws="qvm-x-acl">peleande:ru; peleande:ru; peleande:ro</AUni> -<AUni ws="qvm-x-akh">peleande:ru</AUni> -<AUni ws="qvm-x-akl">peleande:ru; peleande:ru; peleande:ro</AUni> -<AUni ws="qvm-x-ame">peleande:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+peleandero</AUni> -<AUni ws="qvm-x-acl">+peleandero</AUni> -<AUni ws="qvm-x-akh">+peleandero</AUni> -<AUni ws="qvm-x-akl">+peleandero</AUni> -<AUni ws="qvm-x-ame">+peleandero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.780" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0fa328fb-0270-4cb6-9b49-ec4d8fff558e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+peleandero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8a58bb94-5b98-4047-9397-3e9c040f8f41" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ce6e9ee8-f9d4-404a-ac69-c73107af66b0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +peleandero 
\entryTyp root 
\gENG 
\gSPN 
\e +peleandero 
\c N0 
\ach peleande:ru 
\akh peleande:ru 
\acl peleande:ru / _# 
\acl peleande:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl peleande:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl peleande:ru / _# 
\akl peleande:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl peleande:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame peleande:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="452516c9-0085-4620-97d2-daf3b4276c3f" ownerguid="8216627d-9d20-4a5c-8bfd-0709c16e7a08"> -<ExampleWords> -<AUni ws="en">many more, much more, far more, far beyond, way beyond, a lot more</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words indicate that there are many more of something?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="4525d33a-31ec-44a2-90b3-4a00eeedaa47" ownerguid="79abc819-5660-42df-ae30-945b6243e5c8"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Jdg 19.17 Pläzacho jamaraycagta ricarmi pasajëruta auquenga caynog nergan: <<¿Maypitatag shamuycanqui? ¿Maypatag aywaycanqui?>></Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="4526b41d-6f3c-494f-93a2-ea3e9705269d" ownerguid="6bf8ce57-1970-4efb-a7d7-b0bf8be6fb6b"> -<Abbreviation> -<AUni ws="en">8.4.5.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to something delaying someone or something--to cause something to happen at a later time, cause someone to do something at a later time, or cause someone or something to be late.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Delay</AUni> -</Name> -<Questions> -<objsur guid="3ee01e32-7293-4290-9625-7e4225cba55f" t="o" /> -<objsur guid="77a09318-be03-43eb-8820-4029ee72b70a" t="o" /> -<objsur guid="f3b8a60f-b8b0-4d50-9112-13f94f573bb1" t="o" /> -<objsur guid="f3be4764-0471-4a6d-a7d2-ff3695ca40e5" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="4526fa47-a703-4a4d-af22-5cbbbd519b49" ownerguid="6cdb14a9-f0cf-4326-a64b-2a09e5ed6622"> -<Form> -<AUni ws="qvm-x-ach">tanu</AUni> -<AUni ws="qvm-x-acl">tanu; tano</AUni> -<AUni ws="qvm-x-akh">tanu</AUni> -<AUni ws="qvm-x-akl">tanu; tano</AUni> -<AUni ws="qvm-x-ame">tanu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="4528c56e-618e-4fcb-abf2-d0e4be3a6a76" ownerguid="1b53ff72-77e6-47b5-a562-8ff17cf66a53"> -<Category> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</Category> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="ff7177bb-63ed-4ec5-a050-2b03da974cbf" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="b4be01c0-d851-483d-94b7-a7c2854264dc" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="45314d39-6e72-4f79-b16f-1cf54d0f46c2" ownerguid="85912845-21b0-41eb-8b8c-1f5c3d53df08"> -<ExampleWords> -<AUni ws="en">motivation, motivator</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something that causes someone to feel enthusiastic?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="45330144-efd7-4cc6-a8d8-015781210237" ownerguid="4b1e9d5e-4e91-4170-a283-3f520744657b"> -<Form> -<AUni ws="qvm-x-ach">pelya</AUni> -<AUni ws="qvm-x-acl">pelya</AUni> -<AUni ws="qvm-x-akh">pelya</AUni> -<AUni ws="qvm-x-akl">pelya</AUni> -<AUni ws="qvm-x-ame">pelya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="453639f1-c4f8-48b2-8e03-ef8ed6d9bc8e" ownerguid="ccbbd16f-58c5-45c1-bfff-1fba64d9740e"> -<ExampleWords> -<AUni ws="en">quick, quickly, rapidly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(20) What words are used to indicate that something is being done quickly?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="453b37f0-c697-44a4-b1d1-782688250b5d" ownerguid="1a79a88c-eaab-46ea-8f23-d6a3d560136c"> -<Form> -<AUni ws="qvm-x-ach">juntu; junto</AUni> -<AUni ws="qvm-x-acl">juntu; juntu; junto</AUni> -<AUni ws="qvm-x-akh">juntu; junto</AUni> -<AUni ws="qvm-x-akl">juntu; juntu; junto</AUni> -<AUni ws="qvm-x-ame">juntu; junto</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="453ed93f-37fe-4f6a-a34c-1e8472de1b78" ownerguid="6de6ebb0-8896-4615-8718-e7ce8f9da605"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="453ff0cd-e8b6-4ad2-98f7-7198db6111d8" ownerguid="65ef6aae-019f-4980-b6d9-5b7ad2c8e68f"> -<ExampleWords> -<AUni ws="en">cliché, platitude</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a saying that is used so often that people think it is stupid?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4541b9e1-d334-411d-9bd7-ec9171075312" ownerguid="25763563-5ad6-4b4d-9073-3fc88f6dd44e"> -<ExampleWords> -<AUni ws="en">nature, character, such</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the nature or character of something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="45421256-0af0-4ec8-92b6-340d343009ed"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">arro:ba</AUni> -<AUni ws="qvm-x-acl">arro:ba</AUni> -<AUni ws="qvm-x-akh">arro:ba</AUni> -<AUni ws="qvm-x-akl">arro:ba</AUni> -<AUni ws="qvm-x-ame">arro:ba</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+arroba</AUni> -<AUni ws="qvm-x-acl">+arroba</AUni> -<AUni ws="qvm-x-akh">+arroba</AUni> -<AUni ws="qvm-x-akl">+arroba</AUni> -<AUni ws="qvm-x-ame">+arroba</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.928" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3e96acab-996f-4657-b1d3-5c35bc00e0ed" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+arroba</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ac910285-aef8-4997-aff4-d7e97f60efde" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="98f5dc34-591a-4109-9a35-e3542eda163f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +arroba 
\entryTyp root 
\gENG 25.pounds 
\gSPN 12.kilos 
\e +arroba 
\c N0 
\ach arro:ba 
\akh arro:ba 
\acl arro:ba 
\akl arro:ba 
\ame arro:ba</Run> -</AStr> -</Custom> -</rt> -<rt class="StText" guid="4542fe53-014b-4a89-8aab-b1714d601956" ownerguid="d20e73e6-f549-4382-b190-dcf89f2e8123"> -<DateModified val="2022-10-13 20:17:36.850" /> -<Paragraphs> -<objsur guid="9dd6be50-49c0-4282-af86-812450bf6720" t="o" /> -</Paragraphs> -<RightToLeft val="False" /> -</rt> -<rt class="LexSense" guid="454c1222-a7b5-4fff-b02f-5fb6ab18af1f" ownerguid="fe542788-f41e-4106-95b3-7257792896b7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">congratulate</AUni> -<AUni ws="es">felicitar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b8b512d8-24d3-441c-aa31-e9eceac8a979" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="4550d788-8508-4457-abaf-d44bc35be0d4" ownerguid="d167c58f-7de0-4dbf-b896-e563f37268b0"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="Segment" guid="4552ab85-2f6b-48e3-bd6c-eb2cedd0b9f7" ownerguid="df9cae37-4752-488c-b43e-fe4523b780ef"> -<Analyses> -<objsur guid="670857e8-048a-4ab7-92a8-ebc28a5f914b" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexSense" guid="45557282-a7b3-42be-a2a9-bb28ac8b7088" ownerguid="f2bc15a0-1373-4ca7-83c4-cd643fc2b570"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sloth</AUni> -<AUni ws="es">perezoso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="93a09728-06fc-44a4-baa9-b56bc04ea5d5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="45576422-ebcd-417b-b5ad-9b895f2be5d6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">garantia</AUni> -<AUni ws="qvm-x-acl">garantia</AUni> -<AUni ws="qvm-x-akh">garantia</AUni> -<AUni ws="qvm-x-akl">garantia</AUni> -<AUni ws="qvm-x-ame">garantia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+garantir</AUni> -<AUni ws="qvm-x-acl">+garantir</AUni> -<AUni ws="qvm-x-akh">+garantir</AUni> -<AUni ws="qvm-x-akl">+garantir</AUni> -<AUni ws="qvm-x-ame">+garantir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.599" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="56d33c93-1d01-4560-ab42-174a056ec8c3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+garantir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="559d729a-aacf-4f08-8c6b-9790df0ce37e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fde96b45-cc47-4b35-88f8-a62f2243df26" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +garantir 
\entryTyp root 
\gENG guarantee 
\gSPN garantía 
\e +garantir 
\c V1 
\ach garantia 
\akh garantia 
\acl garantia 
\akl garantia 
\ame garantia 
\i PRO 6.3 jucpa munaynincho cashgayquipita salvacunayquipag pengayta jitaycur garantiashgayqui runata cobranqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="45582df7-06af-4412-bf37-73245f03a8d0" ownerguid="d79e6547-9b93-484d-b7bf-c64c2625a319"> -<Form> -<AUni ws="qvm-x-ach">chunas</AUni> -<AUni ws="qvm-x-acl">chunas</AUni> -<AUni ws="qvm-x-akh">chunas</AUni> -<AUni ws="qvm-x-akl">chunas</AUni> -<AUni ws="qvm-x-ame">chunas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="45591488-19bb-473e-b0ec-4a54df5644e1" ownerguid="70fbd0f8-48ee-4448-8068-542919d850ea"> -<Form> -<AUni ws="qvm-x-ach">hasta</AUni> -<AUni ws="qvm-x-acl">hasta</AUni> -<AUni ws="qvm-x-akh">hasta</AUni> -<AUni ws="qvm-x-akl">hasta</AUni> -<AUni ws="qvm-x-ame">hasta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="455bef49-aa50-4458-9a4b-362ad85b3bf1" ownerguid="6e660c8b-5898-4482-b003-af758b1708b9"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="455ea5bc-a67d-401b-afc0-73e79bdf6555" ownerguid="f9fb91a7-8199-4b9a-9c31-4b1c5d553bde"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="455f582b-a09a-4fad-a282-8c078350088b" ownerguid="cb99a086-8c6d-4f90-81db-6afa69ae5455"> -<ExampleWords> -<AUni ws="en">moo, low, bellow, snort</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What sounds do cows make?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4561ebe9-c3ca-4830-9f2e-a5fcce0da953" ownerguid="b8b2c795-ce1b-4f04-84f5-7402f3b7244d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">multiply</AUni> -<AUni ws="es">reproducir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d4461753-e842-4052-b48b-00d666519c45" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="45631b01-889a-49f8-8eb0-9c138e84248c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quinci; quince</AUni> -<AUni ws="qvm-x-acl">quinci; quinci; quince</AUni> -<AUni ws="qvm-x-akh">quinci; quince</AUni> -<AUni ws="qvm-x-akl">quinci; quinci; quince</AUni> -<AUni ws="qvm-x-ame">quinci; quince</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+quince</AUni> -<AUni ws="qvm-x-acl">+quince</AUni> -<AUni ws="qvm-x-akh">+quince</AUni> -<AUni ws="qvm-x-akl">+quince</AUni> -<AUni ws="qvm-x-ame">+quince</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.841" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6c67e49b-5449-49c1-bf6b-e32a4e453b58" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+quince</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="91f8c852-454d-4e98-8384-06f7873f737f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="433a451a-31c4-4a80-a6ea-9fca4b837bf7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +quince 
\entryTyp root 
\gENG fifteen 
\gSPN quince 
\e +quince 
\c N0 
\mp +FinalI 
\ach quinci / ~_# 
\ach quince / _# 
\akh quinci / ~_# 
\akh quince / _# 
\acl quinci / ~_# 
\acl quinci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl quince +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl quinci / ~_# 
\akl quinci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl quince +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame quinci / ~_# 
\ame quince / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="4563c04a-ebe3-4899-8d67-53d326bf45c2" ownerguid="63802f24-056b-41b9-9046-1daf869fa622"> -<Form> -<AUni ws="qvm-x-ach">tsagla</AUni> -<AUni ws="qvm-x-acl">tsagla</AUni> -<AUni ws="qvm-x-akh">tsaqla</AUni> -<AUni ws="qvm-x-akl">tsaqla</AUni> -<AUni ws="qvm-x-ame">tsaqla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PunctuationForm" guid="456475cd-105f-4c26-ba26-702731860a85"> -<Form> -<Str> -<Run ws="en">ft</Run> -</Str> -</Form> -</rt> -<rt class="LexSense" guid="456552fb-7cdd-4623-a027-9fc9e5b570c3" ownerguid="7b99fdad-75ad-4feb-b422-380ab400d4d3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="92e88636-2f98-40b2-869d-ce2cf36e8e55" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="4c0514ee-1e8b-4a76-a974-8883627eea91" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="456fddad-4812-4b99-b660-1973d6e53b06" ownerguid="2c4232f4-aaca-48a0-9037-a28ba6056c1d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</Msa> -<Sense> -<objsur guid="80f44d0c-72fe-4b3c-b505-6b06de3ee220" t="r" /> -</Sense> -</rt> -<rt class="CmSemanticDomain" guid="457231c8-4eb6-4460-aa45-3e9f2c4e8975" ownerguid="18a6684f-d324-45ee-855c-44d473916b14"> -<Abbreviation> -<AUni ws="en">8.4.6.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.660" /> -<DateModified val="2022-9-23 16:55:8.660" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to something happening once.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Once</AUni> -</Name> -<Questions> -<objsur guid="d4392a18-f265-4304-92a9-5a0512ac9271" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="2351f52a-8822-46ad-99c4-7ef526e94a6f" t="o" /> -<objsur guid="776de0c6-fdd7-46df-b33f-b1e4af6ee099" t="o" /> -<objsur guid="12f12bf3-f232-4477-bf39-d91b7f55c2c3" t="o" /> -<objsur guid="03d65d0c-aafb-40c0-9cd2-3e5ced66ad03" t="o" /> -<objsur guid="1c8da3aa-3c74-4188-8949-5ab82fc1f99c" t="o" /> -<objsur guid="4e2adaed-145e-45fc-8448-81c0bd47c414" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="45741e2e-7c3c-4541-a936-1eb36c6015df" ownerguid="03e22b05-8505-442d-9c3b-7e691bd525e0"> -<ExampleWords> -<AUni ws="en">perfume, deodorant, scent, oil, fat, aftershave</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What materials are used to anoint the body?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="4578750f-42d2-4504-b625-7d070df56dc6"> -<Analyses> -<objsur guid="40d0a9f2-1c32-4753-90ff-ff46d203ea0b" t="o" /> -</Analyses> -<Checksum val="1624001974" /> -<Form> -<AUni ws="qvm-x-akh">vïnuta</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="45787b08-5cfa-4fc6-9e83-35e2c2b509df" ownerguid="e9cafabe-f0f7-4142-a6f6-d1c94bdc4b5c"> -<ExampleWords> -<AUni ws="en">half empty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to something being partly empty?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="4578c1e5-bf5a-4c1a-830b-777903fc53ce" ownerguid="f8e9778a-93f5-431d-8c9f-7fc4d90e45f7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b43ad487-6e73-48ff-9ec0-62d0371aba88" t="r" /> -</Morph> -<Msa> -<objsur guid="b0ee83ce-c1ff-41c7-8aa1-b6e53ae19ebd" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="457916a6-5350-4431-960d-1b12208239f1" ownerguid="d20a7f46-1849-488e-8262-93a0167d4210"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="457b9098-4e4c-41cf-9a91-c2cf5be1e867"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gayash</AUni> -<AUni ws="qvm-x-acl">gayash</AUni> -<AUni ws="qvm-x-akh">qayash</AUni> -<AUni ws="qvm-x-akl">qayash</AUni> -<AUni ws="qvm-x-ame">qayash</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qayash</AUni> -<AUni ws="qvm-x-acl">*qayash</AUni> -<AUni ws="qvm-x-akh">*qayash</AUni> -<AUni ws="qvm-x-akl">*qayash</AUni> -<AUni ws="qvm-x-ame">*qayash</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.165" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d651a356-38f3-4951-a5df-b7665b99e55c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qayash</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d086d43a-9db6-4f58-8a05-b04f0e3e77c0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="185aa155-3604-4c14-a1c1-4d5b1f7a509a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qayash 
\entryTyp root 
\gENG 
\gSPN 
\e *qayash 
\c N0 
\mp +FinalC 
\ach gayash 
\akh qayash 
\acl gayash 
\akl qayash 
\ame qayash</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="457efa3a-da3c-48bf-bcc3-8d86de546a07" ownerguid="77c8ee61-3a38-4a42-9514-7aa13cfb324b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="4583acb9-6886-40b0-b40d-a8c029e1bbf7" ownerguid="7eb75846-e4f3-4427-90ec-e4808da9c8c2"> -<Form> -<AUni ws="qvm-x-ach">ejemplu; ejemplo</AUni> -<AUni ws="qvm-x-acl">ejemplu; ejemplu; ejemplo</AUni> -<AUni ws="qvm-x-akh">ejemplu; ejemplo</AUni> -<AUni ws="qvm-x-akl">ejemplu; ejemplu; ejemplo</AUni> -<AUni ws="qvm-x-ame">ejemplu; ejemplo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="45846476-db8b-4639-bef8-780e6651a907" ownerguid="470a2533-b4f5-47bb-a8a1-1b1322b66049"> -<Form> -<AUni ws="qvm-x-ach">mu</AUni> -<AUni ws="qvm-x-acl">mu; mo</AUni> -<AUni ws="qvm-x-akh">mu</AUni> -<AUni ws="qvm-x-akl">mu; mo</AUni> -<AUni ws="qvm-x-ame">mu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="45876ad9-ee4e-4bea-afff-662e47a4cc33" ownerguid="b550442e-7f07-41fb-a54c-9f456d5b171d"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2ki 9.24 Tsaypitana Jehúga flëchanta aptarcur Joramta flechaycorgan. Tsaymi wagtanpa yaycur puywayninpa pasargan. Tsaynogpami Joram cärrulancho wanorgan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="458773e1-8dde-491f-9f83-ff1510addf75" ownerguid="72a7faef-6f1d-40fb-a97b-88731154eaca"> -<Form> -<AUni ws="qvm-x-ach">testïgu</AUni> -<AUni ws="qvm-x-acl">testïgu; testïgu; testïgo</AUni> -<AUni ws="qvm-x-akh">testïgu</AUni> -<AUni ws="qvm-x-akl">testïgu; testïgu; testïgo</AUni> -<AUni ws="qvm-x-ame">testïgu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="458786d0-3316-4a1f-8763-1bd3351df8ac" ownerguid="bb438dc5-9f54-4bc3-b5ad-ec1f6b93d0d8"> -<Form> -<AUni ws="qvm-x-ach">tren; tren</AUni> -<AUni ws="qvm-x-acl">tren; tren</AUni> -<AUni ws="qvm-x-akh">tren; tren</AUni> -<AUni ws="qvm-x-akl">tren; tren</AUni> -<AUni ws="qvm-x-ame">tren; tren</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="45884958-cb02-40e9-9000-1ea70cc08a56" ownerguid="aec8c246-0ef7-414a-94a6-b9fdd6812a7c"> -<ExampleWords> -<AUni ws="en">upper class, aristocracy, privileged, elite, titled, posh, your betters, rich</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person belonging to a higher class?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="45888c6c-1957-4291-a74c-fd9d3dcb8d5b" ownerguid="9f868391-f1df-4682-bdcb-2c2c799006cf"> -<ExampleWords> -<AUni ws="en">remember, recall, remind oneself, call to mind, bring to mind, think of, recognize, recognition, recollect, review, come (back) to, mindful, heed, think, in retrospect</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to remembering something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="45898ca3-17a6-4535-b3ab-7760cb4efb71" ownerguid="7c234ccc-0dbe-42b0-a377-db99ebd2b51e"> -<ExampleWords> -<AUni ws="en">butcher, skin, pluck feathers, render</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words are used for processing dead animals?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="458a0fd9-0a16-4533-af31-9c0d4c0f6449" ownerguid="c6132280-d2aa-46f8-9e94-b087dbda09cb"> -<ExampleWords> -<AUni ws="en">unsteady, unstable, precarious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that is not balanced?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="45900a7b-693d-4dd4-b12a-43061759f432" ownerguid="e087f00c-9a8c-415b-ab2c-368083838183"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">blade</AUni> -<AUni ws="es">hoja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cc18a69b-06f9-420a-859b-cf69fb23f67b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4590bde1-a076-4e24-bed0-92e5109352d3" ownerguid="d27a5602-ece1-452e-9ed6-7261082dc8b8"> -<ExampleWords> -<AUni ws="en">soon, sooner, almost, approach, close, directly, imminence, imminent, impending, near, presently, quickly, shortly, about to, in a little while, not long, won't be long, almost here, just around the corner, in the near future, about to happen, any minute (now), in a minute, in a moment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that an event will happen soon?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="45961110-4386-4c10-9b38-f378cec5f97d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">napag</AUni> -<AUni ws="qvm-x-acl">napag</AUni> -<AUni ws="qvm-x-akh">napaq</AUni> -<AUni ws="qvm-x-akl">napaq</AUni> -<AUni ws="qvm-x-ame">napaq</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.538" /> -<DateModified val="2022-10-15 16:7:18.545" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="640e3dd8-563f-4729-8873-67d75782032c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">NOM12PUR1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6418da9a-4b09-47ef-85d7-918125e834ac" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="48efac87-ed87-4f3f-ae34-b70db60ede97" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx NOM12PUR1 
\entryTyp suffix 
\gENG NOM12PUR1 
\gSPN NOM12PRO1 
\e NOM12PUR1 
\c V1/N0 V2/N0 
\o 120 
\mp NeverForeshortened 
\ach napag 
\akh napaq 
\acl napag 
\akl napaq 
\ame napaq 
\mp +FinalC 
\mcc NOM12PUR1 / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="45972961-d407-466e-af83-7592ac7d2516" ownerguid="c3961388-cc50-4ea3-9095-2f023672fccb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="45977dd9-57df-4a4c-8612-8dab353e1416"> -<Analyses> -<objsur guid="8adc2568-cd8b-4015-b533-e20686c33474" t="o" /> -</Analyses> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">rikashqaykiqa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="45993c48-3893-4d9e-96a3-b6b1ad160538" ownerguid="ff736f67-197b-46b9-bc14-edbeb1fb3d5a"> -<Abbreviation> -<AUni ws="en">6.8.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being poor.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>57F Be Poor, Be Needy, Poverty; 57S Be a Financial Burden</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Poor</AUni> -</Name> -<OcmCodes> -<Uni>735 Poverty</Uni> -</OcmCodes> -<Questions> -<objsur guid="1fa9a06e-0c38-4483-926f-b68732e8057e" t="o" /> -<objsur guid="2f39e518-401f-458a-a713-f05d354a7570" t="o" /> -<objsur guid="1f784ba9-27d3-4ab2-acb6-020926ba4cb1" t="o" /> -<objsur guid="40e79867-912f-4c5f-80ee-3f53013d3f6f" t="o" /> -<objsur guid="e6ac4535-9775-4dab-a41b-5d4837310a15" t="o" /> -<objsur guid="750b9a59-29c6-4812-8266-8f281957469b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="459a99e9-38af-42aa-8980-335994235ad2" ownerguid="79eb8229-3c23-4396-979d-b6911f63feda"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="603e3b65-2a91-41c6-bd1f-9edca1bc093d" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">iron</AUni> -<AUni ws="es">fierra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1f0b8038-e9da-4275-98da-bc5699190b8b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="459c5844-f4e3-471d-98f9-7d1b347815e8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bolsita</AUni> -<AUni ws="qvm-x-acl">bolsita</AUni> -<AUni ws="qvm-x-akh">bolsita</AUni> -<AUni ws="qvm-x-akl">bolsita</AUni> -<AUni ws="qvm-x-ame">bolsita</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bolsita</AUni> -<AUni ws="qvm-x-acl">+bolsita</AUni> -<AUni ws="qvm-x-akh">+bolsita</AUni> -<AUni ws="qvm-x-akl">+bolsita</AUni> -<AUni ws="qvm-x-ame">+bolsita</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.971" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7cffba05-bace-49ce-8ab8-dffa963e7518" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bolsita</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fb7b9804-c55a-480f-b417-9762e1e8bb4b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="77ff4cc0-dd88-43ac-a0e3-280fb51baa98" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bolsita 
\entryTyp root 
\gENG 
\gSPN 
\e +bolsita 
\c N0 
\ach bolsita 
\akh bolsita 
\acl bolsita 
\akl bolsita 
\ame bolsita</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="45a58c8c-c677-4b61-ae5c-0ff94001e441" ownerguid="d7da5318-dccf-477f-967d-1e3f6a421860"> -<ExampleWords> -<AUni ws="en">chicken, rooster, cock, hen, chick</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to chickens?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="45a8e1b4-b096-4303-8422-479bd6971fd1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gueshya</AUni> -<AUni ws="qvm-x-acl">gueshya</AUni> -<AUni ws="qvm-x-akh">qeshya</AUni> -<AUni ws="qvm-x-akl">qeshya</AUni> -<AUni ws="qvm-x-ame">qishya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qishya.n</AUni> -<AUni ws="qvm-x-acl">*qishya.n</AUni> -<AUni ws="qvm-x-akh">*qishya.n</AUni> -<AUni ws="qvm-x-akl">*qishya.n</AUni> -<AUni ws="qvm-x-ame">*qishya.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.209" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3939e395-b73c-4341-9dba-98306f089e4c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qishya.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="65910896-de23-43b1-8270-2aa93cea2e3f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1ae12111-7ec7-48de-9ecd-014df611fc32" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qishya.n 
\entryTyp root 
\gENG sick 
\gSPN enfermo 
\e *qishya.n 
\c N0 
\ach gueshya 
\akh qeshya 
\acl gueshya 
\akl qeshya 
\ame qishya 
\i Gammi canqui geshya. - no respteta a su padre ni a su madre.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="45aaa853-b4ed-4776-aa0b-aa3187ffd85b" ownerguid="6b36eca1-0b5d-4a4a-8756-dafc44e18693"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="7134c89c-dcac-4638-afc5-f5174a77c196" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="af874bf2-8d9e-4b36-ba5f-6fbb3e3f8473" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoAffixAllomorph" guid="45abef39-f5af-43f9-87ab-4dc22dd0c6bf" ownerguid="88f84df5-8e9a-4b0a-8efc-563d5b35858c"> -<Form> -<AUni ws="qvm-x-ach">shti</AUni> -<AUni ws="qvm-x-acl">shti</AUni> -<AUni ws="qvm-x-akh">shti</AUni> -<AUni ws="qvm-x-akl">shti</AUni> -<AUni ws="qvm-x-ame">shti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="45adaf53-1e9d-47fe-b757-051882f67185" ownerguid="0c5e2310-1d3a-4460-987f-dfdfecc5090d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">lapa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">lapa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">lapa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">lapa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">lapa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="0655d4c4-dcff-4fca-931a-8964415a96b4" t="r" /> -</Morph> -<Msa> -<objsur guid="b16d0818-05dc-49f7-8cdf-889b0be5517e" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="45b07db7-67ef-46cf-9506-8e69a0baec81"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">manca</AUni> -<AUni ws="qvm-x-acl">manca</AUni> -<AUni ws="qvm-x-akh">manka</AUni> -<AUni ws="qvm-x-akl">manka</AUni> -<AUni ws="qvm-x-ame">manka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*manka</AUni> -<AUni ws="qvm-x-acl">*manka</AUni> -<AUni ws="qvm-x-akh">*manka</AUni> -<AUni ws="qvm-x-akl">*manka</AUni> -<AUni ws="qvm-x-ame">*manka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.315" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="03f918fc-f1ac-4af4-b007-c966364086ff" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*manka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="38234dbe-a513-4112-bd69-b22ad6b39cec" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b314c1b0-044f-461b-8eb9-8843da556309" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *manka 
\entryTyp root 
\gENG pot 
\gSPN olla 
\e *manka 
\c N0 
\ach manca 
\akh manka 
\acl manca 
\akl manka 
\ame manka</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="45b23172-42ed-4b6c-970f-95fcd4098939" ownerguid="30fff450-1aa5-4993-9c14-c8019a5f072e"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">I think this is true, <but> I also think that is true.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">but, however, on the other hand, at the same time, having said that, mind you</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that an opinion is different than the opinion you have just given?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="45b4467f-ad4b-4f30-aec6-97c476a4c673" ownerguid="e3ef35b7-abc6-41f0-bc90-2d5bee99160e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="36bb9636-ba59-4721-8c18-f1f55bf290a4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="45b7dcce-21d5-4738-a64d-e8b0be8a1824" ownerguid="706cb38c-9aca-4e2f-9653-d9562f07331c"> -<Abbreviation> -<AUni ws="en">8.3.1.8.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.609" /> -<DateModified val="2022-9-23 16:55:8.609" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that describe something that is symmetrical--having the same shape on both sides</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Symmetrical</AUni> -</Name> -<Questions> -<objsur guid="af5bda30-0917-4d35-87dc-c4e4ef2b4598" t="o" /> -<objsur guid="7d98cd0a-43b7-4493-b372-6449016dae91" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="45b7dddf-0ddc-4668-b540-7b7c9a877341" ownerguid="32a771fb-3657-4ff5-8add-839d2155f876"> -<Form> -<AUni ws="qvm-x-ach">ëra</AUni> -<AUni ws="qvm-x-acl">ëra</AUni> -<AUni ws="qvm-x-akh">ëra</AUni> -<AUni ws="qvm-x-akl">ëra</AUni> -<AUni ws="qvm-x-ame">ëra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="45b96660-bae6-4f6c-9f8e-94e59822f0da" ownerguid="db8e775d-498e-4d81-a4bc-892e50922bf9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">frog</AUni> -<AUni ws="es">sapo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="246c3bdf-44d3-484b-8f92-4db257f7e134" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="45b9bf61-3138-4206-9478-b4d3f082358b" ownerguid="ec1bcace-fc10-45df-8e1f-29bce1ef786a"> -<Abbreviation> -<AUni ws="en">3.5.1.4.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.162" /> -<DateModified val="2022-9-23 16:55:8.162" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to speaking in unison--to say something at the same time as someone else.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Speak in unison</AUni> -</Name> -<Questions> -<objsur guid="c2379025-b8a7-4cae-80bb-d91a809f38ee" t="o" /> -<objsur guid="e1cd0726-02f0-424c-a325-3c38a433d2ca" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="45bdf85a-69d5-4df3-bd75-00c024807a00" ownerguid="b8607306-f586-4f9d-83a3-3250c0ee2100"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="45bef8a9-d44e-4f91-a2c5-44edb458005e" ownerguid="3eea2cba-44f3-4381-8cc2-dcb00d88a7cd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sponge</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="128edf2b-37fe-4e2e-8d42-c840ca63a159" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="45c26417-3c0d-4cf2-8693-dda2e4c5aa17" ownerguid="8d5c28b8-91be-40b0-b6c2-4d5adbb495a3"> -<ExampleWords> -<AUni ws="en">abomination, execration</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something that causes someone to feel disgusted?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="45c2a471-8633-4a6d-aa46-08d73f88f084" ownerguid="9f0feef6-9a5f-4a9a-9a1d-9ee2874e71ee"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="45c6d442-44ca-454e-a7a7-0eca0cc0f675" ownerguid="3d6216c5-5f8d-4ffa-bc97-c68b63b9fd49"> -<Form> -<AUni ws="qvm-x-ach">halcón; halcon</AUni> -<AUni ws="qvm-x-acl">halcón; halcon</AUni> -<AUni ws="qvm-x-akh">halcón; halcon</AUni> -<AUni ws="qvm-x-akl">halcón; halcon</AUni> -<AUni ws="qvm-x-ame">halcón; halcon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="45c97005-9fa6-4d48-9137-75723dba1437" ownerguid="716b3e9d-9bb9-42a6-ba56-829b1c018b28"> -<ExampleWords> -<AUni ws="en">keep house, housework, housekeeping</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to managing a house?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="45d0e714-a951-4ecb-b61a-042e3ce6e60f" ownerguid="8efb07c6-ea3b-4bc6-a72d-fccbfe0091f5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">ají</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2205bcf2-0fb7-46f2-82a1-f53fa4d2c8ae" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="45d0ff9b-a112-4b0b-bfe1-865035b32cbb" ownerguid="e04b105d-9953-440d-8bc8-dca94eec22df"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">warrior</AUni> -<AUni ws="es">campeador</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5b0843d6-bd2e-400c-ae0a-9e277a95ba9e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="45d7089d-9776-4897-86d0-f650778dfa5d" ownerguid="c345f278-91ff-463d-b9a6-8abac8a267eb"> -<ExampleWords> -<AUni ws="en">bracken, brake, fern, maidenhair</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What species of ferns are there?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="45d7ff0f-9f70-4e0f-a2f8-a0d58f061e97" ownerguid="8c59455f-304b-4424-b296-b362aaebbc4c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="45d80a0b-dc9c-49ec-ba53-0031a75347c4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mastil</AUni> -<AUni ws="qvm-x-acl">mastil</AUni> -<AUni ws="qvm-x-akh">mastil</AUni> -<AUni ws="qvm-x-akl">mastil</AUni> -<AUni ws="qvm-x-ame">mastil</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mastil</AUni> -<AUni ws="qvm-x-acl">+mastil</AUni> -<AUni ws="qvm-x-akh">+mastil</AUni> -<AUni ws="qvm-x-akl">+mastil</AUni> -<AUni ws="qvm-x-ame">+mastil</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.356" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="55622904-f2be-42e8-96e4-6df71db64dbe" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mastil</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="62aecab8-0725-40d7-ae0b-00cef9683136" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b828d8ad-cd61-41bb-86b7-a235816eb6dd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mastil 
\entryTyp root 
\gENG mast 
\gSPN mastil 
\e +mastil 
\c N0 
\mp NeverLowered 
\ach mastil 
\akh mastil 
\acl mastil 
\akl mastil 
\ame mastil 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="45d867c7-8496-4c92-bb41-b7db5db47717" ownerguid="b1688009-474d-4e2e-a137-acc1e32a435f"> -<Abbreviation> -<AUni ws="en">8.2.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.589" /> -<DateModified val="2022-9-23 16:55:8.589" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing a person or animal who is fat.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>81D Narrow, Wide</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Fat person</AUni> -</Name> -<Questions> -<objsur guid="04856c48-d590-4a24-8c2f-65e2f090a7a6" t="o" /> -<objsur guid="ce28c3b7-b739-4c55-be8f-1a1e86b56dac" t="o" /> -<objsur guid="c2798de5-f2b1-4545-83ec-9bc463b2466c" t="o" /> -<objsur guid="1d0f07fd-0d93-49a4-b3b1-cf9ac24a9f0f" t="o" /> -<objsur guid="78883e8e-3b07-481e-901c-499520adf775" t="o" /> -<objsur guid="ad68c6d7-53c1-4163-962c-5cf73a2cd717" t="o" /> -<objsur guid="14006bf5-5e76-480c-8d47-5721792c53b1" t="o" /> -<objsur guid="34f727c7-dd53-42e8-85b2-641018b3a78e" t="o" /> -<objsur guid="919b74ba-29ce-4142-b915-e3cb74ffb7d9" t="o" /> -<objsur guid="91cdf4e0-a3e3-46a2-a289-eb9953e963b8" t="o" /> -<objsur guid="9c7198df-3bf1-4a1f-82a3-0287ef370c5c" t="o" /> -<objsur guid="a6b89391-baf0-4986-912a-9dc2dfccf4ec" t="o" /> -<objsur guid="2234e787-90bb-4d10-9cc0-793719da9ba2" t="o" /> -<objsur guid="4f6570ba-a7ee-4a20-a9d2-c6e49a14ca1e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="45d9111d-8c42-4376-b629-1117fc570c7a" ownerguid="8fbed974-7d25-44c3-80cb-7d02e4069007"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">the cup<'s> <contents></Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(7) In English 'Containership' can be expressed by a possession phrase with the 'Container' in the first position and the word 'contents' in the second position.</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="45db111d-df17-4294-8ff2-d8d200456b8a" ownerguid="087cf060-df49-4b7f-a051-53c4e577d88d"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 23.16 Tsaypita yapay fiestata ruranqui puntacag cosëchata shuntarcur. Nircur fiestata yapay ruranqui ultima cosëchata shuntayta usharcur.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="45dc04b4-61b1-4c0e-8234-51d26a0e0779" ownerguid="b3ff132a-ac26-4c51-a325-be3beb92c8e0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="04cdf031-7e01-43f3-a0c1-18e77f69fe6e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="45df4e1c-e47e-4d67-8c6b-9e6f358bef57" ownerguid="24361be2-49be-4860-bb56-4e46dd1e8b0c"> -<ExampleWords> -<AUni ws="en">taboo, prohibition</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a cultural restriction on behavior?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="45e2aadb-03d3-439a-bb60-04de139cd53f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ata</AUni> -<AUni ws="qvm-x-acl">ata</AUni> -<AUni ws="qvm-x-akh">ata</AUni> -<AUni ws="qvm-x-akl">ata</AUni> -<AUni ws="qvm-x-ame">ata</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ata.n</AUni> -<AUni ws="qvm-x-acl">*ata.n</AUni> -<AUni ws="qvm-x-akh">*ata.n</AUni> -<AUni ws="qvm-x-akl">*ata.n</AUni> -<AUni ws="qvm-x-ame">*ata.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.860" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b6c3ec08-ec43-4e37-9526-1d8ff0501e48" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ata.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d282e7c6-3673-4cc4-859f-59230b38c8ae" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aec88692-9587-4e39-903c-dc7607c4e9fd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ata.n 
\entryTyp root 
\gENG large 
\gSPN largo 
\e *ata.n 
\c N0 
\ach ata 
\akh ata 
\acl ata 
\akl ata 
\ame ata 
\mcc *ata.n / ~_ DEF</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="45e44918-e6f5-4e16-905f-d52aad4ca756" ownerguid="c029eed8-2ec0-4f6f-aa22-3a066bb23ea6"> -<ExampleWords> -<AUni ws="en">and, also, furthermore, moreover, what's more, besides, by the way, incidentally</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that you are adding something new to what you just said?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="45e5f48c-830f-4aba-9b99-0c93b0eda4f7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sanitariu; sanitario</AUni> -<AUni ws="qvm-x-acl">sanitariu; sanitariu; sanitario</AUni> -<AUni ws="qvm-x-akh">sanitariu; sanitario</AUni> -<AUni ws="qvm-x-akl">sanitariu; sanitariu; sanitario</AUni> -<AUni ws="qvm-x-ame">sanitariu; sanitario</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sanitario</AUni> -<AUni ws="qvm-x-acl">+sanitario</AUni> -<AUni ws="qvm-x-akh">+sanitario</AUni> -<AUni ws="qvm-x-akl">+sanitario</AUni> -<AUni ws="qvm-x-ame">+sanitario</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.439" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5e424df6-8fb1-422f-886f-52a7509f73ea" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sanitario</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="292f8871-7c28-49a3-af98-7fe14c5e0efa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="178b53a6-be1b-45ea-8ace-992938a1b246" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sanitario 
\entryTyp root 
\gENG clinic 
\gSPN sanitario 
\e +sanitario 
\c N0 
\ach sanitariu / ~_# 
\ach sanitario / _# 
\akh sanitariu / ~_# 
\akh sanitario / _# 
\acl sanitariu / ~_# 
\acl sanitariu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sanitario +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sanitariu / ~_# 
\akl sanitariu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sanitario +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sanitariu / ~_# 
\ame sanitario / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="45e663c0-f1ab-4147-9f68-7423ca1d9680" ownerguid="34ef7b53-7747-4698-ac51-d88d86d827d5"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ISA 3.19 Tsaynoglami ushacätsenga walgancunata y brasilëtancunata, umancho jatirashgan vinchïllancunata</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="45e90d41-a462-4671-968f-92166378b3f0" ownerguid="9f868391-f1df-4682-bdcb-2c2c799006cf"> -<Abbreviation> -<AUni ws="en">3.2.6.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to reminding someone about something--to make someone remember something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Remind</AUni> -</Name> -<Questions> -<objsur guid="2c0aab81-a82e-424f-ab74-7571776108b4" t="o" /> -<objsur guid="68897640-536a-4bf2-b316-43e8b863c851" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="45e9af1c-d7fd-45e4-8d6a-a720b363a47f" ownerguid="8c41d2d1-6da6-4ab8-8b29-7e226192d64e"> -<ExampleWords> -<AUni ws="en">coagulate, staunch, to stop bleeding, to block bleeding, apply a tourniquet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to stopping bleeding?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="45ebfa40-e500-45d6-b0dd-f61a14c0c832"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jurca</AUni> -<AUni ws="qvm-x-acl">jurca</AUni> -<AUni ws="qvm-x-akh">jurka</AUni> -<AUni ws="qvm-x-akl">jurka</AUni> -<AUni ws="qvm-x-ame">hurka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ahorcar</AUni> -<AUni ws="qvm-x-acl">+ahorcar</AUni> -<AUni ws="qvm-x-akh">+ahorcar</AUni> -<AUni ws="qvm-x-akl">+ahorcar</AUni> -<AUni ws="qvm-x-ame">+ahorcar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.669" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="beac6dd3-9b8b-4ca5-804c-2f72c2c50c0b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ahorcar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bb44a23b-2836-4029-8de1-ce58d2682d82" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2d11cf4e-e2bd-4ff1-8c9e-b582d307e1fd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ahorcar 
\entryTyp root 
\gENG hang 
\gSPN colgar 
\e +ahorcar 
\c V2 
\mp +assimilated 
\ach jurca 
\akh jurka 
\acl jurca 
\akl jurka 
\ame hurka 
\mp KQWchange 
\i JOB 7.15 Tsaynog nacatsimänayquipa trucanga alimi canman jucla jurcaramaptiqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="45ec0e66-92e7-40f6-8b61-0853e75aa801" ownerguid="5c6cdea6-6fd5-4cc0-b744-d1a278ce3802"> -<Form> -<AUni ws="qvm-x-ach">ishcani</AUni> -<AUni ws="qvm-x-acl">ishcani; ishcani; ishcane</AUni> -<AUni ws="qvm-x-akh">ishkani</AUni> -<AUni ws="qvm-x-akl">ishkani; ishkani; ishkane</AUni> -<AUni ws="qvm-x-ame">ishkani</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="45ecdf38-a66d-4ed7-a47c-0757359db0c3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">riya</AUni> -<AUni ws="qvm-x-acl">riya</AUni> -<AUni ws="qvm-x-akh">riya</AUni> -<AUni ws="qvm-x-akl">riya</AUni> -<AUni ws="qvm-x-ame">riya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*riya</AUni> -<AUni ws="qvm-x-acl">*riya</AUni> -<AUni ws="qvm-x-akh">*riya</AUni> -<AUni ws="qvm-x-akl">*riya</AUni> -<AUni ws="qvm-x-ame">*riya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.368" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dd7793d5-bb5e-41cf-bb0f-8a25cc707179" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*riya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7d31ada1-8fca-4d89-8a40-53e346dc7022" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="86ee3f43-147b-4d01-b04c-3a502f602bd7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *riya 
\entryTyp root 
\gENG be.awake 
\gSPN despertado 
\e *riya 
\c V1 
\ach riya 
\akh riya 
\acl riya 
\akl riya 
\ame riya</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="45ecf038-d244-4f96-a002-9d30d505854e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sobornu</AUni> -<AUni ws="qvm-x-acl">sobornu; soborno</AUni> -<AUni ws="qvm-x-akh">sobornu</AUni> -<AUni ws="qvm-x-akl">sobornu; soborno</AUni> -<AUni ws="qvm-x-ame">sobornu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sobornar.2</AUni> -<AUni ws="qvm-x-acl">+sobornar.2</AUni> -<AUni ws="qvm-x-akh">+sobornar.2</AUni> -<AUni ws="qvm-x-akl">+sobornar.2</AUni> -<AUni ws="qvm-x-ame">+sobornar.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.713" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ba6157fd-7cde-47dc-87f4-3a92d09a1bc3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sobornar.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a1987332-8f72-4b38-b7a3-401428860e58" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1adae7ed-9c1e-4d57-99af-d8bd12a8b27e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sobornar.2 
\entryTyp root 
\gENG 
\gSPN 
\e +sobornar.2 
\c V1 
\ach sobornu 
\akh sobornu 
\acl sobornu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl soborno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sobornu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl soborno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sobornu 
\i PRO 17.8 Sobornuyta yachagcunaga pïmaytapis aunitsir yarpapäcun imatapis munashganta tarinanpag cashganta.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="45ee122c-0ca9-49a9-ac29-03449edd785e" ownerguid="388c9942-b41e-41ad-8f88-be1c6ce83740"> -<Form> -<AUni ws="qvm-x-ach">moguru</AUni> -<AUni ws="qvm-x-acl">moguru; moguru; moguro</AUni> -<AUni ws="qvm-x-akh">moquru</AUni> -<AUni ws="qvm-x-akl">moquru; moquru; moquro</AUni> -<AUni ws="qvm-x-ame">muquru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="45ee963d-2666-443c-8098-defa07c513e0" ownerguid="35acdd1a-0ca5-446c-9192-97c42b36a3f3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="45f069f0-baf9-4baa-a728-f1e8179ac856" ownerguid="cf337287-c9fa-43d2-93c4-284f45e262c0"> -<ExampleWords> -<AUni ws="en">acute, chronic, bacterial, complication, critical, curable, degenerative, genetic, morbid, nervous, neuromuscular, psychosomatic, virus, wasting</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a type of disease?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="45f14fc7-ba1d-4bed-b30c-2ad3696cf569" ownerguid="bc102db5-fe31-4be6-8c2e-b6d2a9d035ae"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="45f353c5-a14f-4e8b-98b8-3bb716e9ff50" ownerguid="dace36d2-c5b0-4cab-b117-d108def0b77e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Lev 21.18 Tsauraga mandag cüra cananpag manami yaycunmantsu gapracuna, wegrucuna, segru cäracuna, macllucuna,</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="45f6509c-9505-4682-b35c-762748f627da" ownerguid="f89a6e08-7ed6-41aa-930a-5bb555ad44fe"> -<Form> -<AUni ws="qvm-x-ach">turish</AUni> -<AUni ws="qvm-x-acl">turish</AUni> -<AUni ws="qvm-x-akh">turish</AUni> -<AUni ws="qvm-x-akl">turish</AUni> -<AUni ws="qvm-x-ame">turish</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="45f77f51-85cc-44ec-a2b3-25faf7b4db44" ownerguid="f3fa8080-c9e1-460c-bcd0-7ff404979d06"> -<Form> -<AUni ws="qvm-x-ach">mëdicu</AUni> -<AUni ws="qvm-x-acl">mëdicu; mëdicu; mëdico</AUni> -<AUni ws="qvm-x-akh">mëdicu</AUni> -<AUni ws="qvm-x-akl">mëdicu; mëdicu; mëdico</AUni> -<AUni ws="qvm-x-ame">mëdicu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="45f7b003-ade3-4efc-8dee-259dcbf80a4a" ownerguid="b50f39cb-3152-4d56-9ddc-4b98f763e76a"> -<Abbreviation> -<AUni ws="en">3.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to requesting something--to ask for something, or ask someone to do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33L Ask For, Request</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Request</AUni> -</Name> -<Questions> -<objsur guid="775c7ec2-59db-42d6-bc37-3b277910d9c2" t="o" /> -<objsur guid="2edb948e-b447-4ead-8b03-40d8d3e94ba4" t="o" /> -<objsur guid="5eed97ab-9230-4762-8aa3-adc466392ef3" t="o" /> -<objsur guid="0cf3ad40-3c3b-48b9-b3c1-cc878989c37e" t="o" /> -<objsur guid="cba2de81-e6ac-4c25-981c-cda17b808635" t="o" /> -<objsur guid="22fcb968-b0fb-48e9-8958-3e0c8cd4d3cc" t="o" /> -<objsur guid="3d575c2a-3e4c-4b89-b66a-9bd3bfb6190a" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="d2e73238-ff99-4ba3-8ce6-d8ae98721710" t="o" /> -<objsur guid="1137590c-6f2f-4b69-b04e-f6a890a335a2" t="o" /> -<objsur guid="593073d6-9893-4670-98fb-c485406a950b" t="o" /> -<objsur guid="6b19e828-f597-4d0d-b7a6-f52f3bbd041f" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="45fd5836-31c6-432f-a32a-bcfe497fe58b" ownerguid="a64236c5-ef12-4544-bd67-a0ef28748feb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ravine</AUni> -<AUni ws="es">quebrada</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="161e9c9e-26b3-4a34-8547-0110d48c8bc7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4603a69d-8ef2-4bff-834f-4482effaf23e" ownerguid="7cf6312e-f9f0-49e8-ae60-7677fac86c3f"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Four <minus> two equals two.; Two <subtracted from> four equals two.; Two <from> four is two.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">minus, subtracted from, from, less</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used for subtraction equations?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4605225a-e36b-4bc6-a068-48fe8b6f0e68" ownerguid="dd4d8f22-2c30-4e2e-a548-6f22752ba2b3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">friendly</AUni> -<AUni ws="es">amigable</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7cf74dda-a329-4046-9380-848d17d0def4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4606ea7a-e89e-4184-89f6-5fce0274d4b4" ownerguid="aa57936d-f8a9-4603-8c3d-27abccd13531"> -<ExampleWords> -<AUni ws="en">pollute, pollution, pollutant, acid rain, smog, deforestation, global warming, greenhouse effect</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to damaging the environment?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4609249f-fc65-43d9-b5ba-62578123ac28" ownerguid="3cbc6885-f099-454f-a0c3-ebbb708e04f6"> -<Form> -<AUni ws="qvm-x-ach">felfa</AUni> -<AUni ws="qvm-x-acl">felfa</AUni> -<AUni ws="qvm-x-akh">felfa</AUni> -<AUni ws="qvm-x-akl">felfa</AUni> -<AUni ws="qvm-x-ame">felfa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="4612c090-2532-4391-84b0-8f1b461db9c6" ownerguid="01a27073-ca68-4d05-865a-c2f34463ddf0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">deny</AUni> -<AUni ws="es">negar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="22564611-ec0f-4491-81e5-2fb6feeac095" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="4613da0f-fc0f-4807-9538-227bd9c2a42e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">auquilu</AUni> -<AUni ws="qvm-x-acl">auquilu; auquilu; auquilo</AUni> -<AUni ws="qvm-x-akh">awkilu</AUni> -<AUni ws="qvm-x-akl">awkilu; awkilu; awkilo</AUni> -<AUni ws="qvm-x-ame">awkilu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+abuelo</AUni> -<AUni ws="qvm-x-acl">+abuelo</AUni> -<AUni ws="qvm-x-akh">+abuelo</AUni> -<AUni ws="qvm-x-akl">+abuelo</AUni> -<AUni ws="qvm-x-ame">+abuelo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.619" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eba08f04-c13d-4b74-ad3e-75d23160d6d9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+abuelo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d231c461-b7d2-477b-b126-da4ab6f4e2a5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e873873c-1f6f-41d9-8496-fce43cb14de6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +abuelo 
\entryTyp root 
\gENG grandfather 
\gSPN abuelo 
\e +abuelo 
\c N0 
\mp +assimilated 
\ach auquilu 
\akh awkilu 
\acl auquilu / _# 
\acl auquilu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl auquilo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl awkilu / _# 
\akl awkilu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl awkilo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame awkilu 
\mp KQWchange</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="46151eed-f92d-411a-8d95-08daf7a3c58b" ownerguid="a87d14bf-4739-4625-b15c-d84f973e04d2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PunctuationForm" guid="46164d9b-b934-4f5d-bab3-148eb47213e5"> -<Form> -<Str> -<Run ws="en">COND</Run> -</Str> -</Form> -</rt> -<rt class="MoStemMsa" guid="4617a2d5-7d75-4ce2-9799-d95112f278b6" ownerguid="c87f5a66-58f2-404d-9fd9-4bfd598d2009"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="461f32e5-f4f8-4e71-a1c2-b0da01c66501" ownerguid="0eeea224-1e76-4482-b357-08b14ac65edb"> -<Form> -<AUni ws="qvm-x-ach">cuñädu</AUni> -<AUni ws="qvm-x-acl">cuñädu; cuñädu; cuñädo</AUni> -<AUni ws="qvm-x-akh">cuñädu</AUni> -<AUni ws="qvm-x-akl">cuñädu; cuñädu; cuñädo</AUni> -<AUni ws="qvm-x-ame">cuñädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="461f6545-87df-4eac-bd5d-f686e4ba9892" ownerguid="f7d05cd3-a8d1-4966-ad4a-585056579f23"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JDG 16.13 Tsaynog niptin Sansón caynog nergan: <<Telarcho caycag awaman ganchis piltäta miñircur shumag tacanqui.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="46218318-888b-49d8-9ae6-47262a1626fc" ownerguid="4432db51-bbe3-46fc-9b3c-92fa775d8a7c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="46248702-8e45-4760-82d8-3ed715109b89" ownerguid="b194d54e-4876-45b0-81a5-390de1d41dc4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">game</AUni> -<AUni ws="es">partido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b5b7b0c0-8f9b-4ec5-9ca7-e94415af70a2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="4626740c-2b5d-4922-b9b1-f551d127743e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsagtsu</AUni> -<AUni ws="qvm-x-acl">tsagtsu; tsagtso</AUni> -<AUni ws="qvm-x-akh">tsaqtsu</AUni> -<AUni ws="qvm-x-akl">tsaqtsu; tsaqtso</AUni> -<AUni ws="qvm-x-ame">tsaqtsu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chaqchu</AUni> -<AUni ws="qvm-x-acl">*chaqchu</AUni> -<AUni ws="qvm-x-akh">*chaqchu</AUni> -<AUni ws="qvm-x-akl">*chaqchu</AUni> -<AUni ws="qvm-x-ame">*chaqchu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.284" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="68e5b8dd-145d-4e53-b767-e98132c6b01b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chaqchu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="90273c15-92e0-4db3-a11b-4ad2a54e93a7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="85ef9486-30c9-406c-a6b0-d98da9716711" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chaqchu 
\entryTyp root 
\gENG sprinkle 
\gSPN regar 
\e *chaqchu 
\c V2 
\ach tsagtsu 
\akh tsaqtsu 
\acl tsagtsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tsagtso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsaqtsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsaqtso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsaqtsu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="46284d00-562b-430e-90ac-608862d3d6f3" ownerguid="67d282f8-151d-429b-8183-6a7d2f5ac98d"> -<ExampleWords> -<AUni ws="en">introduction, lead-in, introductory</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to what is said when you introduce something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="462b3ad8-842e-48e6-aba8-a83606dd8a69"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsatay</AUni> -<AUni ws="qvm-x-acl">tsatay</AUni> -<AUni ws="qvm-x-akh">tsatay</AUni> -<AUni ws="qvm-x-akl">tsatay</AUni> -<AUni ws="qvm-x-ame">tsatay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chatay</AUni> -<AUni ws="qvm-x-acl">*chatay</AUni> -<AUni ws="qvm-x-akh">*chatay</AUni> -<AUni ws="qvm-x-akl">*chatay</AUni> -<AUni ws="qvm-x-ame">*chatay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.295" /> -<DateModified val="2022-10-10 21:18:47.207" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="24877c4f-ea70-4c15-906d-429fcd711307" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chatay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bf3b7475-1920-4d5b-94b6-c278488e11cf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a8b727a8-6257-4f87-a8c8-729395265fb7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chatay 
\entryTyp root 
\gENG 
\gSPN 
\e *chatay 
\c NOSUFF 
\ach tsatay 
\akh tsatay 
\acl tsatay 
\akl tsatay 
\ame tsatay</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="462bb3be-17e7-4830-8bd9-8bf041c6dec2" ownerguid="cb9f3356-5143-4671-bfd5-b97046f03937"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="462e1c6c-24b8-4820-a0a5-0a259b1fd2a2" ownerguid="e54f6ad6-aec7-4132-8c48-33922bcdde05"> -<Form> -<AUni ws="qvm-x-ach">raña</AUni> -<AUni ws="qvm-x-acl">raña</AUni> -<AUni ws="qvm-x-akh">raña</AUni> -<AUni ws="qvm-x-akl">raña</AUni> -<AUni ws="qvm-x-ame">raña</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="462f5606-5bd8-4543-aa35-26b0cffd7163" ownerguid="32125c5f-d69a-442f-ba66-6277ec0a3b15"> -<Abbreviation> -<AUni ws="en">5.2.3.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.317" /> -<DateModified val="2022-9-23 16:55:8.317" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to food from roots.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Food from roots</AUni> -</Name> -<Questions> -<objsur guid="66c95d66-9cb0-4a67-99aa-4b59c7e69457" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="4637e515-2d94-4f49-b3c7-e4fda3efe87f" ownerguid="2a2af155-9db9-41c5-860a-fe0a3a09d6de"> -<ExampleWords> -<AUni ws="en">think again, reconsider, change your mind, on second thought, on reflection</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to thinking about something again?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="463b955b-0372-4946-86f5-90c5cb4e6a06" ownerguid="60675bce-0619-4961-b3f6-7b96ecce6e7b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="2a356743-fac1-4a25-b8b8-6f1254cb0bec" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="463c78ed-2197-40dd-bc6a-6a11ad382def" ownerguid="cd436263-30a3-498c-93f6-3d5682f7f7c0"> -<ExampleWords> -<AUni ws="en">merchant, trader, salesman</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who takes something somewhere to sell it?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="463cd17a-aa94-4540-8cff-6a418e41190e" ownerguid="a33be084-0288-467a-93e9-447150d1a463"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">worn.out</AUni> -<AUni ws="es">rotoso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cb3b9850-292c-4c21-8672-3466f1368c62" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="4644ee64-a0db-4cec-97c2-16fcf1688838"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">penitencia</AUni> -<AUni ws="qvm-x-acl">penitencia</AUni> -<AUni ws="qvm-x-akh">penitencia</AUni> -<AUni ws="qvm-x-akl">penitencia</AUni> -<AUni ws="qvm-x-ame">penitencia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+penitencia</AUni> -<AUni ws="qvm-x-acl">+penitencia</AUni> -<AUni ws="qvm-x-akh">+penitencia</AUni> -<AUni ws="qvm-x-akl">+penitencia</AUni> -<AUni ws="qvm-x-ame">+penitencia</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.790" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="78dfc1fd-5b0f-4944-951b-9172333573e1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+penitencia</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cf38cd00-c2b2-44f4-8b42-decb8f956289" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c72f3b5e-c217-41f2-9f53-a9e54683d997" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +penitencia 
\entryTyp root 
\gENG 
\gSPN 
\e +penitencia 
\c N0 
\ach penitencia 
\akh penitencia 
\acl penitencia 
\akl penitencia 
\ame penitencia</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="46464918-879d-44d7-9a30-7ee3b61e3d49" ownerguid="7cf6312e-f9f0-49e8-ae60-7677fac86c3f"> -<ExampleWords> -<AUni ws="en">subtract, take, take away, deduct, subtraction</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to subtracting one number from another number?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="46479ac8-6bd3-470b-a67c-82ae073447fa" ownerguid="9750735a-736d-4aeb-afdb-74a893e08b89"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="464d5acc-577c-40e3-9d8e-b792fb1e3758" ownerguid="cef6644c-6a2c-47ac-aa2c-82463d4e5208"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">new?</AUni> -<AUni ws="es">nuevo?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a84a5dea-25af-4a21-8699-82d197cd1c1f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="464e1ace-f994-43a3-a98a-1e87fe2a2604" ownerguid="65af4e52-850e-4fbd-97c9-f89a7b307e86"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">open</AUni> -<AUni ws="es">abrir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e2c5a96f-10fb-4770-9411-8ba744f3722b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="4651aef1-e18f-481e-9c3e-d9dfff4a6b51" ownerguid="d59a84e1-5e12-4cb7-b72b-15c51810ad48"> -<Abbreviation> -<AUni ws="en">4.1.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being alone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Alone</AUni> -</Name> -<Questions> -<objsur guid="6151a550-716d-48be-abc4-6433c200a91f" t="o" /> -<objsur guid="f1759321-1be2-4af8-b00e-e2981eb96ddd" t="o" /> -<objsur guid="4e905839-77d9-4847-b232-7b3bc14cf2d4" t="o" /> -<objsur guid="7596bbc0-a25a-4162-90a5-a74cf6c76f83" t="o" /> -<objsur guid="35ccf696-a683-44f3-b126-6f63f443073b" t="o" /> -<objsur guid="b8ca097b-c514-488c-b99c-e7658b4a0cc7" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="39611e8d-cc67-4c84-977c-094c5cbe9dbc" t="r" /> -<objsur guid="611aa361-4ddd-450b-a152-94984a274575" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="465390cf-9082-4b35-96b1-0631cfe0003d" ownerguid="80563285-4de7-4040-8080-a5b22208e7d5"> -<ExampleWords> -<AUni ws="en">surround, encircle, envelope, encirclement, encircling movement, envelopment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to surrounding an enemy?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="46553b67-4c50-43b9-91d2-54f95d76cdb9" ownerguid="079abd3f-dfa3-49e0-9654-674d1816c0a8"> -<Form> -<AUni ws="qvm-x-ach">öra</AUni> -<AUni ws="qvm-x-acl">öra</AUni> -<AUni ws="qvm-x-akh">öra</AUni> -<AUni ws="qvm-x-akl">öra</AUni> -<AUni ws="qvm-x-ame">öra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="465a437e-b3d8-4d5c-972c-2a490dd45e30" ownerguid="86787a82-377f-445c-b6b1-9b1c136d2242"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="465ba383-0cc4-4594-8094-7c3503ecc432" ownerguid="1f35e65f-3896-490f-adae-33d6f5bf66f9"> -<Form> -<AUni ws="qvm-x-ach">comïnus</AUni> -<AUni ws="qvm-x-acl">comïnus</AUni> -<AUni ws="qvm-x-akh">comïnus</AUni> -<AUni ws="qvm-x-akl">comïnus</AUni> -<AUni ws="qvm-x-ame">comïnus</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="465db283-616a-4d36-957d-0ca36b8b27d9"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">aywakuptï</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="46614fbb-85a5-4a37-b8e5-4a1aa45818f2" ownerguid="602d5a5a-03fc-4c5d-a72f-e9ff18ffe5b0"> -<Form> -<AUni ws="qvm-x-ach">caridä</AUni> -<AUni ws="qvm-x-acl">caridä</AUni> -<AUni ws="qvm-x-akh">caridä</AUni> -<AUni ws="qvm-x-akl">caridä</AUni> -<AUni ws="qvm-x-ame">caridä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="4663620c-13cf-4c6a-bfc0-272e3c586d32" ownerguid="bf08aac6-305f-435c-abe7-9634c0632db4"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="46655353-179e-4fa6-b4b8-e7d8a513f738" ownerguid="98bdde46-83fb-41d6-b44a-10d5d0b56867"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="466a4708-420c-4053-b6af-a8b15fb1400e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">empe:ñu</AUni> -<AUni ws="qvm-x-acl">empe:ñu; empe:ñu; empe:ño</AUni> -<AUni ws="qvm-x-akh">empe:ñu</AUni> -<AUni ws="qvm-x-akl">empe:ñu; empe:ñu; empe:ño</AUni> -<AUni ws="qvm-x-ame">empe:ñu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+empeño</AUni> -<AUni ws="qvm-x-acl">+empeño</AUni> -<AUni ws="qvm-x-akh">+empeño</AUni> -<AUni ws="qvm-x-akl">+empeño</AUni> -<AUni ws="qvm-x-ame">+empeño</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.455" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1aaabd6b-fd59-4686-a3cf-9027808a5c8b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+empeño</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a808fe1d-51b3-451d-afb3-d102e87963f5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2012676e-f75d-443e-a7cd-e4a20c1190dc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +empeño 
\entryTyp root 
\gENG urgently 
\gSPN con.empeño 
\e +empeño 
\c R0 
\ach empe:ñu 
\akh empe:ñu 
\acl empe:ñu / _# 
\acl empe:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl empe:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl empe:ñu / _# 
\akl empe:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl empe:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame empe:ñu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="466a8502-0d5b-4d2c-a67e-c6415e4f4a3d" ownerguid="d8622ab2-f5ea-4691-8ad4-a44ec670f935"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="ee3384b7-7618-4f17-a607-1e25b68dd238" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="51ba7e55-ad51-4cc2-9739-7d667c0d2e20" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="46734274-7adc-45d4-ae42-32ece261d7be" ownerguid="4d122530-6468-468f-8946-263801672956"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 10.26 Quiruta vinagri shimpashgannog \f + 10.26 Waquin runacunaga \it shumshushgannog\it* nipäcun.\f* y nawita goshtay raurätsishgannogmi guella runapis cachagninpag caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="4673c2d2-2249-4e8e-9cd5-e9cd3adc0a42" ownerguid="237588e0-0c25-4490-8a91-7da45950d3f2"> -<Form> -<AUni ws="qvm-x-ach">ñapu</AUni> -<AUni ws="qvm-x-acl">ñapu; ñapo</AUni> -<AUni ws="qvm-x-akh">ñapu</AUni> -<AUni ws="qvm-x-akl">ñapu; ñapo</AUni> -<AUni ws="qvm-x-ame">ñapu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="46747c01-03c2-4190-ade1-07556374e847" ownerguid="26d32f3e-ced6-45fc-afd0-7e017fa252c6"> -<ExampleWords> -<AUni ws="en">solve the riddle, figure out the riddle, guess the meaning of the riddle, tell the meaning of the riddle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used of solving a riddle?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4675eafe-e5f4-4092-a118-aed45fea9fc1" ownerguid="721e7782-9add-41fa-a7cf-659d5ca33926"> -<ExampleWords> -<AUni ws="en">catch, hide-and-seek, hopscotch, leapfrog, mumblety-peg, tag</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What are the names of specific children's games?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="46763ee5-02e9-46ee-9d51-e8dae6cd06d8" ownerguid="85646774-8145-4553-b8a7-6927cd077908"> -<ExampleWords> -<AUni ws="en">herd (of cattle), drove (of cattle), kennel (of dogs), pack (of dogs), pride (of lions), pod (of whales)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a group of mammals?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="467a27d2-8717-48a5-9d23-3d0f9b3152c1" ownerguid="73497264-81a2-49dd-9f3b-7c42c8a8ee23"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="467c371c-174b-4beb-a3b4-af81d99df342" ownerguid="5cd2f365-2d84-451e-9f2d-bc2561eff909"> -<ExampleWords> -<AUni ws="en">screwdriver</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a tool used to join things together?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="467dd680-ac64-4dc4-8a17-1cfe297d3392" ownerguid="6045c6eb-efea-4586-95f8-840d32578d66"> -<Abbreviation> -<AUni ws="en">7.5.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.549" /> -<DateModified val="2022-9-23 16:55:8.549" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being simple or complicated--words describing the organization of a group of things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Simple, complicated</AUni> -</Name> -<Questions> -<objsur guid="571f03b5-b09d-44f7-bc96-11184c4048ce" t="o" /> -<objsur guid="5ce6a697-4af5-40c0-a1c6-993ba966210b" t="o" /> -<objsur guid="6c202062-b233-4a30-adc4-eb9a0478b780" t="o" /> -<objsur guid="84642d68-60c9-4aa6-8e1e-6f065b83ebd9" t="o" /> -<objsur guid="aa9b1495-7367-40e8-8b59-3515135a65b3" t="o" /> -<objsur guid="ec2ee089-c20b-462e-b1b5-7c9b9107b51b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="46821fda-468a-45fc-afce-ccb83430a475" ownerguid="107a88b3-6591-4e19-8856-86e6d0a675bf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bud</AUni> -<AUni ws="es">brotar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b2aae534-a0e1-4a4f-9806-78420f65052f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="4683a589-abc5-40bd-ae7f-b909129ecd7f"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">yarpapäkn</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="4684e54d-aaaa-44b9-b65a-2a6596473263" ownerguid="23eda898-b2f4-403e-ae38-fcbd4415229a"> -<Form> -<AUni ws="qvm-x-ach">racta</AUni> -<AUni ws="qvm-x-acl">racta</AUni> -<AUni ws="qvm-x-akh">rakta</AUni> -<AUni ws="qvm-x-akl">rakta</AUni> -<AUni ws="qvm-x-ame">rakta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="46893314-937d-4d81-9356-54781ae0b43b" ownerguid="f13432f6-42c8-4c0b-8bce-72ba1d8f7922"> -<Form> -<AUni ws="qvm-x-ach">putsu; putsü</AUni> -<AUni ws="qvm-x-acl">putsö; putsu; putso</AUni> -<AUni ws="qvm-x-akh">putsu; putsü</AUni> -<AUni ws="qvm-x-akl">putsö; putsu; putso</AUni> -<AUni ws="qvm-x-ame">putsu; putsü</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="46895cf3-fcf5-4b03-aaf4-b4383fe38b6c" ownerguid="2c4232f4-aaca-48a0-9037-a28ba6056c1d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yarpa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yarpa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yarpa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yarpa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yarpa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="390d6b92-9796-4636-b528-170a1b6aa62a" t="r" /> -</Morph> -<Msa> -<objsur guid="19ab5cf1-1864-4db0-94a6-3ed04ddf2ef7" t="r" /> -</Msa> -<Sense> -<objsur guid="b76c1d77-e3dc-4a8b-9cf7-6fb696740bed" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="468965f6-d3df-4f2a-aebd-67d3a371a775"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">a:lla</AUni> -<AUni ws="qvm-x-acl">a:lla</AUni> -<AUni ws="qvm-x-akh">a:lla</AUni> -<AUni ws="qvm-x-akl">a:lla</AUni> -<AUni ws="qvm-x-ame">a:lla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hallar</AUni> -<AUni ws="qvm-x-acl">+hallar</AUni> -<AUni ws="qvm-x-akh">+hallar</AUni> -<AUni ws="qvm-x-akl">+hallar</AUni> -<AUni ws="qvm-x-ame">+hallar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.650" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="78a583ac-7a74-4c28-ab2b-be0d96ed6d7a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hallar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cf7b779b-f209-4218-ac07-f4056871b99f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="28e4d6c6-1d4b-405a-8e97-8c8bd7dcc607" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hallar 
\entryTyp root 
\gENG is.pleasing.to 
\gSPN es.bueno.para 
\e +hallar 
\c V2 
\ach a:lla 
\akh a:lla 
\acl a:lla 
\akl a:lla 
\ame a:lla 
\mcc +hallar / ~_ ADV1</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="468a9fe9-dbfc-407f-b965-6c9308bfabfc" ownerguid="2f9714d1-97ec-497b-b74c-d56d2b30d283"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="468dae40-2067-4cc8-b888-ae8145ce9dd9" ownerguid="7a71a573-5118-4d2a-b39a-69518acc17ea"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="469118f2-9ae8-44d6-8b20-16e05e235860" ownerguid="57f3b56c-d223-4571-9ca3-0591f9f9022c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="469222b3-f9a0-4d75-9fac-0ad1d5815eb0" ownerguid="ff7e3abd-6810-4128-83c9-701b4925c2fe"> -<ExampleWords> -<AUni ws="en">spark, flame, flicker, finger, tongue, flare, blaze, conflagration, inferno, raging inferno</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the size of the fire?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="46938df8-aa60-4cd9-bc0e-34d59c880363" ownerguid="e7caa24f-155d-47cd-946d-cc0d06dfc764"> -<ExampleWords> -<AUni ws="en">loved ones, darling, pet, the one you love</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to someone you love?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="4696a305-2f9c-4fe1-8c90-a64b462ab992" ownerguid="01a1eebe-0fa9-4302-b712-bc9f73ebc1de"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">garcucärin</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="46971561-7e6e-44dd-a1e0-8f4a99aa6cd4" ownerguid="ca91e41a-81c3-4c96-87e6-f67477fcd686"> -<ExampleWords> -<AUni ws="en">neglect, abuse, spoil, deprive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to not rearing a child well?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4697f462-65be-42b1-a9c7-d8eac3d924d0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gochgu</AUni> -<AUni ws="qvm-x-acl">gochgu; gochgo</AUni> -<AUni ws="qvm-x-akh">qochqu</AUni> -<AUni ws="qvm-x-akl">qochqu; qochqo</AUni> -<AUni ws="qvm-x-ame">quchqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qutrqu</AUni> -<AUni ws="qvm-x-acl">*qutrqu</AUni> -<AUni ws="qvm-x-akh">*qutrqu</AUni> -<AUni ws="qvm-x-akl">*qutrqu</AUni> -<AUni ws="qvm-x-ame">*qutrqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.902" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6fdeec43-6db7-4511-a061-008ef0c513c1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qutrqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="55ed324b-5e3b-4cf8-8417-ffa033d6bea2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6fbe2491-231d-4dd6-b3ec-aeb02bcde826" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qutrqu 
\entryTyp root 
\gENG 
\gSPN 
\e *qutrqu 
\c V2 
\ach gochgu 
\akh qochqu 
\acl gochgu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gochgo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qochqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qochqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame quchqu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="469846b5-c4d6-4062-996b-2ec2cbfc73dd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">católica; cato:lica</AUni> -<AUni ws="qvm-x-acl">católica; cato:lica</AUni> -<AUni ws="qvm-x-akh">católica; cato:lica</AUni> -<AUni ws="qvm-x-akl">católica; cato:lica</AUni> -<AUni ws="qvm-x-ame">católica; cato:lica</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+católica</AUni> -<AUni ws="qvm-x-acl">+católica</AUni> -<AUni ws="qvm-x-akh">+católica</AUni> -<AUni ws="qvm-x-akl">+católica</AUni> -<AUni ws="qvm-x-ame">+católica</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.820" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e37d56f3-eb67-42ee-919f-e1556b1ed320" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+católica</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dfc60eba-cdad-45f7-b17f-91dea6bc7dec" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ba064353-4493-46ca-a07b-468755a8f47f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +católica 
\entryTyp root 
\gENG catholic 
\gSPN católica 
\e +católica 
\c N0 
\ach católica / _# 
\ach cato:lica / ~_# 
\akh católica / _# 
\akh cato:lica / ~_# 
\acl católica / _# 
\acl cato:lica / ~_# 
\akl católica / _# 
\akl cato:lica / ~_# 
\ame católica / _# 
\ame cato:lica / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="4698e532-c598-4164-95b4-0a6c99ae4a7b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tagui</AUni> -<AUni ws="qvm-x-acl">tagui; tagui; tague</AUni> -<AUni ws="qvm-x-akh">taqi</AUni> -<AUni ws="qvm-x-akl">taqi; taqi; taqe</AUni> -<AUni ws="qvm-x-ame">taqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*taqi</AUni> -<AUni ws="qvm-x-acl">*taqi</AUni> -<AUni ws="qvm-x-akh">*taqi</AUni> -<AUni ws="qvm-x-akl">*taqi</AUni> -<AUni ws="qvm-x-ame">*taqi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.815" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1019b83a-6e42-4d8a-84a0-d33b1baaf2d7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*taqi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="38096588-e644-45fe-ad0f-e11aca4d8951" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="70e1006e-2895-4a9e-b2a7-a0816d7ef2ba" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *taqi 
\entryTyp root 
\gENG bin 
\gSPN droja 
\e *taqi 
\c N0 
\mp +FinalI 
\ach tagui 
\akh taqi 
\acl tagui / _# 
\acl tagui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tague +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl taqi / _# 
\akl taqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl taqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame taqi 
\i MAT 13.30 Cosëchachönami achoqkunata kaynoq nishaq: <Puntata ballicuta shuntarkur wankupäkuy rupatsinantsipaq. Trïguta itsanqa shuntarkur taqëman churapäkuy.></Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="46995898-0c56-4b00-b2fe-8088ed3d7818" ownerguid="70f80041-af88-4521-9ebd-21d8f0b0d131"> -<ExampleWords> -<AUni ws="en">front, in front, in the front, up front, forward, in the foreground, be in front, out in front, before, ahead of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is in front of something else?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="469b0a30-3c26-4cfd-b948-7bb952eeff41" ownerguid="0e79435b-f5ff-4061-81ff-49557ba2aed4"> -<Abbreviation> -<AUni ws="en">4.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.192" /> -<DateModified val="2022-9-23 16:55:8.192" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to knowing someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Know someone</AUni> -</Name> -<Questions> -<objsur guid="d2f09eb1-031e-4e31-9d75-8311d04218d6" t="o" /> -<objsur guid="1766b3fb-d188-487b-9ff2-c24a04a4e31c" t="o" /> -<objsur guid="75a649c8-3a1f-465e-8563-dbaef7936348" t="o" /> -<objsur guid="9f85fd7d-6e2b-4f5f-aa62-86e9d46a238b" t="o" /> -<objsur guid="25be9247-4a35-471f-8701-02f4e3de4257" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b5d679e3-506a-4994-81a2-be48a698d945" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="469c297a-18d2-4775-affa-530c1cbd8b72" ownerguid="ef99137c-3c5c-4b69-9370-03ffac8c5e6e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="469c882f-24a0-4204-a300-fab2c4cdc571" ownerguid="9f792202-8023-4ef3-b269-5ae4b6908a0b"> -<ExampleWords> -<AUni ws="en">sacrificial (giving, lamb), devoted, consecrated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a sacrifice?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="46a09730-6a7a-4c1b-a6cc-dfe791cc9a2a" ownerguid="ff736f67-197b-46b9-bc14-edbeb1fb3d5a"> -<ExampleWords> -<AUni ws="en">have, possess, own</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to having wealth?</AUni> -</Question> -</rt> -<rt class="FsClosedValue" guid="46a1c428-2c4e-44e0-af37-5a8fc370f36b" ownerguid="e81d525b-5e61-44a6-887a-ad7da788469c"> -<Feature> -<objsur guid="e13ebd7a-824d-4405-8c23-e5a30f3d53a6" t="r" /> -</Feature> -<RefNumber val="0" /> -<Value> -<objsur guid="d955a1e1-2da8-486d-8f53-3509c47b67fc" t="r" /> -</Value> -<ValueState val="0" /> -</rt> -<rt class="MoStemMsa" guid="46a20fe7-25ca-44de-b6a3-ff97800dcf82" ownerguid="a4cdee93-4e26-4d4c-b6ee-16126454554f" /> -<rt class="LexEntry" guid="46a35455-4f89-454c-bd66-75683efd6049"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shiriri</AUni> -<AUni ws="qvm-x-acl">shiriri; shirire</AUni> -<AUni ws="qvm-x-akh">shiriri</AUni> -<AUni ws="qvm-x-akl">shiriri; shirire</AUni> -<AUni ws="qvm-x-ame">shiriri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shiriri</AUni> -<AUni ws="qvm-x-acl">*shiriri</AUni> -<AUni ws="qvm-x-akh">*shiriri</AUni> -<AUni ws="qvm-x-akl">*shiriri</AUni> -<AUni ws="qvm-x-ame">*shiriri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.612" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="509b59c0-338e-4e2c-8e07-5b1ea36a1158" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shiriri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="abbbc2b7-c0b6-4de1-a422-429ed63a9a76" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b0a66c9c-f223-4531-9940-2059a9e4fccf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shiriri 
\entryTyp root 
\gENG be.asleep 
\gSPN entumirse 
\e *shiriri 
\c V1 
\mp +FinalI 
\ach shiriri 
\akh shiriri 
\acl shiriri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shirire +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shiriri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shirire +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shiriri</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="46ad1505-9049-41d8-831b-768f46f12500" ownerguid="bbb897b5-f09b-4263-9f81-826ca61084f1"> -<Abbreviation> -<AUni ws="en">5.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.337" /> -<DateModified val="2022-9-23 16:55:8.337" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing whether something is clean or dirty.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79J Clean, Dirty; 79K Spotted, Spotless</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Clean, dirty</AUni> -</Name> -<OcmCodes> -<Uni>318 Environmental Quality</Uni> -</OcmCodes> -<Questions> -<objsur guid="fb9ecba8-4e8a-4e68-acc5-11b4733e9a7f" t="o" /> -<objsur guid="b6418f95-7a50-4ba5-9149-4b432f48d82c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="46aec698-4916-4e68-8fcb-cf9a88e2009d" ownerguid="0d841adc-1ffd-4cba-9751-88d787e8086a"> -<Form> -<AUni ws="qvm-x-ach">wira</AUni> -<AUni ws="qvm-x-acl">wira</AUni> -<AUni ws="qvm-x-akh">wira</AUni> -<AUni ws="qvm-x-akl">wira</AUni> -<AUni ws="qvm-x-ame">wira</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="46b04644-d6ba-425e-874d-58e1064fe017" ownerguid="d117aa22-3f18-47c4-9683-51ecf1dc7134"> -<ExampleWords> -<AUni ws="en">dead branches, dead wood, rot, dry rot, dead leaves, dry leaves</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(20) What are the dead parts of plants called?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="46b13a77-fe12-49fb-afbe-826480ec97f4" ownerguid="d030f0c7-31a3-47da-be35-46f1eba63ae9"> -<Abbreviation> -<AUni ws="en">3.4.1.1.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.133" /> -<DateModified val="2022-9-23 16:55:8.133" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling pleased with someone--to feel good because someone did something good.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25H Acceptable To, To Be Pleased With</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Pleased with</AUni> -</Name> -<Questions> -<objsur guid="e68b7a2b-c4c5-4e91-8943-c43386983707" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="46b4c58d-9971-41e3-9845-404b3f4663de" ownerguid="e44c182e-34ee-4712-9db8-cd2fbaf0ec26"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="46b4e928-51ab-4fb1-b4c4-295de6a3e0c0" ownerguid="4d60eb1f-bd22-45af-9581-dcc897efcfb4"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="46b7f7df-51bc-4276-8f47-0d0645b86532" ownerguid="390ad7fc-8360-4eae-8736-3aedc15ae659"> -<ExampleWords> -<AUni ws="en">draw</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to making a map?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="46b9eb7e-64c9-4319-8fd4-47040c10ebbd" ownerguid="aae8aefe-cea0-42fe-b9de-793c4cbdbbd9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">marca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">marca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">marka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">marka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">marka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="efaff767-d6db-45ec-8ec0-666b57a06435" t="r" /> -</Morph> -<Msa> -<objsur guid="f87af9c0-e238-4649-8df0-ab17b19c3572" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="46bb821e-dbb2-4c1a-8169-4648a9effccb" ownerguid="2e5acfd2-3009-4496-9cc2-58d2a0088994"> -<ExampleWords> -<AUni ws="en">hairy, bearded, bushy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe someone who has lots of hair?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="46bc9352-4b8a-4bea-aa77-9ac348305bd7" ownerguid="01441207-4935-49a5-a192-16d949f5606c"> -<ExampleWords> -<AUni ws="en">uniform, ball, clock, scoreboard</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(17) What equipment is used in sports?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="46bee00e-8f82-447d-92ce-b1887e7708db" ownerguid="6eb2ef50-7e6b-41b8-a82e-6eb307c908ca"> -<ExampleWords> -<AUni ws="en">effective, work, successful</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a method that is effective?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="46c01754-4990-4bc9-bf1c-6f1c90becf60" ownerguid="9120b0eb-edf6-429c-89f0-37b2d8c5a594"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mint</AUni> -<AUni ws="es">menta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7b70ede0-1c7f-47a3-89a4-9bdbde4aae12" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="46c1386b-2397-4b21-a5f7-47c5fb7ee614" ownerguid="02bd21d7-b47a-4ce9-91c1-e0ec532a64ef"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="46c1ce3d-5a11-40e7-a1ce-64b50b5c005a" ownerguid="9f4cd8bd-f001-400f-b50a-e177f432aea8"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="46c223da-dcaf-4080-965c-5c39b04d055d" ownerguid="92691d17-d145-4783-a83a-8d67fc35a586"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">limpio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4a13ef2b-a876-401b-9e8c-3507b25df928" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="46c44f13-ca96-4108-bc90-950e4c3a25c7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bisagra</AUni> -<AUni ws="qvm-x-acl">bisagra</AUni> -<AUni ws="qvm-x-akh">bisagra</AUni> -<AUni ws="qvm-x-akl">bisagra</AUni> -<AUni ws="qvm-x-ame">bisagra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bisagra</AUni> -<AUni ws="qvm-x-acl">+bisagra</AUni> -<AUni ws="qvm-x-akh">+bisagra</AUni> -<AUni ws="qvm-x-akl">+bisagra</AUni> -<AUni ws="qvm-x-ame">+bisagra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.969" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b95b12d8-40ee-4fef-9132-6cf938f20c1c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bisagra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bc9f24b0-f740-42c8-ba9d-fa8bd4e652c0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2f718c6f-29a3-4cf4-838b-e900bd641d5b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bisagra 
\entryTyp root 
\gENG 
\gSPN 
\e +bisagra 
\c N0 
\ach bisagra 
\akh bisagra 
\acl bisagra 
\akl bisagra 
\ame bisagra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="46c53915-02ef-4aea-9226-c3286c01ecb2" ownerguid="1bd42665-0610-4442-8d8d-7c666fee3a6d"> -<ExampleWords> -<AUni ws="en">lunar sea, crater</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to the spots on the moon?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="46c7f4e0-8c46-494a-9c38-6304be59818e" ownerguid="e94a5cf3-1fd4-4b52-902f-bbf0ad6bac2b"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">I had four brothers, but I am the <only> one who is still alive.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">only, sole, the one, lone, solitary, alone, one and only, single</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe the only person or thing?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="46cb943c-9102-4d7e-93a5-f647287fcc10"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">galan</AUni> -<AUni ws="qvm-x-acl">galan</AUni> -<AUni ws="qvm-x-akh">qalan</AUni> -<AUni ws="qvm-x-akl">qalan</AUni> -<AUni ws="qvm-x-ame">qalan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qallan</AUni> -<AUni ws="qvm-x-acl">*qallan</AUni> -<AUni ws="qvm-x-akh">*qallan</AUni> -<AUni ws="qvm-x-akl">*qallan</AUni> -<AUni ws="qvm-x-ame">*qallan</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.65" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9ac907c3-6e33-4ae4-9ab9-801bc463facd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qallan</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="15b77b59-9e47-4c73-90c2-15a54e0d54fe" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="12ca5b46-eacd-43de-b681-ef6e13655b6e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qallan 
\entryTyp root 
\gENG rock 
\gSPN roca 
\e *qallan 
\c N0 
\mp +FinalC 
\ach galan 
\akh qalan 
\acl galan 
\akl qalan 
\ame qalan</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="46cf4ee1-facb-451d-b633-2ae71796c81e" ownerguid="1bca24e1-f372-4584-bc86-5d6052a22390"> -<Form> -<AUni ws="qvm-x-ach">pucutay</AUni> -<AUni ws="qvm-x-acl">pucutay</AUni> -<AUni ws="qvm-x-akh">pukutay</AUni> -<AUni ws="qvm-x-akl">pukutay</AUni> -<AUni ws="qvm-x-ame">pukutay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="46d13b18-d016-4b11-9f95-d5b99061469f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pirwa</AUni> -<AUni ws="qvm-x-acl">pirwa</AUni> -<AUni ws="qvm-x-akh">pirwa</AUni> -<AUni ws="qvm-x-akl">pirwa</AUni> -<AUni ws="qvm-x-ame">pirwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pirwa.v</AUni> -<AUni ws="qvm-x-acl">*pirwa.v</AUni> -<AUni ws="qvm-x-akh">*pirwa.v</AUni> -<AUni ws="qvm-x-akl">*pirwa.v</AUni> -<AUni ws="qvm-x-ame">*pirwa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.850" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b4fac85b-9d87-45c4-9861-2fc4b6ac4087" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pirwa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d5eb2790-6516-428c-871f-253ce453aa11" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="220e9b95-e701-40c9-8b57-75b53b84f20a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pirwa.v 
\entryTyp root 
\gENG store 
\gSPN almacer 
\e *pirwa.v 
\c V2 
\ach pirwa 
\akh pirwa 
\acl pirwa 
\akl pirwa 
\ame pirwa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="46d165b4-bee9-4c97-8286-a57f8367ffe9" ownerguid="6903b844-79be-4e9d-a3c8-1ca2a385bf4f"> -<ExampleWords> -<AUni ws="en">in league with, in collusion with, in cahoots with, hand in glove with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate someone who does something bad with another person?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="46d2b84e-ccdd-446c-bb47-ae3ea1300583" ownerguid="bea703ce-56bf-4c6e-84f7-5fecfe7553c9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 V0/V0 R0/R0 ONSHEV/NOSUFF BN/BN</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">DIRSUR</AUni> -<AUni ws="es">DIRSEG</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="537700bd-09cb-4c0c-85f7-2f433e1addbf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="46d33e77-a6a6-47a9-9e01-e3a1573177a2" ownerguid="7d46ca1c-d073-4416-9a7f-bafbc569cb9b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="46d848a1-f02c-464d-ae87-70ad086b853d" ownerguid="435b142e-1904-4c51-ac7d-1d186a668d80"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="46dbda42-fe21-4e52-8eeb-4263ded7031b" ownerguid="4e23b037-0547-4650-89c3-2b259b637fb6"> -<Abbreviation> -<AUni ws="en">8.4.1.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.640" /> -<DateModified val="2022-9-23 16:55:8.640" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the months of the year.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Months of the year</AUni> -</Name> -<Questions> -<objsur guid="184631ed-78d4-44f4-98c7-7e4ea2771e02" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="46dcfa5c-3fd4-483c-af41-06d318d848f1" ownerguid="e0ad6bb1-d422-408a-83f8-f1a7661ed225"> -<ExampleWords> -<AUni ws="en">up, upwards, upward, uphill, upstairs, higher and higher, up and down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the direction up?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="46df0133-bdd4-4c4b-9c4c-f01591bf6762"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">that</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="46df6377-c5f4-4db6-a340-2b2991aaae67" ownerguid="65a3d052-ab43-4056-b273-5672b4332e6d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">regret</AUni> -<AUni ws="es">ser.triste</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d54278de-960e-424b-ad6b-f3c968d338d3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="46df8867-96a5-4dfc-a2a5-79e91543148a" ownerguid="56ef3f06-7fb9-462e-a7d0-517f3ce1623f"> -<ExampleWords> -<AUni ws="en">dog, wolf, coyote, fox, jackal, wild-dog, dingo</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What animals are in the dog family?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="46e1f6c6-1b58-4900-ac6f-394d3be2c37a" ownerguid="bd6846e7-173b-418b-8860-56a43c5d4387"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shy</AUni> -<AUni ws="es">tímido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ad13ddbc-d619-4619-9b1a-6528bf983d4a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="46e2a37c-43c1-400b-9026-8869cd876384" ownerguid="0daa9e0b-5da2-4c04-808b-3fe1f215d9c5"> -<Form> -<AUni ws="qvm-x-ach">algay</AUni> -<AUni ws="qvm-x-acl">algay</AUni> -<AUni ws="qvm-x-akh">alqay</AUni> -<AUni ws="qvm-x-akl">alqay</AUni> -<AUni ws="qvm-x-ame">alqay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="46e45d5d-74ee-4f0b-b580-81a527ac3b92" ownerguid="ffd43dde-bdae-409a-9cf5-2b5ade3b7a57"> -<Form> -<AUni ws="qvm-x-ach">ganra</AUni> -<AUni ws="qvm-x-acl">ganra</AUni> -<AUni ws="qvm-x-akh">qanra</AUni> -<AUni ws="qvm-x-akl">qanra</AUni> -<AUni ws="qvm-x-ame">qanra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PartOfSpeech" guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" ownerguid="ecf8c677-320a-452c-85c0-1f0df87b5be5"> -<Abbreviation> -<AUni ws="en">adv</AUni> -</Abbreviation> -<AffixSlots> -<objsur guid="b6f091af-032e-4c9c-9c5c-443c1328d1e2" t="o" /> -</AffixSlots> -<AffixTemplates> -<objsur guid="757750a0-18d7-4064-8b68-e2d232748cd5" t="o" /> -</AffixTemplates> -<BackColor val="-1073741824" /> -<CatalogSourceId> -<Uni>Adverb</Uni> -</CatalogSourceId> -<DateCreated val="2022-9-23 16:55:8.741" /> -<DateModified val="2022-10-19 20:38:54.597" /> -<Description> -<AStr ws="en"> -<Run ws="en">An adverb, narrowly defined, is a part of speech whose members modify verbs for such categories as time, manner, place, or direction. An adverb, broadly defined, is a part of speech whose members modify any constituent class of words other than nouns, such as verbs, adjectives, adverbs, phrases, clauses, or sentences. Under this definition, the possible type of modification depends on the class of the constituent being modified.</Run> -</AStr> -</Description> -<ForeColor val="6303632" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Adverb</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="1" /> -</rt> -<rt class="LexSense" guid="46f6adc5-c7d1-4fcb-8499-9aee356a3af2" ownerguid="87ecf1cf-9c1f-49c9-9f0e-a3d1d9710922"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pick</AUni> -<AUni ws="es">coger</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="df85bbe4-b620-4388-a81b-86b42f6d803c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="46f79067-6395-43de-9a12-a47e2857f005"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rastro:ju</AUni> -<AUni ws="qvm-x-acl">rastro:ju; rastro:ju; rastro:jo</AUni> -<AUni ws="qvm-x-akh">rastro:ju</AUni> -<AUni ws="qvm-x-akl">rastro:ju; rastro:ju; rastro:jo</AUni> -<AUni ws="qvm-x-ame">rastro:ju</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rastrojo</AUni> -<AUni ws="qvm-x-acl">+rastrojo</AUni> -<AUni ws="qvm-x-akh">+rastrojo</AUni> -<AUni ws="qvm-x-akl">+rastrojo</AUni> -<AUni ws="qvm-x-ame">+rastrojo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.277" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="97621f1d-7036-489d-906d-7baa665c399d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rastrojo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5f89c691-8130-4674-b2de-6f560acaf192" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="af080ffa-3fd0-43d6-ac09-22c545bbfbb0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rastrojo 
\entryTyp root 
\gENG stubble 
\gSPN rastrojo 
\e +rastrojo 
\c N0 
\ach rastro:ju 
\akh rastro:ju 
\acl rastro:ju / _# 
\acl rastro:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl rastro:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rastro:ju / _# 
\akl rastro:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl rastro:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame rastro:ju 
\i ISA 17.5 Trïguta achuriptin raströjulana quëdashgannogmi canga.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="46f82eff-54e4-4529-9284-4661b2b3c0db"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">profesor</AUni> -<AUni ws="qvm-x-acl">profesor</AUni> -<AUni ws="qvm-x-akh">profesor</AUni> -<AUni ws="qvm-x-akl">profesor</AUni> -<AUni ws="qvm-x-ame">profesor</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+profesor</AUni> -<AUni ws="qvm-x-acl">+profesor</AUni> -<AUni ws="qvm-x-akh">+profesor</AUni> -<AUni ws="qvm-x-akl">+profesor</AUni> -<AUni ws="qvm-x-ame">+profesor</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.931" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="751287b2-78c0-4c91-80d1-963bad7a0a71" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+profesor</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f639ec77-7128-4695-b38f-2063f29c3fea" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7ecb9d52-e459-42d7-ad04-6bc97b7c56c1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +profesor 
\entryTyp root 
\gENG profesor 
\gSPN profesor 
\e +profesor 
\c N0 
\mp +FinalC 
\ach profesor 
\akh profesor 
\acl profesor 
\akl profesor 
\ame profesor</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="46fc84f8-463e-4ebe-9db7-6c765bf0aadc" ownerguid="fb6840e2-11f3-434c-bb10-e35bbe7d80f1"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">päca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">päca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">päka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">päka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">päku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e89f4461-706d-4840-bf9f-bfa3b395d737" t="r" /> -</Morph> -<Msa> -<objsur guid="f32a5a50-f426-45b8-ae08-eba8e0a53b74" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="46fe8fef-9a58-408e-99a4-e9cc81aea2e5" ownerguid="472d2147-3f4e-4b64-b458-cf612bce74ab"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bake</AUni> -<AUni ws="es">asar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0d58a286-aeb9-4bf6-a894-6cd5b578d7d8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoDerivAffMsa" guid="46fee199-b257-4f02-bbda-f340d9d79eff" ownerguid="713aea02-c693-434b-93fe-fdb801f02965"> -<FromPartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</FromPartOfSpeech> -<ToPartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</ToPartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="4700d3a8-17da-4ec1-8b6a-d53b2bbe6165" ownerguid="a0e540c3-62e5-4765-93ca-7c0795d7e606"> -<Form> -<AUni ws="qvm-x-ach">gueshma</AUni> -<AUni ws="qvm-x-acl">gueshma</AUni> -<AUni ws="qvm-x-akh">qeshma</AUni> -<AUni ws="qvm-x-akl">qeshma</AUni> -<AUni ws="qvm-x-ame">qishma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="4704343f-679c-4ea0-bb0a-a7d690c3e69c" ownerguid="ec9b5648-d5ee-4710-9610-0a9763e525c2"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -<Sense> -<objsur guid="db6117c5-121c-433a-a891-e69950f55761" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="47058c85-a05e-4fd6-85cf-8b304dc15319" ownerguid="513771eb-8467-468a-8bc8-e52567e66df9"> -<ExampleWords> -<AUni ws="en">form an association, form a partnership</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to beginning a working relationship?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4706f600-9bc5-4368-af02-a8c0bb9ecf1b" ownerguid="7a4e422f-faef-4f0d-b434-400d1e224a87"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="4707e77b-9dac-478c-a598-a43c298e8de5" ownerguid="7aba0347-4fdf-4782-bfdf-c26a3290c596"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">MUCH</AUni> -<AUni ws="es">MUCHO</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="025cfd18-cce0-4a3c-a2c2-eafda25bd16c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="47094c18-8b83-41b8-88dd-fc64d907862d" ownerguid="43873b41-c559-435d-ad89-ffab5c2448eb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wine</AUni> -<AUni ws="es">vino</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ab520d54-2664-4dda-945e-d025f7bf6bb8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="470a2533-b4f5-47bb-a8a1-1b1322b66049"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mu</AUni> -<AUni ws="qvm-x-acl">mu; mo</AUni> -<AUni ws="qvm-x-akh">mu</AUni> -<AUni ws="qvm-x-akl">mu; mo</AUni> -<AUni ws="qvm-x-ame">mu</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.477" /> -<DateModified val="2022-10-16 14:9:2.398" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="45846476-db8b-4639-bef8-780e6651a907" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">AFAR</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="84097b64-d9df-441f-a9d3-d11d4b9d9ea0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="788609d7-ea80-4813-aabb-8837acc21fd4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx AFAR 
\entryTyp suffix 
\gENG AFAR 
\gSPN LEJ 
\e AFAR 
\c V1/V1 V2/V2 
\o 000 
\mp +mlowers 
\ach mu 
\akh mu 
\acl mu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl mo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mu 
\mcc AFAR / ~_ AFAR</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="470e93b0-bc10-4ebc-b2af-9eb24c6d8cdb" ownerguid="9b158c9e-9ba5-4be2-a9a1-77ef888a3b06"> -<ExampleWords> -<AUni ws="en">impurity, contaminant, pollutant, pollution</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something bad that has been adding to something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="470f6338-ad88-4079-bbbb-a153011c7edc" ownerguid="c5f858b4-ca56-41d2-9bfb-4d31af4ecaac"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="4714a7c4-58be-4781-b33e-fa46ed7f0ded" ownerguid="e9de27b6-abac-46ed-a68c-2c3d314297c6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wanu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wanu; wano</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wanu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wanu; wano</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wanu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="9315bafb-8125-42cb-ac3d-613c760213b3" t="r" /> -</Morph> -<Msa> -<objsur guid="52c4e986-5fd0-4705-87fe-8ddc628aff31" t="r" /> -</Msa> -</rt> -<rt class="MoAffixAllomorph" guid="47188d1c-c250-4a44-8281-3a43e696ff79" ownerguid="14784775-37dd-4682-bdcc-b8944da947a5"> -<Form> -<AUni ws="qvm-x-ach">jina</AUni> -<AUni ws="qvm-x-acl">jina</AUni> -<AUni ws="qvm-x-akh">jina</AUni> -<AUni ws="qvm-x-akl">jina</AUni> -<AUni ws="qvm-x-ame">hina</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="471c929e-ab44-40c7-b400-6ebe90c0ab3e" ownerguid="d1d983c7-abaa-4170-8b64-2e744f110d44"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="4721c457-0c2a-4a77-8f7d-f2b190d1c0f6" ownerguid="b7b0819b-eceb-4f16-ae6d-2298c4df1e6f"> -<ExampleWords> -<AUni ws="en">on time, right on time, punctually, promptly, on cue, on the dot, at the right time, at the designated time, at the appointed time, when expected, right when it was supposed to happen, at the exact moment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something happens on time?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4722a842-e6af-4bd5-99ea-84050b248ca0" ownerguid="fdad4d50-d88d-490e-bb93-9d6283b035ff"> -<Form> -<AUni ws="qvm-x-ach">chaupi</AUni> -<AUni ws="qvm-x-acl">chaupi; chaupi; chaupe</AUni> -<AUni ws="qvm-x-akh">chawpi</AUni> -<AUni ws="qvm-x-akl">chawpi; chawpi; chawpe</AUni> -<AUni ws="qvm-x-ame">chawpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="4723eec6-0c51-4724-b82c-fca363964ee4" ownerguid="704a82a0-0783-4ccc-b07c-e21cafe9117e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="472432d6-865c-466c-9972-bcca75f3243e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ypa</AUni> -<AUni ws="qvm-x-acl">ypa</AUni> -<AUni ws="qvm-x-akh">ypa</AUni> -<AUni ws="qvm-x-akl">ypa</AUni> -<AUni ws="qvm-x-ame">ypa</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.477" /> -<DateModified val="2022-10-16 15:16:57.592" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ed76c6da-f04a-47ec-9d43-af432768f6a0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">ADV2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="89edf312-823b-4bd1-9b8e-7755813dda71" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c144d7c6-0d10-42af-bd79-2432522311f8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx ADV2 
\entryTyp suffix 
\gENG ADV2 
\gSPN ADV2 
\e ADV2 
\c N0/R0 R0/R0 V1/R0 V2/R0 
\o 180 
\mp +foreshortens 
\ach ypa 
\akh ypa 
\acl ypa 
\akl ypa 
\ame ypa 
\mcc ADV2 / GEN ~_ 
\mcc ADV2 / *chaka ~_ 
\mcc ADV2 / *tinya ~_ 
\mcc ADV2 / ADV1 ~_ 
\mcc ADV2 / *yatra.v1 CAUS REF ~_</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="4725c8d5-b4bc-4f6c-8ca9-75e970281f74"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">minca</AUni> -<AUni ws="qvm-x-acl">minca</AUni> -<AUni ws="qvm-x-akh">minka</AUni> -<AUni ws="qvm-x-akl">minka</AUni> -<AUni ws="qvm-x-ame">minka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*minka.n</AUni> -<AUni ws="qvm-x-acl">*minka.n</AUni> -<AUni ws="qvm-x-akh">*minka.n</AUni> -<AUni ws="qvm-x-akl">*minka.n</AUni> -<AUni ws="qvm-x-ame">*minka.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.446" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a6686bbf-398a-41c7-9bbf-8bd50ae3b43a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*minka.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bd513100-5896-4232-a933-a4bb8acdbf55" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d01f7c06-a94f-4168-a933-bc2ed34f095c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *minka.n 
\entryTyp root 
\gENG employee 
\gSPN peón 
\e *minka.n 
\c N0 
\ach minca 
\akh minka 
\acl minca 
\akl minka 
\ame minka</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="4726c369-6e08-441e-aa45-251be0cff11f" ownerguid="3aad1996-7180-45d0-a76d-6580ea53ab20"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="4727f364-e9f6-468c-8d13-625a7b94a928" ownerguid="e03ac9db-6156-4002-888a-6f359a2e34e2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="47288b53-a9c0-42d0-bf20-63419b4132bf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">palga</AUni> -<AUni ws="qvm-x-acl">palga</AUni> -<AUni ws="qvm-x-akh">palqa</AUni> -<AUni ws="qvm-x-akl">palqa</AUni> -<AUni ws="qvm-x-ame">palqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pallqa.v</AUni> -<AUni ws="qvm-x-acl">*pallqa.v</AUni> -<AUni ws="qvm-x-akh">*pallqa.v</AUni> -<AUni ws="qvm-x-akl">*pallqa.v</AUni> -<AUni ws="qvm-x-ame">*pallqa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.679" /> -<DateModified val="2022-10-10 21:19:47.692" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bb6e3e7e-a66e-4838-a320-c908d6471fe0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pallqa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f50a5d07-69d2-4dd3-b57d-031a29974285" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e261d36c-41f6-4230-a392-8ca69af7c2bf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pallqa.v 
\entryTyp root 
\gENG to.branch 
\gSPN 
\e *pallqa.v 
\c V1 
\ach palga 
\akh palqa 
\acl palga 
\akl palqa 
\ame palqa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="47299433-89e5-4877-bae9-f23f29f63db9" ownerguid="3e48dcd9-21da-40ac-b0f9-1c0cb94ebcb5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.hide</AUni> -<AUni ws="es">esconderse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b8ced0aa-cbcf-46e5-bbd5-8a3ef6423817" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="4729b6e0-d729-4c83-b9e5-d88822f48fa1"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">24</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="4729cb7a-7fd7-4980-b636-afd17bcf2000" ownerguid="82ae1b44-f12c-4cad-8c3b-55ad2c64abd4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">grinder</AUni> -<AUni ws="es">moledor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e1e8267e-3fcc-45f0-8fff-f4af7c74a675" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="472b38d5-6085-4720-b614-071ff85d56a3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">talu</AUni> -<AUni ws="qvm-x-acl">talu; talo</AUni> -<AUni ws="qvm-x-akh">talu</AUni> -<AUni ws="qvm-x-akl">talu; talo</AUni> -<AUni ws="qvm-x-ame">talu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tallu</AUni> -<AUni ws="qvm-x-acl">*tallu</AUni> -<AUni ws="qvm-x-akh">*tallu</AUni> -<AUni ws="qvm-x-akl">*tallu</AUni> -<AUni ws="qvm-x-ame">*tallu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.784" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="83ecc037-ccfa-4008-ba03-6c3c2500371f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tallu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8ca2498d-e889-4de0-b9f8-8ce6e8b8ec53" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d76d94b0-66c8-4598-b16e-aa9d1928c407" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tallu 
\entryTyp root 
\gENG mix 
\gSPN mezclar 
\e *tallu 
\c V2 
\ach talu 
\akh talu 
\acl talu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl talo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl talu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl talo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame talu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="472b3d7e-395c-4f08-bc6f-b55326e39887" ownerguid="5511f489-03d5-43aa-9df2-c67319587b80"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">flea</AUni> -<AUni ws="es">piojo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bbb4d4df-fdfa-4edb-b741-d17bc81e22de" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="472d2147-3f4e-4b64-b458-cf612bce74ab"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuwa</AUni> -<AUni ws="qvm-x-acl">cuwa</AUni> -<AUni ws="qvm-x-akh">kuwa</AUni> -<AUni ws="qvm-x-akl">kuwa</AUni> -<AUni ws="qvm-x-ame">kuwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kuwa</AUni> -<AUni ws="qvm-x-acl">*kuwa</AUni> -<AUni ws="qvm-x-akh">*kuwa</AUni> -<AUni ws="qvm-x-akl">*kuwa</AUni> -<AUni ws="qvm-x-ame">*kuwa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.33" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="02bd1086-8082-4225-b2df-7c53613557f2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kuwa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0d58a286-aeb9-4bf6-a894-6cd5b578d7d8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="46fe8fef-9a58-408e-99a4-e9cc81aea2e5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kuwa 
\entryTyp root 
\gENG bake 
\gSPN asar 
\e *kuwa 
\c V2 
\ach cuwa 
\akh kuwa 
\acl cuwa 
\akl kuwa 
\ame kuwa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="472d9caa-f8d1-4447-915a-6f45354cc85c" ownerguid="8c41d2d1-6da6-4ab8-8b29-7e226192d64e"> -<ExampleWords> -<AUni ws="en">blood type</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to the type of blood a person has?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="472f89c7-45a6-4a24-b04d-b3a6cc4014db" ownerguid="3827d809-6a03-4428-8693-d7b403c10e7f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="43b993a1-9fb1-48e7-831d-0c6b61a1b5c9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="4732a488-8948-46b2-acad-c2f88c394153" ownerguid="ed21ddba-be9e-45f5-914b-27d46ee0e2a7"> -<Form> -<AUni ws="qvm-x-ach">vocal</AUni> -<AUni ws="qvm-x-acl">vocal</AUni> -<AUni ws="qvm-x-akh">vocal</AUni> -<AUni ws="qvm-x-akl">vocal</AUni> -<AUni ws="qvm-x-ame">vocal</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="47362b95-569c-409d-8103-0e318db92599" ownerguid="f1826d6b-1b0b-45b1-a707-7ba2f7a2acb0"> -<Form> -<AUni ws="qvm-x-ach">corbäta</AUni> -<AUni ws="qvm-x-acl">corbäta</AUni> -<AUni ws="qvm-x-akh">corbäta</AUni> -<AUni ws="qvm-x-akl">corbäta</AUni> -<AUni ws="qvm-x-ame">corbäta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="4738a33d-d481-46d8-bfb1-a3e1b27d2df0" ownerguid="febd4fc8-66cf-419d-a40e-5e0b51b6a7c8"> -<Form> -<AUni ws="qvm-x-ach">tuni</AUni> -<AUni ws="qvm-x-acl">tuni; tune</AUni> -<AUni ws="qvm-x-akh">tuni</AUni> -<AUni ws="qvm-x-akl">tuni; tune</AUni> -<AUni ws="qvm-x-ame">tuni</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="4739e587-c9f2-43d0-9f38-9579ed2cd3db"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Warminpa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="473b2932-8723-47fe-8cf0-5124d9a349fa" ownerguid="c48704fc-d333-48f9-af23-e4e77da3ca85"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="473c50a6-02df-41be-933b-e9390d41ac12" ownerguid="9bd22b75-3bbb-4b10-96ca-255b1c9e97b1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="473ce1cb-f378-48f6-b67e-888c954a1678" ownerguid="ca6f505d-6e7a-45b3-8d3d-d18a16ddc207"> -<Form> -<AUni ws="qvm-x-ach">pela</AUni> -<AUni ws="qvm-x-acl">pela</AUni> -<AUni ws="qvm-x-akh">pela</AUni> -<AUni ws="qvm-x-akl">pela</AUni> -<AUni ws="qvm-x-ame">pela</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="473d2861-d1fa-4d2f-959b-22205bc77400" ownerguid="a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f"> -<ExampleWords> -<AUni ws="en">make out, distinguish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to seeing something with difficulty?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="47403e3e-c778-4f3c-aefb-54ea6d418ee8" ownerguid="7912c7a9-b5cb-49d3-aec1-1036d4bf5aa1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="4741e2db-27c1-4132-9b52-d8fc03eb9215" ownerguid="9c3d9cd4-92e3-4e3a-a127-78ac009b2881"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="474202c7-86b1-4222-a2d7-a12e64382ea7" ownerguid="577017b0-ae87-4fa2-a51b-4f430497be75"> -<ExampleWords> -<AUni ws="en">exercise authority, use authority, authorize, strict, severe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to exercising authority?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="47448aaa-f9de-48f2-b9e1-4a158dc39179" ownerguid="ac187298-85e8-43ed-ba85-cc06a62c08ba"> -<ExampleWords> -<AUni ws="en">cocoon, chrysalis, pupa, pupal stage, maggot, grub, larva, larval, caterpillar, nymph</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the life cycle of insects?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="47481b1b-2b64-4be8-9c73-e22a4c6ef783" ownerguid="56ef3f06-7fb9-462e-a7d0-517f3ce1623f"> -<ExampleWords> -<AUni ws="en">cat, lion, lioness, leopard, leopardess, genet, wild-cat, bobcat, cheetah, tiger, tigress, lynx, wildcat, cougar, panther, puma, jaguar, jaguarundi, ocelot, caracal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What animals are in the cat family?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="474aa982-8350-47e2-a983-e1e2bce9d928" ownerguid="cb95189c-8c74-465b-af07-48e08dbf7c39"> -<Abbreviation> -<AUni ws="en">3.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.123" /> -<DateModified val="2022-9-23 16:55:8.123" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words related to positive emotions.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Feel good</AUni> -</Name> -<Questions> -<objsur guid="737726a2-34a2-4f5d-80a0-d2a67c02c6a1" t="o" /> -<objsur guid="04b7e70e-adaa-41de-b70b-74f7b826d40a" t="o" /> -<objsur guid="3264d7f6-3fe3-477b-b5a7-7ec640d08e9d" t="o" /> -<objsur guid="283c06e1-d14c-4d8d-b01e-d64af8cbd1af" t="o" /> -<objsur guid="99f5d0f4-2deb-49e4-a002-c37083b1f9b2" t="o" /> -<objsur guid="4a64aa61-36cb-4871-8b44-ae03d9586e7c" t="o" /> -<objsur guid="2b6eeb2f-2d08-4a18-8485-907a9f64cb52" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="d030f0c7-31a3-47da-be35-46f1eba63ae9" t="o" /> -<objsur guid="afa77a2a-8b0f-4a39-91bc-040e90ffbb3a" t="o" /> -<objsur guid="0e590da7-c027-42e0-b580-f65686cee461" t="o" /> -<objsur guid="f9d020d6-b129-4bb8-9509-3b4a6c27482e" t="o" /> -<objsur guid="e0a8e1d9-c43e-4092-a8dc-476a3417924e" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="474eb21f-72f2-45a5-91eb-d95776dfaf73" ownerguid="daa45f3e-7201-4a05-a744-87eea5194a04"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="12bfb9d1-397a-4a2d-8ef8-f81220184cf4" t="o" /> -<objsur guid="e5002146-8b66-45ad-bf0b-dfef91c9c3f1" t="o" /> -<objsur guid="e6cfeb82-0239-4376-a74e-a8b8dd0cd5a0" t="o" /> -<objsur guid="74971461-896c-4ad6-a4e8-28ff04a2a36f" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="4751cefe-9455-438e-a12c-b9d17b930ebd" ownerguid="35da8e1e-d22b-422e-a143-2dfd31e96439"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">skirt</AUni> -<AUni ws="es">falda</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c071a407-0b36-47a0-bb9b-204c44382e6d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="StTxtPara" guid="4752c504-3fb6-4b2a-8865-767be12596b8" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">qarqakatsin</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="8c22d0fe-6531-4bfc-b3ea-6f356e3899c4" t="o" /> -</Segments> -</rt> -<rt class="MoStemAllomorph" guid="4754777a-c7e6-4ca7-b275-765ff59dfd6c" ownerguid="cb5d144c-d1f1-45e7-9ba4-171ceb5539a8"> -<Form> -<AUni ws="qvm-x-ach">achu</AUni> -<AUni ws="qvm-x-acl">achu; acho</AUni> -<AUni ws="qvm-x-akh">achu</AUni> -<AUni ws="qvm-x-akl">achu; acho</AUni> -<AUni ws="qvm-x-ame">achu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="47563afb-e383-4101-a4e7-758d8722d0a2" ownerguid="67320802-4a28-43bc-908e-b523c5e965bf"> -<Form> -<AUni ws="qvm-x-ach">achäqui; achäqui</AUni> -<AUni ws="qvm-x-acl">achäqui; achäqui; achäque</AUni> -<AUni ws="qvm-x-akh">achäqui; achäqui</AUni> -<AUni ws="qvm-x-akl">achäqui; achäqui; achäque</AUni> -<AUni ws="qvm-x-ame">achäqui; achäqui</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="475813ec-1e75-49a8-a078-7aece18f01b6" ownerguid="f76409fc-cfcc-4bff-9751-64b7cfdbcae9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">others</AUni> -<AUni ws="es">otros</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="956d4695-6d03-4690-9e9d-32d227b5cbf4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="475827d9-6ded-4a32-bff5-7f5631e33987" ownerguid="5502544d-617e-4608-bd6b-80fc8ecf90bb"> -<Form> -<AUni ws="qvm-x-ach">chirapa; chirapä</AUni> -<AUni ws="qvm-x-acl">chirapa; chirapä</AUni> -<AUni ws="qvm-x-akh">chirapa; chirapä</AUni> -<AUni ws="qvm-x-akl">chirapa; chirapä</AUni> -<AUni ws="qvm-x-ame">chirapa; chirapä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="47583c42-ae86-409c-ac4b-dd2f51275443" ownerguid="71c70eb9-7ea1-4fe0-ae10-ab6645ed74a7"> -<Form> -<AUni ws="qvm-x-ach">tenta</AUni> -<AUni ws="qvm-x-acl">tenta</AUni> -<AUni ws="qvm-x-akh">tenta</AUni> -<AUni ws="qvm-x-akl">tenta</AUni> -<AUni ws="qvm-x-ame">tenta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="475ab7df-460c-44f0-b329-42eb4cf2e114" ownerguid="5457a514-dce1-40bb-942a-92f3d1bf86fb"> -<Form> -<AUni ws="qvm-x-ach">ogla</AUni> -<AUni ws="qvm-x-acl">ogla</AUni> -<AUni ws="qvm-x-akh">oqla</AUni> -<AUni ws="qvm-x-akl">oqla</AUni> -<AUni ws="qvm-x-ame">uqla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="475bcaba-9ee4-447e-95f3-b1d3737a455d" ownerguid="b8d2fdb9-22ea-4040-8abb-aeeff0399f23"> -<ExampleWords> -<AUni ws="en">murder (n), homicide, killing, assassination, foul play, capital crime, beheading, bloodshed, butchery, crucifixion, decapitation, electrocution, fratricide, immolation, infanticide, liquidation, manslaughter, martyrdom, matricide, patricide, regicide, shooting, slaying, strangulation, smothering, suffocation, terrorism</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the act of killing someone?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="475cecdc-0fdb-4617-a3ba-bab898261913"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ñutgu</AUni> -<AUni ws="qvm-x-acl">ñutgu; ñutgo</AUni> -<AUni ws="qvm-x-akh">ñutqu</AUni> -<AUni ws="qvm-x-akl">ñutqu; ñutqo</AUni> -<AUni ws="qvm-x-ame">ñutqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñutqu.v</AUni> -<AUni ws="qvm-x-acl">*ñutqu.v</AUni> -<AUni ws="qvm-x-akh">*ñutqu.v</AUni> -<AUni ws="qvm-x-akl">*ñutqu.v</AUni> -<AUni ws="qvm-x-ame">*ñutqu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.608" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ac3edb8b-1ad1-4376-8023-f605e78f1bbd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñutqu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="947a6d33-bae4-4dc9-92d3-641847d5634b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a5ff5965-e0a7-4d5e-91c8-0dc34c30bc61" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñutqu.v 
\entryTyp root 
\gENG ground 
\gSPN molido 
\e *ñutqu.v 
\c V1 
\ach ñutgu 
\akh ñutqu 
\acl ñutgu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ñutgo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ñutqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ñutqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ñutqu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="475dcd6f-ebc0-4cf3-8130-beddd909ee8a" ownerguid="4a18c381-84a9-484b-8727-f8e9244c3404"> -<Form> -<AUni ws="qvm-x-ach">shunta</AUni> -<AUni ws="qvm-x-acl">shunta</AUni> -<AUni ws="qvm-x-akh">shunta</AUni> -<AUni ws="qvm-x-akl">shunta</AUni> -<AUni ws="qvm-x-ame">shunta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4763b01e-e104-498b-aff1-b7a47d66567f" ownerguid="d8389a63-8b39-4e23-8528-cd756dae2f5c"> -<ExampleWords> -<AUni ws="en">paper industry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to working with paper?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4763e934-2f2b-4284-b5e4-8c559241a10a" ownerguid="5fccd177-1059-44ce-9e5c-ced1350c9027"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">?</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6c36a02e-c7c5-48de-85ab-e33d78e170e9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="47651ff4-8b1c-4156-ac97-3215a967b6cb" ownerguid="e53c913f-91f1-4228-a845-7bfdfc80a1a8"> -<Form> -<AUni ws="qvm-x-ach">martillu; martillo</AUni> -<AUni ws="qvm-x-acl">martillu; martillu; martillo</AUni> -<AUni ws="qvm-x-akh">martillu; martillo</AUni> -<AUni ws="qvm-x-akl">martillu; martillu; martillo</AUni> -<AUni ws="qvm-x-ame">martillu; martillo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="476632bc-99cc-4828-bdd4-7771c0a33cc4" ownerguid="9db00bb9-0443-4017-9185-2a6e3f43e556"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="476684b9-c7d4-4b9e-8e02-4d7df658fd9f" ownerguid="080bf07b-e58b-4a75-bb97-84d980a143f0"> -<ExampleWords> -<AUni ws="en">misshapen, deformed, distorted, out of shape, lopsided, lose its shape</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the wrong shape?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="47670069-ae7f-45ae-a527-a82e9afb56f0" ownerguid="adfc2bcd-6b8e-486c-b105-29b286b61cc0"> -<ExampleWords> -<AUni ws="en">acquisition</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the act of getting something?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="476727d5-9c61-446d-b9e8-bedbc744601c" ownerguid="c7fe3fd0-802d-429e-8f1c-9691f371f7bb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">waga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">waga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">waqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">waqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">waqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d100a60e-40fa-45d4-8643-92375fc3d00c" t="r" /> -</Morph> -<Msa> -<objsur guid="dae1adcc-bc09-4a2e-8fca-8dd1fcb23810" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="47672c2a-f85d-431a-81a1-9c78b967fcd2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pushapa</AUni> -<AUni ws="qvm-x-acl">pushapa</AUni> -<AUni ws="qvm-x-akh">pushapa</AUni> -<AUni ws="qvm-x-akl">pushapa</AUni> -<AUni ws="qvm-x-ame">pushapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pushapa</AUni> -<AUni ws="qvm-x-acl">*pushapa</AUni> -<AUni ws="qvm-x-akh">*pushapa</AUni> -<AUni ws="qvm-x-akl">*pushapa</AUni> -<AUni ws="qvm-x-ame">*pushapa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.36" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="688d9a08-c897-4931-b082-bc74ab7d5cd3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pushapa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bbc57cc5-0db6-432e-9c02-4ba42fd1eeed" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="66355285-3a93-47fc-a515-9eaa6b332543" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pushapa 
\entryTyp root 
\gENG 
\gSPN 
\e *pushapa 
\c N0 
\ach pushapa 
\akh pushapa 
\acl pushapa 
\akl pushapa 
\ame pushapa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="47673f92-486c-422e-b979-7f35a6b3adde"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">melana; melana:</AUni> -<AUni ws="qvm-x-acl">melana; melana:</AUni> -<AUni ws="qvm-x-akh">melana; melana:</AUni> -<AUni ws="qvm-x-akl">melana; melana:</AUni> -<AUni ws="qvm-x-ame">melana; melana:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+melanar</AUni> -<AUni ws="qvm-x-acl">+melanar</AUni> -<AUni ws="qvm-x-akh">+melanar</AUni> -<AUni ws="qvm-x-akl">+melanar</AUni> -<AUni ws="qvm-x-ame">+melanar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.404" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e611bf07-5562-4552-a448-1fd518a24477" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+melanar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7589e73b-f378-4ffe-b159-55fb113fa766" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1321edb9-3abe-4b08-ad44-3d81788170be" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +melanar 
\entryTyp root 
\gENG disgust 
\gSPN asquear 
\e +melanar 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach melana foreshortened 
\ach melana: 
\mp +underlong 
\akh melana foreshortened 
\akh melana: 
\acl melana foreshortened 
\acl melana: 
\akl melana foreshortened 
\akl melana: 
\mp +underlong 
\ame melana foreshortened 
\ame melana: 
\i JOB 9.31 Tsauraga röpäpis melanäcamangachari.</Run> -</AStr> -</Custom> -</rt> -<rt class="StTxtPara" guid="476c8028-fb5f-41b7-8a10-cdea0850c384" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">qarqutsin</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="3aac8ef7-d981-47eb-b94a-d9b5d7076db9" t="o" /> -</Segments> -</rt> -<rt class="LexSense" guid="476dcb11-e058-4b1c-8939-a8c711769f4e" ownerguid="53cc3a9b-a692-45e7-82d0-8789d209e889"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c1571c31-ae67-4b5f-82f5-517615ded9d0" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="12ab92c0-dde0-430b-a848-c8ccc660a7fd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="476e010e-0e54-4a81-ac11-fbb0349f970e" ownerguid="dc1a2c6f-1b32-4631-8823-36dacc8cb7bb"> -<ExampleWords> -<AUni ws="en">sundial, angle of the sun, sun-clock, shoot the sun, position of the sun</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What words are used of telling time by the sun?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="477012aa-6ccb-40fa-a161-e26f633c7e60" ownerguid="2933a9c1-aa62-46fb-a03c-68aed7fae9b7"> -<ExampleWords> -<AUni ws="en">blaze, ablaze, burn fiercely, burn brightly, burn hot</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a fire that is burning well?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="477430a1-2dbe-44c8-ba6a-f8deadfb8c82" ownerguid="8af58173-6f34-4b58-bb9a-2e3c6df121bd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="47768d1b-405f-4b0e-934c-bbea1405480f" ownerguid="5718fcc8-1eba-4b8d-9b6b-0c8349f53f80"> -<ExampleWords> -<AUni ws="en">target, goal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the target?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="47782853-9567-45bd-8486-e80927279f44" ownerguid="4ba1cb76-f683-42bd-80d8-5997db4824f8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mount</AUni> -<AUni ws="es">montar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b24c4d73-7d0f-4475-a4b5-ead6687cf321" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="477a00b7-d2cb-4571-9bd0-19ec0a08b76d" ownerguid="3c8eaf3d-757f-431d-9987-26115942e00e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">enter</AUni> -<AUni ws="es">entrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4be60c04-c8c8-4229-9590-6df57b3be008" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="477adf0e-0d24-4fef-a863-9c1fb74ac4b6" ownerguid="c8424590-5304-4d1c-b5cf-fe919bdad89f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="4780accf-3d86-484c-a8d2-c398d837871c" ownerguid="edde4dae-239f-4cb6-a6ad-fd4e79c06f26"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="4780d512-9690-4c10-b9c5-5bbee5e7fb22" ownerguid="db2232d9-8b17-4920-936f-2b6249c6f7fa"> -<ExampleWords> -<AUni ws="en">burgle, burglarize, hold up, knock over, loot, rob (a bank), shoplift</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to stealing things from a house or store?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="47831c57-b38b-4e1d-b532-acbefc553d43" ownerguid="4d3412e3-85a0-4f81-9dad-efd6101b4945"> -<ExampleWords> -<AUni ws="en">bag, purse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to bags?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="478501ce-8952-4fc3-9b00-5aa5aaba24f8" ownerguid="8f2fb60a-ff21-435a-a9d4-f579c5d7e851"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="4786af27-01ba-4a91-a88c-b93ba16acbda" ownerguid="8b9f23f4-a147-4ea8-a13a-c5b1edc7f5e4"> -<ExampleWords> -<AUni ws="en">open, leave open</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to opening something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="478b01f9-5ca7-40c5-905e-22206dde93f1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">infiernu; infierno</AUni> -<AUni ws="qvm-x-acl">infiernu; infiernu; infierno</AUni> -<AUni ws="qvm-x-akh">infiernu; infierno</AUni> -<AUni ws="qvm-x-akl">infiernu; infiernu; infierno</AUni> -<AUni ws="qvm-x-ame">infiernu; infierno</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+infierno</AUni> -<AUni ws="qvm-x-acl">+infierno</AUni> -<AUni ws="qvm-x-akh">+infierno</AUni> -<AUni ws="qvm-x-akl">+infierno</AUni> -<AUni ws="qvm-x-ame">+infierno</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.822" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c882dd2e-596f-464a-afca-c30dcd09eee7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+infierno</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4cec9045-a819-4790-8235-2d6f334658cf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="15c0edac-ab90-4e82-b181-a4d2c88f4cf9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +infierno 
\entryTyp root 
\gENG hell 
\gSPN infierno 
\e +infierno 
\c N0 
\ach infiernu / ~_# 
\ach infierno / _# 
\akh infiernu / ~_# 
\akh infierno / _# 
\acl infiernu / ~_# 
\acl infiernu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl infierno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl infiernu / ~_# 
\akl infiernu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl infierno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame infiernu / ~_# 
\ame infierno / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="47905104-632f-45bc-b18c-a689e514158f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">caji:ta</AUni> -<AUni ws="qvm-x-acl">caji:ta</AUni> -<AUni ws="qvm-x-akh">caji:ta</AUni> -<AUni ws="qvm-x-akl">caji:ta</AUni> -<AUni ws="qvm-x-ame">caji:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cajita</AUni> -<AUni ws="qvm-x-acl">+cajita</AUni> -<AUni ws="qvm-x-akh">+cajita</AUni> -<AUni ws="qvm-x-akl">+cajita</AUni> -<AUni ws="qvm-x-ame">+cajita</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.110" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="296e9a6b-3f37-4381-a83b-719866552202" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cajita</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="65947d3b-a93f-4213-b985-c12a6e706cb3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="949e9796-6a45-491b-8830-9b53d2c48998" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cajita 
\entryTyp root 
\gENG small.box 
\gSPN cajita 
\e +cajita 
\c N0 
\ach caji:ta 
\akh caji:ta 
\acl caji:ta 
\akl caji:ta 
\ame caji:ta 
\i MAT 23.5 Tsaymi jatusaq filacteriankunata [Filacteriaqa takshala cajïtami karqan.]</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="4791c665-6544-41b1-af00-ff51640c24a6" ownerguid="bfa15caf-a60a-44e5-8243-e46dce4d2e5a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tender</AUni> -<AUni ws="es">tierno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ac524006-a15e-4c0b-b8ea-2b440b46c232" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4795767c-f2e3-4d22-aa78-dbcffb4ff6c6" ownerguid="e54cd744-d106-4bcf-bd07-b8783c075c21"> -<ExampleWords> -<AUni ws="en">go out, date</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to something becoming unfashionable?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="479719fa-0dad-49cc-bc28-b801cb39acdb" ownerguid="ef9134b4-0205-4a92-b95d-96fcc27f8e47"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fan</AUni> -<AUni ws="es">hincha</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="826b77bd-112e-40d3-8f55-5eba590f5dd2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4797d895-e832-4c99-97a5-97b49b410e6d" ownerguid="7f7fc197-5064-43c0-af51-2919fb7355c9"> -<ExampleWords> -<AUni ws="en">interconnected, interrelated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that several things are connected somehow?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="479a0e58-d6f4-44a5-846b-49046d94b3e3" ownerguid="788e642b-0327-4f6d-afc2-bab7436cae3c"> -<Form> -<AUni ws="qvm-x-ach">ofrenda</AUni> -<AUni ws="qvm-x-acl">ofrenda</AUni> -<AUni ws="qvm-x-akh">ofrenda</AUni> -<AUni ws="qvm-x-akl">ofrenda</AUni> -<AUni ws="qvm-x-ame">ofrenda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="479cd9a4-a9c6-4326-9f46-f3f99c4780b7" ownerguid="34f2be49-cb77-4299-bb2e-9308d0278797"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="47a1aafd-8ce7-471e-98df-d8c67f04a5e1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ayni</AUni> -<AUni ws="qvm-x-acl">ayni; ayni; ayne</AUni> -<AUni ws="qvm-x-akh">ayni</AUni> -<AUni ws="qvm-x-akl">ayni; ayni; ayne</AUni> -<AUni ws="qvm-x-ame">ayni</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ayñi.n</AUni> -<AUni ws="qvm-x-acl">*ayñi.n</AUni> -<AUni ws="qvm-x-akh">*ayñi.n</AUni> -<AUni ws="qvm-x-akl">*ayñi.n</AUni> -<AUni ws="qvm-x-ame">*ayñi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.900" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3d229ce8-9865-4efa-91ff-448f8ff2d824" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ayñi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="af0c6c87-51be-489d-829c-493cb35b899d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0d9131b5-31e9-40f3-8d8d-cdd1095fefcb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ayñi.n 
\entryTyp root 
\gENG due 
\gSPN 
\e *ayñi.n 
\c N0 
\mp +FinalI 
\ach ayni 
\akh ayni 
\acl ayni / _# 
\acl ayni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ayne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ayni / _# 
\akl ayni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ayne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ayni</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="47a1d7dd-db5d-4074-8e4f-36b5d7ce0ae4" ownerguid="69b19738-1f89-4839-ab20-6054675f394d"> -<Form> -<AUni ws="qvm-x-ach">shishu</AUni> -<AUni ws="qvm-x-acl">shishu; shishu; shisho</AUni> -<AUni ws="qvm-x-akh">shishu</AUni> -<AUni ws="qvm-x-akl">shishu; shishu; shisho</AUni> -<AUni ws="qvm-x-ame">shishu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="47a1f5f0-938f-42cd-8bde-f65ae9d9a6d4" ownerguid="73726931-ef12-4d39-a76e-7742f4b7c9cd"> -<ExampleWords> -<AUni ws="en">capitalism, capitalist, socialism, socialist, communism, communist, free enterprise, private enterprise, free-market economy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to different kinds of economic systems?</AUni> -</Question> -</rt> -<rt class="CmRow" guid="47a43063-ba83-4be2-9604-46a7701a9385" ownerguid="bb7dd3d8-ea5e-11de-8cc5-0013722f8dec"> -<Cells> -<objsur guid="9a942f8d-aa92-40c3-8163-ef3638192bf0" t="o" /> -</Cells> -</rt> -<rt class="CmDomainQ" guid="47a67d6e-2bcb-4cfc-a488-9adf45f9f60b" ownerguid="725d78eb-8cac-4b2f-b5a4-f0a9adb80f5d"> -<ExampleWords> -<AUni ws="en">heresy, heretical, heretic, false doctrine/teaching</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a belief, which the official religion considers to be false?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="47ab53a3-be19-4c1d-9755-27c83ea91e09" ownerguid="0307fe40-1bf2-4373-9ca5-71f2f42f2275"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="47abc34c-6e4e-4705-9e65-0114f0a0c437" ownerguid="3917729f-c2d7-4835-a6f1-23a15428eec8"> -<Form> -<AUni ws="qvm-x-ach">lütu</AUni> -<AUni ws="qvm-x-acl">lütu; lütu; lüto</AUni> -<AUni ws="qvm-x-akh">lütu</AUni> -<AUni ws="qvm-x-akl">lütu; lütu; lüto</AUni> -<AUni ws="qvm-x-ame">lütu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="47ac2dbd-5b77-48fd-8595-7b1894663f47" ownerguid="36b7654f-4f60-4031-904a-5d40c0c8b406"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="47af2df4-42de-4e25-b774-e33f69426626"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">upa:la</AUni> -<AUni ws="qvm-x-acl">upa:la</AUni> -<AUni ws="qvm-x-akh">upa:la</AUni> -<AUni ws="qvm-x-akl">upa:la</AUni> -<AUni ws="qvm-x-ame">upa:la</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*upa:lla.r</AUni> -<AUni ws="qvm-x-acl">*upa:lla.r</AUni> -<AUni ws="qvm-x-akh">*upa:lla.r</AUni> -<AUni ws="qvm-x-akl">*upa:lla.r</AUni> -<AUni ws="qvm-x-ame">*upa:lla.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.241" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f2125749-f2a0-4b12-b39f-9f1ffc353663" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*upa:lla.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6aeec075-acd7-4e9c-9334-c66ee18e9965" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="60157a0e-cf4c-4258-b5d4-844bc1155a78" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *upa:lla.r 
\entryTyp root 
\gENG to.quiet 
\gSPN callarse 
\e *upa:lla.r 
\c R0 
\ach upa:la 
\akh upa:la 
\acl upa:la 
\akl upa:la 
\ame upa:la 
\mcc *upa:lla.r / ~_ BEC</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="47b65666-b984-44a9-b3e7-4b990502b6ef" ownerguid="75a42637-5765-4c74-9a39-4633a1375931"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tight</AUni> -<AUni ws="es">ajustado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6557c22e-08a9-4e68-9d93-0d4e787c064a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="47b6bcfb-4c27-4608-b978-8921a95b031a" ownerguid="b1ac5179-f888-4fb1-a8ba-b108e78acca8"> -<Form> -<AUni ws="qvm-x-ach">remenda</AUni> -<AUni ws="qvm-x-acl">remenda</AUni> -<AUni ws="qvm-x-akh">remenda</AUni> -<AUni ws="qvm-x-akl">remenda</AUni> -<AUni ws="qvm-x-ame">remenda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="47b7d210-055d-4652-a536-648f0af21fd9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">secya</AUni> -<AUni ws="qvm-x-acl">secya</AUni> -<AUni ws="qvm-x-akh">sekya</AUni> -<AUni ws="qvm-x-akl">sekya</AUni> -<AUni ws="qvm-x-ame">sikya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+acequia.1</AUni> -<AUni ws="qvm-x-acl">+acequia.1</AUni> -<AUni ws="qvm-x-akh">+acequia.1</AUni> -<AUni ws="qvm-x-akl">+acequia.1</AUni> -<AUni ws="qvm-x-ame">+acequia.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.629" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eb167d2e-19c4-4edc-ba7a-8b772f95ec76" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+acequia.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b5ce40ab-8536-4c2e-a034-0f537d38ddc3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2c2f3072-ead0-4b3b-bff6-d78a4d17cdf4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +acequia.1 
\entryTyp root 
\gENG canal 
\gSPN acequia 
\e +acequia.1 
\c N0 
\mp +assimilated KQWchange 
\ach secya 
\akh sekya 
\acl secya 
\akl sekya 
\ame sikya</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="47c1ed6e-dbdb-437d-9479-7d5094f5905b" ownerguid="cddc10d4-d68e-4fab-a563-90f5cabda349"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.drool</AUni> -<AUni ws="es">botar.de.boca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="785c3e0b-5f5b-4bbe-b32f-ceb8b6b7c2ad" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="47c36371-e6d9-4672-8a4e-299e8afbba89" ownerguid="d3fa4aff-33ac-4e06-9c7b-4ee2ae81a901"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hospital</AUni> -<AUni ws="es">hospital</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fd84a774-18e6-44a8-a733-670d1ba93ff1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="47c48b8a-efef-43e2-a77f-2741f332e3d2" ownerguid="045dfc91-440c-4f61-9c87-f75c343c718e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="47c4e12a-3907-45bb-9fb3-706d21cd1c79" ownerguid="1438c623-c4ce-4559-b71b-cfb86a71e6d7"> -<ExampleWords> -<AUni ws="en">light a fire, build a fire, make a fire, start a fire, ignite, light a match, set on fire, set fire to something, blow into flames, kindle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used of a person starting a fire?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="47c92285-85af-45a7-bdfd-ebd163ce4609" ownerguid="f0381c4b-881e-4e9f-a5a9-6e081cde914f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cement?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7950edf7-b00e-40ea-977e-1474aa41f7be" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="47c9d6b0-01d6-448e-b01f-af92835efc58" ownerguid="e18fdcdf-fda5-47cc-a9d8-58b6c8a3877d"> -<Form> -<AUni ws="qvm-x-ach">bumbu; bumbo</AUni> -<AUni ws="qvm-x-acl">bumbu; bumbu; bumbo</AUni> -<AUni ws="qvm-x-akh">bumbu; bumbo</AUni> -<AUni ws="qvm-x-akl">bumbu; bumbu; bumbo</AUni> -<AUni ws="qvm-x-ame">bumbu; bumbo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="47ca0709-4df5-4faa-8f72-302922245f12"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">corrigi</AUni> -<AUni ws="qvm-x-acl">corrigi; corrige</AUni> -<AUni ws="qvm-x-akh">corrigi</AUni> -<AUni ws="qvm-x-akl">corrigi; corrige</AUni> -<AUni ws="qvm-x-ame">corrigi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+corregir</AUni> -<AUni ws="qvm-x-acl">+corregir</AUni> -<AUni ws="qvm-x-akh">+corregir</AUni> -<AUni ws="qvm-x-akl">+corregir</AUni> -<AUni ws="qvm-x-ame">+corregir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.211" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a093ac75-be53-4524-9848-63fcb621ed28" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+corregir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="43f7784d-72d5-413c-b0de-51c5263781b8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="511a6c2d-0bb1-43a9-b24c-27b0f1de85ed" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +corregir 
\entryTyp root 
\gENG correct 
\gSPN corregir 
\e +corregir 
\c V2 
\mp +FinalI 
\ach corrigi 
\akh corrigi 
\acl corrigi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl corrige +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl corrigi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl corrige +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame corrigi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="47d030f8-6e67-40b8-a0a2-92d5fa24cc73" ownerguid="61f40376-729d-4d99-894f-06c5689a06ac"> -<ExampleWords> -<AUni ws="en">rough, bumpy, uneven, lumpy, hilly, rolling, mountainous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that is not flat?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="47d3044a-1096-4936-b7f7-d686bc2b67ef" ownerguid="0f631495-e758-444e-9249-d7f384f96f49"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="c55093e2-1f66-4207-9ab7-bb2d519bb976" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="47d81411-d865-42e1-a8de-56faf521d8b6" ownerguid="34c3edad-a158-44e7-989b-5b74401e6945"> -<ExampleWords> -<AUni ws="en">gas, gaseous, vapor, mist, air, fume, steam, steamy, cloud (of gas), plume (of steam)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to gas?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="47daceba-20d4-4709-a281-143ad6295a9e" ownerguid="13af106e-828a-4c96-bd36-e6880cf24eed"> -<Form> -<AUni ws="qvm-x-ach">trapichi; trapiche</AUni> -<AUni ws="qvm-x-acl">trapichi; trapichi; trapiche</AUni> -<AUni ws="qvm-x-akh">trapichi; trapiche</AUni> -<AUni ws="qvm-x-akl">trapichi; trapichi; trapiche</AUni> -<AUni ws="qvm-x-ame">trapichi; trapiche</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="47dcd836-f4e3-4b51-b2a2-9cfd13176ea3" ownerguid="dc76b15c-9f76-4767-89af-5ea560347387"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rag</AUni> -<AUni ws="es">trapo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="eff00dfa-177c-415c-b84c-ae533808e022" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="47e049bb-b93e-43b7-a1fd-8bc1321e817a" ownerguid="e4e05724-01ec-4c61-90f0-b8658cc8ca51"> -<ExampleWords> -<AUni ws="en">enlarge, reflect, focus</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What do these things do?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="47e14b1e-ce7e-4f46-8d67-01aa20c0222a" ownerguid="040e4b3e-2f36-430a-ab09-1917f96a09de"> -<ExampleWords> -<AUni ws="en">hide, meat, blood, milk, eggs, wool, skins, leather, bone meal, fat, tallow, grease, horn, blood, feathers, down, silk</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What useful things are produced by animals?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="47e3f461-984b-45b6-b09b-9fefb9191b15"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mushqui</AUni> -<AUni ws="qvm-x-acl">mushqui; mushque</AUni> -<AUni ws="qvm-x-akh">mushki</AUni> -<AUni ws="qvm-x-akl">mushki; mushke</AUni> -<AUni ws="qvm-x-ame">mushki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mushki</AUni> -<AUni ws="qvm-x-acl">*mushki</AUni> -<AUni ws="qvm-x-akh">*mushki</AUni> -<AUni ws="qvm-x-akl">*mushki</AUni> -<AUni ws="qvm-x-ame">*mushki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.507" /> -<DateModified val="2022-10-10 21:19:47.691" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aad2f719-3691-4ee0-9802-873ca7115884" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mushki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="151f9b79-6d07-4183-ac2a-fe3688829a03" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6e17e279-00e5-4fee-8ef8-096fa90c23b4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mushki 
\entryTyp root 
\gENG be.fragrant 
\gSPN 
\e *mushki 
\c V1 
\mp +FinalI 
\ach mushqui 
\akh mushki 
\acl mushqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl mushque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mushki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mushke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mushki 
\i SNG 1.3 Perfümiquipa asyayninpis maypis mushquiräcuypagmi caycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="47e4b48f-7259-4ca7-abb1-f52c974bfc84"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shapshapya; shapshapya:</AUni> -<AUni ws="qvm-x-acl">shapshapya; shapshapya:</AUni> -<AUni ws="qvm-x-akh">shapshapya; shapshapya:</AUni> -<AUni ws="qvm-x-akl">shapshapya; shapshapya:</AUni> -<AUni ws="qvm-x-ame">shapshapya; shapshapya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shapshapya:</AUni> -<AUni ws="qvm-x-acl">*shapshapya:</AUni> -<AUni ws="qvm-x-akh">*shapshapya:</AUni> -<AUni ws="qvm-x-akl">*shapshapya:</AUni> -<AUni ws="qvm-x-ame">*shapshapya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.541" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="43bdb771-3fa8-4661-81b9-c48892d044b0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shapshapya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="caf73ad7-2508-4a9b-8213-e355bc381c7d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c5341cad-2caa-48e8-80d5-0ed9ac9d5ee9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shapshapya: 
\entryTyp root 
\gENG whisper 
\gSPN ? 
\e *shapshapya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach shapshapya foreshortened 
\ach shapshapya: 
\akh shapshapya foreshortened 
\akh shapshapya: 
\acl shapshapya foreshortened 
\acl shapshapya: 
\akl shapshapya foreshortened 
\akl shapshapya: 
\ame shapshapya foreshortened 
\ame shapshapya:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="47e62014-0137-4d6a-992d-fc894d6385b3" ownerguid="91913920-8a6a-4ba0-9361-d6cc9e1f3639"> -<ExampleWords> -<AUni ws="en">layer, level, stratum, stratified, story, floor, sandwich</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a layer of something?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="47ed6c39-b728-4ae7-be7c-c45c714c3153" ownerguid="8080c7ed-e69a-4a8a-bd8d-bf3447b13630"> -<Abbreviation> -<AUni ws="en">6.2.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.428" /> -<DateModified val="2022-9-23 16:55:8.428" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to threshing grain.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Thresh</AUni> -</Name> -<Questions> -<objsur guid="eb608a01-56be-4361-9493-c02a63de73aa" t="o" /> -<objsur guid="30268fd6-c304-4297-956f-ceaabf59d8c9" t="o" /> -<objsur guid="aa21368d-3a48-4b5f-9a62-7c93581c3257" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="47f170eb-5f1d-49a5-85bb-240047f392c0" ownerguid="c05bf8c3-78f2-4ec5-b0d7-32d4963a5794"> -<Abbreviation> -<AUni ws="en">8.3.6.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is soft or flimsy.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79U Soft, Tender</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Soft, flimsy</AUni> -</Name> -<Questions> -<objsur guid="f08e4f19-d18c-40e3-8a80-c0b3fd891314" t="o" /> -<objsur guid="7f746594-9782-45dd-940f-321f808e1a3b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="47f4d00c-8e73-4913-b8f4-a51a0ab01433" ownerguid="f03fdc3a-e0f2-4ae8-bb23-b8e488562d9b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.steep</AUni> -<AUni ws="es">ser.pendiente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="752e53ff-e2e1-43b2-ad98-83c7fd4cd264" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="47f5168e-2803-43b9-b5fa-9921d94ee1a6" ownerguid="77509eb0-29ac-40e0-94d3-acad69aa5778"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="47f57830-3e5f-4028-bdb3-026d0544c52e" ownerguid="70f80041-af88-4521-9ebd-21d8f0b0d131"> -<ExampleWords> -<AUni ws="en">face to face, facing each other</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words indicate that two people are in front of each other?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="47f7eed7-5803-4c50-a40b-e3296d4274a2" ownerguid="22e8f542-0ab1-4f25-af50-fd0d02917fda"> -<ExampleWords> -<AUni ws="en">metaphor, simile, comparison</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to particular types of figures of speech?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="47f8d0dd-fceb-47a2-9323-d1c11c218ce3" ownerguid="9d896f02-c26a-49e1-a602-5f97ae3d2bc2"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuya</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuya</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuya</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuya</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuya</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ed8e0c9a-5a44-4448-bc6b-1b766f141f5c" t="r" /> -</Morph> -<Msa> -<objsur guid="6ee88865-51d6-40db-b9fa-4ba30a1cf4e7" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="47fa8ad6-8262-4511-8250-582e103a4f25" ownerguid="1207a60d-d3f3-4dd3-b8dd-2a74e9d82c3a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">perfume</AUni> -<AUni ws="es">perfume</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0d19a616-0ee2-47aa-af09-66b1858ba98f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="47fb31ce-cbfa-4d5f-81c7-cc656667f58c" ownerguid="999581c4-1611-4acb-ae1b-5e6c1dfe6f0c"> -<ExampleWords> -<AUni ws="en">horizon, skyline</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the edge of the sky where it meets the ground?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="47fb953c-33ca-4a22-af07-19f5b0a53df4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">perjuicia:du</AUni> -<AUni ws="qvm-x-acl">perjuicia:du; perjuicia:du; perjuicia:do</AUni> -<AUni ws="qvm-x-akh">perjuicia:du</AUni> -<AUni ws="qvm-x-akl">perjuicia:du; perjuicia:du; perjuicia:do</AUni> -<AUni ws="qvm-x-ame">perjuicia:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+perjuiciado</AUni> -<AUni ws="qvm-x-acl">+perjuiciado</AUni> -<AUni ws="qvm-x-akh">+perjuiciado</AUni> -<AUni ws="qvm-x-akl">+perjuiciado</AUni> -<AUni ws="qvm-x-ame">+perjuiciado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.800" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ab0dfa34-3174-4b8d-afef-97c5eec695a0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+perjuiciado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9b2d8f39-754d-4c4f-93b2-e55cd1576af6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c615f575-4448-414c-b8f4-d2f73bcdb3b1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +perjuiciado 
\entryTyp root 
\gENG 
\gSPN 
\e +perjuiciado 
\c N0 
\ach perjuicia:du 
\akh perjuicia:du 
\acl perjuicia:du / _# 
\acl perjuicia:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl perjuicia:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl perjuicia:du / _# 
\akl perjuicia:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl perjuicia:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame perjuicia:du</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="47feee3e-80e1-469a-911c-0c550b37a2f8" ownerguid="7bf05f4e-909f-40ca-b742-9be21eba9fbb"> -<Abbreviation> -<AUni ws="en">9.4.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.700" /> -<DateModified val="2022-9-23 16:55:8.700" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that a speaker uses to indicate that he thinks something must happen.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>71E Necessary, Unnecessary</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Necessary</AUni> -</Name> -<Questions> -<objsur guid="0d8f478b-d9ef-4ae2-b02c-7cea59826803" t="o" /> -<objsur guid="ba44c67a-8cb0-4c76-85bd-69639417f5dd" t="o" /> -<objsur guid="076b9c20-df64-4894-aad2-fb147a344ac4" t="o" /> -<objsur guid="a0722dc7-ca7f-44bf-9db3-8367500d1010" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="47feff41-ef58-4fb6-bb10-35d3c5c721fe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">itsug</AUni> -<AUni ws="qvm-x-acl">itsog</AUni> -<AUni ws="qvm-x-akh">itsuq</AUni> -<AUni ws="qvm-x-akl">itsoq</AUni> -<AUni ws="qvm-x-ame">itsuq</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ichuq</AUni> -<AUni ws="qvm-x-acl">*ichuq</AUni> -<AUni ws="qvm-x-akh">*ichuq</AUni> -<AUni ws="qvm-x-akl">*ichuq</AUni> -<AUni ws="qvm-x-ame">*ichuq</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.782" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0ec25a63-c01f-46bb-a4f0-85d4a67d9bdd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ichuq</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="72e55588-c305-4179-892d-1e1dcf47151a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c93f4aef-cd1c-4ae5-9a7a-ab643f69ddb6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ichuq 
\entryTyp root 
\gENG left 
\gSPN izquierdo 
\e *ichuq 
\c N0 
\mp +FinalC 
\ach itsug 
\akh itsuq 
\acl itsog 
\akl itsoq 
\ame itsuq</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4801a29a-d1e5-4f1d-bba3-9688ca49260b" ownerguid="50e28fa7-f6c3-45bc-871d-12ef771d532c"> -<ExampleWords> -<AUni ws="en">care for, take care of, meet someone's needs</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to caring for someone?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4806239f-e91b-4759-94c7-51891d6f21fe" ownerguid="8a8c0973-3791-4d9f-99b6-58923b88ef41"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bush</AUni> -<AUni ws="es">arbusto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="24357b19-28a5-49f2-b6f6-e490276ba094" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="48080147-65df-41f9-a50d-36d2dc3d7354" ownerguid="653dbbd5-0bc8-4c89-b563-2ce36c18cdf6"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="48087cf4-d67f-4cb8-84d2-f73cab726514" ownerguid="e54f6ad6-aec7-4132-8c48-33922bcdde05"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="9ea337af-73db-494f-bd9b-9dfd112d252a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="480b21f9-059d-4da4-abb9-7a51b2d19095"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">abyu</AUni> -<AUni ws="qvm-x-acl">abyu; abyu; abyo</AUni> -<AUni ws="qvm-x-akh">abyu</AUni> -<AUni ws="qvm-x-akl">abyu; abyu; abyo</AUni> -<AUni ws="qvm-x-ame">abyu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+avío</AUni> -<AUni ws="qvm-x-acl">+avío</AUni> -<AUni ws="qvm-x-akh">+avío</AUni> -<AUni ws="qvm-x-akl">+avío</AUni> -<AUni ws="qvm-x-ame">+avío</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.888" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2bcf98f4-e542-45e9-8bd0-47f3ecbb0886" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+avío</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0b1c2101-5aeb-4d9b-955c-5f1f6af6881b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dc780b44-39f1-4424-971e-9189e4902ba7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +avío 
\entryTyp root 
\gENG 
\gSPN animal.de.carga 
\e +avío 
\c N0 
\mp +assimilated 
\ach abyu 
\akh abyu 
\acl abyu / _# 
\acl abyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl abyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl abyu / _# 
\akl abyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl abyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame abyu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="480d495b-7377-45d5-94aa-bf0f650aca55" ownerguid="0fa0be21-2246-40b2-86b1-ca572fe8c16c"> -<ExampleWords> -<AUni ws="en">dead, one-horse town, nothing ever happens, drab, featureless, dreary</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe a place that is uninteresting</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="480e2f6d-e5e7-4cb9-8e23-49379eda417d" ownerguid="ecf9ebd7-f991-41df-98cd-bcf1254d5d0b"> -<ExampleWords> -<AUni ws="en">leader, van, vanguard</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the person who goes ahead?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="480e637a-50ce-4b59-9476-7e7df6d6e91c" ownerguid="2fd00980-86ee-4708-8139-71706001cafa"> -<Form> -<AUni ws="qvm-x-ach">pincu</AUni> -<AUni ws="qvm-x-acl">pincu; pincu; pinco</AUni> -<AUni ws="qvm-x-akh">pinku</AUni> -<AUni ws="qvm-x-akl">pinku; pinku; pinko</AUni> -<AUni ws="qvm-x-ame">pinku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="480ea79a-2627-4c59-99aa-f35f08b7bba4" ownerguid="9612bdd6-15cb-4269-aaf9-481c7b35b5dd"> -<ExampleWords> -<AUni ws="en">speak quietly, talk softly, whisper, murmur, mumble</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to speaking quietly?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="480ee451-64dd-4bad-bd85-c6811a8eb4cb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">usunca; usunca:</AUni> -<AUni ws="qvm-x-acl">usunca; usunca:</AUni> -<AUni ws="qvm-x-akh">usunka; usunka:</AUni> -<AUni ws="qvm-x-akl">usunka; usunka:</AUni> -<AUni ws="qvm-x-ame">usunka; usunka:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*usunka:</AUni> -<AUni ws="qvm-x-acl">*usunka:</AUni> -<AUni ws="qvm-x-akh">*usunka:</AUni> -<AUni ws="qvm-x-akl">*usunka:</AUni> -<AUni ws="qvm-x-ame">*usunka:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.292" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aeb16623-d27e-456f-ae28-a7f368d1b8f9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*usunka:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c27bc227-6861-449b-956c-42c1f33c132a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="929fafb5-d915-465c-baa7-8f09caa69de6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *usunka: 
\entryTyp root 
\gENG be.numb 
\gSPN adormecer 
\e *usunka: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach usunca foreshortened 
\ach usunca: 
\akh usunka foreshortened 
\akh usunka: 
\acl usunca foreshortened 
\acl usunca: 
\akl usunka foreshortened 
\akl usunka: 
\ame usunka foreshortened 
\ame usunka:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="480f02fe-2b20-42bb-9ff2-7c53284034b4" ownerguid="ea45cdbd-7684-410c-b107-2a5b343f6a9a"> -<Form> -<AUni ws="qvm-x-ach">shoga</AUni> -<AUni ws="qvm-x-acl">shoga</AUni> -<AUni ws="qvm-x-akh">shoqa</AUni> -<AUni ws="qvm-x-akl">shoqa</AUni> -<AUni ws="qvm-x-ame">shuqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="4810777e-4d08-424a-adcd-ab2b65ed9f37" ownerguid="8ce06964-1c8e-494b-a177-ad1c4f16ea97"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="48147205-7b82-49d0-b725-f87b1fef5b45" ownerguid="c817af65-7cc8-4105-a8ed-47067d97b73b"> -<ExampleWords> -<AUni ws="en">purple cloth, crown, royal robes</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What special clothes are worn by the king?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="481a232a-ac7d-4ef8-ae63-5dea076d242f" ownerguid="71c0ef32-d1cc-4af5-9276-2c60abde2138"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="b89caa27-9fcb-43ee-a8fd-78066cdab07b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="481d05f1-82d3-4ef6-931f-52182fab0eb5" ownerguid="f54f3a89-9f34-4c3f-80c9-92a1bec8f032"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="64307c2e-b726-43a0-80cd-291f16709946" t="o" /> -<objsur guid="dc3fe924-a45d-4082-82ef-422282b54685" t="o" /> -<objsur guid="0bf0800b-6e6d-44e6-b9cb-d2181b0ad5a0" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="481d20bb-a0c0-4230-8c0c-9abac00a9937" ownerguid="2540ea13-279e-4bac-9951-8acdd2159eb2"> -<Form> -<AUni ws="qvm-x-ach">cëna</AUni> -<AUni ws="qvm-x-acl">cëna</AUni> -<AUni ws="qvm-x-akh">cëna</AUni> -<AUni ws="qvm-x-akl">cëna</AUni> -<AUni ws="qvm-x-ame">cëna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="4820942a-275b-45f3-adaf-8a9d74aa7aaa" ownerguid="b6160092-9070-4549-af63-b6e2b52c06ec"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a8a734fa-d560-418b-9f35-6c95f2e932cf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="4823269d-2b7b-4393-9f35-4c7dbe7fa94a" ownerguid="d14af1ba-04d0-4edf-ad39-35c80a3748c1"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="48242270-e5d0-470d-8427-9619e2c67135" ownerguid="03e02aa1-46e1-4b39-b303-9f7d729d4b1e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">gargu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">gargu; gargo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qarqu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qarqu; qarqo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qarqu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2232ab14-ff9d-4403-b432-21884e84369c" t="r" /> -</Morph> -<Msa> -<objsur guid="d2d2bfb6-5ff7-4b48-831a-c27cb6b0f51e" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="482734b2-9be6-4030-8c39-035b05bed72a" ownerguid="f6df56d5-05df-40f4-9c66-8042b406f68d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">nö</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">nö</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">nö</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">nö</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">naw</Run> -</AStr> -</Form> -</rt> -<rt class="LexEntry" guid="482b5e0e-41af-408d-a300-66c0c7b682de"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bru:ju</AUni> -<AUni ws="qvm-x-acl">bru:ju; bru:ju; bru:jo</AUni> -<AUni ws="qvm-x-akh">bru:ju</AUni> -<AUni ws="qvm-x-akl">bru:ju; bru:ju; bru:jo</AUni> -<AUni ws="qvm-x-ame">bru:ju</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+brujo</AUni> -<AUni ws="qvm-x-acl">+brujo</AUni> -<AUni ws="qvm-x-akh">+brujo</AUni> -<AUni ws="qvm-x-akl">+brujo</AUni> -<AUni ws="qvm-x-ame">+brujo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.991" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b9777291-73f4-4772-a6d2-4684a959f5d3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+brujo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bbd2d1da-b97c-4bfc-94f1-1deaf6cc7415" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7320ae3e-8f7b-4328-94fe-192e81ec831d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +brujo 
\entryTyp root 
\gENG witch 
\gSPN brujo 
\e +brujo 
\c N0 
\ach bru:ju 
\akh bru:ju 
\acl bru:ju / _# 
\acl bru:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl bru:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl bru:ju / _# 
\akl bru:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl bru:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame bru:ju</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="482fae12-4041-4cf4-a652-9b7e0ed382a7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pedago:gicu</AUni> -<AUni ws="qvm-x-acl">pedago:gicu; pedago:gicu; pedago:gico</AUni> -<AUni ws="qvm-x-akh">pedago:gicu</AUni> -<AUni ws="qvm-x-akl">pedago:gicu; pedago:gicu; pedago:gico</AUni> -<AUni ws="qvm-x-ame">pedago:gicu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pedagógico</AUni> -<AUni ws="qvm-x-acl">+pedagógico</AUni> -<AUni ws="qvm-x-akh">+pedagógico</AUni> -<AUni ws="qvm-x-akl">+pedagógico</AUni> -<AUni ws="qvm-x-ame">+pedagógico</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.780" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a4bc6faf-bf61-4be1-9e4b-ea3466dc9696" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pedagógico</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cd4d49cb-fc99-40f8-a8cf-73e35d89034f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="41ed06b0-be71-4be0-b9ed-473b91f2e45b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pedagógico 
\entryTyp root 
\gENG pedagogical 
\gSPN pedagógico 
\e +pedagógico 
\c N0 
\ach pedago:gicu 
\akh pedago:gicu 
\acl pedago:gicu / _# 
\acl pedago:gicu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pedago:gico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pedago:gicu / _# 
\akl pedago:gicu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pedago:gico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pedago:gicu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="48341142-8df7-4908-9da0-749b26ffdfda" ownerguid="6f9ca431-5796-4d32-a3d7-8293ae8998ff"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">reclaim</AUni> -<AUni ws="es">reclamar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a5364d61-21ed-456b-a0d5-c165fbf239c3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="4834aaf1-8e8d-46c1-a52c-811210a674b5" ownerguid="32922991-52e6-497c-bbd1-db375f9af8ca"> -<Form> -<AUni ws="qvm-x-ach">urcus</AUni> -<AUni ws="qvm-x-acl">urcus</AUni> -<AUni ws="qvm-x-akh">urkus</AUni> -<AUni ws="qvm-x-akl">urkus</AUni> -<AUni ws="qvm-x-ame">urkus</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="48380d5d-bd54-48a9-92bc-7c8a93de0567" ownerguid="49ee84ff-eb2b-4ba3-b193-3018d34599c2"> -<Abbreviation> -<AUni ws="en">6.8.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to lending something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Lend</AUni> -</Name> -<Questions> -<objsur guid="79b5ad37-1022-46a3-9448-ab62ac02ed60" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="483a342d-2cab-40ab-a1af-dc2693735ef6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">habilida; habilida:</AUni> -<AUni ws="qvm-x-acl">habilida; habilida:</AUni> -<AUni ws="qvm-x-akh">habilida; habilida:</AUni> -<AUni ws="qvm-x-akl">habilida; habilida:</AUni> -<AUni ws="qvm-x-ame">habilida; habilida:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+habilidad</AUni> -<AUni ws="qvm-x-acl">+habilidad</AUni> -<AUni ws="qvm-x-akh">+habilidad</AUni> -<AUni ws="qvm-x-akl">+habilidad</AUni> -<AUni ws="qvm-x-ame">+habilidad</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.637" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="83f2def0-bbad-4684-814a-d1c457975294" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+habilidad</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3fc4d3f0-d6ed-49e8-94a5-4976818a7c0d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a3ef2fcf-3a82-4e4b-b295-3bbbd5f56502" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +habilidad 
\entryTyp root 
\gENG ability 
\gSPN habilidad 
\e +habilidad 
\c N0 
\mp +FinalC 
\mp +underlong 
\ach habilida foreshortened 
\ach habilida: 
\mp +underlong 
\akh habilida foreshortened 
\akh habilida: 
\acl habilida foreshortened 
\acl habilida: 
\akl habilida foreshortened 
\akl habilida: 
\mp +underlong 
\ame habilida foreshortened 
\ame habilida: 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="483c4235-d996-4230-a3d5-388c1e1be5b9" ownerguid="d9d51c58-ecff-4e68-ba88-c5c96083536b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V0 V2/V0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">3</AUni> -<AUni ws="es">3</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="483f367d-6a7b-4f0e-bf66-551bb101e3fe" ownerguid="2a0b8f7c-503a-4860-8a12-afd38f6b768b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">read</AUni> -<AUni ws="es">leer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cf686b15-80dc-4908-b6d4-755ab6fba460" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="48427202-ac88-4c3e-8d52-a17ec5472384" ownerguid="e0e8af5a-04c1-49a1-9955-9a2af7879068"> -<ExampleWords> -<AUni ws="en">little-known, secret, secrecy, obscure, private, mystery, mysterious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something or someone that is not known by many people?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="48430ea7-83e0-4c18-b63f-8aac6673f507" ownerguid="d32131fc-fd15-4162-8310-5223a1c65c20"> -<Form> -<AUni ws="qvm-x-ach">päcU</AUni> -<AUni ws="qvm-x-acl">päcU</AUni> -<AUni ws="qvm-x-akh">päkU</AUni> -<AUni ws="qvm-x-akl">päkU</AUni> -<AUni ws="qvm-x-ame">päkU</AUni> -</Form> -<IsAbstract val="True" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="4843c8e5-7c5c-4892-8f4c-610054073035"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tupu</AUni> -<AUni ws="qvm-x-acl">tupu; tupu; tupo</AUni> -<AUni ws="qvm-x-akh">tupu</AUni> -<AUni ws="qvm-x-akl">tupu; tupu; tupo</AUni> -<AUni ws="qvm-x-ame">tupu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tupu.n</AUni> -<AUni ws="qvm-x-acl">*tupu.n</AUni> -<AUni ws="qvm-x-akh">*tupu.n</AUni> -<AUni ws="qvm-x-akl">*tupu.n</AUni> -<AUni ws="qvm-x-ame">*tupu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.5" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="32bd4389-c6c2-4961-96ee-f67746108cf9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tupu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="feb11df8-d6a3-4a25-9097-b0b6a5b215fe" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c55e45c4-5f13-4fbd-9d7f-0fa743d13aeb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tupu.n 
\entryTyp root 
\gENG measure 
\gSPN medida 
\e *tupu.n 
\c N0 
\ach tupu 
\akh tupu 
\acl tupu / _# 
\acl tupu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tupo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tupu / _# 
\akl tupu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tupo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tupu 
\mcc *tupu.n / ~_ 3P TOP</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="48451b66-fa75-4f84-8484-3bbb57792ef9" ownerguid="ac35d320-d6b3-4e66-ad88-c5c16a70aaca"> -<Form> -<AUni ws="qvm-x-ach">metal</AUni> -<AUni ws="qvm-x-acl">metal</AUni> -<AUni ws="qvm-x-akh">metal</AUni> -<AUni ws="qvm-x-akl">metal</AUni> -<AUni ws="qvm-x-ame">metal</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="484602df-3914-4538-a36f-62a75fc50306"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuarta</AUni> -<AUni ws="qvm-x-acl">cuarta</AUni> -<AUni ws="qvm-x-akh">cuarta</AUni> -<AUni ws="qvm-x-akl">cuarta</AUni> -<AUni ws="qvm-x-ame">cuarta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuarta</AUni> -<AUni ws="qvm-x-acl">+cuarta</AUni> -<AUni ws="qvm-x-akh">+cuarta</AUni> -<AUni ws="qvm-x-akl">+cuarta</AUni> -<AUni ws="qvm-x-ame">+cuarta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.232" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="50071a6a-a666-4203-a629-cd87953d20b1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuarta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="731292c7-f732-4987-8d14-e18e8cbc0dc6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="339641bb-6fa8-45d1-be48-fcd65d45963d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuarta 
\entryTyp root 
\gENG 
\gSPN 
\e +cuarta 
\c N0 V1 
\ach cuarta 
\akh cuarta 
\acl cuarta 
\akl cuarta 
\ame cuarta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="484778a1-cc8f-49db-809c-496b826188fa" ownerguid="27b34c00-3d63-4d25-bea6-14002f31108a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.worth</AUni> -<AUni ws="es">valer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="743601ad-61dc-4741-84e8-491f0a192a61" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="48478320-e082-489a-8db8-8c0b48daa2cf" ownerguid="ab65fb70-328e-4285-af71-5db817087dc3"> -<Form> -<AUni ws="qvm-x-ach">logtu</AUni> -<AUni ws="qvm-x-acl">logtu; logtu; logto</AUni> -<AUni ws="qvm-x-akh">loqtu</AUni> -<AUni ws="qvm-x-akl">loqtu; loqtu; loqto</AUni> -<AUni ws="qvm-x-ame">luqtu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="48486f9d-84ae-4098-b823-439c9abc578a" ownerguid="9e66a042-6748-4186-8a0d-66e194b4039c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">bolsa.para.coca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="582498a9-f405-48b9-9fc9-264f9912a342" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="4849b34f-4b14-4f9b-b148-695ffbf86772" ownerguid="95f76778-3484-4cbf-a51d-e6acb79bd884"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="484b3ba1-71ff-4f8b-b288-adc2cb690d3b" ownerguid="99c51a2c-ad49-48a6-bb0b-f059da745ec4"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John gave a ring <to> Mary.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words mark the recipient of a patient?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="484b7486-2e92-407f-a1d2-9b0cc44ed7fb" ownerguid="99460595-a669-4c67-8f08-861cb2eb3b0a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="484bfee1-4cfe-4890-b211-8e876eae2ab5" ownerguid="c41c4db3-2844-4feb-bdfd-80a282c48fc8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">turn.around</AUni> -<AUni ws="es">voltear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8d2f364d-7d8a-4223-82a9-b4684985afed" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="48513e94-440a-4a11-8323-d324089bbe0a" ownerguid="f883266a-146a-41c7-b1db-85120840c3a8"> -<ExampleWords> -<AUni ws="en">make something impossible, rule out, preclude</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words indicate that one thing makes something else impossible?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="48517c0a-a671-4332-9835-ba8f05f79470"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pururucu</AUni> -<AUni ws="qvm-x-acl">pururucu; pururucu; pururuco</AUni> -<AUni ws="qvm-x-akh">pururuku</AUni> -<AUni ws="qvm-x-akl">pururuku; pururuku; pururuko</AUni> -<AUni ws="qvm-x-ame">pururuku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pururuku</AUni> -<AUni ws="qvm-x-acl">*pururuku</AUni> -<AUni ws="qvm-x-akh">*pururuku</AUni> -<AUni ws="qvm-x-akl">*pururuku</AUni> -<AUni ws="qvm-x-ame">*pururuku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.29" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e2d654b5-1570-423b-b60d-889426975c59" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pururuku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d1c92d10-e1bb-4942-a69f-b7236c5848a6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="048ca608-de83-4972-948f-a54aac8efc2e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pururuku 
\entryTyp root 
\gENG throat 
\gSPN garganta 
\e *pururuku 
\c N0 
\ach pururucu 
\akh pururuku 
\acl pururucu / _# 
\acl pururucu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pururuco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pururuku / _# 
\akl pururuku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pururuko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pururuku</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="485487c7-d954-4e57-8e8c-d65c3edaab8f" ownerguid="3fb324dc-7e19-43b2-802a-b37e3d88671f"> -<Form> -<AUni ws="qvm-x-ach">sujeta</AUni> -<AUni ws="qvm-x-acl">sujeta</AUni> -<AUni ws="qvm-x-akh">sujeta</AUni> -<AUni ws="qvm-x-akl">sujeta</AUni> -<AUni ws="qvm-x-ame">sujeta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="485716ca-5d9c-42e0-a87b-35740e8f67ad" ownerguid="d1b3d0f0-5319-4a6a-8a70-2179a8e76d22"> -<ExampleWords> -<AUni ws="en">independent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words describe someone who does not need anything?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="485f8193-6d38-4430-8724-b9c74317cd99" ownerguid="e094e28b-1468-49dd-a341-880222abec52"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.sweat</AUni> -<AUni ws="es">sudar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="93225ae4-699c-4c03-89ef-d98110f53364" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="48624539-1ba2-4c9b-881e-36fc9b000c5b" ownerguid="6fa33de6-00f4-44d5-b6b3-b3c4a4f671e5"> -<ExampleWords> -<AUni ws="en">(Japanese) ka? 'a particle coming at the end of a sentence to indicate that it is a question'</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that the sentence is a question?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4863d14d-5592-4aea-9fa5-dbe86dca14ad" ownerguid="7684c6b8-53d5-4553-a4f3-4c66dc531ddb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoInflAffMsa" guid="4867346d-ecb1-40e9-a091-3bc5d299d8a0" ownerguid="4b0bbf4a-bae7-431a-b85a-c3a0cffe19b4"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="4cbb4780-6fd8-49fe-88d5-5efa3fa992de" t="r" /> -</Slots> -</rt> -<rt class="LexSense" guid="48676727-e968-49af-9d2b-daa1070e9418" ownerguid="43b940dd-883e-4e69-b3d3-5d576b435990"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="087a9c5b-b1f8-4e6b-a050-8ae8347b80a0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="48681d0a-d5f3-4861-b0f6-e3571dc55eee" ownerguid="b4664e30-2a93-4452-844e-27d17344415f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="ca07312d-49a1-4d8c-8591-706cb7d5a595" t="r" /> -</Msa> -<Sense> -<objsur guid="a1eaf593-3379-47ea-bee4-15cbbda9775f" t="r" /> -</Sense> -</rt> -<rt class="WfiMorphBundle" guid="486b870b-8df9-468d-870b-8a631c3eab5e" ownerguid="1ec11352-4001-4c0e-9746-549a1525b19b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63e241cb-3471-43ad-8545-4d005f632d4d" t="r" /> -</Morph> -<Msa> -<objsur guid="d3b5839a-9f79-4b2d-96b3-8cee7717866b" t="r" /> -</Msa> -</rt> -<rt class="Segment" guid="486c2de1-4992-4833-a667-9c73b12affd1" ownerguid="40ee76e2-b35f-46c7-9ffc-8c8411198673"> -<Analyses> -<objsur guid="7191be07-9702-4a82-ba0b-2fd748164668" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="CmDomainQ" guid="486d76f9-8e09-4962-9a8a-fb3a7e0731ef" ownerguid="69d366d2-9735-4a1b-b938-7b212932b568"> -<ExampleWords> -<AUni ws="en">Halley's Comet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What are the names of other heavenly bodies?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="486f0983-a6b4-4822-a8f3-8e4aac6253fa" ownerguid="59d936f3-dffb-4585-80e0-eaf6cd6a8026"> -<ExampleWords> -<AUni ws="en">inability, unable, incapable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that someone is not able to do something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4870b2b3-03fb-4964-9e2e-84460c9a4cce"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">muntuna</AUni> -<AUni ws="qvm-x-acl">muntuna</AUni> -<AUni ws="qvm-x-akh">muntuna</AUni> -<AUni ws="qvm-x-akl">muntuna</AUni> -<AUni ws="qvm-x-ame">muntuna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+amontonar</AUni> -<AUni ws="qvm-x-acl">+amontonar</AUni> -<AUni ws="qvm-x-akh">+amontonar</AUni> -<AUni ws="qvm-x-akl">+amontonar</AUni> -<AUni ws="qvm-x-ame">+amontonar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.759" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7c95748a-3b2c-446d-a6a3-119b1ac47f92" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+amontonar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8b61ce26-d083-4887-b3a6-8dd01addbdc1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8f680cc6-52ca-4ee5-b40f-9101111a4e15" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +amontonar 
\entryTyp root 
\gENG pile 
\gSPN montonar 
\e +amontonar 
\c V1 
\ach muntuna 
\akh muntuna 
\acl muntuna 
\akl muntuna 
\ame muntuna</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="4872c571-5518-4b38-8579-b26952b20ee3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">camtsa</AUni> -<AUni ws="qvm-x-acl">camtsa</AUni> -<AUni ws="qvm-x-akh">kamtsa</AUni> -<AUni ws="qvm-x-akl">kamtsa</AUni> -<AUni ws="qvm-x-ame">kamtsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kamcha.n</AUni> -<AUni ws="qvm-x-acl">*kamcha.n</AUni> -<AUni ws="qvm-x-akh">*kamcha.n</AUni> -<AUni ws="qvm-x-akl">*kamcha.n</AUni> -<AUni ws="qvm-x-ame">*kamcha.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.920" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="42d2d628-a675-4b99-85c6-3db08e2b30b7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kamcha.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dc8f23ee-46e0-4da4-93d2-8f91f1764fa0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ce69677b-1de7-4e7e-bd55-3dd4ad2a1dcb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kamcha.n 
\entryTyp root 
\gENG toasted.corn 
\gSPN cancha 
\e *kamcha.n 
\c N0 
\ach camtsa 
\akh kamtsa 
\acl camtsa 
\akl kamtsa 
\ame kamtsa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="4876b8f4-604a-47b3-802f-918d18f32fde" ownerguid="43a9a384-9c57-4480-9b6b-2b08cb39d770"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">HOS 10.11 Jacobpita miragcuna cospiadörata garachagnogmi cashga.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="487c384e-423e-430d-a287-354a694945a2" ownerguid="8b6ddb1f-0335-4f1a-bd7a-3a505a1a6a7c"> -<Form> -<AUni ws="qvm-x-ach">töru</AUni> -<AUni ws="qvm-x-acl">töru; töru; töro</AUni> -<AUni ws="qvm-x-akh">töru</AUni> -<AUni ws="qvm-x-akl">töru; töru; töro</AUni> -<AUni ws="qvm-x-ame">töru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="4883b84d-ab59-4fcd-b02c-bb1dcb017030" ownerguid="6aed624e-1b4a-4909-a8d2-0baf1c658458"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">quimsa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">quimsa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kimsa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kimsa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kimsa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="41109bdc-0212-42a2-9d55-1a7251e60e21" t="r" /> -</Morph> -<Msa> -<objsur guid="01f2e0f4-4933-4a65-a9cc-e845c315fb2a" t="r" /> -</Msa> -<Sense> -<objsur guid="c56f4ba7-8ae7-40c9-bdf4-d733649d1b04" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="4883cab0-ef7e-4b24-9559-d2b2a6c04313" ownerguid="598449d6-42d2-4fda-b0ef-0b2527629e7a"> -<Form> -<AUni ws="qvm-x-ach">cautsu</AUni> -<AUni ws="qvm-x-acl">cautsu; cautso</AUni> -<AUni ws="qvm-x-akh">kawtsu</AUni> -<AUni ws="qvm-x-akl">kawtsu; kawtso</AUni> -<AUni ws="qvm-x-ame">kawtsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="4884535c-ece5-4bb1-b74f-63c3851f6a11" ownerguid="02c7ba24-ba2d-4b28-adb4-f14d228e5807"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="4886a1a1-5046-4d27-82c7-70a1323335bf" ownerguid="8a23ef82-2e94-4aa0-8fae-de0c62cebdbc"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="4887d6ff-b6c5-46c5-9f78-4511b923e216" ownerguid="04582a28-b94a-4e7f-8cc4-5cdefa8a39f0"> -<ExampleWords> -<AUni ws="en">cad, chesty, dandified, dandy, fatherly, foppish, fox, gentlemanly, rake, stud</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a man?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="48888c1a-2110-45f5-8e51-b1e14b8c2f42" ownerguid="d88f62ce-1375-4ddb-a635-ff73b844d650"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="83338005-464f-4e8e-96d2-2a799942a33d" t="r" /> -</Morph> -<Msa> -<objsur guid="715c8af0-d7ab-448b-a2fa-f8b36822dac0" t="r" /> -</Msa> -</rt> -<rt class="Segment" guid="4888efac-5595-4103-b901-c563f96cf200" ownerguid="08bb8f22-5f11-43c5-95b0-2fe25fd96571"> -<Analyses> -<objsur guid="da7a7c51-7ddf-443d-8edc-53099d057c3b" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexSense" guid="488c7517-8478-4b73-ae17-c75466aea1a2" ownerguid="a9a5d19c-f4cf-4fe3-a25c-4bc0803115a9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">foot</AUni> -<AUni ws="es">pie</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9a59b78d-969a-479f-9ea9-5895984d18c2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="4891e48d-bb7c-4014-bb51-657f37725fde" ownerguid="2ef1c923-3a98-4b23-a1d1-99cf3fd74919"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="4892cb61-9578-4920-9783-321d4bd7667f" ownerguid="3900a1b3-d468-484e-8f1f-b804096f5147"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="4896d426-c884-475a-a761-b13346bd61e1" ownerguid="86b66f59-3ca8-47ac-989d-645f7a9e219b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">blister</AUni> -<AUni ws="es">ampolla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a6d56aab-4644-4a4c-a7cd-e8e62f49f8f2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="4897c333-7811-4ee5-95c5-d160db9546ae" ownerguid="206a3c27-7631-461e-9efe-2fa790455c7c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shoot</AUni> -<AUni ws="es">pescar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f4ccbe7d-dbcb-409c-beee-1a3e9648fb7f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="PhCode" guid="489801de-d723-4069-8469-b405d5f26cd2" ownerguid="655c115f-eab9-4552-9a98-7ef9bb41ebb1"> -<Representation> -<AUni ws="qvm-x-ach">q</AUni> -<AUni ws="qvm-x-acl">q</AUni> -<AUni ws="qvm-x-akh">q</AUni> -<AUni ws="qvm-x-akl">q</AUni> -<AUni ws="qvm-x-ame">q</AUni> -</Representation> -</rt> -<rt class="CmDomainQ" guid="489a93de-9ffb-48ec-b950-e7535566e0ad" ownerguid="6c54f0b0-b056-4090-b3f0-d5ec6710d4ab"> -<ExampleWords> -<AUni ws="en">lower, lowest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to being lower than another thing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="489d2ded-4c2c-46dd-8f93-cb007829e20c" ownerguid="d117aa22-3f18-47c4-9683-51ecf1dc7134"> -<ExampleWords> -<AUni ws="en">vine, runner, creeper</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What are the parts of a vine?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="48a09231-23d3-42b6-9ac8-055e4107d04c" ownerguid="d38f76c5-5c31-4a0a-bfab-e68eba44609c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fold</AUni> -<AUni ws="es">doblar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e129ec8e-3ec8-4358-83f1-71a097782487" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="48a3b122-6f5a-4894-9c9d-bd05cd51d500" ownerguid="514974a2-c2fd-4b25-a24d-2ff52fa3d798"> -<ExampleWords> -<AUni ws="en">smother (a fire), snuff out (a flame)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words are used of stopping a fire by covering it?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="48a3e3ea-18b0-4f08-9d25-69497f245e62" ownerguid="350b8501-e64e-4fcc-8961-0ddd63ba94cd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">color</AUni> -<AUni ws="es">color</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b914fd62-d5f0-4784-9f21-fb9086d3f7d4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="48a44248-5f10-4387-ace6-8143ad224b2e" ownerguid="fabae049-74c7-45b2-8ef3-cc2bded3d8f7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmPossibilityList" guid="48a4eaed-2ae3-4c81-8c9c-f79f2f3a1455" ownerguid="af26d792-ea5e-11de-8f7e-0013722f8dec"> -<DateCreated val="2011-5-27 16:2:49.281" /> -<DateModified val="2011-5-27 16:2:49.281" /> -<Depth val="1" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="True" /> -<IsVernacular val="False" /> -<ItemClsid val="7" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Publications</AUni> -</Name> -<Possibilities> -<objsur guid="70c0a758-5901-4884-b992-94ca31087607" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="0" /> -</rt> -<rt class="LexSense" guid="48a588f0-1701-4c14-acec-75005c8a6dac" ownerguid="abbec739-657c-4b04-9e4f-8dd9c2a1b43b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="33ce4ed9-4642-42b1-829b-bbe1596ec327" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="48a6e3d6-88bf-4166-906e-c8dd7f65bda8" ownerguid="923eefa6-f5ae-473b-a17f-fd8045a20502"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pure</AUni> -<AUni ws="es">puro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="eb039eba-90eb-4a4f-a881-d7cbac65be78" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="48a8f5b9-3679-4dd5-8b68-6e2039e5d014" ownerguid="77f0d0dc-61ee-4373-9879-35a7059bd892"> -<ExampleWords> -<AUni ws="en">false teeth, dentures</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to false teeth?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="48abe6f4-c885-41e7-96e0-7c426530ef1f" ownerguid="4d5ffd0b-4dce-4f6e-b166-aa996cd87e47"> -<Form> -<AUni ws="qvm-x-ach">dibüju</AUni> -<AUni ws="qvm-x-acl">dibüju; dibüju; dibüjo</AUni> -<AUni ws="qvm-x-akh">dibüju</AUni> -<AUni ws="qvm-x-akl">dibüju; dibüju; dibüjo</AUni> -<AUni ws="qvm-x-ame">dibüju</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="48ac206f-2706-4500-bb63-2e499b790259" ownerguid="7185bd93-5281-46de-80af-767f0ec40ff6"> -<Abbreviation> -<AUni ws="en">3.2.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.94" /> -<DateModified val="2022-9-23 16:55:8.94" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that describe a person who thinks well.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>32D Capacity for Understanding</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Intelligent</AUni> -</Name> -<Questions> -<objsur guid="e2911902-9b87-475a-b072-87d65b4c2e5e" t="o" /> -<objsur guid="bd527689-1054-4021-a211-5a13ee69f80f" t="o" /> -<objsur guid="4cfe9d6a-57e5-413e-9bae-747d3c6dbd7d" t="o" /> -<objsur guid="797bb1c4-9cf2-49be-bdbf-2d6d4fb81a3b" t="o" /> -<objsur guid="ddffd771-6aaa-4e86-9583-55844aae4378" t="o" /> -<objsur guid="41550802-effe-41fa-9ee5-f0748d752172" t="o" /> -<objsur guid="8b632f8b-4ec4-443c-8c50-51741acc2c3a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="48ad871d-f4a0-4141-8234-89400088a778" ownerguid="9d865347-6656-4ab7-8613-bf2e8bc53aa7"> -<ExampleWords> -<AUni ws="en">injury, accident, bruise, cut, impairment, wound, slash, puncture, stab, sprain, tear/pull a muscle, shock, concussion, bump, break a bone, fracture, dislocate a bone, dislocation, sprain, put out an eye, nose bleed, scar, sting, bite, sore, blister, contusion, frostbite, heatstroke, sunstroke, sunburn, burn, welt, drug overdose</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to an injury?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="48b6c56f-fd21-422f-80da-676d7c47160c" ownerguid="e88d17e1-259f-4b13-a633-f0195dc17e29"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dictate</AUni> -<AUni ws="es">dictar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="177a8506-aa3c-4f8a-8c44-1b3ea5edef5e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="48b98563-9aa8-4429-b558-e3ea53cce7d5" ownerguid="58812056-10ca-4d79-8bbf-21ecb8e4ab87"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">comb</AUni> -<AUni ws="es">peinar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b4083d2d-6246-4def-a938-632e34c8f461" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="48ba9cc9-f5d6-4362-b17e-3f7a9708f231" ownerguid="19d54c2f-ae03-4cbc-9b7e-57292f92fbc1"> -<ExampleWords> -<AUni ws="en">follow, tail, shadow, stalk, track, trail, hound, trace</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to following someone in order to find out where they go?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="48baa7a8-0877-4d5b-8563-ab2e6e2af9ac" ownerguid="7a355831-f4bd-4c1b-ae8b-f353a321c7d4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">loosen</AUni> -<AUni ws="es">soltar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0408081d-d99d-475d-811e-caf25e70c741" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="48beb660-805e-4e51-a959-9b8039a0fa5e" ownerguid="31b314be-236e-4854-b921-4d416a5e66ce"> -<Form> -<AUni ws="qvm-x-ach">vinchïlla</AUni> -<AUni ws="qvm-x-acl">vinchïlla</AUni> -<AUni ws="qvm-x-akh">vinchïlla</AUni> -<AUni ws="qvm-x-akl">vinchïlla</AUni> -<AUni ws="qvm-x-ame">vinchïlla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="48c17398-a0be-4ef1-bbde-09d0d742041f" ownerguid="f2022802-4f43-4fa2-8c58-33a8b9e75895"> -<ExampleWords> -<AUni ws="en">increased, heightened, greater, higher</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words describe something that someone is doing or feeling more than before?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="48c4fc92-5238-44b1-a11c-c8d74575ebcf" ownerguid="5f1fb292-66d5-4344-a395-a1ba2dff6bc8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="48c70236-559f-4a30-a8ed-58c5d6c143be" ownerguid="e2dac1f7-8868-49b4-b849-2f5e6f942e34"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="48ca514c-760f-4462-b576-bf521f38ce6f" ownerguid="de2b5010-6fa5-41f6-8916-c6808283acec"> -<Form> -<AUni ws="qvm-x-ach">algu</AUni> -<AUni ws="qvm-x-acl">algu; algu; algo</AUni> -<AUni ws="qvm-x-akh">alqu</AUni> -<AUni ws="qvm-x-akl">alqu; alqu; alqo</AUni> -<AUni ws="qvm-x-ame">alqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="48ca8966-6a2f-4197-9d87-6c3fa2f3f8b4" ownerguid="6b836eab-0b1e-425c-9f13-3e53a0b6f06b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="88dc76ac-2499-403d-9644-568a36e3b28b" t="o" /> -<objsur guid="d2fdd55a-2c22-4778-b65b-47f2cec4871f" t="o" /> -<objsur guid="fccbfc42-3149-4acb-a364-498f70b254dd" t="o" /> -<objsur guid="d2062b0e-eb1d-4620-8c9d-33ceb10f1874" t="o" /> -<objsur guid="179134d1-b00e-4a6e-be86-dadf9865aa36" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="48cf9176-b1e9-4729-a59c-37e6525fa49b" ownerguid="4affa918-4258-4b12-8241-d04191d05abe"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="48d07764-d025-4381-9f88-9b1ab60a5727" ownerguid="be235bc9-6253-4466-9cce-a98a75593ecc"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EPH 5.4 Lutankunata, manakaqkunata ni lutan yarpayman apaq bujunädakunatapis ama rimapäkuytsu.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="48d0b064-615b-48bc-bf1c-ad4fd7481497" ownerguid="ff989f79-e78b-4864-8615-6fd902ed236b"> -<Form> -<AUni ws="qvm-x-ach">mashwa</AUni> -<AUni ws="qvm-x-acl">mashwa</AUni> -<AUni ws="qvm-x-akh">mashwa</AUni> -<AUni ws="qvm-x-akl">mashwa</AUni> -<AUni ws="qvm-x-ame">mashwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="48d0c7a3-4663-4818-b5bb-b30cce6502e2" ownerguid="6c071281-d180-4ca1-a1cb-f3a738783b6e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">go.down</AUni> -<AUni ws="es">bajar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bd4a9fba-575f-43ec-8324-09471393e5c9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="48d2e013-81fd-40f7-89ed-548ff9f47492"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">profundu; profundo</AUni> -<AUni ws="qvm-x-acl">profundu; profundu; profundo</AUni> -<AUni ws="qvm-x-akh">profundu; profundo</AUni> -<AUni ws="qvm-x-akl">profundu; profundu; profundo</AUni> -<AUni ws="qvm-x-ame">profundu; profundo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+profundo</AUni> -<AUni ws="qvm-x-acl">+profundo</AUni> -<AUni ws="qvm-x-akh">+profundo</AUni> -<AUni ws="qvm-x-akl">+profundo</AUni> -<AUni ws="qvm-x-ame">+profundo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.941" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3a74f389-819a-40a3-bf2f-8f73f1752eec" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+profundo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b68cba9a-8e5a-435a-bc0a-145b9b331742" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8cf22568-7740-4959-b701-6fab09c3c1fa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +profundo 
\entryTyp root 
\gENG deep 
\gSPN profundo 
\e +profundo 
\c N0 
\ach profundu / ~_# 
\ach profundo / _# 
\akh profundu / ~_# 
\akh profundo / _# 
\acl profundu / ~_# 
\acl profundu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl profundo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl profundu / ~_# 
\akl profundu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl profundo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame profundu / ~_# 
\ame profundo / _# 
\i EPH 3.18 Pay cuyacog cashganga pasaypa anchumi, largumi, altumi y profundumi caycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="48d3de9f-3619-4785-b50b-6921ba7eecd6" ownerguid="b2fd2d29-1389-4114-91a8-15b8d9742794"> -<Abbreviation> -<AUni ws="en">9.6.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.720" /> -<DateModified val="2022-9-23 16:55:8.720" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that something is the result of another thing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89H Result</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Result</AUni> -</Name> -<Questions> -<objsur guid="bff7b599-0a04-42dc-bdae-0a2fa5a713a1" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="139409c3-7860-4586-897f-85ba3226046c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="48d52da5-3ae4-4271-9b57-b90d1c66bb92" ownerguid="f858278a-2727-4403-9cf0-565cdececb1e"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en"><If> you do this thing, something bad will happen to you.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">condition, if, if indeed, if at all, whether...or, or else, otherwise, unless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words indicate the condition of a conditional sentence?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="48d7bd4b-8a21-4793-ac0c-2738af616d15"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">concubi:na</AUni> -<AUni ws="qvm-x-acl">concubi:na</AUni> -<AUni ws="qvm-x-akh">concubi:na</AUni> -<AUni ws="qvm-x-akl">concubi:na</AUni> -<AUni ws="qvm-x-ame">concubi:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+concubina</AUni> -<AUni ws="qvm-x-acl">+concubina</AUni> -<AUni ws="qvm-x-akh">+concubina</AUni> -<AUni ws="qvm-x-akl">+concubina</AUni> -<AUni ws="qvm-x-ame">+concubina</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.162" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c9e2a6df-4ba1-4a92-b708-91d2eba961ef" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+concubina</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4b145b3b-da5c-41ce-88d9-4cf3879411b7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="531671fb-e296-4a76-8485-891b8197aaf7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +concubina 
\entryTyp root 
\gENG 
\gSPN 
\e +concubina 
\c N0 
\ach concubi:na 
\akh concubi:na 
\acl concubi:na 
\akl concubi:na 
\ame concubi:na 
\i 2SA 16.21 Palaciuta cuidananpag taytayqui cachaycushgan concubïna warmincunawan punuy.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="48d958c9-74f9-481a-a778-7ce9962ef895" ownerguid="c5996b7d-0acc-4ac7-bfa0-09b93a0eccbc"> -<ExampleWords> -<AUni ws="en">mine (n), gold mine, coal mine, strip mine, quarry (n), mother lode, deposit, vein, coalfield</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a place where minerals are mined?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="48dc1ca4-8523-4f40-815c-f5a15e5cfbb2" ownerguid="ac6eac01-7c0f-46a0-baef-f7dccd33cc07"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="48dcf54b-78ae-47e7-97e1-a7ea50822919" ownerguid="7c234ccc-0dbe-42b0-a377-db99ebd2b51e"> -<ExampleWords> -<AUni ws="en">snare</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words are used for killing birds?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="48e41fd3-9da8-466f-bf16-9145f3db4aa5" ownerguid="87e53fd3-c6e6-462f-a3b5-a89202285d8c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="6dc50e0e-9583-43fa-a6d4-4161a7edcfda" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="48e7d7fc-2d70-4be9-bb58-b3e779ccc835" ownerguid="051cd29d-3e56-4591-bae0-b20af0568939"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="48eadff7-e51e-4488-b5c7-b6ed452e4b2f" ownerguid="2db23146-37ba-415e-9270-9571ebbfac63"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">radiate</AUni> -<AUni ws="es">irradiar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d21efeba-d19a-4abf-8f77-83f418ada3dd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="48eb0400-9f50-472f-8299-deb3e9d5e5ce" ownerguid="0539de86-f407-4b3d-b1b8-028822fb9f26"> -<ExampleWords> -<AUni ws="en">go over, recap, review</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to repeating an important part of a speech?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="48ed6fa4-26ee-4c16-9aa4-bf3dbf1d4756" ownerguid="29a8ebbe-ebc4-4295-b6af-84331d019361"> -<ExampleWords> -<AUni ws="en">archaic, archaism</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to an old word?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="48efac87-ed87-4f3f-ae34-b70db60ede97" ownerguid="45961110-4386-4c10-9b38-f378cec5f97d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/N0 V2/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">NOM12PUR</AUni> -<AUni ws="es">NOM12PRO</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6418da9a-4b09-47ef-85d7-918125e834ac" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="48f4761f-ab12-4d0d-99cc-1157f4666d20" ownerguid="30ccfb7f-2232-4200-a662-ece020feaf9e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">inca</AUni> -<AUni ws="es">inca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b0eec267-89be-49b2-b930-0c4fad240c17" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="48f52b59-8d5f-4b44-a832-8b392b656432" ownerguid="f2646733-1cdb-4c11-8c7c-221bab794942"> -<Form> -<AUni ws="qvm-x-ach">picanti</AUni> -<AUni ws="qvm-x-acl">picanti; picante</AUni> -<AUni ws="qvm-x-akh">picanti</AUni> -<AUni ws="qvm-x-akl">picanti; picante</AUni> -<AUni ws="qvm-x-ame">picanti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="48f6a6e5-aff4-47b5-8845-d7ebd0d64d3f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lushu</AUni> -<AUni ws="qvm-x-acl">lushu; lusho</AUni> -<AUni ws="qvm-x-akh">lushu</AUni> -<AUni ws="qvm-x-akl">lushu; lusho</AUni> -<AUni ws="qvm-x-ame">lushu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llushu.v</AUni> -<AUni ws="qvm-x-acl">*llushu.v</AUni> -<AUni ws="qvm-x-akh">*llushu.v</AUni> -<AUni ws="qvm-x-akl">*llushu.v</AUni> -<AUni ws="qvm-x-ame">*llushu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.245" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2091a546-620c-49b5-bfa8-14d0a755c236" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llushu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="14a372d7-ed7d-486e-b5ee-fc2daa923df4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f9a7615f-1f91-4399-aca7-b6b969488271" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llushu.v 
\entryTyp root 
\gENG polished 
\gSPN polido 
\e *llushu.v 
\c V1 
\ach lushu 
\akh lushu 
\acl lushu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lusho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lushu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lusho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lushu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="48f7214f-d314-40ac-a2c7-9286483aa76b" ownerguid="66ea9520-f017-4c7e-ad86-88dbd17cdc36"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">landslide</AUni> -<AUni ws="es">huayco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="80707bfd-4d0f-400b-8c44-ea91c00c2abe" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="48f7a7a5-6ded-40c8-9843-c4e439ee80f3" ownerguid="d574c970-6834-4566-ae37-f42c7e95483b"> -<ExampleWords> -<AUni ws="en">a weight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something that is heavy?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="48f9166e-2a42-41fa-9384-508b381a833a" ownerguid="038a45a5-5878-4f1d-b43a-22ce4a89a098"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">small.shield</AUni> -<AUni ws="es">broquel</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="89057314-0cd1-4182-a9dd-2b5e1205b781" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="48fdb5f9-3187-4a4b-a0e8-b2f7d3df69e3" ownerguid="4eca9893-e721-4194-97a0-289b6e2b5f12"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="48feeb49-a7f0-4f16-b067-99b822e82ca0" ownerguid="cfbdcee7-ca83-423e-97c2-4eb7267e6dec"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">border</AUni> -<AUni ws="es">lindero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7b81da16-463c-4b0e-aa36-bf2b943f173b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4900d929-fab4-413c-990e-8c579d2d9c4a" ownerguid="86e5c062-d90f-476c-a363-264adfafedfa"> -<ExampleWords> -<AUni ws="en">sway (hips), rotate (hips), suck in (stomach), stick out (chest), straighten (back), bend (back), bow (at the waist), double up, twist, curl up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to moving your torso?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="490203f7-1cec-42ed-8978-83621291f294" ownerguid="6af4876a-55e8-4f29-817e-fae11789e759"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">strength</AUni> -<AUni ws="es">valor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="781b8534-726a-4153-a0e3-86aa11ce0d2c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4902bc8b-5e1d-42ee-b611-2ab92a47be49" ownerguid="284433df-7b37-4e63-a614-78520c483213"> -<ExampleWords> -<AUni ws="en">walk, trot, wander, lie down, charge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) How do cows move?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="49088f3a-00b9-4b87-a717-6ec42d0a7c5d" ownerguid="b52db03e-dd96-46e2-a33a-7bb17cea373c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">poncho</AUni> -<AUni ws="es">poncho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="25d3c844-a553-42fd-91ab-d92903ef1475" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="490b8b98-8301-458d-88e4-69b783b7425b" ownerguid="a06d8571-f152-4ad9-9cff-47685527e2b4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="490d1749-b4b1-40f6-8970-1a2bf1aa19b3" ownerguid="5956e75c-2394-43eb-be76-21ff3dbf9b68"> -<Form> -<AUni ws="qvm-x-ach">cölera</AUni> -<AUni ws="qvm-x-acl">cölera</AUni> -<AUni ws="qvm-x-akh">cölera</AUni> -<AUni ws="qvm-x-akl">cölera</AUni> -<AUni ws="qvm-x-ame">cölera</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="490d759b-cb25-43ba-bcf0-a46cd3a41334" ownerguid="7be41ec9-58ec-4a22-9af5-5c66dce6b1d4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">robe</AUni> -<AUni ws="es">sotana</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="abdd7b35-c273-496c-85a9-3912bc3a3449" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="490e2a18-c880-45c4-8c39-56cd08458164"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">goplu</AUni> -<AUni ws="qvm-x-acl">goplu; goplo</AUni> -<AUni ws="qvm-x-akh">qoplu</AUni> -<AUni ws="qvm-x-akl">qoplu; qoplo</AUni> -<AUni ws="qvm-x-ame">quplu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qupllu.v</AUni> -<AUni ws="qvm-x-acl">*qupllu.v</AUni> -<AUni ws="qvm-x-akh">*qupllu.v</AUni> -<AUni ws="qvm-x-akl">*qupllu.v</AUni> -<AUni ws="qvm-x-ame">*qupllu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.871" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="41c3635f-2f5c-4976-ad15-3554b57bfa87" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qupllu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="87b2e2dd-a8ce-49cf-822a-b9f4b15c91b9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cb06018c-b545-443f-b10a-99abc0e5b29d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qupllu.v 
\entryTyp root 
\gENG break 
\gSPN amollar 
\e *qupllu.v 
\c V2 
\ach goplu 
\akh qoplu 
\acl goplu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl goplo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qoplu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qoplo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame quplu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="49112896-d27c-49de-a179-f0d14c3ba363" ownerguid="0049ffed-8bf4-446d-9240-870d3ce7b5c1"> -<Form> -<AUni ws="qvm-x-ach">catata; catatä</AUni> -<AUni ws="qvm-x-acl">catata; catatä</AUni> -<AUni ws="qvm-x-akh">katata; katatä</AUni> -<AUni ws="qvm-x-akl">katata; katatä</AUni> -<AUni ws="qvm-x-ame">katata; katatä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="4912ab33-a819-4e59-9c68-583226c91919" ownerguid="653c372e-f413-434f-b45e-8fa990cebcdb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cactus</AUni> -<AUni ws="es">cacto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="57417256-b437-4941-a0fb-d55fa0cdabcf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="49134597-0ed3-4b89-a645-d7b3cc98556b" ownerguid="764f7789-e255-46d3-82dd-4e20f7e4c6a2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">meat</AUni> -<AUni ws="es">chicharron</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0ea133b6-8285-44b7-9461-11b0ceba7712" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="491814f3-3bbc-4e20-9e51-190bb1442187" ownerguid="56a9e27a-7121-469d-95eb-6cec53129749"> -<Form> -<AUni ws="qvm-x-ach">mayu</AUni> -<AUni ws="qvm-x-acl">mayu; mayu; mayo</AUni> -<AUni ws="qvm-x-akh">mayu</AUni> -<AUni ws="qvm-x-akl">mayu; mayu; mayo</AUni> -<AUni ws="qvm-x-ame">mayu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="491a434f-9a3f-4a06-a86d-27d13d2b8e4a" ownerguid="43cb3488-711b-4d9d-9d0e-03d0c1f6eb8b"> -<ExampleWords> -<AUni ws="en">shame (n), disgrace (n), humiliation, embarrassment, stigma, indignity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of shame?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="491aee6c-85ff-40ea-9298-19bb88a8381f" ownerguid="8256da64-9b2b-4f9f-becc-c03cc73c1de7"> -<Form> -<AUni ws="qvm-x-ach">cuerdas</AUni> -<AUni ws="qvm-x-acl">cuerdas</AUni> -<AUni ws="qvm-x-akh">cuerdas</AUni> -<AUni ws="qvm-x-akl">cuerdas</AUni> -<AUni ws="qvm-x-ame">cuerdas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="491c317a-86d1-45a9-af37-96adcd5694cd" ownerguid="df805cee-9cd6-4733-a2d9-eb97a6f4a199"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">complaint</AUni> -<AUni ws="es">queja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b5930488-6ffc-4922-b6d3-99272a079fb7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="491fc428-ca50-4455-9621-2ba3b706a8ce" ownerguid="3ea52505-aa6c-4f28-b475-f15ac1820ec1"> -<ExampleWords> -<AUni ws="en">be possessed, be demonized, go into a trance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being influenced or controlled by a demon?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4921e48e-a48f-40de-902e-3058b8bfcd0a" ownerguid="21ebc64a-a1b8-45bd-b7f6-143a053f1d31"> -<ExampleWords> -<AUni ws="en">court, line, out of bounds, key, free throw line, jump circle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What are the parts of a playing area?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="49245c99-e46d-4295-a161-061fc58d649e" ownerguid="738a09a5-59df-40f9-8a4e-176e00d03bbf"> -<ExampleWords> -<AUni ws="en">archery, draw a pistol, draw a sword, draw a bow, fit an arrow, raise a gun, aim, load, stab, hurl a spear, swing an ax, drop a bomb, stick a knife into someone, bludgeon, whip (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(17) What words refer to using a weapon?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4926cc03-ea96-4e84-8ab2-b12d4efc8eb8" ownerguid="e7f94aea-ba50-481d-b640-d5cd8bdedc72"> -<ExampleWords> -<AUni ws="en">urinal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) Where do people urinate?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="492a0270-bfec-4627-9625-12dc2197a851" ownerguid="9b48dcd0-cc99-4bc8-8368-17e5452a078b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="af9675a3-6f13-4e8e-a29b-5cb6558a9065" t="o" /> -<objsur guid="cf76c68f-e23d-42fa-bba9-d01471616e8b" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">become</AUni> -<AUni ws="es">llegar.a.ser</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b1606f49-c9b6-4577-a81f-71cc65171d9a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="492aae9f-9068-467c-8aea-981c155b016d" ownerguid="b0e39b97-5304-4789-a7f4-f8daac52089e"> -<Form> -<AUni ws="qvm-x-ach">päsu</AUni> -<AUni ws="qvm-x-acl">päsu; päsu; päso</AUni> -<AUni ws="qvm-x-akh">päsu</AUni> -<AUni ws="qvm-x-akl">päsu; päsu; päso</AUni> -<AUni ws="qvm-x-ame">päsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="49312973-47e9-4f83-ba44-7b5f9195d302" ownerguid="75ccb853-52a7-4f79-86a3-f3e653b648e4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="2b9b0229-8189-4202-813a-5c2878b6909c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="4934cdcb-c9fe-4360-8f64-af89d0a41059" ownerguid="716bb125-9945-45ba-a631-ec4893efd1d7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a0af3947-9ebb-4500-a8e3-33bebcf0263d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="49379a1d-0a64-4f56-9f28-1ce25aa982c4" ownerguid="40516af2-d413-418e-8b68-8443847ee169"> -<ExampleWords> -<AUni ws="en">sole, shoelace, bootlace, eye, tongue, toe, heel, insole, strap, buckle, thong</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to parts of shoes?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4937ccc5-71c3-45e2-9313-dbcdc7fd4dba"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">engrampado:ra</AUni> -<AUni ws="qvm-x-acl">engrampado:ra</AUni> -<AUni ws="qvm-x-akh">engrampado:ra</AUni> -<AUni ws="qvm-x-akl">engrampado:ra</AUni> -<AUni ws="qvm-x-ame">engrampado:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+engrapadora</AUni> -<AUni ws="qvm-x-acl">+engrapadora</AUni> -<AUni ws="qvm-x-akh">+engrapadora</AUni> -<AUni ws="qvm-x-akl">+engrapadora</AUni> -<AUni ws="qvm-x-ame">+engrapadora</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.467" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="681d76ec-78af-4eb8-b294-26764f343c74" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+engrapadora</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6b97324f-5c84-4e6b-87ff-89a20ada4125" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="892930dd-83bd-47f4-97b3-4bf343b74720" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +engrapadora 
\entryTyp root 
\gENG stapler 
\gSPN engrapadora 
\e +engrapadora 
\c N0 
\ach engrampado:ra 
\akh engrampado:ra 
\acl engrampado:ra 
\akl engrampado:ra 
\ame engrampado:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="493861c6-39c3-40e7-bef3-fd101434da28" ownerguid="f4eedd50-153b-4e11-a513-27e6c45e5cca"> -<Form> -<AUni ws="qvm-x-ach">alcayru</AUni> -<AUni ws="qvm-x-acl">alcayru; alcayru; alcayro</AUni> -<AUni ws="qvm-x-akh">alkayru</AUni> -<AUni ws="qvm-x-akl">alkayru; alkayru; alkayro</AUni> -<AUni ws="qvm-x-ame">alkayru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="493bcb84-d9b0-42c5-ae0c-12b09893ea81" ownerguid="82e4394a-2f58-4356-8d9c-1ad9dbe95293"> -<ExampleWords> -<AUni ws="en">freezing, bitterly cold, arctic, subzero temperatures</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe a time or place that is very cold?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="493be8bf-2ecd-4a13-bf48-6c35a3590d09" ownerguid="b9ca2d56-750e-4ace-95a6-4c3c54bffbb0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="493d7fe6-6a63-40ff-b205-0f29ada2c314" ownerguid="3827d809-6a03-4428-8693-d7b403c10e7f"> -<Form> -<AUni ws="qvm-x-ach">tsicay</AUni> -<AUni ws="qvm-x-acl">tsicay</AUni> -<AUni ws="qvm-x-akh">tsikay</AUni> -<AUni ws="qvm-x-akl">tsikay</AUni> -<AUni ws="qvm-x-ame">tsikay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="493f53a5-329d-4a2f-9fb4-d6331f203adf" ownerguid="d8631167-08bd-4571-bc7c-57a4407da51c"> -<ExampleWords> -<AUni ws="en">party, Democratic party, Republican party, Communist party, Nazi party, political party</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a political party?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="493f8b11-7fb8-4a02-b779-46287482f310" ownerguid="7c022751-a9f9-412d-8b27-8cd03b797e2d"> -<ExampleWords> -<AUni ws="en">just, only just, barely</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words indicate that something is a particular amount, but not much more?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="493fa483-a3fe-4a00-bb4e-0b8b7e577447" ownerguid="e6ff7084-b532-472e-a5b1-b2f9a8712b05"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pick</AUni> -<AUni ws="es">coger</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="904bc3f3-39f7-4bb2-b29c-04a273876c4f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="49471924-2458-4cb0-9430-f38cfc2fb63b" ownerguid="f6eb81d5-caba-4735-be6f-ae038656b555"> -<Abbreviation> -<AUni ws="en">6.6.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.476" /> -<DateModified val="2022-9-23 16:55:8.476" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to working with bone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Working with bone</AUni> -</Name> -<OcmCodes> -<Uni>321 Work in Bone, Horn, and Shell</Uni> -</OcmCodes> -<Questions> -<objsur guid="42e26f8d-e3e6-41f8-bcaf-ac5d38168be1" t="o" /> -<objsur guid="ca8aff24-a0cd-4ff6-b46f-09ed80e9ef85" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="4948a765-8aaf-49f0-9583-6607607ee90d" ownerguid="2418dd59-fa53-44a5-964d-f9dae2183b5e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="49493071-daea-4089-942f-c707ab54aa04" ownerguid="bf5175f6-fbe4-4ac6-9041-f8aa78b7ac78"> -<ExampleWords> -<AUni ws="en">executioner, firing squad, hangman</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to someone who executes a criminal?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="494ac8c4-d6d5-4a63-af85-f00560535df3" ownerguid="ecc37619-47f9-4658-a598-192b91a84d15"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ishca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ishca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ishka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ishka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ishka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="aa36a766-7a7a-4163-b9d4-c4fd68aa4701" t="r" /> -</Morph> -<Msa> -<objsur guid="4e228724-d1ea-4b5f-9796-1b3e5b946486" t="r" /> -</Msa> -</rt> -<rt class="LexExampleSentence" guid="49505ca9-ab99-4ff9-bc76-7cd394c59637" ownerguid="d56a5d54-9e54-49a6-9473-da133f47c02a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Wamräcunata geshpircatsishcänami.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="4955c83e-3ec7-47c1-844d-a7c6c65d2d85" ownerguid="0fcd1ad2-ac4d-4fc0-b39a-d2a4ce8df5aa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="c1b0e752-8c17-4c85-ab09-752aa0223186" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="49607efb-9462-45ee-b67a-b5342503aa31" ownerguid="8f77b757-2ee1-492c-b3c9-aedd5ac165ee"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2CH 26.15 Tsay mäquinacunawanmi jatusag rumicunata y flëchacunata palancaypa jitatsipäcog.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="49611d51-4f8f-4bee-b195-6ec12990758f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ami:ga</AUni> -<AUni ws="qvm-x-acl">ami:ga</AUni> -<AUni ws="qvm-x-akh">ami:ga</AUni> -<AUni ws="qvm-x-akl">ami:ga</AUni> -<AUni ws="qvm-x-ame">ami:ga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+amiga</AUni> -<AUni ws="qvm-x-acl">+amiga</AUni> -<AUni ws="qvm-x-akh">+amiga</AUni> -<AUni ws="qvm-x-akl">+amiga</AUni> -<AUni ws="qvm-x-ame">+amiga</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.759" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c89ba739-f890-4ee2-9073-fc5d664de9fc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+amiga</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2361a30e-0c4a-4dc9-ab51-c7c1f02dcd81" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c17dc40d-3b15-4cb6-9148-8a3b3db6c1cc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +amiga 
\entryTyp root 
\gENG 
\gSPN 
\e +amiga 
\c N0 
\ach ami:ga 
\akh ami:ga 
\acl ami:ga 
\akl ami:ga 
\ame ami:ga 
\i PRO 7.4 Yachaytapis caynog ninqui: <<Cuyashgä amïgämi canqui.>></Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="49613aee-242c-4bba-9a59-86a3d4c8c47c" ownerguid="e899f2b9-0495-4e34-b3e6-2a909b32b866"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="49638219-65d6-48c7-8e16-128c6e556191" ownerguid="ea17aba7-6d4e-4dbf-89ea-84a1b1c47647"> -<ExampleWords> -<AUni ws="en">measure, find the volume</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to measuring the volume of a something?</AUni> -</Question> -</rt> -<rt class="FsClosedValue" guid="4963a1ec-a279-43b7-926e-ca32d6bd08eb" ownerguid="24345e2d-4861-4c31-9052-304787d41236"> -<Feature> -<objsur guid="e13ebd7a-824d-4405-8c23-e5a30f3d53a6" t="r" /> -</Feature> -<RefNumber val="0" /> -<Value> -<objsur guid="7fd2e9b4-402c-427c-a3e3-bbf386d652da" t="r" /> -</Value> -<ValueState val="0" /> -</rt> -<rt class="CmDomainQ" guid="49650371-7689-4c03-8bb7-5c0c56f21bd3" ownerguid="b6baa8bf-7691-431d-8715-3937372b9da0"> -<ExampleWords> -<AUni ws="en">exempt, free, not bound by, not answerable to, immune from prosecution, privileged, excused</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being exempt from a law or obligation?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="49654459-bc2b-4639-8b2c-88e30b626a04" ownerguid="1fbb9f10-4371-4b1f-8b2b-f1ec9600913c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">nga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">nga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">nqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">nqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="5dcad267-89ba-4258-b423-e84c57ba90ed" t="r" /> -</Morph> -<Msa> -<objsur guid="cdacd2fc-4611-457d-b88f-3c9c8bb345b9" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="4965d26a-e785-49e6-bb28-15c1877b120e" ownerguid="6903b844-79be-4e9d-a3c8-1ca2a385bf4f"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John was working <with> David in the field.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">with, in conjunction with, in partnership with, in collaboration with, side by side with, shoulder to shoulder with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate someone who does something with another person?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4967b28d-c079-45ae-8aed-3683cf5a4ef1" ownerguid="e6258e27-a753-4f33-94ca-73e0267188d8"> -<Form> -<AUni ws="qvm-x-ach">jogari</AUni> -<AUni ws="qvm-x-acl">jogari; jogare</AUni> -<AUni ws="qvm-x-akh">joqari</AUni> -<AUni ws="qvm-x-akl">joqari; joqare</AUni> -<AUni ws="qvm-x-ame">huqari</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="496a4970-f5d1-48a8-bfe0-b3f83a3867cb" ownerguid="b6a40216-fe93-4b0f-b85b-5622327031d0"> -<ExampleWords> -<AUni ws="en">rotten, cracked, broken</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words are used to describe a bad egg?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="496ba683-1f62-422b-af0d-f71f5a921b6f" ownerguid="bc11b8e2-72b1-42f6-a42f-06ed287f248b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="496dcd70-0a6f-4d20-87c4-26d122168eb1" ownerguid="da8c3912-9f3a-478c-832f-132abddf5c03"> -<Form> -<AUni ws="qvm-x-ach">machca</AUni> -<AUni ws="qvm-x-acl">machca</AUni> -<AUni ws="qvm-x-akh">machka</AUni> -<AUni ws="qvm-x-akl">machka</AUni> -<AUni ws="qvm-x-ame">machka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="496e6b38-e08a-488c-aeb0-0f0a41c969ea" ownerguid="8ce18f73-b325-4cde-8552-331be1335db4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="6c37dfc7-b8c7-4533-949b-4de1de4bd1a2" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="617e0162-e5ed-460d-b10c-9e5f1de893e7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="4970fcd5-05f8-4d23-8365-ab046908ffb4" ownerguid="5edc9272-cf93-4fe7-9d3a-dd28cd4b5126"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="49734831-c882-43d5-91ac-7bdcb3c3bf8e" ownerguid="bc9d763c-e4fe-48ab-ad44-87a36f6cc06f"> -<ExampleWords> -<AUni ws="en">criticism, critique (n), accusation, attack (n), belittlement, castigation, censure, charge, condemnation, denigration, denouncement, denunciation, deprecation, derision, disapproval, disparagement, excoriation, execration, faultfinding, gibe (n), harangue (n), judgment, malediction, put-down, recrimination, reprehension, ridicule (n), slur</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something someone says when criticizing?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4975ed48-d35b-41bb-9304-f949d48ec245" ownerguid="f15d7055-db7a-499a-932b-aafa1f228965"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="497987b3-1cd7-4e62-8130-6aaef0956cbd" ownerguid="7fed6281-326a-4a15-8cbf-dc574594da19"> -<ExampleWords> -<AUni ws="en">phonograph, record player, tape deck, boom box</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a machine used to record and play back music?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="497ab205-76f7-4bea-9dbb-fd88003b7276" ownerguid="b5095e3e-bf2a-451b-ae2d-5d7a9c20b53c"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="7e08859b-3017-4be1-9d99-b5bb4ed7cda9" t="o" /> -<objsur guid="9942adbf-fbc5-4d72-bf87-3306ac3b631b" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="497bb031-0afc-4577-a8c3-6c3aea168dad" ownerguid="2b27b8ca-188e-44ad-aa86-ffa1f99106e3"> -<ExampleWords> -<AUni ws="en">give, lend</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to adding a quality to something?</AUni> -</Question> -</rt> -<rt class="StTxtPara" guid="497c5e37-7e6e-4929-ab04-800ca24bd0ee" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">qarqukatsin</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="51e7eafa-7bde-4048-85b0-9445cd49a853" t="o" /> -</Segments> -</rt> -<rt class="CmDomainQ" guid="497c6e67-997d-4201-b0d0-7ece1ca9df45" ownerguid="fd33670e-ef16-4566-a62e-aa077e58407b"> -<ExampleWords> -<AUni ws="en">melodious, melodic, good, beautiful</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a good sound?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="497fe439-65a1-4ad0-bcf1-6b20c5011da9" ownerguid="d106ac7b-fd48-4879-9752-37038b3b39e0"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="49803352-c4b6-4006-b934-069b9710229f"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">karqanmi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="4980f1b2-c7ed-47ff-bb1a-3d0ef8f925f8" ownerguid="ea2d0dc5-2cdb-4686-9f48-abe65ed295a4"> -<ExampleWords> -<AUni ws="en">move past, move by, bypass, go around, go by, stop by, zoom by, zip by</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving past something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="49815eae-be8f-475b-af83-0ba093891d04" ownerguid="bd4a2527-f66c-4f48-922e-8b180bba8ef6"> -<ExampleWords> -<AUni ws="en">broom, dustpan, mop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What things are used to clean a house?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4981a3ff-aed4-4fcf-9cbb-36006093c13f" ownerguid="605bb0c9-2a37-431c-8b35-6abb7d5a59e4"> -<Form> -<AUni ws="qvm-x-ach">jiru</AUni> -<AUni ws="qvm-x-acl">jiru; jiro</AUni> -<AUni ws="qvm-x-akh">jiru</AUni> -<AUni ws="qvm-x-akl">jiru; jiro</AUni> -<AUni ws="qvm-x-ame">hiru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="4982a689-36cb-4883-9cee-fb138c4c320c" ownerguid="4a1e1292-09bd-49d9-8cbf-2aaec6a39256"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">weed</AUni> -<AUni ws="es">hierba</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="574ccacf-9e43-43b5-b136-81b30bdf5cb3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="498336e7-b7bd-48ec-bdbd-a5e68d52fbda" ownerguid="c42245c6-88e7-48d8-b5b9-0ef7f4fffcce"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="5dc7fc29-6244-42ee-af2d-09fd9a948e72" t="o" /> -<objsur guid="048632ad-9cad-480a-8ee8-950aa5c44fe9" t="o" /> -<objsur guid="35b8c66c-1927-4919-86bc-09776c2f4b10" t="o" /> -<objsur guid="629cb31b-de46-4b16-86f0-19127665cab5" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="49842c94-0cf8-4b84-9010-959515513792" ownerguid="0272e84c-9487-40ea-ba92-47ccd2dfc9a6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tar</AUni> -<AUni ws="es">brea</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8d031d42-6f27-4bfe-a490-efd0b99fb62a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="4986d37e-9bc1-422a-af3e-b773d89a709e" ownerguid="ae0e8b72-9c32-4f10-8b32-90c75893cb33"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="49879410-4626-4f3c-96c0-d5a48f199317" ownerguid="3541cb7e-e9be-47ca-8ba8-c47e860c9c46"> -<Form> -<AUni ws="qvm-x-ach">rica</AUni> -<AUni ws="qvm-x-acl">rica</AUni> -<AUni ws="qvm-x-akh">rika</AUni> -<AUni ws="qvm-x-akl">rika</AUni> -<AUni ws="qvm-x-ame">rika</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="49886695-7a83-4ac8-8f88-7deec4238172" ownerguid="ef3dae4d-47a9-4631-bd3f-c25d309a6732"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="4988f165-d414-49c1-96f2-d4e4a2baee4e" ownerguid="b5179c37-f18c-473d-bf8d-b96f23503f3c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ictsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ictsu; ictso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">iktsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">iktsu; iktso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">iktsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="50c7cedb-e48d-4e40-b667-882924600f9d" t="r" /> -</Morph> -<Msa> -<objsur guid="9e409988-4e1d-45fa-8176-595e955af9d4" t="r" /> -</Msa> -</rt> -<rt class="LexExampleSentence" guid="498b6873-9f2b-4eef-a6e6-6638124d27c1" ownerguid="d6b4e906-3493-4744-88fa-837171596ea8"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EZK 17.15 Tsaymi cachacunata cachargan Egiptupita cawallucunata y atsca soldäducunata flëtacamunanpag.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="498d5782-2a7d-4779-8dc7-9464f570861a" ownerguid="21d540f7-a318-4175-a931-00a88c0fb93e"> -<Form> -<AUni ws="qvm-x-ach">tsogu</AUni> -<AUni ws="qvm-x-acl">tsogu; tsogu; tsogo</AUni> -<AUni ws="qvm-x-akh">tsoqu</AUni> -<AUni ws="qvm-x-akl">tsoqu; tsoqu; tsoqo</AUni> -<AUni ws="qvm-x-ame">tsuqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="498ec953-260e-4cfb-99ff-b6788958460c" ownerguid="86fe101f-30e2-477d-8931-ddf85b9af83e"> -<Form> -<AUni ws="qvm-x-ach">cobra</AUni> -<AUni ws="qvm-x-acl">cobra</AUni> -<AUni ws="qvm-x-akh">cobra</AUni> -<AUni ws="qvm-x-akl">cobra</AUni> -<AUni ws="qvm-x-ame">cobra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="498f9806-fcc4-4bbc-bbaa-26dd1002ac8d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ca:ra</AUni> -<AUni ws="qvm-x-acl">ca:ra</AUni> -<AUni ws="qvm-x-akh">ca:ra</AUni> -<AUni ws="qvm-x-akl">ca:ra</AUni> -<AUni ws="qvm-x-ame">ca:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cara.n</AUni> -<AUni ws="qvm-x-acl">+cara.n</AUni> -<AUni ws="qvm-x-akh">+cara.n</AUni> -<AUni ws="qvm-x-akl">+cara.n</AUni> -<AUni ws="qvm-x-ame">+cara.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.620" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a377583d-b269-4eb0-a279-c933609656fd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cara.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="107e1255-4f98-4a28-8001-a09b6bc24976" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="644b8b37-57b2-43b0-b265-697d4658992d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cara.n 
\entryTyp root 
\gENG face 
\gSPN cara 
\e +cara.n 
\c N0 
\ach ca:ra 
\akh ca:ra 
\acl ca:ra 
\akl ca:ra 
\ame ca:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="4991fecb-53b3-4a06-a9b3-2046645cfdc8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">agravia:du</AUni> -<AUni ws="qvm-x-acl">agravia:du; agravia:du; agravia:do</AUni> -<AUni ws="qvm-x-akh">agravia:du</AUni> -<AUni ws="qvm-x-akl">agravia:du; agravia:du; agravia:do</AUni> -<AUni ws="qvm-x-ame">agravia:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+agraviado</AUni> -<AUni ws="qvm-x-acl">+agraviado</AUni> -<AUni ws="qvm-x-akh">+agraviado</AUni> -<AUni ws="qvm-x-akl">+agraviado</AUni> -<AUni ws="qvm-x-ame">+agraviado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.669" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0400a05f-c5a4-47a2-9c76-9be50a0b960b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+agraviado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e98d97a3-f65f-40a4-ab72-ecd5eaaaf834" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="590056fe-7a5d-4cb7-87cf-2cdde8e576c6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +agraviado 
\entryTyp root 
\gENG 
\gSPN 
\e +agraviado 
\c N0 
\ach agravia:du 
\akh agravia:du 
\acl agravia:du / _# 
\acl agravia:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl agravia:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl agravia:du / _# 
\akl agravia:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl agravia:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame agravia:du 
\i Num 5.8 Agraviädu runa wanushga captin y castancuna mana captenga pägapacunanpag cagta cürata entregatsun.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="499691fd-d2e5-4781-ae2b-a09eebef1440"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">watul</AUni> -<AUni ws="qvm-x-acl">watul</AUni> -<AUni ws="qvm-x-akh">watul</AUni> -<AUni ws="qvm-x-akl">watul</AUni> -<AUni ws="qvm-x-ame">watul</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*watul</AUni> -<AUni ws="qvm-x-acl">*watul</AUni> -<AUni ws="qvm-x-akh">*watul</AUni> -<AUni ws="qvm-x-akl">*watul</AUni> -<AUni ws="qvm-x-ame">*watul</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.576" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2e16473f-2f93-4744-bec2-ed99e6eddeed" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*watul</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f772fe56-0a71-4efd-986c-cc71715132b1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="94715029-68a9-4c90-a987-1a3294b6b07a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *watul 
\entryTyp root 
\gENG string 
\gSPN cuerda 
\e *watul 
\c N0 
\mp +FinalC 
\ach watul 
\akh watul 
\acl watul 
\akl watul 
\ame watul</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="4996dac2-4472-4533-983d-23f6581288eb" ownerguid="f553b9a9-c403-443e-b144-45033101e937"> -<Form> -<AUni ws="qvm-x-ach">litsca; lichca</AUni> -<AUni ws="qvm-x-acl">litsca; lichca</AUni> -<AUni ws="qvm-x-akh">litska; lichka</AUni> -<AUni ws="qvm-x-akl">litska; lichka</AUni> -<AUni ws="qvm-x-ame">litska; lichka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="499b706b-3582-442f-80b2-9a165b41cb28" ownerguid="ffad98ad-9af2-43bf-99e3-d54f0b9222e5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="499e6c5a-93d8-4e8b-8ff1-07f40fc23fee" ownerguid="6fd38eb4-21e9-4b1e-8538-ae2461b28912"> -<PartOfSpeech> -<objsur guid="07455e91-118a-4d7d-848c-39bedd355a3d" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="499fe33d-789f-405b-813d-f75f798508f2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsacalwa</AUni> -<AUni ws="qvm-x-acl">tsacalwa</AUni> -<AUni ws="qvm-x-akh">tsakalwa</AUni> -<AUni ws="qvm-x-akl">tsakalwa</AUni> -<AUni ws="qvm-x-ame">tsakalwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chakallwa</AUni> -<AUni ws="qvm-x-acl">*chakallwa</AUni> -<AUni ws="qvm-x-akh">*chakallwa</AUni> -<AUni ws="qvm-x-akl">*chakallwa</AUni> -<AUni ws="qvm-x-ame">*chakallwa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.262" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="005eb6a1-d5bf-4213-bb73-360094ba2ea1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chakallwa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ade0f55f-f237-438f-b525-01a8bd3b4f33" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="82e58b44-9e15-46e3-9cdd-7fa963f93aa2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chakallwa 
\entryTyp root 
\gENG chin 
\gSPN barbilla 
\e *chakallwa 
\c N0 
\ach tsacalwa 
\akh tsakalwa 
\acl tsacalwa 
\akl tsakalwa 
\ame tsakalwa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="49a201d2-5967-4c27-85c5-188ebb21198e" ownerguid="85b9908f-4f57-4baa-9ed2-bc4705b12e72"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The soldier stood at attention with his shoulders back, his chest out, his chin up, and his arms held stiffly at his sides.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">straighten up, sit up straight, stand up straight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to changing your posture so that it is straight?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="49a3036a-a5a3-4da7-9c67-e2494aa16f08" ownerguid="401bbbe4-a33a-4a1e-b26a-18a756e002c4"> -<ExampleWords> -<AUni ws="en">cowardice</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of cowardice?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="49aa89f2-2022-4213-845e-dbbb4b53476c" ownerguid="00269021-e1c4-474d-9dba-341d296bdac7"> -<Abbreviation> -<AUni ws="en">8.4.5.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.640" /> -<DateModified val="2022-9-23 16:55:8.640" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to something happening last--to happen after all other things in a sequence, or to be the last person or thing in a sequence.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Last</AUni> -</Name> -<Questions> -<objsur guid="5c43c089-9c70-476b-a232-552529dc47f2" t="o" /> -<objsur guid="e72bafba-a297-438d-be8e-a4b9cd090a7e" t="o" /> -<objsur guid="d9e4f9ee-1416-4602-8a37-ed6c7013720f" t="o" /> -<objsur guid="d54e001f-2f33-43d5-9f6c-324e1880a323" t="o" /> -<objsur guid="bd11a025-a299-4f9e-bef1-bf50c60f10c7" t="o" /> -<objsur guid="2bcad434-6a54-4ae5-9ca4-da680a8ef304" t="o" /> -<objsur guid="b9483951-3b66-4269-b90e-f0c2567b345b" t="o" /> -<objsur guid="263c270f-0214-4568-b67b-02b6aebdfbac" t="o" /> -<objsur guid="0f082cc7-15f1-4300-999b-bf80f0a09fd6" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="49adcf2a-91f4-4b8a-85a4-c0e72966dd13" ownerguid="a57185c3-0cb5-41fa-94bf-da0c9edac600"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">My boss <doubled> my salary.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">double (vt), triple, treble, quadruple</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to making something become two or three times as much?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="49add447-5a95-4d4f-a3a1-d0e87f57b58c"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">by</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="49b143f1-38c7-4726-bff8-ac466a9c3ea3" ownerguid="12080e89-3e7a-4d80-8a3f-7ad3a8dc05b7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ku</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ku</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b952a19-fce6-44e5-ab25-c091ef27f843" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="49b316f6-65b2-4085-b1ac-1f6ef3848b9a" ownerguid="9f1d1b75-c36d-418c-822f-8408eb5a1500"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="49b641ec-65f1-449e-928c-0e8f8b696637" ownerguid="db2a1542-c324-4022-b410-260e31df2063"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 24.31 Tsaychömi ricargä chacranpis pasaypa purmashga y perganpis juchushga caycagta.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="49b8a0b2-d595-4af4-882e-0f1a6e6c71b8" ownerguid="fc82fcec-d03c-4fb0-bf62-714c71754402"> -<ExampleWords> -<AUni ws="en">childbearing years</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the time period during which a woman can become pregnant?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="49bc0d75-4f07-44b4-a50f-bc9a557dc15e" ownerguid="e7c58c11-2911-446a-96b0-2113247f3792"> -<Abbreviation> -<AUni ws="en">4.1.9.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to being related by marriage.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>10D Kinship Relations Based upon Marriage</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Related by marriage</AUni> -</Name> -<Questions> -<objsur guid="ef349351-024a-4355-9be1-6843903f6165" t="o" /> -<objsur guid="2e46f736-5775-4f4a-aff0-0881cfd1ece4" t="o" /> -<objsur guid="55b81f79-78c3-4c60-b924-1c8f36fae4b5" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="a4627ca8-f27b-44ce-91f5-cc992332bc86" t="o" /> -<objsur guid="89ad4e41-bf08-4d93-a4f3-f72e8cc62bed" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="49bc8278-83af-42ff-be02-d577040e5974" ownerguid="0bc02285-8e70-442a-8d08-e04d922507c8"> -<ExampleWords> -<AUni ws="en">portrait, landscape, seascape, still life</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What types of paintings are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="49bf78e0-7f04-4556-9b36-43912b5d3493" ownerguid="d47b69e0-ab4a-4111-aec3-2c889a4e70b3"> -<ExampleWords> -<AUni ws="en">creator, inventor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a person who creates?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="49c26ddb-4bc4-462c-ad14-406d006bbf9c" ownerguid="ca66291b-0046-4142-a4d4-d7baf284d121"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wet.cold</AUni> -<AUni ws="es">frio.mojado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="625441f0-aa9d-44e3-bb4a-903755340990" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="49c33dd8-cb0d-4aa8-9819-a4f044737ac2" ownerguid="044f740b-94f3-4096-aa3a-c07f5e708346"> -<ExampleWords> -<AUni ws="en">collect, acquire</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to collecting things?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="49c3474f-d0a5-485f-a96a-5bd3fd31509c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">criyenti; criyente</AUni> -<AUni ws="qvm-x-acl">criyenti; criyenti; criyente</AUni> -<AUni ws="qvm-x-akh">criyenti; criyente</AUni> -<AUni ws="qvm-x-akl">criyenti; criyenti; criyente</AUni> -<AUni ws="qvm-x-ame">criyenti; criyente</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+creyente</AUni> -<AUni ws="qvm-x-acl">+creyente</AUni> -<AUni ws="qvm-x-akh">+creyente</AUni> -<AUni ws="qvm-x-akl">+creyente</AUni> -<AUni ws="qvm-x-ame">+creyente</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.221" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ff16e610-376e-4724-9074-d10c85df3b2d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+creyente</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3a879cc0-93e5-4be9-a178-849d552cb4a1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2d56a239-f47f-4079-a633-b9c5813b6458" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +creyente 
\entryTyp root 
\gENG believer 
\gSPN creyente 
\e +creyente 
\c N0 
\mp +FinalI 
\ach criyenti / ~_# 
\ach criyente / _# 
\akh criyenti / ~_# 
\akh criyente / _# 
\acl criyenti / ~_# 
\acl criyenti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl criyente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl criyenti / ~_# 
\akl criyenti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl criyente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame criyenti / ~_# 
\ame criyente / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="49c525b3-2163-48e1-b3bd-57e5cdc486a4" ownerguid="1b0270a5-babf-4151-99f5-279ba5a4b044"> -<Abbreviation> -<AUni ws="en">2.1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the soft tissue of the body.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Flesh</AUni> -</Name> -<Questions> -<objsur guid="096cbc7b-7715-4067-99f6-857df84d5a71" t="o" /> -<objsur guid="64845c2b-e43f-4695-b336-f6d4a301af64" t="o" /> -<objsur guid="77fbb1dd-f6b4-4051-be32-d7809dd1542f" t="o" /> -<objsur guid="c0a10393-fa11-42ad-be83-3029235bb776" t="o" /> -<objsur guid="f9564b82-5474-4e65-9b01-3ef374845f24" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="49c878dd-277f-4bc9-b8ad-9ba192709108" ownerguid="8c28c640-db5b-43e2-a1e6-b0e381962129"> -<Abbreviation> -<AUni ws="en">6.3.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to cats.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Cat</AUni> -</Name> -<Questions> -<objsur guid="3ef7d749-ff24-4227-9f02-b7156951ad51" t="o" /> -<objsur guid="787d4673-77e5-40c6-9fca-8895445a73ba" t="o" /> -<objsur guid="4c7d771f-a6d7-480d-aa02-c2a6b9e95a56" t="o" /> -<objsur guid="96c077d1-9ff7-4f54-b3d9-35ec57c0d32f" t="o" /> -<objsur guid="a3322179-f592-4d9f-b7e3-4d7dc03740b0" t="o" /> -<objsur guid="398cdfd4-4e53-4c07-b6b4-a8875670f07c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="49c9fd72-6be3-4c7a-b5fb-af942702b37b" ownerguid="9330f5a7-4e79-485e-a656-e76a3e6eda86"> -<Form> -<AUni ws="qvm-x-ach">lamita; lamitä</AUni> -<AUni ws="qvm-x-acl">lamita; lamitä</AUni> -<AUni ws="qvm-x-akh">lamita; lamitä</AUni> -<AUni ws="qvm-x-akl">lamita; lamitä</AUni> -<AUni ws="qvm-x-ame">lamita; lamitä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="49cd2c20-098a-46d9-9e47-6bf109308793" ownerguid="e45b8bac-9623-4f84-a113-9dec13a8db64"> -<Abbreviation> -<AUni ws="en">3.5.1.2.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to emphasizing something--to say something in a way that other people know that you think this thing is important.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Emphasize</AUni> -</Name> -<Questions> -<objsur guid="94093324-8662-43d9-952c-df45c78273f5" t="o" /> -<objsur guid="a6153272-8e74-48a1-b24d-c37dcb15e1b5" t="o" /> -<objsur guid="42ad4f14-9133-4932-96e0-74d7f52812d9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="49cd5b66-22fd-4d3c-8fc9-fa30f44e6608" ownerguid="530849d4-bd70-4741-9f10-08584d3d2736"> -<Form> -<AUni ws="qvm-x-ach">carretïlla</AUni> -<AUni ws="qvm-x-acl">carretïlla</AUni> -<AUni ws="qvm-x-akh">carretïlla</AUni> -<AUni ws="qvm-x-akl">carretïlla</AUni> -<AUni ws="qvm-x-ame">carretïlla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="49cd8449-6693-4cda-ba6c-7d8e00775b95" ownerguid="b4ef7c71-cc06-4916-a9ba-bd22743582c0"> -<Form> -<AUni ws="qvm-x-ach">cumplita</AUni> -<AUni ws="qvm-x-acl">cumplita</AUni> -<AUni ws="qvm-x-akh">cumplita</AUni> -<AUni ws="qvm-x-akl">cumplita</AUni> -<AUni ws="qvm-x-ame">cumplita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="49cedb42-6a63-4b8d-9893-21689ea78859" ownerguid="f3d40c71-525b-48a8-b789-f6a7d8af1fdb"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Lev 11.27 Chaqui paltalanwan pureg uywacunapis\f + 11.27 Chaqui paltalanwan pureg uywacunaga caycan algu, mishi, ösu, atog, añas y mas uywacunapis.\f* impürumi caycan. Tsay uywacuna wanuptin pipis yatag cäga impürumi canga patsa tsacashganyag.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="49d08ca0-fdfd-4cad-8a93-4f1f0bd5aa93" ownerguid="91913920-8a6a-4ba0-9361-d6cc9e1f3639"> -<ExampleWords> -<AUni ws="en">the back, the reverse, the other side, the flip side</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) If something has two sides, what words refer to the other side?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="49d23a4a-2c93-4aac-b62f-11d5714aa47b" ownerguid="94af09fa-ff23-433b-a881-ceaca87d9d18"> -<ExampleWords> -<AUni ws="en">feeble, frail, fragile, shaky, unsteady, infirm, anemic, debilitated, unsound</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who is weak because of being old or sick?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="49d3dd07-74ae-4c9b-8693-1a0489aa9e3d" ownerguid="e3284653-244a-4f45-99ed-8ce887c5d606"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="49dc9eb1-7fe9-4ed3-bdcc-75b551e23ebb" ownerguid="f92657c7-1914-40e6-a86c-17e728b8c21c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">guard</AUni> -<AUni ws="es">guardia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e4324343-6d51-45f9-aafc-9558223fdbd5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="49deab3d-5f27-43fc-8d57-e6b7646929aa" ownerguid="6580913f-20ab-4d71-aa82-7e7dab230e09"> -<Form> -<AUni ws="qvm-x-ach">cuntu</AUni> -<AUni ws="qvm-x-acl">cuntu; cuntu; cunto</AUni> -<AUni ws="qvm-x-akh">kuntu</AUni> -<AUni ws="qvm-x-akl">kuntu; kuntu; kunto</AUni> -<AUni ws="qvm-x-ame">kuntu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="49e142c3-a037-42ac-9af8-b3f5288cb115" ownerguid="9f486af7-3fe6-4405-850c-5dff8b0542a5"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="9039bc55-1892-41dd-98fa-9fbf4dfdfff9" t="o" /> -<objsur guid="55fa31d1-5a01-42ee-8e37-136771dae41c" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="49e5360a-3b12-4e8f-98bb-00a677f61e17" ownerguid="4acc430b-9c98-4a49-a8b4-15edc0f6d19b"> -<ExampleWords> -<AUni ws="en">tidy, neat, orderly, organized, consistent, house-proud</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is tidy?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="49e59f52-5f13-47bd-9404-b5eb61b1a4d9" ownerguid="72ada597-ac17-4c9d-a4a0-f7da15bf94a3"> -<Form> -<AUni ws="qvm-x-ach">cuchpa</AUni> -<AUni ws="qvm-x-acl">cuchpa</AUni> -<AUni ws="qvm-x-akh">kuchpa</AUni> -<AUni ws="qvm-x-akl">kuchpa</AUni> -<AUni ws="qvm-x-ame">kuchpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="49e6ab83-b702-4e5a-8d5d-bd04a8f5f321" ownerguid="39da5c85-d257-42ec-8bd2-d373499bbe6a"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="49ecbfc7-b3a4-4b3c-82ec-cb67ebdcfc4c" ownerguid="e556f881-fe4b-45da-b528-1c1adf38662e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pass.day</AUni> -<AUni ws="es">pasar.día</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3761057c-5f59-4c0c-9b43-76d6d984cba8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="49ee1a30-4e7d-400e-824f-9b2f2c1786e3" ownerguid="a104adb9-9e74-4130-aee8-072da2a9ac22"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="3d941464-0ecf-4a32-b23d-cfc699f00ef9" t="o" /> -<objsur guid="cb3a22ed-b5c0-4a97-8173-c5dc38ab797a" t="o" /> -<objsur guid="d4730e27-70aa-43ac-a07b-497eefe7a826" t="o" /> -<objsur guid="6e18b74e-e6c0-4df1-89fa-d48cd6bb5e64" t="o" /> -</MorphBundles> -</rt> -<rt class="CmSemanticDomain" guid="49ee84ff-eb2b-4ba3-b193-3018d34599c2" ownerguid="2b893d04-3450-4862-b046-7df6f87272f6"> -<Abbreviation> -<AUni ws="en">6.8.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to borrowing something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Borrow</AUni> -</Name> -<Questions> -<objsur guid="884a71de-c156-456a-997d-e930ac349043" t="o" /> -<objsur guid="54fb2ae0-1186-4a97-b1cc-b40f090f9368" t="o" /> -<objsur guid="4016c083-2cca-458e-bc26-06712cf8a5ff" t="o" /> -<objsur guid="27128d22-736d-43e1-b306-296ced8bc929" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="48380d5d-bd54-48a9-92bc-7c8a93de0567" t="o" /> -<objsur guid="ec90e061-e6a0-435f-8784-7269a24c670a" t="o" /> -<objsur guid="4eb41e40-4115-435a-934a-5d91022a29dc" t="o" /> -<objsur guid="1da9c4f4-8ae2-47d9-8068-ff65fa3848a9" t="o" /> -<objsur guid="5a2355b4-c295-4b94-86da-6ac18198bae4" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="49f0742b-349b-471e-b23c-9af2fb502541"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">amenaza</AUni> -<AUni ws="qvm-x-acl">amenaza</AUni> -<AUni ws="qvm-x-akh">amenaza</AUni> -<AUni ws="qvm-x-akl">amenaza</AUni> -<AUni ws="qvm-x-ame">amenaza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+amenazar</AUni> -<AUni ws="qvm-x-acl">+amenazar</AUni> -<AUni ws="qvm-x-akh">+amenazar</AUni> -<AUni ws="qvm-x-akl">+amenazar</AUni> -<AUni ws="qvm-x-ame">+amenazar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.749" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="93a34379-cbc2-4d3e-9f82-92f72324b23b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+amenazar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cf34118b-fb39-4ea0-8ba6-0e641ebb5011" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6b1d634f-f091-40ec-b1bc-c9efd79719d1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +amenazar 
\entryTyp root 
\gENG threaten 
\gSPN amenazar 
\e +amenazar 
\c V2 
\ach amenaza 
\akh amenaza 
\acl amenaza 
\akl amenaza 
\ame amenaza</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="49f22388-0097-4c5c-8542-86947fcaef51" ownerguid="6d0022b9-a000-43e4-8547-bc2aea1a17ec"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="49f45f97-95f8-4a53-8952-f90147af2ba9" ownerguid="30fff450-1aa5-4993-9c14-c8019a5f072e"> -<Abbreviation> -<AUni ws="en">9.6.1.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.718" /> -<DateModified val="2022-9-23 16:55:8.718" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that something is an exception to a group, rule or pattern--something is true of all the things (or people) in a group, but it is not true of one thing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Except</AUni> -</Name> -<Questions> -<objsur guid="2b1e73b8-342f-4829-9772-1465ebbc378c" t="o" /> -<objsur guid="63a0ac7e-ca1c-40b3-8a76-000db00aa649" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="49f92595-529f-4fac-9eb3-f251a917e38a" ownerguid="7c096b2c-2bc2-492c-a061-9b64be1981ac"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="ee67ff14-09b8-4706-93fa-2765b0e949bd" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="6973e6e0-2aa4-439b-9c92-7676c84d893f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="49fde4e4-33f0-4438-a86c-7a377e889399" ownerguid="f94d5da3-c02d-4742-98e5-6e7159499780"> -<Form> -<AUni ws="qvm-x-ach">cólera; cölera</AUni> -<AUni ws="qvm-x-acl">cólera; cölera</AUni> -<AUni ws="qvm-x-akh">cólera; cölera</AUni> -<AUni ws="qvm-x-akl">cólera; cölera</AUni> -<AUni ws="qvm-x-ame">cólera; cölera</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="4a0165fb-1fe0-4ec9-aad0-f150963c2eac" ownerguid="8b7f1eb3-f7a5-43f3-b04a-904df3352d0c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="4a0669d9-38b7-4482-95ce-8b4a229bab19"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gaga</AUni> -<AUni ws="qvm-x-acl">gaga</AUni> -<AUni ws="qvm-x-akh">qaqa</AUni> -<AUni ws="qvm-x-akl">qaqa</AUni> -<AUni ws="qvm-x-ame">qaqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qaqa</AUni> -<AUni ws="qvm-x-acl">*qaqa</AUni> -<AUni ws="qvm-x-akh">*qaqa</AUni> -<AUni ws="qvm-x-akl">*qaqa</AUni> -<AUni ws="qvm-x-ame">*qaqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.94" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="90e2b940-e27d-4417-b553-cfc5f5df3870" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qaqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e08a40b6-834b-448b-8103-5a8ab8af65c4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="22a43fb4-bdb5-4829-9140-ca54a6790241" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qaqa 
\entryTyp root 
\gENG large.rock 
\gSPN peña 
\e *qaqa 
\c N0 
\ach gaga 
\akh qaqa 
\acl gaga 
\akl qaqa 
\ame qaqa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="4a07702a-1732-49d5-bf05-9e0e69d935d6" ownerguid="3e476adb-695e-48c3-a9b6-9a07934eac7a"> -<Form> -<AUni ws="qvm-x-ach">pasma</AUni> -<AUni ws="qvm-x-acl">pasma</AUni> -<AUni ws="qvm-x-akh">pasma</AUni> -<AUni ws="qvm-x-akl">pasma</AUni> -<AUni ws="qvm-x-ame">pasma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="4a094d70-797c-49b3-b118-7267cb273e87"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ima</AUni> -<AUni ws="qvm-x-acl">ima</AUni> -<AUni ws="qvm-x-akh">ima</AUni> -<AUni ws="qvm-x-akl">ima</AUni> -<AUni ws="qvm-x-ame">ima</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ima.n</AUni> -<AUni ws="qvm-x-acl">*ima.n</AUni> -<AUni ws="qvm-x-akh">*ima.n</AUni> -<AUni ws="qvm-x-akl">*ima.n</AUni> -<AUni ws="qvm-x-ame">*ima.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.802" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c9dc3dbf-09af-4ad5-b2f6-dd89c0e8202d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ima.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a6eba134-b805-46fa-bc18-a9728f8d1af0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2a97d1fa-f9e4-458d-9a3b-955d7751f46b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ima.n 
\entryTyp root 
\gENG what 
\gSPN qué 
\e *ima.n 
\c N0 
\ach ima 
\akh ima 
\acl ima 
\akl ima 
\ame ima 
\mcc *ima.n / ~_ DES 
\mcc *ima.n / ~_ LIM1 EVEN1 
\mcc *ima.n / ~_ 1P.V [sim] 
\mcc *ima.n / ~_ SIM1.1 GEN</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4a0d3906-c396-4107-b419-0f53b54ad596" ownerguid="b50f39cb-3152-4d56-9ddc-4b98f763e76a"> -<ExampleWords> -<AUni ws="en">want (n), desire (n), wish (n), longing, yearning, craving, mania, obsession</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something someone wants?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4a0ed58c-4900-4cff-a67b-ecf8c8ec2a3e" ownerguid="a1136561-0b46-418b-afe8-f841f89bea85"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="4a138925-7942-4784-a9cd-83d9594c18de" ownerguid="41551b37-e74e-4fbf-8411-290dbb18b302"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="4a13ef2b-a876-401b-9e8c-3507b25df928" ownerguid="92691d17-d145-4783-a83a-8d67fc35a586"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="4a146fa6-8cdf-4d5a-a5b3-2a3b92afed2f" ownerguid="78c4c93f-a4af-4325-a119-e79ec9cabcb2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="b4ddc5f8-5bb0-40b6-9f76-ec6b7d47c8df" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="a7e30d0d-25f7-4754-b22c-3becbebb3328" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="4a14e09c-9b06-4eab-a8df-a24440453c9d" ownerguid="d2b9a972-f2de-4535-adbf-152b679769a0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="b744f052-2f52-4f41-8773-2fa08727db5c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4a18bb43-ff77-43fa-bc3c-8d7422c11421" ownerguid="8b6aecfb-071d-439d-9ee0-efa3c57967a0"> -<ExampleWords> -<AUni ws="en">diplomacy, diplomatic corps, ambassador, (king's) representative, Secretary of State, treaty, international relations</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to diplomacy between nations?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4a18c381-84a9-484b-8727-f8e9244c3404"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shunta</AUni> -<AUni ws="qvm-x-acl">shunta</AUni> -<AUni ws="qvm-x-akh">shunta</AUni> -<AUni ws="qvm-x-akl">shunta</AUni> -<AUni ws="qvm-x-ame">shunta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shunta.v</AUni> -<AUni ws="qvm-x-acl">*shunta.v</AUni> -<AUni ws="qvm-x-akh">*shunta.v</AUni> -<AUni ws="qvm-x-akl">*shunta.v</AUni> -<AUni ws="qvm-x-ame">*shunta.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.642" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="475dcd6f-ebc0-4cf3-8130-beddd909ee8a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shunta.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2f884421-8838-4f28-afcf-b828c57efebf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4436132f-7291-40e7-bb6d-690830eea3c1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shunta.v 
\entryTyp root 
\gENG collect 
\gSPN recoger 
\e *shunta.v 
\c V2 
\ach shunta 
\akh shunta 
\acl shunta 
\akl shunta 
\ame shunta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4a193486-47eb-475e-978c-ccd158f218b9" ownerguid="bf6e1719-11ee-4ace-9c84-72019c01aabc"> -<ExampleWords> -<AUni ws="en">spring, water source, water supply, well, artesian well, water hole, bore hole, fountain, fountainhead</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a place where water comes out of the ground?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4a1d8f5a-c887-4c85-a8a4-bd6f227db23e" ownerguid="ca752706-1c9e-43e7-bd17-845c4736ccd8"> -<ExampleWords> -<AUni ws="en">about, around, approximately, round about, or thereabouts, circa, some time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words indicate that something happens at an approximate time?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4a1df65d-e774-44ed-940d-ccd8be9b5789" ownerguid="5ac3cb4d-76e4-43e0-90e9-e33a3755e800"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lamp</AUni> -<AUni ws="es">lamparín</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c3db3c0f-04d2-48f1-8675-40c4f2598f74" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="4a1e1292-09bd-49d9-8cbf-2aaec6a39256"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jacha</AUni> -<AUni ws="qvm-x-acl">jacha</AUni> -<AUni ws="qvm-x-akh">jacha</AUni> -<AUni ws="qvm-x-akl">jacha</AUni> -<AUni ws="qvm-x-ame">hacha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hatra</AUni> -<AUni ws="qvm-x-acl">*hatra</AUni> -<AUni ws="qvm-x-akh">*hatra</AUni> -<AUni ws="qvm-x-akl">*hatra</AUni> -<AUni ws="qvm-x-ame">*hatra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.690" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c84e8648-e0e3-43b6-9303-46aae363d4aa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hatra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="574ccacf-9e43-43b5-b136-81b30bdf5cb3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4982a689-36cb-4883-9cee-fb138c4c320c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hatra 
\entryTyp root 
\gENG weed 
\gSPN hierba 
\e *hatra 
\c N0 
\ach jacha 
\akh jacha 
\acl jacha 
\akl jacha 
\ame hacha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="4a1f3e62-a777-4126-8e47-8856e88c9b62" ownerguid="344d884c-3580-4482-9e52-2089d94bb72a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 18.17 Contrapartin declaraptinragmi imanog cashgantapis musyan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="4a2350ff-1227-43c6-93fc-26d4ab064794" ownerguid="401f0ae3-d7e0-4533-80e0-2f2e06f5d052"> -<Form> -<AUni ws="qvm-x-ach">wanla</AUni> -<AUni ws="qvm-x-acl">wanla</AUni> -<AUni ws="qvm-x-akh">wanla</AUni> -<AUni ws="qvm-x-akl">wanla</AUni> -<AUni ws="qvm-x-ame">wanla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="4a23d3bd-a192-4e87-b9f9-b9032a54b185" ownerguid="67bc7948-c7ae-4c0a-a341-1a58b6d3407e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stand</AUni> -<AUni ws="es">pararse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="82342709-59ba-4190-b3bd-6ce72547e1db" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="4a23f313-9f9c-4bc9-a250-c2d0f19b572e" ownerguid="4302d543-41c0-43c8-a167-1fbe1470afb9"> -<Form> -<AUni ws="qvm-x-ach">pishi</AUni> -<AUni ws="qvm-x-acl">pishi; pishi; pishe</AUni> -<AUni ws="qvm-x-akh">pishi</AUni> -<AUni ws="qvm-x-akl">pishi; pishi; pishe</AUni> -<AUni ws="qvm-x-ame">pishi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="4a26761d-9620-4a50-a3ac-8c19a7363832" ownerguid="aa82a014-c85e-403b-b0e8-63569f15f7d9"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 1.28 Tsaynog pasashushgayqui höra ausiliuta manamaptiquipis manami cäsushayquitsu.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="4a299931-f37f-4bd9-9b10-d3b953a80194" ownerguid="780fbf89-f2ba-404c-b288-f6ca637bbc90"> -<ExampleWords> -<AUni ws="en">continue (doing something), remain at (something), keep on (doing something), stay at (it), stick to (it), hold on, keep (going), keep at (it), sticktoitiveness, sustain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to continuing to do something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4a2e2644-f3c7-430c-bccc-06e6174f233f" ownerguid="2f58bd8d-98ba-43a6-a143-441d8a630f7d"> -<Form> -<AUni ws="qvm-x-ach">ruri</AUni> -<AUni ws="qvm-x-acl">ruri; ruri; rure</AUni> -<AUni ws="qvm-x-akh">ruri</AUni> -<AUni ws="qvm-x-akl">ruri; ruri; rure</AUni> -<AUni ws="qvm-x-ame">ruri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="4a32a3d0-289a-4ff2-b00f-631c2a0eb557" ownerguid="971928bd-969f-4a1f-92bb-c3a816d15d5a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1 V2/V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">CMPLT</AUni> -<AUni ws="es">CMPLT</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6c34753a-e6ec-4e61-a9eb-6c7283150496" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="4a388000-d5c6-4127-91cd-f4e0c9fac6f1" ownerguid="bc96b3e3-6185-4925-b79e-8f0f9555bfb7"> -<Abbreviation> -<AUni ws="en">3.5.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.174" /> -<DateModified val="2022-9-23 16:55:8.174" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to information--something someone says about something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33O Inform, Announce</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Information</AUni> -</Name> -<Questions> -<objsur guid="1bd8f896-4998-43b2-96d9-b3f0a7295f25" t="o" /> -<objsur guid="688397e1-e23c-4f14-9ac8-fbda54d4ec0a" t="o" /> -<objsur guid="9a80dcdc-c5f1-45b7-928b-74c2e0cf815e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="4a3d65c9-ff74-4db2-ad5a-8d4a5c58bc7a" ownerguid="7909b8bc-221d-43ce-a4a3-13052517806c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wind</AUni> -<AUni ws="es">aire, viento</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5dc9c776-94d5-41cb-bd16-26b9bb47506d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4a401bd6-a27f-4537-ac03-7f291dae6eb6" ownerguid="65a928b8-8587-48be-8f23-41f85549c547"> -<ExampleWords> -<AUni ws="en">memorize, commit to memory, make a mental note, record, remember, store</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to memorizing something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4a41c6e1-c4ef-490a-ab87-ba39a986f9d6" ownerguid="c6c772af-7b6b-4393-b0da-5b4a329d3426"> -<ExampleWords> -<AUni ws="en">dose, dosage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the amount of medicine that a sick person needs?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4a4392f2-adfd-4a53-ad99-27246f8e7f60"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">funda</AUni> -<AUni ws="qvm-x-acl">funda</AUni> -<AUni ws="qvm-x-akh">funda</AUni> -<AUni ws="qvm-x-akl">funda</AUni> -<AUni ws="qvm-x-ame">funda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fundar</AUni> -<AUni ws="qvm-x-acl">+fundar</AUni> -<AUni ws="qvm-x-akh">+fundar</AUni> -<AUni ws="qvm-x-akl">+fundar</AUni> -<AUni ws="qvm-x-ame">+fundar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.589" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d52434e4-cd7a-4b89-90b0-fe521d3e3f78" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fundar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f3434500-83df-4a55-99d8-a4ece17d4d38" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="20ec9ced-9671-427a-a201-7d48491a157b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fundar 
\entryTyp root 
\gENG to.found 
\gSPN fundar 
\e +fundar 
\c V1 
\ach funda 
\akh funda 
\acl funda 
\akl funda 
\ame funda</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="4a44ac87-5ad5-44de-8170-9fd88b056010" ownerguid="97e1aba5-2ac1-44a3-8f18-59b2347a54a1"> -<Abbreviation> -<AUni ws="en">6.5.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.458" /> -<DateModified val="2022-9-23 16:55:8.458" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the equipment and maintenance of a building.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Building equipment and maintenance</AUni> -</Name> -<OcmCodes> -<Uni>350 Equipment and Maintenance of Buildings; 358 Maintenance of Non-domestic Buildings</Uni> -</OcmCodes> -<Questions> -<objsur guid="fe8e525a-fa7f-4028-b08e-63d9abee7ceb" t="o" /> -<objsur guid="1252b33d-965a-435b-b7c5-c776bcaa4901" t="o" /> -<objsur guid="85e9d6fc-83fd-4065-b9f9-9357d482a7cd" t="o" /> -<objsur guid="08d6cb0d-d1af-48a2-b6ca-d71109410559" t="o" /> -<objsur guid="8c0f3155-e5b8-4d27-abfa-657f4ead3893" t="o" /> -<objsur guid="cc0ae27f-2856-4b9e-87df-811e11abc3ee" t="o" /> -<objsur guid="698f59d0-ba58-4dff-aba5-78ba16ed71eb" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="4a44f341-5690-4922-a7d4-7539abfd83be" ownerguid="1ec14648-c92e-4ac1-8649-0e9f54e0136f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">brother</AUni> -<AUni ws="es">hermano</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cb98d95c-4b52-49cb-adcf-420fe8a6133d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="4a45882f-8f3b-443d-9846-ee8adcb9e9ae" ownerguid="0ce19759-6e90-47b7-bf9c-b5892b6808bf"> -<Form> -<AUni ws="qvm-x-ach">naranja</AUni> -<AUni ws="qvm-x-acl">naranja</AUni> -<AUni ws="qvm-x-akh">naranja</AUni> -<AUni ws="qvm-x-akl">naranja</AUni> -<AUni ws="qvm-x-ame">naranja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="4a465727-8828-4598-bab8-68f2eccc283d" ownerguid="652d7ef5-6430-41f5-8be0-6f6b7e978036"> -<Form> -<AUni ws="qvm-x-ach">comädri; comädri</AUni> -<AUni ws="qvm-x-acl">comädri; comädri; comädre</AUni> -<AUni ws="qvm-x-akh">comädri; comädri</AUni> -<AUni ws="qvm-x-akl">comädri; comädri; comädre</AUni> -<AUni ws="qvm-x-ame">comädri; comädri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="4a4780b0-3faf-4148-8382-3dcc08956c80"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">porfin</AUni> -<AUni ws="qvm-x-acl">porfin</AUni> -<AUni ws="qvm-x-akh">porfin</AUni> -<AUni ws="qvm-x-akl">porfin</AUni> -<AUni ws="qvm-x-ame">porfin</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+por.fin</AUni> -<AUni ws="qvm-x-acl">+por.fin</AUni> -<AUni ws="qvm-x-akh">+por.fin</AUni> -<AUni ws="qvm-x-akl">+por.fin</AUni> -<AUni ws="qvm-x-ame">+por.fin</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.901" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2961131a-5d7d-4f69-9b58-3a1fc18ed0dc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+por.fin</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f6bfb8c0-7a87-462a-913c-843aa6e95181" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c976ff1b-f0ef-4625-99d8-d5c6dc0221fe" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +por.fin 
\entryTyp root 
\gENG at.last 
\gSPN por.fin 
\e +por.fin 
\c NOSUFF 
\ach porfin 
\akh porfin 
\acl porfin 
\akl porfin 
\ame porfin</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4a49f2c4-3af3-4d11-862f-4027b0668be7" ownerguid="2cc624fa-76cb-46ab-87c8-c13c6adb1c72"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Go away!; Leave me alone!; Get out of my sight!</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(2) What do people say when they want someone to go away?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4a4a4c71-f7a6-4423-a4dc-a882adf854d5" ownerguid="83c35895-8809-4e26-92f2-056942c9c007"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">investigate</AUni> -<AUni ws="es">investigar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b7923925-d507-42a2-bbd7-7b6edb4f2093" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="4a4bde3a-3365-46b5-b95a-2e02b603ff0e" ownerguid="c809691f-b1de-4cbe-993f-1ce88530afd4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="4a4bdea2-89bf-4826-bde0-2bb1ead12835"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">espe:ju</AUni> -<AUni ws="qvm-x-acl">espe:ju; espe:ju; espe:jo</AUni> -<AUni ws="qvm-x-akh">espe:ju</AUni> -<AUni ws="qvm-x-akl">espe:ju; espe:ju; espe:jo</AUni> -<AUni ws="qvm-x-ame">espe:ju</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+espejo</AUni> -<AUni ws="qvm-x-acl">+espejo</AUni> -<AUni ws="qvm-x-akh">+espejo</AUni> -<AUni ws="qvm-x-akl">+espejo</AUni> -<AUni ws="qvm-x-ame">+espejo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.498" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c89bae7a-5a09-4b77-a661-452acff72fb3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+espejo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4d417406-5c82-4fdd-85eb-54b0898ae633" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6550cc9b-bdbc-41be-905d-d9fb712c5a7f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +espejo 
\entryTyp root 
\gENG mirror 
\gSPN espejo 
\e +espejo 
\c N0 
\ach espe:ju 
\akh espe:ju 
\acl espe:ju / _# 
\acl espe:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl espe:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl espe:ju / _# 
\akl espe:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl espe:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame espe:ju</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4a4c2464-9e07-4d84-9bf5-1301a5a7206b" ownerguid="69541573-f845-4e77-91f6-1e3551fc6c82"> -<ExampleWords> -<AUni ws="en">place name</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the name of a place?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4a4d991b-5704-4a0e-919e-0668b0d3f0e8" ownerguid="719ddef3-f5fa-4ae5-a51b-a3457e46088e"> -<Form> -<AUni ws="qvm-x-ach">duëñu</AUni> -<AUni ws="qvm-x-acl">duëñu; duëñu; duëño</AUni> -<AUni ws="qvm-x-akh">duëñu</AUni> -<AUni ws="qvm-x-akl">duëñu; duëñu; duëño</AUni> -<AUni ws="qvm-x-ame">duëñu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="4a4f0b29-ba24-4db5-a1a0-b460a025ef37" ownerguid="b9c1d2d0-47b4-4691-916b-de4bf47faed8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="4a511718-5413-4f2a-9011-c742fcc0a57a" ownerguid="611aa361-4ddd-450b-a152-94984a274575"> -<ExampleWords> -<AUni ws="en">abandoned child, waif, street kid</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to someone who has been abandoned?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4a560938-141c-453a-8e48-3f7abad444ee" ownerguid="5bcb91f8-4679-4054-8878-eb33e05eeb76"> -<Form> -<AUni ws="qvm-x-ach">täza</AUni> -<AUni ws="qvm-x-acl">täza</AUni> -<AUni ws="qvm-x-akh">täza</AUni> -<AUni ws="qvm-x-akl">täza</AUni> -<AUni ws="qvm-x-ame">täza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4a581967-f9d6-4389-8c2d-a5bdbbdc9414" ownerguid="f352a437-58f2-4920-aec3-eda8041f7447"> -<ExampleWords> -<AUni ws="en">pioneer, the first</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to the person who did something first?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4a59d4da-141b-4e72-9281-9e73ea3e01ad"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">puntincuy</AUni> -<AUni ws="qvm-x-acl">puntincuy</AUni> -<AUni ws="qvm-x-akh">puntinkuy</AUni> -<AUni ws="qvm-x-akl">puntinkuy</AUni> -<AUni ws="qvm-x-ame">puntinkuy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puntinkuy</AUni> -<AUni ws="qvm-x-acl">*puntinkuy</AUni> -<AUni ws="qvm-x-akh">*puntinkuy</AUni> -<AUni ws="qvm-x-akl">*puntinkuy</AUni> -<AUni ws="qvm-x-ame">*puntinkuy</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.8" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="55693322-69d9-4e03-bdbf-190089f1a0ae" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puntinkuy</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="416cce0f-97b2-4a11-96cd-df687ee01ff0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="20a1603a-2157-40b9-b2f9-04d4bdf73e10" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puntinkuy 
\entryTyp root 
\gENG june.bug 
\gSPN abejorro 
\e *puntinkuy 
\c N0 
\mp +FinalC 
\ach puntincuy 
\akh puntinkuy 
\acl puntincuy 
\akl puntinkuy 
\ame puntinkuy</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="4a5b16e0-73de-46b4-ab77-5538a7b9cbb0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shiqui</AUni> -<AUni ws="qvm-x-acl">shiqui; shiqui; shique</AUni> -<AUni ws="qvm-x-akh">shiki</AUni> -<AUni ws="qvm-x-akl">shiki; shiki; shike</AUni> -<AUni ws="qvm-x-ame">shiki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shiki</AUni> -<AUni ws="qvm-x-acl">*shiki</AUni> -<AUni ws="qvm-x-akh">*shiki</AUni> -<AUni ws="qvm-x-akl">*shiki</AUni> -<AUni ws="qvm-x-ame">*shiki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.571" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f9f31f5b-6a16-467b-b756-04deead6a4fb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shiki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3637f33f-5b3e-4d3a-86ac-1ec5da5ef2d5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a8659486-5bab-4b04-af41-3cbe122cbf18" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shiki 
\entryTyp root 
\gENG 
\gSPN áspera 
\e *shiki 
\c N0 
\mp +FinalI 
\ach shiqui 
\akh shiki 
\acl shiqui / _# 
\acl shiqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shique +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shiki / _# 
\akl shiki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shike +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shiki</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="4a5c8fdb-c8a0-49d2-a0d6-342428682d65" ownerguid="c2dbe83a-d638-45ac-a6d5-5f041b9dde71"> -<Abbreviation> -<AUni ws="en">2.5.4.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.47" /> -<DateModified val="2022-9-23 16:55:8.47" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to having a birth defect.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Birth defect</AUni> -</Name> -<OcmCodes> -<Uni>143 Genetics</Uni> -</OcmCodes> -<Questions> -<objsur guid="87999a81-f4cf-45c3-9279-1b18083c1d11" t="o" /> -<objsur guid="c894e39d-1f98-4e54-890d-35bf200f6b55" t="o" /> -<objsur guid="8375241a-f34b-4b28-8dbc-71ee75b38ee8" t="o" /> -<objsur guid="4b2b87e0-9953-496f-83c8-b24a63f5eb52" t="o" /> -<objsur guid="c70f98d7-ae95-4c44-85fb-7996eefddf95" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="4a5e5ddc-c65a-44a7-876b-e79908b74551" ownerguid="9b3a5c6d-7f69-4cee-b4fa-98773152e5f1"> -<Form> -<AUni ws="qvm-x-ach">chushig</AUni> -<AUni ws="qvm-x-acl">chusheg</AUni> -<AUni ws="qvm-x-akh">chushiq</AUni> -<AUni ws="qvm-x-akl">chusheq</AUni> -<AUni ws="qvm-x-ame">chushiq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4a64aa61-36cb-4871-8b44-ae03d9586e7c" ownerguid="474aa982-8350-47e2-a983-e1e2bce9d928"> -<ExampleWords> -<AUni ws="en">cheer, hearten, entertain, brighten your day</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to causing someone to feel good?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4a64d301-3123-4ede-a86b-e875df072ab3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">juchu</AUni> -<AUni ws="qvm-x-acl">juchu; jucho</AUni> -<AUni ws="qvm-x-akh">juchu</AUni> -<AUni ws="qvm-x-akl">juchu; jucho</AUni> -<AUni ws="qvm-x-ame">huchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hutru.v</AUni> -<AUni ws="qvm-x-acl">*hutru.v</AUni> -<AUni ws="qvm-x-akh">*hutru.v</AUni> -<AUni ws="qvm-x-akl">*hutru.v</AUni> -<AUni ws="qvm-x-ame">*hutru.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.779" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c6335d5a-772d-4a3c-9f01-f5d0c83096d1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hutru.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="76d47d55-31c5-4947-a177-58ac09f463dd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3cc8e765-5fda-4aea-bdc9-ed81fce76e0a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hutru.v 
\entryTyp root 
\gENG fall 
\gSPN caer 
\e *hutru.v 
\c V1 
\ach juchu 
\akh juchu 
\acl juchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl jucho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl juchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jucho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame huchu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="4a65ee03-8cbc-4b05-b5f0-e07e3be8f881" ownerguid="2f193b45-e3e4-4de7-b033-ccb525d16256"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 7.27 Paypa wayinman aywagcunaga fïjumi ushacan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="4a660a4c-55a8-4014-8475-d5f97e22e88e" ownerguid="7c234ccc-0dbe-42b0-a377-db99ebd2b51e"> -<ExampleWords> -<AUni ws="en">tame, domesticate, train, pet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words are used for taming animals?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4a672d16-6c8a-46b3-977f-16624fa160e8" ownerguid="7df3078c-f681-4123-a712-4b83e438ea1d"> -<ExampleWords> -<AUni ws="en">keep, save, hold on to, retain, keep possession of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to keeping something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4a673080-646f-4b1b-99a2-3e59e432b836"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pochgu</AUni> -<AUni ws="qvm-x-acl">pochgu; pochgo</AUni> -<AUni ws="qvm-x-akh">pochqu</AUni> -<AUni ws="qvm-x-akl">pochqu; pochqo</AUni> -<AUni ws="qvm-x-ame">puchqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*putrqu.v</AUni> -<AUni ws="qvm-x-acl">*putrqu.v</AUni> -<AUni ws="qvm-x-akh">*putrqu.v</AUni> -<AUni ws="qvm-x-akl">*putrqu.v</AUni> -<AUni ws="qvm-x-ame">*putrqu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.55" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2451d605-4487-48ba-b3b4-89c901499ced" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*putrqu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="39b9fcb5-f2bb-41c7-b536-3ffc4af3ea7e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f4150ec6-8772-48e3-a6c6-cd77282e5707" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *putrqu.v 
\entryTyp root 
\gENG salty 
\gSPN salado 
\e *putrqu.v 
\c V1 
\ach pochgu 
\akh pochqu 
\acl pochgu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pochgo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pochqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pochqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame puchqu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4a68328c-f426-4f2e-88fa-7dec74770eee" ownerguid="32bf055a-d666-4d6e-a3c6-6c984e2c9868"> -<ExampleWords> -<AUni ws="en">speak/talk on the phone, be on the phone</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to talking to someone on the telephone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4a6af51b-52a2-44c2-acf2-6007c1ac4e9f" ownerguid="7bf05f4e-909f-40ca-b742-9be21eba9fbb"> -<Question> -<AUni ws="en">(6) obligation: the agent is obliged to perform the action of the verb.</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4a6b60b0-7b96-4437-936b-00432e82384f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yoraga; yoraga:</AUni> -<AUni ws="qvm-x-acl">yoraga; yoraga:</AUni> -<AUni ws="qvm-x-akh">yoraqa; yoraqa:</AUni> -<AUni ws="qvm-x-akl">yoraqa; yoraqa:</AUni> -<AUni ws="qvm-x-ame">yuraqa; yuraqa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yuraqa:</AUni> -<AUni ws="qvm-x-acl">*yuraqa:</AUni> -<AUni ws="qvm-x-akh">*yuraqa:</AUni> -<AUni ws="qvm-x-akl">*yuraqa:</AUni> -<AUni ws="qvm-x-ame">*yuraqa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.800" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="387ef7fb-37fd-4e40-b288-cb7bf0307e0b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yuraqa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="82454fe0-b093-4b1e-ab11-3e5a58dc3e39" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ba6deb0f-7802-4a32-ad48-22057353d38e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yuraqa: 
\entryTyp root 
\gENG whiten 
\gSPN blanquear 
\e *yuraqa: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach yoraga foreshortened 
\ach yoraga: 
\akh yoraqa foreshortened 
\akh yoraqa: 
\acl yoraga foreshortened 
\acl yoraga: 
\akl yoraqa foreshortened 
\akl yoraqa: 
\ame yuraqa foreshortened 
\ame yuraqa:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4a6bd840-5886-4c11-b4aa-1afb80a1348e" ownerguid="d4521b0f-0703-48cc-94a0-f42ccc09959c"> -<ExampleWords> -<AUni ws="en">time, period, when, sometime, anytime, every time, never, at no time, each time, whenever, sometimes</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What pronouns express indefinite reference of a time?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4a6cdb51-d8e2-47a8-9184-57591551965d" ownerguid="f053aee4-2685-495f-bec4-8f64065cf855"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="4a6e6087-5f9a-4c17-983c-7518626b38fe" ownerguid="5bdb3c06-fbee-4f5f-991a-e2128f65bb86"> -<ExampleWords> -<AUni ws="en">made-up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe someone who is wearing cosmetics?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4a6f92f3-923f-4d27-ac96-a396c3d9658b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">arti</AUni> -<AUni ws="qvm-x-acl">arti; arte</AUni> -<AUni ws="qvm-x-akh">arti</AUni> -<AUni ws="qvm-x-akl">arti; arte</AUni> -<AUni ws="qvm-x-ame">arti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*arti</AUni> -<AUni ws="qvm-x-acl">*arti</AUni> -<AUni ws="qvm-x-akh">*arti</AUni> -<AUni ws="qvm-x-akl">*arti</AUni> -<AUni ws="qvm-x-ame">*arti</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.830" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="910e09ab-fd91-4135-8351-ba58db593423" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*arti</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c8a7eb6f-0be1-441e-9f89-1b1139e85e02" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fe16cc2c-3048-4685-b0b9-54379afad5d2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *arti 
\entryTyp root 
\gENG 
\gSPN 
\e *arti 
\c V1 
\mp +FinalI 
\ach arti 
\akh arti 
\acl arti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl arte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl arti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl arte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame arti</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4a78537f-f359-4b72-82de-36deb59daed8" ownerguid="4e791773-94c8-4667-93f8-92dc0100ddfe"> -<ExampleWords> -<AUni ws="en">free time, spare time, time off, time out, leisure time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to time when you don't have to work?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4a794ae2-a6c7-4948-9b33-1037f75310cb" ownerguid="7e9a90f9-1a0d-461a-b7eb-671c47a5affd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="4a7a3cfa-cab6-4a06-941c-e150fb9be6cb" ownerguid="aea88426-5f10-4b18-9364-eee04437c4ee"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="4a7d372e-1f9c-46cb-aceb-4dd390217a4a" ownerguid="75e7846d-d21f-4ea3-94ce-80b724644bb4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="4a858aba-c0f5-4f42-8114-2fff59df247f" ownerguid="167a5bae-f06f-424c-bfcb-ec547a076c8d"> -<ExampleWords> -<AUni ws="en">pasture, field, range</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a place where animals can eat grass?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4a87fd34-c204-4b94-a5cb-2b213d1f5d0a" ownerguid="0bc33ad0-55ec-4236-947b-fb62956441b4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="fbaa9a3f-28f3-4c97-98da-0688c6085bc9" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="8fac2398-c0a9-43c2-a4a2-cebacef1da0a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="4a895d1c-deaf-49b8-a3c9-522fcb804abb" ownerguid="adb34adc-a53b-4ac5-be7a-6322eace9918"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -</rt> -<rt class="CmDomainQ" guid="4a8b9e3c-ac58-4713-88eb-df93a9740eeb" ownerguid="fcc204a3-eae4-46d1-a9dc-08864fde1772"> -<ExampleWords> -<AUni ws="en">less, not as, not so</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that something is less in some quality than another thing?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="4a8c6c2e-7a8f-4dd6-97d3-20a35d7d10e9" ownerguid="aad7c9b0-aff3-4684-86d5-657a20e39288"> -<Abbreviation> -<AUni ws="en">4.5.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.256" /> -<DateModified val="2022-9-23 16:55:8.256" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to honoring someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>87B Honor or Respect in Relation to Status</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Honor</AUni> -</Name> -<Questions> -<objsur guid="ed845aaa-5d93-4fec-a226-2371ceec3a89" t="o" /> -<objsur guid="1eb83b5f-7031-42c2-8f04-0be6fcceef6f" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="bc61bd8d-295b-4965-a183-703d21a56996" t="o" /> -<objsur guid="bd9bb361-3c12-4c70-8098-40b0df9824ce" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="4a8d132c-9da6-4f19-8d82-535290aca114" ownerguid="b0a9a631-e0dc-47d4-a762-e9a627732218"> -<ExampleWords> -<AUni ws="en">submit to authority, obey, law abiding</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to submitting to authority?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4a8d4d97-d0bb-4019-81e5-93b1808a8226"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tazón; tazon</AUni> -<AUni ws="qvm-x-acl">tazón; tazon</AUni> -<AUni ws="qvm-x-akh">tazón; tazon</AUni> -<AUni ws="qvm-x-akl">tazón; tazon</AUni> -<AUni ws="qvm-x-ame">tazón; tazon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tazón</AUni> -<AUni ws="qvm-x-acl">+tazón</AUni> -<AUni ws="qvm-x-akh">+tazón</AUni> -<AUni ws="qvm-x-akl">+tazón</AUni> -<AUni ws="qvm-x-ame">+tazón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.845" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b2c19680-6c99-42f5-bf74-c83b53d722fb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tazón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2d366c70-fd53-4f2e-b8ce-8c681805eac3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="af778721-dfb6-41c3-8af3-371f2d53be26" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tazón 
\entryTyp root 
\gENG large.bowl 
\gSPN tazón 
\e +tazón 
\c N0 
\mp +FinalC 
\ach tazón / _# 
\ach tazon / ~_# 
\akh tazón / _# 
\akh tazon / ~_# 
\acl tazón / _# 
\acl tazon / ~_# 
\akl tazón / _# 
\akl tazon / ~_# 
\ame tazón / _# 
\ame tazon / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4a8ef816-52e5-44bc-bdc7-f9a049bb4769" ownerguid="7f7fc197-5064-43c0-af51-2919fb7355c9"> -<ExampleWords> -<AUni ws="en">no connection, unrelated, unconnected</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words indicate that there is no connection between two things?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4a95b1fe-1c6e-4ec7-a098-e296cf61ca24" ownerguid="6277c1c8-ab85-4faa-af84-2ea34fad2b07"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">engaged.one</AUni> -<AUni ws="es">novio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="03693e5e-0b69-4b09-bc88-6b553434c8aa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4a9c62dc-c97f-4ec2-b301-7b98138367bd" ownerguid="d50f3921-fcea-4ac9-b64a-25bf47dc3292"> -<ExampleWords> -<AUni ws="en">lava, molten lava, volcanic ash, cloud of ash, ash flow, pyroclastic flow, volcanic cinder, volcanic glass (obsidian), pumice, thunder egg</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What do volcanoes produce?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4aa46dcd-be5f-485a-b0fe-fa1f66fd713a" ownerguid="3d73dfa6-dca0-47db-a7e8-bd63f73569a7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="4aa75f34-9e23-469f-b703-4a020671a37c" ownerguid="88269184-d033-454e-b750-559d5f53287c"> -<ExampleWords> -<AUni ws="en">move inwards</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to moving toward the center of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4aaad98c-27b2-4b88-b512-cb4e95280f28" ownerguid="0825b038-b0b2-43ac-935d-d1a061ca70c8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="2888bec4-57d9-48d6-bccd-f0a75920a144" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="4ab04a76-df28-447d-9e91-754c1d9acda6" ownerguid="0f7a8f2c-3e57-4cbd-8a9c-83754f0c6047"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">thunder</AUni> -<AUni ws="es">trueno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="435986d6-f56d-4ff4-8f08-aa8b3c7c9d2b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="4ab41701-27a0-4ca7-a968-ae123151eef3" ownerguid="a6b33028-9972-48eb-8f6c-9b45214d4c8a"> -<Definition> -<AStr ws="en"> -<Run ws="en">JUST for pronouns</Run> -</AStr> -</Definition> -<Gloss> -<AUni ws="en">JUSP</AUni> -<AUni ws="es">JUSP</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="59734ec2-b6a9-4973-bbe0-e18423cefad7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4ab52912-f1f9-40c8-81a7-a32b456b3bd7" ownerguid="8fbed974-7d25-44c3-80cb-7d02e4069007"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The cup <has> milk <in it>.</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(3) In English 'Containership' can be expressed by a clause using the verb with the 'Container' in the subject position, the 'Content' in the object position, and the 'Container' in a preposition phrase marked by 'in'.</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="4aba5c70-42bd-42bb-8bae-a20ad78c350b" ownerguid="eda3d122-46a0-40df-8a40-dd2666bf5ae2"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2SA 22.35 Bronci arcuta wimpitsinäpagpis paymi calpata goman.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="4ac13947-e929-4832-8027-bda2c986bdcd" ownerguid="4f00a4d0-3509-404d-a630-82e6f433928a"> -<Form> -<AUni ws="qvm-x-ach">liwa</AUni> -<AUni ws="qvm-x-acl">liwa</AUni> -<AUni ws="qvm-x-akh">liwa</AUni> -<AUni ws="qvm-x-akl">liwa</AUni> -<AUni ws="qvm-x-ame">liwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4ac15d72-2b7e-4235-aef6-9f3678376437" ownerguid="d7861def-70c1-470f-bca6-8230cbbaa3e9"> -<ExampleWords> -<AUni ws="en">look away, avert your eyes</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to stopping looking at something and look at something else?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4ac16465-8fc0-48ff-8cab-fdf785aa78eb" ownerguid="a02b67e5-8246-4859-9c7c-99e7c9a116e4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="4ac28576-19bf-44d9-a5f6-48acc683af38" ownerguid="cc3f1dc8-a31e-4459-ba13-f82b45df37b5"> -<ExampleWords> -<AUni ws="en">to report, give a report, give an account, broadcast, claim</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to reporting about something that has happened?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="4acb340d-ab6c-4717-a5f4-d95749e9f2f9" ownerguid="daab5de5-b671-4eb0-ae65-34a6df595309"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="66f6c9f9-03fd-48b9-9235-cc03f677019b" t="o" /> -<objsur guid="902911a3-dc2f-4b79-96bf-731985790b72" t="o" /> -<objsur guid="728f8337-6c44-4b32-9f6b-817988a59c53" t="o" /> -</MorphBundles> -</rt> -<rt class="CmSemanticDomain" guid="4acc430b-9c98-4a49-a8b4-15edc0f6d19b" ownerguid="8add7f4d-333b-4b2c-9999-48a14162152b"> -<Abbreviation> -<AUni ws="en">4.3.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.235" /> -<DateModified val="2022-9-23 16:55:8.235" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to being tidy in your habits, such as keeping your belongings neat and organized,.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Tidy</AUni> -</Name> -<Questions> -<objsur guid="49e5360a-3b12-4e8f-98bb-00a677f61e17" t="o" /> -<objsur guid="84d1f467-98cf-49c1-a6c7-fab9f31d0efd" t="o" /> -<objsur guid="04af26bc-7dcb-43bd-987b-e71f78a2ffd5" t="o" /> -<objsur guid="bb033ace-9477-496f-92a6-8ea5b2d191f9" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="6045c6eb-efea-4586-95f8-840d32578d66" t="r" /> -<objsur guid="e6c9fe4c-199e-4934-b622-739a85b0830d" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="4acd75a8-bacb-4fce-9f58-025cc857198d" ownerguid="f4580c19-ba9e-4f71-a46a-6f3c4b19c36c"> -<ExampleWords> -<AUni ws="en">run aground, shipwreck, maroon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a ship hitting the land?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4acdf4b1-d46b-49ed-acda-7169bd214205" ownerguid="314d6c78-0f1a-4454-baac-07ab4c94b271"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="4acfc53d-746e-47f6-840f-02bf6bb1845f" ownerguid="0f301187-4dbb-48c0-95fe-26155414e2b1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="4ad1c2fc-6fc9-421b-88bf-54add3c3681b" ownerguid="31dc3d15-c6f8-4405-a33b-8f3a52f8671a"> -<ExampleWords> -<AUni ws="en">beverage, drink</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to things people drink?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4ad7622e-ae12-45db-91ca-a679667d4a13" ownerguid="43cb3488-711b-4d9d-9d0e-03d0c1f6eb8b"> -<ExampleWords> -<AUni ws="en">hang head, cower in shame, cringe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What do people do to show they feel ashamed?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4ada7597-6dec-4e13-a1f4-e23692afbaca" ownerguid="f0306842-35a9-4b48-82ca-be753b28d92d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">break</AUni> -<AUni ws="es">romper</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="849d2677-46e4-4248-8dd4-b3f515dbcefa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoAffixAllomorph" guid="4adfbe25-78c5-48bb-a25c-a6c05b1417cd" ownerguid="66a1c8dc-e287-4b06-a384-370020e162b3"> -<Form> -<AUni ws="qvm-x-ach">tsican</AUni> -<AUni ws="qvm-x-acl">tsican</AUni> -<AUni ws="qvm-x-akh">tsikan</AUni> -<AUni ws="qvm-x-akl">tsikan</AUni> -<AUni ws="qvm-x-ame">tsikan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4ae06e75-d5ee-4d8b-a334-a1a90e391050" ownerguid="17851b86-f8fb-4850-9b33-c1a9fcb0aec1"> -<ExampleWords> -<AUni ws="en">inhospitable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a bad host?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4ae2f5fe-041b-4f4b-af32-212930a2d101" ownerguid="c6132280-d2aa-46f8-9e94-b087dbda09cb"> -<ExampleWords> -<AUni ws="en">balance (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the ability to balance yourself?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4ae3f90f-5e36-4988-b2d5-c877470dc672"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">co:ma</AUni> -<AUni ws="qvm-x-acl">co:ma</AUni> -<AUni ws="qvm-x-akh">co:ma</AUni> -<AUni ws="qvm-x-akl">co:ma</AUni> -<AUni ws="qvm-x-ame">co:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*coma</AUni> -<AUni ws="qvm-x-acl">*coma</AUni> -<AUni ws="qvm-x-akh">*coma</AUni> -<AUni ws="qvm-x-akl">*coma</AUni> -<AUni ws="qvm-x-ame">*coma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.150" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aa4c1571-41db-490a-ab62-eb648a298ac0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*coma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0a6ddc7a-f8fb-4625-b1c6-b4aff3a08beb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="02a3dfc6-4bac-4230-a40e-1455102143e1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *coma 
\entryTyp root 
\gENG 
\gSPN 
\e +coma 
\c N0 
\ach co:ma 
\akh co:ma 
\acl co:ma 
\akl co:ma 
\ame co:ma 
\i Ishcay versículo cashganta tantyanantsipag juc cömami escribiraycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4ae61c2e-2d02-4882-aa3f-fcc9ccaf9143" ownerguid="ce6d5e60-7cf6-46ab-bd02-453ec7b04f7a"> -<ExampleWords> -<AUni ws="en">build up, encourage, bolster, boost, congratulate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to causing someone to feel good about himself?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4ae74353-d7df-4052-9ea1-1b0e93dd092a" ownerguid="e3015f05-b105-4367-9d50-0e4ddef8ce6c"> -<Form> -<AUni ws="qvm-x-ach">quëna</AUni> -<AUni ws="qvm-x-acl">quëna</AUni> -<AUni ws="qvm-x-akh">këna</AUni> -<AUni ws="qvm-x-akl">këna</AUni> -<AUni ws="qvm-x-ame">kïna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4ae945a2-b525-4176-8332-12f7ac476fbb" ownerguid="ff7e3abd-6810-4128-83c9-701b4925c2fe"> -<ExampleWords> -<AUni ws="en">house fire, forest fire, grass fire, wood fire, oil fire</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to what is being burned?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4ae9ffb9-bb8f-4d24-8873-2be38e3119a6" ownerguid="12300321-6ee6-4f3a-aaee-90d90c7022ab"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="4aedd6d3-8f4b-4986-8d51-b0ace0137bf0" ownerguid="d030f0c7-31a3-47da-be35-46f1eba63ae9"> -<Abbreviation> -<AUni ws="en">3.4.1.1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.133" /> -<DateModified val="2022-9-23 16:55:8.133" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling happy for someone--to feel good because something good happened to someone. The opposite is jealousy and envy.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Happy for</AUni> -</Name> -<Questions> -<objsur guid="06aed952-e8b9-440b-8368-d13638326048" t="o" /> -<objsur guid="5f48e5b8-b088-42f6-b80c-ce542106174b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="4aef9ea8-6535-4a98-8d48-a01acc39a06b" ownerguid="984dc2b7-6fdd-4257-abdc-5873abb7bb70"> -<ExampleWords> -<AUni ws="en">decrease, lower, reduce</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to causing something to become smaller in degree?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4af126a5-9d7a-4377-b86c-b7e51066a434" ownerguid="5edc9272-cf93-4fe7-9d3a-dd28cd4b5126"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="4970fcd5-05f8-4d23-8365-ab046908ffb4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="4af8c46d-f891-4378-830f-4a65fdc9f221" ownerguid="5c6cdea6-6fd5-4cc0-b744-d1a278ce3802"> -<PartOfSpeech> -<objsur guid="85ffb381-0567-4202-8640-53cbaec77e45" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="4af9bd60-4570-41d2-96b2-d9317abe1e20" ownerguid="5a39edae-1ace-4889-b636-1dfd2a1bcc3c"> -<ExampleWords> -<AUni ws="en">root out, uproot, dig out, pull up, weed out, grub up, rake out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to taking something out of the ground?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4afcc531-720a-4f12-ab49-a7e94869ef0b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">a:las</AUni> -<AUni ws="qvm-x-acl">a:las</AUni> -<AUni ws="qvm-x-akh">a:las</AUni> -<AUni ws="qvm-x-akl">a:las</AUni> -<AUni ws="qvm-x-ame">a:las</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+alas</AUni> -<AUni ws="qvm-x-acl">+alas</AUni> -<AUni ws="qvm-x-akh">+alas</AUni> -<AUni ws="qvm-x-akl">+alas</AUni> -<AUni ws="qvm-x-ame">+alas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.697" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9153216e-8576-45d1-8d4d-e38cb2394005" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+alas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d50cb9bb-2be3-4082-9843-697ad730838b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f3ec4a25-59eb-4f41-9abe-8228d50a90fb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +alas 
\entryTyp root 
\gENG wings 
\gSPN alas 
\e +alas 
\c N0 
\mp +FinalC 
\ach a:las 
\akh a:las 
\acl a:las 
\akl a:las 
\ame a:las</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4afd0a59-2ae1-4c10-848c-86e32f7bdea4" ownerguid="b6e45998-9f6a-4b19-9cda-62410a11afa2"> -<ExampleWords> -<AUni ws="en">charmed, bewitched, spellbound, haunted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe someone who has been bewitched?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4afdf343-f240-4cd4-a807-a5d8fafea2bd" ownerguid="5bcf23fe-ca50-43bc-a10d-1184430aa39d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="4afedb64-b6cc-4cd1-bd33-ab8a482be0b4" ownerguid="994d2c17-eae0-4475-9854-e967d565dbcc"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="4affa918-4258-4b12-8241-d04191d05abe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shunta</AUni> -<AUni ws="qvm-x-acl">shunta</AUni> -<AUni ws="qvm-x-akh">shunta</AUni> -<AUni ws="qvm-x-akl">shunta</AUni> -<AUni ws="qvm-x-ame">shunta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shunta</AUni> -<AUni ws="qvm-x-acl">*shunta</AUni> -<AUni ws="qvm-x-akh">*shunta</AUni> -<AUni ws="qvm-x-akl">*shunta</AUni> -<AUni ws="qvm-x-ame">*shunta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.642" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="00de9f0d-e604-42b0-b0a2-8568deff6e1c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shunta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="48cf9176-b1e9-4729-a59c-37e6525fa49b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9e557906-cf40-42e2-9aee-925b95fd7733" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shunta 
\entryTyp root 
\gENG collect 
\gSPN recoger 
\e *shunta 
\c R0 
\ach shunta 
\akh shunta 
\acl shunta 
\akl shunta 
\ame shunta 
\i Num 31.11 Tsaynogpami runacunapa imaycantapis y uywancunatapis shunta shuntarcur apacärergan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="4b043734-2589-46b9-a7a6-d7d33751252a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">apunta</AUni> -<AUni ws="qvm-x-acl">apunta</AUni> -<AUni ws="qvm-x-akh">apunta</AUni> -<AUni ws="qvm-x-akl">apunta</AUni> -<AUni ws="qvm-x-ame">apunta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+apuntar</AUni> -<AUni ws="qvm-x-acl">+apuntar</AUni> -<AUni ws="qvm-x-akh">+apuntar</AUni> -<AUni ws="qvm-x-akl">+apuntar</AUni> -<AUni ws="qvm-x-ame">+apuntar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.810" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4f026d24-babc-4f07-9db7-5fb4262f1989" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+apuntar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f7ed0929-b341-4c6a-8fc4-d5562ad9c08f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7ffd8301-2842-4cc2-a861-878a7b940575" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +apuntar 
\entryTyp root 
\gENG 
\gSPN apuntar 
\e +apuntar 
\c V2 
\ach apunta 
\akh apunta 
\acl apunta 
\akl apunta 
\ame apunta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="4b097861-e8bb-4217-a2f5-c4e782e103ef" ownerguid="0b3285cc-f19a-4117-9709-dd4131f3d3e3"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">MAT 21.30 Tsayshi tsurin kaynoq nerqan: <Ya, papá. Arupäshaykichari.></Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="4b0ad291-9fd7-4653-8cf0-1cc4081b21d0" ownerguid="243d8a57-d5ed-4d7f-bd5e-f2605634f0fc"> -<ExampleWords> -<AUni ws="en">defenseless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe someone who cannot defend himself?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4b0bbf4a-bae7-431a-b85a-c3a0cffe19b4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yca; yca:</AUni> -<AUni ws="qvm-x-acl">yca; yca:</AUni> -<AUni ws="qvm-x-akh">yka; yka:</AUni> -<AUni ws="qvm-x-akl">yka; yka:</AUni> -<AUni ws="qvm-x-ame">yka; yka:</AUni> -</Custom> -<AlternateForms> -<objsur guid="fd15242a-e3ff-45fb-beda-e2ef4bd199ff" t="o" /> -</AlternateForms> -<DateCreated val="2022-9-23 18:26:20.518" /> -<DateModified val="2022-10-19 21:29:34.116" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1bded458-9a0f-4f31-b379-16ee23d40433" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">IMPFV1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4867346d-ecb1-40e9-a091-3bc5d299d8a0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0c80b2fb-9490-4024-803b-d2336c4bba43" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx IMPFV1 
\entryTyp suffix 
\gENG IMPFV1 
\gSPN IMPF 
\e IMPFV1 
\c V1/V1 V2/V2 
\o 060 
\mp +foreshortens 
\mp +underlong 
\ach yca foreshortened 
\ach yca: 
\akh yka foreshortened 
\akh yka: 
\acl yca foreshortened 
\acl yca: 
\akl yka foreshortened 
\akl yka: 
\ame yka foreshortened 
\ame yka: 
\mp +FinalC 
\mp +FinalLength 
\mcc IMPFV1 / ~_ IMPFV1 
\mcc IMPFV1 / ~_ PRMT 
\mcc IMPFV1 / ~_ PSTN</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="4b0dc35a-01b7-4df6-a7ab-d26afc3abebe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rogru</AUni> -<AUni ws="qvm-x-acl">rogru; rogru; rogro</AUni> -<AUni ws="qvm-x-akh">roqru</AUni> -<AUni ws="qvm-x-akl">roqru; roqru; roqro</AUni> -<AUni ws="qvm-x-ame">ruqru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ruqru</AUni> -<AUni ws="qvm-x-acl">*ruqru</AUni> -<AUni ws="qvm-x-akh">*ruqru</AUni> -<AUni ws="qvm-x-akl">*ruqru</AUni> -<AUni ws="qvm-x-ame">*ruqru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.399" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e7e5be59-ae77-4fb7-9963-3cd8a892f252" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ruqru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a213c582-525b-4e13-a47a-50ea084da9bc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="663f4fb6-ccc4-45de-9e04-69f8ae81e8fa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ruqru 
\entryTyp root 
\gENG food 
\gSPN comida 
\e *ruqru 
\c N0 
\ach rogru 
\akh roqru 
\acl rogru / _# 
\acl rogru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl rogro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl roqru / _# 
\akl roqru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl roqro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ruqru</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="4b1260af-731b-4500-be26-439714e8a465" ownerguid="b0adc784-6b3a-4596-aec4-10379a331c18"> -<Form> -<AUni ws="qvm-x-ach">caramëlu</AUni> -<AUni ws="qvm-x-acl">caramëlu; caramëlu; caramëlo</AUni> -<AUni ws="qvm-x-akh">caramëlu</AUni> -<AUni ws="qvm-x-akl">caramëlu; caramëlu; caramëlo</AUni> -<AUni ws="qvm-x-ame">caramëlu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="4b145b3b-da5c-41ce-88d9-4cf3879411b7" ownerguid="48d7bd4b-8a21-4793-ac0c-2738af616d15"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="4b19f8b0-8e89-4229-b05b-b0325eeb3c53" ownerguid="a33fc8bd-1004-451d-a46a-2476025fc95b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="1e3911e8-8b74-44db-965f-c8a247a99185" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">retire</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="254d6a4d-3676-456a-8d48-c0904c9ef660" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="4b1cc6ac-6853-4090-8136-3b7b3e279582" ownerguid="374f8454-403f-40b1-8cc0-b3aa4b65080c"> -<Form> -<AUni ws="qvm-x-ach">unya</AUni> -<AUni ws="qvm-x-acl">unya</AUni> -<AUni ws="qvm-x-akh">unya</AUni> -<AUni ws="qvm-x-akl">unya</AUni> -<AUni ws="qvm-x-ame">unya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="4b1dc97d-14ad-4a46-b132-dc26641e3b94" ownerguid="2b5a4c4a-751b-449b-95ec-9bbb6c9a97d5"> -<Form> -<AUni ws="qvm-x-ach">siuya</AUni> -<AUni ws="qvm-x-acl">siuya</AUni> -<AUni ws="qvm-x-akh">siwya</AUni> -<AUni ws="qvm-x-akl">siwya</AUni> -<AUni ws="qvm-x-ame">siwya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="4b1e9d5e-4e91-4170-a283-3f520744657b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pelya</AUni> -<AUni ws="qvm-x-acl">pelya</AUni> -<AUni ws="qvm-x-akh">pelya</AUni> -<AUni ws="qvm-x-akl">pelya</AUni> -<AUni ws="qvm-x-ame">pelya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pelea</AUni> -<AUni ws="qvm-x-acl">+pelea</AUni> -<AUni ws="qvm-x-akh">+pelea</AUni> -<AUni ws="qvm-x-akl">+pelea</AUni> -<AUni ws="qvm-x-ame">+pelea</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.780" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="45330144-efd7-4cc6-a8d8-015781210237" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pelea</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b8e47f02-8f30-4064-b742-0791b681a28e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2665802a-a963-427a-bbf4-be10878c8739" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pelea 
\entryTyp root 
\gENG fight 
\gSPN pelea 
\e +pelea 
\c N0 
\mp +assimilated 
\ach pelya 
\akh pelya 
\acl pelya 
\akl pelya 
\ame pelya 
\mcc +pelea / ~_ BEC</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="4b1fe9c3-961e-4074-9ea1-ce5cb4dcd415"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">siuya</AUni> -<AUni ws="qvm-x-acl">siuya</AUni> -<AUni ws="qvm-x-akh">siwya</AUni> -<AUni ws="qvm-x-akl">siwya</AUni> -<AUni ws="qvm-x-ame">siwya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shiwya</AUni> -<AUni ws="qvm-x-acl">*shiwya</AUni> -<AUni ws="qvm-x-akh">*shiwya</AUni> -<AUni ws="qvm-x-akl">*shiwya</AUni> -<AUni ws="qvm-x-ame">*shiwya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.612" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c6078987-9799-48d2-b883-e3b02bdf7c77" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shiwya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2b811885-9a34-40b5-b8a4-9e31883e0050" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a862f0ce-d552-4b4a-bcb9-7db8d1b7a3f5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shiwya 
\entryTyp root 
\gENG 
\gSPN rápido 
\e *shiwya 
\c V1 
\ach siuya 
\akh siwya 
\acl siuya 
\akl siwya 
\ame siwya</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="4b20993f-e784-4549-be57-d4e73ee89f97" ownerguid="87db1257-496d-49ec-abf5-2ef8c71cb210"> -<Form> -<AUni ws="qvm-x-ach">yacu</AUni> -<AUni ws="qvm-x-acl">yacu; yacu; yaco</AUni> -<AUni ws="qvm-x-akh">yaku</AUni> -<AUni ws="qvm-x-akl">yaku; yaku; yako</AUni> -<AUni ws="qvm-x-ame">yaku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="4b23658b-471f-4b76-9438-8d46f96107d0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">autorida:</AUni> -<AUni ws="qvm-x-acl">autorida:</AUni> -<AUni ws="qvm-x-akh">autorida:</AUni> -<AUni ws="qvm-x-akl">autorida:</AUni> -<AUni ws="qvm-x-ame">autorida:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+autoridad</AUni> -<AUni ws="qvm-x-acl">+autoridad</AUni> -<AUni ws="qvm-x-akh">+autoridad</AUni> -<AUni ws="qvm-x-akl">+autoridad</AUni> -<AUni ws="qvm-x-ame">+autoridad</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.880" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ea7c6a99-dc9d-44b2-ba38-9743322907f4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+autoridad</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8aef72a4-e3c8-4cbd-b22f-996db1c2f2a4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1fd69fde-6415-4406-a6dc-e091e8039b57" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +autoridad 
\entryTyp root 
\gENG authority 
\gSPN autoridad 
\e +autoridad 
\c N0 
\mp NeverForeshortened 
\ach autorida: 
\akh autorida: 
\acl autorida: 
\akl autorida: 
\ame autorida: 
\mp +FinalC 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="4b2815e4-adec-488b-996b-45df6bdadc33"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">arca</AUni> -<AUni ws="qvm-x-acl">arca</AUni> -<AUni ws="qvm-x-akh">arca</AUni> -<AUni ws="qvm-x-akl">arca</AUni> -<AUni ws="qvm-x-ame">arca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+arca</AUni> -<AUni ws="qvm-x-acl">+arca</AUni> -<AUni ws="qvm-x-akh">+arca</AUni> -<AUni ws="qvm-x-akl">+arca</AUni> -<AUni ws="qvm-x-ame">+arca</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.820" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e470b421-b019-46c8-9357-c374bbff7acb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+arca</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a36cc977-4a0d-4a5a-a8a2-b23ff99846d2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b3450652-9efe-4623-a462-c745c85358f6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +arca 
\entryTyp root 
\gENG 
\gSPN 
\e +arca 
\c N0 
\ach arca 
\akh arca 
\acl arca 
\akl arca 
\ame arca</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="4b28d640-65d8-44c0-88b4-1bd3f0b56b63" ownerguid="c45e315b-de04-4199-88ac-9a4ac3a59cd7"> -<Form> -<AUni ws="qvm-x-ach">shagrara; shagrarä</AUni> -<AUni ws="qvm-x-acl">shagrara; shagrarä</AUni> -<AUni ws="qvm-x-akh">shaqrara; shaqrarä</AUni> -<AUni ws="qvm-x-akl">shaqrara; shaqrarä</AUni> -<AUni ws="qvm-x-ame">shaqrara; shaqrarä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4b2a8566-717b-4ff9-9bd8-30f9682bbbed" ownerguid="7edf9e7c-3e32-4307-b5e3-b0d704df7803"> -<ExampleWords> -<AUni ws="en">fiber, thread, yarn, string, cord, rope</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What types of thread are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4b2b120d-ff65-4e92-bf12-0794303277a7" ownerguid="c60cf6a1-7868-4536-ac73-387bfa26e04b"> -<ExampleWords> -<AUni ws="en">put down, suppress</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What do the authorities do to stop a rebellion?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4b2b87e0-9953-496f-83c8-b24a63f5eb52" ownerguid="4a5c8fdb-c8a0-49d2-a0d6-342428682d65"> -<ExampleWords> -<AUni ws="en">albino, bowlegged, flatfooted, humpbacked, withered arm, shrunken arm, harelip, cleft palate, cerebral palsy, Downs syndrome, club-footed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What kinds of abnormalities are there?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4b2c725c-3642-46d5-9098-77ad8dc47222"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jichca</AUni> -<AUni ws="qvm-x-acl">jichca</AUni> -<AUni ws="qvm-x-akh">jichka</AUni> -<AUni ws="qvm-x-akl">jichka</AUni> -<AUni ws="qvm-x-ame">hichka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hitrka</AUni> -<AUni ws="qvm-x-acl">*hitrka</AUni> -<AUni ws="qvm-x-akh">*hitrka</AUni> -<AUni ws="qvm-x-akl">*hitrka</AUni> -<AUni ws="qvm-x-ame">*hitrka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.731" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d2b6626c-163c-41c9-966d-0f0a1e83f064" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hitrka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="155efa24-c269-4114-972b-3e5ca9663df1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1df304e9-c98a-4c80-b0bd-d122eae46b56" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hitrka 
\entryTyp root 
\gENG scrape 
\gSPN raspar 
\e *hitrka 
\c V2 
\ach jichca 
\akh jichka 
\acl jichca 
\akl jichka 
\ame hichka</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4b2ddba8-6be3-45d7-b64b-87cf72516943" ownerguid="e0a8e1d9-c43e-4092-a8dc-476a3417924e"> -<ExampleWords> -<AUni ws="en">encourage, boost someone's morale, raise someone's confidence</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to causing someone to feel confident?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4b2fab78-9e82-4be0-ae1e-e183a5c844d4" ownerguid="052bc995-c41e-4b2c-bed1-49b921bdce25"> -<Form> -<AUni ws="qvm-x-ach">tauri</AUni> -<AUni ws="qvm-x-acl">tauri; tauri; taure</AUni> -<AUni ws="qvm-x-akh">tawri</AUni> -<AUni ws="qvm-x-akl">tawri; tawri; tawre</AUni> -<AUni ws="qvm-x-ame">tawri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="4b30e455-b39a-445a-aab5-834d70d0186a" ownerguid="c4da8f3b-b5a7-4088-8666-cf1edc8b742a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="4b36e29e-c7e0-4b62-8b9f-1564aff4be75"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yanga</AUni> -<AUni ws="qvm-x-acl">yanga</AUni> -<AUni ws="qvm-x-akh">yanqa</AUni> -<AUni ws="qvm-x-akl">yanqa</AUni> -<AUni ws="qvm-x-ame">yanqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yanqa</AUni> -<AUni ws="qvm-x-acl">*yanqa</AUni> -<AUni ws="qvm-x-akh">*yanqa</AUni> -<AUni ws="qvm-x-akl">*yanqa</AUni> -<AUni ws="qvm-x-ame">*yanqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.739" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ee99b043-6317-44be-a084-da318d970d9f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yanqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2c7bd9de-cf7b-4b60-9521-e237cffb1c6e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1898939c-7b57-48f4-8319-0e1025c4e534" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yanqa 
\entryTyp root 
\gENG lightly 
\gSPN ligeramente 
\e *yanqa 
\c N0 
\ach yanga 
\akh yanqa 
\acl yanga 
\akl yanqa 
\ame yanqa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4b3829c8-84e0-42c3-aea9-a5cc0fd00e40" ownerguid="751bd45c-abfb-443f-ac55-aad3472c20de"> -<ExampleWords> -<AUni ws="en">unintelligible, indistinct, garbled</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe speech that a person cannot hear well enough to understand?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4b38aa1b-943d-480c-8b1f-7ee9ccba62a8" ownerguid="cf337287-c9fa-43d2-93c4-284f45e262c0"> -<ExampleWords> -<AUni ws="en">terminal, fatal, incurable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a disease that kills people?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="4b3a9b5a-df7d-4ec2-9576-2c07fe396021" ownerguid="57225f57-ba51-45d7-b6d2-b22052877ea4"> -<Abbreviation> -<AUni ws="en">4.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.214" /> -<DateModified val="2022-9-23 16:55:8.214" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to dancing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15F' Dance</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Dance</AUni> -</Name> -<OcmCodes> -<Uni>535 Dancing</Uni> -</OcmCodes> -<Questions> -<objsur guid="3af96c90-205d-43ee-9ffa-955509d7b27f" t="o" /> -<objsur guid="f6a5758c-6688-4db5-bdfb-bf6dde3ade7e" t="o" /> -<objsur guid="61a2ca04-41b7-4df3-8dbd-a60c76202560" t="o" /> -<objsur guid="8ead3015-5bd6-4ad5-a578-c189b45cb29d" t="o" /> -<objsur guid="fbfb457e-1d1c-4b4e-883d-a624af9ba016" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="4b3b5ca1-8a0f-4cae-baf5-460564daad5d" ownerguid="a09630c3-4e3b-4e1b-b245-8d26f0b888ad"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 10.8 Yachag cashpayqui disponishgayquita y parlashgayquita wiyar ima cushishgarag mandäshishogniquicuna y sirvishogniquicuna caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="4b40ca7a-6a98-4281-bcf7-1f1bfa5d27e3" ownerguid="d3761502-9118-4066-b51b-5bbd23c21020"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="60e00816-18f3-4bc6-80b1-6479acdace32" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">make.poor</AUni> -<AUni ws="es">hacer.pobre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="763add5c-d336-40c4-908b-c3574f9cbc62" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="4b41874a-4df3-475b-9be9-b0dd5e7e7db2" ownerguid="faf39e77-d6f3-458b-b679-1151969a0a0a"> -<Form> -<AUni ws="qvm-x-ach">tenienti; teniente</AUni> -<AUni ws="qvm-x-acl">tenienti; tenienti; teniente</AUni> -<AUni ws="qvm-x-akh">tenienti; teniente</AUni> -<AUni ws="qvm-x-akl">tenienti; tenienti; teniente</AUni> -<AUni ws="qvm-x-ame">tenienti; teniente</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="4b462f2f-0d40-4bbf-ba4d-df13fcc5a1e0" ownerguid="110404f2-fab5-4550-847c-c4c0e6f78f70"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="4b49ef3c-36ad-42a6-939b-48887aa82800" ownerguid="91068787-99b8-4670-8742-22bb43df37c6"> -<Form> -<AUni ws="qvm-x-ach">cruzada</AUni> -<AUni ws="qvm-x-acl">cruzada</AUni> -<AUni ws="qvm-x-akh">cruzada</AUni> -<AUni ws="qvm-x-akl">cruzada</AUni> -<AUni ws="qvm-x-ame">cruzada</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="4b4b4164-1b76-4207-9d5d-694490be5a09"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">achapsa</AUni> -<AUni ws="qvm-x-acl">achapsa</AUni> -<AUni ws="qvm-x-akh">achapsa</AUni> -<AUni ws="qvm-x-akl">achapsa</AUni> -<AUni ws="qvm-x-ame">achapsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*atrapsa</AUni> -<AUni ws="qvm-x-acl">*atrapsa</AUni> -<AUni ws="qvm-x-akh">*atrapsa</AUni> -<AUni ws="qvm-x-akl">*atrapsa</AUni> -<AUni ws="qvm-x-ame">*atrapsa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.870" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4b75736c-fe73-48d3-a65e-ed76a5b45e33" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*atrapsa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bf4bf26f-aece-4ca6-aaf3-81cef0f81f6c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b6c63667-80e0-4aa5-90b3-8c6f27ab5c23" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *atrapsa 
\entryTyp root 
\gENG green.twig 
\gSPN rama 
\e *atrapsa 
\c N0 
\ach achapsa 
\akh achapsa 
\acl achapsa 
\akl achapsa 
\ame achapsa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="4b4c8d58-1f10-4785-9ded-c5e863c77836" ownerguid="dfc81541-5e5c-4762-8866-df778aa99da6"> -<Form> -<AUni ws="qvm-x-ach">miwa</AUni> -<AUni ws="qvm-x-acl">miwa</AUni> -<AUni ws="qvm-x-akh">miwa</AUni> -<AUni ws="qvm-x-akl">miwa</AUni> -<AUni ws="qvm-x-ame">miwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4b4e04e8-85f2-45a1-8d5b-88de70d1c9d6" ownerguid="bc8d0ad4-6ebf-4fa0-bc7e-60e8ec9c43db"> -<ExampleWords> -<AUni ws="en">rub (your eyes), cover (your eyes)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What do people do to their eyes?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4b51fdd2-a72e-44b3-ac9d-b875b44d2982" ownerguid="2bac24a3-b9c6-42ea-befd-2faf99940fb0"> -<Form> -<AUni ws="qvm-x-ach">mantsari</AUni> -<AUni ws="qvm-x-acl">mantsari; mantsare</AUni> -<AUni ws="qvm-x-akh">mantsari</AUni> -<AUni ws="qvm-x-akl">mantsari; mantsare</AUni> -<AUni ws="qvm-x-ame">mantsari</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4b534532-3de4-40a7-859c-a959ced30ab8" ownerguid="7c6ba6e5-d81e-4a50-a111-c946a0793378"> -<ExampleWords> -<AUni ws="en">disadvantage, handicap, drawback, liability, limitations</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a disadvantage?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4b5692cc-9faa-4493-b521-758406fabdfa" ownerguid="6e7d10f8-6da5-4a8a-a06d-952511194105"> -<ExampleWords> -<AUni ws="en">how light, be (two pounds) (too) light</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words indicate how light something is?</AUni> -</Question> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="4b57b933-e619-41d1-b731-b85722e2a8ff" ownerguid="fbe87bb5-f2d1-4e5b-9b9f-5151c88ed3ec" /> -<rt class="MoStemMsa" guid="4b5928af-ae4b-4bc5-a5bc-dd52d3b6218a" ownerguid="9281bb5e-a0f7-44df-b4a7-1a10c820d35a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="4b5980ff-5ac3-46cc-8cb7-ddda5090cdf8" ownerguid="57f1ffbf-6812-4906-83f7-4e3cc61ebdb6"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="4b5bd2d8-b164-471a-8650-c6631e0236bf" ownerguid="56bd561e-4863-4c8c-a4d0-4b560f7c9b3c"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="4b5e39d6-bf93-42e8-9c91-831099e64244" ownerguid="65c68427-2e20-42b2-8f49-623055ea9246"> -<ExampleWords> -<AUni ws="en">pound, hit, smack, club</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used to describe the actions done with these tools?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4b60bbde-e9b6-4457-bde6-3321a6b2793b" ownerguid="50db27b5-89eb-4ffb-af82-566f51c8ec0b"> -<ExampleWords> -<AUni ws="en">way of life, lifestyle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to the kind of life a person lives?</AUni> -</Question> -</rt> -<rt class="Segment" guid="4b62a502-d4b3-4b79-93a5-480a818dba7c" ownerguid="9dd6be50-49c0-4282-af86-812450bf6720"> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="4b659bd4-9256-4c9a-83ae-36549879c809" ownerguid="cfa72fa4-c17c-4c62-80f5-b9b347e94ba1"> -<Form> -<AUni ws="qvm-x-ach">cansari</AUni> -<AUni ws="qvm-x-acl">cansari; cansari; cansare</AUni> -<AUni ws="qvm-x-akh">kansari</AUni> -<AUni ws="qvm-x-akl">kansari; kansari; kansare</AUni> -<AUni ws="qvm-x-ame">kansari</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="4b669bed-ba46-41cc-bcba-c2ef8e129c85" ownerguid="1ca26512-75f6-4a7a-a7cc-07d08aa799d9"> -<Abbreviation> -<AUni ws="en">4.8.4.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.286" /> -<DateModified val="2022-9-23 16:55:8.286" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to asking for forgiveness.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Request forgiveness</AUni> -</Name> -<Questions> -<objsur guid="8ab35add-6b63-42a6-9bf6-11bda3e729b5" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="4b66d075-8f64-4be3-96f1-106afe03d3bc" ownerguid="d1aa6dca-6e86-4575-a555-86fd20218c4f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cushi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cushi; cushe</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kushi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kushi; kushe</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kushi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f2a54f64-3831-4455-80f4-5f44272661e5" t="r" /> -</Morph> -<Msa> -<objsur guid="53712600-404b-40c0-9652-040c45c61b60" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="4b6999a0-f9fb-48c6-a814-3f793ece1269" ownerguid="b0acbed4-b979-4f33-8893-e4e67a732a7f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">outside</AUni> -<AUni ws="es">afuera</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a8c59c70-4b0e-4b1f-a7e0-b144ecc2698c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="4b70d193-a95c-4010-8b78-7bd022dd12c1" ownerguid="9613303e-9302-4793-9c06-cc44cff4b0ae"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="4b715269-a246-4604-b079-9b61322d7ce8" ownerguid="0a920e88-dd41-41cc-839c-0b44aa1d33b2"> -<Form> -<AUni ws="qvm-x-ach">edä</AUni> -<AUni ws="qvm-x-acl">edä</AUni> -<AUni ws="qvm-x-akh">edä</AUni> -<AUni ws="qvm-x-akl">edä</AUni> -<AUni ws="qvm-x-ame">edä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="4b71d35c-6ea9-453a-bc3d-ecf95bc5adfd" ownerguid="9da5588e-626a-4347-868d-e378863f591d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="4b75736c-fe73-48d3-a65e-ed76a5b45e33" ownerguid="4b4b4164-1b76-4207-9d5d-694490be5a09"> -<Form> -<AUni ws="qvm-x-ach">achapsa</AUni> -<AUni ws="qvm-x-acl">achapsa</AUni> -<AUni ws="qvm-x-akh">achapsa</AUni> -<AUni ws="qvm-x-akl">achapsa</AUni> -<AUni ws="qvm-x-ame">achapsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="4b75a586-cacf-4ab4-bff8-6043f09a003c" ownerguid="bf096b02-7f80-4616-ab93-b2f0f3e0d65a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="686d01b2-c268-4d73-a164-1d1f4b13a0fd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4b773d38-9cf8-43c6-a67d-6863817e7b85" ownerguid="0b7b9a1c-588b-475a-ac14-00f0999cbfe9"> -<ExampleWords> -<AUni ws="en">become peaceful, pacify, pacification</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to becoming peaceful?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4b7bc1c2-f730-4341-93eb-8c9227dff5f1" ownerguid="ddab8953-1941-4143-a782-de0e4879e4c6"> -<Form> -<AUni ws="qvm-x-ach">cuchpa</AUni> -<AUni ws="qvm-x-acl">cuchpa</AUni> -<AUni ws="qvm-x-akh">kuchpa</AUni> -<AUni ws="qvm-x-akl">kuchpa</AUni> -<AUni ws="qvm-x-ame">kuchpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="4b820444-925e-435f-9d44-e5d5fd3846f6"> -<Analyses> -<objsur guid="6f7aed1c-c4a2-4815-aec1-707d6d85def1" t="o" /> -</Analyses> -<Checksum val="823142000" /> -<Form> -<AUni ws="qvm-x-akh">ari</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="4b82a47e-6a4c-43b6-8897-8a44bf15a9c9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">macmacya; macmacya:</AUni> -<AUni ws="qvm-x-acl">macmacya; macmacya:</AUni> -<AUni ws="qvm-x-akh">makmakya; makmakya:</AUni> -<AUni ws="qvm-x-akl">makmakya; makmakya:</AUni> -<AUni ws="qvm-x-ame">makmakya; makmakya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*makmakya:</AUni> -<AUni ws="qvm-x-acl">*makmakya:</AUni> -<AUni ws="qvm-x-akh">*makmakya:</AUni> -<AUni ws="qvm-x-akl">*makmakya:</AUni> -<AUni ws="qvm-x-ame">*makmakya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.265" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="743f2cdb-d20e-4149-b225-f9b0dc217978" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*makmakya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2295c217-db8e-4b3e-a5b8-45f105cfe599" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dea1804a-9b6f-43b6-9fc7-6879d04aaa7d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *makmakya: 
\entryTyp root 
\gENG 
\gSPN patalear 
\e *makmakya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach macmacya foreshortened 
\ach macmacya: 
\akh makmakya foreshortened 
\akh makmakya: 
\acl macmacya foreshortened 
\acl macmacya: 
\akl makmakya foreshortened 
\akl makmakya: 
\ame makmakya foreshortened 
\ame makmakya:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="4b82eb32-44fd-4c13-84ba-e20b1f3c811f" ownerguid="e64a3b56-3e9f-4574-9550-a68725e5a9ed"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="42409077-f232-4859-93cf-e1f95979450d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4b853e85-99c0-41ef-a962-1710d21a8b2c" ownerguid="fd33670e-ef16-4566-a62e-aa077e58407b"> -<ExampleWords> -<AUni ws="en">ring, toll, chime, buzz, peal, tinkle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(23) What words refer to the sound of a bell?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4b858c9d-5fb3-4fa4-817e-06452c516d5e" ownerguid="ee8fef09-1ba5-499f-a736-f2f0081b6cce"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="4b8684d7-7bad-4f06-bf31-fa13faa7b3c1" ownerguid="0f70c0b3-79b7-4a5a-b1b4-8fb1c2bd1b41"> -<Form> -<AUni ws="qvm-x-ach">lausa</AUni> -<AUni ws="qvm-x-acl">lausa</AUni> -<AUni ws="qvm-x-akh">lawsa</AUni> -<AUni ws="qvm-x-akl">lawsa</AUni> -<AUni ws="qvm-x-ame">lawsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="4b86cfe6-4ae3-4470-9ac2-8ea2b1dd0183" ownerguid="98dc4bb9-47a5-4f61-9a89-e7a1b5d0f0ba"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mother</AUni> -<AUni ws="es">madre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b1c78f49-d270-409a-b94e-969f2a47eeac" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="4b87ddc0-52eb-450d-94bc-d539acf80b16" ownerguid="0b6b305f-f2ef-41f1-aabd-07862c3f4da0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">indeed</AUni> -<AUni ws="es">-</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1e3b026b-de35-45bd-9058-d8c6d10ec2e2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4b893346-6d4e-4e45-9b92-6669d2ae39ba" ownerguid="bfeba2a4-4479-49e9-838c-3baa2ad0fcae"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Mushrooms are not <classified with> the plants.; I would not <classify> this fossil <as> a dinosaur.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">classify (with, as), classification, class, assign to a class, categorize, grade, group, sort</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to assigning something to a class?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4b8aa45e-886e-4cec-b678-abae3ab5ff27" ownerguid="18232240-b33d-426a-a36c-13158a0a6b58"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="4b8cd3d8-43d2-43c2-a138-4a550a87afbb" ownerguid="112c0dfc-77da-4998-9fcb-6ded490bfd26"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rain</AUni> -<AUni ws="es">llover</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="69608420-f0bb-4ffc-8b28-66f8c4af8032" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4b900279-584a-459f-90a2-8602406a197c" ownerguid="8a81b9bc-9c66-4d57-a2d1-2e592604c4b1"> -<ExampleWords> -<AUni ws="en">fuller, fullest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to being fuller than another thing?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4b905f18-1e44-4f10-bf07-a95a94c43d75" ownerguid="d5cb678c-7676-4c5f-9cd7-64cc57170b86"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">desordenar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="db7b23af-3f58-489d-b243-1a3dae4d2449" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="4b91da27-e4ec-4709-8fa6-8c838a8b7fe1" ownerguid="6b55612c-fe96-41c9-ad35-80257cac4ab2"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1SA 9.23 Jamaycäriptinnami yanucogta Samuel caynog nergan: <<Alinnin cag prësata yanunayquipag camaripashgäta apamuy.>></Run> -</AStr> -</Example> -</rt> -<rt class="WfiWordform" guid="4b97aa7c-9d02-4c5a-b322-3ea69df23db5"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">the</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="4b9a43a8-dea6-4b98-a283-e5b9722f45a3" ownerguid="14b9d6bc-7b49-49ec-b694-87f5c05a08ea"> -<Form> -<AUni ws="qvm-x-ach">cani</AUni> -<AUni ws="qvm-x-acl">cani; cane</AUni> -<AUni ws="qvm-x-akh">kani</AUni> -<AUni ws="qvm-x-akl">kani; kane</AUni> -<AUni ws="qvm-x-ame">kani</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="4b9e0d72-5558-4b2e-bae1-6d46f54cb563" ownerguid="a77fde5f-bed8-4e31-9349-742366b09b9d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">five</AUni> -<AUni ws="es">cinco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bfa339d1-e8b8-4dc3-8ea4-6ffe346e4a5b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="4ba0260a-61a9-4eee-9c38-38f94be0f7b8" ownerguid="9a68d3be-cc57-4200-8a0e-b1528c8830dd"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="4ba130a7-5c1f-40ca-90f1-18b8cc0c3ff4" ownerguid="755a7462-1d87-48b0-939c-08be5b5ea002"> -<ExampleWords> -<AUni ws="en">extra (adj), spare, superfluous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that is extra?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4ba1cb76-f683-42bd-80d8-5997db4824f8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">munta</AUni> -<AUni ws="qvm-x-acl">munta</AUni> -<AUni ws="qvm-x-akh">munta</AUni> -<AUni ws="qvm-x-akl">munta</AUni> -<AUni ws="qvm-x-ame">munta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+montar</AUni> -<AUni ws="qvm-x-acl">+montar</AUni> -<AUni ws="qvm-x-akh">+montar</AUni> -<AUni ws="qvm-x-akl">+montar</AUni> -<AUni ws="qvm-x-ame">+montar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.477" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1b765683-0974-4993-81c2-ba9dfaa48934" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+montar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b24c4d73-7d0f-4475-a4b5-ead6687cf321" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="47782853-9567-45bd-8486-e80927279f44" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +montar 
\entryTyp root 
\gENG mount 
\gSPN montar 
\e +montar 
\c V2 
\ach munta 
\akh munta 
\acl munta 
\akl munta 
\ame munta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="4ba2b5d4-9029-49f5-830b-7cc384d5b68b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gaushu</AUni> -<AUni ws="qvm-x-acl">gaushu; gausho</AUni> -<AUni ws="qvm-x-akh">qawshu</AUni> -<AUni ws="qvm-x-akl">qawshu; qawsho</AUni> -<AUni ws="qvm-x-ame">qawshu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qawshu.v</AUni> -<AUni ws="qvm-x-acl">*qawshu.v</AUni> -<AUni ws="qvm-x-akh">*qawshu.v</AUni> -<AUni ws="qvm-x-akl">*qawshu.v</AUni> -<AUni ws="qvm-x-ame">*qawshu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.163" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c9a73f59-9e4a-44cb-957a-78232cc4eda7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qawshu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="da2abd01-01f7-4eaf-adac-7ad84be99862" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9e2739cf-4848-4c72-93f4-4bfc68aab8a4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qawshu.v 
\entryTyp root 
\gENG 
\gSPN 
\e *qawshu.v 
\c V1 
\ach gaushu 
\akh qawshu 
\acl gaushu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gausho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qawshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qawsho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qawshu 
\i PSA 37.2 Lulu guewata luquiptintsi gaushucar ushacashgannogmi paycunaga manaragpis aycagta ushacanga.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4ba2cc80-6808-4691-9fb6-539b26460c7d" ownerguid="b6b73d41-e23f-4f22-b01e-7e75f4115fce"> -<ExampleWords> -<AUni ws="en">purpose, goal, aim (n), design (n), desire (n), destination, end, function, idea, intent, intention, object, objective, plan, the point, proposal, reason, target, use (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the purpose of what you are doing?</AUni> -</Question> -</rt> -<rt class="WfiGloss" guid="4ba3e1c3-5415-419c-9a91-8b5c9e96bf7a" ownerguid="86fdf532-60dc-435a-9409-bf988114cdcf"> -<Form> -<AUni ws="en">ten</AUni> -<AUni ws="es">diez</AUni> -</Form> -</rt> -<rt class="LexEntry" guid="4ba3ec62-cf2f-4198-a08e-4f4ed4978c28"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">baja:da</AUni> -<AUni ws="qvm-x-acl">baja:da</AUni> -<AUni ws="qvm-x-akh">baja:da</AUni> -<AUni ws="qvm-x-akl">baja:da</AUni> -<AUni ws="qvm-x-ame">baja:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bajada</AUni> -<AUni ws="qvm-x-acl">+bajada</AUni> -<AUni ws="qvm-x-akh">+bajada</AUni> -<AUni ws="qvm-x-akl">+bajada</AUni> -<AUni ws="qvm-x-ame">+bajada</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.931" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="94c2f494-8a6e-4418-a96b-f80635cd0b31" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bajada</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0e6b10a9-0e77-4ae2-a5f3-022d8a2b2dc7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="823cc9e9-e275-495f-b1a7-d7cd9395a144" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bajada 
\entryTyp root 
\gENG 
\gSPN 
\e +bajada 
\c N0 
\ach baja:da 
\akh baja:da 
\acl baja:da 
\akl baja:da 
\ame baja:da</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="4ba46aa1-6411-4444-8d1b-99b98b352011"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">geniu; genio</AUni> -<AUni ws="qvm-x-acl">geniu; geniu; genio</AUni> -<AUni ws="qvm-x-akh">geniu; genio</AUni> -<AUni ws="qvm-x-akl">geniu; geniu; genio</AUni> -<AUni ws="qvm-x-ame">geniu; genio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+genio</AUni> -<AUni ws="qvm-x-acl">+genio</AUni> -<AUni ws="qvm-x-akh">+genio</AUni> -<AUni ws="qvm-x-akl">+genio</AUni> -<AUni ws="qvm-x-ame">+genio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.609" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e0a988f8-c276-42fc-9db2-7b1837b15a35" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+genio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d129eba4-bd60-49d5-b69c-42ccce4296af" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="033b5fcf-a936-4bad-8f07-9f3296a86cb0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +genio 
\entryTyp root 
\gENG character 
\gSPN carácter 
\e +genio 
\c N0 
\ach geniu / ~_# 
\ach genio / _# 
\akh geniu / ~_# 
\akh genio / _# 
\acl geniu / ~_# 
\acl geniu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl genio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl geniu / ~_# 
\akl geniu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl genio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame geniu / ~_# 
\ame genio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="4ba9c564-6788-4196-ab2d-67fa3722b703" ownerguid="c4da8f3b-b5a7-4088-8666-cf1edc8b742a"> -<Form> -<AUni ws="qvm-x-ach">diyawarda</AUni> -<AUni ws="qvm-x-acl">diyawarda</AUni> -<AUni ws="qvm-x-akh">diyawarda</AUni> -<AUni ws="qvm-x-akl">diyawarda</AUni> -<AUni ws="qvm-x-ame">diyawarda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="4bad4a06-9995-4edf-a39a-d6db597356a6" ownerguid="871819c6-e5de-47fa-ac8d-a42edf98fb2f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="4bb98342-bd92-41e4-8d2d-7944d22f6049" ownerguid="d3cf7b43-a9fb-42db-b04b-cab625212f51"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="5c35a610-8961-483d-b6e2-5c0ba657bc77" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">turkey</AUni> -<AUni ws="es">pavo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="807e481f-40a1-4083-b257-2a6a22462ad7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="4bbbbd64-d261-47d5-a824-e69b7efa27c3" ownerguid="93c64606-44dc-4e99-8289-97b6c77a0fed"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sue</AUni> -<AUni ws="es">demandar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a8c19c98-c11c-4e6f-aa2e-25c727bfd123" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="4bbd0f6b-c6e9-43dc-94b0-b547b9beaa36"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gueshta</AUni> -<AUni ws="qvm-x-acl">gueshta</AUni> -<AUni ws="qvm-x-akh">qeshta</AUni> -<AUni ws="qvm-x-akl">qeshta</AUni> -<AUni ws="qvm-x-ame">qishta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qishta.n</AUni> -<AUni ws="qvm-x-acl">*qishta.n</AUni> -<AUni ws="qvm-x-akh">*qishta.n</AUni> -<AUni ws="qvm-x-akl">*qishta.n</AUni> -<AUni ws="qvm-x-ame">*qishta.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.207" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3908126f-b434-4d6a-b9aa-feea60bf060b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qishta.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="14c3b818-ac64-4f6b-b84e-0957819f0740" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="157cbc78-f1b6-4fe8-815a-8269ab6fc687" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qishta.n 
\entryTyp root 
\gENG cushion 
\gSPN cojfn 
\e *qishta.n 
\c N0 
\ach gueshta 
\akh qeshta 
\acl gueshta 
\akl qeshta 
\ame qishta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4bbdccf8-7612-4599-9bc6-42722940ca76" ownerguid="01441207-4935-49a5-a192-16d949f5606c"> -<ExampleWords> -<AUni ws="en">winner, champion, loser, first place winner, second place, runner up, second runner up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What are the winners and losers called?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4bc8f0a5-d18d-4bbc-86c5-43bc0d6e69c0" ownerguid="12d752d5-53a9-46f6-9e81-3153401cc760"> -<ExampleWords> -<AUni ws="en">plan a time, set a date, schedule something, time something</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to planning the time of an event?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4bc98110-088d-476e-9a8c-23d0885d34ad" ownerguid="2d0b3058-d8bb-4110-a54a-e507b0d3a0e4"> -<ExampleWords> -<AUni ws="en">pound, race, rapid heart beat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the heart beating quickly?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4bc98d9c-6756-43bf-a9bc-2e98e22283bb" ownerguid="591fd489-36e6-4ffd-a976-58876d851829"> -<ExampleWords> -<AUni ws="en">blow your nose, pick your nose, wipe your nose</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What do people do with mucus?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4bc9cfae-1d5f-407d-b701-d8bc16350db2" ownerguid="cc542297-3128-4b48-b670-0b63903910d3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pile</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7cc9a423-ea7f-411f-8817-4eaccdf360fd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="4bcbb739-593a-4493-9ead-1611e59073b7" ownerguid="a7a204aa-c7e2-40c9-9734-bf83a5e9b1a8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fall</AUni> -<AUni ws="es">caerse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0a8275cd-f851-47ac-8103-2d906d2a4417" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="4bcdb1ab-0f44-4957-8642-860168e0ef79"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">to:rri; to:rri</AUni> -<AUni ws="qvm-x-acl">to:rri; to:rri; to:rre</AUni> -<AUni ws="qvm-x-akh">to:rri; to:rri</AUni> -<AUni ws="qvm-x-akl">to:rri; to:rri; to:rre</AUni> -<AUni ws="qvm-x-ame">to:rri; to:rri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+torre</AUni> -<AUni ws="qvm-x-acl">+torre</AUni> -<AUni ws="qvm-x-akh">+torre</AUni> -<AUni ws="qvm-x-akl">+torre</AUni> -<AUni ws="qvm-x-ame">+torre</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.967" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6c67e2d9-fe76-4b93-b515-b41d56ec3f64" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+torre</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="95b1687e-5333-4918-ad62-7bf5555d648b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c6aa5f69-1910-4cad-afce-309ac369be77" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +torre 
\entryTyp root 
\gENG tower 
\gSPN torre 
\e +torre 
\c N0 
\mp +FinalI 
\ach to:rri / _# 
\ach to:rri / ~_# 
\akh to:rri / _# 
\akh to:rri / ~_# 
\acl to:rri / _# 
\acl to:rri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl to:rre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl to:rri / _# 
\akl to:rri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl to:rre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame to:rri / _# 
\ame to:rri / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="4bcf81e9-1edc-4872-a8d3-b0f710b56b30"> -<Analyses> -<objsur guid="0fc9c27e-cf5d-49ba-b073-990cfc5ffe6b" t="o" /> -<objsur guid="1f2173bf-8e27-4cb2-a28a-2ec98728541d" t="o" /> -<objsur guid="70f47508-b668-4214-8811-d90c6ff8c133" t="o" /> -<objsur guid="862aa851-6b1d-491a-bd03-40e8723e4d33" t="o" /> -<objsur guid="89d7c6a6-8be7-4bfe-910b-56a1132456cc" t="o" /> -<objsur guid="9db00bb9-0443-4017-9185-2a6e3f43e556" t="o" /> -<objsur guid="a7522f0d-f5fe-4f37-8daf-3ec0db391cb1" t="o" /> -<objsur guid="a81b4f8f-2c46-4c9a-9640-8b7bad9360f1" t="o" /> -<objsur guid="c9da4369-8c6f-47c3-bab4-d59d0de8d022" t="o" /> -<objsur guid="ca34fbb8-44db-4e14-9a62-e483dd3db481" t="o" /> -</Analyses> -<Checksum val="1587243339" /> -<Form> -<AUni ws="qvm-x-akh">nipäkamaytsu</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexExampleSentence" guid="4bd03dab-5560-4e9d-821e-d0025b0ecd8b" ownerguid="3d821d25-e699-43d3-a48c-09878ccf207f"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Ragrata juclayla gueru tsacaraptin jutin cayca waru. Ishcay gueru tsacaraptinragmi tsaca.</Run> -</AStr> -</Example> -</rt> -<rt class="PunctuationForm" guid="4bd33b73-ca58-4fbb-9575-41275fd181b3"> -<Form> -<Str> -<Run ws="en">AFAR</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="4bd504e4-79c9-41b9-b95f-b45d70e158b8" ownerguid="d117aa22-3f18-47c4-9683-51ecf1dc7134"> -<ExampleWords> -<AUni ws="en">flower, bloom, blossom, petal, stamen, pistil, nectar, pollen, spear, spike</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to the flowers?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4bdda818-9bdf-488e-aa30-193a8e6d9719" ownerguid="4d1ac5e6-dfe3-4643-b6e5-21649a01cce9"> -<ExampleWords> -<AUni ws="en">railroad, railway, station</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a railroad?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4be1f92f-0e42-49b5-8799-2575ac1aeecc" ownerguid="06ac577a-4d61-4898-ac9d-e3f18b7504af"> -<ExampleWords> -<AUni ws="en">make it to safety, get to safety, avoid, break, bypass, dodge, duck, elude, escape, evade, evasion, flee, shake, shy away from, sidestep, give someone the slip</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to saving yourself?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4be476fd-6dcf-4177-a3b3-3cda490ce052" ownerguid="154eadd9-5f2d-44b8-9327-4f3c5bc8bd85"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="4be60c04-c8c8-4229-9590-6df57b3be008" ownerguid="3c8eaf3d-757f-431d-9987-26115942e00e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="4bea552a-1dd1-4a1e-9027-d31cd9ccdcdb" ownerguid="c849a559-cbc7-4b16-b7e7-8b8d19483c69"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">gargu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">gargu; gargo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qarqu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qarqu; qarqo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qarqu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="73ffd175-ad05-4d66-af47-2c487b1126eb" t="r" /> -</Morph> -<Msa> -<objsur guid="6da469f9-1f0c-4335-acc0-6c49a7bb5c21" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="4bece10b-6622-41b4-ad7b-a6052e8b0927" ownerguid="e311cc3a-a387-449e-a05a-07ed9678411d"> -<ExampleWords> -<AUni ws="en">amulet, charm, fetish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to objects with supernatural power?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="4bedae6a-1df4-40e5-8a2f-ab0a1f41997e" ownerguid="c2630384-2f72-4a96-baed-3fff03383362"> -<Abbreviation> -<AUni ws="en">6.2.5.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.428" /> -<DateModified val="2022-9-23 16:55:8.428" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to materials and substances that are taken from plants and used for various purposes. It is necessary to think through various types of plants to think of what materials are taken from each.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>6S Plant Products; 3F Wood and Wood Products</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Plant product</AUni> -</Name> -<Questions> -<objsur guid="122da1b7-770d-49b0-bf2a-247961c0dc24" t="o" /> -<objsur guid="134558c7-12c3-4aab-9f7f-8f151fd42cd2" t="o" /> -<objsur guid="4ef7222f-83ae-4c4f-b508-69dbfce48122" t="o" /> -<objsur guid="9ddbcb0a-397e-415f-ac11-e6c458be9259" t="o" /> -<objsur guid="64983c06-d161-4286-be4d-bcf0c33a7203" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="4098899a-0ad0-4d71-9f9f-b99d5ba2e0d5" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="4bee61e5-2b62-4e41-a87e-efa2357869d2" ownerguid="019e3b64-c68a-4b19-bec5-a22f4eb88f48"> -<ExampleWords> -<AUni ws="en">reed, palm leaf, rope, string</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What materials are used to weave things?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4beeb62f-004b-4350-98c7-4c2c1fcd2adf" ownerguid="ca0f9b9b-31fc-4ae6-9563-abedc4a5af98"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John bought Mary some medicine.</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(2) In English the Beneficiary can be the object, but many languages do not allow this.</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4bef8767-9346-4e30-acf4-88a2c62ad30b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">toto:ra</AUni> -<AUni ws="qvm-x-acl">toto:ra</AUni> -<AUni ws="qvm-x-akh">toto:ra</AUni> -<AUni ws="qvm-x-akl">toto:ra</AUni> -<AUni ws="qvm-x-ame">toto:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+totora</AUni> -<AUni ws="qvm-x-acl">+totora</AUni> -<AUni ws="qvm-x-akh">+totora</AUni> -<AUni ws="qvm-x-akl">+totora</AUni> -<AUni ws="qvm-x-ame">+totora</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.967" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="95ea6707-f844-49c8-b640-a36cb0c18152" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+totora</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="319b502c-f39c-4d27-aa6d-0547f3354248" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="37fb0b59-c926-4989-8d8d-d04d18522623" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +totora 
\entryTyp root 
\gENG 
\gSPN 
\e +totora 
\c N0 
\ach toto:ra 
\akh toto:ra 
\acl toto:ra 
\akl toto:ra 
\ame toto:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4bf0233e-ba0d-451b-af5c-e1fcc0181ea4" ownerguid="61f52196-a8b2-496d-96ea-8c15dc7d377a"> -<ExampleWords> -<AUni ws="en">miracle, miraculous event, sign, wonder, magic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the event of a miracle?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4bf278b6-88a6-4e83-aafb-37a67f16a3d4" ownerguid="bcb7f7ad-171d-484e-ac7b-b499a81aa33d"> -<Form> -<AUni ws="qvm-x-ach">tsampa</AUni> -<AUni ws="qvm-x-acl">tsampa</AUni> -<AUni ws="qvm-x-akh">tsampa</AUni> -<AUni ws="qvm-x-akl">tsampa</AUni> -<AUni ws="qvm-x-ame">tsampa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PunctuationForm" guid="4bf39135-bef1-44c8-9239-9cdfc6954d7f"> -<Form> -<Str> -<Run ws="qvm-x-akh">-</Run> -</Str> -</Form> -</rt> -<rt class="CmSemanticDomain" guid="4bf411b7-2b5b-4673-b116-0e6c31fbd08a" ownerguid="ac9ee84f-f0c7-48b3-8e5a-b4c967112394"> -<Abbreviation> -<AUni ws="en">8.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.609" /> -<DateModified val="2022-9-23 16:55:8.609" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to light.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>14F Light</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Light</AUni> -</Name> -<OcmCodes> -<Uni>373 Light</Uni> -</OcmCodes> -<Questions> -<objsur guid="95230685-5c11-4b86-9180-e41d26810f20" t="o" /> -<objsur guid="af1421b6-ee1b-495b-ab4f-db1c10161fb1" t="o" /> -<objsur guid="683a19fc-dbeb-4151-b645-f04ffa775771" t="o" /> -<objsur guid="f535f392-5334-4369-b6b6-8e099819b630" t="o" /> -<objsur guid="c8daf733-d53b-426c-913d-076a44273684" t="o" /> -<objsur guid="80e0685f-c654-4734-ad6f-9a6f9be2fa71" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="a7824686-a3f3-4c8a-907e-5d841cf846c8" t="o" /> -<objsur guid="bf9606ec-9a8e-4822-8bfd-d5eebc58c65b" t="o" /> -<objsur guid="d01f1c51-522e-4b35-81b3-00577dbfa3bd" t="o" /> -<objsur guid="aed6c1ec-abbe-47e3-a6cc-a99ecff3b825" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="4bf670d1-e204-4627-9847-583083bd6a0c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tucu</AUni> -<AUni ws="qvm-x-acl">tucu; tucu; tuco</AUni> -<AUni ws="qvm-x-akh">tuku</AUni> -<AUni ws="qvm-x-akl">tuku; tuku; tuko</AUni> -<AUni ws="qvm-x-ame">tuku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tuku.n</AUni> -<AUni ws="qvm-x-acl">*tuku.n</AUni> -<AUni ws="qvm-x-akh">*tuku.n</AUni> -<AUni ws="qvm-x-akl">*tuku.n</AUni> -<AUni ws="qvm-x-ame">*tuku.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.977" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="626610bb-ed7d-4934-b05a-3991959536b5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tuku.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="db2c15df-25ad-42a7-9c04-9c05f3f4119f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="338d9dbe-8c51-43fd-8654-b4878c17eeab" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tuku.n 
\entryTyp root 
\gENG great horned owl 
\gSPN buho americano 
\e *tuku.n 
\c N0 
\ach tucu 
\akh tuku 
\acl tucu / _# 
\acl tucu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tuco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tuku / _# 
\akl tuku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tuko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tuku</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="4bf731e2-1d65-4743-8e01-518efec45f71" ownerguid="0f73685c-b28f-48dd-bb81-ee9c8297599e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="4bf73bc3-08f2-483e-b62c-1dba26cc5e61" ownerguid="f70907c6-a064-425a-830f-e669319c38da"> -<ExampleWords> -<AUni ws="en">leader</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to someone who leads?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4bf7d06b-8080-41fe-b403-ae4acf9aab41" ownerguid="18595df7-1c69-40db-a7c1-74d490115c0c"> -<ExampleWords> -<AUni ws="en">blow, fan, exhaust, expel, explode</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to causing air to move?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4bf9496f-1c02-4013-ad80-f68f5cb80423" ownerguid="ecc39bc2-6336-48ca-be46-cf5e49a3c267"> -<ExampleWords> -<AUni ws="en">queen (ant, bee), worker, drone (bee), soldier</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What special kinds of workers exist within an insect colony?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="4bfe53d2-fb85-4397-98a8-97d59b907064" ownerguid="f4580c19-ba9e-4f71-a46a-6f3c4b19c36c"> -<Abbreviation> -<AUni ws="en">7.2.4.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.516" /> -<DateModified val="2022-9-23 16:55:8.516" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a boat.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>6H Boats and Parts of Boats</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Boat</AUni> -</Name> -<Questions> -<objsur guid="2c93feb7-bc12-4af1-ba38-a8c8bb5f1b77" t="o" /> -<objsur guid="1e181b3d-b9cb-4b55-8c74-6038617e0dc8" t="o" /> -<objsur guid="5c5e314c-c878-42aa-8135-50739d9b44f4" t="o" /> -<objsur guid="ad7f54e5-6111-4a44-8c63-314db143cc8d" t="o" /> -<objsur guid="56af1b8d-47be-43d2-8d4f-ac313300837f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="4bfff667-2896-46d7-8e09-2ffd89710b83" ownerguid="17d50454-fe0c-4552-95cc-f4841295f8ec"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.hard</AUni> -<AUni ws="es">ser.duro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b0c04ec9-cc27-4ac1-863a-b45e41c56f2f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4c004c03-1bd4-4255-8b78-acd346a9fd48" ownerguid="fa41dbc5-adbb-4ad0-9fd2-0278d4689a28"> -<ExampleWords> -<AUni ws="en">non-relative, unrelated, not related</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to refer to people who are not related to you by blood or marriage?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4c0514ee-1e8b-4a76-a974-8883627eea91" ownerguid="7b99fdad-75ad-4feb-b422-380ab400d4d3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="4c0644ee-cb09-4932-9bca-10d87cf498f3" ownerguid="24609324-c073-405b-a4ba-d1bb46127695"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">12FUT</AUni> -<AUni ws="es">12FUT</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5b9b30eb-486b-40e3-9d46-728bf203dd76" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="4c076202-ba35-4f78-a649-be9bc98964d6" ownerguid="78f8926f-82ad-455c-b171-fb982948c239"> -<Form> -<AUni ws="qvm-x-ach">vientu</AUni> -<AUni ws="qvm-x-acl">vientu; viento</AUni> -<AUni ws="qvm-x-akh">vientu</AUni> -<AUni ws="qvm-x-akl">vientu; viento</AUni> -<AUni ws="qvm-x-ame">vientu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="4c0771eb-671e-435b-8b2a-39b929c24388"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">u:vas</AUni> -<AUni ws="qvm-x-acl">u:vas</AUni> -<AUni ws="qvm-x-akh">u:vas</AUni> -<AUni ws="qvm-x-akl">u:vas</AUni> -<AUni ws="qvm-x-ame">u:vas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+uvas</AUni> -<AUni ws="qvm-x-acl">+uvas</AUni> -<AUni ws="qvm-x-akh">+uvas</AUni> -<AUni ws="qvm-x-akl">+uvas</AUni> -<AUni ws="qvm-x-ame">+uvas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.312" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dc546f80-b56c-48e8-8cee-6380e4848e0f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+uvas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6766dc95-63d8-46fc-92b3-adebcb0bb8b1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6b34ede9-d080-4e9c-8209-b2bd20863672" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +uvas 
\entryTyp root 
\gENG berry 
\gSPN uvas 
\e +uvas 
\c N0 
\mp +FinalC 
\ach u:vas 
\akh u:vas 
\acl u:vas 
\akl u:vas 
\ame u:vas</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="4c096914-0a69-42dd-a7ad-a8e47d1c2ed3" ownerguid="35acdd1a-0ca5-446c-9192-97c42b36a3f3"> -<Form> -<AUni ws="qvm-x-ach">chapsa</AUni> -<AUni ws="qvm-x-acl">chapsa</AUni> -<AUni ws="qvm-x-akh">chapsa</AUni> -<AUni ws="qvm-x-akl">chapsa</AUni> -<AUni ws="qvm-x-ame">chapsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="4c10856a-f0e3-4cbc-8561-e010b65b9137" ownerguid="111a4d91-df11-4523-89f2-822b92fd73b7"> -<Form> -<AUni ws="qvm-x-ach">esguy</AUni> -<AUni ws="qvm-x-acl">esguy</AUni> -<AUni ws="qvm-x-akh">esquy</AUni> -<AUni ws="qvm-x-akl">esquy</AUni> -<AUni ws="qvm-x-ame">isquy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="4c11d353-dda9-4a23-92f0-f0b875d3a944" ownerguid="f2453181-5627-4c4b-a4d5-2c67b0039807"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">write</AUni> -<AUni ws="es">escribir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cef44998-a3c4-44b0-b014-3e28a576a9ab" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4c11ee34-95fa-43ad-8c30-6e6de5e7b5ee" ownerguid="7648040b-0aa5-4d9a-8f13-ffd066b81602"> -<ExampleWords> -<AUni ws="en">lengthened, elongated, extended, stretched, outstretched</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that has been made long?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4c12ac80-82d8-4361-ad23-2fd4a8006f4e" ownerguid="1461c106-d9e0-417d-9487-a57e6d0cced0"> -<ExampleWords> -<AUni ws="en">be below the standard, be unacceptable, be imperfect, be abnormal, miss the mark, fail, fail to make the grade, fail to live up to expectations, not live up to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being unacceptable?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4c130a0a-e63c-4837-a2d0-a8f3fcb49695" ownerguid="63494b6a-462e-4971-a0b8-5266c53ae274"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0 V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">make.smooth</AUni> -<AUni ws="es">hacer.suave</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3d849f01-0fce-4fd4-ba33-bfb9e840bf93" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="4c170c51-3776-42ae-81b0-8081e73d877a" ownerguid="0ae80364-83fa-419b-82e7-26243d63fe3d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="4c184f09-c1c2-4778-9810-867df88dd078" ownerguid="f38f267d-c55d-4927-9ac7-7a61e42d49ff"> -<Form> -<AUni ws="qvm-x-ach">nöta</AUni> -<AUni ws="qvm-x-acl">nöta</AUni> -<AUni ws="qvm-x-akh">nöta</AUni> -<AUni ws="qvm-x-akl">nöta</AUni> -<AUni ws="qvm-x-ame">nöta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StTxtPara" guid="4c1a759e-49c7-4975-be13-1b09afab8993" ownerguid="1b3624a5-d4f7-4190-9e19-d074a59aa870"> -<ParseIsCurrent val="True" /> -</rt> -<rt class="MoStemAllomorph" guid="4c1b8b94-8f47-4d33-b5f5-d5ae99521eb4" ownerguid="ff08921e-f93c-4d2d-abda-b1fa76c32f18"> -<Form> -<AUni ws="qvm-x-ach">wata</AUni> -<AUni ws="qvm-x-acl">wata</AUni> -<AUni ws="qvm-x-akh">wata</AUni> -<AUni ws="qvm-x-akl">wata</AUni> -<AUni ws="qvm-x-ame">wata</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="4c1ebd19-9be7-437e-85c0-dfa70ee9c4d3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">neumonia</AUni> -<AUni ws="qvm-x-acl">neumonia</AUni> -<AUni ws="qvm-x-akh">neumonia</AUni> -<AUni ws="qvm-x-akl">neumonia</AUni> -<AUni ws="qvm-x-ame">neumonia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+neumonia</AUni> -<AUni ws="qvm-x-acl">+neumonia</AUni> -<AUni ws="qvm-x-akh">+neumonia</AUni> -<AUni ws="qvm-x-akl">+neumonia</AUni> -<AUni ws="qvm-x-ame">+neumonia</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.555" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="04a3d1e8-6ee7-4d05-8050-62686cf57a2b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+neumonia</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="55c0c6b1-25d6-49e0-94b1-e83fb68cf630" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="99b8a9b2-f3d6-41f9-9fe7-040264796ade" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +neumonia 
\entryTyp root 
\gENG pneumonia 
\gSPN neumonia 
\e +neumonia 
\c N0 
\ach neumonia 
\akh neumonia 
\acl neumonia 
\akl neumonia 
\ame neumonia</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4c219fe9-7bb7-47af-904b-bdc69af4d204" ownerguid="0aae1951-4d5b-45a0-853c-1839764c9862"> -<ExampleWords> -<AUni ws="en">be (two inches) (too) short</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words indicate how short something is?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4c22f9ed-8639-4c41-b8a9-17130a724cf9" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<ExampleWords> -<AUni ws="en">comfort, console, reassure, solace</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(18) What words refer to helping someone who feels sad to feel good?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4c27deb5-a71f-4a42-9c92-e1f189784f7b" ownerguid="d125240e-5990-4bf3-b99d-9b645cc79f08"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.laze</AUni> -<AUni ws="es">flojearse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="37dd219d-d88b-44cf-b625-0f64f80db488" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="4c288c59-e685-42b7-b6dc-d8ef81940ba1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuentu; cuento</AUni> -<AUni ws="qvm-x-acl">cuentu; cuentu; cuento</AUni> -<AUni ws="qvm-x-akh">cuentu; cuento</AUni> -<AUni ws="qvm-x-akl">cuentu; cuentu; cuento</AUni> -<AUni ws="qvm-x-ame">cuentu; cuento</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuento</AUni> -<AUni ws="qvm-x-acl">+cuento</AUni> -<AUni ws="qvm-x-akh">+cuento</AUni> -<AUni ws="qvm-x-akl">+cuento</AUni> -<AUni ws="qvm-x-ame">+cuento</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.244" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="be26728b-67cf-4db2-8804-b79c615b968d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuento</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a18f83ca-db7d-4797-ad5a-6d09202db26f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="01eb9234-110e-4d13-ae57-671cfdedba7d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuento 
\entryTyp root 
\gENG story 
\gSPN cuento 
\e +cuento 
\c N0 
\ach cuentu / ~_# 
\ach cuento / _# 
\akh cuentu / ~_# 
\akh cuento / _# 
\acl cuentu / ~_# 
\acl cuentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cuento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cuentu / ~_# 
\akl cuentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cuento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cuentu / ~_# 
\ame cuento / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="4c2996fe-c80e-49aa-8b03-eadc2298f7b5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">débil; de:bil</AUni> -<AUni ws="qvm-x-acl">débil; de:bil; de:bel</AUni> -<AUni ws="qvm-x-akh">débil; de:bil</AUni> -<AUni ws="qvm-x-akl">débil; de:bil; de:bel</AUni> -<AUni ws="qvm-x-ame">débil; de:bil</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+débil</AUni> -<AUni ws="qvm-x-acl">+débil</AUni> -<AUni ws="qvm-x-akh">+débil</AUni> -<AUni ws="qvm-x-akl">+débil</AUni> -<AUni ws="qvm-x-ame">+débil</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.396" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="de940ab2-7bee-4eb7-9684-be3b826f485d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+débil</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="782baa7b-8a35-4a19-a060-9db9414e00ed" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2777249f-9706-4b64-81dd-0fc6f934766f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +débil 
\entryTyp root 
\gENG weak 
\gSPN débil 
\e +débil 
\c N0 
\mp +FinalC 
\ach débil / _# 
\ach de:bil / ~_# 
\akh débil / _# 
\akh de:bil / ~_# 
\acl débil / _# 
\acl de:bil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl de:bel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl débil / _# 
\akl de:bil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl de:bel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame débil / _# 
\ame de:bil / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="4c29f337-f7d8-4ea5-abdb-b2c449ec651e" ownerguid="f4aa9013-6ff2-43af-8b86-98fb80591271"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">never</AUni> -<AUni ws="es">nunca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9e64b1e7-927f-4ba6-99a3-c53fb9e88806" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="4c2bee75-e668-4daf-9385-5eb87bf68185" ownerguid="8256da64-9b2b-4f9f-becc-c03cc73c1de7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="4c2ea7db-48eb-4305-8d91-a2fb376c0af6" ownerguid="85d0d551-4d20-4930-86d7-84fe189fcc96"> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="4c2fa550-bc8c-4da6-af33-1cd262ef8687" ownerguid="4e17c054-ad76-4dac-8a4c-2127f5eb317b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="fb5e427e-191a-4b5d-ab91-53e282d4ce69" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">line</AUni> -<AUni ws="es">raya</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d2822176-5d7e-4574-b0d0-21ad3d676a98" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="4c308c44-f7bb-4116-9c24-0b60f417756a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chasqui</AUni> -<AUni ws="qvm-x-acl">chasqui; chasque</AUni> -<AUni ws="qvm-x-akh">chaski</AUni> -<AUni ws="qvm-x-akl">chaski; chaske</AUni> -<AUni ws="qvm-x-ame">chaski</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*traski</AUni> -<AUni ws="qvm-x-acl">*traski</AUni> -<AUni ws="qvm-x-akh">*traski</AUni> -<AUni ws="qvm-x-akl">*traski</AUni> -<AUni ws="qvm-x-ame">*traski</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.78" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bead341a-2e3e-4044-9543-5b3c9322ecb7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*traski</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5ed183bc-81f8-4f4d-a1e4-436bf9b8fbcf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="69606148-7a5a-4be0-ade0-386ec676ddfe" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *traski 
\entryTyp root 
\gENG receive 
\gSPN recibir 
\e *traski 
\c V2 
\mp +FinalI 
\ach chasqui 
\akh chaski 
\acl chasqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl chasque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chaski +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chaske +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chaski</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4c30904d-989a-4516-af46-299f2081f8a1" ownerguid="7c6cad26-79c3-403a-a3aa-59babdfcd46f"> -<ExampleWords> -<AUni ws="en">ill, sick, unwell, infirm, look like death warmed over, unhealthy, ailing, diseased, incapacitated, indisposed, laid up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe a person who is sick?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="4c31ac6a-3197-4762-9937-2fdea90784b7" ownerguid="df149819-608f-46cd-ba0f-55f1d9d2e8ec"> -<Abbreviation> -<AUni ws="en">8.4.8.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.660" /> -<DateModified val="2022-9-23 16:55:8.660" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a sudden event--something happens that I don't expect.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>68G Rapidity, Suddenness</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Sudden</AUni> -</Name> -<Questions> -<objsur guid="713b7aad-19e7-4cbb-96fc-656209208ea1" t="o" /> -<objsur guid="a1362f44-c8db-4f05-9e8e-e99a1b3dde2b" t="o" /> -<objsur guid="4030a3b1-5665-4f7e-ab6a-95d9e09f70b3" t="o" /> -<objsur guid="3cf2a0f2-7a94-4d8e-94fc-6ff648abf4a9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="4c3abe4a-6d6d-42d4-aef7-24dd985e6e4b" ownerguid="08244b88-bfba-487a-96bc-ca3771d1fa7c"> -<ExampleWords> -<AUni ws="en">continue, start again, resume, get on with, get around to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to continue doing something after stopping?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4c3d3ca2-ad5b-4fc4-a7d4-a2f4ba98e6ce" ownerguid="f0c40d10-00bf-49bb-a9a3-9070edaa4759"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">family</AUni> -<AUni ws="es">familia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d675741c-26d1-45e4-b541-5943d8e4a482" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4c408d3e-d7e2-465a-8279-45183efaff73" ownerguid="c817af65-7cc8-4105-a8ed-47067d97b73b"> -<ExampleWords> -<AUni ws="en">habit (nun), cowl (monk), robe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What special clothes are worn by religious people?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4c439c7c-aeed-411a-be6e-d72e904cc4d4" ownerguid="b5700ad7-36a1-4608-8789-8f84007244f8"> -<ExampleWords> -<AUni ws="en">tire out, wear out, exhaust, tire, do someone in, it nearly killed me, take it out of, weary, fatigue, drain, tax, wear someone down, work someone to death</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something making someone tired?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4c45c72e-0f8c-4faf-900f-ebf1a022257b" ownerguid="a9172057-0e8a-47fa-bae4-84e5f3b214b3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="4c46be53-6668-4ca6-bccd-efcbf72bc5c1" ownerguid="8616e673-bb26-4140-8890-e15f45735529"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">indicate</AUni> -<AUni ws="es">señalar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2504119a-086f-4d7e-ae40-78201708e152" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="4c4837f9-ff7d-4f10-99fa-43a953a3aa17" ownerguid="91616394-52c4-4ca9-9e66-b84073930186"> -<Form> -<AUni ws="qvm-x-ach">casara</AUni> -<AUni ws="qvm-x-acl">casara</AUni> -<AUni ws="qvm-x-akh">casara</AUni> -<AUni ws="qvm-x-akl">casara</AUni> -<AUni ws="qvm-x-ame">casara</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4c486fe5-06ce-4c4d-b945-4c13df330759" ownerguid="edeb9458-3bdb-4d14-aaa1-6eb457307b9c"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">We <should> do something to help.; We <ought to> do something to help.; <Should>n't we do something to help?; This building <should> be torn down.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">should, ought to, be responsible for, be duty bound</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something should be done?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4c4894d5-6bbc-46cb-91f9-fbcfcd3931e7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gachgas</AUni> -<AUni ws="qvm-x-acl">gachgas</AUni> -<AUni ws="qvm-x-akh">qachqas</AUni> -<AUni ws="qvm-x-akl">qachqas</AUni> -<AUni ws="qvm-x-ame">qachqas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qatrqas</AUni> -<AUni ws="qvm-x-acl">*qatrqas</AUni> -<AUni ws="qvm-x-akh">*qatrqas</AUni> -<AUni ws="qvm-x-akl">*qatrqas</AUni> -<AUni ws="qvm-x-ame">*qatrqas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.155" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f3799255-6397-48ac-996a-ab1b5eb8c4aa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qatrqas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2f3e3877-d1c9-4649-8384-3a5e96a49164" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="38559a42-99b0-4f9e-a379-62579de9e365" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qatrqas 
\entryTyp root 
\gENG ? 
\gSPN ? 
\e *qatrqas 
\c N0 
\mp +FinalC 
\ach gachgas 
\akh qachqas 
\acl gachgas 
\akl qachqas 
\ame qachqas</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="4c48acbd-5156-4f6d-bd93-750bcd92bca2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">juzga</AUni> -<AUni ws="qvm-x-acl">juzga</AUni> -<AUni ws="qvm-x-akh">juzga</AUni> -<AUni ws="qvm-x-akl">juzga</AUni> -<AUni ws="qvm-x-ame">juzga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+juzgar</AUni> -<AUni ws="qvm-x-acl">+juzgar</AUni> -<AUni ws="qvm-x-akh">+juzgar</AUni> -<AUni ws="qvm-x-akl">+juzgar</AUni> -<AUni ws="qvm-x-ame">+juzgar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.902" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2462666c-f504-47ca-8df2-347401977ceb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+juzgar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="62551890-0cfd-4bdc-aaa8-065405b81474" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3a927206-bd54-4119-a0e3-0a37a0165afb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +juzgar 
\entryTyp root 
\gENG judge 
\gSPN juzgar 
\e +juzgar 
\c V2 
\ach juzga 
\akh juzga 
\acl juzga 
\akl juzga 
\ame juzga</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4c4a0963-119d-4461-ba10-369b9c7a9f3c" ownerguid="d1b3d0f0-5319-4a6a-8a70-2179a8e76d22"> -<ExampleWords> -<AUni ws="en">make it necessary, necessitate, call for, entail, take, need, require</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words indicate that something makes it necessary to do something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4c4a9eb0-14ab-45ad-8c1c-cef9d8963279" ownerguid="c08014b2-4262-43da-9dd5-8a4db5deac1e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cape</AUni> -<AUni ws="es">capa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="40d3fe94-d6f0-4957-9d5d-19207821c6a9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="4c4fbb9a-2361-4eb0-a23a-6ecbfa3e4a66"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pi:pi:</AUni> -<AUni ws="qvm-x-acl">pi:pi:</AUni> -<AUni ws="qvm-x-akh">pi:pi:</AUni> -<AUni ws="qvm-x-akl">pi:pi:</AUni> -<AUni ws="qvm-x-ame">pi:pi:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pi:pi:</AUni> -<AUni ws="qvm-x-acl">*pi:pi:</AUni> -<AUni ws="qvm-x-akh">*pi:pi:</AUni> -<AUni ws="qvm-x-akl">*pi:pi:</AUni> -<AUni ws="qvm-x-ame">*pi:pi:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.848" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2138a390-8f67-435d-a9ef-a0dd429c6a76" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pi:pi:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c23d27bc-d350-465a-8a4b-a8059eb83dbc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c1f909a5-235e-43ca-83d7-a9a886aefc33" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pi:pi: 
\entryTyp root 
\gENG who 
\gSPN quien 
\e *pi:pi: 
\c N0 
\mp NeverForeshortened 
\ach pi:pi: 
\akh pi:pi: 
\acl pi:pi: 
\akl pi:pi: 
\ame pi:pi: 
\mp +FinalC 
\mp +FinalLength 
\mp NeverChanged</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="4c50d93f-2c22-4050-9338-3bf2e73b00d9" ownerguid="33566204-d674-40ed-8fd8-63676d75513d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="4c522192-b97b-4890-b2bb-c9b87321c958" ownerguid="d086c2ad-2d11-4250-a25a-dc6538439db6"> -<ExampleWords> -<AUni ws="en">pair, twin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to two things that are used together?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4c558898-5255-4498-8c0c-1d905975a3c5" ownerguid="ba1e8d2b-7d3e-4b65-a9be-ee1a4063c796"> -<ExampleWords> -<AUni ws="en">anxiety attack, really worried, really scared, really wondering, despair, despairing, desperate, desperation, be worried sick, be at your wits' end, frantic, frantically</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to being very worried?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4c55ba34-1fac-4d0f-a5de-ce3d124995e2" ownerguid="8c9f539c-a2a5-4408-af33-8f8d44b99993"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0 V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tender</AUni> -<AUni ws="es">tierno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fbbf2903-3dc1-4cdf-8dd4-3802951338bc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="4c56dedc-e5bb-4799-b149-cf62566841ca" ownerguid="bf3d59c0-e5cb-4e99-883d-0db90420299c"> -<Form> -<AUni ws="qvm-x-ach">mejor</AUni> -<AUni ws="qvm-x-acl">mejor</AUni> -<AUni ws="qvm-x-akh">mejor</AUni> -<AUni ws="qvm-x-akl">mejor</AUni> -<AUni ws="qvm-x-ame">mejor</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4c57a2d9-e525-4e1d-922d-d1c309f30ede" ownerguid="dc1a2c6f-1b32-4631-8823-36dacc8cb7bb"> -<ExampleWords> -<AUni ws="en">noon, zenith</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the time when the sun is at its highest point?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4c57e97c-6d6f-4504-9a80-01635a247d57" ownerguid="cdca785d-c2d2-44fa-aa86-92a705347cc1"> -<Form> -<AUni ws="qvm-x-ach">walgui</AUni> -<AUni ws="qvm-x-acl">walgui; walgui; walgue</AUni> -<AUni ws="qvm-x-akh">walqi</AUni> -<AUni ws="qvm-x-akl">walqi; walqi; walqe</AUni> -<AUni ws="qvm-x-ame">walqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="4c5820a5-1284-4f69-b82c-6caf028931fc" ownerguid="2d71c797-cdda-4bc1-99e6-6bc256bfbb3c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="4c5958fd-1ae9-4fe5-934f-7088e768ec2c" ownerguid="11de0591-7d54-479b-84b2-0b48471a8e11"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="4c5fb2b1-f8e1-4aa6-b49c-ee13dfc9154e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wapsu</AUni> -<AUni ws="qvm-x-acl">wapsu; wapso</AUni> -<AUni ws="qvm-x-akh">wapsu</AUni> -<AUni ws="qvm-x-akl">wapsu; wapso</AUni> -<AUni ws="qvm-x-ame">wapsu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wapsu.v</AUni> -<AUni ws="qvm-x-acl">*wapsu.v</AUni> -<AUni ws="qvm-x-akh">*wapsu.v</AUni> -<AUni ws="qvm-x-akl">*wapsu.v</AUni> -<AUni ws="qvm-x-ame">*wapsu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.495" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eb43336a-94d8-4837-acbe-7e704b9efd14" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wapsu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9370e326-fbc2-4f12-8dd6-bc6263157adf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a0d3c903-1533-4be4-84a9-c52c6201adea" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wapsu.v 
\entryTyp root 
\gENG 
\gSPN ser.lleno 
\e *wapsu.v 
\c V1 
\ach wapsu 
\akh wapsu 
\acl wapsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wapso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wapsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wapso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wapsu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4c6090b6-9189-483f-bd3a-cbe857ac3143" ownerguid="98830eda-3997-4f4a-9ba4-664df669e7e2"> -<ExampleWords> -<AUni ws="en">barbed wire, obstacles, mine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to things place around a fort to keep enemies away?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4c61a088-d8d6-43cb-b2ac-a3e9cedd6a35"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">trilla</AUni> -<AUni ws="qvm-x-acl">trilla</AUni> -<AUni ws="qvm-x-akh">trilla</AUni> -<AUni ws="qvm-x-akl">trilla</AUni> -<AUni ws="qvm-x-ame">trilla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+trillar</AUni> -<AUni ws="qvm-x-acl">+trillar</AUni> -<AUni ws="qvm-x-akh">+trillar</AUni> -<AUni ws="qvm-x-akl">+trillar</AUni> -<AUni ws="qvm-x-ame">+trillar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.109" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="40653862-b20c-4c46-bcae-904bbaebb45f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+trillar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="25b7a2c5-a7fe-476c-b14e-a9e6612ef249" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2026ac6b-06ed-47fb-b7ae-b9f17d5b0af8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +trillar 
\entryTyp root 
\gENG 
\gSPN trillar 
\e +trillar 
\c V1 
\ach trilla 
\akh trilla 
\acl trilla 
\akl trilla 
\ame trilla</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4c620448-bc56-4197-81f8-3c25c50d50d8" ownerguid="5df53b87-7f59-4f5c-991e-5ae007b68fa9"> -<ExampleWords> -<AUni ws="en">Br'er rabbit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the name of an animal?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4c66508c-bb8e-4313-a20e-9c69f9431fef" ownerguid="9f446903-c472-48f9-83ad-00435e221373"> -<Form> -<AUni ws="qvm-x-ach">ogu</AUni> -<AUni ws="qvm-x-acl">ogu; ogo</AUni> -<AUni ws="qvm-x-akh">oqu</AUni> -<AUni ws="qvm-x-akl">oqu; oqo</AUni> -<AUni ws="qvm-x-ame">uqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="4c69ee77-777e-4a6e-b592-d29537dfd146"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mucu</AUni> -<AUni ws="qvm-x-acl">mucu; mucu; muco</AUni> -<AUni ws="qvm-x-akh">muku</AUni> -<AUni ws="qvm-x-akl">muku; muku; muko</AUni> -<AUni ws="qvm-x-ame">muku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*muku</AUni> -<AUni ws="qvm-x-acl">*muku</AUni> -<AUni ws="qvm-x-akh">*muku</AUni> -<AUni ws="qvm-x-akl">*muku</AUni> -<AUni ws="qvm-x-ame">*muku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.487" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="abf2834d-0eb1-4118-8ae4-83e004423fa5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*muku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9de2228b-1cd5-4489-a848-087f04149642" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="409524ed-24d0-49a1-a77d-90205075dd92" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *muku 
\entryTyp root 
\gENG polled 
\gSPN ser.descornado 
\e *muku 
\c N0 
\ach mucu 
\akh muku 
\acl mucu / _# 
\acl mucu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl muco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl muku / _# 
\akl muku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl muko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame muku</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4c6a4336-e370-40db-941d-822c0958797b" ownerguid="15fb022e-1b45-41e9-bd8a-09ddc9dc6acd"> -<ExampleWords> -<AUni ws="en">persevere, give it your best, keep on, hang in there, endure, persist, plod, plug</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to persevering in a task?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4c70907c-3512-45e0-9ce4-bb71d68bfcbd" ownerguid="26bd3710-7a3b-4893-ab06-24fa95faefa6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="19345475-28a5-4ce0-a084-c8bcd677d049" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="f36c20da-30f6-4a22-94ca-68e46a281daf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4c7d771f-a6d7-480d-aa02-c2a6b9e95a56" ownerguid="49c878dd-277f-4bc9-b8ad-9ba192709108"> -<ExampleWords> -<AUni ws="en">kitten</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to young cats?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="4c823e93-3966-461f-bd64-3a9303966338" ownerguid="01459db0-bf2a-422b-8d55-0ab505aea2b4"> -<Abbreviation> -<AUni ws="en">4.4.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.243" /> -<DateModified val="2022-9-23 16:55:8.243" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to problems.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Problem</AUni> -</Name> -<Questions> -<objsur guid="080e64f1-1a59-4489-9b4a-62435fbb2c9b" t="o" /> -<objsur guid="de63ea57-117f-480e-b02f-94c8f81e7b2a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="4c862416-f7c4-4a3c-82ac-fe81e1efb879" ownerguid="1b0270a5-babf-4151-99f5-279ba5a4b044"> -<Abbreviation> -<AUni ws="en">2.1.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the internal organs.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Internal organs</AUni> -</Name> -<Questions> -<objsur guid="de219060-4166-4105-a12a-5c9f6d5a36b9" t="o" /> -<objsur guid="99c2898d-a2e0-414b-a32f-9708718caadc" t="o" /> -<objsur guid="7b99b68d-c705-421e-81dc-e7ad36285154" t="o" /> -<objsur guid="7a9d775e-c414-432f-9e4c-ddbb3e792c97" t="o" /> -<objsur guid="055ae9a2-ea84-4667-af68-1eb24608484f" t="o" /> -<objsur guid="3104a95b-5bef-4b2f-89a8-28fa5300d1ea" t="o" /> -<objsur guid="0c3b1d8c-38d3-4f55-b06e-15262aa17df7" t="o" /> -<objsur guid="ae8a786d-3bcb-42a1-a409-88914ab7631a" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="2d0b3058-d8bb-4110-a54a-e507b0d3a0e4" t="o" /> -<objsur guid="b9a4b336-080a-4973-a7e3-a9af10fc347c" t="o" /> -<objsur guid="7dbd7f43-4291-47f8-a392-6fdf3c98d522" t="o" /> -<objsur guid="3d5d93ce-00e0-46ff-b220-553c12c38381" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="4c88dc6e-f7cd-490f-9e77-4f5b3e0b0912" ownerguid="423e06e6-9950-435b-8597-ec5aac3a3f31"> -<Form> -<AUni ws="qvm-x-ach">legiti</AUni> -<AUni ws="qvm-x-acl">legiti; legite</AUni> -<AUni ws="qvm-x-akh">legiti</AUni> -<AUni ws="qvm-x-akl">legiti; legite</AUni> -<AUni ws="qvm-x-ame">legiti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="4c8fb112-1d17-41bf-977b-dd2de6ae336e" ownerguid="fecf0558-0467-4946-b2de-b314af921dcd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="4c90db74-5c8c-4be6-b136-fd083ce6a8fd" ownerguid="d8efbe75-255b-4a50-b5d6-edde747da301"> -<Form> -<AUni ws="qvm-x-ach">codiciösu</AUni> -<AUni ws="qvm-x-acl">codiciösu; codiciösu; codiciöso</AUni> -<AUni ws="qvm-x-akh">codiciösu</AUni> -<AUni ws="qvm-x-akl">codiciösu; codiciösu; codiciöso</AUni> -<AUni ws="qvm-x-ame">codiciösu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="FsFeatStruc" guid="4c93f720-536c-4427-a312-f3e7facb5c25" ownerguid="a177c679-0e2b-4632-9f01-6391c5a4a352"> -<FeatureSpecs> -<objsur guid="8d622cfd-14d7-44f4-a3e0-4e1dd04f5aaf" t="o" /> -</FeatureSpecs> -<Type> -<objsur guid="efc7ecdf-44ed-4b11-9eef-41aaa905ca65" t="r" /> -</Type> -</rt> -<rt class="LexEntry" guid="4c9458da-13a4-4bed-b7c7-f843e9c73479"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ba:si; ba:si</AUni> -<AUni ws="qvm-x-acl">ba:si; ba:si; ba:se</AUni> -<AUni ws="qvm-x-akh">ba:si; ba:si</AUni> -<AUni ws="qvm-x-akl">ba:si; ba:si; ba:se</AUni> -<AUni ws="qvm-x-ame">ba:si; ba:si</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+base</AUni> -<AUni ws="qvm-x-acl">+base</AUni> -<AUni ws="qvm-x-akh">+base</AUni> -<AUni ws="qvm-x-akl">+base</AUni> -<AUni ws="qvm-x-ame">+base</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.949" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fe6ffac5-ff4d-4a57-b5a0-1ed5a0c3188f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+base</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="26824f4a-2206-49e9-9029-61555cde6e5b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a2aee42b-8abb-488e-b723-c149817f94c6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +base 
\entryTyp root 
\gENG base 
\gSPN base 
\e +base 
\c N0 
\mp +FinalI 
\ach ba:si / _# 
\ach ba:si / ~_# 
\akh ba:si / _# 
\akh ba:si / ~_# 
\acl ba:si / _# 
\acl ba:si +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ba:se +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ba:si / _# 
\akl ba:si +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ba:se +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ba:si / _# 
\ame ba:si / ~_# 
\i Exo 36.24 Tsay marcucuna ichinanpag rurapäcorgan guellaypita chuscu chunca (40) bäsicunata.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4c987686-8828-487d-913f-c7e115c9363f" ownerguid="a2a3e21a-819c-4400-b2e6-e6c1a0a0ded3"> -<ExampleWords> -<AUni ws="en">contempt, disdain, disregard, disrespect, hate, irreverence</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the feeling of despising someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4c99a811-780b-4c8d-b3a0-9a25bb698b62" ownerguid="2933a9c1-aa62-46fb-a03c-68aed7fae9b7"> -<ExampleWords> -<AUni ws="en">be burning, go up in flames, go up in smoke, be in flames</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to something burning?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4c9aab64-c5ab-4d55-ae31-4b351c0e9fab" ownerguid="1d34380d-61bf-4247-9145-ba318a14a97e"> -<ExampleWords> -<AUni ws="en">chunk, hunk, lump, dollop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a piece that is irregular in shape?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4ca1dc00-ccd6-4b8b-bfb5-6bca0ff55658" ownerguid="a52591db-90ed-4501-aa5f-d8a8fe4ff74a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cover</AUni> -<AUni ws="es">tapar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7789d2b1-9d83-45d4-87f7-80348fd1efea" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4ca3f427-73df-4d0d-9a89-25592f0b117f" ownerguid="fba27833-d6f1-4c36-ac39-28902b29261b"> -<ExampleWords> -<AUni ws="en">be just like, look just like, be the image of, be the spitting image of, be the living image of, could pass for, could be mistaken for, be a dead ringer for, be the picture of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to something looking very much like another thing?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4ca544e3-d0fa-456f-b2ff-07633275ba38" ownerguid="c313c84c-fa1f-41f0-85fb-0362d86e10a1"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="4ca70d87-e8fc-47cb-84be-30deeb5be9d4" ownerguid="c2156818-8930-4bc7-b69a-219f09295d8d"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">HOS 2.3 Mana cachariptenga quiquëmi pengaypag garapachashag.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="4caa61eb-eb68-4e43-aafb-33f0dc02877e" ownerguid="9fcae400-ce8f-4e30-9516-97ab794c30a9"> -<ExampleWords> -<AUni ws="en">pardon, grant a pardon, have mercy on, release, commute sentence, reduce sentence, let out, let off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used of not punishing someone who has been found guilty?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4cac52c0-0d6d-48c5-8903-aff661548efc" ownerguid="2933a9c1-aa62-46fb-a03c-68aed7fae9b7"> -<ExampleWords> -<AUni ws="en">die down, smolder</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a fire that is not burning well?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4cae13ab-03f4-4a1f-8d18-f78dc049a446" ownerguid="35da19f3-7b32-4b67-ac53-b7893d85a83e"> -<Form> -<AUni ws="qvm-x-ach">quëca</AUni> -<AUni ws="qvm-x-acl">quëca</AUni> -<AUni ws="qvm-x-akh">quëca</AUni> -<AUni ws="qvm-x-akl">quëca</AUni> -<AUni ws="qvm-x-ame">quëca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="4cb37737-3471-465d-bb02-1c845fa0d958" ownerguid="19180e45-9355-41ed-94ab-f5f51f4eb8a4"> -<Form> -<AUni ws="qvm-x-ach">malaga; malagä</AUni> -<AUni ws="qvm-x-acl">malaga; malagä</AUni> -<AUni ws="qvm-x-akh">malaqa; malaqä</AUni> -<AUni ws="qvm-x-akl">malaqa; malaqä</AUni> -<AUni ws="qvm-x-ame">malaqa; malaqä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4cb3f283-f629-44f3-b487-f6c2092fc9ef" ownerguid="c8d94c8f-db0b-4016-bdd2-e41a2eae4288"> -<ExampleWords> -<AUni ws="en">Antarctic, arctic, equatorial, tropics</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a particular region of the earth?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4cb5e536-5f25-44bd-b4c0-42be8a6baf4b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uyu</AUni> -<AUni ws="qvm-x-acl">uyu; uyo</AUni> -<AUni ws="qvm-x-akh">uyu</AUni> -<AUni ws="qvm-x-akl">uyu; uyo</AUni> -<AUni ws="qvm-x-ame">uyu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uyu.v</AUni> -<AUni ws="qvm-x-acl">*uyu.v</AUni> -<AUni ws="qvm-x-akh">*uyu.v</AUni> -<AUni ws="qvm-x-akl">*uyu.v</AUni> -<AUni ws="qvm-x-ame">*uyu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.320" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="523e37ed-44cb-41c2-9ffb-74cb23a6ac59" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uyu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="12082a04-e3df-47d6-9faa-1b7764ffb96f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="34d9ff2d-d665-41a8-8966-e765e9addb45" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uyu.v 
\entryTyp root 
\gENG thin 
\gSPN flaco 
\e *uyu.v 
\c V1 
\ach uyu 
\akh uyu 
\acl uyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl uyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl uyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl uyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame uyu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="4cb6faec-6372-4095-8b5d-67fade334bfc" ownerguid="cc1ce010-8c44-4184-908e-74ed349ab0c8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="4cb8b433-4efa-4698-8ebd-0f00f8fc3f66" ownerguid="b9c752a4-66be-493c-8955-cfa5324a54c1"> -<Abbreviation> -<AUni ws="en">4.9.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.296" /> -<DateModified val="2022-9-23 16:55:8.296" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being devout.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Devout</AUni> -</Name> -<Questions> -<objsur guid="d2c0b87f-a1f1-462d-8bb7-fab77159159c" t="o" /> -<objsur guid="c2a57bf3-991d-453d-94c8-993e7de9afd2" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="4cbb35a5-7d28-43eb-92d8-f4acab0c8c50" ownerguid="00de8f35-a79f-44fa-834e-55d786c8f87b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pure</AUni> -<AUni ws="es">puro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ea580de1-bd7f-4b71-af8e-11a223088095" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoInflAffixSlot" guid="4cbb4780-6fd8-49fe-88d5-5efa3fa992de" ownerguid="86ff66f6-0774-407a-a0dc-3eeaf873daf7"> -<Name> -<AUni ws="en">impfv</AUni> -</Name> -<Optional val="True" /> -</rt> -<rt class="CmDomainQ" guid="4cc00eb8-3398-498d-bf36-d98a2b9215e9" ownerguid="a19e219a-6cc1-4057-a8d9-18554ae88de1"> -<ExampleWords> -<AUni ws="en">carry in arms, carry on back</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to carrying a baby?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4cc11da7-e2b5-48e6-b3f9-690c235c29b4" ownerguid="41a089de-32a7-4b25-b4d7-2e50c22f38a7"> -<Form> -<AUni ws="qvm-x-ach">goñu</AUni> -<AUni ws="qvm-x-acl">goñu; goñu; goño</AUni> -<AUni ws="qvm-x-akh">qoñu</AUni> -<AUni ws="qvm-x-akl">qoñu; qoñu; qoño</AUni> -<AUni ws="qvm-x-ame">quñu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="4cc16a45-f4d9-42e2-9c96-ca2a16bcfa4e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">escale:ra</AUni> -<AUni ws="qvm-x-acl">escale:ra</AUni> -<AUni ws="qvm-x-akh">escale:ra</AUni> -<AUni ws="qvm-x-akl">escale:ra</AUni> -<AUni ws="qvm-x-ame">escale:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+escalera</AUni> -<AUni ws="qvm-x-acl">+escalera</AUni> -<AUni ws="qvm-x-akh">+escalera</AUni> -<AUni ws="qvm-x-akl">+escalera</AUni> -<AUni ws="qvm-x-ame">+escalera</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.487" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="394bdc4e-ce41-4b29-a8a8-8e56e40fc150" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+escalera</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="58471c4f-4ab2-4ff3-90fd-4b5e378ad53c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dc042595-d013-4a45-a2e6-2895af9cbb24" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +escalera 
\entryTyp root 
\gENG ladder 
\gSPN escalera 
\e +escalera 
\c N0 
\ach escale:ra 
\akh escale:ra 
\acl escale:ra 
\akl escale:ra 
\ame escale:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4cc2e138-d304-480e-8bc7-c897cb358039" ownerguid="e0a8e1d9-c43e-4092-a8dc-476a3417924e"> -<ExampleWords> -<AUni ws="en">encouragement, boost, morale raiser</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something that causes someone to feel confident?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4cc3c3da-3f0b-4957-8d17-36f2e49fed2c" ownerguid="79ebb5ce-f0fd-4fb5-9f22-1fa4965a555b"> -<ExampleWords> -<AUni ws="en">body of water, hydrosphere</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to a body of water?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4cc7a067-3267-443d-a1dd-4cdabde713ec" ownerguid="cdca785d-c2d2-44fa-aa86-92a705347cc1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="4ccc54df-7c4a-4954-a7f2-32eccca17277" ownerguid="0c94e084-d9f3-4880-9c97-c8e7d2ff5653"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="4ccdcc51-e278-4495-b1e3-ea17ff1544e5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tambur</AUni> -<AUni ws="qvm-x-acl">tambur</AUni> -<AUni ws="qvm-x-akh">tambur</AUni> -<AUni ws="qvm-x-akl">tambur</AUni> -<AUni ws="qvm-x-ame">tambur</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tambor</AUni> -<AUni ws="qvm-x-acl">+tambor</AUni> -<AUni ws="qvm-x-akh">+tambor</AUni> -<AUni ws="qvm-x-akl">+tambor</AUni> -<AUni ws="qvm-x-ame">+tambor</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.794" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="15d13fff-fb30-47d9-a601-b1a55e36a26a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tambor</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e81d35a9-089b-43db-90ec-3774940fd3f4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d48b8483-c8e7-4fdb-8b67-5f4c3a293b03" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tambor 
\entryTyp root 
\gENG small.drum 
\gSPN tambor 
\e +tambor 
\c N0 
\mp +FinalC 
\ach tambur 
\akh tambur 
\acl tambur 
\akl tambur 
\ame tambur</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="4cce2cfd-4a24-43b7-963c-f21ecea6a36c" ownerguid="e5a83d8b-9b46-426d-b9a6-85992dfd0fcd"> -<Form> -<AUni ws="qvm-x-ach">cupa</AUni> -<AUni ws="qvm-x-acl">cupa</AUni> -<AUni ws="qvm-x-akh">kupa</AUni> -<AUni ws="qvm-x-akl">kupa</AUni> -<AUni ws="qvm-x-ame">kupa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="4ccf58d7-3862-44be-827f-5632ac9ac40f" ownerguid="f8e9778a-93f5-431d-8c9f-7fc4d90e45f7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="4ccfa646-addf-46e1-acd4-efd21caa050a" ownerguid="d9fa5136-2134-4c33-9d60-36c3b92641cf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">because</AUni> -<AUni ws="es">porque</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0666433e-035d-4dcf-a868-90dbfa536f08" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="FsFeatStruc" guid="4cd146cd-b869-48a4-a075-4226ca327a72" ownerguid="ee11e7e3-3838-48c4-88ec-3815091bab33"> -<FeatureSpecs> -<objsur guid="23525f46-75e8-48ae-baae-b5fb65226a7d" t="o" /> -</FeatureSpecs> -<Type> -<objsur guid="efc7ecdf-44ed-4b11-9eef-41aaa905ca65" t="r" /> -</Type> -</rt> -<rt class="LexEntry" guid="4cd2b299-6eef-4173-a992-868d014b802b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsaca; tsaca:</AUni> -<AUni ws="qvm-x-acl">tsaca; tsaca:</AUni> -<AUni ws="qvm-x-akh">tsaka; tsaka:</AUni> -<AUni ws="qvm-x-akl">tsaka; tsaka:</AUni> -<AUni ws="qvm-x-ame">tsaka; tsaka:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chaka:</AUni> -<AUni ws="qvm-x-acl">*chaka:</AUni> -<AUni ws="qvm-x-akh">*chaka:</AUni> -<AUni ws="qvm-x-akl">*chaka:</AUni> -<AUni ws="qvm-x-ame">*chaka:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.262" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="56d36075-a5e9-4fca-9bc8-59d26f592c7e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chaka:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9c46a35b-0a14-45ee-920e-b4c7a127dadb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5d8ce688-9e5a-4dea-b62e-e59cb0ec3922" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chaka: 
\entryTyp root 
\gENG darken 
\gSPN oscurercer 
\e *chaka: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach tsaca foreshortened 
\ach tsaca: 
\akh tsaka foreshortened 
\akh tsaka: 
\acl tsaca foreshortened 
\acl tsaca: 
\akl tsaka foreshortened 
\akl tsaka: 
\ame tsaka foreshortened 
\ame tsaka: 
\i tsacarag gueru. Chavinillo dice tsacrarag gueru, con /r/. Pero, dice patsa tsacaycan. 
\mcc *chaka: / ~_ 2IMP.1 
\mcc *chaka: / ~_ ADV2</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4cd4ca14-feaf-409c-8843-99843a62b266" ownerguid="d80360f9-7319-40a7-a2bc-fd8718711ba4"> -<ExampleWords> -<AUni ws="en">previous, old, last (adj), earlier, former, prior, preceding, recent, preliminary</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that happened before?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4cda9f31-b74f-4de3-b010-2fce01634f7b" ownerguid="89a9e395-7530-4527-98e4-c153cac68269"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="4cdbe453-e4f8-47b8-afe4-307b973e01fc" ownerguid="6a4f5638-388e-4c8e-9bb7-8e742dac43db"> -<ExampleWords> -<AUni ws="en">bottom (n), underside, base, breech, foot, foundation, ventral, undersurface</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the bottom of something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4cddb225-4b58-4919-9297-20875cc5bfb9" ownerguid="81ee2959-dd6f-4cb7-8269-89a2ad94ac5d"> -<Form> -<AUni ws="qvm-x-ach">adöbi; adöbi</AUni> -<AUni ws="qvm-x-acl">adöbi; adöbi; adöbe</AUni> -<AUni ws="qvm-x-akh">adöbi; adöbi</AUni> -<AUni ws="qvm-x-akl">adöbi; adöbi; adöbe</AUni> -<AUni ws="qvm-x-ame">adöbi; adöbi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="4ce03270-0d3e-42da-a400-cec41526abcd" ownerguid="54205274-f35c-478c-9b20-37b0f7339f5d"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 12.11 Papänë läzuwan astashga cashuptiquipis nogaga fiërru puntayog ronzalwanragmi astashayquipag.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="4ce09546-0f38-40ad-b939-7226c0ad86c5" ownerguid="73b959ab-0229-4710-af99-dfc9b5370540"> -<ExampleWords> -<AUni ws="en">growth, explosion, hike, increase, rise</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the amount by which something became larger?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="4ce22ed0-6fe3-47ae-83e4-e7c7310cb1d4" ownerguid="2470ad05-636e-4c85-96ab-cd880da58741"> -<Abbreviation> -<AUni ws="en">4.9.7.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.304" /> -<DateModified val="2022-9-23 16:55:8.304" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words used in Hinduism.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Hinduism</AUni> -</Name> -<Questions> -<objsur guid="d6dd13d3-4c2e-47d3-9267-2f3a4f79dc7d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="4ce3bc7b-b059-4188-9625-7d91ea2539da" ownerguid="4e23b037-0547-4650-89c3-2b259b637fb6"> -<ExampleWords> -<AUni ws="en">month, this month, last month, next month, the months to come</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a month?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4ce86d40-d3fd-4c6c-83b9-69acb547f5a3" ownerguid="15be9a65-e841-4091-a9d9-c8890e78b3c5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="4cec8764-a40b-4f74-869e-fe76e17fc2bb" ownerguid="c81ae194-358e-47e3-a873-8523e2a1f043"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="4cec9045-a819-4790-8235-2d6f334658cf" ownerguid="478b01f9-5ca7-40c5-905e-22206dde93f1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="4cefadbd-33c2-4397-bf5a-687d0600043f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fiscal</AUni> -<AUni ws="qvm-x-acl">fiscal</AUni> -<AUni ws="qvm-x-akh">fiscal</AUni> -<AUni ws="qvm-x-akl">fiscal</AUni> -<AUni ws="qvm-x-ame">fiscal</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fiscal</AUni> -<AUni ws="qvm-x-acl">+fiscal</AUni> -<AUni ws="qvm-x-akh">+fiscal</AUni> -<AUni ws="qvm-x-akl">+fiscal</AUni> -<AUni ws="qvm-x-ame">+fiscal</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.558" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8b60b6be-9c28-4154-ab13-8d37ea48ffa0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fiscal</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5b20a534-6bfd-49fc-867e-40acf541aa98" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c97a2623-77b3-4522-a5a2-fbe9de9ddc89" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fiscal 
\entryTyp root 
\gENG prosecutor 
\gSPN fiscal 
\e +fiscal 
\c N0 
\mp +FinalC 
\ach fiscal 
\akh fiscal 
\acl fiscal 
\akl fiscal 
\ame fiscal</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4cf07c1f-b8aa-45e8-955c-880d3addaf8b" ownerguid="742996cd-b87f-40a8-bdb3-dba74219bd73"> -<ExampleWords> -<AUni ws="en">be warm, lukewarm, tepid</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is warm?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4cf28853-34b3-417b-8eee-8d5edcba2660"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rupya</AUni> -<AUni ws="qvm-x-acl">rupya</AUni> -<AUni ws="qvm-x-akh">rupya</AUni> -<AUni ws="qvm-x-akl">rupya</AUni> -<AUni ws="qvm-x-ame">rupya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rupya</AUni> -<AUni ws="qvm-x-acl">*rupya</AUni> -<AUni ws="qvm-x-akh">*rupya</AUni> -<AUni ws="qvm-x-akl">*rupya</AUni> -<AUni ws="qvm-x-ame">*rupya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.399" /> -<DateModified val="2022-10-10 21:19:47.691" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dd3e14a7-61c5-4fa4-a4a2-fd44c5b1f891" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rupya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b20a059b-fbf2-4ca1-b62f-f7748417389f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f4e9b10f-6b4d-48ee-a121-5d0c9cb5f0de" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rupya 
\entryTyp root 
\gENG in.heat 
\gSPN 
\e *rupya 
\c V1 
\ach rupya 
\akh rupya 
\acl rupya 
\akl rupya 
\ame rupya</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="4cf561fd-6439-4040-ab6f-a34db4b5eada" ownerguid="af651f9b-9471-4bcc-944c-c1f58b2a7de9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="4cfcbc1d-84f3-466d-84d1-55ddb4998ea2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gargu</AUni> -<AUni ws="qvm-x-acl">gargu; gargo</AUni> -<AUni ws="qvm-x-akh">qarqu</AUni> -<AUni ws="qvm-x-akl">qarqu; qarqo</AUni> -<AUni ws="qvm-x-ame">qarqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qarqu.v2</AUni> -<AUni ws="qvm-x-acl">*qarqu.v2</AUni> -<AUni ws="qvm-x-akh">*qarqu.v2</AUni> -<AUni ws="qvm-x-akl">*qarqu.v2</AUni> -<AUni ws="qvm-x-ame">*qarqu.v2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.124" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="73ffd175-ad05-4d66-af47-2c487b1126eb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qarqu.v2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6da469f9-1f0c-4335-acc0-6c49a7bb5c21" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="787e73b6-84a8-45dd-99cc-170258492e7f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qarqu.v2 
\entryTyp root 
\gENG throw.out 
\gSPN botar 
\e *qarqu.v2 
\c V2 
\ach gargu 
\akh qarqu 
\acl gargu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gargo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qarqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qarqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qarqu 
\mcc *qarqu.v2 / _... [trans]</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="4cfcff0f-d396-4309-b67c-c7357facd62c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">imayca</AUni> -<AUni ws="qvm-x-acl">imayca</AUni> -<AUni ws="qvm-x-akh">imayka</AUni> -<AUni ws="qvm-x-akl">imayka</AUni> -<AUni ws="qvm-x-ame">imayka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ima+ayka</AUni> -<AUni ws="qvm-x-acl">*ima+ayka</AUni> -<AUni ws="qvm-x-akh">*ima+ayka</AUni> -<AUni ws="qvm-x-akl">*ima+ayka</AUni> -<AUni ws="qvm-x-ame">*ima+ayka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.802" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5d92372a-45cd-41f2-81d2-484637c263bc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ima+ayka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3ca36744-0455-4b97-b50d-974223966812" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b50f021f-f2b5-45d1-b157-bbb5c4fa9154" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ima+ayka 
\entryTyp root 
\gENG 
\gSPN toda.clase 
\e *ima+ayka 
\c N0 
\ach imayca 
\akh imayka 
\acl imayca 
\akl imayka 
\ame imayka</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4cfe9d6a-57e5-413e-9bae-747d3c6dbd7d" ownerguid="48ac206f-2706-4500-bb63-2e499b790259"> -<ExampleWords> -<AUni ws="en">quick, sharp, whiz, be quick on the uptake, be on the ball, think on your feet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who can think quickly?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4cff0898-0578-450a-a181-2efc43449a21" ownerguid="1e419f7a-7363-46bc-8044-157ed0b40ccd"> -<ExampleWords> -<AUni ws="en">hold loosely</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to holding something loosely?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4d025f4f-0d45-445d-ac76-32ddb89d288c" ownerguid="6fa33de6-00f4-44d5-b6b3-b3c4a4f671e5"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">So, you are going, <hmm?></Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(2) English has an interjection that is added to a statement that has the effect of questioning something about it.</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4d040b38-4fb4-4bf7-8372-0ca7819dc383"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">malwa</AUni> -<AUni ws="qvm-x-acl">malwa</AUni> -<AUni ws="qvm-x-akh">malwa</AUni> -<AUni ws="qvm-x-akl">malwa</AUni> -<AUni ws="qvm-x-ame">malwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mallwa.v</AUni> -<AUni ws="qvm-x-acl">*mallwa.v</AUni> -<AUni ws="qvm-x-akh">*mallwa.v</AUni> -<AUni ws="qvm-x-akl">*mallwa.v</AUni> -<AUni ws="qvm-x-ame">*mallwa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.295" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="188bcef7-edc5-465b-ae81-ca4993aa67ab" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mallwa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b8251526-eed2-4ed2-a998-519ce7ca15ce" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d182dfeb-2032-42dc-ae71-531e123ec886" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mallwa.v 
\entryTyp root 
\gENG mate 
\gSPN aparear 
\e *mallwa.v 
\c V2 
\ach malwa 
\akh malwa 
\acl malwa 
\akl malwa 
\ame malwa 
\mcc *mallwa.v / ~_ ADV1 
\mcc *mallwa.v / ~_ [y]</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="4d05573f-9e71-4923-8dc2-6b68c856245a" ownerguid="198181cf-3363-4dee-b22c-c8bdaaf53ce0"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="4d097139-9c82-4d94-ba7e-f9f40f6dc5df" ownerguid="ca91e41a-81c3-4c96-87e6-f67477fcd686"> -<ExampleWords> -<AUni ws="en">nursery, crèche, childcare facility</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to a place where children are cared for?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4d0ae195-13ef-4eba-9050-4887643ce681" ownerguid="b49c25f0-a465-4350-86be-6787787e0eb7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">joist</AUni> -<AUni ws="es">tijeral</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="841724f6-dd8d-459c-87df-96a848cc84ee" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="4d0f1fda-47b6-47cb-850d-00b97a145ce2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">manya</AUni> -<AUni ws="qvm-x-acl">manya</AUni> -<AUni ws="qvm-x-akh">manya</AUni> -<AUni ws="qvm-x-akl">manya</AUni> -<AUni ws="qvm-x-ame">manya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*manya</AUni> -<AUni ws="qvm-x-acl">*manya</AUni> -<AUni ws="qvm-x-akh">*manya</AUni> -<AUni ws="qvm-x-akl">*manya</AUni> -<AUni ws="qvm-x-ame">*manya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.325" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eb2aadef-3d3c-40a5-b1e7-76f24f7c0f94" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*manya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d6870f03-3de7-4c10-b505-0ae24fcc9705" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8b510108-3ec3-49fe-9e99-4f3593692fd4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *manya 
\entryTyp root 
\gENG border 
\gSPN todo 
\e *manya 
\c N0 
\ach manya 
\akh manya 
\acl manya 
\akl manya 
\ame manya</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="4d122530-6468-468f-8946-263801672956" ownerguid="77301d7b-fb8f-47cf-90c8-2fa5e6d1a9e5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="46734274-7adc-45d4-ae42-32ece261d7be" t="o" /> -<objsur guid="5dbc8fe4-c6bf-42d6-808f-484d7ff66b98" t="o" /> -</Examples> -<Gloss> -<AUni ws="es">decaido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8b983418-76fe-4417-92cb-da43552bcf05" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4d13172c-73fd-429d-8197-15888d0ef2c4" ownerguid="34c9408c-c3f7-49db-8bce-de7fa7da03d7"> -<ExampleWords> -<AUni ws="en">arrest, get, take someone into custody, apprehend, detain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the police catching a criminal?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4d1968da-3821-4048-8f4e-747f18dd465a" ownerguid="995751ef-d71b-429c-a4ee-032f5b309bd7"> -<ExampleWords> -<AUni ws="en">full-blooded</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a person whose parents are from the same race?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4d19e80e-3377-4d8f-a9f4-bf94ea561563" ownerguid="aa64916d-be58-4591-9bd3-97cd0615fd54"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">use</AUni> -<AUni ws="es">utilizar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c3da4481-0321-4843-8ca6-04f7457cb9b3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="4d19f09f-035b-477e-862c-a4157acdfe81" ownerguid="60364974-a005-4567-82e9-7aaeff894ab0"> -<Abbreviation> -<AUni ws="en">1.3.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.963" /> -<DateModified val="2022-9-23 16:55:7.963" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing the quality or condition of water.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Water quality</AUni> -</Name> -<Questions> -<objsur guid="e6042ad2-43a7-48a5-8715-e824c414863b" t="o" /> -<objsur guid="6a67922e-7b63-42fa-b348-64ae20ba7ee9" t="o" /> -<objsur guid="e7c8dbce-0356-46a1-992f-56985c646c42" t="o" /> -<objsur guid="685d1e52-9800-456a-bed5-47345bc49fa5" t="o" /> -<objsur guid="d50c949c-b84a-447b-96f9-9f9392094191" t="o" /> -<objsur guid="bcc6f560-8b7d-4229-9b3c-4af4b887c30e" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="7beca90c-3671-4b3c-bf9a-fb8f08ff914b" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="4d1ac5e6-dfe3-4643-b6e5-21649a01cce9" ownerguid="c0b7f354-a75c-41d5-a489-ae2df6364d02"> -<Abbreviation> -<AUni ws="en">7.2.4.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.516" /> -<DateModified val="2022-9-23 16:55:8.516" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to railroads.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Railroad</AUni> -</Name> -<Questions> -<objsur guid="4bdda818-9bdf-488e-aa30-193a8e6d9719" t="o" /> -<objsur guid="7eb5e11d-357e-430f-9b1a-4618bf422382" t="o" /> -<objsur guid="a95f3a4f-4d36-47d6-86f8-982e656c7e43" t="o" /> -<objsur guid="b1fd9e10-82b4-48dc-bb05-41fff4e62e04" t="o" /> -<objsur guid="e403f3b4-6d0f-4073-9387-1eae91532b2a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="4d1e3980-7342-484a-a093-87f2998abf12" ownerguid="8dfbf570-5ea3-4d27-8399-31a3029596cf"> -<Form> -<AUni ws="qvm-x-ach">wegui</AUni> -<AUni ws="qvm-x-acl">wegui; wegui; wegue</AUni> -<AUni ws="qvm-x-akh">weqi</AUni> -<AUni ws="qvm-x-akl">weqi; weqi; weqe</AUni> -<AUni ws="qvm-x-ame">wiqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="4d21e4e8-9f3e-4adf-910a-22dfb674ab2c" ownerguid="205124a1-d3ff-4b0c-8c67-42149b6b23ca"> -<Form> -<AUni ws="qvm-x-ach">tsäga</AUni> -<AUni ws="qvm-x-acl">tsäga</AUni> -<AUni ws="qvm-x-akh">tsäqa</AUni> -<AUni ws="qvm-x-akl">tsäqa</AUni> -<AUni ws="qvm-x-ame">tsäqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="4d22a47b-8559-41a4-92dc-ac1591d7e383"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuyaylapag</AUni> -<AUni ws="qvm-x-acl">cuyaylapag</AUni> -<AUni ws="qvm-x-akh">kuyaylapaq</AUni> -<AUni ws="qvm-x-akl">kuyaylapaq</AUni> -<AUni ws="qvm-x-ame">kuyaylapaq</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kuyayllapaq</AUni> -<AUni ws="qvm-x-acl">*kuyayllapaq</AUni> -<AUni ws="qvm-x-akh">*kuyayllapaq</AUni> -<AUni ws="qvm-x-akl">*kuyayllapaq</AUni> -<AUni ws="qvm-x-ame">*kuyayllapaq</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.33" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0322b885-c893-4cc5-981f-98c3daa1be79" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kuyayllapaq</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cadb5186-5119-4af5-a95a-fc511f5d78bb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="125a1f7e-0ce6-4a29-ab84-ec4fb2278345" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kuyayllapaq 
\entryTyp root 
\gENG 
\gSPN 
\e *kuyayllapaq 
\c N0 
\mp NeverForeshortened 
\ach cuyaylapag 
\akh kuyaylapaq 
\acl cuyaylapag 
\akl kuyaylapaq 
\ame kuyaylapaq 
\mp +FinalC 
\i Exo 28.2 Wauguiqui Aarón respitädu cüra car jaticunanpag röpancunata ruratsinqui cuyaylapagta.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="4d259d03-9cd3-4908-8c44-856aef2707a7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lapya; lapya:</AUni> -<AUni ws="qvm-x-acl">lapya; lapya:</AUni> -<AUni ws="qvm-x-akh">lapya; lapya:</AUni> -<AUni ws="qvm-x-akl">lapya; lapya:</AUni> -<AUni ws="qvm-x-ame">lapya; lapya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llapya</AUni> -<AUni ws="qvm-x-acl">*llapya</AUni> -<AUni ws="qvm-x-akh">*llapya</AUni> -<AUni ws="qvm-x-akl">*llapya</AUni> -<AUni ws="qvm-x-ame">*llapya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.154" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5e3d9db3-176e-4675-8dda-934e80a84572" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llapya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="59551f80-c4b2-4385-ab09-6f55062dbe4d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6333cfe5-a293-4673-89f7-3c1ee15706e4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llapya 
\entryTyp root 
\gENG 
\gSPN 
\e *llapya 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach lapya foreshortened 
\ach lapya: 
\akh lapya foreshortened 
\akh lapya: 
\acl lapya foreshortened 
\acl lapya: 
\akl lapya foreshortened 
\akl lapya: 
\ame lapya foreshortened 
\ame lapya:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="4d296be1-9f70-4e48-ac7c-4667be0543cc" ownerguid="cef4e479-ed16-45a9-ab32-1da63f0b63ae"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="4d2a247e-4925-4750-8c39-e2d78665d33c" ownerguid="91913920-8a6a-4ba0-9361-d6cc9e1f3639"> -<Abbreviation> -<AUni ws="en">8.6.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.678" /> -<DateModified val="2022-9-23 16:55:8.678" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the inside part of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Inner part</AUni> -</Name> -<Questions> -<objsur guid="c3e79e81-ce9e-4c47-af56-e1f83f526609" t="o" /> -<objsur guid="8e574908-d691-4292-a0b9-cede5387a9b3" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="e2806bed-b450-4469-900a-1afa7ded2224" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="4d2a67fb-91c8-4436-87f4-f4eab6cb0828" ownerguid="cf337287-c9fa-43d2-93c4-284f45e262c0"> -<Abbreviation> -<AUni ws="en">2.5.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.47" /> -<DateModified val="2022-9-23 16:55:8.47" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to skin diseases such as leprosy, boils, and rashes.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Skin disease</AUni> -</Name> -<Questions> -<objsur guid="9b62f998-d519-4086-aad3-4022aeff4850" t="o" /> -<objsur guid="fe171c5a-c462-4e7d-b1ac-1fa0a11b6187" t="o" /> -<objsur guid="98ec54e3-789c-462c-889b-b24091a2ce5b" t="o" /> -<objsur guid="c3ec7802-f36e-488d-878d-ed8e53d3b0eb" t="o" /> -<objsur guid="e5716ab9-1ea7-40c7-b376-1a7f46cb74d4" t="o" /> -<objsur guid="e937661f-00e1-40e8-bc04-3e5d5550e810" t="o" /> -<objsur guid="bfa23d33-a943-4075-9102-47346592cec9" t="o" /> -<objsur guid="b0923815-0bd9-4f54-b61f-62f6fc6bc490" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="4d306819-ff55-4703-a666-2a0615d82e94" ownerguid="bb7c2722-353d-4fc1-bf9a-0cefcb5e4ab8"> -<Form> -<AUni ws="qvm-x-ach">pagshi</AUni> -<AUni ws="qvm-x-acl">pagshi; pagshe</AUni> -<AUni ws="qvm-x-akh">paqshi</AUni> -<AUni ws="qvm-x-akl">paqshi; paqshe</AUni> -<AUni ws="qvm-x-ame">paqshi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4d30e1dd-4dee-4b5d-b570-6f05328fcba6" ownerguid="e0b00a13-8648-4635-afe5-0be3c0b6a05c"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en"><It is possible that> he will come.; He <could> come.; He <might> come.; He <may> come.; <Maybe> he will come.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">maybe, perhaps, may, might, it is possible, possibly, could, who knows?, there's a chance, you never know, conceivably</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that maybe something may happen or is true?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="4d3412e3-85a0-4f81-9dad-efd6101b4945" ownerguid="eca46133-c350-4573-a349-9b7ce11b6fa8"> -<Abbreviation> -<AUni ws="en">6.7.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to bags.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Bag</AUni> -</Name> -<Questions> -<objsur guid="47831c57-b38b-4e1d-b532-acbefc553d43" t="o" /> -<objsur guid="7158de79-730a-4549-be75-268f68a3ef86" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="4d3455be-f020-447d-90c1-8ac891e032b1" ownerguid="4308b26b-16b7-454c-91e4-e58d2baaff9a"> -<Form> -<AUni ws="qvm-x-ach">carrëra</AUni> -<AUni ws="qvm-x-acl">carrëra</AUni> -<AUni ws="qvm-x-akh">carrëra</AUni> -<AUni ws="qvm-x-akl">carrëra</AUni> -<AUni ws="qvm-x-ame">carrëra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="4d36dfce-e558-4f9b-88f0-94ae5ccebf9a" ownerguid="d7d0ab6d-4b75-4800-8bc8-77eb50f6bc66"> -<Form> -<AUni ws="qvm-x-ach">sepra</AUni> -<AUni ws="qvm-x-acl">sepra</AUni> -<AUni ws="qvm-x-akh">sepra</AUni> -<AUni ws="qvm-x-akl">sepra</AUni> -<AUni ws="qvm-x-ame">sipra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="4d397875-e979-4721-8beb-4379a6a44fb4" ownerguid="06be368c-7db5-4823-a142-6501ca835e06"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">HOS 11.12 Kay textuqa hebreucho manami clärutsu. Tsaymi wakin traduccionkuna kayno nipäkun: <<Judá runakunami itsanqa käsukamar imaypis yärakaman.>></Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="4d3a794a-7043-4afc-a89e-904971076668"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rupa</AUni> -<AUni ws="qvm-x-acl">rupa</AUni> -<AUni ws="qvm-x-akh">rupa</AUni> -<AUni ws="qvm-x-akl">rupa</AUni> -<AUni ws="qvm-x-ame">rupa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rupa.n</AUni> -<AUni ws="qvm-x-acl">*rupa.n</AUni> -<AUni ws="qvm-x-akh">*rupa.n</AUni> -<AUni ws="qvm-x-akl">*rupa.n</AUni> -<AUni ws="qvm-x-ame">*rupa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.397" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6a1eeda6-583d-493d-bb18-61f5a5ada873" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rupa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f19a3ae1-d35c-4f8c-88d8-57701c86caa1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="910c78ba-996a-4127-b5ae-b98c48ffe8ff" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rupa.n 
\entryTyp root 
\gENG burnt 
\gSPN quemado 
\e *rupa.n 
\c N0 
\ach rupa 
\akh rupa 
\acl rupa 
\akl rupa 
\ame rupa 
\mcc *rupa.n / ~_ 3P 
\mcc *rupa.n / ~_ PRT2</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="4d3f9e06-c9d8-46ec-b41a-b605faa261f0" ownerguid="0825b038-b0b2-43ac-935d-d1a061ca70c8"> -<Form> -<AUni ws="qvm-x-ach">shuna; shunä</AUni> -<AUni ws="qvm-x-acl">shuna; shunä</AUni> -<AUni ws="qvm-x-akh">shuna; shunä</AUni> -<AUni ws="qvm-x-akl">shuna; shunä</AUni> -<AUni ws="qvm-x-ame">shuna; shunä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="4d417406-5c82-4fdd-85eb-54b0898ae633" ownerguid="4a4bdea2-89bf-4826-bde0-2bb1ead12835"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="4d4242f1-c327-41d4-a5ef-67951b990b90" ownerguid="bfe8902a-32a7-4092-93b2-9dcf3dce205f"> -<ExampleWords> -<AUni ws="en">upset, agitated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels upset?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4d47c4ee-eeeb-4c22-a457-61c404052923" ownerguid="6a1042a9-6c0f-4823-bfa1-6d72d140d836"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">carry.on.head</AUni> -<AUni ws="es">llevar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="60a61057-6b52-495d-a66c-5b8eb767ecb2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4d485f55-26d2-4920-bf51-b5b6022c183b" ownerguid="2a2af155-9db9-41c5-860a-fe0a3a09d6de"> -<ExampleWords> -<AUni ws="en">mind is full</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to thinking about many things?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4d490fd2-a612-433d-9bd1-76c373e35afc" ownerguid="753836ad-8751-4f9c-a204-b4f429529538"> -<Form> -<AUni ws="qvm-x-ach">estudiu; estudio</AUni> -<AUni ws="qvm-x-acl">estudiu; estudiu; estudio</AUni> -<AUni ws="qvm-x-akh">estudiu; estudio</AUni> -<AUni ws="qvm-x-akl">estudiu; estudiu; estudio</AUni> -<AUni ws="qvm-x-ame">estudiu; estudio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="4d498227-0038-4097-879e-8fea2b1f51b4" ownerguid="cfda2dd1-184c-4b49-b95a-a412bdf5b542"> -<Form> -<AUni ws="qvm-x-ach">ruyru</AUni> -<AUni ws="qvm-x-acl">ruyru; ruyru; ruyro</AUni> -<AUni ws="qvm-x-akh">ruyru</AUni> -<AUni ws="qvm-x-akl">ruyru; ruyru; ruyro</AUni> -<AUni ws="qvm-x-ame">ruyru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="4d4a9018-1649-4a04-b552-5df015cdca96" ownerguid="bd745493-61d8-47b0-9ff9-060f86ce7e17"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yapa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yapa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yapa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yapa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yapa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b97551e3-69a6-43ea-ae10-d470185d60aa" t="r" /> -</Morph> -<Msa> -<objsur guid="539e4c13-389e-4a99-8b99-689b17d59a65" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="4d4fbcca-5265-46f4-bd3c-514a35d95aee" ownerguid="5b7de51a-a16a-459e-8d2f-876f761ee7e0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="4d504c7f-55ba-43a1-b672-bd56bd6f2d04" ownerguid="fdaedbb6-8223-4884-86ff-cb2bad0e8175"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PhEnvironment" guid="4d5106b0-9756-4fc2-a2e3-b3bb0373fd9b" ownerguid="be765e3e-ea5e-11de-9d42-0013722f8dec"> -<Name> -<AUni ws="en">before a consonant + vowel</AUni> -</Name> -<StringRepresentation> -<Str> -<Run underline="none" ws="en">/_[C][V]</Run> -</Str> -</StringRepresentation> -</rt> -<rt class="CmDomainQ" guid="4d5131cc-fb26-44bc-b503-00eab71123df" ownerguid="68ed3e51-ddc4-4cec-89ff-605259ac9fcf"> -<ExampleWords> -<AUni ws="en">smell, breathe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What does the nose do?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4d517c48-d829-4aa7-ac93-26b18f15ccc6" ownerguid="5450043d-907b-4884-a9e5-35cfd5935947"> -<ExampleWords> -<AUni ws="en">shame, embarrassed, blush</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to feeling bad if you are naked?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4d52a228-3336-4323-a086-8d41d94d2b3e" ownerguid="970a70bf-bb15-4f18-92f0-8cc9d4c5b9cb"> -<Form> -<AUni ws="qvm-x-ach">actua</AUni> -<AUni ws="qvm-x-acl">actua</AUni> -<AUni ws="qvm-x-akh">actua</AUni> -<AUni ws="qvm-x-akl">actua</AUni> -<AUni ws="qvm-x-ame">actua</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="4d52d128-44c8-4574-a625-ecbd5828d87b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chashla</AUni> -<AUni ws="qvm-x-acl">chashla</AUni> -<AUni ws="qvm-x-akh">chashla</AUni> -<AUni ws="qvm-x-akl">chashla</AUni> -<AUni ws="qvm-x-ame">chashla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trayashqalla</AUni> -<AUni ws="qvm-x-acl">*trayashqalla</AUni> -<AUni ws="qvm-x-akh">*trayashqalla</AUni> -<AUni ws="qvm-x-akl">*trayashqalla</AUni> -<AUni ws="qvm-x-ame">*trayashqalla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.88" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="21c0be4f-602a-4acc-bc12-044382466345" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trayashqalla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c2000091-843f-4829-b102-4c6bf7b5b7a3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a7d36cfa-9f03-495b-aa5d-116e9260fb4c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trayashqalla 
\entryTyp root 
\gENG 
\gSPN 
\e *trayashqalla 
\c V1 
\ach chashla 
\akh chashla 
\acl chashla 
\akl chashla 
\ame chashla</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4d52f21f-9784-429f-aa3b-5daa75c16d62" ownerguid="14ad95ad-50fc-450f-b44d-4273df0b1e8b"> -<ExampleWords> -<AUni ws="en">period, span, while, length of time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to a period of time?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4d536ae0-2abc-49af-91e0-70767d9262a9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ticticya; ticticya:</AUni> -<AUni ws="qvm-x-acl">ticticya; ticticya:</AUni> -<AUni ws="qvm-x-akh">tiktikya; tiktikya:</AUni> -<AUni ws="qvm-x-akl">tiktikya; tiktikya:</AUni> -<AUni ws="qvm-x-ame">tiktikya; tiktikya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tiktikya:</AUni> -<AUni ws="qvm-x-acl">*tiktikya:</AUni> -<AUni ws="qvm-x-akh">*tiktikya:</AUni> -<AUni ws="qvm-x-akl">*tiktikya:</AUni> -<AUni ws="qvm-x-ame">*tiktikya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.896" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9910c87e-6b79-442e-ba64-b11bf7fb268d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tiktikya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fd9d4850-08f6-49ac-9d22-a69fcb618428" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="71409540-109b-4211-ba2c-cf9802d84798" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tiktikya: 
\entryTyp root 
\gENG 
\gSPN 
\e *tiktikya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach ticticya foreshortened 
\ach ticticya: 
\akh tiktikya foreshortened 
\akh tiktikya: 
\acl ticticya foreshortened 
\acl ticticya: 
\akl tiktikya foreshortened 
\akl tiktikya: 
\ame tiktikya foreshortened 
\ame tiktikya:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="4d547cde-098e-4304-96ac-0bf2d187b987" ownerguid="8cb8a608-a798-4aac-9da6-0266fea75421"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PhEnvironment" guid="4d5e1a72-550e-4cc6-b389-9af4ed72df6d" ownerguid="be765e3e-ea5e-11de-9d42-0013722f8dec"> -<StringRepresentation> -<Str> -<Run underline="none" ws="qvm-x-akh">/_rä</Run> -</Str> -</StringRepresentation> -</rt> -<rt class="CmDomainQ" guid="4d5f363d-10d6-486c-ab18-69f846295c5d" ownerguid="c7dbd50e-0ff5-42af-a7a9-9eaf03671c49"> -<ExampleWords> -<AUni ws="en">inconvenient, not convenient, be bad for, a bad time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is not convenient?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4d5ffd0b-4dce-4f6e-b166-aa996cd87e47"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">dibu:ju</AUni> -<AUni ws="qvm-x-acl">dibu:ju; dibu:ju; dibu:jo</AUni> -<AUni ws="qvm-x-akh">dibu:ju</AUni> -<AUni ws="qvm-x-akl">dibu:ju; dibu:ju; dibu:jo</AUni> -<AUni ws="qvm-x-ame">dibu:ju</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+dibujo</AUni> -<AUni ws="qvm-x-acl">+dibujo</AUni> -<AUni ws="qvm-x-akh">+dibujo</AUni> -<AUni ws="qvm-x-akl">+dibujo</AUni> -<AUni ws="qvm-x-ame">+dibujo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.406" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="48abe6f4-c885-41e7-96e0-7c426530ef1f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+dibujo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bac2c107-9d4c-438c-b899-4c46f24ff693" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="32a8b75f-144d-48b8-826b-fa2770fe46dd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +dibujo 
\entryTyp root 
\gENG 
\gSPN dibujo 
\e +dibujo 
\c N0 
\ach dibu:ju 
\akh dibu:ju 
\acl dibu:ju / _# 
\acl dibu:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl dibu:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl dibu:ju / _# 
\akl dibu:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl dibu:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame dibu:ju</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="4d60eb1f-bd22-45af-9581-dcc897efcfb4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lagla</AUni> -<AUni ws="qvm-x-acl">lagla</AUni> -<AUni ws="qvm-x-akh">laqla</AUni> -<AUni ws="qvm-x-akl">laqla</AUni> -<AUni ws="qvm-x-ame">laqla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llaqlla.v</AUni> -<AUni ws="qvm-x-acl">*llaqlla.v</AUni> -<AUni ws="qvm-x-akh">*llaqlla.v</AUni> -<AUni ws="qvm-x-akl">*llaqlla.v</AUni> -<AUni ws="qvm-x-ame">*llaqlla.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.162" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5304710b-b192-4a0c-bb11-c7d00ab6a5d7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llaqlla.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="46b4e928-51ab-4fb1-b4c4-295de6a3e0c0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="338c048a-b0d9-4136-9385-d89fcacefcb1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llaqlla.v 
\entryTyp root 
\gENG 
\gSPN 
\e *llaqlla.v 
\c V2 
\ach lagla 
\akh laqla 
\acl lagla 
\akl laqla 
\ame laqla</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4d61ad88-d69a-4297-b004-3a4ecb9b14f5" ownerguid="b158fe11-5af2-4467-bbc0-cc1aee766592"> -<ExampleWords> -<AUni ws="en">happen, occur, take place, chance, befall, betide, supervene</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to something happening?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="4d61f524-7213-4c2c-8c14-f8eff3aed813" ownerguid="d0dee676-f3ae-43cc-96f1-7e3bb65870f5"> -<Abbreviation> -<AUni ws="en">8.2.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.597" /> -<DateModified val="2022-9-23 16:55:8.597" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to being tight--when something is too small.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Tight</AUni> -</Name> -<Questions> -<objsur guid="bdbd75e4-49ca-4d20-a638-2ca3b56b2a1f" t="o" /> -<objsur guid="b08565a4-5bb2-4cdf-badf-2beffa5a32e5" t="o" /> -<objsur guid="b2cdfcc3-f849-40d8-b324-df85eb154058" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="4d65251d-373c-4d45-b469-1ca2c2fa5140" ownerguid="9b476afd-58c2-46a2-8294-449ac4aad3a9"> -<ExampleWords> -<AUni ws="en">monastery, convent, parsonage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) Where do religious leaders live?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4d6641ab-f818-4d27-bd9f-745eaf5c701a" ownerguid="928741b5-bff6-4dd1-be37-ec6e7a4eb6ca"> -<ExampleWords> -<AUni ws="en">island, isle, islet, archipelago, atoll, key</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to an island?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="4d67f49e-97a1-45bb-a6b2-28a44cc75518"> -<Form> -<Str> -<Run ws="qvm-x-akh">—</Run> -</Str> -</Form> -</rt> -<rt class="MoStemMsa" guid="4d6cb4ec-ddb6-4208-9809-9a5caf9a8c24" ownerguid="e83698b6-a3be-42b4-881f-10382f4514c6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StStyle" guid="4d6cffc4-254e-4ef7-b26b-41aab4bfbf48" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="5" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>UiElement</Uni> -</Name> -<Rules> -<Prop> -<WsStyles9999> -<WsProp fontFamily="Microsoft Sans Serif" fontsize="10000" fontsizeUnit="mpt" ws="en"></WsProp> -<WsProp fontFamily="Microsoft Sans Serif" fontsize="10000" fontsizeUnit="mpt" ws="es"></WsProp> -</WsStyles9999> -</Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<Usage> -<AUni ws="en">This is a special style used for certain parts of the FieldWorks user interface. You should not normally modify it.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="MoStemAllomorph" guid="4d730c5d-7516-43cf-985a-dc3e37575b0f" ownerguid="e7ef1518-74a7-498a-b2de-0721f589a565"> -<Form> -<AUni ws="qvm-x-ach">juiciösu</AUni> -<AUni ws="qvm-x-acl">juiciösu; juiciösu; juiciöso</AUni> -<AUni ws="qvm-x-akh">juiciösu</AUni> -<AUni ws="qvm-x-akl">juiciösu; juiciösu; juiciöso</AUni> -<AUni ws="qvm-x-ame">juiciösu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4d789d62-f441-4750-a8af-7066c1bd4a49" ownerguid="57e367f4-7029-4916-a700-791db32b4745"> -<ExampleWords> -<AUni ws="en">economize, scrimp and save, budget, tighten your belt, live on a shoestring</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to not spending a lot of money?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4d78f5c6-64bd-428e-aa27-8059b2567da0" ownerguid="153b30a4-afac-4e88-9720-619551126cc0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="4d798f5d-c10b-49ec-82fa-1669b68b2d93"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">namura</AUni> -<AUni ws="qvm-x-acl">namura</AUni> -<AUni ws="qvm-x-akh">namura</AUni> -<AUni ws="qvm-x-akl">namura</AUni> -<AUni ws="qvm-x-ame">namura</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+enamorar</AUni> -<AUni ws="qvm-x-acl">+enamorar</AUni> -<AUni ws="qvm-x-akh">+enamorar</AUni> -<AUni ws="qvm-x-akl">+enamorar</AUni> -<AUni ws="qvm-x-ame">+enamorar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.457" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dfcbdc8c-5063-4617-b36a-58997e723ffa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+enamorar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="53982e68-e61c-489c-b137-1ca81194e344" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2de85fd6-01d9-4b92-9d3f-8d05106f8a6c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +enamorar 
\entryTyp root 
\gENG in.love 
\gSPN enamorar 
\e +enamorar 
\c V1 
\ach namura 
\akh namura 
\acl namura 
\akl namura 
\ame namura 
\i GEN 34.8 Tsurë Shequemmi panikipaq pasaypa namurädu kashpan löcuyashqa puriykan.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="4d80670f-7cea-4381-bd29-2a1d7fdb295a" ownerguid="ddfd5465-72db-4690-a44d-ce338517274b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="178ba3a5-991c-48c0-ad6d-b168d6dd718c" t="o" /> -<objsur guid="a540c97a-4d98-4e4b-9575-4cb09b431013" t="o" /> -<objsur guid="75b64a3f-fb30-4a38-905f-b7ac9331f82d" t="o" /> -<objsur guid="fdde5c1b-199e-41e6-896e-cbd304310735" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="4d80b0df-c472-4a3f-ae26-5bffef5413ec" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<ExampleWords> -<AUni ws="en">be sad, feel sad, feel down, grieve, mourn, feel sorry for yourself, sulk, wallow in, feel hurt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling sad?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="4d8a2aae-c80c-4007-84b5-5255881a284c" ownerguid="044eef17-ef15-46c5-9ff5-83b31c637421"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="d6ef54ce-9dce-43b1-a617-e4e5bbb47286" t="o" /> -<objsur guid="778a34fd-dcf4-4c25-83a5-54d14df67b1a" t="o" /> -<objsur guid="bf3bf799-fa78-4d1c-8752-cec9cec78098" t="o" /> -<objsur guid="fee6351b-c379-415a-880a-6908fef6c3ef" t="o" /> -<objsur guid="171a6ed5-1da6-49e7-9c46-3dee20862d84" t="o" /> -<objsur guid="048f1365-00c8-4a92-85a6-3bfc5f41ddfe" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="4d8d52ab-8854-4a42-8e12-34604f635f67"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yanu</AUni> -<AUni ws="qvm-x-acl">yanu; yano</AUni> -<AUni ws="qvm-x-akh">yanu</AUni> -<AUni ws="qvm-x-akl">yanu; yano</AUni> -<AUni ws="qvm-x-ame">yanu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yanu</AUni> -<AUni ws="qvm-x-acl">*yanu</AUni> -<AUni ws="qvm-x-akh">*yanu</AUni> -<AUni ws="qvm-x-akl">*yanu</AUni> -<AUni ws="qvm-x-ame">*yanu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.739" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="869f6955-6d41-4fda-ba3d-8da10db81a7a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yanu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="197e93ef-1596-43b2-af57-9042c6eab31f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="940c44e5-f1de-4b20-aa81-3f31feb5427e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yanu 
\entryTyp root 
\gENG cook 
\gSPN cocinar 
\e *yanu 
\c V2 
\ach yanu 
\akh yanu 
\acl yanu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl yano +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yanu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yano +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame yanu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="4d8d9a08-8b8c-47c8-811c-0a577d67e53f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">watya</AUni> -<AUni ws="qvm-x-acl">watya</AUni> -<AUni ws="qvm-x-akh">watya</AUni> -<AUni ws="qvm-x-akl">watya</AUni> -<AUni ws="qvm-x-ame">watya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*watya.v</AUni> -<AUni ws="qvm-x-acl">*watya.v</AUni> -<AUni ws="qvm-x-akh">*watya.v</AUni> -<AUni ws="qvm-x-akl">*watya.v</AUni> -<AUni ws="qvm-x-ame">*watya.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.576" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fa1deeb3-e0c6-4b1f-83d9-255fc09c64b6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*watya.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8ede9c9d-ec56-4026-b0c1-7ef6e377e3aa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a7f7f1c0-406c-4815-84d2-c899ac121b50" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *watya.v 
\entryTyp root 
\gENG roast 
\gSPN asar 
\e *watya.v 
\c V2 
\ach watya 
\akh watya 
\acl watya 
\akl watya 
\ame watya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4d918726-a553-46fd-b6c9-9ca02c63764a" ownerguid="c2dbe83a-d638-45ac-a6d5-5f041b9dde71"> -<ExampleWords> -<AUni ws="en">be disabled, have special needs, be crippled, be lame, be paralyzed, have a withered arm</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being disabled?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4d92f3ec-8a5d-4468-84c0-01ae89ab3ca9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rogu</AUni> -<AUni ws="qvm-x-acl">rogu; rogo</AUni> -<AUni ws="qvm-x-akh">roqu</AUni> -<AUni ws="qvm-x-akl">roqu; roqo</AUni> -<AUni ws="qvm-x-ame">ruqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ruqu.v</AUni> -<AUni ws="qvm-x-acl">*ruqu.v</AUni> -<AUni ws="qvm-x-akh">*ruqu.v</AUni> -<AUni ws="qvm-x-akl">*ruqu.v</AUni> -<AUni ws="qvm-x-ame">*ruqu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.409" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e04fc905-996e-476c-aa1f-6d287ea9bf21" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ruqu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e8fe8ec5-3a62-433e-9196-002681ccd441" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7952aab6-a752-4a02-8b37-586d66cf8570" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ruqu.v 
\entryTyp root 
\gENG sever 
\gSPN cortar 
\e *ruqu.v 
\c V2 
\ach rogu 
\akh roqu 
\acl rogu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl rogo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl roqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl roqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ruqu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="4d951bc2-d057-43d1-8351-d415904eed63" ownerguid="2bdfe506-0a28-45bd-81e1-44dcedcc262a"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="4d9711ca-57a4-45a6-9e70-08f9f70d9932" ownerguid="5cb8967d-5c07-4fc5-8e4c-778dec9cc384" /> -<rt class="MoStemMsa" guid="4d978dd9-f495-4571-80cc-a142b61cc06a" ownerguid="ed6efe5f-8b62-419d-a01f-ffb8bf4ceb06"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="4d988f15-7d59-4021-b721-4ca746eaf932" ownerguid="92cf5055-f329-4301-a1b8-acf9d02c7e60"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="4d989341-2640-44a1-8a39-bce1b3feac0a" ownerguid="b5f45cd2-8dd5-4a74-b334-0d4859d26d89"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="0598b89b-67dc-4a37-b3f3-fc97fed1c782" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="432c0230-984e-4af6-862b-c11985596062" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4d98cd09-06be-43f9-8510-d10636a2292a" ownerguid="d60faf11-cc6e-48db-8a13-82f86d78ab00"> -<ExampleWords> -<AUni ws="en">act, action, active, activity, do, event, process</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to physical actions?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4d9d16e8-1083-45c1-98b4-01d0b4234085" ownerguid="8a81b9bc-9c66-4d57-a2d1-2e592604c4b1"> -<ExampleWords> -<AUni ws="en">refill, replenish, top up, top off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to filling something again after it has been emptied?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4d9ea94b-52c8-43f1-8c8b-f50993f82aeb" ownerguid="ed4a2ca6-c03c-4c72-9431-b72fb7294b8f"> -<ExampleWords> -<AUni ws="en">marry (the couple), perform the wedding</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to performing a wedding ceremony?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4da008a7-578a-4aa2-a6e7-e03a4b9249da" ownerguid="93489181-ad8c-4a18-8dbc-fd7a9c871126"> -<ExampleWords> -<AUni ws="en">sullen, surly, sulky, sulk, be in a sulk, give someone the silent treatment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who refuses to talk because they are angry?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4da677a0-5681-4b69-9e94-5a1673e9fe7e" ownerguid="cca44b46-437c-42ee-93d7-a8820d61d0c8"> -<ExampleWords> -<AUni ws="en">prosecutor, district attorney, prosecuting attorney, attorney general</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What is a lawyer called who tries to convict the accused person?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4da72806-de83-4513-8929-d13092774373" ownerguid="c8749481-41bd-4411-8265-e512f23b489a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shelves</AUni> -<AUni ws="es">estantes</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="644db15f-85f1-46f4-a632-6d888927a790" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="4da84e2a-3ba2-4944-b6af-dcabc3e15265" ownerguid="80cc6767-3e19-4cee-8ca5-fbdaee4f5bd7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6e70001d-9744-4171-a010-c98c41da2824" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="4daad1d2-6cfb-469d-9288-69602e35b12d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jacu</AUni> -<AUni ws="qvm-x-acl">jacu; jacu; jaco</AUni> -<AUni ws="qvm-x-akh">jaku</AUni> -<AUni ws="qvm-x-akl">jaku; jaku; jako</AUni> -<AUni ws="qvm-x-ame">haku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*haku</AUni> -<AUni ws="qvm-x-acl">*haku</AUni> -<AUni ws="qvm-x-akh">*haku</AUni> -<AUni ws="qvm-x-akl">*haku</AUni> -<AUni ws="qvm-x-ame">*haku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.648" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b7e73bed-f50c-4a03-b848-455adeebf442" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*haku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c69c204e-85ae-48cc-95b0-8e716ac96c9e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6e4f1868-efa8-46f9-a00b-0d2fcba0b592" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *haku 
\entryTyp root 
\gENG carrier 
\gSPN manta 
\e *haku 
\c N0 
\ach jacu 
\akh jaku 
\acl jacu / _# 
\acl jacu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl jaco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jaku / _# 
\akl jaku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl jako +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame haku</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="4dac5201-dc6a-4ac4-8e9e-3988c537e7e4" ownerguid="d7042f12-7d43-4ec9-ac0c-9173c2fbb1dc"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2CO 6.2 Gänächo kashqä hörami manakamashqaykita mayashkä.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="4dae2664-4192-4cb1-9e99-f8c0e5705c6e" ownerguid="09b9a89f-38ee-4b45-99ed-a094074bd4f6"> -<Form> -<AUni ws="qvm-x-ach">jatusag</AUni> -<AUni ws="qvm-x-acl">jatusag</AUni> -<AUni ws="qvm-x-akh">jatusaq</AUni> -<AUni ws="qvm-x-akl">jatusaq</AUni> -<AUni ws="qvm-x-ame">hatusaq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="4db0b9be-4c9c-47b8-a0d8-d16f147564fe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">puti</AUni> -<AUni ws="qvm-x-acl">puti; puti; pute</AUni> -<AUni ws="qvm-x-akh">puti</AUni> -<AUni ws="qvm-x-akl">puti; puti; pute</AUni> -<AUni ws="qvm-x-ame">puti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puti</AUni> -<AUni ws="qvm-x-acl">*puti</AUni> -<AUni ws="qvm-x-akh">*puti</AUni> -<AUni ws="qvm-x-akl">*puti</AUni> -<AUni ws="qvm-x-ame">*puti</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.43" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7e149909-5926-48c9-abfe-cec13e9d5394" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puti</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9e285fa9-7e38-4225-8378-c10a367868d8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9e6528e7-35dd-4b61-8549-e66fa5c4b0c2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puti 
\entryTyp root 
\gENG 
\gSPN 
\e *puti 
\c N0 
\mp +FinalI 
\ach puti 
\akh puti 
\acl puti / _# 
\acl puti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pute +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl puti / _# 
\akl puti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pute +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame puti</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4db1c199-a65c-45dc-a3fb-c0557b6f8375" ownerguid="eb842dc1-ad9c-4c1a-9eb2-a48b7f3092be"> -<ExampleWords> -<AUni ws="en">air</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something belonging to the air force?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4db1ebc5-e467-499c-b0e7-ac802596c70b" ownerguid="e7caa24f-155d-47cd-946d-cc0d06dfc764"> -<ExampleWords> -<AUni ws="en">lover, well-wishers</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to someone who loves?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4db71386-1598-45be-a253-3ca584ee6ef8" ownerguid="3710e019-46c9-44db-a0aa-9054d3126161"> -<ExampleWords> -<AUni ws="en">addict, user, junkie</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a person who takes drugs?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4db7beac-642c-4eb0-8efa-40b4ce911da5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cárcel; carcil</AUni> -<AUni ws="qvm-x-acl">cárcel; carcil; carcel</AUni> -<AUni ws="qvm-x-akh">cárcel; carcil</AUni> -<AUni ws="qvm-x-akl">cárcel; carcil; carcel</AUni> -<AUni ws="qvm-x-ame">cárcel; carcil</AUni> -</Custom> -<AlternateForms> -<objsur guid="c723cf9a-4853-47ab-8829-217eb00a53cb" t="o" /> -<objsur guid="a11c7386-0344-42fa-a682-89164700ed12" t="o" /> -</AlternateForms> -<CitationForm> -<AUni ws="qvm-x-ach">+cárcel.1</AUni> -<AUni ws="qvm-x-acl">+cárcel.1</AUni> -<AUni ws="qvm-x-akh">+cárcel.1</AUni> -<AUni ws="qvm-x-akl">+cárcel.1</AUni> -<AUni ws="qvm-x-ame">+cárcel.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.920" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d6fca4a5-a1b9-485b-bd96-61bbbbec0bf1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cárcel.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="423d7370-f1aa-4314-94ef-86c6211c7e9b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="632fd3a1-c6d3-46e8-a969-01716bcda945" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cárcel.1 
\entryTyp root 
\gENG jail 
\gSPN cárcel 
\e +cárcel.1 
\c N0 
\mp +FinalC 
\ach cárcel / _# 
\ach carcil / ~_# 
\akh cárcel / _# 
\akh carcil / ~_# 
\acl cárcel / _# 
\acl carcil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl carcel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cárcel / _# 
\akl carcil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl carcel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame cárcel / _# 
\ame carcil / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="4dbb45e7-bea8-497b-a74f-e63b716db622" ownerguid="efc4ecf6-f71a-47c6-9b9c-d5c59dab61f2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="eb230267-bcb2-4051-8c13-a468d10f569b" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">weight</AUni> -<AUni ws="es">peso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="09b28265-dff7-4171-a8f9-dba380f80d49" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="4dbbb352-e452-454a-a9af-b023ed5555ed" ownerguid="d71826d3-83ba-4fd5-ad37-499370411f03"> -<Form> -<AUni ws="qvm-x-ach">achachay</AUni> -<AUni ws="qvm-x-acl">achachay</AUni> -<AUni ws="qvm-x-akh">achachay</AUni> -<AUni ws="qvm-x-akl">achachay</AUni> -<AUni ws="qvm-x-ame">achachay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="4dc50300-5e81-4a47-a5c5-d0434d75eb81"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sagra</AUni> -<AUni ws="qvm-x-acl">sagra</AUni> -<AUni ws="qvm-x-akh">saqra</AUni> -<AUni ws="qvm-x-akl">saqra</AUni> -<AUni ws="qvm-x-ame">saqra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*saqra.n</AUni> -<AUni ws="qvm-x-acl">*saqra.n</AUni> -<AUni ws="qvm-x-akh">*saqra.n</AUni> -<AUni ws="qvm-x-akl">*saqra.n</AUni> -<AUni ws="qvm-x-ame">*saqra.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.457" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9b7a8671-2641-45d3-8cae-b8363c830296" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*saqra.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="daf84e25-fc74-4136-9897-3df23190b13e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c541232b-edc5-4bd4-bbeb-92beea5020c4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *saqra.n 
\entryTyp root 
\gENG decrepit 
\gSPN decrépito 
\e *saqra.n 
\c N0 
\ach sagra 
\akh saqra 
\acl sagra 
\akl saqra 
\ame saqra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="4dc63b4c-d62e-46a3-9257-a888174bbff8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cantu; canto</AUni> -<AUni ws="qvm-x-acl">cantu; cantu; canto</AUni> -<AUni ws="qvm-x-akh">cantu; canto</AUni> -<AUni ws="qvm-x-akl">cantu; cantu; canto</AUni> -<AUni ws="qvm-x-ame">cantu; canto</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+canto</AUni> -<AUni ws="qvm-x-acl">+canto</AUni> -<AUni ws="qvm-x-akh">+canto</AUni> -<AUni ws="qvm-x-akl">+canto</AUni> -<AUni ws="qvm-x-ame">+canto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.41" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="12fb0f74-8f09-4fbe-bc7b-41c9352a0111" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+canto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ea2deae4-3e00-4449-9a01-44be8da2c945" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6769d733-4db1-41a3-8464-048bf0b0db23" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +canto 
\entryTyp root 
\gENG song 
\gSPN 
\e +canto 
\c N0 
\ach cantu / ~_# 
\ach canto / _# 
\akh cantu / ~_# 
\akh canto / _# 
\acl cantu / ~_# 
\acl cantu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl canto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cantu / ~_# 
\akl cantu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl canto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cantu / ~_# 
\ame canto / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="4dc64a3a-9db8-49b2-9f70-ea1efa1c5de5"> -<Analyses> -<objsur guid="91ef6c77-bb2f-479a-890e-5cd6aa8694df" t="o" /> -</Analyses> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Sueñuynikicho</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="4dc66144-c89c-4fc3-8be4-1d0458024223" ownerguid="56af7635-6d73-41c5-a74e-a55e2bde7edb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">colonel</AUni> -<AUni ws="es">coronel</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3235b8c1-d71e-4e20-a354-744403a3f7ba" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="4dcee76b-2e7c-4757-8ffe-48c85f72e5df" ownerguid="b288f0f1-b148-4b70-87f1-0cd24f92dd5d"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Olgu wamra yuriptin nipäcun cananmi si chacra wagan, gueru wagan, munticunapis wagan. Pay shacsharcurnaga aröshimäshun.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="4dd0dee1-1ccc-4bef-881b-e33b71c49a54" ownerguid="d0a01de3-c88d-4904-91a9-9ea33ab82528"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ku</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ku</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b952a19-fce6-44e5-ab25-c091ef27f843" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -<Sense> -<objsur guid="909cfa11-00e3-4787-b51b-dfac729061be" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="4dd3091f-75aa-476c-bcb4-3e246fd359cb" ownerguid="975d0109-1bba-4b0e-85b8-2c6b51c8e074"> -<ExampleWords> -<AUni ws="en">seat someone, show someone to their seat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to causing someone to sit?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4dd6501e-52b0-4503-85fd-d484dd8e3051" ownerguid="6048bde3-5661-48f9-8b50-c9aaccf06f89"> -<Form> -<AUni ws="qvm-x-ach">ñöca</AUni> -<AUni ws="qvm-x-acl">ñöca</AUni> -<AUni ws="qvm-x-akh">ñöka</AUni> -<AUni ws="qvm-x-akl">ñöka</AUni> -<AUni ws="qvm-x-ame">ñüka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4dd8b7aa-8853-4313-a5ad-0b14c5e4129f" ownerguid="9e98c76f-6c1c-4b7d-8f71-38f9f0e8750e"> -<ExampleWords> -<AUni ws="en">uproot, pull, dig out (stump), root out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to uprooting plants?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4dd9e1f0-4609-4c62-b4df-b82a35e5594e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pag</AUni> -<AUni ws="qvm-x-acl">pag</AUni> -<AUni ws="qvm-x-akh">paq</AUni> -<AUni ws="qvm-x-akl">paq</AUni> -<AUni ws="qvm-x-ame">paq</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.566" /> -<DateModified val="2022-10-16 15:27:47.114" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="2" /> -<LexemeForm> -<objsur guid="aa748aa0-d1af-450e-92e1-cac14bcd12da" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">PUR1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="01f553e1-5eb4-4a63-9066-6708cdc08588" t="o" /> -<objsur guid="f4af2584-9c15-43e4-b912-5e626cdaa68c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="acb15b44-5d4d-4b55-ae65-993eb193f477" t="o" /> -<objsur guid="60bf1931-3d89-4b0f-bec9-3c70409b9771" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx PUR1 
\entryTyp suffix 
\gENG PUR 
\gSPN PROP 
\e PUR1 
\c N0/N0 BN/BN R0/R0 
\o 200, 220 
\mp NeverForeshortened 
\ach pag 
\akh paq 
\acl pag 
\akl paq 
\ame paq 
\mp +FinalC 
\mcc PUR1 / ~_ BEC 2O 
\mcc PUR1 / ~_ BEC 
\mcc PUR1 / ~_ DIST2 3FUT 
\mcc PUR1 / ~_ PUR1</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="4ddd44c6-b807-44da-982d-f4517b448594" ownerguid="ce59ddff-d85b-45e8-9422-f4a6f6f2f0b9"> -<Form> -<AUni ws="qvm-x-ach">weray</AUni> -<AUni ws="qvm-x-acl">weray</AUni> -<AUni ws="qvm-x-akh">weray</AUni> -<AUni ws="qvm-x-akl">weray</AUni> -<AUni ws="qvm-x-ame">wiray</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="4dde96da-260a-4194-a7a8-30a1a68e2fd3" ownerguid="f7ffe78a-e1c6-41a1-ad6a-d88079d397d4" /> -<rt class="LexSense" guid="4ddea36b-aa61-47aa-b47f-31dc4d65a357" ownerguid="de2dab57-b870-491d-b6d2-bd5169aa88c7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">law</AUni> -<AUni ws="es">ley</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="820131b8-5f87-482f-b4c7-c2e0efbed595" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4de07180-9600-4871-8a4f-c1fc7bee8890" ownerguid="b14db9f4-5e1d-4a2b-bec0-0d6bcb5b1a31"> -<ExampleWords> -<AUni ws="en">trip, slip, stumble, lose your balance, lose your footing, keep your balance, stay up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to almost falling?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4de11d42-bbc2-4b71-9dcd-b4d4643af8b5" ownerguid="62c41d98-6222-4129-9b0e-5854f2463531"> -<Form> -<AUni ws="qvm-x-ach">chapitón; chapiton</AUni> -<AUni ws="qvm-x-acl">chapitón; chapiton</AUni> -<AUni ws="qvm-x-akh">chapitón; chapiton</AUni> -<AUni ws="qvm-x-akl">chapitón; chapiton</AUni> -<AUni ws="qvm-x-ame">chapitón; chapiton</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="4de25240-867b-4e2a-845c-14f2bc956e0d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pla:ga</AUni> -<AUni ws="qvm-x-acl">pla:ga</AUni> -<AUni ws="qvm-x-akh">pla:ga</AUni> -<AUni ws="qvm-x-akl">pla:ga</AUni> -<AUni ws="qvm-x-ame">pla:ga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+plaga</AUni> -<AUni ws="qvm-x-acl">+plaga</AUni> -<AUni ws="qvm-x-akh">+plaga</AUni> -<AUni ws="qvm-x-akl">+plaga</AUni> -<AUni ws="qvm-x-ame">+plaga</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.871" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="df458bef-5c75-4f8b-9343-17300ad922f8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+plaga</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5cf2ed80-9593-4ec2-9f59-650567bb3500" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3a33872e-db6e-4004-90b0-bd6c23562182" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +plaga 
\entryTyp root 
\gENG plague 
\gSPN plaga 
\e +plaga 
\c N0 
\ach pla:ga 
\akh pla:ga 
\acl pla:ga 
\akl pla:ga 
\ame pla:ga</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4dea034b-be1f-4540-82d1-271cbbd5b908" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<ExampleWords> -<AUni ws="en">depressed, despondent, down, be down in the dumps, feel blue, low, mope</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to feeling sad for a long time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4dea33ba-dc32-44b7-b42b-0abf8d17bb53" ownerguid="3cb4c07c-8760-4ff9-8d45-1c0bed80ffb3"> -<ExampleWords> -<AUni ws="en">kick, turn, drop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to what a baby does?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="4dea4b1c-6557-4c35-bb7a-2450139a4239"> -<Form> -<Str> -<Run ws="en">mikatsi</Run> -</Str> -</Form> -</rt> -<rt class="LexEntry" guid="4deb64e2-1dfb-4fc8-8761-6be8107630cd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ye:su</AUni> -<AUni ws="qvm-x-acl">ye:su; ye:su; ye:so</AUni> -<AUni ws="qvm-x-akh">ye:su</AUni> -<AUni ws="qvm-x-akl">ye:su; ye:su; ye:so</AUni> -<AUni ws="qvm-x-ame">ye:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+yeso</AUni> -<AUni ws="qvm-x-acl">+yeso</AUni> -<AUni ws="qvm-x-akh">+yeso</AUni> -<AUni ws="qvm-x-akl">+yeso</AUni> -<AUni ws="qvm-x-ame">+yeso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.780" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="69129c13-6be5-4b9b-a952-4bec37a6abb5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+yeso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b6bbffa2-1a51-49a5-a7e1-838641ada612" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c3cf4a53-8e7c-4746-b6bd-1a384ff426de" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +yeso 
\entryTyp root 
\gENG plaster 
\gSPN yeso 
\e +yeso 
\c N0 
\ach ye:su 
\akh ye:su 
\acl ye:su / _# 
\acl ye:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ye:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ye:su / _# 
\akl ye:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ye:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ye:su</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4dec2011-1f40-48d1-b227-6254116094f2" ownerguid="16ee1e09-27ad-48c5-aa07-6933ecbbc716"> -<ExampleWords> -<AUni ws="en">harden, set, stiffen up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something becoming hard?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4decbc06-ecdc-44ab-b090-b260e6c16aed" ownerguid="6f3aae2b-f3f4-470e-8348-fdff71b72706"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="4df8ade0-9734-4525-b518-f83eb26fb843" ownerguid="60ba31b6-c83e-4054-9d5f-041f5e79b48d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="4df9a436-0386-4d8e-a187-92e5c8842020" ownerguid="0c21ae3d-10b1-481f-8d8f-66e2590c4578"> -<ExampleWords> -<AUni ws="en">loaf, goof off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to an inappropriate rest?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4dfa41a7-997b-49db-a7d6-bd18d7388edf" ownerguid="f211de02-1d76-4edd-b61a-d6b65f027782"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="4e032802-6d9d-4487-a85c-eb92f2c7d05e" ownerguid="84c0d211-d8b5-43db-89ba-207123efad9e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ADV4</AUni> -<AUni ws="es">ADV4</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="343b8dc5-eec2-4cec-b5df-a2909c950e5c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4e04eb65-8923-4eb5-a65d-9b912b5c84c7" ownerguid="756728a8-9eb8-4329-aee2-d6a3d64585f2"> -<ExampleWords> -<AUni ws="en">boil, evaporate, evaporation, vaporize, steam</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to liquids changing into gases?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4e07933c-158b-49c9-9671-f2b2e9894b3a" ownerguid="d014a4fa-c994-4fc4-ae4d-cbb9039aae7f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="4e0992cd-c04c-4b55-beab-6b0a3c98a994" ownerguid="9e6d7c69-788c-4d40-8584-32f185e91932"> -<Abbreviation> -<AUni ws="en">6.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to hunting birds.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Hunting birds</AUni> -</Name> -<OcmCodes> -<Uni>223 Fowling</Uni> -</OcmCodes> -<Questions> -<objsur guid="bef2fb8f-03bd-4981-95e6-3e19e6b9ef25" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="4e0a3581-e24d-4cb7-a961-a056b4b9ebad" ownerguid="7bf77556-64df-428e-bfdd-095af5bfeeda"> -<ExampleWords> -<AUni ws="en">intend, aim, expect, mean to do something, plan, purpose, resolve, be set on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to intending to do something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4e0bb4dd-424e-4625-8b65-075352697b81" ownerguid="ef2e866b-c871-4672-b8d4-54895820a060"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gossiper</AUni> -<AUni ws="es">chismoso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f1ad1267-570d-4f4c-b5de-176d25e862dc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4e10c312-17f0-49c9-ace7-92f82770b744" ownerguid="8497fb66-8b91-46b9-a0d5-fb9385319561"> -<ExampleWords> -<AUni ws="en">salty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(17) What words describe something that has a salty taste?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4e148dd0-c0d9-42cf-8f26-af5aa3fccae2" ownerguid="86c02f45-e087-4593-9a66-898dcfe8d2d2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">car</AUni> -<AUni ws="es">carro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="da70be73-7e29-4353-8694-b3bc175e185e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="4e152c41-a2fb-4d34-ae22-d649fa7711fb" ownerguid="1f78d7ca-860f-47c2-84ce-f6c8f2c643f7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">knife</AUni> -<AUni ws="es">cuchillo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="56c1a0d6-b1fc-4aeb-9938-bcaa764c35f9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="4e155dae-bec9-432b-9bfc-6f845d10891e" ownerguid="299c2c32-9eee-4983-bf99-83dc623d7469"> -<Form> -<AUni ws="qvm-x-ach">janjampa</AUni> -<AUni ws="qvm-x-acl">janjampa</AUni> -<AUni ws="qvm-x-akh">janjampa</AUni> -<AUni ws="qvm-x-akl">janjampa</AUni> -<AUni ws="qvm-x-ame">hanhampa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="4e1599bd-ae84-4d1d-a2dd-c253f5dcac90" ownerguid="cef6644c-6a2c-47ac-aa2c-82463d4e5208"> -<Form> -<AUni ws="qvm-x-ach">chila</AUni> -<AUni ws="qvm-x-acl">chila</AUni> -<AUni ws="qvm-x-akh">chila</AUni> -<AUni ws="qvm-x-akl">chila</AUni> -<AUni ws="qvm-x-ame">chila</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="4e17244e-6b00-463c-86b0-e24c799ec082"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pue:di</AUni> -<AUni ws="qvm-x-acl">pue:di; pue:de</AUni> -<AUni ws="qvm-x-akh">pue:di</AUni> -<AUni ws="qvm-x-akl">pue:di; pue:de</AUni> -<AUni ws="qvm-x-ame">pue:di</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+poder.v</AUni> -<AUni ws="qvm-x-acl">+poder.v</AUni> -<AUni ws="qvm-x-akh">+poder.v</AUni> -<AUni ws="qvm-x-akl">+poder.v</AUni> -<AUni ws="qvm-x-ame">+poder.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.891" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bcf2cafc-b0af-4073-a684-e4a518fcc025" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+poder.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="54301972-0816-41c9-a908-b905e0a23485" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1192b9b6-fa7b-4279-bbc7-38599e8a40c6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +poder.v 
\entryTyp root 
\gENG be.able 
\gSPN poder 
\e +poder.v 
\c V2 
\mp +FinalI 
\ach pue:di 
\akh pue:di 
\acl pue:di +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pue:de +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pue:di +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pue:de +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pue:di 
\mcc +poder.v / ~_ [na] 1P.V 
\mcc +poder.v / ~_ DES 1</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="4e17c054-ad76-4dac-8a4c-2127f5eb317b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ra:ya</AUni> -<AUni ws="qvm-x-acl">ra:ya</AUni> -<AUni ws="qvm-x-akh">ra:ya</AUni> -<AUni ws="qvm-x-akl">ra:ya</AUni> -<AUni ws="qvm-x-ame">ra:ya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+raya.v</AUni> -<AUni ws="qvm-x-acl">+raya.v</AUni> -<AUni ws="qvm-x-akh">+raya.v</AUni> -<AUni ws="qvm-x-akl">+raya.v</AUni> -<AUni ws="qvm-x-ame">+raya.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.297" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5d7b7dff-cb1b-4ca7-bcc5-68719aa7ff9b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+raya.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d2822176-5d7e-4574-b0d0-21ad3d676a98" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4c2fa550-bc8c-4da6-af33-1cd262ef8687" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +raya.v 
\entryTyp root 
\gENG line 
\gSPN raya 
\e +raya.v 
\c V1 
\ach ra:ya 
\akh ra:ya 
\acl ra:ya 
\akl ra:ya 
\ame ra:ya 
\i JOB 3.9 Ama räyacanmantsu cargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4e182689-8e24-45f7-b399-8a663e75420e" ownerguid="7f7fc197-5064-43c0-af51-2919fb7355c9"> -<ExampleWords> -<AUni ws="en">be connected with, have links, have connections with, be linked with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that two people are connected somehow?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4e183c6e-088f-47d5-b124-23faa7e0232f" ownerguid="d333614a-4e75-4f5f-9024-59dd71e3ae42"> -<Form> -<AUni ws="qvm-x-ach">suma</AUni> -<AUni ws="qvm-x-acl">suma</AUni> -<AUni ws="qvm-x-akh">suma</AUni> -<AUni ws="qvm-x-akl">suma</AUni> -<AUni ws="qvm-x-ame">suma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="4e1bbe62-dc94-4f7f-8b0f-35933e5c9702" ownerguid="a5206e1d-e5aa-414e-b96a-3bb9681a4866"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="4e209a4a-ad19-4ba7-abe9-b60cb5747bb7" ownerguid="c7dbd50e-0ff5-42af-a7a9-9eaf03671c49"> -<ExampleWords> -<AUni ws="en">convenient, handy, suit, fit in with, be good for, a good time, no trouble, no problem</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is convenient?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4e228724-d1ea-4b5f-9796-1b3e5b946486" ownerguid="5db3e0e5-c02d-4c1d-a9c0-b6419adf76d6"> -<PartOfSpeech> -<objsur guid="85ffb381-0567-4202-8640-53cbaec77e45" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="4e23b037-0547-4650-89c3-2b259b637fb6" ownerguid="14ad95ad-50fc-450f-b44d-4273df0b1e8b"> -<Abbreviation> -<AUni ws="en">8.4.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.638" /> -<DateModified val="2022-9-23 16:55:8.638" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a month.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Month</AUni> -</Name> -<Questions> -<objsur guid="4ce3bc7b-b059-4188-9625-7d91ea2539da" t="o" /> -<objsur guid="cfdbf5cb-4a4f-4fd1-a930-1e2664b46eef" t="o" /> -<objsur guid="92fbd780-8f0e-49b0-bb69-176f1e0f46c2" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="46dbda42-fe21-4e52-8eeb-4263ded7031b" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="4e26b0b1-e834-4b23-a889-c05bd21e1d14" ownerguid="6c9bbb3a-b32d-4671-b22e-19f3871340a9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="4e28a0fd-86fa-47b3-a23c-c35e0caf80d5" ownerguid="26d1a0d6-e385-4db2-9ea4-a08f41abe679"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="32cd7528-05c5-4ef2-8dc4-ead0a764ee32" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">attend</AUni> -<AUni ws="es">atender</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d060e7e7-cb18-4c8a-9031-1ce238a683bc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4e2a62fc-e5a3-4ebe-b793-83fcfc863abe" ownerguid="9efa7949-de15-499a-b382-4560e06c4fb4"> -<ExampleWords> -<AUni ws="en">saying, quote, declaration, tale, speech, profession, remark, statement</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something that is said?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="4e2ab412-6bb4-411d-ae7e-70062b3c7375" ownerguid="32122830-315f-4796-8b0c-63bb033e31eb"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="25e7fa93-5a87-4855-8bc8-637ff26ca3e0" t="o" /> -<objsur guid="962cf013-0632-4b94-b4db-72d00b275528" t="o" /> -<objsur guid="0c005077-394d-4d84-8ffe-45da37ab8130" t="o" /> -<objsur guid="3cd0fa6f-d544-45af-84b4-262bc1c1d35a" t="o" /> -<objsur guid="8fdd23e2-a6bd-4e20-bb31-a4f7e04e9968" t="o" /> -</MorphBundles> -</rt> -<rt class="CmSemanticDomain" guid="4e2adaed-145e-45fc-8448-81c0bd47c414" ownerguid="457231c8-4eb6-4460-aa45-3e9f2c4e8975"> -<Abbreviation> -<AUni ws="en">8.4.6.6.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.660" /> -<DateModified val="2022-9-23 16:55:8.660" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that indicate that something that never happens, or that something has not once happened.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Never</AUni> -</Name> -<Questions> -<objsur guid="1ffec240-293e-4737-a1e7-de1183cb7e04" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="4e2c8f58-2128-4064-af20-aa45f1a9cedd" ownerguid="f7b29046-5b1d-42d0-9a2e-386a140c6172"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spoiled</AUni> -<AUni ws="es">huero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1fb07df4-66f9-4162-9332-d09244792585" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4e2ea168-87bb-44cf-a601-ca29cc56bbf5" ownerguid="b6ead5e6-dab5-4941-9017-d03452182709"> -<ExampleWords> -<AUni ws="en">the best we have, leader in his field, on the cutting edge, master (craftsman), expert (machinist), leading (scholar), degreed (scholar), foremost (expert), knowledgeable, experienced, able (seaman), well-trained, proficient, capable, clever, skilled, skillful</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe an expert?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4e32f374-714c-4048-8e20-f3a986e31ab4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">malgeniu; malgenio</AUni> -<AUni ws="qvm-x-acl">malgeniu; malgeniu; malgenio</AUni> -<AUni ws="qvm-x-akh">malgeniu; malgenio</AUni> -<AUni ws="qvm-x-akl">malgeniu; malgeniu; malgenio</AUni> -<AUni ws="qvm-x-ame">malgeniu; malgenio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mal.genio</AUni> -<AUni ws="qvm-x-acl">+mal.genio</AUni> -<AUni ws="qvm-x-akh">+mal.genio</AUni> -<AUni ws="qvm-x-akl">+mal.genio</AUni> -<AUni ws="qvm-x-ame">+mal.genio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.285" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f1f2faa5-c331-4d44-97fe-5b214e235366" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mal.genio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="61187a35-ba48-49a1-94d3-c74c4a64f160" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8239a895-f525-49e0-9513-65857e52750c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mal.genio 
\entryTyp root 
\gENG 
\gSPN 
\e +mal.genio 
\c N0 
\ach malgeniu / ~_# 
\ach malgenio / _# 
\akh malgeniu / ~_# 
\akh malgenio / _# 
\acl malgeniu / ~_# 
\acl malgeniu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl malgenio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl malgeniu / ~_# 
\akl malgeniu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl malgenio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame malgeniu / ~_# 
\ame malgenio / _# 
\i 1SA 25.25 Nabalga jutinman tupumi malgeniumi caycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="4e330f00-ea0d-4354-8f03-8b892281201f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">li:su</AUni> -<AUni ws="qvm-x-acl">li:su; li:su; li:so</AUni> -<AUni ws="qvm-x-akh">li:su</AUni> -<AUni ws="qvm-x-akl">li:su; li:su; li:so</AUni> -<AUni ws="qvm-x-ame">li:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+liso</AUni> -<AUni ws="qvm-x-acl">+liso</AUni> -<AUni ws="qvm-x-akh">+liso</AUni> -<AUni ws="qvm-x-akl">+liso</AUni> -<AUni ws="qvm-x-ame">+liso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.104" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="67cbe0db-74f4-48a1-a051-0a9e75827b75" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+liso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f99d65bb-e002-46d2-ac27-666fd5c95bc5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b1991248-42aa-4b9b-9346-adcc24d0fbe5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +liso 
\entryTyp root 
\gENG rude 
\gSPN malcriado 
\e +liso 
\c N0 
\ach li:su 
\akh li:su 
\acl li:su / _# 
\acl li:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl li:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl li:su / _# 
\akl li:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl li:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame li:su</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="4e3416e4-1ba3-4632-9add-d01459fa66ad" ownerguid="aaa01b5f-0899-42cd-a62b-60c74fcdf5be"> -<Form> -<AUni ws="qvm-x-ach">cebäda</AUni> -<AUni ws="qvm-x-acl">cebäda</AUni> -<AUni ws="qvm-x-akh">cebäda</AUni> -<AUni ws="qvm-x-akl">cebäda</AUni> -<AUni ws="qvm-x-ame">cebäda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="4e38eb16-200c-4bd5-978c-e1955b85ae08" ownerguid="96a40b54-88f0-4740-86a3-140912f24f24"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="4e3929f0-37fb-44ac-bc13-c1a320792490" ownerguid="d2683ae4-dbbb-4bf4-8e22-483b78bd560a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="4e393674-1614-4c3b-ab55-cd0c57293ba2" ownerguid="ecf532a7-038b-4f31-8c1c-f36f85314222"> -<Form> -<AUni ws="qvm-x-ach">maga</AUni> -<AUni ws="qvm-x-acl">maga</AUni> -<AUni ws="qvm-x-akh">maqa</AUni> -<AUni ws="qvm-x-akl">maqa</AUni> -<AUni ws="qvm-x-ame">maqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="4e44f90b-be98-464b-9e06-b89f51b01ec6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jorgu; jorga</AUni> -<AUni ws="qvm-x-acl">jorgu; jorgo; jorga</AUni> -<AUni ws="qvm-x-akh">jorqu; jorqa</AUni> -<AUni ws="qvm-x-akl">jorqu; jorqo; jorqa</AUni> -<AUni ws="qvm-x-ame">hurqu; hurqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hurqU.v1</AUni> -<AUni ws="qvm-x-acl">*hurqU.v1</AUni> -<AUni ws="qvm-x-akh">*hurqU.v1</AUni> -<AUni ws="qvm-x-akl">*hurqU.v1</AUni> -<AUni ws="qvm-x-ame">*hurqU.v1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.769" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="edc77aca-5004-4e3f-b776-00bb23167292" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hurqU.v1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="711f8147-5335-4634-8b24-62c9a4a069df" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c095d4df-2f04-4ac4-a46c-ccb64bb29ca3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hurqU.v1 
\entryTyp root 
\gENG take.out 
\gSPN sacar 
\e *hurqU.v1 
\c V1 
\mp PMlowered 
\ach jorgu 
\ach jorga morphlowered 
\akh jorqu 
\akh jorqa morphlowered 
\acl jorgu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl jorgo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl jorga morphlowered 
\akl jorqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jorqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jorqa morphlowered 
\ame hurqu 
\ame hurqa morphlowered 
\mcc *hurqU.v1 / ~_... [trans]</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4e456060-99ba-44f4-a75b-6177e51b5141" ownerguid="fa660c9d-8787-4335-8744-3dbc139b2df1"> -<ExampleWords> -<AUni ws="en">accuse, confront, accost, incriminate, blame, point the finger at, criticize, hold responsible, find fault with, be direct with, don't mince words, tell off, rebuke, reprove, remonstrate, to rebuke, correct, reproof, remonstrance, castigate, cast aspersions, prove, offer proof</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to accusing someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4e461e5b-9501-4345-8f0c-64dc6f3b4ed2" ownerguid="df2b9d7a-9b90-4704-8bc3-11dcffe985f4"> -<ExampleWords> -<AUni ws="en">spot, freckle, birthmark, wart, corn, mole, blemish, blotch, scar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to spots on a person's skin?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4e483974-58fa-4e2d-a33c-e6f37037b95c" ownerguid="2e95bd1e-82f0-461d-8ca6-b5f1ce1fb180"> -<ExampleWords> -<AUni ws="en">arrange a marriage, arranged marriage, marriage negotiations, match, espousal, marry off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the process of arranging a marriage?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4e48758e-fe1c-4501-862e-2b1ceed66a11" ownerguid="ff600281-2b8a-4605-972a-1426555b3dcf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="560a6970-ef53-420b-bc17-9d25ccf8c684" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">curds</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ca78fb3a-94be-4132-a470-8afb8caec6b4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="4e4a2edc-a2bb-44d9-a940-552e6187399d" ownerguid="29e82cb2-b520-4476-98c7-e40a67fe8e25"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="4e4dbec3-b4bf-4881-8f57-af79887e7dfa" ownerguid="a7824686-a3f3-4c8a-907e-5d841cf846c8"> -<ExampleWords> -<AUni ws="en">flash, flare, spark, scintillate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something shining for a very short time and then becoming dark again?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4e4fa15c-d491-4b44-88da-e0ff2c3f6edf" ownerguid="db475bf9-5eb5-4864-ac17-f9cb0c823407"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="027749ee-85fe-47e0-98ec-68c885eff943" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="StStyle" guid="4e5bf21d-f892-4382-a7a2-4bb9c5da8fcf" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="6" /> -<Function val="6" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Note Target Reference</Uni> -</Name> -<Rules> -<Prop bold="invert"></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<Usage> -<AUni ws="en">Note Target Reference identifies the verse (or range of verses) that is referenced in a note.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="LexEntry" guid="4e5bf9a7-e8b2-4f7d-804e-57f58265befb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sigura</AUni> -<AUni ws="qvm-x-acl">sigura</AUni> -<AUni ws="qvm-x-akh">sigura</AUni> -<AUni ws="qvm-x-akl">sigura</AUni> -<AUni ws="qvm-x-ame">sigura</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+asegurar</AUni> -<AUni ws="qvm-x-acl">+asegurar</AUni> -<AUni ws="qvm-x-akh">+asegurar</AUni> -<AUni ws="qvm-x-akl">+asegurar</AUni> -<AUni ws="qvm-x-ame">+asegurar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.840" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="984ffe38-28e9-44ed-9acf-52b87223a94a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+asegurar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="10b4ac15-d407-4d11-bb6e-37b367638ab0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c51982d4-20c2-4b09-a166-d9158098fd09" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +asegurar 
\entryTyp root 
\gENG fasten 
\gSPN asegurar 
\e +asegurar 
\c V1 
\ach sigura 
\akh sigura 
\acl sigura 
\akl sigura 
\ame sigura</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="4e5c51a2-d42f-4af1-91bd-ab75fc29b6f7" ownerguid="e021830e-b644-4e1b-a723-40d3f643ba66"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="bec05bbc-48b0-4d8d-99c5-5d5f59af9369" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="4e5d0c26-4257-4d3b-bc4b-be8f9e0b859e" ownerguid="ca30a86f-dfa7-4d8c-a3a5-0c7981691e17"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="4e61f567-d7bb-40d0-9236-a7a403a8f3cd" ownerguid="20baa5e7-4f02-4782-a292-c6281d7b5f3a"> -<ExampleWords> -<AUni ws="en">push over, topple</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to pushing something so that it falls over?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4e66374f-514e-4eab-a24f-9687b01a1ffb" ownerguid="ac35d320-d6b3-4e66-ad88-c5c16a70aaca"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">metal</AUni> -<AUni ws="es">metal</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f1d64617-5b1f-4c91-b80a-40c62c039cea" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4e6675c6-4883-4fd8-b337-78f23800cf80" ownerguid="8c28c640-db5b-43e2-a1e6-b0e381962129"> -<ExampleWords> -<AUni ws="en">domesticate, tame, break (horse)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to domesticating an animal?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4e6d16bb-21e9-4735-8d27-528027e728e4" ownerguid="75d4fad8-9d20-4e80-b9b4-a67ea193ad08"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="4e71353b-9b5c-4eb3-beeb-0528e8b7f12f" ownerguid="e2cae91c-86f4-4a5a-87c5-058211ec9e35"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="4e73ddb2-ce34-4702-b13c-9f987440f899" ownerguid="79436830-092b-4d13-a715-f392d7e33708"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ka</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ka</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="22806abf-f462-448a-bb3e-39bbf5d75aea" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -<Sense> -<objsur guid="909cfa11-00e3-4787-b51b-dfac729061be" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="4e763dbf-a61c-4c3f-a22f-6a926d9d087f" ownerguid="080bf07b-e58b-4a75-bb97-84d980a143f0"> -<ExampleWords> -<AUni ws="en">outline, lines, profile, contour</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the outside shape of something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4e780ffd-89c9-4ed3-af01-97633f15706f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bu:ya</AUni> -<AUni ws="qvm-x-acl">bu:ya</AUni> -<AUni ws="qvm-x-akh">bu:ya</AUni> -<AUni ws="qvm-x-akl">bu:ya</AUni> -<AUni ws="qvm-x-ame">bu:ya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*bu:ya</AUni> -<AUni ws="qvm-x-acl">*bu:ya</AUni> -<AUni ws="qvm-x-akh">*bu:ya</AUni> -<AUni ws="qvm-x-akl">*bu:ya</AUni> -<AUni ws="qvm-x-ame">*bu:ya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.100" /> -<DateModified val="2022-10-10 21:18:47.215" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a355db53-7c4f-41ea-b17b-e5bb5e319fa7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*bu:ya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7bce5dda-fa9a-41b9-9a4b-54667d01b7b3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fbd7beb9-3ad1-449e-9d00-17b17d81e391" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *bu:ya 
\entryTyp root 
\gENG 
\gSPN 
\e *bu:ya 
\c V1 
\ach bu:ya 
\akh bu:ya 
\acl bu:ya 
\akl bu:ya 
\ame bu:ya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="4e791773-94c8-4667-93f8-92dc0100ddfe" ownerguid="57225f57-ba51-45d7-b6d2-b22052877ea4"> -<Abbreviation> -<AUni ws="en">4.2.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.217" /> -<DateModified val="2022-9-23 16:55:8.217" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a holiday.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Holiday</AUni> -</Name> -<Questions> -<objsur guid="9599a0f2-5daa-49f3-99a8-bde9dd6ef056" t="o" /> -<objsur guid="15d92219-84d4-471e-9fe0-69856c69f0c9" t="o" /> -<objsur guid="01f63dba-635e-45c6-9fc5-f941b4082ecd" t="o" /> -<objsur guid="23269e62-4954-4826-abb6-0f62860b7ace" t="o" /> -<objsur guid="4a78537f-f359-4b72-82de-36deb59daed8" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="e791df50-8880-4080-a5ee-d4e58bb7b8ca" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="4e795972-eb00-48c5-8084-a264092d0851"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wengu</AUni> -<AUni ws="qvm-x-acl">wengu; wengu; wengo</AUni> -<AUni ws="qvm-x-akh">wenqu</AUni> -<AUni ws="qvm-x-akl">wenqu; wenqu; wenqo</AUni> -<AUni ws="qvm-x-ame">winqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*winqu</AUni> -<AUni ws="qvm-x-acl">*winqu</AUni> -<AUni ws="qvm-x-akh">*winqu</AUni> -<AUni ws="qvm-x-akl">*winqu</AUni> -<AUni ws="qvm-x-ame">*winqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.666" /> -<DateModified val="2022-10-10 21:19:47.693" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f8468621-0972-419d-8010-10eb4bf0f73c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*winqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="348aec66-32c6-488c-b9cb-d23010b43ee3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f11c31fd-bb67-44e9-a85a-0d3b366b6a50" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *winqu 
\entryTyp root 
\gENG crooked 
\gSPN 
\e *winqu 
\c N0 V1 
\ach wengu 
\akh wenqu 
\acl wengu / _# 
\acl wengu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wengo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wenqu / _# 
\akl wenqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl wenqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame winqu 
\i Mat 3.3 Tayta Dios shamunanpag cag caminuta pitsapäcuy. Wengu wengu nänicunatapis derechapäcuy.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="4e7a6dfe-3654-4ca1-874d-02424581b774" ownerguid="73d580ac-dc89-474c-8048-3453ebdda807"> -<Abbreviation> -<AUni ws="en">8.2.6.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.597" /> -<DateModified val="2022-9-23 16:55:8.597" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being deep or shallow--how far something such as a hole extends below the ground or other surface, or how far something is below the surface of the water.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>81B High, Low, Deep</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Deep, shallow</AUni> -</Name> -<Questions> -<objsur guid="3fd0a9df-ac97-4b2d-ba87-dca1db5b6432" t="o" /> -<objsur guid="d03caffa-ab1d-485b-87dc-e51d9b81c8f0" t="o" /> -<objsur guid="d489c4ae-5b64-49de-9def-ac19ecfca98f" t="o" /> -<objsur guid="bf7dddcd-5303-4449-b815-6b8d199c34bb" t="o" /> -<objsur guid="a52fd435-2281-4708-baca-9c21320a9824" t="o" /> -<objsur guid="f00ba64d-733a-4c2a-8cd8-09b2acfadc2e" t="o" /> -<objsur guid="93b9aab6-f7d7-48c5-832f-3c1576d174bb" t="o" /> -<objsur guid="71172506-5920-4eb7-9021-412a7bb8a150" t="o" /> -<objsur guid="927cffdc-2502-4c5b-ba56-02399cf30dc5" t="o" /> -<objsur guid="172c6026-7c1a-4baa-b157-3ea31c006869" t="o" /> -<objsur guid="82edca0a-48ac-49ac-8211-dd1d43d32c6b" t="o" /> -<objsur guid="cc2fa532-63b6-47b8-a04f-89351d6701a6" t="o" /> -<objsur guid="df47134e-510d-48fc-b2fe-3fa3f66dd017" t="o" /> -<objsur guid="b21df06c-8f92-4b34-ba4a-3889d9c96ff9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="4e7a9c6d-5563-46e3-8d29-02a541d349fb" ownerguid="c02e9b48-7a05-46bc-9157-c0933f8e850f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fly</AUni> -<AUni ws="es">volar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6c5b4bfd-bd0f-40be-9c25-066f9a1a5be8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4e7b7921-61d4-409e-98b6-b96b77efbfa8" ownerguid="0f323bee-0d8a-4564-9691-87880f55d910"> -<ExampleWords> -<AUni ws="en">provider, means of support, supplier</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who provides?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4e7c9f3e-a517-4ed4-804a-9b923595c204" ownerguid="2cc059e7-dc71-49e5-a67d-a417245ae4e5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="d93a3aef-6104-4ae3-a0f5-bbf2b7061420" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="4e7f1593-02a2-4659-8f15-101b37e71f02"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mucmucya; mucmucya:</AUni> -<AUni ws="qvm-x-acl">mucmucya; mucmucya:</AUni> -<AUni ws="qvm-x-akh">mukmukya; mukmukya:</AUni> -<AUni ws="qvm-x-akl">mukmukya; mukmukya:</AUni> -<AUni ws="qvm-x-ame">mukmukya; mukmukya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mukmukya:</AUni> -<AUni ws="qvm-x-acl">*mukmukya:</AUni> -<AUni ws="qvm-x-akh">*mukmukya:</AUni> -<AUni ws="qvm-x-akl">*mukmukya:</AUni> -<AUni ws="qvm-x-ame">*mukmukya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.487" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="50fd5666-c60c-4624-87db-29f9135f12ad" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mukmukya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9b4f1490-0f5e-43a7-bcb3-a8bd0c0a0432" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a32ae4dc-5181-4d60-9651-6e391e4d028e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mukmukya: 
\entryTyp root 
\gENG twist 
\gSPN torcer 
\e *mukmukya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach mucmucya foreshortened 
\ach mucmucya: 
\akh mukmukya foreshortened 
\akh mukmukya: 
\acl mucmucya foreshortened 
\acl mucmucya: 
\akl mukmukya foreshortened 
\akl mukmukya: 
\ame mukmukya foreshortened 
\ame mukmukya:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4e800209-eaa5-4369-be1a-7f4b9bc68d9e" ownerguid="5abd1270-261a-4980-93e5-e10eacea99ad"> -<ExampleWords> -<AUni ws="en">jump over, leap over, vault over, hurdle, clear, leapfrog</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to jumping over something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4e82c7d2-b15b-4677-83cb-c1ccaf4ec711" ownerguid="bd6fec5a-24ed-4059-9921-933a9b214183"> -<Form> -<AUni ws="qvm-x-ach">progräma</AUni> -<AUni ws="qvm-x-acl">progräma</AUni> -<AUni ws="qvm-x-akh">progräma</AUni> -<AUni ws="qvm-x-akl">progräma</AUni> -<AUni ws="qvm-x-ame">progräma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="4e831115-75c5-4a99-8473-117b79275710" ownerguid="e6ad4d42-6ddc-4d9a-80a8-5c7bd0262160"> -<Form> -<AUni ws="qvm-x-ach">früta</AUni> -<AUni ws="qvm-x-acl">früta</AUni> -<AUni ws="qvm-x-akh">früta</AUni> -<AUni ws="qvm-x-akl">früta</AUni> -<AUni ws="qvm-x-ame">früta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4e84d51c-067a-4d4b-b8c8-ee60cff3db27" ownerguid="12b6934d-3a4a-4623-995f-865f401349ab"> -<ExampleWords> -<AUni ws="en">taste, test, sample</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to tasting a little food to see if it tastes good?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4e8bee9f-6b0b-490b-b264-9c928c0137c0" ownerguid="8fdc9b23-20ed-46c9-aa61-5b47501acff7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tilt</AUni> -<AUni ws="es">inclinar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="789a9bad-d9ef-45a6-ab88-1f66e0f9c337" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="4e8d835b-d7d1-4f81-9927-a6978d4d61dc" ownerguid="ded254d3-e07a-4788-8ba1-6e2ae6fa083b"> -<Form> -<AUni ws="qvm-x-ach">tübu</AUni> -<AUni ws="qvm-x-acl">tübu; tübu; tübo</AUni> -<AUni ws="qvm-x-akh">tübu</AUni> -<AUni ws="qvm-x-akl">tübu; tübu; tübo</AUni> -<AUni ws="qvm-x-ame">tübu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4e8fc6fa-9e4b-4e06-bd08-c2ec0cbd28df" ownerguid="c8595a5f-4dde-4260-b8d8-265d0554ce93"> -<ExampleWords> -<AUni ws="en">front runner, strong contender, be the favorite, be in the running</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to the person or group that people think will win?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4e8fee2b-f341-4ad4-972f-c9f859b80bea" ownerguid="b0e526a5-cbfa-4e7d-a32b-e7084459b1eb"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="4e900747-d7e7-4eee-8f8c-ff183f93b5aa" ownerguid="b3a85cd7-97fd-4306-830d-714801492498"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hang</AUni> -<AUni ws="es">colgar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5e1ccdb5-6074-4b65-9fc7-35c117117f66" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="4e90365c-54f2-4d08-99a7-723092e9bfeb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sagcha</AUni> -<AUni ws="qvm-x-acl">sagcha</AUni> -<AUni ws="qvm-x-akh">saqcha</AUni> -<AUni ws="qvm-x-akl">saqcha</AUni> -<AUni ws="qvm-x-ame">saqcha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*saqtra</AUni> -<AUni ws="qvm-x-acl">*saqtra</AUni> -<AUni ws="qvm-x-akh">*saqtra</AUni> -<AUni ws="qvm-x-akl">*saqtra</AUni> -<AUni ws="qvm-x-ame">*saqtra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.459" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="266c0fc5-c677-4432-805b-6baa45acc49d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*saqtra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bca503ed-6da9-4b73-ab96-4046407c1152" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5284bcc8-bf5e-4a54-b853-121fd8a8b492" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *saqtra 
\entryTyp root 
\gENG wheat.germ 
\gSPN germen.de.trigo 
\e *saqtra 
\c N0 
\ach sagcha 
\akh saqcha 
\acl sagcha 
\akl saqcha 
\ame saqcha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4e905839-77d9-4847-b232-7b3bc14cf2d4" ownerguid="4651aef1-e18f-481e-9c3e-d9dfff4a6b51"> -<ExampleWords> -<AUni ws="en">solitary, loner, recluse, keep to yourself</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who spends a lot of time alone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4e91a25f-0986-4f46-b3f2-861ad252f66a" ownerguid="3ea52505-aa6c-4f28-b475-f15ac1820ec1"> -<ExampleWords> -<AUni ws="en">exorcist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a person who casts out demons?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4e9ad6cc-9a7f-458a-b894-ed2f4dd24a40" ownerguid="e872023d-4047-41cd-a5bf-cdfef4ac2fff"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">add</AUni> -<AUni ws="es">echar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="99110d35-7714-4daf-b5be-3585aef89f9b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="4e9ce948-459c-48e1-a89a-cb8b37f8129a" ownerguid="d593023e-15c0-4737-90fa-93b7e025449e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="4e9dc84b-ab32-41ed-9e8c-4031b23068b1" ownerguid="80079656-7d30-4205-8db5-e55a469a0669"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">park</AUni> -<AUni ws="es">parque</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3bc93709-4070-4112-9476-86356295542a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4ea1fea2-7e3d-406f-a3c4-a3522b45abb0" ownerguid="b4fe4698-54a2-4bcd-9490-e07ee1ee97af"> -<ExampleWords> -<AUni ws="en">don't cry, there there</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What do people say to stop someone from crying?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4ea4845b-ab94-4424-a1ef-eea531e392df"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maya</AUni> -<AUni ws="qvm-x-acl">maya</AUni> -<AUni ws="qvm-x-akh">maya</AUni> -<AUni ws="qvm-x-akl">maya</AUni> -<AUni ws="qvm-x-ame">maya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*maya.v</AUni> -<AUni ws="qvm-x-acl">*maya.v</AUni> -<AUni ws="qvm-x-akh">*maya.v</AUni> -<AUni ws="qvm-x-akl">*maya.v</AUni> -<AUni ws="qvm-x-ame">*maya.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.376" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="15e4f287-32aa-4f35-b99b-4f95d54fd253" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*maya.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ad12a286-063c-423f-91ba-b264b53c7208" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="779b125c-78af-4639-b4bb-f9176f2e36d2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *maya.v 
\entryTyp root 
\gENG feel 
\gSPN sentir 
\e *maya.v 
\c V2 
\ach maya 
\akh maya 
\acl maya 
\akl maya 
\ame maya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4ea61b21-a671-47d2-a5ab-f14d71657308" ownerguid="f9516c66-ac2c-49dd-951a-0d3606450463"> -<ExampleWords> -<AUni ws="en">unfairness, discrimination, bias, prejudice</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the act or practice of being unfair?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4eaab87f-7292-479f-b4c9-f00047f086fd" ownerguid="e704c2e1-c9af-456e-aa2a-12b51a5d4814"> -<Form> -<AUni ws="qvm-x-ach">gueri</AUni> -<AUni ws="qvm-x-acl">gueri; gueri; guere</AUni> -<AUni ws="qvm-x-akh">qeri</AUni> -<AUni ws="qvm-x-akl">qeri; qeri; qere</AUni> -<AUni ws="qvm-x-ame">qiri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4eac8cd1-648c-4c9e-9d94-2f7ccbe3ee71" ownerguid="710828bc-5dfb-4685-b1a5-156700ab08f1"> -<ExampleWords> -<AUni ws="en">aloud, out loud, silently, recite</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to reading aloud or silently?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4ead25b0-39ad-459b-a180-9f98727d5a9f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lica</AUni> -<AUni ws="qvm-x-acl">lica</AUni> -<AUni ws="qvm-x-akh">lika</AUni> -<AUni ws="qvm-x-akl">lika</AUni> -<AUni ws="qvm-x-ame">lika</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llika</AUni> -<AUni ws="qvm-x-acl">*llika</AUni> -<AUni ws="qvm-x-akh">*llika</AUni> -<AUni ws="qvm-x-akl">*llika</AUni> -<AUni ws="qvm-x-ame">*llika</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.194" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="12ebd22f-6b95-4c13-8f13-b6ad3d14bd85" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llika</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="57430dab-b66e-435e-a70c-1dcda14ebc50" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b6b98276-595a-44f4-871f-6a330c82a916" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llika 
\entryTyp root 
\gENG spider.web 
\gSPN telaraña 
\e *llika 
\c N0 
\ach lica 
\akh lika 
\acl lica 
\akl lika 
\ame lika</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="4eb0192f-19d3-4c8a-b66e-f9535b3e8ce7" ownerguid="f8bcfda9-8e69-47d6-970c-556a792e23f7"> -<Form> -<AUni ws="qvm-x-ach">yacu</AUni> -<AUni ws="qvm-x-acl">yacu; yaco</AUni> -<AUni ws="qvm-x-akh">yaku</AUni> -<AUni ws="qvm-x-akl">yaku; yako</AUni> -<AUni ws="qvm-x-ame">yaku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="4eb03814-afa6-41e5-941e-dd45aae2f702" ownerguid="15053303-517a-48dc-a531-c25048e71bf2"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="4eb0c93d-855f-4c3e-921f-2b4aeeee1659" ownerguid="e3a677a0-5bc3-42d8-8dee-efaa6179e4ec"> -<Form> -<AUni ws="qvm-x-ach">almorza</AUni> -<AUni ws="qvm-x-acl">almorza</AUni> -<AUni ws="qvm-x-akh">almorza</AUni> -<AUni ws="qvm-x-akl">almorza</AUni> -<AUni ws="qvm-x-ame">almorza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4eb0eb18-3c3e-407a-9d52-6aedf8edb249" ownerguid="dc177f3c-d0fd-4232-adf1-a77b339cdbb2"> -<ExampleWords> -<AUni ws="en">hangar, control tower, terminal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What kinds of buildings are found at airports?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4eb15654-dd8f-48ac-8787-29edc7e8228a" ownerguid="a64236c5-ef12-4544-bd67-a0ef28748feb"> -<Form> -<AUni ws="qvm-x-ach">ragra</AUni> -<AUni ws="qvm-x-acl">ragra</AUni> -<AUni ws="qvm-x-akh">raqra</AUni> -<AUni ws="qvm-x-akl">raqra</AUni> -<AUni ws="qvm-x-ame">raqra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="4eb20132-666a-41fd-bdd6-d60b3d6d8861" ownerguid="68f6d2c8-8f83-42f8-aa7e-40cf1c067186"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="4eb41e40-4115-435a-934a-5d91022a29dc" ownerguid="49ee84ff-eb2b-4ba3-b193-3018d34599c2"> -<Abbreviation> -<AUni ws="en">6.8.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to owing money.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>57R Owe, Debt, Cancel; 57Q Lend, Loan, Interest, Borrow, Bank</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Owe</AUni> -</Name> -<OcmCodes> -<Uni>426 Borrowing and Lending</Uni> -</OcmCodes> -<Questions> -<objsur guid="dcac62df-052d-4e51-878f-59e51fde112d" t="o" /> -<objsur guid="169b5708-3cc2-421a-a6c0-3de3a3b4491a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="4eb4f6bd-fc2d-4962-96b5-f26f5610760b"> -<Analyses> -<objsur guid="8328a243-fc86-4339-9563-c9cbe69d0955" t="o" /> -</Analyses> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">kutitsishunkipaq</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="4eb54260-41ed-4d35-9035-9cf7ce7908ab" ownerguid="d35769c5-bbb0-4773-98a6-14b11b576665"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="4eb578a0-78fa-4b7b-8a69-70ae42058d63" ownerguid="ef8b5b4a-2152-48f0-9967-e0ca3b5790f5"> -<Form> -<AUni ws="qvm-x-ach">tucsi</AUni> -<AUni ws="qvm-x-acl">tucsi; tucse</AUni> -<AUni ws="qvm-x-akh">tuksi</AUni> -<AUni ws="qvm-x-akl">tuksi; tukse</AUni> -<AUni ws="qvm-x-ame">tuksi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="4eb57fad-7bc5-4be4-9502-d95d0d4e147c" ownerguid="d2adf6c6-1447-4289-897c-bc057ed3c203"> -<Form> -<AUni ws="qvm-x-ach">potrëru</AUni> -<AUni ws="qvm-x-acl">potrëru; potrëru; potrëro</AUni> -<AUni ws="qvm-x-akh">potrëru</AUni> -<AUni ws="qvm-x-akl">potrëru; potrëru; potrëro</AUni> -<AUni ws="qvm-x-ame">potrëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4eb91a51-da14-4579-9c0f-2d14861f1a20" ownerguid="7556a257-3703-40d3-91d3-c891fb250947"> -<ExampleWords> -<AUni ws="en">spirit world, spiritual realm, the supernatural, the unseen</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the world of gods and spirits?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4ebad5df-71d5-4a52-b3db-362245493461"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">zambuli</AUni> -<AUni ws="qvm-x-acl">zambuli; zambule</AUni> -<AUni ws="qvm-x-akh">zambuli</AUni> -<AUni ws="qvm-x-akl">zambuli; zambule</AUni> -<AUni ws="qvm-x-ame">zambuli</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+zambullir</AUni> -<AUni ws="qvm-x-acl">+zambullir</AUni> -<AUni ws="qvm-x-akh">+zambullir</AUni> -<AUni ws="qvm-x-akl">+zambullir</AUni> -<AUni ws="qvm-x-ame">+zambullir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.800" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="96a0fc9d-14b0-4e3f-aa8a-8e91bd92e8e3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+zambullir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="17e234a0-2ed7-4243-9593-088134466d50" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4f356f09-f282-4b1e-aa22-ab0534bc6e0f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +zambullir 
\entryTyp root 
\gENG 
\gSPN 
\e +zambullir 
\c V2 
\mp +FinalI 
\ach zambuli 
\akh zambuli 
\acl zambuli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl zambule +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl zambuli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl zambule +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame zambuli</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="4ebb15be-343a-4d97-804b-6f450a74ca64" ownerguid="14dc9eeb-191d-4bb1-8782-f74926482b23"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sob</AUni> -<AUni ws="es">sollozar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9e409988-4e1d-45fa-8176-595e955af9d4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="4ebea370-d6d1-49e0-9424-00ffa9464786" ownerguid="85c3c579-109f-40dd-8c7a-ffb5e04b894d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="4ec691d7-7af4-4628-a9f6-02657c1061ac" ownerguid="f9d0dbe3-8a78-4bf6-bab9-8613091e6073"> -<Form> -<AUni ws="qvm-x-ach">düra</AUni> -<AUni ws="qvm-x-acl">düra</AUni> -<AUni ws="qvm-x-akh">düra</AUni> -<AUni ws="qvm-x-akl">düra</AUni> -<AUni ws="qvm-x-ame">düra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="4ec80bb7-f103-40b9-be3c-cd1ac1459d3c" ownerguid="d5071ea4-711e-489c-b97f-e4cee62229ca"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="d1e69c96-4361-411a-8b80-5776a41496c2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="4ec8917b-9195-4a01-b7e2-b0f5633080ca" ownerguid="f49b582e-e616-4541-924b-8f90b8ba608e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.diapered</AUni> -<AUni ws="es">tener.pañales</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="45088671-2128-4751-9522-a37a31dc5c63" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="4ec8c2c2-5f48-4880-a8fe-447894002612" ownerguid="2fece058-54b0-4d24-8938-4fa894a75434"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="4eca9893-e721-4194-97a0-289b6e2b5f12"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">archiva</AUni> -<AUni ws="qvm-x-acl">archiva</AUni> -<AUni ws="qvm-x-akh">archiva</AUni> -<AUni ws="qvm-x-akl">archiva</AUni> -<AUni ws="qvm-x-ame">archiva</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+archivar</AUni> -<AUni ws="qvm-x-acl">+archivar</AUni> -<AUni ws="qvm-x-akh">+archivar</AUni> -<AUni ws="qvm-x-akl">+archivar</AUni> -<AUni ws="qvm-x-ame">+archivar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.820" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9aa2f531-d7f6-4a4f-a787-e14eda2ea6cc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+archivar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="48fdb5f9-3187-4a4b-a0e8-b2f7d3df69e3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="97febdac-6408-4ea2-85e0-52628656daea" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +archivar 
\entryTyp root 
\gENG 
\gSPN 
\e +archivar 
\c V1 
\ach archiva 
\akh archiva 
\acl archiva 
\akl archiva 
\ame archiva 
\i 2SA 8.16 Lapan soldäduncunapa capitanninmi cargan Sarviapa tsurin Joab, y Ahiludpa tsurin Josafat cargan documentuta archivag.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4ece555c-3d5c-404a-87ae-91e00b6fd29d" ownerguid="d06dae77-134a-403f-ba88-52ecd66c0522"> -<ExampleWords> -<AUni ws="en">algae, gulfweed, seaweed, wrack</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What general words refer to algae?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4ed0f079-b693-4ce9-81cf-167336d8c1f4" ownerguid="9873474a-960a-4784-93e9-967b3205408c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">kerosene.storm.lantern</AUni> -<AUni ws="es">farol</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5f80d08a-e945-417c-97c5-07c44262d78e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="4ed33c44-a2bf-49f1-abf7-e3ad5150709d" ownerguid="dafda84e-19f2-457c-b1dd-b9a92fdf240f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wrong</AUni> -<AUni ws="es">incorrecto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5a2f3909-14ee-49b0-b769-2939754b2bb6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="4ed53cad-3d5e-4fd9-b0bd-ae7a4cf3ec8b" ownerguid="bf9f70d1-9067-4e2e-aa04-da1c74b6cb29"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="acddab32-6de6-4b9b-98af-b531d64647b7" t="o" /> -<objsur guid="ade677f5-ae22-4fc6-85cc-e27043dc900f" t="o" /> -<objsur guid="ae272d1c-4ba6-4d70-90a5-5827e9455458" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="7ed5984d-0c4e-4973-b1b4-5905e7278510" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="4ed60a3b-a1ba-4ff0-9cb1-ee556f6e47d7" ownerguid="d3b00c1b-d3e3-43fd-a46d-9da5221817ef"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="4eda1965-3d19-4af3-a75c-092c45932917"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">palta</AUni> -<AUni ws="qvm-x-acl">palta</AUni> -<AUni ws="qvm-x-akh">palta</AUni> -<AUni ws="qvm-x-akl">palta</AUni> -<AUni ws="qvm-x-ame">palta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pallta</AUni> -<AUni ws="qvm-x-acl">*pallta</AUni> -<AUni ws="qvm-x-akh">*pallta</AUni> -<AUni ws="qvm-x-akl">*pallta</AUni> -<AUni ws="qvm-x-ame">*pallta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.679" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b6011534-873c-4959-9c8c-8a81f7316d19" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pallta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c920c85d-f79b-49f8-824c-36c4a6737879" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f3d40c71-525b-48a8-b789-f6a7d8af1fdb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pallta 
\entryTyp root 
\gENG 
\gSPN 
\e *pallta 
\c N0 
\ach palta 
\akh palta 
\acl palta 
\akl palta 
\ame palta 
\i Lev 11.27 Chaqui paltalanwan pureg uywacunapis
\f + 11.27 Chaqui paltalanwan pureg uywacunaga caycan algu, mishi, ösu, atog, añas y mas uywacunapis.
\f* impürumi caycan. Tsay uywacuna wanuptin pipis yatag cäga impürumi canga patsa tsacashganyag.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="4ede6541-e643-4922-b257-83c0a534b7a6" ownerguid="ba67b8ec-8279-40cf-8c38-dd9a0e490ad0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="4ee0229d-2c66-4287-911e-3bbaea963680" ownerguid="a3c61773-dc65-4dc5-830f-6f921f3524ba"> -<Form> -<AUni ws="qvm-x-ach">respëtu</AUni> -<AUni ws="qvm-x-acl">respëtu; respëtu; respëto</AUni> -<AUni ws="qvm-x-akh">respëtu</AUni> -<AUni ws="qvm-x-akl">respëtu; respëtu; respëto</AUni> -<AUni ws="qvm-x-ame">respëtu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="4ee5d412-54d7-4907-b244-b23781fa5a18" ownerguid="a6fd8b95-5adf-43e0-8ba2-404391a14d91"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tool</AUni> -<AUni ws="es">herramienta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="990364bc-cdf8-47e0-aafd-755f462315d0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="4ee72ee5-0825-4f7e-bbed-7084d309b896" ownerguid="8f3ca5ee-a855-4813-aff8-7c1eae13a948"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="4ee797e5-c1b6-489e-9cc4-3477461074a6" ownerguid="6da91360-4cf5-44e6-a474-97972221ea79"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">plow</AUni> -<AUni ws="es">arado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2c98b8eb-4934-48ad-92fb-3dbd05a7d844" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="4eeff345-07cf-4027-a177-e1c51a246488" ownerguid="b0ebe7d2-fde4-4b6e-a4f6-ed9f0ba0308a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">plant</AUni> -<AUni ws="es">planta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="18e9622c-d31f-4bbc-aed6-e867365f2ece" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="Segment" guid="4ef19b53-1b79-4395-950d-74ee4167e789" ownerguid="2be397ad-0921-4bd7-96cc-5f352c2f8f51"> -<Analyses> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="fa7aeb71-200a-4a5d-9436-13faa1972fea" t="r" /> -<objsur guid="25651c34-3e31-419d-86b5-cda6907f0a4f" t="r" /> -<objsur guid="7beb2bdf-1e77-4955-99ec-39f893293020" t="r" /> -<objsur guid="a85a5670-81ba-47b9-8443-95e8be60ebec" t="r" /> -<objsur guid="b50493dc-626e-4d25-b0d9-4a7f52207717" t="r" /> -<objsur guid="4fccec2d-58a4-466f-a087-a79d6bf13b57" t="r" /> -<objsur guid="4bd33b73-ca58-4fbb-9575-41275fd181b3" t="r" /> -<objsur guid="26ca52f1-b5e7-41e8-aa2e-cf2572524687" t="r" /> -</Analyses> -<BeginOffset val="10" /> -</rt> -<rt class="MoStemAllomorph" guid="4ef2d27b-c0ad-43c3-9d63-89a8778130a9" ownerguid="00de8f35-a79f-44fa-834e-55d786c8f87b"> -<Form> -<AUni ws="qvm-x-ach">chuya</AUni> -<AUni ws="qvm-x-acl">chuya</AUni> -<AUni ws="qvm-x-akh">chuya</AUni> -<AUni ws="qvm-x-akl">chuya</AUni> -<AUni ws="qvm-x-ame">chuya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4ef7222f-83ae-4c4f-b508-69dbfce48122" ownerguid="4bedae6a-1df4-40e5-8a2f-ab0a1f41997e"> -<ExampleWords> -<AUni ws="en">hemp, cotton</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What plant products are used for fibers, thread, and rope?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4ef76c70-68d7-49b1-a4a2-7b2e6c7ff89a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tetera</AUni> -<AUni ws="qvm-x-acl">tetera</AUni> -<AUni ws="qvm-x-akh">tetera</AUni> -<AUni ws="qvm-x-akl">tetera</AUni> -<AUni ws="qvm-x-ame">tetera</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tetera</AUni> -<AUni ws="qvm-x-acl">+tetera</AUni> -<AUni ws="qvm-x-akh">+tetera</AUni> -<AUni ws="qvm-x-akl">+tetera</AUni> -<AUni ws="qvm-x-ame">+tetera</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.876" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="08f3a63c-4fb5-478f-b228-b671464ff976" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tetera</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3bb512aa-49a6-491c-9fcc-d819cb8e516b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a79d88fc-c869-491a-8c9e-bcfbfe8720a4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tetera 
\entryTyp root 
\gENG tea.kettle 
\gSPN tetera 
\e +tetera 
\c N0 
\ach tetera 
\akh tetera 
\acl tetera 
\akl tetera 
\ame tetera</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="4ef7f74f-4f7a-4d1b-b5a4-4eefd0da9f96" ownerguid="ead8a9a3-59b0-459b-94e0-7ceb4453d62a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="4efa8c7e-4daa-48e4-adb7-37ad9a48f12c" ownerguid="056cea8c-3d46-4127-8242-d87318f8ac81"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="4f002e9e-b77d-4817-9565-df53c1e29865" ownerguid="75bb6504-5ee0-465d-9ec6-d585b47d3a87"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="4f00a4d0-3509-404d-a630-82e6f433928a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">liwa</AUni> -<AUni ws="qvm-x-acl">liwa</AUni> -<AUni ws="qvm-x-akh">liwa</AUni> -<AUni ws="qvm-x-akl">liwa</AUni> -<AUni ws="qvm-x-ame">liwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lliwa</AUni> -<AUni ws="qvm-x-acl">*lliwa</AUni> -<AUni ws="qvm-x-akh">*lliwa</AUni> -<AUni ws="qvm-x-akl">*lliwa</AUni> -<AUni ws="qvm-x-ame">*lliwa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.215" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4ac13947-e929-4832-8027-bda2c986bdcd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lliwa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3ce24bbb-0bde-4376-b7bc-04b180fd36c5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="32fa4a2b-1974-489c-9bf8-e38a19d3158d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lliwa 
\entryTyp root 
\gENG 
\gSPN gotear 
\e *lliwa 
\c V1 
\ach liwa 
\akh liwa 
\acl liwa 
\akl liwa 
\ame liwa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="4f026d24-babc-4f07-9db7-5fb4262f1989" ownerguid="4b043734-2589-46b9-a7a6-d7d33751252a"> -<Form> -<AUni ws="qvm-x-ach">apunta</AUni> -<AUni ws="qvm-x-acl">apunta</AUni> -<AUni ws="qvm-x-akh">apunta</AUni> -<AUni ws="qvm-x-akl">apunta</AUni> -<AUni ws="qvm-x-ame">apunta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="4f04b079-7425-4126-a21c-dc8c78523a31" ownerguid="29366746-50da-4c40-b276-ccf85f210ae8"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="4f05b8d9-3c77-4da5-aaa8-b4fe1e2ce062" ownerguid="6cbdaf94-8e2c-4b26-936a-d2f86d158250"> -<ExampleWords> -<AUni ws="en">integration, segregation, multiracial, interracial, cosmopolitan, multicultural, mixed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to mixing the races?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4f0608cb-e3d1-40ca-803f-f55843d4cebc" ownerguid="bf007cd9-925d-4073-a1d6-16d64a45ca25"> -<ExampleWords> -<AUni ws="en">subjugate, subject (someone) to authority</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to subjugating someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4f067440-308a-415a-8431-6ac9449357ef" ownerguid="00aac4e4-70d6-424f-b9d8-519e33c5106c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="4f09c9f4-82da-40a5-a53a-75b4ada04121"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shili</AUni> -<AUni ws="qvm-x-acl">shili; shili; shile</AUni> -<AUni ws="qvm-x-akh">shili</AUni> -<AUni ws="qvm-x-akl">shili; shili; shile</AUni> -<AUni ws="qvm-x-ame">shili</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shilli</AUni> -<AUni ws="qvm-x-acl">*shilli</AUni> -<AUni ws="qvm-x-akh">*shilli</AUni> -<AUni ws="qvm-x-akl">*shilli</AUni> -<AUni ws="qvm-x-ame">*shilli</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.571" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d594ff81-c709-41a0-9446-7b41e8745023" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shilli</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="965db265-e5f3-4dfa-af16-a259ac976e4b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b57972fb-7816-449e-91df-7672421cf377" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shilli 
\entryTyp root 
\gENG crack 
\gSPN rajar 
\e *shilli 
\c V1 N0 
\mp +FinalI 
\ach shili 
\akh shili 
\acl shili / _# 
\acl shili +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shile +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shili / _# 
\akl shili +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shile +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shili 
\i ISA 2.21 Nircurmi pasaypa mantsacur gagacunapa shilincunamanpis y machaycunamanpis pacacärenga.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="4f0a27ff-6fef-43c9-8bd8-e9de12434fca" ownerguid="f1826d6b-1b0b-45b1-a707-7ba2f7a2acb0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="4f0c0de1-ffbd-470a-bd4e-eaf2cf88bcd1" ownerguid="11de0591-7d54-479b-84b2-0b48471a8e11"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">quien.sea</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4c5958fd-1ae9-4fe5-934f-7088e768ec2c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="4f0cea1a-7e41-4f85-93bf-c0be947fa01d" ownerguid="77509eb0-29ac-40e0-94d3-acad69aa5778"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">molido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="47f5168e-2803-43b9-b5fa-9921d94ee1a6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="4f0d16d9-c740-4c98-832d-3d1da3c66cf0" ownerguid="e0ac46b6-6746-4953-8c6d-840a8ba10b37"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63e241cb-3471-43ad-8545-4d005f632d4d" t="r" /> -</Morph> -<Msa> -<objsur guid="d3b5839a-9f79-4b2d-96b3-8cee7717866b" t="r" /> -</Msa> -</rt> -<rt class="WfiWordform" guid="4f0d8f21-0d46-49cf-8270-7295034ef476"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Mamayki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiWordform" guid="4f0e830f-5ee9-4abb-bb08-48e4cc86d6a7"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">kutikuyta</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="4f0ebe54-9faf-4eda-bbfb-4b0210e39abe" ownerguid="8216627d-9d20-4a5c-8bfd-0709c16e7a08"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">My land is more than five acres.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">be more than, be greater than, exceed, outnumber, be up on, pass, go past, surpass</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something being more than a particular number or amount?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4f172998-8a1e-4621-b88f-8e847b092a4b" ownerguid="84a817f1-0231-4d9e-8427-162a9b850f17"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="4f19ab95-428a-4a0b-a069-ca8be6b72b08" ownerguid="935da513-126e-4cab-8e07-625458821181"> -<Abbreviation> -<AUni ws="en">4.2.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.206" /> -<DateModified val="2022-9-23 16:55:8.206" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to visiting someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>34F Visit</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Visit</AUni> -</Name> -<OcmCodes> -<Uni>574 Visiting and Hospitality</Uni> -</OcmCodes> -<Questions> -<objsur guid="8b5966e4-634c-42ff-9b6a-97e91e109f8d" t="o" /> -<objsur guid="11d570b2-926c-4e7e-9825-756483cad699" t="o" /> -<objsur guid="86bb40c3-8674-42b4-9f54-58de9bda3fb4" t="o" /> -<objsur guid="78973037-250f-43fe-8e0a-46e0cd388d22" t="o" /> -<objsur guid="baefa281-72fe-4f99-9e55-d7c9baa44cc6" t="o" /> -<objsur guid="dc6aaeea-3e66-4825-b5e7-3cacde22cd58" t="o" /> -<objsur guid="7f7f5739-3e6f-4201-842a-31db8318ef8f" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="252886c4-9317-4c6b-a69e-13520eb89736" t="o" /> -<objsur guid="17851b86-f8fb-4850-9b33-c1a9fcb0aec1" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="4f1abea2-7ab7-4e38-baf7-e26b25d5a13a" ownerguid="384c653a-aba8-4e94-bfc9-1f1f6fec0ec4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dinner</AUni> -<AUni ws="es">cena</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0aad0b7c-ec3a-4175-a5d3-342c111c6118" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4f1ffda1-de2f-43eb-8252-4ac519f6630c" ownerguid="5abd1270-261a-4980-93e5-e10eacea99ad"> -<ExampleWords> -<AUni ws="en">hopscotch, leap frog, gymnastics, high jump, broad jump, pole vault, bungee jumping, sky diving, parachuting</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What games involve jumping?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4f206556-90aa-444c-ac3d-27800ff88da9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">piruru</AUni> -<AUni ws="qvm-x-acl">piruru; piruru; piruro</AUni> -<AUni ws="qvm-x-akh">piruru</AUni> -<AUni ws="qvm-x-akl">piruru; piruru; piruro</AUni> -<AUni ws="qvm-x-ame">piruru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*piruru</AUni> -<AUni ws="qvm-x-acl">*piruru</AUni> -<AUni ws="qvm-x-akh">*piruru</AUni> -<AUni ws="qvm-x-akl">*piruru</AUni> -<AUni ws="qvm-x-ame">*piruru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.850" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ea057e6b-f128-4eea-898b-5ef0036c2de1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*piruru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ab6af991-6bad-4b14-a89a-1844bdcad783" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e66fb1f7-3530-44ce-ac4b-b6157f0d3319" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *piruru 
\entryTyp root 
\gENG weight 
\gSPN tortero 
\e *piruru 
\c N0 
\ach piruru 
\akh piruru 
\acl piruru / _# 
\acl piruru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl piruro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl piruru / _# 
\akl piruru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl piruro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame piruru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="4f2141b0-e7ec-4564-acf1-8ac376a7dea3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tawa</AUni> -<AUni ws="qvm-x-acl">tawa</AUni> -<AUni ws="qvm-x-akh">tawa</AUni> -<AUni ws="qvm-x-akl">tawa</AUni> -<AUni ws="qvm-x-ame">tawa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tawa</AUni> -<AUni ws="qvm-x-acl">*tawa</AUni> -<AUni ws="qvm-x-akh">*tawa</AUni> -<AUni ws="qvm-x-akl">*tawa</AUni> -<AUni ws="qvm-x-ame">*tawa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.835" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1655b993-f2ba-44d2-b6c8-d21f1ea8a1b8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tawa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a7d3e2f3-0c26-4c65-a7a2-0e407f8463b3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6aeb1333-250c-440a-b21a-6080d2ae8f88" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tawa 
\entryTyp root 
\gENG comb 
\gSPN cresta 
\e *tawa 
\c N0 
\ach tawa 
\akh tawa 
\acl tawa 
\akl tawa 
\ame tawa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="4f22ebdb-01db-432a-9d7a-41cd44010265" ownerguid="2b893d04-3450-4862-b046-7df6f87272f6"> -<Abbreviation> -<AUni ws="en">6.8.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.486" /> -<DateModified val="2022-9-23 16:55:8.486" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to accumulating wealth.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>57G Take, Obtain, Gain, Lose</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Accumulate wealth</AUni> -</Name> -<OcmCodes> -<Uni>556 Accumulation of Wealth</Uni> -</OcmCodes> -<Questions> -<objsur guid="80cf8cc3-905e-42bd-bd52-c1b82f473b90" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="d1aecdba-3938-4b0c-a2e6-7dc3b7cc5cde" t="o" /> -<objsur guid="b1756402-83c4-476d-8f55-010a0a10b5d9" t="o" /> -<objsur guid="07cf5182-d090-4432-817b-037895b5cd1d" t="o" /> -<objsur guid="5627904e-59c7-4dd5-aeb5-c6fe0c0a0571" t="o" /> -<objsur guid="dd830047-d7f5-4010-a8ea-ae20468a0cbf" t="o" /> -<objsur guid="044f740b-94f3-4096-aa3a-c07f5e708346" t="o" /> -<objsur guid="d21db541-4122-465f-9db5-4c76f5e84426" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="4f260437-af96-4b0e-95c2-5372f6a5842b" ownerguid="c80e109f-2311-4596-bf24-13b75968d58c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="325d03a8-8db4-47ae-ba37-a5473a3937db" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="4f27f161-d58d-4243-8786-2cafd219a295" ownerguid="71c70eb9-7ea1-4fe0-ae10-ab6645ed74a7"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="4f2b6e55-26cf-4695-b9e3-88ce0fbdab5e" ownerguid="7bff0455-82d1-4996-bcdf-1a4ba9306fab"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="4f2e7404-34c4-4050-af9f-4477320cf4a3" ownerguid="78406cc5-ce24-49a4-a8a6-cd91cfdc02fe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">crush</AUni> -<AUni ws="es">amollar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="db5e32ee-d295-4972-aad5-411abe4f2648" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="4f2f018b-067a-4324-8369-074fbdd11c64" ownerguid="c21f360a-4ea1-4e1a-9fab-b1d5d2d80427"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lizard</AUni> -<AUni ws="es">lagartija</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ddbebf46-8020-4e87-a599-00b537302fa7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="4f356f09-f282-4b1e-aa22-ab0534bc6e0f" ownerguid="4ebad5df-71d5-4a52-b3db-362245493461"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="17e234a0-2ed7-4243-9593-088134466d50" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="4f38f5cc-d3e6-4773-8eda-ccc831a14c8d" ownerguid="ed616c83-7e84-417f-9fae-85ecda72faf0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="4f390d36-5d1c-4ab9-95a9-255b04a7ecff"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lushuc</AUni> -<AUni ws="qvm-x-acl">lushuc</AUni> -<AUni ws="qvm-x-akh">lushuk</AUni> -<AUni ws="qvm-x-akl">lushuk</AUni> -<AUni ws="qvm-x-ame">lushuk</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llushuk</AUni> -<AUni ws="qvm-x-acl">*llushuk</AUni> -<AUni ws="qvm-x-akh">*llushuk</AUni> -<AUni ws="qvm-x-akl">*llushuk</AUni> -<AUni ws="qvm-x-ame">*llushuk</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.245" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a8d66259-eed3-4ea2-9669-7a3b39afdedc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llushuk</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b2ba5707-f5e2-4d24-9da4-64d6d54e35b5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="32392247-66fa-4705-bca5-4fc1c532e18a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llushuk 
\entryTyp root 
\gENG smooth 
\gSPN pulido 
\e *llushuk 
\c N0 
\mp +FinalC 
\ach lushuc 
\akh lushuk 
\acl lushuc 
\akl lushuk 
\ame lushuk</Run> -</AStr> -</Custom> -</rt> -<rt class="MoAffixAllomorph" guid="4f3f1430-f126-405a-98a8-5d0b732eb948" ownerguid="8fac2a47-5fa9-494e-9bae-2efc1f6bd9d6"> -<Form> -<AUni ws="qvm-x-ach">ta</AUni> -<AUni ws="qvm-x-acl">ta</AUni> -<AUni ws="qvm-x-akh">ta</AUni> -<AUni ws="qvm-x-akl">ta</AUni> -<AUni ws="qvm-x-ame">ta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="4f40d752-0b59-4130-8ebf-13dc74065d16"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">obede:ci</AUni> -<AUni ws="qvm-x-acl">obede:ci; obede:ce</AUni> -<AUni ws="qvm-x-akh">obede:ci</AUni> -<AUni ws="qvm-x-akl">obede:ci; obede:ce</AUni> -<AUni ws="qvm-x-ame">obede:ci</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+obedecer</AUni> -<AUni ws="qvm-x-acl">+obedecer</AUni> -<AUni ws="qvm-x-akh">+obedecer</AUni> -<AUni ws="qvm-x-akl">+obedecer</AUni> -<AUni ws="qvm-x-ame">+obedecer</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.616" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d8489f2e-aed2-4d74-9931-3e88282dca9b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+obedecer</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e87576fd-64f5-467e-bd32-12b4e4ab298c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c7c62465-32b9-46a7-b6d3-2ed0284bba7b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +obedecer 
\entryTyp root 
\gENG obey 
\gSPN obedecer 
\e +obedecer 
\c V2 
\mp +FinalI 
\ach obede:ci 
\akh obede:ci 
\acl obede:ci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl obede:ce +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl obede:ci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl obede:ce +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame obede:ci</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="4f485a60-e3ba-42e6-9d59-185305c5d1f2" ownerguid="2dca9338-85cb-4f58-b40d-d2d759e8edd6"> -<Abbreviation> -<AUni ws="en">8.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to a direction.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>82 Spatial Orientation; 82B Left, Right, Straight Ahead, Opposite</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Direction</AUni> -</Name> -<Questions> -<objsur guid="b935cf69-1759-4fe1-a72b-038d9b72247d" t="o" /> -<objsur guid="6326e463-e785-4ad7-88b7-1760fb22b7f5" t="o" /> -<objsur guid="f11a5331-89f2-4fae-905b-f2ee2ac8c7e5" t="o" /> -<objsur guid="b61d0b63-91e2-4112-986d-c5c27b020b0d" t="o" /> -<objsur guid="36a3fe72-e6be-4e07-a8b2-10b0e403e51d" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="095c36bd-b74a-44f5-987b-85909e3f4c1d" t="o" /> -<objsur guid="9ed66151-c144-4e5e-a3a2-f5d08b0c9bb8" t="o" /> -<objsur guid="1a8322d7-cda9-41e5-a14b-f41274cb7157" t="o" /> -<objsur guid="e0ad6bb1-d422-408a-83f8-f1a7661ed225" t="o" /> -<objsur guid="84084e67-b321-4b6a-a436-29ead0bee586" t="o" /> -<objsur guid="3420b36a-a033-4af9-a8c4-53f8221ee56e" t="o" /> -<objsur guid="21a284ab-b9a3-42c8-8fb9-96aff1e1fe8f" t="o" /> -<objsur guid="6b1eeebd-2433-4f39-9e67-7ac4dd0fe20a" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="4f4a35ec-f7df-4f1a-b739-1640ebacef1e" ownerguid="82ecb5b3-9128-4b38-b9c5-612857417ceb"> -<ExampleWords> -<AUni ws="en">don't like, dislike (v), take a disliking to, take an instant dislike to, have a healthy dislike for, not be fond of, not keen on, not be crazy about, not think much of, not be someone's cup of tea, not be to your taste, not be to your liking, not be your thing, not be your type, have no time for, not take kindly to, don't care for, look down on, turn up your nose at, be unhappy with, hold in disfavor, feel unfavorable toward, be displeased with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to disliking something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4f4aa7ea-8799-4a81-9551-b55e7417ab56" ownerguid="e6c9fe4c-199e-4934-b622-739a85b0830d"> -<ExampleWords> -<AUni ws="en">table, matrix, chart, organizational chart, flow chart, grid, cubbyhole, pigeonhole, in basket, out basket</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What tools and methods are used for organizing things?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4f4aadcb-b6ef-4605-a691-590273dd17af" ownerguid="a0d073df-d413-4dfd-9ba1-c3c68f126d90"> -<ExampleWords> -<AUni ws="en">revolve (around the sun), orbit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to how the planets move?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4f4b55ca-f567-412e-a6a0-cd9d738f5997" ownerguid="e916fa72-0848-4f7c-b412-8dfcfd814b0f"> -<Form> -<AUni ws="qvm-x-ach">cumplimientu; cumplimiento</AUni> -<AUni ws="qvm-x-acl">cumplimientu; cumplimientu; cumplimiento</AUni> -<AUni ws="qvm-x-akh">cumplimientu; cumplimiento</AUni> -<AUni ws="qvm-x-akl">cumplimientu; cumplimientu; cumplimiento</AUni> -<AUni ws="qvm-x-ame">cumplimientu; cumplimiento</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="4f4ece33-29da-4edc-aea4-5c430598d997" ownerguid="f67a0a6b-e728-4787-94dc-e473b557c58f"> -<Form> -<AUni ws="qvm-x-ach">tarea</AUni> -<AUni ws="qvm-x-acl">tarea</AUni> -<AUni ws="qvm-x-akh">tarea</AUni> -<AUni ws="qvm-x-akl">tarea</AUni> -<AUni ws="qvm-x-ame">tarea</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4f50062c-629e-4efc-ac8f-7c470a997482" ownerguid="65ef6aae-019f-4980-b6d9-5b7ad2c8e68f"> -<ExampleWords> -<AUni ws="en">quotation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a saying taken from a book or movie?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="4f516445-e044-4d9c-ac9b-a3178f72b405" ownerguid="cac1d7a8-7382-466e-ba4a-ba2bfe50f13b"> -<Abbreviation> -<AUni ws="en">3.5.9.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.184" /> -<DateModified val="2022-9-23 16:55:8.184" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to movies and the cinema.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Movie</AUni> -</Name> -<Questions> -<objsur guid="7ef605d4-31df-45fb-8b22-6a9a2b8a16cc" t="o" /> -<objsur guid="d96a45b7-af4c-4b69-8f23-2fe63fb14ec8" t="o" /> -<objsur guid="bdb54436-1f82-41f7-b953-72f047e4202a" t="o" /> -<objsur guid="c2b4c8ca-a6e8-4056-ab1f-e0331490ca0c" t="o" /> -<objsur guid="022461e6-54f9-4bcc-abc4-e82b98b166ef" t="o" /> -<objsur guid="f43beffe-842a-48a8-93e8-b5e74f9b3b5d" t="o" /> -<objsur guid="fcbc1a80-2f4e-4480-944a-a2aacad36c3f" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="e27adda9-0761-4b7f-abbf-24938ce1c01a" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="4f51ed1d-e49d-4ca0-b737-c67262ccdcc7" ownerguid="e3e68e2d-8fbf-4e9e-a781-3ce55c374792"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="4f531ad5-b628-4cf8-88cc-72122c7cc725" ownerguid="b6f446d5-4062-4774-b109-10b3e1b82048"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="8d467815-2b4f-4b6b-9282-1eae44d60ff9" t="o" /> -<objsur guid="6b20ec74-ad20-4004-a49d-1863bc3946b1" t="o" /> -</MorphBundles> -</rt> -<rt class="CmSemanticDomain" guid="4f587b2b-60a6-4ea0-9fe5-89e5a502d380" ownerguid="bb8ddf5f-707d-46c0-aff4-45683d26fd68"> -<Abbreviation> -<AUni ws="en">9.5.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating the means by which something is done.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89L Means</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Means</AUni> -</Name> -<Questions> -<objsur guid="cc5d8ac6-e824-4bf9-bb31-3595710d892d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="4f5cfc57-2448-430c-9197-6199ea7ee17d" ownerguid="9a7604b4-d42f-44b7-9aef-47847dc93f0b"> -<ExampleWords> -<AUni ws="en">distress (v), give someone a hard time, hurt, inflict, put someone through, subject to, torment (v), torture (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to causing someone to suffer?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4f5f9632-4ff9-49ef-a2ff-b55635f23647" ownerguid="76de6e68-dc9a-4cd6-9641-2eba2d9a92c3"> -<Form> -<AUni ws="qvm-x-ach">walash</AUni> -<AUni ws="qvm-x-acl">walash</AUni> -<AUni ws="qvm-x-akh">walash</AUni> -<AUni ws="qvm-x-akl">walash</AUni> -<AUni ws="qvm-x-ame">walash</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="4f5fdea5-3ed8-4362-a5ae-78bfec970b4e" ownerguid="bc5d011e-e125-4655-bae4-c775a009b4ef"> -<Form> -<AUni ws="qvm-x-ach">retäma</AUni> -<AUni ws="qvm-x-acl">retäma</AUni> -<AUni ws="qvm-x-akh">retäma</AUni> -<AUni ws="qvm-x-akl">retäma</AUni> -<AUni ws="qvm-x-ame">retäma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="4f614df4-3ec9-4e03-81ab-49a2bddf9df1" ownerguid="b0cdf732-5199-4df9-975a-2190adb4261a"> -<Form> -<AUni ws="qvm-x-ach">gochmu</AUni> -<AUni ws="qvm-x-acl">gochmu; gochmo</AUni> -<AUni ws="qvm-x-akh">qochmu</AUni> -<AUni ws="qvm-x-akl">qochmu; qochmo</AUni> -<AUni ws="qvm-x-ame">quchmu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4f6570ba-a7ee-4a20-a9d2-c6e49a14ca1e" ownerguid="45d867c7-8496-4c92-bb41-b7db5db47717"> -<ExampleWords> -<AUni ws="en">paunch, pot belly, beer gut, spare tire, middle-age spread, paunchy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to a fat stomach?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4f657d09-6646-4b4c-8cd4-f2cf7a50d5bc" ownerguid="56984b2b-3417-49b4-a082-1a383551a9e9"> -<ExampleWords> -<AUni ws="en">groan, cry out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What do women do while suffering birth pains?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4f67afb1-1556-4e4b-a92a-1dc7a99a8cad" ownerguid="aa0a352b-8de8-4686-9247-a6b084cf154f"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="4f697a2b-72eb-4744-8885-872a72301403"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">isla</AUni> -<AUni ws="qvm-x-acl">isla</AUni> -<AUni ws="qvm-x-akh">isla</AUni> -<AUni ws="qvm-x-akl">isla</AUni> -<AUni ws="qvm-x-ame">isla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+isla</AUni> -<AUni ws="qvm-x-acl">+isla</AUni> -<AUni ws="qvm-x-akh">+isla</AUni> -<AUni ws="qvm-x-akl">+isla</AUni> -<AUni ws="qvm-x-ame">+isla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.862" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e31a67a7-e843-42d0-8e73-dd411734ee1f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+isla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0b52c79b-f30e-4a13-8912-75907a2d0a28" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="605df484-ae06-4b21-863f-d525a90a0b6c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +isla 
\entryTyp root 
\gENG island 
\gSPN isla 
\e +isla 
\c N0 
\ach isla 
\akh isla 
\acl isla 
\akl isla 
\ame isla</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="4f6e5099-57d8-412e-adea-8c0bd816941a" ownerguid="e836b01b-6c1a-4d41-b90a-ea5f349f88d4"> -<ExampleWords> -<AUni ws="en">air</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the air we breathe?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4f6e7e62-2896-480b-ab08-3c839247b3c6" ownerguid="73726931-ef12-4d39-a76e-7742f4b7c9cd"> -<ExampleWords> -<AUni ws="en">economist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who studies the economy?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4f71bb08-f5c0-47c2-8b71-442babc5f03a" ownerguid="cc61662d-05a0-436f-acce-46f55f62c75f"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="4f72c365-dc69-4428-9b22-2c953aa0ba84" ownerguid="6855bdcb-b4a4-4a56-be58-e070b460d075"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gold</AUni> -<AUni ws="es">oro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a9fabfe2-86e8-4290-9f6a-d36426c406d6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="4f80a620-30db-4529-94e8-f0cd9d0b0e96" ownerguid="71dbaf5f-2afa-4282-b9b8-8a50d8c8e5e9"> -<Abbreviation> -<AUni ws="en">6.3.8.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to castrating animals. There are sometimes specific terms for castrated animals, such as 'steer--a male cow that has been castrated before maturity'.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Castrate animal</AUni> -</Name> -<Questions> -<objsur guid="23c0ff5c-4f14-4dc4-a602-8d1be87db8db" t="o" /> -<objsur guid="02a0f04a-02ba-4c74-bb3f-9ebfd2b48b30" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="4f80c28d-b592-45f1-9734-21f139d06aab" ownerguid="7d7e0f0b-b4e7-4267-9303-296e9471e2ef"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">NUM 15.11 Tsaynoglami rurapäcunqui töruta, carnita, carnishta o chiwa malwata apamurpis.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="4f85f343-3920-42c9-9138-fee739c3d7f4" ownerguid="d086c2ad-2d11-4250-a25a-dc6538439db6"> -<ExampleWords> -<AUni ws="en">twice, twice over, two-time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words indicate that something happens or is done two times?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4f86a885-3471-4f8b-924f-0a5132ac9c4b" ownerguid="d8ea1902-5fa6-4fda-b7b2-1f9c301cdc5f"> -<ExampleWords> -<AUni ws="en">group, collection, lot, cluster, clump, assortment, accumulation, aggregate, bits-and-pieces, nuts-and-bolts, odds-and-ends, stockpile, system, volley, wares</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a group of things?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4f8a829e-3505-44c4-98f4-ab6f1347e22c" ownerguid="c05bf8c3-78f2-4ec5-b0d7-32d4963a5794"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The coffee has milk in it.; The coffee contains milk.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">have something in it, contain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something having some material in it?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4f8db101-ca54-469b-a3bc-5f0bac059497" ownerguid="2933a9c1-aa62-46fb-a03c-68aed7fae9b7"> -<ExampleWords> -<AUni ws="en">flicker, dance, glow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe the appearance of fire?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="4f8f306c-ed77-4373-b3f0-1f01cd99a90e" ownerguid="508d2900-dee3-41df-9da3-41843ac47cf4" /> -<rt class="MoStemMsa" guid="4f8f8fdd-f3f4-45d3-bfda-babfb57eb81a" ownerguid="715eee13-dfed-43bb-9ec5-bd398e998ca9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="4f957f94-f7e4-41de-9189-b3d0e46fc8b6" ownerguid="be2f2785-7219-4a35-b8d3-aa56b9b78514"> -<ExampleWords> -<AUni ws="en">crowd, fill, mill around, swarm</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to more than one thing moving around in a place?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="4fa873e3-bd37-4bda-9fa0-6802f4171a45"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cawallu</AUni> -<AUni ws="qvm-x-acl">cawallu; cawallu; cawallo</AUni> -<AUni ws="qvm-x-akh">cawallu</AUni> -<AUni ws="qvm-x-akl">cawallu; cawallu; cawallo</AUni> -<AUni ws="qvm-x-ame">cawallu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+caballo.2</AUni> -<AUni ws="qvm-x-acl">+caballo.2</AUni> -<AUni ws="qvm-x-akh">+caballo.2</AUni> -<AUni ws="qvm-x-akl">+caballo.2</AUni> -<AUni ws="qvm-x-ame">+caballo.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.1" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cd28c2d9-0754-4389-876a-294c11deb69c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+caballo.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bc5f355f-97e4-4d5b-b26e-1a07eca6e394" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d2c65011-42fd-4294-90c6-5bac6dcdb5c8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +caballo.2 
\entryTyp root 
\gENG horse 
\gSPN caballo 
\e +caballo.2 
\c N0 
\mp +assimilated 
\ach cawallu 
\akh cawallu 
\acl cawallu / _# 
\acl cawallu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cawallo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cawallu / _# 
\akl cawallu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cawallo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cawallu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="4fa8a16a-c957-431b-b13d-9e230827f098" ownerguid="bf3d59c0-e5cb-4e99-883d-0db90420299c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">better</AUni> -<AUni ws="es">mejor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0f7ee493-6be0-475c-ad64-ce23f5e4db57" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4faaf34f-fc9f-46e2-bb1d-d0d517022aa0" ownerguid="ac550d1f-ec74-46a8-bf81-7832ace533ee"> -<ExampleWords> -<AUni ws="en">unpopular, be out of favor, go out of favor with, there's no demand for</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe someone or something that is not popular?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4fab7ffd-d52c-4466-ba13-34c4b66ba15d" ownerguid="fed2b7bd-2315-4085-b0a7-2ced988120f3"> -<ExampleWords> -<AUni ws="en">choice, selection, preference, decision</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the thing that is chosen?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4fac9b9b-011b-40e7-94d0-9d9800fbaaa4" ownerguid="2a62f8e4-7da3-4f37-bf44-e24033c99c00"> -<ExampleWords> -<AUni ws="en">anger, annoyance, bitterness, dander, fury, grudge, indignation, ire, outrage, rage, rancor, resentment, temper, wrath</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of anger?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4fae2d18-ce15-4289-8572-936463171f29" ownerguid="1e1b4c17-9133-4682-8148-dec1f7c897b3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="ce257101-1c02-490c-9f71-d5417de1ae6d" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">put</AUni> -<AUni ws="es">echar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="528a75ef-09a4-4c91-91ea-adb65d4453a5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="4fae3b69-c063-4665-927b-ccbe15b13944" ownerguid="252886c4-9317-4c6b-a69e-13520eb89736"> -<ExampleWords> -<AUni ws="en">welcome, receive, greet, take in, grant asylum, open your door to, admit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to welcoming a person who has just arrived?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="4faec9c3-37f2-4425-b5c8-0e152d7c98d0" ownerguid="c6e504fb-bb7a-4cdc-8745-095bb37e092f"> -<Form> -<AUni ws="qvm-x-ach">pagasnan</AUni> -<AUni ws="qvm-x-acl">pagasnan</AUni> -<AUni ws="qvm-x-akh">paqasnan</AUni> -<AUni ws="qvm-x-akl">paqasnan</AUni> -<AUni ws="qvm-x-ame">paqasnan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="4fb10ccc-b405-496e-9b5a-3368259daf9c" ownerguid="82e4394a-2f58-4356-8d9c-1ad9dbe95293"> -<ExampleWords> -<AUni ws="en">freeze, harden, brittle, frost-bound</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What happens to things when they get cold?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="4fb181ba-8a8a-45a2-8e9f-528aca65cf51" ownerguid="dbd3e164-3f70-4395-9728-1c24c8900da6"> -<ExampleWords> -<AUni ws="en">measuring cup, measuring spoon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What utensils are used to measure ingredients?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="4fb32f3a-e508-40a4-b208-86b2518065c9" ownerguid="4231feeb-d7d1-4f48-907e-6cbe21827c29"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="57e435ff-f14a-44e1-b595-dff01f37fcc1" t="r" /> -</Morph> -<Msa> -<objsur guid="be6973f5-a2b1-46a6-9dd0-379cd8bb168a" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="4fb34e46-4d89-43b1-972b-4522f4e5a0d5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">diacuni:sa</AUni> -<AUni ws="qvm-x-acl">diacuni:sa</AUni> -<AUni ws="qvm-x-akh">diacuni:sa</AUni> -<AUni ws="qvm-x-akl">diacuni:sa</AUni> -<AUni ws="qvm-x-ame">diacuni:sa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+diaconisa</AUni> -<AUni ws="qvm-x-acl">+diaconisa</AUni> -<AUni ws="qvm-x-akh">+diaconisa</AUni> -<AUni ws="qvm-x-akl">+diaconisa</AUni> -<AUni ws="qvm-x-ame">+diaconisa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.404" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b0758bc9-74c3-4d12-a09b-6c4d2e6d7e1b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+diaconisa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c0beff90-4e3c-408f-bf88-98f0b056ac3b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8bd1885e-480e-418d-a822-6e53b3f35411" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +diaconisa 
\entryTyp root 
\gENG 
\gSPN 
\e +diaconisa 
\c N0 
\ach diacuni:sa 
\akh diacuni:sa 
\acl diacuni:sa 
\akl diacuni:sa 
\ame diacuni:sa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="4fb79b12-3bd1-46ed-8698-7d27052a5dc7" ownerguid="cce98603-ff8f-4213-945a-bd6746716139"> -<Abbreviation> -<AUni ws="en">1.2.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.947" /> -<DateModified val="2022-9-23 16:55:7.947" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to land that is flat.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Plain, plateau</AUni> -</Name> -<Questions> -<objsur guid="d3162cd0-794b-49b6-bbe1-31087e3058ab" t="o" /> -<objsur guid="6e82e568-08f0-4bdd-b0e7-a8185a4290c4" t="o" /> -<objsur guid="e0b7215a-a9df-424a-bf1b-2ef4adc01bb1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="4fbe296e-d1d8-4838-999f-5507149ff834"> -<Analyses> -<objsur guid="1df33d84-5adc-4723-a742-6ce21f17390c" t="o" /> -</Analyses> -<Checksum val="1786613281" /> -<Form> -<AUni ws="qvm-x-akh">runakunaman</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="4fbede2b-f737-44c6-b816-14e225f80f02" ownerguid="862aa851-6b1d-491a-bd03-40e8723e4d33"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" t="r" /> -</Morph> -<Msa> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="4fbf9207-4073-4d41-b19a-5795c43bd316" ownerguid="5386368c-d3e5-4ff4-88b0-f27c801a9d1d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="4fc734f2-a91d-4693-8caf-e7fe51a2df8a" ownerguid="44bf22fd-3725-4c49-bd3c-434402c33493"> -<Abbreviation> -<AUni ws="en">5.1.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.306" /> -<DateModified val="2022-9-23 16:55:8.306" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a chair.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Chair</AUni> -</Name> -<Questions> -<objsur guid="d139b4f1-c6a8-4585-9733-dd88cd786fa8" t="o" /> -<objsur guid="63c4eb57-963d-4e82-83de-b432d74e9d31" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="975d0109-1bba-4b0e-85b8-2c6b51c8e074" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="4fcb305a-f0a4-4d65-913e-de949df382e5" ownerguid="1e4daec2-7641-4a60-b0e0-25b4f250ba5f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">gargu; garga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">gargu; gargo; garga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qarqu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qarqu; qarqo; qarqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qarqu; qarqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="3fd65fc8-17a4-49fe-89ac-3f1c84143c12" t="r" /> -</Morph> -<Msa> -<objsur guid="c7dbec8d-838d-4a92-a15b-4f3d5b563513" t="r" /> -</Msa> -</rt> -<rt class="WfiWordform" guid="4fcc47fd-b1df-4255-9c80-1f210566b8ae"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">PLALLF</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="PunctuationForm" guid="4fccec2d-58a4-466f-a087-a79d6bf13b57"> -<Form> -<Str> -<Run ws="qvm-x-akh">></Run> -</Str> -</Form> -</rt> -<rt class="MoStemMsa" guid="4fcd4471-7cfc-4711-b9d1-a26a359d8e12" ownerguid="64a6ff62-6b62-49fc-9f4a-34bcb4949523"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="4fcdaa40-c72b-41d5-b86c-e4fae1dad351" ownerguid="bda6adc2-c9b3-4eb5-9fd3-5e0dadf7ea9f"> -<Form> -<AUni ws="qvm-x-ach">mandil</AUni> -<AUni ws="qvm-x-acl">mandil; mandil; mandel</AUni> -<AUni ws="qvm-x-akh">mandil</AUni> -<AUni ws="qvm-x-akl">mandil; mandil; mandel</AUni> -<AUni ws="qvm-x-ame">mandil</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="4fcde5bd-30c9-482c-b4db-2ae0bb791c7c" ownerguid="8f3b45f3-3d18-41ba-b593-022f361d002a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">warmi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">warmi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">warmi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f527da1e-d074-47e5-ab55-35d9106f617d" t="r" /> -</Morph> -<Msa> -<objsur guid="86b5e60e-c55d-4797-a0a2-e6891fff7ec3" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="4fd2b576-9e1f-4816-a713-d389bb166f79" ownerguid="2351f52a-8822-46ad-99c4-7ef526e94a6f"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">(Mary washed the dress, but it wasn't clean so) she washed it <again>.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">do something again, repeat, redo, over, all over again</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to doing something again?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="4fd3996c-8b6e-4a47-97be-07d86ae15198" ownerguid="e3447274-2d76-4d2d-bc29-2000cc94760a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tool</AUni> -<AUni ws="es">herramienta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7921806f-b6b6-46db-9d99-76bbdc52f64c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="4fdf3cf1-0808-4f11-acdd-9db71550baab" ownerguid="18bf6c79-6399-4977-be3d-93135302d8c4"> -<Abbreviation> -<AUni ws="en">9.6.2.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.720" /> -<DateModified val="2022-9-23 16:55:8.720" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that something had no purpose.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89I Purpose</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Without purpose</AUni> -</Name> -<Questions> -<objsur guid="3a0299e5-f25d-45ef-a483-6152ec9b16e2" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="4fe2be17-aaf4-418f-bdad-b475bdb77572" ownerguid="0134f6fe-9b56-4d4e-ae56-f1fd5e58493f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">belong</AUni> -<AUni ws="es">pertenecer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b78a4ccd-e551-4718-aba6-a85c55da1229" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="4fe3becf-b8ed-427c-9070-71ce8864d745" ownerguid="643ef0ba-b1ae-4562-accd-6e57fd2d3818"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="4fed6666-26f3-4d86-b389-92f4272c078a" ownerguid="76ad9fa6-4fde-4c80-a977-15677369edc2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="3ea3712c-71d5-4673-bf50-f41b40e4f5a7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="PunctuationForm" guid="4ff20fec-ba47-42d1-9f49-1531368444b3"> -<Form> -<Str> -<Run ws="en">s1</Run> -</Str> -</Form> -</rt> -<rt class="MoStemMsa" guid="4ffec0c2-3214-4804-8e92-d495a0e8fa7a" ownerguid="5eb6d0d0-79d3-41e5-b4bc-576076f05dc2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="5003921c-01bc-4d8d-8895-e572421d605c" ownerguid="8b47e9e5-c935-48c5-a93e-8291e58d2778"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="500581df-73f1-4d3c-94db-57a856301460"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">probicha</AUni> -<AUni ws="qvm-x-acl">probicha</AUni> -<AUni ws="qvm-x-akh">probicha</AUni> -<AUni ws="qvm-x-akl">probicha</AUni> -<AUni ws="qvm-x-ame">probicha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+aprovechar.2</AUni> -<AUni ws="qvm-x-acl">+aprovechar.2</AUni> -<AUni ws="qvm-x-akh">+aprovechar.2</AUni> -<AUni ws="qvm-x-akl">+aprovechar.2</AUni> -<AUni ws="qvm-x-ame">+aprovechar.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.810" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="63bdd295-2d3a-4e50-8664-895102852a5a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+aprovechar.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="73ab5c74-4f1e-47de-ac1e-45e36360bf75" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="527bd2ae-dc82-494f-934f-dc32c9fa85e4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +aprovechar.2 
\entryTyp root 
\gENG take.advantage 
\gSPN aprovechar 
\e +aprovechar.2 
\c V2 
\mp +assimilated 
\ach probicha 
\akh probicha 
\acl probicha 
\akl probicha 
\ame probicha 
\i DEU 20.6 Maygayquipis üvata tsayrag plantar wayuyninta manarag provichashga carga chacrayquiman cuticuy. 
\i PRO 10.2 Suwacuypa rïcuyagcunataga manaragpis provichaptinmi wanutsipäconga.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="500680a2-780c-4bb3-9ec1-e3b8edcb0d9d" ownerguid="0c846b1b-058e-409b-bffe-fac4a8cdc81f"> -<Form> -<AUni ws="qvm-x-ach">cuaja</AUni> -<AUni ws="qvm-x-acl">cuaja</AUni> -<AUni ws="qvm-x-akh">cuaja</AUni> -<AUni ws="qvm-x-akl">cuaja</AUni> -<AUni ws="qvm-x-ame">cuaja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="50071a6a-a666-4203-a629-cd87953d20b1" ownerguid="484602df-3914-4538-a36f-62a75fc50306"> -<Form> -<AUni ws="qvm-x-ach">cuarta</AUni> -<AUni ws="qvm-x-acl">cuarta</AUni> -<AUni ws="qvm-x-akh">cuarta</AUni> -<AUni ws="qvm-x-akl">cuarta</AUni> -<AUni ws="qvm-x-ame">cuarta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5008c22a-bb65-4a88-b4a7-333e9130d976" ownerguid="32fc19fd-a04e-4b69-9442-f7d57348ec55"> -<ExampleWords> -<AUni ws="en">beef, steak, hamburger, minced meat, rump roast, fillet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What is the meat of a cow called?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="5008db6e-4463-402c-989e-5a056395ebec" ownerguid="d8b1a547-3592-41b4-b2dd-a7994b7357f4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="500b4b3a-5d72-462c-ad99-7cbccad1de16" ownerguid="cba6876c-5b48-42f4-ae0a-7fbe9bb971ef"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">You are in my light.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">shade, cast a shadow, block the light, eclipse, overshadowing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something blocking the light from shining on something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="501292ea-f67c-422a-ac23-b6f1dcb8cf7a" ownerguid="3a328ddb-10bf-4f79-844c-4fab5dae99c7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5014388e-073c-42b5-abda-6d9639c654f4" ownerguid="fba27833-d6f1-4c36-ac39-28902b29261b"> -<ExampleWords> -<AUni ws="en">similarity, likeness, resemblance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to the quality of being similar?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="50153e79-5bc1-446f-9aa2-4a564170d16b" ownerguid="eaed8c63-9f97-4116-927c-19f364a99e72"> -<ExampleWords> -<AUni ws="en">unfriendly, cold, inhospitable, hostile, antagonistic, give someone the cold shoulder</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is unfriendly?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5017ee9e-2746-4a25-b630-4e866033443d" ownerguid="5ff33204-fa18-4008-9b22-56647edb534b"> -<Form> -<AUni ws="qvm-x-ach">trompisa</AUni> -<AUni ws="qvm-x-acl">trompisa</AUni> -<AUni ws="qvm-x-akh">trompisa</AUni> -<AUni ws="qvm-x-akl">trompisa</AUni> -<AUni ws="qvm-x-ame">trompisa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StStyle" guid="501c3363-065d-465a-baad-15d0787f9ded" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="80a47ed1-1e29-40d4-9aa0-d3041a8ca9dc" t="r" /> -</BasedOn> -<Context val="14" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Reversal-Subentry</Uni> -</Name> -<Rules> -<Prop firstIndent="0" leadingIndent="21000" spaceBefore="0"></Prop> -</Rules> -<Structure val="0" /> -<Type val="0" /> -<Usage> -<AUni ws="en">Each paragraph of subentry information that is added to a reversal entry if there are subentries.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="WfiAnalysis" guid="501dcdfc-ed38-44ad-a8bf-00e1d93b23ff" ownerguid="f054c3a4-731f-41e5-9df0-eefe478d748b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="b9e694b5-5132-4748-a2c6-c2abd5a269b9" t="o" /> -<objsur guid="1e6350d7-9fbd-41f7-915a-eb6d8e747e27" t="o" /> -<objsur guid="94977fe2-68ac-4329-af93-7bbe6214f866" t="o" /> -<objsur guid="9531e925-713b-4587-8f45-2efaa3d52650" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="50225cf0-3766-4e72-b86f-8399e2e2c231" ownerguid="3eea2cba-44f3-4381-8cc2-dcb00d88a7cd"> -<Form> -<AUni ws="qvm-x-ach">esponja</AUni> -<AUni ws="qvm-x-acl">esponja</AUni> -<AUni ws="qvm-x-akh">esponja</AUni> -<AUni ws="qvm-x-akl">esponja</AUni> -<AUni ws="qvm-x-ame">esponja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="5028ca70-81ac-4ad1-9bbc-2edc34923eeb" ownerguid="aba62efa-b83b-442b-8e16-df72eee20258"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="502da427-9619-4d5f-9e2c-719c73174c87" ownerguid="fb003309-1d75-458e-aa57-0fa41ec866a8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="502f6711-0307-42eb-8ea3-cac948f84c4b" ownerguid="675d67bb-da64-456e-8825-bdf074bb82be"> -<ExampleWords> -<AUni ws="en">begin a relationship, join, affiliate, associate, enlist, enroll, enter, establish, fall in with, sign up, worm your way in, hit it off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to beginning a relationship?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5034773d-6b6a-4a54-9f9a-ada2caf74538" ownerguid="53ce5d16-865f-4de5-bae1-92badd1c9883"> -<Form> -<AUni ws="qvm-x-ach">päla</AUni> -<AUni ws="qvm-x-acl">päla</AUni> -<AUni ws="qvm-x-akh">päla</AUni> -<AUni ws="qvm-x-akl">päla</AUni> -<AUni ws="qvm-x-ame">päla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="5036e8ec-c327-464b-af61-7922f69851d3" ownerguid="c6b6486e-c1ae-4f85-9aac-421c5fd21f78"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="50370272-6516-45ea-b473-8a09c2ec26af"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guetu</AUni> -<AUni ws="qvm-x-acl">guetu; guetu; gueto</AUni> -<AUni ws="qvm-x-akh">qetu</AUni> -<AUni ws="qvm-x-akl">qetu; qetu; qeto</AUni> -<AUni ws="qvm-x-ame">qitu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qitu.n</AUni> -<AUni ws="qvm-x-acl">*qitu.n</AUni> -<AUni ws="qvm-x-akh">*qitu.n</AUni> -<AUni ws="qvm-x-akl">*qitu.n</AUni> -<AUni ws="qvm-x-ame">*qitu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.214" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8f033e35-5ebd-4bea-8345-9d13e2da08b2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qitu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8ca57018-af2e-4912-aa11-038bade59977" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b6482ed8-9762-45a3-b0a1-0c120593c9a1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qitu.n 
\entryTyp root 
\gENG 
\gSPN 
\e *qitu.n 
\c N0 
\ach guetu 
\akh qetu 
\acl guetu / _# 
\acl guetu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gueto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qetu / _# 
\akl qetu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qeto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qitu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5037df14-2c62-4cdd-a9b0-9613335b23e9" ownerguid="043d12ac-c76d-4b4c-813b-4ef7758c8085"> -<ExampleWords> -<AUni ws="en">hidden, secret</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is hidden?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="503aec14-5708-47c1-a9c8-79938589e713" ownerguid="38747176-6ec8-486c-a786-3a250f72aff1"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="5c26da80-839c-4c39-84ca-41792249b198" t="o" /> -<objsur guid="1286445c-8988-43a2-95ad-372a500eac73" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="504dc9f6-dd1b-4b4d-ac0c-4ae75725c6e2" ownerguid="773e0590-9933-401b-af8e-31c74f4e9de0"> -<Form> -<AUni ws="qvm-x-ach">aselgas</AUni> -<AUni ws="qvm-x-acl">aselgas</AUni> -<AUni ws="qvm-x-akh">aselgas</AUni> -<AUni ws="qvm-x-akl">aselgas</AUni> -<AUni ws="qvm-x-ame">aselgas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="50511a02-278a-496c-9073-30ea2b59a80c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">dedicación; dedicacion</AUni> -<AUni ws="qvm-x-acl">dedicación; dedicacion</AUni> -<AUni ws="qvm-x-akh">dedicación; dedicacion</AUni> -<AUni ws="qvm-x-akl">dedicación; dedicacion</AUni> -<AUni ws="qvm-x-ame">dedicación; dedicacion</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+dedicación</AUni> -<AUni ws="qvm-x-acl">+dedicación</AUni> -<AUni ws="qvm-x-akh">+dedicación</AUni> -<AUni ws="qvm-x-akl">+dedicación</AUni> -<AUni ws="qvm-x-ame">+dedicación</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.366" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c585aa52-aad2-4140-8eca-ed186cf69ac0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+dedicación</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1a24de53-ec60-4d06-bf28-f15438e30590" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="786bb598-3b9c-49b8-9ed8-b31813a473f9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +dedicación 
\entryTyp root 
\gENG 
\gSPN 
\e +dedicación 
\c N0 
\mp +FinalC 
\ach dedicación / _# 
\ach dedicacion / ~_# 
\akh dedicación / _# 
\akh dedicacion / ~_# 
\acl dedicación / _# 
\acl dedicacion / ~_# 
\akl dedicación / _# 
\akl dedicacion / ~_# 
\ame dedicación / _# 
\ame dedicacion / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="50566b61-7526-4162-8d4f-611e9a8f672f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waraca</AUni> -<AUni ws="qvm-x-acl">waraca</AUni> -<AUni ws="qvm-x-akh">waraka</AUni> -<AUni ws="qvm-x-akl">waraka</AUni> -<AUni ws="qvm-x-ame">waraka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waraka.n</AUni> -<AUni ws="qvm-x-acl">*waraka.n</AUni> -<AUni ws="qvm-x-akh">*waraka.n</AUni> -<AUni ws="qvm-x-akl">*waraka.n</AUni> -<AUni ws="qvm-x-ame">*waraka.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.515" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f169e882-f030-4308-8b29-8c2e99b5804d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waraka.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2ede4825-ac22-4edf-8b87-bb4dedad5e2c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c8b34ac3-10ff-4116-8cf5-ab958dfa0989" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waraka.n 
\entryTyp root 
\gENG sling 
\gSPN honda 
\e *waraka.n 
\c N0 
\ach waraca 
\akh waraka 
\acl waraca 
\akl waraka 
\ame waraka</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="50584b7e-7e0e-4a61-8036-ece42b653cb0" ownerguid="c888c7ac-8cf4-49d2-a33e-20d19d84c47b"> -<ExampleWords> -<AUni ws="en">pork, sausage, ham, pork chop, gammon steak, pork tenderloin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What is the meat of a pig called?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5058c141-f0a2-4368-b1c4-d0962e7f613f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsulca</AUni> -<AUni ws="qvm-x-acl">tsulca</AUni> -<AUni ws="qvm-x-akh">tsulka</AUni> -<AUni ws="qvm-x-akl">tsulka</AUni> -<AUni ws="qvm-x-ame">tsulka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chullka</AUni> -<AUni ws="qvm-x-acl">*chullka</AUni> -<AUni ws="qvm-x-akh">*chullka</AUni> -<AUni ws="qvm-x-akl">*chullka</AUni> -<AUni ws="qvm-x-ame">*chullka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.335" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="915aae9f-5f79-4d20-a140-067213a19470" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chullka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="83175cdf-1aff-41f2-85b9-127cc7709bf8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="42c19b88-f596-4a8b-b906-ae9f09754563" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chullka 
\entryTyp root 
\gENG stack 
\gSPN ? 
\e *chullka 
\c V1 
\ach tsulca 
\akh tsulka 
\acl tsulca 
\akl tsulka 
\ame tsulka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="5058d187-daa5-4afb-b3c9-e53774b9f2a0" ownerguid="d2c0de49-eaa3-4b97-b23a-c9a1487a5af9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">trust</AUni> -<AUni ws="es">confiar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e3519008-76e4-4566-93d8-5d4d03802a79" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="50590f79-0c58-4710-8781-3823717137d4" ownerguid="32f868e0-54a7-4d04-8689-ac10e13396e5"> -<ExampleWords> -<AUni ws="en">cut grass, mow, scythe, clip</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to cutting grass?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="505dfcbf-173a-4a69-8496-3289643082d8" ownerguid="dc1055aa-98c7-4ecd-845c-e5e3a51529b9"> -<Form> -<AUni ws="qvm-x-ach">sasa</AUni> -<AUni ws="qvm-x-acl">sasa</AUni> -<AUni ws="qvm-x-akh">sasa</AUni> -<AUni ws="qvm-x-akl">sasa</AUni> -<AUni ws="qvm-x-ame">sasa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="505e677e-7fae-4ba5-82f9-aec50fef2200" ownerguid="fbcfd1a3-b1f3-4e35-a413-43038de002c5"> -<Form> -<AUni ws="qvm-x-ach">culu</AUni> -<AUni ws="qvm-x-acl">culu; culu; culo</AUni> -<AUni ws="qvm-x-akh">kulu</AUni> -<AUni ws="qvm-x-akl">kulu; kulu; kulo</AUni> -<AUni ws="qvm-x-ame">kulu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="505e7e23-ae56-481a-837c-28de0b8bcfec" ownerguid="86078fa5-1d4e-4420-867e-8e76a1b6e3bf"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="50620963-f3f5-4038-8c27-19639a73ec35" ownerguid="9a7604b4-d42f-44b7-9aef-47847dc93f0b"> -<ExampleWords> -<AUni ws="en">masochist, martyr, be a glutton for punishment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to someone who seems to enjoy suffering?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5064da75-9e00-49bc-88af-d092af810018"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">diccionariu; diccionario</AUni> -<AUni ws="qvm-x-acl">diccionariu; diccionariu; diccionario</AUni> -<AUni ws="qvm-x-akh">diccionariu; diccionario</AUni> -<AUni ws="qvm-x-akl">diccionariu; diccionariu; diccionario</AUni> -<AUni ws="qvm-x-ame">diccionariu; diccionario</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+diccionario</AUni> -<AUni ws="qvm-x-acl">+diccionario</AUni> -<AUni ws="qvm-x-akh">+diccionario</AUni> -<AUni ws="qvm-x-akl">+diccionario</AUni> -<AUni ws="qvm-x-ame">+diccionario</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.406" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="11457e50-1991-419a-b92a-92639965bd90" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+diccionario</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3aa87a2c-bff5-48a1-bf63-ec25adab8437" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d36f1b80-e776-4297-a624-19a5128bf084" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +diccionario 
\entryTyp root 
\gENG dictionary 
\gSPN diccionario 
\e +diccionario 
\c N0 
\ach diccionariu / ~_# 
\ach diccionario / _# 
\akh diccionariu / ~_# 
\akh diccionario / _# 
\acl diccionariu / ~_# 
\acl diccionariu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl diccionario +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl diccionariu / ~_# 
\akl diccionariu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl diccionario +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame diccionariu / ~_# 
\ame diccionario / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="50697138-b662-402d-b87e-82af5a4feaf2" ownerguid="d0658d37-b5fc-4aed-b804-136efb6886cf"> -<Form> -<AUni ws="qvm-x-ach">costüra</AUni> -<AUni ws="qvm-x-acl">costüra</AUni> -<AUni ws="qvm-x-akh">costüra</AUni> -<AUni ws="qvm-x-akl">costüra</AUni> -<AUni ws="qvm-x-ame">costüra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="506a3c86-1617-4e6b-99fe-49a99cca57e1" ownerguid="797a10b9-ef8f-411e-8043-7b4e46426caa"> -<Form> -<AUni ws="qvm-x-ach">alberja</AUni> -<AUni ws="qvm-x-acl">alberja</AUni> -<AUni ws="qvm-x-akh">alberja</AUni> -<AUni ws="qvm-x-akl">alberja</AUni> -<AUni ws="qvm-x-ame">alberja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="506c5c89-70a3-4a2d-914f-e55d392fd65c" ownerguid="155510e7-ca58-418a-8c5c-8b044d67cebd"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="506cdae5-e78b-4374-b539-666db13e389f" ownerguid="2ea38f3e-8291-447b-9649-27cabde45c12"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="5071c920-b3ca-43dc-be62-39129f73a247" ownerguid="e7766633-cdbd-4a60-a8d7-c4de9089f605"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5071eb8e-ecf8-46bd-ac88-22d12fb9b6cd" ownerguid="2b846476-00cf-4d82-97a1-26e1eda880ca"> -<ExampleWords> -<AUni ws="en">immature, babyish, boyish, callow, childlike, childish, girlish, inexperienced, infantile, irresponsible, naive, puerile, rookie, sophomoric, spoiled</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is immature?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5073927d-d871-4d59-9c5b-960f332559e3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chicu</AUni> -<AUni ws="qvm-x-acl">chicu; chicu; chico</AUni> -<AUni ws="qvm-x-akh">chiku</AUni> -<AUni ws="qvm-x-akl">chiku; chiku; chiko</AUni> -<AUni ws="qvm-x-ame">chiku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*triku.n</AUni> -<AUni ws="qvm-x-acl">*triku.n</AUni> -<AUni ws="qvm-x-akh">*triku.n</AUni> -<AUni ws="qvm-x-akl">*triku.n</AUni> -<AUni ws="qvm-x-ame">*triku.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.109" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ee55271e-3725-4f8a-9b82-0104f799322d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*triku.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dcd58f4f-4c5f-4032-bec9-14a5543b3db9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9861efc2-35d5-4384-9406-8517bb03a1f8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *triku.n 
\entryTyp root 
\gENG 
\gSPN becerro 
\e *triku.n 
\c N0 
\ach chicu 
\akh chiku 
\acl chicu / _# 
\acl chicu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chiku / _# 
\akl chiku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chiko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chiku</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="50789089-ee7a-4d84-bac4-d78be5cf197e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">masara</AUni> -<AUni ws="qvm-x-acl">masara</AUni> -<AUni ws="qvm-x-akh">masara</AUni> -<AUni ws="qvm-x-akl">masara</AUni> -<AUni ws="qvm-x-ame">masara</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+amasar</AUni> -<AUni ws="qvm-x-acl">+amasar</AUni> -<AUni ws="qvm-x-akh">+amasar</AUni> -<AUni ws="qvm-x-akl">+amasar</AUni> -<AUni ws="qvm-x-ame">+amasar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.749" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1731c589-f449-423c-ab9e-ceedc0d33edc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+amasar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b2d0820b-76e6-4033-8c25-01f3af721438" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="16e0a53e-f090-4cd8-92d2-1eb344c5ed20" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +amasar 
\entryTyp root 
\gENG knead 
\gSPN amasar 
\e +amasar 
\c V2 
\ach masara 
\akh masara 
\acl masara 
\akl masara 
\ame masara</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="50798d1a-78b4-4752-849f-27048afb7a8e" ownerguid="35da19f3-7b32-4b67-ac53-b7893d85a83e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="507a1cdf-5a27-49e6-94c6-b2742d033113" ownerguid="42471d90-8ba5-45c1-b7bb-d1006b88911e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StStyle" guid="507cb768-7f8a-471e-8776-8faf196f27a6" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="679ab46a-8a27-4449-91b1-edad14669b01" t="r" /> -</BasedOn> -<Context val="8" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Note General Paragraph</Uni> -</Name> -<Next> -<objsur guid="507cb768-7f8a-471e-8776-8faf196f27a6" t="r" /> -</Next> -<Rules> -<Prop fontsize="8000" fontsizeUnit="mpt" lineHeight="10000" lineHeightType="atLeast" lineHeightUnit="mpt"></Prop> -</Rules> -<Structure val="0" /> -<Type val="0" /> -<Usage> -<AUni ws="en">Note General Paragraph identifies a note.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="MoStemAllomorph" guid="507e37c4-c4ed-4182-90f1-c5336536e2c8" ownerguid="839b8c6e-eb74-4b98-aee3-5573c8ded9e8"> -<Form> -<AUni ws="qvm-x-ach">garapacha</AUni> -<AUni ws="qvm-x-acl">garapacha</AUni> -<AUni ws="qvm-x-akh">qarapacha</AUni> -<AUni ws="qvm-x-akl">qarapacha</AUni> -<AUni ws="qvm-x-ame">qarapacha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="50826f66-6321-4219-a56d-825b561dca8c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wacra</AUni> -<AUni ws="qvm-x-acl">wacra</AUni> -<AUni ws="qvm-x-akh">wakra</AUni> -<AUni ws="qvm-x-akl">wakra</AUni> -<AUni ws="qvm-x-ame">wakra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wakra</AUni> -<AUni ws="qvm-x-acl">*wakra</AUni> -<AUni ws="qvm-x-akh">*wakra</AUni> -<AUni ws="qvm-x-akl">*wakra</AUni> -<AUni ws="qvm-x-ame">*wakra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.444" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5d2db14b-471b-4132-8043-54b30575e542" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wakra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="35497a81-f6d8-4b55-afb9-98de2ded55fe" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c43b7c75-0cd2-432b-aea5-1438c0fde030" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wakra 
\entryTyp root 
\gENG broken.wall 
\gSPN ? 
\e *wakra 
\c N0 
\ach wacra 
\akh wakra 
\acl wacra 
\akl wakra 
\ame wakra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="50859e3e-0e93-4436-ba72-26447e905151" ownerguid="6bf8ce57-1970-4efb-a7d7-b0bf8be6fb6b"> -<ExampleWords> -<AUni ws="en">timing, sense of timing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person's ability to choose the right time to do something?</AUni> -</Question> -</rt> -<rt class="Text" guid="5086cebf-cabc-4b9a-8585-d65826011e94"> -<Contents> -<objsur guid="7d78db90-a316-4649-84b0-32db353e8633" t="o" /> -</Contents> -<DateCreated val="2022-10-10 21:52:40.793" /> -<DateModified val="2022-10-20 18:41:12.618" /> -<IsTranslated val="False" /> -<Name> -<AUni ws="en">two words, one capitalized</AUni> -</Name> -</rt> -<rt class="LexSense" guid="508a2845-36ba-4b60-a0a8-23a3e0db91bb" ownerguid="167d21c6-a28e-4309-a28e-a1ce0d7c5f14"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">incense</AUni> -<AUni ws="es">incienso.1</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b31acbe5-d1fe-4d81-9935-1eaf364f2b0f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="508aa1b4-4a04-4787-945a-76d4c013cbde"> -<Analyses> -<objsur guid="60fb6b73-00c7-4adf-817c-7e61783b3a66" t="o" /> -</Analyses> -<Checksum val="1880732655" /> -<Form> -<AUni ws="qvm-x-akh">puntata</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="508c92dd-0f05-4f09-96bd-2367e3e50b28" ownerguid="e7b229cb-037f-4f90-9be8-406afc73735d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">peel</AUni> -<AUni ws="es">mondar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="35b11855-77fb-4ad7-8299-c546b2df8ac2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="508d2900-dee3-41df-9da3-41843ac47cf4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">justas</AUni> -<AUni ws="qvm-x-acl">justas</AUni> -<AUni ws="qvm-x-akh">justas</AUni> -<AUni ws="qvm-x-akl">justas</AUni> -<AUni ws="qvm-x-ame">justas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+justas</AUni> -<AUni ws="qvm-x-acl">+justas</AUni> -<AUni ws="qvm-x-akh">+justas</AUni> -<AUni ws="qvm-x-akl">+justas</AUni> -<AUni ws="qvm-x-ame">+justas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.902" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aca37ae2-a4de-49e9-85e1-74f3f7ad6fea" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+justas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4f8f306c-ed77-4373-b3f0-1f01cd99a90e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2dedbb06-d081-4e57-b70d-40cc99bd5533" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +justas 
\entryTyp root 
\gENG 
\gSPN 
\e +justas 
\c ONSHEV 
\mp +FinalC 
\ach justas 
\akh justas 
\acl justas 
\akl justas 
\ame justas</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="50903b35-5606-4727-8474-01c06bf588da" ownerguid="22acd714-b11e-462a-bd8e-6ff50843c103"> -<Abbreviation> -<AUni ws="en">6.5.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.458" /> -<DateModified val="2022-9-23 16:55:8.458" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to walls.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>7F Walls and Fences</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Wall</AUni> -</Name> -<Questions> -<objsur guid="dda93e12-90a4-400e-bd63-a5f7c26efcb5" t="o" /> -<objsur guid="dfed3b35-ed0d-4011-ae1f-42f06888ce4b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmAgent" guid="5093d7d7-4f18-4aad-8c86-88389476df15" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Approves> -<objsur guid="b35f4cb9-5caa-4219-8ea6-4b191e71b06d" t="o" /> -</Approves> -<Disapproves> -<objsur guid="70c0b09c-1699-4019-bee2-c02d6d95f7d9" t="o" /> -</Disapproves> -<Human val="False" /> -<Name> -<AUni ws="en">HCParser</AUni> -</Name> -<Notes> -<objsur guid="dd975191-a41c-461a-9340-3cf71ab48eae" t="o" /> -</Notes> -<Version> -<Uni>Normal</Uni> -</Version> -</rt> -<rt class="LexSense" guid="5094852e-23ec-4744-9de0-0d5b7f044594" ownerguid="f7646515-273f-4390-b7ef-5c424c2c1551"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="cb581b8b-64e4-445d-a2bb-84aa20283f71" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="509597cf-6a10-4649-9c6b-2529e16e30cd" ownerguid="7ebac9f5-d347-471d-a432-f439a85a054d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="09cb1cc4-1081-4d1d-a252-429312635957" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="c8547daf-229c-49a3-86c0-634bbd5e3dcd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5095fe64-ebb3-4190-ab27-bb5b09f07793"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chunchug</AUni> -<AUni ws="qvm-x-acl">chunchog</AUni> -<AUni ws="qvm-x-akh">chunchuq</AUni> -<AUni ws="qvm-x-akl">chunchoq</AUni> -<AUni ws="qvm-x-ame">chunchuq</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*truntruq</AUni> -<AUni ws="qvm-x-acl">*truntruq</AUni> -<AUni ws="qvm-x-akh">*truntruq</AUni> -<AUni ws="qvm-x-akl">*truntruq</AUni> -<AUni ws="qvm-x-ame">*truntruq</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.170" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3fac5caf-878e-4cab-ad0d-19c55c4494e5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*truntruq</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="338f588e-db4e-4952-a514-07ecfbc07757" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="251ee782-dbc2-484b-ae41-216e29d3920c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *truntruq 
\entryTyp root 
\gENG heel 
\gSPN talón 
\e *truntruq 
\c N0 
\mp +FinalC 
\ach chunchug 
\akh chunchuq 
\acl chunchog 
\akl chunchoq 
\ame chunchuq</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5097d9d8-c2f8-4215-be6b-d7ca70108493" ownerguid="af399519-5d7c-4100-9c79-8162cb4641cb"> -<ExampleWords> -<AUni ws="en">go slow, slowness, take your time (over)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to doing something slowly?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5099d287-fb09-42e5-abb5-4d86e107d204" ownerguid="98e60aac-c0c6-42e0-a71b-2f618811bb60"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="509b59c0-338e-4e2c-8e07-5b1ea36a1158" ownerguid="46a35455-4f89-454c-bd66-75683efd6049"> -<Form> -<AUni ws="qvm-x-ach">shiriri</AUni> -<AUni ws="qvm-x-acl">shiriri; shirire</AUni> -<AUni ws="qvm-x-akh">shiriri</AUni> -<AUni ws="qvm-x-akl">shiriri; shirire</AUni> -<AUni ws="qvm-x-ame">shiriri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="509bc7d7-9e67-46b7-98a0-ec5fc0c87123" ownerguid="b0cdf732-5199-4df9-975a-2190adb4261a"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="509c51b8-95ee-4dd0-8fdd-3628a6f1b401" ownerguid="eaaf6f47-ef7e-41ec-abd6-1980077664af" /> -<rt class="WfiWordform" guid="50a52a7c-fbdf-49a2-94ff-25707b6cbfc1"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Belénman</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="50a5d816-6961-4162-b2ff-57b275ab687f" ownerguid="eb00b4c2-5b87-4ef8-9548-800fc5c9b524"> -<ExampleWords> -<AUni ws="en">vandalize, vandal, smash up, sabotage, tamper with, deface, desecrate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to deliberately damaging something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="50a82c7d-25b8-49e1-8c3a-483c793f5d90" ownerguid="2470ad05-636e-4c85-96ab-cd880da58741"> -<ExampleWords> -<AUni ws="en">Christianity, Islam, Hinduism, Judaism, animism, paganism</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the names of the official religions?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="50a91b09-718e-4fbb-8016-8b36aae392a1" ownerguid="bf309576-a4b0-49ee-8a7c-09952cc58195"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">envious</AUni> -<AUni ws="es">envidioso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0c8c497b-5b67-49c4-893e-8a8edd3e5710" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="50a932bd-c92b-42b0-bd00-0356fd1665bf" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<ExampleWords> -<AUni ws="en">look for a job, find a job, find employment, job hunting</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(18) What words are used of finding a job?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="50a9f6a1-76cb-4c49-9f22-0733efc95bc0" ownerguid="efe7b1e6-1ac3-4fba-bec1-7a75ac3fe65a"> -<Form> -<AUni ws="qvm-x-ach">pichi</AUni> -<AUni ws="qvm-x-acl">pichi; pichi; piche</AUni> -<AUni ws="qvm-x-akh">pichi</AUni> -<AUni ws="qvm-x-akl">pichi; pichi; piche</AUni> -<AUni ws="qvm-x-ame">pichi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="50ab3705-a81e-4fcc-b3ae-95c075966f69" ownerguid="60364974-a005-4567-82e9-7aaeff894ab0"> -<Abbreviation> -<AUni ws="en">1.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.963" /> -<DateModified val="2022-9-23 16:55:7.963" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the way in which water and other liquids move.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>47 Activities Involving Liquids or Masses; 47A Movement of Liquids or Masses; 14E Events Involving Liquids and Dry Masses</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Movement of water</AUni> -</Name> -<Questions> -<objsur guid="b87536bb-b406-4935-9ec9-5ca1fb5ae57b" t="o" /> -<objsur guid="d7876ba0-c87d-41f8-a840-c9ee6daba75c" t="o" /> -<objsur guid="f27800e6-fa9d-4106-aa53-163f6e857161" t="o" /> -<objsur guid="20d3fda2-12a1-42ad-82ab-56a8f90ce479" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="0205145d-23b6-4c3c-bf2d-bf866bb010e7" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="60595d09-4a15-4499-b6e1-d36a704bcbe9" t="o" /> -<objsur guid="647603c2-6f32-48f3-91fa-1f7f0e44b539" t="o" /> -<objsur guid="a9fbc056-3134-41af-baf4-9f63fa5bd5ae" t="o" /> -<objsur guid="741c417a-11e9-460c-9ab3-51b8220df016" t="o" /> -<objsur guid="b09205d4-fbb4-4bcd-94ef-f8d83e298462" t="o" /> -<objsur guid="c1a63ba2-1db6-410d-a4ed-5f64d1798bc1" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="50ac28ab-7385-408f-b5eb-3e27b191fcf4" ownerguid="70eac6be-66e8-4827-8f2f-d15427efff60"> -<Abbreviation> -<AUni ws="en">3.5.7.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.174" /> -<DateModified val="2022-9-23 16:55:8.174" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to publishing books.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Publish</AUni> -</Name> -<OcmCodes> -<Uni>214 Publishing; 213 Printing</Uni> -</OcmCodes> -<Questions> -<objsur guid="438d8a21-78f6-426e-9227-3eb03aa0c708" t="o" /> -<objsur guid="f77cbd99-a6d9-4094-9694-8c77fc2a71b5" t="o" /> -<objsur guid="90cf8010-e37c-40c1-9a7e-18a69c3a2dc7" t="o" /> -<objsur guid="da5d4619-2ec3-4a29-8cbc-59ff4a487adf" t="o" /> -<objsur guid="0f47839e-1873-471d-b8e0-e746362b2338" t="o" /> -<objsur guid="f6e6f5b4-5431-4b82-8dfa-952b19bc4d63" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="50add7d0-d1b0-48a7-8328-a00215f40b7c" ownerguid="d84032c0-de38-4cfb-acae-585b3f46c4e1"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="50adfc7d-79d2-4fb2-9ffd-76362080842e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guepa; guepa:</AUni> -<AUni ws="qvm-x-acl">guepa; guepa:</AUni> -<AUni ws="qvm-x-akh">qepa; qepa:</AUni> -<AUni ws="qvm-x-akl">qepa; qepa:</AUni> -<AUni ws="qvm-x-ame">qipa; qipa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qipa:</AUni> -<AUni ws="qvm-x-acl">*qipa:</AUni> -<AUni ws="qvm-x-akh">*qipa:</AUni> -<AUni ws="qvm-x-akl">*qipa:</AUni> -<AUni ws="qvm-x-ame">*qipa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.195" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="37213965-e00a-4c46-bec8-aef47afe898c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qipa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="51feb485-34f4-412a-bc3a-67316a521bc6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3e052be9-a210-4ede-b854-fb2b22a08415" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qipa: 
\entryTyp root 
\gENG be.behind 
\gSPN estar.atras 
\e *qipa: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach guepa foreshortened 
\ach guepa: 
\akh qepa foreshortened 
\akh qepa: 
\acl guepa foreshortened 
\acl guepa: 
\akl qepa foreshortened 
\akl qepa: 
\ame qipa foreshortened 
\ame qipa:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="50aeb8ba-a4a2-4837-81d8-22ee9ff30a80" ownerguid="d73ede92-ab9a-4110-8b6a-615cc1a33853"> -<Form> -<AUni ws="qvm-x-ach">weran</AUni> -<AUni ws="qvm-x-acl">weran</AUni> -<AUni ws="qvm-x-akh">weran</AUni> -<AUni ws="qvm-x-akl">weran</AUni> -<AUni ws="qvm-x-ame">wiran</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="50b29abd-77ca-45e1-9594-d446d23bcc09" ownerguid="b304749b-8e52-4b5a-b238-9cc5234b2044"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">turn.sod</AUni> -<AUni ws="es">voltear.césped</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="75151706-4d8a-49a4-a4a7-de556bab5f79" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="50b57bd6-5f6b-4793-8e74-7124894ad7cb" ownerguid="c6ebf386-d8fa-4e08-9d2b-32569ec1e7dc"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="1bcd4269-58b9-49f3-bb8f-70b32f5c7fa9" t="o" /> -<objsur guid="394ecccf-47ea-43b8-a8d3-6626652ed445" t="o" /> -<objsur guid="26f5baa8-4357-41f0-80f3-de0ba45a44cc" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="50b5aa47-15cf-4ce1-b196-5700b1dc872e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">capilla</AUni> -<AUni ws="qvm-x-acl">capilla</AUni> -<AUni ws="qvm-x-akh">capilla</AUni> -<AUni ws="qvm-x-akl">capilla</AUni> -<AUni ws="qvm-x-ame">capilla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+capilla</AUni> -<AUni ws="qvm-x-acl">+capilla</AUni> -<AUni ws="qvm-x-akh">+capilla</AUni> -<AUni ws="qvm-x-akl">+capilla</AUni> -<AUni ws="qvm-x-ame">+capilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.52" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cb64f831-132e-4267-afc5-488eec58994a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+capilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eb0b0629-b461-46d3-936d-a9311f98ce8c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3d7c8d67-9918-402b-9d2d-c3cff26dcee0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +capilla 
\entryTyp root 
\gENG chapel 
\gSPN capilla 
\e +capilla 
\c N0 
\ach capilla 
\akh capilla 
\acl capilla 
\akl capilla 
\ame capilla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="50b5b065-147c-42de-8c5c-8b8b51e35306"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ca:za</AUni> -<AUni ws="qvm-x-acl">ca:za</AUni> -<AUni ws="qvm-x-akh">ca:za</AUni> -<AUni ws="qvm-x-akl">ca:za</AUni> -<AUni ws="qvm-x-ame">ca:za</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cazar</AUni> -<AUni ws="qvm-x-acl">+cazar</AUni> -<AUni ws="qvm-x-akh">+cazar</AUni> -<AUni ws="qvm-x-akl">+cazar</AUni> -<AUni ws="qvm-x-ame">+cazar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.900" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="27fe9d67-c057-4c09-becc-a741aa2bcb97" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cazar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="17469642-61b2-4f3b-baa6-f7fc402b3761" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6b78b791-a8ac-417d-bd1c-b1df82cf3d63" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cazar 
\entryTyp root 
\gENG hunt 
\gSPN cazar 
\e +cazar 
\c V1 
\ach ca:za 
\akh ca:za 
\acl ca:za 
\akl ca:za 
\ame ca:za</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="50b62b28-0676-4968-ba55-4e94964bb0ab"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuti</AUni> -<AUni ws="qvm-x-acl">cuti; cuti; cute</AUni> -<AUni ws="qvm-x-akh">kuti</AUni> -<AUni ws="qvm-x-akl">kuti; kuti; kute</AUni> -<AUni ws="qvm-x-ame">kuti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kuti.n</AUni> -<AUni ws="qvm-x-acl">*kuti.n</AUni> -<AUni ws="qvm-x-akh">*kuti.n</AUni> -<AUni ws="qvm-x-akl">*kuti.n</AUni> -<AUni ws="qvm-x-ame">*kuti.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.31" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="15cd3c26-af09-4ed6-a99c-c5c4e077d532" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kuti.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="50ccffa6-4c46-497e-854c-58ddad7cd9d2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dbe617d7-4dee-4597-adb5-ce08a0e18938" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kuti.n 
\entryTyp root 
\gENG occasion 
\gSPN ocasión 
\e *kuti.n 
\c N0 
\mp +FinalI 
\ach cuti 
\akh kuti 
\acl cuti / _# 
\acl cuti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cute +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kuti / _# 
\akl kuti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kute +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kuti 
\mcc *kuti.n / ~_ [participle] 
\mcc *kuti.n / ~_ DO1</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="50b697f5-fc46-4c58-a0c5-5e4d7f9ef8e6" ownerguid="823dcac2-74eb-4b72-9e17-75c34faaf1e4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ham</AUni> -<AUni ws="es">jamón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b8217dd0-c1c5-4912-b769-7bfd43a94302" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="50b90252-4409-42aa-984e-199d773474d2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">plo:mu</AUni> -<AUni ws="qvm-x-acl">plo:mu; plo:mu; plo:mo</AUni> -<AUni ws="qvm-x-akh">plo:mu</AUni> -<AUni ws="qvm-x-akl">plo:mu; plo:mu; plo:mo</AUni> -<AUni ws="qvm-x-ame">plo:mu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+plomo</AUni> -<AUni ws="qvm-x-acl">+plomo</AUni> -<AUni ws="qvm-x-akh">+plomo</AUni> -<AUni ws="qvm-x-akl">+plomo</AUni> -<AUni ws="qvm-x-ame">+plomo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.881" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="de2eca96-7cbe-453d-93fe-b47fc18ab0a9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+plomo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8b1b3853-b163-44a7-9348-979b108a80fd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c00180e4-c51e-4427-9528-13e6d2046798" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +plomo 
\entryTyp root 
\gENG lead 
\gSPN plomo 
\e +plomo 
\c N0 
\ach plo:mu 
\akh plo:mu 
\acl plo:mu / _# 
\acl plo:mu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl plo:mo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl plo:mu / _# 
\akl plo:mu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl plo:mo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame plo:mu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="50bd29cc-b77f-4864-b56c-e70ab258e7d3" ownerguid="267e008e-547d-458b-b216-680ceab68b5f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="50bdfee5-208c-4132-95c0-9f3dd8142fe5" ownerguid="a4958dd9-03cc-4863-ab76-cd0682060cb0"> -<ExampleWords> -<AUni ws="en">praise (n), acclaim, accolade, adoration, approval, bouquet, commendation, compliment (n), credit, eulogy, glory, honor (n), kudos, paean, panegyric, plaudit, recognition, tribute</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to what is said?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="50bfd2d4-94fd-41c6-a647-ce9dcbb36825" ownerguid="de2b3307-d9e6-480f-87f4-fcad615bc3de"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="50c0ec8c-87fc-4f50-9487-7ef0e273da2b" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<ExampleWords> -<AUni ws="en">branch, excrescence</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to part of something becoming big?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="50c1a392-2928-407a-8306-3c70141e375e" ownerguid="18a6684f-d324-45ee-855c-44d473916b14"> -<Abbreviation> -<AUni ws="en">8.4.6.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the future.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Future</AUni> -</Name> -<Questions> -<objsur guid="d0377a5a-3c8d-49c0-a983-d707b2c6f393" t="o" /> -<objsur guid="11aa56ed-dd43-4e91-b86a-29ac9c50b891" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="d27a5602-ece1-452e-9ed6-7261082dc8b8" t="o" /> -<objsur guid="99e38da1-91ad-4dff-a68f-972607936e50" t="o" /> -<objsur guid="73ea23c2-db45-49fa-a72b-0fc6eff4ce30" t="o" /> -<objsur guid="04543543-4c3d-4d71-aa87-53191ef3b7b0" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="50c6c9d6-3c6b-4e7c-a05e-aa8b32aa8799" ownerguid="1e5abf5f-b384-435a-8353-ca903ef37c62"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="50c71b0b-12fd-4b10-a69b-2b1bdb6c525f" ownerguid="ce386d36-77fa-4b94-9186-b971bfe42107"> -<Form> -<AUni ws="qvm-x-ach">atrevi</AUni> -<AUni ws="qvm-x-acl">atrevi; atreve</AUni> -<AUni ws="qvm-x-akh">atrevi</AUni> -<AUni ws="qvm-x-akl">atrevi; atreve</AUni> -<AUni ws="qvm-x-ame">atrevi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="50c7cedb-e48d-4e40-b667-882924600f9d" ownerguid="14dc9eeb-191d-4bb1-8782-f74926482b23"> -<Form> -<AUni ws="qvm-x-ach">ictsu</AUni> -<AUni ws="qvm-x-acl">ictsu; ictso</AUni> -<AUni ws="qvm-x-akh">iktsu</AUni> -<AUni ws="qvm-x-akl">iktsu; iktso</AUni> -<AUni ws="qvm-x-ame">iktsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="50c7e9a1-b995-460a-8978-c9716f9e3f9f" ownerguid="4369e292-e9da-463b-9aef-f56289b63ff8"> -<Form> -<AUni ws="qvm-x-ach">común; comun</AUni> -<AUni ws="qvm-x-acl">común; comun</AUni> -<AUni ws="qvm-x-akh">común; comun</AUni> -<AUni ws="qvm-x-akl">común; comun</AUni> -<AUni ws="qvm-x-ame">común; comun</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="50c97901-74ab-4d7a-83bf-d26ceb798596" ownerguid="bb18a3a5-232f-492b-8784-c7575525ab85"> -<Form> -<AUni ws="qvm-x-ach">chilla</AUni> -<AUni ws="qvm-x-acl">chilla</AUni> -<AUni ws="qvm-x-akh">chilla</AUni> -<AUni ws="qvm-x-akl">chilla</AUni> -<AUni ws="qvm-x-ame">chilla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="50c99d7d-44fd-4079-ae92-d19b008af6ba" ownerguid="e4ddd746-7958-4bee-8174-2c31eb9f4770"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="0dbaa4f6-c99b-424c-b9ea-3530caf201c8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="50ca9ba5-4305-4804-bf34-9c799332eb6c" ownerguid="62769b5e-9981-40f8-905b-1b94475a6f48"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="50ccecd1-edf2-4aed-b483-c7a911d05cd2" ownerguid="5422d4ba-8af4-4767-912e-43b60ef28eab"> -<ExampleWords> -<AUni ws="en">not very, hardly, barely, a little, fairly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that an attribute is not intense?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="50ccffa6-4c46-497e-854c-58ddad7cd9d2" ownerguid="50b62b28-0676-4968-ba55-4e94964bb0ab"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="50cef1ad-aabb-4295-9156-6a48915d3968" ownerguid="dc1a2c6f-1b32-4631-8823-36dacc8cb7bb"> -<ExampleWords> -<AUni ws="en">sunburn, sunstroke, suntan, tan, heatstroke, heat prostration, sun damage, fading from the sun, bleached by the sun</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words describe the damage done by sunlight?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="50cfc2c2-bb9b-4579-967f-06f8de2ad410" ownerguid="7648040b-0aa5-4d9a-8f13-ffd066b81602"> -<ExampleWords> -<AUni ws="en">caliper, chain, line, micrometer, rod, rule, ruler, tape measure, measuring tape, tapeline, yardstick</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What instruments are used to measure the length of something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="50d06ec2-c978-4c12-83dc-c2e2d919f465"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cama</AUni> -<AUni ws="qvm-x-acl">cama</AUni> -<AUni ws="qvm-x-akh">kama</AUni> -<AUni ws="qvm-x-akl">kama</AUni> -<AUni ws="qvm-x-ame">kama</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.528" /> -<DateModified val="2022-10-16 15:27:47.114" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="1" /> -<LexemeForm> -<objsur guid="a4d42f6f-d626-4469-8166-21d6f4e69d6d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">LIM2.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="72dc7bab-4d12-4cdb-a144-3c853f889fb5" t="o" /> -<objsur guid="85aa2915-81b5-4a1e-bad6-9bd987827f8f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9eaf1d79-fa5d-4ca1-884c-62a316b13404" t="o" /> -<objsur guid="cd842b59-b2da-4cd7-b033-1f8c0109e4c3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx LIM2.1 
\entryTyp suffix 
\gENG LIM2 
\gSPN LIM2 
\e LIM2 
\c N0/N0 BN/BN R0/R0 
\ach cama 
\akh kama 
\acl cama 
\akl kama 
\ame kama 
\o 210 
\mcc LIM2 / *wara.n _</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="50d44417-9bd4-437f-910f-081e3ee70374" ownerguid="3ea52505-aa6c-4f28-b475-f15ac1820ec1"> -<ExampleWords> -<AUni ws="en">possess, inhabit, demonize, torture, haunt, trouble</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to what demons do to people?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="50d48629-c168-4468-aa39-c9381396de22" ownerguid="f2022802-4f43-4fa2-8c58-33a8b9e75895"> -<ExampleWords> -<AUni ws="en">increasingly, gain ground, get more and more, become more and more, grow in, gain in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words indicate that something happens or someone does something more than before?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="50d70998-b590-4eee-87a1-23d56a1b0c10" ownerguid="5d870c36-d778-473c-a1a7-f426c430d315"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 8.36 Nogapita witicogcunaga peligruchömi caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="50d95603-693f-4ce1-ad38-7d628bead3f6" ownerguid="c8d3bee0-5a48-4c28-89d3-86d654b3ab68"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">body.guard</AUni> -<AUni ws="es">guarda.espalda</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6b1118fc-3a6f-42f3-b7a9-d0718c3836f5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="50d9d887-1375-4164-90af-eb29f5e73292" ownerguid="a2989907-310a-4a71-8768-cfa71e66caa6"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="6372ac63-f32c-4de0-be7f-10f996d85895" t="o" /> -<objsur guid="89fb78ef-09a0-40a7-a3f4-74e1bae93a3e" t="o" /> -<objsur guid="3530be75-7fbe-4cc0-b1c9-0364fba567ee" t="o" /> -<objsur guid="419b05c9-c8b7-4068-9b32-ad9b54aff09d" t="o" /> -</MorphBundles> -</rt> -<rt class="CmSemanticDomain" guid="50db27b5-89eb-4ffb-af82-566f51c8ec0b" ownerguid="ba06de9e-63e1-43e6-ae94-77bea498379a"> -<Abbreviation> -<AUni ws="en">2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.63" /> -<DateModified val="2022-9-23 16:55:8.63" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to being alive and to a person's lifetime.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>23G Live, Die</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Life</AUni> -</Name> -<OcmCodes> -<Uni>761 Life and Death; 159 Life History Materials</Uni> -</OcmCodes> -<Questions> -<objsur guid="b170d38d-806d-450b-bae8-9f075c915025" t="o" /> -<objsur guid="d5c78827-c5db-4e4c-8423-b67a425a7944" t="o" /> -<objsur guid="7eeb3c3f-90b1-42ed-8abb-2ef42650f7e2" t="o" /> -<objsur guid="3ab21c61-1d19-4469-b7f5-d723757ceea8" t="o" /> -<objsur guid="b89aa797-f6f9-4394-addf-23606af935cd" t="o" /> -<objsur guid="58fbc39c-970e-4e0f-9208-e14683e69ca3" t="o" /> -<objsur guid="44a0d75b-d1ff-4ded-af49-72df732d8425" t="o" /> -<objsur guid="26cf8b7d-ceea-468f-a2b7-522f1b643598" t="o" /> -<objsur guid="41f85e19-edf1-479c-a15b-19df91d88a6d" t="o" /> -<objsur guid="4b60bbde-e9b6-4457-bde6-3321a6b2793b" t="o" /> -<objsur guid="36f977c7-2d7b-4fde-afe2-cad04f895fdf" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="8d47c9ec-80c4-4309-9848-c453dcd71182" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="ffcc57f8-6c6d-4bf4-85be-9220ca7c739d" t="o" /> -<objsur guid="c753fc8b-22ae-4e71-807f-56fb3ebd3cdd" t="o" /> -<objsur guid="35e61ec4-0542-4583-b5da-0aa5e31a35aa" t="o" /> -<objsur guid="444407f2-0c75-4bb9-a84c-cbd52d0fa9c9" t="o" /> -<objsur guid="0db5817e-05bf-4703-a6b9-e239ac44f857" t="o" /> -<objsur guid="1c3c8af0-56b9-4617-862e-21f39b388606" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="50db7496-1422-4491-874f-a1c18867488b" ownerguid="db72da84-2cb0-480a-a0d2-0868132d4702"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">päca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">päca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">päka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">päka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">päku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e89f4461-706d-4840-bf9f-bfa3b395d737" t="r" /> -</Morph> -<Msa> -<objsur guid="f32a5a50-f426-45b8-ae08-eba8e0a53b74" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="50df97b3-2d9c-48ae-ab56-d24155815026" ownerguid="a51b808e-e22e-4784-b577-e2cd73c62637"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 R0/R0 V0/V0 ONSHEV/ONSHEV BN/BN</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">TOP</AUni> -<AUni ws="es">TOP</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0daaea2b-9cca-4a9f-953a-83273b1d5023" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="50dfffe4-dfe8-445f-bdde-4cc8d83ebd6b" ownerguid="771e3882-f672-4e67-8580-edd82d7e5090"> -<Abbreviation> -<AUni ws="en">4.3.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.233" /> -<DateModified val="2022-9-23 16:55:8.233" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to cooperating with someone to do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Cooperate with</AUni> -</Name> -<Questions> -<objsur guid="f69ef10b-0255-40ee-ade3-d805c543ba3f" t="o" /> -<objsur guid="8e887ab4-b61e-42e3-9a19-892c3bcb2c42" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="92e441df-7e56-4e2c-b205-79a95800f567" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="50e06b0c-9a7a-47f4-b733-97773f914b3d" ownerguid="be1ba0af-0be2-4172-a1bb-807ab504ad68"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="50e28fa7-f6c3-45bc-871d-12ef771d532c" ownerguid="b5b36c31-c56d-44b9-933c-fe0e62d80c25"> -<Abbreviation> -<AUni ws="en">4.3.4.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.235" /> -<DateModified val="2022-9-23 16:55:8.235" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to caring for someone--to do something good for someone, because they need something and cannot do it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>35D Care For, Take Care Of</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Care for</AUni> -</Name> -<Questions> -<objsur guid="4801a29a-d1e5-4f1d-bba3-9688ca49260b" t="o" /> -<objsur guid="b2c3a6f9-e997-4a32-b9ef-3497d7cb3bb3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="50e344e6-7e2e-4886-a558-b1e33a14ae94" ownerguid="61310595-90e0-4e8e-84d1-c6f39b1a65ab"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="50e8d1a4-1b05-45c2-a9cb-da48c01154e0" ownerguid="00aac4e4-70d6-424f-b9d8-519e33c5106c"> -<Form> -<AUni ws="qvm-x-ach">ututu</AUni> -<AUni ws="qvm-x-acl">ututu; ututu; ututo</AUni> -<AUni ws="qvm-x-akh">ututu</AUni> -<AUni ws="qvm-x-akl">ututu; ututu; ututo</AUni> -<AUni ws="qvm-x-ame">ututu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="50ea2908-5098-4d63-810c-ee9231fcdd1d" ownerguid="ef3dae4d-47a9-4631-bd3f-c25d309a6732"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="50eb32a2-6dbb-4b7c-b370-aacdcfeaf5fc" ownerguid="d030f0c7-31a3-47da-be35-46f1eba63ae9"> -<Abbreviation> -<AUni ws="en">3.4.1.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.123" /> -<DateModified val="2022-9-23 16:55:8.123" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to enjoying doing something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Enjoy doing something</AUni> -</Name> -<Questions> -<objsur guid="34410c40-5ff9-49f8-8d15-aa263cb28f68" t="o" /> -<objsur guid="5468f1e0-4856-47c1-96eb-9da3e38d95f4" t="o" /> -<objsur guid="1684d474-ffcf-4118-85b9-693c408d9f7f" t="o" /> -<objsur guid="1ac47e12-22b3-4ae9-a5ac-29d7bd2314ee" t="o" /> -<objsur guid="ef8bd3cf-24d7-4370-ba5f-d4851854b46a" t="o" /> -<objsur guid="1d763460-c8cc-47b2-9f72-d2228e73303e" t="o" /> -<objsur guid="cc648fd2-05fc-49e5-891f-d4f0669b7bca" t="o" /> -<objsur guid="6d0fd262-0faf-4f67-bb53-53c3d145c5a5" t="o" /> -<objsur guid="55b75f5c-b547-47f7-9f3f-ee423a0ecb22" t="o" /> -<objsur guid="992f3b2f-248e-4a5f-aad5-5628bce2192a" t="o" /> -<objsur guid="8d563b55-6dd7-4552-82aa-fd5c1b229317" t="o" /> -<objsur guid="54d65427-732b-4dd0-b30a-4590eb43b149" t="o" /> -<objsur guid="dd4bb809-e717-4330-9901-b28401e9d3e3" t="o" /> -<objsur guid="7a057a8b-ad2e-45d0-8e8e-9d8f32c22be1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="50ef9789-3afe-4345-a294-4169710a9704"> -<Analyses> -<objsur guid="ade9b029-59be-454d-a8ee-389eb1be8202" t="o" /> -</Analyses> -<Checksum val="551972885" /> -<Form> -<AUni ws="qvm-x-akh">runakuna</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="50f1f32b-3b9c-4f46-a101-3c6a9283694b" ownerguid="e19e273c-0aed-49fd-818b-cae0c5228de7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="e5826633-e6f0-48eb-a23c-b0b4785f0959" t="o" /> -<objsur guid="04ade65f-2e32-4310-b466-42a60bfd3c92" t="o" /> -<objsur guid="ea608820-ccad-47fd-950b-b1b8e9c041f7" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">MOSTLY</AUni> -<AUni ws="es">MAYOR</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ccc7375e-4d88-4127-8778-4383b399d945" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="50f406e0-fd48-4856-b86c-c92f7c464e33" ownerguid="8161e1a7-6274-4d78-950c-2004c4164816"> -<Form> -<AUni ws="qvm-x-ach">pïcu</AUni> -<AUni ws="qvm-x-acl">pïcu; pïcu; pïco</AUni> -<AUni ws="qvm-x-akh">pïcu</AUni> -<AUni ws="qvm-x-akl">pïcu; pïcu; pïco</AUni> -<AUni ws="qvm-x-ame">pïcu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="50f9fc8b-72c2-4833-a848-4ee474565a3b" ownerguid="1ecdd7ca-47cf-4594-91fa-23b6f68e18a9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="50faff0d-402c-4cb9-9608-97612740133a" ownerguid="a85d0ad2-7b36-4e0b-81a7-2eba5f25e335"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">liver</AUni> -<AUni ws="es">higado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1821036a-12bc-461a-ad04-57973984da95" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="50fd5666-c60c-4624-87db-29f9135f12ad" ownerguid="4e7f1593-02a2-4659-8f15-101b37e71f02"> -<Form> -<AUni ws="qvm-x-ach">mucmucya; mucmucyä</AUni> -<AUni ws="qvm-x-acl">mucmucya; mucmucyä</AUni> -<AUni ws="qvm-x-akh">mukmukya; mukmukyä</AUni> -<AUni ws="qvm-x-akl">mukmukya; mukmukyä</AUni> -<AUni ws="qvm-x-ame">mukmukya; mukmukyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="50fdc692-a0f7-4fdb-a0ec-e6719c215404" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<ExampleWords> -<AUni ws="en">walk slowly, stroll, amble, ramble, take a Sunday stroll, meander along, saunter, inch, lumber, plod, poke, slog, toddle, traipse, trudge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to walking slowly?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="50fe417e-09fb-48ab-8fb8-188704164e68" ownerguid="a1da39db-5b46-49dd-a446-bd3611ee250b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Rumita combu shalamashgannogmi Tayta Diosnintsipa palabranpis caycan chucru shonguntsita quebrantan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="50ff0119-8015-4c9e-bce2-0df05b9c3080" ownerguid="d6c36bbe-a6b6-4c25-9ea3-e2289212431f"> -<Form> -<AUni ws="qvm-x-ach">jaga</AUni> -<AUni ws="qvm-x-acl">jaga</AUni> -<AUni ws="qvm-x-akh">jaqa</AUni> -<AUni ws="qvm-x-akl">jaqa</AUni> -<AUni ws="qvm-x-ame">haqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="50ff70b8-816c-439e-b116-c48a8d370f11" ownerguid="1ec7e01b-c1fb-4401-ad08-f4c31304e863"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="510091af-e912-422e-81b0-b469f03a4b0a" ownerguid="b553e989-2b2a-4b1e-a987-ae75f3862501"> -<ExampleWords> -<AUni ws="en">don't care, not give a damn, couldn't care less, be past caring, shrug off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to being uncaring?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5103f59a-d8f6-43fe-aa1c-bbf648febf6a" ownerguid="89e2435c-fb17-439b-b3b8-609262c3b02c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="510d5c78-1d23-441a-9f3f-25c2b251ac8f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">acra</AUni> -<AUni ws="qvm-x-acl">acra</AUni> -<AUni ws="qvm-x-akh">akra</AUni> -<AUni ws="qvm-x-akl">akra</AUni> -<AUni ws="qvm-x-ame">akra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*akra.v</AUni> -<AUni ws="qvm-x-acl">*akra.v</AUni> -<AUni ws="qvm-x-akh">*akra.v</AUni> -<AUni ws="qvm-x-akl">*akra.v</AUni> -<AUni ws="qvm-x-ame">*akra.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.687" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a3d77077-aadf-4d65-9791-ee883d3aa129" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*akra.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="44ae6bff-3236-4e4d-ae9b-b06981188e08" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bafdc174-c065-4afe-b575-17c1463f58b3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *akra.v 
\entryTyp root 
\gENG select 
\gSPN escoger 
\e *akra.v 
\c V2 
\ach acra 
\akh akra 
\acl acra 
\akl akra 
\ame akra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="510fb7ed-b9b2-411f-942e-3ba72ce6c2ac" ownerguid="7a0745e5-e58a-41b8-806a-e7176ba3a4ef"> -<Form> -<AUni ws="qvm-x-ach">asha</AUni> -<AUni ws="qvm-x-acl">asha</AUni> -<AUni ws="qvm-x-akh">asha</AUni> -<AUni ws="qvm-x-akl">asha</AUni> -<AUni ws="qvm-x-ame">asha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="5113c628-811d-46fe-8cc8-57b1c7bfcdf7" ownerguid="c1d85664-c1ee-4500-af75-d826d39fff59"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">slice</AUni> -<AUni ws="es">entajar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7964a0f9-c015-49f9-a82a-10bbbbd1b04f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="51155f7b-e429-460c-ada9-a01e0656a838" ownerguid="bd6fec5a-24ed-4059-9921-933a9b214183"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="511a6c2d-0bb1-43a9-b24c-27b0f1de85ed" ownerguid="47ca0709-4df5-4faa-8f72-302922245f12"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">correct</AUni> -<AUni ws="es">corregir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="43f7784d-72d5-413c-b0de-51c5263781b8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="511f6164-bae2-494a-9e7f-7d02e8c14ad6" ownerguid="6bf7ceaa-d5fb-45fa-bfde-a66a8e8d0d33"> -<Form> -<AUni ws="qvm-x-ach">valura</AUni> -<AUni ws="qvm-x-acl">valura</AUni> -<AUni ws="qvm-x-akh">valura</AUni> -<AUni ws="qvm-x-akl">valura</AUni> -<AUni ws="qvm-x-ame">valura</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5120544f-5d59-4481-95b6-aa8747951992" ownerguid="f858278a-2727-4403-9cf0-565cdececb1e"> -<Question> -<AUni ws="en">(11) Co-occurrence restriction: 'if'</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5120f5f0-671b-4d56-96d6-a4076d5923e8" ownerguid="d9850acb-9dca-431a-8bd7-e5ec4bcffaa7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a32aaa94-a452-4cc7-bfea-3314fb389f11" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5122f8b8-3894-457a-be2a-3e3d7463ba1a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chanca:ca</AUni> -<AUni ws="qvm-x-acl">chanca:ca</AUni> -<AUni ws="qvm-x-akh">chanca:ca</AUni> -<AUni ws="qvm-x-akl">chanca:ca</AUni> -<AUni ws="qvm-x-ame">chanca:ca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+chancaca</AUni> -<AUni ws="qvm-x-acl">+chancaca</AUni> -<AUni ws="qvm-x-akh">+chancaca</AUni> -<AUni ws="qvm-x-akl">+chancaca</AUni> -<AUni ws="qvm-x-ame">+chancaca</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.274" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d92baa67-e73e-41af-b2ab-dc573716349d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+chancaca</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eb6c2b90-0655-403f-b167-c299d353e4ac" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0a05d9ef-def4-4ce5-94e7-20daa4d18320" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +chancaca 
\entryTyp root 
\gENG candy 
\gSPN dulce 
\e +chancaca 
\c N0 
\ach chanca:ca 
\akh chanca:ca 
\acl chanca:ca 
\akl chanca:ca 
\ame chanca:ca 
\i PRO 26.22 Chancäcanogragmi mishquiycun cuentestëru
\f + 26.22 Waquin runacunaga 
\it nina shimi
\it* nipäcun y waquin runacunanami 
\it wilapishtëru
\it* nipäcun.
\f* wilapashganga.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="5125c171-2a3d-48b8-a3be-6591f879d4bb" ownerguid="a854b6a5-e727-49a7-8123-dad693a9a80c"> -<Gloss> -<AUni ws="en">ABL</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7afcee6e-54b0-4ff0-8b7f-bf81e7e75205" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="512b9eec-4e3d-4918-9685-3f83bfcd73bd" ownerguid="06052694-82c0-432e-9c25-9d72e2e32bf5"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="512e8ebe-f0d9-40fc-bc3b-c0465185c662"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lina:za</AUni> -<AUni ws="qvm-x-acl">lina:za</AUni> -<AUni ws="qvm-x-akh">lina:za</AUni> -<AUni ws="qvm-x-akl">lina:za</AUni> -<AUni ws="qvm-x-ame">lina:za</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+linaza</AUni> -<AUni ws="qvm-x-acl">+linaza</AUni> -<AUni ws="qvm-x-akh">+linaza</AUni> -<AUni ws="qvm-x-akl">+linaza</AUni> -<AUni ws="qvm-x-ame">+linaza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.940" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="97871369-7b9f-4202-b579-0895acaa8632" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+linaza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="23b1fa95-2e58-4ec0-b63f-e63b6217b19c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3cd05e18-5c20-460a-9c81-eb99df913591" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +linaza 
\entryTyp root 
\gENG linseed 
\gSPN linaza 
\e +linaza 
\c N0 
\ach lina:za 
\akh lina:za 
\acl lina:za 
\akl lina:za 
\ame lina:za</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="512f307e-b549-4028-a099-9efde1e250f1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">favor</AUni> -<AUni ws="qvm-x-acl">favor</AUni> -<AUni ws="qvm-x-akh">favor</AUni> -<AUni ws="qvm-x-akl">favor</AUni> -<AUni ws="qvm-x-ame">favor</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+favor</AUni> -<AUni ws="qvm-x-acl">+favor</AUni> -<AUni ws="qvm-x-akh">+favor</AUni> -<AUni ws="qvm-x-akl">+favor</AUni> -<AUni ws="qvm-x-ame">+favor</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.538" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="874b28f6-7f3e-48f6-b162-1d2ec5a97253" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+favor</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f57efd05-f9ba-4005-8508-c6d985f3e05e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="79c66635-314f-4736-bdbc-3e448893bfef" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +favor 
\entryTyp root 
\gENG favor 
\gSPN favor 
\e +favor 
\c N0 
\mp +FinalC 
\ach favor 
\akh favor 
\acl favor 
\akl favor 
\ame favor</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="512fc899-c9a0-4096-b8b6-c042c4ec6359" ownerguid="cb2d461b-e205-4c20-8a53-00abb5b008f8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">qué.miedo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9a3b5920-6b21-4989-868a-3f2c64e0c1df" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5131f911-b782-4b33-8a54-142d3af32ea3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">costumbri; costumbre</AUni> -<AUni ws="qvm-x-acl">costumbri; costumbri; costumbre</AUni> -<AUni ws="qvm-x-akh">costumbri; costumbre</AUni> -<AUni ws="qvm-x-akl">costumbri; costumbri; costumbre</AUni> -<AUni ws="qvm-x-ame">costumbri; costumbre</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+costumbre</AUni> -<AUni ws="qvm-x-acl">+costumbre</AUni> -<AUni ws="qvm-x-akh">+costumbre</AUni> -<AUni ws="qvm-x-akl">+costumbre</AUni> -<AUni ws="qvm-x-ame">+costumbre</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.207" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="886dfa1a-2b59-432e-83ac-c69e847c93ef" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+costumbre</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f61dc856-e924-4b7b-94d8-fd7e50dc55b6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2318ff20-eefd-4aa4-8166-ae55bf2a30e4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +costumbre 
\entryTyp root 
\gENG custom 
\gSPN costumbre 
\e +costumbre 
\c N0 
\mp +FinalI 
\ach costumbri / ~_# 
\ach costumbre / _# 
\akh costumbri / ~_# 
\akh costumbre / _# 
\acl costumbri / ~_# 
\acl costumbri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl costumbre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl costumbri / ~_# 
\akl costumbri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl costumbre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame costumbri / ~_# 
\ame costumbre / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5132a9a2-e65a-4438-8994-12885ef95856" ownerguid="c54ada5e-e56f-4cd6-9367-b9bd5601067c"> -<Form> -<AUni ws="qvm-x-ach">tsaqui</AUni> -<AUni ws="qvm-x-acl">tsaqui; tsaqui; tsaque</AUni> -<AUni ws="qvm-x-akh">tsaki</AUni> -<AUni ws="qvm-x-akl">tsaki; tsaki; tsake</AUni> -<AUni ws="qvm-x-ame">tsaki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="5133b821-32c6-46b9-bc73-65861ddd2755" ownerguid="eb1dad61-59a2-49b1-ac77-4054ebf01b7a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="c0a8d088-78b3-40e6-a4ea-e43393fea3a3" t="r" /> -</Morph> -<Msa> -<objsur guid="3503ea2c-6d6a-40bd-ab49-d2f29a6d368a" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="51359129-376c-411e-a501-69e35afa187c" ownerguid="5c1fb772-962c-4941-8593-f81f27add753"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pluck</AUni> -<AUni ws="es">coger</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="20fab998-033b-4e50-ae7f-4906bd5a39ae" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="513771eb-8467-468a-8bc8-e52567e66df9" ownerguid="995751ef-d71b-429c-a4ee-032f5b309bd7"> -<Abbreviation> -<AUni ws="en">4.1.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.184" /> -<DateModified val="2022-9-23 16:55:8.184" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a relationship between people who work together.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Working relationship</AUni> -</Name> -<Questions> -<objsur guid="fe0d54de-89a1-4c15-ab48-6f1c1189f69a" t="o" /> -<objsur guid="47058c85-a05e-4fd6-85cf-8b304dc15319" t="o" /> -<objsur guid="2e8a7266-ece4-40ca-9d25-e0ae2f230f6b" t="o" /> -<objsur guid="08a7b8ff-1bf3-4e60-bd08-55b1c623d77a" t="o" /> -<objsur guid="b938b594-a0f4-4fd2-9706-8d57a68d989b" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="50dfffe4-dfe8-445f-bdde-4cc8d83ebd6b" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="51389a15-2545-4654-a58d-26dc8db9debc" ownerguid="6cdb14a9-f0cf-4326-a64b-2a09e5ed6622"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">touch</AUni> -<AUni ws="es">topar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="14f29380-8807-4bd5-94af-eea59b161c5d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="513b0a65-612b-4ea9-b18f-845918c381dc" ownerguid="bd1bfdc8-a558-4b0b-af9f-c778dbdd32ad"> -<Form> -<AUni ws="qvm-x-ach">tercer</AUni> -<AUni ws="qvm-x-acl">tercer</AUni> -<AUni ws="qvm-x-akh">tercer</AUni> -<AUni ws="qvm-x-akl">tercer</AUni> -<AUni ws="qvm-x-ame">tercer</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="513d0332-57fc-4099-b88a-458d8876e06d" ownerguid="ba24e7de-b697-44e5-b40f-2ed2b312bc1a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="513e902c-403c-4277-8abd-e9d9d97fb074" ownerguid="c72cf7f4-606c-4dd4-925c-089175dbcf77"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="cbcef0e3-6664-4e72-a80d-34012498434f" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="329cad3f-1cda-4f05-a85a-322613c38bec" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="514974a2-c2fd-4b25-a24d-2ff52fa3d798" ownerguid="ff7e3abd-6810-4128-83c9-701b4925c2fe"> -<Abbreviation> -<AUni ws="en">5.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.337" /> -<DateModified val="2022-9-23 16:55:8.337" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for all the ways a person can stop a fire.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Extinguish a fire</AUni> -</Name> -<Questions> -<objsur guid="6739a877-5924-4f5e-8751-c79ac1bd7d52" t="o" /> -<objsur guid="a4a9f5b0-a61f-4312-b78d-34fac2a42d77" t="o" /> -<objsur guid="de34592e-e150-4aae-ab04-5019aa2afb92" t="o" /> -<objsur guid="dde9a536-33a0-4880-b13a-066c3e99797c" t="o" /> -<objsur guid="48a3b122-6f5a-4894-9c9d-bd05cd51d500" t="o" /> -<objsur guid="575f8d2e-319a-4d41-a2ed-82d93741e216" t="o" /> -<objsur guid="ce377419-0c9c-4752-a8df-075488ffb643" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="514ca916-65ed-4447-a9e8-977ec67cac02" ownerguid="6278ec36-0756-486f-932d-d63396124629"> -<Form> -<AUni ws="qvm-x-ach">micha</AUni> -<AUni ws="qvm-x-acl">micha</AUni> -<AUni ws="qvm-x-akh">micha</AUni> -<AUni ws="qvm-x-akl">micha</AUni> -<AUni ws="qvm-x-ame">micha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="514e35e5-92ed-4a6a-a196-61b9daa85c46" ownerguid="d7ae7208-7869-46e3-90c1-676342c3d7af"> -<ExampleWords> -<AUni ws="en">cheat, chisel, deceive, defraud, fraud, greed, impose yourself on, maneuver, scheme, swindle, take someone, trick</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to cheating someone?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="514e6267-e21b-468b-ac19-89d558bb71a7" ownerguid="5979d306-49c3-4c2a-9745-3053f0b61a60"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">NUM 25.8 Yaykurirmi jananakushqa kaykaqta pachanpa tuksiriykurqan.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiAnalysis" guid="5151d545-a147-4c16-b63f-7a8bfeb75c3c" ownerguid="e8a23135-d95e-4d2c-ae3c-0243fae06117"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="9eacb978-d888-4ace-9a4a-455abe5b071b" t="o" /> -<objsur guid="52a75217-c213-459a-af84-e750e3b1742c" t="o" /> -<objsur guid="6e48b048-32bf-4785-97b2-ee5ed1e6afe4" t="o" /> -<objsur guid="39b16684-2ff4-4a8b-9795-4bd471948b04" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="51580bea-6dee-4384-8cb9-c5489e3fa0df" ownerguid="0d914eb7-cb13-42b1-9ee9-2de995ef3707"> -<Form> -<AUni ws="qvm-x-ach">atäqui; atäqui</AUni> -<AUni ws="qvm-x-acl">atäqui; atäqui; atäque</AUni> -<AUni ws="qvm-x-akh">atäqui; atäqui</AUni> -<AUni ws="qvm-x-akl">atäqui; atäqui; atäque</AUni> -<AUni ws="qvm-x-ame">atäqui; atäqui</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="515f9b40-0637-4ce3-b343-2d99de3f723b" ownerguid="683f570a-0bfe-4a97-b55d-4319b328508b"> -<Abbreviation> -<AUni ws="en">6.6.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to working with water pipes.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Plumber</AUni> -</Name> -<Questions> -<objsur guid="123c3410-3208-422d-b6e3-0f950931b958" t="o" /> -<objsur guid="deb9d500-b153-4522-a148-ec8e29d13057" t="o" /> -<objsur guid="bfc8a049-548f-4a94-8c70-f0d6424491da" t="o" /> -<objsur guid="684fc759-00e5-4e08-8675-5f7db79655f2" t="o" /> -<objsur guid="56c6cf57-4596-4b16-99aa-b1c2ab44e2ac" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="683f570a-0bfe-4a97-b55d-4319b328508b" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="51609f05-a73a-486d-81bc-b2adaea24367" ownerguid="fc7e4918-61d3-4287-9a66-057e7ef25bf5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="516346d4-121e-4996-bddf-20c87408b53c" ownerguid="7ea9d3b4-c10a-4231-b569-2e7aa53951c6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="5be17873-311e-4698-8cc5-15f058fb362b" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">carry</AUni> -<AUni ws="es">llevar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e6cb397d-7141-41d6-9806-dcf744236415" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="51645e12-78fc-4d24-ad6a-f9e3d5337daf" ownerguid="8de202c1-1be0-4d1f-b4f9-2b01bf9b5472" /> -<rt class="LexEntry" guid="516d3a6d-7ac0-47d4-a64b-f2261cddb44c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">espija</AUni> -<AUni ws="qvm-x-acl">espija</AUni> -<AUni ws="qvm-x-akh">espija</AUni> -<AUni ws="qvm-x-akl">espija</AUni> -<AUni ws="qvm-x-ame">espija</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+espigar</AUni> -<AUni ws="qvm-x-acl">+espigar</AUni> -<AUni ws="qvm-x-akh">+espigar</AUni> -<AUni ws="qvm-x-akl">+espigar</AUni> -<AUni ws="qvm-x-ame">+espigar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.498" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="58a387c9-eddd-4ee4-a54e-1da4b6de46e1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+espigar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d4a0d47d-46df-46ba-b57d-7a19e448fba4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c92de533-1e27-409f-b85c-3a18d0ed0bac" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +espigar 
\entryTyp root 
\gENG to.head 
\gSPN espigar 
\e +espigar 
\c V1 
\ach espija 
\akh espija 
\acl espija 
\akl espija 
\ame espija</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="516d3b06-0af2-4c9b-9e64-bb843dfa4a50" ownerguid="ae0e8b72-9c32-4f10-8b32-90c75893cb33"> -<Form> -<AUni ws="qvm-x-ach">goñuñu</AUni> -<AUni ws="qvm-x-acl">goñuñu; goñuño</AUni> -<AUni ws="qvm-x-akh">qoñuñu</AUni> -<AUni ws="qvm-x-akl">qoñuñu; qoñuño</AUni> -<AUni ws="qvm-x-ame">quñuñu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="516e8837-8901-4ac8-bd3d-7927c27b8862"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">corri:dus</AUni> -<AUni ws="qvm-x-acl">corri:dus</AUni> -<AUni ws="qvm-x-akh">corri:dus</AUni> -<AUni ws="qvm-x-akl">corri:dus</AUni> -<AUni ws="qvm-x-ame">corri:dus</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+corridos</AUni> -<AUni ws="qvm-x-acl">+corridos</AUni> -<AUni ws="qvm-x-akh">+corridos</AUni> -<AUni ws="qvm-x-akl">+corridos</AUni> -<AUni ws="qvm-x-ame">+corridos</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.211" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="961d08e4-5703-40b1-94be-a76744b248c2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+corridos</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bee1d449-731f-4348-9f7e-a1b88914af6e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="331a61cf-32e3-4c20-ac27-e6c9c45c8669" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +corridos 
\entryTyp root 
\gENG trots 
\gSPN corridos 
\e +corridos 
\c N0 
\mp +FinalC 
\ach corri:dus 
\akh corri:dus 
\acl corri:dus 
\akl corri:dus 
\ame corri:dus</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="51718f22-f4e7-4437-a422-9d1b13e204fe" ownerguid="87d344ac-94cc-49d6-9878-ebc86a933033"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">His father <helped> John build his house.; John built his house <with> his father's <help>.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">help, be of help, help out, with someone's help, aid (v), come to someone's aid, assist, be of assistance, support, lend a hand, do your bit, rally round</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to helping someone?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5174e55e-5292-4ab9-9b2c-fc37610aaf72"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pisto:la</AUni> -<AUni ws="qvm-x-acl">pisto:la</AUni> -<AUni ws="qvm-x-akh">pisto:la</AUni> -<AUni ws="qvm-x-akl">pisto:la</AUni> -<AUni ws="qvm-x-ame">pisto:la</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pistola</AUni> -<AUni ws="qvm-x-acl">+pistola</AUni> -<AUni ws="qvm-x-akh">+pistola</AUni> -<AUni ws="qvm-x-akl">+pistola</AUni> -<AUni ws="qvm-x-ame">+pistola</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.861" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="07cd0b2f-39e5-434e-a082-aca7f194fcd3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pistola</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="08997433-a793-4c22-8806-d80a73082cd5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="423ad7d8-5224-4c18-a930-f6a3e59d4018" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pistola 
\entryTyp root 
\gENG pistol 
\gSPN pistola 
\e +pistola 
\c N0 
\ach pisto:la 
\akh pisto:la 
\acl pisto:la 
\akl pisto:la 
\ame pisto:la</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="5177eb1d-7a51-4f94-82a0-c44553beee3c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">utsuputu</AUni> -<AUni ws="qvm-x-acl">utsuputu; utsuputu; utsuputo</AUni> -<AUni ws="qvm-x-akh">utsuputu</AUni> -<AUni ws="qvm-x-akl">utsuputu; utsuputu; utsuputo</AUni> -<AUni ws="qvm-x-ame">utsuputu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uchuputu</AUni> -<AUni ws="qvm-x-acl">*uchuputu</AUni> -<AUni ws="qvm-x-akh">*uchuputu</AUni> -<AUni ws="qvm-x-akl">*uchuputu</AUni> -<AUni ws="qvm-x-ame">*uchuputu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.200" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8377d548-b54b-4c29-a5b4-99be62ac625e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uchuputu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="990a0519-692a-46b0-9e5f-82999cbb8f00" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9dc9019f-b657-43ed-9a28-00e4e4dc072a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uchuputu 
\entryTyp root 
\gENG ankle 
\gSPN tobillo 
\e *uchuputu 
\c N0 
\ach utsuputu 
\akh utsuputu 
\acl utsuputu / _# 
\acl utsuputu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl utsuputo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl utsuputu / _# 
\akl utsuputu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl utsuputo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame utsuputu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="517c28cb-a3dc-463c-a85c-3834a40eecc4" ownerguid="7347726c-b71e-41d8-8009-b78892706447"> -<Form> -<AUni ws="qvm-x-ach">alpa</AUni> -<AUni ws="qvm-x-acl">alpa</AUni> -<AUni ws="qvm-x-akh">alpa</AUni> -<AUni ws="qvm-x-akl">alpa</AUni> -<AUni ws="qvm-x-ame">alpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="5180f0ac-8182-42df-bdd6-b3e3ca876996" ownerguid="cf38d9ba-f7bc-4b2b-90f3-46510c07ddfb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="518101fd-45c2-4b1f-b6a8-aac637692c18" ownerguid="56e1564e-0c93-4aee-b410-bffad68e7980"> -<Form> -<AUni ws="qvm-x-ach">rillantina</AUni> -<AUni ws="qvm-x-acl">rillantina</AUni> -<AUni ws="qvm-x-akh">rillantina</AUni> -<AUni ws="qvm-x-akl">rillantina</AUni> -<AUni ws="qvm-x-ame">rillantina</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5184e8b3-f869-4951-9d2a-4fd702f7e3c2" ownerguid="99b5b80a-a2d6-4820-adfc-1da72528c272"> -<ExampleWords> -<AUni ws="en">be the same, unchanged, hasn't changed a bit, hasn't changed at all, unaffected</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe someone or something that is the same as before?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="51895bae-ad96-4beb-abc8-21b9aa5204d5" ownerguid="43a692af-46d8-4b35-8cfa-8522901487cf"> -<Form> -<AUni ws="qvm-x-ach">ti</AUni> -<AUni ws="qvm-x-acl">ti</AUni> -<AUni ws="qvm-x-akh">ti</AUni> -<AUni ws="qvm-x-akl">ti</AUni> -<AUni ws="qvm-x-ame">ti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="518ae71d-be53-4c3e-8377-976927cf7378" ownerguid="38c7bec1-cd8b-4d1c-9d26-a2685955bf94"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">deprecate</AUni> -<AUni ws="es">despreciar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c2bd856a-cc49-49c4-bc45-4f0987720bbd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="518c87e4-94b5-4ce3-b71f-73e7508cbd83" ownerguid="36f4aca3-8c9a-41e4-85fe-4e3ef8d95849"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">permission</AUni> -<AUni ws="es">permiso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="428b37c2-310b-4d1a-b0a4-fab31d3d22c2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5195d933-c9e7-4e81-b6e6-01a16790c638"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yega</AUni> -<AUni ws="qvm-x-acl">yega</AUni> -<AUni ws="qvm-x-akh">yeqa</AUni> -<AUni ws="qvm-x-akl">yeqa</AUni> -<AUni ws="qvm-x-ame">yiqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yiqa</AUni> -<AUni ws="qvm-x-acl">*yiqa</AUni> -<AUni ws="qvm-x-akh">*yiqa</AUni> -<AUni ws="qvm-x-akl">*yiqa</AUni> -<AUni ws="qvm-x-ame">*yiqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.780" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3128d478-4d6d-4879-a380-2bb055a3c51d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yiqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a80ec821-c844-4ea3-8cd6-1a9c56a2073d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="90d9382d-8ae3-45d9-b7c2-2cb2454dfa32" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yiqa 
\entryTyp root 
\gENG 
\gSPN 
\e *yiqa 
\c V1 
\ach yega 
\akh yeqa 
\acl yega 
\akl yeqa 
\ame yiqa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoInflAffMsa" guid="51999531-b21e-47af-9ffc-c7e92890c055" ownerguid="185782da-c97e-483e-a876-6bd7300eec09"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="519bec6f-2db3-4703-a93f-b3da331d49a3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ishqui</AUni> -<AUni ws="qvm-x-acl">ishqui; ishque</AUni> -<AUni ws="qvm-x-akh">ishki</AUni> -<AUni ws="qvm-x-akl">ishki; ishke</AUni> -<AUni ws="qvm-x-ame">ishki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ishki.v2</AUni> -<AUni ws="qvm-x-acl">*ishki.v2</AUni> -<AUni ws="qvm-x-akh">*ishki.v2</AUni> -<AUni ws="qvm-x-akl">*ishki.v2</AUni> -<AUni ws="qvm-x-ame">*ishki.v2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.852" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1daa5dd8-fe23-4f82-844d-2c9c9eef8fab" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ishki.v2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b39ee336-8703-484b-9bd6-2b94e4f2a47c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="637ecef8-f50f-46de-a301-0558b460a896" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ishki.v2 
\entryTyp root 
\gENG delouse 
\gSPN despiojar 
\e *ishki.v2 
\c V2 
\mp +FinalI 
\ach ishqui 
\akh ishki 
\acl ishqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ishque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ishki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ishke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ishki 
\mcc *ishki.v2 / _... [trans] 
\mcc *ishki.v2 / ~_ CAUS</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="519f7c1a-aec9-41aa-ad7d-820123c47602" ownerguid="adde4a66-9040-47a9-91ab-327934a2e97e"> -<ExampleWords> -<AUni ws="en">carpentry shop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) Where does a carpenter work?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="51a16dc5-b38d-4d70-925b-20fd22bd5d71" ownerguid="092b9b79-4ebd-4dfd-9f00-3e1690042122"> -<Form> -<AUni ws="qvm-x-ach">ajay</AUni> -<AUni ws="qvm-x-acl">ajay</AUni> -<AUni ws="qvm-x-akh">ajay</AUni> -<AUni ws="qvm-x-akl">ajay</AUni> -<AUni ws="qvm-x-ame">ahay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="51a3b8ae-cb8b-41de-9feb-1e71f83763e0" ownerguid="3fc01e2a-ab32-4c45-a94e-6ee82f3f1496"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="51a3e098-f626-4568-92d7-82e75e239db7" ownerguid="c6c772af-7b6b-4393-b0da-5b4a329d3426"> -<ExampleWords> -<AUni ws="en">number, how many, numbers, ratio</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the amount of something that can be counted?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="51a7487f-ccae-42aa-ac93-646d0018e11a"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">to</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="51a97f23-11bf-4769-a8bc-25f24de07f94" ownerguid="c753fc8b-22ae-4e71-807f-56fb3ebd3cdd"> -<ExampleWords> -<AUni ws="en">orgasm, climax, ejaculate, ejaculation, come, semen, sperm</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to orgasm?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="51b16b91-7097-4e98-a371-4c32f2c566e1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ucru</AUni> -<AUni ws="qvm-x-acl">ucru; ucru; ucro</AUni> -<AUni ws="qvm-x-akh">ukru</AUni> -<AUni ws="qvm-x-akl">ukru; ukru; ukro</AUni> -<AUni ws="qvm-x-ame">ukru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ukru</AUni> -<AUni ws="qvm-x-acl">*ukru</AUni> -<AUni ws="qvm-x-akh">*ukru</AUni> -<AUni ws="qvm-x-akl">*ukru</AUni> -<AUni ws="qvm-x-ame">*ukru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.200" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cb7822f4-638d-491e-b2fe-5c2fffc3d8bc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ukru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e8d8e6d1-cb6a-43b4-ae0e-5eb49d4ddd90" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="27eb4b33-9d82-4994-b8bb-f02a9910e556" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ukru 
\entryTyp root 
\gENG deep 
\gSPN profundo? 
\e *ukru 
\c N0 
\ach ucru 
\akh ukru 
\acl ucru / _# 
\acl ucru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ucro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ukru / _# 
\akl ukru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ukro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ukru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="51b39b49-d380-442f-ba25-7a29a37a825c" ownerguid="566be8c1-3e42-4f8b-87eb-e70e8c13c6f8"> -<ExampleWords> -<AUni ws="en">lean, lean on, lean against, lean back, rest against, recline</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to leaning against something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="51ba6159-f1fc-4fce-a281-3ba5f1a248c0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">arcu; arco</AUni> -<AUni ws="qvm-x-acl">arcu; arcu; arco</AUni> -<AUni ws="qvm-x-akh">arcu; arco</AUni> -<AUni ws="qvm-x-akl">arcu; arcu; arco</AUni> -<AUni ws="qvm-x-ame">arcu; arco</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+arco</AUni> -<AUni ws="qvm-x-acl">+arco</AUni> -<AUni ws="qvm-x-akh">+arco</AUni> -<AUni ws="qvm-x-akl">+arco</AUni> -<AUni ws="qvm-x-ame">+arco</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.820" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d4245c60-59bd-43ed-8d67-e8444eb33111" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+arco</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3d4330fa-8ccc-4a69-9215-5b705855a949" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0b1671fe-f8e1-4e87-89f4-41ea0f717c37" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +arco 
\entryTyp root 
\gENG bow 
\gSPN arco 
\e +arco 
\c N0 
\ach arcu / ~_# 
\ach arco / _# 
\akh arcu / ~_# 
\akh arco / _# 
\acl arcu / ~_# 
\acl arcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl arco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl arcu / ~_# 
\akl arcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl arco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame arcu / ~_# 
\ame arco / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="51ba7e55-ad51-4cc2-9739-7d667c0d2e20" ownerguid="d8622ab2-f5ea-4691-8ad4-a44ec670f935"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="51c0b73d-0f46-4aa1-ad21-496786a6bcce" ownerguid="8f4c9266-a025-4b7a-bd67-fe0c043bf6f5"> -<ExampleWords> -<AUni ws="en">right, bang, smack, plumb</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that something happens at an exact place?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="51c2e2e4-438c-414b-bd15-773b664dd289" ownerguid="3dd684e6-75d9-41f4-aaa3-fb0cb3c7d400"> -<Abbreviation> -<AUni ws="en">4.4.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to having mercy on someone who has done something bad.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88J Mercy, Merciless</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Mercy</AUni> -</Name> -<Questions> -<objsur guid="266d0d13-1d5e-4ec5-9cf4-d743e8c8539d" t="o" /> -<objsur guid="8c8d1812-493e-47e2-a770-24b61a59c387" t="o" /> -<objsur guid="9ce02b92-f79a-4ed7-b03a-bd960c760b5d" t="o" /> -<objsur guid="a1340fa9-02ef-4701-87d1-a593d1fcf9d0" t="o" /> -<objsur guid="d5a73288-f9c5-4977-b797-6b304151c77d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="51c5a084-2993-4805-b35d-b54bce502776" ownerguid="c888c7ac-8cf4-49d2-a33e-20d19d84c47b"> -<ExampleWords> -<AUni ws="en">grunt, squeal, snort</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What sounds do pigs make?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="51c8664e-f0bf-4d6d-8b28-fdb28a1f5713" ownerguid="dca9a740-68f3-415b-8261-b1809e2abc4d"> -<Form> -<AUni ws="qvm-x-ach">catri; catre</AUni> -<AUni ws="qvm-x-acl">catri; catri; catre</AUni> -<AUni ws="qvm-x-akh">catri; catre</AUni> -<AUni ws="qvm-x-akl">catri; catri; catre</AUni> -<AUni ws="qvm-x-ame">catri; catre</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="51cc2c70-e108-48b3-a925-605d539497e7" ownerguid="8ec729f7-3741-4b94-8527-1883f31b930d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">loin</AUni> -<AUni ws="es">lomo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="773f5f73-d5e8-4eaf-938b-79f4b9c12102" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="51cc5088-f15f-43ad-802d-b00dfa615a64" ownerguid="008cecc8-8fcc-439a-88eb-d8bd404d5da9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 R1/R0 R0/R0 N1/N0</Run> -</AStr> -</Custom> -<Definition> -<AStr ws="en"> -<Run ws="en">third person possessive</Run> -</AStr> -<AStr ws="es"> -<Run ws="es">tercera persona posesiva</Run> -</AStr> -</Definition> -<Gloss> -<AUni ws="en">3P</AUni> -<AUni ws="es">3P</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="51cec0a4-1fa1-499e-8978-3b81f3b42eb1" ownerguid="52de16bd-6e72-403c-a187-0c5178ce44b5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wactsa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wactsa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">waktsa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">waktsa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">waktsa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="0942ddb4-ac10-468e-999b-ac05067b7bff" t="r" /> -</Morph> -<Msa> -<objsur guid="d68c825c-c5fc-4d13-996f-44fd8fd827ba" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="51d2e551-7d1d-49d9-9873-f6c625fdd083" ownerguid="2d0f45f3-2471-4d69-9429-76c51a12e2a8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -<Sense> -<objsur guid="db6117c5-121c-433a-a891-e69950f55761" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="51d4a6bb-d73d-4c49-8a4d-43acab149420" ownerguid="843f5815-aa0c-4319-a068-045a69c4b514"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">lucero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9ab8455b-91d8-4d2c-8986-41e04eb78259" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="51d4e258-430c-4032-94e3-ee53095e7045" ownerguid="6137239a-b469-46be-b7cb-b9ac22fcc195"> -<Abbreviation> -<AUni ws="en">3.6.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.184" /> -<DateModified val="2022-9-23 16:55:8.184" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the answer to a question in a test.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Answer in a test</AUni> -</Name> -<Questions> -<objsur guid="0dd249e1-dd9a-451c-9ccc-893cfa0297e4" t="o" /> -<objsur guid="f9710e14-d51b-49a3-bff9-e4d0fbc8a989" t="o" /> -<objsur guid="15e4293a-8e5a-48b2-b76d-c9975faf87ba" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="51d65a05-26df-4e96-b4af-744abda88980" ownerguid="9b37dedc-eccc-41f7-9aa8-0622cb46051c"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="51d9d243-35cc-4a1e-bcdd-f2749975f5fd" ownerguid="ac2e424b-6aee-4031-8864-7b3f4a6fb5a3"> -<Abbreviation> -<AUni ws="en">3.5.1.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that indicate if something is real.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>70 Real, Unreal; 73 Genuine, Phony</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Real</AUni> -</Name> -<Questions> -<objsur guid="28dc7531-8269-4502-b4ee-fb30a6474f1b" t="o" /> -<objsur guid="0c62dae9-7239-467c-aa50-8aed6d5ffc6c" t="o" /> -<objsur guid="a6a16ef1-0228-462d-8282-1a19345edc79" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="51da849a-e8a0-4574-a558-9ac13a31b5f2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">preciu; precio</AUni> -<AUni ws="qvm-x-acl">preciu; preciu; precio</AUni> -<AUni ws="qvm-x-akh">preciu; precio</AUni> -<AUni ws="qvm-x-akl">preciu; preciu; precio</AUni> -<AUni ws="qvm-x-ame">preciu; precio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+precio</AUni> -<AUni ws="qvm-x-acl">+precio</AUni> -<AUni ws="qvm-x-akh">+precio</AUni> -<AUni ws="qvm-x-akl">+precio</AUni> -<AUni ws="qvm-x-ame">+precio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.911" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8af3efa1-8ab1-4763-b671-b55d0f8eee49" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+precio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="31cefbde-dad6-487a-b626-83a45d6fa84a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5fcafe5d-eab9-4c90-9662-166dfaee06bd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +precio 
\entryTyp root 
\gENG price 
\gSPN precio 
\e +precio 
\c N0 
\ach preciu / ~_# 
\ach precio / _# 
\akh preciu / ~_# 
\akh precio / _# 
\acl preciu / ~_# 
\acl preciu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl precio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl preciu / ~_# 
\akl preciu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl precio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame preciu / ~_# 
\ame precio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="51db2032-1521-4f34-b65d-55b6767b703c" ownerguid="6f01b67c-33a0-4ed3-8205-f868e97a1a3a"> -<ExampleWords> -<AUni ws="en">well traveled, cosmopolitan</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe someone who has traveled a lot?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="51dba941-5ff6-43e5-ae27-ff05be837b47" ownerguid="bce3f390-452c-4ca9-8c36-5fbcfd6b4755"> -<ExampleWords> -<AUni ws="en">reform, grow up, mature, mend your ways, turn over a new leaf, shape up, improve, go straight, overcome your past</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to changing your behavior for the better?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="51df3235-4c52-4e67-8e5e-c2cfe77a73a1" ownerguid="91c73307-2ad1-4b0d-8bdf-54de8932e09c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="51e04331-5913-4583-ab8f-c33952f4bc25" ownerguid="ded0e58d-8ad7-4909-b0f1-b9ab9c10bb0d"> -<ExampleWords> -<AUni ws="en">royal family, royalty, nobility</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What is the king's family called?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="51e1097d-03cb-4b00-b805-c6e760e60cb4" ownerguid="ce386d36-77fa-4b94-9186-b971bfe42107"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="888f2fbf-40b5-44bb-ad03-ad48ddc1be0e" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">dare</AUni> -<AUni ws="es">atrever</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0bc6ab6c-1ca6-442c-92ed-dbd9ddd332c0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="51e13e82-0d92-4e49-96ad-0f306fa281bf" ownerguid="578baf67-d1cb-473e-aa7d-631e069a99a9"> -<Form> -<AUni ws="qvm-x-ach">paca</AUni> -<AUni ws="qvm-x-acl">paca</AUni> -<AUni ws="qvm-x-akh">paka</AUni> -<AUni ws="qvm-x-akl">paka</AUni> -<AUni ws="qvm-x-ame">paka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="51e29e8e-e7e3-4064-8813-1415766701a1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">evangeliu; evangelio</AUni> -<AUni ws="qvm-x-acl">evangeliu; evangeliu; evangelio</AUni> -<AUni ws="qvm-x-akh">evangeliu; evangelio</AUni> -<AUni ws="qvm-x-akl">evangeliu; evangeliu; evangelio</AUni> -<AUni ws="qvm-x-ame">evangeliu; evangelio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+evangelio</AUni> -<AUni ws="qvm-x-acl">+evangelio</AUni> -<AUni ws="qvm-x-akh">+evangelio</AUni> -<AUni ws="qvm-x-akl">+evangelio</AUni> -<AUni ws="qvm-x-ame">+evangelio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.518" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2cf86171-527b-4f94-b45a-b90279c21e4b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+evangelio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f427df0e-3241-42d8-813e-ec08f2fd6b54" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e2abd211-d102-4a15-8e11-19b60df72262" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +evangelio 
\entryTyp root 
\gENG gospel 
\gSPN evangélio 
\e +evangelio 
\c N0 
\ach evangeliu / ~_# 
\ach evangelio / _# 
\akh evangeliu / ~_# 
\akh evangelio / _# 
\acl evangeliu / ~_# 
\acl evangeliu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl evangelio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl evangeliu / ~_# 
\akl evangeliu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl evangelio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame evangeliu / ~_# 
\ame evangelio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="51e2b33e-718a-4ad9-b769-a0e7306274df" ownerguid="9ce5e945-6932-4709-a90f-4c8e414b3214"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="51e3b004-58cd-402d-9231-e3a6380c94e8" ownerguid="eea7c79b-6150-4aba-8105-a94b7e6aeab7"> -<ExampleWords> -<AUni ws="en">stand by, stick by, be true to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to being faithful?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="51e76297-1669-47a3-b37d-c7f1f3eff120" ownerguid="2ae0c81d-02f5-4f28-80ab-843c7e7ebda0"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="Segment" guid="51e7eafa-7bde-4048-85b0-9445cd49a853" ownerguid="497c5e37-7e6e-4929-ab04-800ca24bd0ee"> -<Analyses> -<objsur guid="6b836eab-0b1e-425c-9f13-3e53a0b6f06b" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexEntry" guid="51e888b5-f778-43fe-8a33-5b956e876eec"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">preceptor</AUni> -<AUni ws="qvm-x-acl">preceptor</AUni> -<AUni ws="qvm-x-akh">preceptor</AUni> -<AUni ws="qvm-x-akl">preceptor</AUni> -<AUni ws="qvm-x-ame">preceptor</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+preceptor</AUni> -<AUni ws="qvm-x-acl">+preceptor</AUni> -<AUni ws="qvm-x-akh">+preceptor</AUni> -<AUni ws="qvm-x-akl">+preceptor</AUni> -<AUni ws="qvm-x-ame">+preceptor</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.911" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bf238ae1-c963-4e90-b75a-2dfeacef1160" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+preceptor</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="40e0fc88-ad7b-409f-ba80-22361ca2fe24" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="980023d6-5775-4bc0-8ab3-2f67f4707a53" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +preceptor 
\entryTyp root 
\gENG teacher 
\gSPN profesor 
\e +preceptor 
\c N0 
\mp +FinalC 
\ach preceptor 
\akh preceptor 
\acl preceptor 
\akl preceptor 
\ame preceptor</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="51e9af5f-df4b-4e49-b2ff-a4888e55803f" ownerguid="1e06fc23-60cd-44a0-9fa5-bdf756101db2"> -<Form> -<AUni ws="qvm-x-ach">rayán; rayan</AUni> -<AUni ws="qvm-x-acl">rayán; rayan</AUni> -<AUni ws="qvm-x-akh">rayán; rayan</AUni> -<AUni ws="qvm-x-akl">rayán; rayan</AUni> -<AUni ws="qvm-x-ame">rayán; rayan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="51ebb203-e93e-4b7e-a431-a4099bfe458f" ownerguid="05a7bbdc-7cf5-47d3-830b-84e1591b11cc"> -<ExampleWords> -<AUni ws="en">annul, strike down, veto</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to canceling a law?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="51ed09e7-8831-4023-b4c7-903675c93f28" ownerguid="ca888b55-65c1-4d59-a662-afc8a367db43"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="51edd3fb-d4bb-40fa-a3ce-7bc245c8fd41" ownerguid="6de42a33-35b2-49c6-b2c4-fa9c0c5094f0"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">May I have a drink? Could I have something to drink? I'm really thirsty.</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(4) What expressions are used to ask for a drink?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="51ef2e47-8986-43a8-a873-61fa6f2287de" ownerguid="60de9433-de63-41e5-9942-158d2fab81f9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fly</AUni> -<AUni ws="es">volar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0fce6cf2-3e0c-40b5-acbf-56839c1526a8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="51ef8608-08bc-4022-810d-15e590090edc" ownerguid="ad541a44-bd90-446d-8b52-cf8bcb85f460"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">enemy</AUni> -<AUni ws="es">contra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6fbef779-0a16-4227-80ef-6f7088b804a6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="51f170e0-affd-4149-8ecf-2822467743f5" ownerguid="0fef044a-c822-450d-b54a-eac8621e50c2"> -<ExampleWords> -<AUni ws="en">lumber, wood, grain, beam, board, plank, plywood, shavings, splinter, pole, post, rod</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to wood?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="51f5f243-692c-4f29-af5b-3a386fd5215c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">marga</AUni> -<AUni ws="qvm-x-acl">marga</AUni> -<AUni ws="qvm-x-akh">marqa</AUni> -<AUni ws="qvm-x-akl">marqa</AUni> -<AUni ws="qvm-x-ame">marqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*marqa</AUni> -<AUni ws="qvm-x-acl">*marqa</AUni> -<AUni ws="qvm-x-akh">*marqa</AUni> -<AUni ws="qvm-x-akl">*marqa</AUni> -<AUni ws="qvm-x-ame">*marqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.346" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d62eb6f3-2ac0-44b4-873e-a0dad2a6a9e8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*marqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="37839bcb-67be-4626-832b-03e5901c7dea" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e3bdb875-58ec-481d-99fd-dbeb2b9dec5a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *marqa 
\entryTyp root 
\gENG carry 
\gSPN llevar 
\e *marqa 
\c V2 
\ach marga 
\akh marqa 
\acl marga 
\akl marqa 
\ame marqa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="51f8e89f-3b77-4355-8dd4-3a7117303893" ownerguid="084c32cc-0a83-45c5-8179-78387c6ca24e"> -<Form> -<AUni ws="qvm-x-ach">caseröla</AUni> -<AUni ws="qvm-x-acl">caseröla</AUni> -<AUni ws="qvm-x-akh">caseröla</AUni> -<AUni ws="qvm-x-akl">caseröla</AUni> -<AUni ws="qvm-x-ame">caseröla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="51fa1777-8f13-49c3-a309-354ebb1b5a14" ownerguid="6545d219-5055-445e-b141-9a57907a923b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="1223be52-2b59-483e-9a0c-b77ecdbd997c" t="o" /> -<objsur guid="6ff2fc28-764b-410e-8042-3c920bb00e63" t="o" /> -<objsur guid="cb696a15-1e04-4422-997a-58793f73bcc3" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="51fb320b-fa2d-4472-9fda-8cc50ae192bb" ownerguid="c44fcbde-c71e-44da-aba4-c575abff4057"> -<Form> -<AUni ws="qvm-x-ach">ati</AUni> -<AUni ws="qvm-x-acl">ati; ate</AUni> -<AUni ws="qvm-x-akh">ati</AUni> -<AUni ws="qvm-x-akl">ati; ate</AUni> -<AUni ws="qvm-x-ame">ati</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="51fbf9d6-8b9e-4f92-9cf0-02fa37a690c7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">runtu</AUni> -<AUni ws="qvm-x-acl">runtu; runtu; runto</AUni> -<AUni ws="qvm-x-akh">runtu</AUni> -<AUni ws="qvm-x-akl">runtu; runtu; runto</AUni> -<AUni ws="qvm-x-ame">runtu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*runtu</AUni> -<AUni ws="qvm-x-acl">*runtu</AUni> -<AUni ws="qvm-x-akh">*runtu</AUni> -<AUni ws="qvm-x-akl">*runtu</AUni> -<AUni ws="qvm-x-ame">*runtu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.388" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a4fa3818-e7a6-46dc-b547-a5154295c665" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*runtu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9c49e93f-1d5f-438b-b26a-e6291b0731a5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6ab77471-519f-4123-b2e3-5a9863507034" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *runtu 
\entryTyp root 
\gENG egg 
\gSPN huevo 
\e *runtu 
\c N0 
\ach runtu 
\akh runtu 
\acl runtu / _# 
\acl runtu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl runto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl runtu / _# 
\akl runtu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl runto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame runtu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="51fd2cf0-de34-403a-9329-8df31bd04d44" ownerguid="56f5cbf7-5cc1-4ad6-9fc5-e8db18cb69d1"> -<Form> -<AUni ws="qvm-x-ach">tumba</AUni> -<AUni ws="qvm-x-acl">tumba</AUni> -<AUni ws="qvm-x-akh">tumba</AUni> -<AUni ws="qvm-x-akl">tumba</AUni> -<AUni ws="qvm-x-ame">tumba</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="51fdd09e-ee62-4419-9cf7-22fc2f7ae50c" ownerguid="31af73a8-7b1b-4ddc-adfa-4f835a66b975"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gossamer</AUni> -<AUni ws="es">como.encaje</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f67139bb-8a9a-4825-a951-db825af70bcb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="51fde5dd-4359-4d4d-b4bf-535cbca6c19f" ownerguid="774e2882-45a1-4b81-a561-ac76b27554d3"> -<Form> -<AUni ws="qvm-x-ach">panderëta</AUni> -<AUni ws="qvm-x-acl">panderëta</AUni> -<AUni ws="qvm-x-akh">panderëta</AUni> -<AUni ws="qvm-x-akl">panderëta</AUni> -<AUni ws="qvm-x-ame">panderëta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="51feb485-34f4-412a-bc3a-67316a521bc6" ownerguid="50adfc7d-79d2-4fb2-9ffd-76362080842e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="5200b698-99c0-41ab-9e53-9026dedabd15"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alha:ja</AUni> -<AUni ws="qvm-x-acl">alha:ja</AUni> -<AUni ws="qvm-x-akh">alha:ja</AUni> -<AUni ws="qvm-x-akl">alha:ja</AUni> -<AUni ws="qvm-x-ame">alha:ja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+alhaja</AUni> -<AUni ws="qvm-x-acl">+alhaja</AUni> -<AUni ws="qvm-x-akh">+alhaja</AUni> -<AUni ws="qvm-x-akl">+alhaja</AUni> -<AUni ws="qvm-x-ame">+alhaja</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.699" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e58ea191-7fda-4528-9296-0e6d9b424e48" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+alhaja</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a094c688-4926-460e-9706-cde7c04475b1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6415f0b4-7b54-4636-8693-e4f1d88de901" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +alhaja 
\entryTyp root 
\gENG 
\gSPN 
\e +alhaja 
\c N0 
\ach alha:ja 
\akh alha:ja 
\acl alha:ja 
\akl alha:ja 
\ame alha:ja</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="52030b4b-3684-4342-abb0-6e05caa8cb8a" ownerguid="89d3056f-bc26-4898-b825-b29ced75cdd7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lake</AUni> -<AUni ws="es">laguna</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5c19e9f4-bb32-41db-abec-84cb1f394cf8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5205f81a-17eb-4390-9824-d0da130eeb79" ownerguid="dc177f3c-d0fd-4232-adf1-a77b339cdbb2"> -<ExampleWords> -<AUni ws="en">restaurant, bar, pub, tavern</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What kinds of buildings are used by travelers for eating?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="52068c0e-41e0-4d0b-9224-902e04c927f0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ran</AUni> -<AUni ws="qvm-x-acl">ran</AUni> -<AUni ws="qvm-x-akh">ran</AUni> -<AUni ws="qvm-x-akl">ran</AUni> -<AUni ws="qvm-x-ame">ran</AUni> -</Custom> -<Comment> -<AStr ws="en"> -<Run ws="en">= YET + DIR</Run> -</AStr> -</Comment> -<DateCreated val="2022-9-23 18:26:20.589" /> -<DateModified val="2022-10-16 15:9:55.174" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c551320d-79da-4e74-bad7-fbb5c5b456ce" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">YET2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3ebd5f60-74ad-4165-b305-1627b85d8d55" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e310ab13-7e92-4345-b1d6-3840cecb88ec" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx YET2 
\entryTyp suffix 
\gENG YET2 
\gSPN TDV2 
\e YET2 
\c N0/N0 V0/V0 R0/R0 ONSHEV/ONSHEV BN/BN 
\o 220 
\mp +FinalC 
\ach ran 
\akh ran 
\acl ran 
\akl ran 
\ame ran 
\mcc YET2 / ~_ TOP</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="520cb0dd-0b70-49ec-ab70-d15efdf0c390"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">au</AUni> -<AUni ws="qvm-x-acl">au</AUni> -<AUni ws="qvm-x-akh">aw</AUni> -<AUni ws="qvm-x-akl">aw</AUni> -<AUni ws="qvm-x-ame">aw</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aw</AUni> -<AUni ws="qvm-x-acl">*aw</AUni> -<AUni ws="qvm-x-akh">*aw</AUni> -<AUni ws="qvm-x-akl">*aw</AUni> -<AUni ws="qvm-x-ame">*aw</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.888" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f322082b-4c89-46e8-8fd3-363195132c47" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aw</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3358f29f-13e7-4b8c-a04d-67a77d3e9b79" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5b0c9aa4-83aa-4711-9ddb-4a08d1e1c946" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aw 
\entryTyp root 
\gENG yes 
\gSPN sí 
\e *aw 
\c ONSHEV 
\mp +FinalC 
\ach au 
\akh aw 
\acl au 
\akl aw 
\ame aw</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="520d9bca-1d03-497d-b897-455a58675694" ownerguid="efcb6b84-43e7-44fc-ab08-2256230c48b2"> -<Form> -<AUni ws="qvm-x-ach">awila</AUni> -<AUni ws="qvm-x-acl">awila</AUni> -<AUni ws="qvm-x-akh">awila</AUni> -<AUni ws="qvm-x-akl">awila</AUni> -<AUni ws="qvm-x-ame">awila</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="520f02c3-e611-4308-a406-8691483dc4a1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">camali</AUni> -<AUni ws="qvm-x-acl">camali; camale</AUni> -<AUni ws="qvm-x-akh">kamali</AUni> -<AUni ws="qvm-x-akl">kamali; kamale</AUni> -<AUni ws="qvm-x-ame">kamali</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kamalli</AUni> -<AUni ws="qvm-x-acl">*kamalli</AUni> -<AUni ws="qvm-x-akh">*kamalli</AUni> -<AUni ws="qvm-x-akl">*kamalli</AUni> -<AUni ws="qvm-x-ame">*kamalli</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.912" /> -<DateModified val="2022-10-10 21:18:47.215" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6998088d-c252-4641-aa5a-be7133287679" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kamalli</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e77c6490-9fb5-4828-82b0-ab2fae5fb197" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5624ef7a-713f-44e0-b9fd-fc55eeacd542" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kamalli 
\entryTyp root 
\gENG 
\gSPN 
\e *kamalli 
\c V2 
\mp +FinalI 
\ach camali 
\akh kamali 
\acl camali +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl camale +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kamali +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kamale +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kamali</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="520f506a-1eba-40b1-9a77-1dcce67cbf65"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shansha</AUni> -<AUni ws="qvm-x-acl">shansha</AUni> -<AUni ws="qvm-x-akh">shansha</AUni> -<AUni ws="qvm-x-akl">shansha</AUni> -<AUni ws="qvm-x-ame">shansha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shansha.n</AUni> -<AUni ws="qvm-x-acl">*shansha.n</AUni> -<AUni ws="qvm-x-akh">*shansha.n</AUni> -<AUni ws="qvm-x-akl">*shansha.n</AUni> -<AUni ws="qvm-x-ame">*shansha.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.541" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="834fc889-df62-4159-906f-d0a241c2e63b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shansha.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="666093c8-f651-4c68-b660-05b016836ef8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7d577516-136f-4b24-b390-c2652d138710" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shansha.n 
\entryTyp root 
\gENG ember 
\gSPN ascua 
\e *shansha.n 
\c N0 
\ach shansha 
\akh shansha 
\acl shansha 
\akl shansha 
\ame shansha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="5217e73d-ccd3-418e-a0bd-50c70f3bb20c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cebo:lla</AUni> -<AUni ws="qvm-x-acl">cebo:lla</AUni> -<AUni ws="qvm-x-akh">cebo:lla</AUni> -<AUni ws="qvm-x-akl">cebo:lla</AUni> -<AUni ws="qvm-x-ame">cebo:lla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cebolla.1</AUni> -<AUni ws="qvm-x-acl">+cebolla.1</AUni> -<AUni ws="qvm-x-akh">+cebolla.1</AUni> -<AUni ws="qvm-x-akl">+cebolla.1</AUni> -<AUni ws="qvm-x-ame">+cebolla.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.102" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7dcfe525-ce0f-4945-827b-5acf6bdb895e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cebolla.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ef508f17-ff6d-4e79-bbc6-22d192324c20" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fb860c0a-0792-4c2c-aeca-68734f0f9558" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cebolla.1 
\entryTyp root 
\gENG onion 
\gSPN cebolla 
\e +cebolla.1 
\c N0 
\ach cebo:lla 
\akh cebo:lla 
\acl cebo:lla 
\akl cebo:lla 
\ame cebo:lla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5218f713-3c31-45c9-a7ab-096252a8001d" ownerguid="ffc38b37-1639-4ff4-bf8d-df362978691e"> -<Form> -<AUni ws="qvm-x-ach">tipi</AUni> -<AUni ws="qvm-x-acl">tipi; tipi; tipe</AUni> -<AUni ws="qvm-x-akh">tipi</AUni> -<AUni ws="qvm-x-akl">tipi; tipi; tipe</AUni> -<AUni ws="qvm-x-ame">tipi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="52197ac2-6fcf-467b-9c36-654f1392a618" ownerguid="1621aac3-4ea9-4373-bf1b-40fce0ca7b5e"> -<ExampleWords> -<AUni ws="en">lack (n), want (n), deficiency, scarcity, shortage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something that you lack?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5222ec25-d1ad-4c69-b40f-bdd788db4662" ownerguid="9fac006a-4f92-4b0a-b6ce-425f5cd03386"> -<Form> -<AUni ws="qvm-x-ach">viernes; viernis</AUni> -<AUni ws="qvm-x-acl">viernes; viernis</AUni> -<AUni ws="qvm-x-akh">viernes; viernis</AUni> -<AUni ws="qvm-x-akl">viernes; viernis</AUni> -<AUni ws="qvm-x-ame">viernes; viernis</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="5225d309-285b-4169-bf8b-646f2bf1ca28"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">noresti; noreste</AUni> -<AUni ws="qvm-x-acl">noresti; noresti; noreste</AUni> -<AUni ws="qvm-x-akh">noresti; noreste</AUni> -<AUni ws="qvm-x-akl">noresti; noresti; noreste</AUni> -<AUni ws="qvm-x-ame">noresti; noreste</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+noreste</AUni> -<AUni ws="qvm-x-acl">+noreste</AUni> -<AUni ws="qvm-x-akh">+noreste</AUni> -<AUni ws="qvm-x-akl">+noreste</AUni> -<AUni ws="qvm-x-ame">+noreste</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.566" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="20341cf2-72cc-420b-bb38-6d77ca1c14e8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+noreste</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a7f6e9bd-c715-4f82-bd06-b092fa1927ef" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="23da2d91-9019-48fa-807a-9d771bf4489f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +noreste 
\entryTyp root 
\gENG north.east 
\gSPN noreste 
\e +noreste 
\c N0 
\mp +FinalI 
\ach noresti / ~_# 
\ach noreste / _# 
\akh noresti / ~_# 
\akh noreste / _# 
\acl noresti / ~_# 
\acl noresti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl noreste +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl noresti / ~_# 
\akl noresti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl noreste +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame noresti / ~_# 
\ame noreste / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5226cd82-f260-472c-8d1c-ffb373ccacc4" ownerguid="0b0801a3-8a0c-40ea-bf41-07df80bd0d5f"> -<ExampleWords> -<AUni ws="en">dry something off, remove water, drain, strain, wring out, squeeze out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to removing water from something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="52289137-40ed-4623-b5e6-af2e2f89588d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ranya</AUni> -<AUni ws="qvm-x-acl">ranya</AUni> -<AUni ws="qvm-x-akh">ranya</AUni> -<AUni ws="qvm-x-akl">ranya</AUni> -<AUni ws="qvm-x-ame">ranya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ranya</AUni> -<AUni ws="qvm-x-acl">*ranya</AUni> -<AUni ws="qvm-x-akh">*ranya</AUni> -<AUni ws="qvm-x-akl">*ranya</AUni> -<AUni ws="qvm-x-ame">*ranya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.256" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="87785207-54c9-46df-9084-dc2bcdd26426" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ranya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="868abcc4-d3e6-4a85-bc44-7db8e82d1fd7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e34cec8e-4248-4f91-b06b-4d25c823eacc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ranya 
\entryTyp root 
\gENG omen 
\gSPN malagüero 
\e *ranya 
\c N0 
\ach ranya 
\akh ranya 
\acl ranya 
\akl ranya 
\ame ranya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5232bee6-2f1c-4d95-a04f-25aa6ee51c9b" ownerguid="9d6cbe74-93d6-41fb-b7e2-cc30adb28187"> -<ExampleWords> -<AUni ws="en">leave the ground, take off, lift off, blast-off, launch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to an airplane moving up?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="52338a98-795d-48e2-bb61-8d5da17170f0" ownerguid="6eaba0c3-cdfe-435d-8811-7f2ddf6facbd"> -<ExampleWords> -<AUni ws="en">swollen abdomen, swollen muscle, hernia, swelling in groin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to swelling in a particular part of the body?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="52375f57-58b5-46a4-a28f-1d3d76b78746" ownerguid="79436830-092b-4d13-a715-f392d7e33708"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="CmSemanticDomain" guid="5238fe9c-4bbe-444c-b5f6-18f946b3d6aa" ownerguid="a894d991-d5da-45a6-9c62-009133257f36"> -<Abbreviation> -<AUni ws="en">2.5.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.47" /> -<DateModified val="2022-9-23 16:55:8.47" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to having a fever.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Fever</AUni> -</Name> -<Questions> -<objsur guid="f381c4fe-41dd-4dcc-903b-3d603cac2da8" t="o" /> -<objsur guid="88a180f6-9eb8-4c32-befb-48eccbeee3b8" t="o" /> -<objsur guid="d99e2f5f-ba24-4508-9426-8250954d861b" t="o" /> -<objsur guid="781bb4b0-de82-439c-b136-43fc9439ed63" t="o" /> -<objsur guid="e8a90c71-c88f-45ca-9fae-41bf9d0d5474" t="o" /> -<objsur guid="e7a55cdd-5138-41ad-90e5-f9d38765bce7" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="523920eb-10e8-4bf7-af70-5c5aa9cf63cd" ownerguid="3f5a2f9c-b293-482d-9d11-2f316b553459"> -<Form> -<AUni ws="qvm-x-ach">wishga</AUni> -<AUni ws="qvm-x-acl">wishga</AUni> -<AUni ws="qvm-x-akh">wishqa</AUni> -<AUni ws="qvm-x-akl">wishqa</AUni> -<AUni ws="qvm-x-ame">wishqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="523e37ed-44cb-41c2-9ffb-74cb23a6ac59" ownerguid="4cb5e536-5f25-44bd-b4c0-42be8a6baf4b"> -<Form> -<AUni ws="qvm-x-ach">uyu</AUni> -<AUni ws="qvm-x-acl">uyu; uyo</AUni> -<AUni ws="qvm-x-akh">uyu</AUni> -<AUni ws="qvm-x-akl">uyu; uyo</AUni> -<AUni ws="qvm-x-ame">uyu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="524176db-62d6-456c-bafd-acee141d2576" ownerguid="6a3588bf-efea-4f1d-a307-a76c1d40b3c3"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="524872ef-52f2-42ec-86d0-61acaaff8fda" ownerguid="d01f1c51-522e-4b35-81b3-00577dbfa3bd"> -<ExampleWords> -<AUni ws="en">colorless, black and white, uncolored, monochrome, achromatic, ghostly, glassy, lackluster, undyed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe something that has no color or is black and white?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="52488270-328c-457d-8fd7-13d55ba0887c" ownerguid="ea6b1251-e6e4-4b9e-ab76-65207eb88364"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="524ee71a-7514-4f10-9b14-5590676c213c" ownerguid="bbf5307d-10c4-469e-bc63-d1f67fc8de14"> -<Form> -<AUni ws="qvm-x-ach">chapchu</AUni> -<AUni ws="qvm-x-acl">chapchu; chapcho</AUni> -<AUni ws="qvm-x-akh">chapchu</AUni> -<AUni ws="qvm-x-akl">chapchu; chapcho</AUni> -<AUni ws="qvm-x-ame">chapchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="52522931-e14e-424b-b78f-fa27acc54934"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sa:na</AUni> -<AUni ws="qvm-x-acl">sa:na</AUni> -<AUni ws="qvm-x-akh">sa:na</AUni> -<AUni ws="qvm-x-akl">sa:na</AUni> -<AUni ws="qvm-x-ame">sa:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sanar</AUni> -<AUni ws="qvm-x-acl">+sanar</AUni> -<AUni ws="qvm-x-akh">+sanar</AUni> -<AUni ws="qvm-x-akl">+sanar</AUni> -<AUni ws="qvm-x-ame">+sanar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.439" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b0f59466-3382-43b3-b016-c13e0653754e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sanar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="529c175a-31f4-435c-87f9-db96f5c013ed" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fa2a6c79-1c29-4177-88f4-bba20c97a927" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sanar 
\entryTyp root 
\gENG heal 
\gSPN sanar 
\e +sanar 
\c V2 
\ach sa:na 
\akh sa:na 
\acl sa:na 
\akl sa:na 
\ame sa:na</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="5253e60c-efbb-4a6a-87c7-ff741f55a380" ownerguid="9b63f4be-db36-4c49-be7b-8d5500e46367"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mischevous</AUni> -<AUni ws="es">travieso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3e11ed6b-8bbc-431d-b290-415b1eb030a9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="525431e8-5e69-4c6e-b205-806eaf03f56b" ownerguid="aa70055e-436a-4d4e-a1b0-e9e0cebb14ad"> -<Form> -<AUni ws="qvm-x-ach">wawä</AUni> -<AUni ws="qvm-x-acl">wawä</AUni> -<AUni ws="qvm-x-akh">wawä</AUni> -<AUni ws="qvm-x-akl">wawä</AUni> -<AUni ws="qvm-x-ame">wawä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5255f436-d87e-49be-9191-63463bf05e66" ownerguid="a730d0b4-b6db-45ac-bf6e-cefc96ae3fbb"> -<ExampleWords> -<AUni ws="en">deceive, fool, take in, defraud, cheat, fleece, bilk, swindle, hustle, dupe, hoodwink, foist upon, palm off on, outwit, outmaneuver, finagle, slip one over on, put something over on, con, lay a trap for, lure, beguile, delude, trick, entrap, ensnare, pull the wool over someone's eyes, play a trick on, play a practical joke on, send on a fool's errand, make a fool of, mislead</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to acting in such a way that someone is led to believe something false?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="525753c2-ae9f-4f83-a1f8-1eb91c209158" ownerguid="6fa1d5b6-004a-4a06-a2df-e68a20fbf996"> -<Form> -<AUni ws="qvm-x-ach">trönu</AUni> -<AUni ws="qvm-x-acl">trönu; trönu; tröno</AUni> -<AUni ws="qvm-x-akh">trönu</AUni> -<AUni ws="qvm-x-akl">trönu; trönu; tröno</AUni> -<AUni ws="qvm-x-ame">trönu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="5257d797-be80-4d1b-9c05-56f744c4bece" ownerguid="935eb0aa-26cf-402a-8f3c-eed9a0425185"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">move</AUni> -<AUni ws="es">mover</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f2b656ef-6d5b-49fe-9c71-1c476bd9e5ab" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5257eee1-d68f-4d7f-b0f0-f99cbb91e396"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">labor</AUni> -<AUni ws="qvm-x-acl">labor</AUni> -<AUni ws="qvm-x-akh">labor</AUni> -<AUni ws="qvm-x-akl">labor</AUni> -<AUni ws="qvm-x-ame">labor</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+labor</AUni> -<AUni ws="qvm-x-acl">+labor</AUni> -<AUni ws="qvm-x-akh">+labor</AUni> -<AUni ws="qvm-x-akl">+labor</AUni> -<AUni ws="qvm-x-ame">+labor</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.41" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b98c5f89-c228-48f2-9c3a-5ed6c7c8f0a5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+labor</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a2b740a2-98ce-4275-8bf1-9ef98a873036" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="258fb850-872b-4a2d-99da-d7eb93cd9761" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +labor 
\entryTyp root 
\gENG 
\gSPN 
\e +labor 
\c N0 
\mp +FinalC 
\ach labor 
\akh labor 
\acl labor 
\akl labor 
\ame labor 
\i Exo 35.35 Ishcantami Jehová habilidäta goshga imatapis cuyaylapagta rurapäcunanpag, azul, morädu y puca chicnu milwa hïluwan y llanu caupushga lïnuwan imatapis bordananpag y cuyaylapag laborcunata awananpagpis.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="525bff6e-3129-475d-ae58-38a89496f146" ownerguid="eabbeb61-3400-4ccd-81d3-cedeaa73fef7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">caer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="83bb5171-23aa-4286-b829-00c4272f87e5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="525e7867-8f63-47f0-bac2-1277fb0d27f3" ownerguid="c2ebfbd0-5e63-4232-86c9-625e47379016"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1 V2/V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">PNCT</AUni> -<AUni ws="es">PNT</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fd75ba47-7348-4c70-9565-ca4ec1c2b5c2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="5261497b-6beb-4db1-9de2-10b5f6f8ec69" ownerguid="3f37bb6f-cd32-4430-aa35-700acabbee15"> -<Abbreviation> -<AUni ws="en">8.4.6.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to something beginning to happen, to beginning to do something, to cause something to start happening, or to cause people to start doing something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Beginning</AUni> -</Name> -<Questions> -<objsur guid="44c35774-7ee2-469c-b6be-c77af11a848b" t="o" /> -<objsur guid="fb3fc7b8-f6fa-4762-b55b-89d456e35e24" t="o" /> -<objsur guid="18ac9189-a8a0-488f-9895-d60eb0c950f4" t="o" /> -<objsur guid="573a1ce2-04b4-4b8f-baed-962c951eaa77" t="o" /> -<objsur guid="3b9054da-13ce-4128-bbd4-fea040f070e6" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="d47b69e0-ab4a-4111-aec3-2c889a4e70b3" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="52626bfc-1c64-41ae-a067-e3d4c7af0777" ownerguid="80563285-4de7-4040-8080-a5b22208e7d5"> -<ExampleWords> -<AUni ws="en">victim, target, be under attack</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the person or place that is attacked?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="52656619-6f17-47a5-a70a-b4b0ac318401" ownerguid="33566204-d674-40ed-8fd8-63676d75513d"> -<Form> -<AUni ws="qvm-x-ach">malway</AUni> -<AUni ws="qvm-x-acl">malway</AUni> -<AUni ws="qvm-x-akh">malway</AUni> -<AUni ws="qvm-x-akl">malway</AUni> -<AUni ws="qvm-x-ame">malway</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="526788d1-b373-41b9-98ab-39cc8b6a39e6" ownerguid="e36a397f-4069-442e-8148-703abdd4e179"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="6310a615-5c52-4ff2-93bb-c271078879c9" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">without</AUni> -<AUni ws="es">sin</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5cbeeb3d-ffa8-4a86-8c9e-78026021247e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="5268863f-289e-409c-a694-04143f743bc3" ownerguid="1b7e0a68-9332-4eca-b813-922f5a88445d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">pacenciar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f1ef17bb-2975-4545-a49c-4fe2b0706163" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="526b7667-9ffc-4f9b-83ef-e28c11d4fefd" ownerguid="a4403790-4d4d-4844-a312-2515f0d17e35"> -<Form> -<AUni ws="qvm-x-ach">shipli</AUni> -<AUni ws="qvm-x-acl">shipli; shiple</AUni> -<AUni ws="qvm-x-akh">shipli</AUni> -<AUni ws="qvm-x-akl">shipli; shiple</AUni> -<AUni ws="qvm-x-ame">shipli</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="526c654f-9194-4975-b1b7-6846b89b3140" ownerguid="e61dd088-2f71-4c91-83eb-c4d110170511"> -<Form> -<AUni ws="qvm-x-ach">laqchi</AUni> -<AUni ws="qvm-x-acl">laqchi; laqche</AUni> -<AUni ws="qvm-x-akh">laqchi</AUni> -<AUni ws="qvm-x-akl">laqchi; laqche</AUni> -<AUni ws="qvm-x-ame">laqchi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="526cbecb-54e7-4f16-9b54-b85e678ad89a" ownerguid="0dfdb2ba-84df-49e8-9564-d2ffc6256715"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">nurse</AUni> -<AUni ws="es">lactar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="32ecceab-74d8-48e3-bdd0-1e4d8b2edafd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="526e88aa-02ae-4e04-aace-c7501fcd57d7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jara</AUni> -<AUni ws="qvm-x-acl">jara</AUni> -<AUni ws="qvm-x-akh">jara</AUni> -<AUni ws="qvm-x-akl">jara</AUni> -<AUni ws="qvm-x-ame">hara</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hara.v</AUni> -<AUni ws="qvm-x-acl">*hara.v</AUni> -<AUni ws="qvm-x-akh">*hara.v</AUni> -<AUni ws="qvm-x-akl">*hara.v</AUni> -<AUni ws="qvm-x-ame">*hara.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.680" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a6b37d89-c195-45f5-a1af-79fc6d59c530" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hara.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7354cc54-fabd-433e-9d3f-c15e4554621d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="eeeaa65f-bafe-4ef5-b5fb-cb5348d4e042" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hara.v 
\entryTyp root 
\gENG make.racket 
\gSPN hacer.bulla 
\e *hara.v 
\c V1 
\ach jara 
\akh jara 
\acl jara 
\akl jara 
\ame hara</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5271a791-8e42-4524-865f-693fbc8b243f" ownerguid="c69c62e0-4059-4740-891c-eb0a8de5b1e8"> -<Form> -<AUni ws="qvm-x-ach">gorya</AUni> -<AUni ws="qvm-x-acl">gorya</AUni> -<AUni ws="qvm-x-akh">qorya</AUni> -<AUni ws="qvm-x-akl">qorya</AUni> -<AUni ws="qvm-x-ame">qurya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="5271e9c5-ef8c-4037-842f-be6dcd0ee88b" ownerguid="cc099d1f-80a6-4248-b366-077020a80df6"> -<Form> -<AUni ws="qvm-x-ach">cüña</AUni> -<AUni ws="qvm-x-acl">cüña</AUni> -<AUni ws="qvm-x-akh">cüña</AUni> -<AUni ws="qvm-x-akl">cüña</AUni> -<AUni ws="qvm-x-ame">cüña</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="527360b6-0108-45b7-894b-278977ad0f35" ownerguid="cb9f3356-5143-4671-bfd5-b97046f03937"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="027ad5c1-a3d2-45f1-b7a0-0f669f1cfda7" t="o" /> -</Examples> -<Gloss> -<AUni ws="es">tomar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="462bb3be-17e7-4830-8bd9-8bf041c6dec2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="527aa1ab-a791-4671-80e6-388296e34537"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lacli</AUni> -<AUni ws="qvm-x-acl">lacli; lacli; lacle</AUni> -<AUni ws="qvm-x-akh">lakli</AUni> -<AUni ws="qvm-x-akl">lakli; lakli; lakle</AUni> -<AUni ws="qvm-x-ame">lakli</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llaklli.n</AUni> -<AUni ws="qvm-x-acl">*llaklli.n</AUni> -<AUni ws="qvm-x-akh">*llaklli.n</AUni> -<AUni ws="qvm-x-akl">*llaklli.n</AUni> -<AUni ws="qvm-x-ame">*llaklli.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.124" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="161b84d1-0aa1-49a4-bc45-b3a67bcde4b7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llaklli.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d4b268d7-200d-49db-84da-5491c0664453" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e0e2e7fe-6d0e-4ea6-a517-6c567ddb68de" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llaklli.n 
\entryTyp root 
\gENG cultivation 
\gSPN cultivacion 
\e *llaklli.n 
\c N0 
\mp +FinalI 
\ach lacli 
\akh lakli 
\acl lacli / _# 
\acl lacli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lacle +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lakli / _# 
\akl lakli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lakle +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lakli</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="527bd2ae-dc82-494f-934f-dc32c9fa85e4" ownerguid="500581df-73f1-4d3c-94db-57a856301460"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="b5ab50e4-943a-4896-b9fd-b303dd062997" t="o" /> -<objsur guid="f41da6ef-2e01-4f99-a03d-40853f15f36d" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">take.advantage</AUni> -<AUni ws="es">aprovechar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="73ab5c74-4f1e-47de-ac1e-45e36360bf75" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="527d1d96-f962-4316-865c-56f6e88fbc31" ownerguid="70953222-5bc5-4fa2-a85a-01827f7bc537"> -<ExampleWords> -<AUni ws="en">way, how to get, route, directions</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the way to go from one place to another?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="527e8f5e-b2c1-418b-8669-35275df55ba7" ownerguid="23190f9e-2db2-4ef9-8c0e-495dbef05571"> -<ExampleWords> -<AUni ws="en">be attracted to, fancy, be interested in, want, lust after, take a fancy to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to being sexually attracted to someone?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="527fb279-a6fe-414e-ac20-552aa202289f" ownerguid="582fe42e-9eb0-4deb-b681-ef835b7747f3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="ca07312d-49a1-4d8c-8591-706cb7d5a595" t="r" /> -</Msa> -<Sense> -<objsur guid="a1eaf593-3379-47ea-bee4-15cbbda9775f" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="52826d43-b286-4c7f-be28-15cc815e0b00" ownerguid="d06dae77-134a-403f-ba88-52ecd66c0522"> -<Question> -<AUni ws="en">(3) What species of moss are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="528408fb-5590-498c-8f6f-3f0dce502b4d" ownerguid="f29dccae-1654-4eb7-8aae-04f7df4fe90c"> -<ExampleWords> -<AUni ws="en">right, proper, accepted, approved, appropriate, correct</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is right for a particular job?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5284bcc8-bf5e-4a54-b853-121fd8a8b492" ownerguid="4e90365c-54f2-4d08-99a7-723092e9bfeb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wheat.germ</AUni> -<AUni ws="es">germen.de.trigo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bca503ed-6da9-4b73-ab96-4046407c1152" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="52855e28-f62b-4857-810a-b2eb99557297" ownerguid="647603c2-6f32-48f3-91fa-1f7f0e44b539"> -<ExampleWords> -<AUni ws="en">pour (out), empty (v), dump (out), douse, drench, pump</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to putting lots of water on something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="52862b2d-6414-4dd4-a844-1a597d62bd70" ownerguid="f8863b67-b911-4334-a1b6-6eb913bd14af"> -<ExampleWords> -<AUni ws="en">width, breadth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to how wide something is?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="52866377-e927-4dc3-a05c-7c9761fb6438" ownerguid="986b31ce-1a07-47f4-93aa-3048f8e0833d"> -<Form> -<AUni ws="qvm-x-ach">ynag</AUni> -<AUni ws="qvm-x-acl">ynag</AUni> -<AUni ws="qvm-x-akh">ynaq</AUni> -<AUni ws="qvm-x-akl">ynaq</AUni> -<AUni ws="qvm-x-ame">ynaq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="04c2c26a-62fd-4045-9c28-5e4da7139d19" t="r" /> -</PhoneEnv> -</rt> -<rt class="CmDomainQ" guid="5289aec4-ea69-4f3d-a43b-f76b620eb734" ownerguid="b21ace5f-9307-4bdc-b103-9fdf14a5655e"> -<ExampleWords> -<AUni ws="en">week, this week, last week, next week, the weeks to come</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a week?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="528a75ef-09a4-4c91-91ea-adb65d4453a5" ownerguid="1e1b4c17-9133-4682-8148-dec1f7c897b3"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="5290fae4-2e3e-494b-8eef-0f645eeff289" ownerguid="38877d9c-e6c5-4593-b01f-500c0fc607a6"> -<Form> -<AUni ws="qvm-x-ach">malumya</AUni> -<AUni ws="qvm-x-acl">malumya</AUni> -<AUni ws="qvm-x-akh">malumya</AUni> -<AUni ws="qvm-x-akl">malumya</AUni> -<AUni ws="qvm-x-ame">malumya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="529140d1-6e8e-44fe-99f0-95289e933607" ownerguid="e7c58c11-2911-446a-96b0-2113247f3792"> -<Abbreviation> -<AUni ws="en">4.1.9.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to being related by birth--when one of your ancestors and one of someone else's ancestors are the same person.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>10A Groups and Members of Groups of Persons Regarded as Related by Blood but without Special Reference to Successive Generations; 10B Kinship Relations Involving Successive Generations</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Related by birth</AUni> -</Name> -<OcmCodes> -<Uni>602 Kin Relationships</Uni> -</OcmCodes> -<Questions> -<objsur guid="0b186d58-0fe3-488b-ac65-148f441a5ab0" t="o" /> -<objsur guid="acdd06a1-a5fd-4b5e-80e8-1abb8f0c12ff" t="o" /> -<objsur guid="f9455694-3dc9-4d65-8250-80f3ac744af6" t="o" /> -<objsur guid="1f20a5b5-2482-451e-b1f0-ee147ef781bb" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="d1e58469-52e3-4b50-b0de-00bf9f09f8d4" t="o" /> -<objsur guid="44dc42e4-e9c7-4aa9-ac9b-1008385244b1" t="o" /> -<objsur guid="bb29001e-97f3-4bb4-8946-7c33b9835fcb" t="o" /> -<objsur guid="87c499b3-5fab-45e0-9999-9c4fcbba1e2b" t="o" /> -<objsur guid="f47d681b-4f0d-43ca-a465-2e1724825752" t="o" /> -<objsur guid="75202262-cdba-4c43-9343-764c84138797" t="o" /> -<objsur guid="f957a4aa-d3d4-4dad-93d1-20565b5158d4" t="o" /> -<objsur guid="eb0c9e02-e4c1-4e5e-84b6-be63aaf439d5" t="o" /> -<objsur guid="89944377-8694-4394-bced-153cc22a0e30" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="52915df5-3591-42e5-bd45-ab139ee16910"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">kaykanmi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="5291a31d-b158-478c-a8be-7564c64a31b8" ownerguid="d2683ae4-dbbb-4bf4-8e22-483b78bd560a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -</rt> -<rt class="WfiAnalysis" guid="52972973-4858-4e2b-8ddb-097b56612c1d" ownerguid="86337b2a-fa4b-45a0-a4d3-3998e7c67aa2"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="7b350474-f846-4695-a1b1-ece48598a1df" t="o" /> -<objsur guid="e313682c-54c1-4cd8-aae9-a409a7a906d7" t="o" /> -<objsur guid="346d709b-28ea-4da0-aeab-de4922d63fe9" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="529c175a-31f4-435c-87f9-db96f5c013ed" ownerguid="52522931-e14e-424b-b78f-fa27acc54934"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="529e5878-c156-4a12-ab71-ab8e9c80cd1a" ownerguid="d4321205-e522-49b2-b9b0-014d63801cbf"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="529f86f1-b0dd-4706-9196-97797adab7a2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsucu</AUni> -<AUni ws="qvm-x-acl">tsucu; tsucu; tsuco</AUni> -<AUni ws="qvm-x-akh">tsuku</AUni> -<AUni ws="qvm-x-akl">tsuku; tsuku; tsuko</AUni> -<AUni ws="qvm-x-ame">tsuku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chuku.n</AUni> -<AUni ws="qvm-x-acl">*chuku.n</AUni> -<AUni ws="qvm-x-akh">*chuku.n</AUni> -<AUni ws="qvm-x-akl">*chuku.n</AUni> -<AUni ws="qvm-x-ame">*chuku.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.335" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="af9ca902-8081-4e07-becd-5ed123fdee0b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chuku.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="87fd66f8-8dc3-415f-971b-309e2127ddb2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="55220cca-1c1b-4ab5-add5-624774e41ae7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chuku.n 
\entryTyp root 
\gENG hat 
\gSPN sombrero 
\e *chuku.n 
\c N0 
\ach tsucu 
\akh tsuku 
\acl tsucu / _# 
\acl tsucu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tsuco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsuku / _# 
\akl tsuku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tsuko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsuku</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="529f9000-22f0-42c9-931e-41d9e5c40929" ownerguid="1c00eec6-a852-48f6-aea6-f3b0d73f95b3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tin</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c2a100ad-9da3-45cb-88f8-12b76fac8d0b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="529fbf2f-7324-4c68-b56b-67815a6bc22c" ownerguid="fe58ae61-ab0b-43a4-86fb-d9aedd199932"> -<ExampleWords> -<AUni ws="en">mixed, mixed up, amalgamated, assorted, blended, combined, composite, compounded, conglomerated, diluted, half-and-half, heterogeneous, intermixed, jumbled, mingled, miscellaneous, motley, scrambled, tangled, together, varied, variegated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something made by mixing things together?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="52a1b5e3-a558-4b99-b3ea-129147e616f4" ownerguid="6b8366b9-b5e8-42b8-991c-c568d4442a81"> -<ExampleWords> -<AUni ws="en">beauty salon, beauty parlor, barber shop, hair salon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a business that cares for people's hair?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="52a1bf0a-8b17-4efd-a7e0-780388378409" ownerguid="71db9179-0dd5-445f-b153-c1857c6cf612"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="ca07312d-49a1-4d8c-8591-706cb7d5a595" t="r" /> -</Msa> -<Sense> -<objsur guid="a1eaf593-3379-47ea-bee4-15cbbda9775f" t="r" /> -</Sense> -</rt> -<rt class="WfiMorphBundle" guid="52a75217-c213-459a-af84-e750e3b1742c" ownerguid="5151d545-a147-4c16-b63f-7a8bfeb75c3c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ra</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ra</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ra</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ra</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ra</Run> -</AStr> -</Form> -<Morph> -<objsur guid="c9195472-585e-46e8-ad5e-3cf1c0561f5a" t="r" /> -</Morph> -<Msa> -<objsur guid="a22f2957-a229-4afb-b8d3-b397bafea06d" t="r" /> -</Msa> -<Sense> -<objsur guid="a5822a50-89fb-4d47-8305-959167df4a0d" t="r" /> -</Sense> -</rt> -<rt class="WfiAnalysis" guid="52a7b4cb-3ebe-4c1f-8e5c-4d86e1d7d10b" ownerguid="940abc4a-4655-4edf-94b4-e46270ab0fe4"> -<Category> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</Category> -<Evaluations> -<objsur guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="d8f876c1-67cc-4df3-8588-b71dc631e405" t="o" /> -<objsur guid="29cfa848-10dd-48b8-a751-28a386af3f0e" t="o" /> -<objsur guid="7455d666-0cc3-480a-a43b-78bfd20c8f10" t="o" /> -<objsur guid="74e5f346-e177-4774-9daf-ec7fbc12ccb4" t="o" /> -<objsur guid="9b81e0a7-da7e-4001-aac4-ab14d2b40580" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="52aad4ae-3f6d-42f4-971f-5b0040448282" ownerguid="6bfb7813-3a7d-47e2-88e1-d54034c07e5d"> -<ExampleWords> -<AUni ws="en">council, board, committee, advisory (board)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a group of people who give advice?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="52ab6101-62b6-44b2-a910-adce280168e4" ownerguid="2bbd43f9-d19a-4cdc-b594-bac1cbbf386a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Gamtapis pipis manami tsapashunquitsu lutanta rurayta munaptiqui.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="52b04e15-7062-4fb2-9eaa-4fe8726f302a" ownerguid="ec1bcace-fc10-45df-8e1f-29bce1ef786a"> -<Abbreviation> -<AUni ws="en">3.5.1.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.162" /> -<DateModified val="2022-9-23 16:55:8.162" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to greeting someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>34I Kiss, Embrace</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Greet</AUni> -</Name> -<Questions> -<objsur guid="bfe9c2c2-8976-4596-9bc3-a18bff50414c" t="o" /> -<objsur guid="d4f06890-9bcf-43f3-9c09-fdb3e51f50a0" t="o" /> -<objsur guid="6883c0e6-4a88-4bd9-ba29-db4cd84aa1dc" t="o" /> -<objsur guid="b891ea66-0cd8-469c-86a5-10a5096c826c" t="o" /> -<objsur guid="448f2b55-fd86-430a-8594-39bc914d80b1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="52b0ddb1-622b-47ed-9d41-fd02b89fc53f" ownerguid="6d5fdd15-7352-4395-85d4-6fa6fd1ecd3b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="52b1d733-b40a-4073-b3e8-0d91e08d9eb3" ownerguid="772a9c40-4053-4381-9800-3eceba9a83d1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="52b21460-1e74-44be-8836-52c4c22065bb" ownerguid="0249a66f-940e-439b-9d7a-6d2ae604b988"> -<Form> -<AUni ws="qvm-x-ach">liclacchu</AUni> -<AUni ws="qvm-x-acl">liclacchu; liclacchu; liclaccho</AUni> -<AUni ws="qvm-x-akh">liklakchu</AUni> -<AUni ws="qvm-x-akl">liklakchu; liklakchu; liklakcho</AUni> -<AUni ws="qvm-x-ame">liklakchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="52b4ef67-8a02-4fc5-bb0b-f6f7883667bc" ownerguid="d7455e4a-a06d-483c-9810-623aba9b634a"> -<Form> -<AUni ws="qvm-x-ach">chinchi</AUni> -<AUni ws="qvm-x-acl">chinchi; chinchi; chinche</AUni> -<AUni ws="qvm-x-akh">chinchi</AUni> -<AUni ws="qvm-x-akl">chinchi; chinchi; chinche</AUni> -<AUni ws="qvm-x-ame">chinchi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="52b648b7-6d44-4b32-8b06-bfd1b63bfd95" ownerguid="29a8ebbe-ebc4-4295-b6af-84331d019361"> -<ExampleWords> -<AUni ws="en">homograph, homonym, homophone, homophonous, rhyme</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to words that are similar in sound?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="52b7528a-203d-4580-aa1f-cf0927538021"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">latsqui</AUni> -<AUni ws="qvm-x-acl">latsqui; latsque</AUni> -<AUni ws="qvm-x-akh">latski</AUni> -<AUni ws="qvm-x-akl">latski; latske</AUni> -<AUni ws="qvm-x-ame">latski</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llachki</AUni> -<AUni ws="qvm-x-acl">*llachki</AUni> -<AUni ws="qvm-x-akh">*llachki</AUni> -<AUni ws="qvm-x-akl">*llachki</AUni> -<AUni ws="qvm-x-ame">*llachki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.124" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b33a9052-cc2e-4cd2-a349-8b575835a438" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llachki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bfbb83bf-cb66-4959-a639-9de6ce0b9691" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b57e903f-a23f-448e-89ce-85873e3e552b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llachki 
\entryTyp root 
\gENG break 
\gSPN romper 
\e *llachki 
\c V1 
\mp +FinalI 
\ach latsqui 
\akh latski 
\acl latsqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl latsque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl latski +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl latske +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame latski</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="52ba1065-481c-4ded-af8d-e178a6380bff" ownerguid="a977c4b6-1004-448f-b6b0-daf5ce87d76d"> -<ExampleWords> -<AUni ws="en">high status, high rank, privilege, promote, raise in status, raise in rank, important person, aristocracy, prominent, grand, great</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe high status?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="52bcb4ad-0e29-4979-a34e-7e9ac184400c" ownerguid="c9da4369-8c6f-47c3-bab4-d59d0de8d022"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="52bedf54-9f72-4483-97f0-2314c5f38e85" ownerguid="67b648fc-5317-4a74-8f22-30e8b1b34d51"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mu; mo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mu; mo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="45846476-db8b-4639-bef8-780e6651a907" t="r" /> -</Morph> -<Msa> -<objsur guid="84097b64-d9df-441f-a9d3-d11d4b9d9ea0" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="52bff85b-cf9a-477e-90d4-b5777500bd79"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yunqui</AUni> -<AUni ws="qvm-x-acl">yunqui; yunqui; yunque</AUni> -<AUni ws="qvm-x-akh">yunki</AUni> -<AUni ws="qvm-x-akl">yunki; yunki; yunke</AUni> -<AUni ws="qvm-x-ame">yunki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+yunque</AUni> -<AUni ws="qvm-x-acl">+yunque</AUni> -<AUni ws="qvm-x-akh">+yunque</AUni> -<AUni ws="qvm-x-akl">+yunque</AUni> -<AUni ws="qvm-x-ame">+yunque</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.790" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="58b9979a-492c-4b7c-8d13-cf9bc5005483" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+yunque</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7abce009-1635-4003-918e-a3d351898354" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2c0b0618-90c5-444f-9224-be6e6855c943" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +yunque 
\entryTyp root 
\gENG anvil 
\gSPN 
\e +yunque 
\c N0 
\mp +assimilated KQWchange 
\ach yunqui 
\akh yunki 
\acl yunqui / _# 
\acl yunqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl yunque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yunki / _# 
\akl yunki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl yunke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame yunki 
\mp +FinalI</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="52c05b88-573f-4de2-b328-40c53366e956" ownerguid="2a62f8e4-7da3-4f37-bf44-e24033c99c00"> -<ExampleWords> -<AUni ws="en">get angry, get mad, lose your temper, fly off the handle, blow your top, hit the roof, go crazy, go nuts, have a fit, go berserk, erupt, get your dander up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to becoming angry?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="52c3f6d5-6876-4256-a9ac-eddcba421f86" ownerguid="1d1cefbb-d017-478f-9207-2394065f5d88"> -<Form> -<AUni ws="qvm-x-ach">lashta</AUni> -<AUni ws="qvm-x-acl">lashta</AUni> -<AUni ws="qvm-x-akh">lashta</AUni> -<AUni ws="qvm-x-akl">lashta</AUni> -<AUni ws="qvm-x-ame">lashta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="52c4e986-5fd0-4705-87fe-8ddc628aff31" ownerguid="fcc4ce3e-c994-4dfd-b404-ff9f6196a9d6"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="52c55035-1875-445b-898b-61c2099fc3e7" ownerguid="42b3e6b1-7de0-4ff8-8c4e-94696de815c3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="5cc9a3bb-103d-4c28-b867-843434b1ecf2" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="52c8d765-54c2-472a-982b-2b1dd737cbe8" ownerguid="1a76e7ee-eaed-4535-ae7d-b1f6d6e5a07d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="52cdc482-bb39-4961-8135-7ddded988d39"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">mutsarqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="52cddc4c-5abf-49af-bf4c-84787b6f099d" ownerguid="42b7ea65-3cb9-4bc5-829c-334bdddcac5b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="3b0cda59-be2f-4d90-8250-58abaa01511f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="52ced6e6-6813-460f-9f6b-1f4a39994517" ownerguid="275201ba-67a2-4013-b5c6-43496c67b974"> -<Form> -<AUni ws="qvm-x-ach">rätu</AUni> -<AUni ws="qvm-x-acl">rätu; rätu; räto</AUni> -<AUni ws="qvm-x-akh">rätu</AUni> -<AUni ws="qvm-x-akl">rätu; rätu; räto</AUni> -<AUni ws="qvm-x-ame">rätu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="52cf2c08-9ba1-40a2-8fe6-ff4bd833c3b7" ownerguid="b868b0ae-af5b-431c-8739-ee563065b80e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">white.of.egg</AUni> -<AUni ws="es">yema</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="34ef2d61-7637-4d35-ab8f-0110eec93359" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="52cfb002-0d31-4189-a9f5-71f3caafaaf4" ownerguid="eca46133-c350-4573-a349-9b7ce11b6fa8"> -<ExampleWords> -<AUni ws="en">contain, hold, carry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used to describe the actions done with these tools?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="52d1fff8-807f-438e-a70d-747728629317" ownerguid="10a82711-8829-461a-b172-fc8fff3d555c"> -<ExampleWords> -<AUni ws="en">puppy, pup, whelp</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to young dogs?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="52d4ef5e-f6a6-4e90-8f82-83e1cd24fbba" ownerguid="e11b6e55-ed8e-46ca-b7e9-8cc7d0a11531"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="448cff36-7250-45b7-a8a0-71779304cb1f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="52d535e0-e244-4d0d-9604-a034a41cd4c3" ownerguid="c0b81647-2e6a-4716-9969-5010e8e43408"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ring.bell</AUni> -<AUni ws="es">tocar.campana</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="419bc00a-43a7-46f5-a596-b8471401be6f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="52d7deb2-ae11-469f-8346-4b321f43a2c6" ownerguid="c5dfc0a3-98ab-4b09-ab50-3300f85df6db"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">huge</AUni> -<AUni ws="es">enorme</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f9acd94d-0ee7-4a74-8899-7c4e814e6193" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="52d84004-8ef0-4c29-8b3d-49fc298597f7" ownerguid="8d8a7656-8f8e-467e-b72e-535db6a17c6a"> -<ExampleWords> -<AUni ws="en">frog (water), toad (land), amphibian</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to amphibians?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="52d85c7b-ade4-429c-a341-96383ab7c5e1" ownerguid="05472990-3f51-40b3-bca8-df3cf383328b"> -<ExampleWords> -<AUni ws="en">long winded</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe a speaker who talks for a long time?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="52db2b7d-0411-477a-b0f5-f4f320dbf5f6" ownerguid="dde9e168-217c-46ed-8b5d-ddf4139a3872"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="52db7b1e-61d7-4ee7-b949-a3ae2096ba04" ownerguid="da60d6ed-addf-497f-ae68-2156e61681e3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">knit.cap</AUni> -<AUni ws="es">gorro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="eba682f2-a2ba-4eff-b5d5-5faa630536a9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="52de16bd-6e72-403c-a187-0c5178ce44b5" ownerguid="fe0e5d58-8870-42b3-9744-bfa0b500641a"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="51cec0a4-1fa1-499e-8978-3b81f3b42eb1" t="o" /> -<objsur guid="f2a81cdd-8483-4d03-8ef1-ba4e85140c23" t="o" /> -<objsur guid="2f164160-f983-4d0c-b026-d048d8b88976" t="o" /> -<objsur guid="0c08e5fd-d206-417f-9dd1-ef1066d67ca4" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="52e050f5-7932-41fa-bf55-6918c9d51ac6" ownerguid="1f4baeb7-dcaa-4c28-9956-a4818b4cc565"> -<Form> -<AUni ws="qvm-x-ach">normal</AUni> -<AUni ws="qvm-x-acl">normal</AUni> -<AUni ws="qvm-x-akh">normal</AUni> -<AUni ws="qvm-x-akl">normal</AUni> -<AUni ws="qvm-x-ame">normal</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="52e063df-f001-4455-95a2-f33a3b518b62" ownerguid="94af09fa-ff23-433b-a881-ceaca87d9d18"> -<ExampleWords> -<AUni ws="en">weakling, wimp, invalid, weed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a person who is weak?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="52e9ab18-3abe-48c9-aaa9-675dcaab58f5" ownerguid="f8df16a9-d374-4f8c-a7b3-1f2a92376540"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shag</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shag</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shaq</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shaq</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shaq</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a855a64d-1bb8-44af-b5f0-302d292c4df2" t="r" /> -</Morph> -<Msa> -<objsur guid="dc53e817-8c9f-407c-9e09-cc7f8ae7e19f" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="52f0f943-d05e-4e1e-9935-ea0c9b55de21" ownerguid="b93d9c47-2a86-4719-8864-71b8ddc50398"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="52f2ad0a-d733-47d9-b29b-a20c608972e4" ownerguid="ca34fbb8-44db-4e14-9a62-e483dd3db481"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="52f305fd-f9fc-46ed-bf1a-bdef3bac6f33" ownerguid="726923d4-b25c-46eb-8ab0-427207177ae3"> -<ExampleWords> -<AUni ws="en">shred, grate, slice, cut up, chop, dice, cube, quarter, halve, mince, grind</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to cutting up ingredients?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="52f36c9c-37e4-45da-b0eb-922d1c7438b9" ownerguid="b9ca2d56-750e-4ace-95a6-4c3c54bffbb0"> -<Form> -<AUni ws="qvm-x-ach">adornu; adorno</AUni> -<AUni ws="qvm-x-acl">adornu; adornu; adorno</AUni> -<AUni ws="qvm-x-akh">adornu; adorno</AUni> -<AUni ws="qvm-x-akl">adornu; adornu; adorno</AUni> -<AUni ws="qvm-x-ame">adornu; adorno</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="52f566e1-61fd-4daa-9801-5ffcc50a6266" ownerguid="21ebc64a-a1b8-45bd-b7f6-143a053f1d31"> -<ExampleWords> -<AUni ws="en">basketball player, star, center, forward, guard, substitute, bench</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What is a person called who participates in the game?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="52f9a8f0-d97d-4aa1-8c2c-d907d7cb83fc" ownerguid="0eefa07a-e0a3-49e3-aeb4-62f1eafd8e23"> -<Abbreviation> -<AUni ws="en">9.5.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that the subjects of a clause do something in groups.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">In groups</AUni> -</Name> -<Questions> -<objsur guid="8ea645df-1382-4240-abc8-b51f61350013" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="52fa7b28-9c0e-4e3d-96c4-190d6e0c07d9" ownerguid="3f6dc9af-0c50-44d5-99f0-4aa67c668186"> -<ExampleWords> -<AUni ws="en">drill for oil, extract, strike oil, gusher</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to drilling for oil and gas?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5304710b-b192-4a0c-bb11-c7d00ab6a5d7" ownerguid="4d60eb1f-bd22-45af-9581-dcc897efcfb4"> -<Form> -<AUni ws="qvm-x-ach">lagla</AUni> -<AUni ws="qvm-x-acl">lagla</AUni> -<AUni ws="qvm-x-akh">laqla</AUni> -<AUni ws="qvm-x-akl">laqla</AUni> -<AUni ws="qvm-x-ame">laqla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="53060bbd-08c7-422f-b685-507c9083f3e5" ownerguid="dbe972e1-d182-4463-bfd9-f1836a052a29"> -<Form> -<AUni ws="qvm-x-ach">jamutsi</AUni> -<AUni ws="qvm-x-acl">jamutsi; jamutse</AUni> -<AUni ws="qvm-x-akh">jamutsi</AUni> -<AUni ws="qvm-x-akl">jamutsi; jamutse</AUni> -<AUni ws="qvm-x-ame">hamutsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="53064237-b29d-4001-8f7f-ded5d7203700" ownerguid="0e590da7-c027-42e0-b580-f65686cee461"> -<ExampleWords> -<AUni ws="en">surprise (v), surprise (n), amaze, astonish, astound, awe (v), inspire awe, flabbergast, floor, startle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to causing someone to feel surprised?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="530849d4-bd70-4741-9f10-08584d3d2736"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">carreti:lla</AUni> -<AUni ws="qvm-x-acl">carreti:lla</AUni> -<AUni ws="qvm-x-akh">carreti:lla</AUni> -<AUni ws="qvm-x-akl">carreti:lla</AUni> -<AUni ws="qvm-x-ame">carreti:lla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+carretilla</AUni> -<AUni ws="qvm-x-acl">+carretilla</AUni> -<AUni ws="qvm-x-akh">+carretilla</AUni> -<AUni ws="qvm-x-akl">+carretilla</AUni> -<AUni ws="qvm-x-ame">+carretilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.920" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="49cd5b66-22fd-4d3c-8fc9-fa30f44e6608" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+carretilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="30def189-c8e4-4f8b-9364-87930a74102b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cec711bb-a8a8-4f4e-9365-e76128c39b75" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +carretilla 
\entryTyp root 
\gENG wheelbarrow 
\gSPN carretilla 
\e +carretilla 
\c N0 
\ach carreti:lla 
\akh carreti:lla 
\acl carreti:lla 
\akl carreti:lla 
\ame carreti:lla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5308bf88-03a7-4010-8391-743c664c5784" ownerguid="abbadf39-6727-4a3e-b6cd-c0fa98520d10"> -<Form> -<AUni ws="qvm-x-ach">palmëra</AUni> -<AUni ws="qvm-x-acl">palmëra</AUni> -<AUni ws="qvm-x-akh">palmëra</AUni> -<AUni ws="qvm-x-akl">palmëra</AUni> -<AUni ws="qvm-x-ame">palmëra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="5309aff9-f8e3-41e2-bbdd-afdfb16755ae" ownerguid="0d2167a3-9787-43a6-bdec-ac3010926e0a"> -<Form> -<AUni ws="qvm-x-ach">saucu; sauco</AUni> -<AUni ws="qvm-x-acl">saucu; saucu; sauco</AUni> -<AUni ws="qvm-x-akh">saucu; sauco</AUni> -<AUni ws="qvm-x-akl">saucu; saucu; sauco</AUni> -<AUni ws="qvm-x-ame">saucu; sauco</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="530a106f-e77c-4dea-b631-58dd612ed658" ownerguid="221369a4-3d3d-45fa-8ef7-0b4c2cf9af2d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="530bb87e-4a3f-481e-b8e4-48bbe526e5ef" ownerguid="d47b69e0-ab4a-4111-aec3-2c889a4e70b3"> -<ExampleWords> -<AUni ws="en">created</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that was created?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="530be12f-602e-4d07-821a-4eb727cef400" ownerguid="dc6e0d2d-7fae-4330-9334-15de85a2f115"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="530c3471-09c7-4dcb-b475-c853818e3c36" ownerguid="ffd0547e-e537-4614-ac3f-6d8cd3351f33"> -<ExampleWords> -<AUni ws="en">chest, back, belly, rump, croup, tail, switch, udder, flank, brisket, teat, hindquarters</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the parts of the torso?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="530fdc6d-6b00-4ef4-bb54-0e93a0088d0b" ownerguid="f07757e2-d57f-4014-bff9-fdbc5007a02a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.head</AUni> -<AUni ws="es">cabecear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fee5329e-c84d-48aa-855a-c04a90305ab2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="530ff7e0-e3cb-4dc3-9c1c-3034969e1ce8" ownerguid="55201761-fe2e-40d5-a2a7-8079e00a2c32"> -<Abbreviation> -<AUni ws="en">4.8.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.276" /> -<DateModified val="2022-9-23 16:55:8.276" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to revenge--to do something bad to someone because they did something bad to you.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>39F Revenge</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Revenge</AUni> -</Name> -<Questions> -<objsur guid="55d9fd4e-4cfd-4ac8-9b59-10160a536c09" t="o" /> -<objsur guid="5e35efa7-827c-4f5f-a0f4-38c070ca0a0e" t="o" /> -<objsur guid="fecdd79a-a566-410f-938d-431cfea20f23" t="o" /> -<objsur guid="589c103d-7c67-4722-97a8-8c9d46ff8073" t="o" /> -<objsur guid="07cbd5b5-a0dc-4127-87ef-47b030eb2cd3" t="o" /> -<objsur guid="ad8129d0-7e11-4c59-a506-309e3b636faa" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="5311c1cf-22d1-4b49-90f9-b2503bc986b3" ownerguid="6cd59f6c-9bf4-43db-a2df-8eb0ede206e5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="531671fb-e296-4a76-8485-891b8197aaf7" ownerguid="48d7bd4b-8a21-4793-ac0c-2738af616d15"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="905a9718-3860-4808-9065-dbbccf1776eb" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="4b145b3b-da5c-41ce-88d9-4cf3879411b7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="531af868-b5fb-41c2-ba50-764458f9102f" ownerguid="025da6f4-b1b6-423a-8c0f-b324f531a6f1"> -<Abbreviation> -<AUni ws="en">1.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.978" /> -<DateModified val="2022-9-23 16:55:7.978" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for bushes and shrubs--plants that are smaller than trees and have several wooden trunks (Phylum Spermatophyta, Subdivision Angiospermae).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Bush, shrub</AUni> -</Name> -<OcmCodes> -<Uni>137e Shrubs</Uni> -</OcmCodes> -<Questions> -<objsur guid="a5debbdb-4df7-4758-acf5-3738842ebf94" t="o" /> -<objsur guid="405dfa30-b552-4571-a2b5-28e824536e06" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="531e7a77-fb4f-4c22-8882-0bdcf52a82a8" ownerguid="979be69d-7c93-4e8d-b2d7-f1943c8b3157"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.print</AUni> -<AUni ws="es">imprimir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="62f0d7af-5ea0-4eeb-a1ea-48a48008ad2f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="531ef61d-ea5e-427d-8eba-cb6d4dee392b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ishcupullu</AUni> -<AUni ws="qvm-x-acl">ishcupullu; ishcupullu; ishcupullo</AUni> -<AUni ws="qvm-x-akh">ishkupullu</AUni> -<AUni ws="qvm-x-akl">ishkupullu; ishkupullu; ishkupullo</AUni> -<AUni ws="qvm-x-ame">ishkupullu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ishkupullu</AUni> -<AUni ws="qvm-x-acl">*ishkupullu</AUni> -<AUni ws="qvm-x-akh">*ishkupullu</AUni> -<AUni ws="qvm-x-akl">*ishkupullu</AUni> -<AUni ws="qvm-x-ame">*ishkupullu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.852" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1d469409-8084-4c9a-9876-703ea1e1e3f8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ishkupullu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6feab5e5-9c85-430f-9751-8c46e75da77d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="da487a88-9085-4c30-af73-6520961ceb6c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ishkupullu 
\entryTyp root 
\gENG chisel 
\gSPN escoplo 
\e *ishkupullu 
\c N0 
\ach ishcupullu 
\akh ishkupullu 
\acl ishcupullu / _# 
\acl ishcupullu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ishcupullo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ishkupullu / _# 
\akl ishkupullu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ishkupullo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ishkupullu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="53221ddb-1050-4c09-8d25-c595224e06c7" ownerguid="5f420ecd-d3b2-4f25-91d2-f314662820c9"> -<Form> -<AUni ws="qvm-x-ach">emperador</AUni> -<AUni ws="qvm-x-acl">emperador</AUni> -<AUni ws="qvm-x-akh">emperador</AUni> -<AUni ws="qvm-x-akl">emperador</AUni> -<AUni ws="qvm-x-ame">emperador</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="532245e7-8f46-4394-9045-240475ee62e8" ownerguid="21167445-f1b1-49b4-b147-bc792616c432"> -<Abbreviation> -<AUni ws="en">8.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.640" /> -<DateModified val="2022-9-23 16:55:8.640" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to an indefinite time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>67A A Point of Time without Reference to Other Points of Time: Time, Occasion, Ever, Often</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Indefinite time</AUni> -</Name> -<Questions> -<objsur guid="9006eaa5-912d-4562-826b-ce5c6193932b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="5322cc74-340c-42e6-bdef-9e068ec21a3c" ownerguid="fb460a8d-ede0-43dc-a1da-f81ef8da6f62"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">glue</AUni> -<AUni ws="es">goma</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ad24a29e-1407-4ba9-8e3a-39f08b79d95f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="5325a313-c82c-4327-ae51-ade7f344f724" ownerguid="d2f3aed7-a012-414b-8269-a9170db0555d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="80f45257-3085-4e4e-a18e-982ed07a3bc4" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="79d39d98-cf6c-4fca-906e-bc4027ba0fdb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="532b311a-f447-48d7-a96b-c42470e46df3" ownerguid="acf5e294-d169-45c1-a9d3-960536e018cc"> -<ExampleWords> -<AUni ws="en">sound like, sound of, sound (good/bad), have a (good/bad) sound, (good/bad) sounding</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something sounds like another thing or sounds a particular way?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="532c0c6c-2702-4aa2-b9f8-bf9be318cf7c" ownerguid="bd847e1e-c1e3-4fb4-802c-11118aaf40aa"> -<Form> -<AUni ws="qvm-x-ach">cunish</AUni> -<AUni ws="qvm-x-acl">cunish</AUni> -<AUni ws="qvm-x-akh">cunish</AUni> -<AUni ws="qvm-x-akl">cunish</AUni> -<AUni ws="qvm-x-ame">cunish</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="532c6549-ead6-4359-a6c0-7f42f0b5dd3f" ownerguid="0cbef6d0-3121-4610-8696-a123e2cc7913"> -<Form> -<AUni ws="qvm-x-ach">jura</AUni> -<AUni ws="qvm-x-acl">jura</AUni> -<AUni ws="qvm-x-akh">jura</AUni> -<AUni ws="qvm-x-akl">jura</AUni> -<AUni ws="qvm-x-ame">jura</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="532cc98d-ddbc-4ace-9162-58b2560908b9" ownerguid="6798703b-c2c6-4f9d-8a2e-26b03ef04064"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">scale</AUni> -<AUni ws="es">escama</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f282c5f0-c2ee-4c9d-ab38-7192923a714d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="532d828a-37ad-414c-a0c3-aa12d557555d" ownerguid="56a9e27a-7121-469d-95eb-6cec53129749"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">river</AUni> -<AUni ws="es">rio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="622799ff-4e25-4a77-9ad7-dae684fde13d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5332c42f-b44c-48a8-84cc-c9be572133f7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tinyay</AUni> -<AUni ws="qvm-x-acl">tinyay</AUni> -<AUni ws="qvm-x-akh">tinyay</AUni> -<AUni ws="qvm-x-akl">tinyay</AUni> -<AUni ws="qvm-x-ame">tinyay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tinyay</AUni> -<AUni ws="qvm-x-acl">*tinyay</AUni> -<AUni ws="qvm-x-akh">*tinyay</AUni> -<AUni ws="qvm-x-akl">*tinyay</AUni> -<AUni ws="qvm-x-ame">*tinyay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.916" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="af869258-aa97-4d01-a648-6563b970dfa3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tinyay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1eb30c47-b5e5-4294-bec9-77e9f3af43aa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a11e4309-2c02-4a8a-bd2a-c070815107b8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tinyay 
\entryTyp root 
\gENG carpenter.bee 
\gSPN abeja 
\e *tinyay 
\c N0 
\mp +FinalC 
\ach tinyay 
\akh tinyay 
\acl tinyay 
\akl tinyay 
\ame tinyay</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="53335ab1-5458-404e-a028-2cab470f48bc" ownerguid="d1f0df8d-1556-42e8-864d-5e39b3eb5cae"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">s/he</AUni> -<AUni ws="es">él(la)</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d9219b0e-14bd-4167-bd13-182acfa0647f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5335fdc3-484a-4709-a029-ee0b30d7a4ba" ownerguid="ca511a0c-5628-4726-8a6e-aa9fa3b73bfc"> -<ExampleWords> -<AUni ws="en">witness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What is a person called who gives testimony?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5338ce99-d43c-4b44-8c19-f19e6e266413" ownerguid="9e8b331c-da61-4881-b7ed-0bf3f07ce88f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="533eb829-515a-44f7-88d1-accc17b0c457" ownerguid="f7e5fd2f-8764-4308-b739-94de05ec7041"> -<Form> -<AUni ws="qvm-x-ach">ünu</AUni> -<AUni ws="qvm-x-acl">ünu; ünu; üno</AUni> -<AUni ws="qvm-x-akh">ünu</AUni> -<AUni ws="qvm-x-akl">ünu; ünu; üno</AUni> -<AUni ws="qvm-x-ame">ünu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="533fef7a-553e-4ca5-94bb-8c918746cd56" ownerguid="262fc4ae-7735-465b-934b-2125d95de147"> -<ExampleWords> -<AUni ws="en">bitterly jealous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to feeling very jealous?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5344875c-090a-4c12-8341-e0de4e68f71e" ownerguid="ad7cc381-1dc6-4fc2-94a4-acd5bf7a11da"> -<ExampleWords> -<AUni ws="en">certainly, definitely, be bound to, be sure to, be certain to, be assured of, be only a matter of time, be just a matter of time, cut and dried, you can bet your life, you can bet your bottom dollar, be a certainty, be a foregone conclusion, for sure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something will certainly happen?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="53451bc6-4247-494c-92a9-3b3d6f9be9e0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gauyi</AUni> -<AUni ws="qvm-x-acl">gauyi; gauye</AUni> -<AUni ws="qvm-x-akh">qawyi</AUni> -<AUni ws="qvm-x-akl">qawyi; qawye</AUni> -<AUni ws="qvm-x-ame">qawyi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qawyi</AUni> -<AUni ws="qvm-x-acl">*qawyi</AUni> -<AUni ws="qvm-x-akh">*qawyi</AUni> -<AUni ws="qvm-x-akl">*qawyi</AUni> -<AUni ws="qvm-x-ame">*qawyi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.165" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c12b26c3-834f-4858-92c1-e03bb25ee28e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qawyi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="12c0555e-a132-4fdd-af9b-04716a8c2093" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bac241f3-49d7-4692-a2d7-07fedab8433b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qawyi 
\entryTyp root 
\gENG stir 
\gSPN batir 
\e *qawyi 
\c V2 
\mp +FinalI 
\ach gauyi 
\akh qawyi 
\acl gauyi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gauye +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qawyi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qawye +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qawyi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="53451ca1-90c7-4c94-a620-597831689361" ownerguid="0eff3206-bbf3-45fd-bf57-dea82710c34d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="7b07cf96-177b-4d0a-badd-6d661e1fba77" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">swan</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7c35fe32-48be-41ce-8a75-5860a30b5e24" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="53488182-9707-4d7a-b789-9680cb98141e" ownerguid="3f3d5f08-d5ea-42f1-8ad7-4da9f23ff4ee"> -<Form> -<AUni ws="qvm-x-ach">injerta</AUni> -<AUni ws="qvm-x-acl">injerta</AUni> -<AUni ws="qvm-x-akh">injerta</AUni> -<AUni ws="qvm-x-akl">injerta</AUni> -<AUni ws="qvm-x-ame">injerta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="534ab1d3-1e3a-4bdd-a369-d1622fe4f569" ownerguid="a462dc51-7847-46f3-90ba-a2781972b9d0"> -<Form> -<AUni ws="qvm-x-ach">cargu; cargo</AUni> -<AUni ws="qvm-x-acl">cargu; cargu; cargo</AUni> -<AUni ws="qvm-x-akh">cargu; cargo</AUni> -<AUni ws="qvm-x-akl">cargu; cargu; cargo</AUni> -<AUni ws="qvm-x-ame">cargu; cargo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="5357d99a-3a06-4692-a3f7-761e7328e45a" ownerguid="a9c20a59-9f8d-4543-8717-0774299aedc4"> -<Form> -<AUni ws="qvm-x-ach">yca</AUni> -<AUni ws="qvm-x-acl">yca</AUni> -<AUni ws="qvm-x-akh">yko</AUni> -<AUni ws="qvm-x-akl">yko</AUni> -<AUni ws="qvm-x-ame">yko</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5358d151-f04a-4450-8091-e04305f3820f" ownerguid="7c234ccc-0dbe-42b0-a377-db99ebd2b51e"> -<ExampleWords> -<AUni ws="en">cage, birdcage, zoo, park, reserve, preserve</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What special places are reserved for animals?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="535a0085-7ecb-4bd4-a52f-e74ce8f4b21a" ownerguid="1e7743e1-9108-4f56-8450-7c908507d477"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="535d114a-ac15-4daf-bf8b-c4ae61d89fe1" ownerguid="7ddbd56f-e458-4a72-a9bc-9b7db6bde75a"> -<ExampleWords> -<AUni ws="en">royal, regal, imperial, kingly, presidential, majestic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something having to do with the ruler?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="535ecff8-9225-47c0-8066-07c5a828706f" ownerguid="ef9adcdb-0ca7-48d1-ba00-efb14a3dc879"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="535ffc87-3819-4bc0-85c5-5dcf5376bbd9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wichpus</AUni> -<AUni ws="qvm-x-acl">wichpus</AUni> -<AUni ws="qvm-x-akh">wichpus</AUni> -<AUni ws="qvm-x-akl">wichpus</AUni> -<AUni ws="qvm-x-ame">wichpus</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*witrpus</AUni> -<AUni ws="qvm-x-acl">*witrpus</AUni> -<AUni ws="qvm-x-akh">*witrpus</AUni> -<AUni ws="qvm-x-akl">*witrpus</AUni> -<AUni ws="qvm-x-ame">*witrpus</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.707" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6913dcd6-8f8d-4581-9ba4-feed8142b48f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*witrpus</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9abea1f0-6ada-4d61-861f-a9c44afc7195" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d5ecebfc-aee2-4882-bf09-e45d9bc4ecfc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *witrpus 
\entryTyp root 
\gENG a.bird 
\gSPN un.ave 
\e *witrpus 
\c N0 
\mp +FinalC 
\ach wichpus 
\akh wichpus 
\acl wichpus 
\akl wichpus 
\ame wichpus</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="53628a13-3087-4200-bb25-13995732318e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cla:si; cla:si</AUni> -<AUni ws="qvm-x-acl">cla:si; cla:si; cla:se</AUni> -<AUni ws="qvm-x-akh">cla:si; cla:si</AUni> -<AUni ws="qvm-x-akl">cla:si; cla:si; cla:se</AUni> -<AUni ws="qvm-x-ame">cla:si; cla:si</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+clase</AUni> -<AUni ws="qvm-x-acl">+clase</AUni> -<AUni ws="qvm-x-akh">+clase</AUni> -<AUni ws="qvm-x-akl">+clase</AUni> -<AUni ws="qvm-x-ame">+clase</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.132" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1291baa1-16c1-4490-abc0-6c6174382dd6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+clase</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3abc31f5-5e24-4548-aae7-df036c23df0d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d9a8c4f8-535b-45c8-ba3e-3ab6f9ed2771" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +clase 
\entryTyp root 
\gENG class 
\gSPN clase 
\e +clase 
\c N0 
\mp +FinalI 
\ach cla:si / _# 
\ach cla:si / ~_# 
\akh cla:si / _# 
\akh cla:si / ~_# 
\acl cla:si / _# 
\acl cla:si +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cla:se +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cla:si / _# 
\akl cla:si +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cla:se +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cla:si / _# 
\ame cla:si / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5362d476-ae4e-49db-99e7-0be7f9454d09" ownerguid="7f6c81fb-02a4-415f-a363-fb11cc6b9254"> -<ExampleWords> -<AUni ws="en">angel, angelic being, cherub, seraph, saint</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What types of good supernatural beings are there?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="53632b8c-932d-436b-b378-9b58d834bcde" ownerguid="59a533ee-6a5c-439e-8be5-28a4f5e55172"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="53636d8a-0c27-4b70-af40-b6311cabcd2d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wiru</AUni> -<AUni ws="qvm-x-acl">wiru; wiro</AUni> -<AUni ws="qvm-x-akh">wiru</AUni> -<AUni ws="qvm-x-akl">wiru; wiro</AUni> -<AUni ws="qvm-x-ame">wiru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wiru.v</AUni> -<AUni ws="qvm-x-acl">*wiru.v</AUni> -<AUni ws="qvm-x-akh">*wiru.v</AUni> -<AUni ws="qvm-x-akl">*wiru.v</AUni> -<AUni ws="qvm-x-ame">*wiru.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.678" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="780ba2b3-a237-4710-8e5b-946ce246af25" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wiru.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fc779bb8-3216-4451-bf8f-f5ef08fff6d1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a3477d7b-f797-4cdc-940c-fe07081f6b33" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wiru.v 
\entryTyp root 
\gENG beat 
\gSPN golpear 
\e *wiru.v 
\c V2 
\ach wiru 
\akh wiru 
\acl wiru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wiro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wiru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wiro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wiru</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="53670ecd-4986-4ed9-9a5a-bb29133e2512" ownerguid="36bf7e87-332f-45d2-a3fd-0c7dd269dad5"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="5369a0ae-66b5-4b1d-bdb6-4db40c7364a7" ownerguid="6ae4a4de-7aeb-4325-9209-7187c858428e"> -<Form> -<AUni ws="qvm-x-ach">milwa</AUni> -<AUni ws="qvm-x-acl">milwa</AUni> -<AUni ws="qvm-x-akh">milwa</AUni> -<AUni ws="qvm-x-akl">milwa</AUni> -<AUni ws="qvm-x-ame">milwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="536a2d3e-2303-43bc-bf53-379131eb5730" ownerguid="d01f1c51-522e-4b35-81b3-00577dbfa3bd"> -<Abbreviation> -<AUni ws="en">8.3.3.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.609" /> -<DateModified val="2022-9-23 16:55:8.609" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is colored.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Colors of the spectrum</AUni> -</Name> -<Questions> -<objsur guid="147b0673-64a8-47a7-bb2d-b7df87712fdf" t="o" /> -<objsur guid="12133373-a888-41dd-b057-e32bf9fb09cb" t="o" /> -<objsur guid="ca24321d-7d08-4a88-9a97-398f38f7e0c0" t="o" /> -<objsur guid="8d81d959-5e3b-423b-ad34-b1a775455055" t="o" /> -<objsur guid="036eeabc-8e2d-45ba-9bc1-dcc75ea95c0d" t="o" /> -<objsur guid="3def8a1b-35b0-4492-ad28-685070414ba5" t="o" /> -<objsur guid="13112337-eb61-4746-a7f8-f5512afb5a81" t="o" /> -<objsur guid="d07a546e-f42c-4856-86b7-9b2079a896f8" t="o" /> -<objsur guid="9889ba37-adbf-4b95-9ae1-cf694a41da87" t="o" /> -<objsur guid="7ade0dd1-e624-4137-8503-1cd7761db2a0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="53712600-404b-40c0-9652-040c45c61b60" ownerguid="14e9339a-47f0-480e-84c9-14ada79da311"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="537143e9-2faa-42f0-ae71-4515afe9f113" ownerguid="23bc906d-c15a-4368-b0ca-7443d5e37b83"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">His father <made> John hoe the field.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">made, cause</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that someone caused something to happen?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="53734e43-7973-4578-84f8-8489d4387b9a" ownerguid="9c3d9cd4-92e3-4e3a-a127-78ac009b2881"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dance</AUni> -<AUni ws="es">danzar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4741e2db-27c1-4132-9b52-d8fc03eb9215" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="53755733-450d-4202-bc28-6d6345a8aa75" ownerguid="5b5bcd42-09bb-4c2f-a2da-569cfa69b6ac"> -<ExampleWords> -<AUni ws="en">be engrossed in, be wrapped up in, be absorbed in, be immersed in, immerse yourself in, preoccupied</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to paying too much attention to something?</AUni> -</Question> -</rt> -<rt class="StTxtPara" guid="537679d0-642e-48dc-8cd3-04e1c19c3470" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">rikapäkatsikun</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="fd603b54-d0c1-44bb-b0bf-92a4442545bd" t="o" /> -</Segments> -</rt> -<rt class="CmDomainQ" guid="5376c38a-ecbf-4a1e-9763-83f837c4cc23" ownerguid="cce98603-ff8f-4213-945a-bd6746716139"> -<ExampleWords> -<AUni ws="en">(heaven and) earth, earth (and sky), (on the) ground</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What is the earth called in distinction to heaven or the sky?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="537700bd-09cb-4c0c-85f7-2f433e1addbf" ownerguid="bea703ce-56bf-4c6e-84f7-5fecfe7553c9" /> -<rt class="MoStemMsa" guid="53770578-b3c5-47cc-9e9f-152490d2d8e5" ownerguid="6d16734e-2d7e-4d98-93bd-ee2fac9eaddb"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="537a206d-d035-48ee-acc4-bf164d641f42" ownerguid="33c5a3fe-b5d2-4689-bbdc-f838fbff1c10"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="537b2e3f-4ab8-4e19-ac8b-fbcf42ca8b75"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">porsyaca:su</AUni> -<AUni ws="qvm-x-acl">porsyaca:su; porsyaca:su; porsyaca:so</AUni> -<AUni ws="qvm-x-akh">porsyaca:su</AUni> -<AUni ws="qvm-x-akl">porsyaca:su; porsyaca:su; porsyaca:so</AUni> -<AUni ws="qvm-x-ame">porsyaca:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+por.si.acaso</AUni> -<AUni ws="qvm-x-acl">+por.si.acaso</AUni> -<AUni ws="qvm-x-akh">+por.si.acaso</AUni> -<AUni ws="qvm-x-akl">+por.si.acaso</AUni> -<AUni ws="qvm-x-ame">+por.si.acaso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.901" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b0e0a7b4-5b52-463f-96d2-fdc71dfcfc0a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+por.si.acaso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5ce7968a-f3ce-4bc9-9243-2df975f560ba" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="98799cbc-340e-4d7a-ab33-7f935ecd231a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +por.si.acaso 
\entryTyp root 
\gENG just.in.case 
\gSPN por.si.acaso 
\e +por.si.acaso 
\c N0 
\ach porsyaca:su 
\akh porsyaca:su 
\acl porsyaca:su / _# 
\acl porsyaca:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl porsyaca:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl porsyaca:su / _# 
\akl porsyaca:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl porsyaca:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame porsyaca:su</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="537dd732-414e-4265-9d6c-f241c6006415"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chacu</AUni> -<AUni ws="qvm-x-acl">chacu; chaco</AUni> -<AUni ws="qvm-x-akh">chaku</AUni> -<AUni ws="qvm-x-akl">chaku; chako</AUni> -<AUni ws="qvm-x-ame">chaku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*traku</AUni> -<AUni ws="qvm-x-acl">*traku</AUni> -<AUni ws="qvm-x-akh">*traku</AUni> -<AUni ws="qvm-x-akl">*traku</AUni> -<AUni ws="qvm-x-ame">*traku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.48" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="adc1a826-ccca-4732-8833-c9d1ce999d2d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*traku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8ab92a5e-56c7-4522-a6ee-6651dfd5ca7d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0097785e-d571-4ade-976f-1d512c3312c6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *traku 
\entryTyp root 
\gENG break 
\gSPN cuspiar 
\e *traku 
\c V2 
\ach chacu 
\akh chaku 
\acl chacu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl chaco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chaku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chako +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chaku</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="537fbe83-1c27-4c0c-921f-3e9c6fa03515" ownerguid="fba27833-d6f1-4c36-ac39-28902b29261b"> -<ExampleWords> -<AUni ws="en">be two of a kind, have a lot in common, tantamount</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe two things that are very similar?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="537fc51c-7e7e-4a5a-819e-57c0b0e69887" ownerguid="2e5acfd2-3009-4496-9cc2-58d2a0088994"> -<ExampleWords> -<AUni ws="en">hair</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to hair?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5381a1bc-5f38-462f-8404-59aa5e3799e2" ownerguid="045dfc91-440c-4f61-9c87-f75c343c718e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9a4d4dcc-3f76-4efa-8275-8265349c47b4" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="47c48b8a-efef-43e2-a77f-2741f332e3d2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="5385e4cc-3a7f-40d6-9f4e-bc9d439280f2" ownerguid="cc61662d-05a0-436f-acce-46f55f62c75f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fertilize</AUni> -<AUni ws="es">abonar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4f71bb08-f5c0-47c2-8b71-442babc5f03a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5386368c-d3e5-4ff4-88b0-f27c801a9d1d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sueñu</AUni> -<AUni ws="qvm-x-acl">sueñu; sueño</AUni> -<AUni ws="qvm-x-akh">sueñu</AUni> -<AUni ws="qvm-x-akl">sueñu; sueño</AUni> -<AUni ws="qvm-x-ame">sueñu</AUni> -</Custom> -<AlternateForms> -<objsur guid="7664ede1-8087-48d9-aeca-814c38419ff7" t="o" /> -</AlternateForms> -<CitationForm> -<AUni ws="qvm-x-ach">+soñar</AUni> -<AUni ws="qvm-x-acl">+soñar</AUni> -<AUni ws="qvm-x-akh">+soñar</AUni> -<AUni ws="qvm-x-akl">+soñar</AUni> -<AUni ws="qvm-x-ame">+soñar</AUni> -</CitationForm> -<DateCreated val="2022-09-23 18:26:23.723" /> -<DateModified val="2022-12-14 16:24:47.491" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fdea127e-b11a-40e0-8b9e-86c87a2e7bc2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+soñar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4fbf9207-4073-4d41-b19a-5795c43bd316" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2806a25d-0f9d-4c0b-88e1-172d3d586e82" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +soñar 
\entryTyp root 
\gENG dream 
\gSPN soñar 
\e +soñar 
\c V1 
\ach sueñu 
\akh sueñu 
\acl sueñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl sueño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sueñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sueño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sueñu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="53892da7-af43-4a89-b7ac-d49d9c546892" ownerguid="9b1aa350-0d18-4b46-8cd7-f3cc4fe6b661"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 9.13 Mana tantyacog cayga chismösa, upa y togshun tsaquishga warminogmi caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="538a4c20-01d7-40b9-b462-ae279ff3dc27" ownerguid="d01f1c51-522e-4b35-81b3-00577dbfa3bd"> -<Abbreviation> -<AUni ws="en">8.3.3.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.609" /> -<DateModified val="2022-9-23 16:55:8.609" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is gray.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Gray</AUni> -</Name> -<Questions> -<objsur guid="228d3a02-a554-45bc-9067-92434f3a17a3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="538a9fbc-0a9e-48f6-aa53-2e847a591a0f" ownerguid="53ba3b61-4f4e-4749-8a7f-0d2b327a113d"> -<ExampleWords> -<AUni ws="en">plan, make plans, devise a plan, come up with a plan, contrive, mastermind</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to making plans?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="538efc4d-d6fa-417b-a836-c9ccc450db76" ownerguid="63c69d11-1101-4870-aeb8-43ee364381b0"> -<ExampleWords> -<AUni ws="en">peal (of thunder), clap, rumble, boom, crack of lightning, roll</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe the sound thunder makes?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="538f2080-f918-43ad-9f32-add0d068d6e4" ownerguid="b0e3486c-bd3d-4b5c-be9a-40cd2c0ce2a1"> -<Question> -<AUni ws="en">(3) What techniques are used?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="539051a2-2e15-4ef7-8854-3c07d83ab898"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">primaria</AUni> -<AUni ws="qvm-x-acl">primaria</AUni> -<AUni ws="qvm-x-akh">primaria</AUni> -<AUni ws="qvm-x-akl">primaria</AUni> -<AUni ws="qvm-x-ame">primaria</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+primaria</AUni> -<AUni ws="qvm-x-acl">+primaria</AUni> -<AUni ws="qvm-x-akh">+primaria</AUni> -<AUni ws="qvm-x-akl">+primaria</AUni> -<AUni ws="qvm-x-ame">+primaria</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.921" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="baf680b6-cfd5-49ab-8104-240aa42a5a99" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+primaria</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cd5e757c-915e-49f4-8ad6-6481f7fea10d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7f54c57b-70e4-4dcf-bc50-c80501cc9d3a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +primaria 
\entryTyp root 
\gENG primary.school 
\gSPN primaria 
\e +primaria 
\c N0 
\ach primaria 
\akh primaria 
\acl primaria 
\akl primaria 
\ame primaria</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="5390cf06-ee70-4098-bffd-b7a6b3446bbd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">contratista</AUni> -<AUni ws="qvm-x-acl">contratista</AUni> -<AUni ws="qvm-x-akh">contratista</AUni> -<AUni ws="qvm-x-akl">contratista</AUni> -<AUni ws="qvm-x-ame">contratista</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+contratista</AUni> -<AUni ws="qvm-x-acl">+contratista</AUni> -<AUni ws="qvm-x-akh">+contratista</AUni> -<AUni ws="qvm-x-akl">+contratista</AUni> -<AUni ws="qvm-x-ame">+contratista</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.180" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e6b85745-3cb4-41de-9555-22420f808b07" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+contratista</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="549a31d6-f7fb-4f2a-9c85-6efa70fc07df" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ced82449-19d7-49d1-a0d8-05762f22e014" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +contratista 
\entryTyp root 
\gENG 
\gSPN 
\e +contratista 
\c N0 
\ach contratista 
\akh contratista 
\acl contratista 
\akl contratista 
\ame contratista 
\i 2ki 12.11 Nircurnami templuta altsatsinanpag incargädu runacunata entregargan 
\nd Tayta Diospa
\nd* templunta altsag carpintërucunata, contratistacunata,</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="539332b1-6bb1-484b-b81b-e7c0e07dfa51" ownerguid="980de7db-380d-4612-a4bc-761a35ec3953"> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -</rt> -<rt class="WfiAnalysis" guid="53939045-85a6-421c-a7a9-ac39f48bb604" ownerguid="d011f655-b788-4d50-be95-f22f645e9459"> -<Category> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</Category> -<Evaluations> -<objsur guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="5dbd8576-adc0-4593-9f39-f8f6db159c8d" t="o" /> -<objsur guid="9ec102c7-15e4-4695-9132-0e05ba68ce9e" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="53982e68-e61c-489c-b137-1ca81194e344" ownerguid="4d798f5d-c10b-49ec-82fa-1669b68b2d93"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="539e4c13-389e-4a99-8b99-689b17d59a65" ownerguid="a362ede0-5c25-4cc2-8c4d-c5003740c08e" /> -<rt class="MoStemMsa" guid="539e7cc5-547f-4939-8298-0e7fc093a3b5" ownerguid="773e0590-9933-401b-af8e-31c74f4e9de0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="53a2d01b-5485-4200-9c71-cf835191195c" ownerguid="cf4d4d84-b7b7-4f0b-93e1-8484e851d6eb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tassle</AUni> -<AUni ws="es">espigar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="eaa91e8e-4949-49b0-b781-09414caa52b4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="53a2f596-689e-451f-9b8b-9fef906a9540" ownerguid="c103d339-24f2-45c6-8539-d3c445e15c49"> -<ExampleWords> -<AUni ws="en">you, you there, hey you, hello, excuse me, attention, attention please, may I have your attention please, pay attention, listen up everybody, now hear this, and now for an important announcement, and now for a word from our sponsor, just a moment, wait a minute, lend me your ears, look here, ahem</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to get someone's attention?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="53a66030-9d75-43a9-987f-32528946f07f" ownerguid="68dcc8eb-e314-4701-9118-22f59ba41e40"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="53a66441-7c71-46d0-9259-240e50a152f8" ownerguid="9b6d179d-fbb7-498a-91ce-60ade91c49ee"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="75544e4f-7e73-43f2-90b4-292435388bd7" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">second</AUni> -<AUni ws="es">segundo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8a8858d2-3cb9-4949-842f-680af1cf45ea" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="53aafbfa-eef3-4505-8998-af6bbefe8f2c" ownerguid="cf337287-c9fa-43d2-93c4-284f45e262c0"> -<ExampleWords> -<AUni ws="en">spread, epidemic, outbreak, plague</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a disease spreading to other people?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="53ab2edd-e95e-4340-8914-12327e09dbdc" ownerguid="f8ac9b37-12df-48d6-9455-239166f4dc96"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="53b0f108-82b4-4902-8f25-df2dd1290bcf" ownerguid="744d1402-05f5-4491-9c15-a5af03595edb"> -<ExampleWords> -<AUni ws="en">calculating, scheming</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe someone who plans to do something bad?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="53b28d2d-001b-42ac-9e83-0c371ff94f45"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tuma</AUni> -<AUni ws="qvm-x-acl">tuma</AUni> -<AUni ws="qvm-x-akh">tuma</AUni> -<AUni ws="qvm-x-akl">tuma</AUni> -<AUni ws="qvm-x-ame">tuma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tuma.n</AUni> -<AUni ws="qvm-x-acl">*tuma.n</AUni> -<AUni ws="qvm-x-akh">*tuma.n</AUni> -<AUni ws="qvm-x-akl">*tuma.n</AUni> -<AUni ws="qvm-x-ame">*tuma.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.987" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="36755130-9861-4b5f-a036-c6007f2154f9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tuma.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8392b224-f488-4da3-9055-b03b51d9bf17" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="31bd7d5f-e96b-4810-9e4f-d468e2602025" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tuma.n 
\entryTyp root 
\gENG turn 
\gSPN voltear 
\e *tuma.n 
\c N0 
\ach tuma 
\akh tuma 
\acl tuma 
\akl tuma 
\ame tuma 
\mcc *tuma.n / ~_ YET1 
\mcc *tuma.n / ~_ ADV2</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="53b976d9-3142-483f-a72b-e21f5fdc07f8" ownerguid="11b0dd4c-ae64-45a3-8210-dc7ae6f420b4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="53ba3b61-4f4e-4749-8a7f-0d2b327a113d" ownerguid="d8366daf-ae1d-4b2c-a447-478c73580639"> -<Abbreviation> -<AUni ws="en">6.1.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.350" /> -<DateModified val="2022-9-23 16:55:8.350" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to planning.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Plan</AUni> -</Name> -<OcmCodes> -<Uni>121 Theoretical Orientation in Research and Its Results</Uni> -</OcmCodes> -<Questions> -<objsur guid="538a9fbc-0a9e-48f6-aa53-2e847a591a0f" t="o" /> -<objsur guid="bc8c6701-f48f-4ed7-9f45-b73027c226ff" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="af4ac058-d4b3-4c7a-ade8-6af762d0486d" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="da203891-90a2-48f0-955a-8a80b6c62af9" t="o" /> -<objsur guid="6fceec81-1967-4fe5-81f3-86bcaf3f1c2f" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="53bbaddd-d784-4946-a91f-7da713958ec0" ownerguid="6b1eeebd-2433-4f39-9e67-7ac4dd0fe20a"> -<ExampleWords> -<AUni ws="en">direction, heading, point of the compass, degree, bearing, cardinal points</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to a direction of the compass?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="53bda18c-5af4-47f7-a786-2d13750f8ddc" ownerguid="6ef0a089-c4b1-455d-af2f-1006ca10d997"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="53bef0b4-c16f-427f-9ae1-b3113d19eefe" ownerguid="ba04ffb0-cafe-4177-a9e4-d13805974839"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="53c0279a-a257-4427-9252-7b349db29cd1" ownerguid="a8a9b7c4-9c60-4a67-a3d6-8aa6d18d86c8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pick</AUni> -<AUni ws="es">coger</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0c1429f9-cdac-4b0d-b0ad-44721c7d3923" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="53c062eb-393b-4b9d-bfe7-62421dbed35a" ownerguid="7bca1201-31f8-4f65-8da9-af0eff36b388"> -<ExampleWords> -<AUni ws="en">circulate, float, go around, be all over town, get spread</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What do rumors do?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="53c467e0-e038-46ea-8d00-ada6880c7247" ownerguid="995751ef-d71b-429c-a4ee-032f5b309bd7"> -<ExampleWords> -<AUni ws="en">foreigner, stranger, enemy, foe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a person who does not belong to your group?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="53c92514-fda1-4ed1-ab12-26c02259fe9f" ownerguid="c9da4369-8c6f-47c3-bab4-d59d0de8d022"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -</rt> -<rt class="LexEntry" guid="53cc0f4a-dba1-4fd5-8feb-dad7bb4abfd7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">china</AUni> -<AUni ws="qvm-x-acl">china</AUni> -<AUni ws="qvm-x-akh">china</AUni> -<AUni ws="qvm-x-akl">china</AUni> -<AUni ws="qvm-x-ame">china</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*china</AUni> -<AUni ws="qvm-x-acl">*china</AUni> -<AUni ws="qvm-x-akh">*china</AUni> -<AUni ws="qvm-x-akl">*china</AUni> -<AUni ws="qvm-x-ame">*china</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.313" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5c358db3-f56a-4285-8ef1-22fb702fcc31" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*china</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eb8573b6-d21b-46b8-bf9a-ce35796021cd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a89b3635-a6c1-4e9f-9d0c-d0cd9de67af0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *china 
\entryTyp root 
\gENG female 
\gSPN hembra 
\e *china 
\c N0 
\ach china 
\akh china 
\acl china 
\akl china 
\ame china</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="53cc3a9b-a692-45e7-82d0-8789d209e889"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">desvalora</AUni> -<AUni ws="qvm-x-acl">desvalora</AUni> -<AUni ws="qvm-x-akh">desvalora</AUni> -<AUni ws="qvm-x-akl">desvalora</AUni> -<AUni ws="qvm-x-ame">desvalora</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+desvalorar</AUni> -<AUni ws="qvm-x-acl">+desvalorar</AUni> -<AUni ws="qvm-x-akh">+desvalorar</AUni> -<AUni ws="qvm-x-akl">+desvalorar</AUni> -<AUni ws="qvm-x-ame">+desvalorar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.396" /> -<DateModified val="2022-10-10 21:18:47.218" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="605c81ff-ae26-48f5-a966-eac1d9620d80" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+desvalorar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="12ab92c0-dde0-430b-a848-c8ccc660a7fd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="476dcb11-e058-4b1c-8939-a8c711769f4e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +desvalorar 
\entryTyp root 
\gENG 
\gSPN 
\e +desvalorar 
\c V1 
\ach desvalora 
\akh desvalora 
\acl desvalora 
\akl desvalora 
\ame desvalora 
\i Num 14.36,37 Runacunata desvaloratsishganpitami Moisés cachashgan chunca ricapacogcunata pesti gueshyawan Jehová wanutsergan.</Run> -</AStr> -</Custom> -</rt> -<rt class="PhPhoneme" guid="53cd56ab-c7c3-4678-a0ff-115a4828212c" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="8dbb310e-7f8e-4bb6-8568-025c4fb2f742" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">lengthened mid front unrounded vowel</Run> -</AStr> -</Description> -<Name> -<AUni ws="qvm-x-ach">ë</AUni> -<AUni ws="qvm-x-acl">ë</AUni> -<AUni ws="qvm-x-akh">ë</AUni> -<AUni ws="qvm-x-akl">ë</AUni> -<AUni ws="qvm-x-ame">ee</AUni> -</Name> -</rt> -<rt class="LexEntry" guid="53ce5d16-865f-4de5-bae1-92badd1c9883"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa:la</AUni> -<AUni ws="qvm-x-acl">pa:la</AUni> -<AUni ws="qvm-x-akh">pa:la</AUni> -<AUni ws="qvm-x-akl">pa:la</AUni> -<AUni ws="qvm-x-ame">pa:la</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pala</AUni> -<AUni ws="qvm-x-acl">+pala</AUni> -<AUni ws="qvm-x-akh">+pala</AUni> -<AUni ws="qvm-x-akl">+pala</AUni> -<AUni ws="qvm-x-ame">+pala</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.658" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5034773d-6b6a-4a54-9f9a-ada2caf74538" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pala</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="44e721b2-a967-46b4-a7e7-b05ef852b3d9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="96fd0e4c-e683-4ad7-b558-a1f4c4481442" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pala 
\entryTyp root 
\gENG shovel 
\gSPN pala 
\e +pala 
\c N0 
\ach pa:la 
\akh pa:la 
\acl pa:la 
\akl pa:la 
\ame pa:la 
\i 2KI 25.14 Tsaynoglami apacärergan broncipita rurashgan tenäzacunata, pälancunata, lipta jorgucunata y plätu maylacunantapis.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="53cf2b34-068c-41ab-a53f-e1724a133ce2" ownerguid="0ac5e5f9-e7fe-4d37-a631-eab1ceb1f8ae"> -<ExampleWords> -<AUni ws="en">top, summit, peak, pinnacle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the top of a mountain?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="53d34f16-2f94-4afa-9530-7ac75e05b8d4" ownerguid="a4958dd9-03cc-4863-ab76-cd0682060cb0"> -<Abbreviation> -<AUni ws="en">3.5.1.7.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.164" /> -<DateModified val="2022-9-23 16:55:8.164" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to flattering someone--saying something nice to someone but not meaning it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33L' Flatter</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Flatter</AUni> -</Name> -<Questions> -<objsur guid="ed1213f9-d75c-4dd6-808c-de1b1bf1cbb3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="53d39c6f-508a-463b-82b8-ffd8969bdab4" ownerguid="a722be4c-b8d6-4e26-8f1b-82eef46249e1"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="53d676a1-044a-4d6b-90b0-c2c3689fee79" ownerguid="b43fae8e-6b19-42ed-98cd-d363174b9cf8"> -<ExampleWords> -<AUni ws="en">how small</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words indicate how small something is?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="53df5164-b0d0-462e-8f9c-66584976040e" ownerguid="fbeda0cb-8d80-4fee-8f58-d54590880e8e" /> -<rt class="MoStemAllomorph" guid="53e21bd3-c644-4461-8dd6-77ae2e34707f" ownerguid="636cd707-7999-474c-a06f-c07e118c34fb"> -<Form> -<AUni ws="qvm-x-ach">shanglu</AUni> -<AUni ws="qvm-x-acl">shanglu; shanglu; shanglo</AUni> -<AUni ws="qvm-x-akh">shanqlu</AUni> -<AUni ws="qvm-x-akl">shanqlu; shanqlu; shanqlo</AUni> -<AUni ws="qvm-x-ame">shanqlu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="53e2b8c9-a801-4a16-bd32-2c6d40532c08" ownerguid="c85162f8-27f3-4a31-a25e-68333e91ee30"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">dejar.descubierto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="262b992b-e981-4368-aae1-f1e5e7df4254" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="53e7c5d2-c1ae-4c60-872c-763552a56695" ownerguid="9886f609-95e4-4b61-8d4b-07bf0eb003de"> -<Form> -<AUni ws="qvm-x-ach">llënu</AUni> -<AUni ws="qvm-x-acl">llënu; llënu; llëno</AUni> -<AUni ws="qvm-x-akh">llënu</AUni> -<AUni ws="qvm-x-akl">llënu; llënu; llëno</AUni> -<AUni ws="qvm-x-ame">llënu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="53ec4f35-8568-4254-bfb6-fdb603b41f85" ownerguid="b2fa4109-1165-4c1f-9613-c5b2d349d2d4"> -<ExampleWords> -<AUni ws="en">loquacious, verbose, wordy, run on, long-winded, compendious, interminable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to speaking for a long time?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="53fa0099-c41f-469a-9b32-93de88b13537" ownerguid="73affb6b-d7bb-45f5-b1b2-85227505a490"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="53fcb1f0-e897-47ce-a162-b4ab9ef148d5" ownerguid="c8eb728c-f0ac-4793-b4f4-bbaa55de99f2"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Num 5.12 <<Israel runacunata caynog ninqui: Avëcis cäsu canman pï warmipis runanta ganratar jarucushgan.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="53ffb994-4cfd-4e20-a739-f972a870d3ac" ownerguid="9d8fbadd-6532-4d95-9f36-092fa56d5c57"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">laqui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">laqui; laque</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">laki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">laki; lake</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">laki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="0c93cdb6-c5ab-4d97-a016-a676b3b26598" t="r" /> -</Morph> -<Msa> -<objsur guid="21ffb591-045f-4ca8-909c-020fb39b0223" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="5401ed29-d610-4d08-81a6-959a8abf392b" ownerguid="e5699be9-4b51-4496-9ac1-1f275082d17e"> -<Form> -<AUni ws="qvm-x-ach">pulsu; pulso</AUni> -<AUni ws="qvm-x-acl">pulsu; pulsu; pulso</AUni> -<AUni ws="qvm-x-akh">pulsu; pulso</AUni> -<AUni ws="qvm-x-akl">pulsu; pulsu; pulso</AUni> -<AUni ws="qvm-x-ame">pulsu; pulso</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="54046f23-352c-4207-b666-0febc4c398dd" ownerguid="cb83441f-eb47-4fba-84b7-3408fb808b98"> -<Form> -<AUni ws="qvm-x-ach">botica</AUni> -<AUni ws="qvm-x-acl">botica</AUni> -<AUni ws="qvm-x-akh">botica</AUni> -<AUni ws="qvm-x-akl">botica</AUni> -<AUni ws="qvm-x-ame">botica</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="5405f561-9b73-4f01-b6ad-7a915540e860" ownerguid="4390e993-552f-417f-a6ab-1d7ee15bb530"> -<Form> -<AUni ws="qvm-x-ach">gowa</AUni> -<AUni ws="qvm-x-acl">gowa</AUni> -<AUni ws="qvm-x-akh">qowa</AUni> -<AUni ws="qvm-x-akl">qowa</AUni> -<AUni ws="qvm-x-ame">quwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="54094256-ddf9-40c4-ae5e-edcf0e42532e" ownerguid="b794219a-c4f6-4d05-a8c2-17ff346976e3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="Segment" guid="540c868b-ee7f-487b-8148-da08d4c3ebf6" ownerguid="72716f79-42bb-44a0-bd13-f9daba74de2e"> -<Analyses> -<objsur guid="bad07400-ad11-4f98-9a6d-83aeae23913f" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexEntry" guid="540fa096-41dc-417e-aad1-b3e85766ba61"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tamshu</AUni> -<AUni ws="qvm-x-acl">tamshu; tamsho</AUni> -<AUni ws="qvm-x-akh">tamshu</AUni> -<AUni ws="qvm-x-akl">tamshu; tamsho</AUni> -<AUni ws="qvm-x-ame">tamshu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tamshu</AUni> -<AUni ws="qvm-x-acl">*tamshu</AUni> -<AUni ws="qvm-x-akh">*tamshu</AUni> -<AUni ws="qvm-x-akl">*tamshu</AUni> -<AUni ws="qvm-x-ame">*tamshu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.794" /> -<DateModified val="2022-10-10 21:19:47.694" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="af54834b-a7da-4190-ba74-cb82057ed59f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tamshu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1f999640-8527-4462-8faa-7d160b9cf0c4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b4548dc3-b24a-49c4-8405-5e19ac464039" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tamshu 
\entryTyp root 
\gENG crush 
\gSPN 
\e *tamshu 
\c V1 
\ach tamshu 
\akh tamshu 
\acl tamshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tamsho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tamshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tamsho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tamshu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="5410af6e-6070-4e79-916e-b977b9ec9fff" ownerguid="17707401-b191-4d55-b924-9001ed074b53"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="5412be1d-71bb-421a-9df8-8f24d4220064" ownerguid="65aae10b-bc67-4198-9942-e150e7f50f7c"> -<Form> -<AUni ws="qvm-x-ach">piëza</AUni> -<AUni ws="qvm-x-acl">piëza</AUni> -<AUni ws="qvm-x-akh">piëza</AUni> -<AUni ws="qvm-x-akl">piëza</AUni> -<AUni ws="qvm-x-ame">piëza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="54153363-ba65-4136-ac54-f489c3976296"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">favore:ci</AUni> -<AUni ws="qvm-x-acl">favore:ci; favore:ce</AUni> -<AUni ws="qvm-x-akh">favore:ci</AUni> -<AUni ws="qvm-x-akl">favore:ci; favore:ce</AUni> -<AUni ws="qvm-x-ame">favore:ci</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+favorecer</AUni> -<AUni ws="qvm-x-acl">+favorecer</AUni> -<AUni ws="qvm-x-akh">+favorecer</AUni> -<AUni ws="qvm-x-akl">+favorecer</AUni> -<AUni ws="qvm-x-ame">+favorecer</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.538" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="219198db-1c89-4b7a-9b69-ee26e9568638" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+favorecer</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d358061d-4091-422f-bae6-0b41fc9ee2e8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c90421d6-0323-4820-833e-d4b7a8eec9b2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +favorecer 
\entryTyp root 
\gENG to.favor 
\gSPN favorecer 
\e +favorecer 
\c V2 
\mp +FinalI 
\ach favore:ci 
\akh favore:ci 
\acl favore:ci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl favore:ce +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl favore:ci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl favore:ce +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame favore:ci</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="541594c4-0601-410d-9a12-bdedbde119e2" ownerguid="ddea0833-7497-489f-9768-111b39f8a72b"> -<Form> -<AUni ws="qvm-x-ach">shagu</AUni> -<AUni ws="qvm-x-acl">shagu; shago</AUni> -<AUni ws="qvm-x-akh">shaqu</AUni> -<AUni ws="qvm-x-akl">shaqu; shaqo</AUni> -<AUni ws="qvm-x-ame">shaqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="54186e6d-b7f5-4449-b3e5-5cf4069670cd"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">nirkushpan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="5418e6f2-01a0-45d9-9fb1-35e9fac4aa33" ownerguid="b2ba130f-bc3c-4d19-b108-08ff1bc8e9ac"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="541be4a6-6aa0-4d3d-863d-102900d395d0" ownerguid="0079d262-e528-4a83-8208-007fa31976f7"> -<Form> -<AUni ws="qvm-x-ach">templu; templo</AUni> -<AUni ws="qvm-x-acl">templu; templu; templo</AUni> -<AUni ws="qvm-x-akh">templu; templo</AUni> -<AUni ws="qvm-x-akl">templu; templu; templo</AUni> -<AUni ws="qvm-x-ame">templu; templo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="541c9205-a7be-4795-82ef-0f0cb0375dc6" ownerguid="1985220b-1adf-45db-b8af-6d7bf464d86e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="541d0edc-cc5b-44bb-a61c-217ffc4e589a" ownerguid="d0658d37-b5fc-4aed-b804-136efb6886cf"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="541dfa10-bf97-4713-a534-9cbcc7f66bc9" ownerguid="df9ee372-e92e-4f73-aac5-d36908497698"> -<Abbreviation> -<AUni ws="en">3.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.103" /> -<DateModified val="2022-9-23 16:55:8.103" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for situations in which a question or issues are being debated, more than one option is possible, and a person chooses to think in one way about the question or issue.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>31A Have an Opinion, Hold a View; 31 Hold a View, Believe, Trust; 31D Acknowledge; 31G Accept as True; 31H Change an Opinion Concerning Truth</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Opinion</AUni> -</Name> -<Questions> -<objsur guid="d7593829-9385-46ec-a907-376948c85774" t="o" /> -<objsur guid="ce57e345-29d6-44f3-9f2d-20bba01ef541" t="o" /> -<objsur guid="11aec715-bc0e-4620-a71f-5f0563827a79" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c0f4715e-55c9-4379-ab6f-ad561a5e7151" t="o" /> -<objsur guid="0f46cb61-7bb5-410d-abc5-4a75dc80a24f" t="o" /> -<objsur guid="6fc8ae4d-9fad-462e-9ea0-c613c3c1cb5e" t="o" /> -<objsur guid="fd9b8618-1f62-419b-85c3-365a12e85523" t="o" /> -<objsur guid="b8e633f7-ca67-40cb-84e7-8b42887d161b" t="o" /> -<objsur guid="81e366fa-450b-42ad-b23f-7074dc7823e2" t="o" /> -<objsur guid="3aab9c42-b696-4440-8e28-8380f5d25199" t="o" /> -<objsur guid="6c6259f0-eca6-4a30-8662-eedbaf293527" t="o" /> -<objsur guid="a3f1d702-8ca1-457a-a569-eb6fdf696bbe" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="541e8471-d944-4f8d-86d4-176b78b0bdc4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">y</AUni> -<AUni ws="qvm-x-acl">y</AUni> -<AUni ws="qvm-x-akh">y</AUni> -<AUni ws="qvm-x-akl">y</AUni> -<AUni ws="qvm-x-ame">y</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+y</AUni> -<AUni ws="qvm-x-acl">+y</AUni> -<AUni ws="qvm-x-akh">+y</AUni> -<AUni ws="qvm-x-akl">+y</AUni> -<AUni ws="qvm-x-ame">+y</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.719" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2680989b-b43a-4576-b2df-38129aa3cdee" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+y</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cef713b0-c87a-4118-be17-50cd0e304659" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d694458a-a59b-4ed7-a237-68d44f896647" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +y 
\entryTyp root 
\gENG and 
\gSPN y 
\e +y 
\c NOSUFF 
\ach y 
\akh y 
\acl y 
\akl y 
\ame y</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="541f332b-82d8-4579-acff-e9d7fb8cadb8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chacha</AUni> -<AUni ws="qvm-x-acl">chacha</AUni> -<AUni ws="qvm-x-akh">chacha</AUni> -<AUni ws="qvm-x-akl">chacha</AUni> -<AUni ws="qvm-x-ame">chacha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tratra</AUni> -<AUni ws="qvm-x-acl">*tratra</AUni> -<AUni ws="qvm-x-akh">*tratra</AUni> -<AUni ws="qvm-x-akl">*tratra</AUni> -<AUni ws="qvm-x-ame">*tratra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.78" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fe9b6ae8-0115-42a9-b674-1b769d32d9aa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tratra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b2e2bd75-13a0-4cb4-8377-5ceee9ba3be4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d5ab0e17-63f2-447f-93b4-973ec9a36eaa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tratra 
\entryTyp root 
\gENG tilt 
\gSPN inclinar 
\e *tratra 
\c V1 
\ach chacha 
\akh chacha 
\acl chacha 
\akl chacha 
\ame chacha 
\mcc *tratra / ~_ NMN 
\mcc *tratra / ~_ PL [prtall]</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="54205274-f35c-478c-9b20-37b0f7339f5d" ownerguid="be0b7b6e-c484-4277-b788-c5b434079a2f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="4ce03270-0d3e-42da-a400-cec41526abcd" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="1c087574-defa-4621-ad70-d487d4a08a43" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="54207b75-347a-4036-8c2e-241615432c7e" ownerguid="67b648fc-5317-4a74-8f22-30e8b1b34d51"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="35a89a55-d852-4ca8-8863-4314f180cd91" t="r" /> -</Morph> -<Msa> -<objsur guid="85e3456d-a3a6-4fb2-848b-ab16e0bc1f03" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="5421d7ae-9d62-466a-b516-3702adf59420" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<ExampleWords> -<AUni ws="en">enlargement, expansion, extension, growth, inflation, increase (n), magnification</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the process of becoming big?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="5422d4ba-8af4-4767-912e-43b60ef28eab" ownerguid="349f0278-7998-422a-9c3b-6053989cbb20"> -<Abbreviation> -<AUni ws="en">9.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that intensify an attribute.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Very</AUni> -</Name> -<Questions> -<objsur guid="a1d543af-790e-4a69-8cd7-fa00e862a296" t="o" /> -<objsur guid="5bcd578d-397c-4902-90ae-89909a6064c9" t="o" /> -<objsur guid="50ccecd1-edf2-4aed-b483-c7a911d05cd2" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="aaf9d375-f0a0-4c7b-bbf8-3c7ffd4f5a52" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="aaf9d375-f0a0-4c7b-bbf8-3c7ffd4f5a52" t="o" /> -<objsur guid="e1dd83dd-955a-4bc7-a761-fc91555da1f8" t="o" /> -<objsur guid="d74914e7-e329-49d4-8513-ec8d850241e4" t="o" /> -<objsur guid="a22d5c1c-daed-4e7a-8243-493f2d841314" t="o" /> -<objsur guid="c7c3aa7d-a4b5-45af-9a31-a640179e8fa4" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="5424edcb-0e8d-4451-bfb0-2856e4929098" ownerguid="e6e956f1-7d3c-4e11-9ff5-f5703a052e88"> -<Form> -<AUni ws="qvm-x-ach">salüdus</AUni> -<AUni ws="qvm-x-acl">salüdus</AUni> -<AUni ws="qvm-x-akh">salüdus</AUni> -<AUni ws="qvm-x-akl">salüdus</AUni> -<AUni ws="qvm-x-ame">salüdus</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5426e421-9bd3-4283-9e44-fe1abe4fc36e" ownerguid="c2f01aa8-9f94-43c9-9ada-b1e4a60aba07"> -<ExampleWords> -<AUni ws="en">hand, right hand, left hand, heel of hand, palm, back of hand</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the hand?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5428a01a-5717-4d95-a125-0de648c7d173"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tisna</AUni> -<AUni ws="qvm-x-acl">tisna</AUni> -<AUni ws="qvm-x-akh">tisna</AUni> -<AUni ws="qvm-x-akl">tisna</AUni> -<AUni ws="qvm-x-ame">tisna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tisna</AUni> -<AUni ws="qvm-x-acl">*tisna</AUni> -<AUni ws="qvm-x-akh">*tisna</AUni> -<AUni ws="qvm-x-akl">*tisna</AUni> -<AUni ws="qvm-x-ame">*tisna</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.926" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="be3e4189-14e6-47bd-941f-a90ce658e8e4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tisna</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="84614081-77bf-4fc3-88c3-b819f80025d8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fe5ab833-a38c-44f3-ac07-10370862dbe2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tisna 
\entryTyp root 
\gENG brand 
\gSPN seña 
\e *tisna 
\c N0 
\ach tisna 
\akh tisna 
\acl tisna 
\akl tisna 
\ame tisna</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="542ae4c7-7db5-4c7f-a344-60e247a57c75"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mepare:ci; mepare:ci</AUni> -<AUni ws="qvm-x-acl">mepare:ci; mepare:ci; mepare:ce</AUni> -<AUni ws="qvm-x-akh">mepare:ci; mepare:ci</AUni> -<AUni ws="qvm-x-akl">mepare:ci; mepare:ci; mepare:ce</AUni> -<AUni ws="qvm-x-ame">mepare:ci; mepare:ci</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+me_parece</AUni> -<AUni ws="qvm-x-acl">+me_parece</AUni> -<AUni ws="qvm-x-akh">+me_parece</AUni> -<AUni ws="qvm-x-akl">+me_parece</AUni> -<AUni ws="qvm-x-ame">+me_parece</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.424" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f8315db1-a97f-4e30-a9fc-5ea48c9ef332" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+me_parece</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="76dad671-7e7b-4678-b86d-3692f1ff56fd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="697d7003-0bc9-4b34-a7f8-cc8a57f73abb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +me_parece 
\entryTyp root 
\gENG it.seems 
\gSPN me.parece 
\e +me_parece 
\c N0 
\mp +FinalI 
\ach mepare:ci / _# 
\ach mepare:ci / ~_# 
\akh mepare:ci / _# 
\akh mepare:ci / ~_# 
\acl mepare:ci / _# 
\acl mepare:ci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mepare:ce +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mepare:ci / _# 
\akl mepare:ci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mepare:ce +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mepare:ci / _# 
\ame mepare:ci / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="542b40ae-c96d-4a2f-8a45-f9829db86d57" ownerguid="cb95189c-8c74-465b-af07-48e08dbf7c39"> -<ExampleWords> -<AUni ws="en">snap out of it, get a grip on yourself, pull yourself together</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What words refer to controlling your feelings again after losing control?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="542bace9-15b8-4ef6-9fac-d920c351c8ab" ownerguid="e823a2bb-e8dd-4710-93ae-36eecb504aa9"> -<Form> -<AUni ws="qvm-x-ach">calabözu</AUni> -<AUni ws="qvm-x-acl">calabözu; calabözu; calabözo</AUni> -<AUni ws="qvm-x-akh">calabözu</AUni> -<AUni ws="qvm-x-akl">calabözu; calabözu; calabözo</AUni> -<AUni ws="qvm-x-ame">calabözu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="542d1fc8-57e3-463a-8ace-0abc7ae296be" ownerguid="965c6a0b-3034-4e2f-a00b-ed2eb3119a5d"> -<ExampleWords> -<AUni ws="en">(none in English)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words indicate that the sentence is a command?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="54301972-0816-41c9-a908-b905e0a23485" ownerguid="4e17244e-6b00-463c-86b0-e24c799ec082"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="5433cac9-0eaf-4789-863b-fda377b7d0b9" ownerguid="442bfc0c-557f-4857-8f9b-2f3321c9fd06"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="54378a08-0e2d-4ec3-842a-617f6b605141" ownerguid="0eff3206-bbf3-45fd-bf57-dea82710c34d"> -<Form> -<AUni ws="qvm-x-ach">cisni; cisne</AUni> -<AUni ws="qvm-x-acl">cisni; cisni; cisne</AUni> -<AUni ws="qvm-x-akh">cisni; cisne</AUni> -<AUni ws="qvm-x-akl">cisni; cisni; cisne</AUni> -<AUni ws="qvm-x-ame">cisni; cisne</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="543914c7-b56c-4f1b-af36-69ffd59f8ba6" ownerguid="d90afb31-9666-4b79-8caf-ce4f4f248172"> -<Form> -<AUni ws="qvm-x-ach">yugäda</AUni> -<AUni ws="qvm-x-acl">yugäda</AUni> -<AUni ws="qvm-x-akh">yugäda</AUni> -<AUni ws="qvm-x-akl">yugäda</AUni> -<AUni ws="qvm-x-ame">yugäda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="544259c0-a889-419a-8a2e-c0080a6f0496" ownerguid="0cdbf190-fcde-4096-a453-4f07568551fd"> -<PartOfSpeech> -<objsur guid="38b17640-aa0a-406d-bc99-a54197290945" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="54451551-208b-489c-9570-3908c50d4ec8" ownerguid="014f053d-667c-426d-8bac-11529a04b478"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">struggle</AUni> -<AUni ws="es">luchar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2b0e0c74-2dd1-4e20-ab6b-278412e2eb0a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="5446b5cf-f05a-4bb2-89eb-ce63e27040f3" ownerguid="57225f57-ba51-45d7-b6d2-b22052877ea4"> -<Abbreviation> -<AUni ws="en">4.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.211" /> -<DateModified val="2022-9-23 16:55:8.211" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to music.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Music</AUni> -</Name> -<OcmCodes> -<Uni>533 Music; 545 Musical and Theatrical Productions</Uni> -</OcmCodes> -<Questions> -<objsur guid="0cfcffa7-f177-4357-be47-5d395f7a608a" t="o" /> -<objsur guid="c6860b37-0c63-4056-b7f2-cda8657ccc66" t="o" /> -<objsur guid="90244fb2-2b26-48fc-a002-e01bd9ed7c8c" t="o" /> -<objsur guid="36f4f601-59df-483f-86e5-9b727074f6f1" t="o" /> -<objsur guid="d985c7d6-c671-4885-864e-aefd412bafea" t="o" /> -<objsur guid="ba88bcd7-83a2-464d-902e-4f4325d8bfab" t="o" /> -<objsur guid="fbb1c8b2-280e-4cdf-999e-7c2126acb013" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="aa0f165d-3013-4a0c-b68c-14ea317013f9" t="o" /> -<objsur guid="7fed6281-326a-4a15-8cbf-dc574594da19" t="o" /> -<objsur guid="de6b15d3-6409-4998-b03d-903133f4ad70" t="o" /> -<objsur guid="0a1b26b2-2152-45e2-9b63-4a68fca73a90" t="o" /> -<objsur guid="91ddf495-a28b-4a32-90dc-6f997d0cd069" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="PhPhoneme" guid="54482722-898d-4007-ba4d-c113b50789cd" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="1dfc06f6-bebf-41d8-901a-e410e64579b2" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">palatal semivowel</Run> -</AStr> -</Description> -<Name> -<AUni ws="qvm-x-ach">y</AUni> -<AUni ws="qvm-x-acl">y</AUni> -<AUni ws="qvm-x-akh">y</AUni> -<AUni ws="qvm-x-akl">y</AUni> -<AUni ws="qvm-x-ame">y</AUni> -</Name> -</rt> -<rt class="LexEntry" guid="544b07f9-d735-4147-8613-18acb6d83838"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guewa</AUni> -<AUni ws="qvm-x-acl">guewa</AUni> -<AUni ws="qvm-x-akh">qewa</AUni> -<AUni ws="qvm-x-akl">qewa</AUni> -<AUni ws="qvm-x-ame">qiwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qiwa.n</AUni> -<AUni ws="qvm-x-acl">*qiwa.n</AUni> -<AUni ws="qvm-x-akh">*qiwa.n</AUni> -<AUni ws="qvm-x-akl">*qiwa.n</AUni> -<AUni ws="qvm-x-ame">*qiwa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.216" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6418a6e1-4188-41ff-8631-01a87f87c9a5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qiwa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a8e49960-d854-4961-8d03-0e847b1267bc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="57b5918d-a552-4895-b2ee-2af8e7c54e5a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qiwa.n 
\entryTyp root 
\gENG grass 
\gSPN hierba 
\e *qiwa.n 
\c N0 
\ach guewa 
\akh qewa 
\acl guewa 
\akl qewa 
\ame qiwa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="544bc8df-3ce0-49f4-9de8-ea4c05a61eae" ownerguid="7d472317-b5e8-4cae-a03f-913ecdaf4c29"> -<ExampleWords> -<AUni ws="en">snake, serpent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to snakes?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="544e8435-2c0b-4e5f-b0c9-3008bb2aba02" ownerguid="e7e5dbf2-6d5b-4869-b357-8a7860c29002"> -<ExampleWords> -<AUni ws="en">solution, mix with water</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to mixing something with water?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="544f6158-38a9-40db-b4f4-39da0176f8c4" ownerguid="d9a499aa-805c-45f0-b43f-2c394ceff053"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="5450043d-907b-4884-a9e5-35cfd5935947" ownerguid="8a11e609-e88d-4247-8c5f-224ddb20de10"> -<Abbreviation> -<AUni ws="en">5.3.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.327" /> -<DateModified val="2022-9-23 16:55:8.327" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being naked--not wearing any clothes, and for words referring to how a person feels about being naked. It is a part of universal human experience that people do not want to be naked. So there are words that refer to feeling bad if one does not have enough clothes on (shame). Other words refer to wanting to have enough clothes (modest). Other words refer to how people feel about other people who do not wear enough clothes (indecent).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Naked</AUni> -</Name> -<Questions> -<objsur guid="78788607-db9c-49d0-9698-2b17f90e1852" t="o" /> -<objsur guid="5ccbbf0b-abb2-4940-bdf5-a3258bba699d" t="o" /> -<objsur guid="08da9733-aeeb-42fd-8c14-3631e0276f93" t="o" /> -<objsur guid="4d517c48-d829-4aa7-ac93-26b18f15ccc6" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="5450d52f-7395-45b7-a5f6-4a294adaf6f4" ownerguid="2fc69f71-e9f1-45f9-b88e-bdaf97457fc3"> -<ExampleWords> -<AUni ws="en">fast, quick, quickly, quickness, speedy, speeding, speedily, speed, hasty, hastily, haste, rapid, rapidly, rapidity, hurry, hurried, hurriedly, in a hurry, swift, swiftly, swiftness, rush, rush into, rush through, in a rush, express</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe an action that is done quickly?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="54519ee6-6c8b-491a-946e-2eab149adefb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">glorifica</AUni> -<AUni ws="qvm-x-acl">glorifica</AUni> -<AUni ws="qvm-x-akh">glorifica</AUni> -<AUni ws="qvm-x-akl">glorifica</AUni> -<AUni ws="qvm-x-ame">glorifica</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+glorificar.1</AUni> -<AUni ws="qvm-x-acl">+glorificar.1</AUni> -<AUni ws="qvm-x-akh">+glorificar.1</AUni> -<AUni ws="qvm-x-akl">+glorificar.1</AUni> -<AUni ws="qvm-x-ame">+glorificar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.617" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ac8954b5-66f8-4e78-84da-b0f7003dd9f6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+glorificar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="66fb9a2a-13d6-4277-92c4-4011d8215780" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ebc4c0a5-ff01-46f3-8422-299c099160b9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +glorificar.1 
\entryTyp root 
\gENG glorify 
\gSPN glorificar 
\e +glorificar.1 
\c V2 
\ach glorifica 
\akh glorifica 
\acl glorifica 
\akl glorifica 
\ame glorifica</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="5451ccad-e15a-442d-abee-bf45de145c18" ownerguid="7958cada-dbf7-44d8-af88-78b5dd6c4f1c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="54533a3f-238b-4308-bf1e-05a557c7a619" ownerguid="b10d1740-502e-4c62-840e-eb89c948c3dc"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="5455ef1a-b9b5-4ab0-9d8f-2aa16c3a68db"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">controla</AUni> -<AUni ws="qvm-x-acl">controla</AUni> -<AUni ws="qvm-x-akh">controla</AUni> -<AUni ws="qvm-x-akl">controla</AUni> -<AUni ws="qvm-x-ame">controla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+controlar</AUni> -<AUni ws="qvm-x-acl">+controlar</AUni> -<AUni ws="qvm-x-akh">+controlar</AUni> -<AUni ws="qvm-x-akl">+controlar</AUni> -<AUni ws="qvm-x-ame">+controlar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.182" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eb065fc0-a104-47a1-9cac-0374c7836e54" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+controlar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dc126d7a-aada-413b-ab35-f225d548f096" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="91a89394-ff69-496a-9155-2b02a4fe241d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +controlar 
\entryTyp root 
\gENG 
\gSPN 
\e +controlar 
\c V2 
\ach controla 
\akh controla 
\acl controla 
\akl controla 
\ame controla 
\i 1KI 9.23 Paycunami Salomón arutsishgan faynacho arogcunata controlag.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="54565093-6c68-42e0-9b85-bfc6cbcde72c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cajona</AUni> -<AUni ws="qvm-x-acl">cajona</AUni> -<AUni ws="qvm-x-akh">cajona</AUni> -<AUni ws="qvm-x-akl">cajona</AUni> -<AUni ws="qvm-x-ame">cajona</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cajonar</AUni> -<AUni ws="qvm-x-acl">+cajonar</AUni> -<AUni ws="qvm-x-akh">+cajonar</AUni> -<AUni ws="qvm-x-akl">+cajonar</AUni> -<AUni ws="qvm-x-ame">+cajonar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.11" /> -<DateModified val="2022-10-10 21:18:47.215" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fdc47dff-9bef-4496-bb40-457a671cbb41" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cajonar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="85014e53-df38-4691-8905-8ef355d481f8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e564aa9b-f5b7-4e41-8a5e-d976126e0b49" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cajonar 
\entryTyp root 
\gENG 
\gSPN 
\e +cajonar 
\c V2 
\ach cajona 
\akh cajona 
\acl cajona 
\akl cajona 
\ame cajona</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="5457a514-dce1-40bb-942a-92f3d1bf86fb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ogla</AUni> -<AUni ws="qvm-x-acl">ogla</AUni> -<AUni ws="qvm-x-akh">oqla</AUni> -<AUni ws="qvm-x-akl">oqla</AUni> -<AUni ws="qvm-x-ame">uqla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uqlla.v</AUni> -<AUni ws="qvm-x-acl">*uqlla.v</AUni> -<AUni ws="qvm-x-akh">*uqlla.v</AUni> -<AUni ws="qvm-x-akl">*uqlla.v</AUni> -<AUni ws="qvm-x-ame">*uqlla.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.261" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="475ab7df-460c-44f0-b329-42eb4cf2e114" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uqlla.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6594e458-900e-44d3-8af5-09061506310c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f46b3f6f-33c4-42b1-9b7f-638e446368a7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uqlla.v 
\entryTyp root 
\gENG brood 
\gSPN empollar 
\e *uqlla.v 
\c V2 
\ach ogla 
\akh oqla 
\acl ogla 
\akl oqla 
\ame uqla 
\i 1KI 3.21 Tsauraga riccharcamur chuchunäpäga wanushga wamralana oglanëcho caycashga.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="545a9271-93a2-49f6-8967-6098b1a9f17f" ownerguid="f957a4aa-d3d4-4dad-93d1-20565b5158d4"> -<ExampleWords> -<AUni ws="en">cousin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to your mother's brother's child?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5460beaa-de61-4b21-861e-b78e7803eea6" ownerguid="fb9fb454-1893-41f8-97ef-095928c402b4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hour</AUni> -<AUni ws="es">hora</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e02c868f-bdeb-48ac-8e95-edd2272d46f2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiGloss" guid="5462984b-c85e-4747-b64d-cc6b59db8f0d" ownerguid="e22444ea-92b3-4abc-a341-69f01dfab3a4"> -<Form> -<AUni ws="en">they say</AUni> -</Form> -</rt> -<rt class="LexSense" guid="54633fbc-3686-4772-9893-5efaa08d6100" ownerguid="6b968f98-4c19-45ca-9921-92e3c8a0c78d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">what?</AUni> -<AUni ws="es">cómo?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1d310caa-7f16-4936-ae14-536463e18679" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5466cdf0-9669-4486-9e39-f88834b0d3a1" ownerguid="6fb1d03c-b0fe-49b7-a473-168f12a54a36"> -<ExampleWords> -<AUni ws="en">late (adj), overdue, belated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that happens late?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="546800f2-4de9-4b02-820f-afec859450a8" ownerguid="041b5ac9-99be-4281-a17e-654eff33d793"> -<ExampleWords> -<AUni ws="en">curled, wavy, straight, bobbed, pigtailed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a hairstyle?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5468f1e0-4856-47c1-96eb-9da3e38d95f4" ownerguid="50eb32a2-6dbb-4b7c-b370-aacdcfeaf5fc"> -<ExampleWords> -<AUni ws="en">enjoy yourself, have a good time, have fun, have the time of your life, have a whale of a time, have a blast, be in your element, live it up, let your hair down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to feeling happy when you are doing something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5469b10f-e4ac-4641-aafe-ee736748cdbb" ownerguid="a3ba10f3-66e3-4ad5-8057-453b8941e497"> -<ExampleWords> -<AUni ws="en">strategy, tactics, hunker down, keep up the pressure, overwhelm, concentrate your forces, form a line, hold the line, break the line, reform, rally, morale, maintain morale, military discipline, supply, supply lines, control the battle, battlefield control, reconnaissance, reconnoiter, intelligence, propaganda</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to strategy in war?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="546a4409-fcd1-4d4d-9780-2d6a5e7d21e1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">umpu</AUni> -<AUni ws="qvm-x-acl">umpu; umpo</AUni> -<AUni ws="qvm-x-akh">umpu</AUni> -<AUni ws="qvm-x-akl">umpu; umpo</AUni> -<AUni ws="qvm-x-ame">umpu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*umpu</AUni> -<AUni ws="qvm-x-acl">*umpu</AUni> -<AUni ws="qvm-x-akh">*umpu</AUni> -<AUni ws="qvm-x-akl">*umpu</AUni> -<AUni ws="qvm-x-ame">*umpu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.229" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2909ed76-8447-4796-9c6b-14731f9bfcb0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*umpu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3cd72321-789c-439d-aeaa-0d391762ec8a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3d402273-4c6c-4c41-8c56-c74d2c54f1a9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *umpu 
\entryTyp root 
\gENG squat 
\gSPN agacharse 
\e *umpu 
\c V1 
\ach umpu 
\akh umpu 
\acl umpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl umpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl umpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl umpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame umpu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="546b240c-2823-4eed-b8d0-075c6eb0b492" ownerguid="3d80ddcb-329f-4d45-b03c-cd2a8dfe0d87"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Gen 31.37 Lapan imaycätapis ticwaypa ticwarmi ashishcanqui.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="546c7f84-ec24-423b-aba6-93f99897ec02" ownerguid="1b450e43-b1f0-4ad2-a286-2688ed9fdde9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">brillar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e1537466-2604-4df0-a3d8-6821c2d14da4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="546d8b80-12e1-4fe2-b71b-1851fb71b3df" ownerguid="1882ccaf-04c8-4ff5-bb6f-738e384a0600"> -<Form> -<AUni ws="qvm-x-ach">auquillu</AUni> -<AUni ws="qvm-x-acl">auquillu; auquillu; auquillo</AUni> -<AUni ws="qvm-x-akh">awkillu</AUni> -<AUni ws="qvm-x-akl">awkillu; awkillu; awkillo</AUni> -<AUni ws="qvm-x-ame">awkillu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="546ddcc3-6aa9-4386-ab7f-459d7505e2c9" ownerguid="248e826d-7bcd-474f-b411-8ca54718a672"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="546eb730-9124-49cd-8cc8-fe6f699b7900" ownerguid="72274e9d-5d3c-4ae7-93ab-db3617cdda1e"> -<ExampleWords> -<AUni ws="en">uncomfortable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to feeling bad?</AUni> -</Question> -</rt> -<rt class="PartOfSpeech" guid="54712931-442f-42d5-8634-f12bd2e310ce" ownerguid="86ff66f6-0774-407a-a0dc-3eeaf873daf7"> -<Abbreviation> -<AUni ws="en">vt</AUni> -<AUni ws="es">vt</AUni> -</Abbreviation> -<AffixTemplates> -<objsur guid="93b7caf7-2fd3-4421-994f-0561ad908414" t="o" /> -<objsur guid="de4b3b91-adf2-45b7-ae7d-203954a69062" t="o" /> -</AffixTemplates> -<BackColor val="0" /> -<CatalogSourceId> -<Uni>TransitiveVerb</Uni> -</CatalogSourceId> -<DateCreated val="2022-9-23 18:32:19.891" /> -<DateModified val="2022-10-18 15:57:3.823" /> -<Description> -<AStr ws="en"> -<Run ws="en">A transitive verb is a verb that takes a direct object, and describes a relation between two participants.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Transitive verb</AUni> -<AUni ws="es">Verbo transitivo</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="5471fd91-b13a-44e5-a336-5603b5f1cc39" ownerguid="6f9e9ab2-0a12-45d1-ab96-138d37b79fdc"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="eaaadc31-b3c1-498e-80b9-2d7cf02ad3a9" t="o" /> -<objsur guid="41ef9c15-761e-4fc8-8761-ed723b8730cc" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="5474a940-0683-4a6a-a1b1-6820f419d542" ownerguid="bda6adc2-c9b3-4eb5-9fd3-5e0dadf7ea9f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="54751111-2c95-457c-802c-e5fad650ceaf" ownerguid="100e62a6-b6f4-4b30-b317-0517d6b102a9"> -<ExampleWords> -<AUni ws="en">shy, timid, uncomfortable, bashful, coy, diffident, reserved, withdrawn, introverted, inhibited</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels shy?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="547b5e88-7466-433b-86cb-1324800bad57" ownerguid="d887b868-775f-4179-a8a9-18256256982c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wawa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wawa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wawa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wawa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wawa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="947ece62-6ca2-4ac8-a84c-d2baa509eb59" t="r" /> -</Morph> -<Msa> -<objsur guid="2d28f9c9-ff25-4f47-a9dc-c545ea868393" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="547f1151-5816-4d89-b0bc-ece2a86c92eb" ownerguid="6f01b67c-33a0-4ed3-8205-f868e97a1a3a"> -<Abbreviation> -<AUni ws="en">7.2.4.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.518" /> -<DateModified val="2022-9-23 16:55:8.518" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to permanently leaving your home or country, and for words related to migrating--moving every year to the same places because of the weather and food supplies.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Move to a new house</AUni> -</Name> -<OcmCodes> -<Uni>166 Internal Migration</Uni> -</OcmCodes> -<Questions> -<objsur guid="1d2968a5-cbd1-4c2e-a03d-31e9ae0a5249" t="o" /> -<objsur guid="b1c56d38-87bb-433c-9e5b-c160f30f9f6e" t="o" /> -<objsur guid="8b54c296-c003-4c6c-a028-7e1dc6b531a9" t="o" /> -<objsur guid="dc2058d2-ab6b-4d1e-9937-6e7b1842e4e4" t="o" /> -<objsur guid="67948c72-7b60-4d7f-8f30-2706a8157c33" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="547f4e05-1c64-4083-9835-555544674d17" ownerguid="ebe651d9-2313-486c-8252-140e2a613ffa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sunday</AUni> -<AUni ws="es">domingo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="58709edc-15dc-4599-9abc-4f3d4c8444f7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="54815a0d-6095-4b2e-b69b-cf331a1671ec"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">nacionpita</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="5481ca96-ec01-400f-b164-fb471e3e51ba" ownerguid="a0ce1188-88d8-46a0-b675-df7f8400beaa"> -<Form> -<AUni ws="qvm-x-ach">esquïna</AUni> -<AUni ws="qvm-x-acl">esquïna</AUni> -<AUni ws="qvm-x-akh">esquïna</AUni> -<AUni ws="qvm-x-akl">esquïna</AUni> -<AUni ws="qvm-x-ame">esquïna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="5483b41c-4ebc-4298-ae29-f68de3f489b4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wa:quer</AUni> -<AUni ws="qvm-x-acl">wa:quer</AUni> -<AUni ws="qvm-x-akh">wa:ker</AUni> -<AUni ws="qvm-x-akl">wa:ker</AUni> -<AUni ws="qvm-x-ame">wa:kir</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuáquer</AUni> -<AUni ws="qvm-x-acl">+cuáquer</AUni> -<AUni ws="qvm-x-akh">+cuáquer</AUni> -<AUni ws="qvm-x-akl">+cuáquer</AUni> -<AUni ws="qvm-x-ame">+cuáquer</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.234" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a4db2565-a919-465f-8792-ebca882fec27" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuáquer</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6d1d7d03-5120-47b4-b046-4d07347375f3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0c525337-87c6-452d-bf45-f26a661b923e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuáquer 
\entryTyp root 
\gENG oatmeal 
\gSPN avena 
\e +cuáquer 
\c N0 
\mp +assimilated KQWchange 
\ach wa:quer 
\akh wa:ker 
\acl wa:quer 
\akl wa:ker 
\ame wa:kir 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="54845717-8ed8-477a-bdd7-e334cd6e8f30" ownerguid="a016e804-e9d5-4765-9eaa-42a612683a8e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 41.6 Tsaynogpis ¿pedasyanquimantsurag ranticunayquipag?</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="5485007a-99b4-467a-a475-00f611e77bcd" ownerguid="604ab9e6-0ad7-4a0d-b166-5d7150d8e6c9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="LexExampleSentence" guid="5486041d-362a-4e24-860e-5c52a32a31dc" ownerguid="ff0a35c2-4708-4449-8de4-9ea47f0895ef"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1SA 19.2b Papänëmi imaycanogpapis wanutsishunayquipag yarpachacuycan. Mana wanutsishunayquipag wara tuta tsaca tsacala yargur maynilanmanpis pacacuy.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="5489f4ae-34a7-4f8b-9086-4247b0d8b3de" ownerguid="80563285-4de7-4040-8080-a5b22208e7d5"> -<Abbreviation> -<AUni ws="en">4.8.2.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.276" /> -<DateModified val="2022-9-23 16:55:8.276" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to ambushing someone--to attacking someone without warning.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>39K Ambush</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Ambush</AUni> -</Name> -<Questions> -<objsur guid="402929ae-1aa3-4b8f-870f-d3a89c99cd27" t="o" /> -<objsur guid="0057f8a9-606e-49e0-b6cf-613a11d94869" t="o" /> -<objsur guid="0727b3bb-c406-4bb8-9534-1ec07dd798b4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="548c9396-abfc-4095-9351-b2f86cf095e7" ownerguid="d47a79d3-f893-4883-91a2-945fda565990"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="548e3500-6daa-44a6-8416-e7a3de3da478"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">taliga</AUni> -<AUni ws="qvm-x-acl">taliga</AUni> -<AUni ws="qvm-x-akh">taliga</AUni> -<AUni ws="qvm-x-akl">taliga</AUni> -<AUni ws="qvm-x-ame">taliga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+taliga</AUni> -<AUni ws="qvm-x-acl">+taliga</AUni> -<AUni ws="qvm-x-akh">+taliga</AUni> -<AUni ws="qvm-x-akl">+taliga</AUni> -<AUni ws="qvm-x-ame">+taliga</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.784" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6c662496-245b-4d8b-8c41-14ec4db1ca3e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+taliga</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="beacffed-4143-4f70-b8a5-040720006827" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c1518ece-cdd4-427b-812e-a5b3965abb15" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +taliga 
\entryTyp root 
\gENG sack 
\gSPN costalillo 
\e +taliga 
\c N0 
\ach taliga 
\akh taliga 
\acl taliga 
\akl taliga 
\ame taliga</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="5490c80f-2617-4533-a669-9d2c93165c35" ownerguid="28d4ec2b-08a6-4a73-94a5-70f4fd91c215"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="5491f159-cddf-4b12-9637-87c8c61d4049"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pogu</AUni> -<AUni ws="qvm-x-acl">pogu; pogo</AUni> -<AUni ws="qvm-x-akh">poqu</AUni> -<AUni ws="qvm-x-akl">poqu; poqo</AUni> -<AUni ws="qvm-x-ame">puqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puqu.v</AUni> -<AUni ws="qvm-x-acl">*puqu.v</AUni> -<AUni ws="qvm-x-akh">*puqu.v</AUni> -<AUni ws="qvm-x-akl">*puqu.v</AUni> -<AUni ws="qvm-x-ame">*puqu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.65" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="17107e5b-66ba-4b02-b8e6-1af31a62b356" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puqu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="06b4828c-a386-482a-b77b-094f732eb06c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="38fe3cd8-f539-4905-90dc-0aed70ea1206" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puqu.v 
\entryTyp root 
\gENG ripen 
\gSPN madurar 
\e *puqu.v 
\c V1 
\ach pogu 
\akh poqu 
\acl pogu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pogo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl poqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl poqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame puqu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5493241e-cc9f-405f-9437-47829a6ca838" ownerguid="3fdba5e5-eb24-4b2f-a6fc-d1ed7397c39c"> -<ExampleWords> -<AUni ws="en">nursery school, kindergarten, grammar school, elementary school, secondary school, high school, university, college</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a school for different ages?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5494e55e-bbc8-4db9-b059-329f746f5fb9" ownerguid="ac4f1bd6-8bd9-4c00-9d5e-e4b1cb59055b"> -<Form> -<AUni ws="qvm-x-ach">vëla</AUni> -<AUni ws="qvm-x-acl">vëla</AUni> -<AUni ws="qvm-x-akh">vëla</AUni> -<AUni ws="qvm-x-akl">vëla</AUni> -<AUni ws="qvm-x-ame">vëla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="5496f0ca-adcb-4f74-97ec-b32555497009" ownerguid="93258a11-9af6-40b2-add5-ea720068462c"> -<Form> -<AUni ws="qvm-x-ach">arregla</AUni> -<AUni ws="qvm-x-acl">arregla</AUni> -<AUni ws="qvm-x-akh">arregla</AUni> -<AUni ws="qvm-x-akl">arregla</AUni> -<AUni ws="qvm-x-ame">arregla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5496fc3f-f361-4fac-ab6b-4008291908e0" ownerguid="cce98603-ff8f-4213-945a-bd6746716139"> -<ExampleWords> -<AUni ws="en">ground</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the ground we stand on?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5497de86-b80d-4f33-b504-26c05290f50a" ownerguid="7c7fc1b6-3775-4881-bbe0-9d0ce50e42a9"> -<ExampleWords> -<AUni ws="en">put above, place over</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to putting something above something else?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="549a31d6-f7fb-4f2a-9c85-6efa70fc07df" ownerguid="5390cf06-ee70-4098-bffd-b7a6b3446bbd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="549b5a3f-d3cd-4794-a304-70f3ed3bae67" ownerguid="b8fc54d8-afd2-4ef8-b811-efb8aa7064db"> -<ExampleWords> -<AUni ws="en">be beside, alongside, along, next to, at your side, be way over to the side, be on the right, be on the left</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is beside something else?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="549bc8e4-7602-49a2-b9b7-9a7d7396cbb8" ownerguid="1d1cefbb-d017-478f-9207-2394065f5d88"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">drag</AUni> -<AUni ws="es">arrastrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b33cab68-9cbe-4b01-8b58-9c3b61582335" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="549ec106-5381-476d-ba85-dd51737c8910" ownerguid="221bff21-d688-40a2-9e5a-9ea5af0e42a9"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EST 7.8,9 Rey Asuero tsaynog niptinmi wardyacuna jucla Amánta tsarircur bendargan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="54a08ec8-9eba-47b1-a4bc-0035b116b36a" ownerguid="15648f4a-8566-4153-af3e-ec3cdb0b1a6b"> -<Form> -<AUni ws="qvm-x-ach">viajëru</AUni> -<AUni ws="qvm-x-acl">viajëru; viajëru; viajëro</AUni> -<AUni ws="qvm-x-akh">viajëru</AUni> -<AUni ws="qvm-x-akl">viajëru; viajëru; viajëro</AUni> -<AUni ws="qvm-x-ame">viajëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="54a14bc8-1822-43c7-9264-7b5bc31ef8fb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jaru</AUni> -<AUni ws="qvm-x-acl">jaru; jaro</AUni> -<AUni ws="qvm-x-akh">jaru</AUni> -<AUni ws="qvm-x-akl">jaru; jaro</AUni> -<AUni ws="qvm-x-ame">haru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*haru</AUni> -<AUni ws="qvm-x-acl">*haru</AUni> -<AUni ws="qvm-x-akh">*haru</AUni> -<AUni ws="qvm-x-akl">*haru</AUni> -<AUni ws="qvm-x-ame">*haru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.680" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c404a2e1-8c18-4fbf-a71a-f2652fa78b71" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*haru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="33aaffd5-8fd6-431a-a7ab-54fcd3b84fe5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5676305b-d6e0-4985-bc43-9cd4612db542" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *haru 
\entryTyp root 
\gENG stamp 
\gSPN pisar 
\e *haru 
\c V2 
\ach jaru 
\akh jaru 
\acl jaru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl jaro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jaru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jaro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame haru</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="54a29776-6089-4d2e-9b6d-7cbb615345bd" ownerguid="d7f7a5ed-d093-43ac-91a8-0a3bafc0fb1e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="54a2f829-8cd0-4722-afba-a9e1351f0b3d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">garantía; garantia</AUni> -<AUni ws="qvm-x-acl">garantía; garantia</AUni> -<AUni ws="qvm-x-akh">garantía; garantia</AUni> -<AUni ws="qvm-x-akl">garantía; garantia</AUni> -<AUni ws="qvm-x-ame">garantía; garantia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+garantía</AUni> -<AUni ws="qvm-x-acl">+garantía</AUni> -<AUni ws="qvm-x-akh">+garantía</AUni> -<AUni ws="qvm-x-akl">+garantía</AUni> -<AUni ws="qvm-x-ame">+garantía</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.599" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="826319e3-ea37-42c0-9ad1-91af3164aed4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+garantía</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="11b4a6b8-bcfa-4d1f-828d-a816464b4aa2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2ec4a945-279e-4984-b20c-89733f2394fe" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +garantía 
\entryTyp root 
\gENG guarantee 
\gSPN garantía 
\e +garantía 
\c N0 
\ach garantía / _# 
\ach garantia / ~_# 
\akh garantía / _# 
\akh garantia / ~_# 
\acl garantía / _# 
\acl garantia / ~_# 
\akl garantía / _# 
\akl garantia / ~_# 
\ame garantía / _# 
\ame garantia / ~_# 
\i PRO 6.1 Pipa garantiyanpis mana yaycunapag yätsishgan</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="54a365a9-47ff-440c-9ae4-1b97583dc0cf" ownerguid="f5a16170-3ccc-475a-be46-370c7b82dfd5"> -<Form> -<AUni ws="qvm-x-ach">rampaytu</AUni> -<AUni ws="qvm-x-acl">rampaytu; rampaytu; rampayto</AUni> -<AUni ws="qvm-x-akh">rampaytu</AUni> -<AUni ws="qvm-x-akl">rampaytu; rampaytu; rampayto</AUni> -<AUni ws="qvm-x-ame">rampaytu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="54a66603-d266-4e82-89f5-2fae943bc5cd" ownerguid="09c183ce-10d8-4856-b557-6be4a100a4f4"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="3b2a2c66-a4dd-414c-8ea5-77258724e5f1" t="o" /> -<objsur guid="21c52ca9-67f1-45af-87f6-fb8e15e0c05f" t="o" /> -<objsur guid="cd23d4d2-1127-44ba-beb9-1242b1e5e246" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="54a6e89b-1c99-419e-a39d-9df60ca2e171" ownerguid="c80e109f-2311-4596-bf24-13b75968d58c"> -<Form> -<AUni ws="qvm-x-ach">watpa; watpä</AUni> -<AUni ws="qvm-x-acl">watpa; watpä</AUni> -<AUni ws="qvm-x-akh">watpa; watpä</AUni> -<AUni ws="qvm-x-akl">watpa; watpä</AUni> -<AUni ws="qvm-x-ame">watpa; watpä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="54a8929b-4853-4f2f-839f-50b25f7975f1" ownerguid="d6ce6b98-ff16-4be0-b3ef-9919e275f39e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="1fcbb0f1-3b64-44a6-a35b-9a082473bae2" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="2aabc847-934a-44fc-a44e-ab680d2fdd28" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="54a9197c-f4c8-4eec-861c-1204db14a439" ownerguid="20f51a14-1e9e-4b4d-9240-a2cdb303d27e"> -<Form> -<AUni ws="qvm-x-ach">goluta</AUni> -<AUni ws="qvm-x-acl">goluta</AUni> -<AUni ws="qvm-x-akh">qoluta</AUni> -<AUni ws="qvm-x-akl">qoluta</AUni> -<AUni ws="qvm-x-ame">quluta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="54a95820-8b47-4118-a5df-a79ee515e433" ownerguid="cd207cf2-912f-49b5-b48a-e4b942b8b281"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="54a9a474-5b9d-4285-9422-7a6a37e9c08d" ownerguid="08bd689d-bf0d-422b-83be-0a6545407128"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="9afaab37-4992-4c21-b299-452eac7ae52e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="54ad558c-fce3-40ea-b28d-52a66a4efd42" ownerguid="8aec2883-84da-46ea-a384-95ded5f89ce0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="3d61ca37-9c74-4e57-befe-7da01bc80edc" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">gold</AUni> -<AUni ws="es">oro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7a9efd97-4656-4d29-80ac-0c5b5da7ebd7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="54ada8e1-218b-44e6-9b1f-88d6b4128b92" ownerguid="7c9c6263-9f7d-472c-a4c9-1767015d41fe"> -<ExampleWords> -<AUni ws="en">offer someone something, offer something to someone</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to offering to give something to someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="54ae3270-5da4-4bdc-baec-caf4e6e45437" ownerguid="ac4a9f08-539d-41a4-8b40-70f9144bc18e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="54af1cff-6162-4dbd-adf1-5830cf338da0" ownerguid="1b7e0a68-9332-4eca-b813-922f5a88445d"> -<Form> -<AUni ws="qvm-x-ach">paciencia</AUni> -<AUni ws="qvm-x-acl">paciencia</AUni> -<AUni ws="qvm-x-akh">paciencia</AUni> -<AUni ws="qvm-x-akl">paciencia</AUni> -<AUni ws="qvm-x-ame">paciencia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="54afb938-ed9f-4ced-b352-a66aa5b93353" ownerguid="9804176a-ea81-41f3-b7f4-726ee01b6039"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="54b629c8-1bf8-4a31-b2bd-05d819507249" ownerguid="768aed05-dbc9-4caf-9461-76cb3720f908"> -<ExampleWords> -<AUni ws="en">hurt, ache, be agony, sting</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a part of your body hurting?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="54b6dff4-a21d-490d-8279-69f36a179c93" ownerguid="935da513-126e-4cab-8e07-625458821181"> -<Abbreviation> -<AUni ws="en">4.2.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.208" /> -<DateModified val="2022-9-23 16:55:8.208" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a meeting.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Meeting, assembly</AUni> -</Name> -<Questions> -<objsur guid="c211ffe4-5f25-4d20-be44-7d4eb339232b" t="o" /> -<objsur guid="2109b537-3ee7-4727-928a-99bbe846d08f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="54b7396a-9c23-43e1-86a9-f7145669b019" ownerguid="cc266d6a-f4bc-42a3-983e-af7b63ed0d30"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -<Sense> -<objsur guid="ed102c60-ed6d-498f-b2c4-a195d53a84e2" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="54b7d25b-6b22-465b-877a-260ac0cbbf9c" ownerguid="bca5430d-cc1a-4772-9ada-81d107cabfda"> -<Form> -<AUni ws="qvm-x-ach">wasarima</AUni> -<AUni ws="qvm-x-acl">wasarima</AUni> -<AUni ws="qvm-x-akh">wasarima</AUni> -<AUni ws="qvm-x-akl">wasarima</AUni> -<AUni ws="qvm-x-ame">wasarima</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="54bc7396-74f9-4157-b361-74e8dc522c6f" ownerguid="1fa683b9-78fd-4feb-9978-55d5953f38ec"> -<ExampleWords> -<AUni ws="en">subject, major, discipline, field</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a subject that is taught?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="54be4e19-0e3e-4579-a6cb-1d2d3cfd6188" ownerguid="6eabd924-d1b0-4c2b-95a0-dbfddb3552f9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="54c0eb03-5495-4096-910d-382832290d4e" ownerguid="ccbbd16f-58c5-45c1-bfff-1fba64d9740e"> -<Question> -<AUni ws="en">(1) habitual: the situation is customary or usual, repeated on different occasion over a period of time. English 'used to' is past habitual; English 'Nancy sings' is present habitual.</AUni> -</Question> -</rt> -<rt class="LexSense" guid="54c24a33-4249-4ee9-a82b-856bd95f06d4" ownerguid="2e16fa56-78c4-484d-91fe-b68e8171cd38"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bald</AUni> -<AUni ws="es">calvo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="baf352bc-a5db-407c-ae84-a95c5bea0ef6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="54c28b77-7f56-4ce7-a646-cf4b7974e5e3" ownerguid="5fa180eb-8427-41aa-af2a-cf08dce5c88f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="54c86f5c-ae7c-4f57-b010-45bec3e0aca1" ownerguid="0c6b8113-d532-4794-9ecd-ab4d9345d1f8"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="54cd190b-658f-4814-af59-2f72a102eab6" ownerguid="694ffc6c-675f-4bcf-be42-876687d0ca96"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="54cd5b04-d2d3-4fd1-b731-da3f10fcef20" ownerguid="e76fb4fe-f105-420c-9054-bb1e7246cd53"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0 V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">earring</AUni> -<AUni ws="es">arete</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6790b7f1-0cda-4ba3-8d54-8a27e66d8c56" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="54cf5e5d-39e2-4b93-b2bb-bd04edd2fbda" ownerguid="5663238a-9f7f-4218-aed2-a8cc9be6887e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="54d15699-88c2-4d94-a67e-ac4dd70013ed"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">revoqui; revoque</AUni> -<AUni ws="qvm-x-acl">revoqui; revoqui; revoque</AUni> -<AUni ws="qvm-x-akh">revoqui; revoque</AUni> -<AUni ws="qvm-x-akl">revoqui; revoqui; revoque</AUni> -<AUni ws="qvm-x-ame">revoqui; revoque</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+revoque</AUni> -<AUni ws="qvm-x-acl">+revoque</AUni> -<AUni ws="qvm-x-akh">+revoque</AUni> -<AUni ws="qvm-x-akl">+revoque</AUni> -<AUni ws="qvm-x-ame">+revoque</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.348" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d275d71e-a360-4ef0-b3fe-bfdbcd789013" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+revoque</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cccd6c40-a7b4-4ee2-867d-d7ce4dbdf2e1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="08ff26dc-032e-4bc3-9d61-fad11e180305" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +revoque 
\entryTyp root 
\gENG plaster 
\gSPN revoque 
\e +revoque 
\c N0 
\mp +FinalI 
\ach revoqui / ~_# 
\ach revoque / _# 
\akh revoqui / ~_# 
\akh revoque / _# 
\acl revoqui / ~_# 
\acl revoqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl revoque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl revoqui / ~_# 
\akl revoqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl revoque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame revoqui / ~_# 
\ame revoque / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="54d1c377-581b-4232-8de5-ea802a69d134" ownerguid="0ea925c8-864b-470d-9a96-ccc0547a713b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="54d42a1f-442f-41c9-8641-34b2246068ec" ownerguid="fc193988-26ca-49e9-849a-b12456d98792"> -<ExampleWords> -<AUni ws="en">go crazy, go berserk, go mad, go nuts</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to beginning to act crazy?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="54d65427-732b-4dd0-b30a-4590eb43b149" ownerguid="50eb32a2-6dbb-4b7c-b370-aacdcfeaf5fc"> -<ExampleWords> -<AUni ws="en">self-indulgent, hedonist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words describe someone who is only interested in enjoying themselves?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="54d6612e-87c9-4fe3-bb39-642786ecd522" ownerguid="f2c723cb-6f41-4472-a402-3477466bb5a8"> -<Form> -<AUni ws="qvm-x-ach">padrastu; padrasto</AUni> -<AUni ws="qvm-x-acl">padrastu; padrastu; padrasto</AUni> -<AUni ws="qvm-x-akh">padrastu; padrasto</AUni> -<AUni ws="qvm-x-akl">padrastu; padrastu; padrasto</AUni> -<AUni ws="qvm-x-ame">padrastu; padrasto</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="54d680f8-2862-4837-85ac-6d0a4e917d73" ownerguid="423e06e6-9950-435b-8597-ec5aac3a3f31"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9f082a54-67fe-4bc3-9da3-a368c9bed58d" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">make.legitimate</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="25f86535-2f0f-4abe-87f6-f00774bd7968" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="54dea8e0-dbfd-4264-b47d-0143cc30e302" ownerguid="86c60f77-6ff9-4df2-9e54-3f6e108402af" /> -<rt class="CmDomainQ" guid="54deae2e-bb79-4731-81cd-bb1040bc6d0e" ownerguid="8d490e91-6383-45ea-a3d7-b9c950822f98"> -<ExampleWords> -<AUni ws="en">intolerable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a situation that makes a person feel impatient?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="54e09d48-ff80-467e-905e-a6fcf063feb1" ownerguid="6bf8ce57-1970-4efb-a7d7-b0bf8be6fb6b"> -<ExampleWords> -<AUni ws="en">the wrong time, a bad time, not a good time, be no time, not be the time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the wrong time to do something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="54e0ce45-b781-4db3-b7fb-848fbea00f8a" ownerguid="bb538686-64b5-4a7a-a1b7-835a7843e7cd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">whip</AUni> -<AUni ws="es">azotar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e7fc8721-985a-49e9-842a-e5ab64c8a678" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="54e65ea8-c828-4eb6-a5fd-7db9c46facdf" ownerguid="bf0b24d2-4bd6-4e9c-8775-a623ace8db56"> -<ExampleWords> -<AUni ws="en">spice, flavor, season</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to adding spice to food?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="54ea3254-2c6a-4205-84f8-9a4d3d6ba276" ownerguid="31a7512b-6b46-4d0d-a71b-69a4b837f3ff"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="54ea3f9c-42ff-45f3-883b-05f7479ffa1b" ownerguid="61f52196-a8b2-496d-96ea-8c15dc7d377a"> -<ExampleWords> -<AUni ws="en">miracle worker, prophet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a person who can perform miracles?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="54eb8d27-ebcc-4c4a-8b26-3030747c1e12"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Hebreo</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="54ebd220-1b42-4bbd-a0e1-77e5d4d0a129" ownerguid="89e72c49-ac4e-49d6-b972-b04ad54d9e0d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">form.ball</AUni> -<AUni ws="es">obillar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2f5c5f9e-a882-49cb-b08d-768ea391729c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="54ec3cad-4a0f-48a5-9dd6-36855480ee5d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pachamanca</AUni> -<AUni ws="qvm-x-acl">pachamanca</AUni> -<AUni ws="qvm-x-akh">pachamanka</AUni> -<AUni ws="qvm-x-akl">pachamanka</AUni> -<AUni ws="qvm-x-ame">pachamanka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pachamanka</AUni> -<AUni ws="qvm-x-acl">*pachamanka</AUni> -<AUni ws="qvm-x-akh">*pachamanka</AUni> -<AUni ws="qvm-x-akl">*pachamanka</AUni> -<AUni ws="qvm-x-ame">*pachamanka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.638" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9dc8e159-6107-4251-94a3-221317256a85" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pachamanka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bd5d3eb8-dc4a-4e8b-9f51-e34e29e78436" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="716b1f1a-9fdc-480e-a175-756223c6db7a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pachamanka 
\entryTyp root 
\gENG steamed.meat 
\gSPN pachamanca 
\e *pachamanka 
\c N0 
\ach pachamanca 
\akh pachamanka 
\acl pachamanca 
\akl pachamanka 
\ame pachamanka</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="54f07fb6-71ae-485c-96da-9087a609ae4b" ownerguid="1cb3c52e-5952-4aaf-82af-91b8d2c2b199"> -<Form> -<AUni ws="qvm-x-ach">rucu</AUni> -<AUni ws="qvm-x-acl">rucu; rucu; ruco</AUni> -<AUni ws="qvm-x-akh">ruku</AUni> -<AUni ws="qvm-x-akl">ruku; ruku; ruko</AUni> -<AUni ws="qvm-x-ame">ruku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="54f2d7fc-fc6e-42f2-af8c-536f78bc7a64" ownerguid="d7cdc81e-858f-4f27-be59-e12db8307818"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">desviar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b3c9c6ea-a441-4d01-be67-abfbe4307aa3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="54f4f81e-17bc-4971-9cb8-cdc572cdc8d6" ownerguid="9b267cc1-983c-407a-98d2-1e27add6292c"> -<ExampleWords> -<AUni ws="en">bundle, package, packet, parcel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a group of things that have been tied up?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="54f59b23-a2e8-4bfc-9da2-7dd7c37d2a47" ownerguid="793993ac-20c1-49f0-9716-e4cdc7da4439"> -<Abbreviation> -<AUni ws="en">9.4.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.698" /> -<DateModified val="2022-9-23 16:55:8.698" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate relational tenses. Relational tenses describe situations where the reference time is not the same as the moment of speech. They may be combined with any of the tenses, either in the same morpheme or in combinations of morphemes. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Relational tenses</AUni> -</Name> -<Questions> -<objsur guid="94d354b8-7741-4cfd-b1dd-021bd0714300" t="o" /> -<objsur guid="8477ca23-a33b-4c68-af58-fc17c5e6c1dc" t="o" /> -<objsur guid="1948b5a8-a830-493d-a93d-de6f5cbde00f" t="o" /> -<objsur guid="588831b0-24b0-40b2-8b94-d263ab3634b1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="54f5a592-8b34-4c58-99d3-02121eab62a9" ownerguid="9b13abd6-15b7-4ba6-9106-e0fa8e831712"> -<Form> -<AUni ws="qvm-x-ach">jincuru</AUni> -<AUni ws="qvm-x-acl">jincuru; jincuru; jincuro</AUni> -<AUni ws="qvm-x-akh">jinkuru</AUni> -<AUni ws="qvm-x-akl">jinkuru; jinkuru; jinkuro</AUni> -<AUni ws="qvm-x-ame">hinkuru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="54f5e376-af1f-4a39-a0ea-83ba928bf9b3" ownerguid="2e5acfd2-3009-4496-9cc2-58d2a0088994"> -<ExampleWords> -<AUni ws="en">dandruff, dander</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to dirt in the hair?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="54f7454a-348a-4ae2-8629-59b56c491cd9" ownerguid="a2bbf179-8d38-4d2e-84cd-0e00bb6c74f3"> -<ExampleWords> -<AUni ws="en">crawl, walk on your hand and knees, on all fours, scoot, drag, creep</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to crawling?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="54f78726-75ce-4813-95db-ced459463cc3" ownerguid="ec266c79-865d-436e-a476-6f4e30d85a84"> -<Form> -<AUni ws="qvm-x-ach">carcila</AUni> -<AUni ws="qvm-x-acl">carcila</AUni> -<AUni ws="qvm-x-akh">carcila</AUni> -<AUni ws="qvm-x-akl">carcila</AUni> -<AUni ws="qvm-x-ame">carcila</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="54fb2ae0-1186-4a97-b1cc-b40f090f9368" ownerguid="49ee84ff-eb2b-4ba3-b193-3018d34599c2"> -<ExampleWords> -<AUni ws="en">borrow, take out a loan</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to borrowing money?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="54fd0ad5-7700-4b28-aaf4-b8cf819573c5" ownerguid="2bef8b66-9d06-4ecf-a6cf-0e664b90dd35"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">food</AUni> -<AUni ws="es">comida</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="65929d64-1bf4-44a1-91f9-7c75bacc05f0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="54feea30-58d6-4ec8-9d7b-1fa30c0d5777" ownerguid="1a3ad94a-4efd-4c07-ab05-f11b0827a0f6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="550007a0-3720-47c9-9748-17eba060898c" ownerguid="d117aa22-3f18-47c4-9683-51ecf1dc7134"> -<ExampleWords> -<AUni ws="en">thorn, spine, cactus needle, burr</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What types of thorns are there?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5501c00d-3501-4c10-9967-c9c7302182a1" ownerguid="f841d2d0-ebbe-47cc-b47a-cf2915abeda8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="5502544d-617e-4608-bd6b-80fc8ecf90bb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chirapa; chirapa:</AUni> -<AUni ws="qvm-x-acl">chirapa; chirapa:</AUni> -<AUni ws="qvm-x-akh">chirapa; chirapa:</AUni> -<AUni ws="qvm-x-akl">chirapa; chirapa:</AUni> -<AUni ws="qvm-x-ame">chirapa; chirapa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chirapa:</AUni> -<AUni ws="qvm-x-acl">*chirapa:</AUni> -<AUni ws="qvm-x-akh">*chirapa:</AUni> -<AUni ws="qvm-x-akl">*chirapa:</AUni> -<AUni ws="qvm-x-ame">*chirapa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.323" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="475827d9-6ded-4a32-bff5-7f5631e33987" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chirapa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="875d833f-c5e3-4d7b-b055-e2cb9519d00f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8d09e85b-a87b-4e70-879d-d7f0594119dc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chirapa: 
\entryTyp root 
\gENG drizzle 
\gSPN lloviznar 
\e *chirapa: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach chirapa foreshortened 
\ach chirapa: 
\akh chirapa foreshortened 
\akh chirapa: 
\acl chirapa foreshortened 
\acl chirapa: 
\akl chirapa foreshortened 
\akl chirapa: 
\ame chirapa foreshortened 
\ame chirapa:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="55051bc0-fd09-48ca-8033-ba46a73f8429" ownerguid="5bd88b18-f7b2-48d8-b98f-a2db116373f6"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="55054a60-71a9-4aca-977a-2b2aa72b2637" ownerguid="7f798c10-5a3f-4979-baf1-ced2dc457311"> -<Form> -<AUni ws="qvm-x-ach">mayordömu</AUni> -<AUni ws="qvm-x-acl">mayordömu; mayordömu; mayordömo</AUni> -<AUni ws="qvm-x-akh">mayordömu</AUni> -<AUni ws="qvm-x-akl">mayordömu; mayordömu; mayordömo</AUni> -<AUni ws="qvm-x-ame">mayordömu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="5506b4a0-14ed-4ca1-8d5e-c2bf97607fc0" ownerguid="937ba972-655c-4d39-89f1-753d055c035f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">quench</AUni> -<AUni ws="es">apagar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="61b0fe54-cf02-443a-8832-66ac44630b1d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5509134d-43d5-42ef-963c-0634f74c259c" ownerguid="79ca34ea-68a7-4fe9-b5ac-4f3d6a1ab99d"> -<ExampleWords> -<AUni ws="en">cry, babble, coo, baby talk</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What sounds do babies make?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="550b163a-9517-4f35-b69c-d77e0d5c5797" ownerguid="380b0d15-77a1-49ba-ad83-a508e7ffb83d"> -<ExampleWords> -<AUni ws="en">break</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a storm starting?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="550c3860-c53c-46ef-b7c1-30e203da49af"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jarine:ru</AUni> -<AUni ws="qvm-x-acl">jarine:ru; jarine:ru; jarine:ro</AUni> -<AUni ws="qvm-x-akh">jarine:ru</AUni> -<AUni ws="qvm-x-akl">jarine:ru; jarine:ru; jarine:ro</AUni> -<AUni ws="qvm-x-ame">jarine:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+harinero</AUni> -<AUni ws="qvm-x-acl">+harinero</AUni> -<AUni ws="qvm-x-akh">+harinero</AUni> -<AUni ws="qvm-x-akl">+harinero</AUni> -<AUni ws="qvm-x-ame">+harinero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.680" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0d6956a7-e375-4db4-8d0f-111fa314ea8d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+harinero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a951ff50-d6e3-42ea-b01c-6675b7741d74" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="91e7f3d0-33a5-4c56-bda9-964c828a180b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +harinero 
\entryTyp root 
\gENG 
\gSPN 
\e +harinero 
\c N0 
\ach jarine:ru 
\akh jarine:ru 
\acl jarine:ru / _# 
\acl jarine:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl jarine:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jarine:ru / _# 
\akl jarine:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl jarine:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame jarine:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="550e5497-12c3-4602-b2a7-39597a7f73e7" ownerguid="830d8cda-37a3-4f9d-ac02-4ec5aac52794"> -<Examples> -<objsur guid="c6443645-9ebe-4848-b86c-3526c3e251be" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">to.fasten</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ff982186-e509-4a56-8a54-b26476900954" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="550f2cf4-aedb-4b70-9026-5fe2b734ac1b" ownerguid="ab08a47b-f171-4fef-a21b-97d2ece0654f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">complete</AUni> -<AUni ws="es">completo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="62d7100a-8944-4b1c-a677-7e606db3f5a9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="550fea46-5c7f-4751-a0b3-f0e06e15e121"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sa:bana</AUni> -<AUni ws="qvm-x-acl">sa:bana</AUni> -<AUni ws="qvm-x-akh">sa:bana</AUni> -<AUni ws="qvm-x-akl">sa:bana</AUni> -<AUni ws="qvm-x-ame">sa:bana</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sabana</AUni> -<AUni ws="qvm-x-acl">+sabana</AUni> -<AUni ws="qvm-x-akh">+sabana</AUni> -<AUni ws="qvm-x-akl">+sabana</AUni> -<AUni ws="qvm-x-ame">+sabana</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.409" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fa16dfad-3dd3-4a5e-b119-d5a2d79c0388" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sabana</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2949cd82-21b1-4c67-809a-f2b3fc173a6b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6a715b69-f00c-41f8-aa53-a015b42c9646" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sabana 
\entryTyp root 
\gENG sheet 
\gSPN sabana 
\e +sabana 
\c N0 
\ach sa:bana 
\akh sa:bana 
\acl sa:bana 
\akl sa:bana 
\ame sa:bana</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="5510f56e-515b-481a-83d6-9a1627aaf55f"> -<Form> -<Str> -<Run ws="qvm-x-akh">>>.</Run> -</Str> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="55111b42-c776-4ed3-838f-62ecff08b7c5" ownerguid="69ab79c6-a469-4aca-9bab-1f39c2ef6ce2"> -<Form> -<AUni ws="qvm-x-ach">riccha</AUni> -<AUni ws="qvm-x-acl">riccha</AUni> -<AUni ws="qvm-x-akh">rikcha</AUni> -<AUni ws="qvm-x-akl">rikcha</AUni> -<AUni ws="qvm-x-ame">rikcha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="5511f489-03d5-43aa-9df2-c67319587b80"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">usa</AUni> -<AUni ws="qvm-x-acl">usa</AUni> -<AUni ws="qvm-x-akh">usa</AUni> -<AUni ws="qvm-x-akl">usa</AUni> -<AUni ws="qvm-x-ame">usa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*usa.n</AUni> -<AUni ws="qvm-x-acl">*usa.n</AUni> -<AUni ws="qvm-x-akh">*usa.n</AUni> -<AUni ws="qvm-x-akl">*usa.n</AUni> -<AUni ws="qvm-x-ame">*usa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.282" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8e943e82-9331-4306-9d21-f36cb0d158f2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*usa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bbb4d4df-fdfa-4edb-b741-d17bc81e22de" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="472b3d7e-395c-4f08-bc6f-b55326e39887" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *usa.n 
\entryTyp root 
\gENG flea 
\gSPN piojo 
\e *usa.n 
\c N0 
\ach usa 
\akh usa 
\acl usa 
\akl usa 
\ame usa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="55123710-c5f8-47d8-8695-9cb944d9b2a1" ownerguid="9d8bb0ed-a6c2-4592-a4b7-ba28311c5664"> -<Form> -<AUni ws="qvm-x-ach">pilpintuy</AUni> -<AUni ws="qvm-x-acl">pilpintuy</AUni> -<AUni ws="qvm-x-akh">pilpintuy</AUni> -<AUni ws="qvm-x-akl">pilpintuy</AUni> -<AUni ws="qvm-x-ame">pilpintuy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="5512ff0a-f0db-4595-b912-2a5605d95d24" ownerguid="436c4a88-703d-4237-815a-547ab5488ffe"> -<Form> -<AUni ws="qvm-x-ach">asya; asyä</AUni> -<AUni ws="qvm-x-acl">asya; asyä</AUni> -<AUni ws="qvm-x-akh">asya; asyä</AUni> -<AUni ws="qvm-x-akl">asya; asyä</AUni> -<AUni ws="qvm-x-ame">asya; asyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="551834a7-bfa0-472c-af5e-5a1ea8a61fe0"> -<Analyses> -<objsur guid="d7cd6668-9bae-4d42-bca4-f870f4885424" t="o" /> -</Analyses> -<Checksum val="-410223828" /> -<Form> -<AUni ws="qvm-x-akh">aywaramuptiki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="55201761-fe2e-40d5-a2a7-8079e00a2c32" ownerguid="f7da1907-e6c5-4d21-a8e8-81376f3467df"> -<Abbreviation> -<AUni ws="en">4.8.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.276" /> -<DateModified val="2022-9-23 16:55:8.276" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to fighting someone. The words in this domain describe a situation in which two people or groups of people fight each other over something or in order to reach some goal. A fight can use words, various kinds of weapons, or other actions. For fights that only use words use the domain 'Quarrel'.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>55B To Fight</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Fight</AUni> -</Name> -<Questions> -<objsur guid="2de628a6-0dbf-422d-94d3-b355f76539fa" t="o" /> -<objsur guid="0058de9c-6aba-48da-b3ce-31530335177d" t="o" /> -<objsur guid="f6bf2a74-0130-4664-b02c-0552b25163be" t="o" /> -<objsur guid="b62114a5-8930-4dd5-aefe-b358b1875352" t="o" /> -<objsur guid="ed193ed9-8f1a-422c-b137-6a993ad840bd" t="o" /> -<objsur guid="b6ceeefe-c4ee-46e7-adc0-37f543e1ae9b" t="o" /> -<objsur guid="b29ec11f-3eb5-4253-8639-9c9b2940a456" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="e5020b79-6fb0-4be4-a359-d4f899da5c7e" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="e072bd42-eb0f-48c8-97fd-ae9ca8bc3a75" t="o" /> -<objsur guid="37e6c8b5-f63c-4f5b-8c16-eccd727d6618" t="o" /> -<objsur guid="80563285-4de7-4040-8080-a5b22208e7d5" t="o" /> -<objsur guid="243d8a57-d5ed-4d7f-bd5e-f2605634f0fc" t="o" /> -<objsur guid="530ff7e0-e3cb-4dc3-9c1c-3034969e1ce8" t="o" /> -<objsur guid="8594cb26-9f3c-48f5-b00b-f055eb5a5e61" t="o" /> -<objsur guid="0066f0f7-02dd-4f8e-afa5-59b8cb5a434a" t="o" /> -<objsur guid="8a7fdd75-01dc-4d40-84ff-fa0484da3abb" t="o" /> -<objsur guid="77f27500-aad8-409c-a28e-92df73794dce" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="552129d9-36c0-409a-b81d-284c747c79f4" ownerguid="f858278a-2727-4403-9cf0-565cdececb1e"> -<Question> -<AUni ws="en">(4) hypothetical: the situation is unreal or imagined, but one that could be true: 'If we moved, we could have a garden'.</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="55215ef6-63f2-4b29-a518-db04290c4508" ownerguid="aea88426-5f10-4b18-9364-eee04437c4ee"> -<Form> -<AUni ws="qvm-x-ach">ñäpush</AUni> -<AUni ws="qvm-x-acl">ñäpush</AUni> -<AUni ws="qvm-x-akh">ñäpush</AUni> -<AUni ws="qvm-x-akl">ñäpush</AUni> -<AUni ws="qvm-x-ame">ñäpush</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="55220cca-1c1b-4ab5-add5-624774e41ae7" ownerguid="529f86f1-b0dd-4706-9196-97797adab7a2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hat</AUni> -<AUni ws="es">sombrero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="87fd66f8-8dc3-415f-971b-309e2127ddb2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="552445f6-0078-47cf-8f00-fd16d33eef8f" ownerguid="5a021f98-2efb-4baf-9384-a553dc3df86c"> -<ExampleWords> -<AUni ws="en">return, come back, move back</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to returning to a place?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="5524a85c-0fa3-49d2-8f89-a97330bfa12a" ownerguid="9cafb420-1105-4825-99d4-0fab3bca82f4"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 77.17 Ciëluchömi räyupis bunrurömorgan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="5524c811-b59b-4e49-bc67-939a10190097" ownerguid="ef876104-eb3e-420d-9c7b-124538a7b2a6"> -<ExampleWords> -<AUni ws="en">indicate, point to, point at, point out, signal that, gesture towards</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to indicating something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5526d30f-6d66-480f-959b-12d4682e4d7f" ownerguid="c6b6486e-c1ae-4f85-9aac-421c5fd21f78"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">engineer</AUni> -<AUni ws="es">ingeniero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5036e8ec-c327-464b-af61-7922f69851d3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="552853d3-9ae3-497f-b3f0-6fa813b00659" ownerguid="de2888bf-7980-4a80-a111-f62fbd2b3260"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.corral</AUni> -<AUni ws="es">separar.becerro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a6ece11b-4058-4d50-bf9d-aba44343ef1c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="552921ee-61b0-4b79-b398-e35100319eb1" ownerguid="b233ad14-84dc-4edd-9d8d-cc86dc46719e"> -<Form> -<AUni ws="qvm-x-ach">pilu</AUni> -<AUni ws="qvm-x-acl">pilu; pilo</AUni> -<AUni ws="qvm-x-akh">pilu</AUni> -<AUni ws="qvm-x-akl">pilu; pilo</AUni> -<AUni ws="qvm-x-ame">pilu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="552a3444-6065-4aab-abcc-3f848c339134" ownerguid="ba608290-4c3c-4144-8b70-10aa77bc0243"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="552c59e0-7e36-45a5-9857-0aa86aa165a8" ownerguid="b0905fa9-2f90-410b-8eb5-7c7944c4f0f9"> -<ExampleWords> -<AUni ws="en">prostitute (oneself), prostitution, solicit sex, sell (oneself)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to what prostitutes do?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="552fde46-f7cd-4930-a375-7abec907ec46" ownerguid="adb5072a-99a3-4f4e-8a2d-5b24cae783d9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">small.man</AUni> -<AUni ws="es">hombre.chico</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6adf1e67-dfd0-458a-a11a-841cedac9549" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="55311d7b-b97b-462e-93fd-2ac0d0e04533" ownerguid="738a09a5-59df-40f9-8a4e-176e00d03bbf"> -<ExampleWords> -<AUni ws="en">hilt, blade, guard</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What are the parts of a sword?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5531a8b4-9211-4096-bf50-f30a3f93f344" ownerguid="78e89dd6-63de-4790-951f-7fc979548e59"> -<Form> -<AUni ws="qvm-x-ach">chacha</AUni> -<AUni ws="qvm-x-acl">chacha</AUni> -<AUni ws="qvm-x-akh">chacha</AUni> -<AUni ws="qvm-x-akl">chacha</AUni> -<AUni ws="qvm-x-ame">chacha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="5537653f-05e8-4263-bac6-9dbcce4dfd5a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">salva</AUni> -<AUni ws="qvm-x-acl">salva</AUni> -<AUni ws="qvm-x-akh">salva</AUni> -<AUni ws="qvm-x-akl">salva</AUni> -<AUni ws="qvm-x-ame">salva</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+salvar</AUni> -<AUni ws="qvm-x-acl">+salvar</AUni> -<AUni ws="qvm-x-akh">+salvar</AUni> -<AUni ws="qvm-x-akl">+salvar</AUni> -<AUni ws="qvm-x-ame">+salvar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.439" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eff9043a-9416-400d-998b-6d9ee6367104" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+salvar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d64bf434-ed96-421c-bba2-300182b3dbf9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9df81722-58b7-4744-a53d-42a1351de886" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +salvar 
\entryTyp root 
\gENG save 
\gSPN salvar 
\e +salvar 
\c V2 
\ach salva 
\akh salva 
\acl salva 
\akl salva 
\ame salva</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5539441a-ec80-4d0c-9d20-8bb2173f56d6" ownerguid="32172222-630c-4f4e-bbe3-de396bf4472c"> -<Form> -<AUni ws="qvm-x-ach">arinïlla</AUni> -<AUni ws="qvm-x-acl">arinïlla</AUni> -<AUni ws="qvm-x-akh">arinïlla</AUni> -<AUni ws="qvm-x-akl">arinïlla</AUni> -<AUni ws="qvm-x-ame">arinïlla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5539e657-f5ff-4354-b36d-abe308e1c911" ownerguid="8894cac9-c82a-4616-856e-0516d2ed1df7"> -<ExampleWords> -<AUni ws="en">ambiguous, double meaning, double talk</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that has two meanings?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="553c001f-c1bd-4537-a83e-83b9255f8ba5" ownerguid="2b846476-00cf-4d82-97a1-26e1eda880ca"> -<ExampleWords> -<AUni ws="en">brat, nuisance, pest, bully</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a bad child?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="553e250a-6173-46d6-9997-a6383bae3ab4" ownerguid="afdd8b8e-9502-4d06-94ee-e79815b65750"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">I <almost> hit you.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">almost, nearly, very nearly, come close to, be on the verge of, come within an inch of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words indicate that someone almost does something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5542c7da-b266-4ff0-8ae0-23a7af5123ff" ownerguid="38824245-7f7d-4081-ab7c-29c35d481dc3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="554563df-4409-4e8d-b668-1213e2234a35" ownerguid="69c031e3-024d-4201-a0a5-2ef4003f3e80"> -<Form> -<AUni ws="qvm-x-ach">anula</AUni> -<AUni ws="qvm-x-acl">anula</AUni> -<AUni ws="qvm-x-akh">anula</AUni> -<AUni ws="qvm-x-akl">anula</AUni> -<AUni ws="qvm-x-ame">anula</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="554604a1-0d94-47dc-b6d6-e21efb3d8b7c" ownerguid="6105a207-4311-4920-8c19-63259424bfaf"> -<ExampleWords> -<AUni ws="en">believe, repent, return (to God), receive, work, earn</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to what a person does to be saved?</AUni> -</Question> -</rt> -<rt class="MoInflAffMsa" guid="554634ac-1f6d-4bfc-8e9c-9d1dfeca4367" ownerguid="a50162fb-f652-4f20-a9b9-e9b75a422af5"> -<InflFeats> -<objsur guid="24345e2d-4861-4c31-9052-304787d41236" t="o" /> -</InflFeats> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="34426d22-8e6e-44f9-9308-73fe011a7617" t="r" /> -</Slots> -</rt> -<rt class="LexSense" guid="5547d3c9-e3de-4584-86c4-46a703f00d5c" ownerguid="9fac006a-4f92-4b0a-b6ce-425f5cd03386"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">friday</AUni> -<AUni ws="es">viernes</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6ad430df-5a3e-4662-8f7c-e1be3d7740a7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="554b3b38-c53e-46c2-9a7a-ed9cade4673a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">papel; papil</AUni> -<AUni ws="qvm-x-acl">papel; papil; papel</AUni> -<AUni ws="qvm-x-akh">papel; papil</AUni> -<AUni ws="qvm-x-akl">papel; papil; papel</AUni> -<AUni ws="qvm-x-ame">papel; papil</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+papel</AUni> -<AUni ws="qvm-x-acl">+papel</AUni> -<AUni ws="qvm-x-akh">+papel</AUni> -<AUni ws="qvm-x-akl">+papel</AUni> -<AUni ws="qvm-x-ame">+papel</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.699" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="21e34963-9abf-43b6-af83-d46d11dcf72b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+papel</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b2d9dfb0-69c7-416b-a2bb-e353fa6f562b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f2f54edd-fabe-41c7-bc1c-18188b950db7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +papel 
\entryTyp root 
\gENG paper 
\gSPN papél 
\e +papel 
\c N0 
\mp +FinalC 
\ach papel / _# 
\ach papil / ~_# 
\akh papel / _# 
\akh papil / ~_# 
\acl papel / _# 
\acl papil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl papel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl papel / _# 
\akl papil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl papel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame papel / _# 
\ame papil / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="554bd868-1dbc-4a29-bfa7-2d59597c9edc" ownerguid="04fd75ce-6570-43d3-991f-e501f53f322f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mourner</AUni> -<AUni ws="es">doliente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d987c15d-a131-4127-8b9b-31f0334989c4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="554f6c93-2257-433d-b932-71739259fbf8" ownerguid="ffdce87f-8f49-4afd-a98f-5a056b832fea"> -<Form> -<AUni ws="qvm-x-ach">öchu</AUni> -<AUni ws="qvm-x-acl">öchu; öchu; öcho</AUni> -<AUni ws="qvm-x-akh">öchu</AUni> -<AUni ws="qvm-x-akl">öchu; öchu; öcho</AUni> -<AUni ws="qvm-x-ame">öchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="554fd48b-56bb-4abf-81ea-4f0c56c8708c" ownerguid="3d5d93ce-00e0-46ff-b220-553c12c38381"> -<ExampleWords> -<AUni ws="en">breast, nipple, vagina, clitoris, uterus, womb, ovary, egg, vulva, labia majora, labia minora, vestibule, genitals, private parts</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the female organs?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="5551f669-39d0-4cdc-829c-f507cf23b39b"> -<Analyses> -<objsur guid="8602761b-c356-403d-a5cf-8687d677c5c7" t="o" /> -</Analyses> -<Checksum val="1027630400" /> -<Form> -<AUni ws="qvm-x-akh">rikapäkashqayki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="55536258-f3e0-4ba8-b8e7-1671f8a18bc2" ownerguid="aae9abba-b532-4791-baee-79e7ca97789d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sup</AUni> -<AUni ws="es">merendar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7f341698-3f00-4314-8bd2-b29fde568570" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5553bfb2-778b-4379-8e1c-b080581c9bbc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">afán; afan</AUni> -<AUni ws="qvm-x-acl">afán; afan</AUni> -<AUni ws="qvm-x-akh">afán; afan</AUni> -<AUni ws="qvm-x-akl">afán; afan</AUni> -<AUni ws="qvm-x-ame">afán; afan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+afán</AUni> -<AUni ws="qvm-x-acl">+afán</AUni> -<AUni ws="qvm-x-akh">+afán</AUni> -<AUni ws="qvm-x-akl">+afán</AUni> -<AUni ws="qvm-x-ame">+afán</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.659" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8dc5d26d-230b-4409-b6d1-598a9ddbecec" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+afán</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dac3d089-ebf0-447f-bf0c-85d316cebb42" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5f2f8bd0-7e8c-46e3-9240-519cb139388b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +afán 
\entryTyp root 
\gENG trouble 
\gSPN afán 
\e +afán 
\c N0 
\mp +FinalC 
\ach afán / _# 
\ach afan / ~_# 
\akh afán / _# 
\akh afan / ~_# 
\acl afán / _# 
\acl afan / ~_# 
\akl afán / _# 
\akl afan / ~_# 
\ame afán / _# 
\ame afan / ~_# 
\i 2SA 19.35 Pusag chunca (80) watatanami ushaycä, tayta. Micurpis ni upurpis gustunta manami tarënatsu. Warmi ni olgu cantaycashgantapis manami tantyänatsu. Tsaynog caycarga ¿imapagnatag afanniquipag aywashagpis? 
\i PRO 15.6 Fiyu runapaga tarishgalanpis afannilanpagmi caycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="5557909e-dd68-490a-8495-66bc75256739" ownerguid="6b836eab-0b1e-425c-9f13-3e53a0b6f06b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="0f97e0b7-58a8-4508-9f28-20482dcca48e" t="o" /> -<objsur guid="85e62193-7f43-4fda-8cb2-7b36f33a901b" t="o" /> -<objsur guid="b67165aa-e672-436e-b1ea-25015823d83c" t="o" /> -<objsur guid="9ea5aa99-9806-46a9-af70-e80c3f8faaa0" t="o" /> -<objsur guid="2552ab27-56ff-4eca-8ac4-8796f68a5d71" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="5559606d-2cac-4c7a-bda5-2f5dc561d430" ownerguid="5d1bb537-bcee-49f4-bb91-86f347bc471d"> -<Form> -<AUni ws="qvm-x-ach">atsicya</AUni> -<AUni ws="qvm-x-acl">atsicya</AUni> -<AUni ws="qvm-x-akh">atsikya</AUni> -<AUni ws="qvm-x-akl">atsikya</AUni> -<AUni ws="qvm-x-ame">atsikya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="b27c54e7-0a24-46d7-b332-e63a45ecffc2" t="r" /> -</PhoneEnv> -</rt> -<rt class="CmDomainQ" guid="555c5e7f-1b0a-4895-abe8-24bdee36c105" ownerguid="82e4394a-2f58-4356-8d9c-1ad9dbe95293"> -<ExampleWords> -<AUni ws="en">be cold, feel cold, look cold, freezing, frozen, feel the cold</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to feeling cold?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="555ce911-c73f-440b-9d70-144df6b1491e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">suncha</AUni> -<AUni ws="qvm-x-acl">suncha</AUni> -<AUni ws="qvm-x-akh">suncha</AUni> -<AUni ws="qvm-x-akl">suncha</AUni> -<AUni ws="qvm-x-ame">suncha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*suntra</AUni> -<AUni ws="qvm-x-acl">*suntra</AUni> -<AUni ws="qvm-x-akh">*suntra</AUni> -<AUni ws="qvm-x-akl">*suntra</AUni> -<AUni ws="qvm-x-ame">*suntra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.754" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8daa5d27-4f4b-48ea-b3da-e88814ad9672" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*suntra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f00a40ad-57f6-4ebb-9896-c738cf8435d1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d7a6b395-560c-4a45-ad32-71c48b111599" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *suntra 
\entryTyp root 
\gENG fly 
\gSPN mosca azul 
\e *suntra 
\c N0 
\ach suncha 
\akh suncha 
\acl suncha 
\akl suncha 
\ame suncha</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="555f7d67-bb01-4563-a960-4ffde46df299" ownerguid="b0eda643-cc55-41f2-8fd4-152db522e813"> -<Form> -<AUni ws="qvm-x-ach">tëchu</AUni> -<AUni ws="qvm-x-acl">tëchu; tëchu; tëcho</AUni> -<AUni ws="qvm-x-akh">tëchu</AUni> -<AUni ws="qvm-x-akl">tëchu; tëchu; tëcho</AUni> -<AUni ws="qvm-x-ame">tëchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="555fc49b-10a0-4429-96a5-664a7cbe5b34" ownerguid="6eaf4efd-cd63-477e-a0c4-16241a02b050"> -<Form> -<AUni ws="qvm-x-ach">waras</AUni> -<AUni ws="qvm-x-acl">waras</AUni> -<AUni ws="qvm-x-akh">waras</AUni> -<AUni ws="qvm-x-akl">waras</AUni> -<AUni ws="qvm-x-ame">waras</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="555ff2f6-44ba-44b8-a1a3-4e04c18c24d6" ownerguid="82ae1b44-f12c-4cad-8c3b-55ad2c64abd4"> -<Form> -<AUni ws="qvm-x-ach">tunay</AUni> -<AUni ws="qvm-x-acl">tunay</AUni> -<AUni ws="qvm-x-akh">tunay</AUni> -<AUni ws="qvm-x-akl">tunay</AUni> -<AUni ws="qvm-x-ame">tunay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="55622904-f2be-42e8-96e4-6df71db64dbe" ownerguid="45d80a0b-dc9c-49ec-ba53-0031a75347c4"> -<Form> -<AUni ws="qvm-x-ach">mastil</AUni> -<AUni ws="qvm-x-acl">mastil</AUni> -<AUni ws="qvm-x-akh">mastil</AUni> -<AUni ws="qvm-x-akl">mastil</AUni> -<AUni ws="qvm-x-ame">mastil</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="55626b56-bb0a-42f0-a89d-dbbddc7136b2" ownerguid="2a6a1f3b-6f03-4a6a-ba58-77e5f136229b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">r</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">r</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">r</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">r</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">r</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a96fae79-db91-498f-a3f4-4aaeff3f9499" t="r" /> -</Morph> -<Msa> -<objsur guid="973e08a0-60b3-4ff1-9973-ac70ea0a16bc" t="r" /> -</Msa> -<Sense> -<objsur guid="bb533f0d-2a18-4637-90ce-86198308d1f8" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="55645ded-4ef8-4c84-9fb1-b7f1f113bebf" ownerguid="1438c623-c4ce-4559-b71b-cfb86a71e6d7"> -<ExampleWords> -<AUni ws="en">kindling, tinder, punk</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What materials are used as kindling?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="55671b8d-5f2a-41c4-96ec-9b35c7ba7d4d" ownerguid="37f6a1d9-985d-465e-b62d-37c1f9bf855b"> -<ExampleWords> -<AUni ws="en">ear, husk, stalk, silk</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to growing maize?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5567d858-a80f-458e-afb2-d67e30f025f3" ownerguid="3b734f1e-083d-42c4-b4ef-5b03e13e3525"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="639ce4be-4158-4caf-bc40-de3e2d4cdc15" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="8e15ab9f-d4e7-49b7-93ad-70ad2e68fdaf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="55693322-69d9-4e03-bdbf-190089f1a0ae" ownerguid="4a59d4da-141b-4e72-9281-9e73ea3e01ad"> -<Form> -<AUni ws="qvm-x-ach">puntincuy</AUni> -<AUni ws="qvm-x-acl">puntincuy</AUni> -<AUni ws="qvm-x-akh">puntinkuy</AUni> -<AUni ws="qvm-x-akl">puntinkuy</AUni> -<AUni ws="qvm-x-ame">puntinkuy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="556aee88-d6f9-48e0-a3d2-6d2b62564a41" ownerguid="8242fc85-a703-4efa-a78a-0556a84e811e"> -<ExampleWords> -<AUni ws="en">chew, gnaw, masticate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to chewing?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5574e733-743b-4fd2-a98d-79c597a3342c" ownerguid="d53b457a-a080-4f9e-9757-70adf465fb77"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hang.from.neck</AUni> -<AUni ws="es">colgar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2fdc30cd-57ab-469a-924a-84b3a4f0b171" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="557976c5-80be-4267-bba8-ac7eba7b714f" ownerguid="d4521b0f-0703-48cc-94a0-f42ccc09959c"> -<ExampleWords> -<AUni ws="en">amount, how much, however many, however much, plenty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What pronouns express indefinite reference of an amount?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5579819b-8c37-476d-8d0a-5115fb9005cb" ownerguid="d03e0238-8dd1-4b6c-af7f-65093517b71e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spouse</AUni> -<AUni ws="es">esposo/a</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e9c0ead2-6591-4da3-9f59-1b2746179c38" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="557b8be6-96a3-4928-bbe7-a000d6aca045" ownerguid="d983c9fa-5bb7-4f7a-a5b4-50c730f6c2ac"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="fcaf189b-d02a-40d1-bf07-fd49f8411531" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="557c912e-5223-4c38-a818-f3638bb3b1ef"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">peligru; peligro</AUni> -<AUni ws="qvm-x-acl">peligru; peligru; peligro</AUni> -<AUni ws="qvm-x-akh">peligru; peligro</AUni> -<AUni ws="qvm-x-akl">peligru; peligru; peligro</AUni> -<AUni ws="qvm-x-ame">peligru; peligro</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+peligro</AUni> -<AUni ws="qvm-x-acl">+peligro</AUni> -<AUni ws="qvm-x-akh">+peligro</AUni> -<AUni ws="qvm-x-akl">+peligro</AUni> -<AUni ws="qvm-x-ame">+peligro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.788" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1437cb54-3dab-4b6b-b98b-307049e28b4c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+peligro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a9b1ce81-3034-433c-907a-aa582e9b69da" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5d870c36-d778-473c-a1a7-f426c430d315" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +peligro 
\entryTyp root 
\gENG danger 
\gSPN peligro 
\e +peligro 
\c N0 
\ach peligru / ~_# 
\ach peligro / _# 
\akh peligru / ~_# 
\akh peligro / _# 
\acl peligru / ~_# 
\acl peligru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl peligro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl peligru / ~_# 
\akl peligru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl peligro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame peligru / ~_# 
\ame peligro / _# 
\i PRO 8.36 Nogapita witicogcunaga peligruchömi caycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="557e96f1-ae8f-4067-8479-e7bc118ee7a8" ownerguid="8f779877-7d86-4683-8a8b-298c7fc62815"> -<ExampleWords> -<AUni ws="en">speak for too long, go over the time allotted, be long winded, speak forever</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to speaking too long?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="55865c7d-3e65-4bba-9554-1824efc1bc43" ownerguid="7a26a6e3-5fd9-4921-a5c6-5962f9011330"> -<Form> -<AUni ws="qvm-x-ach">achuna</AUni> -<AUni ws="qvm-x-acl">achuna</AUni> -<AUni ws="qvm-x-akh">achuna</AUni> -<AUni ws="qvm-x-akl">achuna</AUni> -<AUni ws="qvm-x-ame">achuna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="55878268-a9ed-44ae-8424-02e7dd245f3f" ownerguid="3b673a05-fd79-4b49-a972-6bdacd6a03b8"> -<Form> -<AUni ws="qvm-x-ach">casha</AUni> -<AUni ws="qvm-x-acl">casha</AUni> -<AUni ws="qvm-x-akh">kasha</AUni> -<AUni ws="qvm-x-akl">kasha</AUni> -<AUni ws="qvm-x-ame">kasha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="55886710-655e-45c5-b5fe-492dea7b561a" ownerguid="70e2d960-8053-46de-9e06-6bf44dd1e73d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">calmly</AUni> -<AUni ws="es">pacfficamente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ad4de49d-b604-4574-bd16-b9470424f896" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="55897412-6224-4a2d-950b-ff857c5c072a" ownerguid="34fe8676-7bda-493d-a012-bc5748e87823"> -<ExampleWords> -<AUni ws="en">pointed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is pointed?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="558f6059-024a-4c7c-95c4-ebcfad4272c1" ownerguid="aaf4227a-cfb7-4470-b67d-0c41f8f232d7"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="55964875-25eb-4a74-be41-8620550b2c3c" ownerguid="afa77a2a-8b0f-4a39-91bc-040e90ffbb3a"> -<ExampleWords> -<AUni ws="en">blissfully happy, overjoyed, delighted, ecstatic, elated, exultant, joyful, jubilant, radiant, thrilled</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe a person who is very happy?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="55989abb-453d-4bcf-bac3-3667e726212a" ownerguid="5a48d8b8-ccea-4ad3-8577-00bc6a9522bb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="5599f456-9957-4529-b870-177df1c88311" ownerguid="abdf2b3e-9fb0-43cf-98f4-fd674f8dd8ad"> -<Form> -<AUni ws="qvm-x-ach">legpi</AUni> -<AUni ws="qvm-x-acl">legpi; legpe</AUni> -<AUni ws="qvm-x-akh">leqpi</AUni> -<AUni ws="qvm-x-akl">leqpi; leqpe</AUni> -<AUni ws="qvm-x-ame">liqpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="559a3d81-c4de-4b23-b6c7-7a1652bfc651" ownerguid="8add7f4d-333b-4b2c-9999-48a14162152b"> -<ExampleWords> -<AUni ws="en">put a knife to your throat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to controlling your eating?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="559a72ac-ccbb-4054-b1ad-1a0dd3194718" ownerguid="1fce8fce-183c-4845-ac4d-dcfa16d7bbf5"> -<Form> -<AUni ws="qvm-x-ach">adivinanza</AUni> -<AUni ws="qvm-x-acl">adivinanza</AUni> -<AUni ws="qvm-x-akh">adivinanza</AUni> -<AUni ws="qvm-x-akl">adivinanza</AUni> -<AUni ws="qvm-x-ame">adivinanza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="559afa18-cfda-4af5-ae86-4c7da92b02b6" ownerguid="adf6ad2b-7af9-4bd8-a7b4-f864b9dad86d"> -<ExampleWords> -<AUni ws="en">initiate (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a person who is being initiated?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="559d371f-80cf-49ba-a55b-c636d110f091"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">to:chi</AUni> -<AUni ws="qvm-x-acl">to:chi; to:chi; to:che</AUni> -<AUni ws="qvm-x-akh">to:chi</AUni> -<AUni ws="qvm-x-akl">to:chi; to:chi; to:che</AUni> -<AUni ws="qvm-x-ame">tu:chi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*to:chi</AUni> -<AUni ws="qvm-x-acl">*to:chi</AUni> -<AUni ws="qvm-x-akh">*to:chi</AUni> -<AUni ws="qvm-x-akl">*to:chi</AUni> -<AUni ws="qvm-x-ame">*to:chi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.944" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e608de22-6253-461a-adf8-044d329802c4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*to:chi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ce7e2a9e-24d3-4e5d-8d8c-bd5d0e41553c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f1eaedb7-cc06-4d24-899c-5ac0869d0838" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *to:chi 
\entryTyp root 
\gENG 
\gSPN 
\e *to:chi 
\c R0 
\mp +FinalI 
\ach to:chi 
\akh to:chi 
\acl to:chi / _# 
\acl to:chi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl to:che +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl to:chi / _# 
\akl to:chi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl to:che +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tu:chi 
\i AMO 2.13 Tsayno kapäkushqaykipitami töchi töchi cargashqa aywaykaq carrëta imatapis aqashqanno qamkunatapis ushakätsishayki.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="559d729a-aacf-4f08-8c6b-9790df0ce37e" ownerguid="45576422-ebcd-417b-b5ad-9b895f2be5d6"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="559fd8df-3be1-4039-a74a-87acd3dd40f7" ownerguid="0fabc72a-ce97-41f3-8a2d-2f27eae09499"> -<ExampleWords> -<AUni ws="en">square</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is square?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="559fdf43-07c3-4b51-9290-6a5afc40a400"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">REL1</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="Segment" guid="55a0c853-efdb-46c1-8cb6-0b6353ca1872" ownerguid="ba68d75f-8408-48e8-87be-ace5fb79182f"> -<Analyses> -<objsur guid="4495f9fb-3ebe-4456-b7e3-c9439cf85dbb" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="55a10289-8ef0-4ec4-8fde-4d55fbb123d5" ownerguid="a668d97a-2871-419e-92db-24117893702f"> -<Form> -<AUni ws="qvm-x-ach">alisna</AUni> -<AUni ws="qvm-x-acl">alisna</AUni> -<AUni ws="qvm-x-akh">alisna</AUni> -<AUni ws="qvm-x-akl">alisna</AUni> -<AUni ws="qvm-x-ame">alisna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="55a1a18f-fd33-46c8-ac22-c9840bbcbb71" ownerguid="d7ba3de4-ad9f-4c16-9ec2-156c6befeaf3"> -<Form> -<AUni ws="qvm-x-ach">laju</AUni> -<AUni ws="qvm-x-acl">laju; lajo</AUni> -<AUni ws="qvm-x-akh">laju</AUni> -<AUni ws="qvm-x-akl">laju; lajo</AUni> -<AUni ws="qvm-x-ame">lahu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="55a216b6-99d3-434b-8119-0342742bc4cc" ownerguid="188fa1eb-3f9c-4d8b-ab1c-ba814d8889c8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">harvest</AUni> -<AUni ws="es">cosechar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="663abbb4-7a3c-41bd-b6af-b541d6f59231" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="55a2846c-efed-44da-af23-003132a57fed" ownerguid="a3fe0ca2-64fe-44db-ac3f-14513385bc25"> -<ExampleWords> -<AUni ws="en">get into bed, crawl into bed, curl up in bed, get under the covers, crawl under the covers, fall into bed (exhausted), jump in bed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to getting into bed?</AUni> -</Question> -</rt> -<rt class="WfiGloss" guid="55a589b5-8964-40ac-a796-7430dbac9ce6" ownerguid="822f98ef-e788-4b74-9c6a-956f8c65efc0"> -<Form> -<AUni ws="en">you</AUni> -<AUni ws="es">tú</AUni> -</Form> -</rt> -<rt class="LexSense" guid="55a73fd6-d5db-44de-9582-f5ba41cf0acb" ownerguid="e00d6de6-3b0b-448c-b96a-f4b02749e50a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">long.rock</AUni> -<AUni ws="es">roca.larga</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ca9ed54e-e431-4020-b55b-544ef6025da6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="55a7b809-4196-4c5a-a6d6-09b586ce71e7" ownerguid="6bf7569e-dc79-49da-9ce1-e2e03303828a"> -<Abbreviation> -<AUni ws="en">4.7.7.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to ostracizing someone--excluding someone from society as punishment for some wrong.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Ostracize</AUni> -</Name> -<Questions> -<objsur guid="960b77e6-af97-4884-a094-0c5295fb8964" t="o" /> -<objsur guid="3406a2ad-775c-4046-97ce-56be7ff67627" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="55a84bff-7f7d-4410-be35-dc129dd11617" ownerguid="57fdd16c-87d1-4ad5-8b26-7b00a4fd6b1f"> -<Form> -<AUni ws="qvm-x-ach">upu</AUni> -<AUni ws="qvm-x-acl">upu; upo</AUni> -<AUni ws="qvm-x-akh">upu</AUni> -<AUni ws="qvm-x-akl">upu; upo</AUni> -<AUni ws="qvm-x-ame">upu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="55adb5d5-8613-4b7b-ae01-4eb517c12288" ownerguid="27048124-c204-4585-9997-c51728f085d6"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Don't mention it. That's all right. That's OK. You're welcome. My pleasure. Not at all. Think nothing of it. It was nothing. No problem.</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(6) What do people say when someone thanks them?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="55adb89d-f493-40ef-939e-6331421af73a" ownerguid="fa9b59c0-3c29-4678-afc7-a013692f307d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">break.up</AUni> -<AUni ws="es">deshacer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="adf046be-1f4d-4ebe-b51f-c89dba72da1c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="55ae8bd7-f068-42ac-8167-fde63c3ab581" ownerguid="6fa1d5b6-004a-4a06-a2df-e68a20fbf996"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">throne</AUni> -<AUni ws="es">trono</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="733be8b8-ce83-4ae6-b900-41d52ea3cd2f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="55ae92a6-ea7e-4541-9f3a-e7acd2337621" ownerguid="6e71a43a-5fdf-4607-adde-4aec7a9c5871"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tree</AUni> -<AUni ws="es">quino</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e92c9a5a-7106-42f8-8315-ade711d2607b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="55aed3be-13e8-4565-bb46-e835e5967485" ownerguid="b4aa4bbd-8abf-4503-96e4-05c75efd23d5"> -<ExampleWords> -<AUni ws="en">stretch (of good weather), keep up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe the weather when it stays the same?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="55af4f36-3a12-49db-8b5d-df6ae3b45ccc" ownerguid="00733fca-c4d6-4ec1-b1bf-1587621b3b96"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hobgoblin</AUni> -<AUni ws="es">duende</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ecb1a77c-a6f0-48b4-af45-8671a868f0d4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="55b2e7df-b066-4ad9-9b32-77006d853fdb" ownerguid="180a2220-942c-4e17-96ee-cd4f63a4c715"> -<ExampleWords> -<AUni ws="en">erode, erosion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to soil being washed away by rain?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="55b61686-8857-4660-9365-890080683746" ownerguid="dc1a2c6f-1b32-4631-8823-36dacc8cb7bb"> -<ExampleWords> -<AUni ws="en">shine, sunny, bright, give light, be sunshiny, daytime</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to when the sun is shining?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="55b65032-0fef-498b-930d-9a082366c766" ownerguid="ce6d5e60-7cf6-46ab-bd02-453ec7b04f7a"> -<ExampleWords> -<AUni ws="en">proud</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels good about himself?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="55b6dc4b-ea90-4ea1-befa-1def21033941" ownerguid="8da5f193-899f-4e5c-a6ee-280d26d4d9d3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="0cc19979-7f88-496b-be41-6380e1bfc59e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="55b75f5c-b547-47f7-9f3f-ee423a0ecb22" ownerguid="50eb32a2-6dbb-4b7c-b370-aacdcfeaf5fc"> -<ExampleWords> -<AUni ws="en">revel in, get a kick out of, take delight in, relish, gloat, take pleasure in, delight in, wallow in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to enjoying something bad?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="55b81f79-78c3-4c60-b924-1c8f36fae4b5" ownerguid="49bc0d75-4f07-44b4-a50f-bc9a557dc15e"> -<ExampleWords> -<AUni ws="en">intermarry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to people of different tribes marrying each other?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="55b93f1c-6ce0-4d13-ae1e-f06360e4689c" ownerguid="116bef13-e80f-4a15-bb0a-bb7b3794ffac"> -<Abbreviation> -<AUni ws="en">9.5.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that mark a second Patient that accompanies the primary Patient of an activity. In this type of sentence there are actually two Patients, but one of them has more prominence than the other. The primary patient is usually expressed as the object of the sentence. The second Patient may be marked by an oblique case or preposition/postposition. For instance it may be conceived as accompanying the first Patient.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89R Linkage</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">With (a patient)</AUni> -</Name> -<Questions> -<objsur guid="5c564d55-78db-49a4-a1e5-0aef64da9efe" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="2b2bedd5-3f9c-4c18-a256-aa65ee19f15c" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="55b9707b-c5e4-4e30-93fc-766381491441" ownerguid="a122b79d-c2ec-40b0-ab0e-26c238dd06d2"> -<Form> -<AUni ws="qvm-x-ach">tapia</AUni> -<AUni ws="qvm-x-acl">tapia</AUni> -<AUni ws="qvm-x-akh">tapia</AUni> -<AUni ws="qvm-x-akl">tapia</AUni> -<AUni ws="qvm-x-ame">tapia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="55bc7319-cf62-4987-b89d-dfb9595289c3" ownerguid="1d4b0243-6c26-4d0e-9975-bd51a7687f51"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="55bcd442-a87f-43e7-85fc-3debb8a3970a" ownerguid="897460e7-bd16-4bbc-bfe3-db1d757017e2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.jealous</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b0c13760-9cae-4afe-8c85-8843ff1231ff" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="55c0c6b1-25d6-49e0-94b1-e83fb68cf630" ownerguid="4c1ebd19-9be7-437e-85c0-dfa70ee9c4d3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="55c59036-a1b3-4e89-ac77-1727b5f3c154"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">witsa; witsa:</AUni> -<AUni ws="qvm-x-acl">witsa; witsa:</AUni> -<AUni ws="qvm-x-akh">witsa; witsa:</AUni> -<AUni ws="qvm-x-akl">witsa; witsa:</AUni> -<AUni ws="qvm-x-ame">witsa; witsa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wicha:</AUni> -<AUni ws="qvm-x-acl">*wicha:</AUni> -<AUni ws="qvm-x-akh">*wicha:</AUni> -<AUni ws="qvm-x-akl">*wicha:</AUni> -<AUni ws="qvm-x-ame">*wicha:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.646" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b722bbe4-a29b-4960-85c5-4d6c668a187a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wicha:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="774acacd-b130-4b32-8182-4ace728a457f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fe41fdb7-4bc5-4944-9f22-a0f8f0ee08e9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wicha: 
\entryTyp root 
\gENG raise 
\gSPN subir 
\e *wicha: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach witsa foreshortened 
\ach witsa: 
\akh witsa foreshortened 
\akh witsa: 
\acl witsa foreshortened 
\acl witsa: 
\akl witsa foreshortened 
\akl witsa: 
\ame witsa foreshortened 
\ame witsa:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="55c6318f-a4eb-4a20-a38a-fd1908e69ee1" ownerguid="909a3113-88bc-470b-8d48-7c0d37966982"> -<ExampleWords> -<AUni ws="en">solve, figure out, work out, clear up, find an explanation, answer, calculate, calculator</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to solving something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="55c8383c-9a1c-406e-ab44-eac951562b89" ownerguid="d50f3921-fcea-4ac9-b64a-25bf47dc3292"> -<ExampleWords> -<AUni ws="en">active, dormant, extinct</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to whether a volcano is erupting or not?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="55ca4997-0b5e-4003-99ee-b2028449544a" ownerguid="72ada597-ac17-4c9d-a4a0-f7da15bf94a3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="55ca96b1-9b37-4dd1-b472-e5d580eac6a6" ownerguid="1133ad78-9ce9-46aa-b181-bb6f7a84a07b"> -<ExampleWords> -<AUni ws="en">stay close, keep close, hug, cling to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to staying near something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="55ceba22-4e86-4053-97d3-6d84582b4d39" ownerguid="f20ab82e-0875-441f-94db-fe01f8b527cb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a43d5aed-cadf-4a82-9634-d6f26099fc92" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="55cec1d9-272f-4f32-b377-270ce61485fd" ownerguid="f352a437-58f2-4920-aec3-eda8041f7447"> -<ExampleWords> -<AUni ws="en">at first sight, at first glance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that something happened when you first saw something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="55cec91f-07f2-4291-948a-3f7383c9c918" ownerguid="a51bee8c-209a-48e7-b26e-611645f3c4fb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="55d09bf0-d8ce-463d-a471-0614b737f739"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">puntaño:sa</AUni> -<AUni ws="qvm-x-acl">puntaño:sa</AUni> -<AUni ws="qvm-x-akh">puntaño:sa</AUni> -<AUni ws="qvm-x-akl">puntaño:sa</AUni> -<AUni ws="qvm-x-ame">puntaño:sa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+puntañosa</AUni> -<AUni ws="qvm-x-acl">+puntañosa</AUni> -<AUni ws="qvm-x-akh">+puntañosa</AUni> -<AUni ws="qvm-x-akl">+puntañosa</AUni> -<AUni ws="qvm-x-ame">+puntañosa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.500" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="865f355d-8c6c-4758-8adb-62517bd8f23f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+puntañosa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="669bb1b1-05d4-400c-8556-0277a7192f1e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a3a95572-f54c-4d49-b138-c671d55e6cd5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +puntañosa 
\entryTyp root 
\gENG sharp 
\gSPN 
\e +puntañosa 
\c N0 
\ach puntaño:sa 
\akh puntaño:sa 
\acl puntaño:sa 
\akl puntaño:sa 
\ame puntaño:sa 
\i JDG 4.21 Tsaymi Jaelqa lawchi punta [NOTA: Wakin runakunaqa puntañösa nipäkun.] estäcata y mäsuta aptarkur upäla yaykurir Sísarataqa sentïdunpa estäcawan takaykurqan pampaman pasashqanyaq.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="55d2312e-3d91-4dce-bd57-b7c358e3c533" ownerguid="b442fdfb-24b1-4f86-b323-e2ef84572018"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="55d2fee3-5370-4d45-b661-65228e2e2c5a" ownerguid="81ecd805-5f71-4a50-81f2-f54772c89d15"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="55d75f66-810f-4a08-8eb0-fa7078873979" ownerguid="19192369-ae80-4963-87d4-e37090d27006"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="d40b2b57-e14a-407c-9a20-58234c04cdbe" t="o" /> -<objsur guid="bf333269-d22c-47a2-ad0e-85f744fe8b91" t="o" /> -<objsur guid="fcb8e447-99ec-4b48-8fb4-8283c110bee4" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="55d7b154-9174-454e-845c-9b732d791907"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bancu; banco</AUni> -<AUni ws="qvm-x-acl">bancu; bancu; banco</AUni> -<AUni ws="qvm-x-akh">bancu; banco</AUni> -<AUni ws="qvm-x-akl">bancu; bancu; banco</AUni> -<AUni ws="qvm-x-ame">bancu; banco</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+banco</AUni> -<AUni ws="qvm-x-acl">+banco</AUni> -<AUni ws="qvm-x-akh">+banco</AUni> -<AUni ws="qvm-x-akl">+banco</AUni> -<AUni ws="qvm-x-ame">+banco</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.941" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d9835d5e-77c3-410d-a6d4-db3675a2357e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+banco</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="798d67f6-466c-4021-87a8-f51d2e3947cd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="77264560-00ac-4c56-bab4-356ce6eafbf8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +banco 
\entryTyp root 
\gENG bank 
\gSPN banco 
\e +banco 
\c N0 
\ach bancu / ~_# 
\ach banco / _# 
\akh bancu / ~_# 
\akh banco / _# 
\acl bancu / ~_# 
\acl bancu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl banco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl bancu / ~_# 
\akl bancu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl banco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame bancu / ~_# 
\ame banco / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="55d8bc58-e220-4ec1-85d7-e81210b55f40"> -<Form> -<Str> -<Run ws="en">a</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="55d9fd4e-4cfd-4ac8-9b59-10160a536c09" ownerguid="530ff7e0-e3cb-4dc3-9c1c-3034969e1ce8"> -<ExampleWords> -<AUni ws="en">revenge, get revenge, take revenge, in revenge, avenge, get back at, get even with, pay back, repay, requite, retaliate, in retaliation, retribution, wreak vengeance, I'll get you for this, be out to get</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to getting revenge?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="55df9f75-ac1f-4131-b78a-f719a48d3418" ownerguid="341926ec-14e9-405b-82d7-e40dc0d3bd24"> -<Form> -<AUni ws="qvm-x-ach">albañil</AUni> -<AUni ws="qvm-x-acl">albañil; albañil; albañel</AUni> -<AUni ws="qvm-x-akh">albañil</AUni> -<AUni ws="qvm-x-akl">albañil; albañil; albañel</AUni> -<AUni ws="qvm-x-ame">albañil</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="55e057c2-e72d-40f5-b02e-a52826ef3e97" ownerguid="851de080-4de0-4575-b8d6-5bc1784cab07"> -<Form> -<AUni ws="qvm-x-ach">oga</AUni> -<AUni ws="qvm-x-acl">oga</AUni> -<AUni ws="qvm-x-akh">oqa</AUni> -<AUni ws="qvm-x-akl">oqa</AUni> -<AUni ws="qvm-x-ame">uqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="55e3ae72-bfec-40e9-bce5-0155abcee593" ownerguid="8f46496a-d5b2-411d-944d-9d4d4b6f2e31"> -<ExampleWords> -<AUni ws="en">refuse permission, deny permission, forbid, prohibit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to refusing to give someone permission to do something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="55ed324b-5e3b-4cf8-8417-ffa033d6bea2" ownerguid="4697f462-65be-42b1-a9c7-d8eac3d924d0"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="55f1620a-ea70-4e8a-bb25-a227193ce37f" ownerguid="e1a431ea-cae6-4d17-b2ff-4fdadf59c1b3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="r" /> -</Morph> -</rt> -<rt class="MoStemAllomorph" guid="55f37333-0feb-4cb2-af63-45fbbcd7d275" ownerguid="f49b582e-e616-4541-924b-8f90b8ba608e"> -<Form> -<AUni ws="qvm-x-ach">incha</AUni> -<AUni ws="qvm-x-acl">incha</AUni> -<AUni ws="qvm-x-akh">incha</AUni> -<AUni ws="qvm-x-akl">incha</AUni> -<AUni ws="qvm-x-ame">incha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="55fa31d1-5a01-42ee-8e37-136771dae41c" ownerguid="49e142c3-a037-42ac-9af8-b3f5288cb115"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="55fbb5bd-3073-4482-ac27-4315ac1be299" ownerguid="a9e26764-f8ec-4ca0-b89a-fdac5433a53d"> -<Form> -<AUni ws="qvm-x-ach">löcu</AUni> -<AUni ws="qvm-x-acl">löcu; löco</AUni> -<AUni ws="qvm-x-akh">löcu</AUni> -<AUni ws="qvm-x-akl">löcu; löco</AUni> -<AUni ws="qvm-x-ame">löcu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="55fc249a-e80a-4076-af16-ff40828253b3" ownerguid="96a40b54-88f0-4740-86a3-140912f24f24"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="55fc5978-32e5-47f7-a1f6-a30d74e4eb40" ownerguid="65d3f082-7677-43b8-8863-c6b8cc3a9c02"> -<Form> -<AUni ws="qvm-x-ach">ämu</AUni> -<AUni ws="qvm-x-acl">ämu; ämu; ämo</AUni> -<AUni ws="qvm-x-akh">ämu</AUni> -<AUni ws="qvm-x-akl">ämu; ämu; ämo</AUni> -<AUni ws="qvm-x-ame">ämu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="55fcb14b-d66c-421f-b657-806ae485470b" ownerguid="fd7e03f8-61c9-47e9-afa4-ab8917db03a5"> -<ExampleWords> -<AUni ws="en">bribe, appease, pacify, give in to demands</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to someone giving something to another to cause him to do something?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="55fec2a4-d60a-4d8d-ac76-6f2aae21cbf9" ownerguid="ff7cf41e-ec29-4e35-b0c8-d61b635ac6eb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" t="r" /> -</Morph> -<Msa> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="56086a86-5904-41bb-a658-3bbe5e1d26ea" ownerguid="1300719d-cb10-40ea-a158-247cfd41a177"> -<Form> -<AUni ws="qvm-x-ach">tamäñu</AUni> -<AUni ws="qvm-x-acl">tamäñu; tamäñu; tamäño</AUni> -<AUni ws="qvm-x-akh">tamäñu</AUni> -<AUni ws="qvm-x-akl">tamäñu; tamäñu; tamäño</AUni> -<AUni ws="qvm-x-ame">tamäñu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="5608e6ae-4d0f-4f59-9231-a77c35a9d770" ownerguid="98cc8439-9c18-453d-8383-45488ba4b606"> -<Form> -<AUni ws="qvm-x-ach">aca; acä</AUni> -<AUni ws="qvm-x-acl">aca; acä</AUni> -<AUni ws="qvm-x-akh">aka; akä</AUni> -<AUni ws="qvm-x-akl">aka; akä</AUni> -<AUni ws="qvm-x-ame">aka; akä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5609ccf8-2d72-42ab-947d-c311954f75b2" ownerguid="d502512c-966b-4752-8636-716fb29facfe"> -<ExampleWords> -<AUni ws="en">sleepover, sleep outside, sleep under the stars, camp, campout, bivouac</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to sleeping someplace unusual, for instance in someone else's house, or outside?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="560a6970-ef53-420b-bc17-9d25ccf8c684" ownerguid="4e48758e-fe1c-4501-862e-2b1ceed66a11"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Jdg 5.25 Cuyaylapag tazonwan nätasniyog lëchita garargan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="560b3b04-316e-4326-b298-621a7b0a5fe9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">princesa</AUni> -<AUni ws="qvm-x-acl">princesa</AUni> -<AUni ws="qvm-x-akh">princesa</AUni> -<AUni ws="qvm-x-akl">princesa</AUni> -<AUni ws="qvm-x-ame">princesa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+princesa</AUni> -<AUni ws="qvm-x-acl">+princesa</AUni> -<AUni ws="qvm-x-akh">+princesa</AUni> -<AUni ws="qvm-x-akl">+princesa</AUni> -<AUni ws="qvm-x-ame">+princesa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.929" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a2594c9d-697f-4d85-a08b-c613da210cef" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+princesa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f49a886b-6e00-4d39-bbdb-a8597049d9a8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a3f849e7-c6c0-4af8-99f4-7b4493cafee9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +princesa 
\entryTyp root 
\gENG 
\gSPN 
\e +princesa 
\c N0 
\ach princesa 
\akh princesa 
\acl princesa 
\akl princesa 
\ame princesa 
\i PSA 45.9 Palaciuyquichöga princesacunapis atscami carcaycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="56126bb4-4d6f-4306-a25c-f10a349e1832" ownerguid="e7c8c42f-0e98-496f-a246-fd4a35bfab99"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="561b0508-05a6-4437-a173-2f63d012da5e" ownerguid="f134eabe-ecd2-4f0a-8566-00a9086e0307"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="561b7c91-b3e1-462b-92fc-dfa60d99dc8d" ownerguid="6e0c3542-ff20-47ef-9b51-0d3621577a68"> -<Form> -<AUni ws="qvm-x-ach">gasta</AUni> -<AUni ws="qvm-x-acl">gasta</AUni> -<AUni ws="qvm-x-akh">gasta</AUni> -<AUni ws="qvm-x-akl">gasta</AUni> -<AUni ws="qvm-x-ame">gasta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="FsFeatStruc" guid="561bebab-a99f-46ca-a2ba-21b1abff8715" ownerguid="3f2628c2-c996-47dc-b083-d75626ba04eb"> -<FeatureSpecs> -<objsur guid="de96a398-8dd1-4a4c-a1cc-0e5326a6a5e7" t="o" /> -</FeatureSpecs> -<Type> -<objsur guid="efc7ecdf-44ed-4b11-9eef-41aaa905ca65" t="r" /> -</Type> -</rt> -<rt class="CmDomainQ" guid="5621eeb8-e0e6-45b4-aa06-5d5bf56cec9a" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<ExampleWords> -<AUni ws="en">discouraged, discouragement, depressed, depression, feel down, grouch, unhappy, unhappiness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe a person who usually feels sad?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5624ef7a-713f-44e0-b9fd-fc55eeacd542" ownerguid="520f02c3-e611-4308-a406-8691483dc4a1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="e77c6490-9fb5-4828-82b0-ab2fae5fb197" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5625be74-3fd7-4b25-9723-88b373303387" ownerguid="c345f278-91ff-463d-b9a6-8abac8a267eb"> -<ExampleWords> -<AUni ws="en">cotton, sisal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What plants are used for making fibers, cloth or rope?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="5627904e-59c7-4dd5-aeb5-c6fe0c0a0571" ownerguid="4f22ebdb-01db-432a-9d7a-41cd44010265"> -<Abbreviation> -<AUni ws="en">6.8.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.486" /> -<DateModified val="2022-9-23 16:55:8.486" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being frugal--to not spend a lot of money.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Frugal</AUni> -</Name> -<Questions> -<objsur guid="fbe2f1eb-6570-4c91-9159-4bce6d87ac09" t="o" /> -<objsur guid="0649cfb4-340e-47cd-be28-44edf2eac7c4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="56282a14-f680-4000-ab24-b18b553cb643"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">ADVDS</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="5628b39a-362b-422c-84d0-3367d559df0a" ownerguid="f4e558bf-f318-4518-b578-fd54e4db1786"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">box</AUni> -<AUni ws="es">cajón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f652a77a-de85-4db4-81ad-b091ad641817" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="56290cc0-5eeb-4a35-bdfc-37711d61a3c5" ownerguid="9bd490e6-8863-4ab4-9a0f-7e696f0a0d4a"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="56296c3d-94dd-4fc6-9888-8d1a07f9e220" ownerguid="041b5ac9-99be-4281-a17e-654eff33d793"> -<ExampleWords> -<AUni ws="en">blocked, buzz, crew cut, military cut, long, shaved, tonsure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the style of a man's hair?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="56297b2f-bd80-4fa1-8ccc-32e78a355ad7" ownerguid="93cd89e9-d469-4921-b12e-1e9c6eabd08e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="562e9a3e-706a-4483-baae-bf6f6432465d" ownerguid="60a1cf1a-8473-49ae-b409-c824a4ef8eee"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="562f55de-efc7-41a7-b450-6f9dea2813e2" ownerguid="7558d071-a885-447b-9aa2-604c29669492"> -<Abbreviation> -<AUni ws="en">4.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.256" /> -<DateModified val="2022-9-23 16:55:8.256" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a government organization.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Government organization</AUni> -</Name> -<OcmCodes> -<Uni>621 Community Structure; 628 Inter-community Relations; 629 Inter-ethnic Relations; 642 Constitution</Uni> -</OcmCodes> -<Questions> -<objsur guid="089c8424-b8db-4d07-950c-d176d97cfd01" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="f9935962-9a14-485d-9bef-bd4a52dd92c1" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="56307c1b-9bac-460f-87a8-3688a58744a9" ownerguid="38c34e04-c76c-4c5e-b3d1-7d98e7fda0ad"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bundle</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5ecdd6fe-561b-4e4f-8b7e-a9d573267041" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="563614ee-3f4e-459e-94ef-cb9cde7c2cd6" ownerguid="f11c31fd-bb67-44e9-a85a-0d3b366b6a50"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Mat 3.3 Tayta Dios shamunanpag cag caminuta pitsapäcuy. Wengu wengu nänicunatapis derechapäcuy.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="56373248-d1e0-47c0-82a0-412b8775ca60" ownerguid="d4ebf50d-7ab1-4481-9933-a887cd2a2af7"> -<Form> -<AUni ws="qvm-x-ach">patsa</AUni> -<AUni ws="qvm-x-acl">patsa</AUni> -<AUni ws="qvm-x-akh">patsa</AUni> -<AUni ws="qvm-x-akl">patsa</AUni> -<AUni ws="qvm-x-ame">patsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="56383ab7-a301-4380-83a6-7558a5f39a1d" ownerguid="33c5a3fe-b5d2-4689-bbdc-f838fbff1c10"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">allow</AUni> -<AUni ws="es">permitir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="537a206d-d035-48ee-acc4-bf164d641f42" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="5639de46-d59d-4697-a944-97bd2d86dcd4" ownerguid="1681e7df-f802-4cc2-88ad-61118ef035aa"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="5639e6f9-f4b2-482e-b365-3740a92de801" ownerguid="2a1d2fa6-cc37-4094-8b69-ad9e4d5423b9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">inheritance</AUni> -<AUni ws="es">herencia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c245456a-e288-462a-bc49-07c0c60d36b2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="563bd84d-8fa8-47d9-acdc-d566eab0d19a" ownerguid="3d1289b3-6e97-40a4-9ffc-10e13121768d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">imperative</AUni> -<AUni ws="es">imperativo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="00d04806-0836-427e-959b-a56d42615f1b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="563fe679-fcb0-4404-8c08-be2ed08e23a1" ownerguid="3694f92f-8cb1-41e8-ab61-e3a502d6afc5"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">SNG 7.1 Reypa tsurin, sandaliayqui jaticurcuptiqui chaquiquipis cuyaylapagmi camaran.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="5640f188-d40c-463e-b023-c828e91a093f" ownerguid="d2e4e6aa-e699-41b4-8bb3-55e4793bd14b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sole.of.foot</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0211f2ab-4819-4bb5-8d71-f7e9694dae65" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="5642d641-c6b5-4b18-9d8a-4a4dfc7039c6" ownerguid="e78c718b-6c58-4e53-a172-a006152082fa"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="56477f6f-9dac-4cac-90ba-594ba88579a2" ownerguid="e1fbb9d1-56eb-4a40-af91-9d31f6c475fb"> -<Form> -<AUni ws="qvm-x-ach">director</AUni> -<AUni ws="qvm-x-acl">director</AUni> -<AUni ws="qvm-x-akh">director</AUni> -<AUni ws="qvm-x-akl">director</AUni> -<AUni ws="qvm-x-ame">director</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PhNCSegments" guid="564a9dd9-ce60-4f88-950f-e5fc82311e85" ownerguid="be765e3e-ea5e-11de-9d42-0013722f8dec"> -<Abbreviation> -<AUni ws="en">V-i</AUni> -</Abbreviation> -<Description> -<AStr ws="en"> -<Run ws="en">non-i vowels</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">V-i</AUni> -</Name> -<Segments> -<objsur guid="53cd56ab-c7c3-4678-a0ff-115a4828212c" t="r" /> -<objsur guid="b1e553eb-ba5d-438d-a847-8b65e95ab927" t="r" /> -<objsur guid="d74f40f6-ea5e-11de-8028-0013722f8dec" t="r" /> -<objsur guid="d770a1ba-ea5e-11de-93c8-0013722f8dec" t="r" /> -<objsur guid="d7d4c3fc-ea5e-11de-89e1-0013722f8dec" t="r" /> -<objsur guid="d80dfc26-ea5e-11de-852c-0013722f8dec" t="r" /> -<objsur guid="e6951d31-60a0-43e9-bebb-7d2ed36c19eb" t="r" /> -<objsur guid="f5ae79dc-30ed-408a-9961-8c213feee29b" t="r" /> -</Segments> -</rt> -<rt class="LexSense" guid="564af024-8dbb-41cf-bbc4-693c4d0ba81b" ownerguid="141fbda8-9ce8-4160-a9cf-82436828ed8a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wrap.wool</AUni> -<AUni ws="es">arrollar.lana</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ecb19ae1-cb8b-46fc-9283-42ab801879c3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="564c1e31-73e0-4162-aaf5-f6bd71eed1f6" ownerguid="bcae71a9-91f9-4d17-ac02-009f39940f38"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="564d08f0-09c1-486f-8368-61a62b5c741e" ownerguid="7988974c-99fd-40dd-9b5e-2d81ec603ddc"> -<ExampleWords> -<AUni ws="en">grassland, prairie, savannah, bush, moor, moorland, brush, brake, heath, scrubby, scrubland, shrubby, steppe, tundra, veld</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to land covered by grass or bushes?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="564daebd-4c3e-4384-82e1-f53a51161eb3" ownerguid="d502512c-966b-4752-8636-716fb29facfe"> -<ExampleWords> -<AUni ws="en">be in a deep sleep, be really out, sleep deeply, sleep soundly, sound asleep</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words are used of a deep sleep?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5655adc6-f1bf-4d1a-a7d0-90f9096356c9" ownerguid="0fa0be21-2246-40b2-86b1-ca572fe8c16c"> -<ExampleWords> -<AUni ws="en">uninterested, disinterested, apathetic, bored, dull, lethargic, uncaring, unconcerned, unenthusiastic, half-hearted, lukewarm</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels uninterested?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5657e664-8d9d-443d-8cb0-8b5325e05c33" ownerguid="69ab79c6-a469-4aca-9bab-1f39c2ef6ce2"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="5658ae3d-ea15-44db-bae4-47df792da12e" ownerguid="7d54d3dd-5fb2-4640-9bcf-c234696af894"> -<Abbreviation> -<AUni ws="en">4.3.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.235" /> -<DateModified val="2022-9-23 16:55:8.235" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being dishonest.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Dishonest</AUni> -</Name> -<Questions> -<objsur guid="8b3dd0f3-ed86-464c-a5ba-d804cb795536" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="63b18261-faf3-4ab2-bcb4-7c3ac4d6d6ba" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="565a1211-0638-49f2-adac-b382c646553e" ownerguid="44bf22fd-3725-4c49-bd3c-434402c33493"> -<ExampleWords> -<AUni ws="en">furniture, piece of furniture, set of furniture</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to furniture?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="565b8703-fc7b-4135-b1d1-5714651f2f5e" ownerguid="96d55d8f-8542-4f56-8e5e-bce28f7ceb19"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">crooked</AUni> -<AUni ws="es">torcido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="225a35c4-22c0-44b9-8fe8-ca2f81599704" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="565b8b48-d659-4f1e-b0d2-04ef93b0835e" ownerguid="6ccefcc7-b00f-47fc-937b-49bd0cb540f3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">3FUT</AUni> -<AUni ws="es">3FUT</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cdacd2fc-4611-457d-b88f-3c9c8bb345b9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="565be8d0-02ff-43a0-8d85-383c047534cb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shanu</AUni> -<AUni ws="qvm-x-acl">shanu; shano</AUni> -<AUni ws="qvm-x-akh">shanu</AUni> -<AUni ws="qvm-x-akl">shanu; shano</AUni> -<AUni ws="qvm-x-ame">shanu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shanu</AUni> -<AUni ws="qvm-x-acl">*shanu</AUni> -<AUni ws="qvm-x-akh">*shanu</AUni> -<AUni ws="qvm-x-akl">*shanu</AUni> -<AUni ws="qvm-x-ame">*shanu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.541" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9b55e147-e893-4b10-a270-268de08e6852" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shanu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a4e065f6-28ba-4f1d-9c78-bd1c33bf793d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="de33820d-6d04-4271-99c6-746c4843f2dd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shanu 
\entryTyp root 
\gENG 
\gSPN brillar 
\e *shanu 
\c V1 
\ach shanu 
\akh shanu 
\acl shanu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shano +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shanu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shano +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shanu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="5663238a-9f7f-4218-aed2-a8cc9be6887e" ownerguid="1b2023ab-99fe-46af-9c82-b9d0c5eaf316"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="ffeb1bb5-0d86-4e87-897e-c95312ac5555" t="o" /> -<objsur guid="103b87fc-09d7-42e0-af93-5ba3e3274e74" t="o" /> -<objsur guid="b7c8ccf4-ce02-4bcb-966a-f58e1a6a931c" t="o" /> -<objsur guid="e456a69e-cdca-4c90-b782-93bb8070651f" t="o" /> -<objsur guid="54cf5e5d-39e2-4b93-b2bb-bd04edd2fbda" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="566452e7-4d73-4728-80a1-61be4a6c403c" ownerguid="d853597b-f3ed-470b-b6dd-8fe93b8e43eb"> -<ExampleWords> -<AUni ws="en">hushed, subdued</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a quiet voice?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5664d4d4-c672-4838-a4f9-7b0576634e01" ownerguid="bfeba2a4-4479-49e9-838c-3baa2ad0fcae"> -<ExampleWords> -<AUni ws="en">kind (of), type (of), member (of), example (of), sort (of), such</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a member of a class?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5666fd0c-1753-4a72-b7fe-5529bfdc08c2" ownerguid="fd33670e-ef16-4566-a62e-aa077e58407b"> -<ExampleWords> -<AUni ws="en">scrape, creak, squeak, screech, grinding, squeal, rasp</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to the sound of two things rubbing against each other?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="566be8c1-3e42-4f8b-87eb-e70e8c13c6f8" ownerguid="9f3b4cab-dc8a-430e-88f3-d3002df64fb8"> -<Abbreviation> -<AUni ws="en">7.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.498" /> -<DateModified val="2022-9-23 16:55:8.498" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing a person who is leaning.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Lean</AUni> -</Name> -<Questions> -<objsur guid="51b39b49-d380-442f-ba25-7a29a37a825c" t="o" /> -<objsur guid="a637683e-48b0-4adf-93af-9589145086e3" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="0add0775-0ed0-46be-ba4a-76310e63a036" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="566d3868-0324-4838-b813-ec60141a1848"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">2P</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="56726870-1e9a-4d60-9a15-fece8b1115f4" ownerguid="a9db2851-6ec1-43c5-89df-c27ea6f2b7a6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">frost</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d9cff43e-4df9-480e-bc8f-4b80984a2818" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="567361ce-036b-433f-af36-3f3eaeca8b2d" ownerguid="89db7c8c-9ada-4bc1-b02b-82871c946c22"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a4d42f6f-d626-4469-8166-21d6f4e69d6d" t="r" /> -</Morph> -<Msa> -<objsur guid="72dc7bab-4d12-4cdb-a144-3c853f889fb5" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="56752325-45fb-4f78-9f48-beac1620c878" ownerguid="c931dded-3f19-41d2-8558-d87ce1db63c9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="5675e4dc-3e09-4926-84d0-a1ae212d9e60" ownerguid="1c51bc5a-cf40-41b5-a1ae-6f1cc6ae9849"> -<Form> -<AUni ws="qvm-x-ach">despidi</AUni> -<AUni ws="qvm-x-acl">despidi; despide</AUni> -<AUni ws="qvm-x-akh">despidi</AUni> -<AUni ws="qvm-x-akl">despidi; despide</AUni> -<AUni ws="qvm-x-ame">despidi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="5676305b-d6e0-4985-bc43-9cd4612db542" ownerguid="54a14bc8-1822-43c7-9264-7b5bc31ef8fb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stamp</AUni> -<AUni ws="es">pisar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="33aaffd5-8fd6-431a-a7ab-54fcd3b84fe5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="56789d54-a8e0-4642-9d6a-1530f873306d" ownerguid="9fd8ecee-283d-4dc4-a4f5-41fb8ec94a5a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ypa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ypa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ypa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ypa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ypa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ed76c6da-f04a-47ec-9d43-af432768f6a0" t="r" /> -</Morph> -<Msa> -<objsur guid="89edf312-823b-4bd1-9b8e-7755813dda71" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="567ed321-3668-4132-aaae-04c42f174895" ownerguid="0d4d4f1b-a385-4ea0-9496-9ff1b7a2b52a"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="567f7c74-d3ba-498e-8a78-17306f6cf5b4" ownerguid="0d38c343-9c51-47fe-a367-ffadfc92c507"> -<ExampleWords> -<AUni ws="en">younger brother, younger sister, little brother, little sister, kid brother, kid sister</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a younger brother or sister?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="56846e34-9965-41e3-b118-8b14cb165501" ownerguid="79ebd9c1-026e-4250-b11c-cb34e6757f84"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="568a5b45-4362-4020-a798-70f35863e1e1" ownerguid="100e62a6-b6f4-4b30-b317-0517d6b102a9"> -<ExampleWords> -<AUni ws="en">inhibit, intimidate, make you feel uncomfortable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to causing someone to feel shy?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="568b1415-b7dc-4cf4-a32a-5c3e634674cd" ownerguid="cca44b46-437c-42ee-93d7-a8820d61d0c8"> -<ExampleWords> -<AUni ws="en">judge, court clerk, court recorder, bailiff</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What is the staff of a court?</AUni> -</Question> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="568dffe2-a0c1-4161-9f29-3dd1b06dbb2c" ownerguid="1583f96b-9e4b-4f0d-af86-7189ced2a282" /> -<rt class="MoStemMsa" guid="56946af8-5f8f-4e94-bb10-1ff9b1e059cc" ownerguid="8bcfa8b0-7265-4e49-b903-bb06e5e74bc0" /> -<rt class="LexSense" guid="56953b3f-47ba-4c8c-ba99-7065e87eab66" ownerguid="32a771fb-3657-4ff5-8add-839d2155f876"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0 V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="601b5424-0fbe-4674-ab26-3443782fbe35" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">threshing.floor</AUni> -<AUni ws="es">era</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e9cf3f1a-76d4-42e5-bc33-f562f8bc75b3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="5696a458-3903-4caa-bc71-e3414a46ff76" ownerguid="a66cfd2a-34be-4210-92a3-1ae4b7901be8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="391fbbb9-6a14-47f1-a6d2-1f76aa8aaf77" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5696ef1e-abe7-4970-baa5-2e3f906c9eaf" ownerguid="fb84538a-17a8-4adc-8d50-e2b66f8e4099"> -<ExampleWords> -<AUni ws="en">number, figure, digit, numeral</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a written number?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="56984b2b-3417-49b4-a082-1a383551a9e9" ownerguid="35e61ec4-0542-4583-b5da-0aa5e31a35aa"> -<Abbreviation> -<AUni ws="en">2.6.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to labor and birth pains.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Labor and birth pains</AUni> -</Name> -<Questions> -<objsur guid="d0095682-23aa-4829-b3a6-32c7f76868f0" t="o" /> -<objsur guid="31a1db66-c2a7-4afc-9e95-deeeddb36618" t="o" /> -<objsur guid="0aec002d-52dd-47a6-a0ec-48753b2ed8c5" t="o" /> -<objsur guid="9a12fb25-ed25-444f-be7d-9ed1456c1031" t="o" /> -<objsur guid="008af484-5254-47d5-af39-d13d3d3376c7" t="o" /> -<objsur guid="4f657d09-6646-4b4c-8cd4-f2cf7a50d5bc" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="569a4f92-1d62-4fcb-936b-6e448213df12" ownerguid="f47d681b-4f0d-43ca-a465-2e1724825752"> -<ExampleWords> -<AUni ws="en">grandchild, grandson, granddaughter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the children of your children?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="569b6232-858b-4c1c-a32c-23f5c1c1c46f" ownerguid="993b8955-52db-4b2a-8e9a-405a155e7b60"> -<ExampleWords> -<AUni ws="en">furnace, forge, crucible</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What tools and equipment are used to get metal out of rocks?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="569c6e73-cd36-4a45-94b4-5d3c0083ce73"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">raura; raura:</AUni> -<AUni ws="qvm-x-acl">raura; raura:</AUni> -<AUni ws="qvm-x-akh">rawra; rawra:</AUni> -<AUni ws="qvm-x-akl">rawra; rawra:</AUni> -<AUni ws="qvm-x-ame">rawra; rawra:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rawra:</AUni> -<AUni ws="qvm-x-acl">*rawra:</AUni> -<AUni ws="qvm-x-akh">*rawra:</AUni> -<AUni ws="qvm-x-akl">*rawra:</AUni> -<AUni ws="qvm-x-ame">*rawra:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.295" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="815e3954-9450-4544-a708-8dd590468cd1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rawra:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="43ea5cdd-d703-4530-956a-a32dc5aa617b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="32190647-b1d5-424e-af95-749e0637f945" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rawra: 
\entryTyp root 
\gENG burn 
\gSPN arder 
\e *rawra: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach raura foreshortened 
\ach raura: 
\akh rawra foreshortened 
\akh rawra: 
\acl raura foreshortened 
\acl raura: 
\akl rawra foreshortened 
\akl rawra: 
\ame rawra foreshortened 
\ame rawra:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="569d12c8-283a-49dd-a08f-46510c6c371b" ownerguid="72d9b7cd-aa06-4f7b-a66b-b992171d2cd4"> -<ExampleWords> -<AUni ws="en">style, stylish, in style, fashion, out of fashion, modern, traditional, old-fashioned</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe the style of your clothing?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="56a3860b-d54f-46cb-988f-d664127ccdb4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rama:da</AUni> -<AUni ws="qvm-x-acl">rama:da</AUni> -<AUni ws="qvm-x-akh">rama:da</AUni> -<AUni ws="qvm-x-akl">rama:da</AUni> -<AUni ws="qvm-x-ame">rama:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ramada</AUni> -<AUni ws="qvm-x-acl">+ramada</AUni> -<AUni ws="qvm-x-akh">+ramada</AUni> -<AUni ws="qvm-x-akl">+ramada</AUni> -<AUni ws="qvm-x-ame">+ramada</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.246" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8fc63483-1342-4db1-8ba1-7d523718647b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ramada</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ecaafbfe-b78a-45b0-bbdb-5abf0f8db2a1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7de12a0b-7024-44f3-8ff9-b0217fde4a0d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ramada 
\entryTyp root 
\gENG 
\gSPN 
\e +ramada 
\c N0 
\ach rama:da 
\akh rama:da 
\acl rama:da 
\akl rama:da 
\ame rama:da</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="56a80ac5-e000-403b-aa38-4ea0758c7f5c" ownerguid="0c059134-b542-479c-95b4-c07f3c26fc0c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="56a90d5e-f2b8-4323-913d-5d058bd86405" ownerguid="f8346466-db96-4d4b-8a8d-2da65cfd7dc2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">SIM2.2</AUni> -<AUni ws="es">SIM2.2</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8cec8820-59e6-4ad6-9550-d5b15cc772bb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="56a9e27a-7121-469d-95eb-6cec53129749"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mayu</AUni> -<AUni ws="qvm-x-acl">mayu; mayu; mayo</AUni> -<AUni ws="qvm-x-akh">mayu</AUni> -<AUni ws="qvm-x-akl">mayu; mayu; mayo</AUni> -<AUni ws="qvm-x-ame">mayu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mayu</AUni> -<AUni ws="qvm-x-acl">*mayu</AUni> -<AUni ws="qvm-x-akh">*mayu</AUni> -<AUni ws="qvm-x-akl">*mayu</AUni> -<AUni ws="qvm-x-ame">*mayu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.386" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="491814f3-3bbc-4e20-9e51-190bb1442187" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mayu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="622799ff-4e25-4a77-9ad7-dae684fde13d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="532d828a-37ad-414c-a0c3-aa12d557555d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mayu 
\entryTyp root 
\gENG river 
\gSPN rio 
\e *mayu 
\c N0 
\ach mayu 
\akh mayu 
\acl mayu / _# 
\acl mayu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mayo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mayu / _# 
\akl mayu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mayo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mayu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="56aa0ec8-f7d1-4c36-8b3f-7cdf15f0e46c" ownerguid="8e381793-573b-4e96-b532-33c89092d3bf"> -<Form> -<AUni ws="qvm-x-ach">cohëti; cohëti</AUni> -<AUni ws="qvm-x-acl">cohëti; cohëti; cohëte</AUni> -<AUni ws="qvm-x-akh">cohëti; cohëti</AUni> -<AUni ws="qvm-x-akl">cohëti; cohëti; cohëte</AUni> -<AUni ws="qvm-x-ame">cohëti; cohëti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="56ada5de-67f6-4535-a5b7-65cb1dbf108d" ownerguid="f352a437-58f2-4920-aec3-eda8041f7447"> -<ExampleWords> -<AUni ws="en">make the first move, take the initiative</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to being the first person to do something in a situation instead of waiting for someone else?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="56af1b8d-47be-43d2-8d4f-ac313300837f" ownerguid="4bfe53d2-fb85-4397-98a8-97d59b907064"> -<ExampleWords> -<AUni ws="en">sailor, captain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a person who uses a boat?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="56af7635-6d73-41c5-a74e-a55e2bde7edb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">coronel; coronil</AUni> -<AUni ws="qvm-x-acl">coronel; coronil; coronel</AUni> -<AUni ws="qvm-x-akh">coronel; coronil</AUni> -<AUni ws="qvm-x-akl">coronel; coronil; coronel</AUni> -<AUni ws="qvm-x-ame">coronel; coronil</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+coronel</AUni> -<AUni ws="qvm-x-acl">+coronel</AUni> -<AUni ws="qvm-x-akh">+coronel</AUni> -<AUni ws="qvm-x-akl">+coronel</AUni> -<AUni ws="qvm-x-ame">+coronel</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.192" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9ff04c56-f7b1-4d81-ab15-4079612a3df5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+coronel</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3235b8c1-d71e-4e20-a354-744403a3f7ba" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4dc66144-c89c-4fc3-8be4-1d0458024223" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +coronel 
\entryTyp root 
\gENG colonel 
\gSPN coronel 
\e +coronel 
\c N0 
\mp +FinalC 
\ach coronel / _# 
\ach coronil / ~_# 
\akh coronel / _# 
\akh coronil / ~_# 
\acl coronel / _# 
\acl coronil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl coronel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl coronel / _# 
\akl coronil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl coronel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame coronel / _# 
\ame coronil / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="56b0479c-fead-41d9-a1eb-d6734f48ffda" ownerguid="8bb58704-789a-46f5-ab16-d428dc73e4ba"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">clay.jar</AUni> -<AUni ws="es">olla.de.barro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f76b5b21-08c5-4e20-b31c-de5a46a6764d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="56b1d8b1-5514-4661-8073-f0ed9ba0ca2f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">octubri; octubre</AUni> -<AUni ws="qvm-x-acl">octubri; octubri; octubre</AUni> -<AUni ws="qvm-x-akh">octubri; octubre</AUni> -<AUni ws="qvm-x-akl">octubri; octubri; octubre</AUni> -<AUni ws="qvm-x-ame">octubri; octubre</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+octubre</AUni> -<AUni ws="qvm-x-acl">+octubre</AUni> -<AUni ws="qvm-x-akh">+octubre</AUni> -<AUni ws="qvm-x-akl">+octubre</AUni> -<AUni ws="qvm-x-ame">+octubre</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.618" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dabdac85-2f1f-4f47-9c19-900070424646" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+octubre</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9ab144b9-54bd-499f-a903-d768f8e06cf8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="30b52c52-eaa8-4126-b951-69b241080818" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +octubre 
\entryTyp root 
\gENG October 
\gSPN octubre 
\e +octubre 
\c N0 
\mp +FinalI 
\ach octubri / ~_# 
\ach octubre / _# 
\akh octubri / ~_# 
\akh octubre / _# 
\acl octubri / ~_# 
\acl octubri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl octubre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl octubri / ~_# 
\akl octubri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl octubre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame octubri / ~_# 
\ame octubre / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="56b267cb-eff7-4256-9063-d4e73f3a3a76" ownerguid="2e8859a9-52ee-46fb-8355-77f1c75862e1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="56b70d9c-81c0-4d0a-95a6-0bf2844832d8" ownerguid="f2c723cb-6f41-4472-a402-3477466bb5a8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">step-father</AUni> -<AUni ws="es">padrastro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="238e17cd-1e4e-4204-a258-30d5f96ca987" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="56ba1463-fabe-4fee-b0f6-4287d507214e" ownerguid="ceb6ed65-188e-46d7-ad10-076cba0d49db"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="56bc0361-18f3-4836-9dd6-0acebf47dff1" ownerguid="b47d2604-8b23-41e9-9158-01526dd83894"> -<ExampleWords> -<AUni ws="en">geography, geographical, geographer, geology</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the study of the world?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="56bd561e-4863-4c8c-a4d0-4b560f7c9b3c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">to:pa</AUni> -<AUni ws="qvm-x-acl">to:pa</AUni> -<AUni ws="qvm-x-akh">to:pa</AUni> -<AUni ws="qvm-x-akl">to:pa</AUni> -<AUni ws="qvm-x-ame">to:pa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+topar</AUni> -<AUni ws="qvm-x-acl">+topar</AUni> -<AUni ws="qvm-x-akh">+topar</AUni> -<AUni ws="qvm-x-akl">+topar</AUni> -<AUni ws="qvm-x-ame">+topar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.944" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fa9d7e89-41b0-418f-bbb2-56424653c031" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+topar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4b5bd2d8-b164-471a-8650-c6631e0236bf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2d2e22bb-f2c6-43c7-a473-bff42dfef180" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +topar 
\entryTyp root 
\gENG touch 
\gSPN tocar 
\e +topar 
\c V2 
\ach to:pa 
\akh to:pa 
\acl to:pa 
\akl to:pa 
\ame to:pa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="56c1a0d6-b1fc-4aeb-9938-bcaa764c35f9" ownerguid="1f78d7ca-860f-47c2-84ce-f6c8f2c643f7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="56c24278-e4f5-46bc-95ac-d7025655ee5c" ownerguid="e76da56d-55db-4081-a496-0566316f8466"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="56c2e499-39cf-4d5b-8753-a367450d96c1" ownerguid="c3928c26-1def-4e50-9da5-16ff1e6fa779"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stalk</AUni> -<AUni ws="es">magáy</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1b9675f6-fbdf-4823-b226-3ef2c8e2205e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="56c4019f-f749-4717-ba94-d6474ece68a0" ownerguid="a9fe3347-12ae-4624-b55e-45ea42cdbf9b"> -<ExampleWords> -<AUni ws="en">pruning hook, pruning shears</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What tools are used to trim plants?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="56c46bc7-4c77-4ba3-8f2b-a47ff5bb0759"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">física; fi:sica</AUni> -<AUni ws="qvm-x-acl">física; fi:sica</AUni> -<AUni ws="qvm-x-akh">física; fi:sica</AUni> -<AUni ws="qvm-x-akl">física; fi:sica</AUni> -<AUni ws="qvm-x-ame">física; fi:sica</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+física</AUni> -<AUni ws="qvm-x-acl">+física</AUni> -<AUni ws="qvm-x-akh">+física</AUni> -<AUni ws="qvm-x-akl">+física</AUni> -<AUni ws="qvm-x-ame">+física</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.568" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6c8de55c-383d-4b97-bc82-ca5f9f1199ad" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+física</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fd532fe6-4587-4786-9276-5a52340e8ca4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="57adc15f-b10d-4c30-a136-42c99d9bd822" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +física 
\entryTyp root 
\gENG exercise 
\gSPN 
\e +física 
\c N0 
\ach física / _# 
\ach fi:sica / ~_# 
\akh física / _# 
\akh fi:sica / ~_# 
\acl física / _# 
\acl fi:sica / ~_# 
\akl física / _# 
\akl fi:sica / ~_# 
\ame física / _# 
\ame fi:sica / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="56c5444d-ee87-41c9-9dcd-61e7396c48eb" ownerguid="fffee68a-200e-453a-a5bf-318e68e52289"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="621aee4f-4d89-4673-9c3b-c55ee4234672" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="56c5e323-46a4-463e-823e-96e5773bd591" ownerguid="aadefee4-ed14-4753-952e-e945f2972e37"> -<ExampleWords> -<AUni ws="en">branch, department, division, section, sector, wing, end, subdivision</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the parts of an organization?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="56c6cf57-4596-4b16-99aa-b1c2ab44e2ac" ownerguid="515f9b40-0637-4ce3-b343-2d99de3f723b"> -<ExampleWords> -<AUni ws="en">put in plumbing, fix a pipe, fix a leak, to thread a pipe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to working on the plumbing?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="56c9c38c-728a-42fe-b93c-6ca67fdf2a9a" ownerguid="f899802d-bd32-427f-a101-c84219f7e14e"> -<Abbreviation> -<AUni ws="en">1.2.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.947" /> -<DateModified val="2022-9-23 16:55:7.947" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for naturally occurring elements, compounds, and minerals--things you can find in the ground.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>2A Elements</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Mineral</AUni> -</Name> -<OcmCodes> -<Uni>135 Mineral Resources</Uni> -</OcmCodes> -<Questions> -<objsur guid="6e89caf9-2121-43a3-ae98-b98223513fa6" t="o" /> -<objsur guid="bba05913-032d-4b8b-b4d3-c2fca89259ba" t="o" /> -<objsur guid="b6fb9a5a-f4cf-4e97-a4cc-f630198a8ca3" t="o" /> -<objsur guid="d9ecb047-a06e-4e30-8f01-7fdb5914e435" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="34e92ff1-32aa-49c7-b4da-d161bedc5adc" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="56ca73cf-d0be-475e-a36c-2a11231cc646" ownerguid="0d7409ab-fc1f-4680-b040-d91d7004084f"> -<ExampleWords> -<AUni ws="en">interrupt, break in, stop, butt in, interruption, intermission, interlude</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to interrupting someone or something that is happening?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="56cb7acc-108f-44ab-a7dc-d995bf6db8c5" ownerguid="94fbf482-956b-4adc-aa14-401039e1d4b4"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="661d793d-daf2-472a-9ce3-ea7ee6f1506a" t="o" /> -<objsur guid="0bd6e773-2f27-4f6d-9eed-2e7b0431ee45" t="o" /> -<objsur guid="a2fd5374-7a4c-4a18-b1a2-8f3bcf75046b" t="o" /> -<objsur guid="29e46493-b2bf-4f94-acd5-ab118b83babd" t="o" /> -<objsur guid="cfa5e99d-7451-45f0-b467-c66c6e65c50e" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="56cbd0fe-25dc-49ad-9898-0ace975490f3" ownerguid="05a7bbdc-7cf5-47d3-830b-84e1591b11cc"> -<ExampleWords> -<AUni ws="en">legislate, enact, enactment, establish, pass, prescribe, propose, sign into law, ratify</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to passing a law?</AUni> -</Question> -</rt> -<rt class="MoInflAffMsa" guid="56ccbf7e-62af-4fad-98de-8c627f35a848" ownerguid="fa80eb56-d1c3-4fde-9ef9-75f0749e8fdc"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="56cfc0db-0a07-40df-9cab-428bf6a2572f" ownerguid="193257cf-2e65-4773-8f1e-ed20c3ca484c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="56d1a950-8798-45fb-bccd-d8b1eb37c071" ownerguid="24398eec-edd1-449a-ad36-d609be24a79e"> -<Abbreviation> -<AUni ws="en">7.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to giving something to someone, in which there is no transaction of ownership, merely the movement of the thing from one person to another.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>57H Give</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Give, hand to</AUni> -</Name> -<Questions> -<objsur guid="8841e618-65fd-4c32-8a34-9b3c3a1df282" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="56d33c93-1d01-4560-ab42-174a056ec8c3" ownerguid="45576422-ebcd-417b-b5ad-9b895f2be5d6"> -<Form> -<AUni ws="qvm-x-ach">garantia</AUni> -<AUni ws="qvm-x-acl">garantia</AUni> -<AUni ws="qvm-x-akh">garantia</AUni> -<AUni ws="qvm-x-akl">garantia</AUni> -<AUni ws="qvm-x-ame">garantia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="56d36075-a5e9-4fca-9bc8-59d26f592c7e" ownerguid="4cd2b299-6eef-4173-a992-868d014b802b"> -<Form> -<AUni ws="qvm-x-ach">tsaca; tsacä</AUni> -<AUni ws="qvm-x-acl">tsaca; tsacä</AUni> -<AUni ws="qvm-x-akh">tsaka; tsakä</AUni> -<AUni ws="qvm-x-akl">tsaka; tsakä</AUni> -<AUni ws="qvm-x-ame">tsaka; tsakä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="56d52d54-9da9-4e9f-a6cd-9e3675ae2880"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jaula</AUni> -<AUni ws="qvm-x-acl">jaula</AUni> -<AUni ws="qvm-x-akh">jaula</AUni> -<AUni ws="qvm-x-akl">jaula</AUni> -<AUni ws="qvm-x-ame">jaula</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+jaula</AUni> -<AUni ws="qvm-x-acl">+jaula</AUni> -<AUni ws="qvm-x-akh">+jaula</AUni> -<AUni ws="qvm-x-akl">+jaula</AUni> -<AUni ws="qvm-x-ame">+jaula</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.882" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6f8b0c7b-48cd-4138-8bf1-222abcb7c70b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+jaula</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6a02db82-bffd-4180-8160-2100f7add23d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="802b5538-85de-4365-bdd1-3bb80907c724" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +jaula 
\entryTyp root 
\gENG cage 
\gSPN jaula 
\e +jaula 
\c N0 
\ach jaula 
\akh jaula 
\acl jaula 
\akl jaula 
\ame jaula 
\i JER 5.27 Jaulacho pichiwchancacuna atsca cashgannogmi wayincunachöpis suwacushgancuna atsca caycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="56d53d0f-3d10-49f5-b70b-73b19ead0caa" ownerguid="eac75aca-e508-480f-9b86-36cb0c904578"> -<Form> -<AUni ws="qvm-x-ach">catölicu</AUni> -<AUni ws="qvm-x-acl">catölicu; catölicu; catölico</AUni> -<AUni ws="qvm-x-akh">catölicu</AUni> -<AUni ws="qvm-x-akl">catölicu; catölicu; catölico</AUni> -<AUni ws="qvm-x-ame">catölicu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="56da6572-a106-43d5-ab55-28f96bf065ea"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mantsari:tsi</AUni> -<AUni ws="qvm-x-acl">mantsare:tsi; mantsare:tse</AUni> -<AUni ws="qvm-x-akh">mantsari:tsi</AUni> -<AUni ws="qvm-x-akl">mantsare:tsi; mantsare:tse</AUni> -<AUni ws="qvm-x-ame">mantsari:tsi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*manchari:chi</AUni> -<AUni ws="qvm-x-acl">*manchari:chi</AUni> -<AUni ws="qvm-x-akh">*manchari:chi</AUni> -<AUni ws="qvm-x-akl">*manchari:chi</AUni> -<AUni ws="qvm-x-ame">*manchari:chi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.305" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="09bf96f1-6e38-4fd9-823e-40442a5d6e25" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*manchari:chi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7aa05678-af75-4a0a-ab75-b449f7ca9a6a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a98f6042-6292-4046-a9e6-e51f220cf3c7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *manchari:chi 
\entryTyp root 
\gENG 
\gSPN 
\e *manchari:chi 
\c V1 
\mp NeverForeshortened 
\ach mantsari:tsi 
\akh mantsari:tsi 
\acl mantsare:tsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl mantsare:tse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mantsare:tsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mantsare:tse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mantsari:tsi 
\mp +FinalI 
\i Deu 20.8 Maygayquipis jaca shongu y mishi pulsu carga waquin cagta mana mantsarëtsinayquipag wayiquiman cuticuy.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoMorphType" guid="56db04bf-3d58-44cc-b292-4c8aa68538f4" ownerguid="d7f713d8-e8cf-11d3-9764-00c04f186933"> -<Abbreviation> -<AUni ws="en">part</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">A particle is a word that does not belong to one of the main classes of words, is invariable in form, and typically has grammatical or pragmatic meaning.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">particle</AUni> -</Name> -<SecondaryOrder val="0" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmAnnotationDefn" guid="56de9b1a-1ce7-42a1-aa76-512ebeff0dda" ownerguid="7ffc4eab-856a-43cc-bc11-0db55738c15b"> -<Abbreviation> -<AUni ws="en">ConsNt</AUni> -</Abbreviation> -<AllowsComment val="True" /> -<AllowsFeatureStructure val="False" /> -<AllowsInstanceOf val="False" /> -<BackColor val="0" /> -<CanCreateOrphan val="True" /> -<CopyCutPastable val="True" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">Note written from consultant to translation team.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<InstanceOfSignature val="0" /> -<IsProtected val="True" /> -<MaxDupOccur val="0" /> -<Multi val="False" /> -<Name> -<AUni ws="en">Consultant Note</AUni> -</Name> -<PromptUser val="True" /> -<Severity val="0" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -<UserCanCreate val="True" /> -<ZeroWidth val="True" /> -</rt> -<rt class="LexEntry" guid="56e1564e-0c93-4aee-b410-bffad68e7980"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rillantina</AUni> -<AUni ws="qvm-x-acl">rillantina</AUni> -<AUni ws="qvm-x-akh">rillantina</AUni> -<AUni ws="qvm-x-akl">rillantina</AUni> -<AUni ws="qvm-x-ame">rillantina</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rillantina</AUni> -<AUni ws="qvm-x-acl">*rillantina</AUni> -<AUni ws="qvm-x-akh">*rillantina</AUni> -<AUni ws="qvm-x-akl">*rillantina</AUni> -<AUni ws="qvm-x-ame">*rillantina</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.358" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="518101fd-45c2-4b1f-b6a8-aac637692c18" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rillantina</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7899d602-5315-4f31-8301-9202ee2e1406" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f8c5d222-fc91-40e5-8da5-8d572438cb39" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rillantina 
\entryTyp root 
\gENG 
\gSPN 
\e *rillantina 
\c N0 
\ach rillantina 
\akh rillantina 
\acl rillantina 
\akl rillantina 
\ame rillantina</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="56e3dd29-e1bd-41fb-bce3-80efaad5a34e" ownerguid="0c5445b7-c733-40af-91dc-9fef0a52262c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="56e59fb3-5b43-434a-9a2a-311e732ed264" ownerguid="0cc62b4a-d5ff-4f45-83d1-e2b46e5d159a"> -<ExampleWords> -<AUni ws="en">morning, midmorning, am, antemeridian, ante meridiem, forenoon, matins, morn, early morning</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the time between dawn and noon?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="56e6a9fd-f3fc-49fc-adcc-383e281be878" ownerguid="12781062-ee36-4703-9bc0-cee4ed467ee5"> -<ExampleWords> -<AUni ws="en">newspaper, paper, magazine, press, periodical</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to newspapers and magazines?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="56e76dee-5c1f-4573-b4fb-b2973776f47f" ownerguid="3dddcd57-36f8-4d5a-8ad6-0cee0517cec4"> -<Form> -<AUni ws="qvm-x-ach">mana</AUni> -<AUni ws="qvm-x-acl">mana</AUni> -<AUni ws="qvm-x-akh">mana</AUni> -<AUni ws="qvm-x-akl">mana</AUni> -<AUni ws="qvm-x-ame">mana</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="56eaf5b7-255e-4811-bb18-f3465f56a55a" ownerguid="13129ec3-872e-4183-8b6d-190a317ab0f4"> -<Form> -<AUni ws="qvm-x-ach">atsca</AUni> -<AUni ws="qvm-x-acl">atsca</AUni> -<AUni ws="qvm-x-akh">atska</AUni> -<AUni ws="qvm-x-akl">atska</AUni> -<AUni ws="qvm-x-ame">atska</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" ownerguid="05a85ca4-fceb-464f-9580-95990ef9c793"> -<Form> -<AUni ws="qvm-x-ach">shga</AUni> -<AUni ws="qvm-x-acl">shga</AUni> -<AUni ws="qvm-x-akh">shqa</AUni> -<AUni ws="qvm-x-akl">shqa</AUni> -<AUni ws="qvm-x-ame">shqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="56ef3f06-7fb9-462e-a7d0-517f3ce1623f" ownerguid="5e9f361d-17dc-4ada-a312-8da269d22a64"> -<Abbreviation> -<AUni ws="en">1.6.1.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.978" /> -<DateModified val="2022-9-23 16:55:7.978" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for carnivores--meat-eating animals (phylum Chordata, class Mammalia, order Carnivora).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Carnivore</AUni> -</Name> -<Questions> -<objsur guid="3903d5bc-0104-47fb-a964-99e1162c704f" t="o" /> -<objsur guid="46df8867-96a5-4dfc-a2a5-79e91543148a" t="o" /> -<objsur guid="47481b1b-2b64-4be8-9c73-e22a4c6ef783" t="o" /> -<objsur guid="8e30bedb-ba12-4c7a-a2d7-8e4168362d3a" t="o" /> -<objsur guid="001fe9db-fbb9-4cf0-83a5-51cdcd1cb98d" t="o" /> -<objsur guid="76178bb3-c972-412d-95c7-90b340ffbaf1" t="o" /> -<objsur guid="cd2109bb-a974-4894-b50e-5c1190d954df" t="o" /> -<objsur guid="8960a49d-1d09-4f04-8a2b-dd35a56d7644" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="56f2f0b3-a20d-498d-be8b-1ee89f05f192" ownerguid="70708d98-c14f-4796-98db-50672b023e91"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a287c9ec-d8d7-4263-97bf-f5370d3b58ee" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="56f459a1-d5cf-47b3-9749-f4b9c71f58f9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">linterna</AUni> -<AUni ws="qvm-x-acl">linterna</AUni> -<AUni ws="qvm-x-akh">linterna</AUni> -<AUni ws="qvm-x-akl">linterna</AUni> -<AUni ws="qvm-x-ame">linterna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+linterna</AUni> -<AUni ws="qvm-x-acl">+linterna</AUni> -<AUni ws="qvm-x-akh">+linterna</AUni> -<AUni ws="qvm-x-akl">+linterna</AUni> -<AUni ws="qvm-x-ame">+linterna</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.94" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cd4ec60f-d9b3-4b8e-8fc5-155434aae5b7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+linterna</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c292c4b0-114f-416c-9f24-4f3fa3206f63" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="00cea761-e13c-485d-ba1a-7a411be52da7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +linterna 
\entryTyp root 
\gENG flashlight 
\gSPN linterna 
\e +linterna 
\c N0 
\ach linterna 
\akh linterna 
\acl linterna 
\akl linterna 
\ame linterna</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="56f5cbf7-5cc1-4ad6-9fc5-e8db18cb69d1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tumba</AUni> -<AUni ws="qvm-x-acl">tumba</AUni> -<AUni ws="qvm-x-akh">tumba</AUni> -<AUni ws="qvm-x-akl">tumba</AUni> -<AUni ws="qvm-x-ame">tumba</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tumbar</AUni> -<AUni ws="qvm-x-acl">+tumbar</AUni> -<AUni ws="qvm-x-akh">+tumbar</AUni> -<AUni ws="qvm-x-akl">+tumbar</AUni> -<AUni ws="qvm-x-ame">+tumbar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.987" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="51fd2cf0-de34-403a-9329-8df31bd04d44" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tumbar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="33e82517-2fe3-468a-ab9c-7dba5274318d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cd04850d-1690-460e-9808-8aafe074adcd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tumbar 
\entryTyp root 
\gENG cut.down 
\gSPN tumbar 
\e +tumbar 
\c V1 
\ach tumba 
\akh tumba 
\acl tumba 
\akl tumba 
\ame tumba</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="56f78f5c-f855-44fa-8505-b9c8cbeac37a" ownerguid="68ed3e51-ddc4-4cec-89ff-605259ac9fcf"> -<ExampleWords> -<AUni ws="en">sneeze, sniff, sniffle, snort, snuffle, wheeze</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe the way air moves through the nose?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="56f9350b-6aa7-41ba-9a98-67ebbe4bc6fd" ownerguid="b005a4c0-e205-4d9a-b997-6a4067909c5a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="5c44a8ae-1d5e-45d3-a40f-48634b4e1f51" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">thistle</AUni> -<AUni ws="es">cardón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cabd9361-1a9f-4b0f-be2d-48d935479410" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="56fc3b44-b67a-4c18-b08b-5b3135fa9eb2" ownerguid="c73f868b-a74a-4b28-ac3b-e09ffbe90b67"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="56ffe9b0-dd1b-4ceb-9f8b-a1ad4bab7d64" ownerguid="25382909-4325-49d2-8295-22e02f377ddc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">get.toqosh</AUni> -<AUni ws="es">recoger.tocosh</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5b416b99-469b-4c18-af5d-9b3303ea1a44" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="570108aa-64f7-46b9-9f02-a200f6ce9d76"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gasgu</AUni> -<AUni ws="qvm-x-acl">gasgu; gasgu; gasgo</AUni> -<AUni ws="qvm-x-akh">qasqu</AUni> -<AUni ws="qvm-x-akl">qasqu; qasqu; qasqo</AUni> -<AUni ws="qvm-x-ame">qasqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qasqu</AUni> -<AUni ws="qvm-x-acl">*qasqu</AUni> -<AUni ws="qvm-x-akh">*qasqu</AUni> -<AUni ws="qvm-x-akl">*qasqu</AUni> -<AUni ws="qvm-x-ame">*qasqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.142" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0d23b318-0b9e-4a99-ad03-e88eed88a0a9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qasqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="251ba062-8967-4710-9264-a77d083c1ec7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="043efc81-7a03-49dd-820b-5656c5f20d5d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qasqu 
\entryTyp root 
\gENG breast 
\gSPN pecho 
\e *qasqu 
\c N0 
\ach gasgu 
\akh qasqu 
\acl gasgu / _# 
\acl gasgu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gasgo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qasqu / _# 
\akl qasqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qasqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qasqu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5703bcc8-4944-4b48-a01f-530517c0eb34" ownerguid="deff977c-a664-4456-9d44-a5127dd2a7d1"> -<ExampleWords> -<AUni ws="en">wanderer, vagabond, tramp, hobo</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who wanders?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5703d451-de4d-4ab9-a58d-1b1ff9a463f7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsumu</AUni> -<AUni ws="qvm-x-acl">tsumu; tsumo</AUni> -<AUni ws="qvm-x-akh">tsumu</AUni> -<AUni ws="qvm-x-akl">tsumu; tsumo</AUni> -<AUni ws="qvm-x-ame">tsumu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chumu</AUni> -<AUni ws="qvm-x-acl">*chumu</AUni> -<AUni ws="qvm-x-akh">*chumu</AUni> -<AUni ws="qvm-x-akl">*chumu</AUni> -<AUni ws="qvm-x-ame">*chumu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.345" /> -<DateModified val="2022-10-10 21:19:47.693" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="03a77f4b-371b-4ecf-9d7f-0452ee3d75d0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chumu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fab5b48b-5cfc-4115-9712-bcecbfaa9e92" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5d3be5a6-3867-4e50-b050-9d3a0d55484b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chumu 
\entryTyp root 
\gENG push.back.in 
\gSPN 
\e *chumu 
\c V1 
\ach tsumu 
\akh tsumu 
\acl tsumu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tsumo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsumu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsumo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsumu 
\i ZEC 5.8 Tsayno nircushpanmi warmita ruriman tsumur plömu tsapanawan yapay tsaparcorgan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="570a2c63-a9ff-4e32-960b-82a3d451907a" ownerguid="62f62ab7-4ac7-4818-97ad-889af98739d9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="570a68db-09ff-4c42-9efb-e2b8e6377925" ownerguid="f56a2511-10cc-4829-940d-49051429bfba"> -<ExampleWords> -<AUni ws="en">lumpy, smooth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words describe a liquid with lumps in it?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="570bdd90-183a-4598-b422-3e7055547022" ownerguid="dad53ed2-34f7-42a1-a9db-6ed5cd728a57"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="WfiMorphBundle" guid="57112617-2bac-4626-89e7-f3a846b58bb4" ownerguid="5f22e72b-5029-485a-a5e8-7fa7276c9920"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wawa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wawa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wawa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wawa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wawa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="947ece62-6ca2-4ac8-a84c-d2baa509eb59" t="r" /> -</Morph> -<Msa> -<objsur guid="2d28f9c9-ff25-4f47-a9dc-c545ea868393" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="57138ef8-df11-4587-bb7d-8aa3b32a28f4" ownerguid="247643e1-281d-409c-9b29-ea9f202672c1"> -<Form> -<AUni ws="qvm-x-ach">sortiya</AUni> -<AUni ws="qvm-x-acl">sortiya</AUni> -<AUni ws="qvm-x-akh">sortiya</AUni> -<AUni ws="qvm-x-akl">sortiya</AUni> -<AUni ws="qvm-x-ame">sortiya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="57146ac6-81be-456b-bb4d-bd72a2dad303" ownerguid="ac4a936e-6c05-4e73-8d40-dfe4223b47fa"> -<ExampleWords> -<AUni ws="en">player</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What is a player called?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5717a8ce-7d3f-4224-be86-1dd06111a967" ownerguid="ce30eb9c-8260-476b-878c-0a078d596955"> -<ExampleWords> -<AUni ws="en">amnesia</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to forgetting many things because of a head injury?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5717d330-944a-4606-aabd-2e94106ac0ff" ownerguid="7648040b-0aa5-4d9a-8f13-ffd066b81602"> -<ExampleWords> -<AUni ws="en">make something longer, lengthen, extend, stretch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making something long?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="5718fcc8-1eba-4b8d-9b6b-0c8349f53f80" ownerguid="66d8b546-92f5-4e94-b992-08be81c3d30c"> -<Abbreviation> -<AUni ws="en">7.7.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.549" /> -<DateModified val="2022-9-23 16:55:8.549" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to aiming at a target, and for hitting or missing the target.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Aim at a target</AUni> -</Name> -<Questions> -<objsur guid="73b2b4b1-b605-4422-8a5c-07946c7e1257" t="o" /> -<objsur guid="3577f665-7a3f-4f8f-bcfd-fd5ed4a9f8e1" t="o" /> -<objsur guid="d8e4d75f-5294-4e30-b32f-75b7b0f58f76" t="o" /> -<objsur guid="47768d1b-405f-4b0e-934c-bbea1405480f" t="o" /> -<objsur guid="c35d2def-3683-4bc3-8e74-ded0fcd81d5e" t="o" /> -<objsur guid="6fbd0985-34ff-4745-997b-e2a649c9272a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="571dbac2-46fa-493c-bcc4-4d6e9755a641" ownerguid="8ed1a8ca-f15a-4ed6-bad9-703aa85775ba"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="571e9faf-d17e-4052-b9a9-08d3301a43ba" ownerguid="76795fdd-55dc-4fb7-a9ad-d1423c31df50"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en"><Who> is that?; <Where> did you go?; <How many> did you get?; <How often> will you go?; <Why> did you do that?</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">who, what, when, where, how, why</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What pronouns are used in questions?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="571f03b5-b09d-44f7-bc96-11184c4048ce" ownerguid="467dd680-ac64-4dc4-8a17-1cfe297d3392"> -<ExampleWords> -<AUni ws="en">simple, basic, crude, elemental, elementary, neat, plain, primitive, rudimentary, single, uniform, unsophisticated, low-tech</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is simple?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="57212f6e-763d-40b9-a0eb-456706d38d9c" ownerguid="a7bbb255-5b0a-4002-ae08-64f896cfacb5"> -<Form> -<AUni ws="qvm-x-ach">premiu; premio</AUni> -<AUni ws="qvm-x-acl">premiu; premiu; premio</AUni> -<AUni ws="qvm-x-akh">premiu; premio</AUni> -<AUni ws="qvm-x-akl">premiu; premiu; premio</AUni> -<AUni ws="qvm-x-ame">premiu; premio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="57225f57-ba51-45d7-b6d2-b22052877ea4" ownerguid="62b4ae33-f3c2-447a-9ef7-7e41805b6a02"> -<Abbreviation> -<AUni ws="en">4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.205" /> -<DateModified val="2022-9-23 16:55:8.205" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to social activities.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Social activity</AUni> -</Name> -<OcmCodes> -<Uni>517 Leisure Time Activities</Uni> -</OcmCodes> -<Questions> -<objsur guid="cc89b37f-c314-48ec-9f1e-b67bc51f5224" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="935da513-126e-4cab-8e07-625458821181" t="o" /> -<objsur guid="c4b110cf-d968-4bc6-ac0c-7e70cbad2756" t="o" /> -<objsur guid="5446b5cf-f05a-4bb2-89eb-ce63e27040f3" t="o" /> -<objsur guid="4b3a9b5a-df7d-4ec2-9576-2c07fe396021" t="o" /> -<objsur guid="e27adda9-0761-4b7f-abbf-24938ce1c01a" t="o" /> -<objsur guid="6745c89d-1fcd-44b8-be4b-9fd9d62f64e7" t="o" /> -<objsur guid="a3d95c6a-4b0b-4af0-aca8-addd042becd2" t="o" /> -<objsur guid="c27b87cf-1211-4df2-96b1-12c416edabbe" t="o" /> -<objsur guid="4e791773-94c8-4667-93f8-92dc0100ddfe" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="5722703b-58fb-4928-952b-d807c85ca9d9" ownerguid="605bb0c9-2a37-431c-8b35-6abb7d5a59e4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="db12ca59-48ff-452b-8e8a-c71ba37c15bb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="57237095-23cf-43ba-aa6c-89cecdd35ff8" ownerguid="e7c58c11-2911-446a-96b0-2113247f3792"> -<Abbreviation> -<AUni ws="en">4.1.9.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to orphans.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Orphan</AUni> -</Name> -<Questions> -<objsur guid="11803c86-bcdf-48c6-abc0-1f74eb9c32ed" t="o" /> -<objsur guid="5dfdd971-0dd4-4ca8-83f4-f635d659f841" t="o" /> -<objsur guid="31624097-d995-4b84-ae46-069b1961ec93" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="57247896-cc86-4b09-9e24-9ae2a49f8c1e" ownerguid="6f416602-9185-48c0-ad76-3e5b1caf9134"> -<Form> -<AUni ws="qvm-x-ach">papïtu</AUni> -<AUni ws="qvm-x-acl">papïtu</AUni> -<AUni ws="qvm-x-akh">papïtu</AUni> -<AUni ws="qvm-x-akl">papïtu</AUni> -<AUni ws="qvm-x-ame">papïtu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="5725c059-943d-466e-8b17-68426e518750" ownerguid="88239bd1-1eec-4fa5-8bc9-2e2d59bda62a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">add.to</AUni> -<AUni ws="es">añadir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a37d219b-b791-482f-80af-99377e0fc8b5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5728b699-9a17-4021-9579-76f5d762a090"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shuyshu</AUni> -<AUni ws="qvm-x-acl">shuyshu; shuysho</AUni> -<AUni ws="qvm-x-akh">shuyshu</AUni> -<AUni ws="qvm-x-akl">shuyshu; shuysho</AUni> -<AUni ws="qvm-x-ame">shuyshu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shuyshu</AUni> -<AUni ws="qvm-x-acl">*shuyshu</AUni> -<AUni ws="qvm-x-akh">*shuyshu</AUni> -<AUni ws="qvm-x-akl">*shuyshu</AUni> -<AUni ws="qvm-x-ame">*shuyshu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.662" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a2e161e6-7b5c-4e4a-9250-d4cef698f67a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shuyshu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="679ebc93-4eef-4dc0-97ae-527f57230a22" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ef21c62d-2402-4913-8641-36cff59e83c5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shuyshu 
\entryTyp root 
\gENG sift 
\gSPN cerner 
\e *shuyshu 
\c V1 
\ach shuyshu 
\akh shuyshu 
\acl shuyshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shuysho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shuyshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shuysho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shuyshu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="572abe3c-c5a0-4354-8e03-8e6555dd335d" ownerguid="5f3e44b8-e94c-49b4-9e2d-1acd93dddf75"> -<ExampleWords> -<AUni ws="en">position, post, office</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to position in the government?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="572b8273-0805-45dd-ae61-9457090f343b" ownerguid="70953222-5bc5-4fa2-a85a-01827f7bc537"> -<ExampleWords> -<AUni ws="en">ask someone the way, ask for directions</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What refer to asking someone the way?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5730b2e3-200d-4284-aa70-f3111d0dd00d" ownerguid="b5753e98-bf3e-4bc0-8b0f-ecaaf4d2d3f3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="Segment" guid="5732158a-3529-42ba-967a-0d886ea83daa" ownerguid="5ee176c4-c63e-4b8d-a966-d927606f0795"> -<Analyses> -<objsur guid="84e3cdd2-d9ce-4f33-99b4-cf478bf23689" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="57346612-c110-475b-87af-d868f3ae1046" ownerguid="14da8c3c-5e96-49b0-9459-c7dfa54e82e9"> -<Form> -<AUni ws="qvm-x-ach">ruina</AUni> -<AUni ws="qvm-x-acl">ruina</AUni> -<AUni ws="qvm-x-akh">ruina</AUni> -<AUni ws="qvm-x-akl">ruina</AUni> -<AUni ws="qvm-x-ame">ruina</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5737552b-09d9-4cfe-b3de-171b4ffc4672" ownerguid="12f12bf3-f232-4477-bf39-d91b7f55c2c3"> -<ExampleWords> -<AUni ws="en">frequent, repeated, habitual</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that happens often?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="5737714d-49e4-4eb4-8e46-03203ee5340b" ownerguid="596ab399-e442-4afe-8796-633a49de65a7"> -<Abbreviation> -<AUni ws="en">4.7.9.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.274" /> -<DateModified val="2022-9-23 16:55:8.274" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to deserving something--if you do something, either good or bad, something can happen to you as a result of what you did. For instance you can receive a reward for doing good, or a punishment for doing wrong. If what happened to you is like what you did, people can think it is right that this thing happened to you.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Deserve</AUni> -</Name> -<Questions> -<objsur guid="0872f686-0c30-4306-aa93-3387d5ea59f1" t="o" /> -<objsur guid="c76a339f-647a-456e-be19-3481dab66962" t="o" /> -<objsur guid="f05377d2-916a-492c-a204-eb319d506e91" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="57394f91-5eb2-44a6-8089-a18d67c219ea" ownerguid="d2c7f746-a2fd-4e12-bff5-84c612e376bd"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="r" /> -</Morph> -</rt> -<rt class="CmDomainQ" guid="573a1ce2-04b4-4b8f-baed-962c951eaa77" ownerguid="5261497b-6beb-4db1-9de2-10b5f6f8ec69"> -<ExampleWords> -<AUni ws="en">initiator, founder, originator, starter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What is a person called who starts something?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="573bf23a-3fde-4552-9263-62b7c71cad02" ownerguid="ea46de30-a1a9-4828-84a8-9165f61f8b20"> -<Abbreviation> -<AUni ws="en">6.4.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to fishing with a net.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Fish with net</AUni> -</Name> -<Questions> -<objsur guid="6082968f-63ca-4b72-a5a1-d8dd5a3988ee" t="o" /> -<objsur guid="e0addaae-3fda-4617-ac22-54c21d2ffd93" t="o" /> -<objsur guid="fea49053-4ae5-4244-a339-9b66c66a3690" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="573d0569-0866-400d-b8b5-e35c1a33c13b" ownerguid="d7861def-70c1-470f-bca6-8230cbbaa3e9"> -<ExampleWords> -<AUni ws="en">look, look at, view, observe, eye (v), cast an eye on, watch, take a look at, have a look at</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to consciously looking at something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="573e8242-bb98-4fe2-b30a-59dfc793f8aa" ownerguid="ea75c415-1cdf-4e67-8942-e8be5b569c91"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">flirt</AUni> -<AUni ws="es">coqueta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="af80ae07-faac-4d0c-8fa0-538cf1cd0a0c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="57403941-d82b-4420-ba7e-9b31985229f1" ownerguid="7cffdb18-f3d9-4bd8-99fd-4215b98c5b94"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sign</AUni> -<AUni ws="es">seña</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="10851688-0b67-4d3a-9fea-bfefaf630abf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="57417256-b437-4941-a0fb-d55fa0cdabcf" ownerguid="653c372e-f413-434f-b45e-8fa990cebcdb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="57430dab-b66e-435e-a70c-1dcda14ebc50" ownerguid="4ead25b0-39ad-459b-a180-9f98727d5a9f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5744329d-a4d7-4c0c-ab4f-d372930672b9" ownerguid="054e81ce-abd8-4069-989d-13e2fa58851c"> -<ExampleWords> -<AUni ws="en">show-off, poseur, exhibitionist, flamboyant, dramatic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to someone who shows off?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="574755a9-b542-42de-85bc-0a4e562e0f78" ownerguid="ec79e90e-ecd3-497f-bc14-ac64181f53d7"> -<ExampleWords> -<AUni ws="en">harmless, innocuous, do no harm</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that does not harm anything?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="574b283b-ad27-46c2-b800-af5ce7488bd3" ownerguid="1ba433c0-abc7-46a0-9813-326b76a3fce9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="812cc454-f3b8-40a0-9a07-4ebbb49abc8e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="574ccacf-9e43-43b5-b136-81b30bdf5cb3" ownerguid="4a1e1292-09bd-49d9-8cbf-2aaec6a39256"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="574fa2c8-6204-461d-815c-fee1f435af70"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">garpu; garpa</AUni> -<AUni ws="qvm-x-acl">garpu; garpo; garpa</AUni> -<AUni ws="qvm-x-akh">qarpu; qarpa</AUni> -<AUni ws="qvm-x-akl">qarpu; qarpo; qarpa</AUni> -<AUni ws="qvm-x-ame">qarpu; qarpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qarpU</AUni> -<AUni ws="qvm-x-acl">*qarpU</AUni> -<AUni ws="qvm-x-akh">*qarpU</AUni> -<AUni ws="qvm-x-akl">*qarpU</AUni> -<AUni ws="qvm-x-ame">*qarpU</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.116" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ffccb1f1-676e-4680-9e42-67cccef75c53" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qarpU</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="793d0517-5c2f-4b41-bf14-41241cf46709" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5d9afe0b-1d2c-4074-bc6c-7385e2d1be42" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qarpU 
\entryTyp root 
\gENG throw.down 
\gSPN botar 
\e *qarpU 
\c V2 
\mp PMlowered 
\ach garpu 
\ach garpa morphlowered 
\akh qarpu 
\akh qarpa morphlowered 
\acl garpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl garpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl garpa morphlowered 
\akl qarpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qarpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qarpa morphlowered 
\ame qarpu 
\ame qarpa morphlowered 
\i MIC 1.6 Tsay marcapa perga murällancunatapis juchuratsir rumincunatapis ragrapami garputsishag.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="57500890-a25b-4c8a-9287-eb4de22868d7" ownerguid="dfbb1135-3552-4f84-8e4a-5f2ee2144bf3"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5757c9ec-adf8-403d-8ae9-7a839f0faea5" ownerguid="16ee1e09-27ad-48c5-aa07-6933ecbbc716"> -<ExampleWords> -<AUni ws="en">harden, firm up, petrify, stiffen, toughen</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to making something hard?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="575c0d0c-51f1-462d-b724-4ded9f16d190" ownerguid="a7dae83a-dce6-47ea-ab3f-ac8a3af4cce9"> -<ExampleWords> -<AUni ws="en">border, boundary</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the border of a country?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="575c4ee2-c3ba-4227-a7de-43181b4e1eb6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">miñi</AUni> -<AUni ws="qvm-x-acl">miñi; miñe</AUni> -<AUni ws="qvm-x-akh">miñi</AUni> -<AUni ws="qvm-x-akl">miñi; miñe</AUni> -<AUni ws="qvm-x-ame">miñi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*miñi</AUni> -<AUni ws="qvm-x-acl">*miñi</AUni> -<AUni ws="qvm-x-akh">*miñi</AUni> -<AUni ws="qvm-x-akl">*miñi</AUni> -<AUni ws="qvm-x-ame">*miñi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.446" /> -<DateModified val="2022-10-10 21:18:47.204" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6282440d-8ebe-42dc-9c28-ddecca8bf71d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*miñi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="08637792-6fd4-4d76-9920-f5a58c249273" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f7d05cd3-a8d1-4966-ad4a-585056579f23" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *miñi 
\entryTyp root 
\gENG 
\gSPN 
\e *miñi 
\c V1 
\mp +FinalI 
\ach miñi 
\akh miñi 
\acl miñi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl miñe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl miñi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl miñe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame miñi 
\i JDG 16.13 Tsaynog niptin Sansón caynog nergan: <<Telarcho caycag awaman ganchis piltäta miñircur shumag tacanqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="575f8d2e-319a-4d41-a2ed-82d93741e216" ownerguid="514974a2-c2fd-4b25-a24d-2ff52fa3d798"> -<ExampleWords> -<AUni ws="en">fireman, firefighter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a person whose job is to stop fires?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5764fcf2-1f97-4144-89cd-64a7a3c5c71b" ownerguid="2eaf4079-1eac-43b3-bd42-4225eb59613b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">coat</AUni> -<AUni ws="es">saco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="14b8a283-ab48-4991-9c2d-c247704cb9b0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5765f05e-0589-4c90-98bc-0219b3af292b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">carbón; carbon</AUni> -<AUni ws="qvm-x-acl">carbón; carbon</AUni> -<AUni ws="qvm-x-akh">carbón; carbon</AUni> -<AUni ws="qvm-x-akl">carbón; carbon</AUni> -<AUni ws="qvm-x-ame">carbón; carbon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+carbón.1</AUni> -<AUni ws="qvm-x-acl">+carbón.1</AUni> -<AUni ws="qvm-x-akh">+carbón.1</AUni> -<AUni ws="qvm-x-akl">+carbón.1</AUni> -<AUni ws="qvm-x-ame">+carbón.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.62" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="43d5f6c6-0566-4851-b8a4-84458965e912" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+carbón.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="01fff518-ac30-4f67-872c-ec87d4e2d660" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="395bf5da-0e51-4de8-ac12-ec02a81b4233" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +carbón.1 
\entryTyp root 
\gENG coal 
\gSPN carbón 
\e +carbón.1 
\c N0 
\mp +FinalC 
\ach carbón / _# 
\ach carbon / ~_# 
\akh carbón / _# 
\akh carbon / ~_# 
\acl carbón / _# 
\acl carbon / ~_# 
\akl carbón / _# 
\akl carbon / ~_# 
\ame carbón / _# 
\ame carbon / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="576944bf-f90c-4d91-863d-7090961e1f11" ownerguid="275e8994-3b50-4690-b349-12e6f1b359a8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="5769ffc7-ed71-4657-b052-1964d8982947" ownerguid="dd12ac0f-55cc-4c79-a50c-d23cc7ea60b3"> -<ExampleWords> -<AUni ws="en">bath, bathing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the event of taking a bath?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="576b2505-60ae-484b-8431-472cf81e8183" ownerguid="710828bc-5dfb-4685-b1a5-156700ab08f1"> -<ExampleWords> -<AUni ws="en">reader, readership, circulation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who reads?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="576bc709-0eef-4380-9f60-8a389aa5dd59" ownerguid="06a89652-70e0-40ac-b929-ed42f011c9fc"> -<ExampleWords> -<AUni ws="en">extinct, extinction, endangered species</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a species dying out completely?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="576eaac5-acfb-40a2-9303-4dab1e6d7ad0" ownerguid="5956e75c-2394-43eb-be76-21ff3dbf9b68"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="576f2c8e-a5ac-495e-ba39-79e44a402f6e" ownerguid="98d7a4a9-4b27-4241-b2f6-6ca4f4b2181d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="576fc9d2-fdcb-4a04-98e2-eab2155cb680" ownerguid="a05e906f-289d-4ad8-b3b5-30a840c4c99d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="577017b0-ae87-4fa2-a51b-4f430497be75" ownerguid="aad7c9b0-aff3-4684-86d5-657a20e39288"> -<Abbreviation> -<AUni ws="en">4.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to exercising authority.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>37C Exercise Authority</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Exercise authority</AUni> -</Name> -<Questions> -<objsur guid="474202c7-86b1-4222-a2d7-a12e64382ea7" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="f70907c6-a064-425a-830f-e669319c38da" t="o" /> -<objsur guid="94f919c2-bf8b-4ae5-a611-8c0cd4d7a5d2" t="o" /> -<objsur guid="a84a5ffc-006c-4d29-b71f-5215cc40a5a8" t="o" /> -<objsur guid="bf0bdeeb-564d-407b-8bdf-31221aff7364" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="57709a78-c613-4f14-a4ed-a197eb48af7c" ownerguid="fbeda0cb-8d80-4fee-8f58-d54590880e8e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">too.much</AUni> -<AUni ws="es">demasiado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="53df5164-b0d0-462e-8f9c-66584976040e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="5771f3a1-fda3-4111-9abc-7a0d76c60a79" ownerguid="7b513a02-c3ae-4243-9410-16854d911258"> -<Abbreviation> -<AUni ws="en">9.7.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.728" /> -<DateModified val="2022-9-23 16:55:8.728" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the proper names of the tribes that exist around the language community, including the name of your own tribe. These tribal names may or may not correspond with the names of countries.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Tribal names</AUni> -</Name> -<Questions> -<objsur guid="ed618d7f-5959-49fb-96c1-6457cef4a166" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="57725619-6751-43af-ac67-86855a024a57" ownerguid="1b0270a5-babf-4151-99f5-279ba5a4b044"> -<ExampleWords> -<AUni ws="en">part of the body, body part, anatomy, appendage, member, orifice</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What general words refer to a part of the body?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="57731423-7fa1-4db7-bbec-33e18eb2c698" ownerguid="100c4fd3-744d-4964-a885-00afa91af0c6"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="57788dfe-4923-4f50-87f8-ac17e53a656c" ownerguid="2862f81c-3457-42fd-834d-32a18246a589"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sentence</AUni> -<AUni ws="es">oración</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="00c99c5d-be06-47c4-b135-99472571f673" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="577a9f51-263a-4c80-a439-84ce45b9c7cc" ownerguid="f02ae505-d6b7-4b30-9d97-8505d0d1a0c7"> -<Abbreviation> -<AUni ws="en">9.6.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.720" /> -<DateModified val="2022-9-23 16:55:8.720" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that the speaker uses to refer to the person he is addressing. These words are usually used when you start talking to someone, but can be used during a speech or conversation to refer to the person you are talking to.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>91D Markers of Direct Address</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Markers of direct address</AUni> -</Name> -<Questions> -<objsur guid="e59164ec-de0e-4bb6-9e78-261f5e198cf7" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="577cda4d-887c-497f-abc7-a57c3ec159ae" ownerguid="d2b9a972-f2de-4535-adbf-152b679769a0"> -<Form> -<AUni ws="qvm-x-ach">supi</AUni> -<AUni ws="qvm-x-acl">supi; supe</AUni> -<AUni ws="qvm-x-akh">supi</AUni> -<AUni ws="qvm-x-akl">supi; supe</AUni> -<AUni ws="qvm-x-ame">supi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="577d896f-5cee-4c39-a03b-a8907394fa1c" ownerguid="95f76778-3484-4cbf-a51d-e6acb79bd884"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ka</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ka</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="22806abf-f462-448a-bb3e-39bbf5d75aea" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="577f0bde-b146-47fe-9b31-e9d5f3457fcc" ownerguid="20b6e2ae-3638-4c31-803b-ce8eb255fa57"> -<Form> -<AUni ws="qvm-x-ach">aya</AUni> -<AUni ws="qvm-x-acl">aya</AUni> -<AUni ws="qvm-x-akh">aya</AUni> -<AUni ws="qvm-x-akl">aya</AUni> -<AUni ws="qvm-x-ame">aya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="5780925d-5a60-4240-8915-e0da44cbe1f5" ownerguid="caf2115b-eedb-41b5-80df-0c291df27dde"> -<Form> -<AUni ws="qvm-x-ach">guegu</AUni> -<AUni ws="qvm-x-acl">guegu; guego</AUni> -<AUni ws="qvm-x-akh">qequ</AUni> -<AUni ws="qvm-x-akl">qequ; qeqo</AUni> -<AUni ws="qvm-x-ame">qiqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="57810bbe-14e0-41c3-8186-888a0be882c4" ownerguid="ffa9ada0-ed30-4646-9042-f1596d41eb9d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="57835ac2-acce-4654-a32c-8672106a2aee" ownerguid="e3b02c76-d7ad-4d40-8fba-486bb3dcb1e2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="57837d75-156a-44b7-996a-07392cb707a3" ownerguid="318c8249-be92-4a1d-a930-d896c7f33f34"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dangerous</AUni> -<AUni ws="es">pelegroso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b1c1dde8-eb4b-4220-b6b2-d554fadfd634" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="57861382-852e-4a6c-a569-b4395e342b18" ownerguid="c8380d80-c01c-4638-9a43-37df36123ef2" /> -<rt class="CmDomainQ" guid="57899f34-de93-4c49-8385-75f049812287" ownerguid="71cbefc3-e0a5-4b97-9672-fa0cb34c59e4"> -<ExampleWords> -<AUni ws="en">ceremony</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to a ceremony?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="578a186d-d68d-411c-8ec0-5479c87301aa" ownerguid="d21db541-4122-465f-9db5-4c76f5e84426"> -<ExampleWords> -<AUni ws="en">make good money, be highly paid, be well paid, make a fortune, rake it in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to earning a lot of money?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="578baf67-d1cb-473e-aa7d-631e069a99a9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">paca</AUni> -<AUni ws="qvm-x-acl">paca</AUni> -<AUni ws="qvm-x-akh">paka</AUni> -<AUni ws="qvm-x-akl">paka</AUni> -<AUni ws="qvm-x-ame">paka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*paka.v</AUni> -<AUni ws="qvm-x-acl">*paka.v</AUni> -<AUni ws="qvm-x-akh">*paka.v</AUni> -<AUni ws="qvm-x-akl">*paka.v</AUni> -<AUni ws="qvm-x-ame">*paka.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.658" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="51e13e82-0d92-4e49-96ad-0f306fa281bf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*paka.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ca03f238-6060-43be-b2a8-aba6f25a6a03" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b960ee24-8956-42e1-8a2b-9974621f4164" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *paka.v 
\entryTyp root 
\gENG hide 
\gSPN esconder 
\e *paka.v 
\c V2 
\ach paca 
\akh paka 
\acl paca 
\akl paka 
\ame paka</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="578d985a-8c5a-41b3-8d4a-0465e57b145a" ownerguid="d839f4ef-784f-4f94-bd37-31039eb5e3fe"> -<Form> -<AUni ws="qvm-x-ach">maldisi</AUni> -<AUni ws="qvm-x-acl">maldisi; maldise</AUni> -<AUni ws="qvm-x-akh">maldisi</AUni> -<AUni ws="qvm-x-akl">maldisi; maldise</AUni> -<AUni ws="qvm-x-ame">maldisi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="5790ff1a-77f8-42d9-b303-62b62fe8cfde" ownerguid="a4ad6152-c5c0-4a2e-88ba-32585113f559"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="57960eca-f0fc-4209-b5ef-097cd1a58aad" ownerguid="82e1df69-8c52-4ae1-ab94-efaf11bc9086"> -<Form> -<AUni ws="qvm-x-ach">wegu</AUni> -<AUni ws="qvm-x-acl">wegu; wego</AUni> -<AUni ws="qvm-x-akh">wequ</AUni> -<AUni ws="qvm-x-akl">wequ; weqo</AUni> -<AUni ws="qvm-x-ame">wiqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="579647e2-a368-4435-8931-cca56ee66f70" ownerguid="9d6cbe74-93d6-41fb-b7e2-cc30adb28187"> -<ExampleWords> -<AUni ws="en">move up, go up, arise, hop up, lift yourself up, pull yourself up, jump, surge, go higher, get higher, levitate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving up?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="579659d9-7f03-465d-a59b-647c5a6b29bb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mami:ta</AUni> -<AUni ws="qvm-x-acl">mami:ta</AUni> -<AUni ws="qvm-x-akh">mami:ta</AUni> -<AUni ws="qvm-x-akl">mami:ta</AUni> -<AUni ws="qvm-x-ame">mami:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mamita</AUni> -<AUni ws="qvm-x-acl">+mamita</AUni> -<AUni ws="qvm-x-akh">+mamita</AUni> -<AUni ws="qvm-x-akl">+mamita</AUni> -<AUni ws="qvm-x-ame">+mamita</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.295" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="413eeef0-6e5b-425d-a13e-0c5b28c30f38" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mamita</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d87b8075-b417-425d-b925-df423a5246e4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e355387c-bb22-482b-9d37-69811d4009b3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mamita 
\entryTyp root 
\gENG ma'am 
\gSPN mamita 
\e +mamita 
\c N0 
\ach mami:ta 
\akh mami:ta 
\acl mami:ta 
\akl mami:ta 
\ame mami:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="579b014d-6897-4e10-abd0-85fe0da7cdf3" ownerguid="ac527685-f31d-42f3-81bd-97221a01c7ef"> -<ExampleWords> -<AUni ws="en">pattern, model, prototype, original</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a pattern?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="579f1a65-416c-4621-a929-ec013ecbfb6c" ownerguid="f5ff1715-8282-408b-92f6-6ac96194bb5d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">size</AUni> -<AUni ws="es">tamaño</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="eb8d57a6-ab7d-49c0-b0e6-4ea11056ef08" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="579f9b85-27df-4edb-9625-173a2d526681" ownerguid="1e7743e1-9108-4f56-8450-7c908507d477"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">visit</AUni> -<AUni ws="es">visitar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="535a0085-7ecb-4bd4-a52f-e74ce8f4b21a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="57a01fde-da7a-48e8-8aca-d51728007ae4" ownerguid="dbebc3bd-2d01-4d62-a009-866c18ee3527"> -<ExampleWords> -<AUni ws="en">infanticide</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to killing a baby after birth?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="57a30488-f824-498d-8602-5ce6b8949664" ownerguid="f40c36aa-65a5-4d32-9f81-eb51ae3b88de"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">government</AUni> -<AUni ws="es">gobierno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="81703408-d7fa-43fb-a1d1-386fdc14a22a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="57a47948-417b-4e5e-8e4b-c44f68879df1" ownerguid="c817af65-7cc8-4105-a8ed-47067d97b73b"> -<ExampleWords> -<AUni ws="en">uniform, dress uniform, fatigues, camouflage, helmet, beret, cap, gas mask, braid</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What special clothes are worn by police or soldiers?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="57a490bd-854d-427d-854b-9437340bb578" ownerguid="e173f481-ec57-4d1c-b517-be38ccb038f5"> -<ExampleWords> -<AUni ws="en">disperse, break up, scatter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to everyone leaving?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="57a5e538-15ff-4d25-acda-f8218a89d219"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">anca</AUni> -<AUni ws="qvm-x-acl">anca</AUni> -<AUni ws="qvm-x-akh">anka</AUni> -<AUni ws="qvm-x-akl">anka</AUni> -<AUni ws="qvm-x-ame">anka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*anka.n</AUni> -<AUni ws="qvm-x-acl">*anka.n</AUni> -<AUni ws="qvm-x-akh">*anka.n</AUni> -<AUni ws="qvm-x-akl">*anka.n</AUni> -<AUni ws="qvm-x-ame">*anka.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.780" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="af6d6235-ede3-4585-9da1-740122263157" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*anka.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f8422bae-0481-48fe-ad2c-4bb6f03b0559" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7fc29ad8-a72a-4413-86b3-4be969b2c18a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *anka.n 
\entryTyp root 
\gENG eagle 
\gSPN águila 
\e *anka.n 
\c N0 
\ach anca 
\akh anka 
\acl anca 
\akl anka 
\ame anka 
\mcc *anka.n / ~_ PRT2</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="57adc15f-b10d-4c30-a136-42c99d9bd822" ownerguid="56c46bc7-4c77-4ba3-8f2b-a47ff5bb0759"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">exercise</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fd532fe6-4587-4786-9276-5a52340e8ca4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="57b07c49-f5ff-4cf9-9333-0e10ca873e82"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">amu</AUni> -<AUni ws="qvm-x-acl">amu; amo</AUni> -<AUni ws="qvm-x-akh">amu</AUni> -<AUni ws="qvm-x-akl">amu; amo</AUni> -<AUni ws="qvm-x-ame">amu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*amu</AUni> -<AUni ws="qvm-x-acl">*amu</AUni> -<AUni ws="qvm-x-akh">*amu</AUni> -<AUni ws="qvm-x-akl">*amu</AUni> -<AUni ws="qvm-x-ame">*amu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.759" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b378ae47-e5ba-4693-9126-6e79d862145a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*amu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c7bd463c-adc0-4f02-ba85-3f88899d25b8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a79dbbf8-5bfb-46d2-a9cf-fe38d100aa09" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *amu 
\entryTyp root 
\gENG clench.in.mouth 
\gSPN agarrar.en.boca 
\e *amu 
\c V2 
\ach amu 
\akh amu 
\acl amu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl amo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl amu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl amo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame amu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="57b0da8d-f292-41ab-9655-e7c96e578366" ownerguid="91ddf495-a28b-4a32-90dc-6f997d0cd069"> -<ExampleWords> -<AUni ws="en">mouthpiece, bell, key, keyboard, drumstick, reed, bow, string, fret, pick, organ pipe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to the parts of musical instruments?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="57b1d961-01d8-4fbe-87ca-1c65cec621cb" ownerguid="2ec766be-79fc-4051-a56d-7bda64f875ee"> -<Form> -<AUni ws="qvm-x-ach">jita</AUni> -<AUni ws="qvm-x-acl">jita</AUni> -<AUni ws="qvm-x-akh">jita</AUni> -<AUni ws="qvm-x-akl">jita</AUni> -<AUni ws="qvm-x-ame">hita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="57b336b6-bb9a-48d2-a39a-c1bcd2d8ca23" ownerguid="ea273e20-5284-47f1-aa52-a570157ae264"> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="57b5918d-a552-4895-b2ee-2af8e7c54e5a" ownerguid="544b07f9-d735-4147-8613-18acb6d83838"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">grass</AUni> -<AUni ws="es">hierba</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a8e49960-d854-4961-8d03-0e847b1267bc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="57b6406f-9f1f-4597-8d25-35dcad2dadf6" ownerguid="7fe69c4c-2603-4949-afca-f39c010ad24e"> -<ExampleWords> -<AUni ws="en">secrete, secretion, excrete, excretion, product, fluid, body fluids, discharge, flux</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What general words refer to secretions of the body?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="57b6a765-2c9c-4b5f-8b57-3466b65cda43" ownerguid="3ec9fbad-4bd2-48f5-b9d7-4ac32811986c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2 N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">kiss</AUni> -<AUni ws="es">besar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="26162987-9dac-4257-8ea6-42a4d8d85b0d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="57b7a2b3-7da2-4a8e-8c1f-3cc52ea0531a" ownerguid="fb3fab20-330d-4956-b545-4da82564918b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">insult</AUni> -<AUni ws="es">insultar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="af206329-7cf0-4be1-a7c8-b4ae7cc22642" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="57b97ff5-9594-45d1-9ae4-69ecefa197ac" ownerguid="dc177f3c-d0fd-4232-adf1-a77b339cdbb2"> -<ExampleWords> -<AUni ws="en">school, schoolhouse, university, library, dormitory, conservatory</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What kinds of buildings are used for schools?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="57ba1f15-41d4-4d42-81ee-b20fc695f33b" ownerguid="fd33670e-ef16-4566-a62e-aa077e58407b"> -<ExampleWords> -<AUni ws="en">bawl, gurgle, coo, cry, squall</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(18) What sounds do babies make?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="57c0b313-73c5-48e3-9dba-263a4a2f76dc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tarush</AUni> -<AUni ws="qvm-x-acl">tarush</AUni> -<AUni ws="qvm-x-akh">tarush</AUni> -<AUni ws="qvm-x-akl">tarush</AUni> -<AUni ws="qvm-x-ame">tarush</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tarush</AUni> -<AUni ws="qvm-x-acl">*tarush</AUni> -<AUni ws="qvm-x-akh">*tarush</AUni> -<AUni ws="qvm-x-akl">*tarush</AUni> -<AUni ws="qvm-x-ame">*tarush</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.825" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ba8ef822-c741-4cb2-99aa-b91dba336f9e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tarush</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="69abb3c5-8756-4382-8775-65355e35d7e1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="73450365-7484-40cf-be06-60fdb060fedd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tarush 
\entryTyp root 
\gENG 
\gSPN 
\e *tarush 
\c N0 
\mp +FinalC 
\ach tarush 
\akh tarush 
\acl tarush 
\akl tarush 
\ame tarush</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="57c4f0db-8798-4f54-b36b-8fd43d851c77" ownerguid="f70907c6-a064-425a-830f-e669319c38da"> -<ExampleWords> -<AUni ws="en">leadership, charisma, stewardship, guidance, chieftainship</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the ability to lead?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="57c9a370-0f46-4475-98fd-c7a8b3f5074c" ownerguid="fe66d433-5135-498e-a29d-b42bf0317252"> -<Abbreviation> -<AUni ws="en">4.3.4.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.235" /> -<DateModified val="2022-9-23 16:55:8.235" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to spoiling something that is happening, such as an event, work, relationship, or feeling, by doing something that makes it less attractive, less enjoyable, or less effective--to do something bad to something that is happening, so that people can't do what they were doing or don't enjoy it as much.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Spoil</AUni> -</Name> -<Questions> -<objsur guid="39d63bc8-37b1-4be4-8ac3-693221ae62d6" t="o" /> -<objsur guid="07049d7e-5ddb-422d-b1fd-0f23267450e4" t="o" /> -<objsur guid="37da60a5-22fd-4aa1-89ee-cdb20649b7fb" t="o" /> -<objsur guid="a9ab39e7-1152-4f70-9b85-39971f8e97f1" t="o" /> -<objsur guid="bf470cc3-0a8a-4739-a81a-2dbadf318584" t="o" /> -<objsur guid="ecdb2635-f3d3-4274-a74c-058ab34aad23" t="o" /> -<objsur guid="b158858e-5753-436f-960a-36841ab7bbe7" t="o" /> -<objsur guid="c8668604-a266-43a2-97fb-5deb57741e64" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="76a06e45-99f7-446f-a2e8-e23edf6064bd" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="57cc89bf-47da-490e-9265-a9fdc8ac664f" ownerguid="82e4394a-2f58-4356-8d9c-1ad9dbe95293"> -<ExampleWords> -<AUni ws="en">cool, crisp, refresh, unfrozen</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is cool?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="57ce8feb-c051-4d2a-b0a2-b8dab5cb96ec" ownerguid="744d1402-05f5-4491-9c15-a5af03595edb"> -<ExampleWords> -<AUni ws="en">sin (n), misbehavior</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to something someone does that is bad?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="57cf7295-3398-4be3-be2c-56f0cd62268d" ownerguid="31d0407f-cb5e-4fae-96c7-bbef69cc8009"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="57d4be42-bf24-4b38-8b11-4fb0c1b1d9d7" ownerguid="99b40843-54bf-4c59-ae1d-d7146cebec48"> -<ExampleWords> -<AUni ws="en">lucky (charm/number/day)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that makes you lucky?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="57d85dc6-8fb4-4b0f-a608-610d7ae1fd1c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cancha</AUni> -<AUni ws="qvm-x-acl">cancha</AUni> -<AUni ws="qvm-x-akh">kancha</AUni> -<AUni ws="qvm-x-akl">kancha</AUni> -<AUni ws="qvm-x-ame">kancha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kantra</AUni> -<AUni ws="qvm-x-acl">*kantra</AUni> -<AUni ws="qvm-x-akh">*kantra</AUni> -<AUni ws="qvm-x-akl">*kantra</AUni> -<AUni ws="qvm-x-ame">*kantra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.922" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c88dad42-adba-4e8b-a21d-ce6479b82727" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kantra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d7dd0cad-db63-49e6-b49e-6f22f9a7d7b9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3d081371-33fd-4738-9eed-1814f4d7550e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kantra 
\entryTyp root 
\gENG corral 
\gSPN corral 
\e *kantra 
\c N0 
\ach cancha 
\akh kancha 
\acl cancha 
\akl kancha 
\ame kancha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="57d8c2d5-8317-47ac-8371-c534ba24f6bc" ownerguid="6b208fda-544c-4cba-b8cc-887b1018837f"> -<ExampleWords> -<AUni ws="en">lens, body, shutter, filter, film, film canister, tripod, flash</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What are the parts of a camera?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="57e2ae32-37b4-401f-b7a6-dc59a51e6d4a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pitu</AUni> -<AUni ws="qvm-x-acl">pitu; pito</AUni> -<AUni ws="qvm-x-akh">pitu</AUni> -<AUni ws="qvm-x-akl">pitu; pito</AUni> -<AUni ws="qvm-x-ame">pitu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pitu</AUni> -<AUni ws="qvm-x-acl">*pitu</AUni> -<AUni ws="qvm-x-akh">*pitu</AUni> -<AUni ws="qvm-x-akl">*pitu</AUni> -<AUni ws="qvm-x-ame">*pitu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.869" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e80c0c12-e6ac-42a9-80c5-87075a603489" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pitu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="739181c6-d941-431c-8cd0-caf5df51f391" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="82338911-8aa5-430d-b49a-b5a1289ef63e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pitu 
\entryTyp root 
\gENG wrap 
\gSPN envolver 
\e *pitu 
\c V2 
\ach pitu 
\akh pitu 
\acl pitu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pitu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pitu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="57e2b5ad-91d2-4fef-bd24-bdc1a5749df1" ownerguid="c202eb1b-5ce5-4be4-83c5-9ad24ddd4c18"> -<Form> -<AUni ws="qvm-x-ach">chagan</AUni> -<AUni ws="qvm-x-acl">chagan</AUni> -<AUni ws="qvm-x-akh">chaqan</AUni> -<AUni ws="qvm-x-akl">chaqan</AUni> -<AUni ws="qvm-x-ame">chaqan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="57e30013-110b-4dd7-b837-6d28f81d0ee1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">conse:ju</AUni> -<AUni ws="qvm-x-acl">conse:ju; conse:ju; conse:jo</AUni> -<AUni ws="qvm-x-akh">conse:ju</AUni> -<AUni ws="qvm-x-akl">conse:ju; conse:ju; conse:jo</AUni> -<AUni ws="qvm-x-ame">conse:ju</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+consejo</AUni> -<AUni ws="qvm-x-acl">+consejo</AUni> -<AUni ws="qvm-x-akh">+consejo</AUni> -<AUni ws="qvm-x-akl">+consejo</AUni> -<AUni ws="qvm-x-ame">+consejo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.172" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d724c60c-ec75-4d47-9415-a36823bfd255" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+consejo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e7a8fe92-7e46-4f56-b6ae-42d1edd99ce4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e24c3b1b-b94e-4e04-b390-4184d00a0871" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +consejo 
\entryTyp root 
\gENG council 
\gSPN consejo 
\e +consejo 
\c N0 
\ach conse:ju 
\akh conse:ju 
\acl conse:ju / _# 
\acl conse:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl conse:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl conse:ju / _# 
\akl conse:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl conse:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame conse:ju</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="57e367f4-7029-4916-a700-791db32b4745" ownerguid="67931f1c-9a0c-4d18-9762-e553c132256c"> -<Abbreviation> -<AUni ws="en">6.8.4.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to spending money.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>57K Spend, Waste</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Spend</AUni> -</Name> -<Questions> -<objsur guid="ada0be66-d372-4256-800b-bb3e6edf751c" t="o" /> -<objsur guid="0dead829-ed6e-4cce-9869-cd71c586ef65" t="o" /> -<objsur guid="80c318c0-af12-4803-89b0-19e4c4df2eef" t="o" /> -<objsur guid="18142c23-7636-49af-bcec-0e6e060e15a2" t="o" /> -<objsur guid="4d789d62-f441-4750-a8af-7066c1bd4a49" t="o" /> -<objsur guid="abb0be91-7836-4342-aeba-c6566e860c94" t="o" /> -<objsur guid="8a48f40c-3832-432e-b65b-ffac3b354ac4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="57e4208d-f9e0-40fd-bf36-bde85969ff75" ownerguid="b6e9b9c9-632b-48e7-99f7-fa53ebcb3bc5"> -<ExampleWords> -<AUni ws="en">knitted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words described something that has been knitted?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="57e435ff-f14a-44e1-b595-dff01f37fcc1" ownerguid="2d9a7fef-1302-4f0e-8708-7339d07116a4"> -<Form> -<AUni ws="qvm-x-ach">rga</AUni> -<AUni ws="qvm-x-acl">rga</AUni> -<AUni ws="qvm-x-akh">rqa</AUni> -<AUni ws="qvm-x-akl">rqa</AUni> -<AUni ws="qvm-x-ame">rqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="57ed66ee-f82b-4e80-955f-7492d85372b0" ownerguid="5e7a5899-df78-4aa7-bec9-b354acfe087f"> -<Abbreviation> -<AUni ws="en">4.6.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.256" /> -<DateModified val="2022-9-23 16:55:8.256" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to representing another person.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Represent</AUni> -</Name> -<Questions> -<objsur guid="dd7efcf7-7a5c-4b56-a1d4-f9f8671b4520" t="o" /> -<objsur guid="27a24374-8763-4113-93e1-de647c698c2e" t="o" /> -<objsur guid="610f5624-753a-4fc1-a6ca-2356e0de7de7" t="o" /> -<objsur guid="42e812b3-09e1-49c8-94bb-68bf36d919bc" t="o" /> -<objsur guid="10ca659b-a5bf-4061-a264-19124a82dd4f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="57eeb96f-cb61-4195-8fa0-ff80cf1aa246" ownerguid="31b453ae-00c4-453f-8aa3-de4485764ddb"> -<Form> -<AUni ws="qvm-x-ach">lucya</AUni> -<AUni ws="qvm-x-acl">lucya</AUni> -<AUni ws="qvm-x-akh">lukya</AUni> -<AUni ws="qvm-x-akl">lukya</AUni> -<AUni ws="qvm-x-ame">lukya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="57efcf39-b43c-4ccc-b359-d3e1ec700a82" ownerguid="94ad2e38-b17f-439d-a2ea-f9d344586d4f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="57f07b5f-75bf-4565-b969-ce0adc0b50d4" ownerguid="c0d903bf-6502-45dd-9dd8-cff7f022c696"> -<Abbreviation> -<AUni ws="en">8.1.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.559" /> -<DateModified val="2022-9-23 16:55:8.559" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to multiplying one number times another.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Multiply numbers</AUni> -</Name> -<Questions> -<objsur guid="e40571e5-ebc2-499f-9992-4ed0e1c7aed5" t="o" /> -<objsur guid="e8e449b7-3311-46e3-979a-78fbc8cf1748" t="o" /> -<objsur guid="a61b986d-3ebd-42f5-b13f-4db9652bec0d" t="o" /> -<objsur guid="0b6443ab-1c7d-433c-9ca2-c3e3ab7eebb1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="57f1ffbf-6812-4906-83f7-4e3cc61ebdb6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">manca</AUni> -<AUni ws="qvm-x-acl">manca</AUni> -<AUni ws="qvm-x-akh">manka</AUni> -<AUni ws="qvm-x-akl">manka</AUni> -<AUni ws="qvm-x-ame">manka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*manka.v</AUni> -<AUni ws="qvm-x-acl">*manka.v</AUni> -<AUni ws="qvm-x-akh">*manka.v</AUni> -<AUni ws="qvm-x-akl">*manka.v</AUni> -<AUni ws="qvm-x-ame">*manka.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.315" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bc347f34-23d8-4351-982f-2771f9421f75" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*manka.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4b5980ff-5ac3-46cc-8cb7-ddda5090cdf8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d6c5bf0f-e5a8-415a-9e99-3f2a48dc77e8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *manka.v 
\entryTyp root 
\gENG be.like.pot 
\gSPN ser.como.holla 
\e *manka.v 
\c V1 
\ach manca 
\akh manka 
\acl manca 
\akl manka 
\ame manka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="57f3b56c-d223-4571-9ca3-0591f9f9022c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shogush</AUni> -<AUni ws="qvm-x-acl">shogush</AUni> -<AUni ws="qvm-x-akh">shoqush</AUni> -<AUni ws="qvm-x-akl">shoqush</AUni> -<AUni ws="qvm-x-ame">shuqush</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shuqush</AUni> -<AUni ws="qvm-x-acl">*shuqush</AUni> -<AUni ws="qvm-x-akh">*shuqush</AUni> -<AUni ws="qvm-x-akl">*shuqush</AUni> -<AUni ws="qvm-x-ame">*shuqush</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.673" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b1392cdb-51f6-4d5f-90b4-f2eccfb37d30" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shuqush</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="469118f2-9ae8-44d6-8b20-16e05e235860" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d1401d06-ca1a-4df6-ae5e-b283707d5120" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shuqush 
\entryTyp root 
\gENG 
\gSPN 
\e *shuqush 
\c N0 
\mp +FinalC 
\ach shogush 
\akh shoqush 
\acl shogush 
\akl shoqush 
\ame shuqush 
\i 2KI 18.21 Shogushman tucnacuptiqui maqui paltayquiman tsalcu yaycognogmi mandagnin rey faraónpis gamcunapag canga.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="57f3d6ac-afa4-4ec7-9d9b-a535d13ea624" ownerguid="283ad818-9670-4a23-b97a-05cd2810800e"> -<Form> -<AUni ws="qvm-x-ach">luchuc</AUni> -<AUni ws="qvm-x-acl">luchuc</AUni> -<AUni ws="qvm-x-akh">luchuk</AUni> -<AUni ws="qvm-x-akl">luchuk</AUni> -<AUni ws="qvm-x-ame">luchuk</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="57f66bc6-593b-4ec7-8285-fbdba4da5111" ownerguid="ee8a20b7-4202-489a-b8cd-bdebaf770313"> -<ExampleWords> -<AUni ws="en">ferment, distill, mellow, age, ripen</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the steps in brewing?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="57f81c17-57cb-4d5e-afca-6197ecfdf443"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">apripo:su</AUni> -<AUni ws="qvm-x-acl">apripo:su; apripo:su; apripo:so</AUni> -<AUni ws="qvm-x-akh">apripo:su</AUni> -<AUni ws="qvm-x-akl">apripo:su; apripo:su; apripo:so</AUni> -<AUni ws="qvm-x-ame">apripo:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+a.propósito.1</AUni> -<AUni ws="qvm-x-acl">+a.propósito.1</AUni> -<AUni ws="qvm-x-akh">+a.propósito.1</AUni> -<AUni ws="qvm-x-akl">+a.propósito.1</AUni> -<AUni ws="qvm-x-ame">+a.propósito.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.928" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bca94c7b-4583-4180-b340-3c9d8116057a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+a.propósito.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="15416d6d-b78d-40d3-b0bc-ddc2405dae91" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d87fa806-0117-4f37-89a8-9e2411e7df60" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +a.propósito.1 
\entryTyp root 
\gENG purposely 
\gSPN a.propósito 
\e +a.propósito.1 
\c R0 
\mp +assimilated 
\ach apripo:su 
\akh apripo:su 
\acl apripo:su / _# 
\acl apripo:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl apripo:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl apripo:su / _# 
\akl apripo:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl apripo:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame apripo:su</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="57f84cd9-73d9-4f61-8c79-b09d59bef1a1" ownerguid="c05e4d92-5154-4cf9-846b-0af3dde4a279"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">key</AUni> -<AUni ws="es">llave</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="698fdfe5-8c0a-477c-a0bb-41481a5ee224" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="57fa74f8-4cbd-4586-a78f-2ed5dcc91fac" ownerguid="a9c5103b-3255-4597-bce1-1d4ddfeb3cd4"> -<Form> -<AUni ws="qvm-x-ach">juez</AUni> -<AUni ws="qvm-x-acl">juez</AUni> -<AUni ws="qvm-x-akh">juez</AUni> -<AUni ws="qvm-x-akl">juez</AUni> -<AUni ws="qvm-x-ame">juez</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="57fd036e-1744-4b5f-869f-0ebec2986da2" ownerguid="f56a80a9-a603-405e-abf0-1556b48f3268"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="57fd583d-878e-4e7c-85d8-956d9cd8df93" ownerguid="e835155c-8c66-43d8-b109-188a02dfa990"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="57fd5acd-f10b-4261-9a2a-e2307daf10a2" ownerguid="8411fa09-b1a5-4b62-aa47-f28bee9f6616"> -<ExampleWords> -<AUni ws="en">come in handy, come in useful, have its uses</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something being useful even though it doesn't seem to be?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="57fdd16c-87d1-4ad5-8b26-7b00a4fd6b1f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">upu</AUni> -<AUni ws="qvm-x-acl">upu; upo</AUni> -<AUni ws="qvm-x-akh">upu</AUni> -<AUni ws="qvm-x-akl">upu; upo</AUni> -<AUni ws="qvm-x-ame">upu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*upu</AUni> -<AUni ws="qvm-x-acl">*upu</AUni> -<AUni ws="qvm-x-akh">*upu</AUni> -<AUni ws="qvm-x-akl">*upu</AUni> -<AUni ws="qvm-x-ame">*upu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.251" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="55a84bff-7f7d-4410-be35-dc129dd11617" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*upu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="79498187-df3a-4313-ad1c-997e4c801e23" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ab746411-9fcb-4288-b7c6-951aa057e8d7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *upu 
\entryTyp root 
\gENG drink 
\gSPN tomar 
\e *upu 
\c V1 
\ach upu 
\akh upu 
\acl upu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl upo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl upu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl upo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame upu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5801e60e-e15a-4df2-b5f9-665c996557cd" ownerguid="db2232d9-8b17-4920-936f-2b6249c6f7fa"> -<ExampleWords> -<AUni ws="en">rob, mug, pickpocket, pick someone's pocket, snatch someone's purse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to stealing something from a person?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5803ea7e-4a09-4827-bf42-8e85aec4c3cb" ownerguid="9f446903-c472-48f9-83ad-00435e221373"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="58070153-4914-4d91-9b2a-23fbfcea951b" ownerguid="8f612b2f-84d4-4a0e-8332-1a47079740dc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">offend</AUni> -<AUni ws="es">ofender</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="60e66cbc-95b9-4ad2-9861-4e40a5585583" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="58080319-9e72-4758-adb7-fae281fcc091" ownerguid="fbf40f2e-e743-479d-80b2-63325407d5d1"> -<ExampleWords> -<AUni ws="en">what I mean is, that is to say, let me add, allow me to explain, it's like</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used to introduce an explanation?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="580abe7b-a896-45f1-a61f-fa27d7a71074" ownerguid="cef09dd1-3488-4a86-91a3-325e2419ebad"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PhCode" guid="5810fe81-67b7-4d3e-a17e-8e2a0485c138" ownerguid="e6951d31-60a0-43e9-bebb-7d2ed36c19eb"> -<Representation> -<AUni ws="qvm-x-ach">ö</AUni> -<AUni ws="qvm-x-acl">ö</AUni> -<AUni ws="qvm-x-akh">ö</AUni> -<AUni ws="qvm-x-akl">ö</AUni> -<AUni ws="qvm-x-ame">oo</AUni> -</Representation> -</rt> -<rt class="LexExampleSentence" guid="58121728-55af-4431-a83e-2f0383f8f46b" ownerguid="a5822a50-89fb-4d47-8305-959167df4a0d"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">MIC 7.19 Jutsa rurashgäcunatapis amana yarparayculaytsu.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="581472fd-a02d-4383-851e-601538cb64b0" ownerguid="0448140b-6044-4929-a748-9d84095ebb1b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="fabfa789-b5ae-4309-8d3d-a0e9e17d33ba" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5818445e-fd27-4f3a-865c-e9266daa2dd4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">negocia</AUni> -<AUni ws="qvm-x-acl">negocia</AUni> -<AUni ws="qvm-x-akh">negocia</AUni> -<AUni ws="qvm-x-akl">negocia</AUni> -<AUni ws="qvm-x-ame">negocia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+negociar</AUni> -<AUni ws="qvm-x-acl">+negociar</AUni> -<AUni ws="qvm-x-akh">+negociar</AUni> -<AUni ws="qvm-x-akl">+negociar</AUni> -<AUni ws="qvm-x-ame">+negociar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.547" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bccff8c0-787d-4665-9b4f-1be69d6bf148" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+negociar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1ac84c43-3d90-4e7a-8479-7201d28c920a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cfaa4b99-ed0a-4d70-9c5b-bddda14f3196" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +negociar 
\entryTyp root 
\gENG do.business 
\gSPN negociar 
\e +negociar 
\c V1 
\ach negocia 
\akh negocia 
\acl negocia 
\akl negocia 
\ame negocia</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="581f0bd9-485e-4fb8-9c41-fabc63f33d43"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ce:ba</AUni> -<AUni ws="qvm-x-acl">ce:ba</AUni> -<AUni ws="qvm-x-akh">ce:ba</AUni> -<AUni ws="qvm-x-akl">ce:ba</AUni> -<AUni ws="qvm-x-ame">ce:ba</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cebar</AUni> -<AUni ws="qvm-x-acl">+cebar</AUni> -<AUni ws="qvm-x-akh">+cebar</AUni> -<AUni ws="qvm-x-akl">+cebar</AUni> -<AUni ws="qvm-x-ame">+cebar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.920" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="829b9510-2f28-4695-a3a9-4da913fc8c4b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cebar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d5569f11-6620-4f09-9c10-9c53d0fe4719" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2671d8b4-e4f0-4661-969e-e97efaee82ab" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cebar 
\entryTyp root 
\gENG 
\gSPN 
\e +cebar 
\c V1 
\ach ce:ba 
\akh ce:ba 
\acl ce:ba 
\akl ce:ba 
\ame ce:ba 
\i 1KI 4.23 cëbashga chunca törucunata</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="5822927f-7845-4779-aabf-815aafcba01e" ownerguid="629d6a16-d316-4c86-bf5b-0ee4ff6bb6ed"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">MIC 2.10 ¡Gamcunata manami ricaytapis munätsu! ¡Caypita jucla wagranyay!</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="582498a9-f405-48b9-9fc9-264f9912a342" ownerguid="9e66a042-6748-4186-8a0d-66e194b4039c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="5827cdf4-103f-4a60-bef2-afd388e1f186" ownerguid="42587f2a-0511-4221-ac81-290368b8375a"> -<Form> -<AUni ws="qvm-x-ach">agula</AUni> -<AUni ws="qvm-x-acl">agula</AUni> -<AUni ws="qvm-x-akh">aqula</AUni> -<AUni ws="qvm-x-akl">aqula</AUni> -<AUni ws="qvm-x-ame">aqula</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="582c5a50-972f-431e-be12-c2a4efd47b54" ownerguid="d04923f6-42c4-40cd-b2b4-0b9f79447650"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Tsayshi jinan höra aywar yayan yana carnita apamurqan warminpa almentunpaq. (Juan Ösu)</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="582cdb53-fd31-4b92-b8f0-9436aa5ff5d0" ownerguid="d41c16d7-0ab0-49ce-bbea-b2440595bc8a"> -<Form> -<AUni ws="qvm-x-ach">pochgogya; pochgugyä</AUni> -<AUni ws="qvm-x-acl">pochgogya; pochgogyä</AUni> -<AUni ws="qvm-x-akh">pochqoqya; pochquqyä</AUni> -<AUni ws="qvm-x-akl">pochqoqya; pochqoqyä</AUni> -<AUni ws="qvm-x-ame">puchquqya; puchquqyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="582fe42e-9eb0-4deb-b681-ef835b7747f3" ownerguid="19192369-ae80-4963-87d4-e37090d27006"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="dc492961-8e9e-40d4-91a9-c3d1191c9399" t="o" /> -<objsur guid="527fb279-a6fe-414e-ac20-552aa202289f" t="o" /> -<objsur guid="24254a24-f827-4a75-b547-49573068d3f2" t="o" /> -<objsur guid="a8379a74-e9e7-474e-ad78-94013a604753" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="583247d7-e105-4555-a7b6-06041564dc4f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wap</AUni> -<AUni ws="qvm-x-acl">wap</AUni> -<AUni ws="qvm-x-akh">wap</AUni> -<AUni ws="qvm-x-akl">wap</AUni> -<AUni ws="qvm-x-ame">wap</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wap</AUni> -<AUni ws="qvm-x-acl">*wap</AUni> -<AUni ws="qvm-x-akh">*wap</AUni> -<AUni ws="qvm-x-akl">*wap</AUni> -<AUni ws="qvm-x-ame">*wap</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.485" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9b16a61c-0669-4d21-99ba-d660f1476500" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wap</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0c2aad7c-1b35-49bb-9f6d-07280b2b9953" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c2468713-f642-4f76-8800-619befc06dfa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wap 
\entryTyp root 
\gENG suddenly 
\gSPN derepentamente 
\e *wap 
\c NOSUFF 
\ach wap 
\akh wap 
\acl wap 
\akl wap 
\ame wap</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="5832eb32-8a90-42a7-b2bc-a9bb575b1b7c" ownerguid="fcd22c85-7ee1-4d31-8633-9dbd32344211"> -<Abbreviation> -<AUni ws="en">7.2.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to moving away from a place.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Move away</AUni> -</Name> -<Questions> -<objsur guid="7bdf0771-478a-4e5e-9cff-75be137c26fc" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="5834796b-fe01-4f9c-9faa-a0d600c85137" ownerguid="90a8e1fd-6413-401c-860c-80d0427374a2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="583552b7-f105-4ed3-b54e-9cc02ba3c812" ownerguid="13df6ee2-4189-4faa-b54d-768588d03978"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">I cut <myself>.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">self, myself, yourself, himself, herself, itself, ourselves, yourselves, themselves, oneself</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What pronouns express reflexive reference?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="583b5043-6559-4c89-bd89-17c73a988e2f" ownerguid="c72cf7f4-606c-4dd4-925c-089175dbcf77"> -<Form> -<AUni ws="qvm-x-ach">manya</AUni> -<AUni ws="qvm-x-acl">manya</AUni> -<AUni ws="qvm-x-akh">manya</AUni> -<AUni ws="qvm-x-akl">manya</AUni> -<AUni ws="qvm-x-ame">manya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="583c98ff-1cc8-4b05-9086-974d13a78894" ownerguid="e6c9fe4c-199e-4934-b622-739a85b0830d"> -<Abbreviation> -<AUni ws="en">7.5.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.549" /> -<DateModified val="2022-9-23 16:55:8.549" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to things becoming disorganized.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Disorganized</AUni> -</Name> -<Questions> -<objsur guid="a4b6ab5f-3da4-42e4-b3d7-045ceed5bfdd" t="o" /> -<objsur guid="17df5b3a-0fb4-424f-8c10-73173c9c357a" t="o" /> -<objsur guid="fed79311-6bc4-4fb8-af49-9899dc9205eb" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="583cdc50-423c-499d-93dd-85f690c2a3a8" ownerguid="169746f5-c4c1-4f35-a781-0e77ef3472b6"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 25.27 Tsay argöllacuna churarätsun chaquinpita rebëtinman tincuragcho.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="584143c1-6ec9-4397-866e-abc694813fc3" ownerguid="306707d2-e4e5-4b16-96b4-09fa5c1c1984"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">mucho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0e1d0c98-ffb6-494b-b094-ea9a7517ab95" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="584648d2-3486-4760-8b35-deb528e8b310" ownerguid="1f12f59b-d3b2-40cc-ac06-70229e3883d0"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">lëwa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">lëwa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">lëwa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">lëwa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">lëwa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6d413607-02b7-44b9-8986-65cb5a04447b" t="r" /> -</Morph> -<Msa> -<objsur guid="dc8ba09b-1dd8-46f9-8c88-df18840c8d52" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="58471c4f-4ab2-4ff3-90fd-4b5e378ad53c" ownerguid="4cc16a45-f4d9-42e2-9c96-ca2a16bcfa4e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5849ac09-f0f1-44b9-8450-532a8d70e449" ownerguid="e836b01b-6c1a-4d41-b90a-ea5f349f88d4"> -<ExampleWords> -<AUni ws="en">fresh air, airy, well ventilated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe good air (such as when the air in a room is clean or doesn't smell bad)?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="584cdea0-3843-41c8-af2b-bbea27969537" ownerguid="6798cbaf-df7f-4ce5-99c5-f279fbc3e234"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="71e5ce38-59eb-440d-9c57-cc2f69fd502c" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">blood</AUni> -<AUni ws="es">sangre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fd31447f-30e9-47a5-8b71-5e2e8479c824" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="584cdf3b-1a97-4730-bd53-5cf51cfb8c48" ownerguid="324cc026-a13b-40f4-936c-3e743c8d8b82"> -<Form> -<AUni ws="qvm-x-ach">mío</AUni> -<AUni ws="qvm-x-acl">mío</AUni> -<AUni ws="qvm-x-akh">mío</AUni> -<AUni ws="qvm-x-akl">mío</AUni> -<AUni ws="qvm-x-ame">mío</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="585041e1-7558-4245-87cd-a7472ea87934" ownerguid="b9a4ee1f-9ca3-4582-920a-c70d6682dca2"> -<Form> -<AUni ws="qvm-x-ach">jananpa; jananpä</AUni> -<AUni ws="qvm-x-acl">jananpa; jananpä</AUni> -<AUni ws="qvm-x-akh">jananpa; jananpä</AUni> -<AUni ws="qvm-x-akl">jananpa; jananpä</AUni> -<AUni ws="qvm-x-ame">hananpa; hananpä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="58542d55-f5fe-4b75-8c52-f8be8009e4c8" ownerguid="b602c0e1-5398-4cc9-850b-7cfb5c592d13"> -<ExampleWords> -<AUni ws="en">blind person, blind man, the blind</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a blind person?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="58583978-a4d6-4e42-9a14-2dc0a27e7b2c" ownerguid="cee40abd-eed9-4cc2-b343-9e15e488df40"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="1f20f638-b2ce-49ae-aaa6-6c30b3145a8b" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="b6a09064-d5d2-432d-8509-6ec40d64987f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="58590509-5f75-49b3-a134-6cd31c32dc39" ownerguid="04053f4c-0b2c-4d26-8e8c-2c816e350985"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="15caeab7-fb9d-4ac6-95bc-aae058f3a0fc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="585c77bb-b50f-46d0-a941-94508398c0ec" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<ExampleWords> -<AUni ws="en">heartbreak, heartache, discouragement, grief, downer, tragedy, bitter pill to swallow, woe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to something that causes someone to feel sad?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="585e1936-4755-401e-8bd8-352bf63ca413" ownerguid="3ef36790-ba95-4f35-b689-79eb7fe3edba"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">alma</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d5a088d8-5bbf-47e0-b9c0-b00e19038621" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="585e53f3-3019-49be-99cc-3b019d4fe295" ownerguid="679609f6-c2da-428a-bf49-3cc2b82122ab"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="5860d18c-a874-4cb2-a88c-87519bee46f6" ownerguid="91ef6c77-bb2f-479a-890e-5cd6aa8694df"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cho</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cho</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">cho</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">cho</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">chaw</Run> -</AStr> -</Form> -<Morph> -<objsur guid="cf240770-dbb1-4b58-a8d0-fe6647e0779d" t="r" /> -</Morph> -<Msa> -<objsur guid="d6e21f0e-f17e-413e-b186-416974e463f1" t="r" /> -</Msa> -<Sense> -<objsur guid="873fcd0a-0703-4e25-874d-dce7e2f7cdb7" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="58612712-8f51-48ce-9819-e766effbb009"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">activida; activida:</AUni> -<AUni ws="qvm-x-acl">activida; activida:</AUni> -<AUni ws="qvm-x-akh">activida; activida:</AUni> -<AUni ws="qvm-x-akl">activida; activida:</AUni> -<AUni ws="qvm-x-ame">activida; activida:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+actividad</AUni> -<AUni ws="qvm-x-acl">+actividad</AUni> -<AUni ws="qvm-x-akh">+actividad</AUni> -<AUni ws="qvm-x-akl">+actividad</AUni> -<AUni ws="qvm-x-ame">+actividad</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.629" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0fc9264f-b704-4ed4-8e5a-27ef67276372" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+actividad</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bcf74226-0f9e-4581-ba34-e4910849819a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f797b5f5-560d-4430-8824-7b519ca73ee9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +actividad 
\entryTyp root 
\gENG 
\gSPN 
\e +actividad 
\c N0 
\mp +FinalC 
\mp +underlong 
\ach activida foreshortened 
\ach activida: 
\mp +underlong 
\akh activida foreshortened 
\akh activida: 
\acl activida foreshortened 
\acl activida: 
\akl activida foreshortened 
\akl activida: 
\mp +underlong 
\ame activida foreshortened 
\ame activida: 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5866c663-06b9-4909-9567-4ae361229fea" ownerguid="11a8085d-c69a-45e5-b97f-c18157752f07"> -<Form> -<AUni ws="qvm-x-ach">cöchi; cöchi</AUni> -<AUni ws="qvm-x-acl">cöchi; cöchi; cöche</AUni> -<AUni ws="qvm-x-akh">cöchi; cöchi</AUni> -<AUni ws="qvm-x-akl">cöchi; cöchi; cöche</AUni> -<AUni ws="qvm-x-ame">cöchi; cöchi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="586cce6f-5cdb-4a14-b3bf-1b22680b0ea6" ownerguid="ba04ffb0-cafe-4177-a9e4-d13805974839"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">manure</AUni> -<AUni ws="es">abono.orgánico</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="53bef0b4-c16f-427f-9ae1-b3113d19eefe" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="586d33db-12c8-4e51-9fc9-6667f3593520" ownerguid="8383b4cb-e14a-4d04-a8c3-9c5276384953"> -<ExampleWords> -<AUni ws="en">ask, ask someone's permission</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to asking permission to do something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="586e1d65-af70-4517-a59f-0fab87b6fadf" ownerguid="ec79e90e-ecd3-497f-bc14-ac64181f53d7"> -<ExampleWords> -<AUni ws="en">harm yourself, cut your own throat, be your own worst enemy, shoot yourself in the foot, rebound on, come back to haunt you</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to doing evil to yourself?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="586f3b2a-ed77-408f-acaa-fd9851c42dfb" ownerguid="75acb013-4207-4977-a465-6f66d5f47ef8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">encourage</AUni> -<AUni ws="es">animar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="17d6e838-bc61-48c4-8dfe-171202d71a91" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="586ff3ab-1bb6-4d14-8340-7fed4aa347e4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">do:ci; do:ci</AUni> -<AUni ws="qvm-x-acl">do:ci; do:ci; do:ce</AUni> -<AUni ws="qvm-x-akh">do:ci; do:ci</AUni> -<AUni ws="qvm-x-akl">do:ci; do:ci; do:ce</AUni> -<AUni ws="qvm-x-ame">do:ci; do:ci</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+doce</AUni> -<AUni ws="qvm-x-acl">+doce</AUni> -<AUni ws="qvm-x-akh">+doce</AUni> -<AUni ws="qvm-x-akl">+doce</AUni> -<AUni ws="qvm-x-ame">+doce</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.435" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2c988c2b-3119-4df3-bcf7-3e928237d9d7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+doce</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="94c01314-2acc-45d2-9360-05f56f502bd0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9fc30071-3afd-4890-af69-5ca20887a47f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +doce 
\entryTyp root 
\gENG twelve 
\gSPN doce 
\e +doce 
\c N0 
\mp +FinalI 
\ach do:ci / _# 
\ach do:ci / ~_# 
\akh do:ci / _# 
\akh do:ci / ~_# 
\acl do:ci / _# 
\acl do:ci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl do:ce +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl do:ci / _# 
\akl do:ci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl do:ce +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame do:ci / _# 
\ame do:ci / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="58709edc-15dc-4599-9abc-4f3d4c8444f7" ownerguid="ebe651d9-2313-486c-8252-140e2a613ffa"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5870aa5b-30ce-43ed-a01c-88e1c77958c2" ownerguid="1c3f8996-362e-4ee0-af02-0dd02887f6aa"> -<ExampleWords> -<AUni ws="en">Hades, Sheol, the place of the dead, the grave, the other side, the beyond, underworld, nether world</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What is the place called where dead people are?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5875fc62-82e0-4e7f-b7f6-da8ca74b12e3" ownerguid="84a8d541-9571-4ce9-abea-bd9cccb8dbf0"> -<ExampleWords> -<AUni ws="en">basement, ground floor, first floor, second floor, upstairs, downstairs</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to particular levels in a building?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="58777f5b-c8e6-4235-9038-fa4b0dda2ed0" ownerguid="c17db558-f852-4c06-8e6b-2daab5b04eb8"> -<Form> -<AUni ws="qvm-x-ach">criyi</AUni> -<AUni ws="qvm-x-acl">criyi; criye</AUni> -<AUni ws="qvm-x-akh">criyi</AUni> -<AUni ws="qvm-x-akl">criyi; criye</AUni> -<AUni ws="qvm-x-ame">criyi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="587c26e4-1a1f-4e00-9472-83d91163980b" ownerguid="445caa42-9ffd-48b3-831b-70e68fe81718"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="587fffab-517b-4d46-ba2a-c4b2252cb6e3" ownerguid="b82c7ba0-9f4e-44da-bcd0-d30f5b224de5"> -<ExampleWords> -<AUni ws="en">medicine bottle, needle, syringe, IV</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to the equipment used to store and administer medicine?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="58812056-10ca-4d79-8bbf-21ecb8e4ab87"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nagtsa</AUni> -<AUni ws="qvm-x-acl">nagtsa</AUni> -<AUni ws="qvm-x-akh">naqtsa</AUni> -<AUni ws="qvm-x-akl">naqtsa</AUni> -<AUni ws="qvm-x-ame">naqtsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñaqcha.v</AUni> -<AUni ws="qvm-x-acl">*ñaqcha.v</AUni> -<AUni ws="qvm-x-akh">*ñaqcha.v</AUni> -<AUni ws="qvm-x-akl">*ñaqcha.v</AUni> -<AUni ws="qvm-x-ame">*ñaqcha.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.588" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="447d1ede-0b3d-40c2-9447-0416664d8c9d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñaqcha.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b4083d2d-6246-4def-a938-632e34c8f461" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="48b98563-9aa8-4429-b558-e3ea53cce7d5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñaqcha.v 
\entryTyp root 
\gENG comb 
\gSPN peinar 
\e *ñaqcha.v 
\c V1 
\ach nagtsa 
\akh naqtsa 
\acl nagtsa 
\akl naqtsa 
\ame naqtsa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="588150b7-1543-4c07-8517-75e20441aecb" ownerguid="0079d262-e528-4a83-8208-007fa31976f7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">temple</AUni> -<AUni ws="es">templo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6b1c895a-9ee0-4036-a4aa-01e69ea034c8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="588831b0-24b0-40b2-8b94-d263ab3634b1" ownerguid="54f59b23-a2e8-4bfc-9da2-7dd7c37d2a47"> -<ExampleWords> -<AUni ws="en">had... -en</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) A form that signals a situation that is prior to and relevant to a past reference time will be coded with two meaning labels, past and anterior.</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5889c52b-464e-4af0-84da-1e34ee81f4cf" ownerguid="3d707fe4-c5ec-49df-9d5e-b3aeee36384f"> -<Form> -<AUni ws="qvm-x-ach">cumpa; cumpä</AUni> -<AUni ws="qvm-x-acl">cumpa; cumpä</AUni> -<AUni ws="qvm-x-akh">cumpa; cumpä</AUni> -<AUni ws="qvm-x-akl">cumpa; cumpä</AUni> -<AUni ws="qvm-x-ame">cumpa; cumpä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="588aa376-c63c-4ade-8da0-309ff4a15ee5" ownerguid="1886ffc9-0a18-41ea-b2f6-c17c297f1681"> -<ExampleWords> -<AUni ws="en">biology, ecology</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the study of living things?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="588cc44b-cab5-41ea-acdb-26c84f18dbc5" ownerguid="90c06635-a12c-4cd4-a190-46925ff0f43e"> -<ExampleWords> -<AUni ws="en">examine, inspect</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to examining someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="588ee690-2e1f-4be4-83b1-4e311df9ced4" ownerguid="9a8f2f6a-a039-45dd-80d3-d1e0911907b2"> -<ExampleWords> -<AUni ws="en">pay taxes</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to paying tax?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5893a322-a568-4ca2-8eb1-cc12565b7507" ownerguid="043943c3-16e2-460b-a7c7-eca3b3ebfb70"> -<Form> -<AUni ws="qvm-x-ach">caupu</AUni> -<AUni ws="qvm-x-acl">caupu; caupu; caupo</AUni> -<AUni ws="qvm-x-akh">kawpu</AUni> -<AUni ws="qvm-x-akl">kawpu; kawpu; kawpo</AUni> -<AUni ws="qvm-x-ame">kawpu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5894434d-9a08-4340-8b95-671b1bd34f4d" ownerguid="398ffed0-bfa7-452c-8521-7d37b3082dcf"> -<ExampleWords> -<AUni ws="en">industrious, hard working, busy, devoted, devotion, diligent, diligence</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who works hard?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="589637d9-9624-43e7-a706-02e8effee7f8" ownerguid="30c95fc4-e60c-4da2-8c39-943116563a62"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="e2ff4713-8e38-4e1d-add3-8c942382c27a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="58985b11-00da-4477-aaa4-14436356f2f3" ownerguid="e36a2ebf-7195-431a-8f9f-1f7943754de6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">insist</AUni> -<AUni ws="es">exegir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a7386bf2-380c-4e8c-b049-d454231f8e3c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="589c103d-7c67-4722-97a8-8c9d46ff8073" ownerguid="530ff7e0-e3cb-4dc3-9c1c-3034969e1ce8"> -<ExampleWords> -<AUni ws="en">vengeful, vindictive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe someone who wants to get revenge?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="589c760d-b110-4325-934e-2560d627ebba"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lumtsuy</AUni> -<AUni ws="qvm-x-acl">lumtsuy</AUni> -<AUni ws="qvm-x-akh">lumtsuy</AUni> -<AUni ws="qvm-x-akl">lumtsuy</AUni> -<AUni ws="qvm-x-ame">lumtsuy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llumchuy</AUni> -<AUni ws="qvm-x-acl">*llumchuy</AUni> -<AUni ws="qvm-x-akh">*llumchuy</AUni> -<AUni ws="qvm-x-akl">*llumchuy</AUni> -<AUni ws="qvm-x-ame">*llumchuy</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.225" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="016f3085-2d5e-47f3-946f-5066308fcadd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llumchuy</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c41c60cc-83bf-48bb-8ded-b37916944eab" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="27679469-3d91-45c2-869f-6d168739db1c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llumchuy 
\entryTyp root 
\gENG female.in.law 
\gSPN nuera 
\e *llumchuy 
\c N0 
\mp +FinalC 
\ach lumtsuy 
\akh lumtsuy 
\acl lumtsuy 
\akl lumtsuy 
\ame lumtsuy</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="589e7311-045c-4973-8e51-9be444956e97" ownerguid="70fbd0f8-48ee-4448-8068-542919d850ea" /> -<rt class="MoStemMsa" guid="58a33120-d221-43d4-af32-933f2259ce08" ownerguid="1e46d9b9-1d64-4f27-be0c-04a3a2a5b29c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="58a387c9-eddd-4ee4-a54e-1da4b6de46e1" ownerguid="516d3a6d-7ac0-47d4-a64b-f2261cddb44c"> -<Form> -<AUni ws="qvm-x-ach">espija</AUni> -<AUni ws="qvm-x-acl">espija</AUni> -<AUni ws="qvm-x-akh">espija</AUni> -<AUni ws="qvm-x-akl">espija</AUni> -<AUni ws="qvm-x-ame">espija</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="58a8c86d-1be6-435f-9dad-a3f26a0e2bfd" ownerguid="2f196632-8bc5-4e81-b006-65e570981414"> -<Form> -<AUni ws="qvm-x-ach">wari</AUni> -<AUni ws="qvm-x-acl">wari; ware</AUni> -<AUni ws="qvm-x-akh">wari</AUni> -<AUni ws="qvm-x-akl">wari; ware</AUni> -<AUni ws="qvm-x-ame">wari</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="58a98f7e-990d-40af-a8cd-42aca051c7e6" ownerguid="1ec85151-eba0-48f4-b56d-4f8040602a4b"> -<ExampleWords> -<AUni ws="en">testator</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to someone who makes a will?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="58aa9070-9dac-47b9-861a-5e3d3086047c" ownerguid="28ec5f29-2535-4cf7-959b-1578521614bd"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuya</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuya</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuya</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuya</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuya</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ed8e0c9a-5a44-4448-bc6b-1b766f141f5c" t="r" /> -</Morph> -<Msa> -<objsur guid="6ee88865-51d6-40db-b9fa-4ba30a1cf4e7" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="58b17d92-f7a8-430f-977a-38b17ff8147f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">campana</AUni> -<AUni ws="qvm-x-acl">campana</AUni> -<AUni ws="qvm-x-akh">campana</AUni> -<AUni ws="qvm-x-akl">campana</AUni> -<AUni ws="qvm-x-ame">campana</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+campana</AUni> -<AUni ws="qvm-x-acl">+campana</AUni> -<AUni ws="qvm-x-akh">+campana</AUni> -<AUni ws="qvm-x-akl">+campana</AUni> -<AUni ws="qvm-x-ame">+campana</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.31" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fd621448-feb6-419a-9a5c-b05d6e647c08" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+campana</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="178f07bb-dd8d-4baf-9892-2dc7b80bd688" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b6eb6370-5849-454e-8b70-7bcea2ccc52e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +campana 
\entryTyp root 
\gENG bell 
\gSPN campana 
\e +campana 
\c N0 
\ach campana 
\akh campana 
\acl campana 
\akl campana 
\ame campana</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="58b252e9-3104-4305-81bf-963eefc43a6d" ownerguid="2330813b-7413-41a8-8eb2-ae138511c953"> -<ExampleWords> -<AUni ws="en">bright, strong, good, harsh</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a light that is bright?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="58b9979a-492c-4b7c-8d13-cf9bc5005483" ownerguid="52bff85b-cf9a-477e-90d4-b5777500bd79"> -<Form> -<AUni ws="qvm-x-ach">yunqui</AUni> -<AUni ws="qvm-x-acl">yunqui; yunqui; yunque</AUni> -<AUni ws="qvm-x-akh">yunki</AUni> -<AUni ws="qvm-x-akl">yunki; yunki; yunke</AUni> -<AUni ws="qvm-x-ame">yunki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="58b9e919-cd51-43c2-bda3-2270aab89a04" ownerguid="ca9c215a-e568-4d09-b3a9-b5727cd831d6"> -<ExampleWords> -<AUni ws="en">morgue, mortuary, crematorium</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) Where are bodies prepared for burial?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="58bbc725-064a-4cc7-a2d8-d9c6d2473230" ownerguid="c707c852-a857-4c40-9ad1-1e396327483a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="58be5421-287e-48eb-8913-6188b6c39322" ownerguid="708152e0-9019-460e-88a8-8227505806e8"> -<Form> -<AUni ws="qvm-x-ach">frënu</AUni> -<AUni ws="qvm-x-acl">frënu; frënu; frëno</AUni> -<AUni ws="qvm-x-akh">frënu</AUni> -<AUni ws="qvm-x-akl">frënu; frënu; frëno</AUni> -<AUni ws="qvm-x-ame">frënu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="58be5db0-c648-4522-bad0-02cd9cc15f37" ownerguid="22acd714-b11e-462a-bd8e-6ff50843c103"> -<Abbreviation> -<AUni ws="en">6.5.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.458" /> -<DateModified val="2022-9-23 16:55:8.458" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the foundation of a building.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Foundation</AUni> -</Name> -<Questions> -<objsur guid="7b09e390-1d3a-4c9a-8639-c5a4a03f592b" t="o" /> -<objsur guid="679dc86e-df63-4124-83c3-df33b301f5ce" t="o" /> -<objsur guid="416d9a40-7e38-4bd0-9df0-e0dc528ea234" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="58c3a2bd-ed2a-4cee-bb2c-24b0b319fbfa" ownerguid="9b02529b-7ad9-4f75-a119-a46b3c96dde4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wail</AUni> -<AUni ws="es">lamentar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5cb1a8ca-f7ce-4eb4-9b6e-e2837e907aca" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="58c3a412-128b-4a95-9fe5-8433c4df2a8c" ownerguid="9bb0b5cd-a299-49ec-b100-0d5dcbd6beb5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="7da79667-9b71-4cff-85bd-975906f910a7" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">dull</AUni> -<AUni ws="es">desafilado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5f01f060-dcce-4c79-9d0d-8121fb59f437" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="58c4159a-bee5-485e-9d77-184f3e552d21" ownerguid="965c6a0b-3034-4e2f-a00b-ed2eb3119a5d"> -<Question> -<AUni ws="en">(2) optative: the proposition represents the speaker's will. Translated into English as 'May you prosper', 'May we all meet again.' with counterfactual: 'If only he had...', etc.</AUni> -</Question> -</rt> -<rt class="LexSense" guid="58c8d5cc-d3fb-4d35-a135-b2330d95961d" ownerguid="406c0bf1-74ba-4db3-9654-427c72a2db68"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">responsable</AUni> -<AUni ws="es">responsable</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ee3a3fc0-ccc5-4431-9b63-04a84df8511e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="58cfa897-29a1-4642-8a40-2b527ff09dff" ownerguid="92ef1096-bae2-4bc5-b4b8-c16f429c4867"> -<ExampleWords> -<AUni ws="en">member, membership, insider, one of us</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to someone who belongs to a group?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="58d25a32-c0c8-46b2-8c42-4d810289b3f6" ownerguid="09ac3709-0b0e-4046-b6b2-7869d574aa0d"> -<ExampleWords> -<AUni ws="en">Africa, Antarctica, Asia, Australia, Europe, North America, South America</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the names of the continents?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="58d28add-6dc5-4a19-98b5-c0a19be6d157" ownerguid="738a09a5-59df-40f9-8a4e-176e00d03bbf"> -<ExampleWords> -<AUni ws="en">defensive, offensive, protective, deadly, weapon of mass destruction, conventional</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(20) What words describe weapons?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="58d48b6c-ab24-4e15-993b-71f65ecf8042" ownerguid="e196bb08-55f4-47dd-ae9e-75da0efaee04"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="9ce94725-4ae2-4e86-84bc-620acdacb4bd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="58d5e19b-fb9e-4708-9e5e-f7fa22ef4bdd"> -<Analyses> -<objsur guid="5b9e7504-0b50-4041-b4f2-c46c0f9fd854" t="o" /> -</Analyses> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">jorqamänanpaq</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="58d7f0a7-260a-4928-a20b-d23cba55ddce" ownerguid="1e57be76-81b2-4f82-ad26-e1a853a85acc"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="58de3766-8729-48e2-97fe-937a441eb722" ownerguid="d345142f-d51e-4023-a25a-2a4c0f1fbcbf"> -<Abbreviation> -<AUni ws="en">6.2.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.397" /> -<DateModified val="2022-9-23 16:55:8.397" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to fertilizing a field.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Fertilize a field</AUni> -</Name> -<Questions> -<objsur guid="d4cb53f1-59f3-46e7-bfc4-fef5b83a9aa2" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="58e291e4-6151-436e-a958-760ef2d5fafd" ownerguid="bb69d649-c392-464d-bb32-8cfae9e6df31"> -<Form> -<AUni ws="qvm-x-ach">may</AUni> -<AUni ws="qvm-x-acl">may</AUni> -<AUni ws="qvm-x-akh">may</AUni> -<AUni ws="qvm-x-akl">may</AUni> -<AUni ws="qvm-x-ame">may</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="58e378f4-7599-4cec-81c0-44aa7e3c36d1" ownerguid="284433df-7b37-4e63-a614-78520c483213"> -<ExampleWords> -<AUni ws="en">breach</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) How do whales move?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="58e4c896-3599-4409-965f-4205ff02838e" ownerguid="f4e9efa2-2437-49d3-9c01-cf7c7629196d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.light</AUni> -<AUni ws="es">liviano</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8b24970c-3cfb-45ee-a426-ad5e19cb180e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="58e5cab8-a2a8-4019-bfbb-f1e9061c0ba0" ownerguid="b5499348-b8ca-4fae-8486-b23863560ae5"> -<ExampleWords> -<AUni ws="en">superstition, superstitious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to believing that things cause good or bad luck?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="58e7b991-e92e-4cc0-9981-eae4d9b8dbc0" ownerguid="a4b8ae11-05a7-45d8-9527-2191d0f7b4c8"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">MAT 20.5 Pulan junaqpis y malway hörapis yapayshi minkay asheq aywarqan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="58ea03c7-8211-4bcb-a395-2960383e591c" ownerguid="0272e84c-9487-40ea-ba92-47ccd2dfc9a6"> -<Form> -<AUni ws="qvm-x-ach">brea</AUni> -<AUni ws="qvm-x-acl">brea</AUni> -<AUni ws="qvm-x-akh">brea</AUni> -<AUni ws="qvm-x-akl">brea</AUni> -<AUni ws="qvm-x-ame">brea</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="58ea2c9c-9f7e-40a1-a60a-5588872eadc1" ownerguid="0ff6458d-3bc8-4c59-bc24-edba90fa582d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="58ecf885-b987-45a4-aa3b-37725bf381a0" ownerguid="c388c171-01b2-4a74-9854-5713e021a75a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1 V2/V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">OUT</AUni> -<AUni ws="es">AFUERA</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e7902b1b-e25f-4772-8266-6c795146619f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="58ee1ba4-f796-484e-a665-82610d301220" ownerguid="5cb8967d-5c07-4fc5-8e4c-778dec9cc384"> -<Form> -<AUni ws="qvm-x-ach">dos</AUni> -<AUni ws="qvm-x-acl">dos</AUni> -<AUni ws="qvm-x-akh">dos</AUni> -<AUni ws="qvm-x-akl">dos</AUni> -<AUni ws="qvm-x-ame">dos</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="58ee8123-5de6-4c91-a3b4-bf0f9f779bd9" ownerguid="fd9701f5-f358-44a8-964a-9c36a51e5603"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">soldier</AUni> -<AUni ws="es">soldado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="be90d603-9081-4638-9470-4a61b1b75568" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="58eeb55b-c57d-4f59-a7d6-9bf663fbf831" ownerguid="31ccb9e3-d434-4430-ac84-486cc5a1c53d"> -<Abbreviation> -<AUni ws="en">6.1.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.367" /> -<DateModified val="2022-9-23 16:55:8.367" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to succeeding in doing something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>68C Complete, Finish, Succeed</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Succeed</AUni> -</Name> -<Questions> -<objsur guid="1cf58085-9ff2-4425-8424-135c9ea4c305" t="o" /> -<objsur guid="7234a59a-7781-4421-98d4-1a01ca72194c" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="80f26fbc-ca89-4789-996d-4c09547f2504" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="58f0daef-6491-42b5-9dd2-db887424527d" ownerguid="8a42e0ec-bec9-46ac-8d43-673803694f6c"> -<Gloss> -<AUni ws="en">Joseph</AUni> -<AUni ws="es">José</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="afc4e56f-141a-4135-8c3e-b01f980d7aac" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="58f20966-efab-4ec9-8934-8c6218a8d123" ownerguid="7d8f3442-8298-4a59-b5b0-4a6616bc70d4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.corral</AUni> -<AUni ws="es">cercar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="41b94f3b-bdef-438d-ab3f-21e69f2fa86b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="58f26019-27ad-44ab-a3bd-82eb8e5fce32"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">munda</AUni> -<AUni ws="qvm-x-acl">munda</AUni> -<AUni ws="qvm-x-akh">munda</AUni> -<AUni ws="qvm-x-akl">munda</AUni> -<AUni ws="qvm-x-ame">munda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mondar</AUni> -<AUni ws="qvm-x-acl">+mondar</AUni> -<AUni ws="qvm-x-akh">+mondar</AUni> -<AUni ws="qvm-x-akl">+mondar</AUni> -<AUni ws="qvm-x-ame">+mondar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.467" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8104bec8-403d-4783-9373-2228b57a2687" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mondar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6aab7496-9a3b-48df-913c-175a10f03a79" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2f66241c-4724-4c50-8860-915d2f076d09" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mondar 
\entryTyp root 
\gENG peel 
\gSPN mondar 
\e +mondar 
\c V2 
\ach munda 
\akh munda 
\acl munda 
\akl munda 
\ame munda</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="58f35c1c-f406-4154-b51b-02d8ec6608e0" ownerguid="0a3585ec-0b89-4307-bf04-aa0a7038b6b3"> -<Form> -<AUni ws="qvm-x-ach">ratash</AUni> -<AUni ws="qvm-x-acl">ratash</AUni> -<AUni ws="qvm-x-akh">ratash</AUni> -<AUni ws="qvm-x-akl">ratash</AUni> -<AUni ws="qvm-x-ame">ratash</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="58f437f0-3746-496e-8ef0-078c782839b9" ownerguid="b477381b-1e52-48fd-b3e6-dedbb3c1245d"> -<Form> -<AUni ws="qvm-x-ach">pagtsa</AUni> -<AUni ws="qvm-x-acl">pagtsa</AUni> -<AUni ws="qvm-x-akh">paqtsa</AUni> -<AUni ws="qvm-x-akl">paqtsa</AUni> -<AUni ws="qvm-x-ame">paqtsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="58f665cf-cb76-4ccf-9e52-8a28867727bc" ownerguid="c805af85-77a9-46a9-ba60-f33fa7196812"> -<Form> -<AUni ws="qvm-x-ach">wasca</AUni> -<AUni ws="qvm-x-acl">wasca</AUni> -<AUni ws="qvm-x-akh">waska</AUni> -<AUni ws="qvm-x-akl">waska</AUni> -<AUni ws="qvm-x-ame">waska</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="58f9004c-69b5-444d-a932-842c08d6907d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">asirta</AUni> -<AUni ws="qvm-x-acl">asirta</AUni> -<AUni ws="qvm-x-akh">asirta</AUni> -<AUni ws="qvm-x-akl">asirta</AUni> -<AUni ws="qvm-x-ame">asirta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+asertar</AUni> -<AUni ws="qvm-x-acl">+asertar</AUni> -<AUni ws="qvm-x-akh">+asertar</AUni> -<AUni ws="qvm-x-akl">+asertar</AUni> -<AUni ws="qvm-x-ame">+asertar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.840" /> -<DateModified val="2022-10-10 21:19:47.695" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="87fba5b9-fc43-4f29-a61b-a764408b277f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+asertar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="19eb6f21-eb62-4dbe-bfbb-3322ebf82b98" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ad4f7395-9a11-4cdb-9811-eb0aab310e89" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +asertar 
\entryTyp root 
\gENG aim 
\gSPN 
\e +asertar 
\c V1 
\ach asirta 
\akh asirta 
\acl asirta 
\akl asirta 
\ame asirta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="58fbc39c-970e-4e0f-9208-e14683e69ca3" ownerguid="50db27b5-89eb-4ffb-af82-566f51c8ec0b"> -<ExampleWords> -<AUni ws="en">resurrect, resurrection, resuscitate, revive, rise again, rise from the dead, regenerate, bring back to life</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to bringing a dead person back to life?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="58fc7238-56a6-43d7-a58b-0cffd1e7c4d6" ownerguid="bafcff46-fb61-4d1e-b08f-1ea0177d7902"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pis</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pis</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pis</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pis</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pis</Run> -</AStr> -</Form> -<Morph> -<objsur guid="18466f68-8c21-4054-acf2-869c4074b430" t="r" /> -</Morph> -<Msa> -<objsur guid="12ccc54c-91e7-41aa-abf7-76699e3503e4" t="r" /> -</Msa> -<Sense> -<objsur guid="f109a3dc-7ba8-4575-8afa-20ef7d8c2a73" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="58fd599f-1d98-487c-9f69-bacd08637d45" ownerguid="5fac2c48-919a-4523-9c99-5352908f50d9"> -<Form> -<AUni ws="qvm-x-ach">gueru</AUni> -<AUni ws="qvm-x-acl">gueru; gueru; guero</AUni> -<AUni ws="qvm-x-akh">qeru</AUni> -<AUni ws="qvm-x-akl">qeru; qeru; qero</AUni> -<AUni ws="qvm-x-ame">qiru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="59001859-1748-4387-9e36-b60f8e474bc2" ownerguid="246299ea-c8d9-4523-a9fb-f2f670654862"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="590056fe-7a5d-4cb7-87cf-2cdde8e576c6" ownerguid="4991fecb-53b3-4a06-a9b3-2046645cfdc8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="bb5eb24b-0aee-4a12-b7f8-0130efbad3ae" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="e98d97a3-f65f-40a4-ab72-ecd5eaaaf834" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5901caae-f6c4-4d6d-8ce4-d5ba35a3fd96"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">luju</AUni> -<AUni ws="qvm-x-acl">luju; lujo</AUni> -<AUni ws="qvm-x-akh">luju</AUni> -<AUni ws="qvm-x-akl">luju; lujo</AUni> -<AUni ws="qvm-x-ame">luhu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lluju</AUni> -<AUni ws="qvm-x-acl">*lluju</AUni> -<AUni ws="qvm-x-akh">*lluju</AUni> -<AUni ws="qvm-x-akl">*lluju</AUni> -<AUni ws="qvm-x-ame">*lluju</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.215" /> -<DateModified val="2022-10-10 21:18:47.217" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fdbad8e4-6ab1-4de3-8d61-fac72c471666" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lluju</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6ea47161-0ab6-41be-b096-9dcf3b44aec5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d218f297-a4ad-4326-9f06-0fe102780a4b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lluju 
\entryTyp root 
\gENG 
\gSPN 
\e *lluju 
\c V1 
\ach luju 
\akh luju 
\acl luju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lujo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl luju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lujo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame luhu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5903113c-7b6f-4e0b-b673-5a12bb3ac301" ownerguid="1613d33c-0798-49b5-9430-bf2964943504"> -<Form> -<AUni ws="qvm-x-ach">rica; ricä</AUni> -<AUni ws="qvm-x-acl">rica; ricä</AUni> -<AUni ws="qvm-x-akh">rika; rikä</AUni> -<AUni ws="qvm-x-akl">rika; rikä</AUni> -<AUni ws="qvm-x-ame">rika; rikä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="59033128-a8ca-4004-93ad-51fc8001b6d6" ownerguid="c5446904-b898-49e7-afc9-90bcbf4ad155"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="06f8ae29-ff0e-479c-ad76-6c91d96b706d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="590570c5-3267-4966-b0db-2af7a5105c83" ownerguid="3f37bb6f-cd32-4430-aa35-700acabbee15"> -<Abbreviation> -<AUni ws="en">8.4.6.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that indicate that something will continue to happen until a particular time or until something else happens, and then it will stop.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Until</AUni> -</Name> -<Questions> -<objsur guid="5d2bf542-b9e8-4a08-afb9-0e0267628bda" t="o" /> -<objsur guid="3d60286b-4da2-4ea8-930c-c06c44140e17" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="5909b4a6-8ff0-4757-b7a4-28e1c643883c" ownerguid="b1e3461b-4ea1-4329-9015-56044a1882f1"> -<Form> -<AUni ws="qvm-x-ach">ali</AUni> -<AUni ws="qvm-x-acl">ali; ali; ale</AUni> -<AUni ws="qvm-x-akh">ali</AUni> -<AUni ws="qvm-x-akl">ali; ali; ale</AUni> -<AUni ws="qvm-x-ame">ali</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="590aabbc-fe32-4a59-a39e-7f44825f9687"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wa:ta</AUni> -<AUni ws="qvm-x-acl">wa:ta</AUni> -<AUni ws="qvm-x-akh">wa:ta</AUni> -<AUni ws="qvm-x-akl">wa:ta</AUni> -<AUni ws="qvm-x-ame">wa:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wa:ta.v</AUni> -<AUni ws="qvm-x-acl">*wa:ta.v</AUni> -<AUni ws="qvm-x-akh">*wa:ta.v</AUni> -<AUni ws="qvm-x-akl">*wa:ta.v</AUni> -<AUni ws="qvm-x-ame">*wa:ta.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.566" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fee5392f-53d2-446b-8107-95acdf6cb4f2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wa:ta.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="76bad901-686a-4235-a0d4-9018f3711cf6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a5eca8ca-c6e2-458f-b0e3-3719efa8d9db" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wa:ta.v 
\entryTyp root 
\gENG raise 
\gSPN criar 
\e *wa:ta.v 
\c V2 
\ach wa:ta 
\akh wa:ta 
\acl wa:ta 
\akl wa:ta 
\ame wa:ta 
\mcc *wa:ta.v / ~_ [ref] NMN [case]</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="590f3f7b-c974-4493-9a29-2738f86b7ea2" ownerguid="60e63d4a-702e-4238-a42b-d97f6be09c29"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The rain <hindered> John <from> finishing his work.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">hinder, hinder someone from, oppose, opposition, stand in opposition to, be antagonistic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to opposing someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="590f64e6-db34-4625-84e9-974ef403b56b" ownerguid="2daede19-ce5f-46b6-ae68-32d6092441f1"> -<ExampleWords> -<AUni ws="en">energetic, vigorous, tireless, lively, animated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe energetic activity or behavior?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5911e0a4-c160-46c8-9a65-9394fa9c929f" ownerguid="1c6c2696-4676-4fa8-9cbe-3ccde7d376dc"> -<Form> -<AUni ws="qvm-x-ach">janaga</AUni> -<AUni ws="qvm-x-acl">janaga</AUni> -<AUni ws="qvm-x-akh">janaqa</AUni> -<AUni ws="qvm-x-akl">janaqa</AUni> -<AUni ws="qvm-x-ame">hanaqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="59128eab-d6e1-4726-9531-ec0eb4ba2b14" ownerguid="cfbbb86a-b988-46d3-aff9-4a13557ebe01"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sling</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="221804de-7738-4075-bf74-fe378a981b4e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="591d7c1b-ce74-4b28-80e0-100c3938d010" ownerguid="20191d4a-6662-463b-ab09-59194aa0dc11"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="591fd489-36e6-4ffd-a976-58876d851829" ownerguid="7fe69c4c-2603-4949-afca-f39c010ad24e"> -<Abbreviation> -<AUni ws="en">2.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to mucus in the nose.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Mucus</AUni> -</Name> -<Questions> -<objsur guid="24abd3dd-5184-4077-94c7-1afb4f8d5f2c" t="o" /> -<objsur guid="f0407899-daf1-4c11-bdd4-db5dcc756946" t="o" /> -<objsur guid="4bc98d9c-6756-43bf-a9bc-2e98e22283bb" t="o" /> -<objsur guid="0afd8dfd-0201-445a-a6da-1b35de99b5f3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="5924984b-5bd7-4177-a614-9d230c242737" ownerguid="742996cd-b87f-40a8-bdb3-dba74219bd73"> -<ExampleWords> -<AUni ws="en">warm up, get hot, thaw, melt, temperature is rising</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to something becoming hot?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5925a09a-3724-4718-85f9-d7f2c6c2e1bd" ownerguid="ef00129c-2860-41ad-bcc6-d36a2adffae5"> -<Form> -<AUni ws="qvm-x-ach">cula</AUni> -<AUni ws="qvm-x-acl">cula</AUni> -<AUni ws="qvm-x-akh">kula</AUni> -<AUni ws="qvm-x-akl">kula</AUni> -<AUni ws="qvm-x-ame">kula</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="59274b11-d972-4e82-a0a5-4293b49383c4" ownerguid="cc70d4ce-4cf4-4556-991a-e1b57a7279f4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5928d8b0-e327-49a5-9098-7ae1c853f173" ownerguid="f718fc15-59b2-4b6a-a9e3-39b3e8d487d7"> -<ExampleWords> -<AUni ws="en">flourish, thrive, shoot up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to growing quickly or well?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5929d805-deb3-4fc7-9201-12ad124eb4b8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jayta</AUni> -<AUni ws="qvm-x-acl">jayta</AUni> -<AUni ws="qvm-x-akh">jayta</AUni> -<AUni ws="qvm-x-akl">jayta</AUni> -<AUni ws="qvm-x-ame">hayta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hayta.r</AUni> -<AUni ws="qvm-x-acl">*hayta.r</AUni> -<AUni ws="qvm-x-akh">*hayta.r</AUni> -<AUni ws="qvm-x-akl">*hayta.r</AUni> -<AUni ws="qvm-x-ame">*hayta.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.700" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a1d0042f-6580-44dd-ac7b-95608719be9a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hayta.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9297816e-fb59-451b-8c90-747cfcd77ec4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1067031c-68db-4aa4-9bdb-b1e98e9879d2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hayta.r 
\entryTyp root 
\gENG kick 
\gSPN patear 
\e *hayta.r 
\c R0 
\ach jayta 
\akh jayta 
\acl jayta 
\akl jayta 
\ame hayta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="592a9a00-7d75-4b54-aeda-fdbd96db29ee"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lula</AUni> -<AUni ws="qvm-x-acl">lula</AUni> -<AUni ws="qvm-x-akh">lula</AUni> -<AUni ws="qvm-x-akl">lula</AUni> -<AUni ws="qvm-x-ame">lula</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llulla.v</AUni> -<AUni ws="qvm-x-acl">*llulla.v</AUni> -<AUni ws="qvm-x-akh">*llulla.v</AUni> -<AUni ws="qvm-x-akl">*llulla.v</AUni> -<AUni ws="qvm-x-ame">*llulla.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.225" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8da66a50-5682-4a46-8b39-53815d135c22" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llulla.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b65b6a5f-a977-43f3-a996-bc9f2c3434c9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="07116738-35c1-4321-b443-f33ab088cd4c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llulla.v 
\entryTyp root 
\gENG lie 
\gSPN mentir 
\e *llulla.v 
\c V1 
\ach lula 
\akh lula 
\acl lula 
\akl lula 
\ame lula</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="592aee38-7ab6-4664-8997-d4d3d564deda" ownerguid="7c234ccc-0dbe-42b0-a377-db99ebd2b51e"> -<ExampleWords> -<AUni ws="en">catch, capture, trap</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to catching (but not killing) animals?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="592af172-bd77-4834-b77f-9e5937f0fc90" ownerguid="d4521b0f-0703-48cc-94a0-f42ccc09959c"> -<ExampleWords> -<AUni ws="en">reason, why, for what reason, for some reason, for any reason, for each and every reason, for no reason, why ever</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What pronouns express indefinite reference of a reason?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="592b6dec-d349-4752-b154-8a6af343cb93"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pica</AUni> -<AUni ws="qvm-x-acl">pica</AUni> -<AUni ws="qvm-x-akh">pica</AUni> -<AUni ws="qvm-x-akl">pica</AUni> -<AUni ws="qvm-x-ame">pica</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+picar</AUni> -<AUni ws="qvm-x-acl">+picar</AUni> -<AUni ws="qvm-x-akh">+picar</AUni> -<AUni ws="qvm-x-akl">+picar</AUni> -<AUni ws="qvm-x-ame">+picar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.820" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="03672661-5748-4114-b4fc-510cdfa25c8d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+picar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e755f95d-ab3b-4749-ab4a-3a84ffcdd708" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1fdcf32e-23b5-4867-8686-13ef8f5bd1c4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +picar 
\entryTyp root 
\gENG goad 
\gSPN picar 
\e +picar 
\c V2 
\ach pica 
\akh pica 
\acl pica 
\akl pica 
\ame pica</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="592c0a6f-2e24-4d4b-80e7-bace75879ff3" ownerguid="6ed896a6-bab7-4fdf-a4fd-a5ee49f380d2"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="2796343c-5e2a-40c0-8973-a7f52083a32e" t="o" /> -<objsur guid="ded65b4a-f47c-491b-95f3-1080151b43f1" t="o" /> -<objsur guid="f53e2d27-56bb-4811-ad1b-bd1fa865f86a" t="o" /> -<objsur guid="f4e0760a-ce75-461f-8de3-08dc167c70ff" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="592d6342-db62-4c77-9070-d7bf07b28394" ownerguid="2158eb7d-eb59-4740-9628-9080d7f51a97"> -<ExampleWords> -<AUni ws="en">stay awake, be alert, stay up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words are used of not wanting to sleep?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="592debd4-e4e7-4674-b661-677db0163460" ownerguid="ac650401-00f0-4159-ae7f-74aa96840e4e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">1</AUni> -<AUni ws="es">1</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c3d4a91d-b03e-4087-92b5-780b4f2da3cf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="593073d6-9893-4670-98fb-c485406a950b" ownerguid="45f7b003-ade3-4efc-8dee-259dcbf80a4a"> -<Abbreviation> -<AUni ws="en">3.3.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to interceding for someone--to say something to someone because you want them to do something good for someone else.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33I' Intercede</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Intercede</AUni> -</Name> -<Questions> -<objsur guid="d97fd403-8841-4104-9d8b-64830c06e555" t="o" /> -<objsur guid="2245c17c-41bd-4271-81f4-1160a0ca330e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="593218cd-e21f-41c9-b173-f4c4c1a3fecb" ownerguid="89d7c6a6-8be7-4bfe-910b-56a1132456cc"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">camay</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">camay</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kamay</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kamay</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kamay</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f0b99234-0a2f-44c4-83ae-47801443b6b2" t="r" /> -</Morph> -<Msa> -<objsur guid="1829a081-bc32-4291-9767-5bec080e6a37" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="59332f24-d6cd-4aa2-af59-9e6a5349fe82" ownerguid="a1959b00-9702-4b45-ac46-93f18d3bc5e6"> -<ExampleWords> -<AUni ws="en">sniff, snore, snort, sigh, hiss, sniffle, snuffle, hiccup</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making noise when you breathe?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="593442e2-a727-409f-bd11-f63d5741b719"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ima</AUni> -<AUni ws="qvm-x-acl">ima</AUni> -<AUni ws="qvm-x-akh">ima</AUni> -<AUni ws="qvm-x-akl">ima</AUni> -<AUni ws="qvm-x-ame">ima</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ima.v</AUni> -<AUni ws="qvm-x-acl">*ima.v</AUni> -<AUni ws="qvm-x-akh">*ima.v</AUni> -<AUni ws="qvm-x-akl">*ima.v</AUni> -<AUni ws="qvm-x-ame">*ima.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.802" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="feb7fd78-2a79-479f-bd52-f9dc1adca0de" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ima.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5dd03a80-0e45-42b4-9527-6531bae3c9d8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="91693616-d0f6-4ff9-9faa-325881b4d074" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ima.v 
\entryTyp root 
\gENG 
\gSPN advertencia 
\e *ima.v 
\c V1 
\ach ima 
\akh ima 
\acl ima 
\akl ima 
\ame ima 
\mcc *ima.v / ~_ BEN1 1 EVEN1 
\mcc *ima.v / ~_ IMPFV1 
\mcc *ima.v / ~_ [y] 
\mcc *ima.v / ~_ REF 
\mcc *ima.v / ~_ BEN2 
\mcc *ima.v / ~_ DUR 
\mcc *ima.v / ~_ BEN1 1 
\mcc *ima.v / ~_ 1 EVEN1 
\mcc *ima.v / ~_ PL [q] EVEN1 
\mcc *ima.v / ~_ JUST BEN1 1 EMPH 
\mcc *ima.v / ~_ DES 
\mcc *ima.v / ~_ PSTN 
\mcc *ima.v / ~_ HUMAN 
\mcc *ima.v / ~_ BEN3 [q]</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="5936219b-0ba3-4e93-a77b-1f444f98eba0" ownerguid="ca328b05-cfbd-4c55-8463-13e237905f32"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5937c2ac-3b0d-4bd4-9f10-4f6462571f06" ownerguid="eb662979-604c-455e-a2c6-a84b03a2ee3a"> -<ExampleWords> -<AUni ws="en">be early</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something happening early?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5938918c-eeb2-4384-aeab-158b7671c8be" ownerguid="f718fc15-59b2-4b6a-a9e3-39b3e8d487d7"> -<ExampleWords> -<AUni ws="en">growing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is growing?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="59394a5b-2054-4c67-baec-282175ee1530" ownerguid="edaf912c-12f2-463d-b1e3-9a2702f05927"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5939a8d7-d4f7-4cad-b508-446a964db6dd" ownerguid="3f37bb6f-cd32-4430-aa35-700acabbee15"> -<ExampleWords> -<AUni ws="en">restart, bring back, reintroduce, revive, restore, resurrect</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to starting something again after it has stopped?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="5939e729-60b2-4756-8148-5ba419790db9" ownerguid="600bc993-04f5-42c6-821d-be2d547750f9"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ROM 6.12 Shonguntsi jutsa ruraypag rapita rapiptinpis jutsata ama rurashuntsu.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="5939fdf3-0990-4560-96d8-20560b4d91a3" ownerguid="328412ac-7dab-40ed-8f88-104ee8b6cbe6"> -<Form> -<AUni ws="qvm-x-ach">capaz</AUni> -<AUni ws="qvm-x-acl">capaz</AUni> -<AUni ws="qvm-x-akh">capaz</AUni> -<AUni ws="qvm-x-akl">capaz</AUni> -<AUni ws="qvm-x-ame">capaz</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="593ad379-23dd-4291-901f-a3d31590a4c1" ownerguid="d8efbe75-255b-4a50-b5d6-edde747da301"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">greedy</AUni> -<AUni ws="es">codicioso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="be8bcc8c-9d81-411a-8417-1b0ba335bdd6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="593b5b97-47d5-4af2-be8a-6321e6a33496" ownerguid="29bca0b2-b243-4a26-845b-64250b3599cf"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ta</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ta</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ta</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ta</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ta</Run> -</AStr> -</Form> -<Morph> -<objsur guid="4f3f1430-f126-405a-98a8-5d0b732eb948" t="r" /> -</Morph> -<Msa> -<objsur guid="eac932ef-fd79-454b-b2f7-95e85dbb829a" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="593d34ef-91ed-4dc3-8fcf-179e4148bf67" ownerguid="eaf69e79-17ff-48c0-97c3-22b972a0e94e"> -<Form> -<AUni ws="qvm-x-ach">awa</AUni> -<AUni ws="qvm-x-acl">awa</AUni> -<AUni ws="qvm-x-akh">awa</AUni> -<AUni ws="qvm-x-akl">awa</AUni> -<AUni ws="qvm-x-ame">awa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="593d5292-7683-45d7-99a5-c0b744c09242" ownerguid="2ccb2c45-7b0c-466e-8390-7e99425b78bc"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">RUT 4.6 Tsaynog captenga manami rantiyta almitëtsu.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="593e6a82-63c8-49d4-b54e-8299fea67f83"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">curcu</AUni> -<AUni ws="qvm-x-acl">curcu; curcu; curco</AUni> -<AUni ws="qvm-x-akh">kurku</AUni> -<AUni ws="qvm-x-akl">kurku; kurku; kurko</AUni> -<AUni ws="qvm-x-ame">kurku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+corcovado</AUni> -<AUni ws="qvm-x-acl">+corcovado</AUni> -<AUni ws="qvm-x-akh">+corcovado</AUni> -<AUni ws="qvm-x-akl">+corcovado</AUni> -<AUni ws="qvm-x-ame">+corcovado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.182" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d6f41b28-db63-4f51-a45f-dfe5f5136de1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+corcovado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="da0704b5-b6ba-4df2-abbc-fb9e4e535e69" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="05be6462-40f3-4c0b-b355-8ee419c89935" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +corcovado 
\entryTyp root 
\gENG curved.spine 
\gSPN corcovado 
\e +corcovado 
\c N0 
\mp +assimilated 
\ach curcu 
\akh kurku 
\acl curcu / _# 
\acl curcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl curco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kurku / _# 
\akl kurku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kurko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kurku 
\mp KQWchange</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="593f8912-967c-4bc5-8eac-b681cf9a5f2f" ownerguid="f422a5b8-2f47-42d7-9641-0808908da9cf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="ade3ef6d-7e47-4299-a8b1-c69f144b2a69" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="35fd92de-528a-4cbd-973f-3682599dab63" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="594024e0-4a87-455e-822e-52d95d414dc7" ownerguid="8e6f9070-ffb9-4d0f-8f70-d8f40a9dd293"> -<Form> -<AUni ws="qvm-x-ach">mujun</AUni> -<AUni ws="qvm-x-acl">mujun</AUni> -<AUni ws="qvm-x-akh">mujun</AUni> -<AUni ws="qvm-x-akl">mujun</AUni> -<AUni ws="qvm-x-ame">mujun</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="59419694-f41f-4c7e-bc50-aa6c24001b07" ownerguid="35624f3a-2029-43b3-b70a-83e63ac9052f"> -<ExampleWords> -<AUni ws="en">-s, -ed, -ing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What affixes are in your language?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="59452e6d-8f35-45a0-aa1a-8fb072d63cc5" ownerguid="f4a143dc-621c-4892-9d82-d385c24fa794"> -<Form> -<AUni ws="qvm-x-ach">tsapu</AUni> -<AUni ws="qvm-x-acl">tsapu; tsapo</AUni> -<AUni ws="qvm-x-akh">tsapu</AUni> -<AUni ws="qvm-x-akl">tsapu; tsapo</AUni> -<AUni ws="qvm-x-ame">tsapu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="5946eea1-4944-492b-8179-bc921413dd7b" ownerguid="3c549735-95e1-4af3-ab1f-e0d8f93f4297"> -<Form> -<AUni ws="qvm-x-ach">shawata</AUni> -<AUni ws="qvm-x-acl">shawata</AUni> -<AUni ws="qvm-x-akh">shawata</AUni> -<AUni ws="qvm-x-akl">shawata</AUni> -<AUni ws="qvm-x-ame">shawata</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="59495eec-7287-4b5d-928b-4f8bdf2d552d" ownerguid="3f7749c1-5eff-4496-9953-dbca38442e94"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="594c6c68-b6cb-45db-a8ec-3164ed3dcc0f" ownerguid="44ed48bc-633d-43d2-8aa6-fd1a2b7e04ef"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="5b5af92e-2da5-4d16-9352-36a418524518" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5950a336-11e5-41d4-8504-f4db590ba3d5" ownerguid="32bebe7e-bdcc-4e40-8f0a-894cd6b26f25"> -<ExampleWords> -<AUni ws="en">healthy, well, fine, in good health, able-bodied, hale, sound, whole</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a person who is healthy?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5952f6aa-ac17-4f7d-a1fc-001c7f5c1bf4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ashmay</AUni> -<AUni ws="qvm-x-acl">ashmay</AUni> -<AUni ws="qvm-x-akh">ashmay</AUni> -<AUni ws="qvm-x-akl">ashmay</AUni> -<AUni ws="qvm-x-ame">ashmay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ashmay</AUni> -<AUni ws="qvm-x-acl">*ashmay</AUni> -<AUni ws="qvm-x-akh">*ashmay</AUni> -<AUni ws="qvm-x-akl">*ashmay</AUni> -<AUni ws="qvm-x-ame">*ashmay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.848" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="24a09c48-5ae6-467f-8bf4-f531bc104ff2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ashmay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1ec96eaa-a0cc-4d13-b796-22eb2e274ef4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8ca6d92e-cbad-4fc6-8f70-db0595274013" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ashmay 
\entryTyp root 
\gENG servant 
\gSPN serviente 
\e *ashmay 
\c N0 
\mp +FinalC 
\ach ashmay 
\akh ashmay 
\acl ashmay 
\akl ashmay 
\ame ashmay 
\mcc *ashmay / ~_ POL</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="595391d4-e7ee-4756-80ac-b32b2ba54c50" ownerguid="c2dbe83a-d638-45ac-a6d5-5f041b9dde71"> -<ExampleWords> -<AUni ws="en">crutch, cane, wheelchair, walker, stretcher, pallet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What things are used by a crippled person?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="59551f80-c4b2-4385-ab09-6f55062dbe4d" ownerguid="4d259d03-9cd3-4908-8c44-856aef2707a7"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="595692da-68f4-41cd-a676-4ea47e15a74b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wila</AUni> -<AUni ws="qvm-x-acl">wila</AUni> -<AUni ws="qvm-x-akh">wila</AUni> -<AUni ws="qvm-x-akl">wila</AUni> -<AUni ws="qvm-x-ame">wila</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*willa</AUni> -<AUni ws="qvm-x-acl">*willa</AUni> -<AUni ws="qvm-x-akh">*willa</AUni> -<AUni ws="qvm-x-akl">*willa</AUni> -<AUni ws="qvm-x-ame">*willa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.648" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0928b47a-a09c-4844-9607-34804a03c1e4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*willa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bb302077-07af-4981-ad5e-c91b9bb5f054" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7f5f15da-d22c-4aa0-af9e-60d6f27e7fa5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *willa 
\entryTyp root 
\gENG tell 
\gSPN contar 
\e *willa 
\c V2 
\ach wila 
\akh wila 
\acl wila 
\akl wila 
\ame wila 
\mcc *willa / ~_ PASS</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="5956e75c-2394-43eb-be76-21ff3dbf9b68"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">co:lera</AUni> -<AUni ws="qvm-x-acl">co:lera</AUni> -<AUni ws="qvm-x-akh">co:lera</AUni> -<AUni ws="qvm-x-akl">co:lera</AUni> -<AUni ws="qvm-x-ame">co:lera</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+colerar</AUni> -<AUni ws="qvm-x-acl">+colerar</AUni> -<AUni ws="qvm-x-akh">+colerar</AUni> -<AUni ws="qvm-x-akl">+colerar</AUni> -<AUni ws="qvm-x-ame">+colerar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.142" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="490d1749-b4b1-40f6-8970-1a2bf1aa19b3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+colerar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="576eaac5-acfb-40a2-9303-4dab1e6d7ad0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c77fe45f-e21c-4a6f-add5-1ee4617dd809" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +colerar 
\entryTyp root 
\gENG 
\gSPN 
\e +colerar 
\c V2 
\ach co:lera 
\akh co:lera 
\acl co:lera 
\akl co:lera 
\ame co:lera</Run> -</AStr> -</Custom> -</rt> -<rt class="Segment" guid="5961bb1e-a966-4b23-afb5-3903de6d3bf6" ownerguid="264049ec-4de2-434d-9aa5-3247fad798cd"> -<Analyses> -<objsur guid="b06da719-78bd-4bc2-9d9b-356e57b5d3ac" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="CmDomainQ" guid="5961bea3-66ed-4e29-a1b9-51d28f30ae96" ownerguid="21461d78-02f9-4be6-80e3-6a4498ce8f4c"> -<ExampleWords> -<AUni ws="en">captive, prisoner of war</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person captured in war?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5966e182-2cab-444f-9c03-8c32a26b1dd5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ancha</AUni> -<AUni ws="qvm-x-acl">ancha</AUni> -<AUni ws="qvm-x-akh">ancha</AUni> -<AUni ws="qvm-x-akl">ancha</AUni> -<AUni ws="qvm-x-ame">ancha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*antra.r</AUni> -<AUni ws="qvm-x-acl">*antra.r</AUni> -<AUni ws="qvm-x-akh">*antra.r</AUni> -<AUni ws="qvm-x-akl">*antra.r</AUni> -<AUni ws="qvm-x-ame">*antra.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.790" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1d935d6a-eac6-4cba-8dca-f98d0396fc49" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*antra.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9cef332e-af02-4cb7-b98b-f00168f193d3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="885c7d7d-5125-4c6c-b645-2acef8ca33ab" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *antra.r 
\entryTyp root 
\gENG spread.legs 
\gSPN piernas.extendidas 
\e *antra.r 
\c R0 
\ach ancha 
\akh ancha 
\acl ancha 
\akl ancha 
\ame ancha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="596812da-44d6-4522-960f-a3992f9a7562" ownerguid="ec0455d5-4578-45c7-bd7d-8aa6b3a8da42"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fire.wood</AUni> -<AUni ws="es">leña</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9c22513d-fe7c-4f24-8290-cf20d83c82e0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="596a2dbc-38a1-4667-92ca-feab6bc65cac"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Israel</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="596a4e4d-79c8-479b-8186-7598e8d557fd" ownerguid="a9a93240-5237-4ad0-911a-152179f78550"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="596ab399-e442-4afe-8796-633a49de65a7" ownerguid="87bd0d45-8a94-41cb-9864-90d53a11a4b9"> -<Abbreviation> -<AUni ws="en">4.7.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to justice.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Justice</AUni> -</Name> -<Questions> -<objsur guid="e414ab84-36b4-4fa7-a034-4c9316ee88d5" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="38bdff04-c7a9-41fa-a6a2-7aa214de308c" t="o" /> -<objsur guid="793d3124-8b77-4ff0-82ec-09a3a9d8d865" t="o" /> -<objsur guid="5737714d-49e4-4eb4-8e46-03203ee5340b" t="o" /> -<objsur guid="f9516c66-ac2c-49dd-951a-0d3606450463" t="o" /> -<objsur guid="bd31529c-ab67-419b-89a4-949aee8b3b11" t="o" /> -<objsur guid="bb4e0a69-db20-4757-beff-5dcb1c5e0f92" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="596e7b23-3b98-4604-a8d5-373911f07deb" ownerguid="fc6d1000-b760-4d53-8983-62c5d20e6a0d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">boat</AUni> -<AUni ws="es">barco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dd1e424f-aa21-4cc0-8c39-07241c4c4cb3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="5972b613-ebb5-4e87-9e5d-4fe9d1a2b6f9" ownerguid="e18fdcdf-fda5-47cc-a9d8-58b6c8a3877d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoInflAffMsa" guid="59734ec2-b6a9-4973-bbe0-e18423cefad7" ownerguid="a6b33028-9972-48eb-8f6c-9b45214d4c8a"> -<PartOfSpeech> -<objsur guid="a3274cfd-225f-45fd-8851-a7b1a1e1037a" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="1ac8c2fd-7b17-4fc7-b901-1d1db8a97b2d" t="r" /> -</Slots> -</rt> -<rt class="LexSense" guid="5979d306-49c3-4c2a-9745-3053f0b61a60" ownerguid="bfd8c3e0-7007-40d5-856b-7f41e88d5397"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="514e6267-e21b-468b-ac19-89d558bb71a7" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">be.above</AUni> -<AUni ws="es">estar.sobre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3c894d33-73d8-45a2-86e4-7d6483a8758c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="59808e11-c83e-45ef-987a-6e7fcacf2733"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">legpi</AUni> -<AUni ws="qvm-x-acl">legpi; legpi; legpe</AUni> -<AUni ws="qvm-x-akh">leqpi</AUni> -<AUni ws="qvm-x-akl">leqpi; leqpi; leqpe</AUni> -<AUni ws="qvm-x-ame">liqpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lliqpi.n</AUni> -<AUni ws="qvm-x-acl">*lliqpi.n</AUni> -<AUni ws="qvm-x-akh">*lliqpi.n</AUni> -<AUni ws="qvm-x-akl">*lliqpi.n</AUni> -<AUni ws="qvm-x-ame">*lliqpi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.205" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="76f481f4-f38e-4f42-a826-9c2ac2e69e82" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lliqpi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="92a837b6-41ab-479b-bc5c-32f583fea8b6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0703ee8c-4ea7-482f-85de-3986f3915bce" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lliqpi.n 
\entryTyp root 
\gENG 
\gSPN pantalón.caída 
\e *lliqpi.n 
\c N0 
\mp +FinalI 
\ach legpi 
\akh leqpi 
\acl legpi / _# 
\acl legpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl legpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl leqpi / _# 
\akl leqpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl leqpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame liqpi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="598349be-08f2-40ab-9a47-ba0ce2e95f1f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uchcu</AUni> -<AUni ws="qvm-x-acl">uchcu; uchcu; uchco</AUni> -<AUni ws="qvm-x-akh">uchku</AUni> -<AUni ws="qvm-x-akl">uchku; uchku; uchko</AUni> -<AUni ws="qvm-x-ame">uchku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*utrku.n</AUni> -<AUni ws="qvm-x-acl">*utrku.n</AUni> -<AUni ws="qvm-x-akh">*utrku.n</AUni> -<AUni ws="qvm-x-akl">*utrku.n</AUni> -<AUni ws="qvm-x-ame">*utrku.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.302" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="69ff793a-50f1-445c-9add-f5202e5f703b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*utrku.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="92a00216-534a-45cd-9931-b2fd2e7b99a0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="df8f6702-80bd-4171-888e-6a3e0a72171e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *utrku.n 
\entryTyp root 
\gENG hole 
\gSPN hueco 
\e *utrku.n 
\c N0 
\ach uchcu 
\akh uchku 
\acl uchcu / _# 
\acl uchcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl uchco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl uchku / _# 
\akl uchku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl uchko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame uchku</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="598449d6-42d2-4fda-b0ef-0b2527629e7a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cautsu</AUni> -<AUni ws="qvm-x-acl">cautsu; cautso</AUni> -<AUni ws="qvm-x-akh">kawtsu</AUni> -<AUni ws="qvm-x-akl">kawtsu; kawtso</AUni> -<AUni ws="qvm-x-ame">kawtsu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kawchu</AUni> -<AUni ws="qvm-x-acl">*kawchu</AUni> -<AUni ws="qvm-x-akh">*kawchu</AUni> -<AUni ws="qvm-x-akl">*kawchu</AUni> -<AUni ws="qvm-x-ame">*kawchu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.973" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4883cab0-ef7e-4b24-9559-d2b2a6c04313" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kawchu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="965958c0-4211-483d-9a65-c33044275383" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f6479b0d-e113-458d-8693-b6cc2904f7e1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kawchu 
\entryTyp root 
\gENG roll 
\gSPN enrollar 
\e *kawchu 
\c V1 
\ach cautsu 
\akh kawtsu 
\acl cautsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl cautso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kawtsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kawtso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kawtsu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="5984bfb8-afdf-4ca5-86e0-a65633961f5a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cachi</AUni> -<AUni ws="qvm-x-acl">cachi; cachi; cache</AUni> -<AUni ws="qvm-x-akh">kachi</AUni> -<AUni ws="qvm-x-akl">kachi; kachi; kache</AUni> -<AUni ws="qvm-x-ame">kachi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*katri.n</AUni> -<AUni ws="qvm-x-acl">*katri.n</AUni> -<AUni ws="qvm-x-akh">*katri.n</AUni> -<AUni ws="qvm-x-akl">*katri.n</AUni> -<AUni ws="qvm-x-ame">*katri.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.963" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="83be2a6e-f7c9-4586-a60a-03e44362e95e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*katri.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f1af688c-a922-493e-84a4-3769a7f72c9a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f34ee595-2e4b-482f-81a5-e577e424f2f6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *katri.n 
\entryTyp root 
\gENG salt 
\gSPN sal 
\e *katri.n 
\c N0 
\mp +FinalI 
\ach cachi 
\akh kachi 
\acl cachi / _# 
\acl cachi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cache +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kachi / _# 
\akl kachi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kache +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kachi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="59885225-ab94-4342-a2be-d718279791b4" ownerguid="aa8ae4da-326c-4446-8d1c-635794db05f5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chew.coca</AUni> -<AUni ws="es">chacchar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="31609e09-a8f4-4d14-a67d-dacfcce44dbf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="598e009b-59a9-4571-80b5-ce5162587668" ownerguid="6cea20b9-67a9-4e43-81b5-ac54e38743d6"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="13da26cd-8520-4a47-88ab-c377c5d6a418" t="o" /> -<objsur guid="9fdfafad-8f4e-4374-b1f9-d8c7dddf2bac" t="o" /> -<objsur guid="e2b4e1cc-397e-48f9-9c8f-7fa3c9e78c5d" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="598e2b64-9de4-47e2-a9ff-d1f87fd8a26c" ownerguid="0eda983b-633e-4b11-b5c8-28be60067782"> -<ExampleWords> -<AUni ws="en">risk, run a risk, expose (oneself to danger), hazard, wager, dare</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to risking something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="59923773-7a83-4932-8f63-86758743d8fd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">auni</AUni> -<AUni ws="qvm-x-acl">auni; aune</AUni> -<AUni ws="qvm-x-akh">awni</AUni> -<AUni ws="qvm-x-akl">awni; awne</AUni> -<AUni ws="qvm-x-ame">awni</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*awni</AUni> -<AUni ws="qvm-x-acl">*awni</AUni> -<AUni ws="qvm-x-akh">*awni</AUni> -<AUni ws="qvm-x-akl">*awni</AUni> -<AUni ws="qvm-x-ame">*awni</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.890" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6281a5d0-f527-43f2-a3c4-2ce10c8f0629" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*awni</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2a41ef6f-bc95-4429-8202-c7f639a0eadc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b2098dbe-5e39-4b1a-a5c5-01f11844ce59" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *awni 
\entryTyp root 
\gENG agree 
\gSPN concordar 
\e *awni 
\c V2 
\mp +FinalI 
\ach auni 
\akh awni 
\acl auni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl aune +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl awni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl awne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame awni</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5994231f-2d78-499a-8c48-e421f7424196" ownerguid="a21b17d1-0ff3-4733-b4cf-57c6ad2793c0"> -<Form> -<AUni ws="qvm-x-ach">pastilla</AUni> -<AUni ws="qvm-x-acl">pastilla</AUni> -<AUni ws="qvm-x-akh">pastilla</AUni> -<AUni ws="qvm-x-akl">pastilla</AUni> -<AUni ws="qvm-x-ame">pastilla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5995d113-836c-4e1c-b2b7-6f8cc1b68b0e" ownerguid="64493789-1c2c-4b24-a7e6-f00ff9be923e"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">This pot <is used to> make coffee.; This pot <is used for> making coffee.; What <is> this pot <used for>?; This pot <is for> coffee.; What <is> this pot <for>?; a pot <for> coffee</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">be used to, be used for, be for, for</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something being used for some activity or purpose?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5996d2dd-5f21-4c40-a1c3-f76e968fdac3" ownerguid="4083c501-02ef-45ec-8b64-cb09a0c58ca7"> -<Form> -<AUni ws="qvm-x-ach">follëtu</AUni> -<AUni ws="qvm-x-acl">follëtu; follëtu; follëto</AUni> -<AUni ws="qvm-x-akh">follëtu</AUni> -<AUni ws="qvm-x-akl">follëtu; follëtu; follëto</AUni> -<AUni ws="qvm-x-ame">follëtu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="5997b228-34a9-4ac6-849c-36ae6428e7fd" ownerguid="97832dfb-d490-40d0-ade8-a5074e868a76"> -<Form> -<AUni ws="qvm-x-ach">pedäzu</AUni> -<AUni ws="qvm-x-acl">pedäzu; pedäzu; pedäzo</AUni> -<AUni ws="qvm-x-akh">pedäzu</AUni> -<AUni ws="qvm-x-akl">pedäzu; pedäzu; pedäzo</AUni> -<AUni ws="qvm-x-ame">pedäzu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="5998134f-2dce-489d-9355-b67044c7611b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mati</AUni> -<AUni ws="qvm-x-acl">mati; mati; mate</AUni> -<AUni ws="qvm-x-akh">mati</AUni> -<AUni ws="qvm-x-akl">mati; mati; mate</AUni> -<AUni ws="qvm-x-ame">mati</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+maté</AUni> -<AUni ws="qvm-x-acl">+maté</AUni> -<AUni ws="qvm-x-akh">+maté</AUni> -<AUni ws="qvm-x-akl">+maté</AUni> -<AUni ws="qvm-x-ame">+maté</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.366" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b9f24c23-76cd-4848-8b2b-440fb950812e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+maté</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a0fc7b3d-b42e-457a-a171-f0019b836b56" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8bb51db2-efaa-4937-a58b-271b3719a9d2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +maté 
\entryTyp root 
\gENG 
\gSPN 
\e +maté 
\c N0 
\mp +assimilated 
\ach mati 
\akh mati 
\acl mati / _# 
\acl mati +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mate +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mati / _# 
\akl mati +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mate +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mati 
\mp +FinalI</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="5998c628-1f46-4b9f-b5f2-24369b7be3a0" ownerguid="ebf8e5f1-1a28-4216-a1d5-6b12e9d8347c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">SNG 5.1 Panalnincho caycag mishquitapis yawaycänami.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="599c1501-2a0b-433a-a70b-cb7432c278f2" ownerguid="86286c23-4899-4ac4-9869-e1bad3589d0a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="59a16c9d-9192-494b-8996-26d508ede738"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sandalia</AUni> -<AUni ws="qvm-x-acl">sandalia</AUni> -<AUni ws="qvm-x-akh">sandalia</AUni> -<AUni ws="qvm-x-akl">sandalia</AUni> -<AUni ws="qvm-x-ame">sandalia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sandalia</AUni> -<AUni ws="qvm-x-acl">+sandalia</AUni> -<AUni ws="qvm-x-akh">+sandalia</AUni> -<AUni ws="qvm-x-akl">+sandalia</AUni> -<AUni ws="qvm-x-ame">+sandalia</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.439" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c2aa94ca-7811-49c4-ae78-28b23cdef80d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sandalia</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="69b9bba6-5cf2-4b2a-b7d6-1c7ba7887b7e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3694f92f-8cb1-41e8-ab61-e3a502d6afc5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sandalia 
\entryTyp root 
\gENG 
\gSPN 
\e +sandalia 
\c N0 
\ach sandalia 
\akh sandalia 
\acl sandalia 
\akl sandalia 
\ame sandalia 
\i SNG 7.1 Reypa tsurin, sandaliayqui jaticurcuptiqui chaquiquipis cuyaylapagmi camaran.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="59a16e61-08b3-411b-b3f8-57f8b49eb58e" ownerguid="cb99a086-8c6d-4f90-81db-6afa69ae5455"> -<ExampleWords> -<AUni ws="en">meow, mew, caterwaul, hiss, purr</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What sounds do cats make?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="59a45097-804f-402f-a75b-c02b83cac303" ownerguid="907b24b6-7dcc-428e-afec-86cb20362d4a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="59a533ee-6a5c-439e-8be5-28a4f5e55172"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">novia</AUni> -<AUni ws="qvm-x-acl">novia</AUni> -<AUni ws="qvm-x-akh">novia</AUni> -<AUni ws="qvm-x-akl">novia</AUni> -<AUni ws="qvm-x-ame">novia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+novia</AUni> -<AUni ws="qvm-x-acl">+novia</AUni> -<AUni ws="qvm-x-akh">+novia</AUni> -<AUni ws="qvm-x-akl">+novia</AUni> -<AUni ws="qvm-x-ame">+novia</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.568" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d6560153-7766-4790-b466-58be10f3dc20" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+novia</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="53632b8c-932d-436b-b378-9b58d834bcde" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="41c3a481-5e95-4675-aa9a-1ca5d9e3599c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +novia 
\entryTyp root 
\gENG 
\gSPN 
\e +novia 
\c N0 
\ach novia 
\akh novia 
\acl novia 
\akl novia 
\ame novia</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="59a58f31-e8cb-4d44-8c51-5f05fd4f00ba" ownerguid="212914f2-1f1a-4ab4-8aae-7955ec0c4d84"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/V1 N0/V2 R0/V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">BEC</AUni> -<AUni ws="es">CONV</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a65486e9-3066-4a42-8c90-7aadcf10ae12" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="59a5fe0f-e53f-4938-99b2-4acca9a12fa8" ownerguid="cebf1d2d-0fd3-49aa-a071-5dcd881d9a24"> -<Form> -<AUni ws="qvm-x-ach">traspu</AUni> -<AUni ws="qvm-x-acl">traspu; traspo</AUni> -<AUni ws="qvm-x-akh">traspu</AUni> -<AUni ws="qvm-x-akl">traspu; traspo</AUni> -<AUni ws="qvm-x-ame">traspu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="59a8eb3c-b3bd-41fd-8624-ca08317b85f4" ownerguid="a01a1900-fc1f-462e-ba3d-ae822711b034"> -<ExampleWords> -<AUni ws="en">madman, crazy man, hypochondriac, idiot, lunatic, maniac, possessed man, psychopath, schizophrenic, retard</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a mentally ill person?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="59a95939-44d7-4396-9ef7-3a80c17e9fb1" ownerguid="f4b77866-c607-43f0-b816-95459c269525"> -<Abbreviation> -<AUni ws="en">3.5.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.174" /> -<DateModified val="2022-9-23 16:55:8.174" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for obscene words related to sex, defecation, death, damnation, and other taboo or offensive subjects. It is important to check the appropriateness of including obscene words in the dictionary. It should be the choice of the speakers of the language whether a word should be included or excluded. Obscene words included in the dictionary should be clearly marked as such. Obscenity is often used to heighten the emotion of an expression, and is often used when someone is angry. Obscenity is often associated with sex or defecation. Cursing is often associated with God, religion, or the afterlife. Insults often involve equating a person with an animal that is associated with an undesirable characteristic, questioning someone's parentage/legitimacy, questioning someone's character, or questioning someone's intelligence/sanity.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Obscenity</AUni> -</Name> -<Questions> -<objsur guid="cd819d9a-2ab9-45c5-91d5-5f1323941da2" t="o" /> -<objsur guid="5ae889d4-2a54-466e-80e4-78eda9a304c6" t="o" /> -<objsur guid="a40357cf-676f-43bf-b3c8-a03b99d41126" t="o" /> -<objsur guid="7adb6312-9b5b-4d80-ac2b-77376d25c63f" t="o" /> -<objsur guid="91e9f009-90f0-40d2-b74c-26f5e5be5b3d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="59aa8630-2777-4443-b02c-d6b48271f9e1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">condena</AUni> -<AUni ws="qvm-x-acl">condena</AUni> -<AUni ws="qvm-x-akh">condena</AUni> -<AUni ws="qvm-x-akl">condena</AUni> -<AUni ws="qvm-x-ame">condena</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+condenar</AUni> -<AUni ws="qvm-x-acl">+condenar</AUni> -<AUni ws="qvm-x-akh">+condenar</AUni> -<AUni ws="qvm-x-akl">+condenar</AUni> -<AUni ws="qvm-x-ame">+condenar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.162" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="65d4e41f-ecfe-4b46-a7ea-088236c18482" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+condenar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="18974132-2c3a-4ab0-8e63-945620bb58a9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d7b4c528-beff-433a-b5ed-72e1e12d4020" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +condenar 
\entryTyp root 
\gENG condemn 
\gSPN condenar 
\e +condenar 
\c V2 
\ach condena 
\akh condena 
\acl condena 
\akl condena 
\ame condena</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="59ab3371-cc09-46ec-8c29-782f337c6c0f"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Moab</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="59aebde1-d9d6-4c8a-878c-37ab171803ad" ownerguid="5ef2c0c2-bdb5-4671-820b-d086076ca689"> -<Form> -<AUni ws="qvm-x-ach">milu</AUni> -<AUni ws="qvm-x-acl">milu</AUni> -<AUni ws="qvm-x-akh">milu</AUni> -<AUni ws="qvm-x-akl">milu</AUni> -<AUni ws="qvm-x-ame">milu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="59b02f4e-4380-4541-83a3-e1533d913c22"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ti:sicu</AUni> -<AUni ws="qvm-x-acl">ti:sicu; ti:sicu; ti:sico</AUni> -<AUni ws="qvm-x-akh">ti:sicu</AUni> -<AUni ws="qvm-x-akl">ti:sicu; ti:sicu; ti:sico</AUni> -<AUni ws="qvm-x-ame">ti:sicu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tisico</AUni> -<AUni ws="qvm-x-acl">+tisico</AUni> -<AUni ws="qvm-x-akh">+tisico</AUni> -<AUni ws="qvm-x-akl">+tisico</AUni> -<AUni ws="qvm-x-ame">+tisico</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.926" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="297085b3-6660-4e9a-96e2-7d6813f667c0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tisico</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0e9a0fc1-0126-4c2b-a94b-70d8661722eb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="90ee0987-0790-4260-bcc3-8932cdbd3ea1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tisico 
\entryTyp root 
\gENG tuberculosis 
\gSPN tisis 
\e +tisico 
\c N0 
\ach ti:sicu 
\akh ti:sicu 
\acl ti:sicu / _# 
\acl ti:sicu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ti:sico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ti:sicu / _# 
\akl ti:sicu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ti:sico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ti:sicu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="59b12fe9-8d00-42f0-b3ec-dd72bc2e91b0" ownerguid="704a82a0-0783-4ccc-b07c-e21cafe9117e"> -<Form> -<AUni ws="qvm-x-ach">juknira; juknirä</AUni> -<AUni ws="qvm-x-acl">juknira; juknirä</AUni> -<AUni ws="qvm-x-akh">juknira; juknirä</AUni> -<AUni ws="qvm-x-akl">juknira; juknirä</AUni> -<AUni ws="qvm-x-ame">huknira; huknirä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="59b4fe6b-15f3-4ebd-9945-139d84cf849d" ownerguid="21c90725-57f4-490f-bccc-a5dfec231372"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">intestine</AUni> -<AUni ws="es">intestino</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="73d08203-50d9-4c98-b646-92b41173f234" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="59b5a455-9d30-4d2b-9140-f7e0c7ba34c9" ownerguid="16f07bf8-db51-4519-8707-956dbdaafc31"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">gavilán</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ff12e15f-0259-469f-8b7c-8c3952dbffbe" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="59b94361-31b8-4613-ab44-b972000c3c16" ownerguid="2c42f822-2079-440c-b3b7-7725b6a8db8b"> -<ExampleWords> -<AUni ws="en">compulsive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that you can't stop doing?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="59bd1a58-be99-4685-acf7-9f17bac9c430"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">albirti</AUni> -<AUni ws="qvm-x-acl">albirti; albirte</AUni> -<AUni ws="qvm-x-akh">albirti</AUni> -<AUni ws="qvm-x-akl">albirti; albirte</AUni> -<AUni ws="qvm-x-ame">albirti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+advertir</AUni> -<AUni ws="qvm-x-acl">+advertir</AUni> -<AUni ws="qvm-x-akh">+advertir</AUni> -<AUni ws="qvm-x-akl">+advertir</AUni> -<AUni ws="qvm-x-ame">+advertir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.657" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5d4119d5-6219-4d57-96fe-c83f456333aa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+advertir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="43d1e2f6-9b07-4f12-bdba-17aecac82d49" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ec15cb49-5df0-465f-b720-9dbc7f427283" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +advertir 
\entryTyp root 
\gENG warn 
\gSPN advertir 
\e +advertir 
\c V2 
\mp +assimilated 
\ach albirti 
\akh albirti 
\acl albirti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl albirte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl albirti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl albirte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame albirti 
\mp +FinalI 
\i JER 6.10 ¿Pitaraq albirtishaq?</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="59c10ba3-7ca9-4489-bcbf-3e51d89cfe4e" ownerguid="82e4394a-2f58-4356-8d9c-1ad9dbe95293"> -<ExampleWords> -<AUni ws="en">get cold, turn cold, drop, fall, cool down, cool, cool off, freeze, lose heat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to something becoming cold?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="59c2d7a8-95dc-431d-9d4b-89216a287c53" ownerguid="1c1198da-f907-4473-82dd-43598178b496"> -<Form> -<AUni ws="qvm-x-ach">desayunu; desayuno</AUni> -<AUni ws="qvm-x-acl">desayunu; desayunu; desayuno</AUni> -<AUni ws="qvm-x-akh">desayunu; desayuno</AUni> -<AUni ws="qvm-x-akl">desayunu; desayunu; desayuno</AUni> -<AUni ws="qvm-x-ame">desayunu; desayuno</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="59c55d33-0905-4578-8607-0d5ef860a1a8" ownerguid="f8515dad-926c-4195-bf26-4a15b9a9c24b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="59c5c317-8c33-44b2-bbf0-c24e767ce67c" ownerguid="3615c3d1-fd5b-40c5-80ad-80bfd6451d56"> -<ExampleWords> -<AUni ws="en">plunder, loot, despoil, pillage, sack, ransack, strip, rifle, forage, maraud, raid, piracy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to plundering?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="59cd4650-fa2b-4d77-bbd9-c0d9757ee088" ownerguid="dc1ab28c-3e1e-474c-8359-2548b7ad5595"> -<ExampleWords> -<AUni ws="en">describe, give a description of, portray, depict, paint a picture, characterize, define, redefine, represent, treat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to describing something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="59ce5dcb-e0da-4d3e-8d08-a75a48401a96" ownerguid="96acc3dd-e9c4-41a5-a3f2-a111271bfe84"> -<Form> -<AUni ws="qvm-x-ach">pelöta</AUni> -<AUni ws="qvm-x-acl">pelöta</AUni> -<AUni ws="qvm-x-akh">pelöta</AUni> -<AUni ws="qvm-x-akl">pelöta</AUni> -<AUni ws="qvm-x-ame">pelöta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="59ced0bd-ba42-4a6d-a818-549b877b0ab1" ownerguid="f442ba09-2469-4cfe-a31e-bcd120dbdec2"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EXO 14.15 Tsauraga Moisésta Tayta Dios caynog nergan: <<Israel runacuna aywananpag ninayquipa trucanga ¿imanirtag manacamalar caycanqui?</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="59cfedbf-5db1-4b8f-8ea7-d36cb8a36021" ownerguid="c92d7e46-5575-42a4-b495-7a5a9f05ca68"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="59d19623-0f3b-484d-96eb-a9093b020c8d" ownerguid="85214614-ab45-4805-9014-092750d47511"> -<Abbreviation> -<AUni ws="en">4.7.5.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to taking an oath.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33B" Swear, Put Under Oath, Vow</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Take oath</AUni> -</Name> -<Questions> -<objsur guid="b195d644-4338-47aa-b7f2-7f515df1bea5" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="59d5365f-de16-4e3a-beca-911839748b81" ownerguid="6092226c-99d3-4fb4-ab1a-794821117d36"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">healthy</AUni> -<AUni ws="es">sano</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a1541925-25ca-4c29-8fac-38b577837f13" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="59d6cf52-5c9a-4333-a6fb-8ee99d077dc1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chucru</AUni> -<AUni ws="qvm-x-acl">chucru; chucro</AUni> -<AUni ws="qvm-x-akh">chukru</AUni> -<AUni ws="qvm-x-akl">chukru; chukro</AUni> -<AUni ws="qvm-x-ame">chukru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trukru.v</AUni> -<AUni ws="qvm-x-acl">*trukru.v</AUni> -<AUni ws="qvm-x-akh">*trukru.v</AUni> -<AUni ws="qvm-x-akl">*trukru.v</AUni> -<AUni ws="qvm-x-ame">*trukru.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.160" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6beba4c5-15eb-4b2b-b9fc-b8639c07172d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trukru.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="92cdd3e8-490c-4935-acd9-f0157f31cf1c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3c96ed61-91cd-4c22-9899-c3c04c667490" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trukru.v 
\entryTyp root 
\gENG be.hard 
\gSPN estar.duro 
\e *trukru.v 
\c V1 
\ach chucru 
\akh chukru 
\acl chucru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl chucro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chukru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chukro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chukru 
\mcc *trukru.v / ~_ PL PRT1</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="59d92560-70f7-4857-9429-2c7a00f6020d" ownerguid="0db5817e-05bf-4703-a6b9-e239ac44f857"> -<ExampleWords> -<AUni ws="en">mixed, coed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe a school or organization that includes males and females?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="59d936f3-dffb-4585-80e0-eaf6cd6a8026" ownerguid="7bf05f4e-909f-40ca-b742-9be21eba9fbb"> -<Abbreviation> -<AUni ws="en">9.4.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.698" /> -<DateModified val="2022-9-23 16:55:8.698" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that someone can do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>74 Able, Capable</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Can</AUni> -</Name> -<Questions> -<objsur guid="5f46c38a-d8aa-4086-971e-b1efc287e1eb" t="o" /> -<objsur guid="62209610-c629-4ce4-a1c7-c4f8d4581b5c" t="o" /> -<objsur guid="486f0983-a6b4-4822-a8f3-8e4aac6253fa" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="59da782c-d9fa-4db4-9557-b3f55190d64b" ownerguid="d90db6d4-6c78-4ac8-9764-0cafa79b8b31"> -<ExampleWords> -<AUni ws="en">the army</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the army?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="59db2324-e961-4a97-a9ad-38791a07dc23"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sacrifica</AUni> -<AUni ws="qvm-x-acl">sacrifica</AUni> -<AUni ws="qvm-x-akh">sacrifica</AUni> -<AUni ws="qvm-x-akl">sacrifica</AUni> -<AUni ws="qvm-x-ame">sacrifica</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sacrificar</AUni> -<AUni ws="qvm-x-acl">+sacrificar</AUni> -<AUni ws="qvm-x-akh">+sacrificar</AUni> -<AUni ws="qvm-x-akl">+sacrificar</AUni> -<AUni ws="qvm-x-ame">+sacrificar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.419" /> -<DateModified val="2022-10-10 21:18:47.203" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8928dcd9-131e-4bcd-b271-a89a4b9aca3a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sacrificar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ec3a7db4-af42-4144-bac1-a8b0465cdeaf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="44d1191e-c36c-4a61-96ca-0bec06a31c4c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sacrificar 
\entryTyp root 
\gENG 
\gSPN 
\e +sacrificar 
\c V2 
\ach sacrifica 
\akh sacrifica 
\acl sacrifica 
\akl sacrifica 
\ame sacrifica</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="59dd7137-f371-4e60-bccb-4fbbffa83dec" ownerguid="3710e019-46c9-44db-a0aa-9054d3126161"> -<ExampleWords> -<AUni ws="en">addiction, habit, dependence</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to the need for drugs?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="59e21792-b446-4778-97bf-dc63c7944116" ownerguid="2e30f02d-d1e6-489c-a1fb-8b9fb6ecd819"> -<ExampleWords> -<AUni ws="en">be disappointed, feel let down, feel blue, feel forlorn, not realize your hopes, have your hopes dashed, your heart sank, look blue</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling disappointed?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="59e51f54-9b81-48bd-9a18-ece801920787" ownerguid="90f36f80-4da7-46a9-9c27-912cadb871d1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="59e8d53c-73a3-42ad-86a1-73dde75b6bb4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">arrindu; arrindo</AUni> -<AUni ws="qvm-x-acl">arrindu; arrindu; arrindo</AUni> -<AUni ws="qvm-x-akh">arrindu; arrindo</AUni> -<AUni ws="qvm-x-akl">arrindu; arrindu; arrindo</AUni> -<AUni ws="qvm-x-ame">arrindu; arrindo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+arriendo</AUni> -<AUni ws="qvm-x-acl">+arriendo</AUni> -<AUni ws="qvm-x-akh">+arriendo</AUni> -<AUni ws="qvm-x-akl">+arriendo</AUni> -<AUni ws="qvm-x-ame">+arriendo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.920" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="39aa356e-c2a9-4728-9147-bbb03741bc74" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+arriendo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f53efd82-fe8e-4a59-9e3b-e41450967713" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="31293342-b7b5-489d-88b4-69c8a986560f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +arriendo 
\entryTyp root 
\gENG rent 
\gSPN arrendamiento 
\e +arriendo 
\c N0 
\ach arrindu / ~_# 
\ach arrindo / _# 
\akh arrindu / ~_# 
\akh arrindo / _# 
\acl arrindu / ~_# 
\acl arrindu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl arrindo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl arrindu / ~_# 
\akl arrindu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl arrindo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame arrindu / ~_# 
\ame arrindo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="59ec7cf3-ad33-4fb9-9b93-06da382b0515"> -<Form> -<Str> -<Run ws="en">with</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="59ed0b4d-43d3-4b94-8e40-a480f11de970" ownerguid="180a2220-942c-4e17-96ee-cd4f63a4c715"> -<ExampleWords> -<AUni ws="en">dust, dust cloud, dust storm</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to dry dirt?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="59ee222a-c706-4c40-be92-980ea19e435d" ownerguid="d39b2432-87d5-4f3e-8101-de06001b42d6"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">They helped <each other> with their work.; We all helped <one another>.; <Each> accused <the other> of causing the problem.; We <exchanged> glances.; They <traded> insults.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">each other, one another, each...the other, exchange, trade, reciprocate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that two people do something to each other?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="59ee2eeb-d59f-44e0-8d71-51e12fccc837"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sieti; siete</AUni> -<AUni ws="qvm-x-acl">sieti; sieti; siete</AUni> -<AUni ws="qvm-x-akh">sieti; siete</AUni> -<AUni ws="qvm-x-akl">sieti; sieti; siete</AUni> -<AUni ws="qvm-x-ame">sieti; siete</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+siete</AUni> -<AUni ws="qvm-x-acl">+siete</AUni> -<AUni ws="qvm-x-akh">+siete</AUni> -<AUni ws="qvm-x-akl">+siete</AUni> -<AUni ws="qvm-x-ame">+siete</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.673" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aad8d7ad-9688-46a4-b96e-7050fcd31cd1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+siete</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="08ea4d43-532d-4e56-818a-372b9984ab3e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="28b70a10-87ac-482c-9236-d44cd4e57ff5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +siete 
\entryTyp root 
\gENG seven 
\gSPN siete 
\e +siete 
\c N0 
\mp +FinalI 
\ach sieti / ~_# 
\ach siete / _# 
\akh sieti / ~_# 
\akh siete / _# 
\acl sieti / ~_# 
\acl sieti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl siete +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sieti / ~_# 
\akl sieti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl siete +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sieti / ~_# 
\ame siete / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="59ef732b-1fd4-48ac-a9d1-504f16919adb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">declaración; declaracion</AUni> -<AUni ws="qvm-x-acl">declaración; declaracion</AUni> -<AUni ws="qvm-x-akh">declaración; declaracion</AUni> -<AUni ws="qvm-x-akl">declaración; declaracion</AUni> -<AUni ws="qvm-x-ame">declaración; declaracion</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+declaración</AUni> -<AUni ws="qvm-x-acl">+declaración</AUni> -<AUni ws="qvm-x-akh">+declaración</AUni> -<AUni ws="qvm-x-akl">+declaración</AUni> -<AUni ws="qvm-x-ame">+declaración</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.366" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9d6ba00b-496b-41be-9ebb-d1f84755f671" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+declaración</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b28c1db0-7908-4151-98a3-5a55be83f59e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dc7b9a6f-71b8-4b09-b3fa-49de5428e2eb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +declaración 
\entryTyp root 
\gENG 
\gSPN 
\e +declaración 
\c N0 
\mp +FinalC 
\ach declaración / _# 
\ach declaracion / ~_# 
\akh declaración / _# 
\akh declaracion / ~_# 
\acl declaración / _# 
\acl declaracion / ~_# 
\akl declaración / _# 
\akl declaracion / ~_# 
\ame declaración / _# 
\ame declaracion / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="59f00bf3-3492-4f37-ae85-873fc12adff2" ownerguid="cdf94156-faa3-4909-82d8-70b8d42cd7bd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tomb</AUni> -<AUni ws="es">nicho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2615ce37-e5df-4fbd-999c-549afcb01b96" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="59f2ffdb-9b58-46c7-9557-a2766f97e056" ownerguid="13aff896-082c-4ec7-ac96-f512a692d943"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="59f59588-b682-4cc9-85c8-5c1159fc0c0e" ownerguid="2d0b3058-d8bb-4110-a54a-e507b0d3a0e4"> -<ExampleWords> -<AUni ws="en">beat (n), heartbeat, pulse, rhythm</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the heartbeat?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="59f5c685-49e8-4e49-8c94-d98f301fa758"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">anzue:lu</AUni> -<AUni ws="qvm-x-acl">anzue:lu; anzue:lu; anzue:lo</AUni> -<AUni ws="qvm-x-akh">anzue:lu</AUni> -<AUni ws="qvm-x-akl">anzue:lu; anzue:lu; anzue:lo</AUni> -<AUni ws="qvm-x-ame">anzue:lu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+anzuelo</AUni> -<AUni ws="qvm-x-acl">+anzuelo</AUni> -<AUni ws="qvm-x-akh">+anzuelo</AUni> -<AUni ws="qvm-x-akl">+anzuelo</AUni> -<AUni ws="qvm-x-ame">+anzuelo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.800" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d784906b-d6a4-4d5b-99fe-1f380f50da27" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+anzuelo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="306f7c08-acc5-4f85-8e0a-0af89cdd7c23" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="447ef380-52ea-4c04-8906-3c37b0d3ed34" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +anzuelo 
\entryTyp root 
\gENG hook 
\gSPN anzuelo 
\e +anzuelo 
\c N0 
\ach anzue:lu 
\akh anzue:lu 
\acl anzue:lu / _# 
\acl anzue:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl anzue:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl anzue:lu / _# 
\akl anzue:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl anzue:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame anzue:lu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="59fd41ae-f85a-4799-892a-679c1c7784df"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">noticia</AUni> -<AUni ws="qvm-x-acl">noticia</AUni> -<AUni ws="qvm-x-akh">noticia</AUni> -<AUni ws="qvm-x-akl">noticia</AUni> -<AUni ws="qvm-x-ame">noticia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+noticia</AUni> -<AUni ws="qvm-x-acl">+noticia</AUni> -<AUni ws="qvm-x-akh">+noticia</AUni> -<AUni ws="qvm-x-akl">+noticia</AUni> -<AUni ws="qvm-x-ame">+noticia</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.568" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="27cd74c6-8088-4553-8100-53ad87c89cca" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+noticia</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="db93516a-d6b6-49fa-97e3-c9cd7aa9574f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c712641b-bd26-4b52-aa7b-d373206b941a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +noticia 
\entryTyp root 
\gENG news 
\gSPN noticia 
\e +noticia 
\c N0 
\ach noticia 
\akh noticia 
\acl noticia 
\akl noticia 
\ame noticia</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="59ff470d-88c4-4046-afa6-af6000d5eb62" ownerguid="9ac6dec6-1b8f-463c-8239-e2acb93586b1"> -<ExampleWords> -<AUni ws="en">unifying, uniting</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a person, force, or influence that unifies a group?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="5a021f98-2efb-4baf-9384-a553dc3df86c" ownerguid="fcd22c85-7ee1-4d31-8633-9dbd32344211"> -<Abbreviation> -<AUni ws="en">7.2.3.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to returning to a place--to go back to a place you earlier left.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15G Return</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Return</AUni> -</Name> -<Questions> -<objsur guid="552445f6-0078-47cf-8f00-fd16d33eef8f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="5a07149e-b119-4595-a484-df18b571c0f0" ownerguid="d168bfa9-6065-4d2f-8c52-a34d175f6a56"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="5a0b1a5e-1a64-4cb1-b0f1-840601907308" ownerguid="f2c017ab-bed1-4971-9b72-f303449257b1"> -<Form> -<AUni ws="qvm-x-ach">acacha</AUni> -<AUni ws="qvm-x-acl">acacha</AUni> -<AUni ws="qvm-x-akh">akacha</AUni> -<AUni ws="qvm-x-akl">akacha</AUni> -<AUni ws="qvm-x-ame">akacha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="5a0d7649-7336-4f1e-85e1-7b7559707790" ownerguid="7b7bf5a6-abac-4730-991d-a047417cc33b"> -<Form> -<AUni ws="qvm-x-ach">jucag</AUni> -<AUni ws="qvm-x-acl">jucag</AUni> -<AUni ws="qvm-x-akh">jukaq</AUni> -<AUni ws="qvm-x-akl">jukaq</AUni> -<AUni ws="qvm-x-ame">hukaq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="5a0dcf35-a145-40da-b4cb-8f8986835a2e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">suena</AUni> -<AUni ws="qvm-x-acl">suena</AUni> -<AUni ws="qvm-x-akh">suena</AUni> -<AUni ws="qvm-x-akl">suena</AUni> -<AUni ws="qvm-x-ame">suena</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sonar</AUni> -<AUni ws="qvm-x-acl">+sonar</AUni> -<AUni ws="qvm-x-akh">+sonar</AUni> -<AUni ws="qvm-x-akl">+sonar</AUni> -<AUni ws="qvm-x-ame">+sonar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.723" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="86fc4505-aa88-4830-af02-85a84ae887a3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sonar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c49c8651-3a9b-4062-a944-4d0bc39f15b0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b61fbbed-55df-47ba-bf7a-997878e43529" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sonar 
\entryTyp root 
\gENG sound 
\gSPN sonar 
\e +sonar 
\c V1 
\ach suena 
\akh suena 
\acl suena 
\akl suena 
\ame suena</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5a115409-46d7-44b8-a5ef-68be44ffbc82" ownerguid="a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f"> -<ExampleWords> -<AUni ws="en">blindfold, blind, dazzle, block someone's view</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to doing something so that someone can't see?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5a1b239d-3149-47d9-bd73-23e39acade88" ownerguid="8778e450-62bd-4f38-b2f2-1b74cb9e63ac"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="5a1bcba2-4b2d-4fcc-a51e-50f75d1cc603" ownerguid="117d15f5-27ea-4ed5-973a-690e38c6e0ca"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="afc9693b-7648-4fad-a215-d07690c0551d" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">to.low</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b759a244-6b1f-41c6-a799-67dd1cc935e8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5a1e1dc6-ed41-4285-a4d4-a30c93b4465d" ownerguid="b6a40216-fe93-4b0f-b85b-5622327031d0"> -<ExampleWords> -<AUni ws="en">chick, baby bird, hatchling</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What is a baby bird called?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="5a1f0bfe-4c02-4160-b28c-107a5a8814cf" ownerguid="2d1ea615-677d-4f84-963f-84f43f5bb154"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">lapa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">lapa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">lapa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">lapa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">lapa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="0655d4c4-dcff-4fca-931a-8964415a96b4" t="r" /> -</Morph> -<Msa> -<objsur guid="b16d0818-05dc-49f7-8cdf-889b0be5517e" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="5a1f2944-9142-41ea-84ef-033abb058371" ownerguid="a05e906f-289d-4ad8-b3b5-30a840c4c99d"> -<Form> -<AUni ws="qvm-x-ach">gala</AUni> -<AUni ws="qvm-x-acl">gala</AUni> -<AUni ws="qvm-x-akh">qala</AUni> -<AUni ws="qvm-x-akl">qala</AUni> -<AUni ws="qvm-x-ame">qala</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="5a234a37-31c8-44f4-96c5-507e73ed31e4" ownerguid="cdf65d07-f019-436e-95e6-4d74aafc147c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="5a2355b4-c295-4b94-86da-6ac18198bae4" ownerguid="49ee84ff-eb2b-4ba3-b193-3018d34599c2"> -<Abbreviation> -<AUni ws="en">6.8.5.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to credit--when a lending institution, such as a bank, has some of your money, so they owe you something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Credit</AUni> -</Name> -<OcmCodes> -<Uni>452 Credit</Uni> -</OcmCodes> -<Questions> -<objsur guid="0b08b76f-9071-4b0a-b8f1-8bb43c115dd3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="5a2f3909-14ee-49b0-b769-2939754b2bb6" ownerguid="dafda84e-19f2-457c-b1dd-b9a92fdf240f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmPossibility" guid="5a35b43c-b4d5-4b6a-8eb8-da4f0bcbffbf" ownerguid="b80bb21a-ea5e-11de-8c5d-0013722f8dec"> -<Abbreviation> -<AUni ws="en">takesPLALLM</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-10-21 16:38:24.116" /> -<DateModified val="2022-10-21 16:40:14.253" /> -<Description> -<AStr ws="en"> -<Run ws="en">Those roots which can take -</Run> -<Run ws="qvm-x-akh">päku, PLALLM</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">takes PLALLM</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="5a36106b-cace-41ee-8de8-b8418d8ac433"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">iñinu</AUni> -<AUni ws="qvm-x-acl">iñinu; iñinu; iñino</AUni> -<AUni ws="qvm-x-akh">iñinu</AUni> -<AUni ws="qvm-x-akl">iñinu; iñinu; iñino</AUni> -<AUni ws="qvm-x-ame">iñinu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*iñinu</AUni> -<AUni ws="qvm-x-acl">*iñinu</AUni> -<AUni ws="qvm-x-akh">*iñinu</AUni> -<AUni ws="qvm-x-akl">*iñinu</AUni> -<AUni ws="qvm-x-ame">*iñinu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.840" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3738d392-d7ee-4565-971f-b9e211542c23" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*iñinu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fddfd995-311c-48f5-a5b9-d7b381b704c4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7e2289fe-1880-4fe8-86de-c9e473159a53" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *iñinu 
\entryTyp root 
\gENG 
\gSPN 
\e *iñinu 
\c N0 
\ach iñinu 
\akh iñinu 
\acl iñinu / _# 
\acl iñinu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl iñino +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl iñinu / _# 
\akl iñinu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl iñino +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame iñinu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="5a39edae-1ace-4889-b636-1dfd2a1bcc3c" ownerguid="d9f336cf-0682-4702-ab94-5ade755ddc64"> -<Abbreviation> -<AUni ws="en">7.3.2.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.528" /> -<DateModified val="2022-9-23 16:55:8.528" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to taking something out of something else.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Take something out of something</AUni> -</Name> -<Questions> -<objsur guid="7db69f94-7271-4b70-9d6f-64a5bd1e6d09" t="o" /> -<objsur guid="4af9bd60-4570-41d2-96b2-d9317abe1e20" t="o" /> -<objsur guid="2306c290-4ca1-427f-a22a-c0ca32e1fbca" t="o" /> -<objsur guid="5f15b499-fc31-420a-ab19-4ef436ffc42c" t="o" /> -<objsur guid="90651d60-21f1-49e0-bcbd-8b2db15bf456" t="o" /> -<objsur guid="7fceabf9-51e6-44c8-9802-e4a341c70151" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="a31c85df-02a9-4dd8-a094-0f07a0afbcca" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="5a3a3156-1ab9-49df-834b-c16b6578aeac" ownerguid="b5753e98-bf3e-4bc0-8b0f-ecaaf4d2d3f3"> -<Form> -<AUni ws="qvm-x-ach">tsucuy</AUni> -<AUni ws="qvm-x-acl">tsucuy</AUni> -<AUni ws="qvm-x-akh">tsukuy</AUni> -<AUni ws="qvm-x-akl">tsukuy</AUni> -<AUni ws="qvm-x-ame">tsukuy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5a3a7edb-d086-4552-8dcb-508f7b7c4394" ownerguid="7c1c3730-3b35-4150-b54e-bf6d344546b3"> -<ExampleWords> -<AUni ws="en">then, indeed, surely, so, certainly, in fact, actually, how, you know, really, sure, just, you know don't you that, how much more, emphatically, absolutely, without question, no way, of course, obviously, you've got to be kidding, it is just that, the only thing is, one thing that, in reality, only that, as it were, just as you can see, as you know, without a doubt, don't you remember, I am convinced that</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that a phrase or sentence is important?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5a3b00fa-fc3b-4bb2-b784-f605d8d82a18" ownerguid="e4e05724-01ec-4c61-90f0-b8658cc8ca51"> -<ExampleWords> -<AUni ws="en">microscope, magnifying glass, magnifier</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What things do people use to see small things?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5a3b5134-4e83-4bc7-9292-746ffcf4e077" ownerguid="1f880c05-7c66-439a-867a-50935f5fcb93"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">yearn</AUni> -<AUni ws="es">antojar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c5428ab1-0a9d-4c3e-a909-ff4a5730054d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="5a3e8b34-c7e7-4267-95df-8fa92428b6ce" ownerguid="e53d61f7-bdba-4667-a456-09021eca02a7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoInflAffMsa" guid="5a3e9dbc-32e4-498e-9fe3-635d62980299" ownerguid="14784775-37dd-4682-bdcc-b8944da947a5"> -<PartOfSpeech> -<objsur guid="a4fc78d6-7591-4fb3-8edd-82f10ae3739d" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="f9e1228b-4c5b-4e23-bd04-d513eddcbaea" t="r" /> -</Slots> -</rt> -<rt class="WfiWordform" guid="5a3fbcea-52c4-4be3-b2d6-d1cf427083b8"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">alina</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="5a42990f-f614-46b5-a162-68a615351559" ownerguid="bf309576-a4b0-49ee-8a7c-09952cc58195"> -<Form> -<AUni ws="qvm-x-ach">chiqui</AUni> -<AUni ws="qvm-x-acl">chiqui</AUni> -<AUni ws="qvm-x-akh">chiki</AUni> -<AUni ws="qvm-x-akl">chiki</AUni> -<AUni ws="qvm-x-ame">chiki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="5a44d956-4cd0-4365-bcab-90949866ef55"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">locru; locro</AUni> -<AUni ws="qvm-x-acl">locru; locru; locro</AUni> -<AUni ws="qvm-x-akh">locru; locro</AUni> -<AUni ws="qvm-x-akl">locru; locru; locro</AUni> -<AUni ws="qvm-x-ame">locru; locro</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+locro</AUni> -<AUni ws="qvm-x-acl">+locro</AUni> -<AUni ws="qvm-x-akh">+locro</AUni> -<AUni ws="qvm-x-akl">+locro</AUni> -<AUni ws="qvm-x-ame">+locro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.114" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8e59e9d1-e237-4184-852f-d2740dc13ce5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+locro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9a083e4c-a32a-4bd2-be37-4b59af69516d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="919f1864-1663-4d07-b3a7-67494434ae1b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +locro 
\entryTyp root 
\gENG soup 
\gSPN locro 
\e +locro 
\c N0 
\ach locru / ~_# 
\ach locro / _# 
\akh locru / ~_# 
\akh locro / _# 
\acl locru / ~_# 
\acl locru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl locro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl locru / ~_# 
\akl locru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl locro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame locru / ~_# 
\ame locro / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="5a48d8b8-ccea-4ad3-8577-00bc6a9522bb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">plati:llu</AUni> -<AUni ws="qvm-x-acl">plati:llu; plati:llu; plati:llo</AUni> -<AUni ws="qvm-x-akh">plati:llu</AUni> -<AUni ws="qvm-x-akl">plati:llu; plati:llu; plati:llo</AUni> -<AUni ws="qvm-x-ame">plati:llu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+platillo.1</AUni> -<AUni ws="qvm-x-acl">+platillo.1</AUni> -<AUni ws="qvm-x-akh">+platillo.1</AUni> -<AUni ws="qvm-x-akl">+platillo.1</AUni> -<AUni ws="qvm-x-ame">+platillo.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.881" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6420d321-f75a-4083-a4cf-b11a45e5b3f8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+platillo.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="55989abb-453d-4bcf-bac3-3667e726212a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3811ec65-8452-4ea5-97c5-3ea80b0d2f0d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +platillo.1 
\entryTyp root 
\gENG 
\gSPN 
\e +platillo.1 
\c N0 
\ach plati:llu 
\akh plati:llu 
\acl plati:llu / _# 
\acl plati:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl plati:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl plati:llu / _# 
\akl plati:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl plati:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame plati:llu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="5a4a8ae5-a209-4946-8fa1-3c3bd5083e0d" ownerguid="b9c752a4-66be-493c-8955-cfa5324a54c1"> -<Abbreviation> -<AUni ws="en">4.9.5.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.296" /> -<DateModified val="2022-9-23 16:55:8.296" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to religious ceremonies.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33S Preach, Proclaim</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Religious ceremony</AUni> -</Name> -<OcmCodes> -<Uni>796 Organized Ceremonial; 788 Ritual; 786 Ecstatic religious practices; Orgies</Uni> -</OcmCodes> -<Questions> -<objsur guid="76968fc2-60c0-4cb0-9c2a-e429b06841f0" t="o" /> -<objsur guid="3fc3c5c0-3062-4657-bce7-34d777223e8d" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="71cbefc3-e0a5-4b97-9672-fa0cb34c59e4" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="5a4b5d7b-2fe6-48b6-9222-a2237a1da894" ownerguid="d9623ade-d8f3-468e-b8e5-da86de118287"> -<Form> -<AUni ws="qvm-x-ach">marcha</AUni> -<AUni ws="qvm-x-acl">marcha</AUni> -<AUni ws="qvm-x-akh">marcha</AUni> -<AUni ws="qvm-x-akl">marcha</AUni> -<AUni ws="qvm-x-ame">marcha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoInflAffMsa" guid="5a4d9e40-3b93-4303-947b-5d6ee7f02108" ownerguid="efe35dbf-ae76-4d63-b9ee-47f06f007351"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="b5380f6d-8ec4-4a58-806f-5e3caeadb9df" t="r" /> -</Slots> -</rt> -<rt class="CmDomainQ" guid="5a5123a2-da1a-4ea1-b818-b80c3e3da995" ownerguid="3445e61b-61a3-4ede-93f5-402ebe9ca51c"> -<ExampleWords> -<AUni ws="en">alarm, bell, buzzer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something that makes a sound to warn people?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5a51bab9-f251-4130-b3e9-0e911488d3ef" ownerguid="00a0c11a-91df-4639-9564-610d81425ce9"> -<Form> -<AUni ws="qvm-x-ach">pañuëlu</AUni> -<AUni ws="qvm-x-acl">pañuëlu; pañuëlu; pañuëlo</AUni> -<AUni ws="qvm-x-akh">pañuëlu</AUni> -<AUni ws="qvm-x-akl">pañuëlu; pañuëlu; pañuëlo</AUni> -<AUni ws="qvm-x-ame">pañuëlu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="5a539821-37a6-449b-a7f1-818136e77ed2" ownerguid="0bd3a443-92ec-4aba-9f6d-67e1ba8c2d94"> -<Form> -<AUni ws="qvm-x-ach">chupi</AUni> -<AUni ws="qvm-x-acl">chupi; chupi; chupe</AUni> -<AUni ws="qvm-x-akh">chupi</AUni> -<AUni ws="qvm-x-akl">chupi; chupi; chupe</AUni> -<AUni ws="qvm-x-ame">chupi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5a55273d-58bb-44ff-8d57-6652bf8485f0" ownerguid="26b97047-edb1-44e9-8c7b-463de9cfbe78"> -<ExampleWords> -<AUni ws="en">shear, fleece, karakul</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to shearing a sheep?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="5a5741af-bc15-4a43-8472-a5bc3df1bff8" ownerguid="fdac360e-4fe4-4aba-bd68-6e4410c06e68"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="5a57d254-e9a8-4387-8906-300b132b1319" ownerguid="f1954678-ed60-4039-a99b-45b9d4b722d0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">radio</AUni> -<AUni ws="es">radio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="10df8fd3-2076-40f1-995e-96afe1cd2796" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="5a585789-2ef6-42c5-9c5a-34ff716059b7" ownerguid="34e92ff1-32aa-49c7-b4da-d161bedc5adc"> -<Abbreviation> -<AUni ws="en">6.6.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.468" /> -<DateModified val="2022-9-23 16:55:8.468" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to working with glass.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>7G Miscellaneous Constructions</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Working with glass</AUni> -</Name> -<OcmCodes> -<Uni>323 Ceramic Technology; Ceramic Industries</Uni> -</OcmCodes> -<Questions> -<objsur guid="f014b991-e07e-40f5-8878-4e489bd4efd0" t="o" /> -<objsur guid="9173a851-9f39-44c8-ba4f-36f1b66ec48f" t="o" /> -<objsur guid="ae992b19-b9e4-4e7e-bd16-b715dc0be30c" t="o" /> -<objsur guid="8be438ab-3f70-45a4-8a44-451f9af644c6" t="o" /> -<objsur guid="c00d9716-afa5-47f3-bc74-83269bf9b1a8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="5a5e512f-da2b-4baf-9583-941bbecb0960" ownerguid="c65a5371-6156-4f7b-83cb-3b0005867d7d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">thank</AUni> -<AUni ws="es">agradecer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b3b08fa8-94fc-48e0-922a-d74b62c206fd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5a6143a1-7ba3-40b6-bfdf-c53fdce2a9ed" ownerguid="16dbd62c-f60d-4530-ba4e-0e74221e4681"> -<ExampleWords> -<AUni ws="en">cover-up, whitewash, hidden, suppressed, repressed, disguised, veiled, secret, secrecy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is hidden?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="5a658f56-1bbe-404a-ad19-ca75df5b5fc3" ownerguid="b93d9c47-2a86-4719-8864-71b8ddc50398"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a4d42f6f-d626-4469-8166-21d6f4e69d6d" t="r" /> -</Morph> -<Msa> -<objsur guid="72dc7bab-4d12-4cdb-a144-3c853f889fb5" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="5a686695-633f-457c-95eb-b6fc8608a19b" ownerguid="f38f267d-c55d-4927-9ac7-7a61e42d49ff"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5a6a4cfb-096d-4959-a5b2-d8738530d6b1" ownerguid="ebac5ec8-dc4c-4b2b-a727-3ca82404cdbb"> -<ExampleWords> -<AUni ws="en">demonstration</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to an event when you demonstrate something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5a6c3085-e731-45da-be51-a78f32c6e302" ownerguid="26ddd68b-9112-4344-95ac-203ca466fc62"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="5a6e6b8a-3cf2-4766-b089-fc9b27006e42" ownerguid="209a148d-7e3e-4738-b799-db6ec9ca68a1"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="MoDerivAffMsa" guid="5a6f0521-2196-49ef-ac84-f9d082f56194" ownerguid="cabbb65d-f1ee-408d-847a-814f2a83e682"> -<FromPartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</FromPartOfSpeech> -<ToPartOfSpeech> -<objsur guid="f3ea5225-9cc3-474e-b548-7bda3376fce1" t="r" /> -</ToPartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="5a7143dd-ee64-44ff-a5ac-e0513bc612e2" ownerguid="fc359d0b-f567-42de-83b0-5bbee020375e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 140.3 Paycunapa shimenga culebrapa lanzëtannogragmi caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="5a755e20-9d38-425f-924e-baf0eb876df5" ownerguid="f0d88b43-6bb2-443f-928c-2c24e7e603a9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">enflower</AUni> -<AUni ws="es">florear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="939db891-2745-4a71-b64b-da13b874ff26" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="5a76e620-f948-4742-bb8c-56e959815eea" ownerguid="a9c67c41-699d-4857-9dbb-ec3ab8a5a28b"> -<Form> -<AUni ws="qvm-x-ach">aprovecha</AUni> -<AUni ws="qvm-x-acl">aprovecha</AUni> -<AUni ws="qvm-x-akh">aprovecha</AUni> -<AUni ws="qvm-x-akl">aprovecha</AUni> -<AUni ws="qvm-x-ame">aprovecha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="5a7a5abe-a9a5-42e6-a681-1b04eb68e784" ownerguid="21bd5d63-6ac9-4381-86e9-8c4da4b70e50"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">time</AUni> -<AUni ws="es">tiempo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bf4ac4ae-286c-463c-8b36-aaf96849d3d2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5a7f19bf-553b-4ec1-a495-f47f3b034cf9" ownerguid="4153416a-784d-4f7c-a664-2640f7979a14"> -<ExampleWords> -<AUni ws="en">overflow its banks, flood, deluge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a river overflowing its banks?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5a830da2-9156-4792-889c-fe242bd24aff" ownerguid="d72971a3-484c-431e-a2b9-9f1eba996c20"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c333464c-794c-4575-9443-68832fc18571" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">wind</AUni> -<AUni ws="es">cuerda</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a420f780-a434-40e5-a6a0-bd50aeed0fc5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5a886846-a7a2-49bb-b088-4b00d9902107"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yolga</AUni> -<AUni ws="qvm-x-acl">yolga</AUni> -<AUni ws="qvm-x-akh">yolqa</AUni> -<AUni ws="qvm-x-akl">yolqa</AUni> -<AUni ws="qvm-x-ame">yulqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yullqa</AUni> -<AUni ws="qvm-x-acl">*yullqa</AUni> -<AUni ws="qvm-x-akh">*yullqa</AUni> -<AUni ws="qvm-x-akl">*yullqa</AUni> -<AUni ws="qvm-x-ame">*yullqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.790" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="74da5def-78b4-4dc9-ab74-b381b33fa376" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yullqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1c341f68-b48e-4114-bc9a-8db41b7ff69a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7e3fe69b-db9b-4378-b973-c700d6a15371" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yullqa 
\entryTyp root 
\gENG whiten 
\gSPN blanquear 
\e *yullqa 
\c V1 
\ach yolga 
\akh yolqa 
\acl yolga 
\akl yolqa 
\ame yulqa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5a896721-cead-4f4e-a788-0bfd0cb13920" ownerguid="2621e605-3ecc-4f3d-b28c-f8c92b3c4584"> -<ExampleWords> -<AUni ws="en">texture (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to giving something a certain texture?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5a8d99f2-b4ce-49ad-aa45-611951fa1022"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tri:bu</AUni> -<AUni ws="qvm-x-acl">tri:bu; tri:bu; tri:bo</AUni> -<AUni ws="qvm-x-akh">tri:bu</AUni> -<AUni ws="qvm-x-akl">tri:bu; tri:bu; tri:bo</AUni> -<AUni ws="qvm-x-ame">tri:bu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tribu</AUni> -<AUni ws="qvm-x-acl">+tribu</AUni> -<AUni ws="qvm-x-akh">+tribu</AUni> -<AUni ws="qvm-x-akl">+tribu</AUni> -<AUni ws="qvm-x-ame">+tribu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.980" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f5902b3a-2846-4456-9561-1c21ecd48b66" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tribu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3fde4613-ddcf-4f33-81e5-15a0ab7b13d2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0c7bf344-250b-4855-9133-90cab0ab538b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tribu 
\entryTyp root 
\gENG tribe 
\gSPN tribu 
\e +tribu 
\c N0 
\ach tri:bu 
\akh tri:bu 
\acl tri:bu / _# 
\acl tri:bu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tri:bo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tri:bu / _# 
\akl tri:bu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tri:bo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tri:bu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="5a8ff7bf-fa7d-4e2e-8531-bc0b902facee"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tipi</AUni> -<AUni ws="qvm-x-acl">tipi; tipe</AUni> -<AUni ws="qvm-x-akh">tipi</AUni> -<AUni ws="qvm-x-akl">tipi; tipe</AUni> -<AUni ws="qvm-x-ame">tipi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tipi.v</AUni> -<AUni ws="qvm-x-acl">*tipi.v</AUni> -<AUni ws="qvm-x-akh">*tipi.v</AUni> -<AUni ws="qvm-x-akl">*tipi.v</AUni> -<AUni ws="qvm-x-ame">*tipi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.916" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="94a41957-5520-42d0-92a0-e47e926e15e0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tipi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="15013026-30d0-41bb-a489-0d584909cbee" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9b00c347-ef1c-496c-89f0-3023cc1fb39f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tipi.v 
\entryTyp root 
\gENG pick 
\gSPN coger 
\e *tipi.v 
\c V2 
\mp +FinalI 
\ach tipi 
\akh tipi 
\acl tipi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tipe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tipi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tipe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tipi</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="5a9048b6-0b6a-464f-a6f2-ac7462e00633"> -<Analyses> -<objsur guid="e9746b92-864d-4a1e-8553-207d78261999" t="o" /> -</Analyses> -<Checksum val="-1866732886" /> -<Form> -<AUni ws="qvm-x-akh">markämi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="5a919000-e5cc-4f0a-a66d-44e0dfe070b5" ownerguid="167bfba5-0785-4bb5-a083-3ffbefa57897"> -<ExampleWords> -<AUni ws="en">referee, tester</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a person who evaluates?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5a9598fe-f168-482a-9205-39c1e7793435" ownerguid="ceedce41-cdef-4766-9c5e-8ff5608c5464"> -<ExampleWords> -<AUni ws="en">barn, granary, silo, grain sack</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What buildings and containers are used to store the harvest?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5a984f44-0cbc-41b6-b62a-a3475c754170" ownerguid="5c35c2f8-d17c-42a3-aa12-a4c29b6603e8"> -<ExampleWords> -<AUni ws="en">corrugate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to making many bends in something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5a9d3cff-60f4-4bdc-8fec-318a4ffbd92c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aldea</AUni> -<AUni ws="qvm-x-acl">aldea</AUni> -<AUni ws="qvm-x-akh">aldea</AUni> -<AUni ws="qvm-x-akl">aldea</AUni> -<AUni ws="qvm-x-ame">aldea</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+aldea</AUni> -<AUni ws="qvm-x-acl">+aldea</AUni> -<AUni ws="qvm-x-akh">+aldea</AUni> -<AUni ws="qvm-x-akl">+aldea</AUni> -<AUni ws="qvm-x-ame">+aldea</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.699" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6add3e52-8fee-4947-a3f9-45bfdac8d7c7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+aldea</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="002f7048-80df-4e85-931a-cae888fbcec9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="da6bd03e-cae8-40e1-b8c0-0dc0fe506ce8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +aldea 
\entryTyp root 
\gENG 
\gSPN 
\e +aldea 
\c N0 
\ach aldea 
\akh aldea 
\acl aldea 
\akl aldea 
\ame aldea</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5a9ef92c-9fe8-4633-ab0c-f091189d59d4" ownerguid="b8d2fdb9-22ea-4040-8abb-aeeff0399f23"> -<ExampleWords> -<AUni ws="en">kill yourself, commit suicide, take your own life, end it all, suicide, suicidal, be a suicide, do away with yourself</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to killing yourself?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5aa06c85-52a4-4c20-9593-12e0aa5723f5" ownerguid="8275c745-d129-4661-a70b-44c7799187ff"> -<Form> -<AUni ws="qvm-x-ach">jayta</AUni> -<AUni ws="qvm-x-acl">jayta</AUni> -<AUni ws="qvm-x-akh">jayta</AUni> -<AUni ws="qvm-x-akl">jayta</AUni> -<AUni ws="qvm-x-ame">hayta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="5aa2379c-17bd-4551-b679-1eae52aadaa4" ownerguid="62f3fd0b-ef3d-4b23-999e-06c0b290a67c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="be77dbc1-6dd2-4228-a1ba-e080f8b62db1" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">peace</AUni> -<AUni ws="es">tranquilidad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a99ceb76-9eb9-4701-b032-6736d3d93811" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="5ab32b27-7c50-498c-9b77-4b9a0d12c551" ownerguid="a3634e20-56c9-429a-9b29-fc52ef5f02ae"> -<Form> -<AUni ws="qvm-x-ach">calläju</AUni> -<AUni ws="qvm-x-acl">calläju</AUni> -<AUni ws="qvm-x-akh">calläju</AUni> -<AUni ws="qvm-x-akl">calläju</AUni> -<AUni ws="qvm-x-ame">calläju</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="5ab35d0b-871e-4ffc-8ff6-914ddc454db3" ownerguid="11773808-47d6-42f7-923d-16a368585d22"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="5ab7ea61-1562-49a9-80eb-407109270952" ownerguid="ee853949-a6a2-4735-97ca-ebeb2aa7ddaf"> -<Form> -<AUni ws="qvm-x-ach">tuclumpa</AUni> -<AUni ws="qvm-x-acl">tuclumpa</AUni> -<AUni ws="qvm-x-akh">tuklumpa</AUni> -<AUni ws="qvm-x-akl">tuklumpa</AUni> -<AUni ws="qvm-x-ame">tuklumpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5abb66bc-824c-485d-b49c-180f281235af" ownerguid="f02ae505-d6b7-4b30-9d97-8505d0d1a0c7"> -<ExampleWords> -<AUni ws="en">just, you know, OK, yeah, like</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What discourse markers are in your language?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="5abd1270-261a-4980-93e5-e10eacea99ad" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<Abbreviation> -<AUni ws="en">7.2.1.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.498" /> -<DateModified val="2022-9-23 16:55:8.498" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to jumping--moving your body off the ground by pushing hard with your legs.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15E' Jump, Leap x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Jump</AUni> -</Name> -<Questions> -<objsur guid="846486a1-4723-4c51-96c4-befeb47ece38" t="o" /> -<objsur guid="14cb58a2-138f-442a-b5a3-fa245ede55ee" t="o" /> -<objsur guid="4e800209-eaa5-4369-be1a-7f4b9bc68d9e" t="o" /> -<objsur guid="0e67bc0e-14e9-44e2-9c46-d45e1d014120" t="o" /> -<objsur guid="4f1ffda1-de2f-43eb-8252-4ac519f6630c" t="o" /> -<objsur guid="df9884f7-e430-4333-a677-b05b35c69786" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="5ac01377-a8cc-4ee7-bad1-e61e489d17de" ownerguid="a0ce1188-88d8-46a0-b675-df7f8400beaa"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5ac23764-3002-442b-b777-a55f4cede8a3" ownerguid="339f54a5-125b-435f-bf37-cfc2a2bd26d3"> -<ExampleWords> -<AUni ws="en">lick your lips, smack your lips, kiss, purse your lips</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to an expression using the mouth?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5ac3cb4d-76e4-43e0-90e9-e33a3755e800"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lamparín; lamparin</AUni> -<AUni ws="qvm-x-acl">lamparín; lamparin</AUni> -<AUni ws="qvm-x-akh">lamparín; lamparin</AUni> -<AUni ws="qvm-x-akl">lamparín; lamparin</AUni> -<AUni ws="qvm-x-ame">lamparín; lamparin</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lamparín</AUni> -<AUni ws="qvm-x-acl">+lamparín</AUni> -<AUni ws="qvm-x-akh">+lamparín</AUni> -<AUni ws="qvm-x-akl">+lamparín</AUni> -<AUni ws="qvm-x-ame">+lamparín</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.43" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3f011b07-c808-4010-b389-564cd379791f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lamparín</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c3db3c0f-04d2-48f1-8675-40c4f2598f74" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4a1df65d-e774-44ed-940d-ccd8be9b5789" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lamparín 
\entryTyp root 
\gENG lamp 
\gSPN lamparín 
\e +lamparín 
\c N0 
\mp +FinalC 
\ach lamparín / _# 
\ach lamparin / ~_# 
\akh lamparín / _# 
\akh lamparin / ~_# 
\acl lamparín / _# 
\acl lamparin / ~_# 
\akl lamparín / _# 
\akl lamparin / ~_# 
\ame lamparín / _# 
\ame lamparin / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5ac434a2-ea33-4673-85d8-a2e7d775fd74" ownerguid="c313c84c-fa1f-41f0-85fb-0362d86e10a1"> -<Form> -<AUni ws="qvm-x-ach">aliyä</AUni> -<AUni ws="qvm-x-acl">aliyä</AUni> -<AUni ws="qvm-x-akh">aliyä</AUni> -<AUni ws="qvm-x-akl">aliyä</AUni> -<AUni ws="qvm-x-ame">aliyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="5ac44306-212c-4eb9-94cd-6ee320d3933b"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">yanaqänakur</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="5ac5d114-c4a4-4d96-8797-18491a5bcab3" ownerguid="938698a1-c41b-42e7-abbd-eff126a79edb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lift</AUni> -<AUni ws="es">alzar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9c165202-6216-4149-aa4b-e80d0e311e17" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5ac8f063-0afd-491f-b244-fb31e34f53ee" ownerguid="80dc5ca1-44ce-4406-add8-2bbe19c122ab"> -<ExampleWords> -<AUni ws="en">studio, record company</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a person or company who makes recordings?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5ad117fc-a62a-4ce6-acb2-d17ac48a1d1f" ownerguid="84990520-e200-4390-a1b8-04ceb53c2918"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoAffixAllomorph" guid="5ad3e440-59dd-48a8-bd98-6f0e694d2cfc" ownerguid="c388c171-01b2-4a74-9854-5713e021a75a"> -<Form> -<AUni ws="qvm-x-ach">rgU</AUni> -<AUni ws="qvm-x-acl">rgU</AUni> -<AUni ws="qvm-x-akh">rqU</AUni> -<AUni ws="qvm-x-akl">rqU</AUni> -<AUni ws="qvm-x-ame">rqU</AUni> -</Form> -<IsAbstract val="True" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="5ad3fe4b-92e1-40eb-a339-dd2c3f915a90" ownerguid="1e159a3c-16cf-444d-ade8-cf66c98c1826"> -<Form> -<AUni ws="qvm-x-ach">sesión; sesion</AUni> -<AUni ws="qvm-x-acl">sesión; sesion</AUni> -<AUni ws="qvm-x-akh">sesión; sesion</AUni> -<AUni ws="qvm-x-akl">sesión; sesion</AUni> -<AUni ws="qvm-x-ame">sesión; sesion</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5ad4805a-0707-476f-a190-73c427d37385" ownerguid="9a7604b4-d42f-44b7-9aef-47847dc93f0b"> -<ExampleWords> -<AUni ws="en">suffering, ache, affliction, agony, distress, misery, pain, torment (n), torture (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the feeling of suffering?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5ad483c2-edd5-4ffd-b72c-09370a218933" ownerguid="0603c405-3d02-40c2-8da1-dc78c9d47ecf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">separate</AUni> -<AUni ws="es">separar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5f1fcdb2-7589-4084-b8e7-0460deac7e70" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5ad4adf0-e0fe-492f-9761-a25ce238a984" ownerguid="5d21b3f1-85d5-4999-af64-c4d0101050c0"> -<ExampleWords> -<AUni ws="en">humble</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something someone does that is humble?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5ad5a1e4-4dba-43f2-8be5-caa2ce6c3390" ownerguid="f76c3803-1c7a-4181-9a87-64ae7231a67d"> -<ExampleWords> -<AUni ws="en">here, hereabouts, hither, in this place, on this very spot, around here</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a place near the speaker?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5ada976b-651c-475f-8a0b-673b1b10c070"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gallu</AUni> -<AUni ws="qvm-x-acl">gallu; gallu; gallo</AUni> -<AUni ws="qvm-x-akh">qallu</AUni> -<AUni ws="qvm-x-akl">qallu; qallu; qallo</AUni> -<AUni ws="qvm-x-ame">qallu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qallu</AUni> -<AUni ws="qvm-x-acl">*qallu</AUni> -<AUni ws="qvm-x-akh">*qallu</AUni> -<AUni ws="qvm-x-akl">*qallu</AUni> -<AUni ws="qvm-x-ame">*qallu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.74" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7bc1ddcc-78ed-468f-92da-973272916113" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qallu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="37051288-2012-463e-bb5c-14a73f03950f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="73017852-fead-40e8-92f4-1e66ebdd79fc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qallu 
\entryTyp root 
\gENG tongue 
\gSPN lengua 
\e *qallu 
\c N0 
\ach gallu 
\akh qallu 
\acl gallu / _# 
\acl gallu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gallo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qallu / _# 
\akl qallu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qallo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qallu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="5adc4335-3adc-45af-9cdf-4dcd53f28e1d" ownerguid="846fa9e6-c821-4480-9778-aa19e89b1849"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 31.21 Raju rataptinpis manami laquicuntsu wayincho cagcunata ractay ractay jatipar.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="5adcc189-594b-4165-8965-0ddcf9408484" ownerguid="ed616c83-7e84-417f-9fae-85ecda72faf0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">andean fox</AUni> -<AUni ws="es">zorro andino</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4f38f5cc-d3e6-4773-8eda-ccc831a14c8d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="PhPhoneme" guid="5adde606-e77c-496c-9fb2-111a6b01e9fd" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<BasicIPASymbol> -<Str> -<Run ws="en">palatal lateral</Run> -</Str> -</BasicIPASymbol> -<Codes> -<objsur guid="14937ad5-e47a-46cd-8d04-caf8d726297f" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">Voiceless bilabial plosive</Run> -</AStr> -<AStr ws="es"> -<Run ws="es">Plosivo bilabial sordo</Run> -</AStr> -</Description> -<Name> -<AUni ws="qvm-x-ach">ll</AUni> -<AUni ws="qvm-x-acl">ll</AUni> -<AUni ws="qvm-x-akh">ll</AUni> -<AUni ws="qvm-x-akl">ll</AUni> -<AUni ws="qvm-x-ame">ll</AUni> -</Name> -</rt> -<rt class="CmDomainQ" guid="5ade33c6-4d4a-4b19-a087-950c886c3670" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<ExampleWords> -<AUni ws="en">metric</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What words describe a system of measures?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5adfc74e-5901-4c39-900d-9fabf01cc8bf" ownerguid="d6ff47e6-435b-47a3-ba95-c26a2619fd55"> -<Form> -<AUni ws="qvm-x-ach">tsegpa</AUni> -<AUni ws="qvm-x-acl">tsegpa</AUni> -<AUni ws="qvm-x-akh">tseqpa</AUni> -<AUni ws="qvm-x-akl">tseqpa</AUni> -<AUni ws="qvm-x-ame">tsiqpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="5ae4d5e8-0ee8-4a91-9866-e855f90bfef6" ownerguid="fbfcdae2-dd76-4bd7-93b2-8fdb495113ea"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="83f2a039-af33-42f4-81a4-cdac5f314a32" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5ae889d4-2a54-466e-80e4-78eda9a304c6" ownerguid="59a95939-44d7-4396-9ef7-3a80c17e9fb1"> -<ExampleWords> -<AUni ws="en">swear, curse, cuss</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to using obscenity?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5aeb2c56-3438-4a0b-b4a1-c77e9eb41d6d" ownerguid="756728a8-9eb8-4329-aee2-d6a3d64585f2"> -<ExampleWords> -<AUni ws="en">condense, condensation, dew, distill</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to gases changing into liquids?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="5aeba428-b0ee-4f74-9156-8f176def59d1" ownerguid="df96455e-7c76-4c28-b068-f6c3fc846d45"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="ca07312d-49a1-4d8c-8591-706cb7d5a595" t="r" /> -</Msa> -<Sense> -<objsur guid="a1eaf593-3379-47ea-bee4-15cbbda9775f" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="5aebb3ae-fff0-43ed-bc73-1c487e131d03" ownerguid="195bad5d-4c9a-40c4-b9aa-021b797f26af"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="8c2196f1-f919-4d61-bc24-8e0c7a39a151" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">prostrate</AUni> -<AUni ws="es">prostarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6db6ab9f-f824-44df-9643-4e00417aa710" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="5aef87aa-4ff2-467e-91e2-fe4ab02b4fa6" ownerguid="708ecb7c-6247-4a4b-84ba-f6b25c4f027f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="5aefe08f-c217-4a39-81ae-461d4d08983d" ownerguid="7b077388-eb2c-422d-9f37-2e74c8f0f05c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="5af03c53-f2e9-411b-ad74-f2074ac7e823" ownerguid="dcd450eb-28be-4834-9ab6-ae58b1827137"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="5af67a6a-6f24-49b5-b2d6-a4271cc7f14a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wiswi</AUni> -<AUni ws="qvm-x-acl">wiswi; wiswe</AUni> -<AUni ws="qvm-x-akh">wiswi</AUni> -<AUni ws="qvm-x-akl">wiswi; wiswe</AUni> -<AUni ws="qvm-x-ame">wiswi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wiswi.v</AUni> -<AUni ws="qvm-x-acl">*wiswi.v</AUni> -<AUni ws="qvm-x-akh">*wiswi.v</AUni> -<AUni ws="qvm-x-akl">*wiswi.v</AUni> -<AUni ws="qvm-x-ame">*wiswi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.699" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b54fa508-a1e3-4c32-96f4-aac816105bae" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wiswi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="87f68ae3-e8a8-4e6f-b72c-437f4d3d060e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="706e613d-ebe3-44a2-9d3c-5eb7816eff72" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wiswi.v 
\entryTyp root 
\gENG glisten 
\gSPN brillar 
\e *wiswi.v 
\c V1 
\mp +FinalI 
\ach wiswi 
\akh wiswi 
\acl wiswi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wiswe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wiswi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wiswe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wiswi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5af73003-9762-40f4-90eb-d64b63739977" ownerguid="07f3e3d0-92f8-4873-802a-1b033a5b9c3f"> -<Form> -<AUni ws="qvm-x-ach">unchu</AUni> -<AUni ws="qvm-x-acl">unchu; uncho</AUni> -<AUni ws="qvm-x-akh">unchu</AUni> -<AUni ws="qvm-x-akl">unchu; uncho</AUni> -<AUni ws="qvm-x-ame">unchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5afa69bc-38c8-4ca9-98d5-b284428e2f8b" ownerguid="362a2bdd-985e-4bc0-a41c-358bd1babb12"> -<ExampleWords> -<AUni ws="en">spy, agent, double agent, informant, informer, source</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What is a person called who spies?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5afca006-7293-446c-80b5-4fe4c93a6e69" ownerguid="78486b1a-d833-47ef-8a6f-6bed151539c0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">waist.loom</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="02cc25c7-dddd-4552-b509-79001d73bd54" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5afcba69-4d92-417a-806a-2014cf934634" ownerguid="7b816f6a-4b46-403d-a1a2-2914ee070568"> -<ExampleWords> -<AUni ws="en">present, now, right now, is (being/doing/happening), the present day, today</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the present?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5afe4e0c-f6db-4af9-b616-431470abb0e3" ownerguid="3c9fe647-2647-4f43-8bac-7facc054f7ff"> -<ExampleWords> -<AUni ws="en">move back and forth, rock, rock back and forth, wave, swing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving back and forth?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5aff7002-3582-40fa-a76e-db83ecc81e70" ownerguid="ca752706-1c9e-43e7-bd17-845c4736ccd8"> -<ExampleWords> -<AUni ws="en">loose, vague, hazy, impressionistic, broad</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words describe something that is approximately the same as another thing?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5b05f0b2-feac-4432-810f-1fbdc13961af" ownerguid="7ade32e9-68ed-4769-a59a-14558b85584a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="5b0652cd-a41d-4c02-b46b-b524cc9a7e75" ownerguid="b96cbdd1-ed70-471e-9836-5dea7202c88d"> -<Form> -<AUni ws="qvm-x-ach">gonta</AUni> -<AUni ws="qvm-x-acl">gonta</AUni> -<AUni ws="qvm-x-akh">qonta</AUni> -<AUni ws="qvm-x-akl">qonta</AUni> -<AUni ws="qvm-x-ame">qunta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5b080935-73ca-4dc2-9389-510dba94be60" ownerguid="e949f393-2a5b-4792-af8f-75138322ceee"> -<ExampleWords> -<AUni ws="en">wiry, sinewy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who is strong and thin?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5b0843d6-bd2e-400c-ae0a-9e277a95ba9e" ownerguid="e04b105d-9953-440d-8bc8-dca94eec22df"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="5b08e461-b967-4802-bc2e-c5cd7ce6b5f5" ownerguid="6b836eab-0b1e-425c-9f13-3e53a0b6f06b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="83d88833-1930-4256-a703-0b9dce35f55c" t="o" /> -<objsur guid="222e9145-f20b-4c21-9ec3-b2406acd6e56" t="o" /> -<objsur guid="000cf949-8308-4932-a9fd-803ec44527ae" t="o" /> -<objsur guid="eb0d97c1-eb45-4503-a156-d699c3a544d4" t="o" /> -<objsur guid="299e51d8-367a-4ace-abb8-63a7610080fd" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="5b0c9aa4-83aa-4711-9ddb-4a08d1e1c946" ownerguid="520cb0dd-0b70-49ec-ab70-d15efdf0c390"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">yes</AUni> -<AUni ws="es">sí</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3358f29f-13e7-4b8c-a04d-67a77d3e9b79" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5b0e8f7d-8c17-48e2-a851-32fedbd5fac3" ownerguid="0d972590-5947-4983-a092-443697baec24"> -<ExampleWords> -<AUni ws="en">to prune, to hoe, to plow, to pull a plow, to guide a plow, to use a shovel, to dig with a hoe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words are used with each of these tools?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="5b124e3c-fa78-4450-811d-111125ef6c38" ownerguid="163dc981-4a06-4228-83ae-c5ed6a2f6d0b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">NEH 13.4 Naupatanami cüra Eliasib compädrita rurargan Tobíastawan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="5b12ea7b-790f-4f3e-8d07-893fc267773e" ownerguid="b4aa4bbd-8abf-4503-96e4-05c75efd23d5"> -<Abbreviation> -<AUni ws="en">1.1.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.932" /> -<DateModified val="2022-9-23 16:55:7.932" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the clouds.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>1E Atmospheric Objects</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Cloud</AUni> -</Name> -<Questions> -<objsur guid="73784ef4-aea7-4fd5-aa2e-493d68356f7e" t="o" /> -<objsur guid="adacc72a-3893-4edc-9e59-5d278dac4bd0" t="o" /> -<objsur guid="fafc2567-58aa-4cc9-9da2-5d123bf47836" t="o" /> -<objsur guid="f325f76e-2beb-49d1-be9b-8a2ee1e3d1f0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="5b146ef5-e84b-4863-8075-8d9394ba0454"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">juti</AUni> -<AUni ws="qvm-x-acl">juti; jute</AUni> -<AUni ws="qvm-x-akh">juti</AUni> -<AUni ws="qvm-x-akl">juti; jute</AUni> -<AUni ws="qvm-x-ame">huti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*huti.v</AUni> -<AUni ws="qvm-x-acl">*huti.v</AUni> -<AUni ws="qvm-x-akh">*huti.v</AUni> -<AUni ws="qvm-x-akl">*huti.v</AUni> -<AUni ws="qvm-x-ame">*huti.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.771" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="77983496-bf92-4919-8186-ec174718f85e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*huti.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="19418d3e-9360-4259-84ea-c01ec8fa2272" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="871e6c62-7ae3-4c76-9ea3-a7f757d6016d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *huti.v 
\entryTyp root 
\gENG give.a.name 
\gSPN dar.nombre 
\e *huti.v 
\c V1 
\mp +FinalI 
\ach juti 
\akh juti 
\acl juti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl jute +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl juti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jute +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame huti 
\i juti+tsi 
\mcc *huti.v / ~_ AG 
\mcc *huti.v / ~_ 1 
\mcc *huti.v / ~_ 3 
\mcc *huti.v / ~_ IMPFV1</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5b17694c-ea2e-42bd-8f46-ef7e92452dc9" ownerguid="f718fc15-59b2-4b6a-a9e3-39b3e8d487d7"> -<ExampleWords> -<AUni ws="en">immature</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that has not yet finished growing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5b1a17cb-6672-4fcd-bf4f-b85e27418310" ownerguid="70f80041-af88-4521-9ebd-21d8f0b0d131"> -<ExampleWords> -<AUni ws="en">in front, ahead, up ahead</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that something is in front of you?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5b1b076d-b710-454f-a3f0-87466a70bd0d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">grampa</AUni> -<AUni ws="qvm-x-acl">grampa</AUni> -<AUni ws="qvm-x-akh">grampa</AUni> -<AUni ws="qvm-x-akl">grampa</AUni> -<AUni ws="qvm-x-ame">grampa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+grampa</AUni> -<AUni ws="qvm-x-acl">+grampa</AUni> -<AUni ws="qvm-x-akh">+grampa</AUni> -<AUni ws="qvm-x-akl">+grampa</AUni> -<AUni ws="qvm-x-ame">+grampa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.629" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2e6667f2-1f4a-4281-8b88-70fd70470161" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+grampa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f4604b17-a39b-406f-9ff8-cb0edeb0f5a5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="041023ce-b5da-465f-80ea-b42254288c70" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +grampa 
\entryTyp root 
\gENG staple 
\gSPN grampa 
\e +grampa 
\c N0 
\ach grampa 
\akh grampa 
\acl grampa 
\akl grampa 
\ame grampa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="5b1e0bfb-3f12-4e5e-9e9f-13f91752a853"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wilca</AUni> -<AUni ws="qvm-x-acl">wilca</AUni> -<AUni ws="qvm-x-akh">wilka</AUni> -<AUni ws="qvm-x-akl">wilka</AUni> -<AUni ws="qvm-x-ame">wilka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*willka</AUni> -<AUni ws="qvm-x-acl">*willka</AUni> -<AUni ws="qvm-x-akh">*willka</AUni> -<AUni ws="qvm-x-akl">*willka</AUni> -<AUni ws="qvm-x-ame">*willka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.658" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f5ccca74-7fd0-4f66-90de-6520d469aeca" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*willka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="40f30c0a-9a61-4a72-ac2c-ab8393f5ba8c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="25315671-13d9-4c95-b04e-2234f7bf7e39" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *willka 
\entryTyp root 
\gENG grandchild 
\gSPN nieto 
\e *willka 
\c N0 
\ach wilca 
\akh wilka 
\acl wilca 
\akl wilka 
\ame wilka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="5b1f9d8e-5ac6-4c09-887c-03e11aa2e070"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">diez</AUni> -<AUni ws="qvm-x-acl">diez</AUni> -<AUni ws="qvm-x-akh">diez</AUni> -<AUni ws="qvm-x-akl">diez</AUni> -<AUni ws="qvm-x-ame">diez</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+diez</AUni> -<AUni ws="qvm-x-acl">+diez</AUni> -<AUni ws="qvm-x-akh">+diez</AUni> -<AUni ws="qvm-x-akl">+diez</AUni> -<AUni ws="qvm-x-ame">+diez</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.406" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6b84fce3-1f11-4345-b61e-8b126101119f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+diez</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9eaa5e3f-c40a-4e8f-a63f-de486cf9ad17" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b0aad3e0-4a33-4a77-999f-080559a47793" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +diez 
\entryTyp root 
\gENG ten 
\gSPN diez 
\e +diez 
\c N0 
\mp +FinalC 
\ach diez 
\akh diez 
\acl diez 
\akl diez 
\ame diez</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="5b20a534-6bfd-49fc-867e-40acf541aa98" ownerguid="4cefadbd-33c2-4397-bf5a-687d0600043f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="5b223347-0605-4a88-9745-f71aa4e1f320"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">golmi</AUni> -<AUni ws="qvm-x-acl">golmi; golmi; golme</AUni> -<AUni ws="qvm-x-akh">qolmi</AUni> -<AUni ws="qvm-x-akl">qolmi; qolmi; qolme</AUni> -<AUni ws="qvm-x-ame">qulmi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qullmi</AUni> -<AUni ws="qvm-x-acl">*qullmi</AUni> -<AUni ws="qvm-x-akh">*qullmi</AUni> -<AUni ws="qvm-x-akl">*qullmi</AUni> -<AUni ws="qvm-x-ame">*qullmi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.841" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0c71816e-29da-4aac-94f8-9b64940ee60e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qullmi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c124469a-09f2-45cf-97ad-10fc3dd096d7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9401e10d-4d5d-41b8-b2c5-95ad1cd3fea8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qullmi 
\entryTyp root 
\gENG toasted (w/o grease) 
\gSPN tostado (sin grasa) 
\e *qullmi 
\c N0 
\mp +FinalI 
\ach golmi 
\akh qolmi 
\acl golmi / _# 
\acl golmi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl golme +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qolmi / _# 
\akl qolmi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qolme +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qulmi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5b2888c4-dfb9-4e76-91c2-14f45332626d" ownerguid="30b3faa8-747e-465f-833a-a9957a259be2"> -<ExampleWords> -<AUni ws="en">set aside, put aside, separate from the others, keep separate, keep special, reserve, pull out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to taking something away and putting it aside, separate from the others?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5b317f6e-ffb9-4f59-a8ee-45b1984b4f30" ownerguid="cfe9b0c6-238f-495b-8a73-709a6c2e551e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tent</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="142b80f3-fdf2-4197-803b-a5f1ff3fdaa9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5b34ff73-7fe6-46bc-8106-7fcdb81536ba" ownerguid="3cb4c07c-8760-4ff9-8d45-1c0bed80ffb3"> -<ExampleWords> -<AUni ws="en">conceive, conception, become pregnant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a woman becoming pregnant?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5b38d7ac-5dec-44d7-9f44-3d1d0179fa75" ownerguid="928741b5-bff6-4dd1-be37-ec6e7a4eb6ca"> -<ExampleWords> -<AUni ws="en">peninsula, promontory, cape</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a peninsula?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5b399ba2-14b0-4c69-a8e0-2df37b88d6e0" ownerguid="cb55f90f-9917-42c8-9c81-5a250c8a08b7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">the</AUni> -<AUni ws="es">la</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="146d739e-dae6-4f68-8039-50bc89a5ae6b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5b39b650-7475-4958-8653-9c3f4389a28b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">japshi</AUni> -<AUni ws="qvm-x-acl">japshi; japshi; japshe</AUni> -<AUni ws="qvm-x-akh">japshi</AUni> -<AUni ws="qvm-x-akl">japshi; japshi; japshe</AUni> -<AUni ws="qvm-x-ame">hapshi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hapshi.n</AUni> -<AUni ws="qvm-x-acl">*hapshi.n</AUni> -<AUni ws="qvm-x-akh">*hapshi.n</AUni> -<AUni ws="qvm-x-akl">*hapshi.n</AUni> -<AUni ws="qvm-x-ame">*hapshi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.670" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1e233c11-4703-457a-92c3-3d19c45729b1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hapshi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9f8e38f6-f079-49ef-8b2f-b479bd162597" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5d2f1d7a-d1b2-4735-8358-b84ad48485ae" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hapshi.n 
\entryTyp root 
\gENG loose 
\gSPN suelto 
\e *hapshi.n 
\c N0 
\mp +FinalI 
\ach japshi 
\akh japshi 
\acl japshi / _# 
\acl japshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl japshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl japshi / _# 
\akl japshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl japshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hapshi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="5b3b77dc-0773-482d-a906-edb842914a6c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">juchu</AUni> -<AUni ws="qvm-x-acl">juchu; juchu; jucho</AUni> -<AUni ws="qvm-x-akh">juchu</AUni> -<AUni ws="qvm-x-akl">juchu; juchu; jucho</AUni> -<AUni ws="qvm-x-ame">huchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hutru</AUni> -<AUni ws="qvm-x-acl">*hutru</AUni> -<AUni ws="qvm-x-akh">*hutru</AUni> -<AUni ws="qvm-x-akl">*hutru</AUni> -<AUni ws="qvm-x-ame">*hutru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.771" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7f636f39-d70f-4513-91c8-00e021e2b066" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hutru.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="658e88f6-7dd0-44bd-b964-2a49bcb92fca" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="443c75ec-e77f-449e-b5e6-9094f8287d87" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hutru.n 
\entryTyp root 
\gENG landslide 
\gSPN derrumbe 
\e *hutru.n 
\c N0 
\ach juchu 
\akh juchu 
\acl juchu / _# 
\acl juchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl jucho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl juchu / _# 
\akl juchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl jucho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame huchu 
\mcc *hutru.n / ~_... PRT1</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="5b3c7b4d-d5bb-488e-8f3f-fe8206fb0e55" ownerguid="d6c29733-beeb-4fc9-975f-5e78a8acc273"> -<Abbreviation> -<AUni ws="en">6.1.2.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.350" /> -<DateModified val="2022-9-23 16:55:8.350" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being careful.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Careful</AUni> -</Name> -<Questions> -<objsur guid="7df245ce-62d2-44ee-8360-ae23c56233c1" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="26bc089a-a989-4763-be6c-05d127d1c0e8" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="5b3e8958-06b8-428d-95bb-a6979f3db7e5" ownerguid="b355b744-58b3-4741-b357-f16a481fe886"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">remove</AUni> -<AUni ws="es">quitar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3061cd4c-dc5e-434e-aa7d-8ea86ef932ef" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="5b416b99-469b-4c18-af5d-9b3303ea1a44" ownerguid="25382909-4325-49d2-8295-22e02f377ddc"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="5b41c1ed-95bb-4cca-8cff-87361acb5683" ownerguid="8a11e609-e88d-4247-8c5f-224ddb20de10"> -<Abbreviation> -<AUni ws="en">5.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.327" /> -<DateModified val="2022-9-23 16:55:8.327" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to traditional clothing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Traditional clothing</AUni> -</Name> -<Questions> -<objsur guid="9f443ae6-eb20-41d5-8084-64e39dcb6aa8" t="o" /> -<objsur guid="e9df03b5-83cc-46cc-85c2-077dff45373e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="5b4351f0-b277-4618-9e06-57b98721db7b" ownerguid="6c54f0b0-b056-4090-b3f0-d5ec6710d4ab"> -<ExampleWords> -<AUni ws="en">low-lying, depressed, depression</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe a surface that is lower than the area around it?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5b46528f-4ec8-430f-babd-c51f4f0144fb" ownerguid="c6c772af-7b6b-4393-b0da-5b4a329d3426"> -<ExampleWords> -<AUni ws="en">extent, incidence, level, rate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the amount of a problem such as crime or damage?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5b484f18-2b64-44ed-8359-72507819e703" ownerguid="0a3c4ad4-5c0e-4a68-8a67-f4e6d2191140"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="5b49c2ef-3a88-4546-91a9-1ec9d763c505" ownerguid="befe69ac-c954-4251-b28e-b4c8b1a207ac"> -<Form> -<AUni ws="qvm-x-ach">chuchu</AUni> -<AUni ws="qvm-x-acl">chuchu; chucho</AUni> -<AUni ws="qvm-x-akh">chuchu</AUni> -<AUni ws="qvm-x-akl">chuchu; chucho</AUni> -<AUni ws="qvm-x-ame">chuchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="5b4b7618-83ad-4adb-88bf-d6580c9de3be"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">latqui</AUni> -<AUni ws="qvm-x-acl">latqui; latque</AUni> -<AUni ws="qvm-x-akh">latki</AUni> -<AUni ws="qvm-x-akl">latki; latke</AUni> -<AUni ws="qvm-x-ame">latki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llatki</AUni> -<AUni ws="qvm-x-acl">*llatki</AUni> -<AUni ws="qvm-x-akh">*llatki</AUni> -<AUni ws="qvm-x-akl">*llatki</AUni> -<AUni ws="qvm-x-ame">*llatki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.174" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="075e5d21-c3cd-4e90-9dbe-3f064957dea2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llatki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fc3bec91-0d75-4951-880d-ba139fa7d063" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e12d6a15-7304-4b78-a533-bd30adf21101" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llatki 
\entryTyp root 
\gENG split 
\gSPN quebrar 
\e *llatki 
\c V1 
\mp +FinalI 
\ach latqui 
\akh latki 
\acl latqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl latque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl latki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl latke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame latki</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5b4c9ab3-e1a4-4510-8307-ceeffd0a1d69" ownerguid="bfa3be74-0390-4e2e-bdb7-ed41eb67e4f1"> -<ExampleWords> -<AUni ws="en">rainbow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to a rainbow?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5b4d0173-f090-446c-8070-ba62ef38959d" ownerguid="b0905fa9-2f90-410b-8eb5-7c7944c4f0f9"> -<ExampleWords> -<AUni ws="en">prostitute, hooker, call-girl, harlot, whore, rent boy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to a prostitute?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5b4d4a5a-4457-4df1-8338-bb7f4ad489ff" ownerguid="b31493a6-9a83-43f3-9e17-07f12d01fe2e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">whip</AUni> -<AUni ws="es">chicote</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b8ff35f7-7dc1-45f7-9c7f-82dd375f63d0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5b506a53-d84e-4953-911e-4aa79e251b89" ownerguid="a72ca6f7-e389-408a-8276-fec4d60a3a56"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Your idea <is> good.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">be, represent, amount to, form, make, constitute</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to something being something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5b5af92e-2da5-4d16-9352-36a418524518" ownerguid="44ed48bc-633d-43d2-8aa6-fd1a2b7e04ef"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="5b5bcd42-09bb-4c2f-a2da-569cfa69b6ac" ownerguid="a2508183-7ea5-434e-a773-00d53087d27b"> -<Abbreviation> -<AUni ws="en">3.1.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.94" /> -<DateModified val="2022-9-23 16:55:8.94" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a mental state when the mind is working hard.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>27F Be Ready To Learn, Pay Attention</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Attention</AUni> -</Name> -<Questions> -<objsur guid="3b79e58c-baa4-413c-b675-02c8bc50ae53" t="o" /> -<objsur guid="f554f52e-a76e-4526-9462-d586eb585a9a" t="o" /> -<objsur guid="9218655f-7474-431f-9521-eb76be2a9cae" t="o" /> -<objsur guid="53755733-450d-4202-bc28-6d6345a8aa75" t="o" /> -<objsur guid="04983412-ce11-4714-a277-109085954525" t="o" /> -<objsur guid="8c250335-a5c9-4f76-bea9-2044ae007bfc" t="o" /> -<objsur guid="ebb3a689-bed1-43a0-bd14-e189fd63c395" t="o" /> -<objsur guid="15752a64-a32f-443c-be2c-5a754f4485ca" t="o" /> -<objsur guid="82ef47dc-4dae-43b5-ae8a-3fa22a0d2d4b" t="o" /> -<objsur guid="7f75bf48-197e-4cde-895a-d6db76387aba" t="o" /> -<objsur guid="21f17d32-a075-47c0-a237-9965da31c3f9" t="o" /> -<objsur guid="27fff73c-45cd-46f5-afca-689034f533c7" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="f9d020d6-b129-4bb8-9509-3b4a6c27482e" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="5b5e6818-ede9-4980-bb47-6cb17453f7dc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">machu</AUni> -<AUni ws="qvm-x-acl">machu; machu; macho</AUni> -<AUni ws="qvm-x-akh">machu</AUni> -<AUni ws="qvm-x-akl">machu; machu; macho</AUni> -<AUni ws="qvm-x-ame">machu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*matru</AUni> -<AUni ws="qvm-x-acl">*matru</AUni> -<AUni ws="qvm-x-akh">*matru</AUni> -<AUni ws="qvm-x-akl">*matru</AUni> -<AUni ws="qvm-x-ame">*matru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.366" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a7aefd14-13a2-4875-9137-aa8e90d48cc8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*matru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d6625930-9a70-4aa1-9d3b-14e1fadeca7a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3050f906-7d12-49b7-9303-99d5ae237935" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *matru 
\entryTyp root 
\gENG machu 
\gSPN machu 
\e *matru 
\c N0 
\ach machu 
\akh machu 
\acl machu / _# 
\acl machu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl macho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl machu / _# 
\akl machu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl macho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame machu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiGloss" guid="5b5f779a-bf1f-4829-940a-4e441743ee16" ownerguid="0ca0a9a5-fa82-4472-a3e3-6034fc2c7fc9"> -<Form> -<AUni ws="en">what</AUni> -<AUni ws="es">qué</AUni> -</Form> -</rt> -<rt class="LexSense" guid="5b61f5ca-50c9-43e9-8dde-68827919c031" ownerguid="c658f7a8-db8b-45a3-902f-dbb4631b50ed"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">male</AUni> -<AUni ws="es">varón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="282270ab-a085-45f8-a4c6-d62fc91e425a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="5b647078-a690-4c7b-9825-4ee3c6f6724f" ownerguid="e2dc2403-1222-4fb6-8053-7b210bfe527d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5b67fda2-e2bd-407b-afd2-c8ff4a458322" ownerguid="1c3c8af0-56b9-4617-862e-21f39b388606"> -<ExampleWords> -<AUni ws="en">die for, give your life, lay down your life, martyr</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to dying to save someone?</AUni> -</Question> -</rt> -<rt class="Segment" guid="5b6c622a-7c5e-47e2-acfa-7e97faa7e841" ownerguid="7827027b-b7fa-42f7-a39e-86427a7acc12"> -<Analyses> -<objsur guid="dbd9486d-02ba-4bc8-a086-f3bcc14d43ba" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="CmDomainQ" guid="5b7279be-896b-4bea-94ae-edeefe786232" ownerguid="80bcbc99-3c85-46d6-b15c-895367231747"> -<ExampleWords> -<AUni ws="en">in place, in the proper place, in your place, out of place</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something or someone is in the correct or expected place?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5b735fc7-fbe0-4a65-a793-dacd7de7c9d5" ownerguid="1bca5864-77c6-4502-9f76-b8b87f931c27"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="83f882ec-68b3-469e-81de-8311d446f12a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="5b7487ce-7d91-4b8a-a1df-4bac7a860b71" ownerguid="d5e16822-3fec-4d8d-b2cb-baec268f95e3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="5b74d5cd-6704-47bb-b352-3e813c31d6e2" ownerguid="0d841adc-1ffd-4cba-9751-88d787e8086a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fat</AUni> -<AUni ws="es">grasa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7a37d70c-b227-4e5e-b425-94340b991719" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="5b7666bd-c6c1-45e7-aa2e-1799fcb16d97" ownerguid="349f0278-7998-422a-9c3b-6053989cbb20"> -<Abbreviation> -<AUni ws="en">9.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.720" /> -<DateModified val="2022-9-23 16:55:8.720" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to proper nouns--the name given to a particular person or thing to distinguish it from other things like it. Proper nouns are often not included in a dictionary, or are included in an appendix at the front or back of a dictionary. This is because there are so many of them, they are sometimes difficult to define, and it saves space in the dictionary. For instance place names can be included in a map. So it might be good to type the proper nouns into a special file.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>93 Names of Persons and Places</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Name</AUni> -</Name> -<Questions> -<objsur guid="b3a52454-c88b-4a11-9478-a21a6aa5e2bb" t="o" /> -<objsur guid="97ae18cb-5bf7-4d96-b653-37753a27fd08" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="7b513a02-c3ae-4243-9410-16854d911258" t="o" /> -<objsur guid="69541573-f845-4e77-91f6-1e3551fc6c82" t="o" /> -<objsur guid="7d111356-e04e-4891-960c-2f35147eba82" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="5b76f273-a20a-4961-92b5-0472392eb23b" ownerguid="d7cd6668-9bae-4d42-bca4-f870f4885424"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -<Sense> -<objsur guid="ed102c60-ed6d-498f-b2c4-a195d53a84e2" t="r" /> -</Sense> -</rt> -<rt class="CmRow" guid="5b786787-2977-4103-9d71-3e38c636b1b0" ownerguid="bb744a7a-ea5e-11de-881b-0013722f8dec"> -<Cells> -<objsur guid="cc15dfa6-a574-4099-8ed4-4adca765677f" t="o" /> -</Cells> -</rt> -<rt class="CmDomainQ" guid="5b79c964-4200-434b-bbd8-04be401aadfd" ownerguid="ddc96103-4bc5-44d3-9412-c57569d2a9f5"> -<ExampleWords> -<AUni ws="en">festival, show, spectacle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to a festival?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5b7b15b7-233f-4c40-a4f8-3d269b599087" ownerguid="1ec14648-c92e-4ac1-8649-0e9f54e0136f"> -<Form> -<AUni ws="qvm-x-ach">turi</AUni> -<AUni ws="qvm-x-acl">turi; turi; ture</AUni> -<AUni ws="qvm-x-akh">turi</AUni> -<AUni ws="qvm-x-akl">turi; turi; ture</AUni> -<AUni ws="qvm-x-ame">turi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="5b7bc810-8ce2-4cf3-b304-d5b77c7b6b84" ownerguid="e74d0d95-ce52-46f8-9f6d-67c48695bd1f"> -<Form> -<AUni ws="qvm-x-ach">barriu; barrio</AUni> -<AUni ws="qvm-x-acl">barriu; barriu; barrio</AUni> -<AUni ws="qvm-x-akh">barriu; barrio</AUni> -<AUni ws="qvm-x-akl">barriu; barriu; barrio</AUni> -<AUni ws="qvm-x-ame">barriu; barrio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="5b7de51a-a16a-459e-8d2f-876f761ee7e0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jagru</AUni> -<AUni ws="qvm-x-acl">jagru; jagru; jagro</AUni> -<AUni ws="qvm-x-akh">jaqru</AUni> -<AUni ws="qvm-x-akl">jaqru; jaqru; jaqro</AUni> -<AUni ws="qvm-x-ame">haqru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*haqru</AUni> -<AUni ws="qvm-x-acl">*haqru</AUni> -<AUni ws="qvm-x-akh">*haqru</AUni> -<AUni ws="qvm-x-akl">*haqru</AUni> -<AUni ws="qvm-x-ame">*haqru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.678" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f4ba5fd3-6c34-4a57-b691-18ef2517887a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*haqru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4d4fbcca-5265-46f4-bd3c-514a35d95aee" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e6fa4e25-b865-485d-82ce-bf025c41bd4d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *haqru 
\entryTyp root 
\gENG roof.of.mouth 
\gSPN paladar 
\e *haqru 
\c N0 
\ach jagru 
\akh jaqru 
\acl jagru / _# 
\acl jagru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl jagro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jaqru / _# 
\akl jaqru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl jaqro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame haqru</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5b831332-1dec-4a6c-913e-71034476af1b" ownerguid="15589482-d0ee-4b8d-9d9e-f76da3eefaab"> -<Form> -<AUni ws="qvm-x-ach">primer</AUni> -<AUni ws="qvm-x-acl">primer</AUni> -<AUni ws="qvm-x-akh">primer</AUni> -<AUni ws="qvm-x-akl">primer</AUni> -<AUni ws="qvm-x-ame">primer</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="5b866b03-0517-449f-855a-66feee71e0a2" ownerguid="1b8adb92-b5e5-4408-bf9c-2ff8c6454755"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ku</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ku</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b952a19-fce6-44e5-ab25-c091ef27f843" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="5b86ec50-08cd-49ac-afa7-3fee921fbb4f" ownerguid="ecc39bc2-6336-48ca-be46-cf5e49a3c267"> -<ExampleWords> -<AUni ws="en">insect, bug</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to insects?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5b887804-7d27-4127-95cd-bb4d7e1132fb" ownerguid="eaa8aa46-b632-48a0-a7fb-b8ef4b7dcc4e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">one</AUni> -<AUni ws="es">una</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="42f241ab-188e-4562-abac-21bd54714ba5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="5b88f253-91cb-4b91-8417-a094e25beafc" ownerguid="6a4508b4-c05d-4b1d-851f-455d62cb2d78"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="5b8df12b-80d7-4ade-b193-cf713f5b8eb4" ownerguid="70f47508-b668-4214-8811-d90c6ff8c133"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" t="r" /> -</Morph> -<Msa> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="5b9046d5-bca3-4092-ab90-6d5f30f385a6" ownerguid="f7055198-136a-4ef8-9faa-9b1d0bfced5a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">ramäda</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dd87e268-0724-4645-8e21-e925831e9393" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="5b925ee1-82ef-4692-bba2-9ce3cb41c7bb" ownerguid="7c80f6ee-e76d-4903-aee6-7a33d1da3f75"> -<Abbreviation> -<AUni ws="en">7.3.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to uncovering something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Uncover</AUni> -</Name> -<Questions> -<objsur guid="fb616132-d5b9-4803-baf6-ce582d3d0eaf" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="5b93a6b2-6957-42d8-a8c9-74b025f63bcb" ownerguid="21113dbe-2d87-4c6b-b681-c8a66bc8aafe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">scoop</AUni> -<AUni ws="es">servir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b99ab801-6b4b-46c4-a636-1add64dd477e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="PunctuationForm" guid="5b93d55c-643d-494a-9ffc-b58a2168df2b"> -<Form> -<Str> -<Run ws="en">tes</Run> -</Str> -</Form> -</rt> -<rt class="LexExampleSentence" guid="5b947597-4a62-4874-95f7-d149e411915f" ownerguid="09cb5203-bb61-46c4-9a6d-47a052f42798"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Deu 7.5 Asera ïdulunta y waquin ïduluncunatapis ninaman waycur ushapäcunqui.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="5b96e063-203f-40d1-a34e-6a641a4ddfbb" ownerguid="e5a83d8b-9b46-426d-b9a6-85992dfd0fcd" /> -<rt class="LexExampleSentence" guid="5b97f556-7799-4387-aef1-34aecd05feac" ownerguid="353d5ac5-8fe4-4ec0-b962-faf432ab5820"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 8.17 <<Papänë Davidga yäracushgantsi \nd Tayta Diospag\nd* achpitayparagmi templuta ruratsiyta munargan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="5b98b357-078e-4492-9c6f-d5c47c209005" ownerguid="161dd1e0-cb7d-404e-9a68-4adcedb7ec23" /> -<rt class="LexSense" guid="5b98da65-3f75-466a-a009-f92b8d5aa401" ownerguid="38b24d20-6502-4cdf-98d5-f507d81b632d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">goad</AUni> -<AUni ws="es">picar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d5b5ab36-aab1-4d71-8fdd-ea09a3d23523" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="5b9b30eb-486b-40e3-9d46-728bf203dd76" ownerguid="24609324-c073-405b-a4ba-d1bb46127695" /> -<rt class="MoStemAllomorph" guid="5b9c1b3e-2b71-4beb-a06c-9e3ae396c32f" ownerguid="cc02c930-5692-4eaa-af3f-2bc5210eda20"> -<Form> -<AUni ws="qvm-x-ach">ultraja</AUni> -<AUni ws="qvm-x-acl">ultraja</AUni> -<AUni ws="qvm-x-akh">ultraja</AUni> -<AUni ws="qvm-x-akl">ultraja</AUni> -<AUni ws="qvm-x-ame">ultraja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5b9ccfc8-2ba1-4288-a3a6-d146573ebfa0" ownerguid="7831223b-e5ed-4186-a321-94e9ae72a27d"> -<ExampleWords> -<AUni ws="en">pass, pitch, bowl, peg</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to throwing a ball when playing a game?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="5b9e7504-0b50-4041-b4f2-c46c0f9fd854" ownerguid="58d5e19b-fb9e-4708-9e5e-f7fa22ef4bdd"> -<Category> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</Category> -<Evaluations> -<objsur guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="82fafd48-412b-4c2a-8236-e622df13f9d8" t="o" /> -<objsur guid="87cd4f4c-0860-4eb8-a192-2a51ae2c3a83" t="o" /> -<objsur guid="3dd12591-d9fc-48ac-be53-a7ebf1ec4019" t="o" /> -<objsur guid="3a47f175-c648-4fb9-87b7-05719db084fa" t="o" /> -<objsur guid="f12f6228-d736-4b98-a31d-6b1bfe51b93e" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="5ba3a587-02f5-4f14-a8ef-c3f2826be651" ownerguid="96a1ad48-1a70-425b-bd20-59294902581f"> -<ExampleWords> -<AUni ws="en">gesture (v), gesticulate, sign (v), make a sign, signal, give the signal, beckon, indicate, motion, nod, non-verbal, shrug, nudge, wave, wink, thumb your nose at</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to gesturing?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5ba5323f-da9c-4a1b-a576-036f4faf139e" ownerguid="7337c37d-13e2-40b0-a5d2-b31be4b66423"> -<Form> -<AUni ws="qvm-x-ach">chipchipya; chipchipyä</AUni> -<AUni ws="qvm-x-acl">chipchipya; chipchipyä</AUni> -<AUni ws="qvm-x-akh">chipchipya; chipchipyä</AUni> -<AUni ws="qvm-x-akl">chipchipya; chipchipyä</AUni> -<AUni ws="qvm-x-ame">chipchipya; chipchipyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="5bab65d1-8748-470e-83dc-aaf7dde77c14" ownerguid="e3015f05-b105-4367-9d50-0e4ddef8ce6c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="5babb57c-3637-494d-9d45-14babc1b4b3f" ownerguid="3a69f8eb-eb96-4a29-b349-921314550427"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="5bb18e87-a1a8-4fb5-99fb-463a01033f27" ownerguid="7648040b-0aa5-4d9a-8f13-ffd066b81602"> -<ExampleWords> -<AUni ws="en">is, measure (v), long, in length, how long, be (two inches) (too) long</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words indicate how long something is?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="5bb29704-fe0f-4594-9622-ce0aa42b93c8" ownerguid="c82fa28f-7e26-489e-a244-4d69cea87b94"> -<Abbreviation> -<AUni ws="en">6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.381" /> -<DateModified val="2022-9-23 16:55:8.381" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to agriculture--working with plants.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>43 Agriculture</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Agriculture</AUni> -</Name> -<OcmCodes> -<Uni>240 Agriculture; 242 Agricultural Science</Uni> -</OcmCodes> -<Questions> -<objsur guid="cf67547c-f52d-4e13-a4c3-efa72d680421" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="025da6f4-b1b6-423a-8c0f-b324f531a6f1" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="cb362fc7-b3aa-46f4-b9a8-0f8c97fb16fe" t="o" /> -<objsur guid="d345142f-d51e-4023-a25a-2a4c0f1fbcbf" t="o" /> -<objsur guid="be280123-dda6-49a0-bd8c-5e2855b56159" t="o" /> -<objsur guid="811e8c93-d97a-4aab-bd67-268b7783ff11" t="o" /> -<objsur guid="c2630384-2f72-4a96-baed-3fff03383362" t="o" /> -<objsur guid="8080c7ed-e69a-4a8a-bd8d-bf3447b13630" t="o" /> -<objsur guid="ff9dfc70-526d-405e-b613-5a2a21c1b2d8" t="o" /> -<objsur guid="0d972590-5947-4983-a092-443697baec24" t="o" /> -<objsur guid="c7990233-ef2e-4ea6-8d1e-ccf56e540394" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="5bb495a5-ab5b-4409-8cd1-e48b56401fad" ownerguid="c2b720f5-1123-446e-9f60-088a3272b889"> -<Abbreviation> -<AUni ws="en">8.4.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.640" /> -<DateModified val="2022-9-23 16:55:8.640" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a short time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">A short time</AUni> -</Name> -<Questions> -<objsur guid="3dfb3260-8651-42b3-9732-3721502052a1" t="o" /> -<objsur guid="8fdd20a5-9e33-4c68-85c6-1820a643f7fb" t="o" /> -<objsur guid="83491579-ff34-4b35-804c-8df32d4f9823" t="o" /> -<objsur guid="dd8adfd8-095c-4127-bc2f-da32369fd51f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="5bb4edd4-b9d7-4a6c-b32f-f6dfa86ad9f8" ownerguid="bfa3be74-0390-4e2e-bdb7-ed41eb67e4f1"> -<ExampleWords> -<AUni ws="en">pitter-patter, drum, drip drip</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What sound does the rain make?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5bb6f3ce-7077-470b-a8f8-30db92e362b3" ownerguid="24398eec-edd1-449a-ad36-d609be24a79e"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Hold: John <has> the key in his pocket.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">have, be with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to having something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5bb78c58-bd21-4487-883a-70b8236291c8" ownerguid="c01bbcef-7d89-4753-bafd-3a7f23648982"> -<ExampleWords> -<AUni ws="en">specialist, consultant, allergist, anesthesiologist, anesthesiology, cardiologist, cardiology, chiropractor, chiropractic, dermatologist, dermatology, endocrinologist, endocrinology, epidemiology, gastroenterologist, gastroenterology, gynecologist, gynecology, hematology, histology, homeopathist, homeopathy, immunologist, immunology, neonatologist, neonatology, nephrologist, nephrology, neurologist, neurology, obstetrician, obstetrics, oncologist, oncology, ophthalmologist, orthopedist, orthopedic surgeon, orthopedics, pediatrician, pediatrics, plastic surgeon, podiatry, proctologist, radiation oncologist, radiologist, radiology, radiotherapy, rheumatologist, rheumatology, surgeon, surgery, urologist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to medical specialists and their branch of medicine?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5bba45fd-f643-4406-b833-c54b0be3d87c" ownerguid="e4498a24-096e-47e6-ab99-d60a5cb19826"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ripen</AUni> -<AUni ws="es">madurar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="96dcaf59-afc7-49ae-89fc-87ea94015583" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="5bbbe4d9-5a42-4ace-878c-df57c394c662" ownerguid="d460d260-0885-4a03-9046-253a46eae929" /> -<rt class="LexEntry" guid="5bc2e45f-8a32-4142-b829-8de692a91294"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">llena</AUni> -<AUni ws="qvm-x-acl">llena</AUni> -<AUni ws="qvm-x-akh">llena</AUni> -<AUni ws="qvm-x-akl">llena</AUni> -<AUni ws="qvm-x-ame">llena</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+llena</AUni> -<AUni ws="qvm-x-acl">+llena</AUni> -<AUni ws="qvm-x-akh">+llena</AUni> -<AUni ws="qvm-x-akl">+llena</AUni> -<AUni ws="qvm-x-ame">+llena</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.184" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="75f569cf-3eb0-4f14-8ad7-19760546ef6d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+llena</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="77f2bf77-9159-4f66-a24b-98814fe6f289" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7602cc30-22c3-4de0-b593-de4d585b62a1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +llena 
\entryTyp root 
\gENG 
\gSPN 
\e +llena 
\c N0 
\ach llena 
\akh llena 
\acl llena 
\akl llena 
\ame llena 
\i PRO 7.20 Llena quillachöragmi cutimonga.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="5bcb91f8-4679-4054-8878-eb33e05eeb76"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ta:za</AUni> -<AUni ws="qvm-x-acl">ta:za</AUni> -<AUni ws="qvm-x-akh">ta:za</AUni> -<AUni ws="qvm-x-akl">ta:za</AUni> -<AUni ws="qvm-x-ame">ta:za</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+taza</AUni> -<AUni ws="qvm-x-acl">+taza</AUni> -<AUni ws="qvm-x-akh">+taza</AUni> -<AUni ws="qvm-x-akl">+taza</AUni> -<AUni ws="qvm-x-ame">+taza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.845" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4a560938-141c-453a-8e48-3f7abad444ee" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+taza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f9d4e316-b8f8-488e-ba9b-cad9589cba90" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1c8f7bd4-7a42-4d0f-8334-1acfb0d57274" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +taza 
\entryTyp root 
\gENG cup 
\gSPN taza 
\e +taza 
\c N0 
\ach ta:za 
\akh ta:za 
\acl ta:za 
\akl ta:za 
\ame ta:za</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="5bcd08a6-cb46-41bb-a732-0d690b5ea596" ownerguid="4098899a-0ad0-4d71-9f9f-b99d5ba2e0d5"> -<Abbreviation> -<AUni ws="en">5.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.317" /> -<DateModified val="2022-9-23 16:55:8.317" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to types of food.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Types of food</AUni> -</Name> -<Questions> -<objsur guid="dbeb532d-1d4e-4d6d-80bd-e0c80d87e629" t="o" /> -<objsur guid="d392363e-6966-406d-aba8-23e42586aa0e" t="o" /> -<objsur guid="1e3b0f4d-23d4-49fc-9b29-896ce2caa783" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="32125c5f-d69a-442f-ba66-6277ec0a3b15" t="o" /> -<objsur guid="1f608e18-958e-4bb3-a977-04879fb5acd5" t="o" /> -<objsur guid="36ad58e3-ade7-49b9-9922-de0b5c3f13c3" t="o" /> -<objsur guid="effc49dd-6322-4302-899c-4cf540f0e2e4" t="o" /> -<objsur guid="2eba12c6-7817-4dfd-9e7c-94c8b8b389ef" t="o" /> -<objsur guid="31dc3d15-c6f8-4405-a33b-8f3a52f8671a" t="o" /> -<objsur guid="2d894eca-8f6c-4b63-b265-0914a65d9be9" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="5bcd578d-397c-4902-90ae-89909a6064c9" ownerguid="5422d4ba-8af4-4767-912e-43b60ef28eab"> -<ExampleWords> -<AUni ws="en">extremely, terribly, dreadfully, incredibly, unbelievably, ridiculously, absurdly, remarkably, exceptionally, extraordinarily, terrifically, enormously, hugely, exceedingly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words intensify an attribute to an extreme degree?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5bcf23fe-ca50-43bc-a10d-1184430aa39d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">amista</AUni> -<AUni ws="qvm-x-acl">amista</AUni> -<AUni ws="qvm-x-akh">amista</AUni> -<AUni ws="qvm-x-akl">amista</AUni> -<AUni ws="qvm-x-ame">amista</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+amistar</AUni> -<AUni ws="qvm-x-acl">+amistar</AUni> -<AUni ws="qvm-x-akh">+amistar</AUni> -<AUni ws="qvm-x-akl">+amistar</AUni> -<AUni ws="qvm-x-ame">+amistar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.759" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b3f33b16-5b21-4cb1-b3b0-162de1237143" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+amistar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4afdf343-f240-4cd4-a807-a5d8fafea2bd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="27ff87a9-39a1-42ac-915a-5dca6db6dfe1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +amistar 
\entryTyp root 
\gENG reconcile 
\gSPN amistar 
\e +amistar 
\c V2 
\ach amista 
\akh amista 
\acl amista 
\akl amista 
\ame amista 
\i MAL 4.6 Elías wilacuptinmi maman wawancunawan y papänin tsurincunawan amistananpag.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="5bcfe98d-cc64-4958-a03c-4a8f99c060e2" ownerguid="d7ca7972-220f-4f74-a0dd-cfd436b042b3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8a9f8f94-11c5-4551-98b0-b911a06286ae" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="5bd2407b-b9c4-4a80-a747-ba70056e8ac7" ownerguid="6dc5c56b-ee06-4e04-9f46-72bf87deaf10"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="157e063e-1d02-4366-914f-f18d0f59e50d" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="0cee9f40-3588-41f8-a9d1-ca9cb492e742" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="5bd26fd4-5aee-4647-ba37-5ad99b278820" ownerguid="03663a32-ea9c-486d-9481-d7535bb4050c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="5bd29c33-dea2-48cf-8757-c9dce45df113"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cawari</AUni> -<AUni ws="qvm-x-acl">cawari; caware</AUni> -<AUni ws="qvm-x-akh">kawari</AUni> -<AUni ws="qvm-x-akl">kawari; kaware</AUni> -<AUni ws="qvm-x-ame">kawari</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kawsari.1</AUni> -<AUni ws="qvm-x-acl">*kawsari.1</AUni> -<AUni ws="qvm-x-akh">*kawsari.1</AUni> -<AUni ws="qvm-x-akl">*kawsari.1</AUni> -<AUni ws="qvm-x-ame">*kawsari.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.973" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="86e88915-da73-41d2-8dec-04a61e14b00c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kawsari.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f8c74f54-e31b-4b4b-b8a3-332d65be3545" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="392e3a82-74ce-4b93-91a3-b5364a6f7b3a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kawsari.1 
\entryTyp root 
\gENG revive 
\gSPN revivificar 
\e *kawsari.1 
\c V1 
\mp +FinalI 
\ach cawari 
\akh kawari 
\acl cawari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl caware +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kawari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kaware +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kawari 
\mcc *kawsari.1 / ~_ PNCT1</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="5bd5d479-f6cc-4579-af4e-ef08ae9950fe" ownerguid="1ec7e01b-c1fb-4401-ad08-f4c31304e863"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">slander</AUni> -<AUni ws="es">rinsilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="50ff70b8-816c-439e-b116-c48a8d370f11" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="5bd6e7de-1560-406a-8124-44e73985aded" ownerguid="790cb5f1-5b46-4ccc-b29f-099faaa9edaa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">olive</AUni> -<AUni ws="es">aceitunas</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="80b6cd68-b0f2-41a6-a6bb-6faaa7e31a96" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="5bd76e3e-773c-41dc-8751-13570ab7f845" ownerguid="8d4a5548-7a6a-48bd-b2a7-58d3fb0cf1cb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="5bd7d08f-b49b-4ddf-8fd6-b86b60337013"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">garza</AUni> -<AUni ws="qvm-x-acl">garza</AUni> -<AUni ws="qvm-x-akh">garza</AUni> -<AUni ws="qvm-x-akl">garza</AUni> -<AUni ws="qvm-x-ame">garza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+garza</AUni> -<AUni ws="qvm-x-acl">+garza</AUni> -<AUni ws="qvm-x-akh">+garza</AUni> -<AUni ws="qvm-x-akl">+garza</AUni> -<AUni ws="qvm-x-ame">+garza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.599" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ad1735b2-df37-4b59-a829-daeb4b05596d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+garza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2bcd888d-0d23-4ead-962b-d5f8c53f22f5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="370a3224-a821-49b0-bf54-f0a5f66bc542" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +garza 
\entryTyp root 
\gENG 
\gSPN 
\e +garza 
\c N0 
\ach garza 
\akh garza 
\acl garza 
\akl garza 
\ame garza</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="5bd88b18-f7b2-48d8-b98f-a2db116373f6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">capu; capa</AUni> -<AUni ws="qvm-x-acl">capu; capo; capa</AUni> -<AUni ws="qvm-x-akh">kapu; kapa</AUni> -<AUni ws="qvm-x-akl">kapu; kapo; kapa</AUni> -<AUni ws="qvm-x-ame">kapu; kapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kapU</AUni> -<AUni ws="qvm-x-acl">*kapU</AUni> -<AUni ws="qvm-x-akh">*kapU</AUni> -<AUni ws="qvm-x-akl">*kapU</AUni> -<AUni ws="qvm-x-ame">*kapU</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.943" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d276f579-4756-4773-bc87-b9dfbc89b8cd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kapU</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="55051bc0-fd09-48ca-8033-ba46a73f8429" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0a0cf596-e963-4a1e-895f-a899c89602ca" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kapU 
\entryTyp root 
\gENG be.for.someone 
\gSPN estar.para.uno 
\e *kapU 
\c V2 
\mp PMlowered 
\ach capu 
\ach capa morphlowered 
\akh kapu 
\akh kapa morphlowered 
\acl capu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl capo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl capa morphlowered 
\akl kapu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kapo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kapa morphlowered 
\ame kapu 
\ame kapa morphlowered 
\mcc *kapU / ~_ CAUS</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="5bd909dd-cccc-4027-ada3-cbb135395c81" ownerguid="d2d0a2a0-517b-4cdd-b099-473e45565348"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="5bdb3c06-fbee-4f5f-991a-e2128f65bb86" ownerguid="15947464-997a-4f44-9a4b-ac4916e7e19b"> -<Abbreviation> -<AUni ws="en">5.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.327" /> -<DateModified val="2022-9-23 16:55:8.327" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to cosmetics--things you put on your skin to make yourself beautiful in appearance.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Cosmetics</AUni> -</Name> -<Questions> -<objsur guid="f7343b16-4901-4473-9f2b-97498d63e0d9" t="o" /> -<objsur guid="2ff0022f-24d4-49ba-9e63-7a04b90ec8ec" t="o" /> -<objsur guid="0201e700-1ea1-46e7-a9cf-216ad0b7a340" t="o" /> -<objsur guid="f55a7ffe-cd41-4ad4-b27a-cf0c02cfd184" t="o" /> -<objsur guid="4a6e6087-5f9a-4c17-983c-7518626b38fe" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="5be12dbb-cb8e-41cc-96ff-781a5d8374ec" ownerguid="1b8adb92-b5e5-4408-bf9c-2ff8c6454755"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="57e435ff-f14a-44e1-b595-dff01f37fcc1" t="r" /> -</Morph> -<Msa> -<objsur guid="be6973f5-a2b1-46a6-9dd0-379cd8bb168a" t="r" /> -</Msa> -</rt> -<rt class="LexExampleSentence" guid="5be17873-311e-4698-8cc5-15f058fb362b" ownerguid="516346d4-121e-4996-bddf-20c87408b53c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Gen 18.4 Yacuta aparatsimushag chaquiquita maylacärinayquipag.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="5be4a43e-0c5f-41fb-a34b-5e06cb0b6dfb" ownerguid="ddab8953-1941-4143-a782-de0e4879e4c6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="90d0eabe-0a01-410c-91b4-93f8505ceffd" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">tumble</AUni> -<AUni ws="es">rodar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8d0049e6-e855-441c-9e4b-f139198cee71" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5be839f1-0799-44e9-b3fc-7bc558cef1eb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shuma; shuma:</AUni> -<AUni ws="qvm-x-acl">shuma; shuma:</AUni> -<AUni ws="qvm-x-akh">shuma; shuma:</AUni> -<AUni ws="qvm-x-akl">shuma; shuma:</AUni> -<AUni ws="qvm-x-ame">shuma; shuma:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*suma:.2</AUni> -<AUni ws="qvm-x-acl">*suma:.2</AUni> -<AUni ws="qvm-x-akh">*suma:.2</AUni> -<AUni ws="qvm-x-akl">*suma:.2</AUni> -<AUni ws="qvm-x-ame">*suma:.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.744" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c274d131-772c-4fbd-8540-f481e90f66e2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*suma:.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b2a30d91-2e47-45f5-a782-8709ada207a2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="28cf64d0-7604-456d-98c1-91e7b3bdd73a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *suma:.2 
\entryTyp root 
\gENG brag 
\gSPN jactarse 
\e *suma:.2 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach shuma foreshortened 
\ach shuma: 
\akh shuma foreshortened 
\akh shuma: 
\acl shuma foreshortened 
\acl shuma: 
\akl shuma foreshortened 
\akl shuma: 
\ame shuma foreshortened 
\ame shuma: 
\mcc *suma:.2 / ~_ [q] 
\mcc *suma:.2 / ~_ 1 TOP</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5befe8de-1788-4d67-9d97-64eb8c5400f0" ownerguid="321d0a74-705f-40bf-8d24-809f65bee895"> -<ExampleWords> -<AUni ws="en">is</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) state exists: the state is begun before reference time and continues after reference time.</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5bf04c3c-00c9-46e9-927f-7891682d248c" ownerguid="0bc02285-8e70-442a-8d08-e04d922507c8"> -<ExampleWords> -<AUni ws="en">paint, draw, design, composition, brush, painting, medium</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to producing art?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5bf08ef9-8172-44ba-87c2-ca48fb271e20" ownerguid="1bb79229-b368-4a4e-9acd-6ddaf5bbfa65"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">virgin</AUni> -<AUni ws="es">doncella</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6908727a-dbee-4fbf-baa5-f86dc4ddef71" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="5bf5a8b3-b167-4f35-b9b5-982d9938ab52" ownerguid="30954ee0-f9e2-430e-b754-e6dc8e3d855a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5bf91b5c-602e-429d-bb41-20d6ff35489a" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<ExampleWords> -<AUni ws="en">agony, anguish, desolate, despair, be in despair, disconsolate, grief stricken, heartbroken, inconsolable, miserable, misery, suicidal, woe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to feeling very sad?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5bfc2be8-960a-49fc-952c-7e1540f31d7d" ownerguid="d8c8bf11-5058-4acf-a336-39141311488e"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5c01a347-3611-4326-bf43-247c8e4edb75" ownerguid="86e5c062-d90f-476c-a363-264adfafedfa"> -<ExampleWords> -<AUni ws="en">shrug (shoulders), raise (arm), salute, shake (fist), clench (fist), fold (arms), cross (arms), crook (arm/finger), crack (knuckles), spread (arms/fingers), hold up your hands, fold your arms, cross your arms</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to moving your arms and shoulders?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5c086316-09f5-409b-9f51-722bdc54b885" ownerguid="811e8c93-d97a-4aab-bd67-268b7783ff11"> -<ExampleWords> -<AUni ws="en">scarecrow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to protecting a field from birds?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5c08c178-187e-4355-90bb-decf96e0e8b4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuncha</AUni> -<AUni ws="qvm-x-acl">cuncha</AUni> -<AUni ws="qvm-x-akh">kuncha</AUni> -<AUni ws="qvm-x-akl">kuncha</AUni> -<AUni ws="qvm-x-ame">kuncha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kuntra.n</AUni> -<AUni ws="qvm-x-acl">*kuntra.n</AUni> -<AUni ws="qvm-x-akh">*kuntra.n</AUni> -<AUni ws="qvm-x-akl">*kuntra.n</AUni> -<AUni ws="qvm-x-ame">*kuntra.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.13" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9797da27-2dc8-4d6a-a1b1-302122301abf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kuntra.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bb2a1949-45c5-45f9-adf9-fb3513399ee6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f6831348-e2bc-40d4-a570-f9f857f1f1f7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kuntra.n 
\entryTyp root 
\gENG corral 
\gSPN corral 
\e *kuntra.n 
\c N0 
\ach cuncha 
\akh kuncha 
\acl cuncha 
\akl kuncha 
\ame kuncha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="5c091d8d-5bc4-40c3-8a30-2a08fb0794b8" ownerguid="a894d991-d5da-45a6-9c62-009133257f36"> -<Abbreviation> -<AUni ws="en">2.5.6.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.47" /> -<DateModified val="2022-9-23 16:55:8.47" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to having a vision--when a person sees something that isn't there because something unusual has happened to their mind. Include unusual, abnormal, and paranormal states of consciousness, visions, hallucinations, and spiritually induced trances.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Vision, hallucination</AUni> -</Name> -<Questions> -<objsur guid="1fab899d-7719-4649-95de-7f084351bb38" t="o" /> -<objsur guid="0330d963-95d7-43f0-ad91-08a1f8c2c2e5" t="o" /> -<objsur guid="a8c9aa3b-8557-4a2e-a2fc-059e7d9c230e" t="o" /> -<objsur guid="c9475db3-06a2-45ef-afa8-b4c4228a354c" t="o" /> -<objsur guid="fa489d4e-1b84-4206-a484-42065c8d4af4" t="o" /> -<objsur guid="1eff2a79-ba7e-4a9b-b319-a660e4fa2d69" t="o" /> -<objsur guid="1dbd0c9e-768b-4c2d-92a0-5509eb84d597" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="5c0cc9bf-84e8-4094-98c4-b2dad9e756a9" ownerguid="86f90eff-158b-4f6d-82e9-fab136dfd141"> -<ExampleWords> -<AUni ws="en">department, committee</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a part of an organization?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5c0d2408-c434-46e2-b5d8-793efd0552de" ownerguid="f5082009-b5ae-4a6d-949d-9b40fcb4d3a7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">little</AUni> -<AUni ws="es">poco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="67eb8ff2-f44c-4879-ad5c-f7effc3ae11e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="5c0e4a9c-7d56-4ad4-b39f-4b081f3329bd" ownerguid="b5987fee-71fb-400d-8f6f-2991bce15d00"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="21cad27d-c285-46c5-86ad-5cb644b6df55" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">saddle</AUni> -<AUni ws="es">montura</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2489f068-51f1-4ed3-9044-652a38a92ffd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="5c0ef937-88e7-4df6-958d-ac7abbd8447d" ownerguid="bb895a9a-d6f3-41ed-9603-2b424e317208"> -<Form> -<AUni ws="qvm-x-ach">tornu; torno</AUni> -<AUni ws="qvm-x-acl">tornu; tornu; torno</AUni> -<AUni ws="qvm-x-akh">tornu; torno</AUni> -<AUni ws="qvm-x-akl">tornu; tornu; torno</AUni> -<AUni ws="qvm-x-ame">tornu; torno</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5c100f8a-4a0a-49ab-ac7d-b298ae52c77c" ownerguid="3be7e3fe-89d4-471a-92bd-8c70fcb146bb"> -<ExampleWords> -<AUni ws="en">hearing aid, ear trumpet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What things are used by a deaf person?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5c142d53-8324-4a8c-b809-95af2001b9a6" ownerguid="349937e3-a2fd-41f8-b7c4-bd6fa106add4"> -<ExampleWords> -<AUni ws="en">silt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the material left behind by a flood?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5c188148-bfff-4b1e-b897-67976d13da64" ownerguid="e1efcec2-0474-4efb-8c6a-8c9595a17f09"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">operate</AUni> -<AUni ws="es">manejar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5cd9bc08-d884-4115-ad17-67fbaae186db" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="5c19e9f4-bb32-41db-abec-84cb1f394cf8" ownerguid="89d3056f-bc26-4898-b825-b29ced75cdd7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="5c1fb772-962c-4941-8593-f81f27add753"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">luqui</AUni> -<AUni ws="qvm-x-acl">luqui; luque</AUni> -<AUni ws="qvm-x-akh">luki</AUni> -<AUni ws="qvm-x-akl">luki; luke</AUni> -<AUni ws="qvm-x-ame">luki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lluki</AUni> -<AUni ws="qvm-x-acl">*lluki</AUni> -<AUni ws="qvm-x-akh">*lluki</AUni> -<AUni ws="qvm-x-akl">*lluki</AUni> -<AUni ws="qvm-x-ame">*lluki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.223" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a5efa293-a878-45c5-ae35-b81c8a9bf3a8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lluki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="20fab998-033b-4e50-ae7f-4906bd5a39ae" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="51359129-376c-411e-a501-69e35afa187c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lluki 
\entryTyp root 
\gENG pluck 
\gSPN coger 
\e *lluki 
\c V2 
\mp +FinalI 
\ach luqui 
\akh luki 
\acl luqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl luque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl luki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl luke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame luki</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="5c20ad67-87b6-4d9f-8fd7-5fd9f1ef7f77"> -<Analyses> -<objsur guid="670857e8-048a-4ab7-92a8-ebc28a5f914b" t="o" /> -<objsur guid="ceff0bcd-a262-4e41-bf0c-920b446951be" t="o" /> -</Analyses> -<Checksum val="1025640046" /> -<Form> -<AUni ws="qvm-x-akh">rikakatsin</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="5c2352f2-64e9-40c2-8e11-2706c775fa1d" ownerguid="b2b91f6a-9446-46b1-ab86-c011a5b6597e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="5c2439fc-5721-4980-bd50-258243f8c61d" ownerguid="c9da4369-8c6f-47c3-bab4-d59d0de8d022"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="5c26da80-839c-4c39-84ca-41792249b198" ownerguid="503aec14-5708-47c1-a9c8-79938589e713"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsay</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsay</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsay</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsay</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsay</Run> -</AStr> -</Form> -<Morph> -<objsur guid="feef9276-2243-43d4-b44a-5a725a0be56c" t="r" /> -</Morph> -<Msa> -<objsur guid="17c53e1a-f12c-41bc-9038-3134419c51bb" t="r" /> -</Msa> -<Sense> -<objsur guid="dc52902d-860a-4eee-86d4-7271f54d4006" t="r" /> -</Sense> -</rt> -<rt class="LexExampleSentence" guid="5c2a6299-9c7a-4c02-ba6e-c8054a346b44" ownerguid="1344dce6-9fae-41ec-ad33-2fe557289a0e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Shilquicushcä.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="5c2ab0ee-7d29-4139-b537-600c3860d782"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alumsu</AUni> -<AUni ws="qvm-x-acl">alumsu; alumsu; alumso</AUni> -<AUni ws="qvm-x-akh">alumsu</AUni> -<AUni ws="qvm-x-akl">alumsu; alumsu; alumso</AUni> -<AUni ws="qvm-x-ame">alumsu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*allumsu</AUni> -<AUni ws="qvm-x-acl">*allumsu</AUni> -<AUni ws="qvm-x-akh">*allumsu</AUni> -<AUni ws="qvm-x-akl">*allumsu</AUni> -<AUni ws="qvm-x-ame">*allumsu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.739" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e7ff9dda-0f02-47ec-b8a5-0e32bf6b9924" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*allumsu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e9f1ff45-2691-492a-98c6-ed1e48f5a924" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d4c7f537-c8ca-463c-84a9-d8c938949433" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *allumsu 
\entryTyp root 
\gENG cactus 
\gSPN espina 
\e *allumsu 
\c N0 
\ach alumsu 
\akh alumsu 
\acl alumsu / _# 
\acl alumsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl alumso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl alumsu / _# 
\akl alumsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl alumso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame alumsu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="5c2e5a51-7b7a-4730-9cf4-aaa16ae58ad5" ownerguid="099c91ea-b3b2-4e99-8f1e-14ad8b395370"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="5c31bdf6-901f-4f14-ab64-7a99524710fc" ownerguid="f9d020d6-b129-4bb8-9509-3b4a6c27482e"> -<Abbreviation> -<AUni ws="en">3.4.1.4.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.133" /> -<DateModified val="2022-9-23 16:55:8.133" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling indifferent about something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Indifferent</AUni> -</Name> -<Questions> -<objsur guid="5d5a2496-7bbc-4d15-8099-4141e3ff2dd8" t="o" /> -<objsur guid="7c47ba9a-ea31-46b4-b867-0ccad6f7b5b0" t="o" /> -<objsur guid="07a810fe-94dd-43fe-a25c-653643b235e9" t="o" /> -<objsur guid="ee664cd2-5a47-4406-855b-725d3b74f674" t="o" /> -<objsur guid="1824b3e4-ee51-453d-8241-ef1bdd6001b4" t="o" /> -<objsur guid="74e02ca2-f8a9-45b9-aae7-eeffb0769be3" t="o" /> -<objsur guid="1ca5d4fa-1395-4817-bb4a-2bfb9ccfb7cf" t="o" /> -<objsur guid="ce822d22-c821-4fde-ab0c-3c8ca0253fd8" t="o" /> -<objsur guid="fa8d4c7b-c01e-4666-b096-4857939a3b7d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="5c348090-12f4-4c83-8331-e10971bbc8d3" ownerguid="1f608e18-958e-4bb3-a977-04879fb5acd5"> -<Abbreviation> -<AUni ws="en">5.2.3.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.317" /> -<DateModified val="2022-9-23 16:55:8.317" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to meat and types of animals that are eaten. Only include those animals that are commonly eaten.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Meat</AUni> -</Name> -<Questions> -<objsur guid="9e3b5442-038f-4e63-98f6-68dbde9b1a52" t="o" /> -<objsur guid="0235a2f1-2a85-4108-98b7-ecee02be0422" t="o" /> -<objsur guid="1c73b9eb-a39a-4ebc-9bb0-7b6795676194" t="o" /> -<objsur guid="c56d8483-fd00-43e2-851d-8fb1486798b0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="5c357ab1-5c89-453b-92eb-72e37653306c" ownerguid="a78674fd-f244-4f17-acc4-46a668c84d17"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">DAN 6.24 Manaragpis pampaman paycuna chayaptinmi leoncunaga micunanpag achcupacorgan. Tsay runacunapataga tuluncunatapis chipyagmi gapchuchuyla ushargan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="5c358db3-f56a-4285-8ef1-22fb702fcc31" ownerguid="53cc0f4a-dba1-4fd5-8feb-dad7bb4abfd7"> -<Form> -<AUni ws="qvm-x-ach">china</AUni> -<AUni ws="qvm-x-acl">china</AUni> -<AUni ws="qvm-x-akh">china</AUni> -<AUni ws="qvm-x-akl">china</AUni> -<AUni ws="qvm-x-ame">china</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="5c35a610-8961-483d-b6e2-5c0ba657bc77" ownerguid="4bb98342-bd92-41e4-8d2d-7944d22f6049"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 4.23 Tsaynogpis shuntapäcog tarushcunata, luychucunata, corzo nishgan luychucunata y wera walpacunata, pätucunata y pavo realtapis.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="5c35c2f8-d17c-42a3-aa12-a4c29b6603e8" ownerguid="080bf07b-e58b-4a75-bb97-84d980a143f0"> -<Abbreviation> -<AUni ws="en">8.3.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.599" /> -<DateModified val="2022-9-23 16:55:8.599" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to bending something and for words that describe something that is bent or curved.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79Q Straight, Crooked</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Bend</AUni> -</Name> -<Questions> -<objsur guid="8d83d192-9939-4f77-bdd5-ebbb34983596" t="o" /> -<objsur guid="f291a51a-c679-463a-9ec5-8617b7763fc6" t="o" /> -<objsur guid="e3083ac7-43fe-472e-aecd-f40969a6436a" t="o" /> -<objsur guid="3caa1177-bc11-4934-989b-567d7733ebe5" t="o" /> -<objsur guid="ade23c6c-29e5-4816-9f44-910012fa04e9" t="o" /> -<objsur guid="5a984f44-0cbc-41b6-b62a-a3475c754170" t="o" /> -<objsur guid="16c74087-1c05-4c2b-8170-91e55b8b3be1" t="o" /> -<objsur guid="5fbd9a74-e02c-480f-9881-773f62ec5280" t="o" /> -<objsur guid="3c0a1551-fc93-4785-8f01-caa0f781b092" t="o" /> -<objsur guid="1d0c4143-72a6-413e-927b-e4748db94b0e" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="7ee92ca4-19aa-4abd-9f88-508766acc39c" t="o" /> -<objsur guid="19fea936-30d1-482f-a103-1c5549b19745" t="o" /> -<objsur guid="8f7c9d7d-9b2a-40f3-9314-8f16f0aa31ef" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="5c3692be-7de6-48ac-9db2-de1131d4f7e5" ownerguid="fe89a0f4-2155-424b-bf90-c1133dc41c8d"> -<ExampleWords> -<AUni ws="en">put things away, store, open a drawer, close a drawer, put things on a shelf</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What do people do with cabinets?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="5c382242-9d84-408a-a5b9-e6cc2320c640" ownerguid="d9c288d9-54c0-42ab-a3e0-70d8a1951a74"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="f3ab0c8e-eef7-4850-9260-b35a5b58667a" t="o" /> -<objsur guid="b515ff91-86ee-4107-bf66-3616bc52fe43" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="5c38879f-8df0-483b-a563-6b6c2de16a5d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">malu</AUni> -<AUni ws="qvm-x-acl">malu; malo</AUni> -<AUni ws="qvm-x-akh">malu</AUni> -<AUni ws="qvm-x-akl">malu; malo</AUni> -<AUni ws="qvm-x-ame">malu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mallu</AUni> -<AUni ws="qvm-x-acl">*mallu</AUni> -<AUni ws="qvm-x-akh">*mallu</AUni> -<AUni ws="qvm-x-akl">*mallu</AUni> -<AUni ws="qvm-x-ame">*mallu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.285" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d03790bf-72fb-40c9-ae8a-72897e4d6724" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mallu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6f34f631-ffc3-4e97-8eef-1f54ecbc15de" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c8b9af1d-5f5d-459f-9cf1-4c7254b0e513" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mallu 
\entryTyp root 
\gENG scatter 
\gSPN desparramar 
\e *mallu 
\c V1 
\ach malu 
\akh malu 
\acl malu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl malo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl malu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl malo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame malu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="5c39bbac-f5f5-4784-a9cd-48b19cc2617e" ownerguid="67491727-59ff-4a20-a173-3f80a5c350e2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">incharse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0dec6ab1-864c-43c1-b0b9-b23bfae6c697" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5c39ce86-d714-434e-929b-9a06377cafdd" ownerguid="5c468a85-e45f-4ea0-a3ba-68feda7e85a1"> -<ExampleWords> -<AUni ws="en">midwife, obstetrician</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who helps to give birth?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5c3c3e1a-be20-489f-a454-daa2d6ca5bd7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mama</AUni> -<AUni ws="qvm-x-acl">mama</AUni> -<AUni ws="qvm-x-akh">mama</AUni> -<AUni ws="qvm-x-akl">mama</AUni> -<AUni ws="qvm-x-ame">mama</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mama.1</AUni> -<AUni ws="qvm-x-acl">*mama.1</AUni> -<AUni ws="qvm-x-akh">*mama.1</AUni> -<AUni ws="qvm-x-akl">*mama.1</AUni> -<AUni ws="qvm-x-ame">*mama.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.295" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8cd665e4-07e9-40f1-8728-9c60259d4153" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mama.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9efa2471-64c9-4ad8-9364-f76c35da3769" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="af1a73c8-e56c-4730-a90a-81912ce4463e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mama.1 
\entryTyp root 
\gENG mother 
\gSPN madre 
\e *mama.1 
\c N0 
\ach mama 
\akh mama 
\acl mama 
\akl mama 
\ame mama 
\co dmc *mama.1 / ~_# | no: mama chancan 
\co hmc *mama.1 / ~_# | no: mama chancan</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5c3c4d06-fa50-4496-a867-80f5c540a7cf" ownerguid="af399519-5d7c-4100-9c79-8162cb4641cb"> -<ExampleWords> -<AUni ws="en">slow, slowly, leisurely</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe an action that is done slowly?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="5c3eb2e0-b53b-4293-ad9a-0d4fa1069f39" ownerguid="971928bd-969f-4a1f-92bb-c3a816d15d5a"> -<Form> -<AUni ws="qvm-x-ach">cäcU</AUni> -<AUni ws="qvm-x-acl">cäcU</AUni> -<AUni ws="qvm-x-akh">käkU</AUni> -<AUni ws="qvm-x-akl">käkU</AUni> -<AUni ws="qvm-x-ame">käkU</AUni> -</Form> -<IsAbstract val="True" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="5c3f9bac-c13c-4451-a684-b0dfdbc32aa6" ownerguid="30bf17f3-f3e8-477b-8bce-67e647db6f8c"> -<Form> -<AUni ws="qvm-x-ach">quisha</AUni> -<AUni ws="qvm-x-acl">quisha</AUni> -<AUni ws="qvm-x-akh">kisha</AUni> -<AUni ws="qvm-x-akl">kisha</AUni> -<AUni ws="qvm-x-ame">kisha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="5c41e283-77f3-436c-adbf-e311d582bc38" ownerguid="d62222e9-d3d9-4082-bf5d-b08dd4ba8d4a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Lev 19.27 <<Agtsayquita rutucur ama cachanquitsu umpucshulayquichöga.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="5c43a0fb-8c5f-42c7-bdd3-854a9029b88b" ownerguid="85f211ae-cc16-4042-8c27-e99ff8f01f61"> -<ExampleWords> -<AUni ws="en">giver, benefactor, donor, philanthropist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to someone who gives?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5c43c089-9c70-476b-a232-552529dc47f2" ownerguid="49aa89f2-2022-4213-845e-dbbb4b53476c"> -<ExampleWords> -<AUni ws="en">last (adv), at the end</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that an event happens last?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="5c44a8ae-1d5e-45d3-a40f-48634b4e1f51" ownerguid="56f9350b-6aa7-41ba-9a98-67ebbe4bc6fd"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2KI 14.9 Cardon cashami cachargan Líbanucho caycag cedruta caynog ninanpag: <Tsurëwan tänanpag warmi tsuriquita entregamay.></Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="5c468a85-e45f-4ea0-a3ba-68feda7e85a1" ownerguid="35e61ec4-0542-4583-b5da-0aa5e31a35aa"> -<Abbreviation> -<AUni ws="en">2.6.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to helping a woman to give birth.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Help to give birth</AUni> -</Name> -<Questions> -<objsur guid="21512e7f-02a5-4047-a9a7-3d2dd1915b18" t="o" /> -<objsur guid="b0149cac-2c69-4bb7-8e95-9851cc4aff57" t="o" /> -<objsur guid="5c39ce86-d714-434e-929b-9a06377cafdd" t="o" /> -<objsur guid="19510e79-0d56-42cb-93f5-e2cfc1daa1df" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="5c482375-8b43-4957-9dc2-cb4b896f8363" ownerguid="0b0e7576-68df-4387-ab17-d5abdf53b979"> -<Form> -<AUni ws="qvm-x-ach">uchpa</AUni> -<AUni ws="qvm-x-acl">uchpa</AUni> -<AUni ws="qvm-x-akh">uchpa</AUni> -<AUni ws="qvm-x-akl">uchpa</AUni> -<AUni ws="qvm-x-ame">uchpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="5c4a3227-111c-422f-aec2-b6edeee36482"> -<Analyses> -<objsur guid="01c0fabf-e23c-49d4-8b4e-5b36ad316d50" t="o" /> -<objsur guid="4231feeb-d7d1-4f48-907e-6cbe21827c29" t="o" /> -<objsur guid="c7fe3fd0-802d-429e-8f1c-9691f371f7bb" t="o" /> -<objsur guid="e1a431ea-cae6-4d17-b2ff-4fdadf59c1b3" t="o" /> -<objsur guid="fa243cc0-3b47-4be3-991b-909e90538fba" t="o" /> -</Analyses> -<Checksum val="-830117807" /> -<Form> -<AUni ws="qvm-x-akh">waqapäkurqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="5c4a77e9-425e-4cd0-89f6-2b7790a0183a" ownerguid="1545d615-742e-483c-8304-b07c7694bbcf"> -<Form> -<AUni ws="qvm-x-ach">chalëcu</AUni> -<AUni ws="qvm-x-acl">chalëcu; chalëcu; chalëco</AUni> -<AUni ws="qvm-x-akh">chalëcu</AUni> -<AUni ws="qvm-x-akl">chalëcu; chalëcu; chalëco</AUni> -<AUni ws="qvm-x-ame">chalëcu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="5c4df70f-4924-4ecf-8411-ed892c0b677e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">copia</AUni> -<AUni ws="qvm-x-acl">copia</AUni> -<AUni ws="qvm-x-akh">copia</AUni> -<AUni ws="qvm-x-akl">copia</AUni> -<AUni ws="qvm-x-ame">copia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+copiar</AUni> -<AUni ws="qvm-x-acl">+copiar</AUni> -<AUni ws="qvm-x-akh">+copiar</AUni> -<AUni ws="qvm-x-akl">+copiar</AUni> -<AUni ws="qvm-x-ame">+copiar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.182" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2921f59a-c0f4-40d7-9682-47b1561e0c11" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+copiar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c765917c-68fe-437d-a822-a71ae9ca51df" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5f269680-2122-4d44-9c1f-e42c096c7467" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +copiar 
\entryTyp root 
\gENG 
\gSPN copiar 
\e +copiar 
\c V1 
\ach copia 
\akh copia 
\acl copia 
\akl copia 
\ame copia</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="5c52dd52-9770-43db-971c-ec2412a949bb" ownerguid="7ff4fa9d-4f87-4ec4-86de-dac7ed2b938f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="5c563fa9-c1ca-4d86-9b45-ccae7dea5028"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pi:nu</AUni> -<AUni ws="qvm-x-acl">pi:nu; pi:nu; pi:no</AUni> -<AUni ws="qvm-x-akh">pi:nu</AUni> -<AUni ws="qvm-x-akl">pi:nu; pi:nu; pi:no</AUni> -<AUni ws="qvm-x-ame">pi:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pino</AUni> -<AUni ws="qvm-x-acl">+pino</AUni> -<AUni ws="qvm-x-akh">+pino</AUni> -<AUni ws="qvm-x-akl">+pino</AUni> -<AUni ws="qvm-x-ame">+pino</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.840" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d7e5132a-f504-4765-a8f0-59fe78338a66" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pino</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="af3c4485-4d14-4556-90ab-ae59d1ea50f4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fc8d8275-a39c-499f-a0e2-5fd64c67aba2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pino 
\entryTyp root 
\gENG pine 
\gSPN pino 
\e +pino 
\c N0 
\ach pi:nu 
\akh pi:nu 
\acl pi:nu / _# 
\acl pi:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pi:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pi:nu / _# 
\akl pi:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pi:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pi:nu 
\mcc +pino / ~_ 1P.V [ques]</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="5c5641c8-5277-4b84-8871-d34f4e4163bd" ownerguid="f53eda70-9618-400b-b728-ede65f970090"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5c564d55-78db-49a4-a1e5-0aef64da9efe" ownerguid="55b93f1c-6ce0-4d13-ae1e-f06360e4689c"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John drank coffee <with> milk.; John sent flowers to Mary <along with> a birthday card.; He paid back my money <with> interest.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">with, together with, combined with, in combination, in conjunction with, alongside, along with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words mark something that is used with another thing?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5c566a6b-3fed-4fce-928b-3cb351420389" ownerguid="788e642b-0327-4f6d-afc2-bab7436cae3c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="5c589b05-ec84-4db2-ae6d-e5b1ce560893" ownerguid="28fe4892-b5e3-4dc9-9f65-b2b0c1ba2aba"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="5c5cb69f-9a79-479d-bc4f-3903d69b283a" ownerguid="db227447-6405-47dd-b9a4-4391fcb29b80"> -<Form> -<AUni ws="qvm-x-ach">carrïzu</AUni> -<AUni ws="qvm-x-acl">carrïzu; carrïzu; carrïzo</AUni> -<AUni ws="qvm-x-akh">carrïzu</AUni> -<AUni ws="qvm-x-akl">carrïzu; carrïzu; carrïzo</AUni> -<AUni ws="qvm-x-ame">carrïzu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5c5e314c-c878-42aa-8135-50739d9b44f4" ownerguid="4bfe53d2-fb85-4397-98a8-97d59b907064"> -<ExampleWords> -<AUni ws="en">oar, paddle, sail, rigging, plank, compass, signal flag</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What equipment is used in a boat?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5c63cb3d-9c24-4f8c-9075-03b9b05b5aa0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">usha</AUni> -<AUni ws="qvm-x-acl">usha</AUni> -<AUni ws="qvm-x-akh">usha</AUni> -<AUni ws="qvm-x-akl">usha</AUni> -<AUni ws="qvm-x-ame">usha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*usha</AUni> -<AUni ws="qvm-x-acl">*usha</AUni> -<AUni ws="qvm-x-akh">*usha</AUni> -<AUni ws="qvm-x-akl">*usha</AUni> -<AUni ws="qvm-x-ame">*usha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.282" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8e6e0d39-1d67-4297-9f06-b6210db1216d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*usha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f1587688-f9c5-406a-84d4-4c91d3ffb918" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="68ad6a6d-7a44-40ad-9710-50f686f20467" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *usha 
\entryTyp root 
\gENG finish 
\gSPN terminar 
\e *usha 
\c V2 
\ach usha 
\akh usha 
\acl usha 
\akl usha 
\ame usha 
\mcc *usha / ~_ REF PNCT1 CAUS | debe ser PASS en vez de REF 
\mcc *usha / ~_ REF IMPFV1 CAUS | debe ser PASS en vez de REF</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="5c664afa-3670-4b92-a72b-f8ece5ec3c75" ownerguid="3fb987e8-0bfb-4092-976c-eb2433d2ff6c"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="5c666273-921f-4652-8fa4-12d87a822c16" ownerguid="75d4fad8-9d20-4e80-b9b4-a67ea193ad08"> -<Form> -<AUni ws="qvm-x-ach">murälla</AUni> -<AUni ws="qvm-x-acl">murälla</AUni> -<AUni ws="qvm-x-akh">murälla</AUni> -<AUni ws="qvm-x-akl">murälla</AUni> -<AUni ws="qvm-x-ame">murälla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="5c672c2c-3cdb-4af4-8153-7abd54643843" ownerguid="885c5382-cb0d-4bc0-8aa4-c79a75d00cd2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0 V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rest</AUni> -<AUni ws="es">descansar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0dd18dd9-aa07-4a81-b7c9-8b39072c9b17" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="5c693d1e-d64f-406c-8ebd-eba12295fb6c" ownerguid="8294ca3f-0aed-4517-bdc9-dc5ee6763c29"> -<Form> -<AUni ws="qvm-x-ach">cerca</AUni> -<AUni ws="qvm-x-acl">cerca</AUni> -<AUni ws="qvm-x-akh">cerca</AUni> -<AUni ws="qvm-x-akl">cerca</AUni> -<AUni ws="qvm-x-ame">cerca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="5c69b52c-85cf-49fc-9976-95b5f8f7c104"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tira</AUni> -<AUni ws="qvm-x-acl">tira</AUni> -<AUni ws="qvm-x-akh">tira</AUni> -<AUni ws="qvm-x-akl">tira</AUni> -<AUni ws="qvm-x-ame">tira</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tira</AUni> -<AUni ws="qvm-x-acl">*tira</AUni> -<AUni ws="qvm-x-akh">*tira</AUni> -<AUni ws="qvm-x-akl">*tira</AUni> -<AUni ws="qvm-x-ame">*tira</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.924" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="de7c4d60-858b-45f8-bcd0-3cd54f05915c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tira</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="23193c5a-77b5-480c-937e-1e265768f050" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2f2d9029-530c-4282-b5dd-f049776d7ba7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tira 
\entryTyp root 
\gENG weed 
\gSPN desyerbar 
\e *tira 
\c V1 
\ach tira 
\akh tira 
\acl tira 
\akl tira 
\ame tira</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="5c6b604e-93ef-44ce-900a-ba1fae187d0e" ownerguid="254e1ce7-5846-4d4d-900f-a676ccceacce"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="5c6cdea6-6fd5-4cc0-b744-d1a278ce3802"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ishcani</AUni> -<AUni ws="qvm-x-acl">ishcani; ishcani; ishcane</AUni> -<AUni ws="qvm-x-akh">ishkani</AUni> -<AUni ws="qvm-x-akl">ishkani; ishkani; ishkane</AUni> -<AUni ws="qvm-x-ame">ishkani</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ishkani</AUni> -<AUni ws="qvm-x-acl">*ishkani</AUni> -<AUni ws="qvm-x-akh">*ishkani</AUni> -<AUni ws="qvm-x-akl">*ishkani</AUni> -<AUni ws="qvm-x-ame">*ishkani</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.842" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="45ec0e66-92e7-40f6-8b61-0853e75aa801" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ishkani</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4af8c46d-f891-4378-830f-4a65fdc9f221" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f2d1b80b-acd3-456c-8d6a-402f192af5c4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ishkani 
\entryTyp root 
\gENG both 
\gSPN dos 
\e *ishkani 
\c N1 
\mp +FinalI 
\ach ishcani 
\akh ishkani 
\acl ishcani / _# 
\acl ishcani +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ishcane +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ishkani / _# 
\akl ishkani +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ishkane +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ishkani</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="5c6f35eb-ef0f-4a2c-8331-740b90919423" ownerguid="dbdba393-677c-4ed5-95f6-cea4c2a71e69"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5c708019-8ba0-41c6-9625-34e8fcbbec6a" ownerguid="df2b9d7a-9b90-4704-8bc3-11dcffe985f4"> -<ExampleWords> -<AUni ws="en">pale, anemic, ashen, bloodless, cadaverous, deathly, flushed, ghastly, lurid, pallid, pallor, pale-faced, pale as death, pale as a ghost, pasty, sallow, wan, white as a sheet, go white, turn blue</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe the color of a person's skin when they are sick or afraid?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="5c770098-2c91-4a9c-bfa0-a7ffaa871a7f" ownerguid="f726d9bb-ae80-4c01-bdef-b600cb27736e"> -<Abbreviation> -<AUni ws="en">6.9.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.498" /> -<DateModified val="2022-9-23 16:55:8.498" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to working for someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Work for someone</AUni> -</Name> -<OcmCodes> -<Uni>460 Labor; 461 Labor and Leisure; 462 Division of Labor by Gender; Division of Labor by Sex; 463 Occupational Specialization; 464 Labor Supply and Employment; 465 Wages and Salaries; 466 Labor Relations; 467 Labor Organization; 468 Collective Bargaining; 890 Gender Roles and Issues</Uni> -</OcmCodes> -<Questions> -<objsur guid="21c080f4-f458-4355-b53a-65ed41d9d1d1" t="o" /> -<objsur guid="fd5a082d-d333-4ac1-ab57-14b9aaecc5c8" t="o" /> -<objsur guid="a7a0a0da-97a4-4384-a263-c3bfa10d710f" t="o" /> -<objsur guid="5fcdecd9-897f-49fe-b13d-905fcb2515b3" t="o" /> -<objsur guid="16065fe9-f201-4265-a6c4-5fbd3e97176c" t="o" /> -<objsur guid="c4fe078a-56f5-4c78-973c-cf613d2d7013" t="o" /> -<objsur guid="3e6855d7-88d8-417d-b50b-de5a0a60f724" t="o" /> -<objsur guid="8156b714-2f81-46f8-99f2-d4f73138b2f7" t="o" /> -<objsur guid="18fe6bcc-b6a4-41cd-8188-62865fe6ca70" t="o" /> -<objsur guid="5f6fcb8b-c0b0-4df5-9642-fc5d77b22414" t="o" /> -<objsur guid="b0b8f039-dd1f-4097-9896-f03ea11c8f2c" t="o" /> -<objsur guid="61f91dd7-59d6-4816-bff3-e9930c204ebd" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="5c79e7d4-eb5a-433c-8398-36f9aa3dd4ac" ownerguid="d3315d4b-c39c-479e-ab46-b8875a90f675"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wean</AUni> -<AUni ws="es">destetar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="37a7cae3-e023-417c-a065-5f5a982e4094" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="5c7f5987-c548-48ec-8c98-cee025b8598c" ownerguid="398a86b9-9499-40cb-a097-a365fac253c8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="15792430-038c-4c6e-950a-5da4a3d90f42" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="091e344c-c36f-4733-a8d4-a3b567b88cf3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="5c80707d-3cb1-41b6-a1b7-c1552daaec5f" ownerguid="95f76778-3484-4cbf-a51d-e6acb79bd884"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="5c80aa4d-0a6a-4e59-b430-68a11a5060d1" ownerguid="995751ef-d71b-429c-a4ee-032f5b309bd7"> -<ExampleWords> -<AUni ws="en">baby, child, youth, adult, elder</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to people of different ages?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5c86ce10-e13e-4cdc-8a3b-bfeeb48c1377" ownerguid="06ece095-9d9c-405a-819a-f98198ea8192"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">hacer.hueco.peque¤o</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="720b13e8-453e-4dbb-9c63-65795f3144b9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="5c8b372a-26e8-404b-8ae8-72f0f1db6a8f" ownerguid="fb16da71-89b7-4b66-849a-51a11d68b30c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="5c8c771f-5e89-403b-b021-cbdfcd9ea8a2" ownerguid="4369e292-e9da-463b-9aef-f56289b63ff8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">común</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0c4e710e-ebef-4e3e-b9c6-190d080dd4d7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5c8e3cb0-5eaa-434b-aa87-5e13f84044a6" ownerguid="742996cd-b87f-40a8-bdb3-dba74219bd73"> -<ExampleWords> -<AUni ws="en">temperature, heat, degree, Celsius, Centigrade, Fahrenheit, level of heat, warmth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to how hot something is?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5c8f69ec-e607-45a0-943a-4c405d198ad5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">agtsa</AUni> -<AUni ws="qvm-x-acl">agtsa</AUni> -<AUni ws="qvm-x-akh">aqtsa</AUni> -<AUni ws="qvm-x-akl">aqtsa</AUni> -<AUni ws="qvm-x-ame">aqtsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aqcha</AUni> -<AUni ws="qvm-x-acl">*aqcha</AUni> -<AUni ws="qvm-x-akh">*aqcha</AUni> -<AUni ws="qvm-x-akl">*aqcha</AUni> -<AUni ws="qvm-x-ame">*aqcha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.818" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="412b5149-bf7e-4a77-9977-1d103a72335f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aqcha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bca4ceae-c70f-400a-8472-fc3e4c89a306" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8fb4df72-f883-4ef8-b3bf-6c02e5de0924" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aqcha 
\entryTyp root 
\gENG hair 
\gSPN pelo 
\e *aqcha 
\c N0 
\ach agtsa 
\akh aqtsa 
\acl agtsa 
\akl aqtsa 
\ame aqtsa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5c93efd5-8a99-4144-a77d-8e31730ebeac" ownerguid="297f69f1-160e-442f-be7b-efcb44722b9c"> -<Form> -<AUni ws="qvm-x-ach">togla</AUni> -<AUni ws="qvm-x-acl">togla</AUni> -<AUni ws="qvm-x-akh">toqla</AUni> -<AUni ws="qvm-x-akl">toqla</AUni> -<AUni ws="qvm-x-ame">tuqla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="5c94eafa-7b5b-4403-a6eb-4b5708878384"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">llampu</AUni> -<AUni ws="qvm-x-acl">llampu; llampu; llampo</AUni> -<AUni ws="qvm-x-akh">llampu</AUni> -<AUni ws="qvm-x-akl">llampu; llampu; llampo</AUni> -<AUni ws="qvm-x-ame">llampu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llampu.n</AUni> -<AUni ws="qvm-x-acl">*llampu.n</AUni> -<AUni ws="qvm-x-akh">*llampu.n</AUni> -<AUni ws="qvm-x-akl">*llampu.n</AUni> -<AUni ws="qvm-x-ame">*llampu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.134" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f3e8f1e8-ae05-4140-afc5-ab3dad3778f2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llampu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0d922fd6-4c5b-4dea-b458-8ec2f9641d69" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="80e6c12b-3378-40e1-b83b-06f8d7c8bbab" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llampu.n 
\entryTyp root 
\gENG soft 
\gSPN suave 
\e *llampu.n 
\c N0 
\ach llampu 
\akh llampu 
\acl llampu / _# 
\acl llampu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl llampo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl llampu / _# 
\akl llampu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl llampo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame llampu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoInflAffixTemplate" guid="5c9566c6-f995-489c-bae3-40530bd780e2" ownerguid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7"> -<Disabled val="False" /> -<Final val="True" /> -<SuffixSlots> -<objsur guid="0eb1d65f-6889-40e2-a5ee-818feedf259c" t="r" /> -<objsur guid="cc7bce64-81a2-4c23-9cb0-ba8f7d274837" t="r" /> -<objsur guid="4cbb4780-6fd8-49fe-88d5-5efa3fa992de" t="r" /> -<objsur guid="ca45d090-0c3b-4e36-9a40-58963588cdaf" t="r" /> -<objsur guid="b31b892c-cb26-4efd-b65c-29374c5e75b6" t="r" /> -<objsur guid="5d7569d5-d194-43a3-8975-abfbf7ee2b2f" t="r" /> -<objsur guid="2187f650-9ef3-4104-9740-f007f3b51ffe" t="r" /> -<objsur guid="257de7fb-dab6-4b87-848b-3fbb8f5c3e04" t="r" /> -<objsur guid="2167bf6d-84f4-4209-b618-7a1edf05092a" t="r" /> -</SuffixSlots> -</rt> -<rt class="MoStemMsa" guid="5c979484-a161-4129-ae62-6efa434252ab" ownerguid="3172de51-a297-4877-a407-cd0b5ce64030"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="5c9cc14b-6b97-42ad-938e-ba34c3f1db74" ownerguid="084f02d5-82b0-449e-aca9-210c3711fe0a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">critical</AUni> -<AUni ws="es">grave</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ede3ce0b-7e5b-49b3-bcac-545ed2cab075" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="5c9f1fed-2e6d-4ad2-b804-9d3f09a277d3" ownerguid="17321b73-3887-4541-9049-9af2e1d69d9b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/R1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="153705f8-2a3b-4963-87ed-6bea24fae918" t="o" /> -<objsur guid="fc1d35ed-c12d-4cbf-b8a3-7570d38d78ab" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">ADVDS</AUni> -<AUni ws="es">ASD</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6a97cf20-558d-4866-ba04-48c4807bc533" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5ca02c04-8f57-4205-9599-c29ec9185fea" ownerguid="975d0109-1bba-4b0e-85b8-2c6b51c8e074"> -<ExampleWords> -<AUni ws="en">sit slowly, sink (down) into, ease into your chair, lower oneself, sit abruptly, flop down, plunk down, plop down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe how a person sits down?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="5ca06e35-1baf-4c1d-92ff-7264c0243939"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Kawaykarraq</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiWordform" guid="5ca1539c-8d73-4116-9ca9-842c8e1a489c"> -<Analyses> -<objsur guid="9d8fbadd-6532-4d95-9f36-092fa56d5c57" t="o" /> -</Analyses> -<Checksum val="970015245" /> -<Form> -<AUni ws="qvm-x-akh">lakishqa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="5ca37529-6345-41d7-8961-d3e58c7304df" ownerguid="e556f881-fe4b-45da-b528-1c1adf38662e"> -<Form> -<AUni ws="qvm-x-ach">goya</AUni> -<AUni ws="qvm-x-acl">goya</AUni> -<AUni ws="qvm-x-akh">qoya</AUni> -<AUni ws="qvm-x-akl">qoya</AUni> -<AUni ws="qvm-x-ame">quya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="5ca5aaa2-fa1f-4ce3-81d7-e9e9f66cdabd" ownerguid="cddde224-2249-4742-b325-3d8b84dc578b"> -<Form> -<AUni ws="qvm-x-ach">zanahoria</AUni> -<AUni ws="qvm-x-acl">zanahoria</AUni> -<AUni ws="qvm-x-akh">zanahoria</AUni> -<AUni ws="qvm-x-akl">zanahoria</AUni> -<AUni ws="qvm-x-ame">zanahoria</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="5caafec8-c8f6-4d4f-9e6e-eb75154e76e2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">compa:dri; compa:dri</AUni> -<AUni ws="qvm-x-acl">compa:dri; compa:dri; compa:dre</AUni> -<AUni ws="qvm-x-akh">compa:dri; compa:dri</AUni> -<AUni ws="qvm-x-akl">compa:dri; compa:dri; compa:dre</AUni> -<AUni ws="qvm-x-ame">compa:dri; compa:dri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+compadre.1</AUni> -<AUni ws="qvm-x-acl">+compadre.1</AUni> -<AUni ws="qvm-x-akh">+compadre.1</AUni> -<AUni ws="qvm-x-akl">+compadre.1</AUni> -<AUni ws="qvm-x-ame">+compadre.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.152" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b8e9e8e1-4fac-43ee-9cc6-2888894e9f1b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+compadre.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="76b54d1b-cc27-4414-a41b-3d64d33ac704" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="163dc981-4a06-4228-83ae-c5ed6a2f6d0b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +compadre.1 
\entryTyp root 
\gENG godfather 
\gSPN compadre 
\e +compadre.1 
\c N0 
\mp +FinalI 
\ach compa:dri / _# 
\ach compa:dri / ~_# 
\akh compa:dri / _# 
\akh compa:dri / ~_# 
\acl compa:dri / _# 
\acl compa:dri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl compa:dre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl compa:dri / _# 
\akl compa:dri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl compa:dre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame compa:dri / _# 
\ame compa:dri / ~_# 
\i NEH 13.4 Naupatanami cüra Eliasib compädrita rurargan Tobíastawan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="5cab6cf5-c190-4fcb-ad67-c9f24a68d3ba" ownerguid="d167c58f-7de0-4dbf-b896-e563f37268b0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">en.fila</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4550d788-8508-4457-abaf-d44bc35be0d4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="Segment" guid="5cad8c88-c7b5-46bc-a0c0-d35143c986e3" ownerguid="2e436723-3341-45cd-8599-70c46d88ae19"> -<Analyses> -<objsur guid="c736ffb6-a7d1-49aa-8151-dac9a8201b36" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="5caed896-98c0-418e-bca6-06170607a22c" ownerguid="e26ff2a3-725d-40a6-aa9c-541653a88d9a"> -<Form> -<AUni ws="qvm-x-ach">prësa</AUni> -<AUni ws="qvm-x-acl">prësa</AUni> -<AUni ws="qvm-x-akh">prësa</AUni> -<AUni ws="qvm-x-akl">prësa</AUni> -<AUni ws="qvm-x-ame">prësa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="5cb1a8ca-f7ce-4eb4-9b6e-e2837e907aca" ownerguid="9b02529b-7ad9-4f75-a119-a46b3c96dde4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="5cb4d92c-638b-4dbe-8c93-310693768c36"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shalla</AUni> -<AUni ws="qvm-x-acl">shalla</AUni> -<AUni ws="qvm-x-akh">shalla</AUni> -<AUni ws="qvm-x-akl">shalla</AUni> -<AUni ws="qvm-x-ame">shalla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shalla.v</AUni> -<AUni ws="qvm-x-acl">*shalla.v</AUni> -<AUni ws="qvm-x-akh">*shalla.v</AUni> -<AUni ws="qvm-x-akl">*shalla.v</AUni> -<AUni ws="qvm-x-ame">*shalla.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.531" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d75a9b0f-04b2-4b80-a89a-0272865bf9a7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shalla.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="033c52d1-0aa3-4aff-ba42-d88b12c825cd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dd47c70e-1ec6-4d88-b5f1-75794046e9a8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shalla.v 
\entryTyp root 
\gENG dry 
\gSPN seco 
\e *shalla.v 
\c V1 
\ach shalla 
\akh shalla 
\acl shalla 
\akl shalla 
\ame shalla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="5cb7a702-6c8d-4bc7-b4a4-8eab7fe68ede"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mace:ta</AUni> -<AUni ws="qvm-x-acl">mace:ta</AUni> -<AUni ws="qvm-x-akh">mace:ta</AUni> -<AUni ws="qvm-x-akl">mace:ta</AUni> -<AUni ws="qvm-x-ame">mace:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+maceta</AUni> -<AUni ws="qvm-x-acl">+maceta</AUni> -<AUni ws="qvm-x-akh">+maceta</AUni> -<AUni ws="qvm-x-akl">+maceta</AUni> -<AUni ws="qvm-x-ame">+maceta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.253" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="da2697a9-eb2e-4383-b727-b4ba4f3b8c76" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+maceta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5d26c1b7-0cf4-433d-a4ca-19931814ec40" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7d640fdb-6536-43a5-9089-c600d63f70be" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +maceta 
\entryTyp root 
\gENG 
\gSPN 
\e +maceta 
\c N0 
\ach mace:ta 
\akh mace:ta 
\acl mace:ta 
\akl mace:ta 
\ame mace:ta 
\i JOB 9.9 Estrellacunata camarmi <Llama> estrellacunata, <Arädu> estrellacunata y <Macëta> estrellacunatapis Tayta Dios camargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5cb7dd59-f824-42e0-8438-66317b2631bb" ownerguid="eacf722f-ee09-45ab-8963-b80cfa67342f"> -<Form> -<AUni ws="qvm-x-ach">sienti</AUni> -<AUni ws="qvm-x-acl">sienti; siente</AUni> -<AUni ws="qvm-x-akh">sienti</AUni> -<AUni ws="qvm-x-akl">sienti; siente</AUni> -<AUni ws="qvm-x-ame">sienti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="5cb8967d-5c07-4fc5-8e4c-778dec9cc384"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">dos</AUni> -<AUni ws="qvm-x-acl">dos</AUni> -<AUni ws="qvm-x-akh">dos</AUni> -<AUni ws="qvm-x-akl">dos</AUni> -<AUni ws="qvm-x-ame">dos</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+dos</AUni> -<AUni ws="qvm-x-acl">+dos</AUni> -<AUni ws="qvm-x-akh">+dos</AUni> -<AUni ws="qvm-x-akl">+dos</AUni> -<AUni ws="qvm-x-ame">+dos</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.437" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="58ee1ba4-f796-484e-a665-82610d301220" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+dos</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4d9711ca-57a4-45a6-9e70-08f9f70d9932" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="08674869-3d1b-4ac5-bfab-c0b19c7850a6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +dos 
\entryTyp root 
\gENG two 
\gSPN dos 
\e +dos 
\c NOSUFF 
\ach dos 
\akh dos 
\acl dos 
\akl dos 
\ame dos</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="5cb9c037-385b-4ca1-a990-dce64b196c3e" ownerguid="b90644f9-6eed-4b42-9d66-175a1454ee7f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sect</AUni> -<AUni ws="es">secta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5f9715ce-78c2-4c21-be61-4adb31962e68" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5cba1e20-9b54-49ce-aecd-fac71056e297" ownerguid="106c2c42-36fd-4b0a-94f7-e998f6eae6f5"> -<ExampleWords> -<AUni ws="en">curse, anathema</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the curse place on someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5cba6e7f-4d1b-4bdb-940d-8b3964bc4b9a" ownerguid="6330871b-6008-490e-bfff-e28e17ebce7e"> -<ExampleWords> -<AUni ws="en">immovable, fixed, fast, set, permanent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that cannot be moved?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5cbeeb3d-ffa8-4a86-8c9e-78026021247e" ownerguid="e36a397f-4069-442e-8148-703abdd4e179" /> -<rt class="CmDomainQ" guid="5cbfb3cc-d3d8-405e-b48e-24048fd64d00" ownerguid="8f4c9266-a025-4b7a-bd67-fe0c043bf6f5"> -<ExampleWords> -<AUni ws="en">exactly, precisely</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that a number or amount is exact?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5cc30430-db05-474e-acf8-3306438b52aa" ownerguid="e17bf8da-45f5-43de-bd6a-1c28d8611e02"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">iron</AUni> -<AUni ws="es">fierro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b0d99526-708a-426c-9e7c-447b9f48b23b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="5cc64831-c14a-4dbe-beba-214e725ad041" ownerguid="c7c85346-158d-4881-839d-9a6a8e47209b"> -<Abbreviation> -<AUni ws="en">7.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.498" /> -<DateModified val="2022-9-23 16:55:8.498" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to the way in which a person moves.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Manner of movement</AUni> -</Name> -<Questions> -<objsur guid="da72651d-c463-4e5c-817a-c745bbf75987" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e" t="o" /> -<objsur guid="1017cbc3-0dfb-4930-9881-28f96784035c" t="o" /> -<objsur guid="deff977c-a664-4456-9d44-a5127dd2a7d1" t="o" /> -<objsur guid="250baab9-5a31-493c-95ea-9fee8baf9fd5" t="o" /> -<objsur guid="879e66bc-af29-4fe4-86e0-0047973a57d6" t="o" /> -<objsur guid="985f099d-f38c-4957-907a-769d1a45ca10" t="o" /> -<objsur guid="32d5b3de-0500-4ad6-b94e-20b8001d0a91" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoInflAffMsa" guid="5cc9a3bb-103d-4c28-b867-843434b1ecf2" ownerguid="008cecc8-8fcc-439a-88eb-d8bd404d5da9"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="b6f091af-032e-4c9c-9c5c-443c1328d1e2" t="r" /> -</Slots> -</rt> -<rt class="MoStemMsa" guid="5ccb0107-0e79-409c-86de-194924c13651" ownerguid="99e04950-3a2f-49f1-a518-c7db96a93855"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="5ccba663-398a-452b-9def-47049e4befcc" ownerguid="0618b32f-755c-417d-bbf8-2e8104f74e65"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="97650a78-f3cb-4331-add6-bd11ef9e5b90" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5ccbbf0b-abb2-4940-bdf5-a3258bba699d" ownerguid="5450043d-907b-4884-a9e5-35cfd5935947"> -<ExampleWords> -<AUni ws="en">dress immodestly, immodest, impropriety, indecent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to not wearing enough clothes?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5ccc9ce6-4bc1-4bbb-a0af-730d34adce30"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">de</AUni> -<AUni ws="qvm-x-acl">de</AUni> -<AUni ws="qvm-x-akh">de</AUni> -<AUni ws="qvm-x-akl">de</AUni> -<AUni ws="qvm-x-ame">de</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+de</AUni> -<AUni ws="qvm-x-acl">+de</AUni> -<AUni ws="qvm-x-akh">+de</AUni> -<AUni ws="qvm-x-akl">+de</AUni> -<AUni ws="qvm-x-ame">+de</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.366" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5f93e5d6-d63d-477a-83a4-7b3500936591" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+de</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7130d5b8-edd6-4495-b8f0-df0db747b3b0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="24605a88-4c28-4db6-b209-a6fca2fddd9e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +de 
\entryTyp root 
\gENG of 
\gSPN de 
\e +de 
\c NOSUFF 
\mp AlwaysLow 
\ach de 
\akh de 
\acl de 
\akl de 
\ame de 
\i sacrificio de paz</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="5cccfc11-4c8b-461f-bab8-e6e5ac587f6e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsawa</AUni> -<AUni ws="qvm-x-acl">tsawa</AUni> -<AUni ws="qvm-x-akh">tsawa</AUni> -<AUni ws="qvm-x-akl">tsawa</AUni> -<AUni ws="qvm-x-ame">tsawa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chawa.n</AUni> -<AUni ws="qvm-x-acl">*chawa.n</AUni> -<AUni ws="qvm-x-akh">*chawa.n</AUni> -<AUni ws="qvm-x-akl">*chawa.n</AUni> -<AUni ws="qvm-x-ame">*chawa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.295" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e80e64d6-e0da-4aab-98f4-eb623c865cbd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chawa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="00fd1904-e58e-402e-b15a-f4acd87191d2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3566cfa6-ee0a-4d56-a1a6-b4b17d46aa7d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chawa.n 
\entryTyp root 
\gENG store.method 
\gSPN un.método 
\e *chawa.n 
\c N0 
\ach tsawa 
\akh tsawa 
\acl tsawa 
\akl tsawa 
\ame tsawa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="5ccd5697-ea56-47b1-b996-ff815528b7b8" ownerguid="002f8a20-0dfd-4b7e-a22a-b5afeabae1eb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">forgive</AUni> -<AUni ws="es">perdonar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fdfd536c-369c-4668-aec2-ff9df51d78f1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="5cd03601-affa-4236-b9f8-3fd5959056c6" ownerguid="708ecb7c-6247-4a4b-84ba-f6b25c4f027f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sheep</AUni> -<AUni ws="es">oveja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5aef87aa-4ff2-467e-91e2-fe4ab02b4fa6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="5cd0727b-c088-4aaa-8021-2f32807c770e" ownerguid="e2dac1f7-8868-49b4-b849-2f5e6f942e34"> -<Form> -<AUni ws="qvm-x-ach">religiösa</AUni> -<AUni ws="qvm-x-acl">religiösa</AUni> -<AUni ws="qvm-x-akh">religiösa</AUni> -<AUni ws="qvm-x-akl">religiösa</AUni> -<AUni ws="qvm-x-ame">religiösa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="5cd2f365-2d84-451e-9f2d-bc2561eff909" ownerguid="6342c8bf-55b5-400f-af7e-63055fe6813b"> -<Abbreviation> -<AUni ws="en">6.7.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to fastening tools.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>6D Instruments Used in Binding and Fastening</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Fastening tool</AUni> -</Name> -<Questions> -<objsur guid="ebea474e-8edc-4abb-8b2d-3310793b835a" t="o" /> -<objsur guid="467c371c-174b-4beb-a3b4-af81d99df342" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="761706fe-d289-4ace-b2c3-ab15d80dba7f" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="5cd494b5-995d-4b5f-a3c1-f8209dc0999f" ownerguid="12c63812-f1f5-4d11-8ca9-55980271341b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="64fe4806-1917-4d66-b394-c1f5cd6075d4" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">birthday</AUni> -<AUni ws="es">cumpleaños</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="89cfd2ca-8e4c-454f-ad83-96264469bbfc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="5cd4d841-a1fa-4c17-a0ec-c8f5472702f2" ownerguid="bf5352cf-3507-441b-9a6e-9a9ae2d4bf97"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="ad8e299f-1d96-4666-ba6a-39a851d52fb1" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">to.eat</AUni> -<AUni ws="es">comer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f69667c3-a01d-49bd-8565-d45a284be800" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5cd58907-3499-41be-8331-79d8ed747e8e" ownerguid="7b17e304-9a3f-463f-8216-cd1e1e119e0e"> -<ExampleWords> -<AUni ws="en">quotient</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the answer?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5cd8e990-655c-47d8-8807-a66d612481af" ownerguid="15dc9f41-febb-4e65-afe0-84d999892a3c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dream</AUni> -<AUni ws="es">sueño</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9829bf1b-4dbd-4452-93ae-a0bcda5a6442" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="5cd9bc08-d884-4115-ad17-67fbaae186db" ownerguid="e1efcec2-0474-4efb-8c6a-8c9595a17f09"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StText" guid="5cdae613-91b6-4225-b689-679c9cc4247e" ownerguid="1257a971-fcef-4f06-a5e2-c289de5aaf72"> -<DateModified val="2022-9-23 18:26:25.183" /> -<Paragraphs> -<objsur guid="db8ad285-94ab-4e51-90e8-caba4d919ddf" t="o" /> -</Paragraphs> -<RightToLeft val="False" /> -</rt> -<rt class="MoStemAllomorph" guid="5cdc913a-8edc-4af5-82a3-e7b57ff2366c" ownerguid="ff2767a2-d657-4719-a16a-a746592af088"> -<Form> -<AUni ws="qvm-x-ach">uyti</AUni> -<AUni ws="qvm-x-acl">uyti; uyte</AUni> -<AUni ws="qvm-x-akh">uyti</AUni> -<AUni ws="qvm-x-akl">uyti; uyte</AUni> -<AUni ws="qvm-x-ame">uyti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="5cdecc84-fe8e-4a60-a8ac-7b70f887f8e0" ownerguid="628d8675-0a30-46be-a46d-8a584a52ad5b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">make.mud.wall</AUni> -<AUni ws="es">tapiar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c69c6938-e731-426e-bf22-a428907d08ad" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="5ce3853c-5229-4983-a42e-00feadcd2738" ownerguid="a6ec503d-379e-478f-89f3-107fc84fedf7"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Runacunata tantyatsinanpag Jesucristo niptinmi musyantsi Jesucristo yachatsishganta escribinanpagpis apostolcuna autorizädu cashganta.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="5ce69ce9-e37b-4465-960b-da3ee4a3e3d6" ownerguid="d83ebe2c-c1d6-49ec-a4a9-1cdced843387"> -<ExampleWords> -<AUni ws="en">regain consciousness, come to, come out of the coma</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to regaining consciousness?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5ce6a697-4af5-40c0-a1c6-993ba966210b" ownerguid="467dd680-ac64-4dc4-8a17-1cfe297d3392"> -<ExampleWords> -<AUni ws="en">complicated, complex, intricate, elaborate, convoluted, sophisticated, tortuous, variable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is complicated?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5ce6f0d8-3b4b-4723-9526-88451429b850"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nagtsa</AUni> -<AUni ws="qvm-x-acl">nagtsa</AUni> -<AUni ws="qvm-x-akh">naqtsa</AUni> -<AUni ws="qvm-x-akl">naqtsa</AUni> -<AUni ws="qvm-x-ame">naqtsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñaqcha.n</AUni> -<AUni ws="qvm-x-acl">*ñaqcha.n</AUni> -<AUni ws="qvm-x-akh">*ñaqcha.n</AUni> -<AUni ws="qvm-x-akl">*ñaqcha.n</AUni> -<AUni ws="qvm-x-ame">*ñaqcha.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.588" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="debea567-cf04-4f7c-8491-c018d0298e37" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñaqcha.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aef4f6cf-d138-4765-8555-da088e94035f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="307a53b8-0a72-4a94-9108-f3e3ec2821b6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñaqcha.n 
\entryTyp root 
\gENG comb 
\gSPN peine 
\e *ñaqcha.n 
\c N0 
\ach nagtsa 
\akh naqtsa 
\acl nagtsa 
\akl naqtsa 
\ame naqtsa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="5ce7968a-f3ce-4bc9-9243-2df975f560ba" ownerguid="537b2e3f-4ab8-4e19-ac8b-fbcf42ca8b75"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StStyle" guid="5ce84d6f-4e4c-45f8-8e77-555471f3efbe" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="7d2c80cd-af87-4d56-8337-cfd389b775bb" t="r" /> -</BasedOn> -<Context val="4" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Book ID</Uni> -</Name> -<Next> -<objsur guid="5ce84d6f-4e4c-45f8-8e77-555471f3efbe" t="r" /> -</Next> -<Rules> -<Prop></Prop> -</Rules> -<Structure val="0" /> -<Type val="0" /> -<UserLevel val="0" /> -</rt> -<rt class="MoStemMsa" guid="5cf2ed80-9593-4ec2-9f59-650567bb3500" ownerguid="4de25240-867b-4e2a-845c-14f2bc956e0d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5cf3fe35-ee5a-4974-8236-d246033cf297" ownerguid="a3ca2a31-259e-4e15-9696-75b0c81886e9"> -<ExampleWords> -<AUni ws="en">straighten, straighten out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to making something straight?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5cf4e498-d763-4d95-aa81-11d2c91c2558" ownerguid="627280f0-4f98-4b31-ad23-eabe37b002ad"> -<ExampleWords> -<AUni ws="en">get thinner, grow thinner</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to something becoming thin?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5cf983a8-9c6c-4944-a93a-5ec856c38498" ownerguid="2e4ce5bf-f891-48a2-acf7-498be8718921"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">big</AUni> -<AUni ws="es">grande</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="857ed72f-f2e9-42be-b917-ffdee7a2c084" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="5cfd1f2d-3642-4a9e-b03c-64b0fc39c7f5" ownerguid="c2c44f7a-4add-4907-addd-12cb05044695"> -<Form> -<AUni ws="qvm-x-ach">lagtu</AUni> -<AUni ws="qvm-x-acl">lagtu; lagtu; lagto</AUni> -<AUni ws="qvm-x-akh">laqtu</AUni> -<AUni ws="qvm-x-akl">laqtu; laqtu; laqto</AUni> -<AUni ws="qvm-x-ame">laqtu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="5d0003cd-165e-4f99-b843-513cccda9f76" ownerguid="8a731984-bfbb-4870-886c-4d74dc671251"> -<Form> -<AUni ws="qvm-x-ach">firmi</AUni> -<AUni ws="qvm-x-acl">firmi</AUni> -<AUni ws="qvm-x-akh">firmi</AUni> -<AUni ws="qvm-x-akl">firmi</AUni> -<AUni ws="qvm-x-ame">firmi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="5d0280d7-b338-4e4b-8b33-ab41f9e85d4c" ownerguid="3d3ee180-caea-48b0-ad1f-ab9b74fb7cc1"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5d02bcb8-a86d-487d-a839-26b67c9efd14" ownerguid="f6e416b3-50b1-4e48-8a39-2998725b1c79"> -<ExampleWords> -<AUni ws="en">grant a divorce, annul, annulment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a judge ending a marriage?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5d045df9-8dbb-4018-80f4-fb7dee7a2085" ownerguid="1168d136-6344-4f8f-b717-9d921e1e8cf9"> -<Form> -<AUni ws="qvm-x-ach">campu; campo</AUni> -<AUni ws="qvm-x-acl">campu; campu; campo</AUni> -<AUni ws="qvm-x-akh">campu; campo</AUni> -<AUni ws="qvm-x-akl">campu; campu; campo</AUni> -<AUni ws="qvm-x-ame">campu; campo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5d048037-bfe3-4ad1-982a-30dd0f14d482" ownerguid="0066f0f7-02dd-4f8e-afa5-59b8cb5a434a"> -<ExampleWords> -<AUni ws="en">betrayer, collaborator, informant, informer, Judas, rat, renegade, saboteur, snitch, squealer, subversive, tattle-tale, traitor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a person who betrays someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5d063e5b-5aa7-46e2-971b-052ff85c4f84" ownerguid="451a3659-8fc4-473e-8a9a-e1691fb4b9f8"> -<Form> -<AUni ws="qvm-x-ach">nana</AUni> -<AUni ws="qvm-x-acl">nana</AUni> -<AUni ws="qvm-x-akh">nana</AUni> -<AUni ws="qvm-x-akl">nana</AUni> -<AUni ws="qvm-x-ame">nana</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="5d07a7f9-d99a-40ce-9099-5ef5b9ec5010" ownerguid="8602761b-c356-403d-a5cf-8687d677c5c7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">päca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">päca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">päka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">päka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">päku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e89f4461-706d-4840-bf9f-bfa3b395d737" t="r" /> -</Morph> -<Msa> -<objsur guid="f32a5a50-f426-45b8-ae08-eba8e0a53b74" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="5d0c5aa2-3102-4c17-859b-64121f3cb486" ownerguid="3393b3b2-b324-408d-9c59-057a0de9c3bd"> -<ExampleWords> -<AUni ws="en">try for, go for, try out for, shoot for, make a bid for, struggle for, go all out, go after</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to trying hard to get something that you really want?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5d0defe9-845f-4cf7-a62c-73a2e8b4e839" ownerguid="9da5588e-626a-4347-868d-e378863f591d"> -<Form> -<AUni ws="qvm-x-ach">mayoría; mayoria</AUni> -<AUni ws="qvm-x-acl">mayoría; mayoria</AUni> -<AUni ws="qvm-x-akh">mayoría; mayoria</AUni> -<AUni ws="qvm-x-akl">mayoría; mayoria</AUni> -<AUni ws="qvm-x-ame">mayoría; mayoria</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="5d1053cd-a135-434b-9335-fb12b286508f" ownerguid="a7ad13d3-e658-4b2a-beb4-18c6758a787b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="5d112c4f-7089-41aa-8eca-8b4643bba3e6" ownerguid="34cbaedb-160b-467b-8acd-46155d6a2400"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="5d11b7b1-957a-42de-999d-1f0327a5895a" ownerguid="a8ab3410-2af8-46d3-bd43-f01f90d33e1d"> -<Form> -<AUni ws="qvm-x-ach">piti</AUni> -<AUni ws="qvm-x-acl">piti; pite</AUni> -<AUni ws="qvm-x-akh">piti</AUni> -<AUni ws="qvm-x-akl">piti; pite</AUni> -<AUni ws="qvm-x-ame">piti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="5d12f405-7236-4ca6-8a86-fc09da21dda2"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">nacioncho</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexExampleSentence" guid="5d14a817-c4b4-40a5-a365-5bb5693df44d" ownerguid="e54a6186-1383-45fa-a6a9-05bda2788d47"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1CH 11.23 Lanzanpis cargan telarpa tormannog racumi.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="5d15655e-39a4-44c1-8075-dbfbd6402132" ownerguid="950625cc-d007-4bac-9bb4-ec2d9bbf8f4d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">reckoning</AUni> -<AUni ws="es">cuenta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="62ceb696-99c6-4d76-a394-e6beda85d262" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="5d15a96f-521a-47b5-8fc3-d28a970cfa9e" ownerguid="b7ba320b-ee5b-499a-8e1f-ab37678473fe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wash</AUni> -<AUni ws="es">lavar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="232570be-c370-4d86-a116-869480fe4890" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5d15fd4a-ca42-4f06-b1c1-9a819656e6ed" ownerguid="2e97b83d-1152-473f-9cbe-347f0655041a"> -<ExampleWords> -<AUni ws="en">scratch, pick (your ear), clean, cup (put hand behind to help hearing), pierce (for earrings)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What do people do to their ears?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5d183e37-24ae-4993-b260-8c045c929abe" ownerguid="a3f1d702-8ca1-457a-a569-eb6fdf696bbe"> -<ExampleWords> -<AUni ws="en">admirable, creditable, estimable, honorable, meritorious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that someone approves of?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5d1a1dab-bd44-44b3-b7bb-19936167c28c" ownerguid="320dd3d3-c487-4397-8e6e-7af6ccac5723"> -<Form> -<AUni ws="qvm-x-ach">mawa</AUni> -<AUni ws="qvm-x-acl">mawa</AUni> -<AUni ws="qvm-x-akh">mawa</AUni> -<AUni ws="qvm-x-akl">mawa</AUni> -<AUni ws="qvm-x-ame">mawa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="5d1bb537-bcee-49f4-bb91-86f347bc471d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">atsicya; atsicya:</AUni> -<AUni ws="qvm-x-acl">atsicya; atsicya:</AUni> -<AUni ws="qvm-x-akh">atsikya; atsikya:</AUni> -<AUni ws="qvm-x-akl">atsikya; atsikya:</AUni> -<AUni ws="qvm-x-ame">atsikya; atsikya:</AUni> -</Custom> -<AlternateForms> -<objsur guid="7aa21d9e-0a2a-4656-943c-68d3fa53b868" t="o" /> -<objsur guid="5559606d-2cac-4c7a-bda5-2f5dc561d430" t="o" /> -</AlternateForms> -<CitationForm> -<AUni ws="qvm-x-ach">*achikyä</AUni> -<AUni ws="qvm-x-acl">*achikyä</AUni> -<AUni ws="qvm-x-akh">*achikyä</AUni> -<AUni ws="qvm-x-akl">*achikyä</AUni> -<AUni ws="qvm-x-ame">*achikyä</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.639" /> -<DateModified val="2022-10-17 13:18:35.994" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1d99d348-34ab-4c49-b345-891795a22c6d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*achikya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b76a828b-eac9-466a-9339-798850f3f534" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="12db9296-9995-41cc-888b-6085c55b83e5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *achikya: 
\entryTyp root 
\gENG shine 
\gSPN alumbrar 
\e *achikya: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach atsicya foreshortened 
\ach atsicya: 
\akh atsikya foreshortened 
\akh atsikya: 
\acl atsicya foreshortened 
\acl atsicya: 
\akl atsikya foreshortened 
\akl atsikya: 
\ame atsikya foreshortened 
\ame atsikya:</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="5d1dae76-68d4-48b6-84d0-617ebcfbdcf7"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">nakaptiki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="5d20d7b4-fc80-4289-a895-00ddf2f32376"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">caserío; caseriu</AUni> -<AUni ws="qvm-x-acl">caseri:u; caseriu; caserio</AUni> -<AUni ws="qvm-x-akh">caserío; caseriu</AUni> -<AUni ws="qvm-x-akl">caseri:u; caseriu; caserio</AUni> -<AUni ws="qvm-x-ame">caserío; caseriu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+caserío.1</AUni> -<AUni ws="qvm-x-acl">+caserío.1</AUni> -<AUni ws="qvm-x-akh">+caserío.1</AUni> -<AUni ws="qvm-x-akl">+caserío.1</AUni> -<AUni ws="qvm-x-ame">+caserío.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.720" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="81e169bc-a8cb-48af-a018-f6c0acf06726" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+caserío.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a5d66a3a-979d-47c1-9afb-c4b9bb14020b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="055a68c7-5912-4021-a911-4a9623724b45" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +caserío.1 
\entryTyp root 
\gENG hamlet 
\gSPN caserío 
\e +caserío.1 
\c N0 
\ach caserío / _# 
\ach caseriu / ~_# 
\akh caserío / _# 
\akh caseriu / ~_# 
\acl caseri:u / _# 
\acl caseriu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl caserio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl caseri:u / _# 
\akl caseriu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl caserio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame caserío / _# 
\ame caseriu / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="5d21b3f1-85d5-4999-af64-c4d0101050c0" ownerguid="9b0fef63-5935-447d-801a-bb02dd6212bb"> -<Abbreviation> -<AUni ws="en">4.3.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.225" /> -<DateModified val="2022-9-23 16:55:8.225" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being humble--to not think that you are better than other people, or to not think that you are better than you really are, and to not talk or act as if you were better than other people.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88F Modesty, Propriety; 88G Humility</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Humble</AUni> -</Name> -<Questions> -<objsur guid="b92b7ad9-f5a6-4de9-9ca3-8b724d3b8ba9" t="o" /> -<objsur guid="95ea7fea-1a51-4ac9-ae47-9763021c946c" t="o" /> -<objsur guid="0f51e815-a4a2-4e4d-92ad-2da4a79ed562" t="o" /> -<objsur guid="5ad4adf0-e0fe-492f-9761-a25ce238a984" t="o" /> -<objsur guid="0f59f768-5efb-412e-932f-e41e0be7cbb7" t="o" /> -<objsur guid="2cde4242-ccd0-4400-a2ee-19f5f5aab465" t="o" /> -<objsur guid="cac8b767-5456-4e92-ba37-1b8291f3a6ed" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="5d238526-6d17-40c2-8a6a-5c681c7469de"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">borda</AUni> -<AUni ws="qvm-x-acl">borda</AUni> -<AUni ws="qvm-x-akh">borda</AUni> -<AUni ws="qvm-x-akl">borda</AUni> -<AUni ws="qvm-x-ame">borda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bordar</AUni> -<AUni ws="qvm-x-acl">+bordar</AUni> -<AUni ws="qvm-x-akh">+bordar</AUni> -<AUni ws="qvm-x-akl">+bordar</AUni> -<AUni ws="qvm-x-ame">+bordar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.971" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ce5be3b7-adf8-4d95-b0f4-948cc09d5653" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bordar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e532a7b2-64ba-4c62-98c0-36fa41a10a4f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="673ba12c-344a-402e-81c2-dca8173885db" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bordar 
\entryTyp root 
\gENG embroider 
\gSPN bordar 
\e +bordar 
\c V2 
\ach borda 
\akh borda 
\acl borda 
\akl borda 
\ame borda</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="5d23894f-6fa9-4d32-9376-4445b87e906d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yarpa</AUni> -<AUni ws="qvm-x-acl">yarpa</AUni> -<AUni ws="qvm-x-akh">yarpa</AUni> -<AUni ws="qvm-x-akl">yarpa</AUni> -<AUni ws="qvm-x-ame">yarpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yarpa</AUni> -<AUni ws="qvm-x-acl">*yarpa</AUni> -<AUni ws="qvm-x-akh">*yarpa</AUni> -<AUni ws="qvm-x-akl">*yarpa</AUni> -<AUni ws="qvm-x-ame">*yarpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.749" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c9777f31-7d74-4129-9c1f-371fd36b7319" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yarpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ec49278f-13c3-4a3f-8610-07ca758fe2a1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="63d011ce-a69e-4122-9f69-4a3e4750c9c1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yarpa 
\entryTyp root 
\gENG 
\gSPN 
\e *yarpa 
\c R0 
\ach yarpa 
\akh yarpa 
\acl yarpa 
\akl yarpa 
\ame yarpa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="5d26c1b7-0cf4-433d-a4ca-19931814ec40" ownerguid="5cb7a702-6c8d-4bc7-b4a4-8eab7fe68ede"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5d274620-404f-459f-a309-7df773c63929" ownerguid="741c417a-11e9-460c-9ab3-51b8220df016"> -<ExampleWords> -<AUni ws="en">swell, mount up, pile up, rise and fall, curl</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe a wave getting bigger?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="5d2800b7-2778-498f-be2d-fc75ecb226c8" ownerguid="42882481-3390-4c4b-b98d-a50cd21c60d7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pasa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pasa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pasa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pasa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pasa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="883ada6f-0bf2-4887-9c50-61a9cb250b4c" t="r" /> -</Morph> -<Msa> -<objsur guid="b7f64f45-98d1-4eac-9cd3-956bf92b1494" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="5d2bf542-b9e8-4a08-afb9-0e0267628bda" ownerguid="590570c5-3267-4966-b0db-2af7a5105c83"> -<ExampleWords> -<AUni ws="en">(In written English a hyphen is used to indicate that something happens from one time until another time, as in "8:00-5:00" or "Monday-Friday".)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something will happen until something else happens?</AUni> -</Question> -</rt> -<rt class="Segment" guid="5d2d9fdd-666d-41c9-836e-80129c641970" ownerguid="73bec73b-0953-4483-a47c-1947eb0522b1"> -<Analyses> -<objsur guid="d6b0dfe1-8cb8-465f-bf15-c6dc6ff93d65" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="5d2db14b-471b-4132-8043-54b30575e542" ownerguid="50826f66-6321-4219-a56d-825b561dca8c"> -<Form> -<AUni ws="qvm-x-ach">wacra</AUni> -<AUni ws="qvm-x-acl">wacra</AUni> -<AUni ws="qvm-x-akh">wakra</AUni> -<AUni ws="qvm-x-akl">wakra</AUni> -<AUni ws="qvm-x-ame">wakra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="5d2f1d7a-d1b2-4735-8358-b84ad48485ae" ownerguid="5b39b650-7475-4958-8653-9c3f4389a28b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">loose</AUni> -<AUni ws="es">suelto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9f8e38f6-f079-49ef-8b2f-b479bd162597" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="5d34fc3f-83f0-48f9-95fe-1b62c6ceb6c9" ownerguid="33e66099-515e-41f3-99a7-4201aff047c2"> -<Form> -<AUni ws="qvm-x-ach">sagpi</AUni> -<AUni ws="qvm-x-acl">sagpi; sagpi; sagpe</AUni> -<AUni ws="qvm-x-akh">saqpi</AUni> -<AUni ws="qvm-x-akl">saqpi; saqpi; saqpe</AUni> -<AUni ws="qvm-x-ame">saqpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5d38fb3b-00f7-4695-a1f3-cdb338ea1416" ownerguid="31debfe3-91da-4588-b433-21b0e14a101b"> -<ExampleWords> -<AUni ws="en">road repairs, repaving, repairing, fixing, detour, fill holes, patching holes</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words are used of fixing a road?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5d3a3d66-f245-4558-8152-0eb3a421bc0e" ownerguid="d71c3011-e4cf-443a-b2c8-f39662c0370a"> -<Form> -<AUni ws="qvm-x-ach">quiciu; quicio</AUni> -<AUni ws="qvm-x-acl">quiciu; quiciu; quicio</AUni> -<AUni ws="qvm-x-akh">quiciu; quicio</AUni> -<AUni ws="qvm-x-akl">quiciu; quiciu; quicio</AUni> -<AUni ws="qvm-x-ame">quiciu; quicio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="5d3be5a6-3867-4e50-b050-9d3a0d55484b" ownerguid="5703d451-de4d-4ab9-a58d-1b1ff9a463f7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="d8d8d91f-f856-48c8-a341-8fae38e4de67" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">push.back.in</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fab5b48b-5cfc-4115-9712-bcecbfaa9e92" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5d3e12ca-b6ec-48d8-a576-c3d95362dd81" ownerguid="a894d991-d5da-45a6-9c62-009133257f36"> -<ExampleWords> -<AUni ws="en">convulsion, chills, fit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to the body shaking due to illness?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5d3fb59c-adce-48cd-adfc-84c905d503df"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shawanta</AUni> -<AUni ws="qvm-x-acl">shawanta</AUni> -<AUni ws="qvm-x-akh">shawanta</AUni> -<AUni ws="qvm-x-akl">shawanta</AUni> -<AUni ws="qvm-x-ame">shawanta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shawanta</AUni> -<AUni ws="qvm-x-acl">*shawanta</AUni> -<AUni ws="qvm-x-akh">*shawanta</AUni> -<AUni ws="qvm-x-akl">*shawanta</AUni> -<AUni ws="qvm-x-ame">*shawanta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.561" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d06ac658-1f35-4a2c-bf41-f2ae021c335e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shawanta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f112e361-8e17-4727-aac5-6f4af2cea24b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2d9aa1d3-1518-4780-888f-ccbe169b14cc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shawanta 
\entryTyp root 
\gENG hang.over 
\gSPN colgar 
\e *shawanta 
\c V1 
\ach shawanta 
\akh shawanta 
\acl shawanta 
\akl shawanta 
\ame shawanta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5d4119d5-6219-4d57-96fe-c83f456333aa" ownerguid="59bd1a58-be99-4685-acf7-9f17bac9c430"> -<Form> -<AUni ws="qvm-x-ach">albirti</AUni> -<AUni ws="qvm-x-acl">albirti; albirte</AUni> -<AUni ws="qvm-x-akh">albirti</AUni> -<AUni ws="qvm-x-akl">albirti; albirte</AUni> -<AUni ws="qvm-x-ame">albirti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="5d4412cb-1df4-41a9-a573-eb7e279bce3b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mucla</AUni> -<AUni ws="qvm-x-acl">mucla</AUni> -<AUni ws="qvm-x-akh">mukla</AUni> -<AUni ws="qvm-x-akl">mukla</AUni> -<AUni ws="qvm-x-ame">mukla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*muklla</AUni> -<AUni ws="qvm-x-acl">*muklla</AUni> -<AUni ws="qvm-x-akh">*muklla</AUni> -<AUni ws="qvm-x-akl">*muklla</AUni> -<AUni ws="qvm-x-ame">*muklla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.487" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7be6ea90-1257-4e6b-9d55-20d1d05dd045" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*muklla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="711f3cd6-b458-47c3-bdce-bfc169fb523f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dad95428-a496-41db-ac59-83d62f7afbaa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *muklla 
\entryTyp root 
\gENG 
\gSPN 
\e *muklla 
\c N0 
\ach mucla 
\akh mukla 
\acl mucla 
\akl mukla 
\ame mukla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="5d467cef-1fd8-47ea-928c-92a74a26fb77" ownerguid="6912fd97-2452-42b3-b772-458b9bdeffe0"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5d469677-40ca-4493-9eba-1378207b2ce5" ownerguid="b14db9f4-5e1d-4a2b-bec0-0d6bcb5b1a31"> -<ExampleWords> -<AUni ws="en">fall down, collapse, fall in, cave in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to a building falling?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5d48e06b-cacf-4743-a16b-d512964be5eb" ownerguid="fa32115e-e389-47bd-91e1-61779172ccf2"> -<ExampleWords> -<AUni ws="en">cause, source</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the cause of a disease?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5d50e7a6-5442-4d69-8d21-01c8870dd078" ownerguid="cf079329-b4c0-4dfd-acb9-dd2e6dee6338"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5d517513-09c0-489c-8956-2de162386b7d" ownerguid="dc177f3c-d0fd-4232-adf1-a77b339cdbb2"> -<ExampleWords> -<AUni ws="en">office, factory, shop, laboratory, plant, greenhouse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What kinds of buildings are used for work and to make things?</AUni> -</Question> -</rt> -<rt class="CmPerson" guid="5d543e4f-50d7-41fe-93a7-cf851c1d229e" ownerguid="d72de032-ea5e-11de-84f3-0013722f8dec"> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<DateOfBirth val="0" /> -<DateOfDeath val="0" /> -<ForeColor val="0" /> -<Gender val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<IsResearcher val="False" /> -<Name> -<AUni ws="en">Default User</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="5d55daf3-b5a7-4a51-9da2-347b3efc804b" ownerguid="1c512719-6ecb-48cb-980e-4ff20e8b5f9b"> -<ExampleWords> -<AUni ws="en">amulet, fetish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to things used to worship spirits?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5d5933ba-851d-4205-9e8b-1b97526280dd" ownerguid="41c075a9-cc3f-4e64-8b24-b0e9d16472ca"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5d5a2496-7bbc-4d15-8099-4141e3ff2dd8" ownerguid="5c31bdf6-901f-4f14-ab64-7a99524710fc"> -<ExampleWords> -<AUni ws="en">not care, shrug it off, be on the fence, middle-of-the-road</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling indifferent?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="5d610939-e395-4b29-982f-9f135d8d35e4" ownerguid="9dca62a8-2127-46bd-87d1-6057b729c7c6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">päca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">päca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">päka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">päka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">päku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e89f4461-706d-4840-bf9f-bfa3b395d737" t="r" /> -</Morph> -<Msa> -<objsur guid="f32a5a50-f426-45b8-ae08-eba8e0a53b74" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="5d654943-5ce0-4ae5-a598-9b99cfdf380b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">enga:ñu</AUni> -<AUni ws="qvm-x-acl">enga:ñu; enga:ñu; enga:ño</AUni> -<AUni ws="qvm-x-akh">enga:ñu</AUni> -<AUni ws="qvm-x-akl">enga:ñu; enga:ñu; enga:ño</AUni> -<AUni ws="qvm-x-ame">enga:ñu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+engaño</AUni> -<AUni ws="qvm-x-acl">+engaño</AUni> -<AUni ws="qvm-x-akh">+engaño</AUni> -<AUni ws="qvm-x-akl">+engaño</AUni> -<AUni ws="qvm-x-ame">+engaño</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.467" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="26f9e33b-5352-4d15-a37d-d95a9de3c560" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+engaño</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d35ddad3-f496-4dd1-a6c1-351f8fee9898" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="74573fad-59e1-40e1-82ea-7690598a9715" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +engaño 
\entryTyp root 
\gENG deceit 
\gSPN engaño 
\e +engaño 
\c N0 
\ach enga:ñu 
\akh enga:ñu 
\acl enga:ñu / _# 
\acl enga:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl enga:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl enga:ñu / _# 
\akl enga:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl enga:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame enga:ñu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5d688afc-ce70-49e2-84d0-c097e19ad384" ownerguid="2158eb7d-eb59-4740-9628-9080d7f51a97"> -<ExampleWords> -<AUni ws="en">Time to get up. Rise and shine. Hey, sleepyhead.</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What do people say to wake someone up?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5d6b7ed4-edbf-4d64-8c1f-1872098d7567" ownerguid="6137239a-b469-46be-b7cb-b9ac22fcc195"> -<ExampleWords> -<AUni ws="en">teaching, subject, education</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to what is taught?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5d708102-1321-4961-b63d-af02ae2ec512" ownerguid="f2b0d936-da1a-4871-b734-24e101878b58"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="5d72af95-facd-4be2-80e9-37528f0f34b5" ownerguid="ffd0547e-e537-4614-ac3f-6d8cd3351f33"> -<Abbreviation> -<AUni ws="en">1.6.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the parts of small animals.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Parts of small animals</AUni> -</Name> -<Questions> -<objsur guid="1057d3fd-15f3-460d-97dc-be61fbc1b179" t="o" /> -<objsur guid="36036966-410a-453d-a8b6-ae6dc7e12b61" t="o" /> -<objsur guid="e2997c31-f32a-4c83-91f9-65c8c2fdcd9b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="5d751ae0-4fbf-45f6-a96b-cb8329cf5b35" ownerguid="71db9179-0dd5-445f-b153-c1857c6cf612"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -<Sense> -<objsur guid="8825f180-b774-47d3-9faa-e76a889e064f" t="r" /> -</Sense> -</rt> -<rt class="MoInflAffixSlot" guid="5d7569d5-d194-43a3-8975-abfbf7ee2b2f" ownerguid="86ff66f6-0774-407a-a0dc-3eeaf873daf7"> -<Name> -<AUni ws="en">polite</AUni> -</Name> -<Optional val="True" /> -</rt> -<rt class="CmDomainQ" guid="5d7831a8-a970-4e8d-bebf-256ed17a7edd" ownerguid="e08e252a-9227-42e4-bcb8-b803d25071b6"> -<ExampleWords> -<AUni ws="en">embarrassment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something that causes someone to feel embarrassed?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5d7b7dff-cb1b-4ca7-bcc5-68719aa7ff9b" ownerguid="4e17c054-ad76-4dac-8a4c-2127f5eb317b"> -<Form> -<AUni ws="qvm-x-ach">räya</AUni> -<AUni ws="qvm-x-acl">räya</AUni> -<AUni ws="qvm-x-akh">räya</AUni> -<AUni ws="qvm-x-akl">räya</AUni> -<AUni ws="qvm-x-ame">räya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="5d82b838-f0cf-43f2-ab08-9329f2b6d7ae" ownerguid="aa51dff6-e5c7-4506-bd13-32e255f6061f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pound</AUni> -<AUni ws="es">libra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bd7907bb-1435-4291-bfa7-2f10417a0be4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="5d870c36-d778-473c-a1a7-f426c430d315" ownerguid="557c912e-5223-4c38-a818-f3638bb3b1ef"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="50d70998-b590-4eee-87a1-23d56a1b0c10" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">danger</AUni> -<AUni ws="es">peligro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a9b1ce81-3034-433c-907a-aa582e9b69da" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="5d872b5c-49e4-4ffd-bb8f-cd46f444e95e" ownerguid="8cf22568-7740-4959-b701-6fab09c3c1fa"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EPH 3.18 Pay cuyacog cashganga pasaypa anchumi, largumi, altumi y profundumi caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="5d8b0ac4-78d9-4a70-afc7-dbcff49875bc" ownerguid="bcae71a9-91f9-4d17-ac02-009f39940f38"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="564c1e31-73e0-4162-aaf5-f6bd71eed1f6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5d8cae53-6f77-494b-84d0-189c29205104"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sino:</AUni> -<AUni ws="qvm-x-acl">sino:</AUni> -<AUni ws="qvm-x-akh">sino:</AUni> -<AUni ws="qvm-x-akl">sino:</AUni> -<AUni ws="qvm-x-ame">sino:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sino</AUni> -<AUni ws="qvm-x-acl">+sino</AUni> -<AUni ws="qvm-x-akh">+sino</AUni> -<AUni ws="qvm-x-akl">+sino</AUni> -<AUni ws="qvm-x-ame">+sino</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.683" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aa5e6ff6-c9fa-4974-9715-b90cbb5e8420" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sino</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="87484bc6-021f-43b5-9707-c26444f38c79" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="80eec1b8-6795-44d9-8a26-ba46af1e09ee" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sino 
\entryTyp root 
\gENG rather 
\gSPN sino 
\e +sino 
\c ONSHEV 
\mp NeverForeshortened 
\ach sino: 
\akh sino: 
\acl sino: 
\akl sino: 
\ame sino: 
\mp +FinalC 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="5d8ce688-9e5a-4dea-b62e-e59cb0ec3922" ownerguid="4cd2b299-6eef-4173-a992-868d014b802b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="d68e547d-fd2c-4fa4-b93d-38161ab934c0" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">darken</AUni> -<AUni ws="es">oscurercer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9c46a35b-0a14-45ee-920e-b4c7a127dadb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5d90ec7a-591b-485f-b788-619e26b87851"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shala</AUni> -<AUni ws="qvm-x-acl">shala</AUni> -<AUni ws="qvm-x-akh">shala</AUni> -<AUni ws="qvm-x-akl">shala</AUni> -<AUni ws="qvm-x-ame">shala</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shalla.n</AUni> -<AUni ws="qvm-x-acl">*shalla.n</AUni> -<AUni ws="qvm-x-akh">*shalla.n</AUni> -<AUni ws="qvm-x-akl">*shalla.n</AUni> -<AUni ws="qvm-x-ame">*shalla.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.531" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f03beeae-3f27-45e0-bc7f-09c556b6ec71" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shalla.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c631712a-9932-4bee-8750-4aaa65f2fa34" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="83b071ec-d634-4c76-aef0-6a4ea6b206be" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shalla.n 
\entryTyp root 
\gENG crushed.rock 
\gSPN cascajo.ped 
\e *shalla.n 
\c N0 
\ach shala 
\akh shala 
\acl shala 
\akl shala 
\ame shala 
\i JOB 8.17 Jachapa sapincuna shalaman sapitsashgannogmi paycunapis rïcuyashpan fuerti ricacun.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5d92372a-45cd-41f2-81d2-484637c263bc" ownerguid="4cfcff0f-d396-4309-b67c-c7357facd62c"> -<Form> -<AUni ws="qvm-x-ach">imayca</AUni> -<AUni ws="qvm-x-acl">imayca</AUni> -<AUni ws="qvm-x-akh">imayka</AUni> -<AUni ws="qvm-x-akl">imayka</AUni> -<AUni ws="qvm-x-ame">imayka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="5d92b4a7-baf7-495e-bb43-4f733cc55935" ownerguid="d68911f6-6507-483a-b015-44726fdf868a"> -<Abbreviation> -<AUni ws="en">6.1.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.367" /> -<DateModified val="2022-9-23 16:55:8.367" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being experienced at doing something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Experienced</AUni> -</Name> -<Questions> -<objsur guid="08c9c69c-4459-4edc-961c-936bae835fc7" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="ea839451-f89e-4432-b361-3086ca4f13fd" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="5d93fda1-ef72-4d8c-a081-88ace7465fa7" ownerguid="1ec85151-eba0-48f4-b56d-4f8040602a4b"> -<ExampleWords> -<AUni ws="en">make a will, draw up a will, plan your estate, estate planning, testate, intestate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the process of making a will?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5d9428cc-5973-4616-8b7d-01dafdcd7254" ownerguid="fa71ac96-3ee7-421a-9cb9-98ab936fb18d"> -<Form> -<AUni ws="qvm-x-ach">guencha</AUni> -<AUni ws="qvm-x-acl">guencha</AUni> -<AUni ws="qvm-x-akh">qencha</AUni> -<AUni ws="qvm-x-akl">qencha</AUni> -<AUni ws="qvm-x-ame">qincha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="5d950795-34e3-4b43-bb6b-cf638db4b431" ownerguid="73b3b724-9942-4bfb-bcd4-5d295743e67e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">barbecho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ff11f3fb-1713-499a-bdc6-16ce378260b1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5d977783-a1f3-4de8-9889-032296f1818e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jogu</AUni> -<AUni ws="qvm-x-acl">jogu; jogo</AUni> -<AUni ws="qvm-x-akh">joqu</AUni> -<AUni ws="qvm-x-akl">joqu; joqo</AUni> -<AUni ws="qvm-x-ame">huqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*huqu</AUni> -<AUni ws="qvm-x-acl">*huqu</AUni> -<AUni ws="qvm-x-akh">*huqu</AUni> -<AUni ws="qvm-x-akl">*huqu</AUni> -<AUni ws="qvm-x-ame">*huqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.782" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9d857fba-e4ab-4e1e-9f15-60e7308ea5f5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*huqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="924fafd4-deef-4d01-aeac-831c57538dd3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="98ca132c-0904-4008-8dd2-6f152dbf45a4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *huqu 
\entryTyp root 
\gENG be.contagious 
\gSPN contagiar 
\e *huqu 
\c V2 
\ach jogu 
\akh joqu 
\acl jogu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl jogo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl joqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl joqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame huqu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="5d9a4b83-1cd2-4944-90b1-0a4c118fd1d2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gawi</AUni> -<AUni ws="qvm-x-acl">gawi; gawe</AUni> -<AUni ws="qvm-x-akh">qawi</AUni> -<AUni ws="qvm-x-akl">qawi; qawe</AUni> -<AUni ws="qvm-x-ame">qawi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qawi</AUni> -<AUni ws="qvm-x-acl">*qawi</AUni> -<AUni ws="qvm-x-akh">*qawi</AUni> -<AUni ws="qvm-x-akl">*qawi</AUni> -<AUni ws="qvm-x-ame">*qawi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.155" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="24e5cd5e-b539-4807-9a11-f7f078505f9d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qawi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="773a6ea3-d970-4a35-a48a-99517b9736af" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b3128064-5f17-484b-a164-7a86e2edc8d4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qawi 
\entryTyp root 
\gENG wring 
\gSPN exprimir 
\e *qawi 
\c V2 
\mp +FinalI 
\ach gawi 
\akh qawi 
\acl gawi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gawe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qawi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qawe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qawi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="5d9af6ba-4e69-4309-8fd2-3941002b97c1" ownerguid="31084b3e-4348-489e-ba40-6f8847ef46c5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="5d9afe0b-1d2c-4074-bc6c-7385e2d1be42" ownerguid="574fa2c8-6204-461d-815c-fee1f435af70"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="0e8be017-2958-47ce-bae2-93d7dc2ba841" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">throw.down</AUni> -<AUni ws="es">botar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="793d0517-5c2f-4b41-bf14-41241cf46709" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="5d9c88c6-c7c5-42f1-a17c-a570628e4526" ownerguid="b0c2c50a-effb-45cd-9732-861e34c3ec7f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dirt.clod</AUni> -<AUni ws="es">terrón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c91b3fe8-3da4-4edb-8ac6-4dc5aa1dd0e4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="5d9ef67a-e4ba-47ca-8c8c-ea0f512a66cd" ownerguid="b5b36c31-c56d-44b9-933c-fe0e62d80c25"> -<Abbreviation> -<AUni ws="en">4.3.4.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.235" /> -<DateModified val="2022-9-23 16:55:8.235" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to entrusting something to the care of someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>35E Entrust To the Care Of</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Entrust to the care of</AUni> -</Name> -<Questions> -<objsur guid="fd690316-d78a-45c2-a47f-2e654e0e352d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="5da19132-615b-4f7f-bfa6-d445ae871e3b" ownerguid="27048124-c204-4585-9997-c51728f085d6"> -<ExampleWords> -<AUni ws="en">appreciation, gratitude</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the feeling of wanting to thank someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5da1ace1-7402-4a0d-94ac-d211fa35abba" ownerguid="12300321-6ee6-4f3a-aaee-90d90c7022ab"> -<Form> -<AUni ws="qvm-x-ach">pilpa</AUni> -<AUni ws="qvm-x-acl">pilpa</AUni> -<AUni ws="qvm-x-akh">pilpa</AUni> -<AUni ws="qvm-x-akl">pilpa</AUni> -<AUni ws="qvm-x-ame">pilpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="Segment" guid="5da2d5d2-1946-4aaf-935a-0df3e14dd09d" ownerguid="c495e7e1-4786-42de-82e5-fec137178f57"> -<Analyses> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="fa7aeb71-200a-4a5d-9436-13faa1972fea" t="r" /> -<objsur guid="25651c34-3e31-419d-86b5-cda6907f0a4f" t="r" /> -<objsur guid="7a34d709-dd7d-4ac4-94e8-58e444587dd4" t="r" /> -<objsur guid="a85a5670-81ba-47b9-8443-95e8be60ebec" t="r" /> -<objsur guid="bb723df0-2b97-461e-bae3-564d9c1a0cfd" t="r" /> -<objsur guid="4fccec2d-58a4-466f-a087-a79d6bf13b57" t="r" /> -<objsur guid="afffb5bb-d332-4ad0-b30c-3ea9206a1815" t="r" /> -<objsur guid="94b1e0e9-5365-4697-bd29-1944e0401b92" t="r" /> -</Analyses> -<BeginOffset val="11" /> -</rt> -<rt class="LexSense" guid="5da6d9fc-9533-4728-9938-817f1628f69d" ownerguid="a241fe43-86ce-447f-9996-1f90e013b408"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pass</AUni> -<AUni ws="es">pasar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="60f0f363-143d-48ad-a1c6-0a2f5506061e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="5da99c0e-eb08-4513-ac35-22a73c17ed5b" ownerguid="8a731984-bfbb-4870-886c-4d74dc671251"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="5dabd351-7655-4bee-8719-ccda4522241e" ownerguid="e9f1ef3a-fda5-4b3f-9101-a4b7c421a607"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="5dabf427-d6ec-4910-9c96-6ee8df98474b" ownerguid="3e1121ca-9fe4-4e30-bb6b-46425b3938c0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">talent</AUni> -<AUni ws="es">talento</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="04d5c58f-b000-46f0-909b-a9f982020773" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="5db1b502-7c36-44fb-a7b4-50744e9ec286" ownerguid="3b4b947a-f223-4c87-8839-9f6237cda9f6"> -<Abbreviation> -<AUni ws="en">7.3.4.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.536" /> -<DateModified val="2022-9-23 16:55:8.536" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the functions and actions of the hand.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Actions of the hand</AUni> -</Name> -<Questions> -<objsur guid="dd731dda-c819-431f-b0a2-a19459f6df33" t="o" /> -<objsur guid="be8c9469-ba14-4c39-bd7a-599b07a3d8d1" t="o" /> -<objsur guid="3c646b82-a414-451c-b795-407ceccc1fed" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="5db2f30e-fc08-4ec2-8097-0524018f2ec8" ownerguid="a8a25f74-cf52-43c2-9bf2-41863f060fa6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -</rt> -<rt class="LexSense" guid="5db384de-43b4-4261-8141-49b703676d66" ownerguid="02c11e09-c525-4f1d-aa90-94385e0d3ea7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">citified</AUni> -<AUni ws="es">mestizado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7120aa74-0091-4083-be0b-6c80d6fe075f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5db3e0e5-c02d-4c1d-a9c0-b6419adf76d6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ishca</AUni> -<AUni ws="qvm-x-acl">ishca</AUni> -<AUni ws="qvm-x-akh">ishka</AUni> -<AUni ws="qvm-x-akl">ishka</AUni> -<AUni ws="qvm-x-ame">ishka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ishka</AUni> -<AUni ws="qvm-x-acl">*ishka</AUni> -<AUni ws="qvm-x-akh">*ishka</AUni> -<AUni ws="qvm-x-akl">*ishka</AUni> -<AUni ws="qvm-x-ame">*ishka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.842" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aa36a766-7a7a-4163-b9d4-c4fd68aa4701" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ishka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4e228724-d1ea-4b5f-9796-1b3e5b946486" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ed959d96-44b5-4d1a-9b5c-5694599fa203" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ishka 
\entryTyp root 
\gENG both 
\gSPN dos 
\e *ishka 
\c N1 
\ach ishca 
\akh ishka 
\acl ishca 
\akl ishka 
\ame ishka</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5db46555-6fba-46be-9197-cda6a59a0fa5" ownerguid="fba27833-d6f1-4c36-ac39-28902b29261b"> -<ExampleWords> -<AUni ws="en">kind of like, vaguely resemble</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe two things that are a little similar?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5db4959f-074b-455e-bc6d-c86ab785a88a" ownerguid="d6c36bbe-a6b6-4c25-9ea3-e2289212431f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5db4aac1-f39c-4359-ad60-df9d4e13ec3f" ownerguid="ab8f12fb-57b0-4d61-8ae0-50d7cbc412df"> -<ExampleWords> -<AUni ws="en">ice, drift, snowbank, blanket, snow cover, dusting, icicle, sheet of ice, iceberg, glacier</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to snow or ice on the ground?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5db515ff-5935-410f-8b05-f482172b28f6" ownerguid="f957a4aa-d3d4-4dad-93d1-20565b5158d4"> -<ExampleWords> -<AUni ws="en">cousin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to your father's brother's child?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="5db97c74-f5ba-4a0b-a7b2-cd21069be091" ownerguid="81531d1a-04b9-44ca-92cb-be8555727f04"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -<Sense> -<objsur guid="7cd134ea-89c1-4a60-8992-dcac673bd263" t="r" /> -</Sense> -</rt> -<rt class="LexExampleSentence" guid="5dbc8fe4-c6bf-42d6-808f-484d7ff66b98" ownerguid="4d122530-6468-468f-8946-263801672956"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">LEV 26.16 Tsaymi gamcunaman cachamushag fiebrita, nawi nanayta, aywapacayta y fiyu gueshyata wanutsishunayquipag.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="5dbd8576-adc0-4593-9f39-f8f6db159c8d" ownerguid="53939045-85a6-421c-a7a9-ac39f48bb604"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">canan</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">canan</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kanan</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kanan</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kanan</Run> -</AStr> -</Form> -<Morph> -<objsur guid="618fcea2-5859-40ed-90c8-97444250e1e9" t="r" /> -</Morph> -<Msa> -<objsur guid="5bfc2be8-960a-49fc-952c-7e1540f31d7d" t="r" /> -</Msa> -<Sense> -<objsur guid="5e558833-b760-4fc9-a586-306032ad7659" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="5dbf4736-1437-499e-b9a6-1f2ad3032a28" ownerguid="e67d77e6-7e2d-4852-ac49-a6b543933c23"> -<Form> -<AUni ws="qvm-x-ach">pasajëru</AUni> -<AUni ws="qvm-x-acl">pasajëru; pasajëru; pasajëro</AUni> -<AUni ws="qvm-x-akh">pasajëru</AUni> -<AUni ws="qvm-x-akl">pasajëru; pasajëru; pasajëro</AUni> -<AUni ws="qvm-x-ame">pasajëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="5dc3ed5c-64f7-46b4-9e10-de771154e4bc" ownerguid="652b95bc-d0cf-45ac-b3d1-faa4374ecf1d"> -<Form> -<AUni ws="qvm-x-ach">letrëru</AUni> -<AUni ws="qvm-x-acl">letrëru; letrëru; letrëro</AUni> -<AUni ws="qvm-x-akh">letrëru</AUni> -<AUni ws="qvm-x-akl">letrëru; letrëru; letrëro</AUni> -<AUni ws="qvm-x-ame">letrëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="5dc55046-5351-421a-becb-16eabc7a33c9" ownerguid="3e05eea3-a390-43e8-9cb7-152d851aea32"> -<Form> -<AUni ws="qvm-x-ach">chapa</AUni> -<AUni ws="qvm-x-acl">chapa</AUni> -<AUni ws="qvm-x-akh">chapa</AUni> -<AUni ws="qvm-x-akl">chapa</AUni> -<AUni ws="qvm-x-ame">chapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="5dc7fc29-6244-42ee-af2d-09fd9a948e72" ownerguid="498336e7-b7bd-48ec-bdbd-a5e68d52fbda"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -<Sense> -<objsur guid="1b926284-5562-4cf3-8ad2-65536a715093" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="5dc9c776-94d5-41cb-bd16-26b9bb47506d" ownerguid="7909b8bc-221d-43ce-a4a3-13052517806c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoAffixAllomorph" guid="5dcad267-89ba-4258-b423-e84c57ba90ed" ownerguid="6ccefcc7-b00f-47fc-937b-49bd0cb540f3"> -<Form> -<AUni ws="qvm-x-ach">nga</AUni> -<AUni ws="qvm-x-acl">nga</AUni> -<AUni ws="qvm-x-akh">nqa</AUni> -<AUni ws="qvm-x-akl">nqa</AUni> -<AUni ws="qvm-x-ame">nqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="5dcd53ee-246c-447a-85b7-c6cce06b15aa" ownerguid="69c031e3-024d-4201-a0a5-2ef4003f3e80"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="9d2379c4-fbd2-4f66-a7df-13e7ac5379ac" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="5dceb7e7-e621-4c48-982c-856120fc5c06" ownerguid="7bff0455-82d1-4996-bcdf-1a4ba9306fab"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">twist</AUni> -<AUni ws="es">torcer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4f2b6e55-26cf-4695-b9e3-88ce0fbdab5e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="5dcf3ce8-aa00-4478-b00e-691549fa29e8" ownerguid="e6cf2c28-7630-41d7-835d-bd171ab67378"> -<Abbreviation> -<AUni ws="en">4.3.4.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.233" /> -<DateModified val="2022-9-23 16:55:8.233" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being selfish.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Selfish</AUni> -</Name> -<Questions> -<objsur guid="26d69310-0a72-4ae3-809d-57d4b7af09d5" t="o" /> -<objsur guid="445b765d-9425-49cf-a22b-31409217bc34" t="o" /> -<objsur guid="fe3440db-1834-460f-a440-72e44e07f8ec" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="5dd03a80-0e45-42b4-9527-6531bae3c9d8" ownerguid="593442e2-a727-409f-bd11-f63d5741b719"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="5dd3bb68-8b96-4402-aa83-49b3f4f12f2a" ownerguid="3c8eaf3d-757f-431d-9987-26115942e00e"> -<Form> -<AUni ws="qvm-x-ach">yayca</AUni> -<AUni ws="qvm-x-acl">yayca</AUni> -<AUni ws="qvm-x-akh">yayka</AUni> -<AUni ws="qvm-x-akl">yayka</AUni> -<AUni ws="qvm-x-ame">yayku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="5dd8f103-f04d-46be-903a-68f6d728e511"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">espina</AUni> -<AUni ws="qvm-x-acl">espina</AUni> -<AUni ws="qvm-x-akh">espina</AUni> -<AUni ws="qvm-x-akl">espina</AUni> -<AUni ws="qvm-x-ame">espina</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+espina</AUni> -<AUni ws="qvm-x-acl">+espina</AUni> -<AUni ws="qvm-x-akh">+espina</AUni> -<AUni ws="qvm-x-akl">+espina</AUni> -<AUni ws="qvm-x-ame">+espina</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.498" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="08821bdc-3ca0-4e10-b8df-f72989c6003a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+espina</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bd10aab8-649d-4a40-aea3-ecf9feefc336" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e06bb1df-e8ab-4281-a996-7cf6986afc4c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +espina 
\entryTyp root 
\gENG sliver 
\gSPN espina 
\e +espina 
\c N0 
\ach espina 
\akh espina 
\acl espina 
\akl espina 
\ame espina</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5dd968a0-4fc2-4fc2-844e-5f2877f21de4" ownerguid="b09205d4-fbb4-4bcd-94ef-f8d83e298462"> -<ExampleWords> -<AUni ws="en">calm, becalmed, quiet, peaceful, tranquil, hardly a ripple, glassy, still, stagnant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe the surface of the water when it is calm?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5ddd1047-5a61-4615-9481-15e728698131" ownerguid="f96e8a7b-d84c-4d74-b5f7-1c43535a1e0c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="5ddefe9a-df34-4e37-a6fd-e7de5717141d" ownerguid="ec967513-1ea1-41aa-9bfb-7aec4949b70a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Gamcunachäga</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="5ddfd33d-d65f-427a-a744-76b57c7e96ff" ownerguid="093eeea2-4ff6-4ee8-ad05-8af1702b7246"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">He <reached> the age of 100.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">come to be, attain, achieve, reach</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used of attaining a state?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5de13bb9-dad1-4e4a-81bb-8ca6efd8d959" ownerguid="3e546c11-bcb6-4024-b2f3-c15be40e257f"> -<ExampleWords> -<AUni ws="en">addicted, excessive, gluttonous, indulgent, intemperate, piggish, prodigal, riotous, self-indulgent, surfeit, unbridled, uncontrolled, unrestrained, voracious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a person who does not control himself?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5de3cda1-5a10-45ac-8543-5d67ae9e0759" ownerguid="dcc276da-db5c-46fe-9d64-da7e34f8c562"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="f697b0f8-e86c-408d-97c9-e5f035fa188d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5de4e9d2-d8fd-4fb5-b29c-2fdf433dd044" ownerguid="a3ba10f3-66e3-4ad5-8057-453b8941e497"> -<ExampleWords> -<AUni ws="en">casualty, missing in action</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to someone who is hurt or killed in a war?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5de7e5de-2f1c-4113-b71b-82e9956ab3b3" ownerguid="e64e647e-a5fb-463c-8eef-44879e2e70b2"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">You are<n't> going, <are you>? (The expected answer in English is, 'No, I'm not going.'); He is<n't> going, <is he>? (No, he's not going.); You're <not> going? (No, I'm not going.); He is<n't> going? (No, he's not going.)</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">n't...are you</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to indicate that a negative answer is expected to a question?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5decc7c7-c05c-494a-ba65-4336d25fa2fe" ownerguid="f74f28d1-8742-4c9f-95dc-d08336e91249"> -<ExampleWords> -<AUni ws="en">youth, adolescence, in your teens, teenage years</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the time period when a person is a youth?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5dede794-7b4e-42ba-9937-f561a1018d3c" ownerguid="2cb38051-cb13-482b-9ac1-0d4eb2145410"> -<Form> -<AUni ws="qvm-x-ach">fïlu</AUni> -<AUni ws="qvm-x-acl">fïlu; fïlu; fïlo</AUni> -<AUni ws="qvm-x-akh">fïlu</AUni> -<AUni ws="qvm-x-akl">fïlu; fïlu; fïlo</AUni> -<AUni ws="qvm-x-ame">fïlu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="5df043bc-f2d9-474c-891f-84437cb1950c" ownerguid="e8586039-5b46-4c5c-9c1b-0b7685121aea"> -<Form> -<AUni ws="qvm-x-ach">uyti</AUni> -<AUni ws="qvm-x-acl">uyti; uyti; uyte</AUni> -<AUni ws="qvm-x-akh">uyti</AUni> -<AUni ws="qvm-x-akl">uyti; uyti; uyte</AUni> -<AUni ws="qvm-x-ame">uyti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5df34cad-f71f-433c-8783-400124d8b9f1" ownerguid="756f67e9-2b22-4c43-913c-ceff0e781545"> -<ExampleWords> -<AUni ws="en">dip, dunk</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to putting something into liquid for a short time?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5df42573-788c-42de-a8e3-3a1c28700676" ownerguid="3e3e9af5-1be0-449c-9ffd-98891fb64bb6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="5df53b87-7f59-4f5c-991e-5ae007b68fa9" ownerguid="7d111356-e04e-4891-960c-2f35147eba82"> -<Abbreviation> -<AUni ws="en">9.7.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.731" /> -<DateModified val="2022-9-23 16:55:8.731" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the name of an animal. Some cultures give names to domesticated animals or to animals in stories. Think through each kind of domesticated animal.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Names of animals</AUni> -</Name> -<Questions> -<objsur guid="4c620448-bc56-4197-81f8-3c25c50d50d8" t="o" /> -<objsur guid="b5e6dd3c-fcd8-4c8d-ae05-3a2ff825f561" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="944cf5af-469e-4b03-878f-a05d34b0d9f6" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="5df5581e-1f50-47ab-85d1-13117f46bc1e" ownerguid="dc597a5b-37c8-4e1e-a71c-9bc1da75655b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5dfa68b9-93db-4525-bfeb-030760fc70df" ownerguid="7d8898d6-6296-4d4d-b8dd-2f48c49f9e98"> -<ExampleWords> -<AUni ws="en">(100 meters) high, be (100 meters) in height</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words indicate how high something is?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5dfb5545-62ab-4401-a48a-70d7a8cfb3c9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wan</AUni> -<AUni ws="qvm-x-acl">wan</AUni> -<AUni ws="qvm-x-akh">wan</AUni> -<AUni ws="qvm-x-akl">wan</AUni> -<AUni ws="qvm-x-ame">wan</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.518" /> -<DateModified val="2022-10-16 14:48:54.687" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b441a287-959f-4845-be39-c8c9c2b00da1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">INST</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="19e28bb1-2f05-4e65-a0d6-47a005cd199a" t="o" /> -<objsur guid="6a3c64a4-aa9f-4fcb-93ea-93a8b6c7edcc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="38b30d56-1554-40fb-a1ea-c1cf17eadf84" t="o" /> -<objsur guid="6b932bcf-c2e6-438e-88ca-e30443266c41" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx INST 
\entryTyp suffix 
\gENG INST 
\gSPN COM 
\e INST 
\c N0/N0 BN/BN 
\o 210 
\mp +FinalC 
\ach wan 
\akh wan 
\acl wan 
\akl wan 
\ame wan</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="5dfbda44-bffa-448f-8abd-45bffa40b43f" ownerguid="ea273e20-5284-47f1-aa52-a570157ae264"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="5dfd85c4-18ab-4790-bba6-a791f3e77cc6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sábanas; sa:banas</AUni> -<AUni ws="qvm-x-acl">sábanas; sa:banas</AUni> -<AUni ws="qvm-x-akh">sábanas; sa:banas</AUni> -<AUni ws="qvm-x-akl">sábanas; sa:banas</AUni> -<AUni ws="qvm-x-ame">sábanas; sa:banas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sábanas</AUni> -<AUni ws="qvm-x-acl">+sábanas</AUni> -<AUni ws="qvm-x-akh">+sábanas</AUni> -<AUni ws="qvm-x-akl">+sábanas</AUni> -<AUni ws="qvm-x-ame">+sábanas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.480" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="18ca1814-41aa-4c4b-805c-937e8abbfd2e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sábanas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e50bdd2e-e70a-4e63-85a8-ed558400bad2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="86e9f7e9-8c90-4cd3-ac3d-94a85c58bbb3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sábanas 
\entryTyp root 
\gENG sheets 
\gSPN sábanas 
\e +sábanas 
\c N0 
\mp +FinalC 
\ach sábanas / _# 
\ach sa:banas / ~_# 
\akh sábanas / _# 
\akh sa:banas / ~_# 
\acl sábanas / _# 
\acl sa:banas / ~_# 
\akl sábanas / _# 
\akl sa:banas / ~_# 
\ame sábanas / _# 
\ame sa:banas / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5dfdd971-0dd4-4ca8-83f4-f635d659f841" ownerguid="57237095-23cf-43ba-aa6c-89cecdd35ff8"> -<ExampleWords> -<AUni ws="en">be orphaned, be an orphan</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to being an orphan?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5e04771f-5cab-4734-ad44-ca5b6b7686ca"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">agra:viu</AUni> -<AUni ws="qvm-x-acl">agra:viu; agra:viu; agra:vio</AUni> -<AUni ws="qvm-x-akh">agra:viu</AUni> -<AUni ws="qvm-x-akl">agra:viu; agra:viu; agra:vio</AUni> -<AUni ws="qvm-x-ame">agra:viu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+agravio</AUni> -<AUni ws="qvm-x-acl">+agravio</AUni> -<AUni ws="qvm-x-akh">+agravio</AUni> -<AUni ws="qvm-x-akl">+agravio</AUni> -<AUni ws="qvm-x-ame">+agravio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.669" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cd754236-6c4d-4358-8cc3-82ee3ada8531" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+agravio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c1e4762f-2b45-460e-af5e-e2696934426d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a836b8c3-350e-4964-9d00-1e3fe5e89978" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +agravio 
\entryTyp root 
\gENG 
\gSPN 
\e +agravio 
\c N0 
\ach agra:viu 
\akh agra:viu 
\acl agra:viu / _# 
\acl agra:viu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl agra:vio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl agra:viu / _# 
\akl agra:viu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl agra:vio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame agra:viu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="5e06be76-ef7a-443b-a77a-f743505739ea" ownerguid="26f480c4-9335-4524-b2ed-47859a10568b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="5e070012-82f2-47bf-998f-1ea207884255" ownerguid="638a5fec-c76f-4f8c-b395-4d8be3400239"> -<Form> -<AUni ws="qvm-x-ach">rasca</AUni> -<AUni ws="qvm-x-acl">rasca</AUni> -<AUni ws="qvm-x-akh">rasca</AUni> -<AUni ws="qvm-x-akl">rasca</AUni> -<AUni ws="qvm-x-ame">rasca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="5e0a99dc-3617-47cd-a953-b7e8261cb47f" ownerguid="73affb6b-d7bb-45f5-b1b2-85227505a490"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cup</AUni> -<AUni ws="es">copa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="53fa0099-c41f-469a-9b32-93de88b13537" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5e0ad2d5-2deb-4e82-8e3b-b0e62e8ddb07" ownerguid="ad7cc381-1dc6-4fc2-94a4-acd5bf7a11da"> -<ExampleWords> -<AUni ws="en">inevitable, whether you like it or not, willy-nilly, be fated to, be destined to, predestined, be meant to be, pre-ordained, doomed, the inevitable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words indicate that something is certain to happen and nothing can be done to stop it?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5e0c6d02-ba15-46fe-866d-4025533c9bc2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gueshwa</AUni> -<AUni ws="qvm-x-acl">gueshwa</AUni> -<AUni ws="qvm-x-akh">qeshwa</AUni> -<AUni ws="qvm-x-akl">qeshwa</AUni> -<AUni ws="qvm-x-ame">qishwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qishwa</AUni> -<AUni ws="qvm-x-acl">*qishwa</AUni> -<AUni ws="qvm-x-akh">*qishwa</AUni> -<AUni ws="qvm-x-akl">*qishwa</AUni> -<AUni ws="qvm-x-ame">*qishwa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.209" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9755c63e-87db-4b72-b38f-4e0d7c48b317" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qishwa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="afb63cae-c892-4003-9a30-8334c1503473" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e9bfd986-a581-4c89-a418-eb1debbf69c6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qishwa 
\entryTyp root 
\gENG nest 
\gSPN nido 
\e *qishwa 
\c N0 
\ach gueshwa 
\akh qeshwa 
\acl gueshwa 
\akl qeshwa 
\ame qishwa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="5e0faf19-8717-4dab-bf6f-c4225a3844b2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">churchu</AUni> -<AUni ws="qvm-x-acl">churchu; churcho</AUni> -<AUni ws="qvm-x-akh">churchu</AUni> -<AUni ws="qvm-x-akl">churchu; churcho</AUni> -<AUni ws="qvm-x-ame">churchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trurtru</AUni> -<AUni ws="qvm-x-acl">*trurtru</AUni> -<AUni ws="qvm-x-akh">*trurtru</AUni> -<AUni ws="qvm-x-akl">*trurtru</AUni> -<AUni ws="qvm-x-ame">*trurtru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.188" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b0edabb7-dd7c-46aa-bfd8-9a1fa24897fd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trurtru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1ed96ec7-2ce8-45cc-a77a-7ceae1d401b5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="21c7f342-b99c-4689-bf7c-192b239dea03" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trurtru 
\entryTyp root 
\gENG stiffen 
\gSPN endurecer 
\e *trurtru 
\c V1 
\ach churchu 
\akh churchu 
\acl churchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl churcho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl churchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl churcho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame churchu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5e0febd0-d980-429a-848d-dfc63e9fb0ef" ownerguid="79662c08-e4e4-46d9-81c2-833818ba17f7"> -<Form> -<AUni ws="qvm-x-ach">figüra</AUni> -<AUni ws="qvm-x-acl">figüra</AUni> -<AUni ws="qvm-x-akh">figüra</AUni> -<AUni ws="qvm-x-akl">figüra</AUni> -<AUni ws="qvm-x-ame">figüra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="5e14ff85-6ba9-45f6-a4bf-6a44da2c1f44" ownerguid="f3d537af-e4e7-4c76-a160-570bbcd4557f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="5e1bb354-f684-44e3-b342-9438f84e14b7" ownerguid="16e930c3-8e70-408a-840c-58cf5e512d44"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="b13060be-f5da-4f24-9ad8-a18cb33ae795" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="5e1ccdb5-6074-4b65-9fc7-35c117117f66" ownerguid="b3a85cd7-97fd-4306-830d-714801492498"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5e1e9788-e804-4d08-85d3-a4210aed1b34" ownerguid="755a7462-1d87-48b0-939c-08be5b5ea002"> -<ExampleWords> -<AUni ws="en">too much, too many, excessive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to having too much?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5e20307f-af34-4115-a7ce-3dfbe836838a" ownerguid="297fee80-2171-4516-a2db-90b599f8cb45"> -<Form> -<AUni ws="qvm-x-ach">wacha</AUni> -<AUni ws="qvm-x-acl">wacha</AUni> -<AUni ws="qvm-x-akh">wacha</AUni> -<AUni ws="qvm-x-akl">wacha</AUni> -<AUni ws="qvm-x-ame">wacha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="5e23d2c2-7929-4bf9-b3ee-c72694efb96f" ownerguid="b093ef57-bd1b-42e6-a7d3-88f4dd08d62a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="5e26d2e6-4a03-425b-9499-34ce237993c2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ucush</AUni> -<AUni ws="qvm-x-acl">ucush</AUni> -<AUni ws="qvm-x-akh">ukush</AUni> -<AUni ws="qvm-x-akl">ukush</AUni> -<AUni ws="qvm-x-ame">ukush</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ukush</AUni> -<AUni ws="qvm-x-acl">*ukush</AUni> -<AUni ws="qvm-x-akh">*ukush</AUni> -<AUni ws="qvm-x-akl">*ukush</AUni> -<AUni ws="qvm-x-ame">*ukush</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.210" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="80a3a86c-1bf8-4b8d-8803-354363ced3f7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ukush</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3fcad420-b0c6-4137-86e2-d651b77bc74c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bcca8f38-1d1d-46ce-b339-400c8b0b6482" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ukush 
\entryTyp root 
\gENG mouse 
\gSPN ratón 
\e *ukush 
\c N0 
\mp +FinalC 
\ach ucush 
\akh ukush 
\acl ucush 
\akl ukush 
\ame ukush</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5e2a511d-30c0-4777-ac5c-082d7fae6f42" ownerguid="04582a28-b94a-4e7f-8cc4-5cdefa8a39f0"> -<ExampleWords> -<AUni ws="en">bachelor, castrated, celibate, divorcé, eunuch, widower</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to whether or not a man is married?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5e31f7e2-16dd-4756-be1e-2e222a433396" ownerguid="c0f4715e-55c9-4379-ab6f-ad561a5e7151"> -<ExampleWords> -<AUni ws="en">belief, superstition, old wives' tale</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to believing something that other people do not believe?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5e3534dc-3f88-43a3-8503-c59f2737a6b7" ownerguid="8e851b2f-ffa0-40bf-8cb8-2c739ce8f242"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5e35efa7-827c-4f5f-a0f4-38c070ca0a0e" ownerguid="530ff7e0-e3cb-4dc3-9c1c-3034969e1ce8"> -<ExampleWords> -<AUni ws="en">revenge, reprisal, requital, retaliation, retribution, tit-for-tat, vendetta, vengeance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to revenge?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5e3652ff-4817-455f-86fb-8142fb331a10" ownerguid="9c2d1f1d-81d4-4776-9be7-9fc5b920ca14"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lime</AUni> -<AUni ws="es">cal</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7dd93fa3-9abf-4a37-b50b-2da51d8f4811" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="5e3bb9e5-fd70-4c5a-95a0-938bc4876a47" ownerguid="df9ee372-e92e-4f73-aac5-d36908497698"> -<Abbreviation> -<AUni ws="en">3.2.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to thinking about the future.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>30C To Think Concerning Future Contingencies</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Expect</AUni> -</Name> -<Questions> -<objsur guid="94bcde76-338f-4616-824c-61887def1379" t="o" /> -<objsur guid="23d4dbe1-7927-4238-86b2-a7387f27e1b3" t="o" /> -<objsur guid="5f170783-9417-4e0d-9f90-6ba8c6c22d85" t="o" /> -<objsur guid="d3901f41-8f4d-40cf-8810-4ba72f81f7b6" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="aaf63abd-c8a5-4546-8fc1-a51c6e607683" t="o" /> -<objsur guid="218c1d59-0ebb-4936-b9cf-0a93e88aa729" t="o" /> -<objsur guid="c956a98a-4c85-4c85-868d-f27f44bd6422" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="5e3d6971-a278-4d6c-a4d2-dbc3fa921bec" ownerguid="9f9e25de-2d6c-4c14-a163-98ee54bdef83"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">GEN 1.17 Tsaykunata Tayta Dios jana patsaman churarqan kay patsaman atsikyamuptin tsakaypis junaqpis kananpaqmi.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="5e3d7be4-bcc5-4859-b481-8c4fea711b8f" ownerguid="02175330-15dc-4689-a4d4-9b2ce882ab82"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="5e3d9db3-176e-4675-8dda-934e80a84572" ownerguid="4d259d03-9cd3-4908-8c44-856aef2707a7"> -<Form> -<AUni ws="qvm-x-ach">lapya; lapyä</AUni> -<AUni ws="qvm-x-acl">lapya; lapyä</AUni> -<AUni ws="qvm-x-akh">lapya; lapyä</AUni> -<AUni ws="qvm-x-akl">lapya; lapyä</AUni> -<AUni ws="qvm-x-ame">lapya; lapyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="5e3de2f1-e0d3-4153-931c-4edc342a30b1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">baldi; balde</AUni> -<AUni ws="qvm-x-acl">baldi; baldi; balde</AUni> -<AUni ws="qvm-x-akh">baldi; balde</AUni> -<AUni ws="qvm-x-akl">baldi; baldi; balde</AUni> -<AUni ws="qvm-x-ame">baldi; balde</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+balde</AUni> -<AUni ws="qvm-x-acl">+balde</AUni> -<AUni ws="qvm-x-akh">+balde</AUni> -<AUni ws="qvm-x-akl">+balde</AUni> -<AUni ws="qvm-x-ame">+balde</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.941" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5f5c66d3-d280-4fc0-afd2-10d82249174e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+balde</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="275e3dd9-2efe-4997-8167-1463dc893b26" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="98ba5e82-c969-4fd0-b02d-5273cc15d567" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +balde 
\entryTyp root 
\gENG bucket 
\gSPN balde 
\e +balde 
\c N0 
\mp +FinalI 
\ach baldi / ~_# 
\ach balde / _# 
\akh baldi / ~_# 
\akh balde / _# 
\acl baldi / ~_# 
\acl baldi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl balde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl baldi / ~_# 
\akl baldi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl balde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame baldi / ~_# 
\ame balde / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5e424df6-8fb1-422f-886f-52a7509f73ea" ownerguid="45e5f48c-830f-4aba-9b99-0c93b0eda4f7"> -<Form> -<AUni ws="qvm-x-ach">sanitariu; sanitario</AUni> -<AUni ws="qvm-x-acl">sanitariu; sanitariu; sanitario</AUni> -<AUni ws="qvm-x-akh">sanitariu; sanitario</AUni> -<AUni ws="qvm-x-akl">sanitariu; sanitariu; sanitario</AUni> -<AUni ws="qvm-x-ame">sanitariu; sanitario</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="5e44d82f-e3e2-415d-b3bb-a6918a19fcc4" ownerguid="bf44ef9b-c9e9-4653-8f59-965fdee8ce61"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">preach</AUni> -<AUni ws="es">predicar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="67812d54-a37b-43c9-9514-a6aaacf365be" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5e45f5e4-15eb-49c0-a6cb-4fedf2374e7d" ownerguid="3ea4c495-b837-4310-8741-38d89fa63e0b"> -<ExampleWords> -<AUni ws="en">must have</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) inferred certainty: the speaker infers from evidence that the proposition is true: 'They must have killed a bear here (I can see blood on the snow)'.</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="5e46ae65-54c6-4814-bc32-f0e79a556030" ownerguid="1fe7b7e5-f809-4e90-99a6-9f1991e96972"> -<Form> -<AUni ws="qvm-x-ach">̈tsi</AUni> -<AUni ws="qvm-x-acl">̈tsi</AUni> -<AUni ws="qvm-x-akh">̈tsi</AUni> -<AUni ws="qvm-x-akl">̈tsi</AUni> -<AUni ws="qvm-x-ame">̈tsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="5e46fc16-b4dd-4c3e-8da3-978013893f5a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lacti</AUni> -<AUni ws="qvm-x-acl">lacti; lacte</AUni> -<AUni ws="qvm-x-akh">lakti</AUni> -<AUni ws="qvm-x-akl">lakti; lakte</AUni> -<AUni ws="qvm-x-ame">lakti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llakti</AUni> -<AUni ws="qvm-x-acl">*llakti</AUni> -<AUni ws="qvm-x-akh">*llakti</AUni> -<AUni ws="qvm-x-akl">*llakti</AUni> -<AUni ws="qvm-x-ame">*llakti</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.132" /> -<DateModified val="2022-10-10 21:19:47.697" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="09a1eeb2-c085-4bc7-b560-18e53f546dc9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llakti</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3080b9e6-14ed-4e96-b737-c2004cdaeb34" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e59597ea-26f1-4a4e-8543-118893eb383e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llakti 
\entryTyp root 
\gENG split 
\gSPN 
\e *llakti 
\c V1 
\mp +FinalI 
\ach lacti 
\akh lakti 
\acl lacti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lacte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lakti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lakte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lakti 
\i EZK 27.26 Tsaychömi elagpita inti jegamunan cag lädupita shamog wayra gamta lacticätsishushcanqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="5e484986-7738-48d5-8b55-e5902f8d69d7" ownerguid="ea8efa6f-3058-4008-9cc2-afa4bb11ab53"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="5e48d272-ca3c-47c9-b0aa-88217d99f851" ownerguid="7ecca79a-71bc-4055-a00a-bc3541e10e2b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">harp</AUni> -<AUni ws="es">arpa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="64d35d24-78e6-4dec-8099-825f4b92fa74" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="5e4bdfed-88f7-429a-b4df-c613b378c340" ownerguid="dcbfb374-33ae-4520-99d4-233644bd7eb4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cramp</AUni> -<AUni ws="es">entumecer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="43b3a433-9f89-442a-8d9e-15013afb1e5b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="5e4c11d8-63d3-417e-872b-f77990e57282" ownerguid="3cb83e74-a33e-4e2a-a375-45c3007c271e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mana</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mana</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mana</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mana</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mana</Run> -</AStr> -</Form> -<Morph> -<objsur guid="3908bb21-4c84-48c8-95f9-5530ba8f5299" t="r" /> -</Morph> -<Msa> -<objsur guid="b2b2cafc-4a33-4aaf-bb37-ad49d349f0bb" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="5e4f206a-7d52-40cd-9e3e-0a341ad0d829" ownerguid="23fa2115-3979-472c-8939-4db8d54e4c98"> -<ExampleWords> -<AUni ws="en">opposite</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe two things that are opposite?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5e50bbfe-26b6-4875-94b7-43d9f42e4316" ownerguid="2b5a4c4a-751b-449b-95ec-9bbb6c9a97d5"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="5e525daa-c389-4e5a-a584-ecc8b7d621d3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guechu</AUni> -<AUni ws="qvm-x-acl">guechu; guecho</AUni> -<AUni ws="qvm-x-akh">qechu</AUni> -<AUni ws="qvm-x-akl">qechu; qecho</AUni> -<AUni ws="qvm-x-ame">qichu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qitru</AUni> -<AUni ws="qvm-x-acl">*qitru</AUni> -<AUni ws="qvm-x-akh">*qitru</AUni> -<AUni ws="qvm-x-akl">*qitru</AUni> -<AUni ws="qvm-x-ame">*qitru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.216" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eda4465e-8c17-4ea5-a306-018b881ef3bd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qitru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="69badfdc-8eb3-4645-9b06-959ee3ca5487" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6b4114da-9a37-48fc-bae9-29d22d8f855a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qitru 
\entryTyp root 
\gENG take.away 
\gSPN quitar 
\e *qitru 
\c V2 R0 
\ach guechu 
\akh qechu 
\acl guechu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl guecho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qechu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qecho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qichu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="5e529363-6111-464f-bb6f-8d3a9f56da6f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">si:lla</AUni> -<AUni ws="qvm-x-acl">si:lla</AUni> -<AUni ws="qvm-x-akh">si:lla</AUni> -<AUni ws="qvm-x-akl">si:lla</AUni> -<AUni ws="qvm-x-ame">si:lla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+silla.n2</AUni> -<AUni ws="qvm-x-acl">+silla.n2</AUni> -<AUni ws="qvm-x-akh">+silla.n2</AUni> -<AUni ws="qvm-x-akl">+silla.n2</AUni> -<AUni ws="qvm-x-ame">+silla.n2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.683" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7d241814-ca1f-4e55-924d-5222ac3a6145" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+silla.n2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c11deb1e-8e7d-441e-a9f6-f4c6a72c5481" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b37d3af1-810c-4ce1-bc2e-2ea20016eb66" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +silla.n2 
\entryTyp root 
\gENG seat 
\gSPN silla 
\e +silla.n2 
\c N0 
\ach si:lla 
\akh si:lla 
\acl si:lla 
\akl si:lla 
\ame si:lla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="5e558833-b760-4fc9-a586-306032ad7659" ownerguid="d8c8bf11-5058-4acf-a336-39141311488e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">today</AUni> -<AUni ws="es">hoy</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5bfc2be8-960a-49fc-952c-7e1540f31d7d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="5e5642e9-f6cd-4361-a3a5-614947a7f8e7" ownerguid="3c130521-28d4-40bb-abbd-e5a2e8445814"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b4e57a46-db12-4f4e-a584-82a731356d5c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5e587dd9-1f34-4440-b67f-3cb6fcbb18f5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">reya:ta</AUni> -<AUni ws="qvm-x-acl">reya:ta</AUni> -<AUni ws="qvm-x-akh">reya:ta</AUni> -<AUni ws="qvm-x-akl">reya:ta</AUni> -<AUni ws="qvm-x-ame">reya:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+reata</AUni> -<AUni ws="qvm-x-acl">+reata</AUni> -<AUni ws="qvm-x-akh">+reata</AUni> -<AUni ws="qvm-x-akl">+reata</AUni> -<AUni ws="qvm-x-ame">+reata</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.297" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7601aa52-ebb2-463b-a92c-390d0478f4a5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+reata</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bf036abf-6265-4e57-a5f2-4bf30b0d2d9d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9ca7ec49-017b-4dbe-b1ff-47cf8a2beb46" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +reata 
\entryTyp root 
\gENG cord 
\gSPN cuerda 
\e +reata 
\c N0 
\mp +assimilated 
\ach reya:ta 
\akh reya:ta 
\acl reya:ta 
\akl reya:ta 
\ame reya:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5e5e1c20-560f-41d0-9ee6-e7db0978eebb" ownerguid="aa51dff6-e5c7-4506-bd13-32e255f6061f"> -<Form> -<AUni ws="qvm-x-ach">libra</AUni> -<AUni ws="qvm-x-acl">libra</AUni> -<AUni ws="qvm-x-akh">libra</AUni> -<AUni ws="qvm-x-akl">libra</AUni> -<AUni ws="qvm-x-ame">libra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5e605996-680e-4d44-ba44-f7e87ee27ab6" ownerguid="83b483b8-f036-44be-8510-ea337d010a1c"> -<ExampleWords> -<AUni ws="en">bird of prey, songbird, flightless bird, flying, water bird, arboreal, domesticated, insectivorous, migratory, nocturnal, oceanic, predator, raptor, seabird, songbird, shorebird, waterfowl</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to kinds of birds?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5e60f257-3286-4d69-b282-c0c4dba329d4" ownerguid="9ac6dec6-1b8f-463c-8239-e2acb93586b1"> -<ExampleWords> -<AUni ws="en">unite, unify, join, merge, blend, fuse, consolidate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to unifying a social group or more than one social group?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5e6342f5-2c2b-4152-aa0f-e93ce5e29872" ownerguid="cb7c33f2-148b-44f9-bce6-855453fc253a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="bfdb3ba4-a616-4e5f-9187-69e050d94694" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="5e637fee-1c0e-4aad-a4c0-0a8b5fef4d76" ownerguid="6afd1b44-48cb-4b05-adbc-71adccc401ff"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="5e640c5a-aa6a-4cf0-9ad2-45e88a91c052"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shengalwa</AUni> -<AUni ws="qvm-x-acl">shengalwa</AUni> -<AUni ws="qvm-x-akh">shenqalwa</AUni> -<AUni ws="qvm-x-akl">shenqalwa</AUni> -<AUni ws="qvm-x-ame">shinqalwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shinqawi</AUni> -<AUni ws="qvm-x-acl">*shinqawi</AUni> -<AUni ws="qvm-x-akh">*shinqawi</AUni> -<AUni ws="qvm-x-akl">*shinqawi</AUni> -<AUni ws="qvm-x-ame">*shinqawi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.591" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bb88d1e6-52e5-41ea-8242-213ace0500b7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shinqawi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="31364db4-f44f-4375-954c-ccc088d48e96" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ef38d3bc-71ac-47cd-bf74-7d3b414ec9bc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shinqawi 
\entryTyp root 
\gENG 
\gSPN bozalar 
\e *shinqawi 
\c V1 
\ach shengalwa 
\akh shenqalwa 
\acl shengalwa 
\akl shenqalwa 
\ame shinqalwa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5e6677af-d3b6-4ede-b3ab-43277179d1cb" ownerguid="ff36330d-8479-46d8-a6a5-dd86e292aee0"> -<Form> -<AUni ws="qvm-x-ach">tarjëta</AUni> -<AUni ws="qvm-x-acl">tarjëta</AUni> -<AUni ws="qvm-x-akh">tarjëta</AUni> -<AUni ws="qvm-x-akl">tarjëta</AUni> -<AUni ws="qvm-x-ame">tarjëta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="5e66c9bc-da42-4767-875f-4836eaa1060b" ownerguid="f5c73157-9581-45f0-9370-140d613f9812"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.numb</AUni> -<AUni ws="es">entumecer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="846631e2-5c67-4f89-acb6-c2343781f0c4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="5e69c3ef-07a2-414d-a55c-555974eaa677" ownerguid="bce337e0-118c-4bda-990e-fb91e0d27f4b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">agreement</AUni> -<AUni ws="es">acuerdo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4010c798-c18d-4499-bb4e-37dfc6f4ba14" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5e6e5d93-f58e-4703-8cc3-b054ca9f74f9" ownerguid="2c42f822-2079-440c-b3b7-7725b6a8db8b"> -<ExampleWords> -<AUni ws="en">Halt! Stay! Cease and desist! Belay that order! Avast!</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What do people say when they want someone to stop?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="5e6fa5cc-4611-4d8d-8c94-7d937c41836e" ownerguid="6d148d6f-db27-4db7-88a8-e04b0547e063"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">DEU 22.19 Nircurmi Israel jipashta mala fämaman churar perdisyunta rurashganpita pägatsenga pachac (100) yorag guellayta.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="5e73a269-10bf-4531-8556-d6a2ac76e3ed" ownerguid="8d316e54-e6e9-4db9-9975-f6039564242c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sew</AUni> -<AUni ws="es">coser</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d2efc36d-1244-40da-9cbe-8d78072f8c53" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5e751182-1ee1-4293-a78a-667746d6fd13" ownerguid="08239f53-daa5-47a6-9f39-29a9064b0c27"> -<ExampleWords> -<AUni ws="en">joined, affixed, anchored, assembled, attached, bolted, cemented, chained, connected, fastened, fixed to, fused, glued, handcuffed, manacled, nailed, pasted, pinned, plastered, riveted, sewn, shackled, stapled, stick, stuck, taped, united, unified, welded</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe things that have been joined?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="5e7a5899-df78-4aa7-bec9-b354acfe087f" ownerguid="7558d071-a885-447b-9aa2-604c29669492"> -<Abbreviation> -<AUni ws="en">4.6.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.256" /> -<DateModified val="2022-9-23 16:55:8.256" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to government functions--the things a government does.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Government functions</AUni> -</Name> -<OcmCodes> -<Uni>626 Social Control; 650 Government Activities; 653 Public Works; 654 Research and Development; 655 Government Enterprises; 656 Government Regulation; 657 Public Welfare; 658 Public Education; 659 Miscellaneous Government Activities; 744 Public Health and Sanitation; 745 Social Insurance; 746 Public Assistance</Uni> -</OcmCodes> -<Questions> -<objsur guid="8fdcd118-6c3f-44f9-9d47-c614c12d6e48" t="o" /> -<objsur guid="43908409-7850-4ff3-88d3-9c5001f93263" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="9a8f2f6a-a039-45dd-80d3-d1e0911907b2" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="16d2c60a-52d7-4ec5-a5b1-c559dc078bf3" t="o" /> -<objsur guid="8b6aecfb-071d-439d-9ee0-efa3c57967a0" t="o" /> -<objsur guid="57ed66ee-f82b-4e80-955f-7492d85372b0" t="o" /> -<objsur guid="b53deac1-26c7-4fe9-9109-8496e248e8c7" t="o" /> -<objsur guid="d8631167-08bd-4571-bc7c-57a4407da51c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="5e7d9554-f1ac-410c-8d5b-f210f369ec08" ownerguid="2d3615a7-d19a-4180-81b7-67d5e2072960"> -<Form> -<AUni ws="qvm-x-ach">wichpi</AUni> -<AUni ws="qvm-x-acl">wichpi; wichpi; wichpe</AUni> -<AUni ws="qvm-x-akh">wichpi</AUni> -<AUni ws="qvm-x-akl">wichpi; wichpi; wichpe</AUni> -<AUni ws="qvm-x-ame">wichpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="5e7e8f2b-1811-4c33-96d2-c0acc755fb21" ownerguid="12d73f07-821e-4621-98a7-486b1619e81a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="5e83f9ff-8343-476e-a462-55f394f8d585" ownerguid="84367e7d-d279-4e1c-81b4-86492bd6380f"> -<Definition> -<AStr ws="en"> -<Run ws="en">reflexive allomorph which potentially undergoes morphlowering</Run> -</AStr> -</Definition> -<Gloss> -<AUni ws="en">REFml</AUni> -<AUni ws="es">REFml</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="81f3d70c-d128-4e27-8e31-b45d07072af7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5e85ef4d-14af-4fd2-9e7b-12f362d665e3" ownerguid="3ccc3a21-07c8-4983-a044-e3c74b538135"> -<ExampleWords> -<AUni ws="en">shorten, make something shorter, cut down, condense</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to making something short?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5e86186f-b890-4790-96a7-ce2b31c523cd" ownerguid="341926ec-14e9-405b-82d7-e40dc0d3bd24"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">contractor</AUni> -<AUni ws="es">albañil</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0dae55a1-cee7-4026-bead-5a70bfea0c42" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="5e867d46-1499-4a2e-a6d0-be4e561e632d" ownerguid="f4e34394-ff52-4675-aa7b-feeaca45934e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">glass</AUni> -<AUni ws="es">vidrio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b802bd6d-b05a-4c74-b73c-36370b14a854" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5e899791-68d8-4731-a979-2ea5d64c2eb2" ownerguid="0ce61f27-9de8-49b2-9189-6f6efe488f6d"> -<ExampleWords> -<AUni ws="en">search, look, look for, seek, hunt for, dig, explore, root, sniff, spy, track, be on the lookout for</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to searching for something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5e8a01ea-42bd-427a-89dc-ad06dadaba0e" ownerguid="21167445-f1b1-49b4-b147-bc792616c432"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The meeting <is at> four o'clock.; John stopped for lunch <at> noon.; The game <is on> Saturday.; Saturday<'s> game; <The time of> the meeting <will be> four o'clock.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">when, upon, thereupon, then, at, be at, be on, -'s, time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something is happening at some time?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5e8f97eb-5732-4ef2-bec0-bfe818b9d41c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jutsa</AUni> -<AUni ws="qvm-x-acl">jutsa</AUni> -<AUni ws="qvm-x-akh">jutsa</AUni> -<AUni ws="qvm-x-akl">jutsa</AUni> -<AUni ws="qvm-x-ame">hutsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hucha</AUni> -<AUni ws="qvm-x-acl">*hucha</AUni> -<AUni ws="qvm-x-akh">*hucha</AUni> -<AUni ws="qvm-x-akl">*hucha</AUni> -<AUni ws="qvm-x-ame">*hucha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.751" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="34339e50-2a59-492b-8437-683e834db4a1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hucha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9a546f94-1226-4acc-a36f-146114658c9d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ab1d1011-6a28-4ebb-9229-48815ee2f894" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hucha 
\entryTyp root 
\gENG sin 
\gSPN pecado 
\e *hucha 
\c N0 
\ach jutsa 
\akh jutsa 
\acl jutsa 
\akl jutsa 
\ame hutsa 
\mcc *hucha / ~_ DO2 PASS 
\mcc *hucha / ~_ GEN PLUR</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5e95ddf0-522b-4cee-9f88-8fc7bae1a0e9" ownerguid="ecc39bc2-6336-48ca-be46-cf5e49a3c267"> -<ExampleWords> -<AUni ws="en">borer, carnivorous, cosmopolitan, crawling, creeping, diurnal, dauber, flying, hopper, hopping, insectile, larva, larval, nocturnal, pest, predaceous, predator, pupa, queen, segmented, stinging, two-winged, venomous, winged, wingless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe insects?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5e97d5f7-90f1-4fed-9427-a34322d444b7" ownerguid="06cb2024-5f7b-467c-b32c-ef4c56030ac0"> -<ExampleWords> -<AUni ws="en">timekeeper</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What is a person called who keeps time?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5e9b9676-dd94-4f68-8eac-d75773b79a6b" ownerguid="db86135b-faf9-4772-804e-e6db4eb2c546"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5e9ea014-f65d-4bc3-8b9e-8f20e02d53cb" ownerguid="be280123-dda6-49a0-bd8c-5e2855b56159"> -<ExampleWords> -<AUni ws="en">seed, seedling, cutting</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the things that are planted?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="5e9f361d-17dc-4ada-a312-8da269d22a64" ownerguid="73499b8b-76fc-4121-8bfa-1bdebe537259"> -<Abbreviation> -<AUni ws="en">1.6.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.978" /> -<DateModified val="2022-9-23 16:55:7.978" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to mammals (phylum Chordata, class Mammalia).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Mammal</AUni> -</Name> -<OcmCodes> -<Uni>136f Mammals</Uni> -</OcmCodes> -<Questions> -<objsur guid="dfd21a22-9661-4d43-a474-44ba78dddaee" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="40248a12-1809-4561-b786-e4e274c14d82" t="o" /> -<objsur guid="56ef3f06-7fb9-462e-a7d0-517f3ce1623f" t="o" /> -<objsur guid="bbd3c3f1-7387-4ec6-a75d-66c1355a94ef" t="o" /> -<objsur guid="a8b9e892-df3e-44c4-8c68-7a0f7f4468bb" t="o" /> -<objsur guid="31171aa9-e243-4b46-abd8-f3e52843cdfc" t="o" /> -<objsur guid="445f3084-f250-40fa-87ba-ebd233f9018f" t="o" /> -<objsur guid="e22d860a-d207-4649-8ab5-4592b838febb" t="o" /> -<objsur guid="2c322d8b-d762-43ce-b905-aab41f9c7bbb" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="5ea4f6af-0125-4cdd-8a90-8a2d9089df5f"> -<Analyses> -<objsur guid="0bd1ff14-0f91-4144-8ccc-ae374620d493" t="o" /> -<objsur guid="28ec5f29-2535-4cf7-959b-1578521614bd" t="o" /> -<objsur guid="3c684436-fa67-470d-97b4-d9e7c8ab0a3c" t="o" /> -<objsur guid="65429919-05cf-4261-8822-c821702f636f" t="o" /> -<objsur guid="7fe7626d-bcfc-490a-981f-61a702901ca5" t="o" /> -<objsur guid="82d7a7cb-e372-4c4e-aa11-cb2cdbe24bfe" t="o" /> -<objsur guid="8be39c56-0972-48b7-bc2c-726974fae70a" t="o" /> -<objsur guid="9d896f02-c26a-49e1-a602-5f97ae3d2bc2" t="o" /> -<objsur guid="dad53ed2-34f7-42a1-a9db-6ed5cd728a57" t="o" /> -<objsur guid="f8026a5b-8134-4f56-bb77-4257c8f8c8a7" t="o" /> -</Analyses> -<Checksum val="-1707523133" /> -<Form> -<AUni ws="qvm-x-akh">kuyapaypa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="5ea72913-a220-4d8c-aa5a-15eb9dc0d4c5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tu:nas</AUni> -<AUni ws="qvm-x-acl">tu:nas</AUni> -<AUni ws="qvm-x-akh">tu:nas</AUni> -<AUni ws="qvm-x-akl">tu:nas</AUni> -<AUni ws="qvm-x-ame">tu:nas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tunas</AUni> -<AUni ws="qvm-x-acl">+tunas</AUni> -<AUni ws="qvm-x-akh">+tunas</AUni> -<AUni ws="qvm-x-akl">+tunas</AUni> -<AUni ws="qvm-x-ame">+tunas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.997" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9a400249-719c-437b-b3b7-9929055dda24" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tunas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="301a6161-cc8e-4a60-93c5-94f8ca51cdc2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d743fafa-abb2-41e8-ac7c-748db39e07bd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tunas 
\entryTyp root 
\gENG cactus 
\gSPN tuna 
\e +tunas 
\c N0 
\mp +FinalC 
\ach tu:nas 
\akh tu:nas 
\acl tu:nas 
\akl tu:nas 
\ame tu:nas</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5ea876b0-233d-491e-8919-7903e9cffc1c" ownerguid="937576c5-65b5-4f33-a5e0-6e04bcce4c1b"> -<Form> -<AUni ws="qvm-x-ach">campäña</AUni> -<AUni ws="qvm-x-acl">campäña</AUni> -<AUni ws="qvm-x-akh">campäña</AUni> -<AUni ws="qvm-x-akl">campäña</AUni> -<AUni ws="qvm-x-ame">campäña</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5ea92851-aab7-4352-b8e3-23df8de081ea" ownerguid="2daede19-ce5f-46b6-ae68-32d6092441f1"> -<ExampleWords> -<AUni ws="en">lively, vivacious, animated, be full of beans, bright and breezy, be a live wire, feel alive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who is energetic and happy?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="5ea9301a-9906-4e81-97cf-48ee95a54c63" ownerguid="b50f39cb-3152-4d56-9ddc-4b98f763e76a"> -<Abbreviation> -<AUni ws="en">3.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to influencing someone--to do something because you want someone to change his thinking.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Influence</AUni> -</Name> -<Questions> -<objsur guid="3ec3a65a-b31c-45c5-91ba-3d3f0061f7d5" t="o" /> -<objsur guid="60bf11e1-6f26-4aad-9232-79d1f7d57212" t="o" /> -<objsur guid="7848344d-9e7c-44ce-bd73-28c4852913a4" t="o" /> -<objsur guid="3d4a4c5d-8674-42de-96c8-a8d60696d28e" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="94f919c2-bf8b-4ae5-a611-8c0cd4d7a5d2" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="8ea4e0d4-71a2-4583-a1fe-f1a941af8478" t="o" /> -<objsur guid="6bfb7813-3a7d-47e2-88e1-d54034c07e5d" t="o" /> -<objsur guid="9d428e57-e125-4575-b165-9bc6fd4ec507" t="o" /> -<objsur guid="ad56dc48-9c39-43f6-9386-f7df80d93cd4" t="o" /> -<objsur guid="6fbe39fb-a4cb-4fcf-830b-8875fd4324e0" t="o" /> -<objsur guid="e6ec43ef-0100-4cf4-a047-c575ee8613b4" t="o" /> -<objsur guid="3445e61b-61a3-4ede-93f5-402ebe9ca51c" t="o" /> -<objsur guid="c1c1dcb4-8fe5-43ac-9b91-b2b2bc33de5b" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="5eaba272-2af0-4b2c-8a16-76714797a264" ownerguid="bc402db4-d50d-4462-8b6b-c4ef65c780a8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">agent</AUni> -<AUni ws="es">agente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="067af888-176a-4e7d-aba8-e592fbbeb6f1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5eb1304e-aec4-457e-854d-988de6106459" ownerguid="7459c0d8-4da1-4944-a95e-bc64cde860f5"> -<ExampleWords> -<AUni ws="en">invited guest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to someone who has been invited?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5eb2b1a8-3427-4929-be10-ceb6d354950d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gamya</AUni> -<AUni ws="qvm-x-acl">gamya</AUni> -<AUni ws="qvm-x-akh">qamya</AUni> -<AUni ws="qvm-x-akl">qamya</AUni> -<AUni ws="qvm-x-ame">qamya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qamya.v</AUni> -<AUni ws="qvm-x-acl">*qamya.v</AUni> -<AUni ws="qvm-x-akh">*qamya.v</AUni> -<AUni ws="qvm-x-akl">*qamya.v</AUni> -<AUni ws="qvm-x-ame">*qamya.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.82" /> -<DateModified val="2022-10-10 21:19:47.699" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b9b0d5a1-2363-4eb1-8e94-0dadbe00071f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qamya.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bfb025ad-3a69-490b-8406-53ca366c0147" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7bcbd2ff-571d-452d-8c95-75f5456501ab" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qamya.v 
\entryTyp root 
\gENG bland 
\gSPN 
\e *qamya.v 
\c V1 
\ach gamya 
\akh qamya 
\acl gamya 
\akl qamya 
\ame qamya</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="5eb56e77-4c54-42af-a695-950e38061de5" ownerguid="cddde224-2249-4742-b325-3d8b84dc578b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">carrot</AUni> -<AUni ws="es">zanahoria</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6bf11594-247e-4669-8800-fabeb8b69adf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="5eb57d71-5fe5-43cc-9910-255118deca0c" ownerguid="31d441c5-02eb-4d40-be94-b48e37b59652"> -<Form> -<AUni ws="qvm-x-ach">ogaushu</AUni> -<AUni ws="qvm-x-acl">ogaushu; ogaushu; ogausho</AUni> -<AUni ws="qvm-x-akh">oqawshu</AUni> -<AUni ws="qvm-x-akl">oqawshu; oqawshu; oqawsho</AUni> -<AUni ws="qvm-x-ame">uqawshu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="5eb5b210-94af-4b37-bbe4-51196a6948f9" ownerguid="fe0f53d3-a585-4874-98f3-8e9b3424a84a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">roof</AUni> -<AUni ws="es">techar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ff548205-e737-4f3b-8df7-eb02f93307cb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5eb6d0d0-79d3-41e5-b4bc-576076f05dc2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rashca</AUni> -<AUni ws="qvm-x-acl">rashca</AUni> -<AUni ws="qvm-x-akh">rashka</AUni> -<AUni ws="qvm-x-akl">rashka</AUni> -<AUni ws="qvm-x-ame">rashka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rashka</AUni> -<AUni ws="qvm-x-acl">*rashka</AUni> -<AUni ws="qvm-x-akh">*rashka</AUni> -<AUni ws="qvm-x-akl">*rashka</AUni> -<AUni ws="qvm-x-ame">*rashka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.277" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ef42ad47-5143-4668-a2c5-a4542d3c0dce" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rashka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4ffec0c2-3214-4804-8e92-d495a0e8fa7a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1a894acf-87a1-44cd-b64b-47bcc04d5171" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rashka 
\entryTyp root 
\gENG 
\gSPN informal 
\e *rashka 
\c N0 
\ach rashca 
\akh rashka 
\acl rashca 
\akl rashka 
\ame rashka</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5eb965eb-eeb8-47e9-b4e6-9e250f8e6423" ownerguid="78ccab71-20ea-48cd-9a27-15ed781f3b17"> -<Form> -<AUni ws="qvm-x-ach">carpa</AUni> -<AUni ws="qvm-x-acl">carpa</AUni> -<AUni ws="qvm-x-akh">carpa</AUni> -<AUni ws="qvm-x-akl">carpa</AUni> -<AUni ws="qvm-x-ame">carpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="5ec131f3-bd87-419f-b90c-0b3e8cdb0a1b" ownerguid="c5ffe4fb-9a60-4ac0-b1d4-08c7d02111c6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="5ec45cb7-51fb-4241-84e0-690587155596" ownerguid="2322e9e9-f483-412e-be1d-e5bef48714f5"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="5ec4c46f-784d-4e6e-a3ab-e8e8e603c376"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">goshni</AUni> -<AUni ws="qvm-x-acl">goshni; goshne</AUni> -<AUni ws="qvm-x-akh">qoshni</AUni> -<AUni ws="qvm-x-akl">qoshni; qoshne</AUni> -<AUni ws="qvm-x-ame">qushni</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qushni.v</AUni> -<AUni ws="qvm-x-acl">*qushni.v</AUni> -<AUni ws="qvm-x-akh">*qushni.v</AUni> -<AUni ws="qvm-x-akl">*qushni.v</AUni> -<AUni ws="qvm-x-ame">*qushni.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.882" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ba576ff6-020c-40ad-b716-e3e46303d189" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qushni.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e970cb94-ce60-4f30-b13a-d44b563e97a2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="97bf7d0a-f030-4807-89c1-10e52d7a3a89" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qushni.v 
\entryTyp root 
\gENG 
\gSPN 
\e *qushni.v 
\c V1 
\mp +FinalI 
\ach goshni 
\akh qoshni 
\acl goshni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl goshne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qoshni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qoshne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qushni</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="5ec4cb19-0127-4e01-8d32-31703728bbcb" ownerguid="044eef17-ef15-46c5-9ff5-83b31c637421"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="924ef02d-b9fa-4717-bd20-87b430daf3fc" t="o" /> -<objsur guid="c9fe47df-5dd1-4007-b1f8-e8aebbea094c" t="o" /> -<objsur guid="1f78ede1-e0c1-4656-bbc5-a5976322ac34" t="o" /> -<objsur guid="65ce0817-cfae-4511-8b11-7d3bde6d7f8e" t="o" /> -<objsur guid="b34c8664-e3fd-4ea0-8004-b9a462426783" t="o" /> -<objsur guid="bddc72ff-ab18-4452-b21a-3de854e3227e" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="5ec50c96-f6e8-4a5e-baf7-a70fb47280ee"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">molca</AUni> -<AUni ws="qvm-x-acl">molca</AUni> -<AUni ws="qvm-x-akh">molka</AUni> -<AUni ws="qvm-x-akl">molka</AUni> -<AUni ws="qvm-x-ame">mulka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mollka</AUni> -<AUni ws="qvm-x-acl">*mollka</AUni> -<AUni ws="qvm-x-akh">*mollka</AUni> -<AUni ws="qvm-x-akl">*mollka</AUni> -<AUni ws="qvm-x-ame">*mollka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.467" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="da5bbc87-883e-4a96-aec6-68feb30814a6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mollka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cfc64b23-684a-4b1c-a89f-61fe3ccbdbae" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="74ffd345-abda-4b12-8bab-4109bbcbecc0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mollka 
\entryTyp root 
\gENG flip 
\gSPN lanzar 
\e *mollka 
\c V1 
\ach molca 
\akh molka 
\acl molca 
\akl molka 
\ame mulka</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="5ec6f96e-99d3-47a6-92dd-2390269e6350" ownerguid="2e61b40e-2fdb-47c4-a2d0-cd77f8b9adee"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5ec7666b-03ae-44f1-aae1-5928cbb16e09" ownerguid="6b208fda-544c-4cba-b8cc-887b1018837f"> -<ExampleWords> -<AUni ws="en">photography, picture taking</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to photography in general?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5ec80646-cf32-41f0-b851-0c57c6275fc5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fuminta</AUni> -<AUni ws="qvm-x-acl">fuminta</AUni> -<AUni ws="qvm-x-akh">fuminta</AUni> -<AUni ws="qvm-x-akl">fuminta</AUni> -<AUni ws="qvm-x-ame">fuminta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fomentar</AUni> -<AUni ws="qvm-x-acl">+fomentar</AUni> -<AUni ws="qvm-x-akh">+fomentar</AUni> -<AUni ws="qvm-x-akl">+fomentar</AUni> -<AUni ws="qvm-x-ame">+fomentar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.568" /> -<DateModified val="2022-10-10 21:18:47.218" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c69c9fc1-2a39-4ef6-b2c1-f06caaf308b9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fomentar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="19ebc539-9be7-4671-82a2-912be0464e23" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3fef0346-9d8c-498b-a942-0266b865dee4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fomentar 
\entryTyp root 
\gENG 
\gSPN 
\e +fomentar 
\c V1 
\ach fuminta 
\akh fuminta 
\acl fuminta 
\akl fuminta 
\ame fuminta 
\i Exo 32.12 Ushacätsiptiquega Egipto runacuna caynog nenga: <Chunyag jircacho ushacätsinan cashgami cay nacionpita jorgushga.> Tsaynog nir mana jomintaycänanpag ama ushacaycatsilaytsu.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5eca9f08-a177-462f-8f67-1e0727d75230" ownerguid="fcc204a3-eae4-46d1-a9dc-08864fde1772"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">I own less land than you.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">less, fewer, not as much, not so much, not as many, not so many, lower, to a lesser degree, to a lesser extent, be in the minority, fewer and fewer, less and less, not more than, at the most</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is less than another thing in number or amount?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5ecbcc37-2fb1-403b-a8e4-a6a3fee8a140" ownerguid="b715f06f-153e-4a6a-b018-7a5388b0daae"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0 V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="013f658e-8c8d-40f0-8b8b-af8860ec82f0" t="o" /> -</Examples> -<Gloss> -<AUni ws="es">bandera</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="07ea8a9f-4e30-41da-bcaf-6b43ee2e270d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="5ecdd6fe-561b-4e4f-8b7e-a9d573267041" ownerguid="38c34e04-c76c-4c5e-b3d1-7d98e7fda0ad"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="5ecde634-10ad-4276-acd6-460357c85899" ownerguid="01c0fabf-e23c-49d4-8b4e-5b36ad316d50"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="57e435ff-f14a-44e1-b595-dff01f37fcc1" t="r" /> -</Morph> -<Msa> -<objsur guid="be6973f5-a2b1-46a6-9dd0-379cd8bb168a" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="5eceb3ae-ff49-4580-90c1-f98f9e2a9ee9" ownerguid="0f70c0b3-79b7-4a5a-b1b4-8fb1c2bd1b41"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="5ecff316-8cf6-450b-b95b-03dc2b801007"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wagya</AUni> -<AUni ws="qvm-x-acl">wagya</AUni> -<AUni ws="qvm-x-akh">waqya</AUni> -<AUni ws="qvm-x-akl">waqya</AUni> -<AUni ws="qvm-x-ame">waqya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waqya.v</AUni> -<AUni ws="qvm-x-acl">*waqya.v</AUni> -<AUni ws="qvm-x-akh">*waqya.v</AUni> -<AUni ws="qvm-x-akl">*waqya.v</AUni> -<AUni ws="qvm-x-ame">*waqya.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.515" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="abc93d7d-22a4-441f-89a1-4385f3f108b0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waqya.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6a26bb4b-b8e6-42be-a55b-b5a53700c129" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="058e9743-e563-4c68-a706-50d256e03a5d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waqya.v 
\entryTyp root 
\gENG 
\gSPN 
\e *waqya.v 
\c V1 
\ach wagya 
\akh waqya 
\acl wagya 
\akl waqya 
\ame waqya</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="5ed183bc-81f8-4f4d-a1e4-436bf9b8fbcf" ownerguid="4c308c44-f7bb-4116-9c24-0b60f417756a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5ed19bbc-6c68-4c23-87d2-3820453bbb96" ownerguid="f6e416b3-50b1-4e48-8a39-2998725b1c79"> -<ExampleWords> -<AUni ws="en">get divorced, divorce (v), get a divorce, end in divorce, dissolution, dissolve</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to divorcing your wife or husband?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5edc9272-cf93-4fe7-9d3a-dd28cd4b5126"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pilashta</AUni> -<AUni ws="qvm-x-acl">pilashta</AUni> -<AUni ws="qvm-x-akh">pilashta</AUni> -<AUni ws="qvm-x-akl">pilashta</AUni> -<AUni ws="qvm-x-ame">pilashta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pillashta</AUni> -<AUni ws="qvm-x-acl">*pillashta</AUni> -<AUni ws="qvm-x-akh">*pillashta</AUni> -<AUni ws="qvm-x-akl">*pillashta</AUni> -<AUni ws="qvm-x-ame">*pillashta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.830" /> -<DateModified val="2022-10-10 21:18:47.197" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b95c77d7-0ca4-4c09-af39-dbb3fd2ba4ef" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pillashta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4970fcd5-05f8-4d23-8365-ab046908ffb4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4af126a5-9d7a-4377-b86c-b7e51066a434" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pillashta 
\entryTyp root 
\gENG 
\gSPN 
\e *pillashta 
\c V1 
\ach pilashta 
\akh pilashta 
\acl pilashta 
\akl pilashta 
\ame pilashta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5eded5f8-424a-481f-aeae-105fac5a91fa" ownerguid="851e4059-edab-45da-aa33-7ee5c994b2f9"> -<Form> -<AUni ws="qvm-x-ach">oshgu</AUni> -<AUni ws="qvm-x-acl">oshgu; oshgu; oshgo</AUni> -<AUni ws="qvm-x-akh">oshqu</AUni> -<AUni ws="qvm-x-akl">oshqu; oshqu; oshqo</AUni> -<AUni ws="qvm-x-ame">ushqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5ee17381-eb51-46d7-bfdb-ca5c02509158" ownerguid="64fa0ba7-73cb-40e9-a8d2-3e61fff146c9"> -<ExampleWords> -<AUni ws="en">hair coloring</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What things are used to dye hair?</AUni> -</Question> -</rt> -<rt class="StTxtPara" guid="5ee176c4-c63e-4b8d-a966-d927606f0795" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">yarparan</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="5732158a-3529-42ba-967a-0d886ea83daa" t="o" /> -</Segments> -</rt> -<rt class="MoStemMsa" guid="5ee5efc9-f32d-446b-8981-227ad00988c4" ownerguid="82d5ad14-fa2a-4853-ba84-32d94531126d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="5ee64d88-c462-4505-b14a-5d36e357a024" ownerguid="91913920-8a6a-4ba0-9361-d6cc9e1f3639"> -<Abbreviation> -<AUni ws="en">8.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the top part of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Top</AUni> -</Name> -<Questions> -<objsur guid="379e605b-f539-4f2b-ac07-b3e4603eaa4d" t="o" /> -<objsur guid="3c68b033-ae44-4399-9ff8-4e9fdf44c32a" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="6a4f5638-388e-4c8e-9bb7-8e742dac43db" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="5eea8f22-44c7-4c4e-aa8b-e359fb01c4c6" ownerguid="00a13013-72ac-4a52-a4fa-9f65210728c9"> -<Form> -<AUni ws="qvm-x-ach">agulu</AUni> -<AUni ws="qvm-x-acl">agulu; agulo</AUni> -<AUni ws="qvm-x-akh">aqulu</AUni> -<AUni ws="qvm-x-akl">aqulu; aqulo</AUni> -<AUni ws="qvm-x-ame">aqulu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="5eeccff3-04b4-4136-a2d4-3a96706ea5b1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pogru</AUni> -<AUni ws="qvm-x-acl">pogru; pogro</AUni> -<AUni ws="qvm-x-akh">poqru</AUni> -<AUni ws="qvm-x-akl">poqru; poqro</AUni> -<AUni ws="qvm-x-ame">puqru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puqru.v</AUni> -<AUni ws="qvm-x-acl">*puqru.v</AUni> -<AUni ws="qvm-x-akh">*puqru.v</AUni> -<AUni ws="qvm-x-akl">*puqru.v</AUni> -<AUni ws="qvm-x-ame">*puqru.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.12" /> -<DateModified val="2022-10-10 21:19:47.691" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c639dfd0-dc5c-4651-b1ef-25999c7fa9e1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puqru.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="edbc28df-38f9-4fc9-9d36-c674cd2c874c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8674c928-a386-4e3f-b247-a16e8a9ff9f6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puqru.v 
\entryTyp root 
\gENG exude.pus 
\gSPN 
\e *puqru.v 
\c V1 
\ach pogru 
\akh poqru 
\acl pogru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pogro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl poqru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl poqro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame puqru</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="5eed873a-0db7-4989-b4d8-f190b0c81b03" ownerguid="3013df2e-80a3-49c0-a77e-991532b8bfeb" /> -<rt class="CmDomainQ" guid="5eed97ab-9230-4762-8aa3-adc466392ef3" ownerguid="45f7b003-ade3-4efc-8dee-259dcbf80a4a"> -<ExampleWords> -<AUni ws="en">petitioner, suppliant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who makes a request?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5eee1459-c5f9-4225-bee3-5c293d774d15" ownerguid="86e5c062-d90f-476c-a363-264adfafedfa"> -<ExampleWords> -<AUni ws="en">shake, quiver, tremble, have the chills, quake, shiver</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to when your body shakes?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5eee3462-897f-451d-aba1-401d5d7f5f36" ownerguid="9afb64d6-feae-4490-9b7e-95768627f643"> -<ExampleWords> -<AUni ws="en">make an appeal, appeal to, entreat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to one person asking another to do what is good?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5eee385d-3369-4eec-b7db-334e87092315" ownerguid="f864b0ee-eb43-4def-bdc6-66c8a417aa1a"> -<PartOfSpeech> -<objsur guid="07455e91-118a-4d7d-848c-39bedd355a3d" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="5eef66a2-47be-4653-b45f-a6284ad5bc2e" ownerguid="8662aa19-df80-4dc7-b6b3-270db0d1456a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="5ef13a22-d5d4-4b58-b73f-b6eaa745095b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tseqli</AUni> -<AUni ws="qvm-x-acl">tseqli; tseqle</AUni> -<AUni ws="qvm-x-akh">tseqli</AUni> -<AUni ws="qvm-x-akl">tseqli; tseqle</AUni> -<AUni ws="qvm-x-ame">tsiqli</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chiqlli</AUni> -<AUni ws="qvm-x-acl">*chiqlli</AUni> -<AUni ws="qvm-x-akh">*chiqlli</AUni> -<AUni ws="qvm-x-akl">*chiqlli</AUni> -<AUni ws="qvm-x-ame">*chiqlli</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.315" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="32961915-11f8-4fb7-ad54-abd1517b02fb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chiqlli</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="989e44c7-6f88-47ef-893f-10eac1bc5c53" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="16b0c753-8527-4710-b4a5-e8b6706902cb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chiqlli 
\entryTyp root 
\gENG bud 
\gSPN brotar 
\e *chiqlli 
\c V1 
\mp +FinalI 
\ach tseqli 
\akh tseqli 
\acl tseqli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tseqle +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tseqli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tseqle +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsiqli</Run> -</AStr> -</Custom> -</rt> -<rt class="Segment" guid="5ef1803c-9c2b-42c9-8642-000bd2408885" ownerguid="3687a5d2-d188-42d9-902e-c87bf79ca94e"> -<Analyses> -<objsur guid="70452de9-2140-4d6d-99ae-4f141a2b507f" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexEntry" guid="5ef2c0c2-bdb5-4671-820b-d086076ca689"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">milu</AUni> -<AUni ws="qvm-x-acl">milu</AUni> -<AUni ws="qvm-x-akh">milu</AUni> -<AUni ws="qvm-x-akl">milu</AUni> -<AUni ws="qvm-x-ame">milu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*millu.n</AUni> -<AUni ws="qvm-x-acl">*millu.n</AUni> -<AUni ws="qvm-x-akh">*millu.n</AUni> -<AUni ws="qvm-x-akl">*millu.n</AUni> -<AUni ws="qvm-x-ame">*millu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.436" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="59aebde1-d9d6-4c8a-878c-37ab171803ad" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*millu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="69dcd694-149a-4d7b-b2e1-94e3adb2a856" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7e90e817-cf7f-4654-b936-db5ee3d01e49" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *millu.n 
\entryTyp root 
\gENG wind 
\gSPN dar.cuerda 
\e *millu.n 
\c ONSHEV 
\ach milu 
\akh milu 
\acl milu 
\akl milu 
\ame milu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="5efba326-7d82-4cfa-99af-64c198d68bc6" ownerguid="3566012f-e7af-4199-9074-59fb67ed2279"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dawn</AUni> -<AUni ws="es">amanecer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d2813fb1-22ca-4641-8463-6dc5023c693e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="5f01f060-dcce-4c79-9d0d-8121fb59f437" ownerguid="9bb0b5cd-a299-49ec-b100-0d5dcbd6beb5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="5f02284f-8fcd-475c-bd53-186219a5a60f" ownerguid="70452de9-2140-4d6d-99ae-4f141a2b507f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -<Sense> -<objsur guid="1b926284-5562-4cf3-8ad2-65536a715093" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="5f033937-0a4e-4d74-939a-68a70aed197f" ownerguid="ffe6d90a-c302-4d64-a075-c6efdb2caacd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5f039309-1849-4cc5-87f4-55d695e48c4b" ownerguid="c0f4715e-55c9-4379-ab6f-ad561a5e7151"> -<ExampleWords> -<AUni ws="en">belief</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to something that a person believes?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5f03dca8-7e4b-4f57-92fa-0d4d78917c51" ownerguid="34c9408c-c3f7-49db-8bce-de7fa7da03d7"> -<ExampleWords> -<AUni ws="en">catch, trap, snare, capture, round up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to catching an animal?</AUni> -</Question> -</rt> -<rt class="MoInflAffixSlot" guid="5f0a99ac-644b-4188-83d9-e7927958c17e" ownerguid="a4fc78d6-7591-4fb3-8edd-82f10ae3739d"> -<Name> -<AUni ws="en">word final</AUni> -</Name> -<Optional val="True" /> -</rt> -<rt class="LexSense" guid="5f0d4a6b-04e4-465b-9527-4269d2c2688f" ownerguid="c202eb1b-5ce5-4be4-83c5-9ad24ddd4c18"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spleen?</AUni> -<AUni ws="es">vaso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5fee2042-db50-421f-97d6-308e60727e3c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5f0f5899-03f5-4d31-9b11-4a84db13c35d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">acu</AUni> -<AUni ws="qvm-x-acl">acu</AUni> -<AUni ws="qvm-x-akh">aku</AUni> -<AUni ws="qvm-x-akl">aku</AUni> -<AUni ws="qvm-x-ame">aku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aku.o</AUni> -<AUni ws="qvm-x-acl">*aku.o</AUni> -<AUni ws="qvm-x-akh">*aku.o</AUni> -<AUni ws="qvm-x-akl">*aku.o</AUni> -<AUni ws="qvm-x-ame">*aku.o</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.689" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d23896ae-a90f-44ff-b394-d27fa77fa1e4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aku.o</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="86a40190-3765-4ed7-bc6e-630b3d19ad1c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2f59b387-4523-42cb-baa3-eeea40f02a93" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aku.o 
\entryTyp root 
\gENG let's.go 
\gSPN vamos 
\e *aku.o 
\c ONSHEV 
\ach acu 
\akh aku 
\acl acu 
\akl aku 
\ame aku</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5f15b499-fc31-420a-ab19-4ef436ffc42c" ownerguid="5a39edae-1ace-4889-b636-1dfd2a1bcc3c"> -<ExampleWords> -<AUni ws="en">pour, dump, spill</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to turning a container so that its contents come out?</AUni> -</Question> -</rt> -<rt class="Segment" guid="5f1694be-5266-481e-8bac-3ea71147d122" ownerguid="0517af79-daf3-44b4-901c-ac1f7cc2b3db"> -<Analyses> -<objsur guid="7beae6bb-49c0-4482-8f38-e6eec6b393bb" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="CmDomainQ" guid="5f170783-9417-4e0d-9f90-6ba8c6c22d85" ownerguid="5e3bb9e5-fd70-4c5a-95a0-938bc4876a47"> -<ExampleWords> -<AUni ws="en">come true, come about, be fulfilled, materialize</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to an expectation happening?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5f17ed7c-026a-4c4d-a4aa-e72337c7ae87" ownerguid="b4e9a00e-70ab-4ccf-a837-07e02f91712a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">denounce</AUni> -<AUni ws="es">denunciar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a6afdfff-d775-4c02-be89-5d494a627972" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5f19b3eb-124c-4e45-a1a4-f4740c6bad00"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">acacluy</AUni> -<AUni ws="qvm-x-acl">acacluy</AUni> -<AUni ws="qvm-x-akh">akakluy</AUni> -<AUni ws="qvm-x-akl">akakluy</AUni> -<AUni ws="qvm-x-ame">akakluy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+acacalote</AUni> -<AUni ws="qvm-x-acl">+acacalote</AUni> -<AUni ws="qvm-x-akh">+acacalote</AUni> -<AUni ws="qvm-x-akl">+acacalote</AUni> -<AUni ws="qvm-x-ame">+acacalote</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.619" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fee9e168-8997-4a4d-ab92-49a94c1e53a6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+acacalote</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="30ad1169-769b-4cc9-9fd8-e266e57475ae" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="039d434c-e35b-4172-a215-ff0204011bb7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +acacalote 
\entryTyp root 
\gENG bird 
\gSPN acacalote 
\e +acacalote 
\c N0 
\mp KQWchange 
\ach acacluy 
\akh akakluy 
\acl acacluy 
\akl akakluy 
\ame akakluy 
\mp +FinalC 
\mp +assimilated</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5f1aa4d8-a382-4a59-9578-fcb34a6aa414" ownerguid="28fe4892-b5e3-4dc9-9f65-b2b0c1ba2aba"> -<Form> -<AUni ws="qvm-x-ach">distrïtu</AUni> -<AUni ws="qvm-x-acl">distrïtu; distrïtu; distrïto</AUni> -<AUni ws="qvm-x-akh">distrïtu</AUni> -<AUni ws="qvm-x-akl">distrïtu; distrïtu; distrïto</AUni> -<AUni ws="qvm-x-ame">distrïtu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="Segment" guid="5f1bd9cb-5fb2-4ef2-be0e-82a6d4447a55" ownerguid="262d0404-2451-40f9-b01e-e0190dd07374"> -<Analyses> -<objsur guid="5151d545-a147-4c16-b63f-7a8bfeb75c3c" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="5f1e6c3b-556e-4c6b-83ad-8cb3fda14eba" ownerguid="bf08aac6-305f-435c-abe7-9634c0632db4"> -<Form> -<AUni ws="qvm-x-ach">gaywi</AUni> -<AUni ws="qvm-x-acl">gaywi; gaywe</AUni> -<AUni ws="qvm-x-akh">qaywi</AUni> -<AUni ws="qvm-x-akl">qaywi; qaywe</AUni> -<AUni ws="qvm-x-ame">qaywi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5f1e80b6-e9b3-4c0d-8406-cf471dcc390e" ownerguid="295dc021-5b50-47b3-8340-1631c6d6fadc"> -<ExampleWords> -<AUni ws="en">comfortable, cozy, snug, smooth, luxurious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that makes you feel comfortable?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5f1fb292-66d5-4344-a395-a1ba2dff6bc8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">vene:nu</AUni> -<AUni ws="qvm-x-acl">vene:nu; vene:nu; vene:no</AUni> -<AUni ws="qvm-x-akh">vene:nu</AUni> -<AUni ws="qvm-x-akl">vene:nu; vene:nu; vene:no</AUni> -<AUni ws="qvm-x-ame">vene:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+veneno</AUni> -<AUni ws="qvm-x-acl">+veneno</AUni> -<AUni ws="qvm-x-akh">+veneno</AUni> -<AUni ws="qvm-x-akl">+veneno</AUni> -<AUni ws="qvm-x-ame">+veneno</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.363" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="852feca6-c302-4f36-a072-5c0034f8c60d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+veneno</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="48c4fc92-5238-44b1-a11c-c8d74575ebcf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e6942e7f-88b6-48cf-af33-b92d9908c614" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +veneno 
\entryTyp root 
\gENG poison 
\gSPN veneno 
\e +veneno 
\c N0 
\ach vene:nu 
\akh vene:nu 
\acl vene:nu / _# 
\acl vene:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl vene:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl vene:nu / _# 
\akl vene:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl vene:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame vene:nu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="5f1fcdb2-7589-4084-b8e7-0460deac7e70" ownerguid="0603c405-3d02-40c2-8da1-dc78c9d47ecf"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="5f22e72b-5029-485a-a5e8-7fa7276c9920" ownerguid="7ab73859-51e8-4cb8-869b-91d6a78f95e2"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="57112617-2bac-4626-89e7-f3a846b58bb4" t="o" /> -<objsur guid="4195da6a-ee95-43c5-93eb-f887f0fab558" t="o" /> -<objsur guid="7c2dee35-dc56-4d70-ac4f-9096bf9a7f01" t="o" /> -<objsur guid="42ed41dc-391d-44f1-b7d9-13fd43d85b00" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="5f246140-d524-4702-a464-33fae9fb1071" ownerguid="bafa274e-8bf0-4cf7-8ce7-2c28293db809"> -<ExampleWords> -<AUni ws="en">open, close, swing close, slam, walk through, leave by, lock, unlock, bolt, block, hang, install</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What do people do to a door?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5f269680-2122-4d44-9c1f-e42c096c7467" ownerguid="5c4df70f-4924-4ecf-8411-ed892c0b677e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">copiar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c765917c-68fe-437d-a822-a71ae9ca51df" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="5f2f4f82-4fd9-428f-b277-dbd73890f426" ownerguid="60a1cf1a-8473-49ae-b409-c824a4ef8eee"> -<Form> -<AUni ws="qvm-x-ach">gashchu</AUni> -<AUni ws="qvm-x-acl">gashchu; gashchu; gashcho</AUni> -<AUni ws="qvm-x-akh">qashchu</AUni> -<AUni ws="qvm-x-akl">qashchu; qashchu; qashcho</AUni> -<AUni ws="qvm-x-ame">qashchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="5f2f8bd0-7e8c-46e3-9240-519cb139388b" ownerguid="5553bfb2-778b-4379-8e1c-b080581c9bbc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="7e0f92d4-a593-4e71-9c43-52e6e38f1e00" t="o" /> -<objsur guid="66069bc6-eb28-4559-ae1c-01c5a5c0d76c" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">trouble</AUni> -<AUni ws="es">afán</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dac3d089-ebf0-447f-bf0c-85d316cebb42" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="5f305fc9-a07c-4c6a-8602-2d49ae586f86" ownerguid="1ebdec50-63b7-4640-975d-4a46e9e1d7f1" /> -<rt class="WfiMorphBundle" guid="5f3262e1-b5f1-409e-b5cc-85949d125d31" ownerguid="fae60727-af59-4ee9-a797-99872e299efc"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -<Sense> -<objsur guid="1b926284-5562-4cf3-8ad2-65536a715093" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="5f32ddbf-29fb-4d8a-af1d-9455b1d5001a" ownerguid="bf25931d-4760-4c66-abe8-c05a6dc5adbe"> -<ExampleWords> -<AUni ws="en">soak, marinate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to putting something like food in water for a long time?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="5f33060f-dfc0-4c82-922c-8ce442da6257" ownerguid="79fa3f19-fa3f-47f4-8a6c-d9518b1c05c7"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EXO 5.16 Tsaynog rurapäcamar capatazniquicunami jutsayog caycan tareata mana cumplitanäpag, tayta.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="5f35cfbc-7a52-4147-944a-b168ddffd549" ownerguid="fbfb11f6-a58c-4ef1-9bf9-dd4c439447c5"> -<Form> -<AUni ws="qvm-x-ach">llachqui</AUni> -<AUni ws="qvm-x-acl">llachqui; llachqui; llachque</AUni> -<AUni ws="qvm-x-akh">llachki</AUni> -<AUni ws="qvm-x-akl">llachki; llachki; llachke</AUni> -<AUni ws="qvm-x-ame">llachki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="5f3e44b8-e94c-49b4-9e2d-1acd93dddf75" ownerguid="7ddbd56f-e458-4a72-a9bc-9b7db6bde75a"> -<Abbreviation> -<AUni ws="en">4.6.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.256" /> -<DateModified val="2022-9-23 16:55:8.256" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a government official.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Government official</AUni> -</Name> -<OcmCodes> -<Uni>645 Cabinet</Uni> -</OcmCodes> -<Questions> -<objsur guid="64771824-8ab5-41e9-bb8d-0047f383eb78" t="o" /> -<objsur guid="572abe3c-c5a0-4354-8e03-8e6555dd335d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="5f420ecd-d3b2-4f25-91d2-f314662820c9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">emperador</AUni> -<AUni ws="qvm-x-acl">emperador</AUni> -<AUni ws="qvm-x-akh">emperador</AUni> -<AUni ws="qvm-x-akl">emperador</AUni> -<AUni ws="qvm-x-ame">emperador</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+emperador</AUni> -<AUni ws="qvm-x-acl">+emperador</AUni> -<AUni ws="qvm-x-akh">+emperador</AUni> -<AUni ws="qvm-x-akl">+emperador</AUni> -<AUni ws="qvm-x-ame">+emperador</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.457" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="53221ddb-1050-4c09-8d25-c595224e06c7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+emperador</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dd251b8b-03d0-4b66-a5db-fedbb763a792" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0d8cc799-8345-4367-a57d-a86af34f4952" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +emperador 
\entryTyp root 
\gENG emperor 
\gSPN emperador 
\e +emperador 
\c N0 
\mp +FinalC 
\ach emperador 
\akh emperador 
\acl emperador 
\akl emperador 
\ame emperador</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5f45c89f-ff41-48dd-b292-88e98e8ac25e" ownerguid="c5b8c936-1e01-4e86-9145-a2b721ec9e39"> -<ExampleWords> -<AUni ws="en">hole, pit, mine, excavation, tunnel, burrow, trench, ditch, shaft, foxhole, crater, cave, cavern, grotto</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a hole dug in the ground?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5f46c38a-d8aa-4086-971e-b1efc287e1eb" ownerguid="59d936f3-dffb-4585-80e0-eaf6cd6a8026"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John <can> drive a car.; John <knows how> to drive a car.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">can, know how to, be able to, have the ability to, capable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that someone is able to do something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5f48c79e-2c73-48a2-9683-2d06b8371db1" ownerguid="0622d3f7-1ab2-482b-9f9c-9c101cd35182"> -<ExampleWords> -<AUni ws="en">planting season, growing season, harvest season, hunger season</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a season related to a time of cultivation?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5f48e5b8-b088-42f6-b80c-ce542106174b" ownerguid="4aedd6d3-8f4b-4986-8d51-b0ace0137bf0"> -<ExampleWords> -<AUni ws="en">cheer for, applaud, congratulate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to expressing your joy about someone's good fortune?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5f495068-a01e-4190-91c1-f721d12dc863" ownerguid="01441207-4935-49a5-a192-16d949f5606c"> -<ExampleWords> -<AUni ws="en">play, compete, competition, struggle, engage in a sport/contest, participate, exercise, physical exercise, train, training, calisthenics, warm up, workout, break the rules, pull ahead</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What do athletes do?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5f4999ae-804a-4ac7-8db3-07ca5ac1b343" ownerguid="7486c9ef-5a75-4a89-85ea-7065c61e4e4a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="5f4fb9ac-7ebb-466c-871d-2b500d0b6c4d" ownerguid="783cd8b8-8d25-4a62-ac42-eae420ee850f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="5f5083e6-4fbb-4408-ab01-0e2eb8e60c36"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mushcu; mushcu:</AUni> -<AUni ws="qvm-x-acl">mushco:; mushcu; mushco</AUni> -<AUni ws="qvm-x-akh">mushku; mushku:</AUni> -<AUni ws="qvm-x-akl">mushko:; mushku; mushko</AUni> -<AUni ws="qvm-x-ame">mushku; mushku:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mushku:</AUni> -<AUni ws="qvm-x-acl">*mushku:</AUni> -<AUni ws="qvm-x-akh">*mushku:</AUni> -<AUni ws="qvm-x-akl">*mushku:</AUni> -<AUni ws="qvm-x-ame">*mushku:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.515" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c80824ac-02df-4337-a555-cc3e45248d22" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mushku:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="75dcf6a0-e488-4f7f-8a29-595d91b2a8ef" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cdcf225e-ae3f-4c07-8b37-086bb2ca55a7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mushku: 
\entryTyp root 
\gENG 
\gSPN buen.olor 
\e *mushku: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach mushcu foreshortened 
\ach mushcu: 
\akh mushku foreshortened 
\akh mushku: 
\mp +underlong 
\acl mushco: 
\acl mushcu foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl mushco foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\mp +underlong 
\akl mushko: 
\akl mushku foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mushko foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mushku foreshortened 
\ame mushku:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5f54efe9-0937-4980-9531-ebd128bea393" ownerguid="e76227e8-4a04-4fbd-a16e-5baa3d9e97a9"> -<ExampleWords> -<AUni ws="en">hibernate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to animals sleeping during the winter?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5f583609-45ae-4840-8d20-f829410afeed" ownerguid="6c36a680-4ff4-43b9-a7c2-9037ceb0d3f6"> -<ExampleWords> -<AUni ws="en">compass</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What tools are used to draw a circle?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="5f59a3fb-3756-4cec-b9bc-5cee90b1e040" ownerguid="8824aa7a-25c9-4c58-8bcc-437cc2fd173e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cosëcha</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cosëcha</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">cosëcha</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">cosëcha</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">cosëcha</Run> -</AStr> -</Form> -<Morph> -<objsur guid="8fff221d-0320-4926-b678-234d180e6af8" t="r" /> -</Morph> -<Msa> -<objsur guid="3ddb10b2-71e4-415f-80fb-d9b26cd474e1" t="r" /> -</Msa> -<Sense> -<objsur guid="e14233c2-4026-4d5a-bfd0-2d9b309ff66f" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="5f59ba2f-f052-4221-897e-6358a6d44189" ownerguid="1c0c4951-03b6-49b8-8a8e-724397cfd5a7"> -<ExampleWords> -<AUni ws="en">fascinating, intriguing, irresistible, absorbing, riveting, gripping, compelling, couldn't put it down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that causes someone to be obsessed?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="5f5c66d3-d280-4fc0-afd2-10d82249174e" ownerguid="5e3de2f1-e0d3-4153-931c-4edc342a30b1"> -<Form> -<AUni ws="qvm-x-ach">baldi; balde</AUni> -<AUni ws="qvm-x-acl">baldi; baldi; balde</AUni> -<AUni ws="qvm-x-akh">baldi; balde</AUni> -<AUni ws="qvm-x-akl">baldi; baldi; balde</AUni> -<AUni ws="qvm-x-ame">baldi; balde</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5f5efb56-fab1-4f7a-ab44-459161e664e5" ownerguid="00269021-e1c4-474d-9dba-341d296bdac7"> -<ExampleWords> -<AUni ws="en">gap</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to something missing from a group of things in order?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="5f63805f-1c8e-440a-a13c-222c5d81eb9c" ownerguid="d6c29733-beeb-4fc9-975f-5e78a8acc273"> -<Abbreviation> -<AUni ws="en">6.1.2.3.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.350" /> -<DateModified val="2022-9-23 16:55:8.350" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being ambitious.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Ambitious</AUni> -</Name> -<Questions> -<objsur guid="6b31301b-e5b2-403e-84f7-70ef679e0ae3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="5f652454-0ecf-40c6-9352-b18911fa0eaa" ownerguid="c36131c3-b5e1-4aac-a7b5-7c9cfa1e8f74"> -<ExampleWords> -<AUni ws="en">billy, he-goat, nanny, she-goat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to male or female goats?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5f657cc0-5fbc-48df-8ecb-440ee2b4f18d" ownerguid="71d57564-b6ff-4e98-b58b-24cb72af027c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5f65a516-a61f-4130-9802-bd7247855000" ownerguid="c345f278-91ff-463d-b9a6-8abac8a267eb"> -<ExampleWords> -<AUni ws="en">absinthe, acacia, agave, anemone, arbutus, arrowhead, arrowroot, artemisia, arum, asparagus, aster, banana, bean, beet, begonia, belladonna, bellflower, bindweed, bluebell, broccoli, burdock, buttercup, cabbage, carnation, carrot, cassava, cattail, celery, chard, chickpea, chickweed, chive, chrysanthemum, clematis, collard, columbine, corn, cosmos, crocus, cucumber, cyclamen, daffodil, dahlia, daisy, dandelion, delphinium, dock, dogbane, duckweed, eggplant, endive, everlasting, figwort, fireweed, flax, flower, forget-me-not, fritillaria, fuchsia, garbanzo, garlic, gentian, geranium, gladiola, gladiolus, globeflower, goldenrod, glory, grapevine, greenbrier, groundsel, heather, hibiscus, hollyhock, hyacinth, honeysuckle, hop, holly, hyssop, indigo, iris, ivy, jasmine, jonquil, kale, knotweed, hydrangea, larkspur, lavender, leek, lespedeza, lettuce, liana, lily, lobelia, lotus, locoweed, lupine, maguey, mallow, manioc, marguerite, marigold, mayflower, mescal, mignonette, milkweed, monkshood, mustard, narcissus, nasturtium, nettle, okra, oleaster, onion, orchid, paintbrush, pansy, pea, peanut, pennycress, peony, pepper, periwinkle, petunia, pigweed, phlox, pimpernel, plantain, poinsettia, pokeweed, poppy, potato, primrose, radish, ragweed, ranunculus, rhododendron, rue, rutabaga, sagebrush, sandbur, seaweed, smilax, soybean, sedge, spinach, spiraea, spirea, squash, stinkweed, strawberry, strawflower, sundew, sunflower, thistle, tobacco, tomato, tulip, tumbleweed, turnip, vegetable, verbena, vervain, vetch, vine, viola, violet, wallflower, watermelon, william, wisteria, wormwood, yam, yucca</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What types of plants are there?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="5f6a50e1-9754-44d0-9c78-d127fa949918" ownerguid="1913fed8-1f71-4689-a3e9-74482e6c1b46"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="3082a971-4a66-4ada-8908-5901d21c7ff1" t="o" /> -<objsur guid="bcc1af33-2756-4b78-95d5-f762d4936d62" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="5f6d3f97-3213-4a23-9427-953a61cb986b" ownerguid="8e851b2f-ffa0-40bf-8cb8-2c739ce8f242"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">plant</AUni> -<AUni ws="es">plantar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5e3534dc-3f88-43a3-8503-c59f2737a6b7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="5f6d7724-1ce8-45df-a285-7d36ba7c8947" ownerguid="11592f63-a052-42c5-ad1a-264986616e3d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="662a3e97-f3cb-4f72-b67c-196f87a3d18d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5f6fcb8b-c0b0-4df5-9642-fc5d77b22414" ownerguid="5c770098-2c91-4a9c-bfa0-a7ffaa871a7f"> -<ExampleWords> -<AUni ws="en">fire someone, send packing, dismiss, show the door to, give the sack to, lay off, discharge, let go</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to firing an employee?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5f726266-21e9-467f-a6b6-9513c54958c4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">inuy</AUni> -<AUni ws="qvm-x-acl">inuy</AUni> -<AUni ws="qvm-x-akh">inuy</AUni> -<AUni ws="qvm-x-akl">inuy</AUni> -<AUni ws="qvm-x-ame">inuy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*iñuy</AUni> -<AUni ws="qvm-x-acl">*iñuy</AUni> -<AUni ws="qvm-x-akh">*iñuy</AUni> -<AUni ws="qvm-x-akl">*iñuy</AUni> -<AUni ws="qvm-x-ame">*iñuy</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.842" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="020cdb70-0fde-455d-8cb3-6635e3a9a7ad" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*iñuy</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3c472965-ae3b-421d-9e73-51fdeb07d571" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a0cdadce-5a36-4cbe-b99c-358e86f33b7a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *iñuy 
\entryTyp root 
\gENG 
\gSPN 
\e *iñuy 
\c N0 
\mp +FinalC 
\ach inuy 
\akh inuy 
\acl inuy 
\akl inuy 
\ame inuy</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="5f791daf-98a2-4787-93cc-8813aea93c4d" ownerguid="9b267cc1-983c-407a-98d2-1e27add6292c"> -<Abbreviation> -<AUni ws="en">7.5.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.549" /> -<DateModified val="2022-9-23 16:55:8.549" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to becoming tangled--when something long and thin, such as rope, string, thread, hair, grass, or vines, becomes disorganized, twisted, or knotted, so that it is hard to separate it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Tangle</AUni> -</Name> -<Questions> -<objsur guid="be61f29a-6289-4e58-a891-53a559eb8195" t="o" /> -<objsur guid="f6e2beba-d888-48b1-89a3-f79cdcb08dce" t="o" /> -<objsur guid="763fad25-2d59-4714-a873-ce93c5b3a927" t="o" /> -<objsur guid="fdffdd76-aced-48cc-9b20-9d8c90b3e49e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="5f7adf3c-1206-42b5-953f-283be0124ca4" ownerguid="320d945e-ab48-4e21-a2da-db2f131c956c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">change</AUni> -<AUni ws="es">cambiar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="00451b86-befe-41ca-bb7b-badd37f041b1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="5f7b7702-0dd3-4791-a866-aac6adf10fb2"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">object</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="5f7e99a8-62f8-4275-bd10-9f4c30793b5b" ownerguid="20549a61-b41c-4987-b0cc-0e5d27691671"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="5f80d08a-e945-417c-97c5-07c44262d78e" ownerguid="9873474a-960a-4784-93e9-967b3205408c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="5f89c691-8130-4674-b2de-6f560acaf192" ownerguid="46f79067-6395-43de-9a12-a47e2857f005"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="5f8a09d0-ca6d-4317-ae0a-7d7ae858808b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tushu</AUni> -<AUni ws="qvm-x-acl">tushu; tusho</AUni> -<AUni ws="qvm-x-akh">tushu</AUni> -<AUni ws="qvm-x-akl">tushu; tusho</AUni> -<AUni ws="qvm-x-ame">tushu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tushu.v</AUni> -<AUni ws="qvm-x-acl">*tushu.v</AUni> -<AUni ws="qvm-x-akh">*tushu.v</AUni> -<AUni ws="qvm-x-akl">*tushu.v</AUni> -<AUni ws="qvm-x-ame">*tushu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.27" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ac3be3e5-8566-477a-a51a-7641f401eef0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tushu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d231519b-e4fd-4164-af42-46d9efaf9e1b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b026be60-cc4a-4f8b-8efd-9b8e85f76456" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tushu.v 
\entryTyp root 
\gENG dance 
\gSPN danzar 
\e *tushu.v 
\c V1 
\ach tushu 
\akh tushu 
\acl tushu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tusho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tushu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tusho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tushu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5f8a504c-16a0-4537-b792-65ff4212520e" ownerguid="6430b89c-7077-418a-a558-51f0e3f2c1a6"> -<ExampleWords> -<AUni ws="en">pack, carry in the arms, carry on the shoulders, shoulder (v), carry on a pole, cradle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to carrying something in a particular manner?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5f8aec4d-cfc6-49ff-96fc-74373c2c16ba"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">asula</AUni> -<AUni ws="qvm-x-acl">asula</AUni> -<AUni ws="qvm-x-akh">asula</AUni> -<AUni ws="qvm-x-akl">asula</AUni> -<AUni ws="qvm-x-ame">asula</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+asolar</AUni> -<AUni ws="qvm-x-acl">+asolar</AUni> -<AUni ws="qvm-x-akh">+asolar</AUni> -<AUni ws="qvm-x-akl">+asolar</AUni> -<AUni ws="qvm-x-ame">+asolar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.850" /> -<DateModified val="2022-10-10 21:19:47.697" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7b25abb8-493c-4152-9542-b953b32ce560" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+asolar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3864367c-8ad6-4d5a-9fae-340a7c8e4820" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="be3d080e-8627-40ae-9cdd-dea6d661a9e6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +asolar 
\entryTyp root 
\gENG destroy 
\gSPN 
\e +asolar 
\c V2 
\mp +assimilated 
\ach asula 
\akh asula 
\acl asula 
\akl asula 
\ame asula</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5f93e5d6-d63d-477a-83a4-7b3500936591" ownerguid="5ccc9ce6-4bc1-4bbb-a0af-730d34adce30"> -<Form> -<AUni ws="qvm-x-ach">de</AUni> -<AUni ws="qvm-x-acl">de</AUni> -<AUni ws="qvm-x-akh">de</AUni> -<AUni ws="qvm-x-akl">de</AUni> -<AUni ws="qvm-x-ame">de</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="5f9715ce-78c2-4c21-be61-4adb31962e68" ownerguid="b90644f9-6eed-4b42-9d66-175a1454ee7f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="Segment" guid="5f972a4e-3740-47bd-a442-00891c0a63ca" ownerguid="3f22f35c-3cd7-4dbe-ab01-9ce2bdf60ddc"> -<Analyses> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="fa7aeb71-200a-4a5d-9436-13faa1972fea" t="r" /> -<objsur guid="25651c34-3e31-419d-86b5-cda6907f0a4f" t="r" /> -<objsur guid="7a34d709-dd7d-4ac4-94e8-58e444587dd4" t="r" /> -<objsur guid="a85a5670-81ba-47b9-8443-95e8be60ebec" t="r" /> -<objsur guid="b4350fbf-e044-40fe-adfa-c826dc70905d" t="r" /> -<objsur guid="4fccec2d-58a4-466f-a087-a79d6bf13b57" t="r" /> -<objsur guid="f69934b2-1374-4eec-8857-8cde011be648" t="r" /> -<objsur guid="26ca52f1-b5e7-41e8-aa2e-cf2572524687" t="r" /> -</Analyses> -<BeginOffset val="9" /> -</rt> -<rt class="LexEntry" guid="5f98069e-f3f5-48b9-a105-3e244deb8c71"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">watpa; watpa:</AUni> -<AUni ws="qvm-x-acl">watpa; watpa:</AUni> -<AUni ws="qvm-x-akh">watpa; watpa:</AUni> -<AUni ws="qvm-x-akl">watpa; watpa:</AUni> -<AUni ws="qvm-x-ame">watpa; watpa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*watapa:</AUni> -<AUni ws="qvm-x-acl">*watapa:</AUni> -<AUni ws="qvm-x-akh">*watapa:</AUni> -<AUni ws="qvm-x-akl">*watapa:</AUni> -<AUni ws="qvm-x-ame">*watapa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.566" /> -<DateModified val="2022-10-10 21:19:47.693" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d5e05238-c0b2-4be8-b870-b637ee043526" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*watapa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3a0a69b2-2c43-4dde-8944-fb9b8dcafab8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="62e6a1fd-b657-4d15-9e1c-9daafe3040d8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *watapa: 
\entryTyp root 
\gENG can't.speak 
\gSPN 
\e *watapa: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach watpa foreshortened 
\ach watpa: 
\akh watpa foreshortened 
\akh watpa: 
\acl watpa foreshortened 
\acl watpa: 
\akl watpa foreshortened 
\akl watpa: 
\ame watpa foreshortened 
\ame watpa:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="5f9a77e8-36a4-4400-869b-5cbc91577a91" ownerguid="de1b176a-89c6-453a-beef-640fe529340a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">hierba.buena</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6fb7e6ce-53d8-498e-9ba3-b690d2e60c7d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5f9ebdd8-3f47-46a0-8ef1-8324d1a3cf03"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sumo</AUni> -<AUni ws="qvm-x-acl">sumo</AUni> -<AUni ws="qvm-x-akh">sumo</AUni> -<AUni ws="qvm-x-akl">sumo</AUni> -<AUni ws="qvm-x-ame">sumo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sumo</AUni> -<AUni ws="qvm-x-acl">+sumo</AUni> -<AUni ws="qvm-x-akh">+sumo</AUni> -<AUni ws="qvm-x-akl">+sumo</AUni> -<AUni ws="qvm-x-ame">+sumo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.752" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f5ac20b3-c405-41d4-b176-8d3faa919f09" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sumo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="06e5d5ef-c079-4bcc-9678-3a35b7ea6682" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ab58163f-f65c-4ddb-bed1-b2f23e19f441" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sumo 
\entryTyp root 
\gENG high 
\gSPN sumo 
\e +sumo 
\c NOSUFF 
\ach sumo 
\akh sumo 
\acl sumo 
\akl sumo 
\ame sumo</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5fa15bf1-c2d4-4dde-8e49-483dd96f35bb" ownerguid="1e9a0881-f715-4057-9af8-251cb8eec9da"> -<ExampleWords> -<AUni ws="en">rough, throaty, husky, gruff, hoarse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe a voice that is rough?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5fa180eb-8427-41aa-af2a-cf08dce5c88f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsaura</AUni> -<AUni ws="qvm-x-acl">tsaura</AUni> -<AUni ws="qvm-x-akh">tsawra</AUni> -<AUni ws="qvm-x-akl">tsawra</AUni> -<AUni ws="qvm-x-ame">tsawra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chawra.v1</AUni> -<AUni ws="qvm-x-acl">*chawra.v1</AUni> -<AUni ws="qvm-x-akh">*chawra.v1</AUni> -<AUni ws="qvm-x-akl">*chawra.v1</AUni> -<AUni ws="qvm-x-ame">*chawra.v1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.295" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bbc00c04-2762-4872-8b10-a321dbf78889" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chawra.v1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="54c28b77-7f56-4ce7-a646-cf4b7974e5e3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2d21f432-d504-4150-89de-480cfbd0c04a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chawra.v1 
\entryTyp root 
\gENG totter 
\gSPN ? 
\e *chawra.v1 
\c V1 
\ach tsaura 
\akh tsawra 
\acl tsaura 
\akl tsawra 
\ame tsawra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5fa20d01-79f5-4435-8e30-9788655ef642" ownerguid="335acc66-724a-4cf2-80f4-d4efcd73e003"> -<Form> -<AUni ws="qvm-x-ach">gänas</AUni> -<AUni ws="qvm-x-acl">gänas</AUni> -<AUni ws="qvm-x-akh">gänas</AUni> -<AUni ws="qvm-x-akl">gänas</AUni> -<AUni ws="qvm-x-ame">gänas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="5fa2d1bc-777b-49e4-bf4d-188dab771e54"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mi</AUni> -<AUni ws="qvm-x-acl">mi</AUni> -<AUni ws="qvm-x-akh">mi</AUni> -<AUni ws="qvm-x-akl">mi</AUni> -<AUni ws="qvm-x-ame">mi</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.506" /> -<DateModified val="2022-10-16 14:51:36.948" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">DIR.C</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b197f38e-d2fb-4e9a-87df-e50eeb6a4b45" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx DIR.C 
\entryTyp suffix 
\gENG DIR.C 
\gSPN DIR.C 
\e DIR.C 
\c N0/N0 V0/V0 R0/R0 ONSHEV/ONSHEV BN/BN 
\o 220 
\mp NeverChanged 
\ach mi 
\akh mi 
\acl mi 
\akl mi 
\ame mi 
\mp +FinalI 
\mcc DIR.C / {+FinalC} _ 
\mcc DIR.C / ~_ DIR.V 
\mcc DIR.C / ~_ [shade]</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5fa46982-736c-4de1-84c6-5c4fc70d3516" ownerguid="811e8c93-d97a-4aab-bd67-268b7783ff11"> -<ExampleWords> -<AUni ws="en">tend a field, cultivate, weed, hoe, pull weeds, support a banana stalk, spray, insecticide</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to tending a field?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5fa5d236-43b3-4710-a4e3-5dc33c5119df" ownerguid="b2f95320-1b8e-4f64-bf96-3c274a7f00b5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">immediately</AUni> -<AUni ws="es">inmediatamente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b6f0f52d-1aec-4ded-8c3a-22726018d488" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="Segment" guid="5fa92b23-cc38-42e4-a693-a1c412aeb0da" ownerguid="7ebea6b0-00ca-41d3-ba2c-c5a079f79cec"> -<Analyses> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="fa7aeb71-200a-4a5d-9436-13faa1972fea" t="r" /> -<objsur guid="25651c34-3e31-419d-86b5-cda6907f0a4f" t="r" /> -<objsur guid="7beb2bdf-1e77-4955-99ec-39f893293020" t="r" /> -<objsur guid="a85a5670-81ba-47b9-8443-95e8be60ebec" t="r" /> -<objsur guid="cc5592b2-d053-4f21-868f-e47798949ce1" t="r" /> -<objsur guid="4fccec2d-58a4-466f-a087-a79d6bf13b57" t="r" /> -<objsur guid="7469850f-190c-4c67-bdfc-985cbf0148ea" t="r" /> -<objsur guid="4bd33b73-ca58-4fbb-9575-41275fd181b3" t="r" /> -<objsur guid="26ca52f1-b5e7-41e8-aa2e-cf2572524687" t="r" /> -</Analyses> -<BeginOffset val="11" /> -</rt> -<rt class="MoStemMsa" guid="5fa9b0f3-ab00-4288-a736-82adf480c862" ownerguid="62098d79-e663-46ea-b4f4-4cd3df401157"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="5faa59d0-c208-49c6-b46f-5b1a2e658f08" ownerguid="867286b0-4477-4124-9c5d-91b85bf77883"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="6d591ee9-8328-4532-a18e-e2be41e10526" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5fab083e-b5a1-444d-a619-4fa709f6ac99" ownerguid="9b158c9e-9ba5-4be2-a9a1-77ef888a3b06"> -<ExampleWords> -<AUni ws="en">purify, distill, refine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to making something pure by removing other things from it?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="5fac2c48-919a-4523-9c99-5352908f50d9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gueru</AUni> -<AUni ws="qvm-x-acl">gueru; gueru; guero</AUni> -<AUni ws="qvm-x-akh">qeru</AUni> -<AUni ws="qvm-x-akl">qeru; qeru; qero</AUni> -<AUni ws="qvm-x-ame">qiru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qiru</AUni> -<AUni ws="qvm-x-acl">*qiru</AUni> -<AUni ws="qvm-x-akh">*qiru</AUni> -<AUni ws="qvm-x-akl">*qiru</AUni> -<AUni ws="qvm-x-ame">*qiru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.203" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="58fd599f-1d98-487c-9f69-bacd08637d45" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qiru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8972dcdb-6d83-4cf2-b87d-e5dcde694eeb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ea3fc528-cc9f-47c6-aa97-c50376d2ab68" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qiru 
\entryTyp root 
\gENG wood 
\gSPN madera 
\e *qiru 
\c N0 
\ach gueru 
\akh qeru 
\acl gueru / _# 
\acl gueru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl guero +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qeru / _# 
\akl qeru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qero +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qiru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5face2ac-af11-4c4c-8ba5-9231cfe1a7a3" ownerguid="08d5e632-0aed-4924-b3bb-d43de3420385"> -<ExampleWords> -<AUni ws="en">eulogy, dirge, fire a salute, lower the flag, half mast, play taps, toll the bell</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What are the parts or stages of a funeral?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5fad39d3-eb97-4a82-bf76-32e8536fd49d" ownerguid="a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f"> -<ExampleWords> -<AUni ws="en">see, set eyes on, witness, see something with your own eyes, behold, notice, perceive, get an eyeful</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to seeing something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5fae890a-9018-4cab-a5a5-92f855c32430" ownerguid="8411fa09-b1a5-4b62-aa47-f28bee9f6616"> -<ExampleWords> -<AUni ws="en">useful, be of use, handy, helpful, valuable, be good for, be worth, constructive, nifty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is useful?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5fb0bd88-ebd7-4189-a63c-ed57b80414cb" ownerguid="42b21a6e-e2f3-4468-9e92-49ee4de6909a"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John and David went to town <together>.; We all went <together>.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">together</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that some people do something together?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5fb33633-9a56-4fb7-b04a-73b99dc0496b" ownerguid="d80fccdc-cdc5-4f13-add3-00dfb865a042"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5fb38a0e-9e81-4864-9c2f-822e4c814420" ownerguid="be89e0ba-4c6a-4986-ac0d-859a901b89a1"> -<ExampleWords> -<AUni ws="en">imagine, conceive of, dream up, envisage, hypothesize, invent, picture (in your mind), form a picture, make up, see, suppose, think of, think up, visualize</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to imagining things?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5fb5300e-45dd-4e5f-8999-99c097b15442" ownerguid="199d8d5d-df47-4d7d-a02f-36b5778cfc34"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7c66a8f6-cf61-4e29-85ea-a52aa2188119" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="5fb5bc9d-5033-4105-8168-9f63c5f52221" ownerguid="1104a58a-74ca-4f2a-bee1-2b3d3aaad64a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EXO 14.15 Tsauraga Moisésta Tayta Dios caynog nergan: <<Israel runacuna aywananpag ninayquipa trucanga ¿imanirtag manacamalar caycanqui?</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="5fb6a330-00cd-47df-ad89-1c3db5ce75ef" ownerguid="66789af7-e6eb-4d34-9525-6a1a04212e3d"> -<Form> -<AUni ws="qvm-x-ach">mupali</AUni> -<AUni ws="qvm-x-acl">mupali; mupale</AUni> -<AUni ws="qvm-x-akh">mupali</AUni> -<AUni ws="qvm-x-akl">mupali; mupale</AUni> -<AUni ws="qvm-x-ame">mupali</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="5fb868de-24d5-4629-8b33-a1df738a11ea" ownerguid="944a44d3-52c6-4cd9-9d8a-6acf6e2f2be4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pasa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pasa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pasa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pasa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pasa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="883ada6f-0bf2-4887-9c50-61a9cb250b4c" t="r" /> -</Morph> -<Msa> -<objsur guid="b7f64f45-98d1-4eac-9cd3-956bf92b1494" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="5fb8aed6-861a-4f3b-9b1c-d920ad2482b3" ownerguid="1f12f59b-d3b2-40cc-ac06-70229e3883d0"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">nö</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">nö</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">nö</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">nö</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">naw</Run> -</AStr> -</Form> -<Morph> -<objsur guid="fc1f0877-b743-4df5-a5a8-46cbb5d422b9" t="r" /> -</Morph> -<Msa> -<objsur guid="dbacef16-50cb-4f71-a590-54ec4684dfe4" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="5fba4972-5e20-4fe0-87df-b236ea9d33bb" ownerguid="38bf569c-c1e9-4530-876b-5bcc629d06ca"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="3ac33c82-201f-4142-8711-7b665ed92584" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5fbd9a74-e02c-480f-9881-773f62ec5280" ownerguid="5c35c2f8-d17c-42a3-aa12-a4c29b6603e8"> -<ExampleWords> -<AUni ws="en">bend, curve, twist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a line or road that is bent?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5fc02beb-8cb3-4cd7-8427-9ecc442989f3" ownerguid="c73ee12f-593b-47bd-9770-09b0ef991119"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">exhale</AUni> -<AUni ws="es">exhalar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e951333a-6319-4fb0-ae10-787fe3ee5aef" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="5fc72b7d-a847-47aa-856a-9ba8bcf0ab5c" ownerguid="3d0243da-2738-4254-ba9c-745e0d941af8"> -<Form> -<AUni ws="qvm-x-ach">cacha</AUni> -<AUni ws="qvm-x-acl">cacha</AUni> -<AUni ws="qvm-x-akh">kacha</AUni> -<AUni ws="qvm-x-akl">kacha</AUni> -<AUni ws="qvm-x-ame">kacha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="5fc7b23c-226d-4459-8df7-ac9bdf990d36" ownerguid="6b1eeebd-2433-4f39-9e67-7ac4dd0fe20a"> -<ExampleWords> -<AUni ws="en">northern, southern, eastern, western, boreal, austral, oriental, occidental, Midwestern, Far East</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is toward one of the directions of the compass?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5fc9cdd4-ef72-4f47-b34a-02c5e096f61a" ownerguid="39611e8d-cc67-4c84-977c-094c5cbe9dbc"> -<ExampleWords> -<AUni ws="en">pine away</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to feeling very lonely?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5fca6b0a-e232-4134-bbdc-396117e8127e" ownerguid="9fc25175-3b4a-4248-bc7f-b86012ec584f"> -<ExampleWords> -<AUni ws="en">collect, gather, pick up, chop firewood, split firewood</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to collecting fuel?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="5fcadae4-b4a8-4600-8d30-c4f67986d619" ownerguid="9d865347-6656-4ab7-8613-bf2e8bc53aa7"> -<Abbreviation> -<AUni ws="en">2.5.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.47" /> -<DateModified val="2022-9-23 16:55:8.47" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to amputating or losing a limb or other part of your body.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Amputate</AUni> -</Name> -<Questions> -<objsur guid="1035d0a9-0040-487b-82d7-7d8b28788a99" t="o" /> -<objsur guid="200644dc-8048-4bd9-891f-90917dc21b7b" t="o" /> -<objsur guid="9899102f-7ef1-4b58-bfe5-f4613b47ef01" t="o" /> -<objsur guid="c6bdd555-3438-4680-9b6c-5e812b5c0e7d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="5fcafe5d-eab9-4c90-9662-166dfaee06bd" ownerguid="51da849a-e8a0-4574-a558-9ac13a31b5f2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">price</AUni> -<AUni ws="es">precio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="31cefbde-dad6-487a-b626-83a45d6fa84a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5fccd177-1059-44ce-9e5c-ced1350c9027"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">purga</AUni> -<AUni ws="qvm-x-acl">purga</AUni> -<AUni ws="qvm-x-akh">purqa</AUni> -<AUni ws="qvm-x-akl">purqa</AUni> -<AUni ws="qvm-x-ame">purqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*purqa</AUni> -<AUni ws="qvm-x-acl">*purqa</AUni> -<AUni ws="qvm-x-akh">*purqa</AUni> -<AUni ws="qvm-x-akl">*purqa</AUni> -<AUni ws="qvm-x-ame">*purqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.22" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3ce29b1a-c84f-40ff-9d02-6b8c8eeb15bd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*purqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6c36a02e-c7c5-48de-85ab-e33d78e170e9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4763e934-2f2b-4284-b5e4-8c559241a10a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *purqa 
\entryTyp root 
\gENG ? 
\gSPN ? 
\e *purqa 
\c V1 
\ach purga 
\akh purqa 
\acl purga 
\akl purqa 
\ame purqa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5fcdecd9-897f-49fe-b13d-905fcb2515b3" ownerguid="5c770098-2c91-4a9c-bfa0-a7ffaa871a7f"> -<ExampleWords> -<AUni ws="en">employer, boss, management</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a person who hires someone?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="5fce8b22-1461-4a32-835b-9468fb8da71c" ownerguid="ad59a0d7-06bd-49f0-a80c-76050a15ad74"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 19.19 Ushanan kaq milgacho Eliseo aruykaptinmi Elíasqa nawpanpa aywaykur cäpanta ayluparkur pasakorqan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="5fd01fc2-a453-45b8-92e1-c43e009e3dcb" ownerguid="2158eb7d-eb59-4740-9628-9080d7f51a97"> -<ExampleWords> -<AUni ws="en">be awake</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe not being asleep?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5fd27ffd-f175-4d0c-8632-c1e6fdbea24d" ownerguid="cb1ecce3-ca8d-4b27-9438-20478dc6fde4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7af7d59d-d376-4197-b67f-ddb1d43466c7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="5fd34ae2-6b2d-4841-ac57-cee710e19006"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">u:su</AUni> -<AUni ws="qvm-x-acl">u:su; u:su; u:so</AUni> -<AUni ws="qvm-x-akh">u:su</AUni> -<AUni ws="qvm-x-akl">u:su; u:su; u:so</AUni> -<AUni ws="qvm-x-ame">u:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+uso</AUni> -<AUni ws="qvm-x-acl">+uso</AUni> -<AUni ws="qvm-x-akh">+uso</AUni> -<AUni ws="qvm-x-akl">+uso</AUni> -<AUni ws="qvm-x-ame">+uso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.292" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2f0b2d4a-acff-4ac4-8380-99f05dd5f545" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+uso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a6cbe677-559b-4905-ba94-e1544a18a514" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2277cb0d-5615-4e2e-b5f5-10f090982cde" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +uso 
\entryTyp root 
\gENG custom 
\gSPN costumbre 
\e +uso 
\c N0 
\ach u:su 
\akh u:su 
\acl u:su / _# 
\acl u:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl u:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl u:su / _# 
\akl u:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl u:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame u:su</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="5fd578dd-defb-4aaf-8d85-7d24043958a1" ownerguid="101c16f8-ec76-4ec7-895a-fd814fef51dd"> -<ExampleWords> -<AUni ws="en">stethoscope, blood pressure cuff, scalpel, catheter, forceps, needle, syringe, IV, x-ray machine, x-ray</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What equipment is used to treat illness?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5fd599c2-f57f-4646-8ea1-011959f0360c" ownerguid="fa68a2c2-e14a-4e9f-a5d1-985054267fe5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="3023a66d-3f2d-469f-acbc-a5aebf5e5eaf" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">cripple</AUni> -<AUni ws="es">manco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="72221abe-5ffa-4a34-be4b-d5976ea19e1f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="5fd5b8a6-b1d6-4484-a4be-af272e068a74" ownerguid="2aec3ca7-a7d5-475c-acc2-6bcdd325d6c2"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wan</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wan</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wan</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wan</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wan</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b441a287-959f-4845-be39-c8c9c2b00da1" t="r" /> -</Morph> -<Msa> -<objsur guid="19e28bb1-2f05-4e65-a0d6-47a005cd199a" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="5fd653b7-58eb-4760-b4e6-31e052a7ec58" ownerguid="93de2257-8303-490d-b2fe-6d1d838b08c6"> -<ExampleWords> -<AUni ws="en">ingrown nail</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe when a nail grows into the finger or toe and causes a sore?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5fd7b144-11a2-43d5-84d9-cdca23a8a2b2" ownerguid="18b3ca02-18fe-4ab5-8709-c20957a0a2fb"> -<ExampleWords> -<AUni ws="en">be someone's pride and joy, be the pride of, be a credit to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to something or someone you are proud of?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5fdd86b0-ea07-4d21-aa34-4003e5b78b3c" ownerguid="82e4394a-2f58-4356-8d9c-1ad9dbe95293"> -<ExampleWords> -<AUni ws="en">temperature, coldness, coolness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to how cold something is?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="5fdd9e17-709c-4854-84f9-d9a58e373ada" ownerguid="d117aa22-3f18-47c4-9683-51ecf1dc7134"> -<ExampleWords> -<AUni ws="en">branch, bough, limb, twig, stick, stem, fork</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the branches?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="5fdf3946-7e47-4fd2-906f-4da7ce5fa490" ownerguid="77b4d6c1-87bf-4839-b4be-6a45119b700a"> -<Abbreviation> -<AUni ws="en">3.5.1.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.164" /> -<DateModified val="2022-9-23 16:55:8.164" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to answering a question.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33N Question, Answer</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Answer</AUni> -</Name> -<Questions> -<objsur guid="44079ec4-4264-4d66-aece-2a72ac012fad" t="o" /> -<objsur guid="dd0cabca-7bce-4fe1-9d4a-d0d1ab3dd9de" t="o" /> -<objsur guid="da5a7af0-15f2-4b44-a68a-32e070651cfb" t="o" /> -<objsur guid="22098891-41ef-465f-832d-ae74342fa59c" t="o" /> -<objsur guid="9dd4542c-a178-4cb4-81fb-a78209aefe90" t="o" /> -<objsur guid="270034fa-9931-47d0-9d97-c0fb8909e0eb" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="5fdf723e-9f43-42d6-a717-cf395f74b1a5" ownerguid="7acde7d5-1a5b-4e16-99c7-5f297d2643f4"> -<Category> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</Category> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="aa65923e-3cb0-45d4-9489-6efbc2a82f74" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="6f921684-5b93-4604-99fc-74ba873ea044" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="5feabe3b-b103-427c-9411-f9dd861dccf4" ownerguid="1ab23a1b-07ae-44fc-b3c8-ceaac231ee9a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="5fecc1f5-7873-48d7-a3e5-3e7a8f24e9ca" ownerguid="c09eedd3-c4e1-4cf9-b6d1-a01624c6426a"> -<ExampleWords> -<AUni ws="en">wipe, erase, to dust</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to wiping dirt and dust off things?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="5fee2042-db50-421f-97d6-308e60727e3c" ownerguid="c202eb1b-5ce5-4be4-83c5-9ad24ddd4c18"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="5fef74b3-10a2-4ee5-9b51-61d80776ff05" ownerguid="ccfb9c3b-2049-4345-8c51-b12d3308741a"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="3f482434-e92a-4f29-ba8b-e317dc1c1aa9" t="o" /> -<objsur guid="dab5c66f-fa1f-4271-856a-af21ba2b700e" t="o" /> -<objsur guid="8edd5b0f-b69c-489c-ad72-04831c5ffe40" t="o" /> -<objsur guid="e3e122f3-f9f8-4b15-8c42-6bb06045aeda" t="o" /> -</MorphBundles> -</rt> -<rt class="Segment" guid="5ff0eea3-afb1-4a45-8d9f-d96142826d73" ownerguid="7d52f9ab-b348-4247-8f30-90ad17b0fbdc"> -<Analyses> -<objsur guid="a104adb9-9e74-4130-aee8-072da2a9ac22" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="WfiAnalysis" guid="5ff16f03-4466-4c06-ae98-9c5ba4fa6aca" ownerguid="88b83037-8c65-4045-a398-da7d153bb916"> -<Category> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</Category> -<Evaluations> -<objsur guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="d8a95e00-f7fc-4291-9bb7-5bb471f17bae" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="2ab9c036-15ef-4151-b6cb-ec5729fb8181" t="o" /> -<objsur guid="de289f6a-91fe-4661-99b7-3a71c03927f1" t="o" /> -<objsur guid="a2823182-02b2-4fc1-927f-6391c81dfe0c" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="5ff33204-fa18-4008-9b22-56647edb534b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">trompisa</AUni> -<AUni ws="qvm-x-acl">trompisa</AUni> -<AUni ws="qvm-x-akh">trompisa</AUni> -<AUni ws="qvm-x-akl">trompisa</AUni> -<AUni ws="qvm-x-ame">trompisa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tropezar</AUni> -<AUni ws="qvm-x-acl">+tropezar</AUni> -<AUni ws="qvm-x-akh">+tropezar</AUni> -<AUni ws="qvm-x-akl">+tropezar</AUni> -<AUni ws="qvm-x-ame">+tropezar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.157" /> -<DateModified val="2022-10-10 21:18:47.207" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5017ee9e-2746-4a25-b630-4e866033443d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tropezar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="efd13c3d-dbbc-4e73-9674-a9b9858a9d43" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9ec109d0-1d4e-416d-80db-b765bc54b093" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tropezar 
\entryTyp root 
\gENG 
\gSPN 
\e +tropezar 
\c V1 
\ach trompisa 
\akh trompisa 
\acl trompisa 
\akl trompisa 
\ame trompisa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="5ff533ee-3d09-4ef0-8eaa-a903bfbfa77a" ownerguid="32da55f7-a216-468e-9680-01ef7ea68a52"> -<Form> -<AUni ws="qvm-x-ach">aypa; aypä</AUni> -<AUni ws="qvm-x-acl">aypa; aypä</AUni> -<AUni ws="qvm-x-akh">aypa; aypä</AUni> -<AUni ws="qvm-x-akl">aypa; aypä</AUni> -<AUni ws="qvm-x-ame">aypa; aypä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="5ffa36ae-5e33-4831-8b7f-9ccc9d4bbe11" ownerguid="76e2d5d6-91af-420a-bd6b-7e6896cc8b4c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="8335c5e1-0a9d-4525-80fa-eb23c92e0ab0" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="ca1d87b1-26e4-4706-a5d9-3cd9de0fb3c4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="5ffb55d6-3790-4fbc-87ae-a32660fc4748" ownerguid="6159b0fc-f2b4-488e-a8b9-f1e8e13cd5fe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">generation</AUni> -<AUni ws="es">generación</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a582370d-11f2-4061-a4bb-537549f86156" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="5ffd4a9e-5576-4d29-a157-c448f9a460a6" ownerguid="3710e019-46c9-44db-a0aa-9054d3126161"> -<ExampleWords> -<AUni ws="en">be addicted, dependent, be hooked</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to being addicted to drugs?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="5ffdec45-65f3-438c-bf43-65ab99aee674" ownerguid="e94d79a8-691a-44d2-bcc7-6d4e10cf612b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">baptism</AUni> -<AUni ws="es">bautismo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6ef23143-180a-4f6f-8181-1b7fae8f863b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="5fff0004-4f2b-4d17-9e1a-626f52ffc806" ownerguid="2139db65-1662-4a7f-889d-014baf893e14"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shave</AUni> -<AUni ws="es">afeitarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="734f4b9e-461a-4324-b0d9-ce68544dc64e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="600009c6-c744-402a-af15-9db780fe1451" ownerguid="67b5ccac-ca10-4742-905d-595993cb4d30"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">asalt</AUni> -<AUni ws="es">asaltar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="842e3be7-cb5e-4583-bfe9-0f394e531770" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="6000aff3-cc6c-4f8e-bf8b-bfd53a596126" ownerguid="196940fa-c47f-4e11-95ef-7d886b3f2d15"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">amount</AUni> -<AUni ws="es">cuanto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c3819f35-2ca1-49fa-9d85-94a75c0564d9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="600198a3-2264-46c9-a9f3-511d91cff085" ownerguid="3a346084-49dd-4cdf-a418-e8a949688aad"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6002756b-3cd0-4acb-a624-f4e11112ea32" ownerguid="8d47c9ec-80c4-4309-9848-c453dcd71182"> -<ExampleWords> -<AUni ws="en">biology, biologist, life science, ecology, ecologist, natural history, naturalist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the study of life?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6002b82b-6538-46f6-968d-01d303fc7ac1" ownerguid="d59a84e1-5e12-4cb7-b72b-15c51810ad48"> -<ExampleWords> -<AUni ws="en">disunity, division, discord, dissidence, dissonance, friction, incompatibility, variance, dissension, dissent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the disunity of a social group?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6007cee7-7ef7-4d13-a6ae-69c92d7349f7" ownerguid="b8b2c795-ce1b-4f04-84f5-7402f3b7244d"> -<Form> -<AUni ws="qvm-x-ach">mira</AUni> -<AUni ws="qvm-x-acl">mira</AUni> -<AUni ws="qvm-x-akh">mira</AUni> -<AUni ws="qvm-x-akl">mira</AUni> -<AUni ws="qvm-x-ame">mira</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="6007e6f3-c63f-465d-8956-ac57030ac756" ownerguid="97dbafdc-5a68-4874-a018-66e5ad0badc3"> -<Form> -<AUni ws="qvm-x-ach">inventa</AUni> -<AUni ws="qvm-x-acl">inventa</AUni> -<AUni ws="qvm-x-akh">inventa</AUni> -<AUni ws="qvm-x-akl">inventa</AUni> -<AUni ws="qvm-x-ame">inventa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="60085222-d13d-4cc0-82f1-bfca6c1f6ed7" ownerguid="85f211ae-cc16-4042-8c27-e99ff8f01f61"> -<ExampleWords> -<AUni ws="en">give, give away, donate, go to, make a donation, subscribe to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to giving something to poor people?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="60087791-93f4-498e-adf5-5bf7bb3e53c6" ownerguid="246e3ff5-6b51-4366-b84b-138037e2e923"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.carpet</AUni> -<AUni ws="es">alfombrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e031f069-255a-47c4-b038-8e644dee0221" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="600bc993-04f5-42c6-821d-be2d547750f9" ownerguid="e66ff615-20cc-4db8-88d1-7632e4644782"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="5939e729-60b2-4756-8148-5ba419790db9" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">side</AUni> -<AUni ws="es">side</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f74e312d-cafc-41d3-a8e9-76eaa8c9bbd4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="601446ed-9a05-462e-b177-01756e9b0fab" ownerguid="051507dc-10db-4dfc-aebc-8dd80180d730"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="60157a0e-cf4c-4258-b5d4-844bc1155a78" ownerguid="47af2df4-42de-4e25-b774-e33f69426626"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.quiet</AUni> -<AUni ws="es">callarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6aeec075-acd7-4e9c-9334-c66ee18e9965" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="601a9c19-a4b5-4196-b58b-6187e5695f02" ownerguid="41b91fdb-5a11-4ba1-a570-3d9fbdfd1a56"> -<Form> -<AUni ws="qvm-x-ach">tsapa; tsapä</AUni> -<AUni ws="qvm-x-acl">tsapa; tsapä</AUni> -<AUni ws="qvm-x-akh">tsapa; tsapä</AUni> -<AUni ws="qvm-x-akl">tsapa; tsapä</AUni> -<AUni ws="qvm-x-ame">tsapa; tsapä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="601b5424-0fbe-4674-ab26-3443782fbe35" ownerguid="56953b3f-47ba-4c8c-ba99-7065e87eab66"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">DEU 16.13 Trïgu ërayta y üva palayta usharkur qanchis junaq Ramäda fiestata rurapäkunki.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="601b6892-e83f-41ee-be56-c9112ac541b0" ownerguid="82aba3d9-56fc-4844-b198-c0076304a730"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="601d8ee4-f0d3-4a79-971c-3ae5f92090f8" ownerguid="842791ec-62bb-4f54-8cfa-f40ac4b6cea7"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="601dc8dd-4578-4553-9435-ed0f3da16f2f" ownerguid="e258eee9-5bc3-4ede-a5b1-7086af736d64"> -<Form> -<AUni ws="qvm-x-ach">shuca</AUni> -<AUni ws="qvm-x-acl">shuca</AUni> -<AUni ws="qvm-x-akh">shuka</AUni> -<AUni ws="qvm-x-akl">shuka</AUni> -<AUni ws="qvm-x-ame">shuka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="601ffa63-3cd3-40e5-b93a-6320d69bbcce" ownerguid="73d580ac-dc89-474c-8048-3453ebdda807"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en"><How far> is New York from Washington?; <What is the distance> from New York to Washington?</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(5) What question words ask for the distance between two things?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="60202329-88f3-4c13-b5d8-12485c2014cf" ownerguid="9b62e5bc-6efd-4005-a445-e48f78c366b1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6023d899-2076-460a-bb3d-fff624cb6fee" ownerguid="7992958d-fd36-469e-a94b-f8a9eb26af64"> -<ExampleWords> -<AUni ws="en">block, dam up, barricade, wall off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to blocking the movement of something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6026fb3e-7736-4e23-8550-99a3de6e8c5a" ownerguid="e931da8a-efc1-46cb-836a-72fba4a1eb4f"> -<ExampleWords> -<AUni ws="en">take, bring, deliver, transport</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to taking something somewhere?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="602d5a5a-03fc-4c5d-a72f-e9ff18ffe5b0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">carida:</AUni> -<AUni ws="qvm-x-acl">carida:</AUni> -<AUni ws="qvm-x-akh">carida:</AUni> -<AUni ws="qvm-x-akl">carida:</AUni> -<AUni ws="qvm-x-ame">carida:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+caridad</AUni> -<AUni ws="qvm-x-acl">+caridad</AUni> -<AUni ws="qvm-x-akh">+caridad</AUni> -<AUni ws="qvm-x-akl">+caridad</AUni> -<AUni ws="qvm-x-ame">+caridad</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.620" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="46614fbb-85a5-4a37-b8e5-4a1aa45818f2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+caridad</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3fa67290-1c2b-4c9d-b9db-bacc58bebbb4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="feec0891-d58f-4e5d-a59a-882d1d0316ac" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +caridad 
\entryTyp root 
\gENG alms 
\gSPN 
\e +caridad 
\c N0 
\mp NeverForeshortened 
\ach carida: 
\akh carida: 
\acl carida: 
\akl carida: 
\ame carida: 
\mp +FinalC 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="602eddb4-a0de-4440-951e-e894895c59de" ownerguid="2b439c51-4151-4da9-99b3-e8735385d919"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="60316512-ccfc-44b5-bde5-9c327a76895b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">turcash</AUni> -<AUni ws="qvm-x-acl">turcash</AUni> -<AUni ws="qvm-x-akh">turkash</AUni> -<AUni ws="qvm-x-akl">turkash</AUni> -<AUni ws="qvm-x-ame">turkash</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*turkash</AUni> -<AUni ws="qvm-x-acl">*turkash</AUni> -<AUni ws="qvm-x-akh">*turkash</AUni> -<AUni ws="qvm-x-akl">*turkash</AUni> -<AUni ws="qvm-x-ame">*turkash</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.17" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0629afb8-ab1b-4cac-87f9-af491ab37914" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*turkash</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="78710fae-dfd3-4166-b350-10be1444670f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2e54a022-5f36-4758-8eda-9e679228ac6a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *turkash 
\entryTyp root 
\gENG 
\gSPN 
\e *turkash 
\c N0 
\mp +FinalC 
\ach turcash 
\akh turkash 
\acl turcash 
\akl turkash 
\ame turkash</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="6031fe78-d309-4f1b-8c68-1c2f70efba82" ownerguid="8eded5c0-fcd1-43c9-87bd-69ab3e302e96"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">thus</AUni> -<AUni ws="es">así</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="12c34599-44bf-4064-90f3-0b5cc126ca0c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="60364974-a005-4567-82e9-7aaeff894ab0" ownerguid="63403699-07c1-43f3-a47c-069d6e4316e5"> -<Abbreviation> -<AUni ws="en">1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.963" /> -<DateModified val="2022-9-23 16:55:7.963" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to water.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>2D Water</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Water</AUni> -</Name> -<Questions> -<objsur guid="b436ba0b-2f12-4321-abcf-825c3eb1d147" t="o" /> -<objsur guid="2d12a2a8-4814-44b4-b88f-ace2e4abfc5f" t="o" /> -<objsur guid="136ac640-143d-49f3-8433-e9e006521fa6" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="683f570a-0bfe-4a97-b55d-4319b328508b" t="r" /> -<objsur guid="f4580c19-ba9e-4f71-a46a-6f3c4b19c36c" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="79ebb5ce-f0fd-4fb5-9f22-1fa4965a555b" t="o" /> -<objsur guid="50ab3705-a81e-4fcc-b3ae-95c075966f69" t="o" /> -<objsur guid="f38f8344-838f-44ba-b103-22289c2d2793" t="o" /> -<objsur guid="bf25931d-4760-4c66-abe8-c05a6dc5adbe" t="o" /> -<objsur guid="e7e5dbf2-6d5b-4869-b357-8a7860c29002" t="o" /> -<objsur guid="4d19f09f-035b-477e-862c-a4157acdfe81" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="60395e1e-9688-468a-a7a7-3f949d15430f" ownerguid="f9516c66-ac2c-49dd-951a-0d3606450463"> -<ExampleWords> -<AUni ws="en">discriminate, be unfair, biased, prejudiced</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being unfair to someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="603b460e-2f19-48f6-9b5a-ff8df3f19c09" ownerguid="deba4a79-3398-4dfa-b692-461f181f2ebb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="603e3b65-2a91-41c6-bd1f-9edca1bc093d" ownerguid="459a99e9-38af-42aa-8980-335994235ad2"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Num 35.16 Pipis fiërra herramientawan runa mayinta wanutserga wanutsishgami canga.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="60436817-2134-4f3f-9f96-4ed9fdec64ab" ownerguid="c01bbcef-7d89-4753-bafd-3a7f23648982"> -<ExampleWords> -<AUni ws="en">nurse, nursing, hygienist, hygiene, lab/medical technician, laboratory analysis, midwife, midwifery, orderly, pharmacist, pharmacology, speech therapist, speech therapy, therapist, therapy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to someone who helps a doctor?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="6045c6eb-efea-4586-95f8-840d32578d66" ownerguid="d60faf11-cc6e-48db-8a13-82f86d78ab00"> -<Abbreviation> -<AUni ws="en">7.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to arranging things--to physically move a group of things or people and put them in a pattern.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>62 Arrange, Organize; 62A Put Together, Arrange</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Arrange</AUni> -</Name> -<Questions> -<objsur guid="b7aa8a4d-4685-4d28-9499-c8b7a9fc9f95" t="o" /> -<objsur guid="b099e292-79ba-4190-a6a9-43db58e349d1" t="o" /> -<objsur guid="e17a414d-23dc-4bb8-b04d-da4be0a577b0" t="o" /> -<objsur guid="72530bd4-8304-46c4-8bc1-b491fa99f5fc" t="o" /> -<objsur guid="c4ca1d51-0824-4417-8b6a-b1f7132833b2" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="00269021-e1c4-474d-9dba-341d296bdac7" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c16334a0-be29-4a1e-a870-4cb3f1df984d" t="o" /> -<objsur guid="08239f53-daa5-47a6-9f39-29a9064b0c27" t="o" /> -<objsur guid="fe58ae61-ab0b-43a4-86fb-d9aedd199932" t="o" /> -<objsur guid="9b267cc1-983c-407a-98d2-1e27add6292c" t="o" /> -<objsur guid="e6c9fe4c-199e-4934-b622-739a85b0830d" t="o" /> -<objsur guid="b3fb9960-8f42-43bc-9595-dfb3e04f5bfd" t="o" /> -<objsur guid="be2f2785-7219-4a35-b8d3-aa56b9b78514" t="o" /> -<objsur guid="467dd680-ac64-4dc4-8a17-1cfe297d3392" t="o" /> -<objsur guid="3fae9066-eb66-444e-bd41-818b9f7b3bae" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="6048bde3-5661-48f9-8b50-c9aaccf06f89"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ño:ca</AUni> -<AUni ws="qvm-x-acl">ño:ca</AUni> -<AUni ws="qvm-x-akh">ño:ka</AUni> -<AUni ws="qvm-x-akl">ño:ka</AUni> -<AUni ws="qvm-x-ame">ñu:ka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñu:ka</AUni> -<AUni ws="qvm-x-acl">*ñu:ka</AUni> -<AUni ws="qvm-x-akh">*ñu:ka</AUni> -<AUni ws="qvm-x-akl">*ñu:ka</AUni> -<AUni ws="qvm-x-ame">*ñu:ka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.598" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4dd6501e-52b0-4503-85fd-d484dd8e3051" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñu:ka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6e2d946f-3d16-4e0a-b28f-f64921214903" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2e56b62a-178f-44f7-be33-9805c8221084" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñu:ka 
\entryTyp root 
\gENG growth.apex 
\gSPN 
\e *ñu:ka 
\c N0 
\ach ño:ca 
\akh ño:ka 
\acl ño:ca 
\akl ño:ka 
\ame ñu:ka</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="604ab9e6-0ad7-4a0d-b166-5d7150d8e6c9" ownerguid="ab80b556-2c7d-4e75-a58d-f5bb58b2feef"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="0e4e0322-91f1-4a26-991b-2ba01ffc3401" t="o" /> -<objsur guid="5485007a-99b4-467a-a475-00f611e77bcd" t="o" /> -<objsur guid="69a14b96-e6c4-4531-823c-16b3026d15d5" t="o" /> -<objsur guid="1eaccd6e-d5e5-41c6-96f4-b581e9a81f01" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="604fb941-6a10-41f6-a321-92f27b99aa9c" ownerguid="73726931-ef12-4d39-a76e-7742f4b7c9cd"> -<ExampleWords> -<AUni ws="en">economy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the economic system of a country?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="60511114-d4a3-4e15-accb-bfa8dba274f5" ownerguid="e7cf3778-387d-4c79-b64b-d9e4fafb07c0"> -<Form> -<AUni ws="qvm-x-ach">tucshi</AUni> -<AUni ws="qvm-x-acl">tucshi; tucshe</AUni> -<AUni ws="qvm-x-akh">tukshi</AUni> -<AUni ws="qvm-x-akl">tukshi; tukshe</AUni> -<AUni ws="qvm-x-ame">tukshi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6051fd8d-1b0d-4839-ab18-6e9c1a07a5c0" ownerguid="67e57493-d286-4271-b877-f63f962dddf1"> -<ExampleWords> -<AUni ws="en">expanded</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe an area that has been made big?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="6057ba4f-0c47-4d7a-9a45-a149c33ebf44" ownerguid="bffe6dbd-8a09-4958-b6a0-dc735daa5798"> -<Form> -<AUni ws="qvm-x-ach">ycachä</AUni> -<AUni ws="qvm-x-acl">ycachä</AUni> -<AUni ws="qvm-x-akh">ykachä</AUni> -<AUni ws="qvm-x-akl">ykachä</AUni> -<AUni ws="qvm-x-ame">ykachä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="60595d09-4a15-4499-b6e1-d36a704bcbe9" ownerguid="50ab3705-a81e-4fcc-b3ae-95c075966f69"> -<Abbreviation> -<AUni ws="en">1.3.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.963" /> -<DateModified val="2022-9-23 16:55:7.963" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the way water moves over a surface, such as in a river or along the ground.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Flow</AUni> -</Name> -<Questions> -<objsur guid="d8895cf5-3c27-42eb-aaed-240b9f7f1fcf" t="o" /> -<objsur guid="e46568a4-8498-4bd9-a99b-19234519f79a" t="o" /> -<objsur guid="85ff3365-475d-441d-89d3-002b51b05876" t="o" /> -<objsur guid="aee86070-ff3f-4ced-bcfd-bb6262945b35" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="605bb0c9-2a37-431c-8b35-6abb7d5a59e4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jiru</AUni> -<AUni ws="qvm-x-acl">jiru; jiro</AUni> -<AUni ws="qvm-x-akh">jiru</AUni> -<AUni ws="qvm-x-akl">jiru; jiro</AUni> -<AUni ws="qvm-x-ame">hiru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hiru</AUni> -<AUni ws="qvm-x-acl">*hiru</AUni> -<AUni ws="qvm-x-akh">*hiru</AUni> -<AUni ws="qvm-x-akl">*hiru</AUni> -<AUni ws="qvm-x-ame">*hiru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.731" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4981a3ff-aed4-4fcf-9cbb-36006093c13f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hiru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="db12ca59-48ff-452b-8e8a-c71ba37c15bb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5722703b-58fb-4928-952b-d807c85ca9d9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hiru 
\entryTyp root 
\gENG 
\gSPN 
\e *hiru 
\c V1 
\ach jiru 
\akh jiru 
\acl jiru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl jiro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jiru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jiro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hiru</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="605c81ff-ae26-48f5-a966-eac1d9620d80" ownerguid="53cc3a9b-a692-45e7-82d0-8789d209e889"> -<Form> -<AUni ws="qvm-x-ach">desvalora</AUni> -<AUni ws="qvm-x-acl">desvalora</AUni> -<AUni ws="qvm-x-akh">desvalora</AUni> -<AUni ws="qvm-x-akl">desvalora</AUni> -<AUni ws="qvm-x-ame">desvalora</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="605df484-ae06-4b21-863f-d525a90a0b6c" ownerguid="4f697a2b-72eb-4744-8885-872a72301403"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">island</AUni> -<AUni ws="es">isla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0b52c79b-f30e-4a13-8912-75907a2d0a28" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="606404c1-2e0c-45cc-9103-20d0638486bd" ownerguid="8315264a-c9b7-4b27-93d0-d0446bc78a1c"> -<Form> -<AUni ws="qvm-x-ach">auja</AUni> -<AUni ws="qvm-x-acl">auja</AUni> -<AUni ws="qvm-x-akh">awja</AUni> -<AUni ws="qvm-x-akl">awja</AUni> -<AUni ws="qvm-x-ame">awha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6065eaf9-aed1-4027-8ada-20f7685b82ff" ownerguid="2643f75d-e7dc-4b5c-ba8e-e47d48d89d42"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="60675bce-0619-4961-b3f6-7b96ecce6e7b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">washquitu</AUni> -<AUni ws="qvm-x-acl">washquitu; washquitu; washquito</AUni> -<AUni ws="qvm-x-akh">washkitu</AUni> -<AUni ws="qvm-x-akl">washkitu; washkitu; washkito</AUni> -<AUni ws="qvm-x-ame">washkitu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*washkitu</AUni> -<AUni ws="qvm-x-acl">*washkitu</AUni> -<AUni ws="qvm-x-akh">*washkitu</AUni> -<AUni ws="qvm-x-akl">*washkitu</AUni> -<AUni ws="qvm-x-ame">*washkitu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.556" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="161f5d7a-a1db-49a1-8d43-b6df887e4ff9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*washkitu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2a356743-fac1-4a25-b8b8-6f1254cb0bec" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="463b955b-0372-4946-86f5-90c5cb4e6a06" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *washkitu 
\entryTyp root 
\gENG 
\gSPN 
\e *washkitu 
\c N0 
\ach washquitu 
\akh washkitu 
\acl washquitu / _# 
\acl washquitu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl washquito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl washkitu / _# 
\akl washkitu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl washkito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame washkitu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="606d947f-700b-4c60-81bb-fa1aaa1ba544" ownerguid="f550e0f1-b56f-42ed-9740-fe5c12020dd1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="606d9edc-94be-4322-95a1-576eed7656f1" ownerguid="0205145d-23b6-4c3c-bf2d-bf866bb010e7"> -<ExampleWords> -<AUni ws="en">cistern, bucket, pitcher</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What containers are used to hold water?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="607457c5-5a36-43ab-8809-5a39b18cc3e8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">achachalay</AUni> -<AUni ws="qvm-x-acl">achachalay</AUni> -<AUni ws="qvm-x-akh">achachalay</AUni> -<AUni ws="qvm-x-akl">achachalay</AUni> -<AUni ws="qvm-x-ame">achachalay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*achachalay</AUni> -<AUni ws="qvm-x-acl">*achachalay</AUni> -<AUni ws="qvm-x-akh">*achachalay</AUni> -<AUni ws="qvm-x-akl">*achachalay</AUni> -<AUni ws="qvm-x-ame">*achachalay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.475" /> -<DateModified val="2022-10-16 15:17:18.964" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f9d701d1-9aba-4d76-8532-18f4ea36ccb1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">achachalay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9e2a3596-4ad3-4eb9-a29a-cca0acaafe3e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c3fc5264-0715-4988-803d-441c6ca13ef6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx achachalay 
\entryTyp root 
\gENG ay.ay.ay 
\gSPN que.miedo 
\e *achachallay 
\c NOSUFF 
\ach achachalay 
\akh achachalay 
\acl achachalay 
\akl achachalay 
\ame achachalay</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6078bc0a-fdca-4a13-bfe4-7afad624e06d" ownerguid="06a89652-70e0-40ac-b929-ed42f011c9fc"> -<ExampleWords> -<AUni ws="en">decay, remains, compost, carrion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to dead things?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="607b1b5d-fbff-40ed-85f1-72e8a96b3377"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ay</AUni> -<AUni ws="qvm-x-acl">ay</AUni> -<AUni ws="qvm-x-akh">ay</AUni> -<AUni ws="qvm-x-akl">ay</AUni> -<AUni ws="qvm-x-ame">ay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ay</AUni> -<AUni ws="qvm-x-acl">*ay</AUni> -<AUni ws="qvm-x-akh">*ay</AUni> -<AUni ws="qvm-x-akl">*ay</AUni> -<AUni ws="qvm-x-ame">*ay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.890" /> -<DateModified val="2022-10-14 23:48:14.232" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c81d13ce-847a-4380-b055-f368add5dc5c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a478966b-c282-4674-9333-7be4a062d053" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="753ce526-8766-4a97-992c-62fa25a64c3d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ay 
\entryTyp root 
\gENG ay! 
\gSPN ay! 
\e *ay 
\c NOSUFF 
\mp NeverMonophthongized 
\ach ay 
\akh ay 
\acl ay 
\akl ay 
\ame ay</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="607b1ccf-f64f-419e-b568-d649439bcec7"> -<Analyses> -<objsur guid="3c1d829d-0ad2-4b50-9886-df081a7bfe33" t="o" /> -</Analyses> -<Checksum val="-1709687667" /> -<Form> -<AUni ws="qvm-x-akh">aywar</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="607b5d6f-7721-4851-98c2-2c0eda05370e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">policía; policia</AUni> -<AUni ws="qvm-x-acl">policía; policia</AUni> -<AUni ws="qvm-x-akh">policía; policia</AUni> -<AUni ws="qvm-x-akl">policía; policia</AUni> -<AUni ws="qvm-x-ame">policía; policia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+policía</AUni> -<AUni ws="qvm-x-acl">+policía</AUni> -<AUni ws="qvm-x-akh">+policía</AUni> -<AUni ws="qvm-x-akl">+policía</AUni> -<AUni ws="qvm-x-ame">+policía</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.891" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="78e89910-e3d6-484d-8afc-cc0e4e6986a7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+policía</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c3d64074-b750-49d2-b569-b70a0d32bb74" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="96c2e0fd-14e3-4b1b-8056-05d3480d1538" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +policía 
\entryTyp root 
\gENG police 
\gSPN policía 
\e +policía 
\c N0 
\ach policía / _# 
\ach policia / ~_# 
\akh policía / _# 
\akh policia / ~_# 
\acl policía / _# 
\acl policia / ~_# 
\akl policía / _# 
\akl policia / ~_# 
\ame policía / _# 
\ame policia / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="607cd1d2-ad55-46c0-bfb4-8563f5fed94d" ownerguid="3e4b180b-3153-498d-859a-9cca21027d26"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="607d5709-9f94-4061-a0d3-005a4c65805a" ownerguid="04370e1f-25aa-4d9e-97c5-de9b59156666"> -<ExampleWords> -<AUni ws="en">be widowed, widowhood, lose your husband/wife</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the death of a spouse?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="607d90fc-a987-426d-8760-1c0c6f239ea1" ownerguid="dedf9bc3-21a0-4eee-827f-f11c03b1e934"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">afternoon</AUni> -<AUni ws="es">tarde</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dce62a82-68fd-43d5-8f67-b011bd487a74" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="607f16fb-a4b0-4506-be48-4dcdf204489d" ownerguid="d08b4798-fa0a-45e2-81e5-96ecfd31116c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6082968f-63ca-4b72-a5a1-d8dd5a3988ee" ownerguid="573bf23a-3fde-4552-9263-62b7c71cad02"> -<ExampleWords> -<AUni ws="en">cast, throw, pull in, bring in, mend net, dry net</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to fishing with a net?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="60836a5a-1e5d-4ddf-bfc3-cbc821a5a921" ownerguid="a0d073df-d413-4dfd-9ba1-c3c68f126d90"> -<ExampleWords> -<AUni ws="en">planet, planetary, wandering star</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a planet?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="60867c21-b7d1-4b34-bc97-58d9843fb942" ownerguid="ac527685-f31d-42f3-81bd-97221a01c7ef"> -<ExampleWords> -<AUni ws="en">image</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something made from a pattern?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="60869c43-cfcc-4d69-9a3c-222634117f00" ownerguid="7958cada-dbf7-44d8-af88-78b5dd6c4f1c"> -<Form> -<AUni ws="qvm-x-ach">antsa; antsä</AUni> -<AUni ws="qvm-x-acl">antsa; antsä</AUni> -<AUni ws="qvm-x-akh">antsa; antsä</AUni> -<AUni ws="qvm-x-akl">antsa; antsä</AUni> -<AUni ws="qvm-x-ame">antsa; antsä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="60889f60-c94b-4dcf-8dc4-4fa9a40cede5" ownerguid="32cf3835-bced-4ea1-9c7a-f7ff653e59fe"> -<ExampleWords> -<AUni ws="en">grave marker, gravestone, headstone, tombstone, slab, memorial, monument, epitaph</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a marker of a grave?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="608c4cf8-251b-4417-8976-50c6bb4870ce" ownerguid="a5ba96ff-77b0-49c5-b1a8-bf8f13879627"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="608cf9b0-b9df-47d6-aec9-7d429c877173"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsaga</AUni> -<AUni ws="qvm-x-acl">tsaga</AUni> -<AUni ws="qvm-x-akh">tsaqa</AUni> -<AUni ws="qvm-x-akl">tsaqa</AUni> -<AUni ws="qvm-x-ame">tsaqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chaqa.r</AUni> -<AUni ws="qvm-x-acl">*chaqa.r</AUni> -<AUni ws="qvm-x-akh">*chaqa.r</AUni> -<AUni ws="qvm-x-akl">*chaqa.r</AUni> -<AUni ws="qvm-x-ame">*chaqa.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.284" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="12cf8e87-019e-4e39-be06-e4969acc4fbe" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chaqa.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7b29a93f-ed97-459d-b2d3-2d5521d2cd4f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3c1eef95-6710-499d-aded-43acaf255992" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chaqa.r 
\entryTyp root 
\gENG piled 
\gSPN amontonado 
\e *chaqa.r 
\c R0 
\ach tsaga 
\akh tsaqa 
\acl tsaga 
\akl tsaqa 
\ame tsaqa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="608e5f22-68da-4f3d-a99e-c74c454d6fa5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tumpa</AUni> -<AUni ws="qvm-x-acl">tumpa</AUni> -<AUni ws="qvm-x-akh">tumpa</AUni> -<AUni ws="qvm-x-akl">tumpa</AUni> -<AUni ws="qvm-x-ame">tumpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tumpa.v</AUni> -<AUni ws="qvm-x-acl">*tumpa.v</AUni> -<AUni ws="qvm-x-akh">*tumpa.v</AUni> -<AUni ws="qvm-x-akl">*tumpa.v</AUni> -<AUni ws="qvm-x-ame">*tumpa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.987" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0fea1f5e-a074-411b-93c4-2cd5546c10fc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tumpa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ef228aa5-a462-4e2d-a38e-1ae66955d561" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="80b2aae7-58e0-4184-b965-ff7112220d0b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tumpa.v 
\entryTyp root 
\gENG blame 
\gSPN inculpar 
\e *tumpa.v 
\c V2 
\ach tumpa 
\akh tumpa 
\acl tumpa 
\akl tumpa 
\ame tumpa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="609054ad-1c15-4670-9dae-0a232d6b407f" ownerguid="7212ba9e-1753-4aa3-aea0-80ff1d798502"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1 | NC witiyämaytsu</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">move.away</AUni> -<AUni ws="es">alejarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="da70131e-1c62-4fe5-85cf-9a9d63a0e962" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="6092226c-99d3-4fb4-ab1a-794821117d36"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sa:nu</AUni> -<AUni ws="qvm-x-acl">sa:nu; sa:nu; sa:no</AUni> -<AUni ws="qvm-x-akh">sa:nu</AUni> -<AUni ws="qvm-x-akl">sa:nu; sa:nu; sa:no</AUni> -<AUni ws="qvm-x-ame">sa:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sano</AUni> -<AUni ws="qvm-x-acl">+sano</AUni> -<AUni ws="qvm-x-akh">+sano</AUni> -<AUni ws="qvm-x-akl">+sano</AUni> -<AUni ws="qvm-x-ame">+sano</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.439" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b0d275be-46ce-4311-864d-b4bce6efc115" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sano</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a1541925-25ca-4c29-8fac-38b577837f13" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="59d5365f-de16-4e3a-beca-911839748b81" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sano 
\entryTyp root 
\gENG healthy 
\gSPN sano 
\e +sano 
\c N0 
\ach sa:nu 
\akh sa:nu 
\acl sa:nu / _# 
\acl sa:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sa:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sa:nu / _# 
\akl sa:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sa:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sa:nu</Run> -</AStr> -</Custom> -</rt> -<rt class="FsClosedValue" guid="609518e6-51e7-4638-8ace-1891bef48e16" ownerguid="27dd9aa5-d7e8-447c-967e-762edd338dee"> -<Feature> -<objsur guid="e13ebd7a-824d-4405-8c23-e5a30f3d53a6" t="r" /> -</Feature> -<RefNumber val="0" /> -<Value> -<objsur guid="7fd2e9b4-402c-427c-a3e3-bbf386d652da" t="r" /> -</Value> -<ValueState val="0" /> -</rt> -<rt class="LexSense" guid="6096aefd-c107-4397-b3ef-cc42ad00f772" ownerguid="123c8124-826f-49a8-a1c3-94d155e60220"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="fe7b5723-1331-4c9e-93fd-829c028210a3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="609ba31f-f378-4a41-bf75-be3254537269" ownerguid="a19e219a-6cc1-4057-a8d9-18554ae88de1"> -<ExampleWords> -<AUni ws="en">breast milk, milk, bottle, baby food, bib, highchair</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What things are used to feed a baby?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="609cc365-f052-4fe9-b16c-5b5eda586d28"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gansu; ganso</AUni> -<AUni ws="qvm-x-acl">gansu; gansu; ganso</AUni> -<AUni ws="qvm-x-akh">gansu; ganso</AUni> -<AUni ws="qvm-x-akl">gansu; gansu; ganso</AUni> -<AUni ws="qvm-x-ame">gansu; ganso</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ganso</AUni> -<AUni ws="qvm-x-acl">+ganso</AUni> -<AUni ws="qvm-x-akh">+ganso</AUni> -<AUni ws="qvm-x-akl">+ganso</AUni> -<AUni ws="qvm-x-ame">+ganso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.599" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cf316705-9f92-4c21-937d-06f312223af1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ganso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="14fbc6ce-b0d7-4515-a5c7-53cb4e1d1e1f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0bcd7cac-0752-451c-ac99-ea4a50c0d599" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ganso 
\entryTyp root 
\gENG goose 
\gSPN ganso 
\e +ganso 
\c N0 
\ach gansu / ~_# 
\ach ganso / _# 
\akh gansu / ~_# 
\akh ganso / _# 
\acl gansu / ~_# 
\acl gansu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ganso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl gansu / ~_# 
\akl gansu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ganso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame gansu / ~_# 
\ame ganso / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="609dda39-0c71-4931-b1cb-f97d134450dd" ownerguid="615674ac-8158-4089-ae70-b55472fd279b"> -<ExampleWords> -<AUni ws="en">date (v), establish the date of, determine the age of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to finding out how old something is?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="609f45cf-9df1-4976-b948-69672b584e8f" ownerguid="21d1998d-dfc2-4151-8d77-3c73f30916f8"> -<Form> -<AUni ws="qvm-x-ach">cachari</AUni> -<AUni ws="qvm-x-acl">cachari; cachare</AUni> -<AUni ws="qvm-x-akh">kachari</AUni> -<AUni ws="qvm-x-akl">kachari; kachare</AUni> -<AUni ws="qvm-x-ame">kachari</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="60a1b93b-cd4c-4df7-bdf4-3a59dcba17e3" ownerguid="02d40281-094f-426e-a0eb-f10e113efb58"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="eb4bc344-be42-4c27-95e2-7abd4a6c2b27" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -<Sense> -<objsur guid="51cc5088-f15f-43ad-802d-b00dfa615a64" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="60a1cf1a-8473-49ae-b409-c824a4ef8eee"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gashchu</AUni> -<AUni ws="qvm-x-acl">gashchu; gashchu; gashcho</AUni> -<AUni ws="qvm-x-akh">qashchu</AUni> -<AUni ws="qvm-x-akl">qashchu; qashchu; qashcho</AUni> -<AUni ws="qvm-x-ame">qashchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qashtru</AUni> -<AUni ws="qvm-x-acl">*qashtru</AUni> -<AUni ws="qvm-x-akh">*qashtru</AUni> -<AUni ws="qvm-x-akl">*qashtru</AUni> -<AUni ws="qvm-x-ame">*qashtru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.134" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5f2f4f82-4fd9-428f-b277-dbd73890f426" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qashtru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="562e9a3e-706a-4483-baae-bf6f6432465d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c4bc2c6a-3402-4b8c-8d22-79f936f10f9e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qashtru 
\entryTyp root 
\gENG 
\gSPN 
\e *qashtru 
\c N0 
\ach gashchu 
\akh qashchu 
\acl gashchu / _# 
\acl gashchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gashcho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qashchu / _# 
\akl qashchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qashcho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qashchu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="60a2ecc7-e4c1-4a9a-93eb-81970fa28ec3" ownerguid="8384542a-c622-49d7-b309-f89da8666530"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tie</AUni> -<AUni ws="es">atar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7ea214ce-2387-4fa0-a30d-69145613a7fc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="60a5fa58-45b1-41ae-9430-5200e8bfbcb8" ownerguid="12fe5f6c-7f98-47ba-936a-bcd1065c2db3"> -<Abbreviation> -<AUni ws="en">7.2.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to turning and changing the direction in which one is moving.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Turn</AUni> -</Name> -<Questions> -<objsur guid="e10b7e21-1eeb-4488-9376-c98c851ea293" t="o" /> -<objsur guid="8b2b95c5-666f-44c4-af8a-3c6b45ce861a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="60a61057-6b52-495d-a66c-5b8eb767ecb2" ownerguid="6a1042a9-6c0f-4823-bfa1-6d72d140d836"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="60a8b5bc-b30f-42c3-9bb1-6c68928d1aaa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gran</AUni> -<AUni ws="qvm-x-acl">gran</AUni> -<AUni ws="qvm-x-akh">gran</AUni> -<AUni ws="qvm-x-akl">gran</AUni> -<AUni ws="qvm-x-ame">gran</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gran</AUni> -<AUni ws="qvm-x-acl">+gran</AUni> -<AUni ws="qvm-x-akh">+gran</AUni> -<AUni ws="qvm-x-akl">+gran</AUni> -<AUni ws="qvm-x-ame">+gran</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.629" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="85f9cb12-743a-4288-8a96-707a3f220291" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gran</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7cae4727-229f-4e7e-80e0-3ec4573abc4e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="eecdbddf-5ddb-49c6-8c39-c6e24b7030ed" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gran 
\entryTyp root 
\gENG 
\gSPN 
\e +gran 
\c NOSUFF 
\ach gran 
\akh gran 
\acl gran 
\akl gran 
\ame gran</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="60a9f062-f054-4274-8293-9c170d499a90" ownerguid="62ac799d-ad65-4fb5-a08f-a2c750b94997"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="60a9f7ea-e49a-455b-a4b3-a26c994e2033" ownerguid="2d92e248-1512-4e89-b886-425814c6dd32"> -<ExampleWords> -<AUni ws="en">opening move, opening, move, queen to king's knight 4, advance, castle, capture, take, lose a piece, check, checkmate, concede</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What events make up the game?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="60aa2e76-07e2-4380-b8be-eef0fd06e433" ownerguid="cca44b46-437c-42ee-93d7-a8820d61d0c8"> -<ExampleWords> -<AUni ws="en">legal personnel, arbitrator, scribe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to legal personnel?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="60ac6c7c-b71c-4ecd-ba14-b9668554c5e7" ownerguid="fa243cc0-3b47-4be3-991b-909e90538fba"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="57e435ff-f14a-44e1-b595-dff01f37fcc1" t="r" /> -</Morph> -<Msa> -<objsur guid="be6973f5-a2b1-46a6-9dd0-379cd8bb168a" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="60ad8af1-8bd6-4dcc-978d-8183bc3bcb05" ownerguid="c12852c1-d8b2-4dbb-953f-59efd81b3972"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mamay</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mamay</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mamay</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mamay</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mamay</Run> -</AStr> -</Form> -<Morph> -<objsur guid="35eab8a3-6cae-4fa1-bfc9-538c0aafab10" t="r" /> -</Morph> -<Msa> -<objsur guid="7cdfadd2-1885-414b-b93f-720eb705a771" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="60af729c-0430-430b-9618-a7162f19fe97" ownerguid="2aa41bcd-2aa4-4795-8b53-d12956906a1d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="60b04731-a33f-488b-a895-49d5eae4b8f2" ownerguid="bdaecf2f-d0fa-49f7-891e-bcb0a31ae630"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John took a bath, <and> ate a big dinner.; John took a bath, <and then> ate a big dinner.; <Having> tak<en> a bath, John ate a big dinner.; <After> taking a bath, John ate a big dinner.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">and, and then, then, having...-en, after, thereafter, thereon, thereupon, whereupon, upon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words are used to link events when telling a story?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="60b6cefa-141f-494a-b055-fcb35ad4137e" ownerguid="08239f53-daa5-47a6-9f39-29a9064b0c27"> -<ExampleWords> -<AUni ws="en">adhere, bind, cleave, cling, cohere, combine, fuse, merge, stick together, unite</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to things joining together?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="60b72160-8222-44ba-8cb7-1f2a7dfb7a5c" ownerguid="10c190cb-240a-4bbf-a422-d3c0cf6933d5"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 21.22 Tsaycho mana wanuptin imaptenga warmipa lesionninpita runan manaptin jueznami tantyaycur pägatsenga.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="60b8dcfd-49a0-4ab4-82a7-2c5058b325ae" ownerguid="286ee16c-a218-43d5-bbac-ab15f80c3fcf"> -<Abbreviation> -<AUni ws="en">8.1.7.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.579" /> -<DateModified val="2022-9-23 16:55:8.579" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the remainder of something--the part or amount of something that remains behind after the other parts have been taken away. Something can be left because everything else has been used or eaten, or everything else has been destroyed or burned.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>63E Remnant</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Remain, remainder</AUni> -</Name> -<Questions> -<objsur guid="3ec6e423-488a-47d6-993f-cbb8cd2bd4e6" t="o" /> -<objsur guid="64958a0c-65ed-460f-b255-65fea63cdb4b" t="o" /> -<objsur guid="13caf546-58cb-4bfa-bf0b-d95b96280862" t="o" /> -<objsur guid="bd83057e-cec8-4e65-b4c6-83459af2a9c4" t="o" /> -<objsur guid="f5c47f40-8f1a-469a-87a6-533bae30fd35" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="60ba31b6-c83e-4054-9d5f-041f5e79b48d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">murcillu; murcillo</AUni> -<AUni ws="qvm-x-acl">murcillu; murcillu; murcillo</AUni> -<AUni ws="qvm-x-akh">murcillu; murcillo</AUni> -<AUni ws="qvm-x-akl">murcillu; murcillu; murcillo</AUni> -<AUni ws="qvm-x-ame">murcillu; murcillo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+morcillo</AUni> -<AUni ws="qvm-x-acl">+morcillo</AUni> -<AUni ws="qvm-x-akh">+morcillo</AUni> -<AUni ws="qvm-x-akl">+morcillo</AUni> -<AUni ws="qvm-x-ame">+morcillo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.477" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="83951c8b-c867-455c-89eb-f133bbfa6f67" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+morcillo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4df8ade0-9734-4525-b518-f83eb26fb843" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9c639758-c7dd-4378-95c5-4d08957b938c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +morcillo 
\entryTyp root 
\gENG 
\gSPN salchicha 
\e +morcillo 
\c N0 
\ach murcillu / ~_# 
\ach murcillo / _# 
\akh murcillu / ~_# 
\akh murcillo / _# 
\acl murcillu / ~_# 
\acl murcillu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl murcillo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl murcillu / ~_# 
\akl murcillu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl murcillo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame murcillu / ~_# 
\ame murcillo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="60bb4b5d-a223-4d58-ae99-941c0e2cc8eb" ownerguid="65429919-05cf-4261-8822-c821702f636f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="CmDomainQ" guid="60bf11e1-6f26-4aad-9232-79d1f7d57212" ownerguid="5ea9301a-9906-4e81-97cf-48ee95a54c63"> -<ExampleWords> -<AUni ws="en">have influence, be influential, carry weight, have a hold on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to your ability to change another's mind or decision?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="60bf1931-3d89-4b0f-bec9-3c70409b9771" ownerguid="4dd9e1f0-4609-4c62-b4df-b82a35e5594e"> -<Gloss> -<AUni ws="en">PUR</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f4af2584-9c15-43e4-b912-5e626cdaa68c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="60c24999-fb34-470d-8c5e-0279c1cecb87" ownerguid="64fcd0a7-1ca7-412d-bb55-c91f7392fde2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="60cacaf3-2cf2-4c0b-a085-09dd29a7fd25" ownerguid="936d53eb-31ce-419c-af43-618117739fa4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9fccb60f-4b91-432a-a591-67707eb724a1" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="a9ccc8c3-5184-4861-b31e-6cc6f617e54d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="60cb2c43-11b9-4ab7-9992-66e15568fc49" ownerguid="9a8f2f6a-a039-45dd-80d3-d1e0911907b2"> -<ExampleWords> -<AUni ws="en">Internal Revenue Service</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the government agency that is responsible for taxes?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="60d27f73-7029-4fce-afb9-268cc76d8236" ownerguid="c102de4c-ea8e-45d1-8e11-84c5ce3b2b60"> -<Form> -<AUni ws="qvm-x-ach">fayna</AUni> -<AUni ws="qvm-x-acl">fayna</AUni> -<AUni ws="qvm-x-akh">fayna</AUni> -<AUni ws="qvm-x-akl">fayna</AUni> -<AUni ws="qvm-x-ame">fayna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="60d77235-f2f0-40d0-b767-6876a279c2e1" ownerguid="7c20339c-deee-42dd-a747-5159b947eb68"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Cuidädu pelyar imartag aywaycanquiman.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="60da7964-9217-4e41-9534-33ab0d30884b" ownerguid="71816e58-0789-45cf-91cc-c8934a996f4a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="60db66f9-b4de-4f20-bb9d-715b6caa2164"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pichiuchanca</AUni> -<AUni ws="qvm-x-acl">pichiuchanca</AUni> -<AUni ws="qvm-x-akh">pichiwchanka</AUni> -<AUni ws="qvm-x-akl">pichiwchanka</AUni> -<AUni ws="qvm-x-ame">pichiwchanka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pichiwchanka</AUni> -<AUni ws="qvm-x-acl">*pichiwchanka</AUni> -<AUni ws="qvm-x-akh">*pichiwchanka</AUni> -<AUni ws="qvm-x-akl">*pichiwchanka</AUni> -<AUni ws="qvm-x-ame">*pichiwchanka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.820" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e3736ded-909c-4a75-a4fe-759e2477e88d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pichiwchanka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a84a4f28-fef9-41bb-a316-8e86f4943181" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f2b87b15-c670-4156-8f7d-3cc96eedd9d2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pichiwchanka 
\entryTyp root 
\gENG sparrow 
\gSPN 
\e *pichiwchanka 
\c N0 
\ach pichiuchanca 
\akh pichiwchanka 
\acl pichiuchanca 
\akl pichiwchanka 
\ame pichiwchanka</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="60dc07ac-09c3-403f-b4dc-155c2ba950fa" ownerguid="409c6739-bef4-4237-b7d7-883aabaaf0ce"> -<Form> -<AUni ws="qvm-x-ach">marfil</AUni> -<AUni ws="qvm-x-acl">marfil</AUni> -<AUni ws="qvm-x-akh">marfil</AUni> -<AUni ws="qvm-x-akl">marfil</AUni> -<AUni ws="qvm-x-ame">marfil</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="60dc7cf6-0a41-4cd3-99a6-0b7a71488e7e" ownerguid="cb95189c-8c74-465b-af07-48e08dbf7c39"> -<Abbreviation> -<AUni ws="en">3.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.133" /> -<DateModified val="2022-9-23 16:55:8.133" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words related to feeling bad.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Feel bad</AUni> -</Name> -<Questions> -<objsur guid="cc38ab3c-e420-4390-9f29-446396a5423a" t="o" /> -<objsur guid="1c30f0c2-cb7d-4959-bdc2-7f2aa8451b6a" t="o" /> -<objsur guid="0e1263d2-0279-47cf-bd1e-93ab51af263a" t="o" /> -<objsur guid="e3a7e5a3-b0d1-4795-b320-8a08c35ed1b0" t="o" /> -<objsur guid="a3a69edd-d639-4313-9828-6052cf3297b0" t="o" /> -<objsur guid="92bdafab-9b20-49b7-9cd9-bc01f4a7246f" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="6142c173-161a-47d5-bdec-c827518fd67c" t="o" /> -<objsur guid="da39c0d9-a5c1-4f10-bd3b-4e988abcab5a" t="o" /> -<objsur guid="2a62f8e4-7da3-4f37-bf44-e24033c99c00" t="o" /> -<objsur guid="2b6f9af7-04ee-4030-a2cd-87d55959caa8" t="o" /> -<objsur guid="8052744f-7a9a-49da-89e3-4c518126180b" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="60de6613-9d48-4e43-a554-3dea73950517"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bendición; bendicion</AUni> -<AUni ws="qvm-x-acl">bendición; bendicion</AUni> -<AUni ws="qvm-x-akh">bendición; bendicion</AUni> -<AUni ws="qvm-x-akl">bendición; bendicion</AUni> -<AUni ws="qvm-x-ame">bendición; bendicion</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bendición</AUni> -<AUni ws="qvm-x-acl">+bendición</AUni> -<AUni ws="qvm-x-akh">+bendición</AUni> -<AUni ws="qvm-x-akl">+bendición</AUni> -<AUni ws="qvm-x-ame">+bendición</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.961" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7759a851-9b64-4051-9690-59ad8cc2fe0e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bendición</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="41bcb326-2501-4335-84bd-5b7c3383ee69" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="75f2c9bd-b9b8-43aa-a0cf-256af20e6da7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bendición 
\entryTyp root 
\gENG blessing 
\gSPN bendición 
\e +bendición 
\c N0 
\mp +FinalC 
\ach bendición / _# 
\ach bendicion / ~_# 
\akh bendición / _# 
\akh bendicion / ~_# 
\acl bendición / _# 
\acl bendicion / ~_# 
\akl bendición / _# 
\akl bendicion / ~_# 
\ame bendición / _# 
\ame bendicion / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="60de9433-de63-41e5-9942-158d2fab81f9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">vuela</AUni> -<AUni ws="qvm-x-acl">vuela</AUni> -<AUni ws="qvm-x-akh">vuela</AUni> -<AUni ws="qvm-x-akl">vuela</AUni> -<AUni ws="qvm-x-ame">vuela</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+volar.1</AUni> -<AUni ws="qvm-x-acl">+volar.1</AUni> -<AUni ws="qvm-x-akh">+volar.1</AUni> -<AUni ws="qvm-x-akl">+volar.1</AUni> -<AUni ws="qvm-x-ame">+volar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.422" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bb43a9c5-d11c-4885-9497-d6c19482fadb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+volar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0fce6cf2-3e0c-40b5-acbf-56839c1526a8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="51ef2e47-8986-43a8-a873-61fa6f2287de" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +volar.1 
\entryTyp root 
\gENG fly 
\gSPN volar 
\e +volar.1 
\c V1 
\ach vuela 
\akh vuela 
\acl vuela 
\akl vuela 
\ame vuela</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="60e00816-18f3-4bc6-80b1-6479acdace32" ownerguid="4b40ca7a-6a98-4281-bcf7-1f1bfa5d27e3"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Gen 31.7 Tsaynog arupaycaptëpis payga engañamashgami. Atsca cutimi mana cumplishgatsu pägamänanpag parlacushgänog. Tsaynog ruraycämaptinpis Tayta Dios manami cachapashgatsu pobrisamänanpag.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="60e37b10-d62f-481a-8bb8-b681e25921ac"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">re:ja</AUni> -<AUni ws="qvm-x-acl">re:ja</AUni> -<AUni ws="qvm-x-akh">re:ja</AUni> -<AUni ws="qvm-x-akl">re:ja</AUni> -<AUni ws="qvm-x-ame">re:ja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+reja</AUni> -<AUni ws="qvm-x-acl">+reja</AUni> -<AUni ws="qvm-x-akh">+reja</AUni> -<AUni ws="qvm-x-akl">+reja</AUni> -<AUni ws="qvm-x-ame">+reja</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.318" /> -<DateModified val="2022-10-10 21:19:47.691" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="10b1395b-f735-490c-97ea-1ac62da66050" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+reja</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="62e0794b-2b06-439a-aceb-be25be50e02e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="61d04dea-8398-43a7-8ed9-3a6a82873e4f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +reja 
\entryTyp root 
\gENG plowshare 
\gSPN 
\e +reja 
\c N0 V1 
\mp +foreshortens 
\ach re:ja 
\akh re:ja 
\acl re:ja 
\akl re:ja 
\ame re:ja</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="60e52513-2470-4fe1-a0e0-975bb0bb5066" ownerguid="7575d654-e528-4fe0-85eb-481b0e6654bb"> -<ExampleWords> -<AUni ws="en">stop, turn off, shut down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to stopping a machine?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="60e63d4a-702e-4238-a42b-d97f6be09c29" ownerguid="87d344ac-94cc-49d6-9878-ebc86a933033"> -<Abbreviation> -<AUni ws="en">4.3.4.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.233" /> -<DateModified val="2022-9-23 16:55:8.233" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to hindering someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Hinder</AUni> -</Name> -<Questions> -<objsur guid="590f3f7b-c974-4493-9a29-2738f86b7ea2" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="60e66cbc-95b9-4ad2-9861-4e40a5585583" ownerguid="8f612b2f-84d4-4a0e-8332-1a47079740dc"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="60e8c745-dd34-4b54-a754-751d76d6d6f1" ownerguid="b63b6a47-5e5e-4088-a916-4e9777be9e39"> -<Form> -<AUni ws="qvm-x-ach">tablëru</AUni> -<AUni ws="qvm-x-acl">tablëru; tablëru; tablëro</AUni> -<AUni ws="qvm-x-akh">tablëru</AUni> -<AUni ws="qvm-x-akl">tablëru; tablëru; tablëro</AUni> -<AUni ws="qvm-x-ame">tablëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="60f0f363-143d-48ad-a1c6-0a2f5506061e" ownerguid="a241fe43-86ce-447f-9996-1f90e013b408"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PhPhoneme" guid="60f222f8-e2b9-4ffe-ac3c-0c7fb1a24e83" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="12acfda9-92eb-4410-961e-e521d8328f5b" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">palatal nasal</Run> -</AStr> -</Description> -<Name> -<AUni ws="qvm-x-ach">ñ</AUni> -<AUni ws="qvm-x-acl">ñ</AUni> -<AUni ws="qvm-x-akh">ñ</AUni> -<AUni ws="qvm-x-akl">ñ</AUni> -<AUni ws="qvm-x-ame">ñ</AUni> -</Name> -</rt> -<rt class="CmDomainQ" guid="60f5003f-f685-41c8-997f-9acfc511d200" ownerguid="6cbdaf94-8e2c-4b26-936a-d2f86d158250"> -<ExampleWords> -<AUni ws="en">race, color, ethnic group, racial, racially, ethnic, ethnicity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a person's race?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="60f8a465-7c43-4814-b55c-c9b713b596b3" ownerguid="fa4a1ab3-a5a1-4046-bc34-5cb868ada3f2"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">lumtsuy</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">lumtsuy</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">lumtsuy</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">lumtsuy</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">lumtsuy</Run> -</AStr> -</Form> -<Morph> -<objsur guid="016f3085-2d5e-47f3-946f-5066308fcadd" t="r" /> -</Morph> -<Msa> -<objsur guid="c41c60cc-83bf-48bb-8ded-b37916944eab" t="r" /> -</Msa> -</rt> -<rt class="WfiAnalysis" guid="60fb6b73-00c7-4adf-817c-7e61783b3a66" ownerguid="508aa1b4-4a04-4787-945a-76d4c013cbde"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="b2f3d9c8-978e-404a-9d33-f8c0d61a9a5b" t="o" /> -<objsur guid="d80115be-59d1-4ffb-8a5d-4289e3966442" t="o" /> -</MorphBundles> -</rt> -<rt class="CmSemanticDomain" guid="6105a207-4311-4920-8c19-63259424bfaf" ownerguid="b9c752a4-66be-493c-8955-cfa5324a54c1"> -<Abbreviation> -<AUni ws="en">4.9.5.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.296" /> -<DateModified val="2022-9-23 16:55:8.296" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the primary goal or goals of a religion, for instance in Christianity salvation from sin, death and Hell. Each religion has different beliefs about salvation. Our purpose here is not to preach or argue, but to list those words that people use to talk about this topic.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>21F Save in a Religious Sense</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Salvation</AUni> -</Name> -<Questions> -<objsur guid="2cb2f337-85ad-4a25-b2b9-414d4a86afed" t="o" /> -<objsur guid="ab517c06-df1c-4241-a242-9f6742c025e4" t="o" /> -<objsur guid="554604a1-0d94-47dc-b6d6-e21efb3d8b7c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="61090538-c388-4fb7-b0c9-a76755033108" ownerguid="aa2b547c-2c82-4ce0-a1b3-35fa809d666c"> -<ExampleWords> -<AUni ws="en">tapered, thinned, constricted, restricted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that has been made narrow?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="610bc603-a54e-47a5-9dd8-d49201ee2209" ownerguid="2e5acfd2-3009-4496-9cc2-58d2a0088994"> -<ExampleWords> -<AUni ws="en">beard, mustache, whiskers, sideburns, goatee, facial hair, peach fuzz</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to hair on the face?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="610d421e-b85a-4133-8f8b-32cf20488d46" ownerguid="627995c6-072c-4b73-9405-dfc39686ac3c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="610e7ece-893f-4356-913c-1d9228088b43" ownerguid="282a720b-8428-42cf-93b7-fafbbcd11e6a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">plastic</AUni> -<AUni ws="es">plástico</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="661c53cb-c7f6-49d4-befb-5774b7dc4308" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="610ef6e9-6eb7-488f-bbf0-44270d21a08c" ownerguid="b8d2fdb9-22ea-4040-8abb-aeeff0399f23"> -<ExampleWords> -<AUni ws="en">massacre (n), slaughter, carnage, genocide, mass murder, ethnic cleansing, annihilation, blood-bath, extermination, holocaust, pogrom</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the killing of many people?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="610f5624-753a-4fc1-a6ca-2356e0de7de7" ownerguid="57ed66ee-f82b-4e80-955f-7492d85372b0"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John went <as> David's <representative>.; John spoke <on> David's <behalf>.; John spoke <on behalf of> David.; John spoke <for> David.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">as someone's representative, on someone's behalf, on behalf of, for</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate someone who is representing another person?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6113c9a2-add6-4414-8a7e-7e5e7d2e8ad9" ownerguid="66db6d18-e83f-4b5c-bc95-aee41959173a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">burro</AUni> -<AUni ws="es">burro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9d1e622c-fec9-4647-8e23-ee5de3414ef7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="61187a35-ba48-49a1-94d3-c74c4a64f160" ownerguid="4e32f374-714c-4048-8e20-f3a986e31ab4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="6118b2a0-2600-409f-8c03-c9ecb725623b" ownerguid="b2a52981-8b33-497e-83b7-a740bb8ddd11"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="35218f84-0e53-4849-9a4a-b2189c13dbc3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="Segment" guid="61199806-794d-4c58-a67f-e71441a98b85" ownerguid="8aa08cd5-fc81-4f45-b2f6-d4d807c4fb11"> -<Analyses> -<objsur guid="503aec14-5708-47c1-a9c8-79938589e713" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="611aa361-4ddd-450b-a152-94984a274575" ownerguid="e7caa24f-155d-47cd-946d-cc0d06dfc764"> -<Abbreviation> -<AUni ws="en">4.3.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.225" /> -<DateModified val="2022-9-23 16:55:8.225" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to abandoning someone or something--to leave and not return to them.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>35H Desert, Forsake</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Abandon</AUni> -</Name> -<Questions> -<objsur guid="28afa227-f462-4a14-b8d3-a45b5cff261a" t="o" /> -<objsur guid="b7497526-efce-4541-a7e2-b5197e10027e" t="o" /> -<objsur guid="37022db8-cf6e-461a-a812-b83890cd11aa" t="o" /> -<objsur guid="d5d235a5-b338-4137-9b7e-9c05f35a3cb1" t="o" /> -<objsur guid="d1af163b-a334-459f-b504-5ecdcb362666" t="o" /> -<objsur guid="1545e89c-6be6-4433-bbcb-4fc60344d7a9" t="o" /> -<objsur guid="4a511718-5413-4f2a-9011-c742fcc0a57a" t="o" /> -<objsur guid="fb093d8d-cd27-4efa-96d3-b76555a18834" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="4651aef1-e18f-481e-9c3e-d9dfff4a6b51" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="611b2472-693c-4554-8fcd-63e5a5083932"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">calapo:su</AUni> -<AUni ws="qvm-x-acl">calapo:su; calapo:su; calapo:so</AUni> -<AUni ws="qvm-x-akh">calapo:su</AUni> -<AUni ws="qvm-x-akl">calapo:su; calapo:su; calapo:so</AUni> -<AUni ws="qvm-x-ame">calapo:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+calabozo.1</AUni> -<AUni ws="qvm-x-acl">+calabozo.1</AUni> -<AUni ws="qvm-x-akh">+calabozo.1</AUni> -<AUni ws="qvm-x-akl">+calabozo.1</AUni> -<AUni ws="qvm-x-ame">+calabozo.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.210" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3949cf53-d6e7-4f9f-b669-f75c58863d09" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+calabozo.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e6cef013-8730-443d-8a5b-7c639d2e3e47" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c88a747c-f8dd-4df1-85dd-58421016af40" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +calabozo.1 
\entryTyp root 
\gENG cell 
\gSPN calabozo 
\e +calabozo.1 
\c N0 
\mp +assimilated 
\ach calapo:su 
\akh calapo:su 
\acl calapo:su / _# 
\acl calapo:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl calapo:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl calapo:su / _# 
\akl calapo:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl calapo:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame calapo:su</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="611c8a6b-e5f6-4aaa-bf8f-7ba2a23c41fd" ownerguid="fb1cc66b-80da-42fa-8c0c-2ee3e0fe0089"> -<Form> -<AUni ws="qvm-x-ach">limi</AUni> -<AUni ws="qvm-x-acl">limi; limi; lime</AUni> -<AUni ws="qvm-x-akh">limi</AUni> -<AUni ws="qvm-x-akl">limi; limi; lime</AUni> -<AUni ws="qvm-x-ame">limi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="611f7035-57c1-4096-972d-39799fa82748" ownerguid="2dab7f46-e203-4d46-b574-ccf8bd395187"> -<Form> -<AUni ws="qvm-x-ach">huerta</AUni> -<AUni ws="qvm-x-acl">huerta</AUni> -<AUni ws="qvm-x-akh">huerta</AUni> -<AUni ws="qvm-x-akl">huerta</AUni> -<AUni ws="qvm-x-ame">huerta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="611fc36b-e744-40ee-81c2-f146bbc0174e" ownerguid="b14db9f4-5e1d-4a2b-bec0-0d6bcb5b1a31"> -<ExampleWords> -<AUni ws="en">gravity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(17) What words refer to the force that causes things to fall?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6120ce2b-2c5b-436d-bc67-5eafafc74a36" ownerguid="6cd3e32f-db84-4c8f-9d97-02f8c3fdd8eb"> -<Form> -<AUni ws="qvm-x-ach">majäda</AUni> -<AUni ws="qvm-x-acl">majäda</AUni> -<AUni ws="qvm-x-akh">majäda</AUni> -<AUni ws="qvm-x-akl">majäda</AUni> -<AUni ws="qvm-x-ame">majäda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="61212c35-72bd-45e6-bdfd-6eb284907d90" ownerguid="fa8c43d1-057e-4bf4-bc2e-f6c3fb3a5bb1"> -<Form> -<AUni ws="qvm-x-ach">ofrenda</AUni> -<AUni ws="qvm-x-acl">ofrenda</AUni> -<AUni ws="qvm-x-akh">ofrenda</AUni> -<AUni ws="qvm-x-akl">ofrenda</AUni> -<AUni ws="qvm-x-ame">ofrenda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="612424b8-997e-4661-a452-772e14a3c4a0" ownerguid="7c9c6263-9f7d-472c-a4c9-1767015d41fe"> -<Abbreviation> -<AUni ws="en">3.3.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.123" /> -<DateModified val="2022-9-23 16:55:8.123" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to rejecting something such as an offer, invitation, or request.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Reject</AUni> -</Name> -<Questions> -<objsur guid="97acd5d3-b720-4cac-a002-789172c1424a" t="o" /> -<objsur guid="221edb0f-99a2-495f-800d-28135fe358ce" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="612456d7-00c0-418c-b5c6-9728dbf549d0" ownerguid="6bfb7813-3a7d-47e2-88e1-d54034c07e5d"> -<ExampleWords> -<AUni ws="en">adviser, counselor, consultant, guru, mentor, coach</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to someone who gives advice?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="61265b8f-e6b4-4bd8-a985-d963f303f478" ownerguid="b93bdfa4-486c-44a0-8266-557ccdc78b31"> -<ExampleWords> -<AUni ws="en">embers, coals, live coals</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to wood after it has been burning?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="61274b35-6a9f-4a70-b385-36d783abf631"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wara</AUni> -<AUni ws="qvm-x-acl">wara</AUni> -<AUni ws="qvm-x-akh">wara</AUni> -<AUni ws="qvm-x-akl">wara</AUni> -<AUni ws="qvm-x-ame">wara</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wara.n</AUni> -<AUni ws="qvm-x-acl">*wara.n</AUni> -<AUni ws="qvm-x-akh">*wara.n</AUni> -<AUni ws="qvm-x-akl">*wara.n</AUni> -<AUni ws="qvm-x-ame">*wara.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.526" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c067559d-746e-41df-a6e0-5fbfb7155136" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wara.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7af9732c-a7fb-4a39-8f78-ca558272fafd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="28b9dcd1-b65a-44d2-91cd-c28d1d839019" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wara.n 
\entryTyp root 
\gENG tomorrow 
\gSPN mañana 
\e *wara.n 
\c N0 
\ach wara 
\akh wara 
\acl wara 
\akl wara 
\ame wara 
\mcc *wara.n / ~_ 3P.V (TOP) 
\mcc *wara.n / ~_ 3P.V JUST 3P 
\mcc *wara.n / ~_ DIST1 
\mcc *wara.n / ~_ HUMAN</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="61275bd1-6c74-48b6-aafd-254046288bd1"> -<Analyses> -<objsur guid="6ccb8155-1954-4380-8bec-ca5e56533210" t="o" /> -</Analyses> -<Checksum val="1716939154" /> -<Form> -<AUni ws="qvm-x-akh">quëdarqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="6127ac0e-0b9e-4780-9578-7762dd91335b" ownerguid="a9e26764-f8ec-4ca0-b89a-fdac5433a53d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="f8b2243d-7c76-4913-b686-5ab043031d0a" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">crazy</AUni> -<AUni ws="es">loco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="648fd45b-d648-415a-8048-dee1edb8cbfe" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6127b7ea-fbb9-4023-9199-248bb080103a" ownerguid="c8602dc5-5c91-480a-b5ce-1c82fe3da83a"> -<ExampleWords> -<AUni ws="en">dental</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something to do with the teeth?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="61310595-90e0-4e8e-84d1-c6f39b1a65ab" ownerguid="0431f1b3-286b-4786-94f5-a19c2cd86c17"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="9122fb34-71f4-40cb-8fed-3741c5fade90" t="o" /> -<objsur guid="0662c9a0-1e3d-443d-8dd0-c596f5bc8764" t="o" /> -<objsur guid="2be74f1d-905b-4203-a953-587c7c1c0886" t="o" /> -<objsur guid="50e344e6-7e2e-4886-a558-b1e33a14ae94" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="6131b593-0afa-4ecc-8199-959af7e12533" ownerguid="e6e548c7-8e3f-46b1-846c-e75c9314e75b"> -<Form> -<AUni ws="qvm-x-ach">atsqui</AUni> -<AUni ws="qvm-x-acl">atsqui; atsque</AUni> -<AUni ws="qvm-x-akh">atski</AUni> -<AUni ws="qvm-x-akl">atski; atske</AUni> -<AUni ws="qvm-x-ame">atski</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="6132b2cc-aae1-4494-ad69-c79397c54cf1" ownerguid="bd1bfdc8-a558-4b0b-af9f-c778dbdd32ad"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="80cb5a61-b9dc-4480-9b5a-5432e866e23c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="61369051-342b-4bb7-826a-9a51e0c31b7c" ownerguid="435b142e-1904-4c51-ac7d-1d186a668d80"> -<Form> -<AUni ws="qvm-x-ach">imana; imanä</AUni> -<AUni ws="qvm-x-acl">imana; imanä</AUni> -<AUni ws="qvm-x-akh">imana; imanä</AUni> -<AUni ws="qvm-x-akl">imana; imanä</AUni> -<AUni ws="qvm-x-ame">imana; imanä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="6137239a-b469-46be-b7cb-b9ac22fcc195" ownerguid="f4491f9b-3c5e-42ab-afc0-f22e19d0fff5"> -<Abbreviation> -<AUni ws="en">3.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.184" /> -<DateModified val="2022-9-23 16:55:8.184" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to teaching.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33Q Teach</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Teach</AUni> -</Name> -<Questions> -<objsur guid="3c07497e-cd3c-4ae5-a267-e3a66d2fad9a" t="o" /> -<objsur guid="795e5dd4-03b5-482f-9261-6f10f3bb4498" t="o" /> -<objsur guid="d7286faa-6473-4a57-b661-1e89f467c449" t="o" /> -<objsur guid="5d6b7ed4-edbf-4d64-8c1f-1872098d7567" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="4093bfe8-54b3-4ffc-bfe3-3999279840b5" t="o" /> -<objsur guid="3fdba5e5-eb24-4b2f-a6fc-d1ed7397c39c" t="o" /> -<objsur guid="1fa683b9-78fd-4feb-9978-55d5953f38ec" t="o" /> -<objsur guid="e4bacc52-dcaa-4e68-b736-f0b5d9aeca41" t="o" /> -<objsur guid="87dd09b8-689c-4a56-b3f6-846a849f71b8" t="o" /> -<objsur guid="1886ffc9-0a18-41ea-b2f6-c17c297f1681" t="o" /> -<objsur guid="1688280e-27c4-47a8-87b7-8fe31b174ab8" t="o" /> -<objsur guid="51d4e258-430c-4032-94e3-ee53095e7045" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="6138ad05-ade2-4f3f-974c-d504be841a5e" ownerguid="ee068077-bfcc-4b91-a7c0-9e3ef24dee13"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="61395a4b-0c96-4bb5-8184-329e5847b566" ownerguid="b2fa4109-1165-4c1f-9613-c5b2d349d2d4"> -<ExampleWords> -<AUni ws="en">speak a lot, talkative, loquacious, verbose</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to speaking a lot?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6139e60c-acce-41d3-9f2f-f0a40bca0a87" ownerguid="37e6c8b5-f63c-4f5b-8c16-eccd727d6618"> -<ExampleWords> -<AUni ws="en">fight, fight against, put up a fight, combat, wage war on, campaign, launch a campaign</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to fighting against something bad?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="613e8b36-988d-4010-bfc1-de5baba10dfc" ownerguid="6bfc7703-3351-4580-919f-5da95152633d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoInflAffMsa" guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" ownerguid="bbff1d40-e754-42d6-ad25-68f2993e137d"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="0eb1d65f-6889-40e2-a5ee-818feedf259c" t="r" /> -</Slots> -</rt> -<rt class="MoStemMsa" guid="61409d86-0843-40fa-a5a8-59181f0b9c31" ownerguid="d90c0174-8858-4304-90ed-b0719171d998"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="614238b2-ef00-4df7-b48b-c7d7003d4a4b" ownerguid="c6e504fb-bb7a-4cdc-8745-095bb37e092f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="61428152-2650-42e8-ba92-b0db22813997" ownerguid="fb872b7f-a80c-4475-96d0-c031d4237846"> -<Form> -<AUni ws="qvm-x-ach">cuma</AUni> -<AUni ws="qvm-x-acl">cuma</AUni> -<AUni ws="qvm-x-akh">kuma</AUni> -<AUni ws="qvm-x-akl">kuma</AUni> -<AUni ws="qvm-x-ame">kuma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="6142c173-161a-47d5-bdec-c827518fd67c" ownerguid="60dc7cf6-0a41-4cd3-99a6-0b7a71488e7e"> -<Abbreviation> -<AUni ws="en">3.4.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.141" /> -<DateModified val="2022-9-23 16:55:8.141" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling sad--to feel bad because something bad has happened (such as losing something, hearing bad news, or watching something bad happening).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25W Sorrow, Regret; 25X Discouragement</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Sad</AUni> -</Name> -<Questions> -<objsur guid="4d80b0df-c472-4a3f-ae26-5bffef5413ec" t="o" /> -<objsur guid="373129a9-bf61-4459-8795-97673291e5da" t="o" /> -<objsur guid="0ab4d337-de32-4b4f-a8ad-517140f1495d" t="o" /> -<objsur guid="6848b557-8304-42ba-b416-0b81dfa0b06c" t="o" /> -<objsur guid="5bf91b5c-602e-429d-bb41-20d6ff35489a" t="o" /> -<objsur guid="4dea034b-be1f-4540-82d1-271cbbd5b908" t="o" /> -<objsur guid="0cefff90-6419-435c-b0da-e70b58589e6f" t="o" /> -<objsur guid="5621eeb8-e0e6-45b4-aa06-5d5bf56cec9a" t="o" /> -<objsur guid="e4a36f53-8f3a-48d9-b0c2-deb2eb67f00b" t="o" /> -<objsur guid="585c77bb-b50f-46d0-a941-94508398c0ec" t="o" /> -<objsur guid="21269478-1012-469e-be33-72ac3f6703ee" t="o" /> -<objsur guid="213434a0-a01a-49df-9f76-bb1f7bd7ff27" t="o" /> -<objsur guid="92bcfa15-b85d-4b32-b367-42a90b5c1032" t="o" /> -<objsur guid="6b760d84-5661-465f-8873-fbcb3970ad57" t="o" /> -<objsur guid="d028f101-246a-4c77-affc-8450c3ece571" t="o" /> -<objsur guid="63fb400e-750b-470a-b6d5-33cdd0969040" t="o" /> -<objsur guid="1560370f-7090-4cbb-aa40-f277504d59af" t="o" /> -<objsur guid="4c22f9ed-8639-4c41-b8a9-17130a724cf9" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="f2d0f288-5bbe-4fa0-9e8f-ddcc74891701" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="82ecb5b3-9128-4b38-b9c5-612857417ceb" t="o" /> -<objsur guid="97393c87-07e2-4633-88f9-c8bf4d9b935c" t="o" /> -<objsur guid="8d5c28b8-91be-40b0-b6c2-4d5adbb495a3" t="o" /> -<objsur guid="2e30f02d-d1e6-489c-a1fb-8b9fb6ecd819" t="o" /> -<objsur guid="39611e8d-cc67-4c84-977c-094c5cbe9dbc" t="o" /> -<objsur guid="bfe8902a-32a7-4092-93b2-9dcf3dce205f" t="o" /> -<objsur guid="67d10a00-fda8-4a3a-becd-f3ae3b00fcca" t="o" /> -<objsur guid="262fc4ae-7735-465b-934b-2125d95de147" t="o" /> -<objsur guid="f3654a7f-d16e-4870-9ef0-4b4268faeffb" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="614cd0e5-7955-408d-95b2-319dadb5910e" ownerguid="f3bd3a06-b6ff-4683-aca7-140038927e22"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="31c103f8-ada7-4eab-9995-b790e53da76a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="614cdcda-2683-4984-86f9-2c297a3110fd" ownerguid="dff03b86-9d10-486f-a7b0-b56d5a31840a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="614d7a90-efa9-4a9b-b44f-828915b4b9fe" ownerguid="ba506c00-02c6-4f6a-8222-135a37c52c53"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="614e69ab-43fe-4d96-b876-c365ff391a56" ownerguid="64e3d6b1-1d61-454c-97ab-e1d7cb0a8917"> -<ExampleWords> -<AUni ws="en">nerves, nervousness, tension, unease, stage fright</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of being nervous?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="61503384-736a-4a11-9719-0aaa4775c7ff" ownerguid="a36b3354-8598-4228-b779-c7c922b1e61d"> -<ExampleWords> -<AUni ws="en">smuggle, smuggling</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to smuggling?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="61513a9e-6592-4262-9646-78564302e4e8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">asi</AUni> -<AUni ws="qvm-x-acl">asi; ase</AUni> -<AUni ws="qvm-x-akh">asi</AUni> -<AUni ws="qvm-x-akl">asi; ase</AUni> -<AUni ws="qvm-x-ame">asi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*asi</AUni> -<AUni ws="qvm-x-acl">*asi</AUni> -<AUni ws="qvm-x-akh">*asi</AUni> -<AUni ws="qvm-x-akl">*asi</AUni> -<AUni ws="qvm-x-ame">*asi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.850" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8e1191f8-6939-43cd-8476-38be0fddd8ac" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*asi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="73956561-d0f6-47ee-a80e-509ef3e701e4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a16efff0-44b6-4020-9b3e-4da2427756fb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *asi 
\entryTyp root 
\gENG laugh 
\gSPN reirse 
\e *asi 
\c V1 
\mp +FinalI 
\ach asi 
\akh asi 
\acl asi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ase +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl asi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ase +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame asi 
\mcc *asi / ~_ 1 JUST2.C</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6151a550-716d-48be-abc4-6433c200a91f" ownerguid="4651aef1-e18f-481e-9c3e-d9dfff4a6b51"> -<ExampleWords> -<AUni ws="en">alone, on your own, by yourself, unaccompanied, marooned, isolated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a person who is alone?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="61528d5a-ac2e-4f8b-9db8-e7b979b7fc8b" ownerguid="0fc9c27e-cf5d-49ba-b073-990cfc5ffe6b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -</rt> -<rt class="LexSense" guid="615477f6-f481-447b-9231-15437a295812" ownerguid="15589482-d0ee-4b8d-9d9e-f76da3eefaab"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c5d61444-4d53-4700-a11b-218e33449981" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">first</AUni> -<AUni ws="es">primero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6fdf6799-8293-4fa4-999e-db63f0908440" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="615674ac-8158-4089-ae70-b55472fd279b" ownerguid="18a6684f-d324-45ee-855c-44d473916b14"> -<Abbreviation> -<AUni ws="en">8.4.6.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the age of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>58K New, Old</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Age</AUni> -</Name> -<Questions> -<objsur guid="1e9ca312-b361-409f-ad1b-e652b5357749" t="o" /> -<objsur guid="9a3564ee-0690-48eb-8997-5f7d68b77e9d" t="o" /> -<objsur guid="959d5e5e-ebd8-4a36-8189-42687e90ff0f" t="o" /> -<objsur guid="d2546406-bc16-4eb4-afb9-e58e6d958e2d" t="o" /> -<objsur guid="ffc4d4b8-c2a2-4202-9b97-b57df2970f51" t="o" /> -<objsur guid="609dda39-0c71-4931-b1cb-f97d134450dd" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="9e587127-4f2c-4796-9c67-d37332b57303" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="0d38c343-9c51-47fe-a367-ffadfc92c507" t="o" /> -<objsur guid="cc6f100a-5220-4f53-801c-b1fdcc619608" t="o" /> -<objsur guid="efef45bd-26be-46f8-b85b-424be55bcdac" t="o" /> -<objsur guid="99861dcb-c6ca-4e50-a19a-efadbb10c2cf" t="o" /> -<objsur guid="31e0fde8-b3ab-47ae-b791-54309e6ed0bd" t="o" /> -<objsur guid="b015f460-faeb-4aa5-b453-9e5e9ae061fe" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="61590acf-b661-413b-9cb3-67c9092cb77e" ownerguid="fec02498-8d8f-4213-afa3-426351ee3b38"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a3d9ba1e-5cec-46d8-88f4-a39737de61d4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="6159b0fc-f2b4-488e-a8b9-f1e8e13cd5fe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">generación; generacion</AUni> -<AUni ws="qvm-x-acl">generación; generacion</AUni> -<AUni ws="qvm-x-akh">generación; generacion</AUni> -<AUni ws="qvm-x-akl">generación; generacion</AUni> -<AUni ws="qvm-x-ame">generación; generacion</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+generación</AUni> -<AUni ws="qvm-x-acl">+generación</AUni> -<AUni ws="qvm-x-akh">+generación</AUni> -<AUni ws="qvm-x-akl">+generación</AUni> -<AUni ws="qvm-x-ame">+generación</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.609" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a276adb9-3c53-45eb-ab4a-f448932945b8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+generación</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a582370d-11f2-4061-a4bb-537549f86156" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5ffb55d6-3790-4fbc-87ae-a32660fc4748" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +generación 
\entryTyp root 
\gENG generation 
\gSPN generación 
\e +generación 
\c N0 
\mp +FinalC 
\ach generación / _# 
\ach generacion / ~_# 
\akh generación / _# 
\akh generacion / ~_# 
\acl generación / _# 
\acl generacion / ~_# 
\akl generación / _# 
\akl generacion / ~_# 
\ame generación / _# 
\ame generacion / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="615b839e-fbab-4840-8681-ddf0f42674e8" ownerguid="7b340feb-3b8f-47be-98fd-66617a160dca"> -<Form> -<AUni ws="qvm-x-ach">aybësis</AUni> -<AUni ws="qvm-x-acl">aybësis</AUni> -<AUni ws="qvm-x-akh">aybësis</AUni> -<AUni ws="qvm-x-akl">aybësis</AUni> -<AUni ws="qvm-x-ame">aybësis</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="615db137-5675-41b9-9929-d262f3aca437" ownerguid="ebe57d1f-9413-4d4a-960c-8585fd7aa2d7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="615faa11-79f2-4eeb-810f-6b271c6841ab" ownerguid="295dc021-5b50-47b3-8340-1631c6d6fadc"> -<ExampleWords> -<AUni ws="en">make yourself comfortable, settle down, snuggle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making yourself comfortable?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6164c162-ab75-4dc6-9e50-1afe9efe6159" ownerguid="a73c9c31-7e39-4c84-8614-4e84257a105a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="61663d67-9c75-46ba-a455-d505be2dc0bc" ownerguid="41988a9a-f8b3-4817-aeeb-9409cce668e3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="616a4bcd-b0ea-4593-9104-ced83f2d6e51" ownerguid="1f4219f4-e1b2-410e-973c-88c97ff00be9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="616d478b-5589-43d3-8765-b756a1557870" ownerguid="05f434bb-4b67-4109-a61a-1a4d503130d2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="616f44da-a750-468c-b75b-4ea350d09615" ownerguid="673cbb74-543d-43d6-a3fc-8f6cb079080b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="61710da3-af25-4048-ba14-9c2e61c709ca" ownerguid="bba30b56-6cd8-4542-81ab-f983cf1354bd"> -<ExampleWords> -<AUni ws="en">not go near, not come near, stay away from, keep away from, keep your distance, keep off, stay back, keep back, remain at a distance, stand off, stand aloof, steer clear of, stand clear of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to staying far from something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6172331f-a6de-481a-bcfb-2e2f74756566" ownerguid="7648040b-0aa5-4d9a-8f13-ffd066b81602"> -<ExampleWords> -<AUni ws="en">inch, foot, yard, mile, light year, millimeter, centimeter, meter, kilometer, day's journey</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to a unit of length?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="617722f0-0cf0-44d4-81da-670300cc3fcf" ownerguid="01441207-4935-49a5-a192-16d949f5606c"> -<ExampleWords> -<AUni ws="en">prize, cup, trophy, wreath, flowers, medal, gold medal, silver medal, bronze medal, blue ribbon, prize money, champion's belt, applause, cheers, plaudits, kudos, fame</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What awards are given to the winner?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="61772429-f8aa-474e-b80a-e34ecfdbbe6d" ownerguid="a9befe97-e7a8-4ceb-ba86-54cccacd9322"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lawyer</AUni> -<AUni ws="es">abogado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="87a14096-4aab-4c54-bd02-2f1b124ecf31" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6177e09f-8ed8-40eb-9f98-8d73b9044ea8" ownerguid="31171aa9-e243-4b46-abd8-f3e52843cdfc"> -<ExampleWords> -<AUni ws="en">marsupial</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to marsupials?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="617a0b5d-8be3-4fcd-a564-97a4b334879c" ownerguid="231907bb-fc6c-4d03-8aa4-eb3621e3230d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8afc9345-9132-4c4e-b021-eabf4717551a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="617b45b3-557d-4957-927a-08baf8a73d9f" ownerguid="97393a8a-b288-4380-8644-4a6530a874df"> -<Form> -<AUni ws="qvm-x-ach">celösu</AUni> -<AUni ws="qvm-x-acl">celösu; celösu; celöso</AUni> -<AUni ws="qvm-x-akh">celösu</AUni> -<AUni ws="qvm-x-akl">celösu; celösu; celöso</AUni> -<AUni ws="qvm-x-ame">celösu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="617b8afc-5bfd-4869-bdb7-f2f1d95df120" ownerguid="7ba76f5b-8f11-4043-915b-4b6c0e5c71d4"> -<Form> -<AUni ws="qvm-x-ach">restar</AUni> -<AUni ws="qvm-x-acl">restar</AUni> -<AUni ws="qvm-x-akh">restar</AUni> -<AUni ws="qvm-x-akl">restar</AUni> -<AUni ws="qvm-x-ame">restar</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="617e0162-e5ed-460d-b10c-9e5f1de893e7" ownerguid="8ce18f73-b325-4cde-8552-331be1335db4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="61806326-4c9b-4efc-a5b9-04550338496f" ownerguid="b4e6c077-4f5e-44f3-8868-1f7ae3486585"> -<ExampleWords> -<AUni ws="en">cup, glass, mug, goblet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a dish for drinking?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6181150d-2495-414f-aeb5-04f3bc434667" ownerguid="9efa7949-de15-499a-b382-4560e06c4fb4"> -<ExampleWords> -<AUni ws="en">say, speak, talk, tell, state, express, declare, proclaim, inform, pronounce, remark on, make a remark</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to saying something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6182d682-fe52-4dc1-9302-daaf309dad4a" ownerguid="3917729f-c2d7-4835-a6f1-23a15428eec8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="61860f78-dc7b-465b-b9ce-c60aaeb0371b" ownerguid="be981b60-ba21-4631-9bea-4e049ffd11d0"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="61869b58-18e4-4de4-b56c-04647bae356e" ownerguid="a730d0b4-b6db-45ac-bf6e-cefc96ae3fbb"> -<ExampleWords> -<AUni ws="en">deceit, deception, fraud, delusion, cunning, illusion, treachery</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the act of deceiving someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6187b260-8763-4b5f-9302-40b868944a0a" ownerguid="75dd6637-1564-4de8-889c-7f3e3e371ec2"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="6187e620-89bd-4b9d-9896-0c0c788e7740" ownerguid="01441207-4935-49a5-a192-16d949f5606c"> -<Abbreviation> -<AUni ws="en">4.2.6.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.217" /> -<DateModified val="2022-9-23 16:55:8.217" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a particular sport. The example words are from the sport of football (also called soccer). If you do not play football in your culture, you can rename this domain and use it for one of your sports. Add other domains for each of your sports.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Football, soccer</AUni> -</Name> -<Questions> -<objsur guid="87359a0c-bb3a-4069-aaed-e36db05fe7c8" t="o" /> -<objsur guid="0eeed4b0-bd2b-4aa1-8e1d-450ab9d18cd6" t="o" /> -<objsur guid="bb00cc4b-d7a3-4ab3-976c-5926f3104582" t="o" /> -<objsur guid="41cdc887-575e-4ad9-901d-cb2cb6a732a5" t="o" /> -<objsur guid="aed5be9a-225d-4792-a26e-09093c0a25d0" t="o" /> -<objsur guid="122e6f09-3673-44d7-ae10-7576507be9d2" t="o" /> -<objsur guid="cc3abc11-759c-43db-9ec3-905a4029aa57" t="o" /> -<objsur guid="1fd92017-3e7a-4a27-8064-874824cc87f5" t="o" /> -<objsur guid="2914a0e9-5df7-4a8e-b9ec-fc7730832155" t="o" /> -<objsur guid="1847fbb3-5fcc-43d8-9a99-1d1728968495" t="o" /> -<objsur guid="afdbf731-1307-48a3-95ca-31f854d1535a" t="o" /> -<objsur guid="cdd13cc5-881b-46cd-984e-d5ac7c331410" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="61881ac6-bcee-4636-be06-1a177558ab6c" ownerguid="d926ebb0-3765-43a5-a6b1-8780b146bc09"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">?</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="92b1f045-a587-4ad6-904e-ae981acf3394" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="61883dbf-387d-448d-9409-fafe751b804b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">que:da</AUni> -<AUni ws="qvm-x-acl">que:da</AUni> -<AUni ws="qvm-x-akh">que:da</AUni> -<AUni ws="qvm-x-akl">que:da</AUni> -<AUni ws="qvm-x-ame">que:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+quedar</AUni> -<AUni ws="qvm-x-acl">+quedar</AUni> -<AUni ws="qvm-x-akh">+quedar</AUni> -<AUni ws="qvm-x-akl">+quedar</AUni> -<AUni ws="qvm-x-ame">+quedar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.829" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="17c57722-51eb-46fd-a656-150f8e0ec5e0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+quedar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="93198438-9065-40e1-9b1f-6c2bc8602343" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3530feba-d30e-43cb-9e35-7bea1ee85085" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +quedar 
\entryTyp root 
\gENG stay 
\gSPN quedar 
\e +quedar 
\c V1 
\ach que:da 
\akh que:da 
\acl que:da 
\akl que:da 
\ame que:da</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="618a6618-63eb-4cb3-a606-f6d4b5b16912" ownerguid="773e0590-9933-401b-af8e-31c74f4e9de0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="1c3ede01-b943-43a8-a321-5d76e4940492" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="539e7cc5-547f-4939-8298-0e7fc093a3b5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="618aaa23-2c91-4ffb-9d7e-7ccb2ee6ead7" ownerguid="6eb1cb04-4be5-48bc-b2a1-ec90fd81a464"> -<Form> -<AUni ws="qvm-x-ach">pätu</AUni> -<AUni ws="qvm-x-acl">pätu; pätu; päto</AUni> -<AUni ws="qvm-x-akh">pätu</AUni> -<AUni ws="qvm-x-akl">pätu; pätu; päto</AUni> -<AUni ws="qvm-x-ame">pätu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="618babbb-f9de-47be-a4f8-c4afa3032304" ownerguid="685d474d-3b84-4339-98c6-2aac28b9870c"> -<ExampleWords> -<AUni ws="en">clear a field, burn grass, slash and burn, uproot weeds, cut the grass</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to clearing a field?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="618fcea2-5859-40ed-90c8-97444250e1e9" ownerguid="d8c8bf11-5058-4acf-a336-39141311488e"> -<Form> -<AUni ws="qvm-x-ach">canan</AUni> -<AUni ws="qvm-x-acl">canan</AUni> -<AUni ws="qvm-x-akh">kanan</AUni> -<AUni ws="qvm-x-akl">kanan</AUni> -<AUni ws="qvm-x-ame">kanan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="61948ca3-8e7f-427d-add7-3b9475d3979d" ownerguid="fb2de51f-da06-435c-8dcf-320f193f47bc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 BN/BN</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">GOAL</AUni> -<AUni ws="es">META</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="afad3961-fbf7-495d-bda7-b2ceaf12bba1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="61973f90-2658-4a6a-9bc3-56501d7e9688" ownerguid="72274e9d-5d3c-4ae7-93ab-db3617cdda1e"> -<ExampleWords> -<AUni ws="en">feeling, sense of touch, sense of feeling</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the ability to feel?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6198b228-3ad2-4749-912a-ac147241398f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">herra:ji; herra:ji</AUni> -<AUni ws="qvm-x-acl">herra:ji; herra:ji; herra:je</AUni> -<AUni ws="qvm-x-akh">herra:ji; herra:ji</AUni> -<AUni ws="qvm-x-akl">herra:ji; herra:ji; herra:je</AUni> -<AUni ws="qvm-x-ame">herra:ji; herra:ji</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+herraje</AUni> -<AUni ws="qvm-x-acl">+herraje</AUni> -<AUni ws="qvm-x-akh">+herraje</AUni> -<AUni ws="qvm-x-akl">+herraje</AUni> -<AUni ws="qvm-x-ame">+herraje</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.710" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0d24c20f-9f94-4150-965a-830c2d51d380" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+herraje</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d4c51294-891d-4511-a434-45407870ec70" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d70d4430-c39a-4875-89da-0d058d410c7a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +herraje 
\entryTyp root 
\gENG 
\gSPN 
\e +herraje 
\c N0 
\mp +FinalI 
\ach herra:ji / _# 
\ach herra:ji / ~_# 
\akh herra:ji / _# 
\akh herra:ji / ~_# 
\acl herra:ji / _# 
\acl herra:ji +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl herra:je +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl herra:ji / _# 
\akl herra:ji +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl herra:je +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame herra:ji / _# 
\ame herra:ji / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="61a14b92-7c6c-4337-a573-6653df85525d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">trotila</AUni> -<AUni ws="qvm-x-acl">trotila</AUni> -<AUni ws="qvm-x-akh">trotila</AUni> -<AUni ws="qvm-x-akl">trotila</AUni> -<AUni ws="qvm-x-ame">trotila</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+trotila</AUni> -<AUni ws="qvm-x-acl">+trotila</AUni> -<AUni ws="qvm-x-akh">+trotila</AUni> -<AUni ws="qvm-x-akl">+trotila</AUni> -<AUni ws="qvm-x-ame">+trotila</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.157" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f453102d-3166-49ff-bba1-9bab8162724d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+trotila</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1a500494-d420-452b-9798-9336b1649f97" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2b79e5b4-d75a-4df2-bce7-6fb18a56b115" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +trotila 
\entryTyp root 
\gENG quickly 
\gSPN rápido 
\e +trotila 
\c R0 
\ach trotila 
\akh trotila 
\acl trotila 
\akl trotila 
\ame trotila</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="61a28bdc-c05c-49d8-b47e-d54a9082156c" ownerguid="349f0278-7998-422a-9c3b-6053989cbb20"> -<Abbreviation> -<AUni ws="en">9.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this section for verbal auxiliaries, affixes, adverbs, and particles that modify verbs.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Semantic constituents related to verbs</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="793993ac-20c1-49f0-9716-e4cdc7da4439" t="o" /> -<objsur guid="7bf05f4e-909f-40ca-b742-9be21eba9fbb" t="o" /> -<objsur guid="c3ddfc77-e3a6-450e-a853-111f5595df87" t="o" /> -<objsur guid="3ea4c495-b837-4310-8741-38d89fa63e0b" t="o" /> -<objsur guid="04752883-aa3e-42a2-bd42-454e9cd99b11" t="o" /> -<objsur guid="a03663ca-0c66-4570-be2d-b40105cc4400" t="o" /> -<objsur guid="1de2cef5-3a2d-45c1-8cb6-06b2ac087907" t="o" /> -<objsur guid="fa8e72a0-1bfe-4b49-a287-293b44213960" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="61a2984f-5d34-4408-a9d5-ef64b16f271a" ownerguid="a703376d-780e-4b30-b993-836a22b7ffd3"> -<Form> -<AUni ws="qvm-x-ach">bestia</AUni> -<AUni ws="qvm-x-acl">bestia</AUni> -<AUni ws="qvm-x-akh">bestia</AUni> -<AUni ws="qvm-x-akl">bestia</AUni> -<AUni ws="qvm-x-ame">bestia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="61a2b5e8-d608-4c90-959f-efe6bf381883" ownerguid="7bf76855-b806-4912-bf0e-beaa90d4c25d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="6d0932a1-6850-4143-8157-507a9fed7132" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="61a2ca04-41b7-4df3-8dbd-a60c76202560" ownerguid="4b3a9b5a-df7d-4ec2-9576-2c07fe396021"> -<ExampleWords> -<AUni ws="en">dance step, swing, lead, follow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the parts of a dance?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="61a2d8b4-3bcc-4dab-a438-22931fb4a21e" ownerguid="2b8329ee-2a8c-4f1d-84a3-e58a079d2a91"> -<Form> -<AUni ws="qvm-x-ach">pitsu</AUni> -<AUni ws="qvm-x-acl">pitsu; pitsu; pitso</AUni> -<AUni ws="qvm-x-akh">pitsu</AUni> -<AUni ws="qvm-x-akl">pitsu; pitsu; pitso</AUni> -<AUni ws="qvm-x-ame">pitsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="61a448ee-180c-4e5e-99eb-2c63563d6133" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<ExampleWords> -<AUni ws="en">speed walk, step out, stride, pace, rush</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to walking quickly?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="61ab52b2-1059-4d92-b934-4bab2a6ef431" ownerguid="9a7604b4-d42f-44b7-9aef-47847dc93f0b"> -<ExampleWords> -<AUni ws="en">suffer, ache for someone, be afflicted with, agonize, endure, feel horrible, have a hard time, be hurting, be in pain, feel pain, feel rotten, undergo, go through, put up with, be subjected to, be in the grip of, be in the throes of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to suffering?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="61b0fe54-cf02-443a-8832-66ac44630b1d" ownerguid="937ba972-655c-4d39-89f1-753d055c035f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="61b2f2c1-a659-4a7d-a616-e5f9dc207afb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rabya</AUni> -<AUni ws="qvm-x-acl">rabya</AUni> -<AUni ws="qvm-x-akh">rabya</AUni> -<AUni ws="qvm-x-akl">rabya</AUni> -<AUni ws="qvm-x-ame">rabya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rabiar.1</AUni> -<AUni ws="qvm-x-acl">+rabiar.1</AUni> -<AUni ws="qvm-x-akh">+rabiar.1</AUni> -<AUni ws="qvm-x-akl">+rabiar.1</AUni> -<AUni ws="qvm-x-ame">+rabiar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.226" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cdf60915-e904-4710-9541-9fb5d748e2b0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rabiar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="793aeb9e-e56f-4f3d-a92e-db13cd34c9cb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="690e1dff-cbc4-496b-8c66-604f5440ad97" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rabiar.1 
\entryTyp root 
\gENG be.angry 
\gSPN enojar 
\e +rabiar.1 
\c V1 
\mp +assimilated 
\ach rabya 
\akh rabya 
\acl rabya 
\akl rabya 
\ame rabya 
\mcc +rabiar.1 / ~_ NMN ADV5</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="61b33cf4-d32b-4d55-aa97-b4d4bd68e25b"> -<Analyses> -<objsur guid="ec8f85f7-0c45-4350-a18d-4b595462fea3" t="o" /> -</Analyses> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">final</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoAffixAllomorph" guid="61b43ee7-b8a0-4057-918f-92d19160ec57" ownerguid="cb655848-c91a-4585-af91-478eb961e0ab"> -<Form> -<AUni ws="qvm-x-ach">chi</AUni> -<AUni ws="qvm-x-acl">chi</AUni> -<AUni ws="qvm-x-akh">chi</AUni> -<AUni ws="qvm-x-akl">chi</AUni> -<AUni ws="qvm-x-ame">chi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="61b62a87-96d8-415d-93b1-89098168889b" ownerguid="1b0270a5-babf-4151-99f5-279ba5a4b044"> -<ExampleWords> -<AUni ws="en">physical, physically, bodily</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something about your body?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="61b7ac13-2ef2-47fa-8392-3b826dc55791" ownerguid="7fed6281-326a-4a15-8cbf-dc574594da19"> -<ExampleWords> -<AUni ws="en">concert hall, opera house, music hall, auditorium, band stand, choir loft, orchestra pit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) Where is music played?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="61b8fd64-181e-40cf-a05d-e35f36392b40" ownerguid="e7caa24f-155d-47cd-946d-cc0d06dfc764"> -<ExampleWords> -<AUni ws="en">loving, affectionate, caring, compassionate, concerned, devoted, doting, fond, solicitous, sympathetic, tender, tender-hearted, warm, warmhearted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe someone who loves?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="61ba776d-06d1-4fc4-a17e-17aab135673a" ownerguid="aa995098-cd36-4b13-a40b-e4334297bc30"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoAffixAllomorph" guid="61bc4256-d871-45bf-bb37-db728c224ea1" ownerguid="64f835b8-4528-4f5b-845b-113fc3c255fe"> -<Form> -<AUni ws="qvm-x-ach">̈da</AUni> -<AUni ws="qvm-x-acl">̈da</AUni> -<AUni ws="qvm-x-akh">̈da</AUni> -<AUni ws="qvm-x-akl">̈da</AUni> -<AUni ws="qvm-x-ame">̈da</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="61c8829c-027a-422d-857a-a656684a8a1b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">señor</AUni> -<AUni ws="qvm-x-acl">señor</AUni> -<AUni ws="qvm-x-akh">señor</AUni> -<AUni ws="qvm-x-akl">señor</AUni> -<AUni ws="qvm-x-ame">señor</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+señor</AUni> -<AUni ws="qvm-x-acl">+señor</AUni> -<AUni ws="qvm-x-akh">+señor</AUni> -<AUni ws="qvm-x-akl">+señor</AUni> -<AUni ws="qvm-x-ame">+señor</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.500" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dcac899f-8ba4-45c2-8edf-58f7bb09f26d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+señor</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bee93917-a0f7-4d9e-9b30-a6a8623b297a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a37c69fe-cd2f-4ecd-9fbc-effdc8177033" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +señor 
\entryTyp root 
\gENG mister 
\gSPN señor 
\e +señor 
\c N0 
\mp +FinalC 
\ach señor 
\akh señor 
\acl señor 
\akl señor 
\ame señor</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="61c9bea2-02e5-4e54-a28f-3abd85ea4199" ownerguid="b015f460-faeb-4aa5-b453-9e5e9ae061fe"> -<ExampleWords> -<AUni ws="en">old fashioned, be behind the times, be living in the past, reactionary, straitlaced</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe someone who is old fashioned in the way they think or act?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="61cb6bcd-2767-4c9c-88b9-559308894147"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">geulanchu</AUni> -<AUni ws="qvm-x-acl">geulanchu; geulanchu; geulancho</AUni> -<AUni ws="qvm-x-akh">qewlanchu</AUni> -<AUni ws="qvm-x-akl">qewlanchu; qewlanchu; qewlancho</AUni> -<AUni ws="qvm-x-ame">qiwlanchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qiwllantru</AUni> -<AUni ws="qvm-x-acl">*qiwllantru</AUni> -<AUni ws="qvm-x-akh">*qiwllantru</AUni> -<AUni ws="qvm-x-akl">*qiwllantru</AUni> -<AUni ws="qvm-x-ame">*qiwllantru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.226" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9ab6efa1-321c-44c9-a0d2-8808cdc9b43f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qiwllantru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3ca847fe-b27b-4f52-a0a5-f7ed5c193ad1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1e994044-d580-4b55-a720-5c20fc2d96e5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qiwllantru 
\entryTyp root 
\gENG 
\gSPN gaviota 
\e *qiwllantru 
\c N0 
\ach geulanchu 
\akh qewlanchu 
\acl geulanchu / _# 
\acl geulanchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl geulancho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qewlanchu / _# 
\akl qewlanchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qewlancho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qiwlanchu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="61d04dea-8398-43a7-8ed9-3a6a82873e4f" ownerguid="60e37b10-d62f-481a-8bb8-b681e25921ac"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0 V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">plowshare</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="62e0794b-2b06-439a-aceb-be25be50e02e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="61d085e6-2092-4d86-88b4-45f4e4579a4d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">soco:rru</AUni> -<AUni ws="qvm-x-acl">soco:rru; soco:rru; soco:rro</AUni> -<AUni ws="qvm-x-akh">soco:rru</AUni> -<AUni ws="qvm-x-akl">soco:rru; soco:rru; soco:rro</AUni> -<AUni ws="qvm-x-ame">soco:rru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+socorro</AUni> -<AUni ws="qvm-x-acl">+socorro</AUni> -<AUni ws="qvm-x-akh">+socorro</AUni> -<AUni ws="qvm-x-akl">+socorro</AUni> -<AUni ws="qvm-x-ame">+socorro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.721" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6db03d73-47d0-4cac-8937-5391f83e804e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+socorro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b030d483-fee1-4e48-9f90-8096165b7c1f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b551fe30-773e-457d-aca6-afca2d89daec" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +socorro 
\entryTyp root 
\gENG food 
\gSPN comida 
\e +socorro 
\c N0 
\ach soco:rru 
\akh soco:rru 
\acl soco:rru / _# 
\acl soco:rru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl soco:rro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl soco:rru / _# 
\akl soco:rru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl soco:rro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame soco:rru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="61d730c8-f938-47aa-9a48-f336a30669b9" ownerguid="35faefb3-7498-4735-9b05-e7035dd368fc"> -<ExampleWords> -<AUni ws="en">famine, lean times</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What results from crop failure?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="61d79e78-d77a-48dd-b16a-d4e3bf7e2a54" ownerguid="b93bdfa4-486c-44a0-8266-557ccdc78b31"> -<ExampleWords> -<AUni ws="en">smoke, smoky, blue with smoke, haze, smog</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to smoke?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="61d7d84a-d3b9-41db-b24a-24295c3a4efb" ownerguid="fba27833-d6f1-4c36-ac39-28902b29261b"> -<ExampleWords> -<AUni ws="en">look like, resemble, the image of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to something looking like another thing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="61db294b-8df6-42d3-a9ee-c95fd07d65ea" ownerguid="82a4ae36-8e70-4c0d-8144-ad9fc3c0e04f"> -<ExampleWords> -<AUni ws="en">level (adj), even (adj), flat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a surface that is level?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="61def36b-be4d-4412-b46a-8b1e79cdaa2d" ownerguid="0d38c343-9c51-47fe-a367-ffadfc92c507"> -<ExampleWords> -<AUni ws="en">young, little, small</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a person or animal that is young?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="61e1aa5e-8f76-4297-aa70-e4ba196abeeb" ownerguid="e27adda9-0761-4b7f-abbf-24938ce1c01a"> -<ExampleWords> -<AUni ws="en">act, enact, reenact, go on stage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to acting in a drama?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="61e2cce7-cb48-42b5-b517-ea145842b097" ownerguid="1b73b2bf-9582-4f8a-822a-e0d020272c7c"> -<ExampleWords> -<AUni ws="en">catch up with, overtake</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to reaching someone that you are following?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="61e65ced-0550-4548-88df-58aba16e290f" ownerguid="85646774-8145-4553-b8a7-6927cd077908"> -<ExampleWords> -<AUni ws="en">alpha male</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the leader of a group of animals?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="61e96a54-58c2-4482-b73b-7f6150beb888" ownerguid="a01a1900-fc1f-462e-ba3d-ae822711b034"> -<ExampleWords> -<AUni ws="en">sane, sanity, of sound mind</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to someone who is normal and not mentally ill?</AUni> -</Question> -</rt> -<rt class="Segment" guid="61eaaf25-626a-415b-8f03-e51c9c1e7734" ownerguid="e3c46986-6476-4ac9-ac5b-d64afde389cd"> -<Analyses> -<objsur guid="981d8935-6612-4c78-b11e-7d39ad4ea75a" t="r" /> -<objsur guid="2e1ac83f-3ca6-46a4-a5af-ee776c9b7cf5" t="r" /> -<objsur guid="52a7b4cb-3ebe-4c1f-8e5c-4d86e1d7d10b" t="r" /> -<objsur guid="9eb0947d-f902-460a-b8e0-30857e7bb37a" t="r" /> -<objsur guid="5b9e7504-0b50-4041-b4f2-c46c0f9fd854" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="CmDomainQ" guid="61eba015-38b1-4d8b-b91e-b38d944a8225" ownerguid="b8e66bb4-140c-45b4-89ce-d9a77b9e5d21"> -<ExampleWords> -<AUni ws="en">Westminster, Chelsea</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the names of districts within a city?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="61ed7a77-8eae-45bf-b254-e5a1c3bf6a7b" ownerguid="e0a98173-161f-4736-9c4d-6cd40ae12f05"> -<Form> -<AUni ws="qvm-x-ach">patgo; patgü</AUni> -<AUni ws="qvm-x-acl">patgo; patgö</AUni> -<AUni ws="qvm-x-akh">patqo; patqü</AUni> -<AUni ws="qvm-x-akl">patqo; patqö</AUni> -<AUni ws="qvm-x-ame">patqu; patqü</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="61f13725-dc84-4bd0-9661-786219e744e9" ownerguid="e67b66d7-99e5-4de4-bfc5-7cba57bb508c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">NUM 11.32 Nirkurna campamento nawpankunapa majaykur tsakitsipäkurqan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="61f23170-29be-45b3-a068-a9bb8bc6e476" ownerguid="76389945-bde0-47fc-8499-77985525bf39"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">old</AUni> -<AUni ws="es">viejo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7b8ca8f8-374a-4bcd-bc1f-c79edfd94a47" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="61f3b21f-bec7-481e-91bf-0c99b0a5fd24" ownerguid="df2ee830-0668-43d7-8a32-e2fd3e7b31d8"> -<Question> -<AUni ws="en">(11) immediate: a meaning label that may be combined with other tense labels to indicate a situation not simultaneous with the moment of speech, but very close to it.</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="61f3fcc1-7c29-4450-a8e5-562e0e9d3a94" ownerguid="7efa087f-a344-488d-83e1-40cb415b378f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="61f40376-729d-4d99-894f-06c5689a06ac" ownerguid="a3ca2a31-259e-4e15-9696-75b0c81886e9"> -<Abbreviation> -<AUni ws="en">8.3.1.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.599" /> -<DateModified val="2022-9-23 16:55:8.599" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is flat--having a surface that is even. A board or wall is flat when its surface is even and it does not bend.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Flat</AUni> -</Name> -<Questions> -<objsur guid="902c0402-6d3a-427e-9e76-0e0a098a5a62" t="o" /> -<objsur guid="debfe87c-6fbf-4663-b4b1-c9b69b20ddd4" t="o" /> -<objsur guid="1c4511fb-67f3-40e1-8018-f9c1522b34ef" t="o" /> -<objsur guid="d408cfeb-9ec5-4a44-836a-868da21dbc2a" t="o" /> -<objsur guid="47d030f8-6e67-40b8-a0a2-92d5fa24cc73" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="61f52196-a8b2-496d-96ea-8c15dc7d377a" ownerguid="7556a257-3703-40d3-91d3-c891fb250947"> -<Abbreviation> -<AUni ws="en">4.9.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.294" /> -<DateModified val="2022-9-23 16:55:8.294" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to miracles--the use of supernatural power to do something good.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>12B Supernatural Powers</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Miracle, supernatural power</AUni> -</Name> -<Questions> -<objsur guid="2b9de917-69d6-4232-ae20-d57f32c2cd3c" t="o" /> -<objsur guid="1c6cf877-fcf6-458c-93b5-4420d1d5d535" t="o" /> -<objsur guid="4bf0233e-ba0d-451b-af5c-e1fcc0181ea4" t="o" /> -<objsur guid="763868c6-d124-4370-9a83-b063e54c685a" t="o" /> -<objsur guid="54ea3f9c-42ff-45f3-883b-05f7479ffa1b" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b6e45998-9f6a-4b19-9cda-62410a11afa2" t="o" /> -<objsur guid="3ea52505-aa6c-4f28-b475-f15ac1820ec1" t="o" /> -<objsur guid="38d1a6fe-0811-4eb0-a1d8-f69b6ad978e0" t="o" /> -<objsur guid="106c2c42-36fd-4b0a-94f7-e998f6eae6f5" t="o" /> -<objsur guid="7c7f62d8-0293-45ba-8658-956c38bafc66" t="o" /> -<objsur guid="147c2e58-9ae8-460f-8cab-bf04a668945d" t="o" /> -<objsur guid="b2830b72-c642-484f-9485-24682aa11ed8" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoAffixAllomorph" guid="61f84034-baaa-4be6-a3a0-13d7eee97b8c" ownerguid="df81ebe4-6185-45f1-ae43-03a4ef6e96d5"> -<Form> -<AUni ws="qvm-x-ach">̈ni</AUni> -<AUni ws="qvm-x-acl">̈ni</AUni> -<AUni ws="qvm-x-akh">̈ni</AUni> -<AUni ws="qvm-x-akl">̈ni</AUni> -<AUni ws="qvm-x-ame">̈ni</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="61f91dd7-59d6-4816-bff3-e9930c204ebd" ownerguid="5c770098-2c91-4a9c-bfa0-a7ffaa871a7f"> -<ExampleWords> -<AUni ws="en">strike (v), go on strike, strike (n), striker</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to going on strike?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6200b8bf-10f5-4449-ac1f-1eadd2c0c5eb" ownerguid="37a8e3a9-6979-4493-bcf3-f4247c60bd1b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ordinary</AUni> -<AUni ws="es">corriente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="746202ef-5008-481b-a916-811327d547c2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="62022cdd-7f5d-44aa-901a-e9bfe6f1adb2" ownerguid="c23688e5-10a3-4cc6-b3db-a6de090f0e60"> -<Form> -<AUni ws="qvm-x-ach">tuclish</AUni> -<AUni ws="qvm-x-acl">tuclish</AUni> -<AUni ws="qvm-x-akh">tuklish</AUni> -<AUni ws="qvm-x-akl">tuklish</AUni> -<AUni ws="qvm-x-ame">tuklish</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="62028419-1ba4-49ec-a42b-98aa8f2338b9" ownerguid="95883da9-2f84-4779-b644-a6fd0a82ec93"> -<Form> -<AUni ws="qvm-x-ach">janay</AUni> -<AUni ws="qvm-x-acl">janay</AUni> -<AUni ws="qvm-x-akh">janay</AUni> -<AUni ws="qvm-x-akl">janay</AUni> -<AUni ws="qvm-x-ame">hanay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="62030451-c0f2-4e80-8085-05c6400fc914" ownerguid="d345142f-d51e-4023-a25a-2a4c0f1fbcbf"> -<Abbreviation> -<AUni ws="en">6.2.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.397" /> -<DateModified val="2022-9-23 16:55:8.397" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to plowing a field.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Plow a field</AUni> -</Name> -<Questions> -<objsur guid="dd454846-9122-45ab-b258-1b1f599abe97" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="62039c06-c2f8-4042-b30a-59c1195c732f" ownerguid="0e79435b-f5ff-4061-81ff-49557ba2aed4"> -<ExampleWords> -<AUni ws="en">get acquainted, get to know, start a relationship, develop a relationship, form an association, form a partnership</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to beginning a relationship?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6205d004-d6b0-450d-887d-b19c92b1d770" ownerguid="cb783ad9-4650-416e-bf63-88c4ca43fe6a"> -<ExampleWords> -<AUni ws="en">reputation, standing, image, name, character</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a person's reputation?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="62098d79-e663-46ea-b4f4-4cd3df401157"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chirapa</AUni> -<AUni ws="qvm-x-acl">chirapa</AUni> -<AUni ws="qvm-x-akh">chirapa</AUni> -<AUni ws="qvm-x-akl">chirapa</AUni> -<AUni ws="qvm-x-ame">chirapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chirapa</AUni> -<AUni ws="qvm-x-acl">*chirapa</AUni> -<AUni ws="qvm-x-akh">*chirapa</AUni> -<AUni ws="qvm-x-akl">*chirapa</AUni> -<AUni ws="qvm-x-ame">*chirapa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.325" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ecfe8ac4-900e-47d3-9068-bdc8c2414449" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chirapa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5fa9b0f3-ab00-4288-a736-82adf480c862" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7bd3ca0b-89a2-49ef-8b58-d0bcd16c7183" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chirapa 
\entryTyp root 
\gENG pulverized 
\gSPN pulverizado 
\e *chirapa 
\c N0 
\ach chirapa 
\akh chirapa 
\acl chirapa 
\akl chirapa 
\ame chirapa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="620bd4a3-2288-477b-8c78-5824edd7a251" ownerguid="203f46d2-f0d0-4dda-8d1a-ddc15065b005"> -<ExampleWords> -<AUni ws="en">scale, snakeskin, fang, rattle (of rattlesnake), coil, egg tooth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the parts of reptiles?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="620bf194-3802-47e4-ab03-b901e341877b" ownerguid="e99c5aba-e736-4972-9889-99ff7c3d0af2"> -<Form> -<AUni ws="qvm-x-ach">maga</AUni> -<AUni ws="qvm-x-acl">maga</AUni> -<AUni ws="qvm-x-akh">maqa</AUni> -<AUni ws="qvm-x-akl">maqa</AUni> -<AUni ws="qvm-x-ame">maqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="620cc330-284a-4ef9-9eb3-1e373caa900d" ownerguid="7b513a02-c3ae-4243-9410-16854d911258"> -<ExampleWords> -<AUni ws="en">what's his/her name, whatchamacallit, whatsit, so and so</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words are used to refer to someone when you can't remember what they are called?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="620fd8bb-817b-4ed0-9173-dd18ac299b3b" ownerguid="7c7fc1b6-3775-4881-bbe0-9d0ce50e42a9"> -<ExampleWords> -<AUni ws="en">lever, fulcrum, elevator, lift, jack, hoist, crane</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something used to lift things?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6217d38f-eb4f-44d1-aafc-2fc3f7041d34" ownerguid="ab65fb70-328e-4285-af71-5db817087dc3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">watery</AUni> -<AUni ws="es">aguanoso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dc697acc-5643-4ecd-bf3f-0ee5d3604a38" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="621aee4f-4d89-4673-9c3b-c55ee4234672" ownerguid="fffee68a-200e-453a-a5bf-318e68e52289"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="621ef4a5-ba61-48b2-8393-72b1b27b64e7" ownerguid="1913fed8-1f71-4689-a3e9-74482e6c1b46"> -<Category> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</Category> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="6c117287-8b8a-47d1-814c-1ee3cf365266" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="1894eec4-4bd6-4826-a5bf-36a13d4d83f0" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="62200976-7753-4c79-bb7c-bf130fdf7f7f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">oglani</AUni> -<AUni ws="qvm-x-acl">oglani; oglani; oglane</AUni> -<AUni ws="qvm-x-akh">oqlani</AUni> -<AUni ws="qvm-x-akl">oqlani; oqlani; oqlane</AUni> -<AUni ws="qvm-x-ame">uqlani</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uqllani</AUni> -<AUni ws="qvm-x-acl">*uqllani</AUni> -<AUni ws="qvm-x-akh">*uqllani</AUni> -<AUni ws="qvm-x-akl">*uqllani</AUni> -<AUni ws="qvm-x-ame">*uqllani</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.261" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="17412154-a6d4-41d7-b6f0-a5f35fd23a92" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uqllani</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="67c94aa7-2a6a-4721-80d1-7bc378b46384" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6c24b8fa-a36d-4bd7-83f8-fb9041b87659" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uqllani 
\entryTyp root 
\gENG brood 
\gSPN empollo 
\e *uqllani 
\c N0 
\mp +FinalI 
\ach oglani 
\akh oqlani 
\acl oglani / _# 
\acl oglani +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl oglane +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl oqlani / _# 
\akl oqlani +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl oqlane +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame uqlani 
\i 1KI 3.21 Riccharcamur chuchunäpäga wanushga wamralana oglanëcho caycashga.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="62201e09-4fb6-4b3f-ad95-d8268b39a3d0" ownerguid="abe6286b-fca1-40cd-bfde-82eac17c4a4b"> -<Form> -<AUni ws="qvm-x-ach">viüda</AUni> -<AUni ws="qvm-x-acl">viüda</AUni> -<AUni ws="qvm-x-akh">viüda</AUni> -<AUni ws="qvm-x-akl">viüda</AUni> -<AUni ws="qvm-x-ame">viüda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="62209610-c629-4ce4-a1c7-c4f8d4581b5c" ownerguid="59d936f3-dffb-4585-80e0-eaf6cd6a8026"> -<ExampleWords> -<AUni ws="en">ability, capability, prowess</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the ability of someone to do something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="62216e6e-277e-4073-8cc9-3e4ef1cbddfe" ownerguid="7e2b6218-0837-4b16-a982-c9535cccdb21"> -<ExampleWords> -<AUni ws="en">decay, decompose, rot, return to dust, eaten by worms, corrupt, putrid, putrefy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a dead body decaying?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="62264b3c-e8b5-46f4-b3dc-f2aae51ecd78" ownerguid="94f50cb8-9a59-42cc-9891-247cc3de7428"> -<ExampleWords> -<AUni ws="en">corrosion, oxidation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the process of rusting?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="622799ff-4e25-4a77-9ad7-dae684fde13d" ownerguid="56a9e27a-7121-469d-95eb-6cec53129749"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="622f6b3f-6307-45bf-bc77-1c89ce8f61e9" ownerguid="826fb4db-ba81-41df-b6a2-58403cc2080c"> -<Form> -<AUni ws="qvm-x-ach">cinta</AUni> -<AUni ws="qvm-x-acl">cinta</AUni> -<AUni ws="qvm-x-akh">cinta</AUni> -<AUni ws="qvm-x-akl">cinta</AUni> -<AUni ws="qvm-x-ame">cinta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6231969c-eaba-4c1d-ae98-d184dbb8b7ec" ownerguid="7d8898d6-6296-4d4d-b8dd-2f48c49f9e98"> -<ExampleWords> -<AUni ws="en">rise, soar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to becoming high?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="62352a5a-c18b-4ffe-acdd-75b7b6afff6b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">encarga</AUni> -<AUni ws="qvm-x-acl">encarga</AUni> -<AUni ws="qvm-x-akh">encarga</AUni> -<AUni ws="qvm-x-akl">encarga</AUni> -<AUni ws="qvm-x-ame">encarga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+encargar</AUni> -<AUni ws="qvm-x-acl">+encargar</AUni> -<AUni ws="qvm-x-akh">+encargar</AUni> -<AUni ws="qvm-x-akl">+encargar</AUni> -<AUni ws="qvm-x-ame">+encargar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.465" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2ced01c9-7b41-4d56-a6e8-37a803fee055" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+encargar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="230fd58e-05b8-49dd-a730-e87856df4818" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="345e967a-7261-49d0-8fe4-7d529c34ea95" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +encargar 
\entryTyp root 
\gENG 
\gSPN encargar 
\e +encargar 
\c V2 
\ach encarga 
\akh encarga 
\acl encarga 
\akl encarga 
\ame encarga</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="623a4526-0041-4dc5-b1d9-716b40e3d02a" ownerguid="e20f83b8-bfb2-4709-80f8-2e039fed9b4e"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="328ac1f9-b452-427f-9881-9be0a44cc5c7" t="o" /> -<objsur guid="279a4072-adbe-4aa9-8176-e970ee4e3fd4" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="623c8efb-3af4-455e-a528-26ce16f10dc0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nunush</AUni> -<AUni ws="qvm-x-acl">nunush</AUni> -<AUni ws="qvm-x-akh">nunush</AUni> -<AUni ws="qvm-x-akl">nunush</AUni> -<AUni ws="qvm-x-ame">nunush</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñuñush</AUni> -<AUni ws="qvm-x-acl">*ñuñush</AUni> -<AUni ws="qvm-x-akh">*ñuñush</AUni> -<AUni ws="qvm-x-akl">*ñuñush</AUni> -<AUni ws="qvm-x-ame">*ñuñush</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.598" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d1a4062f-5ba1-4a16-bae0-c26e9b265816" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñuñush</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bb8e98a6-bd6c-4890-b970-953fa1bcb0cb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3ffa2e07-3c4c-4861-9c51-f8b9008172c2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñuñush 
\entryTyp root 
\gENG last.child 
\gSPN último.hijo 
\e *ñuñush 
\c N0 
\mp +FinalC 
\ach nunush 
\akh nunush 
\acl nunush 
\akl nunush 
\ame nunush</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="623ccfa8-c56d-4818-8c1c-60ecbd260e0a" ownerguid="8ea4e0d4-71a2-4583-a1fe-f1a941af8478"> -<ExampleWords> -<AUni ws="en">suggest, make a suggestion, float, recommend, propose, propound, submit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to suggesting something to someone?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="623ce4fc-c83d-436b-8252-481bc2e79754" ownerguid="1c324d75-00b9-47c2-93b1-95870b2bbc6c"> -<Form> -<AUni ws="qvm-x-ach">shu</AUni> -<AUni ws="qvm-x-acl">shu</AUni> -<AUni ws="qvm-x-akh">shu</AUni> -<AUni ws="qvm-x-akl">shu</AUni> -<AUni ws="qvm-x-ame">shu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="623df4d1-a346-411c-a149-8eddc54b0b9d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">solte:ra</AUni> -<AUni ws="qvm-x-acl">solte:ra</AUni> -<AUni ws="qvm-x-akh">solte:ra</AUni> -<AUni ws="qvm-x-akl">solte:ra</AUni> -<AUni ws="qvm-x-ame">solte:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+soltera</AUni> -<AUni ws="qvm-x-acl">+soltera</AUni> -<AUni ws="qvm-x-akh">+soltera</AUni> -<AUni ws="qvm-x-akl">+soltera</AUni> -<AUni ws="qvm-x-ame">+soltera</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.723" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d799c20f-e9bb-40f5-a017-b85fbe93afb0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+soltera</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f3aadd6b-7a3c-4124-8316-c14d0882e670" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c82c2608-3394-4d96-9413-36957983729b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +soltera 
\entryTyp root 
\gENG single.woman 
\gSPN soltera 
\e +soltera 
\c N0 
\ach solte:ra 
\akh solte:ra 
\acl solte:ra 
\akl solte:ra 
\ame solte:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="62438a57-524f-4317-b438-a84051d551af" ownerguid="e556f881-fe4b-45da-b528-1c1adf38662e"> -<Form> -<AUni ws="qvm-x-ach">goyä</AUni> -<AUni ws="qvm-x-acl">goyä</AUni> -<AUni ws="qvm-x-akh">qoyä</AUni> -<AUni ws="qvm-x-akl">qoyä</AUni> -<AUni ws="qvm-x-ame">quyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6244c23b-1281-4ecd-80e2-96e9f25bde1f" ownerguid="ecf9ebd7-f991-41df-98cd-bcf1254d5d0b"> -<ExampleWords> -<AUni ws="en">go first, come first, precede, lead, lead the way, blaze a trail, be in the van, forerun</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to going ahead of someone?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6246b075-e98f-4fbe-9010-6807b2426af9" ownerguid="01d8a648-bdc5-4905-aaa2-e0a3ebdc5bf5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">monument</AUni> -<AUni ws="es">monumento</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cdb0e2d5-c02a-4c81-9529-dc8b5269c0e1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="624aa51e-46e9-4d8e-aa44-9a7b87d2ae93" ownerguid="f553b9a9-c403-443e-b144-45033101e937"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="624cbccf-4a86-4302-8f93-3470c4d87ea0" ownerguid="f2022802-4f43-4fa2-8c58-33a8b9e75895"> -<ExampleWords> -<AUni ws="en">increase (n), growth, rise, raise, build-up, upturn, hike, increment, proliferation, addition, supplement</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to an increase in number or amount?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="624cc5cd-3751-4de6-a202-0d029ab8a53f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">menta</AUni> -<AUni ws="qvm-x-acl">menta</AUni> -<AUni ws="qvm-x-akh">menta</AUni> -<AUni ws="qvm-x-akl">menta</AUni> -<AUni ws="qvm-x-ame">menta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mentar</AUni> -<AUni ws="qvm-x-acl">+mentar</AUni> -<AUni ws="qvm-x-akh">+mentar</AUni> -<AUni ws="qvm-x-akl">+mentar</AUni> -<AUni ws="qvm-x-ame">+mentar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.414" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a2c4d440-ebfb-458b-a401-baf4d5243bae" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mentar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d9dadfef-c280-4de9-9268-c77b80fb2e83" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="94dcfdd0-a59c-44df-a512-684540e801e8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mentar 
\entryTyp root 
\gENG mention/insult 
\gSPN mentar 
\e +mentar 
\c V2 
\ach menta 
\akh menta 
\acl menta 
\akl menta 
\ame menta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="624d0235-6e27-4e8d-bebd-39025d039bd1" ownerguid="8f7c9d7d-9b2a-40f3-9314-8f16f0aa31ef"> -<ExampleWords> -<AUni ws="en">fold, crease, angle, plait, wrinkle, flap, lapel, dog-ear, tuck, gather, pleat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a fold in something?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="624f96a0-9e89-4198-aac1-00948c68ac9e" ownerguid="13cc66bd-6be9-4074-9bcd-7a7773807ccf"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 65.10 Gammi barbichashgan chacracunatapis yacuwan pargunqui.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="625036c3-082e-426d-b55f-fa8baabf1725" ownerguid="424ced39-d801-419a-86fe-265942a9b74b"> -<ExampleWords> -<AUni ws="en">take care of, look after, maintain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to taking care of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="62513e81-49a3-496c-83d1-5c8a9bd946f1" ownerguid="dc60204d-7c7f-4b73-8aa2-df87ae226f1f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">winnow</AUni> -<AUni ws="es">aventar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="725b64c9-9618-4654-9a42-7fe2a9ab3456" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="62521bb1-3688-4feb-ae4f-c9e13cc8452d" ownerguid="2d9523b0-11e3-4051-824f-fe31e3b7ca29"> -<Form> -<AUni ws="qvm-x-ach">shututu</AUni> -<AUni ws="qvm-x-acl">shututu; shututo</AUni> -<AUni ws="qvm-x-akh">shututu</AUni> -<AUni ws="qvm-x-akl">shututu; shututo</AUni> -<AUni ws="qvm-x-ame">shututu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="625441f0-aa9d-44e3-bb4a-903755340990" ownerguid="ca66291b-0046-4142-a4d4-d7baf284d121"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6254911a-0a19-43a8-980f-ded01e8da4d3" ownerguid="b2fd2d29-1389-4114-91a8-15b8d9742794"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">It all <depends>.; This <is dependent on> that.; It all <hangs on> whether we finish on time.; Prosperity <is tied to> government regulations.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">to depend on, that depends, depend upon, dependency, dependent, hang on, tied to, lean on, stand on, supportive relationship</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words express the fact that something is logically dependent on another?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6254b880-b02b-4317-9add-fbae575c6186"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">escri:ba</AUni> -<AUni ws="qvm-x-acl">escri:ba</AUni> -<AUni ws="qvm-x-akh">escri:ba</AUni> -<AUni ws="qvm-x-akl">escri:ba</AUni> -<AUni ws="qvm-x-ame">escri:ba</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+escriba</AUni> -<AUni ws="qvm-x-acl">+escriba</AUni> -<AUni ws="qvm-x-akh">+escriba</AUni> -<AUni ws="qvm-x-akl">+escriba</AUni> -<AUni ws="qvm-x-ame">+escriba</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.487" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ab800be7-f0ea-457e-8a9f-760c9af2e004" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+escriba</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c8c256a8-9e69-4b97-a095-16f6b2426a82" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8df2e690-0f98-4a20-92fa-73f2196e78d1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +escriba 
\entryTyp root 
\gENG 
\gSPN 
\e +escriba 
\c N0 
\ach escri:ba 
\akh escri:ba 
\acl escri:ba 
\akl escri:ba 
\ame escri:ba</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="62551890-0cfd-4bdc-aaa8-065405b81474" ownerguid="4c48acbd-5156-4f6d-bd93-750bcd92bca2"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="625f89c1-55d1-4d5b-8ce2-991ebf4097fc" ownerguid="97393c87-07e2-4633-88f9-c8bf4d9b935c"> -<ExampleWords> -<AUni ws="en">hateful</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels hateful?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6262e304-a954-41ac-bac6-3e066313f85c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">arrepenti</AUni> -<AUni ws="qvm-x-acl">arrepenti; arrepente</AUni> -<AUni ws="qvm-x-akh">arrepenti</AUni> -<AUni ws="qvm-x-akl">arrepenti; arrepente</AUni> -<AUni ws="qvm-x-ame">arrepenti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+arrepentir</AUni> -<AUni ws="qvm-x-acl">+arrepentir</AUni> -<AUni ws="qvm-x-akh">+arrepentir</AUni> -<AUni ws="qvm-x-akl">+arrepentir</AUni> -<AUni ws="qvm-x-ame">+arrepentir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.920" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d03c4ea7-fbee-43e4-bec5-5658f1a76329" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+arrepentir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="86ddb127-7dce-4c07-a652-d5d8be635812" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="73cb3dc4-2937-49f4-9b2a-32875a0ecf97" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +arrepentir 
\entryTyp root 
\gENG 
\gSPN 
\e +arrepentir 
\c V1 
\mp +FinalI 
\ach arrepenti 
\akh arrepenti 
\acl arrepenti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl arrepente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl arrepenti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl arrepente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame arrepenti</Run> -</AStr> -</Custom> -</rt> -<rt class="MoAffixAllomorph" guid="62634ec0-20a9-44fd-89d0-5fa099663ee5" ownerguid="400b9b99-a217-428e-a1a0-7766bbb3d2c2"> -<Form> -<AUni ws="qvm-x-ach">nag</AUni> -<AUni ws="qvm-x-acl">nag</AUni> -<AUni ws="qvm-x-akh">naq</AUni> -<AUni ws="qvm-x-akl">naq</AUni> -<AUni ws="qvm-x-ame">naq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="8378f21c-cf54-437a-9d41-a303c764b326" t="r" /> -</PhoneEnv> -</rt> -<rt class="MoStemAllomorph" guid="626610bb-ed7d-4934-b05a-3991959536b5" ownerguid="4bf670d1-e204-4627-9847-583083bd6a0c"> -<Form> -<AUni ws="qvm-x-ach">tucu</AUni> -<AUni ws="qvm-x-acl">tucu; tucu; tuco</AUni> -<AUni ws="qvm-x-akh">tuku</AUni> -<AUni ws="qvm-x-akl">tuku; tuku; tuko</AUni> -<AUni ws="qvm-x-ame">tuku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="62668b36-cdcd-4077-aaf6-b8a81b5b8017" ownerguid="cbc9a466-67c0-41a2-a6cf-b958119ad3a4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">candelabra</AUni> -<AUni ws="es">candelabro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ef915375-b47b-4808-b479-2af3d6c90766" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="6268bc24-e119-41df-9101-423023162e9a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tupshi</AUni> -<AUni ws="qvm-x-acl">tupshi; tupshi; tupshe</AUni> -<AUni ws="qvm-x-akh">tupshi</AUni> -<AUni ws="qvm-x-akl">tupshi; tupshi; tupshe</AUni> -<AUni ws="qvm-x-ame">tupshi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tupshi</AUni> -<AUni ws="qvm-x-acl">*tupshi</AUni> -<AUni ws="qvm-x-akh">*tupshi</AUni> -<AUni ws="qvm-x-akl">*tupshi</AUni> -<AUni ws="qvm-x-ame">*tupshi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.5" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a318d190-bbc5-42bd-a3e0-3897c2959c96" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tupshi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c500df9e-9c92-4bc8-a657-0e5093820516" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fd520d50-f6db-4270-a204-333374e2a71c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tupshi 
\entryTyp root 
\gENG beak 
\gSPN pico 
\e *tupshi 
\c N0 
\mp +FinalI 
\ach tupshi 
\akh tupshi 
\acl tupshi / _# 
\acl tupshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tupshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tupshi / _# 
\akl tupshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tupshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tupshi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="62697447-c8e9-4b4a-845f-958064138c89" ownerguid="9bb6f1ed-7170-4caa-a14c-747fd95ca30e"> -<ExampleWords> -<AUni ws="en">spoonful of sugar, sugar bowl</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What containers are used for sugar?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="626a4bdf-6b2b-4d5a-a617-3c3d9f4e6758" ownerguid="cb95189c-8c74-465b-af07-48e08dbf7c39"> -<ExampleWords> -<AUni ws="en">emote, express, show, act out, display</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to doing something to show a feeling?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="626c8435-776f-4da6-97d9-2c85484b6b7a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chi:na; chi:na:</AUni> -<AUni ws="qvm-x-acl">chi:na; chi:na:</AUni> -<AUni ws="qvm-x-akh">chi:na; chi:na:</AUni> -<AUni ws="qvm-x-akl">chi:na; chi:na:</AUni> -<AUni ws="qvm-x-ame">chi:na; chi:na:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chi:na:</AUni> -<AUni ws="qvm-x-acl">*chi:na:</AUni> -<AUni ws="qvm-x-akh">*chi:na:</AUni> -<AUni ws="qvm-x-akl">*chi:na:</AUni> -<AUni ws="qvm-x-ame">*chi:na:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.313" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d5074bc9-3ed1-4c3c-8c23-4f8af5904c04" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chi:na:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b14ec571-568e-4469-aeda-2044bba7da40" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d6767a80-9e95-470a-905f-356a96dbf8d0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chi:na: 
\entryTyp root 
\gENG lust 
\gSPN ? 
\e *chi:na: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach chi:na foreshortened 
\ach chi:na: 
\akh chi:na foreshortened 
\akh chi:na: 
\acl chi:na foreshortened 
\acl chi:na: 
\akl chi:na foreshortened 
\akl chi:na: 
\ame chi:na foreshortened 
\ame chi:na:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="626d804d-9cb8-41fb-82f4-e488cfbecd84" ownerguid="93de2257-8303-490d-b2fe-6d1d838b08c6"> -<ExampleWords> -<AUni ws="en">long, clean, dirty, dirt under the nails, chipped, curved</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words are used to describe the condition of the nails?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="627280f0-4f98-4b31-ad23-eabe37b002ad" ownerguid="b1688009-474d-4e2e-a137-acc1e32a435f"> -<Abbreviation> -<AUni ws="en">8.2.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.589" /> -<DateModified val="2022-9-23 16:55:8.589" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is thin.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>81D Narrow, Wide</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Thin thing</AUni> -</Name> -<Questions> -<objsur guid="86c12786-9b4a-42f7-98fe-1c8407c8bdba" t="o" /> -<objsur guid="b224ea84-c5cf-4843-88a3-82f7dc28cc33" t="o" /> -<objsur guid="24997110-3f76-4303-9331-edcd870e51cc" t="o" /> -<objsur guid="ecd76000-da6c-4b2d-9dc4-e57b8fc6deef" t="o" /> -<objsur guid="9bc4cb7e-7fc3-4be8-918b-6d1cfd9a981c" t="o" /> -<objsur guid="3ce2967a-687a-4166-93d9-924431fa1ea6" t="o" /> -<objsur guid="5cf4e498-d763-4d95-aa81-11d2c91c2558" t="o" /> -<objsur guid="d423fa22-1c1c-42d6-bf14-5740641c0f00" t="o" /> -<objsur guid="eaff21bd-4aae-4974-9528-aabc25b74cbf" t="o" /> -<objsur guid="b7229c16-d9e8-4f48-a92d-362c845d7884" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="08c05e00-9660-4491-af2f-a05fab27ef39" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="6272ac00-e9a9-462b-b6d3-85a1413daa4d" ownerguid="b559dbca-c20e-429c-91d0-4ae42e1612a8"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="6273c7f1-04e5-4139-a1ed-12619ffaa96c" ownerguid="88a69e5d-91fd-43ce-9650-43b561a4eb63"> -<Form> -<AUni ws="qvm-x-ach">yayca</AUni> -<AUni ws="qvm-x-acl">yayca</AUni> -<AUni ws="qvm-x-akh">yayka</AUni> -<AUni ws="qvm-x-akl">yayka</AUni> -<AUni ws="qvm-x-ame">yayka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<StemName> -<objsur guid="a177c679-0e2b-4632-9f01-6391c5a4a352" t="r" /> -</StemName> -</rt> -<rt class="MoStemAllomorph" guid="6274f0fd-90c6-4bf0-bfec-612b233303f1" ownerguid="2c62ccfa-0223-449f-87ed-62bba4173897"> -<Form> -<AUni ws="qvm-x-ach">alaba</AUni> -<AUni ws="qvm-x-acl">alaba</AUni> -<AUni ws="qvm-x-akh">alaba</AUni> -<AUni ws="qvm-x-akl">alaba</AUni> -<AUni ws="qvm-x-ame">alaba</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="62753804-1184-404e-a9b0-310670a7e91a" ownerguid="01184d2a-7488-4439-927e-6d306d383f48"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">execute</AUni> -<AUni ws="es">ejecutar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e3836d5d-d8d7-462d-9dee-0e8e695a55cd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="62769b5e-9981-40f8-905b-1b94475a6f48"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">hornu; horno</AUni> -<AUni ws="qvm-x-acl">hornu; hornu; horno</AUni> -<AUni ws="qvm-x-akh">hornu; horno</AUni> -<AUni ws="qvm-x-akl">hornu; hornu; horno</AUni> -<AUni ws="qvm-x-ame">hornu; horno</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+horno.1</AUni> -<AUni ws="qvm-x-acl">+horno.1</AUni> -<AUni ws="qvm-x-akh">+horno.1</AUni> -<AUni ws="qvm-x-akl">+horno.1</AUni> -<AUni ws="qvm-x-ame">+horno.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.741" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8db8a132-63bd-4e84-a6c7-751e89b5de9d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+horno.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="50ca9ba5-4305-4804-bf34-9c799332eb6c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c7c3b8b9-5b7a-4f7f-879a-bcd9384f05d7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +horno.1 
\entryTyp root 
\gENG oven 
\gSPN horno 
\e +horno.1 
\c N0 
\ach hornu / ~_# 
\ach horno / _# 
\akh hornu / ~_# 
\akh horno / _# 
\acl hornu / ~_# 
\acl hornu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl horno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl hornu / ~_# 
\akl hornu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl horno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hornu / ~_# 
\ame horno / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="6277c1c8-ab85-4faa-af84-2ea34fad2b07"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">noviu; novio</AUni> -<AUni ws="qvm-x-acl">noviu; noviu; novio</AUni> -<AUni ws="qvm-x-akh">noviu; novio</AUni> -<AUni ws="qvm-x-akl">noviu; noviu; novio</AUni> -<AUni ws="qvm-x-ame">noviu; novio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+novio</AUni> -<AUni ws="qvm-x-acl">+novio</AUni> -<AUni ws="qvm-x-akh">+novio</AUni> -<AUni ws="qvm-x-akl">+novio</AUni> -<AUni ws="qvm-x-ame">+novio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.576" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c06c7749-3b2d-4ffa-8453-adcd5cecc668" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+novio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="03693e5e-0b69-4b09-bc88-6b553434c8aa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4a95b1fe-1c6e-4ec7-a098-e296cf61ca24" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +novio 
\entryTyp root 
\gENG engaged.one 
\gSPN novio 
\e +novio 
\c N0 
\ach noviu / ~_# 
\ach novio / _# 
\akh noviu / ~_# 
\akh novio / _# 
\acl noviu / ~_# 
\acl noviu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl novio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl noviu / ~_# 
\akl noviu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl novio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame noviu / ~_# 
\ame novio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="6278ec36-0756-486f-932d-d63396124629"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">micha</AUni> -<AUni ws="qvm-x-acl">micha</AUni> -<AUni ws="qvm-x-akh">micha</AUni> -<AUni ws="qvm-x-akl">micha</AUni> -<AUni ws="qvm-x-ame">micha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mitra</AUni> -<AUni ws="qvm-x-acl">*mitra</AUni> -<AUni ws="qvm-x-akh">*mitra</AUni> -<AUni ws="qvm-x-akl">*mitra</AUni> -<AUni ws="qvm-x-ame">*mitra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.457" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="514ca916-65ed-4447-a9e8-977ec67cac02" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mitra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="be438404-cc57-4f85-8d36-80d6f0c969d9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8d5fe861-d5f3-46b4-8809-202af4156e8a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mitra 
\entryTyp root 
\gENG stingy 
\gSPN mezquino 
\e *mitra 
\c N0 
\ach micha 
\akh micha 
\acl micha 
\akl micha 
\ame micha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="627995c6-072c-4b73-9405-dfc39686ac3c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yancu</AUni> -<AUni ws="qvm-x-acl">yancu; yancu; yanco</AUni> -<AUni ws="qvm-x-akh">yanku</AUni> -<AUni ws="qvm-x-akl">yanku; yanku; yanko</AUni> -<AUni ws="qvm-x-ame">yanku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yanku</AUni> -<AUni ws="qvm-x-acl">*yanku</AUni> -<AUni ws="qvm-x-akh">*yanku</AUni> -<AUni ws="qvm-x-akl">*yanku</AUni> -<AUni ws="qvm-x-ame">*yanku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.739" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d355aacd-e5ef-47bd-9ecf-13f0e20ee8b7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yanku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="610d421e-b85a-4133-8f8b-32cf20488d46" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6f1cf65f-45ee-4421-ae70-f81210fb68f3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yanku 
\entryTyp root 
\gENG occasion 
\gSPN ocasión 
\e *yanku 
\c N0 
\ach yancu 
\akh yanku 
\acl yancu / _# 
\acl yancu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl yanco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yanku / _# 
\akl yanku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl yanko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame yanku</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="6280efea-c8cd-4db8-84c6-ac172d9608f7" ownerguid="dbbc964c-d7dd-4ed5-995f-fa3c7c8c9f29"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="6281a5d0-f527-43f2-a3c4-2ce10c8f0629" ownerguid="59923773-7a83-4932-8f63-86758743d8fd"> -<Form> -<AUni ws="qvm-x-ach">auni</AUni> -<AUni ws="qvm-x-acl">auni; aune</AUni> -<AUni ws="qvm-x-akh">awni</AUni> -<AUni ws="qvm-x-akl">awni; awne</AUni> -<AUni ws="qvm-x-ame">awni</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="6282440d-8ebe-42dc-9c28-ddecca8bf71d" ownerguid="575c4ee2-c3ba-4227-a7de-43181b4e1eb6"> -<Form> -<AUni ws="qvm-x-ach">miñi</AUni> -<AUni ws="qvm-x-acl">miñi; miñe</AUni> -<AUni ws="qvm-x-akh">miñi</AUni> -<AUni ws="qvm-x-akl">miñi; miñe</AUni> -<AUni ws="qvm-x-ame">miñi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="6286a443-26de-49f8-8e58-3904b7d4e7e5" ownerguid="fcbef386-e075-44f0-9b10-3850d8f06b25"> -<Form> -<AUni ws="qvm-x-ach">següru</AUni> -<AUni ws="qvm-x-acl">següru; següru; següro</AUni> -<AUni ws="qvm-x-akh">següru</AUni> -<AUni ws="qvm-x-akl">següru; següru; següro</AUni> -<AUni ws="qvm-x-ame">següru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="62891c29-7bde-42e5-87c7-7e58f9d67da6" ownerguid="41bf21ef-863d-48f1-9051-99fd35b16f2a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="628b1fe6-771e-4a35-acd4-e54769de3c41" ownerguid="7d9af2fc-ebd4-4ec9-91f9-da752b344607"> -<Form> -<AUni ws="qvm-x-ach">montuy</AUni> -<AUni ws="qvm-x-acl">montuy</AUni> -<AUni ws="qvm-x-akh">montuy</AUni> -<AUni ws="qvm-x-akl">montuy</AUni> -<AUni ws="qvm-x-ame">montuy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="628bb610-6884-4202-a19a-02595b5852fa" ownerguid="f6df56d5-05df-40f4-9c66-8042b406f68d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">̈</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-ach">̈</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-ach">̈</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-ach">̈</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ach">̈</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2aab4c43-9e09-436e-bfc7-7c4c7edfaf44" t="r" /> -</Morph> -<Msa> -<objsur guid="13b178aa-cf95-4902-a68b-959ad06fd6f9" t="r" /> -</Msa> -<Sense> -<objsur guid="0e6ddc78-a6fb-40bc-a181-28279b8c7632" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="628d8675-0a30-46be-a46d-8a584a52ad5b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tapia</AUni> -<AUni ws="qvm-x-acl">tapia</AUni> -<AUni ws="qvm-x-akh">tapia</AUni> -<AUni ws="qvm-x-akl">tapia</AUni> -<AUni ws="qvm-x-ame">tapia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tapiar</AUni> -<AUni ws="qvm-x-acl">+tapiar</AUni> -<AUni ws="qvm-x-akh">+tapiar</AUni> -<AUni ws="qvm-x-akl">+tapiar</AUni> -<AUni ws="qvm-x-ame">+tapiar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.805" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2f750a70-27ba-4b05-89fc-f7c834b08059" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tapiar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c69c6938-e731-426e-bf22-a428907d08ad" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5cdecc84-fe8e-4a60-a8ac-7b70f887f8e0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tapiar 
\entryTyp root 
\gENG make.mud.wall 
\gSPN tapiar 
\e +tapiar 
\c V1 
\ach tapia 
\akh tapia 
\acl tapia 
\akl tapia 
\ame tapia</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="628f61e8-c8ba-40b5-864f-8bac1e189fa2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ishcu</AUni> -<AUni ws="qvm-x-acl">ishcu; ishco</AUni> -<AUni ws="qvm-x-akh">ishku</AUni> -<AUni ws="qvm-x-akl">ishku; ishko</AUni> -<AUni ws="qvm-x-ame">ishku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ishku</AUni> -<AUni ws="qvm-x-acl">*ishku</AUni> -<AUni ws="qvm-x-akh">*ishku</AUni> -<AUni ws="qvm-x-akl">*ishku</AUni> -<AUni ws="qvm-x-ame">*ishku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.852" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2bb0a3d0-d08c-42fd-a2b8-76fb9ca83ea9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ishku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7edf373e-9ecd-4cc3-8544-9107ddba7e14" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8089f9e2-1a78-45e7-9e1c-f4993e198977" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ishku 
\entryTyp root 
\gENG shell 
\gSPN desgranar 
\e *ishku 
\c V2 
\ach ishcu 
\akh ishku 
\acl ishcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ishco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ishku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ishko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ishku</Run> -</AStr> -</Custom> -</rt> -<rt class="MoAffixAllomorph" guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" ownerguid="008cecc8-8fcc-439a-88eb-d8bd404d5da9"> -<Form> -<AUni ws="qvm-x-ach">n</AUni> -<AUni ws="qvm-x-acl">n</AUni> -<AUni ws="qvm-x-akh">n</AUni> -<AUni ws="qvm-x-akl">n</AUni> -<AUni ws="qvm-x-ame">n</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="04c2c26a-62fd-4045-9c28-5e4da7139d19" t="r" /> -</PhoneEnv> -</rt> -<rt class="CmSemanticDomain" guid="62964baf-fea6-4d8e-8509-d312bff8761a" ownerguid="6342c8bf-55b5-400f-af7e-63055fe6813b"> -<Abbreviation> -<AUni ws="en">6.7.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to carrying tools.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Carrying tool</AUni> -</Name> -<Questions> -<objsur guid="2fc3e74a-b1a1-4a8e-a01e-f5b1f2731152" t="o" /> -<objsur guid="376436ca-2704-4ae7-b344-7cbdcf6b3ae1" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="6430b89c-7077-418a-a558-51f0e3f2c1a6" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="62979c5a-891c-4a40-ba05-023b70013c5e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ta:lla</AUni> -<AUni ws="qvm-x-acl">ta:lla</AUni> -<AUni ws="qvm-x-akh">ta:lla</AUni> -<AUni ws="qvm-x-akl">ta:lla</AUni> -<AUni ws="qvm-x-ame">ta:lla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tallar</AUni> -<AUni ws="qvm-x-acl">+tallar</AUni> -<AUni ws="qvm-x-akh">+tallar</AUni> -<AUni ws="qvm-x-akl">+tallar</AUni> -<AUni ws="qvm-x-ame">+tallar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.784" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dddd980b-c564-4735-9ce6-76a7abba3d02" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tallar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="36f7d426-4144-4d08-a564-802e432371e6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7b6d54a3-877d-4ed2-9a7f-bf98b0ec783d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tallar 
\entryTyp root 
\gENG 
\gSPN 
\e +tallar 
\c V1 
\ach ta:lla 
\akh ta:lla 
\acl ta:lla 
\akl ta:lla 
\ame ta:lla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="6297f7c3-cbb9-4158-baf2-e39353f3ee8e" ownerguid="823dcac2-74eb-4b72-9e17-75c34faaf1e4"> -<Form> -<AUni ws="qvm-x-ach">jamón; jamon</AUni> -<AUni ws="qvm-x-acl">jamón; jamon</AUni> -<AUni ws="qvm-x-akh">jamón; jamon</AUni> -<AUni ws="qvm-x-akl">jamón; jamon</AUni> -<AUni ws="qvm-x-ame">jamón; jamon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="629c978a-b327-47ae-9b54-9b69708551e0" ownerguid="81ce75c5-ef9c-4f66-9393-9a12019acc10"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="629cb31b-de46-4b16-86f0-19127665cab5" ownerguid="498336e7-b7bd-48ec-bdbd-a5e68d52fbda"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">qui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">qui</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ki</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="8fc7d848-8007-4dcc-8c36-9b0b4da26f05" t="r" /> -</Morph> -<Msa> -<objsur guid="bbbfe118-132f-4744-9f12-6945daa4a632" t="r" /> -</Msa> -<Sense> -<objsur guid="7a11c70f-471b-4542-a37b-bcfc9731537d" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="629d6a16-d316-4c86-bf5b-0ee4ff6bb6ed" ownerguid="8be0a228-60ee-409e-a5d8-215f4d21f168"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="5822927f-7845-4779-aabf-815aafcba01e" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="69982798-07f8-4305-a5a9-8ed903687d17" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="62a7eac8-a0b8-44ba-a4bb-dfefefdbd216"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gasma</AUni> -<AUni ws="qvm-x-acl">gasma</AUni> -<AUni ws="qvm-x-akh">qasma</AUni> -<AUni ws="qvm-x-akl">qasma</AUni> -<AUni ws="qvm-x-ame">qasma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qasma.v</AUni> -<AUni ws="qvm-x-acl">*qasma.v</AUni> -<AUni ws="qvm-x-akh">*qasma.v</AUni> -<AUni ws="qvm-x-akl">*qasma.v</AUni> -<AUni ws="qvm-x-ame">*qasma.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.134" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a3b6bda9-863e-4e44-98fb-8812df75ccea" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qasma.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="24f679aa-f170-429a-a6cf-b068081e2668" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aabce80c-4db7-4458-98b8-7bae9456fc93" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qasma.v 
\entryTyp root 
\gENG hoarse 
\gSPN ronco 
\e *qasma.v 
\c V1 
\ach gasma 
\akh qasma 
\acl gasma 
\akl qasma 
\ame qasma</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="62aa37d3-0796-4132-b7e2-208cf46a6af9" ownerguid="1d5c798b-0f2d-49f2-bde6-cbcf2ef8fd02"> -<ExampleWords> -<AUni ws="en">disagree, disagreement, think differently, dissent, dissenting, contest (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to when two people disagree?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="62abc639-b907-484e-a340-2f974a96c257" ownerguid="b2830b72-c642-484f-9485-24682aa11ed8"> -<ExampleWords> -<AUni ws="en">divine, read the signs, foretell the future</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to being able to divine secrets?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="62ac2523-38de-46e1-a92f-806198307d46" ownerguid="3a69f8eb-eb96-4a29-b349-921314550427"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yarpä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yarpä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yarpä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yarpä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yarpaa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a7f21528-35d2-49ec-9070-a385dd45427e" t="r" /> -</Morph> -<Msa> -<objsur guid="19ab5cf1-1864-4db0-94a6-3ed04ddf2ef7" t="r" /> -</Msa> -<Sense> -<objsur guid="b76c1d77-e3dc-4a8b-9cf7-6fb696740bed" t="r" /> -</Sense> -</rt> -<rt class="WfiAnalysis" guid="62ac799d-ad65-4fb5-a08f-a2c750b94997" ownerguid="1e2f084c-71ac-42d4-8200-995f1be5d2c4"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="b598b722-e164-4250-86d3-d6feacb66335" t="o" /> -<objsur guid="cbf7af6a-c567-4d2b-a46a-80b16ee8f06b" t="o" /> -<objsur guid="3763768a-7166-4ef2-80b6-b2e760e8b27d" t="o" /> -<objsur guid="60a9f062-f054-4274-8293-9c170d499a90" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="62aecab8-0725-40d7-ae0b-00cef9683136" ownerguid="45d80a0b-dc9c-49ec-ba53-0031a75347c4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="62b14abf-474c-4946-a312-ce86465048a2" ownerguid="ba1e8d2b-7d3e-4b65-a9be-ee1a4063c796"> -<ExampleWords> -<AUni ws="en">be a worrier, worrywart, neurotic, hypochondriac</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to someone who worries a lot?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="62b2defb-0a19-4959-b140-81eb9de970d5" ownerguid="64630f43-f9e4-40eb-a4db-b6a00156b5e1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="62b40326-f74c-4d80-9b1c-4dae0fc07026" ownerguid="a1ce19c4-d12c-46da-a718-6d03949b3db1"> -<Abbreviation> -<AUni ws="en">6.4.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to tracking an animal.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Track an animal</AUni> -</Name> -<Questions> -<objsur guid="1c527713-93f8-4106-b8eb-464990aca715" t="o" /> -<objsur guid="3540d65f-1321-4222-9959-40351a471342" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="62b4ae33-f3c2-447a-9ef7-7e41805b6a02" ownerguid="b32a39c4-43ff-4522-aed0-b2d5b8ad7157"> -<Abbreviation> -<AUni ws="en">4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.184" /> -<DateModified val="2022-9-23 16:55:8.184" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for very general words having to do with how people behave in relationship to other people.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Social behavior</AUni> -</Name> -<Questions> -<objsur guid="96a03b0e-d122-42d2-833a-39d0d7df3366" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="0e79435b-f5ff-4061-81ff-49557ba2aed4" t="o" /> -<objsur guid="57225f57-ba51-45d7-b6d2-b22052877ea4" t="o" /> -<objsur guid="8e11dd10-459b-4fb3-b876-7d80ec5f8a4d" t="o" /> -<objsur guid="9bb173c6-cf38-47cd-803f-ebdf964ca2fc" t="o" /> -<objsur guid="aad7c9b0-aff3-4684-86d5-657a20e39288" t="o" /> -<objsur guid="7558d071-a885-447b-9aa2-604c29669492" t="o" /> -<objsur guid="87bd0d45-8a94-41cb-9864-90d53a11a4b9" t="o" /> -<objsur guid="f7da1907-e6c5-4d21-a8e8-81376f3467df" t="o" /> -<objsur guid="7556a257-3703-40d3-91d3-c891fb250947" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="62b91962-a09c-4756-bc1c-5e4550010add" ownerguid="8f3ca5ee-a855-4813-aff8-7c1eae13a948"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">la</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">la</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">la</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">la</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">la</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7e3a2a21-331d-4db9-8026-9cb6ee2cd414" t="r" /> -</Morph> -<Msa> -<objsur guid="5a4d9e40-3b93-4303-947b-5d6ee7f02108" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="62b96821-3cf5-4a09-be0a-cfe12a921cf4" ownerguid="f2f973f2-acde-4ac7-a693-49c0ab861c5d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="62ba29a6-21a7-4074-a8ee-fb65717b7ab0" ownerguid="ff1ba929-bc37-48bd-83a9-c049ced3ef00"> -<Form> -<AUni ws="qvm-x-ach">sarampión; sarampion</AUni> -<AUni ws="qvm-x-acl">sarampión; sarampion</AUni> -<AUni ws="qvm-x-akh">sarampión; sarampion</AUni> -<AUni ws="qvm-x-akl">sarampión; sarampion</AUni> -<AUni ws="qvm-x-ame">sarampión; sarampion</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="62bc32a2-34d4-4022-a0b1-e5dd93ac551c" ownerguid="e3d23dcf-2c2c-4094-b8ed-d1381de5b36f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="201ad1fc-fc85-4e8e-a617-ab87abc5028d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="62bc45cd-7b58-48d6-8e55-03a6ff1dc760" ownerguid="b102b67f-eec0-49ff-82b9-4243b6068788"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">straw</AUni> -<AUni ws="es">paja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1d7b4ddf-a34d-439d-aaa8-4903bf63c2fa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="62bf28ed-dafe-4fc1-875c-6759345bc10a" ownerguid="f491233f-fae4-49dc-a79d-2cb29e71afad"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="62c3d273-e874-411d-af9f-83e25ec51adb" ownerguid="7aaf3b02-0ef7-4b4e-a9d3-8617b1d841a6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">alter</AUni> -<AUni ws="es">altar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="99c8750f-e339-4090-b184-3243781f85ef" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="62c41d98-6222-4129-9b0e-5854f2463531"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chapitón; chapiton</AUni> -<AUni ws="qvm-x-acl">chapitón; chapiton</AUni> -<AUni ws="qvm-x-akh">chapitón; chapiton</AUni> -<AUni ws="qvm-x-akl">chapitón; chapiton</AUni> -<AUni ws="qvm-x-ame">chapitón; chapiton</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+chapetón</AUni> -<AUni ws="qvm-x-acl">+chapetón</AUni> -<AUni ws="qvm-x-akh">+chapetón</AUni> -<AUni ws="qvm-x-akl">+chapetón</AUni> -<AUni ws="qvm-x-ame">+chapetón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.282" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4de11d42-bbc2-4b71-9dcd-b4d4643af8b5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+chapetón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8781e79e-c441-4d2b-96a7-2eb8f817b7bd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c27877a4-94f1-4f47-a4d2-05c4fb7fbf20" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +chapetón 
\entryTyp root 
\gENG bad.person 
\gSPN malo 
\e +chapetón 
\c N0 
\mp +FinalC 
\ach chapitón / _# 
\ach chapiton / ~_# 
\akh chapitón / _# 
\akh chapiton / ~_# 
\acl chapitón / _# 
\acl chapiton / ~_# 
\akl chapitón / _# 
\akl chapiton / ~_# 
\ame chapitón / _# 
\ame chapiton / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="62ccf5d2-88f6-4835-9b8c-8381f0af2d9c" ownerguid="fbeda0cb-8d80-4fee-8f58-d54590880e8e"> -<Form> -<AUni ws="qvm-x-ach">cayjina</AUni> -<AUni ws="qvm-x-acl">cayjina</AUni> -<AUni ws="qvm-x-akh">kayjina</AUni> -<AUni ws="qvm-x-akl">kayjina</AUni> -<AUni ws="qvm-x-ame">kayhina</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="62ceb696-99c6-4d76-a394-e6beda85d262" ownerguid="950625cc-d007-4bac-9bb4-ec2d9bbf8f4d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="62d60337-3051-4969-b766-c558fd748f33" ownerguid="99dd735d-a030-454c-9873-d8cac25e0cc3"> -<Form> -<AUni ws="qvm-x-ach">wicapa</AUni> -<AUni ws="qvm-x-acl">wicapa</AUni> -<AUni ws="qvm-x-akh">wikapa</AUni> -<AUni ws="qvm-x-akl">wikapa</AUni> -<AUni ws="qvm-x-ame">wikapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="62d7100a-8944-4b1c-a677-7e606db3f5a9" ownerguid="ab08a47b-f171-4fef-a21b-97d2ece0654f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="62d998e7-dba7-4919-ad14-c13d097fba4b" ownerguid="ae6f73ab-432d-42e8-aa1a-c848652a13f0"> -<ExampleWords> -<AUni ws="en">bitch, busty, catty, curvaceous, dish, distaff, doll, estrous, girlish, hag, hussy, maidenly, menopausal, shrew, slatternly, slattern, slut, unfeminine, unladylike, virginal, womanish, womanlike</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a woman?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="62daf41c-a0a5-4f32-96f1-804706fe7f43" ownerguid="70eac6be-66e8-4827-8f2f-d15427efff60"> -<ExampleWords> -<AUni ws="en">literate, illiterate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to whether or not a person can read and write?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="62dc6416-aa62-4690-8c79-52ff32846c92" ownerguid="079baa9c-b3ac-4881-bca2-7baf6825906d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="f9f9604b-5ad0-417f-b30f-c87f5950a813" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="f7c5ba10-24c4-4c2f-bd33-524a312e1ff8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="62dd3c2a-fc62-4e26-925a-2c6ab64252dd" ownerguid="749ae4c4-5254-4786-8aa4-c706e09c0834"> -<Form> -<AUni ws="qvm-x-ach">waylu</AUni> -<AUni ws="qvm-x-acl">waylu; waylo</AUni> -<AUni ws="qvm-x-akh">waylu</AUni> -<AUni ws="qvm-x-akl">waylu; waylo</AUni> -<AUni ws="qvm-x-ame">waylu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="62dd411b-e894-437b-be19-baff7d23408d" ownerguid="f9d020d6-b129-4bb8-9509-3b4a6c27482e"> -<ExampleWords> -<AUni ws="en">interesting, eventful, colorful, never a dull moment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe a time when something interesting is happening?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="62debb69-b66d-4539-98d8-023b56f21aa1" ownerguid="3d5d93ce-00e0-46ff-b220-553c12c38381"> -<ExampleWords> -<AUni ws="en">reproductive, genital, sexual, vaginal, menstrual</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something to do with the female organs?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="62e0794b-2b06-439a-aceb-be25be50e02e" ownerguid="60e37b10-d62f-481a-8bb8-b681e25921ac" /> -<rt class="MoStemAllomorph" guid="62e1e094-85c3-4b72-81de-80ef22eb7149" ownerguid="e2d011ab-5c29-4b6d-a6dd-27260b688021"> -<Form> -<AUni ws="qvm-x-ach">empacha; empachä</AUni> -<AUni ws="qvm-x-acl">empacha; empachä</AUni> -<AUni ws="qvm-x-akh">empacha; empachä</AUni> -<AUni ws="qvm-x-akl">empacha; empachä</AUni> -<AUni ws="qvm-x-ame">empacha; empachä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="62e53799-aac2-4507-a871-81ae7ef85cce" ownerguid="b40ad958-7a6a-4a1e-aaa8-0a809c274448"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="2094e16b-1c0f-47ee-b34c-2ae71a0d9a34" t="o" /> -<objsur guid="ba88c59a-ec0a-4353-8622-bfb5fcd18776" t="o" /> -<objsur guid="a0fcd1c1-b83c-4b81-a1fe-90c2aa1e5445" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="62e6a1fd-b657-4d15-9e1c-9daafe3040d8" ownerguid="5f98069e-f3f5-48b9-a105-3e244deb8c71"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">can't.speak</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3a0a69b2-2c43-4dde-8944-fb9b8dcafab8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="62e7649b-a1db-4751-a52c-97b4f83dfdd0" ownerguid="ccb281dc-6eaf-4de0-b0d8-cadb6efd2b67"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="62ed8254-e53a-4781-935e-79869619e40a" ownerguid="b9c752a4-66be-493c-8955-cfa5324a54c1"> -<Abbreviation> -<AUni ws="en">4.9.5.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.296" /> -<DateModified val="2022-9-23 16:55:8.296" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to dedicating someone or something to religious use.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>53F Dedicate, Consecrate</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Dedicate to religious use</AUni> -</Name> -<Questions> -<objsur guid="863b22e4-f8e1-4a92-80b5-88b26d8c117b" t="o" /> -<objsur guid="71bae8ee-3a52-4bd2-a266-423aa23105ae" t="o" /> -<objsur guid="0d504322-f644-45f6-ba14-d501658d45a7" t="o" /> -<objsur guid="decf29d8-35f7-480d-8f80-d8ac56ad7ccb" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="62eeb856-b466-418a-82e7-83eb291873ea" ownerguid="789acf1f-932f-4e95-b9dd-23422aea34da"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="62efa729-0920-4933-93f3-b6a48519a5c7" ownerguid="6bf7569e-dc79-49da-9ce1-e2e03303828a"> -<Abbreviation> -<AUni ws="en">4.7.7.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to atoning for a past sin--doing something to make up for something bad you did, or giving something to pay for something bad you did.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Atone, restitution</AUni> -</Name> -<Questions> -<objsur guid="4241e10d-2e64-40a8-9948-9c5640533b21" t="o" /> -<objsur guid="0ed28b14-b87b-4056-9760-f53b39b5e385" t="o" /> -<objsur guid="14c9782c-a7a5-4529-9841-36a35b057c83" t="o" /> -<objsur guid="e7f89f86-d4c2-45b9-b70e-a9c7784ffc6e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="62f0d7af-5ea0-4eeb-a1ea-48a48008ad2f" ownerguid="979be69d-7c93-4e8d-b2d7-f1943c8b3157"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="62f3fd0b-ef3d-4b23-999e-06c0b290a67c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tranquilida; tranquilida:</AUni> -<AUni ws="qvm-x-acl">tranquilida; tranquilida:</AUni> -<AUni ws="qvm-x-akh">tranquilida; tranquilida:</AUni> -<AUni ws="qvm-x-akl">tranquilida; tranquilida:</AUni> -<AUni ws="qvm-x-ame">tranquilida; tranquilida:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tranquilidad</AUni> -<AUni ws="qvm-x-acl">+tranquilidad</AUni> -<AUni ws="qvm-x-akh">+tranquilidad</AUni> -<AUni ws="qvm-x-akl">+tranquilidad</AUni> -<AUni ws="qvm-x-ame">+tranquilidad</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.660" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="294abfc3-ea06-4cb0-8bf3-105442333125" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tranquilidad</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a99ceb76-9eb9-4701-b032-6736d3d93811" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5aa2379c-17bd-4551-b679-1eae52aadaa4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tranquilidad 
\entryTyp root 
\gENG peace 
\gSPN tranquilidad 
\e +tranquilidad 
\c N0 
\mp +FinalC 
\mp +underlong 
\ach tranquilida foreshortened 
\ach tranquilida: 
\mp +underlong 
\akh tranquilida foreshortened 
\akh tranquilida: 
\acl tranquilida foreshortened 
\acl tranquilida: 
\akl tranquilida foreshortened 
\akl tranquilida: 
\mp +underlong 
\ame tranquilida foreshortened 
\ame tranquilida: 
\mp +FinalLength 
\i PSA 22.2b Tsacaypa manacamurpis tranquilidäta tarënatagcu.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="62f4dbb5-05b5-4ab2-8626-13847d75199a" ownerguid="2c561345-a734-4b43-9531-b9d4fe4c280a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="62f62ab7-4ac7-4818-97ad-889af98739d9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tenedor</AUni> -<AUni ws="qvm-x-acl">tenedor</AUni> -<AUni ws="qvm-x-akh">tenedor</AUni> -<AUni ws="qvm-x-akl">tenedor</AUni> -<AUni ws="qvm-x-ame">tenedor</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tenedor</AUni> -<AUni ws="qvm-x-acl">+tenedor</AUni> -<AUni ws="qvm-x-akh">+tenedor</AUni> -<AUni ws="qvm-x-akl">+tenedor</AUni> -<AUni ws="qvm-x-ame">+tenedor</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.866" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="75639b7e-4e2f-4220-81f6-90f2e6031484" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tenedor</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="570a2c63-a9ff-4e32-960b-82a3d451907a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6dc103aa-f6c8-4052-9d45-be6d8b608d3c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tenedor 
\entryTyp root 
\gENG fork 
\gSPN tenedor 
\e +tenedor 
\c N0 
\mp +FinalC 
\ach tenedor 
\akh tenedor 
\acl tenedor 
\akl tenedor 
\ame tenedor</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="62fbb894-cd1a-4513-a7ce-521f28220dc5" ownerguid="08c69239-ee7e-4caf-b9a5-8096dcca2822"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="62fbcca2-b3cc-4c02-a476-5fc56f1d2607" ownerguid="80563285-4de7-4040-8080-a5b22208e7d5"> -<ExampleWords> -<AUni ws="en">attack, lead an attack, the attack fell on, assault, assail, charge, come at, drive, force your way, go for, lay into, make a run on, rush, sail into, set upon, strike, confront, penetrate defenses, be on the offense</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to attacking someone?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="62fcb085-00dd-4c64-9b18-8e543a314a3f" ownerguid="c2ded748-7ff9-4df9-9870-670c4b747eaa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">signature</AUni> -<AUni ws="es">firma</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e45d74d3-c8ce-4348-9f18-2d616660b59f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="62fccace-9ae5-4b8f-942c-1db27dec1fb0" ownerguid="b5499348-b8ca-4fae-8486-b23863560ae5"> -<ExampleWords> -<AUni ws="en">coincidence</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to two things happening at the same time by chance?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="62fd31da-c242-455c-9f2d-24809159967c" ownerguid="f219380c-cabe-4cd0-be00-d1a18aa3fa44"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ACT 28.8 Tsaychömi Publiupa taytan disenteriawan\f + 28.8 Disenteriaqa yawarnintin qecha qeshyami kaykan.\f* y shanapäkuywan cämacho antsa jitaraykarqan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="62ff6d0a-b715-4b4d-8f1a-f6f98f24e591" ownerguid="b7ed2482-6883-4a02-a992-e86c2573cc74"> -<ExampleWords> -<AUni ws="en">put down, set, lay</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to putting something down?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="63013426-3bd5-409f-8bcb-cedc739f3133" ownerguid="1f608e18-958e-4bb3-a977-04879fb5acd5"> -<ExampleWords> -<AUni ws="en">edible insects, white ant, termite, grub, locust</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What types of insects can be eaten?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6301dfa1-b048-4db0-a681-974a058e0fc9" ownerguid="f10944fa-5e6d-42e6-81ed-6a2a08118773"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6303d147-8040-4d90-a838-e94c7b2d9393" ownerguid="7558d071-a885-447b-9aa2-604c29669492"> -<ExampleWords> -<AUni ws="en">flag, official seal, crown, scepter, throne, regalia</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to flags and other symbols of government?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6305d4d9-7717-484f-8034-a2d664260223" ownerguid="aaf63abd-c8a5-4546-8fc1-a51c6e607683"> -<ExampleWords> -<AUni ws="en">hope, look forward to, anticipate, eagerly await, bide, desire, dream, be optimistic, wish for, fulfill hope</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to hoping that something good will happen in the future?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="6307412f-e1e0-48e9-902a-2a2e54f30338"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">nipäkurqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="6307e96b-9481-4edf-84c4-8afed61042ad"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">puca</AUni> -<AUni ws="qvm-x-acl">puca</AUni> -<AUni ws="qvm-x-akh">puka</AUni> -<AUni ws="qvm-x-akl">puka</AUni> -<AUni ws="qvm-x-ame">puka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puka.n</AUni> -<AUni ws="qvm-x-acl">*puka.n</AUni> -<AUni ws="qvm-x-akh">*puka.n</AUni> -<AUni ws="qvm-x-akl">*puka.n</AUni> -<AUni ws="qvm-x-ame">*puka.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.972" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6827275a-af45-4503-8f54-54f1d320b1b1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puka.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2397e66b-6547-4ba5-a898-1aaff0dbdeec" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9a82833f-3f29-4d89-958d-476b83afd37f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puka.n 
\entryTyp root 
\gENG red 
\gSPN rojo 
\e *puka.n 
\c N0 
\ach puca 
\akh puka 
\acl puca 
\akl puka 
\ame puka 
\mcc *puka.n / ~_ 3P</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6309600f-a0b9-494a-8240-05cc7c3052e2" ownerguid="b044e890-ce30-455c-aede-7e9d5569396e"> -<ExampleWords> -<AUni ws="en">starlit, lit by the stars</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used for where the stars are shining?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="630b9d40-d75c-47e3-981f-977fe78b16d7" ownerguid="09aa0843-05ca-4889-9c5f-372905366911"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gram</AUni> -<AUni ws="es">gramo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="99572e5c-1820-4dbb-84a7-cac9192142f0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="630cf58f-3708-46af-9f19-5201890a4651" ownerguid="8597827b-12ba-4f7b-a26e-9b72a45af369"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="630fa310-40fc-4015-8fb5-e9409d6cd676" ownerguid="7825d262-bf2c-4a69-aa62-b464e088dcad"> -<Evaluations> -<objsur guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="8bdddfd1-60ae-4f1e-9a7e-2351665f2b41" t="o" /> -<objsur guid="7168e411-5c8a-45ac-8c13-198c6028b767" t="o" /> -</MorphBundles> -</rt> -<rt class="LexExampleSentence" guid="6310a615-5c52-4ff2-93bb-c271078879c9" ownerguid="526788d1-b373-41b9-98ab-39cc8b6a39e6"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Gen 33.18 Tsaynogpami Padan-Arampita cutimur sin novedä Canaán partiman chayargan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="63127e0e-6b99-4634-aeb6-4692be0664f4" ownerguid="e0c32642-7c51-4e23-a776-f63f2f2f936d"> -<ExampleWords> -<AUni ws="en">debatable, questionable, open to question, open to debate, moot point</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that something is uncertain because people have many different opinions about it?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6313c642-c06f-43a6-ba82-f6ec36d9d546" ownerguid="a7a7e774-fa1c-4edf-94ec-8245dfdb28c6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="631bd16a-f461-4f2f-b46d-f7d7df4ae4e1" ownerguid="9a7604b4-d42f-44b7-9aef-47847dc93f0b"> -<ExampleWords> -<AUni ws="en">suffering, tormented</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe someone who suffers?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="631f5cf5-fe3f-4e2c-9b24-e01dc0a62752" ownerguid="1984977c-621e-487a-b924-2c2a163bca1c"> -<Form> -<AUni ws="qvm-x-ach">ticra</AUni> -<AUni ws="qvm-x-acl">ticra</AUni> -<AUni ws="qvm-x-akh">tikra</AUni> -<AUni ws="qvm-x-akl">tikra</AUni> -<AUni ws="qvm-x-ame">tikra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6323142c-3503-4a38-b05b-e9253e04ec57" ownerguid="32092595-7c2a-4740-a8aa-8df5f4af5540"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6326e463-e785-4ad7-88b7-1760fb22b7f5" ownerguid="4f485a60-e3ba-42e6-9d59-185305c5d1f2"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Turn and <face> north.; The temple <faced> east.; We buried him with his feet <pointing> west.; The captain <pointed> the ship into the wind.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">face (v), point, orient</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to facing in some direction?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="63278d0d-87a9-4a87-8e47-4bfab6d822b2" ownerguid="a31c85df-02a9-4dd8-a094-0f07a0afbcca"> -<ExampleWords> -<AUni ws="en">removable, temporary (ink), non-permanent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that can be removed?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="632cb69e-64b9-42a2-8587-34540789487e" ownerguid="c4f7bca1-1277-4895-b9ea-0c681e6b8135"> -<Form> -<AUni ws="qvm-x-ach">cuchcu</AUni> -<AUni ws="qvm-x-acl">cuchcu; cuchco</AUni> -<AUni ws="qvm-x-akh">kuchku</AUni> -<AUni ws="qvm-x-akl">kuchku; kuchko</AUni> -<AUni ws="qvm-x-ame">kuchku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="632ee7e6-f646-4cd5-aee6-4c7c226bdf52" ownerguid="8adc2568-cd8b-4015-b533-e20686c33474"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="49879410-4626-4f3c-96c0-d5a48f199317" t="r" /> -</Morph> -<Msa> -<objsur guid="3b914428-8cc9-47af-9f9c-c2de114360c0" t="r" /> -</Msa> -<Sense> -<objsur guid="3844b05a-8c3e-4fb1-beac-615795c4efc0" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="632fd3a1-c6d3-46e8-a969-01716bcda945" ownerguid="4db7beac-642c-4eb0-8efa-40b4ce911da5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">jail</AUni> -<AUni ws="es">cárcel</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="423d7370-f1aa-4314-94ef-86c6211c7e9b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="6330871b-6008-490e-bfff-e28e17ebce7e" ownerguid="c7c85346-158d-4881-839d-9a6a8e47209b"> -<Abbreviation> -<AUni ws="en">7.2.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.526" /> -<DateModified val="2022-9-23 16:55:8.526" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to not moving.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Not moving</AUni> -</Name> -<Questions> -<objsur guid="b73fe6a6-a0db-494c-a35b-8bf41c0d3644" t="o" /> -<objsur guid="5cba6e7f-4d1b-4bdb-940d-8b3964bc4b9a" t="o" /> -<objsur guid="b3649c18-a0d5-42d6-90ac-45268de480fd" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="7110adbe-a4ce-47b0-8c2f-6b41edaf2fcb" t="o" /> -<objsur guid="82eb3050-d382-48f6-a049-22a5f8a3b25a" t="o" /> -<objsur guid="d88d862c-01d4-4b43-9fbe-59208922e022" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="6331eb13-25ee-425e-ae35-d8a131a6468c" ownerguid="81e03df2-33a8-4735-aa23-80ef1c63679e"> -<ExampleWords> -<AUni ws="en">daze, confuse, disorient, befuddle, shock, stupefy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to causing someone to be dazed or confused?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6333cfe5-a293-4673-89f7-3c1ee15706e4" ownerguid="4d259d03-9cd3-4908-8c44-856aef2707a7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="59551f80-c4b2-4385-ab09-6f55062dbe4d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="6334b0e6-6de2-4f5c-94b6-caae5357ddb4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">langui</AUni> -<AUni ws="qvm-x-acl">langui; langui; langue</AUni> -<AUni ws="qvm-x-akh">lanqi</AUni> -<AUni ws="qvm-x-akl">lanqi; lanqi; lanqe</AUni> -<AUni ws="qvm-x-ame">lanqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llanqi</AUni> -<AUni ws="qvm-x-acl">*llanqi</AUni> -<AUni ws="qvm-x-akh">*llanqi</AUni> -<AUni ws="qvm-x-akl">*llanqi</AUni> -<AUni ws="qvm-x-ame">*llanqi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.142" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3e06506f-e821-488c-9be9-42267c0e6c0d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llanqi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a1536b3b-aba3-4042-9180-c4640d58a86c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ee32fee2-047f-4c5a-841c-9069e8f757cd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llanqi 
\entryTyp root 
\gENG sandal 
\gSPN ojota 
\e *llanqi 
\c N0 V1 
\mp +FinalI 
\ach langui 
\akh lanqi 
\acl langui / _# 
\acl langui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl langue +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lanqi / _# 
\akl lanqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lanqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lanqi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="6335fd7e-0903-4ba6-a248-56d3c7b9471f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ra:ta</AUni> -<AUni ws="qvm-x-acl">ra:ta</AUni> -<AUni ws="qvm-x-akh">ra:ta</AUni> -<AUni ws="qvm-x-akl">ra:ta</AUni> -<AUni ws="qvm-x-ame">ra:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rata</AUni> -<AUni ws="qvm-x-acl">+rata</AUni> -<AUni ws="qvm-x-akh">+rata</AUni> -<AUni ws="qvm-x-akl">+rata</AUni> -<AUni ws="qvm-x-ame">+rata</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.285" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c562dedc-58f7-4d10-94f5-15ca0263b2d7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rata</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3031743a-cc9d-4ded-bd3c-806e158c1388" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2c571ed8-0c95-46c3-b1cc-b30632c08be8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rata 
\entryTyp root 
\gENG rat 
\gSPN rata 
\e +rata 
\c N0 
\ach ra:ta 
\akh ra:ta 
\acl ra:ta 
\akl ra:ta 
\ame ra:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="63374476-5fd8-403c-874e-bab1f8089562" ownerguid="0aae1951-4d5b-45a0-853c-1839764c9862"> -<ExampleWords> -<AUni ws="en">shorten, shrink something</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to making something shorter?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="633931ac-4e3c-421b-900c-6b4831d3ef2c" ownerguid="8f68d85f-70f8-4662-9b4b-1dd2900a002a"> -<ExampleWords> -<AUni ws="en">peck</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) How do birds eat?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6339d20b-014e-473a-ac82-e0003bf10b2a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pachun</AUni> -<AUni ws="qvm-x-acl">pachun</AUni> -<AUni ws="qvm-x-akh">pachun</AUni> -<AUni ws="qvm-x-akl">pachun</AUni> -<AUni ws="qvm-x-ame">pachun</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*patru</AUni> -<AUni ws="qvm-x-acl">*patru</AUni> -<AUni ws="qvm-x-akh">*patru</AUni> -<AUni ws="qvm-x-akl">*patru</AUni> -<AUni ws="qvm-x-ame">*patru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.769" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="adbd8389-d4d7-4d75-b914-579ae027c710" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*patru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1d5e3174-2a13-4ba1-8b9c-1ecb0638ccea" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cb4cbcd4-1581-43eb-8abe-ef0bf860ab7f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *patru 
\entryTyp root 
\gENG stomach 
\gSPN barriga 
\e *patru 
\c N0 
\mp +FinalC 
\ach pachun 
\akh pachun 
\acl pachun 
\akl pachun 
\ame pachun</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="633c921f-0455-4efd-a16f-7443b9da64b1" ownerguid="de8cc82b-a6bb-411d-8ec6-da92f915f422"> -<Form> -<AUni ws="qvm-x-ach">vez</AUni> -<AUni ws="qvm-x-acl">vez</AUni> -<AUni ws="qvm-x-akh">vez</AUni> -<AUni ws="qvm-x-akl">vez</AUni> -<AUni ws="qvm-x-ame">vez</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="633d3e03-c114-4e59-a49f-c01fcb951bb9" ownerguid="3ef84bc3-3210-4f61-b8dd-c509821e7984"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="633e09df-bb62-4c24-9caf-deb45f73dc4a" ownerguid="7ac829d3-c7e9-4566-b15e-0ba29ecadba2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/V1 V1/V1 V1/V2 V2/V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">DES</AUni> -<AUni ws="es">DES</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e8b765be-2769-4145-855b-1bf2286e6e14" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="63403699-07c1-43f3-a47c-069d6e4316e5" ownerguid="b32a39c4-43ff-4522-aed0-b2d5b8ad7157"> -<Abbreviation> -<AUni ws="en">1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.900" /> -<DateModified val="2022-9-23 16:55:7.900" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to the physical universe. Some languages may not have a single word for the universe and may have to use a phrase such as 'rain, soil, and things of the sky' or 'sky, land, and water' or a descriptive phrase such as 'everything you can see' or 'everything that exists'.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>1A Universe, Creation; 14 Physical Events and States</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Universe, creation</AUni> -</Name> -<OcmCodes> -<Uni>772 Cosmology; 130 Geography</Uni> -</OcmCodes> -<Questions> -<objsur guid="a8d8e14b-f3c0-44a8-af1e-022414f715ff" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="999581c4-1611-4acb-ae1b-5e6c1dfe6f0c" t="o" /> -<objsur guid="b47d2604-8b23-41e9-9158-01526dd83894" t="o" /> -<objsur guid="60364974-a005-4567-82e9-7aaeff894ab0" t="o" /> -<objsur guid="8d47c9ec-80c4-4309-9848-c453dcd71182" t="o" /> -<objsur guid="025da6f4-b1b6-423a-8c0f-b324f531a6f1" t="o" /> -<objsur guid="944cf5af-469e-4b03-878f-a05d34b0d9f6" t="o" /> -<objsur guid="aa57936d-f8a9-4603-8c3d-27abccd13531" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="6342c8bf-55b5-400f-af7e-63055fe6813b" ownerguid="c82fa28f-7e26-489e-a244-4d69cea87b94"> -<Abbreviation> -<AUni ws="en">6.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words for tools and machines. The domains in this section should be used for general tools and machines that are used in a variety of tasks. Specialized tools and machines should be classified under the specific work or activity for which they are used.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>6 Artifacts; 6A Artifacts; 6W Miscellaneous</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Tool</AUni> -</Name> -<OcmCodes> -<Uni>410 Tools and Appliances; 412 General Tools; 413 Special Tools; 414 Miscellaneous Hardware; 417 Apparatus</Uni> -</OcmCodes> -<Questions> -<objsur guid="90232b86-d2b8-4b16-af53-775a207a47e9" t="o" /> -<objsur guid="0e990331-a1f8-4056-aafc-c5870841a527" t="o" /> -<objsur guid="c4b44df1-fd1c-4864-bf7b-61d2b180cfa2" t="o" /> -<objsur guid="30a5d4c9-0ae3-4708-97f3-78b706f7d517" t="o" /> -<objsur guid="f9469bbb-83a4-4c74-b556-ad31b0858754" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="0d972590-5947-4983-a092-443697baec24" t="r" /> -<objsur guid="4415aff1-4d74-463e-a25d-9832c7477329" t="r" /> -<objsur guid="64493789-1c2c-4b24-a7e6-f00ff9be923e" t="r" /> -<objsur guid="bd4a2527-f66c-4f48-922e-8b180bba8ef6" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="efe8e7b5-e008-4a3a-b3e1-23ae03a0083e" t="o" /> -<objsur guid="65c68427-2e20-42b2-8f49-623055ea9246" t="o" /> -<objsur guid="62964baf-fea6-4d8e-8509-d312bff8761a" t="o" /> -<objsur guid="be4ab208-1fa0-463f-9ca0-4c7e3e03aafd" t="o" /> -<objsur guid="5cd2f365-2d84-451e-9f2d-bc2561eff909" t="o" /> -<objsur guid="b2fee662-c451-4d32-aca5-a913ca0b2164" t="o" /> -<objsur guid="eca46133-c350-4573-a349-9b7ce11b6fa8" t="o" /> -<objsur guid="3aec74e5-6cfd-46d2-b26f-503fad761583" t="o" /> -<objsur guid="7575d654-e528-4fe0-85eb-481b0e6654bb" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="634336d9-8441-46d2-9b0f-628e8024620a" ownerguid="efef45bd-26be-46f8-b85b-424be55bcdac"> -<ExampleWords> -<AUni ws="en">new, young</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe an organization that has existed for a short time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6343fbf0-50ee-45d0-8381-8be32cb0b40a" ownerguid="0c1bcc98-9bc3-4da0-8eac-ff8a6eecbf84"> -<ExampleWords> -<AUni ws="en">innocent man, innocent party, free man</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the person who is acquitted?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="634451d5-2979-45f1-a9c4-9c41670421e6" ownerguid="c9741b97-ad50-465c-a4ca-b21d488f45fe"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Thoughts and ideas belong to the <spiritual> realm.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">disembodied, extramundane, extrasensory, immaterial, impalpable, incorporeal, instinctive, intangible, intellectual, libidinal, life, mental, metaphysical, nonphysical, nonmaterial, numinous, otherworldly, preternatural, psychic, psychological, rational, reasoning, spiritual, spiritualist, subjective, supernatural, transcendent, transcendental, unbodied, unearthly, unseen, unworldly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is non-physical?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6348aa4e-0736-49e9-ac45-ee1c6bda46ab" ownerguid="095e25b2-3b28-4ff9-a32a-ff660cd188df"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fingernail</AUni> -<AUni ws="es">uña</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="30110333-e055-4d05-917a-2c3298dc9a00" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="63494b6a-462e-4971-a0b8-5266c53ae274"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">galpa</AUni> -<AUni ws="qvm-x-acl">galpa</AUni> -<AUni ws="qvm-x-akh">qalpa</AUni> -<AUni ws="qvm-x-akl">qalpa</AUni> -<AUni ws="qvm-x-ame">qalpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qallpa</AUni> -<AUni ws="qvm-x-acl">*qallpa</AUni> -<AUni ws="qvm-x-akh">*qallpa</AUni> -<AUni ws="qvm-x-akl">*qallpa</AUni> -<AUni ws="qvm-x-ame">*qallpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.74" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="21719dcb-f831-43f2-a17e-1dc450d1198e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qallpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3d849f01-0fce-4fd4-ba33-bfb9e840bf93" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4c130a0a-e63c-4837-a2d0-a8f3fcb49695" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qallpa 
\entryTyp root 
\gENG make.smooth 
\gSPN hacer.suave 
\e *qallpa 
\c N0 V1 
\ach galpa 
\akh qalpa 
\acl galpa 
\akl qalpa 
\ame qalpa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="634a59bc-58b3-4051-9f07-870cbdcb66fe" ownerguid="ff989f79-e78b-4864-8615-6fd902ed236b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="635038c2-e732-44f2-a14e-afd6e75e12fb" ownerguid="1f78d7ca-860f-47c2-84ce-f6c8f2c643f7"> -<Form> -<AUni ws="qvm-x-ach">cuchillu</AUni> -<AUni ws="qvm-x-acl">cuchillu; cuchillu; cuchillo</AUni> -<AUni ws="qvm-x-akh">cuchillu</AUni> -<AUni ws="qvm-x-akl">cuchillu; cuchillu; cuchillo</AUni> -<AUni ws="qvm-x-ame">cuchillu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="63524f74-763c-4e45-858d-34e637785aac" ownerguid="78fa2d13-99e3-41ee-8b4e-df2d846c0515"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 30.32 Tsaynogpis acramushag muru muru cabracunata y taulish cabracunata.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="63550092-53cc-4363-b6b8-4f516115d8a6" ownerguid="38d33d92-63de-42d4-9191-5d16f397a23a" /> -<rt class="CmDomainQ" guid="635549d4-61ae-459b-90e4-0c6894082bdd" ownerguid="f5642647-9b9c-499b-a66e-349593c863f1"> -<ExampleWords> -<AUni ws="en">keep silent, keep quiet, say nothing, zip your lip, shut up, refrain from talking</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to not talking?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="635779b6-c50d-487d-a8f2-be715a4bf722" ownerguid="66eea5ae-7a9a-4cda-9c78-59a943cec536"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">g</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">g</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">q</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">q</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">q</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7feef4b7-a285-4201-a3a4-057f77618b78" t="r" /> -</Morph> -<Msa> -<objsur guid="964f8962-17d5-4738-8902-97236137c419" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="635b3ff6-8bb8-4f6b-af24-69fbe749f746" ownerguid="dc0a84c0-a16d-490a-bf52-1f539844011b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bad.life</AUni> -<AUni ws="es">mala maña</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2d906540-9a74-440c-b519-d2bc6e87a111" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoAffixAllomorph" guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" ownerguid="29f0d6e7-da4c-4fde-85f2-28b642df1d6f"> -<Form> -<AUni ws="qvm-x-ach">pä</AUni> -<AUni ws="qvm-x-acl">pä</AUni> -<AUni ws="qvm-x-akh">pä</AUni> -<AUni ws="qvm-x-akl">pä</AUni> -<AUni ws="qvm-x-ame">pä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="635dee39-173c-4964-9bda-a09e8eddf4c7" ownerguid="a29ebbfa-efa5-4143-b430-9bc2c4151c25"> -<Form> -<AUni ws="qvm-x-ach">gapa</AUni> -<AUni ws="qvm-x-acl">gapa</AUni> -<AUni ws="qvm-x-akh">qapa</AUni> -<AUni ws="qvm-x-akl">qapa</AUni> -<AUni ws="qvm-x-ame">qapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="635f738f-5c2b-495d-914d-b7601df80ef0" ownerguid="3bc961d1-9f4f-4f1b-ada7-b1e9a2928ea4"> -<ExampleWords> -<AUni ws="en">honest, truthful, sincere, straight, open, scrupulous, upright</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a person who tells the truth?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6360eeb4-01f1-4347-a540-7dfe381c1e45" ownerguid="17703d2d-8933-43b5-9ead-2f46c9ced38e"> -<Form> -<AUni ws="qvm-x-ach">gachpa</AUni> -<AUni ws="qvm-x-acl">gachpa</AUni> -<AUni ws="qvm-x-akh">qachpa</AUni> -<AUni ws="qvm-x-akl">qachpa</AUni> -<AUni ws="qvm-x-ame">qachpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="63646be8-6206-42e7-a981-274a81f24a5f" ownerguid="43173510-a91b-4d02-8886-94a995cffdb9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">infant</AUni> -<AUni ws="es">infante</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fab158df-5d1b-4420-b8d2-b8ee108e0210" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="636c6c29-b2c4-4406-b3db-e671b81d6218" ownerguid="94e5ea59-3346-42cf-ad13-04f0029f72c1"> -<Form> -<AUni ws="qvm-x-ach">aypu</AUni> -<AUni ws="qvm-x-acl">aypu; aypo</AUni> -<AUni ws="qvm-x-akh">aypu</AUni> -<AUni ws="qvm-x-akl">aypu; aypo</AUni> -<AUni ws="qvm-x-ame">aypu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="636cd707-7999-474c-a06f-c07e118c34fb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shanglu</AUni> -<AUni ws="qvm-x-acl">shanglu; shanglu; shanglo</AUni> -<AUni ws="qvm-x-akh">shanqlu</AUni> -<AUni ws="qvm-x-akl">shanqlu; shanqlu; shanqlo</AUni> -<AUni ws="qvm-x-ame">shanqlu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shanqllu</AUni> -<AUni ws="qvm-x-acl">*shanqllu</AUni> -<AUni ws="qvm-x-akh">*shanqllu</AUni> -<AUni ws="qvm-x-akl">*shanqllu</AUni> -<AUni ws="qvm-x-ame">*shanqllu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.541" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="53e21bd3-c644-4461-8dd6-77ae2e34707f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shanqllu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="77f5e800-146b-49fa-8443-c3431abbffc2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="09ace5b3-13bb-4aea-b5f8-4bf4996d1126" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shanqllu 
\entryTyp root 
\gENG 
\gSPN 
\e *shanqllu 
\c N0 
\ach shanglu 
\akh shanqlu 
\acl shanglu / _# 
\acl shanglu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shanglo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shanqlu / _# 
\akl shanqlu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shanqlo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shanqlu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="636d70ed-cf52-4b74-8fa3-eab46fe5bab6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gumita</AUni> -<AUni ws="qvm-x-acl">gumita</AUni> -<AUni ws="qvm-x-akh">gumita</AUni> -<AUni ws="qvm-x-akl">gumita</AUni> -<AUni ws="qvm-x-ame">gumita</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vomitar</AUni> -<AUni ws="qvm-x-acl">+vomitar</AUni> -<AUni ws="qvm-x-akh">+vomitar</AUni> -<AUni ws="qvm-x-akl">+vomitar</AUni> -<AUni ws="qvm-x-ame">+vomitar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.424" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f99ab690-d012-4f90-8e1e-4c177720d57a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vomitar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c99ecba4-4c1c-4384-b3e0-ce7c2154be91" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="39abc9a8-1e9a-408e-9449-16662b47afde" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vomitar 
\entryTyp root 
\gENG vomit 
\gSPN vomitar 
\e +vomitar 
\c V2 
\ach gumita 
\akh gumita 
\acl gumita 
\akl gumita 
\ame gumita</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="636e6a15-a7dc-4464-8625-e54fb5e8f350" ownerguid="273ed438-255c-4fec-83dd-089b21984d46"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cilantro</AUni> -<AUni ws="es">culantro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e978ce0a-1aef-4bb8-9e2c-88cc517732b2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="63714a1c-329c-4cc0-8f30-8e9a27f5f90e" ownerguid="96f273b1-b691-4510-bd81-976225c7017f"> -<Form> -<AUni ws="qvm-x-ach">tablïta</AUni> -<AUni ws="qvm-x-acl">tablïta</AUni> -<AUni ws="qvm-x-akh">tablïta</AUni> -<AUni ws="qvm-x-akl">tablïta</AUni> -<AUni ws="qvm-x-ame">tablïta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="6372ac63-f32c-4de0-be7f-10f996d85895" ownerguid="50d9d887-1375-4164-90af-eb29f5e73292"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="6374215d-3a97-402a-b78f-f12c7c1796e0" ownerguid="efe7b1e6-1ac3-4fba-bec1-7a75ac3fe65a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">perrito</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9c2ab099-51fd-4ced-94cb-e2a27f461d22" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="63786f9d-9f35-489c-9abe-c82cf5a2f3ad" ownerguid="aa3f7eae-01c2-4fb6-85b1-bf00f119ae38"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="637881c7-91d2-47d5-a812-501bb96fa1ea" ownerguid="6fb6928b-fa1e-4c9b-aa84-df8eccfc5900"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6379394c-efad-42d8-9a80-75bf07d62864" ownerguid="4260e110-7b04-4d40-9391-486a57aa3031"> -<ExampleWords> -<AUni ws="en">mature (v), grow up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to becoming mature?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6379f853-14de-48e9-a866-38ebe315dc44" ownerguid="c60cf6a1-7868-4536-ac73-387bfa26e04b"> -<ExampleWords> -<AUni ws="en">rebellious, revolutionary, defiant, mutinous, radical</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe a rebel?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="637ecef8-f50f-46de-a301-0558b460a896" ownerguid="519bec6f-2db3-4703-a93f-b3da331d49a3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">delouse</AUni> -<AUni ws="es">despiojar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b39ee336-8703-484b-9bd6-2b94e4f2a47c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="63802f24-056b-41b9-9046-1daf869fa622"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsagla</AUni> -<AUni ws="qvm-x-acl">tsagla</AUni> -<AUni ws="qvm-x-akh">tsaqla</AUni> -<AUni ws="qvm-x-akl">tsaqla</AUni> -<AUni ws="qvm-x-ame">tsaqla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chaqlla.n</AUni> -<AUni ws="qvm-x-acl">*chaqlla.n</AUni> -<AUni ws="qvm-x-akh">*chaqlla.n</AUni> -<AUni ws="qvm-x-akl">*chaqlla.n</AUni> -<AUni ws="qvm-x-ame">*chaqlla.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.284" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4563c04a-ebe3-4899-8d67-53d326bf45c2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chaqlla.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="20b29a54-4436-41f8-b4ca-2529651db539" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c2bc1b5e-ede0-4924-8f14-91fd344932dd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chaqlla.n 
\entryTyp root 
\gENG sub.roofing 
\gSPN techado.inicial 
\e *chaqlla.n 
\c N0 
\ach tsagla 
\akh tsaqla 
\acl tsagla 
\akl tsaqla 
\ame tsaqla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="6382154a-ce1c-4943-8430-98dc540f4f7b" ownerguid="dd06cfae-5428-49b9-921e-935ceb6e6c21"> -<Form> -<AUni ws="qvm-x-ach">lauma</AUni> -<AUni ws="qvm-x-acl">lauma</AUni> -<AUni ws="qvm-x-akh">lawma</AUni> -<AUni ws="qvm-x-akl">lawma</AUni> -<AUni ws="qvm-x-ame">lawma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="638679c7-1c7c-41da-ab60-0ac7e98fcd72" ownerguid="f02ae505-d6b7-4b30-9d97-8505d0d1a0c7"> -<Abbreviation> -<AUni ws="en">9.6.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.720" /> -<DateModified val="2022-9-23 16:55:8.720" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for conjunctions that simply move the discourse forward without any specific relationship indicated between what comes before and what comes after.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>91A Markers of Transition</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Markers of transition</AUni> -</Name> -<Questions> -<objsur guid="d9340949-d9f6-4138-ad2a-ec17a29f34b1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="638a5fec-c76f-4f8c-b395-4d8be3400239"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rasca</AUni> -<AUni ws="qvm-x-acl">rasca</AUni> -<AUni ws="qvm-x-akh">rasca</AUni> -<AUni ws="qvm-x-akl">rasca</AUni> -<AUni ws="qvm-x-ame">rasca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rascar</AUni> -<AUni ws="qvm-x-acl">+rascar</AUni> -<AUni ws="qvm-x-akh">+rascar</AUni> -<AUni ws="qvm-x-akl">+rascar</AUni> -<AUni ws="qvm-x-ame">+rascar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.277" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5e070012-82f2-47bf-998f-1ea207884255" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rascar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ba38bd6a-cb0d-4a47-9551-3f14a6835e96" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e5227f34-4f69-49ba-bc45-ca61a482ae17" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rascar 
\entryTyp root 
\gENG scratch 
\gSPN rascar 
\e +rascar 
\c V1 
\ach rasca 
\akh rasca 
\acl rasca 
\akl rasca 
\ame rasca 
\i 1sa 21.13 Tsaymi pasaypa löcutucushpan wayi puncucunacho imaycatapis lutala rascacachar escribergan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="638ca42b-918d-450f-ad61-074b9037f2c4" ownerguid="0ee5b933-f1ab-485f-894a-51fe239cb726"> -<ExampleWords> -<AUni ws="en">forest, woods, grove, stand</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a group of trees?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="638e81ea-1800-4d98-82a7-2bf320094fbe" ownerguid="8403401a-498b-4e78-997e-a450a11d4c5d" /> -<rt class="LexSense" guid="638f94c2-59fd-4691-ba09-21e53ef10613" ownerguid="3055338f-eccc-4193-85b5-a44ef560434e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="12415a26-0388-48b0-99cb-d066df205d60" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6390f4e1-0a30-4eef-af19-4d25f415338f" ownerguid="a3634e20-56c9-429a-9b29-fc52ef5f02ae" /> -<rt class="MoStemAllomorph" guid="6392e4c0-2fe4-4dac-9609-144539bc81e7" ownerguid="341d5db4-d517-4c25-97d7-704820bf1d50"> -<Form> -<AUni ws="qvm-x-ach">documentu; documento</AUni> -<AUni ws="qvm-x-acl">documentu; documentu; documento</AUni> -<AUni ws="qvm-x-akh">documentu; documento</AUni> -<AUni ws="qvm-x-akl">documentu; documentu; documento</AUni> -<AUni ws="qvm-x-ame">documentu; documento</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="639575ba-776f-4a98-831b-d3e553020d02" ownerguid="cec4a61e-8b09-4f45-8265-ffcb3621a811"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">content</AUni> -<AUni ws="es">contentarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0b42ba43-f970-4c9b-99ed-36b0555c85b6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="63981f1b-eeab-4fca-ac78-7637b8099b22" ownerguid="37a8e3a9-6979-4493-bcf3-f4247c60bd1b"> -<Form> -<AUni ws="qvm-x-ach">chusca</AUni> -<AUni ws="qvm-x-acl">chusca</AUni> -<AUni ws="qvm-x-akh">chuska</AUni> -<AUni ws="qvm-x-akl">chuska</AUni> -<AUni ws="qvm-x-ame">chuska</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6399871e-cf57-4efa-b016-169c2ea12075" ownerguid="b2168c7b-a242-4b7a-9248-22638ba4852f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="639a4c69-37ad-4398-82b9-9b01eac2069e" ownerguid="7c6cad26-79c3-403a-a3aa-59babdfcd46f"> -<ExampleWords> -<AUni ws="en">epidemic, plague, outbreak, pestilence</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to a time when many people are sick from the same disease?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="639b8d99-28c7-44de-8975-13650d40c2cd" ownerguid="7ed18a74-27a3-4c44-9d83-94425ceb774c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="639ce4be-4158-4caf-bc40-de3e2d4cdc15" ownerguid="5567d858-a80f-458e-afb2-d67e30f025f3"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 26.12 Palangänu runaga mana tantyacog runapitapis mas peormi caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="639d387e-fed9-4ef5-9fe8-8788d1347c72"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chacwan</AUni> -<AUni ws="qvm-x-acl">chacwan</AUni> -<AUni ws="qvm-x-akh">chakwan</AUni> -<AUni ws="qvm-x-akl">chakwan</AUni> -<AUni ws="qvm-x-ame">chakwan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chakwan</AUni> -<AUni ws="qvm-x-acl">*chakwan</AUni> -<AUni ws="qvm-x-akh">*chakwan</AUni> -<AUni ws="qvm-x-akl">*chakwan</AUni> -<AUni ws="qvm-x-ame">*chakwan</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.264" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d0bb470a-296b-4afe-bd0a-5671c955c37a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chakwan</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="280a78e7-b556-4d01-8c02-63e10b85e34a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="925f26f1-e093-499f-8325-8269ce1186ce" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chakwan 
\entryTyp root 
\gENG old.lady 
\gSPN vieja 
\e *chakwan 
\c N0 
\mp +FinalC 
\ach chacwan 
\akh chakwan 
\acl chacwan 
\akl chakwan 
\ame chakwan</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="63a05e5a-1cee-4523-bdb6-426196666829" ownerguid="ad35b3e0-36f4-4c90-bb88-a670d3635bf2"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="63a0ac7e-ca1c-40b3-8a76-000db00aa649" ownerguid="49f45f97-95f8-4a53-8952-f90147af2ba9"> -<ExampleWords> -<AUni ws="en">exception</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something that is not included in a group?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="63a1be45-7660-4be7-83dd-a5863da2e6e0" ownerguid="e0a98173-161f-4736-9c4d-6cd40ae12f05"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.numb</AUni> -<AUni ws="es">entumecer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="acc5d82d-8b98-4681-bdb2-5092551bf329" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="63a76598-24c8-4a7d-a9e3-aedf517f174c" ownerguid="e0d10625-c887-49bd-9ef9-9ccb13bc4852"> -<Form> -<AUni ws="qvm-x-ach">sirvienti; sirviente</AUni> -<AUni ws="qvm-x-acl">sirvienti; sirvienti; sirviente</AUni> -<AUni ws="qvm-x-akh">sirvienti; sirviente</AUni> -<AUni ws="qvm-x-akl">sirvienti; sirvienti; sirviente</AUni> -<AUni ws="qvm-x-ame">sirvienti; sirviente</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="63a9008f-01cc-4c60-a541-e5178bf41dd6" ownerguid="eac4b58e-1fd7-4ce1-9a68-c7516470e876"> -<ExampleWords> -<AUni ws="en">realize, occur to, dawn on, become aware that, strike, hit, sink in, wake up to the fact that, it clicked</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to realizing something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="63a9b390-5693-4dbc-b71f-cb3ffee752c2" ownerguid="e2f3437a-57e1-4776-9db9-06220d307f3d"> -<Form> -<AUni ws="qvm-x-ach">himnu; himno</AUni> -<AUni ws="qvm-x-acl">himnu; himnu; himno</AUni> -<AUni ws="qvm-x-akh">himnu; himno</AUni> -<AUni ws="qvm-x-akl">himnu; himnu; himno</AUni> -<AUni ws="qvm-x-ame">himnu; himno</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="63a9cf5a-8b45-45bb-ad92-39e059b53463" ownerguid="ccbbd16f-58c5-45c1-bfff-1fba64d9740e"> -<Question> -<AUni ws="en">(8) frequentative: action occurs frequently, not necessarily habitually, nor necessarily on one occasion, as is the iterative.</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="63ac84a0-40f5-463a-87e3-f9cbb48e16cd" ownerguid="ccfb9c3b-2049-4345-8c51-b12d3308741a"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="24788942-e426-42c1-ac99-eee22d797b8c" t="o" /> -<objsur guid="308ebe9f-c557-413d-890e-717100263310" t="o" /> -<objsur guid="112c3108-503b-49b6-b13e-c6abb526c656" t="o" /> -</MorphBundles> -</rt> -<rt class="StTxtPara" guid="63ad3139-0285-4f68-850d-ff478279f673" ownerguid="1b3624a5-d4f7-4190-9e19-d074a59aa870"> -<Contents> -<Str> -<Run ws="qvm-x-akh">juchu</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="d819c07f-2c74-43f6-96c8-5b00bee18afd" t="o" /> -</Segments> -</rt> -<rt class="CmDomainQ" guid="63af5f42-5a71-4449-9701-cbaa8561ddf4" ownerguid="c0d903bf-6502-45dd-9dd8-cff7f022c696"> -<ExampleWords> -<AUni ws="en">estimate, assess, reckon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to determining the amount of something without being exact?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="63afefbf-ab30-4c88-8a72-7308d6021d58" ownerguid="19be5c30-1dd9-4294-a1ed-082d8e88cd95"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="63b0d130-56f6-4f0a-8698-be61f82961be" ownerguid="91070bb9-fcac-4748-8f10-2c80428657d1"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="63b18261-faf3-4ab2-bcb4-7c3ac4d6d6ba" ownerguid="2b893d04-3450-4862-b046-7df6f87272f6"> -<Abbreviation> -<AUni ws="en">6.8.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to dishonest financial practices.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Dishonest financial practices</AUni> -</Name> -<Questions> -<objsur guid="bd03497e-b115-463c-9fc3-773c0392f206" t="o" /> -<objsur guid="b4fdd3b9-c9ca-494c-aea5-8d5d98681281" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="5658ae3d-ea15-44db-bae4-47df792da12e" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="db2232d9-8b17-4920-936f-2b6249c6f7fa" t="o" /> -<objsur guid="d7ae7208-7869-46e3-90c1-676342c3d7af" t="o" /> -<objsur guid="a8ae0ee7-56ca-4bdf-bd9a-c56da3ff9254" t="o" /> -<objsur guid="b4fc91fe-68f7-45a6-8863-75bba1029bef" t="o" /> -<objsur guid="892b66f4-5dfd-4451-a491-4c4fd2179081" t="o" /> -<objsur guid="a36b3354-8598-4228-b779-c7c922b1e61d" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="63b1e6c6-bf42-4ea8-91e5-a47b98422c5f" ownerguid="cd228b14-1b52-4cba-8490-b43ede82c598"> -<Form> -<AUni ws="qvm-x-ach">muca</AUni> -<AUni ws="qvm-x-acl">muca</AUni> -<AUni ws="qvm-x-akh">muka</AUni> -<AUni ws="qvm-x-akl">muka</AUni> -<AUni ws="qvm-x-ame">muka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="63b3e7d5-a767-4b18-894c-dde6921998b7" ownerguid="ab8f12fb-57b0-4d61-8ae0-50d7cbc412df"> -<ExampleWords> -<AUni ws="en">snow (v), fall, snowfall, drift, blow, cover (the ground), blanket (v), snow in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What does the snow do?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="63b5700c-c184-4584-b4dc-0b619f3cdbd2" ownerguid="ea17aba7-6d4e-4dbf-89ea-84a1b1c47647"> -<ExampleWords> -<AUni ws="en">cubic (inch, foot, yard), millilitre, centilitre, decilitre, litre, decalitre, kilolitre, hectolitre, cup, pint, quart, gallon, fluid ounce, dry ounce, peck, bushel, measure, batch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to a unit of volume?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="63b79f0d-17b8-49be-b703-6b434606139b" ownerguid="ed616c83-7e84-417f-9fae-85ecda72faf0"> -<Form> -<AUni ws="qvm-x-ach">atug</AUni> -<AUni ws="qvm-x-acl">atog</AUni> -<AUni ws="qvm-x-akh">atuq</AUni> -<AUni ws="qvm-x-akl">atoq</AUni> -<AUni ws="qvm-x-ame">atuq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="63bcdef5-eaad-4d1f-8764-02ab805f65ea" ownerguid="7c9c6263-9f7d-472c-a4c9-1767015d41fe"> -<ExampleWords> -<AUni ws="en">offer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the act of offering something to someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="63bdd295-2d3a-4e50-8664-895102852a5a" ownerguid="500581df-73f1-4d3c-94db-57a856301460"> -<Form> -<AUni ws="qvm-x-ach">probicha</AUni> -<AUni ws="qvm-x-acl">probicha</AUni> -<AUni ws="qvm-x-akh">probicha</AUni> -<AUni ws="qvm-x-akl">probicha</AUni> -<AUni ws="qvm-x-ame">probicha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="63be33e7-9ca2-468d-9ff8-a1b813aacb74"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chawi</AUni> -<AUni ws="qvm-x-acl">chawi; chawi; chawe</AUni> -<AUni ws="qvm-x-akh">chawi</AUni> -<AUni ws="qvm-x-akl">chawi; chawi; chawe</AUni> -<AUni ws="qvm-x-ame">chawi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trawi</AUni> -<AUni ws="qvm-x-acl">*trawi</AUni> -<AUni ws="qvm-x-akh">*trawi</AUni> -<AUni ws="qvm-x-akl">*trawi</AUni> -<AUni ws="qvm-x-ame">*trawi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.86" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0a6ddfbf-1b19-4110-9214-1e4d160f2179" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trawi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e19110d1-1b5f-4f64-b90c-2a0eab006612" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6d690091-9077-46c1-b09a-85f1a1c5c2de" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trawi 
\entryTyp root 
\gENG 
\gSPN 
\e *trawi 
\c N0 
\mp +FinalI 
\ach chawi 
\akh chawi 
\acl chawi / _# 
\acl chawi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chawe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chawi / _# 
\akl chawi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chawe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chawi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="63c00edc-b46b-4d62-8198-9ad122e06e73" ownerguid="14784775-37dd-4682-bdcc-b8944da947a5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">SIM2.1</AUni> -<AUni ws="es">SIM2.1</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="995c92aa-8065-4e46-add3-98c79aa138f1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="63c01891-2f2d-4083-9d98-8dfa53fbc5e3" ownerguid="9d428e57-e125-4575-b165-9bc6fd4ec507"> -<ExampleWords> -<AUni ws="en">dissuade</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to persuading someone not to do something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="63c2442d-30af-4ff3-8ffb-232e6326bb06" ownerguid="2e97b83d-1152-473f-9cbe-347f0655041a"> -<ExampleWords> -<AUni ws="en">wax, earwax</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What do the ears produce?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="63c4eb57-963d-4e82-83de-b432d74e9d31" ownerguid="4fc734f2-a91d-4693-8caf-e7fe51a2df8a"> -<ExampleWords> -<AUni ws="en">arm, back, chair leg, seat cushion, footrest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the parts of a chair?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="63c51f68-9cbe-4f8f-ac42-9d422ca03d3b" ownerguid="7a386228-f92e-436c-9fd1-c3f3abab6906"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">nga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">nga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">nqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">nqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="5dcad267-89ba-4258-b423-e84c57ba90ed" t="r" /> -</Morph> -<Msa> -<objsur guid="cdacd2fc-4611-457d-b88f-3c9c8bb345b9" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="63c5c110-c2f8-444d-a573-90b8b3bc6109" ownerguid="ddc96103-4bc5-44d3-9412-c57569d2a9f5"> -<ExampleWords> -<AUni ws="en">routine, act, ride, float, booth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to part of a festival or show?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="63c69d11-1101-4870-aeb8-43ee364381b0" ownerguid="b4aa4bbd-8abf-4503-96e4-05c75efd23d5"> -<Abbreviation> -<AUni ws="en">1.1.3.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.932" /> -<DateModified val="2022-9-23 16:55:7.932" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to lightning and thunder.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>14D Thunder and Lightning</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Lightning, thunder</AUni> -</Name> -<Questions> -<objsur guid="a479d1c1-4eb6-4447-90e1-9c95aaf1f729" t="o" /> -<objsur guid="061ff6e3-9dc9-470a-85e6-9c8ed8ad9c3d" t="o" /> -<objsur guid="d6496561-7c95-4c05-82b2-8ef7c66967da" t="o" /> -<objsur guid="64156821-c6a7-43b4-8695-84294af2b044" t="o" /> -<objsur guid="538efc4d-d6fa-417b-a836-c9ccc450db76" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="63d011ce-a69e-4122-9f69-4a3e4750c9c1" ownerguid="5d23894f-6fa9-4d32-9376-4445b87e906d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ec49278f-13c3-4a3f-8610-07ca758fe2a1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="63d02647-9500-4696-9ff8-9f2bc467323b" ownerguid="a312b997-99c7-4b9c-bc3c-3022f4b11091"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="63d1d1db-6359-423a-a0e0-214b48aa9434" ownerguid="f8f93501-e170-4336-9dce-cd19d186bb0c"> -<Form> -<AUni ws="qvm-x-ach">tsacla</AUni> -<AUni ws="qvm-x-acl">tsacla</AUni> -<AUni ws="qvm-x-akh">tsakla</AUni> -<AUni ws="qvm-x-akl">tsakla</AUni> -<AUni ws="qvm-x-ame">tsakla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="63d7756e-2388-447c-8e80-bcfead5b05df"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cebatsi</AUni> -<AUni ws="qvm-x-acl">cebatsi; cebatse</AUni> -<AUni ws="qvm-x-akh">cebatsi</AUni> -<AUni ws="qvm-x-akl">cebatsi; cebatse</AUni> -<AUni ws="qvm-x-ame">cebatsi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cebatsi</AUni> -<AUni ws="qvm-x-acl">+cebatsi</AUni> -<AUni ws="qvm-x-akh">+cebatsi</AUni> -<AUni ws="qvm-x-akl">+cebatsi</AUni> -<AUni ws="qvm-x-ame">+cebatsi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.100" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2fadb2ee-e65d-4b03-891b-744bcc302f86" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cebatsi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d0e2aa4a-5be8-4098-9325-1cc87b5a6c92" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6ada1ea0-0fd7-43c7-9226-c40fa9911907" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cebatsi 
\entryTyp root 
\gENG fatten 
\gSPN engordar 
\e +cebatsi 
\c V2 
\mp +FinalI 
\ach cebatsi 
\akh cebatsi 
\acl cebatsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl cebatse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cebatsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cebatse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cebatsi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="63e241cb-3471-43ad-8545-4d005f632d4d" ownerguid="2d82a268-ad4b-4c6f-b1f2-0d79d4daa4f8"> -<Form> -<AUni ws="qvm-x-ach">ca</AUni> -<AUni ws="qvm-x-acl">ca</AUni> -<AUni ws="qvm-x-akh">ka</AUni> -<AUni ws="qvm-x-akl">ka</AUni> -<AUni ws="qvm-x-ame">ka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="63e257b6-95e3-49a8-8a20-af9e06ea152a" ownerguid="dbdbccf2-3e63-4265-a6ff-265057f2a553"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">yawn</AUni> -<AUni ws="es">bostezar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d41a5acd-6c92-4109-8756-4fa1137c392c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="63e6d351-47f9-4896-8ea0-8618ee2451c4" ownerguid="a1cb1357-3a51-4f83-8a08-4c322cd134aa"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="63e7e607-7ad1-4cb5-89cf-de362007b4bb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guita:rra</AUni> -<AUni ws="qvm-x-acl">guita:rra</AUni> -<AUni ws="qvm-x-akh">guita:rra</AUni> -<AUni ws="qvm-x-akl">guita:rra</AUni> -<AUni ws="qvm-x-ame">guita:rra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+guitarra</AUni> -<AUni ws="qvm-x-acl">+guitarra</AUni> -<AUni ws="qvm-x-akh">+guitarra</AUni> -<AUni ws="qvm-x-akl">+guitarra</AUni> -<AUni ws="qvm-x-ame">+guitarra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.841" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="65aeb7dd-f6c6-476d-8b20-dbaa1aff6516" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+guitarra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dd397548-119f-4bb0-b534-b57889d62fe2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6dde6e01-3fd4-4221-9beb-68a3c37226a1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +guitarra 
\entryTyp root 
\gENG guitar 
\gSPN guitarra 
\e +guitarra 
\c N0 
\ach guita:rra 
\akh guita:rra 
\acl guita:rra 
\akl guita:rra 
\ame guita:rra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="63e89ce8-3ec7-43ad-a057-0600eab70576" ownerguid="9b267cc1-983c-407a-98d2-1e27add6292c"> -<ExampleWords> -<AUni ws="en">tie a knot, knot a rope, braid</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to tying a knot?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="63f56b08-4fd4-4ec5-93bf-bdf73c7134b0" ownerguid="66abfbe5-e011-48de-8773-905f1b1ce215"> -<ExampleWords> -<AUni ws="en">potter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What is a person called who works with clay?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="63f5d940-5d28-4e00-80a4-a0c68655b1b3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">vaina</AUni> -<AUni ws="qvm-x-acl">vaina</AUni> -<AUni ws="qvm-x-akh">vaina</AUni> -<AUni ws="qvm-x-akl">vaina</AUni> -<AUni ws="qvm-x-ame">vaina</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vaina</AUni> -<AUni ws="qvm-x-acl">+vaina</AUni> -<AUni ws="qvm-x-akh">+vaina</AUni> -<AUni ws="qvm-x-akl">+vaina</AUni> -<AUni ws="qvm-x-ame">+vaina</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.332" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0cdf1c56-bac3-4694-b9e7-f27e2e6e0f60" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vaina</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b631bb2a-e901-46eb-8337-98b23ff37855" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="30b64577-5180-4dfa-9e8a-c8a7cc746f57" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vaina 
\entryTyp root 
\gENG sheath 
\gSPN 
\e +vaina 
\c N0 
\ach vaina 
\akh vaina 
\acl vaina 
\akl vaina 
\ame vaina</Run> -</AStr> -</Custom> -</rt> -<rt class="MoAffixAllomorph" guid="63f7a44b-a975-4608-9455-989e95a699f2" ownerguid="1610a4f0-ffe4-41ad-8fa2-90f1615ece63"> -<Form> -<AUni ws="qvm-x-ach">∅</AUni> -<AUni ws="qvm-x-acl">∅</AUni> -<AUni ws="qvm-x-akh">∅</AUni> -<AUni ws="qvm-x-akl">∅</AUni> -<AUni ws="qvm-x-ame">∅</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="063e4b2d-a4d5-40c6-b955-bf07f3c888ec" t="r" /> -<objsur guid="1929b7d2-c2d8-4659-8d3c-ab5b69aaf7f9" t="r" /> -<objsur guid="75897320-98dd-4258-8b5d-d9c6e0f1847e" t="r" /> -</PhoneEnv> -</rt> -<rt class="MoStemMsa" guid="63faaa79-3c79-45ef-a968-888145d328f6" ownerguid="65f09e08-0ad8-4540-a584-a3723218b553"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="63fb400e-750b-470a-b6d5-33cdd0969040" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<ExampleWords> -<AUni ws="en">unfortunate, regrettable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What words describe something that you wish had not happened?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6404c0d1-aa17-420e-9299-2dc87701f4be" ownerguid="64e3d6b1-1d61-454c-97ab-e1d7cb0a8917"> -<ExampleWords> -<AUni ws="en">reassure, reassuring, reassurance, reassuringly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to causing someone to not feel nervous?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="64081d37-ca37-4f11-aa6a-6be5419f12b8"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">23</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="6408826e-91a8-435f-9015-68212ccf7eaa" ownerguid="bbde4375-924b-4202-b8cd-915ccbe85448"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="640c18a6-8c6b-47f5-a4ca-c2d3a00fc320" ownerguid="ff2767a2-d657-4719-a16a-a746592af088"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="640c6dd5-050d-4eb5-81d7-4a036fd584d7" ownerguid="09fcebfc-65b6-4d70-93a0-bad0a7419e7e"> -<Form> -<AUni ws="qvm-x-ach">yätsi</AUni> -<AUni ws="qvm-x-acl">yätsi; yätse</AUni> -<AUni ws="qvm-x-akh">yätsi</AUni> -<AUni ws="qvm-x-akl">yätsi; yätse</AUni> -<AUni ws="qvm-x-ame">yätsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="640da054-d8c7-419b-a885-52edc06ea982" ownerguid="18595df7-1c69-40db-a7c1-74d490115c0c"> -<ExampleWords> -<AUni ws="en">air pressure, vacuum</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to how much air is in something?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="640e3dd8-563f-4729-8873-67d75782032c" ownerguid="45961110-4386-4c10-9b38-f378cec5f97d"> -<Form> -<AUni ws="qvm-x-ach">napag</AUni> -<AUni ws="qvm-x-acl">napag</AUni> -<AUni ws="qvm-x-akh">napaq</AUni> -<AUni ws="qvm-x-akl">napaq</AUni> -<AUni ws="qvm-x-ame">napaq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="640fb35a-60c2-4843-834a-699959c45493" ownerguid="1447278f-efff-4807-b9ea-c487dea1ba5e"> -<ExampleWords> -<AUni ws="en">peanut, groundnut, cashew, walnut, almond, cola nut, palm nut, coconut, cocoa nut</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What types of nuts are eaten?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="64156821-c6a7-43b4-8695-84294af2b044" ownerguid="63c69d11-1101-4870-aeb8-43ee364381b0"> -<ExampleWords> -<AUni ws="en">thunder, thunderstorm, thundercloud, thunderhead</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to thunder?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6415b209-5f89-4a7d-b0f1-0e99d4e35422"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">liuqui</AUni> -<AUni ws="qvm-x-acl">liuqui; liuque</AUni> -<AUni ws="qvm-x-akh">liwki</AUni> -<AUni ws="qvm-x-akl">liwki; liwke</AUni> -<AUni ws="qvm-x-ame">liwki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lliwki</AUni> -<AUni ws="qvm-x-acl">*lliwki</AUni> -<AUni ws="qvm-x-akh">*lliwki</AUni> -<AUni ws="qvm-x-akl">*lliwki</AUni> -<AUni ws="qvm-x-ame">*lliwki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.215" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d12ee35f-d5fc-4610-bc20-aa10d3260d62" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lliwki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c3645b25-53f3-4750-937f-87c376d8dae1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="143d2f31-4fcc-4292-8a87-59663428f6fb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lliwki 
\entryTyp root 
\gENG rip 
\gSPN partir 
\e *lliwki 
\c V1 
\mp +FinalI 
\ach liuqui 
\akh liwki 
\acl liuqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl liuque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl liwki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl liwke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame liwki</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="6415f0b4-7b54-4636-8693-e4f1d88de901" ownerguid="5200b698-99c0-41ab-9e53-9026dedabd15"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a094c688-4926-460e-9706-cde7c04475b1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="64172332-c311-4875-9d3f-5d68db518744" ownerguid="21d540f7-a318-4175-a931-00a88c0fb93e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">a.grass</AUni> -<AUni ws="es">una.hierba</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="72a8d191-c0d9-412b-aa25-6dcbab9f228a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="6418a6e1-4188-41ff-8631-01a87f87c9a5" ownerguid="544b07f9-d735-4147-8613-18acb6d83838"> -<Form> -<AUni ws="qvm-x-ach">guewa</AUni> -<AUni ws="qvm-x-acl">guewa</AUni> -<AUni ws="qvm-x-akh">qewa</AUni> -<AUni ws="qvm-x-akl">qewa</AUni> -<AUni ws="qvm-x-ame">qiwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoDerivAffMsa" guid="6418da9a-4b09-47ef-85d7-918125e834ac" ownerguid="45961110-4386-4c10-9b38-f378cec5f97d"> -<FromPartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</FromPartOfSpeech> -<ToPartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</ToPartOfSpeech> -</rt> -<rt class="LexEntry" guid="641c0fe9-e019-433f-8d77-e80584d03dc5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wantis</AUni> -<AUni ws="qvm-x-acl">wantis</AUni> -<AUni ws="qvm-x-akh">wantis</AUni> -<AUni ws="qvm-x-akl">wantis</AUni> -<AUni ws="qvm-x-ame">wantis</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+guantes</AUni> -<AUni ws="qvm-x-acl">+guantes</AUni> -<AUni ws="qvm-x-akh">+guantes</AUni> -<AUni ws="qvm-x-akl">+guantes</AUni> -<AUni ws="qvm-x-ame">+guantes</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.821" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7149dbab-f1b1-432d-82f9-31cb0dbeb950" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+guantes</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1ff49b50-5e49-40c3-8542-c4d8a5846e86" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a3d09a61-ccca-4b8a-aa05-a9da2453d4ad" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +guantes 
\entryTyp root 
\gENG gloves 
\gSPN guantes 
\e +guantes 
\c N0 
\mp +assimilated 
\ach wantis 
\akh wantis 
\acl wantis 
\akl wantis 
\ame wantis 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="641ce610-2818-47d1-a2cc-6d3ea09a9e08" ownerguid="b2ba130f-bc3c-4d19-b108-08ff1bc8e9ac"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="21d421a5-5548-4095-b5d6-bc943dce9df1" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">duck</AUni> -<AUni ws="es">encogerse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5418e6f2-01a0-45d9-9fb1-35e9fac4aa33" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="6420d321-f75a-4083-a4cf-b11a45e5b3f8" ownerguid="5a48d8b8-ccea-4ad3-8577-00bc6a9522bb"> -<Form> -<AUni ws="qvm-x-ach">platïllu</AUni> -<AUni ws="qvm-x-acl">platïllu; platïllu; platïllo</AUni> -<AUni ws="qvm-x-akh">platïllu</AUni> -<AUni ws="qvm-x-akl">platïllu; platïllu; platïllo</AUni> -<AUni ws="qvm-x-ame">platïllu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6423113e-21e0-41e4-99dd-204d55e66913" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<ExampleWords> -<AUni ws="en">stride</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to the length of your step?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="64296845-bcf0-4ef1-9542-5bd7cbfefa82" ownerguid="c45e315b-de04-4199-88ac-9a4ac3a59cd7"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="642e5e65-e029-45c3-8b68-50127da57584" ownerguid="7bf05f4e-909f-40ca-b742-9be21eba9fbb"> -<Question> -<AUni ws="en">(1) ability: the agent of the verb has the mental or physical ability to complete the action of the main verb.</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="642f7dc4-81ae-4fac-9277-b29ebb3c30d9" ownerguid="245441c8-7471-41c6-93d8-42315aa19428"> -<Form> -<AUni ws="qvm-x-ach">shagshi</AUni> -<AUni ws="qvm-x-acl">shagshi; shagshe</AUni> -<AUni ws="qvm-x-akh">shaqshi</AUni> -<AUni ws="qvm-x-akl">shaqshi; shaqshe</AUni> -<AUni ws="qvm-x-ame">shaqshi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="642ff468-e6c8-4fd0-8f52-262efa8f7774" ownerguid="e7caa24f-155d-47cd-946d-cc0d06dfc764"> -<Abbreviation> -<AUni ws="en">4.3.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.225" /> -<DateModified val="2022-9-23 16:55:8.225" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to hating someone--to want something bad to happen to someone, or to want to do something bad to someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88Z Hate, Hateful</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Hate, ill will</AUni> -</Name> -<Questions> -<objsur guid="4084ca2c-07c4-4550-9447-a386bef57423" t="o" /> -<objsur guid="f1d7fcc8-3755-42a1-ad99-da5de6329293" t="o" /> -<objsur guid="bda63b23-dc9c-4642-a0ae-e368c0e04146" t="o" /> -<objsur guid="f07c6be8-28e7-4c51-a22f-18a88b5ce2be" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="97393c87-07e2-4633-88f9-c8bf4d9b935c" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="642ffcbe-afea-4ad7-a674-9aaca076c54e" ownerguid="faa34db3-fb57-4fdc-b8c3-c40f97247910"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">crooked</AUni> -<AUni ws="es">torcido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="73ddd8c2-9462-4268-b46a-e71cd1ff4436" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="64307c2e-b726-43a0-80cd-291f16709946" ownerguid="481d05f1-82d3-4ef6-931f-52182fab0eb5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mika</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d7a52586-e3cb-47a4-bb0f-95c98b351afd" t="r" /> -</Morph> -<Msa> -<objsur guid="f69667c3-a01d-49bd-8565-d45a284be800" t="r" /> -</Msa> -<Sense> -<objsur guid="5cd4d841-a1fa-4c17-a0ec-c8f5472702f2" t="r" /> -</Sense> -</rt> -<rt class="CmSemanticDomain" guid="6430b89c-7077-418a-a558-51f0e3f2c1a6" ownerguid="2810998c-d6cc-47a3-a946-66d0986a2767"> -<Abbreviation> -<AUni ws="en">7.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.528" /> -<DateModified val="2022-9-23 16:55:8.528" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to carrying something--to pick something up and hold it while moving oneself.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15X Carry, Bear</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Carry</AUni> -</Name> -<OcmCodes> -<Uni>482 Burden Carrying; 483 Weight Moving</Uni> -</OcmCodes> -<Questions> -<objsur guid="0b84666d-685c-453c-9a6c-6b7fa128e806" t="o" /> -<objsur guid="5f8a504c-16a0-4537-b792-65ff4212520e" t="o" /> -<objsur guid="2c85b91b-199a-4480-8106-42960abafc84" t="o" /> -<objsur guid="7847e1f7-f4bf-4f41-b8dc-1de11cfaedbc" t="o" /> -<objsur guid="a01deb5d-e216-4a87-a52b-45f4aee7a8ee" t="o" /> -<objsur guid="e08e3a59-849d-4fcd-bfb6-39857aef7497" t="o" /> -<objsur guid="756dee64-03cb-45e3-8c3d-272c4fa5aaa8" t="o" /> -<objsur guid="76c05d9e-fb20-487a-9ed1-424668d25f8b" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="62964baf-fea6-4d8e-8509-d312bff8761a" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="7831223b-e5ed-4186-a321-94e9ae72a27d" t="o" /> -<objsur guid="ef025cd9-dd92-442b-a8f9-fe7ac944ccec" t="o" /> -<objsur guid="05371057-2fe4-49ef-b203-f5bd6727645e" t="o" /> -<objsur guid="06905a7e-47f4-4c86-afea-a4175295b566" t="o" /> -<objsur guid="28a37d39-8347-4254-99bf-8e3c37dbf8a8" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="64315b7a-e15e-4c0f-bd15-d75619678c15" ownerguid="78486b1a-d833-47ef-8a6f-6bed151539c0"> -<Form> -<AUni ws="qvm-x-ach">shimpa</AUni> -<AUni ws="qvm-x-acl">shimpa</AUni> -<AUni ws="qvm-x-akh">shimpa</AUni> -<AUni ws="qvm-x-akl">shimpa</AUni> -<AUni ws="qvm-x-ame">shimpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="6431cf4c-14ea-4065-a844-ae24455652a3" ownerguid="8c2d4caf-fbe7-4901-a284-cf3ef41bdce3"> -<Form> -<AUni ws="qvm-x-ach">Cristo; Cristu</AUni> -<AUni ws="qvm-x-acl">Cristo; Cristo; Cristu</AUni> -<AUni ws="qvm-x-akh">Cristo; Cristu</AUni> -<AUni ws="qvm-x-akl">Cristo; Cristo; Cristu</AUni> -<AUni ws="qvm-x-ame">Cristo; Cristu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="64347e91-8f49-4870-9f41-a3cd538bf696" ownerguid="273ed438-255c-4fec-83dd-089b21984d46"> -<Form> -<AUni ws="qvm-x-ach">culandru</AUni> -<AUni ws="qvm-x-acl">culandru; culandru; culandro</AUni> -<AUni ws="qvm-x-akh">culandru</AUni> -<AUni ws="qvm-x-akl">culandru; culandru; culandro</AUni> -<AUni ws="qvm-x-ame">culandru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="64367de3-7fca-4995-8ef3-8a561b946bc8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">reza</AUni> -<AUni ws="qvm-x-acl">reza</AUni> -<AUni ws="qvm-x-akh">reza</AUni> -<AUni ws="qvm-x-akl">reza</AUni> -<AUni ws="qvm-x-ame">reza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rezar</AUni> -<AUni ws="qvm-x-acl">+rezar</AUni> -<AUni ws="qvm-x-akh">+rezar</AUni> -<AUni ws="qvm-x-akl">+rezar</AUni> -<AUni ws="qvm-x-ame">+rezar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.348" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b7b29bb4-14c4-438d-abc0-d15f1e9121c8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rezar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9ad9472c-74d8-422c-9c05-5cea83fcb52e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a941e219-39a0-414b-85c3-d612cc1969b2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rezar 
\entryTyp root 
\gENG pray 
\gSPN rezar 
\e +rezar 
\c V1 
\ach reza 
\akh reza 
\acl reza 
\akl reza 
\ame reza</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e" ownerguid="5cc64831-c14a-4dbe-beba-214e725ad041"> -<Abbreviation> -<AUni ws="en">7.2.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.498" /> -<DateModified val="2022-9-23 16:55:8.498" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to walking--moving slowly using your legs.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15C' Walk, Step x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Walk</AUni> -</Name> -<Questions> -<objsur guid="8e28fdef-344d-4d08-8777-33576addac86" t="o" /> -<objsur guid="d11f29cc-b4ab-469a-a5f1-20118548690f" t="o" /> -<objsur guid="61a448ee-180c-4e5e-99eb-2c63563d6133" t="o" /> -<objsur guid="50fdc692-a0f7-4fdb-a0ec-e6719c215404" t="o" /> -<objsur guid="16718756-34bb-472a-ac89-289c986c5763" t="o" /> -<objsur guid="d7f5c406-6c56-4a61-b81a-2e480b02a079" t="o" /> -<objsur guid="9141e125-fbaa-444a-bbb4-34d870da7352" t="o" /> -<objsur guid="6d788e85-c18c-448e-b90f-dd090d17bfb7" t="o" /> -<objsur guid="40bf1f44-8f66-480e-bd7e-677aeaaffaac" t="o" /> -<objsur guid="1648e1ca-f0fe-437a-a87d-15d44b5a0641" t="o" /> -<objsur guid="20c36cdb-240f-44e1-aff6-f24c2dd37f22" t="o" /> -<objsur guid="f4b6763f-643b-40e5-b007-69e69e89010e" t="o" /> -<objsur guid="6423113e-21e0-41e4-99dd-204d55e66913" t="o" /> -<objsur guid="fdeb7d4d-210d-4db9-9e0b-754cbdadad98" t="o" /> -<objsur guid="cf183480-cd4e-4e6a-9459-2a4fdc4e677d" t="o" /> -<objsur guid="895de36b-e2c9-494c-a6a3-19ea5affe20b" t="o" /> -<objsur guid="3f909240-d039-49c2-aa1a-66fadd00e871" t="o" /> -<objsur guid="69b5664c-48f9-4965-b08a-9a90a52ceb7e" t="o" /> -<objsur guid="20f1f288-b76f-4679-bf9d-677dd009790a" t="o" /> -<objsur guid="97695a12-30dc-451c-88c0-4f52059d9c95" t="o" /> -<objsur guid="09cce723-fb14-402e-ae34-bb6d22711efd" t="o" /> -<objsur guid="cce97c2c-eaf5-4719-8fe9-d0f0c14f0acf" t="o" /> -<objsur guid="6f8ecd6c-b5e7-45d7-a772-03155e91758d" t="o" /> -<objsur guid="1b2db829-76d9-42b6-b4e8-449dc6d8d552" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b16de6a0-71dd-448c-9ffa-49f6646a5219" t="o" /> -<objsur guid="a2bbf179-8d38-4d2e-84cd-0e00bb6c74f3" t="o" /> -<objsur guid="5abd1270-261a-4980-93e5-e10eacea99ad" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="643e10c6-18f3-4268-98f7-60392045778b" ownerguid="f9d956b6-73d7-44f4-ac6c-b9a73cf0ab9e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">donkey</AUni> -<AUni ws="es">asno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a4d91a73-cdad-490b-9b42-7d565ef7cad0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="643ef0ba-b1ae-4562-accd-6e57fd2d3818"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bue:nu</AUni> -<AUni ws="qvm-x-acl">bue:nu; bue:nu; bue:no</AUni> -<AUni ws="qvm-x-akh">bue:nu</AUni> -<AUni ws="qvm-x-akl">bue:nu; bue:nu; bue:no</AUni> -<AUni ws="qvm-x-ame">bue:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bueno</AUni> -<AUni ws="qvm-x-acl">+bueno</AUni> -<AUni ws="qvm-x-akh">+bueno</AUni> -<AUni ws="qvm-x-akl">+bueno</AUni> -<AUni ws="qvm-x-ame">+bueno</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.991" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="99d2b38a-eea5-4d42-a33f-922c1f4ced10" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bueno</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4fe3becf-b8ed-427c-9070-71ce8864d745" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="870aecd0-c62f-4da6-b37e-9d40fdca7d60" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bueno 
\entryTyp root 
\gENG good 
\gSPN bueno 
\e +bueno 
\c N0 
\ach bue:nu 
\akh bue:nu 
\acl bue:nu / _# 
\acl bue:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl bue:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl bue:nu / _# 
\akl bue:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl bue:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame bue:nu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6447ed2a-4f24-4afe-8947-9907ff77fa40" ownerguid="ac187298-85e8-43ed-ba85-cc06a62c08ba"> -<ExampleWords> -<AUni ws="en">mate, harem, breed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the sexual behavior of animals?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="64493789-1c2c-4b24-a7e6-f00ff9be923e" ownerguid="d8366daf-ae1d-4b2c-a447-478c73580639"> -<Abbreviation> -<AUni ws="en">6.1.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.347" /> -<DateModified val="2022-9-23 16:55:8.347" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to using something to do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Use</AUni> -</Name> -<Questions> -<objsur guid="f393da23-9bd4-4170-b36f-5557ce209a9c" t="o" /> -<objsur guid="5995d113-836c-4e1c-b2b7-6f8cc1b68b0e" t="o" /> -<objsur guid="78f6d63c-b1aa-4eb9-bde6-338f8bf9a907" t="o" /> -<objsur guid="f5ed1624-68a9-44f6-a3c0-d6cfe7717e59" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="4415aff1-4d74-463e-a25d-9832c7477329" t="r" /> -<objsur guid="6342c8bf-55b5-400f-af7e-63055fe6813b" t="r" /> -<objsur guid="f5156cde-9735-4249-920d-597fb0a7a8e3" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="8411fa09-b1a5-4b62-aa47-f28bee9f6616" t="o" /> -<objsur guid="29d131d2-5e52-49e3-83b1-c872d331cf03" t="o" /> -<objsur guid="34dd26b6-d081-42f5-8be9-c5fe7a7253b2" t="o" /> -<objsur guid="b4dc89dc-3811-4d45-b0ee-0b71e28305cc" t="o" /> -<objsur guid="424ced39-d801-419a-86fe-265942a9b74b" t="o" /> -<objsur guid="a72515ec-998d-4b48-bd69-c67cf9245abc" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="644b8b37-57b2-43b0-b265-697d4658992d" ownerguid="498f9806-fcc4-4bbc-bbaa-26dd1002ac8d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">face</AUni> -<AUni ws="es">cara</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="107e1255-4f98-4a28-8001-a09b6bc24976" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="644db15f-85f1-46f4-a632-6d888927a790" ownerguid="c8749481-41bd-4411-8265-e512f23b489a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="644f0c8f-8385-4b09-8494-923025f5d637"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lili</AUni> -<AUni ws="qvm-x-acl">lili; lili; lile</AUni> -<AUni ws="qvm-x-akh">lili</AUni> -<AUni ws="qvm-x-akl">lili; lili; lile</AUni> -<AUni ws="qvm-x-ame">lili</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llilli</AUni> -<AUni ws="qvm-x-acl">*llilli</AUni> -<AUni ws="qvm-x-akh">*llilli</AUni> -<AUni ws="qvm-x-akl">*llilli</AUni> -<AUni ws="qvm-x-ame">*llilli</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.203" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="44236cb4-1b2c-4919-b2d7-612342924248" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llilli</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6cefc2f4-fd97-494b-a4e6-52f70631c0e6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1f8e2b4e-f205-4c8b-886c-3670b8e63241" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llilli 
\entryTyp root 
\gENG ? 
\gSPN ? 
\e *llilli 
\c N0 
\mp +FinalI 
\ach lili 
\akh lili 
\acl lili / _# 
\acl lili +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lile +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lili / _# 
\akl lili +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lile +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lili</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="645540f1-1d32-4073-aa19-2391294d9594" ownerguid="eb7d0129-e073-421c-bcd7-43bef6f3bf54"> -<Form> -<AUni ws="qvm-x-ach">final</AUni> -<AUni ws="qvm-x-acl">final</AUni> -<AUni ws="qvm-x-akh">final</AUni> -<AUni ws="qvm-x-akl">final</AUni> -<AUni ws="qvm-x-ame">final</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6455cfc4-68d1-4056-a751-c2d99674e773" ownerguid="aec0f6eb-10bb-40a6-a595-735f238f8f36"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="64572701-fcdf-40a9-b9f9-d98f2f3a735f" ownerguid="c2604a26-003e-4991-9059-b2e1a17e796c"> -<Form> -<AUni ws="qvm-x-ach">matanca; matancä</AUni> -<AUni ws="qvm-x-acl">matanca; matancä</AUni> -<AUni ws="qvm-x-akh">matanka; matankä</AUni> -<AUni ws="qvm-x-akl">matanka; matankä</AUni> -<AUni ws="qvm-x-ame">matanka; matankä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6459965d-6f3e-4ffe-8400-f8433f4bc6b9" ownerguid="67c0feb8-3f09-44d7-b596-a15b2b2c7cd2"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6460a0c4-0219-405f-a496-43b7074955c1" ownerguid="b917ffec-ab7e-496a-bfe4-35c567fa0785"> -<ExampleWords> -<AUni ws="en">electricity, electric, electronic, positive, negative, terminal, socket, plug, wire, power, pole, transformer, hydroelectric</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to electricity?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="64630f43-f9e4-40eb-a4db-b6a00156b5e1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">heri:da</AUni> -<AUni ws="qvm-x-acl">heri:da</AUni> -<AUni ws="qvm-x-akh">heri:da</AUni> -<AUni ws="qvm-x-akl">heri:da</AUni> -<AUni ws="qvm-x-ame">heri:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+herida</AUni> -<AUni ws="qvm-x-acl">+herida</AUni> -<AUni ws="qvm-x-akh">+herida</AUni> -<AUni ws="qvm-x-akl">+herida</AUni> -<AUni ws="qvm-x-ame">+herida</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.708" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0086704a-b8f8-4f35-a1dc-8a596ebd665f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+herida</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="62b2defb-0a19-4959-b140-81eb9de970d5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b85bd61e-d633-4ca5-8a03-02ed29a5c4bf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +herida 
\entryTyp root 
\gENG 
\gSPN 
\e +herida 
\c N0 
\ach heri:da 
\akh heri:da 
\acl heri:da 
\akl heri:da 
\ame heri:da</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="646dab64-5c2f-4f45-8e28-4d13437639d4" ownerguid="0e79435b-f5ff-4061-81ff-49557ba2aed4"> -<Abbreviation> -<AUni ws="en">4.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.184" /> -<DateModified val="2022-9-23 16:55:8.184" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to friendship.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Friend</AUni> -</Name> -<OcmCodes> -<Uni>572 Friendships; 573 Cliques</Uni> -</OcmCodes> -<Questions> -<objsur guid="e4f0ee97-8b53-4158-b1ce-fc53340718e5" t="o" /> -<objsur guid="dd35bcb4-86d0-4df4-9535-c7f2b0211a94" t="o" /> -<objsur guid="096730de-86f8-46a0-b246-fc3d635415e3" t="o" /> -<objsur guid="f9a99629-dfdd-450c-8908-c9cfb205a755" t="o" /> -<objsur guid="2d5de6a6-c53e-40e7-85da-7ea4a357fdb3" t="o" /> -<objsur guid="33f53061-97dd-4ae8-a88c-47062f704bad" t="o" /> -<objsur guid="fb5006dc-b41d-4253-906b-fb07f366c4a7" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b40637e5-be76-4a82-96bb-c55306ee293d" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="646df3ab-9582-45d4-9725-7472f92a66e3" ownerguid="9804176a-ea81-41f3-b7f4-726ee01b6039"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stick</AUni> -<AUni ws="es">palito</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="54afb938-ed9f-4ced-b352-a66aa5b93353" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="646e0b34-c5a8-492e-af7f-e7df0d3c38fb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">serviciu; servicio</AUni> -<AUni ws="qvm-x-acl">serviciu; serviciu; servicio</AUni> -<AUni ws="qvm-x-akh">serviciu; servicio</AUni> -<AUni ws="qvm-x-akl">serviciu; serviciu; servicio</AUni> -<AUni ws="qvm-x-ame">serviciu; servicio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+servicio</AUni> -<AUni ws="qvm-x-acl">+servicio</AUni> -<AUni ws="qvm-x-akh">+servicio</AUni> -<AUni ws="qvm-x-akl">+servicio</AUni> -<AUni ws="qvm-x-ame">+servicio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.510" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1849e75e-6992-42de-865d-90c813223472" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+servicio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0c7df65a-fc7a-4d86-b0d9-e3f81f5211a8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="690abefc-7e45-443b-bed6-2f0f10ff3179" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +servicio 
\entryTyp root 
\gENG 
\gSPN 
\e +servicio 
\c N0 
\ach serviciu / ~_# 
\ach servicio / _# 
\akh serviciu / ~_# 
\akh servicio / _# 
\acl serviciu / ~_# 
\acl serviciu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl servicio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl serviciu / ~_# 
\akl serviciu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl servicio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame serviciu / ~_# 
\ame servicio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6471c585-9d3d-459b-9895-1f720cc1c182" ownerguid="e9cafabe-f0f7-4142-a6f6-d1c94bdc4b5c"> -<ExampleWords> -<AUni ws="en">nobody present, no one here, no one there, not a soul, nary a one</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that no one is in a place?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6473301d-843d-487c-9389-36a3a449b62a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsari</AUni> -<AUni ws="qvm-x-acl">tsari; tsare</AUni> -<AUni ws="qvm-x-akh">tsari</AUni> -<AUni ws="qvm-x-akl">tsari; tsare</AUni> -<AUni ws="qvm-x-ame">tsari</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chari</AUni> -<AUni ws="qvm-x-acl">*chari</AUni> -<AUni ws="qvm-x-akh">*chari</AUni> -<AUni ws="qvm-x-akl">*chari</AUni> -<AUni ws="qvm-x-ame">*chari</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.293" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0d87a581-271a-43c1-9963-07871396c1e7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chari</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="96ad84b3-27fa-4fb7-ac7d-d088fe89be0b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="baf427d5-74ce-4c4b-a006-1fa5287af664" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chari 
\entryTyp root 
\gENG catch 
\gSPN agarrar 
\e *chari 
\c V2 
\mp +FinalI 
\ach tsari 
\akh tsari 
\acl tsari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tsare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsari</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="647603c2-6f32-48f3-91fa-1f7f0e44b539" ownerguid="50ab3705-a81e-4fcc-b3ae-95c075966f69"> -<Abbreviation> -<AUni ws="en">1.3.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.963" /> -<DateModified val="2022-9-23 16:55:7.963" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to water coming out of something (such as a container), or causing water to come out of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Pour</AUni> -</Name> -<Questions> -<objsur guid="258705fa-c65b-49c7-92c3-52ed91af6f2f" t="o" /> -<objsur guid="1cec97cd-018a-4f92-acf4-90a3c3f244bc" t="o" /> -<objsur guid="1849797f-182b-4cc0-8c2c-1faef0b4d8c2" t="o" /> -<objsur guid="24e73ba1-ed07-43da-9ac3-ad7f9d629abf" t="o" /> -<objsur guid="52855e28-f62b-4857-810a-b2eb99557297" t="o" /> -<objsur guid="cb3d3461-71c9-49d0-b7ef-1cf036a216cf" t="o" /> -<objsur guid="fca5ea6b-ec35-47b4-9f07-a2312e86a405" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="a2ce1453-9832-447c-9481-70c9e2da4227" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="64771824-8ab5-41e9-bb8d-0047f383eb78" ownerguid="5f3e44b8-e94c-49b4-9e2d-1acd93dddf75"> -<ExampleWords> -<AUni ws="en">official, chancellor, court, courtier, chamberlain, eunuch, minister, cabinet member</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a government official?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="647826d2-d793-40fe-9609-5363f1c1d173" ownerguid="ab0383f3-2cca-44f3-8b28-631d17f745fb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="d4ee6de7-17d2-4cc9-a48a-ac17ca68eed1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6478a79a-f38b-4d32-afab-83dd2bd5a831" ownerguid="18924ddb-69db-4c9a-ab9d-70facc22d603"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="64845c2b-e43f-4695-b336-f6d4a301af64" ownerguid="49c525b3-2163-48e1-b3bd-57e5cdc486a4"> -<ExampleWords> -<AUni ws="en">connective tissue, fat, cartilage, gland, lymph gland, membrane, fiber, sheath, vesicle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of soft tissue are there?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="64866e37-4f5c-48ca-b2a3-3cb4fff32ae1" ownerguid="e88bdf5a-590d-43c9-b964-845f8ef04beb"> -<Form> -<AUni ws="qvm-x-ach">lätigu</AUni> -<AUni ws="qvm-x-acl">lätigu; lätigu; lätigo</AUni> -<AUni ws="qvm-x-akh">lätigu</AUni> -<AUni ws="qvm-x-akl">lätigu; lätigu; lätigo</AUni> -<AUni ws="qvm-x-ame">lätigu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6489f0bf-b978-499f-a3b1-0f525324f2c6" ownerguid="df2ee830-0668-43d7-8a32-e2fd3e7b31d8"> -<Question> -<AUni ws="en">(7) pre-hodiernal: before today.</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="648c8fb3-94a3-4a20-9a84-c5bf1c6a8760" ownerguid="353e3c5f-6f7a-46b5-9159-faa255c44d2e"> -<Form> -<AUni ws="qvm-x-ach">trompu; trompo</AUni> -<AUni ws="qvm-x-acl">trompu; trompu; trompo</AUni> -<AUni ws="qvm-x-akh">trompu; trompo</AUni> -<AUni ws="qvm-x-akl">trompu; trompu; trompo</AUni> -<AUni ws="qvm-x-ame">trompu; trompo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="648fd45b-d648-415a-8048-dee1edb8cbfe" ownerguid="a9e26764-f8ec-4ca0-b89a-fdac5433a53d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="64924311-f1c6-4eae-9808-92ad7a25fb47" ownerguid="0281fb1d-ab12-41b9-a3dc-09ef6b1e4733"> -<ExampleWords> -<AUni ws="en">ghost, spirit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to person after they die?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="64958a0c-65ed-460f-b255-65fea63cdb4b" ownerguid="60b8dcfd-49a0-4ab4-82a7-2c5058b325ae"> -<ExampleWords> -<AUni ws="en">the remains, remnants, leftovers, ruins, what is left of, what remains of, the rest, the remainder, the last of, residue</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the remainder?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="64981a50-b51d-425e-a78a-cb04ed852c5d" ownerguid="1b6b0c12-9ecd-45cb-bb0e-0dadb435eddf"> -<ExampleWords> -<AUni ws="en">in large numbers, in droves, in force, in strength, thick and fast, be dying like flies, be dropping like flies</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words indicate that many people are doing something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="64983c06-d161-4286-be4d-bcf0c33a7203" ownerguid="4bedae6a-1df4-40e5-8a2f-ab0a1f41997e"> -<ExampleWords> -<AUni ws="en">firewood</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What plant products are used for burning?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6498f449-3d31-42a7-861a-9e0a1540ecf5" ownerguid="185782da-c97e-483e-a876-6bd7300eec09"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">VOC</AUni> -<AUni ws="es">VOC</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6498f782-6f96-4dd7-bded-08c939cc0880" ownerguid="06341e45-c407-49d0-98d8-74ecc303fb02"> -<ExampleWords> -<AUni ws="en">broken relationship, break up, strained relationship, misunderstanding, co-dependency</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a friendship that has become bad?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6499b1d0-ab18-467c-9c33-79142508733e" ownerguid="93b8bd61-137a-4ebc-b12f-52fa5d2b3ea4"> -<ExampleWords> -<AUni ws="en">north/south/east/west wind, northeaster, wind off the ocean, ocean breeze, wind from the mountains, mountain breeze, wind from the desert, updraft, downdraft, head wind, tail wind, following wind, cross breeze, windward, lee, prevailing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words describe the direction of the wind?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="649c752d-789b-4fe9-a719-2fedef70e6c6" ownerguid="3f402b8b-141a-4e77-982e-e649d476d051"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">DAN 7.5 Jucag wagtanga curcucashgami cargan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="649d8f70-1441-4511-a54c-e7116ba8a7e8" ownerguid="b0546721-ff38-416a-8a42-36f6d6fe7313"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tangle</AUni> -<AUni ws="es">enredarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ab7be64b-8113-400a-88ba-464387c07995" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="649e1d7f-f742-430a-a617-e880a4e7367b" ownerguid="d1439ea3-485d-4176-bfdc-932083f3b54a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="64a2dfae-6056-4b8a-9e97-83a27439223d" ownerguid="6e41c546-4be4-41a5-8eb9-ff6ea23d2737"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="64a6c739-49a9-41ef-b000-1c2aceb30fc1" ownerguid="715eee13-dfed-43bb-9ec5-bd398e998ca9"> -<Form> -<AUni ws="qvm-x-ach">juc</AUni> -<AUni ws="qvm-x-acl">juc</AUni> -<AUni ws="qvm-x-akh">juk</AUni> -<AUni ws="qvm-x-akl">juk</AUni> -<AUni ws="qvm-x-ame">huk</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="64a6ff62-6b62-49fc-9f4a-34bcb4949523"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuchi</AUni> -<AUni ws="qvm-x-acl">cuchi; cuchi; cuche</AUni> -<AUni ws="qvm-x-akh">kuchi</AUni> -<AUni ws="qvm-x-akl">kuchi; kuchi; kuche</AUni> -<AUni ws="qvm-x-ame">kuchi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cochino</AUni> -<AUni ws="qvm-x-acl">+cochino</AUni> -<AUni ws="qvm-x-akh">+cochino</AUni> -<AUni ws="qvm-x-akl">+cochino</AUni> -<AUni ws="qvm-x-ame">+cochino</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.140" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aa045f61-cc5b-4a46-a6c8-9a0e7a13823b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cochino</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4fcd4471-7cfc-4711-b9d1-a26a359d8e12" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0cd41de9-120f-4d19-a910-f8def04132ac" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cochino 
\entryTyp root 
\gENG pig 
\gSPN cochino 
\e +cochino 
\c N0 
\mp +assimilated 
\ach cuchi 
\akh kuchi 
\acl cuchi / _# 
\acl cuchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cuche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kuchi / _# 
\akl kuchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kuche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kuchi 
\mp +FinalI 
\mp KQWchange</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="64a83014-6a55-42b9-8829-948557a0aefb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">apta</AUni> -<AUni ws="qvm-x-acl">apta</AUni> -<AUni ws="qvm-x-akh">apta</AUni> -<AUni ws="qvm-x-akl">apta</AUni> -<AUni ws="qvm-x-ame">apta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*apta</AUni> -<AUni ws="qvm-x-acl">*apta</AUni> -<AUni ws="qvm-x-akh">*apta</AUni> -<AUni ws="qvm-x-akl">*apta</AUni> -<AUni ws="qvm-x-ame">*apta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.810" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1465367f-459c-43da-b6cd-5b8d27b83a63" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*apta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bd0843d6-4b8e-4cf5-a312-de186d375648" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="142ef102-294d-4ecd-be96-191b68809e89" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *apta 
\entryTyp root 
\gENG grasp 
\gSPN empuñar 
\e *apta 
\c V2 R0 
\ach apta 
\akh apta 
\acl apta 
\akl apta 
\ame apta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="64a99efc-4db2-46c4-aa86-9f1b9bb0d4b5" ownerguid="db227447-6405-47dd-b9a4-4391fcb29b80"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="64ab8980-52df-4b71-b4f7-e1e13356c8a3" ownerguid="fa71ac96-3ee7-421a-9cb9-98ab936fb18d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="64ae5c0e-42d9-4828-abd5-3979eb039c23" ownerguid="f56a80a9-a603-405e-abf0-1556b48f3268"> -<Form> -<AUni ws="qvm-x-ach">ganchäna</AUni> -<AUni ws="qvm-x-acl">ganchäna</AUni> -<AUni ws="qvm-x-akh">qanchäna</AUni> -<AUni ws="qvm-x-akl">qanchäna</AUni> -<AUni ws="qvm-x-ame">qanchäna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="64af8674-29af-4e73-8f75-16a24950fe39" ownerguid="9b158c9e-9ba5-4be2-a9a1-77ef888a3b06"> -<ExampleWords> -<AUni ws="en">adulterate, contaminate, pollute</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making something impure by adding something bad to it?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="64b023f2-da95-4ceb-91a2-0d15e6f09092" ownerguid="0aaacffe-9b6c-49a7-bf68-c0f9ff3e120e"> -<ExampleWords> -<AUni ws="en">an all-time high, record high, high water mark</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to an amount being the largest it has ever been?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="64b7caf8-7dd2-4dca-99db-b28b95b78fac" ownerguid="f3dbb078-6265-4861-a6e3-46cc151c5d72"> -<ExampleWords> -<AUni ws="en">bitch, gripe (v), grumble, moan, nag (v), whine, go on about</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to complaining all the time?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="64b830af-5640-49d6-8e10-ca156ebc1aae" ownerguid="3dcc4d9c-d6fc-4acf-9310-eb4909d235c6"> -<Form> -<AUni ws="qvm-x-ach">rapra</AUni> -<AUni ws="qvm-x-acl">rapra</AUni> -<AUni ws="qvm-x-akh">rapra</AUni> -<AUni ws="qvm-x-akl">rapra</AUni> -<AUni ws="qvm-x-ame">rapra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="64bd8cfc-e5e0-45c3-a0a6-b1efecd37598" ownerguid="2b8329ee-2a8c-4f1d-84a3-e58a079d2a91"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">grass</AUni> -<AUni ws="es">hierba</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d1402a63-5d21-4fdc-97c2-3312dbc62bf6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="64bdab81-49cc-4d2b-ba26-0d6046c931d3" ownerguid="6566df15-fcc8-4856-b981-db7f8d833470"> -<Form> -<AUni ws="qvm-x-ach">salvación; salvacion</AUni> -<AUni ws="qvm-x-acl">salvación; salvacion</AUni> -<AUni ws="qvm-x-akh">salvación; salvacion</AUni> -<AUni ws="qvm-x-akl">salvación; salvacion</AUni> -<AUni ws="qvm-x-ame">salvación; salvacion</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="64bf654b-c49e-463a-9d77-203fd95ed1d7" ownerguid="d8a86089-0abe-423f-a4b2-9416edf33be2"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 60.0 Lirio waytacuna nishgan tönuwan cay testimonio salmuta cantapäcunqui.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="64c1d04d-b06e-4baa-9e06-237b5a6a0371" ownerguid="32fc19fd-a04e-4b69-9442-f7d57348ec55"> -<ExampleWords> -<AUni ws="en">graze, chew the cud</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) How do cattle eat?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="64c6048d-84e9-4594-8587-dd864876f5a9" ownerguid="2c143278-3ea0-49c6-9e50-e0bf7c8cf4e2"> -<ExampleWords> -<AUni ws="en">somewhere, anywhere, someplace, anyplace, where, here, there, over there, any old place, wherever, who knows where, could be anywhere, undisclosed location, location unknown, here and there, whereabouts, hereabouts, thereabouts</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to an indefinite location?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="64c7443d-becc-4b6c-b0e1-48c8033c1aef" ownerguid="3e476adb-695e-48c3-a9b6-9a07934eac7a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="64ce1000-d0fc-4b9e-bc84-5af9ae9d98c1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">siqui</AUni> -<AUni ws="qvm-x-acl">siqui; siqui; sique</AUni> -<AUni ws="qvm-x-akh">siki</AUni> -<AUni ws="qvm-x-akl">siki; siki; sike</AUni> -<AUni ws="qvm-x-ame">siki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*siki</AUni> -<AUni ws="qvm-x-acl">*siki</AUni> -<AUni ws="qvm-x-akh">*siki</AUni> -<AUni ws="qvm-x-akl">*siki</AUni> -<AUni ws="qvm-x-ame">*siki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.673" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1f84dbd4-b741-4167-9c0c-c9d667be4d39" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*siki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8a671564-2517-4177-b2ad-f1aee4217620" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d15bd178-12fd-47bf-a828-74e4b352f4a3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *siki 
\entryTyp root 
\gENG hind.end 
\gSPN trasero 
\e *siki 
\c N0 
\mp +FinalI 
\ach siqui 
\akh siki 
\acl siqui / _# 
\acl siqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sique +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl siki / _# 
\akl siki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sike +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame siki</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="64d112a2-be5c-41c5-aa4c-2010afdb8fec"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">decidi:du</AUni> -<AUni ws="qvm-x-acl">decidi:du; decidi:du; decidi:do</AUni> -<AUni ws="qvm-x-akh">decidi:du</AUni> -<AUni ws="qvm-x-akl">decidi:du; decidi:du; decidi:do</AUni> -<AUni ws="qvm-x-ame">decidi:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+decidido</AUni> -<AUni ws="qvm-x-acl">+decidido</AUni> -<AUni ws="qvm-x-akh">+decidido</AUni> -<AUni ws="qvm-x-akl">+decidido</AUni> -<AUni ws="qvm-x-ame">+decidido</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.366" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6dc2b268-df2e-479f-9e54-15a7ded31352" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+decidido</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3b9bd1a8-c522-4272-81ec-ba43f3911dab" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9ec2691c-ae80-441d-84cc-456f6f90265b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +decidido 
\entryTyp root 
\gENG 
\gSPN 
\e +decidido 
\c N0 
\ach decidi:du 
\akh decidi:du 
\acl decidi:du / _# 
\acl decidi:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl decidi:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl decidi:du / _# 
\akl decidi:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl decidi:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame decidi:du</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="64d31e0f-79c7-49e5-9a3d-4e2e9957cb76"> -<Form> -<Str> -<Run ws="en">obj</Run> -</Str> -</Form> -</rt> -<rt class="MoStemMsa" guid="64d35d24-78e6-4dec-8099-825f4b92fa74" ownerguid="7ecca79a-71bc-4055-a00a-bc3541e10e2b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="64d4b391-7c42-4c41-aa73-0b0b5f429d34" ownerguid="0221a7f3-34e8-44d7-8218-1f4c1c3b60e3"> -<Form> -<AUni ws="qvm-x-ach">michi</AUni> -<AUni ws="qvm-x-acl">michi; michi; miche</AUni> -<AUni ws="qvm-x-akh">michi</AUni> -<AUni ws="qvm-x-akl">michi; michi; miche</AUni> -<AUni ws="qvm-x-ame">michi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="64e3d6b1-1d61-454c-97ab-e1d7cb0a8917" ownerguid="2b6f9af7-04ee-4030-a2cd-87d55959caa8"> -<Abbreviation> -<AUni ws="en">3.4.2.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.143" /> -<DateModified val="2022-9-23 16:55:8.143" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling nervous--to be worried and frightened that something bad may happen, so that you are unable to relax.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Nervous</AUni> -</Name> -<Questions> -<objsur guid="80370d02-42e3-4ec8-9ce9-7a78c6a853b0" t="o" /> -<objsur guid="614e69ab-43fe-4d96-b876-c365ff391a56" t="o" /> -<objsur guid="0216c90b-9202-4e2d-96f7-c796726a1863" t="o" /> -<objsur guid="dae6fdd4-9793-40dc-9b8d-49b17adbdf4a" t="o" /> -<objsur guid="a91e7c15-408c-4119-8ae0-aecb5cd2961f" t="o" /> -<objsur guid="2a27ea0c-bbac-4e9f-a6a7-1ce2282c2a86" t="o" /> -<objsur guid="f631674b-225c-4225-a53a-2e991d505f6b" t="o" /> -<objsur guid="30bc60d4-7a97-469b-9431-1ccd9bfc0a9d" t="o" /> -<objsur guid="6404c0d1-aa17-420e-9299-2dc87701f4be" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="64e41545-3a0a-4524-a8d4-8e5e0f0e2391" ownerguid="a7824686-a3f3-4c8a-907e-5d841cf846c8"> -<Abbreviation> -<AUni ws="en">8.3.3.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.609" /> -<DateModified val="2022-9-23 16:55:8.609" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a source of light--something that makes or gives light.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>6N Lights and Light Holders</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Light source</AUni> -</Name> -<Questions> -<objsur guid="0da626b8-40ba-4aac-af95-4fceca3a5559" t="o" /> -<objsur guid="6b1ce26d-b73b-4604-9494-3051cef0840e" t="o" /> -<objsur guid="304f00fa-0e91-4498-b623-24fbd3ee5e8e" t="o" /> -<objsur guid="9d9c30f9-2e06-483f-9ecd-731ab58f288d" t="o" /> -<objsur guid="31326f10-3544-4fd3-871e-22f6871ee0d8" t="o" /> -<objsur guid="ed35a22b-29ca-41f0-88bb-87833b8484b6" t="o" /> -<objsur guid="eb33ee15-1cee-4acc-bfac-2ab7fe200353" t="o" /> -<objsur guid="6640019e-cc68-4e05-a661-b58e1c275998" t="o" /> -<objsur guid="852835f5-7397-45bf-b139-dd31d8ab63c9" t="o" /> -<objsur guid="c51a8410-b266-493e-bf92-c1f6c8b1059b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="64e6c0db-6dd6-4b80-bbe9-c96bb161674b" ownerguid="fb84538a-17a8-4adc-8d50-e2b66f8e4099"> -<Abbreviation> -<AUni ws="en">8.1.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.559" /> -<DateModified val="2022-9-23 16:55:8.559" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the numbers that refer to a fraction of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>60D Half, Third, Fourth</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Fraction</AUni> -</Name> -<Questions> -<objsur guid="237553f5-6971-4ca1-ba7a-4713100ccc16" t="o" /> -<objsur guid="64ebf66e-49ef-49ab-80bb-92102245813c" t="o" /> -<objsur guid="d4b7d522-4733-4ad1-a496-1ef6862f502b" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="aadefee4-ed14-4753-952e-e945f2972e37" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="64ebf66e-49ef-49ab-80bb-92102245813c" ownerguid="64e6c0db-6dd6-4b80-bbe9-c96bb161674b"> -<ExampleWords> -<AUni ws="en">half, one half, third, one third, two thirds, quarter, fourth, fifth, sixth, seventh, eighth, ninth, tenth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a particular fraction of something?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="64f286e7-23a3-4b7d-ae64-67d27a4667ec"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">and</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="64f39297-426b-45a8-b5d2-097cf71d688c" ownerguid="af0909a5-928a-4421-baaa-f33b14302714"> -<Abbreviation> -<AUni ws="en">9.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.688" /> -<DateModified val="2022-9-23 16:55:8.688" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain to list all adjectives. If there are many adjectives in your language, you should not try to list them all here. If you want to find all the adjectives, most dictionary programs can sort your dictionary by part of speech. However if your language only has a few adjectives, you can list them all in this domain. In the book, "Where Have All the Adjectives Gone?" R. M. W. Dixon [Dixon, R. M. W. 1982. Where have all the adjectives gone? Berlin: Mouton.] identifies seven universal semantic types that are often expressed by adjectives. They are: Age (new, young, old), Dimension (big, little, long, short, wide, narrow, thick, fat, thin), Value (good, bad, proper, perfect, excellent, fine, delicious, atrocious, poor), Color (black, white, red), Human propensity (jealous, happy, kind, clever, generous, cruel, rude, proud, wicked), Physical property (hard, soft, heavy, light, rough, smooth, hot, cold, sweet, sour), Speed (fast, slow). Words in the Human propensity class may be nouns. Words in the Physical property and Speed classes may be verbs.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Adjectives</AUni> -</Name> -<Questions> -<objsur guid="6f0fa9bf-ccec-4b69-bd25-373a5371e49c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="64f5bee0-6e27-488f-8bfd-aa21c9f5145b" ownerguid="12cb3584-4c18-4fef-b600-a280aecfc31d"> -<Form> -<AUni ws="qvm-x-ach">supi</AUni> -<AUni ws="qvm-x-acl">supi; supi; supe</AUni> -<AUni ws="qvm-x-akh">supi</AUni> -<AUni ws="qvm-x-akl">supi; supi; supe</AUni> -<AUni ws="qvm-x-ame">supi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="64f6e570-119d-441c-82f4-598abacdc275" ownerguid="2b893d04-3450-4862-b046-7df6f87272f6"> -<ExampleWords> -<AUni ws="en">finance, financial, monetary, fiscal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to finance?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="64f835b8-4528-4f5b-845b-113fc3c255fe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">:da</AUni> -<AUni ws="qvm-x-acl">:da</AUni> -<AUni ws="qvm-x-akh">:da</AUni> -<AUni ws="qvm-x-akl">:da</AUni> -<AUni ws="qvm-x-ame">:da</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.558" /> -<DateModified val="2022-10-16 13:49:18.567" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="61bc4256-d871-45bf-bb37-db728c224ea1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">PRTSPF1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="29cc4630-807f-4b49-93bc-09cb0176dae2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="29a6d13c-2c6b-4844-93ee-4956c3dcb4fc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx PRTSPF1 
\entryTyp suffix 
\gENG PRTSPF1 
\gSPN PRTESM1 
\e PRTSPF1 
\c V1/N0 V2/N0 
\o 000 
\mp -PMonophthongizes 
\ach :da 
\akh :da 
\acl :da 
\akl :da 
\ame :da 
\mp +foreshortens 
\mcc PRTSPF1 / {+FinalLength} ~_</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="64fa0ba7-73cb-40e9-a8d2-3e61fff146c9" ownerguid="6b8366b9-b5e8-42b8-991c-c568d4442a81"> -<Abbreviation> -<AUni ws="en">5.4.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.327" /> -<DateModified val="2022-9-23 16:55:8.327" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to dying your hair.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Dye hair</AUni> -</Name> -<Questions> -<objsur guid="caca4cbb-6f32-4508-8550-c05fc2710040" t="o" /> -<objsur guid="27d6357d-7d97-47f6-b471-2628e535cf0a" t="o" /> -<objsur guid="96e75226-dd4f-49af-b90e-405b30f6e366" t="o" /> -<objsur guid="5ee17381-eb51-46d7-bfdb-ca5c02509158" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="64fc34f8-63a8-4c6f-b602-ff2395b388e9" ownerguid="e9ee1317-ef25-4d57-a213-5ab6fec6e2c6"> -<Form> -<AUni ws="qvm-x-ach">mantica</AUni> -<AUni ws="qvm-x-acl">mantica</AUni> -<AUni ws="qvm-x-akh">mantica</AUni> -<AUni ws="qvm-x-akl">mantica</AUni> -<AUni ws="qvm-x-ame">mantica</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="64fcd0a7-1ca7-412d-bb55-c91f7392fde2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chucaru</AUni> -<AUni ws="qvm-x-acl">chucaru</AUni> -<AUni ws="qvm-x-akh">chucaru</AUni> -<AUni ws="qvm-x-akl">chucaru</AUni> -<AUni ws="qvm-x-ame">chucaru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+chúcaro</AUni> -<AUni ws="qvm-x-acl">+chúcaro</AUni> -<AUni ws="qvm-x-akh">+chúcaro</AUni> -<AUni ws="qvm-x-akl">+chúcaro</AUni> -<AUni ws="qvm-x-ame">+chúcaro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.356" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="99f0ba8c-b86f-434d-a668-7ebaafb60afe" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+chúcaro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="60c24999-fb34-470d-8c5e-0279c1cecb87" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="38083de6-ff9f-4889-87b8-c428b8be57f2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +chúcaro 
\entryTyp root 
\gENG wild 
\gSPN chúcaro 
\e +chúcaro 
\c N0 
\mp NeverChanged 
\ach chucaru 
\akh chucaru 
\acl chucaru 
\akl chucaru 
\ame chucaru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="64fe4806-1917-4d66-b394-c1f5cd6075d4" ownerguid="5cd494b5-995d-4b5f-a3c1-f8209dc0999f"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 14.13 ¡Ima alirag canman tsaypita cawaritsimänayquipag diata jitapämaptiqui!</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="64fe56d1-54de-47c0-992b-a8bedb2fe71c" ownerguid="d84da4a1-0eb7-45b8-850b-0c215137a585"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1 N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="38d81174-1bcd-48d1-940c-1abd826aece6" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="abf64472-55b0-407b-9c06-202ef7d1d6fc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="65020ca7-e512-4098-982b-d8557fdf544e" ownerguid="a498112c-17c7-4f5c-a6c0-96e9f0e99de8"> -<Form> -<AUni ws="qvm-x-ach">gala</AUni> -<AUni ws="qvm-x-acl">gala</AUni> -<AUni ws="qvm-x-akh">qala</AUni> -<AUni ws="qvm-x-akl">qala</AUni> -<AUni ws="qvm-x-ame">qala</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="6502c0b7-74a3-4160-8413-556ed38a142d" ownerguid="f8e4ec0e-f295-48dc-8730-336a91934050"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="23b4f436-8601-4670-9009-5ded09306346" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="65038315-6464-4527-815b-d7088f7ee41e" ownerguid="e442afe1-e7cd-4ab2-b456-963e2e041a1e"> -<ExampleWords> -<AUni ws="en">chug</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What ideophones are used of moving slowly?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6505d7f4-dade-4dab-9ff8-34f2b61a67a2" ownerguid="73b959ab-0229-4710-af99-dfc9b5370540"> -<ExampleWords> -<AUni ws="en">more than</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that something is larger than another thing in degree?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6506a629-35d7-4e12-b1ae-d3c064d925e0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">terremo:tu</AUni> -<AUni ws="qvm-x-acl">terremo:tu; terremo:tu; terremo:to</AUni> -<AUni ws="qvm-x-akh">terremo:tu</AUni> -<AUni ws="qvm-x-akl">terremo:tu; terremo:tu; terremo:to</AUni> -<AUni ws="qvm-x-ame">terremo:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+terremoto</AUni> -<AUni ws="qvm-x-acl">+terremoto</AUni> -<AUni ws="qvm-x-akh">+terremoto</AUni> -<AUni ws="qvm-x-akl">+terremoto</AUni> -<AUni ws="qvm-x-ame">+terremoto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.884" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="99134d2a-f96e-42c1-8798-b01372d5cb27" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+terremoto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b53c4f80-acce-4b8d-8bc3-cd74fe788e55" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="abd31e70-f9be-472e-a88f-2eb51775e2e7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +terremoto 
\entryTyp root 
\gENG earthquake 
\gSPN terremoto 
\e +terremoto 
\c N0 
\ach terremo:tu 
\akh terremo:tu 
\acl terremo:tu / _# 
\acl terremo:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl terremo:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl terremo:tu / _# 
\akl terremo:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl terremo:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame terremo:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="6506e780-1bb7-4864-adf9-333416cf7afa" ownerguid="960ff213-d101-4de3-9d45-a4762a433412"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="650ca251-c706-438a-ad36-080ba59efd2d" ownerguid="0656cd5e-641f-46f3-bcad-6f643727a344"> -<ExampleWords> -<AUni ws="en">recent, latest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe an event that has happened recently?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="650e109e-7f5b-4a06-81b6-2028832200ff" ownerguid="36934fab-c0ed-4f25-a387-e1cca26b2401"> -<ExampleWords> -<AUni ws="en">a minority of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a small number of people that are part of a larger group?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="651053d9-85d5-45b8-b5a0-8e2c63e0a905" ownerguid="139c9830-e453-4fed-8fad-8a3f19e2324f"> -<Form> -<AUni ws="qvm-x-ach">ganrapa</AUni> -<AUni ws="qvm-x-acl">ganrapa</AUni> -<AUni ws="qvm-x-akh">qanrapa</AUni> -<AUni ws="qvm-x-akl">qanrapa</AUni> -<AUni ws="qvm-x-ame">qanrapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="6516fb85-4018-4281-87ed-72d9f42d3c1f" ownerguid="8e39aa41-58a0-4ca0-8700-cc25921d7415"> -<Form> -<AUni ws="qvm-x-ach">rucuchu</AUni> -<AUni ws="qvm-x-acl">rucuchu; rucuchu; rucucho</AUni> -<AUni ws="qvm-x-akh">rukuchu</AUni> -<AUni ws="qvm-x-akl">rukuchu; rukuchu; rukucho</AUni> -<AUni ws="qvm-x-ame">rukuchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="651bfcbb-b507-46bc-9282-087bc2711e48" ownerguid="7e303683-5f32-45b5-8e97-299a34722ab8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">long</AUni> -<AUni ws="es">ovalado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="01d10ec1-2cfd-4885-8f63-0eea4d3ecfc1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="651f7f7b-2eb0-49d1-9e19-bfa78e024e29" ownerguid="264dd51d-bbaa-4563-9db6-21c946fdca88"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="652897eb-4e36-4649-b3a2-2b590f5375ef" ownerguid="8247eaae-05be-44ec-8181-868d3b1dc701"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="e7f6ce41-496c-4aaa-b50e-62aabd089772" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="e7e0bac7-7445-403f-97bd-cd2662d6da0a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="652b95bc-d0cf-45ac-b3d1-faa4374ecf1d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">letre:ru</AUni> -<AUni ws="qvm-x-acl">letre:ru; letre:ru; letre:ro</AUni> -<AUni ws="qvm-x-akh">letre:ru</AUni> -<AUni ws="qvm-x-akl">letre:ru; letre:ru; letre:ro</AUni> -<AUni ws="qvm-x-ame">letre:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+letrero</AUni> -<AUni ws="qvm-x-acl">+letrero</AUni> -<AUni ws="qvm-x-akh">+letrero</AUni> -<AUni ws="qvm-x-akl">+letrero</AUni> -<AUni ws="qvm-x-ame">+letrero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.820" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5dc3ed5c-64f7-46b4-9e10-de771154e4bc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+letrero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a1890d66-e950-4b8c-809f-ddf4cad957f8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="128b7acc-91b4-4233-9639-1800155764f5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +letrero 
\entryTyp root 
\gENG sign 
\gSPN letrero 
\e +letrero 
\c N0 
\ach letre:ru 
\akh letre:ru 
\acl letre:ru / _# 
\acl letre:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl letre:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl letre:ru / _# 
\akl letre:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl letre:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame letre:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="652d7ef5-6430-41f5-8be0-6f6b7e978036"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">coma:dri; coma:dri</AUni> -<AUni ws="qvm-x-acl">coma:dri; coma:dri; coma:dre</AUni> -<AUni ws="qvm-x-akh">coma:dri; coma:dri</AUni> -<AUni ws="qvm-x-akl">coma:dri; coma:dri; coma:dre</AUni> -<AUni ws="qvm-x-ame">coma:dri; coma:dri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+comadre</AUni> -<AUni ws="qvm-x-acl">+comadre</AUni> -<AUni ws="qvm-x-akh">+comadre</AUni> -<AUni ws="qvm-x-akl">+comadre</AUni> -<AUni ws="qvm-x-ame">+comadre</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.150" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4a465727-8828-4598-bab8-68f2eccc283d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+comadre</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="87ae63c6-4ffa-479c-907b-82d462c2e78c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="09308d4f-cc49-40e7-a146-26a3436963ab" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +comadre 
\entryTyp root 
\gENG godmother 
\gSPN comadre 
\e +comadre 
\c N0 
\mp +FinalI 
\ach coma:dri / _# 
\ach coma:dri / ~_# 
\akh coma:dri / _# 
\akh coma:dri / ~_# 
\acl coma:dri / _# 
\acl coma:dri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl coma:dre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl coma:dri / _# 
\akl coma:dri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl coma:dre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame coma:dri / _# 
\ame coma:dri / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="652dc246-20c6-4aec-bab1-bae6ff4eb4ce"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sheqi</AUni> -<AUni ws="qvm-x-acl">sheqi; sheqi; sheqe</AUni> -<AUni ws="qvm-x-akh">sheqi</AUni> -<AUni ws="qvm-x-akl">sheqi; sheqi; sheqe</AUni> -<AUni ws="qvm-x-ame">shiqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shiqi</AUni> -<AUni ws="qvm-x-acl">*shiqi</AUni> -<AUni ws="qvm-x-akh">*shiqi</AUni> -<AUni ws="qvm-x-akl">*shiqi</AUni> -<AUni ws="qvm-x-ame">*shiqi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.602" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d7ca4ad0-f0b0-4c32-8b0b-00fb69ab6c48" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shiqi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ee13bb79-617c-4323-aa95-10df07479931" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="089c431f-8f4d-4dac-9fb7-97c5defac01c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shiqi 
\entryTyp root 
\gENG 
\gSPN 
\e *shiqi 
\c N0 
\mp -underlong -foreshortens -mlowers 
\ach sheqi 
\akh sheqi 
\acl sheqi / _# 
\acl sheqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sheqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sheqi / _# 
\akl sheqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sheqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shiqi 
\mp +FinalI</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="6534be2f-bea5-4200-a1aa-3af64aa53114" ownerguid="3448a62a-7774-463d-a8cd-af8cfa753338"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="6535063d-7ef3-4b61-8073-af15d99440b9" ownerguid="6b208fda-544c-4cba-b8cc-887b1018837f"> -<ExampleWords> -<AUni ws="en">camera, video camera</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a camera?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="653834ab-93c2-462c-90e0-828c272bb0fa" ownerguid="2d822f05-e966-4735-b868-4dea83d5ca30"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">line</AUni> -<AUni ws="es">raya</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2fd31333-a7ab-4db8-aaa8-d48e939f3199" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="65387c45-c56c-4ad3-8a23-80d8ff6d15ee" ownerguid="f7ffe78a-e1c6-41a1-ad6a-d88079d397d4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2 R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pay</AUni> -<AUni ws="es">pagar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4dde96da-260a-4194-a7a8-30a1a68e2fd3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6539af1e-f835-4304-9661-dd56b9cf9fe8" ownerguid="ca752706-1c9e-43e7-bd17-845c4736ccd8"> -<ExampleWords> -<AUni ws="en">about, around, in the vicinity of, near, close to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words indicate that something happens at an approximate place?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6539c885-28fe-4e73-b8ec-cd0f0fe3029f" ownerguid="73499b8b-76fc-4121-8bfa-1bdebe537259"> -<ExampleWords> -<AUni ws="en">tame, domesticate, break (a horse)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the process of taming an animal?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="653b20f6-31ee-4902-a7c1-f263e2f28fcf" ownerguid="8c0b7413-3060-42cd-a005-318de8789f86"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="653c372e-f413-434f-b45e-8fa990cebcdb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wallanca</AUni> -<AUni ws="qvm-x-acl">wallanca</AUni> -<AUni ws="qvm-x-akh">wallanka</AUni> -<AUni ws="qvm-x-akl">wallanka</AUni> -<AUni ws="qvm-x-ame">wallanka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wallanka</AUni> -<AUni ws="qvm-x-acl">*wallanka</AUni> -<AUni ws="qvm-x-akh">*wallanka</AUni> -<AUni ws="qvm-x-akl">*wallanka</AUni> -<AUni ws="qvm-x-ame">*wallanka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.452" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6e0f9742-2b64-4f5c-aaa4-8c848ddb7fca" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wallanka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="57417256-b437-4941-a0fb-d55fa0cdabcf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4912ab33-a819-4e59-9c68-583226c91919" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wallanka 
\entryTyp root 
\gENG cactus 
\gSPN cacto 
\e *wallanka 
\c N0 
\ach wallanca 
\akh wallanka 
\acl wallanca 
\akl wallanka 
\ame wallanka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="653dbbd5-0bc8-4c89-b563-2ce36c18cdf6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shicwa</AUni> -<AUni ws="qvm-x-acl">shicwa</AUni> -<AUni ws="qvm-x-akh">shikwa</AUni> -<AUni ws="qvm-x-akl">shikwa</AUni> -<AUni ws="qvm-x-ame">shikwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shikwa</AUni> -<AUni ws="qvm-x-acl">*shikwa</AUni> -<AUni ws="qvm-x-akh">*shikwa</AUni> -<AUni ws="qvm-x-akl">*shikwa</AUni> -<AUni ws="qvm-x-ame">*shikwa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.571" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="43d8810f-928e-404a-b5af-01ed8e07aeb2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shikwa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="48080147-65df-41f9-a50d-36d2dc3d7354" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="13c93d1d-6e68-4a11-8b04-122c32df54bd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shikwa 
\entryTyp root 
\gENG fall 
\gSPN caerse 
\e *shikwa 
\c V1 
\ach shicwa 
\akh shikwa 
\acl shicwa 
\akl shikwa 
\ame shikwa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="654096f1-cab7-400a-925f-48d3c3d72b91" ownerguid="977ccc2a-3214-49ae-b752-bc1f9e878cfc"> -<Gloss> -<AUni ws="en">PLIMPF</AUni> -</Gloss> -</rt> -<rt class="LexSense" guid="65425168-65c9-4512-afae-d738f9024a3a" ownerguid="dcf6e4ac-e0d3-4b91-b4ee-7971012bbd4b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">clothes</AUni> -<AUni ws="es">ropa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d03ec8bb-381c-4612-9ae3-8285e0cc8548" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="65429919-05cf-4261-8822-c821702f636f" ownerguid="5ea4f6af-0125-4cdd-8a90-8a2d9089df5f"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="a7ac842e-8c38-4b68-87dd-ed968e088cdb" t="o" /> -<objsur guid="60bb4b5d-a223-4d58-ae99-941c0e2cc8eb" t="o" /> -<objsur guid="345c63cc-d055-4377-8bd5-c20214c47d9d" t="o" /> -<objsur guid="0c6afcee-8b7a-4272-b271-b65c8e83f4dd" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiMorphBundle" guid="65455bf3-6bf5-47b2-b56e-f2b5fa69198e" ownerguid="87c9b887-4271-4638-8cba-089d31f9219a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">trïbu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">trïbu; trïbu; trïbo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">trïbu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">trïbu; trïbu; trïbo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">trïbu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f5902b3a-2846-4456-9561-1c21ecd48b66" t="r" /> -</Morph> -<Msa> -<objsur guid="3fde4613-ddcf-4f33-81e5-15a0ab7b13d2" t="r" /> -</Msa> -<Sense> -<objsur guid="0c7bf344-250b-4855-9133-90cab0ab538b" t="r" /> -</Sense> -</rt> -<rt class="WfiWordform" guid="6545d219-5055-445e-b141-9a57907a923b"> -<Analyses> -<objsur guid="51fa1777-8f13-49c3-a309-354ebb1b5a14" t="o" /> -<objsur guid="70229141-c7cd-4263-959c-9c0b1514b70d" t="o" /> -<objsur guid="9fd8ecee-283d-4dc4-a4f5-41fb8ec94a5a" t="o" /> -<objsur guid="b5179c37-f18c-473d-bf8d-b96f23503f3c" t="o" /> -<objsur guid="de972142-b8c4-4d5f-8fa2-f1ab61d4b33e" t="o" /> -<objsur guid="e22aa72d-8119-410c-871e-cf23ff2aa36e" t="o" /> -</Analyses> -<Checksum val="-1124103374" /> -<Form> -<AUni ws="qvm-x-akh">iktsuypa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="654a6a13-787c-4277-b8e6-fe0041260e8d" ownerguid="fecba2a8-a385-4a36-94e2-4003b2d1e0d2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">flat.nose</AUni> -<AUni ws="es">nariz.achatado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4061538e-8356-4944-a2a7-df8ea9d471e0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="654aa1aa-7c5a-4720-8709-6b266367d96f" ownerguid="87f728c9-6808-47ea-b023-95627b8077ec"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="654dfe8f-2d53-418e-bb5a-4f080ecc6413"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">asya</AUni> -<AUni ws="qvm-x-acl">asya</AUni> -<AUni ws="qvm-x-akh">asya</AUni> -<AUni ws="qvm-x-akl">asya</AUni> -<AUni ws="qvm-x-ame">asya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*asya</AUni> -<AUni ws="qvm-x-acl">*asya</AUni> -<AUni ws="qvm-x-akh">*asya</AUni> -<AUni ws="qvm-x-akl">*asya</AUni> -<AUni ws="qvm-x-ame">*asya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.860" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="37681a76-9240-40b8-9459-34fd39cd9670" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*asya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="29058ca7-0752-4993-9a46-aa6902af7c24" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e6bf2082-e98f-4a98-9da0-12009a0ca93f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *asya 
\entryTyp root 
\gENG stink 
\gSPN hedor 
\e *asya 
\c N0 
\ach asya 
\akh asya 
\acl asya 
\akl asya 
\ame asya</Run> -</AStr> -</Custom> -</rt> -<rt class="MoInflAffixTemplate" guid="654f160b-ffa2-402d-9fa4-e8a990266927" ownerguid="a3274cfd-225f-45fd-8851-a7b1a1e1037a"> -<Disabled val="False" /> -<Final val="True" /> -<SuffixSlots> -<objsur guid="1ac8c2fd-7b17-4fc7-b901-1d1db8a97b2d" t="r" /> -<objsur guid="f9e1228b-4c5b-4e23-bd04-d513eddcbaea" t="r" /> -<objsur guid="5f0a99ac-644b-4188-83d9-e7927958c17e" t="r" /> -</SuffixSlots> -</rt> -<rt class="LexSense" guid="654fb466-a04a-46ca-8a56-ed1ee1cdbda1" ownerguid="e3735bab-69a6-43b1-99e0-4a08e88df940"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stocks</AUni> -<AUni ws="es">cepo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="315c65d4-e7a6-402a-a35d-156a7f966589" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="6550cc9b-bdbc-41be-905d-d9fb712c5a7f" ownerguid="4a4bdea2-89bf-4826-bde0-2bb1ead12835"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mirror</AUni> -<AUni ws="es">espejo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4d417406-5c82-4fdd-85eb-54b0898ae633" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="65526c13-6a92-49df-aabc-429428114a7d" ownerguid="2158eb7d-eb59-4740-9628-9080d7f51a97"> -<ExampleWords> -<AUni ws="en">get up, get out of bed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What do people do after they wake up?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="65537c19-dda0-4d04-835a-9e127bdd0f3b" ownerguid="41a310e7-a4bf-471a-984d-4b266b99fb60"> -<Form> -<AUni ws="qvm-x-ach">chäpa</AUni> -<AUni ws="qvm-x-acl">chäpa</AUni> -<AUni ws="qvm-x-akh">chäpa</AUni> -<AUni ws="qvm-x-akl">chäpa</AUni> -<AUni ws="qvm-x-ame">chäpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6555876c-bca0-4e6a-9dfa-91ba9e240cae" ownerguid="8f2ad124-6c59-43c3-8c46-7092ee10b10e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6555b0a2-2375-459f-a082-26df4452842e" ownerguid="c345f278-91ff-463d-b9a6-8abac8a267eb"> -<ExampleWords> -<AUni ws="en">horsetail</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(17) What species of horsetails are there?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6557c22e-08a9-4e68-9d93-0d4e787c064a" ownerguid="75a42637-5765-4c74-9a39-4633a1375931"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmAnnotationDefn" guid="6558a579-b9c4-4efd-8728-f994d0561293" ownerguid="82e2fd92-48d8-43c9-ba84-cc4a2a5beead"> -<AllowsComment val="True" /> -<AllowsFeatureStructure val="False" /> -<AllowsInstanceOf val="False" /> -<BackColor val="0" /> -<CanCreateOrphan val="False" /> -<CopyCutPastable val="True" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">Checks for potentially invalid characters.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<HelpId> -<Uni>Characters</Uni> -</HelpId> -<Hidden val="False" /> -<InstanceOfSignature val="0" /> -<IsProtected val="True" /> -<MaxDupOccur val="0" /> -<Multi val="True" /> -<Name> -<AUni ws="en">Characters</AUni> -</Name> -<PromptUser val="False" /> -<Severity val="0" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -<UserCanCreate val="False" /> -<ZeroWidth val="False" /> -</rt> -<rt class="CmDomainQ" guid="655a3872-893a-4416-a216-b27c457c40ae" ownerguid="0296465a-25de-4af6-a122-376956b4b452"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">That house is <mine>.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">mine, yours, his, hers, its, ours, yours, theirs</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What pronouns are used in a possessive clause?</AUni> -</Question> -</rt> -<rt class="PhPhoneme" guid="655c115f-eab9-4552-9a98-7ef9bb41ebb1" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="489801de-d723-4069-8469-b405d5f26cd2" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">voiced velar stop</Run> -</AStr> -</Description> -<Name> -<AUni ws="qvm-x-ach">q</AUni> -<AUni ws="qvm-x-acl">q</AUni> -<AUni ws="qvm-x-akh">q</AUni> -<AUni ws="qvm-x-akl">q</AUni> -<AUni ws="qvm-x-ame">q</AUni> -</Name> -</rt> -<rt class="MoStemAllomorph" guid="655dd8bf-59ce-42aa-9f67-b877f4a19e3e" ownerguid="13568de9-7fd1-4997-a27d-bef1989b5a47"> -<Form> -<AUni ws="qvm-x-ach">papa</AUni> -<AUni ws="qvm-x-acl">papa</AUni> -<AUni ws="qvm-x-akh">papa</AUni> -<AUni ws="qvm-x-akl">papa</AUni> -<AUni ws="qvm-x-ame">papa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6561f184-8bbd-4012-968b-37f5eba558b9" ownerguid="af4ac058-d4b3-4c7a-ade8-6af762d0486d"> -<ExampleWords> -<AUni ws="en">decide, decide on, decide against, choose, plan, conclude that, determine your course, strategize</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to deciding to do something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6562f564-a07d-41ce-aa4e-5fc5a887d8b7" ownerguid="a413a5fc-030d-4be9-a9c2-7214de45c7da"> -<Form> -<AUni ws="qvm-x-ach">jawi</AUni> -<AUni ws="qvm-x-acl">jawi; jawe</AUni> -<AUni ws="qvm-x-akh">jawi</AUni> -<AUni ws="qvm-x-akl">jawi; jawe</AUni> -<AUni ws="qvm-x-ame">hawi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6563bd31-5e43-47b0-9481-32e598a21b39" ownerguid="873ef4a1-6694-485e-b894-7cf311fa11d5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="6566df15-fcc8-4856-b981-db7f8d833470"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">salvación; salvacion</AUni> -<AUni ws="qvm-x-acl">salvación; salvacion</AUni> -<AUni ws="qvm-x-akh">salvación; salvacion</AUni> -<AUni ws="qvm-x-akl">salvación; salvacion</AUni> -<AUni ws="qvm-x-ame">salvación; salvacion</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+salvación</AUni> -<AUni ws="qvm-x-acl">+salvación</AUni> -<AUni ws="qvm-x-akh">+salvación</AUni> -<AUni ws="qvm-x-akl">+salvación</AUni> -<AUni ws="qvm-x-ame">+salvación</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.437" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="64bdab81-49cc-4d2b-ba26-0d6046c931d3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+salvación</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7e7face4-c099-4822-97d7-e464592af9a5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="282ac3a8-05d3-4b5d-be5d-4e72042c7a45" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +salvación 
\entryTyp root 
\gENG salvation 
\gSPN salvación 
\e +salvación 
\c N0 
\mp +FinalC 
\ach salvación / _# 
\ach salvacion / ~_# 
\akh salvación / _# 
\akh salvacion / ~_# 
\acl salvación / _# 
\acl salvacion / ~_# 
\akl salvación / _# 
\akl salvacion / ~_# 
\ame salvación / _# 
\ame salvacion / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="65680af5-a849-4a6c-8d7c-2376d8dea886" ownerguid="eafdea8e-521e-4614-8fd5-e8446adf9203"> -<ExampleWords> -<AUni ws="en">reply, contradict, say in rebuttal, rebuttal, refute, rejoinder</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to saying something in reply to something someone said?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="656862c1-80f3-461a-b9cb-cc8873506f39"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">muchca</AUni> -<AUni ws="qvm-x-acl">muchca</AUni> -<AUni ws="qvm-x-akh">muchka</AUni> -<AUni ws="qvm-x-akl">muchka</AUni> -<AUni ws="qvm-x-ame">muchka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mutrka</AUni> -<AUni ws="qvm-x-acl">*mutrka</AUni> -<AUni ws="qvm-x-akh">*mutrka</AUni> -<AUni ws="qvm-x-akl">*mutrka</AUni> -<AUni ws="qvm-x-ame">*mutrka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.517" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3b53d1ba-e709-4e2e-b282-94297f74dcd7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mutrka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="33067bc7-6824-4fe8-a844-c3556184df2a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2fd8b6a6-52c1-47ea-8c5e-c44c4ff1e4d2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mutrka 
\entryTyp root 
\gENG grinding.stone 
\gSPN amoladera 
\e *mutrka 
\c N0 
\ach muchca 
\akh muchka 
\acl muchca 
\akl muchka 
\ame muchka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="65726302-2917-4638-bf41-cdb5cd3de093"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">inte:ru</AUni> -<AUni ws="qvm-x-acl">inte:ru; inte:ru; inte:ro</AUni> -<AUni ws="qvm-x-akh">inte:ru</AUni> -<AUni ws="qvm-x-akl">inte:ru; inte:ru; inte:ro</AUni> -<AUni ws="qvm-x-ame">inte:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+entero</AUni> -<AUni ws="qvm-x-acl">+entero</AUni> -<AUni ws="qvm-x-akh">+entero</AUni> -<AUni ws="qvm-x-akl">+entero</AUni> -<AUni ws="qvm-x-ame">+entero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.477" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bf4eda87-4a5e-4243-9270-929c0a0e190a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+entero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="381bf2e6-855d-44dc-b291-fd3048259cc4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1eaa616c-fc5a-46ea-9aa0-05cc3d4f42de" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +entero 
\entryTyp root 
\gENG entire 
\gSPN entero 
\e +entero 
\c N0 
\ach inte:ru 
\akh inte:ru 
\acl inte:ru / _# 
\acl inte:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl inte:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl inte:ru / _# 
\akl inte:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl inte:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame inte:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="6573baa4-eaac-42e8-81d5-d33ad254f77c" ownerguid="ded254d3-e07a-4788-8ba1-6e2ae6fa083b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tube</AUni> -<AUni ws="es">tubo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="82cd51c9-d07c-4486-8540-aaf67a4af40a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="657c3bc3-3002-4e90-8492-7ab14337f741" ownerguid="fe58ae61-ab0b-43a4-86fb-d9aedd199932"> -<ExampleWords> -<AUni ws="en">mix, mix something with something, mix things together, add something to something, amalgamate, bring together, coalesce, combine, commingle, dilute, fuse, imbue, interlard, intermingle, intermix, join, jumble, lump, meld, merge, mingle, scramble, unification, unify, unite</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to someone mixing things together?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="657ec7de-ffdc-4629-9dd7-df1ca89ed147" ownerguid="86286c23-4899-4ac4-9869-e1bad3589d0a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">desigual</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="599c1501-2a0b-433a-a70b-cb7432c278f2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="Segment" guid="657efb65-4a54-4fa5-9263-3e10a6e2d034" ownerguid="efb7c36b-bc62-4298-a014-31142e6bc71e"> -<Analyses> -<objsur guid="8aadc7ad-3947-4f8c-9c56-5727b987c6d2" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexEntry" guid="6580913f-20ab-4d71-aa82-7e7dab230e09"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuntu</AUni> -<AUni ws="qvm-x-acl">cuntu; cuntu; cunto</AUni> -<AUni ws="qvm-x-akh">kuntu</AUni> -<AUni ws="qvm-x-akl">kuntu; kuntu; kunto</AUni> -<AUni ws="qvm-x-ame">kuntu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kuntu</AUni> -<AUni ws="qvm-x-acl">*kuntu</AUni> -<AUni ws="qvm-x-akh">*kuntu</AUni> -<AUni ws="qvm-x-akl">*kuntu</AUni> -<AUni ws="qvm-x-ame">*kuntu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.13" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="49deab3d-5f27-43fc-8d57-e6b7646929aa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kuntu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cda61434-4b44-4743-b75b-e083bc4e013f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="15278faf-ceb0-4fbf-b4f1-3afbec420083" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kuntu 
\entryTyp root 
\gENG stool 
\gSPN 
\e *kuntu 
\c N0 
\ach cuntu 
\akh kuntu 
\acl cuntu / _# 
\acl cuntu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cunto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kuntu / _# 
\akl kuntu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kunto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kuntu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6580d904-9d36-48c8-8530-5b92fc3e6ce5" ownerguid="d2b61570-af54-44f3-846e-6d7ec9d3737f"> -<ExampleWords> -<AUni ws="en">room</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to a room in a building?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="65821f46-6779-4eab-affa-c6d6373cea49" ownerguid="38473463-4b92-4681-8fd0-0aca0342e88a"> -<ExampleWords> -<AUni ws="en">mollusk, snail, slug, abalone, oyster, scallop, mussel, clam, nautilus, cuttlefish, octopus, squid, conch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to mollusks (phylum Mollusca)?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6582bdb4-b865-4984-ade6-43e2adbd6eb9" ownerguid="908a1a2c-342a-48d8-abbf-dff79aa5504f"> -<Form> -<AUni ws="qvm-x-ach">ranya</AUni> -<AUni ws="qvm-x-acl">ranya</AUni> -<AUni ws="qvm-x-akh">ranya</AUni> -<AUni ws="qvm-x-akl">ranya</AUni> -<AUni ws="qvm-x-ame">ranya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="658339a5-b45c-4a45-8bdb-7fd45adac0c5" ownerguid="38473463-4b92-4681-8fd0-0aca0342e88a"> -<ExampleWords> -<AUni ws="en">crustacean, shrimp, barnacle, pill bug, lobster, crab, crawfish, crayfish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to crustaceans (phylum Arthropoda, class Crustacea)?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="65846491-830b-432a-9b69-ea9f0a84a560"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">goli</AUni> -<AUni ws="qvm-x-acl">goli; gole</AUni> -<AUni ws="qvm-x-akh">qoli</AUni> -<AUni ws="qvm-x-akl">qoli; qole</AUni> -<AUni ws="qvm-x-ame">quli</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qulli</AUni> -<AUni ws="qvm-x-acl">*qulli</AUni> -<AUni ws="qvm-x-akh">*qulli</AUni> -<AUni ws="qvm-x-akl">*qulli</AUni> -<AUni ws="qvm-x-ame">*qulli</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.841" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7d01dd08-5d06-425e-8120-a21e51cbefe7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qulli</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="09330312-0bb2-4209-9b08-06c4c0f8d01d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="89f3771c-7e0d-419e-834b-222d028d2acb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qulli 
\entryTyp root 
\gENG bank.fire 
\gSPN cubrir.un.fuego 
\e *qulli 
\c V1 
\mp +FinalI 
\ach goli 
\akh qoli 
\acl goli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gole +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qoli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qole +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame quli</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="658631d0-f29a-4ed0-925e-04fa323762f9" ownerguid="dccb55f6-9e2b-4963-a6d5-640d118909e1"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="2fc6c80d-e6ee-4a91-8466-43f3b1b056d8" t="o" /> -<objsur guid="202421c8-91ba-48da-8f7e-dd9796ab2f33" t="o" /> -<objsur guid="d1adf5cc-74a6-4d54-9198-d70564ddbd6e" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="65888d76-787b-4cc2-8b4f-19773dcc01a5" ownerguid="24dcd977-5e52-4c2b-858d-58b7d5209f56"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pile.up (corn stalks)</AUni> -<AUni ws="es">amontonar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e0e93482-646f-4fcb-a967-b57b54ca6a8e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="65895c5f-c1b2-4056-9299-4fb7dbf6d40b" ownerguid="76a06e45-99f7-446f-a2e8-e23edf6064bd"> -<ExampleWords> -<AUni ws="en">rotten, decayed, moldy, mildewed, putrid, rotted, carious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is decaying?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="658e88f6-7dd0-44bd-b964-2a49bcb92fca" ownerguid="5b3b77dc-0773-482d-a906-edb842914a6c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="65910896-de23-43b1-8270-2aa93cea2e3f" ownerguid="45a8e1b4-b096-4303-8422-479bd6971fd1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="65926a7a-bc46-4a40-a2c9-bf84696a3903" ownerguid="3dd684e6-75d9-41f4-aaa3-fb0cb3c7d400"> -<Abbreviation> -<AUni ws="en">4.4.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being gentle.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88H Gentleness, Mildness</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Gentle</AUni> -</Name> -<Questions> -<objsur guid="15d4ff08-47eb-4537-9a1f-683e0908b8a7" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="65929d64-1bf4-44a1-91f9-7c75bacc05f0" ownerguid="2bef8b66-9d06-4ecf-a6cf-0e664b90dd35"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="65947d3b-a93f-4213-b985-c12a6e706cb3" ownerguid="47905104-632f-45bc-b18c-a689e514158f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="6594e458-900e-44d3-8af5-09061506310c" ownerguid="5457a514-dce1-40bb-942a-92f3d1bf86fb"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="659703fc-9cf0-42d0-951e-c61d5fa49b8d" ownerguid="c16334a0-be29-4a1e-a870-4cb3f1df984d"> -<ExampleWords> -<AUni ws="en">gathered, collected, concentrated, crowded, crowding, cumulative, massed together, massing, togetherness, heaped, loaded, piled</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe things that have been gathered?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="65978772-4270-41c7-8347-562cebace48d" ownerguid="82aba3d9-56fc-4844-b198-c0076304a730"> -<Form> -<AUni ws="qvm-x-ach">santïsimu</AUni> -<AUni ws="qvm-x-acl">santïsimu; santïsimu; santïsimo</AUni> -<AUni ws="qvm-x-akh">santïsimu</AUni> -<AUni ws="qvm-x-akl">santïsimu; santïsimu; santïsimo</AUni> -<AUni ws="qvm-x-ame">santïsimu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="65981f78-f621-4b2f-9fd7-af97dda527c5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">punta</AUni> -<AUni ws="qvm-x-acl">punta</AUni> -<AUni ws="qvm-x-akh">punta</AUni> -<AUni ws="qvm-x-akl">punta</AUni> -<AUni ws="qvm-x-ame">punta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+puntar.1</AUni> -<AUni ws="qvm-x-acl">+puntar.1</AUni> -<AUni ws="qvm-x-akh">+puntar.1</AUni> -<AUni ws="qvm-x-akl">+puntar.1</AUni> -<AUni ws="qvm-x-ame">+puntar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.7" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e31441ef-9aec-48a1-ac7a-d796e1f69a9f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+puntar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="80fc6bf4-e7c8-411d-9e1b-1b31c81112f3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="81fe4eb6-ac3a-4a0d-a71d-703998f16440" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +puntar.1 
\entryTyp root 
\gENG go.ahead 
\gSPN ir.delante 
\e +puntar.1 
\c V1 
\ach punta 
\akh punta 
\acl punta 
\akl punta 
\ame punta 
\mcc +puntar.1 / ~_ 3 COND</Run> -</AStr> -</Custom> -</rt> -<rt class="StTxtPara" guid="659bb160-3934-4156-b6cb-ac7aa256e591" ownerguid="0d576300-114e-448c-87da-922d052429c2"> -<ParseIsCurrent val="False" /> -</rt> -<rt class="CmSemanticDomain" guid="659ccabf-f978-4852-a1a6-c225f1d76b97" ownerguid="14ad95ad-50fc-450f-b44d-4273df0b1e8b"> -<Abbreviation> -<AUni ws="en">8.4.1.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.640" /> -<DateModified val="2022-9-23 16:55:8.640" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a special day.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Special days</AUni> -</Name> -<OcmCodes> -<Uni>527 Rest Days and Holidays; 528 Vacations</Uni> -</OcmCodes> -<Questions> -<objsur guid="24142e23-a657-4a08-98e9-5bae08869b5d" t="o" /> -<objsur guid="d6619043-31cd-48da-9965-952ff5f7f4f4" t="o" /> -<objsur guid="6769f414-6dcd-4c7d-a7e0-959ed7be5bf0" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="71cbefc3-e0a5-4b97-9672-fa0cb34c59e4" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="65a3cdf0-0537-449a-9020-16a8be564c5b" ownerguid="cf543d5c-1767-4b55-b55e-37fac2c65f66"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="65a3d052-ab43-4056-b273-5672b4332e6d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pe:sa</AUni> -<AUni ws="qvm-x-acl">pe:sa</AUni> -<AUni ws="qvm-x-akh">pe:sa</AUni> -<AUni ws="qvm-x-akl">pe:sa</AUni> -<AUni ws="qvm-x-ame">pe:sa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pesar</AUni> -<AUni ws="qvm-x-acl">+pesar</AUni> -<AUni ws="qvm-x-akh">+pesar</AUni> -<AUni ws="qvm-x-akl">+pesar</AUni> -<AUni ws="qvm-x-ame">+pesar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.810" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ea6f5950-2fcd-4eba-aaa7-351e8abba758" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pesar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d54278de-960e-424b-ad6b-f3c968d338d3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="46df6377-c5f4-4db6-a340-2b2991aaae67" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pesar 
\entryTyp root 
\gENG regret 
\gSPN ser.triste 
\e +pesar 
\c V2 
\ach pe:sa 
\akh pe:sa 
\acl pe:sa 
\akl pe:sa 
\ame pe:sa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="65a6484e-bde3-4ca7-bece-619eee49b86c" ownerguid="aadefee4-ed14-4753-952e-e945f2972e37"> -<ExampleWords> -<AUni ws="en">be part of, form a part of, inherent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to being a part of something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="65a7463a-373c-4d97-b7ba-742b31df5b6b" ownerguid="68ed3e51-ddc4-4cec-89ff-605259ac9fcf"> -<ExampleWords> -<AUni ws="en">nostrils flare, wrinkle your nose</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the nose moving?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="65a7a993-845a-4fad-9ba7-79335eb26271" ownerguid="8b98c27e-351e-4953-ba13-d4d1e282ea33"> -<Form> -<AUni ws="qvm-x-ach">chichi</AUni> -<AUni ws="qvm-x-acl">chichi; chichi; chiche</AUni> -<AUni ws="qvm-x-akh">chichi</AUni> -<AUni ws="qvm-x-akl">chichi; chichi; chiche</AUni> -<AUni ws="qvm-x-ame">chichi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="65a928b8-8587-48be-8f23-41f85549c547" ownerguid="9f868391-f1df-4682-bdcb-2c2c799006cf"> -<Abbreviation> -<AUni ws="en">3.2.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to memorizing something--to think hard about something so that you will not forget it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>29A Storing of Information</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Memorize</AUni> -</Name> -<Questions> -<objsur guid="4a401bd6-a27f-4537-ac03-7f291dae6eb6" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="65aae10b-bc67-4198-9942-e150e7f50f7c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pie:za</AUni> -<AUni ws="qvm-x-acl">pie:za</AUni> -<AUni ws="qvm-x-akh">pie:za</AUni> -<AUni ws="qvm-x-akl">pie:za</AUni> -<AUni ws="qvm-x-ame">pie:za</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+piezar</AUni> -<AUni ws="qvm-x-acl">+piezar</AUni> -<AUni ws="qvm-x-akh">+piezar</AUni> -<AUni ws="qvm-x-akl">+piezar</AUni> -<AUni ws="qvm-x-ame">+piezar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.830" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5412be1d-71bb-421a-9df8-8f24d4220064" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+piezar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e4e3c7d7-fdaf-455e-84f5-4ef63c04f98c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2cb9c97e-cd67-48ae-a5ea-bcef7746ae11" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +piezar 
\entryTyp root 
\gENG piece 
\gSPN pieza 
\e +piezar 
\c V1 
\ach pie:za 
\akh pie:za 
\acl pie:za 
\akl pie:za 
\ame pie:za</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="65aeb7dd-f6c6-476d-8b20-dbaa1aff6516" ownerguid="63e7e607-7ad1-4cb5-89cf-de362007b4bb"> -<Form> -<AUni ws="qvm-x-ach">guitärra</AUni> -<AUni ws="qvm-x-acl">guitärra</AUni> -<AUni ws="qvm-x-akh">guitärra</AUni> -<AUni ws="qvm-x-akl">guitärra</AUni> -<AUni ws="qvm-x-ame">guitärra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="65af4e52-850e-4fbd-97c9-f89a7b307e86"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gari</AUni> -<AUni ws="qvm-x-acl">gari; gare</AUni> -<AUni ws="qvm-x-akh">qari</AUni> -<AUni ws="qvm-x-akl">qari; qare</AUni> -<AUni ws="qvm-x-ame">qari</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qari</AUni> -<AUni ws="qvm-x-acl">*qari</AUni> -<AUni ws="qvm-x-akh">*qari</AUni> -<AUni ws="qvm-x-akl">*qari</AUni> -<AUni ws="qvm-x-ame">*qari</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.112" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ac9d1dac-aa71-4e2a-8b25-709b0fed352a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qari</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e2c5a96f-10fb-4770-9411-8ba744f3722b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="464e1ace-f994-43a3-a98a-1e87fe2a2604" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qari 
\entryTyp root 
\gENG open 
\gSPN abrir 
\e *qari 
\c V2 
\mp +FinalI 
\ach gari 
\akh qari 
\acl gari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qari</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="65b1b094-f462-4915-95d6-041dd9261734" ownerguid="399eafc3-827b-4381-b94f-0981d2f465c9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="65b23cbe-3239-47d4-8fc5-8ce15fecef2b" ownerguid="77a30a6b-c141-416f-8100-8177350b049d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="65b454ee-2a3d-4790-8efe-23f4e1c025b9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chuecu; chueco</AUni> -<AUni ws="qvm-x-acl">chuecu; chuecu; chueco</AUni> -<AUni ws="qvm-x-akh">chuecu; chueco</AUni> -<AUni ws="qvm-x-akl">chuecu; chuecu; chueco</AUni> -<AUni ws="qvm-x-ame">chuecu; chueco</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+chueco</AUni> -<AUni ws="qvm-x-acl">+chueco</AUni> -<AUni ws="qvm-x-akh">+chueco</AUni> -<AUni ws="qvm-x-akl">+chueco</AUni> -<AUni ws="qvm-x-ame">+chueco</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.335" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1344d1f9-6656-46f6-8566-70e68faa1cfd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+chueco</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="230b8166-5259-457b-9f7c-89395f942a95" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="75c9a719-332a-4248-83bc-5e08d2be0209" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +chueco 
\entryTyp root 
\gENG crooked 
\gSPN chueco 
\e +chueco 
\c N0 
\ach chuecu / ~_# 
\ach chueco / _# 
\akh chuecu / ~_# 
\akh chueco / _# 
\acl chuecu / ~_# 
\acl chuecu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chueco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chuecu / ~_# 
\akl chuecu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chueco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chuecu / ~_# 
\ame chueco / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="65b5aa5c-b91c-4fda-98b0-c736c3aafb22" ownerguid="7e4bf435-4769-4d4a-a865-9a9981467355"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 R0/R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">EACH</AUni> -<AUni ws="es">CADA</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b0ee83ce-c1ff-41c7-8aa1-b6e53ae19ebd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="65b5d0f8-5c1c-43b8-80a4-2cfec41b9952" ownerguid="8d4a5548-7a6a-48bd-b2a7-58d3fb0cf1cb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">excess</AUni> -<AUni ws="es">sobra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5bd76e3e-773c-41dc-8751-13570ab7f845" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="65b73c8a-78dd-4e68-a125-47b8c16de4d1" ownerguid="94253887-8eb0-4704-946f-98a465c513f7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yarpä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yarpä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yarpä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yarpä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yarpä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="15f7b62a-a17b-41ac-b56e-85186914954c" t="r" /> -</Morph> -<Msa> -<objsur guid="7440cecd-7493-4b9e-86fd-dbf27ad2bfed" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="65bb0844-9a71-4eec-9b86-bf4b4b508a28" ownerguid="9bb173c6-cf38-47cd-803f-ebdf964ca2fc"> -<Abbreviation> -<AUni ws="en">4.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to responding to trouble.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Respond to trouble</AUni> -</Name> -<Questions> -<objsur guid="3c45adda-b5ba-4eac-8b02-0a9a2b2e64e0" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="76a4a286-1c8a-4c4a-9eaf-dca040be574a" t="o" /> -<objsur guid="401bbbe4-a33a-4a1e-b26a-18a756e002c4" t="o" /> -<objsur guid="20fadd54-6cec-4bb3-a47c-66c29aaff227" t="o" /> -<objsur guid="a90e47fb-667c-46f7-beab-5ec4e9e6edb5" t="o" /> -<objsur guid="05811fbe-2361-4219-a5d3-be3dc487f6fa" t="o" /> -<objsur guid="2aabd548-5ee2-4962-8f10-84d1b0427c41" t="o" /> -<objsur guid="7babf463-5e62-4a82-96d3-ef5989803c41" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="65bc1310-c6a3-45f2-a2b9-b6d9bb2cc616" ownerguid="d1439ea3-485d-4176-bfdc-932083f3b54a"> -<Form> -<AUni ws="qvm-x-ach">uysha</AUni> -<AUni ws="qvm-x-acl">uysha</AUni> -<AUni ws="qvm-x-akh">uysha</AUni> -<AUni ws="qvm-x-akl">uysha</AUni> -<AUni ws="qvm-x-ame">uysha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="65be8a94-a621-4b71-a2a7-b7dd3d36c395" ownerguid="029e0760-3306-41cc-b032-40befb22303e"> -<ExampleWords> -<AUni ws="en">stimulant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to stimulants?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="65c06f15-a334-41d8-8a22-cf849d181513" ownerguid="d7fe403b-7c29-44e4-a79b-da8fef4a387e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">carry</AUni> -<AUni ws="es">llevar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ddf8ac43-5725-4fec-a456-92f8d1873862" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="65c0aec0-3f79-4e87-8313-6abe37666358" ownerguid="a780cc0e-d2b0-496c-92d3-1be5674170e7"> -<Form> -<AUni ws="qvm-x-ach">loglu</AUni> -<AUni ws="qvm-x-acl">loglu; loglu; loglo</AUni> -<AUni ws="qvm-x-akh">loqlu</AUni> -<AUni ws="qvm-x-akl">loqlu; loqlu; loqlo</AUni> -<AUni ws="qvm-x-ame">luqlu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="65c0c074-35e6-48f0-ae8e-35fde9b46af3" ownerguid="76ee0bb6-e7f6-4ec3-bd37-c2e9cdc849e5"> -<Form> -<AUni ws="qvm-x-ach">almacén</AUni> -<AUni ws="qvm-x-acl">almacén</AUni> -<AUni ws="qvm-x-akh">almacén</AUni> -<AUni ws="qvm-x-akl">almacén</AUni> -<AUni ws="qvm-x-ame">almacén</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="65c68427-2e20-42b2-8f49-623055ea9246" ownerguid="6342c8bf-55b5-400f-af7e-63055fe6813b"> -<Abbreviation> -<AUni ws="en">6.7.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to pounding tools.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Pounding tool</AUni> -</Name> -<Questions> -<objsur guid="add7bb08-faca-4aaf-8a40-cecbdfb06323" t="o" /> -<objsur guid="4b5e39d6-bf93-42e8-9c91-831099e64244" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="65c81409-cbae-4491-965c-8987e3b56aa7" ownerguid="2ae0c81d-02f5-4f28-80ab-843c7e7ebda0"> -<Form> -<AUni ws="qvm-x-ach">hundi</AUni> -<AUni ws="qvm-x-acl">hundi; hunde</AUni> -<AUni ws="qvm-x-akh">hundi</AUni> -<AUni ws="qvm-x-akl">hundi; hunde</AUni> -<AUni ws="qvm-x-ame">hundi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="ReversalIndex" guid="65c9ed08-8bc7-4048-b5ab-367dadba7487" ownerguid="af26d792-ea5e-11de-8f7e-0013722f8dec"> -<DateCreated val="2022-9-23 16:55:7.762" /> -<DateModified val="2022-9-23 16:55:7.762" /> -<Name> -<AUni ws="en">English</AUni> -</Name> -<PartsOfSpeech> -<objsur guid="15db85ca-e88e-41ac-9503-97961d376138" t="o" /> -</PartsOfSpeech> -<WritingSystem> -<Uni>en</Uni> -</WritingSystem> -</rt> -<rt class="MoStemAllomorph" guid="65cbc02a-4ad7-4a04-b0a3-afe7522c4601" ownerguid="c6d4c02a-a2b4-41e9-8f28-63b4516d3b96"> -<Form> -<AUni ws="qvm-x-ach">raccha</AUni> -<AUni ws="qvm-x-acl">raccha</AUni> -<AUni ws="qvm-x-akh">rakcha</AUni> -<AUni ws="qvm-x-akl">rakcha</AUni> -<AUni ws="qvm-x-ame">rakcha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="65ce0817-cfae-4511-8b11-7d3bde6d7f8e" ownerguid="5ec4cb19-0127-4e01-8d32-31703728bbcb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="65d1072a-2120-4518-a2d8-e9fcf31ce3c3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wirpa</AUni> -<AUni ws="qvm-x-acl">wirpa</AUni> -<AUni ws="qvm-x-akh">wirpa</AUni> -<AUni ws="qvm-x-akl">wirpa</AUni> -<AUni ws="qvm-x-ame">wirpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wirpa</AUni> -<AUni ws="qvm-x-acl">*wirpa</AUni> -<AUni ws="qvm-x-akh">*wirpa</AUni> -<AUni ws="qvm-x-akl">*wirpa</AUni> -<AUni ws="qvm-x-ame">*wirpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.678" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e0ff8e39-e119-4348-a929-820abe96d3d1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wirpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8822354b-4d84-4bd1-b7ce-c56c7614584c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="00508ca3-1fe7-49a3-b170-a4b6643ef308" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wirpa 
\entryTyp root 
\gENG lip 
\gSPN labio 
\e *wirpa 
\c N0 
\ach wirpa 
\akh wirpa 
\acl wirpa 
\akl wirpa 
\ame wirpa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="65d15ae8-135a-4faa-bb34-ec0336d84fcc" ownerguid="a3cb8a0a-99b7-40b3-9297-2a7eb51f0b7d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="65d3f082-7677-43b8-8863-c6b8cc3a9c02"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">a:mu</AUni> -<AUni ws="qvm-x-acl">a:mu; a:mu; a:mo</AUni> -<AUni ws="qvm-x-akh">a:mu</AUni> -<AUni ws="qvm-x-akl">a:mu; a:mu; a:mo</AUni> -<AUni ws="qvm-x-ame">a:mu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+amo</AUni> -<AUni ws="qvm-x-acl">+amo</AUni> -<AUni ws="qvm-x-akh">+amo</AUni> -<AUni ws="qvm-x-akl">+amo</AUni> -<AUni ws="qvm-x-ame">+amo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.759" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="55fc5978-32e5-47f7-a1f6-a30d74e4eb40" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+amo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7f0c8138-52db-49c7-8c41-44ed14c726a0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="779654db-f4aa-4d93-8cd5-4e603da9350b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +amo 
\entryTyp root 
\gENG owner 
\gSPN amo 
\e +amo 
\c N0 
\ach a:mu 
\akh a:mu 
\acl a:mu / _# 
\acl a:mu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl a:mo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl a:mu / _# 
\akl a:mu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl a:mo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame a:mu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="65d4e41f-ecfe-4b46-a7ea-088236c18482" ownerguid="59aa8630-2777-4443-b02c-d6b48271f9e1"> -<Form> -<AUni ws="qvm-x-ach">condena</AUni> -<AUni ws="qvm-x-acl">condena</AUni> -<AUni ws="qvm-x-akh">condena</AUni> -<AUni ws="qvm-x-akl">condena</AUni> -<AUni ws="qvm-x-ame">condena</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="65d683d0-80d7-410a-b8de-63be7047b545" ownerguid="77722ca5-841e-46ee-8f24-d6e594fccea8"> -<Form> -<AUni ws="qvm-x-ach">bäyu</AUni> -<AUni ws="qvm-x-acl">bäyu; bäyu; bäyo</AUni> -<AUni ws="qvm-x-akh">bäyu</AUni> -<AUni ws="qvm-x-akl">bäyu; bäyu; bäyo</AUni> -<AUni ws="qvm-x-ame">bäyu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="65d840b4-2631-4232-8b18-8f48ed193507"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">proverbiu; proverbio</AUni> -<AUni ws="qvm-x-acl">proverbiu; proverbiu; proverbio</AUni> -<AUni ws="qvm-x-akh">proverbiu; proverbio</AUni> -<AUni ws="qvm-x-akl">proverbiu; proverbiu; proverbio</AUni> -<AUni ws="qvm-x-ame">proverbiu; proverbio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+proverbio</AUni> -<AUni ws="qvm-x-acl">+proverbio</AUni> -<AUni ws="qvm-x-akh">+proverbio</AUni> -<AUni ws="qvm-x-akl">+proverbio</AUni> -<AUni ws="qvm-x-ame">+proverbio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.960" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d0da5e32-afe7-41bc-99b7-dd66083d71b9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+proverbio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2baaa609-e450-4137-83c0-5fe389f56e7a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0d3c76e7-6a1e-46d8-a005-22510dd42a19" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +proverbio 
\entryTyp root 
\gENG 
\gSPN 
\e +proverbio 
\c N0 
\ach proverbiu / ~_# 
\ach proverbio / _# 
\akh proverbiu / ~_# 
\akh proverbio / _# 
\acl proverbiu / ~_# 
\acl proverbiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl proverbio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl proverbiu / ~_# 
\akl proverbiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl proverbio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame proverbiu / ~_# 
\ame proverbio / _# 
\i 1KI 4.32 Quimsa waranga (3,000) proverbiucunatami Salomón escribergan runacuna yachacunanpag.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="65db711e-86aa-492d-ae2a-4b34e6d308b5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nadya</AUni> -<AUni ws="qvm-x-acl">nadya</AUni> -<AUni ws="qvm-x-akh">nadya</AUni> -<AUni ws="qvm-x-akl">nadya</AUni> -<AUni ws="qvm-x-ame">nadya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+nadar</AUni> -<AUni ws="qvm-x-acl">+nadar</AUni> -<AUni ws="qvm-x-akh">+nadar</AUni> -<AUni ws="qvm-x-akl">+nadar</AUni> -<AUni ws="qvm-x-ame">+nadar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.537" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e7f4bc4e-8a8c-4563-afb7-692744abd2f5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+nadar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a4d56bda-dbe1-4eea-abd6-64f3bf41e9bf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e49fe08b-0adf-495d-b099-eff923dc8d7a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +nadar 
\entryTyp root 
\gENG swim 
\gSPN nadar 
\e +nadar 
\c V1 
\ach nadya 
\akh nadya 
\acl nadya 
\akl nadya 
\ame nadya</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="65dc63a2-df07-4959-9f8a-3ce7b77a87d0" ownerguid="c6dd4537-9d9b-4fbb-9d81-8b23c1ac66f2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">throw.out</AUni> -<AUni ws="es">botar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d2d2bfb6-5ff7-4b48-831a-c27cb6b0f51e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="65dcc228-8e98-411c-8c0e-94566a298a36" ownerguid="67320802-4a28-43bc-908e-b523c5e965bf"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="65dd8e11-aaea-4a2c-b5d5-660be93b7b55" ownerguid="43dd6293-28be-49a1-89f1-422b07947fda"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c408ecae-2452-4e1f-b695-28005b286d0d" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">ram</AUni> -<AUni ws="es">carnero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4063e25b-10e3-42ed-9743-b28582001a65" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="65de72f4-7252-49f0-9b0a-7c037b0aa0ab" ownerguid="307b6c74-3765-4e58-b29c-682a2033cd53"> -<Form> -<AUni ws="qvm-x-ach">cawitu</AUni> -<AUni ws="qvm-x-acl">cawitu; cawitu; cawito</AUni> -<AUni ws="qvm-x-akh">kawitu</AUni> -<AUni ws="qvm-x-akl">kawitu; kawitu; kawito</AUni> -<AUni ws="qvm-x-ame">kawitu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="65e25109-70b6-44e6-9ba3-814c12356781" ownerguid="8de202c1-1be0-4d1f-b4f9-2b01bf9b5472"> -<Form> -<AUni ws="qvm-x-ach">ari</AUni> -<AUni ws="qvm-x-acl">ari</AUni> -<AUni ws="qvm-x-akh">ari</AUni> -<AUni ws="qvm-x-akl">ari</AUni> -<AUni ws="qvm-x-ame">ari</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="65e7ebac-11b2-4e3a-b07e-309d3776a0d4" ownerguid="f5392cbc-1711-4006-bb66-d45d0fd8afd1"> -<Form> -<AUni ws="qvm-x-ach">ucsi</AUni> -<AUni ws="qvm-x-acl">ucsi; ucse</AUni> -<AUni ws="qvm-x-akh">uksi</AUni> -<AUni ws="qvm-x-akl">uksi; ukse</AUni> -<AUni ws="qvm-x-ame">uksi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="65ee8bf8-f5ac-4510-8186-20f06d2015d9" ownerguid="691bdba3-c216-4b42-877c-674bbdb517a7"> -<ExampleWords> -<AUni ws="en">trustworthy, responsible, trusted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone that you can trust?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="65ef6aae-019f-4980-b6d9-5b7ad2c8e68f" ownerguid="3160b7ad-e4e8-4a46-8e2e-d5e601969547"> -<Abbreviation> -<AUni ws="en">3.5.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.174" /> -<DateModified val="2022-9-23 16:55:8.174" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a saying or proverb--a short thing that people say to teach something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Saying, proverb</AUni> -</Name> -<Questions> -<objsur guid="8a0c3122-c526-4b26-9831-44ca2275182c" t="o" /> -<objsur guid="4f50062c-629e-4efc-ac8f-7c470a997482" t="o" /> -<objsur guid="00725ce4-e43f-4672-a3ef-3c243d831b34" t="o" /> -<objsur guid="453ff0cd-e8b6-4ad2-98f7-7198db6111d8" t="o" /> -<objsur guid="2ad42158-6958-4f5e-9376-162068e223f0" t="o" /> -<objsur guid="89438fa3-4a56-441a-be29-452d4364e875" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="65f01a72-3b64-4788-9431-af7a3d9bf6ac" ownerguid="307bd120-e876-4218-b489-8c794914b8c6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" t="r" /> -</Morph> -<Msa> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="65f09e08-0ad8-4540-a584-a3723218b553"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pra:wa</AUni> -<AUni ws="qvm-x-acl">pra:wa</AUni> -<AUni ws="qvm-x-akh">pra:wa</AUni> -<AUni ws="qvm-x-akl">pra:wa</AUni> -<AUni ws="qvm-x-ame">pra:wa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+braua</AUni> -<AUni ws="qvm-x-acl">+braua</AUni> -<AUni ws="qvm-x-akh">+braua</AUni> -<AUni ws="qvm-x-akl">+braua</AUni> -<AUni ws="qvm-x-ame">+braua</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.981" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="78cff54d-a29e-4353-8069-2130629e4f8a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+braua</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="63faaa79-3c79-45ef-a968-888145d328f6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e8fa9212-48ba-4989-8941-8bf692a062e5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +braua 
\entryTyp root 
\gENG 
\gSPN 
\e +braua 
\c N0 
\ach pra:wa 
\akh pra:wa 
\acl pra:wa 
\akl pra:wa 
\ame pra:wa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="65f2f32f-62c8-4e80-9613-ec30b487453d" ownerguid="82b31efe-219a-425f-8483-862b2f102295"> -<Form> -<AUni ws="qvm-x-ach">india</AUni> -<AUni ws="qvm-x-acl">india</AUni> -<AUni ws="qvm-x-akh">india</AUni> -<AUni ws="qvm-x-akl">india</AUni> -<AUni ws="qvm-x-ame">india</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="65f54332-10cf-4ec1-aa4d-dce6fc89e63a" ownerguid="e74d0d95-ce52-46f8-9f6d-67c48695bd1f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="65fd9982-6701-40c6-bcb4-5fb305259bda" ownerguid="0b6da2c6-cc71-47ea-bcc2-1deccf6901ef"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</Msa> -</rt> -<rt class="Segment" guid="65fdccf6-ea1f-4f95-be1f-ed64a981da94" ownerguid="7ebea6b0-00ca-41d3-ba2c-c5a079f79cec"> -<Analyses> -<objsur guid="2269aeba-112c-4eab-a1e5-7d4f6aaf6c8d" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemMsa" guid="6601128e-8cfe-48a5-8f12-be237441b8a6" ownerguid="af4dc9fa-dafa-43eb-b1f6-e0fe51e236c6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="6601b6a4-645a-47fb-8275-bfe335210009"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fresa:da</AUni> -<AUni ws="qvm-x-acl">fresa:da</AUni> -<AUni ws="qvm-x-akh">fresa:da</AUni> -<AUni ws="qvm-x-akl">fresa:da</AUni> -<AUni ws="qvm-x-ame">fresa:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+frazada</AUni> -<AUni ws="qvm-x-acl">+frazada</AUni> -<AUni ws="qvm-x-akh">+frazada</AUni> -<AUni ws="qvm-x-akl">+frazada</AUni> -<AUni ws="qvm-x-ame">+frazada</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.578" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9c239e68-85a8-4cfa-8658-d0a47280e55b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+frazada</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dc11f8c6-ae04-4674-ad9b-fedd42b5c97e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="276d4677-a7d0-412d-b6d3-9a10d0f54428" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +frazada 
\entryTyp root 
\gENG blanket 
\gSPN frazada 
\e +frazada 
\c N0 
\ach fresa:da 
\akh fresa:da 
\acl fresa:da 
\akl fresa:da 
\ame fresa:da</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6604e4db-da09-4c9e-958b-253e24e8f34e" ownerguid="f74f28d1-8742-4c9f-95dc-d08336e91249"> -<ExampleWords> -<AUni ws="en">immature, callow, young</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a person who is not yet an adult?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="66069bc6-eb28-4559-ae1c-01c5a5c0d76c" ownerguid="5f2f8bd0-7e8c-46e3-9240-519cb139388b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 15.6 Fiyu runapaga tarishgalanpis afannilanpagmi caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="660cf7a3-9f96-4c3f-9078-4af7b9b39349" ownerguid="9f446903-c472-48f9-83ad-00435e221373"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.wet</AUni> -<AUni ws="es">mojar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5803ea7e-4a09-4827-bf42-8e85aec4c3cb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="660f0005-fe4b-44b4-93f2-cc19fb8a8d96" ownerguid="237998a4-2383-4cc1-bddf-1681e0939c01"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">earlier</AUni> -<AUni ws="es">antes</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3ef808d4-a554-4f8e-961d-7d0f6c9f7105" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6619a250-60be-4c7f-9bee-e5fe3193570f" ownerguid="1c3c8af0-56b9-4617-862e-21f39b388606"> -<ExampleWords> -<AUni ws="en">pass away, pass on, go, kick the bucket, snuff it</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to dying as a result of illness or old age?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="661c53cb-c7f6-49d4-befb-5774b7dc4308" ownerguid="282a720b-8428-42cf-93b7-fafbbcd11e6a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="661ccf13-ba2c-464a-85e7-15743fe873f3"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">taptiki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="661d793d-daf2-472a-9ce3-ea7ee6f1506a" ownerguid="56cb7acc-108f-44ab-a7dc-d995bf6db8c5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="661ed029-3a87-4561-af56-94128312d401" ownerguid="3dcc4d9c-d6fc-4acf-9310-eb4909d235c6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="661ef931-265e-4c1e-bfce-124f7a2889f1" ownerguid="c3b808d4-d94e-4c8e-b7b2-87b4f4a83198"> -<ExampleWords> -<AUni ws="en">work clothes, overalls, coveralls, apron, work gloves, hardhat, steel-toed shoes, boots, goggles</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What special clothes are worn for work?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="661f4184-a6f8-4e69-b6c8-391b9d476411" ownerguid="21ebc64a-a1b8-45bd-b7f6-143a053f1d31"> -<ExampleWords> -<AUni ws="en">basketball court, arena, gym, gymnasium</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What is the place called where the game is played?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="66204b24-5821-4d17-8e79-8620bfc3dbcf" ownerguid="be74f6a4-8830-469e-9e17-074205097ec2"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="6620c3c6-7e41-409d-8a58-f8fffbdc9aa0" ownerguid="44870512-7cb2-469c-9b20-e15d3ce62655"> -<Form> -<AUni ws="qvm-x-ach">sacyador</AUni> -<AUni ws="qvm-x-acl">sacyador</AUni> -<AUni ws="qvm-x-akh">sacyador</AUni> -<AUni ws="qvm-x-akl">sacyador</AUni> -<AUni ws="qvm-x-ame">sacyador</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="66237c50-13e1-4e4b-b91d-c5eb6f5c534b" ownerguid="8a5c87ad-2d15-40c2-9f15-d7942ac80261"> -<ExampleWords> -<AUni ws="en">surrender, sue for peace, armistice, concede defeat, accept defeat, admit defeat, give up, give in, yield, call it quits, unconditional surrender, lay down arms, turn yourself in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to surrendering to an enemy?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6626ad39-4ceb-454c-b21f-7058b164c30a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quiru</AUni> -<AUni ws="qvm-x-acl">quiru; quiru; quiro</AUni> -<AUni ws="qvm-x-akh">kiru</AUni> -<AUni ws="qvm-x-akl">kiru; kiru; kiro</AUni> -<AUni ws="qvm-x-ame">kiru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kiru</AUni> -<AUni ws="qvm-x-acl">*kiru</AUni> -<AUni ws="qvm-x-akh">*kiru</AUni> -<AUni ws="qvm-x-akl">*kiru</AUni> -<AUni ws="qvm-x-ame">*kiru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.993" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ea3039aa-d0f2-48b9-b56d-5239ba4fdf19" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kiru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="665b735d-d9ad-4c06-a442-bec9d5ba1b46" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="30760877-00dc-47eb-b629-7b2ed79691c0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kiru 
\entryTyp root 
\gENG tooth 
\gSPN diente 
\e *kiru 
\c N0 
\ach quiru 
\akh kiru 
\acl quiru / _# 
\acl quiru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl quiro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kiru / _# 
\akl kiru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kiro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kiru</Run> -</AStr> -</Custom> -</rt> -<rt class="MoAffixAllomorph" guid="66271d47-34ad-4f67-917e-5a1f15d14a14" ownerguid="2574c8e7-7940-4952-b911-9e5ee9f63015"> -<Form> -<AUni ws="qvm-x-ach">li</AUni> -<AUni ws="qvm-x-acl">li</AUni> -<AUni ws="qvm-x-akh">li</AUni> -<AUni ws="qvm-x-akl">li</AUni> -<AUni ws="qvm-x-ame">li</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="662945fc-718d-4f7a-b08d-d9d4ba6d3795" ownerguid="efd85e94-ea33-45d8-b169-397a34acd71d"> -<Form> -<AUni ws="qvm-x-ach">gaululu</AUni> -<AUni ws="qvm-x-acl">gaululu; gaululo</AUni> -<AUni ws="qvm-x-akh">qawlulu</AUni> -<AUni ws="qvm-x-akl">qawlulu; qawlulo</AUni> -<AUni ws="qvm-x-ame">qawlulu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="662a3e97-f3cb-4f72-b67c-196f87a3d18d" ownerguid="11592f63-a052-42c5-ad1a-264986616e3d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="662cbcbc-a71e-4251-aca6-0cb1db47de9d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">iwala</AUni> -<AUni ws="qvm-x-acl">iwala</AUni> -<AUni ws="qvm-x-akh">iwala</AUni> -<AUni ws="qvm-x-akl">iwala</AUni> -<AUni ws="qvm-x-ame">iwala</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+igualar</AUni> -<AUni ws="qvm-x-acl">+igualar</AUni> -<AUni ws="qvm-x-akh">+igualar</AUni> -<AUni ws="qvm-x-akl">+igualar</AUni> -<AUni ws="qvm-x-ame">+igualar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.872" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3284ec03-6c14-4317-8e39-b4b06c2085c4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+igualar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="34e5a15c-2ba6-45ca-8f54-d35db9d3c3a8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e05c7ce2-a4b7-4911-9b51-d7c8c1c16ebd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +igualar 
\entryTyp root 
\gENG be.same 
\gSPN igualar 
\e +igualar 
\c V1 
\ach iwala 
\akh iwala 
\acl iwala 
\akl iwala 
\ame iwala</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="662d70e8-2dc9-499a-80cb-92441c8ec1a6" ownerguid="fcbef386-e075-44f0-9b10-3850d8f06b25"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="662ea93d-1884-4d7e-8faa-1eea6662a8e9" ownerguid="f0fdbdfa-094e-4bec-ae19-af23d2c02ed6"> -<ExampleWords> -<AUni ws="en">be displeased with, be unhappy with, not happy, dissatisfied, discontented, disgruntled</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to not being satisfied?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="662f5577-6d76-4619-86c6-2e73080fb1e4" ownerguid="959db2a6-3d5e-412e-9446-57acca89edd9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuna</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuna</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuna</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuna</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuna</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f236a19a-86ce-4599-91f5-fb178488e065" t="r" /> -</Morph> -<Msa> -<objsur guid="0851fe14-f99e-4e06-befc-3a76b044ea37" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="663168ff-767d-4958-87c8-aa4dde05c36f" ownerguid="b2e3717e-3a9c-4260-b089-5a96e0893055"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">diploma</AUni> -<AUni ws="es">diploma</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3043ec91-2fd0-4c13-a00e-6023b989c88f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="66338bd1-a385-4755-8a7c-f61e95e93f54" ownerguid="83a3fd94-eab8-469c-af5b-d94b664759a4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="66338f06-ea72-40e7-b1f4-276337f98641"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">unay</AUni> -<AUni ws="qvm-x-acl">unay</AUni> -<AUni ws="qvm-x-akh">unay</AUni> -<AUni ws="qvm-x-akl">unay</AUni> -<AUni ws="qvm-x-ame">unay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*unay</AUni> -<AUni ws="qvm-x-acl">*unay</AUni> -<AUni ws="qvm-x-akh">*unay</AUni> -<AUni ws="qvm-x-akl">*unay</AUni> -<AUni ws="qvm-x-ame">*unay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.231" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="288cecc2-bb7a-471f-8d54-cb34d45d43b0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*unay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e9ba62e4-8e91-40e2-83ae-0d7626648273" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e89d4046-1648-443b-a647-45c427f3ab88" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *unay 
\entryTyp root 
\gENG once 
\gSPN antes 
\e *unay 
\c N0 
\mp NeverForeshortened 
\ach unay 
\akh unay 
\acl unay 
\akl unay 
\ame unay 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="6633ba8a-2fb9-4684-9aff-dfbd095ffefb" ownerguid="f05fd2fe-08e4-46ad-bba3-e09cb79b2f62"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ring</AUni> -<AUni ws="es">aro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3f881eba-2add-4a23-9753-3e58f869cbbc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6634bec7-8253-4ea3-ad5a-1d24a33442cb" ownerguid="83500e3b-e92b-4626-8312-59ffd4a39f6e"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="66355285-3a93-47fc-a515-9eaa6b332543" ownerguid="47672c2a-f85d-431a-81a1-9c78b967fcd2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="bbc57cc5-0db6-432e-9c02-4ba42fd1eeed" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="663a98df-b6a2-4dfb-b651-0e3c99e86bde"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsapu</AUni> -<AUni ws="qvm-x-acl">tsapu; tsapo</AUni> -<AUni ws="qvm-x-akh">tsapu</AUni> -<AUni ws="qvm-x-akl">tsapu; tsapo</AUni> -<AUni ws="qvm-x-ame">tsapu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chapu.v2</AUni> -<AUni ws="qvm-x-acl">*chapu.v2</AUni> -<AUni ws="qvm-x-akh">*chapu.v2</AUni> -<AUni ws="qvm-x-akl">*chapu.v2</AUni> -<AUni ws="qvm-x-ame">*chapu.v2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.284" /> -<DateModified val="2022-10-10 21:19:47.694" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="74a35c85-a259-47e6-a64f-5ac16392aa5e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chapu.v2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e9ed45b8-fe32-4e0f-9e2a-0ba977e6c26d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fa0c4030-a408-4b46-b248-e2fa3ad2baf4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chapu.v2 
\entryTyp root 
\gENG surprise 
\gSPN 
\e *chapu.v2 
\c V2 
\ach tsapu 
\akh tsapu 
\acl tsapu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tsapo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsapu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsapo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsapu 
\i Cananmi itsanga tsapuycushcä punuycagta. 
\i Elagpita aywar tsapuycushcä. 
\i Tsapuycamashga.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="663abbb4-7a3c-41bd-b6af-b541d6f59231" ownerguid="188fa1eb-3f9c-4d8b-ab1c-ba814d8889c8"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="663c466e-ddec-4dc4-85ed-28208fa86481" ownerguid="960643fc-79e9-4e6f-a765-2fefd3d19892"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="663e1995-17c4-41e8-9c25-9fff81b0c786" ownerguid="bf57579e-47db-43a0-b876-b81c8ea5554c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="663e6f89-77f0-473c-997e-e54f26d8491b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tinya</AUni> -<AUni ws="qvm-x-acl">tinya</AUni> -<AUni ws="qvm-x-akh">tinya</AUni> -<AUni ws="qvm-x-akl">tinya</AUni> -<AUni ws="qvm-x-ame">tinya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tinya</AUni> -<AUni ws="qvm-x-acl">*tinya</AUni> -<AUni ws="qvm-x-akh">*tinya</AUni> -<AUni ws="qvm-x-akl">*tinya</AUni> -<AUni ws="qvm-x-ame">*tinya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.916" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0fb740e6-e6fa-4093-940e-0a7ba630d68a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tinya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="345be7b1-cfd5-456f-b480-6f799f49f8b1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="144768ff-920c-4831-8b2d-faa5427ceb7e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tinya 
\entryTyp root 
\gENG small.drum 
\gSPN tambor 
\e *tinya 
\c N0 
\ach tinya 
\akh tinya 
\acl tinya 
\akl tinya 
\ame tinya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="663f1f88-a3c0-4235-8779-14ec92501375" ownerguid="04582a28-b94a-4e7f-8cc4-5cdefa8a39f0"> -<ExampleWords> -<AUni ws="en">male, masculine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something to do with men?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="663f4fb6-ccc4-45de-9e04-69f8ae81e8fa" ownerguid="4b0dc35a-01b7-4df6-a7ab-d26afc3abebe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">food</AUni> -<AUni ws="es">comida</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a213c582-525b-4e13-a47a-50ea084da9bc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6640019e-cc68-4e05-a661-b58e1c275998" ownerguid="64e41545-3a0a-4524-a8d4-8e5e0f0e2391"> -<ExampleWords> -<AUni ws="en">go out, go down, dim</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a light stopping?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6643ecb4-af55-463c-b5dc-9985ae8c00a3" ownerguid="9351d5b6-5a87-422a-9e82-ca6a0bacd3e9"> -<ExampleWords> -<AUni ws="en">placid, even-tempered, laid-back</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe a person who is usually calm?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="66441847-d173-41af-ab63-a0ae51dfb9d3" ownerguid="9d865347-6656-4ab7-8613-bf2e8bc53aa7"> -<ExampleWords> -<AUni ws="en">casualty, victim, the injured, the wounded</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to someone who has been injured?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="66460329-9ab7-401e-aeb7-b4246feb01c5" ownerguid="3e9ed499-7b7e-494f-978d-7d8d9c9397cb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="f6124550-3261-47d8-b284-b83ac48c4e5e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="66463c29-6459-4ee5-8d65-c0fd7549a1e1" ownerguid="8841af5e-74e6-4c5d-a313-ba9aa7fdb78b"> -<ExampleWords> -<AUni ws="en">stand on one leg, straddle, stand on tiptoes</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) How do people stand?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6646f5bd-fbce-44b4-8f80-3dd989e53d4c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sauma</AUni> -<AUni ws="qvm-x-acl">sauma</AUni> -<AUni ws="qvm-x-akh">sawma</AUni> -<AUni ws="qvm-x-akl">sawma</AUni> -<AUni ws="qvm-x-ame">sawma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sahumar</AUni> -<AUni ws="qvm-x-acl">+sahumar</AUni> -<AUni ws="qvm-x-akh">+sahumar</AUni> -<AUni ws="qvm-x-akl">+sahumar</AUni> -<AUni ws="qvm-x-ame">+sahumar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.419" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3043a3d2-07c1-4e72-851d-b70963bf4d31" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sahumar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="33fe7a8a-427d-46f8-916d-8c2ab202280b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cbbfe032-c0f0-47b5-8d57-188489c27050" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sahumar 
\entryTyp root 
\gENG to.smoke 
\gSPN sahumar 
\e +sahumar 
\c V2 
\mp +assimilated 
\ach sauma 
\akh sawma 
\acl sauma 
\akl sawma 
\ame sawma 
\mp KQWchange</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="66489338-8403-4bd2-8178-c8cee40d3eb5" ownerguid="d4f1f463-b30e-4e01-955c-65d7b2f671c5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="664c473e-bf79-48c1-aac9-ca02aaa245f1" ownerguid="e9620da0-4016-47ee-a991-fd7d13b8469e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stake</AUni> -<AUni ws="es">estaca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7c1aeb94-0c5b-4a81-9578-d0be1e287548" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="66501b10-dc20-4f0d-abf5-4c9c403bfef6" ownerguid="980de7db-380d-4612-a4bc-761a35ec3953"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wanu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wanu; wanu; wano</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wanu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wanu; wanu; wano</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wanu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="09b55264-ed18-4159-a886-daf61ac69c60" t="r" /> -</Morph> -<Msa> -<objsur guid="0b267061-94ac-4a60-9637-3b9a66fc4e04" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="6650d92c-a2ca-4d57-84a9-eba8a69635a7" ownerguid="37ebf319-eb0c-4818-8a45-c9a66628b338"> -<Form> -<AUni ws="qvm-x-ach">acapara</AUni> -<AUni ws="qvm-x-acl">acapara</AUni> -<AUni ws="qvm-x-akh">acapara</AUni> -<AUni ws="qvm-x-akl">acapara</AUni> -<AUni ws="qvm-x-ame">acapara</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="66568c65-f5ba-4be1-a63f-3ee88b301aff" ownerguid="37cad029-9bef-45b4-9f98-d9d34c78e295"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="665713cd-47da-4b35-b524-c6c14c17f467"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lapsha; llapsha</AUni> -<AUni ws="qvm-x-acl">lapsha; llapsha</AUni> -<AUni ws="qvm-x-akh">lapsha; llapsha</AUni> -<AUni ws="qvm-x-akl">lapsha; llapsha</AUni> -<AUni ws="qvm-x-ame">lapsha; llapsha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llapsha.n</AUni> -<AUni ws="qvm-x-acl">*llapsha.n</AUni> -<AUni ws="qvm-x-akh">*llapsha.n</AUni> -<AUni ws="qvm-x-akl">*llapsha.n</AUni> -<AUni ws="qvm-x-ame">*llapsha.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.144" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d23bcebe-d424-4838-b7a5-fe5e3cbcc765" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llapsha.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9617cbb7-c9db-4a42-a04b-1c1601282acd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0d5d343d-11c7-450f-a777-5cf818812ac4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llapsha.n 
\entryTyp root 
\gENG thin 
\gSPN delgado 
\e *llapsha.n 
\c N0 
\cm *** ch *** 
\ach lapsha 
\ach llapsha 
\cm *** kh *** 
\akh lapsha 
\akh llapsha 
\cm *** cl *** 
\acl lapsha 
\acl llapsha 
\cm *** kl *** 
\akl lapsha 
\akl llapsha 
\cm *** me *** 
\ame lapsha 
\ame llapsha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="665a0faa-f86f-42a9-9573-15a753e44c8c" ownerguid="9b8c6188-540c-4015-8c83-7d19c9f61da3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">woman</AUni> -<AUni ws="es">mujer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e9ece695-28de-48a2-aff1-266bce7d2a60" t="r" /> -</MorphoSyntaxAnalysis> -<Custom name="Target Equivalent"> -<AStr ws="en"> -<Run ws="en">silfw://localhost/link?database%3dQuechua+SC%26tool%3dlexiconEdit%26guid%3dae21e5d2-b4eb-47ce-af7e-beb6a161f4f5%26tag%3d</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="665b735d-d9ad-4c06-a442-bec9d5ba1b46" ownerguid="6626ad39-4ceb-454c-b21f-7058b164c30a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="665d2cf7-c0c5-4014-a130-c9605400d72a" ownerguid="6d3b58ca-5265-4041-830b-c023067354f0"> -<Category> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</Category> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="76591ed4-9ef4-4d15-b0f0-7cbb0295dc86" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="fcc9e3d9-77e9-4ea6-bd8e-66141f5327c2" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="665e43ee-c98d-4d93-b8fc-eeec80deb13e" ownerguid="c753fc8b-22ae-4e71-807f-56fb3ebd3cdd"> -<ExampleWords> -<AUni ws="en">stimulate, kiss, fondle, arousal, caress, climax, erection, eroticism, libido, mount, snog, pet, hug, embrace, cuddle, hold hands</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to affection and sexual stimulation?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="666093c8-f651-4c68-b660-05b016836ef8" ownerguid="520f506a-1eba-40b1-9a77-1dcce67cbf65"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6660cdf8-444a-44d4-b6d5-839483f8517b" ownerguid="c753fc8b-22ae-4e71-807f-56fb3ebd3cdd"> -<ExampleWords> -<AUni ws="en">amorous, aroused, in the mood, turned on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe someone who wants to have sex?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="666595de-2430-4f1b-80a5-081d74e62c7b" ownerguid="9704680f-9d20-4e28-a598-ca4f17b49543"> -<Form> -<AUni ws="qvm-x-ach">shogpi</AUni> -<AUni ws="qvm-x-acl">shogpi; shogpe</AUni> -<AUni ws="qvm-x-akh">shoqpi</AUni> -<AUni ws="qvm-x-akl">shoqpi; shoqpe</AUni> -<AUni ws="qvm-x-ame">shuqpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="666ae48d-2d66-4013-9166-090466f3f686" ownerguid="284433df-7b37-4e63-a614-78520c483213"> -<ExampleWords> -<AUni ws="en">gallop, trot, hop, crawl, fly, soar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) How do mammals move?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="666d0b4a-257f-4b33-9b4f-216da109daa9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nu:meru</AUni> -<AUni ws="qvm-x-acl">nu:meru; nu:meru; nu:mero</AUni> -<AUni ws="qvm-x-akh">nu:meru</AUni> -<AUni ws="qvm-x-akl">nu:meru; nu:meru; nu:mero</AUni> -<AUni ws="qvm-x-ame">nu:meru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+número</AUni> -<AUni ws="qvm-x-acl">+número</AUni> -<AUni ws="qvm-x-akh">+número</AUni> -<AUni ws="qvm-x-akl">+número</AUni> -<AUni ws="qvm-x-ame">+número</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.578" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fe90f1cb-8ebc-42d8-8aa9-d77b251d08b7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+número</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="baf5b826-eec5-43a7-bcb1-9378715e6046" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="178624d8-5e2b-4f83-9bff-8b1d43e406ab" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +número 
\entryTyp root 
\gENG number 
\gSPN número 
\e +número 
\c N0 
\ach nu:meru 
\akh nu:meru 
\acl nu:meru / _# 
\acl nu:meru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl nu:mero +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl nu:meru / _# 
\akl nu:meru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl nu:mero +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame nu:meru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="66753b28-00e8-4f85-80a5-358860706dfb" ownerguid="30ea3057-753d-4c4c-9b1f-ed30e569feea"> -<ExampleWords> -<AUni ws="en">trial, case, lawsuit, suit, action, litigation, proceedings, dispute, hearing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What is a court case called?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6677b0ef-748e-41d4-b007-f20df73d03f5" ownerguid="2a62f8e4-7da3-4f37-bf44-e24033c99c00"> -<ExampleWords> -<AUni ws="en">cool off, cool down, settle down, count to ten</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to becoming less angry?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="6677bae4-bc06-46c5-a9c2-e0c2c73a2fc9"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">nacionman</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="66781c88-3c21-475e-867d-2a6908c24fcf" ownerguid="1cc4897f-1365-440a-aa3e-d42ee2fee5d1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">neck</AUni> -<AUni ws="es">cuello</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6a93d0a5-9033-4409-8af2-35184586ac7b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="66789af7-e6eb-4d34-9525-6a1a04212e3d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mupali</AUni> -<AUni ws="qvm-x-acl">mupali; mupale</AUni> -<AUni ws="qvm-x-akh">mupali</AUni> -<AUni ws="qvm-x-akl">mupali; mupale</AUni> -<AUni ws="qvm-x-ame">mupali</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mupalli.v</AUni> -<AUni ws="qvm-x-acl">*mupalli.v</AUni> -<AUni ws="qvm-x-akh">*mupalli.v</AUni> -<AUni ws="qvm-x-akl">*mupalli.v</AUni> -<AUni ws="qvm-x-ame">*mupalli.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.505" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5fb6a330-00cd-47df-ad89-1c3db5ce75ef" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mupalli.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1fd63fda-c3f5-4273-bd1f-c1a55a186b22" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2d65cbaf-e095-48b2-9581-d0a50d927518" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mupalli.v 
\entryTyp root 
\gENG mold 
\gSPN moldear 
\e *mupalli.v 
\c V1 
\mp +FinalI 
\ach mupali 
\akh mupali 
\acl mupali +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl mupale +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mupali +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mupale +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mupali</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="667da006-bb4b-42ac-aac5-9d5ebc98ec70" ownerguid="12cc3933-0bab-4b41-bc88-aea8f068ea8d"> -<Form> -<AUni ws="qvm-x-ach">shipu</AUni> -<AUni ws="qvm-x-acl">shipu; shipo</AUni> -<AUni ws="qvm-x-akh">shipu</AUni> -<AUni ws="qvm-x-akl">shipu; shipo</AUni> -<AUni ws="qvm-x-ame">shipu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="667f8571-ba30-4e4e-8423-b1a49c584b56" ownerguid="93b8bd61-137a-4ebc-b12f-52fa5d2b3ea4"> -<ExampleWords> -<AUni ws="en">breath of air, puff of wind, gust, blast, flurry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a wind that only lasts a short time?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="667fdd8b-be1a-4024-aa50-1e5e29ae5d4b" ownerguid="a0642103-0e21-49bd-8c77-6d7c883361a0"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="6681f03b-06c4-4509-9253-e4739c9c1614" ownerguid="749ad6fe-5509-4e45-b236-84ea12de102e"> -<Abbreviation> -<AUni ws="en">6.8.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to begging--for a poor person to ask other people to give them money, food, or other things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Beg</AUni> -</Name> -<Questions> -<objsur guid="7f8ff2b3-5c37-4824-b56e-e0495d276ee5" t="o" /> -<objsur guid="72d6c7c4-8b47-445f-bc58-44a9836adc12" t="o" /> -<objsur guid="433745af-c87f-4407-b205-2d3967afdd36" t="o" /> -<objsur guid="d37c8b02-36f7-4ffe-bfbb-fc3f9800d88b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="6684c7e5-af7f-4327-862f-4121f9cc7098" ownerguid="8fbed974-7d25-44c3-80cb-7d02e4069007"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The cup <contained> milk.</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(2) In English 'Containership' can be expressed by a clause using the verb 'contain' with the 'Container' in the subject position and the 'Content' in the object position.</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6687033a-2b22-4bef-8c0d-303c9e73a253" ownerguid="7e2b6218-0837-4b16-a982-c9535cccdb21"> -<ExampleWords> -<AUni ws="en">body, dead body, corpse, cadaver, stiff, carcass, carrion, mummy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a dead body?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="668c55e1-7747-4311-84b5-352a0c014f6d" ownerguid="f9d020d6-b129-4bb8-9509-3b4a6c27482e"> -<ExampleWords> -<AUni ws="en">follow (a sport), be into, take something up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to doing something often because you are interested in it?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="668e695e-18fe-4375-896b-f24519cd2b71"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tincu</AUni> -<AUni ws="qvm-x-acl">tincu; tinco</AUni> -<AUni ws="qvm-x-akh">tinku</AUni> -<AUni ws="qvm-x-akl">tinku; tinko</AUni> -<AUni ws="qvm-x-ame">tinku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tinku.v</AUni> -<AUni ws="qvm-x-acl">*tinku.v</AUni> -<AUni ws="qvm-x-akh">*tinku.v</AUni> -<AUni ws="qvm-x-akl">*tinku.v</AUni> -<AUni ws="qvm-x-ame">*tinku.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.906" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0015a694-420a-461f-aaaf-aae425ffaa53" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tinku.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7092330d-1a9b-4d9f-b1d4-64398fec445c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="775924c4-9a2f-449b-8b5d-07dc1bdefc42" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tinku.v 
\entryTyp root 
\gENG meet 
\gSPN encontrar 
\e *tinku.v 
\c V2 
\ach tincu 
\akh tinku 
\acl tincu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tinco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tinku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tinko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tinku</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="668f6187-498b-4c11-b09a-29942a7b7cfa" ownerguid="e3b78a5f-5d6a-4f82-9032-8865c3bd57fa"> -<Form> -<AUni ws="qvm-x-ach">shalama</AUni> -<AUni ws="qvm-x-acl">shalama</AUni> -<AUni ws="qvm-x-akh">shalama</AUni> -<AUni ws="qvm-x-akl">shalama</AUni> -<AUni ws="qvm-x-ame">shalama</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="669363a9-6784-4258-afcb-e8579533eaf6" ownerguid="35858020-0102-4fe3-a239-fa4df7199979"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="6698511c-2a1a-4cfd-a3d4-2ef8b20f2c70" ownerguid="20ff7b21-2af8-4d28-ac7c-78ddafcec7ba"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6699f3bd-70b6-4a7e-82bb-26ddc297471d" ownerguid="345e019f-87d2-415d-ba37-9fb85460f7e1"> -<ExampleWords> -<AUni ws="en">tree, timber</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the trees that are cut down?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="669bb1b1-05d4-400c-8556-0277a7192f1e" ownerguid="55d09bf0-d8ce-463d-a471-0614b737f739"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="669cc12f-ee57-4b39-9698-4691e313ebfe" ownerguid="effc49dd-6322-4302-899c-4cf540f0e2e4"> -<ExampleWords> -<AUni ws="en">cranberry sauce, applesauce, fruit salad</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What foods are made primarily from fruit?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="66a03e62-9e15-482a-8ad6-a309c57b36ed" ownerguid="6804db44-b71b-4452-98b1-b726bc7cf022"> -<ExampleWords> -<AUni ws="en">din, clamor, hubbub, commotion, cacophony, tumult, uproar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to many sounds at the same time?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="66a1c8dc-e287-4b06-a384-370020e162b3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsican</AUni> -<AUni ws="qvm-x-acl">tsican</AUni> -<AUni ws="qvm-x-akh">tsikan</AUni> -<AUni ws="qvm-x-akl">tsikan</AUni> -<AUni ws="qvm-x-ame">tsikan</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.578" /> -<DateModified val="2022-10-16 15:11:5.536" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4adfbe25-78c5-48bb-a25c-a6c05b1417cd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">SIZE1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="19e38a32-084e-488a-9b8c-67b290e25694" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1abfa027-70fd-4f58-957e-d1efa1dd3f23" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx SIZE1 
\entryTyp suffix 
\gENG SIZE1 
\gSPN TAM1 
\e SIZE1 
\c N0/N0 N1/N0 
\o 140 
\mp +FinalC 
\ach tsican 
\akh tsikan 
\acl tsican 
\akl tsikan 
\ame tsikan 
\i tsaysicasag papacuna 
\i ashnutsicasag yorag cuchicuna 
\co mcc SIZE1 / TakeMANY ~_ | doesn't work 
\mcc SIZE1 / *may ~_ 
\mcc SIZE1 / *kay ~_ 
\mcc SIZE1 / *chay ~_</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="66a4f01b-ecb4-477f-b69c-03ee8e4cbfe0" ownerguid="11a8085d-c69a-45e5-b97f-c18157752f07"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">coach</AUni> -<AUni ws="es">coche</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9cd7f456-ee3a-4af0-a813-ffd2830b3c6e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="66a933f6-44c1-48a2-aaa3-3eb97c31b9b8" ownerguid="2fc69f71-e9f1-45f9-b88e-bdaf97457fc3"> -<ExampleWords> -<AUni ws="en">happen so fast, in the twinkling of an eye, came and went so quickly, it was all over in a minute</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that happens quickly?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="66abfbe5-e011-48de-8773-905f1b1ce215" ownerguid="34e92ff1-32aa-49c7-b4da-d161bedc5adc"> -<Abbreviation> -<AUni ws="en">6.6.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.468" /> -<DateModified val="2022-9-23 16:55:8.468" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to working with clay.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>7G Miscellaneous Constructions</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Working with clay</AUni> -</Name> -<OcmCodes> -<Uni>323 Ceramic Technology; Ceramic Industries</Uni> -</OcmCodes> -<Questions> -<objsur guid="3efb2de6-b026-4515-b0c9-d548f8b15606" t="o" /> -<objsur guid="0bf65d60-6fce-4607-9f26-9b9ef843daad" t="o" /> -<objsur guid="63f56b08-4fd4-4ec5-93bf-bdf73c7134b0" t="o" /> -<objsur guid="36054e37-a1d7-458f-8d20-cbeb50854eee" t="o" /> -<objsur guid="e90eb1d3-6647-4bd0-b55f-4b5a989058f8" t="o" /> -<objsur guid="3158b624-44e8-48d0-b520-75c49ffbf00c" t="o" /> -<objsur guid="ca6ef283-bc77-4669-8642-5fefc29d739f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="66adfcca-2a64-4d31-a2f8-4410cdc4fe38" ownerguid="9626fb26-242a-4a7d-81db-f88ba1fbeb7c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">peasant</AUni> -<AUni ws="es">comunero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="976c5be4-942b-4a82-bcd3-edc0ba62d768" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="66af7274-92aa-4ec4-8e4f-ed12adebe603" ownerguid="21c45bf7-c32e-4c3b-84cf-2d33bc14dbd1"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ISA 10.27 Yüguta matankaparkoqnoq nakatsishuptikipis paykunapa makinpita jorqarkamurmi bendicionnëta churamushaq ali kawapäkunaykipaq.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="66b6d278-2e0e-452e-aa32-1bb9281e20f5" ownerguid="321d0a74-705f-40bf-8d24-809f65bee895"> -<ExampleWords> -<AUni ws="en">no longer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) state ends: state existed in the past, but no longer exists. Also a possible meaning of "Perfects" or "Perfectives" in combination with stative words.</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="66bc7774-6dc3-4dfd-87e1-dfee5fd2d8c6" ownerguid="913182a9-5615-4f96-a50e-7aadd51f18e3"> -<Form> -<AUni ws="qvm-x-ach">shogti</AUni> -<AUni ws="qvm-x-acl">shogti; shogte</AUni> -<AUni ws="qvm-x-akh">shoqti</AUni> -<AUni ws="qvm-x-akl">shoqti; shoqte</AUni> -<AUni ws="qvm-x-ame">shuqti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="66bffd6c-6728-4b55-9135-1a9c7576908d" ownerguid="a722be4c-b8d6-4e26-8f1b-82eef46249e1"> -<Form> -<AUni ws="qvm-x-ach">sagra; sagrä</AUni> -<AUni ws="qvm-x-acl">sagra; sagrä</AUni> -<AUni ws="qvm-x-akh">saqra; saqrä</AUni> -<AUni ws="qvm-x-akl">saqra; saqrä</AUni> -<AUni ws="qvm-x-ame">saqra; saqrä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="66c0dd72-d274-4e15-aaf5-97af65054724" ownerguid="9e6d7c69-788c-4d40-8584-32f185e91932"> -<ExampleWords> -<AUni ws="en">hunt, trap, fish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to hunting wild animals?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="66c27239-27e2-4287-9a37-a541d4994994" ownerguid="7c022751-a9f9-412d-8b27-8cd03b797e2d"> -<ExampleWords> -<AUni ws="en">just, almost didn't, nearly didn't, only just, narrowly, barely</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that although something is true, it almost is not true?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="66c32475-099f-4aef-acf1-f71f02820bd1" ownerguid="8cb6d833-7472-498e-bee6-eade3b53547b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="66c350c8-0089-4f24-83ed-06ac4e1d8691" ownerguid="0a59434d-2634-4514-ab44-82236e2c0e2b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="66c89a04-3956-4449-bb37-76476ce39774" ownerguid="72274e9d-5d3c-4ae7-93ab-db3617cdda1e"> -<ExampleWords> -<AUni ws="en">pleasure, comfort</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to a good feeling?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="66c95d66-9cb0-4a67-99aa-4b59c7e69457" ownerguid="462f5606-5bd8-4543-aa35-26b0cffd7163"> -<ExampleWords> -<AUni ws="en">potato, sweet potato, carrot, onion, beet, cassava, yam, ginger</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What types of roots are eaten?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="66caddd9-fc84-4e9f-8952-9476d9ac85c0" ownerguid="dd31246e-9402-48f1-ae98-07d340f56f8f"> -<Form> -<AUni ws="qvm-x-ach">pära</AUni> -<AUni ws="qvm-x-acl">pära</AUni> -<AUni ws="qvm-x-akh">pära</AUni> -<AUni ws="qvm-x-akl">pära</AUni> -<AUni ws="qvm-x-ame">pära</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="66cb2966-fcc2-4d6c-9561-27ba3908d232" ownerguid="01a27073-ca68-4d05-865a-c2f34463ddf0"> -<Form> -<AUni ws="qvm-x-ach">ñëga</AUni> -<AUni ws="qvm-x-acl">ñëga</AUni> -<AUni ws="qvm-x-akh">ñëga</AUni> -<AUni ws="qvm-x-akl">ñëga</AUni> -<AUni ws="qvm-x-ame">ñëga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="66cbd546-2f10-413e-8d0c-4952c1cfaa1e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">hiso:pu</AUni> -<AUni ws="qvm-x-acl">hiso:pu; hiso:pu; hiso:po</AUni> -<AUni ws="qvm-x-akh">hiso:pu</AUni> -<AUni ws="qvm-x-akl">hiso:pu; hiso:pu; hiso:po</AUni> -<AUni ws="qvm-x-ame">hiso:pu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hisopo.1</AUni> -<AUni ws="qvm-x-acl">+hisopo.1</AUni> -<AUni ws="qvm-x-akh">+hisopo.1</AUni> -<AUni ws="qvm-x-akl">+hisopo.1</AUni> -<AUni ws="qvm-x-ame">+hisopo.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.731" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e5e00df6-7244-414e-b8d2-ea6d015610b9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hisopo.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0da2d7a7-60bf-452f-8181-043bd3836d25" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3d7887f2-a6a2-444d-b612-987de491f5bb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hisopo.1 
\entryTyp root 
\gENG hyssop 
\gSPN hisopo 
\e +hisopo.1 
\c N0 
\ach hiso:pu 
\akh hiso:pu 
\acl hiso:pu / _# 
\acl hiso:pu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl hiso:po +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl hiso:pu / _# 
\akl hiso:pu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl hiso:po +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hiso:pu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="66cbf861-88e7-47b7-8c5c-ff02f79d9337"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">puyu</AUni> -<AUni ws="qvm-x-acl">puyu; puyu; puyo</AUni> -<AUni ws="qvm-x-akh">puyu</AUni> -<AUni ws="qvm-x-akl">puyu; puyu; puyo</AUni> -<AUni ws="qvm-x-ame">puyu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puyu</AUni> -<AUni ws="qvm-x-acl">*puyu</AUni> -<AUni ws="qvm-x-akh">*puyu</AUni> -<AUni ws="qvm-x-akl">*puyu</AUni> -<AUni ws="qvm-x-ame">*puyu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.60" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2d205c25-b617-41a8-b4b8-ac5f1f9f99d2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puyu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b322d8c3-bb3f-47de-9863-cca168922f66" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="173ff215-d2a7-4360-90a2-fb3b5f9db7ca" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puyu 
\entryTyp root 
\gENG moth 
\gSPN polilla 
\e *puyu 
\c N0 V1 
\ach puyu 
\akh puyu 
\acl puyu / _# 
\acl puyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl puyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl puyu / _# 
\akl puyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl puyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame puyu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoDerivAffMsa" guid="66cd71e5-1aab-43dd-b0eb-804550a34460" ownerguid="05a85ca4-fceb-464f-9580-95990ef9c793"> -<FromPartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</FromPartOfSpeech> -<ToPartOfSpeech> -<objsur guid="85ffb381-0567-4202-8640-53cbaec77e45" t="r" /> -</ToPartOfSpeech> -</rt> -<rt class="LexSense" guid="66cd9ebf-eb63-40c9-9a3d-95b9404c579c" ownerguid="3a94ef8b-8532-447c-a7ae-87ef105cea49"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">plow</AUni> -<AUni ws="es">arado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1697d580-784f-4864-a2b5-5567e7f42c0c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="66cf8d85-3bca-47da-a3aa-cc108a4f3e51" ownerguid="7bf05f4e-909f-40ca-b742-9be21eba9fbb"> -<ExampleWords> -<AUni ws="en">come to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) venitive: the agent moves toward the deictic center in order to do something, literally 'be coming to do something'. This may be related to the verb 'to come' and may have future uses as well.</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="66d1cfd9-00df-4143-9a6b-47105def5e20" ownerguid="9a456463-3c71-4f9a-8117-dc2fcb087bd3"> -<ExampleWords> -<AUni ws="en">fire pan, brazier</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What things are used to carry fire?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="66d4c121-a9f0-496a-9d65-26f5f3dfc1ea" ownerguid="c5c12827-1f84-4f27-931b-268ef4c1b2e3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">1FUT</AUni> -<AUni ws="es">1FUT</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dc53e817-8c9f-407c-9e09-cc7f8ae7e19f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="66d7140f-e1ff-4e38-b18a-f27df1a96745" ownerguid="2b0fbd58-ad45-48b6-b06f-72760f2d92ee"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="66d74c8b-5a61-4c24-8fdc-4f4f40922dad" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<ExampleWords> -<AUni ws="en">mechanic, potter, tailor, weaver, blacksmith</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What are the occupations in manufacturing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="66d8a888-d5f1-4bc5-b7a5-52e0214e7901" ownerguid="7f7fc197-5064-43c0-af51-2919fb7355c9"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">What is the <relation> between the two?; How are they <related>?; The <relationship> is complex.; What does this <have to do with> that?; The two <are related> somehow, but I don't know in what way.; The distance an arrow flies <is related to> the angle at which you shoot.; My science class and the smell of sulfur will forever <be associated> in my mind.; I don't see the <connection>.; There must be some sort of <correlation> between them.; I'm sure there is <a link between> the two, but I haven't found it yet.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">be connected (with), be related (to), be linked (with), be associated (with), there is a link between, there is a connection between, be bound up with, go hand in hand, relate, relation, be a relationship between, relationship, have something to do with, be something to do with, be intertwined, tied, pertain, be relative to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that two things or situations are connected somehow?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="66d8b546-92f5-4e94-b992-08be81c3d30c" ownerguid="d60faf11-cc6e-48db-8a13-82f86d78ab00"> -<Abbreviation> -<AUni ws="en">7.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.549" /> -<DateModified val="2022-9-23 16:55:8.549" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to making a physical impact on something, including the words for the action itself and the result of the action.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>19 Physical Impact</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Physical impact</AUni> -</Name> -<Questions> -<objsur guid="763ee21c-9fe4-427f-983d-c251b569dfec" t="o" /> -<objsur guid="017a62c2-d2c6-4056-92a7-2545a2917218" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="d25f7907-091e-4cf7-bd8c-bdb97278b616" t="o" /> -<objsur guid="5718fcc8-1eba-4b8d-9b6b-0c8349f53f80" t="o" /> -<objsur guid="be4a63e7-f4ba-4de2-be69-d26219d99cb6" t="o" /> -<objsur guid="0a85ee64-e466-4295-8e2c-5b06c8e3054f" t="o" /> -<objsur guid="709d43dd-ce94-4df1-91b1-edb0b12fdaea" t="o" /> -<objsur guid="a3ba23d2-618e-4618-af18-9befae2f888b" t="o" /> -<objsur guid="06be473e-c2f3-45fe-8522-3a0c033b5067" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="66d91dc1-b4a4-4d05-a65b-d747dad3b1f7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">de:du</AUni> -<AUni ws="qvm-x-acl">de:du; de:du; de:do</AUni> -<AUni ws="qvm-x-akh">de:du</AUni> -<AUni ws="qvm-x-akl">de:du; de:du; de:do</AUni> -<AUni ws="qvm-x-ame">de:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+dedo</AUni> -<AUni ws="qvm-x-acl">+dedo</AUni> -<AUni ws="qvm-x-akh">+dedo</AUni> -<AUni ws="qvm-x-akl">+dedo</AUni> -<AUni ws="qvm-x-ame">+dedo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.374" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ff8615bf-b685-4f9d-9137-c19cf4de6e81" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+dedo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="70c293f1-7800-408d-9749-070deebd36a1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="db35d426-efad-4e51-929f-7abd9c72ace1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +dedo 
\entryTyp root 
\gENG finger 
\gSPN dedo 
\e +dedo 
\c N0 
\ach de:du 
\akh de:du 
\acl de:du / _# 
\acl de:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl de:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl de:du / _# 
\akl de:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl de:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame de:du</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="66db176b-2544-421a-9386-a180b14a29dd" ownerguid="b400cf18-032f-424e-aa44-fb7c99ad52f9"> -<Form> -<AUni ws="qvm-x-ach">quilu</AUni> -<AUni ws="qvm-x-acl">quilu; quilo</AUni> -<AUni ws="qvm-x-akh">kilu</AUni> -<AUni ws="qvm-x-akl">kilu; kilo</AUni> -<AUni ws="qvm-x-ame">kilu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="66db6d18-e83f-4b5c-bc95-aee41959173a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bu:rru</AUni> -<AUni ws="qvm-x-acl">bu:rru; bu:rru; bu:rro</AUni> -<AUni ws="qvm-x-akh">bu:rru</AUni> -<AUni ws="qvm-x-akl">bu:rru; bu:rru; bu:rro</AUni> -<AUni ws="qvm-x-ame">bu:rru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+burro</AUni> -<AUni ws="qvm-x-acl">+burro</AUni> -<AUni ws="qvm-x-akh">+burro</AUni> -<AUni ws="qvm-x-akl">+burro</AUni> -<AUni ws="qvm-x-ame">+burro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.100" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="82838c84-99df-4d6a-b94b-b2fc7834ec30" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+burro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9d1e622c-fec9-4647-8e23-ee5de3414ef7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6113c9a2-add6-4414-8a7e-7e5e7d2e8ad9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +burro 
\entryTyp root 
\gENG burro 
\gSPN burro 
\e +burro 
\c N0 
\ach bu:rru 
\akh bu:rru 
\acl bu:rru / _# 
\acl bu:rru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl bu:rro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl bu:rru / _# 
\akl bu:rru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl bu:rro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame bu:rru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="66de3ce4-1947-403a-acdc-8cdc3a68473a" ownerguid="a3ba10f3-66e3-4ad5-8057-453b8941e497"> -<ExampleWords> -<AUni ws="en">warring</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe countries that are at war?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="66de936b-3dc7-44b3-bed3-1e815f6e33a1" ownerguid="13feb252-8ae3-4111-aa7c-aba67b0de3ed"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="66dedb31-dd2a-4e94-825e-331590ac59a9" ownerguid="b2fd2d29-1389-4114-91a8-15b8d9742794"> -<Abbreviation> -<AUni ws="en">9.6.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.718" /> -<DateModified val="2022-9-23 16:55:8.718" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that something derives from another thing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89C Derivation</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Derivation</AUni> -</Name> -<Questions> -<objsur guid="178a49b2-082c-4028-8998-9b1e8ff20915" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="66e2806d-3e16-4fb2-a158-7f3b4dd5d9af" ownerguid="71757ff0-d698-426d-a791-50c4bde6f735"> -<Abbreviation> -<AUni ws="en">9.5.1.6.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that mark the place where someone was born or the place where they have been living.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Origin (of a person)</AUni> -</Name> -<Questions> -<objsur guid="abaadadb-ea0a-49cc-8ce1-61824f6ee509" t="o" /> -<objsur guid="d7ea67ee-3659-414d-b0d0-df9b0d1f071a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="66e51378-d1b6-4121-b966-21b623b303c3" ownerguid="7958cada-dbf7-44d8-af88-78b5dd6c4f1c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">worsen</AUni> -<AUni ws="es">ser.grave</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5451ccad-e15a-442d-abee-bf45de145c18" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="66e5bc59-7089-4194-b5c1-13f146be1480" ownerguid="b005a4c0-e205-4d9a-b997-6a4067909c5a"> -<Form> -<AUni ws="qvm-x-ach">cardón; cardon</AUni> -<AUni ws="qvm-x-acl">cardón; cardon</AUni> -<AUni ws="qvm-x-akh">cardón; cardon</AUni> -<AUni ws="qvm-x-akl">cardón; cardon</AUni> -<AUni ws="qvm-x-ame">cardón; cardon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="66e92839-b23c-4e1b-9cec-1a9d9b473b9d"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">adverbialized</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="66ea2298-9570-44dd-b4fe-16cbdc8f34d2" ownerguid="e17407bc-5642-45ce-8f14-5d49ea3d89ad"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pestilence</AUni> -<AUni ws="es">peste</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a350a2f2-eb17-48e2-8edb-19833c2c5502" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="66ea9520-f017-4c7e-ad86-88dbd17cdc36"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">logla</AUni> -<AUni ws="qvm-x-acl">logla</AUni> -<AUni ws="qvm-x-akh">loqla</AUni> -<AUni ws="qvm-x-akl">loqla</AUni> -<AUni ws="qvm-x-ame">luqla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lluqlla.v</AUni> -<AUni ws="qvm-x-acl">*lluqlla.v</AUni> -<AUni ws="qvm-x-akh">*lluqlla.v</AUni> -<AUni ws="qvm-x-akl">*lluqlla.v</AUni> -<AUni ws="qvm-x-ame">*lluqlla.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.233" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3427c125-0765-42ea-afc9-ff8e51b7e74e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lluqlla.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="80707bfd-4d0f-400b-8c44-ea91c00c2abe" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="48f7214f-d314-40ac-a2c7-9286483aa76b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lluqlla.v 
\entryTyp root 
\gENG landslide 
\gSPN huayco 
\e *lluqlla.v 
\c V1 
\ach logla 
\akh loqla 
\acl logla 
\akl loqla 
\ame luqla</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="66ebda09-5cd5-4303-a63d-ba513ead74f8" ownerguid="ecc37619-47f9-4658-a598-192b91a84d15"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="WfiAnalysis" guid="66eea5ae-7a9a-4cda-9c78-59a943cec536" ownerguid="6ed896a6-bab7-4fdf-a4fd-a5ee49f380d2"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="246f054e-64f7-4cec-b2e6-47d92c08324c" t="o" /> -<objsur guid="ecad7219-bf1e-4b0d-8c51-5066d4b2d0c0" t="o" /> -<objsur guid="716bf1b1-2cd7-4535-ae18-bb6323cc0050" t="o" /> -<objsur guid="635779b6-c50d-487d-a8f2-be715a4bf722" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="66eed190-3975-403f-be9e-80657ef60c22" ownerguid="e4bee7f1-8900-4833-bbb9-cf0b65c7216e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pee</AUni> -<AUni ws="es">orinar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c3d55279-02aa-41db-9926-1c3445af95b3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="66f0ef9a-0dcd-40ec-873a-65512053caf0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">encargu; encargo</AUni> -<AUni ws="qvm-x-acl">encargu; encargu; encargo</AUni> -<AUni ws="qvm-x-akh">encargu; encargo</AUni> -<AUni ws="qvm-x-akl">encargu; encargu; encargo</AUni> -<AUni ws="qvm-x-ame">encargu; encargo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+encargo</AUni> -<AUni ws="qvm-x-acl">+encargo</AUni> -<AUni ws="qvm-x-akh">+encargo</AUni> -<AUni ws="qvm-x-akl">+encargo</AUni> -<AUni ws="qvm-x-ame">+encargo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.467" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6bababb8-3377-4828-9016-8315c52b4163" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+encargo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a29f2b2f-cc76-4fd4-9b7d-aa4abab71c51" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c0d48291-741a-4542-86ed-0fd1b09e5cdc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +encargo 
\entryTyp root 
\gENG 
\gSPN 
\e +encargo 
\c N0 
\ach encargu / ~_# 
\ach encargo / _# 
\akh encargu / ~_# 
\akh encargo / _# 
\acl encargu / ~_# 
\acl encargu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl encargo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl encargu / ~_# 
\akl encargu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl encargo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame encargu / ~_# 
\ame encargo / _# 
\i PRO 26.6 Mana yäracuypag runata ima encargutapis encargacorga chaquiquita paquicognogmi caycanqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="66f2b89c-b2b2-4bf9-8e25-f8d9e8c8f81d" ownerguid="b13ce5d7-e5f9-42b8-bae0-12fd1fec9b43"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">na</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">na</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">na</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">na</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">na</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38151a50-9c63-4a70-8bbb-e5cfc5339ad5" t="r" /> -</Morph> -<Msa> -<objsur guid="3afae7ea-b6f9-4990-9b80-c355228ee832" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="66f50eed-5da9-4c3d-8c23-652259cc6674" ownerguid="d6666db3-af56-416a-b89f-5752f6ad2422"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="66f5accf-4f03-498e-8144-75c6f66343fb" ownerguid="f56a2511-10cc-4829-940d-49051429bfba"> -<ExampleWords> -<AUni ws="en">liquid (state), juicy, wet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe liquids?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="66f6c9f9-03fd-48b9-9235-cc03f677019b" ownerguid="4acb340d-ab6c-4717-a5f4-d95749e9f2f9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ictsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ictsu; ictso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">iktsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">iktsu; iktso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">iktsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="50c7cedb-e48d-4e40-b667-882924600f9d" t="r" /> -</Morph> -<Msa> -<objsur guid="9e409988-4e1d-45fa-8176-595e955af9d4" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="66f86be1-34ba-43d5-bc93-60945dc2bcbe" ownerguid="b5d71f18-f0df-4aec-b707-94537db5037e"> -<Form> -<AUni ws="qvm-x-ach">ratanya</AUni> -<AUni ws="qvm-x-acl">ratanya</AUni> -<AUni ws="qvm-x-akh">ratanya</AUni> -<AUni ws="qvm-x-akl">ratanya</AUni> -<AUni ws="qvm-x-ame">ratanya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="66faff10-589a-424c-982f-461bebe63fd6" ownerguid="789add20-33d4-440c-9d8f-92f41e492adf"> -<Form> -<AUni ws="qvm-x-ach">chicnu</AUni> -<AUni ws="qvm-x-acl">chicnu; chicnu; chicno</AUni> -<AUni ws="qvm-x-akh">chiknu</AUni> -<AUni ws="qvm-x-akl">chiknu; chiknu; chikno</AUni> -<AUni ws="qvm-x-ame">chiknu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="66fb9a2a-13d6-4277-92c4-4011d8215780" ownerguid="54519ee6-6c8b-491a-946e-2eab149adefb"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="66fc9a08-3661-4dd5-94b0-1eea41fb4554" ownerguid="8383b4cb-e14a-4d04-a8c3-9c5276384953"> -<Abbreviation> -<AUni ws="en">3.3.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.123" /> -<DateModified val="2022-9-23 16:55:8.123" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to preventing someone from doing something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Prevent</AUni> -</Name> -<Questions> -<objsur guid="a27ae67d-a00c-4094-90a6-aa6b965492f1" t="o" /> -<objsur guid="ab48f95a-f4de-4e5f-a236-dd5568352fdf" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="d7140538-fb99-4af9-8398-8c31a1b79fb5" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="66fda8c8-a5eb-41f6-a67e-754ac23c542f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">washaga</AUni> -<AUni ws="qvm-x-acl">washaga</AUni> -<AUni ws="qvm-x-akh">washaqa</AUni> -<AUni ws="qvm-x-akl">washaqa</AUni> -<AUni ws="qvm-x-ame">washaqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*washaqa</AUni> -<AUni ws="qvm-x-acl">*washaqa</AUni> -<AUni ws="qvm-x-akh">*washaqa</AUni> -<AUni ws="qvm-x-akl">*washaqa</AUni> -<AUni ws="qvm-x-ame">*washaqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.546" /> -<DateModified val="2022-10-15 12:4:12.273" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3fc69c06-18da-454d-ae78-99ca5a08db72" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*washaqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="24ec0727-7912-42e6-9ba1-a70ab6ee72e4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6972ac50-bbd2-48c7-8a04-1fb6c4439d2d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *washaqa 
\entryTyp root 
\gENG 
\gSPN 
\e *washaqa 
\c N0 
\ach washaga 
\akh washaqa 
\acl washaga 
\akl washaqa 
\ame washaqa 
\i AMO 5.27 Tsaynog cashgayquipitami gamcunata castigar Damascupita mas washagan tsaqui jircaman gargutsishayquipag.>></Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="670440fa-caac-4523-9c2b-6ef4a0d32f29" ownerguid="cf337287-c9fa-43d2-93c4-284f45e262c0"> -<ExampleWords> -<AUni ws="en">epilepsy, epileptic, epileptic seizure, have a seizure, fit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to epilepsy?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6707fef7-4158-4126-9090-a8e55fc36eb3" ownerguid="44a31c2a-c0ef-4cb6-b7c3-fc202ecdff8b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="ffa1b32f-d047-40e7-a21f-b4ecf4ddecdc" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">EXCL4</AUni> -<AUni ws="es">ADM4</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f9cb2a30-bcf2-45b4-b8a6-45834c36e310" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="670857e8-048a-4ab7-92a8-ebc28a5f914b" ownerguid="5c20ad67-87b6-4d9f-8fd7-5fd9f1ef7f77"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="34cc3a83-e5b7-4a9b-8876-c04cba4ee287" t="o" /> -<objsur guid="a4edea9a-62e0-46b5-8889-a266d5abf43f" t="o" /> -<objsur guid="c8a36a65-c6b6-4062-9c37-1e18d7da75d6" t="o" /> -<objsur guid="d4b7f226-339f-4dab-867e-4706500b36b2" t="o" /> -<objsur guid="7f5566ec-ca2f-4811-ac81-9c9f89e6464b" t="o" /> -</MorphBundles> -</rt> -<rt class="CmSemanticDomain" guid="67087306-0211-4c28-b17e-0b6827723f07" ownerguid="aad7c9b0-aff3-4684-86d5-657a20e39288"> -<Abbreviation> -<AUni ws="en">4.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a person in authority.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Person in authority</AUni> -</Name> -<OcmCodes> -<Uni>622 Community Heads; Headmen; 624 Local Officials</Uni> -</OcmCodes> -<Questions> -<objsur guid="74964a6a-8a3a-4150-9383-c7cf53e8217e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="6709cc78-cb0b-493e-b3e6-8590a2f20c95" ownerguid="935da513-126e-4cab-8e07-625458821181"> -<Abbreviation> -<AUni ws="en">4.2.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.206" /> -<DateModified val="2022-9-23 16:55:8.206" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to encountering someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Encounter</AUni> -</Name> -<Questions> -<objsur guid="e04b00b6-2125-4e2f-8bf7-703abbcfba85" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="670d8c65-af64-44f3-8611-ae161b97eacd" ownerguid="67e57493-d286-4271-b877-f63f962dddf1"> -<ExampleWords> -<AUni ws="en">expand</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to making an area big?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="670ed7a4-be6f-46c6-b6d9-dc6b0fa5fead" ownerguid="fa9a6fa0-fc86-4e9d-a04b-b7aa62cde6b2"> -<Form> -<AUni ws="qvm-x-ach">achica</AUni> -<AUni ws="qvm-x-acl">achica</AUni> -<AUni ws="qvm-x-akh">achika</AUni> -<AUni ws="qvm-x-akl">achika</AUni> -<AUni ws="qvm-x-ame">achika</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="670f875c-c167-4cbc-9613-ebe07231c5f6" ownerguid="36e8f1df-1798-4ae6-904d-600ca6eb4145"> -<ExampleWords> -<AUni ws="en">get away with, make off with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to escaping with something you have stolen?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6711efaf-1399-4feb-82b5-4f4913c092df" ownerguid="d0f847c9-44de-43a8-bdb6-cc46bb666a4a"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="6712385a-6740-4f28-8bbe-8615ea17116b" ownerguid="00269021-e1c4-474d-9dba-341d296bdac7"> -<Abbreviation> -<AUni ws="en">8.4.5.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.640" /> -<DateModified val="2022-9-23 16:55:8.640" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to something that happens regularly.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Regular</AUni> -</Name> -<OcmCodes> -<Uni>512 Daily Routine</Uni> -</OcmCodes> -<Questions> -<objsur guid="0f1053b2-bdeb-46ae-bf24-930edb8f79df" t="o" /> -<objsur guid="dd117cf9-622d-4a6d-b1d8-cd767df7feda" t="o" /> -<objsur guid="84125ad4-1f80-4a1b-be84-47210c94261f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="67127b03-b43d-4e7f-8caf-3f6c2d8c98df" ownerguid="236e9510-edac-4196-8ad5-51475798a59d"> -<Form> -<AUni ws="qvm-x-ach">ajusya; ajusyä</AUni> -<AUni ws="qvm-x-acl">ajusya; ajusyä</AUni> -<AUni ws="qvm-x-akh">ajusya; ajusyä</AUni> -<AUni ws="qvm-x-akl">ajusya; ajusyä</AUni> -<AUni ws="qvm-x-ame">ahusya; ahusyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="67128ed7-0c4f-4490-bd68-209eba2556a5" ownerguid="ad541a44-bd90-446d-8b52-cf8bcb85f460"> -<Form> -<AUni ws="qvm-x-ach">contra</AUni> -<AUni ws="qvm-x-acl">contra</AUni> -<AUni ws="qvm-x-akh">contra</AUni> -<AUni ws="qvm-x-akl">contra</AUni> -<AUni ws="qvm-x-ame">contra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6714408c-4109-4d07-b87f-fa14cce2e352" ownerguid="0cc62b4a-d5ff-4f45-83d1-e2b46e5d159a"> -<ExampleWords> -<AUni ws="en">sunset, sundown, twilight, dusk, nightfall, it gets dark, gloaming</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to sunset?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="67146bf0-738b-4f63-9595-139c4e9e351c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">incara</AUni> -<AUni ws="qvm-x-acl">incara</AUni> -<AUni ws="qvm-x-akh">inkara</AUni> -<AUni ws="qvm-x-akl">inkara</AUni> -<AUni ws="qvm-x-ame">inkara</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+encarar</AUni> -<AUni ws="qvm-x-acl">+encarar</AUni> -<AUni ws="qvm-x-akh">+encarar</AUni> -<AUni ws="qvm-x-akl">+encarar</AUni> -<AUni ws="qvm-x-ame">+encarar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.457" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b37183b5-5d23-4e27-8d10-ca1819df944e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+encarar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="34d318ed-04ba-4a2d-aca5-3ce9578bd169" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9e1a3ea2-76e6-4532-87c2-9f949c210ba9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +encarar 
\entryTyp root 
\gENG 
\gSPN encaramar 
\e +encarar 
\c V1 
\mp +assimilated 
\ach incara 
\akh inkara 
\acl incara 
\akl inkara 
\ame inkara 
\mp KQWchange</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6714d5bd-4a94-495b-b937-287b0c7b771a" ownerguid="cb783ad9-4650-416e-bf63-88c4ca43fe6a"> -<ExampleWords> -<AUni ws="en">have a good reputation, have a reputation for, be of good repute, be well thought of, have a good name</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to having a good reputation?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="67164bbc-3fc1-4621-9888-2345a0199139" ownerguid="2d92e248-1512-4e89-b886-425814c6dd32"> -<ExampleWords> -<AUni ws="en">chess board, square, white square, black square, chess piece, king, queen, rook, knight/horse, bishop, pawn</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What equipment is used to play the game?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="671a1bca-0da2-4389-80a4-c79f4e1aa866" ownerguid="96dd6359-9eec-44ef-94bd-9d0273d159b6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="671ad197-76f9-412d-a8da-115ebd6fb446" ownerguid="a58ea2af-a2aa-47ee-b94b-3716e9bb76d0"> -<Form> -<AUni ws="qvm-x-ach">ashti</AUni> -<AUni ws="qvm-x-acl">ashti; ashte</AUni> -<AUni ws="qvm-x-akh">ashti</AUni> -<AUni ws="qvm-x-akl">ashti; ashte</AUni> -<AUni ws="qvm-x-ame">ashti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="671c8fee-659b-4482-8cff-e5734d3713a6" ownerguid="c0543870-4232-464d-8645-36f15a6cbe90"> -<Form> -<AUni ws="qvm-x-ach">hurra</AUni> -<AUni ws="qvm-x-acl">hurra</AUni> -<AUni ws="qvm-x-akh">hurra</AUni> -<AUni ws="qvm-x-akl">hurra</AUni> -<AUni ws="qvm-x-ame">hurra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="671cd74d-da0e-40cb-be90-c94449a59df3" ownerguid="e9cafabe-f0f7-4142-a6f6-d1c94bdc4b5c"> -<ExampleWords> -<AUni ws="en">empty (v), drain, turn out, clear (v), dump out, clean out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to making something empty?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="671eea84-1073-47da-bcf2-07bf99e93a1f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsica</AUni> -<AUni ws="qvm-x-acl">tsica</AUni> -<AUni ws="qvm-x-akh">tsika</AUni> -<AUni ws="qvm-x-akl">tsika</AUni> -<AUni ws="qvm-x-ame">tsika</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.528" /> -<DateModified val="2022-10-15 16:8:8.951" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7bc97585-0838-4adf-b27f-921c423c6192" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">MANY1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ffd00358-88ae-49b0-96b8-10366deaba2f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b8903407-2b56-4d28-b9e5-0258dd757c57" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx MANY1 
\entryTyp suffix 
\gENG MANY 
\gSPN VAR 
\e MANY1 
\c N0/N0 N1/N0 
\ach tsica 
\akh tsika 
\acl tsica 
\akl tsika 
\ame tsika 
\o 020 
\co mcc MANY1 / TakeMANY _ | doesn't work 
\mcc MANY1 / *may _ / *kay _ / *chay _ / *wara:nin _</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="671f2098-d983-441e-b5c2-1c26b70ff398" ownerguid="6bd023f6-730e-44c2-ae8f-78df967e2e18"> -<ExampleWords> -<AUni ws="en">pull, tow, take in tow, draw, trail something behind you</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to a vehicle or animal pulling something so that it moves along behind?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6720bb3e-96c5-4876-b82a-570b3b8e65bf" ownerguid="d3d6f6df-222d-4b2d-be44-c38e2de1fe9b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">the</AUni> -<AUni ws="es">las</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7552fba1-71f5-4237-8ab7-c99237edafe8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="67230444-1da0-4af4-840f-b4671d625686" ownerguid="93e1aa75-1c40-4f20-84ed-61ec4e93094b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">snow.cap</AUni> -<AUni ws="es">cordillera</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bf55247d-48c0-4482-b568-46bee1cd93ca" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="67247ab3-7b3a-4035-a0d0-a05c8e615c71" ownerguid="d68911f6-6507-483a-b015-44726fdf868a"> -<Abbreviation> -<AUni ws="en">6.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.367" /> -<DateModified val="2022-9-23 16:55:8.367" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something made by hand instead of by a machine.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Made by hand</AUni> -</Name> -<Questions> -<objsur guid="7cf9f657-6110-4ce6-9300-26d71b3ca4aa" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="672982f9-90f7-4d71-85da-a54578f61abe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alar</AUni> -<AUni ws="qvm-x-acl">alar</AUni> -<AUni ws="qvm-x-akh">alar</AUni> -<AUni ws="qvm-x-akl">alar</AUni> -<AUni ws="qvm-x-ame">alar</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+alar</AUni> -<AUni ws="qvm-x-acl">+alar</AUni> -<AUni ws="qvm-x-akh">+alar</AUni> -<AUni ws="qvm-x-akl">+alar</AUni> -<AUni ws="qvm-x-ame">+alar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.689" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="31666704-ce20-4b9a-9f76-0835b0f1703f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+alar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bf8909d7-2e92-4299-b5f1-dbcd06c8097d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="da5f4013-13ec-41d5-bc39-06deefd5444f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +alar 
\entryTyp root 
\gENG porch 
\gSPN alar 
\e +alar 
\c N0 
\mp +FinalC 
\ach alar 
\akh alar 
\acl alar 
\akl alar 
\ame alar</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="6730cf67-bc7f-4b30-83a9-dfe4fa79d5a8" ownerguid="23baedce-4764-43e2-9bfc-4a2837bd46b2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="67320802-4a28-43bc-908e-b523c5e965bf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">acha:qui; acha:qui</AUni> -<AUni ws="qvm-x-acl">acha:qui; acha:qui; acha:que</AUni> -<AUni ws="qvm-x-akh">acha:qui; acha:qui</AUni> -<AUni ws="qvm-x-akl">acha:qui; acha:qui; acha:que</AUni> -<AUni ws="qvm-x-ame">acha:qui; acha:qui</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+achaque</AUni> -<AUni ws="qvm-x-acl">+achaque</AUni> -<AUni ws="qvm-x-akh">+achaque</AUni> -<AUni ws="qvm-x-akl">+achaque</AUni> -<AUni ws="qvm-x-ame">+achaque</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.637" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="47563afb-e383-4101-a4e7-758d8722d0a2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+achaque</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="65dcc228-8e98-411c-8c0e-94566a298a36" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="16f2b8e6-253d-451e-aacf-b5bd9952c2d9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +achaque 
\entryTyp root 
\gENG 
\gSPN achaque 
\e +achaque 
\c N0 
\mp +FinalI 
\ach acha:qui / _# 
\ach acha:qui / ~_# 
\akh acha:qui / _# 
\akh acha:qui / ~_# 
\acl acha:qui / _# 
\acl acha:qui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl acha:que +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl acha:qui / _# 
\akl acha:qui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl acha:que +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame acha:qui / _# 
\ame acha:qui / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="6736dafe-2916-40f6-b6b7-b6300100933b" ownerguid="d502512c-966b-4752-8636-716fb29facfe"> -<Abbreviation> -<AUni ws="en">5.7.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.337" /> -<DateModified val="2022-9-23 16:55:8.337" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to dreaming.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Dream</AUni> -</Name> -<Questions> -<objsur guid="ff666854-13f5-472b-8aa6-3700884508d9" t="o" /> -<objsur guid="7eded58b-b322-4411-9987-9f37d094f02c" t="o" /> -<objsur guid="00d4b3d6-6e1d-4e28-a9ec-e5701eeacd8f" t="o" /> -<objsur guid="b647d30b-67ce-4bba-973b-e253770ec1e8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="67380659-de59-4da1-b28b-84558ac7573e" ownerguid="85f211ae-cc16-4042-8c27-e99ff8f01f61"> -<ExampleWords> -<AUni ws="en">gift, present, prize, reward</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something that is given?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6739a877-5924-4f5e-8751-c79ac1bd7d52" ownerguid="514974a2-c2fd-4b25-a24d-2ff52fa3d798"> -<ExampleWords> -<AUni ws="en">die down, go out, burn itself out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a fire stopping?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="673ba12c-344a-402e-81c2-dca8173885db" ownerguid="5d238526-6d17-40c2-8a6a-5c681c7469de"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">embroider</AUni> -<AUni ws="es">bordar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e532a7b2-64ba-4c62-98c0-36fa41a10a4f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="673c1398-de11-4264-97e7-060167a7977f" ownerguid="a6c89bc7-61f1-4cc8-9504-236978f03534"> -<Form> -<AUni ws="qvm-x-ach">shacsha</AUni> -<AUni ws="qvm-x-acl">shacsha</AUni> -<AUni ws="qvm-x-akh">shaksha</AUni> -<AUni ws="qvm-x-akl">shaksha</AUni> -<AUni ws="qvm-x-ame">shaksha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="673cbb74-543d-43d6-a3fc-8f6cb079080b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shatya</AUni> -<AUni ws="qvm-x-acl">shatya</AUni> -<AUni ws="qvm-x-akh">shatya</AUni> -<AUni ws="qvm-x-akl">shatya</AUni> -<AUni ws="qvm-x-ame">shatya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shatya</AUni> -<AUni ws="qvm-x-acl">*shatya</AUni> -<AUni ws="qvm-x-akh">*shatya</AUni> -<AUni ws="qvm-x-akl">*shatya</AUni> -<AUni ws="qvm-x-ame">*shatya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.561" /> -<DateModified val="2022-10-10 21:19:47.693" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2fc3f27d-1b50-4882-bfa6-5880c00505a5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shatya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="616f44da-a750-468c-b75b-4ea350d09615" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3c6cd50b-217f-4893-9554-bbe54ba6f883" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shatya 
\entryTyp root 
\gENG drench 
\gSPN 
\e *shatya 
\c V1 
\ach shatya 
\akh shatya 
\acl shatya 
\akl shatya 
\ame shatya 
\i JOB 24.8 Tamyarga pasaypa shatyaylami ushman.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="673e3b68-eb62-4c13-bac8-0525527e3348" ownerguid="ae66b757-5d95-4698-948f-7bfa30c5e462"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">weave.betw.rafters</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6786f91a-d56f-4df6-8749-5c908b91e272" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="673f0fb3-f04f-488d-9a31-c54b8833f4e6" ownerguid="2191d0e8-c885-415a-843c-9b3c36383f91"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="6740fdcd-7f41-4a62-a3b7-90502edb44f3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gotu</AUni> -<AUni ws="qvm-x-acl">gotu; gotu; goto</AUni> -<AUni ws="qvm-x-akh">qotu</AUni> -<AUni ws="qvm-x-akl">qotu; qotu; qoto</AUni> -<AUni ws="qvm-x-ame">qutu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qutu.n</AUni> -<AUni ws="qvm-x-acl">*qutu.n</AUni> -<AUni ws="qvm-x-akh">*qutu.n</AUni> -<AUni ws="qvm-x-akl">*qutu.n</AUni> -<AUni ws="qvm-x-ame">*qutu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.902" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="23db077d-3423-4e9d-9670-21b5f71d84d1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qutu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="27dcdca5-4cc7-4fd4-839b-cca680aa4b1b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3a860950-1a98-4523-b896-b2b54d07b51b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qutu.n 
\entryTyp root 
\gENG goiter 
\gSPN bocio 
\e *qutu.n 
\c N0 
\ach gotu 
\akh qotu 
\acl gotu / _# 
\acl gotu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl goto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qotu / _# 
\akl qotu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qoto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qutu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="6745c89d-1fcd-44b8-be4b-9fd9d62f64e7" ownerguid="57225f57-ba51-45d7-b6d2-b22052877ea4"> -<Abbreviation> -<AUni ws="en">4.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.215" /> -<DateModified val="2022-9-23 16:55:8.215" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to entertainment and recreation.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>50 Contests and Play</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Entertainment, recreation</AUni> -</Name> -<OcmCodes> -<Uni>540 Commercialized Entertainment; 520 Recreation; 517 Leisure Time Activities; 523 Hobbies; 529 Recreational Facilities; 541 Spectacles; 543 Exhibitions; 546 Motion Picture Industry; 547 Night Clubs and Cabarets; 548 Illegal Entertainment; Organized Vice</Uni> -</OcmCodes> -<Questions> -<objsur guid="dff2a4b5-e1da-4259-86c4-9c7f988f8db5" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="721e7782-9add-41fa-a7cf-659d5ca33926" t="o" /> -<objsur guid="01441207-4935-49a5-a192-16d949f5606c" t="o" /> -<objsur guid="28e874fb-b2e7-4afa-a4d7-600306ad2583" t="o" /> -<objsur guid="42133f78-9860-4bb7-8083-5559083f0714" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="67474367-4f5c-4d2d-a311-adc126e13854" ownerguid="b102b67f-eec0-49ff-82b9-4243b6068788"> -<Form> -<AUni ws="qvm-x-ach">päja</AUni> -<AUni ws="qvm-x-acl">päja</AUni> -<AUni ws="qvm-x-akh">päja</AUni> -<AUni ws="qvm-x-akl">päja</AUni> -<AUni ws="qvm-x-ame">päja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="67491727-59ff-4a20-a173-3f80a5c350e2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wapsu</AUni> -<AUni ws="qvm-x-acl">wapsu; wapsu; wapso</AUni> -<AUni ws="qvm-x-akh">wapsu</AUni> -<AUni ws="qvm-x-akl">wapsu; wapsu; wapso</AUni> -<AUni ws="qvm-x-ame">wapsu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wapsu.n</AUni> -<AUni ws="qvm-x-acl">*wapsu.n</AUni> -<AUni ws="qvm-x-akh">*wapsu.n</AUni> -<AUni ws="qvm-x-akl">*wapsu.n</AUni> -<AUni ws="qvm-x-ame">*wapsu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.493" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6dd0bee1-7ddb-406d-bcde-ee0ba2a05b58" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wapsu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0dec6ab1-864c-43c1-b0b9-b23bfae6c697" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5c39bbac-f5f5-4784-a9cd-48b19cc2617e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wapsu.n 
\entryTyp root 
\gENG 
\gSPN incharse 
\e *wapsu.n 
\c N0 
\ach wapsu 
\akh wapsu 
\acl wapsu / _# 
\acl wapsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wapso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wapsu / _# 
\akl wapsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl wapso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wapsu</Run> -</AStr> -</Custom> -</rt> -<rt class="StStyle" guid="674f0bdd-4240-49d7-9288-a6dcc130ff08" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="10" /> -<Function val="5" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Verse Number</Uni> -</Name> -<Rules> -<Prop spellcheck="doNotCheck" superscript="super"></Prop> -</Rules> -<Structure val="2" /> -<Type val="1" /> -<Usage> -<AUni ws="en">Verse Number identifies the start of a verse.</AUni> -</Usage> -<UserLevel val="0" /> -</rt> -<rt class="MoStemMsa" guid="674f7009-814d-46c2-8766-e167ce5b7ad8" ownerguid="7c35bb94-49c7-464a-b533-2255bc261138"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="67540106-a01c-47a7-8379-709a22317a13" ownerguid="cb0e8865-afec-4259-839b-5ca760f571ec"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="6755d0cb-11f6-4d9c-a731-336bfd044212" ownerguid="cd85fe14-c139-40c7-a148-8659e107755f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">loom</AUni> -<AUni ws="es">telar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7bb779bf-9405-4df2-8eb0-beb797d23e52" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="67599885-2197-4aca-9591-9e2e2262b9f7" ownerguid="eb662979-604c-455e-a2c6-a84b03a2ee3a"> -<ExampleWords> -<AUni ws="en">early (adj)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that happens early?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="675d67bb-da64-456e-8825-bdf074bb82be" ownerguid="0e79435b-f5ff-4061-81ff-49557ba2aed4"> -<Abbreviation> -<AUni ws="en">4.1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to beginning a relationship.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>34B Join, Begin To Associate; 34E Establish or Confirm a Relation</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Begin a relationship</AUni> -</Name> -<Questions> -<objsur guid="502f6711-0307-42eb-8ea3-cac948f84c4b" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="06341e45-c407-49d0-98d8-74ecc303fb02" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoAffixAllomorph" guid="675d7422-a1b8-41a5-ade9-9d949f8de420" ownerguid="fa80eb56-d1c3-4fde-9ef9-75f0749e8fdc"> -<Form> -<AUni ws="qvm-x-ach">tsa</AUni> -<AUni ws="qvm-x-acl">tsa</AUni> -<AUni ws="qvm-x-akh">tsa</AUni> -<AUni ws="qvm-x-akl">tsa</AUni> -<AUni ws="qvm-x-ame">tsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="675eccbb-9858-4cd4-8405-5f0d0faa792c" ownerguid="0b7b9a1c-588b-475a-ac14-00f0999cbfe9"> -<Abbreviation> -<AUni ws="en">4.8.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.286" /> -<DateModified val="2022-9-23 16:55:8.286" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to negotiating with someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Negotiate</AUni> -</Name> -<Questions> -<objsur guid="3fd04e66-dda6-48cd-ab72-49c29f748a24" t="o" /> -<objsur guid="e13d71e8-27d9-4f9a-a02a-4dc08bef876e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="6762f83b-d81f-4144-9ddb-cd4903042e9f" ownerguid="0d972590-5947-4983-a092-443697baec24"> -<ExampleWords> -<AUni ws="en">tip, edge, handle, blade</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What are the parts of each tool?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6766dc95-63d8-46fc-92b3-adebcb0bb8b1" ownerguid="4c0771eb-671e-435b-8b2a-39b929c24388"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="6769a109-6782-4c77-885c-a0d10aae9494"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Paykunaqa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="6769d733-4db1-41a3-8464-048bf0b0db23" ownerguid="4dc63b4c-d62e-46a3-9257-a888174bbff8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">song</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ea2deae4-3e00-4449-9a01-44be8da2c945" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6769f414-6dcd-4c7d-a7e0-959ed7be5bf0" ownerguid="659ccabf-f978-4852-a1a6-c225f1d76b97"> -<ExampleWords> -<AUni ws="en">weekend, day off, Sabbath, day of rest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used for the days when a person does not work?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="676a5019-0c99-4f7a-b47a-34928056bddd" ownerguid="41270f2a-7fab-42b4-9771-f300041a4427"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">blow</AUni> -<AUni ws="es">soplar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b1a62e2e-70fd-41b6-b470-a6dd665de204" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="676b32a3-2e5f-42cc-af47-3c3bc6e003d2" ownerguid="258864e5-cd2f-4494-827e-b4bfe8140288"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="WfiWordform" guid="676b8f18-c6d7-41ec-8240-d43d72b07fbe"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">niptinmi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="676f71ed-9f51-4db3-9463-80e02b16b14d" ownerguid="3ce6009b-a7b6-411d-9f94-90312fe5f7d7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lame</AUni> -<AUni ws="es">cojo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="710caccc-2724-41f8-8d52-1d7a9161463c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="67709fdd-843f-42e4-890f-952044efc57c" ownerguid="0f6a898d-6286-4b97-b07d-97213b9c723a" /> -<rt class="LexSense" guid="67752934-b91c-4c50-bd77-6c41dc858dca" ownerguid="9ffccad9-e445-41b8-b924-897bdee1eb58"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">silk.in</AUni> -<AUni ws="es">tener.pelo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3cdb4159-47a3-499a-8301-155b3348d22a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6779ae55-a320-4f5c-860c-ffc4e17c0612" ownerguid="71f89512-17f0-484c-aca8-ddd226e3c794"> -<ExampleWords> -<AUni ws="en">pigeon toed, knock-kneed, bow-legged, flat-footed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a person's legs?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="677a4c19-37ad-4f45-88f4-4619baa1ddf3" ownerguid="8d490e91-6383-45ea-a3d7-b9c950822f98"> -<ExampleWords> -<AUni ws="en">impatience, intolerance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the quality of being impatient?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="677e0119-7e10-4ffd-9f93-6830f3785559" ownerguid="a26c3c21-bb9a-4b82-a354-fa9b54d681f4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bottle</AUni> -<AUni ws="es">botella</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fac991e0-69ca-4cc5-943c-d96bc80908bc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="677e6b62-5268-4840-8b5d-3711cdfaefb4" ownerguid="9f868391-f1df-4682-bdcb-2c2c799006cf"> -<ExampleWords> -<AUni ws="en">reminisce, recall, think back on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to remembering things that happened in the past?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="67812d54-a37b-43c9-9514-a6aaacf365be" ownerguid="bf44ef9b-c9e9-4653-8f59-965fdee8ce61"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="6786f91a-d56f-4df6-8749-5c908b91e272" ownerguid="ae66b757-5d95-4698-948f-7bfa30c5e462"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="6789c8b8-7371-4db4-bb0f-2ebd952171da" ownerguid="d69caa77-a8de-4fc5-b76c-34f080dcfc94"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="844b424a-68af-44d4-8933-73a760935d44" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="182c3e39-7f77-4f98-91c7-0cb1a4cc368a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="678a3319-a12b-4f92-857d-167def8ef583" ownerguid="196bf7b1-54a1-4a78-8d10-c61585849c63"> -<Abbreviation> -<AUni ws="en">7.2.5.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.518" /> -<DateModified val="2022-9-23 16:55:8.518" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to more than one thing moving together.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Move together</AUni> -</Name> -<Questions> -<objsur guid="aedc9015-a9f1-4d8e-9ad1-48478ed89983" t="o" /> -<objsur guid="394d5cfc-0581-494e-aca0-264b11f15270" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="42b21a6e-e2f3-4468-9e92-49ee4de6909a" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="678bbfc7-b8c7-4f8e-a54c-26fa4bc333ea"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ashma</AUni> -<AUni ws="qvm-x-acl">ashma</AUni> -<AUni ws="qvm-x-akh">ashma</AUni> -<AUni ws="qvm-x-akl">ashma</AUni> -<AUni ws="qvm-x-ame">ashma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ashma.v</AUni> -<AUni ws="qvm-x-acl">*ashma.v</AUni> -<AUni ws="qvm-x-akh">*ashma.v</AUni> -<AUni ws="qvm-x-akl">*ashma.v</AUni> -<AUni ws="qvm-x-ame">*ashma.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.848" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8e64d534-daf7-4b5d-bbfd-f791324aebe5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ashma.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8cfbefdc-0e74-4d77-a718-d2cd4a8f38d0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="faca8855-bec9-4d45-912c-e0240781075c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ashma.v 
\entryTyp root 
\gENG raise 
\gSPN criar 
\e *ashma.v 
\c V2 
\ach ashma 
\akh ashma 
\acl ashma 
\akl ashma 
\ame ashma 
\mcc *ashma.v / ~_ INF ADV1 
\mcc *ashma.v / ~_ ADV2 
\mcc *ashma.v / ~_ INF (JUST) [poss] 
\mcc *ashma.v / ~_ REF NMN 
\mcc *ashma.v / ~_ REFDIR NMN 
\mcc *ashma.v / ~_ IN NMN 
\mcc *ashma.v / ~_ INF [lla]</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="6790b7f1-0cda-4ba3-8d54-8a27e66d8c56" ownerguid="e76fb4fe-f105-420c-9054-bb1e7246cd53" /> -<rt class="MoStemMsa" guid="679249a1-9dd9-44dd-b74c-52e401eba1fa" ownerguid="3ba7b5a4-38b1-4107-a05e-b7d62e560880"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="67929606-aa2f-4b58-938c-f90654d1538c" ownerguid="c7c1c25a-d89d-4720-846c-d6e1dd723a17"> -<ExampleWords> -<AUni ws="en">cooking oil, oil, margarine, shortening</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to oil used in cooking?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="67931f1c-9a0c-4d18-9762-e553c132256c" ownerguid="2b893d04-3450-4862-b046-7df6f87272f6"> -<Abbreviation> -<AUni ws="en">6.8.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to financial transactions.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Financial transaction</AUni> -</Name> -<OcmCodes> -<Uni>425 Acquisition and Relinquishment of Property; 430 Exchange</Uni> -</OcmCodes> -<Questions> -<objsur guid="8c767374-1e6e-421c-8495-e86fc3d29e60" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="063e0810-8e49-44ef-aa8f-bb9e63bb66dd" t="o" /> -<objsur guid="a758718d-6e90-471d-acde-a637ba9ff9eb" t="o" /> -<objsur guid="0f7c4d2f-ed94-49ba-a91c-fba36193f35a" t="o" /> -<objsur guid="36123ffe-14d8-4198-b32c-eabd0b23e0dd" t="o" /> -<objsur guid="0ca05184-08b9-4dc7-a4c7-ff762380b111" t="o" /> -<objsur guid="3b69f6b6-d64a-43aa-99dc-05e34f81e07f" t="o" /> -<objsur guid="57e367f4-7029-4916-a700-791db32b4745" t="o" /> -<objsur guid="869d0c7b-d792-45ab-bf31-fd9f6fea3107" t="o" /> -<objsur guid="7e0bc050-5298-4808-af22-5e284526c652" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="67948c72-7b60-4d7f-8f30-2706a8157c33" ownerguid="547f1151-5816-4d89-b0bc-ece2a86c92eb"> -<ExampleWords> -<AUni ws="en">migrate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to migrating?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="67949e26-4fb9-4520-90dc-4bd05c9b5415" ownerguid="2c25b6db-6d3c-41bc-9e3e-f591cde9e63f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8a9257da-eaf6-4f21-9de6-7452b8d1b129" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="679609f6-c2da-428a-bf49-3cc2b82122ab"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tacsha</AUni> -<AUni ws="qvm-x-acl">tacsha</AUni> -<AUni ws="qvm-x-akh">taksha</AUni> -<AUni ws="qvm-x-akl">taksha</AUni> -<AUni ws="qvm-x-ame">taksha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*taksha</AUni> -<AUni ws="qvm-x-acl">*taksha</AUni> -<AUni ws="qvm-x-akh">*taksha</AUni> -<AUni ws="qvm-x-akl">*taksha</AUni> -<AUni ws="qvm-x-ame">*taksha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.774" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e2807d6d-8578-415a-a7ed-bb5f231d0f6d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*taksha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="585e53f3-3019-49be-99cc-3b019d4fe295" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cd912015-080f-4d4f-9842-621503b92759" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *taksha 
\entryTyp root 
\gENG small 
\gSPN pequeño 
\e *taksha 
\c N0 
\ach tacsha 
\akh taksha 
\acl tacsha 
\akl taksha 
\ame taksha</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="6797bc00-1780-41ab-a1cf-5a7b53db8713" ownerguid="dae5a6f9-9810-4a71-841d-1d76b2f4697f"> -<Form> -<AUni ws="qvm-x-ach">soles; solis</AUni> -<AUni ws="qvm-x-acl">soles; solis</AUni> -<AUni ws="qvm-x-akh">soles; solis</AUni> -<AUni ws="qvm-x-akl">soles; solis</AUni> -<AUni ws="qvm-x-ame">soles; solis</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="67981488-5c2f-4a7b-810c-5cae50bb8d40" ownerguid="a9c8abf8-38d6-4ba5-b924-4852424261f0"> -<Form> -<AUni ws="qvm-x-ach">lantu</AUni> -<AUni ws="qvm-x-acl">lantu; lanto</AUni> -<AUni ws="qvm-x-akh">lantu</AUni> -<AUni ws="qvm-x-akl">lantu; lanto</AUni> -<AUni ws="qvm-x-ame">lantu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="6798703b-c2c6-4f9d-8a2e-26b03ef04064"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">esca:ma</AUni> -<AUni ws="qvm-x-acl">esca:ma</AUni> -<AUni ws="qvm-x-akh">esca:ma</AUni> -<AUni ws="qvm-x-akl">esca:ma</AUni> -<AUni ws="qvm-x-ame">esca:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+escama</AUni> -<AUni ws="qvm-x-acl">+escama</AUni> -<AUni ws="qvm-x-akh">+escama</AUni> -<AUni ws="qvm-x-akl">+escama</AUni> -<AUni ws="qvm-x-ame">+escama</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.487" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8fb4670b-f1e0-453f-b59c-d68accb777a2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+escama</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f282c5f0-c2ee-4c9d-ab38-7192923a714d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="532cc98d-ddbc-4ace-9162-58b2560908b9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +escama 
\entryTyp root 
\gENG scale 
\gSPN escama 
\e +escama 
\c N0 
\ach esca:ma 
\akh esca:ma 
\acl esca:ma 
\akl esca:ma 
\ame esca:ma</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="6798cbaf-df7f-4ce5-99c5-f279fbc3e234"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yawar</AUni> -<AUni ws="qvm-x-acl">yawar</AUni> -<AUni ws="qvm-x-akh">yawar</AUni> -<AUni ws="qvm-x-akl">yawar</AUni> -<AUni ws="qvm-x-ame">yawar</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yawar</AUni> -<AUni ws="qvm-x-acl">*yawar</AUni> -<AUni ws="qvm-x-akh">*yawar</AUni> -<AUni ws="qvm-x-akl">*yawar</AUni> -<AUni ws="qvm-x-ame">*yawar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.770" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0b553df6-9b68-4b21-a68e-451f9d3ee129" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yawar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fd31447f-30e9-47a5-8b71-5e2e8479c824" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="584cdea0-3843-41c8-af2b-bbea27969537" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yawar 
\entryTyp root 
\gENG blood 
\gSPN sangre 
\e *yawar 
\c N0 
\mp +FinalC 
\ach yawar 
\akh yawar 
\acl yawar 
\akl yawar 
\ame yawar 
\i Tagayga yarwarnëmi caycan. El es la descendencia de mi familia.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="679906fb-f9f4-4714-93dc-2afd8a04bfe7" ownerguid="021a89a4-c0d7-4a50-ace8-1e273f2e0705"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lepros</AUni> -<AUni ws="es">leproso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cc6b0d5a-1ac5-4bb7-abd2-d42ac52ff2b8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="67990ad8-9103-4b61-b409-8c4220e20a19" ownerguid="82602177-e119-4dc8-a754-4130f46ff764"> -<Form> -<AUni ws="qvm-x-ach">maja; majä</AUni> -<AUni ws="qvm-x-acl">maja; majä</AUni> -<AUni ws="qvm-x-akh">maja; majä</AUni> -<AUni ws="qvm-x-akl">maja; majä</AUni> -<AUni ws="qvm-x-ame">maha; mahä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StStyle" guid="679ab46a-8a27-4449-91b1-edad14669b01" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="7d2c80cd-af87-4d56-8337-cfd389b775bb" t="r" /> -</BasedOn> -<Context val="10" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Paragraph</Uni> -</Name> -<Next> -<objsur guid="679ab46a-8a27-4449-91b1-edad14669b01" t="r" /> -</Next> -<Rules> -<Prop firstIndent="12000"></Prop> -</Rules> -<Structure val="2" /> -<Type val="0" /> -<Usage> -<AUni ws="en">Paragraph identifies a paragraph of prose.</AUni> -</Usage> -<UserLevel val="0" /> -</rt> -<rt class="CmDomainQ" guid="679dc86e-df63-4124-83c3-df33b301f5ce" ownerguid="58be5db0-c648-4522-bad0-02cd9cc15f37"> -<ExampleWords> -<AUni ws="en">dig a foundation, lay a foundation, build a foundation, pour a (concrete) foundation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) How does someone build a foundation?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="679ebc93-4eef-4dc0-97ae-527f57230a22" ownerguid="5728b699-9a17-4021-9579-76f5d762a090"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="67a07790-3a1e-43d0-a551-2af4180ad66d" ownerguid="3934d975-76f9-4daf-b5f6-1451da8d67df"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PunctuationForm" guid="67a22ebd-0480-40ec-ba3d-bcea0cf73397"> -<Form> -<Str> -<Run ws="en">withou</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="67a374ce-02e1-43e5-8b07-0445842874bb" ownerguid="ba1e8d2b-7d3e-4b65-a9be-ee1a4063c796"> -<ExampleWords> -<AUni ws="en">Don't worry. There's nothing to worry about. Rest assured. Never mind.</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What do people say when they don't want someone to worry?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="67a6edcb-b36a-419c-bbc6-97be9d07c17b" ownerguid="aba62efa-b83b-442b-8e16-df72eee20258"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5028ca70-81ac-4ad1-9bbc-2edc34923eeb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="67a71dc6-adb6-4b86-a4cc-00e36657d899" ownerguid="efef45bd-26be-46f8-b85b-424be55bcdac"> -<ExampleWords> -<AUni ws="en">new, fresh</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe something or someone that has recently replaced the one before it?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="67a7812b-f130-492b-9061-21edabeca533" ownerguid="bb0f8f80-c1c7-42ea-806c-41492deae74d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="6b94800d-e1bb-4508-b1b6-e175b3be0ece" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="67a83eef-37c9-4b4e-968b-2dc52167b75b" ownerguid="a3fe0ca2-64fe-44db-ac3f-14513385bc25"> -<ExampleWords> -<AUni ws="en">nod, yawn, stretch, eyelids droop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What are the symptoms of beginning to go to sleep?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="67aaccc0-94cc-47aa-a7de-d56e554214ad" ownerguid="13f62fa1-589c-4a46-9bbc-b0fd1001e21f"> -<ExampleWords> -<AUni ws="en">serve your sentence</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to the process of serving a sentence?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="67ab2de9-dd2b-485e-bbe1-85a4ebcde024" ownerguid="a4cdee93-4e26-4d4c-b6ee-16126454554f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">head</AUni> -<AUni ws="es">cabeza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="46a20fe7-25ca-44de-b6a3-ff97800dcf82" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="67ab44fb-8f3e-4b06-8e55-551ce253ecfa" ownerguid="f6bfcab1-f820-4f6f-ae55-614bb775337a"> -<Form> -<AUni ws="qvm-x-ach">ñampu</AUni> -<AUni ws="qvm-x-acl">ñampu; ñampu; ñampo</AUni> -<AUni ws="qvm-x-akh">ñampu</AUni> -<AUni ws="qvm-x-akl">ñampu; ñampu; ñampo</AUni> -<AUni ws="qvm-x-ame">ñampu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="67ae0ed5-d599-49c5-a52c-4f2abd9c9ae8" ownerguid="38d1a6fe-0811-4eb0-a1d8-f69b6ad978e0"> -<ExampleWords> -<AUni ws="en">blessing, benediction</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to what is said in blessing?</AUni> -</Question> -</rt> -<rt class="MoInflAffixTemplate" guid="67b2fc26-c47e-43cf-b1f9-7b650bb39f80" ownerguid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5"> -<Disabled val="False" /> -<Final val="False" /> -<Name> -<AUni ws="en">noun structure</AUni> -</Name> -<SuffixSlots> -<objsur guid="42bc87c7-a17e-4c3e-850a-437f19ff6b36" t="r" /> -<objsur guid="b5380f6d-8ec4-4a58-806f-5e3caeadb9df" t="r" /> -<objsur guid="fda4c591-1349-4f9e-ab87-905ae2aa25e1" t="r" /> -<objsur guid="c1118d19-b22a-4beb-87cf-1c1faf476ece" t="r" /> -</SuffixSlots> -</rt> -<rt class="WfiMorphBundle" guid="67b3c979-61aa-486d-8313-7b7e457a2a3b" ownerguid="b64933e3-fd57-4090-848e-2af0cc6d8e88"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="67b56c05-d0b7-430a-8141-98917e192288" ownerguid="0f23f3b8-8ed9-4670-8878-9ed7223a46d5"> -<Form> -<AUni ws="qvm-x-ach">certifica</AUni> -<AUni ws="qvm-x-acl">certifica</AUni> -<AUni ws="qvm-x-akh">certifica</AUni> -<AUni ws="qvm-x-akl">certifica</AUni> -<AUni ws="qvm-x-ame">certifica</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="67b5ccac-ca10-4742-905d-595993cb4d30"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">asalta</AUni> -<AUni ws="qvm-x-acl">asalta</AUni> -<AUni ws="qvm-x-akh">asalta</AUni> -<AUni ws="qvm-x-akl">asalta</AUni> -<AUni ws="qvm-x-ame">asalta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+asalta</AUni> -<AUni ws="qvm-x-acl">+asalta</AUni> -<AUni ws="qvm-x-akh">+asalta</AUni> -<AUni ws="qvm-x-akl">+asalta</AUni> -<AUni ws="qvm-x-ame">+asalta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.485" /> -<DateModified val="2022-10-16 15:14:52.140" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="80929e8e-2c94-49a4-a47b-ad19b9dede5f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">asalta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="842e3be7-cb5e-4583-bfe9-0f394e531770" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="600009c6-c744-402a-af15-9db780fe1451" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx asalta 
\entryTyp root 
\gENG asalt 
\gSPN asaltar 
\e +asaltar 
\c V2 
\ach asalta 
\akh asalta 
\acl asalta 
\akl asalta 
\ame asalta</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="67b648fc-5317-4a74-8f22-30e8b1b34d51" ownerguid="9c8b3760-f3df-43a2-96e5-c4809dc2d51e"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="bdec53c5-23e0-4d69-9674-104ed8d01bf5" t="o" /> -<objsur guid="52bedf54-9f72-4483-97f0-2314c5f38e85" t="o" /> -<objsur guid="54207b75-347a-4036-8c2e-241615432c7e" t="o" /> -<objsur guid="181d2445-358a-4ea0-aff5-8c1e7e6cf98e" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="67b9318f-573e-4cf0-aa5d-5fdd58cd370d" ownerguid="721e7782-9add-41fa-a7cf-659d5ca33926"> -<ExampleWords> -<AUni ws="en">play</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to playing a game?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="67b9b5ef-31c2-456d-8663-3e05a0375aed" ownerguid="08bd689d-bf0d-422b-83be-0a6545407128"> -<Form> -<AUni ws="qvm-x-ach">shulash</AUni> -<AUni ws="qvm-x-acl">shulash</AUni> -<AUni ws="qvm-x-akh">shulash</AUni> -<AUni ws="qvm-x-akl">shulash</AUni> -<AUni ws="qvm-x-ame">shulash</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="67ba1fcd-e590-4ca0-b1d8-b0848e3c8b24" ownerguid="c114ea07-250d-4acb-918c-b2916f40f47b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="67bac343-97bc-4bd0-81ac-a9c06cd55d74" ownerguid="3c774a89-7af1-4806-98e8-b0102f4a4aba"> -<Form> -<AUni ws="qvm-x-ach">quilla</AUni> -<AUni ws="qvm-x-acl">quilla</AUni> -<AUni ws="qvm-x-akh">killa</AUni> -<AUni ws="qvm-x-akl">killa</AUni> -<AUni ws="qvm-x-ame">killa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="67bb0d19-e520-461c-8d73-76b5caa1240e" ownerguid="ea6b1251-e6e4-4b9e-ab76-65207eb88364"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ring</AUni> -<AUni ws="es">anillo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="52488270-328c-457d-8fd7-13d55ba0887c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="67bc7948-c7ae-4c0a-a341-1a58b6d3407e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ichi</AUni> -<AUni ws="qvm-x-acl">ichi; iche</AUni> -<AUni ws="qvm-x-akh">ichi</AUni> -<AUni ws="qvm-x-akl">ichi; iche</AUni> -<AUni ws="qvm-x-ame">ichi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*itri</AUni> -<AUni ws="qvm-x-acl">*itri</AUni> -<AUni ws="qvm-x-akh">*itri</AUni> -<AUni ws="qvm-x-akl">*itri</AUni> -<AUni ws="qvm-x-ame">*itri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.872" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="70362eed-8ff2-4529-82b6-18c105408a18" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*itri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="82342709-59ba-4190-b3bd-6ce72547e1db" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4a23d3bd-a192-4e87-b9f9-b9032a54b185" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *itri 
\entryTyp root 
\gENG stand 
\gSPN pararse 
\e *itri 
\c V1 
\mp +FinalI 
\ach ichi 
\akh ichi 
\acl ichi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl iche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ichi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl iche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ichi 
\mcc *itri / ~_ INTER</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="67bd4d31-38fd-44de-8a3b-384d8fc9a66d" ownerguid="f1954678-ed60-4039-a99b-45b9d4b722d0"> -<Form> -<AUni ws="qvm-x-ach">radiu; radio</AUni> -<AUni ws="qvm-x-acl">radiu; radiu; radio</AUni> -<AUni ws="qvm-x-akh">radiu; radio</AUni> -<AUni ws="qvm-x-akl">radiu; radiu; radio</AUni> -<AUni ws="qvm-x-ame">radiu; radio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="67c04ce5-f47b-4b9c-826d-0395dff682c9" ownerguid="b93bdfa4-486c-44a0-8266-557ccdc78b31"> -<ExampleWords> -<AUni ws="en">shoot up, fly out, land on things</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What do sparks do?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="67c0feb8-3f09-44d7-b596-a15b2b2c7cd2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">presenta</AUni> -<AUni ws="qvm-x-acl">presenta</AUni> -<AUni ws="qvm-x-akh">presenta</AUni> -<AUni ws="qvm-x-akl">presenta</AUni> -<AUni ws="qvm-x-ame">presenta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+presentar</AUni> -<AUni ws="qvm-x-acl">+presentar</AUni> -<AUni ws="qvm-x-akh">+presentar</AUni> -<AUni ws="qvm-x-akl">+presentar</AUni> -<AUni ws="qvm-x-ame">+presentar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.921" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2595b261-8812-4849-9c4f-c1c23e5754ba" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+presentar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6459965d-6f3e-4ffe-8400-f8433f4bc6b9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="da6a6a8e-711c-4aa3-8147-c9448ef58a1c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +presentar 
\entryTyp root 
\gENG present 
\gSPN presentar 
\e +presentar 
\c V2 
\ach presenta 
\akh presenta 
\acl presenta 
\akl presenta 
\ame presenta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="67c94aa7-2a6a-4721-80d1-7bc378b46384" ownerguid="62200976-7753-4c79-bb7c-bf130fdf7f7f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="67cbe0db-74f4-48a1-a051-0a9e75827b75" ownerguid="4e330f00-ea0d-4354-8f03-8b892281201f"> -<Form> -<AUni ws="qvm-x-ach">lïsu</AUni> -<AUni ws="qvm-x-acl">lïsu; lïsu; lïso</AUni> -<AUni ws="qvm-x-akh">lïsu</AUni> -<AUni ws="qvm-x-akl">lïsu; lïsu; lïso</AUni> -<AUni ws="qvm-x-ame">lïsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="67ccf8c6-a7c7-40df-864a-115f41357a80" ownerguid="22b52461-ebe0-422d-a7cb-7b9359e7a701"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="67d10a00-fda8-4a3a-becd-f3ae3b00fcca" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<Abbreviation> -<AUni ws="en">3.4.2.1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.143" /> -<DateModified val="2022-9-23 16:55:8.143" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling shocked--feeling both surprised and angry when something very bad suddenly happens or when someone does something very bad.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Shock</AUni> -</Name> -<Questions> -<objsur guid="07961901-f89f-4abe-9220-eaab1e986638" t="o" /> -<objsur guid="a777c9d6-9372-4620-be88-6006da5147ae" t="o" /> -<objsur guid="a5c91ca5-c6f0-464f-9b4c-a1fbdb9470b5" t="o" /> -<objsur guid="a51827e1-c92d-4ff2-980f-7fc864c5b938" t="o" /> -<objsur guid="8d33c219-469e-4f69-9360-1e7c0c1dda91" t="o" /> -<objsur guid="fd5cf24d-9e9b-4604-ad49-d0b61504b37c" t="o" /> -<objsur guid="3e3c10e3-76b8-44be-af75-fdee312428d8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="67d1c4aa-1d28-40be-9236-46dad2605abc" ownerguid="2e33e3ee-ae2f-4d15-99dd-963049ef71af"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">scold</AUni> -<AUni ws="es">renegar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="045e290f-e49a-4000-ac6b-5a1465c844ca" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="67d282f8-151d-429b-8183-6a7d2f5ac98d" ownerguid="e45b8bac-9623-4f84-a113-9dec13a8db64"> -<Abbreviation> -<AUni ws="en">3.5.1.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to introducing a new subject--to start talking or writing about something new for the first time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Introduce</AUni> -</Name> -<Questions> -<objsur guid="f51d717e-f5bc-41b3-a243-ddee3bf1dd81" t="o" /> -<objsur guid="46284d00-562b-430e-90ac-608862d3d6f3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="67d4c1fd-92d6-4ffc-9012-90ea5d625c9a" ownerguid="eb3585b5-cb6c-4061-8aff-feb66ba09add"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">camay</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">camay</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kamay</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kamay</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kamay</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f0b99234-0a2f-44c4-83ae-47801443b6b2" t="r" /> -</Morph> -<Msa> -<objsur guid="1829a081-bc32-4291-9767-5bec080e6a37" t="r" /> -</Msa> -</rt> -<rt class="MoInflAffMsa" guid="67d4d16b-3fe8-47b5-b211-66dac0610398" ownerguid="f1092161-733a-4873-8885-7df06f52421f"> -<PartOfSpeech> -<objsur guid="a4fc78d6-7591-4fb3-8edd-82f10ae3739d" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="f9e1228b-4c5b-4e23-bd04-d513eddcbaea" t="r" /> -</Slots> -</rt> -<rt class="CmDomainQ" guid="67d5477a-1e95-49fe-a843-4396991e5fd9" ownerguid="2e5a80f9-35ae-4850-9627-be530832a781"> -<ExampleWords> -<AUni ws="en">hey, hi, hello, pleased to meet you</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words are used in greetings to show respect?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="67d58613-7fc4-46da-8ebf-cef148ad8009" ownerguid="444d93a7-d896-4c50-871b-cbb18d3f7bb9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="67d74de1-33f9-4d39-8fa5-5dd27e7cd1d1" ownerguid="85214614-ab45-4805-9014-092750d47511"> -<Abbreviation> -<AUni ws="en">4.7.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to suspecting someone--to think that someone might have done something bad.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Suspect</AUni> -</Name> -<Questions> -<objsur guid="b92449cc-1f8b-4522-9287-5c6e2958ab43" t="o" /> -<objsur guid="aed23460-6a2b-48c4-90fa-6d1b947fc2da" t="o" /> -<objsur guid="bbb30248-5028-4e27-9aeb-05f3bae2f22b" t="o" /> -<objsur guid="445944ec-03b1-49ee-8ae9-a9d6536f6248" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="67d77bfc-525b-487b-94f7-a08ea1d8c88f" ownerguid="e45b8bac-9623-4f84-a113-9dec13a8db64"> -<ExampleWords> -<AUni ws="en">subject, topic, theme, issue, question, matter, business, thing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the thing being talked about?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="67d79b4b-6b2c-4b33-8d8f-bd5b61d0231a" ownerguid="b14db9f4-5e1d-4a2b-bec0-0d6bcb5b1a31"> -<ExampleWords> -<AUni ws="en">hold up, prop up, brace</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(18) What words refer to keeping something from falling?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="67d7ac91-96a3-4979-b55b-101280d95144"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guenru</AUni> -<AUni ws="qvm-x-acl">guenru; guenro</AUni> -<AUni ws="qvm-x-akh">qenru</AUni> -<AUni ws="qvm-x-akl">qenru; qenro</AUni> -<AUni ws="qvm-x-ame">qinru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qinru</AUni> -<AUni ws="qvm-x-acl">*qinru</AUni> -<AUni ws="qvm-x-akh">*qinru</AUni> -<AUni ws="qvm-x-akl">*qinru</AUni> -<AUni ws="qvm-x-ame">*qinru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.185" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7d95aa60-a401-474a-982c-08508b2a3d71" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qinru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="80bd323e-ec9e-4ff6-b690-e09f5f1bd617" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e7ca6466-4a9a-4580-b69a-e4bdaccfc45d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qinru 
\entryTyp root 
\gENG 
\gSPN 
\e *qinru 
\c V1 
\ach guenru 
\akh qenru 
\acl guenru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl guenro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qenru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qenro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qinru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="67d85ec5-55d5-4f87-9d62-67ead4207ffe" ownerguid="e626c65e-eb79-4230-b07a-a6d975d3fe3d"> -<ExampleWords> -<AUni ws="en">open, close, smile, purse your lips</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to moving the mouth?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="67de2383-8130-4cb8-93cd-8384ef7a77b7" ownerguid="14a7ae1e-68e1-42dd-8dac-28006b0c7165"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="2d4f50bf-c363-4bcb-8bdc-b9ee5e98cebd" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="1e23276d-ce20-4dee-9c93-63eb34131ad1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="67e02100-c4c2-4dd1-9a4b-e6497021eac2" ownerguid="cecfc489-94aa-4cdc-aecf-afb6646f28f2" /> -<rt class="MoStemAllomorph" guid="67e19eda-002b-436d-872a-fca3929ac906" ownerguid="2139db65-1662-4a7f-889d-014baf893e14"> -<Form> -<AUni ws="qvm-x-ach">afeita</AUni> -<AUni ws="qvm-x-acl">afeita</AUni> -<AUni ws="qvm-x-akh">afeita</AUni> -<AUni ws="qvm-x-akl">afeita</AUni> -<AUni ws="qvm-x-ame">afeita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="67e57493-d286-4271-b877-f63f962dddf1" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<Abbreviation> -<AUni ws="en">8.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.589" /> -<DateModified val="2022-9-23 16:55:8.589" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing a big area.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Big area</AUni> -</Name> -<Questions> -<objsur guid="fabbcc7e-4400-49af-83e4-2cecedcdf79d" t="o" /> -<objsur guid="44b156ee-8417-47a3-bc09-041a34b30afb" t="o" /> -<objsur guid="70359949-7305-448a-9ef2-eb468425064f" t="o" /> -<objsur guid="ce34b146-f766-49b5-a41e-6ef0d44fdd47" t="o" /> -<objsur guid="6c9eaedb-8482-4f8f-bbee-bbdaba1bc096" t="o" /> -<objsur guid="670d8c65-af64-44f3-8611-ae161b97eacd" t="o" /> -<objsur guid="6051fd8d-1b0d-4839-ab18-6e9c1a07a5c0" t="o" /> -<objsur guid="6adcbc06-75ec-40c8-89f2-a04558c35b47" t="o" /> -<objsur guid="c6d58e16-0d01-4f84-8603-075a72c3e718" t="o" /> -<objsur guid="817d785e-02bb-41ed-9aa7-c4a2370e9846" t="o" /> -<objsur guid="0851b851-e21c-427e-8fa1-6a86e0aaa12a" t="o" /> -<objsur guid="7d78134a-7dfc-446b-bcc2-59f6528693e1" t="o" /> -<objsur guid="a620d9b0-88b8-43bc-afb0-27691bb0a7ff" t="o" /> -<objsur guid="33153e04-e1e0-479a-a3be-45d4cd280d6f" t="o" /> -<objsur guid="3e179873-5e21-4511-bdc3-d2587785da3d" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="ea17aba7-6d4e-4dbf-89ea-84a1b1c47647" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="67e5ce5f-2333-4c97-a160-8a5509c02314" ownerguid="05472990-3f51-40b3-bca8-df3cf383328b"> -<ExampleWords> -<AUni ws="en">speech, sermon, lecture (n), talk (n), address (n), oration, homily</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to what is said?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="67e88608-5743-4699-8fbc-13f5356aaaef" ownerguid="1d4b0243-6c26-4d0e-9975-bd51a7687f51"> -<Form> -<AUni ws="qvm-x-ach">shogmi</AUni> -<AUni ws="qvm-x-acl">shogmi; shogme</AUni> -<AUni ws="qvm-x-akh">shoqmi</AUni> -<AUni ws="qvm-x-akl">shoqmi; shoqme</AUni> -<AUni ws="qvm-x-ame">shuqmi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmAgent" guid="67e9b8bf-c312-458e-89c3-6e9326e48aa0" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Approves> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="o" /> -</Approves> -<Disapproves> -<objsur guid="ce8e565b-45f4-4b09-b3d3-5b4d064eff50" t="o" /> -</Disapproves> -<Human val="False" /> -<Name> -<AUni ws="en">Computer</AUni> -</Name> -<Notes> -<objsur guid="cd2fa409-a581-457a-a957-cb4cdabc7f2d" t="o" /> -</Notes> -</rt> -<rt class="MoStemMsa" guid="67eb8ff2-f44c-4879-ad5c-f7effc3ae11e" ownerguid="f5082009-b5ae-4a6d-949d-9b40fcb4d3a7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="67ebbf85-1d47-41b7-9cfb-6bb6002ab73b" ownerguid="e55ec875-33e0-4e71-b2b3-dfa2c131782f"> -<Form> -<AUni ws="qvm-x-ach">tierra</AUni> -<AUni ws="qvm-x-acl">tierra</AUni> -<AUni ws="qvm-x-akh">tierra</AUni> -<AUni ws="qvm-x-akl">tierra</AUni> -<AUni ws="qvm-x-ame">tierra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="67ecc1e0-a9b9-42cc-9ccb-6a954aa98e21" ownerguid="aa87c23f-f7ba-4973-a774-94e755ef4964"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="67ed11d9-3867-4a25-b466-f1fc118fa155" ownerguid="710828bc-5dfb-4685-b1a5-156700ab08f1"> -<ExampleWords> -<AUni ws="en">scan, skim, browse, read over, look through</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to reading quickly?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="67ee89ca-6eaf-4a7f-97b6-866eb75eed15" ownerguid="b194d54e-4876-45b0-81a5-390de1d41dc4"> -<Form> -<AUni ws="qvm-x-ach">pucla</AUni> -<AUni ws="qvm-x-acl">pucla</AUni> -<AUni ws="qvm-x-akh">pukla</AUni> -<AUni ws="qvm-x-akl">pukla</AUni> -<AUni ws="qvm-x-ame">pukla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="67f0478f-bce9-4232-a9df-50b7443a74f4" ownerguid="dbebc3bd-2d01-4d62-a009-866c18ee3527"> -<ExampleWords> -<AUni ws="en">lose the baby, miscarry, have a miscarriage, stillborn, stillbirth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a baby dying before birth?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="67f1945e-2b10-4696-9c5a-3210419d7420" ownerguid="1613d33c-0798-49b5-9430-bf2964943504"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="67f4263f-77d4-45c8-9669-d06e2d96d425" ownerguid="e9746b92-864d-4a1e-8553-207d78261999"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">̈</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">̈</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">̈</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">̈</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">̈</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1b20df13-0cae-48c6-8db3-2cd0a2126e8d" t="r" /> -</Morph> -<Msa> -<objsur guid="13b178aa-cf95-4902-a68b-959ad06fd6f9" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="67f6f4f7-f847-4f43-b709-ca67e930a167" ownerguid="755a7462-1d87-48b0-939c-08be5b5ea002"> -<ExampleWords> -<AUni ws="en">plenty of, more than enough, bags of, in large quantities, plentiful, ample, abundant, an abundance of, in abundance, copious, galore, to spare</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that there is more than enough of something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="67fd8c15-a1fa-4f38-9250-309e869910ca"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tumpu</AUni> -<AUni ws="qvm-x-acl">tumpu; tumpu; tumpo</AUni> -<AUni ws="qvm-x-akh">tumpu</AUni> -<AUni ws="qvm-x-akl">tumpu; tumpu; tumpo</AUni> -<AUni ws="qvm-x-ame">tumpu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tumpu</AUni> -<AUni ws="qvm-x-acl">*tumpu</AUni> -<AUni ws="qvm-x-akh">*tumpu</AUni> -<AUni ws="qvm-x-akl">*tumpu</AUni> -<AUni ws="qvm-x-ame">*tumpu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.995" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cf7bf33f-a2ab-425d-a2a2-578183755c8d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tumpu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2061dce1-5afe-4654-af2b-2fbbb9cb6022" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cd3c67b1-76b4-429e-9022-7e4f66b59661" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tumpu 
\entryTyp root 
\gENG trunk 
\gSPN tronco 
\e *tumpu 
\c N0 
\ach tumpu 
\akh tumpu 
\acl tumpu / _# 
\acl tumpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tumpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tumpu / _# 
\akl tumpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tumpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tumpu 
\i EXO 5.12 Tsauraga Israel runacuna intëru Egiptupa mashtacargan punshapa trucan trïgu pashapa tumpuncunata ashinanpag.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="6804db44-b71b-4452-98b1-b726bc7cf022" ownerguid="8503660c-03af-49ee-86b6-525aab4da828"> -<Abbreviation> -<AUni ws="en">2.3.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.32" /> -<DateModified val="2022-9-23 16:55:8.32" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that describe loud sounds.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Loud</AUni> -</Name> -<Questions> -<objsur guid="ba102f53-ee7a-462f-82c4-feee4f18003f" t="o" /> -<objsur guid="f7a8809e-df79-4b19-88bb-7e1787c26c2a" t="o" /> -<objsur guid="bd9efa5d-da29-4fc3-a3a1-1bcc3055f7a1" t="o" /> -<objsur guid="da95fd3d-e540-41db-89f8-55ce705942e9" t="o" /> -<objsur guid="08b31da1-3e57-4254-9f15-6b207f6e971e" t="o" /> -<objsur guid="da0987ff-e40c-48e3-94ae-5960ebf72dde" t="o" /> -<objsur guid="d2c2c6b5-e330-4bf1-a80e-012fa4287cda" t="o" /> -<objsur guid="66a03e62-9e15-482a-8ad6-a309c57b36ed" t="o" /> -<objsur guid="6d7ab19f-2743-489b-909f-47b33cf13b73" t="o" /> -<objsur guid="003c0b21-a4db-4e19-9e4e-4fae44be75bc" t="o" /> -<objsur guid="e8380635-6b97-44b4-a56f-531821ce4743" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="680617e9-b3f3-4ccd-9f0e-89d13686f4bb" ownerguid="ed4a2ca6-c03c-4c72-9431-b72fb7294b8f"> -<ExampleWords> -<AUni ws="en">elope, elopement</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to getting married secretly?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="680d33a7-ac19-4d89-ab84-2504ea7aa678" ownerguid="27048124-c204-4585-9997-c51728f085d6"> -<ExampleWords> -<AUni ws="en">thankful, grateful, gratefully, appreciate, appreciative, be indebted to, owe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a person who feels thankful?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="680ecf54-d3bc-4816-88ae-4f4bac9d076e" ownerguid="9f9ff37f-be37-43c5-8818-045a15e2c469"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="68118a6a-bf1a-4523-a34c-85685caebd39" ownerguid="1984977c-621e-487a-b924-2c2a163bca1c" /> -<rt class="LexSense" guid="68120e2f-cb98-4774-8bac-c4f7fb3acf4a" ownerguid="2b439c51-4151-4da9-99b3-e8735385d919"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="8d129a4b-4a11-418c-8c78-f64b653ac98c" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="602eddb4-a0de-4440-951e-e894895c59de" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="6817cc05-a77f-405f-86c0-1325fdfaef28"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">porugsa</AUni> -<AUni ws="qvm-x-acl">porogsa</AUni> -<AUni ws="qvm-x-akh">poruqsa</AUni> -<AUni ws="qvm-x-akl">poroqsa</AUni> -<AUni ws="qvm-x-ame">puruqsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puruqsa</AUni> -<AUni ws="qvm-x-acl">*puruqsa</AUni> -<AUni ws="qvm-x-akh">*puruqsa</AUni> -<AUni ws="qvm-x-akl">*puruqsa</AUni> -<AUni ws="qvm-x-ame">*puruqsa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.27" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a9695987-ccfb-4545-9caa-2fda48559299" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puruqsa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="93e14cc1-9e54-46ad-ae9e-d10867965dbf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="034b74b1-7e1a-4a84-9034-6d62fe5b73c3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puruqsa 
\entryTyp root 
\gENG a.plant 
\gSPN una.hierba 
\e *puruqsa 
\c N0 
\ach porugsa 
\akh poruqsa 
\acl porogsa 
\akl poroqsa 
\ame puruqsa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="681812e8-bf9b-4607-93fb-8f4232c25b8f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chiwi</AUni> -<AUni ws="qvm-x-acl">chiwi; chiwe</AUni> -<AUni ws="qvm-x-akh">chiwi</AUni> -<AUni ws="qvm-x-akl">chiwi; chiwe</AUni> -<AUni ws="qvm-x-ame">chiwi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*triwi.v</AUni> -<AUni ws="qvm-x-acl">*triwi.v</AUni> -<AUni ws="qvm-x-akh">*triwi.v</AUni> -<AUni ws="qvm-x-akl">*triwi.v</AUni> -<AUni ws="qvm-x-ame">*triwi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.139" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ad54b888-1997-44df-b814-c737ba1140b1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*triwi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="02fc9a5e-e93c-4de8-8c39-7067f87913cb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7e5880b6-6b3c-435d-9e4e-a7034d613879" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *triwi.v 
\entryTyp root 
\gENG plant.potato 
\gSPN sembrar.papa 
\e *triwi.v 
\c V1 
\mp +FinalI 
\ach chiwi 
\akh chiwi 
\acl chiwi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl chiwe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chiwi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chiwe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chiwi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="681d1221-6b23-46dd-908d-74a26b378094" ownerguid="82107093-8388-4cc7-bc8f-bbff667c1696"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="681d317b-8d15-4729-b283-389b074fd96e" ownerguid="a452f567-9fdb-43cd-a74c-65e11171d4a1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="681d76ec-78af-4eb8-b294-26764f343c74" ownerguid="4937ccc5-71c3-45e2-9313-dbcdc7fd4dba"> -<Form> -<AUni ws="qvm-x-ach">engrampadöra</AUni> -<AUni ws="qvm-x-acl">engrampadöra</AUni> -<AUni ws="qvm-x-akh">engrampadöra</AUni> -<AUni ws="qvm-x-akl">engrampadöra</AUni> -<AUni ws="qvm-x-ame">engrampadöra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="682255eb-9217-40d8-8f11-7aadecf4035c" ownerguid="35cde277-d423-4d48-ba2d-7dd065577b1f"> -<Form> -<AUni ws="qvm-x-ach">pispa</AUni> -<AUni ws="qvm-x-acl">pispa</AUni> -<AUni ws="qvm-x-akh">pispa</AUni> -<AUni ws="qvm-x-akl">pispa</AUni> -<AUni ws="qvm-x-ame">pispa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6822b24c-d18c-4fc8-9a1e-a63dcccfc408" ownerguid="d100930b-6187-4722-ba21-3ec5de0b434b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="68241eaf-e794-40af-a32d-4ff22eca86a0" ownerguid="9f8b8c01-f790-469f-bc37-dece6227e276"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John went out to the garden, carry<ing> his hoe and shovel.; Mary bought food, <while> John got gas for the car.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">at the same time as, meanwhile, while, as, -ing, simultaneity, concurrently, coincident</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something happens at the same time as something else?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6827275a-af45-4503-8f54-54f1d320b1b1" ownerguid="6307e96b-9481-4edf-84c4-8afed61042ad"> -<Form> -<AUni ws="qvm-x-ach">puca</AUni> -<AUni ws="qvm-x-acl">puca</AUni> -<AUni ws="qvm-x-akh">puka</AUni> -<AUni ws="qvm-x-akl">puka</AUni> -<AUni ws="qvm-x-ame">puka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6828897d-78ba-4223-9fbf-f7826d39e59e" ownerguid="75202262-cdba-4c43-9343-764c84138797"> -<ExampleWords> -<AUni ws="en">aunt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to your father's sister?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="682bb294-23f8-4a47-8d1c-c18739730067" ownerguid="7ed8fed2-1855-4f1a-b106-031e8f771beb"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="682e04d9-f8ed-425a-a5da-9b85acc099d4" ownerguid="addd8440-9588-4bf2-8989-582cf651bcae"> -<Form> -<AUni ws="qvm-x-ach">jäma</AUni> -<AUni ws="qvm-x-acl">jäma</AUni> -<AUni ws="qvm-x-akh">jäma</AUni> -<AUni ws="qvm-x-akl">jäma</AUni> -<AUni ws="qvm-x-ame">häma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="682f6ac5-10c1-41ff-8519-faaf5d114484" ownerguid="358189f8-6a0b-427a-bfde-a5f72e8f3875"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="6835b705-bd58-4085-be16-d3ddf2aff737" ownerguid="188ba7c5-49b2-4162-85f2-778797fd5960"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6836e7bd-d3f7-45cf-9e7d-1f5065aafc79" ownerguid="40590157-9412-4558-b0f7-311867b649cc"> -<ExampleWords> -<AUni ws="en">stir</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to stirring something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="683807c1-9090-4330-beb4-c368a2bfae90" ownerguid="704a82a0-0783-4ccc-b07c-e21cafe9117e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">become.different</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4723eec6-0c51-4724-b82c-fca363964ee4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="683a19fc-dbeb-4151-b645-f04ffa775771" ownerguid="4bf411b7-2b5b-4673-b116-0e6c31fbd08a"> -<ExampleWords> -<AUni ws="en">be light, illuminated, sunlit, moonlit, starlit, lighted, luminous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that has light shining on it?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="683ec00b-a31e-4d3b-9a30-8420b9887295" ownerguid="743b003a-0fc5-4822-bd7b-36ea4a7a74a5"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="683f570a-0bfe-4a97-b55d-4319b328508b" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<Abbreviation> -<AUni ws="en">6.6.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to working with water.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>7E Constructions for Holding Water</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Working with water</AUni> -</Name> -<OcmCodes> -<Uni>376 Water Power</Uni> -</OcmCodes> -<Questions> -<objsur guid="78f5c50f-798d-4b91-957a-e9d9652da02f" t="o" /> -<objsur guid="6aa42f5a-37db-45b3-8959-3a09d07c5166" t="o" /> -<objsur guid="d6c40630-7a3d-4bd5-b954-4db8ef97d4bd" t="o" /> -<objsur guid="1ae00306-45c6-4ec8-8285-98c1a7715014" t="o" /> -<objsur guid="6ddb111d-2a34-4c28-b717-ebc4a0d69fc4" t="o" /> -<objsur guid="af4236bd-eaa2-4153-bfe1-e0983fb07d02" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="bf6e1719-11ee-4ace-9c84-72019c01aabc" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="515f9b40-0637-4ce3-b343-2d99de3f723b" t="o" /> -<objsur guid="0205145d-23b6-4c3c-bf2d-bf866bb010e7" t="o" /> -<objsur guid="6f83b918-dc9f-4053-90a4-a6b9e750db29" t="o" /> -<objsur guid="a6616a09-df51-4ca6-850f-733ee73c8750" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="683f6d16-1d19-4ff3-ba09-2846947b06df" ownerguid="999581c4-1611-4acb-ae1b-5e6c1dfe6f0c"> -<ExampleWords> -<AUni ws="en">aerial, heavenly, atmospheric, stratospheric, celestial</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something in the sky or something that happens in the sky?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="68415f2d-cb7c-4b15-82b0-6ca7bcc6b35a" ownerguid="0dcaa668-c529-4a1c-89c8-2eb8a44caa73"> -<Form> -<AUni ws="qvm-x-ach">läzu</AUni> -<AUni ws="qvm-x-acl">läzu; läzu; läzo</AUni> -<AUni ws="qvm-x-akh">läzu</AUni> -<AUni ws="qvm-x-akl">läzu; läzu; läzo</AUni> -<AUni ws="qvm-x-ame">läzu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="68437829-5831-4d6c-855f-6830e941eb6f" ownerguid="bea4961a-06b3-41b3-8042-db16d18b34fc"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="684505af-c9b3-4087-94f0-65bcc10e60e3" ownerguid="9fd4342a-b318-42dd-9397-aba4f9d870b7"> -<Form> -<AUni ws="qvm-x-ach">gasa; gasä</AUni> -<AUni ws="qvm-x-acl">gasa; gasä</AUni> -<AUni ws="qvm-x-akh">qasa; qasä</AUni> -<AUni ws="qvm-x-akl">qasa; qasä</AUni> -<AUni ws="qvm-x-ame">qasa; qasä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="684879a1-8a81-453e-bff2-0213203c9b7d" ownerguid="97ed5af8-29ca-428d-8ac5-c61b61a963fd"> -<ExampleWords> -<AUni ws="en">rainbow-hued, iridescence, iridescent, prismatic, opalescence, opalescent, pearly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that is colored like a rainbow?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6848b557-8304-42ba-b416-0b81dfa0b06c" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<ExampleWords> -<AUni ws="en">grief, grieve, mourn, be in mourning</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to feeling sad because someone died?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="684b8cad-7d44-4b7d-afe8-eff2273efa9d" ownerguid="91cc7e8f-522e-4ff1-b545-5a5b72f4e953"> -<ExampleWords> -<AUni ws="en">degenerate, deteriorate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something getting worse in condition?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="684efd30-20d7-4b13-9b58-01809f8bcc2f" ownerguid="7e9a90f9-1a0d-461a-b7eb-671c47a5affd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ditch</AUni> -<AUni ws="es">zanja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4a794ae2-a6c7-4948-9b33-1037f75310cb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="684f9b1f-2d09-4caf-b20a-da64cd10841c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">vi:ga</AUni> -<AUni ws="qvm-x-acl">vi:ga</AUni> -<AUni ws="qvm-x-akh">vi:ga</AUni> -<AUni ws="qvm-x-akl">vi:ga</AUni> -<AUni ws="qvm-x-ame">vi:ga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+viga</AUni> -<AUni ws="qvm-x-acl">+viga</AUni> -<AUni ws="qvm-x-akh">+viga</AUni> -<AUni ws="qvm-x-akl">+viga</AUni> -<AUni ws="qvm-x-ame">+viga</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.394" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="167a0377-df52-4b29-8a20-28e4cc67f5c1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+viga</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2d1a69ec-e6bd-45d4-a43f-95cf01ced86d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f4b61227-94a4-4290-acf3-8fbb83123933" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +viga 
\entryTyp root 
\gENG 
\gSPN 
\e +viga 
\c N0 
\ach vi:ga 
\akh vi:ga 
\acl vi:ga 
\akl vi:ga 
\ame vi:ga</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="684fc759-00e5-4e08-8675-5f7db79655f2" ownerguid="515f9b40-0637-4ce3-b343-2d99de3f723b"> -<ExampleWords> -<AUni ws="en">leak, leaky pipe, dripping faucet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a leaky pipe?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="684fe2fa-e37f-4ae7-b114-169ff276c1ed"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cunruru</AUni> -<AUni ws="qvm-x-acl">cunruru; cunruru; cunruro</AUni> -<AUni ws="qvm-x-akh">kunruru</AUni> -<AUni ws="qvm-x-akl">kunruru; kunruru; kunruro</AUni> -<AUni ws="qvm-x-ame">kunruru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kunruru.n</AUni> -<AUni ws="qvm-x-acl">*kunruru.n</AUni> -<AUni ws="qvm-x-akh">*kunruru.n</AUni> -<AUni ws="qvm-x-akl">*kunruru.n</AUni> -<AUni ws="qvm-x-ame">*kunruru.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.13" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dc6ce149-cc29-4a03-a5b5-08b3eed14e11" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kunruru.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="44389cb6-74e2-430d-a6ce-bad90fa52a46" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8596a1ba-3bb7-4546-8c0e-e557aff3d9eb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kunruru.n 
\entryTyp root 
\gENG thunder 
\gSPN trueno 
\e *kunruru.n 
\c N0 
\ach cunruru 
\akh kunruru 
\acl cunruru / _# 
\acl cunruru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cunruro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kunruru / _# 
\akl kunruru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kunruro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kunruru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="6855bdcb-b4a4-4a56-be58-e070b460d075"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">o:ru</AUni> -<AUni ws="qvm-x-acl">o:ru; o:ru; o:ro</AUni> -<AUni ws="qvm-x-akh">o:ru</AUni> -<AUni ws="qvm-x-akl">o:ru; o:ru; o:ro</AUni> -<AUni ws="qvm-x-ame">o:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+oro</AUni> -<AUni ws="qvm-x-acl">+oro</AUni> -<AUni ws="qvm-x-akh">+oro</AUni> -<AUni ws="qvm-x-akl">+oro</AUni> -<AUni ws="qvm-x-ame">+oro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.636" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bdba0a6e-4eff-4584-ba43-7cf667d99fda" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+oro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a9fabfe2-86e8-4290-9f6a-d36426c406d6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4f72c365-dc69-4428-9b22-2c953aa0ba84" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +oro 
\entryTyp root 
\gENG gold 
\gSPN oro 
\e +oro 
\c N0 
\ach o:ru 
\akh o:ru 
\acl o:ru / _# 
\acl o:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl o:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl o:ru / _# 
\akl o:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl o:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame o:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="685d1e52-9800-456a-bed5-47345bc49fa5" ownerguid="4d19f09f-035b-477e-862c-a4157acdfe81"> -<ExampleWords> -<AUni ws="en">contaminated, dirty, muddy, silt-filled, murky, stagnant, scum</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe dirty water?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="685d474d-3b84-4339-98c6-2aac28b9870c" ownerguid="d345142f-d51e-4023-a25a-2a4c0f1fbcbf"> -<Abbreviation> -<AUni ws="en">6.2.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.397" /> -<DateModified val="2022-9-23 16:55:8.397" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to clearing a field.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Clear a field</AUni> -</Name> -<Questions> -<objsur guid="618babbb-f9de-47be-a4f8-c4afa3032304" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="68603efd-0ca7-45eb-a69e-2851e1c37cf8" ownerguid="8884616f-14e9-4f6b-b4b1-b13bbded971d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="100e0213-5498-4cc6-a06c-fbb669fe6ce6" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="09419e5a-a788-4d04-8aae-8cd073c4bcd9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="68617e0d-8f16-4922-87e0-6316bf21e76a" ownerguid="e916fa80-99de-497b-b69a-0191102c4e62"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoInflAffMsa" guid="68618445-e00f-461f-b5f0-47431ba947f9" ownerguid="ae7d2dd7-7c7d-4f25-90f6-ae153c694063"> -<FromProdRestrict> -<objsur guid="5a35b43c-b4d5-4b6a-8eb8-da4f0bcbffbf" t="r" /> -</FromProdRestrict> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="ca45d090-0c3b-4e36-9a40-58963588cdaf" t="r" /> -</Slots> -</rt> -<rt class="CmDomainQ" guid="68648d8e-24e8-41ac-bd18-0df068f483e0" ownerguid="a1959b00-9702-4b45-ac46-93f18d3bc5e6"> -<ExampleWords> -<AUni ws="en">breathe out, exhale, blow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to breathing out?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6865e178-1a49-4aab-9b09-3d57d02bf922" ownerguid="7556a257-3703-40d3-91d3-c891fb250947"> -<ExampleWords> -<AUni ws="en">religious, sacred, spiritual</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something having to do with religion?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="6866ee4c-78cd-47d1-ba4a-8461fdcc5e2a" ownerguid="7185bd93-5281-46de-80af-767f0ec40ff6"> -<Abbreviation> -<AUni ws="en">3.2.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.94" /> -<DateModified val="2022-9-23 16:55:8.94" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing logical thinking.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Logical</AUni> -</Name> -<Questions> -<objsur guid="84accb9e-38d4-4395-b88e-5e9a229a29db" t="o" /> -<objsur guid="09eee567-709e-4487-83a0-3398e08647c0" t="o" /> -<objsur guid="1ce334e2-b478-495e-9563-afc7c94a4f3f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="68672ab9-d5a9-4201-bc98-875668d67667" ownerguid="d3b00c1b-d3e3-43fd-a46d-9da5221817ef"> -<Form> -<AUni ws="qvm-x-ach">apa; apä</AUni> -<AUni ws="qvm-x-acl">apa; apä</AUni> -<AUni ws="qvm-x-akh">apa; apä</AUni> -<AUni ws="qvm-x-akl">apa; apä</AUni> -<AUni ws="qvm-x-ame">apa; apä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="686b613e-f6c7-4805-85cf-f318622c6c76" ownerguid="6ab060ca-ecfc-4a46-accb-42b0473998cd"> -<ExampleWords> -<AUni ws="en">connecting</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that links two things?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="686c405d-852b-4af7-bb08-2991f5c3c413" ownerguid="a285fdb1-f889-4804-bc36-beda9d57ec9a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">family</AUni> -<AUni ws="es">casta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="af36951f-c56a-414c-9db9-16f8cac7e9c8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="686d01b2-c268-4d73-a164-1d1f4b13a0fd" ownerguid="bf096b02-7f80-4616-ab93-b2f0f3e0d65a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="686d1659-18c6-47af-b6d4-6dd68d8b620a" ownerguid="3e501544-b8a2-428d-8d24-19efdcb9a2b8"> -<Form> -<AUni ws="qvm-x-ach">änir</AUni> -<AUni ws="qvm-x-acl">änir</AUni> -<AUni ws="qvm-x-akh">änir</AUni> -<AUni ws="qvm-x-akl">änir</AUni> -<AUni ws="qvm-x-ame">änir</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="686e5cc6-08f3-410c-a525-e36454eef1ec" ownerguid="a33ec443-5299-4582-8442-18b37ea28ecd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="686f77b1-be8b-433c-a5a9-6046ffc2f85f" ownerguid="dd89c520-a4bf-43fb-82b6-279504c7ca57"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="6871e5a7-6dc6-4b24-bfc9-9057daa06a15" ownerguid="7347726c-b71e-41d8-8009-b78892706447"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="68766855-f562-4c01-baa5-c9ccea787a9b" ownerguid="0eeb062f-1ee4-425b-a2c1-18feb55c4269"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.another.color</AUni> -<AUni ws="es">quedar.otro.color</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2c1ab268-3b1f-4f5a-b180-6e065dc20729" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="687a2807-8d9f-4fca-8ef0-4621e25827c8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jita</AUni> -<AUni ws="qvm-x-acl">jita</AUni> -<AUni ws="qvm-x-akh">jita</AUni> -<AUni ws="qvm-x-akl">jita</AUni> -<AUni ws="qvm-x-ame">hita</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hita.r</AUni> -<AUni ws="qvm-x-acl">*hita.r</AUni> -<AUni ws="qvm-x-akh">*hita.r</AUni> -<AUni ws="qvm-x-akl">*hita.r</AUni> -<AUni ws="qvm-x-ame">*hita.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.731" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e6e2b106-ad23-48cf-a638-86ac303b6f46" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hita.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ff6bcf28-1b60-4d37-a08a-82a52749c97e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="713a23d3-aa4f-4d80-bafc-35cafe4bebe1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hita.r 
\entryTyp root 
\gENG 
\gSPN 
\e *hita.r 
\c R0 
\ach jita 
\akh jita 
\acl jita 
\akl jita 
\ame hita 
\mcc *hita.r / ~_ 3P.V TOP</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="687b061c-2c54-42ae-9513-be04f446ca23" ownerguid="ba1e8d2b-7d3e-4b65-a9be-ee1a4063c796"> -<ExampleWords> -<AUni ws="en">worried, anxious, anxiously, apprehensive, bothered, concerned, dismayed, disturbed, strained, troubled, uneasy, unsettled</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels worried?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="687bd813-0ef8-45e4-9a58-8b3d505a8802" ownerguid="a413a5fc-030d-4be9-a9c2-7214de45c7da"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">implant</AUni> -<AUni ws="es">plantar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fd667d83-70a2-4d50-b79c-873145aaf6b2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="6881f5fe-5269-4b76-a379-5cbbc907f77d" ownerguid="dd0304a6-1ed3-49c7-9844-a8cf11943bae"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">book</AUni> -<AUni ws="es">libro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="99572c11-c663-466e-b856-d1da3e20ea5c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="68838aa2-6224-4481-99e4-80046cd9d3c9" ownerguid="a1136561-0b46-418b-afe8-f841f89bea85"> -<Form> -<AUni ws="qvm-x-ach">medïda</AUni> -<AUni ws="qvm-x-acl">medïda</AUni> -<AUni ws="qvm-x-akh">medïda</AUni> -<AUni ws="qvm-x-akl">medïda</AUni> -<AUni ws="qvm-x-ame">medïda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="688397e1-e23c-4f14-9ac8-fbda54d4ec0a" ownerguid="4a388000-d5c6-4127-91cd-f4e0c9fac6f1"> -<ExampleWords> -<AUni ws="en">file, record, dossier, database</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to an organized collection of information?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6883c0e6-4a88-4bd9-ba29-db4cd84aa1dc" ownerguid="52b04e15-7062-4fb2-9eaa-4fe8726f302a"> -<ExampleWords> -<AUni ws="en">shake hands, bow, salute, give a hug, give a kiss, wave hello</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What gestures typically accompany a greeting?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="688863f2-17ad-44be-a149-c7c410933fcd" ownerguid="2f11a76b-9af1-4544-b0f0-f5749959c73c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">clear</AUni> -<AUni ws="es">escampar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e6e50926-4e2d-4b5e-bf33-fed1a832f5da" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6888d1a4-5bb6-442c-be1e-fb1891754248" ownerguid="addd8440-9588-4bf2-8989-582cf651bcae"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="68897640-536a-4bf2-b316-43e8b863c851" ownerguid="45e90d41-a462-4671-968f-92166378b3f0"> -<ExampleWords> -<AUni ws="en">remind, be a reminder, bring back memories, take someone back, drag up, rake up, evoke, evocative, make someone think of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to reminding someone of a person or something that happened in the past?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="688d9a08-c897-4931-b082-bc74ab7d5cd3" ownerguid="47672c2a-f85d-431a-81a1-9c78b967fcd2"> -<Form> -<AUni ws="qvm-x-ach">pushapa</AUni> -<AUni ws="qvm-x-acl">pushapa</AUni> -<AUni ws="qvm-x-akh">pushapa</AUni> -<AUni ws="qvm-x-akl">pushapa</AUni> -<AUni ws="qvm-x-ame">pushapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6892ebb3-30f2-4f77-a4f8-87fcad35770c" ownerguid="87522279-e6b4-493b-8870-ad78ef9d30f2"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="68947563-8667-4e92-be1f-cc1e2e438a23" ownerguid="38689a9a-475f-4ad8-831b-c847bd6bf295"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="689f1ef0-62f7-4e62-ac83-b6a88c3328bd" ownerguid="a99bfdb7-8925-4e05-b354-040ffd14b09d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">abort</AUni> -<AUni ws="es">abortar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="93a52a88-5f73-48eb-8719-ee6b34f795a1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="68a004d3-ae7b-4ea4-99a8-233105f55906" ownerguid="97e1aba5-2ac1-44a3-8f18-59b2347a54a1"> -<ExampleWords> -<AUni ws="en">mud, clay, cement, straw, mortar, sun-dried, burned, fired, kiln-dried</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What kinds of materials are used for bricks?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="68a0cab6-a726-4cb8-9fcd-bdfdc2b010ff"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">manshu</AUni> -<AUni ws="qvm-x-acl">manshu; manshu; mansho</AUni> -<AUni ws="qvm-x-akh">manshu</AUni> -<AUni ws="qvm-x-akl">manshu; manshu; mansho</AUni> -<AUni ws="qvm-x-ame">manshu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+manso</AUni> -<AUni ws="qvm-x-acl">+manso</AUni> -<AUni ws="qvm-x-akh">+manso</AUni> -<AUni ws="qvm-x-akl">+manso</AUni> -<AUni ws="qvm-x-ame">+manso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.315" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d80d3fee-4043-4a77-883f-9dc2c25958f0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+manso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b395cbfb-505e-4b96-b0af-cae1f921a6b4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d1d5d388-5a3d-4600-95ef-032566914525" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +manso 
\entryTyp root 
\gENG gentle 
\gSPN manso 
\e +manso 
\c N0 
\mp +assimilated 
\ach manshu 
\akh manshu 
\acl manshu / _# 
\acl manshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mansho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl manshu / _# 
\akl manshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mansho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame manshu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="68ad6a6d-7a44-40ad-9710-50f686f20467" ownerguid="5c63cb3d-9c24-4f8c-9075-03b9b05b5aa0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">finish</AUni> -<AUni ws="es">terminar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f1587688-f9c5-406a-84d4-4c91d3ffb918" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="68afe8b5-1cce-415d-9d19-adb5d103b216" ownerguid="b594278c-c938-48ea-a157-49ff67244ef5"> -<Form> -<AUni ws="qvm-x-ach">chiula</AUni> -<AUni ws="qvm-x-acl">chiula</AUni> -<AUni ws="qvm-x-akh">chiwla</AUni> -<AUni ws="qvm-x-akl">chiwla</AUni> -<AUni ws="qvm-x-ame">chiwla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="68b488c9-0def-4ea9-afba-e0f7a3f22879" ownerguid="ce30eb9c-8260-476b-878c-0a078d596955"> -<ExampleWords> -<AUni ws="en">forget, didn't think of it, overlook, draw a blank, escape me, slip my mind, fly right out of your mind, lose your train of thought, lose track of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to not remembering something?</AUni> -</Question> -</rt> -<rt class="StTxtPara" guid="68bb7222-7270-4631-a9da-d513411ddc5b" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">rikakumuptiki</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="87743ccd-2769-461b-b6a9-a636dbee42db" t="o" /> -</Segments> -</rt> -<rt class="CmDomainQ" guid="68bc19c5-abf4-4bd2-8eab-43127407d15a" ownerguid="d395edc8-fb58-4ba4-8446-dacf8ea0477a"> -<ExampleWords> -<AUni ws="en">sweat (n), perspiration</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to sweat?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="68bde32e-13f9-4d93-b2c6-4c369c4ae4d3" ownerguid="99a01c0d-9892-49a9-bfef-c779a2c3eab9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="68be5bcd-a834-4efc-ba38-d5a93223a610"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Orfaqa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="68bf6a41-4a0c-4e66-ae8c-64cff293f162" ownerguid="96b1e8c9-fa1d-4704-bfdc-6c9f79b24241"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hinder</AUni> -<AUni ws="es">impedir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="95056e7f-4c52-418e-8183-91406cb8d212" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="68c651b0-2a21-4a29-b408-5c6c7d05c5a3" ownerguid="81e03df2-33a8-4735-aa23-80ef1c63679e"> -<ExampleWords> -<AUni ws="en">be dazed, confused, disoriented, unsure, out of it, befuddled, bewildered, spaced out, incoherent, dull (minded), stupor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being dazed or confused?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="68c7d5d8-f1be-48d3-bc63-5319354c734e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gueshya</AUni> -<AUni ws="qvm-x-acl">gueshya</AUni> -<AUni ws="qvm-x-akh">qeshya</AUni> -<AUni ws="qvm-x-akl">qeshya</AUni> -<AUni ws="qvm-x-ame">qishya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qishya.v</AUni> -<AUni ws="qvm-x-acl">*qishya.v</AUni> -<AUni ws="qvm-x-akh">*qishya.v</AUni> -<AUni ws="qvm-x-akl">*qishya.v</AUni> -<AUni ws="qvm-x-ame">*qishya.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.209" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b15ff554-60d6-4dbd-a7e1-e32052d0ab50" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qishya.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="841a6afc-47f6-495e-8e85-151fe538d8c2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9989db86-c201-4791-a10f-08cbf678cb33" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qishya.v 
\entryTyp root 
\gENG be.sick 
\gSPN estar.enfermo 
\e *qishya.v 
\c V2 
\ach gueshya 
\akh qeshya 
\acl gueshya 
\akl qeshya 
\ame qishya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmAgentEvaluation" guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" ownerguid="1257a971-fcef-4f06-a5e2-c289de5aaf72" /> -<rt class="CmDomainQ" guid="68cdedb4-8153-40a2-9e5d-c2d3e2d1be97" ownerguid="ed4a2ca6-c03c-4c72-9431-b72fb7294b8f"> -<ExampleWords> -<AUni ws="en">minister, justice of the peace</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the person who performs a wedding ceremony?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="68ce3961-6037-4bb3-b544-8b42012d5c6c" ownerguid="bbd00b1c-739d-4288-a370-3aab776bf465"> -<Form> -<AUni ws="qvm-x-ach">gachmi</AUni> -<AUni ws="qvm-x-acl">gachmi; gachmi; gachme</AUni> -<AUni ws="qvm-x-akh">qachmi</AUni> -<AUni ws="qvm-x-akl">qachmi; qachmi; qachme</AUni> -<AUni ws="qvm-x-ame">qachmi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="68d0bf24-3cd0-4612-9d02-e633fea20ef4" ownerguid="3c4f3090-5820-46cb-a89e-51307ed69e00"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="68d0f031-23a3-49dc-b5b4-c34d0c87b2f4" ownerguid="ea273e20-5284-47f1-aa52-a570157ae264"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="68d18bbd-f95d-43bd-bddb-685200ca7cb2" ownerguid="8503660c-03af-49ee-86b6-525aab4da828"> -<ExampleWords> -<AUni ws="en">hearing, sense of hearing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the ability to hear?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="68d37695-e01c-4bfb-8feb-3925263208c6" ownerguid="ca752706-1c9e-43e7-bd17-845c4736ccd8"> -<ExampleWords> -<AUni ws="en">narrowly, rather</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe something that is approximately the same as another thing?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="68d7d08b-efb3-4fc1-87d6-ad37562e920d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">goyu</AUni> -<AUni ws="qvm-x-acl">goyu; goyu; goyo</AUni> -<AUni ws="qvm-x-akh">qoyu</AUni> -<AUni ws="qvm-x-akl">qoyu; qoyu; qoyo</AUni> -<AUni ws="qvm-x-ame">quyu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*quyu</AUni> -<AUni ws="qvm-x-acl">*quyu</AUni> -<AUni ws="qvm-x-akh">*quyu</AUni> -<AUni ws="qvm-x-akl">*quyu</AUni> -<AUni ws="qvm-x-ame">*quyu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.912" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="afa8c3cb-e8ff-4629-9637-6b5924d0174b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*quyu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b669331e-510f-49e9-84ae-05930cf7a7cf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e7c88a2b-06b2-4454-b9ca-bca4fe43b1a6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *quyu 
\entryTyp root 
\gENG 
\gSPN 
\e *quyu 
\c N0 
\ach goyu 
\akh qoyu 
\acl goyu / _# 
\acl goyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl goyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qoyu / _# 
\akl qoyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qoyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame quyu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="68db8d37-8dda-448b-9ec0-d346b6a81593" ownerguid="7c6cad26-79c3-403a-a3aa-59babdfcd46f"> -<ExampleWords> -<AUni ws="en">patient, sufferer, invalid, the sick</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to a person who is sick?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="68dcc8eb-e314-4701-9118-22f59ba41e40"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">muru</AUni> -<AUni ws="qvm-x-acl">muru; muro</AUni> -<AUni ws="qvm-x-akh">muru</AUni> -<AUni ws="qvm-x-akl">muru; muro</AUni> -<AUni ws="qvm-x-ame">muru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*muru.v</AUni> -<AUni ws="qvm-x-acl">*muru.v</AUni> -<AUni ws="qvm-x-akh">*muru.v</AUni> -<AUni ws="qvm-x-akl">*muru.v</AUni> -<AUni ws="qvm-x-ame">*muru.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.507" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7ad0a091-fe71-4ad0-b10f-9740992f8d78" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*muru.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="53a66030-9d75-43a9-987f-32528946f07f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3e32a277-da77-4a82-9704-a5b2caceccc8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *muru.v 
\entryTyp root 
\gENG plant 
\gSPN sembrar 
\e *muru.v 
\c V2 
\ach muru 
\akh muru 
\acl muru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl muro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl muru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl muro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame muru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="68dec44d-7c5b-4e12-9f6e-0aa0b8dec042"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tabla</AUni> -<AUni ws="qvm-x-acl">tabla</AUni> -<AUni ws="qvm-x-akh">tabla</AUni> -<AUni ws="qvm-x-akl">tabla</AUni> -<AUni ws="qvm-x-ame">tabla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tabla</AUni> -<AUni ws="qvm-x-acl">+tabla</AUni> -<AUni ws="qvm-x-akh">+tabla</AUni> -<AUni ws="qvm-x-akl">+tabla</AUni> -<AUni ws="qvm-x-ame">+tabla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.764" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b427b21e-a90e-4164-8d38-e10f9a37d300" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tabla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="22c50a6a-9f84-46c5-9230-f58fe9c5acda" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cf8e187e-fe29-40c5-be11-fe50ecc7ac47" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tabla 
\entryTyp root 
\gENG board 
\gSPN tabla 
\e +tabla 
\c N0 
\ach tabla 
\akh tabla 
\acl tabla 
\akl tabla 
\ame tabla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="68e11a3c-2ebd-42ff-afad-49a207fd3719" ownerguid="8597827b-12ba-4f7b-a26e-9b72a45af369"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stir</AUni> -<AUni ws="es">batir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="630cf58f-3708-46af-9f19-5201890a4651" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="68e47a4d-a0ca-4a40-9c51-6f9edd9955e4" ownerguid="995751ef-d71b-429c-a4ee-032f5b309bd7"> -<ExampleWords> -<AUni ws="en">half-breed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a person whose parents are from two different races?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="68e5b8dd-145d-4e53-b767-e98132c6b01b" ownerguid="4626740c-2b5d-4922-b9b1-f551d127743e"> -<Form> -<AUni ws="qvm-x-ach">tsagtsu</AUni> -<AUni ws="qvm-x-acl">tsagtsu; tsagtso</AUni> -<AUni ws="qvm-x-akh">tsaqtsu</AUni> -<AUni ws="qvm-x-akl">tsaqtsu; tsaqtso</AUni> -<AUni ws="qvm-x-ame">tsaqtsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="68e6acab-93bf-4401-92e0-feaa96999da4" ownerguid="e2cae91c-86f4-4a5a-87c5-058211ec9e35"> -<Form> -<AUni ws="qvm-x-ach">cacha</AUni> -<AUni ws="qvm-x-acl">cacha</AUni> -<AUni ws="qvm-x-akh">kacha</AUni> -<AUni ws="qvm-x-akl">kacha</AUni> -<AUni ws="qvm-x-ame">kacha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="68ea6f20-8a18-420c-bb51-874b6afcabd1" ownerguid="2608bcf8-ed20-4501-8510-4ecacf922dd4"> -<ExampleWords> -<AUni ws="en">wrapper, wrapping, covering, shroud</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something that is used to wrap something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="68eb8596-6879-4627-9323-bd86024f268e" ownerguid="e949f393-2a5b-4792-af8f-75138322ceee"> -<ExampleWords> -<AUni ws="en">strength, power, brawn, force, might, energy, vigor, toughness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a person's strength?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="68ed3e51-ddc4-4cec-89ff-605259ac9fcf" ownerguid="d98c1c67-b70e-4a35-89db-2e744bd5197f"> -<Abbreviation> -<AUni ws="en">2.1.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the nose.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Nose</AUni> -</Name> -<Questions> -<objsur guid="9e98f0a7-168c-4a6d-9900-32091d50b2c3" t="o" /> -<objsur guid="b93df490-660d-4ad1-8398-5837ee34a44b" t="o" /> -<objsur guid="ed98a1d6-1a2b-4e64-b4f8-fe95dd08d26d" t="o" /> -<objsur guid="4d5131cc-fb26-44bc-b503-00eab71123df" t="o" /> -<objsur guid="56f78f5c-f855-44fa-8505-b9c8cbeac37a" t="o" /> -<objsur guid="65a7463a-373c-4d97-b7ba-742b31df5b6b" t="o" /> -<objsur guid="d1556eab-d462-419b-9163-23d1758450ad" t="o" /> -<objsur guid="b0f57ed0-b6f7-4666-8efa-6a393f13017f" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="8b52a9d6-a07e-4ac8-8f84-6eb5ba578d97" t="r" /> -<objsur guid="ed7930df-e7b4-43c9-a11a-b09521276b57" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="68f17f5c-87fb-457c-8249-0266f253ca17" ownerguid="2fc69f71-e9f1-45f9-b88e-bdaf97457fc3"> -<ExampleWords> -<AUni ws="en">Hurry up! Move it! Let's go, let's go! Quick! Faster! Speed it up! Get a move on! Giddy up! (horse)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What do you say to someone when you want him to hurry?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="68f1a77b-3b44-45e5-bc0c-54188b03a277" ownerguid="94fe65b8-1f0e-4c53-bf0e-a85014c0c4a8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="68f22ffa-ea64-42c5-a28c-41d2a53bfc34" ownerguid="92cf5055-f329-4301-a1b8-acf9d02c7e60"> -<Form> -<AUni ws="qvm-x-ach">tagay</AUni> -<AUni ws="qvm-x-acl">tagay</AUni> -<AUni ws="qvm-x-akh">taqay</AUni> -<AUni ws="qvm-x-akl">taqay</AUni> -<AUni ws="qvm-x-ame">taqay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="68f4547e-3572-454f-ac0c-01dd8c526964" ownerguid="8328a243-fc86-4339-9563-c9cbe69d0955"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">nqui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">nqui; nqui; nque</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">nki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">nki; nki; nke</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="eefb29ad-f416-4367-b09c-bb45b5e9cf21" t="r" /> -</Morph> -<Msa> -<objsur guid="0d90ca1d-7b60-41a3-a022-dba460606a1c" t="r" /> -</Msa> -<Sense> -<objsur guid="08cdcf68-e555-46a8-9801-1003a592bece" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="68f6d2c8-8f83-42f8-aa7e-40cf1c067186"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ca:za</AUni> -<AUni ws="qvm-x-acl">ca:za</AUni> -<AUni ws="qvm-x-akh">ca:za</AUni> -<AUni ws="qvm-x-akl">ca:za</AUni> -<AUni ws="qvm-x-ame">ca:za</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+caza</AUni> -<AUni ws="qvm-x-acl">+caza</AUni> -<AUni ws="qvm-x-akh">+caza</AUni> -<AUni ws="qvm-x-akl">+caza</AUni> -<AUni ws="qvm-x-ame">+caza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.900" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2a2a1816-481c-435d-a270-ea9acc2f840b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+caza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4eb20132-666a-41fd-bdd6-d60b3d6d8861" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ea2ffb68-00d4-4cd6-a994-903257c7bd2c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +caza 
\entryTyp root 
\gENG 
\gSPN 
\e +caza 
\c N0 
\ach ca:za 
\akh ca:za 
\acl ca:za 
\akl ca:za 
\ame ca:za</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="68f8b663-bbef-49c9-a264-bbd7c483e2fd" ownerguid="89ad4e41-bf08-4d93-a4f3-f72e8cc62bed"> -<ExampleWords> -<AUni ws="en">be related by marriage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being related by marriage?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="68f92462-9aab-4cf4-b21a-c6c88cf146c3" ownerguid="cb23ee0b-553a-4368-b003-3e6b01c72ef5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">winnow</AUni> -<AUni ws="es">ventilar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dba7abef-71c8-4bf6-ac88-6d438790bc86" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="68fd1ec2-548a-42f2-92f2-edb9d3fba317" ownerguid="cb95189c-8c74-465b-af07-48e08dbf7c39"> -<ExampleWords> -<AUni ws="en">make you feel, stimulate, stir, arouse, raise, touch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to causing someone to feel something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="68ff1c18-e324-48ab-9e77-f067d5682548" ownerguid="06cb2024-5f7b-467c-b32c-ef4c56030ac0"> -<ExampleWords> -<AUni ws="en">chronology, chronicle, record, history</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What is a written record of times and events called?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="6903b844-79be-4e9d-a3c8-1ca2a385bf4f" ownerguid="0eefa07a-e0a3-49e3-aeb4-62f1eafd8e23"> -<Abbreviation> -<AUni ws="en">9.5.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating a person who does something with another person who is the subject of the sentence.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">With, do with someone</AUni> -</Name> -<Questions> -<objsur guid="ff21808c-7bd2-47a0-85d8-c1503de2eeec" t="o" /> -<objsur guid="4965d26a-e785-49e6-bb28-15c1877b120e" t="o" /> -<objsur guid="46d165b4-bee9-4c97-8286-a57f8367ffe9" t="o" /> -<objsur guid="abe3ea41-5894-4103-9f2d-b4a06f36cead" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="196bf7b1-54a1-4a78-8d10-c61585849c63" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="6908727a-dbee-4fbf-baa5-f86dc4ddef71" ownerguid="1bb79229-b368-4a4e-9acd-6ddaf5bbfa65"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="690a2664-eef4-439f-a586-108d1661e097" ownerguid="2d37e83c-b72e-463d-bd58-22d4dc895241"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="690abefc-7e45-443b-bed6-2f0f10ff3179" ownerguid="646e0b34-c5a8-492e-af7f-e7df0d3c38fb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="0c7df65a-fc7a-4d86-b0d9-e3f81f5211a8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="690bc17e-12f3-45b7-a937-b609c88d9891" ownerguid="223e408a-4c34-41c0-821f-20848376c90d"> -<Form> -<AUni ws="qvm-x-ach">mëti</AUni> -<AUni ws="qvm-x-acl">mëti; mëte</AUni> -<AUni ws="qvm-x-akh">mëti</AUni> -<AUni ws="qvm-x-akl">mëti; mëte</AUni> -<AUni ws="qvm-x-ame">mëti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="690bce22-76d3-476d-ba0d-47de4f771820" ownerguid="31d13f5c-fcf7-430b-8746-2b6adac6e871"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="690c651c-0665-42eb-b7da-b637ceecd9b5" ownerguid="b6686c7c-39de-40b5-adee-67fc7dc54374"> -<ExampleWords> -<AUni ws="en">ten, twenty, thirty, forty, fifty, sixty, seventy, eighty, ninety</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) multiples of ten</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="690cf52c-ba30-4d62-a46f-98d20076a2c3" ownerguid="7d8898d6-6296-4d4d-b8dd-2f48c49f9e98"> -<ExampleWords> -<AUni ws="en">high, lofty, upper, alpine, topmost</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is high?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="690e1dff-cbc4-496b-8c66-604f5440ad97" ownerguid="61b2f2c1-a659-4a7d-a616-e5f9dc207afb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.angry</AUni> -<AUni ws="es">enojar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="793aeb9e-e56f-4f3d-a92e-db13cd34c9cb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="6910b634-4d03-4fea-b771-849f2948e5c6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">idio:ma</AUni> -<AUni ws="qvm-x-acl">idio:ma</AUni> -<AUni ws="qvm-x-akh">idio:ma</AUni> -<AUni ws="qvm-x-akl">idio:ma</AUni> -<AUni ws="qvm-x-ame">idio:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+idioma</AUni> -<AUni ws="qvm-x-acl">+idioma</AUni> -<AUni ws="qvm-x-akh">+idioma</AUni> -<AUni ws="qvm-x-akl">+idioma</AUni> -<AUni ws="qvm-x-ame">+idioma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.782" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2f38c1e9-d82f-4c59-9a6c-db9e9cd4d408" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+idioma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a5337f20-0242-4046-8187-7af1c0e18e19" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="921919e4-3023-44b2-85e1-2d3ae9e03577" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +idioma 
\entryTyp root 
\gENG language 
\gSPN idioma 
\e +idioma 
\c N0 
\ach idio:ma 
\akh idio:ma 
\acl idio:ma 
\akl idio:ma 
\ame idio:ma</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="69129c13-6be5-4b9b-a952-4bec37a6abb5" ownerguid="4deb64e2-1dfb-4fc8-8761-6be8107630cd"> -<Form> -<AUni ws="qvm-x-ach">yësu</AUni> -<AUni ws="qvm-x-acl">yësu; yësu; yëso</AUni> -<AUni ws="qvm-x-akh">yësu</AUni> -<AUni ws="qvm-x-akl">yësu; yësu; yëso</AUni> -<AUni ws="qvm-x-ame">yësu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="6912fd97-2452-42b3-b772-458b9bdeffe0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">utucya; utucya:</AUni> -<AUni ws="qvm-x-acl">utucya; utucya:</AUni> -<AUni ws="qvm-x-akh">utukya; utukya:</AUni> -<AUni ws="qvm-x-akl">utukya; utukya:</AUni> -<AUni ws="qvm-x-ame">utukya; utukya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*utukya:</AUni> -<AUni ws="qvm-x-acl">*utukya:</AUni> -<AUni ws="qvm-x-akh">*utukya:</AUni> -<AUni ws="qvm-x-akl">*utukya:</AUni> -<AUni ws="qvm-x-ame">*utukya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.302" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a0c6f973-67a5-4b80-a561-79875a41cc41" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*utukya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5d467cef-1fd8-47ea-928c-92a74a26fb77" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0dddc632-bca4-47da-8a59-31a89f87696e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *utukya: 
\entryTyp root 
\gENG be.startled 
\gSPN ? 
\e *utukya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach utucya foreshortened 
\ach utucya: 
\akh utukya foreshortened 
\akh utukya: 
\acl utucya foreshortened 
\acl utucya: 
\akl utukya foreshortened 
\akl utukya: 
\ame utukya foreshortened 
\ame utukya:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="6913dcd6-8f8d-4581-9ba4-feed8142b48f" ownerguid="535ffc87-3819-4bc0-85c5-5dcf5376bbd9"> -<Form> -<AUni ws="qvm-x-ach">wichpus</AUni> -<AUni ws="qvm-x-acl">wichpus</AUni> -<AUni ws="qvm-x-akh">wichpus</AUni> -<AUni ws="qvm-x-akl">wichpus</AUni> -<AUni ws="qvm-x-ame">wichpus</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="69151cf2-4cd6-423d-bcce-c64a7a8debfa" ownerguid="0b0e7576-68df-4387-ab17-d5abdf53b979"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ashes</AUni> -<AUni ws="es">cenizas</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0f5e31f3-86f4-444c-8e29-cd04eeff670c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="69169006-316d-4447-8104-330b25616aaa" ownerguid="4333f636-d53d-4a89-984c-9a067d877434"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Ayag chiwinnëtapis pampamanmi jichapäcushga.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="69198292-c558-49c9-859b-7469f7d3ee94" ownerguid="7b17e304-9a3f-463f-8216-cd1e1e119e0e"> -<ExampleWords> -<AUni ws="en">times</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate the answer?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="691b561a-dd4f-49c1-a7dd-1c96a6abec04" ownerguid="061749a8-e28a-461c-bf2d-052ab3e157d5"> -<ExampleWords> -<AUni ws="en">space, gap, opening, break, interval, separation, hole</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the area between things?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="691bdba3-c216-4b42-877c-674bbdb517a7" ownerguid="c0f4715e-55c9-4379-ab6f-ad561a5e7151"> -<Abbreviation> -<AUni ws="en">3.2.5.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.103" /> -<DateModified val="2022-9-23 16:55:8.103" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to trusting someone--believing that someone is honest and will not do something bad to you.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>31I Trust, Rely</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Trust</AUni> -</Name> -<Questions> -<objsur guid="fa1d134d-9df0-4892-b155-0b4d18bd0f04" t="o" /> -<objsur guid="26fad68a-741b-412a-b35f-7ca220b4f4ba" t="o" /> -<objsur guid="65ee8bf8-f5ac-4510-8186-20f06d2015d9" t="o" /> -<objsur guid="81cdca5a-dc53-4b1d-8324-4dc64aed00b8" t="o" /> -<objsur guid="22a011f7-7e10-4de3-8433-faf9b5e8a6b5" t="o" /> -<objsur guid="fdcf01cd-fd9d-462a-b1ad-5e609ec8e10e" t="o" /> -<objsur guid="b013e5f8-c084-4b02-92f6-3bf42408600c" t="o" /> -<objsur guid="0e73c4a9-4bc1-4207-acac-d212a163e5ae" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="691d7f43-bb7c-4918-a38a-41c2dd0c6ea7" ownerguid="c32f6536-3f9f-4d6e-90fb-4b375d9d195f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">juti</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">juti; juti; jute</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">juti</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">juti; juti; jute</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">huti</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b72d64aa-b33b-47d9-84d1-186a72461e32" t="r" /> -</Morph> -<Msa> -<objsur guid="04f6a3dd-b5c8-412a-8fc8-7469d9a8aa55" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="691e7d9a-5191-4f78-ae21-b5de1e013a6f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aula</AUni> -<AUni ws="qvm-x-acl">aula</AUni> -<AUni ws="qvm-x-akh">aula</AUni> -<AUni ws="qvm-x-akl">aula</AUni> -<AUni ws="qvm-x-ame">aula</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+aullar.1</AUni> -<AUni ws="qvm-x-acl">+aullar.1</AUni> -<AUni ws="qvm-x-akh">+aullar.1</AUni> -<AUni ws="qvm-x-akl">+aullar.1</AUni> -<AUni ws="qvm-x-ame">+aullar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.880" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d842689f-9696-410e-a976-6d244fc066db" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+aullar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="10eb7cf9-511c-47a3-ad08-af2d437e9052" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="86acaaf0-94b1-4d7b-9321-31f30e03bd3a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +aullar.1 
\entryTyp root 
\gENG howl 
\gSPN aullar 
\e +aullar.1 
\c V1 
\ach aula 
\akh aula 
\acl aula 
\akl aula 
\ame aula</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="69241b1a-f4d8-4408-bb44-e906d5390390" ownerguid="36bf7e87-332f-45d2-a3fd-0c7dd269dad5"> -<Form> -<AUni ws="qvm-x-ach">disponi</AUni> -<AUni ws="qvm-x-acl">disponi; dispone</AUni> -<AUni ws="qvm-x-akh">disponi</AUni> -<AUni ws="qvm-x-akl">disponi; dispone</AUni> -<AUni ws="qvm-x-ame">disponi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6926d7b3-e3b5-432e-99fb-1ec62e3adb3e" ownerguid="196f81d0-6a1a-4cc0-936a-367423ff485c"> -<ExampleWords> -<AUni ws="en">lay a trap, set a snare, dig a pit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to setting a trap?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="692ea630-76c1-40e7-8482-9ce4cd584d42" ownerguid="6b8366b9-b5e8-42b8-991c-c568d4442a81"> -<ExampleWords> -<AUni ws="en">braid, plait, perm, dye, style</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to actions done to the hair?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="693174a2-9473-411a-9dd2-3ef42d58f153" ownerguid="36e8f1df-1798-4ae6-904d-600ca6eb4145"> -<ExampleWords> -<AUni ws="en">get someone out, spring, liberate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to helping someone escape?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="693537bc-0068-462d-95c6-ae472cd08830"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">equi:pu</AUni> -<AUni ws="qvm-x-acl">equi:pu; equi:pu; equi:po</AUni> -<AUni ws="qvm-x-akh">equi:pu</AUni> -<AUni ws="qvm-x-akl">equi:pu; equi:pu; equi:po</AUni> -<AUni ws="qvm-x-ame">equi:pu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+equipo</AUni> -<AUni ws="qvm-x-acl">+equipo</AUni> -<AUni ws="qvm-x-akh">+equipo</AUni> -<AUni ws="qvm-x-akl">+equipo</AUni> -<AUni ws="qvm-x-ame">+equipo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.528" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bf42d721-f16e-4b86-8f7a-713cfab3bf8f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+equipo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="70cc5ef4-371d-4268-a415-0a828f540ccb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="01e275b7-f9c5-431d-9a69-371102b4074b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +equipo 
\entryTyp root 
\gENG team 
\gSPN equipo 
\e +equipo 
\c N0 
\ach equi:pu 
\akh equi:pu 
\acl equi:pu / _# 
\acl equi:pu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl equi:po +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl equi:pu / _# 
\akl equi:pu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl equi:po +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame equi:pu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="693ae820-c8e3-4c95-bd94-d2d0acb3975e" ownerguid="96ca12fb-8af6-4d92-abeb-4962787c31d9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StStyle" guid="693aedeb-1f1a-4f1f-b6cd-4a2a96a1dc37" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="7a194e30-4c8c-4934-83ad-b12ecc47a768" t="r" /> -</BasedOn> -<Context val="14" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Dictionary-Subsubentry</Uni> -</Name> -<Rules> -<Prop firstIndent="0" leadingIndent="33000" spaceBefore="0"></Prop> -</Rules> -<Structure val="0" /> -<Type val="0" /> -<Usage> -<AUni ws="en">Each paragraph of subsubentry information that is added to the entry if there are subsubentries.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="MoStemMsa" guid="693f0029-7235-47f1-91ad-c3a562fe87fc" ownerguid="e14e71db-5663-4e0a-8616-ad6b07e6ecd4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="693fcc3e-46e4-4871-aa56-a4935f15c6c7" ownerguid="bfbfb9b5-363d-4767-a5cb-1b11b348efd6"> -<ExampleWords> -<AUni ws="en">none, not any, no, nothing, not anything, be nil, bugger all</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to no thing?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="69404d44-5a36-4aed-bccf-5249576c6e25"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jalga</AUni> -<AUni ws="qvm-x-acl">jalga</AUni> -<AUni ws="qvm-x-akh">jalqa</AUni> -<AUni ws="qvm-x-akl">jalqa</AUni> -<AUni ws="qvm-x-ame">halqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hallqa</AUni> -<AUni ws="qvm-x-acl">*hallqa</AUni> -<AUni ws="qvm-x-akh">*hallqa</AUni> -<AUni ws="qvm-x-akl">*hallqa</AUni> -<AUni ws="qvm-x-ame">*hallqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.650" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="91be9117-db4c-4412-8ee7-5dc2b6ffd95b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hallqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fb4a4ed0-bc75-4949-93c5-750b47fc001f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="760c1a25-277c-4fd9-a442-707b1d5b8cf6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hallqa 
\entryTyp root 
\gENG alpine.meadow 
\gSPN estancia 
\e *hallqa 
\c N0 
\ach jalga 
\akh jalqa 
\acl jalga 
\akl jalqa 
\ame halqa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="694268d3-d361-4fb2-bf30-4959248b48f9" ownerguid="709b08c2-4066-47f7-8d38-e1838bba27d6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">breeder</AUni> -<AUni ws="es">animal.semental</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9220a21e-e740-4656-8406-c65cda0a1ab3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="69428a6f-342c-4768-998f-eba5e4c71c1e" ownerguid="99e8a6c6-700e-42bf-b4ba-516e36c9c64c"> -<Form> -<AUni ws="qvm-x-ach">león; leon</AUni> -<AUni ws="qvm-x-acl">león; leon</AUni> -<AUni ws="qvm-x-akh">león; leon</AUni> -<AUni ws="qvm-x-akl">león; leon</AUni> -<AUni ws="qvm-x-ame">león; leon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="69455770-fca7-4f41-9e7d-236e8f094ce6" ownerguid="ef6d136e-ac1d-48b9-819d-252485534557"> -<Abbreviation> -<AUni ws="en">4.7.8.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a covenant between two people or groups of people.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Covenant</AUni> -</Name> -<Questions> -<objsur guid="74b59a76-cf81-413b-9083-4b6ae7aaf063" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="694adfad-b9c2-47da-8466-aeabe7c32bd7" ownerguid="70fbd0f8-48ee-4448-8068-542919d850ea"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">until</AUni> -<AUni ws="es">hasta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="589e7311-045c-4973-8e51-9be444956e97" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="694ffc6c-675f-4bcf-be42-876687d0ca96"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">po:lu</AUni> -<AUni ws="qvm-x-acl">po:lu; po:lu; po:lo</AUni> -<AUni ws="qvm-x-akh">po:lu</AUni> -<AUni ws="qvm-x-akl">po:lu; po:lu; po:lo</AUni> -<AUni ws="qvm-x-ame">po:lu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+polo</AUni> -<AUni ws="qvm-x-acl">+polo</AUni> -<AUni ws="qvm-x-akh">+polo</AUni> -<AUni ws="qvm-x-akl">+polo</AUni> -<AUni ws="qvm-x-ame">+polo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.891" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a236ef4f-e870-4094-809a-380a55e9b6e1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+polo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="54cd190b-658f-4814-af59-2f72a102eab6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bf06b732-6e63-41a5-9b64-a82bf0db959d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +polo 
\entryTyp root 
\gENG shirt 
\gSPN polo 
\e +polo 
\c N0 
\ach po:lu 
\akh po:lu 
\acl po:lu / _# 
\acl po:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl po:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl po:lu / _# 
\akl po:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl po:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame po:lu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="694ffcae-df84-4023-9fc1-a10d0f8ff256" ownerguid="f202430b-f713-47a0-bf4d-d30e4bee12cb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">complain</AUni> -<AUni ws="es">murmurar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e9bd6581-4e65-4ae0-8355-931d6bf21956" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="69541573-f845-4e77-91f6-1e3551fc6c82" ownerguid="5b7666bd-c6c1-45e7-aa2e-1799fcb16d97"> -<Abbreviation> -<AUni ws="en">9.7.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.728" /> -<DateModified val="2022-9-23 16:55:8.728" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the name of a place.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>93B Places</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Name of a place</AUni> -</Name> -<OcmCodes> -<Uni>103 Place Names</Uni> -</OcmCodes> -<Questions> -<objsur guid="4a4c2464-9e07-4d84-9bf5-1301a5a7206b" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="ee0585b1-627a-4a71-888d-b5d82619431e" t="o" /> -<objsur guid="85cb1e3c-62ba-4a77-a838-0237707fb0cb" t="o" /> -<objsur guid="b8e66bb4-140c-45b4-89ce-d9a77b9e5d21" t="o" /> -<objsur guid="35a9da32-53ee-44fa-9c65-5a15f88ad283" t="o" /> -<objsur guid="69d366d2-9735-4a1b-b938-7b212932b568" t="o" /> -<objsur guid="09ac3709-0b0e-4046-b6b2-7869d574aa0d" t="o" /> -<objsur guid="d90e71bf-2898-4501-9d09-c518999f83e2" t="o" /> -<objsur guid="a105e31c-1268-4fc2-8655-838d34860ece" t="o" /> -<objsur guid="e8ec3885-c692-4b90-a5b3-4c86da642666" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="6954434e-b184-436e-b418-d9394e3269eb" ownerguid="bbfd32d9-d744-46a2-addd-823f246ed04f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="69573a83-203e-451e-9cde-fb808750d220" ownerguid="242de55d-1982-4099-a98b-a71d991104a8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">trembling</AUni> -<AUni ws="es">palodismo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9ccb9ab6-99e7-43b9-a2a4-381aeb09ee62" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="69573ee5-db0f-4fef-adcb-6a9a0c560266" ownerguid="b8d2fdb9-22ea-4040-8abb-aeeff0399f23"> -<ExampleWords> -<AUni ws="en">killed in action, casualty, casualty of war, civilian casualty, collateral damage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to a person killed in war?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="695acfa7-6bb2-4cff-9724-297db4c0468a"> -<Analyses> -<objsur guid="8824aa7a-25c9-4c58-8bcc-437cc2fd173e" t="o" /> -</Analyses> -<Checksum val="-995008338" /> -<Form> -<AUni ws="qvm-x-akh">cosëcha</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="695b7028-da7a-4be5-8e02-a317b58b6781" ownerguid="2b6f9af7-04ee-4030-a2cd-87d55959caa8"> -<ExampleWords> -<AUni ws="en">get a fright, panic (v), go white as a sheet, nearly jump out of your skin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to feeling suddenly afraid because of something that happens?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="69602af4-f758-4396-aa1e-89f31bc63bff" ownerguid="f30563f9-3a8b-4ca3-a632-77354009248b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="69606148-7a5a-4be0-ade0-386ec676ddfe" ownerguid="4c308c44-f7bb-4116-9c24-0b60f417756a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">receive</AUni> -<AUni ws="es">recibir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5ed183bc-81f8-4f4d-a1e4-436bf9b8fbcf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="69608420-f0bb-4ffc-8b28-66f8c4af8032" ownerguid="112c0dfc-77da-4998-9fcb-6ded490bfd26"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="696665b9-5ade-40fd-980a-0fb147b8fa6f" ownerguid="c707c852-a857-4c40-9ad1-1e396327483a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">saco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="58bbc725-064a-4cc7-a2d8-d9c6d2473230" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="69676f9b-dadc-4bbf-95cf-c68fe278c50b" ownerguid="f2d0fcc5-d521-4181-97e1-ce31ad81fdc5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">paja.delgada</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="95bc97b4-d877-4f2c-9422-3c94bb46c647" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6967f639-1996-402e-884e-b9e987c7e219" ownerguid="d01f1c51-522e-4b35-81b3-00577dbfa3bd"> -<ExampleWords> -<AUni ws="en">clash</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words describe colors that do not look good together?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6969f6b5-4755-4767-ade8-14708f165e05" ownerguid="caf960da-cb19-4d47-b0e6-1c07be37025f"> -<Form> -<AUni ws="qvm-x-ach">tagu</AUni> -<AUni ws="qvm-x-acl">tagu; tago</AUni> -<AUni ws="qvm-x-akh">taqu</AUni> -<AUni ws="qvm-x-akl">taqu; taqo</AUni> -<AUni ws="qvm-x-ame">taqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="696ba84e-5ae8-414d-8bc9-2564a77257ad"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">u:nicu</AUni> -<AUni ws="qvm-x-acl">u:nicu</AUni> -<AUni ws="qvm-x-akh">u:nicu</AUni> -<AUni ws="qvm-x-akl">u:nicu</AUni> -<AUni ws="qvm-x-ame">u:nicu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+único</AUni> -<AUni ws="qvm-x-acl">+único</AUni> -<AUni ws="qvm-x-akh">+único</AUni> -<AUni ws="qvm-x-akl">+único</AUni> -<AUni ws="qvm-x-ame">+único</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.330" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="280877d4-880a-4df1-b171-82090da99aa5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+único</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9d3f2d66-0196-4b7c-b876-c25240149dab" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3738d425-2ccf-49df-9281-86a96b3f0173" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +único 
\entryTyp root 
\gENG 
\gSPN 
\e +único 
\c ONSHEV 
\ach u:nicu 
\akh u:nicu 
\acl u:nicu 
\akl u:nicu 
\ame u:nicu 
\i DAN 6.5 Tsayta tantiyarmi caynog nipäcorgan: <<Manami imatapis paytaga jitapayta camäpacushuntsu. Ünico Diosninta adorashgalanwanmi itsanga tunitsishwan.>></Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="696d0309-7ab0-479c-aafd-d3d79df6caa7" ownerguid="a58ea2af-a2aa-47ee-b94b-3716e9bb76d0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="e0362ccd-f1ef-49c5-9619-859b378dcf77" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="696e1169-6b86-4c9c-a95b-fae12bcd4aa0" ownerguid="cc6f100a-5220-4f53-801c-b1fdcc619608"> -<ExampleWords> -<AUni ws="en">oldest, eldest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe someone who is older than everyone else?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6971b20f-f0e2-4467-b6fe-8b026fd30acc" ownerguid="f053aee4-2685-495f-bec4-8f64065cf855"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">November</AUni> -<AUni ws="es">noviembre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4a6cdb51-d8e2-47a8-9184-57591551965d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="69723fd8-8056-4ef0-9303-46d81140c435" ownerguid="c01bbcef-7d89-4753-bafd-3a7f23648982"> -<ExampleWords> -<AUni ws="en">doctor, physician, general practitioner, the medical profession, family doctor, family practitioner, healer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a person who takes care of the sick?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6972ac50-bbd2-48c7-8a04-1fb6c4439d2d" ownerguid="66fda8c8-a5eb-41f6-a67e-754ac23c542f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="b2572ed5-5ea8-4243-be67-f17da23e8132" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="24ec0727-7912-42e6-9ba1-a70ab6ee72e4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6973e6e0-2aa4-439b-9c92-7676c84d893f" ownerguid="7c096b2c-2bc2-492c-a061-9b64be1981ac"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6975351d-3ebb-4c32-9c49-9e7c41130e45" ownerguid="cb362fc7-b3aa-46f4-b9a8-0f8c97fb16fe"> -<ExampleWords> -<AUni ws="en">crop, produce (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something that is grown?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="697925b7-1ee3-4d15-9cff-788d23d4a4cf" ownerguid="8225de87-35a3-4c7a-b35c-f45b152caebe"> -<ExampleWords> -<AUni ws="en">mean, herald, bode well, bode ill, spell</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something showing that something is going to happen?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="697b9367-4293-43d8-9c67-dbcb33648ee7" ownerguid="99861dcb-c6ca-4e50-a19a-efadbb10c2cf"> -<ExampleWords> -<AUni ws="en">stale, decayed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe food that is old?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="697d7003-0bc9-4b34-a7f8-cc8a57f73abb" ownerguid="542ae4c7-7db5-4c7f-a344-60e247a57c75"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">it.seems</AUni> -<AUni ws="es">me.parece</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="76dad671-7e7b-4678-b86d-3692f1ff56fd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="697e0d75-ad5a-4274-ad50-82cdf653b457" ownerguid="12660b9b-ad1e-4c72-bd96-7c2127a952b5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="3ccd2130-c625-456e-b58e-7513f2081f4a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="697fe19a-329d-4091-a3b3-93da5dfdfb80" ownerguid="8d0a38b4-a86a-4131-adf2-0d041b396c2f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="6981c85a-718c-4ec0-a5cc-0efd5c35e906" ownerguid="92dd22f1-1c76-4735-aa3f-98fc742469ab"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">healthy</AUni> -<AUni ws="es">gordo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e2391443-cfdf-485e-abed-b5b528c4f11c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="6987e513-39a8-40ea-b56f-fd5aabf79cc5" ownerguid="ffdce87f-8f49-4afd-a98f-5a056b832fea"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">eight</AUni> -<AUni ws="es">ocho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e9c62780-0c0a-446b-bfda-f371b8a36458" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="698c92ce-1791-4cb7-b3ae-a885613d34e6"> -<Analyses> -<objsur guid="17272c18-18d4-48d7-a687-57408725336b" t="o" /> -</Analyses> -<Checksum val="1677501462" /> -<Form> -<AUni ws="qvm-x-akh">José</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="698cddd4-6079-4d38-ace2-a15f2b7c74ae" ownerguid="294fa03b-6fed-4d89-ac5e-66c562948895"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">present</AUni> -<AUni ws="es">regalo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="713064f5-212d-4bd5-84c7-6e73638e59e9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="698ec5c6-9a56-4344-92fa-9e6e6b00cf3a" ownerguid="bf9606ec-9a8e-4822-8bfd-d5eebc58c65b"> -<ExampleWords> -<AUni ws="en">pale, dim, weak, poor, bad, soft, low, dull, dusky</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a place where there is little light?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="698f59d0-ba58-4dff-aba5-78ba16ed71eb" ownerguid="4a44ac87-5ad5-44de-8170-9fd88b056010"> -<ExampleWords> -<AUni ws="en">repair, restore, restoration, fix up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to repairing a building?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="698fdfe5-8c0a-477c-a0bb-41481a5ee224" ownerguid="c05e4d92-5154-4cf9-846b-0af3dde4a279"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="69937431-feb1-4b5b-8007-9f59db582602" ownerguid="1ca26512-75f6-4a7a-a7cc-07d08aa799d9"> -<ExampleWords> -<AUni ws="en">admit wrong, confess, acknowledge wrong, take something back (that you said)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to an admission of wrong?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="69965c17-d852-46e3-8a2d-158baba5bb53" ownerguid="eeb617bc-720f-4434-ad8f-6106ca19f99e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="69972a6d-010a-4d78-9f2d-88a1b7129d63" ownerguid="b4f8d2c6-f44f-4bf1-a0b7-5f65328545d3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">na</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">na</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">na</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">na</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">na</Run> -</AStr> -</Form> -<Morph> -<objsur guid="99b46deb-a91d-4222-a9fc-6c1a15fed4be" t="r" /> -</Morph> -<Msa> -<objsur guid="a5b30965-e5c8-452a-9057-ed02c784d19b" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="699732d0-79d8-46c4-8d61-961295dda65c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">dundi; dundi</AUni> -<AUni ws="qvm-x-acl">dundi; dundi; dunde</AUni> -<AUni ws="qvm-x-akh">dundi; dundi</AUni> -<AUni ws="qvm-x-akl">dundi; dundi; dunde</AUni> -<AUni ws="qvm-x-ame">dundi; dundi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+dondi.n</AUni> -<AUni ws="qvm-x-acl">+dondi.n</AUni> -<AUni ws="qvm-x-akh">+dondi.n</AUni> -<AUni ws="qvm-x-akl">+dondi.n</AUni> -<AUni ws="qvm-x-ame">+dondi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.437" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9711a4ae-e529-45e4-be9b-a276d8559ee2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+dondi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="415bda1e-07a0-4554-a5f8-91117eb063ec" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="30b295a7-8ab8-4ddd-a104-80e01526c2c8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +dondi.n 
\entryTyp root 
\gENG sting 
\gSPN pico 
\e +dondi.n 
\c N0 
\mp +FinalI 
\ach dundi / _# 
\ach dundi / ~_# 
\akh dundi / _# 
\akh dundi / ~_# 
\acl dundi / _# 
\acl dundi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl dunde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl dundi / _# 
\akl dundi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl dunde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame dundi / _# 
\ame dundi / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="6998088d-c252-4641-aa5a-be7133287679" ownerguid="520f02c3-e611-4308-a406-8691483dc4a1"> -<Form> -<AUni ws="qvm-x-ach">camali</AUni> -<AUni ws="qvm-x-acl">camali; camale</AUni> -<AUni ws="qvm-x-akh">kamali</AUni> -<AUni ws="qvm-x-akl">kamali; kamale</AUni> -<AUni ws="qvm-x-ame">kamali</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="69982798-07f8-4305-a5a9-8ed903687d17" ownerguid="8be0a228-60ee-409e-a5d8-215f4d21f168"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="699a8ed0-23b7-46f4-8341-5cc861e7b564" ownerguid="e1c40888-f755-4237-a63f-2b1e50e4551b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cloth.belt</AUni> -<AUni ws="es">faja.tejida</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="28be415f-632d-4854-bd45-702fbe39108b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="699b8834-cd48-4bb6-a07f-a076f6c281bd" ownerguid="381f5b16-0dd9-402b-bd55-1fc5f5d3e8e6"> -<Form> -<AUni ws="qvm-x-ach">pizärra</AUni> -<AUni ws="qvm-x-acl">pizärra</AUni> -<AUni ws="qvm-x-akh">pizärra</AUni> -<AUni ws="qvm-x-akl">pizärra</AUni> -<AUni ws="qvm-x-ame">pizärra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="699d9bc8-4407-49b8-95b1-d63d1dfbf403" ownerguid="e6da67fe-1112-4161-a37e-7004e5632e5e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="69a13710-b558-4803-b5cd-99863cc2768a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">valienti; valiente</AUni> -<AUni ws="qvm-x-acl">valienti; valienti; valiente</AUni> -<AUni ws="qvm-x-akh">valienti; valiente</AUni> -<AUni ws="qvm-x-akl">valienti; valienti; valiente</AUni> -<AUni ws="qvm-x-ame">valienti; valiente</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+valiente</AUni> -<AUni ws="qvm-x-acl">+valiente</AUni> -<AUni ws="qvm-x-akh">+valiente</AUni> -<AUni ws="qvm-x-akl">+valiente</AUni> -<AUni ws="qvm-x-ame">+valiente</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.343" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="86cf29f3-fedb-4375-9401-52c866a22ae6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+valiente</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6b9b5768-7dec-4f84-ba9e-dcc4437b53f5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bad7a1ac-c7df-495a-a858-d8657fbb8a0b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +valiente 
\entryTyp root 
\gENG 
\gSPN 
\e +valiente 
\c N0 
\ach valienti / ~_# 
\ach valiente / _# 
\akh valienti / ~_# 
\akh valiente / _# 
\acl valienti / ~_# 
\acl valienti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl valiente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl valienti / ~_# 
\akl valienti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl valiente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame valienti / ~_# 
\ame valiente / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="69a14b96-e6c4-4531-823c-16b3026d15d5" ownerguid="604ab9e6-0ad7-4a0d-b166-5d7150d8e6c9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="69a34042-28dd-4007-b833-570dfb2fbefa" ownerguid="9eb0947d-f902-460a-b8e0-30857e7bb37a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cay</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cay</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kay</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kay</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kay</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a7b299e0-c78a-4279-9168-db242095977e" t="r" /> -</Morph> -<Msa> -<objsur guid="90ff85be-42f6-4a30-a658-5b1780202333" t="r" /> -</Msa> -<Sense> -<objsur guid="fa2ddb0d-7474-4400-9737-62b941034651" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="69a42d9e-cc63-4aa0-b583-1cc51cf4fa06" ownerguid="38bbb33a-90bf-4a2c-a0e5-4bde7e134bd9"> -<ExampleWords> -<AUni ws="en">feel, sense, perceive, notice, detect, distinguish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to sensing something using one of the senses?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="69a44a3a-d60d-40b3-8a28-91d2df8ee40f" ownerguid="330e710d-59ea-44c1-932d-f01134b35715"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="2d88f104-0684-4ed1-884a-d76d39bb3ed7" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="8f196a2c-f9c4-47a7-a0e1-1e5e4787461d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="69a8a200-2804-404f-aabb-6aa240abfb4e" ownerguid="c8185ca6-567a-40ef-939f-ffefdd9a4770"> -<ExampleWords> -<AUni ws="en">be forever, last forever, go on forever, always be there, never fail/end/die/stop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used to indicate that something will continue forever?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="69a9ca98-a970-4195-8050-3ea56b6367a2" ownerguid="35e61ec4-0542-4583-b5da-0aa5e31a35aa"> -<ExampleWords> -<AUni ws="en">start a family</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to having your first baby?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="69ab79c6-a469-4aca-9bab-1f39c2ef6ce2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">riccha</AUni> -<AUni ws="qvm-x-acl">riccha</AUni> -<AUni ws="qvm-x-akh">rikcha</AUni> -<AUni ws="qvm-x-akl">rikcha</AUni> -<AUni ws="qvm-x-ame">rikcha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*riktra.r</AUni> -<AUni ws="qvm-x-acl">*riktra.r</AUni> -<AUni ws="qvm-x-akh">*riktra.r</AUni> -<AUni ws="qvm-x-akl">*riktra.r</AUni> -<AUni ws="qvm-x-ame">*riktra.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.358" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="55111b42-c776-4ed3-838f-62ecff08b7c5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*riktra.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5657e664-8d9d-443d-8cb0-8b5325e05c33" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7fe8dce3-d9d1-4a1b-a630-605110c82ce0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *riktra.r 
\entryTyp root 
\gENG be.awake 
\gSPN ser.despierto 
\e *riktra.r 
\c R0 
\ach riccha 
\akh rikcha 
\acl riccha 
\akl rikcha 
\ame rikcha</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="69abb3c5-8756-4382-8775-65355e35d7e1" ownerguid="57c0b313-73c5-48e3-9dba-263a4a2f76dc"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="69ac8eda-af1a-4321-abc4-686657b969fd" ownerguid="d2379fe0-fa72-42e6-ab52-ecdd06f352a7"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 25.15 Shacya shacyala parlagcunaga contrantapis convenciratsinmi.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="69acad6e-c594-491f-b282-33f65245761c" ownerguid="de94f006-ecc6-4347-b505-28b1f6735f59"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sacrifice</AUni> -<AUni ws="es">sacrificio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9d9be965-d87f-46b7-b779-2846b978a008" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="69ad5136-8881-4f32-b7db-b9e07fc762e8" ownerguid="c4059dba-46be-403f-a555-96e49c3b144f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">armpit</AUni> -<AUni ws="es">sobaco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ee089a00-a6f5-4c59-8fa3-e96a88ed67f5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="69ad591c-0e9e-452c-aef7-4bde3b6c50cc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">junta; junta:</AUni> -<AUni ws="qvm-x-acl">junta; junta:</AUni> -<AUni ws="qvm-x-akh">junta; junta:</AUni> -<AUni ws="qvm-x-akl">junta; junta:</AUni> -<AUni ws="qvm-x-ame">junta; junta:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+juntar.2</AUni> -<AUni ws="qvm-x-acl">+juntar.2</AUni> -<AUni ws="qvm-x-akh">+juntar.2</AUni> -<AUni ws="qvm-x-akl">+juntar.2</AUni> -<AUni ws="qvm-x-ame">+juntar.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.892" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7d39bbcd-be5b-439d-b1a6-7991a05816d6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+juntar.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8a490d3e-7e81-4f52-9258-c177419dd7a0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c7bc8d62-b808-48b6-a089-fe183cc35fa5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +juntar.2 
\entryTyp root 
\gENG gather 
\gSPN juntar 
\e +juntar.2 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach junta foreshortened 
\ach junta: 
\mp +underlong 
\akh junta foreshortened 
\akh junta: 
\acl junta foreshortened 
\acl junta: 
\akl junta foreshortened 
\akl junta: 
\mp +underlong 
\ame junta foreshortened 
\ame junta: 
\i ECC 11.4 Lamar lädupita pukutay juntämuptenqa musyantsi manaraq cosechanantsipaq kashqanta. 
\mcc +juntar.2 / ~_ BEN2</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="69af1fc6-5463-4da5-8e00-d4797f703306" ownerguid="f0d88b43-6bb2-443f-928c-2c24e7e603a9"> -<Form> -<AUni ws="qvm-x-ach">wayta</AUni> -<AUni ws="qvm-x-acl">wayta</AUni> -<AUni ws="qvm-x-akh">wayta</AUni> -<AUni ws="qvm-x-akl">wayta</AUni> -<AUni ws="qvm-x-ame">wayta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="69b0094a-af4b-454b-9cf3-2f1b81ec501f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">muca</AUni> -<AUni ws="qvm-x-acl">muca</AUni> -<AUni ws="qvm-x-akh">muka</AUni> -<AUni ws="qvm-x-akl">muka</AUni> -<AUni ws="qvm-x-ame">muka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*muka.n</AUni> -<AUni ws="qvm-x-acl">*muka.n</AUni> -<AUni ws="qvm-x-akh">*muka.n</AUni> -<AUni ws="qvm-x-akl">*muka.n</AUni> -<AUni ws="qvm-x-ame">*muka.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.487" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7a00fc16-7464-464e-ae30-82cacb37df72" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*muka.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7f26b39c-514c-40b1-8f1c-beafdb3d59fd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c3ede52a-9445-4903-95d6-6ff458ea58f1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *muka.n 
\entryTyp root 
\gENG chaff 
\gSPN grancia 
\e *muka.n 
\c N0 
\ach muca 
\akh muka 
\acl muca 
\akl muka 
\ame muka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="69b19738-1f89-4839-ab20-6054675f394d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shishu</AUni> -<AUni ws="qvm-x-acl">shishu; shishu; shisho</AUni> -<AUni ws="qvm-x-akh">shishu</AUni> -<AUni ws="qvm-x-akl">shishu; shishu; shisho</AUni> -<AUni ws="qvm-x-ame">shishu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shishu</AUni> -<AUni ws="qvm-x-acl">*shishu</AUni> -<AUni ws="qvm-x-akh">*shishu</AUni> -<AUni ws="qvm-x-akl">*shishu</AUni> -<AUni ws="qvm-x-ame">*shishu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.612" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="47a1d7dd-db5d-4074-8e4f-36b5d7ce0ae4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shishu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0f181615-b802-4ef4-887e-23b00a1a9169" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="318fcd9a-e32d-426d-a970-82e76c1de089" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shishu 
\entryTyp root 
\gENG 
\gSPN 
\e *shishu 
\c N0 
\ach shishu 
\akh shishu 
\acl shishu / _# 
\acl shishu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shisho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shishu / _# 
\akl shishu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shisho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shishu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="69b43685-e475-487b-8324-f666f6ff2c76"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tiya; tíía</AUni> -<AUni ws="qvm-x-acl">tiya; tíía</AUni> -<AUni ws="qvm-x-akh">tiya; tíía</AUni> -<AUni ws="qvm-x-akl">tiya; tíía</AUni> -<AUni ws="qvm-x-ame">tiya; tíía</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tía</AUni> -<AUni ws="qvm-x-acl">+tía</AUni> -<AUni ws="qvm-x-akh">+tía</AUni> -<AUni ws="qvm-x-akl">+tía</AUni> -<AUni ws="qvm-x-ame">+tía</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.936" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b7f996d9-47d7-41e8-abb1-f702c59dc9de" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tía</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2d830e7e-9ddd-4c55-8e82-c1cb78b96d2e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="72b68e20-1bcd-4d9f-a719-d446ff3845af" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tía 
\entryTyp root 
\gENG aunt 
\gSPN tía 
\e +tía 
\c N0 
\ach tiya / ~_# 
\ach tíía / _# 
\akh tiya / ~_# 
\akh tíía / _# 
\acl tiya / ~_# 
\acl tíía / _# 
\akl tiya / ~_# 
\akl tíía / _# 
\ame tiya / ~_# 
\ame tíía / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="69b5664c-48f9-4965-b08a-9a90a52ceb7e" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<ExampleWords> -<AUni ws="en">footprint</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(18) What words refer to a mark on the ground left by a person's foot?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="69b81902-777b-4cfc-872a-f6c7b714e6d2" ownerguid="ab8f12fb-57b0-4d61-8ae0-50d7cbc412df"> -<ExampleWords> -<AUni ws="en">snow (n), sleet, sleety, hail, hailstorm, snowstorm, ice storm, blizzard, snow flurry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to different kinds of snow?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="69b9bba6-5cf2-4b2a-b7d6-1c7ba7887b7e" ownerguid="59a16c9d-9192-494b-8996-26d508ede738"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="69badfdc-8eb3-4645-9b06-959ee3ca5487" ownerguid="5e525daa-c389-4e5a-a584-ecc8b7d621d3" /> -<rt class="MoStemMsa" guid="69bbe4cc-01df-4a0d-b779-5eee93ff4358" ownerguid="b17e6e3e-90f4-4b02-81b7-fd472be8c9bd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="69c031e3-024d-4201-a0a5-2ef4003f3e80"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">anula</AUni> -<AUni ws="qvm-x-acl">anula</AUni> -<AUni ws="qvm-x-akh">anula</AUni> -<AUni ws="qvm-x-akl">anula</AUni> -<AUni ws="qvm-x-ame">anula</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+anular</AUni> -<AUni ws="qvm-x-acl">+anular</AUni> -<AUni ws="qvm-x-akh">+anular</AUni> -<AUni ws="qvm-x-akl">+anular</AUni> -<AUni ws="qvm-x-ame">+anular</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.798" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="554563df-4409-4e8d-b668-1213e2234a35" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+anular</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9d2379c4-fbd2-4f66-a7df-13e7ac5379ac" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5dcd53ee-246c-447a-85b7-c6cce06b15aa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +anular 
\entryTyp root 
\gENG 
\gSPN 
\e +anular 
\c V1 
\ach anula 
\akh anula 
\acl anula 
\akl anula 
\ame anula</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="69c79055-f6d9-4fc2-8f48-b82929ba5452" ownerguid="196f81d0-6a1a-4cc0-936a-367423ff485c"> -<ExampleWords> -<AUni ws="en">catch, trap, snare</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to catching something in a trap?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="69cb0ddc-6bcb-4475-8ef4-180c764b849e" ownerguid="198436ae-c3c6-4f3c-8fe0-ea10c867f1c6"> -<ExampleWords> -<AUni ws="en">sod, hay, alfalfa, mow, haystack, bale</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to growing grass?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="69d003a7-cff5-41c2-be5a-771139f3ac1c" ownerguid="a6e5baf2-4823-4627-a09f-4c503514006a"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="69d039e6-f669-4d54-8b67-89b19ff0a19c" ownerguid="d80360f9-7319-40a7-a2bc-fd8718711ba4"> -<Abbreviation> -<AUni ws="en">8.4.5.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.648" /> -<DateModified val="2022-9-23 16:55:8.648" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that something happened during some time period, or that something happened while something else was happening.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>67G Duration of Time with Reference to Some Unit of Time: During, In, While, Throughout</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">During</AUni> -</Name> -<Questions> -<objsur guid="414c2b5b-7a33-4056-becf-ff42afb44ad5" t="o" /> -<objsur guid="7ff10013-0422-4abc-a56f-10b01ec9e545" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="69d0a37d-f5b3-48a5-9486-5654d37b030b" ownerguid="8080c7ed-e69a-4a8a-bd8d-bf3447b13630"> -<Abbreviation> -<AUni ws="en">6.2.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.428" /> -<DateModified val="2022-9-23 16:55:8.428" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to milling grain.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>7G Miscellaneous Constructions</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Mill grain</AUni> -</Name> -<Questions> -<objsur guid="7c470510-dd3b-4167-a1bc-c249b285eed7" t="o" /> -<objsur guid="2624df91-cf04-4aa9-b841-520543c912fb" t="o" /> -<objsur guid="2be7d8cb-9425-427a-9d38-ae8292790b99" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="69d1826f-79e5-4aa8-8a8a-07e97561e879" ownerguid="20a2e768-ef72-4393-8f4c-96540ff15891"> -<Form> -<AUni ws="qvm-x-ach">pusag</AUni> -<AUni ws="qvm-x-acl">pusag</AUni> -<AUni ws="qvm-x-akh">pusaq</AUni> -<AUni ws="qvm-x-akl">pusaq</AUni> -<AUni ws="qvm-x-ame">pusaq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="69d366d2-9735-4a1b-b938-7b212932b568" ownerguid="69541573-f845-4e77-91f6-1e3551fc6c82"> -<Abbreviation> -<AUni ws="en">9.7.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.731" /> -<DateModified val="2022-9-23 16:55:8.731" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the proper names of the heavenly bodies.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Names of heavenly bodies</AUni> -</Name> -<Questions> -<objsur guid="17dcc882-6d59-42c2-9f9e-e56e22dacd2b" t="o" /> -<objsur guid="6ca791f4-b3da-4bbc-a77d-5448b0b2ba17" t="o" /> -<objsur guid="b39d0146-515e-4047-bbbe-c7bbc443a5ea" t="o" /> -<objsur guid="486d76f9-8e09-4962-9a8a-fb3a7e0731ef" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="69d62ac4-f57f-4904-a8ba-a8f6b59aa31a" ownerguid="1bd42665-0610-4442-8d8d-7c666fee3a6d"> -<ExampleWords> -<AUni ws="en">bright, pale</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe the brightness of the moon?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="69da6101-b9e3-42c5-92ff-fe6091c9f833"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wanca</AUni> -<AUni ws="qvm-x-acl">wanca</AUni> -<AUni ws="qvm-x-akh">wanka</AUni> -<AUni ws="qvm-x-akl">wanka</AUni> -<AUni ws="qvm-x-ame">wanka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wanka</AUni> -<AUni ws="qvm-x-acl">*wanka</AUni> -<AUni ws="qvm-x-akh">*wanka</AUni> -<AUni ws="qvm-x-akl">*wanka</AUni> -<AUni ws="qvm-x-ame">*wanka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.475" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="75c541d5-345a-4cc4-800a-78da322c9e3e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wanka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a3843af8-0a6b-4a00-bb36-c78fb72ea3af" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3216ae81-7328-452b-8f7e-7240ab0e8246" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wanka 
\entryTyp root 
\gENG pointed.rock 
\gSPN piedra 
\e *wanka 
\c N0 
\ach wanca 
\akh wanka 
\acl wanca 
\akl wanka 
\ame wanka</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="69dcd694-149a-4d7b-b2e1-94e3adb2a856" ownerguid="5ef2c0c2-bdb5-4671-820b-d086076ca689" /> -<rt class="CmDomainQ" guid="69dcf4b6-4c61-4669-8d9d-a28d1492889f" ownerguid="85188748-1919-4210-a9e9-91171d9d6454"> -<ExampleWords> -<AUni ws="en">fish, water animal, sea creature</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to animals that live in the water?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="69df6ed0-bcab-45f3-b39c-46b89f031add" ownerguid="e45b8bac-9623-4f84-a113-9dec13a8db64"> -<ExampleWords> -<AUni ws="en">get off the subject, digress, get sidetracked, stray from, ramble, lose the thread, where was I?</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to starting to talk about something else instead of what you are supposed to be talking about?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="69e2e8d4-cbb2-4d74-b04f-0dd48994eae9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ashi</AUni> -<AUni ws="qvm-x-acl">ashi; ashi; ashe</AUni> -<AUni ws="qvm-x-akh">ashi</AUni> -<AUni ws="qvm-x-akl">ashi; ashi; ashe</AUni> -<AUni ws="qvm-x-ame">ashi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ashi.r</AUni> -<AUni ws="qvm-x-acl">*ashi.r</AUni> -<AUni ws="qvm-x-akh">*ashi.r</AUni> -<AUni ws="qvm-x-akl">*ashi.r</AUni> -<AUni ws="qvm-x-ame">*ashi.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.840" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="02ba4118-328c-4f2f-b35c-94ed49fc512d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ashi.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b01aefab-b2c4-48ef-9cc4-d1cddfcd4c2a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ff5edd31-5d75-47cf-97de-7bca50eb11e1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ashi.r 
\entryTyp root 
\gENG search 
\gSPN buscar 
\e *ashi.r 
\c R0 
\mp +FinalI 
\ach ashi 
\akh ashi 
\acl ashi / _# 
\acl ashi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ashe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ashi / _# 
\akl ashi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ashe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ashi 
\i OBA 1.6 Ali alinnin cagcunataga pacaraycätsiptiquipis ashi ashircurmi apacongapag.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="69f513e8-6d98-4d7f-a734-b283ce945bc6" ownerguid="a9274aef-d301-40d6-a5fd-b5ff5878e0b4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">junag</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">junag</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">junaq</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">junaq</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">hunaq</Run> -</AStr> -</Form> -<Morph> -<objsur guid="c52a56a5-e19d-430e-8ebc-ea403d8bfc03" t="r" /> -</Morph> -<Msa> -<objsur guid="2a41474f-1dff-4f68-a787-65d99d7936a2" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="69f520c6-ba5d-4da1-8bf8-8cb5bc070398" ownerguid="cd5cb831-79c6-4f0f-8a5c-30a070a183ff"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fall</AUni> -<AUni ws="es">caer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7a45bbd3-d191-4a1d-a34c-df4b7c3c18eb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="69f61779-9849-476f-830e-51fc0c69cba9" ownerguid="3baa9487-8ce5-4a20-bf39-eca59eea5dc9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="69ff793a-50f1-445c-9add-f5202e5f703b" ownerguid="598349be-08f2-40ab-9a47-ba0ce2e95f1f"> -<Form> -<AUni ws="qvm-x-ach">uchcu</AUni> -<AUni ws="qvm-x-acl">uchcu; uchcu; uchco</AUni> -<AUni ws="qvm-x-akh">uchku</AUni> -<AUni ws="qvm-x-akl">uchku; uchku; uchko</AUni> -<AUni ws="qvm-x-ame">uchku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6a024e09-9189-456f-9b0a-a929eccb4a84" ownerguid="06ac577a-4d61-4898-ac9d-e3f18b7504af"> -<ExampleWords> -<AUni ws="en">save, save someone's life, rescue (v), come to someone's rescue, mount a rescue, release, come to the aid of, preserve life, cover, defend, deliver, ensure someone's safety, extricate, free, guard, harbor, hide, insurance, insure, keep, preserve, protect, ransom, recover, retrieve, safeguard, safekeeping, safety, salvage, screen, secure someone's safety, grant asylum, shelter, shield, spare, pick up (a survivor), get someone out of, bail out, throw someone a lifeline, grant safe conduct</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to saving someone from trouble?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6a02db82-bffd-4180-8160-2100f7add23d" ownerguid="56d52d54-9da9-4e9f-a6cd-9e3675ae2880"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="6a080a7b-61e0-44ec-9bb0-67756f47f0de" ownerguid="0c5eff0b-4158-4315-8bb0-98192b7f9bd8"> -<Form> -<AUni ws="qvm-x-ach">licu</AUni> -<AUni ws="qvm-x-acl">licu; licu; lico</AUni> -<AUni ws="qvm-x-akh">liku</AUni> -<AUni ws="qvm-x-akl">liku; liku; liko</AUni> -<AUni ws="qvm-x-ame">liku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="6a0a8f84-0d80-4214-9c65-f1fe2cb9013d" ownerguid="88ba5a74-7153-46af-adec-a015ca9edc8c"> -<Form> -<AUni ws="qvm-x-ach">jaushi</AUni> -<AUni ws="qvm-x-acl">jaushi; jaushi; jaushe</AUni> -<AUni ws="qvm-x-akh">jawshi</AUni> -<AUni ws="qvm-x-akl">jawshi; jawshi; jawshe</AUni> -<AUni ws="qvm-x-ame">hawshi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6a0b3f3f-f7f1-4e04-b9a7-09de7ffb36df" ownerguid="9ec62ffe-69be-4b9b-944c-29a0f4f133db"> -<ExampleWords> -<AUni ws="en">have an accident, be involved in an accident, crash</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to having an accident?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6a0d81eb-93c1-406d-8b29-04f710ef5eed"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yupay</AUni> -<AUni ws="qvm-x-acl">yupay</AUni> -<AUni ws="qvm-x-akh">yupay</AUni> -<AUni ws="qvm-x-akl">yupay</AUni> -<AUni ws="qvm-x-ame">yupay</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.578" /> -<DateModified val="2022-10-16 15:27:47.114" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0601bee1-19ac-4ec2-82a1-31fac4cc3ccf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">SIM3</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="845afc45-963c-49a0-ac56-937fd0c2349e" t="o" /> -<objsur guid="e6ef0b6b-7228-4d8a-807d-1c0bb88cc1e7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0178a520-8d2a-4f17-861f-253cf8e0f9e7" t="o" /> -<objsur guid="274b1f42-bcdf-4d28-a509-3eccf4fa6b56" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx SIM3 
\entryTyp suffix 
\gENG SIM3 
\gSPN SIM3 
\e SIM3 
\c N0/N0 R0/R0 
\o 220 
\mp NeverChanged 
\ach yupay 
\akh yupay 
\acl yupay 
\akl yupay 
\ame yupay 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="6a0e3f61-b144-472b-b606-c4787d32b16f" ownerguid="1ec2677e-e1d1-46bf-bb5c-03a58b5e96b5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">maíz.pelado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b23abbad-ecf7-48cd-805e-0e5bb2edbfc9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="6a0efdb4-785f-45d1-94d1-1da42723b28f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">noveda:</AUni> -<AUni ws="qvm-x-acl">noveda:</AUni> -<AUni ws="qvm-x-akh">noveda:</AUni> -<AUni ws="qvm-x-akl">noveda:</AUni> -<AUni ws="qvm-x-ame">noveda:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+novedad</AUni> -<AUni ws="qvm-x-acl">+novedad</AUni> -<AUni ws="qvm-x-akh">+novedad</AUni> -<AUni ws="qvm-x-akl">+novedad</AUni> -<AUni ws="qvm-x-ame">+novedad</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.568" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="38a26e71-a048-488f-898d-0a80e11306da" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+novedad</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fbcef679-9021-4530-9797-1c6d2d92d0cd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e6e95295-d2a8-4ab3-a84d-dbf2a967d257" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +novedad 
\entryTyp root 
\gENG novelty 
\gSPN novedad 
\e +novedad 
\c N0 
\mp NeverForeshortened 
\ach noveda: 
\akh noveda: 
\acl noveda: 
\akl noveda: 
\ame noveda: 
\mp +FinalC 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="6a1042a9-6c0f-4823-bfa1-6d72d140d836"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uma</AUni> -<AUni ws="qvm-x-acl">uma</AUni> -<AUni ws="qvm-x-akh">uma</AUni> -<AUni ws="qvm-x-akl">uma</AUni> -<AUni ws="qvm-x-ame">uma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uma.v</AUni> -<AUni ws="qvm-x-acl">*uma.v</AUni> -<AUni ws="qvm-x-akh">*uma.v</AUni> -<AUni ws="qvm-x-akl">*uma.v</AUni> -<AUni ws="qvm-x-ame">*uma.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.220" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="71fd7787-44d5-4f95-97c2-27ebea0bb85f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uma.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="60a61057-6b52-495d-a66c-5b8eb767ecb2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4d47c4ee-eeeb-4c22-a457-61c404052923" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uma.v 
\entryTyp root 
\gENG carry.on.head 
\gSPN llevar 
\e *uma.v 
\c V1 
\ach uma 
\akh uma 
\acl uma 
\akl uma 
\ame uma 
\mcc *uma.v / ~_ 3</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6a11c415-f7f8-4c97-a915-0bbe78c4761c" ownerguid="43cb3488-711b-4d9d-9d0e-03d0c1f6eb8b"> -<ExampleWords> -<AUni ws="en">shame (someone), abash, discredit, disgrace, dishonor, humiliate, reproach, bring shame on, sully, tarnish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to causing someone to feel ashamed?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6a128eb5-8757-4bbf-a4dc-34739dff2695" ownerguid="cd8b2a8b-687b-42e9-91e7-cfb8812b64ee"> -<ExampleWords> -<AUni ws="en">trip someone up, catch someone out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to causing someone to make a mistake?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6a13c52a-b850-4a7b-b96e-e433ae3d7f86" ownerguid="b608174e-b249-42d5-bcbe-af80eca90ea1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">make.foundation</AUni> -<AUni ws="es">hacer.cimiento</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6c246f41-4e36-484f-9c43-137a30852e3e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6a13cee1-c6b6-4211-acb8-4f8f117192b8" ownerguid="93b8bd61-137a-4ebc-b12f-52fa5d2b3ea4"> -<ExampleWords> -<AUni ws="en">steady wind, trade wind, monsoon winds</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a steady wind?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6a14394b-49a2-467f-8513-cc4adb1b74c6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yaga</AUni> -<AUni ws="qvm-x-acl">yaga</AUni> -<AUni ws="qvm-x-akh">yaqa</AUni> -<AUni ws="qvm-x-akl">yaqa</AUni> -<AUni ws="qvm-x-ame">yaqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yaqa.n</AUni> -<AUni ws="qvm-x-acl">*yaqa.n</AUni> -<AUni ws="qvm-x-akh">*yaqa.n</AUni> -<AUni ws="qvm-x-akl">*yaqa.n</AUni> -<AUni ws="qvm-x-ame">*yaqa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.749" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b41f07f8-dabe-4f51-9b9e-5be25f11168b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yaqa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0fc1e85b-3e7a-4e48-bf1b-02b1f21d64ad" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2634878b-1a46-4a48-9d37-3a50d6bb4fbf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yaqa.n 
\entryTyp root 
\gENG bad.man 
\gSPN hombre.fio 
\e *yaqa.n 
\c N0 
\ach yaga 
\akh yaqa 
\acl yaga 
\akl yaqa 
\ame yaqa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6a18798b-5b50-481a-8068-2f44b260f783" ownerguid="bc96b3e3-6185-4925-b79e-8f0f9555bfb7"> -<ExampleWords> -<AUni ws="en">language, tongue, speech, lingo</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a language?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6a19c088-7fc7-47dd-a7a9-c8191ad99d45"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tag</AUni> -<AUni ws="qvm-x-acl">tag</AUni> -<AUni ws="qvm-x-akh">taq</AUni> -<AUni ws="qvm-x-akl">taq</AUni> -<AUni ws="qvm-x-ame">taq</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.508" /> -<DateModified val="2022-10-15 16:12:51.912" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a0a53b4e-09af-43aa-8dbe-9775bc1197e5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">EMPH1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1ce6db96-fb29-453a-99b2-6ded4a9072ee" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7c20339c-deee-42dd-a747-5159b947eb68" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx EMPH1 
\entryTyp suffix 
\gENG EMPH1 
\gSPN ENF1 
\e EMPH1 
\c N0/N0 V0/V0 ONSHEV/ONSHEV R0/R0 
\o 220 
\mp +FinalC 
\ach tag 
\akh taq 
\acl tag 
\akl taq 
\ame taq 
\mcc EMPH1 / *pi: ...~_ 
\mcc EMPH1 / *kanan.1 _ / *ima.v ... _ / *waray ... _ 
\i Cuidädu pelyar imartag aywaycanquiman. 
\mcc EMPH1 / JUST 3P ~_ 
\mcc EMPH1 / 3P.V ~_</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="6a1ab751-e3cc-4f11-ad1b-d8125f904b04" ownerguid="d6aa7ce3-2aba-4f1d-b7e7-2f960d2a7e4c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="6a1bd23e-c5da-46df-a77c-8ff31f7f28ff" ownerguid="76ad9048-8462-46f3-9de2-61b1a32bc35f"> -<Form> -<AUni ws="qvm-x-ach">alau</AUni> -<AUni ws="qvm-x-acl">alau</AUni> -<AUni ws="qvm-x-akh">alaw</AUni> -<AUni ws="qvm-x-akl">alaw</AUni> -<AUni ws="qvm-x-ame">alaw</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="6a1c2ce5-bb21-4cb6-85f3-fa13f96131a4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gaucha</AUni> -<AUni ws="qvm-x-acl">gaucha</AUni> -<AUni ws="qvm-x-akh">qawcha</AUni> -<AUni ws="qvm-x-akl">qawcha</AUni> -<AUni ws="qvm-x-ame">qawcha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qawcha</AUni> -<AUni ws="qvm-x-acl">*qawcha</AUni> -<AUni ws="qvm-x-akh">*qawcha</AUni> -<AUni ws="qvm-x-akl">*qawcha</AUni> -<AUni ws="qvm-x-ame">*qawcha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.155" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fe78279f-cc9d-421a-ad20-b4bb03cce9b8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qawcha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9439cfe8-62b3-4633-8da8-4a4b46911aa1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ffb2487d-dc85-4912-b005-ead6faf74e53" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qawcha 
\entryTyp root 
\gENG 
\gSPN 
\e *qawcha 
\c N0 
\ach gaucha 
\akh qawcha 
\acl gaucha 
\akl qawcha 
\ame qawcha</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="6a1d46ab-1047-4b00-a46e-fb9542286960" ownerguid="089e5530-5add-47ed-9ac8-58cfa08e0536"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="6a1d6516-4906-43d3-82f4-4de5f4566ac0"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">churaptin</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="6a1e1f6d-2de6-45cb-8cdb-cdd629b1588a" ownerguid="8ce2aa75-f18e-41c8-b8ed-753c5e71f60e"> -<Form> -<AUni ws="qvm-x-ach">upacshu</AUni> -<AUni ws="qvm-x-acl">upacshu; upacsho</AUni> -<AUni ws="qvm-x-akh">upakshu</AUni> -<AUni ws="qvm-x-akl">upakshu; upaksho</AUni> -<AUni ws="qvm-x-ame">upakshu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="6a1eeda6-583d-493d-bb18-61f5a5ada873" ownerguid="4d3a794a-7043-4afc-a89e-904971076668"> -<Form> -<AUni ws="qvm-x-ach">rupa</AUni> -<AUni ws="qvm-x-acl">rupa</AUni> -<AUni ws="qvm-x-akh">rupa</AUni> -<AUni ws="qvm-x-akl">rupa</AUni> -<AUni ws="qvm-x-ame">rupa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6a1f92e3-5b69-410c-8a90-24e24ded3353" ownerguid="2edd491f-b480-41a0-94aa-92467ade8de3"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="6a22fefa-b184-4af4-97ee-fa0699f9e8fc" ownerguid="f211de02-1d76-4edd-b61a-d6b65f027782"> -<Form> -<AUni ws="qvm-x-ach">ticwa</AUni> -<AUni ws="qvm-x-acl">ticwa</AUni> -<AUni ws="qvm-x-akh">tikwa</AUni> -<AUni ws="qvm-x-akl">tikwa</AUni> -<AUni ws="qvm-x-ame">tikwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="6a23a757-18ae-47dc-b62b-6f29edacf38b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">achcu</AUni> -<AUni ws="qvm-x-acl">achcu; achco</AUni> -<AUni ws="qvm-x-akh">achku</AUni> -<AUni ws="qvm-x-akl">achku; achko</AUni> -<AUni ws="qvm-x-ame">achku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*atrku.v1</AUni> -<AUni ws="qvm-x-acl">*atrku.v1</AUni> -<AUni ws="qvm-x-akh">*atrku.v1</AUni> -<AUni ws="qvm-x-akl">*atrku.v1</AUni> -<AUni ws="qvm-x-ame">*atrku.v1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.870" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c7900c78-6f53-4bfc-8a15-09076a30a14a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*atrku.v1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2158eecf-90e9-47c3-b69a-bf0a456506f3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6a9f419b-ef85-49bc-bbcc-b87f7ada2f18" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *atrku.v1 
\entryTyp root 
\gENG scratch 
\gSPN rascar 
\e *atrku.v1 
\c V1 
\ach achcu 
\akh achku 
\acl achcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl achco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl achku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl achko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame achku</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="6a26bb4b-b8e6-42be-a55b-b5a53700c129" ownerguid="5ecff316-8cf6-450b-b95b-03dc2b801007"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6a270233-1867-4007-bfdf-85dba39b0d5f" ownerguid="6fbe39fb-a4cb-4fcf-830b-8875fd4324e0"> -<ExampleWords> -<AUni ws="en">bully</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to someone who forces people to do things?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6a2aa9ee-79fa-40f0-9a51-8bb0b1d66712" ownerguid="b0e5042d-1ade-4fb1-a6fd-9a165f5c4763"> -<ExampleWords> -<AUni ws="en">kidnapper, abductor, snatcher</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to someone who kidnaps?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6a2b6f6e-92b5-4114-ad32-ffc62046ffd8" ownerguid="b8d2fdb9-22ea-4040-8abb-aeeff0399f23"> -<ExampleWords> -<AUni ws="en">murderer, killer, assassin, hitman, slayer, executioner, hangman, liquidator, murderess, slaughterer, slayer, terrorist, strangler</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to someone who kills another person?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6a2e6ac1-e847-40c1-956c-551d3b558dd0" ownerguid="9a95e6e0-f61a-49c9-b88b-2eae15790df8"> -<Form> -<AUni ws="qvm-x-ach">naga</AUni> -<AUni ws="qvm-x-acl">naga</AUni> -<AUni ws="qvm-x-akh">naqa</AUni> -<AUni ws="qvm-x-akl">naqa</AUni> -<AUni ws="qvm-x-ame">naqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="6a3588bf-efea-4f1d-a307-a76c1d40b3c3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chawa; chawa:</AUni> -<AUni ws="qvm-x-acl">chawa; chawa:</AUni> -<AUni ws="qvm-x-akh">chawa; chawa:</AUni> -<AUni ws="qvm-x-akl">chawa; chawa:</AUni> -<AUni ws="qvm-x-ame">chawa; chawa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trawa:</AUni> -<AUni ws="qvm-x-acl">*trawa:</AUni> -<AUni ws="qvm-x-akh">*trawa:</AUni> -<AUni ws="qvm-x-akl">*trawa:</AUni> -<AUni ws="qvm-x-ame">*trawa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.780" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a859e4d3-fc2f-434c-84d5-faf37aa2b26d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trawa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="524176db-62d6-456c-bafd-acee141d2576" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="83d68f4a-150c-4c1d-8b5a-db721b8b4b80" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trawa: 
\entryTyp root 
\gENG calm 
\gSPN calmar 
\e *trawa: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach chawa foreshortened 
\ach chawa: 
\akh chawa foreshortened 
\akh chawa: 
\acl chawa foreshortened 
\acl chawa: 
\akl chawa foreshortened 
\akl chawa: 
\ame chawa foreshortened 
\ame chawa:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6a372894-57a3-4aa2-84a1-6543c955fec7" ownerguid="1c3c8af0-56b9-4617-862e-21f39b388606"> -<ExampleWords> -<AUni ws="en">death toll, fatalities, loss of life</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to the number of people who die from the same cause?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6a39a61b-ec4d-452b-bf97-f613fb10dc4a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">emplastu</AUni> -<AUni ws="qvm-x-acl">emplastu; emplasto</AUni> -<AUni ws="qvm-x-akh">emplastu</AUni> -<AUni ws="qvm-x-akl">emplastu; emplasto</AUni> -<AUni ws="qvm-x-ame">emplastu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+emplasto.v</AUni> -<AUni ws="qvm-x-acl">+emplasto.v</AUni> -<AUni ws="qvm-x-akh">+emplasto.v</AUni> -<AUni ws="qvm-x-akl">+emplasto.v</AUni> -<AUni ws="qvm-x-ame">+emplasto.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.457" /> -<DateModified val="2022-10-10 21:19:47.699" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="98af7419-f31c-4834-a5b4-8a90467da07b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+emplasto.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a023b8e6-41d0-4d86-99cc-94428a5ccaa0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3cec966e-57e9-446e-9521-44649340e9fc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +emplasto.v 
\entryTyp root 
\gENG plaster 
\gSPN 
\e +emplasto.v 
\c V1 
\ach emplastu 
\akh emplastu 
\acl emplastu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl emplasto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl emplastu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl emplasto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame emplastu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="6a3b7672-4c74-4c6f-8a10-d818481ea06c" ownerguid="2c071d8c-555b-40f8-b225-e03adcd13b58"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">break.in</AUni> -<AUni ws="es">amansar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="70e80a7c-53ef-4dc3-942c-4ddb4bd933f6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoInflAffMsa" guid="6a3c64a4-aa9f-4fcb-93ea-93a8b6c7edcc" ownerguid="5dfb5545-62ab-4401-a48a-70d7a8cfb3c9"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="fda4c591-1349-4f9e-ab87-905ae2aa25e1" t="r" /> -</Slots> -</rt> -<rt class="CmDomainQ" guid="6a3d52cb-51f9-4635-8312-d3ca15fcede7" ownerguid="ac4a936e-6c05-4e73-8d40-dfe4223b47fa"> -<ExampleWords> -<AUni ws="en">game</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What is a group of games called?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6a4508b4-c05d-4b1d-851f-455d62cb2d78"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lavatoriu; lavatorio</AUni> -<AUni ws="qvm-x-acl">lavatoriu; lavatoriu; lavatorio</AUni> -<AUni ws="qvm-x-akh">lavatoriu; lavatorio</AUni> -<AUni ws="qvm-x-akl">lavatoriu; lavatoriu; lavatorio</AUni> -<AUni ws="qvm-x-ame">lavatoriu; lavatorio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lavatorio</AUni> -<AUni ws="qvm-x-acl">+lavatorio</AUni> -<AUni ws="qvm-x-akh">+lavatorio</AUni> -<AUni ws="qvm-x-akl">+lavatorio</AUni> -<AUni ws="qvm-x-ame">+lavatorio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.53" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="12f16691-6aac-45c7-b072-af78a1d9a872" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lavatorio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5b88f253-91cb-4b91-8417-a094e25beafc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="735894c7-7110-4dd6-980d-c7e9cb93aa3e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lavatorio 
\entryTyp root 
\gENG basin 
\gSPN lavatorio 
\e +lavatorio 
\c N0 
\ach lavatoriu / ~_# 
\ach lavatorio / _# 
\akh lavatoriu / ~_# 
\akh lavatorio / _# 
\acl lavatoriu / ~_# 
\acl lavatoriu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lavatorio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lavatoriu / ~_# 
\akl lavatoriu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lavatorio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lavatoriu / ~_# 
\ame lavatorio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6a4546a4-dea4-413f-8d75-f8b65678274f" ownerguid="38bdff04-c7a9-41fa-a6a2-7aa214de308c"> -<ExampleWords> -<AUni ws="en">be impartial, fair, consistent, equal treatment, impartial, impartiality</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a person who treats other people equally?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6a464e42-ff49-4bf3-a10f-964154af8adf" ownerguid="38702665-019c-4c2f-afa1-5f62aadc81bd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="6a481c2d-249b-4c67-b911-20ff0943eb3f" ownerguid="8b6da228-9ec4-4e13-b6d6-0e3bb8257f7c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8c75a366-e325-4687-b7b8-eac050246609" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="6a4ac57f-5256-4dca-a331-d54b1d122d6f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">viciu; vicio</AUni> -<AUni ws="qvm-x-acl">viciu; viciu; vicio</AUni> -<AUni ws="qvm-x-akh">viciu; vicio</AUni> -<AUni ws="qvm-x-akl">viciu; viciu; vicio</AUni> -<AUni ws="qvm-x-ame">viciu; vicio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vicio</AUni> -<AUni ws="qvm-x-acl">+vicio</AUni> -<AUni ws="qvm-x-akh">+vicio</AUni> -<AUni ws="qvm-x-akl">+vicio</AUni> -<AUni ws="qvm-x-ame">+vicio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.383" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1889402e-5885-43c0-9b04-32c7a3031f8f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vicio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f437516b-d213-4f2a-82ac-4f502fe52e9e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="982c860b-a12f-43fe-83fc-d9fa483268cd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vicio 
\entryTyp root 
\gENG vice 
\gSPN vicio 
\e +vicio 
\c N0 
\ach viciu / ~_# 
\ach vicio / _# 
\akh viciu / ~_# 
\akh vicio / _# 
\acl viciu / ~_# 
\acl viciu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl vicio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl viciu / ~_# 
\akl viciu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl vicio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame viciu / ~_# 
\ame vicio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="6a4f5638-388e-4c8e-9bb7-8e742dac43db" ownerguid="5ee64d88-c462-4505-b14a-5d36e357a024"> -<Abbreviation> -<AUni ws="en">8.6.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the bottom part of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Bottom</AUni> -</Name> -<Questions> -<objsur guid="4cdbe453-e4f8-47b8-afe4-307b973e01fc" t="o" /> -<objsur guid="8317e6fa-56ef-484b-ac88-5fb461bd5ca3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="6a552446-300f-4c6f-9ab3-b9b4ef9ed8a9" ownerguid="c81004a7-499e-4e05-84c8-3d74a17e97fd"> -<ExampleWords> -<AUni ws="en">clean, brush, floss, pick your teeth, gargle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to caring for your teeth?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6a59e1f6-1b5f-4268-a0b1-907bbdfff3c3" ownerguid="40590157-9412-4558-b0f7-311867b649cc"> -<ExampleWords> -<AUni ws="en">turn up side down, turn over, upturn, flip over</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to turning something so the bottom side is up?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6a5bd3e3-5f4e-49cd-a78e-4123e525b379" ownerguid="788e642b-0327-4f6d-afc2-bab7436cae3c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">offering</AUni> -<AUni ws="es">ofrenda</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5c566a6b-3fed-4fce-928b-3cb351420389" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="6a618dc4-0529-4ed7-a3c8-27b470e7c5a3" ownerguid="d5e16822-3fec-4d8d-b2cb-baec268f95e3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="5b7487ce-7d91-4b8a-a1df-4bac7a860b71" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6a67922e-7b63-42fa-b348-64ae20ba7ee9" ownerguid="4d19f09f-035b-477e-862c-a4157acdfe81"> -<ExampleWords> -<AUni ws="en">drinking water, potable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe water for drinking?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6a69918e-c56d-4a11-8d7d-952d84741dbe" ownerguid="97393c87-07e2-4633-88f9-c8bf4d9b935c"> -<ExampleWords> -<AUni ws="en">hate, hating, hatred, abhorrence, aversion, loathing, repugnance, repulsion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of hate?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6a6b3756-0e0a-491b-a3d6-8ffc9ddb954a" ownerguid="20549a61-b41c-4987-b0cc-0e5d27691671"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">brick</AUni> -<AUni ws="es">ladrillo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5f7e99a8-62f8-4275-bd10-9f4c30793b5b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="6a6bbf65-b521-4b74-bf35-dede87217d3c" ownerguid="73a59333-134f-4a1d-aba7-e134bdefe059"> -<Abbreviation> -<AUni ws="en">4.3.9.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.243" /> -<DateModified val="2022-9-23 16:55:8.243" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a habit--a pattern of behavior of a person; something a person does frequently or regularly.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Habit</AUni> -</Name> -<Questions> -<objsur guid="15139add-b8bf-4f53-8831-be2188844933" t="o" /> -<objsur guid="82fe15b4-5702-4e11-bc86-9594aefb2d2c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="6a6f0748-a6e9-4d64-b14e-543bb6ec2ec8" ownerguid="06a44085-cbcf-4217-ae5e-56c51899c99a"> -<Abbreviation> -<AUni ws="en">8.3.5.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.619" /> -<DateModified val="2022-9-23 16:55:8.619" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is strange.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Strange</AUni> -</Name> -<Questions> -<objsur guid="c3ab5fa0-71a4-463a-b464-8e06c04b32da" t="o" /> -<objsur guid="3c45e3e4-7785-4763-9f6a-f3398b5c9a9e" t="o" /> -<objsur guid="2d3bc41a-0452-46d6-b1a0-53c17f6198d7" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="0efe342d-4969-4bd1-95be-556f6c62adfc" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="6a70c81a-31ac-4c37-bd61-f1ba2a278341" ownerguid="1750fd81-6f0c-4be2-9f07-09475dc1a7e0"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="cb76c6b7-1741-4242-a2a2-5d29080783cc" t="o" /> -<objsur guid="226d3d92-1383-4d89-bcee-76001a884b07" t="o" /> -<objsur guid="937920ce-dafd-4146-8f55-78c7c697a674" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiWordform" guid="6a70d393-1181-48e5-ac69-114d61dd348b"> -<Analyses> -<objsur guid="0f2ec646-30b7-4fa2-b5e3-59c4845321d9" t="o" /> -<objsur guid="126e199f-69cc-4e72-bcf1-5417cc9e38fa" t="o" /> -<objsur guid="3d020b79-f1d4-4a06-bae2-2daaa658474b" t="o" /> -<objsur guid="96a40b54-88f0-4740-86a3-140912f24f24" t="o" /> -<objsur guid="ea273e20-5284-47f1-aa52-a570157ae264" t="o" /> -</Analyses> -<Checksum val="266315154" /> -<Form> -<AUni ws="qvm-x-akh">aywashqaykipami</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="6a7129fc-2107-49f2-aa83-4e825ec57609" ownerguid="17102138-b97a-4f1d-81bc-9be4af90889e"> -<ExampleWords> -<AUni ws="en">lose a fight, lose a war, be defeated, suffer defeat, be beaten, meet your match, get the worst of it, come off the worst, take a beating, go down, fall, fall victim to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the process of losing a fight?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6a715b69-f00c-41f8-aa53-a015b42c9646" ownerguid="550fea46-5c7f-4751-a0b3-f0e06e15e121"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sheet</AUni> -<AUni ws="es">sabana</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2949cd82-21b1-4c67-809a-f2b3fc173a6b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="6a801329-3755-44e3-b79a-38b8e78331ba" ownerguid="7b2bb976-a035-4423-aa43-850c28641fea"> -<Form> -<AUni ws="qvm-x-ach">cunruru</AUni> -<AUni ws="qvm-x-acl">cunruru; cunruro</AUni> -<AUni ws="qvm-x-akh">kunruru</AUni> -<AUni ws="qvm-x-akl">kunruru; kunruro</AUni> -<AUni ws="qvm-x-ame">kunruru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6a8278f2-0196-4b28-aa73-dd39c22a5346" ownerguid="75a50c67-1bed-4d31-a32a-698fabf50724"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6a865fbf-3c74-4bea-b6a4-0bb5a8d09b66" ownerguid="cc6f100a-5220-4f53-801c-b1fdcc619608"> -<ExampleWords> -<AUni ws="en">be pushing, be getting on for</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to being almost a particular age?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6a86d041-9343-42ce-a1cf-cb3e5325e0d0" ownerguid="10ad2300-18e0-4e12-becd-d5b72207427f"> -<Form> -<AUni ws="qvm-x-ach">jinchi</AUni> -<AUni ws="qvm-x-acl">jinchi; jinche</AUni> -<AUni ws="qvm-x-akh">jinchi</AUni> -<AUni ws="qvm-x-akl">jinchi; jinche</AUni> -<AUni ws="qvm-x-ame">hinchi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6a88e918-5a0e-419d-90a3-f28a7eba8861" ownerguid="fa32115e-e389-47bd-91e1-61779172ccf2"> -<ExampleWords> -<AUni ws="en">infectious, contagious, be bad for you, be bad for your health, unsanitary, unhygienic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that can make you sick?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6a89247e-450f-421d-bcaf-0ddfdc886a3a" ownerguid="2dca9338-85cb-4f58-b40d-d2d759e8edd6"> -<ExampleWords> -<AUni ws="en">location, position, place, venue, at, spot</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the location of something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6a8aa24b-ab0f-4b59-86d0-2f5800edcecd" ownerguid="2ec7128c-61c0-4095-9f4b-70c3de2bd12b"> -<Form> -<AUni ws="qvm-x-ach">isqui</AUni> -<AUni ws="qvm-x-acl">isqui; isqui; isque</AUni> -<AUni ws="qvm-x-akh">iski</AUni> -<AUni ws="qvm-x-akl">iski; iski; iske</AUni> -<AUni ws="qvm-x-ame">iski</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6a8b16db-3b97-40cb-ba0e-1091fbdb9739" ownerguid="3f4c559f-ab4f-411f-a23b-d2396c977005"> -<ExampleWords> -<AUni ws="en">out of sight, hidden from view, away from people's eyes</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words indicate that something happens where people cannot see it?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6a8ba01b-0f1b-4a43-8990-ab78eda673fc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bunruru</AUni> -<AUni ws="qvm-x-acl">bunruru; bunruro</AUni> -<AUni ws="qvm-x-akh">bunruru</AUni> -<AUni ws="qvm-x-akl">bunruru; bunruro</AUni> -<AUni ws="qvm-x-ame">bunruru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*bunruru</AUni> -<AUni ws="qvm-x-acl">*bunruru</AUni> -<AUni ws="qvm-x-akh">*bunruru</AUni> -<AUni ws="qvm-x-akl">*bunruru</AUni> -<AUni ws="qvm-x-ame">*bunruru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.1" /> -<DateModified val="2022-10-10 21:18:47.215" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d2ab5dbe-b0ca-4635-bdf5-d7d85b0b457e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*bunruru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7598acfd-db2d-4fb5-8afb-b9cc4cc4322b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2b8cef5f-b5c2-4f81-b19a-c870c0b9e048" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *bunruru 
\entryTyp root 
\gENG 
\gSPN 
\e *bunruru 
\c V1 
\ach bunruru 
\akh bunruru 
\acl bunruru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl bunruro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl bunruru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl bunruro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame bunruru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="6a8c49d2-93e4-4cb2-bee1-ed30a244d188"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">escribi</AUni> -<AUni ws="qvm-x-acl">escribi; escribe</AUni> -<AUni ws="qvm-x-akh">escribi</AUni> -<AUni ws="qvm-x-akl">escribi; escribe</AUni> -<AUni ws="qvm-x-ame">escribi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+escribir</AUni> -<AUni ws="qvm-x-acl">+escribir</AUni> -<AUni ws="qvm-x-akh">+escribir</AUni> -<AUni ws="qvm-x-akl">+escribir</AUni> -<AUni ws="qvm-x-ame">+escribir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.487" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="93108d81-9833-41eb-a274-b6371c4062bc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+escribir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b7e24860-a37c-42ab-bc19-fa27d7c4f082" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="efff3030-ecb0-48d7-8a01-03b29db7ba54" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +escribir 
\entryTyp root 
\gENG write 
\gSPN escribir 
\e +escribir 
\c V2 
\mp +FinalI 
\ach escribi 
\akh escribi 
\acl escribi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl escribe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl escribi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl escribe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame escribi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="6a8e9cba-6426-472a-8ba0-a559b686e56b" ownerguid="cf5c67a8-59c4-4f24-9ffb-85cb04e39d9c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="6a8ef36e-f87f-45cd-b9b6-bda7ec0159d0"> -<Analyses> -<objsur guid="7a84fc29-136a-471c-81b1-61b911297af4" t="o" /> -</Analyses> -<Checksum val="1955281077" /> -<Form> -<AUni ws="qvm-x-akh">wanushaq</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="6a8fe39c-0731-44fa-94ca-6e1b2513ca96" ownerguid="e3b78a5f-5d6a-4f82-9032-8865c3bd57fa"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="6a90f68a-a3b2-46ef-8fe8-dfb1599ddcfa" ownerguid="00979c11-b4f8-4c50-8df9-2b2073d4b7a6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hearth</AUni> -<AUni ws="es">fogón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6aff4012-66f8-4be8-8ea7-39cbabda325d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6a91b188-fdd6-4575-a0c0-e2e8b5ae8a4b" ownerguid="162ba30f-5ff4-4bcc-8246-3b7c97165d3f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="6a93d0a5-9033-4409-8af2-35184586ac7b" ownerguid="1cc4897f-1365-440a-aa3e-d42ee2fee5d1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="6a942d6e-e35b-458c-b8c6-2b1a5485d089"> -<Analyses> -<objsur guid="12080e89-3e7a-4d80-8a3f-7ad3a8dc05b7" t="o" /> -</Analyses> -<Checksum val="19076823" /> -<Form> -<AUni ws="qvm-x-akh">kutikuykan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="6a9620ee-a56c-4d47-9156-ce306dfeb511" ownerguid="e76227e8-4a04-4fbd-a16e-5baa3d9e97a9"> -<ExampleWords> -<AUni ws="en">hunt, stalk, prey</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to animals hunting?</AUni> -</Question> -</rt> -<rt class="MoDerivAffMsa" guid="6a97cf20-558d-4866-ba04-48c4807bc533" ownerguid="17321b73-3887-4541-9049-9af2e1d69d9b"> -<FromPartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</FromPartOfSpeech> -<ToPartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</ToPartOfSpeech> -</rt> -<rt class="MoInflAffMsa" guid="6a999fb4-9b50-420c-9fb2-46dc7f876785" ownerguid="f586bdd4-75ad-4064-a244-d247a2fe34a2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="6c1a55b7-decb-4da3-86ca-e0b8dc1a89c0" t="r" /> -</Slots> -</rt> -<rt class="CmDomainQ" guid="6a9a96a1-5164-4ee2-a719-a4b09c8bc08f" ownerguid="709d43dd-ce94-4df1-91b1-edb0b12fdaea"> -<ExampleWords> -<AUni ws="en">rub, chafe, rasp</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to rubbing something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6a9e28f3-6ccd-46e8-aa83-96b989273a0f" ownerguid="0c49d8bb-06a5-4b7d-a317-c94d9ecb8850"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">contract</AUni> -<AUni ws="es">contratar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3a1e62e2-5b51-40ab-99a2-0cdc1fda885f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="6a9ea33d-3ce6-4009-8fbf-f8487ef58288" ownerguid="a284a49b-86a0-4549-a04a-2513678be7b0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ebbcbb7c-a749-48af-b93c-0fb9b122af6c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="6a9f419b-ef85-49bc-bbcc-b87f7ada2f18" ownerguid="6a23a757-18ae-47dc-b62b-6f29edacf38b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">scratch</AUni> -<AUni ws="es">rascar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2158eecf-90e9-47c3-b69a-bf0a456506f3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6aa0085b-a5ad-4d87-a25a-2604b00f0fa3" ownerguid="e0c705e8-7bf4-4049-a1a7-75766e22826e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="6aa1e126-0367-470c-9190-e549b31590de" ownerguid="9a9a6de7-7471-4db7-9663-2c1eb1630f5c"> -<Form> -<AUni ws="qvm-x-ach">rabya</AUni> -<AUni ws="qvm-x-acl">rabya</AUni> -<AUni ws="qvm-x-akh">rabya</AUni> -<AUni ws="qvm-x-akl">rabya</AUni> -<AUni ws="qvm-x-ame">rabya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="6aa41eaa-b390-493f-9da2-be1e50d4e37c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chispa</AUni> -<AUni ws="qvm-x-acl">chispa</AUni> -<AUni ws="qvm-x-akh">chispa</AUni> -<AUni ws="qvm-x-akl">chispa</AUni> -<AUni ws="qvm-x-ame">chispa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+chispa</AUni> -<AUni ws="qvm-x-acl">+chispa</AUni> -<AUni ws="qvm-x-akh">+chispa</AUni> -<AUni ws="qvm-x-akl">+chispa</AUni> -<AUni ws="qvm-x-ame">+chispa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.325" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="03f5038d-33d0-4f91-8dfc-5dc055010281" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+chispa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0149b8e9-11a8-4e01-b812-401027cd4e84" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8550e16c-7eb7-4861-925f-c71e72cecacb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +chispa 
\entryTyp root 
\gENG spark 
\gSPN chispa 
\e +chispa 
\c N0 
\ach chispa 
\akh chispa 
\acl chispa 
\akl chispa 
\ame chispa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6aa42f5a-37db-45b3-8959-3a09d07c5166" ownerguid="683f570a-0bfe-4a97-b55d-4319b328508b"> -<ExampleWords> -<AUni ws="en">reservoir, cistern, water tank, water barrel, bucket, jerry can, water tower</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used for storing water?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6aa6459b-2ade-423d-997d-dc2a3837c4bf" ownerguid="4268cbc0-6680-4779-99d7-1df8d8cbf450"> -<Form> -<AUni ws="qvm-x-ach">quisqui</AUni> -<AUni ws="qvm-x-acl">quisqui; quisqui; quisque</AUni> -<AUni ws="qvm-x-akh">kiski</AUni> -<AUni ws="qvm-x-akl">kiski; kiski; kiske</AUni> -<AUni ws="qvm-x-ame">kiski</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="6aa8133a-2578-4617-bd9c-6428e897a4f1" ownerguid="ef6d136e-ac1d-48b9-819d-252485534557"> -<Abbreviation> -<AUni ws="en">4.7.8.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to breaking a contract.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Break a contract</AUni> -</Name> -<Questions> -<objsur guid="e04433ab-790a-4358-85f4-284024c8e8b7" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="6aa9f36b-2948-46bd-a6eb-3f59e0abf2be" ownerguid="cbaf7804-5613-45ab-b7e8-f975ac2ec5b9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pin</AUni> -<AUni ws="es">gancho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="148e48e6-4231-4d73-8085-e068b97a341a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6aaab492-8352-4349-8b74-d99b5d7155ce" ownerguid="bee96736-8acc-4639-8145-2cffb8739056"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="6aab7496-9a3b-48df-913c-175a10f03a79" ownerguid="58f26019-27ad-44ab-a3bd-82eb8e5fce32"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="6aad4953-b1fa-4b02-ad25-f05af3814e4f" ownerguid="a2f741d9-836f-4bbf-89bd-194ffccab309"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="6aaec51e-6b0f-463e-b25c-b8c8aaa1b5b1" ownerguid="2541b188-5bc6-497e-b9c7-e9426ef282b0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="6ab060ca-ecfc-4a46-accb-42b0473998cd" ownerguid="08239f53-daa5-47a6-9f39-29a9064b0c27"> -<Abbreviation> -<AUni ws="en">7.5.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a linking or connecting things together--to put something like a road, pipe, or wire between things so that people or things can move between them.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Link, connect</AUni> -</Name> -<Questions> -<objsur guid="f3d32daf-5a81-4f1e-bb97-47c409ac61f3" t="o" /> -<objsur guid="3b566414-2a28-4329-97ea-1f7fcde4da11" t="o" /> -<objsur guid="c10ca4bc-e54f-4437-8b33-b783efea5a60" t="o" /> -<objsur guid="85812c31-a6f3-4635-abfe-3119bda66a87" t="o" /> -<objsur guid="c68286ed-6c8e-45a1-b149-94d0c805a2be" t="o" /> -<objsur guid="8fc7eea7-7fef-44f4-8b56-dc21801aa4c5" t="o" /> -<objsur guid="686b613e-f6c7-4805-85cf-f318622c6c76" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="6ab528ff-4300-4849-aad0-9dbfc979c802" ownerguid="e7ef1518-74a7-498a-b2de-0721f589a565"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ability</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cf7e878f-6cd2-4752-b7ee-f26d517687e1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="6ab55b88-9407-46a8-9a43-5f9a34e09174" ownerguid="2c8d9971-fe96-418a-a8ee-f176f542080f"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Nircurna Saratapis caynog nergan: <<Turiquita goycushgäcunaga waranga guellay chaninmi caycan. Tsaymi cananga honorniquita pipis mana parlaycanganatsu.>></Run> -</AStr> -</Example> -</rt> -<rt class="StTxtPara" guid="6ab5a4fa-da56-4225-81be-c0c7e10933e7" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">aywakushqan </Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="33bbadaf-f1c4-4b6b-95bf-bfffccdb9332" t="o" /> -</Segments> -</rt> -<rt class="LexSense" guid="6ab77471-519f-4123-b2e3-5a9863507034" ownerguid="51fbf9d6-8b9e-4f92-9cf0-02fa37a690c7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">egg</AUni> -<AUni ws="es">huevo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9c49e93f-1d5f-438b-b26a-e6291b0731a5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6ab8b4a2-0448-488e-8324-914b61381f5d" ownerguid="7096da32-2828-4992-8f07-e4bced3312a0" /> -<rt class="MoStemAllomorph" guid="6ab94bd9-fec1-46ce-8458-ac9bdaa8c7a4" ownerguid="a0112e1c-367d-4035-8894-35cff90e4d3b"> -<Form> -<AUni ws="qvm-x-ach">upugruy</AUni> -<AUni ws="qvm-x-acl">upogruy</AUni> -<AUni ws="qvm-x-akh">upuqruy</AUni> -<AUni ws="qvm-x-akl">upoqruy</AUni> -<AUni ws="qvm-x-ame">upuqruy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6abbd74f-3b78-4de5-8ed2-7ac408e5329a" ownerguid="9df994ea-c5be-4e4a-b9c8-717049721d0c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="6abd48ab-6c43-40d4-8da3-8320879d681b" ownerguid="0e312109-1cc2-4645-96f5-97caeaf7c869"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="6abe3999-5ea5-4a36-88f7-a2400f5c0939" ownerguid="2cb7f63b-dd59-43f6-a8cc-f4aff09d3eec"> -<Form> -<AUni ws="qvm-x-ach">wala; walä</AUni> -<AUni ws="qvm-x-acl">wala; walä</AUni> -<AUni ws="qvm-x-akh">wala; walä</AUni> -<AUni ws="qvm-x-akl">wala; walä</AUni> -<AUni ws="qvm-x-ame">wala; walä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6ac014ba-2a99-46b8-907c-b101dd5f20fd" ownerguid="1b3dccfe-29e4-478e-8443-17be9454a05a"> -<ExampleWords> -<AUni ws="en">leave, leave behind, abandon, forget, forsake, maroon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to leaving something somewhere?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6acd8a7d-ebcd-44ce-a583-d7ab720fe5f2" ownerguid="401bbbe4-a33a-4a1e-b26a-18a756e002c4"> -<ExampleWords> -<AUni ws="en">coward, milksop, sissy, wimp, yellow-belly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a coward?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6acfc64e-630c-4564-9f19-06669ed0d770" ownerguid="add7df10-d641-418a-8a58-6aa2069be819"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="afde997c-1da1-437f-8304-0d6a6ea9aea3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6ad430df-5a3e-4662-8f7c-e1be3d7740a7" ownerguid="9fac006a-4f92-4b0a-b6ce-425f5cd03386"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="6ad910f6-c929-4bce-90f1-53cb1035e659"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guempi</AUni> -<AUni ws="qvm-x-acl">guempi; guempi; guempe</AUni> -<AUni ws="qvm-x-akh">qempi</AUni> -<AUni ws="qvm-x-akl">qempi; qempi; qempe</AUni> -<AUni ws="qvm-x-ame">qimpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qimpi</AUni> -<AUni ws="qvm-x-acl">*qimpi</AUni> -<AUni ws="qvm-x-akh">*qimpi</AUni> -<AUni ws="qvm-x-akl">*qimpi</AUni> -<AUni ws="qvm-x-ame">*qimpi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.185" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a6522b02-e85d-4075-80af-11520d7f034c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qimpi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b7179551-8920-4a54-af06-f59a104c2f24" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3cd248a3-9a0c-453f-b315-a95c5f96af7e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qimpi 
\entryTyp root 
\gENG 
\gSPN 
\e *qimpi 
\c N0 
\mp +FinalI 
\ach guempi 
\akh qempi 
\acl guempi / _# 
\acl guempi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl guempe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qempi / _# 
\akl qempi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qempe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qimpi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="6ada1ea0-0fd7-43c7-9226-c40fa9911907" ownerguid="63d7756e-2388-447c-8e80-bcfead5b05df"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fatten</AUni> -<AUni ws="es">engordar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d0e2aa4a-5be8-4098-9325-1cc87b5a6c92" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6adcbc06-75ec-40c8-89f2-a04558c35b47" ownerguid="67e57493-d286-4271-b877-f63f962dddf1"> -<ExampleWords> -<AUni ws="en">bigger, biggest, roomier</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to being bigger in area than another thing?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6add3e52-8fee-4947-a3f9-45bfdac8d7c7" ownerguid="5a9d3cff-60f4-4bdc-8fec-318a4ffbd92c"> -<Form> -<AUni ws="qvm-x-ach">aldea</AUni> -<AUni ws="qvm-x-acl">aldea</AUni> -<AUni ws="qvm-x-akh">aldea</AUni> -<AUni ws="qvm-x-akl">aldea</AUni> -<AUni ws="qvm-x-ame">aldea</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="6adeaa4e-d557-476a-9731-6b243fa7c5c5" ownerguid="2bea0d64-fca6-4864-a4d9-30eeb68fc280"> -<Form> -<AUni ws="qvm-x-ach">mapa</AUni> -<AUni ws="qvm-x-acl">mapa</AUni> -<AUni ws="qvm-x-akh">mapa</AUni> -<AUni ws="qvm-x-akl">mapa</AUni> -<AUni ws="qvm-x-ame">mapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6adf1e67-dfd0-458a-a11a-841cedac9549" ownerguid="adb5072a-99a3-4f4e-8a2d-5b24cae783d9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="6adf3a2b-0c1d-451d-8419-8622d607a83c" ownerguid="edc2c502-a452-425a-89e7-15c18d080f50"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">curse</AUni> -<AUni ws="es">maldición</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a23fb110-59cf-43ab-a7ea-f177877c7e8d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6ae1708f-df4f-464f-9fe5-304ad11ff535" ownerguid="2470ad05-636e-4c85-96ab-cd880da58741"> -<ExampleWords> -<AUni ws="en">church, congregation, diocese, parish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a group of believers in a particular place?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6ae44dd0-08c7-4556-99a6-d2b2b1c6ba54"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wawaguñuy</AUni> -<AUni ws="qvm-x-acl">wawagoñuy</AUni> -<AUni ws="qvm-x-akh">wawaquñuy</AUni> -<AUni ws="qvm-x-akl">wawaqoñuy</AUni> -<AUni ws="qvm-x-ame">wawaquñuy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wawaquñuy</AUni> -<AUni ws="qvm-x-acl">*wawaquñuy</AUni> -<AUni ws="qvm-x-akh">*wawaquñuy</AUni> -<AUni ws="qvm-x-akl">*wawaquñuy</AUni> -<AUni ws="qvm-x-ame">*wawaquñuy</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.597" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="306cb3d2-6e3a-4f5c-b7de-75f580c0db61" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wawaquñuy</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="787d1d20-55d6-44c1-b2be-163dd85d395e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a7eafa37-dff8-45f3-84db-0d14c822831e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wawaquñuy 
\entryTyp root 
\gENG lukewarm 
\gSPN tíbia 
\e *wawaquñuy 
\c N0 
\mp +FinalC 
\ach wawaguñuy 
\akh wawaquñuy 
\acl wawagoñuy 
\akl wawaqoñuy 
\ame wawaquñuy 
\i REV 3.16 Qasaqpis ni akaqpis kanaykipa trukan wawaqoñuy kashqaykipitami shimëpita aqturishayki.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="6ae4a4de-7aeb-4325-9209-7187c858428e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">milwa</AUni> -<AUni ws="qvm-x-acl">milwa</AUni> -<AUni ws="qvm-x-akh">milwa</AUni> -<AUni ws="qvm-x-akl">milwa</AUni> -<AUni ws="qvm-x-ame">milwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*millwa</AUni> -<AUni ws="qvm-x-acl">*millwa</AUni> -<AUni ws="qvm-x-akh">*millwa</AUni> -<AUni ws="qvm-x-akl">*millwa</AUni> -<AUni ws="qvm-x-ame">*millwa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.436" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5369a0ae-66b5-4b1d-bdb6-4db40c7364a7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*millwa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9bf4384a-25fe-46b4-92a9-779ea39d637e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cc2e0a65-047f-475d-b53f-9c8108704be4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *millwa 
\entryTyp root 
\gENG wool 
\gSPN lana 
\e *millwa 
\c N0 
\ach milwa 
\akh milwa 
\acl milwa 
\akl milwa 
\ame milwa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="6aea2af4-de9f-44a4-a185-3fa6230f57bb" ownerguid="e29cef12-4b53-42b3-b899-a300fce20ceb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="6aeb1333-250c-440a-b21a-6080d2ae8f88" ownerguid="4f2141b0-e7ec-4564-acf1-8ac376a7dea3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">comb</AUni> -<AUni ws="es">cresta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a7d3e2f3-0c26-4c65-a7a2-0e407f8463b3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="6aed624e-1b4a-4909-a8d2-0baf1c658458" ownerguid="08906e20-5873-427f-b14e-6d126571deb3"> -<Category> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</Category> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="ad511186-81ea-4a35-8b33-9daf3c1edafe" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="4883b84d-ab59-4fcd-b02c-bb1dcb017030" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="6aed89a5-91a3-4873-aaec-aaef8d361b32" ownerguid="d4e8f608-e7f8-4a9f-9299-c3f17e267bd5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="6aeec075-acd7-4e9c-9334-c66ee18e9965" ownerguid="47af2df4-42de-4e25-b774-e33f69426626"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="6af3bd46-608a-4966-8505-7d4de873d2d6" ownerguid="0158fed2-e8ca-4fea-b495-afe387d8d34d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="859359b1-f63f-437e-8b3e-3dd45c50ee2f" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="29ee9181-6e74-4215-bb59-41fbd8ac801c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="6af4212d-1019-4a64-a0bc-9ab1256d88f8" ownerguid="1b8e0af2-0a62-4b0c-b9af-59af6da8b0f1"> -<Form> -<AUni ws="qvm-x-ach">vinagri; vinagre</AUni> -<AUni ws="qvm-x-acl">vinagri; vinagri; vinagre</AUni> -<AUni ws="qvm-x-akh">vinagri; vinagre</AUni> -<AUni ws="qvm-x-akl">vinagri; vinagri; vinagre</AUni> -<AUni ws="qvm-x-ame">vinagri; vinagre</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="6af4876a-55e8-4f29-817e-fae11789e759"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">valor</AUni> -<AUni ws="qvm-x-acl">valor</AUni> -<AUni ws="qvm-x-akh">valor</AUni> -<AUni ws="qvm-x-akl">valor</AUni> -<AUni ws="qvm-x-ame">valor</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+valor</AUni> -<AUni ws="qvm-x-acl">+valor</AUni> -<AUni ws="qvm-x-akh">+valor</AUni> -<AUni ws="qvm-x-akl">+valor</AUni> -<AUni ws="qvm-x-ame">+valor</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.343" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3dd0db3c-578a-432e-a1e8-4bf5fdd7e9d4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+valor</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="781b8534-726a-4153-a0e3-86aa11ce0d2c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="490203f7-1cec-42ed-8978-83621291f294" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +valor 
\entryTyp root 
\gENG strength 
\gSPN valor 
\e +valor 
\c N0 
\mp +FinalC 
\ach valor 
\akh valor 
\acl valor 
\akl valor 
\ame valor</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="6af65fe8-596d-4533-92c7-9e562906319f" ownerguid="807bc1e5-a2fd-41a2-874b-f43c82ed334b"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6af6ae0c-f884-4a33-b1c5-9bcf15100fca" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<ExampleWords> -<AUni ws="en">occupation, job, living, work, employment, profession, trade</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a person's occupation?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6af75c2a-6407-419f-a23e-1ea2b0434522" ownerguid="8f779877-7d86-4683-8a8b-298c7fc62815"> -<ExampleWords> -<AUni ws="en">trite, over-used, stale, banal, be wearing thin, threadbare, clichéd, corny, hackneyed, shopworn, stereotyped, commonplace</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe something that has been said so often that people think it is stupid?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6af96fb2-bd5d-434c-8ec8-2acf7cb58b41" ownerguid="d2adf6c6-1447-4289-897c-bc057ed3c203"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="7a2cbc5f-782b-4ab1-a47d-20fe621214ad" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="9cda4ca7-7648-4fa7-910b-f5290d0346e0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="6af9e57c-beaf-4ebb-a656-affe9729cd38"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">moga</AUni> -<AUni ws="qvm-x-acl">moga</AUni> -<AUni ws="qvm-x-akh">moqa</AUni> -<AUni ws="qvm-x-akl">moqa</AUni> -<AUni ws="qvm-x-ame">muqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*muqa.v</AUni> -<AUni ws="qvm-x-acl">*muqa.v</AUni> -<AUni ws="qvm-x-akh">*muqa.v</AUni> -<AUni ws="qvm-x-akl">*muqa.v</AUni> -<AUni ws="qvm-x-ame">*muqa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.507" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f8b2b803-b67a-4904-9f8e-c3df798cd78c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*muqa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="83f9e8b3-81dc-4f1b-acc1-94475237b811" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ad3d9e00-3042-4e3b-b729-3634fa2639ef" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *muqa.v 
\entryTyp root 
\gENG disjoint 
\gSPN discoyuntar 
\e *muqa.v 
\c V1 
\ach moga 
\akh moqa 
\acl moga 
\akl moqa 
\ame muqa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="6afd1b44-48cb-4b05-adbc-71adccc401ff"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">charqui</AUni> -<AUni ws="qvm-x-acl">charqui; charqui; charque</AUni> -<AUni ws="qvm-x-akh">charki</AUni> -<AUni ws="qvm-x-akl">charki; charki; charke</AUni> -<AUni ws="qvm-x-ame">charki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trarki</AUni> -<AUni ws="qvm-x-acl">*trarki</AUni> -<AUni ws="qvm-x-akh">*trarki</AUni> -<AUni ws="qvm-x-akl">*trarki</AUni> -<AUni ws="qvm-x-ame">*trarki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.78" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8647e508-6bc7-4bca-86de-cb710ae9f97b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trarki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5e637fee-1c0e-4aad-a4c0-0a8b5fef4d76" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2f058427-718c-44f3-9719-92672418fd8d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trarki 
\entryTyp root 
\gENG jerky 
\gSPN charqui 
\e *trarki 
\c N0 
\mp +FinalI 
\ach charqui 
\akh charki 
\acl charqui / _# 
\acl charqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl charque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl charki / _# 
\akl charki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl charke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame charki</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="6aff4012-66f8-4be8-8ea7-39cbabda325d" ownerguid="00979c11-b4f8-4c50-8df9-2b2073d4b7a6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6affd519-d719-4dd5-8d84-513dcb4a7ce5" ownerguid="99861dcb-c6ca-4e50-a19a-efadbb10c2cf"> -<ExampleWords> -<AUni ws="en">old, has a long history</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe an organization that has existed for a long time?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6b000f85-e41f-4329-9bd0-bd27aeea9f54" ownerguid="f43ea635-fc56-4aae-8450-ad5ff77cec24"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">defecate</AUni> -<AUni ws="es">defecar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="35b3e539-e823-4c12-8991-18397c27b643" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="6b008dde-7a77-404b-b4be-7f3f68d9caeb" ownerguid="caf2115b-eedb-41b5-80df-0c291df27dde"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="3b626ac3-8a69-46e3-8df4-a90741567e4e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6b0156c5-f2a9-41c8-b2d3-f73d0561f50f" ownerguid="0f07adb7-4387-4723-9800-8362e825ad45"> -<ExampleWords> -<AUni ws="en">rocky, stony</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe ground with lots of rocks in it?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6b02e987-e30f-4b39-9d67-65902d1af456" ownerguid="b844d2f8-d3ef-4605-b038-8bc0a2cff0af"> -<ExampleWords> -<AUni ws="en">raised, heightened</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that has been made tall?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6b060b4c-43f5-47ff-a32b-2b2f4ed31cea" ownerguid="b0acbed4-b979-4f33-8893-e4e67a732a7f"> -<Form> -<AUni ws="qvm-x-ach">jawa</AUni> -<AUni ws="qvm-x-acl">jawa</AUni> -<AUni ws="qvm-x-akh">jawa</AUni> -<AUni ws="qvm-x-akl">jawa</AUni> -<AUni ws="qvm-x-ame">hawa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="6b061a7d-3c6e-4861-80ca-7d854837bdf8" ownerguid="d593023e-15c0-4737-90fa-93b7e025449e"> -<Form> -<AUni ws="qvm-x-ach">canoa</AUni> -<AUni ws="qvm-x-acl">canoa</AUni> -<AUni ws="qvm-x-akh">canoa</AUni> -<AUni ws="qvm-x-akl">canoa</AUni> -<AUni ws="qvm-x-ame">canoa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="6b061ecc-a532-4a75-b56d-5ff24e865bac"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">it</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="6b0b074d-1b5f-40e6-adeb-44228ad0a882" ownerguid="f38f8344-838f-44ba-b103-22289c2d2793"> -<ExampleWords> -<AUni ws="en">absorb, blot, daub, soak up, sponge, sop, mop up, wipe up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to something soaking up water?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6b0c8e23-5f0b-4e5b-a7f4-1ddc66840e29" ownerguid="999c8aee-88d8-4f27-8d57-ccfd45acb830"> -<Form> -<AUni ws="qvm-x-ach">túnica; tünica</AUni> -<AUni ws="qvm-x-acl">túnica; tünica</AUni> -<AUni ws="qvm-x-akh">túnica; tünica</AUni> -<AUni ws="qvm-x-akl">túnica; tünica</AUni> -<AUni ws="qvm-x-ame">túnica; tünica</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6b1118fc-3a6f-42f3-b7a9-d0718c3836f5" ownerguid="c8d3bee0-5a48-4c28-89d3-86d654b3ab68"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6b15ae41-34df-4ef8-9b3a-718f312c00a3" ownerguid="d90db6d4-6c78-4ac8-9764-0cafa79b8b31"> -<ExampleWords> -<AUni ws="en">squad, platoon, company, battalion, regiment, brigade, division, corps, army, army group</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What types of army units are there?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6b1732f6-d7e9-48af-815d-5fa14be05f48" ownerguid="39bf3a75-0264-49a8-9aa6-26dc4bc4c9cc"> -<Form> -<AUni ws="qvm-x-ach">mangu; mango</AUni> -<AUni ws="qvm-x-acl">mangu; mangu; mango</AUni> -<AUni ws="qvm-x-akh">mangu; mango</AUni> -<AUni ws="qvm-x-akl">mangu; mangu; mango</AUni> -<AUni ws="qvm-x-ame">mangu; mango</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="6b17ad51-1e90-4b68-8e7e-4b413e981dff" ownerguid="7580bc6a-c865-4237-b279-3220dfb95753"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Chuncapis shamunqui.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="6b19e828-f597-4d0d-b7a6-f52f3bbd041f" ownerguid="45f7b003-ade3-4efc-8dee-259dcbf80a4a"> -<Abbreviation> -<AUni ws="en">3.3.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being willing to do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25E Be Willing</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Willing</AUni> -</Name> -<Questions> -<objsur guid="99895592-3aa5-4988-9d69-5caaedeac5b6" t="o" /> -<objsur guid="ff4cf94e-58a0-44b9-9ea0-97f5f02a2e73" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="85912845-21b0-41eb-8b8c-1f5c3d53df08" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="6b1c2979-bb41-4c6a-95b5-68bbe66f6361" ownerguid="768aed05-dbc9-4caf-9461-76cb3720f908"> -<ExampleWords> -<AUni ws="en">agony, agonize, agonizing, anguish, burn, hurts a lot, really hurts, acute, racked with pain, horrible, excruciating, torment, raw pain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a bad pain?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6b1c895a-9ee0-4036-a4aa-01e69ea034c8" ownerguid="0079d262-e528-4a83-8208-007fa31976f7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6b1ce26d-b73b-4604-9494-3051cef0840e" ownerguid="64e41545-3a0a-4524-a8d4-8e5e0f0e2391"> -<ExampleWords> -<AUni ws="en">light producing, shining</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that produces light?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6b1d634f-f091-40ec-b1bc-c9efd79719d1" ownerguid="49f0742b-349b-471e-b23c-9af2fb502541"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">threaten</AUni> -<AUni ws="es">amenazar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cf34118b-fb39-4ea0-8ba6-0e641ebb5011" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="6b1eeebd-2433-4f39-9e67-7ac4dd0fe20a" ownerguid="4f485a60-e3ba-42e6-9d59-185305c5d1f2"> -<Abbreviation> -<AUni ws="en">8.5.2.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the directions of the compass.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>82A North, South, East, West</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">North, south, east, west</AUni> -</Name> -<Questions> -<objsur guid="53bbaddd-d784-4946-a91f-7da713958ec0" t="o" /> -<objsur guid="b65517a6-52ba-49af-97d3-4b73dd69ec0d" t="o" /> -<objsur guid="5fc7b23c-226d-4459-8df7-ac9bdf990d36" t="o" /> -<objsur guid="7a0d0a0e-9ede-4014-aff4-23e9b0d66dd5" t="o" /> -<objsur guid="ee33afc3-b9f8-4163-8fc1-307391e4706f" t="o" /> -<objsur guid="1bafb7ad-a6d6-4d8d-94d0-3c71ea0e9ad5" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="6b208fda-544c-4cba-b8cc-887b1018837f" ownerguid="0bc02285-8e70-442a-8d08-e04d922507c8"> -<Abbreviation> -<AUni ws="en">6.6.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.476" /> -<DateModified val="2022-9-23 16:55:8.476" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to photography.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Photography</AUni> -</Name> -<OcmCodes> -<Uni>215 Photography</Uni> -</OcmCodes> -<Questions> -<objsur guid="5ec7666b-03ae-44f1-aae1-5928cbb16e09" t="o" /> -<objsur guid="c1e4f82e-df16-4995-9c73-f202041e2d80" t="o" /> -<objsur guid="c84a66df-60cb-4351-b4c5-9c56e02d8c8e" t="o" /> -<objsur guid="6535063d-7ef3-4b61-8073-af15d99440b9" t="o" /> -<objsur guid="57d8c2d5-8317-47ac-8371-c534ba24f6bc" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="6b20ec74-ad20-4004-a49d-1863bc3946b1" ownerguid="4f531ad5-b628-4cf8-88cc-72122c7cc725"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="6b22de7b-5b45-404d-80c4-bd4a6b32076e" ownerguid="980de7db-380d-4612-a4bc-761a35ec3953"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pti</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pti</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pti</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b2772da-2fbd-4846-99c3-d3f919125916" t="r" /> -</Morph> -</rt> -<rt class="CmDomainQ" guid="6b24b613-473e-4482-9a05-d3bccbba9dd8" ownerguid="00269021-e1c4-474d-9dba-341d296bdac7"> -<ExampleWords> -<AUni ws="en">unordered, out of sequence</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe a group of things that have not been put in order?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6b293225-2305-4e4c-9471-5cc8d3723d60" ownerguid="ef4eea1e-40e5-4c5b-bd23-433833dbd81b"> -<Form> -<AUni ws="qvm-x-ach">juiciu</AUni> -<AUni ws="qvm-x-acl">juiciu</AUni> -<AUni ws="qvm-x-akh">juiciu</AUni> -<AUni ws="qvm-x-akl">juiciu</AUni> -<AUni ws="qvm-x-ame">juiciu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="6b2ac337-e1da-4601-b0c6-2263b1a0e202" ownerguid="35da19f3-7b32-4b67-ac53-b7893d85a83e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">limestone</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="50798d1a-78b4-4752-849f-27048afb7a8e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6b2b9fec-34f9-4279-9e12-7d85ff359cf3" ownerguid="284433df-7b37-4e63-a614-78520c483213"> -<ExampleWords> -<AUni ws="en">swim, leap</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) How do fish move?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6b2d7822-acb4-4779-8320-000f2a5cb2e0" ownerguid="095c36bd-b74a-44f5-987b-85909e3f4c1d"> -<ExampleWords> -<AUni ws="en">forward, ahead</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate the direction forward?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6b31301b-e5b2-403e-84f7-70ef679e0ae3" ownerguid="5f63805f-1c8e-440a-a13c-222c5d81eb9c"> -<ExampleWords> -<AUni ws="en">ambitious, ambition, competitive, power-hungry, pushy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a person who is determined to be successful?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6b33e92c-30c0-4522-b72a-9903d7fd5259" ownerguid="8f799eec-e143-4cf8-bce8-78ffc7c44fa5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="6b34ede9-d080-4e9c-8209-b2bd20863672" ownerguid="4c0771eb-671e-435b-8b2a-39b929c24388"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">berry</AUni> -<AUni ws="es">uvas</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6766dc95-63d8-46fc-92b3-adebcb0bb8b1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="6b3662f2-c7c6-4ad0-bba4-c4e5326d4ff2" ownerguid="d06ed832-bbfb-40b9-aa3a-8c5b8b01621a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="6b36eca1-0b5d-4a4a-8756-dafc44e18693"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mica</AUni> -<AUni ws="qvm-x-acl">mica</AUni> -<AUni ws="qvm-x-akh">mika</AUni> -<AUni ws="qvm-x-akl">mika</AUni> -<AUni ws="qvm-x-ame">mika</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mika</AUni> -<AUni ws="qvm-x-acl">*mika</AUni> -<AUni ws="qvm-x-akh">*mika</AUni> -<AUni ws="qvm-x-akl">*mika</AUni> -<AUni ws="qvm-x-ame">*mika</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.426" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dfa23fa8-eb1d-4e88-a78e-eaea3bf16966" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mika</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="af874bf2-8d9e-4b36-ba5f-6fbb3e3f8473" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="45aaa853-b4ed-4776-aa0b-aa3187ffd85b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mika 
\entryTyp root 
\gENG 
\gSPN 
\e *mika 
\c N0 
\ach mica 
\akh mika 
\acl mica 
\akl mika 
\ame mika 
\i Jdg 19.19 Bürröcuna micunanpag guewatapis micatapis apaycämi.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="6b3be477-7ba0-40ea-b563-a83fa54b5772" ownerguid="6e480c94-c45a-442e-a8fd-e63511df6b3a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cliff.edge</AUni> -<AUni ws="es">escarpa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d1017d87-48a1-4925-8e68-cf7244ce143d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="6b3f7996-9a0b-4e21-94a3-f64de7ba251e" ownerguid="95849c42-5a38-4a44-ad73-229308acef2e"> -<Form> -<AUni ws="qvm-x-ach">ojal</AUni> -<AUni ws="qvm-x-acl">ojal</AUni> -<AUni ws="qvm-x-akh">ojal</AUni> -<AUni ws="qvm-x-akl">ojal</AUni> -<AUni ws="qvm-x-ame">ojal</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="6b4114da-9a37-48fc-bae9-29d22d8f855a" ownerguid="5e525daa-c389-4e5a-a584-ecc8b7d621d3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2 R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">take.away</AUni> -<AUni ws="es">quitar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="69badfdc-8eb3-4645-9b06-959ee3ca5487" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6b44375b-1c7a-4eb9-b45d-5889f7e28d30" ownerguid="c0b7f354-a75c-41d5-a489-ae2df6364d02"> -<ExampleWords> -<AUni ws="en">stop, brake, park</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to stopping a vehicle?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6b4664cd-d1b7-429e-9f31-0f07cc264168" ownerguid="e6cb051b-48e9-4064-bc02-f73151dc0b7c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StTxtPara" guid="6b4a5202-224f-4512-b23d-3479dd6bef12" ownerguid="bf3f1d61-0fb7-4d38-ad7b-0e74c2659ac5"> -<Contents> -<Str> -<Run ws="qvm-x-akh">José</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="a4fb1234-eb79-49e4-a305-e5fa978a3abc" t="o" /> -</Segments> -</rt> -<rt class="LexSense" guid="6b55612c-fe96-41c9-ad35-80257cac4ab2" ownerguid="e26ff2a3-725d-40a6-aa9c-541653a88d9a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="4b91da27-e4ec-4709-8fa6-8c838a8b7fe1" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="d939743d-e325-476f-b702-47c50bed6247" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="6b55e896-87cd-4cc8-82e4-0d80ee69bd58" ownerguid="80f812a9-671b-45eb-bb97-b687605766a2"> -<Form> -<AUni ws="qvm-x-ach">profëta</AUni> -<AUni ws="qvm-x-acl">profëta</AUni> -<AUni ws="qvm-x-akh">profëta</AUni> -<AUni ws="qvm-x-akl">profëta</AUni> -<AUni ws="qvm-x-ame">profëta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6b5fbf3d-23b8-47ca-be22-f140925747ac" ownerguid="1447278f-efff-4807-b9ea-c487dea1ba5e"> -<ExampleWords> -<AUni ws="en">rice, wheat, corn, maize, barley, sesame, millet, sorghum, oat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of grain are eaten?</AUni> -</Question> -</rt> -<rt class="MoInflAffixSlot" guid="6b5fd694-545b-4dac-8fa7-cbce40f8838e" ownerguid="86ff66f6-0774-407a-a0dc-3eeaf873daf7"> -<Name> -<AUni ws="en">conditional</AUni> -</Name> -<Optional val="True" /> -</rt> -<rt class="CmDomainQ" guid="6b618e22-8ecc-4af4-a821-6dd276920c1a" ownerguid="fd33670e-ef16-4566-a62e-aa077e58407b"> -<ExampleWords> -<AUni ws="en">low, rumble</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to a low pitched sound?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6b6541e3-daaf-4ef0-a966-8e57a75e25a9" ownerguid="738a09a5-59df-40f9-8a4e-176e00d03bbf"> -<ExampleWords> -<AUni ws="en">quiver, string, arrowhead, shaft, feather</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What are the parts of a bow?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6b65e2ca-db74-4731-8dc8-c7a05b4191dd" ownerguid="23e6746e-d74d-406b-a5f2-513c682b5db4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6b683d62-c6be-441e-91a2-e728a5628ffb" ownerguid="f6e416b3-50b1-4e48-8a39-2998725b1c79"> -<ExampleWords> -<AUni ws="en">divorce (n), divorcement</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a divorce?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6b7222cb-9123-4fe0-80d9-37705acb6f32" ownerguid="ef77bbf7-0f69-4358-ac9c-9d888b8969bd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6b75f129-b123-43c6-93db-341eb246af04" ownerguid="995ee828-2393-462b-be82-47f5b5439aaf"> -<ExampleWords> -<AUni ws="en">convex, bulging, bulbous, billowing out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is convex?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6b760d84-5661-465f-8873-fbcb3970ad57" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<ExampleWords> -<AUni ws="en">groan, moan, sigh</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What sounds does a person make when he is sad?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6b76c073-0806-4adb-a6ec-c22448618f90" ownerguid="99b40843-54bf-4c59-ae1d-d7146cebec48"> -<ExampleWords> -<AUni ws="en">lucky, fortunate, miraculous, a good thing, a good job, stroke of luck, fluke</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something good that happens as a result of good luck?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6b779069-3f95-4b41-8155-576558f3d5cf" ownerguid="a703376d-780e-4b30-b993-836a22b7ffd3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">horse</AUni> -<AUni ws="es">caballo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e3c353c3-6e2f-409e-b685-b6f198317334" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6b7802af-64c4-4212-9873-c051ca0d63d1" ownerguid="1b6afcd2-1530-4e2c-a02f-9d14248f3188" /> -<rt class="LexSense" guid="6b78b791-a8ac-417d-bd1c-b1df82cf3d63" ownerguid="50b5b065-147c-42de-8c5c-8b8b51e35306"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hunt</AUni> -<AUni ws="es">cazar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="17469642-61b2-4f3b-baa6-f7fc402b3761" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="6b78d23a-71bb-4660-9366-13d605eb25d5" ownerguid="a0bceaf4-b5bd-43f7-84d8-388fce6a1b01"> -<Form> -<AUni ws="qvm-x-ach">rapi</AUni> -<AUni ws="qvm-x-acl">rapi; rape</AUni> -<AUni ws="qvm-x-akh">rapi</AUni> -<AUni ws="qvm-x-akl">rapi; rape</AUni> -<AUni ws="qvm-x-ame">rapi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6b799c2a-bba7-496c-9076-fbfff54ece9b" ownerguid="ccbbd16f-58c5-45c1-bfff-1fba64d9740e"> -<Question> -<AUni ws="en">(4) progressive: the action takes place simultaneously with the moment of reference, 'to be in the process of...'. This is more restricted than the English Progressive, which may be used for events that are not actually in progress at reference time: 'I am writing a book' may be used even if the speaker is not at that moment writing.</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6b7b6d67-3fe2-4930-b1ea-ce760b8b70b1" ownerguid="cc09a97f-555a-4d8e-aaef-b9365fffb0c4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="6b7c151e-a79f-42d6-a9cb-94dd63f8395c" ownerguid="a099bda7-0779-49fd-a156-66b6d3e2c1d1"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="6b8366b9-b5e8-42b8-991c-c568d4442a81" ownerguid="15947464-997a-4f44-9a4b-ac4916e7e19b"> -<Abbreviation> -<AUni ws="en">5.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.327" /> -<DateModified val="2022-9-23 16:55:8.327" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to caring for your hair.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Care for hair</AUni> -</Name> -<Questions> -<objsur guid="692ea630-76c1-40e7-8482-9ce4cd584d42" t="o" /> -<objsur guid="09172ef2-6da7-4ebb-94ef-cd26414376d2" t="o" /> -<objsur guid="31e64ebf-a753-4ed3-ba9b-337f57b6351f" t="o" /> -<objsur guid="52a1b5e3-a558-4b99-b3ea-129147e616f4" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="2e5acfd2-3009-4496-9cc2-58d2a0088994" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="fc1e4ea7-15fa-4bbf-8697-f312762504ba" t="o" /> -<objsur guid="b0e3486c-bd3d-4b5c-be9a-40cd2c0ce2a1" t="o" /> -<objsur guid="64fa0ba7-73cb-40e9-a8d2-3e61fff146c9" t="o" /> -<objsur guid="041b5ac9-99be-4281-a17e-654eff33d793" t="o" /> -<objsur guid="9c21f9bd-a7e0-4989-99f1-7fa2853ab73c" t="o" /> -<objsur guid="84d67c87-86ff-4e71-8a26-abe048132f8f" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="6b836eab-0b1e-425c-9f13-3e53a0b6f06b"> -<Analyses> -<objsur guid="03e02aa1-46e1-4b39-b303-9f7d729d4b1e" t="o" /> -<objsur guid="48ca8966-6a2f-4197-9d87-6c3fa2f3f8b4" t="o" /> -<objsur guid="5557909e-dd68-490a-8495-66bc75256739" t="o" /> -<objsur guid="5b08e461-b967-4802-bc2e-c5cd7ce6b5f5" t="o" /> -<objsur guid="90f57cb3-1a42-4c45-808d-e9909d9396bd" t="o" /> -<objsur guid="d9a499aa-805c-45f0-b43f-2c394ceff053" t="o" /> -</Analyses> -<Checksum val="1218690328" /> -<Form> -<AUni ws="qvm-x-akh">qarqukatsin</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="6b84fce3-1f11-4345-b61e-8b126101119f" ownerguid="5b1f9d8e-5ac6-4c09-887c-03e11aa2e070"> -<Form> -<AUni ws="qvm-x-ach">diez</AUni> -<AUni ws="qvm-x-acl">diez</AUni> -<AUni ws="qvm-x-akh">diez</AUni> -<AUni ws="qvm-x-akl">diez</AUni> -<AUni ws="qvm-x-ame">diez</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="6b87d566-5dde-4327-b59f-2f21cf426fbe" ownerguid="f6f38651-63fc-41f0-99ae-2d0711c5b18d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="e9207993-6d2a-4a53-ba0a-f19d95fb0ef9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6b89368c-0e25-43b4-ae32-564c5b889256" ownerguid="1ffebc95-cdd8-41f9-977d-ed8556048060"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="6b8b9736-e52b-41c9-b6a8-d76589346167" ownerguid="bdf485dc-b2fd-401d-bd76-d48fde29a289"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JHN 13.5 Nirkurmi anqaraman yakuta winarkur discïpulunkunapa chakinta maylaparqan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="6b8d467e-126d-4be1-a0c9-4cb928ddd043" ownerguid="bb29001e-97f3-4bb4-8946-7c33b9835fcb"> -<ExampleWords> -<AUni ws="en">sibling, brother, sister</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the children of your father and mother?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6b8d5c87-49fd-41de-aee8-52053cc61a55" ownerguid="1c0c4951-03b6-49b8-8a8e-724397cfd5a7"> -<ExampleWords> -<AUni ws="en">obsessed, absorbed, captivated, engrossed, enthralled, fascinated, intrigued, mesmerized, spellbound, be all ears</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels obsessed?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6b8daebe-98f7-425d-91db-d2cfbea4a344" ownerguid="445caa42-9ffd-48b3-831b-70e68fe81718"> -<Form> -<AUni ws="qvm-x-ach">cresta</AUni> -<AUni ws="qvm-x-acl">cresta</AUni> -<AUni ws="qvm-x-akh">cresta</AUni> -<AUni ws="qvm-x-akl">cresta</AUni> -<AUni ws="qvm-x-ame">cresta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="6b8eef9c-fa20-4f58-a4f3-6c973bd47c84" ownerguid="7ed8fed2-1855-4f1a-b106-031e8f771beb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="6f14ed29-7dc5-498e-8fa3-6d4106db7d15" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">burn/feed</AUni> -<AUni ws="es">quemar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="682bb294-23f8-4a47-8d1c-c18739730067" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6b908fa2-caaa-46ac-93a8-6018987a0cd6" ownerguid="b16de6a0-71dd-448c-9ffa-49f6646a5219"> -<ExampleWords> -<AUni ws="en">trot, canter, jog, lope</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to running slowly?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="6b921117-47e9-4717-b3b3-4e170d26b6d9" ownerguid="7b513a02-c3ae-4243-9410-16854d911258"> -<Abbreviation> -<AUni ws="en">9.7.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.728" /> -<DateModified val="2022-9-23 16:55:8.728" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for those names that are given to people, that people use to call to each other and to talk about each other.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Personal names</AUni> -</Name> -<Questions> -<objsur guid="cd0e0f17-1083-42ad-a01c-08a1d938d9c9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="6b932bcf-c2e6-438e-88ca-e30443266c41" ownerguid="5dfb5545-62ab-4401-a48a-70d7a8cfb3c9"> -<Gloss> -<AUni ws="en">INST</AUni> -<AUni ws="es">COM</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="19e28bb1-2f05-4e65-a0d6-47a005cd199a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6b94800d-e1bb-4508-b1b6-e175b3be0ece" ownerguid="bb0f8f80-c1c7-42ea-806c-41492deae74d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="6b968f98-4c19-45ca-9921-92e3c8a0c78d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jay</AUni> -<AUni ws="qvm-x-acl">jay</AUni> -<AUni ws="qvm-x-akh">jay</AUni> -<AUni ws="qvm-x-akl">jay</AUni> -<AUni ws="qvm-x-ame">hay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hay</AUni> -<AUni ws="qvm-x-acl">*hay</AUni> -<AUni ws="qvm-x-akh">*hay</AUni> -<AUni ws="qvm-x-akl">*hay</AUni> -<AUni ws="qvm-x-ame">*hay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.700" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8797c2b3-992c-422f-9403-4d4f60bf18ce" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1d310caa-7f16-4936-ae14-536463e18679" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="54633fbc-3686-4772-9893-5efaa08d6100" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hay 
\entryTyp root 
\gENG what? 
\gSPN cómo? 
\e *hay 
\c NOSUFF 
\ach jay 
\akh jay 
\acl jay 
\akl jay 
\ame hay</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="6b97324f-5c84-4e6b-87ff-89a20ada4125" ownerguid="4937ccc5-71c3-45e2-9313-dbcdc7fd4dba"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="6b980c6f-d710-4143-bb37-a7f72b4ed656" ownerguid="3b970db0-5d31-4c00-bbc6-f7f38e0c620e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">alert</AUni> -<AUni ws="es">vivo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7e0a3d65-5cfd-40ce-bfd4-687c9b818e36" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6b9ac07b-1336-4ee6-8586-1fb59b8c42f2" ownerguid="9ecafa63-d487-4cf6-9a07-48e243b8c1a3"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="6b9b5768-7dec-4f84-ba9e-dcc4437b53f5" ownerguid="69a13710-b558-4803-b5cd-99863cc2768a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="6ba29643-fcc4-49a7-974e-40b10ac2bac0"> -<Analyses> -<objsur guid="ef04e630-fd6e-4db8-aed8-e744a4b9f144" t="o" /> -</Analyses> -<Checksum val="1284315944" /> -<Form> -<AUni ws="qvm-x-akh">rikakur</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="6ba35e86-b8c4-4089-b3ee-327bd976c737" ownerguid="0ced5b87-390a-4e15-85ea-b66c5cd0dce3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="2aba5ecc-fda3-4094-8f09-f4896b0c498b" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="7061c169-ef57-4ae3-9ffd-fb5d3e4cc1e9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="6ba6b5ee-a3a9-415e-91f5-5322ef602e1a" ownerguid="ea943ba9-ac0f-406f-adeb-b2e5540461dd"> -<Form> -<AUni ws="qvm-x-ach">rima</AUni> -<AUni ws="qvm-x-acl">rima</AUni> -<AUni ws="qvm-x-akh">rima</AUni> -<AUni ws="qvm-x-akl">rima</AUni> -<AUni ws="qvm-x-ame">rima</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="6ba84239-6725-4ae1-aaae-7de2b2949d36" ownerguid="bba9ce21-4953-4ee9-8a3b-99d7cd10fcd4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wild</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="efa6ce38-2156-4fff-a014-903513da978b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6ba91413-9748-465b-b59f-04dd7d1c55f5" ownerguid="928741b5-bff6-4dd1-be37-ec6e7a4eb6ca"> -<ExampleWords> -<AUni ws="en">bay, gulf, cove, fjord, harbor, inlet, lagoon, sound, strait, port</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a bay?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6baae70c-2f63-458f-9757-3bfa45f953f1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">eqchiwya; eqchiwya:</AUni> -<AUni ws="qvm-x-acl">eqchiwya; eqchiwya:</AUni> -<AUni ws="qvm-x-akh">eqchiwya; eqchiwya:</AUni> -<AUni ws="qvm-x-akl">eqchiwya; eqchiwya:</AUni> -<AUni ws="qvm-x-ame">iqchiwya; iqchiwya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*iqchiwya:</AUni> -<AUni ws="qvm-x-acl">*iqchiwya:</AUni> -<AUni ws="qvm-x-akh">*iqchiwya:</AUni> -<AUni ws="qvm-x-akl">*iqchiwya:</AUni> -<AUni ws="qvm-x-ame">*iqchiwya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.842" /> -<DateModified val="2022-10-10 21:19:47.699" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="995f64f0-4244-4127-9032-5265d18840e8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*iqchiwya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d93ec668-2b33-4e36-919a-3750bca90f42" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="92405128-fa1f-4fa1-90b0-695c97172478" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *iqchiwya: 
\entryTyp root 
\gENG sneeze 
\gSPN 
\e *iqchiwya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach eqchiwya foreshortened 
\ach eqchiwya: 
\akh eqchiwya foreshortened 
\akh eqchiwya: 
\acl eqchiwya foreshortened 
\acl eqchiwya: 
\akl eqchiwya foreshortened 
\akl eqchiwya: 
\ame iqchiwya foreshortened 
\ame iqchiwya: 
\i 2KI 4.35 Tsayno ruraptinmi wamraqa qanchis kuti jächisyarkur
\f + 
\fr 4.35 
\ft Wakinkunaqa <<eqchiwyarkur>> nipäkun.
\f* kawarirkamorqan.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="6baafd85-7a9b-4d9a-8d89-7d22a094af47" ownerguid="0b6da2c6-cc71-47ea-bcc2-1deccf6901ef"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ku</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ku</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b952a19-fce6-44e5-ab25-c091ef27f843" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="6bababb8-3377-4828-9016-8315c52b4163" ownerguid="66f0ef9a-0dcd-40ec-873a-65512053caf0"> -<Form> -<AUni ws="qvm-x-ach">encargu; encargo</AUni> -<AUni ws="qvm-x-acl">encargu; encargu; encargo</AUni> -<AUni ws="qvm-x-akh">encargu; encargo</AUni> -<AUni ws="qvm-x-akl">encargu; encargu; encargo</AUni> -<AUni ws="qvm-x-ame">encargu; encargo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="6bacc52a-54d3-476e-8c1a-b16967bb893e" ownerguid="cef09dd1-3488-4a86-91a3-325e2419ebad"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="580abe7b-a896-45f1-a61f-fa27d7a71074" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="6bafe56f-0bbb-4139-9738-d8c9d5ec08c5" ownerguid="f7281629-f8ed-4672-a055-02ab7730030f"> -<Form> -<AUni ws="qvm-x-ach">tucru</AUni> -<AUni ws="qvm-x-acl">tucru; tucru; tucro</AUni> -<AUni ws="qvm-x-akh">tukru</AUni> -<AUni ws="qvm-x-akl">tukru; tukru; tukro</AUni> -<AUni ws="qvm-x-ame">tukru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="6bb0d74b-e848-48c4-aa84-221aeb32f62b" ownerguid="ee068077-bfcc-4b91-a7c0-9e3ef24dee13"> -<Form> -<AUni ws="qvm-x-ach">paracsha</AUni> -<AUni ws="qvm-x-acl">paracsha</AUni> -<AUni ws="qvm-x-akh">paraksha</AUni> -<AUni ws="qvm-x-akl">paraksha</AUni> -<AUni ws="qvm-x-ame">paraksha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="6bb0eed2-e807-4172-964b-25f06ee03ec3" ownerguid="822f98ef-e788-4b74-9c6a-956f8c65efc0"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">gam</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">gam</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qam</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qam</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qam</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e50f3d14-61be-4feb-8ecd-34f183264859" t="r" /> -</Morph> -<Msa> -<objsur guid="b56d9572-6ab1-4223-8377-b7274c562325" t="r" /> -</Msa> -<Sense> -<objsur guid="dbc771fd-6584-41ea-ac7b-bbe333cd6986" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="6bb11c7b-98cd-46e7-a910-e29bd8bfb2db" ownerguid="979be69d-7c93-4e8d-b2d7-f1943c8b3157"> -<Form> -<AUni ws="qvm-x-ach">imprimi</AUni> -<AUni ws="qvm-x-acl">imprimi; imprime</AUni> -<AUni ws="qvm-x-akh">imprimi</AUni> -<AUni ws="qvm-x-akl">imprimi; imprime</AUni> -<AUni ws="qvm-x-ame">imprimi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="6bb1cfc1-6205-461a-94c7-502146a78d37" ownerguid="f0d22468-8e75-46b4-8034-bd8a8c1c873e"> -<Form> -<AUni ws="qvm-x-ach">buyi; buyi</AUni> -<AUni ws="qvm-x-acl">buyi; buyi; buye</AUni> -<AUni ws="qvm-x-akh">buyi; buyi</AUni> -<AUni ws="qvm-x-akl">buyi; buyi; buye</AUni> -<AUni ws="qvm-x-ame">buyi; buyi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="6bb22591-3e62-4d8a-9532-b31bd55ffd83" ownerguid="8adc2568-cd8b-4015-b533-e20686c33474"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yqui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yqui; yqui; yque</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yki; yki; yke</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e923ff73-545c-4526-86e7-58a4c95762c6" t="r" /> -</Morph> -<Msa> -<objsur guid="a40909fa-461f-42f5-8d0b-c089ff6c7753" t="r" /> -</Msa> -<Sense> -<objsur guid="dc00d67a-ea89-4d8e-a1ff-33d88111a258" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="6bb422e4-4aaa-458e-83d1-fc2310f27cd1" ownerguid="181d4c04-9b7f-4c9b-b752-45c2e360773a"> -<Form> -<AUni ws="qvm-x-ach">bunruru; bunrurü</AUni> -<AUni ws="qvm-x-acl">bunrurö; bunruru; bunruro</AUni> -<AUni ws="qvm-x-akh">bunruru; bunrurü</AUni> -<AUni ws="qvm-x-akl">bunrurö; bunruru; bunruro</AUni> -<AUni ws="qvm-x-ame">bunruru; bunrurü</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="6bb861aa-f938-4b9e-9957-da3a82b75021" ownerguid="12b6a9e2-f4c6-4b4f-aa70-ab7bf0f33057"> -<Form> -<AUni ws="qvm-x-ach">senga</AUni> -<AUni ws="qvm-x-acl">senga</AUni> -<AUni ws="qvm-x-akh">senqa</AUni> -<AUni ws="qvm-x-akl">senqa</AUni> -<AUni ws="qvm-x-ame">sinqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6bbbd697-2258-4745-b6f7-ff06852deccd" ownerguid="3f37bb6f-cd32-4430-aa35-700acabbee15"> -<ExampleWords> -<AUni ws="en">start, launch, open, initiate, set in motion, get things moving, start the ball rolling, begin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to starting something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6bbc57ff-4f83-4058-a10f-e721e6bfe4fb" ownerguid="9d6cbe74-93d6-41fb-b7e2-cc30adb28187"> -<ExampleWords> -<AUni ws="en">climbing, mountaineering, go climbing, rock-climbing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to the sport of climbing?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="6bbf02af-dd70-4407-9837-271d4e406f19" ownerguid="1e4daec2-7641-4a60-b0e0-25b4f250ba5f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="6bc1b249-1792-433e-816e-96f503924770" ownerguid="fcded7cb-9a9e-4079-904f-11712573f564"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6fe49b5e-093a-457b-9f14-02b68e8cec63" t="r" /> -</Morph> -</rt> -<rt class="MoStemAllomorph" guid="6bc20dc7-f065-4eb9-bf71-f550c2b556ae" ownerguid="d125240e-5990-4bf3-b99d-9b645cc79f08"> -<Form> -<AUni ws="qvm-x-ach">guela</AUni> -<AUni ws="qvm-x-acl">guela</AUni> -<AUni ws="qvm-x-akh">qela</AUni> -<AUni ws="qvm-x-akl">qela</AUni> -<AUni ws="qvm-x-ame">qila</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="6bc8e911-36f2-4d45-b237-2bdb6c03cc11" ownerguid="b8fc54d8-afd2-4ef8-b811-efb8aa7064db"> -<Abbreviation> -<AUni ws="en">8.5.1.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.668" /> -<DateModified val="2022-9-23 16:55:8.668" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that something is around something else.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>83D Around, About, Outside</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Around</AUni> -</Name> -<Questions> -<objsur guid="0a5a7843-e0ed-4ed0-a85c-e200322a1b4f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="6bc902d0-7e1b-4af5-a8bb-4d7362eaa96c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">logyu</AUni> -<AUni ws="qvm-x-acl">logyu; logyo</AUni> -<AUni ws="qvm-x-akh">loqyu</AUni> -<AUni ws="qvm-x-akl">loqyu; loqyo</AUni> -<AUni ws="qvm-x-ame">luqyu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lluqyu.v</AUni> -<AUni ws="qvm-x-acl">*lluqyu.v</AUni> -<AUni ws="qvm-x-akh">*lluqyu.v</AUni> -<AUni ws="qvm-x-akl">*lluqyu.v</AUni> -<AUni ws="qvm-x-ame">*lluqyu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.235" /> -<DateModified val="2022-10-10 21:19:47.698" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f34be637-8a31-4410-9a0f-c718ca4ffae9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lluqyu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="decbb379-4754-4271-9988-f61ef722a83d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="136c49a6-0125-4b83-ad61-fa196aeab76e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lluqyu.v 
\entryTyp root 
\gENG be.succulent 
\gSPN 
\e *lluqyu.v 
\c V1 
\ach logyu 
\akh loqyu 
\acl logyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl logyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl loqyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl loqyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame luqyu 
\i PSA 72.16 Líbanuchönograg logyuypa logyur winatsun.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="6bcaf8ff-3006-4246-847c-9673a999e808"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bo:la</AUni> -<AUni ws="qvm-x-acl">bo:la</AUni> -<AUni ws="qvm-x-akh">bo:la</AUni> -<AUni ws="qvm-x-akl">bo:la</AUni> -<AUni ws="qvm-x-ame">bo:la</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bola</AUni> -<AUni ws="qvm-x-acl">+bola</AUni> -<AUni ws="qvm-x-akh">+bola</AUni> -<AUni ws="qvm-x-akl">+bola</AUni> -<AUni ws="qvm-x-ame">+bola</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.971" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cd60a095-79bd-4477-b647-fbc4e69134b3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bola</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9d098db5-6637-49b9-b3ca-ded5f7b76c3b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="84dd2027-6840-4fd5-80bf-e6eecc3e6b3b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bola 
\entryTyp root 
\gENG 
\gSPN 
\e +bola 
\c N0 
\ach bo:la 
\akh bo:la 
\acl bo:la 
\akl bo:la 
\ame bo:la</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="6bccfbde-5387-4104-ad3f-518143a1ed01" ownerguid="f03b07e0-70c5-45e7-805f-35a0d5b59009"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="6bd023f6-730e-44c2-ae8f-78df967e2e18" ownerguid="d9f336cf-0682-4702-ab94-5ade755ddc64"> -<Abbreviation> -<AUni ws="en">7.3.2.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.528" /> -<DateModified val="2022-9-23 16:55:8.528" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to pulling--causing something to move toward you.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15Y Pull, Draw, Drag x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Pull</AUni> -</Name> -<Questions> -<objsur guid="6eb49a8d-e177-4441-81d9-26fd5d6a2e73" t="o" /> -<objsur guid="8f5b098c-593f-4b3f-aa5f-dd9cc09505ac" t="o" /> -<objsur guid="c75f2609-ee69-4231-b2cc-51b064b4c7a2" t="o" /> -<objsur guid="132dd35d-b261-4043-93c2-e6863d7ee865" t="o" /> -<objsur guid="dc44bbf5-d5ba-479f-bda2-4ef0b4e0c492" t="o" /> -<objsur guid="e6d1dfe9-c5e6-4195-b607-23294dd5ab27" t="o" /> -<objsur guid="ebd49e85-ce16-41d4-a556-2cf2dbbd693f" t="o" /> -<objsur guid="0b8bc71f-8917-40b7-9d27-cddf405a8fc6" t="o" /> -<objsur guid="f346af80-ca9c-49df-9f74-b4dbb0ebde7a" t="o" /> -<objsur guid="671f2098-d983-441e-b5c2-1c26b70ff398" t="o" /> -<objsur guid="eeb54df3-910b-47f1-bda8-299879ef8502" t="o" /> -<objsur guid="411b1ec5-6972-4239-a00a-648175abbbda" t="o" /> -<objsur guid="ddda2ff1-39f3-4741-9190-acfc93033351" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="6bd29dea-8b29-4e19-b798-3f80a416b32c" ownerguid="1b211112-9a9c-4f18-9a73-8609cb590d7b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">inheritance</AUni> -<AUni ws="es">herencia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e5be6e0e-dc97-4f22-b748-c4678de7cf60" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="6bd3c638-a676-4e7d-85ef-f791017ed50b" ownerguid="2da260cb-03fd-4433-b51b-986bded9b951"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lack</AUni> -<AUni ws="es">faltar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="353ad767-f58d-4e54-b02b-24d238ea3095" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="6bd613df-153c-4d54-b3d0-936e7a6544bc" ownerguid="8f5e1e2c-6e74-4e23-8a6c-d77e4d169506"> -<Form> -<AUni ws="qvm-x-ach">sinya</AUni> -<AUni ws="qvm-x-acl">sinya</AUni> -<AUni ws="qvm-x-akh">sinya</AUni> -<AUni ws="qvm-x-akl">sinya</AUni> -<AUni ws="qvm-x-ame">sinya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="6bda8a7e-628f-4114-9c86-ba3b42f31d3f" ownerguid="b727ef2e-5f1f-4c7f-8f99-4621642f648d"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="a0812d74-9b7a-4a74-b504-a941af5f1579" t="o" /> -<objsur guid="cd239706-69ae-46c2-9a9c-05c053f5709e" t="o" /> -<objsur guid="edc1eb64-4cca-44a5-bc65-29c6803b00c2" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="6bdfb06f-b384-470b-9aef-d4d27ada736a" ownerguid="7c234ccc-0dbe-42b0-a377-db99ebd2b51e"> -<ExampleWords> -<AUni ws="en">fish, fish for, hook, net, spear, bait</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words are used for killing fish?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6be18097-ac5a-48fe-a5ed-53f7ddc1bd89" ownerguid="294d3bf5-366a-40fb-94ed-efe086be3b60"> -<Form> -<AUni ws="qvm-x-ach">traduci</AUni> -<AUni ws="qvm-x-acl">traduci; traduce</AUni> -<AUni ws="qvm-x-akh">traduci</AUni> -<AUni ws="qvm-x-akl">traduci; traduce</AUni> -<AUni ws="qvm-x-ame">traduci</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="6beba4c5-15eb-4b2b-b9fc-b8639c07172d" ownerguid="59d6cf52-5c9a-4333-a6fb-8ee99d077dc1"> -<Form> -<AUni ws="qvm-x-ach">chucru</AUni> -<AUni ws="qvm-x-acl">chucru; chucro</AUni> -<AUni ws="qvm-x-akh">chukru</AUni> -<AUni ws="qvm-x-akl">chukru; chukro</AUni> -<AUni ws="qvm-x-ame">chukru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="6bed5062-0d3c-4c4b-9f2d-cba6a7f19a23"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">presta</AUni> -<AUni ws="qvm-x-acl">presta</AUni> -<AUni ws="qvm-x-akh">presta</AUni> -<AUni ws="qvm-x-akl">presta</AUni> -<AUni ws="qvm-x-ame">presta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+prestar</AUni> -<AUni ws="qvm-x-acl">+prestar</AUni> -<AUni ws="qvm-x-akh">+prestar</AUni> -<AUni ws="qvm-x-akl">+prestar</AUni> -<AUni ws="qvm-x-ame">+prestar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.921" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dbce349c-fac9-4c3f-9144-d3aa10ddd9d5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+prestar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="75ca7d64-e275-4d72-945a-578fc85ff45c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ebfa4a88-c1c3-4db3-b25a-888b836bb7ce" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +prestar 
\entryTyp root 
\gENG loan 
\gSPN prestar 
\e +prestar 
\c V2 
\ach presta 
\akh presta 
\acl presta 
\akl presta 
\ame presta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="6beda555-823b-4390-8f8a-28406e68b5f8" ownerguid="1b905486-22ee-41e4-89cf-3c0e512bbc63"> -<Form> -<AUni ws="qvm-x-ach">chapi</AUni> -<AUni ws="qvm-x-acl">chapi; chape</AUni> -<AUni ws="qvm-x-akh">chapi</AUni> -<AUni ws="qvm-x-akl">chapi; chape</AUni> -<AUni ws="qvm-x-ame">chapi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6bf11594-247e-4669-8800-fabeb8b69adf" ownerguid="cddde224-2249-4742-b325-3d8b84dc578b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6bf19106-bf3c-4507-9752-658a89fbf847" ownerguid="eb662979-604c-455e-a2c6-a84b03a2ee3a"> -<ExampleWords> -<AUni ws="en">too early, too soon, untimely, premature, prematurely, jump the gun</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that something happens too early?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="6bf335ea-7f65-4675-8634-005803550c98" ownerguid="32fce4a2-2ad8-44e3-86a8-d9417cecec55"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Canan mana chasquimarga yapaychöga wagratami tarinquipag.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="6bf7569e-dc79-49da-9ce1-e2e03303828a" ownerguid="87bd0d45-8a94-41cb-9864-90d53a11a4b9"> -<Abbreviation> -<AUni ws="en">4.7.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to punishing someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>38 Punish, Reward; 38A Punish</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Punish</AUni> -</Name> -<OcmCodes> -<Uni>681 Sanctions</Uni> -</OcmCodes> -<Questions> -<objsur guid="13b08dd5-8889-4a04-81f7-1025b04ac6cd" t="o" /> -<objsur guid="91fb4077-c006-44e2-a694-bb3ea906d036" t="o" /> -<objsur guid="197eac6b-4957-4e08-9122-d9c8bcdbfa63" t="o" /> -<objsur guid="c40df845-e32d-4b58-9d9e-d41339ea97a2" t="o" /> -<objsur guid="c86dbd85-d123-4680-9232-fe1e0fa66b29" t="o" /> -<objsur guid="83b0bae7-501e-41b1-ac18-4f90155fbc29" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="ba98f891-77df-4910-8657-38f4ba79d3a5" t="o" /> -<objsur guid="feca6b23-1ca1-4d99-ac79-3672d1d1f7db" t="o" /> -<objsur guid="13f62fa1-589c-4a46-9bbc-b0fd1001e21f" t="o" /> -<objsur guid="bf5175f6-fbe4-4ac6-9041-f8aa78b7ac78" t="o" /> -<objsur guid="55a7b809-4196-4c5a-a6d6-09b586ce71e7" t="o" /> -<objsur guid="9fcae400-ce8f-4e30-9516-97ab794c30a9" t="o" /> -<objsur guid="62efa729-0920-4933-93f3-b6a48519a5c7" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="6bf7ceaa-d5fb-45fa-bfde-a66a8e8d0d33"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">valura</AUni> -<AUni ws="qvm-x-acl">valura</AUni> -<AUni ws="qvm-x-akh">valura</AUni> -<AUni ws="qvm-x-akl">valura</AUni> -<AUni ws="qvm-x-ame">valura</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+valorar</AUni> -<AUni ws="qvm-x-acl">+valorar</AUni> -<AUni ws="qvm-x-akh">+valorar</AUni> -<AUni ws="qvm-x-akl">+valorar</AUni> -<AUni ws="qvm-x-ame">+valorar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.343" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="511f6164-bae2-494a-9e7f-7d02e8c14ad6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+valorar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1f274cd5-6d8a-4e22-b22d-93d08989aaef" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e1f515b4-cdb7-4aec-aa7d-7a3a00716b56" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +valorar 
\entryTyp root 
\gENG muster.courage 
\gSPN valorar 
\e +valorar 
\c V2 
\mp +assimilated 
\ach valura 
\akh valura 
\acl valura 
\akl valura 
\ame valura 
\i PRO 4.8 Tantyacog captiquega pïmaypis valurashushpayqui respitashunquipagmi.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="6bf8ce57-1970-4efb-a7d7-b0bf8be6fb6b" ownerguid="1f4efae7-1029-4b66-80ee-802459a7baf5"> -<Abbreviation> -<AUni ws="en">8.4.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the right time to do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Right time</AUni> -</Name> -<Questions> -<objsur guid="fd57832e-395d-47d5-b6d4-c97ec80f4937" t="o" /> -<objsur guid="8ef08293-7486-4c62-91ac-a4fa4a7379f1" t="o" /> -<objsur guid="50859e3e-0e93-4436-ba72-26447e905151" t="o" /> -<objsur guid="54e09d48-ff80-467e-905e-a6fcf063feb1" t="o" /> -<objsur guid="31990a6a-8a08-4700-9ef2-5e0d9ca45f53" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="eb662979-604c-455e-a2c6-a84b03a2ee3a" t="o" /> -<objsur guid="b7b0819b-eceb-4f16-ae6d-2298c4df1e6f" t="o" /> -<objsur guid="6fb1d03c-b0fe-49b7-a473-168f12a54a36" t="o" /> -<objsur guid="4526b41d-6f3c-494f-93a2-ea3e9705269d" t="o" /> -<objsur guid="daefd275-98e3-4534-a991-c7d396b54c69" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="6bf8fb6b-eb6f-40b7-aa27-d253a7722838" ownerguid="3b69f6b6-d64a-43aa-99dc-05e34f81e07f"> -<ExampleWords> -<AUni ws="en">hired hand, employee</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something that has been hired?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6bf8ff56-5aa8-43bb-8f2c-e7d0ceeef32f" ownerguid="3fdba5e5-eb24-4b2f-a6fc-d1ed7397c39c"> -<ExampleWords> -<AUni ws="en">classroom, lecture hall, playground, sports field, gymnasium, auditorium, staffroom</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a place in a school?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="6bfb7813-3a7d-47e2-88e1-d54034c07e5d" ownerguid="5ea9301a-9906-4e81-97cf-48ee95a54c63"> -<Abbreviation> -<AUni ws="en">3.3.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to giving someone advice or counsel, for instance recommending a wise course of action.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33A' Advise</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Advise</AUni> -</Name> -<Questions> -<objsur guid="c9e34a39-66f1-47ba-bf11-3e854375bafd" t="o" /> -<objsur guid="128f027c-5798-48b9-b326-d9ae9789fe02" t="o" /> -<objsur guid="f3338db9-c9ca-4585-b5f1-a6ac122903ce" t="o" /> -<objsur guid="705c4bb9-4fe7-4731-a06b-1ed4b80ec5fd" t="o" /> -<objsur guid="ef3b607f-25d2-4721-a8df-e722fe26658c" t="o" /> -<objsur guid="612456d7-00c0-418c-b5c6-9728dbf549d0" t="o" /> -<objsur guid="52aad4ae-3f6d-42f4-971f-5b0040448282" t="o" /> -<objsur guid="0c3202ee-5449-46f8-b04e-dea305a8fd89" t="o" /> -<objsur guid="38015e31-1471-455a-867a-94611f8d0c6c" t="o" /> -<objsur guid="bc1ba6be-286d-49be-8620-3c858ba6e413" t="o" /> -<objsur guid="152bbf43-b428-4755-8492-9baede14414f" t="o" /> -<objsur guid="c947e48d-84b1-47d6-8db3-e91abdf9cd6a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="6bfb8270-c97e-40b5-afac-e7bb4cd4008f" ownerguid="8f3ca5ee-a855-4813-aff8-7c1eae13a948"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">na</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">na</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">na</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">na</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">na</Run> -</AStr> -</Form> -<Morph> -<objsur guid="99b46deb-a91d-4222-a9fc-6c1a15fed4be" t="r" /> -</Morph> -<Msa> -<objsur guid="a5b30965-e5c8-452a-9057-ed02c784d19b" t="r" /> -</Msa> -</rt> -<rt class="LexExampleSentence" guid="6bfb90cf-1c34-474a-b057-ad8d6063e989" ownerguid="2de85fd6-01d9-4b92-9d3f-8d05106f8a6c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">GEN 34.8 Tsurë Shequemmi panikipaq pasaypa namurädu kashpan löcuyashqa puriykan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="6bfc7703-3351-4580-919f-5da95152633d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">barilla</AUni> -<AUni ws="qvm-x-acl">barilla</AUni> -<AUni ws="qvm-x-akh">barilla</AUni> -<AUni ws="qvm-x-akl">barilla</AUni> -<AUni ws="qvm-x-ame">barilla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+barilla</AUni> -<AUni ws="qvm-x-acl">+barilla</AUni> -<AUni ws="qvm-x-akh">+barilla</AUni> -<AUni ws="qvm-x-akl">+barilla</AUni> -<AUni ws="qvm-x-ame">+barilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.949" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f8141da3-814e-4a8d-a8fa-04b0fbaf1e84" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+barilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="613e8b36-988d-4010-bfc1-de5baba10dfc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="251a7adc-f3d5-4fb5-b38b-d8f8edc130da" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +barilla 
\entryTyp root 
\gENG rod 
\gSPN barilla 
\e +barilla 
\c N0 
\ach barilla 
\akh barilla 
\acl barilla 
\akl barilla 
\ame barilla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="6bfcad87-4c40-45aa-9ca1-f80cba8d86ef" ownerguid="a4ac260f-3c24-41af-90dc-c88e7a8fe6ff"> -<Form> -<AUni ws="qvm-x-ach">palumita</AUni> -<AUni ws="qvm-x-acl">palumita</AUni> -<AUni ws="qvm-x-akh">palumita</AUni> -<AUni ws="qvm-x-akl">palumita</AUni> -<AUni ws="qvm-x-ame">palumita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="6bfff551-e79e-4d74-b8ed-74b0a562c240" ownerguid="a3114026-3243-493e-b04d-4cd401fb8d7b"> -<Form> -<AUni ws="qvm-x-ach">cïta</AUni> -<AUni ws="qvm-x-acl">cïta</AUni> -<AUni ws="qvm-x-akh">cïta</AUni> -<AUni ws="qvm-x-akl">cïta</AUni> -<AUni ws="qvm-x-ame">cïta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="6c060d45-e752-454e-a434-cc8db561d0f0" ownerguid="faea150f-b612-4fce-81b2-06d69eda8a9e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yargu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yargu; yargo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yarqu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yarqu; yarqo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yarqu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7c95fb99-2d6d-47b6-9f44-63117f03e73c" t="r" /> -</Morph> -<Msa> -<objsur guid="c28bfe3d-38df-47f4-81ac-47db4ce988b5" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="6c071281-d180-4ca1-a1cb-f3a738783b6e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yarpu; yarpa</AUni> -<AUni ws="qvm-x-acl">yarpu; yarpo; yarpa</AUni> -<AUni ws="qvm-x-akh">yarpu; yarpa</AUni> -<AUni ws="qvm-x-akl">yarpu; yarpo; yarpa</AUni> -<AUni ws="qvm-x-ame">yarpu; yarpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yarpU</AUni> -<AUni ws="qvm-x-acl">*yarpU</AUni> -<AUni ws="qvm-x-akh">*yarpU</AUni> -<AUni ws="qvm-x-akl">*yarpU</AUni> -<AUni ws="qvm-x-ame">*yarpU</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.760" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a66c9853-b76b-40da-ac63-81394bc169b3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yarpU</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bd4a9fba-575f-43ec-8324-09471393e5c9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="48d0c7a3-4663-4818-b5bb-b30cce6502e2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yarpU 
\entryTyp root 
\gENG go.down 
\gSPN bajar 
\e *yarpU 
\c V1 
\mp PMlowered 
\ach yarpu 
\ach yarpa morphlowered 
\akh yarpu 
\akh yarpa morphlowered 
\acl yarpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl yarpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl yarpa morphlowered 
\akl yarpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yarpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yarpa morphlowered 
\ame yarpu 
\ame yarpa morphlowered 
\mcc *yarpU / ~_ PLALL 
\mcc *yarpU / ~_ PLALL 
\mcc *yarpU / ~_ DELIB | too much ambig. w/ yarpachacäri-</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="6c0c1026-9c4a-4a96-842c-95b3907a3800" ownerguid="1fad303d-4172-455c-83f0-a7f5f5f1fdc3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">witch</AUni> -<AUni ws="es">bruja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="154d5962-c193-4f45-9429-def61ba135ac" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="6c0ca01b-4c30-4d9f-828f-4fe98adeb3ca" ownerguid="d1d983c7-abaa-4170-8b64-2e744f110d44"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="471c929e-ab44-40c7-b400-6ebe90c0ab3e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6c101ec3-8fc7-4d4d-b763-c0a31d139e77" ownerguid="858af232-b570-4153-b4c0-f60930df9ced"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">X <seems to> be true.; X <appears to> be true.; <It sounds to me like> X is true.; <It appears that> X is true.; <To all appearances> X is true.; <All indications are that> X is true.; <It looks suspiciously like> X is true.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">seem, appear, look, sound, give the impression, have a (certain) look, come across as, show signs of, strike someone as, have all the hallmarks of, an air of, give the impression</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something seems to be a certain way, but you are unsure?</AUni> -</Question> -</rt> -<rt class="WfiGloss" guid="6c117287-8b8a-47d1-814c-1ee3cf365266" ownerguid="621ef4a5-ba61-48b2-8393-72b1b27b64e7"> -<Form> -<AUni ws="en">really</AUni> -<AUni ws="es">realmente</AUni> -</Form> -</rt> -<rt class="LexSense" guid="6c13a882-bd9e-4040-b5d3-65b990b7ac92" ownerguid="fc41b0e3-a152-4c00-aeb0-2d848cd8862f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">same</AUni> -<AUni ws="es">iqual</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ce4246f6-d65c-4482-a414-6003382dd33b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6c13b21e-a7e8-41b0-b28a-af486b908ec8" ownerguid="13f62fa1-589c-4a46-9bbc-b0fd1001e21f"> -<ExampleWords> -<AUni ws="en">release, let go, let out of prison, set free</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to the action of releasing a person from prison?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6c158a12-845e-42d0-a8c3-c0ee8e94849b" ownerguid="c8602dc5-5c91-480a-b5ce-1c82fe3da83a"> -<ExampleWords> -<AUni ws="en">grind, gnash</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to moving the teeth against each other?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6c164a2a-2102-4a8e-b922-58c82d5cc8f6" ownerguid="8e2d7300-2826-497b-a811-c59a01e9e804"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bump</AUni> -<AUni ws="es">dar.sacudidas</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7e4db14a-c9bc-4f18-b4da-49dc59c4cfad" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6c197c3f-064c-4823-a8e4-89b47021fb65" ownerguid="1ad294b3-e347-4e6e-97a2-a8296e77c929"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoInflAffixSlot" guid="6c1a55b7-decb-4da3-86ca-e0b8dc1a89c0" ownerguid="7a161b46-6c84-4aea-9bb7-4af1aaee8790"> -<Name> -<AUni ws="en">possession</AUni> -</Name> -<Optional val="True" /> -</rt> -<rt class="MoStemMsa" guid="6c1f7a2e-0103-4d51-9cff-2a5a42e454dc" ownerguid="3b913de5-6dfe-410d-ab77-8d0cf51b5314" /> -<rt class="CmDomainQ" guid="6c1fe473-e3cf-4717-b6ff-6710aca0ea38" ownerguid="27048124-c204-4585-9997-c51728f085d6"> -<ExampleWords> -<AUni ws="en">unappreciated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe someone that no one thanks?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6c202062-b233-4a30-adc4-eb9a0478b780" ownerguid="467dd680-ac64-4dc4-8a17-1cfe297d3392"> -<ExampleWords> -<AUni ws="en">simplify</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to making something simpler?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6c212b54-1448-49cd-b3aa-ff68e04d0ea6" ownerguid="b442fdfb-24b1-4f86-b323-e2ef84572018"> -<Form> -<AUni ws="qvm-x-ach">europa</AUni> -<AUni ws="qvm-x-acl">europa</AUni> -<AUni ws="qvm-x-akh">europa</AUni> -<AUni ws="qvm-x-akl">europa</AUni> -<AUni ws="qvm-x-ame">europa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="6c221ffd-32f0-4d16-84b6-d2c488c9f7fc" ownerguid="d623a7c6-2f25-42e0-b25a-1e5a53c5533a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 9.30,31 Jabunwan mayjina maylacuptëpis lijyawan maquëta maylacuptëpis asyag mitumanchari jatirpamanqui.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="6c246f41-4e36-484f-9c43-137a30852e3e" ownerguid="b608174e-b249-42d5-bcbe-af80eca90ea1"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="6c24b8fa-a36d-4bd7-83f8-fb9041b87659" ownerguid="62200976-7753-4c79-bb7c-bf130fdf7f7f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="999eb12b-3503-4e58-b153-641cf0ba29b0" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">brood</AUni> -<AUni ws="es">empollo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="67c94aa7-2a6a-4721-80d1-7bc378b46384" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="6c24ca18-c7e8-4af3-925b-ece688adc078" ownerguid="b7eaa4f1-8aa8-4f77-9cf2-2bc36d5cc650"> -<Form> -<AUni ws="qvm-x-ach">chimpi</AUni> -<AUni ws="qvm-x-acl">chimpi; chimpe</AUni> -<AUni ws="qvm-x-akh">chimpi</AUni> -<AUni ws="qvm-x-akl">chimpi; chimpe</AUni> -<AUni ws="qvm-x-ame">chimpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6c256094-2752-4a59-a2f6-2bec499b7159" ownerguid="e0e83cc9-b876-47f6-8e66-60c9c505b927"> -<ExampleWords> -<AUni ws="en">safe, harmless, out of harm's way</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is not dangerous?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="6c26ac5f-35d0-49b8-9f33-d9cebdfe844e" ownerguid="4231feeb-d7d1-4f48-907e-6cbe21827c29"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="6c2748b2-45b7-4874-822a-b3df7c74e0ce" ownerguid="f654fd6f-7805-4f0e-bd1e-be4ace5e7fd0"> -<Form> -<AUni ws="qvm-x-ach">atsa</AUni> -<AUni ws="qvm-x-acl">atsa</AUni> -<AUni ws="qvm-x-akh">atsa</AUni> -<AUni ws="qvm-x-akl">atsa</AUni> -<AUni ws="qvm-x-ame">atsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="6c282031-f1ca-492a-b94c-b48e74e6f25d" ownerguid="3dd684e6-75d9-41f4-aaa3-fb0cb3c7d400"> -<Abbreviation> -<AUni ws="en">4.4.4.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to freeing someone from bondage.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Free from bondage</AUni> -</Name> -<Questions> -<objsur guid="7ae7e27e-2ce1-4d6b-8031-be8cb0fd76f3" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="c8c74ec6-3f7a-4b45-b0e9-399b97c4a800" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="6c300425-9386-4b6f-98ba-a06dc3029ac3" ownerguid="14e9c20c-6eb5-49a4-a03f-3be26a934500"> -<ExampleWords> -<AUni ws="en">reservoir, man-made lake, catchment area</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a man-made lake?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="6c305af5-cff5-4f7f-bd89-040d4c265355" ownerguid="c05bf8c3-78f2-4ec5-b0d7-32d4963a5794"> -<Abbreviation> -<AUni ws="en">8.3.6.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is dense.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Dense</AUni> -</Name> -<Questions> -<objsur guid="a1d479e6-fef7-4ee8-a2fc-cf9a2bee6e27" t="o" /> -<objsur guid="d2c98f99-4c58-4c0e-a350-000398c45d2f" t="o" /> -<objsur guid="d1a4fa83-7568-4d27-acfc-600aaf6541d9" t="o" /> -<objsur guid="98245850-8657-48d9-b6ec-05d30bd1229b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="6c32038c-adf3-4085-bde3-cd2f21a421ba" ownerguid="7df3078c-f681-4123-a712-4b83e438ea1d"> -<Abbreviation> -<AUni ws="en">7.4.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for throwing away something that you no longer want.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Throw away</AUni> -</Name> -<Questions> -<objsur guid="32906471-98ec-4463-a89b-ee0cf3e88ad3" t="o" /> -<objsur guid="b6445800-b043-4aee-baab-0d7290d0025a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="6c33f89d-3f7a-4bad-b071-ac31d875398c" ownerguid="a9c4f4e2-a920-42ce-8481-96be634806b0" /> -<rt class="Segment" guid="6c34173b-be71-4a88-98fe-ba78babe6492" ownerguid="2be397ad-0921-4bd7-96cc-5f352c2f8f51"> -<Analyses> -<objsur guid="54a66603-d266-4e82-89f5-2fae943bc5cd" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoInflAffMsa" guid="6c34753a-e6ec-4e61-a9eb-6c7283150496" ownerguid="971928bd-969f-4a1f-92bb-c3a816d15d5a"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="0eb1d65f-6889-40e2-a5ee-818feedf259c" t="r" /> -</Slots> -</rt> -<rt class="LexEntry" guid="6c34ed1c-189e-4f74-bd48-58fc5bad6b5b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">togru</AUni> -<AUni ws="qvm-x-acl">togru; togru; togro</AUni> -<AUni ws="qvm-x-akh">toqru</AUni> -<AUni ws="qvm-x-akl">toqru; toqru; toqro</AUni> -<AUni ws="qvm-x-ame">tuqru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tuqru</AUni> -<AUni ws="qvm-x-acl">*tuqru</AUni> -<AUni ws="qvm-x-akh">*tuqru</AUni> -<AUni ws="qvm-x-akl">*tuqru</AUni> -<AUni ws="qvm-x-ame">*tuqru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.7" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0349d046-3559-4a4f-86b3-cdc55ff309ca" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tuqru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8a64b3a7-e527-4e34-b6f0-06fe00cb1d85" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a3ca4c7d-7c78-4e4a-a4bf-1526dcc58d0f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tuqru 
\entryTyp root 
\gENG snot 
\gSPN moco 
\e *tuqru 
\c N0 
\ach togru 
\akh toqru 
\acl togru / _# 
\acl togru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl togro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl toqru / _# 
\akl toqru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl toqro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tuqru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="6c368bbd-9cf9-47d8-ac11-cff7aa50b13f" ownerguid="7a26a6e3-5fd9-4921-a5c6-5962f9011330"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ab52bd72-851a-4989-92eb-40f5c1118148" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6c36a02e-c7c5-48de-85ab-e33d78e170e9" ownerguid="5fccd177-1059-44ce-9e5c-ced1350c9027"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="6c36a680-4ff4-43b9-a7c2-9037ceb0d3f6" ownerguid="080bf07b-e58b-4a75-bb97-84d980a143f0"> -<Abbreviation> -<AUni ws="en">8.3.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.607" /> -<DateModified val="2022-9-23 16:55:8.607" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to being round.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Round</AUni> -</Name> -<Questions> -<objsur guid="cf6494a0-7632-4819-bf64-1c07935ebd61" t="o" /> -<objsur guid="115aa277-205f-4eab-85a7-a66acaa9be9d" t="o" /> -<objsur guid="b56322ff-4640-45e4-a8a7-bcdf519217db" t="o" /> -<objsur guid="5f583609-45ae-4840-8d20-f829410afeed" t="o" /> -<objsur guid="8162258b-f214-4140-9a59-5110e15e746c" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="2d563d27-8ac3-41c9-b326-856c9e1f6401" t="o" /> -<objsur guid="995ee828-2393-462b-be82-47f5b5439aaf" t="o" /> -<objsur guid="3d10e03a-7902-458d-9c45-938da103d639" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="6c36f347-52ed-435f-b9ad-3b674afab45c" ownerguid="874c2463-a6f7-410a-86e6-f77dfb4ef4a3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="6c37dfc7-b8c7-4533-949b-4de1de4bd1a2" ownerguid="496e6b38-e08a-488c-aeb0-0f0a41c969ea"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">LAM 3.19 Pasaypa asgag ajincuta y venënuta upushganogmi nacaycä.</Run> -</AStr> -</Example> -</rt> -<rt class="PunctuationForm" guid="6c3a760e-8f5b-495f-9b92-a80aa2b4e8f8"> -<Form> -<Str> -<Run ws="en">CAUS</Run> -</Str> -</Form> -</rt> -<rt class="MoStemMsa" guid="6c3cec89-f390-4f9f-bb98-f467abda4edd" ownerguid="1f3f3064-6df3-4816-8964-16423bb8cbce"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6c3d2b09-af63-48ed-8c97-2df8c2cb2796" ownerguid="ec1bcace-fc10-45df-8e1f-29bce1ef786a"> -<ExampleWords> -<AUni ws="en">speak with, converse, carry on a conversation, talk with, talk to, chat, discuss</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to carrying on a conversation with other people?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6c3f3aee-ccbe-4ed2-b0bf-3ccde5af9e00" ownerguid="9bafc137-21e0-4383-9b24-c734aef576c3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">waychaw</AUni> -<AUni ws="es">huaychau</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8aa28462-2157-4f8a-b78c-ed4eb75b8c59" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6c435fc1-180d-4a31-a63c-7139eced6fa1" ownerguid="fb1e64ab-fced-4693-8ffe-9e8f0b9c35a3"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="6c463301-0796-43d5-ab5e-812529e4bf17" ownerguid="80637c82-f211-4619-adc5-3c6ecda29ff2"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="6c46a6df-b494-4e0b-830e-fabf4715ff09" ownerguid="b009c052-e6f2-4166-a257-69dab97ab896"> -<Form> -<AUni ws="qvm-x-ach">hïju</AUni> -<AUni ws="qvm-x-acl">hïju; hïju; hïjo</AUni> -<AUni ws="qvm-x-akh">hïju</AUni> -<AUni ws="qvm-x-akl">hïju; hïju; hïjo</AUni> -<AUni ws="qvm-x-ame">hïju</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="6c495290-8d8f-4c29-982d-cbad51aa3dc3" ownerguid="f17a53aa-4777-4503-90f8-a446963c2acf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">prepare</AUni> -<AUni ws="es">preparar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="abdac764-9edb-46c8-b650-08a309a28764" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6c4aa1e1-0256-4701-aba4-930d855ef1f9" ownerguid="986e2ed8-9085-4f9d-ab90-8e5ceb24a48c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="6c4b744b-9c17-463a-961c-4210d7825dee"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsara; tsara:</AUni> -<AUni ws="qvm-x-acl">tsara; tsara:</AUni> -<AUni ws="qvm-x-akh">tsara; tsara:</AUni> -<AUni ws="qvm-x-akl">tsara; tsara:</AUni> -<AUni ws="qvm-x-ame">tsara; tsara:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chara:</AUni> -<AUni ws="qvm-x-acl">*chara:</AUni> -<AUni ws="qvm-x-akh">*chara:</AUni> -<AUni ws="qvm-x-akl">*chara:</AUni> -<AUni ws="qvm-x-ame">*chara:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.293" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="966a5570-fe4a-4983-b9e7-8324ba54f0d4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chara:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2b8bc574-dd91-4475-a7ae-fc75e3ba292c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ae6a018a-b931-45ea-8151-70a2bf83d1d2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chara: 
\entryTyp root 
\gENG hold 
\gSPN agarrar 
\e *chara: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach tsara foreshortened 
\ach tsara: 
\akh tsara foreshortened 
\akh tsara: 
\acl tsara foreshortened 
\acl tsara: 
\akl tsara foreshortened 
\akl tsara: 
\ame tsara foreshortened 
\ame tsara:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="6c4cd593-153e-465c-8d0e-88450e81f41f" ownerguid="a206887b-8a9d-455a-9585-c53ca146e484"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="6c4e27b3-6145-4a86-bab2-2fb8df03e02e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">dañe:ru</AUni> -<AUni ws="qvm-x-acl">dañe:ru; dañe:ru; dañe:ro</AUni> -<AUni ws="qvm-x-akh">dañe:ru</AUni> -<AUni ws="qvm-x-akl">dañe:ru; dañe:ru; dañe:ro</AUni> -<AUni ws="qvm-x-ame">dañe:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+dañero</AUni> -<AUni ws="qvm-x-acl">+dañero</AUni> -<AUni ws="qvm-x-akh">+dañero</AUni> -<AUni ws="qvm-x-akl">+dañero</AUni> -<AUni ws="qvm-x-ame">+dañero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.364" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8459aa62-9903-4fa2-905d-32a8f32d9e69" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+dañero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0bd9488a-4880-497e-b8d2-dd73cdffae01" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="903beca1-13ed-4268-8e10-a28927e8f75c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +dañero 
\entryTyp root 
\gENG 
\gSPN 
\e +dañero 
\c N0 
\ach dañe:ru 
\akh dañe:ru 
\acl dañe:ru / _# 
\acl dañe:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl dañe:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl dañe:ru / _# 
\akl dañe:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl dañe:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame dañe:ru 
\i ISA 2.11 Ali chölutucogcunapis dañëru cuchinogmi upäla mayaranga.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="6c4fae2d-8d4e-455f-aaf1-ed8764160359" ownerguid="82c34ac9-f8ec-4f31-9d54-f4f6f15f3e0e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="6c5048db-06ef-43df-9d21-16ac9d6895da" ownerguid="ff08921e-f93c-4d2d-abda-b1fa76c32f18"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tie</AUni> -<AUni ws="es">amarrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="44080016-486f-4ae9-9a62-11ad198835ec" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6c53ad49-78da-4d25-8df2-8be6b3008af1" ownerguid="d117aa22-3f18-47c4-9683-51ecf1dc7134"> -<ExampleWords> -<AUni ws="en">wood, rings, heartwood, pith, pulp, fiber</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What is the inside of a plant called?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="6c54f0b0-b056-4090-b3f0-d5ec6710d4ab" ownerguid="73d580ac-dc89-474c-8048-3453ebdda807"> -<Abbreviation> -<AUni ws="en">8.2.6.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.597" /> -<DateModified val="2022-9-23 16:55:8.597" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that something is low--in the air but not high above the ground.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>81B High, Low, Deep</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Low</AUni> -</Name> -<Questions> -<objsur guid="bb9658a8-0305-445b-99a8-ade5747c5ada" t="o" /> -<objsur guid="f1f00037-3c43-49cf-a126-77c967327355" t="o" /> -<objsur guid="8eeb1f11-f4e1-4732-8931-6600625a8c4d" t="o" /> -<objsur guid="e5bc3a6f-9f19-460f-9453-754fbc3ea0a6" t="o" /> -<objsur guid="1eaea8cf-295c-4793-82a6-8d6d1a4101b3" t="o" /> -<objsur guid="3ffa6c2c-234f-4e40-9a16-266449f5580b" t="o" /> -<objsur guid="5b4351f0-b277-4618-9e06-57b98721db7b" t="o" /> -<objsur guid="489a93de-9ffb-48ec-b950-e7535566e0ad" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="6c56fe1f-e207-4b80-b6db-4bb3165c4ee1" ownerguid="74461226-babd-4ce9-a921-8a7ed8cc39c4"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">NUM 23.8 Tsayno nimaptinpis Tayta Dios mana munaykaptenqa ¿imanöpataq maldicionäman?</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="6c5864ce-bd4c-40b8-b025-3eaf7f4c0ebf" ownerguid="063e0810-8e49-44ef-aa8f-bb9e63bb66dd"> -<ExampleWords> -<AUni ws="en">buyer, customer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to someone who buys something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6c587661-4923-4cdc-807d-1516a8557a9d" ownerguid="ed2113c8-1784-4808-ab1a-fd269f86fa99"> -<ExampleWords> -<AUni ws="en">accounting, account, accountant, CPA, ledger</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to accounting?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6c5b4bfd-bd0f-40be-9c25-066f9a1a5be8" ownerguid="c02e9b48-7a05-46bc-9157-c0933f8e850f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="6c5e6d98-80da-4d45-9105-abb3bf577f75" ownerguid="18147a68-b70a-4610-aa92-2f7c676b385b"> -<Form> -<AUni ws="qvm-x-ach">ashta</AUni> -<AUni ws="qvm-x-acl">ashta</AUni> -<AUni ws="qvm-x-akh">ashta</AUni> -<AUni ws="qvm-x-akl">ashta</AUni> -<AUni ws="qvm-x-ame">ashta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="6c6259f0-eca6-4a30-8662-eedbaf293527" ownerguid="541dfa10-bf97-4713-a534-9cbcc7f66bc9"> -<Abbreviation> -<AUni ws="en">3.2.5.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.103" /> -<DateModified val="2022-9-23 16:55:8.103" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to changing your mind--to change what you think about something, or change your plans or decisions.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Change your mind</AUni> -</Name> -<Questions> -<objsur guid="c9c70909-3725-4c29-846d-f7b5b1856037" t="o" /> -<objsur guid="0d01b439-9b5e-44fc-a9e9-ec102ec48c3f" t="o" /> -<objsur guid="8e618530-14d9-4576-87cf-f5ccfeeaf16d" t="o" /> -<objsur guid="00e353bb-63af-4ee6-b012-8c517cb725ac" t="o" /> -<objsur guid="7c18855a-c8b5-440a-88f4-1e30f620bc35" t="o" /> -<objsur guid="3c91ce2a-2980-40cd-a2e7-62b381a2086b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="6c64a7bf-5ee7-4a87-951e-d60522364782"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">logyu</AUni> -<AUni ws="qvm-x-acl">logyu; logyu; logyo</AUni> -<AUni ws="qvm-x-akh">loqyu</AUni> -<AUni ws="qvm-x-akl">loqyu; loqyu; loqyo</AUni> -<AUni ws="qvm-x-ame">luqyu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lluqyu</AUni> -<AUni ws="qvm-x-acl">*lluqyu</AUni> -<AUni ws="qvm-x-akh">*lluqyu</AUni> -<AUni ws="qvm-x-akl">*lluqyu</AUni> -<AUni ws="qvm-x-ame">*lluqyu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.235" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7edd9d95-b334-4f67-9d7c-d177c2c048ac" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lluqyu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="00fced91-573a-4814-a689-b3985362864e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="91d8da97-ae12-4b4a-93cd-fb8dbca9c441" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lluqyu 
\entryTyp root 
\gENG succulent 
\gSPN ? 
\e *lluqyu 
\c N0 
\ach logyu 
\akh loqyu 
\acl logyu / _# 
\acl logyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl logyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl loqyu / _# 
\akl loqyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl loqyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame luqyu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="6c64fb21-52c2-4c9f-9f97-2e6ccfbd7c7d" ownerguid="1fba6370-8264-4270-9240-bdd2cea4f16a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">palabra</AUni> -<AUni ws="es">word</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c4b1c515-a01e-4368-bcae-05c277331656" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="6c662496-245b-4d8b-8c41-14ec4db1ca3e" ownerguid="548e3500-6daa-44a6-8416-e7a3de3da478"> -<Form> -<AUni ws="qvm-x-ach">taliga</AUni> -<AUni ws="qvm-x-acl">taliga</AUni> -<AUni ws="qvm-x-akh">taliga</AUni> -<AUni ws="qvm-x-akl">taliga</AUni> -<AUni ws="qvm-x-ame">taliga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6c66f2fb-1cb6-4d4d-9fdb-b7f95c04158a" ownerguid="effc49dd-6322-4302-899c-4cf540f0e2e4"> -<ExampleWords> -<AUni ws="en">mashed potatoes and gravy, pasta, cooked rice, stuffing, oatmeal, porridge, cereal, mush</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What foods are made primarily from staple foods?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6c67e2d9-fe76-4b93-b515-b41d56ec3f64" ownerguid="4bcdb1ab-0f44-4957-8642-860168e0ef79"> -<Form> -<AUni ws="qvm-x-ach">törri; törri</AUni> -<AUni ws="qvm-x-acl">törri; törri; törre</AUni> -<AUni ws="qvm-x-akh">törri; törri</AUni> -<AUni ws="qvm-x-akl">törri; törri; törre</AUni> -<AUni ws="qvm-x-ame">törri; törri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="6c67e49b-5449-49c1-bf6b-e32a4e453b58" ownerguid="45631b01-889a-49f8-8eb0-9c138e84248c"> -<Form> -<AUni ws="qvm-x-ach">quinci; quince</AUni> -<AUni ws="qvm-x-acl">quinci; quinci; quince</AUni> -<AUni ws="qvm-x-akh">quinci; quince</AUni> -<AUni ws="qvm-x-akl">quinci; quinci; quince</AUni> -<AUni ws="qvm-x-ame">quinci; quince</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="6c6d64b2-25d5-43c0-8b36-414c2066402f" ownerguid="2b67b37f-1128-4394-95b3-db82d5225196"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">drizzle</AUni> -<AUni ws="es">llovizna</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="96ce33d8-f6ae-4254-a072-488924b0ac6c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="6c6e3f3f-22a2-41c3-87b9-5a2191c5b35d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">abraza</AUni> -<AUni ws="qvm-x-acl">abraza</AUni> -<AUni ws="qvm-x-akh">abraza</AUni> -<AUni ws="qvm-x-akl">abraza</AUni> -<AUni ws="qvm-x-ame">abraza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+abrazar</AUni> -<AUni ws="qvm-x-acl">+abrazar</AUni> -<AUni ws="qvm-x-akh">+abrazar</AUni> -<AUni ws="qvm-x-akl">+abrazar</AUni> -<AUni ws="qvm-x-ame">+abrazar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.619" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dec7d625-a603-46f9-affd-d5527f758eac" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+abrazar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1aa8f059-38c5-43d5-a339-3550bc311e4b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ab0f710f-51a0-4574-a484-638e695cfe39" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +abrazar 
\entryTyp root 
\gENG hug 
\gSPN abrazar 
\e +abrazar 
\c V2 
\ach abraza 
\akh abraza 
\acl abraza 
\akl abraza 
\ame abraza</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="6c6e899a-5072-4282-bca9-4c6c2517d361" ownerguid="2ec4a945-279e-4984-b20c-89733f2394fe"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 6.1 Pipa garantiyanpis mana yaycunapag yätsishgan</Run> -</AStr> -</Example> -</rt> -<rt class="WfiWordform" guid="6c713245-57c0-43c1-95b6-b8b91063aa5c"> -<Analyses> -<objsur guid="7cc0e682-7a75-4947-af9f-0d512a057ae8" t="o" /> -<objsur guid="b54d33f2-c662-49e2-90f5-8e027e6b216f" t="o" /> -</Analyses> -<Checksum val="-1503648520" /> -<Form> -<AUni ws="qvm-x-akh">qeshyaq</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="6c736fd6-9b8e-4205-86f5-d1be859e027a" ownerguid="2d1ea615-677d-4f84-963f-84f43f5bb154"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">g</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">g</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">q</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">q</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">q</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7feef4b7-a285-4201-a3a4-057f77618b78" t="r" /> -</Morph> -<Msa> -<objsur guid="964f8962-17d5-4738-8902-97236137c419" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="6c74b5bd-d256-40e0-8c0b-48e2644b113c" ownerguid="7ca45f0e-9923-4f81-878d-da1b20f82bf6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">foot</AUni> -<AUni ws="es">pata</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="29ebbd1d-3de1-43c7-b993-f204fa28f9f1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6c75289f-eb74-46f3-80c9-d12859ab4905" ownerguid="e7caa24f-155d-47cd-946d-cc0d06dfc764"> -<ExampleWords> -<AUni ws="en">unloving, uncaring</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe someone who does not love?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6c76da95-155c-4e44-a30e-6648334fa7ff" ownerguid="b794219a-c4f6-4d05-a8c2-17ff346976e3"> -<Form> -<AUni ws="qvm-x-ach">catu</AUni> -<AUni ws="qvm-x-acl">catu; catu; cato</AUni> -<AUni ws="qvm-x-akh">katu</AUni> -<AUni ws="qvm-x-akl">katu; katu; kato</AUni> -<AUni ws="qvm-x-ame">katu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="6c78b456-3930-4a45-bd77-e64fa047f53d" ownerguid="e14e71db-5663-4e0a-8616-ad6b07e6ecd4"> -<Form> -<AUni ws="qvm-x-ach">ruripa</AUni> -<AUni ws="qvm-x-acl">ruripa</AUni> -<AUni ws="qvm-x-akh">ruripa</AUni> -<AUni ws="qvm-x-akl">ruripa</AUni> -<AUni ws="qvm-x-ame">ruripa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="6c7f0837-ac1e-4d41-8774-f8fc826cfd91"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chuli</AUni> -<AUni ws="qvm-x-acl">chuli; chule</AUni> -<AUni ws="qvm-x-akh">chuli</AUni> -<AUni ws="qvm-x-akl">chuli; chule</AUni> -<AUni ws="qvm-x-ame">chuli</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trulli</AUni> -<AUni ws="qvm-x-acl">*trulli</AUni> -<AUni ws="qvm-x-akh">*trulli</AUni> -<AUni ws="qvm-x-akl">*trulli</AUni> -<AUni ws="qvm-x-ame">*trulli</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.160" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3380c677-0533-4d34-a07f-ba57dc8fc893" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trulli</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dc806fe8-99c2-46c1-a006-ce70543a6406" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c97e8fe9-8680-4a8d-87cc-2c8dad01bd9c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trulli 
\entryTyp root 
\gENG sting 
\gSPN picar 
\e *trulli 
\c V2 
\mp +FinalI 
\ach chuli 
\akh chuli 
\acl chuli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl chule +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chuli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chule +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chuli</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="6c829729-6b99-4136-a715-f976919bb641" ownerguid="8b5cf122-0643-4ac1-a44f-e0eae95410a8"> -<Form> -<AUni ws="qvm-x-ach">gaululu</AUni> -<AUni ws="qvm-x-acl">gaululu; gaululo</AUni> -<AUni ws="qvm-x-akh">qawlulu</AUni> -<AUni ws="qvm-x-akl">qawlulu; qawlulo</AUni> -<AUni ws="qvm-x-ame">qawlulu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6c8aba00-907a-40a2-9da9-ea7ffbe91876" ownerguid="928741b5-bff6-4dd1-be37-ec6e7a4eb6ca"> -<ExampleWords> -<AUni ws="en">shore, beach, coast, coastal, coastland, seaboard, seashore, shoreline, foreshore, edge, strand, reef, coral reef, water-front, strip</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used of the edge of a lake or sea?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6c8de55c-383d-4b97-bc82-ca5f9f1199ad" ownerguid="56c46bc7-4c77-4ba3-8f2b-a47ff5bb0759"> -<Form> -<AUni ws="qvm-x-ach">física; fïsica</AUni> -<AUni ws="qvm-x-acl">física; fïsica</AUni> -<AUni ws="qvm-x-akh">física; fïsica</AUni> -<AUni ws="qvm-x-akl">física; fïsica</AUni> -<AUni ws="qvm-x-ame">física; fïsica</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="FsClosedValue" guid="6c8ef36f-464c-4a8d-833a-0d47ae922bb4" ownerguid="99a7fe78-3a01-46ad-9a7c-6f3018f19e7c"> -<Feature> -<objsur guid="e13ebd7a-824d-4405-8c23-e5a30f3d53a6" t="r" /> -</Feature> -<RefNumber val="0" /> -<Value> -<objsur guid="7fd2e9b4-402c-427c-a3e3-bbf386d652da" t="r" /> -</Value> -<ValueState val="0" /> -</rt> -<rt class="CmDomainQ" guid="6c922f7a-8620-4e98-beea-579e75866305" ownerguid="b2830b72-c642-484f-9485-24682aa11ed8"> -<ExampleWords> -<AUni ws="en">augur, betoken, bode, forebode, foreshadow, foretell, foretoken, ominous, portend, prefigure, presage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something showing what will happen in the future?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6c98fba7-06c5-41f6-9a08-1f3bb1f514c2" ownerguid="b7d23cf5-eb57-4aa9-bf97-259c0ac75d20"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6c9b654a-3768-4fb8-8939-72d3c5462d82" ownerguid="104d40c9-2a4f-4696-ad99-5cf0eb86ab2e"> -<ExampleWords> -<AUni ws="en">recuperate, convalesce</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to spending time resting in order to recover?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6c9bbb3a-b32d-4671-b22e-19f3871340a9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ale:ta</AUni> -<AUni ws="qvm-x-acl">ale:ta</AUni> -<AUni ws="qvm-x-akh">ale:ta</AUni> -<AUni ws="qvm-x-akl">ale:ta</AUni> -<AUni ws="qvm-x-ame">ale:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+aleta</AUni> -<AUni ws="qvm-x-acl">+aleta</AUni> -<AUni ws="qvm-x-akh">+aleta</AUni> -<AUni ws="qvm-x-akl">+aleta</AUni> -<AUni ws="qvm-x-ame">+aleta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.699" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7f6f17c3-7916-44d9-b31e-8e965b34332d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+aleta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4e26b0b1-e834-4b23-a889-c05bd21e1d14" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7a56c6f0-0ec5-4e62-9c2e-62540aae97b0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +aleta 
\entryTyp root 
\gENG fin 
\gSPN 
\e +aleta 
\c N0 
\ach ale:ta 
\akh ale:ta 
\acl ale:ta 
\akl ale:ta 
\ame ale:ta 
\i Lev 7.10 Escämayog carpis alëtan mana captenga ama micapäcunquitsu.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6c9c1fa1-2178-43af-82f4-4a6147cead35" ownerguid="1148684a-0f44-4b5a-9e3e-3823163cd4a1"> -<ExampleWords> -<AUni ws="en">announcement, publicity, propaganda</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to what is announced?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6c9c745a-cc12-4dc3-8b87-1eab5aea7cd4" ownerguid="2c401e7f-6ce9-470f-b6b6-fadf7a798536"> -<ExampleWords> -<AUni ws="en">rest, relaxation, break, tea/coffee break, siesta, time off, time out, holiday, respite, sabbatical, leisure time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a time when someone rests?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6c9e1060-2c61-44e1-9e2f-272dcfa04ebf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">envidia</AUni> -<AUni ws="qvm-x-acl">envidia</AUni> -<AUni ws="qvm-x-akh">envidia</AUni> -<AUni ws="qvm-x-akl">envidia</AUni> -<AUni ws="qvm-x-ame">envidia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+envidiar</AUni> -<AUni ws="qvm-x-acl">+envidiar</AUni> -<AUni ws="qvm-x-akh">+envidiar</AUni> -<AUni ws="qvm-x-akl">+envidiar</AUni> -<AUni ws="qvm-x-ame">+envidiar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.477" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="24fc29b5-dfe1-4109-a09b-8bfd26fd5ee8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+envidiar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0654c2f3-65f7-45be-a163-dc3d387efe07" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e69d71de-e681-4df5-bba1-1e3b002df013" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +envidiar 
\entryTyp root 
\gENG envy 
\gSPN envidiar 
\e +envidiar 
\c V2 
\ach envidia 
\akh envidia 
\acl envidia 
\akl envidia 
\ame envidia</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6c9eaedb-8482-4f8f-bbee-bbdaba1bc096" ownerguid="67e57493-d286-4271-b877-f63f962dddf1"> -<ExampleWords> -<AUni ws="en">expand, spread</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to an area becoming big?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6ca791f4-b3da-4bbc-a77d-5448b0b2ba17" ownerguid="69d366d2-9735-4a1b-b938-7b212932b568"> -<ExampleWords> -<AUni ws="en">Milky Way, Big Dipper, Orion, Pleiades, Southern Cross</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the names of the constellations?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6cabb039-f3d7-407c-a44d-2f861d4a99a9" ownerguid="e10b9449-08a3-4c13-aff2-31486749b62f"> -<ExampleWords> -<AUni ws="en">catch, detect, entrap, catch red-handed, trap, trip up, find out, prove</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to finding out that someone committed a crime?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="6cad76b5-7965-4a94-b7a9-23de432163e3" ownerguid="30fa4dfc-c21d-46f6-8fd8-55b6c9f3577b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="6cad88fd-22fa-4df1-a88e-c1e17ef684c1" ownerguid="9d9fa92a-2364-452d-9ac1-a4459e831b10"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="6cafe20a-8230-47b3-9ab5-a7ce8991426d" ownerguid="1b6afcd2-1530-4e2c-a02f-9d14248f3188"> -<Form> -<AUni ws="qvm-x-ach">cadala</AUni> -<AUni ws="qvm-x-acl">cadala</AUni> -<AUni ws="qvm-x-akh">cadala</AUni> -<AUni ws="qvm-x-akl">cadala</AUni> -<AUni ws="qvm-x-ame">cadala</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6cb0c581-2b1b-41ba-9921-3489d37ba7c4" ownerguid="b16de6a0-71dd-448c-9ffa-49f6646a5219"> -<ExampleWords> -<AUni ws="en">run</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to running?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="6cb3f433-e799-413d-94d0-ce9b8e964821" ownerguid="96a40b54-88f0-4740-86a3-140912f24f24"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="CmDomainQ" guid="6cb545b3-8226-4bc4-8f77-b32974cf3fbf" ownerguid="f883266a-146a-41c7-b1db-85120840c3a8"> -<ExampleWords> -<AUni ws="en">impossible, not have a hope, not stand a chance, can't possibly, that's out, with the best will in the world, do the impossible</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that your situation makes it impossible for you to do something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6cb670cc-3501-41be-a6df-bd20344e95fc" ownerguid="e4582d00-a49b-4f42-be7f-d56cc462a064"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">turn</AUni> -<AUni ws="es">torno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a985323b-eff9-47db-a7e0-71b8f282354d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6cb6c821-fb9d-4642-9eef-6ca3a9304b61" ownerguid="333abfbb-ad21-48b0-9baa-6527d28efdb1"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="6cb91819-16b3-4277-afba-10dc9892ede7" ownerguid="392b8fe3-5a0b-46c2-a595-f13d84c3bd06"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">seagull</AUni> -<AUni ws="es">gaviota</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d50ed764-16d3-4e44-aaf3-1e26171fcb1f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6cba945d-6221-4a9d-804d-b83dae5f1b93" ownerguid="44dc42e4-e9c7-4aa9-ac9b-1008385244b1"> -<ExampleWords> -<AUni ws="en">Dad, Father, Daddy, Pop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words do you use when talking to your father?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6cbafc8c-3960-41fd-bb36-5b054515cb8a" ownerguid="e626c65e-eb79-4230-b07a-a6d975d3fe3d"> -<ExampleWords> -<AUni ws="en">breathe, talk, eat, taste, clear your throat, suck, blow, kiss, gag</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What do people do with their mouth?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6cbbedaa-0614-4c67-aa96-3680df45b24f" ownerguid="e87b0d47-6e52-42a5-9c14-6b35e317ebd2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">other.side</AUni> -<AUni ws="es">banda</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="41773ee3-d7b5-4ae9-a0ff-cb164979b5b7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="6cbdaf94-8e2c-4b26-936a-d2f86d158250" ownerguid="e7c58c11-2911-446a-96b0-2113247f3792"> -<Abbreviation> -<AUni ws="en">4.1.9.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.205" /> -<DateModified val="2022-9-23 16:55:8.205" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to different races of people--the large groups of people in the world that are different in color and appearance.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Race</AUni> -</Name> -<Questions> -<objsur guid="60f5003f-f685-41c8-997f-9acfc511d200" t="o" /> -<objsur guid="13488e2b-afbc-453e-b013-abf6df6fa4e3" t="o" /> -<objsur guid="9932d4d8-99b8-4144-8ae2-a73101670404" t="o" /> -<objsur guid="4f05b8d9-3c77-4da5-aaa8-b4fe1e2ce062" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="6cbe760b-c461-4804-90f6-a4c14ee70390" ownerguid="7ea9d3b4-c10a-4231-b569-2e7aa53951c6"> -<Form> -<AUni ws="qvm-x-ach">apa</AUni> -<AUni ws="qvm-x-acl">apa</AUni> -<AUni ws="qvm-x-akh">apa</AUni> -<AUni ws="qvm-x-akl">apa</AUni> -<AUni ws="qvm-x-ame">apa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6cc03415-e59c-4f5c-b0c9-1e55f639b589" ownerguid="a5625b5c-8657-44b4-9700-185095eb5e15"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="6cc0a0cb-41c5-4378-b254-de5460846a10"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">justicia</AUni> -<AUni ws="qvm-x-acl">justicia</AUni> -<AUni ws="qvm-x-akh">justicia</AUni> -<AUni ws="qvm-x-akl">justicia</AUni> -<AUni ws="qvm-x-ame">justicia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+justicia</AUni> -<AUni ws="qvm-x-acl">+justicia</AUni> -<AUni ws="qvm-x-akh">+justicia</AUni> -<AUni ws="qvm-x-akl">+justicia</AUni> -<AUni ws="qvm-x-ame">+justicia</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.902" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8417a38e-a194-4caa-a364-00fb3a129fd7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+justicia</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1f24d51d-13b2-4fca-82bc-3044bd814118" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0f18160f-4978-4952-9871-915195f9c695" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +justicia 
\entryTyp root 
\gENG justice 
\gSPN justicia 
\e +justicia 
\c N0 
\ach justicia 
\akh justicia 
\acl justicia 
\akl justicia 
\ame justicia 
\i PSA 11.3 Yaga runacuna cay pasacho munayashganta ruraptinmi alita rurag runa carpis justicia rurayta camäpacunsu.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="6cc8a5fd-36a7-441d-b6d2-c5f4a9258e21" ownerguid="0c6b8113-d532-4794-9ecd-ab4d9345d1f8"> -<Form> -<AUni ws="qvm-x-ach">talpu</AUni> -<AUni ws="qvm-x-acl">talpu; talpo</AUni> -<AUni ws="qvm-x-akh">talpu</AUni> -<AUni ws="qvm-x-akl">talpu; talpo</AUni> -<AUni ws="qvm-x-ame">talpu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6cc8f81f-2aeb-4f54-921b-62d4b9b72a06" ownerguid="08239f53-daa5-47a6-9f39-29a9064b0c27"> -<ExampleWords> -<AUni ws="en">joining, attachment, bonding, combination, fusion, unification, union, welding</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the act of joining things together?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="6ccb8155-1954-4380-8bec-ca5e56533210" ownerguid="61275bd1-6c74-48b6-aafd-254046288bd1"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="891bb147-13ee-4334-91b2-83a046ab9554" t="o" /> -<objsur guid="f1928273-8161-4c30-8ea1-4689fd155181" t="o" /> -<objsur guid="41ecb52f-fde7-45a9-a917-a34fb86d0641" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="6cce67b1-2613-47d1-85fd-ca261f6312b6" ownerguid="cce98603-ff8f-4213-945a-bd6746716139"> -<ExampleWords> -<AUni ws="en">geography, topography, feature, landscape, terrain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What general words refer to the type of land in an area?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6ccefcc7-b00f-47fc-937b-49bd0cb540f3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nga</AUni> -<AUni ws="qvm-x-acl">nga</AUni> -<AUni ws="qvm-x-akh">nqa</AUni> -<AUni ws="qvm-x-akl">nqa</AUni> -<AUni ws="qvm-x-ame">nqa</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.609" /> -<DateModified val="2022-10-16 15:21:23.738" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5dcad267-89ba-4258-b423-e84c57ba90ed" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">3FUT</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cdacd2fc-4611-457d-b88f-3c9c8bb345b9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="565b8b48-d659-4f1e-b0d2-04ef93b0835e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx 3FUT 
\entryTyp suffix 
\gENG 3FUT 
\gSPN 3FUT 
\e 3FUT 
\c V1/V0 
\o 120 
\mp +foreshortens 
\ach nga 
\akh nqa 
\acl nga 
\akl nqa 
\ame nqa</Run> -</AStr> -</Custom> -</rt> -<rt class="StTxtPara" guid="6ccf151f-a5cd-4991-a640-ac1db1d350af" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">yarpatsin</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="e16f0302-f37e-4bf2-a547-1a0ae6237f0f" t="o" /> -</Segments> -</rt> -<rt class="LexExampleSentence" guid="6ccf1803-5327-4ae5-a0dc-19393cd124f5" ownerguid="e9601ea4-a9e0-45cb-8eb0-9c65c867895e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">DAN 2.13 Tsaymi Danielta y compañëruncunatapis ashitsergan wanutsishga cananpag.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="6cd3e32f-db84-4c8f-9d97-02f8c3fdd8eb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maja:da</AUni> -<AUni ws="qvm-x-acl">maja:da</AUni> -<AUni ws="qvm-x-akh">maja:da</AUni> -<AUni ws="qvm-x-akl">maja:da</AUni> -<AUni ws="qvm-x-ame">maja:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+majada</AUni> -<AUni ws="qvm-x-acl">+majada</AUni> -<AUni ws="qvm-x-akh">+majada</AUni> -<AUni ws="qvm-x-akl">+majada</AUni> -<AUni ws="qvm-x-ame">+majada</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.263" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6120ce2b-2c5b-436d-bc67-5eafafc74a36" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+majada</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="25ebdecb-daaa-463f-a406-b4860802239b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c803bcbc-2ed0-4f52-a825-be16107df8ef" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +majada 
\entryTyp root 
\gENG flock 
\gSPN majada 
\e +majada 
\c N0 
\ach maja:da 
\akh maja:da 
\acl maja:da 
\akl maja:da 
\ame maja:da</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="6cd54d54-d8ef-4c9b-a4f2-0e756de471c3"> -<Form> -<Str> -<Run ws="en">yarqU</Run> -</Str> -</Form> -</rt> -<rt class="LexEntry" guid="6cd59f6c-9bf4-43db-a2df-8eb0ede206e5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">watu</AUni> -<AUni ws="qvm-x-acl">watu; watu; wato</AUni> -<AUni ws="qvm-x-akh">watu</AUni> -<AUni ws="qvm-x-akl">watu; watu; wato</AUni> -<AUni ws="qvm-x-ame">watu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*watu.n</AUni> -<AUni ws="qvm-x-acl">*watu.n</AUni> -<AUni ws="qvm-x-akh">*watu.n</AUni> -<AUni ws="qvm-x-akl">*watu.n</AUni> -<AUni ws="qvm-x-ame">*watu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.576" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c3c28b93-90e7-4150-af54-14f4024609aa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*watu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5311c1cf-22d1-4b49-90f9-b2503bc986b3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="83b892a9-4343-4dc0-92b5-f60dbe969397" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *watu.n 
\entryTyp root 
\gENG rope 
\gSPN soga 
\e *watu.n 
\c N0 
\ach watu 
\akh watu 
\acl watu / _# 
\acl watu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl watu / _# 
\akl watu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl wato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame watu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6cd97788-6daf-4a44-bd03-4e69b804fbb2" ownerguid="2351f52a-8822-46ad-99c4-7ef526e94a6f"> -<ExampleWords> -<AUni ws="en">again, once more</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to being back to the same situation that you were in before?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6cda9157-4424-49d6-848f-61ed7a9bfcc1" ownerguid="c3d3c269-a682-4198-867d-37e42b6af96b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">story</AUni> -<AUni ws="es">piso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b735bca1-4f76-4ab2-ba95-fd986ffefce2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="6cdb14a9-f0cf-4326-a64b-2a09e5ed6622"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tanu</AUni> -<AUni ws="qvm-x-acl">tanu; tano</AUni> -<AUni ws="qvm-x-akh">tanu</AUni> -<AUni ws="qvm-x-akl">tanu; tano</AUni> -<AUni ws="qvm-x-ame">tanu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tanu</AUni> -<AUni ws="qvm-x-acl">*tanu</AUni> -<AUni ws="qvm-x-akh">*tanu</AUni> -<AUni ws="qvm-x-akl">*tanu</AUni> -<AUni ws="qvm-x-ame">*tanu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.805" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4526fa47-a703-4a4d-af22-5cbbbd519b49" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tanu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="14f29380-8807-4bd5-94af-eea59b161c5d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="51389a15-2545-4654-a58d-26dc8db9debc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tanu 
\entryTyp root 
\gENG touch 
\gSPN topar 
\e *tanu 
\c V1 
\ach tanu 
\akh tanu 
\acl tanu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tano +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tanu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tano +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tanu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="6cdb7ecf-5ac5-46b8-a7f7-45815f6b8e64" ownerguid="c5524a37-6cf8-4e54-aa51-2a2114ddf17b"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="e6f768cb-f517-43e7-9887-e5c7f9cb3e45" t="o" /> -<objsur guid="b4ae16e1-fa4e-46bf-a046-0778575840a1" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="6cdd66db-cdc5-4d5e-b261-99a79a92e008" ownerguid="d47b69e0-ab4a-4111-aec3-2c889a4e70b3"> -<ExampleWords> -<AUni ws="en">creation, creature</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something that has been created?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6ce1eefd-ff6c-4669-beab-7d65cbba8cb9" ownerguid="83828d3b-ccb2-4459-9297-8f46d114c618"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">a.bitter.plant</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c34c14cc-9f77-492b-81a2-1e720e832d87" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="PunctuationForm" guid="6ce21b24-ae55-423e-a91c-7102c6f793d6"> -<Form> -<Str> -<Run ws="en">18</Run> -</Str> -</Form> -</rt> -<rt class="LexSense" guid="6ce38366-3569-4f08-b6e6-adfa58202059" ownerguid="19113eea-3a3d-4585-afc4-1586a9b28a01"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="85436de5-f06d-42b5-bd33-d4ae542cfb2e" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">belt</AUni> -<AUni ws="es">cinturón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0b5f7ade-475e-4834-826e-a9dec3e5f06d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="6ce8fc1f-dd46-49bb-b071-4d8ff2763c53"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">soni:du</AUni> -<AUni ws="qvm-x-acl">soni:du; soni:du; soni:do</AUni> -<AUni ws="qvm-x-akh">soni:du</AUni> -<AUni ws="qvm-x-akl">soni:du; soni:du; soni:do</AUni> -<AUni ws="qvm-x-ame">soni:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sonido</AUni> -<AUni ws="qvm-x-acl">+sonido</AUni> -<AUni ws="qvm-x-akh">+sonido</AUni> -<AUni ws="qvm-x-akl">+sonido</AUni> -<AUni ws="qvm-x-ame">+sonido</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.723" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2ffe455b-880b-4073-900e-8a44ddcc40e9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sonido</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7187247f-8fe3-4bdc-89ff-6ebd47afa0da" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="10f147e9-e112-4986-843a-78903f2ac145" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sonido 
\entryTyp root 
\gENG 
\gSPN 
\e +sonido 
\c N0 
\ach soni:du 
\akh soni:du 
\acl soni:du / _# 
\acl soni:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl soni:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl soni:du / _# 
\akl soni:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl soni:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame soni:du</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="6ce98c1d-d86f-43b0-a401-9e2af0cf37a1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ja:calya; ja:calya:</AUni> -<AUni ws="qvm-x-acl">ja:calya; ja:calya:</AUni> -<AUni ws="qvm-x-akh">ja:kalya; ja:kalya:</AUni> -<AUni ws="qvm-x-akl">ja:kalya; ja:kalya:</AUni> -<AUni ws="qvm-x-ame">ha:kalya; ha:kalya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hakallya:</AUni> -<AUni ws="qvm-x-acl">*hakallya:</AUni> -<AUni ws="qvm-x-akh">*hakallya:</AUni> -<AUni ws="qvm-x-akl">*hakallya:</AUni> -<AUni ws="qvm-x-ame">*hakallya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.639" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7c9b88be-6812-4b82-9424-1e4427dbfc56" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hakallya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ff340606-6d3e-42da-afe4-d27e1aca3d89" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b8151062-e521-403c-9509-bfcbc7112967" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hakallya: 
\entryTyp root 
\gENG 
\gSPN 
\e *hakallya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach ja:calya foreshortened 
\ach ja:calya: 
\akh ja:kalya foreshortened 
\akh ja:kalya: 
\acl ja:calya foreshortened 
\acl ja:calya: 
\akl ja:kalya foreshortened 
\akl ja:kalya: 
\ame ha:kalya foreshortened 
\ame ha:kalya:</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="6cea20b9-67a9-4e43-81b5-ac54e38743d6"> -<Analyses> -<objsur guid="06980f1f-2d2d-48e9-b382-e0d3b4f4822b" t="o" /> -<objsur guid="209a148d-7e3e-4738-b799-db6ec9ca68a1" t="o" /> -<objsur guid="598e009b-59a9-4571-80b5-ce5162587668" t="o" /> -<objsur guid="8197eac8-65a6-4b9e-a86b-698929a5e952" t="o" /> -<objsur guid="9e1b0f9f-a2f0-4e31-9507-ff06bc4526de" t="o" /> -<objsur guid="a491b60d-8695-4139-98ff-0485684115e6" t="o" /> -<objsur guid="a4f6fc2a-b7cb-44a6-9f09-4a635cb6057d" t="o" /> -<objsur guid="d92b9f97-110c-4e3a-9aec-90c55b96dc01" t="o" /> -<objsur guid="e44c182e-34ee-4712-9db8-cd2fbaf0ec26" t="o" /> -<objsur guid="ff39e472-fc70-4848-86f0-53a17ba96f65" t="o" /> -</Analyses> -<Checksum val="1945415091" /> -<Form> -<AUni ws="qvm-x-akh">warminpa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="6ceba7dc-4b01-4287-b720-0a2b4f0efa87" ownerguid="154eadd9-5f2d-44b8-9327-4f3c5bc8bd85"> -<Form> -<AUni ws="qvm-x-ach">äjus</AUni> -<AUni ws="qvm-x-acl">äjus</AUni> -<AUni ws="qvm-x-akh">äjus</AUni> -<AUni ws="qvm-x-akl">äjus</AUni> -<AUni ws="qvm-x-ame">äjus</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6cefc2f4-fd97-494b-a4e6-52f70631c0e6" ownerguid="644f0c8f-8385-4b09-8494-923025f5d637"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="6cf27f94-6493-452e-8908-46aff9b50f4e" ownerguid="370f96de-1cae-4df6-b8a9-0ee1b125b8e0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="6cf66030-27c3-46a9-9845-a6e5dd604fcd" ownerguid="6f92ba78-b724-4224-9345-f67900bdbee7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="6cf6b549-c21a-47e0-a549-d818816c30f6" ownerguid="37cad029-9bef-45b4-9f98-d9d34c78e295"> -<Form> -<AUni ws="qvm-x-ach">febreru; febrero</AUni> -<AUni ws="qvm-x-acl">febreru; febreru; febrero</AUni> -<AUni ws="qvm-x-akh">febreru; febrero</AUni> -<AUni ws="qvm-x-akl">febreru; febreru; febrero</AUni> -<AUni ws="qvm-x-ame">febreru; febrero</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6cffa4b0-3e43-4f14-bd34-edb50521fa0a" ownerguid="bb8ddf5f-707d-46c0-aff4-45683d26fd68"> -<ExampleWords> -<AUni ws="en">(no words in English)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate the subject of a sentence?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6d0022b9-a000-43e4-8547-bc2aea1a17ec"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">dirigi</AUni> -<AUni ws="qvm-x-acl">dirigi; dirige</AUni> -<AUni ws="qvm-x-akh">dirigi</AUni> -<AUni ws="qvm-x-akl">dirigi; dirige</AUni> -<AUni ws="qvm-x-ame">dirigi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+dirigir</AUni> -<AUni ws="qvm-x-acl">+dirigir</AUni> -<AUni ws="qvm-x-akh">+dirigir</AUni> -<AUni ws="qvm-x-akl">+dirigir</AUni> -<AUni ws="qvm-x-ame">+dirigir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.416" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fc755af3-27c4-4d78-9ca1-6dc0a1dc0c48" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+dirigir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="49f22388-0097-4c5c-8542-86947fcaef51" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ff855b11-acd8-43a9-b2cd-bf119bdba46f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +dirigir 
\entryTyp root 
\gENG lead 
\gSPN dirigir 
\e +dirigir 
\c V2 
\mp +FinalI 
\ach dirigi 
\akh dirigi 
\acl dirigi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl dirige +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl dirigi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl dirige +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame dirigi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="6d013e5e-7fbc-414e-93a6-86edddc07af6" ownerguid="ea45500a-0223-4990-87b2-5e062708645c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">very</AUni> -<AUni ws="es">mucho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8b24eda1-6b59-4c7f-9a95-e4d51142a708" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="6d03ad42-59ef-4161-971a-1a1ccbb9d40f" ownerguid="a0112e1c-367d-4035-8894-35cff90e4d3b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">horsefly</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d0faa1b4-6402-4e5a-a624-4c7eb835c688" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="6d03f062-73ce-459f-9bd0-a73b46616627"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">venganza</AUni> -<AUni ws="qvm-x-acl">venganza</AUni> -<AUni ws="qvm-x-akh">venganza</AUni> -<AUni ws="qvm-x-akl">venganza</AUni> -<AUni ws="qvm-x-ame">venganza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+venganza</AUni> -<AUni ws="qvm-x-acl">+venganza</AUni> -<AUni ws="qvm-x-akh">+venganza</AUni> -<AUni ws="qvm-x-akl">+venganza</AUni> -<AUni ws="qvm-x-ame">+venganza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.363" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="725d7bc3-288a-48fd-b4fa-249419cd2c1c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+venganza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="754b5521-62f1-44ed-a9d6-2a2f2bebe2a3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f137718a-e566-4b7a-8c08-4d7638934783" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +venganza 
\entryTyp root 
\gENG revenge 
\gSPN 
\e +venganza 
\c N0 
\ach venganza 
\akh venganza 
\acl venganza 
\akl venganza 
\ame venganza</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6d0401c9-f87b-4920-8d28-8b8ab78fb1c6" ownerguid="e08e252a-9227-42e4-bcb8-b803d25071b6"> -<ExampleWords> -<AUni ws="en">embarrassing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that causes someone to feel embarrassed?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6d066f66-a4d6-4d91-810f-d5156269ff09" ownerguid="d106ac7b-fd48-4879-9752-37038b3b39e0"> -<Form> -<AUni ws="qvm-x-ach">conviëni</AUni> -<AUni ws="qvm-x-acl">conviëni; conviëne</AUni> -<AUni ws="qvm-x-akh">conviëni</AUni> -<AUni ws="qvm-x-akl">conviëni; conviëne</AUni> -<AUni ws="qvm-x-ame">conviëni</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6d0932a1-6850-4143-8157-507a9fed7132" ownerguid="7bf76855-b806-4912-bf0e-beaa90d4c25d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="6d0aa439-5ca4-4e17-9ea4-230a2580901a" ownerguid="210fcfec-1ee9-494c-96be-72730127f7f2"> -<Form> -<AUni ws="qvm-x-ach">suëla</AUni> -<AUni ws="qvm-x-acl">suëla</AUni> -<AUni ws="qvm-x-akh">suëla</AUni> -<AUni ws="qvm-x-akl">suëla</AUni> -<AUni ws="qvm-x-ame">suëla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6d0d3357-de52-4ff7-a605-ef9c6fdca009" ownerguid="d2f516f4-df1c-44f6-8704-76dd52201317"> -<ExampleWords> -<AUni ws="en">abroad, overseas</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that someone is in or going to a foreign country?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6d0fd262-0faf-4f67-bb53-53c3d145c5a5" ownerguid="50eb32a2-6dbb-4b7c-b370-aacdcfeaf5fc"> -<ExampleWords> -<AUni ws="en">be good company, fun, be a good laugh</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe someone that other people enjoy being with?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6d148d6f-db27-4db7-88a8-e04b0547e063" ownerguid="21cac048-07c3-4c63-8e32-c2163b5fee6e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="5e6fa5cc-4611-4d8d-8c94-7d937c41836e" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="19fc80c4-8bc5-4e98-9b96-9fe033a510d9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="6d16734e-2d7e-4d98-93bd-ee2fac9eaddb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ñacacha</AUni> -<AUni ws="qvm-x-acl">ñacacha</AUni> -<AUni ws="qvm-x-akh">ñakacha</AUni> -<AUni ws="qvm-x-akl">ñakacha</AUni> -<AUni ws="qvm-x-ame">ñakacha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñakatra</AUni> -<AUni ws="qvm-x-acl">*ñakatra</AUni> -<AUni ws="qvm-x-akh">*ñakatra</AUni> -<AUni ws="qvm-x-akl">*ñakatra</AUni> -<AUni ws="qvm-x-ame">*ñakatra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.588" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eccffe3a-171d-4bde-b9ce-3996b092b5db" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñakatra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="53770578-b3c5-47cc-9e9f-152490d2d8e5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a180b1a5-99f5-4771-a40c-c4a10abe7db5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñakatra 
\entryTyp root 
\gENG chewy 
\gSPN como.chicle 
\e *ñakatra 
\c V1 
\ach ñacacha 
\akh ñakacha 
\acl ñacacha 
\akl ñakacha 
\ame ñakacha</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="6d1d7d03-5120-47b4-b046-4d07347375f3" ownerguid="5483b41c-4ebc-4298-ae29-f68de3f489b4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6d1f8b68-f71d-49aa-b61b-8c3f369220b5" ownerguid="742996cd-b87f-40a8-bdb3-dba74219bd73"> -<ExampleWords> -<AUni ws="en">boil, melt, burn, warp, sweat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What happens to things and people when they get hot?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6d21a62e-2328-4af9-8aa1-714ffc8b9aa9" ownerguid="36719ebe-01da-4021-9132-3f5cf745f696"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">obilo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c8199b44-19c1-44e6-9798-9264eee1502f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="6d23acfb-bbac-4830-af34-de164aa968b6" ownerguid="787a91ea-99bb-4965-94f2-fcef144aee12"> -<Form> -<AUni ws="qvm-x-ach">pagchi</AUni> -<AUni ws="qvm-x-acl">pagchi; pagche</AUni> -<AUni ws="qvm-x-akh">paqchi</AUni> -<AUni ws="qvm-x-akl">paqchi; paqche</AUni> -<AUni ws="qvm-x-ame">paqchi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="6d28511c-824b-467b-8c5a-a12243ee13de" ownerguid="cdda7311-c2da-4dce-a68e-2031365bb40f"> -<Form> -<AUni ws="qvm-x-ach">dembaldi; dembalde</AUni> -<AUni ws="qvm-x-acl">dembaldi; dembaldi; dembalde</AUni> -<AUni ws="qvm-x-akh">dembaldi; dembalde</AUni> -<AUni ws="qvm-x-akl">dembaldi; dembaldi; dembalde</AUni> -<AUni ws="qvm-x-ame">dembaldi; dembalde</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="6d2abbb5-eb19-49f9-9063-5668b43b600f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">hectaria</AUni> -<AUni ws="qvm-x-acl">hectaria</AUni> -<AUni ws="qvm-x-akh">hectaria</AUni> -<AUni ws="qvm-x-akl">hectaria</AUni> -<AUni ws="qvm-x-ame">hectaria</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hectaria</AUni> -<AUni ws="qvm-x-acl">+hectaria</AUni> -<AUni ws="qvm-x-akh">+hectaria</AUni> -<AUni ws="qvm-x-akl">+hectaria</AUni> -<AUni ws="qvm-x-ame">+hectaria</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.700" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="70ca88fe-14e0-413d-8f22-217883822c95" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hectaria</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="87b7a537-f83e-4648-8fc5-02a00e9e6046" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a655fdba-bc4d-487d-9952-ff515e35d6d2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hectaria 
\entryTyp root 
\gENG 
\gSPN 
\e +hectaria 
\c N0 
\ach hectaria 
\akh hectaria 
\acl hectaria 
\akl hectaria 
\ame hectaria</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="6d2efdce-493b-4194-ab7b-39523b715da6" ownerguid="e43ddd35-7194-446f-b467-f49d3c985ab9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">grass</AUni> -<AUni ws="es">hierba</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e1738984-2bec-4474-b2b1-8d06f734355d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6d2fbdc9-de83-4548-b8d2-c7aaca931fcf" ownerguid="1d11e1ba-14e8-421f-a31c-8e3cd9957639"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="6d326694-1ee9-4a96-9ad5-c9d9b1d8add8" ownerguid="d02a2605-f17a-4468-b495-570e1ec3872e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">week</AUni> -<AUni ws="es">semana</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1e1df59e-ea51-46bc-8b93-9746ce198201" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6d32cbb2-ee13-442b-81c1-3717b98bdb42" ownerguid="a74c97f9-27c1-43a4-a735-eeae29947bb7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="6d3392e1-ea9f-4c48-ba5b-496a57d0ec8a" ownerguid="81cca8b9-9d12-4d7b-a013-9fcdbe9dacf9"> -<Form> -<AUni ws="qvm-x-ach">porcientu; porciento</AUni> -<AUni ws="qvm-x-acl">porcientu; porcientu; porciento</AUni> -<AUni ws="qvm-x-akh">porcientu; porciento</AUni> -<AUni ws="qvm-x-akl">porcientu; porcientu; porciento</AUni> -<AUni ws="qvm-x-ame">porcientu; porciento</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="6d36274e-7f3f-437a-93c2-0b24834a482d" ownerguid="2bdfe506-0a28-45bd-81e1-44dcedcc262a"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6d3647e5-30d1-4d1b-a207-a25f65c9dcc9" ownerguid="2e97b83d-1152-473f-9cbe-347f0655041a"> -<ExampleWords> -<AUni ws="en">earlobe, lobe, inner ear, eardrum, tympanum, Eustachian tube, auditory nerve, canal, cochlea</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the parts of the ear?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="6d3735d2-ee99-4ced-b8bd-5b02678b8851" ownerguid="3448a62a-7774-463d-a8cd-af8cfa753338"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="6d379b70-90c0-43c3-af94-5acc3bd0a821" ownerguid="8bcfa8b0-7265-4e49-b903-bb06e5e74bc0"> -<Form> -<AUni ws="qvm-x-ach">muchu</AUni> -<AUni ws="qvm-x-acl">muchu; mucho</AUni> -<AUni ws="qvm-x-akh">muchu</AUni> -<AUni ws="qvm-x-akl">muchu; mucho</AUni> -<AUni ws="qvm-x-ame">muchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6d37a1b0-0408-4e3f-aaf6-ee10a11d59d0" ownerguid="0f568473-880d-43bd-b5ce-590100fdcaf6"> -<ExampleWords> -<AUni ws="en">lick</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to licking with the tongue?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6d37b2bd-9e2a-40a4-adf3-62a7cece6fc2" ownerguid="2cee0d5b-86bd-4cee-b1eb-781af915a9ce"> -<Form> -<AUni ws="qvm-x-ach">perga</AUni> -<AUni ws="qvm-x-acl">perga</AUni> -<AUni ws="qvm-x-akh">perqa</AUni> -<AUni ws="qvm-x-akl">perqa</AUni> -<AUni ws="qvm-x-ame">pirqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6d3ab4e1-7d8b-4ec2-a2b4-b76eeaef52de" ownerguid="cb522575-344f-447c-bdf4-32e2ebfea8f5"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="6d3b58ca-5265-4041-830b-c023067354f0"> -<Analyses> -<objsur guid="336b3c92-6094-4f42-b9d8-e8abd9a2d37f" t="o" /> -<objsur guid="665d2cf7-c0c5-4014-a130-c9605400d72a" t="o" /> -</Analyses> -<Checksum val="738763179" /> -<Form> -<AUni ws="qvm-x-akh">aylu</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="6d3f4811-a1f1-49f7-ab0f-592e7a76fed6" ownerguid="f20d736d-a3a6-4b0a-923c-ffaf9d1cd199"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">g</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">g</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">q</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">q</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">q</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2077e726-cf37-4913-b54c-2d034d4883b4" t="r" /> -</Morph> -<Msa> -<objsur guid="cc4f521e-5e38-4217-aa16-46da99d423ec" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="6d4121d0-f0ed-4233-81e4-f54d239a5704" ownerguid="d1f0df8d-1556-42e8-864d-5e39b3eb5cae"> -<Form> -<AUni ws="qvm-x-ach">pay</AUni> -<AUni ws="qvm-x-acl">pay</AUni> -<AUni ws="qvm-x-akh">pay</AUni> -<AUni ws="qvm-x-akl">pay</AUni> -<AUni ws="qvm-x-ame">pay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="6d413607-02b7-44b9-8986-65cb5a04447b" ownerguid="32974828-df2f-4a0d-ba0d-e3499f9a1659"> -<Form> -<AUni ws="qvm-x-ach">lëwa</AUni> -<AUni ws="qvm-x-acl">lëwa</AUni> -<AUni ws="qvm-x-akh">lëwa</AUni> -<AUni ws="qvm-x-akl">lëwa</AUni> -<AUni ws="qvm-x-ame">lëwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="6d4b6fa3-2c58-4abb-8ac3-9d2cf2df5215" ownerguid="f786786c-783e-4736-ae68-ed1a8dfd8a53"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mu; mo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mu; mo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="45846476-db8b-4639-bef8-780e6651a907" t="r" /> -</Morph> -<Msa> -<objsur guid="84097b64-d9df-441f-a9d3-d11d4b9d9ea0" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="6d4da1f6-2068-456b-8a1e-4ed588b6486e" ownerguid="084f02d5-82b0-449e-aca9-210c3711fe0a"> -<Form> -<AUni ws="qvm-x-ach">antsa</AUni> -<AUni ws="qvm-x-acl">antsa</AUni> -<AUni ws="qvm-x-akh">antsa</AUni> -<AUni ws="qvm-x-akl">antsa</AUni> -<AUni ws="qvm-x-ame">antsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="6d4e96a9-17b2-421d-924a-e2e5a3c8ff54" ownerguid="3c1d829d-0ad2-4b50-9886-df081a7bfe33"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">r</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">r</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">r</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">r</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">r</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a96fae79-db91-498f-a3f4-4aaeff3f9499" t="r" /> -</Morph> -<Msa> -<objsur guid="973e08a0-60b3-4ff1-9973-ac70ea0a16bc" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="6d50297f-2bfb-4e34-8f8f-0e4b8e85c4af" ownerguid="3038da8a-1773-466f-90b4-14ca63e62fc3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="38319b51-4aad-4e94-b88d-7e338bfe4f21" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6d5114fc-a740-4a54-a028-5b5d64b95da2" ownerguid="9d4bc93a-7272-4956-b4de-028551f6563b"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="6d536487-efda-47fe-9032-474108d61ee1" ownerguid="08ca6416-c865-4ce1-a654-0d393be6e17f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">algae</AUni> -<AUni ws="es">alga</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="01fc6a74-70d0-4443-99ce-269e6e62ebe9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="6d5540de-e3b1-4396-aa44-a13bcad5e61a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">norti; norte</AUni> -<AUni ws="qvm-x-acl">norti; norti; norte</AUni> -<AUni ws="qvm-x-akh">norti; norte</AUni> -<AUni ws="qvm-x-akl">norti; norti; norte</AUni> -<AUni ws="qvm-x-ame">norti; norte</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+norte</AUni> -<AUni ws="qvm-x-acl">+norte</AUni> -<AUni ws="qvm-x-akh">+norte</AUni> -<AUni ws="qvm-x-akl">+norte</AUni> -<AUni ws="qvm-x-ame">+norte</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.568" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b4508293-4948-4264-901d-922eee30edaa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+norte</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2e70c985-952a-4b6f-8396-fcb9d01af231" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="19ab9769-74cb-4aa5-9788-592301c934fb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +norte 
\entryTyp root 
\gENG 
\gSPN norte 
\e +norte 
\c N0 
\mp +FinalI 
\ach norti / ~_# 
\ach norte / _# 
\akh norti / ~_# 
\akh norte / _# 
\acl norti / ~_# 
\acl norti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl norte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl norti / ~_# 
\akl norti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl norte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame norti / ~_# 
\ame norte / _# 
\i GEN 14.15 Tsay marca caycan Damasco marcapa norte cag lädunpami.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="6d559cb4-edd4-4e99-9a6d-7116f71f55e6" ownerguid="41a310e7-a4bf-471a-984d-4b266b99fb60"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6d5727fb-63b8-4772-b504-11d2f20442da" ownerguid="286ee16c-a218-43d5-bbac-ab15f80c3fcf"> -<ExampleWords> -<AUni ws="en">more than enough, plenty, ample</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to having more than enough, but not too much?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6d591ee9-8328-4532-a18e-e2be41e10526" ownerguid="867286b0-4477-4124-9c5d-91b85bf77883"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6d5a149c-299a-4952-bea4-af38996f6de3" ownerguid="f76c3803-1c7a-4181-9a87-64ae7231a67d"> -<ExampleWords> -<AUni ws="en">there, thereabouts, thither</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a place near the listener?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6d5fdd15-7352-4395-85d4-6fa6fd1ecd3b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pupu</AUni> -<AUni ws="qvm-x-acl">pupu; pupu; pupo</AUni> -<AUni ws="qvm-x-akh">pupu</AUni> -<AUni ws="qvm-x-akl">pupu; pupu; pupo</AUni> -<AUni ws="qvm-x-ame">pupu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pupu</AUni> -<AUni ws="qvm-x-acl">*pupu</AUni> -<AUni ws="qvm-x-akh">*pupu</AUni> -<AUni ws="qvm-x-akl">*pupu</AUni> -<AUni ws="qvm-x-ame">*pupu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.12" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8c9e559a-74ee-43c6-affd-f87eaa38a40d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pupu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="52b0ddb1-622b-47ed-9d41-fd02b89fc53f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="426987c2-1b53-4ca9-a179-0acf38ffef85" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pupu 
\entryTyp root 
\gENG navel 
\gSPN ombligo 
\e *pupu 
\c N0 
\ach pupu 
\akh pupu 
\acl pupu / _# 
\acl pupu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pupo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pupu / _# 
\akl pupu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pupo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pupu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="6d610b1e-bfbb-408a-b368-990d1d3e3436" ownerguid="716bb125-9945-45ba-a631-ec4893efd1d7"> -<Form> -<AUni ws="qvm-x-ach">sacerdöti; sacerdöti</AUni> -<AUni ws="qvm-x-acl">sacerdöti; sacerdöti; sacerdöte</AUni> -<AUni ws="qvm-x-akh">sacerdöti; sacerdöti</AUni> -<AUni ws="qvm-x-akl">sacerdöti; sacerdöti; sacerdöte</AUni> -<AUni ws="qvm-x-ame">sacerdöti; sacerdöti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="6d6300f7-4023-4204-9e16-11aa8db25800" ownerguid="7e303683-5f32-45b5-8e97-299a34722ab8"> -<Form> -<AUni ws="qvm-x-ach">juytu</AUni> -<AUni ws="qvm-x-acl">juytu; juytu; juyto</AUni> -<AUni ws="qvm-x-akh">juytu</AUni> -<AUni ws="qvm-x-akl">juytu; juytu; juyto</AUni> -<AUni ws="qvm-x-ame">huytu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6d633df3-74b7-4087-92e5-95ff8214325f" ownerguid="3485b6a2-2d95-4a1a-99fe-3c64b221bad2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="6d690091-9077-46c1-b09a-85f1a1c5c2de" ownerguid="63be33e7-9ca2-468d-9ff8-a1b813aacb74"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="e19110d1-1b5f-4f64-b90c-2a0eab006612" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6d6aee81-3230-4f76-9954-3d46659f0662" ownerguid="1fda1a3b-a0e6-4384-8150-d8f0b354e1cb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="6d75fb7e-7ffd-447e-bb30-dd5da87ce3be" ownerguid="34cd6a60-04b6-41e6-abc5-91ca001cad01"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6d788e85-c18c-448e-b90f-dd090d17bfb7" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<ExampleWords> -<AUni ws="en">stomp, clump</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to walking loudly?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6d78a458-a4c3-467b-9d41-060866489b2f" ownerguid="92590b7e-55ca-4c96-8288-78f14e25a2a8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">squash</AUni> -<AUni ws="es">calabaza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d91d60f1-994e-4fe9-8310-19fc7cb158b3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="6d795822-4e75-4266-b044-8acce0e299d0" ownerguid="33697836-9c07-4604-9e79-751c6b62a48e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2SA 10.19 Israel soldäducuna tsaynog vinciptinmi Hadad-ezerta yanapag mandag reycuna Davidman rindicushpan Davidpa munayninchöna cawapäcorgan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="6d7ab19f-2743-489b-909f-47b33cf13b73" ownerguid="6804db44-b71b-4452-98b1-b726bc7cf022"> -<ExampleWords> -<AUni ws="en">boom (v), roar, thunder, blare, at full volume, at full blast</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to making a loud sound?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6d831b43-8db7-4c37-ae5c-248f018c42c5" ownerguid="fe962b84-619c-4318-8461-38767daceb3e"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoAffixAllomorph" guid="6d85d716-492b-4928-9d6f-ab9d777e4202" ownerguid="a6b33028-9972-48eb-8f6c-9b45214d4c8a"> -<Form> -<AUni ws="qvm-x-ach">la</AUni> -<AUni ws="qvm-x-acl">la</AUni> -<AUni ws="qvm-x-akh">la</AUni> -<AUni ws="qvm-x-akl">la</AUni> -<AUni ws="qvm-x-ame">la</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="6d872b5e-55c9-49bf-866c-b9b99568a9f4" ownerguid="bee96736-8acc-4639-8145-2cffb8739056"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="6aaab492-8352-4349-8b74-d99b5d7155ce" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6d8801e6-848c-41ac-9463-e8dca77962d1" ownerguid="7648040b-0aa5-4d9a-8f13-ffd066b81602"> -<ExampleWords> -<AUni ws="en">metric</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words describe a system of lengths?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6d888d6e-b0e0-46f3-b77b-3d2adadbc77c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chini</AUni> -<AUni ws="qvm-x-acl">chini; chine</AUni> -<AUni ws="qvm-x-akh">chini</AUni> -<AUni ws="qvm-x-akl">chini; chine</AUni> -<AUni ws="qvm-x-ame">chini</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trini</AUni> -<AUni ws="qvm-x-acl">*trini</AUni> -<AUni ws="qvm-x-akh">*trini</AUni> -<AUni ws="qvm-x-akl">*trini</AUni> -<AUni ws="qvm-x-ame">*trini</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.119" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c0f9d03f-3008-4aec-9a59-35959607af68" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trini</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="887b326c-78a6-4233-a815-e445cd03819e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a083e12a-2295-4c74-9641-397ba3edf009" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trini 
\entryTyp root 
\gENG sleep 
\gSPN dormir 
\e *trini 
\c V1 
\mp +FinalI 
\ach chini 
\akh chini 
\acl chini +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl chine +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chini +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chine +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chini</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6d8c039e-288b-4806-bf95-f7fb5566cd3c" ownerguid="0d7409ab-fc1f-4680-b040-d91d7004084f"> -<ExampleWords> -<AUni ws="en">incessant, uninterrupted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used to describe something that is not interrupted?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6d8c1d6c-d4a6-4164-ba40-42f5672e1ebe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sipicha</AUni> -<AUni ws="qvm-x-acl">sipicha</AUni> -<AUni ws="qvm-x-akh">sipicha</AUni> -<AUni ws="qvm-x-akl">sipicha</AUni> -<AUni ws="qvm-x-ame">sipicha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*sipicha</AUni> -<AUni ws="qvm-x-acl">*sipicha</AUni> -<AUni ws="qvm-x-akh">*sipicha</AUni> -<AUni ws="qvm-x-akl">*sipicha</AUni> -<AUni ws="qvm-x-ame">*sipicha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.691" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8dc3c087-fa84-42f6-a046-c414ab8230db" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*sipicha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d49d14c4-32c9-4613-8dbc-b7dd486df342" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c7a8f9a0-a81f-41c9-82fb-312387dbcdf7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *sipicha 
\entryTyp root 
\gENG 
\gSPN 
\e *sipicha 
\c V1 
\ach sipicha 
\akh sipicha 
\acl sipicha 
\akl sipicha 
\ame sipicha 
\i DAN 4.14 Tsay yörata muturishpayqui lapan rämancunata laumay. Nircur höjancunatapis lapanta sipichay.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6d8de223-490b-4cdb-8aca-044e7921b17f" ownerguid="f8863b67-b911-4334-a1b6-6eb913bd14af"> -<ExampleWords> -<AUni ws="en">wide, broad, widespread</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is wide?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="6d935f99-3abf-4c02-a306-00f6c62ae775" ownerguid="2418dd59-fa53-44a5-964d-f9dae2183b5e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuti</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuti; cuti; cute</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuti</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuti; kuti; kute</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuti</Run> -</AStr> -</Form> -<Morph> -<objsur guid="15cd3c26-af09-4ed6-a99c-c5c4e077d532" t="r" /> -</Morph> -<Msa> -<objsur guid="50ccffa6-4c46-497e-854c-58ddad7cd9d2" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="6d94358d-cfa2-4a2b-b9b8-706c728ab770" ownerguid="196bf7b1-54a1-4a78-8d10-c61585849c63"> -<ExampleWords> -<AUni ws="en">arm in arm, side by side, in step with, out of step with, single file</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe how a person walks with another person?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6d988c52-2a95-4985-8b35-f233397f8f53" ownerguid="d8dfa6fc-84ea-4178-b4f5-95e0c113140a"> -<ExampleWords> -<AUni ws="en">without, not with, no relationship to, apart from, independent of, from, free from, separated from</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate dissociation?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6d9b435c-f319-4c9b-958d-2a3d0454a6ea"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">came:llu</AUni> -<AUni ws="qvm-x-acl">came:llu; came:llu; came:llo</AUni> -<AUni ws="qvm-x-akh">came:llu</AUni> -<AUni ws="qvm-x-akl">came:llu; came:llu; came:llo</AUni> -<AUni ws="qvm-x-ame">came:llu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+camello</AUni> -<AUni ws="qvm-x-acl">+camello</AUni> -<AUni ws="qvm-x-akh">+camello</AUni> -<AUni ws="qvm-x-akl">+camello</AUni> -<AUni ws="qvm-x-ame">+camello</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.310" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="023364a1-d9c2-458d-ba05-e1af63f86779" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+camello</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a2412f4b-abe7-4a95-8d08-f0ce1928a6dc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2f213891-c720-4bf4-b597-fa3fbf1e8517" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +camello 
\entryTyp root 
\gENG camel 
\gSPN camello 
\e +camello 
\c N0 
\ach came:llu 
\akh came:llu 
\acl came:llu / _# 
\acl came:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl came:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl came:llu / _# 
\akl came:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl came:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame came:llu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="6d9ec4ca-7262-4031-9041-5892eb4d091d" ownerguid="e36a2ebf-7195-431a-8f9f-1f7943754de6"> -<Form> -<AUni ws="qvm-x-ach">exigi</AUni> -<AUni ws="qvm-x-acl">exigi; exige</AUni> -<AUni ws="qvm-x-akh">exigi</AUni> -<AUni ws="qvm-x-akl">exigi; exige</AUni> -<AUni ws="qvm-x-ame">exigi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6da469f9-1f0c-4335-acc0-6c49a7bb5c21" ownerguid="4cfcbc1d-84f3-466d-84d1-55ddb4998ea2"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="6da703dc-b3e9-42ba-bb66-e60771b44fe0" ownerguid="a241fe43-86ce-447f-9996-1f90e013b408"> -<Form> -<AUni ws="qvm-x-ach">päsa</AUni> -<AUni ws="qvm-x-acl">päsa</AUni> -<AUni ws="qvm-x-akh">päsa</AUni> -<AUni ws="qvm-x-akl">päsa</AUni> -<AUni ws="qvm-x-ame">päsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="6da91360-4cf5-44e6-a474-97972221ea79"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">arma:da</AUni> -<AUni ws="qvm-x-acl">arma:da</AUni> -<AUni ws="qvm-x-akh">arma:da</AUni> -<AUni ws="qvm-x-akl">arma:da</AUni> -<AUni ws="qvm-x-ame">arma:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+armada</AUni> -<AUni ws="qvm-x-acl">+armada</AUni> -<AUni ws="qvm-x-akh">+armada</AUni> -<AUni ws="qvm-x-akl">+armada</AUni> -<AUni ws="qvm-x-ame">+armada</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.830" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e4525f03-ced5-4d08-9f4d-8430553efdef" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+armada</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2c98b8eb-4934-48ad-92fb-3dbd05a7d844" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4ee797e5-c1b6-489e-9cc4-3477461074a6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +armada 
\entryTyp root 
\gENG plow 
\gSPN arado 
\e +armada 
\c N0 
\ach arma:da 
\akh arma:da 
\acl arma:da 
\akl arma:da 
\ame arma:da</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="6da97182-d8a9-4095-979c-83f71b63a3be" ownerguid="bd81aa47-8112-4aab-b293-fdd2fc71869d"> -<Form> -<AUni ws="qvm-x-ach">verbu; verbo</AUni> -<AUni ws="qvm-x-acl">verbu; verbu; verbo</AUni> -<AUni ws="qvm-x-akh">verbu; verbo</AUni> -<AUni ws="qvm-x-akl">verbu; verbu; verbo</AUni> -<AUni ws="qvm-x-ame">verbu; verbo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="6daa3b80-7c0c-4f3a-93ae-d097c1cb5899"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lagui</AUni> -<AUni ws="qvm-x-acl">lagui; lague</AUni> -<AUni ws="qvm-x-akh">laqi</AUni> -<AUni ws="qvm-x-akl">laqi; laqe</AUni> -<AUni ws="qvm-x-ame">laqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llaqi.v</AUni> -<AUni ws="qvm-x-acl">*llaqi.v</AUni> -<AUni ws="qvm-x-akh">*llaqi.v</AUni> -<AUni ws="qvm-x-akl">*llaqi.v</AUni> -<AUni ws="qvm-x-ame">*llaqi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.154" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="86eb3e40-5d39-4a64-9e41-55e366a67c7b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llaqi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bd9dddad-d821-46f0-9525-d95cf63b38ab" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="27e376f1-c650-41d5-add8-c9c462c23ee9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llaqi.v 
\entryTyp root 
\gENG prune 
\gSPN ? 
\e *llaqi.v 
\c V1 
\mp +FinalI 
\ach lagui 
\akh laqi 
\acl lagui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lague +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl laqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl laqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame laqi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="6db03d73-47d0-4cac-8937-5391f83e804e" ownerguid="61d085e6-2092-4d86-88b4-45f4e4579a4d"> -<Form> -<AUni ws="qvm-x-ach">socörru</AUni> -<AUni ws="qvm-x-acl">socörru; socörru; socörro</AUni> -<AUni ws="qvm-x-akh">socörru</AUni> -<AUni ws="qvm-x-akl">socörru; socörru; socörro</AUni> -<AUni ws="qvm-x-ame">socörru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6db26996-f527-4fd4-aea2-4f0021a57369" ownerguid="108eea5a-bd2e-42b8-bb53-b1fc1231dd62"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="6db6ab9f-f824-44df-9643-4e00417aa710" ownerguid="195bad5d-4c9a-40c4-b9aa-021b797f26af"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6db8728a-9651-402b-a3f9-6b88521a1c1a" ownerguid="71a2cc77-f968-4341-84c1-6c16d007a093"> -<ExampleWords> -<AUni ws="en">skin, flay</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to skinning an animal?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6dba9fc4-8173-4104-a5c7-5375058a0695" ownerguid="10f0e28a-a156-4a18-8e97-4712b22d6c4b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">miel</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a60bab5c-c707-4b32-b7f8-20644f83cdeb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6dbc1bdb-38c0-491d-b22e-af97b5592e42" ownerguid="c60cf6a1-7868-4536-ac73-387bfa26e04b"> -<ExampleWords> -<AUni ws="en">rebel, activist, agitator, anarchist, belligerent, conspirator, extremist, guerrilla, insurgent, liberationist, militant, mutineer, rabble-rouser, radical, rebel, revolutionary, revolutionist, terrorist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a person who rebels?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6dc103aa-f6c8-4052-9d45-be6d8b608d3c" ownerguid="62f62ab7-4ac7-4818-97ad-889af98739d9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fork</AUni> -<AUni ws="es">tenedor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="570a2c63-a9ff-4e32-960b-82a3d451907a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6dc20c62-912e-40ac-9de3-97ea9f53a3b7" ownerguid="f8f93501-e170-4336-9dce-cd19d186bb0c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="6dc2b268-df2e-479f-9e54-15a7ded31352" ownerguid="64d112a2-be5c-41c5-aa4c-2010afdb8fec"> -<Form> -<AUni ws="qvm-x-ach">decidïdu</AUni> -<AUni ws="qvm-x-acl">decidïdu; decidïdu; decidïdo</AUni> -<AUni ws="qvm-x-akh">decidïdu</AUni> -<AUni ws="qvm-x-akl">decidïdu; decidïdu; decidïdo</AUni> -<AUni ws="qvm-x-ame">decidïdu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="6dc38373-e5b8-49e7-a672-abaa1df9c720"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alfabe:tu</AUni> -<AUni ws="qvm-x-acl">alfabe:tu; alfabe:tu; alfabe:to</AUni> -<AUni ws="qvm-x-akh">alfabe:tu</AUni> -<AUni ws="qvm-x-akl">alfabe:tu; alfabe:tu; alfabe:to</AUni> -<AUni ws="qvm-x-ame">alfabe:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+alfabeto</AUni> -<AUni ws="qvm-x-acl">+alfabeto</AUni> -<AUni ws="qvm-x-akh">+alfabeto</AUni> -<AUni ws="qvm-x-akl">+alfabeto</AUni> -<AUni ws="qvm-x-ame">+alfabeto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.699" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="426c262a-b7e6-4f55-98f3-9ec9087461f2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+alfabeto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ffaf62b1-b7b9-4b25-a392-28ba047c95ab" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="08ea3f92-c9bf-4536-a8e1-f436b9907c73" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +alfabeto 
\entryTyp root 
\gENG 
\gSPN alfabeto 
\e +alfabeto 
\c N0 
\ach alfabe:tu 
\akh alfabe:tu 
\acl alfabe:tu / _# 
\acl alfabe:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl alfabe:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl alfabe:tu / _# 
\akl alfabe:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl alfabe:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame alfabe:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="6dc46ea4-20eb-4528-9f5e-ffc1e3e27332" ownerguid="98e60aac-c0c6-42e0-a71b-2f618811bb60"> -<Form> -<AUni ws="qvm-x-ach">unca</AUni> -<AUni ws="qvm-x-acl">unca</AUni> -<AUni ws="qvm-x-akh">unka</AUni> -<AUni ws="qvm-x-akl">unka</AUni> -<AUni ws="qvm-x-ame">unka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6dc50e0e-9583-43fa-a6d4-4161a7edcfda" ownerguid="87e53fd3-c6e6-462f-a3b5-a89202285d8c"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="6dc5c56b-ee06-4e04-9f46-72bf87deaf10"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">murcu</AUni> -<AUni ws="qvm-x-acl">murcu; murco</AUni> -<AUni ws="qvm-x-akh">murku</AUni> -<AUni ws="qvm-x-akl">murku; murko</AUni> -<AUni ws="qvm-x-ame">murku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*murku</AUni> -<AUni ws="qvm-x-acl">*murku</AUni> -<AUni ws="qvm-x-akh">*murku</AUni> -<AUni ws="qvm-x-akl">*murku</AUni> -<AUni ws="qvm-x-ame">*murku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.507" /> -<DateModified val="2022-10-10 21:18:47.203" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1c4d8e2c-e13a-47d1-9fb9-d6c37eae61d7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*murku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0cee9f40-3588-41f8-a9d1-ca9cb492e742" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5bd2407b-b9c4-4a80-a747-ba70056e8ac7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *murku 
\entryTyp root 
\gENG 
\gSPN 
\e *murku 
\c V1 
\ach murcu 
\akh murku 
\acl murcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl murco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl murku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl murko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame murku 
\i SNG 7.12 Tsaycho ricamushun mä üvacuna maynacush murcuraycan y granädapis maynacush tucturaycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6dc8414a-07ab-49e9-9dc9-7b31dc5c961e" ownerguid="42be1634-72ca-4a20-80a1-ba726e5cd1d2"> -<ExampleWords> -<AUni ws="en">cut up, cut into pieces, dice, grate, shred, cube, quarter, halve, mince, grind</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to cutting something into many pieces?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6dc8e4b3-ec89-4e2d-8c6e-f0249eb9ea48" ownerguid="935eb0aa-26cf-402a-8f3c-eed9a0425185"> -<Form> -<AUni ws="qvm-x-ach">cuyu</AUni> -<AUni ws="qvm-x-acl">cuyu; cuyo</AUni> -<AUni ws="qvm-x-akh">kuyu</AUni> -<AUni ws="qvm-x-akl">kuyu; kuyo</AUni> -<AUni ws="qvm-x-ame">kuyu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="6dc8ed7b-03f6-4d88-bb1b-d93580151acc" ownerguid="2b698a91-88e5-43ec-8368-836fc2bf4376"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spy</AUni> -<AUni ws="es">espiar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7f66f6ee-c166-4ec3-9900-0d074a20e444" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoInflAffMsa" guid="6dcb48c7-e583-4d11-8c06-4fb11a4f7d09" ownerguid="a42f2140-e40e-486c-b41f-412218a0e088"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="fda4c591-1349-4f9e-ab87-905ae2aa25e1" t="r" /> -</Slots> -</rt> -<rt class="LexSense" guid="6dcdecf6-1819-4db5-ae67-8f209010d986" ownerguid="960240a0-3d88-49cc-b42b-6dd7e4b9e0ae"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wet</AUni> -<AUni ws="es">mojar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e0b5b3dc-377a-4367-a1c3-67612803e32b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="6dd0bee1-7ddb-406d-bcde-ee0ba2a05b58" ownerguid="67491727-59ff-4a20-a173-3f80a5c350e2"> -<Form> -<AUni ws="qvm-x-ach">wapsu</AUni> -<AUni ws="qvm-x-acl">wapsu; wapsu; wapso</AUni> -<AUni ws="qvm-x-akh">wapsu</AUni> -<AUni ws="qvm-x-akl">wapsu; wapsu; wapso</AUni> -<AUni ws="qvm-x-ame">wapsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="6dd16e6e-fbdb-4df1-9730-4877651e68f3" ownerguid="d8366daf-ae1d-4b2c-a447-478c73580639"> -<Abbreviation> -<AUni ws="en">6.1.2.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.365" /> -<DateModified val="2022-9-23 16:55:8.365" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being efficient.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Efficient</AUni> -</Name> -<Questions> -<objsur guid="d98941d6-7b05-492c-bf73-a3965dabd225" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="6dd27cca-fe6f-4ac2-a49d-1002a53fcb34" ownerguid="ea2d0dc5-2cdb-4686-9f48-abe65ed295a4"> -<ExampleWords> -<AUni ws="en">move across, go across, cross, go to the other side</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to moving across something, such as a river, road, mountain range, or some other dividing line?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6dd2ee35-cc3e-41f4-874e-3bc5924bfe30" ownerguid="8ce18f73-b325-4cde-8552-331be1335db4"> -<Form> -<AUni ws="qvm-x-ach">ajincu; ajinco</AUni> -<AUni ws="qvm-x-acl">ajincu; ajincu; ajinco</AUni> -<AUni ws="qvm-x-akh">ajincu; ajinco</AUni> -<AUni ws="qvm-x-akl">ajincu; ajincu; ajinco</AUni> -<AUni ws="qvm-x-ame">ajincu; ajinco</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6dd8f41e-d393-4d0e-87f8-d3bc5e9896d2" ownerguid="35faefb3-7498-4735-9b05-e7035dd368fc"> -<ExampleWords> -<AUni ws="en">crop failure, poor harvest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to crop failure?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6ddb111d-2a34-4c28-b717-ebc4a0d69fc4" ownerguid="683f570a-0bfe-4a97-b55d-4319b328508b"> -<ExampleWords> -<AUni ws="en">dam, hydroelectric power plant, electric generating plant, dynamo</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words are used of generating electricity using water power?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6dde2d5d-c27f-432b-8bf8-ff740be6ad2a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cu; ca</AUni> -<AUni ws="qvm-x-acl">cu; co; ca</AUni> -<AUni ws="qvm-x-akh">ku; ka</AUni> -<AUni ws="qvm-x-akl">ku; ko; ka</AUni> -<AUni ws="qvm-x-ame">ku; ka</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.568" /> -<DateModified val="2022-10-16 14:4:51.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="1" /> -<LexemeForm> -<objsur guid="0b5adebd-a089-4d3b-b04e-8b320e482626" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">REFDIR</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="19d8e776-3207-47b6-bd4e-4f4c71fa6989" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9e0e2b44-6732-47a7-b994-f38302c0af95" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx REFDIR 
\entryTyp suffix 
\gENG REFDIR 
\gSPN REFDIR 
\e REFDIR 
\c V1/V1 V2/V2 
\o 30 | -cu REFDIR 30 -rpu DWN 35 
\mp PMlowered +foreshortens 
\ach cu 
\ach ca morphlowered 
\akh ku 
\akh ka morphlowered 
\acl cu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl co +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ca morphlowered 
\akl ku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ka morphlowered 
\ame ku 
\ame ka morphlowered 
\mcc REFDIR / {+underlong} _ 
\co REFDIR exists only because it foreshortens, otherwise it is REF 
\mcc REFDIR / [noTakeREFDIR] ~_ 
\mcc REFDIR / _ [dir] / BCM1.1 _ 
\i NAM 3.6 Tsaynogpis ismaywan ganratacuycur runa pengacushgannogmi gamcunapis pengacunqui vincishunayquipag contrayquicunata yanapaptë.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="6dde6e01-3fd4-4221-9beb-68a3c37226a1" ownerguid="63e7e607-7ad1-4cb5-89cf-de362007b4bb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">guitar</AUni> -<AUni ws="es">guitarra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dd397548-119f-4bb0-b534-b57889d62fe2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="6ddf87ce-d100-4f94-b4d9-18a6d6ccc59c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">palga</AUni> -<AUni ws="qvm-x-acl">palga</AUni> -<AUni ws="qvm-x-akh">palqa</AUni> -<AUni ws="qvm-x-akl">palqa</AUni> -<AUni ws="qvm-x-ame">palqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pallqa.n</AUni> -<AUni ws="qvm-x-acl">*pallqa.n</AUni> -<AUni ws="qvm-x-akh">*pallqa.n</AUni> -<AUni ws="qvm-x-akl">*pallqa.n</AUni> -<AUni ws="qvm-x-ame">*pallqa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.679" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="287dba10-dc8c-4529-921a-6e3af29aa5f4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pallqa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7c3c6f36-d56a-4236-a85d-c446e0032343" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1d4ec494-5757-45ca-a487-c3e4b309bf78" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pallqa.n 
\entryTyp root 
\gENG 
\gSPN 
\e *pallqa.n 
\c N0 
\ach palga 
\akh palqa 
\acl palga 
\akl palqa 
\ame palqa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6de1ac34-09e3-48f1-9718-319476adf3cb" ownerguid="ee446395-781b-4651-afef-cad78b71f843"> -<ExampleWords> -<AUni ws="en">reptile, reptilian</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to reptiles?</AUni> -</Question> -</rt> -<rt class="Segment" guid="6de23687-ef08-48cc-9e58-d81039f6d445" ownerguid="2ae0cb9d-15d7-47b6-88ed-91c21e8605f4"> -<Analyses> -<objsur guid="94fbf482-956b-4adc-aa14-401039e1d4b4" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="6de42a33-35b2-49c6-b2c4-fa9c0c5094f0" ownerguid="0f568473-880d-43bd-b5ce-590100fdcaf6"> -<Abbreviation> -<AUni ws="en">5.2.2.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.315" /> -<DateModified val="2022-9-23 16:55:8.315" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to drinking.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Drink</AUni> -</Name> -<OcmCodes> -<Uni>271 Water and Thirst</Uni> -</OcmCodes> -<Questions> -<objsur guid="c90641ea-6b1d-48e6-860e-896889b35614" t="o" /> -<objsur guid="c5005fc0-6ef9-488d-8e0d-75ccbbd1c9a3" t="o" /> -<objsur guid="6f599cd6-f002-4aa3-a055-de6841a313fd" t="o" /> -<objsur guid="51edd3fb-d4bb-40fa-a3ce-7bc245c8fd41" t="o" /> -<objsur guid="89fc1464-1d63-4b94-80bc-31fa63e42e15" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="6de4e99b-2b5a-493a-a208-f024d1eabdf3" ownerguid="12fe5f6c-7f98-47ba-936a-bcd1065c2db3"> -<Abbreviation> -<AUni ws="en">7.2.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to moving in a backward direction--the person is facing one direction, but moving toward their back--to move in the opposite direction from the direction the person is facing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Move back</AUni> -</Name> -<Questions> -<objsur guid="271200ea-801e-4591-9ffb-70fbac5e6070" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="StStyle" guid="6de6e4d1-0c06-4102-86e2-82faf7bf9811" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="14" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Classified-Defn</Uni> -</Name> -<Rules> -<Prop></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<Usage> -<AUni ws="en">Used for the definition and/or gloss in a Classified Dictionary.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="WfiAnalysis" guid="6de6ebb0-8896-4615-8718-e7ce8f9da605" ownerguid="3e2c8dd9-1512-4557-a7a8-559a23e7592a"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="d409cdf4-1243-45fc-abb9-6fda5d6179b8" t="o" /> -<objsur guid="749ae7b1-92a6-4aaa-8933-157a0a98f244" t="o" /> -<objsur guid="453ed93f-37fe-4f6a-a34c-1e8472de1b78" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="6de7b89d-b592-4e55-a2f2-0737366b277b" ownerguid="094d58e6-80eb-4bfc-a63f-a848e53f6622"> -<Form> -<AUni ws="qvm-x-ach">macala</AUni> -<AUni ws="qvm-x-acl">macala</AUni> -<AUni ws="qvm-x-akh">makala</AUni> -<AUni ws="qvm-x-akl">makala</AUni> -<AUni ws="qvm-x-ame">makala</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6de92ca0-169a-47f4-8cd7-91b6f5d10263" ownerguid="8b5f9519-7301-4400-b93d-ebde4ea3def8"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">You have two <alternatives>, keep quiet <or> leave.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">or, either...or, alternatively, nor, otherwise, alternative, optional</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate alternative relation?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6de9d5d3-f9e2-47d2-a14d-aeab3c4f392c" ownerguid="b0220f1b-891c-4db2-abd0-0865edfb345e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoInflAffMsa" guid="6debf4e9-614a-4dc3-aaa7-0d6a27afc1a7" ownerguid="8fac2a47-5fa9-494e-9bae-2efc1f6bd9d6"> -<PartOfSpeech> -<objsur guid="a4fc78d6-7591-4fb3-8edd-82f10ae3739d" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="f9e1228b-4c5b-4e23-bd04-d513eddcbaea" t="r" /> -</Slots> -</rt> -<rt class="LexSense" guid="6df018e8-8cba-4167-adb5-b1882d23dbc8" ownerguid="32493268-8f3b-4c37-90fe-b4ba87c4c7e1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 BN/BN</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">LIM2.2</AUni> -<AUni ws="es">LIM2.2</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1829a081-bc32-4291-9767-5bec080e6a37" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="6df253f0-803f-4744-a228-9e37f4ef81f1" ownerguid="e0880b58-248f-4071-b5b8-bca868871a72"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ta</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ta</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ta</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ta</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ta</Run> -</AStr> -</Form> -<Morph> -<objsur guid="4f3f1430-f126-405a-98a8-5d0b732eb948" t="r" /> -</Morph> -<Msa> -<objsur guid="6debf4e9-614a-4dc3-aaa7-0d6a27afc1a7" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="6df41d2d-3650-4816-a690-bc94c942c7d1" ownerguid="284433df-7b37-4e63-a614-78520c483213"> -<ExampleWords> -<AUni ws="en">fly, flutter, soar, dive, swoop, bank, turn, (hummingbird) hover, hop, roost, hang in the air, ride the wind, alight, land</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) How do birds move?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6df441b7-0b61-432e-9384-130c610a988f" ownerguid="e626c65e-eb79-4230-b07a-a6d975d3fe3d"> -<ExampleWords> -<AUni ws="en">mouth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the mouth?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6df52638-1d35-4e79-89b2-b8bf7bce3385" ownerguid="39dcb6b9-94df-45be-a128-c14c7a9dcdbd"> -<ExampleWords> -<AUni ws="en">vomiting, morning sickness, indigestion, diarrhea, dysentery, constipation, constipated, ulcer, ulcerate, ulcerated, intestinal obstruction, worms</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of stomach illness are there?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6df912bb-1630-4833-b996-3c7275af6f91" ownerguid="bfc449fe-bc53-4325-b0ac-9c960e7549eb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">apart</AUni> -<AUni ws="es">separado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3a0a43e1-8410-4478-9bda-e1178dc3414d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="6df9a256-eb34-4af3-b551-07173fa18062" ownerguid="c1496c4c-e413-4659-87d5-ea6cf3db8209"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="d6c9bfa5-c0a4-4ce7-8c5a-6eadfab82104" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="6e04a3e2-3b3a-4d0b-bf71-1596ca0aa211" ownerguid="b760a3a7-ea7f-4a4b-a4b5-81752f2ca158"> -<Abbreviation> -<AUni ws="en">6.1.2.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.350" /> -<DateModified val="2022-9-23 16:55:8.350" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being careless.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Careless, irresponsible</AUni> -</Name> -<Questions> -<objsur guid="3ba53128-c324-4f8f-bbbd-1636bda4636c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="6e063484-6af7-4b88-973f-c9db28d373b5" ownerguid="ecc8923b-0f94-43c2-829c-8bc213d2666c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">HAB 3.12 Castigarga nacioncunatapis langurmi ushanqui.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="6e06bf00-4444-4f97-9d32-67fdfe9cb5da" ownerguid="744d1402-05f5-4491-9c15-a5af03595edb"> -<ExampleWords> -<AUni ws="en">tempt, corrupt, pervert, turn</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to one person causing another person to be bad?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6e089257-418e-4175-9774-aa2d6a0a32a3" ownerguid="8c59455f-304b-4424-b296-b362aaebbc4c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">barbeque</AUni> -<AUni ws="es">asar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="45d7ff0f-9f70-4e0f-a2f8-a0d58f061e97" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="6e0c3542-ff20-47ef-9b51-0d3621577a68"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gasta</AUni> -<AUni ws="qvm-x-acl">gasta</AUni> -<AUni ws="qvm-x-akh">gasta</AUni> -<AUni ws="qvm-x-akl">gasta</AUni> -<AUni ws="qvm-x-ame">gasta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gastar</AUni> -<AUni ws="qvm-x-acl">+gastar</AUni> -<AUni ws="qvm-x-akh">+gastar</AUni> -<AUni ws="qvm-x-akl">+gastar</AUni> -<AUni ws="qvm-x-ame">+gastar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.607" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="561b7c91-b3e1-462b-92fc-dfa60d99dc8d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gastar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2821d970-f5ee-4909-857d-93eaa4f4085c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f7005317-c167-489a-8263-14b025fc94f1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gastar 
\entryTyp root 
\gENG spend 
\gSPN gastar 
\e +gastar 
\c V1 
\ach gasta 
\akh gasta 
\acl gasta 
\akl gasta 
\ame gasta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="6e0cf1b5-8bad-439d-94d7-2e7ddd8f294c" ownerguid="2ed708d3-26f9-4502-9653-b628e93e8506"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="42b97696-0fdd-4386-8d8d-78d433dbbb8f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="6e0f8ca2-4d08-4cb9-8df8-a672b82ded28" ownerguid="862aa851-6b1d-491a-bd03-40e8723e4d33"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="6e0f9742-2b64-4f5c-aaa4-8c848ddb7fca" ownerguid="653c372e-f413-434f-b45e-8fa990cebcdb"> -<Form> -<AUni ws="qvm-x-ach">wallanca</AUni> -<AUni ws="qvm-x-acl">wallanca</AUni> -<AUni ws="qvm-x-akh">wallanka</AUni> -<AUni ws="qvm-x-akl">wallanka</AUni> -<AUni ws="qvm-x-ame">wallanka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="6e10f3df-c617-439d-9b98-e16ad2ed9471" ownerguid="e83698b6-a3be-42b4-881f-10382f4514c6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="4d6cb4ec-ddb6-4208-9809-9a5caf9a8c24" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6e12d4b0-0920-41a8-8fc4-9f2d6644387c" ownerguid="f48e6338-dde3-4d6a-85d1-90bc470293f2"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="6e17e279-00e5-4fee-8ef8-096fa90c23b4" ownerguid="47e3f461-984b-45b6-b09b-9fefb9191b15"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="75dd386d-3fff-41c6-a73d-ac3743e20753" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">be.fragrant</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="151f9b79-6d07-4183-ac2a-fe3688829a03" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="6e18b74e-e6c0-4df1-89fa-d48cd6bb5e64" ownerguid="49ee1a30-4e7d-400e-824f-9b2f2c1786e3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="LexExampleSentence" guid="6e1d133b-87d7-4895-8dc8-4982bde5756b" ownerguid="d56a5d54-9e54-49a6-9473-da133f47c02a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">modismo: Runtu tamyapita geshpeg caglami trïgö wayushga.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiAnalysis" guid="6e240b2c-56a6-4f86-878d-b4d39954184d" ownerguid="dff22876-50cc-417e-a7a5-87687e0aedbc"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="fbb1bcda-d912-4840-8028-8e348e1616d7" t="o" /> -<objsur guid="907341c3-6cd7-4240-8c55-bd45dc82b2cb" t="o" /> -<objsur guid="77b0269a-8d8f-4783-ace8-40e4a29426d8" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="6e246787-ea9a-4260-a27b-264866c23ac2" ownerguid="dfa0c0ca-ecb3-41a6-a1fc-5a3cfecee9d9"> -<Form> -<AUni ws="qvm-x-ach">visita</AUni> -<AUni ws="qvm-x-acl">visita</AUni> -<AUni ws="qvm-x-akh">visita</AUni> -<AUni ws="qvm-x-akl">visita</AUni> -<AUni ws="qvm-x-ame">visita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6e27bf53-0fe0-438a-98de-d0ba6588c518" ownerguid="d01f1c51-522e-4b35-81b3-00577dbfa3bd"> -<ExampleWords> -<AUni ws="en">go together, go with, suit you, color scheme, complimentary</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe colors that look good together?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6e28dcd4-683f-4705-813f-2e52513c6aab"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cushma</AUni> -<AUni ws="qvm-x-acl">cushma</AUni> -<AUni ws="qvm-x-akh">kushma</AUni> -<AUni ws="qvm-x-akl">kushma</AUni> -<AUni ws="qvm-x-ame">kushma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kushma</AUni> -<AUni ws="qvm-x-acl">*kushma</AUni> -<AUni ws="qvm-x-akh">*kushma</AUni> -<AUni ws="qvm-x-akl">*kushma</AUni> -<AUni ws="qvm-x-ame">*kushma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.23" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e74788a9-dbe1-4c9e-8f2e-edf04571a3f3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kushma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="106af15f-a516-4057-9a19-60e248659f2b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="02ede3b3-4aa5-4901-be5f-37110b661105" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kushma 
\entryTyp root 
\gENG 
\gSPN 
\e *kushma 
\c N0 
\ach cushma 
\akh kushma 
\acl cushma 
\akl kushma 
\ame kushma</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6e2a60ba-d321-4cbe-9c3e-d2d478ea8b99" ownerguid="cb95189c-8c74-465b-af07-48e08dbf7c39"> -<ExampleWords> -<AUni ws="en">stimulating, rousing, touching, emotional</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe something that causes someone to feel something?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="6e2b36c2-aa07-44bb-b6bd-7edd35663930"> -<Form> -<Str> -<Run ws="en">11</Run> -</Str> -</Form> -</rt> -<rt class="MoStemMsa" guid="6e2d946f-3d16-4e0a-b28f-f64921214903" ownerguid="6048bde3-5661-48f9-8b50-c9aaccf06f89"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6e31aa83-8f7b-43d4-acf5-68944710fdb7" ownerguid="2d5d634e-75b5-4921-922e-573a809a49f8"> -<ExampleWords> -<AUni ws="en">builder, maker, producer, manufacturer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who makes something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6e330b7d-0c11-46fc-af3b-1d387ad17879" ownerguid="e626c65e-eb79-4230-b07a-a6d975d3fe3d"> -<ExampleWords> -<AUni ws="en">yawn, yawn (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to yawning?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6e345886-cf62-4c82-8e72-e49ed6287b07" ownerguid="080bf07b-e58b-4a75-bb97-84d980a143f0"> -<ExampleWords> -<AUni ws="en">shape, form, figure, silhouette</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to the shape of something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6e34d3c9-43ec-4ed7-928a-0c3c1a725fc9" ownerguid="26dae1cf-1c92-4d82-a045-9bc8b3ea3647"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="6e39c922-9d0f-4a25-9275-69ab40e852d8" ownerguid="1545d615-742e-483c-8304-b07c7694bbcf"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="6e39d19c-8967-4dbf-9ce5-d0c71919bf17" ownerguid="1ff9ed87-0b97-4333-81d3-e5d6ecf23449"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="6e3a26d3-0e2a-4271-b3ae-0c9bf1e6d4a7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">isma</AUni> -<AUni ws="qvm-x-acl">isma</AUni> -<AUni ws="qvm-x-akh">isma</AUni> -<AUni ws="qvm-x-akl">isma</AUni> -<AUni ws="qvm-x-ame">isma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*isma</AUni> -<AUni ws="qvm-x-acl">*isma</AUni> -<AUni ws="qvm-x-akh">*isma</AUni> -<AUni ws="qvm-x-akl">*isma</AUni> -<AUni ws="qvm-x-ame">*isma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.862" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dba68fef-65de-45d1-b87c-0aaaeb23bb02" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*isma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d1463c82-0070-41fd-ad75-19e0042cf633" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d50f8665-0a19-42dc-ac01-c71468be8454" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *isma 
\entryTyp root 
\gENG defecate 
\gSPN defecar 
\e *isma 
\c V1 
\ach isma 
\akh isma 
\acl isma 
\akl isma 
\ame isma</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="6e3d3b65-6939-4d32-b256-4eb6f4f0e20b" ownerguid="07fa99e4-1a4c-4f69-a02b-e18581115472"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hen</AUni> -<AUni ws="es">gallina</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1794c03d-256c-4446-9f8c-bfa0584026c0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="6e41c546-4be4-41a5-8eb9-ff6ea23d2737"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">manda</AUni> -<AUni ws="qvm-x-acl">manda</AUni> -<AUni ws="qvm-x-akh">manda</AUni> -<AUni ws="qvm-x-akl">manda</AUni> -<AUni ws="qvm-x-ame">manda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mandar</AUni> -<AUni ws="qvm-x-acl">+mandar</AUni> -<AUni ws="qvm-x-akh">+mandar</AUni> -<AUni ws="qvm-x-akl">+mandar</AUni> -<AUni ws="qvm-x-ame">+mandar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.305" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e20487dd-65cf-4afd-a413-3e123f8036b2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mandar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="64a2dfae-6056-4b8a-9e97-83a27439223d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="baeabaff-4f72-488a-b020-3e793c733869" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mandar 
\entryTyp root 
\gENG send 
\gSPN mandar 
\e +mandar 
\c V2 
\ach manda 
\akh manda 
\acl manda 
\akl manda 
\ame manda</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="6e44405a-b655-4226-afc6-5507a4a42b67"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ichaya; ichaya:</AUni> -<AUni ws="qvm-x-acl">ichaya; ichaya:</AUni> -<AUni ws="qvm-x-akh">ichaya; ichaya:</AUni> -<AUni ws="qvm-x-akl">ichaya; ichaya:</AUni> -<AUni ws="qvm-x-ame">ichaya; ichaya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*itraya:</AUni> -<AUni ws="qvm-x-acl">*itraya:</AUni> -<AUni ws="qvm-x-akh">*itraya:</AUni> -<AUni ws="qvm-x-akl">*itraya:</AUni> -<AUni ws="qvm-x-ame">*itraya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.872" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bf5437d1-1dc8-487b-895c-fe0f60cb85e9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*itraya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f21b4bf3-ca19-4ede-b764-70f250f29ad3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bbc0894e-a397-4ddd-a11a-99496e369db1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *itraya: 
\entryTyp root 
\gENG curl.up 
\gSPN encoger 
\e *itraya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach ichaya foreshortened 
\ach ichaya: 
\akh ichaya foreshortened 
\akh ichaya: 
\acl ichaya foreshortened 
\acl ichaya: 
\akl ichaya foreshortened 
\akl ichaya: 
\ame ichaya foreshortened 
\ame ichaya:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6e46896b-f613-4a1e-984c-8e78a4930d7d" ownerguid="9d865347-6656-4ab7-8613-bf2e8bc53aa7"> -<ExampleWords> -<AUni ws="en">injured, hurt, impaired, damaged</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words describe a part of your body that has been injured?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6e4706a4-998f-41c7-bb56-ae39a64f2052" ownerguid="be1ba0af-0be2-4172-a1bb-807ab504ad68"> -<Form> -<AUni ws="qvm-x-ach">camisa</AUni> -<AUni ws="qvm-x-acl">camisa</AUni> -<AUni ws="qvm-x-akh">camisa</AUni> -<AUni ws="qvm-x-akl">camisa</AUni> -<AUni ws="qvm-x-ame">camisa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="6e480c94-c45a-442e-a8fd-e63511df6b3a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quirun</AUni> -<AUni ws="qvm-x-acl">quirun</AUni> -<AUni ws="qvm-x-akh">kirun</AUni> -<AUni ws="qvm-x-akl">kirun</AUni> -<AUni ws="qvm-x-ame">kirun</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*killun</AUni> -<AUni ws="qvm-x-acl">*killun</AUni> -<AUni ws="qvm-x-akh">*killun</AUni> -<AUni ws="qvm-x-akl">*killun</AUni> -<AUni ws="qvm-x-ame">*killun</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.983" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="43909f8c-4f58-41fb-88a1-92d9f3c8ebce" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*killun</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d1017d87-48a1-4925-8e68-cf7244ce143d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6b3be477-7ba0-40ea-b563-a83fa54b5772" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *killun 
\entryTyp root 
\gENG cliff.edge 
\gSPN escarpa 
\e *killun 
\c N0 
\mp +FinalC 
\ach quirun 
\akh kirun 
\acl quirun 
\akl kirun 
\ame kirun</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="6e48b048-32bf-4785-97b2-ee5ed1e6afe4" ownerguid="5151d545-a147-4c16-b63f-7a8bfeb75c3c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="fd15242a-e3ff-45fb-beda-e2ef4bd199ff" t="r" /> -</Morph> -<Msa> -<objsur guid="4867346d-ecb1-40e9-a091-3bc5d299d8a0" t="r" /> -</Msa> -<Sense> -<objsur guid="0c80b2fb-9490-4024-803b-d2336c4bba43" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="6e4a49d6-08a7-4c34-84e7-97e60f43edc0" ownerguid="3934d975-76f9-4daf-b5f6-1451da8d67df"> -<Form> -<AUni ws="qvm-x-ach">cachi; cachï</AUni> -<AUni ws="qvm-x-acl">cachë; cachi; cache</AUni> -<AUni ws="qvm-x-akh">kachi; kachï</AUni> -<AUni ws="qvm-x-akl">kachë; kachi; kache</AUni> -<AUni ws="qvm-x-ame">kachi; kachï</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6e4e8c4c-4c2c-4373-a087-3f0d9df73afb" ownerguid="3361bc64-667f-404a-b96e-c2fedeea1a99"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="6e4ecf6f-c5cf-47bf-b4ac-fdc00747a4ad" ownerguid="fa243cc0-3b47-4be3-991b-909e90538fba"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">waga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">waga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">waqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">waqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">waqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d100a60e-40fa-45d4-8643-92375fc3d00c" t="r" /> -</Morph> -<Msa> -<objsur guid="dae1adcc-bc09-4a2e-8fca-8dd1fcb23810" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="6e4f1868-efa8-46f9-a00b-0d2fcba0b592" ownerguid="4daad1d2-6cfb-469d-9288-69602e35b12d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">carrier</AUni> -<AUni ws="es">manta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c69c204e-85ae-48cc-95b0-8e716ac96c9e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6e509992-f9d8-4959-b255-38a85c1d09c6" ownerguid="f0e68d2f-f7b3-4722-80a4-8e9c5638b0d4"> -<ExampleWords> -<AUni ws="en">study, analyze, check, concern yourself with, consider, determine, examine, experiment (v), follow, inquire into, investigate, learn, look into/for, look something up, probe, prowl, seek, search, research, study, test, trace, track, trail, try to find out about</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to studying something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6e526642-bf98-42b1-87c8-76621d48859e" ownerguid="725d78eb-8cac-4b2f-b5a4-f0a9adb80f5d"> -<ExampleWords> -<AUni ws="en">superstition</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to religious practices that are done in ignorance?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6e52a870-d21a-46e5-a841-75fa74e5070b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quirma</AUni> -<AUni ws="qvm-x-acl">quirma</AUni> -<AUni ws="qvm-x-akh">kirma</AUni> -<AUni ws="qvm-x-akl">kirma</AUni> -<AUni ws="qvm-x-ame">kirma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kirma</AUni> -<AUni ws="qvm-x-acl">*kirma</AUni> -<AUni ws="qvm-x-akh">*kirma</AUni> -<AUni ws="qvm-x-akl">*kirma</AUni> -<AUni ws="qvm-x-ame">*kirma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.993" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c55f651c-d199-49e2-9a8c-5846e6ac6efd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kirma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e3982578-26ca-4dd8-8b44-63792e7c2cd3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="07683664-5872-44c6-888e-43d0951850ed" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kirma 
\entryTyp root 
\gENG 
\gSPN 
\e *kirma 
\c N0 
\ach quirma 
\akh kirma 
\acl quirma 
\akl kirma 
\ame kirma</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="6e536c60-5da9-437d-9311-e03da8d7a6c7" ownerguid="77c8ee61-3a38-4a42-9514-7aa13cfb324b"> -<Form> -<AUni ws="qvm-x-ach">rani</AUni> -<AUni ws="qvm-x-acl">rani; rani; rane</AUni> -<AUni ws="qvm-x-akh">rani</AUni> -<AUni ws="qvm-x-akl">rani; rani; rane</AUni> -<AUni ws="qvm-x-ame">rani</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6e552e23-5ea0-4bf4-bd47-20183aaf75a5" ownerguid="8bb8e7c0-bb64-428f-8eaa-b67400a29d52"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="6e56b766-4dfa-4284-abff-db28ea823148"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chiuchi</AUni> -<AUni ws="qvm-x-acl">chiuchi; chiuchi; chiuche</AUni> -<AUni ws="qvm-x-akh">chiwchi</AUni> -<AUni ws="qvm-x-akl">chiwchi; chiwchi; chiwche</AUni> -<AUni ws="qvm-x-ame">chiwchi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chiwchi</AUni> -<AUni ws="qvm-x-acl">*chiwchi</AUni> -<AUni ws="qvm-x-akh">*chiwchi</AUni> -<AUni ws="qvm-x-akl">*chiwchi</AUni> -<AUni ws="qvm-x-ame">*chiwchi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.325" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fcaf1597-23b1-474c-9391-65adb2d6bb80" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chiwchi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f9aae074-2fec-4ffb-8801-3179b7dcbaee" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c44feb5a-93cf-42f8-9065-b1d32cb6c24c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chiwchi 
\entryTyp root 
\gENG boy 
\gSPN jovencito 
\e *chiwchi 
\c N0 
\mp +FinalI 
\ach chiuchi 
\akh chiwchi 
\acl chiuchi / _# 
\acl chiuchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chiuche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chiwchi / _# 
\akl chiwchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chiwche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chiwchi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="6e5a4fd3-3971-4583-80b5-e66bd9e2b360"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yargu; yarga</AUni> -<AUni ws="qvm-x-acl">yargu; yargo; yarga</AUni> -<AUni ws="qvm-x-akh">yarqu; yarqa</AUni> -<AUni ws="qvm-x-akl">yarqu; yarqo; yarqa</AUni> -<AUni ws="qvm-x-ame">yarqu; yarqa</AUni> -</Custom> -<AlternateForms> -<objsur guid="8adec79f-7ef5-4fc4-bb8b-93b1a76cc445" t="o" /> -</AlternateForms> -<CitationForm> -<AUni ws="qvm-x-ach">*yarqU</AUni> -<AUni ws="qvm-x-acl">*yarqU</AUni> -<AUni ws="qvm-x-akh">*yarqU</AUni> -<AUni ws="qvm-x-akl">*yarqU</AUni> -<AUni ws="qvm-x-ame">*yarqU</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.760" /> -<DateModified val="2022-10-17 13:38:47.451" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9a5b319b-b7d7-4968-bb8f-7b7d6d7b6380" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yarqU</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1afedd8a-1478-44b0-8828-b5d955ebdf49" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7917a032-4704-4ecd-bde0-bc0a89612317" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yarqU 
\entryTyp root 
\gENG go.out 
\gSPN salir 
\e *yarqU 
\c V2 
\mp PMlowered 
\ach yargu 
\ach yarga morphlowered 
\akh yarqu 
\akh yarqa morphlowered 
\acl yargu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl yargo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl yarga morphlowered 
\akl yarqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yarqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yarqa morphlowered 
\ame yarqu 
\ame yarqa morphlowered 
\mcc *yarqU / _... [trigger] | if no trigger, use *yarqu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="6e5f6b43-a1d1-4140-84ee-f75c45c1a873" ownerguid="f77172f4-dd8d-4624-9b2c-c0aaf9303635"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" t="r" /> -</Morph> -<Msa> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="6e63d3f9-0132-47b7-b1b5-cddbd23a583e" ownerguid="b50f39cb-3152-4d56-9ddc-4b98f763e76a"> -<ExampleWords> -<AUni ws="en">desirable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that people want?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6e64a090-e51b-4394-8e47-1ef570f156e0" ownerguid="08239f53-daa5-47a6-9f39-29a9064b0c27"> -<ExampleWords> -<AUni ws="en">bond, coherent, fast, secure, stay, strong (joint/bond), weak (joint/bond), stuck</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to how well things are joined together?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6e64de3d-2c5b-4fe3-9b2a-beb14bdb26f7" ownerguid="e2a1632b-0456-4488-bbad-5a1db5115bde"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sport</AUni> -<AUni ws="es">deporte</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bd5f097f-76d1-46b0-95cd-006dbd0ea161" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="6e660c8b-5898-4482-b003-af758b1708b9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fiesta</AUni> -<AUni ws="qvm-x-acl">fiesta</AUni> -<AUni ws="qvm-x-akh">fiesta</AUni> -<AUni ws="qvm-x-akl">fiesta</AUni> -<AUni ws="qvm-x-ame">fiesta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fiesta.v</AUni> -<AUni ws="qvm-x-acl">+fiesta.v</AUni> -<AUni ws="qvm-x-akh">+fiesta.v</AUni> -<AUni ws="qvm-x-akl">+fiesta.v</AUni> -<AUni ws="qvm-x-ame">+fiesta.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.548" /> -<DateModified val="2022-10-10 21:18:47.218" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="997d2163-84b9-4f99-9157-4b42f2f01219" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fiesta.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="455bef49-aa50-4458-9a4b-362ad85b3bf1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="416cbc74-517c-46ec-a4ae-d623a477e995" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fiesta.v 
\entryTyp root 
\gENG 
\gSPN 
\e +fiesta.v 
\c V1 
\ach fiesta 
\akh fiesta 
\acl fiesta 
\akl fiesta 
\ame fiesta 
\mcc +fiesta.v / ~_ BEN1 1</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6e669b11-afd9-4879-b97b-8f695f02797d" ownerguid="313a65bf-450f-48da-8903-a43247f1a5f8"> -<ExampleWords> -<AUni ws="en">make a hole, make an opening, pierce, put a hole in, bore, drill, stab, broach</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to making a hole in something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6e680ba2-6143-4a03-a992-a5dfd4eefd60" ownerguid="e519d730-f528-44f5-8241-b0fe815c79f6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fat</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="87eacfb9-5de7-4438-ae3b-a4d06b446aa9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="6e6a0b47-d155-4863-b044-52cdd4421783"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yanauya; yanauya:</AUni> -<AUni ws="qvm-x-acl">yanauya; yanauya:</AUni> -<AUni ws="qvm-x-akh">yanawya; yanawya:</AUni> -<AUni ws="qvm-x-akl">yanawya; yanawya:</AUni> -<AUni ws="qvm-x-ame">yanawya; yanawya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yanawya:</AUni> -<AUni ws="qvm-x-acl">*yanawya:</AUni> -<AUni ws="qvm-x-akh">*yanawya:</AUni> -<AUni ws="qvm-x-akl">*yanawya:</AUni> -<AUni ws="qvm-x-ame">*yanawya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.737" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="86eda7d6-aaeb-44de-96b6-3e5d93809c18" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yanawya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e9a67625-6214-44b6-b75d-40faa7f491fd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c4302d24-ced6-499b-888e-2a6cfadf6b5f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yanawya: 
\entryTyp root 
\gENG 
\gSPN ser.oscuro 
\e *yanawya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach yanauya foreshortened 
\ach yanauya: 
\akh yanawya foreshortened 
\akh yanawya: 
\acl yanauya foreshortened 
\acl yanauya: 
\akl yanawya foreshortened 
\akl yanawya: 
\ame yanawya foreshortened 
\ame yanawya:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="6e6b9c11-02b8-4141-be34-746030e737f5" ownerguid="85329c54-de67-4ec9-8ba8-7bd4c66a5c96"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="6e70001d-9744-4171-a010-c98c41da2824" ownerguid="80cc6767-3e19-4cee-8ca5-fbdaee4f5bd7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="6e71a43a-5fdf-4607-adde-4aec7a9c5871"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guenway</AUni> -<AUni ws="qvm-x-acl">guenway</AUni> -<AUni ws="qvm-x-akh">qenway</AUni> -<AUni ws="qvm-x-akl">qenway</AUni> -<AUni ws="qvm-x-ame">qinway</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qinway</AUni> -<AUni ws="qvm-x-acl">*qinway</AUni> -<AUni ws="qvm-x-akh">*qinway</AUni> -<AUni ws="qvm-x-akl">*qinway</AUni> -<AUni ws="qvm-x-ame">*qinway</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.193" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="164bdfee-b41b-40b7-bd8a-1aeda7cba9fd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qinway</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e92c9a5a-7106-42f8-8315-ade711d2607b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="55ae92a6-ea7e-4541-9f3a-e7acd2337621" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qinway 
\entryTyp root 
\gENG tree 
\gSPN quino 
\e *qinway 
\c N0 
\mp +FinalC 
\ach guenway 
\akh qenway 
\acl guenway 
\akl qenway 
\ame qinway</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6e72e7c8-e46a-4bef-9636-5f9f6c51f94a" ownerguid="104d40c9-2a4f-4696-ad99-5cf0eb86ab2e"> -<ExampleWords> -<AUni ws="en">out of danger</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to no longer being very sick?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6e795ba4-a421-4a00-adb7-5481af3b09bf" ownerguid="fa972d1b-4e6a-4e70-8f2a-388f86594be6" /> -<rt class="CmSemanticDomain" guid="6e7d10f8-6da5-4a8a-a06d-952511194105" ownerguid="aba3f7f1-9e13-4b48-acbb-3bf6d6bfa0e8"> -<Abbreviation> -<AUni ws="en">8.2.9.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.599" /> -<DateModified val="2022-9-23 16:55:8.599" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being light in weight.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>86A Heavy, Light</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Light in weight</AUni> -</Name> -<Questions> -<objsur guid="c4ce7f46-f26b-4810-bc51-dcbbc6c369eb" t="o" /> -<objsur guid="83ae241d-3c1b-4272-85fe-ff68413a1a22" t="o" /> -<objsur guid="1c235cde-4556-464c-ac6d-ba821fb02462" t="o" /> -<objsur guid="d1f3a40b-a749-4f8c-b118-2643f66a4edc" t="o" /> -<objsur guid="c2631c28-3dc1-4afc-b5a0-5278120d1879" t="o" /> -<objsur guid="1e83c54d-a99e-4e94-826c-8a22e6163370" t="o" /> -<objsur guid="4b5692cc-9faa-4493-b521-758406fabdfa" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="6e82e568-08f0-4bdd-b0e7-a8185a4290c4" ownerguid="4fb79b12-3bd1-46ed-8698-7d27052a5dc7"> -<ExampleWords> -<AUni ws="en">flat, level, even</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe land that is flat?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="6e83c471-0fe8-4641-8ecf-68b63df29ab7" ownerguid="726923d4-b25c-46eb-8ab0-427207177ae3"> -<Abbreviation> -<AUni ws="en">5.2.1.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.306" /> -<DateModified val="2022-9-23 16:55:8.306" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to removing the shell or skin from food.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Remove shell, skin</AUni> -</Name> -<Questions> -<objsur guid="d0472fb7-ea5c-4e9a-81d4-f29dfad29d0e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="6e856bca-d693-4149-80b1-a3fd265bf857" ownerguid="bd6fec5a-24ed-4059-9921-933a9b214183"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">program</AUni> -<AUni ws="es">programa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="51155f7b-e429-460c-ada9-a01e0656a838" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="6e86177d-657d-4544-9415-ae12c5528240" ownerguid="04272a3a-e644-4701-8b40-5b50e4775dde"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="r" /> -</Morph> -</rt> -<rt class="CmDomainQ" guid="6e86790b-e452-417b-ba06-f4334b7da17a" ownerguid="147c2e58-9ae8-460f-8cab-bf04a668945d"> -<ExampleWords> -<AUni ws="en">prophet, prophetess</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What is a person called who speaks for God or foretells the future?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6e89caf9-2121-43a3-ae98-b98223513fa6" ownerguid="56c9c38c-728a-42fe-b93c-6ca67fdf2a9a"> -<ExampleWords> -<AUni ws="en">mineral, mineral resources, element, chemical, atom, crystal, ore</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to minerals?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6e8d3756-edbf-466c-8fbd-55691b283ed5" ownerguid="79a33505-0c33-4e92-89b9-6a42e6ff2228"> -<ExampleWords> -<AUni ws="en">disappearance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the event of something disappearing?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6e945b87-e9e3-4349-8eac-e8703cd95bc6" ownerguid="7bcb6ae1-23bf-4034-b883-5f8bb779cc36"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6e9ba16f-dbca-4421-b672-ab1c60d50685" ownerguid="d7861def-70c1-470f-bca6-8230cbbaa3e9"> -<ExampleWords> -<AUni ws="en">browse, look around, sight-seeing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to looking at many things over a period of time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6e9e1461-4adb-41ad-9114-b9144b7b4f7b" ownerguid="8497fb66-8b91-46b9-a0d5-fb9385319561"> -<ExampleWords> -<AUni ws="en">appetizing, tempting, mouth-watering, make your mouth water</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe something that looks like it tastes good?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="6ea13b69-b2a8-41f9-b0bc-14316ebc5118" ownerguid="d10301f3-573c-4005-ad65-1c73fb80b3b6"> -<Abbreviation> -<AUni ws="en">3.2.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.103" /> -<DateModified val="2022-9-23 16:55:8.103" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that describe something that is difficult to understand.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Mysterious</AUni> -</Name> -<Questions> -<objsur guid="94b86c1a-e52b-4923-a48b-eb0fe7a05512" t="o" /> -<objsur guid="d4f4780d-0752-4135-8582-d3c1e1b060a7" t="o" /> -<objsur guid="3338e0a8-060c-4c1d-8b8f-20aac14ca903" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="6ea3e2ec-6988-49b0-9520-2ed73fbad920"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">macho:ra</AUni> -<AUni ws="qvm-x-acl">macho:ra</AUni> -<AUni ws="qvm-x-akh">macho:ra</AUni> -<AUni ws="qvm-x-akl">macho:ra</AUni> -<AUni ws="qvm-x-ame">macho:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+machorra</AUni> -<AUni ws="qvm-x-acl">+machorra</AUni> -<AUni ws="qvm-x-akh">+machorra</AUni> -<AUni ws="qvm-x-akl">+machorra</AUni> -<AUni ws="qvm-x-ame">+machorra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.255" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d08a5ea7-67af-4f0e-8966-3b41b5c928ce" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+machorra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ffdb3ad3-853a-4fd1-8180-c83f50ed3dfe" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a7eaecc8-3168-49a8-80c3-753c5e5d9dbd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +machorra 
\entryTyp root 
\gENG 
\gSPN 
\e +machorra 
\c N0 
\ach macho:ra 
\akh macho:ra 
\acl macho:ra 
\akl macho:ra 
\ame macho:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="6ea47161-0ab6-41be-b096-9dcf3b44aec5" ownerguid="5901caae-f6c4-4d6d-8ce4-d5ba35a3fd96"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6ea4fdd2-3bb4-45f4-a84c-5276749d4978" ownerguid="741c417a-11e9-460c-9ab3-51b8220df016"> -<ExampleWords> -<AUni ws="en">wash up on shore, wash out to sea, wash away, erode, wear away, lift, rise and fall with the waves, rock</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What do waves do to things?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6ea516f2-b65c-4596-82b2-85d059ade18a" ownerguid="87bd0d45-8a94-41cb-9864-90d53a11a4b9"> -<ExampleWords> -<AUni ws="en">responsible, responsibility, obligation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a person's responsibility to obey the law?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6ea5acf6-afbe-4052-95ac-92a6ad09c86b" ownerguid="f45a456e-8e23-4364-8842-047cc73f529b"> -<ExampleWords> -<AUni ws="en">space, room, clearance, floor space, elbow room</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the amount of empty space that is available to be used?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="6ea9bfc6-723c-466f-9efc-0992879ae47d" ownerguid="15947464-997a-4f44-9a4b-ac4916e7e19b"> -<Abbreviation> -<AUni ws="en">5.4.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.327" /> -<DateModified val="2022-9-23 16:55:8.327" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to ritual scarring.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Ritual scar</AUni> -</Name> -<OcmCodes> -<Uni>304 Body Alterations; Mutilation</Uni> -</OcmCodes> -<Questions> -<objsur guid="8ef3ef95-d877-4b4f-8a3e-6ef621b9bc52" t="o" /> -<objsur guid="d1d69c36-8728-46e3-9954-163d9ba58ebc" t="o" /> -<objsur guid="f097a189-4724-496e-b823-9b68223a9a3d" t="o" /> -<objsur guid="20aa53b7-7aa6-45aa-a448-888cd648e934" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="7f1dfb68-bf07-472d-a481-b802d2591ca6" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="6ea9e5fb-b2eb-4eed-a01d-26da2c1cb86e"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">DUR</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiAnalysis" guid="6eaa1fec-1b02-4a75-96a8-f6bc2b26a327" ownerguid="dbb527ae-736a-449c-9bfa-53d86d25fead"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="26393290-fcaa-4b0d-9b9b-47ed5126e098" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiMorphBundle" guid="6eab1673-a0af-4703-9335-1c6e15147759" ownerguid="2ae33e10-d42f-492c-9429-f486fb613a7d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuna</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuna</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuna</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuna</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuna</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f236a19a-86ce-4599-91f5-fb178488e065" t="r" /> -</Morph> -<Msa> -<objsur guid="0851fe14-f99e-4e06-befc-3a76b044ea37" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="6eaba0c3-cdfe-435d-8811-7f2ddf6facbd" ownerguid="a894d991-d5da-45a6-9c62-009133257f36"> -<Abbreviation> -<AUni ws="en">2.5.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.47" /> -<DateModified val="2022-9-23 16:55:8.47" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to swelling of the body.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Swell</AUni> -</Name> -<Questions> -<objsur guid="0cb840cf-8838-4349-a617-1c21d4062afd" t="o" /> -<objsur guid="52338a98-795d-48e2-bb61-8d5da17170f0" t="o" /> -<objsur guid="1250b6c1-b253-475f-9005-59908b82ca34" t="o" /> -<objsur guid="e28357e0-5821-4905-9624-17b027083bcd" t="o" /> -<objsur guid="ccbd4d5c-fe4b-47c4-b2c8-a040c9504206" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="6eabd924-d1b0-4c2b-95a0-dbfddb3552f9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rique:za</AUni> -<AUni ws="qvm-x-acl">rique:za</AUni> -<AUni ws="qvm-x-akh">rique:za</AUni> -<AUni ws="qvm-x-akl">rique:za</AUni> -<AUni ws="qvm-x-ame">rique:za</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+riqueza</AUni> -<AUni ws="qvm-x-acl">+riqueza</AUni> -<AUni ws="qvm-x-akh">+riqueza</AUni> -<AUni ws="qvm-x-akl">+riqueza</AUni> -<AUni ws="qvm-x-ame">+riqueza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.368" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ea63745c-b230-4a50-ad39-a7cb79abc7fe" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+riqueza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="54be4e19-0e3e-4579-a6cb-1d2d3cfd6188" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="be79afb0-6d9f-4089-875d-bb082f9e4e87" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +riqueza 
\entryTyp root 
\gENG riches 
\gSPN riqueza 
\e +riqueza 
\c N0 
\ach rique:za 
\akh rique:za 
\acl rique:za 
\akl rique:za 
\ame rique:za</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="6eabfbb5-7723-43ab-a02d-2f128bd62605" ownerguid="a4ee4ddc-91d6-4e31-8f8d-361a2b83430d"> -<Form> -<AUni ws="qvm-x-ach">tüna</AUni> -<AUni ws="qvm-x-acl">tüna</AUni> -<AUni ws="qvm-x-akh">tüna</AUni> -<AUni ws="qvm-x-akl">tüna</AUni> -<AUni ws="qvm-x-ame">tüna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="6eaf0b2b-b611-48b9-a17a-66f20d4d000f" ownerguid="f7f8cb90-5bb1-4dd9-b0d2-194539e34d60"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">satisfy</AUni> -<AUni ws="es">satisfacerse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="726f0b86-4271-4b06-bdf2-b38c9e3a7629" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="6eaf4efd-cd63-477e-a0c4-16241a02b050"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waras</AUni> -<AUni ws="qvm-x-acl">waras</AUni> -<AUni ws="qvm-x-akh">waras</AUni> -<AUni ws="qvm-x-akl">waras</AUni> -<AUni ws="qvm-x-ame">waras</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waras</AUni> -<AUni ws="qvm-x-acl">*waras</AUni> -<AUni ws="qvm-x-akh">*waras</AUni> -<AUni ws="qvm-x-akl">*waras</AUni> -<AUni ws="qvm-x-ame">*waras</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.523" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="555fc49b-10a0-4429-96a5-664a7cbe5b34" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waras</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8d05725f-6340-4c92-84e7-53c17db1f2b7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8fbf45b2-6336-4b86-b12d-77c196cbb5ad" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waras 
\entryTyp root 
\gENG 
\gSPN 
\e *waras 
\c ONSHEV 
\mp +FinalC 
\ach waras 
\akh waras 
\acl waras 
\akl waras 
\ame waras</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6eafb4c4-a951-409d-9d55-0df9985f1485" ownerguid="cd403434-a5a1-4700-8ad3-b7c9aabd99d9"> -<ExampleWords> -<AUni ws="en">narrow, broad, deep</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe valleys?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="6eafbb5a-26ba-44b5-a0d5-21b9e7750ece" ownerguid="0b7b9a1c-588b-475a-ac14-00f0999cbfe9"> -<Abbreviation> -<AUni ws="en">4.8.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.286" /> -<DateModified val="2022-9-23 16:55:8.286" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to rebuking someone--to tell someone that he has done something wrong.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33T' Rebuke</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Rebuke</AUni> -</Name> -<Questions> -<objsur guid="d4ed1f0a-8b37-41ba-91fe-25ebbb6967c8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="6eb1cb04-4be5-48bc-b2a1-ec90fd81a464"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa:tu</AUni> -<AUni ws="qvm-x-acl">pa:tu; pa:tu; pa:to</AUni> -<AUni ws="qvm-x-akh">pa:tu</AUni> -<AUni ws="qvm-x-akl">pa:tu; pa:tu; pa:to</AUni> -<AUni ws="qvm-x-ame">pa:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pato</AUni> -<AUni ws="qvm-x-acl">+pato</AUni> -<AUni ws="qvm-x-akh">+pato</AUni> -<AUni ws="qvm-x-akl">+pato</AUni> -<AUni ws="qvm-x-ame">+pato</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.759" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="618aaa23-2c91-4ffb-9d7e-7ccb2ee6ead7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pato</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b50fda9d-ad6f-4454-8978-b7e2cfeb8366" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="29a80353-0b22-4987-bceb-be893dcabf82" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pato 
\entryTyp root 
\gENG duck 
\gSPN pato 
\e +pato 
\c N0 
\ach pa:tu 
\akh pa:tu 
\acl pa:tu / _# 
\acl pa:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pa:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pa:tu / _# 
\akl pa:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pa:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pa:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="6eb2ef50-7e6b-41b8-a82e-6eb307c908ca" ownerguid="d8366daf-ae1d-4b2c-a447-478c73580639"> -<Abbreviation> -<AUni ws="en">6.1.2.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.365" /> -<DateModified val="2022-9-23 16:55:8.365" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being effective.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Effective</AUni> -</Name> -<Questions> -<objsur guid="46bee00e-8f82-447d-92ce-b1887e7708db" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="6eb49a8d-e177-4441-81d9-26fd5d6a2e73" ownerguid="6bd023f6-730e-44c2-ae8f-78df967e2e18"> -<ExampleWords> -<AUni ws="en">pull, pull back, bring back, draw, tug</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to pulling something so that it moves toward you?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6eb54493-1c50-468e-aea7-2f93a20a1f33" ownerguid="89ba59d4-b314-4070-83bb-f9f868bcd363"> -<ExampleWords> -<AUni ws="en">draw, paint, sketch, doodle, scribble, trace</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to drawing or painting?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6ebb2e5d-4afe-4bf3-ab3c-16c63a6fdf05" ownerguid="01bdba39-7318-4c79-8798-e28bb3af16dc"> -<Form> -<AUni ws="qvm-x-ach">confianza</AUni> -<AUni ws="qvm-x-acl">confianza</AUni> -<AUni ws="qvm-x-akh">confianza</AUni> -<AUni ws="qvm-x-akl">confianza</AUni> -<AUni ws="qvm-x-ame">confianza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmPossibility" guid="6ebc80f8-9ce0-45d9-bb49-3869591fb1ff" ownerguid="d743553e-ea5e-11de-842a-0013722f8dec"> -<Abbreviation> -<AUni ws="en">None</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">No restrictions</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="6ebe8bee-d50f-48c1-97bf-48b2c7013d50" ownerguid="f1488c80-cf16-4f1d-af6d-aad304199966"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="6ec2142a-ac3f-43b9-9334-1cfdc601950b" ownerguid="7ffaf94c-bfa2-4afc-b25a-246727eed01f"> -<Form> -<AUni ws="qvm-x-ach">trägu</AUni> -<AUni ws="qvm-x-acl">trägu; trägu; trägo</AUni> -<AUni ws="qvm-x-akh">trägu</AUni> -<AUni ws="qvm-x-akl">trägu; trägu; trägo</AUni> -<AUni ws="qvm-x-ame">trägu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="6ec25ff5-40a6-4a13-865b-1ffadacf8ca8"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">22</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="6ec43395-12b9-42a5-a0fd-c2e61fe2b947" ownerguid="126651f9-33d5-4757-a1f9-aab7e48b906b"> -<Form> -<AUni ws="qvm-x-ach">Bautista</AUni> -<AUni ws="qvm-x-acl">Bautista</AUni> -<AUni ws="qvm-x-akh">Bautista</AUni> -<AUni ws="qvm-x-akl">Bautista</AUni> -<AUni ws="qvm-x-ame">Bautista</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="6ec60887-b656-4891-84bf-5c841f4736fb" ownerguid="a6d2646f-f761-4717-9dca-6b4dd5747fdb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rooster</AUni> -<AUni ws="es">gallo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="13f37d0b-6e2d-45c6-bd12-4b9d287fc862" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6ec96d0d-72be-4da4-b1f4-982178ce9a4a" ownerguid="ea7c06d0-5e33-4702-b6a0-51582b216fe8"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The disease spread <throughout> the population.; He went <from> town <to> town.; He applied for admission year <after> year.; He placed them in piles of ten <each>.; They received ten dollars <apiece>.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">throughout, through, from...to, after, each, apiece</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate distribution?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6ec9a841-8aa9-4689-97e2-249559f81733" ownerguid="b43fae8e-6b19-42ed-98cd-d363174b9cf8"> -<ExampleWords> -<AUni ws="en">tiny, minute, minuscule, microscopic, infinitesimal, wee, diminutive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is very small?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6ecaf667-971f-499f-a970-eb6eec8197d1" ownerguid="1e9a0881-f715-4057-9af8-251cb8eec9da"> -<ExampleWords> -<AUni ws="en">soft, harsh, loud, quiet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe the quality of a person's voice?</AUni> -</Question> -</rt> -<rt class="StStyle" guid="6ed2cb3d-f6db-4af5-9de9-75669ce26f46" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="3f844794-09d1-45fa-9d75-05c62e2b836d" t="r" /> -</BasedOn> -<Context val="14" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Homograph-Number</Uni> -</Name> -<Rules> -<Prop bold="invert" superscript="sub"></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<Usage> -<AUni ws="en">Used for homograph numbers, both in headwords and in references.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="CmDomainQ" guid="6ed3e343-a984-4dba-81eb-9fd691857043" ownerguid="cc121082-2d07-484e-8a6f-7382f7d71f39"> -<ExampleWords> -<AUni ws="en">refuse to obey/listen, won't listen to reason, stick to your guns</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to being stubborn?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="6ed5bc68-dcdd-4198-81ad-180451028af9"> -<Analyses> -<objsur guid="c926057e-1c0a-4806-bfea-04505812bd6e" t="o" /> -</Analyses> -<Checksum val="673012333" /> -<Form> -<AUni ws="qvm-x-akh">juknin</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="6ed67bed-4755-4ff6-8325-091d6c82186d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">devo:tu</AUni> -<AUni ws="qvm-x-acl">devo:tu; devo:tu; devo:to</AUni> -<AUni ws="qvm-x-akh">devo:tu</AUni> -<AUni ws="qvm-x-akl">devo:tu; devo:tu; devo:to</AUni> -<AUni ws="qvm-x-ame">devo:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+devoto</AUni> -<AUni ws="qvm-x-acl">+devoto</AUni> -<AUni ws="qvm-x-akh">+devoto</AUni> -<AUni ws="qvm-x-akl">+devoto</AUni> -<AUni ws="qvm-x-ame">+devoto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.396" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f9536acd-cb90-46ea-b1b2-4936b842f32e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+devoto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="43a6e00c-6214-4193-94b7-73e5a4a092c9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="97b3e0d9-f649-4db9-b9ec-c2fd4eaf1abc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +devoto 
\entryTyp root 
\gENG 
\gSPN 
\e +devoto 
\c N0 
\ach devo:tu 
\akh devo:tu 
\acl devo:tu / _# 
\acl devo:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl devo:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl devo:tu / _# 
\akl devo:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl devo:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame devo:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="6ed7cbd8-2bdd-431b-ad49-d5ac1d381377" ownerguid="72c2f394-3231-48e4-b597-205971b0c731"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="6ed896a6-bab7-4fdf-a4fd-a5ee49f380d2"> -<Analyses> -<objsur guid="0c5e2310-1d3a-4460-987f-dfdfecc5090d" t="o" /> -<objsur guid="2d1ea615-677d-4f84-963f-84f43f5bb154" t="o" /> -<objsur guid="592c0a6f-2e24-4d4b-80e7-bace75879ff3" t="o" /> -<objsur guid="66eea5ae-7a9a-4cda-9c78-59a943cec536" t="o" /> -<objsur guid="c49b8038-b6c9-4a4e-90e4-ae79fe3a8398" t="o" /> -<objsur guid="c6e181fc-c268-4a86-8822-306d3b9e34f6" t="o" /> -<objsur guid="ceb6ed65-188e-46d7-ad10-076cba0d49db" t="o" /> -<objsur guid="d06ed832-bbfb-40b9-aa3a-8c5b8b01621a" t="o" /> -<objsur guid="d2683ae4-dbbb-4bf4-8e22-483b78bd560a" t="o" /> -<objsur guid="dbf05a52-ffa6-4413-9ee8-c5be0da0e3d0" t="o" /> -</Analyses> -<Checksum val="489570484" /> -<Form> -<AUni ws="qvm-x-akh">lapanpaq</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="6ee14639-c536-42c1-b392-f94736f9575a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mala</AUni> -<AUni ws="qvm-x-acl">mala</AUni> -<AUni ws="qvm-x-akh">mala</AUni> -<AUni ws="qvm-x-akl">mala</AUni> -<AUni ws="qvm-x-ame">mala</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mala</AUni> -<AUni ws="qvm-x-acl">+mala</AUni> -<AUni ws="qvm-x-akh">+mala</AUni> -<AUni ws="qvm-x-akl">+mala</AUni> -<AUni ws="qvm-x-ame">+mala</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.265" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d0333bc7-dafd-4e11-a002-541dc10caab4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mala</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2a23d126-5fb9-458e-9b62-1e6cd6615330" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8b44d2e6-d3cf-41a7-8f92-e6a87c242c4f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mala 
\entryTyp root 
\gENG 
\gSPN 
\e +mala 
\c NOSUFF 
\ach mala 
\akh mala 
\acl mala 
\akl mala 
\ame mala</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6ee24601-b80f-46b0-b5d1-6cdcfa930dd4" ownerguid="9d865347-6656-4ab7-8613-bf2e8bc53aa7"> -<ExampleWords> -<AUni ws="en">harmless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(17) What words describe something that cannot injure someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6ee4da8b-f0a7-4bed-b4b4-e391561a1bde" ownerguid="014f053d-667c-426d-8bac-11529a04b478"> -<Form> -<AUni ws="qvm-x-ach">lücha</AUni> -<AUni ws="qvm-x-acl">lücha</AUni> -<AUni ws="qvm-x-akh">lücha</AUni> -<AUni ws="qvm-x-akl">lücha</AUni> -<AUni ws="qvm-x-ame">lücha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6ee52c83-113f-4fd0-987a-37f41dfdef64" ownerguid="d83ebe2c-c1d6-49ec-a4a9-1cdced843387"> -<ExampleWords> -<AUni ws="en">hit on head, be sick, be in pain, anesthesia</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What causes someone to lose consciousness?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6ee5a255-3658-4485-bb52-3d3d06da9946" ownerguid="ea17aba7-6d4e-4dbf-89ea-84a1b1c47647"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">We've just received two <truckloads> of food.; All I had to eat was a <handful> of maize.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">bag, bagful, barrel, boatload, bottle, bowl, box, boxful, bucketful, busload, can, carload, glass, handful, jug, mug, pack, packet, planeload, platter, roomful, sackful, scoop, scoopful, spoon, spoonful, tablespoon, tankful, teaspoon, teaspoonful, trainload, tray, truckload</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to an amount of something that has been measured by a particular container?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6ee88865-51d6-40db-b9fa-4ba30a1cf4e7" ownerguid="fc54a9d3-a717-47c2-a271-e57aceaf8529"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="6eed974b-9e55-4ab1-b8af-a3278c74c5e9" ownerguid="a34da010-25fd-4e68-9b19-4c09e51be7ec"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">prisoner</AUni> -<AUni ws="es">preso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c81e7b48-eb5b-4eff-bc33-257cb79cb2b5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="6eeef67a-549e-41a2-a3eb-6499150723c2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">asga; asga:</AUni> -<AUni ws="qvm-x-acl">asga; asga:</AUni> -<AUni ws="qvm-x-akh">asqa; asqa:</AUni> -<AUni ws="qvm-x-akl">asqa; asqa:</AUni> -<AUni ws="qvm-x-ame">asqa; asqa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*asqa:</AUni> -<AUni ws="qvm-x-acl">*asqa:</AUni> -<AUni ws="qvm-x-akh">*asqa:</AUni> -<AUni ws="qvm-x-akl">*asqa:</AUni> -<AUni ws="qvm-x-ame">*asqa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.850" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="822c4683-560a-40c2-9cf7-9ff8403958db" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*asqa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="93a9af43-27d2-4313-8557-6b039d7fe640" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3103399c-32a8-4a6f-a198-3c15b9123aba" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *asqa: 
\entryTyp root 
\gENG bitter 
\gSPN amargo 
\e *asqa: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach asga foreshortened 
\ach asga: 
\akh asqa foreshortened 
\akh asqa: 
\acl asga foreshortened 
\acl asga: 
\akl asqa foreshortened 
\akl asqa: 
\ame asqa foreshortened 
\ame asqa:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="6ef0a089-c4b1-455d-af2f-1006ca10d997"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">prome:sa</AUni> -<AUni ws="qvm-x-acl">prome:sa</AUni> -<AUni ws="qvm-x-akh">prome:sa</AUni> -<AUni ws="qvm-x-akl">prome:sa</AUni> -<AUni ws="qvm-x-ame">prome:sa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+promesa</AUni> -<AUni ws="qvm-x-acl">+promesa</AUni> -<AUni ws="qvm-x-akh">+promesa</AUni> -<AUni ws="qvm-x-akl">+promesa</AUni> -<AUni ws="qvm-x-ame">+promesa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.946" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1bc8047c-2042-4689-ade6-75e5e9867467" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+promesa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="53bda18c-5af4-47f7-a786-2d13750f8ddc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2517f7a1-fbab-4ef3-b34b-ac722d1092ae" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +promesa 
\entryTyp root 
\gENG promise 
\gSPN promesa 
\e +promesa 
\c N0 
\ach prome:sa 
\akh prome:sa 
\acl prome:sa 
\akl prome:sa 
\ame prome:sa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="6ef23143-180a-4f6f-8181-1b7fae8f863b" ownerguid="e94d79a8-691a-44d2-bcc7-6d4e10cf612b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="6ef2360c-be12-4308-8fbb-ec24933d7a7c" ownerguid="d6334316-8fc1-40f5-ae49-faece188c167"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lung</AUni> -<AUni ws="es">pulmón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3884c740-550e-46bd-ab97-8a61f3f9eef2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="Segment" guid="6ef269b1-3ff7-4f1e-b7e8-e5a0ca66b71d" ownerguid="8df03913-223b-4e4c-982e-8818ccc798de"> -<Analyses> -<objsur guid="1b2023ab-99fe-46af-9c82-b9d0c5eaf316" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemMsa" guid="6ef28bb7-96e0-462d-8ddc-662e57da2b38" ownerguid="fdad4d50-d88d-490e-bb93-9d6283b035ff"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6efa637e-b41a-4e83-84b7-20a94fb1a9a8" ownerguid="f2d0f288-5bbe-4fa0-9e8f-ddcc74891701"> -<ExampleWords> -<AUni ws="en">dress in black, funeral clothes, black veil</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What special clothes are worn?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6efaac57-95a7-4aa7-9c6d-9df656a8e349"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gracia</AUni> -<AUni ws="qvm-x-acl">gracia</AUni> -<AUni ws="qvm-x-akh">gracia</AUni> -<AUni ws="qvm-x-akl">gracia</AUni> -<AUni ws="qvm-x-ame">gracia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gracia</AUni> -<AUni ws="qvm-x-acl">+gracia</AUni> -<AUni ws="qvm-x-akh">+gracia</AUni> -<AUni ws="qvm-x-akl">+gracia</AUni> -<AUni ws="qvm-x-ame">+gracia</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.619" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="24e7ac69-b0f1-4930-bbd9-217f5d9b49a2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gracia</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="13b51248-193a-4b3c-a735-2ead7b13963a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b899274c-ff53-4c85-b5d0-d7bfd17db946" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gracia 
\entryTyp root 
\gENG 
\gSPN 
\e +gracia 
\c N0 
\ach gracia 
\akh gracia 
\acl gracia 
\akl gracia 
\ame gracia 
\i PRO 22.11 Gracialanwan parlag runaga paypa amïgunmi caycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="6efd43bb-eafa-4a19-bab3-bb3333c0192f" ownerguid="d9a499aa-805c-45f0-b43f-2c394ceff053"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="6efe12dc-8592-4375-9a6a-ae4a0a69c289" ownerguid="738a09a5-59df-40f9-8a4e-176e00d03bbf"> -<ExampleWords> -<AUni ws="en">bow, arrow, crossbow, longbow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What types of bows are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6f0003a6-14e2-43ed-a02c-0dfa8ac018f0" ownerguid="10a82711-8829-461a-b172-fc8fff3d555c"> -<ExampleWords> -<AUni ws="en">basset, beagle, bloodhound, boxer, bulldog, Chihuahua, collie, dachshund, Doberman, German shepherd, greyhound, husky, Pekingese, poodle, retriever, setter, spaniel, terrier</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What types of dogs are there?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6f011005-9763-4284-9571-90529febecf7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">:</AUni> -<AUni ws="qvm-x-acl">:</AUni> -<AUni ws="qvm-x-akh">:</AUni> -<AUni ws="qvm-x-akl">:</AUni> -<AUni ws="qvm-x-ame">:</AUni> -</Custom> -<AlternateForms> -<objsur guid="1b20df13-0cae-48c6-8db3-2cd0a2126e8d" t="o" /> -<objsur guid="88c2db34-8b90-4b2d-9851-0494ca64a3c6" t="o" /> -</AlternateForms> -<Comment> -<AStr ws="en"> -<Run ws="en">U+00A8 Diaeresis. See https://unicodeplus.com/U+00A8.</Run> -</AStr> -</Comment> -<DateCreated val="2022-9-23 18:26:20.599" /> -<DateModified val="2022-10-19 20:39:50.265" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="2" /> -<LexemeForm> -<objsur guid="2aab4c43-9e09-436e-bfc7-7c4c7edfaf44" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">1P.V</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="13b178aa-cf95-4902-a68b-959ad06fd6f9" t="o" /> -<objsur guid="e08edebb-ad33-475b-bbae-8a45668c8c12" t="o" /> -<objsur guid="fcfca2e4-74da-4271-bebd-d9afd864c113" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0e6ddc78-a6fb-40bc-a181-28279b8c7632" t="o" /> -<objsur guid="254cbce1-b870-4058-af1f-d4c53eb12859" t="o" /> -<objsur guid="0d79b234-83fd-4a5a-95ac-db116636ac3b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx 1P.V 
\entryTyp suffix 
\gENG 1P.V 
\gSPN 1P.V 
\e 1P.V 
\c N0/N0 R1/R0 N1/N0 BN/BN 
\o 140 
\mp -PMonophthongizes 
\ach : 
\akh : 
\acl : 
\akl : 
\ame : 
\mp +FinalC 
\mp +FinalLength 
\mcc 1P.V / {+FinalC} ~_ 
\mcc 1P.V / SIDE2 ~_ 
\mcc 1P.V / OBJ ~_ 
\mcc 1P.V / ~_ 3P.C 
\mcc 1P.V / *hiqa [na] 3P.C JUST ~_ [case] 
\mcc 1P.V / *ka AG JUST2.C ~_ [case] 
\mcc 1P.V / ~_ 2P 
\mcc 1P.V / ~_ 1P.V 
\mcc 1P.V / ~_ SUP.C</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="6f01b67c-33a0-4ed3-8205-f868e97a1a3a" ownerguid="c7c85346-158d-4881-839d-9a6a8e47209b"> -<Abbreviation> -<AUni ws="en">7.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to traveling--to move a long distance. The words in this domain may imply that the person has to sleep somewhere other than his home.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15R Go Around, Surround; 15B Travel, Journey</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Travel</AUni> -</Name> -<OcmCodes> -<Uni>484 Travel; 480 Travel and Transportation; 485 Travel Services; 486 Regulation of Travel; 487 Routes; 488 Warehousing; 489 Transportation; 167 External Migration; Immigration and Emigration</Uni> -</OcmCodes> -<Questions> -<objsur guid="08ab331b-ec70-48e5-8d5f-c812adac8a4f" t="o" /> -<objsur guid="03640401-2788-4291-bb17-4ff46a3d7491" t="o" /> -<objsur guid="24f19741-42c6-4548-a443-1d7e40e6598e" t="o" /> -<objsur guid="c3372018-4f6f-49d9-810f-908056cfab39" t="o" /> -<objsur guid="d0fe0098-f6a7-429a-910d-73aea8034c22" t="o" /> -<objsur guid="ca5e766a-c3f9-40e4-a0c3-c00275442323" t="o" /> -<objsur guid="2ee2a1f9-95e6-4d69-af6c-71ab30cb0f8d" t="o" /> -<objsur guid="51db2032-1521-4f34-b65d-55b6767b703c" t="o" /> -<objsur guid="7eb397f2-1940-4e85-b179-e5dd1b0326a3" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c0b7f354-a75c-41d5-a489-ae2df6364d02" t="o" /> -<objsur guid="f4580c19-ba9e-4f71-a46a-6f3c4b19c36c" t="o" /> -<objsur guid="75eb23c7-28b5-4c98-937a-1d8f371b24cf" t="o" /> -<objsur guid="161cae07-d1cb-467c-920f-62ba9039584c" t="o" /> -<objsur guid="547f1151-5816-4d89-b0bc-ece2a86c92eb" t="o" /> -<objsur guid="70953222-5bc5-4fa2-a85a-01827f7bc537" t="o" /> -<objsur guid="cf93b8e0-9f28-4485-b9d6-22293ccd73ce" t="o" /> -<objsur guid="390ad7fc-8360-4eae-8736-3aedc15ae659" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="6f026670-a028-4d76-925c-cdb77eab585b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">arma</AUni> -<AUni ws="qvm-x-acl">arma</AUni> -<AUni ws="qvm-x-akh">arma</AUni> -<AUni ws="qvm-x-akl">arma</AUni> -<AUni ws="qvm-x-ame">arma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+arma</AUni> -<AUni ws="qvm-x-acl">+arma</AUni> -<AUni ws="qvm-x-akh">+arma</AUni> -<AUni ws="qvm-x-akl">+arma</AUni> -<AUni ws="qvm-x-ame">+arma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.830" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1a3d7bce-39f3-416e-90e7-1e440c0663ac" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+arma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cf9189f3-1536-4baa-86dd-ef9adb6c9d67" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="825f63bc-7458-44bd-ad90-e4f40d28599a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +arma 
\entryTyp root 
\gENG firearm 
\gSPN arma 
\e +arma 
\c N0 
\ach arma 
\akh arma 
\acl arma 
\akl arma 
\ame arma</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="6f03245a-986b-401a-bf0c-1f51c94cbbb8" ownerguid="36b96ffe-7a62-4e99-ad99-b59a751ade80"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="6f0386c2-2e7d-4748-8ca9-d1399daa04dc" ownerguid="75acb013-4207-4977-a465-6f66d5f47ef8"> -<Form> -<AUni ws="qvm-x-ach">anima</AUni> -<AUni ws="qvm-x-acl">anima</AUni> -<AUni ws="qvm-x-akh">anima</AUni> -<AUni ws="qvm-x-akl">anima</AUni> -<AUni ws="qvm-x-ame">anima</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="6f0813fd-b177-49a9-98f3-2ed3b398a85a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cata</AUni> -<AUni ws="qvm-x-acl">cata</AUni> -<AUni ws="qvm-x-akh">kata</AUni> -<AUni ws="qvm-x-akl">kata</AUni> -<AUni ws="qvm-x-ame">kata</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kata.n</AUni> -<AUni ws="qvm-x-acl">*kata.n</AUni> -<AUni ws="qvm-x-akh">*kata.n</AUni> -<AUni ws="qvm-x-akl">*kata.n</AUni> -<AUni ws="qvm-x-ame">*kata.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.953" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c5aada2b-8293-45c2-9d57-1d1db30ecaf3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kata.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fee01688-a3ef-4767-b267-5da64092b7e8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b573d2af-0821-41de-b715-084cab3741d6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kata.n 
\entryTyp root 
\gENG 
\gSPN manta.pequeña 
\e *kata.n 
\c N0 
\ach cata 
\akh kata 
\acl cata 
\akl kata 
\ame kata 
\mcc *kata.n / ~_ ALL.2</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6f082281-d209-4c1f-ba81-9c29bcf3569e" ownerguid="9a9c7174-4148-43c2-875c-0d2f884a5fe3"> -<ExampleWords> -<AUni ws="en">untidy, messy, slovenly, slob, disorderly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is untidy?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6f090edc-8db3-4897-8037-e148ebcd481c" ownerguid="bcb7f7ad-171d-484e-ac7b-b499a81aa33d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sod</AUni> -<AUni ws="es">césped</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="be6b59de-cd44-49bf-80a7-ea90acbdfb06" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6f098312-c8f7-473e-99b6-a5a42f9c4064" ownerguid="8f779877-7d86-4683-8a8b-298c7fc62815"> -<ExampleWords> -<AUni ws="en">hesitate, pause, false start</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to when a person wants to speak but hesitates?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6f0b5a8c-4dca-421b-8d1b-00ec34d181f6" ownerguid="e3e68e2d-8fbf-4e9e-a781-3ce55c374792"> -<Form> -<AUni ws="qvm-x-ach">viola</AUni> -<AUni ws="qvm-x-acl">viola</AUni> -<AUni ws="qvm-x-akh">viola</AUni> -<AUni ws="qvm-x-akl">viola</AUni> -<AUni ws="qvm-x-ame">viola</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6f0fa9bf-ccec-4b69-bd25-373a5371e49c" ownerguid="64f39297-426b-45a8-b5d2-097cf71d688c"> -<ExampleWords> -<AUni ws="en">young, big, good, black, kind, hot, fast</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the adjectives in your language?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6f149204-f537-4394-8ebd-bf2305cb99d5" ownerguid="0add0775-0ed0-46be-ba4a-76310e63a036"> -<ExampleWords> -<AUni ws="en">lean something against, incline, prop against</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to leaning something against something else?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="6f14ed29-7dc5-498e-8fa3-6d4106db7d15" ownerguid="6b8eef9c-fa20-4f58-a4f3-6c973bd47c84"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 26.20 Yantata mana waycapaycaptenga nina upinmi.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="6f166a78-c724-4bf1-a418-b405eb67815d" ownerguid="fa8e72a0-1bfe-4b49-a287-293b44213960"> -<ExampleWords> -<AUni ws="en">although, even though, despite the fact that</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) concessive: translated in English as 'although, even though, despite the fact that': 'She was saving her money, even though she was a wealthy woman'.</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6f17ccc4-73f2-4145-a5d5-c1bb5ee82754" ownerguid="b6e9b9c9-632b-48e7-99f7-fa53ebcb3bc5"> -<ExampleWords> -<AUni ws="en">stitch, knit, purl</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a single stitch?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="6f19a074-18c8-405e-8e6b-d61c2a1d8ce5" ownerguid="c4d1812b-e3d4-4191-ad65-5443673770c2"> -<Form> -<AUni ws="qvm-x-ach">disentería; disenteria</AUni> -<AUni ws="qvm-x-acl">disentería; disenteria</AUni> -<AUni ws="qvm-x-akh">disentería; disenteria</AUni> -<AUni ws="qvm-x-akl">disentería; disenteria</AUni> -<AUni ws="qvm-x-ame">disentería; disenteria</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="6f1b95a1-cd4a-4bb0-8335-c7abe824c37d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mogru</AUni> -<AUni ws="qvm-x-acl">mogru; mogro</AUni> -<AUni ws="qvm-x-akh">moqru</AUni> -<AUni ws="qvm-x-akl">moqru; moqro</AUni> -<AUni ws="qvm-x-ame">muqru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*muqru.v</AUni> -<AUni ws="qvm-x-acl">*muqru.v</AUni> -<AUni ws="qvm-x-akh">*muqru.v</AUni> -<AUni ws="qvm-x-akl">*muqru.v</AUni> -<AUni ws="qvm-x-ame">*muqru.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.507" /> -<DateModified val="2022-10-10 21:18:47.204" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f321ed43-dd01-4d73-bd69-67120972ae96" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*muqru.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dfbe4709-a405-40d4-b9d2-696318f82fb8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bf8f441b-085d-45fd-98f5-e929af0e719b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *muqru.v 
\entryTyp root 
\gENG 
\gSPN 
\e *muqru.v 
\c V2 
\ach mogru 
\akh moqru 
\acl mogru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl mogro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl moqru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl moqro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame muqru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="6f1c096b-fbf1-46a7-b3ae-443e34034906" ownerguid="8652a3b2-1bcd-4c6b-a0b5-89f621dbdb6d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mock</AUni> -<AUni ws="es">burlar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f76642fe-8c03-4ad8-9199-30549da09153" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="6f1cf65f-45ee-4421-ae70-f81210fb68f3" ownerguid="627995c6-072c-4b73-9405-dfc39686ac3c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">occasion</AUni> -<AUni ws="es">ocasión</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="610d421e-b85a-4133-8f8b-32cf20488d46" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="6f1db76e-e0a8-4aa9-a2fa-5476d4703762" ownerguid="a1a48737-8d57-4702-9956-891c691d7b96"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ra</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ra</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ra</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ra</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ra</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ec6359d2-b25a-466e-b6a0-4a7efa980490" t="r" /> -</Morph> -<Msa> -<objsur guid="fd75ba47-7348-4c70-9565-ca4ec1c2b5c2" t="r" /> -</Msa> -<Sense> -<objsur guid="525e7867-8f63-47f0-bac2-1277fb0d27f3" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="6f215ee2-708e-4158-85dc-fac977c5691f" ownerguid="447f258b-2160-42c7-9431-ffeeb86edcb8"> -<ExampleWords> -<AUni ws="en">be unable to have children, infertile, sterile, barren, childless, sterility, unfruitful, impotence, impotent, infertility</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to being unable to have children?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="6f2499f2-4b04-481d-b053-8fdca016e056" ownerguid="048dce22-b1e9-482a-951e-bc264d2f677b"> -<Category> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</Category> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="3184fe20-ccaf-4eae-8ae7-2ae0f73f60ae" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="c99a9889-d250-4b7b-bdf6-b95bb3761d07" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="6f2beb8d-fbd0-4def-8751-e5a316924a0e" ownerguid="3f4c559f-ab4f-411f-a23b-d2396c977005"> -<ExampleWords> -<AUni ws="en">invisible, lose sight of, unseen, invisibility, imperceptible, indiscernible</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that cannot be seen?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6f3020d2-25e5-4abb-93cd-2b6da07ed398" ownerguid="27a7baa4-5df5-4f24-b958-9f45303f4cd8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">patrona</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ed29e7ab-79c9-44da-ba36-c906998ec471" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6f34f631-ffc3-4e97-8eef-1f54ecbc15de" ownerguid="5c38879f-8df0-483b-a563-6b6c2de16a5d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="6f38ddcc-cce5-4a92-b350-dbdd1f1bc456" ownerguid="b3fb9960-8f42-43bc-9595-dfb3e04f5bfd"> -<ExampleWords> -<AUni ws="en">substitute, supplant, replace</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to putting something in the place of something else?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6f3aae2b-f3f4-470e-8348-fdff71b72706"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lushcu</AUni> -<AUni ws="qvm-x-acl">lushcu; lushcu; lushco</AUni> -<AUni ws="qvm-x-akh">lushku</AUni> -<AUni ws="qvm-x-akl">lushku; lushku; lushko</AUni> -<AUni ws="qvm-x-ame">lushku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llushku.n</AUni> -<AUni ws="qvm-x-acl">*llushku.n</AUni> -<AUni ws="qvm-x-akh">*llushku.n</AUni> -<AUni ws="qvm-x-akl">*llushku.n</AUni> -<AUni ws="qvm-x-ame">*llushku.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.243" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3d832ace-78ec-44f1-9588-671d0de52beb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llushku.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4decbc06-ecdc-44ab-b090-b260e6c16aed" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8169329a-3ea8-4092-84ca-be293325815b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llushku.n 
\entryTyp root 
\gENG cracked.cereal 
\gSPN cereal.molido 
\e *llushku.n 
\c N0 
\ach lushcu 
\akh lushku 
\acl lushcu / _# 
\acl lushcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lushco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lushku / _# 
\akl lushku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lushko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lushku</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="6f3c704e-dcaf-4b93-85e7-35ab981102c8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ra:yu</AUni> -<AUni ws="qvm-x-acl">ra:yu; ra:yo</AUni> -<AUni ws="qvm-x-akh">ra:yu</AUni> -<AUni ws="qvm-x-akl">ra:yu; ra:yo</AUni> -<AUni ws="qvm-x-ame">ra:yu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rayo.v</AUni> -<AUni ws="qvm-x-acl">+rayo.v</AUni> -<AUni ws="qvm-x-akh">+rayo.v</AUni> -<AUni ws="qvm-x-akl">+rayo.v</AUni> -<AUni ws="qvm-x-ame">+rayo.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.297" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0225531f-90df-46b0-9923-e25e13da7d3a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rayo.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="959bf08e-2bd3-48f9-8a23-8fe810e2aca5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="16b7d120-548c-4287-96a3-620ac4e0683e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rayo.v 
\entryTyp root 
\gENG to.thunder 
\gSPN truenar 
\e +rayo.v 
\c V1 
\ach ra:yu 
\akh ra:yu 
\acl ra:yu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ra:yo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ra:yu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ra:yo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ra:yu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="6f3d7ef2-54f8-483b-951f-ff758bfffedd" ownerguid="ec643327-35cd-4846-a51c-be1e023e9e6b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">saint</AUni> -<AUni ws="es">santa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e505dad0-991f-4779-920b-76febdee649a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="6f3fc059-239d-4a50-99c8-38d7159f808e" ownerguid="cc266d6a-f4bc-42a3-983e-af7b63ed0d30"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -<Sense> -<objsur guid="8825f180-b774-47d3-9faa-e76a889e064f" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="6f416602-9185-48c0-ad76-3e5b1caf9134"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">papi:tu</AUni> -<AUni ws="qvm-x-acl">papi:tu</AUni> -<AUni ws="qvm-x-akh">papi:tu</AUni> -<AUni ws="qvm-x-akl">papi:tu</AUni> -<AUni ws="qvm-x-ame">papi:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+papito</AUni> -<AUni ws="qvm-x-acl">+papito</AUni> -<AUni ws="qvm-x-akh">+papito</AUni> -<AUni ws="qvm-x-akl">+papito</AUni> -<AUni ws="qvm-x-ame">+papito</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.699" /> -<DateModified val="2022-10-10 21:18:47.204" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="57247896-cc86-4b09-9e24-9ae2a49f8c1e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+papito</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7ecafaff-c718-474f-8195-c522be4672e0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ff877ccd-2f16-4d3d-8b3d-ee7a0968f239" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +papito 
\entryTyp root 
\gENG 
\gSPN 
\e +papito 
\c NOSUFF 
\ach papi:tu 
\akh papi:tu 
\acl papi:tu 
\akl papi:tu 
\ame papi:tu 
\i SNG 1.16 Pasaypa cuyaylapagmi caycanqui, papïtu. 
\i SNG 2.3 Munti rurincho manzäna wayuraycagnogmi gamga lapan mözupitapis mas cuyaylapag caycanqui, papïto.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="6f41aa37-069b-4d0e-9ac0-b37442f815c1" ownerguid="7d46ca1c-d073-4416-9a7f-bafbc569cb9b"> -<Form> -<AUni ws="qvm-x-ach">garga</AUni> -<AUni ws="qvm-x-acl">garga</AUni> -<AUni ws="qvm-x-akh">qarqa</AUni> -<AUni ws="qvm-x-akl">qarqa</AUni> -<AUni ws="qvm-x-ame">qarqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6f454f0e-8f67-40fb-871a-13f274487358" ownerguid="21f21658-a69a-491c-a37b-156a8f4ad3fb"> -<ExampleWords> -<AUni ws="en">wrong, unsuitable, not suitable, unsuited to, not suited to, inappropriate, not appropriate, hardly the time/place/person</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something being unsuitable for a particular purpose or situation?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6f4882cd-e09b-44a5-991c-a005c3690086" ownerguid="ba1e8d2b-7d3e-4b65-a9be-ee1a4063c796"> -<ExampleWords> -<AUni ws="en">have a lot on your mind, be under a strain, preoccupied, stressed out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to being worried all the time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6f49630d-2f5b-47c6-8360-757d1c41235e" ownerguid="9f6754ae-a429-4bba-8f6f-2cd4ea0cbe45"> -<ExampleWords> -<AUni ws="en">virgin, virginity, celibate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a person who has never had sex?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="6f49b9df-43b4-48ee-a72f-c1bbbcad8e6a" ownerguid="8328a243-fc86-4339-9563-c9cbe69d0955"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pag</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pag</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">paq</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">paq</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">paq</Run> -</AStr> -</Form> -<Morph> -<objsur guid="388870a0-cbff-40e3-86fa-e65b7a346d7f" t="r" /> -</Morph> -<Msa> -<objsur guid="aafa5d02-399a-4048-b045-4c82d08978e0" t="r" /> -</Msa> -<Sense> -<objsur guid="fd354ec3-02ac-484c-9214-5d64e394463b" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="6f50c212-ebb9-4dd7-9f44-a3658961f89c" ownerguid="acd1956e-7b55-40c3-8c5c-3122e4bce2fe"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="6f55a078-75ef-4ac7-8ead-9e27bf0d2c87" ownerguid="d76d0838-3519-49cd-9217-68372b606a7a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lentils</AUni> -<AUni ws="es">lentejas</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="73028f7d-82d3-4e8c-88b0-271e59ee5694" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6f561d20-0c73-4d72-ba5e-f0948853afe8" ownerguid="2c401e7f-6ce9-470f-b6b6-fadf7a798536"> -<ExampleWords> -<AUni ws="en">(feel) rested, energetic, have a lot of energy, refreshed, restored</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a person who has rested?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6f599cd6-f002-4aa3-a055-de6841a313fd" ownerguid="6de42a33-35b2-49c6-b2c4-fa9c0c5094f0"> -<ExampleWords> -<AUni ws="en">drink (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to what is drunk?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6f5ae82d-060b-429f-b5af-96937196cd57" ownerguid="a0d073df-d413-4dfd-9ba1-c3c68f126d90"> -<ExampleWords> -<AUni ws="en">solar system</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the sun and planets?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6f5c0f2c-6ecd-426b-8e81-dfed65726db4" ownerguid="aa66edd0-122b-489e-80ff-b6bca2de96ce"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">subject</AUni> -<AUni ws="es">sujeto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e6f45b72-7b57-43fa-a30e-7f7195fe88a7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="6f6201ec-cd2a-4498-8cd1-69773d0c80f7"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">wanushqaykichömi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="6f630e1b-9383-4f89-8eff-c6825762f2a1" ownerguid="bd88e09a-0127-434a-b9e2-28ea6537b797"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">noise</AUni> -<AUni ws="es">bulla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1fafcb53-5b4a-4bb1-9c3b-10871ba927d8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6f645a54-c85d-42ec-bfa3-1877d21d175b" ownerguid="0a42fd83-3b30-4c85-bb68-f5132e9ffeee"> -<ExampleWords> -<AUni ws="en">fortress, fort, castle, battlement, moat, fortification</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used for a place where someone is protected?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6f650151-4342-4b3b-90a9-464b6af1131f" ownerguid="906743a7-bf46-485d-9915-0d474a4de46e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="6f66c39e-3a94-4600-8cb5-3bc940b61eb0" ownerguid="c5ffe4fb-9a60-4ac0-b1d4-08c7d02111c6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="5ec131f3-bd87-419f-b90c-0b3e8cdb0a1b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6f6d5d02-f5e4-4a3d-ae20-060df000db7e" ownerguid="2e09535f-f61f-4ff5-8d56-23c2916cbb7f"> -<ExampleWords> -<AUni ws="en">to roughen, scrape, scratch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to making something rough?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6f6e16f6-a78d-4638-a11a-334eb476b227" ownerguid="a1959b00-9702-4b45-ac46-93f18d3bc5e6"> -<ExampleWords> -<AUni ws="en">hold your breath</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to stopping yourself from breathing?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6f6f27a4-8095-405a-a15a-a22794bfb9c1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mil</AUni> -<AUni ws="qvm-x-acl">mil; mil; mel</AUni> -<AUni ws="qvm-x-akh">mil</AUni> -<AUni ws="qvm-x-akl">mil; mil; mel</AUni> -<AUni ws="qvm-x-ame">mil</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mil</AUni> -<AUni ws="qvm-x-acl">+mil</AUni> -<AUni ws="qvm-x-akh">+mil</AUni> -<AUni ws="qvm-x-akl">+mil</AUni> -<AUni ws="qvm-x-ame">+mil</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.434" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e599a63c-041d-49be-9ef1-4fe6f7235401" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mil</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aa2994b2-b172-49d6-8c75-aa5e4e902f7c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f8dc92c1-0616-401a-8b26-18c868bdef4e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mil 
\entryTyp root 
\gENG thousand 
\gSPN mil 
\e +mil 
\c N0 
\mp +FinalC 
\ach mil 
\akh mil 
\acl mil / _# 
\acl mil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mil / _# 
\akl mil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame mil</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6f6f7bfb-252b-4ba0-858b-0ad9d636b434" ownerguid="2470ad05-636e-4c85-96ab-cd880da58741"> -<ExampleWords> -<AUni ws="en">religion, faith</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to an official religion?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6f6fcc18-3f9e-457c-ade1-c1d7dc30017e" ownerguid="85646774-8145-4553-b8a7-6927cd077908"> -<ExampleWords> -<AUni ws="en">brood, clutch (of eggs), kit, litter (of kittens), farrow (of pigs)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a group of baby animals?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="6f719625-393b-4294-a9a5-9b73272cf351" ownerguid="f70907c6-a064-425a-830f-e669319c38da"> -<ExampleWords> -<AUni ws="en">lead, direct, control, guide</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to leading?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6f7278dc-3994-49b7-baab-3a6e0cc01d86" ownerguid="4268dc30-454d-41f8-8187-b430b3e46ec3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="6f7aed1c-c4a2-4815-aec1-707d6d85def1" ownerguid="4b820444-925e-435f-9d44-e5d5fd3846f6"> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="163823b9-4b41-49fd-bd8e-a8c0e35db361" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="dc1fc0f8-a88e-426e-b520-3409d76a4cd1" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="6f7d045c-1439-475b-9732-ae7880feea09" ownerguid="a2d15c3f-53f7-491b-8675-1f4cabc6d6a7"> -<Form> -<AUni ws="qvm-x-ach">traducción; traduccion</AUni> -<AUni ws="qvm-x-acl">traducción; traduccion</AUni> -<AUni ws="qvm-x-akh">traducción; traduccion</AUni> -<AUni ws="qvm-x-akl">traducción; traduccion</AUni> -<AUni ws="qvm-x-ame">traducción; traduccion</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6f7df74f-6b82-4484-be37-37ca54707eb9" ownerguid="cb99a086-8c6d-4f90-81db-6afa69ae5455"> -<ExampleWords> -<AUni ws="en">cry, call, scream</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to the sounds of animals?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6f7fa8b9-1610-432a-b7a5-06f5a6db505c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">millón; millon</AUni> -<AUni ws="qvm-x-acl">millón; millon</AUni> -<AUni ws="qvm-x-akh">millón; millon</AUni> -<AUni ws="qvm-x-akl">millón; millon</AUni> -<AUni ws="qvm-x-ame">millón; millon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+millón</AUni> -<AUni ws="qvm-x-acl">+millón</AUni> -<AUni ws="qvm-x-akh">+millón</AUni> -<AUni ws="qvm-x-akl">+millón</AUni> -<AUni ws="qvm-x-ame">+millón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.436" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8806e854-ce53-4057-8476-e8cb49d5e4f7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+millón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8f319bbd-7390-471f-b19e-5ac25dd33219" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7f231fd3-1f7e-4930-945e-d6bfd7d0a340" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +millón 
\entryTyp root 
\gENG million 
\gSPN millón 
\e +millón 
\c N0 
\mp +FinalC 
\ach millón / _# 
\ach millon / ~_# 
\akh millón / _# 
\akh millon / ~_# 
\acl millón / _# 
\acl millon / ~_# 
\akl millón / _# 
\akl millon / ~_# 
\ame millón / _# 
\ame millon / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="6f80142f-b1f5-4105-ad05-4663fa5b4a9d" ownerguid="38d9125b-88fe-4f7a-9e21-5da82d3ee093"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="6f83b918-dc9f-4053-90a4-a6b9e750db29" ownerguid="683f570a-0bfe-4a97-b55d-4319b328508b"> -<Abbreviation> -<AUni ws="en">6.6.7.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to controlling the movement of water.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Controlling water</AUni> -</Name> -<Questions> -<objsur guid="73177738-0506-4796-9b27-603a7bdafb57" t="o" /> -<objsur guid="0841dd09-7a7d-4776-920d-9beca1ec6085" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="6f83e7f5-39be-4055-ac5c-757782d049e3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gonga; gonga:</AUni> -<AUni ws="qvm-x-acl">gonga; gonga:</AUni> -<AUni ws="qvm-x-akh">qonqa; qonqa:</AUni> -<AUni ws="qvm-x-akl">qonqa; qonqa:</AUni> -<AUni ws="qvm-x-ame">qunqa; qunqa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qunqa:</AUni> -<AUni ws="qvm-x-acl">*qunqa:</AUni> -<AUni ws="qvm-x-akh">*qunqa:</AUni> -<AUni ws="qvm-x-akl">*qunqa:</AUni> -<AUni ws="qvm-x-ame">*qunqa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.851" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="039bcae5-eb1c-447b-a9c8-edc81fd1ec53" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qunqa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0b449029-0a80-49a7-94f5-8f76a8df8c82" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f113f3e5-bc64-4275-8e95-6006006e01e8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qunqa: 
\entryTyp root 
\gENG forget 
\gSPN olvidar 
\e *qunqa: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach gonga foreshortened 
\ach gonga: 
\akh qonqa foreshortened 
\akh qonqa: 
\acl gonga foreshortened 
\acl gonga: 
\akl qonqa foreshortened 
\akl qonqa: 
\ame qunqa foreshortened 
\ame qunqa: 
\mcc *qunqa: / ~_ [ben] [q] | gongapagmi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoMorphAdhocProhib" guid="6f84ee0a-a60a-4e92-95b4-edf8e59ee2ad" ownerguid="b80228bc-ea5e-11de-9d24-0013722f8dec"> -<Adjacency val="4" /> -<Disabled val="False" /> -<FirstMorpheme> -<objsur guid="5a6f0521-2196-49ef-ac84-f9d082f56194" t="r" /> -</FirstMorpheme> -<RestOfMorphs> -<objsur guid="0daaea2b-9cca-4a9f-953a-83273b1d5023" t="r" /> -</RestOfMorphs> -</rt> -<rt class="CmDomainQ" guid="6f86ace3-12b3-4149-9f89-2b03bc156265" ownerguid="1133ad78-9ce9-46aa-b181-bb6f7a84a07b"> -<ExampleWords> -<AUni ws="en">nearer, closer, before, on this side of, nearest, closest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words indicate that something is nearer than something else?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6f8af73b-9df1-4f74-87cf-ed4907cdb84e" ownerguid="99bc71fb-09e9-4400-9674-8f066e8a4bf7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="6f8b0c7b-48cd-4138-8bf1-222abcb7c70b" ownerguid="56d52d54-9da9-4e9f-a6cd-9e3675ae2880"> -<Form> -<AUni ws="qvm-x-ach">jaula</AUni> -<AUni ws="qvm-x-acl">jaula</AUni> -<AUni ws="qvm-x-akh">jaula</AUni> -<AUni ws="qvm-x-akl">jaula</AUni> -<AUni ws="qvm-x-ame">jaula</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="6f8d4578-3c91-47b5-a3c5-a3004e9f6e65" ownerguid="f51d335c-a490-40e6-b1bb-b5df8792ba3b"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="3e0809e5-2807-4f2c-bb37-350f6168c434" t="o" /> -<objsur guid="be055ca0-88b2-49ca-9d7a-0601ed5890a9" t="o" /> -<objsur guid="8b15717d-4eb0-4314-ab96-85ebb57b401d" t="o" /> -<objsur guid="7ac14276-a2b9-490b-b775-c38d69cffd12" t="o" /> -<objsur guid="08563cb8-6f4e-4c19-88cf-0b5f6b7f2c07" t="o" /> -<objsur guid="8abcf2c0-2438-4f77-8b09-8283c2bb8236" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="6f8ecd6c-b5e7-45d7-a772-03155e91758d" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<ExampleWords> -<AUni ws="en">take someone for a walk, walk the dog</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(23) What words refer to causing someone to walk?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="6f921684-5b93-4604-99fc-74ba873ea044" ownerguid="5fdf723e-9f43-42d6-a717-cf395f74b1a5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yapay</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yapay</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yapay</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yapay</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yapay</Run> -</AStr> -</Form> -<Morph> -<objsur guid="307ac57e-97a5-4682-8b22-5262366e068a" t="r" /> -</Morph> -<Msa> -<objsur guid="51ed09e7-8831-4023-b4c7-903675c93f28" t="r" /> -</Msa> -<Sense> -<objsur guid="d1c8b687-b59d-4f5b-9387-92c636d94f4f" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="6f92ba78-b724-4224-9345-f67900bdbee7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">club</AUni> -<AUni ws="qvm-x-acl">club</AUni> -<AUni ws="qvm-x-akh">club</AUni> -<AUni ws="qvm-x-akl">club</AUni> -<AUni ws="qvm-x-ame">club</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+club</AUni> -<AUni ws="qvm-x-acl">+club</AUni> -<AUni ws="qvm-x-akh">+club</AUni> -<AUni ws="qvm-x-akl">+club</AUni> -<AUni ws="qvm-x-ame">+club</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.132" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="09bd6438-a75a-4efc-b4a0-487ea2361c1c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+club</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6cf66030-27c3-46a9-9845-a6e5dd604fcd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1257308f-0451-4b6b-b829-4dd6d8ca53bf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +club 
\entryTyp root 
\gENG 
\gSPN 
\e +club 
\c N0 
\mp +FinalC 
\ach club 
\akh club 
\acl club 
\akl club 
\ame club</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="6f92fc75-7b8b-4a86-9d46-ff104a08f60a" ownerguid="b948f9df-1600-45d4-9c5a-c0b5fe70f01a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ef619691-c8e2-4182-a27b-24d521ef7291" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6f972bdf-a33d-4792-8dce-8df424d0d473" ownerguid="86287a4c-0d64-4f28-9a5c-17fb9df37ab6"> -<ExampleWords> -<AUni ws="en">be on, be on top of, topside, upon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is on something else?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6f9ca431-5796-4d32-a3d7-8293ae8998ff"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">reclama</AUni> -<AUni ws="qvm-x-acl">reclama</AUni> -<AUni ws="qvm-x-akh">reclama</AUni> -<AUni ws="qvm-x-akl">reclama</AUni> -<AUni ws="qvm-x-ame">reclama</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+reclamar</AUni> -<AUni ws="qvm-x-acl">+reclamar</AUni> -<AUni ws="qvm-x-akh">+reclamar</AUni> -<AUni ws="qvm-x-akl">+reclamar</AUni> -<AUni ws="qvm-x-ame">+reclamar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.307" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a1744356-9cac-46ec-8972-73a8048e792d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+reclamar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a5364d61-21ed-456b-a0d5-c165fbf239c3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="48341142-8df7-4908-9da0-749b26ffdfda" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +reclamar 
\entryTyp root 
\gENG reclaim 
\gSPN reclamar 
\e +reclamar 
\c V2 
\ach reclama 
\akh reclama 
\acl reclama 
\akl reclama 
\ame reclama</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="6f9d5643-2bb6-4b86-8302-c665dee2ccf7" ownerguid="a50f38f9-87df-4259-b674-bf1aa4242ed9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.stand.out</AUni> -<AUni ws="es">superar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="10d7b08f-7c8f-4731-a60c-ba4c90fbcddf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="6f9e9ab2-0a12-45d1-ab96-138d37b79fdc"> -<Analyses> -<objsur guid="5471fd91-b13a-44e5-a336-5603b5f1cc39" t="o" /> -</Analyses> -<Checksum val="-957869571" /> -<Form> -<AUni ws="qvm-x-akh">qamwan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="6f9fbc99-e2a3-4a37-b2b0-cf4672f6c772" ownerguid="aa70055e-436a-4d4e-a1b0-e9e0cebb14ad"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">produce</AUni> -<AUni ws="es">producir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0390f6fd-d5e0-42ae-b22f-8f7e22e6540c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6fa05c57-b1bb-485d-8ab7-782c8504219b" ownerguid="17c8473e-c402-476d-8f93-8b20a5c9b925"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="6fa1d5b6-004a-4a06-a2df-e68a20fbf996"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tro:nu</AUni> -<AUni ws="qvm-x-acl">tro:nu; tro:nu; tro:no</AUni> -<AUni ws="qvm-x-akh">tro:nu</AUni> -<AUni ws="qvm-x-akl">tro:nu; tro:nu; tro:no</AUni> -<AUni ws="qvm-x-ame">tro:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+trono</AUni> -<AUni ws="qvm-x-acl">+trono</AUni> -<AUni ws="qvm-x-akh">+trono</AUni> -<AUni ws="qvm-x-akl">+trono</AUni> -<AUni ws="qvm-x-ame">+trono</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.149" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="525753c2-ae9f-4f83-a1f8-1eb91c209158" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+trono</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="733be8b8-ce83-4ae6-b900-41d52ea3cd2f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="55ae8bd7-f068-42ac-8167-fde63c3ab581" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +trono 
\entryTyp root 
\gENG throne 
\gSPN trono 
\e +trono 
\c N0 
\ach tro:nu 
\akh tro:nu 
\acl tro:nu / _# 
\acl tro:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tro:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tro:nu / _# 
\akl tro:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tro:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tro:nu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="6fa25ec8-48fd-4f40-b1cb-050f4c5966fe" ownerguid="34c3edad-a158-44e7-989b-5b74401e6945"> -<ExampleWords> -<AUni ws="en">noxious (fumes), poisonous gas</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe gas?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="6fa27e89-d7a9-4d52-9c08-feb552baf170"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">astu:tu</AUni> -<AUni ws="qvm-x-acl">astu:tu; astu:tu; astu:to</AUni> -<AUni ws="qvm-x-akh">astu:tu</AUni> -<AUni ws="qvm-x-akl">astu:tu; astu:tu; astu:to</AUni> -<AUni ws="qvm-x-ame">astu:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+astuto</AUni> -<AUni ws="qvm-x-acl">+astuto</AUni> -<AUni ws="qvm-x-akh">+astuto</AUni> -<AUni ws="qvm-x-akl">+astuto</AUni> -<AUni ws="qvm-x-ame">+astuto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.850" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e14efd53-bd53-4a0a-be51-65eddb748766" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+astuto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="44c5ef41-6698-4608-8138-9314a3708930" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1da90cff-87f3-4166-9127-8527847a9e95" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +astuto 
\entryTyp root 
\gENG 
\gSPN 
\e +astuto 
\c N0 
\ach astu:tu 
\akh astu:tu 
\acl astu:tu / _# 
\acl astu:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl astu:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl astu:tu / _# 
\akl astu:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl astu:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame astu:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="6fa33de6-00f4-44d5-b6b3-b3c4a4f671e5" ownerguid="c3ddfc77-e3a6-450e-a853-111f5595df87"> -<Abbreviation> -<AUni ws="en">9.4.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.700" /> -<DateModified val="2022-9-23 16:55:8.700" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that a speaker uses to indicate that he is asking a question. English has no question word, but other languages such as Japanese do.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Interrogative</AUni> -</Name> -<Questions> -<objsur guid="48624539-1ba2-4c9b-881e-36fc9b000c5b" t="o" /> -<objsur guid="4d025f4f-0d45-445d-ac76-32ddb89d288c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="6fa4402f-60c0-4a0d-aad6-040af485e6ce" ownerguid="bfb1dfa0-ba12-4f41-a1b8-3d99e5b634c5"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="6fa96f1e-b7d1-4881-82c7-246fd9d2eae1" ownerguid="0551c37c-61f2-402d-9e8e-74fe3c0e645c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StStyle" guid="6fab1eb3-500c-4b76-be30-a27b0b12883a" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="11" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Title Secondary</Uni> -</Name> -<Rules> -<Prop fontsize="14000" fontsizeUnit="mpt"></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<Usage> -<AUni ws="en">Title Secondary identifies a part of the title that is of second-level importance.</AUni> -</Usage> -<UserLevel val="3" /> -</rt> -<rt class="CmDomainQ" guid="6fab4fb4-6aed-483e-9d57-c2cc2d60008c" ownerguid="24361be2-49be-4860-bb56-4e46dd1e8b0c"> -<ExampleWords> -<AUni ws="en">taboo, forbidden, prohibited, untouchable, inviolable, banned, off-limits, avoided</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is taboo?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="6fb1d03c-b0fe-49b7-a473-168f12a54a36" ownerguid="6bf8ce57-1970-4efb-a7d7-b0bf8be6fb6b"> -<Abbreviation> -<AUni ws="en">8.4.5.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something happening late--after the expected time, after the usual time, or after the time that was agreed on.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Late</AUni> -</Name> -<Questions> -<objsur guid="afccd7d1-0c20-4213-8373-cdb94a07a581" t="o" /> -<objsur guid="5466cdf0-9669-4486-9e39-f88834b0d3a1" t="o" /> -<objsur guid="733cc2d1-6aae-49c3-bb65-76237bedac9f" t="o" /> -<objsur guid="99dd8dce-0de3-4776-97fc-7a2e707b1210" t="o" /> -<objsur guid="34729d66-9399-41a5-98eb-e34afcca4700" t="o" /> -<objsur guid="ee87e542-8e50-4eac-b96e-91056fb95dee" t="o" /> -<objsur guid="9b4da5f4-b835-4302-93c2-ae84533d72e5" t="o" /> -<objsur guid="b5b9a709-70da-4dda-a114-e1803a8fdb4d" t="o" /> -<objsur guid="30e7327c-90ef-4603-9d04-3b93d2e5f4f8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="6fb6928b-fa1e-4c9b-aa84-df8eccfc5900"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nubisya; nubisya:</AUni> -<AUni ws="qvm-x-acl">nubisya; nubisya:</AUni> -<AUni ws="qvm-x-akh">nubisya; nubisya:</AUni> -<AUni ws="qvm-x-akl">nubisya; nubisya:</AUni> -<AUni ws="qvm-x-ame">nubisya; nubisya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+nubes.v</AUni> -<AUni ws="qvm-x-acl">+nubes.v</AUni> -<AUni ws="qvm-x-akh">+nubes.v</AUni> -<AUni ws="qvm-x-akl">+nubes.v</AUni> -<AUni ws="qvm-x-ame">+nubes.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.576" /> -<DateModified val="2022-10-10 21:18:47.204" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="26e7b9f6-6d75-4826-802c-026654fcd33e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+nubes.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="637881c7-91d2-47d5-a812-501bb96fa1ea" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="958ad4ea-45cd-43bc-9076-de28e5d85518" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +nubes.v 
\entryTyp root 
\gENG 
\gSPN 
\e +nubes.v 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach nubisya foreshortened 
\ach nubisya: 
\mp +underlong 
\akh nubisya foreshortened 
\akh nubisya: 
\acl nubisya foreshortened 
\acl nubisya: 
\akl nubisya foreshortened 
\akl nubisya: 
\mp +underlong 
\ame nubisya foreshortened 
\ame nubisya: 
\i PSA 6.7 Waran waran wagaylawanmi nawëpis pasaypa nubisyaycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="6fb7e6ce-53d8-498e-9ba3-b690d2e60c7d" ownerguid="de1b176a-89c6-453a-beef-640fe529340a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="6fb8d865-3c68-4b4c-8e19-3e04fc13cfef" ownerguid="76ee0bb6-e7f6-4ec3-bd37-c2e9cdc849e5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="bb71e3a5-bac1-44c9-8796-86b6ba9a9983" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="887e2bc6-6d83-4632-b79d-6cb515b9c0e7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="StStyle" guid="6fbc04a2-3664-4106-abf3-dfe699b97be5" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="8" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Alternate Reading</Uni> -</Name> -<Rules> -<Prop bold="invert"></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<Usage> -<AUni ws="en">Alternate Reading identifies an alternate translation for a passage in a note.</AUni> -</Usage> -<UserLevel val="2" /> -</rt> -<rt class="CmDomainQ" guid="6fbd0985-34ff-4745-997b-e2a649c9272a" ownerguid="5718fcc8-1eba-4b8d-9b6b-0c8349f53f80"> -<ExampleWords> -<AUni ws="en">sharpshooter, marksman, good aim, good eye</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a person who is good at hitting a target?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6fbd5fd1-6400-4623-ba57-aca22b5f6cf8" ownerguid="851d9ccc-2a49-4ef0-947f-dd6f5e91b410"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="6fbe2491-231d-4dd6-b3ec-aeb02bcde826" ownerguid="4697f462-65be-42b1-a9c7-d8eac3d924d0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="55ed324b-5e3b-4cf8-8417-ffa033d6bea2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="6fbe39fb-a4cb-4fcf-830b-8875fd4324e0" ownerguid="5ea9301a-9906-4e81-97cf-48ee95a54c63"> -<Abbreviation> -<AUni ws="en">3.3.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.121" /> -<DateModified val="2022-9-23 16:55:8.121" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to compelling someone to do something--to cause or force someone to do something that they do not want to do.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>37B Compel, Force</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Compel</AUni> -</Name> -<Questions> -<objsur guid="cea10777-21fd-40e1-a24e-3fddd242b424" t="o" /> -<objsur guid="74814e42-2743-46c8-b687-8eed78d19c0c" t="o" /> -<objsur guid="c267fae2-30e4-49ed-bb20-3ad499bddf93" t="o" /> -<objsur guid="00da15ee-5246-4d26-aeb2-f68643d4f7f7" t="o" /> -<objsur guid="0e316bd5-8e12-48c8-9c7c-3bd7a6049d30" t="o" /> -<objsur guid="1b80c26b-3693-4f9b-8a63-e4f89ce53e5b" t="o" /> -<objsur guid="6a270233-1867-4007-bfdf-85dba39b0d5f" t="o" /> -<objsur guid="9d1c0448-4e52-4dd4-ba77-a2824d57dedd" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="23bc906d-c15a-4368-b0ca-7443d5e37b83" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoAffixAllomorph" guid="6fbee6c7-3e01-4108-b3fd-e300077d0160" ownerguid="212914f2-1f1a-4ab4-8aae-7955ec0c4d84"> -<Form> -<AUni ws="qvm-x-ach">ya</AUni> -<AUni ws="qvm-x-acl">ya</AUni> -<AUni ws="qvm-x-akh">ya</AUni> -<AUni ws="qvm-x-akl">ya</AUni> -<AUni ws="qvm-x-ame">ya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="b27c54e7-0a24-46d7-b332-e63a45ecffc2" t="r" /> -</PhoneEnv> -</rt> -<rt class="MoStemMsa" guid="6fbef779-0a16-4227-80ef-6f7088b804a6" ownerguid="ad541a44-bd90-446d-8b52-cf8bcb85f460"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="6fbf4104-cc8c-44a8-b009-b6d99b38fd38" ownerguid="933404fc-9865-4f05-ad2a-55d83ac396f9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">r</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">r</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">r</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">r</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">r</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a96fae79-db91-498f-a3f4-4aaeff3f9499" t="r" /> -</Morph> -<Msa> -<objsur guid="973e08a0-60b3-4ff1-9973-ac70ea0a16bc" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="6fc0417c-ad9c-4e98-b79c-b5324e445cad" ownerguid="fbd564c4-4cb4-4360-bf66-baaa725a70fe"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="6fc2d834-6727-4d29-8b91-4fbb7e831636" ownerguid="c6a8541f-dda4-484d-a65e-fdb19b5e7b7d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="6fc54439-431a-480f-bc66-44254bd811a2" ownerguid="7b8ad325-aa92-4fa6-b47e-8b9b5d1edeaf"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="6fc8ae4d-9fad-462e-9ea0-c613c3c1cb5e" ownerguid="541dfa10-bf97-4713-a534-9cbcc7f66bc9"> -<Abbreviation> -<AUni ws="en">3.2.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.103" /> -<DateModified val="2022-9-23 16:55:8.103" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to doubt--not being sure if something is true or not.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Doubt</AUni> -</Name> -<Questions> -<objsur guid="1d330527-48a7-416a-af9c-b2be7f991561" t="o" /> -<objsur guid="957b582b-afc3-4d94-9f98-7ec61b95c703" t="o" /> -<objsur guid="f84abc5f-1728-4d86-b3bc-9ffda4a1d8ee" t="o" /> -<objsur guid="7807484c-ae2f-4eaa-bf51-a3cbae423260" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="6fcc4e37-b2e8-418e-8f21-d0ae270be587" ownerguid="1ced72da-3188-4613-bccf-279ac20bf450"> -<Form> -<AUni ws="qvm-x-ach">tal</AUni> -<AUni ws="qvm-x-acl">tal</AUni> -<AUni ws="qvm-x-akh">tal</AUni> -<AUni ws="qvm-x-akl">tal</AUni> -<AUni ws="qvm-x-ame">tal</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="6fce1f0e-0596-43ae-bbe3-8fc242e08a44" ownerguid="ac734a97-d49b-469b-8068-e59c6e9af96c"> -<Form> -<AUni ws="qvm-x-ach">discïpulu</AUni> -<AUni ws="qvm-x-acl">discïpulu; discïpulu; discïpulo</AUni> -<AUni ws="qvm-x-akh">discïpulu</AUni> -<AUni ws="qvm-x-akl">discïpulu; discïpulu; discïpulo</AUni> -<AUni ws="qvm-x-ame">discïpulu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6fcee042-25ba-4fd9-9035-4e07bbfb5ef0" ownerguid="bd4879c9-fb7c-4db4-a024-b70f237789a6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="6fceec81-1967-4fe5-81f3-86bcaf3f1c2f" ownerguid="53ba3b61-4f4e-4749-8a7f-0d2b327a113d"> -<Abbreviation> -<AUni ws="en">6.1.2.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.350" /> -<DateModified val="2022-9-23 16:55:8.350" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to canceling a plan, decision, or event.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Cancel an event</AUni> -</Name> -<Questions> -<objsur guid="434a5ea4-7189-4255-8541-a4d30f91b62b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="6fd05d72-9436-47bb-ab70-d6cf330d2ad6" ownerguid="05d1c5bb-1f81-4979-acfa-1931d5d237e7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rain</AUni> -<AUni ws="es">lluvia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d53fbd44-4efa-4783-a752-10d387d64c24" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="6fd38eb4-21e9-4b1e-8538-ae2461b28912"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cu</AUni> -<AUni ws="qvm-x-acl">cu</AUni> -<AUni ws="qvm-x-akh">ku</AUni> -<AUni ws="qvm-x-akl">ku</AUni> -<AUni ws="qvm-x-ame">ku</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.597" /> -<DateModified val="2022-10-16 15:9:45.592" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b405b982-021d-47b3-b79d-5f82b338de44" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">YN?</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="499e6c5a-93d8-4e8b-8ff1-07f40fc23fee" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e255010c-5abb-43fb-a3ff-e04807ae9631" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx YN? 
\entryTyp suffix 
\gENG YN? 
\gSPN ?AN 
\e YN? 
\c N0/N0 V0/V0 R0/R0 ONSHEV/ONSHEV BN/BN 
\o 220 
\mp -PMonophthongized 
\ach cu / _# 
\akh ku / _# 
\acl cu / _# 
\akl ku / _# 
\ame ku / _# 
\mp NeverLowered 
\mcc YN? / ~_ TOP 
\mcc YN? / ~_ DIR 
\mcc YN? / ~_ TOP 
\mcc YN? / ~_ NOW 
\mcc YN? / ~_ YET1 | Tashga: paycurag *pay DUB 
\mcc YN? / ~_ BEC 
\mcc YN? / ~_ SIM7 
\mcc YN? / ~_ EVEN1 
\mcc YN? / ~_ JUST | cayculäsun is never < N0 *kay > YN? JUST 1P NEG+SI 
\mcc YN? / ~_ NEG 
\mcc YN? / ~_ RPT 
\mcc YN? / ~_ PLUR</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="6fd62317-8ff7-4cb3-8d84-b8a8c8e475fc" ownerguid="f7eed06a-3d04-48d3-81a6-a30f69fc03d8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bull.frog</AUni> -<AUni ws="es">sapo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c2b5dc83-a330-4c0a-a853-42984087a09c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="6fd6bb92-0d1b-42e4-83dc-71c82701d5fb" ownerguid="1cb79293-d4f7-4990-9f50-3bb595744f61"> -<ExampleWords> -<AUni ws="en">personality, character, conscience, disposition, nature, tendency</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the part of a person that affects his behavior?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="6fd6d4c9-7203-47bd-8ee6-40fc67a3821b" ownerguid="dd06cfae-5428-49b9-921e-935ceb6e6c21"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="6fdeec43-6db7-4511-a061-008ef0c513c1" ownerguid="4697f462-65be-42b1-a9c7-d8eac3d924d0"> -<Form> -<AUni ws="qvm-x-ach">gochgu</AUni> -<AUni ws="qvm-x-acl">gochgu; gochgo</AUni> -<AUni ws="qvm-x-akh">qochqu</AUni> -<AUni ws="qvm-x-akl">qochqu; qochqo</AUni> -<AUni ws="qvm-x-ame">quchqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6fdf6799-8293-4fa4-999e-db63f0908440" ownerguid="15589482-d0ee-4b8d-9d9e-f76da3eefaab"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="6fe0cf64-0ad9-42ab-a418-64f6e1bbe68a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">capi:tulu</AUni> -<AUni ws="qvm-x-acl">capi:tulu; capi:tulu; capi:tulo</AUni> -<AUni ws="qvm-x-akh">capi:tulu</AUni> -<AUni ws="qvm-x-akl">capi:tulu; capi:tulu; capi:tulo</AUni> -<AUni ws="qvm-x-ame">capi:tulu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+capítulo</AUni> -<AUni ws="qvm-x-acl">+capítulo</AUni> -<AUni ws="qvm-x-akh">+capítulo</AUni> -<AUni ws="qvm-x-akl">+capítulo</AUni> -<AUni ws="qvm-x-ame">+capítulo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.520" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6ff0ee4c-2955-42fe-87a2-fd60eafe5ff8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+capítulo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="15be8fb8-d556-4408-b268-2358d711e4d7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0cf6e779-254d-4704-8287-f47dbbb6e3f8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +capítulo 
\entryTyp root 
\gENG chapter 
\gSPN capítulo 
\e +capítulo 
\c N0 
\ach capi:tulu 
\akh capi:tulu 
\acl capi:tulu / _# 
\acl capi:tulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl capi:tulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl capi:tulu / _# 
\akl capi:tulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl capi:tulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame capi:tulu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="6fe11b6a-8d01-4a0b-bdeb-e4e6f420340a" ownerguid="1cb79293-d4f7-4990-9f50-3bb595744f61"> -<Abbreviation> -<AUni ws="en">3.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.94" /> -<DateModified val="2022-9-23 16:55:8.94" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that describe a person's personality (the way he usually thinks, talks, and how he acts with other people).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Personality</AUni> -</Name> -<OcmCodes> -<Uni>150 Behavior Processes and Personality; 156 Social Personality; 157 Personality Traits</Uni> -</OcmCodes> -<Questions> -<objsur guid="ed4298a7-e36c-419b-bcd1-ce9c11e011ae" t="o" /> -<objsur guid="e618cba2-a754-4c03-aa2f-a09b6cbc5442" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="8e11dd10-459b-4fb3-b876-7d80ec5f8a4d" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoAffixAllomorph" guid="6fe49b5e-093a-457b-9f14-02b68e8cec63" ownerguid="27e74a51-5c7c-4462-a610-b9e1574dba20"> -<Form> -<AUni ws="qvm-x-ach">pa</AUni> -<AUni ws="qvm-x-acl">pa</AUni> -<AUni ws="qvm-x-akh">pa</AUni> -<AUni ws="qvm-x-akl">pa</AUni> -<AUni ws="qvm-x-ame">pa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="6feab5e5-9c85-430f-9751-8c46e75da77d" ownerguid="531ef61d-ea5e-427d-8eba-cb6d4dee392b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="6fed0233-6c30-424b-9105-e22ba4d49b67" ownerguid="c038b0f7-8d34-4f13-9d9f-fff06ac936a4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sadness</AUni> -<AUni ws="es">tristeza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ea17aee2-ff10-44a0-86a4-957ec2af2bd8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="6fedcfbd-29db-4c01-bd2a-f6e33b2b3175" ownerguid="caf960da-cb19-4d47-b0e6-1c07be37025f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="6fef5e9c-9884-474e-9622-b3a58162ebf0" ownerguid="f7c5dc00-e7bc-4a8c-900e-ca97b4b96d0e"> -<Form> -<AUni ws="qvm-x-ach">wayna; waynä</AUni> -<AUni ws="qvm-x-acl">wayna; waynä</AUni> -<AUni ws="qvm-x-akh">wayna; waynä</AUni> -<AUni ws="qvm-x-akl">wayna; waynä</AUni> -<AUni ws="qvm-x-ame">wayna; waynä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="6ff01bb4-47c9-4826-9532-4b7925f04489" ownerguid="8497fb66-8b91-46b9-a0d5-fb9385319561"> -<ExampleWords> -<AUni ws="en">sour, sharp, tart, tangy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words describe something that has a sour taste?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="6ff08c23-6ff3-430d-8d41-7e884b0ed3ff" ownerguid="ffd43dde-bdae-409a-9cf5-2b5ade3b7a57"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="8591a33b-96f2-41a5-888d-a8540b1dd54b" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">dirty</AUni> -<AUni ws="es">sucio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dc00e2bb-a4fd-4f96-b3ba-924f9bf234b3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="6ff0ee4c-2955-42fe-87a2-fd60eafe5ff8" ownerguid="6fe0cf64-0ad9-42ab-a418-64f6e1bbe68a"> -<Form> -<AUni ws="qvm-x-ach">capïtulu</AUni> -<AUni ws="qvm-x-acl">capïtulu; capïtulu; capïtulo</AUni> -<AUni ws="qvm-x-akh">capïtulu</AUni> -<AUni ws="qvm-x-akl">capïtulu; capïtulu; capïtulo</AUni> -<AUni ws="qvm-x-ame">capïtulu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="6ff2fc28-764b-410e-8042-3c920bb00e63" ownerguid="51fa1777-8f13-49c3-a309-354ebb1b5a14"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="WfiAnalysis" guid="6ff37bc8-20e8-4616-acb1-795443250355" ownerguid="f869a6c6-446c-4389-9e44-426ec5a3b530"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="d795e162-f3b6-4420-ac89-fd1a27861600" t="o" /> -<objsur guid="2af65c0d-e176-48d4-a80c-70a645124172" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="6ff438d7-c4b9-479e-bab9-f18c486e7233" ownerguid="08d3cb03-43fa-48d7-ad6b-05be6a953946"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="de80ca65-70c7-44a3-b550-aaf6f7ce4533" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="6ff56c07-4c3d-4eb0-9cd6-063f8e2e99dc" ownerguid="3a5918e6-cab9-4fde-bbcc-d65a0bb191d6"> -<Form> -<AUni ws="qvm-x-ach">compaña</AUni> -<AUni ws="qvm-x-acl">compaña</AUni> -<AUni ws="qvm-x-akh">compaña</AUni> -<AUni ws="qvm-x-akl">compaña</AUni> -<AUni ws="qvm-x-ame">compaña</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="6ff59e45-2e29-42fd-94c6-b4033ce2487a" ownerguid="23dc662b-3b24-4546-8b1c-14d8c041813c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">nettles</AUni> -<AUni ws="es">hortiga</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="81635412-aeae-48d7-9f0e-5ee43b1249fa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="6ffa80ef-8157-43c1-b9e5-3564ece26f98" ownerguid="bdc50987-5450-4385-a5ab-43970ecf866f"> -<Form> -<AUni ws="qvm-x-ach">rura</AUni> -<AUni ws="qvm-x-acl">rura</AUni> -<AUni ws="qvm-x-akh">rura</AUni> -<AUni ws="qvm-x-akl">rura</AUni> -<AUni ws="qvm-x-ame">rura</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="6ffe33fe-b49c-45c8-a50b-cd0065c0c869" ownerguid="080bf07b-e58b-4a75-bb97-84d980a143f0"> -<Abbreviation> -<AUni ws="en">8.3.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.599" /> -<DateModified val="2022-9-23 16:55:8.599" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a point--a small mark such as might be made by a pointed object.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Point, dot</AUni> -</Name> -<Questions> -<objsur guid="d7ac1e55-8c99-4a63-82cd-d7b5f00c4eef" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="7002a15a-d1b9-40b1-b746-af6950273652"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jiwa</AUni> -<AUni ws="qvm-x-acl">jiwa</AUni> -<AUni ws="qvm-x-akh">jiwa</AUni> -<AUni ws="qvm-x-akl">jiwa</AUni> -<AUni ws="qvm-x-ame">hiwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hiwa.v</AUni> -<AUni ws="qvm-x-acl">*hiwa.v</AUni> -<AUni ws="qvm-x-akh">*hiwa.v</AUni> -<AUni ws="qvm-x-akl">*hiwa.v</AUni> -<AUni ws="qvm-x-ame">*hiwa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.739" /> -<DateModified val="2022-10-10 21:19:47.697" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="45200d6b-d7a2-4d5f-8ffd-6864cf6dcfab" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hiwa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a4d4f914-68ed-45b2-8241-82ac30cd1623" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b1fd6378-0f32-452b-9274-60b4a79cd5b6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hiwa.v 
\entryTyp root 
\gENG scatter 
\gSPN 
\e *hiwa.v 
\c V1 
\ach jiwa 
\akh jiwa 
\acl jiwa 
\akl jiwa 
\ame hiwa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="700e2f53-62a4-4ac6-8f6f-1d592d86a233" ownerguid="ebd37f6f-573c-4328-a021-71b197bb0b85"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">disgust</AUni> -<AUni ws="es">disgusto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="96cc86f0-f5f3-4dec-980b-46557778a88f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="700f6012-c6ef-46cc-a252-abccdf14622e" ownerguid="8c2d4caf-fbe7-4901-a284-cf3ef41bdce3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">BN</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">Christ</AUni> -<AUni ws="es">Cristo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1ddbfa9c-17b7-455e-a365-15a0d196e10c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="70103093-32b1-4d23-9b66-e123581ea250" ownerguid="7eece01d-30fc-4448-aea7-e69d8871d160"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="70103b13-f5f0-48d4-8d4e-d6e0268967aa" ownerguid="ab80b556-2c7d-4e75-a58d-f5bb58b2feef"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="0fc7fac6-e4c8-4546-a8a9-41837f0b9ab0" t="o" /> -<objsur guid="055ca629-d3e1-419b-a8e3-3cb97078dc96" t="o" /> -<objsur guid="ee46eaab-b622-4bef-8cb6-3594014db673" t="o" /> -<objsur guid="17b2aa73-bbed-4202-9670-11b3f5263644" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="7015fa66-09c1-45a8-af36-418ec5aef3cb" ownerguid="c73f868b-a74a-4b28-ac3b-e09ffbe90b67"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cross.over</AUni> -<AUni ws="es">cruzar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="56fc3b44-b67a-4c18-b08b-5b3135fa9eb2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="70164474-a65b-4506-9953-f26afb6b497a" ownerguid="ff7e3abd-6810-4128-83c9-701b4925c2fe"> -<Abbreviation> -<AUni ws="en">5.5.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.337" /> -<DateModified val="2022-9-23 16:55:8.337" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for any place where fires are normally burned.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Fireplace</AUni> -</Name> -<Questions> -<objsur guid="8a013669-24b4-4ea5-82de-1f7680939193" t="o" /> -<objsur guid="d6192190-39af-4cf5-a45d-69fafeeadb9b" t="o" /> -<objsur guid="e26e8d00-4d41-428e-8a3e-d99df857a01e" t="o" /> -<objsur guid="dab86329-9eae-4506-adb8-7f6a779f13aa" t="o" /> -<objsur guid="f0d1d042-8257-4314-9c5a-3d2f8e269a1e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="70169d61-bc45-4823-a16f-b1ab206ce7a6" ownerguid="3cb83e74-a33e-4e2a-a375-45c3007c271e"> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="7018becf-e371-4613-8c37-5a1bc6faddfa" ownerguid="9f4cd8bd-f001-400f-b50a-e177f432aea8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.avenge</AUni> -<AUni ws="es">vengar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="46c1ce3d-5a11-40e7-a1ce-64b50b5c005a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="7019ab61-993e-4b4d-9e72-e2f4b8b27858"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aya</AUni> -<AUni ws="qvm-x-acl">aya</AUni> -<AUni ws="qvm-x-akh">aya</AUni> -<AUni ws="qvm-x-akl">aya</AUni> -<AUni ws="qvm-x-ame">aya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*saya.v</AUni> -<AUni ws="qvm-x-acl">*saya.v</AUni> -<AUni ws="qvm-x-akh">*saya.v</AUni> -<AUni ws="qvm-x-akl">*saya.v</AUni> -<AUni ws="qvm-x-ame">*saya.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.470" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b7234e42-09d2-40bd-bd1b-924d5d1acaef" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*saya.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="98edc57b-2399-4877-88cd-27d4b29642d3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="91f70f33-b214-444b-be15-03a262bde46d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *saya.v 
\entryTyp root 
\gENG 
\gSPN 
\e *saya.v 
\c V1 
\ach aya 
\akh aya 
\acl aya 
\akl aya 
\ame aya 
\i Micuyta ayapayculay. 
\i Micuyta ayaycuy. 
\mcc *saya.v / ~_ [q]</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="701acdeb-6452-4933-9a75-9822009e08b0" ownerguid="36e5b459-8650-4dd8-ba2a-4be624af35af"> -<Form> -<AUni ws="qvm-x-ach">lauchi</AUni> -<AUni ws="qvm-x-acl">lauchi; lauchi; lauche</AUni> -<AUni ws="qvm-x-akh">lawchi</AUni> -<AUni ws="qvm-x-akl">lawchi; lawchi; lawche</AUni> -<AUni ws="qvm-x-ame">lawchi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="701ce1cf-91d0-4f64-8cb0-b3b1ebedda36" ownerguid="f8f93501-e170-4336-9dce-cd19d186bb0c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">platform</AUni> -<AUni ws="es">plataforma</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6dc20c62-912e-40ac-9de3-97ea9f53a3b7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="701d28af-3a5f-4222-8f9c-50602e4bcf65" ownerguid="b14db9f4-5e1d-4a2b-bec0-0d6bcb5b1a31"> -<ExampleWords> -<AUni ws="en">sink slowly, float down, drift down, settle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to slowly falling?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="701d7cde-dff4-432a-8fc7-71486be83e89" ownerguid="dee448f2-5ef5-485a-87f8-b82e3b286bc7"> -<Form> -<AUni ws="qvm-x-ach">taugui</AUni> -<AUni ws="qvm-x-acl">taugui; taugue</AUni> -<AUni ws="qvm-x-akh">tawqi</AUni> -<AUni ws="qvm-x-akl">tawqi; tawqe</AUni> -<AUni ws="qvm-x-ame">tawqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="701e0606-b55e-442b-a403-054e495510c2" ownerguid="efef45bd-26be-46f8-b85b-424be55bcdac"> -<ExampleWords> -<AUni ws="en">new, brand new, fresh</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that has just been made?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="701f2e73-9bf6-41ba-868b-596432bfe710" ownerguid="07577951-6558-4c64-bafb-b0c6f4e28061"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.hungry</AUni> -<AUni ws="es">tener.hambre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fc69bcfe-568c-4b1c-b9fb-9d7b1b726bb1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="70201c11-1309-41f9-9cb9-955a2225eb94" ownerguid="9d9e2273-4ac9-4918-bb0c-8d503ed62821"> -<Form> -<AUni ws="qvm-x-ach">tagra</AUni> -<AUni ws="qvm-x-acl">tagra</AUni> -<AUni ws="qvm-x-akh">taqra</AUni> -<AUni ws="qvm-x-akl">taqra</AUni> -<AUni ws="qvm-x-ame">taqra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="70229141-c7cd-4263-959c-9c0b1514b70d" ownerguid="6545d219-5055-445e-b141-9a57907a923b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="f5adcbb9-5ba2-49f4-af03-91966719338b" t="o" /> -<objsur guid="03735d77-4f94-47ef-8c62-21ca6ff65e81" t="o" /> -<objsur guid="ccbf1b72-f116-4d90-92ca-964aec42546c" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiMorphBundle" guid="7023f417-dd4c-4655-a9c2-1faef01d2a8c" ownerguid="1faa4b42-bd79-4797-aa30-587d4773ce4e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -<Sense> -<objsur guid="1b926284-5562-4cf3-8ad2-65536a715093" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="7024bd01-afee-482a-8349-4843b9a7f2de" ownerguid="9b267cc1-983c-407a-98d2-1e27add6292c"> -<ExampleWords> -<AUni ws="en">bind tightly, cinch up, tighten, truss up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to tying something tightly?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="7028fa54-9921-4857-9f35-916a83256c34" ownerguid="1f4219f4-e1b2-410e-973c-88c97ff00be9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="702b8646-2448-4d0a-ae6f-3abbd3303b95" ownerguid="1fa683b9-78fd-4feb-9978-55d5953f38ec"> -<ExampleWords> -<AUni ws="en">course, syllabus, curriculum</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to all the subjects that you study at school?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="702cad2b-07e8-44fb-9161-7afd04dd938c" ownerguid="ca9c215a-e568-4d09-b3a9-b5727cd831d6"> -<ExampleWords> -<AUni ws="en">burial arrangements, wash (the body), wrap, anoint</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What steps are involved in preparing a body for burial?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="702da3e4-8e47-4662-a5cc-0136259adf09" ownerguid="3c602e0d-86f5-4b0a-8c5c-89f61df3cfa8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7030e221-a402-4383-beee-9607c2ce2981" ownerguid="447136bb-7611-4d4f-b7eb-82e985927aec"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="7032c3de-4c11-4511-9eed-ecf6975c49ef" ownerguid="7e4d4600-ace8-4a2d-bb36-b53463439321"> -<Form> -<AUni ws="qvm-x-ach">mandamientu</AUni> -<AUni ws="qvm-x-acl">mandamientu; mandamientu; mandamiento</AUni> -<AUni ws="qvm-x-akh">mandamientu</AUni> -<AUni ws="qvm-x-akl">mandamientu; mandamientu; mandamiento</AUni> -<AUni ws="qvm-x-ame">mandamientu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="70359949-7305-448a-9ef2-eb468425064f" ownerguid="67e57493-d286-4271-b877-f63f962dddf1"> -<ExampleWords> -<AUni ws="en">spacious, roomy, cavernous, be big inside</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a big room?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="70360a67-8070-4475-b108-deb91a682d9b" ownerguid="36b3cfb6-0fea-4628-aa8d-f9b7af48f436"> -<ExampleWords> -<AUni ws="en">chameleon, agama lizard, skink, gecko, monitor lizard, iguana</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What species of lizard are there?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="70361b53-d379-4601-96b7-39d0c39de125"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tuna</AUni> -<AUni ws="qvm-x-acl">tuna</AUni> -<AUni ws="qvm-x-akh">tuna</AUni> -<AUni ws="qvm-x-akl">tuna</AUni> -<AUni ws="qvm-x-ame">tuna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tuna</AUni> -<AUni ws="qvm-x-acl">*tuna</AUni> -<AUni ws="qvm-x-akh">*tuna</AUni> -<AUni ws="qvm-x-akl">*tuna</AUni> -<AUni ws="qvm-x-ame">*tuna</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.997" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d898a7bd-f81c-402c-92d3-ee9c92e922fb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tuna</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="def66cb9-f521-45ad-b853-36df2dd62d77" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fa8aa73d-3e1f-4915-8066-e8ba4efdf1c8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tuna 
\entryTyp root 
\gENG steep 
\gSPN pendiente 
\e *tuna 
\c N0 
\ach tuna 
\akh tuna 
\acl tuna 
\akl tuna 
\ame tuna</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="70362eed-8ff2-4529-82b6-18c105408a18" ownerguid="67bc7948-c7ae-4c0a-a341-1a58b6d3407e"> -<Form> -<AUni ws="qvm-x-ach">ichi</AUni> -<AUni ws="qvm-x-acl">ichi; iche</AUni> -<AUni ws="qvm-x-akh">ichi</AUni> -<AUni ws="qvm-x-akl">ichi; iche</AUni> -<AUni ws="qvm-x-ame">ichi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="703b72ec-ce56-460e-af9e-6175bf998908"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsun</AUni> -<AUni ws="qvm-x-acl">tsun</AUni> -<AUni ws="qvm-x-akh">tsun</AUni> -<AUni ws="qvm-x-akl">tsun</AUni> -<AUni ws="qvm-x-ame">tsun</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.609" /> -<DateModified val="2022-10-16 15:21:30.504" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3fc97a97-c581-4050-81ab-8ed49e3e23a0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">3IMP</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ab22b78d-96a6-42ee-ac4a-3910bcc0ce72" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d8c76a43-baa9-4f29-a2fb-a0c71f0c0d00" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx 3IMP 
\entryTyp suffix 
\gENG 3IMP 
\gSPN 3IMP 
\e 3IMP 
\c V1/V0 
\o 120 
\mp +FinalC 
\ach tsun 
\akh tsun 
\acl tsun 
\akl tsun 
\ame tsun</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="703c755a-40d2-4991-a863-a51d073505ed"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lushqui</AUni> -<AUni ws="qvm-x-acl">lushqui; lushque</AUni> -<AUni ws="qvm-x-akh">lushki</AUni> -<AUni ws="qvm-x-akl">lushki; lushke</AUni> -<AUni ws="qvm-x-ame">lushki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llushki.v</AUni> -<AUni ws="qvm-x-acl">*llushki.v</AUni> -<AUni ws="qvm-x-akh">*llushki.v</AUni> -<AUni ws="qvm-x-akl">*llushki.v</AUni> -<AUni ws="qvm-x-ame">*llushki.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.235" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="81f396e7-4a34-40ed-8192-6be2a51c2617" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llushki.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aee0f1f5-401c-4217-a542-06a80d4e363b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e9206e48-c0a0-4229-9014-81820ca35725" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llushki.v 
\entryTyp root 
\gENG 
\gSPN pelar 
\e *llushki.v 
\c V1 
\mp +FinalI 
\ach lushqui 
\akh lushki 
\acl lushqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lushque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lushki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lushke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lushki</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="703e29d6-fe69-4868-a202-7b91273c505c" ownerguid="3c703265-d19c-409a-aaa5-998654e5b1df"> -<Form> -<AUni ws="qvm-x-ach">tipsi</AUni> -<AUni ws="qvm-x-acl">tipsi; tipse</AUni> -<AUni ws="qvm-x-akh">tipsi</AUni> -<AUni ws="qvm-x-akl">tipsi; tipse</AUni> -<AUni ws="qvm-x-ame">tipsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="70452de9-2140-4d6d-99ae-4f141a2b507f" ownerguid="322f07ab-d63c-4860-ba89-e505889d8bdb"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="5f02284f-8fcd-475c-bd53-186219a5a60f" t="o" /> -<objsur guid="e59c5a6f-960d-407b-b6b7-42e84e71b59e" t="o" /> -<objsur guid="d2d635f7-82c2-4253-84b3-cfb449802e6d" t="o" /> -<objsur guid="ee81b957-535a-41b4-86fd-61f7c66b4e4b" t="o" /> -<objsur guid="008943a3-1acc-427a-b077-3e6f51378c5c" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="70467cd6-9dfe-4493-9ad2-4ee2722f256f" ownerguid="0daa9e0b-5da2-4c04-808b-3fe1f215d9c5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="70483e4f-489f-4480-b327-187b4c9493cf" ownerguid="f6e416b3-50b1-4e48-8a39-2998725b1c79"> -<ExampleWords> -<AUni ws="en">get custody, alimony</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words indicate who keeps the children?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="704a82a0-0783-4ccc-b07c-e21cafe9117e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">juknira; juknira:</AUni> -<AUni ws="qvm-x-acl">juknira; juknira:</AUni> -<AUni ws="qvm-x-akh">juknira; juknira:</AUni> -<AUni ws="qvm-x-akl">juknira; juknira:</AUni> -<AUni ws="qvm-x-ame">huknira; huknira:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*huknira:</AUni> -<AUni ws="qvm-x-acl">*huknira:</AUni> -<AUni ws="qvm-x-akh">*huknira:</AUni> -<AUni ws="qvm-x-akl">*huknira:</AUni> -<AUni ws="qvm-x-ame">*huknira:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.751" /> -<DateModified val="2022-10-10 21:19:47.697" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="59b12fe9-8d00-42f0-b3ec-dd72bc2e91b0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*huknira:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4723eec6-0c51-4724-b82c-fca363964ee4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="683807c1-9090-4330-beb4-c368a2bfae90" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *huknira: 
\entryTyp root 
\gENG become.different 
\gSPN 
\e *huknira: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach juknira foreshortened 
\ach juknira: 
\akh juknira foreshortened 
\akh juknira: 
\acl juknira foreshortened 
\acl juknira: 
\akl juknira foreshortened 
\akl juknira: 
\ame huknira foreshortened 
\ame huknira:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="704c913f-781a-46cb-ab19-e67c655078b3" ownerguid="3a5918e6-cab9-4fde-bbcc-d65a0bb191d6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="96ca3c3e-8b4d-46ba-81b6-bb663145713f" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">accompany</AUni> -<AUni ws="es">acompañar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b554a305-4f76-472b-a0d7-55025daf05d7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="70504187-07d5-4cb2-a51a-f889adb4bd5a" ownerguid="a5e0766b-516a-47b8-a4ac-f41a36792b2f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="7050b964-4476-4828-9abe-45e05ce374b7" ownerguid="df45abe8-d148-4729-afff-c7a0c4608128"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="1c1ca5bf-75b8-48e8-a459-22b6ef7c5efc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="70523557-5d4c-45a0-96e5-ba315a1ef609"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">atie:ni</AUni> -<AUni ws="qvm-x-acl">atie:ni; atie:ne</AUni> -<AUni ws="qvm-x-akh">atie:ni</AUni> -<AUni ws="qvm-x-akl">atie:ni; atie:ne</AUni> -<AUni ws="qvm-x-ame">atie:ni</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+atener</AUni> -<AUni ws="qvm-x-acl">+atener</AUni> -<AUni ws="qvm-x-akh">+atener</AUni> -<AUni ws="qvm-x-akl">+atener</AUni> -<AUni ws="qvm-x-ame">+atener</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.860" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="23241b4a-cc88-4181-a44a-59552310ad8c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+atener</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="36ad1a45-361d-4f24-a8b6-a07db85f2536" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2a769b25-7b6b-44c5-8566-40470c6a3966" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +atener 
\entryTyp root 
\gENG depend.on 
\gSPN atenerse 
\e +atener 
\c V2 
\mp +FinalI 
\ach atie:ni 
\akh atie:ni 
\acl atie:ni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl atie:ne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl atie:ni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl atie:ne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame atie:ni</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="705974df-727d-43eb-b37d-2d298ef3e25f" ownerguid="3ee8fa9d-8c04-445c-ad78-d15f56ac2a93"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">clean</AUni> -<AUni ws="es">limpiar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="38c9e629-28ac-43da-8657-4c9dbe7a8496" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="705a7220-3596-42e1-a5c2-924648dc8be6" ownerguid="17d5f429-6550-4a3a-a755-5ac3c3d7e04f"> -<ExampleWords> -<AUni ws="en">wallow, hunting grounds, watering hole, pasture, range, trail</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What other places do mammals use?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="705c4bb9-4fe7-4731-a06b-1ed4b80ec5fd" ownerguid="6bfb7813-3a7d-47e2-88e1-d54034c07e5d"> -<ExampleWords> -<AUni ws="en">take someone's advice, follow someone's advice, listen to advice, act on someone's advice, accept advice, adopt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to doing what someone advises?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="70600a78-96fb-4d06-a07e-7755cb589f39" ownerguid="c60cf6a1-7868-4536-ac73-387bfa26e04b"> -<ExampleWords> -<AUni ws="en">rebel, revolt, resist, rise up, rise against, mutiny, overthrow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to rebelling against authority?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7061c169-ef57-4ae3-9ffd-fb5d3e4cc1e9" ownerguid="0ced5b87-390a-4e15-85ea-b66c5cd0dce3"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="7062c6c9-1cc9-4176-abd5-b6bd233872fc" ownerguid="d47a79d3-f893-4883-91a2-945fda565990"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="548c9396-abfc-4095-9351-b2f86cf095e7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="70680dec-9c77-43fe-b6ea-1a0bee91dce0" ownerguid="32fc19fd-a04e-4b69-9442-f7d57348ec55"> -<ExampleWords> -<AUni ws="en">ox, steer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a castrated bull?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="70686339-dc70-4cf6-8493-b62910818049" ownerguid="f38f8344-838f-44ba-b103-22289c2d2793"> -<ExampleWords> -<AUni ws="en">soak, drench, saturate, flood, swamp, deluge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to making something very wet?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="706c3e39-b9c3-49c5-90dd-74d8c6288441" ownerguid="08dc3991-7d1d-4666-af5c-df84b79de3ec"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="76f935a5-a22d-4380-ab55-8507b7d15dc7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="706cb38c-9aca-4e2f-9653-d9562f07331c" ownerguid="080bf07b-e58b-4a75-bb97-84d980a143f0"> -<Abbreviation> -<AUni ws="en">8.3.1.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.609" /> -<DateModified val="2022-9-23 16:55:8.609" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that refer to a pattern--a regular arrangement of shapes.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Pattern, design</AUni> -</Name> -<Questions> -<objsur guid="9d1228b1-3fc3-4a70-8986-64e17e60a1f6" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="45b7dcce-21d5-4738-a64d-e8b0be8a1824" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="706e613d-ebe3-44a2-9d3c-5eb7816eff72" ownerguid="5af67a6a-6f24-49b5-b2d6-a4271cc7f14a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">glisten</AUni> -<AUni ws="es">brillar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="87f68ae3-e8a8-4e6f-b72c-437f4d3d060e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="706f0071-a90c-4cae-9beb-3292bfc7b96d" ownerguid="a894d991-d5da-45a6-9c62-009133257f36"> -<ExampleWords> -<AUni ws="en">dizzy, dizziness, feel faint</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to feeling dizzy or faint?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="70708d98-c14f-4796-98db-50672b023e91"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jarru; jarro</AUni> -<AUni ws="qvm-x-acl">jarru; jarru; jarro</AUni> -<AUni ws="qvm-x-akh">jarru; jarro</AUni> -<AUni ws="qvm-x-akl">jarru; jarru; jarro</AUni> -<AUni ws="qvm-x-ame">jarru; jarro</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+jarro</AUni> -<AUni ws="qvm-x-acl">+jarro</AUni> -<AUni ws="qvm-x-akh">+jarro</AUni> -<AUni ws="qvm-x-akl">+jarro</AUni> -<AUni ws="qvm-x-ame">+jarro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.882" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e7ea0adc-fb92-4c25-ac01-34c98b005c6c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+jarro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a287c9ec-d8d7-4263-97bf-f5370d3b58ee" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="56f2f0b3-a20d-498d-be8b-1ee89f05f192" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +jarro 
\entryTyp root 
\gENG 
\gSPN 
\e +jarro 
\c N0 
\ach jarru / ~_# 
\ach jarro / _# 
\akh jarru / ~_# 
\akh jarro / _# 
\acl jarru / ~_# 
\acl jarru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl jarro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jarru / ~_# 
\akl jarru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl jarro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame jarru / ~_# 
\ame jarro / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7072bdd3-344c-478a-a27e-ec34459f3bbb" ownerguid="bdaecf2f-d0fa-49f7-891e-bcb0a31ae630"> -<ExampleWords> -<AUni ws="en">after, within, in, from now</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something happens after a certain period of time?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="707433b2-1fff-4a83-87fe-5dbe0c48c2fd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chamcha; chamsha</AUni> -<AUni ws="qvm-x-acl">chamcha; chamsha</AUni> -<AUni ws="qvm-x-akh">chamcha; chamsha</AUni> -<AUni ws="qvm-x-akl">chamcha; chamsha</AUni> -<AUni ws="qvm-x-ame">chamcha; chamsha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chamcha</AUni> -<AUni ws="qvm-x-acl">*chamcha</AUni> -<AUni ws="qvm-x-akh">*chamcha</AUni> -<AUni ws="qvm-x-akl">*chamcha</AUni> -<AUni ws="qvm-x-ame">*chamcha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.274" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="37d6a83e-42e7-4a31-9f83-15c9a0dd500b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chamcha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d24d241c-8e02-4855-bdfa-10d44443e014" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1c52bec7-6057-48ab-94c1-3d3a8e5579d0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chamcha 
\entryTyp root 
\gENG 
\gSPN moler 
\e *chamcha 
\c V2 
\cm *** ch *** 
\ach chamcha 
\ach chamsha 
\cm *** kh *** 
\akh chamcha 
\akh chamsha 
\cm *** cl *** 
\acl chamcha 
\acl chamsha 
\cm *** kl *** 
\akl chamcha 
\akl chamsha 
\cm *** me *** 
\ame chamcha 
\ame chamsha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="707688ae-ab06-409e-92b5-dc91a4716aea" ownerguid="e9cafabe-f0f7-4142-a6f6-d1c94bdc4b5c"> -<ExampleWords> -<AUni ws="en">empty, bare, deserted, desolate, ghost town, wasteland, uninhabited, lonely, vacant, free, unoccupied</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a place that has no people in it?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="7079b575-fbc0-4617-8252-2500fc0229e4" ownerguid="ee54069f-0234-4db0-a227-e7fa5470c4f5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ta</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ta</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ta</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ta</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ta</Run> -</AStr> -</Form> -<Morph> -<objsur guid="4f3f1430-f126-405a-98a8-5d0b732eb948" t="r" /> -</Morph> -<Msa> -<objsur guid="eac932ef-fd79-454b-b2f7-95e85dbb829a" t="r" /> -</Msa> -<Sense> -<objsur guid="043eec5a-5d9b-4292-877e-68d1d35e7f30" t="r" /> -</Sense> -</rt> -<rt class="WfiMorphBundle" guid="707ec89b-63d7-4303-ba42-4772dcfae9ec" ownerguid="319b7245-2c99-422b-a23e-d33810811ef9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="708152e0-9019-460e-88a8-8227505806e8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fre:nu</AUni> -<AUni ws="qvm-x-acl">fre:nu; fre:nu; fre:no</AUni> -<AUni ws="qvm-x-akh">fre:nu</AUni> -<AUni ws="qvm-x-akl">fre:nu; fre:nu; fre:no</AUni> -<AUni ws="qvm-x-ame">fre:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+freno</AUni> -<AUni ws="qvm-x-acl">+freno</AUni> -<AUni ws="qvm-x-akh">+freno</AUni> -<AUni ws="qvm-x-akl">+freno</AUni> -<AUni ws="qvm-x-ame">+freno</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.587" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="58be5421-287e-48eb-8913-6188b6c39322" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+freno</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bb36bac5-ad5e-45e1-928c-2fc33d2ef566" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4153d589-c7d8-4c4f-8066-55e0fbbeb0ec" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +freno 
\entryTyp root 
\gENG bit 
\gSPN freno 
\e +freno 
\c N0 
\ach fre:nu 
\akh fre:nu 
\acl fre:nu / _# 
\acl fre:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl fre:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl fre:nu / _# 
\akl fre:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl fre:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame fre:nu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7081a0f5-4513-4a10-9fe5-a53cb8cc3c42" ownerguid="b7ed2482-6883-4a02-a992-e86c2573cc74"> -<ExampleWords> -<AUni ws="en">put, place, position, post</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to putting something somewhere?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="7085a8cd-3b11-4ca9-92e1-f1b0e0d51118" ownerguid="c90a7953-b33f-41f6-878d-d9c0be980bbe"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 3.21 Tsauraga riccharcamur chuchunäpäga wanushga wamralana oglanëcho caycashga.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="7089f32e-5c4d-4a28-ab45-0bbaa78b2043" ownerguid="3ef84bc3-3210-4f61-b8dd-c509821e7984"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">goat</AUni> -<AUni ws="es">chivo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="633d3e03-c114-4e59-a49f-c01fcb951bb9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="708ecb7c-6247-4a4b-84ba-f6b25c4f027f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rambu</AUni> -<AUni ws="qvm-x-acl">rambu; rambu; rambo</AUni> -<AUni ws="qvm-x-akh">rambu</AUni> -<AUni ws="qvm-x-akl">rambu; rambu; rambo</AUni> -<AUni ws="qvm-x-ame">rambu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rambu</AUni> -<AUni ws="qvm-x-acl">*rambu</AUni> -<AUni ws="qvm-x-akh">*rambu</AUni> -<AUni ws="qvm-x-akl">*rambu</AUni> -<AUni ws="qvm-x-ame">*rambu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.246" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="888f8d4d-3ffe-4ff0-94e3-8caac4756a8a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rambu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5aef87aa-4ff2-467e-91e2-fe4ab02b4fa6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5cd03601-affa-4236-b9f8-3fd5959056c6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rambu 
\entryTyp root 
\gENG sheep 
\gSPN oveja 
\e *rambu 
\c N0 
\ach rambu 
\akh rambu 
\acl rambu / _# 
\acl rambu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl rambo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rambu / _# 
\akl rambu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl rambo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame rambu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="7092330d-1a9b-4d9f-b1d4-64398fec445c" ownerguid="668e695e-18fe-4375-896b-f24519cd2b71"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="70953222-5bc5-4fa2-a85a-01827f7bc537" ownerguid="6f01b67c-33a0-4ed3-8205-f868e97a1a3a"> -<Abbreviation> -<AUni ws="en">7.2.4.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.518" /> -<DateModified val="2022-9-23 16:55:8.518" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the way or route that you take to go somewhere.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Way, route</AUni> -</Name> -<Questions> -<objsur guid="527d1d96-f962-4316-865c-56f6e88fbc31" t="o" /> -<objsur guid="f15501a5-bcb5-4146-8bf0-17bdd0924155" t="o" /> -<objsur guid="33d60b1d-438b-4c7f-a4bb-9eb1e75a6b27" t="o" /> -<objsur guid="572b8273-0805-45dd-ae61-9457090f343b" t="o" /> -<objsur guid="122b4df0-8ae3-4b05-8b1d-df7626d6fe51" t="o" /> -<objsur guid="bdd27055-7516-4659-9f5a-3a3b104c4ab0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="70958988-2990-4aa4-b0bf-49e4124ab0f9" ownerguid="9e98c76f-6c1c-4b7d-8f71-38f9f0e8750e"> -<ExampleWords> -<AUni ws="en">weed (v), hoe weeds, weed killer, herbicide, rake weeds, weed carelessly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to uprooting weeds?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="70963c34-dd34-40c2-bb21-e9cea73c7923" ownerguid="85214614-ab45-4805-9014-092750d47511"> -<Abbreviation> -<AUni ws="en">4.7.5.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to dropping legal charges against someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Drop charges</AUni> -</Name> -<Questions> -<objsur guid="e5839fbf-58f3-4fee-b803-48fffd6fcf7e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="7096c8ce-453c-4ca3-a038-b2413d7d39c9" ownerguid="1067e24c-275e-4e12-8cec-fca35e7c5260"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">go.ahead</AUni> -<AUni ws="es">adelantarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9f57522a-321d-4142-a7d2-dd53837ce246" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="7096da32-2828-4992-8f07-e4bced3312a0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">macha</AUni> -<AUni ws="qvm-x-acl">macha</AUni> -<AUni ws="qvm-x-akh">macha</AUni> -<AUni ws="qvm-x-akl">macha</AUni> -<AUni ws="qvm-x-ame">macha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*matra.os</AUni> -<AUni ws="qvm-x-acl">*matra.os</AUni> -<AUni ws="qvm-x-akh">*matra.os</AUni> -<AUni ws="qvm-x-akl">*matra.os</AUni> -<AUni ws="qvm-x-ame">*matra.os</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.366" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="35b0bc44-8268-4507-b094-d94566452bc1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*matra.os</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6ab8b4a2-0448-488e-8324-914b61381f5d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="032f5e4a-e5e4-4935-8c05-8ff05927e7ec" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *matra.os 
\entryTyp root 
\gENG 
\gSPN uva 
\e *matra.os 
\c ONSHEV 
\ach macha 
\akh macha 
\acl macha 
\akl macha 
\ame macha</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="709a3771-e459-4b5e-a8af-3ca0f9ccdf3d" ownerguid="ff3d89de-92db-4eb1-ab00-4f9a92720e16"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="709b08c2-4066-47f7-8d38-e1838bba27d6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">padri:llu</AUni> -<AUni ws="qvm-x-acl">padri:llu; padri:llu; padri:llo</AUni> -<AUni ws="qvm-x-akh">padri:llu</AUni> -<AUni ws="qvm-x-akl">padri:llu; padri:llu; padri:llo</AUni> -<AUni ws="qvm-x-ame">padri:llu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+padrillo</AUni> -<AUni ws="qvm-x-acl">+padrillo</AUni> -<AUni ws="qvm-x-akh">+padrillo</AUni> -<AUni ws="qvm-x-akl">+padrillo</AUni> -<AUni ws="qvm-x-ame">+padrillo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.648" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0b825943-6aab-4238-a244-7ffa3dae75a3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+padrillo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9220a21e-e740-4656-8406-c65cda0a1ab3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="694268d3-d361-4fb2-bf30-4959248b48f9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +padrillo 
\entryTyp root 
\gENG breeder 
\gSPN animal.semental 
\e +padrillo 
\c N0 
\ach padri:llu 
\akh padri:llu 
\acl padri:llu / _# 
\acl padri:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl padri:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl padri:llu / _# 
\akl padri:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl padri:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame padri:llu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="709d43dd-ce94-4df1-91b1-edb0b12fdaea" ownerguid="66d8b546-92f5-4e94-b992-08be81c3d30c"> -<Abbreviation> -<AUni ws="en">7.7.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.549" /> -<DateModified val="2022-9-23 16:55:8.549" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to rubbing--to move something smooth against something else, in order to make it smooth or clean.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Rub</AUni> -</Name> -<Questions> -<objsur guid="6a9a96a1-5164-4ee2-a719-a4b09c8bc08f" t="o" /> -<objsur guid="b1c11e8f-b65b-4a74-9641-fda636460b45" t="o" /> -<objsur guid="a694ffa8-f4be-4681-87b5-4fff84db6dd0" t="o" /> -<objsur guid="146f21d3-3847-4e10-abb7-9ac76543c72e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmAgentEvaluation" guid="70a39b4b-662d-47c5-a9de-e7b5988b7f55" ownerguid="9303883a-ad5c-4ccf-97a5-4add391f8dcb" /> -<rt class="CmDomainQ" guid="70a4a894-d24d-4e98-8f00-77c32ec51e5a" ownerguid="1bd42665-0610-4442-8d8d-7c666fee3a6d"> -<ExampleWords> -<AUni ws="en">moon is shining, by the light of the moon, moon is/comes out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to when the moon is shining?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="70a6cd7e-07a4-46ad-a024-abeea60f18c4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsicya</AUni> -<AUni ws="qvm-x-acl">tsicya</AUni> -<AUni ws="qvm-x-akh">tsikya</AUni> -<AUni ws="qvm-x-akl">tsikya</AUni> -<AUni ws="qvm-x-ame">tsikya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+acequia.2</AUni> -<AUni ws="qvm-x-acl">+acequia.2</AUni> -<AUni ws="qvm-x-akh">+acequia.2</AUni> -<AUni ws="qvm-x-akl">+acequia.2</AUni> -<AUni ws="qvm-x-ame">+acequia.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.629" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0921ec57-9e52-417e-9ff2-18bf19d7a63b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+acequia.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0ad66850-22f0-4387-9656-c3ff1761f437" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="03a1d88b-2d61-479d-bc5f-dc8a004f7e67" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +acequia.2 
\entryTyp root 
\gENG 
\gSPN 
\e +acequia.2 
\c N0 
\mp +assimilated KQWchange 
\ach tsicya 
\akh tsikya 
\acl tsicya 
\akl tsikya 
\ame tsikya</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="70a8aca5-a421-41d0-ae69-e9fdbd82f7ce" ownerguid="1fda1a3b-a0e6-4384-8150-d8f0b354e1cb"> -<Form> -<AUni ws="qvm-x-ach">cäma</AUni> -<AUni ws="qvm-x-acl">cäma</AUni> -<AUni ws="qvm-x-akh">cäma</AUni> -<AUni ws="qvm-x-akl">cäma</AUni> -<AUni ws="qvm-x-ame">cäma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="70a8cc54-0a57-441c-916f-0e5394f46c56"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">auna</AUni> -<AUni ws="qvm-x-acl">auna</AUni> -<AUni ws="qvm-x-akh">awna</AUni> -<AUni ws="qvm-x-akl">awna</AUni> -<AUni ws="qvm-x-ame">awna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*awña</AUni> -<AUni ws="qvm-x-acl">*awña</AUni> -<AUni ws="qvm-x-akh">*awña</AUni> -<AUni ws="qvm-x-akl">*awña</AUni> -<AUni ws="qvm-x-ame">*awña</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.890" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f5e0649b-4868-4630-a4d9-5cf75b93e9b9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*awña</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="83973d59-8e5b-4c43-86dc-f51a02046a83" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="13f1d37e-e331-4dcb-adf5-0638b9bbb12e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *awña 
\entryTyp root 
\gENG float 
\gSPN flotar 
\e *awña 
\c V1 
\ach auna 
\akh awna 
\acl auna 
\akl awna 
\ame awna</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="70ab21b3-4ad0-455a-a20e-ed7e8bb85c02" ownerguid="243d8a57-d5ed-4d7f-bd5e-f2605634f0fc"> -<ExampleWords> -<AUni ws="en">defend, come to someone's defense, in defense of, in someone's defense, guard, protect, safeguard, shield, stand up for, stick up for</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to defending someone from attack?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="70ad8542-1ff9-4e21-ab35-5fa67e1269b5" ownerguid="11e20d5e-801e-4971-8906-04cea1e96137"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 16.26 Pachan gaululönanta mana munarmi arucun.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="70b725f6-95fa-4d91-bb93-f54143630811" ownerguid="1ef4f624-13c2-4b63-b151-4e74f4ec307c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stunted.child</AUni> -<AUni ws="es">niño.desnutrido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d737317c-6eae-4f8a-82ff-3eb7b5b000b6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="70b74362-a616-471c-b197-ae5c89792222"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Noqata</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="70b891d6-9735-4ed6-9dc4-22e8f9781e6e" ownerguid="84eb31d3-b932-4b3b-b945-85884ea856c7"> -<ExampleWords> -<AUni ws="en">ought to be, should be, promise to be, looks promising</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that something good will probably happen?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="70b8dfd5-ef8f-4925-a018-cc316e0ff1fd" ownerguid="92590b7e-55ca-4c96-8288-78f14e25a2a8"> -<Form> -<AUni ws="qvm-x-ach">calabäza</AUni> -<AUni ws="qvm-x-acl">calabäza</AUni> -<AUni ws="qvm-x-akh">calabäza</AUni> -<AUni ws="qvm-x-akl">calabäza</AUni> -<AUni ws="qvm-x-ame">calabäza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="70bd2050-520d-45ba-b701-edd7740a18bb" ownerguid="ec97ede4-0162-478e-be56-0e3f4b1f975a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="70bf4aaa-4f1d-457a-9739-51dfdfc500a0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">flauta</AUni> -<AUni ws="qvm-x-acl">flauta</AUni> -<AUni ws="qvm-x-akh">flauta</AUni> -<AUni ws="qvm-x-akl">flauta</AUni> -<AUni ws="qvm-x-ame">flauta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+flauta</AUni> -<AUni ws="qvm-x-acl">+flauta</AUni> -<AUni ws="qvm-x-akh">+flauta</AUni> -<AUni ws="qvm-x-akl">+flauta</AUni> -<AUni ws="qvm-x-ame">+flauta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.568" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ede73ac3-76ed-4404-8522-1e500d781e51" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+flauta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ff5f4734-2c7c-42d4-bd26-41d4e52e68bc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="21387cd0-102f-4acc-9f2e-df93dd5afddd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +flauta 
\entryTyp root 
\gENG 
\gSPN 
\e +flauta 
\c N0 
\ach flauta 
\akh flauta 
\acl flauta 
\akl flauta 
\ame flauta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmPossibility" guid="70c0a758-5901-4884-b992-94ca31087607" ownerguid="48a4eaed-2ae3-4c81-8c9c-f79f2f3a1455"> -<Abbreviation> -<AUni ws="en">Main</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Main Dictionary</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmAgentEvaluation" guid="70c0b09c-1699-4019-bee2-c02d6d95f7d9" ownerguid="5093d7d7-4f18-4aad-8c86-88389476df15" /> -<rt class="MoStemAllomorph" guid="70c1870e-dba7-4027-9aaa-9deeb1bbf394" ownerguid="822c9440-9d4e-4aba-9fd7-5c0365dab711"> -<Form> -<AUni ws="qvm-x-ach">wancu</AUni> -<AUni ws="qvm-x-acl">wancu; wanco</AUni> -<AUni ws="qvm-x-akh">wanku</AUni> -<AUni ws="qvm-x-akl">wanku; wanko</AUni> -<AUni ws="qvm-x-ame">wanku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="70c293f1-7800-408d-9749-070deebd36a1" ownerguid="66d91dc1-b4a4-4d05-a65b-d747dad3b1f7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="70c6dcab-db0d-45f4-aa98-712513bffa4a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">salpi</AUni> -<AUni ws="qvm-x-acl">salpi; salpe</AUni> -<AUni ws="qvm-x-akh">salpi</AUni> -<AUni ws="qvm-x-akl">salpi; salpe</AUni> -<AUni ws="qvm-x-ame">salpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*sallpi</AUni> -<AUni ws="qvm-x-acl">*sallpi</AUni> -<AUni ws="qvm-x-akh">*sallpi</AUni> -<AUni ws="qvm-x-akl">*sallpi</AUni> -<AUni ws="qvm-x-ame">*sallpi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.439" /> -<DateModified val="2022-10-10 21:19:47.691" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aa08d5ca-3ea8-4e38-8d52-95e1146b6496" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*sallpi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="da32de86-4116-4d61-9853-25ca71d1c90f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8368d145-24df-4a76-838e-b5d25c25a907" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *sallpi 
\entryTyp root 
\gENG spray 
\gSPN 
\e *sallpi 
\c V1 
\mp +FinalI 
\ach salpi 
\akh salpi 
\acl salpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl salpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl salpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl salpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame salpi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="70c883d4-2a7d-402f-b160-f97a7201efe8" ownerguid="c5446904-b898-49e7-afc9-90bcbf4ad155"> -<Form> -<AUni ws="qvm-x-ach">jatu</AUni> -<AUni ws="qvm-x-acl">jatu; jatu; jato</AUni> -<AUni ws="qvm-x-akh">jatu</AUni> -<AUni ws="qvm-x-akl">jatu; jatu; jato</AUni> -<AUni ws="qvm-x-ame">hatu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="70c8cd2d-f90f-45ff-a376-67afebda4a11" ownerguid="d37e95fa-2e8b-4178-b490-235c0ab4bcab"> -<Form> -<AUni ws="qvm-x-ach">wayta</AUni> -<AUni ws="qvm-x-acl">wayta</AUni> -<AUni ws="qvm-x-akh">wayta</AUni> -<AUni ws="qvm-x-akl">wayta</AUni> -<AUni ws="qvm-x-ame">wayta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="70ca42b2-0ad6-405d-8c80-efd12f4b8d75" ownerguid="8439c4da-3e3a-4949-9ea2-56c9fef05b83"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="70ca5573-6220-4541-8000-4b492661fe90" ownerguid="16de6eab-afab-4ba4-a279-cf0ba4d7c9e6"> -<ExampleWords> -<AUni ws="en">russet, bay, palomino, sable, tortoise-shell</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to describe the coloring of an animal?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="70ca88fe-14e0-413d-8f22-217883822c95" ownerguid="6d2abbb5-eb19-49f9-9063-5668b43b600f"> -<Form> -<AUni ws="qvm-x-ach">hectaria</AUni> -<AUni ws="qvm-x-acl">hectaria</AUni> -<AUni ws="qvm-x-akh">hectaria</AUni> -<AUni ws="qvm-x-akl">hectaria</AUni> -<AUni ws="qvm-x-ame">hectaria</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="70cc5ef4-371d-4268-a415-0a828f540ccb" ownerguid="693537bc-0068-462d-95c6-ae472cd08830"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="70cdccd7-0629-41d0-8a3f-6ca745450e1b" ownerguid="803911f4-d3d8-4771-8d51-fa2bda3d5978"> -<Form> -<AUni ws="qvm-x-ach">ogui</AUni> -<AUni ws="qvm-x-acl">ogui; ogue</AUni> -<AUni ws="qvm-x-akh">oqi</AUni> -<AUni ws="qvm-x-akl">oqi; oqe</AUni> -<AUni ws="qvm-x-ame">uqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="70cecfb2-2968-4408-8e95-950dbd49d11c" ownerguid="f79a1999-42df-440c-9521-c0e75f3e2d2d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="70cf9119-57be-4075-a063-a1b52a985348" ownerguid="ab127348-7f98-43e5-801d-01241ecdb517"> -<ExampleWords> -<AUni ws="en">drop, let fall, slip through your fingers, slip out of your hand</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to letting something drop?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="70d57e02-8751-4574-b1ac-7c0ea2f07724" ownerguid="87db1257-496d-49ec-abf5-2ef8c71cb210"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="70d698ec-d542-49b9-9066-9801c43cddba" ownerguid="f7e5fd2f-8764-4308-b739-94de05ec7041"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="70d79283-bee9-4e04-825b-ab9a7afe36c1" ownerguid="3ec38ec1-2665-4697-a56b-a5662620a8a1"> -<Form> -<AUni ws="qvm-x-ach">mäpa</AUni> -<AUni ws="qvm-x-acl">mäpa</AUni> -<AUni ws="qvm-x-akh">mäpa</AUni> -<AUni ws="qvm-x-akl">mäpa</AUni> -<AUni ws="qvm-x-ame">mäpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="70d7ce49-6335-4c83-a0a8-4f172dc4bdd7" ownerguid="cc06d120-fce8-4587-a4b7-9bbef3677d3c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="70df1369-a1ab-4c20-af03-6ca913864b5c" ownerguid="22e860df-d66b-4d71-9367-cfb5a9fdf09b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 25.9 Contrayqui sharcog runawan rimanacurpis cuidädu pipis confianza wilapäshushgayquita parlaycanquiman.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="70df399d-c45a-4a4e-b358-92239e830833" ownerguid="b8607306-f586-4f9d-83a3-3250c0ee2100"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="45bdf85a-69d5-4df3-bd75-00c024807a00" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="70e1006e-2895-4a9e-b2a7-a0816d7ef2ba" ownerguid="4698e532-c598-4164-95b4-0a6c99ae4a7b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="254013ed-578a-4494-9f16-c9f53b2fd949" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">bin</AUni> -<AUni ws="es">droja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="38096588-e644-45fe-ad0f-e11aca4d8951" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="70e2867f-a306-48e2-8bef-1308c97b7c35"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">calave:ra</AUni> -<AUni ws="qvm-x-acl">calave:ra</AUni> -<AUni ws="qvm-x-akh">calave:ra</AUni> -<AUni ws="qvm-x-akl">calave:ra</AUni> -<AUni ws="qvm-x-ame">calave:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+calavera</AUni> -<AUni ws="qvm-x-acl">+calavera</AUni> -<AUni ws="qvm-x-akh">+calavera</AUni> -<AUni ws="qvm-x-akl">+calavera</AUni> -<AUni ws="qvm-x-ame">+calavera</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.210" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="979b4501-7a02-4d68-8107-b3f4fbc9e79c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+calavera</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="196cf46a-00a8-4e9d-9162-721a3dc56067" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9ec06467-087d-4fdc-ba57-25a2a454cf37" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +calavera 
\entryTyp root 
\gENG skull 
\gSPN calavera 
\e +calavera 
\c N0 
\ach calave:ra 
\akh calave:ra 
\acl calave:ra 
\akl calave:ra 
\ame calave:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="70e2d960-8053-46de-9e06-6bf44dd1e73d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tranqui:lu</AUni> -<AUni ws="qvm-x-acl">tranqui:lu; tranqui:lu; tranqui:lo</AUni> -<AUni ws="qvm-x-akh">tranqui:lu</AUni> -<AUni ws="qvm-x-akl">tranqui:lu; tranqui:lu; tranqui:lo</AUni> -<AUni ws="qvm-x-ame">tranqui:lu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tranquilo</AUni> -<AUni ws="qvm-x-acl">+tranquilo</AUni> -<AUni ws="qvm-x-akh">+tranquilo</AUni> -<AUni ws="qvm-x-akl">+tranquilo</AUni> -<AUni ws="qvm-x-ame">+tranquilo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.680" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b48c99c7-f85e-4210-a190-7ae8a9bf1718" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tranquilo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ad4de49d-b604-4574-bd16-b9470424f896" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="55886710-655e-45c5-b5fe-492dea7b561a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tranquilo 
\entryTyp root 
\gENG calmly 
\gSPN pacfficamente 
\e +tranquilo 
\c N0 
\ach tranqui:lu 
\akh tranqui:lu 
\acl tranqui:lu / _# 
\acl tranqui:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tranqui:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tranqui:lu / _# 
\akl tranqui:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tranqui:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tranqui:lu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="70e5956d-a941-40d5-8864-0acd8290179a" ownerguid="1a6588a1-08cd-4e67-9e1b-f4af3944322a"> -<Form> -<AUni ws="qvm-x-ach">chuclus</AUni> -<AUni ws="qvm-x-acl">chuclus</AUni> -<AUni ws="qvm-x-akh">chuklus</AUni> -<AUni ws="qvm-x-akl">chuklus</AUni> -<AUni ws="qvm-x-ame">chuklus</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="70e80a7c-53ef-4dc3-942c-4ddb4bd933f6" ownerguid="2c071d8c-555b-40f8-b225-e03adcd13b58"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="70e8bb77-a56c-4f04-8b16-d60d912f6495" ownerguid="3366df1f-d70e-4052-8d39-7159e5b24c0b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">produce</AUni> -<AUni ws="es">producir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f471efde-5fc9-44b2-a3ca-935eb53ea2d8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="70eac6be-66e8-4827-8f2f-d15427efff60" ownerguid="c9aee4df-ac3e-4159-bd1a-060db1a5f070"> -<Abbreviation> -<AUni ws="en">3.5.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.174" /> -<DateModified val="2022-9-23 16:55:8.174" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words related to reading and writing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Reading and writing</AUni> -</Name> -<Questions> -<objsur guid="e0e51fc9-abb3-4256-875e-87a616907883" t="o" /> -<objsur guid="62daf41c-a0a5-4f32-96f1-804706fe7f43" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="af700054-258a-458a-9e38-e90397833e51" t="o" /> -<objsur guid="8db7c016-bdc9-410b-9523-3197602358f4" t="o" /> -<objsur guid="710828bc-5dfb-4685-b1a5-156700ab08f1" t="o" /> -<objsur guid="50ac28ab-7385-408f-b5eb-3e27b191fcf4" t="o" /> -<objsur guid="ba8d18bd-2556-47a0-aa33-3ebef3e90814" t="o" /> -<objsur guid="b7801f6e-683b-4d5d-9bab-57f6e593db8c" t="o" /> -<objsur guid="d586a164-ac8f-4356-8aa8-07721c2b5e09" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="70ec2363-c91b-4fd0-ab07-367a1439cbdf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">walwalya; walwalya:; walwalya</AUni> -<AUni ws="qvm-x-acl">walwalya; walwalya:; walwalya</AUni> -<AUni ws="qvm-x-akh">walwalya; walwalya:; walwalya</AUni> -<AUni ws="qvm-x-akl">walwalya; walwalya:; walwalya</AUni> -<AUni ws="qvm-x-ame">walwalya; walwalya:; walwalya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wallwallya:</AUni> -<AUni ws="qvm-x-acl">*wallwallya:</AUni> -<AUni ws="qvm-x-akh">*wallwallya:</AUni> -<AUni ws="qvm-x-akl">*wallwallya:</AUni> -<AUni ws="qvm-x-ame">*wallwallya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.465" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0344ea26-65e2-4f3f-ad21-ee53055532d9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wallwallya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ad0157b8-1d6b-4725-aebe-d6c4a8f3f5ac" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ddef7299-818b-42bf-8cd5-443fbb90eae4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wallwallya: 
\entryTyp root 
\gENG 
\gSPN 
\e *wallwallya: 
\c V1 
\mp +FinalLength 
\cm *** ch *** 
\mp +underlong 
\ach walwalya foreshortened 
\ach walwalya: 
\ach walwalya 
\cm *** kh *** 
\akh walwalya foreshortened 
\akh walwalya: 
\akh walwalya 
\cm *** cl *** 
\acl walwalya foreshortened 
\acl walwalya: 
\acl walwalya 
\cm *** kl *** 
\akl walwalya foreshortened 
\akl walwalya: 
\akl walwalya 
\cm *** me *** 
\ame walwalya foreshortened 
\ame walwalya: 
\ame walwalya 
\i 1ki 19.12 Nina pasariptinnami walwalyaylapa wayra pasaycagnog mayacargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="70f34efd-1ebd-4a4a-a816-889b9fc168c5" ownerguid="44b6e20f-e5f5-43ff-8b32-3eec05151f47"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="70f47508-b668-4214-8811-d90c6ff8c133" ownerguid="4bcf81e9-1edc-4872-a8d3-b0f710b56b30"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="043f8a83-e3e2-4ebf-ad79-4f795be6e651" t="o" /> -<objsur guid="88a291b5-ace8-4e0d-95ec-3302e2c9485d" t="o" /> -<objsur guid="f2ade1ed-3f7c-4440-93b7-2d2c7256da78" t="o" /> -<objsur guid="8b443854-2dd7-4bbb-b469-88329d0a289f" t="o" /> -<objsur guid="5b8df12b-80d7-4ade-b193-cf713f5b8eb4" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiWordform" guid="70f565b7-5fbb-4f82-a543-f0c5a29d3766"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Mara</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="70f7e3c6-17db-4176-9cdf-10e72a87a7cb" ownerguid="d8dd9aea-ceb9-44e3-8758-97d435c730c3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">contract</AUni> -<AUni ws="es">contrato</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="253e0282-d9bd-447b-ad0d-8195f9f9fa08" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="70f80041-af88-4521-9ebd-21d8f0b0d131" ownerguid="f76c3803-1c7a-4181-9a87-64ae7231a67d"> -<Abbreviation> -<AUni ws="en">8.5.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.660" /> -<DateModified val="2022-9-23 16:55:8.660" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to being in front of you.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>83F In Front Of, Face To Face, In Back Of, Behind</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">In front of</AUni> -</Name> -<Questions> -<objsur guid="46995898-0c56-4b00-b2fe-8088ed3d7818" t="o" /> -<objsur guid="bc253aad-e8bd-4c28-baaa-d7b77c463eba" t="o" /> -<objsur guid="ba43e6c9-24f6-4c3e-a923-237e7d98a2f9" t="o" /> -<objsur guid="5b1a17cb-6672-4fcd-bf4f-b85e27418310" t="o" /> -<objsur guid="47f57830-3e5f-4028-bdb3-026d0544c52e" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="775b53f1-bfcf-4270-a60d-b5affc9d6a99" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="70f9e69f-bcd4-45e6-87a1-ddbf2ae42402"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alquila</AUni> -<AUni ws="qvm-x-acl">alquila</AUni> -<AUni ws="qvm-x-akh">alquila</AUni> -<AUni ws="qvm-x-akl">alquila</AUni> -<AUni ws="qvm-x-ame">alquila</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+alquilar</AUni> -<AUni ws="qvm-x-acl">+alquilar</AUni> -<AUni ws="qvm-x-akh">+alquilar</AUni> -<AUni ws="qvm-x-akl">+alquilar</AUni> -<AUni ws="qvm-x-ame">+alquilar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.729" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="34db08b4-cffa-4484-a596-6e73f22d6845" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+alquilar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b36a309a-2a16-4645-9517-1f67ffdc2162" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f794de87-f1ae-4f15-a868-929fb3f8390f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +alquilar 
\entryTyp root 
\gENG rent 
\gSPN alquilar 
\e +alquilar 
\c V2 
\ach alquila 
\akh alquila 
\acl alquila 
\akl alquila 
\ame alquila</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="70fb1d80-ebe2-4f8e-b926-dbe1a5d1ec19" ownerguid="d1ffe734-0f20-4b85-81d7-feda360df240"> -<Form> -<AUni ws="qvm-x-ach">rucsu</AUni> -<AUni ws="qvm-x-acl">rucsu; rucsu; rucso</AUni> -<AUni ws="qvm-x-akh">ruksu</AUni> -<AUni ws="qvm-x-akl">ruksu; ruksu; rukso</AUni> -<AUni ws="qvm-x-ame">ruksu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="70fbd0f8-48ee-4448-8068-542919d850ea"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">hasta</AUni> -<AUni ws="qvm-x-acl">hasta</AUni> -<AUni ws="qvm-x-akh">hasta</AUni> -<AUni ws="qvm-x-akl">hasta</AUni> -<AUni ws="qvm-x-ame">hasta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hasta</AUni> -<AUni ws="qvm-x-acl">+hasta</AUni> -<AUni ws="qvm-x-akh">+hasta</AUni> -<AUni ws="qvm-x-akl">+hasta</AUni> -<AUni ws="qvm-x-ame">+hasta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.680" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="45591488-19bb-473e-b0ec-4a54df5644e1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hasta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="589e7311-045c-4973-8e51-9be444956e97" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="694adfad-b9c2-47da-8466-aeabe7c32bd7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hasta 
\entryTyp root 
\gENG until 
\gSPN hasta 
\e +hasta 
\c NOSUFF 
\ach hasta 
\akh hasta 
\acl hasta 
\akl hasta 
\ame hasta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="70fe6c31-3d40-4d86-b6e7-2d80593e0ca8" ownerguid="e173f481-ec57-4d1c-b517-be38ccb038f5"> -<ExampleWords> -<AUni ws="en">leave, excuse oneself</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to leaving a group?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="70ff8d39-94bd-4b97-885d-2b27263c6ff8" ownerguid="2ec7128c-61c0-4095-9f4b-70c3de2bd12b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="70ffada5-2169-493a-b201-9312ad4eb712" ownerguid="e0e8af5a-04c1-49a1-9955-9a2af7879068"> -<ExampleWords> -<AUni ws="en">known, noted, familiar, obvious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something or someone that is known to someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="70ffda66-4d65-4872-8489-2e4d01ee584b" ownerguid="80628870-6d6a-4743-a05d-88d1cf1d0bcc"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="71031d46-2384-46ac-a289-85fd6f040666" ownerguid="858af232-b570-4153-b4c0-f60930df9ced"> -<ExampleWords> -<AUni ws="en">judging by, judging from, going by, from, from the way, you'd think, anyone would think</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words indicate that, because something seems to be a certain way, you think something is true?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="71045143-4815-45da-89c7-45bc30d2021b" ownerguid="8778e450-62bd-4f38-b2f2-1b74cb9e63ac"> -<Form> -<AUni ws="qvm-x-ach">diösa</AUni> -<AUni ws="qvm-x-acl">diösa</AUni> -<AUni ws="qvm-x-akh">diösa</AUni> -<AUni ws="qvm-x-akl">diösa</AUni> -<AUni ws="qvm-x-ame">diösa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="710466a7-ea3e-471c-97f7-f350ffb52d23" ownerguid="044f740b-94f3-4096-aa3a-c07f5e708346"> -<ExampleWords> -<AUni ws="en">collector</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to someone who collects things?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="71064384-5495-4940-acaa-353c6a3fb44d" ownerguid="fc82fcec-d03c-4fb0-bf62-714c71754402"> -<ExampleWords> -<AUni ws="en">adult, man, woman, grown-up, grown man, grown woman</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to an adult?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="710828bc-5dfb-4685-b1a5-156700ab08f1" ownerguid="70eac6be-66e8-4827-8f2f-d15427efff60"> -<Abbreviation> -<AUni ws="en">3.5.7.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.174" /> -<DateModified val="2022-9-23 16:55:8.174" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to reading.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Read</AUni> -</Name> -<Questions> -<objsur guid="81d18b4b-adff-4c91-be60-5a9570cf506e" t="o" /> -<objsur guid="576b2505-60ae-484b-8431-472cf81e8183" t="o" /> -<objsur guid="4eac8cd1-648c-4c9e-9d94-2f7ccbe3ee71" t="o" /> -<objsur guid="67ed11d9-3867-4a25-b466-f1fc118fa155" t="o" /> -<objsur guid="0dec7f27-0c01-4518-9544-c8f5b5925595" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="710aca63-2251-4729-89fc-dc216bc37936"> -<Analyses> -<objsur guid="72a0a663-2f1a-4e3f-a573-ed580dae64e6" t="o" /> -</Analyses> -<Checksum val="-905014300" /> -<Form> -<AUni ws="qvm-x-akh">junaqmi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="710c9113-6bfc-4f4f-87e3-4bea3c014b94" ownerguid="44870512-7cb2-469c-9b20-e15d3ce62655"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="710caccc-2724-41f8-8d52-1d7a9161463c" ownerguid="3ce6009b-a7b6-411d-9f94-90312fe5f7d7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="710d9296-9b96-42ed-90d6-6465af230810" ownerguid="c50af688-c627-4cdd-81b8-622a2ad1216c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">thousand</AUni> -<AUni ws="es">mil</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="388097a9-b7e6-425b-9a63-189d1c4af774" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="710dafe8-bcce-4c3c-bb9a-61c785da3c12" ownerguid="9a68d3be-cc57-4200-8a0e-b1528c8830dd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">seems</AUni> -<AUni ws="es">parece</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4ba0260a-61a9-4eee-9c38-38f94be0f7b8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="7110adbe-a4ce-47b0-8c2f-6b41edaf2fcb" ownerguid="6330871b-6008-490e-bfff-e28e17ebce7e"> -<Abbreviation> -<AUni ws="en">7.2.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.526" /> -<DateModified val="2022-9-23 16:55:8.526" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to stopping moving.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>68D Cease, Stop</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Stop moving</AUni> -</Name> -<Questions> -<objsur guid="be1493b3-8c0c-48e9-ace2-50722bcdc508" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="7114a74b-71ae-4da1-a693-ad7651020613" ownerguid="3bc961d1-9f4f-4f1b-ada7-b1e9a2928ea4"> -<ExampleWords> -<AUni ws="en">honest, to be honest, in all honesty, frank, candid, direct, straightforward, tell someone straight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to telling the truth without hiding anything?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="71154986-5a20-4495-9ca6-833684d399a1" ownerguid="e135341c-48c4-4a21-bf6f-ecf9dc978202"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">go.out</AUni> -<AUni ws="es">salir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c28bfe3d-38df-47f4-81ac-47db4ce988b5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="71172506-5920-4eb7-9021-412a7bb8a150" ownerguid="4e7a6dfe-3654-4ca1-874d-02424581b774"> -<ExampleWords> -<AUni ws="en">depth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to how deep something is?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="711e7a82-dfaa-41c1-8b5b-e02bc4200139" ownerguid="30fa4dfc-c21d-46f6-8fd8-55b6c9f3577b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="711f3cd6-b458-47c3-bdce-bfc169fb523f" ownerguid="5d4412cb-1df4-41a9-a573-eb7e279bce3b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="711f4cac-4cd7-43ef-bf12-b4b1adfd2722" ownerguid="31a7512b-6b46-4d0d-a71b-69a4b837f3ff"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="ca07312d-49a1-4d8c-8591-706cb7d5a595" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="711f8147-5335-4634-8b24-62c9a4a069df" ownerguid="4e44f90b-be98-464b-9e06-b89f51b01ec6"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7120aa74-0091-4083-be0b-6c80d6fe075f" ownerguid="02c11e09-c525-4f1d-aa90-94385e0d3ea7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7121933e-4880-437d-bd18-323bfbd2ed0a" ownerguid="0cc62b4a-d5ff-4f45-83d1-e2b46e5d159a"> -<ExampleWords> -<AUni ws="en">noon, midday, meridian, midpoint, noonday, noontide, noontime</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to noon?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="7121e47b-b621-4b68-b454-e7ee95c17e44"> -<Analyses> -<objsur guid="de49aef7-c3de-4490-b89a-a279b594b155" t="o" /> -</Analyses> -<Checksum val="-247036909" /> -<Form> -<AUni ws="qvm-x-akh">y</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="7125b4ae-cf8f-4648-924a-5305be83f207" ownerguid="ea75c415-1cdf-4e67-8942-e8be5b569c91"> -<Form> -<AUni ws="qvm-x-ach">chisca</AUni> -<AUni ws="qvm-x-acl">chisca</AUni> -<AUni ws="qvm-x-akh">chiska</AUni> -<AUni ws="qvm-x-akl">chiska</AUni> -<AUni ws="qvm-x-ame">chiska</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="712f3fa8-d49c-4baf-9d33-3ae4279eab85" ownerguid="1df33d84-5adc-4723-a742-6ce21f17390c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">man</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">man</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">man</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">man</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">man</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1acbb55c-ccc7-45f0-b507-b8645ea87900" t="r" /> -</Morph> -<Msa> -<objsur guid="afad3961-fbf7-495d-bda7-b2ceaf12bba1" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="713064f5-212d-4bd5-84c7-6e73638e59e9" ownerguid="294fa03b-6fed-4d89-ac5e-66c562948895"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7130d5b8-edd6-4495-b8f0-df0db747b3b0" ownerguid="5ccc9ce6-4bc1-4bbb-a0af-730d34adce30" /> -<rt class="CmDomainQ" guid="7132cb2a-6696-40b7-8277-33033978013b" ownerguid="c9741b97-ad50-465c-a4ca-b21d488f45fe"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">A ghost cannot take <physical> form.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">animal nature, biological, bodily, concrete, corporal, corporeal, earthly, earthy, fleshly, incarnate, inferior, matter, material, materialistic, mundane, natural, objective, physical, seen, sensible, sensual, tangible, temporal, unspiritual, worldly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is physical?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="7134c89c-dcac-4638-afc5-f5174a77c196" ownerguid="45aaa853-b4ed-4776-aa0b-aa3187ffd85b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Jdg 19.19 Bürröcuna micunanpag guewatapis micatapis apaycämi.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="71363186-30b5-4e69-a491-b55627ab9548"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">apura</AUni> -<AUni ws="qvm-x-acl">apura</AUni> -<AUni ws="qvm-x-akh">apura</AUni> -<AUni ws="qvm-x-akl">apura</AUni> -<AUni ws="qvm-x-ame">apura</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+apurar</AUni> -<AUni ws="qvm-x-acl">+apurar</AUni> -<AUni ws="qvm-x-akh">+apurar</AUni> -<AUni ws="qvm-x-akl">+apurar</AUni> -<AUni ws="qvm-x-ame">+apurar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.810" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c85d93c4-ddc4-4810-8832-868a72c8a582" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+apurar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="740700fd-f185-4425-83ac-08b29b53706e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3fffecbb-f479-49d0-a327-409f681e69df" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +apurar 
\entryTyp root 
\gENG hurry 
\gSPN apurar 
\e +apurar 
\c V1 
\ach apura 
\akh apura 
\acl apura 
\akl apura 
\ame apura 
\mcc +apurar / ~_ 2IMP.1 JUST2.C</Run> -</AStr> -</Custom> -</rt> -<rt class="MoAffixAllomorph" guid="71365c2a-e254-43af-89b3-e3974a992188" ownerguid="a9c4f4e2-a920-42ce-8481-96be634806b0"> -<Form> -<AUni ws="qvm-x-ach">tsa</AUni> -<AUni ws="qvm-x-acl">tsa</AUni> -<AUni ws="qvm-x-akh">tsa</AUni> -<AUni ws="qvm-x-akl">tsa</AUni> -<AUni ws="qvm-x-ame">tsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="7137908e-4644-4ac6-93e6-228f44d65504" ownerguid="2ef43df6-27e5-4493-a0bb-29a459207a6a"> -<Form> -<AUni ws="qvm-x-ach">capural</AUni> -<AUni ws="qvm-x-acl">capural</AUni> -<AUni ws="qvm-x-akh">capural</AUni> -<AUni ws="qvm-x-akl">capural</AUni> -<AUni ws="qvm-x-ame">capural</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="713a23d3-aa4f-4d80-bafc-35cafe4bebe1" ownerguid="687a2807-8d9f-4fca-8ef0-4621e25827c8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ff6bcf28-1b60-4d37-a08a-82a52749c97e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="713ab112-c7c6-4607-905c-6a9899bf436a" ownerguid="401f0ae3-d7e0-4533-80e0-2f2e06f5d052"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="713aea02-c693-434b-93fe-fdb801f02965"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa</AUni> -<AUni ws="qvm-x-acl">pa</AUni> -<AUni ws="qvm-x-akh">pa</AUni> -<AUni ws="qvm-x-akl">pa</AUni> -<AUni ws="qvm-x-ame">pa</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.477" /> -<DateModified val="2022-10-27 17:59:57.867" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="1" /> -<LexemeForm> -<objsur guid="b699320c-1182-41cf-a567-d8008edefdda" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">ADV1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="46fee199-b257-4f02-bbda-f340d9d79eff" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="da1df3f0-8d1d-4a12-8b7a-1a9e7cd6a8b7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx ADV1 
\entryTyp suffix 
\gENG ADV 
\gSPN ADV 
\e ADV1 
\c N0/R0 V0/R0 V1/R0 V2/R0 R0/R0 BN/BN 
\o 000 
\mp -PMonophthongized 
\ach pa 
\akh pa 
\acl pa 
\akl pa 
\ame pa 
\mcc ADV1 / ~_ ADV5 
\mcc ADV1 / [TakeADV1] _ 
\mcc ADV1 / INF.noI JUST ~_ | force ADV5 
\mcc ADV1 / ~_ 3P 
\mcc ADV1 / ~_...[pa] 
\mcc ADV1 / JUST ~_ | force ADV5 
\mcc ADV1 / 2IMP JUST ~_ | force ADV5 
\mcc ADV1 / [noADV1] 3P.V ~_</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="713b7aad-19e7-4cbb-96fc-656209208ea1" ownerguid="4c31ac6a-3197-4762-9937-2fdea90784b7"> -<ExampleWords> -<AUni ws="en">move suddenly, sudden movement</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving suddenly?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7140238c-a839-4012-9732-77099e69ddd3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chunya; chunya:</AUni> -<AUni ws="qvm-x-acl">chunya; chunya:</AUni> -<AUni ws="qvm-x-akh">chunya; chunya:</AUni> -<AUni ws="qvm-x-akl">chunya; chunya:</AUni> -<AUni ws="qvm-x-ame">chunya; chunya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chunya:</AUni> -<AUni ws="qvm-x-acl">*chunya:</AUni> -<AUni ws="qvm-x-akh">*chunya:</AUni> -<AUni ws="qvm-x-akl">*chunya:</AUni> -<AUni ws="qvm-x-ame">*chunya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.345" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7fcf5c65-3276-4c69-9e42-8c887c0f6556" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chunya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3170d496-c6d1-47af-afd6-312414e04280" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0233d40b-e24d-4490-aa1c-80396c97cfae" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chunya: 
\entryTyp root 
\gENG be.deserted 
\gSPN ser.silencioso 
\e *chunya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach chunya foreshortened 
\ach chunya: 
\akh chunya foreshortened 
\akh chunya: 
\acl chunya foreshortened 
\acl chunya: 
\akl chunya foreshortened 
\akl chunya: 
\ame chunya foreshortened 
\ame chunya: 
\mcc *chunya: / ~_ PSTN 
\mcc *chunya: / ~_ PRMT</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="71409540-109b-4211-ba2c-cf9802d84798" ownerguid="4d536ae0-2abc-49af-91e0-70767d9262a9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="fd9d4850-08f6-49ac-9d22-a69fcb618428" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="71419281-8f1b-453f-84ca-7517a1d6ddfb" ownerguid="c3f20ce7-d30e-40fd-af8a-713a65c46cd0"> -<ExampleWords> -<AUni ws="en">sweeping bow, bow low, deep bow, slight bow, bow your head, his head fell, incline your head, nod, curtsy, genuflect, kowtow, prostrate, grovel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe how a person bows?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7141bc81-88db-46c0-8cfd-90a5b466f8b3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">traiciona</AUni> -<AUni ws="qvm-x-acl">traiciona</AUni> -<AUni ws="qvm-x-akh">traiciona</AUni> -<AUni ws="qvm-x-akl">traiciona</AUni> -<AUni ws="qvm-x-ame">traiciona</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+traicionar.1</AUni> -<AUni ws="qvm-x-acl">+traicionar.1</AUni> -<AUni ws="qvm-x-akh">+traicionar.1</AUni> -<AUni ws="qvm-x-akl">+traicionar.1</AUni> -<AUni ws="qvm-x-ame">+traicionar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.38" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f580ac93-a490-4819-968d-2632b025e309" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+traicionar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="397e207d-5c5d-4698-b501-c421c9440718" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7f568442-9430-4035-a1a9-55ee11e01657" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +traicionar.1 
\entryTyp root 
\gENG betray 
\gSPN traicionar 
\e +traicionar.1 
\c V2 
\ach traiciona 
\akh traiciona 
\acl traiciona 
\akl traiciona 
\ame traiciona</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="71430132-f2ea-40fe-b3f5-b6775741cc56" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<Abbreviation> -<AUni ws="en">6.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.468" /> -<DateModified val="2022-9-23 16:55:8.468" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to working with cloth.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>48 Activities Involving Cloth</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Working with cloth</AUni> -</Name> -<OcmCodes> -<Uni>280 Leather, Textiles and Fabrics; 287 Nonwoven Fabrics; 288 Textile Industry; 294 Clothing Manufacture; 295 Special Clothing Industries</Uni> -</OcmCodes> -<Questions> -<objsur guid="aef03b33-f9e9-4c02-ac3e-19ec3417e5b4" t="o" /> -<objsur guid="29850dc4-2ffa-4720-b4c6-472f07991b37" t="o" /> -<objsur guid="0d2177fa-edbc-4054-984d-6f59a8dd8332" t="o" /> -<objsur guid="ac15b501-9430-4638-a066-a8781863e251" t="o" /> -<objsur guid="36cbebaa-cb88-428b-9f88-b07241440b60" t="o" /> -<objsur guid="8ea916bd-c32b-4a4e-9c86-5cb27754f503" t="o" /> -<objsur guid="3737a09a-8213-4e79-ac9d-77db78b260d1" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="ec8e1481-827c-4554-bf50-0d3f592f3702" t="o" /> -<objsur guid="7edf9e7c-3e32-4307-b5e3-b0d704df7803" t="o" /> -<objsur guid="b6e9b9c9-632b-48e7-99f7-fa53ebcb3bc5" t="o" /> -<objsur guid="77d1610f-4757-46de-b5f8-e127dc270dfd" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="7149dbab-f1b1-432d-82f9-31cb0dbeb950" ownerguid="641c0fe9-e019-433f-8d77-e80584d03dc5"> -<Form> -<AUni ws="qvm-x-ach">wantis</AUni> -<AUni ws="qvm-x-acl">wantis</AUni> -<AUni ws="qvm-x-akh">wantis</AUni> -<AUni ws="qvm-x-akl">wantis</AUni> -<AUni ws="qvm-x-ame">wantis</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="714a6254-0f1e-4bf6-b46c-42934d2c731c" ownerguid="fbd0e618-7c83-4afb-8800-0effa3a16a9b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -<Sense> -<objsur guid="1b926284-5562-4cf3-8ad2-65536a715093" t="r" /> -</Sense> -</rt> -<rt class="WfiAnalysis" guid="714c19ca-fc12-4630-b529-468429ec083d" ownerguid="dccb55f6-9e2b-4963-a6d5-640d118909e1"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="aab87a20-074e-448b-b7bc-93e3ec99cfa8" t="o" /> -<objsur guid="0f9ad506-86c3-4597-a14c-e24d63543a90" t="o" /> -<objsur guid="8279264d-8f5d-4a4c-8262-91c613ccd2cf" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="714c640a-fad7-4688-bac8-332133f60c4e" ownerguid="ed7930df-e7b4-43c9-a11a-b09521276b57"> -<ExampleWords> -<AUni ws="en">olfactory</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that has to do with smelling?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="714e9799-7f2a-46b2-91f9-2c251ed7b0cb" ownerguid="c345f278-91ff-463d-b9a6-8abac8a267eb"> -<ExampleWords> -<AUni ws="en">legume, bean, pea, soybean, wheat, rice</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What types of plants have edible seeds?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="71504d39-3404-4f79-b2ba-55f0501c4614" ownerguid="35c899e4-193b-470c-93f4-01cb1a7be14a"> -<Form> -<AUni ws="qvm-x-ach">firma</AUni> -<AUni ws="qvm-x-acl">firma</AUni> -<AUni ws="qvm-x-akh">firma</AUni> -<AUni ws="qvm-x-akl">firma</AUni> -<AUni ws="qvm-x-ame">firma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="7150ec1a-3500-41bf-aa26-33b97e51a1e4" ownerguid="2b06d979-7ca1-4a50-8a53-64413a1fec7c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="71560f64-7c62-43a8-9fd5-238a483c7330" ownerguid="267e9636-39da-4a81-afeb-c468811f18e3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">gargu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">gargu; gargo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qarqu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qarqu; qarqo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qarqu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2232ab14-ff9d-4403-b432-21884e84369c" t="r" /> -</Morph> -<Msa> -<objsur guid="d2d2bfb6-5ff7-4b48-831a-c27cb6b0f51e" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="71583c6a-be7f-4e39-addb-31ebc3800993" ownerguid="3fc01e2a-ab32-4c45-a94e-6ee82f3f1496"> -<Form> -<AUni ws="qvm-x-ach">gargu; garga</AUni> -<AUni ws="qvm-x-acl">gargu; gargo; garga</AUni> -<AUni ws="qvm-x-akh">qarqu; qarqa</AUni> -<AUni ws="qvm-x-akl">qarqu; qarqo; qarqa</AUni> -<AUni ws="qvm-x-ame">qarqu; qarqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="7158c621-c46e-4173-80c1-188f514a920f" ownerguid="05472990-3f51-40b3-bca8-df3cf383328b"> -<Abbreviation> -<AUni ws="en">3.5.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.172" /> -<DateModified val="2022-9-23 16:55:8.172" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to admitting something--saying that you have done wrong, or that your beliefs were wrong</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33V Admit, Confess, Deny</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Admit</AUni> -</Name> -<Questions> -<objsur guid="e822351a-02df-4a2f-9b65-2ed792f3f463" t="o" /> -<objsur guid="abb6b608-55ff-4c7e-9cf3-4f125135c7d3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="7158de79-730a-4549-be75-268f68a3ef86" ownerguid="4d3412e3-85a0-4f81-9dad-efd6101b4945"> -<Question> -<AUni ws="en">(2) What words are used to describe the actions done with these tools?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7159013a-7083-4732-836a-84831613a8ed" ownerguid="d0131ae8-e30a-4628-b07c-808ccc852cc7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sniff</AUni> -<AUni ws="es">oler</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e182e5b4-3bf1-4d09-9dc6-67078af831ee" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="71599d85-cb1e-4444-90e9-b873583f04cd" ownerguid="143aced3-f3a9-42f9-b618-3eb034c93fed"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoInflAffMsa" guid="715c8af0-d7ab-448b-a2fa-f8b36822dac0" ownerguid="386a1ffc-4c9b-4b9c-aefd-fa6fa089967e"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="fda4c591-1349-4f9e-ab87-905ae2aa25e1" t="r" /> -</Slots> -</rt> -<rt class="LexSense" guid="715eac2e-0f3d-49fe-963a-f631d4bbe769" ownerguid="91c73307-2ad1-4b0d-8bdf-54de8932e09c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">coca</AUni> -<AUni ws="es">coca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="51df3235-4c52-4e67-8e5e-c2cfe77a73a1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="715eee13-dfed-43bb-9ec5-bd398e998ca9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">juc</AUni> -<AUni ws="qvm-x-acl">juc</AUni> -<AUni ws="qvm-x-akh">juk</AUni> -<AUni ws="qvm-x-akl">juk</AUni> -<AUni ws="qvm-x-ame">huk</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*huk</AUni> -<AUni ws="qvm-x-acl">*huk</AUni> -<AUni ws="qvm-x-akh">*huk</AUni> -<AUni ws="qvm-x-akl">*huk</AUni> -<AUni ws="qvm-x-ame">*huk</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.751" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="64a6c739-49a9-41ef-b000-1c2aceb30fc1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*huk</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4f8f8fdd-f3f4-45d3-bfda-babfb57eb81a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ad9e3a4d-6503-4611-9211-cf4c1da9ccbc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *huk 
\entryTyp root 
\gENG one 
\gSPN uno(a) 
\e *huk 
\c N0 
\mp +FinalC 
\ach juc 
\akh juk 
\acl juc 
\akl juk 
\ame huk 
\mcc *huk / ~_ [just] 3P.V ADV1 
\mcc *huk / ~_ POL 
\mcc *huk / ~_ DES INF</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="71607d46-0766-4aa7-85a6-5198aa8c888b" ownerguid="c00f899a-5989-4e41-a8c1-2385ec8e5851"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ed2ce96f-e1b7-4a40-aad0-84405f0cebe7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="7162885d-1d35-4baf-97d6-7368fff7c723" ownerguid="d0dee676-f3ae-43cc-96f1-7e3bb65870f5"> -<Abbreviation> -<AUni ws="en">8.2.7.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.599" /> -<DateModified val="2022-9-23 16:55:8.599" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to being loose--when something is too big.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Loose</AUni> -</Name> -<Questions> -<objsur guid="15b9900c-6267-47b6-9430-e4bda7f0905e" t="o" /> -<objsur guid="90b0feca-51ca-4504-b050-19ee2d008fa2" t="o" /> -<objsur guid="0f55218d-f227-4b35-a283-002f8df22467" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="7167de6d-65bd-4331-8f81-09763c6c526e" ownerguid="faf0ae24-6584-4766-a93b-389c1cb06d8d"> -<ExampleWords> -<AUni ws="en">box turtle, leatherback, snapping turtle, Galapagos tortoise, terrapin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What species of turtles are there?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="7168e411-5c8a-45ac-8c13-198c6028b767" ownerguid="630fa310-40fc-4015-8fb5-e9409d6cd676"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">no</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">no</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">no</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">no</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">naw</Run> -</AStr> -</Form> -<Morph> -<objsur guid="11433051-3e59-4f5e-b9d2-7440143d0388" t="r" /> -</Morph> -<Msa> -<objsur guid="dbacef16-50cb-4f71-a590-54ec4684dfe4" t="r" /> -</Msa> -<Sense> -<objsur guid="d2016811-b963-456b-b802-8d0afd3f9e92" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="716b1f1a-9fdc-480e-a175-756223c6db7a" ownerguid="54ec3cad-4a0f-48a5-9dd6-36855480ee5d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">steamed.meat</AUni> -<AUni ws="es">pachamanca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bd5d3eb8-dc4a-4e8b-9f51-e34e29e78436" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="716b3e9d-9bb9-42a6-ba56-829b1c018b28" ownerguid="0f883eb0-00a1-44cc-b719-97fb6ec145d4"> -<Abbreviation> -<AUni ws="en">5.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.344" /> -<DateModified val="2022-9-23 16:55:8.344" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to managing a house.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Manage a house</AUni> -</Name> -<OcmCodes> -<Uni>356 Housekeeping; 357 Domestic Service</Uni> -</OcmCodes> -<Questions> -<objsur guid="45c97005-9fa6-4d48-9137-75723dba1437" t="o" /> -<objsur guid="3d0028f2-0522-4230-a878-5c6dc629aa97" t="o" /> -<objsur guid="cd087f93-dada-43d0-a837-31ede7219ef8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="716b678d-5de4-44b7-9f10-c70135444967" ownerguid="3785d9f3-0922-4d79-a0fa-b97c4a26fe17"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">He is sitting <where> I was sitting.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">where, in the same place as, at the same place as</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that a situation happened at the same place as another situation?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="716bb125-9945-45ba-a631-ec4893efd1d7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sacerdo:ti; sacerdo:ti</AUni> -<AUni ws="qvm-x-acl">sacerdo:ti; sacerdo:ti; sacerdo:te</AUni> -<AUni ws="qvm-x-akh">sacerdo:ti; sacerdo:ti</AUni> -<AUni ws="qvm-x-akl">sacerdo:ti; sacerdo:ti; sacerdo:te</AUni> -<AUni ws="qvm-x-ame">sacerdo:ti; sacerdo:ti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sacerdote</AUni> -<AUni ws="qvm-x-acl">+sacerdote</AUni> -<AUni ws="qvm-x-akh">+sacerdote</AUni> -<AUni ws="qvm-x-akl">+sacerdote</AUni> -<AUni ws="qvm-x-ame">+sacerdote</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.417" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6d610b1e-bfbb-408a-b368-990d1d3e3436" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sacerdote</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a0af3947-9ebb-4500-a8e3-33bebcf0263d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4934cdcb-c9fe-4360-8f64-af89d0a41059" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sacerdote 
\entryTyp root 
\gENG 
\gSPN 
\e +sacerdote 
\c N0 
\mp +FinalI 
\ach sacerdo:ti / _# 
\ach sacerdo:ti / ~_# 
\akh sacerdo:ti / _# 
\akh sacerdo:ti / ~_# 
\acl sacerdo:ti / _# 
\acl sacerdo:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sacerdo:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sacerdo:ti / _# 
\akl sacerdo:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sacerdo:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sacerdo:ti / _# 
\ame sacerdo:ti / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="716bf1b1-2cd7-4535-ae18-bb6323cc0050" ownerguid="66eea5ae-7a9a-4cda-9c78-59a943cec536"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b699320c-1182-41cf-a567-d8008edefdda" t="r" /> -</Morph> -</rt> -<rt class="CmDomainQ" guid="716d77dc-e8e3-421c-8255-3bdd9f7a8a10" ownerguid="a3fe0ca2-64fe-44db-ac3f-14513385bc25"> -<ExampleWords> -<AUni ws="en">get ready for bed, go to bed, turn in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to getting ready for bed?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="716ec168-e053-46af-8a2a-ddaea677f7be"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shucuta</AUni> -<AUni ws="qvm-x-acl">shucuta</AUni> -<AUni ws="qvm-x-akh">shukuta</AUni> -<AUni ws="qvm-x-akl">shukuta</AUni> -<AUni ws="qvm-x-ame">shukuta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shukuta</AUni> -<AUni ws="qvm-x-acl">*shukuta</AUni> -<AUni ws="qvm-x-akh">*shukuta</AUni> -<AUni ws="qvm-x-akl">*shukuta</AUni> -<AUni ws="qvm-x-ame">*shukuta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.622" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3c07409c-a60a-47ad-902f-c387b92ed5b6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shukuta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="90894922-4542-4c3b-b77f-eb73cb22fd1f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2eccb4a6-a6dc-4f0e-8c6c-c8093528b0d2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shukuta 
\entryTyp root 
\gENG close 
\gSPN tapar 
\e *shukuta 
\c V1 
\ach shucuta 
\akh shukuta 
\acl shucuta 
\akl shukuta 
\ame shukuta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="71708d92-1d5b-4b5a-af2f-ba11a0941d11"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">go</AUni> -<AUni ws="qvm-x-acl">go</AUni> -<AUni ws="qvm-x-akh">qo</AUni> -<AUni ws="qvm-x-akl">qo</AUni> -<AUni ws="qvm-x-ame">qu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qu</AUni> -<AUni ws="qvm-x-acl">*qu</AUni> -<AUni ws="qvm-x-akh">*qu</AUni> -<AUni ws="qvm-x-akl">*qu</AUni> -<AUni ws="qvm-x-ame">*qu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.818" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dbde99bf-dc7a-40ec-b83c-8ad705f1458f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="34251e95-3878-4360-8a1f-df247959a619" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c0470245-8e11-4a7e-afe3-9cff2df0afb3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qu 
\entryTyp root 
\gENG give 
\gSPN dar 
\e *qu 
\c V2 
\mp NeverLowered 
\ach go 
\akh qo 
\acl go 
\akl qo 
\ame qu 
\mp NeverMonophthongized 
\mcc *qu / ~_ PL BEN6 REF 
\mcc *qu / ~_ ADVSS1.2 [pa] 
\mcc *qu / ~_ PNCT1 PASS 
\mcc *qu / ~_ PNCT1 1O 
\mcc *qu / ~_ PNCT1 AFAR 
\mcc *qu / ~_ PL [ben] 
\mcc *qu / ~_ PL2 [ben] 
\mcc *qu / ~_ DUR</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="71746d18-7461-4486-a153-f36657add076" ownerguid="bad07400-ad11-4f98-9a6d-83aeae23913f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -<Sense> -<objsur guid="db6117c5-121c-433a-a891-e69950f55761" t="r" /> -</Sense> -</rt> -<rt class="CmSemanticDomain" guid="71757ff0-d698-426d-a791-50c4bde6f735" ownerguid="bb8ddf5f-707d-46c0-aff4-45683d26fd68"> -<Abbreviation> -<AUni ws="en">9.5.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating the spatial location of an event.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Spatial location of an event</AUni> -</Name> -<Questions> -<objsur guid="95e2b4d5-eac4-41b0-9947-c358b2156608" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="400d318e-a9ef-40b4-92be-0d7e96e51d8a" t="o" /> -<objsur guid="a9470e53-ee43-4c87-9cce-09cc4fa6b1c1" t="o" /> -<objsur guid="9f91cd53-8b9e-4d76-82e4-5ede39112322" t="o" /> -<objsur guid="66e2806d-3e16-4fb2-a158-7f3b4dd5d9af" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="7175b798-f9aa-4fbe-b0c7-3d54d34bd505" ownerguid="aa87c23f-f7ba-4973-a774-94e755ef4964"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">advantage</AUni> -<AUni ws="es">provecho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="67ecc1e0-a9b9-42cc-9ccb-6a954aa98e21" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7177ae14-010c-4493-ba83-44700bfcbe8b" ownerguid="a33ec443-5299-4582-8442-18b37ea28ecd"> -<Form> -<AUni ws="qvm-x-ach">mayor</AUni> -<AUni ws="qvm-x-acl">mayor</AUni> -<AUni ws="qvm-x-akh">mayor</AUni> -<AUni ws="qvm-x-akl">mayor</AUni> -<AUni ws="qvm-x-ame">mayor</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="7178229f-f42d-4301-a777-9c6811e0cca6" ownerguid="43a692af-46d8-4b35-8cfa-8522901487cf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/N0 N0/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ALL.1</AUni> -<AUni ws="es">TODO.1</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9b413f6f-f64e-49ae-a71a-a0ac12ad56f8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="717a94b7-0182-4acd-9611-342c23e4dab8" ownerguid="ea02bf34-a997-4b37-bb22-dd88f8e4e6b1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="717b6b9d-8762-4bec-970d-663235929956" ownerguid="d84da4a1-0eb7-45b8-850b-0c215137a585"> -<Form> -<AUni ws="qvm-x-ach">nicni</AUni> -<AUni ws="qvm-x-acl">nicni; nicni; nicne</AUni> -<AUni ws="qvm-x-akh">nikni</AUni> -<AUni ws="qvm-x-akl">nikni; nikni; nikne</AUni> -<AUni ws="qvm-x-ame">nikni</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="717ceb4b-4d02-4965-9358-047583f156e1" ownerguid="e08e252a-9227-42e4-bcb8-b803d25071b6"> -<ExampleWords> -<AUni ws="en">blush, turn red</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to becoming red in the face because you are embarrassed?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="717e0c7f-e113-4bf6-8528-1cc16c55ae69" ownerguid="e7caa24f-155d-47cd-946d-cc0d06dfc764"> -<ExampleWords> -<AUni ws="en">unloved, unlovable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe someone who is not loved?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="717fc03c-3d1e-47c0-914f-d78cf37926e7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waylinsha</AUni> -<AUni ws="qvm-x-acl">waylinsha</AUni> -<AUni ws="qvm-x-akh">waylinsha</AUni> -<AUni ws="qvm-x-akl">waylinsha</AUni> -<AUni ws="qvm-x-ame">waylinsha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wayllinsha</AUni> -<AUni ws="qvm-x-acl">*wayllinsha</AUni> -<AUni ws="qvm-x-akh">*wayllinsha</AUni> -<AUni ws="qvm-x-akl">*wayllinsha</AUni> -<AUni ws="qvm-x-ame">*wayllinsha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.615" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0eafa1d2-d5ed-4cab-a828-d840c4608534" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wayllinsha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2c8b8807-759f-455f-b8dd-7f48f1723da0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e3c8ced8-95d3-4253-b251-b5bbd1750a46" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wayllinsha 
\entryTyp root 
\gENG 
\gSPN 
\e *wayllinsha 
\c V1 
\ach waylinsha 
\akh waylinsha 
\acl waylinsha 
\akl waylinsha 
\ame waylinsha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7180f9ff-9b63-44ba-b8db-64277868b078" ownerguid="e11d6360-6fa9-45a9-a23e-2252a301cf86"> -<ExampleWords> -<AUni ws="en">rise, ferment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to what happens to food when leaven is added?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="71816e58-0789-45cf-91cc-c8934a996f4a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guemla</AUni> -<AUni ws="qvm-x-acl">guemla</AUni> -<AUni ws="qvm-x-akh">qemla</AUni> -<AUni ws="qvm-x-akl">qemla</AUni> -<AUni ws="qvm-x-ame">qimla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qimlla</AUni> -<AUni ws="qvm-x-acl">*qimlla</AUni> -<AUni ws="qvm-x-akh">*qimlla</AUni> -<AUni ws="qvm-x-akl">*qimlla</AUni> -<AUni ws="qvm-x-ame">*qimlla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.185" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="72eca08e-2fa8-4a55-b3de-db7cbb25ac39" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qimlla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="60da7964-9217-4e41-9534-33ab0d30884b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="27d0d5ca-0daf-480a-9df8-f0e754d2b9c0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qimlla 
\entryTyp root 
\gENG 
\gSPN señalar 
\e *qimlla 
\c V2 
\ach guemla 
\akh qemla 
\acl guemla 
\akl qemla 
\ame qimla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="7181fe1a-3c86-4dd0-b1c8-6a3072f1bf40" ownerguid="80a8c5c5-4444-4d6f-a26c-8d9d681d52a7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">oats</AUni> -<AUni ws="es">avena</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="da88093e-ec43-41f7-b5c6-b48d739dd75a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="71832a7d-e942-49c6-adaf-6cbe7b4e70a4" ownerguid="da4e8f5c-b088-4c21-93a5-c820f5f919ff"> -<Form> -<AUni ws="qvm-x-ach">mochgu</AUni> -<AUni ws="qvm-x-acl">mochgu; mochgo</AUni> -<AUni ws="qvm-x-akh">mochqu</AUni> -<AUni ws="qvm-x-akl">mochqu; mochqo</AUni> -<AUni ws="qvm-x-ame">muchqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="71840a86-d349-4f6d-8d74-53dda00f8d61" ownerguid="79662c08-e4e4-46d9-81c2-833818ba17f7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7185906f-537c-4bcb-9afd-2e5da57505c3" ownerguid="cc121082-2d07-484e-8a6f-7382f7d71f39"> -<ExampleWords> -<AUni ws="en">stubbornness, inflexibility, obstinacy, tenacity, sticktoitiveness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the quality of being stubborn?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="7185bd93-5281-46de-80af-767f0ec40ff6" ownerguid="df9ee372-e92e-4f73-aac5-d36908497698"> -<Abbreviation> -<AUni ws="en">3.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.94" /> -<DateModified val="2022-9-23 16:55:8.94" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to the mind--the part of a person that thinks.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Mind</AUni> -</Name> -<Questions> -<objsur guid="0a1e1ea6-35c4-4405-9ee6-349d6a18db43" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="2a2af155-9db9-41c5-860a-fe0a3a09d6de" t="o" /> -<objsur guid="be89e0ba-4c6a-4986-ac0d-859a901b89a1" t="o" /> -<objsur guid="48ac206f-2706-4500-bb63-2e499b790259" t="o" /> -<objsur guid="1f3519f8-d946-4857-a1fd-553d98dddf6d" t="o" /> -<objsur guid="6866ee4c-78cd-47d1-ba4a-8461fdcc5e2a" t="o" /> -<objsur guid="3fd34185-19a1-44bd-8555-bc76e2847bee" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="7187247f-8fe3-4bdc-89ff-6ebd47afa0da" ownerguid="6ce8fc1f-dd46-49bb-b071-4d8ff2763c53"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="71884d6c-58e0-4296-83a8-2deb780ae901" ownerguid="e311cc3a-a387-449e-a05a-07ed9678411d"> -<ExampleWords> -<AUni ws="en">altar, altar of sacrifice, altar of incense, censer, candle, church bells, totem pole</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What types of religious objects are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7188733c-257b-4acd-8141-5700e6b861e0" ownerguid="8497fb66-8b91-46b9-a0d5-fb9385319561"> -<ExampleWords> -<AUni ws="en">unsweetened, savory, dry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words describe something that is not sweet?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="718a6643-153c-49f3-ad8d-7cf438d3b2e4" ownerguid="744d1402-05f5-4491-9c15-a5af03595edb"> -<ExampleWords> -<AUni ws="en">sinfulness, depravity, evil (n), iniquity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the quality of being bad?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="718adb17-ff98-4853-8389-275d494ca322" ownerguid="add7df10-d641-418a-8a58-6aa2069be819"> -<Form> -<AUni ws="qvm-x-ach">marmarya; marmaryä</AUni> -<AUni ws="qvm-x-acl">marmarya; marmaryä</AUni> -<AUni ws="qvm-x-akh">marmarya; marmaryä</AUni> -<AUni ws="qvm-x-akl">marmarya; marmaryä</AUni> -<AUni ws="qvm-x-ame">marmarya; marmaryä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="718d0c91-5938-4f5c-a690-f0b8b0c7fb48"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">primicia</AUni> -<AUni ws="qvm-x-acl">primicia</AUni> -<AUni ws="qvm-x-akh">primicia</AUni> -<AUni ws="qvm-x-akl">primicia</AUni> -<AUni ws="qvm-x-ame">primicia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+primicia</AUni> -<AUni ws="qvm-x-acl">+primicia</AUni> -<AUni ws="qvm-x-akh">+primicia</AUni> -<AUni ws="qvm-x-akl">+primicia</AUni> -<AUni ws="qvm-x-ame">+primicia</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.929" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="39356b17-d6c7-48fb-8ac5-d1b22d420d30" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+primicia</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a6e9bfc3-a16f-4a03-abd9-bbd14ebfa411" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c9ebb623-b54a-42c5-8b31-eb17c0c5debe" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +primicia 
\entryTyp root 
\gENG 
\gSPN 
\e +primicia 
\c N0 
\ach primicia 
\akh primicia 
\acl primicia 
\akl primicia 
\ame primicia</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="718d4298-3aa6-4697-b6f6-e2a554ec7377" ownerguid="de6b15d3-6409-4998-b03d-903133f4ad70"> -<ExampleWords> -<AUni ws="en">song, singing, tune, melody</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something that is sung?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="718fa169-c4f2-461d-a593-d16a715c38d0" ownerguid="43173510-a91b-4d02-8886-94a995cffdb9"> -<Form> -<AUni ws="qvm-x-ach">iti</AUni> -<AUni ws="qvm-x-acl">iti; iti; ite</AUni> -<AUni ws="qvm-x-akh">iti</AUni> -<AUni ws="qvm-x-akl">iti; iti; ite</AUni> -<AUni ws="qvm-x-ame">iti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="7191be07-9702-4a82-ba0b-2fd748164668"> -<Analyses> -<objsur guid="31a7512b-6b46-4d0d-a71b-69a4b837f3ff" t="o" /> -<objsur guid="81734053-8676-402e-8871-4ee306608383" t="o" /> -<objsur guid="8ffcef92-94d7-468e-9737-fad8567dce13" t="o" /> -<objsur guid="cc46b6aa-9772-4bb4-a7f1-33f38a9daf22" t="o" /> -<objsur guid="cdf65d07-f019-436e-95e6-4d74aafc147c" t="o" /> -<objsur guid="eb1dad61-59a2-49b1-ac77-4054ebf01b7a" t="o" /> -</Analyses> -<Checksum val="-891648818" /> -<Form> -<AUni ws="qvm-x-akh">aywakashqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="71955fa6-e0db-4f37-917f-b11f22a76976" ownerguid="9a0e46a2-ed49-467b-a201-37377c06b1a2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7196b245-d526-403c-b8b4-a51bd1e58b47" ownerguid="2d57ebec-b9cc-48f8-bf5e-165cfa6739e9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="719c22bd-b0e0-4496-817e-21a9838f75bf" ownerguid="27330d45-7bab-4879-bd68-405508d038dd"> -<Form> -<AUni ws="qvm-x-ach">ballicu</AUni> -<AUni ws="qvm-x-acl">ballicu; ballicu; ballico</AUni> -<AUni ws="qvm-x-akh">ballicu</AUni> -<AUni ws="qvm-x-akl">ballicu; ballicu; ballico</AUni> -<AUni ws="qvm-x-ame">ballicu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="719ddef3-f5fa-4ae5-a51b-a3457e46088e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">due:ñu</AUni> -<AUni ws="qvm-x-acl">due:ñu; due:ñu; due:ño</AUni> -<AUni ws="qvm-x-akh">due:ñu</AUni> -<AUni ws="qvm-x-akl">due:ñu; due:ñu; due:ño</AUni> -<AUni ws="qvm-x-ame">due:ñu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+dueño.1</AUni> -<AUni ws="qvm-x-acl">+dueño.1</AUni> -<AUni ws="qvm-x-akh">+dueño.1</AUni> -<AUni ws="qvm-x-akl">+dueño.1</AUni> -<AUni ws="qvm-x-ame">+dueño.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.437" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4a4d991b-5704-4a0e-919e-0668b0d3f0e8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+dueño.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ba02296d-f69e-4c43-8ac3-24edb95a1a2f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0ee6ce44-0ff0-4677-ac57-7f3699ad8d79" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +dueño.1 
\entryTyp root 
\gENG owner 
\gSPN dueño 
\e +dueño.1 
\c N0 
\ach due:ñu 
\akh due:ñu 
\acl due:ñu / _# 
\acl due:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl due:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl due:ñu / _# 
\akl due:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl due:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame due:ñu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="719f402e-ab11-4035-b721-575e6bf65a6e" ownerguid="81ee2959-dd6f-4cb7-8269-89a2ad94ac5d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="71a01bb8-b47c-449b-ad18-573402973638"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sobornu; soborno</AUni> -<AUni ws="qvm-x-acl">sobornu; sobornu; soborno</AUni> -<AUni ws="qvm-x-akh">sobornu; soborno</AUni> -<AUni ws="qvm-x-akl">sobornu; sobornu; soborno</AUni> -<AUni ws="qvm-x-ame">sobornu; soborno</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+soborno</AUni> -<AUni ws="qvm-x-acl">+soborno</AUni> -<AUni ws="qvm-x-akh">+soborno</AUni> -<AUni ws="qvm-x-akl">+soborno</AUni> -<AUni ws="qvm-x-ame">+soborno</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.713" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0b4ad9b4-744a-4619-a38e-43694a4d24e1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+soborno</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dcdd35f7-cede-4fb2-a401-9853cf79d402" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1b26cc4a-9b80-41ef-aa55-a7572ebfe270" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +soborno 
\entryTyp root 
\gENG 
\gSPN 
\e +soborno 
\c N0 
\ach sobornu / ~_# 
\ach soborno / _# 
\akh sobornu / ~_# 
\akh soborno / _# 
\acl sobornu / ~_# 
\acl sobornu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl soborno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sobornu / ~_# 
\akl sobornu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl soborno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sobornu / ~_# 
\ame soborno / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="71a2cc77-f968-4341-84c1-6c16d007a093" ownerguid="79b580ff-64a7-445b-abcb-b49b9093779c"> -<Abbreviation> -<AUni ws="en">6.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to killing animals and cutting them up for food.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Butcher, slaughter</AUni> -</Name> -<Questions> -<objsur guid="8b8ab911-5e1a-4b76-b738-61a535582fe3" t="o" /> -<objsur guid="6db8728a-9651-402b-a3f9-6b88521a1c1a" t="o" /> -<objsur guid="2d41ed7f-a1e1-402d-a0de-d66b1cd763bb" t="o" /> -<objsur guid="d55a5ee1-611b-46d2-b943-4828c4dc8d00" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="71ac2a0a-d174-4d0c-b155-d642f8fb7d1e" ownerguid="e180e046-1dd0-4f30-85ab-aada2c945041"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">respirar.débil</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="352913ff-b78b-4d11-bbdf-a36e15fba68f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="71ad2ebe-2e8f-4554-9edc-3cb2f0a401bf" ownerguid="0ac5e5f9-e7fe-4d37-a631-eab1ceb1f8ae"> -<ExampleWords> -<AUni ws="en">landslide, avalanche</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to when part of a mountain falls?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="71b199db-39ec-48c3-af5a-404eeae29f8c" ownerguid="2536e011-ff02-45d9-8e1d-ee8b4e6fc60c"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="71b19b9e-231c-4196-a7d7-aa56a5079782" ownerguid="c16334a0-be29-4a1e-a870-4cb3f1df984d"> -<Abbreviation> -<AUni ws="en">7.5.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to including something in a group.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Include</AUni> -</Name> -<Questions> -<objsur guid="d2acbb37-3e6b-4121-b9cd-d630a6924c6f" t="o" /> -<objsur guid="b58752af-cfd1-4050-a79f-f6b90ea31800" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="71b45680-8c54-4e72-9bb6-6e9453b8969e" ownerguid="2355f1fb-810d-468e-9a3d-bd4b4ca1332b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="71b73b15-6d5c-4158-939e-a5b062f33b7c" ownerguid="b2830b72-c642-484f-9485-24682aa11ed8"> -<ExampleWords> -<AUni ws="en">interpret dreams, read palms, read tea leaves, read cards, read the stars, consult your horoscope, look into a crystal ball, play with a Ouija board, examine the entrails of an animal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What methods are used to divine secrets?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="71b761b1-f785-4a70-8268-c289cf7ff281" ownerguid="2517e8ce-94e1-4de9-8605-d63cabe2c9f3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="71ba1110-16bd-452a-a0d0-b01562159b18" ownerguid="e9136a3a-1564-4822-99ae-e70c050441d7"> -<Form> -<AUni ws="qvm-x-ach">tayta</AUni> -<AUni ws="qvm-x-acl">tayta</AUni> -<AUni ws="qvm-x-akh">tayta</AUni> -<AUni ws="qvm-x-akl">tayta</AUni> -<AUni ws="qvm-x-ame">tayta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="71bae8ee-3a52-4bd2-a266-423aa23105ae" ownerguid="62ed8254-e53a-4781-935e-79869619e40a"> -<ExampleWords> -<AUni ws="en">holy, consecrated, sanctified, sacred, devoted, baptized</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that has been dedicated?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="71bc7379-f438-489c-8251-49b3bd099df6"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Tsaynömi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="71bf6831-9cde-4d37-baa5-d063ac900ceb" ownerguid="03458dde-6a66-459e-a778-8898a462d17b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 V0/V0 R0/R0 ONSHEV/NOSUFF BN/BN</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">SURARI</AUni> -<AUni ws="es">CRTSEG</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="36bc0db3-e9b0-444b-b181-ed81670113b4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="71c035d1-97a0-4895-a20e-8c0ec731a229" ownerguid="a42db5b4-6317-4d3f-beff-cb92dbaca914"> -<ExampleWords> -<AUni ws="en">learn, acquaint, acquire, ascertain, conclude, dawn on, deduce, determine, discover, examine, experience, figure out, find, get (the answer), glean, grasp (mentally), gain (knowledge/understanding), look something up, master, obtain, perceive, pick someone's brain, pick up (a subject), question (v), realize, recognize, reflect, study, get an education</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to learning something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="71c0ef32-d1cc-4af5-9276-2c60abde2138"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">arra</AUni> -<AUni ws="qvm-x-acl">arra</AUni> -<AUni ws="qvm-x-akh">arra</AUni> -<AUni ws="qvm-x-akl">arra</AUni> -<AUni ws="qvm-x-ame">arra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+agarrar</AUni> -<AUni ws="qvm-x-acl">+agarrar</AUni> -<AUni ws="qvm-x-akh">+agarrar</AUni> -<AUni ws="qvm-x-akl">+agarrar</AUni> -<AUni ws="qvm-x-ame">+agarrar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.659" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0d46970f-f22a-4a8d-976f-c84d6ed0bde5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+agarrar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b89caa27-9fcb-43ee-a8fd-78066cdab07b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="481a232a-ac7d-4ef8-ae63-5dea076d242f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +agarrar 
\entryTyp root 
\gENG 
\gSPN 
\e +agarrar 
\c V1 
\ach arra 
\akh arra 
\acl arra 
\akl arra 
\ame arra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="71c4804c-feda-462a-93d5-e4be278ee3e4" ownerguid="902537c9-36c5-4e5f-a7b1-68f0a27408fb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">leaf</AUni> -<AUni ws="es">oja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d270c913-eae6-4719-9281-9c0b0ab28611" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="71c49268-6b01-40b3-a2bd-7c8202b327dd" ownerguid="3c4f3090-5820-46cb-a89e-51307ed69e00"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">swell</AUni> -<AUni ws="es">inca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="68d0bf24-3cd0-4612-9d02-e633fea20ef4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="71c50345-190d-47d0-8c33-fd94cd9983c7" ownerguid="8c5e3582-e7bd-4461-9dad-60c70cebbf75"> -<Form> -<AUni ws="qvm-x-ach">gorpa</AUni> -<AUni ws="qvm-x-acl">gorpa</AUni> -<AUni ws="qvm-x-akh">qorpa</AUni> -<AUni ws="qvm-x-akl">qorpa</AUni> -<AUni ws="qvm-x-ame">qurpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="71c6303f-2caf-447f-945c-c891bc307294" ownerguid="122956b3-570b-4668-a8b2-2988f9d8ec14"> -<Form> -<AUni ws="qvm-x-ach">kïlu</AUni> -<AUni ws="qvm-x-acl">kïlu; kïlu; kïlo</AUni> -<AUni ws="qvm-x-akh">kïlu</AUni> -<AUni ws="qvm-x-akl">kïlu; kïlu; kïlo</AUni> -<AUni ws="qvm-x-ame">kïlu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="71c70eb9-7ea1-4fe0-ae10-ab6645ed74a7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tenta</AUni> -<AUni ws="qvm-x-acl">tenta</AUni> -<AUni ws="qvm-x-akh">tenta</AUni> -<AUni ws="qvm-x-akl">tenta</AUni> -<AUni ws="qvm-x-ame">tenta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tentar</AUni> -<AUni ws="qvm-x-acl">+tentar</AUni> -<AUni ws="qvm-x-akh">+tentar</AUni> -<AUni ws="qvm-x-akl">+tentar</AUni> -<AUni ws="qvm-x-ame">+tentar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.866" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="47583c42-ae86-409c-ac4b-dd2f51275443" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tentar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4f27f161-d58d-4243-8786-2cafd219a295" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a98e075e-312c-4c13-a05b-5e6ddfd79d8a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tentar 
\entryTyp root 
\gENG tempt 
\gSPN tentar 
\e +tentar 
\c V2 
\ach tenta 
\akh tenta 
\acl tenta 
\akl tenta 
\ame tenta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="71cbefc3-e0a5-4b97-9672-fa0cb34c59e4" ownerguid="c4b110cf-d968-4bc6-ac0c-7e70cbad2756"> -<Abbreviation> -<AUni ws="en">4.2.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.208" /> -<DateModified val="2022-9-23 16:55:8.208" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a ceremony.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>51 Festivals</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Ceremony</AUni> -</Name> -<Questions> -<objsur guid="57899f34-de93-4c49-8385-75f049812287" t="o" /> -<objsur guid="7cbdd530-612f-409e-9783-0177ba8c5a8c" t="o" /> -<objsur guid="dbce0d0f-16d0-4098-bc1b-5e1b90faaaad" t="o" /> -<objsur guid="f11f536d-ea8b-43cf-8b59-c5d130a8b8cf" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="659ccabf-f978-4852-a1a6-c225f1d76b97" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="71cdc423-65bd-43ef-9001-04fd7e51a5b9" ownerguid="8503660c-03af-49ee-86b6-525aab4da828"> -<ExampleWords> -<AUni ws="en">can't hear, not catch, can't make out, out of earshot</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to not being able to hear something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="71ce60fa-028b-4f4d-95dc-56c3a7acba8a" ownerguid="8fdc9b23-20ed-46c9-aa61-5b47501acff7"> -<Form> -<AUni ws="qvm-x-ach">ticsha</AUni> -<AUni ws="qvm-x-acl">ticsha</AUni> -<AUni ws="qvm-x-akh">tiksha</AUni> -<AUni ws="qvm-x-akl">tiksha</AUni> -<AUni ws="qvm-x-ame">tiksha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="71d13442-06a9-4f20-8f41-48381908011f" ownerguid="2c5ce276-75ea-4fcd-9224-0796162d675e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="71d213b8-f9a1-463d-ab17-7d360eb5c00d" ownerguid="a30e0391-ea64-4938-9eca-023c351d60af"> -<ExampleWords> -<AUni ws="en">open, openly, in the open, for all to see</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is not hidden?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="71d57564-b6ff-4e98-b58b-24cb72af027c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">vincha</AUni> -<AUni ws="qvm-x-acl">vincha</AUni> -<AUni ws="qvm-x-akh">vincha</AUni> -<AUni ws="qvm-x-akl">vincha</AUni> -<AUni ws="qvm-x-ame">vincha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vincha</AUni> -<AUni ws="qvm-x-acl">+vincha</AUni> -<AUni ws="qvm-x-akh">+vincha</AUni> -<AUni ws="qvm-x-akl">+vincha</AUni> -<AUni ws="qvm-x-ame">+vincha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.404" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bcf046ed-540a-4229-98e0-2ebcfa17f9f9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vincha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5f657cc0-5fbc-48df-8ecb-440ee2b4f18d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ff6420db-c02f-46bd-a22e-f341d7fd89df" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vincha 
\entryTyp root 
\gENG head.band 
\gSPN vincha 
\e +vincha 
\c N0 
\ach vincha 
\akh vincha 
\acl vincha 
\akl vincha 
\ame vincha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="71d5b214-89a2-4ef6-b08b-8c7392ef5d3d" ownerguid="0a59434d-2634-4514-ab44-82236e2c0e2b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">naked</AUni> -<AUni ws="es">desnudo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="66c350c8-0089-4f24-83ed-06ac4e1d8691" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="71d8678b-5155-44ce-a168-c63eadd42172" ownerguid="b8d2fdb9-22ea-4040-8abb-aeeff0399f23"> -<ExampleWords> -<AUni ws="en">execute, put someone to death, sentence someone to death, capital punishment, the death penalty, capital offence, capital crime, punishable by death, execution, condemned, be on death row</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the government killing someone because they committed a crime?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="71d88ecd-1089-414a-8239-857e9597aea4" ownerguid="ad35b3e0-36f4-4c90-bb88-a670d3635bf2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">jump</AUni> -<AUni ws="es">brincar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="63a05e5a-1cee-4523-bdb6-426196666829" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="71db9179-0dd5-445f-b153-c1857c6cf612" ownerguid="fd91e39d-6d91-4ce7-a713-e0ba6fadda9e"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="0d925ce6-1d45-4886-bb2b-370dbc75d782" t="o" /> -<objsur guid="a740afc4-2bc0-4fdc-8cab-e650487a246e" t="o" /> -<objsur guid="52a1bf0a-8b17-4efd-a7e0-780388378409" t="o" /> -<objsur guid="050503b1-1eb3-4bdb-903d-70126d9e3eca" t="o" /> -<objsur guid="5d751ae0-4fbf-45f6-a96b-cb8329cf5b35" t="o" /> -</MorphBundles> -</rt> -<rt class="CmSemanticDomain" guid="71dbaf5f-2afa-4282-b9b8-8a50d8c8e5e9" ownerguid="79b580ff-64a7-445b-abcb-b49b9093779c"> -<Abbreviation> -<AUni ws="en">6.3.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to treating animal diseases.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Veterinary science</AUni> -</Name> -<OcmCodes> -<Uni>232 Applied Animal Science</Uni> -</OcmCodes> -<Questions> -<objsur guid="043f0ad4-078e-49ba-91f6-b78f4e5f1d45" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="acddd447-bf8a-4d74-8501-7defb0525cc0" t="o" /> -<objsur guid="4f80a620-30db-4529-94e8-f0cd9d0b0e96" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="71e2c416-ad97-451a-a76c-ce348da61e43" ownerguid="00fd6b27-f641-48bc-be5b-572dbfeaeb88"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">recover</AUni> -<AUni ws="es">recuperar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2066be46-f4ae-41da-9496-4a949d6ff527" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="71e3d0ee-7c51-40ce-bd65-2c720a31d5eb" ownerguid="ad4d28f0-5cbb-4b82-b736-9b41860a248c"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en"><the> leader; <a> really old man; <this> new shirt; <these> tomatoes; <that> book; <those> flowers; I want <this>.; <That> is what I want.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">a, an, the, this, these, that, those, specific</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What pronouns are used to indicate a particular referent?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="71e5ce38-59eb-440d-9c57-cc2f69fd502c" ownerguid="584cdea0-3843-41c8-af2b-bbea27969537"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Tagayga yarwarnëmi caycan. El es la descendencia de mi familia.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="71ec8bc6-b59d-4fa3-9d5f-27e4016dace4" ownerguid="8bc527ac-155c-4d88-b553-aab9e97e5502"> -<Form> -<AUni ws="qvm-x-ach">paciencia</AUni> -<AUni ws="qvm-x-acl">paciencia</AUni> -<AUni ws="qvm-x-akh">paciencia</AUni> -<AUni ws="qvm-x-akl">paciencia</AUni> -<AUni ws="qvm-x-ame">paciencia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="71f4fe1b-cd85-4f4d-bcd5-ad02c52458de" ownerguid="b34aa77d-24ec-4ef0-8b35-03070bce69ea"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="71f5e0c2-013e-41f2-bf4e-0da3b985a57e" ownerguid="24ac0a5d-4080-4bce-b752-c6df26e8891d"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">NAM 2.10 ¡Runacuna pasaypa mantsacaptinmi shongunpis curun curunyan y gongorninpis sicsicyan!</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="71f65d98-b7dc-4cda-856d-f70a031d93ad" ownerguid="73499b8b-76fc-4121-8bfa-1bdebe537259"> -<ExampleWords> -<AUni ws="en">phylum, class, order, family, genus, species, chordate, vertebrate, invertebrate, crustacean, rodent, insect, arthropod, mollusk, echidna, protozoa, protozoan, protozoon, amoebic, amoeba, bacteriophage, cold-blooded, warm-blooded, multicellular, single-celled, unicellular, microorganism, germ, virus, viral, purebred, hybrid, quadruped, biped, two-footed, four-footed, diurnal, nocturnal, beast, brute, vermin, varmint, albino</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to types of animals?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="71f89512-17f0-484c-aca8-ddd226e3c794" ownerguid="c5282457-be5f-4ce9-a802-91140cb0a22b"> -<Abbreviation> -<AUni ws="en">2.1.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the parts of the leg and foot.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Leg</AUni> -</Name> -<Questions> -<objsur guid="e555f57f-a3da-4ead-9fc2-fd8b3c40af39" t="o" /> -<objsur guid="f127f5e0-9daa-498a-b04f-4edde9b5fcd3" t="o" /> -<objsur guid="dab3cf63-5acc-4fd5-bfdc-8f6fbbc11199" t="o" /> -<objsur guid="6779ae55-a320-4f5c-860c-ffc4e17c0612" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="71fb62d6-392b-44b7-9025-2a0693f851dd" ownerguid="29a8ebbe-ebc4-4295-b6af-84331d019361"> -<ExampleWords> -<AUni ws="en">adage, aphorism, byword, cliché, dictum, epigram, expression, idiom, motto, phrase, proverb, saying, slogan, watchword</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words refer to a group of words that express a particular meaning?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="71fbc6a3-b878-4b99-a989-a6d423123ede" ownerguid="81ec7da6-ca8f-4b05-acd0-6471c9afcb2c"> -<Form> -<AUni ws="qvm-x-ach">tatara</AUni> -<AUni ws="qvm-x-acl">tatara</AUni> -<AUni ws="qvm-x-akh">tatara</AUni> -<AUni ws="qvm-x-akl">tatara</AUni> -<AUni ws="qvm-x-ame">tatara</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="71fc3be0-d93d-4f79-817d-301c595d1a30" ownerguid="e3a6f918-4b0f-4515-bd6c-4f3370bcbf67"> -<ExampleWords> -<AUni ws="en">join a group, affiliate, associate, enlist, enroll, enter, sign up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to joining a group?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="71fd7787-44d5-4f95-97c2-27ebea0bb85f" ownerguid="6a1042a9-6c0f-4823-bfa1-6d72d140d836"> -<Form> -<AUni ws="qvm-x-ach">uma</AUni> -<AUni ws="qvm-x-acl">uma</AUni> -<AUni ws="qvm-x-akh">uma</AUni> -<AUni ws="qvm-x-akl">uma</AUni> -<AUni ws="qvm-x-ame">uma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="Segment" guid="71fe498e-3cff-4b1a-b4ff-b95bd4917873" ownerguid="87678ea1-48ab-4611-93a4-90311b59529a"> -<Analyses> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="7b7dcf9a-2b9c-466b-b008-5059e96bd1af" t="r" /> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="acd50cc4-77e6-473f-88ef-b66403e035ca" t="r" /> -<objsur guid="d2b4ddb1-662f-4be5-9451-013523b963c3" t="r" /> -<objsur guid="630fa310-40fc-4015-8fb5-e9409d6cd676" t="r" /> -<objsur guid="91a24a4f-487c-4657-b2a4-b2f34e8bf101" t="r" /> -<objsur guid="faf42ce4-e9ce-48f7-8a64-c77b40306fe6" t="r" /> -<objsur guid="f440b36d-dae0-4082-8d00-5b814ef4c416" t="r" /> -<objsur guid="c552c8a3-e8fc-44e9-81f9-52ad272b6640" t="r" /> -<objsur guid="cba2872b-1495-408e-8d6d-34d9bb04e3dc" t="r" /> -<objsur guid="897389ae-4ed0-4437-b9a0-4a3305bf9c35" t="r" /> -<objsur guid="91ef6c77-bb2f-479a-890e-5cd6aa8694df" t="r" /> -<objsur guid="ad511186-81ea-4a35-8b33-9daf3c1edafe" t="r" /> -<objsur guid="ee54069f-0234-4db0-a227-e7fa5470c4f5" t="r" /> -<objsur guid="8adc2568-cd8b-4015-b533-e20686c33474" t="r" /> -<objsur guid="ad511186-81ea-4a35-8b33-9daf3c1edafe" t="r" /> -<objsur guid="72a0a663-2f1a-4e3f-a573-ed580dae64e6" t="r" /> -<objsur guid="19e731d8-63d8-4491-83d8-5c35ddfd57e9" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexEntry" guid="71fef8c1-59e0-413a-9742-0fb1a9c09d01"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">garachu</AUni> -<AUni ws="qvm-x-acl">garachu; garachu; garacho</AUni> -<AUni ws="qvm-x-akh">qarachu</AUni> -<AUni ws="qvm-x-akl">qarachu; qarachu; qaracho</AUni> -<AUni ws="qvm-x-ame">qarachu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qaratru</AUni> -<AUni ws="qvm-x-acl">*qaratru</AUni> -<AUni ws="qvm-x-akh">*qaratru</AUni> -<AUni ws="qvm-x-akl">*qaratru</AUni> -<AUni ws="qvm-x-ame">*qaratru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.104" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9abaf521-35ae-49fa-a344-36a670c51398" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qaratru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9c459cd2-2eb2-4a18-bdde-eeaaae6be022" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e234ba41-daa0-43fa-ae0f-fc3e53f8a18f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qaratru 
\entryTyp root 
\gENG 
\gSPN sarna 
\e *qaratru 
\c N0 
\ach garachu 
\akh qarachu 
\acl garachu / _# 
\acl garachu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl garacho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qarachu / _# 
\akl qarachu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qaracho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qarachu 
\i Lev 21.20 curcucuna, enänucuna, nübish nawicuna, garachucuna, pashtapäcogcuna y runtun däñashcunapis.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="7201aa6f-74a3-45c8-9595-d6024c3559a4" ownerguid="7f81453a-b307-40b1-a888-e3c335057fab"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.warm</AUni> -<AUni ws="es">ser.cálido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0da9375e-bdc3-44da-8c15-5d38ec1e4ff3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7201c509-d213-473d-a220-516e564a976a" ownerguid="27048124-c204-4585-9997-c51728f085d6"> -<ExampleWords> -<AUni ws="en">thankless (task), unacknowledged, unappreciated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe something someone does that no one thanks him for?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="720b13e8-453e-4dbb-9c63-65795f3144b9" ownerguid="06ece095-9d9c-405a-819a-f98198ea8192"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="720c004a-0b0f-4dc9-946c-fe7c8b49e29a"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Rutmi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexExampleSentence" guid="720d1e1c-8ca2-4bbc-a24e-305c2af55fcb" ownerguid="f9308afb-73bc-4444-a6bd-1a762dd98cdd"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">MRK 13.32 Tsaytaqa Taytalämi musyaykan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="720e418e-6b0f-42b5-9a22-297f5d22e90d" ownerguid="2b9c1681-c55d-4fcf-892e-4fd28f7b65df"> -<Form> -<AUni ws="qvm-x-ach">tsegta</AUni> -<AUni ws="qvm-x-acl">tsegta</AUni> -<AUni ws="qvm-x-akh">tseqta</AUni> -<AUni ws="qvm-x-akl">tseqta</AUni> -<AUni ws="qvm-x-ame">tsiqta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="720f37b1-89b9-4caf-85c0-c4052b2db357" ownerguid="79140357-b082-48e9-8d25-b34ee0a5ff5a"> -<Form> -<AUni ws="qvm-x-ach">capucha</AUni> -<AUni ws="qvm-x-acl">capucha</AUni> -<AUni ws="qvm-x-akh">kapucha</AUni> -<AUni ws="qvm-x-akl">kapucha</AUni> -<AUni ws="qvm-x-ame">kapucha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="72106968-7a5e-4def-909d-5745226a9dfa" ownerguid="9a20fe99-bf9c-4277-9d2e-ad56e04631d0"> -<Form> -<AUni ws="qvm-x-ach">desairi</AUni> -<AUni ws="qvm-x-acl">desairi; desaire</AUni> -<AUni ws="qvm-x-akh">desairi</AUni> -<AUni ws="qvm-x-akl">desairi; desaire</AUni> -<AUni ws="qvm-x-ame">desairi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="72111f4d-376f-466e-b5f4-7cd96909a504" ownerguid="2b1967de-1836-4f04-8807-c0586e02dfd4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">traitor</AUni> -<AUni ws="es">traicionero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="90084b12-5470-4757-8caf-31e13c2a67c6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="7211546a-9b07-43b9-9b9f-38cdf95a1f60"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pogsha</AUni> -<AUni ws="qvm-x-acl">pogsha</AUni> -<AUni ws="qvm-x-akh">poqsha</AUni> -<AUni ws="qvm-x-akl">poqsha</AUni> -<AUni ws="qvm-x-ame">puqsha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pushuqa.v</AUni> -<AUni ws="qvm-x-acl">*pushuqa.v</AUni> -<AUni ws="qvm-x-akh">*pushuqa.v</AUni> -<AUni ws="qvm-x-akl">*pushuqa.v</AUni> -<AUni ws="qvm-x-ame">*pushuqa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.40" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1f907841-5559-4ae5-b92c-a303575b4232" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pushuqa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="737ee139-892d-4c77-a290-8416257b5862" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7a3ac877-b973-4478-94b2-fe3e5fd4a556" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pushuqa.v 
\entryTyp root 
\gENG foam 
\gSPN espumar 
\e *pushuqa.v 
\c V1 
\ach pogsha 
\akh poqsha 
\acl pogsha 
\akl poqsha 
\ame puqsha 
\i MRK 9.18 Tsurëta supay elaqpitami pampaman saqtarin, poqshaytapis aqtutsin y kiruntapis uchutsin.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="7212ba9e-1753-4aa3-aea0-80ff1d798502"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">witi</AUni> -<AUni ws="qvm-x-acl">witi; wite</AUni> -<AUni ws="qvm-x-akh">witi</AUni> -<AUni ws="qvm-x-akl">witi; wite</AUni> -<AUni ws="qvm-x-ame">witi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*witi</AUni> -<AUni ws="qvm-x-acl">*witi</AUni> -<AUni ws="qvm-x-akh">*witi</AUni> -<AUni ws="qvm-x-akl">*witi</AUni> -<AUni ws="qvm-x-ame">*witi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.699" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a1f24308-6bf9-4c06-88c7-0cbfb87b60c8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*witi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="da70131e-1c62-4fe5-85cf-9a9d63a0e962" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="609054ad-1c15-4670-9dae-0a232d6b407f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *witi 
\entryTyp root 
\gENG move.away 
\gSPN alejarse 
\e *witi 
\c V1 | NC witiyämaytsu 
\mp +FinalI 
\ach witi 
\akh witi 
\acl witi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wite +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl witi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wite +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame witi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="7214fcfd-0c0d-41fb-939e-8ae18626a61f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ba:ja</AUni> -<AUni ws="qvm-x-acl">ba:ja</AUni> -<AUni ws="qvm-x-akh">ba:ja</AUni> -<AUni ws="qvm-x-akl">ba:ja</AUni> -<AUni ws="qvm-x-ame">ba:ja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bajar</AUni> -<AUni ws="qvm-x-acl">+bajar</AUni> -<AUni ws="qvm-x-akh">+bajar</AUni> -<AUni ws="qvm-x-akl">+bajar</AUni> -<AUni ws="qvm-x-ame">+bajar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.931" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="770e39c9-22ff-475e-a973-f681b56228a9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bajar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2adf0549-e19f-48af-8109-8822f51ac1ee" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7899056c-860f-4ef2-bfe9-4215f57c8bc4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bajar 
\entryTyp root 
\gENG go.down 
\gSPN bajar 
\e +bajar 
\c V1 
\ach ba:ja 
\akh ba:ja 
\acl ba:ja 
\akl ba:ja 
\ame ba:ja</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="721e2ee8-7ea5-4d17-94cc-d77d8e92bd27" ownerguid="8e11dd10-459b-4fb3-b876-7d80ec5f8a4d"> -<Abbreviation> -<AUni ws="en">4.3.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.235" /> -<DateModified val="2022-9-23 16:55:8.235" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to social refinement.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Polite</AUni> -</Name> -<Questions> -<objsur guid="0bcb602b-3e88-4e1e-a198-02e2e43a8178" t="o" /> -<objsur guid="0e2515d0-98f5-4c36-a36b-169df04e8a23" t="o" /> -<objsur guid="fa545b93-ab2f-4069-a582-27e74369f61b" t="o" /> -<objsur guid="189cc20b-2c61-4286-989f-e5bbc4549c74" t="o" /> -<objsur guid="9cb961a3-233a-4558-aba8-974d3e0bd8b7" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="f4ec8f2e-f89e-40c1-ae50-900927d20af6" t="o" /> -<objsur guid="fc193988-26ca-49e9-849a-b12456d98792" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="721e7782-9add-41fa-a7cf-659d5ca33926" ownerguid="6745c89d-1fcd-44b8-be4b-9fd9d62f64e7"> -<Abbreviation> -<AUni ws="en">4.2.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.215" /> -<DateModified val="2022-9-23 16:55:8.215" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to games. Some languages do not make a distinction between "Games" and "Sports."</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Game</AUni> -</Name> -<OcmCodes> -<Uni>524 Games</Uni> -</OcmCodes> -<Questions> -<objsur guid="0f3bddd9-8ddf-44d3-ab06-5bf78496906d" t="o" /> -<objsur guid="c0905a54-4608-40db-931f-a57dead3d197" t="o" /> -<objsur guid="29cd037e-f1bb-4a3b-89f6-bc7fc717f57a" t="o" /> -<objsur guid="4675eafe-e5f4-4092-a118-aed45fea9fc1" t="o" /> -<objsur guid="a849bb77-b36d-49db-9187-080063c9e817" t="o" /> -<objsur guid="67b9318f-573e-4cf0-aa5d-5fdd58cd370d" t="o" /> -<objsur guid="2876c38f-f039-44b8-a580-123565329048" t="o" /> -<objsur guid="0a78bd27-1512-4791-a73a-dc5913c070c2" t="o" /> -<objsur guid="15b04bb3-b635-4a1b-8822-89ed32045460" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="ac4a936e-6c05-4e73-8d40-dfe4223b47fa" t="o" /> -<objsur guid="2d92e248-1512-4e89-b886-425814c6dd32" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="721eb2fb-af24-4046-b5ae-1accdfd80df2" ownerguid="2351f52a-8822-46ad-99c4-7ef526e94a6f"> -<ExampleWords> -<AUni ws="en">return to, go back to, get back to, resume, resumption, bring back, revive, revival</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to starting to do something again that you had been doing before?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="721fd7de-d361-4323-880d-ffa83ba0ff1e" ownerguid="eb821083-3fb0-441a-9f1d-ad2a9ed918d8"> -<ExampleWords> -<AUni ws="en">prop, support, brace, retaining wall</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something that is put under or against something to keep it from falling?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="72221abe-5ffa-4a34-be4b-d5976ea19e1f" ownerguid="fa68a2c2-e14a-4e9f-a5d1-985054267fe5"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="7222b2b0-b937-4dcb-bd5f-08fa6af1f4d9" ownerguid="29366746-50da-4c40-b276-ccf85f210ae8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">enojarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4f04b079-7425-4126-a21c-dc8c78523a31" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="72256843-a201-408f-91fc-51bb071d5b1e" ownerguid="c3928c26-1def-4e50-9da5-16ff1e6fa779"> -<Form> -<AUni ws="qvm-x-ach">chuchau</AUni> -<AUni ws="qvm-x-acl">chuchau; chuchau; chuchao</AUni> -<AUni ws="qvm-x-akh">chuchaw</AUni> -<AUni ws="qvm-x-akl">chuchaw; chuchaw; chuchao</AUni> -<AUni ws="qvm-x-ame">chuchaw</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7226eea3-b798-4b9b-b3b2-9a78bd05a813" ownerguid="aa5658da-8926-4519-83a5-d451dc5a6b49"> -<ExampleWords> -<AUni ws="en">boiled egg, fried egg, scrambled eggs, poached egg, omelet, baked eggs, quiche, caviar (fish eggs)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to egg dishes?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="72274e9d-5d3c-4ae7-93ab-db3617cdda1e" ownerguid="38bbb33a-90bf-4a2c-a0e5-4bde7e134bd9"> -<Abbreviation> -<AUni ws="en">2.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.32" /> -<DateModified val="2022-9-23 16:55:8.32" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the sense of touch--to feel something with your skin, to feel hot or cold, to feel tired or rested.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>24E Touch, Feel</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Sense of touch</AUni> -</Name> -<Questions> -<objsur guid="9d8c7aac-98b1-4d9a-a2fc-123b839c9734" t="o" /> -<objsur guid="f7427ec0-aa89-47aa-a7fc-ef44b153c1e1" t="o" /> -<objsur guid="12efda08-b8c3-47c6-a0b9-dc5dd64e0456" t="o" /> -<objsur guid="61973f90-2658-4a6a-9bc3-56501d7e9688" t="o" /> -<objsur guid="c2398aa9-b531-420f-9c01-0c2136f5b55c" t="o" /> -<objsur guid="f3ef7f97-8da7-40e1-ab23-9006d63561bd" t="o" /> -<objsur guid="06d72502-eba5-40fb-b31b-ec757b7a4406" t="o" /> -<objsur guid="02187b51-6701-4e4d-87f3-93d0d0433a1e" t="o" /> -<objsur guid="2b2f72ca-1ca9-4c55-9e49-779c76f97d31" t="o" /> -<objsur guid="546eb730-9124-49cd-8cc8-fe6f699b7900" t="o" /> -<objsur guid="3a70df0c-2f93-4147-81c4-a055b1f0b72e" t="o" /> -<objsur guid="15d3dbfb-6d2e-489b-adc3-b940b7ec2880" t="o" /> -<objsur guid="66c89a04-3956-4449-bb37-76476ce39774" t="o" /> -<objsur guid="85191525-f6a5-404a-9b1a-e4d91b1021a5" t="o" /> -<objsur guid="a8d845a2-f818-4608-b26f-df1de466a1db" t="o" /> -<objsur guid="22bbd1af-ca0f-4076-82e9-0f4cfaf43fa4" t="o" /> -<objsur guid="39e29c84-5080-40c1-b250-4cbe429825ca" t="o" /> -<objsur guid="81677afb-883f-41ea-8294-f082542ac4c0" t="o" /> -<objsur guid="d0d2eaeb-8e4a-4753-8d97-d42aff2cd132" t="o" /> -<objsur guid="bb1b8472-62fb-4797-be8f-984bfd0ba103" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="50eb32a2-6dbb-4b7c-b370-aacdcfeaf5fc" t="r" /> -<objsur guid="768aed05-dbc9-4caf-9461-76cb3720f908" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="295dc021-5b50-47b3-8340-1631c6d6fadc" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="722a2521-4390-4736-990b-582014a4997b" ownerguid="2265a4bd-379d-4a9d-80d5-2318e6c8c683"> -<ExampleWords> -<AUni ws="en">be in, inside, inner, within</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is in something else?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="722ae82f-aeff-481f-8c3d-67892eb3c6c2" ownerguid="0c1bcc98-9bc3-4da0-8eac-ff8a6eecbf84"> -<ExampleWords> -<AUni ws="en">acquit, declare not guilty, declare innocent, find not guilty, clear, clear name, clear of charges, clear someone's record, prove innocence, set free, release</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used of the action of acquitting a person?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="722e270c-2762-4606-81ca-0e6e6a8cdc5e" ownerguid="9bd22b75-3bbb-4b10-96ca-255b1c9e97b1"> -<Form> -<AUni ws="qvm-x-ach">azufri; azufre</AUni> -<AUni ws="qvm-x-acl">azufri; azufri; azufre</AUni> -<AUni ws="qvm-x-akh">azufri; azufre</AUni> -<AUni ws="qvm-x-akl">azufri; azufri; azufre</AUni> -<AUni ws="qvm-x-ame">azufri; azufre</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="722fca0c-b48a-41bc-9927-3e4b70ab8498" ownerguid="cd01db6c-8aa6-42d1-93ac-05e81a8be523"> -<ExampleWords> -<AUni ws="en">servant, waiter, waitress, butler</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) Who serves food?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="72310c60-6099-45d6-b8ef-84a2cecc293f" ownerguid="2683f6d3-f4ef-4f5a-8864-32679ec323e2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7231401a-4476-4255-9e2f-963e20c6ea18" ownerguid="8052744f-7a9a-49da-89e3-4c518126180b"> -<ExampleWords> -<AUni ws="en">be confused, be in a muddle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling confused?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="72319b29-ab25-40bc-9fa5-611c4aa15022" ownerguid="fcda3c9b-d0d3-4f73-b815-0716fb5455d5"> -<Form> -<AUni ws="qvm-x-ach">gori</AUni> -<AUni ws="qvm-x-acl">gori; gore</AUni> -<AUni ws="qvm-x-akh">qori</AUni> -<AUni ws="qvm-x-akl">qori; qore</AUni> -<AUni ws="qvm-x-ame">quri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7234a59a-7781-4421-98d4-1a01ca72194c" ownerguid="58eeb55b-c57d-4f59-a7d6-9bf663fbf831"> -<ExampleWords> -<AUni ws="en">success, accomplishment, achievement</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something that you have succeeded in doing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="72387f49-7950-4ee1-ac1b-8f1db02ba874" ownerguid="0ce61f27-9de8-49b2-9189-6f6efe488f6d"> -<ExampleWords> -<AUni ws="en">search (n), quest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the act of searching for something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7238847f-4f14-4ed8-9a90-7f20998b1033" ownerguid="043a481a-83ab-44a6-a3eb-15aefa03f77b"> -<Form> -<AUni ws="qvm-x-ach">quilpa</AUni> -<AUni ws="qvm-x-acl">quilpa</AUni> -<AUni ws="qvm-x-akh">kilpa</AUni> -<AUni ws="qvm-x-akl">kilpa</AUni> -<AUni ws="qvm-x-ame">kilpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="72466dc4-8932-4997-a0c6-16a35bd04243" ownerguid="89883f90-e57f-43f2-8a7e-c5e98770a26d"> -<Form> -<AUni ws="qvm-x-ach">llampu</AUni> -<AUni ws="qvm-x-acl">llampu; llampo</AUni> -<AUni ws="qvm-x-akh">llampu</AUni> -<AUni ws="qvm-x-akl">llampu; llampo</AUni> -<AUni ws="qvm-x-ame">llampu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="7247d63c-98ee-48f8-9f8b-d8fbcd893411" ownerguid="a228d3b1-a6b5-4dd7-9c77-ff4a2df3cf52"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="724831f2-a76a-4195-802e-0353e2d5220b" ownerguid="2129b102-5acc-4824-ad82-f0663cced42a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mika</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d7a52586-e3cb-47a4-bb0f-95c98b351afd" t="r" /> -</Morph> -<Msa> -<objsur guid="f69667c3-a01d-49bd-8565-d45a284be800" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="724a3e70-64f3-4124-a6ff-9f2cb0e69f1b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">respuesta</AUni> -<AUni ws="qvm-x-acl">respuesta</AUni> -<AUni ws="qvm-x-akh">respuesta</AUni> -<AUni ws="qvm-x-akl">respuesta</AUni> -<AUni ws="qvm-x-ame">respuesta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+respuesta</AUni> -<AUni ws="qvm-x-acl">+respuesta</AUni> -<AUni ws="qvm-x-akh">+respuesta</AUni> -<AUni ws="qvm-x-akl">+respuesta</AUni> -<AUni ws="qvm-x-ame">+respuesta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.338" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8da1da33-2187-499d-bea1-7b62bc2c7ef2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+respuesta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="794d6986-4845-484b-99f7-300bc034d898" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0f8e72a1-5b5c-49aa-a346-77c205ed0b1d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +respuesta 
\entryTyp root 
\gENG answer 
\gSPN respuesta 
\e +respuesta 
\c N0 
\ach respuesta 
\akh respuesta 
\acl respuesta 
\akl respuesta 
\ame respuesta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="724c311d-4412-4eb5-af12-944b2f111f03" ownerguid="eb7d0a78-573e-4536-8e86-1193f9b526a1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">small</AUni> -<AUni ws="es">chico</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d6a05361-eae2-49b4-a24d-bd114303e20f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7251b6fa-520f-4bd1-ab69-97945f1b86c3" ownerguid="99e04950-3a2f-49f1-a518-c7db96a93855"> -<Form> -<AUni ws="qvm-x-ach">fuerza</AUni> -<AUni ws="qvm-x-acl">fuerza</AUni> -<AUni ws="qvm-x-akh">fuerza</AUni> -<AUni ws="qvm-x-akl">fuerza</AUni> -<AUni ws="qvm-x-ame">fuerza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="72530bd4-8304-46c4-8bc1-b491fa99f5fc" ownerguid="6045c6eb-efea-4586-95f8-840d32578d66"> -<ExampleWords> -<AUni ws="en">arranged, ordered, well-ordered, be in order, regular</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe things that have been arranged?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7257a78b-c58a-4ff3-9883-204b9afa6030" ownerguid="400f89d6-11fb-4d8d-9d00-d91a7964a1ad"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="29494ad9-0984-49fb-b3a8-3125050f6fb4" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="3917c48b-db8d-4ea3-a95c-ffb18627ca8a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="725b64c9-9618-4654-9a42-7fe2a9ab3456" ownerguid="dc60204d-7c7f-4b73-8aa2-df87ae226f1f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="725bed9d-fbfa-4bdd-b5e4-89718faadfb2" ownerguid="3e1bf327-fc33-4051-afe1-f210b4b2592f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">manure</AUni> -<AUni ws="es">bosta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7abd7118-d5d1-4d2a-8689-6f1dc45cae97" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="725c75bc-3644-4872-869f-012870c7110e" ownerguid="39dcb6b9-94df-45be-a128-c14c7a9dcdbd"> -<ExampleWords> -<AUni ws="en">gas, belching, cramps</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What are the symptoms of stomach illness?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="725d78eb-8cac-4b2f-b5a4-f0a9adb80f5d" ownerguid="7556a257-3703-40d3-91d3-c891fb250947"> -<Abbreviation> -<AUni ws="en">4.9.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.304" /> -<DateModified val="2022-9-23 16:55:8.304" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to thinking and acting against God or religion.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>53L Sacrilege</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Irreligion</AUni> -</Name> -<OcmCodes> -<Uni>798 Religious Intolerance</Uni> -</OcmCodes> -<Questions> -<objsur guid="b38bbf3c-d2a2-4809-8291-d6a354a43f12" t="o" /> -<objsur guid="8a05b503-2898-4892-98e7-e1bccaf4f0d3" t="o" /> -<objsur guid="47a67d6e-2bcb-4cfc-a488-9adf45f9f60b" t="o" /> -<objsur guid="1a2ba558-57af-4344-bea2-ea7d5bc12d74" t="o" /> -<objsur guid="1b526402-ffe8-49b3-8524-332115850b8c" t="o" /> -<objsur guid="e330e100-457e-485e-abe5-f022a91e2f45" t="o" /> -<objsur guid="c54edc2c-299f-42fe-a722-e14ef303e3f3" t="o" /> -<objsur guid="98b3d2b5-67ee-430f-ba5c-6965897a0d1e" t="o" /> -<objsur guid="eff2ac25-4a52-4c53-9ddc-d1d962d060d1" t="o" /> -<objsur guid="2b1c4c5d-3f45-42a2-abee-8e8a4c60621e" t="o" /> -<objsur guid="6e526642-bf98-42b1-87c8-76621d48859e" t="o" /> -<objsur guid="1c676c1c-4270-4e31-a3ca-42d845e87bac" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="725d7bc3-288a-48fd-b4fa-249419cd2c1c" ownerguid="6d03f062-73ce-459f-9bd0-a73b46616627"> -<Form> -<AUni ws="qvm-x-ach">venganza</AUni> -<AUni ws="qvm-x-acl">venganza</AUni> -<AUni ws="qvm-x-akh">venganza</AUni> -<AUni ws="qvm-x-akl">venganza</AUni> -<AUni ws="qvm-x-ame">venganza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7262dd08-5627-4ad1-960e-4e13ab0c93b8" ownerguid="2b6f9af7-04ee-4030-a2cd-87d55959caa8"> -<ExampleWords> -<AUni ws="en">frighten, give someone a fright, frighten the life out of someone, alarm (v), cow (v), give someone the creeps, daunt, intimidate, petrify, rattle (v), scare, spook, startle, terrify, terrorize, unnerve, make your hair stand on end, make your blood run cold</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to causing someone to feel afraid?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="72668e20-2e24-4edf-976f-f32e6c2791cd" ownerguid="104d40c9-2a4f-4696-ad99-5cf0eb86ab2e"> -<ExampleWords> -<AUni ws="en">heal, mend</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to an injury healing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="72678d13-519c-4819-9559-4a568b014302" ownerguid="bbc5b3a2-4c6e-4d07-849b-4d616615a794"> -<ExampleWords> -<AUni ws="en">the distant past, long ago</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that existed or happened long ago?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="726923d4-b25c-46eb-8ab0-427207177ae3" ownerguid="1fda68d4-5941-4695-b656-090d603a3344"> -<Abbreviation> -<AUni ws="en">5.2.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.306" /> -<DateModified val="2022-9-23 16:55:8.306" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the steps in food preparation. One way to find the words in this domain is to describe how each type of food is prepared.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Steps in food preparation</AUni> -</Name> -<Questions> -<objsur guid="d1ff1a11-57fc-4395-8586-0906194e8319" t="o" /> -<objsur guid="52f305fd-f9fc-46ed-bf1a-bdef3bac6f33" t="o" /> -<objsur guid="9b590af2-fc7a-4b33-9f70-e735b749d546" t="o" /> -<objsur guid="98237a84-d5ed-438d-9001-bc42bf4af1f3" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="6e83c471-0fe8-4641-8ecf-68b63df29ab7" t="o" /> -<objsur guid="8a9b5484-eda8-4194-95ca-c2e76e83ae67" t="o" /> -<objsur guid="ac7de73d-0059-4f35-9317-462a1813edba" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="72695616-6010-424c-b3cb-b68dba0894c6" ownerguid="325cc876-f8a2-4609-b9e9-548f9b47c9b4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="726f0b86-4271-4b06-bdf2-b38c9e3a7629" ownerguid="f7f8cb90-5bb1-4dd9-b0d2-194539e34d60"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StTxtPara" guid="72716f79-42bb-44a0-bd13-f9daba74de2e" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">yarpapäkatsin. </Run> -<Run ws="en">\tr < V1 *yarpäv1 > PLALLF CAUS 3</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="540c868b-ee7f-487b-8148-da08d4c3ebf6" t="o" /> -<objsur guid="0eef6c72-18db-4d3d-af68-57ebeb5b672a" t="o" /> -</Segments> -</rt> -<rt class="MoStemAllomorph" guid="72718edb-bb62-426b-bb02-296f8e15c267" ownerguid="9392e71c-31e4-4066-a9a5-7768e63c921f"> -<Form> -<AUni ws="qvm-x-ach">gueushu</AUni> -<AUni ws="qvm-x-acl">gueushu; gueushu; gueusho</AUni> -<AUni ws="qvm-x-akh">qewshu</AUni> -<AUni ws="qvm-x-akl">qewshu; qewshu; qewsho</AUni> -<AUni ws="qvm-x-ame">qiwshu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="72791192-a596-4669-ab01-8235a0cc3b43" ownerguid="f4690f3f-8ae3-41eb-a46c-33957cb75b7b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="d761a7f0-8bb2-450a-adfd-4759c91ef19e" t="o" /> -<objsur guid="293d0ef6-e095-4eb3-8816-884ae22918ba" t="o" /> -<objsur guid="8adb5e4f-6aa7-4721-800d-1336ac4e8b89" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="72794cd1-cfa4-489c-adf6-c9d4770aeb66" ownerguid="ea17aba7-6d4e-4dbf-89ea-84a1b1c47647"> -<ExampleWords> -<AUni ws="en">bigger, biggest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a container being bigger than another container?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="727a8f65-471c-46ac-bdf8-11d1ae821361" ownerguid="b0905fa9-2f90-410b-8eb5-7c7944c4f0f9"> -<ExampleWords> -<AUni ws="en">immorality, illicit relations, sexual sin, lasciviousness, licentiousness, obscenity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to sexual immorality?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="727bf718-fe80-4272-846a-39cf214b7d28" ownerguid="321264e3-bd8d-4c08-895b-94f56a413b40"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cachari</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cachari; cachare</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kachari</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kachari; kachare</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kachari</Run> -</AStr> -</Form> -<Morph> -<objsur guid="609f45cf-9df1-4976-b948-69672b584e8f" t="r" /> -</Morph> -<Msa> -<objsur guid="c533f197-4448-4a72-87f3-bef95ff4fc6e" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="727de97b-583d-4366-8d87-1b3a69eb3625" ownerguid="81b564d9-347e-4ad1-9cc1-bfa7497fe06a"> -<Form> -<AUni ws="qvm-x-ach">paralïticu</AUni> -<AUni ws="qvm-x-acl">paralïticu; paralïticu; paralïtico</AUni> -<AUni ws="qvm-x-akh">paralïticu</AUni> -<AUni ws="qvm-x-akl">paralïticu; paralïticu; paralïtico</AUni> -<AUni ws="qvm-x-ame">paralïticu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="727ee1c0-135d-4f99-968a-c7fb4e55a992" ownerguid="ba06de9e-63e1-43e6-ae94-77bea498379a"> -<ExampleWords> -<AUni ws="en">person, human being, man, individual, figure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a single member of the human race?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7281f9c3-3138-4451-b848-383324621b26" ownerguid="20694d1a-2637-46ee-a27b-56f7347b15d3"> -<Form> -<AUni ws="qvm-x-ach">lugar</AUni> -<AUni ws="qvm-x-acl">lugar</AUni> -<AUni ws="qvm-x-akh">lugar</AUni> -<AUni ws="qvm-x-akl">lugar</AUni> -<AUni ws="qvm-x-ame">lugar</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="728212fc-a6a6-474f-a903-6a24f7286953" ownerguid="916d3f4f-5ab7-41c7-9d0c-d0c2879bd628"> -<Form> -<AUni ws="qvm-x-ach">quebranta</AUni> -<AUni ws="qvm-x-acl">quebranta</AUni> -<AUni ws="qvm-x-akh">quebranta</AUni> -<AUni ws="qvm-x-akl">quebranta</AUni> -<AUni ws="qvm-x-ame">quebranta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="728227aa-57bc-444b-8283-08e00d26b097" ownerguid="780093c1-faaa-4732-8305-4e024b56005d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="7282cd91-def6-4665-9b56-b1595d45b8f1" ownerguid="1ab23a1b-07ae-44fc-b3c8-ceaac231ee9a"> -<Form> -<AUni ws="qvm-x-ach">camal</AUni> -<AUni ws="qvm-x-acl">camal</AUni> -<AUni ws="qvm-x-akh">camal</AUni> -<AUni ws="qvm-x-akl">camal</AUni> -<AUni ws="qvm-x-ame">camal</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="7285ed06-99de-4140-910d-b3a7ff755ba2" ownerguid="c87fcda1-31ee-4809-b284-da0a392dea87"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="72862fee-38c5-48e5-8db3-0a3884cb00e0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cabildu; cabildo</AUni> -<AUni ws="qvm-x-acl">cabildu; cabildu; cabildo</AUni> -<AUni ws="qvm-x-akh">cabildu; cabildo</AUni> -<AUni ws="qvm-x-akl">cabildu; cabildu; cabildo</AUni> -<AUni ws="qvm-x-ame">cabildu; cabildo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cabildo</AUni> -<AUni ws="qvm-x-acl">+cabildo</AUni> -<AUni ws="qvm-x-akh">+cabildo</AUni> -<AUni ws="qvm-x-akl">+cabildo</AUni> -<AUni ws="qvm-x-ame">+cabildo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.9" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="acf7cd30-138a-4008-a7db-5ba057b8b21c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cabildo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="17ff4c40-2fa7-4909-b53f-fde50695ba7f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3b2fee60-89b6-4b54-9278-79e4b423a22e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cabildo 
\entryTyp root 
\gENG town.council 
\gSPN cabildo 
\e +cabildo 
\c N0 
\ach cabildu / ~_# 
\ach cabildo / _# 
\akh cabildu / ~_# 
\akh cabildo / _# 
\acl cabildu / ~_# 
\acl cabildu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cabildo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cabildu / ~_# 
\akl cabildu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cabildo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cabildu / ~_# 
\ame cabildo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="728bbc7c-e5b3-47d8-8532-72239e5c88bb" ownerguid="e45b8bac-9623-4f84-a113-9dec13a8db64"> -<Abbreviation> -<AUni ws="en">3.5.1.2.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to summarizing what you have said or what someone else has said.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Summarize</AUni> -</Name> -<Questions> -<objsur guid="3168bd48-f555-4ad8-bb6c-ef0b9dd56849" t="o" /> -<objsur guid="163d23dc-779d-4b67-8097-e3c21fa5d27c" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="dc1ab28c-3e1e-474c-8359-2548b7ad5595" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="728be364-1b88-4c5b-920a-02cbdfbdf15d" ownerguid="97baae03-212c-446c-9059-214d198cce9d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">suero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b37e28d2-d11a-418d-983b-4edf830d297b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="728dc1a1-1574-4824-b1d9-b3fdde6ff6b3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lu:tu</AUni> -<AUni ws="qvm-x-acl">lu:tu; lu:to</AUni> -<AUni ws="qvm-x-akh">lu:tu</AUni> -<AUni ws="qvm-x-akl">lu:tu; lu:to</AUni> -<AUni ws="qvm-x-ame">lu:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lutar</AUni> -<AUni ws="qvm-x-acl">+lutar</AUni> -<AUni ws="qvm-x-akh">+lutar</AUni> -<AUni ws="qvm-x-akl">+lutar</AUni> -<AUni ws="qvm-x-ame">+lutar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.114" /> -<DateModified val="2022-10-10 21:19:47.698" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e52e6f18-de42-4dde-8ffe-01a8cc96e29e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lutar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8661d2a5-63da-4d8d-b39c-bc052d111240" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1960be68-e9a7-4d1a-aa71-598449bece1f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lutar 
\entryTyp root 
\gENG mourn 
\gSPN 
\e +lutar 
\c V1 
\ach lu:tu 
\akh lu:tu 
\acl lu:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lu:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lu:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lu:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lu:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="728ef786-3d8f-474b-9cbc-f299e971b56b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shelgu</AUni> -<AUni ws="qvm-x-acl">shelgu; shelgo</AUni> -<AUni ws="qvm-x-akh">shelqu</AUni> -<AUni ws="qvm-x-akl">shelqu; shelqo</AUni> -<AUni ws="qvm-x-ame">shilqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shillqu.v</AUni> -<AUni ws="qvm-x-acl">*shillqu.v</AUni> -<AUni ws="qvm-x-akh">*shillqu.v</AUni> -<AUni ws="qvm-x-akl">*shillqu.v</AUni> -<AUni ws="qvm-x-ame">*shillqu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.581" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e31d3adb-175e-4bab-861e-a43ad1b9f2b1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shillqu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1f51c050-d0da-4f1d-87b8-2d9c2a6adba1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="836e06fe-424c-4eca-a075-1ffb6df4a36e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shillqu.v 
\entryTyp root 
\gENG 
\gSPN 
\e *shillqu.v 
\c V1 
\ach shelgu 
\akh shelqu 
\acl shelgu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shelgo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shelqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shelqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shilqu 
\i Tsay hïluwan shelgutsipaylapa awargan jacuta.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="728ef849-d561-4268-8db3-725284bd902b" ownerguid="a1c7568b-4114-4103-89b1-7dbef4419f84"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">light</AUni> -<AUni ws="es">luz</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="df0bf86c-7fb5-4cca-b106-7cf0d90e6ed9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="728f8337-6c44-4b32-9f6b-817988a59c53" ownerguid="4acb340d-ab6c-4717-a5f4-d95749e9f2f9"> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="7292a0c7-91a5-4b69-b7f9-1774bf418174" ownerguid="a2417520-5648-492d-b8c5-c2dc258604ef"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="72933e4b-192d-45e1-9df3-cca2aa702685" ownerguid="cb99a086-8c6d-4f90-81db-6afa69ae5455"> -<ExampleWords> -<AUni ws="en">hiss, rattle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What sounds do snakes make?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="729385cd-7886-4efe-a986-f441af5774fa" ownerguid="f9d0dbe3-8a78-4bf6-bab9-8613091e6073"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">last</AUni> -<AUni ws="es">durar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cc36b956-310a-452a-a4f3-908466d95089" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7295100a-8986-444c-9a26-1a566c5bc2ad" ownerguid="045dfc91-440c-4f61-9c87-f75c343c718e"> -<Form> -<AUni ws="qvm-x-ach">acha</AUni> -<AUni ws="qvm-x-acl">acha</AUni> -<AUni ws="qvm-x-akh">acha</AUni> -<AUni ws="qvm-x-akl">acha</AUni> -<AUni ws="qvm-x-ame">acha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="7295ccf5-e015-4f85-80aa-17bc0c2625d6" ownerguid="20ef979b-dc82-4bf3-a4c4-bc02c73ee4b3"> -<Form> -<AUni ws="qvm-x-ach">carnish</AUni> -<AUni ws="qvm-x-acl">carnish</AUni> -<AUni ws="qvm-x-akh">carnish</AUni> -<AUni ws="qvm-x-akl">carnish</AUni> -<AUni ws="qvm-x-ame">carnish</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="7295eadd-b61a-4779-a15d-77e012a07fba" ownerguid="d59c604b-59d7-4f2c-a2c0-3e3961802abb"> -<Form> -<AUni ws="qvm-x-ach">ucpa</AUni> -<AUni ws="qvm-x-acl">ucpa</AUni> -<AUni ws="qvm-x-akh">ukpa</AUni> -<AUni ws="qvm-x-akl">ukpa</AUni> -<AUni ws="qvm-x-ame">ukpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7298572f-32a5-4228-b544-1ed7658d9721" ownerguid="8a7fdd75-01dc-4d40-84ff-fa0484da3abb"> -<ExampleWords> -<AUni ws="en">violent, gory</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a story that is about people doing violent things?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7299a7c6-da78-4672-8cee-fb30d5475ecc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cusina</AUni> -<AUni ws="qvm-x-acl">cusina</AUni> -<AUni ws="qvm-x-akh">kusina</AUni> -<AUni ws="qvm-x-akl">kusina</AUni> -<AUni ws="qvm-x-ame">kusina</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cocina</AUni> -<AUni ws="qvm-x-acl">+cocina</AUni> -<AUni ws="qvm-x-akh">+cocina</AUni> -<AUni ws="qvm-x-akl">+cocina</AUni> -<AUni ws="qvm-x-ame">+cocina</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.132" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ecae4d8a-3613-44ec-899b-500f57c2818f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cocina</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ecb715ad-6332-4bad-a6c5-219f7a109473" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e805aa4f-3a58-4867-87fb-92f9f71f66cf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cocina 
\entryTyp root 
\gENG stove 
\gSPN cocina 
\e +cocina 
\c N0 
\mp +assimilated KQWchange 
\ach cusina 
\akh kusina 
\acl cusina 
\akl kusina 
\ame kusina</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="729af403-1977-4ee5-97e4-f3263e2dd378" ownerguid="de917b61-5157-4309-b0b5-dfee703d61f3"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="729b249e-aa55-4c0c-bf0e-0034e71e7e84"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">imay</AUni> -<AUni ws="qvm-x-acl">imay</AUni> -<AUni ws="qvm-x-akh">imay</AUni> -<AUni ws="qvm-x-akl">imay</AUni> -<AUni ws="qvm-x-ame">imay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*imay</AUni> -<AUni ws="qvm-x-acl">*imay</AUni> -<AUni ws="qvm-x-akh">*imay</AUni> -<AUni ws="qvm-x-akl">*imay</AUni> -<AUni ws="qvm-x-ame">*imay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.802" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7dc637be-43fa-4533-8e36-cade2d8b022b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*imay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0c7aaae1-027c-4d93-9d3c-c82dc83275da" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="086310b0-90c3-4b27-8e90-00bd11996be7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *imay 
\entryTyp root 
\gENG when 
\gSPN cuándo 
\e *imay 
\c R0 
\mp +FinalC 
\ach imay 
\akh imay 
\acl imay 
\akl imay 
\ame imay 
\mcc *imay / ~_ BEC 
\mcc *imay / ~_ DO1</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="729c9a97-a220-443b-9f23-a046e8e9f84d" ownerguid="2ccab97a-fb98-4054-a29b-e5ceac8ca1b4"> -<ExampleWords> -<AUni ws="en">worship, adore, revere, reverence, lift up your heart, pay homage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to acts of worship toward God?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="729cc538-3438-455f-b5b9-702b39f9af7a" ownerguid="2611b86e-0798-407a-9971-76ffc7ccbc1a"> -<Form> -<AUni ws="qvm-x-ach">gara</AUni> -<AUni ws="qvm-x-acl">gara</AUni> -<AUni ws="qvm-x-akh">qara</AUni> -<AUni ws="qvm-x-akl">qara</AUni> -<AUni ws="qvm-x-ame">qara</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="729d5bbc-0dbb-484d-adb9-77b642f98675" ownerguid="f77172f4-dd8d-4624-9b2c-c0aaf9303635"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="r" /> -</Morph> -</rt> -<rt class="WfiAnalysis" guid="72a0a663-2f1a-4e3f-a573-ed580dae64e6" ownerguid="710aca63-2251-4729-89fc-dc216bc37936"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="dd17a34f-452d-4d99-971d-9eb6c20c7e99" t="o" /> -<objsur guid="c98630c7-8b70-4348-bbb2-c35faa58ce50" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="72a3917e-d358-461b-b71d-6164244d9c57" ownerguid="b7eaa4f1-8aa8-4f77-9cf2-2bc36d5cc650"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">climb</AUni> -<AUni ws="es">subir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2fcd9bc3-1801-488e-8b8e-8fa7c30eea5a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoMorphAdhocProhib" guid="72a7191a-5c02-4578-9640-a94e405444de" ownerguid="b80228bc-ea5e-11de-9d24-0013722f8dec"> -<Adjacency val="4" /> -<Disabled val="False" /> -<FirstMorpheme> -<objsur guid="5a6f0521-2196-49ef-ac84-f9d082f56194" t="r" /> -</FirstMorpheme> -</rt> -<rt class="LexEntry" guid="72a7faef-6f1d-40fb-a97b-88731154eaca"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">testi:gu</AUni> -<AUni ws="qvm-x-acl">testi:gu; testi:gu; testi:go</AUni> -<AUni ws="qvm-x-akh">testi:gu</AUni> -<AUni ws="qvm-x-akl">testi:gu; testi:gu; testi:go</AUni> -<AUni ws="qvm-x-ame">testi:gu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+testigo</AUni> -<AUni ws="qvm-x-acl">+testigo</AUni> -<AUni ws="qvm-x-akh">+testigo</AUni> -<AUni ws="qvm-x-akl">+testigo</AUni> -<AUni ws="qvm-x-ame">+testigo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.876" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="458773e1-8dde-491f-9f83-ff1510addf75" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+testigo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b2b866bb-32dc-4656-aea5-2a188dbdc5e5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="05a74f2f-7b8c-4b19-bb8b-f480ea9fee0d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +testigo 
\entryTyp root 
\gENG witness 
\gSPN testigo 
\e +testigo 
\c N0 
\ach testi:gu 
\akh testi:gu 
\acl testi:gu / _# 
\acl testi:gu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl testi:go +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl testi:gu / _# 
\akl testi:gu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl testi:go +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame testi:gu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="72a8d191-c0d9-412b-aa25-6dcbab9f228a" ownerguid="21d540f7-a318-4175-a931-00a88c0fb93e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmAnnotationDefn" guid="72abb400-f274-4498-92c5-77e99c90f75b" ownerguid="82e2fd92-48d8-43c9-ba84-cc4a2a5beead"> -<AllowsComment val="True" /> -<AllowsFeatureStructure val="False" /> -<AllowsInstanceOf val="False" /> -<BackColor val="0" /> -<CanCreateOrphan val="False" /> -<CopyCutPastable val="True" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">Checks for repeated words.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<HelpId> -<Uni>Repeated_Words</Uni> -</HelpId> -<Hidden val="False" /> -<InstanceOfSignature val="0" /> -<IsProtected val="True" /> -<MaxDupOccur val="0" /> -<Multi val="True" /> -<Name> -<AUni ws="en">Repeated Words</AUni> -</Name> -<PromptUser val="False" /> -<Severity val="0" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -<UserCanCreate val="False" /> -<ZeroWidth val="False" /> -</rt> -<rt class="LexEntry" guid="72ada597-ac17-4c9d-a4a0-f7da15bf94a3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuchpa</AUni> -<AUni ws="qvm-x-acl">cuchpa</AUni> -<AUni ws="qvm-x-akh">kuchpa</AUni> -<AUni ws="qvm-x-akl">kuchpa</AUni> -<AUni ws="qvm-x-ame">kuchpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kutrpa.n</AUni> -<AUni ws="qvm-x-acl">*kutrpa.n</AUni> -<AUni ws="qvm-x-akh">*kutrpa.n</AUni> -<AUni ws="qvm-x-akl">*kutrpa.n</AUni> -<AUni ws="qvm-x-ame">*kutrpa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.33" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="49e59f52-5f13-47bd-9404-b5eb61b1a4d9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kutrpa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="55ca4997-0b5e-4003-99ee-b2028449544a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8988fd68-3256-4bdf-86bb-6861cd091b3b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kutrpa.n 
\entryTyp root 
\gENG 
\gSPN piedra.caida 
\e *kutrpa.n 
\c N0 
\ach cuchpa 
\akh kuchpa 
\acl cuchpa 
\akl kuchpa 
\ame kuchpa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="72b0b82e-692d-4d21-91e2-4eb60e68c577" ownerguid="97e1aba5-2ac1-44a3-8f18-59b2347a54a1"> -<ExampleWords> -<AUni ws="en">wood, glass, screen</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What materials are used to make doors and windows?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="72b375c9-1af6-4475-ae45-81262e1f09ad" ownerguid="e36a397f-4069-442e-8148-703abdd4e179"> -<Form> -<AUni ws="qvm-x-ach">sin</AUni> -<AUni ws="qvm-x-acl">sin</AUni> -<AUni ws="qvm-x-akh">sin</AUni> -<AUni ws="qvm-x-akl">sin</AUni> -<AUni ws="qvm-x-ame">sin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="72b55d52-7d6c-41f5-98d9-5f14ecb80938" ownerguid="7648040b-0aa5-4d9a-8f13-ffd066b81602"> -<ExampleWords> -<AUni ws="en">get longer, lengthen, stretch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something becoming long?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="72b68e20-1bcd-4d9f-a719-d446ff3845af" ownerguid="69b43685-e475-487b-8324-f666f6ff2c76"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">aunt</AUni> -<AUni ws="es">tía</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2d830e7e-9ddd-4c55-8e82-c1cb78b96d2e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="72ba2c7e-e694-4e53-aedc-660a817e6995" ownerguid="33d1a85d-ff32-4ab3-a9fc-2779022c0bac"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">happy.to.see</AUni> -<AUni ws="es">anhelar.ver</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b41d76cc-1c6c-4cbb-a7e5-da25cae7a096" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="72c19243-f4d0-4732-a5bb-49a528f058a7" ownerguid="d95ed463-ac64-4004-9c3b-0fce2f7639be"> -<ExampleWords> -<AUni ws="en">exit, outlet, vent, mouth, opening, way out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to an opening where something can move out?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="72c2f394-3231-48e4-b597-205971b0c731"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ami:gu</AUni> -<AUni ws="qvm-x-acl">ami:gu; ami:gu; ami:go</AUni> -<AUni ws="qvm-x-akh">ami:gu</AUni> -<AUni ws="qvm-x-akl">ami:gu; ami:gu; ami:go</AUni> -<AUni ws="qvm-x-ame">ami:gu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+amigo</AUni> -<AUni ws="qvm-x-acl">+amigo</AUni> -<AUni ws="qvm-x-akh">+amigo</AUni> -<AUni ws="qvm-x-akl">+amigo</AUni> -<AUni ws="qvm-x-ame">+amigo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.759" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="becba040-7467-4777-bf34-ebda5f1b907c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+amigo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6ed7cbd8-2bdd-431b-ad49-d5ac1d381377" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dad84084-cee6-465a-8030-99858078aa4d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +amigo 
\entryTyp root 
\gENG friend 
\gSPN amigo 
\e +amigo 
\c N0 
\ach ami:gu 
\akh ami:gu 
\acl ami:gu / _# 
\acl ami:gu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ami:go +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ami:gu / _# 
\akl ami:gu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ami:go +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ami:gu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="72c4b420-0f0a-4e52-b73d-9aefed905cf6" ownerguid="3fca793b-3f79-4972-ba71-3486ea899f5f"> -<Form> -<AUni ws="qvm-x-ach">ayuna</AUni> -<AUni ws="qvm-x-acl">ayuna</AUni> -<AUni ws="qvm-x-akh">ayuna</AUni> -<AUni ws="qvm-x-akl">ayuna</AUni> -<AUni ws="qvm-x-ame">ayuna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="72c734dc-727b-40ac-bfeb-bf6bbb79634a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">trampo:su</AUni> -<AUni ws="qvm-x-acl">trampo:su; trampo:su; trampo:so</AUni> -<AUni ws="qvm-x-akh">trampo:su</AUni> -<AUni ws="qvm-x-akl">trampo:su; trampo:su; trampo:so</AUni> -<AUni ws="qvm-x-ame">trampo:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tramposo</AUni> -<AUni ws="qvm-x-acl">+tramposo</AUni> -<AUni ws="qvm-x-akh">+tramposo</AUni> -<AUni ws="qvm-x-akl">+tramposo</AUni> -<AUni ws="qvm-x-ame">+tramposo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.560" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c9293a49-8f32-4348-840a-9dfc7a94002d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tramposo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8fc87ed3-39b7-4ab7-bd04-a78b29d056ba" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d3a382fc-1ed4-45ea-ae66-3388fb9fca90" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tramposo 
\entryTyp root 
\gENG 
\gSPN tramposo 
\e +tramposo 
\c N0 
\ach trampo:su 
\akh trampo:su 
\acl trampo:su / _# 
\acl trampo:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl trampo:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl trampo:su / _# 
\akl trampo:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl trampo:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame trampo:su</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="72cf6fa6-018e-43de-b1bf-a6a9d0ddc469" ownerguid="90037347-4dde-4b7e-ac02-5a67c6cd79de"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">indian.giver</AUni> -<AUni ws="es">reclamador</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1a7b00c9-cbb0-4c1b-b63e-7019ae6243b4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="72d3345c-8901-404a-878c-919ce3190c67" ownerguid="29b6ffe2-1299-4aa0-b3cd-63ef76214003"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PunctuationForm" guid="72d4b5e5-2828-48b0-aa8e-85490e63edfd"> -<Form> -<Str> -<Run ws="en">ob</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="72d65e5a-928d-47d9-b8a1-d076aff636b1" ownerguid="bbd3c3f1-7387-4ec6-a75d-66c1355a94ef"> -<ExampleWords> -<AUni ws="en">cattle, cow, goat, sheep, alpaca, antelope, bighorn sheep, bison, buffalo, camel, carabao, caribou, chamois, deer, stag, buck, doe, dromedary, eland, elk, gazelle, gemsbok, giraffe, gnu, hart, hartebeest, ibex, kudu, llama, moose, musk ox, okapi, oryx, pronghorn, reindeer, roe, roebuck, sable antelope, sambar, springbok, steenbok, wildebeest, yak</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What species of two-toed hoofed animals are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="72d6c7c4-8b47-445f-bc58-44a9836adc12" ownerguid="6681f03b-06c4-4509-9253-e4739c9c1614"> -<ExampleWords> -<AUni ws="en">beggar, mendicant, scrounger, parasite, panhandler, bum</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to someone who begs?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="72d8b22d-a099-4b7b-8815-a26e80883202" ownerguid="c1496c4c-e413-4659-87d5-ea6cf3db8209"> -<Form> -<AUni ws="qvm-x-ach">zapatea</AUni> -<AUni ws="qvm-x-acl">zapatea</AUni> -<AUni ws="qvm-x-akh">zapatea</AUni> -<AUni ws="qvm-x-akl">zapatea</AUni> -<AUni ws="qvm-x-ame">zapatea</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="72d9b7cd-aa06-4f7b-a66b-b992171d2cd4" ownerguid="8a11e609-e88d-4247-8c5f-224ddb20de10"> -<Abbreviation> -<AUni ws="en">5.3.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.327" /> -<DateModified val="2022-9-23 16:55:8.327" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to clothing styles.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Style of clothing</AUni> -</Name> -<Questions> -<objsur guid="569d12c8-283a-49dd-a08f-46510c6c371b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="72da0752-f34e-4282-9738-06bc39ad399f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pusanga</AUni> -<AUni ws="qvm-x-acl">pusanga</AUni> -<AUni ws="qvm-x-akh">pusanqa</AUni> -<AUni ws="qvm-x-akl">pusanqa</AUni> -<AUni ws="qvm-x-ame">pusanqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pusanqa</AUni> -<AUni ws="qvm-x-acl">*pusanqa</AUni> -<AUni ws="qvm-x-akh">*pusanqa</AUni> -<AUni ws="qvm-x-akl">*pusanqa</AUni> -<AUni ws="qvm-x-ame">*pusanqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.33" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c69faa27-8889-4b76-898b-e2783d89fddc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pusanqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3d83afe4-ef49-4290-bd99-325f05806f58" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="04c89fb2-6060-4995-a7fb-5b9c14a66a60" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pusanqa 
\entryTyp root 
\gENG 
\gSPN 
\e *pusanqa 
\c N0 
\ach pusanga 
\akh pusanqa 
\acl pusanga 
\akl pusanqa 
\ame pusanqa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoInflAffMsa" guid="72dc7bab-4d12-4cdb-a144-3c853f889fb5" ownerguid="50d06ec2-c978-4c12-83dc-c2e2d919f465"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="fda4c591-1349-4f9e-ab87-905ae2aa25e1" t="r" /> -</Slots> -</rt> -<rt class="MoStemMsa" guid="72e55588-c305-4179-892d-1e1dcf47151a" ownerguid="47feff41-ef58-4fb6-bb10-35d3c5c721fe"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="72e58eb4-57c2-4e63-8519-e9bfd009317b" ownerguid="a1dba1bc-1377-49b9-a4c2-1f3fabda9576"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="72ec515d-2dcb-479d-a563-23187aad3fb9" ownerguid="f07f867d-808f-4750-92ca-859aea59e58c"> -<ExampleWords> -<AUni ws="en">live, stay, be at home, dwell, reside, inhabit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to living in a place?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="72eca08e-2fa8-4a55-b3de-db7cbb25ac39" ownerguid="71816e58-0789-45cf-91cc-c8934a996f4a"> -<Form> -<AUni ws="qvm-x-ach">guemla</AUni> -<AUni ws="qvm-x-acl">guemla</AUni> -<AUni ws="qvm-x-akh">qemla</AUni> -<AUni ws="qvm-x-akl">qemla</AUni> -<AUni ws="qvm-x-ame">qimla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="72f14ebf-2c51-47f7-8b43-1c380fb62d1e" ownerguid="c0d8c0ff-3cee-4f62-ba1f-fffdbde9f8b9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="72f2c75d-dc09-421b-ab19-a9227c2a97e1" ownerguid="bbde4375-924b-4202-b8cd-915ccbe85448"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">high</AUni> -<AUni ws="es">alto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6408826e-91a8-435f-9015-68212ccf7eaa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="72f53e38-1be1-4dc6-bfb5-1b2d4951e1fc" ownerguid="0a1e5660-e498-41ca-8889-4ae845266f8d"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 41.30 Pachancho escämanpis tëja paquipanogragmi capri capri caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="72fb62f7-80ac-4a2f-bd47-2d8940089451" ownerguid="ca495e57-a8e0-4294-bfe3-7b7995dc96c7"> -<ExampleWords> -<AUni ws="en">don't think, doubt, be doubtful, be dubious, I'd be surprised if, I think not, I wouldn't have thought so</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that you think it is very unlikely that something is true or will happen?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="72fd74de-6052-4112-a874-29262b5c4159"> -<Analyses> -<objsur guid="aae8aefe-cea0-42fe-b9de-793c4cbdbbd9" t="o" /> -</Analyses> -<Checksum val="-73185486" /> -<Form> -<AUni ws="qvm-x-akh">markapita</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="73004200-e43e-4066-bb20-30c2f9b7abf9" ownerguid="80bcbc99-3c85-46d6-b15c-895367231747"> -<ExampleWords> -<AUni ws="en">be at a place/location, be in a place/location, be located, be situated, be localized, attendance, be present, presence, sit, lie, laid, occupy, be resting</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something or someone is in a particular place?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="73017852-fead-40e8-92f4-1e66ebdd79fc" ownerguid="5ada976b-651c-475f-8a0b-673b1b10c070"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tongue</AUni> -<AUni ws="es">lengua</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="37051288-2012-463e-bb5c-14a73f03950f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="73028f7d-82d3-4e8c-88b0-271e59ee5694" ownerguid="d76d0838-3519-49cd-9217-68372b606a7a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="73072771-3d07-4b0c-b4ca-f015c35bb8a6" ownerguid="1133ad78-9ce9-46aa-b181-bb6f7a84a07b"> -<ExampleWords> -<AUni ws="en">near enough, close enough, within walking distance, within reach, within range, convenient, handy, be close at hand, around the corner, close up, up close, at close quarters, at close range, right under your nose</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that something is near enough so that you can do something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7308b92d-a9b7-4166-8fa6-4dcac061dbc2" ownerguid="e8a70fbc-2b48-46cc-b6cc-b601882c463b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">behind</AUni> -<AUni ws="es">atrás</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c31288eb-6b87-487f-95fe-7150060a5d81" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="730fd40b-346e-4330-8a6e-76b3e17a332e" ownerguid="be0bef3b-acd0-4c75-9d6f-a0dc1ec768dd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="167c8e3e-b0eb-4e42-8096-97b614616ca8" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="af3d6efe-726e-4682-8f05-66bbc56c5672" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="731292c7-f732-4987-8d14-e18e8cbc0dc6" ownerguid="484602df-3914-4538-a36f-62a75fc50306" /> -<rt class="LexSense" guid="7316bec0-4c4c-4afe-b5ae-98e19e4f7db1" ownerguid="895e74fd-2855-4235-9028-0e3c722a0fb9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1 V2/V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">DWN</AUni> -<AUni ws="es">ABAJO</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0edb9e55-e4f3-4b8e-a173-41ce0777e08a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="73177738-0506-4796-9b27-603a7bdafb57" ownerguid="6f83b918-dc9f-4053-90a4-a6b9e750db29"> -<ExampleWords> -<AUni ws="en">dam, block, stop up, divert, dike, flood control</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to stopping the flow of water?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7317d396-1a4b-4028-81dc-bfd304c40bb8" ownerguid="eb00b4c2-5b87-4ef8-9548-800fc5c9b524"> -<ExampleWords> -<AUni ws="en">harmful, toxic, toxicity, unwholesome, dangerous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe something that damages things?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7317d7eb-5883-41fc-8675-f0a6646cc88a" ownerguid="99b40843-54bf-4c59-ae1d-d7146cebec48"> -<ExampleWords> -<AUni ws="en">luck, a run of good luck</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something that makes good things happen to someone?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="731a76a3-6d71-4541-bff3-269ed7ce49c8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">g</AUni> -<AUni ws="qvm-x-acl">g</AUni> -<AUni ws="qvm-x-akh">q</AUni> -<AUni ws="qvm-x-akl">q</AUni> -<AUni ws="qvm-x-ame">q</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.477" /> -<DateModified val="2022-10-16 15:16:11.104" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="2" /> -<LexemeForm> -<objsur guid="7feef4b7-a285-4201-a3a4-057f77618b78" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">AG</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="964f8962-17d5-4738-8902-97236137c419" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f236a72a-47d2-4e37-9b3f-40104bf2b6ba" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx AG 
\entryTyp suffix 
\gENG AG 
\gSPN AG 
\e AG 
\c V1/N0 V2/N0 
\o 120 000 
\mp +foreshortens 
\ach g 
\akh q 
\acl g 
\akl q 
\ame q 
\mp +FinalC 
\mcc AG / ~_ BEC AG</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="731e8e9a-8685-4698-8b5b-be29d8056c2f" ownerguid="81d52ec1-f6de-483a-9686-50973ea72f8e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/N1 V2/N1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c82a087a-1cc7-4c03-8977-968ab20f87d2" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">NOM</AUni> -<AUni ws="es">SUB</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3afae7ea-b6f9-4990-9b80-c355228ee832" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="7320ae3e-8f7b-4328-94fe-192e81ec831d" ownerguid="482b5e0e-41af-408d-a300-66c0c7b682de"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">witch</AUni> -<AUni ws="es">brujo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bbd2d1da-b97c-4bfc-94f1-1deaf6cc7415" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="7323517c-8583-4620-9f46-01adc7cd96e4" ownerguid="ae780708-c312-493a-b30d-21c76be756a7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="73247dfc-e7bb-4002-8830-b465e6340eca" ownerguid="a0767a55-ff99-4eba-adbd-be135e932a79"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntryType" guid="73266a3a-48e8-4bd7-8c84-91c730340b7d" ownerguid="1ee09905-63dd-4c7a-a9bd-1d496743ccd6"> -<Abbreviation> -<AUni ws="en">contr.</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">A combination of two lexemes that are phonologically reduced.</Run> -</AStr> -</Description> -<Discussion> -<objsur guid="b33653bc-ea5e-11de-9802-0013722f8dec" t="o" /> -</Discussion> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Contraction</AUni> -</Name> -<ReverseAbbr> -<AUni ws="en">contr. of</AUni> -</ReverseAbbr> -<ReverseName> -<AUni ws="en">Contraction of</AUni> -</ReverseName> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="73296ff4-0ad1-4c9e-a73e-271a4c52a479" ownerguid="c6688928-6694-4264-8048-a60b665b5793"> -<ExampleWords> -<AUni ws="en">smoke, light up, light (a cigarette), chew</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What methods of using tobacco are there?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="732ca1cb-afa2-4b31-b30c-fb83fd085f10" ownerguid="87d27b82-e7f3-47e2-b510-6e6127ee7375"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="73308bb8-de11-49da-b4df-fd546cdfad56"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">virgen; virgin</AUni> -<AUni ws="qvm-x-acl">virgen; virgin; virgen</AUni> -<AUni ws="qvm-x-akh">virgen; virgin</AUni> -<AUni ws="qvm-x-akl">virgen; virgin; virgen</AUni> -<AUni ws="qvm-x-ame">virgen; virgin</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+virgen</AUni> -<AUni ws="qvm-x-acl">+virgen</AUni> -<AUni ws="qvm-x-akh">+virgen</AUni> -<AUni ws="qvm-x-akl">+virgen</AUni> -<AUni ws="qvm-x-ame">+virgen</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.404" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c19a8ee5-fe9e-455c-8da0-d9c7e197f67d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+virgen</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c5c77976-9213-4aa7-ada1-c387fe0f7162" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="34e47811-7b0a-4cb8-994b-139fbb213c7c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +virgen 
\entryTyp root 
\gENG 
\gSPN virgen 
\e +virgen 
\c N0 
\mp +FinalC 
\ach virgen / _# 
\ach virgin / ~_# 
\akh virgen / _# 
\akh virgin / ~_# 
\acl virgen / _# 
\acl virgin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl virgen +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl virgen / _# 
\akl virgin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl virgen +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame virgen / _# 
\ame virgin / ~_# 
\i GEN 24.16 Rebecaga cuyaylapag y virginlarag jipashmi cargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="7337b2dd-b574-4a41-affa-2dfad7f6cdbc" ownerguid="af4ac058-d4b3-4c7a-ade8-6af762d0486d"> -<Abbreviation> -<AUni ws="en">3.3.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to casting lots--to make a decision by chance.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Cast lots</AUni> -</Name> -<Questions> -<objsur guid="cb4dfa4a-4233-4d76-9078-45a7f2151223" t="o" /> -<objsur guid="e223500b-5703-4495-afc7-df439fe60c86" t="o" /> -<objsur guid="c89e4ce0-5c11-4819-88b6-0b9cdb6bf64e" t="o" /> -<objsur guid="f0cc3aff-40a7-4ee9-9518-7ee2971599b1" t="o" /> -<objsur guid="8e3fe889-6bad-4ff1-bb98-e504246266c7" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="7337c37d-13e2-40b0-a5d2-b31be4b66423"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chipchipya; chipchipya:</AUni> -<AUni ws="qvm-x-acl">chipchipya; chipchipya:</AUni> -<AUni ws="qvm-x-akh">chipchipya; chipchipya:</AUni> -<AUni ws="qvm-x-akl">chipchipya; chipchipya:</AUni> -<AUni ws="qvm-x-ame">chipchipya; chipchipya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chipchipya:</AUni> -<AUni ws="qvm-x-acl">*chipchipya:</AUni> -<AUni ws="qvm-x-akh">*chipchipya:</AUni> -<AUni ws="qvm-x-akl">*chipchipya:</AUni> -<AUni ws="qvm-x-ame">*chipchipya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.315" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5ba5323f-da9c-4a1b-a576-036f4faf139e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chipchipya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e725584e-6526-43cc-b6b7-24fbfb1bf157" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e165ab81-3063-47e5-a126-c9fcc62b1a62" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chipchipya: 
\entryTyp root 
\gENG glitter 
\gSPN brillar 
\e *chipchipya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach chipchipya foreshortened 
\ach chipchipya: 
\akh chipchipya foreshortened 
\akh chipchipya: 
\acl chipchipya foreshortened 
\acl chipchipya: 
\akl chipchipya foreshortened 
\akl chipchipya: 
\ame chipchipya foreshortened 
\ame chipchipya:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="73387d82-c573-48b0-9265-43b2b3f03985" ownerguid="29dea368-293d-41ea-8542-38798f802b19"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">window</AUni> -<AUni ws="es">ventana</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f03633e0-feef-4a6c-b3e0-37a5abd85bf2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7339bbfb-4753-4a61-b1fb-ad5c87bbe69b" ownerguid="b3be00a9-41a4-42ae-ba51-320b5000a563"> -<ExampleWords> -<AUni ws="en">aquifer, underground river</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to water under the ground?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="733b0373-fa8a-4501-8b07-1264c77566ac" ownerguid="d83ebe2c-c1d6-49ec-a4a9-1cdced843387"> -<ExampleWords> -<AUni ws="en">lose consciousness, go unconscious, faint, pass out, swoon, be knocked out, go into a coma, collapse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to losing consciousness?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="733be8b8-ce83-4ae6-b900-41d52ea3cd2f" ownerguid="6fa1d5b6-004a-4a06-a2df-e68a20fbf996"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="733cc2d1-6aae-49c3-bb65-76237bedac9f" ownerguid="6fb1d03c-b0fe-49b7-a473-168f12a54a36"> -<ExampleWords> -<AUni ws="en">tardy, latecomer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who is late?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="733e3695-30f3-467b-9fc3-e767263e3bd2" ownerguid="0903592a-a301-44c5-9b71-89328c1c8e38"> -<Form> -<AUni ws="qvm-x-ach">shay</AUni> -<AUni ws="qvm-x-acl">shay</AUni> -<AUni ws="qvm-x-akh">shay</AUni> -<AUni ws="qvm-x-akl">shay</AUni> -<AUni ws="qvm-x-ame">shay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="73426c7f-2ecc-42d8-9f96-2612729778c0" ownerguid="e27adda9-0761-4b7f-abbf-24938ce1c01a"> -<ExampleWords> -<AUni ws="en">overact, ham it up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to acting with too much emotion?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="73450365-7484-40cf-be06-60fdb060fedd" ownerguid="57c0b313-73c5-48e3-9dba-263a4a2f76dc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="69abb3c5-8756-4382-8775-65355e35d7e1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="7346748c-b035-4a34-9617-e6e1cabfc26e" ownerguid="181cd4a8-1211-491a-90da-4ac86f6b6604"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rust</AUni> -<AUni ws="es">oxidar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="762c209f-1289-4276-ba23-aee426928f9e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="7347726c-b71e-41d8-8009-b78892706447"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alpa</AUni> -<AUni ws="qvm-x-acl">alpa</AUni> -<AUni ws="qvm-x-akh">alpa</AUni> -<AUni ws="qvm-x-akl">alpa</AUni> -<AUni ws="qvm-x-ame">alpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*allpa</AUni> -<AUni ws="qvm-x-acl">*allpa</AUni> -<AUni ws="qvm-x-akh">*allpa</AUni> -<AUni ws="qvm-x-akl">*allpa</AUni> -<AUni ws="qvm-x-ame">*allpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.739" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="517c28cb-a3dc-463c-a85c-3834a40eecc4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*allpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6871e5a7-6dc6-4b24-bfc9-9057daa06a15" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dba28f23-7b9d-433a-a7ab-888b76ea6efa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *allpa 
\entryTyp root 
\gENG earth 
\gSPN tierra 
\e *allpa 
\c N0 
\ach alpa 
\akh alpa 
\acl alpa 
\akl alpa 
\ame alpa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="73479b78-035a-4d8a-a8ab-8cf12c66d02e" ownerguid="8982816c-5256-467e-af60-c90dd5e2bb4d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shovel</AUni> -<AUni ws="es">lampa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8854daac-111e-4d33-8a09-03e6d052e40e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="73497264-81a2-49dd-9f3b-7c42c8a8ee23"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">verdi</AUni> -<AUni ws="qvm-x-acl">verdi; verde</AUni> -<AUni ws="qvm-x-akh">verdi</AUni> -<AUni ws="qvm-x-akl">verdi; verde</AUni> -<AUni ws="qvm-x-ame">verdi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+verdear</AUni> -<AUni ws="qvm-x-acl">+verdear</AUni> -<AUni ws="qvm-x-akh">+verdear</AUni> -<AUni ws="qvm-x-akl">+verdear</AUni> -<AUni ws="qvm-x-ame">+verdear</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.373" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f8d439cb-e459-464e-86f4-0d05873f592c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+verdear</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="467a27d2-8717-48a5-9d23-3d0f9b3152c1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3afc8b13-17c7-4518-a0db-00c74f0b9914" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +verdear 
\entryTyp root 
\gENG 
\gSPN 
\e +verdear 
\c V1 
\mp +assimilated 
\ach verdi 
\akh verdi 
\acl verdi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl verde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl verdi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl verde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame verdi 
\mp +FinalI 
\i PSA 65.12 Chunyag jircacunacho guewacunapis verdiypami verdiycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="73499b8b-76fc-4121-8bfa-1bdebe537259" ownerguid="944cf5af-469e-4b03-878f-a05d34b0d9f6"> -<Abbreviation> -<AUni ws="en">1.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.978" /> -<DateModified val="2022-9-23 16:55:7.978" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing types of animals. Use a book of pictures to identify each species and its scientific name. This section is organized according to the scientific, biological classification of animals. It may not correspond to the local classification of animals (folk taxonomy), which are often based on how people relate to animals (tame/wild, edible/work). Use this domain for words referring to large classes of animals that do not correspond to the scientific classification. For instance this would be the place for a word like 'flying animal', which includes birds, bats, and flying insects.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>4A Animals</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Types of animals</AUni> -</Name> -<Questions> -<objsur guid="71f65d98-b7dc-4cda-856d-f70a031d93ad" t="o" /> -<objsur guid="d198d9e9-593d-4bb7-bd30-df8a09de7638" t="o" /> -<objsur guid="0353f14f-28a0-4e90-a234-4ee88979dc3f" t="o" /> -<objsur guid="6539c885-28fe-4e73-b8ec-cd0f0fe3029f" t="o" /> -<objsur guid="2813ad95-18a8-46b9-900c-0f1e6532c0f6" t="o" /> -<objsur guid="b036a6eb-ec6a-4cf4-bcf1-0e8b9e676178" t="o" /> -<objsur guid="a5bc1843-121b-455b-99eb-067798064e94" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="5e9f361d-17dc-4ada-a312-8da269d22a64" t="o" /> -<objsur guid="83b483b8-f036-44be-8510-ea337d010a1c" t="o" /> -<objsur guid="ee446395-781b-4651-afef-cad78b71f843" t="o" /> -<objsur guid="8d8a7656-8f8e-467e-b72e-535db6a17c6a" t="o" /> -<objsur guid="85188748-1919-4210-a9e9-91171d9d6454" t="o" /> -<objsur guid="3014de03-88e5-4330-9682-51963a41ca50" t="o" /> -<objsur guid="ecc39bc2-6336-48ca-be46-cf5e49a3c267" t="o" /> -<objsur guid="cfb159f7-82f6-4789-b9b4-8f611820f350" t="o" /> -<objsur guid="38473463-4b92-4681-8fd0-0aca0342e88a" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="734aa088-a83d-40d3-aadc-4defc1764631"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chichipa</AUni> -<AUni ws="qvm-x-acl">chichipa</AUni> -<AUni ws="qvm-x-akh">chichipa</AUni> -<AUni ws="qvm-x-akl">chichipa</AUni> -<AUni ws="qvm-x-ame">chichipa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tritripa</AUni> -<AUni ws="qvm-x-acl">*tritripa</AUni> -<AUni ws="qvm-x-akh">*tritripa</AUni> -<AUni ws="qvm-x-akl">*tritripa</AUni> -<AUni ws="qvm-x-ame">*tritripa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.129" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ca268616-0959-400d-9ffc-5788c0479cec" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tritripa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e101d260-74d9-4556-9cb1-fe0ccd69e15f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7adab163-a295-49e5-8f52-7dbf010a0824" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tritripa 
\entryTyp root 
\gENG chick 
\gSPN pollito 
\e *tritripa 
\c N0 
\ach chichipa 
\akh chichipa 
\acl chichipa 
\akl chichipa 
\ame chichipa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="734b34e7-9c46-4c9a-9b89-7b5555f499ee"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">da:ñu</AUni> -<AUni ws="qvm-x-acl">da:ñu; da:ñu; da:ño</AUni> -<AUni ws="qvm-x-akh">da:ñu</AUni> -<AUni ws="qvm-x-akl">da:ñu; da:ñu; da:ño</AUni> -<AUni ws="qvm-x-ame">da:ñu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+daño</AUni> -<AUni ws="qvm-x-acl">+daño</AUni> -<AUni ws="qvm-x-akh">+daño</AUni> -<AUni ws="qvm-x-akl">+daño</AUni> -<AUni ws="qvm-x-ame">+daño</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.366" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aa86b9d3-33e8-47d2-b571-90c18c624860" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+daño</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="deb791f4-c893-4c12-9823-85473b69c8a0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="973a83c5-b591-4e6d-ad6c-ef145a504620" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +daño 
\entryTyp root 
\gENG damage 
\gSPN daño 
\e +daño 
\c N0 
\ach da:ñu 
\akh da:ñu 
\acl da:ñu / _# 
\acl da:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl da:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl da:ñu / _# 
\akl da:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl da:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame da:ñu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="734c866a-7026-476b-81fe-7608b56bd03a" ownerguid="8bd0a688-3bea-4dd3-8b46-f759216604b0"> -<Form> -<AUni ws="qvm-x-ach">guepi</AUni> -<AUni ws="qvm-x-acl">guepi; guepe</AUni> -<AUni ws="qvm-x-akh">qepi</AUni> -<AUni ws="qvm-x-akl">qepi; qepe</AUni> -<AUni ws="qvm-x-ame">qipi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="734f4b9e-461a-4324-b0d9-ce68544dc64e" ownerguid="2139db65-1662-4a7f-889d-014baf893e14"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7354cc54-fabd-433e-9d3f-c15e4554621d" ownerguid="526e88aa-02ae-4e04-aace-c7501fcd57d7"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="73576fc4-7a05-4270-9137-a90b97f2131d" ownerguid="a1542519-a9ed-40af-8acb-f33efaed31ec"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="735894c7-7110-4dd6-980d-c7e9cb93aa3e" ownerguid="6a4508b4-c05d-4b1d-851f-455d62cb2d78"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">basin</AUni> -<AUni ws="es">lavatorio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5b88f253-91cb-4b91-8417-a094e25beafc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="735a29e0-40d3-4d25-9e9a-e8181d173c29" ownerguid="96de28a0-4d3a-4927-b22c-c3602d4b97e3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="735e5a54-49b3-459d-a530-d103b8a8e637" ownerguid="ad1704a0-f590-4406-881b-95656cf33c61"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="73649b60-618c-484c-b2eb-db8f93f9450d" ownerguid="7831223b-e5ed-4186-a321-94e9ae72a27d"> -<ExampleWords> -<AUni ws="en">send something flying, catapult, propel, pitch, launch, sling</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to something throwing something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="73653acf-65b2-4161-a460-98373b915bdf" ownerguid="37dda99b-483f-41dc-aa75-fd02c28bdb9d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">daily.wage</AUni> -<AUni ws="es">jornal</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f4bab397-7d89-4721-9f9f-0c835eaae968" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="736706e6-e500-48c6-937b-a0510008d7a4" ownerguid="7e355660-7017-42be-b82a-dda68d9248ef"> -<Form> -<AUni ws="qvm-x-ach">chicchampu</AUni> -<AUni ws="qvm-x-acl">chicchampu; chicchampu; chicchampo</AUni> -<AUni ws="qvm-x-akh">chikchampu</AUni> -<AUni ws="qvm-x-akl">chikchampu; chikchampu; chikchampo</AUni> -<AUni ws="qvm-x-ame">chikchampu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="736b52c0-42be-49f6-95a2-0b567a9ea81a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bru:jutsi</AUni> -<AUni ws="qvm-x-acl">bru:jutsi; bru:jutse</AUni> -<AUni ws="qvm-x-akh">bru:jutsi</AUni> -<AUni ws="qvm-x-akl">bru:jutsi; bru:jutse</AUni> -<AUni ws="qvm-x-ame">bru:jutsi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bru:juchi</AUni> -<AUni ws="qvm-x-acl">+bru:juchi</AUni> -<AUni ws="qvm-x-akh">+bru:juchi</AUni> -<AUni ws="qvm-x-akl">+bru:juchi</AUni> -<AUni ws="qvm-x-ame">+bru:juchi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.991" /> -<DateModified val="2022-10-10 21:19:47.695" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="322ea6dc-8404-4ece-b0a1-9ab736fcce0a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bru:juchi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="34e9aa91-0482-41e9-be44-acfe27e3184d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f7365d38-5b9a-4709-be04-73e48a3a0a01" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bru:juchi 
\entryTyp root 
\gENG bewitch 
\gSPN 
\e +bru:juchi 
\c V2 
\mp +FinalI 
\ach bru:jutsi 
\akh bru:jutsi 
\acl bru:jutsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl bru:jutse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl bru:jutsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl bru:jutse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame bru:jutsi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="736e1cc2-3a96-4c70-a905-c6f91aed17f6" ownerguid="ad56dc48-9c39-43f6-9386-f7df80d93cd4"> -<ExampleWords> -<AUni ws="en">insistent, importunate, resolute</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a person who insists?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="73726931-ef12-4d39-a76e-7742f4b7c9cd" ownerguid="f726d9bb-ae80-4c01-bdef-b600cb27736e"> -<Abbreviation> -<AUni ws="en">6.9.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.498" /> -<DateModified val="2022-9-23 16:55:8.498" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to economics--the study of the money, trade, and industry of a country.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Economics</AUni> -</Name> -<OcmCodes> -<Uni>179 Economic Planning and Development; 433 Production and Supply; 434 Income and Demand; 454 Saving and Investment; 455 Speculation; 458 Business Cycles</Uni> -</OcmCodes> -<Questions> -<objsur guid="e36d0eb6-aee8-460b-8579-e1d2e1f6596e" t="o" /> -<objsur guid="604fb941-6a10-41f6-a321-92f27b99aa9c" t="o" /> -<objsur guid="4f6e7e62-2896-480b-ab08-3c839247b3c6" t="o" /> -<objsur guid="47a1f5f0-938f-42cd-8bde-f65ae9d9a6d4" t="o" /> -<objsur guid="f26c77fb-37b4-4494-a79c-95deda3d24d8" t="o" /> -<objsur guid="19da5626-3b0a-4e3b-a123-0bd8a982f164" t="o" /> -<objsur guid="769695e1-45a2-4bb0-ac6f-82d8f1b87d4a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmResource" guid="73732cc2-7053-49bf-ac11-1ea942f2715c" ownerguid="af26d792-ea5e-11de-8f7e-0013722f8dec"> -<Name> -<Uni>FlexStyles</Uni> -</Name> -<Version val="e5238df8-6fcb-4350-9c85-db9c9726381b" /> -</rt> -<rt class="LexEntry" guid="737471bd-1c3e-4fa6-8dae-ed89ed2a7336"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">kilo:metru</AUni> -<AUni ws="qvm-x-acl">kilo:metru; kilo:metru; kilo:metro</AUni> -<AUni ws="qvm-x-akh">kilo:metru</AUni> -<AUni ws="qvm-x-akl">kilo:metru; kilo:metru; kilo:metro</AUni> -<AUni ws="qvm-x-ame">kilo:metru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+kilómetro</AUni> -<AUni ws="qvm-x-acl">+kilómetro</AUni> -<AUni ws="qvm-x-akh">+kilómetro</AUni> -<AUni ws="qvm-x-akl">+kilómetro</AUni> -<AUni ws="qvm-x-ame">+kilómetro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.983" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1ad22988-2248-46d9-8a75-6f2232a088a4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+kilómetro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="13b9bbd5-adce-4a25-bcfe-97d9bdd93a94" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dc14a336-91bb-4ffb-b308-a7a1348a52cd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +kilómetro 
\entryTyp root 
\gENG kilometer 
\gSPN kilómetro 
\e +kilómetro 
\c N0 
\ach kilo:metru 
\akh kilo:metru 
\acl kilo:metru / _# 
\acl kilo:metru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl kilo:metro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kilo:metru / _# 
\akl kilo:metru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kilo:metro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kilo:metru</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="7374a61a-2f3e-45e6-bd10-9c2f5e6866cf" ownerguid="1488107d-c1b4-4aa1-a407-7ea1497d22e0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="737726a2-34a2-4f5d-80a0-d2a67c02c6a1" ownerguid="474aa982-8350-47e2-a983-e1e2bce9d928"> -<ExampleWords> -<AUni ws="en">feel good, feel up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling good?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="73784ef4-aea7-4fd5-aa2e-493d68356f7e" ownerguid="5b12ea7b-790f-4f3e-8d07-893fc267773e"> -<ExampleWords> -<AUni ws="en">cloud</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a cloud?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="737ac182-6676-4e3b-bae7-523199291521"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">compañón; compañon</AUni> -<AUni ws="qvm-x-acl">compañón; compañon</AUni> -<AUni ws="qvm-x-akh">compañón; compañon</AUni> -<AUni ws="qvm-x-akl">compañón; compañon</AUni> -<AUni ws="qvm-x-ame">compañón; compañon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+compañón</AUni> -<AUni ws="qvm-x-acl">+compañón</AUni> -<AUni ws="qvm-x-akh">+compañón</AUni> -<AUni ws="qvm-x-akl">+compañón</AUni> -<AUni ws="qvm-x-ame">+compañón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.152" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bb0a5eef-e04e-4d14-9e19-ffcbdab19628" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+compañón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="38e35cbd-321d-4d39-ae68-50898da5a86f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aa3f5892-3c1f-4394-b683-b72055fde926" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +compañón 
\entryTyp root 
\gENG penis 
\gSPN pene 
\e +compañón 
\c N0 
\mp +FinalC 
\ach compañón / _# 
\ach compañon / ~_# 
\akh compañón / _# 
\akh compañon / ~_# 
\acl compañón / _# 
\acl compañon / ~_# 
\akl compañón / _# 
\akl compañon / ~_# 
\ame compañón / _# 
\ame compañon / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="737ee139-892d-4c77-a290-8416257b5862" ownerguid="7211546a-9b07-43b9-9b9f-38cdf95a1f60"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="73808c09-7a3d-4e50-8c1c-3fbf7ce67bd7" ownerguid="c6688928-6694-4264-8048-a60b665b5793"> -<ExampleWords> -<AUni ws="en">tobacco, cigarette, pack of cigarettes, cigar, pipe, chewing tobacco</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to tobacco?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7381046a-85e1-4f7c-9510-742040c489ab"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">contesta</AUni> -<AUni ws="qvm-x-acl">contesta</AUni> -<AUni ws="qvm-x-akh">contesta</AUni> -<AUni ws="qvm-x-akl">contesta</AUni> -<AUni ws="qvm-x-ame">contesta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+contestar</AUni> -<AUni ws="qvm-x-acl">+contestar</AUni> -<AUni ws="qvm-x-akh">+contestar</AUni> -<AUni ws="qvm-x-akl">+contestar</AUni> -<AUni ws="qvm-x-ame">+contestar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.172" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="88e02e39-91b4-4623-8c7c-c4dfad9b0310" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+contestar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8c6d9ef8-4012-4518-80c5-88927d5df8bf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="33c0d13c-9d15-408d-9aab-005a62e05ed8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +contestar 
\entryTyp root 
\gENG answer 
\gSPN contestar 
\e +contestar 
\c V2 
\ach contesta 
\akh contesta 
\acl contesta 
\akl contesta 
\ame contesta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="7383c3a0-325f-48b1-bde2-53ba8d506aa5" ownerguid="1d4b825a-5b78-4b5c-a4aa-085abc8817b1"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Grüllaga llicullicu niragmi. Itsanga jatunmi caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="7384b134-e929-4086-a180-1dc9440ec2a6" ownerguid="28de12ca-087c-41e3-ba04-c6f8b460db46"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yarpa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yarpa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yarpa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yarpa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yarpa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="390d6b92-9796-4636-b528-170a1b6aa62a" t="r" /> -</Morph> -<Msa> -<objsur guid="19ab5cf1-1864-4db0-94a6-3ed04ddf2ef7" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="738a09a5-59df-40f9-8a4e-176e00d03bbf" ownerguid="a3ba10f3-66e3-4ad5-8057-453b8941e497"> -<Abbreviation> -<AUni ws="en">4.8.3.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.286" /> -<DateModified val="2022-9-23 16:55:8.286" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a weapon and using a weapon.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>6G Weapons and Armor; 55A To Arm</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Weapon, shoot</AUni> -</Name> -<OcmCodes> -<Uni>411 Weapons; 710 Military Technology; 711 Military Engineering; 712 Military Installations; 713 Ordnance; 714 Uniform and Accouterment; 715 Military Vehicles; 716 Naval Vessels; 717 Military Aircraft; 718 Special Military Equipment</Uni> -</OcmCodes> -<Questions> -<objsur guid="b0cd2f09-2b95-47b3-a602-5590eb22fe5c" t="o" /> -<objsur guid="19ad3df7-cd74-4555-a28d-fa7355bf184c" t="o" /> -<objsur guid="da0dac76-6614-4c95-9dcb-5bee9ca0ad1c" t="o" /> -<objsur guid="e7ff6cb3-e04a-43bb-986c-2aecbca6d77e" t="o" /> -<objsur guid="6efe12dc-8592-4375-9a6a-ae4a0a69c289" t="o" /> -<objsur guid="6b6541e3-daaf-4ef0-a966-8e57a75e25a9" t="o" /> -<objsur guid="eebb217e-ec6b-47de-8d94-a52fb242ed0c" t="o" /> -<objsur guid="55311d7b-b97b-462e-93fd-2ac0d0e04533" t="o" /> -<objsur guid="ed635bd3-5cea-4936-9683-57da9e709440" t="o" /> -<objsur guid="accaa4d6-755a-4d0c-bb8a-1d9848f089bb" t="o" /> -<objsur guid="b7493614-2150-4466-8be1-9c1ebf4793df" t="o" /> -<objsur guid="ffdcc2df-5295-4883-bd9f-9f06bcd69c55" t="o" /> -<objsur guid="88bad7ea-c427-46dd-9f3e-d33f134130fc" t="o" /> -<objsur guid="cc703ffc-0160-4c36-be73-6cecef398e95" t="o" /> -<objsur guid="1e6245da-fa8b-49a9-9a22-49a6aa3c73f4" t="o" /> -<objsur guid="221aa170-49b7-4d63-b348-4d01a9a547e3" t="o" /> -<objsur guid="49245c99-e46d-4295-a161-061fc58d649e" t="o" /> -<objsur guid="77de25d8-b840-40fc-81d9-390d36574678" t="o" /> -<objsur guid="2d481f91-12c4-4397-9ab3-c070c6a3d927" t="o" /> -<objsur guid="58d28add-6dc5-4a19-98b5-c0a19be6d157" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="738b6abd-4e63-4383-b0e4-7961af11176b" ownerguid="d1b3d0f0-5319-4a6a-8a70-2179a8e76d22"> -<ExampleWords> -<AUni ws="en">needy, dependent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe someone who needs something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="738bcdf7-be51-4124-a9e5-26e947748b42" ownerguid="1461c106-d9e0-417d-9487-a57e6d0cced0"> -<ExampleWords> -<AUni ws="en">unacceptable, dissatisfactory, abnormal, unpleasing, impolite, ill mannered, rude</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe the behavior of someone who acts unacceptably?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="738c8baa-8522-4b0e-8d19-69f73957cc39" ownerguid="fce3a591-51ce-46ad-83a2-d150940f5da5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dribble</AUni> -<AUni ws="es">gotear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="acc3a380-f6f2-4a49-a13c-55828a38e1de" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="738e1ab1-f471-470b-9cb4-c6bfb781f7c0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">galgu</AUni> -<AUni ws="qvm-x-acl">galgu; galgu; galgo</AUni> -<AUni ws="qvm-x-akh">qalqu</AUni> -<AUni ws="qvm-x-akl">qalqu; qalqu; qalqo</AUni> -<AUni ws="qvm-x-ame">qalqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qallqu.n</AUni> -<AUni ws="qvm-x-acl">*qallqu.n</AUni> -<AUni ws="qvm-x-akh">*qallqu.n</AUni> -<AUni ws="qvm-x-akl">*qallqu.n</AUni> -<AUni ws="qvm-x-ame">*qallqu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.74" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3682ec03-ee53-4840-a984-9a6c6d8ebc79" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qallqu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a75a5ee2-0d20-45ce-8a6c-68c9cdc42dd8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="017c56b9-5b27-4f6d-bada-0a2c6fd5a2c5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qallqu.n 
\entryTyp root 
\gENG peel 
\gSPN ? 
\e *qallqu.n 
\c N0 
\ach galgu 
\akh qalqu 
\acl galgu / _# 
\acl galgu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl galgo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qalqu / _# 
\akl qalqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qalqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qalqu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="739181c6-d941-431c-8cd0-caf5df51f391" ownerguid="57e2ae32-37b4-401f-b7a6-dc59a51e6d4a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoAffixAllomorph" guid="73948436-67ee-4e5e-8d3c-beac6f3920c7" ownerguid="df17c748-7c4b-457f-8415-fc6638e354ed"> -<Form> -<AUni ws="qvm-x-ach">lau</AUni> -<AUni ws="qvm-x-acl">lau</AUni> -<AUni ws="qvm-x-akh">law</AUni> -<AUni ws="qvm-x-akl">law</AUni> -<AUni ws="qvm-x-ame">law</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="8378f21c-cf54-437a-9d41-a303c764b326" t="r" /> -</PhoneEnv> -</rt> -<rt class="MoStemMsa" guid="73956561-d0f6-47ee-a80e-509ef3e701e4" ownerguid="61513a9e-6592-4262-9646-78564302e4e8"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="7395efda-f76d-4cba-8ef4-3333d84e58e4" ownerguid="4246d409-c802-47c6-a3f9-a1317f59d1bb"> -<Form> -<AUni ws="qvm-x-ach">cuadra</AUni> -<AUni ws="qvm-x-acl">cuadra</AUni> -<AUni ws="qvm-x-akh">cuadra</AUni> -<AUni ws="qvm-x-akl">cuadra</AUni> -<AUni ws="qvm-x-ame">cuadra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="739cc7ce-812c-4084-a995-7f2ac03012cc" ownerguid="254e1ce7-5846-4d4d-900f-a676ccceacce"> -<Form> -<AUni ws="qvm-x-ach">cutu</AUni> -<AUni ws="qvm-x-acl">cutu; cutu; cuto</AUni> -<AUni ws="qvm-x-akh">kutu</AUni> -<AUni ws="qvm-x-akl">kutu; kutu; kuto</AUni> -<AUni ws="qvm-x-ame">kutu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="739d590b-35a9-4209-a7e9-3b6681652d61"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ucshi</AUni> -<AUni ws="qvm-x-acl">ucshi; ucshi; ucshe</AUni> -<AUni ws="qvm-x-akh">ukshi</AUni> -<AUni ws="qvm-x-akl">ukshi; ukshi; ukshe</AUni> -<AUni ws="qvm-x-ame">ukshi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ukshi</AUni> -<AUni ws="qvm-x-acl">*ukshi</AUni> -<AUni ws="qvm-x-akh">*ukshi</AUni> -<AUni ws="qvm-x-akl">*ukshi</AUni> -<AUni ws="qvm-x-ame">*ukshi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.208" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="07354778-6008-4721-90b7-86126ed5f164" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ukshi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2ddf128e-b25f-488a-a54b-c16369a7e1e6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d84a8ebf-5d11-412c-b9fb-792208ffabff" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ukshi 
\entryTyp root 
\gENG gizzard 
\gSPN buche 
\e *ukshi 
\c N0 
\mp +FinalI 
\ach ucshi 
\akh ukshi 
\acl ucshi / _# 
\acl ucshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ucshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ukshi / _# 
\akl ukshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ukshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ukshi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="739eb3aa-87d1-448c-a601-915864006452" ownerguid="8f0b27ca-8223-4e67-8600-7096fd25be52"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="73a0b1b0-9ade-454a-a1dc-26afbc001357" ownerguid="1ec2677e-e1d1-46bf-bb5c-03a58b5e96b5"> -<Form> -<AUni ws="qvm-x-ach">lushqui</AUni> -<AUni ws="qvm-x-acl">lushqui; lushqui; lushque</AUni> -<AUni ws="qvm-x-akh">lushki</AUni> -<AUni ws="qvm-x-akl">lushki; lushki; lushke</AUni> -<AUni ws="qvm-x-ame">lushki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="73a18a85-73e9-48ef-af72-0f48f3b98ffd" ownerguid="b31493a6-9a83-43f3-9e17-07f12d01fe2e"> -<Form> -<AUni ws="qvm-x-ach">chicöti; chicöti</AUni> -<AUni ws="qvm-x-acl">chicöti; chicöti; chicöte</AUni> -<AUni ws="qvm-x-akh">chicöti; chicöti</AUni> -<AUni ws="qvm-x-akl">chicöti; chicöti; chicöte</AUni> -<AUni ws="qvm-x-ame">chicöti; chicöti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="73a59333-134f-4a1d-aba7-e134bdefe059" ownerguid="8e11dd10-459b-4fb3-b876-7d80ec5f8a4d"> -<Abbreviation> -<AUni ws="en">4.3.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.243" /> -<DateModified val="2022-9-23 16:55:8.243" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to culture--the way a group of people (such as a tribe) behaves that is different from other groups.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Culture</AUni> -</Name> -<OcmCodes> -<Uni>180 Total Culture; 181 Ethos; 182 Function and Adaptational Interpretations; 183 Norms; 184 Cultural Participation; 185 Cultural Goals; 186 Cultural Identity and Pride; Ethnocentrism</Uni> -</OcmCodes> -<Questions> -<objsur guid="953e8cad-01cd-4fc6-826d-fad252da5b6d" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="f5567550-e3c9-4589-8f88-8159eadcd194" t="o" /> -<objsur guid="6a6bbf65-b521-4b74-bf35-dede87217d3c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="73ab5c74-4f1e-47de-ac1e-45e36360bf75" ownerguid="500581df-73f1-4d3c-94db-57a856301460"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="73adcfbe-8a74-4fda-969f-616964226b9b" ownerguid="c6b62d63-b355-46c9-a8c7-e0a0bf112a9e"> -<Abbreviation> -<AUni ws="en">6.5.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.458" /> -<DateModified val="2022-9-23 16:55:8.458" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the boundary of an area.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>80B Limits, Boundaries of Space</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Boundary</AUni> -</Name> -<Questions> -<objsur guid="b3fa56d8-597a-4b5e-b229-8d4145c2f1a9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="73ae181c-bce0-4458-b1f5-baa93c848c93" ownerguid="c8424590-5304-4d1c-b5cf-fe919bdad89f"> -<Form> -<AUni ws="qvm-x-ach">quinwa</AUni> -<AUni ws="qvm-x-acl">quinwa</AUni> -<AUni ws="qvm-x-akh">quinwa</AUni> -<AUni ws="qvm-x-akl">quinwa</AUni> -<AUni ws="qvm-x-ame">quinwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="73affb6b-d7bb-45f5-b1b2-85227505a490"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">co:pa</AUni> -<AUni ws="qvm-x-acl">co:pa</AUni> -<AUni ws="qvm-x-akh">co:pa</AUni> -<AUni ws="qvm-x-akl">co:pa</AUni> -<AUni ws="qvm-x-ame">co:pa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+copa</AUni> -<AUni ws="qvm-x-acl">+copa</AUni> -<AUni ws="qvm-x-akh">+copa</AUni> -<AUni ws="qvm-x-akl">+copa</AUni> -<AUni ws="qvm-x-ame">+copa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.182" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c31ea7a4-5706-4a21-b51c-4cc358824082" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+copa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="53fa0099-c41f-469a-9b32-93de88b13537" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5e0a99dc-3617-47cd-a953-b7e8261cb47f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +copa 
\entryTyp root 
\gENG cup 
\gSPN copa 
\e +copa 
\c N0 
\ach co:pa 
\akh co:pa 
\acl co:pa 
\akl co:pa 
\ame co:pa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="73b13cea-6630-479a-9b53-214284e276ba" ownerguid="19413b9f-423f-45db-848d-1908f92c9f33"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="73b1f5d7-de2c-4439-bc7a-76f2ec875572"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lesión; lesion</AUni> -<AUni ws="qvm-x-acl">lesión; lesion</AUni> -<AUni ws="qvm-x-akh">lesión; lesion</AUni> -<AUni ws="qvm-x-akl">lesión; lesion</AUni> -<AUni ws="qvm-x-ame">lesión; lesion</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lesión</AUni> -<AUni ws="qvm-x-acl">+lesión</AUni> -<AUni ws="qvm-x-akh">+lesión</AUni> -<AUni ws="qvm-x-akl">+lesión</AUni> -<AUni ws="qvm-x-ame">+lesión</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.74" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="38aa0019-55c0-4148-81a5-1a59ea703c9b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lesión</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9aaa7a21-b0b3-4d68-91ac-c8285d9c937a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="10c190cb-240a-4bbf-a422-d3c0cf6933d5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lesión 
\entryTyp root 
\gENG 
\gSPN 
\e +lesión 
\c N0 
\mp +FinalC 
\ach lesión / _# 
\ach lesion / ~_# 
\akh lesión / _# 
\akh lesion / ~_# 
\acl lesión / _# 
\acl lesion / ~_# 
\akl lesión / _# 
\akl lesion / ~_# 
\ame lesión / _# 
\ame lesion / ~_# 
\i Exo 21.22 Tsaycho mana wanuptin imaptenga warmipa lesionninpita runan manaptin jueznami tantyaycur pägatsenga.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="73b238ad-c164-4057-99f5-d94b404c1abe" ownerguid="e3e71352-0500-4792-9401-ca1bb77c1833"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="21d53d94-ff64-4346-901b-9a2664021e9e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="73b2b4b1-b605-4422-8a5c-07946c7e1257" ownerguid="5718fcc8-1eba-4b8d-9b6b-0c8349f53f80"> -<ExampleWords> -<AUni ws="en">aim, point, direct, line up on, set your sights on, sight along, focus on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to aiming at a target?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="73b3b724-9942-4bfb-bcd4-5d295743e67e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">barbe:chu</AUni> -<AUni ws="qvm-x-acl">barbe:chu; barbe:chu; barbe:cho</AUni> -<AUni ws="qvm-x-akh">barbe:chu</AUni> -<AUni ws="qvm-x-akl">barbe:chu; barbe:chu; barbe:cho</AUni> -<AUni ws="qvm-x-ame">barbe:chu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+barbecho.1</AUni> -<AUni ws="qvm-x-acl">+barbecho.1</AUni> -<AUni ws="qvm-x-akh">+barbecho.1</AUni> -<AUni ws="qvm-x-akl">+barbecho.1</AUni> -<AUni ws="qvm-x-ame">+barbecho.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.949" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0243c2b6-9575-4e54-8471-d51362ae96a0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+barbecho.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ff11f3fb-1713-499a-bdc6-16ce378260b1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5d950795-34e3-4b43-bb6b-cf638db4b431" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +barbecho.1 
\entryTyp root 
\gENG 
\gSPN barbecho 
\e +barbecho.1 
\c N0 
\ach barbe:chu 
\akh barbe:chu 
\acl barbe:chu / _# 
\acl barbe:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl barbe:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl barbe:chu / _# 
\akl barbe:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl barbe:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame barbe:chu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="73b58acf-e488-4618-8773-806a170d4e9d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">parlu</AUni> -<AUni ws="qvm-x-acl">parlu; parlu; parlo</AUni> -<AUni ws="qvm-x-akh">parlu</AUni> -<AUni ws="qvm-x-akl">parlu; parlu; parlo</AUni> -<AUni ws="qvm-x-ame">parlu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+parlu</AUni> -<AUni ws="qvm-x-acl">+parlu</AUni> -<AUni ws="qvm-x-akh">+parlu</AUni> -<AUni ws="qvm-x-akl">+parlu</AUni> -<AUni ws="qvm-x-ame">+parlu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.719" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c2f143ab-144a-4bff-9646-330c2ffb2ac8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+parlu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="387a9500-a9d5-43a7-9f26-a9ed47815515" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fbc81014-4ae6-42e7-a52b-a6985e8808ae" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +parlu 
\entryTyp root 
\gENG conversation 
\gSPN conversación 
\e +parlu 
\c N0 
\ach parlu 
\akh parlu 
\acl parlu / _# 
\acl parlu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl parlo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl parlu / _# 
\akl parlu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl parlo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame parlu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="73b959ab-0229-4710-af99-dfc9b5370540" ownerguid="aaf9d375-f0a0-4c7b-bbf8-3c7ffd4f5a52"> -<Abbreviation> -<AUni ws="en">9.3.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a larger degree.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>78B More Than, Less Than</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">To a larger degree</AUni> -</Name> -<Questions> -<objsur guid="8495114d-2a7c-469b-8e4e-171aee4bcba6" t="o" /> -<objsur guid="4ce09546-0f38-40ad-b939-7226c0ad86c5" t="o" /> -<objsur guid="f77a848d-36a2-4972-a458-368d85d74627" t="o" /> -<objsur guid="6505d7f4-dade-4dab-9ff8-34f2b61a67a2" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="73bb8073-650f-4d61-ba41-e4ecbda4c9a2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yanqui</AUni> -<AUni ws="qvm-x-acl">yanqui; yanque</AUni> -<AUni ws="qvm-x-akh">yanki</AUni> -<AUni ws="qvm-x-akl">yanki; yanke</AUni> -<AUni ws="qvm-x-ame">yanki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yanki</AUni> -<AUni ws="qvm-x-acl">*yanki</AUni> -<AUni ws="qvm-x-akh">*yanki</AUni> -<AUni ws="qvm-x-akl">*yanki</AUni> -<AUni ws="qvm-x-ame">*yanki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.739" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="24f18dca-1f13-4e72-8994-4a2832d459f4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yanki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a8d6ae12-75c5-428a-9493-571c28e8ecb5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="07c33f4b-8d42-46d9-a149-6b32640b600a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yanki 
\entryTyp root 
\gENG trade.things 
\gSPN trocar.cosas 
\e *yanki 
\c V2 
\mp +FinalI 
\ach yanqui 
\akh yanki 
\acl yanqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl yanque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yanki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yanke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame yanki</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="73bd0425-c4e6-408f-8dac-ad167b8f2943" ownerguid="19099415-cb0c-4b4a-83ed-9e101f34c67e"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="Segment" guid="73be0f66-ac33-432b-80d8-80a1c9dcd385" ownerguid="b0f724c9-6bc4-4bf2-9218-d67682918740"> -<Analyses> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="fa7aeb71-200a-4a5d-9436-13faa1972fea" t="r" /> -<objsur guid="25651c34-3e31-419d-86b5-cda6907f0a4f" t="r" /> -<objsur guid="7beb2bdf-1e77-4955-99ec-39f893293020" t="r" /> -<objsur guid="a85a5670-81ba-47b9-8443-95e8be60ebec" t="r" /> -<objsur guid="a634fa54-71cd-440e-8d33-b886ebea1acf" t="r" /> -<objsur guid="4fccec2d-58a4-466f-a087-a79d6bf13b57" t="r" /> -<objsur guid="9126e753-059a-485a-bfcb-3c3cb22af5c5" t="r" /> -<objsur guid="26ca52f1-b5e7-41e8-aa2e-cf2572524687" t="r" /> -</Analyses> -<BeginOffset val="13" /> -</rt> -<rt class="StTxtPara" guid="73bec73b-0953-4483-a47c-1947eb0522b1" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">qarqukun</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="5d2d9fdd-666d-41c9-836e-80129c641970" t="o" /> -</Segments> -</rt> -<rt class="LexSense" guid="73bf5614-9aba-4e8c-b98c-5fc6b1017ed8" ownerguid="f2248909-4b44-44c8-9f80-6b397b5b0522"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="03945173-b8d5-4b9f-9752-3fd4c33d23d2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="73c2e63a-b154-4fc1-9b89-729989f1ba28" ownerguid="aab1c99c-625d-4540-b8d6-dee565b9672f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="73c326fb-2863-4e24-b5f5-e80066dc053a" ownerguid="bc5e0227-243f-4347-bc02-775398459106"> -<Form> -<AUni ws="qvm-x-ach">mundu; mundo</AUni> -<AUni ws="qvm-x-acl">mundu; mundu; mundo</AUni> -<AUni ws="qvm-x-akh">mundu; mundo</AUni> -<AUni ws="qvm-x-akl">mundu; mundu; mundo</AUni> -<AUni ws="qvm-x-ame">mundu; mundo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="73c4c14b-de50-45d2-a6eb-11bccd598acd" ownerguid="f87650ed-7cfe-4b90-9589-b2d9d26e69cb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">case</AUni> -<AUni ws="es">estuche</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7e99818b-6893-443d-94e9-61fa0c714417" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="73c52dfb-0483-4c57-9f71-f8dd86ee35a8" ownerguid="b63b6a47-5e5e-4088-a916-4e9777be9e39"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a1c8a0c5-3395-4faa-9ea7-6103c42aaae9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="73c717dd-18d8-4d51-965e-3122702f6c8f" ownerguid="e442afe1-e7cd-4ab2-b456-963e2e041a1e"> -<ExampleWords> -<AUni ws="en">Slow down! Whoa! (horse) Wait, wait! Wait for me! Wait a minute! Can we slow down?</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What do you say to someone when you want him to slow down?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="73c95df6-6049-4ab5-bfa3-d9c351f5b731" ownerguid="1d34380d-61bf-4247-9145-ba318a14a97e"> -<ExampleWords> -<AUni ws="en">fragment, scrap, splinter, chip, shard</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a small piece that is left after something has been broken?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="73cb307a-6715-4fc5-861b-0802b2e79b16" ownerguid="ffa13b7d-5eaa-43be-8518-51d9aa08f321"> -<ExampleWords> -<AUni ws="en">pair, couple, couplet, brace, dichotomy, deuce, dual, dyad, twain, yoke</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a group of two?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="73cb3dc4-2937-49f4-9b2a-32875a0ecf97" ownerguid="6262e304-a954-41ac-bac6-3e066313f85c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="86ddb127-7dce-4c07-a652-d5d8be635812" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="73cb7315-2fb0-403a-aa0c-e184c9576db9" ownerguid="7f6c81fb-02a4-415f-a363-fb11cc6b9254"> -<ExampleWords> -<AUni ws="en">spirit, ghost, specter, apparition, phantom, shade, ghoul</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the spirit of a dead person?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="73ccf165-0cd2-4241-884c-924572992ba1" ownerguid="fc82fcec-d03c-4fb0-bf62-714c71754402"> -<ExampleWords> -<AUni ws="en">full-grown, fully grown, grown, grown-up (adj), mature</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe a person who has become an adult?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="73d08203-50d9-4c98-b646-92b41173f234" ownerguid="21c90725-57f4-490f-bccc-a5dfec231372"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="73d2a8d2-6300-4f9e-b0e6-6bb16d823066" ownerguid="80b48f92-0a83-4eeb-bfe0-6980285feb65"> -<ExampleWords> -<AUni ws="en">cruel, ruthless, heartless, sadistic, bloodthirsty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is cruel?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="73d580ac-dc89-474c-8048-3453ebdda807" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<Abbreviation> -<AUni ws="en">8.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.589" /> -<DateModified val="2022-9-23 16:55:8.589" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the distance between two things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Distance</AUni> -</Name> -<Questions> -<objsur guid="338face4-b7c8-48c8-9257-6eb6c8b3ff67" t="o" /> -<objsur guid="bf175a52-4f8f-4167-846a-ba59eebb37c3" t="o" /> -<objsur guid="0c34f840-2469-424a-9859-f94a5507dde1" t="o" /> -<objsur guid="7d94cc8e-109b-4450-b6f9-6e970f7d74a0" t="o" /> -<objsur guid="601ffa63-3cd3-40e5-b93a-6320d69bbcce" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="7648040b-0aa5-4d9a-8f13-ffd066b81602" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="bba30b56-6cd8-4542-81ab-f983cf1354bd" t="o" /> -<objsur guid="1133ad78-9ce9-46aa-b181-bb6f7a84a07b" t="o" /> -<objsur guid="7d8898d6-6296-4d4d-b8dd-2f48c49f9e98" t="o" /> -<objsur guid="6c54f0b0-b056-4090-b3f0-d5ec6710d4ab" t="o" /> -<objsur guid="4e7a6dfe-3654-4ca1-874d-02424581b774" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="73d858de-6c11-4fde-8876-876086b22809" ownerguid="08c05e00-9660-4491-af2f-a05fab27ef39"> -<ExampleWords> -<AUni ws="en">pinched, drawn, gaunt, hollow cheeks</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe a face that is thin?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="73dd2545-8154-4a39-85df-e4731d1bef6c" ownerguid="8497fb66-8b91-46b9-a0d5-fb9385319561"> -<ExampleWords> -<AUni ws="en">strong, hot, spicy, piquant, fiery, pungent, peppery</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe something that has a strong or spicy taste?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="73ddc0b6-88fd-4cb2-914b-f421cee8fa3f" ownerguid="c753fc8b-22ae-4e71-807f-56fb3ebd3cdd"> -<ExampleWords> -<AUni ws="en">carnal, erotic, genital, heterosexual, phallic, sexual, sexuality, sexually, venereal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something having to do with sex?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="73ddd8c2-9462-4268-b46a-e71cd1ff4436" ownerguid="faa34db3-fb57-4fdc-b8c3-c40f97247910"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="73dfe06b-5660-4e22-8064-6a0dead8e3de"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">prime:ru</AUni> -<AUni ws="qvm-x-acl">prime:ru; prime:ru; prime:ro</AUni> -<AUni ws="qvm-x-akh">prime:ru</AUni> -<AUni ws="qvm-x-akl">prime:ru; prime:ru; prime:ro</AUni> -<AUni ws="qvm-x-ame">prime:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+primero</AUni> -<AUni ws="qvm-x-acl">+primero</AUni> -<AUni ws="qvm-x-akh">+primero</AUni> -<AUni ws="qvm-x-akl">+primero</AUni> -<AUni ws="qvm-x-ame">+primero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.921" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e7600c3a-e9e5-4232-a6b8-ccb36e03c0c7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+primero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b22cda5b-7012-4dbd-ba80-7d1e97978390" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1b71e06b-a72b-4bcc-acaf-936c92715a84" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +primero 
\entryTyp root 
\gENG first 
\gSPN primero 
\e +primero 
\c N0 
\ach prime:ru 
\akh prime:ru 
\acl prime:ru / _# 
\acl prime:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl prime:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl prime:ru / _# 
\akl prime:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl prime:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame prime:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="73e2999e-0561-4f06-a6b3-910c952d32f7" ownerguid="be352131-083c-45b0-8728-e246a01503c0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">seventy</AUni> -<AUni ws="es">setenta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="99159a0b-51ba-4d3b-9944-985ae8514cce" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="73e4c4d4-ba5c-4f85-aaea-6a1cda366fe1" ownerguid="928741b5-bff6-4dd1-be37-ec6e7a4eb6ca"> -<ExampleWords> -<AUni ws="en">shallows, shoal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a place where the water is shallow?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="73e5fe08-dee8-4478-b626-587ce0c1bf1f" ownerguid="f735b05b-c9bc-45cb-a47a-902193a5e236"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="73e97ef0-9669-420c-9460-bb7ee957c5c8" ownerguid="830d8cda-37a3-4f9d-ac02-4ec5aac52794"> -<Form> -<AUni ws="qvm-x-ach">shegu</AUni> -<AUni ws="qvm-x-acl">shegu; shego</AUni> -<AUni ws="qvm-x-akh">shequ</AUni> -<AUni ws="qvm-x-akl">shequ; sheqo</AUni> -<AUni ws="qvm-x-ame">shiqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="73ea23c2-db45-49fa-a72b-0fc6eff4ce30" ownerguid="50c1a392-2928-407a-8306-3c70141e375e"> -<Abbreviation> -<AUni ws="en">8.4.6.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to something happening eventually.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Eventually</AUni> -</Name> -<Questions> -<objsur guid="849f358e-465b-4211-ab52-17133fbfb2be" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="73eaabeb-7c4b-4662-8f55-713224d03605" ownerguid="0e0e91e3-6d3f-4310-b235-bf0ee9c88679"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="796ea771-d383-406f-8765-f5703318488e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="73eea21b-538d-4ed8-b62b-a2dc806d62dd" ownerguid="c87f5a66-58f2-404d-9fd9-4bfd598d2009"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">intestine</AUni> -<AUni ws="es">intestino</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4617a2d5-7d75-4ce2-9799-d95112f278b6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="73efc5bd-44c4-40c3-a2ed-1f4aff7e9024" ownerguid="dcbce83f-4058-4b6e-9cb5-c29c0685f45d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">corn.pastry</AUni> -<AUni ws="es">humita</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c7a5e6ca-f6b1-47c2-ad2b-508f7889e6f7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="73f12db9-24fd-4dec-850f-478373655c36" ownerguid="b0ebe7d2-fde4-4b6e-a4f6-ed9f0ba0308a"> -<Form> -<AUni ws="qvm-x-ach">ratsatsa</AUni> -<AUni ws="qvm-x-acl">ratsatsa</AUni> -<AUni ws="qvm-x-akh">ratsatsa</AUni> -<AUni ws="qvm-x-akl">ratsatsa</AUni> -<AUni ws="qvm-x-ame">ratsatsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="73f3bd83-c9a5-4613-aeb1-0c5076d4850e" ownerguid="ffd0547e-e537-4614-ac3f-6d8cd3351f33"> -<Abbreviation> -<AUni ws="en">1.6.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the parts of a fish.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Parts of a fish</AUni> -</Name> -<Questions> -<objsur guid="cc01c0cc-8d28-44d1-96e4-fe947148b72c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="73f49eba-0c1e-427e-b107-5d48267df817" ownerguid="eeb02a53-fa5f-4d29-885d-6df1b02c4927"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Jos 11.13 Marcacunata rupatsirpis jircancunacho sharcatsishgan cag marcacunataga manami rupatsergantsu. Puytucshu janancho sharcatsishga captinpis Hazorlatami rupatsergan.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="73f728d3-a925-4d4c-aae4-a975661952ba" ownerguid="89db7c8c-9ada-4bc1-b02b-82871c946c22"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="73ffd175-ad05-4d66-af47-2c487b1126eb" ownerguid="4cfcbc1d-84f3-466d-84d1-55ddb4998ea2"> -<Form> -<AUni ws="qvm-x-ach">gargu</AUni> -<AUni ws="qvm-x-acl">gargu; gargo</AUni> -<AUni ws="qvm-x-akh">qarqu</AUni> -<AUni ws="qvm-x-akl">qarqu; qarqo</AUni> -<AUni ws="qvm-x-ame">qarqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="74040f19-daf9-44ee-9950-1334685e2480" ownerguid="4493f427-1c13-4246-bd62-08b5f53b6df5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">which</AUni> -<AUni ws="es">cual</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e6a43c28-e946-4f01-a76e-62b0c9b2e87f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7404362b-41b9-4460-b38d-84de3b77ac80" ownerguid="9f868391-f1df-4682-bdcb-2c2c799006cf"> -<ExampleWords> -<AUni ws="en">remind, bring up, prompt, jog someone's memory, jog your mind</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to causing someone to think of or remember something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="740674bf-3208-4551-aea4-c878deac4953" ownerguid="b3be00a9-41a4-42ae-ba51-320b5000a563"> -<ExampleWords> -<AUni ws="en">underground, below ground, subterranean, abyss, bedrock, core, mantle, stratum, subsoil</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the area under the surface of the earth?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="740700fd-f185-4425-83ac-08b29b53706e" ownerguid="71363186-30b5-4e69-a491-b55627ab9548"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="740715c2-f03b-4a1b-a6ff-35c7c34fd1f1" ownerguid="1ff743cb-49e0-483d-8a1d-4603a7d6c395"> -<ExampleWords> -<AUni ws="en">reduce, cut down on, scale down, scale back, cut back, trim, pare down, downsize, scrimp</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to reducing the amount of something you use or how much you do?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7407d939-a3bb-44bc-babe-f546306ca055" ownerguid="9b9ccd76-76d6-457b-93d2-c4d242a395f8"> -<ExampleWords> -<AUni ws="en">renounce claim, concede, relinquish, cede, no contest, concession, disclaim, disclaimer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to renouncing a claim?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="740c4bdb-79eb-49ee-acc2-4aa2c87624bd" ownerguid="d030f0c7-31a3-47da-be35-46f1eba63ae9"> -<ExampleWords> -<AUni ws="en">charm, enchantress</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to something that causes someone to like a person or thing?</AUni> -</Question> -</rt> -<rt class="StStyle" guid="740c5846-9d09-4109-806c-5357fede8712" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="7d2c80cd-af87-4d56-8337-cfd389b775bb" t="r" /> -</BasedOn> -<Context val="0" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Numbered List</Uni> -</Name> -<Next> -<objsur guid="740c5846-9d09-4109-806c-5357fede8712" t="r" /> -</Next> -<Rules> -<Prop bulNumScheme="10" bulNumStartAt="1" firstIndent="-9000" leadingIndent="21000"></Prop> -</Rules> -<Structure val="0" /> -<Type val="0" /> -<Usage> -<AUni ws="en">A numbered list of paragraphs</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="MoStemAllomorph" guid="740f6137-d93e-452e-b4c2-9c621bbae0fc" ownerguid="752d8412-ab63-4488-b252-a831a7f70b6c"> -<Form> -<AUni ws="qvm-x-ach">problëma</AUni> -<AUni ws="qvm-x-acl">problëma</AUni> -<AUni ws="qvm-x-akh">problëma</AUni> -<AUni ws="qvm-x-akl">problëma</AUni> -<AUni ws="qvm-x-ame">problëma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="741249b1-8133-4bee-886a-4a67c254435b" ownerguid="f33bae47-56e7-403f-9e82-aedda45d5c2e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7c351984-773a-494f-9de0-dbab5c516c7c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="7412d3d5-d912-4e07-83a3-2c92f9d5731a" ownerguid="122dcd76-3ea4-43f6-a76f-f0b242b10ece"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="74149f06-9b57-4206-bb03-e91f726c3e65" ownerguid="1e102423-6167-486a-bfef-dad1c9cdf1eb"> -<ExampleWords> -<AUni ws="en">wagon, cart, chariot, carriage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What kinds of vehicles are pulled by animals?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="7414bd1a-f035-47c8-98a9-94c788ce103a"> -<Form> -<Str> -<Run ws="en">10</Run> -</Str> -</Form> -</rt> -<rt class="LexSense" guid="74168502-00c5-43f5-b539-94867d77ae5b" ownerguid="743e17c6-9b80-4372-b41e-33ee07b82981"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">room</AUni> -<AUni ws="es">sala</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e7c732eb-cb03-435a-ae49-cb4300acfaee" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="741bda94-b886-4289-ba08-bb02b5a14d38"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ca:si; ca:si</AUni> -<AUni ws="qvm-x-acl">ca:si; ca:si; ca:se</AUni> -<AUni ws="qvm-x-akh">ca:si; ca:si</AUni> -<AUni ws="qvm-x-akl">ca:si; ca:si; ca:se</AUni> -<AUni ws="qvm-x-ame">ca:si; ca:si</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+casi</AUni> -<AUni ws="qvm-x-acl">+casi</AUni> -<AUni ws="qvm-x-akh">+casi</AUni> -<AUni ws="qvm-x-akl">+casi</AUni> -<AUni ws="qvm-x-ame">+casi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.800" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8cd59423-4e34-4faa-8046-c902a33fb211" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+casi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b34e0f00-b562-4e2b-83be-dff2d39993ac" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dbab8aa7-070b-425b-9112-2c91dff8333e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +casi 
\entryTyp root 
\gENG almost 
\gSPN casi 
\e +casi 
\c N0 
\mp +FinalI 
\ach ca:si / _# 
\ach ca:si / ~_# 
\akh ca:si / _# 
\akh ca:si / ~_# 
\acl ca:si / _# 
\acl ca:si +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ca:se +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ca:si / _# 
\akl ca:si +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ca:se +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ca:si / _# 
\ame ca:si / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="741c417a-11e9-460c-9ab3-51b8220df016" ownerguid="50ab3705-a81e-4fcc-b3ae-95c075966f69"> -<Abbreviation> -<AUni ws="en">1.3.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.963" /> -<DateModified val="2022-9-23 16:55:7.963" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to waves and what they do.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Wave</AUni> -</Name> -<Questions> -<objsur guid="a6557cd7-161e-40aa-a729-a476558cc335" t="o" /> -<objsur guid="93f90703-a6ba-4c2e-a7bc-e44f382ea550" t="o" /> -<objsur guid="e12ffc1e-5ca4-404b-a022-19bce47cd0ef" t="o" /> -<objsur guid="97f67183-81aa-4edf-b2a8-eb3e31f01d12" t="o" /> -<objsur guid="5d274620-404f-459f-a309-7df773c63929" t="o" /> -<objsur guid="6ea4fdd2-3bb4-45f4-a84c-5276749d4978" t="o" /> -<objsur guid="1de3fed5-126b-4cce-bc55-c825530ce5be" t="o" /> -<objsur guid="de7e47b4-fff4-478d-921d-6edee584e280" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="74222752-b29c-4ae5-9fde-5c1521abe08e" ownerguid="ba5ce436-48f2-4039-b025-c915538ed40c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JER 9.26 Tsaynogpis castigashagmi laplanta\f + \fr 9.26 \ft Waquin runacunaga \it patillanta\it* nipäcun. Tsay witsan chunyag jircacho tag waquin runacuna laplanta rutucog ïdulucunata adorashpanmi. Laplanta tsaynog mana rutucunanpag Tayta Dios nishganta musyanayquipag liyinqui Levítico 19.27.\f* rutucur chunyag jircacho tagcunatapis.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="74261e57-5f50-4201-b7e9-270bc186ffe3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">se:ca</AUni> -<AUni ws="qvm-x-acl">se:ca</AUni> -<AUni ws="qvm-x-akh">se:ca</AUni> -<AUni ws="qvm-x-akl">se:ca</AUni> -<AUni ws="qvm-x-ame">se:ca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+secar</AUni> -<AUni ws="qvm-x-acl">+secar</AUni> -<AUni ws="qvm-x-akh">+secar</AUni> -<AUni ws="qvm-x-akl">+secar</AUni> -<AUni ws="qvm-x-ame">+secar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.480" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aadccbfb-df2b-45f0-91d3-09afc7c416ac" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+secar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d7007555-794e-4746-9288-1e163a2f615e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="20981e70-4d02-4a47-a698-c4e3b6081378" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +secar 
\entryTyp root 
\gENG dry 
\gSPN secar 
\e +secar 
\c V1 
\ach se:ca 
\akh se:ca 
\acl se:ca 
\akl se:ca 
\ame se:ca</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="742996cd-b87f-40a8-bdb3-dba74219bd73" ownerguid="ac9ee84f-f0c7-48b3-8e5a-b4c967112394"> -<Abbreviation> -<AUni ws="en">8.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.619" /> -<DateModified val="2022-9-23 16:55:8.619" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is hot.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79N Hot, Lukewarm, Cold</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Hot</AUni> -</Name> -<OcmCodes> -<Uni>374 Heat</Uni> -</OcmCodes> -<Questions> -<objsur guid="a13af01a-0134-4e57-ac60-722e1945248d" t="o" /> -<objsur guid="89b1b127-3b57-4fdf-bd38-69a599a2f045" t="o" /> -<objsur guid="4cf07c1f-b8aa-45e8-955c-880d3addaf8b" t="o" /> -<objsur guid="07ffdded-b347-4a6c-82c3-84096d18270c" t="o" /> -<objsur guid="77df6511-7099-48c0-863e-0c1baf71d877" t="o" /> -<objsur guid="7a1051bd-dbea-4e03-83e0-09f8eb3a0585" t="o" /> -<objsur guid="42fb4760-dd48-410c-8eb9-b8539ca51cdb" t="o" /> -<objsur guid="907006ef-516f-482e-9020-d26fa746bcea" t="o" /> -<objsur guid="5c8e3cb0-5eaa-434b-aa87-5e13f84044a6" t="o" /> -<objsur guid="9cb52842-c4ea-4598-af46-757bfb7368c2" t="o" /> -<objsur guid="5924984b-5bd7-4177-a614-9d230c242737" t="o" /> -<objsur guid="b700b123-a918-49b9-ac63-9eae3ff41258" t="o" /> -<objsur guid="6d1f8b68-f71d-49aa-b61b-8c3f369220b5" t="o" /> -<objsur guid="9fafebd7-0781-4d9b-9b6a-8a741c91e59e" t="o" /> -<objsur guid="81bc8d2a-ce4c-4f41-9163-0ec9d2bbc190" t="o" /> -<objsur guid="869dabde-466d-4412-9700-d10e481637a8" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="ff7e3abd-6810-4128-83c9-701b4925c2fe" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="82e4394a-2f58-4356-8d9c-1ad9dbe95293" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="742cc876-9824-4739-82b0-be7e02ec4c0f" ownerguid="31d441c5-02eb-4d40-be94-b48e37b59652"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StStyle" guid="7434c828-a430-4084-8a49-4be3bfa97068" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="0" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Added Text</Uni> -</Name> -<Rules> -<Prop forecolor="2e8b57" undercolor="2e8b57" underline="single"></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<Usage> -<AUni ws="en">Material marked as being added</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="MoStemMsa" guid="743601ad-61dc-4741-84e8-491f0a192a61" ownerguid="27b34c00-3d63-4d25-bea6-14002f31108a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="74395eab-4bdb-4ba0-b40e-d2deeef4eb47" ownerguid="87aa8f63-d0e9-4c20-9afc-6acbac3111a9"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">NEH 6.2 Tsaymi Sanbalat y Gesem notificacionta apatsimorgan caynog nir: <<Ono jutiyog pampacho caycag maygan marcamanpis juntacäshun.>></Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="743b003a-0fc5-4822-bd7b-36ea4a7a74a5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jorgu; jorga</AUni> -<AUni ws="qvm-x-acl">jorgu; jorgo; jorga</AUni> -<AUni ws="qvm-x-akh">jorqu; jorqa</AUni> -<AUni ws="qvm-x-akl">jorqu; jorqo; jorqa</AUni> -<AUni ws="qvm-x-ame">hurqu; hurqa</AUni> -</Custom> -<AlternateForms> -<objsur guid="39023064-7ae7-4526-8b7d-81d461142f26" t="o" /> -<objsur guid="ea6167ee-2562-4d71-bd39-bd7bbd72ec47" t="o" /> -</AlternateForms> -<CitationForm> -<AUni ws="qvm-x-ach">*hurqU.v2</AUni> -<AUni ws="qvm-x-acl">*hurqU.v2</AUni> -<AUni ws="qvm-x-akh">*hurqU.v2</AUni> -<AUni ws="qvm-x-akl">*hurqU.v2</AUni> -<AUni ws="qvm-x-ame">*hurqU.v2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.769" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="08945af9-c534-475d-9c99-75f0e429d6b7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hurqU.v2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="683ec00b-a31e-4d3b-9a30-8420b9887295" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f66c8c1e-374d-4c45-a9dc-1aa89484cb97" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hurqU.v2 
\entryTyp root 
\gENG take.out 
\gSPN sacar 
\e *hurqU.v2 
\c V2 
\mp PMlowered 
\ach jorgu 
\ach jorga morphlowered 
\akh jorqu 
\akh jorqa morphlowered 
\acl jorgu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl jorgo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl jorga morphlowered 
\akl jorqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jorqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jorqa morphlowered 
\ame hurqu 
\ame hurqa morphlowered 
\mcc *hurqU.v2 / _... [trans]</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="743c9781-a750-47ad-8024-3a59d012d658" ownerguid="32e85ff9-9b83-4501-9b53-0a7b5fce9e56"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.ready</AUni> -<AUni ws="es">ser.listo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="eadd1f8e-eb69-4ae3-8f37-95099587d223" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="743e17c6-9b80-4372-b41e-33ee07b82981"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sa:la</AUni> -<AUni ws="qvm-x-acl">sa:la</AUni> -<AUni ws="qvm-x-akh">sa:la</AUni> -<AUni ws="qvm-x-akl">sa:la</AUni> -<AUni ws="qvm-x-ame">sa:la</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sa:la</AUni> -<AUni ws="qvm-x-acl">+sa:la</AUni> -<AUni ws="qvm-x-akh">+sa:la</AUni> -<AUni ws="qvm-x-akl">+sa:la</AUni> -<AUni ws="qvm-x-ame">+sa:la</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.429" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7491a281-c0cb-42f8-ab05-0e7166337de3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sa:la</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e7c732eb-cb03-435a-ae49-cb4300acfaee" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="74168502-00c5-43f5-b539-94867d77ae5b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sa:la 
\entryTyp root 
\gENG room 
\gSPN sala 
\e +sa:la 
\c N0 
\ach sa:la 
\akh sa:la 
\acl sa:la 
\akl sa:la 
\ame sa:la</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="743effe4-fdc1-4589-8d35-9f7b80d5f2e8" ownerguid="8be94377-a3cc-4187-a6e2-51523e953503"> -<ExampleWords> -<AUni ws="en">carpenter (wood), blacksmith (iron, metal), cowboy (cattle), shepherd (sheep)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a person who works with a particular material or animal?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="743f2cdb-d20e-4149-b225-f9b0dc217978" ownerguid="4b82a47e-6a4c-43b6-8897-8a44bf15a9c9"> -<Form> -<AUni ws="qvm-x-ach">macmacya; macmacyä</AUni> -<AUni ws="qvm-x-acl">macmacya; macmacyä</AUni> -<AUni ws="qvm-x-akh">makmakya; makmakyä</AUni> -<AUni ws="qvm-x-akl">makmakya; makmakyä</AUni> -<AUni ws="qvm-x-ame">makmakya; makmakyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7440508f-0bd3-4c82-b9cd-b555ddd450b8" ownerguid="3f4c559f-ab4f-411f-a23b-d2396c977005"> -<ExampleWords> -<AUni ws="en">clear, distinct, apparent, clear-cut, conspicuous, prominent, stand out, evident, glaring, manifest, obvious, patent, pronounced, unmistakable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that can be easily seen?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7440cecd-7493-4b9e-86fd-dbf27ad2bfed" ownerguid="1f195274-5596-4e32-96a1-a1946fb984a7"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="74461226-babd-4ce9-a921-8a7ed8cc39c4" ownerguid="eed0654e-45ce-4ef0-b34f-a2e02cf8b94c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="6c56fe1f-e207-4b80-b6db-4bb3165c4ee1" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">prophesy</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="065b0866-4871-4d85-b736-a0e657acca01" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="74499479-7102-4eab-9ef7-4d5a1bfa4a8d" ownerguid="d6bd9f96-9d92-4651-b1e6-b4211c758955" /> -<rt class="MoStemAllomorph" guid="744c100a-92af-447e-bc41-1589116f04cc" ownerguid="ccba702a-8b01-49e8-b007-0b7a3c3a49f5"> -<Form> -<AUni ws="qvm-x-ach">estudia</AUni> -<AUni ws="qvm-x-acl">estudia</AUni> -<AUni ws="qvm-x-akh">estudia</AUni> -<AUni ws="qvm-x-akl">estudia</AUni> -<AUni ws="qvm-x-ame">estudia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="744d1402-05f5-4491-9c15-a5af03595edb" ownerguid="30e6b42c-6bbf-4659-99e7-aa4b8e68c9ce"> -<Abbreviation> -<AUni ws="en">4.3.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.217" /> -<DateModified val="2022-9-23 16:55:8.217" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being bad or immoral in behavior, and for words describing a bad person.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88H' Impurity; 88T Act Shamefully; 88I' Licentiousness, Perversion; 88L' Sin, Wrongdoing, Guilt</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Bad, immoral</AUni> -</Name> -<OcmCodes> -<Uni>680 Offenses and Sanctions; 682 Offenses against Life; 683 Offenses against the Person; 684 Sex and Marital Offenses; 685 Property Offenses; 686 Nonfulfillment of Obligations; 687 Offenses against the State; 688 Religious Offenses; 689 Social Offenses</Uni> -</OcmCodes> -<Questions> -<objsur guid="00f5218c-ad6a-44ad-b7be-2bf92c74a80e" t="o" /> -<objsur guid="f2fd216f-425c-43c5-a44f-c6cae0c28d0b" t="o" /> -<objsur guid="b8729140-d69a-46e9-bfd6-479b9372318a" t="o" /> -<objsur guid="ed27d037-cec5-4a3a-9aef-08d9ed59f16a" t="o" /> -<objsur guid="341fe30b-d319-4cbc-9824-f2629464c7ad" t="o" /> -<objsur guid="718a6643-153c-49f3-ad8d-7cf438d3b2e4" t="o" /> -<objsur guid="57ce8feb-c051-4d2a-b0a2-b8dab5cb96ec" t="o" /> -<objsur guid="a8435938-6982-4f17-a978-67ce52f3904f" t="o" /> -<objsur guid="53b0f108-82b4-4902-8f25-df2dd1290bcf" t="o" /> -<objsur guid="ddc0092c-e8e7-4a14-8d72-fd3eaca40ef5" t="o" /> -<objsur guid="ba4f9379-f55f-4bd6-9ded-321f83e504e6" t="o" /> -<objsur guid="6e06bf00-4444-4f97-9d32-67fdfe9cb5da" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="aecf2aad-b7a4-444f-9b13-64bc534126d2" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="744d77f0-dd92-4b03-83f6-6828da76173d" ownerguid="b6b73d41-e23f-4f22-b01e-7e75f4115fce"> -<ExampleWords> -<AUni ws="en">fail to reach, miss, fall short of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to failing to reach a goal?</AUni> -</Question> -</rt> -<rt class="Segment" guid="744e213c-45e2-4aaa-b30d-dd54309d8e62" ownerguid="bc33ef15-be3a-41fa-a767-708f24c1cd8a"> -<Analyses> -<objsur guid="34353638-fce9-46ba-849d-41c822927b95" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="CmDomainQ" guid="7450572a-580e-4d22-96f0-76c685ba8c94" ownerguid="97ed5af8-29ca-428d-8ac5-c61b61a963fd"> -<ExampleWords> -<AUni ws="en">spotted, speckled, dotted, blotchy, dappled, mealy, mottled, pied, spotty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is colored with spots?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7450fe55-d556-4ef3-874e-93725b06829d" ownerguid="7fa7e166-5942-436b-8d3f-13d56519233b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="745147a3-157d-472b-a4cb-e71da4669788"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ganchis</AUni> -<AUni ws="qvm-x-acl">ganchis</AUni> -<AUni ws="qvm-x-akh">qanchis</AUni> -<AUni ws="qvm-x-akl">qanchis</AUni> -<AUni ws="qvm-x-ame">qanchis</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qantris</AUni> -<AUni ws="qvm-x-acl">*qantris</AUni> -<AUni ws="qvm-x-akh">*qantris</AUni> -<AUni ws="qvm-x-akl">*qantris</AUni> -<AUni ws="qvm-x-ame">*qantris</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.84" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="896963dc-9f9a-40c4-875d-269073fd76f9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qantris</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3f5b3228-d768-47e6-881e-9e77cc9b6fc0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e61f0e47-f8da-46eb-9f25-d0e87e1ae968" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qantris 
\entryTyp root 
\gENG seven 
\gSPN siete 
\e *qantris 
\c N0 
\mp +FinalC 
\ach ganchis 
\akh qanchis 
\acl ganchis 
\akl qanchis 
\ame qanchis</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="7454aef5-19dd-496b-a08b-5b3d9915d9bf" ownerguid="d17a8a67-48d5-42e3-ba64-32708483e536"> -<Form> -<AUni ws="qvm-x-ach">shulala; shulalä</AUni> -<AUni ws="qvm-x-acl">shulala; shulalä</AUni> -<AUni ws="qvm-x-akh">shulala; shulalä</AUni> -<AUni ws="qvm-x-akl">shulala; shulalä</AUni> -<AUni ws="qvm-x-ame">shulala; shulalä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="7455d666-0cc3-480a-a43b-78bfd20c8f10" ownerguid="52a7b4cb-3ebe-4c1f-8e5c-4d86e1d7d10b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ycu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ycu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d47785a7-bced-4085-a334-1ed6f848c530" t="r" /> -</Morph> -<Msa> -<objsur guid="382e9c39-4806-4765-a8a2-5ecb5ad0e3bd" t="r" /> -</Msa> -<Sense> -<objsur guid="d6918f9b-be9f-4049-bf76-21a1597e24db" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="74573fad-59e1-40e1-82ea-7690598a9715" ownerguid="5d654943-5ce0-4ae5-a598-9b99cfdf380b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">deceit</AUni> -<AUni ws="es">engaño</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d35ddad3-f496-4dd1-a6c1-351f8fee9898" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="74586c4f-768f-4ae6-9864-d30ecee2a801"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">agradeci:du</AUni> -<AUni ws="qvm-x-acl">agradeci:du; agradeci:du; agradeci:do</AUni> -<AUni ws="qvm-x-akh">agradeci:du</AUni> -<AUni ws="qvm-x-akl">agradeci:du; agradeci:du; agradeci:do</AUni> -<AUni ws="qvm-x-ame">agradeci:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+agradecido</AUni> -<AUni ws="qvm-x-acl">+agradecido</AUni> -<AUni ws="qvm-x-akh">+agradecido</AUni> -<AUni ws="qvm-x-akl">+agradecido</AUni> -<AUni ws="qvm-x-ame">+agradecido</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.667" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="19aa4d9f-1194-474d-81fb-61da1b8d3101" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+agradecido</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c3b951ca-540d-4977-85a6-18dc65203287" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="33e816d6-1e7b-4cf0-a6eb-cf2a4efada05" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +agradecido 
\entryTyp root 
\gENG 
\gSPN 
\e +agradecido 
\c N0 
\ach agradeci:du 
\akh agradeci:du 
\acl agradeci:du / _# 
\acl agradeci:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl agradeci:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl agradeci:du / _# 
\akl agradeci:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl agradeci:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame agradeci:du 
\i 2CH 24.22 Tsaynogpami mandag rey Joásga mal agradecïdu car mana yarpargantsu wamra captin Zacaríaspa taytan Joiada salvashganta.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="7459c0d8-4da1-4944-a95e-bc64cde860f5" ownerguid="935da513-126e-4cab-8e07-625458821181"> -<Abbreviation> -<AUni ws="en">4.2.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.205" /> -<DateModified val="2022-9-23 16:55:8.205" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to inviting people to meet together--to say something to someone because you want to meet with them.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33D' Invite</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Invite</AUni> -</Name> -<Questions> -<objsur guid="29e61f80-e6aa-4bb2-bb66-4fb1dee5912d" t="o" /> -<objsur guid="e66e3e59-2fb4-4ade-a864-eefb80f6df90" t="o" /> -<objsur guid="5eb1304e-aec4-457e-854d-988de6106459" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="745aba29-cdb6-49cc-b300-3a2c2966b118" ownerguid="9c21f9bd-a7e0-4989-99f1-7fa2853ab73c"> -<ExampleWords> -<AUni ws="en">scissors, haircutter, shears</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What tools are used to cut hair?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="746202ef-5008-481b-a916-811327d547c2" ownerguid="37a8e3a9-6979-4493-bcf3-f4247c60bd1b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="74693758-e781-4a77-a90c-fdec7f1437fa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">consagra</AUni> -<AUni ws="qvm-x-acl">consagra</AUni> -<AUni ws="qvm-x-akh">consagra</AUni> -<AUni ws="qvm-x-akl">consagra</AUni> -<AUni ws="qvm-x-ame">consagra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+consagrar</AUni> -<AUni ws="qvm-x-acl">+consagrar</AUni> -<AUni ws="qvm-x-akh">+consagrar</AUni> -<AUni ws="qvm-x-akl">+consagrar</AUni> -<AUni ws="qvm-x-ame">+consagrar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.172" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="44b0423f-3160-4954-acae-eead2054c86b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+consagrar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3543570b-2091-4978-ad07-c81d7474626e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b3c5ab6c-69fd-464f-badc-b1c223315792" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +consagrar 
\entryTyp root 
\gENG 
\gSPN 
\e +consagrar 
\c V2 
\ach consagra 
\akh consagra 
\acl consagra 
\akl consagra 
\ame consagra</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="7469850f-190c-4c67-bdfc-985cbf0148ea"> -<Form> -<Str> -<Run ws="en">REF</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="746aa9db-a45e-4d57-bce8-71b007523c4c" ownerguid="db2232d9-8b17-4920-936f-2b6249c6f7fa"> -<ExampleWords> -<AUni ws="en">banditry, break-in, breaking and entering, embezzlement, hold-up, jewel heist, job, misappropriation, mugging, purse snatching, pick pocketing, pilferage, pilfering, racketeering, raid, robbery, snatch, stick-up, theft</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to the act of stealing?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="746db52f-fd50-48e4-bc03-a56f8b1d2911" ownerguid="7c319154-d1d5-4e64-94d0-27b05186b8f9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">comrad</AUni> -<AUni ws="es">compañero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fb27b38a-0c86-4609-a4bd-ed8bc9f1d019" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="746e3824-4c2f-4991-889d-5a68a618b8ad" ownerguid="16dbd62c-f60d-4530-ba4e-0e74221e4681"> -<ExampleWords> -<AUni ws="en">hide, not show, conceal, keep secret, cover up, suppress, repress, disguise, mask, put on a brave face, bottle something up, be non-committal, sweep something under the rug, cover your tracks</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to hiding information?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7472f675-122f-464e-b110-6b0be554bf9c" ownerguid="022e57c2-c632-4419-93be-602cf7f29c7d"> -<Form> -<AUni ws="qvm-x-ach">traición; traicion</AUni> -<AUni ws="qvm-x-acl">traición; traicion</AUni> -<AUni ws="qvm-x-akh">traición; traicion</AUni> -<AUni ws="qvm-x-akl">traición; traicion</AUni> -<AUni ws="qvm-x-ame">traición; traicion</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StStyle" guid="7473c95b-26ed-4fda-8f31-c8aa0c25f2aa" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="a5a1a249-b888-434d-a839-a2421ec50dbf" t="r" /> -</BasedOn> -<Context val="11" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Title Main</Uni> -</Name> -<Next> -<objsur guid="7473c95b-26ed-4fda-8f31-c8aa0c25f2aa" t="r" /> -</Next> -<Rules> -<Prop align="center" bold="invert" fontsize="20000" fontsizeUnit="mpt" italic="off" lineHeight="24000" lineHeightType="exact" lineHeightUnit="mpt" spaceAfter="12000" spaceBefore="36000"></Prop> -</Rules> -<Structure val="0" /> -<Type val="0" /> -<Usage> -<AUni ws="en">Title Main identifies the main title of a book.</AUni> -</Usage> -<UserLevel val="0" /> -</rt> -<rt class="MoStemMsa" guid="74775b7e-fa84-457c-8efb-d8ea9f364b54" ownerguid="3b673a05-fd79-4b49-a972-6bdacd6a03b8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="74778ce4-f823-4579-96fa-7ed43eedd31e" ownerguid="25feced8-28d4-4fba-aca2-25cc8a3f7d1a"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="09d637e9-32c5-4d42-a220-51f672baef15" t="o" /> -<objsur guid="ad752873-0f3d-4d51-b9d0-e801747df65c" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="7478e32d-4a6a-4e5e-896e-8a7b7a07f137" ownerguid="b82c7ba0-9f4e-44da-bcd0-d30f5b224de5"> -<ExampleWords> -<AUni ws="en">medicate, apply medicine/ointment, give a shot, inject someone with, vaccinate, immunize, inoculate, administer, prescribe medicine, apply a bandage, (cover oneself under steaming herbal medicine), massage, rub something in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to giving medicine?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="747bf39e-5a41-4e40-8cb1-eba955b30ff2" ownerguid="039b4177-3392-4ebd-80de-d962a130db75"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JDG 16.15 Saynami Dalila nergan: <<Rasun cagta mana wilaycämarga ¿imanirtä <cuyämi wayllömi> nimanqui?</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="747c3089-1356-4531-9394-57de67bd1cbb" ownerguid="d7861def-70c1-470f-bca6-8230cbbaa3e9"> -<ExampleWords> -<AUni ws="en">leer, ogle, make eyes at, goggle, peep, admire</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe how you look at a woman if you are sexually attracted to her?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="747e4406-9071-439e-b677-ba9dc6bc2b50" ownerguid="83899fe3-e1fd-4778-b427-830263df66c1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="87b5e9a0-1e23-432c-b25c-643aa7ddd0a7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="74814e42-2743-46c8-b687-8eed78d19c0c" ownerguid="6fbe39fb-a4cb-4fcf-830b-8875fd4324e0"> -<ExampleWords> -<AUni ws="en">force, make someone do something, drive, compel someone to do something, leave someone with no choice, leave someone with no option, be condemned to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a situation forcing someone to do something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7486c9ef-5a75-4a89-85ea-7065c61e4e4a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">publicu; público</AUni> -<AUni ws="qvm-x-acl">publicu; publicu; publico</AUni> -<AUni ws="qvm-x-akh">publicu; público</AUni> -<AUni ws="qvm-x-akl">publicu; publicu; publico</AUni> -<AUni ws="qvm-x-ame">publicu; público</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+público</AUni> -<AUni ws="qvm-x-acl">+público</AUni> -<AUni ws="qvm-x-akh">+público</AUni> -<AUni ws="qvm-x-akl">+público</AUni> -<AUni ws="qvm-x-ame">+público</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.65" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7fae4f1d-27cb-4c31-b74b-ba080cbe3ac3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+público</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5f4999ae-804a-4ac7-8db3-07ca5ac1b343" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="443fdf7d-c80e-467b-b576-2ec5e015bb1b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +público 
\entryTyp root 
\gENG public 
\gSPN público 
\e +público 
\c N0 
\ach publicu / ~_# 
\ach público / _# 
\akh publicu / ~_# 
\akh público / _# 
\acl publicu / ~_# 
\acl publicu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl publico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl publicu / ~_# 
\akl publicu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl publico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame publicu / ~_# 
\ame público / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="7488c178-52b6-4793-9080-07d38833b0da" ownerguid="85d0d551-4d20-4930-86d7-84fe189fcc96"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="748b96b2-40f0-4115-9cb8-5fc9173ae001" ownerguid="892f4033-1332-4426-9fca-14d126677c5f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">garga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">garga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qarqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qarqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qarqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e9154280-f82e-445f-8700-b610d772df34" t="r" /> -</Morph> -<Msa> -<objsur guid="c7dbec8d-838d-4a92-a15b-4f3d5b563513" t="r" /> -</Msa> -<Sense> -<objsur guid="85c9f7db-4fd1-4d3d-80fd-9e0c1d3b8a91" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="748edc49-54f8-4e52-ba37-ad097a05a8d6" ownerguid="ce3af8af-8227-4901-8891-7f5cc41520d9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="a1aa2412-2321-4423-9288-d5a364fd9513" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="d8f87f74-990e-40d0-af5b-fcb2a13fded9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="748f33b4-9ba5-4f19-9a43-09eeca3068f5" ownerguid="851d9ccc-2a49-4ef0-947f-dd6f5e91b410"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spit.coca</AUni> -<AUni ws="es">coca.masticado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6fbd5fd1-6400-4623-ba57-aca22b5f6cf8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="748f375c-4619-4601-bf58-56f51e624dbc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">volca</AUni> -<AUni ws="qvm-x-acl">volca</AUni> -<AUni ws="qvm-x-akh">volca</AUni> -<AUni ws="qvm-x-akl">volca</AUni> -<AUni ws="qvm-x-ame">volca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+volcar</AUni> -<AUni ws="qvm-x-acl">+volcar</AUni> -<AUni ws="qvm-x-akh">+volcar</AUni> -<AUni ws="qvm-x-akl">+volcar</AUni> -<AUni ws="qvm-x-ame">+volcar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.424" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aa20d222-c9c2-4910-a126-70931460bddb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+volcar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8cacaa62-0724-4cb3-9c62-1f9d6373771e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e185e099-8bcd-4073-a808-c2d23e4e273f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +volcar 
\entryTyp root 
\gENG flip.over 
\gSPN volcar 
\e +volcar 
\c V1 
\ach volca 
\akh volca 
\acl volca 
\akl volca 
\ame volca</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="7491a281-c0cb-42f8-ab05-0e7166337de3" ownerguid="743e17c6-9b80-4372-b41e-33ee07b82981"> -<Form> -<AUni ws="qvm-x-ach">säla</AUni> -<AUni ws="qvm-x-acl">säla</AUni> -<AUni ws="qvm-x-akh">säla</AUni> -<AUni ws="qvm-x-akl">säla</AUni> -<AUni ws="qvm-x-ame">säla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="74920621-63ba-4d4a-8a2c-09fc5a60c9d3" ownerguid="321264e3-bd8d-4c08-895b-94f56a413b40"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">r</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">r</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">r</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">r</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">r</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a96fae79-db91-498f-a3f4-4aaeff3f9499" t="r" /> -</Morph> -<Msa> -<objsur guid="973e08a0-60b3-4ff1-9973-ac70ea0a16bc" t="r" /> -</Msa> -</rt> -<rt class="Segment" guid="74944e94-e875-4bb2-8aaf-f320d587b6b0" ownerguid="2330e42f-a84d-4d3f-85c3-137e4f5266a0"> -<Analyses> -<objsur guid="a6afc268-b0d1-4da5-8ae5-b4131c2b34b5" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexEntry" guid="7495b59c-dcdc-4b45-80fb-049428e04995"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maño:su</AUni> -<AUni ws="qvm-x-acl">maño:su; maño:su; maño:so</AUni> -<AUni ws="qvm-x-akh">maño:su</AUni> -<AUni ws="qvm-x-akl">maño:su; maño:su; maño:so</AUni> -<AUni ws="qvm-x-ame">maño:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mañoso</AUni> -<AUni ws="qvm-x-acl">+mañoso</AUni> -<AUni ws="qvm-x-akh">+mañoso</AUni> -<AUni ws="qvm-x-akl">+mañoso</AUni> -<AUni ws="qvm-x-ame">+mañoso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.336" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cf0fd6d2-9b6e-41b1-b59e-4bcdb4113864" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mañoso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b0519186-6a3b-4a56-9667-5c2c106ae471" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="853cc092-7fd0-4ac1-9df3-09376e12c472" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mañoso 
\entryTyp root 
\gENG 
\gSPN 
\e +mañoso 
\c N0 
\ach maño:su 
\akh maño:su 
\acl maño:su / _# 
\acl maño:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl maño:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl maño:su / _# 
\akl maño:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl maño:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame maño:su</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="74964a6a-8a3a-4150-9383-c7cf53e8217e" ownerguid="67087306-0211-4c28-b17e-0b6827723f07"> -<ExampleWords> -<AUni ws="en">person in authority, authority, authority figure, person in charge, leader, boss, captain, director, chairman, chairperson, head, figurehead, master</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a person in authority?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7496cea3-d239-4a1e-9121-cdbf98e3a4e9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">viva</AUni> -<AUni ws="qvm-x-acl">viva</AUni> -<AUni ws="qvm-x-akh">viva</AUni> -<AUni ws="qvm-x-akl">viva</AUni> -<AUni ws="qvm-x-ame">viva</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+viva</AUni> -<AUni ws="qvm-x-acl">+viva</AUni> -<AUni ws="qvm-x-akh">+viva</AUni> -<AUni ws="qvm-x-akl">+viva</AUni> -<AUni ws="qvm-x-ame">+viva</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.414" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b64a6480-3cc9-47a7-b237-79e380aff0c8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+viva</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3401c4bc-5366-4547-9686-9d2727c0d8b0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="25b13d90-d919-4746-b212-c25403ea925b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +viva 
\entryTyp root 
\gENG long.live 
\gSPN viva 
\e +viva 
\c NOSUFF 
\ach viva 
\akh viva 
\acl viva 
\akl viva 
\ame viva</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="74971461-896c-4ad6-a4e8-28ff04a2a36f" ownerguid="474eb21f-72f2-45a5-91eb-d95776dfaf73"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ta</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ta</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ta</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ta</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ta</Run> -</AStr> -</Form> -<Morph> -<objsur guid="4f3f1430-f126-405a-98a8-5d0b732eb948" t="r" /> -</Morph> -<Msa> -<objsur guid="eac932ef-fd79-454b-b2f7-95e85dbb829a" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="7497711e-b5b6-454e-bb40-9c26a21e3353" ownerguid="ea9c8d4b-29b3-4fe8-a081-86b1c98e644e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="2eab4a9a-efe6-4af7-9c91-64ed6114cf08" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="74983b44-7b4f-42a5-8e72-4b5c7363cc70" ownerguid="02b0fb37-fa6f-477c-b80b-17d424313e7b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="749ad6fe-5509-4e45-b236-84ea12de102e" ownerguid="2b893d04-3450-4862-b046-7df6f87272f6"> -<Abbreviation> -<AUni ws="en">6.8.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to sharing wealth with others.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Share wealth</AUni> -</Name> -<OcmCodes> -<Uni>740 Health and Welfare; 741 Philanthropic Foundations; 747 Private Welfare Agencies</Uni> -</OcmCodes> -<Questions> -<objsur guid="f98ab20d-aba5-491e-9416-6910642750aa" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="b5b36c31-c56d-44b9-933c-fe0e62d80c25" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="85f211ae-cc16-4042-8c27-e99ff8f01f61" t="o" /> -<objsur guid="339ee46b-d69a-4f2e-8fba-d1b2adff763b" t="o" /> -<objsur guid="0105615f-0a96-4d08-ab00-ca4b4473de39" t="o" /> -<objsur guid="6681f03b-06c4-4509-9253-e4739c9c1614" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="749ae4c4-5254-4786-8aa4-c706e09c0834"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waylu</AUni> -<AUni ws="qvm-x-acl">waylu; waylo</AUni> -<AUni ws="qvm-x-akh">waylu</AUni> -<AUni ws="qvm-x-akl">waylu; waylo</AUni> -<AUni ws="qvm-x-ame">waylu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wayllu.v</AUni> -<AUni ws="qvm-x-acl">*wayllu.v</AUni> -<AUni ws="qvm-x-akh">*wayllu.v</AUni> -<AUni ws="qvm-x-akl">*wayllu.v</AUni> -<AUni ws="qvm-x-ame">*wayllu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.617" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="62dd3c2a-fc62-4e26-925a-2c6ab64252dd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wayllu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f8e9024d-ef5e-4f10-9935-c4b86eb46c9f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9b0e6a30-c5a2-4df2-ae0a-f7e99a045f7e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wayllu.v 
\entryTyp root 
\gENG 
\gSPN 
\e *wayllu.v 
\c V2 
\ach waylu 
\akh waylu 
\acl waylu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl waylo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl waylu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl waylo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame waylu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="749ae7b1-92a6-4aaa-8933-157a0a98f244" ownerguid="6de6ebb0-8896-4615-8718-e7ce8f9da605"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shpa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shpa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shpa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shpa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shpa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1cec07b9-c736-451d-aeb8-e27d82256aa0" t="r" /> -</Morph> -<Msa> -<objsur guid="210b55d0-3031-4731-891b-77f3eaa2a10a" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="749ce679-9e81-43d1-a46c-26ed32824066" ownerguid="f352a437-58f2-4920-aec3-eda8041f7447"> -<ExampleWords> -<AUni ws="en">prototype, original (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to something that is the first of its kind?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="74a1648b-f379-4079-a67f-cfcf1b0211a6" ownerguid="b044e890-ce30-455c-aede-7e9d5569396e"> -<ExampleWords> -<AUni ws="en">starless (sky, night)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words are used for when or where the stars don't shine?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="74a275f2-f2b1-4196-9b9a-c9a8bc47c455" ownerguid="78b10399-81b3-4bba-a17b-b811cdea46ef"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">graduation</AUni> -<AUni ws="es">clausura</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a61d37dd-dcba-42c1-b305-55d31e8e7fa0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="74a2d309-656c-4146-ba8c-92a1c808875c" ownerguid="de6c022f-6ed0-483c-bfda-25b96598daad"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">eye</AUni> -<AUni ws="es">ojo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="12297b7a-ac10-49e0-9e01-9646f9dc6d20" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="74a35c85-a259-47e6-a64f-5ac16392aa5e" ownerguid="663a98df-b6a2-4dfb-b651-0e3c99e86bde"> -<Form> -<AUni ws="qvm-x-ach">tsapu</AUni> -<AUni ws="qvm-x-acl">tsapu; tsapo</AUni> -<AUni ws="qvm-x-akh">tsapu</AUni> -<AUni ws="qvm-x-akl">tsapu; tsapo</AUni> -<AUni ws="qvm-x-ame">tsapu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="74a6d2f7-c936-4dd7-beb8-0cfc64427b03" ownerguid="82aba3d9-56fc-4844-b198-c0076304a730"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="601b6892-e83f-41ee-be56-c9112ac541b0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="74aa2615-fcd3-4b77-a691-4d9ecd488a2b" ownerguid="c313c84c-fa1f-41f0-85fb-0362d86e10a1"> -<Gloss> -<AUni ws="en">to.heal</AUni> -<AUni ws="es">curar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4ca544e3-d0fa-456f-b2ff-07633275ba38" t="r" /> -</MorphoSyntaxAnalysis> -<Custom name="Target Equivalent"> -<AStr ws="en"> -<Run ws="en">silfw://localhost/link?database%3dQuechua+SC%26tool%3dlexiconEdit%26guid%3d4b3f19f1-5c56-4d37-84c2-e152882ae56f%26tag%3d</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="74aafb5a-6f5d-4607-9810-0b1b380467d9" ownerguid="db4d08c6-10bb-4f11-91c0-6b4949c9c7ea"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">delouse</AUni> -<AUni ws="es">despiojar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3bc98df1-f7ae-40e7-acab-ffed89ca63ef" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="74af24ed-1128-45fc-9a44-eafcc860ccba" ownerguid="84afa73b-f1cd-471b-ae3b-7f3887fd4589"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="74b013fe-800a-4762-9eca-9b70101fc4bf"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">kawanaykipaq</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="74b23e5e-301a-4d38-8c3a-cb949b85ee5e" ownerguid="78b0ad1b-0766-41ba-b788-d176addd5e9f"> -<ExampleWords> -<AUni ws="en">brevity, brief, concise, curt, pithy, succinct, synopsis, synoptic, terse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to saying something in a short time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="74b59a76-cf81-413b-9083-4b6ae7aaf063" ownerguid="69455770-fca7-4f41-9e7d-236e8f094ce6"> -<ExampleWords> -<AUni ws="en">covenant, testament, deal, agreement, bond, commitment, to trust</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a covenant?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="74b6f7ca-b63e-467a-9b9a-44a96ec279b4" ownerguid="e3652e40-520f-4331-b510-861e207e6c0b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="74b70b79-fbfa-40f5-a68a-d62068eb5d64" ownerguid="f03b8344-0771-4c0b-9127-cfbcbd7a9cd7"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="74b8675d-e1c3-4854-8809-1e293337bdb9" ownerguid="8225de87-35a3-4c7a-b35c-f45b152caebe"> -<ExampleWords> -<AUni ws="en">show, be a sign, mean, indicate, reveal, make it clear, demonstrate, betray, be evidence, reflect, illustrate, bear witness to, tell</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to something showing that something is true?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="74ba6466-8984-4a7c-a28e-effea5e84ab4" ownerguid="d6e9e2b5-155f-4e7b-b841-f5589e1b5c89"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="74bc1e18-0449-428e-bf63-f7bf5b009ffb" ownerguid="78e89dd6-63de-4790-951f-7fc979548e59"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">old.lady</AUni> -<AUni ws="es">anciana</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9f8f607d-37a2-483e-914e-4f0473b29c30" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="74bfc3ea-c9ee-4941-8ad8-7ce0d2253fc6" ownerguid="f7833042-cd10-42c1-9507-945e3c043f96"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="74c280f3-f6cd-4b08-becb-f865961e16cb"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">aywapäkumushqayki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="74c46e75-8f5c-468b-8818-9379cfe34180" ownerguid="82b31efe-219a-425f-8483-862b2f102295"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="0bc87463-6408-4263-be2b-4603749cfd84" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="74c519e5-e149-41c3-b085-3188895e1efd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gueshta</AUni> -<AUni ws="qvm-x-acl">gueshta</AUni> -<AUni ws="qvm-x-akh">qeshta</AUni> -<AUni ws="qvm-x-akl">qeshta</AUni> -<AUni ws="qvm-x-ame">qishta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qishta.v</AUni> -<AUni ws="qvm-x-acl">*qishta.v</AUni> -<AUni ws="qvm-x-akh">*qishta.v</AUni> -<AUni ws="qvm-x-akl">*qishta.v</AUni> -<AUni ws="qvm-x-ame">*qishta.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.209" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d99b8d90-bd5e-4cf7-a752-22afe438355e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qishta.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7824dc6a-3310-4b73-87be-4f3600ac2ce0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4281158a-087c-4914-af5b-24a6103aa096" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qishta.v 
\entryTyp root 
\gENG lay.out 
\gSPN tender 
\e *qishta.v 
\c V1 
\ach gueshta 
\akh qeshta 
\acl gueshta 
\akl qeshta 
\ame qishta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="74c7c96c-ec93-4f7e-821a-66184c7aac35" ownerguid="7fc5c4e8-8d66-4a8e-9368-9c85043c95a1"> -<Form> -<AUni ws="qvm-x-ach">flëcha</AUni> -<AUni ws="qvm-x-acl">flëcha</AUni> -<AUni ws="qvm-x-akh">flëcha</AUni> -<AUni ws="qvm-x-akl">flëcha</AUni> -<AUni ws="qvm-x-ame">flëcha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="74c8e39e-9f51-4935-aadf-cb6d1fcc16c1" ownerguid="2a2af155-9db9-41c5-860a-fe0a3a09d6de"> -<ExampleWords> -<AUni ws="en">careless, casual, dismiss, disregard, incautious, neglect, overlook, shrug, wing it</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to not thinking carefully?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="74cad011-0d9c-47a6-9de0-3599620afaa5" ownerguid="db2232d9-8b17-4920-936f-2b6249c6f7fa"> -<ExampleWords> -<AUni ws="en">fence stolen goods, launder money, bury treasure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What do robbers do with the things they steal?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="74cd7314-5ef6-4505-a35a-81468b5a3f3a" ownerguid="0037693a-ae42-4e5c-85f5-10a05482d4ee"> -<Abbreviation> -<AUni ws="en">9.1.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.680" /> -<DateModified val="2022-9-23 16:55:8.680" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a situation--a particular time and place, and the things that are true about it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Situation</AUni> -</Name> -<Questions> -<objsur guid="2b7b561c-6643-4a5b-958e-aaf1c44d90eb" t="o" /> -<objsur guid="0adda843-19a0-4d60-ae5b-89128c6e8897" t="o" /> -<objsur guid="1abed02b-f727-489a-a673-b7c3adec2f64" t="o" /> -<objsur guid="929bf5eb-1a8e-4041-b726-e7aa195acf4c" t="o" /> -<objsur guid="d46ac843-e6a9-41fe-85b8-c62d4b830e72" t="o" /> -<objsur guid="936b0519-549f-4f5b-a3d7-369c1a358dc8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="74da5def-78b4-4dc9-ab74-b381b33fa376" ownerguid="5a886846-a7a2-49bb-b088-4b00d9902107"> -<Form> -<AUni ws="qvm-x-ach">yolga</AUni> -<AUni ws="qvm-x-acl">yolga</AUni> -<AUni ws="qvm-x-akh">yolqa</AUni> -<AUni ws="qvm-x-akl">yolqa</AUni> -<AUni ws="qvm-x-ame">yulqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="74db09ad-1b26-4b3f-ac21-c2774a6d5972" ownerguid="909e1d20-e4ba-4cca-b1af-ba143bc688d0"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JDG 16.3 Tsaymi puncuta quiciunnintinta jorgurishpan cerröjuntinta umrucurcur apacorgan Hebrón tsimpan lömayag.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="74dcb73f-817b-413d-a50e-5ede68a074ba" ownerguid="1f12f59b-d3b2-40cc-ac06-70229e3883d0"> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="74dd5ebe-d1a9-4b55-a351-1c31080abaee" ownerguid="d06dae77-134a-403f-ba88-52ecd66c0522"> -<ExampleWords> -<AUni ws="en">apple scab, bloom, bread mold, button mushroom, downy mildew, dry rot, morel, penicillium, puffball, rose mildew, rust fungi, slime mold, smut, toadstool, truffle, yeast</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What species of fungi are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="74e02ca2-f8a9-45b9-aae7-eeffb0769be3" ownerguid="5c31bdf6-901f-4f14-ab64-7a99524710fc"> -<ExampleWords> -<AUni ws="en">be past caring, for all I care, not give a damn, couldn't care less</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words indicate that you used to care, but don't anymore because you are hurt or angry?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="74e4a695-5fda-4f4b-9082-65da8e5ac1be" ownerguid="13e46dd8-1461-40f7-b310-5516268147fb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ali</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ali; ali; ale</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ali</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ali; ali; ale</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ali</Run> -</AStr> -</Form> -<Morph> -<objsur guid="5909b4a6-8ff0-4757-b7a4-28e1c643883c" t="r" /> -</Morph> -<Msa> -<objsur guid="e414c58c-943d-4c9b-91f2-c6ea5c87b68a" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="74e5f346-e177-4774-9daf-ec7fbc12ccb4" ownerguid="52a7b4cb-3ebe-4c1f-8e5c-4d86e1d7d10b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">la</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">la</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">la</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">la</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">la</Run> -</AStr> -</Form> -</rt> -<rt class="LexSense" guid="74f69fa2-5a4a-4266-ae28-203053835816" ownerguid="7fb2a453-3db7-4a50-bd47-55991d7b66a1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">twenty</AUni> -<AUni ws="es">veinte</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="23961839-60a4-4f8e-a1cd-779d2332cff6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="74f83b8c-a0b0-47b5-9f28-a47e9048bd63" ownerguid="b5700ad7-36a1-4608-8789-8f84007244f8"> -<ExampleWords> -<AUni ws="en">tiredness, exhaustion, fatigue, weariness, lethargy, jet-lag, sluggishness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the condition of being tired?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="74fbe52e-51af-456b-9c1a-ffc99db626bf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tatu</AUni> -<AUni ws="qvm-x-acl">tatu; tatu; tato</AUni> -<AUni ws="qvm-x-akh">tatu</AUni> -<AUni ws="qvm-x-akl">tatu; tatu; tato</AUni> -<AUni ws="qvm-x-ame">tatu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tatu</AUni> -<AUni ws="qvm-x-acl">*tatu</AUni> -<AUni ws="qvm-x-akh">*tatu</AUni> -<AUni ws="qvm-x-akl">*tatu</AUni> -<AUni ws="qvm-x-ame">*tatu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.833" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ac5352a7-fc9a-4c2c-8702-9165452167a3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tatu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d67e9dd9-2218-4cf5-b458-0eec71916029" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fb047af6-3499-429d-9665-3add7304c1af" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tatu 
\entryTyp root 
\gENG stutterer 
\gSPN 
\e *tatu 
\c N0 
\ach tatu 
\akh tatu 
\acl tatu / _# 
\acl tatu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tatu / _# 
\akl tatu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tatu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="74ffd345-abda-4b12-8bab-4109bbcbecc0" ownerguid="5ec50c96-f6e8-4a5e-baf7-a70fb47280ee"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">flip</AUni> -<AUni ws="es">lanzar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cfc64b23-684a-4b1c-a89f-61fe3ccbdbae" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="75044ab0-2c7e-467f-a4c8-171c87fac728" ownerguid="1133ad78-9ce9-46aa-b181-bb6f7a84a07b"> -<ExampleWords> -<AUni ws="en">catch up, be gaining on, be closing on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to moving nearer to a person or vehicle in front of you?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="75052baa-9846-4aeb-9f6d-25f104c641fb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">calwa</AUni> -<AUni ws="qvm-x-acl">calwa</AUni> -<AUni ws="qvm-x-akh">kalwa</AUni> -<AUni ws="qvm-x-akl">kalwa</AUni> -<AUni ws="qvm-x-ame">kalwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kallwa</AUni> -<AUni ws="qvm-x-acl">*kallwa</AUni> -<AUni ws="qvm-x-akh">*kallwa</AUni> -<AUni ws="qvm-x-akl">*kallwa</AUni> -<AUni ws="qvm-x-ame">*kallwa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.912" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="373ab3df-b2eb-44cf-b236-a4a7c3e0bb86" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kallwa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7f71e82b-1052-420e-9617-8208d9e3e0cf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="80a0befe-f082-436c-bc0a-2868a5b1bd5e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kallwa 
\entryTyp root 
\gENG backstrap.loom 
\gSPN ? 
\e *kallwa 
\c N0 
\ach calwa 
\akh kalwa 
\acl calwa 
\akl kalwa 
\ame kalwa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="7509bf8c-b9dd-4bdd-a310-ab283088d154" ownerguid="30f03c38-1f95-49d6-b4c9-9254f1d7404b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2KI 14.13 Nircurnami Jerusalén marcaman aywar murällanta juchutsergan Efraín puncupita hasta Isquïna nishgan puncuyag.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="750b9a59-29c6-4812-8266-8f281957469b" ownerguid="45993c48-3893-4d9e-96a3-b6b1ad160538"> -<ExampleWords> -<AUni ws="en">the poor, the homeless, the destitute</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What are poor people called?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="750c03b2-8f0f-45aa-8416-3e0b1fea1213" ownerguid="8dcc9732-0af2-4b44-9ad4-02c1948ee97d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">snake</AUni> -<AUni ws="es">culebra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="79e0f080-08a8-40cb-8193-b6e277158b65" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="75113bfa-39f0-4eb5-85c0-8da35751eb4b" ownerguid="fcbef386-e075-44f0-9b10-3850d8f06b25"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">seguro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="662d70e8-2dc9-499a-80cb-92441c8ec1a6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="751287b2-78c0-4c91-80d1-963bad7a0a71" ownerguid="46f82eff-54e4-4529-9284-4661b2b3c0db"> -<Form> -<AUni ws="qvm-x-ach">profesor</AUni> -<AUni ws="qvm-x-acl">profesor</AUni> -<AUni ws="qvm-x-akh">profesor</AUni> -<AUni ws="qvm-x-akl">profesor</AUni> -<AUni ws="qvm-x-ame">profesor</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="751391d6-4ed4-4194-8268-d8bb16746c6e" ownerguid="1bd42665-0610-4442-8d8d-7c666fee3a6d"> -<ExampleWords> -<AUni ws="en">moonrise, rising of the moon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the time when the moon rises?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="75151706-4d8a-49a4-a4a7-de556bab5f79" ownerguid="b304749b-8e52-4b5a-b238-9cc5234b2044"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="75165b03-569d-4c14-bc86-7d4b9162e71d" ownerguid="8052744f-7a9a-49da-89e3-4c518126180b"> -<ExampleWords> -<AUni ws="en">confuse, mix someone up with, mix people up, get something mixed up with, get things mixed up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to confusing one thing for another?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="751731b9-43be-4f3d-a968-bdc8fdb4e286"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">autoriza</AUni> -<AUni ws="qvm-x-acl">autoriza</AUni> -<AUni ws="qvm-x-akh">autoriza</AUni> -<AUni ws="qvm-x-akl">autoriza</AUni> -<AUni ws="qvm-x-ame">autoriza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+autorizar</AUni> -<AUni ws="qvm-x-acl">+autorizar</AUni> -<AUni ws="qvm-x-akh">+autorizar</AUni> -<AUni ws="qvm-x-akl">+autorizar</AUni> -<AUni ws="qvm-x-ame">+autorizar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.880" /> -<DateModified val="2022-10-10 21:18:47.215" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="423b41a9-5824-4611-a537-2a43120ea983" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+autorizar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ad691732-4d82-4732-99c0-c28313dd25d0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="94e188d4-db09-4c38-9a7f-b99be42fb5b3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +autorizar 
\entryTyp root 
\gENG 
\gSPN 
\e +autorizar 
\c V2 
\ach autoriza 
\akh autoriza 
\acl autoriza 
\akl autoriza 
\ame autoriza 
\i EZR 7.22 Entreganayquipag autorizädu carcaycanqui hasta quimsa waranga quimsa pachac (3,300) kïlu guellayta, ishcay chunca ishcay waranga (22,000) kïlu trïguta, ishcay waranga ishcay pachac (2,200) litru vïnuta y hasta ishcay waranga ishcay pachac (2,200) litru aceitita.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="7518432e-ccf7-4713-b822-fb1c013a6d7c" ownerguid="f04f6a01-5da7-4f4e-a0d8-622eab6be571"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c280d71d-751b-4cdf-b718-3a77cbabeecb" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">molar</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b4c40a22-26c2-47a5-9b2e-e13f85958126" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="751bd45c-abfb-443f-ac55-aad3472c20de" ownerguid="c4330001-83ca-485d-8b9b-09f7e1be60cc"> -<Abbreviation> -<AUni ws="en">3.5.8.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.182" /> -<DateModified val="2022-9-23 16:55:8.182" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being unintelligible--to say something that someone cannot understand.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Unintelligible</AUni> -</Name> -<Questions> -<objsur guid="15776edf-2cac-4733-a065-2ffc0d60da6c" t="o" /> -<objsur guid="4b3829c8-84e0-42c3-aea9-a5cc0fd00e40" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="751bfa8c-e13b-4425-9e26-f42b8be28cc7" ownerguid="a3ac2a2f-d5b9-48ae-a3aa-85bdfab73473"> -<Form> -<AUni ws="qvm-x-ach">turwa</AUni> -<AUni ws="qvm-x-acl">turwa</AUni> -<AUni ws="qvm-x-akh">turwa</AUni> -<AUni ws="qvm-x-akl">turwa</AUni> -<AUni ws="qvm-x-ame">turwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="751f726b-b7cd-470e-a9fd-f2f1b460dd0d" ownerguid="35624f3a-2029-43b3-b70a-83e63ac9052f"> -<Abbreviation> -<AUni ws="en">9.2.9.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain to list all derivational affixes. A derivational affix is joined to a root and changes it into a different word. Derivational affixes often change the root into a different part of speech. Adding a derivational affix usually changes the meaning of the root in a significant way.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Derivational affixes</AUni> -</Name> -<Questions> -<objsur guid="f330e25a-f37e-4a8b-afc8-27a074d968c7" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="75202262-cdba-4c43-9343-764c84138797" ownerguid="529140d1-6e8e-44fe-99f0-95289e933607"> -<Abbreviation> -<AUni ws="en">4.1.9.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to your uncles and aunts.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Uncle, aunt</AUni> -</Name> -<OcmCodes> -<Uni>604 Avuncular and Nepotic Relatives</Uni> -</OcmCodes> -<Questions> -<objsur guid="8282a251-1e8a-4c06-867f-5bc7ed279f81" t="o" /> -<objsur guid="6828897d-78ba-4223-9fbf-f7826d39e59e" t="o" /> -<objsur guid="92e2f921-df40-44f3-ab05-8d288ffabda8" t="o" /> -<objsur guid="2fd412d5-ea92-4d42-b6b3-15274efba81e" t="o" /> -<objsur guid="f79c7fb8-fa27-425f-9135-9d5a37a090ad" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="7520d9db-fd24-4e98-96d7-6c9ca6021008" ownerguid="32ee64a8-b693-4a7f-a8a0-55304ebe5c7b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="e7b26d27-483f-45a4-b2f4-c7507e92e2ed" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">jump</AUni> -<AUni ws="es">saltar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a378735f-986b-445f-81d6-3a65d0c374a5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="75218d21-dc6f-4d56-a8b3-de034c9a420a" ownerguid="975d0109-1bba-4b0e-85b8-2c6b51c8e074"> -<ExampleWords> -<AUni ws="en">sit down, take a seat, have a seat, please be seated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What do you say to someone when you want them to sit down?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="7524887a-5cf0-4459-96d1-fd8262bef7d4" ownerguid="cb362fc7-b3aa-46f4-b9a8-0f8c97fb16fe"> -<Abbreviation> -<AUni ws="en">6.2.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.383" /> -<DateModified val="2022-9-23 16:55:8.383" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to growing root crops such as beets, carrots, cassava, garlic, ginger, leeks, manioc, onions, peanuts, potatoes, radishes, rutabagas, taro, turnips, and yams. If one crop is cultivated extensively and there are many words related to it, set up a separate domain for it. This has already been done for potatoes and cassava, since they are so common around the world.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Growing roots</AUni> -</Name> -<Questions> -<objsur guid="b43fdd76-9895-4585-912a-7484289e0100" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c982941c-0cff-47aa-9e08-5234a8e0d6e8" t="o" /> -<objsur guid="139cd00c-429c-465a-a227-512af0c48039" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="7524953f-f378-4aa8-ba3f-fc73e3158347" ownerguid="e50ab2b1-5337-4b6c-ab4c-ea2cee2e8838"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ice</AUni> -<AUni ws="es">hielo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f3201198-d465-45ad-b928-b5330e0849e7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="752709be-3797-4fae-8cdf-d2c6e9f50406" ownerguid="8c7382be-3bbb-4ec7-923a-38a343e9c4fb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">really</AUni> -<AUni ws="es">realmente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2b29ba57-74ac-45ef-8f07-ca9a5d66a2b9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="752a2868-9e66-4bd7-b00c-96a89139c757" ownerguid="7a8cb8d3-797d-478d-b7dd-265a1eedc0c1"> -<ExampleWords> -<AUni ws="en">gate, gateway, entrance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a gate?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="752a41f8-ad23-40c0-b283-9c1072813b07" ownerguid="3044799a-4b36-46c0-8a25-0739f8abc8e7"> -<Form> -<AUni ws="qvm-x-ach">tali</AUni> -<AUni ws="qvm-x-acl">tali; tale</AUni> -<AUni ws="qvm-x-akh">tali</AUni> -<AUni ws="qvm-x-akl">tali; tale</AUni> -<AUni ws="qvm-x-ame">tali</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="752bab55-0dac-46cb-8854-cb97847a0375" ownerguid="ad83a7c3-2946-4b60-b967-c11101404479"> -<Form> -<AUni ws="qvm-x-ach">ninti</AUni> -<AUni ws="qvm-x-acl">ninti</AUni> -<AUni ws="qvm-x-akh">ninti</AUni> -<AUni ws="qvm-x-akl">ninti</AUni> -<AUni ws="qvm-x-ame">ninti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="752d8412-ab63-4488-b252-a831a7f70b6c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">proble:ma</AUni> -<AUni ws="qvm-x-acl">proble:ma</AUni> -<AUni ws="qvm-x-akh">proble:ma</AUni> -<AUni ws="qvm-x-akl">proble:ma</AUni> -<AUni ws="qvm-x-ame">proble:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+problema</AUni> -<AUni ws="qvm-x-acl">+problema</AUni> -<AUni ws="qvm-x-akh">+problema</AUni> -<AUni ws="qvm-x-akl">+problema</AUni> -<AUni ws="qvm-x-ame">+problema</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.931" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="740f6137-d93e-452e-b4c2-9c621bbae0fc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+problema</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ebd96303-5122-40dd-ae06-544e86de4303" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a5789adf-d362-46cf-98b5-04d7ab0444d7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +problema 
\entryTyp root 
\gENG problem 
\gSPN problema 
\e +problema 
\c N0 
\ach proble:ma 
\akh proble:ma 
\acl proble:ma 
\akl proble:ma 
\ame proble:ma</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="752e53ff-e2e1-43b2-ad98-83c7fd4cd264" ownerguid="f03fdc3a-e0f2-4ae8-bb23-b8e488562d9b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="752e8607-77d9-4c86-bce3-b9c14e3aabfd" ownerguid="b8c444ec-e0db-4f80-8a7f-cc6812b0a76f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="75343870-cb8a-408b-b811-95583fb6384c" ownerguid="cb5d144c-d1f1-45e7-9ba4-171ceb5539a8"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="7534e46b-9c69-4ae3-bb9d-026ef1f875d9" ownerguid="c0a67d43-5d34-4238-90b2-638acc817f11"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shade</AUni> -<AUni ws="es">sombra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3df65933-9f5e-4015-81e3-c4f9336a0bbd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="7534e605-ddb8-4963-b574-47725fdf07a8" ownerguid="bb438dc5-9f54-4bc3-b5ad-ec1f6b93d0d8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">train</AUni> -<AUni ws="es">tren</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2e87abb2-30e7-4da8-8cc8-c0f22f1f1ef3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7536acf3-60f5-45f6-a0d3-9baa701ece79" ownerguid="cc1ce010-8c44-4184-908e-74ed349ab0c8"> -<Form> -<AUni ws="qvm-x-ach">circulu; círculo</AUni> -<AUni ws="qvm-x-acl">circulu; circulu; circulo</AUni> -<AUni ws="qvm-x-akh">circulu; círculo</AUni> -<AUni ws="qvm-x-akl">circulu; circulu; circulo</AUni> -<AUni ws="qvm-x-ame">circulu; círculo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="753836ad-8751-4f9c-a204-b4f429529538"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">estudiu; estudio</AUni> -<AUni ws="qvm-x-acl">estudiu; estudiu; estudio</AUni> -<AUni ws="qvm-x-akh">estudiu; estudio</AUni> -<AUni ws="qvm-x-akl">estudiu; estudiu; estudio</AUni> -<AUni ws="qvm-x-ame">estudiu; estudio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+estudios</AUni> -<AUni ws="qvm-x-acl">+estudios</AUni> -<AUni ws="qvm-x-akh">+estudios</AUni> -<AUni ws="qvm-x-akl">+estudios</AUni> -<AUni ws="qvm-x-ame">+estudios</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.516" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4d490fd2-a612-433d-9bd1-76c373e35afc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+estudios</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="29702062-4717-4437-be2e-14763373ed45" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4220191a-8726-489e-8ff2-c2c219d33197" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +estudios 
\entryTyp root 
\gENG studies 
\gSPN estudios 
\e +estudios 
\c N0 
\ach estudiu / ~_# 
\ach estudio / _# 
\akh estudiu / ~_# 
\akh estudio / _# 
\acl estudiu / ~_# 
\acl estudiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl estudio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl estudiu / ~_# 
\akl estudiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl estudio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame estudiu / ~_# 
\ame estudio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="7538ba8d-8d6b-4faf-b10e-01b7239f54ba" ownerguid="c447475f-9241-471f-955f-afea24f9b021"> -<Form> -<AUni ws="qvm-x-ach">ashi</AUni> -<AUni ws="qvm-x-acl">ashi; ashe</AUni> -<AUni ws="qvm-x-akh">ashi</AUni> -<AUni ws="qvm-x-akl">ashi; ashe</AUni> -<AUni ws="qvm-x-ame">ashi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="753a3f61-c380-483d-8c0a-588acdfbba17"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuaquer</AUni> -<AUni ws="qvm-x-acl">cuaquer</AUni> -<AUni ws="qvm-x-akh">cuaquer</AUni> -<AUni ws="qvm-x-akl">cuaquer</AUni> -<AUni ws="qvm-x-ame">cuaquer</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuaquer</AUni> -<AUni ws="qvm-x-acl">+cuaquer</AUni> -<AUni ws="qvm-x-akh">+cuaquer</AUni> -<AUni ws="qvm-x-akl">+cuaquer</AUni> -<AUni ws="qvm-x-ame">+cuaquer</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.234" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c2d94060-79a7-48e4-a9a7-a86b40050a0d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuaquer</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="229eb9bd-17e4-482a-aa26-2c12d563440c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c0e0617d-13f4-44ec-b0fb-15c071d4e57f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuaquer 
\entryTyp root 
\gENG oats 
\gSPN avena 
\e +cuaquer 
\c N0 
\mp +FinalC 
\ach cuaquer 
\akh cuaquer 
\acl cuaquer 
\akl cuaquer 
\ame cuaquer</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="753ce526-8766-4a97-992c-62fa25a64c3d" ownerguid="607b1b5d-fbff-40ed-85f1-72e8a96b3377"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ay!</AUni> -<AUni ws="es">ay!</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a478966b-c282-4674-9333-7be4a062d053" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="753d4c2f-9114-4cbe-8c68-a848d5d3821a" ownerguid="180a2220-942c-4e17-96ee-cd4f63a4c715"> -<ExampleWords> -<AUni ws="en">raise, stir up, settle, hang in the air, fly, cling (to clothes)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What does dust do?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="754103bd-8d98-44ac-915e-97e40e796ce3" ownerguid="e027610f-39e8-4f86-a7ba-d7dd744a0e9f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="e7e81169-540a-4884-be5e-2f1a4301f338" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">?</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c7a204e6-2222-4231-804a-927b824baf52" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="754ac437-2841-48c3-bbb0-7d6dff52605e" ownerguid="e28f3f79-d4a5-402c-8a70-196856791078"> -<Abbreviation> -<AUni ws="en">9.1.2.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.680" /> -<DateModified val="2022-9-23 16:55:8.680" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that indicate event propositions. Event propositions are similar in that they are normally expressed by a subject and a verb, possibly including an object, indirect object, or complement clause. However there are multiple ways in which a language can express an event, such as a passive construction, noun phrase, or subordinate clause. In addition each event type is different in its primary cases, and in the ways those cases are marked. Each event type has subtypes, such as intransitive, transitive, and ditransitive verbs. A great deal of research is needed in order to identify all the variations. Ultimately every verb must be investigated to determine how it behaves in each syntactic construction and how its case relations are marked. No two verbs are entirely alike.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Event propositions</AUni> -</Name> -<Questions> -<objsur guid="e802c36b-06f1-4d0b-a448-5c16ad4b6f1d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="754b5521-62f1-44ed-a9d6-2a2f2bebe2a3" ownerguid="6d03f062-73ce-459f-9bd0-a73b46616627"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="754c35a6-eb7d-40df-858f-4937e0186a08" ownerguid="441f9368-35e9-496a-b4f4-e475db4f5d38"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="eb55ed0e-f488-44c8-a15f-b1bc3b011985" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="7552fba1-71f5-4237-8ab7-c99237edafe8" ownerguid="d3d6f6df-222d-4b2d-be44-c38e2de1fe9b" /> -<rt class="MoStemMsa" guid="75539858-8a57-4ca5-a0bc-03e3f68b4828" ownerguid="8fdbb94a-55bf-4afc-9983-f6b33312b1b7"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="75539e64-28d2-4799-af99-9636ec7c18e1" ownerguid="9b267cc1-983c-407a-98d2-1e27add6292c"> -<ExampleWords> -<AUni ws="en">come untied, come loose</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to something becoming untied by accident?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="75544e4f-7e73-43f2-90b4-292435388bd7" ownerguid="53a66441-7c71-46d0-9259-240e50a152f8"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JDG 16.27 Templupa segundo pïsunchömi Sansónta burlacushganta ricäcur warmipis olgupis quimsa waranganog (3,000) caycargan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="7554b984-4964-458c-bd32-3b7bb0da41c5" ownerguid="ff505092-6d88-4b5e-8095-04e471d7ad4c"> -<ExampleWords> -<AUni ws="en">resurrect, raise from the dead, bring back to life, bring back from the dead</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to causing someone to come back to life?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="75555a9c-c36f-4491-bd2f-f63391bd339f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chipcha</AUni> -<AUni ws="qvm-x-acl">chipcha</AUni> -<AUni ws="qvm-x-akh">chipcha</AUni> -<AUni ws="qvm-x-akl">chipcha</AUni> -<AUni ws="qvm-x-ame">chipcha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*triptra</AUni> -<AUni ws="qvm-x-acl">*triptra</AUni> -<AUni ws="qvm-x-akh">*triptra</AUni> -<AUni ws="qvm-x-akl">*triptra</AUni> -<AUni ws="qvm-x-ame">*triptra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.119" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0334615f-d8b9-4dc8-b86b-cf586b7e1baf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*triptra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e173eb34-6ea3-4a0e-ba9a-d3b3db8a0819" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="34e47f05-c6a8-466e-b161-97269380ac72" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *triptra 
\entryTyp root 
\gENG 
\gSPN 
\e *triptra 
\c N0 
\ach chipcha 
\akh chipcha 
\acl chipcha 
\akl chipcha 
\ame chipcha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="7556a257-3703-40d3-91d3-c891fb250947" ownerguid="62b4ae33-f3c2-447a-9ef7-7e41805b6a02"> -<Abbreviation> -<AUni ws="en">4.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.286" /> -<DateModified val="2022-9-23 16:55:8.286" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to religion and the supernatural.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>12 Supernatural Beings and Powers</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Religion</AUni> -</Name> -<OcmCodes> -<Uni>770 Religious Beliefs; 771 General Character of Religion</Uni> -</OcmCodes> -<Questions> -<objsur guid="7f715077-6c28-4182-92de-250861eb6da2" t="o" /> -<objsur guid="ab924245-2dde-469e-898c-ccf199695cf2" t="o" /> -<objsur guid="6865e178-1a49-4aab-9b09-3d57d02bf922" t="o" /> -<objsur guid="87d2dae4-08ba-475d-b7b0-6a1769ae6607" t="o" /> -<objsur guid="4eb91a51-da14-4579-9c0f-2d14861f1a20" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b60bf544-7774-4623-8c67-19b32b53dea2" t="o" /> -<objsur guid="7f6c81fb-02a4-415f-a363-fb11cc6b9254" t="o" /> -<objsur guid="25bf6690-6ed1-42e9-8a4a-3518f9cf382c" t="o" /> -<objsur guid="61f52196-a8b2-496d-96ea-8c15dc7d377a" t="o" /> -<objsur guid="b9c752a4-66be-493c-8955-cfa5324a54c1" t="o" /> -<objsur guid="1c3f8996-362e-4ee0-af02-0dd02887f6aa" t="o" /> -<objsur guid="2470ad05-636e-4c85-96ab-cd880da58741" t="o" /> -<objsur guid="e311cc3a-a387-449e-a05a-07ed9678411d" t="o" /> -<objsur guid="725d78eb-8cac-4b2f-b5a4-f0a9adb80f5d" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="7557073b-241d-40a3-bafa-e6236eac9844" ownerguid="b24fbd33-a2aa-4274-8198-d6eef8f0345f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dough</AUni> -<AUni ws="es">masa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ead54c85-6f26-486e-aa3a-5e4e957b2055" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="7558d071-a885-447b-9aa2-604c29669492" ownerguid="62b4ae33-f3c2-447a-9ef7-7e41805b6a02"> -<Abbreviation> -<AUni ws="en">4.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.256" /> -<DateModified val="2022-9-23 16:55:8.256" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to government.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Government</AUni> -</Name> -<OcmCodes> -<Uni>640 State</Uni> -</OcmCodes> -<Questions> -<objsur guid="91ceb77e-75af-4e6d-a0ca-ed5b8c808a81" t="o" /> -<objsur guid="aa987ef8-d4f2-49df-8a94-b2fec19192d5" t="o" /> -<objsur guid="e0e73765-db21-4e44-89a2-0304612bfd35" t="o" /> -<objsur guid="3a81edd3-ea86-4a92-b714-85e9e0af16c1" t="o" /> -<objsur guid="6303d147-8040-4d90-a838-e94c7b2d9393" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="7ddbd56f-e458-4a72-a9bc-9b7db6bde75a" t="o" /> -<objsur guid="134c68a9-ac3f-4b7e-8fca-63642d796a75" t="o" /> -<objsur guid="562f55de-efc7-41a7-b450-6f9dea2813e2" t="o" /> -<objsur guid="ff0a16f2-c44d-4ed4-9520-c214acfb68e5" t="o" /> -<objsur guid="bf007cd9-925d-4073-a1d6-16d64a45ca25" t="o" /> -<objsur guid="5e7a5899-df78-4aa7-bec9-b354acfe087f" t="o" /> -<objsur guid="c8d94c8f-db0b-4016-bdd2-e41a2eae4288" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="7559b371-a6e8-4c73-8308-a0468d1ae49d" ownerguid="995ee828-2393-462b-be82-47f5b5439aaf"> -<ExampleWords> -<AUni ws="en">bulge, puff out, balloon out, protrude</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to making something convex?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="755a7462-1d87-48b0-939c-08be5b5ea002" ownerguid="286ee16c-a218-43d5-bbac-ab15f80c3fcf"> -<Abbreviation> -<AUni ws="en">8.1.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.579" /> -<DateModified val="2022-9-23 16:55:8.579" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to having extra--to have more than enough or more than what you need.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>59F Abundance, Excess, Sparing</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Extra</AUni> -</Name> -<Questions> -<objsur guid="bcd6a9ae-5c4d-4e84-a8c5-1739b6cedc6c" t="o" /> -<objsur guid="67f6f4f7-f847-4f43-b709-ca67e930a167" t="o" /> -<objsur guid="2ab1f973-a235-4bbc-9cd4-81e4291f3eba" t="o" /> -<objsur guid="4ba130a7-5c1f-40ca-90f1-18b8cc0c3ff4" t="o" /> -<objsur guid="5e1e9788-e804-4d08-85d3-a4210aed1b34" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="7560472d-a803-46e7-aac8-b8f90bec1c7e" ownerguid="0cd68f79-9bea-45ed-a980-2a3606b35c22"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="7563184a-2ed7-4812-b143-2afa03e7f839" ownerguid="e42c8edc-9652-4701-ac07-13c5e831282c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">El que habla mal</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3c75ec22-f1b9-4110-addf-c9606a0be82b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="75639b7e-4e2f-4220-81f6-90f2e6031484" ownerguid="62f62ab7-4ac7-4818-97ad-889af98739d9"> -<Form> -<AUni ws="qvm-x-ach">tenedor</AUni> -<AUni ws="qvm-x-acl">tenedor</AUni> -<AUni ws="qvm-x-akh">tenedor</AUni> -<AUni ws="qvm-x-akl">tenedor</AUni> -<AUni ws="qvm-x-ame">tenedor</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="756467c6-1e65-4ac3-be11-abb37563b724" ownerguid="b13ce5d7-e5f9-42b8-bae0-12fd1fec9b43"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" t="r" /> -</Morph> -<Msa> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="7564abb8-fd51-44a2-8e1d-ce0ddbd6e7ac" ownerguid="3b2de55c-317a-4c5a-8732-7df8b74be33c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="756728a8-9eb8-4329-aee2-d6a3d64585f2" ownerguid="b47d2604-8b23-41e9-9158-01526dd83894"> -<Abbreviation> -<AUni ws="en">1.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.947" /> -<DateModified val="2022-9-23 16:55:7.947" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing the different states of matter (solid, liquid, and gas), and words for changing from one to another.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79C Solid, Liquid</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Solid, liquid, gas</AUni> -</Name> -<Questions> -<objsur guid="b4508281-2fda-4c90-96dc-bf77e15d3475" t="o" /> -<objsur guid="ba80c8c9-ef39-4725-a5fd-ab8a5b991af5" t="o" /> -<objsur guid="29f2b880-eddc-47b1-94bc-ff048d122e04" t="o" /> -<objsur guid="bdd0533c-48c9-4d6a-a930-d153ce22c702" t="o" /> -<objsur guid="5aeb2c56-3438-4a0b-b4a1-c77e9eb41d6d" t="o" /> -<objsur guid="4e04eb65-8923-4eb5-a65d-9b912b5c84c7" t="o" /> -<objsur guid="78dd39ff-9ac8-477d-b25e-5b0975f9eb16" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="742996cd-b87f-40a8-bdb3-dba74219bd73" t="r" /> -<objsur guid="82e4394a-2f58-4356-8d9c-1ad9dbe95293" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="f56a2511-10cc-4829-940d-49051429bfba" t="o" /> -<objsur guid="962cb994-0183-4ac5-94b2-82a33f1d64e4" t="o" /> -<objsur guid="34c3edad-a158-44e7-989b-5b74401e6945" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="756dee64-03cb-45e3-8c3d-272c4fa5aaa8" ownerguid="6430b89c-7077-418a-a558-51f0e3f2c1a6"> -<ExampleWords> -<AUni ws="en">portable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that can be carried?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="756f67e9-2b22-4c43-913c-ceff0e781545" ownerguid="d9f336cf-0682-4702-ab94-5ade755ddc64"> -<Abbreviation> -<AUni ws="en">7.3.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.528" /> -<DateModified val="2022-9-23 16:55:8.528" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to putting something inside something else.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Put in</AUni> -</Name> -<Questions> -<objsur guid="cddd0564-988b-43eb-b764-c4583e8beddc" t="o" /> -<objsur guid="ab4704f7-57f6-4aed-9024-305a5d7b037e" t="o" /> -<objsur guid="f68fd985-46d1-46bc-bf10-ea54bbb72199" t="o" /> -<objsur guid="2ba423b5-0d6e-4e01-82b1-60ffab48ae34" t="o" /> -<objsur guid="8eeaf383-7506-4cb9-9a20-28afe3e9c4fa" t="o" /> -<objsur guid="5df34cad-f71f-433c-8783-400124d8b9f1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="7575d654-e528-4fe0-85eb-481b0e6654bb" ownerguid="6342c8bf-55b5-400f-af7e-63055fe6813b"> -<Abbreviation> -<AUni ws="en">6.7.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to machines.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Machine</AUni> -</Name> -<OcmCodes> -<Uni>400 Machines; 401 Mechanics; 402 Industrial Machinery; 403 Electrical Machines and Appliances; 404 Household Machines and Appliances; 405 Weighing, Measuring, and Recording Machines; 406 Weight-moving Machinery; 407 Agricultural Machinery; 408 Computer Technology; 416 Appliances</Uni> -</OcmCodes> -<Questions> -<objsur guid="1589a9cf-f769-411e-a153-78b13573fcc6" t="o" /> -<objsur guid="038400bd-143b-4423-85c5-65a248015ca3" t="o" /> -<objsur guid="f35c3a4e-8eca-49c2-9f4b-b91fd8cb69a0" t="o" /> -<objsur guid="e65e65d9-ca80-45de-9c0b-468c63be1477" t="o" /> -<objsur guid="b7bf5aae-7020-4320-af7b-e66e4882fa51" t="o" /> -<objsur guid="ca221679-571b-40dd-be8d-11e19beb6392" t="o" /> -<objsur guid="60e52513-2470-4fe1-a0e0-975bb0bb5066" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoInflAffixTemplate" guid="757750a0-18d7-4064-8b68-e2d232748cd5" ownerguid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9"> -<Disabled val="False" /> -<Final val="True" /> -<Name> -<AUni ws="en">adverbial</AUni> -</Name> -<SuffixSlots> -<objsur guid="b6f091af-032e-4c9c-9c5c-443c1328d1e2" t="r" /> -</SuffixSlots> -</rt> -<rt class="MoStemMsa" guid="75779322-a374-4bbd-a257-1a6b44f4e1c8" ownerguid="99c59650-b088-4fa2-ab0e-db000d670f1f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7579afad-3713-4a0d-b115-5bb0382a2180" ownerguid="345e019f-87d2-415d-ba37-9fb85460f7e1"> -<ExampleWords> -<AUni ws="en">timber, log</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What are the products of lumbering?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7580bc6a-c865-4237-b279-3220dfb95753" ownerguid="2683f6d3-f4ef-4f5a-8864-32679ec323e2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="6b17ad51-1e90-4b68-8e7e-4b413e981dff" t="o" /> -<objsur guid="f1d69395-7cea-4f1b-9201-14477e0dc3de" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">ten</AUni> -<AUni ws="es">diez</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="72310c60-6099-45d6-b8ef-84a2cecc293f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="75825d72-695b-4e92-9f33-0f3ab4d7dd11" ownerguid="7fe69c4c-2603-4949-afca-f39c010ad24e"> -<Abbreviation> -<AUni ws="en">2.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to spitting.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Spit, saliva</AUni> -</Name> -<Questions> -<objsur guid="bac866eb-6592-471f-ae6c-30820972d98f" t="o" /> -<objsur guid="24fd802d-c4a7-443d-8571-6ad4cda1d2a4" t="o" /> -<objsur guid="82b83151-f7a3-44df-92b7-73410701d952" t="o" /> -<objsur guid="cb8b136c-4a59-4e9e-97f9-995d093a9f32" t="o" /> -<objsur guid="234da5fc-1518-4e51-977c-9be0eb98295f" t="o" /> -<objsur guid="2286493c-d865-481e-91dc-8151c9cff5ff" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="75837d65-5722-4bd8-b565-99c6b7e4a1af" ownerguid="38994546-69ff-4f92-9219-4ba104de87be"> -<Form> -<AUni ws="qvm-x-ach">artësa</AUni> -<AUni ws="qvm-x-acl">artësa</AUni> -<AUni ws="qvm-x-akh">artësa</AUni> -<AUni ws="qvm-x-akl">artësa</AUni> -<AUni ws="qvm-x-ame">artësa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="7586b07b-2280-4b13-96f0-3358ed3eee32" ownerguid="2f0f8a21-8efc-4ef6-802d-d8e971826016"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">DAN 8.23 Tsay chuscu nacioncuna munayniynag ricacuptin y runacunapa jutsan ayparcuptinnami mana cuyapäcog sabïdu runa mandag rey cananpag yayconga.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="7587a7cb-0a5d-4bf0-a746-01b10a044fe1" ownerguid="eb662979-604c-455e-a2c6-a84b03a2ee3a"> -<ExampleWords> -<AUni ws="en">early (adv), ahead of time, ahead of schedule, in good time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something happens early?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="758874db-594c-4980-8762-eb51aa8bffde" ownerguid="f13ed73c-8b8d-4f97-a172-09f8f88d124f"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yanaparcamay</Run> -</AStr> -</Example> -</rt> -<rt class="PhEnvironment" guid="75897320-98dd-4258-8b5d-d9c6e0f1847e" ownerguid="be765e3e-ea5e-11de-9d42-0013722f8dec"> -<Name> -<AUni ws="en">before -shqa, REL</AUni> -</Name> -<StringRepresentation> -<Str> -<Run underline="none" ws="en">/_ shqa</Run> -</Str> -</StringRepresentation> -</rt> -<rt class="MoStemMsa" guid="7589e73b-f378-4ffe-b159-55fb113fa766" ownerguid="47673f92-486c-422e-b979-7f35a6b3adde"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="758b5043-6d7b-4f58-885d-20bf4f81fe63" ownerguid="b82c7ba0-9f4e-44da-bcd0-d30f5b224de5"> -<ExampleWords> -<AUni ws="en">shot, injection, jab</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to medicine that is injected under the skin?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="758bba23-3976-4c2c-a1da-7b0849b7dd2a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jipashita</AUni> -<AUni ws="qvm-x-acl">jipashita</AUni> -<AUni ws="qvm-x-akh">jipashita</AUni> -<AUni ws="qvm-x-akl">jipashita</AUni> -<AUni ws="qvm-x-ame">hipashita</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hipashita</AUni> -<AUni ws="qvm-x-acl">*hipashita</AUni> -<AUni ws="qvm-x-akh">*hipashita</AUni> -<AUni ws="qvm-x-akl">*hipashita</AUni> -<AUni ws="qvm-x-ame">*hipashita</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.721" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1642d691-4bb4-47cd-b184-967e78330e3d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hipashita</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3dfdcdd9-ed5e-4c77-9758-241c66975336" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d33492d6-5457-4822-b734-5f43da1aab5a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hipashita 
\entryTyp root 
\gENG adolescent.girl 
\gSPN 
\e *hipashita 
\c N0 
\ach jipashita 
\akh jipashita 
\acl jipashita 
\akl jipashita 
\ame hipashita</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="758e1195-e56f-4071-a337-81810bf63391"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mushinga</AUni> -<AUni ws="qvm-x-acl">mushinga</AUni> -<AUni ws="qvm-x-akh">mushinga</AUni> -<AUni ws="qvm-x-akl">mushinga</AUni> -<AUni ws="qvm-x-ame">mushinga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mushinga</AUni> -<AUni ws="qvm-x-acl">+mushinga</AUni> -<AUni ws="qvm-x-akh">+mushinga</AUni> -<AUni ws="qvm-x-akl">+mushinga</AUni> -<AUni ws="qvm-x-ame">+mushinga</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.507" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c9d7397f-fcea-4730-8e3c-ba9c8da88939" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mushinga</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b4233b02-1bab-4751-9de9-5a8108a1cfcc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c4ede52c-9819-4707-bf52-7b3e80bc800d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mushinga 
\entryTyp root 
\gENG sausage 
\gSPN salchicha 
\e +mushinga 
\c N0 
\ach mushinga 
\akh mushinga 
\acl mushinga 
\akl mushinga 
\ame mushinga</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="75905f34-76c6-486b-b24c-1c1a472cf614"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waray</AUni> -<AUni ws="qvm-x-acl">waray</AUni> -<AUni ws="qvm-x-akh">waray</AUni> -<AUni ws="qvm-x-akl">waray</AUni> -<AUni ws="qvm-x-ame">waray</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waray</AUni> -<AUni ws="qvm-x-acl">*waray</AUni> -<AUni ws="qvm-x-akh">*waray</AUni> -<AUni ws="qvm-x-akl">*waray</AUni> -<AUni ws="qvm-x-ame">*waray</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.526" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e400a806-3577-4130-884b-d782cea7b4aa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waray</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="08e2f5de-8d01-4ec0-a69c-2fcacfc7f5d3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2356672c-3e0a-48f4-9dd7-b73d0d39e65b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waray 
\entryTyp root 
\gENG 
\gSPN mañana 
\e *waray 
\c N0 | SC dice warayninpagga 
\mp NeverForeshortened 
\ach waray 
\akh waray 
\acl waray 
\akl waray 
\ame waray 
\mp +FinalC 
\mcc *waray / ~_ (JUST) OBJ</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7591b1a9-d4b9-44b5-9cd8-87d22efa6bc0" ownerguid="fc193988-26ca-49e9-849a-b12456d98792"> -<ExampleWords> -<AUni ws="en">maniac, lunatic, nut, nutcase, loony, madman, madwoman, nutter, wacko, weirdo</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a crazy person?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7591e213-98a4-4a89-b9fd-fbc53802f311" ownerguid="175a97dc-d29c-40d3-8b7d-31c0520d4980"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7596bbc0-a25a-4162-90a5-a74cf6c76f83" ownerguid="4651aef1-e18f-481e-9c3e-d9dfff4a6b51"> -<ExampleWords> -<AUni ws="en">solitude, isolation, solitary confinement, privacy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the state of being alone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7598acfd-db2d-4fb5-8afb-b9cc4cc4322b" ownerguid="6a8ba01b-0f1b-4a43-8990-ab78eda673fc"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="759ac4db-d4bc-453b-bc58-69f7a42362df" ownerguid="809aad69-630b-4f0f-9556-5f03c800bbe0"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="759ba246-c143-4b4b-a0a3-937d3de6e284" ownerguid="7efc2786-02ee-469f-81f8-b84514726be1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="819df116-b077-4bf8-9c17-1c1835eba27c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="75a2fb92-f5e0-415f-8a2a-09ec386e04d9" ownerguid="f32012c3-bf5d-469d-8d57-55d3be0df90f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fight</AUni> -<AUni ws="es">pelear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e9fa2291-fe53-4eee-a66f-ddcddea02ca8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="75a42637-5765-4c74-9a39-4633a1375931"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chanag</AUni> -<AUni ws="qvm-x-acl">chanag</AUni> -<AUni ws="qvm-x-akh">chanaq</AUni> -<AUni ws="qvm-x-akl">chanaq</AUni> -<AUni ws="qvm-x-ame">chanaq</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tranaq</AUni> -<AUni ws="qvm-x-acl">*tranaq</AUni> -<AUni ws="qvm-x-akh">*tranaq</AUni> -<AUni ws="qvm-x-akl">*tranaq</AUni> -<AUni ws="qvm-x-ame">*tranaq</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.56" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1063096c-90a6-46b0-aac4-c0d10edb00fb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tranaq</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6557c22e-08a9-4e68-9d93-0d4e787c064a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="47b65666-b984-44a9-b3e7-4b990502b6ef" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tranaq 
\entryTyp root 
\gENG tight 
\gSPN ajustado 
\e *tranaq 
\c R0 
\mp +FinalC 
\ach chanag 
\akh chanaq 
\acl chanag 
\akl chanaq 
\ame chanaq</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="75a50c67-1bed-4d31-a32a-698fabf50724"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ca:ña</AUni> -<AUni ws="qvm-x-acl">ca:ña</AUni> -<AUni ws="qvm-x-akh">ca:ña</AUni> -<AUni ws="qvm-x-akl">ca:ña</AUni> -<AUni ws="qvm-x-ame">ca:ña</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+caña</AUni> -<AUni ws="qvm-x-acl">+caña</AUni> -<AUni ws="qvm-x-akh">+caña</AUni> -<AUni ws="qvm-x-akl">+caña</AUni> -<AUni ws="qvm-x-ame">+caña</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.410" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="36881a53-e53b-4168-8c48-66f1c6dded4c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+caña</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6a8278f2-0196-4b28-aa73-dd39c22a5346" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d4d335cb-6e0a-47fc-8186-5c725401d033" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +caña 
\entryTyp root 
\gENG 
\gSPN 
\e +caña 
\c N0 
\ach ca:ña 
\akh ca:ña 
\acl ca:ña 
\akl ca:ña 
\ame ca:ña</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="75a649c8-3a1f-465e-8563-dbaef7936348" ownerguid="469b0a30-3c26-4cfd-b948-7bb952eeff41"> -<ExampleWords> -<AUni ws="en">get to know, get acquainted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to starting to know someone after you have met them?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="75a664f1-1c69-4a49-be7b-ad0be56cade0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jaca</AUni> -<AUni ws="qvm-x-acl">jaca</AUni> -<AUni ws="qvm-x-akh">jaka</AUni> -<AUni ws="qvm-x-akl">jaka</AUni> -<AUni ws="qvm-x-ame">haka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*haka.n</AUni> -<AUni ws="qvm-x-acl">*haka.n</AUni> -<AUni ws="qvm-x-akh">*haka.n</AUni> -<AUni ws="qvm-x-akl">*haka.n</AUni> -<AUni ws="qvm-x-ame">*haka.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.639" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dcb12394-7f54-4a33-9719-7bd1cfca94a8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*haka.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cb341ec1-e805-4446-a81d-ed1239a1689f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3f15d334-68da-4ece-8688-fe1f4ac9465f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *haka.n 
\entryTyp root 
\gENG guinea.pig 
\gSPN cuy 
\e *haka.n 
\c N0 
\ach jaca 
\akh jaka 
\acl jaca 
\akl jaka 
\ame haka</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="75ab1316-4fde-4636-9862-b3621c925dd7" ownerguid="aa57936d-f8a9-4603-8c3d-27abccd13531"> -<ExampleWords> -<AUni ws="en">ecology</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the study of the environment?</AUni> -</Question> -</rt> -<rt class="PartOfSpeech" guid="75ac4332-a445-4ce8-918e-b27b04073745" ownerguid="ecf8c677-320a-452c-85c0-1f0df87b5be5"> -<Abbreviation> -<AUni ws="en">coordconn</AUni> -</Abbreviation> -<BackColor val="0" /> -<CatalogSourceId> -<Uni>CoordinatingConnective</Uni> -</CatalogSourceId> -<DateCreated val="2022-10-15 15:40:51.147" /> -<DateModified val="2022-10-15 15:40:51.147" /> -<Description> -<AStr ws="en"> -<Run ws="en">A coordinating connective is a connective that links constituents without syntactically subordinating one to the other.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Coordinating connective</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="75acb013-4207-4977-a465-6f66d5f47ef8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">anima</AUni> -<AUni ws="qvm-x-acl">anima</AUni> -<AUni ws="qvm-x-akh">anima</AUni> -<AUni ws="qvm-x-akl">anima</AUni> -<AUni ws="qvm-x-ame">anima</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+animar</AUni> -<AUni ws="qvm-x-acl">+animar</AUni> -<AUni ws="qvm-x-akh">+animar</AUni> -<AUni ws="qvm-x-akl">+animar</AUni> -<AUni ws="qvm-x-ame">+animar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.769" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6f0386c2-2e7d-4748-8ca9-d1399daa04dc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+animar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="17d6e838-bc61-48c4-8dfe-171202d71a91" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="586f3b2a-ed77-408f-acaa-fd9851c42dfb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +animar 
\entryTyp root 
\gENG encourage 
\gSPN animar 
\e +animar 
\c V2 
\ach anima 
\akh anima 
\acl anima 
\akl anima 
\ame anima</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="75b0a760-4d07-4e92-8bf9-3b3ccd782a54" ownerguid="2e9f06f3-c986-43da-a035-e3cc9aef13d4"> -<ExampleWords> -<AUni ws="en">hate your job, boring</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to not being satisfied with your job?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="75b37a8e-3eb6-45d8-b362-7a51793c6831" ownerguid="d16b019b-a277-49b2-b477-72f76ccbdf61"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ISA 24.20 Shinkashqa runa tsankapaykachaykaqnömi\f + \fr 24.20 \ft Wakin runakunaqa \it tamaykachaqnömi\it* nipäkun.\f* rikakonqa.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="75b644e6-4cdf-4841-a2fb-531c1742129d" ownerguid="1d34380d-61bf-4247-9145-ba318a14a97e"> -<ExampleWords> -<AUni ws="en">pinch (of salt), cut (of meat), slice (of bread), bite (of cake)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a part of something that has been made by dividing it in some way?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="75b64a3f-fb30-4a38-905f-b7ac9331f82d" ownerguid="4d80670f-7cea-4381-bd29-2a1d7fdb295a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="75b92147-1693-44d8-b74f-bbdc4cc099fb" ownerguid="b4aa4bbd-8abf-4503-96e4-05c75efd23d5"> -<ExampleWords> -<AUni ws="en">bad, terrible, foul, inclement, rough, dirty sky, severe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe the weather when it is bad?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="75bb6504-5ee0-465d-9ec6-d585b47d3a87"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">reji:lla</AUni> -<AUni ws="qvm-x-acl">reji:lla</AUni> -<AUni ws="qvm-x-akh">reji:lla</AUni> -<AUni ws="qvm-x-akl">reji:lla</AUni> -<AUni ws="qvm-x-ame">reji:lla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rejilla</AUni> -<AUni ws="qvm-x-acl">+rejilla</AUni> -<AUni ws="qvm-x-akh">+rejilla</AUni> -<AUni ws="qvm-x-akl">+rejilla</AUni> -<AUni ws="qvm-x-ame">+rejilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.326" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="16bdda49-468e-408c-ad33-2d72d29aa389" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rejilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4f002e9e-b77d-4817-9565-df53c1e29865" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dcabf959-e9ee-4cc4-8e95-3434f6be3512" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rejilla 
\entryTyp root 
\gENG 
\gSPN 
\e +rejilla 
\c N0 
\ach reji:lla 
\akh reji:lla 
\acl reji:lla 
\akl reji:lla 
\ame reji:lla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="75bcc381-0d9d-4103-a807-4e03b82b163a" ownerguid="8bb58704-789a-46f5-ab16-d428dc73e4ba"> -<Form> -<AUni ws="qvm-x-ach">magma</AUni> -<AUni ws="qvm-x-acl">magma</AUni> -<AUni ws="qvm-x-akh">maqma</AUni> -<AUni ws="qvm-x-akl">maqma</AUni> -<AUni ws="qvm-x-ame">maqma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="75be2d01-f947-4ab9-b4b7-0deb6b7fba1b" ownerguid="9750735a-736d-4aeb-afdb-74a893e08b89"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">forehead</AUni> -<AUni ws="es">frente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="46479ac8-6bd3-470b-a67c-82ae073447fa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="75bef39d-c59a-40d9-bce5-3d9d8295a2b0" ownerguid="1cb3c52e-5952-4aaf-82af-91b8d2c2b199"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">adult</AUni> -<AUni ws="es">adulto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e8b72fe0-a1f1-4a66-a486-e391e497b6fe" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="75c15447-2568-43e4-8f68-7b4aa585a60a" ownerguid="da39c0d9-a5c1-4f10-bd3b-4e988abcab5a"> -<ExampleWords> -<AUni ws="en">impenitent, not regret, not be sorry, have no regrets, would do the same thing again, remorseless, unrepentant, not feel guilty, a clear conscience, have no qualms about, have no compunction, feel no compunction</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to not feeling sorry?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="75c4cf6f-e675-40e9-a2a0-17463f186841" ownerguid="84eb31d3-b932-4b3b-b945-85884ea856c7"> -<ExampleWords> -<AUni ws="en">likelihood, probability, prospect, chances, odds</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words indicate how probable it is that something will happen?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="75c541d5-345a-4cc4-800a-78da322c9e3e" ownerguid="69da6101-b9e3-42c5-92ff-fe6091c9f833"> -<Form> -<AUni ws="qvm-x-ach">wanca</AUni> -<AUni ws="qvm-x-acl">wanca</AUni> -<AUni ws="qvm-x-akh">wanka</AUni> -<AUni ws="qvm-x-akl">wanka</AUni> -<AUni ws="qvm-x-ame">wanka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="75c5fdb0-35ec-40ce-bae2-5da2d4eee5d2" ownerguid="8cb8a608-a798-4aac-9da6-0266fea75421"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="e0aa777a-116a-4037-bcef-829034857dfb" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">dodge</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4d547cde-098e-4304-96ac-0bf2d187b987" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="75c65134-9cca-49c8-9a32-556dde1d2f4a" ownerguid="b4aa4bbd-8abf-4503-96e4-05c75efd23d5"> -<ExampleWords> -<AUni ws="en">weather-beaten, weathered</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words describe something that has been exposed to the weather for a long time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="75c8e49c-682e-4b08-88d4-8647dbc9b32d" ownerguid="fd33670e-ef16-4566-a62e-aa077e58407b"> -<ExampleWords> -<AUni ws="en">cry, laugh, scream, shriek, whistle, click, pop, wheeze, hiss, cluck, cough, hawk, gasp, gulp, snore, snort, sniff, sob, tsk-tsk, gurgle, gargle, yodel, moan, groan, scream, ululate, yikes, yahoo</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(17) What sounds do people make with their mouths other than speaking or singing?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="75c9a719-332a-4248-83bc-5e08d2be0209" ownerguid="65b454ee-2a3d-4790-8efe-23f4e1c025b9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">crooked</AUni> -<AUni ws="es">chueco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="230b8166-5259-457b-9f7c-89395f942a95" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="75ca7d64-e275-4d72-945a-578fc85ff45c" ownerguid="6bed5062-0d3c-4c4b-9f2d-cba6a7f19a23"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="75cafb31-c141-4afa-9fb5-c8d580ab04ac" ownerguid="7d111356-e04e-4891-960c-2f35147eba82"> -<ExampleWords> -<AUni ws="en">be called, be known as, be entitled, be termed, go by the name of, so-called</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used to indicate the name of something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="75ccb853-52a7-4f79-86a3-f3e653b648e4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">eunucu; eunuco</AUni> -<AUni ws="qvm-x-acl">eunucu; eunucu; eunuco</AUni> -<AUni ws="qvm-x-akh">eunucu; eunuco</AUni> -<AUni ws="qvm-x-akl">eunucu; eunucu; eunuco</AUni> -<AUni ws="qvm-x-ame">eunucu; eunuco</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+eunuco</AUni> -<AUni ws="qvm-x-acl">+eunuco</AUni> -<AUni ws="qvm-x-akh">+eunuco</AUni> -<AUni ws="qvm-x-akl">+eunuco</AUni> -<AUni ws="qvm-x-ame">+eunuco</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.518" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="79e4f0b6-1efb-49ae-8664-f599796ce3dc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+eunuco</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2b9b0229-8189-4202-813a-5c2878b6909c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="49312973-47e9-4f83-ba44-7b5f9195d302" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +eunuco 
\entryTyp root 
\gENG 
\gSPN 
\e +eunuco 
\c N0 
\ach eunucu / ~_# 
\ach eunuco / _# 
\akh eunucu / ~_# 
\akh eunuco / _# 
\acl eunucu / ~_# 
\acl eunucu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl eunuco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl eunucu / ~_# 
\akl eunucu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl eunuco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame eunucu / ~_# 
\ame eunuco / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="75cd9a4c-aa2a-442f-9eba-61c160aa238a" ownerguid="f2b94c3d-b681-4909-900a-083e287ef045"> -<Form> -<AUni ws="qvm-x-ach">gaululu; gaululü</AUni> -<AUni ws="qvm-x-acl">gaululö; gaululu; gaululo</AUni> -<AUni ws="qvm-x-akh">qawlulu; qawlulü</AUni> -<AUni ws="qvm-x-akl">qawlulö; qawlulu; qawlulo</AUni> -<AUni ws="qvm-x-ame">qawlulu; qawlulü</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="75cf1249-2a1a-434f-bd69-e5ac5a4bed51" ownerguid="b400cf18-032f-424e-aa44-fb7c99ad52f9"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="75d3140e-0023-46a7-809e-f9106bf27e78" ownerguid="a336e26e-c41e-4a12-bd4a-b62ca78865eb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="75d4fad8-9d20-4e80-b9b4-a67ea193ad08"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mura:lla</AUni> -<AUni ws="qvm-x-acl">mura:lla</AUni> -<AUni ws="qvm-x-akh">mura:lla</AUni> -<AUni ws="qvm-x-akl">mura:lla</AUni> -<AUni ws="qvm-x-ame">mura:lla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+muralla</AUni> -<AUni ws="qvm-x-acl">+muralla</AUni> -<AUni ws="qvm-x-akh">+muralla</AUni> -<AUni ws="qvm-x-akl">+muralla</AUni> -<AUni ws="qvm-x-ame">+muralla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.507" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5c666273-921f-4652-8fa4-12d87a822c16" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+muralla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4e6d16bb-21e9-4735-8d27-528027e728e4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="88d1d9a7-131a-4bb6-9509-8eab9b51bbfa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +muralla 
\entryTyp root 
\gENG wall 
\gSPN muralla 
\e +muralla 
\c N0 
\ach mura:lla 
\akh mura:lla 
\acl mura:lla 
\akl mura:lla 
\ame mura:lla</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="75d8c7d5-e2ae-423e-bfb9-a861172ed745" ownerguid="76a4a286-1c8a-4c4a-9eaf-dca040be574a"> -<ExampleWords> -<AUni ws="en">courage, bravery, assurance, audacity, boldness, confidence, firmness, fortitude, gallantry, grit, guts, heroism, manliness, nerve, pluck, spunk, valor, fighting spirit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the ability to do something brave?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="75da3c44-9825-41ef-8682-e0fd6cbf32a9" ownerguid="93c64606-44dc-4e99-8289-97b6c77a0fed"> -<Form> -<AUni ws="qvm-x-ach">demanda</AUni> -<AUni ws="qvm-x-acl">demanda</AUni> -<AUni ws="qvm-x-akh">demanda</AUni> -<AUni ws="qvm-x-akl">demanda</AUni> -<AUni ws="qvm-x-ame">demanda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="75db7430-637a-46e0-8f0a-a10c51dc6e9b" ownerguid="0b7b9a1c-588b-475a-ac14-00f0999cbfe9"> -<ExampleWords> -<AUni ws="en">concord, social harmony</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the state of peace or the lack of fighting between people?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="75dcf6a0-e488-4f7f-8a29-595d91b2a8ef" ownerguid="5f5083e6-4fbb-4408-ab01-0e2eb8e60c36"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="75dd386d-3fff-41c6-a73d-ac3743e20753" ownerguid="6e17e279-00e5-4fee-8ef8-096fa90c23b4"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">SNG 1.3 Perfümiquipa asyayninpis maypis mushquiräcuypagmi caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="75dd6637-1564-4de8-889c-7f3e3e371ec2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guetu</AUni> -<AUni ws="qvm-x-acl">guetu; gueto</AUni> -<AUni ws="qvm-x-akh">qetu</AUni> -<AUni ws="qvm-x-akl">qetu; qeto</AUni> -<AUni ws="qvm-x-ame">qitu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qitu.v</AUni> -<AUni ws="qvm-x-acl">*qitu.v</AUni> -<AUni ws="qvm-x-akh">*qitu.v</AUni> -<AUni ws="qvm-x-akl">*qitu.v</AUni> -<AUni ws="qvm-x-ame">*qitu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.214" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="356b0b82-0613-4576-a096-a637a3687182" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qitu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6187b260-8763-4b5f-9302-40b868944a0a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a85ed302-8e8f-497e-8e8d-975375974fe5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qitu.v 
\entryTyp root 
\gENG 
\gSPN escarminar 
\e *qitu.v 
\c V2 
\ach guetu 
\akh qetu 
\acl guetu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gueto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qetu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qeto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qitu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="75e1d071-e208-4b8b-8106-f27001e395b4" ownerguid="179f5764-2b71-42d0-81d0-332e299ce94c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ffba1b72-6b52-4cf6-acde-b99524990e0f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="75e6c9e1-b36e-4814-ae4a-cdb676bf9d07" ownerguid="f869a6c6-446c-4389-9e44-426ec5a3b530"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="18f7863a-a08b-4bb3-b310-cbfb9b7354e4" t="o" /> -<objsur guid="7cb3fb72-ea80-4fcc-8578-32f63c6a9c07" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="75e7846d-d21f-4ea3-94ce-80b724644bb4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">prue:ba</AUni> -<AUni ws="qvm-x-acl">prue:ba</AUni> -<AUni ws="qvm-x-akh">prue:ba</AUni> -<AUni ws="qvm-x-akl">prue:ba</AUni> -<AUni ws="qvm-x-ame">prue:ba</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+prueba</AUni> -<AUni ws="qvm-x-acl">+prueba</AUni> -<AUni ws="qvm-x-akh">+prueba</AUni> -<AUni ws="qvm-x-akl">+prueba</AUni> -<AUni ws="qvm-x-ame">+prueba</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.962" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="da85daeb-a128-416a-99b7-a83da6cac144" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+prueba</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4a7d372e-1f9c-46cb-aceb-4dd390217a4a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3c1cc1ec-4c1a-448b-aa8f-46a733353db0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +prueba 
\entryTyp root 
\gENG 
\gSPN 
\e +prueba 
\c N0 
\ach prue:ba 
\akh prue:ba 
\acl prue:ba 
\akl prue:ba 
\ame prue:ba 
\i DAN 1.14 Tsaymi pruëbata ruragnog manacushganogla chunca junag paycunataga verdüralata garargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="75e89fcb-60f1-416b-9804-d910d47b2bbb" ownerguid="d2f05cc8-1a3f-4bc2-9a2b-38174bb84091"> -<ExampleWords> -<AUni ws="en">be dumb, mute, unable to speak</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the condition of being mute?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="75eb23c7-28b5-4c98-937a-1d8f371b24cf" ownerguid="6f01b67c-33a0-4ed3-8205-f868e97a1a3a"> -<Abbreviation> -<AUni ws="en">7.2.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.518" /> -<DateModified val="2022-9-23 16:55:8.518" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to traveling by air.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15G' Fly</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Fly</AUni> -</Name> -<OcmCodes> -<Uni>507 Aviation; 506 Aircraft; 508 Airport Facilities; 509 Air Transport</Uni> -</OcmCodes> -<Questions> -<objsur guid="db9232ce-c277-4163-ab53-727b356d2f33" t="o" /> -<objsur guid="f5e90920-c4ff-4a10-beae-471713774c59" t="o" /> -<objsur guid="b9ed2ff8-5001-4b0e-b262-e147eaa5bd11" t="o" /> -<objsur guid="7b47dc4f-c00b-413c-8925-ebcf3771a31a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="75ed6438-45c2-42c9-b319-ea5beabb30e6" ownerguid="451a3659-8fc4-473e-8a9a-e1691fb4b9f8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sister.of.female</AUni> -<AUni ws="es">hermana</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c993a5f3-0ab4-4b7e-b7c0-d9f03d71bd3b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="75ee8281-5299-4cd3-a5b8-cd1100883e97"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cla:vu</AUni> -<AUni ws="qvm-x-acl">cla:vu; cla:vu; cla:vo</AUni> -<AUni ws="qvm-x-akh">cla:vu</AUni> -<AUni ws="qvm-x-akl">cla:vu; cla:vu; cla:vo</AUni> -<AUni ws="qvm-x-ame">cla:vu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+clavo</AUni> -<AUni ws="qvm-x-acl">+clavo</AUni> -<AUni ws="qvm-x-akh">+clavo</AUni> -<AUni ws="qvm-x-akl">+clavo</AUni> -<AUni ws="qvm-x-ame">+clavo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.132" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="df2640fd-7c5e-400e-846b-9650563fb7ec" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+clavo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b8dcf1ca-9c88-4195-8c2c-779205ee9aca" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d46126e4-7343-4b9b-8e1a-28d5509652c7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +clavo 
\entryTyp root 
\gENG nail 
\gSPN clavo 
\e +clavo 
\c N0 
\ach cla:vu 
\akh cla:vu 
\acl cla:vu / _# 
\acl cla:vu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cla:vo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cla:vu / _# 
\akl cla:vu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cla:vo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cla:vu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="75f1d891-753c-42a9-8f14-18fa3dd1767b" ownerguid="a854b6a5-e727-49a7-8123-dad693a9a80c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 BN/BN R0/R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ABL</AUni> -<AUni ws="es">ABL</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c516d14b-9b18-44a7-8c37-97267a8b8796" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="75f25953-c010-4b69-a3b2-deacb08670e9" ownerguid="7613c931-7378-47de-a1f0-8a7b40a0bac6"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="75f2c9bd-b9b8-43aa-a0cf-256af20e6da7" ownerguid="60de6613-9d48-4e43-a554-3dea73950517"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">blessing</AUni> -<AUni ws="es">bendición</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="41bcb326-2501-4335-84bd-5b7c3383ee69" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="75f569cf-3eb0-4f14-8ad7-19760546ef6d" ownerguid="5bc2e45f-8a32-4142-b829-8de692a91294"> -<Form> -<AUni ws="qvm-x-ach">llena</AUni> -<AUni ws="qvm-x-acl">llena</AUni> -<AUni ws="qvm-x-akh">llena</AUni> -<AUni ws="qvm-x-akl">llena</AUni> -<AUni ws="qvm-x-ame">llena</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="75f826ce-1038-431b-b355-ef751e6714d8" ownerguid="ac9ee84f-f0c7-48b3-8e5a-b4c967112394"> -<ExampleWords> -<AUni ws="en">less, not as, not so</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that something has less of a quality than another thing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="75fc4bc1-283a-4655-86f6-e087e563b096" ownerguid="8e88ed6a-000d-400a-8cd8-7b3cc7f1818c"> -<ExampleWords> -<AUni ws="en">acupuncture</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the types of treatment?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="75fce016-3aa7-4e73-9003-db242c2f8c86"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuenteste:ru</AUni> -<AUni ws="qvm-x-acl">cuenteste:ru; cuenteste:ru; cuenteste:ro</AUni> -<AUni ws="qvm-x-akh">cuenteste:ru</AUni> -<AUni ws="qvm-x-akl">cuenteste:ru; cuenteste:ru; cuenteste:ro</AUni> -<AUni ws="qvm-x-ame">cuenteste:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuentastero</AUni> -<AUni ws="qvm-x-acl">+cuentastero</AUni> -<AUni ws="qvm-x-akh">+cuentastero</AUni> -<AUni ws="qvm-x-akl">+cuentastero</AUni> -<AUni ws="qvm-x-ame">+cuentastero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.244" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ec8e15c6-57d1-4a43-b91a-11d285aeafec" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuentastero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3269fc56-1efd-4212-8385-ed692d878351" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0962e656-ea07-4909-8dbe-7207bd47e41f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuentastero 
\entryTyp root 
\gENG gossiper 
\gSPN 
\e +cuentastero 
\c N0 
\ach cuenteste:ru 
\akh cuenteste:ru 
\acl cuenteste:ru / _# 
\acl cuenteste:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cuenteste:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cuenteste:ru / _# 
\akl cuenteste:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cuenteste:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cuenteste:ru 
\i PRO 11.13 Waquin runacunapäga nina shimega cuentestëru ninanmi. Cuentestëru ninanpäga waquin runacuna wilapishtëru nipäcun.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="7601aa52-ebb2-463b-a92c-390d0478f4a5" ownerguid="5e587dd9-1f34-4440-b67f-3cb6fcbb18f5"> -<Form> -<AUni ws="qvm-x-ach">reyäta</AUni> -<AUni ws="qvm-x-acl">reyäta</AUni> -<AUni ws="qvm-x-akh">reyäta</AUni> -<AUni ws="qvm-x-akl">reyäta</AUni> -<AUni ws="qvm-x-ame">reyäta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="7602cc30-22c3-4de0-b593-de4d585b62a1" ownerguid="5bc2e45f-8a32-4142-b829-8de692a91294"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="2c4be219-8d6a-4e85-b202-281fc52075f6" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="77f2bf77-9159-4f66-a24b-98814fe6f289" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="76060c41-1c25-48cb-a1ec-ca005a9e155d" ownerguid="be878acc-7985-40ed-99ce-0f8f857ce5a4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">molido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ea51f192-39b6-4c6a-b7f9-70f8a5e71ce4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="76097e10-4c0d-4618-b908-e8f3130d0def" ownerguid="ee8a20b7-4202-489a-b8cd-bdebaf770313"> -<ExampleWords> -<AUni ws="en">hops, yeast, millet, corn (maize), rice</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What foodstuffs are used to make alcohol?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="760a0281-8197-4780-b6f1-9af9867884fc" ownerguid="3ca10d5c-77d8-4b6c-8dad-a24807659aa6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">legañar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dfeba437-d2d5-471f-b481-b4f48c973969" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="760a3bdb-2caa-4674-8ef8-35d2e635acb6" ownerguid="01cbdf1d-9732-4b93-a14c-f0837ecc797e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wayi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wayi; wayi; waye</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wayi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wayi; wayi; waye</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wayi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="908a9492-ef77-4052-a703-5d519cb12013" t="r" /> -</Morph> -<Msa> -<objsur guid="87a61372-b529-41d0-892b-ca33273dc85c" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="760c1a25-277c-4fd9-a442-707b1d5b8cf6" ownerguid="69404d44-5a36-4aed-bccf-5249576c6e25"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">alpine.meadow</AUni> -<AUni ws="es">estancia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fb4a4ed0-bc75-4949-93c5-750b47fc001f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="760ddf8d-f2c8-4ff0-af42-61c828345412" ownerguid="35b617b3-6503-4e5e-aff6-fccfe4730f9e"> -<Form> -<AUni ws="qvm-x-ach">venena</AUni> -<AUni ws="qvm-x-acl">venena</AUni> -<AUni ws="qvm-x-akh">venena</AUni> -<AUni ws="qvm-x-akl">venena</AUni> -<AUni ws="qvm-x-ame">venena</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="76124242-2051-46ee-acf7-06346971415a" ownerguid="989afba4-ae9a-4839-aae7-39bc6c381672"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0 V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">alms</AUni> -<AUni ws="es">limosna</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8862006a-3fe2-4c6e-8395-fbc6442c3094" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="7613c931-7378-47de-a1f0-8a7b40a0bac6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fi:la</AUni> -<AUni ws="qvm-x-acl">fi:la</AUni> -<AUni ws="qvm-x-akh">fi:la</AUni> -<AUni ws="qvm-x-akl">fi:la</AUni> -<AUni ws="qvm-x-ame">fi:la</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+filar</AUni> -<AUni ws="qvm-x-acl">+filar</AUni> -<AUni ws="qvm-x-akh">+filar</AUni> -<AUni ws="qvm-x-akl">+filar</AUni> -<AUni ws="qvm-x-ame">+filar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.548" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d821e11e-934c-442b-a663-01b49f64e548" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+filar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="75f25953-c010-4b69-a3b2-deacb08670e9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e9b24bba-df96-4cab-9188-f2d5500d19a2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +filar 
\entryTyp root 
\gENG file 
\gSPN filar 
\e +filar 
\c V1 
\ach fi:la 
\akh fi:la 
\acl fi:la 
\akl fi:la 
\ame fi:la</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="76140434-5d1b-406b-8a71-0559ad2577b2" ownerguid="f4dd3e1b-dbb7-4634-9f42-c612e1872b28"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">religion</AUni> -<AUni ws="es">religion</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="430c4788-00a9-4d2f-ac2a-2e3793462851" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="761706fe-d289-4ace-b2c3-ab15d80dba7f" ownerguid="9b267cc1-983c-407a-98d2-1e27add6292c"> -<Abbreviation> -<AUni ws="en">7.5.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.549" /> -<DateModified val="2022-9-23 16:55:8.549" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to rope, string, and other things used to tie things together.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>6D Instruments Used in Binding and Fastening</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Rope, string</AUni> -</Name> -<Questions> -<objsur guid="07cb1f4f-a6f8-4879-8e68-94768be9c6ca" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="5cd2f365-2d84-451e-9f2d-bc2561eff909" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="76178bb3-c972-412d-95c7-90b340ffbaf1" ownerguid="56ef3f06-7fb9-462e-a7d0-517f3ce1623f"> -<ExampleWords> -<AUni ws="en">sable, wolverine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What animals are in the sable family?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="761acd0e-249e-4bc6-b157-eab6769a8f31" ownerguid="2f33b4f7-25dd-447b-b1c7-354c295a270d"> -<Form> -<AUni ws="qvm-x-ach">garmi; garma</AUni> -<AUni ws="qvm-x-acl">garmi; garme; garma</AUni> -<AUni ws="qvm-x-akh">qarmi; qarma</AUni> -<AUni ws="qvm-x-akl">qarmi; qarme; qarma</AUni> -<AUni ws="qvm-x-ame">qarmi; qarma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="761b0899-4da5-4e31-9c8c-d00027d224d1" ownerguid="9f868391-f1df-4682-bdcb-2c2c799006cf"> -<ExampleWords> -<AUni ws="en">regret, rue the day</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to remembering something bad?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="761ed6be-d61a-48d3-b666-2e09756a2bc6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mupali</AUni> -<AUni ws="qvm-x-acl">mupali; mupali; mupale</AUni> -<AUni ws="qvm-x-akh">mupali</AUni> -<AUni ws="qvm-x-akl">mupali; mupali; mupale</AUni> -<AUni ws="qvm-x-ame">mupali</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mupalli.n</AUni> -<AUni ws="qvm-x-acl">*mupalli.n</AUni> -<AUni ws="qvm-x-akh">*mupalli.n</AUni> -<AUni ws="qvm-x-akl">*mupalli.n</AUni> -<AUni ws="qvm-x-ame">*mupalli.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.505" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="05812e47-1f74-4343-902c-b90e43eeed97" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mupalli.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3d227028-c442-414b-a7b4-5f402cf014dc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="99ab569b-7b38-41d1-b9c3-cb7973ec22d7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mupalli.n 
\entryTyp root 
\gENG mold 
\gSPN 
\e *mupalli.n 
\c N0 
\mp +FinalI 
\ach mupali 
\akh mupali 
\acl mupali / _# 
\acl mupali +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mupale +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mupali / _# 
\akl mupali +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mupale +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mupali</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="762009bd-4942-46ea-9cf3-825ca880070b" ownerguid="f1cddb60-310f-40be-bb22-1ce76eb80cc9"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 6.26 Prostitüta warmega guellaypag rayculami runawan punun.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiWordform" guid="76227cdf-5b3b-4600-94a4-7d4a7b981fc9"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">20</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="7622e959-f759-4127-bba6-acbd6f250968" ownerguid="dbd3e164-3f70-4395-9728-1c24c8900da6"> -<ExampleWords> -<AUni ws="en">knife, paring knife, bread knife, butcher knife, cleaver, grater, cutting board, chopping block</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What utensils are used to cut food?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="76285b10-1fc6-4067-aca1-574525c60662" ownerguid="9f425812-8e7a-4cc4-b427-4cab065d2be6"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="762c209f-1289-4276-ba23-aee426928f9e" ownerguid="181cd4a8-1211-491a-90da-4ac86f6b6604"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="762f9c34-75eb-4f96-9071-d61377408b40" ownerguid="c6f0f4c1-8c0d-45b3-815a-0597b4ece2de"> -<Form> -<AUni ws="qvm-x-ach">mal</AUni> -<AUni ws="qvm-x-acl">mal</AUni> -<AUni ws="qvm-x-akh">mal</AUni> -<AUni ws="qvm-x-akl">mal</AUni> -<AUni ws="qvm-x-ame">mal</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="763868c6-d124-4370-9a83-b063e54c685a" ownerguid="61f52196-a8b2-496d-96ea-8c15dc7d377a"> -<ExampleWords> -<AUni ws="en">miraculous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a miracle?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="76389945-bde0-47fc-8499-77985525bf39"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">macwa</AUni> -<AUni ws="qvm-x-acl">macwa</AUni> -<AUni ws="qvm-x-akh">makwa</AUni> -<AUni ws="qvm-x-akl">makwa</AUni> -<AUni ws="qvm-x-ame">makwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*makwa</AUni> -<AUni ws="qvm-x-acl">*makwa</AUni> -<AUni ws="qvm-x-akh">*makwa</AUni> -<AUni ws="qvm-x-akl">*makwa</AUni> -<AUni ws="qvm-x-ame">*makwa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.265" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f82a8f36-ac4c-4f26-b758-cecec9ac67e2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*makwa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7b8ca8f8-374a-4bcd-bc1f-c79edfd94a47" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="61f23170-29be-45b3-a068-a9bb8bc6e476" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *makwa 
\entryTyp root 
\gENG old 
\gSPN viejo 
\e *makwa 
\c N0 
\ach macwa 
\akh makwa 
\acl macwa 
\akl makwa 
\ame makwa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="763add5c-d336-40c4-908b-c3574f9cbc62" ownerguid="d3761502-9118-4066-b51b-5bbd23c21020"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="763e4dfc-141e-44cd-a0ce-656cd4b158f4" ownerguid="93bcba15-4329-416a-b6ff-4f3c73b2cd4f"> -<Form> -<AUni ws="qvm-x-ach">majiquëru</AUni> -<AUni ws="qvm-x-acl">majiquëru; majiquëru; majiquëro</AUni> -<AUni ws="qvm-x-akh">majiquëru</AUni> -<AUni ws="qvm-x-akl">majiquëru; majiquëru; majiquëro</AUni> -<AUni ws="qvm-x-ame">majiquëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="763ee21c-9fe4-427f-983d-c251b569dfec" ownerguid="66d8b546-92f5-4e94-b992-08be81c3d30c"> -<ExampleWords> -<AUni ws="en">impact (v), affect, change (v), impinge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to making an impact on something?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="763fa2e0-c119-4f50-a307-81ed8c3497ed" ownerguid="189f8c29-f0ff-44b6-a0db-5b287c412a75"> -<Abbreviation> -<AUni ws="en">4.8.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.276" /> -<DateModified val="2022-9-23 16:55:8.276" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to opposing something that you think is wrong.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>39 Hostility, Strife; 39E Strife, Struggle</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Oppose</AUni> -</Name> -<OcmCodes> -<Uni>578 Ingroup Antagonisms</Uni> -</OcmCodes> -<Questions> -<objsur guid="76ba3b3b-20dd-48fe-bc8c-66aaa42464a9" t="o" /> -<objsur guid="f6afda84-5dc8-4ec7-935d-d2942b2c64bc" t="o" /> -<objsur guid="8b290d55-a854-49bd-80f3-46907e6ac845" t="o" /> -<objsur guid="1e297f18-ce18-4398-bf2b-0754d3c0b8bb" t="o" /> -<objsur guid="86712cc0-283f-4d9d-8964-f23b54535827" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="92e441df-7e56-4e2c-b205-79a95800f567" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="763fad25-2d59-4714-a873-ce93c5b3a927" ownerguid="5f791daf-98a2-4787-93cc-8813aea93c4d"> -<ExampleWords> -<AUni ws="en">untangle, unravel, comb out, straighten out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to untangling something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="76455399-6fff-4d3f-843c-cf9a6806524c" ownerguid="db2232d9-8b17-4920-936f-2b6249c6f7fa"> -<ExampleWords> -<AUni ws="en">light-fingered, thieving</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe someone who steals?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="7648040b-0aa5-4d9a-8f13-ffd066b81602" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<Abbreviation> -<AUni ws="en">8.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.587" /> -<DateModified val="2022-9-23 16:55:8.587" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being long. In many languages there is more than one system of measuring length. These systems may be used for different purposes or in different jobs. For instance measuring the length of an object may use different words than measuring the distance a person travels.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>81C Long, Short, Far; 81F Specific Measures of Length</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Long</AUni> -</Name> -<Questions> -<objsur guid="273cede5-daa5-4e7b-8c79-a1f7dd710973" t="o" /> -<objsur guid="c54b5d06-20c4-49eb-b90f-879e37b9d7af" t="o" /> -<objsur guid="dab7521f-f67e-4aca-9092-01aef7fde9e3" t="o" /> -<objsur guid="72b55d52-7d6c-41f5-98d9-5f14ecb80938" t="o" /> -<objsur guid="5717d330-944a-4606-aabd-2e94106ac0ff" t="o" /> -<objsur guid="4c11ee34-95fa-43ad-8c30-6e6de5e7b5ee" t="o" /> -<objsur guid="066d3aae-f173-4156-b67b-db9f0fc17d45" t="o" /> -<objsur guid="08591880-4c29-4f30-85d4-6c84659708f8" t="o" /> -<objsur guid="5bb18e87-a1a8-4fb5-99fb-463a01033f27" t="o" /> -<objsur guid="16d14254-663d-4a62-ae5c-b07c0a8e538e" t="o" /> -<objsur guid="6172331f-a6de-481a-bcfb-2e2f74756566" t="o" /> -<objsur guid="50cfc2c2-bb9b-4579-967f-06f8de2ad410" t="o" /> -<objsur guid="6d8801e6-848c-41ac-9463-e8dca77962d1" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="73d580ac-dc89-474c-8048-3453ebdda807" t="r" /> -<objsur guid="bba30b56-6cd8-4542-81ab-f983cf1354bd" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="3ccc3a21-07c8-4983-a044-e3c74b538135" t="o" /> -<objsur guid="b844d2f8-d3ef-4605-b038-8bc0a2cff0af" t="o" /> -<objsur guid="0aae1951-4d5b-45a0-853c-1839764c9862" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="764d968c-ca04-4403-bf62-36a776d73ac6" ownerguid="fbc9c7c9-f6df-478c-86ae-d96ae0ef8021"> -<Form> -<AUni ws="qvm-x-ach">gueshpi</AUni> -<AUni ws="qvm-x-acl">gueshpi; gueshpe</AUni> -<AUni ws="qvm-x-akh">qeshpi</AUni> -<AUni ws="qvm-x-akl">qeshpi; qeshpe</AUni> -<AUni ws="qvm-x-ame">qishpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="764f7789-e255-46d3-82dd-4e20f7e4c6a2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chicharru</AUni> -<AUni ws="qvm-x-acl">chicharru; chicharru; chicharro</AUni> -<AUni ws="qvm-x-akh">chicharru</AUni> -<AUni ws="qvm-x-akl">chicharru; chicharru; chicharro</AUni> -<AUni ws="qvm-x-ame">chicharru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tritrarru</AUni> -<AUni ws="qvm-x-acl">*tritrarru</AUni> -<AUni ws="qvm-x-akh">*tritrarru</AUni> -<AUni ws="qvm-x-akl">*tritrarru</AUni> -<AUni ws="qvm-x-ame">*tritrarru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.129" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d9dffc78-c547-41ce-88d9-3766db05e2de" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tritrarru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0ea133b6-8285-44b7-9461-11b0ceba7712" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="49134597-0ed3-4b89-a645-d7b3cc98556b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tritrarru 
\entryTyp root 
\gENG meat 
\gSPN chicharron 
\e *tritrarru 
\c N0 
\ach chicharru 
\akh chicharru 
\acl chicharru / _# 
\acl chicharru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chicharro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chicharru / _# 
\akl chicharru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chicharro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chicharru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="7652a316-32b4-42dc-a7de-20f32d4c4010" ownerguid="898aacea-1fbf-4e07-a8da-330f39a9a386"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ask</AUni> -<AUni ws="es">preguntar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fb6a2407-472d-4e67-86ff-20731fa28da1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="7653e3d4-82b7-4cdd-a13d-11d605027196" ownerguid="1892095d-b9c5-49df-a950-e43aeba7196a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="33435f22-d32b-48c3-9744-89d737371501" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="76563144-028e-47b5-8929-9ff0ced3ed64" ownerguid="f1d5a303-a423-48b0-ad63-276c3f9e16b0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">vagina</AUni> -<AUni ws="es">vagina</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="de252762-824d-48d2-a213-e089864ddd79" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiGloss" guid="76591ed4-9ef4-4d15-b0f0-7cbb0295dc86" ownerguid="665d2cf7-c0c5-4014-a130-c9605400d72a"> -<Form> -<AUni ws="en">to.clothe</AUni> -<AUni ws="es">aropar</AUni> -</Form> -</rt> -<rt class="LexSense" guid="765d689d-734c-41ac-acd8-78a311fa3bdd" ownerguid="ebe57d1f-9413-4d4a-960c-8585fd7aa2d7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cheek</AUni> -<AUni ws="es">mejilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="615db137-5675-41b9-9929-d262f3aca437" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="765f9291-0a8c-4d38-8b6b-8bf7b942e921" ownerguid="0ea925c8-864b-470d-9a96-ccc0547a713b"> -<Form> -<AUni ws="qvm-x-ach">cuatru; cuatro</AUni> -<AUni ws="qvm-x-acl">cuatru; cuatru; cuatro</AUni> -<AUni ws="qvm-x-akh">cuatru; cuatro</AUni> -<AUni ws="qvm-x-akl">cuatru; cuatru; cuatro</AUni> -<AUni ws="qvm-x-ame">cuatru; cuatro</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="76611522-2d7d-4112-a285-cf670a447cf3" ownerguid="bb2a112f-af6f-4a54-bbf0-ba7b8289e58b"> -<ExampleWords> -<AUni ws="en">attraction, lure (n), temptation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something that is attractive?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7661ed0b-c3db-46ca-b7f9-8329c2886423" ownerguid="2b7e0483-15d8-4b3b-9bdc-6072fc0f49a9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">admirar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b61a4027-8a59-4f05-a97f-799fe6b9461b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7664ede1-8087-48d9-aeca-814c38419ff7" ownerguid="5386368c-d3e5-4ff4-88b0-f27c801a9d1d"> -<Form> -<AUni ws="qvm-x-acl">sueño</AUni> -<AUni ws="qvm-x-akl">sueño</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="7665da24-217d-4ae3-8ad4-aa20300a4799" ownerguid="b5734f71-fac2-4a15-b17a-41581bf7f722"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="f2870775-4ac7-43d6-a97b-dc7a7b2de0b3" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="a55b800d-5a9e-4d4f-8e1f-8c6964518db1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="76662e0a-c33f-4ade-8f11-e668d2cd276c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yacha</AUni> -<AUni ws="qvm-x-acl">yacha</AUni> -<AUni ws="qvm-x-akh">yacha</AUni> -<AUni ws="qvm-x-akl">yacha</AUni> -<AUni ws="qvm-x-ame">yacha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yatra.v2</AUni> -<AUni ws="qvm-x-acl">*yatra.v2</AUni> -<AUni ws="qvm-x-akh">*yatra.v2</AUni> -<AUni ws="qvm-x-akl">*yatra.v2</AUni> -<AUni ws="qvm-x-ame">*yatra.v2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.770" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="92276dcf-5089-416e-ac20-bb423fea450d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yatra.v2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c6047088-dfa1-409b-a901-2a442c5a94b5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="248c8bb7-aa53-4fe1-aebc-4da5dc26c138" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yatra.v2 
\entryTyp root 
\gENG know 
\gSPN saber 
\e *yatra.v2 
\c V2 
\ach yacha 
\akh yacha 
\acl yacha 
\akl yacha 
\ame yacha 
\mcc *yatra.v2 / _... [trans] 
\mcc *yatra.v2 / ~_ CAUS</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="766a1fec-ebf9-49b9-9a6e-1ef992f7ccc0" ownerguid="cecfc489-94aa-4cdc-aecf-afb6646f28f2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">go.on</AUni> -<AUni ws="es">vaya</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="67e02100-c4c2-4dd1-9a4b-e6497021eac2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="766e9573-a089-422d-9f8b-6eb78e8017d5" ownerguid="a1fe830b-7192-4115-a731-f34ad046181a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="766f009c-1dfa-4755-a909-55996e44b560" ownerguid="ac4a9f08-539d-41a4-8b40-70f9144bc18e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">flour</AUni> -<AUni ws="es">harina</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="54ae3270-5da4-4bdc-baec-caf4e6e45437" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="766fcb32-d214-435d-a27f-fd45e806c64c" ownerguid="c0d08d72-d213-4b19-81a1-183cf3eab937"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lover</AUni> -<AUni ws="es">amor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="17d6ce4f-9a6f-402c-92c2-ab3a79d3f8ff" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="76760b1d-99bc-4dad-97fb-e86535e6b3b9" ownerguid="3f6dc9af-0c50-44d5-99f0-4aa67c668186"> -<ExampleWords> -<AUni ws="en">oil rig, oil platform, refinery</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What tools and machines are used for working with oil and gas?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7678a0e6-fc24-4695-b9d7-196c8f74c3c1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ternu; terno</AUni> -<AUni ws="qvm-x-acl">ternu; ternu; terno</AUni> -<AUni ws="qvm-x-akh">ternu; terno</AUni> -<AUni ws="qvm-x-akl">ternu; ternu; terno</AUni> -<AUni ws="qvm-x-ame">ternu; terno</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+terno</AUni> -<AUni ws="qvm-x-acl">+terno</AUni> -<AUni ws="qvm-x-akh">+terno</AUni> -<AUni ws="qvm-x-akl">+terno</AUni> -<AUni ws="qvm-x-ame">+terno</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.874" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fbe2aafa-7c23-4fcc-9cc8-72f6cf7fdade" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+terno</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eac35f04-27d5-47d9-b6bf-db6cd435875a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="11f00922-626d-4e6c-a5d7-8747597b34c5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +terno 
\entryTyp root 
\gENG suit 
\gSPN terno 
\e +terno 
\c N0 
\ach ternu / ~_# 
\ach terno / _# 
\akh ternu / ~_# 
\akh terno / _# 
\acl ternu / ~_# 
\acl ternu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl terno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ternu / ~_# 
\akl ternu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl terno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ternu / ~_# 
\ame terno / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="76795fdd-55dc-4fb7-a9ad-d1423c31df50" ownerguid="0296465a-25de-4af6-a122-376956b4b452"> -<Abbreviation> -<AUni ws="en">9.2.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for pronouns used in questions.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Question words</AUni> -</Name> -<Questions> -<objsur guid="571e9faf-d17e-4052-b9a9-08d3301a43ba" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="767aa167-af3d-4e11-a68b-ec31f9d2ef1a" ownerguid="c9aee4df-ac3e-4159-bd1a-060db1a5f070"> -<Abbreviation> -<AUni ws="en">3.5.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.174" /> -<DateModified val="2022-9-23 16:55:8.174" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a sign or symbol--a picture or shape that has a meaning.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Sign, symbol</AUni> -</Name> -<Questions> -<objsur guid="08e9aedc-1d7b-4a19-b90a-90444e06200a" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="96a1ad48-1a70-425b-bd20-59294902581f" t="o" /> -<objsur guid="ef876104-eb3e-420d-9c7b-124538a7b2a6" t="o" /> -<objsur guid="339f54a5-125b-435f-bf37-cfc2a2bd26d3" t="o" /> -<objsur guid="cbc0a8f5-9cba-41d2-a7e5-565fbf09c8c4" t="o" /> -<objsur guid="b4fe4698-54a2-4bcd-9490-e07ee1ee97af" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="767df14c-79b1-423a-a712-74d690807532" ownerguid="c129027b-a0b4-4fb6-b324-ec6469dfe073"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">angel</AUni> -<AUni ws="es">ángel</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d0d53a9c-d226-4bdd-8295-f6a8c2852f35" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="76830943-8a0d-4ab5-b445-3ac2a75733ec" ownerguid="c1c1dcb4-8fe5-43ac-9b91-b2b2bc33de5b"> -<ExampleWords> -<AUni ws="en">threatening, menacing, intimidating, bullying</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a person who threatens?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7684c6b8-53d5-4553-a4f3-4c66dc531ddb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ñi:ñu</AUni> -<AUni ws="qvm-x-acl">ñi:ñu; ñi:ñu; ñi:ño</AUni> -<AUni ws="qvm-x-akh">ñi:ñu</AUni> -<AUni ws="qvm-x-akl">ñi:ñu; ñi:ñu; ñi:ño</AUni> -<AUni ws="qvm-x-ame">ñi:ñu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+niño.2</AUni> -<AUni ws="qvm-x-acl">+niño.2</AUni> -<AUni ws="qvm-x-akh">+niño.2</AUni> -<AUni ws="qvm-x-akl">+niño.2</AUni> -<AUni ws="qvm-x-ame">+niño.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.558" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="37268ad8-4ffd-4bc9-b102-c7f110348382" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+niño.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4863d14d-5592-4aea-9fa5-dbe86dca14ad" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3c6401e9-5a4b-45c3-b6f7-9b931fcf49d2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +niño.2 
\entryTyp root 
\gENG 
\gSPN niño 
\e +niño.2 
\c N0 
\ach ñi:ñu 
\akh ñi:ñu 
\acl ñi:ñu / _# 
\acl ñi:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ñi:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ñi:ñu / _# 
\akl ñi:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ñi:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ñi:ñu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="7689d542-cbfb-4134-9b4b-50bd32a8df19" ownerguid="162238c7-09b4-4c1e-b666-63e562b29298"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="768a8995-c53f-40d3-9b9e-480133295d91" ownerguid="99e47884-cd6b-42dd-9e8e-be04e8791dcb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="768aed05-dbc9-4caf-9461-76cb3720f908" ownerguid="a894d991-d5da-45a6-9c62-009133257f36"> -<Abbreviation> -<AUni ws="en">2.5.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.47" /> -<DateModified val="2022-9-23 16:55:8.47" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to pain</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>24F Pain, Suffering</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Pain</AUni> -</Name> -<Questions> -<objsur guid="90ea053a-47bd-4d31-aec3-975f9ace1dd5" t="o" /> -<objsur guid="009ba37f-1bc6-4fd8-8fda-b214ab8453f0" t="o" /> -<objsur guid="54b629c8-1bf8-4a31-b2bd-05d819507249" t="o" /> -<objsur guid="2a065fd0-780b-4781-a5cf-332303f18754" t="o" /> -<objsur guid="2ca40224-3c99-4a5b-8410-42a66c7aabd4" t="o" /> -<objsur guid="a0465cdf-a648-49dd-a2da-a7b3a858683c" t="o" /> -<objsur guid="6b1c2979-bb41-4c6a-95b5-68bbe66f6361" t="o" /> -<objsur guid="c82563cc-2d18-4fc0-bdd7-972f66831981" t="o" /> -<objsur guid="de84244f-f4ff-41d7-ad4b-6e86ff888661" t="o" /> -<objsur guid="2289b511-878b-4f22-b59c-2872f02d780b" t="o" /> -<objsur guid="2bc89d50-2978-4bde-ab95-ea36239d386d" t="o" /> -<objsur guid="e8258bde-846d-4886-8ebb-f11b014e0dfa" t="o" /> -<objsur guid="f89c8934-756c-4662-aa93-eda53605ce79" t="o" /> -<objsur guid="85f3cb23-6702-4bb0-bbaf-39b66418f4df" t="o" /> -<objsur guid="25e619ec-517f-4150-9022-3a7282598f0c" t="o" /> -<objsur guid="d9e1aab9-e791-4298-939c-64470f630fdd" t="o" /> -<objsur guid="897427a8-5c5a-4dbf-8415-846f76e18de4" t="o" /> -<objsur guid="8eea5666-c8b9-4ff5-98d6-fd45eef22e97" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="9a7604b4-d42f-44b7-9aef-47847dc93f0b" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="768d1e59-9e73-4f75-8328-a092fb504575" ownerguid="b02a4a9c-cfca-4e01-8be5-5ccfbf32400b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="76968fc2-60c0-4cb0-9c2a-e429b06841f0" ownerguid="5a4a8ae5-a209-4946-8fa1-3c3bd5083e0d"> -<ExampleWords> -<AUni ws="en">perform a religious ceremony, hold communion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to performing a religious ceremony?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="769695e1-45a2-4bb0-ac6f-82d8f1b87d4a" ownerguid="73726931-ef12-4d39-a76e-7742f4b7c9cd"> -<ExampleWords> -<AUni ws="en">depression, recession, inflation, crash, slump, bear market</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe a bad economy?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="769ba582-f77b-4d55-a3b2-3c58b59b20a5" ownerguid="965b0558-10fc-4cf4-8832-f82614fb4098"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">running</AUni> -<AUni ws="es">corrida</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fc9854cf-68e7-4f0e-888f-61320046613a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="769c80cb-c513-49ab-b99f-714f9de5c853" ownerguid="07046047-adde-4d31-bf89-1ceec92bb562"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Num 10.7 Runacuna juntacänalanpag captenga cornëtata juc tönuta tucatsinqui.</Run> -</AStr> -</Example> -</rt> -<rt class="MoInflAffixSlot" guid="769c8d34-7ae5-450b-9e9b-f62d75e5f18a" ownerguid="85ffb381-0567-4202-8640-53cbaec77e45"> -<Name> -<AUni ws="en">possession</AUni> -</Name> -<Optional val="False" /> -</rt> -<rt class="CmSemanticDomain" guid="76a06e45-99f7-446f-a2e8-e23edf6064bd" ownerguid="83adeb9d-c0be-4073-894d-913014420280"> -<Abbreviation> -<AUni ws="en">8.3.7.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to something decaying--when a living thing dies and becomes bad, or when a part of a living thing becomes bad.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>23M Rot, Decay</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Decay</AUni> -</Name> -<Questions> -<objsur guid="1c29f792-622c-480b-b811-8a10f4106255" t="o" /> -<objsur guid="65895c5f-c1b2-4056-9299-4fb7dbf6d40b" t="o" /> -<objsur guid="9b4eccd2-0f16-4909-bdc3-da28a0bce3b4" t="o" /> -<objsur guid="f1e9951b-0d19-42dd-81dd-7220b6e3e400" t="o" /> -<objsur guid="970c92e8-de41-40ab-87c3-9d3ca0d9dc56" t="o" /> -<objsur guid="ae56d064-03e0-4834-9c6a-0107173b118e" t="o" /> -<objsur guid="cf6772c9-ca14-4421-8bb4-fa49d0f5a50c" t="o" /> -<objsur guid="858bff0d-463e-46d3-8a78-c3f69a2a4460" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="94f50cb8-9a59-42cc-9891-247cc3de7428" t="o" /> -<objsur guid="de7b8df5-83a7-4456-a63a-1075ff17dbaf" t="o" /> -<objsur guid="03352940-c220-4a32-a9a5-fc08d1d0dc71" t="o" /> -<objsur guid="98f9ceff-e8a2-4e24-abc4-561b80bb5889" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="76a4a286-1c8a-4c4a-9eaf-dca040be574a" ownerguid="65bb0844-9a71-4eec-9b86-bf4b4b508a28"> -<Abbreviation> -<AUni ws="en">4.4.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing someone who is brave--not afraid to do something dangerous.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25N Courage, Boldness</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Brave</AUni> -</Name> -<Questions> -<objsur guid="79f64ac2-80ec-4ddc-8864-2b1e60440af8" t="o" /> -<objsur guid="da3dd0be-24b7-437b-835b-26c3e93ceae1" t="o" /> -<objsur guid="75d8c7d5-e2ae-423e-bfb9-a861172ed745" t="o" /> -<objsur guid="f4e1d6a8-00dc-42c9-8886-bf5ac736547e" t="o" /> -<objsur guid="da492d5b-a48a-4f5e-a7e4-fbaa17b825a6" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="76a4a678-80b0-40c1-9856-5b2b6f501067" ownerguid="a3fe0ca2-64fe-44db-ac3f-14513385bc25"> -<ExampleWords> -<AUni ws="en">early night, late night, stay up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to going to bed early or late?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="76a5d03b-1eba-4618-a2d4-34e1c1766c06" ownerguid="d684b91c-95cc-4ace-a36a-574b5d809998"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7a463e0d-9c0f-48c8-b9cb-0d8e6ee427fe" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="76ad9048-8462-46f3-9de2-61b1a32bc35f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alau</AUni> -<AUni ws="qvm-x-acl">alau</AUni> -<AUni ws="qvm-x-akh">alaw</AUni> -<AUni ws="qvm-x-akl">alaw</AUni> -<AUni ws="qvm-x-ame">alaw</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*allaw</AUni> -<AUni ws="qvm-x-acl">*allaw</AUni> -<AUni ws="qvm-x-akh">*allaw</AUni> -<AUni ws="qvm-x-akl">*allaw</AUni> -<AUni ws="qvm-x-ame">*allaw</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.739" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6a1bd23e-c5da-46df-a77c-8ff31f7f28ff" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*allaw</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d5f5faf3-d944-4b05-b49c-42fe18154f4b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2f97652f-c3ff-44d8-8e3a-9d241c75352c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *allaw 
\entryTyp root 
\gENG 
\gSPN pobrecito 
\e *allaw 
\c NOSUFF 
\ach alau 
\akh alaw 
\acl alau 
\akl alaw 
\ame alaw</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="76ad9fa6-4fde-4c80-a977-15677369edc2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">dedica</AUni> -<AUni ws="qvm-x-acl">dedica</AUni> -<AUni ws="qvm-x-akh">dedica</AUni> -<AUni ws="qvm-x-akl">dedica</AUni> -<AUni ws="qvm-x-ame">dedica</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+dedicar</AUni> -<AUni ws="qvm-x-acl">+dedicar</AUni> -<AUni ws="qvm-x-akh">+dedicar</AUni> -<AUni ws="qvm-x-akl">+dedicar</AUni> -<AUni ws="qvm-x-ame">+dedicar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.374" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="81b1599e-eb5f-4de2-8306-b9265be29601" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+dedicar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3ea3712c-71d5-4673-bf50-f41b40e4f5a7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4fed6666-26f3-4d86-b389-92f4272c078a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +dedicar 
\entryTyp root 
\gENG 
\gSPN 
\e +dedicar 
\c V2 
\ach dedica 
\akh dedica 
\acl dedica 
\akl dedica 
\ame dedica</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="76b54d1b-cc27-4414-a41b-3d64d33ac704" ownerguid="5caafec8-c8f6-4d4f-9e6e-eb75154e76e2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="76b9fdb1-ec8b-4658-915c-e9b367cb202c" ownerguid="401bbbe4-a33a-4a1e-b26a-18a756e002c4"> -<ExampleWords> -<AUni ws="en">cower</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) How do people show that they feel cowardly?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="76ba3b3b-20dd-48fe-bc8c-66aaa42464a9" ownerguid="763fa2e0-c119-4f50-a307-81ed8c3497ed"> -<ExampleWords> -<AUni ws="en">oppose, be opposed to, be against, anti-</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to opposing something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="76ba92de-1ea2-48de-9906-f79f4c2c07ca" ownerguid="a1959b00-9702-4b45-ac46-93f18d3bc5e6"> -<ExampleWords> -<AUni ws="en">breathe in, take a breath, inhale, gasp, draw breath, whiff</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to breathing in?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="76bad901-686a-4235-a0d4-9018f3711cf6" ownerguid="590aabbc-fe32-4a59-a39e-7f44825f9687"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="76bbfd8b-a4b7-4f4d-be84-2717ace035cb" ownerguid="995751ef-d71b-429c-a4ee-032f5b309bd7"> -<ExampleWords> -<AUni ws="en">one of us, one of our own, one of ours, insider, friend</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a person who belongs to your group?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="76c05d9e-fb20-487a-9ed1-424668d25f8b" ownerguid="6430b89c-7077-418a-a558-51f0e3f2c1a6"> -<ExampleWords> -<AUni ws="en">pack, backpack, stretcher, carrying pole</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to something used to carry things?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="76c46ed0-01c6-4cdf-8388-ba6f4abfafab" ownerguid="f8d2bc29-5451-4278-9d5d-177959dd3b13"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">harvest.tuber</AUni> -<AUni ws="es">cosechar.tubérculo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b673518d-b462-4ce3-968b-62db6474d1c9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="76cad815-7747-4b07-a123-967e9f4d842b" ownerguid="440608df-3c98-4dc8-9fd3-fad08afe7aef"> -<ExampleWords> -<AUni ws="en">limit, impose a limit, restrict</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to limiting the movement of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="76cb6f51-fcce-4ef3-81ad-9a3e8b633405" ownerguid="3ae6cbf1-ef25-48a4-a022-50b77bf5b510"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mayor</AUni> -<AUni ws="es">alcalde</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d2958f56-27b4-4a35-b7ce-3d3c356d32e7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="76cc9009-1efe-415a-8010-8ca88357a7ea" ownerguid="2643f75d-e7dc-4b5c-ba8e-e47d48d89d42"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">city</AUni> -<AUni ws="es">ciudad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6065eaf9-aed1-4027-8ada-20f7685b82ff" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="76d2d00b-4d92-4188-ad32-7be531f2d0bd" ownerguid="b9c752a4-66be-493c-8955-cfa5324a54c1"> -<ExampleWords> -<AUni ws="en">practice your religion, serve God</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to practicing religion?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="76d2e9f6-c566-46aa-9316-36a01093aec1" ownerguid="b64933e3-fd57-4090-848e-2af0cc6d8e88"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">garga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">garga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qarqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qarqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qarqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6f41aa37-069b-4d0e-9ac0-b37442f815c1" t="r" /> -</Morph> -<Msa> -<objsur guid="46d33e77-a6a6-47a9-9e01-e3a1573177a2" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="76d47d55-31c5-4947-a177-58ac09f463dd" ownerguid="4a64d301-3123-4ede-a86b-e875df072ab3"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="76d4c718-a84d-4b7b-9767-1c350c3bc124" ownerguid="780fbf89-f2ba-404c-b288-f6ca637bbc90"> -<Abbreviation> -<AUni ws="en">8.4.7.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.660" /> -<DateModified val="2022-9-23 16:55:8.660" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to an interval between two events.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Interval</AUni> -</Name> -<OcmCodes> -<Uni>209 Proxemics</Uni> -</OcmCodes> -<Questions> -<objsur guid="da687ea7-0be3-4f7b-98c8-5734ebdebe8a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="76d5872c-60af-4782-b6dc-f7f90cd9b805" ownerguid="8354e445-3a62-4414-ae9b-bd55bd281728"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9b12d06d-80fd-41f0-b14e-430205a929a1" t="o" /> -</Examples> -<Gloss> -<AUni ws="es">derecho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bea320d9-3f9b-4eab-b783-235c71076d0a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="76d8ab5b-82a1-42d5-b954-e4e25bf4d357" ownerguid="0ca0a9a5-fa82-4472-a3e3-6034fc2c7fc9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ima</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ima</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ima</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ima</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ima</Run> -</AStr> -</Form> -<Morph> -<objsur guid="c9dc3dbf-09af-4ad5-b2f6-dd89c0e8202d" t="r" /> -</Morph> -<Msa> -<objsur guid="a6eba134-b805-46fa-bc18-a9728f8d1af0" t="r" /> -</Msa> -<Sense> -<objsur guid="2a97d1fa-f9e4-458d-9a3b-955d7751f46b" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="76daa0a3-edfe-4963-8c18-0920ab382121" ownerguid="d946a8c7-fb2b-4d8f-a5ab-a62dd1b161f8"> -<Form> -<AUni ws="qvm-x-ach">maylanta</AUni> -<AUni ws="qvm-x-acl">maylanta</AUni> -<AUni ws="qvm-x-akh">maylanta</AUni> -<AUni ws="qvm-x-akl">maylanta</AUni> -<AUni ws="qvm-x-ame">maylanta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="76dad671-7e7b-4678-b86d-3692f1ff56fd" ownerguid="542ae4c7-7db5-4c7f-a344-60e247a57c75"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="76dce78c-855d-41e5-9867-8fdccae9465f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gosu</AUni> -<AUni ws="qvm-x-acl">gosu; goso</AUni> -<AUni ws="qvm-x-akh">qosu</AUni> -<AUni ws="qvm-x-akl">qosu; qoso</AUni> -<AUni ws="qvm-x-ame">qusu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qusu.v</AUni> -<AUni ws="qvm-x-acl">*qusu.v</AUni> -<AUni ws="qvm-x-akh">*qusu.v</AUni> -<AUni ws="qvm-x-akl">*qusu.v</AUni> -<AUni ws="qvm-x-ame">*qusu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.900" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f521600e-5987-45cb-9077-0341386e80f3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qusu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1ee8013e-c0a4-4310-bd9c-4e70f252b061" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b02e1181-dc50-49fa-b8bd-764751a94f13" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qusu.v 
\entryTyp root 
\gENG cough 
\gSPN tozar 
\e *qusu.v 
\c V1 
\ach gosu 
\akh qosu 
\acl gosu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl goso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qosu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qoso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qusu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="76ddc48b-f57d-4421-b137-0f58d88e49be" ownerguid="ab1c7931-4729-4d37-8b47-b95438f34f58"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="76de6e68-dc9a-4cd6-9641-2eba2d9a92c3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">walash</AUni> -<AUni ws="qvm-x-acl">walash</AUni> -<AUni ws="qvm-x-akh">walash</AUni> -<AUni ws="qvm-x-akl">walash</AUni> -<AUni ws="qvm-x-ame">walash</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wallash</AUni> -<AUni ws="qvm-x-acl">*wallash</AUni> -<AUni ws="qvm-x-akh">*wallash</AUni> -<AUni ws="qvm-x-akl">*wallash</AUni> -<AUni ws="qvm-x-ame">*wallash</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.455" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4f5f9632-4ff9-49ef-a2ff-b55635f23647" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wallash</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ad9dc86b-32a6-4f79-8f22-dc0e8cdf6325" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f1adaaa1-8062-442b-8348-0ae6ce19207a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wallash 
\entryTyp root 
\gENG potato 
\gSPN papa 
\e *wallash 
\c N0 
\mp +FinalC 
\ach walash 
\akh walash 
\acl walash 
\akl walash 
\ame walash</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="76dff45c-686c-4e5c-b193-db43a63e76fd" ownerguid="1ae59286-36b6-40de-b2e2-8127030d6ebf"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="76e1a0be-4631-4515-8f6e-b74bf40859b9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pirwa</AUni> -<AUni ws="qvm-x-acl">pirwa</AUni> -<AUni ws="qvm-x-akh">pirwa</AUni> -<AUni ws="qvm-x-akl">pirwa</AUni> -<AUni ws="qvm-x-ame">pirwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pirwa.n</AUni> -<AUni ws="qvm-x-acl">*pirwa.n</AUni> -<AUni ws="qvm-x-akh">*pirwa.n</AUni> -<AUni ws="qvm-x-akl">*pirwa.n</AUni> -<AUni ws="qvm-x-ame">*pirwa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.850" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a768ef98-7a32-4e3d-a1c7-2846112fae64" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pirwa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d278f691-d823-4954-b508-62eaae8b2795" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1adbdf83-f054-4c46-8d46-67686400f92a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pirwa.n 
\entryTyp root 
\gENG storage 
\gSPN almacen 
\e *pirwa.n 
\c N0 
\ach pirwa 
\akh pirwa 
\acl pirwa 
\akl pirwa 
\ame pirwa 
\mcc *pirwa.n / ~_ 3P #</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="76e2435f-4370-4a2a-8c4f-a37a297c6bf3" ownerguid="2a14b38c-b241-481f-98c5-dd5c28f32e6b"> -<Form> -<AUni ws="qvm-x-ach">tsacra</AUni> -<AUni ws="qvm-x-acl">tsacra</AUni> -<AUni ws="qvm-x-akh">tsakra</AUni> -<AUni ws="qvm-x-akl">tsakra</AUni> -<AUni ws="qvm-x-ame">tsakra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="76e2d5d6-91af-420a-bd6b-7e6896cc8b4c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wachqui:lla</AUni> -<AUni ws="qvm-x-acl">wachqui:lla</AUni> -<AUni ws="qvm-x-akh">wachki:lla</AUni> -<AUni ws="qvm-x-akl">wachki:lla</AUni> -<AUni ws="qvm-x-ame">wachki:lla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*watrkilla</AUni> -<AUni ws="qvm-x-acl">*watrkilla</AUni> -<AUni ws="qvm-x-akh">*watrkilla</AUni> -<AUni ws="qvm-x-akl">*watrkilla</AUni> -<AUni ws="qvm-x-ame">*watrkilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.586" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dbea4d7b-79e1-4490-9f0e-4399341d39c1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*watrkilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ca1d87b1-26e4-4706-a5d9-3cd9de0fb3c4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5ffa36ae-5e33-4831-8b7f-9ccc9d4bbe11" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *watrkilla 
\entryTyp root 
\gENG 
\gSPN 
\e *watrkilla 
\c N0 
\ach wachqui:lla 
\akh wachki:lla 
\acl wachqui:lla 
\akl wachki:lla 
\ame wachki:lla 
\i ISA 3.20 y uma watacunancunata, chaquinman watacuna brasilëtancunata y tsegla watacunan wachquïllancunata, perfümincunata y suertipag tsararashgan wayruruncunata,</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="76e87d03-f13a-45ad-b32c-e036d02f8129" ownerguid="38473463-4b92-4681-8fd0-0aca0342e88a"> -<ExampleWords> -<AUni ws="en">sponge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to sponges? (phylum Porifera)?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="76e98d9a-b836-4932-a3aa-52d887d26b15" ownerguid="0add0775-0ed0-46be-ba4a-76310e63a036"> -<ExampleWords> -<AUni ws="en">leaning, at an angle, out of plumb, angled, on a slant, aslant, slanted, inclined, oblique, tilted, crooked, list, askew, out of kilter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something in a leaning position?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="76ed2c72-4dae-4af3-b051-f48eeeaf82d4" ownerguid="eeb38cbb-7102-424d-8e2d-7acabf83f477"> -<Form> -<AUni ws="qvm-x-ach">wansa</AUni> -<AUni ws="qvm-x-acl">wansa</AUni> -<AUni ws="qvm-x-akh">wansa</AUni> -<AUni ws="qvm-x-akl">wansa</AUni> -<AUni ws="qvm-x-ame">wansa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="76ee0bb6-e7f6-4ec3-bd37-c2e9cdc849e5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">almacén</AUni> -<AUni ws="qvm-x-acl">almacén</AUni> -<AUni ws="qvm-x-akh">almacén</AUni> -<AUni ws="qvm-x-akl">almacén</AUni> -<AUni ws="qvm-x-ame">almacén</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+almacén.1</AUni> -<AUni ws="qvm-x-acl">+almacén.1</AUni> -<AUni ws="qvm-x-akh">+almacén.1</AUni> -<AUni ws="qvm-x-akl">+almacén.1</AUni> -<AUni ws="qvm-x-ame">+almacén.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.709" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="65c0c074-35e6-48f0-ae8e-35fde9b46af3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+almacén.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="887e2bc6-6d83-4632-b79d-6cb515b9c0e7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6fb8d865-3c68-4b4c-8e19-3e04fc13cfef" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +almacén.1 
\entryTyp root 
\gENG 
\gSPN 
\e +almacén.1 
\c N0 
\mp +FinalC 
\ach almacén / _# 
\akh almacén / _# 
\acl almacén / _# 
\akl almacén / _# 
\ame almacén / _# 
\i EZR 7.20 Diosniquipa templunpag imapis pishiptenga jorgunqui churacunä almacenpita.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="76f03af6-642d-4c8b-a3f3-81b2561852a4" ownerguid="a7522f0d-f5fe-4f37-8daf-3ec0db391cb1"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -</rt> -<rt class="MoStemMsa" guid="76f04951-504a-4cd7-9298-0091155eff1a" ownerguid="2dab7f46-e203-4d46-b574-ccf8bd395187"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="76f420b2-8e51-4caf-8d10-c10f22891afc" ownerguid="dbd3e164-3f70-4395-9728-1c24c8900da6"> -<ExampleWords> -<AUni ws="en">mixing bowl</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What containers are used to mix food?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="76f481f4-f38e-4f42-a826-9c2ac2e69e82" ownerguid="59808e11-c83e-45ef-987a-6e7fcacf2733"> -<Form> -<AUni ws="qvm-x-ach">legpi</AUni> -<AUni ws="qvm-x-acl">legpi; legpi; legpe</AUni> -<AUni ws="qvm-x-akh">leqpi</AUni> -<AUni ws="qvm-x-akl">leqpi; leqpi; leqpe</AUni> -<AUni ws="qvm-x-ame">liqpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="76f7b249-c867-4050-8f81-04e818d1e76c" ownerguid="80415fac-b3d8-4e3c-bdb8-dc92f3c6dad8"> -<ExampleWords> -<AUni ws="en">boastful, vain, proud, big-headed, be all talk, be all bluster</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a person who boasts?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="76f935a5-a22d-4380-ab55-8507b7d15dc7" ownerguid="08dc3991-7d1d-4666-af5c-df84b79de3ec"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="76fd3868-3f06-4f3f-8cfa-0a3fef55b67f" ownerguid="2ccf76d1-7700-4a6b-b4b7-2e6492c51791"> -<Form> -<AUni ws="qvm-x-ach">wäji</AUni> -<AUni ws="qvm-x-acl">wäji; wäji; wäje</AUni> -<AUni ws="qvm-x-akh">wäji</AUni> -<AUni ws="qvm-x-akl">wäji; wäji; wäje</AUni> -<AUni ws="qvm-x-ame">wähi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="770a116e-6021-41a8-a523-fa86a0ce3b65"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rasun</AUni> -<AUni ws="qvm-x-acl">rasun</AUni> -<AUni ws="qvm-x-akh">rasun</AUni> -<AUni ws="qvm-x-akl">rasun</AUni> -<AUni ws="qvm-x-ame">rasun</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+razón</AUni> -<AUni ws="qvm-x-acl">+razón</AUni> -<AUni ws="qvm-x-akh">+razón</AUni> -<AUni ws="qvm-x-akl">+razón</AUni> -<AUni ws="qvm-x-ame">+razón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.297" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a2ff9378-d4d0-413c-acdb-0b059cfd6537" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+razón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="07ba9450-4e79-46b1-9945-c7fa09bbe2de" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bc2de619-fc27-4fc2-a3b6-965136dd86fb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +razón 
\entryTyp root 
\gENG true 
\gSPN de.veras 
\e +razón 
\c N0 
\mp +assimilated 
\ach rasun 
\akh rasun 
\acl rasun 
\akl rasun 
\ame rasun 
\mp +FinalC 
\mcc +razón / ~_ GEN 
\mcc +razón / ~_ VRBL INF.noI ADV1 
\mcc +razón / ~_ VRBL1 INF ADV1 
\mcc +razón / ~_ VRBL1 ADV2 
\mcc +razón / ~_ VRBL1 INF GEN</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="770e39c9-22ff-475e-a973-f681b56228a9" ownerguid="7214fcfd-0c0d-41fb-939e-8ae18626a61f"> -<Form> -<AUni ws="qvm-x-ach">bäja</AUni> -<AUni ws="qvm-x-acl">bäja</AUni> -<AUni ws="qvm-x-akh">bäja</AUni> -<AUni ws="qvm-x-akl">bäja</AUni> -<AUni ws="qvm-x-ame">bäja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="7717bb99-0248-464f-aa46-42448c769da1" ownerguid="1bca5864-77c6-4502-9f76-b8b87f931c27"> -<Form> -<AUni ws="qvm-x-ach">räpis</AUni> -<AUni ws="qvm-x-acl">räpis</AUni> -<AUni ws="qvm-x-akh">räpis</AUni> -<AUni ws="qvm-x-akl">räpis</AUni> -<AUni ws="qvm-x-ame">räpis</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="7718d8be-f964-410f-a50e-63f5dd4e5114" ownerguid="3a4ced6d-61c4-41cf-ac8a-02ba84fa9c64"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="aa068512-8259-461b-90ee-2d09d74f3946" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="77193f1c-38d9-409c-bb3e-5bd2c8d18060" ownerguid="3b913de5-6dfe-410d-ab77-8d0cf51b5314"> -<Form> -<AUni ws="qvm-x-ach">gaya</AUni> -<AUni ws="qvm-x-acl">gaya</AUni> -<AUni ws="qvm-x-akh">qaya</AUni> -<AUni ws="qvm-x-akl">qaya</AUni> -<AUni ws="qvm-x-ame">qaya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="771a354d-2109-4dea-b9d2-e36371316190" ownerguid="8242fc85-a703-4efa-a78a-0556a84e811e"> -<ExampleWords> -<AUni ws="en">swallow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to swallowing?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="771e3882-f672-4e67-8580-edd82d7e5090" ownerguid="8e11dd10-459b-4fb3-b876-7d80ec5f8a4d"> -<Abbreviation> -<AUni ws="en">4.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.225" /> -<DateModified val="2022-9-23 16:55:8.225" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to doing good to someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88I Kindness, Harshness; 35 Help, Care For</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Do good to</AUni> -</Name> -<Questions> -<objsur guid="8bb9c7ff-b817-48e3-8b82-cd60968419c3" t="o" /> -<objsur guid="4462464b-8800-4a30-b186-9c311be0c547" t="o" /> -<objsur guid="c13a66e4-b7cf-449b-8917-750798824be4" t="o" /> -<objsur guid="40d69d3d-b0b0-40e5-bbbf-010b7b9d202a" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="ec79e90e-ecd3-497f-bc14-ac64181f53d7" t="o" /> -<objsur guid="87d344ac-94cc-49d6-9878-ebc86a933033" t="o" /> -<objsur guid="50dfffe4-dfe8-445f-bdde-4cc8d83ebd6b" t="o" /> -<objsur guid="e6cf2c28-7630-41d7-835d-bd171ab67378" t="o" /> -<objsur guid="b5b36c31-c56d-44b9-933c-fe0e62d80c25" t="o" /> -<objsur guid="fe66d433-5135-498e-a29d-b42bf0317252" t="o" /> -<objsur guid="9060339e-d697-4c35-bc83-ced6bebfee63" t="o" /> -<objsur guid="b0e5042d-1ade-4fb1-a6fd-9a165f5c4763" t="o" /> -<objsur guid="80b48f92-0a83-4eeb-bfe0-6980285feb65" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="771f6367-f931-4cc1-90b6-35d816afe441" ownerguid="b3fb9960-8f42-43bc-9595-dfb3e04f5bfd"> -<ExampleWords> -<AUni ws="en">exchange, switch (places)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to putting each of two things in the place of the other?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="77264560-00ac-4c56-bab4-356ce6eafbf8" ownerguid="55d7b154-9174-454e-845c-9b732d791907"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bank</AUni> -<AUni ws="es">banco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="798d67f6-466c-4021-87a8-f51d2e3947cd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7726e61f-5f6b-4723-ae0f-c4abd0e0e873" ownerguid="832fe228-73ce-4344-938c-c6d29153c348"> -<Form> -<AUni ws="qvm-x-ach">maray</AUni> -<AUni ws="qvm-x-acl">maray</AUni> -<AUni ws="qvm-x-akh">maray</AUni> -<AUni ws="qvm-x-akl">maray</AUni> -<AUni ws="qvm-x-ame">maray</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7728b34e-8a2d-4a1b-8e2a-4cc329a33f76" ownerguid="fc193988-26ca-49e9-849a-b12456d98792"> -<ExampleWords> -<AUni ws="en">drive someone crazy, drive someone nuts, drive someone mad, drive someone round the bend</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to causing someone to feel or act crazy?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="772a9c40-4053-4381-9800-3eceba9a83d1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">walca</AUni> -<AUni ws="qvm-x-acl">walca</AUni> -<AUni ws="qvm-x-akh">walka</AUni> -<AUni ws="qvm-x-akl">walka</AUni> -<AUni ws="qvm-x-ame">walka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wallka</AUni> -<AUni ws="qvm-x-acl">*wallka</AUni> -<AUni ws="qvm-x-akh">*wallka</AUni> -<AUni ws="qvm-x-akl">*wallka</AUni> -<AUni ws="qvm-x-ame">*wallka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.455" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a886ddc2-2edb-4155-961d-883101703c39" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wallka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="52b1d733-b40a-4073-b3e8-0d91e08d9eb3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ff4b9148-4b70-4875-8921-a45834304c9b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wallka 
\entryTyp root 
\gENG little 
\gSPN poco 
\e *wallka 
\c N0 
\ach walca 
\akh walka 
\acl walca 
\akl walka 
\ame walka</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="772aee86-1630-41a1-84f7-ac29925b2b57" ownerguid="01441207-4935-49a5-a192-16d949f5606c"> -<ExampleWords> -<AUni ws="en">root, yell, cheer, shout encouragement, support their team, boo the referee</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(22) What do fans do?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="772bc31f-26f9-47cc-9edd-467ed3d9c1f2" ownerguid="2594fe01-4d20-4a20-b093-2df70bced18f"> -<ExampleWords> -<AUni ws="en">stretch, draw out, enlarge, extend</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to stretching something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="772cac7b-1b94-4571-9ef5-4eb797b749ea" ownerguid="96956f25-5845-44f9-bf3f-702520108a85"> -<Form> -<AUni ws="qvm-x-ach">enëru</AUni> -<AUni ws="qvm-x-acl">enëru; enëru; enëro</AUni> -<AUni ws="qvm-x-akh">enëru</AUni> -<AUni ws="qvm-x-akl">enëru; enëru; enëro</AUni> -<AUni ws="qvm-x-ame">enëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="772d61df-7355-48fc-8b7b-e4d95143a2f1" ownerguid="d1292db9-72eb-4227-9b8e-4d2473625e80"> -<Form> -<AUni ws="qvm-x-ach">wasa</AUni> -<AUni ws="qvm-x-acl">wasa</AUni> -<AUni ws="qvm-x-akh">wasa</AUni> -<AUni ws="qvm-x-akl">wasa</AUni> -<AUni ws="qvm-x-ame">wasa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="77301d7b-fb8f-47cf-90c8-2fa5e6d1a9e5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shumshu</AUni> -<AUni ws="qvm-x-acl">shumshu; shumsho</AUni> -<AUni ws="qvm-x-akh">shumshu</AUni> -<AUni ws="qvm-x-akl">shumshu; shumsho</AUni> -<AUni ws="qvm-x-ame">shumshu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shumshu.v</AUni> -<AUni ws="qvm-x-acl">*shumshu.v</AUni> -<AUni ws="qvm-x-akh">*shumshu.v</AUni> -<AUni ws="qvm-x-akl">*shumshu.v</AUni> -<AUni ws="qvm-x-ame">*shumshu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.632" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ff00835f-419c-4df8-999d-5d2df2727339" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shumshu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8b983418-76fe-4417-92cb-da43552bcf05" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4d122530-6468-468f-8946-263801672956" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shumshu.v 
\entryTyp root 
\gENG 
\gSPN decaido 
\e *shumshu.v 
\c V1 
\ach shumshu 
\akh shumshu 
\acl shumshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shumsho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shumshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shumsho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shumshu 
\i PRO 10.26 Quiruta vinagri shimpashgannog 
\f + 10.26 Waquin runacunaga 
\it shumshushgannog
\it* nipäcun.
\f* y nawita goshtay raurätsishgannogmi guella runapis cachagninpag caycan. 
\i LEV 26.16 Tsaymi gamcunaman cachamushag fiebrita, nawi nanayta, aywapacayta y fiyu gueshyata wanutsishunayquipag.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="7737524a-ca79-4d1a-a41f-b0e8c1a52d43" ownerguid="d37e95fa-2e8b-4178-b490-235c0ab4bcab"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">flower</AUni> -<AUni ws="es">flor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c198c475-80b3-4f59-977e-70a9806de385" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7738266e-4417-4c2c-a50e-34aa0b63a9fd" ownerguid="a2e9f6ab-ef2e-40b3-9014-cfbfb89e0590"> -<Form> -<AUni ws="qvm-x-ach">tampi</AUni> -<AUni ws="qvm-x-acl">tampi; tampe</AUni> -<AUni ws="qvm-x-akh">tampi</AUni> -<AUni ws="qvm-x-akl">tampi; tampe</AUni> -<AUni ws="qvm-x-ame">tampi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="773a282a-9633-4bf1-95ca-58ee82d89b8d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">arrienda</AUni> -<AUni ws="qvm-x-acl">arrienda</AUni> -<AUni ws="qvm-x-akh">arrienda</AUni> -<AUni ws="qvm-x-akl">arrienda</AUni> -<AUni ws="qvm-x-ame">arrienda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+arrendar.2</AUni> -<AUni ws="qvm-x-acl">+arrendar.2</AUni> -<AUni ws="qvm-x-akh">+arrendar.2</AUni> -<AUni ws="qvm-x-akl">+arrendar.2</AUni> -<AUni ws="qvm-x-ame">+arrendar.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.920" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2ad86227-3df2-4577-8923-694e7df7f669" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+arrendar.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1ba79cf7-3010-40de-b0e3-583bc1890bcc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bf73dea4-50b3-47a5-b23a-2094439a191a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +arrendar.2 
\entryTyp root 
\gENG to.rent 
\gSPN arrendar 
\e +arrendar.2 
\c V2 
\ach arrienda 
\akh arrienda 
\acl arrienda 
\akl arrienda 
\ame arrienda</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="773a6ea3-d970-4a35-a48a-99517b9736af" ownerguid="5d9a4b83-1cd2-4944-90b1-0a4c118fd1d2"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="773e0590-9933-401b-af8e-31c74f4e9de0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aselgas</AUni> -<AUni ws="qvm-x-acl">aselgas</AUni> -<AUni ws="qvm-x-akh">aselgas</AUni> -<AUni ws="qvm-x-akl">aselgas</AUni> -<AUni ws="qvm-x-ame">aselgas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+aselgas</AUni> -<AUni ws="qvm-x-acl">+aselgas</AUni> -<AUni ws="qvm-x-akh">+aselgas</AUni> -<AUni ws="qvm-x-akl">+aselgas</AUni> -<AUni ws="qvm-x-ame">+aselgas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.840" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="504dc9f6-dd1b-4b4d-ac0c-4ae75725c6e2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+aselgas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="539e7cc5-547f-4939-8298-0e7fc093a3b5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="618a6618-63eb-4cb3-a606-f6d4b5b16912" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +aselgas 
\entryTyp root 
\gENG 
\gSPN 
\e +aselgas 
\c N0 
\mp +FinalC 
\ach aselgas 
\akh aselgas 
\acl aselgas 
\akl aselgas 
\ame aselgas 
\i HOS 10.4 China aselgar chacraman juntagnogmi mana ali rurashgancunapis atsca carcaycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="773f2b54-126e-4e78-bfc0-6f9a8bf200f5" ownerguid="7cfc8b3c-ad67-4928-ae6a-74afd47ced89"> -<ExampleWords> -<AUni ws="en">complete, make up, assemble</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to making something complete?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="773f5f73-d5e8-4eaf-938b-79f4b9c12102" ownerguid="8ec729f7-3741-4b94-8527-1883f31b930d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="774000f6-dc28-4464-838c-cb6ec071d7ae" ownerguid="9ddf4735-6c76-4b73-98cf-d3fc5f808e3e"> -<Form> -<AUni ws="qvm-x-ach">mili</AUni> -<AUni ws="qvm-x-acl">mili; mile</AUni> -<AUni ws="qvm-x-akh">mili</AUni> -<AUni ws="qvm-x-akl">mili; mile</AUni> -<AUni ws="qvm-x-ame">mili</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="77417eb5-7751-4af9-b715-56437abd6feb" ownerguid="be89e0ba-4c6a-4986-ac0d-859a901b89a1"> -<ExampleWords> -<AUni ws="en">unimaginative, uncreative</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe someone who does not imagine?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="77447104-5c11-46c4-a902-8962e310fec5"> -<Analyses> -<objsur guid="981d8935-6612-4c78-b11e-7d39ad4ea75a" t="o" /> -</Analyses> -<Checksum val="375843007" /> -<Form> -<AUni ws="qvm-x-akh">tayta</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="7746a9e8-2cee-4185-b4c6-03ca01921932" ownerguid="ea273e20-5284-47f1-aa52-a570157ae264"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yqui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yqui</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yki</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1b0fe7f9-c0ed-498b-9263-f8c0d31cc569" t="r" /> -</Morph> -<Msa> -<objsur guid="2999bb54-aa09-4eed-affb-cf684bd15cf6" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="774acacd-b130-4b32-8182-4ace728a457f" ownerguid="55c59036-a1b3-4e89-ac77-1727b5f3c154"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="774cdff1-8cba-4f94-a519-c66abd3b5f49" ownerguid="7b513a02-c3ae-4243-9410-16854d911258"> -<Abbreviation> -<AUni ws="en">9.7.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.728" /> -<DateModified val="2022-9-23 16:55:8.728" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the proper names of the clans that exist within the language community. The distinction between family, clan, tribe, and nation is based on politics and emotion. Our purpose here is not to make political statements, but merely to list the names. There may be no distinction between family and clan, in which case ignore this domain and use the domain 'Family names'.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Clan names</AUni> -</Name> -<Questions> -<objsur guid="dd8bd836-9492-4dbe-9188-2a40456fd774" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="774e2882-45a1-4b81-a561-ac76b27554d3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pandere:ta</AUni> -<AUni ws="qvm-x-acl">pandere:ta</AUni> -<AUni ws="qvm-x-akh">pandere:ta</AUni> -<AUni ws="qvm-x-akl">pandere:ta</AUni> -<AUni ws="qvm-x-ame">pandere:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pandereta</AUni> -<AUni ws="qvm-x-acl">+pandereta</AUni> -<AUni ws="qvm-x-akh">+pandereta</AUni> -<AUni ws="qvm-x-akl">+pandereta</AUni> -<AUni ws="qvm-x-ame">+pandereta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.679" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="51fde5dd-4359-4d4d-b4bf-535cbca6c19f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pandereta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e1c10240-238a-4290-a8f3-160305db3782" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="82377c06-43cd-4f8b-a094-37274cd68d0f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pandereta 
\entryTyp root 
\gENG tamborine 
\gSPN pandereta 
\e +pandereta 
\c N0 
\ach pandere:ta 
\akh pandere:ta 
\acl pandere:ta 
\akl pandere:ta 
\ame pandere:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="774f00eb-1a9e-4de1-9bbc-25ae900f0551" ownerguid="2e994579-9439-4cae-a6d8-ae29194121f0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">injury</AUni> -<AUni ws="es">perjuicio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="83ac1bdb-573b-4a07-a34d-5c85092a0893" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7750177c-4d42-4891-9a1c-3bd775b00ff5" ownerguid="3f4c559f-ab4f-411f-a23b-d2396c977005"> -<ExampleWords> -<AUni ws="en">in full view of, in front of, in front of someone's eyes, before someone's eyes, in the open, exposed to view, unhidden, within view</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words indicate that something happens where people can see it?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="77509eb0-29ac-40e0-94d3-acad69aa5778"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ñuchgu</AUni> -<AUni ws="qvm-x-acl">ñuchgu; ñuchgu; ñuchgo</AUni> -<AUni ws="qvm-x-akh">ñuchqu</AUni> -<AUni ws="qvm-x-akl">ñuchqu; ñuchqu; ñuchqo</AUni> -<AUni ws="qvm-x-ame">ñuchqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñutrqu.n</AUni> -<AUni ws="qvm-x-acl">*ñutrqu.n</AUni> -<AUni ws="qvm-x-akh">*ñutrqu.n</AUni> -<AUni ws="qvm-x-akl">*ñutrqu.n</AUni> -<AUni ws="qvm-x-ame">*ñutrqu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.608" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9240530c-0764-4f02-94d5-d40937b765ac" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñutrqu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="47f5168e-2803-43b9-b5fa-9921d94ee1a6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4f0cea1a-7e41-4f85-93bf-c0be947fa01d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñutrqu.n 
\entryTyp root 
\gENG 
\gSPN molido 
\e *ñutrqu.n 
\c N0 
\ach ñuchgu 
\akh ñuchqu 
\acl ñuchgu / _# 
\acl ñuchgu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ñuchgo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ñuchqu / _# 
\akl ñuchqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ñuchqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ñuchqu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoInflAffixSlot" guid="77569715-032a-48c9-97d9-e9802fb13f2e" ownerguid="86ff66f6-0774-407a-a0dc-3eeaf873daf7"> -<Description> -<AStr ws="en"> -<Run ws="en">Required slot for transitioning from inflection to derivation.</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">transition</AUni> -</Name> -<Optional val="False" /> -</rt> -<rt class="MoStemMsa" guid="7759092f-444a-4389-90f7-382e7bcba085" ownerguid="bcbc4135-9e93-4f0a-9206-ef842cbe35c8"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="775924c4-9a2f-449b-8b5d-07dc1bdefc42" ownerguid="668e695e-18fe-4375-896b-f24519cd2b71"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">meet</AUni> -<AUni ws="es">encontrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7092330d-1a9b-4d9f-b1d4-64398fec445c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7759a851-9b64-4051-9690-59ad8cc2fe0e" ownerguid="60de6613-9d48-4e43-a554-3dea73950517"> -<Form> -<AUni ws="qvm-x-ach">bendición; bendicion</AUni> -<AUni ws="qvm-x-acl">bendición; bendicion</AUni> -<AUni ws="qvm-x-akh">bendición; bendicion</AUni> -<AUni ws="qvm-x-akl">bendición; bendicion</AUni> -<AUni ws="qvm-x-ame">bendición; bendicion</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="775b53f1-bfcf-4270-a60d-b5affc9d6a99" ownerguid="70f80041-af88-4521-9ebd-21d8f0b0d131"> -<Abbreviation> -<AUni ws="en">8.5.1.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.668" /> -<DateModified val="2022-9-23 16:55:8.668" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that something is behind you.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Behind</AUni> -</Name> -<Questions> -<objsur guid="ac43aebc-c8e8-4ff9-bbad-e1ec4439ffd0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="775c7ec2-59db-42d6-bc37-3b277910d9c2" ownerguid="45f7b003-ade3-4efc-8dee-259dcbf80a4a"> -<ExampleWords> -<AUni ws="en">request, make a request, ask for something, ask somebody to do something, appeal, make an appeal, petition, requisition, solicit, apply, consult</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to saying something in order to acquire something from the other person?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="776300df-bc16-4f81-a296-a5cb15251ccc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tinti</AUni> -<AUni ws="qvm-x-acl">tinti; tinte</AUni> -<AUni ws="qvm-x-akh">tinti</AUni> -<AUni ws="qvm-x-akl">tinti; tinte</AUni> -<AUni ws="qvm-x-ame">tinti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tinti</AUni> -<AUni ws="qvm-x-acl">*tinti</AUni> -<AUni ws="qvm-x-akh">*tinti</AUni> -<AUni ws="qvm-x-akl">*tinti</AUni> -<AUni ws="qvm-x-ame">*tinti</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.916" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ef7a7869-4267-49c6-9901-fb41306a551e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tinti</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7f7b40a3-bbc4-4687-8c2b-668375d0d311" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1159cd91-1fe5-48dd-b10f-92068fda7349" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tinti 
\entryTyp root 
\gENG 
\gSPN 
\e *tinti 
\c V1 
\mp +FinalI 
\ach tinti 
\akh tinti 
\acl tinti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tinte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tinti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tinte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tinti</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="77639b12-4bec-4824-9189-e493e7aa8720" ownerguid="02c7ba24-ba2d-4b28-adb4-f14d228e5807"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pañalon</AUni> -<AUni ws="es">pañalón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4884535c-ece5-4bb1-b74f-63c3851f6a11" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="776c53d7-66b3-4957-8bce-092344e486af" ownerguid="8adfcb0b-aaf3-46ac-adf7-04cdc7dae250"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="776de0c6-fdd7-46df-b33f-b1e4af6ee099" ownerguid="457231c8-4eb6-4460-aa45-3e9f2c4e8975"> -<Abbreviation> -<AUni ws="en">8.4.6.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.660" /> -<DateModified val="2022-9-23 16:55:8.660" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to something happening sometimes.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Sometimes</AUni> -</Name> -<Questions> -<objsur guid="ce80d231-26a2-4156-8409-fb6f94993c67" t="o" /> -<objsur guid="e343a03b-ba8a-4633-a899-8268a271e346" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="77722ca5-841e-46ee-8f24-d6e594fccea8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ba:yu</AUni> -<AUni ws="qvm-x-acl">ba:yu; ba:yu; ba:yo</AUni> -<AUni ws="qvm-x-akh">ba:yu</AUni> -<AUni ws="qvm-x-akl">ba:yu; ba:yu; ba:yo</AUni> -<AUni ws="qvm-x-ame">ba:yu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bayo</AUni> -<AUni ws="qvm-x-acl">+bayo</AUni> -<AUni ws="qvm-x-akh">+bayo</AUni> -<AUni ws="qvm-x-akl">+bayo</AUni> -<AUni ws="qvm-x-ame">+bayo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.949" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="65d683d0-80d7-410a-b8de-63be7047b545" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bayo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="edde2c28-08d9-4d6d-bbfe-5aec1fbe95d6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9ddf39a7-ad28-4623-ac85-b7a42a89c06d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bayo 
\entryTyp root 
\gENG 
\gSPN 
\e +bayo 
\c N0 
\ach ba:yu 
\akh ba:yu 
\acl ba:yu / _# 
\acl ba:yu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ba:yo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ba:yu / _# 
\akl ba:yu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ba:yo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ba:yu 
\i ZEC 1.8 Paypa guepanchömi carcaycargan puca, bäyu y yorag cawallu muntashcuna.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="77739cc2-48df-4f84-89ef-bb672fa6b95e" ownerguid="84b6239a-3aa8-4a5c-99e6-506cf68a2ad8"> -<Form> -<AUni ws="qvm-x-ach">zörru</AUni> -<AUni ws="qvm-x-acl">zörru; zörru; zörro</AUni> -<AUni ws="qvm-x-akh">zörru</AUni> -<AUni ws="qvm-x-akl">zörru; zörru; zörro</AUni> -<AUni ws="qvm-x-ame">zörru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="77748469-fcf1-4cde-a3f6-47432eac5b6e" ownerguid="959c1a4b-d726-422d-9988-fedd60c0347a"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="32c96e96-31e4-45da-9937-dab59eb5051b" t="o" /> -<objsur guid="a2371e66-79f4-460e-8fca-13391250b3ee" t="o" /> -<objsur guid="dd2cf479-7bed-42a4-81fc-5a05662f7cc2" t="o" /> -<objsur guid="390c9564-7eb7-4117-913c-a8ca94e9fd26" t="o" /> -<objsur guid="7777b1ba-a59a-42ec-a36f-2087799dae98" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="777488c6-841c-4ffb-821e-8e8dbe9c9ed9" ownerguid="d1b3d0f0-5319-4a6a-8a70-2179a8e76d22"> -<ExampleWords> -<AUni ws="en">be desperate for, be crying out for, can't do without, be dependent on, depend on, rely on, be reliant on, badly need</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to needing something very much?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="7777b1ba-a59a-42ec-a36f-2087799dae98" ownerguid="77748469-fcf1-4cde-a3f6-47432eac5b6e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yqui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yqui</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yki</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1b0fe7f9-c0ed-498b-9263-f8c0d31cc569" t="r" /> -</Morph> -<Msa> -<objsur guid="2999bb54-aa09-4eed-affb-cf684bd15cf6" t="r" /> -</Msa> -<Sense> -<objsur guid="c7a4c794-794d-465a-81d6-8004fbbef4b7" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="777bf306-206c-4c32-8cbf-f90681247b1f" ownerguid="7d8898d6-6296-4d4d-b8dd-2f48c49f9e98"> -<ExampleWords> -<AUni ws="en">height, altitude, level, elevation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to how high something is?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="777bfa4a-56d5-47b6-9da0-0fecfb4d746f" ownerguid="fe22e7b6-af7f-4f65-a525-753701a40aaf"> -<Form> -<AUni ws="qvm-x-ach">pobrëza</AUni> -<AUni ws="qvm-x-acl">pobrëza</AUni> -<AUni ws="qvm-x-akh">pobrëza</AUni> -<AUni ws="qvm-x-akl">pobrëza</AUni> -<AUni ws="qvm-x-ame">pobrëza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="777e3d53-b2c5-4e83-b751-4b62afae1555" ownerguid="9d865347-6656-4ab7-8613-bf2e8bc53aa7"> -<ExampleWords> -<AUni ws="en">burn, first/second/third degree burn, boil, scald</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to being injured by being burned?</AUni> -</Question> -</rt> -<rt class="MoAdhocProhibGr" guid="777f4eca-a64c-4ed7-8367-4e3ebdb5cd1f" ownerguid="b80228bc-ea5e-11de-9d24-0013722f8dec"> -<Adjacency val="0" /> -<Description> -<AStr ws="en"> -<Run ws="en">Restrict when the null verbal morphemes can occur</Run> -</AStr> -</Description> -<Disabled val="False" /> -<Members> -<objsur guid="17aa8be2-f212-4a4c-b737-4c0f11d7d40a" t="o" /> -<objsur guid="3ac5c7bc-792f-4730-9f19-45d9406d8786" t="o" /> -<objsur guid="e2672873-8979-4934-b280-64698c06f546" t="o" /> -</Members> -<Name> -<AUni ws="en">Verbal null and morph-loweing</AUni> -</Name> -</rt> -<rt class="MoStemMsa" guid="777f8781-ca32-4368-8cf8-f1c09fa80aaf" ownerguid="26118801-f6b1-45e1-98ce-63ba59372032"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="77882bc5-c87d-44ad-985b-0a15ef40f13f" ownerguid="044eef17-ef15-46c5-9ff5-83b31c637421"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="fc3589dd-38ae-41a5-9e92-3e830139de05" t="o" /> -<objsur guid="bf10154c-1971-4f1c-8563-2b17e1c17229" t="o" /> -<objsur guid="9050c80f-0326-410a-b321-8673dac72149" t="o" /> -<objsur guid="d36fe3cc-600e-4b0b-b096-19f79253321f" t="o" /> -<objsur guid="41c7ff9b-3005-48ec-9f6f-d4f94f8e0e58" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="7789d2b1-9d83-45d4-87f7-80348fd1efea" ownerguid="a52591db-90ed-4501-aa5f-d8a8fe4ff74a"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="778a34fd-dcf4-4c25-83a5-54d14df67b1a" ownerguid="4d8a2aae-c80c-4007-84b5-5255881a284c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="r" /> -</Morph> -</rt> -<rt class="LexSense" guid="778c8996-cbc1-4c4f-9118-9ece2f0bbf3d" ownerguid="41551b37-e74e-4fbf-8411-290dbb18b302"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">talk.in.sleep</AUni> -<AUni ws="es">habl.en.sueño</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4a138925-7942-4784-a9cd-83d9594c18de" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="778e8c74-a72b-4888-82b4-82d5d6b41d85" ownerguid="d80360f9-7319-40a7-a2bc-fd8718711ba4"> -<ExampleWords> -<AUni ws="en">predecessor, forerunner, precursor, ex-(wife/president)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to a person or thing that existed before another?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="77949ccf-e474-4fd5-bc12-c832c33004a6" ownerguid="39bf3a75-0264-49a8-9aa6-26dc4bc4c9cc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="fabecd05-45b6-42bb-ab02-9a812cd9eb6f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="77960e7f-4519-4a1e-9485-a96f106ec8ca" ownerguid="ad1704a0-f590-4406-881b-95656cf33c61"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="735e5a54-49b3-459d-a530-d103b8a8e637" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="779654db-f4aa-4d93-8cd5-4e603da9350b" ownerguid="65d3f082-7677-43b8-8863-c6b8cc3a9c02"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">owner</AUni> -<AUni ws="es">amo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7f0c8138-52db-49c7-8c41-44ed14c726a0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="77971878-9ac9-448a-bb18-0211a520282d" ownerguid="1688280e-27c4-47a8-87b7-8fe31b174ab8"> -<ExampleWords> -<AUni ws="en">pass, fail</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to passing a test?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="77983496-bf92-4919-8186-ec174718f85e" ownerguid="5b146ef5-e84b-4863-8075-8d9394ba0454"> -<Form> -<AUni ws="qvm-x-ach">juti</AUni> -<AUni ws="qvm-x-acl">juti; jute</AUni> -<AUni ws="qvm-x-akh">juti</AUni> -<AUni ws="qvm-x-akl">juti; jute</AUni> -<AUni ws="qvm-x-ame">huti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StStyle" guid="77997501-47d3-4574-ae1d-7300107dfb73" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="7d2c80cd-af87-4d56-8337-cfd389b775bb" t="r" /> -</BasedOn> -<Context val="0" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Heading 1</Uni> -</Name> -<Next> -<objsur guid="7d2c80cd-af87-4d56-8337-cfd389b775bb" t="r" /> -</Next> -<Rules> -<Prop bold="invert" fontsize="14000" fontsizeUnit="mpt" spaceAfter="3000" spaceBefore="12000"></Prop> -</Rules> -<Structure val="0" /> -<Type val="0" /> -<Usage> -<AUni ws="en">Major headings (1, 2, 3)</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="CmDomainQ" guid="7799e62f-888d-4956-bbb4-4d3c08871c33" ownerguid="880647e5-6543-46dd-9178-8edae9272add"> -<ExampleWords> -<AUni ws="en">curious, interested</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to wanting to learn something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="779b125c-78af-4639-b4bb-f9176f2e36d2" ownerguid="4ea4845b-ab94-4424-a1ef-eea531e392df"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">feel</AUni> -<AUni ws="es">sentir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ad12a286-063c-423f-91ba-b264b53c7208" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="779b16d4-29ab-4fcf-af5a-0331119167ba" ownerguid="debe9765-c399-43b6-a014-31c213dade8a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">Mr.</AUni> -<AUni ws="es">Don</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e2d3fd28-f74c-49b8-a85c-a8d98bd5a6e4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="779e4547-dee6-4780-a180-30a740f9574c" ownerguid="b2fd2d29-1389-4114-91a8-15b8d9742794"> -<Abbreviation> -<AUni ws="en">9.6.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.720" /> -<DateModified val="2022-9-23 16:55:8.720" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that something is the basis for another thing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89F Basis</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Basis</AUni> -</Name> -<Questions> -<objsur guid="8d7316b5-866c-4d6a-b4a3-9b34f8747571" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="779f1daa-dc94-4218-aee0-30eeb742132a" ownerguid="f5e2ad18-5ad4-4186-9572-b1542096759e"> -<ExampleWords> -<AUni ws="en">civilian, non-combatant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a person who is not a soldier?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="77a09318-be03-43eb-8820-4029ee72b70a" ownerguid="4526b41d-6f3c-494f-93a2-ea3e9705269d"> -<ExampleWords> -<AUni ws="en">delay, hold something up, set back, put back, get bogged down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something delaying an event?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="77a1c6df-7352-4e60-a7c3-3c36198f7dd8" ownerguid="8052744f-7a9a-49da-89e3-4c518126180b"> -<ExampleWords> -<AUni ws="en">confusing, puzzling, bewildering, baffling</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that causes someone to feel confused?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="77a2a524-38ae-4a84-98f1-a338059508c0" ownerguid="0d9ffa56-e984-41e3-95cf-34d29af2d8db"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="77a30a6b-c141-416f-8100-8177350b049d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">toga</AUni> -<AUni ws="qvm-x-acl">toga</AUni> -<AUni ws="qvm-x-akh">toqa</AUni> -<AUni ws="qvm-x-akl">toqa</AUni> -<AUni ws="qvm-x-ame">tuqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tuqa</AUni> -<AUni ws="qvm-x-acl">*tuqa</AUni> -<AUni ws="qvm-x-akh">*tuqa</AUni> -<AUni ws="qvm-x-akl">*tuqa</AUni> -<AUni ws="qvm-x-ame">*tuqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.7" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="922e94ab-f0b8-464c-97ee-9ce552449181" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tuqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="65b23cbe-3239-47d4-8fc5-8ce15fecef2b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b8230dca-544a-408b-9972-810b743f00d3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tuqa 
\entryTyp root 
\gENG spit 
\gSPN escupir 
\e *tuqa 
\c V1 
\ach toga 
\akh toqa 
\acl toga 
\akl toqa 
\ame tuqa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="77a41451-4d3f-48e8-8491-a29de06fafef" ownerguid="291fd82e-76e8-4574-abdc-c440160a1db5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">edge</AUni> -<AUni ws="es">orilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bf6c5e07-bf17-48e2-bebf-2d25441e11a4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="77a6d926-0999-42a3-bbc5-70556e880b2c" ownerguid="dc1a2c6f-1b32-4631-8823-36dacc8cb7bb"> -<ExampleWords> -<AUni ws="en">sunlight, ray, sunshine, beam, light, sunbeam, radiance, glow, sparkle, glisten, glare</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to the light of the sun?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="77a79223-c194-4c68-aabb-9ba0c51f99f5" ownerguid="c7326724-aed9-4849-99c7-55af02f39f80"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">run</AUni> -<AUni ws="es">correr</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ae6bf748-b5ea-410f-bbc2-1b1a8259d22e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="77aba697-8151-445c-84f1-230fc7818018" ownerguid="054e81ce-abd8-4069-989d-13e2fa58851c"> -<ExampleWords> -<AUni ws="en">showiness, flashiness, ostentation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the quality of showing off?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="77b0269a-8d8f-4783-ace8-40e4a29426d8" ownerguid="6e240b2c-56a6-4f86-878d-b4d39954184d"> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="77b4d6c1-87bf-4839-b4be-6a45119b700a" ownerguid="9efa7949-de15-499a-b382-4560e06c4fb4"> -<Abbreviation> -<AUni ws="en">3.5.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.162" /> -<DateModified val="2022-9-23 16:55:8.162" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to asking a question.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33L Ask For, Request; 33N Question, Answer</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Ask</AUni> -</Name> -<OcmCodes> -<Uni>124 Interviewing in Research</Uni> -</OcmCodes> -<Questions> -<objsur guid="2b61cd39-0a4d-446e-a7e2-aaea4f4005bd" t="o" /> -<objsur guid="f4c5396e-c11b-4820-a424-d640706c1cac" t="o" /> -<objsur guid="36ebcfd6-67d3-4573-8f2e-1eed62749c6c" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="45f7b003-ade3-4efc-8dee-259dcbf80a4a" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="5fdf3946-7e47-4fd2-906f-4da7ce5fa490" t="o" /> -<objsur guid="a30e0391-ea64-4938-9eca-023c351d60af" t="o" /> -<objsur guid="16dbd62c-f60d-4530-ba4e-0e74221e4681" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="77b904d5-99e3-453f-a22e-18f5f26bda59" ownerguid="bc8d0ad4-6ebf-4fa0-bc7e-60e8ec9c43db"> -<ExampleWords> -<AUni ws="en">sleep, sand, matter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to the material that collects in the corner of the eyes while sleeping?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="77b9bfa4-e806-406a-a1cf-779dffc5e18e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">icsi</AUni> -<AUni ws="qvm-x-acl">icsi; icse</AUni> -<AUni ws="qvm-x-akh">iksi</AUni> -<AUni ws="qvm-x-akl">iksi; ikse</AUni> -<AUni ws="qvm-x-ame">iksi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*iksi.v</AUni> -<AUni ws="qvm-x-acl">*iksi.v</AUni> -<AUni ws="qvm-x-akh">*iksi.v</AUni> -<AUni ws="qvm-x-akl">*iksi.v</AUni> -<AUni ws="qvm-x-ame">*iksi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.792" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1d4339b2-cbe1-4d30-aed2-ca0b370e593a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*iksi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1ee17e07-0d29-4fd0-9838-4bc879945d44" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="85664ccd-7888-476f-b26f-27ec19d667a6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *iksi.v 
\entryTyp root 
\gENG to.knot 
\gSPN nudar 
\e *iksi.v 
\c V2 
\mp +FinalI 
\ach icsi 
\akh iksi 
\acl icsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl icse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl iksi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ikse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame iksi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="77ba2e7e-00e7-418e-89fd-69335aa5f8a9" ownerguid="db895b5d-f779-4cbe-aefa-bc2315054920"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">sacudir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="18350afb-db97-4998-a86a-777099b7af70" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="77bb8b66-f3ff-470f-8c7c-44dda94825f7" ownerguid="246299ea-c8d9-4523-a9fb-f2f670654862"> -<Form> -<AUni ws="qvm-x-ach">chani</AUni> -<AUni ws="qvm-x-acl">chani; chani; chane</AUni> -<AUni ws="qvm-x-akh">chani</AUni> -<AUni ws="qvm-x-akl">chani; chani; chane</AUni> -<AUni ws="qvm-x-ame">chani</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="77bbd757-41b3-4119-9dd9-1b07c5c135b3" ownerguid="e04b105d-9953-440d-8bc8-dca94eec22df"> -<Form> -<AUni ws="qvm-x-ach">campeador</AUni> -<AUni ws="qvm-x-acl">campeador</AUni> -<AUni ws="qvm-x-akh">campeador</AUni> -<AUni ws="qvm-x-akl">campeador</AUni> -<AUni ws="qvm-x-ame">campeador</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="77bcdcab-e9fd-48ba-8dcd-63f425367735" ownerguid="31ccb9e3-d434-4430-ac84-486cc5a1c53d"> -<Abbreviation> -<AUni ws="en">6.1.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.365" /> -<DateModified val="2022-9-23 16:55:8.365" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is easy or possible to do.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Easy, possible</AUni> -</Name> -<Questions> -<objsur guid="7a00c0c4-3414-4b8e-8b7b-8da501bfd889" t="o" /> -<objsur guid="f2e8a389-42ea-486f-92ee-9065a9d9e6f5" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="85c5b8f7-8086-493d-b70d-a361bfa56f09" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="77c0f57f-eaa0-43c4-aa9d-d13d7b3d2793" ownerguid="3a5fac6d-5d82-419b-b358-f4ab54f8a44f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pants</AUni> -<AUni ws="es">pantalón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7eba3397-0169-4c68-88b7-f81508bbda4b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="77c1318b-be8f-4aac-8114-2b6858829a7c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jaca</AUni> -<AUni ws="qvm-x-acl">jaca</AUni> -<AUni ws="qvm-x-akh">jaka</AUni> -<AUni ws="qvm-x-akl">jaka</AUni> -<AUni ws="qvm-x-ame">haka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*haka.v</AUni> -<AUni ws="qvm-x-acl">*haka.v</AUni> -<AUni ws="qvm-x-akh">*haka.v</AUni> -<AUni ws="qvm-x-akl">*haka.v</AUni> -<AUni ws="qvm-x-ame">*haka.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.648" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="20b1a64d-4b7c-44b3-a0f3-a22f43d0d145" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*haka.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2e30dfec-6533-4e5f-9471-ec0537cba858" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9175dd2a-9a6a-460c-8ee6-2d2c801fbd00" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *haka.v 
\entryTyp root 
\gENG swell up 
\gSPN hinchar 
\e *haka.v 
\c V1 
\ach jaca 
\akh jaka 
\acl jaca 
\akl jaka 
\ame haka</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="77c2a51b-2037-4a65-8b1a-93270261f2f6" ownerguid="ed7930df-e7b4-43c9-a11a-b09521276b57"> -<ExampleWords> -<AUni ws="en">waft, dissipate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(19) What words refer to a smell spreading?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="77c8ee61-3a38-4a42-9514-7aa13cfb324b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rani</AUni> -<AUni ws="qvm-x-acl">rani; rani; rane</AUni> -<AUni ws="qvm-x-akh">rani</AUni> -<AUni ws="qvm-x-akl">rani; rani; rane</AUni> -<AUni ws="qvm-x-ame">rani</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rani</AUni> -<AUni ws="qvm-x-acl">*rani</AUni> -<AUni ws="qvm-x-akh">*rani</AUni> -<AUni ws="qvm-x-akl">*rani</AUni> -<AUni ws="qvm-x-ame">*rani</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.256" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6e536c60-5da9-437d-9311-e03da8d7a6c7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rani</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="457efa3a-da3c-48bf-bcc3-8d86de546a07" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e6e71133-2294-4c4c-9511-7ef4cce5a7b2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rani 
\entryTyp root 
\gENG penis 
\gSPN pene 
\e *rani 
\c N0 
\mp +FinalI 
\ach rani 
\akh rani 
\acl rani / _# 
\acl rani +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl rane +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rani / _# 
\akl rani +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl rane +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame rani</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="77c94870-9b72-4152-a4b9-1622a470f7ca" ownerguid="fd850542-a957-4b6d-9726-e2600271f2ba"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ae2b077a-eee4-474d-89bf-5da1d1665538" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="77d0bb8d-671e-45d2-af5d-6dce46d37638"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">co:digu</AUni> -<AUni ws="qvm-x-acl">co:digu</AUni> -<AUni ws="qvm-x-akh">co:digu</AUni> -<AUni ws="qvm-x-akl">co:digu</AUni> -<AUni ws="qvm-x-ame">co:digu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+código</AUni> -<AUni ws="qvm-x-acl">+código</AUni> -<AUni ws="qvm-x-akh">+código</AUni> -<AUni ws="qvm-x-akl">+código</AUni> -<AUni ws="qvm-x-ame">+código</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.211" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7a6f4867-1831-4f6a-99c7-1bfffbe7fc50" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+código</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1d0e4b07-21d0-43fc-8cbc-df226165f89f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2a4aef47-a1f1-4efb-9183-5d4f7eccae39" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +código 
\entryTyp root 
\gENG 
\gSPN 
\e +código 
\c NOSUFF 
\ach co:digu 
\akh co:digu 
\acl co:digu 
\akl co:digu 
\ame co:digu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="77d1610f-4757-46de-b5f8-e127dc270dfd" ownerguid="71430132-f2ea-40fe-b3f5-b6775741cc56"> -<Abbreviation> -<AUni ws="en">6.6.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.468" /> -<DateModified val="2022-9-23 16:55:8.468" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to weaving cloth.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Weaving cloth</AUni> -</Name> -<OcmCodes> -<Uni>286 Woven Fabrics</Uni> -</OcmCodes> -<Questions> -<objsur guid="f473af43-9dc7-4b42-bc18-47e428fbc918" t="o" /> -<objsur guid="376f112e-2934-40fc-bc7f-71d25f0e647b" t="o" /> -<objsur guid="8804bc83-0861-4e56-8a1a-7ad10fae4bb2" t="o" /> -<objsur guid="ef37bb3d-acb9-4963-a22f-0b51b324242d" t="o" /> -<objsur guid="b696a5a6-2b73-43a3-82e6-9b7e2c258481" t="o" /> -<objsur guid="b0187e26-1dd9-400d-a6d6-adc24d796cdc" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="019e3b64-c68a-4b19-bec5-a22f4eb88f48" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="77d1a3a6-f0e5-41de-b95b-8058c9d78412" ownerguid="ffc38b37-1639-4ff4-bf8d-df362978691e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="77de25d8-b840-40fc-81d9-390d36574678" ownerguid="738a09a5-59df-40f9-8a4e-176e00d03bbf"> -<ExampleWords> -<AUni ws="en">shoot (a gun), shoot at someone, shot, shell, fire, launch, aim, volley</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(18) What words refer to shooting a weapon?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="77de6f3c-0fc3-4f16-97e9-f96726c0a9e6" ownerguid="da22329f-8b3c-4a18-9a43-2fa23eac7790"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="a5f7feb9-72ff-444b-9de5-c325c60afd40" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="77df6511-7099-48c0-863e-0c1baf71d877" ownerguid="742996cd-b87f-40a8-bdb3-dba74219bd73"> -<ExampleWords> -<AUni ws="en">warm, the warmth, balmy, mild, temperate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe a time or place that is warm?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="77e0981b-8f3c-45af-8baa-d4c78ba32deb" ownerguid="813545f6-6213-482d-919e-86244fad47e8"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="77e13383-c16c-44a5-8fa2-2f01601292b5" ownerguid="7efa087f-a344-488d-83e1-40cb415b378f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">turbid</AUni> -<AUni ws="es">turbio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="61f3fcc1-7c29-4450-a8e5-562e0e9d3a94" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="77e18ab0-b34a-45a0-8ab7-0e1fb5bdefe7" ownerguid="c26fdcd4-5ead-4eb0-8bd0-ebf01e06e4e6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="d2178968-475c-458f-9d74-6acd17c52e51" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="77e3185f-0853-4545-a8bb-c8b1d3dc3519" ownerguid="de5c6901-fab3-40ac-9364-bbd2972d1be6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="77e62f42-06f3-41a5-929d-eb511eb4b688" ownerguid="99b5b80a-a2d6-4820-adfc-1da72528c272"> -<ExampleWords> -<AUni ws="en">equate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to saying that two things are the same in some way?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="77e7ae9d-a546-4ef8-9d0c-c7864740ddc5" ownerguid="8add7f4d-333b-4b2c-9999-48a14162152b"> -<ExampleWords> -<AUni ws="en">stay sober, go on the wagon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to controlling your desire to drink alcohol?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="77e8cdb9-1148-4380-9fee-ded3ff43029e" ownerguid="94f919c2-bf8b-4ae5-a611-8c0cd4d7a5d2"> -<ExampleWords> -<AUni ws="en">command, order, direct, impel, prescribe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to commanding someone to do something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="77ea1384-9cd4-4224-b704-b9be784f48bb" ownerguid="d71d0e76-5cd5-48cd-b6ce-a1456eb1d24b"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="77eb540a-67bd-4059-be2c-4f0731b56412" ownerguid="ff7cf41e-ec29-4e35-b0c8-d61b635ac6eb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="77f0d0dc-61ee-4373-9879-35a7059bd892" ownerguid="cf337287-c9fa-43d2-93c4-284f45e262c0"> -<Abbreviation> -<AUni ws="en">2.5.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.47" /> -<DateModified val="2022-9-23 16:55:8.47" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to tooth decay.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Tooth decay</AUni> -</Name> -<Questions> -<objsur guid="0cc4b56b-15eb-43e9-ac49-6cb9060cb569" t="o" /> -<objsur guid="8e8d8771-949e-4582-b4f0-574ef63228bc" t="o" /> -<objsur guid="4333f335-964b-436b-b2dc-b247d5e99a1b" t="o" /> -<objsur guid="e7a79aeb-4a15-4c38-a8d2-088150408033" t="o" /> -<objsur guid="010001ba-57fd-476a-a9c1-d133a9979c5d" t="o" /> -<objsur guid="48a8f5b9-3679-4dd5-8b68-6e2039e5d014" t="o" /> -<objsur guid="35530c4e-e575-4c46-9d88-cad35f8ffca4" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="c81004a7-499e-4e05-84c8-3d74a17e97fd" t="r" /> -<objsur guid="c8602dc5-5c91-480a-b5ce-1c82fe3da83a" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="77f244e6-2404-4aa7-87d2-1bc307d2a499" ownerguid="3485b6a2-2d95-4a1a-99fe-3c64b221bad2"> -<Form> -<AUni ws="qvm-x-ach">cuentastëra</AUni> -<AUni ws="qvm-x-acl">cuentastëra</AUni> -<AUni ws="qvm-x-akh">cuentastëra</AUni> -<AUni ws="qvm-x-akl">cuentastëra</AUni> -<AUni ws="qvm-x-ame">cuentastëra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="77f27500-aad8-409c-a28e-92df73794dce" ownerguid="55201761-fe2e-40d5-a2a7-8079e00a2c32"> -<Abbreviation> -<AUni ws="en">4.8.2.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.276" /> -<DateModified val="2022-9-23 16:55:8.276" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to an enemy--someone you are fighting against.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Enemy</AUni> -</Name> -<Questions> -<objsur guid="a1fdfa77-164c-4d9d-8a2b-6fe27169d8cc" t="o" /> -<objsur guid="151340d2-8d68-487d-8fbc-4466a4febedd" t="o" /> -<objsur guid="41e94600-e09b-407d-9601-0ead84e367c0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="77f2bf77-9159-4f66-a24b-98814fe6f289" ownerguid="5bc2e45f-8a32-4142-b829-8de692a91294"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="77f5e776-aeb6-4256-95de-c43a32e49d01" ownerguid="d502512c-966b-4752-8636-716fb29facfe"> -<ExampleWords> -<AUni ws="en">nap, take a nap, rest, take a rest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words are used of sleeping during the day?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="77f5e800-146b-49fa-8443-c3431abbffc2" ownerguid="636cd707-7999-474c-a06f-c07e118c34fb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="77f807f8-d736-4d35-b41e-8b972f4e24e1" ownerguid="3d020b79-f1d4-4a06-bae2-2daaa658474b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="77f8d20e-74da-47bd-86ed-3d3489408278" ownerguid="80672cf3-91e0-456b-9f7a-a503002fd4d6"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="77f9a83b-8317-4bdd-8578-a21c75214278"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wactsa</AUni> -<AUni ws="qvm-x-acl">wactsa</AUni> -<AUni ws="qvm-x-akh">waktsa</AUni> -<AUni ws="qvm-x-akl">waktsa</AUni> -<AUni ws="qvm-x-ame">waktsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wakcha.1</AUni> -<AUni ws="qvm-x-acl">*wakcha.1</AUni> -<AUni ws="qvm-x-akh">*wakcha.1</AUni> -<AUni ws="qvm-x-akl">*wakcha.1</AUni> -<AUni ws="qvm-x-ame">*wakcha.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.442" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0942ddb4-ac10-468e-999b-ac05067b7bff" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wakcha.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d68c825c-c5fc-4d13-996f-44fd8fd827ba" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ed13ae66-a32e-436c-836e-6cfa5b19f6dc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wakcha.1 
\entryTyp root 
\gENG orphan 
\gSPN huérfano 
\e *wakcha.1 
\c N0 
\ach wactsa 
\akh waktsa 
\acl wactsa 
\akl waktsa 
\ame waktsa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="77f9d8b4-d4e9-468b-a0b1-379d1ac2bafa" ownerguid="8439fc80-2f31-4c82-9ca6-d8d3e86c5cca"> -<Form> -<AUni ws="qvm-x-ach">guetsga</AUni> -<AUni ws="qvm-x-acl">guetsga</AUni> -<AUni ws="qvm-x-akh">qetsqa</AUni> -<AUni ws="qvm-x-akl">qetsqa</AUni> -<AUni ws="qvm-x-ame">qitsqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="77fb96af-5636-47af-a640-86caf7159360" ownerguid="b6b956bf-e624-4338-8e09-0d8a80dd2ba1"> -<Form> -<AUni ws="qvm-x-ach">yanaga; yanagä</AUni> -<AUni ws="qvm-x-acl">yanaga; yanagä</AUni> -<AUni ws="qvm-x-akh">yanaqa; yanaqä</AUni> -<AUni ws="qvm-x-akl">yanaqa; yanaqä</AUni> -<AUni ws="qvm-x-ame">yanaqa; yanaqä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="77fbb1dd-f6b4-4051-be32-d7809dd1542f" ownerguid="49c525b3-2163-48e1-b3bd-57e5cdc486a4"> -<ExampleWords> -<AUni ws="en">muscle, meat, muscular, biceps, triceps, extensor, retractor, gluteus, smooth muscle, sphincter, striated muscle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the muscles?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="77fd8e17-97e1-4435-aa2a-a788b66b6441" ownerguid="f2b82e93-c70c-4125-a52d-d0fcce2c9ac7"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="17dfc73a-aed1-4594-b0a4-01d953d1f395" t="o" /> -<objsur guid="1f4c7635-daa8-4324-9935-2656d95d0a1a" t="o" /> -<objsur guid="2872da04-6218-47b5-ab55-6c7602abb25f" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="77ff4cc0-dd88-43ac-a0e3-280fb51baa98" ownerguid="459c5844-f4e3-471d-98f9-7d1b347815e8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="fb7b9804-c55a-480f-b417-9762e1e8bb4b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="780093c1-faaa-4732-8305-4e024b56005d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tirita</AUni> -<AUni ws="qvm-x-acl">tirita</AUni> -<AUni ws="qvm-x-akh">tirita</AUni> -<AUni ws="qvm-x-akl">tirita</AUni> -<AUni ws="qvm-x-ame">tirita</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tiritar</AUni> -<AUni ws="qvm-x-acl">+tiritar</AUni> -<AUni ws="qvm-x-akh">+tiritar</AUni> -<AUni ws="qvm-x-akl">+tiritar</AUni> -<AUni ws="qvm-x-ame">+tiritar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.926" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="20278ac0-c56a-4f5f-b881-81f8b3a0b302" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tiritar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="728227aa-57bc-444b-8283-08e00d26b097" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bf8cb808-30f5-4466-bee6-e0a41a7e4278" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tiritar 
\entryTyp root 
\gENG shiver 
\gSPN tiritar 
\e +tiritar 
\c V1 
\ach tirita 
\akh tirita 
\acl tirita 
\akl tirita 
\ame tirita</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="780659d4-93fc-420f-b245-e2be2d65bf1f" ownerguid="22f423c5-8417-425e-bbf3-c99f5483d53e"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="7806664c-6392-461e-ae19-341f6277385f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cachu</AUni> -<AUni ws="qvm-x-acl">cachu; cachu; cacho</AUni> -<AUni ws="qvm-x-akh">kachu</AUni> -<AUni ws="qvm-x-akl">kachu; kachu; kacho</AUni> -<AUni ws="qvm-x-ame">kachu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*katru.n</AUni> -<AUni ws="qvm-x-acl">*katru.n</AUni> -<AUni ws="qvm-x-akh">*katru.n</AUni> -<AUni ws="qvm-x-akl">*katru.n</AUni> -<AUni ws="qvm-x-ame">*katru.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.963" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="17f990dc-f713-41a6-9de2-5cabddc023cc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*katru.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="220e6db6-d429-427f-a263-c46b9e9dceed" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1be3ad4a-6182-49a9-be77-a1a5f654723f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *katru.n 
\entryTyp root 
\gENG gum 
\gSPN chicle 
\e *katru.n 
\c N0 
\ach cachu 
\akh kachu 
\acl cachu / _# 
\acl cachu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cacho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kachu / _# 
\akl kachu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kacho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kachu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7807484c-ae2f-4eaa-bf51-a3cbae423260" ownerguid="6fc8ae4d-9fad-462e-9ea0-c613c3c1cb5e"> -<ExampleWords> -<AUni ws="en">suspicious character</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a person that you doubt?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="780ba2b3-a237-4710-8e5b-946ce246af25" ownerguid="53636d8a-0c27-4b70-af40-b6311cabcd2d"> -<Form> -<AUni ws="qvm-x-ach">wiru</AUni> -<AUni ws="qvm-x-acl">wiru; wiro</AUni> -<AUni ws="qvm-x-akh">wiru</AUni> -<AUni ws="qvm-x-akl">wiru; wiro</AUni> -<AUni ws="qvm-x-ame">wiru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="780f5720-28c0-45da-8e65-d3bb1c285000" ownerguid="03e02aa1-46e1-4b39-b303-9f7d729d4b1e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ka</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ka</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="22806abf-f462-448a-bb3e-39bbf5d75aea" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="780fbf89-f2ba-404c-b288-f6ca637bbc90" ownerguid="21167445-f1b1-49b4-b147-bc792616c432"> -<Abbreviation> -<AUni ws="en">8.4.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.660" /> -<DateModified val="2022-9-23 16:55:8.660" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to continuing to do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>68B Continue</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Continue, persevere</AUni> -</Name> -<Questions> -<objsur guid="4a299931-f37f-4bd9-9b10-d3b953a80194" t="o" /> -<objsur guid="cb390160-dc52-4aee-a562-ed1230b646d0" t="o" /> -<objsur guid="221f4990-c5cc-4c35-ba99-4f102ceaa6a4" t="o" /> -<objsur guid="c27607b8-4992-4240-82c5-28d56a2715ce" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="780fbf89-f2ba-404c-b288-f6ca637bbc90" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="0d7409ab-fc1f-4680-b040-d91d7004084f" t="o" /> -<objsur guid="08244b88-bfba-487a-96bc-ca3771d1fa7c" t="o" /> -<objsur guid="76d4c718-a84d-4b7b-9767-1c350c3bc124" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="7811ecd7-a6dc-44b5-8f9c-4d7771b0fd9d" ownerguid="a3ba10f3-66e3-4ad5-8057-453b8941e497"> -<ExampleWords> -<AUni ws="en">ally</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a person who fights on your side?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="781723b4-ecc8-47bc-90b9-d6d0f69bbc67" ownerguid="bee4d6b2-771a-45e8-ab29-847f225a02d1"> -<Form> -<AUni ws="qvm-x-ach">amén</AUni> -<AUni ws="qvm-x-acl">amén</AUni> -<AUni ws="qvm-x-akh">amén</AUni> -<AUni ws="qvm-x-akl">amén</AUni> -<AUni ws="qvm-x-ame">amén</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="781b0141-91a4-494d-a886-63b46b60bee5" ownerguid="b82c7ba0-9f4e-44da-bcd0-d30f5b224de5"> -<ExampleWords> -<AUni ws="en">tablet, pill, capsule, potion, syrup, tonic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to medicine that you eat or drink?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="781b8534-726a-4153-a0e3-86aa11ce0d2c" ownerguid="6af4876a-55e8-4f29-817e-fae11789e759"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="781bb4b0-de82-439c-b136-43fc9439ed63" ownerguid="5238fe9c-4bbe-444c-b5f6-18f946b3d6aa"> -<ExampleWords> -<AUni ws="en">shiver, shake, have the shakes, chills</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What are the symptoms of having a fever?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="781c7352-ec45-4bec-83a0-82a2ad435424" ownerguid="18b3ca02-18fe-4ab5-8709-c20957a0a2fb"> -<ExampleWords> -<AUni ws="en">be proud of, be pleased with, be delighted with, be thrilled with, take pride in, pride yourself on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being proud of something or someone?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="781d34d6-dcd1-4353-b6a4-b4b13bd82bfc" ownerguid="8c30a1c0-032a-4dc6-aba5-e3943448f9e5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="9dbc8d68-ea7b-4157-9650-d19e27bac867" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="78220a21-dd51-4411-98ab-5602e728b21c" ownerguid="82e4394a-2f58-4356-8d9c-1ad9dbe95293"> -<ExampleWords> -<AUni ws="en">cool something, chill, refrigerate, freeze something</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to making something cold?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7824dc6a-3310-4b73-87be-4f3600ac2ce0" ownerguid="74c519e5-e149-41c3-b085-3188895e1efd"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="78257b60-493e-48d3-972f-5640f3c68353" ownerguid="06700833-ca70-4c41-a4f3-a6bcbe7c1099"> -<Form> -<AUni ws="qvm-x-ach">viaja</AUni> -<AUni ws="qvm-x-acl">viaja</AUni> -<AUni ws="qvm-x-akh">viaja</AUni> -<AUni ws="qvm-x-akl">viaja</AUni> -<AUni ws="qvm-x-ame">viaja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="7825d113-d9b4-47cc-b96d-09b334532e1a" ownerguid="eda80639-3bd1-4f19-90d3-a6701e15e927"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="82a4bbb2-f37f-4a71-bb48-90ce6a2938ba" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">necessity</AUni> -<AUni ws="es">necesidad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cd982f33-549f-4cdf-9710-745fd7740627" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="7825d262-bf2c-4a69-aa62-b464e088dcad"> -<Analyses> -<objsur guid="2eb242e5-f0f1-4411-bd0c-f1d9d7371fc4" t="o" /> -<objsur guid="630fa310-40fc-4015-8fb5-e9409d6cd676" t="o" /> -</Analyses> -<Checksum val="1695164363" /> -<Form> -<AUni ws="qvm-x-akh">tsayno</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="StTxtPara" guid="7827027b-b7fa-42f7-a39e-86427a7acc12" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">rikakumun</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="5b6c622a-7c5e-47e2-acfa-7e97faa7e841" t="o" /> -</Segments> -</rt> -<rt class="MoStemMsa" guid="782a8746-6760-4b57-bdf4-c7389acfb296" ownerguid="cbac3e35-e569-426a-a458-6cff4b51dec2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StTxtPara" guid="782b0946-7ede-4b42-b2f1-dc0e5e1a7342" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">aywaramuptiki. </Run> -<Run ws="en">\tr < V1 *aywa > PNCT AFAR ADVDS 2P</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="1d98bd5b-3de6-4635-bb42-490527d89316" t="o" /> -<objsur guid="e76bb2b9-ca83-4289-9060-bfb2b995e873" t="o" /> -</Segments> -</rt> -<rt class="MoStemMsa" guid="782baa7b-8a35-4a19-a060-9db9414e00ed" ownerguid="4c2996fe-c80e-49aa-8b03-eadc2298f7b5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="782bbda0-043b-44e3-ad02-931e90c817d7" ownerguid="a8430b52-643e-44c7-beab-2e571e3adcc5"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="782e0496-b3af-4512-a83d-efa0a6984847" ownerguid="8b76f4a2-9926-4c76-8d4f-563371683219"> -<ExampleWords> -<AUni ws="en">test tube, beaker, Bunsen burner, periodic table, formula, catalyst</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What tools are used to work with chemicals?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="7831223b-e5ed-4186-a321-94e9ae72a27d" ownerguid="6430b89c-7077-418a-a558-51f0e3f2c1a6"> -<Abbreviation> -<AUni ws="en">7.3.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.528" /> -<DateModified val="2022-9-23 16:55:8.528" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to throwing something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15Z Throw, Hurl</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Throw</AUni> -</Name> -<Questions> -<objsur guid="7a13f665-c2cd-4c72-b05c-2d11688e1885" t="o" /> -<objsur guid="cd1c4bca-6d47-4204-a85a-dcb409ccc6cf" t="o" /> -<objsur guid="de0feae2-d308-4a69-94f0-51a07814366a" t="o" /> -<objsur guid="5b9ccfc8-2ba1-4288-a3a6-d146573ebfa0" t="o" /> -<objsur guid="240f5598-e72b-40c5-9e82-e1ca038b52a2" t="o" /> -<objsur guid="b47e6f6a-1c48-47af-855d-e1217bddfa6c" t="o" /> -<objsur guid="0f8a70f6-9f12-4f2a-8c46-7cdd910d1194" t="o" /> -<objsur guid="73649b60-618c-484c-b2eb-db8f93f9450d" t="o" /> -<objsur guid="f9d6c5ab-aea7-42cb-bafe-06358d32180c" t="o" /> -<objsur guid="06d499f9-b4cc-4291-a3c0-9a1dd898a67c" t="o" /> -<objsur guid="79e27722-c839-444e-a790-efe0f6afae80" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="78332aa5-e8ea-4761-a96c-66d9c3eebecd" ownerguid="bcb1252c-7cb4-4fbc-b83f-e5f9c65b4afb"> -<ExampleWords> -<AUni ws="en">side by side, abreast</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that two things are next to each other and facing in the same direction?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="78348219-6a32-4b13-9985-54a84cb02246" ownerguid="9904f8ef-fca6-4020-815d-14f3fb6eae0f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">king</AUni> -<AUni ws="es">rey</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7cc9e085-4e90-4115-98b0-c6544152e78c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="78357148-43cc-4fc3-99ab-88ccfc8a46e6" ownerguid="43e9931c-d63d-4fa4-934c-80870b1d2ccf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">?</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f9dd8bc0-a6ef-4677-9ed1-1afbac7b6834" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="78378698-1fc7-4610-afdf-56c440f059d2" ownerguid="29b6ffe2-1299-4aa0-b3cd-63ef76214003"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.split.wood</AUni> -<AUni ws="es">rajar.leña</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="72d3345c-8901-404a-878c-919ce3190c67" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="78394ca3-fd02-4454-8a1a-a660c4c9a38b" ownerguid="309585b0-add3-4d8e-bc2b-67e0f6b53343"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">balance</AUni> -<AUni ws="es">balanza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="efff2c89-5b8b-4d04-828c-473a992cd40f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="783a316a-c748-4435-9e6a-77d316274fa4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ataca</AUni> -<AUni ws="qvm-x-acl">ataca</AUni> -<AUni ws="qvm-x-akh">ataca</AUni> -<AUni ws="qvm-x-akl">ataca</AUni> -<AUni ws="qvm-x-ame">ataca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+atacar</AUni> -<AUni ws="qvm-x-acl">+atacar</AUni> -<AUni ws="qvm-x-akh">+atacar</AUni> -<AUni ws="qvm-x-akl">+atacar</AUni> -<AUni ws="qvm-x-ame">+atacar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.860" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="30b2c864-504d-4b4a-8b01-f16af8b5e4ce" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+atacar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eceabbcd-16ce-4e73-9977-ec1ad2661946" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0d96eb64-c32f-4158-bcc4-d16979481cb7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +atacar 
\entryTyp root 
\gENG attack 
\gSPN atacar 
\e +atacar 
\c V2 
\ach ataca 
\akh ataca 
\acl ataca 
\akl ataca 
\ame ataca</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="783b8e9c-2591-42bd-aef3-63e74126e07a" ownerguid="181d4c04-9b7f-4c9b-b752-45c2e360773a"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="783cd8b8-8d25-4a62-ac42-eae420ee850f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jinan</AUni> -<AUni ws="qvm-x-acl">jinan</AUni> -<AUni ws="qvm-x-akh">jinan</AUni> -<AUni ws="qvm-x-akl">jinan</AUni> -<AUni ws="qvm-x-ame">hinan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hinan</AUni> -<AUni ws="qvm-x-acl">*hinan</AUni> -<AUni ws="qvm-x-akh">*hinan</AUni> -<AUni ws="qvm-x-akl">*hinan</AUni> -<AUni ws="qvm-x-ame">*hinan</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.721" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="26ff3a9e-b547-46c0-bb68-d7fef95b93ba" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hinan</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5f4fb9ac-7ebb-466c-871d-2b500d0b6c4d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e685b0b0-8885-484b-b289-cc521ded291d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hinan 
\entryTyp root 
\gENG 
\gSPN 
\e *hinan 
\c N0 
\mp +FinalC 
\ach jinan 
\akh jinan 
\acl jinan 
\akl jinan 
\ame hinan</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="78406cc5-ce24-49a4-a8a6-cd91cfdc02fe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gaptsi</AUni> -<AUni ws="qvm-x-acl">gaptsi; gaptse</AUni> -<AUni ws="qvm-x-akh">qaptsi</AUni> -<AUni ws="qvm-x-akl">qaptsi; qaptse</AUni> -<AUni ws="qvm-x-ame">qaptsi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qapchi</AUni> -<AUni ws="qvm-x-acl">*qapchi</AUni> -<AUni ws="qvm-x-akh">*qapchi</AUni> -<AUni ws="qvm-x-akl">*qapchi</AUni> -<AUni ws="qvm-x-ame">*qapchi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.84" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a2577b70-e856-4d60-a49d-e389b1897e3d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qapchi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="db5e32ee-d295-4972-aad5-411abe4f2648" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4f2e7404-34c4-4050-af9f-4477320cf4a3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qapchi 
\entryTyp root 
\gENG crush 
\gSPN amollar 
\e *qapchi 
\c V1 
\mp +FinalI 
\ach gaptsi 
\akh qaptsi 
\acl gaptsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gaptse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qaptsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qaptse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qaptsi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="784194be-87c3-4411-88e6-ad9729eae40e" ownerguid="d2c60050-78fc-44f0-bb3b-0da859df0a03"> -<Form> -<AUni ws="qvm-x-ach">mensäji; mensäji</AUni> -<AUni ws="qvm-x-acl">mensäji; mensäji; mensäje</AUni> -<AUni ws="qvm-x-akh">mensäji; mensäji</AUni> -<AUni ws="qvm-x-akl">mensäji; mensäji; mensäje</AUni> -<AUni ws="qvm-x-ame">mensäji; mensäji</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="7841cfc4-b0b2-4613-9fd0-799e4395e843" ownerguid="1a8c6355-0d9f-49a3-80f0-ce26cc0b204e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">place</AUni> -<AUni ws="es">poner</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="79898493-8da4-4ed9-b960-a1a212705cc4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7841ec21-bace-4d07-b019-828138032742" ownerguid="3f4c559f-ab4f-411f-a23b-d2396c977005"> -<ExampleWords> -<AUni ws="en">beclouded, befogged, blocked, cloaked, concealed, covered, eclipsed, enshrouded, hidden, masked, obscured, screened, shrouded, veiled</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe something that is blocked from view?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="784206f3-6f68-4d54-b582-250080a9b777"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ta; ta:</AUni> -<AUni ws="qvm-x-acl">ta; ta:</AUni> -<AUni ws="qvm-x-akh">ta; ta:</AUni> -<AUni ws="qvm-x-akl">ta; ta:</AUni> -<AUni ws="qvm-x-ame">ta; ta:</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.487" /> -<DateModified val="2022-10-16 15:14:3.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="add93156-8778-48d6-a0b7-2e3588ad7cd8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">BCM1.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b5d8be30-16d2-419e-bb80-39977d5242bd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2f48550a-3702-4bdb-bb3e-09bee13e0c4e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx BCM1.1 
\entryTyp suffix 
\gENG BCM1.1 
\gSPN CONV1 
\e BCM1.1 
\c N0/V2 
\o 010 
\mp +foreshortens 
\mp +underlong 
\ach ta foreshortened 
\ach ta: 
\akh ta foreshortened 
\akh ta: 
\acl ta foreshortened 
\acl ta: 
\akl ta foreshortened 
\akl ta: 
\ame ta foreshortened 
\ame ta: 
\mp +FinalC 
\mp +FinalLength 
\i yoragatargan. 
\tr yoragatarganxx. 
\i DAN 5.9 Pipis tantiyayta mana camäpacuptinmi Belsasarga fiyupa mantsacar pasaypa yoragatargan. 
\mcc BCM1.1 / [TakeBCM1.1] ..._ 
\mcc BCM1.1 DUR / ~_ [q] 
\mcc BCM1.1 / *waray ~_ 1 
\mcc BCM1.1 / HAVE ~_ 
\mcc BCM1.1 / *pay ~_ 
\mcc BCM1.1 / *shuku ~_ 
\mcc BCM1.1 / *tiya INF ~_</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="784699c8-295a-41e9-beba-dbe5c8b3858e" ownerguid="7f1c3292-9d1f-4271-8aa3-bbfd6511104c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7847e1f7-f4bf-4f41-b8dc-1de11cfaedbc" ownerguid="6430b89c-7077-418a-a558-51f0e3f2c1a6"> -<ExampleWords> -<AUni ws="en">be loaded (down) with, overloaded, be laden with, be weighed down with, under the weight of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to carrying many things?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7848344d-9e7c-44ce-bd73-28c4852913a4" ownerguid="5ea9301a-9906-4e81-97cf-48ee95a54c63"> -<ExampleWords> -<AUni ws="en">influence, impact, weight, pressure, power, sway, control, leverage, pull</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the influence you have on another's mind or decision?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="78486b1a-d833-47ef-8a6f-6bed151539c0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shimpa</AUni> -<AUni ws="qvm-x-acl">shimpa</AUni> -<AUni ws="qvm-x-akh">shimpa</AUni> -<AUni ws="qvm-x-akl">shimpa</AUni> -<AUni ws="qvm-x-ame">shimpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shimpa.n</AUni> -<AUni ws="qvm-x-acl">*shimpa.n</AUni> -<AUni ws="qvm-x-akh">*shimpa.n</AUni> -<AUni ws="qvm-x-akl">*shimpa.n</AUni> -<AUni ws="qvm-x-ame">*shimpa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.581" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="64315b7a-e15e-4c0f-bd15-d75619678c15" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shimpa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="02cc25c7-dddd-4552-b509-79001d73bd54" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5afca006-7293-446c-80b5-4fe4c93a6e69" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shimpa.n 
\entryTyp root 
\gENG waist.loom 
\gSPN ? 
\e *shimpa.n 
\c N0 
\ach shimpa 
\akh shimpa 
\acl shimpa 
\akl shimpa 
\ame shimpa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="7852af7d-1c94-4ebc-a2c0-72c9a710ce05" ownerguid="f8d8429d-349a-4028-9943-edc1224cab49"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tarot.cards</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="90ec9a90-5f10-4cac-8387-220f1cf72ce5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="78577c7f-0664-44e9-8f0c-633bd07bbe32" ownerguid="94189c36-c96a-4cc0-bf33-d3a44e892ba3"> -<Form> -<AUni ws="qvm-x-ach">tuqui</AUni> -<AUni ws="qvm-x-acl">tuqui; tuque</AUni> -<AUni ws="qvm-x-akh">tuki</AUni> -<AUni ws="qvm-x-akl">tuki; tuke</AUni> -<AUni ws="qvm-x-ame">tuki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="785a8282-9394-41d9-9953-1dc7625066af" ownerguid="2a2af155-9db9-41c5-860a-fe0a3a09d6de"> -<ExampleWords> -<AUni ws="en">attend, attention, beware, careful, caution, cautious, concentrate, concentration, concern, concerned, consider, consideration, foresight, guard, intentional, interest, occupy, precaution, provident, prudent, purposeful, refuse, regard, tend, think thoroughly, give thought, thoughtful, think hard</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to thinking carefully?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="785c3e0b-5f5b-4bbe-b32f-ceb8b6b7c2ad" ownerguid="cddc10d4-d68e-4fab-a563-90f5cabda349"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="785e7f1f-21ed-46b6-8599-c6ced4fd26d8" ownerguid="aad7c9b0-aff3-4684-86d5-657a20e39288"> -<Abbreviation> -<AUni ws="en">4.5.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.256" /> -<DateModified val="2022-9-23 16:55:8.256" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a person's social status.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>87 Status; 87A Position, Rank</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Status</AUni> -</Name> -<OcmCodes> -<Uni>550 Individuation and Mobility; 554 Status, Role, and Prestige; 555 Talent Mobility; 557 Manipulative Mobility; 558 Downward Mobility</Uni> -</OcmCodes> -<Questions> -<objsur guid="8c66dc03-32e6-4db3-9126-8fc808c973dd" t="o" /> -<objsur guid="113a23b5-77a9-4ce6-bdc8-43fa85ff4912" t="o" /> -<objsur guid="ae1e14cb-df3b-4620-a40e-dc62e4d921a1" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="a977c4b6-1004-448f-b6b0-daf5ce87d76d" t="o" /> -<objsur guid="9ed42115-8532-4f99-b0c0-36abfe9db652" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="785e8e68-c787-42ae-b02e-061099f35a9c" ownerguid="1ce1cf74-4502-483d-8c16-22a4dd7d5724"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</Msa> -<Sense> -<objsur guid="80f44d0c-72fe-4b3c-b505-6b06de3ee220" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="78699c92-e4f1-4160-b3f6-382bd509379a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pargu</AUni> -<AUni ws="qvm-x-acl">pargu; pargo</AUni> -<AUni ws="qvm-x-akh">parqu</AUni> -<AUni ws="qvm-x-akl">parqu; parqo</AUni> -<AUni ws="qvm-x-ame">parqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*parqu</AUni> -<AUni ws="qvm-x-acl">*parqu</AUni> -<AUni ws="qvm-x-akh">*parqu</AUni> -<AUni ws="qvm-x-akl">*parqu</AUni> -<AUni ws="qvm-x-ame">*parqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.729" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="85122d05-7218-4e5b-9b5c-151961b1007d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*parqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2ad1023c-ef18-4c85-8131-6bf42d89f0fe" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7e60b455-a37d-428b-92bc-6a0ca37715a1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *parqu 
\entryTyp root 
\gENG irrigate 
\gSPN regar 
\e *parqu 
\c V2 
\ach pargu 
\akh parqu 
\acl pargu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pargo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl parqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl parqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame parqu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="786bb598-3b9c-49b8-9ed8-b31813a473f9" ownerguid="50511a02-278a-496c-9073-30ea2b59a80c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="1a24de53-ec60-4d06-bf28-f15438e30590" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="786cfbf5-9710-4009-bbaa-8c6209c67199" ownerguid="78ccab71-20ea-48cd-9a27-15ed781f3b17"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tent</AUni> -<AUni ws="es">carpa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b6cbf828-24fb-460e-b5b9-d26e71bd6aaf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="78710e49-f4c8-48c0-a274-ce992fd83c94" ownerguid="ff79e15f-55f4-496a-83f3-0ff39fbd5963"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="e13adfd9-6a87-4765-b067-82ccf814a8af" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="78710fae-dfd3-4166-b350-10be1444670f" ownerguid="60316512-ccfc-44b5-bde5-9c327a76895b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="78711cfe-9f16-4bbe-aad7-c10e9158ad67" ownerguid="cfbdcee7-ca83-423e-97c2-4eb7267e6dec"> -<Form> -<AUni ws="qvm-x-ach">lindëru</AUni> -<AUni ws="qvm-x-acl">lindëru; lindëru; lindëro</AUni> -<AUni ws="qvm-x-akh">lindëru</AUni> -<AUni ws="qvm-x-akl">lindëru; lindëru; lindëro</AUni> -<AUni ws="qvm-x-ame">lindëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7874a589-a19d-436a-8b88-1e890963f0fd" ownerguid="21461d78-02f9-4be6-80e3-6a4498ce8f4c"> -<ExampleWords> -<AUni ws="en">prisoner of war, captive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a prisoner of war?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="7874accf-8584-4739-bdb0-3da6b06f7507" ownerguid="14e6ffd2-75db-4fce-84df-725aac9f55fb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63e241cb-3471-43ad-8545-4d005f632d4d" t="r" /> -</Morph> -<Msa> -<objsur guid="d3b5839a-9f79-4b2d-96b3-8cee7717866b" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="78788607-db9c-49d0-9698-2b17f90e1852" ownerguid="5450043d-907b-4884-a9e5-35cfd5935947"> -<ExampleWords> -<AUni ws="en">be naked, nakedness, nude, nudity, unclothed, nothing on, not have anything on, stripped, bare, expose (oneself)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being naked?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="787903df-82da-45af-b288-96ebb09e5adc" ownerguid="cd25cd4f-8f3f-4677-9c60-6967bea5fa3d"> -<Form> -<AUni ws="qvm-x-ach">sortëja</AUni> -<AUni ws="qvm-x-acl">sortëja</AUni> -<AUni ws="qvm-x-akh">sortëja</AUni> -<AUni ws="qvm-x-akl">sortëja</AUni> -<AUni ws="qvm-x-ame">sortëja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="787a91ea-99bb-4965-94f2-fcef144aee12"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pagchi</AUni> -<AUni ws="qvm-x-acl">pagchi; pagche</AUni> -<AUni ws="qvm-x-akh">paqchi</AUni> -<AUni ws="qvm-x-akl">paqchi; paqche</AUni> -<AUni ws="qvm-x-ame">paqchi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*paqtri</AUni> -<AUni ws="qvm-x-acl">*paqtri</AUni> -<AUni ws="qvm-x-akh">*paqtri</AUni> -<AUni ws="qvm-x-akl">*paqtri</AUni> -<AUni ws="qvm-x-ame">*paqtri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.709" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6d23acfb-bbac-4830-af34-de164aa968b6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*paqtri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c5d10af2-b4d8-4955-ab33-2631f89f489c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="39a5be25-5d19-4606-b778-283afe53c51a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *paqtri 
\entryTyp root 
\gENG clap 
\gSPN palmear 
\e *paqtri 
\c V1 
\mp +FinalI 
\ach pagchi 
\akh paqchi 
\acl pagchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pagche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl paqchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl paqche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame paqchi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="787d1d20-55d6-44c1-b2be-163dd85d395e" ownerguid="6ae44dd0-08c7-4556-99a6-d2b2b1c6ba54"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="787d4673-77e5-40c6-9fca-8895445a73ba" ownerguid="49c878dd-277f-4bc9-b8ad-9ba192709108"> -<ExampleWords> -<AUni ws="en">tom, tomcat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to male or female cats?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="787da344-8c33-4d3e-84a6-ec7a7b8346da"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tantiya</AUni> -<AUni ws="qvm-x-acl">tantiya</AUni> -<AUni ws="qvm-x-akh">tantiya</AUni> -<AUni ws="qvm-x-akl">tantiya</AUni> -<AUni ws="qvm-x-ame">tantiya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tantear.v2</AUni> -<AUni ws="qvm-x-acl">+tantear.v2</AUni> -<AUni ws="qvm-x-akh">+tantear.v2</AUni> -<AUni ws="qvm-x-akl">+tantear.v2</AUni> -<AUni ws="qvm-x-ame">+tantear.v2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.805" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="941b41f1-4cf2-4b8e-944e-ccd2da7e485e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tantear.v2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b4c17095-15c8-4589-90b8-2e39be8bff56" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="860e9f4b-8f57-4085-b536-cb73a2a72cff" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tantear.v2 
\entryTyp root 
\gENG understand 
\gSPN comprender 
\e +tantear.v2 
\c V2 
\mp +assimilated 
\ach tantiya 
\akh tantiya 
\acl tantiya 
\akl tantiya 
\ame tantiya 
\mcc +tantear.v2 / _... [trans] 
\mcc +tantear.v2 / ~_ CAUS 
\co (De tanto).</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="787e6b7a-9155-4797-a705-41781e412298" ownerguid="f29dccae-1654-4eb7-8aae-04f7df4fe90c"> -<ExampleWords> -<AUni ws="en">right, proper, acceptable, appropriate, apt, correct, fitting, suitable, be the done thing, be the way it's done, in keeping with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something someone does that is right for a particular situation?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="787e73b6-84a8-45dd-99cc-170258492e7f" ownerguid="4cfcbc1d-84f3-466d-84d1-55ddb4998ea2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">throw.out</AUni> -<AUni ws="es">botar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6da469f9-1f0c-4335-acc0-6c49a7bb5c21" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="78817312-bcf4-4af2-b77b-9f3bb767c3f9" ownerguid="d9623ade-d8f3-468e-b8e5-da86de118287"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="037af6e5-b47e-46cc-ace2-ab08e59c0604" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="7882b4f2-aea5-47a3-b5ca-f774de936b26" ownerguid="81ec7da6-ca8f-4b05-acd0-6471c9afcb2c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">great</AUni> -<AUni ws="es">bis</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9077b48d-7c41-4855-b02d-a5899ce72180" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="7882ca8e-4665-4fa1-95e2-aee4752aff63" ownerguid="a9ad35b9-7190-4589-8381-51f72ee80b56"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="788609d7-ea80-4813-aabb-8837acc21fd4" ownerguid="470a2533-b4f5-47bb-a8a1-1b1322b66049"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1 V2/V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">AFAR</AUni> -<AUni ws="es">LEJ</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="84097b64-d9df-441f-a9d3-d11d4b9d9ea0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="78868225-716e-4197-a0ba-41898519261f" ownerguid="99c51a2c-ad49-48a6-bb0b-f059da745ec4"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John gave Mary a ring.</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(2) In English the Recipient can be the object, but many languages do not allow this.</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7886dfc0-53d0-465c-b58f-3b05c61f32c8" ownerguid="b0feb82b-7981-49f0-8611-bf674064ec33"> -<Form> -<AUni ws="qvm-x-ach">tesorëru</AUni> -<AUni ws="qvm-x-acl">tesorëru; tesorëru; tesorëro</AUni> -<AUni ws="qvm-x-akh">tesorëru</AUni> -<AUni ws="qvm-x-akl">tesorëru; tesorëru; tesorëro</AUni> -<AUni ws="qvm-x-ame">tesorëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="78883e8e-3b07-481e-901c-499520adf775" ownerguid="45d867c7-8496-4c92-bb41-b7db5db47717"> -<ExampleWords> -<AUni ws="en">brawny, burly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe someone who is fat and strong?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="788e03b3-ed03-4f60-88c3-e4b81b2b4e3e" ownerguid="22dba64d-28de-40f7-9e78-18a38f30642b"> -<Form> -<AUni ws="qvm-x-ach">wilapa</AUni> -<AUni ws="qvm-x-acl">wilapa</AUni> -<AUni ws="qvm-x-akh">wilapa</AUni> -<AUni ws="qvm-x-akl">wilapa</AUni> -<AUni ws="qvm-x-ame">wilapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="788e642b-0327-4f6d-afc2-bab7436cae3c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ofrenda</AUni> -<AUni ws="qvm-x-acl">ofrenda</AUni> -<AUni ws="qvm-x-akh">ofrenda</AUni> -<AUni ws="qvm-x-akl">ofrenda</AUni> -<AUni ws="qvm-x-ame">ofrenda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ofrenda</AUni> -<AUni ws="qvm-x-acl">+ofrenda</AUni> -<AUni ws="qvm-x-akh">+ofrenda</AUni> -<AUni ws="qvm-x-akl">+ofrenda</AUni> -<AUni ws="qvm-x-ame">+ofrenda</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.618" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="479a0e58-d6f4-44a5-846b-49046d94b3e3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ofrenda</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5c566a6b-3fed-4fce-928b-3cb351420389" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6a5bd3e3-5f4e-49cd-a78e-4123e525b379" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ofrenda 
\entryTyp root 
\gENG offering 
\gSPN ofrenda 
\e +ofrenda 
\c N0 
\ach ofrenda 
\akh ofrenda 
\acl ofrenda 
\akl ofrenda 
\ame ofrenda</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="7894549a-9068-4dfa-94e0-f5b6ffe1eacd" ownerguid="eac75aca-e508-480f-9b86-36cb0c904578"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">catholic</AUni> -<AUni ws="es">católico</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="eaaf66fa-a6b2-46a1-aca4-97d997736d99" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="78973037-250f-43fe-8e0a-46e0cd388d22" ownerguid="4f19ab95-428a-4a0b-a069-ca8be6b72b08"> -<ExampleWords> -<AUni ws="en">stay overnight, stay with, have a sleepover</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to visiting over a night?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7899056c-860f-4ef2-bfe9-4215f57c8bc4" ownerguid="7214fcfd-0c0d-41fb-939e-8ae18626a61f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">go.down</AUni> -<AUni ws="es">bajar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2adf0549-e19f-48af-8109-8822f51ac1ee" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="7899d4e0-16b1-41d2-af08-95aaa5c5bd5a" ownerguid="2049d587-5ba1-420d-ad86-d9ada997e069"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7899d602-5315-4f31-8301-9202ee2e1406" ownerguid="56e1564e-0c93-4aee-b410-bffad68e7980"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="789a9bad-d9ef-45a6-ab88-1f66e0f9c337" ownerguid="8fdc9b23-20ed-46c9-aa61-5b47501acff7"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="789acf1f-932f-4e95-b9dd-23422aea34da"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">envidio:su</AUni> -<AUni ws="qvm-x-acl">envidio:su; envidio:su; envidio:so</AUni> -<AUni ws="qvm-x-akh">envidio:su</AUni> -<AUni ws="qvm-x-akl">envidio:su; envidio:su; envidio:so</AUni> -<AUni ws="qvm-x-ame">envidio:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+envidioso.1</AUni> -<AUni ws="qvm-x-acl">+envidioso.1</AUni> -<AUni ws="qvm-x-akh">+envidioso.1</AUni> -<AUni ws="qvm-x-akl">+envidioso.1</AUni> -<AUni ws="qvm-x-ame">+envidioso.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.477" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9d1e38af-2578-47e8-a7d5-b8b0ca965de9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+envidioso.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="62eeb856-b466-418a-82e7-83eb291873ea" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2144eeab-4f3b-4482-8bdd-80db990741c8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +envidioso.1 
\entryTyp root 
\gENG jealous 
\gSPN envidioso 
\e +envidioso.1 
\c N0 
\ach envidio:su 
\akh envidio:su 
\acl envidio:su / _# 
\acl envidio:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl envidio:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl envidio:su / _# 
\akl envidio:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl envidio:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame envidio:su</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="789add20-33d4-440c-9d8f-92f41e492adf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chicnu</AUni> -<AUni ws="qvm-x-acl">chicnu; chicnu; chicno</AUni> -<AUni ws="qvm-x-akh">chiknu</AUni> -<AUni ws="qvm-x-akl">chiknu; chiknu; chikno</AUni> -<AUni ws="qvm-x-ame">chiknu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*triknu</AUni> -<AUni ws="qvm-x-acl">*triknu</AUni> -<AUni ws="qvm-x-akh">*triknu</AUni> -<AUni ws="qvm-x-akl">*triknu</AUni> -<AUni ws="qvm-x-ame">*triknu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.107" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="66faff10-589a-424c-982f-461bebe63fd6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*triknu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2a9ef917-25e7-43c8-93a6-555f4f0cb203" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="98083c2e-f677-45f7-912d-2069621e3ccf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *triknu 
\entryTyp root 
\gENG 
\gSPN 
\e *triknu 
\c N0 
\ach chicnu 
\akh chiknu 
\acl chicnu / _# 
\acl chicnu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chicno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chiknu / _# 
\akl chiknu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chikno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chiknu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="78a17f2c-d97d-40ab-9620-ddf1929e9bf7" ownerguid="0db5817e-05bf-4703-a6b9-e239ac44f857"> -<ExampleWords> -<AUni ws="en">sexual</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something to do with the sex of a person?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="78a4522f-0fdb-4076-8938-f243788afd57" ownerguid="a2ce1453-9832-447c-9481-70c9e2da4227"> -<ExampleWords> -<AUni ws="en">irrigate, irrigation, irrigation canal, to water</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What tools and machines are used to water plants?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="78a583ac-7a74-4c28-ab2b-be0d96ed6d7a" ownerguid="468965f6-d3df-4f2a-aebd-67d3a371a775"> -<Form> -<AUni ws="qvm-x-ach">älla</AUni> -<AUni ws="qvm-x-acl">älla</AUni> -<AUni ws="qvm-x-akh">älla</AUni> -<AUni ws="qvm-x-akl">älla</AUni> -<AUni ws="qvm-x-ame">älla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="78a977cb-31d3-4a4a-b2a5-8cbbd69a7c6a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">prefectu; prefecto</AUni> -<AUni ws="qvm-x-acl">prefectu; prefectu; prefecto</AUni> -<AUni ws="qvm-x-akh">prefectu; prefecto</AUni> -<AUni ws="qvm-x-akl">prefectu; prefectu; prefecto</AUni> -<AUni ws="qvm-x-ame">prefectu; prefecto</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+prefecto</AUni> -<AUni ws="qvm-x-acl">+prefecto</AUni> -<AUni ws="qvm-x-akh">+prefecto</AUni> -<AUni ws="qvm-x-akl">+prefecto</AUni> -<AUni ws="qvm-x-ame">+prefecto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.911" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="443687e1-5e4c-4fd4-b53c-60addf440e2a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+prefecto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e233f98c-7064-4101-a273-271196278937" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="24af8838-b9c2-43d9-b4b6-4ce8286544e7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +prefecto 
\entryTyp root 
\gENG 
\gSPN 
\e +prefecto 
\c N0 
\ach prefectu / ~_# 
\ach prefecto / _# 
\akh prefectu / ~_# 
\akh prefecto / _# 
\acl prefectu / ~_# 
\acl prefectu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl prefecto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl prefectu / ~_# 
\akl prefectu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl prefecto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame prefectu / ~_# 
\ame prefecto / _# 
\i DAN 3.27 Yargamuptinmi paycuna cagman nación mandäshegnincuna, prefectucuna, gobernadorcuna y yätsicogcuna ricananpag juntacargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="78aa144c-033b-4b1f-9805-a42f11cfcae8" ownerguid="effc49dd-6322-4302-899c-4cf540f0e2e4"> -<ExampleWords> -<AUni ws="en">meat dish, main dish, main course</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What general words refer to a food made primarily from meat?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="78ae595d-ca38-40e4-89de-ef042b4d8aab"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ma:ña</AUni> -<AUni ws="qvm-x-acl">ma:ña</AUni> -<AUni ws="qvm-x-akh">ma:ña</AUni> -<AUni ws="qvm-x-akl">ma:ña</AUni> -<AUni ws="qvm-x-ame">ma:ña</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ma:ña</AUni> -<AUni ws="qvm-x-acl">*ma:ña</AUni> -<AUni ws="qvm-x-akh">*ma:ña</AUni> -<AUni ws="qvm-x-akl">*ma:ña</AUni> -<AUni ws="qvm-x-ame">*ma:ña</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.325" /> -<DateModified val="2022-10-10 21:18:47.217" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9bf5702e-0bd8-4dcc-9579-0f76bc39bf5a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ma:ña</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d59ec535-3c61-4236-beb6-f092af62cf05" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cca3cfaa-f753-436f-b5a3-4bf658923cb0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ma:ña 
\entryTyp root 
\gENG 
\gSPN 
\e *ma:ña 
\c V1 
\ach ma:ña 
\akh ma:ña 
\acl ma:ña 
\akl ma:ña 
\ame ma:ña</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="78b0ad1b-0766-41ba-b788-d176addd5e9f" ownerguid="1e9a0881-f715-4057-9af8-251cb8eec9da"> -<Abbreviation> -<AUni ws="en">3.5.1.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to speaking a little, either because you do not like to talk, or you think you should not talk.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Speak little</AUni> -</Name> -<Questions> -<objsur guid="bc5a97ca-0f37-40f8-9db7-2881005975ce" t="o" /> -<objsur guid="74b23e5e-301a-4d38-8c3a-cb949b85ee5e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="78b0bd2a-0d52-4b44-8b50-b1f37520a2bb" ownerguid="d395edc8-fb58-4ba4-8446-dacf8ea0477a"> -<ExampleWords> -<AUni ws="en">bathe, use deodorant, wash clothes, wipe sweat from your forehead</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What do people do about sweat?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="78b10399-81b3-4bba-a17b-b811cdea46ef"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">clausu:ra</AUni> -<AUni ws="qvm-x-acl">clausu:ra</AUni> -<AUni ws="qvm-x-akh">clausu:ra</AUni> -<AUni ws="qvm-x-akl">clausu:ra</AUni> -<AUni ws="qvm-x-ame">clausu:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+clausura</AUni> -<AUni ws="qvm-x-acl">+clausura</AUni> -<AUni ws="qvm-x-akh">+clausura</AUni> -<AUni ws="qvm-x-akl">+clausura</AUni> -<AUni ws="qvm-x-ame">+clausura</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.132" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7cb4dfc5-49e3-4a87-ad65-b1801083988a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+clausura</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a61d37dd-dcba-42c1-b305-55d31e8e7fa0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="74a275f2-f2b1-4196-9b9a-c9a8bc47c455" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +clausura 
\entryTyp root 
\gENG graduation 
\gSPN clausura 
\e +clausura 
\c N0 
\ach clausu:ra 
\akh clausu:ra 
\acl clausu:ra 
\akl clausu:ra 
\ame clausu:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoInflAffMsa" guid="78b4abbf-5b84-4215-b706-3b23cbb0dd3d" ownerguid="fb2de51f-da06-435c-8dcf-320f193f47bc"> -<PartOfSpeech> -<objsur guid="a4fc78d6-7591-4fb3-8edd-82f10ae3739d" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="f9e1228b-4c5b-4e23-bd04-d513eddcbaea" t="r" /> -</Slots> -</rt> -<rt class="PunctuationForm" guid="78b8c0a2-8b0a-4c15-b358-8f84a76d7a50"> -<Form> -<Str> -<Run ws="en">te</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="78ba2f2e-6cbb-452c-ba42-acab0750a15b" ownerguid="b0905fa9-2f90-410b-8eb5-7c7944c4f0f9"> -<ExampleWords> -<AUni ws="en">commit adultery, adultery, be unfaithful, cheat on, two-time, sow wild oats, infidelity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to sex with a person you are not married to?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="78bf0de0-e54a-446a-9ccd-79dace661e64"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">junag</AUni> -<AUni ws="qvm-x-acl">junag</AUni> -<AUni ws="qvm-x-akh">junaq</AUni> -<AUni ws="qvm-x-akl">junaq</AUni> -<AUni ws="qvm-x-ame">hunaq</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hunaq</AUni> -<AUni ws="qvm-x-acl">*hunaq</AUni> -<AUni ws="qvm-x-akh">*hunaq</AUni> -<AUni ws="qvm-x-akl">*hunaq</AUni> -<AUni ws="qvm-x-ame">*hunaq</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.761" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c52a56a5-e19d-430e-8ebc-ea403d8bfc03" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hunaq</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2a41474f-1dff-4f68-a787-65d99d7936a2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9ba89bb6-2261-43bf-a292-242d714b0170" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hunaq 
\entryTyp root 
\gENG day 
\gSPN día 
\e *hunaq 
\c N0 
\mp +FinalC 
\ach junag 
\akh junaq 
\acl junag 
\akl junaq 
\ame hunaq</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="78c4c93f-a4af-4325-a119-e79ec9cabcb2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">putca</AUni> -<AUni ws="qvm-x-acl">putca</AUni> -<AUni ws="qvm-x-akh">putka</AUni> -<AUni ws="qvm-x-akl">putka</AUni> -<AUni ws="qvm-x-ame">putka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*putka.n</AUni> -<AUni ws="qvm-x-acl">*putka.n</AUni> -<AUni ws="qvm-x-akh">*putka.n</AUni> -<AUni ws="qvm-x-akl">*putka.n</AUni> -<AUni ws="qvm-x-ame">*putka.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.44" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7a40d7bd-e2a4-48f5-a300-68df6a75fbc5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*putka.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a7e30d0d-25f7-4754-b22c-3becbebb3328" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4a146fa6-8cdf-4d5a-a5b3-2a3b92afed2f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *putka.n 
\entryTyp root 
\gENG 
\gSPN 
\e *putka.n 
\c N0 
\ach putca 
\akh putka 
\acl putca 
\akl putka 
\ame putka 
\i EZK 34.19 ¿Tsaynogpis jarucur putcatashgayqui yacutatsurag uponga?</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="78c94df1-9f7a-4b71-981a-3fc1c3a5d7d7" ownerguid="965f9204-b884-4952-b2fd-2c95379ca9a7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="45074b2a-a799-4809-93c4-ef1718362d08" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="18ff083f-a708-4124-8895-343dabe9bb35" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="78ccab71-20ea-48cd-9a27-15ed781f3b17"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">carpa</AUni> -<AUni ws="qvm-x-acl">carpa</AUni> -<AUni ws="qvm-x-akh">carpa</AUni> -<AUni ws="qvm-x-akl">carpa</AUni> -<AUni ws="qvm-x-ame">carpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+carpa</AUni> -<AUni ws="qvm-x-acl">+carpa</AUni> -<AUni ws="qvm-x-akh">+carpa</AUni> -<AUni ws="qvm-x-akl">+carpa</AUni> -<AUni ws="qvm-x-ame">+carpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.70" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5eb965eb-eeb8-47e9-b4e6-9e250f8e6423" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+carpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b6cbf828-24fb-460e-b5b9-d26e71bd6aaf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="786cfbf5-9710-4009-bbaa-8c6209c67199" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +carpa 
\entryTyp root 
\gENG tent 
\gSPN carpa 
\e +carpa 
\c N0 
\ach carpa 
\akh carpa 
\acl carpa 
\akl carpa 
\ame carpa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="78ccbe71-5d7a-4d2b-bdff-619fdbd9949d" ownerguid="f3261176-07d9-4d8f-872d-bbd6fa91c924"> -<Form> -<AUni ws="qvm-x-ach">diablu; diablo</AUni> -<AUni ws="qvm-x-acl">diablu; diablu; diablo</AUni> -<AUni ws="qvm-x-akh">diablu; diablo</AUni> -<AUni ws="qvm-x-akl">diablu; diablu; diablo</AUni> -<AUni ws="qvm-x-ame">diablu; diablo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="78cff54d-a29e-4353-8069-2130629e4f8a" ownerguid="65f09e08-0ad8-4540-a584-a3723218b553"> -<Form> -<AUni ws="qvm-x-ach">präwa</AUni> -<AUni ws="qvm-x-acl">präwa</AUni> -<AUni ws="qvm-x-akh">präwa</AUni> -<AUni ws="qvm-x-akl">präwa</AUni> -<AUni ws="qvm-x-ame">präwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="78d38f3e-1054-47b2-adc3-5be9007b0cf4" ownerguid="acb27c0f-0c18-4c10-b711-a896fa822fad"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cho</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cho</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">cho</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">cho</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">chaw</Run> -</AStr> -</Form> -<Morph> -<objsur guid="c03b522c-63ca-40a9-8286-d70f0806d805" t="r" /> -</Morph> -<Msa> -<objsur guid="d6e21f0e-f17e-413e-b186-416974e463f1" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="78d75430-8f90-47d3-8da1-a03c1f741818" ownerguid="f89a6e08-7ed6-41aa-930a-5bb555ad44fe"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="78da2c5a-d39c-4a39-98de-5c8b8d189e6d" ownerguid="9fc25175-3b4a-4248-bc7f-b86012ec584f"> -<ExampleWords> -<AUni ws="en">gas can, jerry can</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What containers are used to hold liquid fuels?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="78dd1761-8403-4319-8b2d-a72f10256dc3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">walya</AUni> -<AUni ws="qvm-x-acl">walya</AUni> -<AUni ws="qvm-x-akh">walya</AUni> -<AUni ws="qvm-x-akl">walya</AUni> -<AUni ws="qvm-x-ame">walya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*walya</AUni> -<AUni ws="qvm-x-acl">*walya</AUni> -<AUni ws="qvm-x-akh">*walya</AUni> -<AUni ws="qvm-x-akl">*walya</AUni> -<AUni ws="qvm-x-ame">*walya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.444" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0e8163f7-12e6-434d-8dbc-ec436acee44b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*walya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1d2c5ff9-4bf2-46f1-b5f3-67073ffe0468" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8ecf252d-29f6-4392-b6f0-4781d0b2c73f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *walya 
\entryTyp root 
\gENG heat 
\gSPN calentar 
\e *walya 
\c V1 
\ach walya 
\akh walya 
\acl walya 
\akl walya 
\ame walya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="78dd39ff-9ac8-477d-b25e-5b0975f9eb16" ownerguid="756728a8-9eb8-4329-aee2-d6a3d64585f2"> -<ExampleWords> -<AUni ws="en">melting point, freezing point, dew point, boiling point</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the temperature at which things change?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="78dfc1fd-5b0f-4944-951b-9172333573e1" ownerguid="4644ee64-a0db-4cec-97c2-16fcf1688838"> -<Form> -<AUni ws="qvm-x-ach">penitencia</AUni> -<AUni ws="qvm-x-acl">penitencia</AUni> -<AUni ws="qvm-x-akh">penitencia</AUni> -<AUni ws="qvm-x-akl">penitencia</AUni> -<AUni ws="qvm-x-ame">penitencia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="78e1872e-7c28-47f6-bc25-091139710f44" ownerguid="f8e9778a-93f5-431d-8c9f-7fc4d90e45f7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="78e37c6a-9582-4c14-a495-43eb1171df88"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cucun</AUni> -<AUni ws="qvm-x-acl">cucun</AUni> -<AUni ws="qvm-x-akh">kukun</AUni> -<AUni ws="qvm-x-akl">kukun</AUni> -<AUni ws="qvm-x-ame">kukun</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kukun</AUni> -<AUni ws="qvm-x-acl">*kukun</AUni> -<AUni ws="qvm-x-akh">*kukun</AUni> -<AUni ws="qvm-x-akl">*kukun</AUni> -<AUni ws="qvm-x-ame">*kukun</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.3" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9fe7447d-dad4-4f27-a537-5cf9a59348a7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kukun</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b28ef121-f4b0-42f4-b6fb-1b6b90e5e6c5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8a1e084b-f492-4ebc-818c-664831e9b63c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kukun 
\entryTyp root 
\gENG chief 
\gSPN jefe 
\e *kukun 
\c N0 
\mp +FinalC 
\ach cucun 
\akh kukun 
\acl cucun 
\akl kukun 
\ame kukun</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="78e409af-8d96-4e25-9ee7-7163c3bbe180" ownerguid="8583bfe9-2f9c-4eb5-817c-ad98c5b05acb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fertilize</AUni> -<AUni ws="es">abonar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a80099cd-6e7f-442c-9747-bd06091a4114" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="78e69fe7-3b10-4c63-978c-ad8026cd9808"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">acusa</AUni> -<AUni ws="qvm-x-acl">acusa</AUni> -<AUni ws="qvm-x-akh">acusa</AUni> -<AUni ws="qvm-x-akl">acusa</AUni> -<AUni ws="qvm-x-ame">acusa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+acusar</AUni> -<AUni ws="qvm-x-acl">+acusar</AUni> -<AUni ws="qvm-x-akh">+acusar</AUni> -<AUni ws="qvm-x-akl">+acusar</AUni> -<AUni ws="qvm-x-ame">+acusar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.629" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2f1fc2cd-042b-40c1-b6de-b91989d80a6d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+acusar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9c5524e4-e0dd-4d3c-9f72-0d1be7e50ce1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="27423fe5-3716-4bfb-a42b-d20e5b78167f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +acusar 
\entryTyp root 
\gENG acuse 
\gSPN reprender 
\e +acusar 
\c V2 
\ach acusa 
\akh acusa 
\acl acusa 
\akl acusa 
\ame acusa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="78e6e00a-485e-4314-ab38-e7a61a7e4652" ownerguid="362a2bdd-985e-4bc0-a41c-358bd1babb12"> -<ExampleWords> -<AUni ws="en">espionage, counter espionage, covert operations, intelligence gathering</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the activity of spying?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="78e87d50-fc3c-465f-977f-4aed813a47c0" ownerguid="f47d681b-4f0d-43ca-a465-2e1724825752"> -<ExampleWords> -<AUni ws="en">descendant, offshoot, offspring, posterity, progeny, line</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to your descendants?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="78e89910-e3d6-484d-8afc-cc0e4e6986a7" ownerguid="607b5d6f-7721-4851-98c2-2c0eda05370e"> -<Form> -<AUni ws="qvm-x-ach">policía; policia</AUni> -<AUni ws="qvm-x-acl">policía; policia</AUni> -<AUni ws="qvm-x-akh">policía; policia</AUni> -<AUni ws="qvm-x-akl">policía; policia</AUni> -<AUni ws="qvm-x-ame">policía; policia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="78e89dd6-63de-4790-951f-7fc979548e59"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chacha</AUni> -<AUni ws="qvm-x-acl">chacha</AUni> -<AUni ws="qvm-x-akh">chacha</AUni> -<AUni ws="qvm-x-akl">chacha</AUni> -<AUni ws="qvm-x-ame">chacha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chacha</AUni> -<AUni ws="qvm-x-acl">*chacha</AUni> -<AUni ws="qvm-x-akh">*chacha</AUni> -<AUni ws="qvm-x-akl">*chacha</AUni> -<AUni ws="qvm-x-ame">*chacha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.254" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5531a8b4-9211-4096-bf50-f30a3f93f344" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chacha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9f8f607d-37a2-483e-914e-4f0473b29c30" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="74bc1e18-0449-428e-bf63-f7bf5b009ffb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chacha 
\entryTyp root 
\gENG old.lady 
\gSPN anciana 
\e *chacha 
\c N0 
\ach chacha 
\akh chacha 
\acl chacha 
\akl chacha 
\ame chacha</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="78ea359d-642b-4596-a342-305385c26caf" ownerguid="dfa0c0ca-ecb3-41a6-a1fc-5a3cfecee9d9"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="78ee36f3-ec9d-454d-ae94-067fc167287d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shanari</AUni> -<AUni ws="qvm-x-acl">shanari; shanare</AUni> -<AUni ws="qvm-x-akh">shanari</AUni> -<AUni ws="qvm-x-akl">shanari; shanare</AUni> -<AUni ws="qvm-x-ame">shanari</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shanari</AUni> -<AUni ws="qvm-x-acl">*shanari</AUni> -<AUni ws="qvm-x-akh">*shanari</AUni> -<AUni ws="qvm-x-akl">*shanari</AUni> -<AUni ws="qvm-x-ame">*shanari</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.539" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="35ef5de3-54ad-4393-9d81-69ded6337bf5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shanari</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f4c212d6-5c99-4916-9e2c-ad885b73e473" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="092eb0d5-f2a5-4fa8-a7bb-1f70cff6caab" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shanari 
\entryTyp root 
\gENG have.fever 
\gSPN tener.fiebre 
\e *shanari 
\c V1 
\mp +FinalI 
\ach shanari 
\akh shanari 
\acl shanari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shanare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shanari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shanare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shanari</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="78ef22e1-b133-4834-a2a3-7b2869cf743a" ownerguid="91a89394-ff69-496a-9155-2b02a4fe241d"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 9.23 Paycunami Salomón arutsishgan faynacho arogcunata controlag.</Run> -</AStr> -</Example> -</rt> -<rt class="MoDerivAffMsa" guid="78ef9b8e-8c76-4a50-bf41-d7eda1077fdf" ownerguid="2574c8e7-7940-4952-b911-9e5ee9f63015"> -<FromPartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</FromPartOfSpeech> -<ToPartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</ToPartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="78efd21c-0956-475b-9a61-1024f3a127b6" ownerguid="3f2a2fc1-284f-4ee3-a5bd-62123a87d4c1"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="78f3c1d2-91e5-4205-a2e0-6f7e6ddf81bf" ownerguid="26f60a4b-11d5-435a-8dbd-ac29c06c14f6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mud</AUni> -<AUni ws="es">barro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8fa45805-f4f4-47e0-ab15-7ea16ba9133f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="78f4db70-92b5-4cbf-ad47-43a8d1868a6a" ownerguid="e49f4e94-6050-40c3-978e-a688d0a45b4d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="78f5c50f-798d-4b91-957a-e9d9652da02f" ownerguid="683f570a-0bfe-4a97-b55d-4319b328508b"> -<ExampleWords> -<AUni ws="en">dig (a well), drill (a well), sink (a bore hole)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to digging a well?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="78f6d63c-b1aa-4eb9-bde6-338f8bf9a907" ownerguid="64493789-1c2c-4b24-a7e6-f00ff9be923e"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Does this pot have a <use>?</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">use (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the activity that something is used for?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="78f7f0c3-f15d-413e-87b5-97c94151d9b5" ownerguid="b8e633f7-ca67-40cb-84e7-8b42887d161b"> -<ExampleWords> -<AUni ws="en">Epicurean, Stoic, school (of thought)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a group of philosophers?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="78f8926f-82ad-455c-b171-fb982948c239"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">vientu</AUni> -<AUni ws="qvm-x-acl">vientu; viento</AUni> -<AUni ws="qvm-x-akh">vientu</AUni> -<AUni ws="qvm-x-akl">vientu; viento</AUni> -<AUni ws="qvm-x-ame">vientu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+viento.1</AUni> -<AUni ws="qvm-x-acl">+viento.1</AUni> -<AUni ws="qvm-x-akh">+viento.1</AUni> -<AUni ws="qvm-x-akl">+viento.1</AUni> -<AUni ws="qvm-x-ame">+viento.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.394" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4c076202-ba35-4f78-a649-be9bc98964d6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+viento.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d8514a71-bfb1-44ff-a25c-5896283bd948" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cc43b52c-90f5-42a8-80f8-ff1039edff41" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +viento.1 
\entryTyp root 
\gENG wind 
\gSPN viento 
\e +viento.1 
\c V1 
\mp +assimilated 
\ach vientu 
\akh vientu 
\acl vientu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl viento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl vientu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl viento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame vientu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="78f8d3f8-64f3-4906-8dc5-0aab2135e337" ownerguid="8497fb66-8b91-46b9-a0d5-fb9385319561"> -<ExampleWords> -<AUni ws="en">taste, flavor, tang, aftertaste, hint, savor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the taste of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="78fa2d13-99e3-41ee-8b4e-df2d846c0515" ownerguid="3aafd578-e2b0-496b-a632-2e78e88c22a4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="63524f74-763c-4e45-858d-34e637785aac" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="993ad8fe-a9a4-4288-b58a-006dc1b2496b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="78fa8e5e-9d52-47be-99df-37877922ade4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">casa</AUni> -<AUni ws="qvm-x-acl">casa</AUni> -<AUni ws="qvm-x-akh">casa</AUni> -<AUni ws="qvm-x-akl">casa</AUni> -<AUni ws="qvm-x-ame">casa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+casar.1</AUni> -<AUni ws="qvm-x-acl">+casar.1</AUni> -<AUni ws="qvm-x-akh">+casar.1</AUni> -<AUni ws="qvm-x-akl">+casar.1</AUni> -<AUni ws="qvm-x-ame">+casar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.72" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a556d488-2c6e-4b6d-b406-915a9fec3919" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+casar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="94c85502-f17e-43e0-b340-bf28970d9817" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9b28f06c-f972-4034-8f65-cd8846505e95" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +casar.1 
\entryTyp root 
\gENG to.marry 
\gSPN casarse 
\e +casar.1 
\c V1 
\ach casa 
\akh casa 
\acl casa 
\akl casa 
\ame casa 
\mcc +casar.1 / _ PRTSPM / _ PRTSPF</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="78fd31b9-6c87-4628-a305-877d98fb92dd" ownerguid="1c3c8af0-56b9-4617-862e-21f39b388606"> -<ExampleWords> -<AUni ws="en">go to your reward, be wasted, fall asleep, croak, depart, breathe your last, defunct, grim reaper</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What euphemisms and idioms are used to refer to death?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="78fd50d7-5cbe-4a77-9fcf-b8065d06bd1e" ownerguid="2ae33e10-d42f-492c-9429-f486fb613a7d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">na</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">na</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">na</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">na</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">na</Run> -</AStr> -</Form> -<Morph> -<objsur guid="99b46deb-a91d-4222-a9fc-6c1a15fed4be" t="r" /> -</Morph> -<Msa> -<objsur guid="a5b30965-e5c8-452a-9057-ed02c784d19b" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="78ffa0db-907d-438f-a9e4-97ead99be977" ownerguid="9c3e4586-e333-4771-8a8e-0054f5ba1801"> -<Form> -<AUni ws="qvm-x-ach">washamuru</AUni> -<AUni ws="qvm-x-acl">washamuru; washamuru; washamuro</AUni> -<AUni ws="qvm-x-akh">washamuru</AUni> -<AUni ws="qvm-x-akl">washamuru; washamuru; washamuro</AUni> -<AUni ws="qvm-x-ame">washamuru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoInflAffMsa" guid="7901bffa-960d-4e26-a36f-49cd9cb87071" ownerguid="c4133918-247c-46dc-991b-ce9ccd2d2ced"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="257de7fb-dab6-4b87-848b-3fbb8f5c3e04" t="r" /> -</Slots> -</rt> -<rt class="LexEntry" guid="790462ec-625c-44b3-a794-ed4339017602"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aytsa</AUni> -<AUni ws="qvm-x-acl">aytsa</AUni> -<AUni ws="qvm-x-akh">aytsa</AUni> -<AUni ws="qvm-x-akl">aytsa</AUni> -<AUni ws="qvm-x-ame">aytsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aycha</AUni> -<AUni ws="qvm-x-acl">*aycha</AUni> -<AUni ws="qvm-x-akh">*aycha</AUni> -<AUni ws="qvm-x-akl">*aycha</AUni> -<AUni ws="qvm-x-ame">*aycha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.900" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4345ebbb-679d-41b7-bef4-62e266ca4d95" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aycha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b23a7c89-50e9-4487-86fc-efee9a0243db" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="93708c48-dfaf-44ae-8623-1e8a74aeb5ce" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aycha 
\entryTyp root 
\gENG meat 
\gSPN carne 
\e *aycha 
\c N0 
\ach aytsa 
\akh aytsa 
\acl aytsa 
\akl aytsa 
\ame aytsa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="79097bf2-8519-4e4a-840a-84ec29c7ca1e" ownerguid="d1aecdba-3938-4b0c-a2e6-7dc3b7cc5cde"> -<ExampleWords> -<AUni ws="en">produce, make, manufacture, supply</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to producing wealth?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7909b8bc-221d-43ce-a4a3-13052517806c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wayra</AUni> -<AUni ws="qvm-x-acl">wayra</AUni> -<AUni ws="qvm-x-akh">wayra</AUni> -<AUni ws="qvm-x-akl">wayra</AUni> -<AUni ws="qvm-x-ame">wayra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wayra.n</AUni> -<AUni ws="qvm-x-acl">*wayra.n</AUni> -<AUni ws="qvm-x-akh">*wayra.n</AUni> -<AUni ws="qvm-x-akl">*wayra.n</AUni> -<AUni ws="qvm-x-ame">*wayra.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.625" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3568dadb-97a1-4d11-991f-9bc276301568" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wayra.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5dc9c776-94d5-41cb-bd16-26b9bb47506d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4a3d65c9-ff74-4db2-ad5a-8d4a5c58bc7a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wayra.n 
\entryTyp root 
\gENG wind 
\gSPN aire, viento 
\e *wayra.n 
\c N0 
\mp NeverMonophthongized 
\ach wayra 
\akh wayra 
\acl wayra 
\akl wayra 
\ame wayra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="790cb5f1-5b46-4ccc-b29f-099faaa9edaa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aceitu:nas</AUni> -<AUni ws="qvm-x-acl">aceitu:nas</AUni> -<AUni ws="qvm-x-akh">aceitu:nas</AUni> -<AUni ws="qvm-x-akl">aceitu:nas</AUni> -<AUni ws="qvm-x-ame">aceitu:nas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+aceitunas</AUni> -<AUni ws="qvm-x-acl">+aceitunas</AUni> -<AUni ws="qvm-x-akh">+aceitunas</AUni> -<AUni ws="qvm-x-akl">+aceitunas</AUni> -<AUni ws="qvm-x-ame">+aceitunas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.629" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="93139c3a-fead-42a2-8d56-4562e9cc6794" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+aceitunas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="80b6cd68-b0f2-41a6-a6bb-6faaa7e31a96" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5bd6e7de-1560-406a-8124-44e73985aded" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +aceitunas 
\entryTyp root 
\gENG olive 
\gSPN aceitunas 
\e +aceitunas 
\c N0 
\mp +FinalC 
\ach aceitu:nas 
\akh aceitu:nas 
\acl aceitu:nas 
\akl aceitu:nas 
\ame aceitu:nas</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="790df96d-8f22-4004-9506-89a32e25badd" ownerguid="2791f2fd-001c-4aa8-81fe-8062469d17fa"> -<Form> -<AUni ws="qvm-x-ach">payta</AUni> -<AUni ws="qvm-x-acl">payta</AUni> -<AUni ws="qvm-x-akh">payta</AUni> -<AUni ws="qvm-x-akl">payta</AUni> -<AUni ws="qvm-x-ame">payta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="790e5033-2eb7-4180-bf70-c8b84fedcd3a" ownerguid="d7cd6668-9bae-4d42-bca4-f870f4885424"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -<Sense> -<objsur guid="db6117c5-121c-433a-a891-e69950f55761" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="791088c0-636b-4452-9672-87536aa30183" ownerguid="035874f8-c759-4c87-a050-6e3f305cb6ac"> -<Form> -<AUni ws="qvm-x-ach">paca</AUni> -<AUni ws="qvm-x-acl">paca</AUni> -<AUni ws="qvm-x-akh">paka</AUni> -<AUni ws="qvm-x-akl">paka</AUni> -<AUni ws="qvm-x-ame">paka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="79118533-c776-4082-a10c-1d48be6c0bc2" ownerguid="025da6f4-b1b6-423a-8c0f-b324f531a6f1"> -<ExampleWords> -<AUni ws="en">bale, bouquet, bracken, brush, bunch, canopy, clump, cluster, cover, covert, corsage, crop, culture, forest, greenery, grove, growth, hassock, haystack, herbage, jungle, kelp, nosegay, orchard, scrub, sheaf, shock, shrubbery, skein, spray, stand, sward, thicket, tuft, turf, tussock, underbrush, undergrowth, vegetation, verdure, vermin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a group of plants?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7911c1cd-1831-48c8-b08d-d789ab9c2171" ownerguid="bdc50987-5450-4385-a5ab-43970ecf866f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">do</AUni> -<AUni ws="es">hacer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1926c011-b8c7-4363-ae71-d334b4fb65b4" t="r" /> -</MorphoSyntaxAnalysis> -<Custom name="Target Equivalent"> -<AStr ws="en"> -<Run ws="en">silfw://localhost/link?database%3dSouth+Conchucos%26tool%3dlexiconEdit%26guid%3d9a7bccdc-06bb-485c-bbdc-9c2109969dee%26tag%3d</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="7912c7a9-b5cb-49d3-aec1-1036d4bf5aa1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mane:ra</AUni> -<AUni ws="qvm-x-acl">mane:ra</AUni> -<AUni ws="qvm-x-akh">mane:ra</AUni> -<AUni ws="qvm-x-akl">mane:ra</AUni> -<AUni ws="qvm-x-ame">mane:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+manera</AUni> -<AUni ws="qvm-x-acl">+manera</AUni> -<AUni ws="qvm-x-akh">+manera</AUni> -<AUni ws="qvm-x-akl">+manera</AUni> -<AUni ws="qvm-x-ame">+manera</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.315" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="07fcb46b-5387-4dc7-ba2b-900d625b7251" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+manera</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="47403e3e-c778-4f3c-aefb-54ea6d418ee8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9507a1e1-aed5-4ed7-a8c8-f2099bc7f7c1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +manera 
\entryTyp root 
\gENG manners 
\gSPN manera 
\e +manera 
\c N0 
\ach mane:ra 
\akh mane:ra 
\acl mane:ra 
\akl mane:ra 
\ame mane:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="7913c766-0542-435b-ba67-54197cc4e786" ownerguid="bbfcbaec-e266-4522-80b2-16f41ac25603"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="79140357-b082-48e9-8d25-b34ee0a5ff5a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">capucha</AUni> -<AUni ws="qvm-x-acl">capucha</AUni> -<AUni ws="qvm-x-akh">kapucha</AUni> -<AUni ws="qvm-x-akl">kapucha</AUni> -<AUni ws="qvm-x-ame">kapucha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kaputra</AUni> -<AUni ws="qvm-x-acl">*kaputra</AUni> -<AUni ws="qvm-x-akh">*kaputra</AUni> -<AUni ws="qvm-x-akl">*kaputra</AUni> -<AUni ws="qvm-x-ame">*kaputra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.943" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="720f37b1-89b9-4caf-85c0-c4052b2db357" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kaputra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d210b04b-657d-4f72-8777-045e404e9bbd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="207314f7-0922-4e67-933e-743d6cb0b0fb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kaputra 
\entryTyp root 
\gENG 
\gSPN 
\e *kaputra 
\c N0 
\ach capucha 
\akh kapucha 
\acl capucha 
\akl kapucha 
\ame kapucha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="791571c3-597f-4895-82ed-0f630fa869f6" ownerguid="176dc633-782b-4e75-9704-62cc09b6774a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="f1bc86b8-03ea-46be-b586-9bcb57a20442" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">extra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="10cf0543-8e30-45b3-ab9a-6d039a917001" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="7917a032-4704-4ecd-bde0-bc0a89612317" ownerguid="6e5a4fd3-3971-4583-80b5-e66bd9e2b360"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.go.out</AUni> -<AUni ws="es">salir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1afedd8a-1478-44b0-8828-b5d955ebdf49" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="79205602-7409-46e6-9f2c-2b2ce91392f5" ownerguid="35da8e1e-d22b-422e-a143-2dfd31e96439"> -<Form> -<AUni ws="qvm-x-ach">träji; träji</AUni> -<AUni ws="qvm-x-acl">träji; träji; träje</AUni> -<AUni ws="qvm-x-akh">träji; träji</AUni> -<AUni ws="qvm-x-akl">träji; träji; träje</AUni> -<AUni ws="qvm-x-ame">träji; träji</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="7921806f-b6b6-46db-9d99-76bbdc52f64c" ownerguid="e3447274-2d76-4d2d-bc29-2000cc94760a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="Segment" guid="7923913a-85a9-4255-b613-6a33e2ae33be" ownerguid="a067c5ec-fc08-47da-98ba-acff5d70cac0"> -<BeginOffset val="108" /> -</rt> -<rt class="CmDomainQ" guid="792c804b-ff5a-4de6-8425-f3d7da9dac4e" ownerguid="82ecb5b3-9128-4b38-b9c5-612857417ceb"> -<ExampleWords> -<AUni ws="en">go off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to stopping liking something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="792d7024-5f31-4a07-8dce-07a5f28051a6" ownerguid="d5d0d386-30f7-4ece-a7f6-de2de22a4609"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="792fd1d8-5ad5-4537-b5a4-60aac60e43fe" ownerguid="0fa0be21-2246-40b2-86b1-ca572fe8c16c"> -<ExampleWords> -<AUni ws="en">monotony, tedium</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to something that causes someone to feel uninterested?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7938bbc8-b6c3-4463-baf6-a5e802c23a15" ownerguid="d1b3d0f0-5319-4a6a-8a70-2179a8e76d22"> -<ExampleWords> -<AUni ws="en">don't need, can do without, can manage without, have no need of, have no use for, can dispense with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to not needing something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7938c5cf-93d0-4b8f-943b-5d032105117b" ownerguid="1c1b273d-9def-43bf-8abc-823eea459960"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="a0891c00-fce6-4665-a54f-ee2d07026c99" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">level</AUni> -<AUni ws="es">a.nivel</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1b95721d-4c8c-4af7-95eb-4eb18d17edd9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="7938c85a-e5ba-43fc-a118-7da61e94dbb5" ownerguid="ff7cf41e-ec29-4e35-b0c8-d61b635ac6eb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="793993ac-20c1-49f0-9716-e4cdc7da4439" ownerguid="61a28bdc-c05c-49d8-b47e-d54a9082156c"> -<Abbreviation> -<AUni ws="en">9.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate tense and aspect.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Tense and aspect</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="df2ee830-0668-43d7-8a32-e2fd3e7b31d8" t="o" /> -<objsur guid="ccbbd16f-58c5-45c1-bfff-1fba64d9740e" t="o" /> -<objsur guid="321d0a74-705f-40bf-8d24-809f65bee895" t="o" /> -<objsur guid="54f59b23-a2e8-4bfc-9da2-7dd7c37d2a47" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="793aeb9e-e56f-4f3d-a92e-db13cd34c9cb" ownerguid="61b2f2c1-a659-4a7d-a616-e5f9dc207afb"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="793b8db3-edcc-40c6-91a8-40b18baa8695" ownerguid="de5cd80e-66b4-46e5-b233-ff54fc051820"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">coliseum</AUni> -<AUni ws="es">coliseo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8c57a9e5-bca4-4deb-9fa0-eeebb10798cb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="793d0517-5c2f-4b41-bf14-41241cf46709" ownerguid="574fa2c8-6204-461d-815c-fee1f435af70"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="793d3124-8b77-4ff0-82ec-09a3a9d8d865" ownerguid="596ab399-e442-4afe-8796-633a49de65a7"> -<Abbreviation> -<AUni ws="en">4.7.9.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.274" /> -<DateModified val="2022-9-23 16:55:8.274" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being unfair.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Unfair</AUni> -</Name> -<Questions> -<objsur guid="fbb485e8-139e-4590-b732-96544ffb5c0d" t="o" /> -<objsur guid="1af2b068-c259-470b-9d72-e1ca7d6b6903" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="79408083-34c6-4667-a6da-4780f8e41e51" ownerguid="35858020-0102-4fe3-a239-fa4df7199979"> -<Form> -<AUni ws="qvm-x-ach">regui</AUni> -<AUni ws="qvm-x-acl">regui; regue</AUni> -<AUni ws="qvm-x-akh">reqi</AUni> -<AUni ws="qvm-x-akl">reqi; reqe</AUni> -<AUni ws="qvm-x-ame">riqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="79433655-affd-4a42-821a-0f4587428737" ownerguid="ecaff061-6a12-4ad6-b818-9b140a9a3e11"> -<ExampleWords> -<AUni ws="en">designer, architect, planners</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to someone who designs things?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="79436830-092b-4d13-a715-f392d7e33708" ownerguid="32122830-315f-4796-8b0c-63bb033e31eb"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="ea80ed01-aed6-44b4-acfc-98ea7bb0f7e7" t="o" /> -<objsur guid="4e73ddb2-ce34-4702-b13c-9f987440f899" t="o" /> -<objsur guid="7a3294f4-4c5a-4d4f-a827-c6d577410902" t="o" /> -<objsur guid="a4515c6f-01e9-453c-9e63-457f6b3785ff" t="o" /> -<objsur guid="52375f57-58b5-46a4-a28f-1d3d76b78746" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiMorphBundle" guid="794480af-59d5-40c9-a34f-91059d6fc084" ownerguid="80d90411-ebaf-4f12-9b8b-8180cb57a73d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="79483ea6-d27c-42b6-bb78-ccf560ecb773" ownerguid="cc09a97f-555a-4d8e-aaef-b9365fffb0c4"> -<Form> -<AUni ws="qvm-x-ach">mandu</AUni> -<AUni ws="qvm-x-acl">mandu; mandu; mando</AUni> -<AUni ws="qvm-x-akh">mandu</AUni> -<AUni ws="qvm-x-akl">mandu; mandu; mando</AUni> -<AUni ws="qvm-x-ame">mandu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="79498187-df3a-4313-ad1c-997e4c801e23" ownerguid="57fdd16c-87d1-4ad5-8b26-7b00a4fd6b1f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="794d6986-4845-484b-99f7-300bc034d898" ownerguid="724a3e70-64f3-4124-a6ff-9f2cb0e69f1b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="794ff46d-92c8-42ee-9318-579036797a35" ownerguid="ecc972e2-fd45-4364-be97-09555bc9e8d0"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7950edf7-b00e-40ea-977e-1474aa41f7be" ownerguid="f0381c4b-881e-4e9f-a5a9-6e081cde914f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="7950fd3b-1398-43b1-bffb-51636fdb20c3" ownerguid="ba4f9b46-0704-4a5f-a6fe-0e30f88b3b8d"> -<Form> -<AUni ws="qvm-x-ach">pärish</AUni> -<AUni ws="qvm-x-acl">pärish</AUni> -<AUni ws="qvm-x-akh">pärish</AUni> -<AUni ws="qvm-x-akl">pärish</AUni> -<AUni ws="qvm-x-ame">pärish</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="7952aab6-a752-4a02-8b37-586d66cf8570" ownerguid="4d92f3ec-8a5d-4468-84c0-01ae89ab3ca9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sever</AUni> -<AUni ws="es">cortar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e8fe8ec5-3a62-433e-9196-002681ccd441" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="79566860-3b43-40fd-93d0-5ae32a4e5262" ownerguid="3aee5038-949e-45a4-aed6-243ca71ce366"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">store</AUni> -<AUni ws="es">tienda</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="83d731b3-dbad-4181-bce1-93e725136441" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="79571391-7940-4524-9425-acd10c758e92" ownerguid="0622d3f7-1ab2-482b-9f9c-9c101cd35182"> -<ExampleWords> -<AUni ws="en">season</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to a season of the year?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7958cada-dbf7-44d8-af88-78b5dd6c4f1c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">antsa; antsa:</AUni> -<AUni ws="qvm-x-acl">antsa; antsa:</AUni> -<AUni ws="qvm-x-akh">antsa; antsa:</AUni> -<AUni ws="qvm-x-akl">antsa; antsa:</AUni> -<AUni ws="qvm-x-ame">antsa; antsa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ancha.v</AUni> -<AUni ws="qvm-x-acl">*ancha.v</AUni> -<AUni ws="qvm-x-akh">*ancha.v</AUni> -<AUni ws="qvm-x-akl">*ancha.v</AUni> -<AUni ws="qvm-x-ame">*ancha.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.769" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="60869c43-cfcc-4d69-9a3c-222634117f00" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ancha.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5451ccad-e15a-442d-abee-bf45de145c18" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="66e51378-d1b6-4121-b966-21b623b303c3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ancha.v 
\entryTyp root 
\gENG worsen 
\gSPN ser.grave 
\e *ancha.v 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach antsa foreshortened 
\ach antsa: 
\akh antsa foreshortened 
\akh antsa: 
\acl antsa foreshortened 
\acl antsa: 
\akl antsa foreshortened 
\akl antsa: 
\ame antsa foreshortened 
\ame antsa:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="795b53c6-1cfc-49f0-9e86-e25f78a27891" ownerguid="cc086a9a-4167-45cf-b672-bf9e235905fb"> -<Form> -<AUni ws="qvm-x-ach">parija</AUni> -<AUni ws="qvm-x-acl">parija</AUni> -<AUni ws="qvm-x-akh">parija</AUni> -<AUni ws="qvm-x-akl">parija</AUni> -<AUni ws="qvm-x-ame">parija</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="795d694f-a01b-458b-b463-b36d5de3419a" ownerguid="f74b3e92-fdc5-47c0-a223-16dc0f80387b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="795e5dd4-03b5-482f-9261-6f10f3bb4498" ownerguid="6137239a-b469-46be-b7cb-b9ac22fcc195"> -<ExampleWords> -<AUni ws="en">teacher, tutor, lecturer, professor, coach, trainer, faculty, educator</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who teaches?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="795e7e24-f2f9-46fd-b707-8c0b14dd336b" ownerguid="907b24b6-7dcc-428e-afec-86cb20362d4a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" t="r" /> -</Morph> -<Msa> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="795f21b4-7318-4cf0-8afd-1f7283dc6b40"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">piña</AUni> -<AUni ws="qvm-x-acl">piña</AUni> -<AUni ws="qvm-x-akh">piña</AUni> -<AUni ws="qvm-x-akl">piña</AUni> -<AUni ws="qvm-x-ame">piña</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*piña.n</AUni> -<AUni ws="qvm-x-acl">*piña.n</AUni> -<AUni ws="qvm-x-akh">*piña.n</AUni> -<AUni ws="qvm-x-akl">*piña.n</AUni> -<AUni ws="qvm-x-ame">*piña.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.840" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="21235d4e-36b0-4559-92eb-e0c98c5cd361" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*piña.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="36802e93-5dba-4068-8831-81ce1f7ce4e8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f37092b8-b83a-4afd-8867-191810d4234c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *piña.n 
\entryTyp root 
\gENG mad 
\gSPN bravo 
\e *piña.n 
\c N0 
\ach piña 
\akh piña 
\acl piña 
\akl piña 
\ame piña</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7962f425-0279-438f-90fb-3593ec18c00c" ownerguid="bfa3be74-0390-4e2e-bdb7-ed41eb67e4f1"> -<ExampleWords> -<AUni ws="en">rainwater, puddle, run-off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to rain water on the ground?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7963a558-b7dd-45dd-b347-8f9cce1d7aa9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maytsay</AUni> -<AUni ws="qvm-x-acl">maytsay</AUni> -<AUni ws="qvm-x-akh">maytsay</AUni> -<AUni ws="qvm-x-akl">maytsay</AUni> -<AUni ws="qvm-x-ame">maytsay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*may+chay</AUni> -<AUni ws="qvm-x-acl">*may+chay</AUni> -<AUni ws="qvm-x-akh">*may+chay</AUni> -<AUni ws="qvm-x-akl">*may+chay</AUni> -<AUni ws="qvm-x-ame">*may+chay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.386" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="10850fda-3c1d-4188-8eac-3499d4a43eac" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*may+chay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b8def1a6-0471-4c89-a784-3844950ceff6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b49ace75-8cb1-49f7-979e-76fe1359c3fa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *may+chay 
\entryTyp root 
\gENG anywhere 
\gSPN dondequiera 
\e *may+chay 
\c N0 
\mp +FinalC 
\ach maytsay 
\akh maytsay 
\acl maytsay 
\akl maytsay 
\ame maytsay</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="7964a0f9-c015-49f9-a82a-10bbbbd1b04f" ownerguid="c1d85664-c1ee-4500-af75-d826d39fff59"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="79662c08-e4e4-46d9-81c2-833818ba17f7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">figu:ra</AUni> -<AUni ws="qvm-x-acl">figu:ra</AUni> -<AUni ws="qvm-x-akh">figu:ra</AUni> -<AUni ws="qvm-x-akl">figu:ra</AUni> -<AUni ws="qvm-x-ame">figu:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+figura</AUni> -<AUni ws="qvm-x-acl">+figura</AUni> -<AUni ws="qvm-x-akh">+figura</AUni> -<AUni ws="qvm-x-akl">+figura</AUni> -<AUni ws="qvm-x-ame">+figura</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.558" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5e0febd0-d980-429a-848d-dfc63e9fb0ef" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+figura</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="71840a86-d349-4f6d-8d74-53dda00f8d61" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2d31f066-a341-4ae5-9cb4-823bb141230b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +figura 
\entryTyp root 
\gENG figure 
\gSPN figura 
\e +figura 
\c N0 
\ach figu:ra 
\akh figu:ra 
\acl figu:ra 
\akl figu:ra 
\ame figu:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="796ea771-d383-406f-8765-f5703318488e" ownerguid="0e0e91e3-6d3f-4310-b235-bf0ee9c88679"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="796eff2b-0551-4ef9-9d13-9ffda5316314" ownerguid="e9cafabe-f0f7-4142-a6f6-d1c94bdc4b5c"> -<ExampleWords> -<AUni ws="en">almost empty, not quite empty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe something that is almost empty?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="797149a9-eeb0-4bf7-ae2c-5b34cd7079f5" ownerguid="ba06de9e-63e1-43e6-ae94-77bea498379a"> -<ExampleWords> -<AUni ws="en">human (adj), human nature</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something characteristic of all people?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7973d41d-6b76-4f6a-ab2c-4f1bf94fb5b2" ownerguid="11cf45ec-f9d6-4c99-8782-738e26a342c8"> -<ExampleWords> -<AUni ws="en">grab, snatch, whisk away, seize</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to taking something quickly or suddenly?</AUni> -</Question> -</rt> -<rt class="Segment" guid="7977f3d1-06d4-4640-827d-ae94181dc923" ownerguid="21aa99d0-5366-4a51-9ed9-921b9a84fedb"> -<Analyses> -<objsur guid="ddfd5465-72db-4690-a44d-ce338517274b" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexEntry" guid="797a10b9-ef8f-411e-8043-7b4e46426caa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alberja</AUni> -<AUni ws="qvm-x-acl">alberja</AUni> -<AUni ws="qvm-x-akh">alberja</AUni> -<AUni ws="qvm-x-akl">alberja</AUni> -<AUni ws="qvm-x-ame">alberja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+arveja</AUni> -<AUni ws="qvm-x-acl">+arveja</AUni> -<AUni ws="qvm-x-akh">+arveja</AUni> -<AUni ws="qvm-x-akl">+arveja</AUni> -<AUni ws="qvm-x-ame">+arveja</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.838" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="506a3c86-1617-4e6b-99fe-49a99cca57e1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+arveja</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="297d94b9-d163-4a6f-9172-02f7569458a0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ae5da631-5af2-493b-bbaa-1c87df82f39f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +arveja 
\entryTyp root 
\gENG peas 
\gSPN arveja 
\e +arveja 
\c N0 
\mp +assimilated 
\ach alberja 
\akh alberja 
\acl alberja 
\akl alberja 
\ame alberja</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="797aabc7-bddd-42f5-bfac-277b4dc775f2" ownerguid="22001e38-caec-4b13-ac94-447b686176c8"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="797b80df-2238-409a-a224-879b258784d3" ownerguid="e7e5dbf2-6d5b-4869-b357-8a7860c29002"> -<ExampleWords> -<AUni ws="en">aerate, carbonated, carbonation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to adding air or a gas to water?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="797bb1c4-9cf2-49be-bdbf-2d6d4fb81a3b" ownerguid="48ac206f-2706-4500-bb63-2e499b790259"> -<ExampleWords> -<AUni ws="en">intellectual, academic, learned, brains, intelligentsia</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe someone who is intelligent, well-educated, and thinks a lot?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="797f3129-3cfe-4cd9-ba4c-0c761ec17bb2" ownerguid="30fff450-1aa5-4993-9c14-c8019a5f072e"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">I am like you, <but> we are different in this way.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">but, only, except, except for the fact that</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words indicate that although one person or thing is similar to another, there is a difference between them?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="797f92fc-2773-41b9-b710-b1b53b2b84d7" ownerguid="043d12ac-c76d-4b4c-813b-4ef7758c8085"> -<ExampleWords> -<AUni ws="en">hide, take refuge, go into hiding, disappear</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to hiding yourself?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="7981a8e1-cf0b-44a0-9de4-12160b2f201d" ownerguid="dc177f3c-d0fd-4232-adf1-a77b339cdbb2"> -<Abbreviation> -<AUni ws="en">6.5.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.458" /> -<DateModified val="2022-9-23 16:55:8.458" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to land that a person owns or the land on which a house is built.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Land, property</AUni> -</Name> -<Questions> -<objsur guid="9cc33bb4-8e3f-4f12-84b7-d26dcdb93eeb" t="o" /> -<objsur guid="b9afb4d3-73d4-456a-a0d6-590f2110ee50" t="o" /> -<objsur guid="43262af9-f13d-4eab-a0d3-047eaa90deb6" t="o" /> -<objsur guid="a342e01b-25f0-49cc-941b-84462250fa13" t="o" /> -<objsur guid="ccf00c47-4664-44d1-bdb9-1d95cf44f595" t="o" /> -<objsur guid="050dbc4a-4b87-48d2-95ce-ddc5bed2674c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="7982b082-dfd0-4dfa-afa2-04968ef14c1b" ownerguid="17d5f429-6550-4a3a-a755-5ac3c3d7e04f"> -<ExampleWords> -<AUni ws="en">anthill, ants nest, termite mound, termite hill, hive, beehive, bee's wax, honeycomb, spider web, cocoon, trail (of ants)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) Where do insects live?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7984b8dd-f9ba-40da-97e3-9c88cf247507" ownerguid="b8d2fdb9-22ea-4040-8abb-aeeff0399f23"> -<ExampleWords> -<AUni ws="en">cost you your life</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(17) What words refer to doing something that results in your death?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="7988974c-99fd-40dd-9b5e-2d81ec603ddc" ownerguid="cce98603-ff8f-4213-945a-bd6746716139"> -<Abbreviation> -<AUni ws="en">1.2.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.947" /> -<DateModified val="2022-9-23 16:55:7.947" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to an area of land that has particular types of plants growing in it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Forest, grassland, desert</AUni> -</Name> -<Questions> -<objsur guid="44c8e484-3c8c-47df-8593-14d8c23d33d6" t="o" /> -<objsur guid="2e6caa31-8956-4ba9-9668-02bf02790a5c" t="o" /> -<objsur guid="eb08e346-776b-44a0-8763-7b1d78563ed2" t="o" /> -<objsur guid="e11b3e15-1e8a-4a1d-ae39-6fb0bf901957" t="o" /> -<objsur guid="564d08f0-09c1-486f-8368-61a62b5c741e" t="o" /> -<objsur guid="e1cb0e14-ce31-43c5-9d28-03672d9718e3" t="o" /> -<objsur guid="fba8dbfb-39c1-474a-96a6-d11e6023f409" t="o" /> -<objsur guid="91d0b337-d45d-4f2b-a620-0687521d70c4" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="31777669-e37b-4b77-9cce-0d8c33f6ebb9" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="79898493-8da4-4ed9-b960-a1a212705cc4" ownerguid="1a8c6355-0d9f-49a3-80f0-ce26cc0b204e"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="798b5157-6c20-4b23-97a4-b38c890d3b9a" ownerguid="4260e110-7b04-4d40-9391-486a57aa3031"> -<ExampleWords> -<AUni ws="en">be mature, act like an adult, act your age</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to doing something maturely?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="798d67f6-466c-4021-87a8-f51d2e3947cd" ownerguid="55d7b154-9174-454e-845c-9b732d791907"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="798e9cc1-a1a0-4ee5-a348-4c99fe97c7ba" ownerguid="1faa4b42-bd79-4797-aa30-587d4773ce4e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ma</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ma</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ma</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ma</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ma</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d461bd39-dcdb-4b92-b683-c6749822c8b1" t="r" /> -</Morph> -<Msa> -<objsur guid="554634ac-1f6d-4bfc-8e9c-9d1dfeca4367" t="r" /> -</Msa> -<Sense> -<objsur guid="f442ba09-2469-4cfe-a31e-bcd120dbdec2" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="798ec463-abb7-40ce-b5b7-98bc2358a6c7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">dobla</AUni> -<AUni ws="qvm-x-acl">dobla</AUni> -<AUni ws="qvm-x-akh">dobla</AUni> -<AUni ws="qvm-x-akl">dobla</AUni> -<AUni ws="qvm-x-ame">dobla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+doblar</AUni> -<AUni ws="qvm-x-acl">+doblar</AUni> -<AUni ws="qvm-x-akh">+doblar</AUni> -<AUni ws="qvm-x-akl">+doblar</AUni> -<AUni ws="qvm-x-ame">+doblar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.426" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dadc1577-9f42-429e-b7a8-fd1ea036932f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+doblar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3d1b3cc4-1505-4078-b66f-43cacd1cff64" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e1ae61c6-6985-4d26-8fbf-7add9450c76c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +doblar 
\entryTyp root 
\gENG fold 
\gSPN doblar 
\e +doblar 
\c V1 
\ach dobla 
\akh dobla 
\acl dobla 
\akl dobla 
\ame dobla</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="7992958d-fd36-469e-a94b-f8a9eb26af64" ownerguid="8b9f23f4-a147-4ea8-a13a-c5b1edc7f5e4"> -<Abbreviation> -<AUni ws="en">7.3.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to preventing someone or something from moving</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Block, dam up</AUni> -</Name> -<Questions> -<objsur guid="6023d899-2076-460a-bb3d-fff624cb6fee" t="o" /> -<objsur guid="aae3928e-a495-4b45-aaeb-2c925de7c300" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="79938a1b-6a1f-4ec3-a7e8-a12c7a85ac63" ownerguid="41c94c0d-1305-44ef-8799-972c22fa3a1e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="00b74f20-f24e-4f15-be24-9d8dfd4c49f3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="799567d6-daa8-44d7-a576-8078f23aadd2" ownerguid="e033ca92-ee8c-4ab9-9368-5f6f4e942987"> -<ExampleWords> -<AUni ws="en">get hold of, get through, reach</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to succeeding in contacting someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="799d92fa-91ff-4e0a-93f5-570408c4dc99" ownerguid="7dede9cd-0af7-4eff-90ed-d0a47a5e9cdc"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="799e2789-0fa9-4c8b-b3f8-8d3522d69838" ownerguid="db475bf9-5eb5-4864-ac17-f9cb0c823407"> -<Form> -<AUni ws="qvm-x-ach">pagpa</AUni> -<AUni ws="qvm-x-acl">pagpa</AUni> -<AUni ws="qvm-x-akh">paqpa</AUni> -<AUni ws="qvm-x-akl">paqpa</AUni> -<AUni ws="qvm-x-ame">paqpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="799ee65e-3c30-4068-af26-9aa2de3cfdd3" ownerguid="243d8a57-d5ed-4d7f-bd5e-f2605634f0fc"> -<ExampleWords> -<AUni ws="en">defense, resistance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to defense?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="799fe404-5ef1-4781-b56a-ccf2ac640bfb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pachca</AUni> -<AUni ws="qvm-x-acl">pachca</AUni> -<AUni ws="qvm-x-akh">pachka</AUni> -<AUni ws="qvm-x-akl">pachka</AUni> -<AUni ws="qvm-x-ame">pachka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*patrka</AUni> -<AUni ws="qvm-x-acl">*patrka</AUni> -<AUni ws="qvm-x-akh">*patrka</AUni> -<AUni ws="qvm-x-akl">*patrka</AUni> -<AUni ws="qvm-x-ame">*patrka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.759" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b00d5f12-5e1e-498a-8b8d-b8cb5e4a185f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*patrka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a6636684-7a4d-45f1-a61f-54b08f5d2b68" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="186e1efa-a4c0-4d36-baff-c02bd21b0000" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *patrka 
\entryTyp root 
\gENG spider 
\gSPN araña 
\e *patrka 
\c N0 
\ach pachca 
\akh pachka 
\acl pachca 
\akl pachka 
\ame pachka</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="79a21388-99fc-4689-89a2-33d69a7ce05a" ownerguid="16cf2099-8e71-4c6c-ad42-1f5c7429f812"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="79a33505-0c33-4e92-89b9-6a42e6ff2228" ownerguid="3f4c559f-ab4f-411f-a23b-d2396c977005"> -<Abbreviation> -<AUni ws="en">2.3.1.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to something appearing (becoming visible) and disappearing (becoming invisible).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Appear</AUni> -</Name> -<Questions> -<objsur guid="99cf2c43-51bb-42ca-a657-299a164e8b53" t="o" /> -<objsur guid="f722da8f-21fb-40f1-b60a-4ae27590e796" t="o" /> -<objsur guid="a462075b-9cbc-46c6-ae16-7f19705517b6" t="o" /> -<objsur guid="6e8d3756-edbf-466c-8fbd-55691b283ed5" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="043d12ac-c76d-4b4c-813b-4ef7758c8085" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="79a5407a-55c8-4ec1-986c-0840772babfa" ownerguid="1bd42665-0610-4442-8d8d-7c666fee3a6d"> -<ExampleWords> -<AUni ws="en">phase, new moon, full moon, half moon, quarter moon, crescent, sliver, moon is waxing (getting bigger), moon is waning (getting smaller), wax and wane</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to the phases of the moon?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="79a59694-ab71-4b3a-8d88-1aa8288fe51f" ownerguid="ac4a936e-6c05-4e73-8d40-dfe4223b47fa"> -<ExampleWords> -<AUni ws="en">shuffle cards, deal cards, play, lead, follow suit, trump, call, take a trick</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What events make up the game?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="79a77da8-4f6c-42ea-b04c-dd4e7f3c42a2" ownerguid="d7140538-fb99-4af9-8398-8c31a1b79fb5"> -<ExampleWords> -<AUni ws="en">hold, hold down, restrain, pin someone down, seize</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to preventing someone from moving by holding them?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="79a83ffa-5bdc-41eb-8738-11e0ea9b056f" ownerguid="243da013-7072-4095-b32f-b46a0b2fc109"> -<Form> -<AUni ws="qvm-x-ach">pilwa</AUni> -<AUni ws="qvm-x-acl">pilwa</AUni> -<AUni ws="qvm-x-akh">pilwa</AUni> -<AUni ws="qvm-x-akl">pilwa</AUni> -<AUni ws="qvm-x-ame">pilwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="79a9bf56-0a8e-46ad-99f9-f845da57cbb6" ownerguid="42b520b9-536e-40ec-b03b-8903f4fc43d3"> -<Form> -<AUni ws="qvm-x-ach">yupi</AUni> -<AUni ws="qvm-x-acl">yupi; yupi; yupe</AUni> -<AUni ws="qvm-x-akh">yupi</AUni> -<AUni ws="qvm-x-akl">yupi; yupi; yupe</AUni> -<AUni ws="qvm-x-ame">yupi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="79a9fb4e-9252-49a0-a360-995ab3b999d2" ownerguid="b65ac656-1613-43f7-9951-76488a84892e"> -<Form> -<AUni ws="qvm-x-ach">encuentru; encuentro</AUni> -<AUni ws="qvm-x-acl">encuentru; encuentru; encuentro</AUni> -<AUni ws="qvm-x-akh">encuentru; encuentro</AUni> -<AUni ws="qvm-x-akl">encuentru; encuentru; encuentro</AUni> -<AUni ws="qvm-x-ame">encuentru; encuentro</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="79abc819-5660-42df-ae30-945b6243e5c8" ownerguid="e67d77e6-7e2d-4852-ac49-a6b543933c23"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="4525d33a-31ec-44a2-90b3-4a00eeedaa47" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">traveller</AUni> -<AUni ws="es">viajero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0c0da763-f88e-4a42-b1e1-2d0f02dd35a6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="79ae03fd-8eee-4b07-8a2b-1eb1f02c737c" ownerguid="9b5ee2f0-29d3-49c8-bb54-e101cd75ee8f"> -<Form> -<AUni ws="qvm-x-ach">tsalcu</AUni> -<AUni ws="qvm-x-acl">tsalcu; tsalcu; tsalco</AUni> -<AUni ws="qvm-x-akh">tsalku</AUni> -<AUni ws="qvm-x-akl">tsalku; tsalku; tsalko</AUni> -<AUni ws="qvm-x-ame">tsalku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="79af8b32-fe1b-42ea-91ba-3b5772196a69" ownerguid="a0d073df-d413-4dfd-9ba1-c3c68f126d90"> -<ExampleWords> -<AUni ws="en">comet, tail, head</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to comets?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="79b14d70-29ab-4949-ac71-d165d402ac2b" ownerguid="fe58ae61-ab0b-43a4-86fb-d9aedd199932"> -<ExampleWords> -<AUni ws="en">stir, stir up, stir together, beat, blend, knead, whisk</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to stirring something so that it is mixed well?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="79b14f71-d8e3-404e-ab77-6f5e134fbca5" ownerguid="89fb9e9a-1c52-4d3a-99aa-5fdd061f778f"> -<Definition> -<AStr ws="en"> -<Run ws="en">first person plural inclusive possessive</Run> -</AStr> -<AStr ws="es"> -<Run ws="es">primera persona plural inclusiva posesiva</Run> -</AStr> -</Definition> -<Gloss> -<AUni ws="en">12P</AUni> -<AUni ws="es">12P</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a6965348-c2a1-44ad-8d0b-c5c6e8cdc68b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="79b25689-73a7-4e5d-97a8-57f7cc46f100" ownerguid="8c7c953d-3c76-483f-a8b0-3a12bab0668b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="79b580ff-64a7-445b-abcb-b49b9093779c" ownerguid="c82fa28f-7e26-489e-a244-4d69cea87b94"> -<Abbreviation> -<AUni ws="en">6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.446" /> -<DateModified val="2022-9-23 16:55:8.446" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to animal husbandry--working with animals.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>44 Animal Husbandry, Fishing; 1O Pastures and Cultivated Lands</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Animal husbandry</AUni> -</Name> -<OcmCodes> -<Uni>230 Animal Husbandry</Uni> -</OcmCodes> -<Questions> -<objsur guid="0d2df260-62f7-4b33-a2cd-86fb3fe884a4" t="o" /> -<objsur guid="b825ff80-353d-4e85-9118-f52740fc88bb" t="o" /> -<objsur guid="2e3b9ede-2e68-4241-bbbe-d110f7f61e80" t="o" /> -<objsur guid="391a8f4d-8ffd-4cac-b152-382553bbf44d" t="o" /> -<objsur guid="d0907f7b-00dc-4c71-8dc7-2d2236515634" t="o" /> -<objsur guid="30deff68-82da-438f-86ae-88fbe589f40f" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="17d5f429-6550-4a3a-a755-5ac3c3d7e04f" t="r" /> -<objsur guid="944cf5af-469e-4b03-878f-a05d34b0d9f6" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="8c28c640-db5b-43e2-a1e6-b0e381962129" t="o" /> -<objsur guid="167a5bae-f06f-424c-bfcb-ec547a076c8d" t="o" /> -<objsur guid="d85391fa-680a-4715-81ac-c0835acac8c5" t="o" /> -<objsur guid="71a2cc77-f968-4341-84c1-6c16d007a093" t="o" /> -<objsur guid="c880c81f-65dc-4d93-8c39-22920fdbe4c7" t="o" /> -<objsur guid="b2bb077a-92c8-4e54-8dfa-c89efd60b82d" t="o" /> -<objsur guid="040e4b3e-2f36-430a-ab09-1917f96a09de" t="o" /> -<objsur guid="71dbaf5f-2afa-4282-b9b8-8a50d8c8e5e9" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="79b5ad37-1022-46a3-9448-ab62ac02ed60" ownerguid="48380d5d-bd54-48a9-92bc-7c8a93de0567"> -<ExampleWords> -<AUni ws="en">lend, loan, invest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to lending something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="79bb539f-1e28-4b65-af45-945ba95b5719" ownerguid="abe6286b-fca1-40cd-bfde-82eac17c4a4b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="79bb92d1-f19f-42d9-aa28-dc47b13f28bf" ownerguid="a3f1d702-8ca1-457a-a569-eb6fdf696bbe"> -<ExampleWords> -<AUni ws="en">give someone a disapproving look, give someone a dirty look, frown, look askance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to looking at someone in a disapproving way?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="79bb994d-f9c3-44eb-8c07-160f1d6adebe" ownerguid="e54cd744-d106-4bcf-bd07-b8783c075c21"> -<ExampleWords> -<AUni ws="en">fashion, trend, vogue, the latest thing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something that is fashionable?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="79bcc71c-99f7-4e6c-83fa-e8c685a200e9" ownerguid="3710e019-46c9-44db-a0aa-9054d3126161"> -<ExampleWords> -<AUni ws="en">addictive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe a drug that makes people addicted?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="79bffa90-e7a0-41bc-ae3f-01b55d9ffdf6" ownerguid="ae6f73ab-432d-42e8-aa1a-c848652a13f0"> -<ExampleWords> -<AUni ws="en">wife, virgin, old maid, maiden, divorcée, lesbian</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to whether or not a woman is married?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="79c08e8f-beee-4fb8-8bc8-f94d3078de78" ownerguid="c0760bba-2f62-4b2a-8c60-06e4313fe7a3"> -<Form> -<AUni ws="qvm-x-ach">piti</AUni> -<AUni ws="qvm-x-acl">piti; piti; pite</AUni> -<AUni ws="qvm-x-akh">piti</AUni> -<AUni ws="qvm-x-akl">piti; piti; pite</AUni> -<AUni ws="qvm-x-ame">piti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="79c40493-932f-4b5b-a443-412e11af8537"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">avanza</AUni> -<AUni ws="qvm-x-acl">avanza</AUni> -<AUni ws="qvm-x-akh">avanza</AUni> -<AUni ws="qvm-x-akl">avanza</AUni> -<AUni ws="qvm-x-ame">avanza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+avanzar</AUni> -<AUni ws="qvm-x-acl">+avanzar</AUni> -<AUni ws="qvm-x-akh">+avanzar</AUni> -<AUni ws="qvm-x-akl">+avanzar</AUni> -<AUni ws="qvm-x-ame">+avanzar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.880" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a85cccce-6e3a-4eb0-9d68-fbb25b6b3a88" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+avanzar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d2bf4e44-4613-4a75-a53f-cae886bbc598" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="427cc33c-02b1-4df1-ba89-0ed94809ec0d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +avanzar 
\entryTyp root 
\gENG advance 
\gSPN avanzar 
\e +avanzar 
\c V1 
\ach avanza 
\akh avanza 
\acl avanza 
\akl avanza 
\ame avanza</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="79c4dcf9-71da-44b3-8bc5-97c4974e746a" ownerguid="e2143cef-5297-4799-a37e-7b298a8d56d3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="79c4feb2-9da0-423f-b92a-3f308074069c" ownerguid="40019add-d835-4b79-a1fd-2419f598973d"> -<PartOfSpeech> -<objsur guid="75ac4332-a445-4ce8-918e-b27b04073745" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="79c6103b-2cdb-444a-8bf9-5d0c6b6749c8" ownerguid="134c68a9-ac3f-4b7e-8fca-63642d796a75"> -<ExampleWords> -<AUni ws="en">demography</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to studying the citizens?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="79c66635-314f-4736-bdbc-3e448893bfef" ownerguid="512f307e-b549-4028-a099-9efde1e250f1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">favor</AUni> -<AUni ws="es">favor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f57efd05-f9ba-4005-8508-c6d985f3e05e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="79c73723-660d-4fc0-a891-00b490334f04" ownerguid="21ebc64a-a1b8-45bd-b7f6-143a053f1d31"> -<ExampleWords> -<AUni ws="en">basketball game, game</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a game?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="79c7e138-930b-4bcf-82b4-8e3e5fcdf6c7" ownerguid="dae6488c-7fea-4fa3-84c9-b611d017b6a5"> -<ExampleWords> -<AUni ws="en">laundry, dirty laundry, dirty clothes, wash (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the clothes to be washed?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="79ca34ea-68a7-4fe9-b5ac-4f3d6a1ab99d" ownerguid="444407f2-0c75-4bb9-a84c-cbd52d0fa9c9"> -<Abbreviation> -<AUni ws="en">2.6.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a baby.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Baby</AUni> -</Name> -<OcmCodes> -<Uni>850 Infancy and Childhood</Uni> -</OcmCodes> -<Questions> -<objsur guid="1156c7c7-2ff1-4c14-97af-f6819a30c801" t="o" /> -<objsur guid="148528d0-044b-420d-a3a7-c648885587d2" t="o" /> -<objsur guid="24a280c7-8eb2-4f75-83f9-8ff536345cc0" t="o" /> -<objsur guid="8de62c50-dbb7-42b6-9951-486f7f610ca1" t="o" /> -<objsur guid="5509134d-43d5-42ef-963c-0634f74c259c" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="a19e219a-6cc1-4057-a8d9-18554ae88de1" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="79cb3689-0139-4b16-80aa-74b544d0313e" ownerguid="8043d3ee-dc8d-4e02-b14b-2c6916bcc67d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tree</AUni> -<AUni ws="es">árbol</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d8916a6c-5215-462e-97c8-4a72dbcea145" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="79cf4ef2-3ec7-463a-843e-a7b1bfcb0639"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">vigila</AUni> -<AUni ws="qvm-x-acl">vigila</AUni> -<AUni ws="qvm-x-akh">vigila</AUni> -<AUni ws="qvm-x-akl">vigila</AUni> -<AUni ws="qvm-x-ame">vigila</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vigilar</AUni> -<AUni ws="qvm-x-acl">+vigilar</AUni> -<AUni ws="qvm-x-akh">+vigilar</AUni> -<AUni ws="qvm-x-akl">+vigilar</AUni> -<AUni ws="qvm-x-ame">+vigilar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.394" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8ecdaeac-e5cc-46cb-a2b7-511e6ea902fe" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vigilar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dbb1f37d-1321-41ee-8778-57de02b33b2d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="21af77d9-509e-49a1-8fc4-ce70cbd3c65b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vigilar 
\entryTyp root 
\gENG watch 
\gSPN vigilar 
\e +vigilar 
\c V1 
\ach vigila 
\akh vigila 
\acl vigila 
\akl vigila 
\ame vigila</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="79d35a3a-320a-4550-98b5-d599c670a5da" ownerguid="167bfba5-0785-4bb5-a083-3ffbefa57897"> -<ExampleWords> -<AUni ws="en">report, reputation, reward</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to a report of an evaluation?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="79d39d98-cf6c-4fca-906e-bc4027ba0fdb" ownerguid="d2f3aed7-a012-414b-8269-a9170db0555d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="79d50daa-9604-46db-a927-c6cdc595610d" ownerguid="016ba72b-a69f-4f3c-a01e-0b325f469539"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PunctuationForm" guid="79d5c379-c702-469e-a845-6bbb19e64689"> -<Form> -<Str> -<Run ws="qvm-x-akh">==</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="79d906c4-36df-4448-b146-cba3a069062d" ownerguid="084e2568-3f54-4eab-b436-8a87fb466659"> -<ExampleWords> -<AUni ws="en">masonry, sculpture, carve</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to working with stone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="79da2f14-8778-40d6-b4a4-55b6f2e36eb6" ownerguid="bb29001e-97f3-4bb4-8946-7c33b9835fcb"> -<ExampleWords> -<AUni ws="en">elder brother, elder sister, younger brother, younger sister</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate the order in which your brothers and sisters were born?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="79db4f25-7a7d-40c7-b2c0-25650954a2ae" ownerguid="8fb9a1a6-844d-45a5-86c7-977d3e420149"> -<ExampleWords> -<AUni ws="en">winnow, winnowing basket, winnowing fork, winnowing floor, chaff, grain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to winnowing grain?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="79dce89b-da34-49a5-a332-81bc3fae781a" ownerguid="cd0162de-bb70-4f39-85fa-f9c59ba90886"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="79dd72c1-f45f-4284-a474-17c6d087492a" ownerguid="c7cabc9e-0ca4-46f6-aa35-7180c26a202b"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="79e0af96-4bd3-4a79-9a13-9df4566e2b60" ownerguid="e6258e27-a753-4f33-94ca-73e0267188d8"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="79e0f080-08a8-40cb-8193-b6e277158b65" ownerguid="8dcc9732-0af2-4b44-9ad4-02c1948ee97d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="79e1d9d9-28a5-45cd-b0a4-4c9917296adf"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">19</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="79e2287b-12a1-4448-87b0-7a789921d062" ownerguid="2a1d2fa6-cc37-4094-8b69-ad9e4d5423b9"> -<Form> -<AUni ws="qvm-x-ach">herencia</AUni> -<AUni ws="qvm-x-acl">herencia</AUni> -<AUni ws="qvm-x-akh">herencia</AUni> -<AUni ws="qvm-x-akl">herencia</AUni> -<AUni ws="qvm-x-ame">herencia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="79e27722-c839-444e-a790-efe0f6afae80" ownerguid="7831223b-e5ed-4186-a321-94e9ae72a27d"> -<ExampleWords> -<AUni ws="en">sling, slingshot, throwing stick</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to something used to throw things?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="79e4f0b6-1efb-49ae-8664-f599796ce3dc" ownerguid="75ccb853-52a7-4f79-86a3-f3e653b648e4"> -<Form> -<AUni ws="qvm-x-ach">eunucu; eunuco</AUni> -<AUni ws="qvm-x-acl">eunucu; eunucu; eunuco</AUni> -<AUni ws="qvm-x-akh">eunucu; eunuco</AUni> -<AUni ws="qvm-x-akl">eunucu; eunucu; eunuco</AUni> -<AUni ws="qvm-x-ame">eunucu; eunuco</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="79e5ec43-1626-4150-b412-d8621daa3603" ownerguid="2e5a80f9-35ae-4850-9627-be530832a781"> -<ExampleWords> -<AUni ws="en">may, can</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words are used in requests to show respect?</AUni> -</Question> -</rt> -<rt class="Segment" guid="79e8a700-f3c2-45ba-8e87-f7c00c2b315e" ownerguid="1618137b-b1de-4ef5-857c-1377113af4f5"> -<Analyses> -<objsur guid="f94498ce-220e-4c6d-920f-657fab72ec9b" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexEntry" guid="79eb8229-3c23-4396-979d-b6911f63feda"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fie:rra</AUni> -<AUni ws="qvm-x-acl">fie:rra</AUni> -<AUni ws="qvm-x-akh">fie:rra</AUni> -<AUni ws="qvm-x-akl">fie:rra</AUni> -<AUni ws="qvm-x-ame">fie:rra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fierra</AUni> -<AUni ws="qvm-x-acl">+fierra</AUni> -<AUni ws="qvm-x-akh">+fierra</AUni> -<AUni ws="qvm-x-akl">+fierra</AUni> -<AUni ws="qvm-x-ame">+fierra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.548" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b4e2b780-d90d-427f-bf54-10acafdca8e6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fierra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1f0b8038-e9da-4275-98da-bc5699190b8b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="459a99e9-38af-42aa-8980-335994235ad2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fierra 
\entryTyp root 
\gENG iron 
\gSPN fierra 
\e +fierra 
\c N0 
\ach fie:rra 
\akh fie:rra 
\acl fie:rra 
\akl fie:rra 
\ame fie:rra 
\i Num 35.16 Pipis fiërra herramientawan runa mayinta wanutserga wanutsishgami canga.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="79eb933b-13d5-49f5-ba45-bffc520b1df8" ownerguid="254e1ce7-5846-4d4d-900f-a676ccceacce"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">cortado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5c6b604e-93ef-44ce-900a-ba1fae187d0e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="79ebb5ce-f0fd-4fb5-9f22-1fa4965a555b" ownerguid="60364974-a005-4567-82e9-7aaeff894ab0"> -<Abbreviation> -<AUni ws="en">1.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.963" /> -<DateModified val="2022-9-23 16:55:7.963" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to bodies of water.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>1J Bodies of Water</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Bodies of water</AUni> -</Name> -<Questions> -<objsur guid="4cc3c3da-3f0b-4957-8d17-36f2e49fed2c" t="o" /> -<objsur guid="414bd6af-fa6f-45eb-a18c-5a510fe1a300" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="14e9c20c-6eb5-49a4-a03f-3be26a934500" t="o" /> -<objsur guid="31777669-e37b-4b77-9cce-0d8c33f6ebb9" t="o" /> -<objsur guid="4153416a-784d-4f7c-a664-2640f7979a14" t="o" /> -<objsur guid="bf6e1719-11ee-4ace-9c84-72019c01aabc" t="o" /> -<objsur guid="928741b5-bff6-4dd1-be37-ec6e7a4eb6ca" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="79ebd9c1-026e-4250-b11c-cb34e6757f84"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">togtu</AUni> -<AUni ws="qvm-x-acl">togtu; togto</AUni> -<AUni ws="qvm-x-akh">toqtu</AUni> -<AUni ws="qvm-x-akl">toqtu; toqto</AUni> -<AUni ws="qvm-x-ame">tuqtu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tuqtu</AUni> -<AUni ws="qvm-x-acl">*tuqtu</AUni> -<AUni ws="qvm-x-akh">*tuqtu</AUni> -<AUni ws="qvm-x-akl">*tuqtu</AUni> -<AUni ws="qvm-x-ame">*tuqtu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.17" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9fab3a27-6fd5-4bff-9ec8-27ee1034bb1e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tuqtu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="56846e34-9965-41e3-b118-8b14cb165501" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8866a7a1-70d3-4403-8810-aa060a1ef5ba" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tuqtu 
\entryTyp root 
\gENG ? 
\gSPN ? 
\e *tuqtu 
\c V1 
\ach togtu 
\akh toqtu 
\acl togtu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl togto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl toqtu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl toqto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tuqtu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="79ec6ed6-dff1-40c2-bdd6-5989bd4cf5d5" ownerguid="00364f0c-9a3a-4910-a82e-1ffbc4d4137f"> -<ExampleWords> -<AUni ws="en">climax, high point, high spot, highlight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to the most exciting part of something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="79ecb7f5-b192-4573-ae03-e92690e7b57c" ownerguid="d01f1c51-522e-4b35-81b3-00577dbfa3bd"> -<ExampleWords> -<AUni ws="en">value, intensity, saturation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to the intensity of a color?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="79f3b53a-eb56-4188-87f8-48317f76e7ce" ownerguid="b9c752a4-66be-493c-8955-cfa5324a54c1"> -<Abbreviation> -<AUni ws="en">4.9.5.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.296" /> -<DateModified val="2022-9-23 16:55:8.296" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to fasting--to not eat for a period of time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>53H Fasting</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Fasting</AUni> -</Name> -<OcmCodes> -<Uni>785 Asceticism</Uni> -</OcmCodes> -<Questions> -<objsur guid="e6d39486-e4e8-4acc-9d09-5f44f05f7d83" t="o" /> -<objsur guid="348e576b-d9a5-46a2-ab8d-f411ca9ed5ce" t="o" /> -<objsur guid="0eb2012f-f78f-4398-a91b-b33fa77576b0" t="o" /> -<objsur guid="2ddfd3e5-e88f-4f26-a317-44ce3dba600b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="79f41d56-eb0a-4afd-90bd-0ef1923b0124" ownerguid="8c33d2c7-3043-4943-945f-37a6b4e8bd7b"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="79f64ac2-80ec-4ddc-8864-2b1e60440af8" ownerguid="76a4a286-1c8a-4c4a-9eaf-dca040be574a"> -<ExampleWords> -<AUni ws="en">show courage, be brave, dare, brace yourself, embolden, face (v), buck up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the action of showing courage?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="79f829b9-fbf9-4902-8416-179a62d2f056" ownerguid="8bc2c340-00f0-4d24-aa24-1fde6cbe3bdf"> -<Form> -<AUni ws="qvm-x-ach">alfin</AUni> -<AUni ws="qvm-x-acl">alfin</AUni> -<AUni ws="qvm-x-akh">alfin</AUni> -<AUni ws="qvm-x-akl">alfin</AUni> -<AUni ws="qvm-x-ame">alfin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="79fa3f19-fa3f-47f4-8a6c-d9518b1c05c7" ownerguid="f67a0a6b-e728-4787-94dc-e473b557c58f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="5f33060f-dfc0-4c82-922c-8ce442da6257" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">assignment</AUni> -<AUni ws="es">tarea</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1f67cc79-28fa-4bf7-8628-cde94f66566a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="79fe51d2-a9c3-4081-aa38-a208d23c6301" ownerguid="a8b9e892-df3e-44c4-8c68-7a0f7f4468bb"> -<ExampleWords> -<AUni ws="en">rat, mouse, squirrel, chipmunk, marmot, beaver, porcupine, capybara, cavy, chinchilla, coypu, gerbil, gopher, hamster, lemming, muskrat, vole, woodchuck</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What species of rodent are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7a00987e-7965-4de2-8e45-9bcd49d8ab69" ownerguid="3ccc3a21-07c8-4983-a044-e3c74b538135"> -<ExampleWords> -<AUni ws="en">shortened, abbreviated, abridged, compressed, condensed, contracted, shriveled, shrunk, shrunken</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that has been made short?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7a00c0c4-3414-4b8e-8b7b-8da501bfd889" ownerguid="77bcdcab-e9fd-48ba-8dcd-63f425367735"> -<ExampleWords> -<AUni ws="en">easy, a cinch, no problem, piece of cake</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is easy to do?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7a00fc16-7464-464e-ae30-82cacb37df72" ownerguid="69b0094a-af4b-454b-9cf3-2f1b81ec501f"> -<Form> -<AUni ws="qvm-x-ach">muca</AUni> -<AUni ws="qvm-x-acl">muca</AUni> -<AUni ws="qvm-x-akh">muka</AUni> -<AUni ws="qvm-x-akl">muka</AUni> -<AUni ws="qvm-x-ame">muka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7a031cae-6aee-43a7-9772-f7ca0e85e7bd" ownerguid="eb662979-604c-455e-a2c6-a84b03a2ee3a"> -<ExampleWords> -<AUni ws="en">at the earliest, no earlier than</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words indicate that something will happen no earlier than a particular time?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7a043f3c-8587-4c52-82ac-e90b2d9bc0f4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bolsa</AUni> -<AUni ws="qvm-x-acl">bolsa</AUni> -<AUni ws="qvm-x-akh">bolsa</AUni> -<AUni ws="qvm-x-akl">bolsa</AUni> -<AUni ws="qvm-x-ame">bolsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bolsa</AUni> -<AUni ws="qvm-x-acl">+bolsa</AUni> -<AUni ws="qvm-x-akh">+bolsa</AUni> -<AUni ws="qvm-x-akl">+bolsa</AUni> -<AUni ws="qvm-x-ame">+bolsa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.971" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="31885488-b574-43d5-8ce2-59a3392d6575" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bolsa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="063936e1-be14-4b2a-8019-31d194707cf2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2453bb74-17fa-466e-ae91-53760dc9c5ca" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bolsa 
\entryTyp root 
\gENG bag 
\gSPN bolsa 
\e +bolsa 
\c N0 
\ach bolsa 
\akh bolsa 
\acl bolsa 
\akl bolsa 
\ame bolsa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7a057a8b-ad2e-45d0-8e8e-9d8f32c22be1" ownerguid="50eb32a2-6dbb-4b7c-b370-aacdcfeaf5fc"> -<ExampleWords> -<AUni ws="en">spoilsport</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to someone who does not want other people to enjoy themselves?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7a05f327-4a30-43f7-9487-a8acd377e352" ownerguid="afa77a2a-8b0f-4a39-91bc-040e90ffbb3a"> -<ExampleWords> -<AUni ws="en">be pleased with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to feeling good about someone's behavior?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7a0745e5-e58a-41b8-806a-e7176ba3a4ef"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">asha</AUni> -<AUni ws="qvm-x-acl">asha</AUni> -<AUni ws="qvm-x-akh">asha</AUni> -<AUni ws="qvm-x-akl">asha</AUni> -<AUni ws="qvm-x-ame">asha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*asha</AUni> -<AUni ws="qvm-x-acl">*asha</AUni> -<AUni ws="qvm-x-akh">*asha</AUni> -<AUni ws="qvm-x-akl">*asha</AUni> -<AUni ws="qvm-x-ame">*asha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.840" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="510fb7ed-b9b2-411f-942e-3ba72ce6c2ac" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*asha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0354861c-ab93-4432-a1dc-02365125e08b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d12febac-c814-417e-ac19-282d5f816d6a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *asha 
\entryTyp root 
\gENG insult 
\gSPN insultar 
\e *asha 
\c V2 
\ach asha 
\akh asha 
\acl asha 
\akl asha 
\ame asha 
\mcc *asha / ~_ PRT2 3P</Run> -</AStr> -</Custom> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="7a075486-8619-4e92-af0d-d5a8ab8fe18e" ownerguid="c945146a-76bc-4f4b-baad-3884292eb7bc" /> -<rt class="MoStemMsa" guid="7a08230c-8da6-41d1-af56-af81f7f45874" ownerguid="d90afb31-9666-4b79-8caf-ce4f4f248172"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="7a0afa51-79fd-4f8e-b9af-63a9d7fa540f" ownerguid="aa0cf39b-b6de-4142-902e-fddeaa4771fa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">day</AUni> -<AUni ws="es">días</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9e7d1d54-7e40-4d49-be76-e8a24a027a9b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="7a0cfaa7-f048-4a09-8320-52bf4b679ab9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ma:gu</AUni> -<AUni ws="qvm-x-acl">ma:gu; ma:gu; ma:go</AUni> -<AUni ws="qvm-x-akh">ma:gu</AUni> -<AUni ws="qvm-x-akl">ma:gu; ma:gu; ma:go</AUni> -<AUni ws="qvm-x-ame">ma:gu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mago</AUni> -<AUni ws="qvm-x-acl">+mago</AUni> -<AUni ws="qvm-x-akh">+mago</AUni> -<AUni ws="qvm-x-akl">+mago</AUni> -<AUni ws="qvm-x-ame">+mago</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.255" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="170eaa19-0689-402d-ad31-01290004b11d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mago</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9a77016a-6e75-4ec5-8fcf-cc615b6f754b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c92d88c4-9393-43be-b6f5-c0196a1b5e6b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mago 
\entryTyp root 
\gENG 
\gSPN 
\e +mago 
\c N0 
\ach ma:gu 
\akh ma:gu 
\acl ma:gu / _# 
\acl ma:gu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ma:go +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ma:gu / _# 
\akl ma:gu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ma:go +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ma:gu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7a0d0a0e-9ede-4014-aff4-23e9b0d66dd5" ownerguid="6b1eeebd-2433-4f39-9e67-7ac4dd0fe20a"> -<ExampleWords> -<AUni ws="en">northbound, southbound, eastbound, westbound</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something going in one of the directions?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7a0d4e19-b6a3-4231-a3a2-3cbd7f7426b1" ownerguid="f3d162d7-da79-4ce4-9610-040f03b57d9d"> -<ExampleWords> -<AUni ws="en">difficult birth, hard labor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a difficult birth?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7a1051bd-dbea-4e03-83e0-09f8eb3a0585" ownerguid="742996cd-b87f-40a8-bdb3-dba74219bd73"> -<ExampleWords> -<AUni ws="en">stifling, muggy, humid, oppressive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe a time or place that is so hot that you are uncomfortable?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7a11c70f-471b-4542-a37b-bcfc9731537d" ownerguid="88843228-3d25-4192-af4b-b368a7803382"> -<Gloss> -<AUni ws="en">2P</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bbbfe118-132f-4744-9f12-6945daa4a632" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7a124e97-f716-4415-b805-22c1d17152eb" ownerguid="d7f7a5ed-d093-43ac-91a8-0a3bafc0fb1e"> -<Form> -<AUni ws="qvm-x-ach">diezmu; diezmo</AUni> -<AUni ws="qvm-x-acl">diezmu; diezmu; diezmo</AUni> -<AUni ws="qvm-x-akh">diezmu; diezmo</AUni> -<AUni ws="qvm-x-akl">diezmu; diezmu; diezmo</AUni> -<AUni ws="qvm-x-ame">diezmu; diezmo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7a13f665-c2cd-4c72-b05c-2d11688e1885" ownerguid="7831223b-e5ed-4186-a321-94e9ae72a27d"> -<ExampleWords> -<AUni ws="en">throw, cast</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to throwing something?</AUni> -</Question> -</rt> -<rt class="PartOfSpeech" guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" ownerguid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5"> -<Abbreviation> -<AUni ws="en">n0</AUni> -</Abbreviation> -<AffixSlots> -<objsur guid="6c1a55b7-decb-4da3-86ca-e0b8dc1a89c0" t="o" /> -</AffixSlots> -<AffixTemplates> -<objsur guid="ba1af743-893a-47eb-b359-86056addd123" t="o" /> -</AffixTemplates> -<BackColor val="0" /> -<DateCreated val="2022-10-14 15:38:24.205" /> -<DateModified val="2022-10-15 15:18:47.865" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Noun optionally possessed</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="7a1667f6-38e8-47e9-885b-2857554b5e60"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shaca</AUni> -<AUni ws="qvm-x-acl">shaca</AUni> -<AUni ws="qvm-x-akh">shaka</AUni> -<AUni ws="qvm-x-akl">shaka</AUni> -<AUni ws="qvm-x-ame">shaka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shaka</AUni> -<AUni ws="qvm-x-acl">*shaka</AUni> -<AUni ws="qvm-x-akh">*shaka</AUni> -<AUni ws="qvm-x-akl">*shaka</AUni> -<AUni ws="qvm-x-ame">*shaka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.521" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="102ad057-9ed0-45da-97f6-9a3304b1a1de" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shaka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d2cb8764-33d4-457a-a0d4-8b353dcb6848" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8c2b8a60-5500-41b8-9c69-e89dca55a012" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shaka 
\entryTyp root 
\gENG chew 
\gSPN masticar 
\e *shaka 
\c V2 
\ach shaca 
\akh shaka 
\acl shaca 
\akl shaka 
\ame shaka 
\mcc *shaka / ~_ AFAR 
\mcc *shaka / ~_ AFAR [y]</Run> -</AStr> -</Custom> -</rt> -<rt class="StStyle" guid="7a194e30-4c8c-4934-83ad-b12ecc47a768" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="7d2c80cd-af87-4d56-8337-cfd389b775bb" t="r" /> -</BasedOn> -<Context val="14" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Dictionary-Normal</Uni> -</Name> -<Rules> -<Prop firstIndent="-12000" leadingIndent="9000" spaceAfter="2000" spaceBefore="1000"></Prop> -</Rules> -<Structure val="0" /> -<Type val="0" /> -<Usage> -<AUni ws="en">Base style for everything in the Dictionary view.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="CmDomainQ" guid="7a19c46e-ca5b-4353-a497-0b1662039ac9" ownerguid="e7c58c11-2911-446a-96b0-2113247f3792"> -<ExampleWords> -<AUni ws="en">relative, in-law, kinsman, relation, distant relation, distantly related, extended family, folk, house, household, kin, kindred, kinfolk, kinsman, kinswoman</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a member of your family or larger kin group?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7a1a3d41-5cf2-4654-8553-c770820eb213"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">luchwa</AUni> -<AUni ws="qvm-x-acl">luchwa</AUni> -<AUni ws="qvm-x-akh">luchwa</AUni> -<AUni ws="qvm-x-akl">luchwa</AUni> -<AUni ws="qvm-x-ame">luchwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lluchwa</AUni> -<AUni ws="qvm-x-acl">*lluchwa</AUni> -<AUni ws="qvm-x-akh">*lluchwa</AUni> -<AUni ws="qvm-x-akl">*lluchwa</AUni> -<AUni ws="qvm-x-ame">*lluchwa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.215" /> -<DateModified val="2022-10-10 21:18:47.217" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8b80fba2-081e-4f12-9d98-73998d97f507" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lluchwa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dea84abb-62c1-4174-a342-303fdf4468a4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="27285ffe-6343-4b33-bfe0-0f671fde9af6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lluchwa 
\entryTyp root 
\gENG 
\gSPN 
\e *lluchwa 
\c V1 
\ach luchwa 
\akh luchwa 
\acl luchwa 
\akl luchwa 
\ame luchwa 
\i JOB 39.4 Wawancunapis chunyag jircachömi luchwaypa luchwarrag winan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="7a1b959c-8f7a-42fa-86fb-9a5e3f1ca9bb" ownerguid="abf2ace8-ee72-480d-b8d4-a4c58d238a8d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="7a236ac0-f14c-48aa-aa34-214831e1ee96" ownerguid="2b82df8b-2188-4ae9-a1eb-b3c50f21199e"> -<Form> -<AUni ws="qvm-x-ach">trïgu</AUni> -<AUni ws="qvm-x-acl">trïgu; trïgu; trïgo</AUni> -<AUni ws="qvm-x-akh">trïgu</AUni> -<AUni ws="qvm-x-akl">trïgu; trïgu; trïgo</AUni> -<AUni ws="qvm-x-ame">trïgu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="7a23df81-50b9-4613-b77f-9700b133a3b8" ownerguid="2f259730-53c5-4b4e-9f6c-c4218500afdf"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="7a24c499-eab8-411b-afd6-2bf83cf1f569"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">confia</AUni> -<AUni ws="qvm-x-acl">confia</AUni> -<AUni ws="qvm-x-akh">confia</AUni> -<AUni ws="qvm-x-akl">confia</AUni> -<AUni ws="qvm-x-ame">confia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+confiar</AUni> -<AUni ws="qvm-x-acl">+confiar</AUni> -<AUni ws="qvm-x-akh">+confiar</AUni> -<AUni ws="qvm-x-akl">+confiar</AUni> -<AUni ws="qvm-x-ame">+confiar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.170" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ccca40dc-068e-466f-a832-7921edb58444" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+confiar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="efc8bcf0-03e8-4e56-9bd9-fe33aa39a17b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="841afa11-69fe-4168-ba4f-07c57e994449" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +confiar 
\entryTyp root 
\gENG trust 
\gSPN confiar 
\e +confiar 
\c V2 
\ach confia 
\akh confia 
\acl confia 
\akl confia 
\ame confia</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="7a268c05-238e-4c1f-9bc6-badb9c2f35f5" ownerguid="c5fda729-dae3-4ac7-aae3-ed4210571651"> -<Form> -<AUni ws="qvm-x-ach">goberna</AUni> -<AUni ws="qvm-x-acl">goberna</AUni> -<AUni ws="qvm-x-akh">goberna</AUni> -<AUni ws="qvm-x-akl">goberna</AUni> -<AUni ws="qvm-x-ame">goberna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="7a26a686-0489-4378-9a04-66f49d401141" ownerguid="f13ed73c-8b8d-4f97-a172-09f8f88d124f"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Rätu guepishtarcö.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="7a26a6e3-5fd9-4921-a5c6-5962f9011330"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">achuna</AUni> -<AUni ws="qvm-x-acl">achuna</AUni> -<AUni ws="qvm-x-akh">achuna</AUni> -<AUni ws="qvm-x-akl">achuna</AUni> -<AUni ws="qvm-x-ame">achuna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*atruna</AUni> -<AUni ws="qvm-x-acl">*atruna</AUni> -<AUni ws="qvm-x-akh">*atruna</AUni> -<AUni ws="qvm-x-akl">*atruna</AUni> -<AUni ws="qvm-x-ame">*atruna</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.878" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="55865c7d-3e65-4bba-9554-1824efc1bc43" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*atruna</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ab52bd72-851a-4989-92eb-40f5c1118148" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6c368bbd-9cf9-47d8-ac11-cff7aa50b13f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *atruna 
\entryTyp root 
\gENG 
\gSPN 
\e *atruna 
\c N0 
\ach achuna 
\akh achuna 
\acl achuna 
\akl achuna 
\ame achuna</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7a271c6d-bd57-4d17-ae2f-01495cf2c51e" ownerguid="ecc39bc2-6336-48ca-be46-cf5e49a3c267"> -<ExampleWords> -<AUni ws="en">ant, army ant, armyworm, bedbug, bee, beetle, bluebottle fly, botfly, bristletail, bumblebee, butterfly, carpenter bee, chigger, cicada, cockroach, cricket, daddy longlegs, damselfly, deerfly, dragonfly, dung beetle, earwig, firefly, flea, fly, glowworm, gnat, grasshopper, hawkmoth, hellgramite, honeybee, hornet, horsefly, housefly, inchworm, jigger, katydid, ladybug, leaf-hopper, lice, locust, long-horned beetle, louse, mantis, mayfly, midge, millipede, mite, monarch butterfly, mosquito, moth, mud wasp, nit, praying mantis, roach, sawfly, scarab, silkworm, silverfish, stinkbug, swallowtail, termite, tick, tsetse fly, tumblebug, walking stick, wasp, weevil, wiggler, wriggler</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What species of insects are there?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="7a2cbc5f-782b-4ab1-a47d-20fe621214ad" ownerguid="6af96fb2-bd5d-434c-8ec8-2acf7cb58b41"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 95.7 Potrërucho caycag uyshannogmi caycantsi.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="7a2f3da4-c2d2-47bd-b2a3-68540b8a9f4c" ownerguid="bf9606ec-9a8e-4822-8bfd-d5eebc58c65b"> -<ExampleWords> -<AUni ws="en">unlit, dimly-lit, darkened, the half-light</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a place where there is very little light?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7a2f695b-dc64-4de2-9cde-19fc62d67627"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ayni</AUni> -<AUni ws="qvm-x-acl">ayni; ayne</AUni> -<AUni ws="qvm-x-akh">ayni</AUni> -<AUni ws="qvm-x-akl">ayni; ayne</AUni> -<AUni ws="qvm-x-ame">ayni</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ayñi.v</AUni> -<AUni ws="qvm-x-acl">*ayñi.v</AUni> -<AUni ws="qvm-x-akh">*ayñi.v</AUni> -<AUni ws="qvm-x-akl">*ayñi.v</AUni> -<AUni ws="qvm-x-ame">*ayñi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.900" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="23605fc0-402f-4a2c-9d0f-b38e54929deb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ayñi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2bcf0283-cd78-48da-ae77-a3ab3c0cac33" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="08a6571f-a7ac-4133-a966-f5ea0cf0de7c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ayñi.v 
\entryTyp root 
\gENG sass 
\gSPN ser.insolente 
\e *ayñi.v 
\c V2 
\mp +FinalI 
\ach ayni 
\akh ayni 
\acl ayni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ayne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ayni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ayne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ayni</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7a3223b0-5549-48e9-af51-636df614eee3" ownerguid="8fff393a-23c2-42bb-8da8-9b151e790904"> -<ExampleWords> -<AUni ws="en">senile, senility, declining health, aging process</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What problems do the elderly have?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="7a3294f4-4c5a-4d4f-a827-c6d577410902" ownerguid="79436830-092b-4d13-a715-f392d7e33708"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -<Sense> -<objsur guid="db6117c5-121c-433a-a891-e69950f55761" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="7a342e82-d07e-435d-9f8c-2ccb853804a1" ownerguid="24b78cba-d55b-44d2-8a76-5f3df1bf5009"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StTxtPara" guid="7a3430d7-9c73-48fa-8802-69a58352bb0e" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">rikakamun. </Run> -<Run ws="en">\tr < V2 *rika > REF AFAR 3</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="1638fef8-ea1e-4b44-9786-25cf6737df89" t="o" /> -<objsur guid="f6a4409c-5135-4a0c-8b7a-5256e048a2bb" t="o" /> -</Segments> -</rt> -<rt class="PunctuationForm" guid="7a34d709-dd7d-4ac4-94e8-58e444587dd4"> -<Form> -<Str> -<Run ws="en">V2</Run> -</Str> -</Form> -</rt> -<rt class="LexEntry" guid="7a355831-f4bd-4c1b-ae8b-f353a321c7d4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">japshi</AUni> -<AUni ws="qvm-x-acl">japshi; japshe</AUni> -<AUni ws="qvm-x-akh">japshi</AUni> -<AUni ws="qvm-x-akl">japshi; japshe</AUni> -<AUni ws="qvm-x-ame">hapshi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hapshi.v</AUni> -<AUni ws="qvm-x-acl">*hapshi.v</AUni> -<AUni ws="qvm-x-akh">*hapshi.v</AUni> -<AUni ws="qvm-x-akl">*hapshi.v</AUni> -<AUni ws="qvm-x-ame">*hapshi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.670" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a450ec75-e22a-4a72-8451-c5acbebe8206" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hapshi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0408081d-d99d-475d-811e-caf25e70c741" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="48baa7a8-0877-4d5b-8563-ab2e6e2af9ac" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hapshi.v 
\entryTyp root 
\gENG loosen 
\gSPN soltar 
\e *hapshi.v 
\c V1 
\mp +FinalI 
\ach japshi 
\akh japshi 
\acl japshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl japshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl japshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl japshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hapshi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="7a359b70-1cef-48cf-a4d7-3ef77727adce" ownerguid="2c439f03-3a12-4d6e-9035-ccea75da048b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7a37d70c-b227-4e5e-b425-94340b991719" ownerguid="0d841adc-1ffd-4cba-9751-88d787e8086a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="7a386228-f92e-436c-9fd1-c3f3abab6906" ownerguid="e20f83b8-bfb2-4709-80f8-2e039fed9b4e"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="3e8c9bfc-bacb-40a7-8f98-b072981b8be8" t="o" /> -<objsur guid="63c51f68-9cbe-4f8f-ac42-9d422ca03d3b" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="7a3947c9-d586-46bb-8038-1b0083aaf082" ownerguid="3a9da652-d75f-40dc-8b95-e314d9e38437"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">write.letter</AUni> -<AUni ws="es">hacer.carta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9c7ccdd8-8f55-40af-bb5a-45ac0b3e1a3e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="7a3ac877-b973-4478-94b2-fe3e5fd4a556" ownerguid="7211546a-9b07-43b9-9b9f-38cdf95a1f60"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="96990f80-3444-4e9f-a585-202a1653b75b" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">foam</AUni> -<AUni ws="es">espumar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="737ee139-892d-4c77-a290-8416257b5862" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="7a3ac993-d868-426d-8bf3-2748482f89db" ownerguid="11df3c07-d2cc-4a61-b12b-d83002e90e2d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="f1fb2725-ed48-485c-ade6-1965497cd16e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="7a3ff0b8-16d5-44be-9cca-75bddb4f41e2" ownerguid="87ed45e4-6cd1-4e9a-91c7-91462cc0663b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="3c749405-26bc-49be-b227-5d2cad59d98a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7a40d7bd-e2a4-48f5-a300-68df6a75fbc5" ownerguid="78c4c93f-a4af-4325-a119-e79ec9cabcb2"> -<Form> -<AUni ws="qvm-x-ach">putca</AUni> -<AUni ws="qvm-x-acl">putca</AUni> -<AUni ws="qvm-x-akh">putka</AUni> -<AUni ws="qvm-x-akl">putka</AUni> -<AUni ws="qvm-x-ame">putka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="7a42e45b-f7a8-433c-b1df-5f1b74a39b9b" ownerguid="d9e03373-2058-4d9c-b4cd-7babe75e5d6a"> -<Form> -<AUni ws="qvm-x-ach">leopardu; leopardo</AUni> -<AUni ws="qvm-x-acl">leopardu; leopardu; leopardo</AUni> -<AUni ws="qvm-x-akh">leopardu; leopardo</AUni> -<AUni ws="qvm-x-akl">leopardu; leopardu; leopardo</AUni> -<AUni ws="qvm-x-ame">leopardu; leopardo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="7a45bbd3-d191-4a1d-a34c-df4b7c3c18eb" ownerguid="cd5cb831-79c6-4f0f-8a5c-30a070a183ff"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7a463e0d-9c0f-48c8-b9cb-0d8e6ee427fe" ownerguid="d684b91c-95cc-4ace-a36a-574b5d809998"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="7a4663d2-4c89-4cb2-a5dc-2083b65c4a3a" ownerguid="10f0e28a-a156-4a18-8e97-4712b22d6c4b"> -<Form> -<AUni ws="qvm-x-ach">miel; miel</AUni> -<AUni ws="qvm-x-acl">miel; miel</AUni> -<AUni ws="qvm-x-akh">miel; miel</AUni> -<AUni ws="qvm-x-akl">miel; miel</AUni> -<AUni ws="qvm-x-ame">miel; miel</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7a4a40b7-0969-46a2-9171-d70c69ebfc76" ownerguid="e54cd744-d106-4bcf-bd07-b8783c075c21"> -<ExampleWords> -<AUni ws="en">fashion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the business of making fashionable things?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7a4e422f-faef-4f0d-b434-400d1e224a87"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yayan</AUni> -<AUni ws="qvm-x-acl">yayan</AUni> -<AUni ws="qvm-x-akh">yayan</AUni> -<AUni ws="qvm-x-akl">yayan</AUni> -<AUni ws="qvm-x-ame">yayan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yayan</AUni> -<AUni ws="qvm-x-acl">*yayan</AUni> -<AUni ws="qvm-x-akh">*yayan</AUni> -<AUni ws="qvm-x-akl">*yayan</AUni> -<AUni ws="qvm-x-ame">*yayan</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.770" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f2daa9d7-9a96-435f-9239-0a8102f7e380" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yayan</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4706f600-9bc5-4368-af02-a8c0bb9ecf1b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="37949156-faca-4ced-b597-58fb79c1ba68" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yayan 
\entryTyp root 
\gENG stud 
\gSPN cemental 
\e *yayan 
\c N0 
\mp +FinalC 
\ach yayan 
\akh yayan 
\acl yayan 
\akl yayan 
\ame yayan</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="7a4f2b17-8c05-472b-b780-9197c255def3"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">beginning</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="7a51404d-3b1c-4d0e-a51d-2d1406885ba1" ownerguid="a250e19e-4ad2-46e2-91d2-e3d573358e31"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="7a51844e-519e-4970-aeb1-2b558c74abdb" ownerguid="8bc86416-4dc6-4810-b7e6-e14a4d71e0ac"> -<Form> -<AUni ws="qvm-x-ach">sogta</AUni> -<AUni ws="qvm-x-acl">sogta</AUni> -<AUni ws="qvm-x-akh">soqta</AUni> -<AUni ws="qvm-x-akl">soqta</AUni> -<AUni ws="qvm-x-ame">suqta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="7a56c6f0-0ec5-4e62-9c2e-62540aae97b0" ownerguid="6c9bbb3a-b32d-4671-b22e-19f3871340a9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="019799d0-96da-4a56-b845-eb69b7a4d5a7" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">fin</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4e26b0b1-e834-4b23-a889-c05bd21e1d14" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="7a5758e1-7d76-4d2f-8cb1-f72a0d0a01ab" ownerguid="ac79fb7b-f09d-40b4-92ca-34a8c5655349"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7a577e72-7de9-43ea-9cb6-b679c52fe556" ownerguid="2c0c9b51-b081-4f1c-b8a8-8c474764c906"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="7a5960d7-b9eb-4388-a63b-55163d267084" ownerguid="245441c8-7471-41c6-93d8-42315aa19428"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sift</AUni> -<AUni ws="es">cernir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fce04bcf-a0ef-4fcf-8b91-acd814690e63" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="7a6331fc-4eae-42a7-9da0-de5e49481187" ownerguid="da3c18df-1023-4ef1-8a28-3b7549604028"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="7a652915-c2f6-4b48-bba0-92702aebb20e" ownerguid="aa3f7eae-01c2-4fb6-85b1-bf00f119ae38"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="36a83453-a357-4178-84b7-b44a60ba8f65" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="63786f9d-9f35-489c-9abe-c82cf5a2f3ad" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="7a656e80-04f9-4fc6-8b2c-f32144812ecb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sille:ta</AUni> -<AUni ws="qvm-x-acl">sille:ta</AUni> -<AUni ws="qvm-x-akh">sille:ta</AUni> -<AUni ws="qvm-x-akl">sille:ta</AUni> -<AUni ws="qvm-x-ame">sille:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+silleta</AUni> -<AUni ws="qvm-x-acl">+silleta</AUni> -<AUni ws="qvm-x-akh">+silleta</AUni> -<AUni ws="qvm-x-akl">+silleta</AUni> -<AUni ws="qvm-x-ame">+silleta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.683" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d57bb71d-2eb0-48bd-988c-bac219b10929" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+silleta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ae2a0601-f811-42f5-96f5-75cc9dc27100" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3e716b2b-d6e1-4b01-87e4-bc68988f629c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +silleta 
\entryTyp root 
\gENG chair 
\gSPN silleta 
\e +silleta 
\c N0 
\ach sille:ta 
\akh sille:ta 
\acl sille:ta 
\akl sille:ta 
\ame sille:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="7a6abc0f-d291-4c3e-9fa1-9c62f2d8189a" ownerguid="9693dca0-263a-48c2-b98c-21948c2c3608"> -<Form> -<AUni ws="qvm-x-ach">calabäsu</AUni> -<AUni ws="qvm-x-acl">calabäsu; calabäsu; calabäso</AUni> -<AUni ws="qvm-x-akh">calabäsu</AUni> -<AUni ws="qvm-x-akl">calabäsu; calabäsu; calabäso</AUni> -<AUni ws="qvm-x-ame">calabäsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="7a6bfe44-2efd-4987-a8f3-00e33916f9f2" ownerguid="0962e656-ea07-4909-8dbe-7207bd47e41f"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 11.13 Waquin runacunapäga nina shimega cuentestëru ninanmi. Cuentestëru ninanpäga waquin runacuna wilapishtëru nipäcun.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="7a6d94f0-850c-4ada-b11e-4e1a800f1e60" ownerguid="8b7f1eb3-f7a5-43f3-b04a-904df3352d0c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">master</AUni> -<AUni ws="es">patrón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4a0165fb-1fe0-4ec9-aad0-f150963c2eac" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7a6f4867-1831-4f6a-99c7-1bfffbe7fc50" ownerguid="77d0bb8d-671e-45d2-af5d-6dce46d37638"> -<Form> -<AUni ws="qvm-x-ach">cödigu</AUni> -<AUni ws="qvm-x-acl">cödigu</AUni> -<AUni ws="qvm-x-akh">cödigu</AUni> -<AUni ws="qvm-x-akl">cödigu</AUni> -<AUni ws="qvm-x-ame">cödigu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="7a71a573-5118-4d2a-b39a-69518acc17ea"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">juru</AUni> -<AUni ws="qvm-x-acl">juru; juro</AUni> -<AUni ws="qvm-x-akh">juru</AUni> -<AUni ws="qvm-x-akl">juru; juro</AUni> -<AUni ws="qvm-x-ame">huru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*huru</AUni> -<AUni ws="qvm-x-acl">*huru</AUni> -<AUni ws="qvm-x-akh">*huru</AUni> -<AUni ws="qvm-x-akl">*huru</AUni> -<AUni ws="qvm-x-ame">*huru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.771" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ec1d625f-b118-4481-94ae-039f279e1292" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*huru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="468dae40-2067-4cc8-b888-ae8145ce9dd9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9d9b7215-c486-49af-982d-640b6a56ef50" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *huru 
\entryTyp root 
\gENG 
\gSPN 
\e *huru 
\c V1 
\ach juru 
\akh juru 
\acl juru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl juro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl juru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl juro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame huru 
\i Num 12.12 Ama munaycuytsu ari, mamanpa pachalancho wanushga wamrapa garan juruycagnog Mariapa cuerpun ismunantaga.>></Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="7a72d87a-f21b-4fe7-a1ac-9fb9cec305bf" ownerguid="932aa4f1-c31a-4d26-8e59-8b3f8371044b"> -<Form> -<AUni ws="qvm-x-ach">tsogui</AUni> -<AUni ws="qvm-x-acl">tsogui; tsogui; tsogue</AUni> -<AUni ws="qvm-x-akh">tsoqi</AUni> -<AUni ws="qvm-x-akl">tsoqi; tsoqi; tsoqe</AUni> -<AUni ws="qvm-x-ame">tsuqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="7a77af25-5685-48f5-b747-47882001d8c2" ownerguid="7cbbee8f-1f89-43e7-bfc0-a031a97b234e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">child</AUni> -<AUni ws="es">niño</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="165269c3-1d48-499c-89ff-650179c2aae2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="7a7a64a8-2c59-43c3-94b3-c1ebc1265614"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">kä</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="7a7ddd45-4f81-480e-8427-373a30a9c90c" ownerguid="375d1eae-35ea-43eb-8d24-67023afed5d1"> -<Form> -<AUni ws="qvm-x-ach">mishqui</AUni> -<AUni ws="qvm-x-acl">mishqui; mishque</AUni> -<AUni ws="qvm-x-akh">mishki</AUni> -<AUni ws="qvm-x-akl">mishki; mishke</AUni> -<AUni ws="qvm-x-ame">mishki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="7a81e7a1-9cb6-45e3-9399-b25ad01a643d" ownerguid="bc5e0227-243f-4347-bc02-775398459106"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="7a83fccc-3e3e-4659-846c-84d38e5e418a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rupa</AUni> -<AUni ws="qvm-x-acl">rupa</AUni> -<AUni ws="qvm-x-akh">rupa</AUni> -<AUni ws="qvm-x-akl">rupa</AUni> -<AUni ws="qvm-x-ame">rupa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rupa.v</AUni> -<AUni ws="qvm-x-acl">*rupa.v</AUni> -<AUni ws="qvm-x-akh">*rupa.v</AUni> -<AUni ws="qvm-x-akl">*rupa.v</AUni> -<AUni ws="qvm-x-ame">*rupa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.397" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e951b677-b96b-4a79-9e58-11433f5c6a26" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rupa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2e48036b-ccfb-40e6-8525-f1ed026ea3c9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="112df881-e78a-4c44-b356-7f88a3c746ea" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rupa.v 
\entryTyp root 
\gENG burn 
\gSPN quemar 
\e *rupa.v 
\c V2 
\ach rupa 
\akh rupa 
\acl rupa 
\akl rupa 
\ame rupa</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="7a84fc29-136a-471c-81b1-61b911297af4" ownerguid="6a8ef36e-f87f-45cd-b9b6-bda7ec0159d0"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="36a6163f-c527-4dbe-9d41-e9e7fb11bb09" t="o" /> -<objsur guid="18b25043-9cdb-448b-a831-eabee9bfdacb" t="o" /> -</MorphBundles> -</rt> -<rt class="CmSemanticDomain" guid="7a8cb8d3-797d-478d-b7dd-265a1eedc0c1" ownerguid="dc177f3c-d0fd-4232-adf1-a77b339cdbb2"> -<Abbreviation> -<AUni ws="en">6.5.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.458" /> -<DateModified val="2022-9-23 16:55:8.458" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a fence, wall, hedge, or other barrier separating one house from another, and a gate or entryway through a fence or wall.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>7F Walls and Fences</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Fence, wall</AUni> -</Name> -<Questions> -<objsur guid="cae9b41e-3cee-40af-b7fd-546398c61918" t="o" /> -<objsur guid="752a2868-9e66-4bd7-b00c-96a89139c757" t="o" /> -<objsur guid="29acb1c8-99b9-4af3-a5e5-46aef6f9ed83" t="o" /> -<objsur guid="9143a854-6048-4419-9397-189dfc717c97" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="7a8d12e7-570a-4312-87d1-22ba61e67999" ownerguid="e5753e53-fb22-4adb-8e65-709f727cd3cb"> -<Form> -<AUni ws="qvm-x-ach">domina</AUni> -<AUni ws="qvm-x-acl">domina</AUni> -<AUni ws="qvm-x-akh">domina</AUni> -<AUni ws="qvm-x-akl">domina</AUni> -<AUni ws="qvm-x-ame">domina</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="7a8e1bca-0034-4a12-a4b2-30fc2ea6eedb" ownerguid="7c096b2c-2bc2-492c-a061-9b64be1981ac"> -<Form> -<AUni ws="qvm-x-ach">milga</AUni> -<AUni ws="qvm-x-acl">milga</AUni> -<AUni ws="qvm-x-akh">milga</AUni> -<AUni ws="qvm-x-akl">milga</AUni> -<AUni ws="qvm-x-ame">milga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7a9066b5-34e7-4777-b4a2-100155dbf929" ownerguid="3ea4c495-b837-4310-8741-38d89fa63e0b"> -<ExampleWords> -<AUni ws="en">certainly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) certainty: the speaker is emphasizing that the proposition is true.</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7a9647d4-809c-47c8-a691-e4256894252a" ownerguid="adf6ad2b-7af9-4bd8-a7b4-f864b9dad86d"> -<ExampleWords> -<AUni ws="en">initiate (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to initiating a child into adulthood?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7a96a148-1d38-4d26-a6c0-35e0911bd49c" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<ExampleWords> -<AUni ws="en">hotel owner, concierge, porter, desk clerk</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What are the occupations in hotel management?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7a996e65-d07f-417f-b8a7-98aba71d6a4e" ownerguid="a09c7bc2-692c-4e60-8683-65b84eff22cd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">angry</AUni> -<AUni ws="es">enojarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f146c4f0-5fc9-4c42-af82-64e3e8327833" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoAffixAllomorph" guid="7a9a0db9-5eb5-414c-9dd3-907a54abc86b" ownerguid="d1fa5a96-43b1-4974-9134-dd49a6603053"> -<Form> -<AUni ws="qvm-x-ach">na</AUni> -<AUni ws="qvm-x-acl">na</AUni> -<AUni ws="qvm-x-akh">na</AUni> -<AUni ws="qvm-x-akl">na</AUni> -<AUni ws="qvm-x-ame">na</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="Segment" guid="7a9c2e2b-591f-42c0-8102-442d7f5e36a0" ownerguid="0dedd593-9e27-48f4-9688-24b67187e8ae"> -<Analyses> -<objsur guid="9b703e2c-527b-44eb-b565-6bedb96fc1ef" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexSense" guid="7a9d5287-b59b-40cb-b16e-79818e3ae4b5" ownerguid="966075bf-6c37-4c86-91c9-1e4684e97b75"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="a7ce228d-da93-41a8-93fd-08d42493ebe9" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">only</AUni> -<AUni ws="es">solo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f6c6df56-a369-4462-9c8f-e109e0f67bb5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7a9d775e-c414-432f-9e4c-ddbb3e792c97" ownerguid="4c862416-f7c4-4a3c-82ac-fe81e1efb879"> -<ExampleWords> -<AUni ws="en">intestine, intestinal tract, gut, bowel, small intestine, large intestine, colon, transverse colon, rectum, anus</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What are the parts of the intestines?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7a9e482f-8c1a-4704-aff8-7c72655ec640" ownerguid="374f8454-403f-40b1-8cc0-b3aa4b65080c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7a9efd97-4656-4d29-80ac-0c5b5da7ebd7" ownerguid="8aec2883-84da-46ea-a384-95ded5f89ce0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7aa05678-af75-4a0a-ab75-b449f7ca9a6a" ownerguid="56da6572-a106-43d5-ab55-28f96bf065ea"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="7aa21d9e-0a2a-4656-943c-68d3fa53b868" ownerguid="5d1bb537-bcee-49f4-bb91-86f347bc471d"> -<Form> -<AUni ws="qvm-x-ach">atsicyä</AUni> -<AUni ws="qvm-x-acl">atsicyä</AUni> -<AUni ws="qvm-x-akh">atsikyä</AUni> -<AUni ws="qvm-x-akl">atsikyä</AUni> -<AUni ws="qvm-x-ame">atsikyaa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="35058c7a-447a-4ee8-89bd-323da24bf7c5" t="r" /> -</PhoneEnv> -</rt> -<rt class="WfiWordform" guid="7aa258a7-6425-4681-bfdb-ee86ed99538d"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">rikapäkatsikan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="7aa3625f-bc64-4673-ba2d-817227a27e43" ownerguid="fa9a6fa0-fc86-4e9d-a04b-b7aa62cde6b2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shrink</AUni> -<AUni ws="es">encoger</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="11fec6dc-37fd-4903-9273-e4ef005fff77" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7aa48861-6ceb-4bbd-b98d-67d8ed3d0e04" ownerguid="7fb2a453-3db7-4a50-bd47-55991d7b66a1"> -<Form> -<AUni ws="qvm-x-ach">veinti; veinte</AUni> -<AUni ws="qvm-x-acl">veinti; veinti; veinte</AUni> -<AUni ws="qvm-x-akh">veinti; veinte</AUni> -<AUni ws="qvm-x-akl">veinti; veinti; veinte</AUni> -<AUni ws="qvm-x-ame">veinti; veinte</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7aa7d5f4-78a3-4a3a-a020-7923b109b728" ownerguid="9a456463-3c71-4f9a-8117-dc2fcb087bd3"> -<ExampleWords> -<AUni ws="en">tend a fire</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to keeping a fire burning?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="7aaf25bf-768f-4e25-9ebf-f7bad073679f" ownerguid="f440b36d-dae0-4082-8d00-5b814ef4c416"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">no</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">no</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">no</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">no</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">naw</Run> -</AStr> -</Form> -<Morph> -<objsur guid="11433051-3e59-4f5e-b9d2-7440143d0388" t="r" /> -</Morph> -<Msa> -<objsur guid="dbacef16-50cb-4f71-a590-54ec4684dfe4" t="r" /> -</Msa> -<Sense> -<objsur guid="d2016811-b963-456b-b802-8d0afd3f9e92" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="7aaf3b02-0ef7-4b4e-a9d3-8617b1d841a6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">altar</AUni> -<AUni ws="qvm-x-acl">altar</AUni> -<AUni ws="qvm-x-akh">altar</AUni> -<AUni ws="qvm-x-akl">altar</AUni> -<AUni ws="qvm-x-ame">altar</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+altar</AUni> -<AUni ws="qvm-x-acl">+altar</AUni> -<AUni ws="qvm-x-akh">+altar</AUni> -<AUni ws="qvm-x-akl">+altar</AUni> -<AUni ws="qvm-x-ame">+altar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.719" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="418659df-c426-4175-a326-a34a835d1712" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+altar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="99c8750f-e339-4090-b184-3243781f85ef" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="62c3d273-e874-411d-af9f-83e25ec51adb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +altar 
\entryTyp root 
\gENG alter 
\gSPN altar 
\e +altar 
\c N0 
\mp +FinalC 
\ach altar 
\akh altar 
\acl altar 
\akl altar 
\ame altar</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="7ab73859-51e8-4cb8-869b-91d6a78f95e2"> -<Analyses> -<objsur guid="5f22e72b-5029-485a-a5e8-7fa7276c9920" t="o" /> -</Analyses> -<Checksum val="1338643724" /> -<Form> -<AUni ws="qvm-x-akh">wawäkunata</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="7aba0347-4fdf-4782-bfdf-c26a3290c596"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sapa</AUni> -<AUni ws="qvm-x-acl">sapa</AUni> -<AUni ws="qvm-x-akh">sapa</AUni> -<AUni ws="qvm-x-akl">sapa</AUni> -<AUni ws="qvm-x-ame">sapa</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.538" /> -<DateModified val="2022-10-15 16:7:54.785" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fccf41bc-422c-4f76-bdf4-ea0b3bac5d21" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">MUCH</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="025cfd18-cce0-4a3c-a2c2-eafda25bd16c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4707e77b-9dac-478c-a598-a43c298e8de5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx MUCH 
\entryTyp suffix 
\gENG MUCH 
\gSPN MUCHO 
\e MUCH 
\c N0/N0 
\ach sapa 
\akh sapa 
\acl sapa 
\akl sapa 
\ame sapa 
\o 000</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="7abce009-1635-4003-918e-a3d351898354" ownerguid="52bff85b-cf9a-477e-90d4-b5777500bd79"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7abd7118-d5d1-4d2a-8689-6f1dc45cae97" ownerguid="3e1bf327-fc33-4051-afe1-f210b4b2592f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="7abdad1a-5fa0-4b69-846e-8958f4b02292" ownerguid="25a4ea55-4f95-4595-842c-6e4b093ce1c3"> -<Form> -<AUni ws="qvm-x-ach">estadiu; estadio</AUni> -<AUni ws="qvm-x-acl">estadiu; estadiu; estadio</AUni> -<AUni ws="qvm-x-akh">estadiu; estadio</AUni> -<AUni ws="qvm-x-akl">estadiu; estadiu; estadio</AUni> -<AUni ws="qvm-x-ame">estadiu; estadio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="7ac14276-a2b9-490b-b775-c38d69cffd12" ownerguid="6f8d4578-3c91-47b5-a3c5-a3004e9f6e65"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ma</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ma</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ma</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ma</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ma</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d461bd39-dcdb-4b92-b683-c6749822c8b1" t="r" /> -</Morph> -<Msa> -<objsur guid="554634ac-1f6d-4bfc-8e9c-9d1dfeca4367" t="r" /> -</Msa> -<Sense> -<objsur guid="f442ba09-2469-4cfe-a31e-bcd120dbdec2" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="7ac2a0f2-0f68-4cf5-a808-d0acd361d929" ownerguid="df361917-97dd-4a8b-b98b-fdfa4563617d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="93d10fdf-0c24-47c2-9270-ce8dffae1829" t="o" /> -<objsur guid="936613dc-c9b0-4f42-b95b-ba630585f6c7" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">pull</AUni> -<AUni ws="es">jalar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="89411065-3bc1-4389-ba1c-9274549d75a2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7ac41a57-16af-47cb-aef7-d898d3712df6" ownerguid="9e66a042-6748-4186-8a0d-66e194b4039c"> -<Form> -<AUni ws="qvm-x-ach">shuti</AUni> -<AUni ws="qvm-x-acl">shuti; shuti; shute</AUni> -<AUni ws="qvm-x-akh">shuti</AUni> -<AUni ws="qvm-x-akl">shuti; shuti; shute</AUni> -<AUni ws="qvm-x-ame">shuti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="7ac829d3-c7e9-4566-b15e-0ba29ecadba2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">na; na:</AUni> -<AUni ws="qvm-x-acl">na; na:</AUni> -<AUni ws="qvm-x-akh">na; na:</AUni> -<AUni ws="qvm-x-akl">na; na:</AUni> -<AUni ws="qvm-x-ame">na; na:</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.497" /> -<DateModified val="2022-10-18 13:48:28.893" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bcc4e020-51a9-4000-b80d-0d1cc080ba88" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">DES</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e8b765be-2769-4145-855b-1bf2286e6e14" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="633e09df-bb62-4c24-9caf-deb45f73dc4a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx DES 
\entryTyp suffix 
\gENG DES 
\gSPN DES 
\e DES 
\c N0/V1 V1/V1 V1/V2 V2/V2 
\o 020 
\mp +foreshortens +mlowers 
\mp +underlong 
\ach na foreshortened 
\ach na: 
\akh na foreshortened 
\akh na: 
\acl na foreshortened 
\acl na: 
\akl na foreshortened 
\akl na: 
\ame na foreshortened 
\ame na: 
\mp +FinalC 
\mp +FinalLength 
\mcc DES / [TakeDES] _ 
\mcc DES / AFAR ~_ [q] 
\mcc DES / ~_ BEN1 
\mcc DES / ~_ PASS 
\mcc DES / ~_ REFDIR 
\mcc DES / ~_ BEN3 
\mcc DES / ~_ BEN2 [q] 
\mcc DES / ~_ INF.noI [poss] 
\mcc DES / ~_ INF.noI PLUR 
\mcc DES / ~_ BEN4 [pur] 
\mcc DES / *kay ~_ INF.noI 
\mcc DES / ~_ BEN4</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7acaaffb-2ba3-4f2e-9b82-567459674b03" ownerguid="d80360f9-7319-40a7-a2bc-fd8718711ba4"> -<ExampleWords> -<AUni ws="en">beforehand, in advance, advance, prior</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that someone does something before a particular event?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="7acb41ff-ed4e-48e0-8914-31a4213e4259"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">occuring</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiWordform" guid="7acde7d5-1a5b-4e16-99c7-5f297d2643f4"> -<Analyses> -<objsur guid="02175330-15dc-4689-a4d4-9b2ce882ab82" t="o" /> -<objsur guid="0e59680e-7850-488f-943f-d0a8d5659349" t="o" /> -<objsur guid="18c1f944-eaf0-4e7e-8799-463da831e6f0" t="o" /> -<objsur guid="267cfa86-1b16-4f58-88ef-988eb679d967" t="o" /> -<objsur guid="5fdf723e-9f43-42d6-a717-cf395f74b1a5" t="o" /> -<objsur guid="bd745493-61d8-47b0-9ff9-060f86ce7e17" t="o" /> -<objsur guid="c114ea07-250d-4acb-918c-b2916f40f47b" t="o" /> -<objsur guid="d2822a2f-3338-46d4-bf35-0917358ce611" t="o" /> -<objsur guid="d88f62ce-1375-4ddb-a635-ff73b844d650" t="o" /> -<objsur guid="ecce310f-de4b-43f0-8ed6-c18b70575b7a" t="o" /> -</Analyses> -<Checksum val="-2022853179" /> -<Form> -<AUni ws="qvm-x-akh">yapay</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="7acea74f-381d-43be-a13f-9dd90418eed4" ownerguid="d117aa22-3f18-47c4-9683-51ecf1dc7134"> -<ExampleWords> -<AUni ws="en">sap, resin, juice, milk</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(19) What liquids are produced by plants?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7ad0a091-fe71-4ad0-b10f-9740992f8d78" ownerguid="68dcc8eb-e314-4701-9118-22f59ba41e40"> -<Form> -<AUni ws="qvm-x-ach">muru</AUni> -<AUni ws="qvm-x-acl">muru; muro</AUni> -<AUni ws="qvm-x-akh">muru</AUni> -<AUni ws="qvm-x-akl">muru; muro</AUni> -<AUni ws="qvm-x-ame">muru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="7ad54364-ca8c-4b7c-9748-f83efb44d0ea" ownerguid="e45b8bac-9623-4f84-a113-9dec13a8db64"> -<Abbreviation> -<AUni ws="en">3.5.1.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to mentioning something--to talk about something but without saying much about it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Mention</AUni> -</Name> -<Questions> -<objsur guid="93f2dd18-69f9-44a9-aaa7-8a80f8493ae8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="7ad73ce6-6ce9-48bf-8b02-5a669bbf4986" ownerguid="b6b73d41-e23f-4f22-b01e-7e75f4115fce"> -<ExampleWords> -<AUni ws="en">reach, attain, surpass</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to reaching a goal?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7ad7cabe-f610-4fa3-9769-de718dcb8107" ownerguid="97e1aba5-2ac1-44a3-8f18-59b2347a54a1"> -<ExampleWords> -<AUni ws="en">foundation stone, cornerstone</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What materials are used to make a foundation?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7ada7f5d-3855-4c33-a73c-7744e3198d0a" ownerguid="a823dbb3-0137-43cd-9ebd-765a139a453e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="32531532-2479-43d1-90fc-14d6f6535b37" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">straw</AUni> -<AUni ws="es">paja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="12b7c111-b685-4ad8-a2c2-59cd1a996e4d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="7adab163-a295-49e5-8f52-7dbf010a0824" ownerguid="734aa088-a83d-40d3-aadc-4defc1764631"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chick</AUni> -<AUni ws="es">pollito</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e101d260-74d9-4556-9cb1-fe0ccd69e15f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7adb6312-9b5b-4d80-ac2b-77376d25c63f" ownerguid="59a95939-44d7-4396-9ef7-3a80c17e9fb1"> -<ExampleWords> -<AUni ws="en">obscene, coarse, crude, dirty, filthy, improper, indecent, lewd, naughty, profane, risqué, rude, saucy, suggestive, vulgar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe speech or actions that are obscene?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7ade0dd1-e624-4137-8503-1cd7761db2a0" ownerguid="536a2d3e-2303-43bc-bf53-379131eb5730"> -<ExampleWords> -<AUni ws="en">metallic, copper, brass, bronze, bronzed, gilded, gilt, gold, golden, platinum, silver, silvery, steely</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe something that looks like metal?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7ade32e9-68ed-4769-a59a-14558b85584a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cu:ra</AUni> -<AUni ws="qvm-x-acl">cu:ra</AUni> -<AUni ws="qvm-x-akh">cu:ra</AUni> -<AUni ws="qvm-x-akl">cu:ra</AUni> -<AUni ws="qvm-x-ame">cu:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cura</AUni> -<AUni ws="qvm-x-acl">+cura</AUni> -<AUni ws="qvm-x-akh">+cura</AUni> -<AUni ws="qvm-x-akl">+cura</AUni> -<AUni ws="qvm-x-ame">+cura</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.254" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7f720c07-0bcd-451d-bfd6-d6fb10f55533" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cura</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5b05f0b2-feac-4432-810f-1fbdc13961af" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="42b8c953-6dbd-4c19-a5b5-8610050d1ba5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cura 
\entryTyp root 
\gENG priest 
\gSPN cura 
\e +cura 
\c N0 
\ach cu:ra 
\akh cu:ra 
\acl cu:ra 
\akl cu:ra 
\ame cu:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="7adf468c-b93a-4b04-8af6-4c691122a4eb" ownerguid="d01f1c51-522e-4b35-81b3-00577dbfa3bd"> -<Abbreviation> -<AUni ws="en">8.3.3.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.609" /> -<DateModified val="2022-9-23 16:55:8.609" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is white.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">White</AUni> -</Name> -<Questions> -<objsur guid="3cea19d0-1e9e-44b1-a690-2e7da1d94d78" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="7adf488a-3369-4982-a853-1cb252de755c" ownerguid="e6da67fe-1112-4161-a37e-7004e5632e5e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="7ae00c11-7dc2-4492-92a2-f21fe9e53e03" ownerguid="e4d01123-4e1c-4a7e-bd59-34ac88aae6fa"> -<Form> -<AUni ws="qvm-x-ach">capöti; capöti</AUni> -<AUni ws="qvm-x-acl">capöti; capöti; capöte</AUni> -<AUni ws="qvm-x-akh">capöti; capöti</AUni> -<AUni ws="qvm-x-akl">capöti; capöti; capöte</AUni> -<AUni ws="qvm-x-ame">capöti; capöti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7ae72427-7ad6-42cb-be07-461e9fce945b" ownerguid="250a52e4-ede0-427d-8382-46a5742d4f96"> -<ExampleWords> -<AUni ws="en">go to the hospital, have someone in, stay in the hospital, hospital stay, admit, discharge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to being a patient in a hospital?</AUni> -</Question> -</rt> -<rt class="StTxtPara" guid="7ae75bc7-71c5-481e-87cb-94fda885a4b4" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">yarqumun</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="8aa22fc7-f766-4c56-92a4-bce46e649a07" t="o" /> -</Segments> -</rt> -<rt class="CmDomainQ" guid="7ae7e27e-2ce1-4d6b-8031-be8cb0fd76f3" ownerguid="6c282031-f1ca-492a-b94c-b48e74e6f25d"> -<ExampleWords> -<AUni ws="en">liberated, be free, unfettered, unbound, unchained, unleashed, pardoned, release (n), released, reprieve, parole, unrestrained, licensed, authorized, unconfined</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to freeing someone from bondage?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7aef1599-dbbe-4929-8c52-eb28af1784d1" ownerguid="da39c0d9-a5c1-4f10-bd3b-4e988abcab5a"> -<ExampleWords> -<AUni ws="en">convicting</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe something that causes someone to feel sorry?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7af01344-cd6f-433d-8d12-0b5cb9b38973" ownerguid="0f1d6478-3f28-47b4-99a5-3e7270b454ad"> -<Form> -<AUni ws="qvm-x-ach">mantu; manto</AUni> -<AUni ws="qvm-x-acl">mantu; mantu; manto</AUni> -<AUni ws="qvm-x-akh">mantu; manto</AUni> -<AUni ws="qvm-x-akl">mantu; mantu; manto</AUni> -<AUni ws="qvm-x-ame">mantu; manto</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="7af2dfed-a641-43a1-bada-75e7d2240d3d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">caru</AUni> -<AUni ws="qvm-x-acl">caru; caru; caro</AUni> -<AUni ws="qvm-x-akh">karu</AUni> -<AUni ws="qvm-x-akl">karu; karu; karo</AUni> -<AUni ws="qvm-x-ame">karu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*karu</AUni> -<AUni ws="qvm-x-acl">*karu</AUni> -<AUni ws="qvm-x-akh">*karu</AUni> -<AUni ws="qvm-x-akl">*karu</AUni> -<AUni ws="qvm-x-ame">*karu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.943" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cc498507-c662-4616-9eb1-6113223c87ff" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*karu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c1ee14c3-60f5-4ff8-8885-84d7fb3aacb3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="23ef6097-8dc9-4b54-baa5-a874467488bc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *karu 
\entryTyp root 
\gENG far 
\gSPN lejos 
\e *karu 
\c N0 
\ach caru 
\akh karu 
\acl caru / _# 
\acl caru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl caro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl karu / _# 
\akl karu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl karo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame karu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="7af38311-7801-43d2-b83f-a2b1745d9c61" ownerguid="c6e365c2-5fd4-4d69-8202-bc20a49fa1d8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="71365c2a-e254-43af-89b3-e3974a992188" t="r" /> -</Morph> -<Msa> -<objsur guid="6c33f89d-3f7a-4bad-b071-ac31d875398c" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="7af4f3de-b4eb-4fbe-ac7a-c2c3109953e2" ownerguid="bffe6dbd-8a09-4958-b6a0-dc735daa5798"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1 V2/V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">BKFRTH</AUni> -<AUni ws="es">AQUIALLA</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a8caf8c8-0473-4c7e-80ec-9dc4ff6bb4c3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="7af5072c-73dd-4c5c-b71a-3e5d6cbcbfcf" ownerguid="826c3361-e08e-4ca8-8324-57b56884776c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mass</AUni> -<AUni ws="es">misa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="12a0c6b0-7d10-49fd-8547-d01f14a339fb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="7af720b5-ba66-46b1-b689-3e61415d7d6a" ownerguid="95fbeece-791e-4cba-aebe-344209ae6be3"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JER 2.36 Asiria nacionman puntata yäracuptiquipis desairishushgayquinoglami Egipto nacionman yäracuptiquipis desairishunquipag.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="7af7d59d-d376-4197-b67f-ddb1d43466c7" ownerguid="cb1ecce3-ca8d-4b27-9438-20478dc6fde4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="7af8bab4-6fae-483c-8e49-c553b1b612d4" ownerguid="a7a7e774-fa1c-4edf-94ec-8245dfdb28c6"> -<Form> -<AUni ws="qvm-x-ach">conëju</AUni> -<AUni ws="qvm-x-acl">conëju; conëju; conëjo</AUni> -<AUni ws="qvm-x-akh">conëju</AUni> -<AUni ws="qvm-x-akl">conëju; conëju; conëjo</AUni> -<AUni ws="qvm-x-ame">conëju</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="7af9732c-a7fb-4a39-8f78-ca558272fafd" ownerguid="61274b35-6a9f-4a70-b385-36d783abf631"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7afb96ff-66f3-4429-9270-0ebca2bd1db0" ownerguid="b14db9f4-5e1d-4a2b-bec0-0d6bcb5b1a31"> -<ExampleWords> -<AUni ws="en">fall over, topple over, tip over</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to something falling onto its side?</AUni> -</Question> -</rt> -<rt class="MoInflAffMsa" guid="7afcee6e-54b0-4ff0-8b7f-bf81e7e75205" ownerguid="a854b6a5-e727-49a7-8123-dad693a9a80c"> -<PartOfSpeech> -<objsur guid="a4fc78d6-7591-4fb3-8edd-82f10ae3739d" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="f9e1228b-4c5b-4e23-bd04-d513eddcbaea" t="r" /> -</Slots> -</rt> -<rt class="MoStemAllomorph" guid="7afe1328-9593-41a2-88c3-f53186b7670c" ownerguid="a33fc8bd-1004-451d-a46a-2476025fc95b"> -<Form> -<AUni ws="qvm-x-ach">jubila</AUni> -<AUni ws="qvm-x-acl">jubila</AUni> -<AUni ws="qvm-x-akh">jubila</AUni> -<AUni ws="qvm-x-akl">jubila</AUni> -<AUni ws="qvm-x-ame">jubila</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="7b007874-6c16-48ff-8c48-28b9653406a8" ownerguid="e828986c-b6ce-489f-a93d-0a827a8b7e4c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Gen 12.9 Tsaypita aywacurna cercaman cercaman witir aywargan Neguev tsaqui jirca quinrayyag.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="7b023dc2-a59b-4052-b287-0a7e02238056" ownerguid="2540ea13-279e-4bac-9951-8acdd2159eb2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sup</AUni> -<AUni ws="es">cenar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="05c3a652-52b3-4915-acb1-7aa67ea6fa32" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="7b077388-eb2c-422d-9f37-2e74c8f0f05c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shansha; shansha:</AUni> -<AUni ws="qvm-x-acl">shansha; shansha:</AUni> -<AUni ws="qvm-x-akh">shansha; shansha:</AUni> -<AUni ws="qvm-x-akl">shansha; shansha:</AUni> -<AUni ws="qvm-x-ame">shansha; shansha:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shansha:</AUni> -<AUni ws="qvm-x-acl">*shansha:</AUni> -<AUni ws="qvm-x-akh">*shansha:</AUni> -<AUni ws="qvm-x-akl">*shansha:</AUni> -<AUni ws="qvm-x-ame">*shansha:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.541" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c0accdbc-109f-4039-a5de-53187245b59d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shansha:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5aefe08f-c217-4a39-81ae-461d4d08983d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="02ccbafb-4ae9-4fb1-a813-e6af1f902634" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shansha: 
\entryTyp root 
\gENG 
\gSPN 
\e *shansha: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach shansha foreshortened 
\ach shansha: 
\akh shansha foreshortened 
\akh shansha: 
\acl shansha foreshortened 
\acl shansha: 
\akl shansha foreshortened 
\akl shansha: 
\ame shansha foreshortened 
\ame shansha:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="7b07cf96-177b-4d0a-badd-6d661e1fba77" ownerguid="53451ca1-90c7-4c94-a620-597831689361"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Lev 11</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="7b07f850-6071-440d-9e69-56575d38a83a" ownerguid="3b734f1e-083d-42c4-b4ef-5b03e13e3525"> -<Form> -<AUni ws="qvm-x-ach">palangänu</AUni> -<AUni ws="qvm-x-acl">palangänu; palangänu; palangäno</AUni> -<AUni ws="qvm-x-akh">palangänu</AUni> -<AUni ws="qvm-x-akl">palangänu; palangänu; palangäno</AUni> -<AUni ws="qvm-x-ame">palangänu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="7b08c7bd-7cc4-4f02-bc39-1eb78f40c333" ownerguid="834a5ed2-d9b6-493e-9c8c-0edfc1175db8"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7b09e390-1d3a-4c9a-8639-c5a4a03f592b" ownerguid="58be5db0-c648-4522-bad0-02cd9cc15f37"> -<ExampleWords> -<AUni ws="en">foundation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the foundation of a building?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7b0aa329-eb59-418d-ace0-c0a5a2874941" ownerguid="a3ac2a2f-d5b9-48ae-a3aa-85bdfab73473"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="7b0f7d96-3188-4e66-b22f-f7efd463f80d" ownerguid="94eec3c2-abc3-48d6-b3a8-e3e7ebb7ac98"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">six</AUni> -<AUni ws="es">seis</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bc052c48-d3ad-43b6-a52c-5fdfddda49fc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7b0fc525-b91b-41bc-b61b-6bf7cd6f6448" ownerguid="acddd447-bf8a-4d74-8501-7defb0525cc0"> -<ExampleWords> -<AUni ws="en">hoof and mouth, cowpox</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What types of animal diseases are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7b108d20-1693-4e0d-8872-b51f17839132" ownerguid="db2232d9-8b17-4920-936f-2b6249c6f7fa"> -<ExampleWords> -<AUni ws="en">caught red-handed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What words refer to catching a thief?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7b1190ea-1558-41e8-a5da-668d010c049d" ownerguid="2f20e2a5-9e6b-4c6a-a7e5-3c4e64c35d14"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sticker</AUni> -<AUni ws="es">espina</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a3874e81-d550-4db1-8f35-ac3a1c7c4659" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="7b17e304-9a3f-463f-8216-cd1e1e119e0e" ownerguid="c0d903bf-6502-45dd-9dd8-cff7f022c696"> -<Abbreviation> -<AUni ws="en">8.1.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.567" /> -<DateModified val="2022-9-23 16:55:8.567" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to dividing one number by another number.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Divide numbers</AUni> -</Name> -<Questions> -<objsur guid="ad5563f2-c536-4c19-9d85-0fa19b15ed06" t="o" /> -<objsur guid="d8e39ca6-3e8a-4a4c-83e3-98fdf21733da" t="o" /> -<objsur guid="69198292-c558-49c9-859b-7469f7d3ee94" t="o" /> -<objsur guid="5cd58907-3499-41be-8331-79d8ed747e8e" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="e5f9c9cf-0b0c-47aa-b7df-8c37f211cd00" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="7b19ab85-7a73-4128-aa85-763bc369e465" ownerguid="12b6a9e2-f4c6-4b4f-aa70-ab7bf0f33057"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="7b1a11c2-1602-4fa1-9736-4ec140646a5e" ownerguid="e086ff1a-7212-4c35-b8fd-daf2d211ef0a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">prohibit</AUni> -<AUni ws="es">prohibir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="42d34e5b-96b3-4745-a9a1-f8fef237f0c2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7b1ebf43-411a-4a91-a98d-9bece3e55510" ownerguid="1c3c8af0-56b9-4617-862e-21f39b388606"> -<ExampleWords> -<AUni ws="en">dying, be close to death, about to die, on death's doorstep, be at death's door, have one foot in the grave</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe someone who is almost dead?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7b1f08b2-fe61-440c-ac98-045ffaddd956" ownerguid="e4e05724-01ec-4c61-90f0-b8658cc8ca51"> -<ExampleWords> -<AUni ws="en">sunglasses, dark glasses, goggles</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What things do people use to protect their eyes?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7b25abb8-493c-4152-9542-b953b32ce560" ownerguid="5f8aec4d-cfc6-49ff-96fc-74373c2c16ba"> -<Form> -<AUni ws="qvm-x-ach">asula</AUni> -<AUni ws="qvm-x-acl">asula</AUni> -<AUni ws="qvm-x-akh">asula</AUni> -<AUni ws="qvm-x-akl">asula</AUni> -<AUni ws="qvm-x-ame">asula</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="7b2702a5-9ab0-4c7e-b7b0-d665d3e60668"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">washcu</AUni> -<AUni ws="qvm-x-acl">washcu; washcu; washco</AUni> -<AUni ws="qvm-x-akh">washku</AUni> -<AUni ws="qvm-x-akl">washku; washku; washko</AUni> -<AUni ws="qvm-x-ame">washku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*washku</AUni> -<AUni ws="qvm-x-acl">*washku</AUni> -<AUni ws="qvm-x-akh">*washku</AUni> -<AUni ws="qvm-x-akl">*washku</AUni> -<AUni ws="qvm-x-ame">*washku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.556" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="36a51425-a745-49cd-9730-94b1189f1839" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*washku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f353730d-7edf-4897-84d6-fe485761e8bb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bc3fd853-3bec-48db-a7d7-9b814215773c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *washku 
\entryTyp root 
\gENG a.drink 
\gSPN trago 
\e *washku 
\c N0 
\ach washcu 
\akh washku 
\acl washcu / _# 
\acl washcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl washco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl washku / _# 
\akl washku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl washko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame washku</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="7b27ad71-175e-4e8a-a429-d6e6f4d5dfb3" ownerguid="a934fe16-268d-4675-9a89-3a31a4adedbd"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7b29a93f-ed97-459d-b2d3-2d5521d2cd4f" ownerguid="608cf9b0-b9df-47d6-aec9-7d429c877173"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7b2b2e08-9cbc-4c57-9297-171c2a2e40dc" ownerguid="e8ec3885-c692-4b90-a5b3-4c86da642666"> -<ExampleWords> -<AUni ws="en">Thames, Mississippi, Missouri, Hudson</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the names of the rivers in the language area?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7b2bb976-a035-4423-aa43-850c28641fea"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cunruru</AUni> -<AUni ws="qvm-x-acl">cunruru; cunruro</AUni> -<AUni ws="qvm-x-akh">kunruru</AUni> -<AUni ws="qvm-x-akl">kunruru; kunruro</AUni> -<AUni ws="qvm-x-ame">kunruru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kunruru.v</AUni> -<AUni ws="qvm-x-acl">*kunruru.v</AUni> -<AUni ws="qvm-x-akh">*kunruru.v</AUni> -<AUni ws="qvm-x-akl">*kunruru.v</AUni> -<AUni ws="qvm-x-ame">*kunruru.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.13" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6a801329-3755-44e3-b79a-38b8e78331ba" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kunruru.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="152eaf26-8eee-476c-bcd9-8fbf8862d8b8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9215eeca-9ab6-46d3-b5b5-d78e96450399" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kunruru.v 
\entryTyp root 
\gENG to.thunder 
\gSPN sonar.trueno 
\e *kunruru.v 
\c V1 
\ach cunruru 
\akh kunruru 
\acl cunruru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl cunruro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kunruru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kunruro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kunruru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7b2c8914-faa2-4075-a90f-da402fcfd781" ownerguid="fbf40f2e-e743-479d-80b2-63325407d5d1"> -<ExampleWords> -<AUni ws="en">that, namely, namely that, that is, i.e.</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to identify a specific case?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7b340feb-3b8f-47be-98fd-66617a160dca"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aybe:sis</AUni> -<AUni ws="qvm-x-acl">aybe:sis</AUni> -<AUni ws="qvm-x-akh">aybe:sis</AUni> -<AUni ws="qvm-x-akl">aybe:sis</AUni> -<AUni ws="qvm-x-ame">aybe:sis</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+a.veces.1</AUni> -<AUni ws="qvm-x-acl">+a.veces.1</AUni> -<AUni ws="qvm-x-akh">+a.veces.1</AUni> -<AUni ws="qvm-x-akl">+a.veces.1</AUni> -<AUni ws="qvm-x-ame">+a.veces.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.931" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="615b839e-fbab-4840-8681-ddf0f42674e8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+a.veces.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e92cdbc1-ab51-4992-9e6a-048b5c6ef352" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dd3c5289-58d2-4550-8e39-5571d4d5291d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +a.veces.1 
\entryTyp root 
\gENG sometimes 
\gSPN aveces 
\e +a.veces.1 
\c ONSHEV 
\mp +assimilated 
\ach aybe:sis 
\akh aybe:sis 
\acl aybe:sis 
\akl aybe:sis 
\ame aybe:sis 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="7b350474-f846-4695-a1b1-ece48598a1df" ownerguid="52972973-4858-4e2b-8ddb-097b56612c1d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuti</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuti; cute</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuti</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuti; kute</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuti</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1ea93998-be9c-4ae6-b87a-1279a5c89619" t="r" /> -</Morph> -<Msa> -<objsur guid="35967ee3-872d-4b56-ae00-e643fda7e9f3" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="7b357484-ea91-40c4-b4a8-807b1f70c841" ownerguid="a2335c2a-e3b7-46c4-8e6e-5494a4b6fea5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">smash</AUni> -<AUni ws="es">aplastar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="899a6d21-3a16-4313-9c3c-9851300af09b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="7b397642-f9e9-46e3-9b81-692a38858453" ownerguid="874f8415-fca2-49ce-923f-ff1d4a2b94d9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">jorgu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">jorgu; jorgo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">jorqu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">jorqu; jorqo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">hurqu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a216c09c-e564-4c98-9217-4720961f0dab" t="r" /> -</Morph> -<Msa> -<objsur guid="7899d4e0-16b1-41d2-af08-95aaa5c5bd5a" t="r" /> -</Msa> -<Sense> -<objsur guid="fbfe5dc7-88b8-4eb4-983a-85768a6a8d5b" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="7b39d1b8-466f-4cc1-b054-4fb0909fd435" ownerguid="d3d880cc-6e10-4afa-930e-73c62f5daf61"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">trail.food</AUni> -<AUni ws="es">comida</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b43143cc-58fa-4943-b70d-4f3020d8f921" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="7b39e22d-bdac-4a5e-bee0-1bf549ccdd75" ownerguid="ddcfa1b9-fb63-46d7-9874-9fdf89c6077f"> -<Category> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</Category> -<Evaluations> -<objsur guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="049730b8-43fc-4e6f-87a2-47fdbeeea165" t="o" /> -<objsur guid="bec3d49c-ca8c-4c64-a789-5e8ea406a7d9" t="o" /> -<objsur guid="33b3470e-6798-4240-a1ff-03cc998ea829" t="o" /> -<objsur guid="c39af9f9-45e4-4b87-a713-3bd114c25ee3" t="o" /> -<objsur guid="a4ec868c-e2c1-43f3-ab4e-562517b2a5e0" t="o" /> -</MorphBundles> -</rt> -<rt class="LexExampleSentence" guid="7b3a7dd6-1849-4a4c-902a-b36d7067b078" ownerguid="91f70f33-b214-444b-be15-03a262bde46d"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Micuyta ayaycuy.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="7b3cd680-a67e-47e7-bc95-9ca3e3ba669c" ownerguid="cb95189c-8c74-465b-af07-48e08dbf7c39"> -<ExampleWords> -<AUni ws="en">heart-felt, strong, powerful, deep, shallow, passing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a feeling?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="7b3ff23f-6509-47ab-a459-e623fb49a5bb" ownerguid="0f2ec646-30b7-4fa2-b5e3-59c4845321d9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="CmDomainQ" guid="7b47dc4f-c00b-413c-8925-ebcf3771a31a" ownerguid="75eb23c7-28b5-4c98-937a-1d8f371b24cf"> -<ExampleWords> -<AUni ws="en">airport, runway, airstrip, landing field</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) Where do airplanes land?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7b47df7a-9448-4904-9621-9f7d3ac8f670" ownerguid="31214385-6f41-400c-a286-902b820dcaed"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">scissors</AUni> -<AUni ws="es">tijeras</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0e282bb2-cb30-41c2-bba9-a4f46df718c6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7b4a0029-0aec-4d63-bf20-8abaeea38e10" ownerguid="bc8d0ad4-6ebf-4fa0-bc7e-60e8ec9c43db"> -<ExampleWords> -<AUni ws="en">see, cry, water</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What do the eyes do?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7b4a5a86-6647-480b-b3be-aab3a295aeaf" ownerguid="445f3084-f250-40fa-87ba-ebd233f9018f"> -<ExampleWords> -<AUni ws="en">duckbill platypus, spiny anteater</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What species of mammals lay eggs?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7b4d537d-00d3-4521-af1c-0e6d06b22aaf" ownerguid="cebf1d2d-0fd3-49aa-a071-5dcd881d9a24"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">vomit</AUni> -<AUni ws="es">vomitar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c1a67f71-07b1-4565-80b5-a8fc1b19bf8a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="7b513a02-c3ae-4243-9410-16854d911258" ownerguid="5b7666bd-c6c1-45e7-aa2e-1799fcb16d97"> -<Abbreviation> -<AUni ws="en">9.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.720" /> -<DateModified val="2022-9-23 16:55:8.720" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the name of a person. Each culture has a system of personal names to identify individuals and kin groups. The subcategories under this heading should reflect the cultural system. If your language has a special set of names that do not fit any of they domains given here, then set up a special domain.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>9E Persons For Whom There Is Affectionate Concern; 93A Persons</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Name of a person</AUni> -</Name> -<OcmCodes> -<Uni>551 Personal Names</Uni> -</OcmCodes> -<Questions> -<objsur guid="e506113a-a4ab-426b-9a13-77edb16286ee" t="o" /> -<objsur guid="8d269843-60a1-4092-b55c-ee43d6047352" t="o" /> -<objsur guid="070189ec-92ac-4d2a-9076-e1d33acc658f" t="o" /> -<objsur guid="620cc330-284a-4ef9-9eb3-1e373caa900d" t="o" /> -<objsur guid="a921397b-6079-4639-9cb0-a08e939403c9" t="o" /> -<objsur guid="affef7cc-724f-46f6-b017-4074d945eade" t="o" /> -<objsur guid="8217bec7-cb1f-46e9-85ef-3b3f3b278d16" t="o" /> -<objsur guid="16601d9f-005e-45df-b29c-0a8540d998ce" t="o" /> -<objsur guid="b4e4a211-db7f-43d2-8b94-398c0a37e195" t="o" /> -<objsur guid="1dd33502-ebe5-476b-9e1d-2287b2b31802" t="o" /> -<objsur guid="d158557f-4ef1-412f-bd13-763af44ac8d0" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="6b921117-47e9-4717-b3b3-4e170d26b6d9" t="o" /> -<objsur guid="c2ec9cee-7fe3-44f2-9008-c8b42f6f78dd" t="o" /> -<objsur guid="774cdff1-8cba-4f94-a519-c66abd3b5f49" t="o" /> -<objsur guid="5771f3a1-fda3-4111-9abc-7a0d76c60a79" t="o" /> -<objsur guid="dd3e872a-fb50-4204-9646-7a24c644013b" t="o" /> -<objsur guid="94f573ff-29f0-42ae-b1d9-f882823b2935" t="o" /> -<objsur guid="ebb5f3e5-bfe5-4a40-986a-938c1bdb9c76" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="7b53099f-7922-4664-a1b0-2379ec8c54e5" ownerguid="b8df8589-d03c-4e6d-bbeb-4f24fbf6a1dc"> -<ExampleWords> -<AUni ws="en">plumb line, level, square</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What tools are used to determine if something is vertical?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7b5cb6a9-ad1d-4d55-8593-589bb4eda322" ownerguid="d613ef1c-15ea-47ca-b23d-29b3c1676195"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="b9bdc902-1be0-42e5-83f6-e348d2e1b117" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="de0affd8-1314-4b9f-b8ff-d1b5f8049a70" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7b5e3bee-646a-4d82-a74c-6331f7f2e21c" ownerguid="d688e396-2ba5-45d8-ab00-7ffb0aa1e72c"> -<Form> -<AUni ws="qvm-x-ach">fayna</AUni> -<AUni ws="qvm-x-acl">fayna</AUni> -<AUni ws="qvm-x-akh">fayna</AUni> -<AUni ws="qvm-x-akl">fayna</AUni> -<AUni ws="qvm-x-ame">fayna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="7b5f8f27-345e-4dea-8978-41a45bb264ed" ownerguid="2ec766be-79fc-4051-a56d-7bda64f875ee"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="7b673416-97b0-412a-baf5-0809bf53cf6c" ownerguid="431e87e3-4b90-4fd1-b110-1b36d06f34d4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">beat</AUni> -<AUni ws="es">ganar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e7e3f7b1-7877-460a-bd43-77cef40811dc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7b676e1f-b9bf-411f-86ca-95494e48db53" ownerguid="85912845-21b0-41eb-8b8c-1f5c3d53df08"> -<ExampleWords> -<AUni ws="en">enthusiasm, eagerness, zeal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of enthusiasm?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7b6a9c1e-5c52-4635-8718-c79b52a20415" ownerguid="88519985-6c9c-4206-a781-56dfd09a526d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">power</AUni> -<AUni ws="es">poder</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3fa3c27d-4956-46dd-8c29-8970e4d099f1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="7b6cd53f-9005-4d61-842c-613d756b9a5e" ownerguid="a71f1afb-48d7-41ab-ab0e-6e417d34fcbd"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 102.4 Guewa äjusyashgannogmi shongöpis pasaypa ushacaycan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="7b6d54a3-877d-4ed2-9a7f-bf98b0ec783d" ownerguid="62979c5a-891c-4a40-ba05-023b70013c5e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="36f7d426-4144-4d08-a564-802e432371e6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="7b70ede0-1c7f-47a3-89a4-9bdbde4aae12" ownerguid="9120b0eb-edf6-429c-89f0-37b2d8c5a594"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7b71ec19-12c5-470d-bc0c-3cdbba9ff9fb" ownerguid="f81b7632-3e5a-4a2d-8a93-648872a6616b"> -<ExampleWords> -<AUni ws="en">hippies, yuppies, beatniks, greens</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a social group?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7b739e30-207c-4136-be4d-5784f20ebfff" ownerguid="a780cc0e-d2b0-496c-92d3-1be5674170e7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="7b761534-c8e7-4ea3-bf57-d83c05fba7fa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ragau</AUni> -<AUni ws="qvm-x-acl">ragau; ragau; ragao</AUni> -<AUni ws="qvm-x-akh">raqaw</AUni> -<AUni ws="qvm-x-akl">raqaw; raqaw; raqao</AUni> -<AUni ws="qvm-x-ame">raqaw</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*raqaw</AUni> -<AUni ws="qvm-x-acl">*raqaw</AUni> -<AUni ws="qvm-x-akh">*raqaw</AUni> -<AUni ws="qvm-x-akl">*raqaw</AUni> -<AUni ws="qvm-x-ame">*raqaw</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.270" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="95131a0d-bc6d-4615-ae2d-ebcb99748bff" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*raqaw</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3fc346f9-0471-4d2b-ae7c-4f206b228eaf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="95d93c17-6adc-4a07-8794-13b4e37b79c0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *raqaw 
\entryTyp root 
\gENG grub 
\gSPN gorgojo 
\e *raqaw 
\c N0 
\mp +FinalC 
\ach ragau 
\akh raqaw 
\acl ragau / _# 
\acl ragau +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ragao +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl raqaw / _# 
\akl raqaw +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl raqao +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame raqaw</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="7b7bf5a6-abac-4730-991d-a047417cc33b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jucag</AUni> -<AUni ws="qvm-x-acl">jucag</AUni> -<AUni ws="qvm-x-akh">jukaq</AUni> -<AUni ws="qvm-x-akl">jukaq</AUni> -<AUni ws="qvm-x-ame">hukaq</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*huk+kaq</AUni> -<AUni ws="qvm-x-acl">*huk+kaq</AUni> -<AUni ws="qvm-x-akh">*huk+kaq</AUni> -<AUni ws="qvm-x-akl">*huk+kaq</AUni> -<AUni ws="qvm-x-ame">*huk+kaq</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.759" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5a0d7649-7336-4f1e-85e1-7b7559707790" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*huk+kaq</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="111e6213-5199-454e-be11-061e17979c42" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9f1a3051-a413-42ae-93b0-ec4c1c52d02d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *huk+kaq 
\entryTyp root 
\gENG other 
\gSPN otro 
\e *huk+kaq 
\c N0 
\mp +FinalC 
\ach jucag 
\akh jukaq 
\acl jucag 
\akl jukaq 
\ame hukaq</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="7b7dc0a9-e18f-4d53-a9b0-58bb805fbebe" ownerguid="e83698b6-a3be-42b4-881f-10382f4514c6"> -<Form> -<AUni ws="qvm-x-ach">upacuru</AUni> -<AUni ws="qvm-x-acl">upacuru; upacuru; upacuro</AUni> -<AUni ws="qvm-x-akh">upakuru</AUni> -<AUni ws="qvm-x-akl">upakuru; upakuru; upakuro</AUni> -<AUni ws="qvm-x-ame">upakuru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PunctuationForm" guid="7b7dcf9a-2b9c-466b-b008-5059e96bd1af"> -<Form> -<Str> -<Run ws="en">p</Run> -</Str> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="7b7ebdf2-df80-49aa-acf2-4d2a8b169b8c" ownerguid="f92657c7-1914-40e6-a86c-17e728b8c21c"> -<Form> -<AUni ws="qvm-x-ach">wardia</AUni> -<AUni ws="qvm-x-acl">wardia</AUni> -<AUni ws="qvm-x-akh">wardia</AUni> -<AUni ws="qvm-x-akl">wardia</AUni> -<AUni ws="qvm-x-ame">wardia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="7b7f948a-733c-4245-a403-1e7e35bb5c9a" ownerguid="e5e445b4-6ae8-4ffb-a6ac-f404325de4d0"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="e23fec76-9998-4f60-ba18-22267672b78b" t="o" /> -<objsur guid="817ac8a2-4903-4c13-b5a4-9a8e1270421d" t="o" /> -<objsur guid="7e26cee5-cc5a-41b7-b0ac-14ec365d15c2" t="o" /> -<objsur guid="91a98349-97ac-43a9-997d-b383649df984" t="o" /> -</MorphBundles> -</rt> -<rt class="CmSemanticDomain" guid="7b816f6a-4b46-403d-a1a2-2914ee070568" ownerguid="18a6684f-d324-45ee-855c-44d473916b14"> -<Abbreviation> -<AUni ws="en">8.4.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the present time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Present</AUni> -</Name> -<Questions> -<objsur guid="5afcba69-4d92-417a-806a-2014cf934634" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="3fbe3ea6-3ad3-430f-ab67-2d9c9f852c61" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="7b81da16-463c-4b0e-aa36-bf2b943f173b" ownerguid="cfbdcee7-ca83-423e-97c2-4eb7267e6dec"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="7b8ad325-aa92-4fa6-b47e-8b9b5d1edeaf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa:sha</AUni> -<AUni ws="qvm-x-acl">pa:sha</AUni> -<AUni ws="qvm-x-akh">pa:sha</AUni> -<AUni ws="qvm-x-akl">pa:sha</AUni> -<AUni ws="qvm-x-ame">pa:sha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pa:sha</AUni> -<AUni ws="qvm-x-acl">*pa:sha</AUni> -<AUni ws="qvm-x-akh">*pa:sha</AUni> -<AUni ws="qvm-x-akl">*pa:sha</AUni> -<AUni ws="qvm-x-ame">*pa:sha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.739" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bf32c57f-0055-4c8a-bbe3-8667af4dcd79" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pa:sha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6fc54439-431a-480f-bc66-44254bd811a2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="42a4f423-6440-43ba-8430-793fbbdd9d15" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pa:sha 
\entryTyp root 
\gENG straw 
\gSPN 
\e *pa:sha 
\c N0 
\ach pa:sha 
\akh pa:sha 
\acl pa:sha 
\akl pa:sha 
\ame pa:sha 
\i Exo 5.12 Tsauraga Israel runacuna intëru Egiptupa mashtacargan punshapa trucan trïgu päshapa tumpuncunata ashinanpag.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="7b8ca8f8-374a-4bcd-bc1f-c79edfd94a47" ownerguid="76389945-bde0-47fc-8499-77985525bf39"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="7b8cdb38-ced0-4dab-a743-5138bcb53243" ownerguid="ad012705-24fa-4bf5-adca-5d416dee4250"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">winnowing fork</AUni> -<AUni ws="es">horqueta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bfe41ef4-8022-415f-8769-d7d5d58e6a3b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="7b8d0c33-a94e-4e71-9ab4-631725fb91d1" ownerguid="af2f9cce-2c39-4b1b-a137-5f37c3374e2a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">july</AUni> -<AUni ws="es">julio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="41a9b68d-f542-4a58-b67e-16d652442cae" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7b958bfb-4b4f-4fe0-a4dd-1db75679d423" ownerguid="23fb1571-c04e-4850-b499-f170bc45247f"> -<ExampleWords> -<AUni ws="en">optometrist, optician, eye doctor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a doctor who makes glasses?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7b97a850-c994-4601-9242-f923e568859b" ownerguid="bda6adc2-c9b3-4eb5-9fd3-5e0dadf7ea9f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">apron</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5474a940-0683-4a6a-a1b1-6820f419d542" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7b99b68d-c705-421e-81dc-e7ad36285154" ownerguid="4c862416-f7c4-4a3c-82ac-fe81e1efb879"> -<ExampleWords> -<AUni ws="en">lung, pulmonary system, lobe, sack, diaphragm, respiratory system</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the parts of the lungs?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7b99fdad-75ad-4feb-b422-380ab400d4d3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">moti:vu</AUni> -<AUni ws="qvm-x-acl">moti:vu; moti:vu; moti:vo</AUni> -<AUni ws="qvm-x-akh">moti:vu</AUni> -<AUni ws="qvm-x-akl">moti:vu; moti:vu; moti:vo</AUni> -<AUni ws="qvm-x-ame">moti:vu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+motivo</AUni> -<AUni ws="qvm-x-acl">+motivo</AUni> -<AUni ws="qvm-x-akh">+motivo</AUni> -<AUni ws="qvm-x-akl">+motivo</AUni> -<AUni ws="qvm-x-ame">+motivo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.485" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0f3561c2-a153-4599-bfe1-322dec218488" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+motivo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4c0514ee-1e8b-4a76-a974-8883627eea91" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="456552fb-7cdd-4623-a027-9fc9e5b570c3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +motivo 
\entryTyp root 
\gENG 
\gSPN 
\e +motivo 
\c N0 
\ach moti:vu 
\akh moti:vu 
\acl moti:vu / _# 
\acl moti:vu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl moti:vo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl moti:vu / _# 
\akl moti:vu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl moti:vo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame moti:vu 
\i PRO 23.29,30 Tsaynogpis sin motivo magashga car lutancunata yarpachacularmi purenga.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="7b9a5e00-e814-4ed8-a7a8-7a8fcb2836c6" ownerguid="be74f6a4-8830-469e-9e17-074205097ec2"> -<Form> -<AUni ws="qvm-x-ach">punuysanca</AUni> -<AUni ws="qvm-x-acl">punuysanca</AUni> -<AUni ws="qvm-x-akh">punuysanka</AUni> -<AUni ws="qvm-x-akl">punuysanka</AUni> -<AUni ws="qvm-x-ame">punuysanka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="7ba0256e-d801-46bc-9107-73e131a8eb1c" ownerguid="fc4253b4-2d55-44b2-8a72-7b7ecc26bf51"> -<Form> -<AUni ws="qvm-x-ach">disciplina</AUni> -<AUni ws="qvm-x-acl">disciplina</AUni> -<AUni ws="qvm-x-akh">disciplina</AUni> -<AUni ws="qvm-x-akl">disciplina</AUni> -<AUni ws="qvm-x-ame">disciplina</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="7ba45dcc-dad3-4803-94fc-75a92efa28f8" ownerguid="d7fe403b-7c29-44e4-a79b-da8fef4a387e"> -<Form> -<AUni ws="qvm-x-ach">wintu</AUni> -<AUni ws="qvm-x-acl">wintu; winto</AUni> -<AUni ws="qvm-x-akh">wintu</AUni> -<AUni ws="qvm-x-akl">wintu; winto</AUni> -<AUni ws="qvm-x-ame">wintu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="7ba5073c-52e9-4c23-b555-4055ebc5cba2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cerata</AUni> -<AUni ws="qvm-x-acl">cerata</AUni> -<AUni ws="qvm-x-akh">cerata</AUni> -<AUni ws="qvm-x-akl">cerata</AUni> -<AUni ws="qvm-x-ame">cerata</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ceratar</AUni> -<AUni ws="qvm-x-acl">+ceratar</AUni> -<AUni ws="qvm-x-akh">+ceratar</AUni> -<AUni ws="qvm-x-akl">+ceratar</AUni> -<AUni ws="qvm-x-ame">+ceratar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.112" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="185393f2-7d3d-4ed8-8930-2c6f3d3d35d1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ceratar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="890cb43e-b60d-4286-8377-3a72eec2bf80" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cae2e31a-b940-4186-afb3-6e93edd12989" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ceratar 
\entryTyp root 
\gENG 
\gSPN 
\e +ceratar 
\c V1 
\ach cerata 
\akh cerata 
\acl cerata 
\akl cerata 
\ame cerata 
\i 2SA 13.4 Tsaypita juc cutichömi Jonadab taporgan Amnónta caynog nir: <<Reypa tsurin caycarga ¿imanirtag waran waran pasaypa ceratacashga puriycanqui? Ima pasaycäshushgayquitapis ¿manacu wilamanquiman?</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7ba762be-6824-4f62-bc42-8cd492f0e378" ownerguid="e1dd83dd-955a-4bc7-a761-fc91555da1f8"> -<ExampleWords> -<AUni ws="en">completely, fully, totally, entirely, wholly, absolutely, utterly, positively, in every way, in every respect, in every sense, through and through, wholeheartedly, altogether, out-and-out, outright, perfect, perfectly, roundly, solid, solidly, thoroughly, unmitigated, unqualified, utter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is done to a complete degree?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7ba76f5b-8f11-4043-915b-4b6c0e5c71d4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">restar</AUni> -<AUni ws="qvm-x-acl">restar</AUni> -<AUni ws="qvm-x-akh">restar</AUni> -<AUni ws="qvm-x-akl">restar</AUni> -<AUni ws="qvm-x-ame">restar</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+restar</AUni> -<AUni ws="qvm-x-acl">+restar</AUni> -<AUni ws="qvm-x-akh">+restar</AUni> -<AUni ws="qvm-x-akl">+restar</AUni> -<AUni ws="qvm-x-ame">+restar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.338" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="617b8afc-5bfd-4869-bdb7-f2f1d95df120" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+restar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="290f4e97-4d4a-49fd-aa52-112b0584004a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9f3423ab-7085-4cf0-b43e-59ccabcc5e24" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +restar 
\entryTyp root 
\gENG subract 
\gSPN restar 
\e +restar 
\c V2 
\ach restar 
\akh restar 
\acl restar 
\akl restar 
\ame restar</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="7ba9f0a8-a61f-4a02-adf7-ef7305874cff" ownerguid="2791f2fd-001c-4aa8-81fe-8062469d17fa"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="7babbb46-2299-4864-ba04-c8dc3f7be47f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guepishta</AUni> -<AUni ws="qvm-x-acl">guepishta</AUni> -<AUni ws="qvm-x-akh">qepishta</AUni> -<AUni ws="qvm-x-akl">qepishta</AUni> -<AUni ws="qvm-x-ame">qipishta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qipishta</AUni> -<AUni ws="qvm-x-acl">*qipishta</AUni> -<AUni ws="qvm-x-akh">*qipishta</AUni> -<AUni ws="qvm-x-akl">*qipishta</AUni> -<AUni ws="qvm-x-ame">*qipishta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.195" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="29a6fa7f-a14a-4f9e-8b10-e9ea0f3e8ff3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qipishta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1da15e72-9235-4c1f-97e7-028623d922ee" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="904ca763-faeb-4b32-8da7-5e834c6cc402" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qipishta 
\entryTyp root 
\gENG shut.eyes 
\gSPN cerrar.ojos 
\e *qipishta 
\c V2 
\ach guepishta 
\akh qepishta 
\acl guepishta 
\akl qepishta 
\ame qipishta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="7babf463-5e62-4a82-96d3-ef5989803c41" ownerguid="65bb0844-9a71-4eec-9b86-bf4b4b508a28"> -<Abbreviation> -<AUni ws="en">4.4.3.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to surviving--to live through a time of danger.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Survive</AUni> -</Name> -<Questions> -<objsur guid="1f6118c8-f860-48b6-bafd-1968b8a24b25" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="7bada9b1-679f-4fa2-9342-872d628161f3" ownerguid="185d68ff-bf3a-4eec-9e9d-9dd4b781a8ed"> -<Form> -<AUni ws="qvm-x-ach">tucuy</AUni> -<AUni ws="qvm-x-acl">tucuy</AUni> -<AUni ws="qvm-x-akh">tukuy</AUni> -<AUni ws="qvm-x-akl">tukuy</AUni> -<AUni ws="qvm-x-ame">tukuy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7bb47af2-b136-49cb-a569-848c5c5e0630" ownerguid="9ed66151-c144-4e5e-a3a2-f5d08b0c9bb8"> -<ExampleWords> -<AUni ws="en">back, backward, behind, reverse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate the direction backward?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7bb779bf-9405-4df2-8eb0-beb797d23e52" ownerguid="cd85fe14-c139-40c7-a148-8659e107755f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7bbc3e04-50a9-474b-bd24-45041683e6d4" ownerguid="0a1377a6-73a7-42e6-a810-97c3f51d3761"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="7bbd8be8-abd9-4ebf-9dfa-d1a25986650b" ownerguid="325cc876-f8a2-4609-b9e9-548f9b47c9b4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">meeting</AUni> -<AUni ws="es">encuentro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="72695616-6010-424c-b3cb-b68dba0894c6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7bbd9b10-635b-4645-8d33-2d6677b83ed8" ownerguid="a197dbfb-20e4-40c2-9c76-6abbeb1a9b12"> -<ExampleWords> -<AUni ws="en">insure, insurance, premium</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to insurance?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7bbe94cb-fb50-4c90-b223-43708696ae36" ownerguid="dcbfb374-33ae-4520-99d4-233644bd7eb4"> -<Form> -<AUni ws="qvm-x-ach">chogchu</AUni> -<AUni ws="qvm-x-acl">chogchu; chogcho</AUni> -<AUni ws="qvm-x-akh">choqchu</AUni> -<AUni ws="qvm-x-akl">choqchu; choqcho</AUni> -<AUni ws="qvm-x-ame">chuqchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="7bc0b0f8-c69f-46e6-a09c-a488ae92b583" ownerguid="91c945df-0807-4021-9512-d969a53ca273"> -<Form> -<AUni ws="qvm-x-ach">sagma</AUni> -<AUni ws="qvm-x-acl">sagma</AUni> -<AUni ws="qvm-x-akh">saqma</AUni> -<AUni ws="qvm-x-akl">saqma</AUni> -<AUni ws="qvm-x-ame">saqma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="7bc1ddcc-78ed-468f-92da-973272916113" ownerguid="5ada976b-651c-475f-8a0b-673b1b10c070"> -<Form> -<AUni ws="qvm-x-ach">gallu</AUni> -<AUni ws="qvm-x-acl">gallu; gallu; gallo</AUni> -<AUni ws="qvm-x-akh">qallu</AUni> -<AUni ws="qvm-x-akl">qallu; qallu; qallo</AUni> -<AUni ws="qvm-x-ame">qallu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="7bc3de4b-7eb4-45bb-aae2-4b8f3e3dca9f" ownerguid="e53a6ea9-00a7-4253-8347-c3cc89602ec4"> -<Form> -<AUni ws="qvm-x-ach">pishga</AUni> -<AUni ws="qvm-x-acl">pishga</AUni> -<AUni ws="qvm-x-akh">pishqa</AUni> -<AUni ws="qvm-x-akl">pishqa</AUni> -<AUni ws="qvm-x-ame">pishqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="7bc97585-0838-4adf-b27f-921c423c6192" ownerguid="671eea84-1073-47da-bcf2-07bf99e93a1f"> -<Form> -<AUni ws="qvm-x-ach">tsica</AUni> -<AUni ws="qvm-x-acl">tsica</AUni> -<AUni ws="qvm-x-akh">tsika</AUni> -<AUni ws="qvm-x-akl">tsika</AUni> -<AUni ws="qvm-x-ame">tsika</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="7bc9bc23-8a4e-49de-993a-0d2acd7282c3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chawa</AUni> -<AUni ws="qvm-x-acl">chawa</AUni> -<AUni ws="qvm-x-akh">chawa</AUni> -<AUni ws="qvm-x-akl">chawa</AUni> -<AUni ws="qvm-x-ame">chawa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trawa</AUni> -<AUni ws="qvm-x-acl">*trawa</AUni> -<AUni ws="qvm-x-akh">*trawa</AUni> -<AUni ws="qvm-x-akl">*trawa</AUni> -<AUni ws="qvm-x-ame">*trawa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.86" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d55563fa-34ad-49ae-bbc8-698b76b7ec51" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trawa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b1910bde-0a52-49bd-996b-fd3902c5c283" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="98309d39-1303-4083-bf18-47df7a37367c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trawa 
\entryTyp root 
\gENG raw 
\gSPN crudo 
\e *trawa 
\c N0 
\ach chawa 
\akh chawa 
\acl chawa 
\akl chawa 
\ame chawa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="7bca1201-31f8-4f65-8da9-af0eff36b388" ownerguid="bc9d763c-e4fe-48ab-ad44-87a36f6cc06f"> -<Abbreviation> -<AUni ws="en">3.5.1.8.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.164" /> -<DateModified val="2022-9-23 16:55:8.164" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to gossip--to say something bad about a person who is not with you.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33Q' Gossip</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Gossip</AUni> -</Name> -<Questions> -<objsur guid="e4c5fa06-8ec8-423b-913f-a1dcc9b89f5e" t="o" /> -<objsur guid="97b8b60d-0a9a-4091-8217-e78cadc304db" t="o" /> -<objsur guid="36b491a9-b5d0-48f4-8ff9-1bc8297793c2" t="o" /> -<objsur guid="53c062eb-393b-4b9d-bfe7-62421dbed35a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="7bcb6ae1-23bf-4034-b883-5f8bb779cc36"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rebe:ti; rebe:ti</AUni> -<AUni ws="qvm-x-acl">rebe:ti; rebe:ti; rebe:te</AUni> -<AUni ws="qvm-x-akh">rebe:ti; rebe:ti</AUni> -<AUni ws="qvm-x-akl">rebe:ti; rebe:ti; rebe:te</AUni> -<AUni ws="qvm-x-ame">rebe:ti; rebe:ti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ribete</AUni> -<AUni ws="qvm-x-acl">+ribete</AUni> -<AUni ws="qvm-x-akh">+ribete</AUni> -<AUni ws="qvm-x-akl">+ribete</AUni> -<AUni ws="qvm-x-ame">+ribete</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.348" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7c6bc5b4-1192-4a29-8593-208068fee832" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ribete</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6e945b87-e9e3-4349-8eac-e8703cd95bc6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="169746f5-c4c1-4f35-a781-0e77ef3472b6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ribete 
\entryTyp root 
\gENG 
\gSPN 
\e +ribete 
\c N0 
\mp +FinalI 
\ach rebe:ti / _# 
\ach rebe:ti / ~_# 
\akh rebe:ti / _# 
\akh rebe:ti / ~_# 
\acl rebe:ti / _# 
\acl rebe:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl rebe:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rebe:ti / _# 
\akl rebe:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl rebe:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame rebe:ti / _# 
\ame rebe:ti / ~_# 
\i Exo 37.12 Tsay jananmannami juc rebëtita örupita churargan. 
\i Exo 25.27 Tsay argöllacuna churarätsun chaquinpita rebëtinman tincuragcho.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="7bcbd2ff-571d-452d-8c95-75f5456501ab" ownerguid="5eb2b1a8-3427-4929-be10-ceb6d354950d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bland</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bfb025ad-3a69-490b-8406-53ca366c0147" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="7bcc7ed0-49ec-45d2-a29c-1747a6962161" ownerguid="8328a243-fc86-4339-9563-c9cbe69d0955"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi; tse</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi; tse</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</Msa> -<Sense> -<objsur guid="2801e582-fd5f-46da-b446-4dd5882c9bda" t="r" /> -</Sense> -</rt> -<rt class="WfiMorphBundle" guid="7bcc9c88-262b-4838-83e5-dc4c4622f686" ownerguid="f8e9778a-93f5-431d-8c9f-7fc4d90e45f7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="r" /> -</Morph> -</rt> -<rt class="MoStemMsa" guid="7bce5dda-fa9a-41b9-9a4b-54667d01b7b3" ownerguid="4e780ffd-89c9-4ed3-af01-97633f15706f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StTxtPara" guid="7bd00e49-483a-4313-bada-f7fe7b852732" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">qarqakun</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="b9658d40-ee16-4d43-9768-6e86282189a3" t="o" /> -</Segments> -</rt> -<rt class="MoStemMsa" guid="7bd32f9e-4790-4d60-a3d6-4c773fa5be1f" ownerguid="85b6cc88-e7d7-4968-9b09-aa7b736d60ce"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="7bd3ca0b-89a2-49ef-8b58-d0bcd16c7183" ownerguid="62098d79-e663-46ea-b4f4-4cd3df401157"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pulverized</AUni> -<AUni ws="es">pulverizado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5fa9b0f3-ab00-4288-a736-82adf480c862" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7bd4519c-954a-4146-88d0-162d1ce86650" ownerguid="4153416a-784d-4f7c-a664-2640f7979a14"> -<ExampleWords> -<AUni ws="en">flood, torrent, flash flood, freshet, swell, surge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a river when it has a lot of water?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7bd72622-c2c5-4ecc-97ef-60bbbe9008a2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uluyma</AUni> -<AUni ws="qvm-x-acl">uluyma</AUni> -<AUni ws="qvm-x-akh">uluyma</AUni> -<AUni ws="qvm-x-akl">uluyma</AUni> -<AUni ws="qvm-x-ame">uluyma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ulluyma</AUni> -<AUni ws="qvm-x-acl">*ulluyma</AUni> -<AUni ws="qvm-x-akh">*ulluyma</AUni> -<AUni ws="qvm-x-akl">*ulluyma</AUni> -<AUni ws="qvm-x-ame">*ulluyma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.218" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8761cb2c-4c89-4eb3-83fd-d6a0be3a709c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ulluyma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="83a0514a-6140-4b88-8d7d-a9800e488f72" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2ef10dfb-89a6-4d82-83a2-910544d7c4e5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ulluyma 
\entryTyp root 
\gENG cactus 
\gSPN nopal 
\e *ulluyma 
\c N0 
\ach uluyma 
\akh uluyma 
\acl uluyma 
\akl uluyma 
\ame uluyma</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="7bd7fd79-d782-4077-9b4b-e5cda0781fff" ownerguid="96c25ee0-7d29-4ae0-b36d-8cf9b0458e14"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7bdf0771-478a-4e5e-9cff-75be137c26fc" ownerguid="5832eb32-8a90-42a7-b2bc-a9bb575b1b7c"> -<ExampleWords> -<AUni ws="en">move from/away/away from, go away, get away, retreat, back off, run away, come from</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving away from something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7be0e33a-3fbf-45de-86c6-ad945b3e7e45" ownerguid="c40a802d-f46a-40e8-a741-7cd8882bf6a3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7be20174-75fb-44d2-9e9d-a712cd2d2aec" ownerguid="7d7c81d5-9713-423f-b12e-8e11e451f0a7"> -<ExampleWords> -<AUni ws="en">forgive, pardon, release, restore to favor, clear your record, have mercy on, wipe the slate clean, reassure, accept, accept an apology, overlook a wrong, cancel a debt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to forgiving someone?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="7be2985a-ec2f-44bd-8aa6-ff8d6ad5e8f1" ownerguid="e2da5be3-30a6-46d7-a10a-8372245ada06"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">runa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">runa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">runa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">runa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">runa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="dbbd8356-c9df-482b-a128-55aaaa8ad47f" t="r" /> -</Morph> -<Msa> -<objsur guid="735a29e0-40d3-4d25-9e9a-e8181d173c29" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="7be41ec9-58ec-4a22-9af5-5c66dce6b1d4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sota:na</AUni> -<AUni ws="qvm-x-acl">sota:na</AUni> -<AUni ws="qvm-x-akh">sota:na</AUni> -<AUni ws="qvm-x-akl">sota:na</AUni> -<AUni ws="qvm-x-ame">sota:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sotana</AUni> -<AUni ws="qvm-x-acl">+sotana</AUni> -<AUni ws="qvm-x-akh">+sotana</AUni> -<AUni ws="qvm-x-akl">+sotana</AUni> -<AUni ws="qvm-x-ame">+sotana</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.733" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ffd819a0-bc8d-4105-adf3-4ec72a5f055e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sotana</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="abdd7b35-c273-496c-85a9-3912bc3a3449" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="490d759b-cb25-43ba-bcf0-a46cd3a41334" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sotana 
\entryTyp root 
\gENG robe 
\gSPN sotana 
\e +sotana 
\c N0 
\ach sota:na 
\akh sota:na 
\acl sota:na 
\akl sota:na 
\ame sota:na</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="7be453a5-6f7e-4238-9cd6-deea877e4d5c" ownerguid="d45c976a-56d0-476a-bdc0-b78cee1db402"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="7be6ea90-1257-4e6b-9d55-20d1d05dd045" ownerguid="5d4412cb-1df4-41a9-a573-eb7e279bce3b"> -<Form> -<AUni ws="qvm-x-ach">mucla</AUni> -<AUni ws="qvm-x-acl">mucla</AUni> -<AUni ws="qvm-x-akh">mukla</AUni> -<AUni ws="qvm-x-akl">mukla</AUni> -<AUni ws="qvm-x-ame">mukla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="7beae6bb-49c0-4482-8f38-e6eec6b393bb"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">rikatsikan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="PunctuationForm" guid="7beb2bdf-1e77-4955-99ec-39f893293020"> -<Form> -<Str> -<Run ws="en">V1</Run> -</Str> -</Form> -</rt> -<rt class="CmSemanticDomain" guid="7beca90c-3671-4b3c-bf9a-fb8f08ff914b" ownerguid="36ad58e3-ade7-49b9-9922-de0b5c3f13c3"> -<Abbreviation> -<AUni ws="en">5.2.3.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.317" /> -<DateModified val="2022-9-23 16:55:8.317" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to salt.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Salt</AUni> -</Name> -<Questions> -<objsur guid="155b5b69-c14c-4361-a835-03913df7d6fc" t="o" /> -<objsur guid="f81be435-ab8b-4d55-9a50-9689c4c40cb4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="7bed5b8d-891d-4fc4-a919-0b879a17c410" ownerguid="06b883a4-8770-4ddb-a837-c6d6037f540f"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="7bed7b62-cb48-4b14-84ba-2ac199843469"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">truca</AUni> -<AUni ws="qvm-x-acl">truca</AUni> -<AUni ws="qvm-x-akh">truka</AUni> -<AUni ws="qvm-x-akl">truka</AUni> -<AUni ws="qvm-x-ame">truka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+trocar.n</AUni> -<AUni ws="qvm-x-acl">+trocar.n</AUni> -<AUni ws="qvm-x-akh">+trocar.n</AUni> -<AUni ws="qvm-x-akl">+trocar.n</AUni> -<AUni ws="qvm-x-ame">+trocar.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.147" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b1cdb80c-35c5-4979-883c-de2444ca71b8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+trocar.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9f321175-ae6b-4195-86db-ec5e5e30463b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fa2d5017-8207-4dc1-b67d-5f530fd109c1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +trocar.n 
\entryTyp root 
\gENG change 
\gSPN cambiar 
\e +trocar.n 
\c N1 
\mp +assimilated KQWchange 
\ach truca 
\akh truka 
\acl truca 
\akl truka 
\ame truka</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="7bf05f4e-909f-40ca-b742-9be21eba9fbb" ownerguid="61a28bdc-c05c-49d8-b47e-d54a9082156c"> -<Abbreviation> -<AUni ws="en">9.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.698" /> -<DateModified val="2022-9-23 16:55:8.698" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate agent-oriented modalities. Agent-oriented modalities describe internal or external conditions on a willful agent with respect to the completion of the predicate situation. They may be combined with any of the tenses, either in the same morpheme or in combinations of morphemes. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>71 Mode</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Agent-oriented modalities</AUni> -</Name> -<Questions> -<objsur guid="642e5e65-e029-45c3-8b68-50127da57584" t="o" /> -<objsur guid="aead3098-ec34-447f-b626-faee76939dee" t="o" /> -<objsur guid="d02eccd7-7f71-4a20-abd2-921242c76dad" t="o" /> -<objsur guid="8f16a80a-819e-4906-a438-b82871fd0571" t="o" /> -<objsur guid="86a57369-63e4-418c-815c-ca709fb37caa" t="o" /> -<objsur guid="4a6af51b-52a2-44c2-acf2-6007c1ac4e9f" t="o" /> -<objsur guid="d8966f15-08f9-4bee-aca7-f03eea4419f0" t="o" /> -<objsur guid="14486274-794a-42f0-9faa-8c7b6b0d4b18" t="o" /> -<objsur guid="dc8df45a-dc9a-4c89-b25b-7c5fb93815e5" t="o" /> -<objsur guid="36c700e2-6dbd-4e82-94a4-97994c78ff7c" t="o" /> -<objsur guid="cf8422c5-7a99-42c4-8ecb-441c99e1ea7c" t="o" /> -<objsur guid="e47166b7-2594-4148-9e2c-2d49c1ed675e" t="o" /> -<objsur guid="66cf8d85-3bca-47da-a3aa-cc108a4f3e51" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="59d936f3-dffb-4585-80e0-eaf6cd6a8026" t="o" /> -<objsur guid="ab8d8dc9-eeb7-41ff-93a9-cbbd50b89a73" t="o" /> -<objsur guid="47feee3e-80e1-469a-911c-0c550b37a2f8" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoAffixAllomorph" guid="7bf0ec7b-02f7-4092-aa36-f612b96044b9" ownerguid="24609324-c073-405b-a4ba-d1bb46127695"> -<Form> -<AUni ws="qvm-x-ach">shun</AUni> -<AUni ws="qvm-x-acl">shun</AUni> -<AUni ws="qvm-x-akh">shun</AUni> -<AUni ws="qvm-x-akl">shun</AUni> -<AUni ws="qvm-x-ame">shun</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="7bf2ca78-d3b7-47e8-bdee-563fe561f1ff" ownerguid="bc11b8e2-72b1-42f6-a42f-06ed287f248b"> -<Form> -<AUni ws="qvm-x-ach">costal</AUni> -<AUni ws="qvm-x-acl">costal</AUni> -<AUni ws="qvm-x-akh">costal</AUni> -<AUni ws="qvm-x-akl">costal</AUni> -<AUni ws="qvm-x-ame">costal</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmCell" guid="7bf38df2-e180-4d74-ae16-df959a81eea6" ownerguid="c2f0eb83-212b-4c1b-b357-f28bcd96053e"> -<Contents> -<Str> -<Run ws="en">= 0</Run> -</Str> -</Contents> -</rt> -<rt class="MoStemAllomorph" guid="7bf5653c-52a1-4edd-ab7e-e767228d980e" ownerguid="3aafd578-e2b0-496b-a632-2e78e88c22a4"> -<Form> -<AUni ws="qvm-x-ach">taulish</AUni> -<AUni ws="qvm-x-acl">taulish</AUni> -<AUni ws="qvm-x-akh">tawlish</AUni> -<AUni ws="qvm-x-akl">tawlish</AUni> -<AUni ws="qvm-x-ame">tawlish</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7bf67fbf-c0c8-4f0b-b646-cb13ec9a3237" ownerguid="0bc02285-8e70-442a-8d08-e04d922507c8"> -<ExampleWords> -<AUni ws="en">paint, draw, sculpture, carve, design</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of art are there?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7bf76855-b806-4912-bf0e-beaa90d4c25d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wagshi</AUni> -<AUni ws="qvm-x-acl">wagshi; wagshi; wagshe</AUni> -<AUni ws="qvm-x-akh">waqshi</AUni> -<AUni ws="qvm-x-akl">waqshi; waqshi; waqshe</AUni> -<AUni ws="qvm-x-ame">waqshi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waqshi.n</AUni> -<AUni ws="qvm-x-acl">*waqshi.n</AUni> -<AUni ws="qvm-x-akh">*waqshi.n</AUni> -<AUni ws="qvm-x-akl">*waqshi.n</AUni> -<AUni ws="qvm-x-ame">*waqshi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.505" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="316fa139-700e-4faa-b939-1071dc53d35e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waqshi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6d0932a1-6850-4143-8157-507a9fed7132" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="61a2b5e8-d608-4c90-959f-efe6bf381883" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waqshi.n 
\entryTyp root 
\gENG 
\gSPN 
\e *waqshi.n 
\c N0 
\mp +FinalI 
\ach wagshi 
\akh waqshi 
\acl wagshi / _# 
\acl wagshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wagshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl waqshi / _# 
\akl waqshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl waqshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame waqshi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="7bf77556-64df-428e-bfdd-095af5bfeeda" ownerguid="af4ac058-d4b3-4c7a-ade8-6af762d0486d"> -<Abbreviation> -<AUni ws="en">3.3.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to intending to do something--to do something intentionally and not by accident.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>30D To Intend, To Purpose, To Plan</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Intend</AUni> -</Name> -<Questions> -<objsur guid="4e0a3581-e24d-4cb7-a961-a056b4b9ebad" t="o" /> -<objsur guid="023df084-4733-4619-b482-7016fce310b5" t="o" /> -<objsur guid="7e595bc5-d98f-4731-947d-b6e0dfacddc7" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="7bf7c5aa-c8a8-4171-a006-4d3679c3db76" ownerguid="bfeba2a4-4479-49e9-838c-3baa2ad0fcae"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">An ant <is> an insect.; An ant <is a kind of> insect.; Dogs, cats, and horses <are members of> the animal <class>.; Plants <include> trees, flowers, and weeds.; The animal <class> <includes> dogs, cats, and horses.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">be, be a kind of, be a type of, be a member of, include</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something belongs to a class of things?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7bf7fb46-abff-44d2-bb20-86c50ef03ac1" ownerguid="a19e219a-6cc1-4057-a8d9-18554ae88de1"> -<ExampleWords> -<AUni ws="en">rattle, pacifier, dummy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What toys are given to a baby?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7bfa773e-dbed-4274-91b2-c5fa9b6e964b" ownerguid="32922991-52e6-497c-bbd1-db375f9af8ca"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="7bfba858-0f05-4ce7-8db0-15f3e12c608e" ownerguid="20f45413-19df-4423-bcf8-5f9924503731"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">scratch</AUni> -<AUni ws="es">rascar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fb918c26-7177-46e0-89ff-194a1606aeb4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="7bfd1ead-4cef-47a4-84f3-9fab023d7423"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">plu:ma</AUni> -<AUni ws="qvm-x-acl">plu:ma</AUni> -<AUni ws="qvm-x-akh">plu:ma</AUni> -<AUni ws="qvm-x-akl">plu:ma</AUni> -<AUni ws="qvm-x-ame">plu:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pluma</AUni> -<AUni ws="qvm-x-acl">+pluma</AUni> -<AUni ws="qvm-x-akh">+pluma</AUni> -<AUni ws="qvm-x-akl">+pluma</AUni> -<AUni ws="qvm-x-ame">+pluma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.881" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ac57f508-442f-48ce-bc1f-20470e16d4f5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pluma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bbd17567-fd7a-4999-b920-ea247e8cf787" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d05ad2b6-0a5d-413a-9328-74d7cd42e359" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pluma 
\entryTyp root 
\gENG feather 
\gSPN pluma 
\e +pluma 
\c N0 
\ach plu:ma 
\akh plu:ma 
\acl plu:ma 
\akl plu:ma 
\ame plu:ma</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="7bfd8288-6f20-4527-99b4-aad65fe5e0d9" ownerguid="810d01d5-4569-418e-b535-bcfebc6aca5e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="7bff0455-82d1-4996-bcdf-1a4ba9306fab"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mismi</AUni> -<AUni ws="qvm-x-acl">mismi; misme</AUni> -<AUni ws="qvm-x-akh">mismi</AUni> -<AUni ws="qvm-x-akl">mismi; misme</AUni> -<AUni ws="qvm-x-ame">mismi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mismi</AUni> -<AUni ws="qvm-x-acl">*mismi</AUni> -<AUni ws="qvm-x-akh">*mismi</AUni> -<AUni ws="qvm-x-akl">*mismi</AUni> -<AUni ws="qvm-x-ame">*mismi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.457" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="01c59765-e89c-48f9-987f-ab809df7c021" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mismi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4f2b6e55-26cf-4695-b9e3-88ce0fbdab5e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5dceb7e7-e621-4c48-982c-856120fc5c06" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mismi 
\entryTyp root 
\gENG twist 
\gSPN torcer 
\e *mismi 
\c V1 
\mp +FinalI 
\ach mismi 
\akh mismi 
\acl mismi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl misme +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mismi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl misme +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mismi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="7c022751-a9f9-412d-8b27-8cd03b797e2d" ownerguid="3ea4c495-b837-4310-8741-38d89fa63e0b"> -<Abbreviation> -<AUni ws="en">9.4.4.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.700" /> -<DateModified val="2022-9-23 16:55:8.700" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that although something is true, it almost is not true.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Just, almost not</AUni> -</Name> -<Questions> -<objsur guid="66c27239-27e2-4287-9a37-a541d4994994" t="o" /> -<objsur guid="08ffdd0a-681d-461a-91a4-c1b8337b769d" t="o" /> -<objsur guid="8c5e2b5d-e460-427b-b21a-7b7509016aa9" t="o" /> -<objsur guid="89c580b4-37cd-480e-ae30-5305c14c1366" t="o" /> -<objsur guid="493f8b11-7fb8-4a02-b779-46287482f310" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="7c0278a3-dd9e-42af-80e6-e50f05331939" ownerguid="e43c9905-ae67-4627-8b10-bd7a453828b4"> -<ExampleWords> -<AUni ws="en">sticky, adhesive, gummy, magnetic, tacky</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that sticks to other things?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7c03827f-0d7e-42d3-b2ae-23374e37dc6e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">purma</AUni> -<AUni ws="qvm-x-acl">purma</AUni> -<AUni ws="qvm-x-akh">purma</AUni> -<AUni ws="qvm-x-akl">purma</AUni> -<AUni ws="qvm-x-ame">purma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*purma.v</AUni> -<AUni ws="qvm-x-acl">*purma.v</AUni> -<AUni ws="qvm-x-akh">*purma.v</AUni> -<AUni ws="qvm-x-akl">*purma.v</AUni> -<AUni ws="qvm-x-ame">*purma.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.20" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ff4abcbc-a1bd-4859-a9e3-86526bfac271" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*purma.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b80a8896-26f0-4277-acfa-6b80362ccf2a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="db2a1542-c324-4022-b410-260e31df2063" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *purma.v 
\entryTyp root 
\gENG 
\gSPN coposo 
\e *purma.v 
\c V1 
\ach purma 
\akh purma 
\acl purma 
\akl purma 
\ame purma 
\i PRO 24.31 Tsaychömi ricargä chacranpis pasaypa purmashga y perganpis juchushga caycagta.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7c077333-c951-4ee8-b5d5-fc51a9b153b4" ownerguid="e08e252a-9227-42e4-bcb8-b803d25071b6"> -<ExampleWords> -<AUni ws="en">embarrass (someone), cause embarrassment, be an embarrassment, mortify</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to causing someone to feel embarrassed?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7c096b2c-2bc2-492c-a061-9b64be1981ac"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">milga</AUni> -<AUni ws="qvm-x-acl">milga</AUni> -<AUni ws="qvm-x-akh">milga</AUni> -<AUni ws="qvm-x-akl">milga</AUni> -<AUni ws="qvm-x-ame">milga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+melgar</AUni> -<AUni ws="qvm-x-acl">+melgar</AUni> -<AUni ws="qvm-x-akh">+melgar</AUni> -<AUni ws="qvm-x-akl">+melgar</AUni> -<AUni ws="qvm-x-ame">+melgar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.406" /> -<DateModified val="2022-10-10 21:18:47.204" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7a8e1bca-0034-4a12-a4b2-30fc2ea6eedb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+melgar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6973e6e0-2aa4-439b-9c92-7676c84d893f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="49f92595-529f-4fac-9eb3-f251a917e38a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +melgar 
\entryTyp root 
\gENG 
\gSPN 
\e +melgar 
\c V1 
\ach milga 
\akh milga 
\acl milga 
\akl milga 
\ame milga 
\i 1KI 19.19 Cutirmi Eliseuta tarergan chunca ishcay (12) par yuntacunawan melgapänacuypa aruycagta.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7c0a33b7-2ae4-4a49-bf89-5a0a0c0c19f3" ownerguid="e54cd744-d106-4bcf-bd07-b8783c075c21"> -<ExampleWords> -<AUni ws="en">be out of fashion, out, unfashionable, old-fashioned</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe something that is not fashionable?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7c0d4203-4f3a-492c-92f6-d544eedb89d5" ownerguid="d030f0c7-31a3-47da-be35-46f1eba63ae9"> -<ExampleWords> -<AUni ws="en">beguile, bewitch, charm, dazzle, delight, enchant, enthrall, fascinate, gladden, gratify, impress, please, thrill, tickle, wow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to something causing someone to like a person or thing?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="7c0d63ba-653e-422e-8d82-161d2a6c7478" ownerguid="a97be5dd-69dc-49bf-bcf1-a4da50b64eaa"> -<Form> -<AUni ws="qvm-x-ach">yug</AUni> -<AUni ws="qvm-x-acl">yog</AUni> -<AUni ws="qvm-x-akh">yuq</AUni> -<AUni ws="qvm-x-akl">yoq</AUni> -<AUni ws="qvm-x-ame">yuq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="7c0e1331-2815-4683-9955-032aa7c2f8df" ownerguid="a37448c3-7461-486b-b16e-55acdf55f3c2"> -<Form> -<AUni ws="qvm-x-ach">litsi</AUni> -<AUni ws="qvm-x-acl">litsi; litse</AUni> -<AUni ws="qvm-x-akh">litsi</AUni> -<AUni ws="qvm-x-akl">litsi; litse</AUni> -<AUni ws="qvm-x-ame">litsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="7c10817a-0c51-49d2-b092-e19317a45328" ownerguid="bfa15caf-a60a-44e5-8243-e46dce4d2e5a"> -<Form> -<AUni ws="qvm-x-ach">gapya</AUni> -<AUni ws="qvm-x-acl">gapya</AUni> -<AUni ws="qvm-x-akh">qapya</AUni> -<AUni ws="qvm-x-akl">qapya</AUni> -<AUni ws="qvm-x-ame">qapya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7c137b93-23b3-4936-b4e7-0827d791b9ac" ownerguid="ea46de30-a1a9-4828-84a8-9165f61f8b20"> -<ExampleWords> -<AUni ws="en">net, hook, angle, trap, spear, arrow, harpoon, poison, dynamite, trawling, fishpond</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What methods are used to catch fish?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7c157f0b-c86a-43ca-aded-4dcaf01aff5e" ownerguid="ed7930df-e7b4-43c9-a11a-b09521276b57"> -<ExampleWords> -<AUni ws="en">phew, PU, yuck</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words do people use to say that something smells bad?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="7c170941-0e20-485d-97dc-d099c5b84f61" ownerguid="02d40281-094f-426e-a0eb-f10e113efb58"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">warmi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">warmi; warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">warmi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">warmi; warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">warmi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ddf5b3ec-6ef7-4a2a-b160-365cb7d372df" t="r" /> -</Morph> -<Msa> -<objsur guid="e9ece695-28de-48a2-aff1-266bce7d2a60" t="r" /> -</Msa> -<Sense> -<objsur guid="665a0faa-f86f-42a9-9573-15a753e44c8c" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="7c18855a-c8b5-440a-88f4-1e30f620bc35" ownerguid="6c6259f0-eca6-4a30-8662-eedbaf293527"> -<ExampleWords> -<AUni ws="en">stand firm, stand your ground, stick to your guns</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to refusing to change your mind?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="7c1899f6-6334-4a52-a1dc-987007431128" ownerguid="ca34fbb8-44db-4e14-9a62-e483dd3db481"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="7c1aeb94-0c5b-4a81-9578-d0be1e287548" ownerguid="e9620da0-4016-47ee-a991-fd7d13b8469e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7c1b3425-4d61-4849-b88b-2204f46ea6f3" ownerguid="f5567550-e3c9-4589-8f88-8159eadcd194"> -<ExampleWords> -<AUni ws="en">custom, convention, tradition, (our) way, praxis</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a custom?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="7c1c3730-3b35-4150-b54e-bf6d344546b3" ownerguid="f02ae505-d6b7-4b30-9d97-8505d0d1a0c7"> -<Abbreviation> -<AUni ws="en">9.6.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.720" /> -<DateModified val="2022-9-23 16:55:8.720" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that indicate that the phrase or sentence is particularly important.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>91B Markers of Emphasis</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Markers of emphasis</AUni> -</Name> -<Questions> -<objsur guid="5a3a7edb-d086-4552-8dcb-508f7b7c4394" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="7c1e8de2-e161-436a-a3f1-5c4721bd5f29" ownerguid="e2d3294b-4463-48bb-95e4-8c9b5238ecec"> -<ExampleWords> -<AUni ws="en">mock, mockery, make fun of, tease, taunt, ridicule, scorn, sneer, sarcasm, deride, derision, jeer, laugh at, snicker, snigger, poke fun at, play a trick on, satirize, satire, parody, caricature, lampoon, make a fool of, roast</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to mocking someone?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7c20339c-deee-42dd-a747-5159b947eb68" ownerguid="6a19c088-7fc7-47dd-a7a9-c8191ad99d45"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 V0/V0 ONSHEV/ONSHEV R0/R0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="60d77235-f2f0-40d0-b767-6876a279c2e1" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">EMPH1</AUni> -<AUni ws="es">ENF1</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1ce6db96-fb29-453a-99b2-6ded4a9072ee" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="7c234ccc-0dbe-42b0-a377-db99ebd2b51e" ownerguid="9e6d7c69-788c-4d40-8584-32f185e91932"> -<Abbreviation> -<AUni ws="en">6.4.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.456" /> -<DateModified val="2022-9-23 16:55:8.456" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to things done to animals.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Things done to animals</AUni> -</Name> -<Questions> -<objsur guid="10a24fe6-3031-4eff-912a-914c60cd6fb8" t="o" /> -<objsur guid="261ba6d7-194b-4bac-b5bc-02c73b652d57" t="o" /> -<objsur guid="592aee38-7ab6-4664-8997-d4d3d564deda" t="o" /> -<objsur guid="11263764-3cb1-4b0b-a1b9-fc39b5d58420" t="o" /> -<objsur guid="48dcf54b-78ae-47e7-97e1-a7ea50822919" t="o" /> -<objsur guid="9b7d8982-42ae-4222-8f90-f8e10e5c0f69" t="o" /> -<objsur guid="6bdfb06f-b384-470b-9aef-d4d27ada736a" t="o" /> -<objsur guid="c2157d85-3a10-4a0a-8555-ffdee5527cd8" t="o" /> -<objsur guid="45898ca3-17a6-4535-b3ab-7760cb4efb71" t="o" /> -<objsur guid="4a660a4c-55a8-4014-8475-d5f97e22e88e" t="o" /> -<objsur guid="eaeba543-9d97-4569-845d-d723bc8ce241" t="o" /> -<objsur guid="07b70511-7972-4bd7-b95c-a2a99ca0e558" t="o" /> -<objsur guid="43b1b97b-7035-49eb-9269-84469f4bfbf4" t="o" /> -<objsur guid="5358d151-f04a-4450-8091-e04305f3820f" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="79b580ff-64a7-445b-abcb-b49b9093779c" t="r" /> -<objsur guid="9e6d7c69-788c-4d40-8584-32f185e91932" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="7c29438c-62f3-4235-b93c-c4362a199b47" ownerguid="bc61bd8d-295b-4965-a183-703d21a56996"> -<ExampleWords> -<AUni ws="en">title, terms of address</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a title used to address a person?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7c2ce6a9-2ff7-4df1-81fc-5d45b5c2ebf4" ownerguid="7d1f52aa-a865-4c5a-8e03-78166153d9ae"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hide</AUni> -<AUni ws="es">piel</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="27bb9e53-4625-4d0d-ae06-8354c010943f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="7c2dee35-dc56-4d70-ac4f-9096bf9a7f01" ownerguid="5f22e72b-5029-485a-a5e8-7fa7276c9920"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuna</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuna</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuna</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuna</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuna</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f236a19a-86ce-4599-91f5-fb178488e065" t="r" /> -</Morph> -<Msa> -<objsur guid="0851fe14-f99e-4e06-befc-3a76b044ea37" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="7c319154-d1d5-4e64-94d0-27b05186b8f9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mayi</AUni> -<AUni ws="qvm-x-acl">mayi; mayi; maye</AUni> -<AUni ws="qvm-x-akh">mayi</AUni> -<AUni ws="qvm-x-akl">mayi; mayi; maye</AUni> -<AUni ws="qvm-x-ame">mayi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*masi</AUni> -<AUni ws="qvm-x-acl">*masi</AUni> -<AUni ws="qvm-x-akh">*masi</AUni> -<AUni ws="qvm-x-akl">*masi</AUni> -<AUni ws="qvm-x-ame">*masi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.356" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9dee40d7-69e3-449e-90f2-0eeddd4ad6fb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*masi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fb27b38a-0c86-4609-a4bd-ed8bc9f1d019" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="746db52f-fd50-48e4-bc03-a56f8b1d2911" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *masi 
\entryTyp root 
\gENG comrad 
\gSPN compañero 
\e *masi 
\c N0 
\mp +FinalI 
\ach mayi 
\akh mayi 
\acl mayi / _# 
\acl mayi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl maye +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mayi / _# 
\akl mayi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl maye +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mayi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7c341ba6-c7d8-448f-bdae-da6e96533bc7" ownerguid="1461c106-d9e0-417d-9487-a57e6d0cced0"> -<ExampleWords> -<AUni ws="en">act unacceptably, dissatisfactory, abnormal, unpleasing, unpleasantly, be impolite, ill mannered</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to unacceptable behavior?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7c351984-773a-494f-9de0-dbab5c516c7c" ownerguid="f33bae47-56e7-403f-9e82-aedda45d5c2e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7c355919-725a-404c-9083-1dddbf25bd98" ownerguid="e72edce6-6d03-454f-a2b0-fe5aaa632063"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="7c35bb94-49c7-464a-b533-2255bc261138"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">serruchu; serrucho</AUni> -<AUni ws="qvm-x-acl">serruchu; serruchu; serrucho</AUni> -<AUni ws="qvm-x-akh">serruchu; serrucho</AUni> -<AUni ws="qvm-x-akl">serruchu; serruchu; serrucho</AUni> -<AUni ws="qvm-x-ame">serruchu; serrucho</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+serrucho</AUni> -<AUni ws="qvm-x-acl">+serrucho</AUni> -<AUni ws="qvm-x-akh">+serrucho</AUni> -<AUni ws="qvm-x-akl">+serrucho</AUni> -<AUni ws="qvm-x-ame">+serrucho</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.521" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="44872591-ca58-46c1-877e-2e204d0de134" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+serrucho</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="674f7009-814d-46c2-8766-e167ce5b7ad8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dd3de3af-6b7e-4cc7-a3da-9eef5a197844" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +serrucho 
\entryTyp root 
\gENG saw 
\gSPN serrucho 
\e +serrucho 
\c N0 
\ach serruchu / ~_# 
\ach serrucho / _# 
\akh serruchu / ~_# 
\akh serrucho / _# 
\acl serruchu / ~_# 
\acl serruchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl serrucho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl serruchu / ~_# 
\akl serruchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl serrucho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame serruchu / ~_# 
\ame serrucho / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="7c35fe32-48be-41ce-8a75-5860a30b5e24" ownerguid="0eff3206-bbf3-45fd-bf57-dea82710c34d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="7c374a4c-0ed1-4a3a-afad-5e8f794788c1" ownerguid="985916ce-1bab-403a-82e1-40b25a638194"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Jueces 11.20 Tsaynog niptinpis Sehón resilashpan mana munargantsu Israel runacuna nacionninpa pasananta.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="7c3c6f36-d56a-4236-a85d-c446e0032343" ownerguid="6ddf87ce-d100-4f94-b4d9-18a6d6ccc59c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="7c3e7201-4640-4d88-879e-ca93c033fd2b" ownerguid="f841d2d0-ebbe-47cc-b47a-cf2915abeda8"> -<Form> -<AUni ws="qvm-x-ach">ugel; ugil</AUni> -<AUni ws="qvm-x-acl">ugel; ugil; ugel</AUni> -<AUni ws="qvm-x-akh">ugel; ugil</AUni> -<AUni ws="qvm-x-akl">ugel; ugil; ugel</AUni> -<AUni ws="qvm-x-ame">ugel; ugil</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="7c404a66-467a-4c0c-95ca-461c54612f05" ownerguid="0bd1ff14-0f91-4144-8ccc-ae374620d493"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6fe49b5e-093a-457b-9f14-02b68e8cec63" t="r" /> -</Morph> -</rt> -<rt class="CmDomainQ" guid="7c40f574-5a22-4af7-afbb-e258f8265977" ownerguid="82e4394a-2f58-4356-8d9c-1ad9dbe95293"> -<ExampleWords> -<AUni ws="en">cold, frozen, icy, glacial, hibernal, hiemal, hyperborean, marmoreal, unthawed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is cold?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7c4114f9-80a5-4377-b07d-6aaafe178a59" ownerguid="9bd490e6-8863-4ab4-9a0f-7e696f0a0d4a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="56290cc0-5eeb-4a35-bdfc-37711d61a3c5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7c42ea20-49bc-43f9-8ec7-32cf98c17c9e" ownerguid="2b27b8ca-188e-44ad-aa86-ffa1f99106e3"> -<ExampleWords> -<AUni ws="en">add, put in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to adding something to something you are cooking?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7c439dc1-4adf-4381-8a98-cb4c55508452" ownerguid="32bf055a-d666-4d6e-a3c6-6c984e2c9868"> -<ExampleWords> -<AUni ws="en">busy signal, go dead, wrong number</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to problems with making a telephone call?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7c43e663-8320-433f-b3ae-fca7842a9f37" ownerguid="d66a286d-698f-4879-a57f-6674a9e685a6"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7c470510-dd3b-4167-a1bc-c249b285eed7" ownerguid="69d0a37d-f5b3-48a5-9486-5654d37b030b"> -<ExampleWords> -<AUni ws="en">mill (v), grind</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to milling grain?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7c47ba9a-ea31-46b4-b867-0ccad6f7b5b0" ownerguid="5c31bdf6-901f-4f14-ab64-7a99524710fc"> -<ExampleWords> -<AUni ws="en">indifference, neutrality, apathy, unconcern, lack of concern</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of indifference?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7c494f70-e736-44b6-b7c5-f54eafab6eef" ownerguid="99b5b80a-a2d6-4820-adfc-1da72528c272"> -<ExampleWords> -<AUni ws="en">the same, consistent, unchanging, constant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe someone or something that never changes?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7c49d037-773f-4a8a-a29d-e716692389e2" ownerguid="eeb617bc-720f-4434-ad8f-6106ca19f99e"> -<Form> -<AUni ws="qvm-x-ach">ganyantin</AUni> -<AUni ws="qvm-x-acl">ganyantin; ganyantin; ganyanten</AUni> -<AUni ws="qvm-x-akh">qanyantin</AUni> -<AUni ws="qvm-x-akl">qanyantin; qanyantin; qanyanten</AUni> -<AUni ws="qvm-x-ame">qanyantin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7c50f821-adb3-4a21-92f9-cc0819ee884d" ownerguid="080bf07b-e58b-4a75-bb97-84d980a143f0"> -<ExampleWords> -<AUni ws="en">shape (v), change the shape of, form, mold, transform</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What general words refer to changing the shape of something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7c58f669-fb4a-4799-9938-c8cc0b1ee771" ownerguid="0f323bee-0d8a-4564-9691-87880f55d910"> -<ExampleWords> -<AUni ws="en">depend on, dependent, rely on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to needing someone to provide for you?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7c5a076d-8f77-4585-bd0f-f2c10306e054" ownerguid="ed7930df-e7b4-43c9-a11a-b09521276b57"> -<ExampleWords> -<AUni ws="en">scent, perfume, fragrance, aroma, bouquet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to a good smell?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7c616aef-75fd-43c8-90a5-87ca7fdbcbab"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">siuta</AUni> -<AUni ws="qvm-x-acl">siuta</AUni> -<AUni ws="qvm-x-akh">siwta</AUni> -<AUni ws="qvm-x-akl">siwta</AUni> -<AUni ws="qvm-x-ame">siwta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shiwta</AUni> -<AUni ws="qvm-x-acl">*shiwta</AUni> -<AUni ws="qvm-x-akh">*shiwta</AUni> -<AUni ws="qvm-x-akl">*shiwta</AUni> -<AUni ws="qvm-x-ame">*shiwta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.612" /> -<DateModified val="2022-10-10 21:19:47.693" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cfb70732-dffd-4fa2-b7fd-062b1e1450a8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shiwta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2d3efb5a-72c3-48e5-ad04-99bbcefeed94" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dca6306d-5755-4bc8-b507-2431a5df887d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shiwta 
\entryTyp root 
\gENG peel 
\gSPN 
\e *shiwta 
\c V2 
\ach siuta 
\akh siwta 
\acl siuta 
\akl siwta 
\ame siwta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7c620f08-4ec3-400c-8feb-1313cff7ea70" ownerguid="29a8ebbe-ebc4-4295-b6af-84331d019361"> -<ExampleWords> -<AUni ws="en">vocabulary, lexicon, dictionary, glossary</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to all the words of a language?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" ownerguid="f6deea64-e38a-4698-8100-d5278c3a304e"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="7c64f65b-2889-4f90-ba61-6b5f7634d4bc" ownerguid="944cf5af-469e-4b03-878f-a05d34b0d9f6"> -<Abbreviation> -<AUni ws="en">1.6.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to male and female animals. Most languages have special words for the male and female of a species only for domesticated animals. Sometimes there will be a word for the male and not the female, and vice versa (male dog, bitch). Sometimes the word for one is also used generically (cow for both female and generic).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>9B Males; 9C Females</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Male and female animals</AUni> -</Name> -<Questions> -<objsur guid="8a276178-a411-4030-b3a3-7f3de137e468" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="0db5817e-05bf-4703-a6b9-e239ac44f857" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="7c66643f-85a5-477c-96b1-f82f3767cec0" ownerguid="d88d862c-01d4-4b43-9fbe-59208922e022"> -<ExampleWords> -<AUni ws="en">Wait! Wait up. Just a minute. Just a moment. I'll be right with you. Hold on. Hang on. Please hold.</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) How do you tell someone to wait?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7c66a8f6-cf61-4e29-85ea-a52aa2188119" ownerguid="199d8d5d-df47-4d7d-a02f-36b5778cfc34"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7c67cec7-5ed2-4521-9bbd-3ba27ce44be5" ownerguid="1fda68d4-5941-4695-b656-090d603a3344"> -<ExampleWords> -<AUni ws="en">baker (bread), butcher (meat), confectioner (candy), brewer (alcohol)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who prepares special types of food?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7c6b7816-e578-4c23-af4e-b73653ba75dd" ownerguid="bc8d0ad4-6ebf-4fa0-bc7e-60e8ec9c43db"> -<ExampleWords> -<AUni ws="en">bloodshot, bleary, bleary-eyed, beady eyes, thick (eyebrows), long (eyelashes), blue-eyed, cross-eyed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a person's eyes?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="7c6ba6e5-d81e-4a50-a111-c946a0793378" ownerguid="31ccb9e3-d434-4430-ac84-486cc5a1c53d"> -<Abbreviation> -<AUni ws="en">6.1.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.367" /> -<DateModified val="2022-9-23 16:55:8.367" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to having an advantage--something that helps you succeed that other people don't have.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Advantage</AUni> -</Name> -<Questions> -<objsur guid="3cd577aa-051b-4afe-9e3d-837fa4c4205b" t="o" /> -<objsur guid="b5b44432-e719-47e7-9383-4756d9a3c48f" t="o" /> -<objsur guid="3a4bbd82-e5be-4c1c-8a9f-7ca539cee369" t="o" /> -<objsur guid="4b534532-3de4-40a7-859c-a959ced30ab8" t="o" /> -<objsur guid="e61b956a-27e9-4196-98f3-37ef07b8e8b2" t="o" /> -<objsur guid="fc97bb9e-f7de-4dbf-8860-2063e9d61789" t="o" /> -<objsur guid="da86bc0e-bfaa-4803-8219-4a95f5dfdcdc" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="7c6bc5b4-1192-4a29-8593-208068fee832" ownerguid="7bcb6ae1-23bf-4034-b883-5f8bb779cc36"> -<Form> -<AUni ws="qvm-x-ach">rebëti; rebëti</AUni> -<AUni ws="qvm-x-acl">rebëti; rebëti; rebëte</AUni> -<AUni ws="qvm-x-akh">rebëti; rebëti</AUni> -<AUni ws="qvm-x-akl">rebëti; rebëti; rebëte</AUni> -<AUni ws="qvm-x-ame">rebëti; rebëti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7c6c5c85-4a74-4ead-9b83-8a8d8afc82d9" ownerguid="a3e905b8-107b-4311-bb50-0abe151131b3"> -<ExampleWords> -<AUni ws="en">permit, license, warrant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to an official document that gives someone permission to do something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7c6c7704-4bb8-4f07-80da-c19b85b4958d" ownerguid="d067b555-e53c-4c16-bb09-5314862d8bae"> -<ExampleWords> -<AUni ws="en">bar, saloon, bartender</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a drinking establishment?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="7c6cad26-79c3-403a-a3aa-59babdfcd46f" ownerguid="32bebe7e-bdcc-4e40-8f0a-894cd6b26f25"> -<Abbreviation> -<AUni ws="en">2.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.32" /> -<DateModified val="2022-9-23 16:55:8.32" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing a person who is sick.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>23I Sickness, Disease, Weakness</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Sick</AUni> -</Name> -<OcmCodes> -<Uni>750 Sickness</Uni> -</OcmCodes> -<Questions> -<objsur guid="2f6b8aa0-16be-4ba6-8531-0619759ae7b3" t="o" /> -<objsur guid="3ade4894-7cc7-4722-8719-4a922d0e16a2" t="o" /> -<objsur guid="1aa9cd8b-f9c7-4ef1-9967-e90e8b5b8003" t="o" /> -<objsur guid="8d73bfdb-2389-4df7-a33a-02974b8ef46e" t="o" /> -<objsur guid="38f9ca27-51af-4027-b096-a15c4d08cbfa" t="o" /> -<objsur guid="4c30904d-989a-4516-af46-299f2081f8a1" t="o" /> -<objsur guid="8ad8ed0f-3d3c-4d3f-b0e7-3aa47c908118" t="o" /> -<objsur guid="e960ec6b-5e40-4910-b91e-9e696b13f8c6" t="o" /> -<objsur guid="68db8d37-8dda-448b-9ec0-d346b6a81593" t="o" /> -<objsur guid="639a4c69-37ad-4398-82b9-9b01eac2069e" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="104d40c9-2a4f-4696-ad99-5cf0eb86ab2e" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="7c74a0d6-c560-4683-bf69-909e83745585" ownerguid="888ad11b-6c50-419e-a18e-5bcfbdb5f8fd"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="7c77226b-f21e-45b2-8124-7be605371337" ownerguid="80d90411-ebaf-4f12-9b8b-8180cb57a73d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">runa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">runa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">runa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">runa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">runa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="dbbd8356-c9df-482b-a128-55aaaa8ad47f" t="r" /> -</Morph> -<Msa> -<objsur guid="735a29e0-40d3-4d25-9e9a-e8181d173c29" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="7c7bda8c-0864-4838-8ddc-f0ab7c36eaa9" ownerguid="3df7d174-83d1-4e17-890e-1272e171ca41"> -<ExampleWords> -<AUni ws="en">aluminum, barium, brass, bronze, chrome, chromium, copper, gold, iron, lead, lithium, magnesium, mercury, molybdenum, nickel, platinum, quicksilver, radium, silver, steel, tin, titanium, tungsten, uranium, zinc</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of metal are there?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7c7f1a11-e596-4f84-8eda-ae9126c60e0f" ownerguid="c0a67d43-5d34-4238-90b2-638acc817f11"> -<Form> -<AUni ws="qvm-x-ach">lantuy</AUni> -<AUni ws="qvm-x-acl">lantuy</AUni> -<AUni ws="qvm-x-akh">lantuy</AUni> -<AUni ws="qvm-x-akl">lantuy</AUni> -<AUni ws="qvm-x-ame">lantuy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="7c7f62d8-0293-45ba-8658-956c38bafc66" ownerguid="61f52196-a8b2-496d-96ea-8c15dc7d377a"> -<Abbreviation> -<AUni ws="en">4.9.4.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.296" /> -<DateModified val="2022-9-23 16:55:8.296" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to destiny--decisions and actions by God, spirits, or by impersonal forces that determine or influence what happens to a person.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Destiny</AUni> -</Name> -<OcmCodes> -<Uni>777 Luck and Chance</Uni> -</OcmCodes> -<Questions> -<objsur guid="a8d92446-3ab7-43b5-8e2a-29d5599e0bd7" t="o" /> -<objsur guid="fe2f6381-db31-405e-9383-178630078f2b" t="o" /> -<objsur guid="cc7e47d1-615e-4b29-ac63-facc2fec8929" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="7c7f72da-cd54-40c7-a2e4-7c37674ee8fc" ownerguid="19ba7cf1-e7bb-41f2-a7d2-3c52fcc858df"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="7c7fc1b6-3775-4881-bbe0-9d0ce50e42a9" ownerguid="d9f336cf-0682-4702-ab94-5ade755ddc64"> -<Abbreviation> -<AUni ws="en">7.3.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.528" /> -<DateModified val="2022-9-23 16:55:8.528" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to putting something above you or above something else, putting something on top of something else, or moving something higher than it was.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Lift</AUni> -</Name> -<Questions> -<objsur guid="babc6b2d-870a-42f2-be0c-968f8ecb650e" t="o" /> -<objsur guid="5497de86-b80d-4f33-b504-26c05290f50a" t="o" /> -<objsur guid="7fca2934-849c-4786-9e41-bea9b6e9318b" t="o" /> -<objsur guid="620fd8bb-817b-4ed0-9173-dd18ac299b3b" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="7d8898d6-6296-4d4d-b8dd-2f48c49f9e98" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="f472b2d2-b4d3-4852-914d-71b66bdb6f26" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="7c7fdfe1-16ef-4193-addd-07e3a5c5a490" ownerguid="bc011a6a-46e2-492e-b923-6dc6e03dcea4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="7c80f6ee-e76d-4903-aee6-7a33d1da3f75" ownerguid="2810998c-d6cc-47a3-a946-66d0986a2767"> -<Abbreviation> -<AUni ws="en">7.3.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to covering something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79Y Covered Over</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Cover</AUni> -</Name> -<Questions> -<objsur guid="b1950a3e-9574-4128-9dde-da6068253b12" t="o" /> -<objsur guid="cdb9449e-9da2-4e64-997a-563c5586e8ff" t="o" /> -<objsur guid="11e22a4a-f851-417e-a0d2-f9369791205d" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="5b925ee1-82ef-4692-bba2-9ce3cb41c7bb" t="o" /> -<objsur guid="2608bcf8-ed20-4501-8510-4ecacf922dd4" t="o" /> -<objsur guid="a2240259-608b-40f1-990a-7f8e00ef1d07" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="7c846de6-f392-4421-bb7c-5a0d9f41b031" ownerguid="01a69e19-d3b0-4450-aa81-74af2409b40e"> -<Form> -<AUni ws="qvm-x-ach">ushma</AUni> -<AUni ws="qvm-x-acl">ushma</AUni> -<AUni ws="qvm-x-akh">ushma</AUni> -<AUni ws="qvm-x-akl">ushma</AUni> -<AUni ws="qvm-x-ame">ushma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="7c84bce9-0628-4a5b-87f7-66b8e5a6da2b" ownerguid="a1c7568b-4114-4103-89b1-7dbef4419f84"> -<Form> -<AUni ws="qvm-x-ach">atsqui</AUni> -<AUni ws="qvm-x-acl">atsqui; atsqui; atsque</AUni> -<AUni ws="qvm-x-akh">atski</AUni> -<AUni ws="qvm-x-akl">atski; atski; atske</AUni> -<AUni ws="qvm-x-ame">atski</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7c8999ef-ab19-4974-93a8-bccdf1f93723" ownerguid="8f779877-7d86-4683-8a8b-298c7fc62815"> -<ExampleWords> -<AUni ws="en">speak inappropriately, be rude, crude, socially unacceptable, filthy speech, out of place, not fit for mixed company, shocking speech</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words are used for speaking inappropriately?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7c8acfe2-64c6-46f7-be23-deb2dfad0cc0" ownerguid="a1959b00-9702-4b45-ac46-93f18d3bc5e6"> -<ExampleWords> -<AUni ws="en">give artificial respiration</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to helping someone who has stopped breathing to breathe again?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7c8c8fac-4d8c-41a0-8f5b-1c2afe9751f3" ownerguid="f10944fa-5e6d-42e6-81ed-6a2a08118773"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">race</AUni> -<AUni ws="es">hacer.competencia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6301dfa1-b048-4db0-a681-974a058e0fc9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7c8d4021-de4e-4a4a-b08f-10e2ef13f08c" ownerguid="956eaac9-bc62-4c3f-b9c2-ed4971e8b2b5"> -<Form> -<AUni ws="qvm-x-ach">tabladïllu</AUni> -<AUni ws="qvm-x-acl">tabladïllu; tabladïllu; tabladïllo</AUni> -<AUni ws="qvm-x-akh">tabladïllu</AUni> -<AUni ws="qvm-x-akl">tabladïllu; tabladïllu; tabladïllo</AUni> -<AUni ws="qvm-x-ame">tabladïllu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="7c8f93d8-9420-4893-88b2-f5096b8e7ad6" ownerguid="d80fccdc-cdc5-4f13-add3-00dfb865a042"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="5fb33633-9a56-4fb7-b04a-73b99dc0496b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="7c92d74b-568f-4301-a4c0-3714a1865c52" ownerguid="f4e655bc-6048-4f78-95b2-50cb1f6bd6b8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="7c95748a-3b2c-446d-a6a3-119b1ac47f92" ownerguid="4870b2b3-03fb-4964-9e2e-84460c9a4cce"> -<Form> -<AUni ws="qvm-x-ach">muntuna</AUni> -<AUni ws="qvm-x-acl">muntuna</AUni> -<AUni ws="qvm-x-akh">muntuna</AUni> -<AUni ws="qvm-x-akl">muntuna</AUni> -<AUni ws="qvm-x-ame">muntuna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="7c95e1c1-f2de-4eef-bcf8-8cedaf2fca60" ownerguid="b9bcece5-a13a-487c-9517-ea7cb3b857a6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sheep.skin</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1cf8ddae-9796-4ca3-ab08-36f6ac8f8b0b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7c95fb99-2d6d-47b6-9f44-63117f03e73c" ownerguid="e135341c-48c4-4a21-bf6f-ecf9dc978202"> -<Form> -<AUni ws="qvm-x-ach">yargu</AUni> -<AUni ws="qvm-x-acl">yargu; yargo</AUni> -<AUni ws="qvm-x-akh">yarqu</AUni> -<AUni ws="qvm-x-akl">yarqu; yarqo</AUni> -<AUni ws="qvm-x-ame">yarqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7c96c872-3a70-46ad-9c74-7dc660b0d4c6" ownerguid="e836b01b-6c1a-4d41-b90a-ea5f349f88d4"> -<ExampleWords> -<AUni ws="en">humid, humidity, damp, dry, sticky, muggy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to how much water is in the air?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7c970668-e5ab-484f-a199-5d0f76fa2d44" ownerguid="4445cccd-e9b9-4f25-9e8c-2ef58408297d"> -<ExampleWords> -<AUni ws="en">to dress, get dressed, put on, clothe, get into, throw on, jump into, don, tuck in, button, zip, tie</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to putting clothing on?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7c9b88be-6812-4b82-9424-1e4427dbfc56" ownerguid="6ce98c1d-d86f-43b0-a401-9e2af0cf37a1"> -<Form> -<AUni ws="qvm-x-ach">jäcalya; jäcalyä</AUni> -<AUni ws="qvm-x-acl">jäcalya; jäcalyä</AUni> -<AUni ws="qvm-x-akh">jäkalya; jäkalyä</AUni> -<AUni ws="qvm-x-akl">jäkalya; jäkalyä</AUni> -<AUni ws="qvm-x-ame">häkalya; häkalyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="7c9bdadd-8bb1-412a-a2d5-7e0c4c993c16" ownerguid="427842fe-e98f-4e25-9720-00122ce5b5e9" /> -<rt class="CmSemanticDomain" guid="7c9c6263-9f7d-472c-a4c9-1767015d41fe" ownerguid="b50f39cb-3152-4d56-9ddc-4b98f763e76a"> -<Abbreviation> -<AUni ws="en">3.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.123" /> -<DateModified val="2022-9-23 16:55:8.123" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to offering to do something for someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33H' Recommend, Propose</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Offer</AUni> -</Name> -<Questions> -<objsur guid="a15883a3-bd37-4cb5-b4ac-385520095f86" t="o" /> -<objsur guid="54ada8e1-218b-44e6-9b1f-88d6b4128b92" t="o" /> -<objsur guid="b61bdf7f-c49c-4914-847e-2f1f468a256a" t="o" /> -<objsur guid="0b1b22d9-2671-4cd8-8a2c-d6f2b769283e" t="o" /> -<objsur guid="63bcdef5-eaad-4d1f-8764-02ab805f65ea" t="o" /> -<objsur guid="b5bf9c3d-4862-459e-998c-e27b5ec42fe3" t="o" /> -<objsur guid="9b418d6b-4c99-48d4-926b-3500bfe3dee5" t="o" /> -<objsur guid="90eb7aea-966d-434a-8f77-21464c02e98f" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="dafc4b97-2b70-4986-b2b4-c05eb060786d" t="o" /> -<objsur guid="612424b8-997e-4661-a452-772e14a3c4a0" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiGloss" guid="7c9fc0dc-0120-48b8-8d70-211eb72069ef" ownerguid="8824aa7a-25c9-4c58-8bcc-437cc2fd173e"> -<Form> -<AUni ws="en">harvest</AUni> -<AUni ws="es">cosecha</AUni> -</Form> -</rt> -<rt class="CmDomainQ" guid="7c9ff6dc-ceac-4e99-919f-d1adc48cf458" ownerguid="81e03df2-33a8-4735-aa23-80ef1c63679e"> -<ExampleWords> -<AUni ws="en">really confused, totally out of it, shocked</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used to express an extreme case of these conditions?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7ca0d0f3-390f-4d7a-ab48-ef7cc8434608" ownerguid="06341e45-c407-49d0-98d8-74ecc303fb02"> -<ExampleWords> -<AUni ws="en">leave, walk out, desert, break up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to ending a relationship?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7ca396a2-70a1-41d0-ae32-c6b4aee1bd15" ownerguid="d1687857-0f1d-4098-affb-b283a6677b6b"> -<ExampleWords> -<AUni ws="en">most, almost all, nearly all, the majority, the bulk of, the better part of, the best part of, the lion's share, the biggest slice of the cake</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to most of something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7ca45f0e-9923-4f81-878d-da1b20f82bf6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">atacshu</AUni> -<AUni ws="qvm-x-acl">atacshu; atacshu; atacsho</AUni> -<AUni ws="qvm-x-akh">atakshu</AUni> -<AUni ws="qvm-x-akl">atakshu; atakshu; ataksho</AUni> -<AUni ws="qvm-x-ame">atakshu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*atakshu</AUni> -<AUni ws="qvm-x-acl">*atakshu</AUni> -<AUni ws="qvm-x-akh">*atakshu</AUni> -<AUni ws="qvm-x-akl">*atakshu</AUni> -<AUni ws="qvm-x-ame">*atakshu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.860" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d9d42662-44ef-4de0-b927-e359fe5a7223" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*atakshu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="29ebbd1d-3de1-43c7-b993-f204fa28f9f1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6c74b5bd-d256-40e0-8c0b-48e2644b113c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *atakshu 
\entryTyp root 
\gENG foot 
\gSPN pata 
\e *atakshu 
\c N0 
\ach atacshu 
\akh atakshu 
\acl atacshu / _# 
\acl atacshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl atacsho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl atakshu / _# 
\akl atakshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ataksho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame atakshu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="7ca7a5b0-e671-4e3a-9980-fbf79f26de30" ownerguid="91cb814b-266a-4472-a280-d29d8032a4f5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="7ca87077-8bc8-4986-b9f0-b79b71a36b62" ownerguid="d00bdac4-098c-4a8c-9e91-cabdfd6a2205"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.dark</AUni> -<AUni ws="es">ser.oscuro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="11c1b1cd-08a6-446f-95e5-24fd20b36b4d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="7caaf1f7-c371-4a07-a8a1-3e3997b787d2" ownerguid="8ada287c-bb36-440c-a7cb-7d311cf9a4db"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="7cabaa85-a98d-4497-be83-81f115320392" ownerguid="9db00bb9-0443-4017-9185-2a6e3f43e556"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b43ad487-6e73-48ff-9ec0-62d0371aba88" t="r" /> -</Morph> -<Msa> -<objsur guid="b0ee83ce-c1ff-41c7-8aa1-b6e53ae19ebd" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="7cae4727-229f-4e7e-80e0-3ec4573abc4e" ownerguid="60a8b5bc-b30f-42c3-9bb1-6c68928d1aaa" /> -<rt class="CmDomainQ" guid="7cb0197a-eee2-4337-a2f8-5276fccf90a5" ownerguid="084e2568-3f54-4eab-b436-8a87fb466659"> -<ExampleWords> -<AUni ws="en">hammer, chisel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What tools does a stonemason work with?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7cb1fe51-099f-4381-a420-115b4c343bf1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ushtu</AUni> -<AUni ws="qvm-x-acl">ushtu; ushto</AUni> -<AUni ws="qvm-x-akh">ushtu</AUni> -<AUni ws="qvm-x-akl">ushtu; ushto</AUni> -<AUni ws="qvm-x-ame">ushtu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ushtu</AUni> -<AUni ws="qvm-x-acl">*ushtu</AUni> -<AUni ws="qvm-x-akh">*ushtu</AUni> -<AUni ws="qvm-x-akl">*ushtu</AUni> -<AUni ws="qvm-x-ame">*ushtu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.290" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c61f3456-deff-4ef6-9af5-6c11e7894bc9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ushtu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ed9cc75e-082f-40a9-8108-03c2d26f7eb9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9810a34f-de31-4e21-9a73-207d238d979d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ushtu 
\entryTyp root 
\gENG dive 
\gSPN ? 
\e *ushtu 
\c V1 
\ach ushtu 
\akh ushtu 
\acl ushtu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ushto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ushtu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ushto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ushtu 
\mcc *ushtu / ~_ 1 CONJ | For when *ushtuchi is spelled ushtöchi</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="7cb3fb72-ea80-4fcc-8578-32f63c6a9c07" ownerguid="75e6c9e1-b36e-4814-ae4a-cdb676bf9d07"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b699320c-1182-41cf-a567-d8008edefdda" t="r" /> -</Morph> -</rt> -<rt class="MoStemAllomorph" guid="7cb4dfc5-49e3-4a87-ad65-b1801083988a" ownerguid="78b10399-81b3-4bba-a17b-b811cdea46ef"> -<Form> -<AUni ws="qvm-x-ach">clausüra</AUni> -<AUni ws="qvm-x-acl">clausüra</AUni> -<AUni ws="qvm-x-akh">clausüra</AUni> -<AUni ws="qvm-x-akl">clausüra</AUni> -<AUni ws="qvm-x-ame">clausüra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7cb68169-ef72-4b46-adeb-8621889bbc71" ownerguid="3014de03-88e5-4330-9682-51963a41ca50"> -<ExampleWords> -<AUni ws="en">eel, electric eel, slime eel, hagfish, lamprey</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of eels are there?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7cba6668-604a-44ec-907f-f67ff17a52fd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cay</AUni> -<AUni ws="qvm-x-acl">cay</AUni> -<AUni ws="qvm-x-akh">kay</AUni> -<AUni ws="qvm-x-akl">kay</AUni> -<AUni ws="qvm-x-ame">kay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kay</AUni> -<AUni ws="qvm-x-acl">*kay</AUni> -<AUni ws="qvm-x-akh">*kay</AUni> -<AUni ws="qvm-x-akl">*kay</AUni> -<AUni ws="qvm-x-ame">*kay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.973" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a7b299e0-c78a-4279-9168-db242095977e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="90ff85be-42f6-4a30-a658-5b1780202333" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fa2ddb0d-7474-4400-9737-62b941034651" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kay 
\entryTyp root 
\gENG this 
\gSPN este 
\e *kay 
\c N0 
\mp NeverForeshortened 
\ach cay 
\akh kay 
\acl cay 
\akl kay 
\ame kay 
\mp +FinalC 
\mcc *kay / ~_ [poss]</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="7cbbee8f-1f89-43e7-bfc0-a031a97b234e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wamra</AUni> -<AUni ws="qvm-x-acl">wamra</AUni> -<AUni ws="qvm-x-akh">wamra</AUni> -<AUni ws="qvm-x-akl">wamra</AUni> -<AUni ws="qvm-x-ame">wamra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wamra</AUni> -<AUni ws="qvm-x-acl">*wamra</AUni> -<AUni ws="qvm-x-akh">*wamra</AUni> -<AUni ws="qvm-x-akl">*wamra</AUni> -<AUni ws="qvm-x-ame">*wamra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.473" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="19fca2ae-fca1-4a68-8105-54ffb836fed9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wamra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="165269c3-1d48-499c-89ff-650179c2aae2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7a77af25-5685-48f5-b747-47882001d8c2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wamra 
\entryTyp root 
\gENG child 
\gSPN niño 
\e *wamra 
\c N0 
\ach wamra 
\akh wamra 
\acl wamra 
\akl wamra 
\ame wamra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="7cbdac04-abeb-450c-988a-8f54ef8c3800" ownerguid="3c602e0d-86f5-4b0a-8c5c-89f61df3cfa8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fast</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="702da3e4-8e47-4662-a5cc-0136259adf09" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7cbdd530-612f-409e-9783-0177ba8c5a8c" ownerguid="71cbefc3-e0a5-4b97-9672-fa0cb34c59e4"> -<ExampleWords> -<AUni ws="en">anniversary, banquet, baptism, birthday party, carousal, celebration, christening, closing ceremony, commemoration, confirmation, consecration, convention, dance, dedication, feast, festivity, fete, funeral, funfest, gala, game night, graduation, homecoming, inauguration, induction, initiation, launching, memorial, naming ceremony, opening, grand opening, parade, party, reception, recognition, reenactment, retirement, toast, trade fair, wake, wedding</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of ceremonies are there?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="7cc0e682-7a75-4947-af9f-0d512a057ae8" ownerguid="6c713245-57c0-43c1-95b6-b8b91063aa5c"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="c09cb158-4072-4e36-8139-92305b61d32c" t="o" /> -<objsur guid="d5960b48-e838-4323-bd74-a4dc95a6d77c" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="7cc6f309-a301-4fa9-953e-49a0064f631c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lushi</AUni> -<AUni ws="qvm-x-acl">lushi; lushe</AUni> -<AUni ws="qvm-x-akh">lushi</AUni> -<AUni ws="qvm-x-akl">lushi; lushe</AUni> -<AUni ws="qvm-x-ame">lushi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llushi</AUni> -<AUni ws="qvm-x-acl">*llushi</AUni> -<AUni ws="qvm-x-akh">*llushi</AUni> -<AUni ws="qvm-x-akl">*llushi</AUni> -<AUni ws="qvm-x-ame">*llushi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.235" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0023f7c8-6646-4fca-91b6-e7d772eabb68" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llushi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="81b73cd7-3b2d-4773-8e83-732db08860f5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="95b019dd-6c1e-43b2-a0af-edae14cf56d0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llushi 
\entryTyp root 
\gENG smear 
\gSPN ensuciar 
\e *llushi 
\c V2 
\mp +FinalI 
\ach lushi 
\akh lushi 
\acl lushi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lushe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lushi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lushe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lushi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7cc7ceb4-1ece-4a26-bfd8-0c51226c8e5c" ownerguid="dc177f3c-d0fd-4232-adf1-a77b339cdbb2"> -<ExampleWords> -<AUni ws="en">assembly hall, auditorium, center, hall, community center</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What kinds of buildings are used for meetings?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7cc7f06a-fac8-45fb-968b-8ebdd83b97a0" ownerguid="13df6ee2-4189-4faa-b54d-768588d03978"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">They hit <each other>.; We should help <one another>.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">each other, one another</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What pronouns express reciprocal reference?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7cc9a423-ea7f-411f-8817-4eaccdf360fd" ownerguid="cc542297-3128-4b48-b670-0b63903910d3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7cc9e085-4e90-4115-98b0-c6544152e78c" ownerguid="9904f8ef-fca6-4020-815d-14f3fb6eae0f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7cca2586-fc04-4481-a670-60d64ed45f3d" ownerguid="00e25183-b413-425e-b6a1-cba79632e3ea"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7ccad568-e6dd-4512-b314-c46bdfdcea31" ownerguid="9fc25175-3b4a-4248-bc7f-b86012ec584f"> -<ExampleWords> -<AUni ws="en">cook</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words are used for making charcoal?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7cccd906-601d-4b2b-8981-a315ba7310ff" ownerguid="3f1b8895-cd2c-4f80-9171-148a99536b61"> -<Form> -<AUni ws="qvm-x-ach">atsqui; atsquï</AUni> -<AUni ws="qvm-x-acl">atsquë; atsqui; atsque</AUni> -<AUni ws="qvm-x-akh">atski; atskï</AUni> -<AUni ws="qvm-x-akl">atskë; atski; atske</AUni> -<AUni ws="qvm-x-ame">atski; atskï</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="7cd016c1-a972-405c-a2f5-c19f3ddef7ba" ownerguid="d5a03a9e-11be-4a1a-973e-1bd82e25999b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">copy</AUni> -<AUni ws="es">copia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a584604e-aa2d-4d91-803b-9276879b59ca" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="7cd134ea-89c1-4a60-8992-dcac673bd263" ownerguid="05a85ca4-fceb-464f-9580-95990ef9c793"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/N1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">REL</AUni> -<AUni ws="es">REL</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="7cd2cca1-4b0d-4219-ab71-12fdd0be285a" ownerguid="e828986c-b6ce-489f-a93d-0a827a8b7e4c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Gen 14.7b Tsay quinraypami Amalec runacunata asulargan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="7cd5077b-20b8-4f14-b7b3-f7e2ced1997a" ownerguid="43b31821-3238-491f-aa7c-651e534d9c47"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">destine</AUni> -<AUni ws="es">destinar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d82d5b71-1dfe-4512-b7de-bc7bedb77434" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7cd7f1d7-eb44-47ad-8d91-c640f2cf059f" ownerguid="b7b26d35-9a0e-408d-b39a-aba28f9be3ba"> -<Form> -<AUni ws="qvm-x-ach">olïvu</AUni> -<AUni ws="qvm-x-acl">olïvu; olïvu; olïvo</AUni> -<AUni ws="qvm-x-akh">olïvu</AUni> -<AUni ws="qvm-x-akl">olïvu; olïvu; olïvo</AUni> -<AUni ws="qvm-x-ame">olïvu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="7cdb2eba-1a9e-4544-b5cf-448f309681b2" ownerguid="2355f1fb-810d-468e-9a3d-bd4b4ca1332b"> -<Form> -<AUni ws="qvm-x-ach">cuyti</AUni> -<AUni ws="qvm-x-acl">cuyti; cuyte</AUni> -<AUni ws="qvm-x-akh">kuyti</AUni> -<AUni ws="qvm-x-akl">kuyti; kuyte</AUni> -<AUni ws="qvm-x-ame">kuyti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="7cdfadd2-1885-414b-b93f-720eb705a771" ownerguid="3803a235-d25f-4e2d-bc02-08ccf1e37b94"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="7ce991fb-142b-4e85-a942-50746710f348"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsacma</AUni> -<AUni ws="qvm-x-acl">tsacma</AUni> -<AUni ws="qvm-x-akh">tsakma</AUni> -<AUni ws="qvm-x-akl">tsakma</AUni> -<AUni ws="qvm-x-ame">tsakma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chakma</AUni> -<AUni ws="qvm-x-acl">*chakma</AUni> -<AUni ws="qvm-x-akh">*chakma</AUni> -<AUni ws="qvm-x-akl">*chakma</AUni> -<AUni ws="qvm-x-ame">*chakma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.264" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9a827af8-055d-4cae-94b8-d595a1ce79b8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chakma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b62b9b74-49f7-42a0-ab5e-77aee6129b61" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="82846233-2d2a-4879-92db-27c4194f7193" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chakma 
\entryTyp root 
\gENG plow 
\gSPN barbechar con arado de pie 
\e *chakma 
\c V1 
\ach tsacma 
\akh tsakma 
\acl tsacma 
\akl tsakma 
\ame tsakma</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="7cec60cc-af71-4b6d-9c93-1ecf8f324b91"> -<Form> -<Str> -<Run ws="en">::</Run> -</Str> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="7cf13f55-3ff9-43cf-8cbf-c0a9450fca2a" ownerguid="4317e079-ae91-404e-baaa-ab8c97e0da7d"> -<Form> -<AUni ws="qvm-x-ach">abusïvu</AUni> -<AUni ws="qvm-x-acl">abusïvu; abusïvu; abusïvo</AUni> -<AUni ws="qvm-x-akh">abusïvu</AUni> -<AUni ws="qvm-x-akl">abusïvu; abusïvu; abusïvo</AUni> -<AUni ws="qvm-x-ame">abusïvu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="7cf4f041-38f3-4f45-8dd1-0c2641702518"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">malag</AUni> -<AUni ws="qvm-x-acl">malag</AUni> -<AUni ws="qvm-x-akh">malaq</AUni> -<AUni ws="qvm-x-akl">malaq</AUni> -<AUni ws="qvm-x-ame">malaq</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mallaq</AUni> -<AUni ws="qvm-x-acl">*mallaq</AUni> -<AUni ws="qvm-x-akh">*mallaq</AUni> -<AUni ws="qvm-x-akl">*mallaq</AUni> -<AUni ws="qvm-x-ame">*mallaq</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.285" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e879b38d-6580-4f3e-a26b-1be95db5e1fa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mallaq</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e363fc6f-65ec-4d2e-948b-e6dc231a1675" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="23412b34-922d-4570-a2ba-9afbb2e12958" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mallaq 
\entryTyp root 
\gENG 
\gSPN con.hambre 
\e *mallaq 
\c N0 
\mp +FinalC 
\ach malag 
\akh malaq 
\acl malag 
\akl malaq 
\ame malaq</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="7cf6312e-f9f0-49e8-ae60-7677fac86c3f" ownerguid="c0d903bf-6502-45dd-9dd8-cff7f022c696"> -<Abbreviation> -<AUni ws="en">8.1.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.559" /> -<DateModified val="2022-9-23 16:55:8.559" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to subtracting one number from another.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Subtract numbers</AUni> -</Name> -<Questions> -<objsur guid="46464918-879d-44d7-9a30-7ee3b61e3d49" t="o" /> -<objsur guid="4603a69d-8ef2-4bff-834f-4482effaf23e" t="o" /> -<objsur guid="a34c4588-ec1b-4d43-8cdd-2ee059bda97e" t="o" /> -<objsur guid="e8aeb8d1-3a78-4b51-bb82-3939b6487df3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="7cf74dda-a329-4046-9380-848d17d0def4" ownerguid="dd4d8f22-2c30-4e2e-a548-6f22752ba2b3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7cf7a256-7a17-43f7-acb1-9b737e5cc87e" ownerguid="1cb79293-d4f7-4990-9f50-3bb595744f61"> -<ExampleWords> -<AUni ws="en">soul, spirit, spiritual, psyche, psychological, psychology, internal makeup, inside, inward, conscious self, consciousness, ego, essence, humanity, id, self, subconscious, superego, unconscious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the immaterial part of a person?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7cf9cf21-c789-4a43-9b34-823d393ebfec" ownerguid="0e24efb5-6410-4331-b5c4-4681cc476873"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">can</AUni> -<AUni ws="es">lata</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a5fed54e-3f29-4111-b347-63b4385f6aad" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7cf9f657-6110-4ce6-9300-26d71b3ca4aa" ownerguid="67247ab3-7b3a-4035-a0d0-a05c8e615c71"> -<ExampleWords> -<AUni ws="en">made by hand, craft, crafted, craftsman, craftsmanship</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something made by hand?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="7cfc8b3c-ad67-4928-ae6a-74afd47ced89" ownerguid="c6c772af-7b6b-4393-b0da-5b4a329d3426"> -<Abbreviation> -<AUni ws="en">8.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.579" /> -<DateModified val="2022-9-23 16:55:8.579" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing a whole thing--all of something with no parts missing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>63 Whole, Unite, Part, Divide; 63A Whole</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Whole, complete</AUni> -</Name> -<Questions> -<objsur guid="22ab2e40-daa3-4bce-a058-8b9748650a70" t="o" /> -<objsur guid="773f2b54-126e-4e78-bfc0-6f9a8bf200f5" t="o" /> -<objsur guid="f6a28d56-cc77-4905-96ec-1719a271fb7b" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="aadefee4-ed14-4753-952e-e945f2972e37" t="o" /> -<objsur guid="1d34380d-61bf-4247-9145-ba318a14a97e" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="7cffba05-bace-49ce-8ab8-dffa963e7518" ownerguid="459c5844-f4e3-471d-98f9-7d1b347815e8"> -<Form> -<AUni ws="qvm-x-ach">bolsita</AUni> -<AUni ws="qvm-x-acl">bolsita</AUni> -<AUni ws="qvm-x-akh">bolsita</AUni> -<AUni ws="qvm-x-akl">bolsita</AUni> -<AUni ws="qvm-x-ame">bolsita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="7cffdb18-f3d9-4bd8-99fd-4215b98c5b94"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">se:ña</AUni> -<AUni ws="qvm-x-acl">se:ña</AUni> -<AUni ws="qvm-x-akh">se:ña</AUni> -<AUni ws="qvm-x-akl">se:ña</AUni> -<AUni ws="qvm-x-ame">se:ña</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+seña</AUni> -<AUni ws="qvm-x-acl">+seña</AUni> -<AUni ws="qvm-x-akh">+seña</AUni> -<AUni ws="qvm-x-akl">+seña</AUni> -<AUni ws="qvm-x-ame">+seña</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.500" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fc7f3a12-77a5-4273-adb2-da2cdaec18cd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+seña</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="10851688-0b67-4d3a-9fea-bfefaf630abf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="57403941-d82b-4420-ba7e-9b31985229f1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +seña 
\entryTyp root 
\gENG sign 
\gSPN seña 
\e +seña 
\c N0 
\ach se:ña 
\akh se:ña 
\acl se:ña 
\akl se:ña 
\ame se:ña</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="7d01dd08-5d06-425e-8120-a21e51cbefe7" ownerguid="65846491-830b-432a-9b69-ea9f0a84a560"> -<Form> -<AUni ws="qvm-x-ach">goli</AUni> -<AUni ws="qvm-x-acl">goli; gole</AUni> -<AUni ws="qvm-x-akh">qoli</AUni> -<AUni ws="qvm-x-akl">qoli; qole</AUni> -<AUni ws="qvm-x-ame">quli</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="7d041599-721d-470a-a8f8-f166fa302dc6" ownerguid="c40e9b00-548c-445a-8316-3d653364527b"> -<Form> -<AUni ws="qvm-x-ach">largu; largo</AUni> -<AUni ws="qvm-x-acl">largu; largu; largo</AUni> -<AUni ws="qvm-x-akh">largu; largo</AUni> -<AUni ws="qvm-x-akl">largu; largu; largo</AUni> -<AUni ws="qvm-x-ame">largu; largo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="7d07793f-c78f-4e3b-ae99-51f55cbcaec4" ownerguid="b794219a-c4f6-4d05-a8c2-17ff346976e3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="54094256-ddf9-40c4-ae5e-edcf0e42532e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="7d080d6d-c2c1-492c-91cf-6164f776a39d" ownerguid="e72edce6-6d03-454f-a2b0-fe5aaa632063"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">skit</AUni> -<AUni ws="es">drama</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7c355919-725a-404c-9083-1dddbf25bd98" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7d0fb43d-fc04-4401-9b01-5272a6a6e198" ownerguid="aec892f4-7a26-443a-b2fb-9f0eade74a94"> -<Form> -<AUni ws="qvm-x-ach">wayanay</AUni> -<AUni ws="qvm-x-acl">wayanay</AUni> -<AUni ws="qvm-x-akh">wayanay</AUni> -<AUni ws="qvm-x-akl">wayanay</AUni> -<AUni ws="qvm-x-ame">wayanay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="7d111356-e04e-4891-960c-2f35147eba82" ownerguid="5b7666bd-c6c1-45e7-aa2e-1799fcb16d97"> -<Abbreviation> -<AUni ws="en">9.7.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.731" /> -<DateModified val="2022-9-23 16:55:8.731" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the name of a thing. Many cultures give names to particular buildings, ships, airplanes, organizations, companies, schools, and other things. If your language has hundreds of names for some kind of thing, it is best to not try to list them all. But if there are a few important names for one kind of thing, set up a domain for them.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33I Name</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Name of a thing</AUni> -</Name> -<OcmCodes> -<Uni>553 Naming; 552 Names of Animals and Things</Uni> -</OcmCodes> -<Questions> -<objsur guid="bd60df76-2641-420e-b713-893b13269f36" t="o" /> -<objsur guid="75cafb31-c141-4afa-9fb5-c8d580ab04ac" t="o" /> -<objsur guid="cf0fbea4-38ff-4002-aa3d-464e23547b7f" t="o" /> -<objsur guid="bef60c3d-1724-4d6d-827b-d566d056f439" t="o" /> -<objsur guid="8024226b-925b-40ed-83c7-51e03649200a" t="o" /> -<objsur guid="a377fc98-d3fe-4c74-a667-6b4b22d10c94" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="5df53b87-7f59-4f5c-991e-5ae007b68fa9" t="o" /> -<objsur guid="4223d3ba-5560-4c30-b013-4e31fee36329" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="7d189c63-8094-46e9-8e0c-4e74252781a9" ownerguid="29f83ace-d0c4-49c3-b753-3866a64e87b4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="7d1a08a0-11e2-4bfa-a72b-54b0ef8c72ed" ownerguid="273ef9cc-651e-4fdb-8f65-39e117325c50"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="7d1f52aa-a865-4c5a-8e03-78166153d9ae"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">garatsa</AUni> -<AUni ws="qvm-x-acl">garatsa</AUni> -<AUni ws="qvm-x-akh">qaratsa</AUni> -<AUni ws="qvm-x-akl">qaratsa</AUni> -<AUni ws="qvm-x-ame">qaratsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qaracha</AUni> -<AUni ws="qvm-x-acl">*qaracha</AUni> -<AUni ws="qvm-x-akh">*qaracha</AUni> -<AUni ws="qvm-x-akl">*qaracha</AUni> -<AUni ws="qvm-x-ame">*qaracha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.102" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3812b590-5335-4c64-aaac-8b0470b1175e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qaracha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="27bb9e53-4625-4d0d-ae06-8354c010943f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7c2ce6a9-2ff7-4df1-81fc-5d45b5c2ebf4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qaracha 
\entryTyp root 
\gENG hide 
\gSPN piel 
\e *qaracha 
\c N0 
\ach garatsa 
\akh qaratsa 
\acl garatsa 
\akl qaratsa 
\ame qaratsa 
\mcc *qaracha / ~_ ADV2</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7d213e8e-c68a-4d83-a172-ead9e0c12815" ownerguid="36e8f1df-1798-4ae6-904d-600ca6eb4145"> -<ExampleWords> -<AUni ws="en">runaway, fugitive, escapee, refugee</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to someone who has escaped?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7d241814-ca1f-4e55-924d-5222ac3a6145" ownerguid="5e529363-6111-464f-bb6f-8d3a9f56da6f"> -<Form> -<AUni ws="qvm-x-ach">sïlla</AUni> -<AUni ws="qvm-x-acl">sïlla</AUni> -<AUni ws="qvm-x-akh">sïlla</AUni> -<AUni ws="qvm-x-akl">sïlla</AUni> -<AUni ws="qvm-x-ame">sïlla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="7d2443b6-1253-4345-9816-3ad34b736d7a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">camari</AUni> -<AUni ws="qvm-x-acl">camari; camare</AUni> -<AUni ws="qvm-x-akh">kamari</AUni> -<AUni ws="qvm-x-akl">kamari; kamare</AUni> -<AUni ws="qvm-x-ame">kamari</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kamari</AUni> -<AUni ws="qvm-x-acl">*kamari</AUni> -<AUni ws="qvm-x-akh">*kamari</AUni> -<AUni ws="qvm-x-akl">*kamari</AUni> -<AUni ws="qvm-x-ame">*kamari</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.912" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e2c4612f-1a69-422b-a85d-c3acb5c68b41" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kamari</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d500c90c-1331-46e4-a9e7-56fccf0a3c0e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0465dd32-fa49-4dc2-bc20-82bd5b77e55a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kamari 
\entryTyp root 
\gENG get.ready 
\gSPN alistar 
\e *kamari 
\c V1 
\mp +FinalI 
\ach camari 
\akh kamari 
\acl camari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl camare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kamari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kamare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kamari</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="7d26ed02-ed44-4956-98f0-1adf25844f4d" ownerguid="de917b61-5157-4309-b0b5-dfee703d61f3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">big.deal</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="729af403-1977-4ee5-97e4-f3263e2dd378" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoAffixAllomorph" guid="7d283361-5a96-443d-a27e-892fff7dade7" ownerguid="40a41fad-5317-436d-8c3f-e52650865c7f"> -<Form> -<AUni ws="qvm-x-ach">rcu</AUni> -<AUni ws="qvm-x-acl">rcu</AUni> -<AUni ws="qvm-x-akh">rku</AUni> -<AUni ws="qvm-x-akl">rku</AUni> -<AUni ws="qvm-x-ame">rku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7d286643-e5ac-4d1f-b6aa-0d6af2685bb5" ownerguid="fd33670e-ef16-4566-a62e-aa077e58407b"> -<ExampleWords> -<AUni ws="en">hum, monotone, steady noise</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a continuous sound?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7d2ac7e1-87be-4379-aabb-a7e61519ba1d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mata</AUni> -<AUni ws="qvm-x-acl">mata</AUni> -<AUni ws="qvm-x-akh">mata</AUni> -<AUni ws="qvm-x-akl">mata</AUni> -<AUni ws="qvm-x-ame">mata</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mata</AUni> -<AUni ws="qvm-x-acl">*mata</AUni> -<AUni ws="qvm-x-akh">*mata</AUni> -<AUni ws="qvm-x-akl">*mata</AUni> -<AUni ws="qvm-x-ame">*mata</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.356" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="36e8a2af-fe7b-40c4-97ed-9e5e9899b3d2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mata</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="125b28d9-8ae1-429d-b012-8cb499c7a161" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e2d019ae-d96c-47a0-a673-682094c24551" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mata 
\entryTyp root 
\gENG slice 
\gSPN rebanar 
\e *mata 
\c V2 
\ach mata 
\akh mata 
\acl mata 
\akl mata 
\ame mata</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7d2aec13-9588-46c9-9289-884875f633cb" ownerguid="3f535689-944a-4e9c-8f64-ec6395b7c8d7"> -<ExampleWords> -<AUni ws="en">slip, slide, glide, coast, skim, skate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving across a smooth or lubricated surface?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7d2b7fdf-c67f-424c-a64a-2f2e8e84a768" ownerguid="117d15f5-27ea-4ed5-973a-690e38c6e0ca"> -<Form> -<AUni ws="qvm-x-ach">jüya</AUni> -<AUni ws="qvm-x-acl">jüya</AUni> -<AUni ws="qvm-x-akh">jüya</AUni> -<AUni ws="qvm-x-akl">jüya</AUni> -<AUni ws="qvm-x-ame">hüya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StStyle" guid="7d2c80cd-af87-4d56-8337-cfd389b775bb" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="0" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="True" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Normal</Uni> -</Name> -<Next> -<objsur guid="7d2c80cd-af87-4d56-8337-cfd389b775bb" t="r" /> -</Next> -<Rules> -<Prop lineHeight="12000" lineHeightType="atLeast" lineHeightUnit="mpt" spaceAfter="6000"> -<WsStyles9999> -<WsProp forecolor="blue" ws="es"></WsProp> -<WsProp forecolor="ff6600" ws="qvm-x-ach"></WsProp> -<WsProp forecolor="008000" ws="qvm-x-acl"></WsProp> -<WsProp forecolor="3366ff" ws="qvm-x-akh"></WsProp> -<WsProp forecolor="800080" ws="qvm-x-akl"></WsProp> -<WsProp forecolor="magenta" ws="qvm-x-ame"></WsProp> -</WsStyles9999> -</Prop> -</Rules> -<Structure val="0" /> -<Type val="0" /> -<Usage> -<AUni ws="en">Normal is a parent style that all other paragraph styles are usually based on.</AUni> -</Usage> -<UserLevel val="0" /> -</rt> -<rt class="MoStemMsa" guid="7d31ada1-8fca-4d89-8a40-53e346dc7022" ownerguid="45ecdf38-a66d-4ed7-a47c-0757359db0c3"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7d396552-02b2-478c-a9f0-f01cda3e650f" ownerguid="07e97f87-68ca-4d18-9f86-a326e0400947"> -<ExampleWords> -<AUni ws="en">ruler, straightedge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What tools are used to draw a line?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7d39bbcd-be5b-439d-b1a6-7991a05816d6" ownerguid="69ad591c-0e9e-452c-aef7-4bde3b6c50cc"> -<Form> -<AUni ws="qvm-x-ach">junta; juntä</AUni> -<AUni ws="qvm-x-acl">junta; juntä</AUni> -<AUni ws="qvm-x-akh">junta; juntä</AUni> -<AUni ws="qvm-x-akl">junta; juntä</AUni> -<AUni ws="qvm-x-ame">junta; juntä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="7d3cb657-3299-4ce2-af1c-b139b33c4a71" ownerguid="e0dc68e0-5490-4c50-a18a-a58f0240c54c"> -<Form> -<AUni ws="qvm-x-ach">jauca</AUni> -<AUni ws="qvm-x-acl">jauca</AUni> -<AUni ws="qvm-x-akh">jawka</AUni> -<AUni ws="qvm-x-akl">jawka</AUni> -<AUni ws="qvm-x-ame">hawka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="7d46ca1c-d073-4416-9a7f-bafbc569cb9b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">garga</AUni> -<AUni ws="qvm-x-acl">garga</AUni> -<AUni ws="qvm-x-akh">qarqa</AUni> -<AUni ws="qvm-x-akl">qarqa</AUni> -<AUni ws="qvm-x-ame">qarqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qarqa</AUni> -<AUni ws="qvm-x-acl">*qarqa</AUni> -<AUni ws="qvm-x-akh">*qarqa</AUni> -<AUni ws="qvm-x-akl">*qarqa</AUni> -<AUni ws="qvm-x-ame">*qarqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.116" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6f41aa37-069b-4d0e-9ac0-b37442f815c1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qarqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="46d33e77-a6a6-47a9-9e01-e3a1573177a2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a64cb25a-ff44-4e59-aebd-efcaf827d9a9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qarqa 
\entryTyp root 
\gENG 
\gSPN 
\e *qarqa 
\c N0 
\ach garga 
\akh qarqa 
\acl garga 
\akl qarqa 
\ame qarqa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="7d472317-b5e8-4cae-a03f-913ecdaf4c29" ownerguid="ee446395-781b-4651-afef-cad78b71f843"> -<Abbreviation> -<AUni ws="en">1.6.1.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.994" /> -<DateModified val="2022-9-23 16:55:7.994" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to snakes.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Snake</AUni> -</Name> -<Questions> -<objsur guid="544bc8df-3ce0-49f4-9de8-ea4c05a61eae" t="o" /> -<objsur guid="922eb830-8fed-4c9b-a16d-274d0366c79a" t="o" /> -<objsur guid="39666b23-2ed8-4c2e-a820-4351816db46b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="7d472dd5-636d-4499-bf66-83cf23c0dbe1" ownerguid="444407f2-0c75-4bb9-a84c-cbd52d0fa9c9"> -<Abbreviation> -<AUni ws="en">2.6.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a child.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>9D Children</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Child</AUni> -</Name> -<OcmCodes> -<Uni>857 Childhood Activities; 858 Status of Children</Uni> -</OcmCodes> -<Questions> -<objsur guid="bbe41a41-6a05-416f-b80a-a8dc96380cbc" t="o" /> -<objsur guid="23a0cb53-289f-4b35-b8a4-dfaaeaf774aa" t="o" /> -<objsur guid="a0d3ad5c-3871-411c-8704-d4dab3a537ca" t="o" /> -<objsur guid="c55acf67-a2ee-420f-a74b-08236521358f" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="ca91e41a-81c3-4c96-87e6-f67477fcd686" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="7d4b8297-eedf-4fd8-b2e7-5b228fade126" ownerguid="0d38c343-9c51-47fe-a367-ffadfc92c507"> -<ExampleWords> -<AUni ws="en">younger, junior</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who is younger than someone else?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7d52043f-7f3f-46d4-a15f-e43d840f9b2c" ownerguid="c50af688-c627-4cdd-81b8-622a2ad1216c"> -<Form> -<AUni ws="qvm-x-ach">waranga</AUni> -<AUni ws="qvm-x-acl">waranga</AUni> -<AUni ws="qvm-x-akh">waranqa</AUni> -<AUni ws="qvm-x-akl">waranqa</AUni> -<AUni ws="qvm-x-ame">waranqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StTxtPara" guid="7d52f9ab-b348-4247-8f30-90ad17b0fbdc" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">rikakashqan</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="5ff0eea3-afb1-4a45-8d9f-d96142826d73" t="o" /> -</Segments> -</rt> -<rt class="CmSemanticDomain" guid="7d54d3dd-5fb2-4640-9bcf-c234696af894" ownerguid="8e11dd10-459b-4fb3-b876-7d80ec5f8a4d"> -<Abbreviation> -<AUni ws="en">4.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.235" /> -<DateModified val="2022-9-23 16:55:8.235" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being honest--words describing someone who does not cheat, steal, or break the law.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Honest</AUni> -</Name> -<Questions> -<objsur guid="b5a56f7d-8d68-4114-a523-3569466f387d" t="o" /> -<objsur guid="1ce9d6e9-ff4f-492b-a6f1-334b364968db" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="5658ae3d-ea15-44db-bae4-47df792da12e" t="o" /> -<objsur guid="eea7c79b-6150-4aba-8105-a94b7e6aeab7" t="o" /> -<objsur guid="99ee1558-34b2-4a1b-bfd2-eb4ccbfe7728" t="o" /> -<objsur guid="81855f47-aa24-435d-a123-7dfe61c80702" t="o" /> -<objsur guid="a730d0b4-b6db-45ac-bf6e-cefc96ae3fbb" t="o" /> -<objsur guid="9bf21458-0acc-4d8d-ba9a-7b9fb6b8ee0b" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="7d557503-3b58-46bf-ab6c-e3b6cded3fe0" ownerguid="28885090-a609-4e87-8333-a46af61ed256"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="7d577516-136f-4b24-b390-c2652d138710" ownerguid="520f506a-1eba-40b1-9a77-1dcce67cbf65"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ember</AUni> -<AUni ws="es">ascua</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="666093c8-f651-4c68-b660-05b016836ef8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7d5867c0-319f-4ccf-9564-4b6a80b51e0c" ownerguid="2855cda6-a031-46aa-bf3f-718d94374d46"> -<ExampleWords> -<AUni ws="en">protester, demonstrator, dissident, marcher, objector</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to someone who protests?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7d586fbc-c2ab-49c3-abaf-1dffe2fd4399" ownerguid="080bf07b-e58b-4a75-bb97-84d980a143f0"> -<ExampleWords> -<AUni ws="en">shaped, in the shape of, in the form of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to having a particular shape?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7d59c735-2cfd-4ba9-94ba-2ab1bc6c7bb8" ownerguid="e67f4c6c-1636-4a04-a14a-8dfb1f375003"> -<Form> -<AUni ws="qvm-x-ach">partu; parto</AUni> -<AUni ws="qvm-x-acl">partu; partu; parto</AUni> -<AUni ws="qvm-x-akh">partu; parto</AUni> -<AUni ws="qvm-x-akl">partu; partu; parto</AUni> -<AUni ws="qvm-x-ame">partu; parto</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7d5c4dff-952d-4e2f-b751-c266e43da80f" ownerguid="14954a0f-5c8a-4680-90b0-53398bd3a2a7"> -<ExampleWords> -<AUni ws="en">not known, unknown, undetected, undiscovered, unexposed, unmarked, unseen</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something or someone that is not known by anyone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7d5ca6f9-071f-4f6d-af50-716440682926" ownerguid="b035dcf9-1dd0-4fb3-bd04-7c8945e92cdf"> -<ExampleWords> -<AUni ws="en">put in back, place in back, put behind, place in the rear</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to putting something in back?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7d5d9c59-2c7a-46f0-a457-a57d4b762562" ownerguid="1798391b-b843-4b16-bcf6-5cbdfece91c3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stain</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="11329ba5-a0d0-4efb-993c-aba5dc778120" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7d61becb-7d19-47b3-b2d4-3501c0c539ea" ownerguid="1017cbc3-0dfb-4930-9881-28f96784035c"> -<ExampleWords> -<AUni ws="en">zip, zoom, whiz, vroom, chop chop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What ideophones are used of moving quickly?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7d61f2e7-3298-4e1f-ac68-08a41ab09a7a" ownerguid="3296ecd0-8c71-4de0-9d66-2156bc32712f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">come</AUni> -<AUni ws="es">venir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d5ee69c1-5d9d-4818-9c8c-413e3e02f841" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="7d629c80-e5c2-409f-a592-39c56e9ace6d" ownerguid="f595deab-1838-4ddb-9ebe-55fb3007b309"> -<Abbreviation> -<AUni ws="en">4.8.3.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.286" /> -<DateModified val="2022-9-23 16:55:8.286" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the navy.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Navy</AUni> -</Name> -<OcmCodes> -<Uni>706 Navy</Uni> -</OcmCodes> -<Questions> -<objsur guid="938ca464-b329-4492-979e-44812dabfbc9" t="o" /> -<objsur guid="03d8c691-63e8-42aa-b1ca-0fac45ad78b5" t="o" /> -<objsur guid="ba115d02-28e5-414e-b82b-4e5e672ce691" t="o" /> -<objsur guid="7f08df61-0cde-4bde-a30d-178f1bea076a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="7d62ac28-e0bb-4493-aaeb-1efddaecf2bf" ownerguid="95466053-500c-4505-8bce-f085aa4664a3"> -<Form> -<AUni ws="qvm-x-ach">fötu</AUni> -<AUni ws="qvm-x-acl">fötu; fötu; föto</AUni> -<AUni ws="qvm-x-akh">fötu</AUni> -<AUni ws="qvm-x-akl">fötu; fötu; föto</AUni> -<AUni ws="qvm-x-ame">fötu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="7d640fdb-6536-43a5-9089-c600d63f70be" ownerguid="5cb7a702-6c8d-4bc7-b4a4-8eab7fe68ede"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="cd0ae771-6359-4d5c-965b-50ff9791c916" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="5d26c1b7-0cf4-433d-a4ca-19931814ec40" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7d6c8dd9-4c23-4d72-b89a-0a2c9850364e" ownerguid="84eb31d3-b932-4b3b-b945-85884ea856c7"> -<ExampleWords> -<AUni ws="en">unlikely, improbable, doubtful, remote</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words indicate that something is possible but not very probable?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7d6ceca0-b1e2-4993-9888-ab4305c0e811"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">togpi</AUni> -<AUni ws="qvm-x-acl">togpi; togpi; togpe</AUni> -<AUni ws="qvm-x-akh">toqpi</AUni> -<AUni ws="qvm-x-akl">toqpi; toqpi; toqpe</AUni> -<AUni ws="qvm-x-ame">tuqpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tuqpi.n</AUni> -<AUni ws="qvm-x-acl">*tuqpi.n</AUni> -<AUni ws="qvm-x-akh">*tuqpi.n</AUni> -<AUni ws="qvm-x-akl">*tuqpi.n</AUni> -<AUni ws="qvm-x-ame">*tuqpi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.7" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1be2e747-15b5-4fce-afcc-9d7faa515db5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tuqpi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8dccccb7-4fbb-4504-b0da-40c998572a67" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b472982f-508a-4487-b961-c2edacbb397b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tuqpi.n 
\entryTyp root 
\gENG 
\gSPN desordenar 
\e *tuqpi.n 
\c N0 
\mp +FinalI 
\ach togpi 
\akh toqpi 
\acl togpi / _# 
\acl togpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl togpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl toqpi / _# 
\akl toqpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl toqpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tuqpi</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="7d6d4776-71f6-4c31-b03a-97a0bcdd28dc"> -<Form> -<Str> -<Run ws="en">ADVDS</Run> -</Str> -</Form> -</rt> -<rt class="WfiMorphBundle" guid="7d6df0f4-f0a5-4725-aeb1-7ba8b491ebb6" ownerguid="d405a3d4-b41e-4c60-8841-321e5b37759d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">gam</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">gam</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qam</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qam</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qam</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e50f3d14-61be-4feb-8ecd-34f183264859" t="r" /> -</Morph> -<Msa> -<objsur guid="b56d9572-6ab1-4223-8377-b7274c562325" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="7d6e84f0-20ab-45b0-9f30-696c2fc2b72e" ownerguid="43cb3488-711b-4d9d-9d0e-03d0c1f6eb8b"> -<ExampleWords> -<AUni ws="en">shameless, brazen, callous, shameless, unabashed, unashamed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to not feeling ashamed?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7d700bce-4842-471e-a4bf-5dbe0e1bebad" ownerguid="fb003309-1d75-458e-aa57-0fa41ec866a8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">high.school</AUni> -<AUni ws="es">colegio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="502da427-9619-4d5f-9e2c-719c73174c87" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="7d761bd8-156f-4c2d-972f-f1a56cc38854" ownerguid="ded8b37a-74e4-4a5e-9f7b-632505cf0e93"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 62.3 Tagucaycag guenchatanogpis cumarcaycämanqui.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="7d78134a-7dfc-446b-bcc2-59f6528693e1" ownerguid="67e57493-d286-4271-b877-f63f962dddf1"> -<ExampleWords> -<AUni ws="en">acre, hectare, square (inch, foot, yard, mile, meter, kilometer)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to a unit of measure of area?</AUni> -</Question> -</rt> -<rt class="StText" guid="7d78db90-a316-4649-84b0-32db353e8633" ownerguid="5086cebf-cabc-4b9a-8585-d65826011e94"> -<DateModified val="2022-10-10 21:52:47.196" /> -<Paragraphs> -<objsur guid="bc33ef15-be3a-41fa-a767-708f24c1cd8a" t="o" /> -<objsur guid="18a1e0e4-c4be-401d-9fe5-39f92714d4cd" t="o" /> -<objsur guid="de70f278-66f4-49b6-9526-fffa3c4d8cd0" t="o" /> -</Paragraphs> -<RightToLeft val="False" /> -</rt> -<rt class="MoStemAllomorph" guid="7d794112-cf1f-4ef3-8eff-b5fa2868c1e7" ownerguid="b3052512-54b2-4b7b-a694-9e2f617e3481"> -<Form> -<AUni ws="qvm-x-ach">sienti</AUni> -<AUni ws="qvm-x-acl">sienti; siente</AUni> -<AUni ws="qvm-x-akh">sienti</AUni> -<AUni ws="qvm-x-akl">sienti; siente</AUni> -<AUni ws="qvm-x-ame">sienti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="7d7bb92f-5baf-418e-8ad3-92cfdc3a8d41"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tagra; tagra:</AUni> -<AUni ws="qvm-x-acl">tagra; tagra:</AUni> -<AUni ws="qvm-x-akh">taqra; taqra:</AUni> -<AUni ws="qvm-x-akl">taqra; taqra:</AUni> -<AUni ws="qvm-x-ame">taqra; taqra:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*taqra:</AUni> -<AUni ws="qvm-x-acl">*taqra:</AUni> -<AUni ws="qvm-x-akh">*taqra:</AUni> -<AUni ws="qvm-x-akl">*taqra:</AUni> -<AUni ws="qvm-x-ame">*taqra:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.823" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b35572c3-8604-445a-a209-7b4b70a48a4e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*taqra:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="307b69b0-c808-4356-a92b-9637e9139d8e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="440cd9c8-e4b2-4352-abcd-d754f138dd56" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *taqra: 
\entryTyp root 
\gENG 
\gSPN 
\e *taqra: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach tagra foreshortened 
\ach tagra: 
\akh taqra foreshortened 
\akh taqra: 
\acl tagra foreshortened 
\acl tagra: 
\akl taqra foreshortened 
\akl taqra: 
\ame taqra foreshortened 
\ame taqra: 
\i NAM 3.2 ...mayapäcunquipag...cärrucuna tagrarayla aywarcaycagta.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="7d7bc686-faf5-484b-8519-b2529ac581bf" ownerguid="36a2c83f-f7aa-41b0-9b17-f801f3720e4f"> -<Abbreviation> -<AUni ws="en">6.2.1.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.382" /> -<DateModified val="2022-9-23 16:55:8.382" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to growing rice.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Growing rice</AUni> -</Name> -<Questions> -<objsur guid="ca006a12-95d6-40a4-94fb-435468bba899" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="7d7c0494-b16a-4c74-83c0-8a2e3617f882" ownerguid="1321edb9-3abe-4b08-ad44-3d81788170be"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 9.31 Tsauraga röpäpis melanäcamangachari.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="7d7c81d5-9713-423f-b12e-8e11e451f0a7" ownerguid="0b7b9a1c-588b-475a-ac14-00f0999cbfe9"> -<Abbreviation> -<AUni ws="en">4.8.4.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.286" /> -<DateModified val="2022-9-23 16:55:8.286" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to forgiving someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>40B Forgiveness</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Forgive</AUni> -</Name> -<Questions> -<objsur guid="7be20174-75fb-44d2-9e9d-a712cd2d2aec" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="7d7e0f0b-b4e7-4267-9303-296e9471e2ef" ownerguid="15df5c19-204d-4097-accc-179b20cf5280"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="4f80c28d-b592-45f1-9734-21f139d06aab" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">goat</AUni> -<AUni ws="es">chiva</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="afe19163-7cf1-4796-bd99-646d884d100f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7d7eb2e0-bf69-4cb6-b3e5-87d378776fa5" ownerguid="4275df2e-d4f6-461a-9279-39e0712dc082"> -<ExampleWords> -<AUni ws="en">look (good/bad), be (dark/young) in appearance, (good/bad) looking</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that something looks a particular way?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7d8084d8-98db-407b-8ce2-f57522f7f362" ownerguid="f234e40b-4277-4970-872f-0654f19fdced"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="7d80bcca-a0fe-445e-bb8f-03fdf49b3609" ownerguid="aac92bf0-55c7-470c-80ed-b57afcd03792"> -<Form> -<AUni ws="qvm-x-ach">vestïdu</AUni> -<AUni ws="qvm-x-acl">vestïdu; vestïdu; vestïdo</AUni> -<AUni ws="qvm-x-akh">vestïdu</AUni> -<AUni ws="qvm-x-akl">vestïdu; vestïdu; vestïdo</AUni> -<AUni ws="qvm-x-ame">vestïdu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="7d8898d6-6296-4d4d-b8dd-2f48c49f9e98" ownerguid="73d580ac-dc89-474c-8048-3453ebdda807"> -<Abbreviation> -<AUni ws="en">8.2.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.589" /> -<DateModified val="2022-9-23 16:55:8.589" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that express the idea that something is high.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>81B High, Low, Deep</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">High</AUni> -</Name> -<Questions> -<objsur guid="690cf52c-ba30-4d62-a46f-98d20076a2c3" t="o" /> -<objsur guid="c8b7289d-49b4-4792-9eb6-a4f00ee9d3f8" t="o" /> -<objsur guid="b22216d8-4352-49a7-80b3-f6e9e5287b44" t="o" /> -<objsur guid="6231969c-eaba-4c1d-ae98-d184dbb8b7ec" t="o" /> -<objsur guid="0156d8a5-3a3f-4809-a986-6304ed9bd2c1" t="o" /> -<objsur guid="c396bc57-0ca2-4531-ae40-72ade36c2328" t="o" /> -<objsur guid="af4e6524-b803-413b-ba8c-3e9a9eb5077a" t="o" /> -<objsur guid="e424b3eb-b291-4ef2-bdd6-b047f7b3caf9" t="o" /> -<objsur guid="777bf306-206c-4c32-8cbf-f90681247b1f" t="o" /> -<objsur guid="5dfa68b9-93db-4525-bfeb-030760fc70df" t="o" /> -<objsur guid="e7809139-a6fa-4813-ac79-188aee1ff003" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="9d6cbe74-93d6-41fb-b7e2-cc30adb28187" t="r" /> -<objsur guid="b844d2f8-d3ef-4605-b038-8bc0a2cff0af" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="7d892177-c215-4cc8-b247-b354a311ea56" ownerguid="d603df77-080f-4d08-aa5f-dfd75afb576b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="fee3c2c9-f14f-4d61-a069-f7f7c5e5df4f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="7d8bf92d-c47c-4e9d-b273-944dc0187175" ownerguid="8252dad9-1a9d-4ba2-bcde-204a1032a566"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="079db17b-4c5d-407d-a369-54e216603792" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="d1a7361f-4753-40d4-8f5e-fc92f8befaed" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" ownerguid="8403401a-498b-4e78-997e-a450a11d4c5d"> -<Form> -<AUni ws="qvm-x-ach">tsu</AUni> -<AUni ws="qvm-x-acl">tsu; tsu; tso</AUni> -<AUni ws="qvm-x-akh">tsu</AUni> -<AUni ws="qvm-x-akl">tsu; tsu; tso</AUni> -<AUni ws="qvm-x-ame">tsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e1-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7d8e033c-31ed-484d-a84f-cedb44103676" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<ExampleWords> -<AUni ws="en">huge, enormous, massive, colossal, great, giant, gigantic, great big, be a whopper, be quite a size, astronomical, elephantine, mammoth, monstrous, monumental, prodigious, stupendous, tremendous, vast</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is very big?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="7d8e7047-8de6-43a4-a0b5-5e69076a1f3c" ownerguid="e22aa72d-8119-410c-871e-cf23ff2aa36e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ictsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ictsu; ictso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">iktsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">iktsu; iktso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">iktsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="50c7cedb-e48d-4e40-b667-882924600f9d" t="r" /> -</Morph> -<Msa> -<objsur guid="9e409988-4e1d-45fa-8176-595e955af9d4" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="7d8f3442-8298-4a59-b5b0-4a6616bc70d4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guencha</AUni> -<AUni ws="qvm-x-acl">guencha</AUni> -<AUni ws="qvm-x-akh">qencha</AUni> -<AUni ws="qvm-x-akl">qencha</AUni> -<AUni ws="qvm-x-ame">qincha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qintra.v</AUni> -<AUni ws="qvm-x-acl">*qintra.v</AUni> -<AUni ws="qvm-x-akh">*qintra.v</AUni> -<AUni ws="qvm-x-akl">*qintra.v</AUni> -<AUni ws="qvm-x-ame">*qintra.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.193" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c500022f-35bc-4baa-940a-adf0c8ef58f1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qintra.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="41b94f3b-bdef-438d-ab3f-21e69f2fa86b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="58f20966-efab-4ec9-8934-8c6218a8d123" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qintra.v 
\entryTyp root 
\gENG to.corral 
\gSPN cercar 
\e *qintra.v 
\c V2 
\ach guencha 
\akh qencha 
\acl guencha 
\akl qencha 
\ame qincha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7d90fb34-e003-4435-83bb-1e3953b3eb36" ownerguid="9a7604b4-d42f-44b7-9aef-47847dc93f0b"> -<ExampleWords> -<AUni ws="en">suffer, pay for, pay the penalty for, count the cost, cost someone dearly, stew in your own juice, know to your cost, find out to your cost, at a cost to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to suffering because of something you have done?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7d91c78d-7d8a-489a-861b-45f523787f40"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">asaltanti; asaltante</AUni> -<AUni ws="qvm-x-acl">asaltanti; asaltanti; asaltante</AUni> -<AUni ws="qvm-x-akh">asaltanti; asaltante</AUni> -<AUni ws="qvm-x-akl">asaltanti; asaltanti; asaltante</AUni> -<AUni ws="qvm-x-ame">asaltanti; asaltante</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+asaltante</AUni> -<AUni ws="qvm-x-acl">+asaltante</AUni> -<AUni ws="qvm-x-akh">+asaltante</AUni> -<AUni ws="qvm-x-akl">+asaltante</AUni> -<AUni ws="qvm-x-ame">+asaltante</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.840" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3d3d2701-e924-4032-9628-76cacd844db0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+asaltante</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="06521b8e-554f-4dea-a1e8-57ceea4826ef" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="869e428e-06ce-4638-abb3-322704b95929" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +asaltante 
\entryTyp root 
\gENG 
\gSPN 
\e +asaltante 
\c N0 
\mp +FinalI 
\ach asaltanti / ~_# 
\ach asaltante / _# 
\akh asaltanti / ~_# 
\akh asaltante / _# 
\acl asaltanti / ~_# 
\acl asaltanti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl asaltante +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl asaltanti / ~_# 
\akl asaltanti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl asaltante +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame asaltanti / ~_# 
\ame asaltante / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7d94cc8e-109b-4450-b6f9-6e970f7d74a0" ownerguid="73d580ac-dc89-474c-8048-3453ebdda807"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The road <stretched> on for miles.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">extend, stretch, go on, continue, spread</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that something (like an area or road) continues for some distance?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7d95aa60-a401-474a-982c-08508b2a3d71" ownerguid="67d7ac91-96a3-4979-b55b-101280d95144"> -<Form> -<AUni ws="qvm-x-ach">guenru</AUni> -<AUni ws="qvm-x-acl">guenru; guenro</AUni> -<AUni ws="qvm-x-akh">qenru</AUni> -<AUni ws="qvm-x-akl">qenru; qenro</AUni> -<AUni ws="qvm-x-ame">qinru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7d98cd0a-43b7-4493-b372-6449016dae91" ownerguid="45b7dcce-21d5-4738-a64d-e8b0be8a1824"> -<ExampleWords> -<AUni ws="en">asymmetrical, irregular, uneven, unbalanced, lopsided</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is not symmetrical?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7d9aad89-daf4-42b3-9495-1c64d90b075a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">levanta</AUni> -<AUni ws="qvm-x-acl">levanta</AUni> -<AUni ws="qvm-x-akh">levanta</AUni> -<AUni ws="qvm-x-akl">levanta</AUni> -<AUni ws="qvm-x-ame">levanta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+levantar</AUni> -<AUni ws="qvm-x-acl">+levantar</AUni> -<AUni ws="qvm-x-akh">+levantar</AUni> -<AUni ws="qvm-x-akl">+levantar</AUni> -<AUni ws="qvm-x-ame">+levantar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.84" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="83b7ef15-1cff-4830-b7ca-22998ac75416" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+levantar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="df07b355-d6c3-483f-9e5a-0c9b43c4ede1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b88ec50e-f199-4716-90cc-fd3de0318576" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +levantar 
\entryTyp root 
\gENG 
\gSPN levantar 
\e +levantar 
\c V2 
\ach levanta 
\akh levanta 
\acl levanta 
\akl levanta 
\ame levanta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="7d9af2fc-ebd4-4ec9-91f9-da752b344607"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">montuy</AUni> -<AUni ws="qvm-x-acl">montuy</AUni> -<AUni ws="qvm-x-akh">montuy</AUni> -<AUni ws="qvm-x-akl">montuy</AUni> -<AUni ws="qvm-x-ame">montuy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+monto</AUni> -<AUni ws="qvm-x-acl">+monto</AUni> -<AUni ws="qvm-x-akh">+monto</AUni> -<AUni ws="qvm-x-akl">+monto</AUni> -<AUni ws="qvm-x-ame">+monto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.477" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="628b1fe6-771e-4a35-acd4-e54769de3c41" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+monto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="80687b49-b6c9-451f-a79c-7f1c4b0e3562" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3031f652-16a7-4b1d-bec1-851d04482a0b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +monto 
\entryTyp root 
\gENG amount 
\gSPN 
\e +monto 
\c N0 
\mp +FinalC 
\ach montuy 
\akh montuy 
\acl montuy 
\akl montuy 
\ame montuy 
\i Num 11.32 Walcalata shuntagcunapis chunca montuytami shuntargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="7d9e6561-46ea-4a0e-af3e-41e094b363ae" ownerguid="8dadf36f-cf98-4a46-b26b-98a3882b7a13"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">elbow</AUni> -<AUni ws="es">codo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a5812ea3-9546-4771-9b15-9314ccab057e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="7d9f48f5-aba3-486f-b49d-cd2cb0ac03f8" ownerguid="af5bcf27-56e2-4072-b321-30a31b58af78"> -<Abbreviation> -<AUni ws="en">6.2.1.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.383" /> -<DateModified val="2022-9-23 16:55:8.383" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to growing grapes.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Growing grapes</AUni> -</Name> -<Questions> -<objsur guid="09b00f2d-ade9-46ee-a265-43c2507292ff" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="7da14bce-78f9-4b8b-9a6d-aa5f0dabe2a8" ownerguid="02d404d7-f3d7-492c-92a0-c6c9ff1a1908"> -<ExampleWords> -<AUni ws="en">breakfast, lunch, supper, brunch, mid afternoon snack, midnight snack, tea, luncheon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a meal eaten at a particular time of day?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7da408c5-a085-4b6c-8f57-c9d4720a7f18" ownerguid="9ea6cb48-9a4d-4259-9f33-b29f2309c1f6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="7da5872c-527d-4ca1-a704-87665a230bff" ownerguid="e8a70fbc-2b48-46cc-b6cc-b601882c463b"> -<Form> -<AUni ws="qvm-x-ach">guepa</AUni> -<AUni ws="qvm-x-acl">guepa</AUni> -<AUni ws="qvm-x-akh">qepa</AUni> -<AUni ws="qvm-x-akl">qepa</AUni> -<AUni ws="qvm-x-ame">qipa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7da5e353-c603-48f7-b7c0-2fe213bb4a44" ownerguid="bfe8902a-32a7-4092-93b2-9dcf3dce205f"> -<ExampleWords> -<AUni ws="en">upset someone, agitate, churn me up inside, discomfit, discompose, disconcert, distract, distress, disturb, hurt, hurt someone's feelings, perturb, pressure (v), rattle, stir, unsettle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to causing someone to feel upset?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7da63927-b83f-4c91-a4ba-ae89860f64a0" ownerguid="38473463-4b92-4681-8fd0-0aca0342e88a"> -<ExampleWords> -<AUni ws="en">millipede</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to millipedes--animals with a body with many segments and four legs on each segment (phylum Arthropoda, class Diplopoda)?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="7da79667-9b71-4cff-85bd-975906f910a7" ownerguid="58c3a412-128b-4a95-9fe5-8433c4df2a8c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ECC 10.10 Ächa laguyaptin mana afilarga mas calpawanragmi mutuntsi.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="7da8bbf0-483c-49b3-9b14-b611d143fe91" ownerguid="0623a5c0-d0dd-4c0c-8f61-fe7192aa08b0"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="7dae2974-bf01-4691-9e14-2093e646d6a8" ownerguid="f2248909-4b44-44c8-9f80-6b397b5b0522"> -<Form> -<AUni ws="qvm-x-ach">trösu</AUni> -<AUni ws="qvm-x-acl">trösu; trösu; tröso</AUni> -<AUni ws="qvm-x-akh">trösu</AUni> -<AUni ws="qvm-x-akl">trösu; trösu; tröso</AUni> -<AUni ws="qvm-x-ame">trösu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7daee950-f881-49d8-8d2a-a5586910a5ed" ownerguid="ffa13b7d-5eaa-43be-8518-51d9aa08f321"> -<ExampleWords> -<AUni ws="en">singly, one by one, two by two, three by three, by ones, by twos, by threes, in pairs, in threes, one at a time, two at a time, three at a time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words indicate that something is done in groups of a certain number?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7db43df0-6bce-41e5-863b-dc829935ca7c" ownerguid="26b97047-edb1-44e9-8c7b-463de9cfbe78"> -<ExampleWords> -<AUni ws="en">wool</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What are the parts of a sheep?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="7db5a75b-80de-4b70-8ad2-93ff53f91755" ownerguid="24af8838-b9c2-43d9-b4b6-4ce8286544e7"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">DAN 3.27 Yargamuptinmi paycuna cagman nación mandäshegnincuna, prefectucuna, gobernadorcuna y yätsicogcuna ricananpag juntacargan.</Run> -</AStr> -</Example> -</rt> -<rt class="PhBdryMarker" guid="7db635e0-9ef3-4167-a594-12551ed89aaa" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="be8bd354-ea5e-11de-8235-0013722f8dec" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">Word boundary</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">#</AUni> -<AUni ws="qvm-x-ach">#</AUni> -</Name> -</rt> -<rt class="CmDomainQ" guid="7db69f94-7271-4b70-9d6f-64a5bd1e6d09" ownerguid="5a39edae-1ace-4889-b636-1dfd2a1bcc3c"> -<ExampleWords> -<AUni ws="en">take out, get something out, remove, extract, extricate, eliminate, bring out, clear something out, clean out, withdraw, fish out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to taking something out of something else?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7dbc96e8-51a7-4b67-87a5-b4e3880c063c" ownerguid="3d0243da-2738-4254-ba9c-745e0d941af8"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="7dbd7f43-4291-47f8-a392-6fdf3c98d522" ownerguid="4c862416-f7c4-4a3c-82ac-fe81e1efb879"> -<Abbreviation> -<AUni ws="en">2.1.8.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the male reproductive organs.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Male organs</AUni> -</Name> -<Questions> -<objsur guid="3d818829-c181-451f-9c41-4a2c219a2aba" t="o" /> -<objsur guid="ba0a35cc-9157-4c5c-acb6-3dc1d6a6cb3d" t="o" /> -<objsur guid="de68df2e-bebb-4911-b90b-f763b4e7b814" t="o" /> -<objsur guid="05b34cb0-395a-49a4-81cb-0884c9331212" t="o" /> -<objsur guid="e80d952c-2d9b-43de-aaa9-8de32a2f9efa" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="7dbff6bb-ba05-4ab4-9e83-aa539faf70b7" ownerguid="c09eedd3-c4e1-4cf9-b6d1-a01624c6426a"> -<ExampleWords> -<AUni ws="en">dust cloth, rag, eraser, rubber</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What tools are used?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7dc637be-43fa-4533-8e36-cade2d8b022b" ownerguid="729b249e-aa55-4c0c-bf0e-0034e71e7e84"> -<Form> -<AUni ws="qvm-x-ach">imay</AUni> -<AUni ws="qvm-x-acl">imay</AUni> -<AUni ws="qvm-x-akh">imay</AUni> -<AUni ws="qvm-x-akl">imay</AUni> -<AUni ws="qvm-x-ame">imay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="7dcfe525-ce0f-4945-827b-5acf6bdb895e" ownerguid="5217e73d-ccd3-418e-a0bd-50c70f3bb20c"> -<Form> -<AUni ws="qvm-x-ach">cebölla</AUni> -<AUni ws="qvm-x-acl">cebölla</AUni> -<AUni ws="qvm-x-akh">cebölla</AUni> -<AUni ws="qvm-x-akl">cebölla</AUni> -<AUni ws="qvm-x-ame">cebölla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="7dd062e8-fed1-4c39-930f-c0d69b8c2df2" ownerguid="913182a9-5615-4f96-a50e-7aadd51f18e3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="1c1ab146-3f58-4cae-96b8-ca8e7fe17a9a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="PunctuationForm" guid="7dd1a9aa-5fd7-42ef-9d2b-0cd0070d47a2"> -<Form> -<Str> -<Run ws="qvm-x-akh">.\</Run> -</Str> -</Form> -</rt> -<rt class="MoStemMsa" guid="7dd93fa3-9abf-4a37-b50b-2da51d8f4811" ownerguid="9c2d1f1d-81d4-4776-9be7-9fc5b920ca14"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7dd9db06-bbb3-433f-b733-67d849fa69dc" ownerguid="ec134919-c362-49eb-bb7e-7752098698d9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="Segment" guid="7ddb8759-c9ff-45ae-a50a-59df4063b0e3" ownerguid="9a4116ea-854f-4905-b59d-a93e7540a437"> -<Analyses> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="fa7aeb71-200a-4a5d-9436-13faa1972fea" t="r" /> -<objsur guid="25651c34-3e31-419d-86b5-cda6907f0a4f" t="r" /> -<objsur guid="7beb2bdf-1e77-4955-99ec-39f893293020" t="r" /> -<objsur guid="a85a5670-81ba-47b9-8443-95e8be60ebec" t="r" /> -<objsur guid="cc5592b2-d053-4f21-868f-e47798949ce1" t="r" /> -<objsur guid="4fccec2d-58a4-466f-a087-a79d6bf13b57" t="r" /> -<objsur guid="b6f85872-82e2-4115-b10c-9d4e33accf3d" t="r" /> -<objsur guid="4bd33b73-ca58-4fbb-9575-41275fd181b3" t="r" /> -<objsur guid="afffb5bb-d332-4ad0-b30c-3ea9206a1815" t="r" /> -<objsur guid="d3da10af-d6fb-4b58-9133-b9d5c3ec090c" t="r" /> -</Analyses> -<BeginOffset val="20" /> -</rt> -<rt class="CmSemanticDomain" guid="7ddbd56f-e458-4a72-a9bc-9b7db6bde75a" ownerguid="7558d071-a885-447b-9aa2-604c29669492"> -<Abbreviation> -<AUni ws="en">4.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.256" /> -<DateModified val="2022-9-23 16:55:8.256" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the ruler of a country.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Ruler</AUni> -</Name> -<OcmCodes> -<Uni>643 Chief Executive; 644 Executive Household</Uni> -</OcmCodes> -<Questions> -<objsur guid="03e981d3-40e6-48db-a371-620e89bd4854" t="o" /> -<objsur guid="82b59143-6f8a-423b-a8af-bc976a3253d6" t="o" /> -<objsur guid="535d114a-ac15-4daf-bf8b-c4ae61d89fe1" t="o" /> -<objsur guid="8e4570c9-012c-4c87-a4b3-edc573e01271" t="o" /> -<objsur guid="2359028c-cfb4-45a7-8cd6-c8c1e539a6cb" t="o" /> -<objsur guid="054225f6-9f04-4498-b4f3-bd8617527cb7" t="o" /> -<objsur guid="f105ef43-eb86-4db3-bcf0-c052243341b3" t="o" /> -<objsur guid="ab46efc5-0ec8-4cb6-960e-2275af1d5595" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="ded0e58d-8ad7-4909-b0f1-b9ab9c10bb0d" t="o" /> -<objsur guid="5f3e44b8-e94c-49b4-9e2d-1acd93dddf75" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="7ddfef2a-5fcf-4a73-8533-c3470accb659" ownerguid="f4ed1712-c072-4213-b89d-eb3a9be233b2"> -<ExampleWords> -<AUni ws="en">natural, naturally, wild (animals, country), raw (materials), virgin (forest), untamed, organic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is natural?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7de0b884-1379-48a7-9363-ec8dac0c2a14" ownerguid="8594cb26-9f3c-48f5-b00b-f055eb5a5e61"> -<ExampleWords> -<AUni ws="en">riot (v), loot, disturb the peace, go on a frenzy, go on a rampage, be in an uproar, run amok</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to rioting?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7de12a0b-7024-44f3-8ff9-b0217fde4a0d" ownerguid="56a3860b-d54f-46cb-988f-d664127ccdb4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ecaafbfe-b78a-45b0-bbdb-5abf0f8db2a1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7de1e143-ae22-4ba7-ac67-e9640206eb0d" ownerguid="c0d903bf-6502-45dd-9dd8-cff7f022c696"> -<ExampleWords> -<AUni ws="en">count, countdown, say your numbers</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to saying the numbers in order?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7de3d15b-e26a-4f2f-a86c-f96b5c89f201" ownerguid="ab8ca07c-b23c-43dc-b705-7fe34ddf6d4d"> -<ExampleWords> -<AUni ws="en">exaggeration, overstatement</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to what is said when you exaggerate?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7de6db85-49eb-42b1-8114-23f80facd064" ownerguid="ff3bf4e5-9c82-4318-8e96-a83c87d83a2e"> -<Form> -<AUni ws="qvm-x-ach">rauwa</AUni> -<AUni ws="qvm-x-acl">rauwa</AUni> -<AUni ws="qvm-x-akh">rawwa</AUni> -<AUni ws="qvm-x-akl">rawwa</AUni> -<AUni ws="qvm-x-ame">rawwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="7de75225-3a80-4fc0-961a-427634ab9e95" ownerguid="99d7ae3c-10df-4a64-9711-e9d3cf65f3bb"> -<Form> -<AUni ws="qvm-x-ach">chimu</AUni> -<AUni ws="qvm-x-acl">chimu; chimu; chimo</AUni> -<AUni ws="qvm-x-akh">chimu</AUni> -<AUni ws="qvm-x-akl">chimu; chimu; chimo</AUni> -<AUni ws="qvm-x-ame">chimu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="7de7703d-3780-4a7e-9afc-2573db33870e" ownerguid="a628f348-9748-4529-ae27-218e7281cf64"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7dec2756-2172-4541-b0f8-42ffb90ad00b" ownerguid="328412ac-7dab-40ed-8f88-104ee8b6cbe6"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="7dede9cd-0af7-4eff-90ed-d0a47a5e9cdc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ura; ura:</AUni> -<AUni ws="qvm-x-acl">ura; ura:</AUni> -<AUni ws="qvm-x-akh">ura; ura:</AUni> -<AUni ws="qvm-x-akl">ura; ura:</AUni> -<AUni ws="qvm-x-ame">ura; ura:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ura:</AUni> -<AUni ws="qvm-x-acl">*ura:</AUni> -<AUni ws="qvm-x-akh">*ura:</AUni> -<AUni ws="qvm-x-akl">*ura:</AUni> -<AUni ws="qvm-x-ame">*ura:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.269" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="da077628-f737-408c-a90d-b9e204483681" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ura:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="799d92fa-91ff-4e0a-93f5-570408c4dc99" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d9112501-cbc3-497d-b3ea-bd02d38409db" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ura: 
\entryTyp root 
\gENG descend 
\gSPN bajar 
\e *ura: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach ura foreshortened 
\ach ura: 
\akh ura foreshortened 
\akh ura: 
\acl ura foreshortened 
\acl ura: 
\akl ura foreshortened 
\akl ura: 
\ame ura foreshortened 
\ame ura: 
\mcc *ura: / ~_ PASS AG 
\mcc *ura: / ~_ PASS PRMT 
\mcc *ura: / ~_ PASS PSTN</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7deedb2c-ed66-4d41-b35f-b34db16e99a8" ownerguid="349f0278-7998-422a-9c3b-6053989cbb20"> -<ExampleWords> -<AUni ws="en">letter, consonant, vowel, syllable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words are used to talk about the sounds of a language?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7df152ed-3b6d-4a16-9135-89f5c742cd2f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">riycu; riyca</AUni> -<AUni ws="qvm-x-acl">riycu; riyco; riyca</AUni> -<AUni ws="qvm-x-akh">riyku; riyka</AUni> -<AUni ws="qvm-x-akl">riyku; riyko; riyka</AUni> -<AUni ws="qvm-x-ame">riyku; riyka</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.578" /> -<DateModified val="2022-10-16 13:51:13.207" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="09bbe0d6-c1ce-4cee-985a-fe697f465465" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">SUD</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f6ea55f1-4e4a-4ecf-8111-a616c65ce527" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="928b8d01-21a8-4ca5-86ba-d926980cd7b6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx SUD 
\entryTyp suffix 
\gENG SUD 
\gSPN REPN 
\e SUD 
\c V1/V1 V2/V2 
\o 040 
\mp +foreshortens PMlowered 
\ach riycu 
\ach riyca morphlowered 
\akh riyku 
\akh riyka morphlowered 
\acl riycu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl riyco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl riyca morphlowered 
\akl riyku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl riyko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl riyka morphlowered 
\ame riyku 
\ame riyka morphlowered 
\mcc SUD INF / _ OBJ 
\mcc SUD / *ka ~_</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7df245ce-62d2-44ee-8360-ae23c56233c1" ownerguid="5b3c7b4d-d5bb-488e-8f3f-fe8206fb0e55"> -<ExampleWords> -<AUni ws="en">careful, conscientious, painstaking, deliberate, deliberately</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is careful?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="7df3078c-f681-4123-a712-4b83e438ea1d" ownerguid="24398eec-edd1-449a-ad36-d609be24a79e"> -<Abbreviation> -<AUni ws="en">7.4.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to keeping something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Keep something</AUni> -</Name> -<Questions> -<objsur guid="4a672d16-6c8a-46b3-977f-16624fa160e8" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="1b3dccfe-29e4-478e-8443-17be9454a05a" t="o" /> -<objsur guid="6c32038c-adf3-4085-bde3-cd2f21a421ba" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="7dfd2d48-3518-43a6-b075-38dbae91e485"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tablón; tablon</AUni> -<AUni ws="qvm-x-acl">tablón; tablon</AUni> -<AUni ws="qvm-x-akh">tablón; tablon</AUni> -<AUni ws="qvm-x-akl">tablón; tablon</AUni> -<AUni ws="qvm-x-ame">tablón; tablon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tablón</AUni> -<AUni ws="qvm-x-acl">+tablón</AUni> -<AUni ws="qvm-x-akh">+tablón</AUni> -<AUni ws="qvm-x-akl">+tablón</AUni> -<AUni ws="qvm-x-ame">+tablón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.772" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b2eae479-1a3f-4851-addf-12f4c64a00b6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tablón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8034a22d-6d25-42d2-a788-b47aff1b577d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="28e813df-400a-4735-b3dd-0ec1ede10941" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tablón 
\entryTyp root 
\gENG 
\gSPN 
\e +tablón 
\c N0 
\mp +FinalC 
\ach tablón / _# 
\ach tablon / ~_# 
\akh tablón / _# 
\akh tablon / ~_# 
\acl tablón / _# 
\acl tablon / ~_# 
\akl tablón / _# 
\akl tablon / ~_# 
\ame tablón / _# 
\ame tablon / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="7dfd5797-8859-403b-a0ea-55a5394bd72a" ownerguid="f4f1c5ec-b343-411d-be17-7e099adbc5f4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="e0bc5d5d-e32a-42f5-8d87-ecdbcce39cff" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7e0435fe-a756-4c99-8a56-a6480dccb7e2" ownerguid="37e6c8b5-f63c-4f5b-8c16-eccd727d6618"> -<ExampleWords> -<AUni ws="en">fight (n) against, struggle against, battle against, campaign against, crusade against</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the process of fighting against something bad?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7e064426-9e70-4ae8-8f95-2245e17cfafa" ownerguid="dff03b86-9d10-486f-a7b0-b56d5a31840a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shoo</AUni> -<AUni ws="es">echar?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="614cdcda-2683-4984-86f9-2c297a3110fd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7e069830-7f94-4680-a802-3370dc336d5a" ownerguid="8d0a38b4-a86a-4131-adf2-0d041b396c2f"> -<Form> -<AUni ws="qvm-x-ach">capchuc</AUni> -<AUni ws="qvm-x-acl">capchuc</AUni> -<AUni ws="qvm-x-akh">kapchuk</AUni> -<AUni ws="qvm-x-akl">kapchuk</AUni> -<AUni ws="qvm-x-ame">kapchuk</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="7e06cd32-a360-48d3-bc41-7b65527d6c04" ownerguid="a2ec6d72-c5cb-43d7-abbc-7e46b7f877c4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="adb7dfa4-d2a9-403d-aab7-ce3575797776" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="9f24de78-1763-40b3-8c6b-d66245fdc06c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="7e08859b-3017-4be1-9d99-b5bb4ed7cda9" ownerguid="497ab205-76f7-4bea-9dbb-fd88003b7276"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mas</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mas</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mas</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mas</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mas</Run> -</AStr> -</Form> -<Morph> -<objsur guid="8ac0251c-ac8b-43e8-b92a-904077463439" t="r" /> -</Morph> -<Msa> -<objsur guid="d8ee23d8-9eb3-4dbf-b605-44cf67cf672a" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="7e0a3d65-5cfd-40ce-bfd4-687c9b818e36" ownerguid="3b970db0-5d31-4c00-bbc6-f7f38e0c620e" /> -<rt class="CmSemanticDomain" guid="7e0bc050-5298-4808-af22-5e284526c652" ownerguid="67931f1c-9a0c-4d18-9762-e553c132256c"> -<Abbreviation> -<AUni ws="en">6.8.4.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to exchanging or trading things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>57J Exchange</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Exchange, trade</AUni> -</Name> -<OcmCodes> -<Uni>437 Exchange Transactions</Uni> -</OcmCodes> -<Questions> -<objsur guid="ff1a35cf-0bd2-4111-8fcc-ddab1a27a13c" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="b3fb9960-8f42-43bc-9595-dfb3e04f5bfd" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="7e0f92d4-a593-4e71-9c43-52e6e38f1e00" ownerguid="5f2f8bd0-7e8c-46e3-9240-519cb139388b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2SA 19.35 Pusag chunca (80) watatanami ushaycä, tayta. Micurpis ni upurpis gustunta manami tarënatsu. Warmi ni olgu cantaycashgantapis manami tantyänatsu. Tsaynog caycarga ¿imapagnatag afanniquipag aywashagpis?</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="7e149909-5926-48c9-abfe-cec13e9d5394" ownerguid="4db0b9be-4c9c-47b8-a0d8-d16f147564fe"> -<Form> -<AUni ws="qvm-x-ach">puti</AUni> -<AUni ws="qvm-x-acl">puti; puti; pute</AUni> -<AUni ws="qvm-x-akh">puti</AUni> -<AUni ws="qvm-x-akl">puti; puti; pute</AUni> -<AUni ws="qvm-x-ame">puti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="7e14da80-3278-4ca8-9b23-c71263b7945f" ownerguid="b9e273b2-9d83-41e3-bc22-7f5b76fc17ae"> -<Form> -<AUni ws="qvm-x-ach">shuplu</AUni> -<AUni ws="qvm-x-acl">shuplu; shuplo</AUni> -<AUni ws="qvm-x-akh">shuplu</AUni> -<AUni ws="qvm-x-akl">shuplu; shuplo</AUni> -<AUni ws="qvm-x-ame">shuplu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7e20e64e-8ccf-4cc4-8e9c-2a63e49335c5" ownerguid="e0a8e1d9-c43e-4092-a8dc-476a3417924e"> -<ExampleWords> -<AUni ws="en">feel confident, sure of yourself, think positively, secure in yourself</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling confident?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7e2289fe-1880-4fe8-86de-c9e473159a53" ownerguid="5a36106b-cace-41ee-8de8-b8418d8ac433"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="fddfd995-311c-48f5-a5b9-d7b381b704c4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="7e26cee5-cc5a-41b7-b0ac-14ec365d15c2" ownerguid="7b7f948a-733c-4245-a403-1e7e35bb5c9a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuna</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuna</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuna</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuna</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuna</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f236a19a-86ce-4599-91f5-fb178488e065" t="r" /> -</Morph> -<Msa> -<objsur guid="0851fe14-f99e-4e06-befc-3a76b044ea37" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="7e286ec9-c553-4ec2-8194-b7ccf77f5491"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uña</AUni> -<AUni ws="qvm-x-acl">uña</AUni> -<AUni ws="qvm-x-akh">uña</AUni> -<AUni ws="qvm-x-akl">uña</AUni> -<AUni ws="qvm-x-ame">uña</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uña</AUni> -<AUni ws="qvm-x-acl">*uña</AUni> -<AUni ws="qvm-x-akh">*uña</AUni> -<AUni ws="qvm-x-akl">*uña</AUni> -<AUni ws="qvm-x-ame">*uña</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.241" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="84880f62-d0bb-47ff-b716-56ee92611821" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uña</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2c944b55-73bf-42b4-b951-04eb7d08b483" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="920f2521-71b8-4a73-ab6a-5e5f432cd9dc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uña 
\entryTyp root 
\gENG 
\gSPN 
\e *uña 
\c N0 
\ach uña 
\akh uña 
\acl uña 
\akl uña 
\ame uña</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7e28b8b1-939c-4ec2-be64-326bde4d4f65" ownerguid="36934fab-c0ed-4f25-a387-e1cca26b2401"> -<ExampleWords> -<AUni ws="en">next to nothing, nominal, a drop in the ocean, paltry, miserly, a pittance, peanuts</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a small amount of money?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7e28eba7-07d5-489a-899e-8a450998e4a5" ownerguid="44bf22fd-3725-4c49-bd3c-434402c33493"> -<ExampleWords> -<AUni ws="en">furnish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to putting furniture in a house?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="7e2b6218-0837-4b16-a982-c9535cccdb21" ownerguid="1c3c8af0-56b9-4617-862e-21f39b388606"> -<Abbreviation> -<AUni ws="en">2.6.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a corpse--the body of a person who has died.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Corpse</AUni> -</Name> -<Questions> -<objsur guid="6687033a-2b22-4bef-8c0d-303c9e73a253" t="o" /> -<objsur guid="62216e6e-277e-4073-8cc9-3e4ef1cbddfe" t="o" /> -<objsur guid="2dc43c28-c03e-461a-a767-348b3a9cb5b0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="7e303683-5f32-45b5-8e97-299a34722ab8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">juytu</AUni> -<AUni ws="qvm-x-acl">juytu; juytu; juyto</AUni> -<AUni ws="qvm-x-akh">juytu</AUni> -<AUni ws="qvm-x-akl">juytu; juytu; juyto</AUni> -<AUni ws="qvm-x-ame">huytu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*huytu.n</AUni> -<AUni ws="qvm-x-acl">*huytu.n</AUni> -<AUni ws="qvm-x-akh">*huytu.n</AUni> -<AUni ws="qvm-x-akl">*huytu.n</AUni> -<AUni ws="qvm-x-ame">*huytu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.779" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6d6300f7-4023-4204-9e16-11aa8db25800" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*huytu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="01d10ec1-2cfd-4885-8f63-0eea4d3ecfc1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="651bfcbb-b507-46bc-9282-087bc2711e48" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *huytu.n 
\entryTyp root 
\gENG long 
\gSPN ovalado 
\e *huytu.n 
\c N0 
\mp NeverMonophthongized 
\ach juytu 
\akh juytu 
\acl juytu / _# 
\acl juytu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl juyto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl juytu / _# 
\akl juytu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl juyto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame huytu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="7e355660-7017-42be-b82a-dda68d9248ef"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chicchampu</AUni> -<AUni ws="qvm-x-acl">chicchampu; chicchampu; chicchampo</AUni> -<AUni ws="qvm-x-akh">chikchampu</AUni> -<AUni ws="qvm-x-akl">chikchampu; chikchampu; chikchampo</AUni> -<AUni ws="qvm-x-ame">chikchampu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*triktrampu</AUni> -<AUni ws="qvm-x-acl">*triktrampu</AUni> -<AUni ws="qvm-x-akh">*triktrampu</AUni> -<AUni ws="qvm-x-akl">*triktrampu</AUni> -<AUni ws="qvm-x-ame">*triktrampu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.109" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="736706e6-e500-48c6-937b-a0510008d7a4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*triktrampu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ec2e3090-62cc-40fd-8e5a-84aadfb5fab4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0b964a7f-95a9-4568-adab-54eca571e12b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *triktrampu 
\entryTyp root 
\gENG rain 
\gSPN lluvia 
\e *triktrampu 
\c N0 
\ach chicchampu 
\akh chikchampu 
\acl chicchampu / _# 
\acl chicchampu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chicchampo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chikchampu / _# 
\akl chikchampu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chikchampo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chikchampu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoAffixAllomorph" guid="7e3a2a21-331d-4db9-8026-9cb6ee2cd414" ownerguid="efe35dbf-ae76-4d63-b9ee-47f06f007351"> -<Form> -<AUni ws="qvm-x-ach">la</AUni> -<AUni ws="qvm-x-acl">la</AUni> -<AUni ws="qvm-x-akh">la</AUni> -<AUni ws="qvm-x-akl">la</AUni> -<AUni ws="qvm-x-ame">la</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="04c2c26a-62fd-4045-9c28-5e4da7139d19" t="r" /> -</PhoneEnv> -</rt> -<rt class="LexSense" guid="7e3fe69b-db9b-4378-b973-c700d6a15371" ownerguid="5a886846-a7a2-49bb-b088-4b00d9902107"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">whiten</AUni> -<AUni ws="es">blanquear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1c341f68-b48e-4114-bc9a-8db41b7ff69a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="7e479885-2522-47a4-9739-d8c90734a956" ownerguid="a455de28-b812-4bf4-a9f3-fc318aa77d4f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="7e4b6069-2137-49db-b79d-87a7b49aea24" ownerguid="8be0a228-60ee-409e-a5d8-215f4d21f168"> -<Form> -<AUni ws="qvm-x-ach">wagranya; wagranyä</AUni> -<AUni ws="qvm-x-acl">wagranya; wagranyä</AUni> -<AUni ws="qvm-x-akh">waqranya; waqranyä</AUni> -<AUni ws="qvm-x-akl">waqranya; waqranyä</AUni> -<AUni ws="qvm-x-ame">waqranya; waqranyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="7e4bf435-4769-4d4a-a865-9a9981467355"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cama</AUni> -<AUni ws="qvm-x-acl">cama</AUni> -<AUni ws="qvm-x-akh">kama</AUni> -<AUni ws="qvm-x-akl">kama</AUni> -<AUni ws="qvm-x-ame">kama</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.508" /> -<DateModified val="2022-10-15 16:16:4.225" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="2" /> -<LexemeForm> -<objsur guid="b43ad487-6e73-48ff-9ec0-62d0371aba88" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">DIST1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b0ee83ce-c1ff-41c7-8aa1-b6e53ae19ebd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="65b5aa5c-b91c-4fda-98b0-c736c3aafb22" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx DIST1 
\entryTyp suffix 
\gENG EACH 
\gSPN CADA 
\e DIST1 
\c N0/N0 R0/R0 
\ach cama 
\akh kama 
\acl cama 
\akl kama 
\ame kama 
\o 000 
\mcc DIST1 / *imay ~_ 
\mcc DIST1 / INF ~_ [poss] 
\mcc DIST1 / ~_ ADV2 
\mcc DIST1 / ~_ 3P 
\mcc DIST1 / *ata ~_</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="7e4d20b7-e01d-45bd-9a07-dcde154072e9" ownerguid="b0e526a5-cbfa-4e7d-a32b-e7084459b1eb"> -<Form> -<AUni ws="qvm-x-ach">cansa</AUni> -<AUni ws="qvm-x-acl">cansa</AUni> -<AUni ws="qvm-x-akh">cansa</AUni> -<AUni ws="qvm-x-akl">cansa</AUni> -<AUni ws="qvm-x-ame">cansa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="7e4d4600-ace8-4a2d-bb36-b53463439321"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mandamientu</AUni> -<AUni ws="qvm-x-acl">mandamientu; mandamientu; mandamiento</AUni> -<AUni ws="qvm-x-akh">mandamientu</AUni> -<AUni ws="qvm-x-akl">mandamientu; mandamientu; mandamiento</AUni> -<AUni ws="qvm-x-ame">mandamientu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mandamiento</AUni> -<AUni ws="qvm-x-acl">+mandamiento</AUni> -<AUni ws="qvm-x-akh">+mandamiento</AUni> -<AUni ws="qvm-x-akl">+mandamiento</AUni> -<AUni ws="qvm-x-ame">+mandamiento</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.305" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7032c3de-4c11-4511-9eed-ecf6975c49ef" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mandamiento</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="32b71c12-b9b4-4b31-8ee4-f8ce7235b5b3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9547b4bf-a332-4321-9e8e-3c66694cb76e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mandamiento 
\entryTyp root 
\gENG command 
\gSPN mandamiento 
\e +mandamiento 
\c N0 
\mp +assimilated 
\ach mandamientu 
\akh mandamientu 
\acl mandamientu / _# 
\acl mandamientu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mandamiento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mandamientu / _# 
\akl mandamientu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mandamiento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mandamientu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="7e4d8e14-3ace-4cb7-a8f8-2eef85ec4d1f" ownerguid="e80a94f0-dfa2-421b-a204-1d158579f225"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">steal</AUni> -<AUni ws="es">robar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f8d58f78-a4ed-40ae-a458-86ddf3a1b735" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="7e4db14a-c9bc-4f18-b4da-49dc59c4cfad" ownerguid="8e2d7300-2826-497b-a811-c59a01e9e804"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="7e512866-4b27-4ecf-903e-cab043f309e3" ownerguid="b3406678-8e18-45f7-bc1c-8ae743a6392d"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="b44c14ba-8f8e-4937-84f6-1ba5c1ecd704" t="o" /> -<objsur guid="aa921d5f-9d37-40c0-a86c-d90230c8daad" t="o" /> -<objsur guid="c8396157-305b-44ec-b687-3d6cc80e643c" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="7e55326a-5377-4efa-b4e6-427d09c38da8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mágica; ma:gica</AUni> -<AUni ws="qvm-x-acl">mágica; ma:gica</AUni> -<AUni ws="qvm-x-akh">mágica; ma:gica</AUni> -<AUni ws="qvm-x-akl">mágica; ma:gica</AUni> -<AUni ws="qvm-x-ame">mágica; ma:gica</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mágica</AUni> -<AUni ws="qvm-x-acl">+mágica</AUni> -<AUni ws="qvm-x-akh">+mágica</AUni> -<AUni ws="qvm-x-akl">+mágica</AUni> -<AUni ws="qvm-x-ame">+mágica</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.386" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ca9bdf46-7967-4fe3-8371-b6a5615f00bb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mágica</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aab47664-113f-4a52-8a68-7993877af101" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c3113ad2-8c26-4159-aabf-5a0fff585cb4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mágica 
\entryTyp root 
\gENG magic 
\gSPN mática 
\e +mágica 
\c N0 
\ach mágica / _# 
\ach ma:gica / ~_# 
\akh mágica / _# 
\akh ma:gica / ~_# 
\acl mágica / _# 
\acl ma:gica / ~_# 
\akl mágica / _# 
\akl ma:gica / ~_# 
\ame mágica / _# 
\ame ma:gica / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="7e570656-2b21-400c-90f9-ce24004bd90c" ownerguid="088df936-aef2-4b1a-a175-dad436753e97"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">green.toad</AUni> -<AUni ws="es">sapo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="04b9a8e4-70b6-4a08-94cc-4f66274dfaee" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="7e5880b6-6b3c-435d-9e4e-a7034d613879" ownerguid="681812e8-bf9b-4607-93fb-8f4232c25b8f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">plant.potato</AUni> -<AUni ws="es">sembrar.papa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="02fc9a5e-e93c-4de8-8c39-7067f87913cb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7e595bc5-d98f-4731-947d-b6e0dfacddc7" ownerguid="7bf77556-64df-428e-bfdd-095af5bfeeda"> -<ExampleWords> -<AUni ws="en">intentional, intentionally, on purpose, because I wanted to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that someone intended to do?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7e5bd9ad-d910-4df7-bfcf-5742aa68a0b4" ownerguid="c87fcda1-31ee-4809-b284-da0a392dea87"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">step.child</AUni> -<AUni ws="es">entenada</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7285ed06-99de-4140-910d-b3a7ff755ba2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="7e5fb9ac-e1b1-43a3-838b-fa9812e11eb3" ownerguid="d024e342-8501-467b-89a8-cc86173c0060"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="7e60b455-a37d-428b-92bc-6a0ca37715a1" ownerguid="78699c92-e4f1-4160-b3f6-382bd509379a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">irrigate</AUni> -<AUni ws="es">regar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2ad1023c-ef18-4c85-8131-6bf42d89f0fe" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7e623005-4c9c-4eed-a87e-ceb6c569f9f2" ownerguid="dd12ac0f-55cc-4c79-a50c-d23cc7ea60b3"> -<ExampleWords> -<AUni ws="en">bather</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to someone who is taking a bath?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="7e628128-7aef-4ec1-b679-d029eebd9a40" ownerguid="3a69f8eb-eb96-4a29-b349-921314550427"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</Msa> -<Sense> -<objsur guid="2801e582-fd5f-46da-b446-4dd5882c9bda" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="7e6304b9-4271-4bcb-995e-d41aadf9b70d" ownerguid="432a3698-8fab-4a99-8e76-d0672bb53876"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="7e63ba02-f987-4f41-9aae-e4fe85bce33d" ownerguid="b4664e30-2a93-4452-844e-27d17344415f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">qui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">qui</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ki</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="8fc7d848-8007-4dcc-8c36-9b0b4da26f05" t="r" /> -</Morph> -<Msa> -<objsur guid="bbbfe118-132f-4744-9f12-6945daa4a632" t="r" /> -</Msa> -<Sense> -<objsur guid="7a11c70f-471b-4542-a37b-bcfc9731537d" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="7e643cb3-6fb9-4c6c-8c7c-356b6a6790dd" ownerguid="bf1f9360-6dd4-4ee3-b9f8-a5539baeb53b"> -<ExampleWords> -<AUni ws="en">growing flowers, floriculture, flower, prune, pick flower, gardening, garden, flower garden, flowering plants</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to growing flowers?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="7e6a4704-3611-4b95-a773-4436a12f280c"> -<Form> -<Str> -<Run ws="en">tra</Run> -</Str> -</Form> -</rt> -<rt class="MoStemMsa" guid="7e6b3b3c-6692-48df-8e4d-b6344c68a962" ownerguid="80d33b5e-940c-4a5a-b42e-0fe8ac79a904"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StTxtPara" guid="7e6d564f-7a0c-459f-b195-783c2c496826" ownerguid="d4ed5890-b92b-427f-9a42-baa58d122ca9"> -<ParseIsCurrent val="False" /> -</rt> -<rt class="CmDomainQ" guid="7e6df7b1-2995-4871-a318-278573cb7dd0" ownerguid="df2b9d7a-9b90-4704-8bc3-11dcffe985f4"> -<ExampleWords> -<AUni ws="en">pimple, acne, zit, whitehead, blackhead</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to small sores in the skin?</AUni> -</Question> -</rt> -<rt class="StText" guid="7e7e7d3b-029c-417c-9339-ef58ebd0021e" ownerguid="2c3879be-5223-4ff2-942d-42115dc6615d"> -<DateModified val="2022-10-27 20:47:19.949" /> -<Paragraphs> -<objsur guid="40ee76e2-b35f-46c7-9ffc-8c8411198673" t="o" /> -<objsur guid="87ac5eab-8861-4950-9488-05704b3a2175" t="o" /> -<objsur guid="270c1729-7810-46f0-8bc7-9ed215380f89" t="o" /> -<objsur guid="40b87c51-c84f-44af-b3b0-e8d66629d8a8" t="o" /> -<objsur guid="0c701f6a-8edb-4055-a94e-ca7f063c8d97" t="o" /> -<objsur guid="b0b46a35-65fa-4b8d-9da6-7e95179ac2de" t="o" /> -<objsur guid="f1d2414e-d75e-418d-81c7-a3fc303a3739" t="o" /> -<objsur guid="08bb8f22-5f11-43c5-95b0-2fe25fd96571" t="o" /> -<objsur guid="7bd00e49-483a-4313-bada-f7fe7b852732" t="o" /> -<objsur guid="21aa99d0-5366-4a51-9ed9-921b9a84fedb" t="o" /> -<objsur guid="2330e42f-a84d-4d3f-85c3-137e4f5266a0" t="o" /> -<objsur guid="497c5e37-7e6e-4929-ab04-800ca24bd0ee" t="o" /> -<objsur guid="e8ad725e-f35c-4639-be1a-ef5eab3b500e" t="o" /> -<objsur guid="476c8028-fb5f-41b7-8a10-cdea0850c384" t="o" /> -<objsur guid="7d52f9ab-b348-4247-8f30-90ad17b0fbdc" t="o" /> -<objsur guid="7827027b-b7fa-42f7-a39e-86427a7acc12" t="o" /> -<objsur guid="68bb7222-7270-4631-a9da-d513411ddc5b" t="o" /> -<objsur guid="ae306a4b-bfda-4a91-a1a9-018c97a61967" t="o" /> -<objsur guid="12800eff-536c-46d4-92c4-2cd7c47c0c4f" t="o" /> -<objsur guid="fb32d788-83b9-45b0-ad0f-5a7d74baba22" t="o" /> -<objsur guid="0dedd593-9e27-48f4-9688-24b67187e8ae" t="o" /> -<objsur guid="0517af79-daf3-44b4-901c-ac1f7cc2b3db" t="o" /> -<objsur guid="ba68d75f-8408-48e8-87be-ace5fb79182f" t="o" /> -<objsur guid="e52ccacf-d570-4d24-93ae-8fec9d866965" t="o" /> -<objsur guid="2e436723-3341-45cd-8599-70c46d88ae19" t="o" /> -<objsur guid="93b57985-30c0-418e-9c80-840fd48e720a" t="o" /> -<objsur guid="7ae75bc7-71c5-481e-87cb-94fda885a4b4" t="o" /> -<objsur guid="264049ec-4de2-434d-9aa5-3247fad798cd" t="o" /> -<objsur guid="900821cc-f020-4529-a7a6-d5faa0f2ae3a" t="o" /> -<objsur guid="6ccf151f-a5cd-4991-a640-ac1db1d350af" t="o" /> -<objsur guid="efb7c36b-bc62-4298-a014-31142e6bc71e" t="o" /> -<objsur guid="f9fbe1eb-fc9d-4254-839a-467be286a1c9" t="o" /> -</Paragraphs> -<RightToLeft val="False" /> -</rt> -<rt class="MoStemMsa" guid="7e7face4-c099-4822-97d7-e464592af9a5" ownerguid="6566df15-fcc8-4856-b981-db7f8d833470"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7e7fc1f4-4cb1-45c4-8f0a-8e1604b0bd18" ownerguid="c9aee4df-ac3e-4159-bd1a-060db1a5f070"> -<ExampleWords> -<AUni ws="en">communicate, communication</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to communicating?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7e80021a-d685-4f8a-afab-102f1bb6a0c8" ownerguid="cc121082-2d07-484e-8a6f-7382f7d71f39"> -<ExampleWords> -<AUni ws="en">stubborn, adamant, bull-headed, conservative, dogged, enduring, hardened, hardheaded, headstrong, immovable, impenitent, incorrigible, indomitable, inflexible, intractable, mulish, obdurate, obstinate, persistent, pig-headed, recalcitrant, relentless, stiff-necked, strong-willed, stubborn, as stubborn as a mule, tenacious, unbending, uncompromising, ungovernable, unmanageable, unrepentant, unyielding, willful</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is stubborn?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7e812386-09ea-4275-9e28-fdeec6b107f1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lijya</AUni> -<AUni ws="qvm-x-acl">lijya</AUni> -<AUni ws="qvm-x-akh">lijya</AUni> -<AUni ws="qvm-x-akl">lijya</AUni> -<AUni ws="qvm-x-ame">lijya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lejía</AUni> -<AUni ws="qvm-x-acl">+lejía</AUni> -<AUni ws="qvm-x-akh">+lejía</AUni> -<AUni ws="qvm-x-akl">+lejía</AUni> -<AUni ws="qvm-x-ame">+lejía</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.74" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9b694e01-dc85-4f39-82f5-7b37440e48b6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lejía</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="90dcb1ac-788d-4b35-ac83-bc4826470cd2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d623a7c6-2f25-42e0-b25a-1e5a53c5533a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lejía 
\entryTyp root 
\gENG 
\gSPN 
\e +lejía 
\c N0 
\mp +assimilated 
\ach lijya 
\akh lijya 
\acl lijya 
\akl lijya 
\ame lijya 
\i JOB 9.30,31 Jabunwan mayjina maylacuptëpis lijyawan maquëta maylacuptëpis asyag mitumanchari jatirpamanqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="7e8288eb-78e7-406e-aba6-b3b9ce712382"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wata</AUni> -<AUni ws="qvm-x-acl">wata</AUni> -<AUni ws="qvm-x-akh">wata</AUni> -<AUni ws="qvm-x-akl">wata</AUni> -<AUni ws="qvm-x-ame">wata</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wata.n</AUni> -<AUni ws="qvm-x-acl">*wata.n</AUni> -<AUni ws="qvm-x-akh">*wata.n</AUni> -<AUni ws="qvm-x-akl">*wata.n</AUni> -<AUni ws="qvm-x-ame">*wata.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.566" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3b701784-2198-494c-97a4-63dfed50856f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wata.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1b5b9bbf-3a6f-4db8-851a-e016cd3deb8b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aa7168be-e1a3-4ca9-8dc3-cc0fd7b5bfa2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wata.n 
\entryTyp root 
\gENG year 
\gSPN año 
\e *wata.n 
\c N0 
\ach wata 
\akh wata 
\acl wata 
\akl wata 
\ame wata</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7e86bce5-e1d4-427a-8486-cd2d54eff74b" ownerguid="40248a12-1809-4561-b786-e4e274c14d82"> -<ExampleWords> -<AUni ws="en">baboon, capuchin, chimpanzee, colobus, gibbon, gorilla, langur, lemur, orangutan, macaque, mandrill, marmoset, rhesus, ringtail</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What species of primates are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7e871887-a918-499d-b0a3-8b66c8cecd63" ownerguid="b015f460-faeb-4aa5-b453-9e5e9ae061fe"> -<ExampleWords> -<AUni ws="en">quaint, old-time, of the old school, olde worlde</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that is old fashioned but people still like it?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7e8761e6-2b75-48b7-9809-94ed790d4e2f" ownerguid="cb48de57-4fef-47d8-8989-397a6bc6377a"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="7e8c3681-0c2f-4507-941a-573957c9c3c0" ownerguid="8197eac8-65a6-4b9e-a86b-698929a5e952"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">warmi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">warmi; warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">warmi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">warmi; warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">warmi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ddf5b3ec-6ef7-4a2a-b160-365cb7d372df" t="r" /> -</Morph> -<Msa> -<objsur guid="e9ece695-28de-48a2-aff1-266bce7d2a60" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="7e8e90f0-bcf8-4e2d-8b9c-91cc873bc5d4" ownerguid="0bc02285-8e70-442a-8d08-e04d922507c8"> -<ExampleWords> -<AUni ws="en">artist, painter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to an artist?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7e90e817-cf7f-4654-b936-db5ee3d01e49" ownerguid="5ef2c0c2-bdb5-4671-820b-d086076ca689"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wind</AUni> -<AUni ws="es">dar.cuerda</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="69dcd694-149a-4d7b-b2e1-94e3adb2a856" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="7e926de2-f5f9-4163-9b9f-3df4fa985150" ownerguid="d1e7efd0-1a2d-4164-826d-2333b8ee649b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">r</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">r</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">r</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">r</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">r</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a96fae79-db91-498f-a3f4-4aaeff3f9499" t="r" /> -</Morph> -<Msa> -<objsur guid="973e08a0-60b3-4ff1-9973-ac70ea0a16bc" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="7e973f42-7d44-4724-b3e4-ef7d3dc08b6d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ajaya; ajaya:</AUni> -<AUni ws="qvm-x-acl">ajaya; ajaya:</AUni> -<AUni ws="qvm-x-akh">ajaya; ajaya:</AUni> -<AUni ws="qvm-x-akl">ajaya; ajaya:</AUni> -<AUni ws="qvm-x-ame">ahaya; ahaya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ahaya:</AUni> -<AUni ws="qvm-x-acl">*ahaya:</AUni> -<AUni ws="qvm-x-akh">*ahaya:</AUni> -<AUni ws="qvm-x-akl">*ahaya:</AUni> -<AUni ws="qvm-x-ame">*ahaya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.669" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8dc150fc-1d1c-414b-a657-50c90c18fbff" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ahaya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9826cbc8-4b21-4043-a38b-6f71bffa16ef" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2e375d89-90db-4540-b75b-3c39effdf6cf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ahaya: 
\entryTyp root 
\gENG get.tired.of 
\gSPN hartar 
\e *ahaya: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach ajaya foreshortened 
\ach ajaya: 
\akh ajaya foreshortened 
\akh ajaya: 
\acl ajaya foreshortened 
\acl ajaya: 
\akl ajaya foreshortened 
\akl ajaya: 
\ame ahaya foreshortened 
\ame ahaya: 
\mcc *ahaya: / ~_ INF GEN</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="7e99818b-6893-443d-94e9-61fa0c714417" ownerguid="f87650ed-7cfe-4b90-9589-b2d9d26e69cb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7e99bfb9-ece6-486e-ba2e-11d6fe5747ce" ownerguid="ca752706-1c9e-43e7-bd17-845c4736ccd8"> -<ExampleWords> -<AUni ws="en">at most, as much as, short of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words indicate an approximate number when the actual number is possibly less?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7e9a90f9-1a0d-461a-b7eb-671c47a5affd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">zanja</AUni> -<AUni ws="qvm-x-acl">zanja</AUni> -<AUni ws="qvm-x-akh">zanja</AUni> -<AUni ws="qvm-x-akl">zanja</AUni> -<AUni ws="qvm-x-ame">zanja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+zanja</AUni> -<AUni ws="qvm-x-acl">+zanja</AUni> -<AUni ws="qvm-x-akh">+zanja</AUni> -<AUni ws="qvm-x-akl">+zanja</AUni> -<AUni ws="qvm-x-ame">+zanja</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.810" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="96b705a9-ff7e-4296-a6c0-2b56f95648c3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+zanja</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4a794ae2-a6c7-4948-9b33-1037f75310cb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="684efd30-20d7-4b13-9b58-01809f8bcc2f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +zanja 
\entryTyp root 
\gENG ditch 
\gSPN zanja 
\e +zanja 
\c N0 
\ach zanja 
\akh zanja 
\acl zanja 
\akl zanja 
\ame zanja</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="7e9ccad5-c72e-4755-928f-a401329470a4" ownerguid="9d11c60d-9f91-4694-a4c6-a0b82a5f3182" /> -<rt class="LexSense" guid="7e9e0696-e3aa-4821-b1c2-9ebfdd0d47f9" ownerguid="39db0b37-53b3-4cb4-b539-23fadcc865e7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">becerra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b1ac3b9b-6649-4ee9-bd87-237e550d2623" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="7ea214ce-2387-4fa0-a30d-69145613a7fc" ownerguid="8384542a-c622-49d7-b309-f89da8666530"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7ea59dbd-69ce-416a-9b56-b3f273e01507" ownerguid="0343ba4e-abae-4c8f-ac32-6e0d40e3a540"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7ea75797-3109-4ca4-99c6-8741bf3e4d0e" ownerguid="4153416a-784d-4f7c-a664-2640f7979a14"> -<ExampleWords> -<AUni ws="en">sandbar, delta, alluvium, alluvial, silt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to dirt, sand, and rocks washed down by a river?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="7ea946fb-6469-4f21-a5a4-7963878e6fe2" ownerguid="c2b720f5-1123-446e-9f60-088a3272b889"> -<Abbreviation> -<AUni ws="en">8.4.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.640" /> -<DateModified val="2022-9-23 16:55:8.640" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a long time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">A long time</AUni> -</Name> -<Questions> -<objsur guid="d86911e5-f1f7-4e76-8773-24efabb95924" t="o" /> -<objsur guid="e7c81c37-8866-4daa-b063-3b13d9ffcd16" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="7ea9d3b4-c10a-4231-b569-2e7aa53951c6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">apa</AUni> -<AUni ws="qvm-x-acl">apa</AUni> -<AUni ws="qvm-x-akh">apa</AUni> -<AUni ws="qvm-x-akl">apa</AUni> -<AUni ws="qvm-x-ame">apa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*apa</AUni> -<AUni ws="qvm-x-acl">*apa</AUni> -<AUni ws="qvm-x-akh">*apa</AUni> -<AUni ws="qvm-x-akl">*apa</AUni> -<AUni ws="qvm-x-ame">*apa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.800" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6cbe760b-c461-4804-90f6-a4c14ee70390" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*apa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e6cb397d-7141-41d6-9806-dcf744236415" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="516346d4-121e-4996-bddf-20c87408b53c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *apa 
\entryTyp root 
\gENG carry 
\gSPN llevar 
\e *apa 
\c V2 
\ach apa 
\akh apa 
\acl apa 
\akl apa 
\ame apa 
\i Gen 18.4 Yacuta aparatsimushag chaquiquita maylacärinayquipag. 
\mcc *apa / ~_ PNCT1 REFDIR</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="7eabd643-af0e-4d7e-9bdb-79f4e9847c05" ownerguid="f425d6e1-3b81-4a76-98ae-9b14d5590058"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="cce26981-af34-4f48-8e37-d31deae5cafe" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">wrinkle</AUni> -<AUni ws="es">arrugar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ca350b97-6057-46dc-8649-558ebfbc9d43" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7eaceb99-9ccd-4a30-9ad7-c7feb0f20089" ownerguid="0bbe1739-e0b4-442e-b69c-02a0ea20d790"> -<ExampleWords> -<AUni ws="en">dive, plunge, belly flop, jump in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to diving into water?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7eadf473-4d1b-4a77-afb0-8341436c52cf" ownerguid="314c8fea-4bdb-4bc8-ab67-a26a9c5abbd4"> -<ExampleWords> -<AUni ws="en">stiff, strong, inflexible, unbendable, unbending, rigid, brittle, crisp, crispy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is not easy to bend?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7eb397f2-1940-4e85-b179-e5dd1b0326a3" ownerguid="6f01b67c-33a0-4ed3-8205-f868e97a1a3a"> -<ExampleWords> -<AUni ws="en">hotel, motel, inn, campground, restaurant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to a place where a traveler can stay or eat?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7eb578d9-5405-4190-9e52-206710eb6758" ownerguid="85646774-8145-4553-b8a7-6927cd077908"> -<ExampleWords> -<AUni ws="en">swarm (of insects), plague of locusts</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What is a group of insects called?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7eb5e11d-357e-430f-9b1a-4618bf422382" ownerguid="4d1ac5e6-dfe3-4643-b6e5-21649a01cce9"> -<ExampleWords> -<AUni ws="en">train, railroad car, engine, caboose, freight train, passenger train, locomotive, freight car, trolley, streetcar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a train?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7eb75846-e4f3-4427-90ec-e4808da9c8c2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ejemplu; ejemplo</AUni> -<AUni ws="qvm-x-acl">ejemplu; ejemplu; ejemplo</AUni> -<AUni ws="qvm-x-akh">ejemplu; ejemplo</AUni> -<AUni ws="qvm-x-akl">ejemplu; ejemplu; ejemplo</AUni> -<AUni ws="qvm-x-ame">ejemplu; ejemplo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ejemplo</AUni> -<AUni ws="qvm-x-acl">+ejemplo</AUni> -<AUni ws="qvm-x-akh">+ejemplo</AUni> -<AUni ws="qvm-x-akl">+ejemplo</AUni> -<AUni ws="qvm-x-ame">+ejemplo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.447" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4583acb9-6886-40b0-b40d-a8c029e1bbf7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ejemplo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="21c252cc-f418-437a-8a57-a6b1b9818c91" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e4a461ee-b128-458a-9ca8-056b1603e6ab" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ejemplo 
\entryTyp root 
\gENG example 
\gSPN ejemplo 
\e +ejemplo 
\c N0 
\ach ejemplu / ~_# 
\ach ejemplo / _# 
\akh ejemplu / ~_# 
\akh ejemplo / _# 
\acl ejemplu / ~_# 
\acl ejemplu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ejemplo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ejemplu / ~_# 
\akl ejemplu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ejemplo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ejemplu / ~_# 
\ame ejemplo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="7eb8e0ac-c3e5-41bf-83f5-588970ee8632" ownerguid="ae328926-69c4-4b51-a752-ef9e6eff92eb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7eb9e4a2-eecb-4bcd-8fe1-e2e0bc2e8ec7" ownerguid="ade48fbd-6348-4cc9-b18b-04ed20ddf78c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7eba3397-0169-4c68-88b7-f81508bbda4b" ownerguid="3a5fac6d-5d82-419b-b358-f4ab54f8a44f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="7ebac9f5-d347-471d-a432-f439a85a054d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">veloz</AUni> -<AUni ws="qvm-x-acl">veloz</AUni> -<AUni ws="qvm-x-akh">veloz</AUni> -<AUni ws="qvm-x-akl">veloz</AUni> -<AUni ws="qvm-x-ame">veloz</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+veloz</AUni> -<AUni ws="qvm-x-acl">+veloz</AUni> -<AUni ws="qvm-x-akh">+veloz</AUni> -<AUni ws="qvm-x-akl">+veloz</AUni> -<AUni ws="qvm-x-ame">+veloz</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.353" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c4364199-b2a5-4315-985c-81b59117fa89" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+veloz</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c8547daf-229c-49a3-86c0-634bbd5e3dcd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="509597cf-6a10-4649-9c6b-2529e16e30cd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +veloz 
\entryTyp root 
\gENG 
\gSPN 
\e +veloz 
\c N0 
\mp +FinalC 
\ach veloz 
\akh veloz 
\acl veloz 
\akl veloz 
\ame veloz 
\i JER 4.13 ¡Cawalluncunapis anca luylucarcur chipshaman aywashganpitapis mas velozmi cörriycämun!</Run> -</AStr> -</Custom> -</rt> -<rt class="StTxtPara" guid="7ebea6b0-00ca-41d3-ba2c-c5a079f79cec" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">aywakamun. </Run> -<Run ws="en">\tr < V1 *aywa > REF AFAR 3</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="65fdccf6-ea1f-4f95-be1f-ed64a981da94" t="o" /> -<objsur guid="5fa92b23-cc38-42e4-a693-a1c412aeb0da" t="o" /> -</Segments> -</rt> -<rt class="MoStemMsa" guid="7ec18d6c-8ba9-462b-8839-fa825ced120f" ownerguid="ae83adb1-88bc-429d-983b-7808e60fd1b3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7ec315da-4213-41fb-b32b-f52a83910ebc" ownerguid="1de2cef5-3a2d-45c1-8cb6-06b2ac087907"> -<Question> -<AUni ws="en">(7) complement to words of wanting (again in English these are done with infinitives)</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7ec8bcf4-bc00-402b-9a8a-fdc6cb831a53" ownerguid="bea55eef-1d76-4242-99be-668309cb5884"> -<Form> -<AUni ws="qvm-x-ach">balcón; balcon</AUni> -<AUni ws="qvm-x-acl">balcón; balcon</AUni> -<AUni ws="qvm-x-akh">balcón; balcon</AUni> -<AUni ws="qvm-x-akl">balcón; balcon</AUni> -<AUni ws="qvm-x-ame">balcón; balcon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="7ec98665-275f-4d57-8022-2740b9e90059" ownerguid="3dd684e6-75d9-41f4-aaa3-fb0cb3c7d400"> -<Abbreviation> -<AUni ws="en">4.4.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to showing sympathy and support to someone in trouble.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Show sympathy, support</AUni> -</Name> -<Questions> -<objsur guid="f8c27f19-6544-427b-bbf0-9d348786ae3e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="7ecafaff-c718-474f-8195-c522be4672e0" ownerguid="6f416602-9185-48c0-ad76-3e5b1caf9134" /> -<rt class="LexExampleSentence" guid="7ecb8b08-bc59-49f5-8e4c-665e2568d318" ownerguid="9ddf39a7-ad28-4623-ac85-b7a42a89c06d"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ZEC 1.8 Paypa guepanchömi carcaycargan puca, bäyu y yorag cawallu muntashcuna.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="7ecb9d52-e459-42d7-ad04-6bc97b7c56c1" ownerguid="46f82eff-54e4-4529-9284-4661b2b3c0db"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">profesor</AUni> -<AUni ws="es">profesor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f639ec77-7128-4695-b38f-2063f29c3fea" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="7ecca79a-71bc-4055-a00a-bc3541e10e2b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">arpa</AUni> -<AUni ws="qvm-x-acl">arpa</AUni> -<AUni ws="qvm-x-akh">arpa</AUni> -<AUni ws="qvm-x-akl">arpa</AUni> -<AUni ws="qvm-x-ame">arpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+arpa</AUni> -<AUni ws="qvm-x-acl">+arpa</AUni> -<AUni ws="qvm-x-akh">+arpa</AUni> -<AUni ws="qvm-x-akl">+arpa</AUni> -<AUni ws="qvm-x-ame">+arpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.830" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e7717740-588f-4135-9758-01795896fdee" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+arpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="64d35d24-78e6-4dec-8099-825f4b92fa74" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5e48d272-ca3c-47c9-b0aa-88217d99f851" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +arpa 
\entryTyp root 
\gENG harp 
\gSPN arpa 
\e +arpa 
\c N0 
\ach arpa 
\akh arpa 
\acl arpa 
\akl arpa 
\ame arpa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="7ed18a74-27a3-4c44-9d83-94425ceb774c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tra:tu</AUni> -<AUni ws="qvm-x-acl">tra:tu; tra:tu; tra:to</AUni> -<AUni ws="qvm-x-akh">tra:tu</AUni> -<AUni ws="qvm-x-akl">tra:tu; tra:tu; tra:to</AUni> -<AUni ws="qvm-x-ame">tra:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+trato</AUni> -<AUni ws="qvm-x-acl">+trato</AUni> -<AUni ws="qvm-x-akh">+trato</AUni> -<AUni ws="qvm-x-akl">+trato</AUni> -<AUni ws="qvm-x-ame">+trato</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.780" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a0e27b76-7e59-4f7c-9e2b-260d4cccf859" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+trato</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="639b8d99-28c7-44de-8975-13650d40c2cd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0d25aeee-fbef-4c1f-8693-b1c17ce65943" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +trato 
\entryTyp root 
\gENG agreement 
\gSPN 
\e +trato 
\c N0 
\ach tra:tu 
\akh tra:tu 
\acl tra:tu / _# 
\acl tra:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tra:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tra:tu / _# 
\akl tra:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tra:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tra:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="7ed286e5-86e7-42db-b03b-8868d1c56dc9" ownerguid="b13ce5d7-e5f9-42b8-bae0-12fd1fec9b43"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63e241cb-3471-43ad-8545-4d005f632d4d" t="r" /> -</Morph> -<Msa> -<objsur guid="d3b5839a-9f79-4b2d-96b3-8cee7717866b" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="7ed38a2b-1142-453c-85b7-6e3754f8942d" ownerguid="d38c92e2-6409-4b6b-842e-013486e407ee"> -<Form> -<AUni ws="qvm-x-ach">mayna</AUni> -<AUni ws="qvm-x-acl">mayna</AUni> -<AUni ws="qvm-x-akh">mayna</AUni> -<AUni ws="qvm-x-akl">mayna</AUni> -<AUni ws="qvm-x-ame">mayna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="7ed5984d-0c4e-4973-b1b4-5905e7278510" ownerguid="bf9f70d1-9067-4e2e-aa04-da1c74b6cb29"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="7ed8fed2-1855-4f1a-b106-031e8f771beb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wayca</AUni> -<AUni ws="qvm-x-acl">wayca</AUni> -<AUni ws="qvm-x-akh">wayka</AUni> -<AUni ws="qvm-x-akl">wayka</AUni> -<AUni ws="qvm-x-ame">wayka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wayka</AUni> -<AUni ws="qvm-x-acl">*wayka</AUni> -<AUni ws="qvm-x-akh">*wayka</AUni> -<AUni ws="qvm-x-akl">*wayka</AUni> -<AUni ws="qvm-x-ame">*wayka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.607" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bce1113d-90c1-43d2-a586-ff501a9e53a9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wayka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="682bb294-23f8-4a47-8d1c-c18739730067" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6b8eef9c-fa20-4f58-a4f3-6c973bd47c84" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wayka 
\entryTyp root 
\gENG burn/feed 
\gSPN quemar 
\e *wayka 
\c V2 
\ach wayca 
\akh wayka 
\acl wayca 
\akl wayka 
\ame wayka 
\i PRO 26.20 Yantata mana waycapaycaptenga nina upinmi.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="7edd9d95-b334-4f67-9d7c-d177c2c048ac" ownerguid="6c64a7bf-5ee7-4a87-951e-d60522364782"> -<Form> -<AUni ws="qvm-x-ach">logyu</AUni> -<AUni ws="qvm-x-acl">logyu; logyu; logyo</AUni> -<AUni ws="qvm-x-akh">loqyu</AUni> -<AUni ws="qvm-x-akl">loqyu; loqyu; loqyo</AUni> -<AUni ws="qvm-x-ame">luqyu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7eded58b-b322-4411-9987-9f37d094f02c" ownerguid="6736dafe-2916-40f6-b6b7-b6300100933b"> -<ExampleWords> -<AUni ws="en">talk in your sleep, walk in your sleep</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What do people do while dreaming?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7edf08c4-9fb5-4146-8f22-0233b97c11ad" ownerguid="bfa3be74-0390-4e2e-bdb7-ed41eb67e4f1"> -<ExampleWords> -<AUni ws="en">stop raining</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to when the rain stops?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7edf373e-9ecd-4cc3-8544-9107ddba7e14" ownerguid="628f61e8-c8ba-40b5-864f-8bac1e189fa2"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7edf9dc2-8b6a-4108-a0dd-de6d3a62d167" ownerguid="9f3b4cab-dc8a-430e-88f3-d3002df64fb8"> -<ExampleWords> -<AUni ws="en">change your posture/stance, pose, shift, squirm</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What general words refer to changing your posture?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="7edf9e7c-3e32-4307-b5e3-b0d704df7803" ownerguid="71430132-f2ea-40fe-b3f5-b6775741cc56"> -<Abbreviation> -<AUni ws="en">6.6.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.468" /> -<DateModified val="2022-9-23 16:55:8.468" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to spinning thread.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Spinning thread</AUni> -</Name> -<OcmCodes> -<Uni>283 Cordage</Uni> -</OcmCodes> -<Questions> -<objsur guid="3068f420-ca35-475f-b3c8-1ee9406d80a7" t="o" /> -<objsur guid="a466eaa8-1131-45f0-9a19-95b279ff59fc" t="o" /> -<objsur guid="4b2a8566-717b-4ff9-9bd8-30f9682bbbed" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="7ee082e8-1f0d-4ff6-b839-e91c589fde83" ownerguid="99ee1558-34b2-4a1b-bfd2-eb4ccbfe7728"> -<ExampleWords> -<AUni ws="en">reliable, responsible, faithful, honest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is reliable?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="7ee3ccb5-e6cb-4028-9af5-62ae782967b5" ownerguid="34e92ff1-32aa-49c7-b4da-d161bedc5adc"> -<Abbreviation> -<AUni ws="en">6.6.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.468" /> -<DateModified val="2022-9-23 16:55:8.468" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to working with metal. Answer each question below for each kind of smith.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>7G Miscellaneous Constructions</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Working with metal</AUni> -</Name> -<OcmCodes> -<Uni>326 Smiths and Their Crafts; 328 Nonferrous Metal Industries</Uni> -</OcmCodes> -<Questions> -<objsur guid="acc05eaf-9f30-4467-af07-ea2c7ea246fa" t="o" /> -<objsur guid="8f2759f0-89a5-4950-956d-d6a6794b0537" t="o" /> -<objsur guid="876a0a66-d8fd-48c1-8c5a-8efc8029b8c2" t="o" /> -<objsur guid="e49b82f5-cd22-46a3-9158-fe4a67fb7afe" t="o" /> -<objsur guid="993d57fd-0f0c-41ea-8ad0-0b4b6dc51a02" t="o" /> -<objsur guid="2e2d9588-26ec-4420-91a3-aacaaca1f731" t="o" /> -<objsur guid="aaacd4fb-a537-4a53-9b98-814e8c6b55ce" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="7ee92ca4-19aa-4abd-9f88-508766acc39c" ownerguid="5c35c2f8-d17c-42a3-aa12-a4c29b6603e8"> -<Abbreviation> -<AUni ws="en">8.3.1.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.599" /> -<DateModified val="2022-9-23 16:55:8.599" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to rolling something up.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79A' Rolled up</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Roll up</AUni> -</Name> -<Questions> -<objsur guid="c5c27ef3-adec-40be-b5d7-297c05b23074" t="o" /> -<objsur guid="fd2d6072-87fb-44c3-9102-1b12e5990152" t="o" /> -<objsur guid="11a5ac0e-d34b-46c1-837e-db07b72c3c11" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="7ee96f62-7c8e-4c27-a373-d7a534844612" ownerguid="f6eb81d5-caba-4735-be6f-ae038656b555"> -<Abbreviation> -<AUni ws="en">6.6.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.476" /> -<DateModified val="2022-9-23 16:55:8.476" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to working with leather.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Working with leather</AUni> -</Name> -<OcmCodes> -<Uni>282 Leather Industry; 281 Work in Skins</Uni> -</OcmCodes> -<Questions> -<objsur guid="e43e79ff-8e39-486f-9567-4302a67c9bc5" t="o" /> -<objsur guid="bb986e9d-6d31-462f-94b2-1d1fe7deb3bc" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="7eeb3c3f-90b1-42ed-8abb-2ef42650f7e2" ownerguid="50db27b5-89eb-4ffb-af82-566f51c8ec0b"> -<ExampleWords> -<AUni ws="en">life, life cycle, cycle of life</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the process a person goes through from birth to death?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7eeba6c0-a594-4abd-972e-5899ea493410" ownerguid="f17a53aa-4777-4503-90f8-a446963c2acf"> -<Form> -<AUni ws="qvm-x-ach">taclla</AUni> -<AUni ws="qvm-x-acl">taclla</AUni> -<AUni ws="qvm-x-akh">taklla</AUni> -<AUni ws="qvm-x-akl">taklla</AUni> -<AUni ws="qvm-x-ame">taklla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="7eece01d-30fc-4448-aea7-e69d8871d160"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chipsa</AUni> -<AUni ws="qvm-x-acl">chipsa</AUni> -<AUni ws="qvm-x-akh">chipsa</AUni> -<AUni ws="qvm-x-akl">chipsa</AUni> -<AUni ws="qvm-x-ame">chipsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chipsa</AUni> -<AUni ws="qvm-x-acl">*chipsa</AUni> -<AUni ws="qvm-x-akh">*chipsa</AUni> -<AUni ws="qvm-x-akl">*chipsa</AUni> -<AUni ws="qvm-x-ame">*chipsa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.315" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bf821a02-62db-4071-a22c-496217bbcb83" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chipsa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="70103093-32b1-4d23-9b66-e123581ea250" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a43e8dbf-5300-499f-9e40-ef0c266e8809" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chipsa 
\entryTyp root 
\gENG chick 
\gSPN pollito 
\e *chipsa 
\c N0 
\ach chipsa 
\akh chipsa 
\acl chipsa 
\akl chipsa 
\ame chipsa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7eedb548-5ce2-4fb1-9cad-3bb5116ad5e0" ownerguid="40516af2-d413-418e-8b68-8443847ee169"> -<ExampleWords> -<AUni ws="en">brim, peak, ribbon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to parts of hats?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7ef096d8-67d3-42ba-8d25-f91a52ba2aff" ownerguid="83adeb9d-c0be-4073-894d-913014420280"> -<ExampleWords> -<AUni ws="en">good, nice</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is good?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7ef605d4-31df-45fb-8b22-6a9a2b8a16cc" ownerguid="4f516445-e044-4d9c-ac9b-a3178f72b405"> -<ExampleWords> -<AUni ws="en">movie, show, film</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to movies?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7ef6ec6b-08c1-41ec-a70f-898c569791d8" ownerguid="dfdcfa24-b013-4566-af4a-28ef1dfd4742"> -<ExampleWords> -<AUni ws="en">measurable, quantifiable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that can be measured?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7efa087f-a344-488d-83e1-40cb415b378f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">puchca</AUni> -<AUni ws="qvm-x-acl">puchca</AUni> -<AUni ws="qvm-x-akh">puchka</AUni> -<AUni ws="qvm-x-akl">puchka</AUni> -<AUni ws="qvm-x-ame">puchka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*putrka.n</AUni> -<AUni ws="qvm-x-acl">*putrka.n</AUni> -<AUni ws="qvm-x-akh">*putrka.n</AUni> -<AUni ws="qvm-x-akl">*putrka.n</AUni> -<AUni ws="qvm-x-ame">*putrka.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.49" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c551af17-52a2-4a9c-8aee-e95a662642de" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*putrka.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="61f3fcc1-7c29-4450-a8e5-562e0e9d3a94" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="77e13383-c16c-44a5-8fa2-2f01601292b5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *putrka.n 
\entryTyp root 
\gENG turbid 
\gSPN turbio 
\e *putrka.n 
\c N0 
\ach puchca 
\akh puchka 
\acl puchca 
\akl puchka 
\ame puchka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="7efc2786-02ee-469f-81f8-b84514726be1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tru:cha</AUni> -<AUni ws="qvm-x-acl">tru:cha</AUni> -<AUni ws="qvm-x-akh">tru:cha</AUni> -<AUni ws="qvm-x-akl">tru:cha</AUni> -<AUni ws="qvm-x-ame">tru:cha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+trucha</AUni> -<AUni ws="qvm-x-acl">+trucha</AUni> -<AUni ws="qvm-x-akh">+trucha</AUni> -<AUni ws="qvm-x-akl">+trucha</AUni> -<AUni ws="qvm-x-ame">+trucha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.160" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aa67d5a4-7c2e-402b-8171-01366e687b44" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+trucha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="819df116-b077-4bf8-9c17-1c1835eba27c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="759ba246-c143-4b4b-a0a3-937d3de6e284" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +trucha 
\entryTyp root 
\gENG 
\gSPN 
\e +trucha 
\c N0 
\ach tru:cha 
\akh tru:cha 
\acl tru:cha 
\akl tru:cha 
\ame tru:cha</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="7f002f17-579d-45c3-a051-df01702e3705" ownerguid="0f219efd-e161-4827-b87b-7c4774247fce"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7f08df61-0cde-4bde-a30d-178f1bea076a" ownerguid="7d629c80-e5c2-409f-a592-39c56e9ace6d"> -<ExampleWords> -<AUni ws="en">naval</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something belonging to the navy?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7f0c8138-52db-49c7-8c41-44ed14c726a0" ownerguid="65d3f082-7677-43b8-8863-c6b8cc3a9c02"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="7f0f77fd-8996-4ed4-a896-44b0a8580146" ownerguid="a387caa2-ccba-430a-96a1-09f6b233ab19"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="99c8fc41-644b-4d4c-a0c6-15dbb794e818" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="7f5d13bc-ab85-4c40-8503-6d36c5b66050" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="7f1036a9-350b-4881-9640-e6729c49f56a" ownerguid="b9ca2d56-750e-4ace-95a6-4c3c54bffbb0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">decoration</AUni> -<AUni ws="es">adorno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="493be8bf-2ecd-4a13-bf48-6c35a3590d09" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="7f118a71-1c41-47fc-8e2a-ae45e885ff0b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">custilla</AUni> -<AUni ws="qvm-x-acl">custilla</AUni> -<AUni ws="qvm-x-akh">custilla</AUni> -<AUni ws="qvm-x-akl">custilla</AUni> -<AUni ws="qvm-x-ame">custilla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+costilla</AUni> -<AUni ws="qvm-x-acl">+costilla</AUni> -<AUni ws="qvm-x-akh">+costilla</AUni> -<AUni ws="qvm-x-akl">+costilla</AUni> -<AUni ws="qvm-x-ame">+costilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.206" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e4857004-10c6-4ab5-b585-49c01d19f163" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+costilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="869eff25-acef-4c58-8949-cd27fcdd5eee" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e417eb94-7e74-469c-ad77-01d101eeae03" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +costilla 
\entryTyp root 
\gENG rib 
\gSPN costilla 
\e +costilla 
\c N0 
\ach custilla 
\akh custilla 
\acl custilla 
\akl custilla 
\ame custilla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="7f11aea2-0583-4947-8d46-12878fccc34b" ownerguid="409c6739-bef4-4237-b7d7-883aabaaf0ce"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7f11b059-1f9e-417c-a490-686c64284d4e" ownerguid="e67562d2-59c9-4d2e-87e5-aa994c3b7d30"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7f126665-ffc6-4695-86da-712c72e4577a" ownerguid="d8af8890-8c77-4bbb-920f-4af130da85c8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7f17ed3b-4fca-4112-b0a0-20272acdd919" ownerguid="d586a164-ac8f-4356-8aa8-07721c2b5e09"> -<ExampleWords> -<AUni ws="en">mail (n), post</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to letters that are delivered to you?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="7f188e67-b079-4943-be81-fd1c9b8ce3b0" ownerguid="41180113-78ed-4232-9b44-9b4df5759375"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cay</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cay</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kay</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kay</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kay</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a7b299e0-c78a-4279-9168-db242095977e" t="r" /> -</Morph> -<Msa> -<objsur guid="90ff85be-42f6-4a30-a658-5b1780202333" t="r" /> -</Msa> -<Sense> -<objsur guid="fa2ddb0d-7474-4400-9737-62b941034651" t="r" /> -</Sense> -</rt> -<rt class="WfiAnalysis" guid="7f1b2fc4-6bac-4581-a920-44c514817783" ownerguid="d708d1b3-2997-41df-96f1-2697a88c432b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="35a24cfb-98cd-485d-afe6-7ff7eedb3d23" t="o" /> -<objsur guid="b9a04f20-5b49-4bda-9a4b-20624ea9856b" t="o" /> -<objsur guid="0e4f727c-2f06-4b0a-a646-82e9c86b4f39" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="7f1c3292-9d1f-4271-8aa3-bbfd6511104c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">kinuy</AUni> -<AUni ws="qvm-x-acl">kinuy</AUni> -<AUni ws="qvm-x-akh">kinuy</AUni> -<AUni ws="qvm-x-akl">kinuy</AUni> -<AUni ws="qvm-x-ame">kinuy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kiñuy</AUni> -<AUni ws="qvm-x-acl">*kiñuy</AUni> -<AUni ws="qvm-x-akh">*kiñuy</AUni> -<AUni ws="qvm-x-akl">*kiñuy</AUni> -<AUni ws="qvm-x-ame">*kiñuy</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.991" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="810ba99d-647c-47a9-bd54-ebe4b427423e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kiñuy</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="784699c8-295a-41e9-beba-dbe5c8b3858e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1aafafe8-61f2-431e-b9ba-67721b7cc12f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kiñuy 
\entryTyp root 
\gENG 
\gSPN 
\e *kiñuy 
\c N0 
\mp +FinalC 
\ach kinuy 
\akh kinuy 
\acl kinuy 
\akl kinuy 
\ame kinuy</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="7f1dfb68-bf07-472d-a481-b802d2591ca6" ownerguid="6ea9bfc6-723c-466f-9efc-0992879ae47d"> -<Abbreviation> -<AUni ws="en">5.4.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.327" /> -<DateModified val="2022-9-23 16:55:8.327" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to circumcision.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Circumcision</AUni> -</Name> -<Questions> -<objsur guid="fc6cd9f7-c2a6-4597-87eb-9e122fc4c9a9" t="o" /> -<objsur guid="3a611aa3-67e8-430e-90e4-e1b059ee526b" t="o" /> -<objsur guid="ad187217-3508-4957-b13f-29c08e39581d" t="o" /> -<objsur guid="c025bb74-43d6-462e-8199-f278e7858330" t="o" /> -<objsur guid="39964a34-7d9b-4631-9a8a-8143f992f58d" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="adf6ad2b-7af9-4bd8-a7b4-f864b9dad86d" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="7f1e4971-c671-45e0-a800-0d1293c7ec09" ownerguid="167bfba5-0785-4bb5-a083-3ffbefa57897"> -<ExampleWords> -<AUni ws="en">differentiate, differentiation, discriminate, distinguish, rank, rate, rating, separate, hold in esteem, hold up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to choosing which of two or more things is better?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="7f2018f7-bef3-4c46-8bbd-dbcc563f7d66"> -<Analyses> -<objsur guid="bd8f8f0d-e1c1-4e7f-9467-6a882455dc95" t="o" /> -<objsur guid="f440b36d-dae0-4082-8d00-5b814ef4c416" t="o" /> -</Analyses> -<Checksum val="1634199748" /> -<Form> -<AUni ws="qvm-x-akh">kayno</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="7f22c17b-a158-4ee8-95f1-b005ba1ff8e4" ownerguid="d756b99f-e275-4bbd-91ab-dc98c9b7c831"> -<Form> -<AUni ws="qvm-x-ach">janac</AUni> -<AUni ws="qvm-x-acl">janac</AUni> -<AUni ws="qvm-x-akh">janak</AUni> -<AUni ws="qvm-x-akl">janak</AUni> -<AUni ws="qvm-x-ame">hanak</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="7f231fd3-1f7e-4930-945e-d6bfd7d0a340" ownerguid="6f7fa8b9-1610-432a-b7a5-06f5a6db505c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">million</AUni> -<AUni ws="es">millón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8f319bbd-7390-471f-b19e-5ac25dd33219" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="7f26b39c-514c-40b1-8f1c-beafdb3d59fd" ownerguid="69b0094a-af4b-454b-9cf3-2f1b81ec501f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="7f26c16a-be5e-439d-82a8-d5748adabc6a" ownerguid="9abbe345-97ed-46ce-98a2-42243d9c3033"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7f28f00a-32b5-4a4b-be7d-e46c5bcf8e2c" ownerguid="a3e905b8-107b-4311-bb50-0abe151131b3"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John <allowed> us to use his shovel.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">give permission, agree to, allow, authorize, consent to, give your consent, grant permission, let, permit, say someone can do something, not stand in someone's way, sanction, suffer, give someone the go-ahead, okay something, give someone the green light, give leave</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to giving someone permission to do something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7f2a122c-5e42-490a-88ce-4476b566f0ca" ownerguid="dfdcfa24-b013-4566-af4a-28ef1dfd4742"> -<ExampleWords> -<AUni ws="en">unit, measure, standard, scale, benchmark</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What general words refer to a unit of measure?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7f2b42e8-872b-4947-b2c1-140a74d88385" ownerguid="89bdb96f-aab6-474d-a015-11960f9c1a33"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="7f2b4a53-a64a-4663-9ca5-8765ede8bd2c" ownerguid="162238c7-09b4-4c1e-b666-63e562b29298"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="10efebff-e379-4908-b696-8f3ba0895a05" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="7689d542-cbfb-4134-9b4b-50bd32a8df19" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="7f315ebe-5fae-44eb-86be-6d9fa5fb6992" ownerguid="09b9a89f-38ee-4b45-99ed-a094074bd4f6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">big</AUni> -<AUni ws="es">grande</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="af3144fa-fe8f-4b47-af67-8395cf48bba4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="7f341698-3f00-4314-8bd2-b29fde568570" ownerguid="aae9abba-b532-4791-baee-79e7ca97789d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="FsClosedValue" guid="7f3e968d-e8cd-4f27-981f-dbf6fe76a77a" ownerguid="afcb93c3-7487-43bb-b6ef-e20d3699f66c"> -<Feature> -<objsur guid="e13ebd7a-824d-4405-8c23-e5a30f3d53a6" t="r" /> -</Feature> -<RefNumber val="0" /> -<Value> -<objsur guid="7fd2e9b4-402c-427c-a3e3-bbf386d652da" t="r" /> -</Value> -<ValueState val="0" /> -</rt> -<rt class="CmDomainQ" guid="7f3ed10f-0321-4e56-a34f-f10e978562d3" ownerguid="42133f78-9860-4bb7-8083-5559083f0714"> -<ExampleWords> -<AUni ws="en">odds</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a person's chances of winning?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7f3f70d3-be3a-4ccd-9bab-dcc6802c04ff" ownerguid="9d97ee4f-b5db-4100-9e5a-de46e1259f9b"> -<Form> -<AUni ws="qvm-x-ach">sëllu</AUni> -<AUni ws="qvm-x-acl">sëllu; sëllu; sëllo</AUni> -<AUni ws="qvm-x-akh">sëllu</AUni> -<AUni ws="qvm-x-akl">sëllu; sëllu; sëllo</AUni> -<AUni ws="qvm-x-ame">sëllu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="7f44f714-46ca-4f4b-88c5-cd06d94cd701" ownerguid="cc1ce010-8c44-4184-908e-74ed349ab0c8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="4cb6faec-6372-4095-8b5d-67fade334bfc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="7f45130a-cd24-4ac3-9870-200b4c2515c9" ownerguid="e7acb7d5-f605-4f9b-bd5b-72eb2d495936"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="7f481354-d363-410c-b318-e0f65f16bfc4" ownerguid="202b5306-b111-4068-9fba-c86d97bbeb28"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wall-walk</AUni> -<AUni ws="es">caminar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="236f055a-6af4-4b9e-b372-3315d3384e43" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7f4a391d-a96f-40a7-a38a-58544dfe4369" ownerguid="b59e3268-374b-4ff0-a0fc-8a7d53de996a"> -<Form> -<AUni ws="qvm-x-ach">argölla</AUni> -<AUni ws="qvm-x-acl">argölla</AUni> -<AUni ws="qvm-x-akh">argölla</AUni> -<AUni ws="qvm-x-akl">argölla</AUni> -<AUni ws="qvm-x-ame">argölla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="7f4c2e24-ace1-4d6f-ae0a-8a27d8de466a" ownerguid="29b970d1-2e6f-453f-bacc-b6f12ae5bed7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">carry</AUni> -<AUni ws="es">llevar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fc2e4b51-6086-4f7b-afbd-1d724c498e36" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7f4d4f2d-f814-4866-a70c-f40ae219ffcf" ownerguid="9a8f2f6a-a039-45dd-80d3-d1e0911907b2"> -<ExampleWords> -<AUni ws="en">to tax, charge tax, levy taxes, taxation, impose</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to charging tax?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7f505a81-cf38-43eb-8aca-99f018d4af2d" ownerguid="13d6c4b2-d416-44eb-bdcf-4d17867e1e60"> -<Form> -<AUni ws="qvm-x-ach">patatay</AUni> -<AUni ws="qvm-x-acl">patatay</AUni> -<AUni ws="qvm-x-akh">patatay</AUni> -<AUni ws="qvm-x-akl">patatay</AUni> -<AUni ws="qvm-x-ame">patatay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7f52529d-5e6e-4e45-a2b6-d1d28c35b3c9" ownerguid="818e33ff-590e-4d0e-b84e-67771324a545"> -<ExampleWords> -<AUni ws="en">hoe, pick, shovel, spade</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What types of digging tools are there?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7f54c57b-70e4-4dcf-bc50-c80501cc9d3a" ownerguid="539051a2-2e15-4ef7-8854-3c07d83ab898"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">primary.school</AUni> -<AUni ws="es">primaria</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cd5e757c-915e-49f4-8ad6-6481f7fea10d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="7f5566ec-ca2f-4811-ac81-9c9f89e6464b" ownerguid="670857e8-048a-4ab7-92a8-ebc28a5f914b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="7f568442-9430-4035-a1a9-55ee11e01657" ownerguid="7141bc81-88db-46c0-8cfd-90a5b466f8b3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">betray</AUni> -<AUni ws="es">traicionar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="397e207d-5c5d-4698-b501-c421c9440718" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="7f576a15-fb83-4c35-a708-7d10404522ba"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wayrush</AUni> -<AUni ws="qvm-x-acl">wayrush</AUni> -<AUni ws="qvm-x-akh">wayrush</AUni> -<AUni ws="qvm-x-akl">wayrush</AUni> -<AUni ws="qvm-x-ame">wayrush</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wayrush</AUni> -<AUni ws="qvm-x-acl">*wayrush</AUni> -<AUni ws="qvm-x-akh">*wayrush</AUni> -<AUni ws="qvm-x-akl">*wayrush</AUni> -<AUni ws="qvm-x-ame">*wayrush</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.627" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0eddf999-3481-44ff-9c43-014f612a556c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wayrush</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e90f63fe-8dda-40cd-9e90-18dd139bb726" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ceae8c05-8844-4b9a-8f46-9b9a470267be" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wayrush 
\entryTyp root 
\gENG 
\gSPN 
\e *wayrush 
\c N0 
\mp +FinalC 
\ach wayrush 
\akh wayrush 
\acl wayrush 
\akl wayrush 
\ame wayrush</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="7f5a5781-1c0f-4a25-b619-baf7774fb103"> -<Analyses> -<objsur guid="9dc7a6ed-842d-4e73-a731-451ab2ba1b4a" t="o" /> -</Analyses> -<Checksum val="-1730420490" /> -<Form> -<AUni ws="qvm-x-akh">runawan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="7f5d13bc-ab85-4c40-8503-6d36c5b66050" ownerguid="a387caa2-ccba-430a-96a1-09f6b233ab19"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="7f5f15da-d22c-4aa0-af9e-60d6f27e7fa5" ownerguid="595692da-68f4-41cd-a676-4ea47e15a74b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tell</AUni> -<AUni ws="es">contar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bb302077-07af-4981-ad5e-c91b9bb5f054" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7f610040-0350-457f-958d-556ef0493f4f" ownerguid="22001e38-caec-4b13-ac94-447b686176c8"> -<Form> -<AUni ws="qvm-x-ach">wagli</AUni> -<AUni ws="qvm-x-acl">wagli; wagle</AUni> -<AUni ws="qvm-x-akh">waqli</AUni> -<AUni ws="qvm-x-akl">waqli; waqle</AUni> -<AUni ws="qvm-x-ame">waqli</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="7f61fbdc-b5f0-46b1-88cb-4614ab345abd" ownerguid="a40ea667-1d58-4511-8f02-0ce11a010bfa"> -<Form> -<AUni ws="qvm-x-ach">anilïna</AUni> -<AUni ws="qvm-x-acl">anilïna</AUni> -<AUni ws="qvm-x-akh">anilïna</AUni> -<AUni ws="qvm-x-akl">anilïna</AUni> -<AUni ws="qvm-x-ame">anilïna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="7f636f39-d70f-4513-91c8-00e021e2b066" ownerguid="5b3b77dc-0773-482d-a906-edb842914a6c"> -<Form> -<AUni ws="qvm-x-ach">juchu</AUni> -<AUni ws="qvm-x-acl">juchu</AUni> -<AUni ws="qvm-x-akh">juchu</AUni> -<AUni ws="qvm-x-akl">juchu</AUni> -<AUni ws="qvm-x-ame">huchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="7f6407b5-096f-4757-8ba9-1ffd8b6042c9" ownerguid="dfc4cb14-2772-48c2-9c28-ca6af49cd78e"> -<Form> -<AUni ws="qvm-x-ach">tabernäculu</AUni> -<AUni ws="qvm-x-acl">tabernäculu; tabernäculu; tabernäculo</AUni> -<AUni ws="qvm-x-akh">tabernäculu</AUni> -<AUni ws="qvm-x-akl">tabernäculu; tabernäculu; tabernäculo</AUni> -<AUni ws="qvm-x-ame">tabernäculu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="7f66b540-2ef3-428c-b312-c6f6c5dd27f2" ownerguid="cac7515e-88d5-4c73-b473-159eef5aa28f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">or</AUni> -<AUni ws="es">o</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ccf00c50-f512-4af6-9cb0-96314ad3680c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="7f66f6ee-c166-4ec3-9900-0d074a20e444" ownerguid="2b698a91-88e5-43ec-8368-836fc2bf4376"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="7f687b12-8404-4ab9-857c-522f12e8cf8f" ownerguid="d7e4e538-039f-47bb-aa42-a2cf455668cc"> -<ExampleWords> -<AUni ws="en">sheaf</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to growing wheat?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7f6c0a2c-80ac-4812-acf5-a5fbf3b0fa58" ownerguid="9296e185-b820-4d67-9741-fa7bbdbc9291"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="7f6c81fb-02a4-415f-a363-fb11cc6b9254" ownerguid="7556a257-3703-40d3-91d3-c891fb250947"> -<Abbreviation> -<AUni ws="en">4.9.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.294" /> -<DateModified val="2022-9-23 16:55:8.294" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to supernatural beings--gods, spirits, other types of beings, which normally cannot be seen and do not belong to this world. Some people accept the existence of certain supernatural beings and not others. Mythological beings are those that were believed in during previous times but that are no longer believed in. Fictional beings are those that no one has ever believed in. An indication of whether most people believe in the supernatural being should be put in the definition.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>12 Supernatural Beings and Powers; 12A Supernatural Beings</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Supernatural being</AUni> -</Name> -<OcmCodes> -<Uni>776 Spirits and Gods</Uni> -</OcmCodes> -<Questions> -<objsur guid="efe10ed4-193a-475e-8879-b36d36306f60" t="o" /> -<objsur guid="39a4cb96-5ca5-47a2-a4c8-76c60fc936f4" t="o" /> -<objsur guid="5362d476-ae4e-49db-99e7-0be7f9454d09" t="o" /> -<objsur guid="82fe9286-773c-440e-ace7-b593181655f7" t="o" /> -<objsur guid="73cb7315-2fb0-403a-aa0c-e184c9576db9" t="o" /> -<objsur guid="8f6d8020-9bf9-446b-8d3f-84c113c34974" t="o" /> -<objsur guid="0f830bc8-478e-4816-8730-a7f92c420a69" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="7f6f17c3-7916-44d9-b31e-8e965b34332d" ownerguid="6c9bbb3a-b32d-4671-b22e-19f3871340a9"> -<Form> -<AUni ws="qvm-x-ach">alëta</AUni> -<AUni ws="qvm-x-acl">alëta</AUni> -<AUni ws="qvm-x-akh">alëta</AUni> -<AUni ws="qvm-x-akl">alëta</AUni> -<AUni ws="qvm-x-ame">alëta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7f715077-6c28-4182-92de-250861eb6da2" ownerguid="7556a257-3703-40d3-91d3-c891fb250947"> -<ExampleWords> -<AUni ws="en">religion, religious system, faith</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the system of belief and practice related to God?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="7f71d241-a7e6-412f-815c-7ac993b090e8" ownerguid="273ef9cc-651e-4fdb-8f65-39e117325c50"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="82e9c3df-e95c-44d6-998d-f3779aad6808" t="r" /> -</Morph> -<Msa> -<objsur guid="1b3c6562-1662-468e-b5c0-fcf36256167d" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="7f71e82b-1052-420e-9617-8208d9e3e0cf" ownerguid="75052baa-9846-4aeb-9f6d-25f104c641fb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="7f720c07-0bcd-451d-bfd6-d6fb10f55533" ownerguid="7ade32e9-68ed-4769-a59a-14558b85584a"> -<Form> -<AUni ws="qvm-x-ach">cüra</AUni> -<AUni ws="qvm-x-acl">cüra</AUni> -<AUni ws="qvm-x-akh">cüra</AUni> -<AUni ws="qvm-x-akl">cüra</AUni> -<AUni ws="qvm-x-ame">cüra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7f72dc39-81cc-416e-bc5a-f6103a58e59d" ownerguid="273f4956-f79f-4b1e-b552-466280a65e60"> -<ExampleWords> -<AUni ws="en">show, display, put something on show, put something on display, exhibit, be on show, be on display, unveil</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to showing something to a lot of people?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7f73f730-304d-4edf-a19a-ce9797d4545a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">blanquea</AUni> -<AUni ws="qvm-x-acl">blanquea</AUni> -<AUni ws="qvm-x-akh">blanquea</AUni> -<AUni ws="qvm-x-akl">blanquea</AUni> -<AUni ws="qvm-x-ame">blanquea</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+blanquear</AUni> -<AUni ws="qvm-x-acl">+blanquear</AUni> -<AUni ws="qvm-x-akh">+blanquear</AUni> -<AUni ws="qvm-x-akl">+blanquear</AUni> -<AUni ws="qvm-x-ame">+blanquear</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.969" /> -<DateModified val="2022-10-10 21:18:47.215" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c9c91f52-78a4-4012-8222-74d9d2018652" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+blanquear</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b6e4d5f8-3fca-4486-8642-d29ff2e22d14" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="38b902a8-1bb7-4cc5-84aa-6f77223cd00f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +blanquear 
\entryTyp root 
\gENG 
\gSPN 
\e +blanquear 
\c V1 
\ach blanquea 
\akh blanquea 
\acl blanquea 
\akl blanquea 
\ame blanquea</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7f746594-9782-45dd-940f-321f808e1a3b" ownerguid="47f170eb-5f1d-49a5-85bb-240047f392c0"> -<ExampleWords> -<AUni ws="en">soften</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to making something soft?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7f7552d9-a03d-460b-95d8-577f3bac3c3c" ownerguid="ca9ba8f2-93d5-4b02-95ef-5d19575c8aeb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ouch!</AUni> -<AUni ws="es">ay!</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a7d8dca3-ac77-49f5-9165-a7693ba30dfa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7f75bf48-197e-4cde-895a-d6db76387aba" ownerguid="5b5bcd42-09bb-4c2f-a2da-569cfa69b6ac"> -<ExampleWords> -<AUni ws="en">distract someone's attention, divert attention, distracted, distraction, diversion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to trying to stop someone from paying attention to something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="7f798c10-5a3f-4979-baf1-ced2dc457311"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mayordo:mu</AUni> -<AUni ws="qvm-x-acl">mayordo:mu; mayordo:mu; mayordo:mo</AUni> -<AUni ws="qvm-x-akh">mayordo:mu</AUni> -<AUni ws="qvm-x-akl">mayordo:mu; mayordo:mu; mayordo:mo</AUni> -<AUni ws="qvm-x-ame">mayordo:mu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mayordomo</AUni> -<AUni ws="qvm-x-acl">+mayordomo</AUni> -<AUni ws="qvm-x-akh">+mayordomo</AUni> -<AUni ws="qvm-x-akl">+mayordomo</AUni> -<AUni ws="qvm-x-ame">+mayordomo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.376" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="55054a60-71a9-4aca-977a-2b2aa72b2637" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mayordomo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="831f5ac9-b82a-4d35-9e4c-cafbc7fcdfa2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ab6fd3b2-80ce-4357-8f68-0ea1668edf81" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mayordomo 
\entryTyp root 
\gENG mayordomo 
\gSPN mayordomo 
\e +mayordomo 
\c N0 
\ach mayordo:mu 
\akh mayordo:mu 
\acl mayordo:mu / _# 
\acl mayordo:mu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mayordo:mo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mayordo:mu / _# 
\akl mayordo:mu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mayordo:mo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mayordo:mu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="7f7b40a3-bbc4-4687-8c2b-668375d0d311" ownerguid="776300df-bc16-4f81-a296-a5cb15251ccc"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="7f7bac63-3bef-4c44-a598-0ea33e3674c6" ownerguid="d71d0e76-5cd5-48cd-b6ce-a1456eb1d24b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fry</AUni> -<AUni ws="es">freir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="77ea1384-9cd4-4224-b704-b9be784f48bb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7f7f5739-3e6f-4201-842a-31db8318ef8f" ownerguid="4f19ab95-428a-4a0b-a069-ca8be6b72b08"> -<ExampleWords> -<AUni ws="en">freeload, freeloader, sponge, sponger</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a visitor who stays for a long time but doesn't pay or help with the work?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="7f7fc197-5064-43c0-af51-2919fb7355c9" ownerguid="349f0278-7998-422a-9c3b-6053989cbb20"> -<Abbreviation> -<AUni ws="en">9.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use the domains in this section for words that indicate a logical relation between two or more words or sentences. Use this domain for words that indicate an unspecified logical relation between people, things, or situations.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89 Relations; 89A Relation</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Connected with, related</AUni> -</Name> -<Questions> -<objsur guid="66d8a888-d5f1-4bc5-b7a5-52e0214e7901" t="o" /> -<objsur guid="4e182689-8e24-45f7-b399-8a663e75420e" t="o" /> -<objsur guid="aeaec051-998f-4d45-8a97-2caf019da8e5" t="o" /> -<objsur guid="4797d895-e832-4c99-97a5-97b49b410e6d" t="o" /> -<objsur guid="85310f35-ab47-4159-a3f3-8ed6594b765b" t="o" /> -<objsur guid="1b7b424e-db34-4731-83ef-864e533b6659" t="o" /> -<objsur guid="4a8ef816-52e5-44bc-bdc7-f9a049bb4769" t="o" /> -<objsur guid="de37157c-8e4b-4a65-a257-576fc9c51138" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="265f5645-94cb-485c-8bf9-0a3ab2354f63" t="o" /> -<objsur guid="b2fd2d29-1389-4114-91a8-15b8d9742794" t="o" /> -<objsur guid="f02ae505-d6b7-4b30-9d97-8505d0d1a0c7" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="7f81453a-b307-40b1-a888-e3c335057fab"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">goñu; goñu:</AUni> -<AUni ws="qvm-x-acl">goño:; goñu; goño</AUni> -<AUni ws="qvm-x-akh">qoñu; qoñu:</AUni> -<AUni ws="qvm-x-akl">qoño:; qoñu; qoño</AUni> -<AUni ws="qvm-x-ame">quñu; quñu:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*quñu:</AUni> -<AUni ws="qvm-x-acl">*quñu:</AUni> -<AUni ws="qvm-x-akh">*quñu:</AUni> -<AUni ws="qvm-x-akl">*quñu:</AUni> -<AUni ws="qvm-x-ame">*quñu:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.861" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d2cb95c8-b492-4521-a818-e942ba2ae499" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*quñu:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0da9375e-bdc3-44da-8c15-5d38ec1e4ff3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7201aa6f-74a3-45c8-9595-d6024c3559a4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *quñu: 
\entryTyp root 
\gENG be.warm 
\gSPN ser.cálido 
\e *quñu: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach goñu foreshortened 
\ach goñu: 
\akh qoñu foreshortened 
\akh qoñu: 
\mp +underlong 
\acl goño: 
\acl goñu foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl goño foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\mp +underlong 
\akl qoño: 
\akl qoñu foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qoño foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame quñu foreshortened 
\ame quñu: 
\mcc *quñu: / ~_ PNCT3</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="7f81b0c4-140d-43aa-bb5b-86707ab3ea3d" ownerguid="eceef2d1-1b9b-46b5-9aa8-a7aa1dd9b68d"> -<Form> -<AUni ws="qvm-x-ach">jirish</AUni> -<AUni ws="qvm-x-acl">jirish</AUni> -<AUni ws="qvm-x-akh">jirish</AUni> -<AUni ws="qvm-x-akl">jirish</AUni> -<AUni ws="qvm-x-ame">hirish</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7f86cc65-e790-4cef-b947-eb038b450a8b" ownerguid="ccbbd16f-58c5-45c1-bfff-1fba64d9740e"> -<ExampleWords> -<AUni ws="en">complete, finish, succeed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(23) What words are used to indicate that something has been completed?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="7f887893-abdb-462a-91bb-79195a7c19ea" ownerguid="d7cd6668-9bae-4d42-bca4-f870f4885424"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">qui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">qui</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ki</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="8fc7d848-8007-4dcc-8c36-9b0b4da26f05" t="r" /> -</Morph> -<Msa> -<objsur guid="bbbfe118-132f-4744-9f12-6945daa4a632" t="r" /> -</Msa> -<Sense> -<objsur guid="7a11c70f-471b-4542-a37b-bcfc9731537d" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="7f8b2a13-8686-44bc-84fa-ca5df877023e" ownerguid="191c6030-6e33-4380-9a14-aa0ad4db4643"> -<Form> -<AUni ws="qvm-x-ach">orgullösa</AUni> -<AUni ws="qvm-x-acl">orgullösa</AUni> -<AUni ws="qvm-x-akh">orgullösa</AUni> -<AUni ws="qvm-x-akl">orgullösa</AUni> -<AUni ws="qvm-x-ame">orgullösa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7f8ff2b3-5c37-4824-b56e-e0495d276ee5" ownerguid="6681f03b-06c4-4509-9253-e4739c9c1614"> -<ExampleWords> -<AUni ws="en">beg, beg for, panhandle, bum, mooch off, ask alms</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to begging?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="7f91aa6d-f342-4fb9-9448-69d694cda9c5" ownerguid="aaf9d375-f0a0-4c7b-bbf8-3c7ffd4f5a52"> -<Abbreviation> -<AUni ws="en">9.3.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a large degree.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>78A Much, Little</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">To a large degree</AUni> -</Name> -<Questions> -<objsur guid="d23a1035-2888-4c25-aa03-301220d84242" t="o" /> -<objsur guid="1dce480b-2d79-4089-bc97-6a8345242aeb" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="7f96b8bb-5ff4-4be1-ae43-b3c7e32b9a71"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tishna</AUni> -<AUni ws="qvm-x-acl">tishna</AUni> -<AUni ws="qvm-x-akh">tishna</AUni> -<AUni ws="qvm-x-akl">tishna</AUni> -<AUni ws="qvm-x-ame">tishna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tishna</AUni> -<AUni ws="qvm-x-acl">*tishna</AUni> -<AUni ws="qvm-x-akh">*tishna</AUni> -<AUni ws="qvm-x-akl">*tishna</AUni> -<AUni ws="qvm-x-ame">*tishna</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.926" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e75f5079-d24a-4be2-a3ef-7d90c733469e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tishna</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="433fa810-2219-4631-832e-8d467ecda89e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bb6f95ac-84db-411f-a58f-5ef627d8bd62" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tishna 
\entryTyp root 
\gENG soot 
\gSPN tizne 
\e *tishna 
\c N0 
\ach tishna 
\akh tishna 
\acl tishna 
\akl tishna 
\ame tishna</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="7f99006f-541b-4816-a9c7-a8bb7ae56723" ownerguid="21167445-f1b1-49b4-b147-bc792616c432"> -<ExampleWords> -<AUni ws="en">time, temporal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to time?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="7f9bde25-211e-46c9-bb54-2705591c11a9" ownerguid="3196b963-90b0-44ec-99ac-7ea5ba3a41a4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="7f9cadf3-e14a-491f-a9fe-90081d15405c" ownerguid="09aa0843-05ca-4889-9c5f-372905366911"> -<Form> -<AUni ws="qvm-x-ach">grämus</AUni> -<AUni ws="qvm-x-acl">grämus</AUni> -<AUni ws="qvm-x-akh">grämus</AUni> -<AUni ws="qvm-x-akl">grämus</AUni> -<AUni ws="qvm-x-ame">grämus</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="7f9d22e6-a8f5-4487-978f-d17b9ecf2f37" ownerguid="c3ae3eef-eb79-4c04-8cab-55b5b0e352b3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8df82b69-64cf-4e3d-9122-0568fb2230be" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7fa1afa1-0eac-421d-b4fc-035ec088fa62" ownerguid="b6e45998-9f6a-4b19-9cda-62410a11afa2"> -<ExampleWords> -<AUni ws="en">practice sorcery, do magic, work magic, cast a spell, put a spell on, put a curse on, bewitch, conjure, invoke, enchant, bedevil, entrance (v), mesmerize, wave a wand, jinx</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to doing something using sorcery?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="7fa24465-0011-4453-8025-520125ce1d8b"> -<Form> -<Str> -<Run ws="en">6</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="7fa2618c-d076-4428-a241-ab512a45c216" ownerguid="80f26fbc-ca89-4789-996d-4c09547f2504"> -<ExampleWords> -<AUni ws="en">leave undone, incomplete, unfinished</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to not completing a task?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7fa3ad5c-81ed-44cd-90d8-5022ffbda8bd" ownerguid="05e9ce30-3079-4519-8928-fb3c81996a28"> -<Form> -<AUni ws="qvm-x-ach">guepchi</AUni> -<AUni ws="qvm-x-acl">guepchi; guepche</AUni> -<AUni ws="qvm-x-akh">qepchi</AUni> -<AUni ws="qvm-x-akl">qepchi; qepche</AUni> -<AUni ws="qvm-x-ame">qipchi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="7fa7e166-5942-436b-8d3f-13d56519233b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alma</AUni> -<AUni ws="qvm-x-acl">alma</AUni> -<AUni ws="qvm-x-akh">alma</AUni> -<AUni ws="qvm-x-akl">alma</AUni> -<AUni ws="qvm-x-ame">alma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+alma</AUni> -<AUni ws="qvm-x-acl">+alma</AUni> -<AUni ws="qvm-x-akh">+alma</AUni> -<AUni ws="qvm-x-akl">+alma</AUni> -<AUni ws="qvm-x-ame">+alma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.709" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d1b1020e-de14-4f11-aaa2-890d12c4425f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+alma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7450fe55-d556-4ef3-874e-93725b06829d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a13c2ff6-9c41-47ff-be93-775adc41e4a0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +alma 
\entryTyp root 
\gENG spirit 
\gSPN alma 
\e +alma 
\c N0 
\ach alma 
\akh alma 
\acl alma 
\akl alma 
\ame alma 
\i almatacashga. - micanar 
\i PSA 11.5 Wanutsicogcunata y atacagcunataga alma y vïdami chiquin.
\q</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="7fa965df-7037-4a31-8878-a6a742c4b245" ownerguid="cb5d144c-d1f1-45e7-9ba4-171ceb5539a8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cut</AUni> -<AUni ws="es">cortar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="75343870-cb8a-408b-b811-95583fb6384c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7fa9b462-1ad2-4684-b060-5e67f8610b3d" ownerguid="28b3fe11-1c56-46d9-85f8-24e6867e5452"> -<Form> -<AUni ws="qvm-x-ach">contentu; contento</AUni> -<AUni ws="qvm-x-acl">contentu; contentu; contento</AUni> -<AUni ws="qvm-x-akh">contentu; contento</AUni> -<AUni ws="qvm-x-akl">contentu; contentu; contento</AUni> -<AUni ws="qvm-x-ame">contentu; contento</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7fac9e00-97a0-4e94-9874-6d7d49be5b21" ownerguid="c8aea8b2-4088-4d20-a0d2-45c2ad974ee1"> -<ExampleWords> -<AUni ws="en">furrow, groove, rut, scratch, crack, score, incision, slit, chamfer, channel, gutter, trench, ditch, moat, trough, seam, line, fold, wrinkle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a furrow?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7fae4f1d-27cb-4c31-b74b-ba080cbe3ac3" ownerguid="7486c9ef-5a75-4a89-85ea-7065c61e4e4a"> -<Form> -<AUni ws="qvm-x-ach">publicu; público</AUni> -<AUni ws="qvm-x-acl">publicu; publicu; publico</AUni> -<AUni ws="qvm-x-akh">publicu; público</AUni> -<AUni ws="qvm-x-akl">publicu; publicu; publico</AUni> -<AUni ws="qvm-x-ame">publicu; público</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7fae92ee-ab63-4500-b445-ea652e7ac5f7" ownerguid="892b66f4-5dfd-4451-a491-4c4fd2179081"> -<ExampleWords> -<AUni ws="en">bribe, offer a bribe, give a bribe, take a bribe, bribery, corrupt, corruption, kickback, money under the table</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to bribing someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7faec31e-7e7b-4eab-ab1a-7f94e8b8d7f0" ownerguid="ca91e41a-81c3-4c96-87e6-f67477fcd686"> -<ExampleWords> -<AUni ws="en">adopt, foster, guardian</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to rearing a child who is not your own?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="7fb17e9a-74c4-48b5-ae43-af12650884b3" ownerguid="202218a0-2594-4641-ae74-e961ceaabd60"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">manda</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">manda</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">manda</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">manda</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">manda</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e20487dd-65cf-4afd-a413-3e123f8036b2" t="r" /> -</Morph> -<Msa> -<objsur guid="64a2dfae-6056-4b8a-9e97-83a27439223d" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="7fb2a453-3db7-4a50-bd47-55991d7b66a1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">veinti; veinte</AUni> -<AUni ws="qvm-x-acl">veinti; veinti; veinte</AUni> -<AUni ws="qvm-x-akh">veinti; veinte</AUni> -<AUni ws="qvm-x-akl">veinti; veinti; veinte</AUni> -<AUni ws="qvm-x-ame">veinti; veinte</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+veinte</AUni> -<AUni ws="qvm-x-acl">+veinte</AUni> -<AUni ws="qvm-x-akh">+veinte</AUni> -<AUni ws="qvm-x-akl">+veinte</AUni> -<AUni ws="qvm-x-ame">+veinte</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.353" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7aa48861-6ceb-4bbd-b98d-67d8ed3d0e04" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+veinte</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="23961839-60a4-4f8e-a1cd-779d2332cff6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="74f69fa2-5a4a-4266-ae28-203053835816" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +veinte 
\entryTyp root 
\gENG twenty 
\gSPN veinte 
\e +veinte 
\c N0 
\mp +FinalI 
\ach veinti / ~_# 
\ach veinte / _# 
\akh veinti / ~_# 
\akh veinte / _# 
\acl veinti / ~_# 
\acl veinti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl veinte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl veinti / ~_# 
\akl veinti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl veinte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame veinti / ~_# 
\ame veinte / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="7fb549a8-ad90-4405-b1cb-bbec85bf82f9" ownerguid="269a8ca0-f9ef-4958-8aaf-b1443a7357fb"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="7fb6d72a-958e-4289-ab6d-e1e5a2a9c52e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ushtu:chi</AUni> -<AUni ws="qvm-x-acl">ushto:chi; ushto:chi; ushto:che</AUni> -<AUni ws="qvm-x-akh">ushtu:chi</AUni> -<AUni ws="qvm-x-akl">ushto:chi; ushto:chi; ushto:che</AUni> -<AUni ws="qvm-x-ame">ushtu:chi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ushtuchi</AUni> -<AUni ws="qvm-x-acl">*ushtuchi</AUni> -<AUni ws="qvm-x-akh">*ushtuchi</AUni> -<AUni ws="qvm-x-akl">*ushtuchi</AUni> -<AUni ws="qvm-x-ame">*ushtuchi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.292" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="27378db6-3d26-4667-9e88-61ac7980c5f7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ushtuchi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="04b8c3f3-e3ae-4f78-a822-083575c91c39" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dfa8a832-cecf-40ee-adf0-52fca4ef2343" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ushtuchi 
\entryTyp root 
\gENG chigoe 
\gSPN nigua 
\e *ushtuchi 
\c N0 
\mp +FinalI 
\ach ushtu:chi 
\akh ushtu:chi 
\acl ushto:chi / _# 
\acl ushto:chi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ushto:che +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ushto:chi / _# 
\akl ushto:chi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ushto:che +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ushtu:chi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="7fbbd4ab-a249-4c64-ab2f-5b03455a7a2b" ownerguid="e0cd4a33-d8bb-45df-86f1-222d52ec9e4c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">esteem</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e1929f77-7a20-4e4a-94e6-da125c17cc51" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="7fbe76a0-ac41-4232-9fd6-2678e48a452a" ownerguid="4153416a-784d-4f7c-a664-2640f7979a14"> -<ExampleWords> -<AUni ws="en">canal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a man-made river?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7fc29ad8-a72a-4413-86b3-4be969b2c18a" ownerguid="57a5e538-15ff-4d25-acda-f8218a89d219"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">eagle</AUni> -<AUni ws="es">águila</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f8422bae-0481-48fe-ad2c-4bb6f03b0559" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="7fc48ea4-e863-4e6b-9fb5-b3b3b483590a" ownerguid="d9a499aa-805c-45f0-b43f-2c394ceff053"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">gargu; garga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">gargu; gargo; garga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qarqu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qarqu; qarqo; qarqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qarqu; qarqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="3fd65fc8-17a4-49fe-89ac-3f1c84143c12" t="r" /> -</Morph> -<Msa> -<objsur guid="c7dbec8d-838d-4a92-a15b-4f3d5b563513" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="7fc491ca-add8-471f-b661-d7e7a0d5775d" ownerguid="d93aaf42-09e2-4d80-b7c7-3ad03993f210"> -<Form> -<AUni ws="qvm-x-ach">patiu; patio</AUni> -<AUni ws="qvm-x-acl">patiu; patiu; patio</AUni> -<AUni ws="qvm-x-akh">patiu; patio</AUni> -<AUni ws="qvm-x-akl">patiu; patiu; patio</AUni> -<AUni ws="qvm-x-ame">patiu; patio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="7fc5c4e8-8d66-4a8e-9368-9c85043c95a1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fle:cha</AUni> -<AUni ws="qvm-x-acl">fle:cha</AUni> -<AUni ws="qvm-x-akh">fle:cha</AUni> -<AUni ws="qvm-x-akl">fle:cha</AUni> -<AUni ws="qvm-x-ame">fle:cha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+flecha</AUni> -<AUni ws="qvm-x-acl">+flecha</AUni> -<AUni ws="qvm-x-akh">+flecha</AUni> -<AUni ws="qvm-x-akl">+flecha</AUni> -<AUni ws="qvm-x-ame">+flecha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.568" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="74c7c96c-ec93-4f7e-821a-66184c7aac35" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+flecha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9b9beef3-780c-424d-aeab-2edfbc83124a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3ac9df26-e3b1-4635-bf06-06f5bf957fc3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +flecha 
\entryTyp root 
\gENG arrow 
\gSPN flecha 
\e +flecha 
\c N0 
\ach fle:cha 
\akh fle:cha 
\acl fle:cha 
\akl fle:cha 
\ame fle:cha</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="7fc7916b-204e-4c68-b0b6-f3d0ddc0a393"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">winaptin</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="7fca2934-849c-4786-9e41-bea9b6e9318b" ownerguid="7c7fc1b6-3775-4881-bbe0-9d0ce50e42a9"> -<ExampleWords> -<AUni ws="en">put on top, superimpose</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to putting something on top of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7fcbc15a-3aaf-4d26-83f1-21cb4a55947c" ownerguid="175a97dc-d29c-40d3-8b7d-31c0520d4980"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="cc89ab31-93c3-4926-a0a0-c523e541417d" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">recite</AUni> -<AUni ws="es">recitar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7591e213-98a4-4a89-b9fd-fbc53802f311" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="7fcc64f4-d39e-4ba2-8651-7c526c66f0fc" ownerguid="9dca62a8-2127-46bd-87d1-6057b729c7c6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yarpa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yarpa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yarpa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yarpa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yarpa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="887ae17a-ced7-4093-8e19-bf260b43d5a9" t="r" /> -</Morph> -<Msa> -<objsur guid="7440cecd-7493-4b9e-86fd-dbf27ad2bfed" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="7fceabf9-51e6-44c8-9802-e4a341c70151" ownerguid="5a39edae-1ace-4889-b636-1dfd2a1bcc3c"> -<ExampleWords> -<AUni ws="en">push out, eject, squeeze out, expel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to pushing something out of something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7fcf5c65-3276-4c69-9e42-8c887c0f6556" ownerguid="7140238c-a839-4012-9732-77099e69ddd3"> -<Form> -<AUni ws="qvm-x-ach">chunya; chunyä</AUni> -<AUni ws="qvm-x-acl">chunya; chunyä</AUni> -<AUni ws="qvm-x-akh">chunya; chunyä</AUni> -<AUni ws="qvm-x-akl">chunya; chunyä</AUni> -<AUni ws="qvm-x-ame">chunya; chunyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="7fd0d27f-96fc-4fa2-b46b-cfb232ae33dc" ownerguid="dc9c4196-9030-4e82-872c-4c1464ba758f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="04ef7e1f-2724-46ca-a7a0-6b89408f34b9" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="0e041d2a-4dd3-4308-9ea0-4dce3130282a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7fd1ec60-5f15-4b09-bd1e-97f07ab4155d" ownerguid="1983847b-17b5-4bb0-b459-074e0259659a"> -<Form> -<AUni ws="qvm-x-ach">frenti; frente</AUni> -<AUni ws="qvm-x-acl">frenti; frenti; frente</AUni> -<AUni ws="qvm-x-akh">frenti; frente</AUni> -<AUni ws="qvm-x-akl">frenti; frenti; frente</AUni> -<AUni ws="qvm-x-ame">frenti; frente</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="FsSymFeatVal" guid="7fd2e9b4-402c-427c-a3e3-bbf386d652da" ownerguid="e13ebd7a-824d-4405-8c23-e5a30f3d53a6"> -<Abbreviation> -<AUni ws="en">+</AUni> -<AUni ws="es">+</AUni> -</Abbreviation> -<Description> -<AStr ws="en"> -<Run ws="en">+</Run> -</AStr> -<AStr ws="es"> -<Run ws="es">+</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">+</AUni> -<AUni ws="es">+</AUni> -</Name> -<ShowInGloss val="True" /> -</rt> -<rt class="CmDomainQ" guid="7fd3c1b0-95b4-4ca7-a778-c1755a807e3b" ownerguid="250a52e4-ede0-427d-8382-46a5742d4f96"> -<ExampleWords> -<AUni ws="en">ward, unit, operating room, operating theater, emergency room, casualty department, accident and emergency, lab, x-ray room, nurses' station, intensive care, surgery, waiting room, mortuary, morgue</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the parts of a hospital?</AUni> -</Question> -</rt> -<rt class="MoInflAffMsa" guid="7fd5787e-fab9-4d36-bb4a-82d01c28f736" ownerguid="1c324d75-00b9-47c2-93b1-95870b2bbc6c"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="34426d22-8e6e-44f9-9308-73fe011a7617" t="r" /> -</Slots> -</rt> -<rt class="LexSense" guid="7fd68880-5653-4c8f-ada0-ab34a18beaa4" ownerguid="035874f8-c759-4c87-a050-6e3f305cb6ac"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hide</AUni> -<AUni ws="es">escondido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2b279f5f-9aef-41e6-8c66-71225dddd883" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7fd6f9cf-129d-4587-ae30-6b05c7b80de9" ownerguid="d47a79d3-f893-4883-91a2-945fda565990"> -<Form> -<AUni ws="qvm-x-ach">divulga</AUni> -<AUni ws="qvm-x-acl">divulga</AUni> -<AUni ws="qvm-x-akh">divulga</AUni> -<AUni ws="qvm-x-akl">divulga</AUni> -<AUni ws="qvm-x-ame">divulga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7fdd4cd9-f9e4-4433-88ca-4dbb1066afba" ownerguid="ec8e1481-827c-4554-bf50-0d3f592f3702"> -<ExampleWords> -<AUni ws="en">soft, coarse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe cloth?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="7fdd6f78-ac26-4f48-b4fb-b9ca6e675ab0" ownerguid="935da513-126e-4cab-8e07-625458821181"> -<ExampleWords> -<AUni ws="en">unified</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a group that has been formed?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="7fdd7e8d-0454-45a0-8bf5-45175a165fad" ownerguid="164759d4-ed58-433c-9d8d-c2f9d1847e30"> -<Form> -<AUni ws="qvm-x-ach">enänu</AUni> -<AUni ws="qvm-x-acl">enänu; enänu; enäno</AUni> -<AUni ws="qvm-x-akh">enänu</AUni> -<AUni ws="qvm-x-akl">enänu; enänu; enäno</AUni> -<AUni ws="qvm-x-ame">enänu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="7fdf00b4-3d4b-4e59-a222-10596cb800ea" ownerguid="deef10e2-a871-4288-82fa-580dc17ca4a4"> -<Form> -<AUni ws="qvm-x-ach">piqui</AUni> -<AUni ws="qvm-x-acl">piqui; piqui; pique</AUni> -<AUni ws="qvm-x-akh">piki</AUni> -<AUni ws="qvm-x-akl">piki; piki; pike</AUni> -<AUni ws="qvm-x-ame">piki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="7fe18aa0-168b-4c50-9a52-83aed60b640e" ownerguid="82d5ad14-fa2a-4853-ba84-32d94531126d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">smell</AUni> -<AUni ws="es">olfatear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5ee5efc9-f32d-446b-8981-227ad00988c4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7fe3c5b2-4fa9-49b7-89d0-918109013758" ownerguid="8855211f-4a6e-477f-be4d-01fdbeeb476e"> -<Form> -<AUni ws="qvm-x-ach">sustantïvu</AUni> -<AUni ws="qvm-x-acl">sustantïvu; sustantïvu; sustantïvo</AUni> -<AUni ws="qvm-x-akh">sustantïvu</AUni> -<AUni ws="qvm-x-akl">sustantïvu; sustantïvu; sustantïvo</AUni> -<AUni ws="qvm-x-ame">sustantïvu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="7fe69c4c-2603-4949-afca-f39c010ad24e" ownerguid="ba06de9e-63e1-43e6-ae94-77bea498379a"> -<Abbreviation> -<AUni ws="en">2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the functions and actions of the whole body. Use the subdomains in this section for functions, actions, secretions, and products of various parts of the body. In each domain include any special words that are used of animals.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>8C Physiological Products of the Body; 23 Physiological Processes and States</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Body functions</AUni> -</Name> -<OcmCodes> -<Uni>147 Physiological Data; 514 Elimination</Uni> -</OcmCodes> -<Questions> -<objsur guid="c2dda22f-4f2e-4a59-9e73-212d567eb079" t="o" /> -<objsur guid="57b6406f-9f1f-4597-8d25-35dcad2dadf6" t="o" /> -<objsur guid="d69e75f2-368c-4d4b-a965-063eb187bd04" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="a1959b00-9702-4b45-ac46-93f18d3bc5e6" t="o" /> -<objsur guid="8b52a9d6-a07e-4ac8-8f84-6eb5ba578d97" t="o" /> -<objsur guid="75825d72-695b-4e92-9f33-0f3ab4d7dd11" t="o" /> -<objsur guid="591fd489-36e6-4ffd-a976-58876d851829" t="o" /> -<objsur guid="8c41d2d1-6da6-4ab8-8b29-7e226192d64e" t="o" /> -<objsur guid="d395edc8-fb58-4ba4-8446-dacf8ea0477a" t="o" /> -<objsur guid="e7f94aea-ba50-481d-b640-d5cd8bdedc72" t="o" /> -<objsur guid="cbc24a98-1c64-467e-98aa-251a28e4c0b8" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="7fe6ee7b-3eca-4003-bb59-cda502635ebe"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">9</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="7fe748c4-4ee6-45f7-b8e5-7c68966171d6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">va:li; va:li</AUni> -<AUni ws="qvm-x-acl">va:li; va:li; va:le</AUni> -<AUni ws="qvm-x-akh">va:li; va:li</AUni> -<AUni ws="qvm-x-akl">va:li; va:li; va:le</AUni> -<AUni ws="qvm-x-ame">va:li; va:li</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vale</AUni> -<AUni ws="qvm-x-acl">+vale</AUni> -<AUni ws="qvm-x-akh">+vale</AUni> -<AUni ws="qvm-x-akl">+vale</AUni> -<AUni ws="qvm-x-ame">+vale</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.332" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1adfecf2-0415-47ad-a211-0b257e16a576" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vale</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f388ddf9-c41d-4d4e-be40-063bec82a996" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1c03b708-0b24-407a-9f2f-6bca9a1e8d8b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vale 
\entryTyp root 
\gENG receipt 
\gSPN vale 
\e +vale 
\c N0 
\mp +FinalI 
\ach va:li / _# 
\ach va:li / ~_# 
\akh va:li / _# 
\akh va:li / ~_# 
\acl va:li / _# 
\acl va:li +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl va:le +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl va:li / _# 
\akl va:li +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl va:le +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame va:li / _# 
\ame va:li / ~_# 
\mcc +vale / ~_ 3P</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="7fe7626d-bcfc-490a-981f-61a702901ca5" ownerguid="5ea4f6af-0125-4cdd-8a90-8a2d9089df5f"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="c5fd67e1-1643-4545-af37-b4729ad8d8a7" t="o" /> -<objsur guid="171453f4-ff22-4530-8cdc-1f7170cd63d5" t="o" /> -<objsur guid="bf3ccda4-9f43-4ebb-9d5d-3aa7a5357702" t="o" /> -<objsur guid="d0d64b02-d054-4461-9eab-3d6680f179eb" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="7fe8dce3-d9d1-4a1b-a630-605110c82ce0" ownerguid="69ab79c6-a469-4aca-9bab-1f39c2ef6ce2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.awake</AUni> -<AUni ws="es">ser.despierto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5657e664-8d9d-443d-8cb0-8b5325e05c33" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="7fe9dad7-6fb0-4829-8f85-482da9040667"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pasa:ji; pasa:ji</AUni> -<AUni ws="qvm-x-acl">pasa:ji; pasa:ji; pasa:je</AUni> -<AUni ws="qvm-x-akh">pasa:ji; pasa:ji</AUni> -<AUni ws="qvm-x-akl">pasa:ji; pasa:ji; pasa:je</AUni> -<AUni ws="qvm-x-ame">pasa:ji; pasa:ji</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pasaje</AUni> -<AUni ws="qvm-x-acl">+pasaje</AUni> -<AUni ws="qvm-x-akh">+pasaje</AUni> -<AUni ws="qvm-x-akl">+pasaje</AUni> -<AUni ws="qvm-x-ame">+pasaje</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.729" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="13d525c0-9114-4476-b167-a497c0a88a64" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pasaje</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="81ef87d3-af48-451b-8457-d55f25e83709" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0998102a-9702-4420-90d0-a4b0235d560e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pasaje 
\entryTyp root 
\gENG fare 
\gSPN pasaje 
\e +pasaje 
\c N0 
\mp +FinalI 
\ach pasa:ji / _# 
\ach pasa:ji / ~_# 
\akh pasa:ji / _# 
\akh pasa:ji / ~_# 
\acl pasa:ji / _# 
\acl pasa:ji +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pasa:je +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pasa:ji / _# 
\akl pasa:ji +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pasa:je +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pasa:ji / _# 
\ame pasa:ji / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="7feafcd1-5cfe-4e1a-9511-2ee8c753e621" ownerguid="c45e315b-de04-4199-88ac-9a4ac3a59cd7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="64296845-bcf0-4ef1-9542-5bd7cbfefa82" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="7fec728d-5d30-4419-929a-a414014373a9" ownerguid="1b905486-22ee-41e4-89cf-3c0e512bbc63"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="7fed6281-326a-4a15-8cbf-dc574594da19" ownerguid="5446b5cf-f05a-4bb2-89eb-ce63e27040f3"> -<Abbreviation> -<AUni ws="en">4.2.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.212" /> -<DateModified val="2022-9-23 16:55:8.212" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to playing music.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Play music</AUni> -</Name> -<Questions> -<objsur guid="3f646064-ed6c-422f-8295-fd00535ae707" t="o" /> -<objsur guid="854fc92e-47dc-4edb-b5a8-d634962803d7" t="o" /> -<objsur guid="8ec45f31-86e8-491d-9f79-78b521ae8dab" t="o" /> -<objsur guid="61b7ac13-2ef2-47fa-8392-3b826dc55791" t="o" /> -<objsur guid="99a44d63-c66d-41fc-8a3c-9ee0c36b7af2" t="o" /> -<objsur guid="497987b3-1cd7-4e62-8130-6aaef0956cbd" t="o" /> -<objsur guid="a77063f8-6f33-4f38-9288-5865061f01e9" t="o" /> -<objsur guid="caa57ec9-f574-4665-bc4d-9d0c9a4af9cc" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="7feecc07-26cb-453b-aa09-ebae10f2bc05" ownerguid="3991615c-a7a6-43a0-9c31-fe61841d1403"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoAffixAllomorph" guid="7feef4b7-a285-4201-a3a4-057f77618b78" ownerguid="731a76a3-6d71-4541-bff3-269ed7ce49c8"> -<Form> -<AUni ws="qvm-x-ach">g</AUni> -<AUni ws="qvm-x-acl">g</AUni> -<AUni ws="qvm-x-akh">q</AUni> -<AUni ws="qvm-x-akl">q</AUni> -<AUni ws="qvm-x-ame">q</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="7ff10013-0422-4abc-a56f-10b01ec9e545" ownerguid="69d039e6-f669-4d54-8b67-89b19ff0a19c"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">I decided to eat something <while> I waited for the rain to stop.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">while, meanwhile, in the meantime</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something happened during the time when something else was happening?</AUni> -</Question> -</rt> -<rt class="StTxtPara" guid="7ff31d9c-f8ac-4cd6-9102-74aaac2da6dc" ownerguid="2f802856-a864-428c-9f5e-b1de2b6a510e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">palapatapis.</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="a4c63aae-408a-4683-b8de-ae5074ffed9a" t="o" /> -</Segments> -</rt> -<rt class="LexEntry" guid="7ff4fa9d-4f87-4ec4-86de-dac7ed2b938f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">asuntu; asunto</AUni> -<AUni ws="qvm-x-acl">asuntu; asuntu; asunto</AUni> -<AUni ws="qvm-x-akh">asuntu; asunto</AUni> -<AUni ws="qvm-x-akl">asuntu; asuntu; asunto</AUni> -<AUni ws="qvm-x-ame">asuntu; asunto</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+asunto</AUni> -<AUni ws="qvm-x-acl">+asunto</AUni> -<AUni ws="qvm-x-akh">+asunto</AUni> -<AUni ws="qvm-x-akl">+asunto</AUni> -<AUni ws="qvm-x-ame">+asunto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.850" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3c665ac5-276c-43c9-bc2c-68340d430984" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+asunto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5c52dd52-9770-43db-971c-ec2412a949bb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="01243524-136c-4a04-89d1-dab823dc09b4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +asunto 
\entryTyp root 
\gENG matter 
\gSPN asunto 
\e +asunto 
\c N0 
\ach asuntu / ~_# 
\ach asunto / _# 
\akh asuntu / ~_# 
\akh asunto / _# 
\acl asuntu / ~_# 
\acl asuntu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl asunto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl asuntu / ~_# 
\akl asuntu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl asunto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame asuntu / ~_# 
\ame asunto / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="StStyle" guid="7ff691e7-32f4-445d-acea-1ded6a6ac8ea" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="5" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Hyperlink</Uni> -</Name> -<Rules> -<Prop forecolor="blue" undercolor="blue" underline="single"></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<Usage> -<AUni ws="en">Links to other material via URLs</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="LexEntry" guid="7ff8d40d-32a6-44fc-a0b3-5edf046f89ba"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jinayla</AUni> -<AUni ws="qvm-x-acl">jinayla</AUni> -<AUni ws="qvm-x-akh">jinayla</AUni> -<AUni ws="qvm-x-akl">jinayla</AUni> -<AUni ws="qvm-x-ame">hinayla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hinaylla</AUni> -<AUni ws="qvm-x-acl">*hinaylla</AUni> -<AUni ws="qvm-x-akh">*hinaylla</AUni> -<AUni ws="qvm-x-akl">*hinaylla</AUni> -<AUni ws="qvm-x-ame">*hinaylla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.721" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a7e78545-e7fb-4db0-8956-4ccd687b2013" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hinaylla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="93e7b860-a0c0-4f6f-9ecc-e88fabd11119" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f7194a48-cac5-4f07-837a-2c493d97a2fd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hinaylla 
\entryTyp root 
\gENG empty.handed 
\gSPN sin.nada 
\e *hinaylla 
\c N0 
\ach jinayla 
\akh jinayla 
\acl jinayla 
\akl jinayla 
\ame hinayla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="7ffaf94c-bfa2-4afc-b25a-246727eed01f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tra:gu</AUni> -<AUni ws="qvm-x-acl">tra:gu; tra:gu; tra:go</AUni> -<AUni ws="qvm-x-akh">tra:gu</AUni> -<AUni ws="qvm-x-akl">tra:gu; tra:gu; tra:go</AUni> -<AUni ws="qvm-x-ame">tra:gu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+trago</AUni> -<AUni ws="qvm-x-acl">+trago</AUni> -<AUni ws="qvm-x-akh">+trago</AUni> -<AUni ws="qvm-x-akl">+trago</AUni> -<AUni ws="qvm-x-ame">+trago</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.380" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6ec2142a-ac3f-43b9-9334-1cfdc601950b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+trago</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4475359d-8f1d-4112-a2a2-ef2985c7fd22" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bbee9d91-d31a-4983-bcbc-a8e2685628b6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +trago 
\entryTyp root 
\gENG alcoholic.drink 
\gSPN 
\e +trago 
\c N0 
\ach tra:gu 
\akh tra:gu 
\acl tra:gu / _# 
\acl tra:gu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tra:go +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tra:gu / _# 
\akl tra:gu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tra:go +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tra:gu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmAnnotationDefn" guid="7ffc4eab-856a-43cc-bc11-0db55738c15b" ownerguid="ea346c01-022f-4f34-b938-219ce7b65b73"> -<Abbreviation> -<AUni ws="en">Nt</AUni> -</Abbreviation> -<AllowsComment val="True" /> -<AllowsFeatureStructure val="False" /> -<AllowsInstanceOf val="False" /> -<BackColor val="0" /> -<CanCreateOrphan val="True" /> -<CopyCutPastable val="True" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">General category for ad-hoc notes of any kind.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<InstanceOfSignature val="0" /> -<IsProtected val="True" /> -<MaxDupOccur val="0" /> -<Multi val="True" /> -<Name> -<AUni ws="en">Note</AUni> -</Name> -<PromptUser val="False" /> -<Severity val="0" /> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="56de9b1a-1ce7-42a1-aa76-512ebeff0dda" t="o" /> -<objsur guid="80ae5729-9cd8-424d-8e71-96c1a8fd5821" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -<UserCanCreate val="True" /> -<ZeroWidth val="False" /> -</rt> -<rt class="CmDomainQ" guid="7ffcfe95-3269-4eaf-b547-ef5a6f696b82" ownerguid="b6686c7c-39de-40b5-adee-67fc7dc54374"> -<ExampleWords> -<AUni ws="en">huge number, myriad, zillion, jillion, umpteen, googolplex</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a very large number?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="7ffd8301-2842-4cc2-a861-878a7b940575" ownerguid="4b043734-2589-46b9-a7a6-d7d33751252a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">apuntar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f7ed0929-b341-4c6a-8fc4-d5562ad9c08f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="7fff6981-7a91-4512-b4ac-7f0b22dbecae" ownerguid="197f907c-f581-4e66-a2df-6362304d6d98"> -<Form> -<AUni ws="qvm-x-ach">mïna</AUni> -<AUni ws="qvm-x-acl">mïna</AUni> -<AUni ws="qvm-x-akh">mïna</AUni> -<AUni ws="qvm-x-akl">mïna</AUni> -<AUni ws="qvm-x-ame">mïna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="800095d2-1ed7-4257-b8e6-4768271a3185"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">suedru; suedro</AUni> -<AUni ws="qvm-x-acl">suedru; suedru; suedro</AUni> -<AUni ws="qvm-x-akh">suedru; suedro</AUni> -<AUni ws="qvm-x-akl">suedru; suedru; suedro</AUni> -<AUni ws="qvm-x-ame">suedru; suedro</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+suegro</AUni> -<AUni ws="qvm-x-acl">+suegro</AUni> -<AUni ws="qvm-x-akh">+suegro</AUni> -<AUni ws="qvm-x-akl">+suegro</AUni> -<AUni ws="qvm-x-ame">+suegro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.733" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3722ceac-46ac-4369-b1b1-3704fdf07603" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+suegro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cac9a59e-9f01-4d26-b981-b932f6adfd1f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="200708e1-513d-44c2-8539-9380eb1ce2fb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +suegro 
\entryTyp root 
\gENG father.in.law 
\gSPN suegro 
\e +suegro 
\c N0 
\ach suedru / ~_# 
\ach suedro / _# 
\akh suedru / ~_# 
\akh suedro / _# 
\acl suedru / ~_# 
\acl suedru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl suedro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl suedru / ~_# 
\akl suedru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl suedro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame suedru / ~_# 
\ame suedro / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="80079656-7d30-4205-8db5-e55a469a0669"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">parqui; parque</AUni> -<AUni ws="qvm-x-acl">parqui; parqui; parque</AUni> -<AUni ws="qvm-x-akh">parqui; parque</AUni> -<AUni ws="qvm-x-akl">parqui; parqui; parque</AUni> -<AUni ws="qvm-x-ame">parqui; parque</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+parque</AUni> -<AUni ws="qvm-x-acl">+parque</AUni> -<AUni ws="qvm-x-akh">+parque</AUni> -<AUni ws="qvm-x-akl">+parque</AUni> -<AUni ws="qvm-x-ame">+parque</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.729" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b66ceb5c-8ce2-4aac-b976-16131e5ccc35" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+parque</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3bc93709-4070-4112-9476-86356295542a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4e9dc84b-ab32-41ed-9e8c-4031b23068b1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +parque 
\entryTyp root 
\gENG park 
\gSPN parque 
\e +parque 
\c N0 
\mp +FinalI 
\ach parqui / ~_# 
\ach parque / _# 
\akh parqui / ~_# 
\akh parque / _# 
\acl parqui / ~_# 
\acl parqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl parque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl parqui / ~_# 
\akl parqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl parque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame parqui / ~_# 
\ame parque / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="80105993-566f-4c1b-88dc-e1082646cc0d" ownerguid="1d44baa0-006a-471d-83ad-4a063b38bc16"> -<Form> -<AUni ws="qvm-x-ach">waya</AUni> -<AUni ws="qvm-x-acl">waya</AUni> -<AUni ws="qvm-x-akh">waya</AUni> -<AUni ws="qvm-x-akl">waya</AUni> -<AUni ws="qvm-x-ame">waya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="801816c5-1843-468e-87ec-429ca2e1df4c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rancha</AUni> -<AUni ws="qvm-x-acl">rancha</AUni> -<AUni ws="qvm-x-akh">rancha</AUni> -<AUni ws="qvm-x-akl">rancha</AUni> -<AUni ws="qvm-x-ame">rancha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rantra</AUni> -<AUni ws="qvm-x-acl">*rantra</AUni> -<AUni ws="qvm-x-akh">*rantra</AUni> -<AUni ws="qvm-x-akl">*rantra</AUni> -<AUni ws="qvm-x-ame">*rantra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.256" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0704dc5d-e0ea-4f08-931d-b35e20d86c65" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rantra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f89461c7-03dc-4dc1-8963-55fcf3fb8ebf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c30c1291-f682-4244-8976-ad2c450c2e2d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rantra 
\entryTyp root 
\gENG 
\gSPN 
\e *rantra 
\c N0 
\ach rancha 
\akh rancha 
\acl rancha 
\akl rancha 
\ame rancha</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="801aeb24-6c00-445f-8e83-1fbe30ae698a" ownerguid="f3a3c98c-a0bc-4db7-9836-e2bfe57f50fa"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="801b1d49-7007-46e0-94b7-c61e7b8afdf2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pulce:ra</AUni> -<AUni ws="qvm-x-acl">pulce:ra</AUni> -<AUni ws="qvm-x-akh">pulce:ra</AUni> -<AUni ws="qvm-x-akl">pulce:ra</AUni> -<AUni ws="qvm-x-ame">pulce:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pulcera</AUni> -<AUni ws="qvm-x-acl">+pulcera</AUni> -<AUni ws="qvm-x-akh">+pulcera</AUni> -<AUni ws="qvm-x-akl">+pulcera</AUni> -<AUni ws="qvm-x-ame">+pulcera</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.992" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0ac401aa-7e28-4880-9024-6119c01d3a0e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pulcera</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e2336a67-ebf2-435e-a129-2680f09a99df" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8938e179-aec4-4d07-bceb-ab3a798fea04" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pulcera 
\entryTyp root 
\gENG bracelet 
\gSPN 
\e +pulcera 
\c N0 
\ach pulce:ra 
\akh pulce:ra 
\acl pulce:ra 
\akl pulce:ra 
\ame pulce:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="801bab55-65fe-4ee2-9091-09d188399929" ownerguid="9b3a5c6d-7f69-4cee-b4fa-98773152e5f1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="801ef7ba-85a0-4a57-a714-727bdc76e2d7" ownerguid="bb4f0608-4ac0-4cbc-b206-3614d98b7d29"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8022f4ff-15da-498e-88ed-57315cc55fed" ownerguid="c3f20ce7-d30e-40fd-af8a-713a65c46cd0"> -<ExampleWords> -<AUni ws="en">bow, bow down, bow to/before someone</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to bowing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8024226b-925b-40ed-83c7-51e03649200a" ownerguid="7d111356-e04e-4891-960c-2f35147eba82"> -<ExampleWords> -<AUni ws="en">nominal, in name only</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that has the name of something but not its qualities?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="80271be4-e25e-4a94-ae49-dd6fa4faaf5b" ownerguid="00966ac0-e2d5-429f-80a1-6de9cee48e2d"> -<Form> -<AUni ws="qvm-x-ach">carpishu</AUni> -<AUni ws="qvm-x-acl">carpishu; carpishu; carpisho</AUni> -<AUni ws="qvm-x-akh">karpishu</AUni> -<AUni ws="qvm-x-akl">karpishu; karpishu; karpisho</AUni> -<AUni ws="qvm-x-ame">karpishu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="802b5538-85de-4365-bdd1-3bb80907c724" ownerguid="56d52d54-9da9-4e9f-a6cd-9e3675ae2880"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9cb5734b-4164-4483-a0a0-dd948cbb3318" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">cage</AUni> -<AUni ws="es">jaula</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6a02db82-bffd-4180-8160-2100f7add23d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="802c371e-6a7a-4929-b99a-dcbcc28b3d01"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ra; ra:</AUni> -<AUni ws="qvm-x-acl">ra; ra:</AUni> -<AUni ws="qvm-x-akh">ra; ra:</AUni> -<AUni ws="qvm-x-akl">ra; ra:</AUni> -<AUni ws="qvm-x-ame">ra; ra:</AUni> -</Custom> -<AlternateForms> -<objsur guid="c9195472-585e-46e8-ad5e-3cf1c0561f5a" t="o" /> -</AlternateForms> -<DateCreated val="2022-9-23 18:26:20.508" /> -<DateModified val="2022-10-27 17:57:4.301" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="09d6e3f4-ac57-4b38-87ae-3717616d9e2d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">DUR</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a22f2957-a229-4afb-b8d3-b397bafea06d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a5822a50-89fb-4d47-8305-959167df4a0d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx DUR 
\entryTyp suffix 
\gENG DUR 
\gSPN DUR 
\e DUR 
\c V1/V1 V2/V2 
\o 030, 050 
\mp +foreshortens 
\mp +underlong 
\ach ra foreshortened 
\ach ra: 
\akh ra foreshortened 
\akh ra: 
\acl ra foreshortened 
\acl ra: 
\akl ra foreshortened 
\akl ra: 
\ame ra foreshortened 
\ame ra: 
\mp +FinalC 
\mp +FinalLength 
\mcc DUR AG / [pa2] ~_ 
\mcc DUR / ~_ PSTN 
\mcc DUR / ~_ PRMT 
\mcc DUR / ~_ PLALLF 
\i MIC 7.19 Jutsa rurashgäcunatapis amana yarparayculaytsu. 
\mcc DUR / ~_ IN1 PRTSPM3</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="80305b40-daa5-422a-a8b4-745d09a75c59" ownerguid="40590157-9412-4558-b0f7-311867b649cc"> -<ExampleWords> -<AUni ws="en">turn, turn around, bend (something's) course</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to causing something to change direction?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8033798b-e0b8-436a-9e27-62f2ed3bdb08"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mantil</AUni> -<AUni ws="qvm-x-acl">mantil; mantil; mantel</AUni> -<AUni ws="qvm-x-akh">mantil</AUni> -<AUni ws="qvm-x-akl">mantil; mantil; mantel</AUni> -<AUni ws="qvm-x-ame">mantil</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mantel</AUni> -<AUni ws="qvm-x-acl">+mantel</AUni> -<AUni ws="qvm-x-akh">+mantel</AUni> -<AUni ws="qvm-x-akl">+mantel</AUni> -<AUni ws="qvm-x-ame">+mantel</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.323" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a0c7b823-1585-42c7-9c2a-8f7fefc31e2e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mantel</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b93ed194-ff03-4c2f-a529-2a2565b13709" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1d9c7103-5baf-4750-a5ea-f25874a8afe5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mantel 
\entryTyp root 
\gENG tablecloth 
\gSPN 
\e +mantel 
\c N0 
\mp +assimilated 
\ach mantil 
\akh mantil 
\acl mantil / _# 
\acl mantil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mantel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mantil / _# 
\akl mantil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mantel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame mantil 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="8034a22d-6d25-42d2-a788-b47aff1b577d" ownerguid="7dfd2d48-3518-43a6-b075-38dbae91e485"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="80370d02-42e3-4ec8-9ce9-7a78c6a853b0" ownerguid="64e3d6b1-1d61-454c-97ab-e1d7cb0a8917"> -<ExampleWords> -<AUni ws="en">be nervous, be on edge, have butterflies (in your stomach), be on pins and needles</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling nervous?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="80384e26-b64d-49c9-9feb-ffa7c9e562fa" ownerguid="88239bd1-1eec-4fa5-8bc9-2e2d59bda62a"> -<Form> -<AUni ws="qvm-x-ach">yapa</AUni> -<AUni ws="qvm-x-acl">yapa</AUni> -<AUni ws="qvm-x-akh">yapa</AUni> -<AUni ws="qvm-x-akl">yapa</AUni> -<AUni ws="qvm-x-ame">yapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="803911f4-d3d8-4771-8d51-fa2bda3d5978"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ogui</AUni> -<AUni ws="qvm-x-acl">ogui; ogue</AUni> -<AUni ws="qvm-x-akh">oqi</AUni> -<AUni ws="qvm-x-akl">oqi; oqe</AUni> -<AUni ws="qvm-x-ame">uqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uqi.v</AUni> -<AUni ws="qvm-x-acl">*uqi.v</AUni> -<AUni ws="qvm-x-akh">*uqi.v</AUni> -<AUni ws="qvm-x-akl">*uqi.v</AUni> -<AUni ws="qvm-x-ame">*uqi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.259" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="70cdccd7-0629-41d0-8a3f-6ca745450e1b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uqi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e3926e79-0dc7-483e-84c8-04bd72176b17" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d46a7805-4882-4098-8b36-754cfe05fa61" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uqi.v 
\entryTyp root 
\gENG gray 
\gSPN gris 
\e *uqi.v 
\c V1 
\mp +FinalI 
\ach ogui 
\akh oqi 
\acl ogui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ogue +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl oqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl oqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame uqi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="803921fd-86e3-4690-8ed5-5ac8ace6c57a" ownerguid="ca9ba8f2-93d5-4b02-95ef-5d19575c8aeb"> -<Form> -<AUni ws="qvm-x-ach">acachau</AUni> -<AUni ws="qvm-x-acl">acachau</AUni> -<AUni ws="qvm-x-akh">akachaw</AUni> -<AUni ws="qvm-x-akl">akachaw</AUni> -<AUni ws="qvm-x-ame">akachaw</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="8039de50-9579-4b83-9c1d-55fd699cf26d" ownerguid="ba04ffb0-cafe-4177-a9e4-d13805974839"> -<Form> -<AUni ws="qvm-x-ach">chulpa</AUni> -<AUni ws="qvm-x-acl">chulpa</AUni> -<AUni ws="qvm-x-akh">chulpa</AUni> -<AUni ws="qvm-x-akl">chulpa</AUni> -<AUni ws="qvm-x-ame">chulpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="803ce0ea-4c11-4c78-952d-31ec3cf29fa6" ownerguid="fcded7cb-9a9e-4079-904f-11712573f564"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="803e24fd-c7b0-49d5-9451-0c969afc4fc2" ownerguid="b16de6a0-71dd-448c-9ffa-49f6646a5219"> -<ExampleWords> -<AUni ws="en">be out of breath, be winded, have a stitch (in your side)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to being in pain because of running?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="803ed57c-d65c-4d9d-b536-2576e7dc33d7" ownerguid="a9c5103b-3255-4597-bce1-1d4ddfeb3cd4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">judge</AUni> -<AUni ws="es">juez</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ca8cc796-3f7c-42e4-8921-e0e42745e7c0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="803f49c2-5da9-4696-93f3-625ffefd5af5" ownerguid="b6e45998-9f6a-4b19-9cda-62410a11afa2"> -<ExampleWords> -<AUni ws="en">malevolent power, evil force, Satanic force, demonic power, black magic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to malevolent supernatural power?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="804005a3-78dd-42ee-866b-6df049f0346b" ownerguid="c6f0f4c1-8c0d-45b3-815a-0597b4ece2de"> -<PartOfSpeech> -<objsur guid="85ffb381-0567-4202-8640-53cbaec77e45" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="80415fac-b3d8-4e3c-bdb8-dc92f3c6dad8" ownerguid="a4958dd9-03cc-4863-ab76-cd0682060cb0"> -<Abbreviation> -<AUni ws="en">3.5.1.7.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.164" /> -<DateModified val="2022-9-23 16:55:8.164" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to boasting--to say something good about yourself, especially to make it seem that you are better than you really are.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33M' Boast</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Boast</AUni> -</Name> -<Questions> -<objsur guid="098d77fd-afb6-45d9-a5ae-1417dc2ff5a3" t="o" /> -<objsur guid="d2d78088-0f8c-4d66-8163-0297c91a817e" t="o" /> -<objsur guid="cf705274-c0dd-4563-b7c0-25c59108776d" t="o" /> -<objsur guid="76f7b249-c867-4050-8f81-04e818d1e76c" t="o" /> -<objsur guid="f92fc237-e63c-401c-904f-04d7db823eeb" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="18b3ca02-18fe-4ab5-8709-c20957a0a2fb" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="8043d3ee-dc8d-4e02-b14b-2c6916bcc67d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">munti</AUni> -<AUni ws="qvm-x-acl">munti; munti; munte</AUni> -<AUni ws="qvm-x-akh">munti</AUni> -<AUni ws="qvm-x-akl">munti; munti; munte</AUni> -<AUni ws="qvm-x-ame">munti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+monte.n</AUni> -<AUni ws="qvm-x-acl">+monte.n</AUni> -<AUni ws="qvm-x-akh">+monte.n</AUni> -<AUni ws="qvm-x-akl">+monte.n</AUni> -<AUni ws="qvm-x-ame">+monte.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.477" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9caeb05a-19bf-4b03-b1ec-555c4dcb7071" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+monte.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d8916a6c-5215-462e-97c8-4a72dbcea145" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="79cb3689-0139-4b16-80aa-74b544d0313e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +monte.n 
\entryTyp root 
\gENG tree 
\gSPN árbol 
\e +monte.n 
\c N0 
\mp +assimilated 
\ach munti 
\akh munti 
\acl munti / _# 
\acl munti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl munte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl munti / _# 
\akl munti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl munte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame munti 
\mp +FinalI</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="80470c0d-5403-45fe-b0c3-5171a2209e3d" ownerguid="a3ca2a31-259e-4e15-9696-75b0c81886e9"> -<ExampleWords> -<AUni ws="en">straighten, straighten out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something becoming straight?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="804acc68-a26d-4398-bbd6-274f3c43686f" ownerguid="d6b0dfe1-8cb8-465f-bf15-c6dc6ff93d65"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="804bed79-da20-4383-b1f1-b842eda4c6e9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">religio:su</AUni> -<AUni ws="qvm-x-acl">religio:su; religio:su; religio:so</AUni> -<AUni ws="qvm-x-akh">religio:su</AUni> -<AUni ws="qvm-x-akl">religio:su; religio:su; religio:so</AUni> -<AUni ws="qvm-x-ame">religio:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+religioso</AUni> -<AUni ws="qvm-x-acl">+religioso</AUni> -<AUni ws="qvm-x-akh">+religioso</AUni> -<AUni ws="qvm-x-akl">+religioso</AUni> -<AUni ws="qvm-x-ame">+religioso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.328" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ba64d3d5-5af6-46b1-a3f8-ce6187140999" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+religioso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e7f29de5-6eaf-4403-adb7-bfb18aaadb73" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fac04617-83cc-45ab-b75b-072d86733657" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +religioso 
\entryTyp root 
\gENG religious 
\gSPN relijioso 
\e +religioso 
\c N0 
\ach religio:su 
\akh religio:su 
\acl religio:su / _# 
\acl religio:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl religio:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl religio:su / _# 
\akl religio:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl religio:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame religio:su</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="804f3cab-cb79-4812-94be-f7e9bf8b8614"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">suffixes</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="80508e36-5771-40d3-9b2a-9e88309fdc78" ownerguid="96c25ee0-7d29-4ae0-b36d-8cf9b0458e14"> -<Form> -<AUni ws="qvm-x-ach">naupa</AUni> -<AUni ws="qvm-x-acl">naupa</AUni> -<AUni ws="qvm-x-akh">nawpa</AUni> -<AUni ws="qvm-x-akl">nawpa</AUni> -<AUni ws="qvm-x-ame">nawpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="8052744f-7a9a-49da-89e3-4c518126180b" ownerguid="60dc7cf6-0a41-4cd3-99a6-0b7a71488e7e"> -<Abbreviation> -<AUni ws="en">3.4.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling confused--to be worried and uncertain about what something means or what to do.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Confused</AUni> -</Name> -<Questions> -<objsur guid="7231401a-4476-4255-9e2f-963e20c6ea18" t="o" /> -<objsur guid="88e1ba9c-2577-4e80-a15d-83902ea91dfa" t="o" /> -<objsur guid="0436d403-bcf9-4b6c-852f-df68e11d5415" t="o" /> -<objsur guid="3b693a07-5e0b-4cf1-82f6-a56ccfe40c90" t="o" /> -<objsur guid="b6f0d147-970a-4628-9090-b173eabd672e" t="o" /> -<objsur guid="aacf56d5-2429-4058-ba8a-f0108072e137" t="o" /> -<objsur guid="77a1c6df-7352-4e60-a7c3-3c36198f7dd8" t="o" /> -<objsur guid="75165b03-569d-4c14-bc86-7d4b9162e71d" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="cd8b2a8b-687b-42e9-91e7-cfb8812b64ee" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="8052c414-1989-40ef-9eee-ec0c08de21e6" ownerguid="b14db9f4-5e1d-4a2b-bec0-0d6bcb5b1a31"> -<ExampleWords> -<AUni ws="en">plunge, plummet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to falling from a very high position?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="80553532-5978-4134-a51d-6761cf66376c" ownerguid="154eadd9-5f2d-44b8-9327-4f3c5bc8bd85"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">garlic</AUni> -<AUni ws="es">ajos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4be476fd-6dcf-4177-a3b3-3cda490ce052" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="805612cb-6296-434b-8ca1-14ff9ed0a2a1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wanwa</AUni> -<AUni ws="qvm-x-acl">wanwa</AUni> -<AUni ws="qvm-x-akh">wanwa</AUni> -<AUni ws="qvm-x-akl">wanwa</AUni> -<AUni ws="qvm-x-ame">wanwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wanwa</AUni> -<AUni ws="qvm-x-acl">*wanwa</AUni> -<AUni ws="qvm-x-akh">*wanwa</AUni> -<AUni ws="qvm-x-akl">*wanwa</AUni> -<AUni ws="qvm-x-ame">*wanwa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.483" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b5ca0d3a-2db3-4c26-abc3-dd843d703c7d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wanwa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3477e27b-8396-42eb-ade4-2c1c2423e05c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d88894be-86d5-4504-87b3-bfc97e27d50e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wanwa 
\entryTyp root 
\gENG mosquito 
\gSPN zancudo 
\e *wanwa 
\c N0 
\ach wanwa 
\akh wanwa 
\acl wanwa 
\akl wanwa 
\ame wanwa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="80563285-4de7-4040-8080-a5b22208e7d5" ownerguid="55201761-fe2e-40d5-a2a7-8079e00a2c32"> -<Abbreviation> -<AUni ws="en">4.8.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.276" /> -<DateModified val="2022-9-23 16:55:8.276" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to attacking someone--to begin fighting someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>39J Attack</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Attack</AUni> -</Name> -<Questions> -<objsur guid="62fbcca2-b3cc-4c02-a476-5fc56f1d2607" t="o" /> -<objsur guid="baafcd3c-f314-493f-91ff-acfa1c66e09f" t="o" /> -<objsur guid="465390cf-9082-4b35-96b1-0631cfe0003d" t="o" /> -<objsur guid="c5faea0a-488c-42e9-80d7-39c86398c004" t="o" /> -<objsur guid="ef5943fe-54f2-48e2-9268-877d9d608759" t="o" /> -<objsur guid="d0f7c423-fcfa-40fd-97bf-00cdfce68706" t="o" /> -<objsur guid="52626bfc-1c64-41ae-a067-e3d4c7af0777" t="o" /> -<objsur guid="b3242c0b-9f0a-4aaf-abfd-bbef14c44cb8" t="o" /> -<objsur guid="36ffd0ac-de31-4192-80f4-f4137016c930" t="o" /> -<objsur guid="f6fd8369-4c75-47e0-b0dd-295ac2ded33e" t="o" /> -<objsur guid="ae5b0916-e1da-4a60-90e5-a482da72862c" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="5489f4ae-34a7-4f8b-9086-4247b0d8b3de" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="80628870-6d6a-4743-a05d-88d1cf1d0bcc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gasha</AUni> -<AUni ws="qvm-x-acl">gasha</AUni> -<AUni ws="qvm-x-akh">qasha</AUni> -<AUni ws="qvm-x-akl">qasha</AUni> -<AUni ws="qvm-x-ame">qasha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qasha.v</AUni> -<AUni ws="qvm-x-acl">*qasha.v</AUni> -<AUni ws="qvm-x-akh">*qasha.v</AUni> -<AUni ws="qvm-x-akl">*qasha.v</AUni> -<AUni ws="qvm-x-ame">*qasha.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.134" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="395e410b-a74b-4233-8c9f-263f584cb467" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qasha.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="70ffda66-4d65-4872-8489-2e4d01ee584b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cdc22bbf-313c-4c46-909b-7d17d29b5e85" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qasha.v 
\entryTyp root 
\gENG 
\gSPN 
\e *qasha.v 
\c V1 
\ach gasha 
\akh qasha 
\acl gasha 
\akl qasha 
\ame qasha 
\i Lev 1.17 Nircurnami älanpita aptarcur ishcayman pulanpa gasharenga.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="80637c82-f211-4619-adc5-3c6ecda29ff2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">legitima</AUni> -<AUni ws="qvm-x-acl">legitima</AUni> -<AUni ws="qvm-x-akh">legitima</AUni> -<AUni ws="qvm-x-akl">legitima</AUni> -<AUni ws="qvm-x-ame">legitima</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+legitimar.1</AUni> -<AUni ws="qvm-x-acl">+legitimar.1</AUni> -<AUni ws="qvm-x-akh">+legitimar.1</AUni> -<AUni ws="qvm-x-akl">+legitimar.1</AUni> -<AUni ws="qvm-x-ame">+legitimar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.72" /> -<DateModified val="2022-10-10 21:19:47.698" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2c20fd4f-c619-4df5-b8e4-6b05e0d395e1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+legitimar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6c463301-0796-43d5-ab5e-812529e4bf17" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9985372f-a09a-4fd7-8bc2-00f8b3ae30c0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +legitimar.1 
\entryTyp root 
\gENG make.legitimate 
\gSPN 
\e +legitimar.1 
\c V2 
\ach legitima 
\akh legitima 
\acl legitima 
\akl legitima 
\ame legitima 
\i GAL 4.5 Tsaynoqpami paypa wamrankunana kanantsipaq legitikamashkantsi.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="80645391-c90f-441d-9385-783cc6f0ab78" ownerguid="14a32765-81b0-411e-89fa-91e092a70818"> -<ExampleWords> -<AUni ws="en">call, phone (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to calling someone on the telephone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8066a2ba-5acc-489a-99c7-5e54946d98b4" ownerguid="101c16f8-ec76-4ec7-895a-fd814fef51dd"> -<ExampleWords> -<AUni ws="en">clean/cleanse a wound, bandage, Band-Aid, compress, dress (a wound), dressing, tourniquet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to treating a wound?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="80672cf3-91e0-456b-9f7a-a503002fd4d6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">desanima</AUni> -<AUni ws="qvm-x-acl">desanima</AUni> -<AUni ws="qvm-x-akh">desanima</AUni> -<AUni ws="qvm-x-akl">desanima</AUni> -<AUni ws="qvm-x-ame">desanima</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+desanimar</AUni> -<AUni ws="qvm-x-acl">+desanimar</AUni> -<AUni ws="qvm-x-akh">+desanimar</AUni> -<AUni ws="qvm-x-akl">+desanimar</AUni> -<AUni ws="qvm-x-ame">+desanimar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.386" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ebd82102-b922-4ed6-8c2e-b7e2784fd808" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+desanimar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="77f8d20e-74da-47bd-86ed-3d3489408278" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3155c627-a0c8-4c39-845e-e6c5ac72ad45" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +desanimar 
\entryTyp root 
\gENG 
\gSPN 
\e +desanimar 
\c V1 
\ach desanima 
\akh desanima 
\acl desanima 
\akl desanima 
\ame desanima</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="8067325a-d571-4bba-9181-f891d745416d" ownerguid="1344dce6-9fae-41ec-ad33-2fe557289a0e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Shamuy shilquinäpag.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="80687b49-b6c9-451f-a79c-7f1c4b0e3562" ownerguid="7d9af2fc-ebd4-4ec9-91f9-da752b344607"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="806d7650-b25a-4135-92bb-482b9c6d849c" ownerguid="cf21bb99-7006-449d-afb9-e63e844d4440"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hands.and.knees</AUni> -<AUni ws="es">caminar.como.vaca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1b289788-7af5-41a4-a0fc-9409b93e0f05" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="80707bfd-4d0f-400b-8c44-ea91c00c2abe" ownerguid="66ea9520-f017-4c7e-ad86-88dbd17cdc36"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="80724ec9-ad4a-4407-bdf6-37a1a67d9abe" ownerguid="d2bc312b-a40f-49b5-93b8-e1666c9f21cd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="80738a94-2b5c-43f1-b690-1d494be155f3" ownerguid="b4fc91fe-68f7-45a6-8863-75bba1029bef"> -<ExampleWords> -<AUni ws="en">take by force, snatch, ransack, plunder, pillage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to taking something by force?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="80771795-2a54-4533-8eea-477ce83305ac"> -<Analyses> -<objsur guid="87c9b887-4271-4638-8cba-089d31f9219a" t="o" /> -</Analyses> -<Checksum val="-1860248723" /> -<Form> -<AUni ws="qvm-x-akh">trïbu</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="807bc1e5-a2fd-41a2-874b-f43c82ed334b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lamca</AUni> -<AUni ws="qvm-x-acl">lamca</AUni> -<AUni ws="qvm-x-akh">lamka</AUni> -<AUni ws="qvm-x-akl">lamka</AUni> -<AUni ws="qvm-x-ame">lamka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lamka</AUni> -<AUni ws="qvm-x-acl">*lamka</AUni> -<AUni ws="qvm-x-akh">*lamka</AUni> -<AUni ws="qvm-x-akl">*lamka</AUni> -<AUni ws="qvm-x-ame">*lamka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.43" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="29d9006d-6e3b-45bb-89b9-8dfb2ffadbb6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lamka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6af65fe8-596d-4533-92c7-9e562906319f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1aa75a20-959f-488f-a967-7424796eef76" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lamka 
\entryTyp root 
\gENG feel 
\gSPN sentir 
\e *lamka 
\c V2 
\ach lamca 
\akh lamka 
\acl lamca 
\akl lamka 
\ame lamka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="807e02de-291d-4638-a9d6-5df2e18c4f84" ownerguid="13a3d6a8-b958-4761-9529-5348cbddce64"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">already</AUni> -<AUni ws="es">ya</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="11f8dd35-2de7-4903-8164-6683c458d3cf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="807e3b9d-8829-4534-ad91-2914fe0e7b96" ownerguid="33d461b9-896e-428f-a281-85052303463e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EST 3.12 Ordin nishganta cumplinanpagmi rey Asuerupa jutinta firmapäcorgan y sëllunwanpis sëllapäcorgan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="807e481f-40a1-4083-b257-2a6a22462ad7" ownerguid="d3cf7b43-a9fb-42db-b04b-cab625212f51"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="807edb7d-7b8f-4063-a175-8bd5614b98ff"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guechuchu</AUni> -<AUni ws="qvm-x-acl">guechuchu; guechucho</AUni> -<AUni ws="qvm-x-akh">qechuchu</AUni> -<AUni ws="qvm-x-akl">qechuchu; qechucho</AUni> -<AUni ws="qvm-x-ame">qichuchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qitrutru</AUni> -<AUni ws="qvm-x-acl">*qitrutru</AUni> -<AUni ws="qvm-x-akh">*qitrutru</AUni> -<AUni ws="qvm-x-akl">*qitrutru</AUni> -<AUni ws="qvm-x-ame">*qitrutru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.216" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="81d8d69e-e38d-462f-b3ee-6aa555d4e712" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qitrutru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8cc414ee-7b0b-4d7d-8acb-9749d42749c9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="22177450-c055-4886-84cf-5e1b97961b79" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qitrutru 
\entryTyp root 
\gENG ? 
\gSPN ? 
\e *qitrutru 
\c V1 
\ach guechuchu 
\akh qechuchu 
\acl guechuchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl guechucho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qechuchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qechucho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qichuchu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="807f9ed0-73a9-441f-9dfc-e30507ed5501"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ca:chu</AUni> -<AUni ws="qvm-x-acl">ca:chu; ca:chu; ca:cho</AUni> -<AUni ws="qvm-x-akh">ca:chu</AUni> -<AUni ws="qvm-x-akl">ca:chu; ca:chu; ca:cho</AUni> -<AUni ws="qvm-x-ame">ca:chu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cacho</AUni> -<AUni ws="qvm-x-acl">+cacho</AUni> -<AUni ws="qvm-x-akh">+cacho</AUni> -<AUni ws="qvm-x-akl">+cacho</AUni> -<AUni ws="qvm-x-ame">+cacho</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.110" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bf56e339-9be3-4daa-9f58-dda6e4e17090" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cacho</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="909a4416-f4e0-42f7-a70f-97846f451de7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ea901d8f-df94-45d8-9eda-9280a65e1942" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cacho 
\entryTyp root 
\gENG horn 
\gSPN cuerno 
\e +cacho 
\c N0 
\ach ca:chu 
\akh ca:chu 
\acl ca:chu / _# 
\acl ca:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ca:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ca:chu / _# 
\akl ca:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ca:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ca:chu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="8080c7ed-e69a-4a8a-bd8d-bf3447b13630" ownerguid="5bb29704-fe0f-4594-9622-ce0aa42b93c8"> -<Abbreviation> -<AUni ws="en">6.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.428" /> -<DateModified val="2022-9-23 16:55:8.428" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to processing the harvest.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Process harvest</AUni> -</Name> -<OcmCodes> -<Uni>250 Food Processing; 251 Preservation and Storage of Food</Uni> -</OcmCodes> -<Questions> -<objsur guid="33103d73-2567-42f5-8fcd-a399587f59b9" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="8fb9a1a6-844d-45a5-86c7-977d3e420149" t="o" /> -<objsur guid="69d0a37d-f5b3-48a5-9486-5654d37b030b" t="o" /> -<objsur guid="47ed6c39-b728-4ae7-be7c-c45c714c3153" t="o" /> -<objsur guid="ceedce41-cdef-4766-9c5e-8ff5608c5464" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="8083687f-c059-4661-9c06-30479b8c2b24" ownerguid="cfcd574e-d9af-4501-8d99-690a0c2c5d61"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="808492a0-1232-48d3-95d9-4cbe55e0505d" ownerguid="1a02c2ed-5ed3-40ad-8a76-eb6426f4b587"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a0c4890c-db0c-4fff-ae27-57f987c657b5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="8089f9e2-1a78-45e7-9e1c-f4993e198977" ownerguid="628f61e8-c8ba-40b5-864f-8bac1e189fa2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shell</AUni> -<AUni ws="es">desgranar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7edf373e-9ecd-4cc3-8544-9107ddba7e14" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="80929e8e-2c94-49a4-a47b-ad19b9dede5f" ownerguid="67b5ccac-ca10-4742-905d-595993cb4d30"> -<Form> -<AUni ws="qvm-x-ach">asalta</AUni> -<AUni ws="qvm-x-acl">asalta</AUni> -<AUni ws="qvm-x-akh">asalta</AUni> -<AUni ws="qvm-x-akl">asalta</AUni> -<AUni ws="qvm-x-ame">asalta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="80945422-0e2e-479c-bf0d-b0e66d182e7f" ownerguid="2d0b3058-d8bb-4110-a54a-e507b0d3a0e4"> -<ExampleWords> -<AUni ws="en">take someone's pulse, listen to someone's heartbeat, feel for a pulse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to listening to the heart beating?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8094a339-8f3c-45e0-bbaf-13fb780ba304" ownerguid="00364f0c-9a3a-4910-a82e-1ffbc4d4137f"> -<ExampleWords> -<AUni ws="en">be on the edge of your seat, be on tenterhooks, be all agog</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling excited?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8095133d-2251-4076-bb90-27d8ab18d96c" ownerguid="b8301711-721e-4841-8193-efcc546dea16"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="809a9f5e-a612-4281-8669-b34fc75d4da1" ownerguid="104d40c9-2a4f-4696-ad99-5cf0eb86ab2e"> -<ExampleWords> -<AUni ws="en">go away, clear up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a disease going away?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="809aad69-630b-4f0f-9556-5f03c800bbe0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsaqui</AUni> -<AUni ws="qvm-x-acl">tsaqui; tsaque</AUni> -<AUni ws="qvm-x-akh">tsaki</AUni> -<AUni ws="qvm-x-akl">tsaki; tsake</AUni> -<AUni ws="qvm-x-ame">tsaki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chaki.v</AUni> -<AUni ws="qvm-x-acl">*chaki.v</AUni> -<AUni ws="qvm-x-akh">*chaki.v</AUni> -<AUni ws="qvm-x-akl">*chaki.v</AUni> -<AUni ws="qvm-x-ame">*chaki.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.264" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="25313318-d4d6-4ae5-a54c-104eb9dc589d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chaki.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="759ac4db-d4bc-453b-bc58-69f7a42362df" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="274597dc-b3d1-4ebe-899b-40b12ce65453" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chaki.v 
\entryTyp root 
\gENG dry 
\gSPN secar 
\e *chaki.v 
\c V1 
\mp +FinalI 
\ach tsaqui 
\akh tsaki 
\acl tsaqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tsaque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsaki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsake +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsaki</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="809af787-f17d-48b3-b04c-2587717ea2aa" ownerguid="d974afac-8da9-4e3d-840e-412a093ad72d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sweet</AUni> -<AUni ws="es">dulce</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a306bbf3-adec-47c6-b3a5-2c80e0d3298c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="80a0315e-404b-420c-852d-a277147e2805" ownerguid="f3fa8080-c9e1-460c-bcd0-7ff404979d06"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">doctor</AUni> -<AUni ws="es">médico</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="09a7efa6-460e-40d5-bad5-f752f6f0bdfe" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="80a05ad8-065d-4878-acb1-923de290a6e9" ownerguid="a1cb1357-3a51-4f83-8a08-4c322cd134aa"> -<Form> -<AUni ws="qvm-x-ach">lindu; lindo</AUni> -<AUni ws="qvm-x-acl">lindu; lindu; lindo</AUni> -<AUni ws="qvm-x-akh">lindu; lindo</AUni> -<AUni ws="qvm-x-akl">lindu; lindu; lindo</AUni> -<AUni ws="qvm-x-ame">lindu; lindo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="80a0befe-f082-436c-bc0a-2868a5b1bd5e" ownerguid="75052baa-9846-4aeb-9f6d-25f104c641fb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">backstrap.loom</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7f71e82b-1052-420e-9617-8208d9e3e0cf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmPossibility" guid="80a0dddb-8b4b-4454-b872-88adec6f2aba" ownerguid="d7f71649-e8cf-11d3-9764-00c04f186933"> -<Abbreviation> -<AUni ws="en">BT</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Back translation</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="80a3a86c-1bf8-4b8d-8803-354363ced3f7" ownerguid="5e26d2e6-4a03-425b-9499-34ce237993c2"> -<Form> -<AUni ws="qvm-x-ach">ucush</AUni> -<AUni ws="qvm-x-acl">ucush</AUni> -<AUni ws="qvm-x-akh">ukush</AUni> -<AUni ws="qvm-x-akl">ukush</AUni> -<AUni ws="qvm-x-ame">ukush</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="80a41ada-343d-4bf0-b0f5-7e0ac88128e3" ownerguid="bbd3c3f1-7387-4ec6-a75d-66c1355a94ef"> -<ExampleWords> -<AUni ws="en">pig, hog, warthog, peccary, javelina, hippopotamus</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What species of four-toed hoofed animals are there?</AUni> -</Question> -</rt> -<rt class="StStyle" guid="80a47ed1-1e29-40d4-9aa0-d3041a8ca9dc" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="7d2c80cd-af87-4d56-8337-cfd389b775bb" t="r" /> -</BasedOn> -<Context val="14" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Reversal-Normal</Uni> -</Name> -<Rules> -<Prop firstIndent="-12000" leadingIndent="9000" spaceAfter="2000" spaceBefore="1000"></Prop> -</Rules> -<Structure val="0" /> -<Type val="0" /> -<Usage> -<AUni ws="en">Base style for everything in the Reversal view.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="LexEntry" guid="80a863d0-38d7-4454-bf8a-fa3d622c5f12"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uma#pucshu</AUni> -<AUni ws="qvm-x-acl">uma#pucshu; uma#pucshu; uma#pucsho</AUni> -<AUni ws="qvm-x-akh">uma#pukshu</AUni> -<AUni ws="qvm-x-akl">uma#pukshu; uma#pukshu; uma#puksho</AUni> -<AUni ws="qvm-x-ame">uma#pukshu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uma#pukshu</AUni> -<AUni ws="qvm-x-acl">*uma#pukshu</AUni> -<AUni ws="qvm-x-akh">*uma#pukshu</AUni> -<AUni ws="qvm-x-akl">*uma#pukshu</AUni> -<AUni ws="qvm-x-ame">*uma#pukshu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.220" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8e146d47-0a81-4727-a37c-c65b92a4829a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uma#pukshu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e65de796-2226-4478-8585-183f455e633f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d62222e9-d3d9-4082-bf5d-b08dd4ba8d4a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uma#pukshu 
\entryTyp root 
\gENG back.of.head 
\gSPN 
\e *uma#pukshu 
\c N0 
\ach uma#pucshu 
\akh uma#pukshu 
\acl uma#pucshu / _# 
\acl uma#pucshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl uma#pucsho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl uma#pukshu / _# 
\akl uma#pukshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl uma#puksho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame uma#pukshu 
\i Lev 19.27 <<Agtsayquita rutucur ama cachanquitsu umpucshulayquichöga.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="80a8c5c5-4444-4d6f-a26c-8d9d681d52a7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ave:na</AUni> -<AUni ws="qvm-x-acl">ave:na</AUni> -<AUni ws="qvm-x-akh">ave:na</AUni> -<AUni ws="qvm-x-akl">ave:na</AUni> -<AUni ws="qvm-x-ame">ave:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+avena</AUni> -<AUni ws="qvm-x-acl">+avena</AUni> -<AUni ws="qvm-x-akh">+avena</AUni> -<AUni ws="qvm-x-akl">+avena</AUni> -<AUni ws="qvm-x-ame">+avena</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.880" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8336552a-d78b-4aa5-a1b9-20ad623a3c67" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+avena</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="da88093e-ec43-41f7-b5c6-b48d739dd75a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7181fe1a-3c86-4dd0-b1c8-6a3072f1bf40" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +avena 
\entryTyp root 
\gENG oats 
\gSPN avena 
\e +avena 
\c N0 
\ach ave:na 
\akh ave:na 
\acl ave:na 
\akl ave:na 
\ame ave:na</Run> -</AStr> -</Custom> -</rt> -<rt class="FsClosedValue" guid="80a94e7b-6a6c-4348-8b31-92e884f667d9" ownerguid="afde1c9a-2780-4c3f-8864-3274f31f962e"> -<Feature> -<objsur guid="e13ebd7a-824d-4405-8c23-e5a30f3d53a6" t="r" /> -</Feature> -<RefNumber val="0" /> -<Value> -<objsur guid="d955a1e1-2da8-486d-8f53-3509c47b67fc" t="r" /> -</Value> -<ValueState val="0" /> -</rt> -<rt class="LexSense" guid="80aba992-133f-4943-b472-03a9e0410ff6" ownerguid="8b727cb7-dc70-4dce-8c6f-7b8da9b8fea9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fulfill</AUni> -<AUni ws="es">cumplir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="04973cf3-e710-4a1a-9f1b-d65b76fbe2fb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmAnnotationDefn" guid="80ae5729-9cd8-424d-8e71-96c1a8fd5821" ownerguid="7ffc4eab-856a-43cc-bc11-0db55738c15b"> -<Abbreviation> -<AUni ws="en">TransNt</AUni> -</Abbreviation> -<AllowsComment val="True" /> -<AllowsFeatureStructure val="False" /> -<AllowsInstanceOf val="False" /> -<BackColor val="0" /> -<CanCreateOrphan val="True" /> -<CopyCutPastable val="True" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">Note written by translation team.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<InstanceOfSignature val="0" /> -<IsProtected val="True" /> -<MaxDupOccur val="0" /> -<Multi val="False" /> -<Name> -<AUni ws="en">Translator Note</AUni> -</Name> -<PromptUser val="True" /> -<Severity val="0" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -<UserCanCreate val="True" /> -<ZeroWidth val="True" /> -</rt> -<rt class="MoStemAllomorph" guid="80afd477-d3de-4db6-a2b1-dfcc237e6e02" ownerguid="a12e0583-d0ba-4285-8e0e-13be32382092"> -<Form> -<AUni ws="qvm-x-ach">uti</AUni> -<AUni ws="qvm-x-acl">uti; ute</AUni> -<AUni ws="qvm-x-akh">uti</AUni> -<AUni ws="qvm-x-akl">uti; ute</AUni> -<AUni ws="qvm-x-ame">uti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="80b0b813-e6dc-4d83-ad2f-e99de5d3f080" ownerguid="c235964c-7af8-4f15-95fc-7d47a850a71f"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="80b2aae7-58e0-4184-b965-ff7112220d0b" ownerguid="608e5f22-68da-4f3d-a99e-c74c454d6fa5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">blame</AUni> -<AUni ws="es">inculpar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ef228aa5-a462-4e2d-a38e-1ae66955d561" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="80b2aed8-1a4e-447b-bfc8-c68f2881fd42" ownerguid="1913fed8-1f71-4689-a3e9-74482e6c1b46"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="de04834f-f3b3-44af-8f5a-3cba0e1a3696" t="o" /> -<objsur guid="c4165f19-03a5-4c09-a268-7bfa68cbb575" t="o" /> -</MorphBundles> -</rt> -<rt class="CmSemanticDomain" guid="80b48f92-0a83-4eeb-bfe0-6980285feb65" ownerguid="771e3882-f672-4e67-8580-edd82d7e5090"> -<Abbreviation> -<AUni ws="en">4.3.4.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.235" /> -<DateModified val="2022-9-23 16:55:8.235" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being cruel.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Cruel</AUni> -</Name> -<Questions> -<objsur guid="73d2a8d2-6300-4f9e-b0e6-6bb16d823066" t="o" /> -<objsur guid="b2e84259-6d72-4a5e-bc92-052caca5416c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="80b5bdf3-1652-4343-95f4-6449b570f9c3" ownerguid="83828d3b-ccb2-4459-9297-8f46d114c618"> -<Form> -<AUni ws="qvm-x-ach">ilauru</AUni> -<AUni ws="qvm-x-acl">ilauru; ilauru; ilauro</AUni> -<AUni ws="qvm-x-akh">ilawru</AUni> -<AUni ws="qvm-x-akl">ilawru; ilawru; ilawro</AUni> -<AUni ws="qvm-x-ame">ilawru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="80b6cd68-b0f2-41a6-a6bb-6faaa7e31a96" ownerguid="790cb5f1-5b46-4ccc-b29f-099faaa9edaa"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="80b70805-0a91-47c2-9018-726e0b426bd7" ownerguid="98ce83bf-0aac-4133-8c84-e88cd7a37442"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="80b83200-a7bd-4277-a948-9f7204df9caf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">distancia</AUni> -<AUni ws="qvm-x-acl">distancia</AUni> -<AUni ws="qvm-x-akh">distancia</AUni> -<AUni ws="qvm-x-akl">distancia</AUni> -<AUni ws="qvm-x-ame">distancia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+distancia</AUni> -<AUni ws="qvm-x-acl">+distancia</AUni> -<AUni ws="qvm-x-akh">+distancia</AUni> -<AUni ws="qvm-x-akl">+distancia</AUni> -<AUni ws="qvm-x-ame">+distancia</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.426" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8ebbebff-4821-4054-b43f-1ab240eb02bf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+distancia</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2a7dc487-ab9b-4c1e-8e95-7c68aaa05b6c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cee1ec81-f8d7-4d5f-9530-3de5d91e99e5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +distancia 
\entryTyp root 
\gENG distance 
\gSPN distancia 
\e +distancia 
\c N0 
\ach distancia 
\akh distancia 
\acl distancia 
\akl distancia 
\ame distancia 
\i ACT 1.12 Tsay lömapita Jerusalénman cargan säbaducho purinan distanciami.
\f + 
\fr 1.12 
\ft Sábado captin Israel runacuna hasta ishcay waranga (2,000) japaylatami purergan. Tsaypita masta manami purergantsu. Ishcay waranga japayga juc kilometrupita ichic maslami caycan.
\f*</Run> -</AStr> -</Custom> -</rt> -<rt class="StTxtPara" guid="80ba0bb2-721e-4f64-9a7e-6cdb72125cf0" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">aywaptiki. </Run> -<Run ws="en">\tr < V1 *aywa > ADVDS 2P</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="25f97d8a-1620-43de-82d7-bfc1c51a691d" t="o" /> -<objsur guid="d2c54f7d-0cab-4c46-bd25-c073e0dfcc74" t="o" /> -</Segments> -</rt> -<rt class="CmSemanticDomain" guid="80bcbc99-3c85-46d6-b15c-895367231747" ownerguid="2dca9338-85cb-4f58-b40d-d2d759e8edd6"> -<Abbreviation> -<AUni ws="en">8.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being at a place.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>85A Be in a Place; 83E At, Beside, Near, Far; 85 Existence in Space</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Be at a place</AUni> -</Name> -<Questions> -<objsur guid="73004200-e43e-4066-bb20-30c2f9b7abf9" t="o" /> -<objsur guid="5b7279be-896b-4bea-94ae-edeefe786232" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="8affe94d-a396-4404-a0d7-c65046e617e6" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="80bd323e-ec9e-4ff6-b690-e09f5f1bd617" ownerguid="67d7ac91-96a3-4979-b55b-101280d95144"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="80bf903e-873f-472e-a0c8-abe5f4ec7b03" ownerguid="34e92ff1-32aa-49c7-b4da-d161bedc5adc"> -<ExampleWords> -<AUni ws="en">mineral, miner</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to working with minerals?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="80c318c0-af12-4803-89b0-19e4c4df2eef" ownerguid="57e367f4-7029-4916-a700-791db32b4745"> -<ExampleWords> -<AUni ws="en">squander, blow, waste, scatter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to spending money carelessly?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="80c4c8bb-9a15-4256-a0a0-82127467a2dd" ownerguid="b133daae-24b4-4145-9783-83d68c46c023"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="80c7c296-9f2e-4cd6-ba06-a20b3a237063" ownerguid="44dc42e4-e9c7-4aa9-ac9b-1008385244b1"> -<ExampleWords> -<AUni ws="en">Mom, Mum, Mother, Mommy, Mummy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words do you use when talking to your mother?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="80cb2f95-fb16-45fc-824f-58e387083337" ownerguid="c2ec9cee-7fe3-44f2-9008-c8b42f6f78dd"> -<ExampleWords> -<AUni ws="en">Smith, Jones, MacDonald, Johnson</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What names are used by all the members of a family?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="80cb5a61-b9dc-4480-9b5a-5432e866e23c" ownerguid="bd1bfdc8-a558-4b0b-af9f-c778dbdd32ad"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="80cc6767-3e19-4cee-8ca5-fbdaee4f5bd7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ba:rra</AUni> -<AUni ws="qvm-x-acl">ba:rra</AUni> -<AUni ws="qvm-x-akh">ba:rra</AUni> -<AUni ws="qvm-x-akl">ba:rra</AUni> -<AUni ws="qvm-x-ame">ba:rra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+barra</AUni> -<AUni ws="qvm-x-acl">+barra</AUni> -<AUni ws="qvm-x-akh">+barra</AUni> -<AUni ws="qvm-x-akl">+barra</AUni> -<AUni ws="qvm-x-ame">+barra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.949" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9aebd273-516a-4cb8-87c1-dd493e8282b4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+barra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6e70001d-9744-4171-a010-c98c41da2824" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4da84e2a-3ba2-4944-b6af-dcabc3e15265" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +barra 
\entryTyp root 
\gENG bar 
\gSPN 
\e +barra 
\c N0 
\ach ba:rra 
\akh ba:rra 
\acl ba:rra 
\akl ba:rra 
\ame ba:rra</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="80ce54d2-951c-4c91-b0b6-8f35bd644864"> -<Form> -<Str> -<Run ws="en">verb</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="80cf8cc3-905e-42bd-bd52-c1b82f473b90" ownerguid="4f22ebdb-01db-432a-9d7a-41cd44010265"> -<ExampleWords> -<AUni ws="en">accumulate, acquire, get rich, prosper</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to accumulating wealth?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="80d0a650-1487-4a2d-947f-4234a2dea989" ownerguid="30b3faa8-747e-465f-833a-a9957a259be2"> -<ExampleWords> -<AUni ws="en">a scattering (of something), Diaspora</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a group of things that have been separated?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="80d24f0b-f638-493e-9b06-8e3a26971cbc" ownerguid="af651f9b-9471-4bcc-944c-c1f58b2a7de9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sepulture</AUni> -<AUni ws="es">sepultura</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4cf561fd-6439-4040-ab6f-a34db4b5eada" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="80d29620-0144-485a-b310-896540b9616a" ownerguid="3d5d93ce-00e0-46ff-b220-553c12c38381"> -<ExampleWords> -<AUni ws="en">menstrual cycle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a woman's monthly menstrual cycle?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="80d33b5e-940c-4a5a-b42e-0fe8ac79a904"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">japa</AUni> -<AUni ws="qvm-x-acl">japa</AUni> -<AUni ws="qvm-x-akh">japa</AUni> -<AUni ws="qvm-x-akl">japa</AUni> -<AUni ws="qvm-x-ame">hapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hapa.v</AUni> -<AUni ws="qvm-x-acl">*hapa.v</AUni> -<AUni ws="qvm-x-akh">*hapa.v</AUni> -<AUni ws="qvm-x-akl">*hapa.v</AUni> -<AUni ws="qvm-x-ame">*hapa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.670" /> -<DateModified val="2022-10-10 21:19:47.698" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="90beb5a6-495e-4406-b712-22c3db5ab67c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hapa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7e6b3b3c-6692-48df-8e4d-b6344c68a962" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ba34ee9a-481b-46db-95c9-692822693e9d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hapa.v 
\entryTyp root 
\gENG step 
\gSPN 
\e *hapa.v 
\c V1 
\ach japa 
\akh japa 
\acl japa 
\akl japa 
\ame hapa 
\mcc *hapa.v / ~_ [lla] 
\mcc *hapa.v / ~_ 3 [lla]</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="80d88696-3447-4ab1-a871-44e93c5ec853" ownerguid="1a6588a1-08cd-4e67-9e1b-f4af3944322a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="80d8b4a5-dce6-4586-b34a-01c89b4ccf64" ownerguid="443857d7-ea23-4280-aeef-e8540a02a8af"> -<Form> -<AUni ws="qvm-x-ach">tröpa</AUni> -<AUni ws="qvm-x-acl">tröpa</AUni> -<AUni ws="qvm-x-akh">tröpa</AUni> -<AUni ws="qvm-x-akl">tröpa</AUni> -<AUni ws="qvm-x-ame">tröpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="80d8ed94-899f-4a27-9aa7-b5d375641d43" ownerguid="c793b885-6264-40bb-82d8-0251d7239da1"> -<Form> -<AUni ws="qvm-x-ach">tigri; tigre</AUni> -<AUni ws="qvm-x-acl">tigri; tigri; tigre</AUni> -<AUni ws="qvm-x-akh">tigri; tigre</AUni> -<AUni ws="qvm-x-akl">tigri; tigri; tigre</AUni> -<AUni ws="qvm-x-ame">tigri; tigre</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="80d90411-ebaf-4f12-9b8b-8180cb57a73d" ownerguid="f869a6c6-446c-4389-9e44-426ec5a3b530"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="7c77226b-f21e-45b2-8124-7be605371337" t="o" /> -<objsur guid="794480af-59d5-40c9-a34f-91059d6fc084" t="o" /> -</MorphBundles> -</rt> -<rt class="CmSemanticDomain" guid="80dc5ca1-44ce-4406-add8-2bbe19c122ab" ownerguid="cac1d7a8-7382-466e-ba4a-ba2bfe50f13b"> -<Abbreviation> -<AUni ws="en">3.5.9.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.184" /> -<DateModified val="2022-9-23 16:55:8.184" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to recording music.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Recorded music</AUni> -</Name> -<OcmCodes> -<Uni>216 Sound Records</Uni> -</OcmCodes> -<Questions> -<objsur guid="209a050f-de0c-49f4-ac5c-f7be1043f262" t="o" /> -<objsur guid="3043396a-40b8-4a30-8e03-6d1d555b9796" t="o" /> -<objsur guid="c46c9f94-d993-4962-9635-3fdec75626ba" t="o" /> -<objsur guid="ef29b436-621b-49a9-8637-71081f21fa30" t="o" /> -<objsur guid="91251e23-825c-4d60-bfd6-11cac92b4351" t="o" /> -<objsur guid="5ac8f063-0afd-491f-b244-fb31e34f53ee" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="80de758c-537d-4c8c-8308-4babfb2c787a" ownerguid="a4b03891-c2df-4d72-bbdc-13bc8d4eceba"> -<Abbreviation> -<AUni ws="en">8.5.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to occupying an area.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Occupy an area</AUni> -</Name> -<Questions> -<objsur guid="a17ed956-a254-47cf-92d6-85e66d16c8f1" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="8a81b9bc-9c66-4d57-a2d1-2e592604c4b1" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="80e0685f-c654-4734-ad6f-9a6f9be2fa71" ownerguid="4bf411b7-2b5b-4673-b116-0e6c31fbd08a"> -<ExampleWords> -<AUni ws="en">candlepower, frequency, lumen, radiant, radiation, refract, short-wave, spectrum</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words are used to describe light?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="80e32ce5-b8cd-4b3d-a0a4-4a03b86cc6c3" ownerguid="9aa12222-cd90-4218-b396-d39482cf6bd6"> -<Form> -<AUni ws="qvm-x-ach">albasya</AUni> -<AUni ws="qvm-x-acl">albasya</AUni> -<AUni ws="qvm-x-akh">albasya</AUni> -<AUni ws="qvm-x-akl">albasya</AUni> -<AUni ws="qvm-x-ame">albasya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="80e6c12b-3378-40e1-b83b-06f8d7c8bbab" ownerguid="5c94eafa-7b5b-4403-a6eb-4b5708878384"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">soft</AUni> -<AUni ws="es">suave</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0d922fd6-4c5b-4dea-b458-8ec2f9641d69" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="80e98c24-f829-4727-afc0-afd8a8adf519" ownerguid="328412ac-7dab-40ed-8f88-104ee8b6cbe6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">perhaps</AUni> -<AUni ws="es">capaz</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7dec2756-2172-4541-b0f8-42ffb90ad00b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="80ee4d98-0d2e-4e73-9295-27886c14156f"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Tashqaykichömi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="80ee826e-1a27-421d-968b-80e0a6e177f0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">desmaya</AUni> -<AUni ws="qvm-x-acl">desmaya</AUni> -<AUni ws="qvm-x-akh">desmaya</AUni> -<AUni ws="qvm-x-akl">desmaya</AUni> -<AUni ws="qvm-x-ame">desmaya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+desmayar</AUni> -<AUni ws="qvm-x-acl">+desmayar</AUni> -<AUni ws="qvm-x-akh">+desmayar</AUni> -<AUni ws="qvm-x-akl">+desmayar</AUni> -<AUni ws="qvm-x-ame">+desmayar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.386" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2f94bca1-a6d8-417f-a0d1-6a9bc16c15fa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+desmayar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="821227c1-f5d1-496d-baca-b0104881b465" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cf0f5056-0fc8-445e-bf69-e5eb38071d6e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +desmayar 
\entryTyp root 
\gENG 
\gSPN 
\e +desmayar 
\c V1 
\ach desmaya 
\akh desmaya 
\acl desmaya 
\akl desmaya 
\ame desmaya 
\i DAN 10.9 Parlashganta mayaycurmi desmayar pampaman upacsacaypa tunergä.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="80eec1b8-6795-44d9-8a26-ba46af1e09ee" ownerguid="5d8cae53-6f77-494b-84d0-189c29205104"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rather</AUni> -<AUni ws="es">sino</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="87484bc6-021f-43b5-9707-c26444f38c79" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="80f0945b-9e56-4379-98ce-00c0ef528aec"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gara</AUni> -<AUni ws="qvm-x-acl">gara</AUni> -<AUni ws="qvm-x-akh">qara</AUni> -<AUni ws="qvm-x-akl">qara</AUni> -<AUni ws="qvm-x-ame">qara</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qara.n</AUni> -<AUni ws="qvm-x-acl">*qara.n</AUni> -<AUni ws="qvm-x-akh">*qara.n</AUni> -<AUni ws="qvm-x-akl">*qara.n</AUni> -<AUni ws="qvm-x-ame">*qara.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.110" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bec4f12f-48e8-4217-83df-9dc555469724" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qara.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ca448d29-a414-4e20-a8d4-1ab480d87c6a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c7eb468c-b931-4388-afd4-f315f5eb11d2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qara.n 
\entryTyp root 
\gENG skin 
\gSPN piel 
\e *qara.n 
\c N0 
\ach gara 
\akh qara 
\acl gara 
\akl qara 
\ame qara 
\mcc *qara.n / ~_ PRT2 OBJ 3P</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="80f26fbc-ca89-4789-996d-4c09547f2504" ownerguid="d6c29733-beeb-4fc9-975f-5e78a8acc273"> -<Abbreviation> -<AUni ws="en">6.1.2.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.350" /> -<DateModified val="2022-9-23 16:55:8.350" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to completing a task.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>68C Complete, Finish, Succeed</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Complete, finish</AUni> -</Name> -<Questions> -<objsur guid="f13f587b-896d-4b9f-beaa-d9f32562b3b4" t="o" /> -<objsur guid="7fa2618c-d076-4428-a241-ab512a45c216" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="2c42f822-2079-440c-b3b7-7725b6a8db8b" t="r" /> -<objsur guid="58eeb55b-c57d-4f59-a7d6-9bf663fbf831" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="80f2e35f-35df-42d2-b5c1-7970b75b9e06" ownerguid="ae19b24e-c503-4897-938a-1529a6600d39"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="c54b1279-d408-43cb-a4a8-190ca3bca509" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="80f44d0c-72fe-4b3c-b505-6b06de3ee220" ownerguid="3430f8ab-f9ad-47af-a0f0-315210361573"> -<Gloss> -<AUni ws="en">CAUSml-</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="80f45257-3085-4e4e-a18e-982ed07a3bc4" ownerguid="5325a313-c82c-4327-ae51-ade7f344f724"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 150.5 Shalshalyacunata tucapalanpa alabashun.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="80f812a9-671b-45eb-bb97-b687605766a2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">profe:ta</AUni> -<AUni ws="qvm-x-acl">profe:ta</AUni> -<AUni ws="qvm-x-akh">profe:ta</AUni> -<AUni ws="qvm-x-akl">profe:ta</AUni> -<AUni ws="qvm-x-ame">profe:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+profeta</AUni> -<AUni ws="qvm-x-acl">+profeta</AUni> -<AUni ws="qvm-x-akh">+profeta</AUni> -<AUni ws="qvm-x-akl">+profeta</AUni> -<AUni ws="qvm-x-ame">+profeta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.931" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6b55e896-87cd-4cc8-82e4-0d80ee69bd58" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+profeta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="12421298-40c5-40dc-a922-c38c6edfc3e4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0f811fc0-c542-4848-86ee-eecfc91b03d2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +profeta 
\entryTyp root 
\gENG 
\gSPN profeta 
\e +profeta 
\c N0 
\ach profe:ta 
\akh profe:ta 
\acl profe:ta 
\akl profe:ta 
\ame profe:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="80fbc8c2-d865-4510-97ca-fc85f1e03bb6" ownerguid="93b8bd61-137a-4ebc-b12f-52fa5d2b3ea4"> -<ExampleWords> -<AUni ws="en">blow, knock down (things), rip, tear off, bend, puff out, billow out (sail), push (boat), raise (waves), fan flames, push snow into drifts, ventilate a house</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What does the wind do?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="80fc6bf4-e7c8-411d-9e1b-1b31c81112f3" ownerguid="65981f78-f621-4b2f-9fd7-af97dda527c5"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="8104bec8-403d-4783-9373-2228b57a2687" ownerguid="58f26019-27ad-44ab-a3bd-82eb8e5fce32"> -<Form> -<AUni ws="qvm-x-ach">munda</AUni> -<AUni ws="qvm-x-acl">munda</AUni> -<AUni ws="qvm-x-akh">munda</AUni> -<AUni ws="qvm-x-akl">munda</AUni> -<AUni ws="qvm-x-ame">munda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="810624ba-0660-4789-94fb-8e2d074af4c8" ownerguid="965c6a0b-3034-4e2f-a00b-ed2eb3119a5d"> -<Question> -<AUni ws="en">(3) hortative: the speaker is encouraging or inciting someone to action.</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="81065b96-7246-4262-bec3-0f07dcdee9be" ownerguid="1fce8fce-183c-4845-ac4d-dcfa16d7bbf5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="8109ab50-abe6-4b18-b31d-fb1de5143b0d" ownerguid="c8380d80-c01c-4638-9a43-37df36123ef2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="57861382-852e-4a6c-a569-b4395e342b18" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="810ba99d-647c-47a9-bd54-ebe4b427423e" ownerguid="7f1c3292-9d1f-4271-8aa3-bbfd6511104c"> -<Form> -<AUni ws="qvm-x-ach">kinuy</AUni> -<AUni ws="qvm-x-acl">kinuy</AUni> -<AUni ws="qvm-x-akh">kinuy</AUni> -<AUni ws="qvm-x-akl">kinuy</AUni> -<AUni ws="qvm-x-ame">kinuy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="810d01d5-4569-418e-b535-bcfebc6aca5e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mejora</AUni> -<AUni ws="qvm-x-acl">mejora</AUni> -<AUni ws="qvm-x-akh">mejora</AUni> -<AUni ws="qvm-x-akl">mejora</AUni> -<AUni ws="qvm-x-ame">mejora</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mejorar</AUni> -<AUni ws="qvm-x-acl">+mejorar</AUni> -<AUni ws="qvm-x-akh">+mejorar</AUni> -<AUni ws="qvm-x-akl">+mejorar</AUni> -<AUni ws="qvm-x-ame">+mejorar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.396" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4104237b-4a9c-4d03-8037-965f95f462a8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mejorar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7bfd8288-6f20-4527-99b4-aad65fe5e0d9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="98ae2365-ecde-44ee-927e-ebe62d568b43" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mejorar 
\entryTyp root 
\gENG improve 
\gSPN mejorar 
\e +mejorar 
\c V1 
\ach mejora 
\akh mejora 
\acl mejora 
\akl mejora 
\ame mejora</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="81109c61-2436-404c-9cf2-3cc228df79cc" ownerguid="04370e1f-25aa-4d9e-97c5-de9b59156666"> -<ExampleWords> -<AUni ws="en">first wife, first husband</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) When a person remarries, what words are used of their first spouse?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="81124368-385e-40c2-baea-e1fd68ff5780" ownerguid="a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f"> -<ExampleWords> -<AUni ws="en">sight, at first sight, your first sight of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to an occasion of seeing?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8113325d-cef1-49db-b504-644c3162a580" ownerguid="297324d9-93ac-487c-bbf6-74aa3dd017f8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="81133e46-f465-4cd1-b8c3-a14c8ca3348f" ownerguid="b10d1740-502e-4c62-840e-eb89c948c3dc"> -<Form> -<AUni ws="qvm-x-ach">linea</AUni> -<AUni ws="qvm-x-acl">linea</AUni> -<AUni ws="qvm-x-akh">linea</AUni> -<AUni ws="qvm-x-akl">linea</AUni> -<AUni ws="qvm-x-ame">linea</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8116dec0-458c-4cf1-ac9a-958dd9e6f22c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">le:chi; le:chi</AUni> -<AUni ws="qvm-x-acl">le:chi; le:chi; le:che</AUni> -<AUni ws="qvm-x-akh">le:chi; le:chi</AUni> -<AUni ws="qvm-x-akl">le:chi; le:chi; le:che</AUni> -<AUni ws="qvm-x-ame">le:chi; le:chi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+leche.3</AUni> -<AUni ws="qvm-x-acl">+leche.3</AUni> -<AUni ws="qvm-x-akh">+leche.3</AUni> -<AUni ws="qvm-x-akl">+leche.3</AUni> -<AUni ws="qvm-x-ame">+leche.3</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.630" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0f75284b-4dd3-4d2a-a8dd-24037c619026" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+leche.3</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0d8c558b-9f99-48d1-bab5-0076887bdf66" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="38cc7fdc-270f-4776-a3b1-1edf0a21bbf3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +leche.3 
\entryTyp root 
\gENG semen 
\gSPN semen 
\e +leche.3 
\c N0 
\mp +FinalI 
\ach le:chi / _# 
\ach le:chi / ~_# 
\akh le:chi / _# 
\akh le:chi / ~_# 
\acl le:chi / _# 
\acl le:chi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl le:che +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl le:chi / _# 
\akl le:chi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl le:che +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame le:chi / _# 
\ame le:chi / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8118abc9-37af-41d0-8496-fa4130cca499" ownerguid="bfbfb9b5-363d-4767-a5cb-1b11b348efd6"> -<ExampleWords> -<AUni ws="en">zero, nil, naught, o</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the number zero?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="81190b38-dbe3-4965-b8c4-8efc2859eec6" ownerguid="e88bdf5a-590d-43c9-b964-845f8ef04beb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="193f6362-cc2d-4723-9949-afc0692c28be" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="81190e5b-abbe-4e16-9e66-827f965b20b6" ownerguid="2005ccc6-764d-4fbf-aee6-6f5162265f74"> -<Form> -<AUni ws="qvm-x-ach">morädu</AUni> -<AUni ws="qvm-x-acl">morädu; morädu; morädo</AUni> -<AUni ws="qvm-x-akh">morädu</AUni> -<AUni ws="qvm-x-akl">morädu; morädu; morädo</AUni> -<AUni ws="qvm-x-ame">morädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="811a2abc-4bf3-44e4-9ff4-e33ff4470ce6" ownerguid="af0909a5-928a-4421-baaa-f33b14302714"> -<Abbreviation> -<AUni ws="en">9.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain to list all prepositions and postpositions.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Prepositions, postpositions</AUni> -</Name> -<Questions> -<objsur guid="f8e49816-1a23-4359-a5d1-968b2fbf18c4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="811e229b-689d-4077-8a76-4cde37696f89" ownerguid="a2508183-7ea5-434e-a773-00d53087d27b"> -<ExampleWords> -<AUni ws="en">mental state, mental condition, conscious state</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to a person's mental state?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="811e8c93-d97a-4aab-bd67-268b7783ff11" ownerguid="5bb29704-fe0f-4594-9622-ce0aa42b93c8"> -<Abbreviation> -<AUni ws="en">6.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.397" /> -<DateModified val="2022-9-23 16:55:8.397" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to tending a field.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Tend a field</AUni> -</Name> -<Questions> -<objsur guid="5fa46982-736c-4de1-84c6-5c4fc70d3516" t="o" /> -<objsur guid="5c086316-09f5-409b-9f51-722bdc54b885" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="32f868e0-54a7-4d04-8689-ac10e13396e5" t="o" /> -<objsur guid="9e98c76f-6c1c-4b7d-8f71-38f9f0e8750e" t="o" /> -<objsur guid="a2ce1453-9832-447c-9481-70c9e2da4227" t="o" /> -<objsur guid="a9fe3347-12ae-4624-b55e-45ea42cdbf9b" t="o" /> -<objsur guid="0698b0f4-0a31-4a70-9262-8d36677d8faa" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="811f4b3a-fedc-4bc3-ac30-1fbdffa3a430" ownerguid="c313c84c-fa1f-41f0-85fb-0362d86e10a1"> -<Form> -<AUni ws="qvm-x-ach">aliya</AUni> -<AUni ws="qvm-x-acl">aliya</AUni> -<AUni ws="qvm-x-akh">aliya</AUni> -<AUni ws="qvm-x-akl">aliya</AUni> -<AUni ws="qvm-x-ame">aliya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="ae5f3ffd-a9d0-4eaa-9040-50a5a57e64bc" t="r" /> -<objsur guid="b27c54e7-0a24-46d7-b332-e63a45ecffc2" t="r" /> -</PhoneEnv> -</rt> -<rt class="PunctuationForm" guid="8126bf78-b8a4-464d-8f6a-b1ca1a31f107"> -<Form> -<Str> -<Run ws="qvm-x-akh">=</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="8126caa2-bdd4-4e06-9460-b158da164a29" ownerguid="a3ba10f3-66e3-4ad5-8057-453b8941e497"> -<ExampleWords> -<AUni ws="en">battlefield, field of battle, theater of war, scene of the battle, front, front lines, flank, rear, war zone</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the place where a war is fought?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="812cc454-f3b8-40a0-9a07-4ebbb49abc8e" ownerguid="1ba433c0-abc7-46a0-9813-326b76a3fce9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="812d3560-1ecc-4feb-97e4-294ee3853f85" ownerguid="edf17f72-7e7a-4f8d-a5ee-f4889492d73a"> -<ExampleWords> -<AUni ws="en">nonsense, gibberish, babble, drivel, hocus-pocus, mumbo jumbo, gobbledygook</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something that has no meaning?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="81318d0e-f3f7-4ea9-a163-ea6c4058ba0b" ownerguid="e2f3437a-57e1-4776-9db9-06220d307f3d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hymn</AUni> -<AUni ws="es">himno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a440fce5-36f2-4bb3-a487-684ec5845ef0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="813545f6-6213-482d-919e-86244fad47e8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yama</AUni> -<AUni ws="qvm-x-acl">yama</AUni> -<AUni ws="qvm-x-akh">yama</AUni> -<AUni ws="qvm-x-akl">yama</AUni> -<AUni ws="qvm-x-ame">yama</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yama</AUni> -<AUni ws="qvm-x-acl">*yama</AUni> -<AUni ws="qvm-x-akh">*yama</AUni> -<AUni ws="qvm-x-akl">*yama</AUni> -<AUni ws="qvm-x-ame">*yama</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.719" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="edf65977-38ea-42f8-8119-0618c0f2342c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yama</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="77e0981b-8f3c-45af-8baa-d4c78ba32deb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bef8c538-d69e-4b60-8d0b-5c8560d712eb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yama 
\entryTyp root 
\gENG satisfy 
\gSPN satisfacer 
\e *yama 
\c V2 
\ach yama 
\akh yama 
\acl yama 
\akl yama 
\ame yama</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="813a2dd1-5723-44b0-8b4d-57f045ad047d" ownerguid="9119c29d-ddb5-4613-8f36-f8cd48a9b751"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="813a720d-2477-4a67-bf2d-938ab6586dae"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">goñu</AUni> -<AUni ws="qvm-x-acl">goñu; goño</AUni> -<AUni ws="qvm-x-akh">qoñu</AUni> -<AUni ws="qvm-x-akl">qoñu; qoño</AUni> -<AUni ws="qvm-x-ame">quñu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*quñu.v</AUni> -<AUni ws="qvm-x-acl">*quñu.v</AUni> -<AUni ws="qvm-x-akh">*quñu.v</AUni> -<AUni ws="qvm-x-akl">*quñu.v</AUni> -<AUni ws="qvm-x-ame">*quñu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.861" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="252159f4-2acc-44a4-b019-f6e0eceb994d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*quñu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="953dba8b-885e-4b5d-9db4-9f9620c042c6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8436e8de-22ec-4c80-a374-b52b5ca21c7a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *quñu.v 
\entryTyp root 
\gENG be.warm 
\gSPN ser.cálido 
\e *quñu.v 
\c V1 
\ach goñu 
\akh qoñu 
\acl goñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl goño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qoñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qoño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame quñu 
\i 1KI 1.1 Rey David auquinna carmi mayjina pituptinpis mana goñurergantsu. 
\mcc *quñu.v / _ PNCT1 / _ AG / _ REF IMPFV1 / _ PNCT3 / _ CAUS / _ REF</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="813ad3c8-dc57-45c9-8e17-b23192e516af" ownerguid="842791ec-62bb-4f54-8cfa-f40ac4b6cea7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tie.up</AUni> -<AUni ws="es">amarrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="601d8ee4-f0d3-4a79-971c-3ae5f92090f8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="813dd578-4318-4ce0-bae2-82ee48f31a2a" ownerguid="1bd626c2-0c06-4697-a9ab-0a79acfeb152"> -<Form> -<AUni ws="qvm-x-ach">indiu; indio</AUni> -<AUni ws="qvm-x-acl">indiu; indiu; indio</AUni> -<AUni ws="qvm-x-akh">indiu; indio</AUni> -<AUni ws="qvm-x-akl">indiu; indiu; indio</AUni> -<AUni ws="qvm-x-ame">indiu; indio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="81410dbf-9ab2-4a32-b455-2edf4bc6f927" ownerguid="e6ec43ef-0100-4cf4-a047-c575ee8613b4"> -<ExampleWords> -<AUni ws="en">be under someone's control, be in someone's power, be under someone's spell, be at someone's mercy, be a doormat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to being under someone's control?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="8143998b-a4eb-467a-ad26-fa748d32f234" ownerguid="078e693c-6beb-471a-9705-7c930452a4d7"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 11.5 Wanutsicogcunata y atacagcunataga alma y vïdami chiquin.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="81492ead-8b70-4813-9d8a-edc5d5a3fd02" ownerguid="fe22e7b6-af7f-4f65-a525-753701a40aaf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">famine</AUni> -<AUni ws="es">hambruna</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ea3b0f5a-182c-4b79-ad7e-80f1fa7205da" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoAffixAllomorph" guid="8150a0ee-00d2-4be1-a8be-c798339dcc68" ownerguid="977ccc2a-3214-49ae-b752-bc1f9e878cfc"> -<Form> -<AUni ws="qvm-x-ach">rcayca</AUni> -<AUni ws="qvm-x-acl">rcayca</AUni> -<AUni ws="qvm-x-akh">rkayka</AUni> -<AUni ws="qvm-x-akl">rkayka</AUni> -<AUni ws="qvm-x-ame">rkayka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="ae5f3ffd-a9d0-4eaa-9040-50a5a57e64bc" t="r" /> -<objsur guid="b27c54e7-0a24-46d7-b332-e63a45ecffc2" t="r" /> -</PhoneEnv> -</rt> -<rt class="WfiAnalysis" guid="81531d1a-04b9-44ca-92cb-be8555727f04" ownerguid="f2b82e93-c70c-4125-a52d-d0fcce2c9ac7"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="179d8841-a49e-4e4b-a268-39c45a92c33e" t="o" /> -<objsur guid="297aa3e3-50b7-4aa4-8022-d5ecac25f64b" t="o" /> -<objsur guid="5db97c74-f5ba-4a0b-a7b2-cd21069be091" t="o" /> -<objsur guid="faa5472b-1cf5-4ed9-99e2-2d2f3e3f8d43" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="8156b714-2f81-46f8-99f2-d4f73138b2f7" ownerguid="5c770098-2c91-4a9c-bfa0-a7ffaa871a7f"> -<ExampleWords> -<AUni ws="en">division of labor, specialization, specialist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to the practice of having people work at special jobs?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="81576c4d-bbad-4d4c-8d09-f38ec2b121f4"> -<Form> -<Str> -<Run ws="en">to</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="815820ec-27a5-4af4-a50f-085c7ae54dfd" ownerguid="b6ead5e6-dab5-4941-9017-d03452182709"> -<ExampleWords> -<AUni ws="en">green, beginning (student), new, uninitiated, ignorant, untrained, inexperienced, unknowledgeable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe someone who is not an expert?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="815e3954-9450-4544-a708-8dd590468cd1" ownerguid="569c6e73-cd36-4a45-94b4-5d3c0083ce73"> -<Form> -<AUni ws="qvm-x-ach">raura; raurä</AUni> -<AUni ws="qvm-x-acl">raura; raurä</AUni> -<AUni ws="qvm-x-akh">rawra; rawrä</AUni> -<AUni ws="qvm-x-akl">rawra; rawrä</AUni> -<AUni ws="qvm-x-ame">rawra; rawrä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="815e839f-fd4c-42bf-ad00-39e49714a2d5" ownerguid="931f5198-a4ff-472d-8f70-cf8806ec3ec7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="8161e1a7-6274-4d78-950c-2004c4164816"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pi:cu</AUni> -<AUni ws="qvm-x-acl">pi:cu; pi:cu; pi:co</AUni> -<AUni ws="qvm-x-akh">pi:cu</AUni> -<AUni ws="qvm-x-akl">pi:cu; pi:cu; pi:co</AUni> -<AUni ws="qvm-x-ame">pi:cu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pico</AUni> -<AUni ws="qvm-x-acl">+pico</AUni> -<AUni ws="qvm-x-akh">+pico</AUni> -<AUni ws="qvm-x-akl">+pico</AUni> -<AUni ws="qvm-x-ame">+pico</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.820" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="50f406e0-fd48-4856-b86c-c92f7c464e33" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pico</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f17b6037-c11d-4583-8ed5-77c1526cd65a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fee8316e-b563-4561-9a57-dec9dbe1aaa3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pico 
\entryTyp root 
\gENG pick 
\gSPN pico 
\e +pico 
\c N0 
\ach pi:cu 
\akh pi:cu 
\acl pi:cu / _# 
\acl pi:cu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pi:co +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pi:cu / _# 
\akl pi:cu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pi:co +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pi:cu 
\mcc +pico / ~_ NOW EMPH1 
\mcc +pico / ~_ NOW NOW 
\mcc +pico / ~_ NOW [wfinal] 
\mcc +pico / ~_ DES 
\mcc +pico / ~_ NOW</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="81622280-13ae-4f67-bf16-618e0d13abad" ownerguid="3cad3ed9-564b-4ca8-bc0a-b437506eabb5"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="e0d0ceb6-d9b2-44d5-bbcf-8ee58c446cc7" t="o" /> -<objsur guid="8ac98b7b-fe1f-494a-8412-732e8121f3cf" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="8162258b-f214-4140-9a59-5110e15e746c" ownerguid="6c36a680-4ff4-43b9-a7c2-9037ceb0d3f6"> -<ExampleWords> -<AUni ws="en">cylinder, cylindrical, rod, pipe, tube</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something that is long and round?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="81633ead-4fa8-4c3b-b7df-704ef1f2ef7b" ownerguid="d1b3d0f0-5319-4a6a-8a70-2179a8e76d22"> -<ExampleWords> -<AUni ws="en">unnecessary, needless, gratuitous, dispensable, luxury</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe something that is not needed?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="81635412-aeae-48d7-9f0e-5ee43b1249fa" ownerguid="23dc662b-3b24-4546-8b1c-14d8c041813c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="816490a4-2cac-472a-bbb0-eafbb9bbe4a8" ownerguid="fb84538a-17a8-4adc-8d50-e2b66f8e4099"> -<Abbreviation> -<AUni ws="en">8.1.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.559" /> -<DateModified val="2022-9-23 16:55:8.559" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the ordinal numbers (first, second, third)--the numbers used to indicate the order of something in a series, such as "the first child".</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>60C First, Second, Third, Etc.</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Ordinal numbers</AUni> -</Name> -<Questions> -<objsur guid="a766155b-12a1-420d-94eb-93fb5b2dba7c" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="6045c6eb-efea-4586-95f8-840d32578d66" t="r" /> -<objsur guid="f352a437-58f2-4920-aec3-eda8041f7447" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="81677afb-883f-41ea-8294-f082542ac4c0" ownerguid="72274e9d-5d3c-4ae7-93ab-db3617cdda1e"> -<ExampleWords> -<AUni ws="en">sensitive, feel the (heat/cold)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(18) What words refer to feeling things more than most people?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8169329a-3ea8-4092-84ca-be293325815b" ownerguid="6f3aae2b-f3f4-470e-8348-fdff71b72706"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cracked.cereal</AUni> -<AUni ws="es">cereal.molido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4decbc06-ecdc-44ab-b090-b260e6c16aed" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="816af2da-7eff-46c5-be60-d17302d3960f" ownerguid="86e5c062-d90f-476c-a363-264adfafedfa"> -<ExampleWords> -<AUni ws="en">kick, stamp, bend, shake, twist (ankle), cross (your legs), wiggle (toes)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to moving your legs?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="816d4d19-db45-4cb3-a805-eed74181c3b6" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<ExampleWords> -<AUni ws="en">business man, secretary, treasurer, accountant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What are the occupations in administration?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="81703408-d7fa-43fb-a1d1-386fdc14a22a" ownerguid="f40c36aa-65a5-4d32-9f81-eb51ae3b88de"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="81706936-959a-437a-b9ab-ae642908dd78" ownerguid="09bf6181-150d-452c-9520-bed1b8a2d45c" /> -<rt class="CmDomainQ" guid="8171dec6-6fa5-47fe-9222-675fb4fe4ba9" ownerguid="cb99a086-8c6d-4f90-81db-6afa69ae5455"> -<ExampleWords> -<AUni ws="en">cackle, cluck, crow, cockle doodle doo</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What sounds do chickens make?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8173365a-4aa0-4048-888e-d0b5379e1093" ownerguid="ebd37f6f-573c-4328-a021-71b197bb0b85"> -<Form> -<AUni ws="qvm-x-ach">atatau</AUni> -<AUni ws="qvm-x-acl">atatau</AUni> -<AUni ws="qvm-x-akh">atataw</AUni> -<AUni ws="qvm-x-akl">atataw</AUni> -<AUni ws="qvm-x-ame">atataw</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="81734053-8676-402e-8871-4ee306608383" ownerguid="7191be07-9702-4a82-ba0b-2fd748164668"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="d4d0cb33-da34-4584-94be-edc056f96059" t="o" /> -<objsur guid="9aa61de6-fd7d-4f1c-859d-93b993693023" t="o" /> -<objsur guid="83ffdb4a-afd9-47ac-a87b-3b4bbf3137f6" t="o" /> -<objsur guid="862c11ec-d429-4e89-ac33-7f04efd686eb" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="81753cc6-0885-4e51-828d-6e2391beab15" ownerguid="9f868391-f1df-4682-bdcb-2c2c799006cf"> -<ExampleWords> -<AUni ws="en">reminder, note, memo, memorandum, cue, souvenir, memorial, remembrance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something that reminds a person of something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8176bba9-37a7-4011-b74c-46e78f2d6067" ownerguid="8da190db-383a-43d3-aed7-ecd832665c19"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="81780f92-148b-4033-b369-f85630b93120" ownerguid="ff989f79-e78b-4864-8615-6fd902ed236b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tuber</AUni> -<AUni ws="es">tubérculo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="634a59bc-58b3-4051-9f07-870cbdcb66fe" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="81796940-9ae3-440f-a17b-e21bc698c63b" ownerguid="f996e144-02df-417b-8d67-c2b1adba1085"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sharpen</AUni> -<AUni ws="es">afilar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3a41a9eb-39ab-4593-a945-f40dcbba2674" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="817a0280-edf1-4b47-8974-d4cafda97e75" ownerguid="ac9120c4-18fc-4aa9-96ce-2af7348e152a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 8.28 Lamar mana geshmacänanpag tacyatsiptinpis tsaychömi caycargä.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="817a97ec-2f15-436f-92e4-1e0d30d8983a" ownerguid="307bd120-e876-4218-b489-8c794914b8c6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">na</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">na</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">na</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">na</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">na</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7a9a0db9-5eb5-414c-9dd3-907a54abc86b" t="r" /> -</Morph> -<Msa> -<objsur guid="a91771ad-8785-4e3e-b6f8-793820e3a8bd" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="817ac8a2-4903-4c13-b5a4-9a8e1270421d" ownerguid="7b7f948a-733c-4245-a403-1e7e35bb5c9a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="817b4da2-c804-4692-bc7e-1d575d60e158" ownerguid="3d707fe4-c5ec-49df-9d5e-b3aeee36384f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="817ce678-1a0b-421e-9945-265cb8607713" ownerguid="d574c970-6834-4566-ae37-f42c7e95483b"> -<ExampleWords> -<AUni ws="en">weigh a ton</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is very heavy?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="817d04f0-6555-41db-9960-fe39270e8d47" ownerguid="22a0ca9f-7947-4ac8-a411-9e74b9c2642d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">olive</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="de45e86b-9f26-4947-8240-82d9fbd22a39" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="817d785e-02bb-41ed-9aa7-c4a2370e9846" ownerguid="67e57493-d286-4271-b877-f63f962dddf1"> -<ExampleWords> -<AUni ws="en">how big, be (ten acres) in size, cover, extend over</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words indicate how big an area is?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8180176d-32cd-4972-9746-b31d68807b78" ownerguid="e7acb7d5-f605-4f9b-bd5b-72eb2d495936"> -<Form> -<AUni ws="qvm-x-ach">compás; compas</AUni> -<AUni ws="qvm-x-acl">compás; compas</AUni> -<AUni ws="qvm-x-akh">compás; compas</AUni> -<AUni ws="qvm-x-akl">compás; compas</AUni> -<AUni ws="qvm-x-ame">compás; compas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8181e6ba-8028-4adf-91f8-3e928cc4af86" ownerguid="dbd3e164-3f70-4395-9728-1c24c8900da6"> -<ExampleWords> -<AUni ws="en">handle (of a pot, knife), blade (of a knife), lid (of a pot, container), lip (of a bowl), door (of an oven, refrigerator, cupboard), shelf (of a refrigerator, cupboard), rack (of an oven, grill)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What are the parts of these utensils?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="81855f47-aa24-435d-a123-7dfe61c80702" ownerguid="7d54d3dd-5fb2-4640-9bcf-c234696af894"> -<Abbreviation> -<AUni ws="en">4.3.5.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.235" /> -<DateModified val="2022-9-23 16:55:8.235" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being unreliable.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Unreliable</AUni> -</Name> -<Questions> -<objsur guid="c987cbf8-9376-4cc4-94ca-04b0045a998a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="818aa3fa-73de-4db1-9928-4e5c50eaf271" ownerguid="8602761b-c356-403d-a5cf-8687d677c5c7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="818e2f97-8aa8-4406-aa42-1266a9fecf01" ownerguid="89f83065-6807-460c-afbe-a629b2d801fa"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="818e33ff-590e-4d0e-b84e-67771324a545" ownerguid="efe8e7b5-e008-4a3a-b3e1-23ae03a0083e"> -<Abbreviation> -<AUni ws="en">6.7.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to digging tools.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Digging tool</AUni> -</Name> -<Questions> -<objsur guid="7f52529d-5e6e-4e45-a2b6-d1d28c35b3c9" t="o" /> -<objsur guid="dc80a4c5-3a1c-4fae-a3f8-f4ffa9fd06d6" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="8190ca13-8e01-4b81-9571-1d8fa988326f" ownerguid="d38c92e2-6409-4b6b-842e-013486e407ee"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="81916f8e-8809-442a-8d35-37b27c74de58" ownerguid="c40e9b00-548c-445a-8316-3d653364527b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="81927101-320c-4071-83e1-e68d25b441c4" ownerguid="d48899ec-a6b4-4750-9c89-fe15e96c3e44"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="8197eac8-65a6-4b9e-a86b-698929a5e952" ownerguid="6cea20b9-67a9-4e43-81b5-ac54e38743d6"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="7e8c3681-0c2f-4507-941a-573957c9c3c0" t="o" /> -<objsur guid="1ff8ac16-696a-4eee-8dc8-4293d3123b58" t="o" /> -<objsur guid="af1d114f-12ae-4cbd-9936-f1d325ef06e2" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiMorphBundle" guid="819a1d50-5821-446d-87b1-f2ab3220f014" ownerguid="f2899cde-08e5-4930-9f1b-b4ad575b7411"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="819d4df5-a9b0-44b4-910e-c38effae0983" ownerguid="0fb54373-f990-4be9-8eb8-2277f4eb45af"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bone</AUni> -<AUni ws="es">hueso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="97bb75ae-42bc-4f7b-8d9b-d9c865e08db4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="819df116-b077-4bf8-9c17-1c1835eba27c" ownerguid="7efc2786-02ee-469f-81f8-b84514726be1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="81a0599e-2713-439f-93c3-d0eb9e0ff735" ownerguid="c358b041-7a1a-43d6-8e61-26b9507f559f"> -<ExampleWords> -<AUni ws="en">have a meeting, attend, attendance, congregate, convene</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to meeting in a group?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="81a36a17-776c-48f0-bdc4-21e4613246b0" ownerguid="93909cd8-593e-42bd-9c04-20e4d34a62e5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">marimacha</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dcd75e81-78f2-4944-a323-dd33d31698d3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="81a61411-2402-4397-bc49-30683b850ce6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cacha; cacha:</AUni> -<AUni ws="qvm-x-acl">cacha; cacha:</AUni> -<AUni ws="qvm-x-akh">kacha; kacha:</AUni> -<AUni ws="qvm-x-akl">kacha; kacha:</AUni> -<AUni ws="qvm-x-ame">kacha; kacha:</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.487" /> -<DateModified val="2022-10-16 15:0:13.201" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eeea96cb-1268-4a35-9667-fa435e500f01" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">BF</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f5ac8aae-add3-428c-8670-61b9b9ef1327" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1bee2942-0854-4a45-819a-1b5a3f1542bf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx BF 
\entryTyp suffix 
\gENG BF 
\gSPN AQAL 
\e BF 
\c V1/V1 V2/V2 
\o 020 
\mp +foreshortens 
\mp +underlong 
\ach cacha foreshortened 
\ach cacha: 
\akh kacha foreshortened 
\akh kacha: 
\acl cacha foreshortened 
\acl cacha: 
\akl kacha foreshortened 
\akl kacha: 
\ame kacha foreshortened 
\ame kacha: 
\mp +FinalC 
\mp +FinalLength 
\mcc BF / ~_ PNCT1</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="81aef061-1a15-4b33-8907-ae5c384e1fbd" ownerguid="b14db9f4-5e1d-4a2b-bec0-0d6bcb5b1a31"> -<ExampleWords> -<AUni ws="en">fall, drop, come down, parachute</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to something like rain or leaves falling through the air?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="81b1599e-eb5f-4de2-8306-b9265be29601" ownerguid="76ad9fa6-4fde-4c80-a977-15677369edc2"> -<Form> -<AUni ws="qvm-x-ach">dedica</AUni> -<AUni ws="qvm-x-acl">dedica</AUni> -<AUni ws="qvm-x-akh">dedica</AUni> -<AUni ws="qvm-x-akl">dedica</AUni> -<AUni ws="qvm-x-ame">dedica</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="81b564d9-347e-4ad1-9cc1-bfa7497fe06a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">parali:ticu</AUni> -<AUni ws="qvm-x-acl">parali:ticu; parali:ticu; parali:tico</AUni> -<AUni ws="qvm-x-akh">parali:ticu</AUni> -<AUni ws="qvm-x-akl">parali:ticu; parali:ticu; parali:tico</AUni> -<AUni ws="qvm-x-ame">parali:ticu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+paralítico</AUni> -<AUni ws="qvm-x-acl">+paralítico</AUni> -<AUni ws="qvm-x-akh">+paralítico</AUni> -<AUni ws="qvm-x-akl">+paralítico</AUni> -<AUni ws="qvm-x-ame">+paralítico</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.717" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="727de97b-583d-4366-8d87-1b3a69eb3625" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+paralítico</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="adc33d47-17d7-446d-ae82-5af743c1cb02" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c5406d9e-3a16-4571-b070-f4c68c4cb389" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +paralítico 
\entryTyp root 
\gENG paralitic 
\gSPN paralítico 
\e +paralítico 
\c N0 
\ach parali:ticu 
\akh parali:ticu 
\acl parali:ticu / _# 
\acl parali:ticu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl parali:tico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl parali:ticu / _# 
\akl parali:ticu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl parali:tico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame parali:ticu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="81b62078-984c-4e82-94c4-39fa44dd3e56" ownerguid="bc9d763c-e4fe-48ab-ad44-87a36f6cc06f"> -<Abbreviation> -<AUni ws="en">3.5.1.8.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.164" /> -<DateModified val="2022-9-23 16:55:8.164" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to insulting someone--to say that someone is bad.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33P' Insult, Slander; 33R' Mock, Ridicule</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Insult</AUni> -</Name> -<Questions> -<objsur guid="e7e454db-ed18-4ee1-bd4b-fe30bd25df68" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="81b7371a-fb47-4f41-bc5f-093bed8df0ba" ownerguid="1bd42665-0610-4442-8d8d-7c666fee3a6d"> -<ExampleWords> -<AUni ws="en">moonlit, be in the moonlight, lit by the moon, shine on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe where the moon is shining?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="81b73cd7-3b2d-4773-8e83-732db08860f5" ownerguid="7cc6f309-a301-4fa9-953e-49a0064f631c"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="81bc8d2a-ce4c-4f41-9163-0ec9d2bbc190" ownerguid="742996cd-b87f-40a8-bdb3-dba74219bd73"> -<ExampleWords> -<AUni ws="en">fire, heater, furnace, central heating, radiator, hot-water bottle, electric blanket</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What things do people use to stay warm when it is cold?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="81bd9573-b1ba-4592-bf79-986ee4b4445b" ownerguid="f081f71e-0bfa-46cb-a42c-6d675b245216"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="81c1d30e-66fd-49de-9a43-ad5ff7f442f6" ownerguid="f440b36d-dae0-4082-8d00-5b814ef4c416"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cay</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cay</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kay</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kay</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kay</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a7b299e0-c78a-4279-9168-db242095977e" t="r" /> -</Morph> -<Msa> -<objsur guid="90ff85be-42f6-4a30-a658-5b1780202333" t="r" /> -</Msa> -<Sense> -<objsur guid="fa2ddb0d-7474-4400-9737-62b941034651" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="81cca8b9-9d12-4d7b-a013-9fcdbe9dacf9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">porcientu; porciento</AUni> -<AUni ws="qvm-x-acl">porcientu; porcientu; porciento</AUni> -<AUni ws="qvm-x-akh">porcientu; porciento</AUni> -<AUni ws="qvm-x-akl">porcientu; porcientu; porciento</AUni> -<AUni ws="qvm-x-ame">porcientu; porciento</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+porciento</AUni> -<AUni ws="qvm-x-acl">+porciento</AUni> -<AUni ws="qvm-x-akh">+porciento</AUni> -<AUni ws="qvm-x-akl">+porciento</AUni> -<AUni ws="qvm-x-ame">+porciento</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.901" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6d3392e1-ea9f-4c48-ba5b-496a57d0ec8a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+porciento</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1d203321-72af-48b5-9982-f6ac421a8c60" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f740c422-4609-4d2a-be3c-276c06ca8d6a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +porciento 
\entryTyp root 
\gENG percent 
\gSPN 
\e +porciento 
\c N0 
\ach porcientu / ~_# 
\ach porciento / _# 
\akh porcientu / ~_# 
\akh porciento / _# 
\acl porcientu / ~_# 
\acl porcientu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl porciento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl porcientu / ~_# 
\akl porcientu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl porciento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame porcientu / ~_# 
\ame porciento / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="81cdb830-46f0-4b11-a295-84966b558492" ownerguid="396a2a1b-832f-4180-b26a-c606550541d7"> -<ExampleWords> -<AUni ws="en">blunt, dull</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is blunt?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="81cdca5a-dc53-4b1d-8324-4dc64aed00b8" ownerguid="691bdba3-c216-4b42-877c-674bbdb517a7"> -<ExampleWords> -<AUni ws="en">trusting</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe someone who usually trusts other people?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="81ce1631-4723-4473-a246-c7e78191b065" ownerguid="196940fa-c47f-4e11-95ef-7d886b3f2d15"> -<Form> -<AUni ws="qvm-x-ach">ayca</AUni> -<AUni ws="qvm-x-acl">ayca</AUni> -<AUni ws="qvm-x-akh">ayka</AUni> -<AUni ws="qvm-x-akl">ayka</AUni> -<AUni ws="qvm-x-ame">ayka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="81ce75c5-ef9c-4f66-9393-9a12019acc10"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wichi</AUni> -<AUni ws="qvm-x-acl">wichi; wichi; wiche</AUni> -<AUni ws="qvm-x-akh">wichi</AUni> -<AUni ws="qvm-x-akl">wichi; wichi; wiche</AUni> -<AUni ws="qvm-x-ame">wichi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wichi.n</AUni> -<AUni ws="qvm-x-acl">*wichi.n</AUni> -<AUni ws="qvm-x-akh">*wichi.n</AUni> -<AUni ws="qvm-x-akl">*wichi.n</AUni> -<AUni ws="qvm-x-ame">*wichi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.648" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bb53ef55-bd3c-42ae-8e9b-770b7ded295c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wichi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="629c978a-b327-47ae-9b54-9b69708551e0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b6a58a0e-d993-4bc3-bc99-664c57d7902f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wichi.n 
\entryTyp root 
\gENG pitcher 
\gSPN cántaro 
\e *wichi.n 
\c N0 
\mp +FinalI 
\ach wichi 
\akh wichi 
\acl wichi / _# 
\acl wichi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wiche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wichi / _# 
\akl wichi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl wiche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wichi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="81cec056-0c32-474e-bd7e-ac141cdba4ec" ownerguid="f4b77866-c607-43f0-b816-95459c269525"> -<ExampleWords> -<AUni ws="en">foolish, meaningless, silly, stupid</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe foolish talk?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="81d18b4b-adff-4c91-be60-5a9570cf506e" ownerguid="710828bc-5dfb-4685-b1a5-156700ab08f1"> -<ExampleWords> -<AUni ws="en">read, decipher</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to reading?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="81d21551-f443-430f-b26a-11e481d95c37"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shaptu</AUni> -<AUni ws="qvm-x-acl">shaptu; shapto</AUni> -<AUni ws="qvm-x-akh">shaptu</AUni> -<AUni ws="qvm-x-akl">shaptu; shapto</AUni> -<AUni ws="qvm-x-ame">shaptu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shaptu</AUni> -<AUni ws="qvm-x-acl">*shaptu</AUni> -<AUni ws="qvm-x-akh">*shaptu</AUni> -<AUni ws="qvm-x-akl">*shaptu</AUni> -<AUni ws="qvm-x-ame">*shaptu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.541" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="43041fa3-fcc3-4679-ab41-772bb171dab3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shaptu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="008df509-2829-43e8-84bb-da30a198c327" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a97ff68c-ac58-405a-a366-6e8a3df23715" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shaptu 
\entryTyp root 
\gENG 
\gSPN 
\e *shaptu 
\c V1 
\ach shaptu 
\akh shaptu 
\acl shaptu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shapto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shaptu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shapto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shaptu 
\i Cärru cumariptin uma tulunta shaptushga.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="81d2e3f1-acb3-4920-b5b3-e5ef1f7f9561" ownerguid="d25f7907-091e-4cf7-bd8c-bdb97278b616"> -<ExampleWords> -<AUni ws="en">hit, strike, bang into, smack, bump (into), crash into</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to one thing hitting another?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="81d52ec1-f6de-483a-9686-50973ea72f8e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">na</AUni> -<AUni ws="qvm-x-acl">na</AUni> -<AUni ws="qvm-x-akh">na</AUni> -<AUni ws="qvm-x-akl">na</AUni> -<AUni ws="qvm-x-ame">na</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.538" /> -<DateModified val="2022-10-15 16:7:24.658" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="1" /> -<LexemeForm> -<objsur guid="38151a50-9c63-4a70-8bbb-e5cfc5339ad5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">NOM</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3afae7ea-b6f9-4990-9b80-c355228ee832" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="731e8e9a-8685-4698-8b5b-be29d8056c2f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx NOM 
\entryTyp suffix 
\gENG NOM 
\gSPN SUB 
\e NOM 
\c V1/N1 V2/N1 
\ach na 
\akh na 
\acl na 
\akl na 
\ame na 
\o 080 
\mcc NOM / IMPFV1 ~_ 1P.V # 
\mcc NOM / ~_ 1P.V QUERY 
\mcc NOM / ~_ 1PRS2P # 
\i EXO 10.1 Castiganä cashgami paypata y mandäshegnincunapatapis shongunta chucruyätsishcä. 
\mcc NOM / ~_ [poss] POL 
\mcc NOM / ~_ [poss] SIDE2 
\mcc NOM / ~_ [poss] JUST2.C 1P.V</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="81d8d69e-e38d-462f-b3ee-6aa555d4e712" ownerguid="807edb7d-7b8f-4063-a175-8bd5614b98ff"> -<Form> -<AUni ws="qvm-x-ach">guechuchu</AUni> -<AUni ws="qvm-x-acl">guechuchu; guechucho</AUni> -<AUni ws="qvm-x-akh">qechuchu</AUni> -<AUni ws="qvm-x-akl">qechuchu; qechucho</AUni> -<AUni ws="qvm-x-ame">qichuchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="81daa551-20d0-44ea-afcc-03aa7914f265" ownerguid="edeb9458-3bdb-4d14-aaa1-6eb457307b9c"> -<ExampleWords> -<AUni ws="en">responsible</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe the person who should do something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="81dc3b39-3d90-494a-b512-d5980720a05a" ownerguid="f167559b-ff48-44ac-8289-1e0e3641738c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="81ded310-40bc-4f38-ba92-b0abb8141364" ownerguid="a3f1d702-8ca1-457a-a569-eb6fdf696bbe"> -<ExampleWords> -<AUni ws="en">abominable, blameworthy, deplorable, despicable, detestable, dishonorable, execrable, lamentable, reprehensible, unsatisfactory</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that someone does not approve of?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="81dfffdd-9c92-4ea0-b4b0-e95914d10590" ownerguid="02d404d7-f3d7-492c-92a0-c6c9ff1a1908"> -<ExampleWords> -<AUni ws="en">Thank you. May I be excused.</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What do people say when they are done eating?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="81e03df2-33a8-4735-aa23-80ef1c63679e" ownerguid="a894d991-d5da-45a6-9c62-009133257f36"> -<Abbreviation> -<AUni ws="en">2.5.6.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.47" /> -<DateModified val="2022-9-23 16:55:8.47" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that describe the state of the mind when a person's mind is not working well or when he is not thinking very well.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Dazed, confused</AUni> -</Name> -<Questions> -<objsur guid="68c651b0-2a21-4a29-b408-5c6c7d05c5a3" t="o" /> -<objsur guid="a87e250a-1810-4e21-ab7d-41353664b15c" t="o" /> -<objsur guid="7c9ff6dc-ceac-4e99-919f-d1adc48cf458" t="o" /> -<objsur guid="d58c8553-3e5a-47f4-9368-ba389d724a1d" t="o" /> -<objsur guid="6331eb13-25ee-425e-ae35-d8a131a6468c" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="67d10a00-fda8-4a3a-becd-f3ae3b00fcca" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="81e169bc-a8cb-48af-a018-f6c0acf06726" ownerguid="5d20d7b4-fc80-4289-a895-00ddf2f32376"> -<Form> -<AUni ws="qvm-x-ach">caserío; caseriu</AUni> -<AUni ws="qvm-x-acl">caserïu; caseriu; caserio</AUni> -<AUni ws="qvm-x-akh">caserío; caseriu</AUni> -<AUni ws="qvm-x-akl">caserïu; caseriu; caserio</AUni> -<AUni ws="qvm-x-ame">caserío; caseriu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="81e366fa-450b-42ad-b23f-7074dc7823e2" ownerguid="541dfa10-bf97-4713-a534-9cbcc7f66bc9"> -<Abbreviation> -<AUni ws="en">3.2.5.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.103" /> -<DateModified val="2022-9-23 16:55:8.103" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a person's attitude--the way you think and feel about something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Attitude</AUni> -</Name> -<Questions> -<objsur guid="355dfbd3-b572-4fa3-8c4d-788e269ab328" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="81e6851d-4716-4b52-8631-ac1e5a70c9e5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tana</AUni> -<AUni ws="qvm-x-acl">tana</AUni> -<AUni ws="qvm-x-akh">tana</AUni> -<AUni ws="qvm-x-akl">tana</AUni> -<AUni ws="qvm-x-ame">tana</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*taña</AUni> -<AUni ws="qvm-x-acl">*taña</AUni> -<AUni ws="qvm-x-akh">*taña</AUni> -<AUni ws="qvm-x-akl">*taña</AUni> -<AUni ws="qvm-x-ame">*taña</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.805" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b4690dab-df5b-4545-99db-3d0c8ee32950" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*taña</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="af388a70-dc49-4010-a2a4-a26747262d8d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f7a2530d-30ce-4051-bd21-747edfaeb6ac" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *taña 
\entryTyp root 
\gENG put.together 
\gSPN poner 
\e *taña 
\c V2 
\ach tana 
\akh tana 
\acl tana 
\akl tana 
\ame tana</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="81ea9899-17f9-46f8-841b-784aed29f897" ownerguid="d93eecf7-6db3-40b9-851f-ccc8b74552fc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">payment</AUni> -<AUni ws="es">pago</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="360332db-226c-4218-a03f-b523f44fdcb1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="81ec7da6-ca8f-4b05-acd0-6471c9afcb2c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tatara</AUni> -<AUni ws="qvm-x-acl">tatara</AUni> -<AUni ws="qvm-x-akh">tatara</AUni> -<AUni ws="qvm-x-akl">tatara</AUni> -<AUni ws="qvm-x-ame">tatara</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tatara</AUni> -<AUni ws="qvm-x-acl">*tatara</AUni> -<AUni ws="qvm-x-akh">*tatara</AUni> -<AUni ws="qvm-x-akl">*tatara</AUni> -<AUni ws="qvm-x-ame">*tatara</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.833" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="71fbc6a3-b878-4b99-a989-a6d423123ede" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tatara</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9077b48d-7c41-4855-b02d-a5899ce72180" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7882b4f2-aea5-47a3-b5ca-f774de936b26" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tatara 
\entryTyp root 
\gENG great 
\gSPN bis 
\e *tatara 
\c N0 
\ach tatara 
\akh tatara 
\acl tatara 
\akl tatara 
\ame tatara</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="81ecd805-5f71-4a50-81f2-f54772c89d15"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">panta</AUni> -<AUni ws="qvm-x-acl">panta</AUni> -<AUni ws="qvm-x-akh">panta</AUni> -<AUni ws="qvm-x-akl">panta</AUni> -<AUni ws="qvm-x-ame">panta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*panta</AUni> -<AUni ws="qvm-x-acl">*panta</AUni> -<AUni ws="qvm-x-akh">*panta</AUni> -<AUni ws="qvm-x-akl">*panta</AUni> -<AUni ws="qvm-x-ame">*panta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.689" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="97bd0a0c-42f9-4027-9b07-08e88a5f00f1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*panta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="55d2fee3-5370-4d45-b661-65228e2e2c5a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="195e5ba6-2515-4260-996c-0b75def11f64" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *panta 
\entryTyp root 
\gENG disoriented 
\gSPN desorientado 
\e *panta 
\c V2 
\ach panta 
\akh panta 
\acl panta 
\akl panta 
\ame panta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="81ed1053-ae6b-4640-b731-4da8fa11ad65" ownerguid="cdda7311-c2da-4dce-a68e-2031365bb40f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="81ee26b4-e119-45ec-acf6-c35efd69c8e2" ownerguid="c6e365c2-5fd4-4d69-8202-bc20a49fa1d8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ya</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ya</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ya</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ya</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ya</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6fbee6c7-3e01-4108-b3fd-e300077d0160" t="r" /> -</Morph> -<Msa> -<objsur guid="a65486e9-3066-4a42-8c90-7aadcf10ae12" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="81ee2959-dd6f-4cb7-8269-89a2ad94ac5d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ado:bi; ado:bi</AUni> -<AUni ws="qvm-x-acl">ado:bi; ado:bi; ado:be</AUni> -<AUni ws="qvm-x-akh">ado:bi; ado:bi</AUni> -<AUni ws="qvm-x-akl">ado:bi; ado:bi; ado:be</AUni> -<AUni ws="qvm-x-ame">ado:bi; ado:bi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+adobe</AUni> -<AUni ws="qvm-x-acl">+adobe</AUni> -<AUni ws="qvm-x-akh">+adobe</AUni> -<AUni ws="qvm-x-akl">+adobe</AUni> -<AUni ws="qvm-x-ame">+adobe</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.649" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4cddb225-4b58-4919-9297-20875cc5bfb9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+adobe</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="719f402e-ab11-4035-b721-575e6bf65a6e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c69cfaa5-462e-484e-8c4e-4e2051729321" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +adobe 
\entryTyp root 
\gENG adobe 
\gSPN adobe 
\e +adobe 
\c N0 
\mp +FinalI 
\ach ado:bi / _# 
\ach ado:bi / ~_# 
\akh ado:bi / _# 
\akh ado:bi / ~_# 
\acl ado:bi / _# 
\acl ado:bi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ado:be +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ado:bi / _# 
\akl ado:bi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ado:be +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ado:bi / _# 
\ame ado:bi / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="81ef87d3-af48-451b-8457-d55f25e83709" ownerguid="7fe9dad7-6fb0-4829-8f85-482da9040667"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="81f10dbd-fa1f-4276-ae3e-cd8748c484be" ownerguid="411b3d52-60b2-47b4-844d-bbfdfa6a1c34"> -<Form> -<AUni ws="qvm-x-ach">notificación; notificacion</AUni> -<AUni ws="qvm-x-acl">notificación; notificacion</AUni> -<AUni ws="qvm-x-akh">notificación; notificacion</AUni> -<AUni ws="qvm-x-akl">notificación; notificacion</AUni> -<AUni ws="qvm-x-ame">notificación; notificacion</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="81f37ed7-5464-44ac-9673-6cc23b52aba0" ownerguid="e545baab-581d-4af8-81f2-5a884e272349"> -<ExampleWords> -<AUni ws="en">stable, pasture, range, barn, shed, stall</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) Where are horses kept?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="81f396e7-4a34-40ed-8192-6be2a51c2617" ownerguid="703c755a-40d2-4991-a863-a51d073505ed"> -<Form> -<AUni ws="qvm-x-ach">lushqui</AUni> -<AUni ws="qvm-x-acl">lushqui; lushque</AUni> -<AUni ws="qvm-x-akh">lushki</AUni> -<AUni ws="qvm-x-akl">lushki; lushke</AUni> -<AUni ws="qvm-x-ame">lushki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoInflAffMsa" guid="81f3d70c-d128-4e27-8e31-b45d07072af7" ownerguid="84367e7d-d279-4e1c-81b4-86492bd6380f"> -<FromProdRestrict> -<objsur guid="0a8711d9-5044-46de-9451-6cbc2a14ce49" t="r" /> -</FromProdRestrict> -<InflFeats> -<objsur guid="0359513a-1c12-4d0b-8d40-8a469c105a11" t="o" /> -</InflFeats> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="0eb1d65f-6889-40e2-a5ee-818feedf259c" t="r" /> -</Slots> -</rt> -<rt class="LexSense" guid="81fe4eb6-ac3a-4a0d-a71d-703998f16440" ownerguid="65981f78-f621-4b2f-9fd7-af97dda527c5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">go.ahead</AUni> -<AUni ws="es">ir.delante</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="80fc6bf4-e7c8-411d-9e1b-1b31c81112f3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="820131b8-5f87-482f-b4c7-c2e0efbed595" ownerguid="de2dab57-b870-491d-b6d2-bd5169aa88c7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="82062048-302a-48e5-8e52-ddab3694e660" ownerguid="d8622ab2-f5ea-4691-8ad4-a44ec670f935"> -<Form> -<AUni ws="qvm-x-ach">chushu</AUni> -<AUni ws="qvm-x-acl">chushu; chushu; chusho</AUni> -<AUni ws="qvm-x-akh">chushu</AUni> -<AUni ws="qvm-x-akl">chushu; chushu; chusho</AUni> -<AUni ws="qvm-x-ame">chushu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="8206415e-a915-4842-a46a-fbea64f1a0e3" ownerguid="af0909a5-928a-4421-baaa-f33b14302714"> -<Abbreviation> -<AUni ws="en">9.2.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain to list all ideophones. If there are many ideophones in your language, it is probably not worth the trouble to list them here. Dictionary programs can sort your dictionary by part of speech, if needed.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Ideophones</AUni> -</Name> -<Questions> -<objsur guid="14c50831-e512-4ac7-b282-e6dbcf9f56ad" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="820afc3a-0595-4dc6-9bd3-091f7eb8b55e" ownerguid="e6b21531-b7d0-4e37-b01b-3ca49a285168"> -<ExampleWords> -<AUni ws="en">dry, parched, cracked, dusty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe the ground when there is no rain?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="82105a9c-b26e-43d2-803a-3b83384d4681" ownerguid="0205145d-23b6-4c3c-bf2d-bf866bb010e7"> -<ExampleWords> -<AUni ws="en">draw water, draft</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to drawing water from a well?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="82107093-8388-4cc7-bc8f-bbff667c1696"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">veci:na</AUni> -<AUni ws="qvm-x-acl">veci:na</AUni> -<AUni ws="qvm-x-akh">veci:na</AUni> -<AUni ws="qvm-x-akl">veci:na</AUni> -<AUni ws="qvm-x-ame">veci:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vecina</AUni> -<AUni ws="qvm-x-acl">+vecina</AUni> -<AUni ws="qvm-x-akh">+vecina</AUni> -<AUni ws="qvm-x-akl">+vecina</AUni> -<AUni ws="qvm-x-ame">+vecina</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.353" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9a31c915-004d-43de-be20-b731f4cf68ba" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vecina</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="681d1221-6b23-46dd-908d-74a26b378094" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="83e37696-a833-48c2-8f88-8d602eb7a5b3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vecina 
\entryTyp root 
\gENG neighbor 
\gSPN vecina 
\e +vecina 
\c N0 
\ach veci:na 
\akh veci:na 
\acl veci:na 
\akl veci:na 
\ame veci:na</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="821227c1-f5d1-496d-baca-b0104881b465" ownerguid="80ee826e-1a27-421d-968b-80e0a6e177f0"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="82128387-615e-4174-a616-3ab9188815c1" ownerguid="9cfe4c5a-80d4-4b31-ba89-79b2e3d28a1c"> -<ExampleWords> -<AUni ws="en">thumb, index finger, forefinger, middle finger, ring finger, little finger</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the names of each finger?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="82134d82-6ae9-415d-9ffc-fb7b311477cc" ownerguid="a628f348-9748-4529-ae27-218e7281cf64"> -<Form> -<AUni ws="qvm-x-ach">estanqui; estanque</AUni> -<AUni ws="qvm-x-acl">estanqui; estanqui; estanque</AUni> -<AUni ws="qvm-x-akh">estanqui; estanque</AUni> -<AUni ws="qvm-x-akl">estanqui; estanqui; estanque</AUni> -<AUni ws="qvm-x-ame">estanqui; estanque</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="82150f06-352a-4885-a8c4-c3e6030bf1bc" ownerguid="b7b0819b-eceb-4f16-ae6d-2298c4df1e6f"> -<ExampleWords> -<AUni ws="en">timely</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that happens on time?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="8216627d-9d20-4a5c-8bfd-0709c16e7a08" ownerguid="c6c772af-7b6b-4393-b0da-5b4a329d3426"> -<Abbreviation> -<AUni ws="en">8.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.569" /> -<DateModified val="2022-9-23 16:55:8.569" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to there being more of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">More</AUni> -</Name> -<Questions> -<objsur guid="c9f1fad8-d75d-445d-995b-c4a1e124c9c0" t="o" /> -<objsur guid="174a4121-611a-4863-969f-8b997a01098a" t="o" /> -<objsur guid="88189b13-4ca9-4180-a7e4-e56c5f2f2ce3" t="o" /> -<objsur guid="b3b6b48c-b220-46ac-bbd2-28b8b434432b" t="o" /> -<objsur guid="4f0ebe54-9faf-4eda-bbfb-4b0210e39abe" t="o" /> -<objsur guid="452516c9-0085-4620-97d2-daf3b4276c3f" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="fcc204a3-eae4-46d1-a9dc-08864fde1772" t="o" /> -<objsur guid="f2022802-4f43-4fa2-8c58-33a8b9e75895" t="o" /> -<objsur guid="1ff743cb-49e0-483d-8a1d-4603a7d6c395" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="8217bec7-cb1f-46e9-85ef-3b3f3b278d16" ownerguid="7b513a02-c3ae-4243-9410-16854d911258"> -<ExampleWords> -<AUni ws="en">someone's name is, be called, be known as, named</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words are used to indicate a person's name?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="821e2fd2-48ee-4cb9-b4ae-c9cba691506d" ownerguid="9f828e9f-5fb4-4d30-bea1-2f4888b56d35"> -<Form> -<AUni ws="qvm-x-ach">reconcilia</AUni> -<AUni ws="qvm-x-acl">reconcilia</AUni> -<AUni ws="qvm-x-akh">reconcilia</AUni> -<AUni ws="qvm-x-akl">reconcilia</AUni> -<AUni ws="qvm-x-ame">reconcilia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="821e5928-8d5f-499a-a25f-828ab0351fc1" ownerguid="167bfba5-0785-4bb5-a083-3ffbefa57897"> -<ExampleWords> -<AUni ws="en">discount, disregard, devalue, dismiss</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to thinking something is not as good as something else?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="821e9b10-ee6b-43ed-8c2e-2b69aab55434" ownerguid="c402df97-d8f4-4726-8f99-7c783e837188"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tavern</AUni> -<AUni ws="es">cantina</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d687c26f-0e03-4445-8ae9-1478003a4c90" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="822169b9-3467-4708-b8c5-da97ca374b7f" ownerguid="ba24e7de-b697-44e5-b40f-2ed2b312bc1a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">small</AUni> -<AUni ws="es">pequeño</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="513d0332-57fc-4099-b88a-458d8876e06d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="8225de87-35a3-4c7a-b35c-f45b152caebe" ownerguid="c4330001-83ca-485d-8b9b-09f7e1be60cc"> -<Abbreviation> -<AUni ws="en">3.5.8.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.182" /> -<DateModified val="2022-9-23 16:55:8.182" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to showing or indicating something--if something (such as an object, something said, or something that happens) shows something, it makes people think of something or understand something (e.g. When his face turns red, it indicates he is angry.)</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Show, indicate</AUni> -</Name> -<Questions> -<objsur guid="74b8675d-e1c3-4854-8809-1e293337bdb9" t="o" /> -<objsur guid="22a4035d-3144-44c9-9bf4-83681b01e794" t="o" /> -<objsur guid="eac644a2-8901-4156-88f2-968b7f0b693b" t="o" /> -<objsur guid="c6c0e4ca-5127-4293-b462-cbbea240960f" t="o" /> -<objsur guid="697925b7-1ee3-4d15-9cff-788d23d4a4cf" t="o" /> -<objsur guid="08316287-591a-4823-992d-fc7412883a82" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="273f4956-f79f-4b1e-b552-466280a65e60" t="r" /> -<objsur guid="4093bfe8-54b3-4ffc-bfe3-3999279840b5" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="8228cbc7-8a1b-4fe2-a2ab-88f6c7d36fe0" ownerguid="b0905fa9-2f90-410b-8eb5-7c7944c4f0f9"> -<ExampleWords> -<AUni ws="en">bestial, bestiality</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(20) What words refer to sex with an animal?</AUni> -</Question> -</rt> -<rt class="CmPossibility" guid="82290763-1633-4998-8317-0ec3f5027fbd" ownerguid="d9d55b12-ea5e-11de-95ef-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Ana</AUni> -</Abbreviation> -<BackColor val="16711680" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">Reflection on events and other types of data, such as literature summaries or interviews. An analysis does not add data; it interprets and organizes data. An analysis entry may synthesize emerging themes. It may draw connections between observations. It is a place to speculate and hypothesize, or document moments of discovery and awareness. Analytic notes can be turned into articles. Or, they may just be steps on the stairway toward greater understanding.</Run> -</AStr> -</Description> -<ForeColor val="16777215" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Analysis</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="255" /> -<UnderStyle val="1" /> -</rt> -<rt class="MoStemAllomorph" guid="822c4683-560a-40c2-9cf7-9ff8403958db" ownerguid="6eeef67a-549e-41a2-a3eb-6499150723c2"> -<Form> -<AUni ws="qvm-x-ach">asga; asgä</AUni> -<AUni ws="qvm-x-acl">asga; asgä</AUni> -<AUni ws="qvm-x-akh">asqa; asqä</AUni> -<AUni ws="qvm-x-akl">asqa; asqä</AUni> -<AUni ws="qvm-x-ame">asqa; asqä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="822c9440-9d4e-4aba-9fd7-5c0365dab711"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wancu</AUni> -<AUni ws="qvm-x-acl">wancu; wanco</AUni> -<AUni ws="qvm-x-akh">wanku</AUni> -<AUni ws="qvm-x-akl">wanku; wanko</AUni> -<AUni ws="qvm-x-ame">wanku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wanku.v</AUni> -<AUni ws="qvm-x-acl">*wanku.v</AUni> -<AUni ws="qvm-x-akh">*wanku.v</AUni> -<AUni ws="qvm-x-akl">*wanku.v</AUni> -<AUni ws="qvm-x-ame">*wanku.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.475" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="70c1870e-dba7-4027-9aaa-9deeb1bbf394" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wanku.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="87a3a562-6971-4ad9-88b5-3fd1e2f98675" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e60f42e5-c6fc-451e-bfff-41d7d4b49d00" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wanku.v 
\entryTyp root 
\gENG 
\gSPN 
\e *wanku.v 
\c V1 
\ach wancu 
\akh wanku 
\acl wancu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wanco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wanku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wanko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wanku</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="822ee2f8-d496-4f5b-848e-ff5139239e7a" ownerguid="27330d45-7bab-4879-bd68-405508d038dd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="Segment" guid="822ef051-c1b1-4272-9c65-21e32187812c" ownerguid="40b87c51-c84f-44af-b3b0-e8d66629d8a8"> -<Analyses> -<objsur guid="74c280f3-f6cd-4b08-becb-f865961e16cb" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="WfiAnalysis" guid="822f98ef-e788-4b74-9c6a-956f8c65efc0" ownerguid="f79efd2f-a6af-441c-9cfe-f3de868e5800"> -<Category> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</Category> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="55a589b5-8964-40ac-a796-7430dbac9ce6" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="6bb0eed2-e807-4172-964b-25f06ee03ec3" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="8231d4ea-867d-495f-a071-7d0e1c254f8f" ownerguid="c1d85664-c1ee-4500-af75-d826d39fff59"> -<Form> -<AUni ws="qvm-x-ach">iqui</AUni> -<AUni ws="qvm-x-acl">iqui; ique</AUni> -<AUni ws="qvm-x-akh">iki</AUni> -<AUni ws="qvm-x-akl">iki; ike</AUni> -<AUni ws="qvm-x-ame">iki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="82322a43-c165-441d-9717-5b28213cadf9" ownerguid="0381bed7-c181-4cca-8c00-7c5b9b9fb3ae"> -<Form> -<AUni ws="qvm-x-ach">quichqui</AUni> -<AUni ws="qvm-x-acl">quichqui; quichqui; quichque</AUni> -<AUni ws="qvm-x-akh">kichki</AUni> -<AUni ws="qvm-x-akl">kichki; kichki; kichke</AUni> -<AUni ws="qvm-x-ame">kichki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="82338911-8aa5-430d-b49a-b5a1289ef63e" ownerguid="57e2ae32-37b4-401f-b7a6-dc59a51e6d4a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wrap</AUni> -<AUni ws="es">envolver</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="739181c6-d941-431c-8cd0-caf5df51f391" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="82342709-59ba-4190-b3bd-6ce72547e1db" ownerguid="67bc7948-c7ae-4c0a-a341-1a58b6d3407e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="82377c06-43cd-4f8b-a094-37274cd68d0f" ownerguid="774e2882-45a1-4b81-a561-ac76b27554d3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tamborine</AUni> -<AUni ws="es">pandereta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e1c10240-238a-4290-a8f3-160305db3782" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="8239a895-f525-49e0-9513-65857e52750c" ownerguid="4e32f374-714c-4048-8e20-f3a986e31ab4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9bea4b68-0e65-4341-9f77-0771c296e8d2" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="61187a35-ba48-49a1-94d3-c74c4a64f160" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="823a9fc4-5789-481d-a186-8f76d9003deb" ownerguid="088c5a2a-9ab9-4949-83c6-8ac5d0c29808"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dark</AUni> -<AUni ws="es">oscuro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c413a4a0-7b2c-420b-ab1e-4ff088602dba" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="823cc9e9-e275-495f-b1a7-d7cd9395a144" ownerguid="4ba3ec62-cf2f-4198-a08e-4f4ed4978c28"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="0e6b10a9-0e77-4ae2-a5f3-022d8a2b2dc7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="823d9c71-5417-40d9-b10d-fca0ad206f45"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maldiciona</AUni> -<AUni ws="qvm-x-acl">maldiciona</AUni> -<AUni ws="qvm-x-akh">maldiciona</AUni> -<AUni ws="qvm-x-akl">maldiciona</AUni> -<AUni ws="qvm-x-ame">maldiciona</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+maldicionar.1</AUni> -<AUni ws="qvm-x-acl">+maldicionar.1</AUni> -<AUni ws="qvm-x-akh">+maldicionar.1</AUni> -<AUni ws="qvm-x-akl">+maldicionar.1</AUni> -<AUni ws="qvm-x-ame">+maldicionar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.275" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0a2abc67-e668-4b2c-9367-6205b0c29076" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+maldicionar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="302d171a-81bd-4e82-aad8-a84e8f4593d9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c6dfe0bf-5739-40ce-abeb-b86b7cc61d70" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +maldicionar.1 
\entryTyp root 
\gENG curse 
\gSPN maldicionar 
\e +maldicionar.1 
\c V2 
\ach maldiciona 
\akh maldiciona 
\acl maldiciona 
\akl maldiciona 
\ame maldiciona</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="823dc29c-ccbc-499f-84e8-30e43efc3ec3" ownerguid="efcb6b84-43e7-44fc-ab08-2256230c48b2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="823dcac2-74eb-4b72-9e17-75c34faaf1e4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jamón; jamon</AUni> -<AUni ws="qvm-x-acl">jamón; jamon</AUni> -<AUni ws="qvm-x-akh">jamón; jamon</AUni> -<AUni ws="qvm-x-akl">jamón; jamon</AUni> -<AUni ws="qvm-x-ame">jamón; jamon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+jamón</AUni> -<AUni ws="qvm-x-acl">+jamón</AUni> -<AUni ws="qvm-x-akh">+jamón</AUni> -<AUni ws="qvm-x-akl">+jamón</AUni> -<AUni ws="qvm-x-ame">+jamón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.880" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6297f7c3-cbb9-4158-baf2-e39353f3ee8e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+jamón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b8217dd0-c1c5-4912-b769-7bfd43a94302" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="50b697f5-fc46-4c58-a0c5-5e4d7f9ef8e6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +jamón 
\entryTyp root 
\gENG ham 
\gSPN jamón 
\e +jamón 
\c N0 
\mp +FinalC 
\ach jamón / _# 
\ach jamon / ~_# 
\akh jamón / _# 
\akh jamon / ~_# 
\acl jamón / _# 
\acl jamon / ~_# 
\akl jamón / _# 
\akl jamon / ~_# 
\ame jamón / _# 
\ame jamon / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="823e86fb-7592-4f5a-9dd9-05d3303aa419" ownerguid="26d1a0d6-e385-4db2-9ea4-a08f41abe679"> -<Form> -<AUni ws="qvm-x-ach">atiendi</AUni> -<AUni ws="qvm-x-acl">atiendi; atiende</AUni> -<AUni ws="qvm-x-akh">atiendi</AUni> -<AUni ws="qvm-x-akl">atiendi; atiende</AUni> -<AUni ws="qvm-x-ame">atiendi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="8242fc85-a703-4efa-a78a-0556a84e811e" ownerguid="0f568473-880d-43bd-b5ce-590100fdcaf6"> -<Abbreviation> -<AUni ws="en">5.2.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.306" /> -<DateModified val="2022-9-23 16:55:8.306" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to biting and chewing with the teeth.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>23B Processes Involving the Mouth, Other Than Eating and Drinking x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Bite, chew</AUni> -</Name> -<Questions> -<objsur guid="a8ec5265-d4ed-44ad-95db-ed6912e7bf9d" t="o" /> -<objsur guid="fa468454-c957-481d-94b1-e5b2c83e92ad" t="o" /> -<objsur guid="09a5e845-f390-4997-a23f-937528508f55" t="o" /> -<objsur guid="556aee88-d6f9-48e0-a3d2-6d2b62564a41" t="o" /> -<objsur guid="ccd6fd27-fe47-48f0-81af-96f0554cb3a1" t="o" /> -<objsur guid="771a354d-2109-4dea-b9d2-e36371316190" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="0f568473-880d-43bd-b5ce-590100fdcaf6" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="82454fe0-b093-4b1e-ab11-3e5a58dc3e39" ownerguid="4a6b60b0-7b96-4437-936b-00432e82384f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="8247e43e-d3ab-481f-8c0a-11d19341ba37" ownerguid="2b9ce81a-0194-423a-8be4-098b909b0e64"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e30c47d8-4625-4c21-a45f-58f85a1e8c4c" t="r" /> -</Morph> -<Msa> -<objsur guid="43d1bf5f-8105-4ae5-ac43-5b7649c64552" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="8247eaae-05be-44ec-8181-868d3b1dc701"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fi:na</AUni> -<AUni ws="qvm-x-acl">fi:na</AUni> -<AUni ws="qvm-x-akh">fi:na</AUni> -<AUni ws="qvm-x-akl">fi:na</AUni> -<AUni ws="qvm-x-ame">fi:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fina</AUni> -<AUni ws="qvm-x-acl">+fina</AUni> -<AUni ws="qvm-x-akh">+fina</AUni> -<AUni ws="qvm-x-akl">+fina</AUni> -<AUni ws="qvm-x-ame">+fina</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.556" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c4a12aca-5c6e-47f1-b54d-0b4cfcbf1a02" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fina</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e7e0bac7-7445-403f-97bd-cd2662d6da0a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="652897eb-4e36-4649-b3a2-2b590f5375ef" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fina 
\entryTyp root 
\gENG 
\gSPN 
\e +fina 
\c N0 
\ach fi:na 
\akh fi:na 
\acl fi:na 
\akl fi:na 
\ame fi:na 
\i SNG 1.9 Cuyaynë, faraónpa carrëtanta garachag fïna yëwanogmi cuyaylapag caycanqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="824ca435-d7a3-4031-9955-9dc63f7ef922" ownerguid="aaa01b5f-0899-42cd-a62b-60c74fcdf5be"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">barley</AUni> -<AUni ws="es">cebada</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="409a2bb3-32ed-46cb-9dec-be7c3d19c974" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="824ef6bd-ea6a-4e0e-96bb-dc550f312182" ownerguid="30ea3057-753d-4c4c-9b1f-ed30e569feea"> -<ExampleWords> -<AUni ws="en">court of law, law court, supreme court, superior court, court of appeals, district court, divorce court, juvenile court, appellate court, tribunal, court-martial, kangaroo court</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What is a court of law called?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="82504db3-c46c-4e74-9ae7-e88b69d40655" ownerguid="b233ad14-84dc-4edd-9d8d-cc86dc46719e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wind</AUni> -<AUni ws="es">enrollar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3cc9dac6-326c-4195-bdc0-c9c8c63eb94c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="8250878b-2826-4ab0-8b38-5de175792ae4" ownerguid="20a84a72-9241-4026-a818-120f1baec986"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="8252dad9-1a9d-4ba2-bcde-204a1032a566"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">juramentu; juramento</AUni> -<AUni ws="qvm-x-acl">juramentu; juramentu; juramento</AUni> -<AUni ws="qvm-x-akh">juramentu; juramento</AUni> -<AUni ws="qvm-x-akl">juramentu; juramentu; juramento</AUni> -<AUni ws="qvm-x-ame">juramentu; juramento</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+juramento</AUni> -<AUni ws="qvm-x-acl">+juramento</AUni> -<AUni ws="qvm-x-akh">+juramento</AUni> -<AUni ws="qvm-x-akl">+juramento</AUni> -<AUni ws="qvm-x-ame">+juramento</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.900" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f6e976b7-9cda-4728-967e-de5a177139d3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+juramento</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d1a7361f-4753-40d4-8f5e-fc92f8befaed" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7d8bf92d-c47c-4e9d-b273-944dc0187175" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +juramento 
\entryTyp root 
\gENG 
\gSPN 
\e +juramento 
\c N0 
\ach juramentu / ~_# 
\ach juramento / _# 
\akh juramentu / ~_# 
\akh juramento / _# 
\acl juramentu / ~_# 
\acl juramentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl juramento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl juramentu / ~_# 
\akl juramentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl juramento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame juramentu / ~_# 
\ame juramento / _# 
\i Gen 26.33 nota: Seba ninanga Juramento ninanmi.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8254232c-b3eb-4d44-a743-8d71745bedbf" ownerguid="cd01db6c-8aa6-42d1-93ac-05e81a8be523"> -<ExampleWords> -<AUni ws="en">portion, piece, last piece, slice, share</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What is a piece of food called?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="825477a7-22cb-4e39-b1ba-830ceb56818e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chuluc</AUni> -<AUni ws="qvm-x-acl">chuluc</AUni> -<AUni ws="qvm-x-akh">chuluk</AUni> -<AUni ws="qvm-x-akl">chuluk</AUni> -<AUni ws="qvm-x-ame">chuluk</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trulluk</AUni> -<AUni ws="qvm-x-acl">*trulluk</AUni> -<AUni ws="qvm-x-akh">*trulluk</AUni> -<AUni ws="qvm-x-akl">*trulluk</AUni> -<AUni ws="qvm-x-ame">*trulluk</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.170" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="294b467a-6520-4bc4-9317-580174bc64be" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trulluk</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f3c1c116-780d-458e-9621-49fd2b1b6288" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="33a45f09-1242-44f0-b333-f1f71db0d79a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trulluk 
\entryTyp root 
\gENG clown 
\gSPN payaso 
\e *trulluk 
\c N0 
\mp +FinalC 
\ach chuluc 
\akh chuluk 
\acl chuluc 
\akl chuluk 
\ame chuluk</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8256da64-9b2b-4f9f-becc-c03cc73c1de7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuerdas</AUni> -<AUni ws="qvm-x-acl">cuerdas</AUni> -<AUni ws="qvm-x-akh">cuerdas</AUni> -<AUni ws="qvm-x-akl">cuerdas</AUni> -<AUni ws="qvm-x-ame">cuerdas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuerdas</AUni> -<AUni ws="qvm-x-acl">+cuerdas</AUni> -<AUni ws="qvm-x-akh">+cuerdas</AUni> -<AUni ws="qvm-x-akl">+cuerdas</AUni> -<AUni ws="qvm-x-ame">+cuerdas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.244" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="491aee6c-85ff-40ea-9298-19bb88a8381f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuerdas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4c2bee75-e668-4daf-9385-5eb87bf68185" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d53569d1-aa47-4ee6-a5f8-ce4bc6583391" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuerdas 
\entryTyp root 
\gENG cords 
\gSPN cuerdas 
\e +cuerdas 
\c N0 
\mp +FinalC 
\ach cuerdas 
\akh cuerdas 
\acl cuerdas 
\akl cuerdas 
\ame cuerdas 
\i HAB 3.19 Cantagcunapa mandagninpag nöta: cayta cantapäcunqui cuerdasniyog instrumentucunawan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="825a20b7-f635-47f2-9f02-0ace389a451d" ownerguid="4383b317-2430-4fa5-a40e-a43cbabb03fc"> -<Form> -<AUni ws="qvm-x-ach">palagar</AUni> -<AUni ws="qvm-x-acl">palagar</AUni> -<AUni ws="qvm-x-akh">palagar</AUni> -<AUni ws="qvm-x-akl">palagar</AUni> -<AUni ws="qvm-x-ame">palagar</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="825bf4f7-5d97-4507-a4fe-732182692472" ownerguid="d63c5f73-85d8-4a05-bb72-8a88e2ef624a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">drunk</AUni> -<AUni ws="es">borracho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b72e1c00-8514-424e-9d56-8161690f2f3f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="825d18b0-057a-4162-901d-8bdfabbff381" ownerguid="058bcc9b-c5fa-4e59-ab58-199b261ad2ee"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="2e0a0604-75ef-42b1-8429-d3dcc7d10353" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="825f63bc-7458-44bd-ad90-e4f40d28599a" ownerguid="6f026670-a028-4d76-925c-cdb77eab585b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">firearm</AUni> -<AUni ws="es">arma</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cf9189f3-1536-4baa-86dd-ef9adb6c9d67" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="82602177-e119-4dc8-a754-4130f46ff764"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maja; maja:</AUni> -<AUni ws="qvm-x-acl">maja; maja:</AUni> -<AUni ws="qvm-x-akh">maja; maja:</AUni> -<AUni ws="qvm-x-akl">maja; maja:</AUni> -<AUni ws="qvm-x-ame">maha; maha:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*maja:</AUni> -<AUni ws="qvm-x-acl">*maja:</AUni> -<AUni ws="qvm-x-akh">*maja:</AUni> -<AUni ws="qvm-x-akl">*maja:</AUni> -<AUni ws="qvm-x-ame">*maja:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.255" /> -<DateModified val="2022-10-10 21:19:47.698" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="67990ad8-9103-4b61-b409-8c4220e20a19" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*maja:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a5963716-b67a-449e-ae09-2888a927abd8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e67b66d7-99e5-4de4-bfc5-7cba57bb508c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *maja: 
\entryTyp root 
\gENG to.marry 
\gSPN 
\e *maja: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach maja foreshortened 
\ach maja: 
\akh maja foreshortened 
\akh maja: 
\acl maja foreshortened 
\acl maja: 
\akl maja foreshortened 
\akl maja: 
\ame maha foreshortened 
\ame maha: 
\mcc *maja: / ~_ PRTSPF2 
\i NUM 11.32 Nirkurna campamento nawpankunapa majaykur tsakitsipäkurqan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="826319e3-ea37-42c0-9ad1-91af3164aed4" ownerguid="54a2f829-8cd0-4722-afba-a9e1351f0b3d"> -<Form> -<AUni ws="qvm-x-ach">garantía; garantia</AUni> -<AUni ws="qvm-x-acl">garantía; garantia</AUni> -<AUni ws="qvm-x-akh">garantía; garantia</AUni> -<AUni ws="qvm-x-akl">garantía; garantia</AUni> -<AUni ws="qvm-x-ame">garantía; garantia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="8267d3f1-078f-4920-aeba-6b3dbc46038c" ownerguid="ca34fbb8-44db-4e14-9a62-e483dd3db481"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="r" /> -</Morph> -</rt> -<rt class="CmDomainQ" guid="826a5a65-5629-4b43-8273-e89e938f03b0" ownerguid="bc9d763c-e4fe-48ab-ad44-87a36f6cc06f"> -<ExampleWords> -<AUni ws="en">don't blame, can't blame</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to not criticizing someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="826aa9c9-85db-4e8a-b5cf-547919e3bc30" ownerguid="2a0b8f7c-503a-4860-8a12-afd38f6b768b"> -<Form> -<AUni ws="qvm-x-ach">liyi</AUni> -<AUni ws="qvm-x-acl">liyi; liye</AUni> -<AUni ws="qvm-x-akh">liyi</AUni> -<AUni ws="qvm-x-akl">liyi; liye</AUni> -<AUni ws="qvm-x-ame">liyi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="826b77bd-112e-40d3-8f55-5eba590f5dd2" ownerguid="ef9134b4-0205-4a92-b95d-96fcc27f8e47"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="826c3361-e08e-4ca8-8324-57b56884776c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">misa</AUni> -<AUni ws="qvm-x-acl">misa</AUni> -<AUni ws="qvm-x-akh">misa</AUni> -<AUni ws="qvm-x-akl">misa</AUni> -<AUni ws="qvm-x-ame">misa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+misa</AUni> -<AUni ws="qvm-x-acl">+misa</AUni> -<AUni ws="qvm-x-akh">+misa</AUni> -<AUni ws="qvm-x-akl">+misa</AUni> -<AUni ws="qvm-x-ame">+misa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.446" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b11a8eb5-3dc3-42c3-8505-546756ef787e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+misa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="12a0c6b0-7d10-49fd-8547-d01f14a339fb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7af5072c-73dd-4c5c-b71a-3e5d6cbcbfcf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +misa 
\entryTyp root 
\gENG mass 
\gSPN misa 
\e +misa 
\c N0 
\ach misa 
\akh misa 
\acl misa 
\akl misa 
\ame misa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="826fb4db-ba81-41df-b6a2-58403cc2080c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cinta</AUni> -<AUni ws="qvm-x-acl">cinta</AUni> -<AUni ws="qvm-x-akh">cinta</AUni> -<AUni ws="qvm-x-akl">cinta</AUni> -<AUni ws="qvm-x-ame">cinta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cinta</AUni> -<AUni ws="qvm-x-acl">+cinta</AUni> -<AUni ws="qvm-x-akh">+cinta</AUni> -<AUni ws="qvm-x-akl">+cinta</AUni> -<AUni ws="qvm-x-ame">+cinta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.122" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="622f6b3f-6307-45bf-bc77-1c89ce8f61e9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cinta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a17cdd96-241b-4bef-8b4e-046862675a1e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="06aecbeb-2114-40a1-b50f-4a097f63d68d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cinta 
\entryTyp root 
\gENG tape 
\gSPN cinta 
\e +cinta 
\c N0 
\ach cinta 
\akh cinta 
\acl cinta 
\akl cinta 
\ame cinta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="82700189-f942-4890-a528-56dc2208cb70" ownerguid="8f59cd3a-6443-4abb-9505-cfcb0682d9f7"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="82715064-e466-452d-8361-c7ec7d92c94d" ownerguid="32125c5f-d69a-442f-ba66-6277ec0a3b15"> -<ExampleWords> -<AUni ws="en">edible plants</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to plants that can be eaten?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8271f7f6-a94e-4368-b723-a7ab83a0f560" ownerguid="d93bac06-fdd0-4cc8-b309-7defaa7a3511"> -<Form> -<AUni ws="qvm-x-ach">walcush</AUni> -<AUni ws="qvm-x-acl">walcush</AUni> -<AUni ws="qvm-x-akh">walkush</AUni> -<AUni ws="qvm-x-akl">walkush</AUni> -<AUni ws="qvm-x-ame">walkush</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8275c745-d129-4661-a70b-44c7799187ff"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jayta</AUni> -<AUni ws="qvm-x-acl">jayta</AUni> -<AUni ws="qvm-x-akh">jayta</AUni> -<AUni ws="qvm-x-akl">jayta</AUni> -<AUni ws="qvm-x-ame">hayta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hayta.v</AUni> -<AUni ws="qvm-x-acl">*hayta.v</AUni> -<AUni ws="qvm-x-akh">*hayta.v</AUni> -<AUni ws="qvm-x-akl">*hayta.v</AUni> -<AUni ws="qvm-x-ame">*hayta.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.700" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5aa06c85-52a4-4c20-9593-12e0aa5723f5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hayta.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a984b5c2-45bf-4dea-bf42-3e61815e0b2d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e5c56d41-213f-42c2-a89c-4b09e3687aca" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hayta.v 
\entryTyp root 
\gENG kick 
\gSPN patear 
\e *hayta.v 
\c V2 
\ach jayta 
\akh jayta 
\acl jayta 
\akl jayta 
\ame hayta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8278ccfc-2bba-4167-8d3a-c9304efd135d" ownerguid="c0f4715e-55c9-4379-ab6f-ad561a5e7151"> -<ExampleWords> -<AUni ws="en">believe, faith, trust, accept, confidence, give credence to, consider, count on, rely on, reliance, depend on, dependence, swear by, take for granted, bet on, bank on, buy, take at face value, store, stock, take someone's word for it, cling to, be convinced, be dogmatic, follow, heed, receive, think something is true</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to believing that something is true?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="8279264d-8f5d-4a4c-8262-91c613ccd2cf" ownerguid="714c19ca-fc12-4630-b529-468429ec083d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b699320c-1182-41cf-a567-d8008edefdda" t="r" /> -</Morph> -</rt> -<rt class="MoStemAllomorph" guid="827b4f27-3163-4fd1-84e6-5ee41cc7d9f5" ownerguid="c250e6e6-092d-43d7-8a10-fcaebc4e64bd"> -<Form> -<AUni ws="qvm-x-ach">awanta</AUni> -<AUni ws="qvm-x-acl">awanta</AUni> -<AUni ws="qvm-x-akh">awanta</AUni> -<AUni ws="qvm-x-akl">awanta</AUni> -<AUni ws="qvm-x-ame">awanta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="827b79c4-8606-47f5-b944-18a1dcf50d3d" ownerguid="ca3e2a0a-23f1-41ff-8267-6f7944da231f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="827e017f-1438-44fa-b4d5-dfe68cabc32a" ownerguid="f8c08c86-ef99-4415-87a7-318e56393672"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="82803d66-4465-4a79-97ef-233bd57e1682" ownerguid="fc7e4918-61d3-4287-9a66-057e7ef25bf5"> -<Form> -<AUni ws="qvm-x-ach">jana</AUni> -<AUni ws="qvm-x-acl">jana</AUni> -<AUni ws="qvm-x-akh">jana</AUni> -<AUni ws="qvm-x-akl">jana</AUni> -<AUni ws="qvm-x-ame">hana</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8282a251-1e8a-4c06-867f-5bc7ed279f81" ownerguid="75202262-cdba-4c43-9343-764c84138797"> -<ExampleWords> -<AUni ws="en">uncle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to your father's brother?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="82838c84-99df-4d6a-b94b-b2fc7834ec30" ownerguid="66db6d18-e83f-4b5c-bc95-aee41959173a"> -<Form> -<AUni ws="qvm-x-ach">bürru</AUni> -<AUni ws="qvm-x-acl">bürru; bürru; bürro</AUni> -<AUni ws="qvm-x-akh">bürru</AUni> -<AUni ws="qvm-x-akl">bürru; bürru; bürro</AUni> -<AUni ws="qvm-x-ame">bürru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="82843a89-15cf-4d25-898c-000b1cd02645" ownerguid="8d0a38b4-a86a-4131-adf2-0d041b396c2f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="697fe19a-329d-4091-a3b3-93da5dfdfb80" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="82846233-2d2a-4879-92db-27c4194f7193" ownerguid="7ce991fb-142b-4e85-a942-50746710f348"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">plow</AUni> -<AUni ws="es">barbechar con arado de pie</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b62b9b74-49f7-42a0-ab5e-77aee6129b61" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="828a478d-598d-4a67-bf5f-721a358057f2" ownerguid="f0f3c371-166e-4a66-849f-60d6fa7ad889"> -<ExampleWords> -<AUni ws="en">rhyme, rhythm</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the features of a poem?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="828f0cf4-d3a5-4925-bcb5-ffc078471c65" ownerguid="180a2220-942c-4e17-96ee-cd4f63a4c715"> -<ExampleWords> -<AUni ws="en">fertile, infertile, poor, rich</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe the quality of the soil?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="828fc502-0d5c-40d9-99b6-8f89b404b9ee" ownerguid="32657780-4344-4d4e-b1e4-66b38d32540e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">esteemed</AUni> -<AUni ws="es">estimado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f603aa2a-33c9-427b-8a2f-61807dc21c2e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="82904b81-4f67-4c25-99a7-588bb5803ed1" ownerguid="9392e71c-31e4-4066-a9a5-7768e63c921f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="829086bb-82c7-4342-87aa-2bc3308b84da" ownerguid="255583c5-e554-48a3-a99b-894b7e76c532"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="b77dea81-897b-4015-aae3-ed7a66cdc656" t="o" /> -<objsur guid="b0abe9ca-e4c2-4027-9f55-1e2379750593" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="8293d623-b506-436f-8c5a-fa22fec84852" ownerguid="0b48bd1c-e9e7-40e9-9181-3d0bc411185a"> -<Form> -<AUni ws="qvm-x-ach">jagui</AUni> -<AUni ws="qvm-x-acl">jagui; jague</AUni> -<AUni ws="qvm-x-akh">jaqi</AUni> -<AUni ws="qvm-x-akl">jaqi; jaqe</AUni> -<AUni ws="qvm-x-ame">haqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8294ca3f-0aed-4517-bdc9-dc5ee6763c29"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cerca</AUni> -<AUni ws="qvm-x-acl">cerca</AUni> -<AUni ws="qvm-x-akh">cerca</AUni> -<AUni ws="qvm-x-akl">cerca</AUni> -<AUni ws="qvm-x-ame">cerca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+acercar.1</AUni> -<AUni ws="qvm-x-acl">+acercar.1</AUni> -<AUni ws="qvm-x-akh">+acercar.1</AUni> -<AUni ws="qvm-x-akl">+acercar.1</AUni> -<AUni ws="qvm-x-ame">+acercar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.629" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5c693d1e-d64f-406c-8ebd-eba12295fb6c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+acercar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8b31e840-a605-465b-a2a9-466c41264581" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="35f2fac5-d35a-43d5-8f00-92c5addfca93" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +acercar.1 
\entryTyp root 
\gENG approach 
\gSPN acercar 
\e +acercar.1 
\c V1 
\ach cerca 
\akh cerca 
\acl cerca 
\akl cerca 
\ame cerca</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="829a8f59-61d2-42c7-8ecc-20f495a9fccc" ownerguid="344e6d59-ca3d-4ba7-ac73-4241f61160f9"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="829b9510-2f28-4695-a3a9-4da913fc8c4b" ownerguid="581f0bd9-485e-4fb8-9c41-fabc63f33d43"> -<Form> -<AUni ws="qvm-x-ach">cëba</AUni> -<AUni ws="qvm-x-acl">cëba</AUni> -<AUni ws="qvm-x-akh">cëba</AUni> -<AUni ws="qvm-x-akl">cëba</AUni> -<AUni ws="qvm-x-ame">cëba</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="82a3ce6b-22e7-479a-802f-b3e073afd707" ownerguid="cee30194-bacc-42d3-af9e-b5f97152781c"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="82a4ae36-8e70-4c0d-8144-ad9fc3c0e04f" ownerguid="080bf07b-e58b-4a75-bb97-84d980a143f0"> -<Abbreviation> -<AUni ws="en">8.3.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.599" /> -<DateModified val="2022-9-23 16:55:8.599" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing a horizontal orientation in relation to the ground or something that is level--a flat surface that does not rise in any direction. A person is horizontal when he is sleeping. A field is level when it is not on a hill and it has no uneven areas in it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>17D Prostrate x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Horizontal</AUni> -</Name> -<Questions> -<objsur guid="11d85f25-ef03-4de4-8e1d-ca99136de82e" t="o" /> -<objsur guid="0232523a-b481-4d19-82ee-aa70eb41bf7b" t="o" /> -<objsur guid="c5061642-539d-48fb-8a4e-25873a6664e8" t="o" /> -<objsur guid="61db294b-8df6-42d3-a9ee-c95fd07d65ea" t="o" /> -<objsur guid="bc972dfe-8b5f-4c04-bf99-e2a5b2c557c3" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="0aae0254-dc06-4906-8ecf-2d8450fb83f1" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b8df8589-d03c-4e6d-bbeb-4f24fbf6a1dc" t="o" /> -<objsur guid="0add0775-0ed0-46be-ba4a-76310e63a036" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="82a4bbb2-f37f-4a71-bb48-90ce6a2938ba" ownerguid="7825d113-d9b4-47cc-b96d-09b334532e1a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 11.26 Nisidächo cagcunata ranticuptinmi itsanga agradëcicun.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="82a5aa20-638a-4a29-a843-924f7afd7f87" ownerguid="00c2946f-882c-4da8-8759-d012bc0b8c2d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="82a97f9c-f9fe-46d7-89cf-9f1d769b990b"> -<Analyses> -<objsur guid="99294b5b-feef-4b5b-ad6e-9482505569bb" t="o" /> -</Analyses> -<Checksum val="-814589908" /> -<Form> -<AUni ws="qvm-x-akh">aliyanki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="82a9c6bd-8084-42db-99c1-2a9c1c8561c4" ownerguid="a70147b0-d599-4117-8782-105dcb16a7d8"> -<Form> -<AUni ws="qvm-x-ach">tatuäji; tatuäji</AUni> -<AUni ws="qvm-x-acl">tatuäji; tatuäji; tatuäje</AUni> -<AUni ws="qvm-x-akh">tatuäji; tatuäji</AUni> -<AUni ws="qvm-x-akl">tatuäji; tatuäji; tatuäje</AUni> -<AUni ws="qvm-x-ame">tatuäji; tatuäji</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="82a9ecc4-ffc6-45c4-b1a7-e384391b6785" ownerguid="2c62ccfa-0223-449f-87ed-62bba4173897"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="82a9f772-93a4-472c-988a-c95cc8aac465" ownerguid="dc7adfea-e6bd-4b32-8bfb-32f8746e158e"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="82aabdc6-ccee-4559-9a75-d2d11adab21e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">puca</AUni> -<AUni ws="qvm-x-acl">puca</AUni> -<AUni ws="qvm-x-akh">puka</AUni> -<AUni ws="qvm-x-akl">puka</AUni> -<AUni ws="qvm-x-ame">puka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puka.v</AUni> -<AUni ws="qvm-x-acl">*puka.v</AUni> -<AUni ws="qvm-x-akh">*puka.v</AUni> -<AUni ws="qvm-x-akl">*puka.v</AUni> -<AUni ws="qvm-x-ame">*puka.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.980" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9a7fc4ad-d2c5-4d84-8a79-0e96b9df5372" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puka.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="11d80cbb-53f2-4e1f-b6a4-e3c044229476" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fbb5f9cc-5066-4742-9ef7-1758b8c12cc8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puka.v 
\entryTyp root 
\gENG red 
\gSPN rojo 
\e *puka.v 
\c V1 
\ach puca 
\akh puka 
\acl puca 
\akl puka 
\ame puka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="82aba3d9-56fc-4844-b198-c0076304a730"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">santi:simu</AUni> -<AUni ws="qvm-x-acl">santi:simu; santi:simu; santi:simo</AUni> -<AUni ws="qvm-x-akh">santi:simu</AUni> -<AUni ws="qvm-x-akl">santi:simu; santi:simu; santi:simo</AUni> -<AUni ws="qvm-x-ame">santi:simu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+santísimo.1</AUni> -<AUni ws="qvm-x-acl">+santísimo.1</AUni> -<AUni ws="qvm-x-akh">+santísimo.1</AUni> -<AUni ws="qvm-x-akl">+santísimo.1</AUni> -<AUni ws="qvm-x-ame">+santísimo.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.447" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="65978772-4270-41c7-8347-562cebace48d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+santísimo.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="601b6892-e83f-41ee-be56-c9112ac541b0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="74a6d2f7-c936-4dd7-beb8-0cfc64427b03" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +santísimo.1 
\entryTyp root 
\gENG 
\gSPN 
\e +santísimo.1 
\c N0 
\ach santi:simu 
\akh santi:simu 
\acl santi:simu / _# 
\acl santi:simu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl santi:simo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl santi:simu / _# 
\akl santi:simu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl santi:simo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame santi:simu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="82ae1b44-f12c-4cad-8c3b-55ad2c64abd4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tunay</AUni> -<AUni ws="qvm-x-acl">tunay</AUni> -<AUni ws="qvm-x-akh">tunay</AUni> -<AUni ws="qvm-x-akl">tunay</AUni> -<AUni ws="qvm-x-ame">tunay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tuñay</AUni> -<AUni ws="qvm-x-acl">*tuñay</AUni> -<AUni ws="qvm-x-akh">*tuñay</AUni> -<AUni ws="qvm-x-akl">*tuñay</AUni> -<AUni ws="qvm-x-ame">*tuñay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.997" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="555ff2f6-44ba-44b8-a1a3-4e04c18c24d6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tuñay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e1e8267e-3fcc-45f0-8fff-f4af7c74a675" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4729cb7a-7fd7-4980-b636-afd17bcf2000" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tuñay 
\entryTyp root 
\gENG grinder 
\gSPN moledor 
\e *tuñay 
\c N0 
\mp +FinalC 
\ach tunay 
\akh tunay 
\acl tunay 
\akl tunay 
\ame tunay</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="82b0990e-936b-48e1-9e71-41deaad77252" ownerguid="a42db5b4-6317-4d3f-beff-cb92dbaca914"> -<ExampleWords> -<AUni ws="en">discover, discovery, find out about</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to learning something no one else knows or something that is secret?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="82b23c7a-d5d5-4c89-9a40-a47622d7746f" ownerguid="90b541db-e0f1-4c0a-91e3-ff4962410eb7"> -<Form> -<AUni ws="qvm-x-ach">röpa</AUni> -<AUni ws="qvm-x-acl">röpa</AUni> -<AUni ws="qvm-x-akh">röpa</AUni> -<AUni ws="qvm-x-akl">röpa</AUni> -<AUni ws="qvm-x-ame">röpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="82b31efe-219a-425f-8483-862b2f102295"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">india</AUni> -<AUni ws="qvm-x-acl">india</AUni> -<AUni ws="qvm-x-akh">india</AUni> -<AUni ws="qvm-x-akl">india</AUni> -<AUni ws="qvm-x-ame">india</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+india</AUni> -<AUni ws="qvm-x-acl">+india</AUni> -<AUni ws="qvm-x-akh">+india</AUni> -<AUni ws="qvm-x-akl">+india</AUni> -<AUni ws="qvm-x-ame">+india</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.820" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="65f2f32f-62c8-4e80-9613-ec30b487453d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+india</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0bc87463-6408-4263-be2b-4603749cfd84" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="74c46e75-8f5c-468b-8818-9379cfe34180" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +india 
\entryTyp root 
\gENG 
\gSPN 
\e +india 
\c N0 
\ach india 
\akh india 
\acl india 
\akl india 
\ame india</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="82b3b419-a6ba-46b7-a4ca-d53fbeed9283" ownerguid="0f568473-880d-43bd-b5ce-590100fdcaf6"> -<ExampleWords> -<AUni ws="en">feed (someone), force-feed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to feeding someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="82b535a1-2dbe-47e8-80bb-1def69778fec" ownerguid="35dc9c39-dd28-4ab7-85aa-0de42829394a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="82b59143-6f8a-423b-a8af-bc976a3253d6" ownerguid="7ddbd56f-e458-4a72-a9bc-9b7db6bde75a"> -<ExampleWords> -<AUni ws="en">throne, kingship, presidency, premiership, chieftaincy, chieftainship, position, office</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the position or office of the ruler?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="82b83151-f7a3-44df-92b7-73410701d952" ownerguid="75825d72-695b-4e92-9f33-0f3ab4d7dd11"> -<ExampleWords> -<AUni ws="en">drool, slobber, drivel, dribble</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to letting saliva run out of your mouth?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="82bbd7bd-406c-4e0b-81be-976aede3f49a" ownerguid="0281fb1d-ab12-41b9-a3dc-09ef6b1e4733"> -<ExampleWords> -<AUni ws="en">life after death, afterlife, immortality, the life beyond, life beyond the grave</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to life after death?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="82c0c142-752d-4362-91e8-11d1e1335c19"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">morphlowered</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="82c34ac9-f8ec-4f31-9d54-f4f6f15f3e0e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jagra</AUni> -<AUni ws="qvm-x-acl">jagra</AUni> -<AUni ws="qvm-x-akh">jaqra</AUni> -<AUni ws="qvm-x-akl">jaqra</AUni> -<AUni ws="qvm-x-ame">haqra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*haqra</AUni> -<AUni ws="qvm-x-acl">*haqra</AUni> -<AUni ws="qvm-x-akh">*haqra</AUni> -<AUni ws="qvm-x-akl">*haqra</AUni> -<AUni ws="qvm-x-ame">*haqra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.678" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0994e00e-fc22-4f9a-a615-87e2b2950c9c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*haqra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6c4fae2d-8d4e-455f-aaf1-ed8764160359" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="88f98588-e7a8-4e1b-a9a5-dc1c685dbab8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *haqra 
\entryTyp root 
\gENG 
\gSPN sonar 
\e *haqra 
\c V1 
\ach jagra 
\akh jaqra 
\acl jagra 
\akl jaqra 
\ame haqra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="82c72af7-b4be-4c0e-8523-bba547e6e417" ownerguid="0bbe1739-e0b4-442e-b69c-02a0ea20d790"> -<ExampleWords> -<AUni ws="en">sink, go down, go under, submerge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to sinking under the water?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="82c8cf16-53af-4be5-80c1-3341ae8ae29d" ownerguid="28013fe4-a331-4794-a144-183f7d04712c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="82cb0881-5c23-4df2-b22c-45aa078032c1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pulchag</AUni> -<AUni ws="qvm-x-acl">pulchag</AUni> -<AUni ws="qvm-x-akh">pulchaq</AUni> -<AUni ws="qvm-x-akl">pulchaq</AUni> -<AUni ws="qvm-x-ame">pulchaq</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pullchaq</AUni> -<AUni ws="qvm-x-acl">*pullchaq</AUni> -<AUni ws="qvm-x-akh">*pullchaq</AUni> -<AUni ws="qvm-x-akl">*pullchaq</AUni> -<AUni ws="qvm-x-ame">*pullchaq</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.997" /> -<DateModified val="2022-10-10 21:18:47.197" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="07c8c2df-b044-402b-acec-be0123d28b3d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pullchaq</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d557d038-6a15-444b-a9cd-794db7acd4fa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="339fc947-a5bc-4e61-b4c0-f87b112eac47" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pullchaq 
\entryTyp root 
\gENG 
\gSPN 
\e *pullchaq 
\c SOUND 
\ach pulchag 
\akh pulchaq 
\acl pulchag 
\akl pulchaq 
\ame pulchaq 
\i PSA 65.7 Lamar yacu gaparar pulchagyaycagta gammi chawätsinqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="82cb7d4b-3b65-42ca-82b3-750929a613cc" ownerguid="f56a80a9-a603-405e-abf0-1556b48f3268"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stingy</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="57fd036e-1744-4b5f-869f-0ebec2986da2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="82cd3478-de88-4677-a83b-f9ce5dc06c23" ownerguid="ba70183c-1698-489a-a897-4fef6500fdd3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="82cd51c9-d07c-4486-8540-aaf67a4af40a" ownerguid="ded254d3-e07a-4788-8ba1-6e2ae6fa083b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="82d03809-1149-4ba4-9e71-5a2342de8675"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chutin</AUni> -<AUni ws="qvm-x-acl">chutin; chutin; chuten</AUni> -<AUni ws="qvm-x-akh">chutin</AUni> -<AUni ws="qvm-x-akl">chutin; chutin; chuten</AUni> -<AUni ws="qvm-x-ame">chutin</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trutin</AUni> -<AUni ws="qvm-x-acl">*trutin</AUni> -<AUni ws="qvm-x-akh">*trutin</AUni> -<AUni ws="qvm-x-akl">*trutin</AUni> -<AUni ws="qvm-x-ame">*trutin</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.190" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="323023ae-6574-406a-870c-d78f694d4039" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trutin</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="90945373-3d86-479f-a5ec-af0d8f66a438" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="da0cf84f-283a-4456-96d0-25c5194810a5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trutin 
\entryTyp root 
\gENG mixed.breed 
\gSPN ordinario 
\e *trutin 
\c N0 
\mp +FinalC 
\ach chutin 
\akh chutin 
\acl chutin / _# 
\acl chutin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chuten +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chutin / _# 
\akl chutin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chuten +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame chutin</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="82d096b5-fb64-4fb3-88a6-dd36774b8752" ownerguid="39611e8d-cc67-4c84-977c-094c5cbe9dbc"> -<ExampleWords> -<AUni ws="en">feel lonely, feel alone, feel isolated, feel abandoned, miss someone</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling lonely?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="82d2e2dd-5403-4e3f-84f9-b5e46f7a0b9d"> -<Form> -<Str> -<Run ws="qvm-x-akh"><<¡</Run> -</Str> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="82d483a7-2446-44a2-ba3f-297bd5ab89ec" ownerguid="95f68a7b-6be5-4b3e-bc40-111230877a64"> -<Form> -<AUni ws="qvm-x-ach">alauga</AUni> -<AUni ws="qvm-x-acl">alauga</AUni> -<AUni ws="qvm-x-akh">alawqa</AUni> -<AUni ws="qvm-x-akl">alawqa</AUni> -<AUni ws="qvm-x-ame">alawqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="82d5ad14-fa2a-4853-ba84-32d94531126d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shinshi</AUni> -<AUni ws="qvm-x-acl">shinshi; shinshe</AUni> -<AUni ws="qvm-x-akh">shinshi</AUni> -<AUni ws="qvm-x-akl">shinshi; shinshe</AUni> -<AUni ws="qvm-x-ame">shinshi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shinshi</AUni> -<AUni ws="qvm-x-acl">*shinshi</AUni> -<AUni ws="qvm-x-akh">*shinshi</AUni> -<AUni ws="qvm-x-akl">*shinshi</AUni> -<AUni ws="qvm-x-ame">*shinshi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.591" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="1" /> -<LexemeForm> -<objsur guid="2e8cc4fb-cf6c-48b1-8f6f-0ed818d09a9a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shinshi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5ee5efc9-f32d-446b-8981-227ad00988c4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7fe18aa0-168b-4c50-9a52-83aed60b640e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shinshi 
\entryTyp root 
\gENG smell 
\gSPN olfatear 
\e *shinshi 
\c V1 
\mp +FinalI 
\ach shinshi 
\akh shinshi 
\acl shinshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shinshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shinshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shinshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shinshi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="82d69588-0ec1-4a74-8f16-aa824b33acbe" ownerguid="9abbe345-97ed-46ce-98a2-42243d9c3033"> -<Form> -<AUni ws="qvm-x-ach">shimi</AUni> -<AUni ws="qvm-x-acl">shimi; shimi; shime</AUni> -<AUni ws="qvm-x-akh">shimi</AUni> -<AUni ws="qvm-x-akl">shimi; shimi; shime</AUni> -<AUni ws="qvm-x-ame">shimi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="82d7a7cb-e372-4c4e-aa11-cb2cdbe24bfe" ownerguid="5ea4f6af-0125-4cdd-8a90-8a2d9089df5f"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="b6ca734a-c8cf-4876-855b-7655c0fe03a6" t="o" /> -<objsur guid="b0c272a8-9fe3-4647-a887-00c4f757f820" t="o" /> -<objsur guid="b0acbc85-beac-4e37-9506-5141f34c6d79" t="o" /> -<objsur guid="ae36c7bb-1579-4414-868b-17cfa6d99f7c" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="82e15746-ea26-49bb-9fae-33f73f0ae09a" ownerguid="24168b67-792d-4cc3-8242-e3a3382e90e2"> -<PartOfSpeech> -<objsur guid="85ffb381-0567-4202-8640-53cbaec77e45" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="82e1df69-8c52-4ae1-ab94-efaf11bc9086"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wegu</AUni> -<AUni ws="qvm-x-acl">wegu; wego</AUni> -<AUni ws="qvm-x-akh">wequ</AUni> -<AUni ws="qvm-x-akl">wequ; weqo</AUni> -<AUni ws="qvm-x-ame">wiqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wiqu</AUni> -<AUni ws="qvm-x-acl">*wiqu</AUni> -<AUni ws="qvm-x-akh">*wiqu</AUni> -<AUni ws="qvm-x-akl">*wiqu</AUni> -<AUni ws="qvm-x-ame">*wiqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.717" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="57960eca-f0fc-4209-b5ef-097cd1a58aad" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wiqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dfce98a5-c7da-4cd4-b86f-fc6b163b929b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2571230e-ed34-4688-a534-f1f05548422b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wiqu 
\entryTyp root 
\gENG lay.on.side 
\gSPN acostarse.por.costado 
\e *wiqu 
\c V1 
\ach wegu 
\akh wequ 
\acl wegu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wego +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wequ +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl weqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wiqu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmAnnotationDefn" guid="82e2fd92-48d8-43c9-ba84-cc4a2a5beead" ownerguid="ea346c01-022f-4f34-b938-219ce7b65b73"> -<Abbreviation> -<AUni ws="en">Err</AUni> -</Abbreviation> -<AllowsComment val="True" /> -<AllowsFeatureStructure val="False" /> -<AllowsInstanceOf val="False" /> -<BackColor val="0" /> -<CanCreateOrphan val="False" /> -<CopyCutPastable val="True" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">General category for errors of any kind.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<InstanceOfSignature val="0" /> -<IsProtected val="True" /> -<MaxDupOccur val="0" /> -<Multi val="True" /> -<Name> -<AUni ws="en">Errors</AUni> -</Name> -<PromptUser val="False" /> -<Severity val="0" /> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="babcb400-f274-4498-92c5-77e99c90f75b" t="o" /> -<objsur guid="f17a054b-d21e-4298-a1a5-0d79c4af6f0f" t="o" /> -<objsur guid="6558a579-b9c4-4efd-8728-f994d0561293" t="o" /> -<objsur guid="ddccb400-f274-4498-92c5-77e99c90f75b" t="o" /> -<objsur guid="babcb400-f274-4498-92c5-77e99c90f75d" t="o" /> -<objsur guid="dcc8d4d2-13b2-46e4-8fb3-29c166d189ea" t="o" /> -<objsur guid="ddccb400-f274-4498-92c5-77e99c90f75c" t="o" /> -<objsur guid="72abb400-f274-4498-92c5-77e99c90f75b" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -<UserCanCreate val="False" /> -<ZeroWidth val="False" /> -</rt> -<rt class="CmSemanticDomain" guid="82e4394a-2f58-4356-8d9c-1ad9dbe95293" ownerguid="742996cd-b87f-40a8-bdb3-dba74219bd73"> -<Abbreviation> -<AUni ws="en">8.3.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.619" /> -<DateModified val="2022-9-23 16:55:8.619" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is cold.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79N Hot, Lukewarm, Cold</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Cold</AUni> -</Name> -<Questions> -<objsur guid="7c40f574-5a22-4af7-afbb-e258f8265977" t="o" /> -<objsur guid="d9603697-aa77-4b97-9753-5c0582e4bb65" t="o" /> -<objsur guid="57cc89bf-47da-490e-9265-a9fdc8ac664f" t="o" /> -<objsur guid="d71e7e1b-99d2-4bbb-a133-a6c7a5d7bd93" t="o" /> -<objsur guid="970efa08-8544-4fec-92a4-bc191ec4b54e" t="o" /> -<objsur guid="493bcb84-d9b0-42c5-ae0c-12b09893ea81" t="o" /> -<objsur guid="14b6e913-9d53-4abc-8483-bc58df660dbf" t="o" /> -<objsur guid="555c5e7f-1b0a-4895-abe8-24bdee36c105" t="o" /> -<objsur guid="3cfc84d6-312f-4274-b3b5-be0b7459b01e" t="o" /> -<objsur guid="5fdd86b0-ea07-4d21-aa34-4003e5b78b3c" t="o" /> -<objsur guid="59c10ba3-7ca9-4489-bcbf-3e51d89cfe4e" t="o" /> -<objsur guid="78220a21-dd51-4411-98ab-5602e728b21c" t="o" /> -<objsur guid="4fb10ccc-b405-496e-9b5a-3368259daf9c" t="o" /> -<objsur guid="c09875ae-6524-41c5-a718-a3ebce2d0037" t="o" /> -<objsur guid="cc8fe569-2de7-4e2c-a2f7-129c58a2b2f2" t="o" /> -<objsur guid="3b156c67-d242-4d38-9bf4-b02573075e14" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="82e58b44-9e15-46e3-9cdd-7fa963f93aa2" ownerguid="499fe33d-789f-405b-813d-f75f798508f2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chin</AUni> -<AUni ws="es">barbilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ade0f55f-f237-438f-b525-01a8bd3b4f33" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="82e6549d-4f50-4860-926a-a1d115001fce" ownerguid="a135776f-8f05-4910-9dec-d47a74ae9869"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">slow</AUni> -<AUni ws="es">despacio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="15b6563d-3582-4519-95dd-150f911400d3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoAffixAllomorph" guid="82e9c3df-e95c-44d6-998d-f3779aad6808" ownerguid="012d29ee-971b-4a9d-9b09-3561fc71c81d"> -<Form> -<AUni ws="qvm-x-ach">cu</AUni> -<AUni ws="qvm-x-acl">cu</AUni> -<AUni ws="qvm-x-akh">ku</AUni> -<AUni ws="qvm-x-akl">ku</AUni> -<AUni ws="qvm-x-ame">ku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="82eb3050-d382-48f6-a049-22a5f8a3b25a" ownerguid="6330871b-6008-490e-bfff-e28e17ebce7e"> -<Abbreviation> -<AUni ws="en">7.2.7.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.526" /> -<DateModified val="2022-9-23 16:55:8.526" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to not moving.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>85C Remain, Stay</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Stay, remain</AUni> -</Name> -<Questions> -<objsur guid="23a93d3a-f0ed-4b0f-b10b-9a0f39bebbb4" t="o" /> -<objsur guid="83cd52d7-32b3-4a46-8603-baac988fa456" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="82ec99ca-9338-40ee-9942-ada2577c84da" ownerguid="40019add-d835-4b79-a1fd-2419f598973d"> -<Form> -<AUni ws="qvm-x-ach">ni</AUni> -<AUni ws="qvm-x-acl">ni</AUni> -<AUni ws="qvm-x-akh">ni</AUni> -<AUni ws="qvm-x-akl">ni</AUni> -<AUni ws="qvm-x-ame">ni</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="8378f21c-cf54-437a-9d41-a303c764b326" t="r" /> -</PhoneEnv> -</rt> -<rt class="CmSemanticDomain" guid="82ecb5b3-9128-4b38-b9c5-612857417ceb" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<Abbreviation> -<AUni ws="en">3.4.2.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.141" /> -<DateModified val="2022-9-23 16:55:8.141" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to not liking someone or something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25Q Abhor</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Dislike</AUni> -</Name> -<Questions> -<objsur guid="4f4a35ec-f7df-4f1a-b739-1640ebacef1e" t="o" /> -<objsur guid="e4d897c9-c658-4388-bcae-b9ed9a5a6b5c" t="o" /> -<objsur guid="9996af37-1f17-4b09-9722-e976d0750f9b" t="o" /> -<objsur guid="e100daec-a35a-48e1-8a47-09a7648dcd91" t="o" /> -<objsur guid="91326bc2-6761-42ef-b49f-063940ece3e2" t="o" /> -<objsur guid="3a0e781a-bd54-407e-bf1e-706516449191" t="o" /> -<objsur guid="c49439ec-f4bd-4ed9-b843-5a98da368fb7" t="o" /> -<objsur guid="ecc97a76-a01b-4aed-aa03-8ed4bddfe0c5" t="o" /> -<objsur guid="f29af144-ac0c-4b92-9626-5b0449fff3b9" t="o" /> -<objsur guid="792c804b-ff5a-4de6-8425-f3d7da9dac4e" t="o" /> -<objsur guid="f0e8418f-5457-4d52-b497-1db14dcd25df" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="2855cda6-a031-46aa-bf3f-718d94374d46" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="82ed49d8-1d08-48c1-88ed-6048a0167e12" ownerguid="c13019df-58c1-47c2-b624-6d4907930152"> -<Form> -<AUni ws="qvm-x-ach">chuspi</AUni> -<AUni ws="qvm-x-acl">chuspi; chuspi; chuspe</AUni> -<AUni ws="qvm-x-akh">chuspi</AUni> -<AUni ws="qvm-x-akl">chuspi; chuspi; chuspe</AUni> -<AUni ws="qvm-x-ame">chuspi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="82edca0a-48ac-49ac-8211-dd1d43d32c6b" ownerguid="4e7a6dfe-3654-4ca1-874d-02424581b774"> -<ExampleWords> -<AUni ws="en">plumb line</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What instruments are used to measure how deep something is?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="82ef47dc-4dae-43b5-ae8a-3fa22a0d2d4b" ownerguid="5b5bcd42-09bb-4c2f-a2da-569cfa69b6ac"> -<ExampleWords> -<AUni ws="en">get attention, attract attention, attention, be the center of attention, be the focus of attention</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to receiving a lot of attention from people?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="82f4a90a-e58b-421b-8469-c35cbac6f965" ownerguid="1f3519f8-d946-4857-a1fd-553d98dddf6d"> -<ExampleWords> -<AUni ws="en">airhead, blockhead, dolt, donkey, dullard, dumbbell, dummy, dunce, dupe, fanatic, fool, idiot, imbecile, moron, numskull, scatterbrain, sucker</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a person who does not think well?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="82f8e99b-87a6-468f-8efb-c66471a47d1f" ownerguid="0e5a6bd0-470f-4231-9f57-a73b725807f4"> -<ExampleWords> -<AUni ws="en">first fruits, eat first of new crops</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the first fruits to be harvested?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="82fafd48-412b-4c2a-8236-e622df13f9d8" ownerguid="5b9e7504-0b50-4041-b4f2-c46c0f9fd854"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">jorga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">jorga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">jorqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">jorqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">hurqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ea6167ee-2562-4d71-bd39-bd7bbd72ec47" t="r" /> -</Morph> -<Msa> -<objsur guid="683ec00b-a31e-4d3b-9a30-8420b9887295" t="r" /> -</Msa> -<Sense> -<objsur guid="f66c8c1e-374d-4c45-a9dc-1aa89484cb97" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="82fb6886-5f72-4588-9465-ab5017b06cf2" ownerguid="d2981cc1-0ce5-43b9-983a-d2c472277b4e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="82fcb35f-82f3-4262-9325-6e42f495ebdd" ownerguid="b385d74f-330c-41de-9680-fcc599e8cdd6"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="82fe15b4-5702-4e11-bc86-9594aefb2d2c" ownerguid="6a6bbf65-b521-4b74-bf35-dede87217d3c"> -<ExampleWords> -<AUni ws="en">have a habit of doing something, out of habit, from habit, force of habit, be accustomed to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to doing something because it is a habit?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="82fe9286-773c-440e-ace7-b593181655f7" ownerguid="7f6c81fb-02a4-415f-a363-fb11cc6b9254"> -<ExampleWords> -<AUni ws="en">demon, devil, Satan, the Devil, Beelzebub</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What types of evil supernatural beings are there?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="82ffd3bc-3ccd-401f-a120-a1504d29628f" ownerguid="fcf5c4f1-5b12-47f7-bb95-43d6ac18df26"> -<Form> -<AUni ws="qvm-x-ach">imanir</AUni> -<AUni ws="qvm-x-acl">imanir</AUni> -<AUni ws="qvm-x-akh">imanir</AUni> -<AUni ws="qvm-x-akl">imanir</AUni> -<AUni ws="qvm-x-ame">imanir</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="83051bfc-cd46-49bd-adac-e651b3d46819" ownerguid="bfc449fe-bc53-4325-b0ac-9c960e7549eb"> -<Form> -<AUni ws="qvm-x-ach">shuyni</AUni> -<AUni ws="qvm-x-acl">shuyni; shuyni; shuyne</AUni> -<AUni ws="qvm-x-akh">shuyni</AUni> -<AUni ws="qvm-x-akl">shuyni; shuyni; shuyne</AUni> -<AUni ws="qvm-x-ame">shuyni</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="830d8cda-37a3-4f9d-ac02-4ec5aac52794"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shegu</AUni> -<AUni ws="qvm-x-acl">shegu; shego</AUni> -<AUni ws="qvm-x-akh">shequ</AUni> -<AUni ws="qvm-x-akl">shequ; sheqo</AUni> -<AUni ws="qvm-x-ame">shiqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shiqu</AUni> -<AUni ws="qvm-x-acl">*shiqu</AUni> -<AUni ws="qvm-x-akh">*shiqu</AUni> -<AUni ws="qvm-x-akl">*shiqu</AUni> -<AUni ws="qvm-x-ame">*shiqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.612" /> -<DateModified val="2022-10-11 16:3:47.932" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="73e97ef0-9669-420c-9460-bb7ee957c5c8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shiqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ff982186-e509-4a56-8a54-b26476900954" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ada4a7e0-3e0b-48b7-aaca-be5b25b155ed" t="o" /> -<objsur guid="550e5497-12c3-4602-b2a7-39597a7f73e7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shiqu 
\entryTyp root 
\gENG ? 
\gSPN ? 
\e *shiqu 
\c V2 
\ach shegu 
\akh shequ 
\acl shegu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shego +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shequ +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sheqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shiqu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="830dcfc7-adce-43ee-bd1f-0034d41918a5" ownerguid="ba24e7de-b697-44e5-b40f-2ed2b312bc1a"> -<Form> -<AUni ws="qvm-x-ach">suchu</AUni> -<AUni ws="qvm-x-acl">suchu; suchu; sucho</AUni> -<AUni ws="qvm-x-akh">suchu</AUni> -<AUni ws="qvm-x-akl">suchu; suchu; sucho</AUni> -<AUni ws="qvm-x-ame">suchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="830f8cdb-961c-43ad-a264-8e5b7857f84d"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">qatirämankipis</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="8312616f-138f-48b2-95dd-129c4c94ed93" ownerguid="bcb1252c-7cb4-4fbc-b83f-e5f9c65b4afb"> -<ExampleWords> -<AUni ws="en">the next, adjacent, adjoining, bordering, neighboring</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that is next to another?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8315264a-c9b7-4b27-93d0-d0446bc78a1c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">auja</AUni> -<AUni ws="qvm-x-acl">auja</AUni> -<AUni ws="qvm-x-akh">awja</AUni> -<AUni ws="qvm-x-akl">awja</AUni> -<AUni ws="qvm-x-ame">awha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+aguja</AUni> -<AUni ws="qvm-x-acl">+aguja</AUni> -<AUni ws="qvm-x-akh">+aguja</AUni> -<AUni ws="qvm-x-akl">+aguja</AUni> -<AUni ws="qvm-x-ame">+aguja</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.920" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="606404c1-2e0c-45cc-9103-20d0638486bd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+aguja</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b8395b6c-b127-49a8-92be-cd39e3debd65" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c0d227c6-2c25-4d4c-8e39-28f404b711a8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +aguja 
\entryTyp root 
\gENG needle 
\gSPN aguja 
\e +aguja 
\c N0 
\mp +assimilated KQWchange 
\ach auja 
\akh awja 
\acl auja 
\akl awja 
\ame awha</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="83175cdf-1aff-41f2-85b9-127cc7709bf8" ownerguid="5058c141-f0a2-4368-b1c4-d0962e7f613f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8317e6fa-56ef-484b-ac88-5fb461bd5ca3" ownerguid="6a4f5638-388e-4c8e-9bb7-8e742dac43db"> -<ExampleWords> -<AUni ws="en">bottom (adj)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is on the bottom?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="831f5ac9-b82a-4d35-9e4c-cafbc7fcdfa2" ownerguid="7f798c10-5a3f-4979-baf1-ced2dc457311"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="83201146-1dc3-4114-955e-fc6177a73559" ownerguid="d7e4bf3e-e539-43bc-bb43-3ae0980ffb86"> -<ExampleWords> -<AUni ws="en">shut, close</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to shutting something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8320dec8-f247-4613-98b9-f13c309c0112" ownerguid="ca3e2a0a-23f1-41ff-8267-6f7944da231f"> -<Form> -<AUni ws="qvm-x-ach">goshta</AUni> -<AUni ws="qvm-x-acl">goshta</AUni> -<AUni ws="qvm-x-akh">qoshta</AUni> -<AUni ws="qvm-x-akl">qoshta</AUni> -<AUni ws="qvm-x-ame">qushta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8323cb77-8d19-44e9-b38c-ecfc2c78c0df"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wayi</AUni> -<AUni ws="qvm-x-acl">wayi; wayi; waye</AUni> -<AUni ws="qvm-x-akh">wayi</AUni> -<AUni ws="qvm-x-akl">wayi; wayi; waye</AUni> -<AUni ws="qvm-x-ame">wayi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wasi</AUni> -<AUni ws="qvm-x-acl">*wasi</AUni> -<AUni ws="qvm-x-akh">*wasi</AUni> -<AUni ws="qvm-x-akl">*wasi</AUni> -<AUni ws="qvm-x-ame">*wasi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.556" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="908a9492-ef77-4052-a703-5d519cb12013" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wasi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="87a61372-b529-41d0-892b-ca33273dc85c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f78e1a92-98c0-4af0-b3a4-2773f415d3a6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wasi 
\entryTyp root 
\gENG house 
\gSPN casa 
\e *wasi 
\c N0 
\mp +FinalI 
\ach wayi 
\akh wayi 
\acl wayi / _# 
\acl wayi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl waye +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wayi / _# 
\akl wayi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl waye +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wayi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="8324598d-bec7-4157-a5b5-eb078d075486" ownerguid="1c82027b-da06-405a-a3e9-faaf125a461c"> -<Form> -<AUni ws="qvm-x-ach">casual</AUni> -<AUni ws="qvm-x-acl">casual</AUni> -<AUni ws="qvm-x-akh">casual</AUni> -<AUni ws="qvm-x-akl">casual</AUni> -<AUni ws="qvm-x-ame">casual</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="83251aee-e84a-4729-9299-ed60357fc21e" ownerguid="a202382c-5965-4ebf-aa6f-dabc11f01599"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="edf0d122-83e3-4508-8627-99ea861a4cf5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="8328a243-fc86-4339-9563-c9cbe69d0955" ownerguid="4eb4f6bd-fc2d-4962-96b5-f26f5610760b"> -<Evaluations> -<objsur guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="c8617e5d-47b2-41b3-9183-72e524e8c710" t="o" /> -<objsur guid="7bcc7ed0-49ec-45d2-a29c-1747a6962161" t="o" /> -<objsur guid="00c312da-e69b-43c4-a9a8-db3a85206fc7" t="o" /> -<objsur guid="68f4547e-3572-454f-ac0c-01dd8c526964" t="o" /> -<objsur guid="6f49b9df-43b4-48ee-a72f-c1bbbcad8e6a" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="832c473f-9183-488b-8af1-5c3cd3fe6149" ownerguid="1300719d-cb10-40ea-a158-247cfd41a177"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">size</AUni> -<AUni ws="es">tamaño</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b5b671d3-4d33-4765-ab1d-d708195aa79e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="832dcade-4334-418e-b27e-51bfef569b97" ownerguid="8d1ecc03-e143-48d5-8aa7-a5c835ded4dd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">castellano</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0bbbe084-5b53-4e83-91b9-1d5d3bef8683" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="832fe228-73ce-4344-938c-c6d29153c348"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maray</AUni> -<AUni ws="qvm-x-acl">maray</AUni> -<AUni ws="qvm-x-akh">maray</AUni> -<AUni ws="qvm-x-akl">maray</AUni> -<AUni ws="qvm-x-ame">maray</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*maray</AUni> -<AUni ws="qvm-x-acl">*maray</AUni> -<AUni ws="qvm-x-akh">*maray</AUni> -<AUni ws="qvm-x-akl">*maray</AUni> -<AUni ws="qvm-x-ame">*maray</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.336" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7726e61f-5f6b-4723-ae0f-c4abd0e0e873" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*maray</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="89c3a691-97d2-4ddf-8bce-3c916d5d02c7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="938f2245-a68a-49d9-b569-a9259722b293" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *maray 
\entryTyp root 
\gENG grinding.stone 
\gSPN batán 
\e *maray 
\c N0 
\mp +FinalC 
\ach maray 
\akh maray 
\acl maray 
\akl maray 
\ame maray</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="83322b11-96f4-481b-bc88-2ce9d94939a2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuesta</AUni> -<AUni ws="qvm-x-acl">cuesta</AUni> -<AUni ws="qvm-x-akh">cuesta</AUni> -<AUni ws="qvm-x-akl">cuesta</AUni> -<AUni ws="qvm-x-ame">cuesta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+costar</AUni> -<AUni ws="qvm-x-acl">+costar</AUni> -<AUni ws="qvm-x-akh">+costar</AUni> -<AUni ws="qvm-x-akl">+costar</AUni> -<AUni ws="qvm-x-ame">+costar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.206" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0b7e464a-5e63-4bc5-9959-1f4e589f6f5b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+costar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="35677f7b-24a3-4d74-a919-fca11c314ac1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="af552dde-7d1d-4e96-b0a2-4ed76c9dcb73" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +costar 
\entryTyp root 
\gENG cost 
\gSPN costar 
\e +costar 
\c V2 
\ach cuesta 
\akh cuesta 
\acl cuesta 
\akl cuesta 
\ame cuesta 
\mcc +costar / ~_ PL [q]</Run> -</AStr> -</Custom> -</rt> -<rt class="MoAffixAllomorph" guid="83338005-464f-4e8e-96d2-2a799942a33d" ownerguid="386a1ffc-4c9b-4b9c-aefd-fa6fa089967e"> -<Form> -<AUni ws="qvm-x-ach">pa</AUni> -<AUni ws="qvm-x-acl">pa</AUni> -<AUni ws="qvm-x-akh">pa</AUni> -<AUni ws="qvm-x-akl">pa</AUni> -<AUni ws="qvm-x-ame">pa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="8334faca-a82d-450b-8c66-5bd9e462ce14" ownerguid="867286b0-4477-4124-9c5d-91b85bf77883"> -<Form> -<AUni ws="qvm-x-ach">chichu</AUni> -<AUni ws="qvm-x-acl">chichu; chicho</AUni> -<AUni ws="qvm-x-akh">chichu</AUni> -<AUni ws="qvm-x-akl">chichu; chicho</AUni> -<AUni ws="qvm-x-ame">chichu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="833520ef-9469-48c3-9471-954e8ce6c6bf" ownerguid="f80c6f32-48c4-4d25-97cf-d1a665635b12"> -<Form> -<AUni ws="qvm-x-ach">raspa</AUni> -<AUni ws="qvm-x-acl">raspa</AUni> -<AUni ws="qvm-x-akh">raspa</AUni> -<AUni ws="qvm-x-akl">raspa</AUni> -<AUni ws="qvm-x-ame">raspa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="8335c5e1-0a9d-4525-80fa-eb23c92e0ab0" ownerguid="5ffa36ae-5e33-4831-8b7f-9ccc9d4bbe11"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ISA 3.20 y uma watacunancunata, chaquinman watacuna brasilëtancunata y tsegla watacunan wachquïllancunata, perfümincunata y suertipag tsararashgan wayruruncunata,</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="8336552a-d78b-4aa5-a1b9-20ad623a3c67" ownerguid="80a8c5c5-4444-4d6f-a26c-8d9d681d52a7"> -<Form> -<AUni ws="qvm-x-ach">avëna</AUni> -<AUni ws="qvm-x-acl">avëna</AUni> -<AUni ws="qvm-x-akh">avëna</AUni> -<AUni ws="qvm-x-akl">avëna</AUni> -<AUni ws="qvm-x-ame">avëna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8336621b-5268-4fe8-aa8b-a3f8d7b2c30c" ownerguid="3ccc3a21-07c8-4983-a044-e3c74b538135"> -<ExampleWords> -<AUni ws="en">shorter, shortest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to being shorter than another thing?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="833854bd-a515-4d9d-aa8d-39da2a38dcce" ownerguid="8a3fa8c2-0b6b-431e-b6bb-3a87a3933331"> -<Form> -<AUni ws="qvm-x-ach">fiesta</AUni> -<AUni ws="qvm-x-acl">fiesta</AUni> -<AUni ws="qvm-x-akh">fiesta</AUni> -<AUni ws="qvm-x-akl">fiesta</AUni> -<AUni ws="qvm-x-ame">fiesta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="833cde29-754a-4f6e-a7c7-baca2b7de6bf" ownerguid="e4bacc52-dcaa-4e68-b736-f0b5d9aeca41"> -<ExampleWords> -<AUni ws="en">class, lesson, period, session, lecture, seminar, tutorial, course</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a class?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="83403b66-d2ec-471e-8259-e7f396caeee9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guechipa</AUni> -<AUni ws="qvm-x-acl">guechipa</AUni> -<AUni ws="qvm-x-akh">qechipa</AUni> -<AUni ws="qvm-x-akl">qechipa</AUni> -<AUni ws="qvm-x-ame">qichipa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qichipa</AUni> -<AUni ws="qvm-x-acl">*qichipa</AUni> -<AUni ws="qvm-x-akh">*qichipa</AUni> -<AUni ws="qvm-x-akl">*qichipa</AUni> -<AUni ws="qvm-x-ame">*qichipa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.165" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cd3a434f-b085-40be-88ef-5a518871dc2a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qichipa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f45e6c7d-cda8-41c1-86e3-c5c184630688" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="038780a9-8d1c-4682-8df0-4550fa978171" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qichipa 
\entryTyp root 
\gENG 
\gSPN 
\e *qichipa 
\c N0 
\ach guechipa 
\akh qechipa 
\acl guechipa 
\akl qechipa 
\ame qichipa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="83410c4d-b0ef-4e3f-8f88-7543121065be" ownerguid="169d6e3c-34c2-4a4c-b65b-5bac05b82040"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="834215e0-814a-4fd7-9704-5c138980952b" ownerguid="27d2d722-894d-4847-8657-3e81d4ab8abb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="f9e13751-ff3b-4e69-a7b4-27133e694008" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="dbc7c02c-45ec-49ae-b76b-ac0c42a91ad1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="8346e037-c9ec-4e9d-958f-adefae84a1fb" ownerguid="225a2892-1bfd-43b4-b192-9398f05fd0f1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">place</AUni> -<AUni ws="es">puesto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c74947ba-c8b8-477d-830a-1a3d358c36d2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="83491579-ff34-4b35-804c-8df32d4f9823" ownerguid="5bb495a5-ab5b-4409-8cd1-e48b56401fad"> -<ExampleWords> -<AUni ws="en">be brief, be quick</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to taking a short time to do something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="834a487d-e523-4053-ab68-5974e6ad3899" ownerguid="b760a3a7-ea7f-4a4b-a4b5-81752f2ca158"> -<ExampleWords> -<AUni ws="en">work poorly, work slowly, do a bad job, mess up on the job, slipshod, sloppy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to working poorly?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="834a5ed2-d9b6-493e-9c8c-0edfc1175db8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">memoriza</AUni> -<AUni ws="qvm-x-acl">memoriza</AUni> -<AUni ws="qvm-x-akh">memoriza</AUni> -<AUni ws="qvm-x-akl">memoriza</AUni> -<AUni ws="qvm-x-ame">memoriza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+memorizar</AUni> -<AUni ws="qvm-x-acl">+memorizar</AUni> -<AUni ws="qvm-x-akh">+memorizar</AUni> -<AUni ws="qvm-x-akl">+memorizar</AUni> -<AUni ws="qvm-x-ame">+memorizar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.406" /> -<DateModified val="2022-10-10 21:18:47.204" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1b44be06-0e06-4441-b742-5975f82f85b2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+memorizar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7b08c7bd-7cc4-4f02-bc39-1eb78f40c333" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="daa56d9c-c4a4-4bc1-96b9-40815f8decf3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +memorizar 
\entryTyp root 
\gENG 
\gSPN 
\e +memorizar 
\c V1 
\ach memoriza 
\akh memoriza 
\acl memoriza 
\akl memoriza 
\ame memoriza</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="834aadec-2882-45a0-b42c-256e7847307a" ownerguid="9f8b8c01-f790-469f-bc37-dece6227e276"> -<ExampleWords> -<AUni ws="en">at the same time, together, at one time, at once, simultaneously, at the same instant, in concert, in unison</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that two things happen at the same time?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="834b712b-6983-40d8-b1bd-f0ff225cbd8b" ownerguid="aae402d4-9510-49dc-8001-03c0b7e8ce5d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8fb018a6-bdfb-440a-b19a-a0f8dc4c4fbd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="834c0976-f985-4355-a1be-b39d31579892"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">goshtata; goshtata:</AUni> -<AUni ws="qvm-x-acl">goshtata; goshtata:</AUni> -<AUni ws="qvm-x-akh">qoshtata; qoshtata:</AUni> -<AUni ws="qvm-x-akl">qoshtata; qoshtata:</AUni> -<AUni ws="qvm-x-ame">qushtata; qushtata:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qushtata:</AUni> -<AUni ws="qvm-x-acl">*qushtata:</AUni> -<AUni ws="qvm-x-akh">*qushtata:</AUni> -<AUni ws="qvm-x-akl">*qushtata:</AUni> -<AUni ws="qvm-x-ame">*qushtata:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.882" /> -<DateModified val="2022-10-10 21:19:47.700" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9c273ea6-a314-408b-b766-f3929d8bec86" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qushtata:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dca558a5-909c-4b45-96e9-3978ded13259" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="236229a4-150b-4012-bf63-34394ad00f98" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qushtata: 
\entryTyp root 
\gENG billow 
\gSPN 
\e *qushtata: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach goshtata foreshortened 
\ach goshtata: 
\akh qoshtata foreshortened 
\akh qoshtata: 
\acl goshtata foreshortened 
\acl goshtata: 
\akl qoshtata foreshortened 
\akl qoshtata: 
\ame qushtata foreshortened 
\ame qushtata: 
\i PSA 104.32 Yataycuptenga jircacunapis goshtatanmi. 
\mcc *qushtata: / ~_ [y]</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="834cb711-695a-4450-b4a5-7a38b75ef744" ownerguid="19b51f5a-9c14-4e64-88fd-f0517de6e817" /> -<rt class="MoStemAllomorph" guid="834fc889-df62-4159-906f-d0a241c2e63b" ownerguid="520f506a-1eba-40b1-9a77-1dcce67cbf65"> -<Form> -<AUni ws="qvm-x-ach">shansha</AUni> -<AUni ws="qvm-x-acl">shansha</AUni> -<AUni ws="qvm-x-akh">shansha</AUni> -<AUni ws="qvm-x-akl">shansha</AUni> -<AUni ws="qvm-x-ame">shansha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="83500e3b-e92b-4626-8312-59ffd4a39f6e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">de:ja</AUni> -<AUni ws="qvm-x-acl">de:ja</AUni> -<AUni ws="qvm-x-akh">de:ja</AUni> -<AUni ws="qvm-x-akl">de:ja</AUni> -<AUni ws="qvm-x-ame">de:ja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+dejar</AUni> -<AUni ws="qvm-x-acl">+dejar</AUni> -<AUni ws="qvm-x-akh">+dejar</AUni> -<AUni ws="qvm-x-akl">+dejar</AUni> -<AUni ws="qvm-x-ame">+dejar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.376" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c1333294-4a81-4c9f-befa-0a5750c77f1d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+dejar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6634bec7-8253-4ea3-ad5a-1d24a33442cb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a070d10d-afcf-4c4a-9b30-bc832bccc1fc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +dejar 
\entryTyp root 
\gENG leave 
\gSPN dejar 
\e +dejar 
\c V2 
\ach de:ja 
\akh de:ja 
\acl de:ja 
\akl de:ja 
\ame de:ja</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="83523418-2ffb-450b-998c-d192a21bf651" ownerguid="ac187298-85e8-43ed-ba85-cc06a62c08ba"> -<ExampleWords> -<AUni ws="en">give birth, embryo, multiply, propagate, reproduce, calve, calving, drop, kid, lambing, lay, spawn, spawning grounds, whelp</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to an animal giving birth?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8353e9dd-19c2-436e-b019-03de2781ecdd" ownerguid="1e666e23-1269-4e27-95dd-06d44939b03a"> -<Form> -<AUni ws="qvm-x-ach">wagru</AUni> -<AUni ws="qvm-x-acl">wagru; wagro</AUni> -<AUni ws="qvm-x-akh">waqru</AUni> -<AUni ws="qvm-x-akl">waqru; waqro</AUni> -<AUni ws="qvm-x-ame">waqru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8354e445-3a62-4414-ae9b-bd55bd281728"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jututu</AUni> -<AUni ws="qvm-x-acl">jututu; jututu; jututo</AUni> -<AUni ws="qvm-x-akh">jututu</AUni> -<AUni ws="qvm-x-akl">jututu; jututu; jututo</AUni> -<AUni ws="qvm-x-ame">hututu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hututu.n</AUni> -<AUni ws="qvm-x-acl">*hututu.n</AUni> -<AUni ws="qvm-x-akh">*hututu.n</AUni> -<AUni ws="qvm-x-akl">*hututu.n</AUni> -<AUni ws="qvm-x-ame">*hututu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.771" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e9d0ed89-1752-49f2-9ab3-232665408714" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hututu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bea320d9-3f9b-4eab-b783-235c71076d0a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="76d5872c-60af-4782-b6dc-f7f90cd9b805" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hututu.n 
\entryTyp root 
\gENG 
\gSPN derecho 
\e *hututu.n 
\c N0 
\ach jututu 
\akh jututu 
\acl jututu / _# 
\acl jututu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl jututo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jututu / _# 
\akl jututu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl jututo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hututu 
\i PRO 21.8 Ali runa kawashqanmi itsanqa hututu qeruno kaykan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="835800ef-27b1-4ba2-9d04-e6ffc8a34952" ownerguid="ff7e3abd-6810-4128-83c9-701b4925c2fe"> -<ExampleWords> -<AUni ws="en">flammable, inflammable, combustible</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe something that burns easily?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="83594431-c442-4dac-8eaa-31145c2ef890" ownerguid="1c3c8af0-56b9-4617-862e-21f39b388606"> -<ExampleWords> -<AUni ws="en">dead, deceased, stone-dead, dead as a doornail, late, lifeless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe someone who is dead?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8359d51d-f60e-4a72-a628-193306723f27" ownerguid="40d540ef-2338-410e-af93-f9bf69cd4892"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wash.clothes</AUni> -<AUni ws="es">lavar.ropa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3becf137-bfe0-4485-874d-d6f4d9d6b7ca" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="PunctuationForm" guid="835e464d-16fe-4c97-923a-b9de8e57a242"> -<Form> -<Str> -<Run ws="qvm-x-akh">,</Run> -</Str> -</Form> -</rt> -<rt class="MoStemMsa" guid="8360c772-e083-4417-a390-1284fe552743" ownerguid="8ce2aa75-f18e-41c8-b8ed-753c5e71f60e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="83612a1e-6c8b-424c-92c8-2c6b7d969012" ownerguid="03d65d0c-aafb-40c0-9cd2-3e5ced66ad03"> -<ExampleWords> -<AUni ws="en">throughout, all through, the whole time, all day, all week, from start to finish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that a situation exists during a time period?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8368d145-24df-4a76-838e-b5d25c25a907" ownerguid="70c6dcab-db0d-45f4-aa98-712513bffa4a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spray</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="da32de86-4116-4d61-9853-25ca71d1c90f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="8369dbef-eb60-46c0-a039-8579e956c3c1" ownerguid="933404fc-9865-4f05-ad2a-55d83ac396f9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="836a036f-5e2a-4020-9ae4-8ae7f9eaf09b" ownerguid="f79a1999-42df-440c-9521-c0e75f3e2d2d"> -<Form> -<AUni ws="qvm-x-ach">versu</AUni> -<AUni ws="qvm-x-acl">versu; verso</AUni> -<AUni ws="qvm-x-akh">versu</AUni> -<AUni ws="qvm-x-akl">versu; verso</AUni> -<AUni ws="qvm-x-ame">versu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="836a7fed-e497-4ecb-8057-16c2c95ad368"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">laqui</AUni> -<AUni ws="qvm-x-acl">laqui; laque</AUni> -<AUni ws="qvm-x-akh">laki</AUni> -<AUni ws="qvm-x-akl">laki; lake</AUni> -<AUni ws="qvm-x-ame">laki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llaki</AUni> -<AUni ws="qvm-x-acl">*llaki</AUni> -<AUni ws="qvm-x-akh">*llaki</AUni> -<AUni ws="qvm-x-akl">*llaki</AUni> -<AUni ws="qvm-x-ame">*llaki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.124" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0c93cdb6-c5ab-4d97-a016-a676b3b26598" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llaki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="21ffb591-045f-4ca8-909c-020fb39b0223" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8b8d2a77-3dd2-4ebd-9a15-0f0ff0374395" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llaki 
\entryTyp root 
\gENG be.sad 
\gSPN estar.triste 
\e *llaki 
\c V2 
\mp +FinalI 
\ach laqui 
\akh laki 
\acl laqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl laque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl laki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lake +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame laki</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="836aed18-d981-4648-b277-99db340298cc" ownerguid="03894f92-24c9-4c9f-a977-dfeb641fd13a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="836d5cd7-fa2e-4f2b-b84a-28fd167db0b3" ownerguid="3710e019-46c9-44db-a0aa-9054d3126161"> -<ExampleWords> -<AUni ws="en">addiction, dependence, be high</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What affect do drugs have on people?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="836e06fe-424c-4eca-a075-1ffb6df4a36e" ownerguid="728ef786-3d8f-474b-9cbc-f299e971b56b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="0041b138-8ddb-441a-a907-fb6132d9b30c" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="1f51c050-d0da-4f1d-87b8-2d9c2a6adba1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="837077aa-5f6a-4d94-a1a7-309e7be8d3bf" ownerguid="cadfe0ec-0857-471a-b3a8-0a97f896a7b3"> -<Form> -<AUni ws="qvm-x-ach">jutu</AUni> -<AUni ws="qvm-x-acl">jutu; jutu; juto</AUni> -<AUni ws="qvm-x-akh">jutu</AUni> -<AUni ws="qvm-x-akl">jutu; jutu; juto</AUni> -<AUni ws="qvm-x-ame">hutu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="83718d92-fbd3-44f2-9dd3-02a40a1e00ed" ownerguid="cca44b46-437c-42ee-93d7-a8820d61d0c8"> -<ExampleWords> -<AUni ws="en">lawyer, counsel, legal counsel, counselor-at-law, attorney, attorney-at-law, legal adviser, advocate, barrister, solicitor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What is a person called who argues a case before a judge?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="837349b6-548a-47a8-ac69-a295b76802ea" ownerguid="e7cf3778-387d-4c79-b64b-d9e4fafb07c0"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8375241a-f34b-4b28-8dbc-71ee75b38ee8" ownerguid="4a5c8fdb-c8a0-49d2-a0d6-342428682d65"> -<ExampleWords> -<AUni ws="en">freak</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a deformed baby?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8377d548-b54b-4c29-a5b4-99be62ac625e" ownerguid="5177eb1d-7a51-4f94-82a0-c44553beee3c"> -<Form> -<AUni ws="qvm-x-ach">utsuputu</AUni> -<AUni ws="qvm-x-acl">utsuputu; utsuputu; utsuputo</AUni> -<AUni ws="qvm-x-akh">utsuputu</AUni> -<AUni ws="qvm-x-akl">utsuputu; utsuputu; utsuputo</AUni> -<AUni ws="qvm-x-ame">utsuputu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PhEnvironment" guid="8378f21c-cf54-437a-9d41-a303c764b326" ownerguid="be765e3e-ea5e-11de-9d42-0013722f8dec"> -<Name> -<AUni ws="en">end of word</AUni> -</Name> -<StringRepresentation> -<Str> -<Run underline="none" ws="en">/_#</Run> -</Str> -</StringRepresentation> -</rt> -<rt class="MoStemAllomorph" guid="837937fe-b166-4c68-a2db-8205b98c1dc6" ownerguid="43b940dd-883e-4e69-b3d3-5d576b435990"> -<Form> -<AUni ws="qvm-x-ach">urgenti; urgente</AUni> -<AUni ws="qvm-x-acl">urgenti; urgente; urgenti</AUni> -<AUni ws="qvm-x-akh">urgenti; urgente</AUni> -<AUni ws="qvm-x-akl">urgenti; urgente; urgenti</AUni> -<AUni ws="qvm-x-ame">urgenti; urgente</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="837c934c-ad68-4b64-8e9a-f6b060bfbb4b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">emplastu; emplasto</AUni> -<AUni ws="qvm-x-acl">emplastu; emplastu; emplasto</AUni> -<AUni ws="qvm-x-akh">emplastu; emplasto</AUni> -<AUni ws="qvm-x-akl">emplastu; emplastu; emplasto</AUni> -<AUni ws="qvm-x-ame">emplastu; emplasto</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+emplasto</AUni> -<AUni ws="qvm-x-acl">+emplasto</AUni> -<AUni ws="qvm-x-akh">+emplasto</AUni> -<AUni ws="qvm-x-akl">+emplasto</AUni> -<AUni ws="qvm-x-ame">+emplasto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.457" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b98d8087-4997-46e3-87e1-debd9ba0e23d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+emplasto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="038ad206-b1fe-4891-8d52-f1670703eacc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="05821eb4-03f5-4752-9d24-fc9b9c365c7f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +emplasto 
\entryTyp root 
\gENG plaster 
\gSPN 
\e +emplasto 
\c N0 
\ach emplastu / ~_# 
\ach emplasto / _# 
\akh emplastu / ~_# 
\akh emplasto / _# 
\acl emplastu / ~_# 
\acl emplastu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl emplasto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl emplastu / ~_# 
\akl emplastu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl emplasto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame emplastu / ~_# 
\ame emplasto / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntryInflType" guid="837ebe72-8c1d-4864-95d9-fa313c499d78" ownerguid="01d4fbc1-3b0c-4f52-9163-7ab0d4f4711c"> -<Abbreviation> -<AUni ws="en">pst.</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">The past tense form of a verb that does not take the regular inflectional affix for past tense.</Run> -</AStr> -</Description> -<Discussion> -<objsur guid="b72df880-ea5e-11de-8e18-0013722f8dec" t="o" /> -</Discussion> -<ForeColor val="0" /> -<GlossAppend> -<AUni ws="en">.pst</AUni> -</GlossAppend> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Past</AUni> -</Name> -<ReverseAbbr> -<AUni ws="en">pst. of</AUni> -</ReverseAbbr> -<ReverseName> -<AUni ws="en">Past of</AUni> -</ReverseName> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="83828d3b-ccb2-4459-9297-8f46d114c618"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ilauru</AUni> -<AUni ws="qvm-x-acl">ilauru; ilauru; ilauro</AUni> -<AUni ws="qvm-x-akh">ilawru</AUni> -<AUni ws="qvm-x-akl">ilawru; ilawru; ilawro</AUni> -<AUni ws="qvm-x-ame">ilawru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ilawru</AUni> -<AUni ws="qvm-x-acl">*ilawru</AUni> -<AUni ws="qvm-x-akh">*ilawru</AUni> -<AUni ws="qvm-x-akl">*ilawru</AUni> -<AUni ws="qvm-x-ame">*ilawru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.792" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="80b5bdf3-1652-4343-95f4-6449b570f9c3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ilawru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c34c14cc-9f77-492b-81a2-1e720e832d87" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6ce1eefd-ff6c-4669-beab-7d65cbba8cb9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ilawru 
\entryTyp root 
\gENG a.bitter.plant 
\gSPN 
\e *ilawru 
\c N0 
\ach ilauru 
\akh ilawru 
\acl ilauru / _# 
\acl ilauru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ilauro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ilawru / _# 
\akl ilawru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ilawro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ilawru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="8383b4cb-e14a-4d04-a8c3-9c5276384953" ownerguid="b50f39cb-3152-4d56-9ddc-4b98f763e76a"> -<Abbreviation> -<AUni ws="en">3.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.121" /> -<DateModified val="2022-9-23 16:55:8.121" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to asking permission to do something. This domain is part of a scenario: You have authority over me. I want to do something. I ask you for permission to do it. You give permission or refuse permission. I obey you or disobey you.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Ask permission</AUni> -</Name> -<Questions> -<objsur guid="586d33db-12c8-4e51-9fc9-6667f3593520" t="o" /> -<objsur guid="fb310cf3-4b99-4d4a-bca7-77e9874a7f22" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="a3e905b8-107b-4311-bb50-0abe151131b3" t="o" /> -<objsur guid="8f46496a-d5b2-411d-944d-9d4d4b6f2e31" t="o" /> -<objsur guid="b6baa8bf-7691-431d-8715-3937372b9da0" t="o" /> -<objsur guid="66fc9a08-3661-4dd5-94b0-1eea41fb4554" t="o" /> -<objsur guid="c8c74ec6-3f7a-4b45-b0e9-399b97c4a800" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="8384542a-c622-49d7-b309-f89da8666530"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">liya</AUni> -<AUni ws="qvm-x-acl">liya</AUni> -<AUni ws="qvm-x-akh">liya</AUni> -<AUni ws="qvm-x-akl">liya</AUni> -<AUni ws="qvm-x-ame">liya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*liya</AUni> -<AUni ws="qvm-x-acl">*liya</AUni> -<AUni ws="qvm-x-akh">*liya</AUni> -<AUni ws="qvm-x-akl">*liya</AUni> -<AUni ws="qvm-x-ame">*liya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.104" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0adac04f-b700-45ee-a3fd-baf16a017b0d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*liya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7ea214ce-2387-4fa0-a30d-69145613a7fc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="60a2ecc7-e4c1-4a9a-93eb-81970fa28ec3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *liya 
\entryTyp root 
\gENG tie 
\gSPN atar 
\e *liya 
\c V2 
\ach liya 
\akh liya 
\acl liya 
\akl liya 
\ame liya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="83867be1-ee3c-41ed-9c99-8d124ea2b186" ownerguid="c345f278-91ff-463d-b9a6-8abac8a267eb"> -<ExampleWords> -<AUni ws="en">reed, papyrus, rush, cane, sugarcane, bamboo</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What types of reeds are there?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="83899b19-8b39-4bf0-b124-4c6188569ec8" ownerguid="c0d903bf-6502-45dd-9dd8-cff7f022c696"> -<Abbreviation> -<AUni ws="en">8.1.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.559" /> -<DateModified val="2022-9-23 16:55:8.559" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to adding two numbers together.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>59H Add, Subtract x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Add numbers</AUni> -</Name> -<Questions> -<objsur guid="8787db45-5fe7-4556-baf9-6c1fd876b075" t="o" /> -<objsur guid="353bdeef-c37b-4deb-b4ac-363d414b6fdb" t="o" /> -<objsur guid="e8885d48-8f1a-4d0d-a9b2-658ec47db913" t="o" /> -<objsur guid="d7188b72-3088-4d94-b5cb-2b17dcf54bff" t="o" /> -<objsur guid="3803250e-a297-418c-b29d-f3204fc07562" t="o" /> -<objsur guid="d87bb7f2-2494-4045-b476-4658474c4a77" t="o" /> -<objsur guid="eba344a3-060a-49be-8854-c61cddfb6efd" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="2b27b8ca-188e-44ad-aa86-ffa1f99106e3" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="83899fe3-e1fd-4778-b427-830263df66c1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lama</AUni> -<AUni ws="qvm-x-acl">lama</AUni> -<AUni ws="qvm-x-akh">lama</AUni> -<AUni ws="qvm-x-akl">lama</AUni> -<AUni ws="qvm-x-ame">lama</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llama.n2</AUni> -<AUni ws="qvm-x-acl">*llama.n2</AUni> -<AUni ws="qvm-x-akh">*llama.n2</AUni> -<AUni ws="qvm-x-akl">*llama.n2</AUni> -<AUni ws="qvm-x-ame">*llama.n2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.134" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="915c33ce-88ec-4b93-b3b6-7f69efb4b515" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llama.n2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="87b5e9a0-1e23-432c-b25c-643aa7ddd0a7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="747e4406-9071-439e-b677-ba9dc6bc2b50" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llama.n2 
\entryTyp root 
\gENG 
\gSPN 
\e *llama.n2 
\c N0 
\ach lama 
\akh lama 
\acl lama 
\akl lama 
\ame lama</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8390914b-4ca6-43cd-b415-3cbe05629d0b" ownerguid="fcc204a3-eae4-46d1-a9dc-08864fde1772"> -<ExampleWords> -<AUni ws="en">not as much, not so much</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words indicate that something happens less or is done less?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8392b224-f488-4da3-9055-b03b51d9bf17" ownerguid="53b28d2d-001b-42ac-9e83-0c371ff94f45"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="83951c8b-c867-455c-89eb-f133bbfa6f67" ownerguid="60ba31b6-c83e-4054-9d5f-041f5e79b48d"> -<Form> -<AUni ws="qvm-x-ach">murcillu; murcillo</AUni> -<AUni ws="qvm-x-acl">murcillu; murcillu; murcillo</AUni> -<AUni ws="qvm-x-akh">murcillu; murcillo</AUni> -<AUni ws="qvm-x-akl">murcillu; murcillu; murcillo</AUni> -<AUni ws="qvm-x-ame">murcillu; murcillo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="83973d59-8e5b-4c43-86dc-f51a02046a83" ownerguid="70a8cc54-0a57-441c-916f-0e5394f46c56"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="83991417-24d0-4ba6-859b-986131330534" ownerguid="c8c8b1f6-a898-4d5b-a1ce-fa7284915e8f"> -<ExampleWords> -<AUni ws="en">disastrous, catastrophic, tragic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe an event that causes a disaster?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="839b8c6e-eb74-4b98-aee3-5573c8ded9e8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">garapacha</AUni> -<AUni ws="qvm-x-acl">garapacha</AUni> -<AUni ws="qvm-x-akh">qarapacha</AUni> -<AUni ws="qvm-x-akl">qarapacha</AUni> -<AUni ws="qvm-x-ame">qarapacha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qarapatra</AUni> -<AUni ws="qvm-x-acl">*qarapatra</AUni> -<AUni ws="qvm-x-akh">*qarapatra</AUni> -<AUni ws="qvm-x-akl">*qarapatra</AUni> -<AUni ws="qvm-x-ame">*qarapatra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.104" /> -<DateModified val="2022-10-10 21:18:47.218" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="507e37c4-c4ed-4182-90f1-c5336536e2c8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qarapatra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c98e17a7-d927-437f-b979-b101bd5a4b10" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c2156818-8930-4bc7-b69a-219f09295d8d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qarapatra 
\entryTyp root 
\gENG 
\gSPN 
\e *qarapatra 
\c V2 
\ach garapacha 
\akh qarapacha 
\acl garapacha 
\akl qarapacha 
\ame qarapacha 
\i HOS 2.3 Mana cachariptenga quiquëmi pengaypag garapachashag.</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="839ce4d0-c03b-4b51-8bdb-a6e1b3cf9f44"> -<Form> -<Str> -<Run ws="en">wi</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="839e961d-65af-46f6-a3a3-e9bd0689a31a" ownerguid="eeee02e1-157e-4786-ab92-80c92e5023b8"> -<ExampleWords> -<AUni ws="en">window frame, windowsill, windowpane, window screen, glass, curtain, curtain rod, blind, shade, gable, shutter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the parts of a window?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="83a0514a-6140-4b88-8d7d-a9800e488f72" ownerguid="7bd72622-c2c5-4ecc-97ef-60bbbe9008a2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="83a0a4b0-9f0b-42bd-98d7-60787b4021a3" ownerguid="cdf30dcc-b306-4466-8684-a060f503c6ed"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">hacer.hueco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f65d20dd-cf35-4e7e-9f73-19afe2495065" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="83a1425d-d4b0-4bb8-a2ae-d977c8203dab" ownerguid="8405cd70-5754-40ae-be22-a54327bcc408"> -<Form> -<AUni ws="qvm-x-ach">bandulëru</AUni> -<AUni ws="qvm-x-acl">bandulëru; bandulëru; bandulëro</AUni> -<AUni ws="qvm-x-akh">bandulëru</AUni> -<AUni ws="qvm-x-akl">bandulëru; bandulëru; bandulëro</AUni> -<AUni ws="qvm-x-ame">bandulëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="83a3fd94-eab8-469c-af5b-d94b664759a4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waylu</AUni> -<AUni ws="qvm-x-acl">waylu; waylu; waylo</AUni> -<AUni ws="qvm-x-akh">waylu</AUni> -<AUni ws="qvm-x-akl">waylu; waylu; waylo</AUni> -<AUni ws="qvm-x-ame">waylu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wayllu.n</AUni> -<AUni ws="qvm-x-acl">*wayllu.n</AUni> -<AUni ws="qvm-x-akh">*wayllu.n</AUni> -<AUni ws="qvm-x-akl">*wayllu.n</AUni> -<AUni ws="qvm-x-ame">*wayllu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.617" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9bb55594-b7fa-4839-ad0a-a64d2ac1b429" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wayllu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="66338bd1-a385-4755-8a7c-f61e95e93f54" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="039b4177-3392-4ebd-80de-d962a130db75" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wayllu.n 
\entryTyp root 
\gENG 
\gSPN 
\e *wayllu.n 
\c N0 
\ach waylu 
\akh waylu 
\acl waylu / _# 
\acl waylu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl waylo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl waylu / _# 
\akl waylu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl waylo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame waylu 
\i JDG 16.15 Saynami Dalila nergan: <<Rasun cagta mana wilaycämarga ¿imanirtä <cuyämi wayllömi> nimanqui?</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="83a70d45-3276-4213-84c5-7b447d50bec3" ownerguid="b2830b72-c642-484f-9485-24682aa11ed8"> -<ExampleWords> -<AUni ws="en">divination, palmistry, fortune telling, astrology</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the practice of divining secrets?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="83a80112-2817-4982-a80e-f75307013c12" ownerguid="fbf40f2e-e743-479d-80b2-63325407d5d1"> -<ExampleWords> -<AUni ws="en">which shows that, so we find, so we see</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words are used to introduce a conclusion?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="83a9259a-9765-4525-bafd-61b618e7f470"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">yarqurimun</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="83ac1bdb-573b-4a07-a34d-5c85092a0893" ownerguid="2e994579-9439-4cae-a6d8-ae29194121f0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="83ac8691-a047-4573-9dcd-cd5f3efeed23" ownerguid="0623a5c0-d0dd-4c0c-8f61-fe7192aa08b0"> -<Form> -<AUni ws="qvm-x-ach">semäna</AUni> -<AUni ws="qvm-x-acl">semäna</AUni> -<AUni ws="qvm-x-akh">semäna</AUni> -<AUni ws="qvm-x-akl">semäna</AUni> -<AUni ws="qvm-x-ame">semäna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="83ad737f-5596-41a1-8eec-010df8debc33"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mo:nu</AUni> -<AUni ws="qvm-x-acl">mo:nu; mo:nu; mo:no</AUni> -<AUni ws="qvm-x-akh">mo:nu</AUni> -<AUni ws="qvm-x-akl">mo:nu; mo:nu; mo:no</AUni> -<AUni ws="qvm-x-ame">mo:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mono</AUni> -<AUni ws="qvm-x-acl">+mono</AUni> -<AUni ws="qvm-x-akh">+mono</AUni> -<AUni ws="qvm-x-akl">+mono</AUni> -<AUni ws="qvm-x-ame">+mono</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.467" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d0203de4-d368-475c-8e2a-8936e8987ee5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mono</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2352ee66-dda1-42bf-b6a6-16a57be77398" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="420cb575-9a8d-4148-a329-b1ac4310c21a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mono 
\entryTyp root 
\gENG 
\gSPN 
\e +mono 
\c N0 
\ach mo:nu 
\akh mo:nu 
\acl mo:nu / _# 
\acl mo:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mo:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mo:nu / _# 
\akl mo:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mo:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mo:nu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="83adeb9d-c0be-4073-894d-913014420280" ownerguid="ac9ee84f-f0c7-48b3-8e5a-b4c967112394"> -<Abbreviation> -<AUni ws="en">8.3.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is good.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>65C Good, Bad; 88A Goodness</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Good</AUni> -</Name> -<Questions> -<objsur guid="24e1b248-622c-4466-a023-280ea101b754" t="o" /> -<objsur guid="7ef096d8-67d3-42ba-8d25-f91a52ba2aff" t="o" /> -<objsur guid="f7555796-4f68-4e92-a90b-36d1248e501a" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="30e6b42c-6bbf-4659-99e7-aa4b8e68c9ce" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="aecf2aad-b7a4-444f-9b13-64bc534126d2" t="o" /> -<objsur guid="434ec34f-e7ca-44f8-9252-dff5b9b2b62f" t="o" /> -<objsur guid="c7ccc5bb-181d-420f-8665-64793fefb37b" t="o" /> -<objsur guid="b59f6fc4-629d-4e62-8673-cf62f8ad8197" t="o" /> -<objsur guid="11665f1d-aca9-4699-afb2-bcdea69c6645" t="o" /> -<objsur guid="c9b5f83e-529d-45af-949f-4cc6b0591b66" t="o" /> -<objsur guid="f29dccae-1654-4eb7-8aae-04f7df4fe90c" t="o" /> -<objsur guid="76a06e45-99f7-446f-a2e8-e23edf6064bd" t="o" /> -<objsur guid="cd4300c9-265e-4457-8e33-4e0c9a4d4ba8" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="83ae241d-3c1b-4272-85fe-ff68413a1a22" ownerguid="6e7d10f8-6da5-4a8a-a06d-952511194105"> -<ExampleWords> -<AUni ws="en">light as a feather, weightless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is very light?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="83b071ec-d634-4c76-aef0-6a4ea6b206be" ownerguid="5d90ec7a-591b-485f-b788-619e26b87851"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="4153ac29-a1a8-45ba-a3f0-29ddb4a6ed8b" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">crushed.rock</AUni> -<AUni ws="es">cascajo.ped</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c631712a-9932-4bee-8750-4aaa65f2fa34" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="83b0bae7-501e-41b1-ac18-4f90155fbc29" ownerguid="6bf7569e-dc79-49da-9ce1-e2e03303828a"> -<ExampleWords> -<AUni ws="en">rack, screw, thumbscrew</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What things are used to torture someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="83b2fef2-68d9-4b36-89da-51be69b25f44" ownerguid="432a3698-8fab-4a99-8e76-d0672bb53876"> -<Form> -<AUni ws="qvm-x-ach">espanta</AUni> -<AUni ws="qvm-x-acl">espanta</AUni> -<AUni ws="qvm-x-akh">espanta</AUni> -<AUni ws="qvm-x-akl">espanta</AUni> -<AUni ws="qvm-x-ame">espanta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="83b483b8-f036-44be-8510-ea337d010a1c" ownerguid="73499b8b-76fc-4121-8bfa-1bdebe537259"> -<Abbreviation> -<AUni ws="en">1.6.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.978" /> -<DateModified val="2022-9-23 16:55:7.978" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for birds (phylum Chordata, class Aves).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>4B Birds</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Bird</AUni> -</Name> -<OcmCodes> -<Uni>136i Bird</Uni> -</OcmCodes> -<Questions> -<objsur guid="fcb9bd09-ed7a-47a6-947d-fb629dc7d4cf" t="o" /> -<objsur guid="5e605996-680e-4d44-ba44-f7e87ee27ab6" t="o" /> -<objsur guid="077ca31d-3e22-4428-b82e-cb3b48991296" t="o" /> -<objsur guid="bbe49411-5898-402b-a7a7-3f8482d8eb82" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="83b55195-cb2f-4c1c-a416-08d1b7b405c9" ownerguid="de972142-b8c4-4d5f-8fa2-f1ab61d4b33e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ictsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ictsu; ictso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">iktsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">iktsu; iktso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">iktsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="50c7cedb-e48d-4e40-b667-882924600f9d" t="r" /> -</Morph> -<Msa> -<objsur guid="9e409988-4e1d-45fa-8176-595e955af9d4" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="83b7ef15-1cff-4830-b7ca-22998ac75416" ownerguid="7d9aad89-daf4-42b3-9495-1c64d90b075a"> -<Form> -<AUni ws="qvm-x-ach">levanta</AUni> -<AUni ws="qvm-x-acl">levanta</AUni> -<AUni ws="qvm-x-akh">levanta</AUni> -<AUni ws="qvm-x-akl">levanta</AUni> -<AUni ws="qvm-x-ame">levanta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="83b892a9-4343-4dc0-92b5-f60dbe969397" ownerguid="6cd59f6c-9bf4-43db-a2df-8eb0ede206e5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rope</AUni> -<AUni ws="es">soga</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5311c1cf-22d1-4b49-90f9-b2503bc986b3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="83bb4a8e-30b8-434c-bf80-b83694fabb5a" ownerguid="11569ae9-566d-4ed7-adc7-dc5b4177c6d0"> -<Form> -<AUni ws="qvm-x-ach">winchi</AUni> -<AUni ws="qvm-x-acl">winchi; winchi; winche</AUni> -<AUni ws="qvm-x-akh">winchi</AUni> -<AUni ws="qvm-x-akl">winchi; winchi; winche</AUni> -<AUni ws="qvm-x-ame">winchi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="83bb5171-23aa-4286-b829-00c4272f87e5" ownerguid="eabbeb61-3400-4ccd-81d3-cedeaa73fef7"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="83be2a6e-f7c9-4586-a60a-03e44362e95e" ownerguid="5984bfb8-afdf-4ca5-86e0-a65633961f5a"> -<Form> -<AUni ws="qvm-x-ach">cachi</AUni> -<AUni ws="qvm-x-acl">cachi; cachi; cache</AUni> -<AUni ws="qvm-x-akh">kachi</AUni> -<AUni ws="qvm-x-akl">kachi; kachi; kache</AUni> -<AUni ws="qvm-x-ame">kachi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="83bf64c8-b315-4693-86a0-ff89b72d2c4e" ownerguid="094d58e6-80eb-4bfc-a63f-a848e53f6622"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">clasp</AUni> -<AUni ws="es">abrazar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e4d5e1bd-204f-457a-a9db-2fbf91027c01" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="83bfe903-d186-4490-b7d3-f02ab74aefab" ownerguid="2b2bedd5-3f9c-4c18-a256-aa65ee19f15c"> -<ExampleWords> -<AUni ws="en">incompatible, ill-matched</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe things or people that are incompatible?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="83c35895-8809-4e26-92f2-056942c9c007"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">investiga</AUni> -<AUni ws="qvm-x-acl">investiga</AUni> -<AUni ws="qvm-x-akh">investiga</AUni> -<AUni ws="qvm-x-akl">investiga</AUni> -<AUni ws="qvm-x-ame">investiga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+investigar</AUni> -<AUni ws="qvm-x-acl">+investigar</AUni> -<AUni ws="qvm-x-akh">+investigar</AUni> -<AUni ws="qvm-x-akl">+investigar</AUni> -<AUni ws="qvm-x-ame">+investigar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.832" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c68da57e-5e39-4920-81a2-7e096bb1ae31" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+investigar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b7923925-d507-42a2-bbd7-7b6edb4f2093" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4a4a4c71-f7a6-4423-a4dc-a882adf854d5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +investigar 
\entryTyp root 
\gENG investigate 
\gSPN investigar 
\e +investigar 
\c V1 
\ach investiga 
\akh investiga 
\acl investiga 
\akl investiga 
\ame investiga</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="83c94819-5ca1-4c20-acda-bcc2de209fc9" ownerguid="ff7cf41e-ec29-4e35-b0c8-d61b635ac6eb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">na</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">na</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">na</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">na</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">na</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38151a50-9c63-4a70-8bbb-e5cfc5339ad5" t="r" /> -</Morph> -<Msa> -<objsur guid="3afae7ea-b6f9-4990-9b80-c355228ee832" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="83ca0932-8dc6-4e78-8d7c-d95e608cd091" ownerguid="d80360f9-7319-40a7-a2bc-fd8718711ba4"> -<ExampleWords> -<AUni ws="en">before (adv), earlier, formerly, previously, ago, already</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something happens before now or before a particular time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="83cb7d28-d5d7-47f2-b862-f81d9905c71d" ownerguid="b9a4b336-080a-4973-a7e3-a9af10fc347c"> -<ExampleWords> -<AUni ws="en">gastric, gastrointestinal, abdominal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something to do with the stomach?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="83cc4c72-f739-4c7a-9653-3f12240042ef" ownerguid="051cd29d-3e56-4591-bae0-b20af0568939"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dye</AUni> -<AUni ws="es">teñir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="48e7d7fc-2d70-4be9-bb58-b3e779ccc835" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="83cd52d7-32b3-4a46-8603-baac988fa456" ownerguid="82eb3050-d382-48f6-a049-22a5f8a3b25a"> -<ExampleWords> -<AUni ws="en">permanent, final resting place</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something never moving again?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="83d5a230-8920-4ecc-a757-cbf2961c4094" ownerguid="b5259e80-7522-4e4c-9784-1b427333ab56"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">freeze</AUni> -<AUni ws="es">helar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fe864c4e-a942-4d33-8611-d4e05724c3c4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="83d68f4a-150c-4c1d-8b5a-db721b8b4b80" ownerguid="6a3588bf-efea-4f1d-a307-a76c1d40b3c3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">calm</AUni> -<AUni ws="es">calmar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="524176db-62d6-456c-bafd-acee141d2576" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="83d731b3-dbad-4181-bce1-93e725136441" ownerguid="3aee5038-949e-45a4-aed6-243ca71ce366"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="83d86711-f889-4c3f-b3ed-6f2d8721d9cf" ownerguid="11773808-47d6-42f7-923d-16a368585d22"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">line</AUni> -<AUni ws="es">fila</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5ab35d0b-871e-4ffc-8ff6-914ddc454db3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="83d88833-1930-4256-a703-0b9dce35f55c" ownerguid="5b08e461-b967-4802-bc2e-c5cd7ce6b5f5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">gargu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">gargu; gargo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qarqu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qarqu; qarqo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qarqu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2232ab14-ff9d-4403-b432-21884e84369c" t="r" /> -</Morph> -<Msa> -<objsur guid="d2d2bfb6-5ff7-4b48-831a-c27cb6b0f51e" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="83dd800a-c4e7-410b-9bf0-749ed4846544" ownerguid="1ec85151-eba0-48f4-b56d-4f8040602a4b"> -<ExampleWords> -<AUni ws="en">inheritance, estate, legacy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something that is inherited?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="83de3372-3cc3-486d-8edf-4dce6f85557f" ownerguid="23b1a6b4-8d91-425c-b8c2-52d06b1c1d23"> -<ExampleWords> -<AUni ws="en">strong, tough, hard, unbreakable, durable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe something that is not easily broken?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="83e37696-a833-48c2-8f88-8d602eb7a5b3" ownerguid="82107093-8388-4cc7-bc8f-bbff667c1696"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">neighbor</AUni> -<AUni ws="es">vecina</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="681d1221-6b23-46dd-908d-74a26b378094" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="83e4caeb-3024-4ffa-ab1d-9d69f2a7f06e" ownerguid="c736e4c8-b84f-4647-9b7d-ad7186102181"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="83e66103-5555-49a4-b43f-7da3ac65591d" ownerguid="19180e45-9355-41ed-94ab-f5f51f4eb8a4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hunger</AUni> -<AUni ws="es">hambre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="32983d4c-1a12-48b9-8bd9-525af5db4fe8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="83e96a2d-5e9a-4a5c-ae96-aba6460c6d83" ownerguid="0ebf9fcc-ee38-4f5f-ab5e-c76e199ef7ae"> -<ExampleWords> -<AUni ws="en">pair of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that there are two of something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="83ebb17b-9861-45ec-aa26-a517c872a560" ownerguid="9ac6dec6-1b8f-463c-8239-e2acb93586b1"> -<ExampleWords> -<AUni ws="en">united, unified, cohesive, joined, combined, connected, undivided, one in spirit, one in purpose, single-minded</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a group that is united?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="83ecc037-ccfa-4008-ba03-6c3c2500371f" ownerguid="472b38d5-6085-4720-b614-071ff85d56a3"> -<Form> -<AUni ws="qvm-x-ach">talu</AUni> -<AUni ws="qvm-x-acl">talu; talo</AUni> -<AUni ws="qvm-x-akh">talu</AUni> -<AUni ws="qvm-x-akl">talu; talo</AUni> -<AUni ws="qvm-x-ame">talu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="83eeab55-6a19-4aed-8b68-328d8ed6fc89" ownerguid="335acc66-724a-4cf2-80f4-d4efcd73e003"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">ganas</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9fc68e80-42d1-4865-a7ea-1e6efd06e848" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="83ef15ba-190f-48af-b607-f5c873b967f2" ownerguid="c137b1b1-3dc5-4d81-9e2b-2fc5f6cc4e4e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="83f04eb9-bcd2-4636-bc78-5fcc0bcf6c10"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chirgui</AUni> -<AUni ws="qvm-x-acl">chirgui; chirgue</AUni> -<AUni ws="qvm-x-akh">chirqi</AUni> -<AUni ws="qvm-x-akl">chirqi; chirqe</AUni> -<AUni ws="qvm-x-ame">chirqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trirqi</AUni> -<AUni ws="qvm-x-acl">*trirqi</AUni> -<AUni ws="qvm-x-akh">*trirqi</AUni> -<AUni ws="qvm-x-akl">*trirqi</AUni> -<AUni ws="qvm-x-ame">*trirqi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.129" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c36b6ae5-ebb0-48b4-a94c-f5847f9f80fb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trirqi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="25c44b44-468a-41e6-ade6-47c9a978a21f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e95ee749-2b3d-4185-bfdf-4e599cba8992" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trirqi 
\entryTyp root 
\gENG twist 
\gSPN torcer 
\e *trirqi 
\c V1 
\mp +FinalI 
\ach chirgui 
\akh chirqi 
\acl chirgui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl chirgue +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chirqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chirqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chirqi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="83f2a039-af33-42f4-81a4-cdac5f314a32" ownerguid="fbfcdae2-dd76-4bd7-93b2-8fdb495113ea"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="83f2def0-bbad-4684-814a-d1c457975294" ownerguid="483a342d-2cab-40ab-a1af-dc2693735ef6"> -<Form> -<AUni ws="qvm-x-ach">habilida; habilidä</AUni> -<AUni ws="qvm-x-acl">habilida; habilidä</AUni> -<AUni ws="qvm-x-akh">habilida; habilidä</AUni> -<AUni ws="qvm-x-akl">habilida; habilidä</AUni> -<AUni ws="qvm-x-ame">habilida; habilidä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="83f3f401-7960-461f-9bdf-204249f3fb64" ownerguid="8db70ac8-2d6c-44b4-8d6b-89a11092f684"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">eat</AUni> -<AUni ws="es">comer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f5657f68-f31b-47d9-9773-4c8ce9ab09ee" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="83f652f3-d279-455a-8f08-a5266a860c75"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">trigger</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="83f6592c-17c6-4b51-963b-615c91df28de" ownerguid="8cb6d833-7472-498e-bee6-eade3b53547b"> -<Form> -<AUni ws="qvm-x-ach">ichicnayla</AUni> -<AUni ws="qvm-x-acl">ichicnayla</AUni> -<AUni ws="qvm-x-akh">ichiknayla</AUni> -<AUni ws="qvm-x-akl">ichiknayla</AUni> -<AUni ws="qvm-x-ame">ichiknayla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="83f76f82-d534-460b-8e31-19ae14b3135e" ownerguid="b0c2c50a-effb-45cd-9732-861e34c3ec7f"> -<Form> -<AUni ws="qvm-x-ach">curpa</AUni> -<AUni ws="qvm-x-acl">curpa</AUni> -<AUni ws="qvm-x-akh">kurpa</AUni> -<AUni ws="qvm-x-akl">kurpa</AUni> -<AUni ws="qvm-x-ame">kurpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="83f7b1ee-908f-46b0-b4b1-99491f0b6398" ownerguid="3d73dfa6-dca0-47db-a7e8-bd63f73569a7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tadpole</AUni> -<AUni ws="es">renacuajo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4aa46dcd-be5f-485a-b0fe-fa1f66fd713a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="83f882ec-68b3-469e-81de-8311d446f12a" ownerguid="1bca5864-77c6-4502-9f76-b8b87f931c27"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="83f9bd39-aa8a-409c-9342-0848355e9307" ownerguid="dcbce83f-4058-4b6e-9cb5-c29c0685f45d"> -<Form> -<AUni ws="qvm-x-ach">shatu</AUni> -<AUni ws="qvm-x-acl">shatu; shatu; shato</AUni> -<AUni ws="qvm-x-akh">shatu</AUni> -<AUni ws="qvm-x-akl">shatu; shatu; shato</AUni> -<AUni ws="qvm-x-ame">shatu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="83f9e8b3-81dc-4f1b-acc1-94475237b811" ownerguid="6af9e57c-beaf-4ebb-a656-affe9729cd38"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="83facd36-1b6a-49e8-acb3-1f58d1dfe33a" ownerguid="9d865347-6656-4ab7-8613-bf2e8bc53aa7"> -<ExampleWords> -<AUni ws="en">break, fracture, dislocate, crack, hamstring, jam, sprain, stub, twist, wrench, do your back in, put out your back</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to injuring a bone or joint?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="83fc8218-6ab1-4d6f-aa74-d075279050a5" ownerguid="b654322c-087a-4153-a0d1-e329ddc2635b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="acdbbf09-6297-4142-b0dd-0917eaef7944" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="83fd7d2c-0673-4817-9646-959fd9fa3a03" ownerguid="8a81b9bc-9c66-4d57-a2d1-2e592604c4b1"> -<ExampleWords> -<AUni ws="en">half full</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to something being partly full?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="83fe4ab2-cacb-44b2-9293-4a8a8341ad1b" ownerguid="d31534a5-2b42-4ca4-94c0-b9fe2c689586"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">health</AUni> -<AUni ws="es">salud</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="061fa6a9-e854-40a5-874a-e90ccd7dea8f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="83ffdb4a-afd9-47ac-a87b-3b4bbf3137f6" ownerguid="81734053-8676-402e-8871-4ee306608383"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="84018a11-c99c-47b0-88ad-81b910a4031d" ownerguid="f38f8344-838f-44ba-b103-22289c2d2793"> -<ExampleWords> -<AUni ws="en">get wet, get soaked, bedew</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to something becoming wet?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8403401a-498b-4e78-997e-a450a11d4c5d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsu</AUni> -<AUni ws="qvm-x-acl">tsu; tsu; tso</AUni> -<AUni ws="qvm-x-akh">tsu</AUni> -<AUni ws="qvm-x-akl">tsu; tsu; tso</AUni> -<AUni ws="qvm-x-ame">tsu</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.538" /> -<DateModified val="2022-10-15 16:7:48.42" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">NEG</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3ffb96ae-9527-46a9-82a4-f0f4ea54113a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx NEG 
\entryTyp suffix 
\gENG NEG 
\gSPN NEG 
\e NEG 
\c N0/N0 V0/V0 R0/R0 ONSHEV/ONSHEV BN/BN 
\o 220 
\mp NeverMonophthongized 
\ach tsu 
\akh tsu 
\acl tsu / _# 
\acl tsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsu / _# 
\akl tsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsu 
\mcc NEG / ~_ NOW 
\mcc NEG / ~_ [yet] 
\mcc NEG / ~_ NEG</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8405cd70-5754-40ae-be22-a54327bcc408"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bandule:ru</AUni> -<AUni ws="qvm-x-acl">bandule:ru; bandule:ru; bandule:ro</AUni> -<AUni ws="qvm-x-akh">bandule:ru</AUni> -<AUni ws="qvm-x-akl">bandule:ru; bandule:ru; bandule:ro</AUni> -<AUni ws="qvm-x-ame">bandule:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bandolero</AUni> -<AUni ws="qvm-x-acl">+bandolero</AUni> -<AUni ws="qvm-x-akh">+bandolero</AUni> -<AUni ws="qvm-x-akl">+bandolero</AUni> -<AUni ws="qvm-x-ame">+bandolero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.941" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="83a1425d-d4b0-4bb8-a2ae-d977c8203dab" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bandolero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="99339809-686d-4346-b7df-cc8d8d3a1adb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ab7c2282-39ed-4563-8050-7549191825b0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bandolero 
\entryTyp root 
\gENG bandit 
\gSPN bandolero 
\e +bandolero 
\c N0 
\ach bandule:ru 
\akh bandule:ru 
\acl bandule:ru / _# 
\acl bandule:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl bandule:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl bandule:ru / _# 
\akl bandule:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl bandule:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame bandule:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="840695d3-988a-4447-9c45-9955e124cdcf" ownerguid="9d9fa92a-2364-452d-9ac1-a4459e831b10"> -<Form> -<AUni ws="qvm-x-ach">palapa</AUni> -<AUni ws="qvm-x-acl">palapa</AUni> -<AUni ws="qvm-x-akh">palapa</AUni> -<AUni ws="qvm-x-akl">palapa</AUni> -<AUni ws="qvm-x-ame">palapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="840819ff-8e8d-44e2-a503-ed688872bd5b" ownerguid="bbff1d40-e754-42d6-ad25-68f2993e137d"> -<Form> -<AUni ws="qvm-x-ach">cU</AUni> -<AUni ws="qvm-x-acl">cU</AUni> -<AUni ws="qvm-x-akh">kU</AUni> -<AUni ws="qvm-x-akl">kU</AUni> -<AUni ws="qvm-x-ame">kU</AUni> -</Form> -<IsAbstract val="True" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="84084e67-b321-4b6a-a436-29ead0bee586" ownerguid="4f485a60-e3ba-42e6-9d59-185305c5d1f2"> -<Abbreviation> -<AUni ws="en">8.5.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the direction down.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Down</AUni> -</Name> -<Questions> -<objsur guid="f123486f-6358-4498-a7ee-cac9e5bc0365" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoInflAffMsa" guid="84097b64-d9df-441f-a9d3-d11d4b9d9ea0" ownerguid="470a2533-b4f5-47bb-a8a1-1b1322b66049"> -<InflFeats> -<objsur guid="9ee92136-3d1e-4002-9a6f-53790d1f5855" t="o" /> -</InflFeats> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="b31b892c-cb26-4efd-b65c-29374c5e75b6" t="r" /> -</Slots> -</rt> -<rt class="CmDomainQ" guid="840c5f9c-4237-4373-bc4a-d86c9686daef" ownerguid="180a2220-942c-4e17-96ee-cd4f63a4c715"> -<ExampleWords> -<AUni ws="en">mud, muddy, mud puddle, mire, miry, muck, goo, ooze</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to dirt mixed with water?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8411e61c-9132-4152-85d8-54109a8d5dba" ownerguid="a7031101-5887-48a6-b1cf-07ce397bf9cf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cut.tuber</AUni> -<AUni ws="es">cortar.tuber</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0c14ec24-7f7e-4c3b-877f-bf2508f6e26c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="8411f403-d36c-4fd4-bd5f-4db257e2dda2" ownerguid="35dc9c39-dd28-4ab7-85aa-0de42829394a"> -<Form> -<AUni ws="qvm-x-ach">pucla</AUni> -<AUni ws="qvm-x-acl">pucla</AUni> -<AUni ws="qvm-x-akh">pukla</AUni> -<AUni ws="qvm-x-akl">pukla</AUni> -<AUni ws="qvm-x-ame">pukla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="8411fa09-b1a5-4b62-aa47-f28bee9f6616" ownerguid="64493789-1c2c-4b24-a7e6-f00ff9be923e"> -<Abbreviation> -<AUni ws="en">6.1.2.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.347" /> -<DateModified val="2022-9-23 16:55:8.347" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being useful--words describing something that can be used to do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>65D Useful, Useless; 65E Advantageous, Not Advantageous</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Useful</AUni> -</Name> -<Questions> -<objsur guid="5fae890a-9018-4cab-a5a5-92f855c32430" t="o" /> -<objsur guid="e88e5494-0f60-43fc-bcd2-5f1c3902a7da" t="o" /> -<objsur guid="57fd5acd-f10b-4261-9a2a-e2307daf10a2" t="o" /> -<objsur guid="3351f46d-d8ca-44fe-8b70-12375d5d2e3e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="841208c8-ce30-4629-9964-7990f30a2c9f" ownerguid="e637a0ba-c46e-4229-b210-cfadf389a162"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="84125ad4-1f80-4a1b-be84-47210c94261f" ownerguid="6712385a-6740-4f28-8bbe-8615ea17116b"> -<ExampleWords> -<AUni ws="en">irregular, without warning</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that something does not happen regularly?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="841724f6-dd8d-459c-87df-96a848cc84ee" ownerguid="b49c25f0-a465-4350-86be-6787787e0eb7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="8417a38e-a194-4caa-a364-00fb3a129fd7" ownerguid="6cc0a0cb-41c5-4378-b254-de5460846a10"> -<Form> -<AUni ws="qvm-x-ach">justicia</AUni> -<AUni ws="qvm-x-acl">justicia</AUni> -<AUni ws="qvm-x-akh">justicia</AUni> -<AUni ws="qvm-x-akl">justicia</AUni> -<AUni ws="qvm-x-ame">justicia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="841a6afc-47f6-495e-8e85-151fe538d8c2" ownerguid="68c7d5d8-f1be-48d3-bc63-5319354c734e"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="841afa11-69fe-4168-ba4f-07c57e994449" ownerguid="7a24c499-eab8-411b-afd6-2bf83cf1f569"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">trust</AUni> -<AUni ws="es">confiar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="efc8bcf0-03e8-4e56-9bd9-fe33aa39a17b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="841cb6c1-8319-4c4d-86d3-310874f411f3" ownerguid="11d93cd0-4afb-44e0-b841-2475d4b69585"> -<Form> -<AUni ws="qvm-x-ach">canasta</AUni> -<AUni ws="qvm-x-acl">canasta</AUni> -<AUni ws="qvm-x-akh">canasta</AUni> -<AUni ws="qvm-x-akl">canasta</AUni> -<AUni ws="qvm-x-ame">canasta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="841d6c52-82fa-49ee-8c44-05064a3fd404" ownerguid="965c6a0b-3034-4e2f-a00b-ed2eb3119a5d"> -<Question> -<AUni ws="en">(10) strong: (self-explanatory). </AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="841ecbff-b1a0-49a5-b2d0-210a373c65cc"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">is</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="841ef65d-b9ca-4442-80df-0874a4b8be5e" ownerguid="ac4b7b10-975d-4504-8cad-8c3b1b593e09"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="1862fe42-9ae8-46a8-8ae1-ef9eb406577c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="8421f9e9-0ff1-4e1b-8770-71ebba71aba4" ownerguid="d04169af-b4d1-49fd-9c68-d5f6722d6f74"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="8423b913-c4da-4018-98a8-0e8e504f6e9c" ownerguid="3a24aece-a859-435c-bad6-99ac68e3414d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="842791ec-62bb-4f54-8cfa-f40ac4b6cea7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">matwa</AUni> -<AUni ws="qvm-x-acl">matwa</AUni> -<AUni ws="qvm-x-akh">matwa</AUni> -<AUni ws="qvm-x-akl">matwa</AUni> -<AUni ws="qvm-x-ame">matwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*matawa</AUni> -<AUni ws="qvm-x-acl">*matawa</AUni> -<AUni ws="qvm-x-akh">*matawa</AUni> -<AUni ws="qvm-x-akl">*matawa</AUni> -<AUni ws="qvm-x-ame">*matawa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.364" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="95b3f5d3-9dd2-4a95-a6ef-241487fbf47e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*matawa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="601d8ee4-f0d3-4a79-971c-3ae5f92090f8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="813ad3c8-dc57-45c9-8e17-b23192e516af" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *matawa 
\entryTyp root 
\gENG tie.up 
\gSPN amarrar 
\e *matawa 
\c V1 
\ach matwa 
\akh matwa 
\acl matwa 
\akl matwa 
\ame matwa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="842e3be7-cb5e-4583-bfe9-0f394e531770" ownerguid="67b5ccac-ca10-4742-905d-595993cb4d30"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="8431ccef-39aa-444d-ad8f-8d447592998e" ownerguid="18290e88-b731-466a-a69f-aefda0747274"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rag</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rag</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">raq</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">raq</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">raq</Run> -</AStr> -</Form> -<Morph> -<objsur guid="07d433ff-c955-4479-a0a1-3b363d926e60" t="r" /> -</Morph> -<Msa> -<objsur guid="6dcb48c7-e583-4d11-8c06-4fb11a4f7d09" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="8432da97-a154-4b79-8030-e17924374add" ownerguid="29a70926-986d-4a0b-b456-0581cdaff452"> -<Form> -<AUni ws="qvm-x-ach">pulan</AUni> -<AUni ws="qvm-x-acl">pulan</AUni> -<AUni ws="qvm-x-akh">pulan</AUni> -<AUni ws="qvm-x-akl">pulan</AUni> -<AUni ws="qvm-x-ame">pulan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="843433ad-5cb7-43db-a85c-8f9d74c30c5b" ownerguid="89043106-cbb3-487f-bdcd-00ea38bc6807"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="8434c0d7-d490-40cf-8b48-4451fbe9ac09" ownerguid="97393a8a-b288-4380-8644-4a6530a874df"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">jealous</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e923f41c-fb04-4d06-b423-0298a3470519" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="84367e7d-d279-4e1c-81b4-86492bd6380f"> -<Custom name="Allos" /> -<AlternateForms> -<objsur guid="9324dbb3-c924-4b8b-95b9-f735b71f57f9" t="o" /> -</AlternateForms> -<DateCreated val="2022-10-13 21:22:34.920" /> -<DateModified val="2022-10-21 16:49:57.268" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d25b462e-bf66-4141-9857-bc0d445f54b6" t="o" /> -</LexemeForm> -<MorphoSyntaxAnalyses> -<objsur guid="81f3d70c-d128-4e27-8e31-b45d07072af7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5e83f9ff-8343-476e-a462-55f394f8d585" t="o" /> -</Senses> -</rt> -<rt class="LexSense" guid="8436e8de-22ec-4c80-a374-b52b5ca21c7a" ownerguid="813a720d-2477-4a67-bf2d-938ab6586dae"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="06258746-3c70-4918-9a73-05cd0110db49" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">be.warm</AUni> -<AUni ws="es">ser.cálido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="953dba8b-885e-4b5d-9db4-9f9620c042c6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="8437e914-a9bb-405f-ba6e-92005adebb74" ownerguid="8ac7ed4d-5cd9-4952-b5ee-1c0979ddd96f"> -<Form> -<AUni ws="qvm-x-ach">sipra</AUni> -<AUni ws="qvm-x-acl">sipra</AUni> -<AUni ws="qvm-x-akh">sipra</AUni> -<AUni ws="qvm-x-akl">sipra</AUni> -<AUni ws="qvm-x-ame">sipra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8439c4da-3e3a-4949-9ea2-56c9fef05b83"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">secretariu; secretario</AUni> -<AUni ws="qvm-x-acl">secretariu; secretariu; secretario</AUni> -<AUni ws="qvm-x-akh">secretariu; secretario</AUni> -<AUni ws="qvm-x-akl">secretariu; secretariu; secretario</AUni> -<AUni ws="qvm-x-ame">secretariu; secretario</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+secretario</AUni> -<AUni ws="qvm-x-acl">+secretario</AUni> -<AUni ws="qvm-x-akh">+secretario</AUni> -<AUni ws="qvm-x-akl">+secretario</AUni> -<AUni ws="qvm-x-ame">+secretario</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.480" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="84ed9421-f259-4131-b9aa-a4c55e8dc4ae" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+secretario</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="70ca42b2-0ad6-405d-8c80-efd12f4b8d75" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="97b80117-57ad-40e2-9901-4905f78c18e0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +secretario 
\entryTyp root 
\gENG secretary 
\gSPN secretario 
\e +secretario 
\c N0 
\ach secretariu / ~_# 
\ach secretario / _# 
\akh secretariu / ~_# 
\akh secretario / _# 
\acl secretariu / ~_# 
\acl secretariu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl secretario +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl secretariu / ~_# 
\akl secretariu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl secretario +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame secretariu / ~_# 
\ame secretario / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8439fc80-2f31-4c82-9ca6-d8d3e86c5cca"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guetsga</AUni> -<AUni ws="qvm-x-acl">guetsga</AUni> -<AUni ws="qvm-x-akh">qetsqa</AUni> -<AUni ws="qvm-x-akl">qetsqa</AUni> -<AUni ws="qvm-x-ame">qitsqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qichqa</AUni> -<AUni ws="qvm-x-acl">*qichqa</AUni> -<AUni ws="qvm-x-akh">*qichqa</AUni> -<AUni ws="qvm-x-akl">*qichqa</AUni> -<AUni ws="qvm-x-ame">*qichqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.165" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="77f9d8b4-d4e9-468b-a0b1-379d1ac2bafa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qichqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a5bdc365-afb7-4c58-875f-c9b462aae427" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9dd89498-6d7f-4297-acc9-1630477e4dfc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qichqa 
\entryTyp root 
\gENG quartz 
\gSPN cuarzo 
\e *qichqa 
\c N0 
\ach guetsga 
\akh qetsqa 
\acl guetsga 
\akl qetsqa 
\ame qitsqa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="843a74b8-c2e7-4cc4-8d78-cfb9480aabcb" ownerguid="f07f867d-808f-4750-92ca-859aea59e58c"> -<ExampleWords> -<AUni ws="en">camp, migrate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to living in a place for a short time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="843ccd30-f487-4d74-a937-8698416a4fa4" ownerguid="e86364ac-6fa1-4aad-a6c1-068d56b6a1f1"> -<ExampleWords> -<AUni ws="en">strong, strength, tough, substantial</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is not easily broken?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="843e0bfb-77b6-4898-b353-6263e9316b6f" ownerguid="1faa4b42-bd79-4797-aa30-587d4773ce4e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="843f5815-aa0c-4319-a068-045a69c4b514"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">luce:ru</AUni> -<AUni ws="qvm-x-acl">luce:ru; luce:ru; luce:ro</AUni> -<AUni ws="qvm-x-akh">luce:ru</AUni> -<AUni ws="qvm-x-akl">luce:ru; luce:ru; luce:ro</AUni> -<AUni ws="qvm-x-ame">luce:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lucero</AUni> -<AUni ws="qvm-x-acl">+lucero</AUni> -<AUni ws="qvm-x-akh">+lucero</AUni> -<AUni ws="qvm-x-akl">+lucero</AUni> -<AUni ws="qvm-x-ame">+lucero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.114" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1e0e08a7-435a-458a-8345-b77e6f5e0085" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lucero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9ab8455b-91d8-4d2c-8986-41e04eb78259" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="51d4a6bb-d73d-4c49-8a4d-43acab149420" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lucero 
\entryTyp root 
\gENG 
\gSPN lucero 
\e +lucero 
\c N0 
\ach luce:ru 
\akh luce:ru 
\acl luce:ru / _# 
\acl luce:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl luce:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl luce:ru / _# 
\akl luce:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl luce:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame luce:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="8442e9df-f5be-4b28-8621-865b99e288c4" ownerguid="ff6f23ca-18c4-4579-8f38-322b606f70c2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="329dc45c-3163-45d6-acf8-3e9a80569472" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="9146d781-0c3a-4ca7-8eaa-cbe5248b60da" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="84445342-5721-4971-8f39-4d08f2356c81" ownerguid="0a54d8cc-a702-496f-b6bd-18906798c5dd"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">HOS 11.11 Pishgucuna wiwyayla pärishgannogmi paycunapis Egiptupita wiuyayla cutimongapag.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="84470a1b-46cf-423b-83c7-364f836a322d" ownerguid="8c41d2d1-6da6-4ab8-8b29-7e226192d64e"> -<ExampleWords> -<AUni ws="en">bloody, bloodstained, gory, gruesome</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that has blood on it?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="84476857-5d7a-4e9f-bfd3-0700caee9d46"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Rutwan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexExampleSentence" guid="844b424a-68af-44d4-8933-73a760935d44" ownerguid="6789c8b8-7371-4db4-bb0f-2ebd952171da"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Tsaynogpami Amánta y tsurincunata wanurcatsir gueruman tuyritsergan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="844c4d55-c677-42e5-8c21-37cef6726b6b" ownerguid="c6c772af-7b6b-4393-b0da-5b4a329d3426"> -<ExampleWords> -<AUni ws="en">quota, load</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a measured amount of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="844ce185-18cd-4b57-968e-f6182d7be375" ownerguid="093b3d2a-e0bc-4885-ac70-bf5125e201fe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="95d0f97f-2d82-47a2-9f81-9988802d6b67" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="844f922b-6fb6-49aa-864b-b1c49edaa1ae" ownerguid="15947464-997a-4f44-9a4b-ac4916e7e19b"> -<Abbreviation> -<AUni ws="en">5.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.327" /> -<DateModified val="2022-9-23 16:55:8.327" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for objects such as jewelry that are put on or attached to the body or to the clothes as decoration.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>6R Adornments</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Jewelry</AUni> -</Name> -<OcmCodes> -<Uni>301 Ornament</Uni> -</OcmCodes> -<Questions> -<objsur guid="a16e9eea-36fc-49f1-8209-568b085da511" t="o" /> -<objsur guid="141a3fc7-7fb7-4b3a-87c4-a333c70f8fc0" t="o" /> -<objsur guid="3e2ad7d0-bc59-4009-90f3-58240429e4ed" t="o" /> -<objsur guid="908bb4f2-2517-42ba-8669-6bbc6a3f7f3d" t="o" /> -<objsur guid="c74e4940-1fae-4ce0-8cdb-f5c15a3adc7c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="845471df-9765-4f6c-b8d9-e56011291cb0" ownerguid="f081f71e-0bfa-46cb-a42c-6d675b245216"> -<Form> -<AUni ws="qvm-x-ach">humilla</AUni> -<AUni ws="qvm-x-acl">humilla</AUni> -<AUni ws="qvm-x-akh">humilla</AUni> -<AUni ws="qvm-x-akl">humilla</AUni> -<AUni ws="qvm-x-ame">humilla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="8454b900-cbc0-48f2-854f-23e831401c47" ownerguid="b0b80351-a3b7-4fe4-9900-5d36dcff894b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 32.19 Tsayta ricarmi fiyupa rabyacur apamushgan läjacunata agolagpag punta chaquincho sagtariycorgan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="845996c9-f2d4-449e-8cc2-7bd892f68d67" ownerguid="97c1807c-0edd-45ab-afc3-a9f0e382db21"> -<Form> -<AUni ws="qvm-x-ach">jancha</AUni> -<AUni ws="qvm-x-acl">jancha</AUni> -<AUni ws="qvm-x-akh">jancha</AUni> -<AUni ws="qvm-x-akl">jancha</AUni> -<AUni ws="qvm-x-ame">hancha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="8459aa62-9903-4fa2-905d-32a8f32d9e69" ownerguid="6c4e27b3-6145-4a86-bab2-2fb8df03e02e"> -<Form> -<AUni ws="qvm-x-ach">dañëru</AUni> -<AUni ws="qvm-x-acl">dañëru; dañëru; dañëro</AUni> -<AUni ws="qvm-x-akh">dañëru</AUni> -<AUni ws="qvm-x-akl">dañëru; dañëru; dañëro</AUni> -<AUni ws="qvm-x-ame">dañëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="8459b346-9178-4522-b9f8-ef54d9abf45e" ownerguid="ce388b3a-7c80-4cec-96f2-ad558bcaa18a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">table</AUni> -<AUni ws="es">mesa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cd7d8265-092b-498c-9bd8-a22a6f33a6e0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoInflAffMsa" guid="845afc45-963c-49a0-ac56-937fd0c2349e" ownerguid="6a0d81eb-93c1-406d-8b29-04f710ef5eed"> -<PartOfSpeech> -<objsur guid="a4fc78d6-7591-4fb3-8edd-82f10ae3739d" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="f9e1228b-4c5b-4e23-bd04-d513eddcbaea" t="r" /> -</Slots> -</rt> -<rt class="LexSense" guid="845df58d-33dc-46cb-a969-8cd0ebfcb43d" ownerguid="41846def-c6ee-4e9a-94cd-4ae5c102eaa6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">foot</AUni> -<AUni ws="es">pie</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0ba57047-88b5-4075-9790-45a46ea8038d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="84614081-77bf-4fc3-88c3-b819f80025d8" ownerguid="5428a01a-5717-4d95-a125-0de648c7d173"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="84622623-77dc-4eac-a84d-fc9dc4a72b39"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ca:su</AUni> -<AUni ws="qvm-x-acl">ca:su; ca:so</AUni> -<AUni ws="qvm-x-akh">ca:su</AUni> -<AUni ws="qvm-x-akl">ca:su; ca:so</AUni> -<AUni ws="qvm-x-ame">ca:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hacer.caso</AUni> -<AUni ws="qvm-x-acl">+hacer.caso</AUni> -<AUni ws="qvm-x-akh">+hacer.caso</AUni> -<AUni ws="qvm-x-akl">+hacer.caso</AUni> -<AUni ws="qvm-x-ame">+hacer.caso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.639" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="227c03ea-ea19-4edc-8527-3ddc09db49c5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hacer.caso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="38219471-50d3-4980-8735-05bf1a958013" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="412657d3-d938-4697-910b-207fb098d594" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hacer.caso 
\entryTyp root 
\gENG obey 
\gSPN hacer.caso 
\e +hacer.caso 
\c V2 
\ach ca:su 
\akh ca:su 
\acl ca:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ca:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ca:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ca:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ca:su</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="84642d68-60c9-4aa6-8e1e-6f065b83ebd9" ownerguid="467dd680-ac64-4dc4-8a17-1cfe297d3392"> -<ExampleWords> -<AUni ws="en">complicate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to making something more complicated?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="84646c29-e50e-46de-b8bf-08d30d5bbd31" ownerguid="a8a25f74-cf52-43c2-9bf2-41863f060fa6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b43ad487-6e73-48ff-9ec0-62d0371aba88" t="r" /> -</Morph> -<Msa> -<objsur guid="b0ee83ce-c1ff-41c7-8aa1-b6e53ae19ebd" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="846486a1-4723-4c51-96c4-befeb47ece38" ownerguid="5abd1270-261a-4980-93e5-e10eacea99ad"> -<ExampleWords> -<AUni ws="en">jump, jump up and down, bounce, leap, buck, bob, jump for joy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to jumping up and down in one place?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="846631e2-5c67-4f89-acb6-c2343781f0c4" ownerguid="f5c73157-9581-45f0-9370-140d613f9812"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="846aa43b-c8bc-426c-836a-a16419c850b1" ownerguid="24bf0860-4b01-4495-add1-b473df5bc4df"> -<Form> -<AUni ws="qvm-x-ach">capacapa</AUni> -<AUni ws="qvm-x-acl">capacapa</AUni> -<AUni ws="qvm-x-akh">kapakapa</AUni> -<AUni ws="qvm-x-akl">kapakapa</AUni> -<AUni ws="qvm-x-ame">kapakapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="846ad9f2-7519-4645-85ef-90e6e948ad21" ownerguid="9080bb0a-b965-4da7-84c7-2e87b4088e07"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cough</AUni> -<AUni ws="es">toz</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2d4eb82f-b694-4326-bf39-b3ef4af6a84f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="846ed3a8-cff9-46d5-8ed0-75493ea1ccb9" ownerguid="bba30b56-6cd8-4542-81ab-f983cf1354bd"> -<ExampleWords> -<AUni ws="en">leave behind, leave in the dust</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to moving away from a person or vehicle behind you?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="846fa9e6-c821-4480-9778-aa19e89b1849" ownerguid="94ad2e38-b17f-439d-a2ea-f9d344586d4f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="5adc4335-3adc-45af-9cdf-4dcd53f28e1d" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">thick</AUni> -<AUni ws="es">grueso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="57efcf39-b43c-4ccc-b359-d3e1ec700a82" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="846fe98b-bb04-426d-866e-bf42056a0ab0" ownerguid="1b68b286-0dca-4025-90fa-8fdf4cd2d664"> -<Form> -<AUni ws="qvm-x-ach">cultu; culto</AUni> -<AUni ws="qvm-x-acl">cultu; cultu; culto</AUni> -<AUni ws="qvm-x-akh">cultu; culto</AUni> -<AUni ws="qvm-x-akl">cultu; cultu; culto</AUni> -<AUni ws="qvm-x-ame">cultu; culto</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8477bf5f-d221-4a8f-9363-6282fbf9bb70" ownerguid="8bcc3b3d-dd0c-4838-a33a-b395f354c86f"> -<ExampleWords> -<AUni ws="en">move around, surround, encircle, revolve, swivel, pivot</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to moving around something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8477ca23-a33b-4c68-af58-fc17c5e6c1dc" ownerguid="54f59b23-a2e8-4bfc-9da2-7dd7c37d2a47"> -<ExampleWords> -<AUni ws="en">have been... -ing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) anterior continuing: past action continues into the present: 'I have waited over an hour' ( = and I'm still waiting).</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="8479dab1-7fa4-45aa-b89a-6632cf28525f" ownerguid="e250016d-04a2-4d97-902e-a395bccaa737"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Warmi sawatacashga purin.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="847ac9e2-e4f7-46df-88f0-45f7f70fe0e6" ownerguid="d25f7907-091e-4cf7-bd8c-bdb97278b616"> -<ExampleWords> -<AUni ws="en">stroke, blow, beat, punch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to each time something is hit?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="847e4e13-d1cf-4d03-982d-e022f9c2bdfa" ownerguid="98ec2d97-4a2c-4f63-b3f9-32d5083d089e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="2c30400e-7e06-4759-b7e5-3e4b0a7fc24c" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">fall</AUni> -<AUni ws="es">caer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cdbbd906-fcd8-4031-83b7-5543ed93ac73" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="847ec14f-f4d1-4253-9099-ec302cd2dab4" ownerguid="3ee8fa9d-8c04-445c-ad78-d15f56ac2a93"> -<Form> -<AUni ws="qvm-x-ach">limpia</AUni> -<AUni ws="qvm-x-acl">limpia</AUni> -<AUni ws="qvm-x-akh">limpia</AUni> -<AUni ws="qvm-x-akl">limpia</AUni> -<AUni ws="qvm-x-ame">limpia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="84812e05-5a4d-4776-abaa-761b9a977ff6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">golu; golu:</AUni> -<AUni ws="qvm-x-acl">golo:; golu; golo</AUni> -<AUni ws="qvm-x-akh">qolu; qolu:</AUni> -<AUni ws="qvm-x-akl">qolo:; qolu; qolo</AUni> -<AUni ws="qvm-x-ame">qulu; qulu:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qullu:</AUni> -<AUni ws="qvm-x-acl">*qullu:</AUni> -<AUni ws="qvm-x-akh">*qullu:</AUni> -<AUni ws="qvm-x-akl">*qullu:</AUni> -<AUni ws="qvm-x-ame">*qullu:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.851" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cd9f33e2-7356-4d6c-925b-1a7931c18f90" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qullu:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f0aab5ce-22a0-497a-a0e1-6c600d8ebee4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="21395208-dfce-48c7-994a-efb11d7c5d81" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qullu: 
\entryTyp root 
\gENG childless 
\gSPN sin.hijos 
\e *qullu: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach golu foreshortened 
\ach golu: 
\akh qolu foreshortened 
\akh qolu: 
\mp +underlong 
\acl golo: 
\acl golu foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl golo foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\mp +underlong 
\akl qolo: 
\akl qolu foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qolo foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qulu foreshortened 
\ame qulu:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="84826bae-8de8-45e7-99d7-8d7730fecccc" ownerguid="8e92b134-6846-44f9-84d6-7971044c38f2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="eb49d6e7-bbef-492a-a6c4-efa226938de6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="8485147c-fbda-458c-aa70-96f3aae23f44" ownerguid="8855211f-4a6e-477f-be4d-01fdbeeb476e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">noun</AUni> -<AUni ws="es">sustantivo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8e1e9520-5940-4eb2-ab02-f1d2aa19118b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="84880f62-d0bb-47ff-b716-56ee92611821" ownerguid="7e286ec9-c553-4ec2-8194-b7ccf77f5491"> -<Form> -<AUni ws="qvm-x-ach">uña</AUni> -<AUni ws="qvm-x-acl">uña</AUni> -<AUni ws="qvm-x-akh">uña</AUni> -<AUni ws="qvm-x-akl">uña</AUni> -<AUni ws="qvm-x-ame">uña</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="848cf990-c481-4d0f-aad0-02d71da31ae4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">marmol</AUni> -<AUni ws="qvm-x-acl">marmol</AUni> -<AUni ws="qvm-x-akh">marmol</AUni> -<AUni ws="qvm-x-akl">marmol</AUni> -<AUni ws="qvm-x-ame">marmol</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+marmol</AUni> -<AUni ws="qvm-x-acl">+marmol</AUni> -<AUni ws="qvm-x-akh">+marmol</AUni> -<AUni ws="qvm-x-akl">+marmol</AUni> -<AUni ws="qvm-x-ame">+marmol</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.346" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c0c8e1e8-ea1d-4379-9544-08b3638a8684" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+marmol</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cc4414ae-b5eb-4f95-80f7-216db6569fd6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="037b317d-b755-4bc6-8c5e-614ae01a16d7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +marmol 
\entryTyp root 
\gENG marble 
\gSPN marmol 
\e +marmol 
\c N0 
\mp +FinalC 
\ach marmol 
\akh marmol 
\acl marmol 
\akl marmol 
\ame marmol</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="848d8854-cb76-4513-ad67-aff782a67f5f" ownerguid="10b858d3-6b3b-48cb-8d7e-9359cce8c684"> -<Form> -<AUni ws="qvm-x-ach">herrëru</AUni> -<AUni ws="qvm-x-acl">herrëru; herrëru; herrëro</AUni> -<AUni ws="qvm-x-akh">herrëru</AUni> -<AUni ws="qvm-x-akl">herrëru; herrëru; herrëro</AUni> -<AUni ws="qvm-x-ame">herrëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="848ef876-8637-4c9f-8775-bcf97e6bbdfd" ownerguid="00734aec-1d6f-45ab-ab85-f6c0ea7e6465"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">oil</AUni> -<AUni ws="es">aceite</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b92255fb-f575-4131-84a6-73197cce0f26" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="848ff284-5e8a-4afd-ad6a-9342428a7a65" ownerguid="016ba72b-a69f-4f3c-a01e-0b325f469539"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">visable</AUni> -<AUni ws="es">visible</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="79d50daa-9604-46db-a927-c6cdc595610d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="84903a51-6519-4055-b074-752253ebe109" ownerguid="9f8bbd01-e632-4c24-a40b-e51ddb1716eb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8492c8f5-bd12-4035-a1a5-95827b2f285c" ownerguid="1de2cef5-3a2d-45c1-8cb6-06b2ac087907"> -<Question> -<AUni ws="en">(8) complement to words of emotion (surprise, regret, happiness, sadness, etc.; the complement proposition is presupposed to be true)</AUni> -</Question> -</rt> -<rt class="LexSense" guid="84950f3c-8b44-41c9-9909-edf720a2a894" ownerguid="bf621f5e-59e7-42ac-a1f1-bcf569b387da"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">last.name</AUni> -<AUni ws="es">apellido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="967b23b6-239e-4326-83e6-c41023950932" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8495114d-2a7c-469b-8e4e-171aee4bcba6" ownerguid="73b959ab-0229-4710-af99-dfc9b5370540"> -<ExampleWords> -<AUni ws="en">advance, double, explode, gain, grow, increase, jump, rise, rocket, soar, triple</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is becoming larger in degree?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="8497fb66-8b91-46b9-a0d5-fb9385319561" ownerguid="38bbb33a-90bf-4a2c-a0e5-4bde7e134bd9"> -<Abbreviation> -<AUni ws="en">2.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.32" /> -<DateModified val="2022-9-23 16:55:8.32" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to tasting something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>24D Taste; 79H Sweet, Bitter, Tasteless</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Taste</AUni> -</Name> -<Questions> -<objsur guid="324156c8-3324-423e-8c53-dee15746889e" t="o" /> -<objsur guid="8eec7fde-837b-48e7-bea4-76bf5f306a72" t="o" /> -<objsur guid="a70741be-ebbd-47a4-956f-0f829f82fb27" t="o" /> -<objsur guid="fe72934a-5456-4bb3-abde-6c0c86cb801e" t="o" /> -<objsur guid="78f8d3f8-64f3-4906-8dc5-0aab2135e337" t="o" /> -<objsur guid="e86f611f-0437-4112-bed2-e65762d799ea" t="o" /> -<objsur guid="a9b1644c-51d5-42c4-879c-1bab919c3576" t="o" /> -<objsur guid="6e9e1461-4adb-41ad-9114-b9144b7b4f7b" t="o" /> -<objsur guid="27e6e28e-18de-4515-9bbe-3a4b2893480f" t="o" /> -<objsur guid="73dd2545-8154-4a39-85df-e4731d1bef6c" t="o" /> -<objsur guid="a113a42c-2221-456c-ab2c-7d81df0efcc7" t="o" /> -<objsur guid="96ea0a4e-d24a-4a55-a9e0-f32766a2c5a5" t="o" /> -<objsur guid="b74e01bd-77de-4a86-9e34-337c402328d0" t="o" /> -<objsur guid="7188733c-257b-4acd-8141-5700e6b861e0" t="o" /> -<objsur guid="6ff01bb4-47c9-4826-9532-4b7925f04489" t="o" /> -<objsur guid="c5d74f25-df12-486a-86bd-3f2167d0425e" t="o" /> -<objsur guid="4e10c312-17f0-49c9-ace7-92f82770b744" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="8498a627-d01a-402e-a573-7c0256c4a817" ownerguid="984c3043-fc01-4573-a283-dde53ad78009"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="84990520-e200-4390-a1b8-04ceb53c2918"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alimenta</AUni> -<AUni ws="qvm-x-acl">alimenta</AUni> -<AUni ws="qvm-x-akh">alimenta</AUni> -<AUni ws="qvm-x-akl">alimenta</AUni> -<AUni ws="qvm-x-ame">alimenta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+alimentar</AUni> -<AUni ws="qvm-x-acl">+alimentar</AUni> -<AUni ws="qvm-x-akh">+alimentar</AUni> -<AUni ws="qvm-x-akl">+alimentar</AUni> -<AUni ws="qvm-x-ame">+alimentar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.707" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9ff0486c-d0b0-4d0c-920b-58c1034b3afa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+alimentar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5ad117fc-a62a-4ce6-acb2-d17ac48a1d1f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3251774f-0b2e-4373-8c2f-ed48e5e836e0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +alimentar 
\entryTyp root 
\gENG feed 
\gSPN alimentar 
\e +alimentar 
\c V2 
\ach alimenta 
\akh alimenta 
\acl alimenta 
\akl alimenta 
\ame alimenta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="849c52b0-b1bb-4421-bcb1-a12456627068" ownerguid="93489181-ad8c-4a18-8dbc-fd7a9c871126"> -<ExampleWords> -<AUni ws="en">irritable, crotchety, petulant, fractious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe someone who is easily annoyed by unimportant things?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="849d2677-46e4-4248-8dd4-b3f515dbcefa" ownerguid="f0306842-35a9-4b48-82ca-be753b28d92d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="849d3a04-80e3-4b03-ba9c-73c59896098c" ownerguid="f1488c80-cf16-4f1d-af6d-aad304199966"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">clean</AUni> -<AUni ws="es">limpio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6ebe8bee-d50f-48c1-97bf-48b2c7013d50" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="849db14f-7aec-4e44-a9c9-d98772cb3144"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">washqui</AUni> -<AUni ws="qvm-x-acl">washqui; washqui; washque</AUni> -<AUni ws="qvm-x-akh">washki</AUni> -<AUni ws="qvm-x-akl">washki; washki; washke</AUni> -<AUni ws="qvm-x-ame">washki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*washki</AUni> -<AUni ws="qvm-x-acl">*washki</AUni> -<AUni ws="qvm-x-akh">*washki</AUni> -<AUni ws="qvm-x-akl">*washki</AUni> -<AUni ws="qvm-x-ame">*washki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.554" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f620e879-82f0-46a7-a6d3-1d78769ee012" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*washki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f4402a20-b1dc-4c3f-8d51-52968c80fc77" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="18c64ad2-68c9-4668-9146-65df5dfa5129" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *washki 
\entryTyp root 
\gENG orphan 
\gSPN huTrfano 
\e *washki 
\c N0 
\mp +FinalI 
\ach washqui 
\akh washki 
\acl washqui / _# 
\acl washqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl washque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl washki / _# 
\akl washki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl washke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame washki</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="849dcf1c-51e1-4c63-9308-504bfb1c3cd0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">testimoniu; testimonio</AUni> -<AUni ws="qvm-x-acl">testimoniu; testimoniu; testimonio</AUni> -<AUni ws="qvm-x-akh">testimoniu; testimonio</AUni> -<AUni ws="qvm-x-akl">testimoniu; testimoniu; testimonio</AUni> -<AUni ws="qvm-x-ame">testimoniu; testimonio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+testimonio</AUni> -<AUni ws="qvm-x-acl">+testimonio</AUni> -<AUni ws="qvm-x-akh">+testimonio</AUni> -<AUni ws="qvm-x-akl">+testimonio</AUni> -<AUni ws="qvm-x-ame">+testimonio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.876" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dac3b1ff-b03c-4393-a261-1767ca83c9dd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+testimonio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b73a78f0-1f2d-43c4-afe0-84b5755ae17f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d8a86089-0abe-423f-a4b2-9416edf33be2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +testimonio 
\entryTyp root 
\gENG 
\gSPN 
\e +testimonio 
\c N0 
\ach testimoniu / ~_# 
\ach testimonio / _# 
\akh testimoniu / ~_# 
\akh testimonio / _# 
\acl testimoniu / ~_# 
\acl testimoniu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl testimonio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl testimoniu / ~_# 
\akl testimoniu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl testimonio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame testimoniu / ~_# 
\ame testimonio / _# 
\i PSA 60.0 Lirio waytacuna nishgan tönuwan cay testimonio salmuta cantapäcunqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="849de1d9-5de1-47b2-809d-5b63790f86a1" ownerguid="d7d0ab6d-4b75-4800-8bc8-77eb50f6bc66"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">peel</AUni> -<AUni ws="es">pelear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3418c7c9-f27e-4dc9-91bf-30c36b2bbddf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="849ef364-cd30-4e25-973d-e4e7faa0c4b1" ownerguid="f4f99472-0b23-42b9-8b51-1d56fe24715b"> -<ExampleWords> -<AUni ws="en">single birth, twins, triplets, quadruplets, quintuplets</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the number of babies born at the same time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="849f358e-465b-4211-ab52-17133fbfb2be" ownerguid="73ea23c2-db45-49fa-a72b-0fc6eff4ce30"> -<ExampleWords> -<AUni ws="en">eventually, in the end, finally, end up, at last, in time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something eventually happened?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="849f4a69-671d-4449-b696-78f579563201" ownerguid="3793a7b7-a136-4c99-9830-65dffd7ccc6c"> -<Form> -<AUni ws="qvm-x-ach">campamentu; campamento</AUni> -<AUni ws="qvm-x-acl">campamentu; campamentu; campamento</AUni> -<AUni ws="qvm-x-akh">campamentu; campamento</AUni> -<AUni ws="qvm-x-akl">campamentu; campamentu; campamento</AUni> -<AUni ws="qvm-x-ame">campamentu; campamento</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="84a071b1-0505-4bc1-b0b5-1a10d3e02bd3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">zampo:ña</AUni> -<AUni ws="qvm-x-acl">zampo:ña</AUni> -<AUni ws="qvm-x-akh">zampo:ña</AUni> -<AUni ws="qvm-x-akl">zampo:ña</AUni> -<AUni ws="qvm-x-ame">zampo:ña</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+zampoña</AUni> -<AUni ws="qvm-x-acl">+zampoña</AUni> -<AUni ws="qvm-x-akh">+zampoña</AUni> -<AUni ws="qvm-x-akl">+zampoña</AUni> -<AUni ws="qvm-x-ame">+zampoña</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.800" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f197eebe-d067-4c99-b641-60825638ff53" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+zampoña</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0e800143-c986-40e6-85fb-a03ef133e856" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ff43a873-509b-4153-a8b0-14d8bc9705ce" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +zampoña 
\entryTyp root 
\gENG 
\gSPN 
\e +zampoña 
\c N0 
\ach zampo:ña 
\akh zampo:ña 
\acl zampo:ña 
\akl zampo:ña 
\ame zampo:ña 
\i DAN 3.5 Imay hörapis trompëtata, quënata, arpa malwata, guitärrata, arpata, zampöñata y mas waquin instrumentucunatapis wagamushganta mayaycur juc yarpayla lapayqui mandag Nabucodonosor ichitsishgan monumentu naupanman gongurpacäriy adoranayquipag.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="84a414bb-8b0a-4d50-a453-ac463e0aaa61"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cospiado:ra</AUni> -<AUni ws="qvm-x-acl">cospiado:ra</AUni> -<AUni ws="qvm-x-akh">cospiado:ra</AUni> -<AUni ws="qvm-x-akl">cospiado:ra</AUni> -<AUni ws="qvm-x-ame">cospiado:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cospiadora</AUni> -<AUni ws="qvm-x-acl">+cospiadora</AUni> -<AUni ws="qvm-x-akh">+cospiadora</AUni> -<AUni ws="qvm-x-akl">+cospiadora</AUni> -<AUni ws="qvm-x-ame">+cospiadora</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.202" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="258a4628-53bf-4914-b378-363e78f7b7d2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cospiadora</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="23934c3d-229c-47b4-b679-27988bc667df" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="43a9a384-9c57-4480-9b6b-2b08cb39d770" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cospiadora 
\entryTyp root 
\gENG 
\gSPN 
\e +cospiadora 
\c N0 
\ach cospiado:ra 
\akh cospiado:ra 
\acl cospiado:ra 
\akl cospiado:ra 
\ame cospiado:ra 
\i HOS 10.11 Jacobpita miragcuna cospiadörata garachagnogmi cashga.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="84a56a35-dfc4-42b7-8d46-ca0730575b68" ownerguid="43d75b24-809e-44a7-a635-cb2edc31bd1d"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="84a817f1-0231-4d9e-8427-162a9b850f17"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">espa:da</AUni> -<AUni ws="qvm-x-acl">espa:da</AUni> -<AUni ws="qvm-x-akh">espa:da</AUni> -<AUni ws="qvm-x-akl">espa:da</AUni> -<AUni ws="qvm-x-ame">espa:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+espada</AUni> -<AUni ws="qvm-x-acl">+espada</AUni> -<AUni ws="qvm-x-akh">+espada</AUni> -<AUni ws="qvm-x-akl">+espada</AUni> -<AUni ws="qvm-x-ame">+espada</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.495" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2120d890-2ebd-4093-8043-7fc096fdb2dc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+espada</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4f172998-8a1e-4621-b88f-8e847b092a4b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e85c5d67-daf6-4058-b7b4-646853777ed9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +espada 
\entryTyp root 
\gENG sword 
\gSPN espada 
\e +espada 
\c N0 
\ach espa:da 
\akh espa:da 
\acl espa:da 
\akl espa:da 
\ame espa:da</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="84a8d541-9571-4ce9-abea-bd9cccb8dbf0" ownerguid="22acd714-b11e-462a-bd8e-6ff50843c103"> -<Abbreviation> -<AUni ws="en">6.5.2.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.458" /> -<DateModified val="2022-9-23 16:55:8.458" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the levels of a building.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Floor, story</AUni> -</Name> -<Questions> -<objsur guid="951c56b5-c6b9-41d7-944c-d28031f49a2f" t="o" /> -<objsur guid="5875fc62-82e0-4e7f-b7f6-da8ca74b12e3" t="o" /> -<objsur guid="ea95f953-6458-49a2-9561-8bee63cd7938" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="84ab146b-b10b-4290-b315-082cd4388c9c" ownerguid="9c4f821e-2dd3-4981-a024-96ba3c7ee477"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">prostitute</AUni> -<AUni ws="es">ramera</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8fa41a44-b4ad-4489-be15-79555b77b44d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="84ac4212-e3b7-499c-9eb7-cbd19a096ac6" ownerguid="dbf05a52-ffa6-4413-9ee8-c5be0da0e3d0"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="84accb9e-38d4-4395-b88e-5e9a229a29db" ownerguid="6866ee4c-78cd-47d1-ba4a-8461fdcc5e2a"> -<ExampleWords> -<AUni ws="en">logical, sound, rational, reasonable, well thought out, well-founded, make sense, hang together, coherent, add up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe thinking that is logical?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="84afa73b-f1cd-471b-ae3b-7f3887fd4589"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">listón; liston</AUni> -<AUni ws="qvm-x-acl">listón; liston</AUni> -<AUni ws="qvm-x-akh">listón; liston</AUni> -<AUni ws="qvm-x-akl">listón; liston</AUni> -<AUni ws="qvm-x-ame">listón; liston</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+listón</AUni> -<AUni ws="qvm-x-acl">+listón</AUni> -<AUni ws="qvm-x-akh">+listón</AUni> -<AUni ws="qvm-x-akl">+listón</AUni> -<AUni ws="qvm-x-ame">+listón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.104" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e6915103-26eb-4fd6-8cac-441f3526cfcc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+listón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="74af24ed-1128-45fc-9a44-eafcc860ccba" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="381d9a6d-c6b3-4b62-a1f6-a2a7c66fce66" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +listón 
\entryTyp root 
\gENG 
\gSPN 
\e +listón 
\c N0 
\mp +FinalC 
\ach listón / _# 
\ach liston / ~_# 
\akh listón / _# 
\akh liston / ~_# 
\acl listón / _# 
\acl liston / ~_# 
\akl listón / _# 
\akl liston / ~_# 
\ame listón / _# 
\ame liston / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="84b26be1-8c7b-42d3-94a8-c8eb1965f975" ownerguid="136b4d64-de79-48b9-8014-8bf9ac7b6d41"> -<Form> -<AUni ws="qvm-x-ach">corrienti; corriente</AUni> -<AUni ws="qvm-x-acl">corrienti; corrienti; corriente</AUni> -<AUni ws="qvm-x-akh">corrienti; corriente</AUni> -<AUni ws="qvm-x-akl">corrienti; corrienti; corriente</AUni> -<AUni ws="qvm-x-ame">corrienti; corriente</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="84b6239a-3aa8-4a5c-99e6-506cf68a2ad8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">zo:rru</AUni> -<AUni ws="qvm-x-acl">zo:rru; zo:rru; zo:rro</AUni> -<AUni ws="qvm-x-akh">zo:rru</AUni> -<AUni ws="qvm-x-akl">zo:rru; zo:rru; zo:rro</AUni> -<AUni ws="qvm-x-ame">zo:rru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+zorro</AUni> -<AUni ws="qvm-x-acl">+zorro</AUni> -<AUni ws="qvm-x-akh">+zorro</AUni> -<AUni ws="qvm-x-akl">+zorro</AUni> -<AUni ws="qvm-x-ame">+zorro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.818" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="77739cc2-48df-4f84-89ef-bb672fa6b95e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+zorro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0f1cd745-0def-4941-84e2-4c035a69f529" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cc5814bb-37e0-481c-8ff7-aad58c4d463a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +zorro 
\entryTyp root 
\gENG fox 
\gSPN zorrillo 
\e +zorro 
\c N0 
\ach zo:rru 
\akh zo:rru 
\acl zo:rru / _# 
\acl zo:rru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl zo:rro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl zo:rru / _# 
\akl zo:rru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl zo:rro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame zo:rru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="84c0d211-d8b5-43db-89ba-207123efad9e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">paypa</AUni> -<AUni ws="qvm-x-acl">paypa</AUni> -<AUni ws="qvm-x-akh">paypa</AUni> -<AUni ws="qvm-x-akl">paypa</AUni> -<AUni ws="qvm-x-ame">paypa</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.477" /> -<DateModified val="2022-10-16 15:16:43.815" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ef8aa2fa-1fcd-42c5-b5e9-7103eb66cd96" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">ADV4</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="343b8dc5-eec2-4cec-b5df-a2909c950e5c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4e032802-6d9d-4487-a85c-eb92f2c7d05e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx ADV4 
\entryTyp suffix 
\gENG ADV4 
\gSPN ADV4 
\e ADV4 
\c N0/R0 
\o 220 
\mp -PMonophthongized 
\ach paypa 
\akh paypa 
\acl paypa 
\akl paypa 
\ame paypa 
\mcc ADV4 / GOAL _ / +razón _ 
\mcc ADV4 / [poss] ~_</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="84c0f2c5-bde6-41da-b409-6fbd2fd370d4" ownerguid="cb2d461b-e205-4c20-8a53-00abb5b008f8"> -<Form> -<AUni ws="qvm-x-ach">achachau</AUni> -<AUni ws="qvm-x-acl">achachau</AUni> -<AUni ws="qvm-x-akh">achachaw</AUni> -<AUni ws="qvm-x-akl">achachaw</AUni> -<AUni ws="qvm-x-ame">achachaw</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="84c11985-8932-4ef9-a573-ebf5dda15485" ownerguid="06a85def-ee0a-4d63-bfa8-62a21bcf06b0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hang</AUni> -<AUni ws="es">colgar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c8acadff-590d-4f6a-81c5-39f5804537de" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="84c19760-7b0f-44c3-aaf2-81ad21145214" ownerguid="04752883-aa3e-42a2-bd42-454e9cd99b11"> -<ExampleWords> -<AUni ws="en">from the results I would say...</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) inference from results: the speaker infers the situation described from the evidence at hand (i.e. from the observable results of the causing event/action.)</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="84c1f200-c8bd-4446-8c2c-96e23a8e5fa5" ownerguid="e8204323-0906-4533-a3ce-32bb20540db2"> -<Form> -<AUni ws="qvm-x-ach">pucu</AUni> -<AUni ws="qvm-x-acl">pucu; pucu; puco</AUni> -<AUni ws="qvm-x-akh">puku</AUni> -<AUni ws="qvm-x-akl">puku; puku; puko</AUni> -<AUni ws="qvm-x-ame">puku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="84c30ada-27ae-47a5-9879-928348796150" ownerguid="ba3dfe4c-7db2-40f0-8994-eb010001f6c7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="84c3b0ad-3fd8-4e4e-a2d1-a2051f61db4b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">segurida; segurida:</AUni> -<AUni ws="qvm-x-acl">segurida; segurida:</AUni> -<AUni ws="qvm-x-akh">segurida; segurida:</AUni> -<AUni ws="qvm-x-akl">segurida; segurida:</AUni> -<AUni ws="qvm-x-ame">segurida; segurida:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+seguridad</AUni> -<AUni ws="qvm-x-acl">+seguridad</AUni> -<AUni ws="qvm-x-akh">+seguridad</AUni> -<AUni ws="qvm-x-akl">+seguridad</AUni> -<AUni ws="qvm-x-ame">+seguridad</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.521" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="af16bde8-0892-4347-847e-8c4917fa4c27" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+seguridad</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c72acc96-e74d-41b0-9235-4ff34c1efbdb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="932df64d-e748-4495-b73d-d742920e9bac" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +seguridad 
\entryTyp root 
\gENG security 
\gSPN seguridad 
\e +seguridad 
\c N0 
\mp +FinalC 
\mp +underlong 
\ach segurida foreshortened 
\ach segurida: 
\mp +underlong 
\akh segurida foreshortened 
\akh segurida: 
\acl segurida foreshortened 
\acl segurida: 
\akl segurida foreshortened 
\akl segurida: 
\mp +underlong 
\ame segurida foreshortened 
\ame segurida: 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="84c4c444-ce7e-4d27-9b4c-efd6ef0a4976" ownerguid="339ee46b-d69a-4f2e-8fba-d1b2adff763b"> -<ExampleWords> -<AUni ws="en">be generous, be kind, be gracious, be charitable, generosity, charity, charitable giving</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being generous?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="84c7c7f0-dc57-4bfa-97bb-44970b5e58d6" ownerguid="39dcb6b9-94df-45be-a128-c14c7a9dcdbd"> -<ExampleWords> -<AUni ws="en">feel sick, queasy, nausea, be going to be sick, nauseated, nauseous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe how you feel when your stomach is sick?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="84c910de-b5d6-4e23-84ff-2c8b703ae5a9" ownerguid="d01f1c51-522e-4b35-81b3-00577dbfa3bd"> -<ExampleWords> -<AUni ws="en">dull, faded, washed out, drab, dingy, flushed, clouded, grayish, somber</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that is a dull color?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="84ca0cf6-9ab8-4b01-a582-180b4ffa4a05" ownerguid="35e61ec4-0542-4583-b5da-0aa5e31a35aa"> -<ExampleWords> -<AUni ws="en">labor, birth, first breath, tie the umbilical cord, cut the umbilical cord</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What are the steps or stages in giving birth?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="84cfaa97-61c5-4bfd-8588-bec04dc9091f" ownerguid="9f3b4cab-dc8a-430e-88f3-d3002df64fb8"> -<ExampleWords> -<AUni ws="en">posture, stance, pose, position</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to a person's posture?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="84d06ef9-78e4-4107-a6b3-e86fbdb73d59" ownerguid="1cd96bb9-acf2-4050-8c18-b9d3196a0623"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="84d1f467-98cf-49c1-a6c7-fab9f31d0efd" ownerguid="4acc430b-9c98-4a49-a8b4-15edc0f6d19b"> -<ExampleWords> -<AUni ws="en">tidy, tidy up, clean up, clear up, straighten, straighten up, get the place straight, put something straight, put something in order, put something away</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to making something tidy?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="84d403bb-9d58-4555-9a64-29f284a5a45f" ownerguid="dc1a2c6f-1b32-4631-8823-36dacc8cb7bb"> -<ExampleWords> -<AUni ws="en">bright, intense, brilliant, blinding, glaring, glistening, luminous, dim</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe the brightness of the sun?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="84d67c87-86ff-4e71-8a26-abe048132f8f" ownerguid="6b8366b9-b5e8-42b8-991c-c568d4442a81"> -<Abbreviation> -<AUni ws="en">5.4.3.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.327" /> -<DateModified val="2022-9-23 16:55:8.327" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to shaving.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Shave</AUni> -</Name> -<Questions> -<objsur guid="0bae08f4-e529-4c66-a227-a697141360b8" t="o" /> -<objsur guid="3e8c2e51-4c0e-4adc-8166-d6a6fc39edd3" t="o" /> -<objsur guid="b3a2feb1-b95f-4014-bcdf-323fb3f8bf71" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="84d8cfe1-50da-4228-a0fc-d883a818f7a5" ownerguid="8684b125-b27f-4710-a39c-dde870d8fe34"> -<Form> -<AUni ws="qvm-x-ach">castiga</AUni> -<AUni ws="qvm-x-acl">castiga</AUni> -<AUni ws="qvm-x-akh">castiga</AUni> -<AUni ws="qvm-x-akl">castiga</AUni> -<AUni ws="qvm-x-ame">castiga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="84d9cff2-830f-4383-a3eb-42f5c29bd281"> -<Analyses> -<objsur guid="e5ccc991-1171-408f-8862-e3f8d73d59f6" t="o" /> -</Analyses> -<Checksum val="781222142" /> -<Form> -<AUni ws="qvm-x-akh">warmita</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="84da4fa1-d846-4f84-9491-57ed917c715b" ownerguid="98f9ceff-e8a2-4e24-abc4-561b80bb5889"> -<ExampleWords> -<AUni ws="en">preserve, put up, treat, conserve, maintain, keep up, sustain, take care of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to preserving something from decay?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="84db17f9-8259-488e-99c0-10c7c3639d7a" ownerguid="adc91699-7e9d-410e-a513-5f24cff284bd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="84dd2027-6840-4fd5-80bf-e6eecc3e6b3b" ownerguid="6bcaf8ff-3006-4246-847c-9673a999e808"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="9d098db5-6637-49b9-b3ca-ded5f7b76c3b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="84e070ab-1fb1-42d7-a65d-e9cd91381e9b" ownerguid="de2b3307-d9e6-480f-87f4-fcad615bc3de"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">crook</AUni> -<AUni ws="es">gancho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="50bfd2d4-94fd-41c6-a647-ce9dcbb36825" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="84e3cdd2-d9ce-4f33-99b4-cf478bf23689"> -<Analyses> -<objsur guid="28de12ca-087c-41e3-ba04-c6f8b460db46" t="o" /> -<objsur guid="f7fcd1ee-4863-4a86-ad9d-3b2c9e444010" t="o" /> -</Analyses> -<Checksum val="-1521890241" /> -<Form> -<AUni ws="qvm-x-akh">yarparan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="84e4ae9e-c0c2-4be7-a55f-8c4ef3685756" ownerguid="c33687dc-229a-4a5c-98f2-642d79a82f29"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="84e7280c-bad4-4a29-b559-314dc805ea05" ownerguid="0ee5b933-f1ab-485f-894a-51fe239cb726"> -<ExampleWords> -<AUni ws="en">acacia, alder, almond, apple, apricot, ash, aspen, avocado, azalea, balsa, balsam, banyan, bayberry, beech, betel nut, birch, blackberry, blueberry, box, boxwood, Brazil, breadfruit, broom, camellia, cashew, cassia, catalpa, cedar, cherry, chestnut, chinaberry, cinchona, cinnamon, citron, citrus, clove, coca, coconut, coffee, cornel, cottonwood, cranberry, currant, cypress, date, dogwood, ebony, elder, elm, eucalyptus, fig, fir, forsythia, gardenia, ginkgo, grapefruit, guava, gum, hawthorn, hazel, hazelnut, hemlock, henna, hickory, ironwood, juniper, jute, kumquat, laburnum, larch, laurel, lemon, lignum, lilac, lime, linden, litchi, locust, magnolia, mahogany, mango, mangrove, manzanita, maple, marijuana, mesquite, mimosa, mistletoe, mulberry, myrtle, nutmeg, oak, oleander, olive, orange, papaw, papaya, peach, pear, pecan, persimmon, pine, pistachio, plane, plum, poinciana, pomegranate, poplar, quince, redwood, rosewood, sandalwood, sapling, sassafras, satinwood, saxifrage, scrub, senna, sequoia, sisal, spruce, spurge, stinkwood, sumac, sycamore, tamarack, tamarind, tamarisk, tangerine, teak, upas, walnut, willow, yew, ylang-ylang</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What types of trees are there?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="84e892b9-f53c-4c3c-a3e0-b7b8adefb0e2" ownerguid="d8f2f873-fa4c-411b-a91e-7ccbcc7a33ce"> -<Form> -<AUni ws="qvm-x-ach">ogti</AUni> -<AUni ws="qvm-x-acl">ogti; ogte</AUni> -<AUni ws="qvm-x-akh">oqti</AUni> -<AUni ws="qvm-x-akl">oqti; oqte</AUni> -<AUni ws="qvm-x-ame">uqti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="84eb31d3-b932-4b3b-b945-85884ea856c7" ownerguid="3ea4c495-b837-4310-8741-38d89fa63e0b"> -<Abbreviation> -<AUni ws="en">9.4.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.700" /> -<DateModified val="2022-9-23 16:55:8.700" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that a speaker uses to indicate that he thinks something is probable or likely to occur.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>71B Probable, Improbable</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Probably</AUni> -</Name> -<Questions> -<objsur guid="b90a8ac4-8740-42e5-a210-10ba1fa73fe3" t="o" /> -<objsur guid="cad52405-7f17-499a-9aa7-0e5d5aaf4fbe" t="o" /> -<objsur guid="85432636-b948-4c10-80d5-c67f6fdb2f97" t="o" /> -<objsur guid="70b891d6-9735-4ed6-9dc4-22e8f9781e6e" t="o" /> -<objsur guid="0b1a8e31-81bb-48e4-8b37-1b0f1dba5a1d" t="o" /> -<objsur guid="3511a980-6e73-4712-b8be-eb5dfc5522c5" t="o" /> -<objsur guid="ff03d695-2113-4e2c-85c9-acf51166b86d" t="o" /> -<objsur guid="75c4cf6f-e675-40e9-a2a0-17463f186841" t="o" /> -<objsur guid="7d6c8dd9-4c23-4d72-b89a-0a2c9850364e" t="o" /> -<objsur guid="edac14ad-a39d-4f78-aa57-32fc16348769" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoAffixAllomorph" guid="84ebfb93-4f87-44cf-be19-9cb24f246abd" ownerguid="b5de92e2-0771-4446-b076-19342b7cc6cd"> -<Form> -<AUni ws="qvm-x-ach">shayqui</AUni> -<AUni ws="qvm-x-acl">shayqui</AUni> -<AUni ws="qvm-x-akh">shayki</AUni> -<AUni ws="qvm-x-akl">shayki</AUni> -<AUni ws="qvm-x-ame">shayki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="84ed9421-f259-4131-b9aa-a4c55e8dc4ae" ownerguid="8439c4da-3e3a-4949-9ea2-56c9fef05b83"> -<Form> -<AUni ws="qvm-x-ach">secretariu; secretario</AUni> -<AUni ws="qvm-x-acl">secretariu; secretariu; secretario</AUni> -<AUni ws="qvm-x-akh">secretariu; secretario</AUni> -<AUni ws="qvm-x-akl">secretariu; secretariu; secretario</AUni> -<AUni ws="qvm-x-ame">secretariu; secretario</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="84ee6296-6f43-4d83-8777-caf8d1d52ac0" ownerguid="a3d95c6a-4b0b-4af0-aca8-addd042becd2"> -<ExampleWords> -<AUni ws="en">toy, doll, plaything, bauble, puzzle, kite, ball, top, trifle, trinket, stilts, jump rope</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the things people play with?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="84f114a6-c863-4c4b-a49a-28601c22f9c5" ownerguid="df2b9d7a-9b90-4704-8bc3-11dcffe985f4"> -<ExampleWords> -<AUni ws="en">line, wrinkle, fold, crease</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a line in the skin?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="84f4ed72-3d6f-44be-b2cb-0decd7ec2c0c" ownerguid="093eeea2-4ff6-4ee8-ad05-8af1702b7246"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">He <made> me angry.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">produce, cause to be, make to be, make, make into, result in, bring upon, bring about</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used of causing or producing a state?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="84f51fe0-8945-43fc-b837-167eecb147d2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wiya</AUni> -<AUni ws="qvm-x-acl">wiya</AUni> -<AUni ws="qvm-x-akh">wiya</AUni> -<AUni ws="qvm-x-akl">wiya</AUni> -<AUni ws="qvm-x-ame">wiya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wiya</AUni> -<AUni ws="qvm-x-acl">*wiya</AUni> -<AUni ws="qvm-x-akh">*wiya</AUni> -<AUni ws="qvm-x-akl">*wiya</AUni> -<AUni ws="qvm-x-ame">*wiya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.709" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="910447aa-6e7c-4286-a8fe-da6bd5024f59" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wiya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9b8c273a-4c6b-481a-929b-f808852f515b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e8337e5f-0a6c-4528-a16a-3f3966e24fa8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wiya 
\entryTyp root 
\gENG 
\gSPN escuchar 
\e *wiya 
\c V2 
\ach wiya 
\akh wiya 
\acl wiya 
\akl wiya 
\ame wiya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="84f66b44-9e2b-40dc-b424-054809b58c37" ownerguid="349937e3-a2fd-41f8-b7c4-bd6fa106add4"> -<ExampleWords> -<AUni ws="en">heavy rains, experience torrential rains, el Niño</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a time when there is too much rain?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="84f79788-dd5c-4ce6-808d-8f23d8c713c0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yanagui</AUni> -<AUni ws="qvm-x-acl">yanagui; yanagui; yanague</AUni> -<AUni ws="qvm-x-akh">yanaqi</AUni> -<AUni ws="qvm-x-akl">yanaqi; yanaqi; yanaqe</AUni> -<AUni ws="qvm-x-ame">yanaqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yanaqi</AUni> -<AUni ws="qvm-x-acl">*yanaqi</AUni> -<AUni ws="qvm-x-akh">*yanaqi</AUni> -<AUni ws="qvm-x-akl">*yanaqi</AUni> -<AUni ws="qvm-x-ame">*yanaqi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.729" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a48bf643-d3a9-49c3-bedd-691babcd9044" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yanaqi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f5339155-f3a6-477f-bba3-ce29733b0d14" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0e2f08d7-f459-4567-b92b-2c9898bbed20" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yanaqi 
\entryTyp root 
\gENG companion 
\gSPN compañero 
\e *yanaqi 
\c N0 
\mp +FinalI 
\ach yanagui 
\akh yanaqi 
\acl yanagui / _# 
\acl yanagui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl yanague +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yanaqi / _# 
\akl yanaqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl yanaqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame yanaqi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="850011ac-dc2f-4482-b0e5-ea7ac45c06ef" ownerguid="bfa3be74-0390-4e2e-bdb7-ed41eb67e4f1"> -<ExampleWords> -<AUni ws="en">umbrella, raincoat, boot</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What do people use to protect themselves from the rain?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="85014e53-df38-4691-8905-8ef355d481f8" ownerguid="54565093-6c68-42e0-9b85-bfc6cbcde72c"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="8503473d-f3a2-44cc-8f89-952e4ee4cf5b" ownerguid="8884616f-14e9-4f6b-b4b1-b13bbded971d"> -<Form> -<AUni ws="qvm-x-ach">sarta</AUni> -<AUni ws="qvm-x-acl">sarta</AUni> -<AUni ws="qvm-x-akh">sarta</AUni> -<AUni ws="qvm-x-akl">sarta</AUni> -<AUni ws="qvm-x-ame">sarta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="8503660c-03af-49ee-86b6-525aab4da828" ownerguid="38bbb33a-90bf-4a2c-a0e5-4bde7e134bd9"> -<Abbreviation> -<AUni ws="en">2.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.32" /> -<DateModified val="2022-9-23 16:55:8.32" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to hearing something (in general or without conscious choice).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>24B Hear</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Hear</AUni> -</Name> -<Questions> -<objsur guid="1f068f84-0949-4b94-b724-6f53acb1675f" t="o" /> -<objsur guid="68d18bbd-f95d-43bd-bddb-685200ca7cb2" t="o" /> -<objsur guid="143b6c58-9179-41a0-8dbd-c040f3feb62d" t="o" /> -<objsur guid="71cdc423-65bd-43ef-9001-04fd7e51a5b9" t="o" /> -<objsur guid="e325e956-0b4f-4b8a-9858-f5ba78e46079" t="o" /> -<objsur guid="09e4fba8-ea8a-4dbf-a505-eed70e2d2000" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="3be7e3fe-89d4-471a-92bd-8c70fcb146bb" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="0de28f92-c851-413c-bb6c-3ad21f5e267f" t="o" /> -<objsur guid="acf5e294-d169-45c1-a9d3-960536e018cc" t="o" /> -<objsur guid="fd33670e-ef16-4566-a62e-aa077e58407b" t="o" /> -<objsur guid="6804db44-b71b-4452-98b1-b726bc7cf022" t="o" /> -<objsur guid="d853597b-f3ed-470b-b6dd-8fe93b8e43eb" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="85122d05-7218-4e5b-9b5c-151961b1007d" ownerguid="78699c92-e4f1-4160-b3f6-382bd509379a"> -<Form> -<AUni ws="qvm-x-ach">pargu</AUni> -<AUni ws="qvm-x-acl">pargu; pargo</AUni> -<AUni ws="qvm-x-akh">parqu</AUni> -<AUni ws="qvm-x-akl">parqu; parqo</AUni> -<AUni ws="qvm-x-ame">parqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="851413bf-5eb7-4230-b034-e9178b5925bc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sengaypa</AUni> -<AUni ws="qvm-x-acl">sengaypa</AUni> -<AUni ws="qvm-x-akh">senqaypa</AUni> -<AUni ws="qvm-x-akl">senqaypa</AUni> -<AUni ws="qvm-x-ame">sinqaypa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*sinqaypa</AUni> -<AUni ws="qvm-x-acl">*sinqaypa</AUni> -<AUni ws="qvm-x-akh">*sinqaypa</AUni> -<AUni ws="qvm-x-akl">*sinqaypa</AUni> -<AUni ws="qvm-x-ame">*sinqaypa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.683" /> -<DateModified val="2022-10-10 21:18:47.203" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a674d5e0-a379-4809-8c5c-927395ffeed6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*sinqaypa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2247cb98-7939-4a30-8a5b-be3d47bda694" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="40f0de76-229c-4c52-86bd-25c602ec50d1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *sinqaypa 
\entryTyp root 
\gENG 
\gSPN 
\e *sinqaypa 
\c R0 
\ach sengaypa 
\akh senqaypa 
\acl sengaypa 
\akl senqaypa 
\ame sinqaypa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="85146c09-6e4c-4e92-a8f4-0f1643ce6407" ownerguid="d16e4de3-696d-4414-82cf-fec2568fefeb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="2c80b148-d950-42f3-bd9f-c2202aefc0be" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="85188748-1919-4210-a9e9-91171d9d6454" ownerguid="73499b8b-76fc-4121-8bfa-1bdebe537259"> -<Abbreviation> -<AUni ws="en">1.6.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.994" /> -<DateModified val="2022-9-23 16:55:7.994" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for fish (phylum Chordata, class Osteichthyes).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>4E Fishes and Other Sea Creatures</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Fish</AUni> -</Name> -<OcmCodes> -<Uni>136j Fish and Mollusk</Uni> -</OcmCodes> -<Questions> -<objsur guid="69dcf4b6-4c61-4669-8d9d-a28d1492889f" t="o" /> -<objsur guid="96132d39-a4e4-4393-afe9-72772bc7c668" t="o" /> -<objsur guid="37cd04ad-6e4d-4df6-a52d-a7153fb42334" t="o" /> -<objsur guid="0b26e11b-acf0-43fe-b098-40ba159083bb" t="o" /> -<objsur guid="92e23ca0-ae2f-4659-9c6c-28d6e85b2244" t="o" /> -<objsur guid="f548905d-6330-4d40-94be-dc9e9627009d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="85191525-f6a5-404a-9b1a-e4d91b1021a5" ownerguid="72274e9d-5d3c-4ae7-93ab-db3617cdda1e"> -<ExampleWords> -<AUni ws="en">pain, itch, irritation, tickle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to a bad feeling?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="851d9ccc-2a49-4ef0-947f-dd6f5e91b410"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jagchu</AUni> -<AUni ws="qvm-x-acl">jagchu; jagchu; jagcho</AUni> -<AUni ws="qvm-x-akh">jaqchu</AUni> -<AUni ws="qvm-x-akl">jaqchu; jaqchu; jaqcho</AUni> -<AUni ws="qvm-x-ame">haqchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*haqtru</AUni> -<AUni ws="qvm-x-acl">*haqtru</AUni> -<AUni ws="qvm-x-akh">*haqtru</AUni> -<AUni ws="qvm-x-akl">*haqtru</AUni> -<AUni ws="qvm-x-ame">*haqtru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.680" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3b106c51-5bc1-4da6-b822-2a095c2e3bc9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*haqtru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6fbd5fd1-6400-4623-ba57-aca22b5f6cf8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="748f33b4-9ba5-4f19-9a43-09eeca3068f5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *haqtru 
\entryTyp root 
\gENG spit.coca 
\gSPN coca.masticado 
\e *haqtru 
\c N0 
\ach jagchu 
\akh jaqchu 
\acl jagchu / _# 
\acl jagchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl jagcho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jaqchu / _# 
\akl jaqchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl jaqcho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame haqchu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="851de080-4de0-4575-b8d6-5bc1784cab07"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">oga</AUni> -<AUni ws="qvm-x-acl">oga</AUni> -<AUni ws="qvm-x-akh">oqa</AUni> -<AUni ws="qvm-x-akl">oqa</AUni> -<AUni ws="qvm-x-ame">uqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uqa</AUni> -<AUni ws="qvm-x-acl">*uqa</AUni> -<AUni ws="qvm-x-akh">*uqa</AUni> -<AUni ws="qvm-x-akl">*uqa</AUni> -<AUni ws="qvm-x-ame">*uqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.251" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="55e057c2-e72d-40f5-b02e-a52826ef3e97" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="88cb3568-feb0-4160-a7b1-ffaa28464cd7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8dbb89b0-f615-4725-82a8-115a2aeb9a74" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uqa 
\entryTyp root 
\gENG tuber 
\gSPN oca 
\e *uqa 
\c N0 
\ach oga 
\akh oqa 
\acl oga 
\akl oqa 
\ame uqa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="851e4059-edab-45da-aa33-7ee5c994b2f9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">oshgu</AUni> -<AUni ws="qvm-x-acl">oshgu; oshgu; oshgo</AUni> -<AUni ws="qvm-x-akh">oshqu</AUni> -<AUni ws="qvm-x-akl">oshqu; oshqu; oshqo</AUni> -<AUni ws="qvm-x-ame">ushqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ushqu</AUni> -<AUni ws="qvm-x-acl">*ushqu</AUni> -<AUni ws="qvm-x-akh">*ushqu</AUni> -<AUni ws="qvm-x-akl">*ushqu</AUni> -<AUni ws="qvm-x-ame">*ushqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.292" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5eded5f8-424a-481f-aeae-105fac5a91fa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ushqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0fd32670-7c3c-471b-bf92-e0759c17c48b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c252cc0f-8b8c-4b9c-93a2-b83b4474c43a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ushqu 
\entryTyp root 
\gENG clear 
\gSPN claro 
\e *ushqu 
\c N0 
\ach oshgu 
\akh oshqu 
\acl oshgu / _# 
\acl oshgu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl oshgo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl oshqu / _# 
\akl oshqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl oshqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ushqu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="85214614-ab45-4805-9014-092750d47511" ownerguid="87bd0d45-8a94-41cb-9864-90d53a11a4b9"> -<Abbreviation> -<AUni ws="en">4.7.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the legal process.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>56D Judicial Hearing, Inquiry</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Trial</AUni> -</Name> -<OcmCodes> -<Uni>691 Litigation; 690 Justice; 692 Judicial Authority; 693 Legal and Judicial Personnel; 694 Initiation of Judicial Proceedings; 695 Trial Procedure; 696 Execution of Justice</Uni> -</OcmCodes> -<Questions> -<objsur guid="32186e12-0ce0-4b08-a6de-10d87b525d91" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="e10b9449-08a3-4c13-aff2-31486749b62f" t="o" /> -<objsur guid="67d74de1-33f9-4d39-8fa5-5dd27e7cd1d1" t="o" /> -<objsur guid="fa660c9d-8787-4335-8744-3dbc139b2df1" t="o" /> -<objsur guid="e83586c6-8d8e-4a23-bdda-a1731a5ece22" t="o" /> -<objsur guid="ca511a0c-5628-4726-8a6e-aa9fa3b73bfc" t="o" /> -<objsur guid="70963c34-dd34-40c2-bb21-e9cea73c7923" t="o" /> -<objsur guid="59d19623-0f3b-484d-96eb-a9093b020c8d" t="o" /> -<objsur guid="2cd48908-8f12-4e0f-a22e-87237618ce9f" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="852335c0-3900-49e5-8717-136f53f3ed79"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nnin</AUni> -<AUni ws="qvm-x-acl">nnin; nnin; nnen</AUni> -<AUni ws="qvm-x-akh">nnin</AUni> -<AUni ws="qvm-x-akl">nnin; nnin; nnen</AUni> -<AUni ws="qvm-x-ame">nnin</AUni> -</Custom> -<AlternateForms> -<objsur guid="a95540e6-3238-4f49-a238-82fd682806d9" t="o" /> -<objsur guid="a6cc8fb2-2e41-4ede-9f72-8fd0b63bdb09" t="o" /> -</AlternateForms> -<DateCreated val="2022-9-23 18:26:20.578" /> -<DateModified val="2022-10-16 14:49:51.597" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="286e28ce-5753-4999-aea3-22d07bf32829" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">SUP.V</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="00740d5f-863f-4708-8c1c-58699413571e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9a0398ad-d21e-40d7-8e98-5154e012ee3b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx SUP.V 
\entryTyp suffix 
\gENG SUP.V 
\gSPN SUP.V 
\e SUP.V 
\c N0/N0 N1/N0 
\o 020 
\mp +FinalC 
\ach nnin 
\akh nnin 
\acl nnin / _# 
\acl nnin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl nnen +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl nnin / _# 
\akl nnin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl nnen +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame nnin 
\mp +foreshortens 
\mcc SUP.V {+FinalC} ~_ 
\mcc SUP.V / [TakeSUP] ..._</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="852835f5-7397-45bf-b139-dd31d8ab63c9" ownerguid="64e41545-3a0a-4524-a8d4-8e5e0f0e2391"> -<ExampleWords> -<AUni ws="en">turn out, put out, turn down, switch off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to making a light stop working?</AUni> -</Question> -</rt> -<rt class="WfiGloss" guid="852b390a-04c7-4ffa-97e4-072ebffa88e9" ownerguid="99294b5b-feef-4b5b-ad6e-9482505569bb"> -<Form> -<AUni ws="en">you get better</AUni> -</Form> -</rt> -<rt class="CmDomainQ" guid="852bd375-4805-4a25-9860-f4ee37ba3717" ownerguid="28ba8f5c-5baa-4500-a6f5-be292caa673f"> -<ExampleWords> -<AUni ws="en">disobedient, law breaking, unsubmissive, rebellious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a person who disobeys?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="852feca6-c302-4f36-a072-5c0034f8c60d" ownerguid="5f1fb292-66d5-4344-a395-a1ba2dff6bc8"> -<Form> -<AUni ws="qvm-x-ach">venënu</AUni> -<AUni ws="qvm-x-acl">venënu; venënu; venëno</AUni> -<AUni ws="qvm-x-akh">venënu</AUni> -<AUni ws="qvm-x-akl">venënu; venënu; venëno</AUni> -<AUni ws="qvm-x-ame">venënu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="85310f35-ab47-4159-a3f3-8ed6594b765b" ownerguid="7f7fc197-5064-43c0-af51-2919fb7355c9"> -<ExampleWords> -<AUni ws="en">connect, link, associate, make a connection, establish a link, establish a connection, relate, correlate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to showing that there is a connection between two things?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="85329c54-de67-4ec9-8ba8-7bd4c66a5c96"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gallau</AUni> -<AUni ws="qvm-x-acl">gallau; gallau; gallao</AUni> -<AUni ws="qvm-x-akh">qallaw</AUni> -<AUni ws="qvm-x-akl">qallaw; qallaw; qallao</AUni> -<AUni ws="qvm-x-ame">qallaw</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qallaw</AUni> -<AUni ws="qvm-x-acl">*qallaw</AUni> -<AUni ws="qvm-x-akh">*qallaw</AUni> -<AUni ws="qvm-x-akl">*qallaw</AUni> -<AUni ws="qvm-x-ame">*qallaw</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.65" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8d7194e2-6d63-4c0c-aafb-5b0999c00ff0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qallaw</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6e6b9c11-02b8-4141-be34-746030e737f5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e6171c0b-61c6-41a2-9b19-684869a736c3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qallaw 
\entryTyp root 
\gENG bamboo 
\gSPN ? 
\e *qallaw 
\c N0 
\mp +FinalC 
\ach gallau 
\akh qallaw 
\acl gallau / _# 
\acl gallau +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gallao +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qallaw / _# 
\akl qallaw +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qallao +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qallaw</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8533a67b-6f09-443c-8a39-4355317e3a28"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wishtu</AUni> -<AUni ws="qvm-x-acl">wishtu; wishtu; wishto</AUni> -<AUni ws="qvm-x-akh">wishtu</AUni> -<AUni ws="qvm-x-akl">wishtu; wishtu; wishto</AUni> -<AUni ws="qvm-x-ame">wishtu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wishtu.n</AUni> -<AUni ws="qvm-x-acl">*wishtu.n</AUni> -<AUni ws="qvm-x-akh">*wishtu.n</AUni> -<AUni ws="qvm-x-akl">*wishtu.n</AUni> -<AUni ws="qvm-x-ame">*wishtu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.688" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b3331545-d516-4a35-bf74-6ff9a52c0557" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wishtu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bd0f8292-8ad5-40bb-abc3-7976169236fc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="979661d3-f062-423b-92be-d351781eaf47" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wishtu.n 
\entryTyp root 
\gENG crooked 
\gSPN torcido 
\e *wishtu.n 
\c N0 
\ach wishtu 
\akh wishtu 
\acl wishtu / _# 
\acl wishtu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wishto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wishtu / _# 
\akl wishtu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl wishto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wishtu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="8533b1a4-10f1-4e59-bd1d-5b951a0f4164" ownerguid="37ff94b1-1ee9-4850-ae3c-c9477bf6f4e7"> -<Form> -<AUni ws="qvm-x-ach">cana</AUni> -<AUni ws="qvm-x-acl">cana</AUni> -<AUni ws="qvm-x-akh">kana</AUni> -<AUni ws="qvm-x-akl">kana</AUni> -<AUni ws="qvm-x-ame">kana</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="85365bee-34c2-4e5a-b7fc-07ebd7f4d439" ownerguid="cf728419-ef0e-4351-865c-7b76d404a9d5"> -<Form> -<AUni ws="qvm-x-ach">fïnu</AUni> -<AUni ws="qvm-x-acl">fïnu; fïnu; fïno</AUni> -<AUni ws="qvm-x-akh">fïnu</AUni> -<AUni ws="qvm-x-akl">fïnu; fïnu; fïno</AUni> -<AUni ws="qvm-x-ame">fïnu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="8536beab-56bb-4a82-8da7-ba29db3f3204" ownerguid="ec8f85f7-0c45-4350-a18d-4b595462fea3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">final</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">final</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">final</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">final</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">final</Run> -</AStr> -</Form> -<Morph> -<objsur guid="645540f1-1d32-4073-aa19-2391294d9594" t="r" /> -</Morph> -<Msa> -<objsur guid="25bff852-eb02-44d5-9869-68aa20f2266a" t="r" /> -</Msa> -<Sense> -<objsur guid="d379acc2-3633-4b13-af2f-5f545180feca" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="8537163d-9742-4c15-9e88-b9d2475735f9" ownerguid="8fed77b0-d483-4c2b-bfec-7c5bfbf3881b"> -<Form> -<AUni ws="qvm-x-ach">polvu; polvo</AUni> -<AUni ws="qvm-x-acl">polvu; polvu; polvo</AUni> -<AUni ws="qvm-x-akh">polvu; polvo</AUni> -<AUni ws="qvm-x-akl">polvu; polvu; polvo</AUni> -<AUni ws="qvm-x-ame">polvu; polvo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="853a65d1-ec3e-4d5c-9a2b-1ff85ee0218c" ownerguid="c6e181fc-c268-4a86-8822-306d3b9e34f6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">lapa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">lapa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">lapa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">lapa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">lapa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="0655d4c4-dcff-4fca-931a-8964415a96b4" t="r" /> -</Morph> -<Msa> -<objsur guid="b16d0818-05dc-49f7-8cdf-889b0be5517e" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="853b813d-62ea-4a45-bc47-829544a807b1" ownerguid="ff39e472-fc70-4848-86f0-53a17ba96f65"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="853cc092-7fd0-4ac1-9df3-09376e12c472" ownerguid="7495b59c-dcdc-4b45-80fb-049428e04995"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="b0519186-6a3b-4a56-9667-5c2c106ae471" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="854062f7-5bf7-487d-8ca5-783ec2a63f9d"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Gén</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="8542eae9-e549-4998-a6fa-225fbdc07ee0" ownerguid="2e5acfd2-3009-4496-9cc2-58d2a0088994"> -<ExampleWords> -<AUni ws="en">cowlick, crown</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe the direction hair grows on the head?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="85432636-b948-4c10-80d5-c67f6fdb2f97" ownerguid="84eb31d3-b932-4b3b-b945-85884ea856c7"> -<ExampleWords> -<AUni ws="en">very probably, very likely, there is a strong likelihood, there is a strong probability, almost certain, be more than likely, in all probability, ten to one</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that something is very probably true</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="85436de5-f06d-42b5-bd33-d4ae542cfb2e" ownerguid="6ce38366-3569-4f08-b6e6-adfa58202059"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1SA 18.4 Nircurnami Jonatánga Davidta goycorgan jatirashgan capötinta, espädanta, flëchanta y cinturonnintapis.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="854d2e66-e7cd-4acb-b208-14395b4b43e0" ownerguid="8ac7ed4d-5cd9-4952-b5ee-1c0979ddd96f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">peel</AUni> -<AUni ws="es">cáscara</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a825b2e5-a243-422f-adf6-b75e10a9929d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="854ec648-1c06-4b98-99ac-09fa6205879b" ownerguid="d502512c-966b-4752-8636-716fb29facfe"> -<ExampleWords> -<AUni ws="en">light sleep, doze, half asleep</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words are used of a light sleep?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="854fc92e-47dc-4edb-b5a8-d634962803d7" ownerguid="7fed6281-326a-4a15-8cbf-dc574594da19"> -<ExampleWords> -<AUni ws="en">concert, performance, rendition, recital, revue</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What is a musical event called?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8550e16c-7eb7-4861-925f-c71e72cecacb" ownerguid="6aa41eaa-b390-493f-9da2-be1e50d4e37c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spark</AUni> -<AUni ws="es">chispa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0149b8e9-11a8-4e01-b812-401027cd4e84" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="85514a36-a370-40c3-b181-080b6c2e41cc" ownerguid="de8a0885-39a4-494f-bf8f-736e609222eb"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8560714d-6545-4c44-88fa-64bf65853ea3" ownerguid="a3fe0ca2-64fe-44db-ac3f-14513385bc25"> -<ExampleWords> -<AUni ws="en">put to sleep, put to bed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words are used of someone causing someone to go to sleep?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8561c720-372c-472f-a871-15fd2585e4e1" ownerguid="41a0adc2-9949-4de7-afb7-335a653a6ce2"> -<Form> -<AUni ws="qvm-x-ach">ritangu</AUni> -<AUni ws="qvm-x-acl">ritango; ritangu; ritango</AUni> -<AUni ws="qvm-x-akh">ritanqu</AUni> -<AUni ws="qvm-x-akl">ritanqo; ritanqu; ritanqo</AUni> -<AUni ws="qvm-x-ame">ritanqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8562b03a-de13-4fed-bbd7-ee05d82cb818"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bautiza</AUni> -<AUni ws="qvm-x-acl">bautiza</AUni> -<AUni ws="qvm-x-akh">bautiza</AUni> -<AUni ws="qvm-x-akl">bautiza</AUni> -<AUni ws="qvm-x-ame">bautiza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bautizar</AUni> -<AUni ws="qvm-x-acl">+bautizar</AUni> -<AUni ws="qvm-x-akh">+bautizar</AUni> -<AUni ws="qvm-x-akl">+bautizar</AUni> -<AUni ws="qvm-x-ame">+bautizar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.949" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1e6d0e27-b4f1-43d5-bae7-b5994590f66e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bautizar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a6dab780-88fb-436e-99b9-6ad61822ca90" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d230190c-ac58-4cb6-87f3-192dbc9be083" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bautizar 
\entryTyp root 
\gENG baptize 
\gSPN bautizar 
\e +bautizar 
\c V2 
\ach bautiza 
\akh bautiza 
\acl bautiza 
\akl bautiza 
\ame bautiza</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8563e871-9fbc-437e-b2be-f9989199f760"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pucyu</AUni> -<AUni ws="qvm-x-acl">pucyu; pucyu; pucyo</AUni> -<AUni ws="qvm-x-akh">pukyu</AUni> -<AUni ws="qvm-x-akl">pukyu; pukyu; pukyo</AUni> -<AUni ws="qvm-x-ame">pukyu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pukyu</AUni> -<AUni ws="qvm-x-acl">*pukyu</AUni> -<AUni ws="qvm-x-akh">*pukyu</AUni> -<AUni ws="qvm-x-akl">*pukyu</AUni> -<AUni ws="qvm-x-ame">*pukyu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.990" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="370d84d9-ff8e-47a2-b631-c4463c66732c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pukyu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="36f468c6-e901-44de-8f42-48e94531e09a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ae6716eb-b0e5-4e96-a85e-f706393fe02e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pukyu 
\entryTyp root 
\gENG spring 
\gSPN manantial 
\e *pukyu 
\c N0 
\ach pucyu 
\akh pukyu 
\acl pucyu / _# 
\acl pucyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pucyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pukyu / _# 
\akl pukyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pukyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pukyu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="85646774-8145-4553-b8a7-6927cd077908" ownerguid="944cf5af-469e-4b03-878f-a05d34b0d9f6"> -<Abbreviation> -<AUni ws="en">1.6.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to groups of animals.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Animal group</AUni> -</Name> -<Questions> -<objsur guid="46763ee5-02e9-46ee-9d51-e8dae6cd06d8" t="o" /> -<objsur guid="1f6d7d09-716b-46a9-83fd-42099d90bfe5" t="o" /> -<objsur guid="8e63638e-142c-4b1e-9978-d4f4486e6100" t="o" /> -<objsur guid="7eb578d9-5405-4190-9e52-206710eb6758" t="o" /> -<objsur guid="297f0f67-5bca-49d8-ad5e-63007241f9fa" t="o" /> -<objsur guid="61e65ced-0550-4548-88df-58aba16e290f" t="o" /> -<objsur guid="ff561d68-ac7f-4837-aae1-e26712dd532d" t="o" /> -<objsur guid="6f6fcc18-3f9e-457c-ade1-c1d7dc30017e" t="o" /> -<objsur guid="165ac222-4741-4906-aaae-9810b043690c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="8565b10f-3371-4868-aff6-5038117bd7ee" ownerguid="1cb79293-d4f7-4990-9f50-3bb595744f61"> -<ExampleWords> -<AUni ws="en">mind, intellect, mental faculty, reason, reasoning, sense, thinking, thought, thoughts</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the part of a person that thinks and knows?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="85664ccd-7888-476f-b26f-27ec19d667a6" ownerguid="77b9bfa4-e806-406a-a1cf-779dffc5e18e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.knot</AUni> -<AUni ws="es">nudar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1ee17e07-0d29-4fd0-9838-4bc879945d44" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="856a2f92-2dec-4226-8589-d9301bf336d8" ownerguid="c849a559-cbc7-4b16-b7e7-8b8d19483c69"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="856aec03-6ec3-4cca-ad5d-59493f58d251" ownerguid="20d32230-184e-44e4-a123-703f7a0deb35"> -<Form> -<AUni ws="qvm-x-ach">ajayla</AUni> -<AUni ws="qvm-x-acl">ajayla</AUni> -<AUni ws="qvm-x-akh">ajayla</AUni> -<AUni ws="qvm-x-akl">ajayla</AUni> -<AUni ws="qvm-x-ame">ahayla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="856fcea1-b603-434f-8f4e-c82ed9d6e8b8" ownerguid="a105e31c-1268-4fc2-8655-838d34860ece"> -<ExampleWords> -<AUni ws="en">Atlantic Ocean, Pacific Ocean, Indian Ocean, Arctic Ocean, Mediterranean Sea</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the names of the oceans?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="856fd6b6-7327-4852-9d53-d872137d0b3a" ownerguid="3fb6e4bb-c608-4d3e-bd47-193a546b6c26"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yarpä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yarpä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yarpä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yarpä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yarpä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="15f7b62a-a17b-41ac-b56e-85186914954c" t="r" /> -</Morph> -<Msa> -<objsur guid="7440cecd-7493-4b9e-86fd-dbf27ad2bfed" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="8570f05c-a152-4117-9f54-4edfa9c06a32" ownerguid="bd7d0c9c-791e-4c34-b9ed-ebddad8f9724"> -<Abbreviation> -<AUni ws="en">4.7.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to something being someone's fault.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Fault</AUni> -</Name> -<Questions> -<objsur guid="e1d0e4ff-3db9-4b7c-bbfe-39688b7e61e0" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="c79d49f1-74ec-4dba-a5aa-5e861af63d05" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="85751096-e8d4-409a-8660-811c1b3f99bc" ownerguid="2a2af155-9db9-41c5-860a-fe0a3a09d6de"> -<ExampleWords> -<AUni ws="en">think about, brood, cogitate, consider, give consideration to, contemplate, meditate, muse, mull over, occupy your mind, ponder, reconsider, reflect, reflection, ruminate, speculate, study, weigh, wonder, go around in your mind, do some thinking, keep your mind on, have something on your mind, deduce, deduction, induction, inductive, logic, apply yourself, pay attention, bethink, conclude, observe, process, reason, theorize</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to thinking about something for a period of time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="857a247e-9b95-4284-ad69-061b709c55d9" ownerguid="30b3faa8-747e-465f-833a-a9957a259be2"> -<ExampleWords> -<AUni ws="en">separate, separation, scatter, disperse, dispersion, dispersal, spread out, spray, move apart, move away from each other, put space between, to space (things), space out, place at intervals, divide, division, blow apart, distribute, sow, strew, sift</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to separating or scattering things?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="857aab64-f05a-4ac3-840b-dd163e72a0c0" ownerguid="1860968e-a899-4e22-b1f1-34c74536d538"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="857c3d5d-7fda-4b92-8f6b-d60a4dc87cb2" ownerguid="4383b317-2430-4fa5-a40e-a43cbabb03fc"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="857e29f0-e73c-452d-9a08-a780593da810" ownerguid="32fbefe6-f63d-495d-a054-258d6ecf131d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="857ed72f-f2e9-42be-b917-ffdee7a2c084" ownerguid="2e4ce5bf-f891-48a2-acf7-498be8718921"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="85812c31-a6f3-4635-abfe-3119bda66a87" ownerguid="6ab060ca-ecfc-4a46-accb-42b0473998cd"> -<ExampleWords> -<AUni ws="en">link, connection, coupling, hookup, network, passageway</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the thing that links two things?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="858188d8-a065-4935-be65-2786d510e503"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fi:ju</AUni> -<AUni ws="qvm-x-acl">fi:ju; fi:ju; fi:jo</AUni> -<AUni ws="qvm-x-akh">fi:ju</AUni> -<AUni ws="qvm-x-akl">fi:ju; fi:ju; fi:jo</AUni> -<AUni ws="qvm-x-ame">fi:ju</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fijo</AUni> -<AUni ws="qvm-x-acl">+fijo</AUni> -<AUni ws="qvm-x-akh">+fijo</AUni> -<AUni ws="qvm-x-akl">+fijo</AUni> -<AUni ws="qvm-x-ame">+fijo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.548" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bb987a06-3fee-4686-b9e6-0098e6221e64" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fijo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d4182dfa-488f-4ef2-beae-b4cde64fdbaa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2f193b45-e3e4-4de7-b033-ccb525d16256" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fijo 
\entryTyp root 
\gENG 
\gSPN 
\e +fijo 
\c N0 
\ach fi:ju 
\akh fi:ju 
\acl fi:ju / _# 
\acl fi:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl fi:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl fi:ju / _# 
\akl fi:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl fi:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame fi:ju 
\i PRO 7.27 Paypa wayinman aywagcunaga fïjumi ushacan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8583bfe9-2f9c-4eb5-817c-ad98c5b05acb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">litsca; lichca</AUni> -<AUni ws="qvm-x-acl">litsca; lichca</AUni> -<AUni ws="qvm-x-akh">litska; lichka</AUni> -<AUni ws="qvm-x-akl">litska; lichka</AUni> -<AUni ws="qvm-x-ame">litska; lichka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llichka.v</AUni> -<AUni ws="qvm-x-acl">*llichka.v</AUni> -<AUni ws="qvm-x-akh">*llichka.v</AUni> -<AUni ws="qvm-x-akl">*llichka.v</AUni> -<AUni ws="qvm-x-ame">*llichka.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.194" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9947a4ec-6acb-4a1f-85ea-ba42e630ca41" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llichka.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a80099cd-6e7f-442c-9747-bd06091a4114" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="78e409af-8d96-4e25-9ee7-7163c3bbe180" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llichka.v 
\entryTyp root 
\gENG fertilize 
\gSPN abonar 
\e *llichka.v 
\c V1 
\cm *** ch *** 
\ach litsca 
\ach lichca 
\cm *** kh *** 
\akh litska 
\akh lichka 
\cm *** cl *** 
\acl litsca 
\acl lichca 
\cm *** kl *** 
\akl litska 
\akl lichka 
\cm *** me *** 
\ame litska 
\ame lichka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="8583ca92-ccc6-4543-b4d5-b14f49d77e8a" ownerguid="0c846b1b-058e-409b-bffe-fac4a8cdc81f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="9b796a42-1f77-4987-92bb-7989c2ecf948" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="8584176f-00b7-4b21-8f0e-54412fceaf13" ownerguid="3a5fac6d-5d82-419b-b358-f4ab54f8a44f"> -<Form> -<AUni ws="qvm-x-ach">pantalón; pantalon</AUni> -<AUni ws="qvm-x-acl">pantalón; pantalon</AUni> -<AUni ws="qvm-x-akh">pantalón; pantalon</AUni> -<AUni ws="qvm-x-akl">pantalón; pantalon</AUni> -<AUni ws="qvm-x-ame">pantalón; pantalon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="8589599f-3ef1-4df3-af4c-f885bed3da45" ownerguid="b24d098c-b6f0-411a-909d-6566b23f2d91"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="858af232-b570-4153-b4c0-f60930df9ced" ownerguid="1a635032-6e13-4a56-aa03-6c6a015c502e"> -<Abbreviation> -<AUni ws="en">9.4.4.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.700" /> -<DateModified val="2022-9-23 16:55:8.700" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that something seems to be a certain way--you see (or hear) something and think something about it, but you are not sure that what you think is true.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Seem</AUni> -</Name> -<Questions> -<objsur guid="6c101ec3-8fc7-4d4d-b763-c0a31d139e77" t="o" /> -<objsur guid="069f24f8-74cf-428b-b957-d5ff380dee06" t="o" /> -<objsur guid="b2897a27-9f71-40ac-9694-afedb67fd7ee" t="o" /> -<objsur guid="fd4831a4-1a15-48ff-847c-5e69c17bf184" t="o" /> -<objsur guid="71031d46-2384-46ac-a289-85fd6f040666" t="o" /> -<objsur guid="158b54b2-13ab-463a-9f07-767c7d253ee7" t="o" /> -<objsur guid="9f4f57ef-9418-40aa-ae4d-8cdaa5fce893" t="o" /> -<objsur guid="fa5b1ba1-3b02-4211-a3b0-904ac7cae79e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="858bff0d-463e-46d3-8a78-c3f69a2a4460" ownerguid="76a06e45-99f7-446f-a2e8-e23edf6064bd"> -<ExampleWords> -<AUni ws="en">eaten by insects, infested with termites, moth-eaten</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to something being eaten by insects?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="858d9bbd-814b-4c16-84db-2eaac3fda140" ownerguid="e7e5dbf2-6d5b-4869-b357-8a7860c29002"> -<ExampleWords> -<AUni ws="en">dilute, be diluted, add water, water down, thin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to adding more water to a solution?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="858e82f3-cc40-4dee-8adf-0dd3c5d16e67" ownerguid="99327483-571e-48ae-9194-e7f224067ffe"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="85912845-21b0-41eb-8b8c-1f5c3d53df08" ownerguid="f9d020d6-b129-4bb8-9509-3b4a6c27482e"> -<Abbreviation> -<AUni ws="en">3.4.1.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.133" /> -<DateModified val="2022-9-23 16:55:8.133" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling enthusiastic--to feel very good because you want to do something or you want something to happen.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25F Be Eager, Be Earnest, In a Devoted Manner</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Enthusiastic</AUni> -</Name> -<Questions> -<objsur guid="e6462f47-6573-4486-8059-658b28d0464c" t="o" /> -<objsur guid="7b676e1f-b9bf-411f-86ca-95494e48db53" t="o" /> -<objsur guid="d486bc02-7057-4f3c-bb2c-b9ea30fb8d1c" t="o" /> -<objsur guid="8c2d5579-0424-495f-a4f0-73b221dcde73" t="o" /> -<objsur guid="13351605-1d0a-41ba-8702-79c043f6f23e" t="o" /> -<objsur guid="45314d39-6e72-4f79-b16f-1cf54d0f46c2" t="o" /> -<objsur guid="18716470-684f-47eb-8fc6-5111f75e5ed6" t="o" /> -<objsur guid="d07fcf81-1e03-4f38-b034-735c8e9f10c0" t="o" /> -<objsur guid="a069edc6-cbcf-4faf-8144-3303bb70185a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="8591a33b-96f2-41a5-888d-a8540b1dd54b" ownerguid="6ff08c23-6ff3-430d-8d41-7e884b0ed3ff"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shimilayquita ganrataycatsiy</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="85922ed8-65e1-4680-ace4-4dcca3baa053" ownerguid="054f479c-f87a-4ee3-bc51-b80249cde0ce"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mallet</AUni> -<AUni ws="es">mazo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b8956636-6231-4d9d-99c3-f5997354efad" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="859359b1-f63f-437e-8b3e-3dd45c50ee2f" ownerguid="6af3bd46-608a-4966-8505-7d4de873d2d6"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2SA 20.12 Caminucho yawar yumpayla Amasa wanushga jitaraycaptinmi tsaypa pasag runacuna ricananpag ichicärergan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="8594cb26-9f3c-48f5-b00b-f055eb5a5e61" ownerguid="55201761-fe2e-40d5-a2a7-8079e00a2c32"> -<Abbreviation> -<AUni ws="en">4.8.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.276" /> -<DateModified val="2022-9-23 16:55:8.276" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a riot--when lots of people are fighting and breaking the law.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>39H Riot</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Riot</AUni> -</Name> -<OcmCodes> -<Uni>579 Brawls, Riots and Banditry</Uni> -</OcmCodes> -<Questions> -<objsur guid="7de0b884-1379-48a7-9363-ec8dac0c2a14" t="o" /> -<objsur guid="2fe5cd00-3cd8-4a22-9758-aceb33590a1d" t="o" /> -<objsur guid="abac6c68-8666-4549-89a2-af046e1351f2" t="o" /> -<objsur guid="06fa65be-6b81-4496-a67b-e66ce94ac697" t="o" /> -<objsur guid="1a13d97a-0d02-4550-b177-32d34497437c" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="2855cda6-a031-46aa-bf3f-718d94374d46" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="85963a22-3941-46ed-a876-7c6979e11576" ownerguid="eb57d1a6-d1d0-46bd-9fa3-bc8859d668e9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="8596a1ba-3bb7-4546-8c0e-e557aff3d9eb" ownerguid="684fe2fa-e37f-4ae7-b114-169ff276c1ed"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">thunder</AUni> -<AUni ws="es">trueno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="44389cb6-74e2-430d-a6ce-bad90fa52a46" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="8596f086-ee46-4245-8d45-2171a60e19e4" ownerguid="f76c3803-1c7a-4181-9a87-64ae7231a67d"> -<Abbreviation> -<AUni ws="en">8.5.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that two things are touching or in contact with each other.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>83E At, Beside, Near, Far x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Touching, contact</AUni> -</Name> -<Questions> -<objsur guid="43a6dc11-4a78-4102-a51d-3b14ce7b77d1" t="o" /> -<objsur guid="36ba0c72-075d-43aa-b33a-e737ef4bae86" t="o" /> -<objsur guid="e9c2322f-4e48-4e9c-b8e9-a224442e2f00" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="c35cba91-742c-4b98-b848-dfd520d959cf" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="bcb1252c-7cb4-4fbc-b83f-e5f9c65b4afb" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="8597827b-12ba-4f7b-a26e-9b72a45af369"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pichu</AUni> -<AUni ws="qvm-x-acl">pichu; pichu; picho</AUni> -<AUni ws="qvm-x-akh">pichu</AUni> -<AUni ws="qvm-x-akl">pichu; pichu; picho</AUni> -<AUni ws="qvm-x-ame">pichu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pitru.n</AUni> -<AUni ws="qvm-x-acl">*pitru.n</AUni> -<AUni ws="qvm-x-akh">*pitru.n</AUni> -<AUni ws="qvm-x-akl">*pitru.n</AUni> -<AUni ws="qvm-x-ame">*pitru.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.871" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ca58b143-61b9-4e7f-a7c9-387ecf479bd4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pitru.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="630cf58f-3708-46af-9f19-5201890a4651" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="68e11a3c-2ebd-42ff-afad-49a207fd3719" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pitru.n 
\entryTyp root 
\gENG stir 
\gSPN batir 
\e *pitru.n 
\c N0 
\ach pichu 
\akh pichu 
\acl pichu / _# 
\acl pichu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl picho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pichu / _# 
\akl pichu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl picho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pichu 
\mcc *pitru.n / ~_ 3P.V</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="859e9176-f4be-4391-99ca-111e7f20c935" ownerguid="c29b7b74-c6bd-401b-8c7a-422853a14a83"> -<Form> -<AUni ws="qvm-x-ach">tacshi</AUni> -<AUni ws="qvm-x-acl">tacshi; tacshe</AUni> -<AUni ws="qvm-x-akh">takshi</AUni> -<AUni ws="qvm-x-akl">takshi; takshe</AUni> -<AUni ws="qvm-x-ame">takshi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="85a48f2b-7a93-4b4a-ab35-c677bfefe7d1" ownerguid="b4aa4bbd-8abf-4503-96e4-05c75efd23d5"> -<ExampleWords> -<AUni ws="en">sunny, sunshine, clear (weather), good (weather), fair (weather), fine (day)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe the weather when it is good?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="85a74cf4-929c-403c-8c64-d2990aeffa76" ownerguid="89f18502-3537-4716-9325-3693bf686f55"> -<Form> -<AUni ws="qvm-x-ach">awi</AUni> -<AUni ws="qvm-x-acl">awi; awe</AUni> -<AUni ws="qvm-x-akh">awi</AUni> -<AUni ws="qvm-x-akl">awi; awe</AUni> -<AUni ws="qvm-x-ame">awi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="85a83beb-f71a-4ed3-acae-95c801bd84e3" ownerguid="8cb0145f-33b0-4899-ade3-ca6a98fd48f3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoInflAffMsa" guid="85aa2915-81b5-4a1e-bad6-9bd987827f8f" ownerguid="50d06ec2-c978-4c12-83dc-c2e2d919f465"> -<PartOfSpeech> -<objsur guid="a4fc78d6-7591-4fb3-8edd-82f10ae3739d" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="f9e1228b-4c5b-4e23-bd04-d513eddcbaea" t="r" /> -</Slots> -</rt> -<rt class="WfiWordform" guid="85af0462-0f6d-45c1-8bbd-f26d918401b0"> -<Analyses> -<objsur guid="16835a46-c7fb-4cbf-9a93-3b5488e0d42a" t="o" /> -<objsur guid="1fbb9f10-4371-4b1f-8b2b-f1ec9600913c" t="o" /> -<objsur guid="8a42ded1-e11a-41be-a366-c76ae9db11ba" t="o" /> -</Analyses> -<Checksum val="368085197" /> -<Form> -<AUni ws="qvm-x-akh">ninanqa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="85b3d757-910b-4bb4-815a-c8e6beb769fb" ownerguid="f8c6a6a9-49f0-408a-9237-a66e852da7d3"> -<ExampleWords> -<AUni ws="en">calendar, Gregorian calendar, Julian calendar, BC (before Christ), AD (ad Domino), Christian era</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used of the system of numbering the years?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="85b50531-5fc2-4a1b-9353-a36b8d62d308"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">verruga</AUni> -<AUni ws="qvm-x-acl">verruga</AUni> -<AUni ws="qvm-x-akh">verruga</AUni> -<AUni ws="qvm-x-akl">verruga</AUni> -<AUni ws="qvm-x-ame">verruga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+verruga</AUni> -<AUni ws="qvm-x-acl">+verruga</AUni> -<AUni ws="qvm-x-akh">+verruga</AUni> -<AUni ws="qvm-x-akl">+verruga</AUni> -<AUni ws="qvm-x-ame">+verruga</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.383" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="44517993-980b-43b0-89bc-9fb27eb7aa3b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+verruga</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="117fefbb-1a82-444f-a00d-4af9adf357a5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="add9925e-41ea-4a84-b18c-bb7ce005d808" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +verruga 
\entryTyp root 
\gENG 
\gSPN veruga.grande 
\e +verruga 
\c N0 
\ach verruga 
\akh verruga 
\acl verruga 
\akl verruga 
\ame verruga</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="85b6cc88-e7d7-4968-9b09-aa7b736d60ce"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lo:ru</AUni> -<AUni ws="qvm-x-acl">lo:ru; lo:ru; lo:ro</AUni> -<AUni ws="qvm-x-akh">lo:ru</AUni> -<AUni ws="qvm-x-akl">lo:ru; lo:ru; lo:ro</AUni> -<AUni ws="qvm-x-ame">lo:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+loro</AUni> -<AUni ws="qvm-x-acl">+loro</AUni> -<AUni ws="qvm-x-akh">+loro</AUni> -<AUni ws="qvm-x-akl">+loro</AUni> -<AUni ws="qvm-x-ame">+loro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.114" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cdfef12e-8649-4414-9857-82ef01ad611e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+loro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7bd32f9e-4790-4d60-a3d6-4c773fa5be1f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9b3cf8b2-351f-4260-bde3-949cb7dd0296" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +loro 
\entryTyp root 
\gENG parrot 
\gSPN loro 
\e +loro 
\c N0 
\ach lo:ru 
\akh lo:ru 
\acl lo:ru / _# 
\acl lo:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lo:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lo:ru / _# 
\akl lo:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lo:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lo:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="85b9908f-4f57-4baa-9ed2-bc4705b12e72" ownerguid="9f3b4cab-dc8a-430e-88f3-d3002df64fb8"> -<Abbreviation> -<AUni ws="en">7.1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.498" /> -<DateModified val="2022-9-23 16:55:8.498" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to straight posture--holding your body straight, stiff, or erect, rather than relaxed.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Straight posture</AUni> -</Name> -<Questions> -<objsur guid="d8cab0cf-d561-43a4-8e5d-22ae57076642" t="o" /> -<objsur guid="49a201d2-5967-4c27-85c5-188ebb21198e" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="8e65904c-f9e9-4e12-b430-c1ddc540f1ae" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="85c13b56-6ea9-4f49-b3d4-1caa15925941" ownerguid="de94f006-ecc6-4347-b505-28b1f6735f59"> -<Form> -<AUni ws="qvm-x-ach">sacrificiu; sacrificio</AUni> -<AUni ws="qvm-x-acl">sacrificiu; sacrificiu; sacrificio</AUni> -<AUni ws="qvm-x-akh">sacrificiu; sacrificio</AUni> -<AUni ws="qvm-x-akl">sacrificiu; sacrificiu; sacrificio</AUni> -<AUni ws="qvm-x-ame">sacrificiu; sacrificio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="85c3c579-109f-40dd-8c7a-ffb5e04b894d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cachca</AUni> -<AUni ws="qvm-x-acl">cachca</AUni> -<AUni ws="qvm-x-akh">kachka</AUni> -<AUni ws="qvm-x-akl">kachka</AUni> -<AUni ws="qvm-x-ame">kachka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*katrka.v</AUni> -<AUni ws="qvm-x-acl">*katrka.v</AUni> -<AUni ws="qvm-x-akh">*katrka.v</AUni> -<AUni ws="qvm-x-akl">*katrka.v</AUni> -<AUni ws="qvm-x-ame">*katrka.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.963" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a8b92a2a-0a10-450d-8409-d057e3b2637e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*katrka.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4ebea370-d6d1-49e0-9424-00ffa9464786" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="23327c24-70fd-4892-bcaa-2565037eda38" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *katrka.v 
\entryTyp root 
\gENG gnaw 
\gSPN masticar 
\e *katrka.v 
\c V2 
\ach cachca 
\akh kachka 
\acl cachca 
\akl kachka 
\ame kachka</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="85c4be2d-bc13-4233-b296-60e3939f60ac" ownerguid="d4769748-7c4e-4359-9da5-2ea64d5948d9"> -<ExampleWords> -<AUni ws="en">milk, butter, cheese, cream, whey, milk solids, butterfat, yogurt, curd</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What types of milk products are eaten?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="85c5b8f7-8086-493d-b70d-a361bfa56f09" ownerguid="3ea4c495-b837-4310-8741-38d89fa63e0b"> -<Abbreviation> -<AUni ws="en">9.4.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.700" /> -<DateModified val="2022-9-23 16:55:8.700" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that a speaker uses to indicate that he thinks something is possible. Maybe implies that the speaker doesn't know something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>71A Possible, Impossible</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Possible</AUni> -</Name> -<Questions> -<objsur guid="b324bb11-259c-4036-a678-dceb9e0c0918" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="31ccb9e3-d434-4430-ac84-486cc5a1c53d" t="r" /> -<objsur guid="77bcdcab-e9fd-48ba-8dcd-63f425367735" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="85c765c3-103f-46de-bf42-94b75e4c55b8" ownerguid="03352940-c220-4a32-a9a5-fc08d1d0dc71"> -<ExampleWords> -<AUni ws="en">take out, throw away, discard, burn, chuck, dispose of, disposal, haul away, bury, dump, litter, pile up, collect</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What do people do to garbage?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="85c77b3e-c77a-4f7c-bef6-f4bf494539a5" ownerguid="3172de51-a297-4877-a407-cd0b5ce64030"> -<Form> -<AUni ws="qvm-x-ach">pesadïlla</AUni> -<AUni ws="qvm-x-acl">pesadïlla</AUni> -<AUni ws="qvm-x-akh">pesadïlla</AUni> -<AUni ws="qvm-x-akl">pesadïlla</AUni> -<AUni ws="qvm-x-ame">pesadïlla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="85c8ff69-ae04-4e58-98e2-9848c382a17b" ownerguid="cf337287-c9fa-43d2-93c4-284f45e262c0"> -<ExampleWords> -<AUni ws="en">venereal disease, AIDS, gonorrhea, syphilis, herpes</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words refer to sexually transmitted disease?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="85c9f7db-4fd1-4d3d-80fd-9e0c1d3b8a91" ownerguid="e7f301c7-b8d1-4696-b030-b06755ef28dc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">throw.out</AUni> -<AUni ws="es">botar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c7dbec8d-838d-4a92-a15b-4f3d5b563513" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="85cb1e3c-62ba-4a77-a838-0237707fb0cb" ownerguid="69541573-f845-4e77-91f6-1e3551fc6c82"> -<Abbreviation> -<AUni ws="en">9.7.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.728" /> -<DateModified val="2022-9-23 16:55:8.728" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the proper names of the regions within your country or language area. Some of these may be political regions. Others may be informal terms. Give the local pronunciation, rather than some foreign spelling. You may want to limit this domain to just those areas within your language area. However if you have special names for areas outside of your language area, for example 'the Mideast', you should include them.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Names of regions</AUni> -</Name> -<Questions> -<objsur guid="8e5d1146-aa1e-4074-8980-f62bfc2b9122" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="85cdec9f-a359-4986-a70b-b817254ae90a" ownerguid="98830eda-3997-4f4a-9ba4-664df669e7e2"> -<ExampleWords> -<AUni ws="en">fortification, fortified position, prepared position, camp</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a place that is made into a fort for a short time?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="85d0d551-4d20-4930-86d7-84fe189fcc96" ownerguid="e00ed7a5-6a96-419a-9e13-2e7d2477eb8b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="90ee1c3e-7d5e-4001-8a38-323e83764141" t="o" /> -<objsur guid="7488c178-52b6-4793-9080-07d38833b0da" t="o" /> -<objsur guid="21708129-5541-4e13-b8c0-021b6287468a" t="o" /> -<objsur guid="4c2ea7db-48eb-4305-8d91-a2fb376c0af6" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="85d1fc4b-657c-4ec1-8461-f9413b4a8fe7" ownerguid="424bda37-67d4-4ec3-a39a-7bba0c9f3b97"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lift.head</AUni> -<AUni ws="es">alzar.cabeza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8b682b02-6738-4067-a519-80ec92f4f2a9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="85d61f31-0156-44c3-b973-95ccd8e777bf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsay</AUni> -<AUni ws="qvm-x-acl">tsay</AUni> -<AUni ws="qvm-x-akh">tsay</AUni> -<AUni ws="qvm-x-akl">tsay</AUni> -<AUni ws="qvm-x-ame">tsay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chay</AUni> -<AUni ws="qvm-x-acl">*chay</AUni> -<AUni ws="qvm-x-akh">*chay</AUni> -<AUni ws="qvm-x-akl">*chay</AUni> -<AUni ws="qvm-x-ame">*chay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.295" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="feef9276-2243-43d4-b44a-5a725a0be56c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="17c53e1a-f12c-41bc-9038-3134419c51bb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dc52902d-860a-4eee-86d4-7271f54d4006" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chay 
\entryTyp root 
\gENG that 
\gSPN ese 
\e *chay 
\c N0 
\mp NeverForeshortened 
\ach tsay 
\akh tsay 
\acl tsay 
\akl tsay 
\ame tsay 
\mp +FinalC 
\mcc *chay / ~_ CAUS</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="85d97d5a-8e32-47bb-8aa2-43901cfddde9" ownerguid="9dfb9f99-4e30-4cd8-a8ac-7b97d5a96a68"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="85dfc6a3-6c70-41f2-a869-32e2fb3c40ee" ownerguid="9f3b4cab-dc8a-430e-88f3-d3002df64fb8"> -<Abbreviation> -<AUni ws="en">7.1.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.498" /> -<DateModified val="2022-9-23 16:55:8.498" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to bending down--to bend your body so that it is closer to the ground (in order to see something, pick up something, or hide).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>17H Bend Over, Straighten Up x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Bend down</AUni> -</Name> -<Questions> -<objsur guid="f9f7369b-03c8-4ded-a0bf-ef750b4c0a80" t="o" /> -<objsur guid="0225bfec-610b-4872-8869-f4d4004201ed" t="o" /> -<objsur guid="df0ef415-1bcb-47cd-b7de-2a034debe967" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="85e0d403-f9e8-449b-9b3e-164235afcf00" ownerguid="0ca05184-08b9-4dc7-a4c7-ff762380b111"> -<ExampleWords> -<AUni ws="en">bill</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a piece of paper that says how much you must pay?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="85e286c1-1d60-4f0a-a2fa-d9c693f7b775"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">diciembri; diciembre</AUni> -<AUni ws="qvm-x-acl">diciembri; diciembri; diciembre</AUni> -<AUni ws="qvm-x-akh">diciembri; diciembre</AUni> -<AUni ws="qvm-x-akl">diciembri; diciembri; diciembre</AUni> -<AUni ws="qvm-x-ame">diciembri; diciembre</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+diciembre</AUni> -<AUni ws="qvm-x-acl">+diciembre</AUni> -<AUni ws="qvm-x-akh">+diciembre</AUni> -<AUni ws="qvm-x-akl">+diciembre</AUni> -<AUni ws="qvm-x-ame">+diciembre</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.406" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c888a770-9ce0-49fe-b7ba-a509fec4f5e6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+diciembre</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="29508344-d298-4cb0-bfeb-a9b03c3918ea" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4375f75f-1c74-4559-817b-772deb8e8777" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +diciembre 
\entryTyp root 
\gENG December 
\gSPN diciembre 
\e +diciembre 
\c N0 
\mp +FinalI 
\ach diciembri / ~_# 
\ach diciembre / _# 
\akh diciembri / ~_# 
\akh diciembre / _# 
\acl diciembri / ~_# 
\acl diciembri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl diciembre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl diciembri / ~_# 
\akl diciembri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl diciembre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame diciembri / ~_# 
\ame diciembre / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoInflAffMsa" guid="85e3456d-a3a6-4fb2-848b-ab16e0bc1f03" ownerguid="c1722a8f-173e-4169-b0de-2d53df2a428a"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="2187f650-9ef3-4104-9740-f007f3b51ffe" t="r" /> -</Slots> -</rt> -<rt class="CmDomainQ" guid="85e4bdb6-ea5f-4ca3-b8d5-5d51c0f547ee" ownerguid="2b27b8ca-188e-44ad-aa86-ffa1f99106e3"> -<ExampleWords> -<AUni ws="en">supplement, build on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to adding more to an amount of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="85e5e831-60be-4d34-844b-59689820be75" ownerguid="e10baccf-7e2e-43c3-b5db-4433b589673e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">according.to</AUni> -<AUni ws="es">según</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c6a1f991-1c30-4cc8-a875-90ac4ba08cbf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="85e62193-7f43-4fda-8cb2-7b36f33a901b" ownerguid="5557909e-dd68-490a-8495-66bc75256739"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ka</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ka</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="22806abf-f462-448a-bb3e-39bbf5d75aea" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="85e94845-359e-4f06-a8ea-4a15699c34b4" ownerguid="e086ff1a-7212-4c35-b8fd-daf2d211ef0a"> -<Form> -<AUni ws="qvm-x-ach">prohibi</AUni> -<AUni ws="qvm-x-acl">prohibi; prohibe</AUni> -<AUni ws="qvm-x-akh">prohibi</AUni> -<AUni ws="qvm-x-akl">prohibi; prohibe</AUni> -<AUni ws="qvm-x-ame">prohibi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="85e96c53-f935-419d-8744-7fafc7b71bf0" ownerguid="fc170f70-520e-4f3e-b8b8-98e4b898fd24"> -<ExampleWords> -<AUni ws="en">frame, edging, skirting</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something put along the edge of something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="85e9d6fc-83fd-4065-b9f9-9357d482a7cd" ownerguid="4a44ac87-5ad5-44de-8170-9fd88b056010"> -<ExampleWords> -<AUni ws="en">vacuum cleaner, broom, mop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the equipment used to take care of a building?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="85ea1bf0-c7e1-4695-9bbe-53a5a1c075a9" ownerguid="bb29001e-97f3-4bb4-8946-7c33b9835fcb"> -<ExampleWords> -<AUni ws="en">half-brother, half-sister</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the children of your father by another mother, or of your mother by another father?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="85ebafdc-f280-43b5-b448-14c5a32fdf19" ownerguid="8c5e4907-30dd-498f-aac1-030cb73b410b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bottom.jaw</AUni> -<AUni ws="es">quijada</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c1c47fb1-a5d0-4b71-bef6-30be506f0dd3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="85ef9486-30c9-406c-a6b0-d98da9716711" ownerguid="4626740c-2b5d-4922-b9b1-f551d127743e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sprinkle</AUni> -<AUni ws="es">regar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="90273c15-92e0-4db3-a11b-4ad2a54e93a7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="85f211ae-cc16-4042-8c27-e99ff8f01f61" ownerguid="749ad6fe-5509-4e45-b236-84ea12de102e"> -<Abbreviation> -<AUni ws="en">6.8.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to giving something to someone, in which there is a transference of ownership.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>57H Give</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Give, donate</AUni> -</Name> -<OcmCodes> -<Uni>431 Gift Giving</Uni> -</OcmCodes> -<Questions> -<objsur guid="8f07a15c-bb09-49b2-bff2-07d8e736144a" t="o" /> -<objsur guid="97a31406-a20f-4333-802f-f24d4a776ca8" t="o" /> -<objsur guid="60085222-d13d-4cc0-82f1-bfca6c1f6ed7" t="o" /> -<objsur guid="97e04cdb-f7dd-4641-94a3-e9ef8b198bc4" t="o" /> -<objsur guid="5c43a0fb-8c5f-42c7-bdd3-854a9029b88b" t="o" /> -<objsur guid="67380659-de59-4da1-b28b-84558ac7573e" t="o" /> -<objsur guid="a3849a1d-6eec-465f-a59a-44a57469eb2a" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="56d1a950-8798-45fb-bccd-d8b1eb37c071" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="85f3cb23-6702-4bb0-bbaf-39b66418f4df" ownerguid="768aed05-dbc9-4caf-9461-76cb3720f908"> -<ExampleWords> -<AUni ws="en">relieve, relief, soothe, treat, alleviate, painkiller, anesthetize, anesthetic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to relieving pain?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="85f4ea3e-e02a-4a1e-909a-01d7e6046bd1" ownerguid="b844d2f8-d3ef-4605-b038-8bc0a2cff0af"> -<ExampleWords> -<AUni ws="en">get taller, grow, sprout, shoot up, put on height</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to becoming tall?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="85f66a33-7989-4427-b9a4-a8a34835e94d" ownerguid="9dafa8db-ebe1-4b32-a643-f84cc1a86c0d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 BN/BN R0/R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">SIKI</AUni> -<AUni ws="es">SIKI</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1728d758-293b-4e13-a8e4-e03410b2f777" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="85f92415-e3d0-49ae-b05d-a49cd4879e3c" ownerguid="318c8249-be92-4a1d-a930-d896c7f33f34"> -<Form> -<AUni ws="qvm-x-ach">peligrösu</AUni> -<AUni ws="qvm-x-acl">peligrösu; peligrösu; peligröso</AUni> -<AUni ws="qvm-x-akh">peligrösu</AUni> -<AUni ws="qvm-x-akl">peligrösu; peligrösu; peligröso</AUni> -<AUni ws="qvm-x-ame">peligrösu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="85f9cb12-743a-4288-8a96-707a3f220291" ownerguid="60a8b5bc-b30f-42c3-9bb1-6c68928d1aaa"> -<Form> -<AUni ws="qvm-x-ach">gran</AUni> -<AUni ws="qvm-x-acl">gran</AUni> -<AUni ws="qvm-x-akh">gran</AUni> -<AUni ws="qvm-x-akl">gran</AUni> -<AUni ws="qvm-x-ame">gran</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="85ff3365-475d-441d-89d3-002b51b05876" ownerguid="60595d09-4a15-4499-b6e1-d36a704bcbe9"> -<ExampleWords> -<AUni ws="en">erosion, erode, eroded, wash away, silt, silt up, deposit, settle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to water washing away dirt?</AUni> -</Question> -</rt> -<rt class="PartOfSpeech" guid="85ffb381-0567-4202-8640-53cbaec77e45" ownerguid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5"> -<Abbreviation> -<AUni ws="en">n1</AUni> -</Abbreviation> -<AffixSlots> -<objsur guid="769c8d34-7ae5-450b-9e9b-f62d75e5f18a" t="o" /> -</AffixSlots> -<AffixTemplates> -<objsur guid="aa34c6e1-fa72-4d69-a2fb-d4a4c0675dc6" t="o" /> -</AffixTemplates> -<BackColor val="0" /> -<DateCreated val="2022-9-23 18:32:36.833" /> -<DateModified val="2022-10-14 19:28:19.340" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Noun obligatorily possessed</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="86010afd-d8f3-4ff1-9906-d9ea501b47b8" ownerguid="efefadd4-0419-4705-a08e-cb3298edb4f0"> -<Form> -<AUni ws="qvm-x-ach">tsica</AUni> -<AUni ws="qvm-x-acl">tsica</AUni> -<AUni ws="qvm-x-akh">tsika</AUni> -<AUni ws="qvm-x-akl">tsika</AUni> -<AUni ws="qvm-x-ame">tsika</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="8602761b-c356-403d-a5cf-8687d677c5c7" ownerguid="5551f669-39d0-4cdc-829c-f507cf23b39b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="cbf19412-bcce-4503-95d2-69300d126448" t="o" /> -<objsur guid="5d07a7f9-d99a-40ce-9099-5ef5b9ec5010" t="o" /> -<objsur guid="89278ff8-9413-4691-81bf-c33781752442" t="o" /> -<objsur guid="818aa3fa-73de-4db1-9928-4e5c50eaf271" t="o" /> -<objsur guid="e26dd4b0-a4d7-41c2-b083-20a1260f8860" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="8605a7d3-b164-4332-a7fc-fd4648e31309" ownerguid="c416afa2-6841-4e89-a089-0ead03c816e5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="86078fa5-1d4e-4420-867e-8e76a1b6e3bf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">caruna</AUni> -<AUni ws="qvm-x-acl">caruna</AUni> -<AUni ws="qvm-x-akh">karuna</AUni> -<AUni ws="qvm-x-akl">karuna</AUni> -<AUni ws="qvm-x-ame">karuna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*karuna.n</AUni> -<AUni ws="qvm-x-acl">*karuna.n</AUni> -<AUni ws="qvm-x-akh">*karuna.n</AUni> -<AUni ws="qvm-x-akl">*karuna.n</AUni> -<AUni ws="qvm-x-ame">*karuna.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.943" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ea33d6b5-094f-4036-952f-a7aea0683aa5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*karuna.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="505e7e23-ae56-481a-837c-28de0b8bcfec" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9de2ec46-0565-4837-8fed-35f07f9bbc40" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *karuna.n 
\entryTyp root 
\gENG 
\gSPN 
\e *karuna.n 
\c N0 
\ach caruna 
\akh karuna 
\acl caruna 
\akl karuna 
\ame karuna</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="860e9f4b-8f57-4085-b536-cb73a2a72cff" ownerguid="787da344-8c33-4d3e-84a6-ec7a7b8346da"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">understand</AUni> -<AUni ws="es">comprender</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b4c17095-15c8-4589-90b8-2e39be8bff56" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="86110c42-4f4c-4cbb-b93f-78db5bd0ec27" ownerguid="95a8d932-9554-439f-afb5-ab158f2eed96"> -<ExampleWords> -<AUni ws="en">alternating, repeated, cyclical, rotating</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe things that alternate?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="86145e0c-9cbf-42a9-a25d-13c00ef8d255" ownerguid="228a64f0-4807-4567-a3dc-138ecb262512"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="8616e673-bb26-4140-8890-e15f45735529"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">señala</AUni> -<AUni ws="qvm-x-acl">señala</AUni> -<AUni ws="qvm-x-akh">señala</AUni> -<AUni ws="qvm-x-akl">señala</AUni> -<AUni ws="qvm-x-ame">señala</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+señalar.1</AUni> -<AUni ws="qvm-x-acl">+señalar.1</AUni> -<AUni ws="qvm-x-akh">+señalar.1</AUni> -<AUni ws="qvm-x-akl">+señalar.1</AUni> -<AUni ws="qvm-x-ame">+señalar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.500" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f12d250b-02a1-4315-8047-48e2acdc4845" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+señalar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2504119a-086f-4d7e-ae40-78201708e152" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4c46be53-6668-4ca6-bccd-efcbf72bc5c1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +señalar.1 
\entryTyp root 
\gENG indicate 
\gSPN señalar 
\e +señalar.1 
\c V2 
\ach señala 
\akh señala 
\acl señala 
\akl señala 
\ame señala</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="861d1db0-8ea1-43d2-811e-ee5569c7daaa"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">PNCT</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="8620a9a4-e9d1-4d2b-940e-17516170ef4b" ownerguid="f8026a5b-8134-4f56-bb77-4257c8f8c8a7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuya</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuya</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuya</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuya</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuya</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ed8e0c9a-5a44-4448-bc6b-1b766f141f5c" t="r" /> -</Morph> -<Msa> -<objsur guid="6ee88865-51d6-40db-b9fa-4ba30a1cf4e7" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="8620c65e-327e-49d6-a5a1-bc44f4470f7a" ownerguid="f0c7d305-01bc-4a03-b2dc-6cfda627fc03"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">road</AUni> -<AUni ws="es">carretera</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cf54e0e7-8eaf-459c-b547-14488785c454" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="86265c7f-9c96-4206-8647-9a6a670816bd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">puyñu</AUni> -<AUni ws="qvm-x-acl">puyñu; puyñu; puyño</AUni> -<AUni ws="qvm-x-akh">puyñu</AUni> -<AUni ws="qvm-x-akl">puyñu; puyñu; puyño</AUni> -<AUni ws="qvm-x-ame">puyñu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puyñu</AUni> -<AUni ws="qvm-x-acl">*puyñu</AUni> -<AUni ws="qvm-x-akh">*puyñu</AUni> -<AUni ws="qvm-x-akl">*puyñu</AUni> -<AUni ws="qvm-x-ame">*puyñu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.58" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fd7b440e-fb52-4381-88fe-429fb3ef0ef1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puyñu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dbf1c817-98bb-42bb-850d-7465281a68a0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2315d72c-276a-4a0f-ae89-942f0b13bfeb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puyñu 
\entryTyp root 
\gENG 
\gSPN cántaro 
\e *puyñu 
\c N0 
\ach puyñu 
\akh puyñu 
\acl puyñu / _# 
\acl puyñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl puyño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl puyñu / _# 
\akl puyñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl puyño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame puyñu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="862810e6-56ec-467a-a723-f4b6b7dcd310" ownerguid="1dcd440b-ee59-41e4-b3e1-f965817c8831"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">grind</AUni> -<AUni ws="es">moler</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="faf276e0-4f09-4378-a9cb-9248ff35b346" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="86286c23-4899-4ac4-9869-e1bad3589d0a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waya</AUni> -<AUni ws="qvm-x-acl">waya</AUni> -<AUni ws="qvm-x-akh">waya</AUni> -<AUni ws="qvm-x-akl">waya</AUni> -<AUni ws="qvm-x-ame">waya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waya.n</AUni> -<AUni ws="qvm-x-acl">*waya.n</AUni> -<AUni ws="qvm-x-akh">*waya.n</AUni> -<AUni ws="qvm-x-akl">*waya.n</AUni> -<AUni ws="qvm-x-ame">*waya.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.607" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8e0162fa-6430-4b76-af24-5c75d23eadc6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waya.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="599c1501-2a0b-433a-a70b-cb7432c278f2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="657ec7de-ffdc-4629-9dd7-df1ca89ed147" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waya.n 
\entryTyp root 
\gENG 
\gSPN desigual 
\e *waya.n 
\c N0 
\ach waya 
\akh waya 
\acl waya 
\akl waya 
\ame waya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="86287a4c-0d64-4f28-9a5c-17fb9df37ab6" ownerguid="f76c3803-1c7a-4181-9a87-64ae7231a67d"> -<Abbreviation> -<AUni ws="en">8.5.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.668" /> -<DateModified val="2022-9-23 16:55:8.668" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that something is on another thing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>83H On, Upon, On the Surface Of</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">On</AUni> -</Name> -<Questions> -<objsur guid="6f972bdf-a33d-4792-8dce-8df424d0d473" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c13ca251-6103-4475-85af-933311923f2c" t="o" /> -<objsur guid="0a1ad4c9-8bf3-448b-a27f-611813b305de" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="862aa851-6b1d-491a-bd03-40e8723e4d33" ownerguid="4bcf81e9-1edc-4872-a8d3-b0f710b56b30"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="f01ee4e5-3ed6-484b-99d3-04bd3f100f3f" t="o" /> -<objsur guid="e69d1075-b969-447b-96e0-3f3283003073" t="o" /> -<objsur guid="bfe6da0a-4737-4ac6-a3d9-2c9a57617f86" t="o" /> -<objsur guid="6e0f8ca2-4d08-4cb9-8df8-a672b82ded28" t="o" /> -<objsur guid="4fbede2b-f737-44c6-b816-14e225f80f02" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="862b9f6b-f1f9-4621-9168-370b29443393" ownerguid="ed7930df-e7b4-43c9-a11a-b09521276b57"> -<ExampleWords> -<AUni ws="en">smell like, smell of, smell (good/bad), have a (good/bad) smell, (good/bad) smelling, give off a smell</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words indicate that something smells like another thing or smells a particular way?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="862c11ec-d429-4e89-ac33-7f04efd686eb" ownerguid="81734053-8676-402e-8871-4ee306608383"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="8631895f-d91f-4a1e-ab3e-a2362f70cba0" ownerguid="a0d073df-d413-4dfd-9ba1-c3c68f126d90"> -<ExampleWords> -<AUni ws="en">flash across the sky, blaze a trail across the sky, strike the earth, make a crater, burn up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What do meteors do?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="86329643-6d7d-413b-bb02-faceebaaa65a" ownerguid="9ac6dec6-1b8f-463c-8239-e2acb93586b1"> -<ExampleWords> -<AUni ws="en">unity, oneness, integration, unification</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the unity of a social group?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="86337b2a-fa4b-45a0-a4d3-3998e7c67aa2"> -<Analyses> -<objsur guid="52972973-4858-4e2b-8ddb-097b56612c1d" t="o" /> -</Analyses> -<Checksum val="45810315" /> -<Form> -<AUni ws="qvm-x-akh">kutishqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="86384fd9-beaa-4d0b-925a-1afdadcab1e2" ownerguid="0f9ea100-4122-4980-8893-e7169c281d95"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">berry</AUni> -<AUni ws="es">uva</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2db37e45-cdd6-43ef-b23d-1c35d73bb5ed" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="863b22e4-f8e1-4a92-80b5-88b26d8c117b" ownerguid="62ed8254-e53a-4781-935e-79869619e40a"> -<ExampleWords> -<AUni ws="en">dedicate, consecrate, anoint, sanctify, devote, hallow, baptize, circumcise</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to dedicating something to religious use?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="863e5dc0-1b6b-486e-b6b4-2dbef9ed05ec"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yawa</AUni> -<AUni ws="qvm-x-acl">yawa</AUni> -<AUni ws="qvm-x-akh">yawa</AUni> -<AUni ws="qvm-x-akl">yawa</AUni> -<AUni ws="qvm-x-ame">yawa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yawa.v2</AUni> -<AUni ws="qvm-x-acl">*yawa.v2</AUni> -<AUni ws="qvm-x-akh">*yawa.v2</AUni> -<AUni ws="qvm-x-akl">*yawa.v2</AUni> -<AUni ws="qvm-x-ame">*yawa.v2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.770" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8d49fccc-5b13-4c23-83c0-a1abb14bd8ab" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yawa.v2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dd242bc6-127d-4fbc-8103-d4e093b6f021" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e38a1cca-1e5b-4ddd-818b-8f8e7e715bfb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yawa.v2 
\entryTyp root 
\gENG taste 
\gSPN saborear 
\e *yawa.v2 
\c V2 
\ach yawa 
\akh yawa 
\acl yawa 
\akl yawa 
\ame yawa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="863f955f-9a33-47eb-b8c1-d220ea470dfd" ownerguid="a42f2140-e40e-486c-b41f-412218a0e088"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 V0/V0 R0/R0 ONSHEV/ONSHEV BN/BN</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">YET1</AUni> -<AUni ws="es">TDV1</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6dcb48c7-e583-4d11-8c06-4fb11a4f7d09" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="86407fb1-8871-4e3d-84de-64ad03d6a2fa" ownerguid="06905a7e-47f4-4c86-afea-a4175295b566"> -<ExampleWords> -<AUni ws="en">knock over, tip over, spill, dump</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to knocking a container over so that it spills its contents?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8640f3e8-cdbd-4fe2-ac32-70eda921e21a" ownerguid="b093ef57-bd1b-42e6-a7d3-88f4dd08d62a"> -<Form> -<AUni ws="qvm-x-ach">pi</AUni> -<AUni ws="qvm-x-acl">pi; pi; pe</AUni> -<AUni ws="qvm-x-akh">pi</AUni> -<AUni ws="qvm-x-akl">pi; pi; pe</AUni> -<AUni ws="qvm-x-ame">pi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8645970c-0e3d-4c34-b326-68be9a256a59" ownerguid="8b52a9d6-a07e-4ac8-8f84-6eb5ba578d97"> -<ExampleWords> -<AUni ws="en">sneeze, sneeze (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to sneezing?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8647e508-6bc7-4bca-86de-cb710ae9f97b" ownerguid="6afd1b44-48cb-4b05-adbc-71adccc401ff"> -<Form> -<AUni ws="qvm-x-ach">charqui</AUni> -<AUni ws="qvm-x-acl">charqui; charqui; charque</AUni> -<AUni ws="qvm-x-akh">charki</AUni> -<AUni ws="qvm-x-akl">charki; charki; charke</AUni> -<AUni ws="qvm-x-ame">charki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="86492965-405c-435c-9022-e94dadfbc002" ownerguid="b09205d4-fbb4-4bcd-94ef-f8d83e298462"> -<ExampleWords> -<AUni ws="en">agitate, churn, stir, whip</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making water rough?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="864acd3a-8099-4634-8400-6778159572a5" ownerguid="d7140538-fb99-4af9-8398-8c31a1b79fb5"> -<ExampleWords> -<AUni ws="en">handcuff, shackle, tie up, bind, binding</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to preventing someone from moving by tying them?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="864f3816-41b6-4881-bf14-235e6301e8bb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">buen</AUni> -<AUni ws="qvm-x-acl">buen</AUni> -<AUni ws="qvm-x-akh">buen</AUni> -<AUni ws="qvm-x-akl">buen</AUni> -<AUni ws="qvm-x-ame">buen</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+buen</AUni> -<AUni ws="qvm-x-acl">+buen</AUni> -<AUni ws="qvm-x-akh">+buen</AUni> -<AUni ws="qvm-x-akl">+buen</AUni> -<AUni ws="qvm-x-ame">+buen</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.991" /> -<DateModified val="2022-10-10 21:18:47.215" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b8e93895-c468-41e2-8633-6539f0e13366" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+buen</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cd37094f-e5ca-49bc-a8d3-083de7c4934b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0014fb37-c5f9-4f23-9203-b7d9208e8401" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +buen 
\entryTyp root 
\gENG 
\gSPN 
\e +buen 
\c NOSUFF 
\ach buen 
\akh buen 
\acl buen 
\akl buen 
\ame buen 
\i Gen 39.6b Joséga buen mözu car cuyaylapagmi cargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="864fad78-1210-4174-8b0c-f3e77481a2f9" ownerguid="c0ce86b5-dd49-41bf-8dfc-3a8ff8b6125c"> -<Form> -<AUni ws="qvm-x-ach">gränu</AUni> -<AUni ws="qvm-x-acl">gränu; gränu; gräno</AUni> -<AUni ws="qvm-x-akh">gränu</AUni> -<AUni ws="qvm-x-akl">gränu; gränu; gräno</AUni> -<AUni ws="qvm-x-ame">gränu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8652a3b2-1bcd-4c6b-a0b5-89f621dbdb6d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">burla</AUni> -<AUni ws="qvm-x-acl">burla</AUni> -<AUni ws="qvm-x-akh">burla</AUni> -<AUni ws="qvm-x-akl">burla</AUni> -<AUni ws="qvm-x-ame">burla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+burlar</AUni> -<AUni ws="qvm-x-acl">+burlar</AUni> -<AUni ws="qvm-x-akh">+burlar</AUni> -<AUni ws="qvm-x-akl">+burlar</AUni> -<AUni ws="qvm-x-ame">+burlar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.1" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f3b3a2e5-fdbe-4b45-a014-cd8acd3557bf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+burlar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f76642fe-8c03-4ad8-9199-30549da09153" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6f1c096b-fbf1-46a7-b3ae-443e34034906" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +burlar 
\entryTyp root 
\gENG mock 
\gSPN burlar 
\e +burlar 
\c V2 
\ach burla 
\akh burla 
\acl burla 
\akl burla 
\ame burla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="8658dff3-91a5-41d0-9669-adc1b6805d9b" ownerguid="f654fd6f-7805-4f0e-bd1e-be4ace5e7fd0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="8659d069-b25d-43fb-9cc0-0b45c4091236" ownerguid="e9de27b6-abac-46ed-a68c-2c3d314297c6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="865f355d-8c6c-4758-8adb-62517bd8f23f" ownerguid="55d09bf0-d8ce-463d-a471-0614b737f739"> -<Form> -<AUni ws="qvm-x-ach">puntañösa</AUni> -<AUni ws="qvm-x-acl">puntañösa</AUni> -<AUni ws="qvm-x-akh">puntañösa</AUni> -<AUni ws="qvm-x-akl">puntañösa</AUni> -<AUni ws="qvm-x-ame">puntañösa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="865f6801-e33a-48be-9efc-1f78f767c9ae" ownerguid="3d48e0df-8e07-4e2f-9e29-19cc96df1bc1"> -<Form> -<AUni ws="qvm-x-ach">wishcash</AUni> -<AUni ws="qvm-x-acl">wishcash</AUni> -<AUni ws="qvm-x-akh">wishkash</AUni> -<AUni ws="qvm-x-akl">wishkash</AUni> -<AUni ws="qvm-x-ame">wishkash</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="86604e93-1f4e-4f95-94bc-07d60f015bab" ownerguid="edf17f72-7e7a-4f8d-a5ee-f4889492d73a"> -<ExampleWords> -<AUni ws="en">meaningless, absurd, lack meaning, ridiculous, senseless, nonsensical, without rhyme or reason, unintelligible, inane</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that has no meaning?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="86615235-8cdd-413d-b722-11bc5a4653d6" ownerguid="3f37bb6f-cd32-4430-aa35-700acabbee15"> -<Abbreviation> -<AUni ws="en">8.4.6.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the end of an action or situation.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>67C A Point of Time with Reference to Duration of Time: Beginning, End</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">End</AUni> -</Name> -<Questions> -<objsur guid="8d73ac11-4364-4393-b6e9-15c55ef18a80" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="8661d2a5-63da-4d8d-b39c-bc052d111240" ownerguid="728dc1a1-1574-4824-b1d9-b3fdde6ff6b3"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="8662aa19-df80-4dc7-b6b3-270db0d1456a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wacwagta</AUni> -<AUni ws="qvm-x-acl">wacwagta</AUni> -<AUni ws="qvm-x-akh">wakwaqta</AUni> -<AUni ws="qvm-x-akl">wakwaqta</AUni> -<AUni ws="qvm-x-ame">wakwaqta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wakwaqta</AUni> -<AUni ws="qvm-x-acl">*wakwaqta</AUni> -<AUni ws="qvm-x-akh">*wakwaqta</AUni> -<AUni ws="qvm-x-akl">*wakwaqta</AUni> -<AUni ws="qvm-x-ame">*wakwaqta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.444" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="35e9ddaf-4fad-47bb-8ff0-3f9c5c89bee1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wakwaqta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5eef66a2-47be-4653-b45f-a6284ad5bc2e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a30b7caf-1ee2-4f8d-8b33-3e0c80c07f6b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wakwaqta 
\entryTyp root 
\gENG other.side 
\gSPN vuelta 
\e *wakwaqta 
\c N0 
\ach wacwagta 
\akh wakwaqta 
\acl wacwagta 
\akl wakwaqta 
\ame wakwaqta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="866981d7-5872-47fe-82bc-0e1693e6d419" ownerguid="0b0801a3-8a0c-40ea-bf41-07df80bd0d5f"> -<ExampleWords> -<AUni ws="en">dry (v), dry out, dry up, shrivel, wither, evaporate, dehydrate, desiccate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something becoming dry?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="866ca8ce-6fe0-43ca-99f4-7dbd2d8020c1" ownerguid="07476166-c5e5-4701-97d3-d97de8b5be6f"> -<ExampleWords> -<AUni ws="en">information, body of knowledge, (what is) known</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to what is known about a topic?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="86712cc0-283f-4d9d-8964-f23b54535827" ownerguid="763fa2e0-c119-4f50-a307-81ed8c3497ed"> -<ExampleWords> -<AUni ws="en">opposing, hostile, antagonistic, opposing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe someone who opposes something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="867286b0-4477-4124-9c5d-91b85bf77883"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chichu</AUni> -<AUni ws="qvm-x-acl">chichu; chicho</AUni> -<AUni ws="qvm-x-akh">chichu</AUni> -<AUni ws="qvm-x-akl">chichu; chicho</AUni> -<AUni ws="qvm-x-ame">chichu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tritru.v</AUni> -<AUni ws="qvm-x-acl">*tritru.v</AUni> -<AUni ws="qvm-x-akh">*tritru.v</AUni> -<AUni ws="qvm-x-akl">*tritru.v</AUni> -<AUni ws="qvm-x-ame">*tritru.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.139" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8334faca-a82d-450b-8c66-5bd9e462ce14" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tritru.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6d591ee9-8328-4532-a18e-e2be41e10526" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5faa59d0-c208-49c6-b46f-5b1a2e658f08" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tritru.v 
\entryTyp root 
\gENG 
\gSPN 
\e *tritru.v 
\c V1 
\ach chichu 
\akh chichu 
\acl chichu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl chicho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chichu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chicho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chichu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="8674c928-a386-4e3f-b247-a16e8a9ff9f6" ownerguid="5eeccff3-04b4-4136-a2d4-3a96706ea5b1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">exude.pus</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="edbc28df-38f9-4fc9-9d36-c674cd2c874c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="86787a82-377f-445c-b6b1-9b1c136d2242"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">peli:canu</AUni> -<AUni ws="qvm-x-acl">peli:canu; peli:canu; peli:cano</AUni> -<AUni ws="qvm-x-akh">peli:canu</AUni> -<AUni ws="qvm-x-akl">peli:canu; peli:canu; peli:cano</AUni> -<AUni ws="qvm-x-ame">peli:canu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pelícano</AUni> -<AUni ws="qvm-x-acl">+pelícano</AUni> -<AUni ws="qvm-x-akh">+pelícano</AUni> -<AUni ws="qvm-x-akl">+pelícano</AUni> -<AUni ws="qvm-x-ame">+pelícano</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.790" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e676ce03-d44b-4b9e-9f46-a96ae6732112" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pelícano</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="465a437e-b3d8-4d5c-972c-2a490dd45e30" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c0890e46-90e8-4364-a82a-70f169c97b59" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pelícano 
\entryTyp root 
\gENG pelican 
\gSPN 
\e +pelícano 
\c N0 
\ach peli:canu 
\akh peli:canu 
\acl peli:canu / _# 
\acl peli:canu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl peli:cano +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl peli:canu / _# 
\akl peli:canu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl peli:cano +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame peli:canu 
\i Lev 11</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="8678c1f4-e57f-45d8-a08e-85b03eed93aa" ownerguid="1bca24e1-f372-4584-bc86-5d6052a22390"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cloud</AUni> -<AUni ws="es">nube</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3d4bf633-4f34-4884-a0c9-f5be63ae7138" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="867adca7-4ad4-4b2f-80e2-384f5cb2d084" ownerguid="122dcd76-3ea4-43f6-a76f-f0b242b10ece"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">thank.you</AUni> -<AUni ws="es">gracias</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7412d3d5-d912-4e07-83a3-2c92f9d5731a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="867dd483-09fd-49fa-873c-eba38421284c" ownerguid="86c02f45-e087-4593-9a66-898dcfe8d2d2"> -<Form> -<AUni ws="qvm-x-ach">carrëta</AUni> -<AUni ws="qvm-x-acl">carrëta</AUni> -<AUni ws="qvm-x-akh">carrëta</AUni> -<AUni ws="qvm-x-akl">carrëta</AUni> -<AUni ws="qvm-x-ame">carrëta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiGloss" guid="867e5109-2390-4d04-80e7-49b26377d5eb" ownerguid="87c9b887-4271-4638-8cba-089d31f9219a"> -<Form> -<AUni ws="en">tribe</AUni> -<AUni ws="es">tribu</AUni> -</Form> -</rt> -<rt class="LexEntry" guid="867e7660-1e22-4978-abff-e5a681c93dde"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">anís; anis</AUni> -<AUni ws="qvm-x-acl">anís; anis</AUni> -<AUni ws="qvm-x-akh">anís; anis</AUni> -<AUni ws="qvm-x-akl">anís; anis</AUni> -<AUni ws="qvm-x-ame">anís; anis</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+anís</AUni> -<AUni ws="qvm-x-acl">+anís</AUni> -<AUni ws="qvm-x-akh">+anís</AUni> -<AUni ws="qvm-x-akl">+anís</AUni> -<AUni ws="qvm-x-ame">+anís</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.780" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="15142e80-79a9-4fc4-a556-dd4938b4bf4f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+anís</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c4bb9a90-b5aa-47ec-9b35-d67d9e10acab" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bea01178-d66f-4294-9bb4-6737ebda015d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +anís 
\entryTyp root 
\gENG licorice 
\gSPN anís 
\e +anís 
\c N0 
\mp +FinalC 
\ach anís / _# 
\ach anis / ~_# 
\akh anís / _# 
\akh anis / ~_# 
\acl anís / _# 
\acl anis / ~_# 
\akl anís / _# 
\akl anis / ~_# 
\ame anís / _# 
\ame anis / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="867f515b-ed0f-431e-a84a-6c562e1bdbb7" ownerguid="2621e605-3ecc-4f3d-b28c-f8c92b3c4584"> -<Abbreviation> -<AUni ws="en">8.3.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.609" /> -<DateModified val="2022-9-23 16:55:8.609" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to being smooth.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Smooth</AUni> -</Name> -<Questions> -<objsur guid="03df6383-bff8-4724-94c4-7c5d499992c1" t="o" /> -<objsur guid="d9790a23-4b88-4445-91d7-e52de9171c11" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="867f98c7-5ab3-4c00-b3dc-774415ad068f" ownerguid="dccb55f6-9e2b-4963-a6d5-640d118909e1"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="91aaba41-4723-42ea-881d-8c996542f913" t="o" /> -<objsur guid="0c1ac6b4-f344-41b4-aeed-c49773660c9e" t="o" /> -<objsur guid="ac9945cb-66bf-4aa4-babc-bc9de749cb4a" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="8684b125-b27f-4710-a39c-dde870d8fe34"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">castiga</AUni> -<AUni ws="qvm-x-acl">castiga</AUni> -<AUni ws="qvm-x-akh">castiga</AUni> -<AUni ws="qvm-x-akl">castiga</AUni> -<AUni ws="qvm-x-ame">castiga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+castigar</AUni> -<AUni ws="qvm-x-acl">+castigar</AUni> -<AUni ws="qvm-x-akh">+castigar</AUni> -<AUni ws="qvm-x-akl">+castigar</AUni> -<AUni ws="qvm-x-ame">+castigar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.82" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="84d8cfe1-50da-4228-a0fc-d883a818f7a5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+castigar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="28197508-fbb5-4f3d-999e-6de0a1b2cc74" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e76241d9-175a-484c-8e45-d3d8d4b54914" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +castigar 
\entryTyp root 
\gENG punish 
\gSPN castigar 
\e +castigar 
\c V2 
\ach castiga 
\akh castiga 
\acl castiga 
\akl castiga 
\ame castiga</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="86865563-7769-4c40-9ebc-df0f2c6f9e5b" ownerguid="206b0422-a0e1-4714-9328-878d63dcc121"> -<Form> -<AUni ws="qvm-x-ach">saluda</AUni> -<AUni ws="qvm-x-acl">saluda</AUni> -<AUni ws="qvm-x-akh">saluda</AUni> -<AUni ws="qvm-x-akl">saluda</AUni> -<AUni ws="qvm-x-ame">saluda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="8686a3d7-edb0-4a9a-a15e-585b26c1f5f0" ownerguid="c3c5beaa-4f0a-46f6-a47b-e5ee022c78bb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">frying.pan</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f3b4514f-b44a-472a-b103-b8fd943670c3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="868870ee-003a-4441-8f44-2068ed2c1e29" ownerguid="9693dca0-263a-48c2-b98c-21948c2c3608"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="de979969-cac5-4a80-994c-dd26fe2b657b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="868abcc4-d3e6-4a85-bc44-7db8e82d1fd7" ownerguid="52289137-40ed-4623-b5e6-af2e2f89588d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="868ef7d2-d980-4024-81dc-9b20c8ee9201"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">milga</AUni> -<AUni ws="qvm-x-acl">milga</AUni> -<AUni ws="qvm-x-akh">milga</AUni> -<AUni ws="qvm-x-akl">milga</AUni> -<AUni ws="qvm-x-ame">milga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+melga</AUni> -<AUni ws="qvm-x-acl">+melga</AUni> -<AUni ws="qvm-x-akh">+melga</AUni> -<AUni ws="qvm-x-akl">+melga</AUni> -<AUni ws="qvm-x-ame">+melga</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.404" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="00fa93fb-6a91-45a4-b6d9-53275280c55d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+melga</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e169a9f0-e8fb-46d0-a08e-6bc8021b5fa1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ad59a0d7-06bd-49f0-a80c-76050a15ad74" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +melga 
\entryTyp root 
\gENG 
\gSPN 
\e +melga 
\c N0 
\ach milga 
\akh milga 
\acl milga 
\akl milga 
\ame milga 
\i 1KI 19.19 Ushanan kaq milgacho Eliseo aruykaptinmi Elíasqa nawpanpa aywaykur cäpanta ayluparkur pasakorqan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="86906f59-2cc9-4044-9719-67b0c6954bd5" ownerguid="f8c6a6a9-49f0-408a-9237-a66e852da7d3"> -<ExampleWords> -<AUni ws="en">date, January 1, 2000, 1-1-00, the first of January 2000</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used to refer to a particular day?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="86928d3c-0e55-488a-b86e-de28805c963a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nubi:llu</AUni> -<AUni ws="qvm-x-acl">nubi:llu; nubi:llu; nubi:llo</AUni> -<AUni ws="qvm-x-akh">nubi:llu</AUni> -<AUni ws="qvm-x-akl">nubi:llu; nubi:llu; nubi:llo</AUni> -<AUni ws="qvm-x-ame">nubi:llu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+nubillo</AUni> -<AUni ws="qvm-x-acl">+nubillo</AUni> -<AUni ws="qvm-x-akh">+nubillo</AUni> -<AUni ws="qvm-x-akl">+nubillo</AUni> -<AUni ws="qvm-x-ame">+nubillo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.578" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9ad2c696-8a2b-43d9-a88f-02da591448b5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+nubillo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="42c56d72-f21c-4e54-ae10-db73d06e9e67" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d5042dc2-b7c5-4041-8c8b-070006c5092f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +nubillo 
\entryTyp root 
\gENG 
\gSPN 
\e +nubillo 
\c N0 
\ach nubi:llu 
\akh nubi:llu 
\acl nubi:llu / _# 
\acl nubi:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl nubi:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl nubi:llu / _# 
\akl nubi:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl nubi:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame nubi:llu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="8692fe8c-2d45-4ca2-af74-830f2650555f" ownerguid="8ef9d508-a95b-41b2-af89-578e65685105"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="8693ffdc-495f-4388-93d9-03f5f4157cba" ownerguid="93d7ff09-c75b-40a3-b97f-119018f350c1"> -<Form> -<AUni ws="qvm-x-ach">luta</AUni> -<AUni ws="qvm-x-acl">luta</AUni> -<AUni ws="qvm-x-akh">luta</AUni> -<AUni ws="qvm-x-akl">luta</AUni> -<AUni ws="qvm-x-ame">luta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="86953b18-a9c8-4c24-a9dd-d03bface5c24" ownerguid="e0959576-1ac4-4900-8cec-cbf47580cd59"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">August</AUni> -<AUni ws="es">agosto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="276b5d68-0839-45da-93fa-b8d604b80136" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="869d0c7b-d792-45ab-bf31-fd9f6fea3107" ownerguid="67931f1c-9a0c-4d18-9762-e553c132256c"> -<Abbreviation> -<AUni ws="en">6.8.4.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a store or marketplace where things are sold.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Store, marketplace</AUni> -</Name> -<Questions> -<objsur guid="f2000cd0-a5fe-4b39-8412-193d6897760d" t="o" /> -<objsur guid="9267c030-bb2c-4786-9618-330447c3e278" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="869dabde-466d-4412-9700-d10e481637a8" ownerguid="742996cd-b87f-40a8-bdb3-dba74219bd73"> -<ExampleWords> -<AUni ws="en">room temperature, ambient temperature</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What words describe something that is neither hot nor cold?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="869e428e-06ce-4638-abb3-322704b95929" ownerguid="7d91c78d-7d8a-489a-861b-45f523787f40"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="06521b8e-554f-4dea-a1e8-57ceea4826ef" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="869eff25-acef-4c58-8949-cd27fcdd5eee" ownerguid="7f118a71-1c41-47fc-8e2a-ae45e885ff0b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="869f6955-6d41-4fda-ba3d-8da10db81a7a" ownerguid="4d8d52ab-8854-4a42-8e12-34604f635f67"> -<Form> -<AUni ws="qvm-x-ach">yanu</AUni> -<AUni ws="qvm-x-acl">yanu; yano</AUni> -<AUni ws="qvm-x-akh">yanu</AUni> -<AUni ws="qvm-x-akl">yanu; yano</AUni> -<AUni ws="qvm-x-ame">yanu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="86a2440b-148a-4c55-a49b-0bd8def5fd00" ownerguid="03352940-c220-4a32-a9a5-fc08d1d0dc71"> -<ExampleWords> -<AUni ws="en">garbage pit, rubbish heap, garbage dump, rubbish tip, compost pile, incinerator</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a place where people put garbage?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="86a40190-3765-4ed7-bc6e-630b3d19ad1c" ownerguid="5f0f5899-03f5-4d31-9b11-4a84db13c35d" /> -<rt class="CmDomainQ" guid="86a57369-63e4-418c-815c-ca709fb37caa" ownerguid="7bf05f4e-909f-40ca-b742-9be21eba9fbb"> -<ExampleWords> -<AUni ws="en">want to, would like to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) desire: the agent of the verb desires or wants to complete the action of the verb.</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="86ab235c-ffb3-4e95-9624-65f6185ec75e" ownerguid="a1ce19c4-d12c-46da-a718-6d03949b3db1"> -<ExampleWords> -<AUni ws="en">hunt with dog, hunting dog, hunting dog bell, take up the chase, catch the scent, follow the scent, corner an animal, tree an animal, bay (sound of a dog when following an animal)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to hunting with dogs?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="86ab2cab-0a45-4582-a15b-1fc181525883" ownerguid="2b846476-00cf-4d82-97a1-26e1eda880ca"> -<ExampleWords> -<AUni ws="en">be immature, act like a child</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to doing something immature?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="86acaaf0-94b1-4d7b-9321-31f30e03bd3a" ownerguid="691e7d9a-5191-4f78-ae21-b5de1e013a6f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">howl</AUni> -<AUni ws="es">aullar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="10eb7cf9-511c-47a3-ad08-af2d437e9052" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="86adba0e-55d6-4f8a-bbc1-da6ea235c05d" ownerguid="d0131ae8-e30a-4628-b07c-808ccc852cc7"> -<Form> -<AUni ws="qvm-x-ach">musqui</AUni> -<AUni ws="qvm-x-acl">musqui; musque</AUni> -<AUni ws="qvm-x-akh">muski</AUni> -<AUni ws="qvm-x-akl">muski; muske</AUni> -<AUni ws="qvm-x-ame">muski</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="86b5e60e-c55d-4797-a0a2-e6891fff7ec3" ownerguid="f12b8990-96e0-4f38-8395-52d4c360d4c7"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="86b66f59-3ca8-47ac-989d-645f7a9e219b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shuplu</AUni> -<AUni ws="qvm-x-acl">shuplu; shuplu; shuplo</AUni> -<AUni ws="qvm-x-akh">shuplu</AUni> -<AUni ws="qvm-x-akl">shuplu; shuplu; shuplo</AUni> -<AUni ws="qvm-x-ame">shuplu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shupllu.n</AUni> -<AUni ws="qvm-x-acl">*shupllu.n</AUni> -<AUni ws="qvm-x-akh">*shupllu.n</AUni> -<AUni ws="qvm-x-akl">*shupllu.n</AUni> -<AUni ws="qvm-x-ame">*shupllu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.642" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f91cfec2-eae2-4270-81ae-9faaf72695c9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shupllu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a6d56aab-4644-4a4c-a7cd-e8e62f49f8f2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4896d426-c884-475a-a761-b13346bd61e1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shupllu.n 
\entryTyp root 
\gENG blister 
\gSPN ampolla 
\e *shupllu.n 
\c N0 
\ach shuplu 
\akh shuplu 
\acl shuplu / _# 
\acl shuplu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shuplo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shuplu / _# 
\akl shuplu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shuplo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shuplu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="86b7a5d3-437a-4c52-a58b-feebd7acc02f" ownerguid="eb0c9e02-e4c1-4e5e-84b6-be63aaf439d5"> -<ExampleWords> -<AUni ws="en">nephew, niece</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to your sister's child?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="86b9a71b-ca76-4d73-97a5-3cf7adc6128f" ownerguid="f2646733-1cdb-4c11-8c7c-221bab794942"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="23e0aa74-790c-44e7-ac7f-ced4c150c4f6" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="9446991f-d7bf-4579-8651-ac262ddc0c8a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="86bb40c3-8674-42b4-9f54-58de9bda3fb4" ownerguid="4f19ab95-428a-4a0b-a069-ca8be6b72b08"> -<ExampleWords> -<AUni ws="en">make an appointment, arrange a visit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to agreeing to visit?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="86bc2487-be0b-4aae-8f0e-bb9a45207583" ownerguid="3ebcb976-eb76-4782-aacb-9f1c2514f994"> -<Form> -<AUni ws="qvm-x-ach">alcäbu</AUni> -<AUni ws="qvm-x-acl">alcäbu; alcäbu; alcäbo</AUni> -<AUni ws="qvm-x-akh">alcäbu</AUni> -<AUni ws="qvm-x-akl">alcäbu; alcäbu; alcäbo</AUni> -<AUni ws="qvm-x-ame">alcäbu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="86bdee4e-fb15-4d60-ad47-0b3e36ab1ba5" ownerguid="bfeba2a4-4479-49e9-838c-3baa2ad0fcae"> -<ExampleWords> -<AUni ws="en">type, kind, class, group, variety</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the class to which something belongs?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="86c02f45-e087-4593-9a66-898dcfe8d2d2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">carre:ta</AUni> -<AUni ws="qvm-x-acl">carre:ta</AUni> -<AUni ws="qvm-x-akh">carre:ta</AUni> -<AUni ws="qvm-x-akl">carre:ta</AUni> -<AUni ws="qvm-x-ame">carre:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+carreta</AUni> -<AUni ws="qvm-x-acl">+carreta</AUni> -<AUni ws="qvm-x-akh">+carreta</AUni> -<AUni ws="qvm-x-akl">+carreta</AUni> -<AUni ws="qvm-x-ame">+carreta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.920" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="867dd483-09fd-49fa-873c-eba38421284c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+carreta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="da70be73-7e29-4353-8694-b3bc175e185e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4e148dd0-c0d9-42cf-8f26-af5aa3fccae2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +carreta 
\entryTyp root 
\gENG car 
\gSPN carro 
\e +carreta 
\c N0 
\ach carre:ta 
\akh carre:ta 
\acl carre:ta 
\akl carre:ta 
\ame carre:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="86c052ea-2abe-4571-b374-5077392cc315"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">both</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="86c065ea-2420-4619-82d4-1d43527b3371" ownerguid="24398eec-edd1-449a-ad36-d609be24a79e"> -<Abbreviation> -<AUni ws="en">7.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to distributing things to several people.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Distribute</AUni> -</Name> -<Questions> -<objsur guid="9e4ad2ec-8c79-4eb8-a802-102603d83139" t="o" /> -<objsur guid="a6c9fc30-dbf3-4612-8367-78f733ebb506" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="86c0d1ca-b040-4511-baa8-c636dcade4e6" ownerguid="00364f0c-9a3a-4910-a82e-1ffbc4d4137f"> -<ExampleWords> -<AUni ws="en">do something for kicks, do something for the thrill of it</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to doing something in order to feel excited?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="86c12786-9b4a-42f7-98fe-1c8407c8bdba" ownerguid="627280f0-4f98-4b31-ad23-eabe37b002ad"> -<ExampleWords> -<AUni ws="en">thin, slender, slight, stringy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is thin?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="86c27056-e083-4db9-8ea8-8276c94ba50f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">corne:ta</AUni> -<AUni ws="qvm-x-acl">corne:ta</AUni> -<AUni ws="qvm-x-akh">corne:ta</AUni> -<AUni ws="qvm-x-akl">corne:ta</AUni> -<AUni ws="qvm-x-ame">corne:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+corneta</AUni> -<AUni ws="qvm-x-acl">+corneta</AUni> -<AUni ws="qvm-x-akh">+corneta</AUni> -<AUni ws="qvm-x-akl">+corneta</AUni> -<AUni ws="qvm-x-ame">+corneta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.192" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0b39a93f-8cc8-4c0c-96fc-e7e7312d7b5f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+corneta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1582eb0e-6a67-40ef-b405-f8ed78557d18" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b1318864-bc45-4d59-ad0e-500fe32dd107" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +corneta 
\entryTyp root 
\gENG cornet 
\gSPN corneta 
\e +corneta 
\c N0 
\ach corne:ta 
\akh corne:ta 
\acl corne:ta 
\akl corne:ta 
\ame corne:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="86c60f77-6ff9-4df2-9e54-3f6e108402af"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">a:</AUni> -<AUni ws="qvm-x-acl">a:</AUni> -<AUni ws="qvm-x-akh">a:</AUni> -<AUni ws="qvm-x-akl">a:</AUni> -<AUni ws="qvm-x-ame">a:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*a:</AUni> -<AUni ws="qvm-x-acl">*a:</AUni> -<AUni ws="qvm-x-akh">*a:</AUni> -<AUni ws="qvm-x-akl">*a:</AUni> -<AUni ws="qvm-x-ame">*a:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.609" /> -<DateModified val="2022-10-10 21:18:47.210" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="99a6c60a-cc23-46c7-964d-423fd92895b5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*a:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="54dea8e0-dbfd-4264-b47d-0143cc30e302" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="da998650-e325-4dc3-a2da-9079e7ae4256" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *a: 
\entryTyp root 
\gENG 
\gSPN 
\e *a: 
\c ONSHEV 
\mp NeverForeshortened 
\ach a: 
\akh a: 
\acl a: 
\akl a: 
\ame a: 
\mp +FinalC 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="86c79098-8e0d-4914-abc0-e22ad95a73fb" ownerguid="3428d24a-3bf7-40ad-84c4-5d5372be9647"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V0/V0 N0/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">NEGSTR</AUni> -<AUni ws="es">NEGFT</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f93a6705-e8f0-4c6d-a54c-bed2cba01ec5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoAffixAllomorph" guid="86c790d8-820c-4e15-81b9-d5bf73931b53" ownerguid="986b31ce-1a07-47f4-93aa-3048f8e0833d"> -<Form> -<AUni ws="qvm-x-ach">niynag</AUni> -<AUni ws="qvm-x-acl">niynag</AUni> -<AUni ws="qvm-x-akh">niynaq</AUni> -<AUni ws="qvm-x-akl">niynaq</AUni> -<AUni ws="qvm-x-ame">niynaq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="35058c7a-447a-4ee8-89bd-323da24bf7c5" t="r" /> -</PhoneEnv> -</rt> -<rt class="LexEntry" guid="86c8bff0-cf2e-4823-a850-9fde7ac0b5d1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">anchu; ancho</AUni> -<AUni ws="qvm-x-acl">anchu; anchu; ancho</AUni> -<AUni ws="qvm-x-akh">anchu; ancho</AUni> -<AUni ws="qvm-x-akl">anchu; anchu; ancho</AUni> -<AUni ws="qvm-x-ame">anchu; ancho</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ancho.1</AUni> -<AUni ws="qvm-x-acl">+ancho.1</AUni> -<AUni ws="qvm-x-akh">+ancho.1</AUni> -<AUni ws="qvm-x-akl">+ancho.1</AUni> -<AUni ws="qvm-x-ame">+ancho.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.769" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f4cc478b-3a8d-4581-b432-708d00f79374" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ancho.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="32b1b8cc-7f84-4aa6-96a2-d0d718432c64" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b7776ddd-cdb0-44dd-be97-a9d7e6d4ac5a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ancho.1 
\entryTyp root 
\gENG wide 
\gSPN ancho 
\e +ancho.1 
\c N0 
\ach anchu / ~_# 
\ach ancho / _# 
\akh anchu / ~_# 
\akh ancho / _# 
\acl anchu / ~_# 
\acl anchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ancho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl anchu / ~_# 
\akl anchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ancho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame anchu / ~_# 
\ame ancho / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="86ca4010-52b6-4117-bcd7-b8b12f4ca330" ownerguid="3fca793b-3f79-4972-ba71-3486ea899f5f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fast</AUni> -<AUni ws="es">ayunar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="318e90a6-c064-49c9-913f-c95b0b0920a7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="86cbe132-d800-4312-aa36-c0734dcc96e3" ownerguid="10b858d3-6b3b-48cb-8d7e-9359cce8c684"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="86cee8fb-c733-4bcf-86ac-a4cd3cead957" ownerguid="34c9408c-c3f7-49db-8bce-de7fa7da03d7"> -<ExampleWords> -<AUni ws="en">capture, round up, take someone prisoner, recapture</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to catching someone and not letting them leave?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="86cf087d-6033-42a6-bb97-6a97b822438d" ownerguid="b83e66f0-f907-42ff-b43b-34d85214708d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="86cf29f3-fedb-4375-9401-52c866a22ae6" ownerguid="69a13710-b558-4803-b5cd-99863cc2768a"> -<Form> -<AUni ws="qvm-x-ach">valienti; valiente</AUni> -<AUni ws="qvm-x-acl">valienti; valienti; valiente</AUni> -<AUni ws="qvm-x-akh">valienti; valiente</AUni> -<AUni ws="qvm-x-akl">valienti; valienti; valiente</AUni> -<AUni ws="qvm-x-ame">valienti; valiente</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="86dcdc62-5bc4-4e14-a6c3-fa92c3c6a3f1" ownerguid="1f4baeb7-dcaa-4c28-9956-a4818b4cc565"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="21aeeafa-7e29-41c3-956b-9f3d2e391d91" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="86ddb127-7dce-4c07-a652-d5d8be635812" ownerguid="6262e304-a954-41ac-bac6-3e066313f85c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="86e002fe-3918-4b1c-83f0-8e36424be2d3" ownerguid="27eb7861-04ed-42d1-b5e7-8a4c21fd798f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="0621de40-b91e-4036-a210-9544fa697411" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="86e5c062-d90f-476c-a363-264adfafedfa" ownerguid="9f3b4cab-dc8a-430e-88f3-d3002df64fb8"> -<Abbreviation> -<AUni ws="en">7.1.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.498" /> -<DateModified val="2022-9-23 16:55:8.498" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to moving various parts of the body.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Move a part of the body</AUni> -</Name> -<Questions> -<objsur guid="f9613b73-8937-45fd-98c4-eaa22a08a61d" t="o" /> -<objsur guid="a7e353b9-8061-45ba-a6c4-16917c10df50" t="o" /> -<objsur guid="02fd39af-35c4-4cf4-b496-626d5f40b077" t="o" /> -<objsur guid="5c01a347-3611-4326-bf43-247c8e4edb75" t="o" /> -<objsur guid="816af2da-7eff-46c5-be60-d17302d3960f" t="o" /> -<objsur guid="4900d929-fab4-413c-990e-8c579d2d9c4a" t="o" /> -<objsur guid="0d3f803c-d636-4104-8ec1-8b143395e8ca" t="o" /> -<objsur guid="5eee1459-c5f9-4225-bee3-5c293d774d15" t="o" /> -<objsur guid="1ab67a63-575a-400a-b155-4502f0da1634" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="2e97b83d-1152-473f-9cbe-347f0655041a" t="r" /> -<objsur guid="68ed3e51-ddc4-4cec-89ff-605259ac9fcf" t="r" /> -<objsur guid="bc8d0ad4-6ebf-4fa0-bc7e-60e8ec9c43db" t="r" /> -<objsur guid="e626c65e-eb79-4230-b07a-a6d975d3fe3d" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="86e88915-da73-41d2-8dec-04a61e14b00c" ownerguid="5bd29c33-dea2-48cf-8757-c9dce45df113"> -<Form> -<AUni ws="qvm-x-ach">cawari</AUni> -<AUni ws="qvm-x-acl">cawari; caware</AUni> -<AUni ws="qvm-x-akh">kawari</AUni> -<AUni ws="qvm-x-akl">kawari; kaware</AUni> -<AUni ws="qvm-x-ame">kawari</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="86e91e51-b23f-4ca3-953a-1f83721479a6" ownerguid="101c16f8-ec76-4ec7-895a-fd814fef51dd"> -<ExampleWords> -<AUni ws="en">alleviate, ease, anesthesia, anesthetic, general anesthesia, local anesthesia, anesthetize</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to treating pain?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="86e9f7e9-8c90-4cd3-ac3d-94a85c58bbb3" ownerguid="5dfd85c4-18ab-4790-bba6-a791f3e77cc6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sheets</AUni> -<AUni ws="es">sábanas</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e50bdd2e-e70a-4e63-85a8-ed558400bad2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="86eae6d1-f8be-4918-95a5-591c4e4f750e" ownerguid="b4e6c077-4f5e-44f3-8868-1f7ae3486585"> -<ExampleWords> -<AUni ws="en">bib, napkin (serviette), place mat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What utensils are used for catching spilled food?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="86eb3e40-5d39-4a64-9e41-55e366a67c7b" ownerguid="6daa3b80-7c0c-4f3a-93ae-d097c1cb5899"> -<Form> -<AUni ws="qvm-x-ach">lagui</AUni> -<AUni ws="qvm-x-acl">lagui; lague</AUni> -<AUni ws="qvm-x-akh">laqi</AUni> -<AUni ws="qvm-x-akl">laqi; laqe</AUni> -<AUni ws="qvm-x-ame">laqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="86ec2a0c-d6dc-49c6-b5f6-a87469dc371e" ownerguid="034238d6-7583-4103-a70a-64706a4d9af4"> -<Form> -<AUni ws="qvm-x-ach">ronca</AUni> -<AUni ws="qvm-x-acl">ronca</AUni> -<AUni ws="qvm-x-akh">ronca</AUni> -<AUni ws="qvm-x-akl">ronca</AUni> -<AUni ws="qvm-x-ame">ronca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="86eda7d6-aaeb-44de-96b6-3e5d93809c18" ownerguid="6e6a0b47-d155-4863-b044-52cdd4421783"> -<Form> -<AUni ws="qvm-x-ach">yanauya; yanauyä</AUni> -<AUni ws="qvm-x-acl">yanauya; yanauyä</AUni> -<AUni ws="qvm-x-akh">yanawya; yanawyä</AUni> -<AUni ws="qvm-x-akl">yanawya; yanawyä</AUni> -<AUni ws="qvm-x-ame">yanawya; yanawyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="86ee3a7f-e24a-4f05-8d4c-83b51ba9dca8" ownerguid="b2da94ae-ff9d-49e9-b8f2-9d6d3dc10db1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="3a018a0a-d0bc-4ef6-9287-bed19e0bcfc6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="86ee3f43-147b-4d01-b04c-3a502f602bd7" ownerguid="45ecdf38-a66d-4ed7-a47c-0757359db0c3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.awake</AUni> -<AUni ws="es">despertado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7d31ada1-8fca-4d89-8a40-53e346dc7022" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="86eee1a1-9163-4e4d-a053-a681d7b51126" ownerguid="390ad7fc-8360-4eae-8736-3aedc15ae659"> -<ExampleWords> -<AUni ws="en">compass, sextant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What other tools are used to find a place?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="86efc873-6edd-45c9-ac10-233b71678b67" ownerguid="0539de86-f407-4b3d-b1b8-028822fb9f26"> -<ExampleWords> -<AUni ws="en">repetition, recapitulation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to what is said a second time?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="86f3e67a-69df-4bed-aafa-e3deaeb26e90" ownerguid="35acdd1a-0ca5-446c-9192-97c42b36a3f3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">green.twig</AUni> -<AUni ws="es">rama</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="45ee963d-2666-443c-8098-defa07c513e0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="86f90eff-158b-4f6d-82e9-fab136dfd141" ownerguid="935da513-126e-4cab-8e07-625458821181"> -<Abbreviation> -<AUni ws="en">4.2.1.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.208" /> -<DateModified val="2022-9-23 16:55:8.208" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to an organization.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Organization</AUni> -</Name> -<OcmCodes> -<Uni>575 Sodalities</Uni> -</OcmCodes> -<Questions> -<objsur guid="2a9c9bc5-e51b-4c11-b8fe-aaf2077e31ea" t="o" /> -<objsur guid="5c0cc9bf-84e8-4094-98c4-b2dad9e756a9" t="o" /> -<objsur guid="14878b7b-cff0-40e5-8006-271c2b941359" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="e6c9fe4c-199e-4934-b622-739a85b0830d" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="e3a6f918-4b0f-4515-bd6c-4f3370bcbf67" t="o" /> -<objsur guid="e173f481-ec57-4d1c-b517-be38ccb038f5" t="o" /> -<objsur guid="92ef1096-bae2-4bc5-b4b8-c16f429c4867" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="86fac40a-81f5-4178-9dce-b715c913f789"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Runan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="86fc4505-aa88-4830-af02-85a84ae887a3" ownerguid="5a0dcf35-a145-40da-b4cb-8f8986835a2e"> -<Form> -<AUni ws="qvm-x-ach">suena</AUni> -<AUni ws="qvm-x-acl">suena</AUni> -<AUni ws="qvm-x-akh">suena</AUni> -<AUni ws="qvm-x-akl">suena</AUni> -<AUni ws="qvm-x-ame">suena</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="86fdf532-60dc-435a-9409-bf988114cdcf" ownerguid="3774a985-0599-41d2-853b-b83dc9356b3a"> -<Category> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</Category> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="4ba3e1c3-5415-419c-9a91-8b5c9e96bf7a" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="12ff3ad6-9f94-4450-b2ef-acdaef425998" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="86fe101f-30e2-477d-8931-ddf85b9af83e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cobra</AUni> -<AUni ws="qvm-x-acl">cobra</AUni> -<AUni ws="qvm-x-akh">cobra</AUni> -<AUni ws="qvm-x-akl">cobra</AUni> -<AUni ws="qvm-x-ame">cobra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cobra.n</AUni> -<AUni ws="qvm-x-acl">+cobra.n</AUni> -<AUni ws="qvm-x-akh">+cobra.n</AUni> -<AUni ws="qvm-x-akl">+cobra.n</AUni> -<AUni ws="qvm-x-ame">+cobra.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.132" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="498ec953-260e-4cfb-99ff-b6788958460c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cobra.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ade061f6-d8fb-4db8-a03a-f0cbdb94cf15" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="94c4959c-ba6d-4301-b62c-6d8764e7ce9f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cobra.n 
\entryTyp root 
\gENG cobra 
\gSPN cobra 
\e +cobra.n 
\c N0 
\ach cobra 
\akh cobra 
\acl cobra 
\akl cobra 
\ame cobra</Run> -</AStr> -</Custom> -</rt> -<rt class="PartOfSpeech" guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" ownerguid="ecf8c677-320a-452c-85c0-1f0df87b5be5"> -<Abbreviation> -<AUni ws="en">v</AUni> -</Abbreviation> -<AffixSlots> -<objsur guid="0eb1d65f-6889-40e2-a5ee-818feedf259c" t="o" /> -<objsur guid="2167bf6d-84f4-4209-b618-7a1edf05092a" t="o" /> -<objsur guid="2187f650-9ef3-4104-9740-f007f3b51ffe" t="o" /> -<objsur guid="257de7fb-dab6-4b87-848b-3fbb8f5c3e04" t="o" /> -<objsur guid="34426d22-8e6e-44f9-9308-73fe011a7617" t="o" /> -<objsur guid="4241ff27-a983-4a4f-b554-ba2444cca308" t="o" /> -<objsur guid="4cbb4780-6fd8-49fe-88d5-5efa3fa992de" t="o" /> -<objsur guid="5d7569d5-d194-43a3-8975-abfbf7ee2b2f" t="o" /> -<objsur guid="6b5fd694-545b-4dac-8fa7-cbce40f8838e" t="o" /> -<objsur guid="77569715-032a-48c9-97d9-e9802fb13f2e" t="o" /> -<objsur guid="b31b892c-cb26-4efd-b65c-29374c5e75b6" t="o" /> -<objsur guid="ca45d090-0c3b-4e36-9a40-58963588cdaf" t="o" /> -<objsur guid="cc7bce64-81a2-4c23-9cb0-ba8f7d274837" t="o" /> -</AffixSlots> -<AffixTemplates> -<objsur guid="41bf7d01-644e-4430-aab3-7662a94270ac" t="o" /> -</AffixTemplates> -<BackColor val="-1073741824" /> -<CatalogSourceId> -<Uni>Verb</Uni> -</CatalogSourceId> -<DateCreated val="2022-09-23 16:55:08.749" /> -<DateModified val="2022-12-07 20:55:20.615" /> -<Description> -<AStr ws="en"> -<Run ws="en">A verb is a part of speech whose members typically signal events and actions; constitute, singly or in a phrase, a minimal predicate in a clause; govern the number and types of other constituents which may occur in the clause; and, in inflectional languages, may be inflected for tense, aspect, voice, modality, or agreement with other constituents in person, number, or grammatical gender.</Run> -</AStr> -</Description> -<ForeColor val="6303632" /> -<Hidden val="False" /> -<InflectableFeats> -<objsur guid="e13ebd7a-824d-4405-8c23-e5a30f3d53a6" t="r" /> -</InflectableFeats> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Verb</AUni> -</Name> -<SortSpec val="0" /> -<StemNames> -<objsur guid="a177c679-0e2b-4632-9f01-6391c5a4a352" t="o" /> -<objsur guid="ee11e7e3-3838-48c4-88ec-3815091bab33" t="o" /> -</StemNames> -<SubPossibilities> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="o" /> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="o" /> -</SubPossibilities> -<UnderColor val="-1073741824" /> -<UnderStyle val="1" /> -</rt> -<rt class="LexSense" guid="8705376d-e298-463d-ae61-cf225ca918ce" ownerguid="dae5a6f9-9810-4a71-841d-1d76b2f4697f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">soles</AUni> -<AUni ws="es">soles</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="184191ad-3fa8-4637-b32b-d0295bffbc65" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8705fff8-ee7b-4f8c-be9c-63663f2b04cd" ownerguid="dbebc3bd-2d01-4d62-a009-866c18ee3527"> -<ExampleWords> -<AUni ws="en">contraceptive, condom, the pill</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What things are used to prevent pregnancy?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="87095b98-5ef6-45c2-abe7-47baa7629287" ownerguid="cf337287-c9fa-43d2-93c4-284f45e262c0"> -<ExampleWords> -<AUni ws="en">attack, a bout of, a touch of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a disease that lasts a short time?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="870aecd0-c62f-4da6-b37e-9d40fdca7d60" ownerguid="643ef0ba-b1ae-4562-accd-6e57fd2d3818"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">good</AUni> -<AUni ws="es">bueno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4fe3becf-b8ed-427c-9070-71ce8864d745" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8717faf8-97d9-48dc-80b6-dc76cabf7028" ownerguid="dafc4b97-2b70-4986-b2b4-c05eb060786d"> -<ExampleWords> -<AUni ws="en">accept, be acceptable to, be receptive to, take, take up, take someone up on something</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to accepting an offer?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="871819c6-e5de-47fa-ac8d-a42edf98fb2f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">llachu</AUni> -<AUni ws="qvm-x-acl">llachu; llachu; llacho</AUni> -<AUni ws="qvm-x-akh">llachu</AUni> -<AUni ws="qvm-x-akl">llachu; llachu; llacho</AUni> -<AUni ws="qvm-x-ame">llachu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llachu</AUni> -<AUni ws="qvm-x-acl">*llachu</AUni> -<AUni ws="qvm-x-akh">*llachu</AUni> -<AUni ws="qvm-x-akl">*llachu</AUni> -<AUni ws="qvm-x-ame">*llachu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.124" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1c8ff4e7-4b09-4db4-9c3e-f96e520f0bc6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llachu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4bad4a06-9995-4edf-a39a-d6db597356a6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9417f1c6-99cf-42fe-a925-36d5ea5ef914" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llachu 
\entryTyp root 
\gENG male.kid 
\gSPN chivo 
\e *llachu 
\c N0 
\ach llachu 
\akh llachu 
\acl llachu / _# 
\acl llachu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl llacho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl llachu / _# 
\akl llachu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl llacho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame llachu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8718e1ed-ba2e-41c4-a112-af2a9f137ac9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ino:ju</AUni> -<AUni ws="qvm-x-acl">ino:ju; ino:ju; ino:jo</AUni> -<AUni ws="qvm-x-akh">ino:ju</AUni> -<AUni ws="qvm-x-akl">ino:ju; ino:ju; ino:jo</AUni> -<AUni ws="qvm-x-ame">ino:ju</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+inojo</AUni> -<AUni ws="qvm-x-acl">+inojo</AUni> -<AUni ws="qvm-x-akh">+inojo</AUni> -<AUni ws="qvm-x-akl">+inojo</AUni> -<AUni ws="qvm-x-ame">+inojo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.822" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="99622f79-2a4a-4e3f-b3e2-958749dda08b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+inojo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9871cf97-df7e-4aa6-ab11-10c0d338c57b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cd0fbe16-177e-4fe0-ab74-cc74ad16483a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +inojo 
\entryTyp root 
\gENG dill 
\gSPN eneldo 
\e +inojo 
\c N0 
\ach ino:ju 
\akh ino:ju 
\acl ino:ju / _# 
\acl ino:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ino:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ino:ju / _# 
\akl ino:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ino:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ino:ju</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="871e5d73-6da2-4999-af4e-9a990a21bd16"> -<Form> -<Str> -<Run ws="en">mikatsin</Run> -</Str> -</Form> -</rt> -<rt class="LexSense" guid="871e6c62-7ae3-4c76-9ea3-a7f757d6016d" ownerguid="5b146ef5-e84b-4863-8075-8d9394ba0454"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="3144ec7b-f1bb-40df-ba34-9e759c69dc28" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">give.a.name</AUni> -<AUni ws="es">dar.nombre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="19418d3e-9360-4259-84ea-c01ec8fa2272" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="87209338-13af-4080-8fa3-99d5ef4e0929" ownerguid="a8ab3410-2af8-46d3-bd43-f01f90d33e1d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lose.conscnss</AUni> -<AUni ws="es">privarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="87651b9e-2735-4da0-8635-cdf42eb191f5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="87260e06-f99e-40f4-aaa8-7404dfc80216"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cente:na</AUni> -<AUni ws="qvm-x-acl">cente:na</AUni> -<AUni ws="qvm-x-akh">cente:na</AUni> -<AUni ws="qvm-x-akl">cente:na</AUni> -<AUni ws="qvm-x-ame">cente:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+centeno.1</AUni> -<AUni ws="qvm-x-acl">+centeno.1</AUni> -<AUni ws="qvm-x-akh">+centeno.1</AUni> -<AUni ws="qvm-x-akl">+centeno.1</AUni> -<AUni ws="qvm-x-ame">+centeno.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.110" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="305c79e2-21a0-4e61-bb64-c94a29064447" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+centeno.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e776ea6c-3687-495c-981d-188298228af8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="163b60d5-b72d-47f0-83ab-2d654b4938ab" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +centeno.1 
\entryTyp root 
\gENG 
\gSPN 
\e +centeno.1 
\c N0 
\ach cente:na 
\akh cente:na 
\acl cente:na 
\akl cente:na 
\ame cente:na 
\i EXO 9.32 Trïguta y centënataga
\f + 9.32 
\it Centënaga
\it* juc casta trïgumi caycan.
\f* manami ushacätsergantsu guepa muruy captin.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="87292506-1d69-4852-92ad-60137b34c2c1" ownerguid="2e5a80f9-35ae-4850-9627-be530832a781"> -<ExampleWords> -<AUni ws="en">sir, ma'am, your honor, your majesty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What terms of direct address are used to show respect?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="872b9ebc-d4c4-4996-8697-733573023c14"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">a:la</AUni> -<AUni ws="qvm-x-acl">a:la</AUni> -<AUni ws="qvm-x-akh">a:la</AUni> -<AUni ws="qvm-x-akl">a:la</AUni> -<AUni ws="qvm-x-ame">a:la</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ala</AUni> -<AUni ws="qvm-x-acl">+ala</AUni> -<AUni ws="qvm-x-akh">+ala</AUni> -<AUni ws="qvm-x-akl">+ala</AUni> -<AUni ws="qvm-x-ame">+ala</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.689" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="af4a1738-70d8-4b2b-a18c-bb564bffe1f3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ala</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c0ab6e4b-f54e-4425-8c56-a8f1121018ac" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0cfbf209-0fed-492c-96f7-9f1437ddf041" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ala 
\entryTyp root 
\gENG wing 
\gSPN ala 
\e +ala 
\c N0 
\ach a:la 
\akh a:la 
\acl a:la 
\akl a:la 
\ame a:la</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="872d87b0-7b5c-4ed6-9375-be0d29f3b4db" ownerguid="00e25183-b413-425e-b6a1-cba79632e3ea"> -<Form> -<AUni ws="qvm-x-ach">turitu</AUni> -<AUni ws="qvm-x-acl">turitu; turitu; turito</AUni> -<AUni ws="qvm-x-akh">turitu</AUni> -<AUni ws="qvm-x-akl">turitu; turitu; turito</AUni> -<AUni ws="qvm-x-ame">turitu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="873091b4-4a06-4ead-84de-cc254f8e1db8" ownerguid="02990ea1-29db-4ec9-9d39-5edc58f4b60c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">BN</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">antichrist</AUni> -<AUni ws="es">anticristo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a735fd91-8d22-47c7-8949-8782a8a27054" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="87359a0c-bb3a-4069-aaed-e36db05fe7c8" ownerguid="6187e620-89bd-4b9d-9896-0c0c788e7740"> -<ExampleWords> -<AUni ws="en">football, soccer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What is the sport called?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="87380222-ed33-4e02-bdef-17ec91f4b903" ownerguid="07e97f87-68ca-4d18-9f86-a326e0400947"> -<ExampleWords> -<AUni ws="en">line, band, row</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a line?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="87393d85-9ff8-448b-8b04-69abcd7d8905" ownerguid="2d92e248-1512-4e89-b886-425814c6dd32"> -<ExampleWords> -<AUni ws="en">chess tournament</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What is a group of games called?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="873a2cfb-bb33-4cb8-976f-1e2e5fe65323" ownerguid="f1092161-733a-4873-8885-7df06f52421f"> -<Form> -<AUni ws="qvm-x-ach">chö</AUni> -<AUni ws="qvm-x-acl">chö</AUni> -<AUni ws="qvm-x-akh">chö</AUni> -<AUni ws="qvm-x-akl">chö</AUni> -<AUni ws="qvm-x-ame">chaw</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="4d5106b0-9756-4fc2-a2e3-b3bb0373fd9b" t="r" /> -</PhoneEnv> -</rt> -<rt class="LexEntry" guid="873ef4a1-6694-485e-b894-7cf311fa11d5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gata</AUni> -<AUni ws="qvm-x-acl">gata</AUni> -<AUni ws="qvm-x-akh">qata</AUni> -<AUni ws="qvm-x-akl">qata</AUni> -<AUni ws="qvm-x-ame">qata</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qata.n</AUni> -<AUni ws="qvm-x-acl">*qata.n</AUni> -<AUni ws="qvm-x-akh">*qata.n</AUni> -<AUni ws="qvm-x-akl">*qata.n</AUni> -<AUni ws="qvm-x-ame">*qata.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.144" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2134b548-e24c-48a4-8fcc-09a474fc866e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qata.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6563bd31-5e43-47b0-9481-32e598a21b39" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d3a9e73a-0d96-44ae-a831-588c74fe2c0f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qata.n 
\entryTyp root 
\gENG cover 
\gSPN cubierto 
\e *qata.n 
\c N0 
\ach gata 
\akh qata 
\acl gata 
\akl qata 
\ame qata</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="873fa0b1-dbe7-4c01-8b7a-d6f9919ce0e4" ownerguid="8dfbf570-5ea3-4d27-8399-31a3029596cf"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="873fcd0a-0703-4e25-874d-dce7e2f7cdb7" ownerguid="f1092161-733a-4873-8885-7df06f52421f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 BN/N0 R0/R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">LOC</AUni> -<AUni ws="es">LOC</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d6e21f0e-f17e-413e-b186-416974e463f1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="8742d8c8-0797-4b47-8f77-04fb6475d9bf" ownerguid="29a5be6e-9941-4b90-8d56-727b860e6046"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cebäda</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cebäda</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">cebäda</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">cebäda</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">cebäda</Run> -</AStr> -</Form> -<Morph> -<objsur guid="4e3416e4-1ba3-4632-9add-d01459fa66ad" t="r" /> -</Morph> -<Msa> -<objsur guid="409a2bb3-32ed-46cb-9dec-be7c3d19c974" t="r" /> -</Msa> -<Sense> -<objsur guid="824ca435-d7a3-4031-9955-9dc63f7ef922" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="87484bc6-021f-43b5-9707-c26444f38c79" ownerguid="5d8cae53-6f77-494b-84d0-189c29205104" /> -<rt class="MoStemAllomorph" guid="874945d6-b395-4a6d-b487-89db615def75" ownerguid="abc378a7-42f5-4a04-aa74-d4b15ba502d6"> -<Form> -<AUni ws="qvm-x-ach">ejercitu; ejército</AUni> -<AUni ws="qvm-x-acl">ejercitu; ejercitu; ejercito</AUni> -<AUni ws="qvm-x-akh">ejercitu; ejército</AUni> -<AUni ws="qvm-x-akl">ejercitu; ejercitu; ejercito</AUni> -<AUni ws="qvm-x-ame">ejercitu; ejército</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="874b28f6-7f3e-48f6-b162-1d2ec5a97253" ownerguid="512f307e-b549-4028-a099-9efde1e250f1"> -<Form> -<AUni ws="qvm-x-ach">favor</AUni> -<AUni ws="qvm-x-acl">favor</AUni> -<AUni ws="qvm-x-akh">favor</AUni> -<AUni ws="qvm-x-akl">favor</AUni> -<AUni ws="qvm-x-ame">favor</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="874c2463-a6f7-410a-86e6-f77dfb4ef4a3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">paca:pa</AUni> -<AUni ws="qvm-x-acl">paca:pa</AUni> -<AUni ws="qvm-x-akh">paka:pa</AUni> -<AUni ws="qvm-x-akl">paka:pa</AUni> -<AUni ws="qvm-x-ame">paka:pa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*paka:pa</AUni> -<AUni ws="qvm-x-acl">*paka:pa</AUni> -<AUni ws="qvm-x-akh">*paka:pa</AUni> -<AUni ws="qvm-x-akl">*paka:pa</AUni> -<AUni ws="qvm-x-ame">*paka:pa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.656" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="16697f3a-dd88-4361-b71d-4b7360588190" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*paka:pa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6c36f347-52ed-435f-b9ad-3b674afab45c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="21c09cc4-7392-48d9-ba55-7dea028f2381" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *paka:pa 
\entryTyp root 
\gENG hiding.place 
\gSPN escondite 
\e *paka:pa 
\c N0 
\ach paca:pa 
\akh paka:pa 
\acl paca:pa 
\akl paka:pa 
\ame paka:pa</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="874f8415-fca2-49ce-923f-ff1d4a2b94d9" ownerguid="ee282470-00e2-43ad-bc40-f29bb41a37ad"> -<Evaluations> -<objsur guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="7b397642-f9e9-46e3-9b81-692a38858453" t="o" /> -<objsur guid="fd360ac5-1938-45b4-8393-f3da109ab986" t="o" /> -<objsur guid="fa6851b6-e276-4691-9851-32770f1c7f25" t="o" /> -<objsur guid="b412082e-9140-49e3-a15b-303f8ce03068" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="874fda98-24fc-420c-8c10-ce056f41f23e" ownerguid="e66c9cb1-376d-4b82-8763-1b5b7fcb3401"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="b1015e0e-410c-4213-8a2b-7791c4e8ad12" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="87512480-1309-4974-8c78-f5fe537aa1df" ownerguid="f99036a0-438b-45d0-9238-87c647f43d7f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">room</AUni> -<AUni ws="es">posada</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="24948353-8f72-4f21-87d3-a8a0bed3e858" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="87522279-e6b4-493b-8870-ad78ef9d30f2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tacmu</AUni> -<AUni ws="qvm-x-acl">tacmu; tacmo</AUni> -<AUni ws="qvm-x-akh">takmu</AUni> -<AUni ws="qvm-x-akl">takmu; takmo</AUni> -<AUni ws="qvm-x-ame">takmu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*takmu</AUni> -<AUni ws="qvm-x-acl">*takmu</AUni> -<AUni ws="qvm-x-akh">*takmu</AUni> -<AUni ws="qvm-x-akl">*takmu</AUni> -<AUni ws="qvm-x-ame">*takmu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.774" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f85523ae-78d3-4a9b-8d2b-486c477abd08" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*takmu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6892ebb3-30f2-4f77-a4f8-87fcad35770c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d714e7b6-6383-4094-9092-b5b607fd6e69" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *takmu 
\entryTyp root 
\gENG plow 
\gSPN arar 
\e *takmu 
\c V2 
\ach tacmu 
\akh takmu 
\acl tacmu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tacmo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl takmu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl takmo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame takmu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="8753cb69-cbdc-4620-97f1-3dfd495cd3fa" ownerguid="02b0fb37-fa6f-477c-b80b-17d424313e7b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">profesor</AUni> -<AUni ws="es">profesora</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="74983b44-7b4f-42a5-8e72-4b5c7363cc70" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="875b82af-dc70-4266-bf1e-4a6177876d17" ownerguid="bb4e0a69-db20-4757-beff-5dcb1c5e0f92"> -<ExampleWords> -<AUni ws="en">oppressor, persecutor, bully, slave driver, tyrant, dictator</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who oppresses?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="875d274d-c259-4a3e-89ae-3bb28c79c633" ownerguid="a42bd414-d390-4ccf-8200-6cd05a2c6243"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="875d833f-c5e3-4d7b-b055-e2cb9519d00f" ownerguid="5502544d-617e-4608-bd6b-80fc8ecf90bb"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiGloss" guid="87605aa2-e67d-4db0-b80f-f0903d389651" ownerguid="3e249782-7687-4f36-913b-87c2fde74739" /> -<rt class="MoStemAllomorph" guid="8761cb2c-4c89-4eb3-83fd-d6a0be3a709c" ownerguid="7bd72622-c2c5-4ecc-97ef-60bbbe9008a2"> -<Form> -<AUni ws="qvm-x-ach">uluyma</AUni> -<AUni ws="qvm-x-acl">uluyma</AUni> -<AUni ws="qvm-x-akh">uluyma</AUni> -<AUni ws="qvm-x-akl">uluyma</AUni> -<AUni ws="qvm-x-ame">uluyma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="87651b9e-2735-4da0-8635-cdf42eb191f5" ownerguid="a8ab3410-2af8-46d3-bd43-f01f90d33e1d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="87663e8f-ef05-490f-9489-09c32610c575" ownerguid="c114ea07-250d-4acb-918c-b2916f40f47b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ya</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ya</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ya</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ya</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ya</Run> -</AStr> -</Form> -<Morph> -<objsur guid="0266a2a0-8dee-41c8-9584-efdc790cb2f2" t="r" /> -</Morph> -</rt> -<rt class="StTxtPara" guid="87678ea1-48ab-4611-93a4-90311b59529a" ownerguid="bf3f1d61-0fb7-4d38-ad7b-0e74c2659ac5"> -<Contents> -<Str> -<Run ws="en">\p \v 12</Run> -<Run ws="qvm-x-akh"> Tsayno wilaptinmi José kayno nirqan: <<Sueñuynikicho kimsa rämakunata rikashqaykiqa kimsa junaqmi kaykan.</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="71fe498e-3cff-4b1a-b4ff-b95bd4917873" t="o" /> -</Segments> -</rt> -<rt class="LexSense" guid="8768e719-7051-47d3-9ad5-ed0d0364d431" ownerguid="3ebcb976-eb76-4782-aacb-9f1c2514f994"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">warily</AUni> -<AUni ws="es">al.cabo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fef4f06c-633e-45f8-b820-b5a63eff7937" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="876a0a66-d8fd-48c1-8c5a-8efc8029b8c2" ownerguid="7ee3ccb5-e6cb-4028-9af5-62ae782967b5"> -<ExampleWords> -<AUni ws="en">ore, iron, steel, metal, solder, scrap metal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What raw materials does a blacksmith use?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="876cdbaa-87ed-409a-bedc-9d443c277b1d" ownerguid="a1a48737-8d57-4702-9956-891c691d7b96"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="Segment" guid="87743ccd-2769-461b-b6a9-a636dbee42db" ownerguid="68bb7222-7270-4631-a9da-d513411ddc5b"> -<Analyses> -<objsur guid="03e6f578-8832-4fbc-9a21-2a92c745a174" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="87785207-54c9-46df-9084-dc2bcdd26426" ownerguid="52289137-40ed-4623-b5e6-af2e2f89588d"> -<Form> -<AUni ws="qvm-x-ach">ranya</AUni> -<AUni ws="qvm-x-acl">ranya</AUni> -<AUni ws="qvm-x-akh">ranya</AUni> -<AUni ws="qvm-x-akl">ranya</AUni> -<AUni ws="qvm-x-ame">ranya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8778e450-62bd-4f38-b2f2-1b74cb9e63ac"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">dio:sa</AUni> -<AUni ws="qvm-x-acl">dio:sa</AUni> -<AUni ws="qvm-x-akh">dio:sa</AUni> -<AUni ws="qvm-x-akl">dio:sa</AUni> -<AUni ws="qvm-x-ame">dio:sa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+diosa</AUni> -<AUni ws="qvm-x-acl">+diosa</AUni> -<AUni ws="qvm-x-akh">+diosa</AUni> -<AUni ws="qvm-x-akl">+diosa</AUni> -<AUni ws="qvm-x-ame">+diosa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.416" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="71045143-4815-45da-89c7-45bc30d2021b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+diosa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5a1b239d-3149-47d9-bd73-23e39acade88" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e9171333-0e3f-45b2-a402-beed423bdd77" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +diosa 
\entryTyp root 
\gENG goddess 
\gSPN diosa 
\e +diosa 
\c N0 
\ach dio:sa 
\akh dio:sa 
\acl dio:sa 
\akl dio:sa 
\ame dio:sa</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="877bd9da-caf0-4fe0-bc5d-b3c78af41450"> -<Form> -<Str> -<Run ws="en">fq</Run> -</Str> -</Form> -</rt> -<rt class="MoStemMsa" guid="8781e79e-c441-4d2b-96a7-2eb8f817b7bd" ownerguid="62c41d98-6222-4129-9b0e-5854f2463531"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="87841988-9f0c-4fad-a0c9-621b3bc0e742" ownerguid="a457eed9-12b7-48e6-8732-dcab5f23521e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8787db45-5fe7-4556-baf9-6c1fd876b075" ownerguid="83899b19-8b39-4bf0-b124-4c6188569ec8"> -<ExampleWords> -<AUni ws="en">add, addition</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to adding two numbers together?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="87897c58-8a06-4788-913c-350e70903fd6" ownerguid="ef9adcdb-0ca7-48d1-ba00-efb14a3dc879"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">owe</AUni> -<AUni ws="es">deber</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="535ecff8-9225-47c0-8066-07c5a828706f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="878a313b-a201-444e-8bdb-67048d60c63e" ownerguid="a2508183-7ea5-434e-a773-00d53087d27b"> -<Abbreviation> -<AUni ws="en">3.1.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.94" /> -<DateModified val="2022-9-23 16:55:8.94" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to ignoring someone--to not look at, listen to, or talk to someone because you think they are not important or you don't like them.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Ignore</AUni> -</Name> -<Questions> -<objsur guid="96325526-8d9d-4c11-84b6-5c2d005ba91c" t="o" /> -<objsur guid="34242f55-fb02-4d57-9e9d-e4f6e897523a" t="o" /> -<objsur guid="a4c84a8c-c560-4c16-8a7b-435f9d39c1bb" t="o" /> -<objsur guid="c3ebe1a8-429f-4a27-9b99-037ca3b9a42c" t="o" /> -<objsur guid="89bb046b-b808-433b-ab23-6a47cca03af9" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="e9ef98d9-8844-4804-88a5-614493d150f5" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="878c1c4d-41ff-4753-9f84-3210b7a6a56d" ownerguid="8f779877-7d86-4683-8a8b-298c7fc62815"> -<ExampleWords> -<AUni ws="en">speak incoherently, speak irrational, say nonsense, speak gibberish, No one could understand him. I can't understand you. I can't understand a word you are saying.</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to speaking so that people can't understand you?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8797c2b3-992c-422f-9403-4d4f60bf18ce" ownerguid="6b968f98-4c19-45ca-9921-92e3c8a0c78d"> -<Form> -<AUni ws="qvm-x-ach">jay</AUni> -<AUni ws="qvm-x-acl">jay</AUni> -<AUni ws="qvm-x-akh">jay</AUni> -<AUni ws="qvm-x-akl">jay</AUni> -<AUni ws="qvm-x-ame">hay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="87999a81-f4cf-45c3-9279-1b18083c1d11" ownerguid="4a5c8fdb-c8a0-49d2-a0d6-342428682d65"> -<ExampleWords> -<AUni ws="en">birth defect, genetic defect, congenital abnormality, deformity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to something that is wrong with a baby?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="879bf5f2-ba3f-4ff8-82f2-d4bedbdfbb37" ownerguid="8c41d2d1-6da6-4ab8-8b29-7e226192d64e"> -<ExampleWords> -<AUni ws="en">blood, drop of blood</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to blood?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="879d2c0d-31c0-4946-b832-5c21b74e6452" ownerguid="3596a5ba-f677-4047-b407-0980dfa44bc8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="f829581b-8169-4843-a74c-21fd704d6b9d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="StStyle" guid="879d3c6f-8e62-4887-a4af-27feb88c2af1" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="7d2c80cd-af87-4d56-8337-cfd389b775bb" t="r" /> -</BasedOn> -<Context val="0" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Block Quote</Uni> -</Name> -<Next> -<objsur guid="879d3c6f-8e62-4887-a4af-27feb88c2af1" t="r" /> -</Next> -<Rules> -<Prop firstIndent="0" leadingIndent="21000" trailingIndent="21000"></Prop> -</Rules> -<Structure val="0" /> -<Type val="0" /> -<Usage> -<AUni ws="en">Extended (paragraph size or larger) quotation</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="CmSemanticDomain" guid="879e66bc-af29-4fe4-86e0-0047973a57d6" ownerguid="5cc64831-c14a-4dbe-beba-214e725ad041"> -<Abbreviation> -<AUni ws="en">7.2.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.506" /> -<DateModified val="2022-9-23 16:55:8.506" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to walking with some difficulty such as stumbling--to miss your step because of hitting an object such as a stone, hole, or mud; staggering--to walk unsteadily because of weakness, illness, or drunkenness; or limping--to walk unevenly or with difficulty because of injury to a foot.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Walk with difficulty</AUni> -</Name> -<Questions> -<objsur guid="8efba512-e71c-42c8-9c3d-51030853ef84" t="o" /> -<objsur guid="09b0c84e-5e6c-4ac9-bea3-0f59877e101b" t="o" /> -<objsur guid="e7141fd4-5124-4ea4-a88f-ffc702ac4937" t="o" /> -<objsur guid="a5567cfe-bf31-4c3f-b974-0cb316243111" t="o" /> -<objsur guid="2da5c340-d5c8-43e9-bb29-14e22ca6a2c9" t="o" /> -<objsur guid="1ed54941-0ece-42bc-99c9-7a744f29fb78" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="3f535689-944a-4e9c-8f64-ec6395b7c8d7" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="87a14096-4aab-4c54-bd02-2f1b124ecf31" ownerguid="a9befe97-e7a8-4ceb-ba86-54cccacd9322"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="87a35be5-bf40-4c83-8187-2f2b7c05b9db" ownerguid="d2b61570-af54-44f3-846e-6d7ec9d3737f"> -<ExampleWords> -<AUni ws="en">office, reception area, atrium, foyer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What kinds of rooms are there in an office?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="87a3a562-6971-4ad9-88b5-3fd1e2f98675" ownerguid="822c9440-9d4e-4aba-9fd7-5c0365dab711"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="87a42488-93d2-4bca-a825-ee372936d8c0" ownerguid="1884cb09-d450-4435-9067-dbfbfff707e0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="87a497cb-dfe9-4b5a-8ad9-74d5216850e3" ownerguid="eb00b4c2-5b87-4ef8-9548-800fc5c9b524"> -<ExampleWords> -<AUni ws="en">wear away, corrode, erode</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something being damaged over a long period of time?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="87a61372-b529-41d0-892b-ca33273dc85c" ownerguid="8323cb77-8d19-44e9-b38c-ecfc2c78c0df"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="87aa8f63-d0e9-4c20-9afc-6acbac3111a9" ownerguid="411b3d52-60b2-47b4-844d-bbfdfa6a1c34"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="74395eab-4bdb-4ba0-b40e-d2deeef4eb47" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="ab98496d-8c4a-4be9-8086-ec5eaf8bde91" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="StTxtPara" guid="87ac5eab-8861-4950-9488-05704b3a2175" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">aywakumun</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="9733f3ae-f560-40df-b918-08ddf0177ce0" t="o" /> -</Segments> -</rt> -<rt class="MoStemMsa" guid="87ae63c6-4ffa-479c-907b-82d462c2e78c" ownerguid="652d7ef5-6430-41f5-8be0-6f6b7e978036"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="87b1cb45-e3cb-4a03-81e9-feff80c835ba" ownerguid="07476166-c5e5-4701-97d3-d97de8b5be6f"> -<ExampleWords> -<AUni ws="en">knowledge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to all the things a person knows?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="87b2272a-1d47-4216-bc78-5144dcf89ca2" ownerguid="d430d08a-9907-4e6d-8268-f17d8009f612"> -<Form> -<AUni ws="qvm-x-ach">tarräfa</AUni> -<AUni ws="qvm-x-acl">tarräfa</AUni> -<AUni ws="qvm-x-akh">tarräfa</AUni> -<AUni ws="qvm-x-akl">tarräfa</AUni> -<AUni ws="qvm-x-ame">tarräfa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="87b27fe2-2ab4-4b50-9740-afe8a625f600" ownerguid="c8e3c39c-d895-4e42-8e1e-1574137ba016"> -<ExampleWords> -<AUni ws="en">dump, run down place, shack, hut, log cabin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What is a very bad house called?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="87b2e2dd-a8ce-49cf-822a-b9f4b15c91b9" ownerguid="490e2a18-c880-45c4-8c39-56cd08458164"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="87b52512-0715-4ae2-956b-5734b831bfb6" ownerguid="8a3fa8c2-0b6b-431e-b6bb-3a87a3933331"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fiesta</AUni> -<AUni ws="es">fiesta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="15a39cf5-e4b4-4ad1-af0e-c9d3c8984d08" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="87b5e9a0-1e23-432c-b25c-643aa7ddd0a7" ownerguid="83899fe3-e1fd-4778-b427-830263df66c1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="87b7a537-f83e-4648-8fc5-02a00e9e6046" ownerguid="6d2abbb5-eb19-49f9-9063-5668b43b600f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="87bd0d45-8a94-41cb-9864-90d53a11a4b9" ownerguid="62b4ae33-f3c2-447a-9ef7-7e41805b6a02"> -<Abbreviation> -<AUni ws="en">4.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the law.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>56 Courts and Legal Procedures</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Law</AUni> -</Name> -<OcmCodes> -<Uni>670 Law</Uni> -</OcmCodes> -<Questions> -<objsur guid="b9d8d03d-b854-476c-b3ac-038bf76eefc4" t="o" /> -<objsur guid="3cd834dc-67c6-4f85-982b-6bb4f1073668" t="o" /> -<objsur guid="3252aa27-8b8e-46a9-9bfb-197762e7acda" t="o" /> -<objsur guid="b5aea5ff-786b-4255-a43e-e235c497f986" t="o" /> -<objsur guid="2437526e-450a-461c-a1c0-2a410b169db4" t="o" /> -<objsur guid="6ea516f2-b65c-4596-82b2-85d059ade18a" t="o" /> -<objsur guid="bf168202-45cc-4cca-90f8-8765948508c5" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="f51bcafa-e624-4555-b8f1-b5726d74734d" t="o" /> -<objsur guid="05a7bbdc-7cf5-47d3-830b-84e1591b11cc" t="o" /> -<objsur guid="1dc717b9-c5e8-4482-b076-22102da9d553" t="o" /> -<objsur guid="30ea3057-753d-4c4c-9b1f-ed30e569feea" t="o" /> -<objsur guid="85214614-ab45-4805-9014-092750d47511" t="o" /> -<objsur guid="bd7d0c9c-791e-4c34-b9ed-ebddad8f9724" t="o" /> -<objsur guid="6bf7569e-dc79-49da-9ce1-e2e03303828a" t="o" /> -<objsur guid="ef6d136e-ac1d-48b9-819d-252485534557" t="o" /> -<objsur guid="596ab399-e442-4afe-8796-633a49de65a7" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="87bfbe47-2a25-4617-a26b-95682d9a7288" ownerguid="e70966e8-1b07-4370-bf66-3d32468305c0"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="87c07b39-a869-4708-a470-aaf84129e41a" ownerguid="2e2e4992-66b2-4e84-8f9b-84ee7d598ccd"> -<Form> -<AUni ws="qvm-x-ach">guepsha</AUni> -<AUni ws="qvm-x-acl">guepsha</AUni> -<AUni ws="qvm-x-akh">qepsha</AUni> -<AUni ws="qvm-x-akl">qepsha</AUni> -<AUni ws="qvm-x-ame">qipsha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="87c1d1e6-79e0-4efd-bc73-19e5a382b009" ownerguid="f77053f4-ed5a-4376-bcba-17552ea447ba"> -<ExampleWords> -<AUni ws="en">prepared, ready</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that has been prepared?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="87c3ea63-5f26-462c-84c9-12e0ce3bccff" ownerguid="29d131d2-5e52-49e3-83b1-c872d331cf03"> -<ExampleWords> -<AUni ws="en">junk, garbage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something that is useless?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="87c499b3-5fab-45e0-9999-9c4fcbba1e2b" ownerguid="529140d1-6e8e-44fe-99f0-95289e933607"> -<Abbreviation> -<AUni ws="en">4.1.9.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to your children.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Son, daughter</AUni> -</Name> -<Questions> -<objsur guid="e09b73a3-eac9-4e27-ad56-be9b0a0b182c" t="o" /> -<objsur guid="da8adef7-3d6a-41e4-8839-616be733a362" t="o" /> -<objsur guid="09f8b04b-6962-4164-83c1-a735afa8d7d6" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="87c55aea-2c3f-44ce-81ec-18a153c5deb2" ownerguid="e931da8a-efc1-46cb-836a-72fba4a1eb4f"> -<Abbreviation> -<AUni ws="en">7.3.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.528" /> -<DateModified val="2022-9-23 16:55:8.528" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to sending something--to cause someone to take something somewhere.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15D Leave, Depart, Flee, Escape, Send</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Send</AUni> -</Name> -<Questions> -<objsur guid="d3c04d2f-bce5-46a3-bd0f-fd7aa7c877dc" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="87c66f8d-fa0f-4d8f-8426-36849facce27" ownerguid="f858278a-2727-4403-9cf0-565cdececb1e"> -<Question> -<AUni ws="en">(6) The verb forms that occur in these sentences will be coded according to the type of sentence, and according to which clause of the sentence they occur in.</AUni> -</Question> -</rt> -<rt class="LexSense" guid="87c81f31-d32c-4875-a529-0344dcc2ba43" ownerguid="bb18a3a5-232f-492b-8784-c7575525ab85"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8b54d0b0-7bc1-4731-bf88-bc752dd27ca9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="87c8dbb2-39ed-41bc-90c8-73ce77f8a6fd" ownerguid="e0e8af5a-04c1-49a1-9955-9a2af7879068"> -<ExampleWords> -<AUni ws="en">unapparent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that is not easily known?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="87c9b887-4271-4638-8cba-089d31f9219a" ownerguid="80771795-2a54-4533-8eea-477ce83305ac"> -<Category> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</Category> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="867e5109-2390-4d04-80e7-49b26377d5eb" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="65455bf3-6bf5-47b2-b56e-f2b5fa69198e" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiMorphBundle" guid="87cd4f4c-0860-4eb8-a192-2a51ae2c3a83" ownerguid="5b9e7504-0b50-4041-b4f2-c46c0f9fd854"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d8a5ab62-4847-4d85-8c1f-50af05630f2b" t="r" /> -</Morph> -<Msa> -<objsur guid="554634ac-1f6d-4bfc-8e9c-9d1dfeca4367" t="r" /> -</Msa> -<Sense> -<objsur guid="f442ba09-2469-4cfe-a31e-bcd120dbdec2" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="87cdcd18-d309-4913-8d74-ee421f703757"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">negocianti</AUni> -<AUni ws="qvm-x-acl">negocianti</AUni> -<AUni ws="qvm-x-akh">negocianti</AUni> -<AUni ws="qvm-x-akl">negocianti</AUni> -<AUni ws="qvm-x-ame">negocianti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+negociante</AUni> -<AUni ws="qvm-x-acl">+negociante</AUni> -<AUni ws="qvm-x-akh">+negociante</AUni> -<AUni ws="qvm-x-akl">+negociante</AUni> -<AUni ws="qvm-x-ame">+negociante</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.547" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ac6cd9b4-97e8-40a8-832e-50cd94fb2fb8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+negociante</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a7ef4cdb-46e2-4838-8228-dcac670abcf8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2e4e8d22-8f20-4212-90ad-2f2c63747b1a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +negociante 
\entryTyp root 
\gENG businessman 
\gSPN negociante 
\e +negociante 
\c N0 
\mp NeverChanged 
\ach negocianti 
\akh negocianti 
\acl negocianti 
\akl negocianti 
\ame negocianti 
\mp +FinalI</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="87d1d349-6b6c-4787-94f3-018efbf11aa6" ownerguid="99ee1558-34b2-4a1b-bfd2-eb4ccbfe7728"> -<ExampleWords> -<AUni ws="en">man of his word</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a reliable person?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="87d27b82-e7f3-47e2-b510-6e6127ee7375"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">melgay</AUni> -<AUni ws="qvm-x-acl">melgay</AUni> -<AUni ws="qvm-x-akh">melqay</AUni> -<AUni ws="qvm-x-akl">melqay</AUni> -<AUni ws="qvm-x-ame">milqay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*millaqay</AUni> -<AUni ws="qvm-x-acl">*millaqay</AUni> -<AUni ws="qvm-x-akh">*millaqay</AUni> -<AUni ws="qvm-x-akl">*millaqay</AUni> -<AUni ws="qvm-x-ame">*millaqay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.436" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9ef4d444-cec1-4e6f-af75-0f57d6febd71" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*millaqay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="732ca1cb-afa2-4b31-b30c-fb83fd085f10" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2a65a9fc-5720-4264-9eaf-429c10c2b751" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *millaqay 
\entryTyp root 
\gENG lap 
\gSPN encima.de.piernas 
\e *millaqay 
\c N0 
\mp +FinalC 
\ach melgay 
\akh melqay 
\acl melgay 
\akl melqay 
\ame milqay</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="87d2dae4-08ba-475d-b7b0-6a1769ae6607" ownerguid="7556a257-3703-40d3-91d3-c891fb250947"> -<ExampleWords> -<AUni ws="en">secular, profane</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to those areas of life outside of religion?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="87d344ac-94cc-49d6-9878-ebc86a933033" ownerguid="771e3882-f672-4e67-8580-edd82d7e5090"> -<Abbreviation> -<AUni ws="en">4.3.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.225" /> -<DateModified val="2022-9-23 16:55:8.225" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to helping someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>35A Help</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Help</AUni> -</Name> -<Questions> -<objsur guid="51718f22-f4e7-4437-a422-9d1b13e204fe" t="o" /> -<objsur guid="be64c74c-9658-4a52-a624-8bcfd748852f" t="o" /> -<objsur guid="3fe34fda-181b-49ad-86d8-5ba0becc4fb7" t="o" /> -<objsur guid="1b3e40b7-4ddb-4525-99d8-ef89a8f34f69" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="60e63d4a-702e-4238-a42b-d97f6be09c29" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="87d70374-b5a2-4e52-8a74-64ab8fc76ada" ownerguid="f5e4e66f-0445-4434-a143-c60c5390be39"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="87d83f83-2894-426e-94ea-e18155fe1b7a" ownerguid="d4521b0f-0703-48cc-94a0-f42ccc09959c"> -<ExampleWords> -<AUni ws="en">place, where, somewhere, anywhere, everywhere, nowhere, each place, wherever, which way</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What pronouns express indefinite reference of a place?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="87db1257-496d-49ec-abf5-2ef8c71cb210"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yacu</AUni> -<AUni ws="qvm-x-acl">yacu; yacu; yaco</AUni> -<AUni ws="qvm-x-akh">yaku</AUni> -<AUni ws="qvm-x-akl">yaku; yaku; yako</AUni> -<AUni ws="qvm-x-ame">yaku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yaku.n</AUni> -<AUni ws="qvm-x-acl">*yaku.n</AUni> -<AUni ws="qvm-x-akh">*yaku.n</AUni> -<AUni ws="qvm-x-akl">*yaku.n</AUni> -<AUni ws="qvm-x-ame">*yaku.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.719" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4b20993f-e784-4549-be57-d4e73ee89f97" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yaku.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="70d57e02-8751-4574-b1ac-7c0ea2f07724" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a4b55375-5c47-493b-a36d-50b2b70849b9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yaku.n 
\entryTyp root 
\gENG water 
\gSPN agua 
\e *yaku.n 
\c N0 
\ach yacu 
\akh yaku 
\acl yacu / _# 
\acl yacu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl yaco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yaku / _# 
\akl yaku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl yako +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame yaku</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="87dd09b8-689c-4a56-b3f6-846a849f71b8" ownerguid="6137239a-b469-46be-b7cb-b9ac22fcc195"> -<Abbreviation> -<AUni ws="en">3.6.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.184" /> -<DateModified val="2022-9-23 16:55:8.184" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to correcting a mistake.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Correct</AUni> -</Name> -<Questions> -<objsur guid="9a4c2ee7-41c2-4e58-a5aa-5179ef9506f5" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="87dd5458-ac07-4851-a2b2-7ee4ef9441cb" ownerguid="96fd0e4c-e683-4ad7-b558-a1f4c4481442"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2KI 25.14 Tsaynoglami apacärergan broncipita rurashgan tenäzacunata, pälancunata, lipta jorgucunata y plätu maylacunantapis.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="87ddd0ab-a5ba-4a76-8d5a-302555ba2034" ownerguid="31777669-e37b-4b77-9cce-0d8c33f6ebb9"> -<ExampleWords> -<AUni ws="en">swampy, marshy, boggy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe an area that is a swamp?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="87dddc72-9aa0-4238-8c39-bdfceca8175a" ownerguid="1de2cef5-3a2d-45c1-8cb6-06b2ac087907"> -<Question> -<AUni ws="en">(4) complement to words of believing</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="87deef96-4e49-475f-be71-8c291c96bf76" ownerguid="2470ad05-636e-4c85-96ab-cd880da58741"> -<ExampleWords> -<AUni ws="en">Catholic, Protestant, Baptist, Presbyterian, Methodist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What are the names of the sects?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="87e3acc8-35e4-47d9-bbef-f4f9415b317f" ownerguid="a4957c98-c53d-40c3-8412-03c4ae81c1b3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">title</AUni> -<AUni ws="es">título</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="01cef8d7-dd6d-4189-991c-98d99404a940" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="87e3f560-7e9a-450a-9185-6ad4f5c6dc83" ownerguid="1de2cef5-3a2d-45c1-8cb6-06b2ac087907"> -<Question> -<AUni ws="en">(1) subordinating: Often there are special verb forms or morphemes associated with the verb that occur obligatorily in subordinate clauses of certain types. The extent to which such morphemes can be said to have "meaning" varies, since they often co-occur with other markers of subordination. Their function is primarily to signal the type of subordinate clause.</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="87e42540-8dd6-49e9-b866-f958781af29e" ownerguid="d27db482-9b02-4441-9078-cccc914c7d99"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="87e53fd3-c6e6-462f-a3b5-a89202285d8c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ajayta; ajayta:</AUni> -<AUni ws="qvm-x-acl">ajayta; ajayta:</AUni> -<AUni ws="qvm-x-akh">ajayta; ajayta:</AUni> -<AUni ws="qvm-x-akl">ajayta; ajayta:</AUni> -<AUni ws="qvm-x-ame">ahayta; ahayta:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ahayta:</AUni> -<AUni ws="qvm-x-acl">*ahayta:</AUni> -<AUni ws="qvm-x-akh">*ahayta:</AUni> -<AUni ws="qvm-x-akl">*ahayta:</AUni> -<AUni ws="qvm-x-ame">*ahayta:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.669" /> -<DateModified val="2022-10-10 21:18:47.215" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f8a3e655-f7f8-4780-bc1a-af3a90d4623e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ahayta:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6dc50e0e-9583-43fa-a6d4-4161a7edcfda" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="48e41fd3-9da8-466f-bf16-9145f3db4aa5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ahayta: 
\entryTyp root 
\gENG 
\gSPN 
\e *ahayta: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach ajayta foreshortened 
\ach ajayta: 
\akh ajayta foreshortened 
\akh ajayta: 
\acl ajayta foreshortened 
\acl ajayta: 
\akl ajayta foreshortened 
\akl ajayta: 
\ame ahayta foreshortened 
\ame ahayta:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="87e65917-ee59-4f81-9082-de2e15af4a70" ownerguid="d4521b0f-0703-48cc-94a0-f42ccc09959c"> -<ExampleWords> -<AUni ws="en">person, who, someone, anyone, everyone, no one, each one, whoever</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What pronouns express indefinite reference of a person?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="87eacfb9-5de7-4438-ae3b-a4d06b446aa9" ownerguid="e519d730-f528-44f5-8241-b0fe815c79f6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="87eb572c-bae2-45d8-a36a-919561b55d0d" ownerguid="935da513-126e-4cab-8e07-625458821181"> -<Abbreviation> -<AUni ws="en">4.2.1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.208" /> -<DateModified val="2022-9-23 16:55:8.208" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a crowd or group of people.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>11 Groups and Classes of Persons and Members of Such Groups and Classes; 11A General</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Crowd, group</AUni> -</Name> -<OcmCodes> -<Uni>571 Social Relationships and Groups</Uni> -</OcmCodes> -<Questions> -<objsur guid="afea2f35-94d7-4ab6-89d9-3b0bf54a9dec" t="o" /> -<objsur guid="e040d7b7-1fec-44ef-ae8e-0ae3f219bc2a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="87ecf1cf-9c1f-49c9-9f0e-a3d1d9710922"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guewi</AUni> -<AUni ws="qvm-x-acl">guewi; guewe</AUni> -<AUni ws="qvm-x-akh">qewi</AUni> -<AUni ws="qvm-x-akl">qewi; qewe</AUni> -<AUni ws="qvm-x-ame">qiwi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qiwi</AUni> -<AUni ws="qvm-x-acl">*qiwi</AUni> -<AUni ws="qvm-x-akh">*qiwi</AUni> -<AUni ws="qvm-x-akl">*qiwi</AUni> -<AUni ws="qvm-x-ame">*qiwi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.216" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f08079cf-88ea-4dce-b541-aa50579628b1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qiwi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="df85bbe4-b620-4388-a81b-86b42f6d803c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="46f6adc5-c7d1-4fcb-8499-9aee356a3af2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qiwi 
\entryTyp root 
\gENG pick 
\gSPN coger 
\e *qiwi 
\c V2 
\mp +FinalI 
\ach guewi 
\akh qewi 
\acl guewi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl guewe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qewi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qewe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qiwi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="87ed45e4-6cd1-4e9a-91c7-91462cc0663b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">janansha</AUni> -<AUni ws="qvm-x-acl">janansha</AUni> -<AUni ws="qvm-x-akh">janansha</AUni> -<AUni ws="qvm-x-akl">janansha</AUni> -<AUni ws="qvm-x-ame">hanansha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hanansha</AUni> -<AUni ws="qvm-x-acl">*hanansha</AUni> -<AUni ws="qvm-x-akh">*hanansha</AUni> -<AUni ws="qvm-x-akl">*hanansha</AUni> -<AUni ws="qvm-x-ame">*hanansha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.660" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c423d8eb-7b1b-4a4c-add7-7662dddd7148" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hanansha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3c749405-26bc-49be-b227-5d2cad59d98a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7a3ff0b8-16d5-44be-9cca-75bddb4f41e2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hanansha 
\entryTyp root 
\gENG 
\gSPN 
\e *hanansha 
\c V1 
\ach janansha 
\akh janansha 
\acl janansha 
\akl janansha 
\ame hanansha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="87edda04-8af2-47bc-aae0-30cb5b751edb" ownerguid="aabbaf80-1c6b-4613-86a6-c6cf76d5a56c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JER 1.13 Norti kaq läducho manka timpur puwaykaqtami rikaykä. NOTA: Wakin runakunaqa püsaykaqtami nipäkun.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="87eefbd9-227c-403e-bd40-8f1346c7c106" ownerguid="339f54a5-125b-435f-bf37-cfc2a2bd26d3"> -<ExampleWords> -<AUni ws="en">frown (in disapproval or worry), gape, grimace (in pain), pout, scowl, snarl, start</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making a particular expression?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="87f3106b-69de-4cb1-9efc-b19cda92fe96"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">carácter; caracter</AUni> -<AUni ws="qvm-x-acl">carácter; caracter</AUni> -<AUni ws="qvm-x-akh">carácter; caracter</AUni> -<AUni ws="qvm-x-akl">carácter; caracter</AUni> -<AUni ws="qvm-x-ame">carácter; caracter</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+carácter</AUni> -<AUni ws="qvm-x-acl">+carácter</AUni> -<AUni ws="qvm-x-akh">+carácter</AUni> -<AUni ws="qvm-x-akl">+carácter</AUni> -<AUni ws="qvm-x-ame">+carácter</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.62" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f6b3b505-180a-4ebb-967f-40c036abe0d2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+carácter</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0e6f9eb3-a39b-4735-b94b-3571220f4056" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2028a034-cff2-4b1c-be05-a4088a8f8a84" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +carácter 
\entryTyp root 
\gENG character 
\gSPN carácter 
\e +carácter 
\c N0 
\mp +FinalC 
\ach carácter / _# 
\ach caracter / ~_# 
\akh carácter / _# 
\akh caracter / ~_# 
\acl carácter / _# 
\acl caracter / ~_# 
\akl carácter / _# 
\akl caracter / ~_# 
\ame carácter / _# 
\ame caracter / ~_# 
\i PRO 16.32 Jucta dominanantsipa trucanga quiquintsipa caracternintsita dominacushgantsimi mas ali caycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="87f68ae3-e8a8-4e6f-b72c-437f4d3d060e" ownerguid="5af67a6a-6f24-49b5-b2d6-a4271cc7f14a"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="87f728c9-6808-47ea-b023-95627b8077ec"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">masma</AUni> -<AUni ws="qvm-x-acl">masma</AUni> -<AUni ws="qvm-x-akh">masma</AUni> -<AUni ws="qvm-x-akl">masma</AUni> -<AUni ws="qvm-x-ame">masma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*masma.v</AUni> -<AUni ws="qvm-x-acl">*masma.v</AUni> -<AUni ws="qvm-x-akh">*masma.v</AUni> -<AUni ws="qvm-x-akl">*masma.v</AUni> -<AUni ws="qvm-x-ame">*masma.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.356" /> -<DateModified val="2022-10-10 21:18:47.204" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="94d652da-65fc-4ae8-994e-8ece5f57f05a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*masma.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="654aa1aa-7c5a-4720-8709-6b266367d96f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1b01bd53-1817-48a3-bf44-3db102aa08d3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *masma.v 
\entryTyp root 
\gENG 
\gSPN 
\e *masma.v 
\c V1 
\ach masma 
\akh masma 
\acl masma 
\akl masma 
\ame masma 
\mcc *masma.v / ~_ 3 
\i Abraham, Isaac y Jacob respitashgan |Tayta Dios| promitishgannog bendicionta goyculäshunqui canan caycashgayquipita waranga cuti masman mirapäcunayquipag.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="87fba5b9-fc43-4f29-a61b-a764408b277f" ownerguid="58f9004c-69b5-444d-a932-842c08d6907d"> -<Form> -<AUni ws="qvm-x-ach">asirta</AUni> -<AUni ws="qvm-x-acl">asirta</AUni> -<AUni ws="qvm-x-akh">asirta</AUni> -<AUni ws="qvm-x-akl">asirta</AUni> -<AUni ws="qvm-x-ame">asirta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="87fd66f8-8dc3-415f-971b-309e2127ddb2" ownerguid="529f86f1-b0dd-4706-9196-97797adab7a2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="880417ee-b348-4ed0-9a03-37ebc48f9aac" ownerguid="4275df2e-d4f6-461a-9279-39e0712dc082"> -<ExampleWords> -<AUni ws="en">go with, set off, match, go together, complement, matching, blend in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words indicate that something looks good with another thing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8804bc83-0861-4e56-8a1a-7ad10fae4bb2" ownerguid="77d1610f-4757-46de-b5f8-e127dc270dfd"> -<ExampleWords> -<AUni ws="en">loom</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What tools are used to weave?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8805bb9a-2261-45e4-8b80-0feb74226aec" ownerguid="1c8d22d3-7a3d-489e-98f7-387b87ca10db"> -<Form> -<AUni ws="qvm-x-ach">chicha</AUni> -<AUni ws="qvm-x-acl">chicha</AUni> -<AUni ws="qvm-x-akh">chicha</AUni> -<AUni ws="qvm-x-akl">chicha</AUni> -<AUni ws="qvm-x-ame">chicha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="880647e5-6543-46dd-9178-8edae9272add" ownerguid="a42db5b4-6317-4d3f-beff-cb92dbaca914"> -<Abbreviation> -<AUni ws="en">3.2.2.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.103" /> -<DateModified val="2022-9-23 16:55:8.103" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to being willing to learn or unwilling to learn.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>27E Be Willing To Learn</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Willing to learn</AUni> -</Name> -<Questions> -<objsur guid="36938519-4e05-4c02-a968-10b50ac6f18b" t="o" /> -<objsur guid="09e54276-03e9-47d0-9525-539e272e9c78" t="o" /> -<objsur guid="7799e62f-888d-4956-bbb4-4d3c08871c33" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="8806b9c5-069e-4835-8d2d-ee2493f686b5" ownerguid="196f81d0-6a1a-4cc0-936a-367423ff485c"> -<ExampleWords> -<AUni ws="en">fall into (a pit)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to being caught in a trap?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8806e854-ce53-4057-8476-e8cb49d5e4f7" ownerguid="6f7fa8b9-1610-432a-b7a5-06f5a6db505c"> -<Form> -<AUni ws="qvm-x-ach">millón; millon</AUni> -<AUni ws="qvm-x-acl">millón; millon</AUni> -<AUni ws="qvm-x-akh">millón; millon</AUni> -<AUni ws="qvm-x-akl">millón; millon</AUni> -<AUni ws="qvm-x-ame">millón; millon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="88093fc5-373f-4914-8d2f-6bff1058e409" ownerguid="a359970c-b836-4bda-b58a-f7bb09e31825"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">touch</AUni> -<AUni ws="es">tocar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bba4e8fa-0879-4218-be93-1d9d39f9dc93" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="880d12b1-fa64-4a4b-801d-c3b45f43792f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alumnu; alumno</AUni> -<AUni ws="qvm-x-acl">alumnu; alumnu; alumno</AUni> -<AUni ws="qvm-x-akh">alumnu; alumno</AUni> -<AUni ws="qvm-x-akl">alumnu; alumnu; alumno</AUni> -<AUni ws="qvm-x-ame">alumnu; alumno</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+alumno</AUni> -<AUni ws="qvm-x-acl">+alumno</AUni> -<AUni ws="qvm-x-akh">+alumno</AUni> -<AUni ws="qvm-x-akl">+alumno</AUni> -<AUni ws="qvm-x-ame">+alumno</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.719" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ffd9c2c3-b01b-42a6-bb03-12c9f13215f0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+alumno</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1946d320-2b71-4ea6-99c2-b26c655a4ef4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="257f89b1-55c9-42bd-88f2-f35b829a7a66" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +alumno 
\entryTyp root 
\gENG student 
\gSPN alumno 
\e +alumno 
\c N0 
\ach alumnu / ~_# 
\ach alumno / _# 
\akh alumnu / ~_# 
\akh alumno / _# 
\acl alumnu / ~_# 
\acl alumnu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl alumno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl alumnu / ~_# 
\akl alumnu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl alumno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame alumnu / ~_# 
\ame alumno / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="880e2332-b058-4d0e-9cea-1f1e826a43e8" ownerguid="0a1ad4c9-8bf3-448b-a27f-611813b305de"> -<ExampleWords> -<AUni ws="en">underlay, underlie</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to being under something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="880f9aff-b7b6-47a8-8b2c-8222b95c4db3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">garbanzu; garbanzo</AUni> -<AUni ws="qvm-x-acl">garbanzu; garbanzu; garbanzo</AUni> -<AUni ws="qvm-x-akh">garbanzu; garbanzo</AUni> -<AUni ws="qvm-x-akl">garbanzu; garbanzu; garbanzo</AUni> -<AUni ws="qvm-x-ame">garbanzu; garbanzo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+garbanzo</AUni> -<AUni ws="qvm-x-acl">+garbanzo</AUni> -<AUni ws="qvm-x-akh">+garbanzo</AUni> -<AUni ws="qvm-x-akl">+garbanzo</AUni> -<AUni ws="qvm-x-ame">+garbanzo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.599" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d61d5180-4f13-433b-b22d-1751177a7c6e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+garbanzo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cd88982c-5532-4c95-ae7a-7d7f804945d2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e303419a-7916-465a-a412-94cb4bb0e53e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +garbanzo 
\entryTyp root 
\gENG 
\gSPN 
\e +garbanzo 
\c N0 
\ach garbanzu / ~_# 
\ach garbanzo / _# 
\akh garbanzu / ~_# 
\akh garbanzo / _# 
\acl garbanzu / ~_# 
\acl garbanzu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl garbanzo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl garbanzu / ~_# 
\akl garbanzu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl garbanzo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame garbanzu / ~_# 
\ame garbanzo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="8812573a-bfe8-4119-bae0-40c0104d96ed" ownerguid="427842fe-e98f-4e25-9720-00122ce5b5e9"> -<Form> -<AUni ws="qvm-x-ach">achalau</AUni> -<AUni ws="qvm-x-acl">achalau</AUni> -<AUni ws="qvm-x-akh">achalaw</AUni> -<AUni ws="qvm-x-akl">achalaw</AUni> -<AUni ws="qvm-x-ame">achalaw</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8813091d-1989-4cf9-87ba-12deb754367e" ownerguid="975d0109-1bba-4b0e-85b8-2c6b51c8e074"> -<ExampleWords> -<AUni ws="en">sit on, mount</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to sitting on something?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="8816dbda-35a6-48c1-96ad-269ff48d1c1c" ownerguid="df4065f0-3967-4b43-bf1a-ab9627c48aed"> -<Form> -<AUni ws="qvm-x-ach">pä</AUni> -<AUni ws="qvm-x-acl">pä</AUni> -<AUni ws="qvm-x-akh">pä</AUni> -<AUni ws="qvm-x-akl">pä</AUni> -<AUni ws="qvm-x-ame">pä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8817ffe8-8804-4a14-92e6-7ceca65d5a4b" ownerguid="afc25fbb-9060-4af2-8225-3fddbab2227d"> -<ExampleWords> -<AUni ws="en">bearable, endurable, tolerable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a situation that a person can endure?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="88189b13-4ca9-4180-a7e4-e56c5f2f2ce3" ownerguid="8216627d-9d20-4a5c-8bfd-0709c16e7a08"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">I own more land than you.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">more, greater, higher, to a greater extent, to a greater degree</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is more than another thing in number or amount?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="881d8531-75f6-4a6f-8601-a06c51f65c7f" ownerguid="c0bdd8e0-ecb8-4016-9bfd-5373e9538f30"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tickle</AUni> -<AUni ws="es">hacer.cosquilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ff69764c-fc37-4a40-8b44-f51cbd61b242" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="8822354b-4d84-4bd1-b7ce-c56c7614584c" ownerguid="65d1072a-2120-4518-a2d8-e9fcf31ce3c3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="88239bd1-1eec-4fa5-8bc9-2e2d59bda62a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yapa</AUni> -<AUni ws="qvm-x-acl">yapa</AUni> -<AUni ws="qvm-x-akh">yapa</AUni> -<AUni ws="qvm-x-akl">yapa</AUni> -<AUni ws="qvm-x-ame">yapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yapa</AUni> -<AUni ws="qvm-x-acl">*yapa</AUni> -<AUni ws="qvm-x-akh">*yapa</AUni> -<AUni ws="qvm-x-akl">*yapa</AUni> -<AUni ws="qvm-x-ame">*yapa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.739" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="80384e26-b64d-49c9-9feb-ffa7c9e562fa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yapa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a37d219b-b791-482f-80af-99377e0fc8b5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5725c059-943d-466e-8b17-68426e518750" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yapa 
\entryTyp root 
\gENG add.to 
\gSPN añadir 
\e *yapa 
\c V2 
\ach yapa 
\akh yapa 
\acl yapa 
\akl yapa 
\ame yapa 
\mcc *yapa / ~_ [y]</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="8824aa7a-25c9-4c58-8bcc-437cc2fd173e" ownerguid="695acfa7-6bb2-4cff-9724-297db4c0468a"> -<Category> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</Category> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="7c9fc0dc-0120-48b8-8d70-211eb72069ef" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="5f59a3fb-3756-4cec-b9bc-5cee90b1e040" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="8825d54f-9ba5-4be3-8c2f-92edd14f4277" ownerguid="fd2ee979-9301-46e9-ac89-1243592d6b9b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">turn</AUni> -<AUni ws="es">voltear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="11f98281-761a-4a13-91fe-b565ef42762a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="8825f180-b774-47d3-9faa-e76a889e064f" ownerguid="008cecc8-8fcc-439a-88eb-d8bd404d5da9"> -<Definition> -<AStr ws="en"> -<Run ws="en">third person possessive</Run> -</AStr> -<AStr ws="es"> -<Run ws="es">tercera persona posesiva</Run> -</AStr> -</Definition> -<Gloss> -<AUni ws="en">3P</AUni> -<AUni ws="es">3P</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="88269184-d033-454e-b750-559d5f53287c" ownerguid="fcd22c85-7ee1-4d31-8633-9dbd32344211"> -<Abbreviation> -<AUni ws="en">7.2.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to moving into something, such as a house or an area.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15H Come/Go Into</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Move in</AUni> -</Name> -<Questions> -<objsur guid="a49fc2a5-c581-4d6e-9268-f67517b73ff6" t="o" /> -<objsur guid="4aa75f34-9e23-469f-b703-4a020671a37c" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="d95ed463-ac64-4004-9c3b-0fce2f7639be" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="882b377a-7fc3-4dcb-a7a8-05b9a780b601" ownerguid="146daca8-869f-4b32-bbc4-b26bccd0da7e"> -<Form> -<AUni ws="qvm-x-ach">derëcha</AUni> -<AUni ws="qvm-x-acl">derëcha</AUni> -<AUni ws="qvm-x-akh">derëcha</AUni> -<AUni ws="qvm-x-akl">derëcha</AUni> -<AUni ws="qvm-x-ame">derëcha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="8830b9b1-4d3d-41cc-bd82-0bad7f121296" ownerguid="b0cecf9b-06f2-4f96-88a2-f56cd00faf74"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="r" /> -</Morph> -</rt> -<rt class="CmDomainQ" guid="883174ab-5a12-46a9-b8f8-73a7483c89d8" ownerguid="ff73fb69-7dac-43e2-876b-0ead264c3f2d"> -<ExampleWords> -<AUni ws="en">black, pitch black, jet-black, inky black, ebony black, black as coal, coal-black, black as pitch, black as night, night-black, henna, negro, raven</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is black in color?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8835d427-d665-4aec-ba62-e86226c00103" ownerguid="388c9942-b41e-41ad-8f88-be1c6ce83740"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="883ada6f-0bf2-4887-9c50-61a9cb250b4c" ownerguid="26d1d925-99fd-481c-8d85-8984a8eb331e"> -<Form> -<AUni ws="qvm-x-ach">pasa</AUni> -<AUni ws="qvm-x-acl">pasa</AUni> -<AUni ws="qvm-x-akh">pasa</AUni> -<AUni ws="qvm-x-akl">pasa</AUni> -<AUni ws="qvm-x-ame">pasa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="883e3b07-eff3-4bda-b80e-f34355d19271" ownerguid="d017730f-2c07-48dc-924a-9b3eaf09ea8a"> -<Form> -<AUni ws="qvm-x-ach">acta</AUni> -<AUni ws="qvm-x-acl">acta</AUni> -<AUni ws="qvm-x-akh">acta</AUni> -<AUni ws="qvm-x-akl">acta</AUni> -<AUni ws="qvm-x-ame">acta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="8841af5e-74e6-4c5d-a313-ba9aa7fdb78b" ownerguid="9f3b4cab-dc8a-430e-88f3-d3002df64fb8"> -<Abbreviation> -<AUni ws="en">7.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.498" /> -<DateModified val="2022-9-23 16:55:8.498" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to standing. The words in this domain may include whether the person is standing on one foot or two, whether the person's feet are together or placed apart, whether something is between the person's feet, how fast the person stands up.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>17A Stand x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Stand</AUni> -</Name> -<Questions> -<objsur guid="0fe675f8-42af-4d18-91e6-2326dceff515" t="o" /> -<objsur guid="cf08e9d2-47ca-4f79-b1d6-d4d06df53f48" t="o" /> -<objsur guid="66463c29-6459-4ee5-8d65-c0fd7549a1e1" t="o" /> -<objsur guid="9578b3fa-0554-44bc-807f-3d603b3678e5" t="o" /> -<objsur guid="38e474c7-be7a-4821-a8b8-6b80897a3477" t="o" /> -<objsur guid="277bf9f3-4b94-4f47-99b1-235ee8a476a9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="8841e618-65fd-4c32-8a34-9b3c3a1df282" ownerguid="56d1a950-8798-45fb-bccd-d8b1eb37c071"> -<ExampleWords> -<AUni ws="en">give, hand to, pass to, deliver</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to giving something to someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="884a71de-c156-456a-997d-e930ac349043" ownerguid="49ee84ff-eb2b-4ba3-b193-3018d34599c2"> -<ExampleWords> -<AUni ws="en">borrow, have the use of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to borrowing something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="884c283c-c156-459c-80a8-bfdbf902271c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shulya</AUni> -<AUni ws="qvm-x-acl">shulya</AUni> -<AUni ws="qvm-x-akh">shulya</AUni> -<AUni ws="qvm-x-akl">shulya</AUni> -<AUni ws="qvm-x-ame">shulya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shullya:</AUni> -<AUni ws="qvm-x-acl">*shullya:</AUni> -<AUni ws="qvm-x-akh">*shullya:</AUni> -<AUni ws="qvm-x-akl">*shullya:</AUni> -<AUni ws="qvm-x-ame">*shullya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.632" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c216567e-8d42-461e-b3b0-fee91dcfee04" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shullya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1a78a53e-2625-4fff-9da6-de5e867684f1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dd02cd4b-7391-4e95-ab67-a86148fe9ef3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shullya: 
\entryTyp root 
\gENG dew 
\gSPN rocía 
\e *shullya: 
\c V1 
\ach shulya 
\akh shulya 
\acl shulya 
\akl shulya 
\ame shulya</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="885061dd-355e-4c52-b486-b6c77e5d2eb2" ownerguid="c0cdd140-1306-4718-977b-5753756c8ec7" /> -<rt class="LexEntry" guid="88519985-6c9c-4206-a781-56dfd09a526d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">poder</AUni> -<AUni ws="qvm-x-acl">poder</AUni> -<AUni ws="qvm-x-akh">poder</AUni> -<AUni ws="qvm-x-akl">poder</AUni> -<AUni ws="qvm-x-ame">poder</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+poder.n</AUni> -<AUni ws="qvm-x-acl">+poder.n</AUni> -<AUni ws="qvm-x-akh">+poder.n</AUni> -<AUni ws="qvm-x-akl">+poder.n</AUni> -<AUni ws="qvm-x-ame">+poder.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.891" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a1334874-63c5-446e-b4b8-87ea6072c014" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+poder.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3fa3c27d-4956-46dd-8c29-8970e4d099f1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7b6a9c1e-5c52-4635-8718-c79b52a20415" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +poder.n 
\entryTyp root 
\gENG power 
\gSPN poder 
\e +poder.n 
\c N0 
\mp +FinalC 
\ach poder 
\akh poder 
\acl poder 
\akl poder 
\ame poder</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="8854daac-111e-4d33-8a09-03e6d052e40e" ownerguid="8982816c-5256-467e-af60-c90dd5e2bb4d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="8855211f-4a6e-477f-be4d-01fdbeeb476e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sustanti:vu</AUni> -<AUni ws="qvm-x-acl">sustanti:vu; sustanti:vu; sustanti:vo</AUni> -<AUni ws="qvm-x-akh">sustanti:vu</AUni> -<AUni ws="qvm-x-akl">sustanti:vu; sustanti:vu; sustanti:vo</AUni> -<AUni ws="qvm-x-ame">sustanti:vu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sustantivo</AUni> -<AUni ws="qvm-x-acl">+sustantivo</AUni> -<AUni ws="qvm-x-akh">+sustantivo</AUni> -<AUni ws="qvm-x-akl">+sustantivo</AUni> -<AUni ws="qvm-x-ame">+sustantivo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.762" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7fe3c5b2-4fa9-49b7-89d0-918109013758" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sustantivo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8e1e9520-5940-4eb2-ab02-f1d2aa19118b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8485147c-fbda-458c-aa70-96f3aae23f44" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sustantivo 
\entryTyp root 
\gENG noun 
\gSPN sustantivo 
\e +sustantivo 
\c N0 
\ach sustanti:vu 
\akh sustanti:vu 
\acl sustanti:vu / _# 
\acl sustanti:vu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sustanti:vo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sustanti:vu / _# 
\akl sustanti:vu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sustanti:vo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sustanti:vu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="885607d2-ecb9-4af4-819a-1a4da7f30210" ownerguid="ec1faadb-40cf-472e-858c-a465addb0df3"> -<Form> -<AUni ws="qvm-x-ach">fuëlli; fuëlli</AUni> -<AUni ws="qvm-x-acl">fuëlli; fuëlli; fuëlle</AUni> -<AUni ws="qvm-x-akh">fuëlli; fuëlli</AUni> -<AUni ws="qvm-x-akl">fuëlli; fuëlli; fuëlle</AUni> -<AUni ws="qvm-x-ame">fuëlli; fuëlli</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="8858c86b-c557-42bd-916b-f78bc1eebc28" ownerguid="1b1367f9-17e2-4350-ac4f-0e2ec6319fd8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sting</AUni> -<AUni ws="es">picar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ff811eae-204b-4eca-a613-d553c655d0a4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="885b6030-a446-40b0-ac24-407af6f48331" ownerguid="a44c0aa3-323f-48ec-b199-e180c17b3e69"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="885c5382-cb0d-4bc0-8aa4-c79a75d00cd2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jama</AUni> -<AUni ws="qvm-x-acl">jama</AUni> -<AUni ws="qvm-x-akh">jama</AUni> -<AUni ws="qvm-x-akl">jama</AUni> -<AUni ws="qvm-x-ame">hama</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hama</AUni> -<AUni ws="qvm-x-acl">*hama</AUni> -<AUni ws="qvm-x-akh">*hama</AUni> -<AUni ws="qvm-x-akl">*hama</AUni> -<AUni ws="qvm-x-ame">*hama</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.650" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2be3695b-378a-4592-b101-120790bda6b3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hama</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0dd18dd9-aa07-4a81-b7c9-8b39072c9b17" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5c672c2c-3cdb-4af4-8153-7abd54643843" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hama 
\entryTyp root 
\gENG rest 
\gSPN descansar 
\e *hama 
\c R0 V1 
\ach jama 
\akh jama 
\acl jama 
\akl jama 
\ame hama 
\mcc *hama / ~_ INF.noI HAVE 
\mcc *hama / ~_ ALL.2</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="885c7d7d-5125-4c6c-b645-2acef8ca33ab" ownerguid="5966e182-2cab-444f-9c03-8c32a26b1dd5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spread.legs</AUni> -<AUni ws="es">piernas.extendidas</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9cef332e-af02-4cb7-b98b-f00168f193d3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="885da5c7-3b47-40a4-9887-e914fe1ad5db" ownerguid="94cad4ca-c2ec-4ff3-b9b1-11107549941d"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en"><be> characteristic, state; <have> condition; <bear> characteristic; <be in a state of> characteristic; The dirt <is> red.; The towel <is> damp.; This man <is> important.; This man <has> an important status.; The towel<'s> dampness.; The dampness <of> the towel.; The damp state <of> this towel.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">found to be, discover to be, turn out to be, be in many ways</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to indicate an attribute of something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="885ec6c2-44bd-42d6-b959-cb086efc0c46" ownerguid="30c95b70-d638-488a-8356-8f06cdc1ecce"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="8862006a-3fe2-4c6e-8395-fbc6442c3094" ownerguid="989afba4-ae9a-4839-aae7-39bc6c381672" /> -<rt class="LexEntry" guid="8863ed55-e31f-4eae-8b56-5c020f073658"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alqui:lu</AUni> -<AUni ws="qvm-x-acl">alqui:lu; alqui:lu; alqui:lo</AUni> -<AUni ws="qvm-x-akh">alqui:lu</AUni> -<AUni ws="qvm-x-akl">alqui:lu; alqui:lu; alqui:lo</AUni> -<AUni ws="qvm-x-ame">alqui:lu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+alquilo</AUni> -<AUni ws="qvm-x-acl">+alquilo</AUni> -<AUni ws="qvm-x-akh">+alquilo</AUni> -<AUni ws="qvm-x-akl">+alquilo</AUni> -<AUni ws="qvm-x-ame">+alquilo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.729" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fe165681-164f-4527-bd1a-9bcaa578e72b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+alquilo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d34bf917-b729-484d-add3-dbad3eff722a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a56a9d85-43ab-4fd1-a1b6-bf8878f0cbff" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +alquilo 
\entryTyp root 
\gENG rent 
\gSPN alquilo 
\e +alquilo 
\c N0 
\ach alqui:lu 
\akh alqui:lu 
\acl alqui:lu / _# 
\acl alqui:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl alqui:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl alqui:lu / _# 
\akl alqui:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl alqui:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame alqui:lu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="88667a80-5f1c-4291-9d85-7a2f25a0b56a" ownerguid="e90cf8e1-2e25-49dd-97cd-c749b5392667"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">want</AUni> -<AUni ws="es">querer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e9be37cd-de45-4bfb-bd28-63cbb1e95bd2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="8866a7a1-70d3-4403-8810-aa060a1ef5ba" ownerguid="79ebd9c1-026e-4250-b11c-cb34e6757f84"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">?</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="56846e34-9965-41e3-b118-8b14cb165501" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="886ba061-9f7a-440e-b1fc-fb9504ba9c29" ownerguid="0bfe8214-7b49-44d2-8ff6-72ae448a67bb"> -<Form> -<AUni ws="qvm-x-ach">ripisa</AUni> -<AUni ws="qvm-x-acl">ripisa</AUni> -<AUni ws="qvm-x-akh">ripisa</AUni> -<AUni ws="qvm-x-akl">ripisa</AUni> -<AUni ws="qvm-x-ame">ripisa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="886c3989-2d40-4876-b14f-f3d9ae903c71"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Judáman</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="886dfa1a-2b59-432e-83ac-c69e847c93ef" ownerguid="5131f911-b782-4b33-8a54-142d3af32ea3"> -<Form> -<AUni ws="qvm-x-ach">costumbri; costumbre</AUni> -<AUni ws="qvm-x-acl">costumbri; costumbri; costumbre</AUni> -<AUni ws="qvm-x-akh">costumbri; costumbre</AUni> -<AUni ws="qvm-x-akl">costumbri; costumbri; costumbre</AUni> -<AUni ws="qvm-x-ame">costumbri; costumbre</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="88713d51-2873-4c48-8cd6-f0e14b7147ef" ownerguid="365fdc2e-9999-4aaa-aa02-af53dd9d0e2e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">hïja</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">hïja</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">hïja</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">hïja</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">hïja</Run> -</AStr> -</Form> -<Morph> -<objsur guid="41eb5489-46bc-4ceb-84dc-f14fb1d53284" t="r" /> -</Morph> -<Msa> -<objsur guid="d1d364b6-495d-4b03-b0e1-ff765aa11d56" t="r" /> -</Msa> -<Sense> -<objsur guid="27f0a69e-85d4-4811-8490-a13f76a62120" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="887667e5-7384-4350-a148-a69866028185" ownerguid="c99e81a5-3a4f-4e0c-802f-985c5188243c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">plant</AUni> -<AUni ws="es">sembrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fc0cefbc-0724-4354-9e48-ccfece9d7a30" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="887ae17a-ced7-4093-8e19-bf260b43d5a9" ownerguid="1f195274-5596-4e32-96a1-a1946fb984a7"> -<Form> -<AUni ws="qvm-x-ach">yarpa</AUni> -<AUni ws="qvm-x-acl">yarpa</AUni> -<AUni ws="qvm-x-akh">yarpa</AUni> -<AUni ws="qvm-x-akl">yarpa</AUni> -<AUni ws="qvm-x-ame">yarpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="4d5e1a72-550e-4cc6-b389-9af4ed72df6d" t="r" /> -<objsur guid="abe0ecdd-ea94-4f30-a907-034beb750359" t="r" /> -<objsur guid="ae5f3ffd-a9d0-4eaa-9040-50a5a57e64bc" t="r" /> -<objsur guid="c00e385f-cbe6-4724-8993-cc46e22ee3ba" t="r" /> -<objsur guid="e381191f-e778-41d7-9369-2559954d06ce" t="r" /> -</PhoneEnv> -</rt> -<rt class="MoStemMsa" guid="887b326c-78a6-4233-a815-e445cd03819e" ownerguid="6d888d6e-b0e0-46f3-b77b-3d2adadbc77c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="887d8aa0-02a0-495c-a160-8b4b30a8de8c" ownerguid="997eba85-9a15-48c2-8906-40ea725e8fa5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">catechist</AUni> -<AUni ws="es">catequista</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="29adb6ac-9066-4aed-8c56-7fb7ed983e5d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="887e2bc6-6d83-4632-b79d-6cb515b9c0e7" ownerguid="76ee0bb6-e7f6-4ec3-bd37-c2e9cdc849e5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="888257fb-e89c-4647-b854-acf4778f43f4" ownerguid="9d9fa92a-2364-452d-9ac1-a4459e831b10"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spillage</AUni> -<AUni ws="es">lo.que.cayó</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6cad88fd-22fa-4df1-a88e-c1e17ef684c1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="88829161-f325-46c5-afa1-4c3ad14c987b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsaca</AUni> -<AUni ws="qvm-x-acl">tsaca</AUni> -<AUni ws="qvm-x-akh">tsaka</AUni> -<AUni ws="qvm-x-akl">tsaka</AUni> -<AUni ws="qvm-x-ame">tsaka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chaka</AUni> -<AUni ws="qvm-x-acl">*chaka</AUni> -<AUni ws="qvm-x-akh">*chaka</AUni> -<AUni ws="qvm-x-akl">*chaka</AUni> -<AUni ws="qvm-x-ame">*chaka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.262" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2f6ef9fd-0111-454e-b40b-5c6bead1acd1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chaka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c9c2dbeb-bead-45f7-8061-8bbf73c1c7f3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8987e6ec-f9cb-4517-85e7-e48f3071c229" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chaka 
\entryTyp root 
\gENG bridge 
\gSPN puente 
\e *chaka 
\c N0 
\ach tsaca 
\akh tsaka 
\acl tsaca 
\akl tsaka 
\ame tsaka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="88843228-3d25-4192-af4b-b368a7803382"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yqui</AUni> -<AUni ws="qvm-x-acl">yqui; yqui; yque</AUni> -<AUni ws="qvm-x-akh">yki</AUni> -<AUni ws="qvm-x-akl">yki; yki; yke</AUni> -<AUni ws="qvm-x-ame">yki</AUni> -</Custom> -<AlternateForms> -<objsur guid="8fc7d848-8007-4dcc-8c36-9b0b4da26f05" t="o" /> -<objsur guid="1b0fe7f9-c0ed-498b-9263-f8c0d31cc569" t="o" /> -<objsur guid="16294e64-8fd6-44f8-8863-2e666718d141" t="o" /> -</AlternateForms> -<DateCreated val="2022-9-23 18:26:20.609" /> -<DateModified val="2022-10-19 20:39:50.265" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e923ff73-545c-4526-86e7-58a4c95762c6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">2P.V</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2999bb54-aa09-4eed-affb-cf684bd15cf6" t="o" /> -<objsur guid="a40909fa-461f-42f5-8d0b-c089ff6c7753" t="o" /> -<objsur guid="bbbfe118-132f-4744-9f12-6945daa4a632" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dc00d67a-ea89-4d8e-a1ff-33d88111a258" t="o" /> -<objsur guid="c7a4c794-794d-465a-81d6-8004fbbef4b7" t="o" /> -<objsur guid="7a11c70f-471b-4542-a37b-bcfc9731537d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx 2P.V 
\entryTyp suffix 
\gENG 2P.V 
\gSPN 2P.V 
\e 2P.V 
\c N0/N0 R1/R0 N1/N0 
\o 140 
\mp +FinalI 
\ach yqui 
\akh yki 
\acl yqui / _# 
\acl yqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl yque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yki / _# 
\akl yki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame yki 
\mp +foreshortens 
\mcc 2P.V {+FinalI} ~_ 
\mcc 2P.V / ~_ 1P.V</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8884616f-14e9-4f6b-b4b1-b13bbded971d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sarta</AUni> -<AUni ws="qvm-x-acl">sarta</AUni> -<AUni ws="qvm-x-akh">sarta</AUni> -<AUni ws="qvm-x-akl">sarta</AUni> -<AUni ws="qvm-x-ame">sarta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sarta</AUni> -<AUni ws="qvm-x-acl">+sarta</AUni> -<AUni ws="qvm-x-akh">+sarta</AUni> -<AUni ws="qvm-x-akl">+sarta</AUni> -<AUni ws="qvm-x-ame">+sarta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.459" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8503473d-f3a2-44cc-8f89-952e4ee4cf5b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sarta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="09419e5a-a788-4d04-8aae-8cd073c4bcd9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="68603efd-0ca7-45eb-a69e-2851e1c37cf8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sarta 
\entryTyp root 
\gENG 
\gSPN 
\e +sarta 
\c N0 
\ach sarta 
\akh sarta 
\acl sarta 
\akl sarta 
\ame sarta 
\i Num 13.23 Tsaycho juc sarta üvata muturirmi gueruman warcurcur apapäcorgan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="88847e28-3009-44ab-b82f-15c1a895c1b6" ownerguid="a9aac848-a15e-49a2-bf4c-4952f0ddb9ad"> -<Form> -<AUni ws="qvm-x-ach">cëjas</AUni> -<AUni ws="qvm-x-acl">cëjas</AUni> -<AUni ws="qvm-x-akh">cëjas</AUni> -<AUni ws="qvm-x-akl">cëjas</AUni> -<AUni ws="qvm-x-ame">cëjas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="888494ff-655d-4849-aabc-f742e43db0ef" ownerguid="d6bd9f96-9d92-4651-b1e6-b4211c758955"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">2PST</AUni> -<AUni ws="es">2PSD</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="74499479-7102-4eab-9ef7-4d5a1bfa4a8d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="888ad11b-6c50-419e-a18e-5bcfbdb5f8fd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">goshgu</AUni> -<AUni ws="qvm-x-acl">goshgu; goshgo</AUni> -<AUni ws="qvm-x-akh">qoshqu</AUni> -<AUni ws="qvm-x-akl">qoshqu; qoshqo</AUni> -<AUni ws="qvm-x-ame">qushqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qushqu</AUni> -<AUni ws="qvm-x-acl">*qushqu</AUni> -<AUni ws="qvm-x-akh">*qushqu</AUni> -<AUni ws="qvm-x-akl">*qushqu</AUni> -<AUni ws="qvm-x-ame">*qushqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.892" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a23c8662-66b0-43fd-acb8-7111706ef43e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qushqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7c74a0d6-c560-4683-bf69-909e83745585" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c16267c4-6625-4437-acf4-6912202095bc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qushqu 
\entryTyp root 
\gENG 
\gSPN 
\e *qushqu 
\c V2 
\ach goshgu 
\akh qoshqu 
\acl goshgu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl goshgo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qoshqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qoshqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qushqu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="888bad11-6725-4c8f-989e-3b365cd8b6cd" ownerguid="e03ac9db-6156-4002-888a-6f359a2e34e2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chain</AUni> -<AUni ws="es">cadena</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4727f364-e9f6-468c-8d13-625a7b94a928" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="888e536c-c808-4be9-93af-d820bd655942"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ogshacasha</AUni> -<AUni ws="qvm-x-acl">ogshacasha</AUni> -<AUni ws="qvm-x-akh">oqshakasha</AUni> -<AUni ws="qvm-x-akl">oqshakasha</AUni> -<AUni ws="qvm-x-ame">uqshakasha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uqshacasha</AUni> -<AUni ws="qvm-x-acl">*uqshacasha</AUni> -<AUni ws="qvm-x-akh">*uqshacasha</AUni> -<AUni ws="qvm-x-akl">*uqshacasha</AUni> -<AUni ws="qvm-x-ame">*uqshacasha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.261" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c0d2b805-57fe-44f6-bda0-24ad7c780a7b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uqshacasha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8ce952c6-9d1e-4ad6-b106-14d29df5bf5f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3edfdc67-855f-4fcd-8a8d-83e1e19b4d19" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uqshacasha 
\entryTyp root 
\gENG 
\gSPN 
\e *uqshacasha 
\c N0 
\ach ogshacasha 
\akh oqshakasha 
\acl ogshacasha 
\akl oqshakasha 
\ame uqshakasha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="888f2fbf-40b5-44bb-ad03-ad48ddc1be0e" ownerguid="51e1097d-03cb-4b00-b805-c6e760e60cb4"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JHN 7.44 Waquincuna prësu tsariyta munarpis manami atribergantsu prësu tsariyta.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="888f8d4d-3ffe-4ff0-94e3-8caac4756a8a" ownerguid="708ecb7c-6247-4a4b-84ba-f6b25c4f027f"> -<Form> -<AUni ws="qvm-x-ach">rambu</AUni> -<AUni ws="qvm-x-acl">rambu; rambu; rambo</AUni> -<AUni ws="qvm-x-akh">rambu</AUni> -<AUni ws="qvm-x-akl">rambu; rambu; rambo</AUni> -<AUni ws="qvm-x-ame">rambu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="8894cac9-c82a-4616-856e-0516d2ed1df7" ownerguid="c4330001-83ca-485d-8b9b-09f7e1be60cc"> -<Abbreviation> -<AUni ws="en">3.5.8.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.182" /> -<DateModified val="2022-9-23 16:55:8.182" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the meaning of something that is said.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Meaning</AUni> -</Name> -<OcmCodes> -<Uni>196 Semantics</Uni> -</OcmCodes> -<Questions> -<objsur guid="e4f29a0a-d2c6-405e-8b27-366ea5568317" t="o" /> -<objsur guid="c60b170c-2816-4830-983a-9343422522b7" t="o" /> -<objsur guid="5539e657-f5ff-4354-b36d-abe308e1c911" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="889a7f72-0d2f-43c4-94fd-ee56b5e9ec09" ownerguid="aa2b547c-2c82-4ce0-a1b3-35fa809d666c"> -<ExampleWords> -<AUni ws="en">narrow (v), get narrower, taper, thin (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something becoming narrow?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="889de305-82ad-4d1a-9a97-63733ed27bfc" ownerguid="d8366daf-ae1d-4b2c-a447-478c73580639"> -<Abbreviation> -<AUni ws="en">6.1.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.365" /> -<DateModified val="2022-9-23 16:55:8.365" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to preparing to do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>77 Ready, Prepared</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Prepare</AUni> -</Name> -<OcmCodes> -<Uni>122 Practical Preparations in Conducting Fieldwork</Uni> -</OcmCodes> -<Questions> -<objsur guid="b585192f-8733-4e79-868e-9b30db46a22f" t="o" /> -<objsur guid="2fe8b0d1-6492-43f4-a1f8-a0d89be6ca6b" t="o" /> -<objsur guid="c3653a79-028e-4707-8693-bf8f30cf46b8" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="f77053f4-ed5a-4376-bcba-17552ea447ba" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="88a180f6-9eb8-4c32-befb-48eccbeee3b8" ownerguid="5238fe9c-4bbe-444c-b5f6-18f946b3d6aa"> -<ExampleWords> -<AUni ws="en">rise</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a fever increasing?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="88a291b5-ace8-4e0d-95ec-3302e2c9485d" ownerguid="70f47508-b668-4214-8811-d90c6ff8c133"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="r" /> -</Morph> -</rt> -<rt class="LexSense" guid="88a55585-7efd-4e46-8fac-6674caf6dca7" ownerguid="3240f52a-83c8-47b9-8a94-a99be0956bbc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be/get.drunk</AUni> -<AUni ws="es">emborracharse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3c3c1fcb-c505-4402-a96e-f3506b3a7d61" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="88a69e5d-91fd-43ce-9650-43b561a4eb63"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yaycu; yayca</AUni> -<AUni ws="qvm-x-acl">yaycu; yayco; yayca</AUni> -<AUni ws="qvm-x-akh">yayku; yayka</AUni> -<AUni ws="qvm-x-akl">yayku; yayko; yayka</AUni> -<AUni ws="qvm-x-ame">yayku; yayka</AUni> -</Custom> -<AlternateForms> -<objsur guid="6273c7f1-04e5-4139-a1ed-12619ffaa96c" t="o" /> -</AlternateForms> -<CitationForm> -<AUni ws="qvm-x-ach">*yaykU</AUni> -<AUni ws="qvm-x-acl">*yaykU</AUni> -<AUni ws="qvm-x-akh">*yaykU</AUni> -<AUni ws="qvm-x-akl">*yaykU</AUni> -<AUni ws="qvm-x-ame">*yaykU</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.778" /> -<DateModified val="2022-10-12 20:20:50.809" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bd76361e-32cd-4525-9d5a-6128b942b692" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yaykU</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fc58244c-1c92-498b-a756-e0b9f52b909a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d15034c3-4e4f-4ae1-b602-bcf1f90c08c6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yaykU 
\entryTyp root 
\gENG enter 
\gSPN entrar 
\e *yaykU 
\c V1 
\mp PMlowered 
\ach yaycu 
\ach yayca morphlowered 
\akh yayku 
\akh yayka morphlowered 
\acl yaycu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl yayco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl yayca morphlowered 
\akl yayku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yayko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yayka morphlowered 
\ame yayku 
\ame yayka morphlowered</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="88a6cd62-774d-4648-b3fb-eb2d57dd18dc" ownerguid="ed238399-cf2a-4342-8b03-cbbdc9137c7a"> -<Form> -<AUni ws="qvm-x-ach">musca</AUni> -<AUni ws="qvm-x-acl">musca</AUni> -<AUni ws="qvm-x-akh">muska</AUni> -<AUni ws="qvm-x-akl">muska</AUni> -<AUni ws="qvm-x-ame">muska</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="88a8c1e4-2d67-481c-a8cd-97343f705fa2" ownerguid="aa0f165d-3013-4a0c-b68c-14ea317013f9"> -<ExampleWords> -<AUni ws="en">composer, writer, arranger</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who composes music?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="88af8cd4-2824-43de-8068-9a08b4d7b9a3" ownerguid="b82c7ba0-9f4e-44da-bcd0-d30f5b224de5"> -<ExampleWords> -<AUni ws="en">chemist, pharmacist, druggist, pharmacy, herbalist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to someone who makes and sells medicine?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="88b0bcda-4c3b-48bf-98c1-4dc6f4f4e0fb" ownerguid="bd4a2527-f66c-4f48-922e-8b180bba8ef6"> -<ExampleWords> -<AUni ws="en">bucket, cistern, water barrel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What things are used to provide water?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="88b0c178-4035-43e1-a858-5f18a6dfb137" ownerguid="12bae6de-0592-4443-8c8a-b8eb4bfafdab"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="88b83037-8c65-4045-a398-da7d153bb916"> -<Analyses> -<objsur guid="5ff16f03-4466-4c06-ae98-9c5ba4fa6aca" t="o" /> -</Analyses> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">rurarkaykan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="88ba5a74-7153-46af-adec-a015ca9edc8c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jaushi</AUni> -<AUni ws="qvm-x-acl">jaushi; jaushi; jaushe</AUni> -<AUni ws="qvm-x-akh">jawshi</AUni> -<AUni ws="qvm-x-akl">jawshi; jawshi; jawshe</AUni> -<AUni ws="qvm-x-ame">hawshi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hawshi</AUni> -<AUni ws="qvm-x-acl">*hawshi</AUni> -<AUni ws="qvm-x-akh">*hawshi</AUni> -<AUni ws="qvm-x-akl">*hawshi</AUni> -<AUni ws="qvm-x-ame">*hawshi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.700" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6a0a8f84-0d80-4214-9c65-f1fe2cb9013d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hawshi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8a88c838-a463-4d3a-bd96-9df5bbef3452" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b7028edc-e210-42e4-8e28-ceb41b11b2d4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hawshi 
\entryTyp root 
\gENG elastic 
\gSPN suave 
\e *hawshi 
\c N0 
\mp +FinalI 
\ach jaushi 
\akh jawshi 
\acl jaushi / _# 
\acl jaushi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl jaushe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jawshi / _# 
\akl jawshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl jawshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hawshi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="88bac12e-7f63-4860-8948-849e52f38a2a" ownerguid="cc6d78c5-9fa7-40dd-84bf-2ba2375b0d51"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="9af5d937-103f-4d4f-917d-895f94b0643e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="88bad7ea-c427-46dd-9f3e-d33f134130fc" ownerguid="738a09a5-59df-40f9-8a4e-176e00d03bbf"> -<ExampleWords> -<AUni ws="en">bomb, grenade, mine, missile, rocket, atomic bomb, hydrogen bomb</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What types of bombs are there?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="88bd06bc-dbfc-40d5-8df0-4ea692df6466" ownerguid="0c6b8113-d532-4794-9ecd-ab4d9345d1f8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sink</AUni> -<AUni ws="es">hundir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="54c86f5c-ae7c-4f57-b010-45bec3e0aca1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="88bd9a05-bdab-426b-afce-4c027e902463" ownerguid="8bc2c340-00f0-4d24-aa24-1fde6cbe3bdf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lastly</AUni> -<AUni ws="es">al.fin</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ca4bd85a-6451-45a6-ba61-9fd7b6c487bf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="88c22d07-813b-4ca2-846c-7c8e53461f53" ownerguid="26bd3710-7a3b-4893-ab06-24fa95faefa6"> -<Form> -<AUni ws="qvm-x-ach">costala</AUni> -<AUni ws="qvm-x-acl">costala</AUni> -<AUni ws="qvm-x-akh">costala</AUni> -<AUni ws="qvm-x-akl">costala</AUni> -<AUni ws="qvm-x-ame">costala</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="88c2a257-21f2-4fdf-b04b-6a9bd0316a8f" ownerguid="ecaff061-6a12-4ad6-b818-9b140a9a3e11"> -<ExampleWords> -<AUni ws="en">design, plan</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to designing something?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="88c2db34-8b90-4b2d-9851-0494ca64a3c6" ownerguid="6f011005-9763-4284-9571-90529febecf7"> -<Form> -<AUni ws="qvm-x-ach">nï</AUni> -<AUni ws="qvm-x-acl">nï</AUni> -<AUni ws="qvm-x-akh">nï</AUni> -<AUni ws="qvm-x-akl">nï</AUni> -<AUni ws="qvm-x-ame">nï</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="35058c7a-447a-4ee8-89bd-323da24bf7c5" t="r" /> -</PhoneEnv> -</rt> -<rt class="MoStemMsa" guid="88cb3568-feb0-4160-a7b1-ffaa28464cd7" ownerguid="851de080-4de0-4575-b8d6-5bc1784cab07"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="88cc9efc-129d-4378-b3c7-5100abf6e9f7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">paylay</AUni> -<AUni ws="qvm-x-acl">paylay</AUni> -<AUni ws="qvm-x-akh">paylay</AUni> -<AUni ws="qvm-x-akl">paylay</AUni> -<AUni ws="qvm-x-ame">paylay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+payla_y</AUni> -<AUni ws="qvm-x-acl">+payla_y</AUni> -<AUni ws="qvm-x-akh">+payla_y</AUni> -<AUni ws="qvm-x-akl">+payla_y</AUni> -<AUni ws="qvm-x-ame">+payla_y</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.769" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="27e6fd3c-c2d6-49d6-9b64-d85936575049" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+payla_y</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f28f0861-0818-452f-b2c3-99bcdbdd895a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e2bc6d18-392a-42f0-9a1f-94d3ba593514" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +payla_y 
\entryTyp root 
\gENG pay 
\gSPN pago 
\e +payla_y 
\c N0 
\mp +FinalC 
\ach paylay 
\akh paylay 
\acl paylay 
\akl paylay 
\ame paylay</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="88d1d9a7-131a-4bb6-9509-8eab9b51bbfa" ownerguid="75d4fad8-9d20-4e80-b9b4-a67ea193ad08"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wall</AUni> -<AUni ws="es">muralla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4e6d16bb-21e9-4735-8d27-528027e728e4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="88d6216b-eb46-4e87-93eb-9f2d190af992" ownerguid="d8ea1902-5fa6-4fda-b7b2-1f9c301cdc5f"> -<ExampleWords> -<AUni ws="en">set, batch, suit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a group of things that belong together?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="88d7b990-6994-4b57-a35f-0d8ebd7d28de" ownerguid="cc02c930-5692-4eaa-af3f-2bc5210eda20"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8a07bf49-cdf2-4a89-9e4f-39e847fdc2d4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="88dba467-bba5-4180-aabe-0ed08cc24fe3" ownerguid="f11be6f7-2d7c-4e70-a319-c0e2114c7fbb"> -<Form> -<AUni ws="qvm-x-ach">togshu</AUni> -<AUni ws="qvm-x-acl">togshu; togshu; togsho</AUni> -<AUni ws="qvm-x-akh">toqshu</AUni> -<AUni ws="qvm-x-akl">toqshu; toqshu; toqsho</AUni> -<AUni ws="qvm-x-ame">tuqshu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="88dc76ac-2499-403d-9644-568a36e3b28b" ownerguid="48ca8966-6a2f-4197-9d87-6c3fa2f3f8b4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">gargu; garga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">gargu; gargo; garga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qarqu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qarqu; qarqo; qarqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qarqu; qarqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="3fd65fc8-17a4-49fe-89ac-3f1c84143c12" t="r" /> -</Morph> -<Msa> -<objsur guid="c7dbec8d-838d-4a92-a15b-4f3d5b563513" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="88de992a-2ef3-4f6b-b2f4-2eadf796a8c6" ownerguid="de5c6901-fab3-40ac-9364-bbd2972d1be6"> -<Form> -<AUni ws="qvm-x-ach">cälli; cälli</AUni> -<AUni ws="qvm-x-acl">cälli; cälli; cälle</AUni> -<AUni ws="qvm-x-akh">cälli; cälli</AUni> -<AUni ws="qvm-x-akl">cälli; cälli; cälle</AUni> -<AUni ws="qvm-x-ame">cälli; cälli</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="88df88ab-fbf6-4d25-9bd5-e8fa749ae9eb" ownerguid="d9b9db39-d87e-4d04-8298-1f1b969dbda1"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">We would like you to do it <thus>.; I'll show you <how> I want it.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">thus, thusly, so, how, like this, this way, in that way, in this manner</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words can replace an adverb?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="88e02e39-91b4-4623-8c7c-c4dfad9b0310" ownerguid="7381046a-85e1-4f7c-9510-742040c489ab"> -<Form> -<AUni ws="qvm-x-ach">contesta</AUni> -<AUni ws="qvm-x-acl">contesta</AUni> -<AUni ws="qvm-x-akh">contesta</AUni> -<AUni ws="qvm-x-akl">contesta</AUni> -<AUni ws="qvm-x-ame">contesta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="88e1ba9c-2577-4e80-a15d-83902ea91dfa" ownerguid="8052744f-7a9a-49da-89e3-4c518126180b"> -<ExampleWords> -<AUni ws="en">confusion, bewilderment, mystification, perplexity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of being confused?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="88e5be84-3535-4d5c-91a6-a8d8f27b1a28" ownerguid="ce30eb9c-8260-476b-878c-0a078d596955"> -<ExampleWords> -<AUni ws="en">forgetful, absentminded</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who has trouble remembering?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="88e5cfa8-ecd9-48e1-8188-0349a1eac673" ownerguid="0aae1951-4d5b-45a0-853c-1839764c9862"> -<ExampleWords> -<AUni ws="en">short, not very tall, small, little, petite, squat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who is short?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="88e73b10-baf8-4b1a-ba2b-99f5d0b0c001" ownerguid="effc8ca7-1c35-4e4d-9b41-e7db8201be81"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">millet</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c5dee45b-e78e-4cab-b7a3-212ef4d77e13" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="88f1d23d-e275-41f5-bbb7-658f4b9669d7" ownerguid="afa77a2a-8b0f-4a39-91bc-040e90ffbb3a"> -<ExampleWords> -<AUni ws="en">happy, cheering, cheerful (thought), heartening, heartwarming, pleasing, satisfying</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words describe something that causes someone to feel happy?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="88f7c231-4cc4-4066-af15-71f04def22aa" ownerguid="ac6eac01-7c0f-46a0-baef-f7dccd33cc07"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="0ee2d1d7-fea4-4c10-ac31-893040d1f75e" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="48dc1ca4-8523-4f40-815c-f5a15e5cfbb2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="88f84df5-8e9a-4b0a-8efc-563d5b35858c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shti</AUni> -<AUni ws="qvm-x-acl">shti; shti; shte</AUni> -<AUni ws="qvm-x-akh">shti</AUni> -<AUni ws="qvm-x-akl">shti; shti; shte</AUni> -<AUni ws="qvm-x-ame">shti</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.485" /> -<DateModified val="2022-10-16 15:14:20.673" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="45abef39-f5af-43f9-87ab-4dc22dd0c6bf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">BAD</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cefe96d1-cda2-4d8a-8188-b610f8721520" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="129af35f-b807-43bd-bdf4-f910e1478452" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx BAD 
\entryTyp suffix 
\gENG BAD 
\gSPN MALO 
\e BAD 
\c V1/N0 
\o 220 
\mp +FinalI 
\ach shti 
\akh shti 
\acl shti / _# 
\acl shti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shti / _# 
\akl shti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shti 
\mp +foreshortens</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="88f98588-e7a8-4e1b-a9a5-dc1c685dbab8" ownerguid="82c34ac9-f8ec-4f31-9d54-f4f6f15f3e0e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">sonar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6c4fae2d-8d4e-455f-aaf1-ed8764160359" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="890280b4-86ea-4b98-a172-af9ec42a9155" ownerguid="fae60727-af59-4ee9-a797-99872e299efc"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pti</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pti</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pti</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b2772da-2fbd-4846-99c3-d3f919125916" t="r" /> -</Morph> -<Msa> -<objsur guid="6a97cf20-558d-4866-ba04-48c4807bc533" t="r" /> -</Msa> -<Sense> -<objsur guid="5c9f1fed-2e6d-4ad2-b804-9d3f09a277d3" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="89043106-cbb3-487f-bdcd-00ea38bc6807"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rupupu</AUni> -<AUni ws="qvm-x-acl">rupupu; rupupo</AUni> -<AUni ws="qvm-x-akh">rupupu</AUni> -<AUni ws="qvm-x-akl">rupupu; rupupo</AUni> -<AUni ws="qvm-x-ame">rupupu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rupupu</AUni> -<AUni ws="qvm-x-acl">*rupupu</AUni> -<AUni ws="qvm-x-akh">*rupupu</AUni> -<AUni ws="qvm-x-akl">*rupupu</AUni> -<AUni ws="qvm-x-ame">*rupupu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.399" /> -<DateModified val="2022-10-10 21:18:47.203" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a7f2a3f8-a206-4704-82ff-27f5d5e6d37f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rupupu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="843433ad-5cb7-43db-a85c-8f9d74c30c5b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aaf30f58-88a3-4303-87cc-7e85a060aba4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rupupu 
\entryTyp root 
\gENG 
\gSPN 
\e *rupupu 
\c V1 
\ach rupupu 
\akh rupupu 
\acl rupupu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl rupupo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rupupu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rupupo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame rupupu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="89051536-adc6-4800-9fd8-49c358265472" ownerguid="ba760e74-4389-4262-bf25-19ca25a06066"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="951a3b21-0e06-4327-afb4-c95ac815a304" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">clear</AUni> -<AUni ws="es">escampar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b1473435-f2a2-466c-9aa2-35eb335b9112" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="89057314-0cd1-4182-a9dd-2b5e1205b781" ownerguid="038a45a5-5878-4f1d-b43a-22ce4a89a098"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="89076e27-08eb-4b5e-86ef-af7804ccb97f" ownerguid="9efa7949-de15-499a-b382-4560e06c4fb4"> -<ExampleWords> -<AUni ws="en">pronunciation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to how something is said?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="89085bab-7f2a-44cb-99c1-0d2c20de4e95"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">depo:situ</AUni> -<AUni ws="qvm-x-acl">depo:situ; depo:situ; depo:sito</AUni> -<AUni ws="qvm-x-akh">depo:situ</AUni> -<AUni ws="qvm-x-akl">depo:situ; depo:situ; depo:sito</AUni> -<AUni ws="qvm-x-ame">depo:situ</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+depósito</AUni> -<AUni ws="qvm-x-acl">+depósito</AUni> -<AUni ws="qvm-x-akh">+depósito</AUni> -<AUni ws="qvm-x-akl">+depósito</AUni> -<AUni ws="qvm-x-ame">+depósito</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.376" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bd6e6f85-4585-4151-8888-dc221371b58e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+depósito</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="41d53c0b-5ec9-4a23-b700-39b482206ba5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ba508e57-67cb-4a75-95e5-971e508772a9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +depósito 
\entryTyp root 
\gENG 
\gSPN 
\e +depósito 
\c N0 
\ach depo:situ 
\akh depo:situ 
\acl depo:situ / _# 
\acl depo:situ +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl depo:sito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl depo:situ / _# 
\akl depo:situ +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl depo:sito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame depo:situ 
\i EZR 8.29 Paycunami pësarcur Jerusalén templucho caycag depösituman churapäcongapag.>></Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="890b03fa-e707-480c-8a6b-0f27b82b2f5d" ownerguid="ac4f1bd6-8bd9-4c00-9d5e-e4b1cb59055b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">candle</AUni> -<AUni ws="es">vela</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1e44144f-e189-4097-a5db-98c0830825db" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="890cb43e-b60d-4286-8377-3a72eec2bf80" ownerguid="7ba5073c-52e9-4c23-b555-4055ebc5cba2"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="890d564d-17c4-487b-b7be-2be70697dbc2" ownerguid="3ea52505-aa6c-4f28-b475-f15ac1820ec1"> -<ExampleWords> -<AUni ws="en">cast out a demon, exorcise, drive out, expel, deliver/free/release from demonic power/influence</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to casting out a demon?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="8912e6ef-da0f-4372-aa04-f21b9c6bfe55" ownerguid="16835a46-c7fb-4cbf-9a93-3b5488e0d42a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="891549c5-6df8-473f-92bb-811965c49f07" ownerguid="15947464-997a-4f44-9a4b-ac4916e7e19b"> -<ExampleWords> -<AUni ws="en">adorn, beautify, make oneself attractive, personal care, hygiene, toilet, look your best</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to making yourself look better?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="89155ea7-ed5c-4ebf-8bd6-4720209754ea"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">churamashqanpita</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="891bb147-13ee-4334-91b2-83a046ab9554" ownerguid="6ccb8155-1954-4380-8bec-ca5e56533210"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">quëda</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">quëda</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">quëda</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">quëda</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">quëda</Run> -</AStr> -</Form> -<Morph> -<objsur guid="17c57722-51eb-46fd-a656-150f8e0ec5e0" t="r" /> -</Morph> -<Msa> -<objsur guid="93198438-9065-40e1-9b1f-6c2bc8602343" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="891c1224-5a58-4434-a366-e0cfd1206d16" ownerguid="d4f1f463-b30e-4e01-955c-65d7b2f671c5"> -<Form> -<AUni ws="qvm-x-ach">timón; timon</AUni> -<AUni ws="qvm-x-acl">timón; timon</AUni> -<AUni ws="qvm-x-akh">timón; timon</AUni> -<AUni ws="qvm-x-akl">timón; timon</AUni> -<AUni ws="qvm-x-ame">timón; timon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="892294bd-d41f-494b-bbd8-75c3f5c62603" ownerguid="b6e45998-9f6a-4b19-9cda-62410a11afa2"> -<ExampleWords> -<AUni ws="en">charm, amulet, evil eye, talisman, fetish, wand, rod, divining rod, magic ring, philosopher's stone, magic carpet, cauldron</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What things are used when performing sorcery?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="892587b4-1e90-4b9b-8d15-43f651235205" ownerguid="ce194a5d-5485-4804-9421-d3804cf31764"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">separate</AUni> -<AUni ws="es">separar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="262bd36b-2cf5-4c6e-8ce4-d506498ef445" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="8926851e-7f6a-41d2-86b8-1f59df5fb750" ownerguid="146daca8-869f-4b32-bbc4-b26bccd0da7e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">right</AUni> -<AUni ws="es">derecho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2217b486-3823-43c4-844a-ff6fff19d6b4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8926e6c9-ad38-454c-944d-ba276bbce25b" ownerguid="04543543-4c3d-4d71-aa87-53191ef3b7b0"> -<ExampleWords> -<AUni ws="en">immediately, instantly, this instant, sudden, suddenly, right away, right now, at once, without any time going by, without delay, no sooner</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something happened immediately?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="89278ff8-9413-4691-81bf-c33781752442" ownerguid="8602761b-c356-403d-a5cf-8687d677c5c7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="8928dcd9-131e-4bcd-b271-a89a4b9aca3a" ownerguid="59db2324-e961-4a97-a9ad-38791a07dc23"> -<Form> -<AUni ws="qvm-x-ach">sacrifica</AUni> -<AUni ws="qvm-x-acl">sacrifica</AUni> -<AUni ws="qvm-x-akh">sacrifica</AUni> -<AUni ws="qvm-x-akl">sacrifica</AUni> -<AUni ws="qvm-x-ame">sacrifica</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="892930dd-83bd-47f4-97b3-4bf343b74720" ownerguid="4937ccc5-71c3-45e2-9313-dbcdc7fd4dba"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stapler</AUni> -<AUni ws="es">engrapadora</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6b97324f-5c84-4e6b-87ff-89a20ada4125" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="892b66f4-5dfd-4451-a491-4c4fd2179081" ownerguid="63b18261-faf3-4ab2-bcb4-7c3ac4d6d6ba"> -<Abbreviation> -<AUni ws="en">6.8.9.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.496" /> -<DateModified val="2022-9-23 16:55:8.496" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for money given to a person to do something bad.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Bribe</AUni> -</Name> -<Questions> -<objsur guid="7fae92ee-ab63-4500-b445-ea652e7ac5f7" t="o" /> -<objsur guid="1fb6f405-e1ed-4a9c-87d8-394a90870357" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="892ed044-f488-4a8b-8b1b-7e50837714c7" ownerguid="eb7d0a78-573e-4536-8e86-1193f9b526a1"> -<Form> -<AUni ws="qvm-x-ach">sapu</AUni> -<AUni ws="qvm-x-acl">sapu; sapu; sapo</AUni> -<AUni ws="qvm-x-akh">sapu</AUni> -<AUni ws="qvm-x-akl">sapu; sapu; sapo</AUni> -<AUni ws="qvm-x-ame">sapu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="892f4033-1332-4426-9fca-14d126677c5f" ownerguid="0431f1b3-286b-4786-94f5-a19c2cd86c17"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="748b96b2-40f0-4115-9cb8-5fc9173ae001" t="o" /> -<objsur guid="d74e2c89-306d-42b3-8aac-6cc1027947a6" t="o" /> -<objsur guid="be8b9233-c216-46fb-97a7-310ad8f131bf" t="o" /> -<objsur guid="295346f9-eb51-46c6-9868-46ae5cba544d" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="89312133-fc69-447a-8408-36ec787c434d" ownerguid="4268cbc0-6680-4779-99d7-1df8d8cbf450"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="89329634-4457-4df9-b99d-75abe9ed36bc" ownerguid="26d32f3e-ced6-45fc-afd0-7e017fa252c6"> -<ExampleWords> -<AUni ws="en">riddle, conundrum, enigma, puzzle, problem</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used for short sayings or questions that have a meaning that someone has to figure out?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8932cfc5-ff0a-4994-bf7b-1c49ff677e61" ownerguid="f38f8344-838f-44ba-b103-22289c2d2793"> -<ExampleWords> -<AUni ws="en">moist, damp, a little wet, clammy, dewy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is slightly wet?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8934255f-93ee-4413-9b2d-f6c53a5c7164" ownerguid="90fe0665-199b-47fe-83cf-6f73dde8ae80"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8af3dd04-eefa-4de8-aaa9-fb52ce11734f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="89347737-7095-483c-b34b-5000a279161b" ownerguid="f99317b2-0139-4c4b-8b6d-1eac4f3770be"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="dac188be-8ba3-442e-9dad-06bc25f7424e" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="ef901047-9ceb-4083-ac73-91f80168d5dd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8937097e-6f94-4fd5-b5a1-cb65745b5d79" ownerguid="0a42fd83-3b30-4c85-bb68-f5132e9ffeee"> -<ExampleWords> -<AUni ws="en">protector, guard, watchman, defender, advocate, sentry, bodyguard, defensive force</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What is a person called who protects someone?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="8938e132-6534-4428-9b03-cb1f459b7cbe" ownerguid="11665f1d-aca9-4699-afb2-bcdea69c6645"> -<Abbreviation> -<AUni ws="en">8.3.7.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is basic.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Basic</AUni> -</Name> -<Questions> -<objsur guid="bb73cf23-d67b-4379-b85d-f0a6d9741bf7" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="8938e179-aec4-4d07-bceb-ab3a798fea04" ownerguid="801b1d49-7007-46e0-94b7-c61e7b8afdf2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bracelet</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e2336a67-ebf2-435e-a129-2680f09a99df" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="893b6a5f-db2c-421c-8a45-e766b7738309" ownerguid="1a4ff06b-76db-4abb-b7ba-f5d21c619a6f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="f007227f-4b6e-4149-827f-9a48526b38d3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="893da458-6c4d-474d-a513-629e3ad575a9" ownerguid="36e8f1df-1798-4ae6-904d-600ca6eb4145"> -<ExampleWords> -<AUni ws="en">escape (n), breakout, jailbreak, getaway, prison break, evasion, evacuation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to the act of escaping?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="89411065-3bc1-4389-ba1c-9274549d75a2" ownerguid="df361917-97dd-4a8b-b98b-fdfa4563617d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="8942a91f-f0ea-4c38-bacc-2edfb0b0504d" ownerguid="30011610-0ca9-4d7d-ba2e-377fc3c76e74"> -<Form> -<AUni ws="qvm-x-ach">panca</AUni> -<AUni ws="qvm-x-acl">panca</AUni> -<AUni ws="qvm-x-akh">panka</AUni> -<AUni ws="qvm-x-akl">panka</AUni> -<AUni ws="qvm-x-ame">panka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="89431309-856f-4b4b-9a9c-6e8c4404d60e" ownerguid="e78c718b-6c58-4e53-a172-a006152082fa"> -<Form> -<AUni ws="qvm-x-ach">zapatillu; zapatillo</AUni> -<AUni ws="qvm-x-acl">zapatillu; zapatillu; zapatillo</AUni> -<AUni ws="qvm-x-akh">zapatillu; zapatillo</AUni> -<AUni ws="qvm-x-akl">zapatillu; zapatillu; zapatillo</AUni> -<AUni ws="qvm-x-ame">zapatillu; zapatillo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="89438fa3-4a56-441a-be29-452d4364e875" ownerguid="65ef6aae-019f-4980-b6d9-5b7ad2c8e68f"> -<ExampleWords> -<AUni ws="en">as the saying goes, as they say, to coin a phrase</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words do people use to begin a saying?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="8946658b-4887-47cf-b2a0-c79e937451da"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">data</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="8946b9bd-7248-4f43-b930-4f99d8d3ebba" ownerguid="b2192fec-bc78-4900-b363-4ad62318be86"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">antiguo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0e367670-5845-46a2-9c69-5b4a172c72cc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="8946d237-a97c-4745-a03a-2c651f37aeb5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gueullanchu</AUni> -<AUni ws="qvm-x-acl">gueullanchu; gueullanchu; gueullancho</AUni> -<AUni ws="qvm-x-akh">qewllanchu</AUni> -<AUni ws="qvm-x-akl">qewllanchu; qewllanchu; qewllancho</AUni> -<AUni ws="qvm-x-ame">qiwllanchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qiwllanchu</AUni> -<AUni ws="qvm-x-acl">*qiwllanchu</AUni> -<AUni ws="qvm-x-akh">*qiwllanchu</AUni> -<AUni ws="qvm-x-akl">*qiwllanchu</AUni> -<AUni ws="qvm-x-ame">*qiwllanchu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.226" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8dd8f8dd-11ef-4b8a-9b05-eb8dd2c5a623" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qiwllanchu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3bbf9e45-c1f6-4a48-bfe9-a46ead84a7da" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9c2c65dc-68c2-4f2d-b746-a675ad9c5020" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qiwllanchu 
\entryTyp root 
\gENG 
\gSPN gaviota 
\e *qiwllanchu 
\c N0 
\ach gueullanchu 
\akh qewllanchu 
\acl gueullanchu / _# 
\acl gueullanchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gueullancho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qewllanchu / _# 
\akl qewllanchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qewllancho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qiwllanchu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="894fd25d-75fc-4480-a2a9-d81513325407" ownerguid="41270f2a-7fab-42b4-9771-f300041a4427"> -<Form> -<AUni ws="qvm-x-ach">wayra; wayrä</AUni> -<AUni ws="qvm-x-acl">wayra; wayrä</AUni> -<AUni ws="qvm-x-akh">wayra; wayrä</AUni> -<AUni ws="qvm-x-akl">wayra; wayrä</AUni> -<AUni ws="qvm-x-ame">wayra; wayrä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="894fe9ff-1820-468c-8307-1a788867d609" ownerguid="cd4300c9-265e-4457-8e33-4e0c9a4d4ba8"> -<ExampleWords> -<AUni ws="en">good, valuable, worthy, advantageous, important, useful, dear</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is valued as good?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8950841b-4fc7-465e-8299-dcf99c834696" ownerguid="99b5b80a-a2d6-4820-adfc-1da72528c272"> -<ExampleWords> -<AUni ws="en">standardize, bring something into line</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to making all the things in a group the same?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="89508a8d-a0aa-493a-986c-02ca4ac5d3e5" ownerguid="c5996b7d-0acc-4ac7-bfa0-09b93a0eccbc"> -<ExampleWords> -<AUni ws="en">mine (v), quarry (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to digging minerals out of the ground?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="8950d086-ce36-43b4-8c8a-8a5414533bad" ownerguid="2e1ac83f-3ca6-46a4-a5af-ee776c9b7cf5"> -<Form> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">Faraón</Run> -</AStr> -</Form> -<Morph> -<objsur guid="cf05cc4c-2ad9-4593-a05d-5a5b78d01854" t="r" /> -</Morph> -<Msa> -<objsur guid="544259c0-a889-419a-8a2e-c0080a6f0496" t="r" /> -</Msa> -<Sense> -<objsur guid="a4a7e843-bc65-4bf6-99d6-d15a9abc8950" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="8953b1a7-d960-4ed9-9aa6-f45aab293ea2" ownerguid="a6d9751e-ae7b-4f5b-a1de-1939dd6db198"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="895463b4-528a-4c52-9571-c0af6a969974" ownerguid="333bdd9e-1ba6-4fe6-934f-676d7cc98bd6"> -<Form> -<AUni ws="qvm-x-ach">rumi</AUni> -<AUni ws="qvm-x-acl">rumi; rumi; rume</AUni> -<AUni ws="qvm-x-akh">rumi</AUni> -<AUni ws="qvm-x-akl">rumi; rumi; rume</AUni> -<AUni ws="qvm-x-ame">rumi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="8957ebad-d7d3-4c58-9794-1a7f35d17a18" ownerguid="f8346466-db96-4d4b-8a8d-2da65cfd7dc2"> -<Form> -<AUni ws="qvm-x-ach">jinan</AUni> -<AUni ws="qvm-x-acl">jinan</AUni> -<AUni ws="qvm-x-akh">jinan</AUni> -<AUni ws="qvm-x-akl">jinan</AUni> -<AUni ws="qvm-x-ame">hinan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="8959b37f-207f-4770-b1d2-fad2be7e2575"> -<Analyses> -<objsur guid="acb27c0f-0c18-4c10-b711-a896fa822fad" t="o" /> -</Analyses> -<Checksum val="-975669166" /> -<Form> -<AUni ws="qvm-x-akh">tsaycho</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="895ba32c-9c7f-42e8-83a3-d8fdc4036cd7" ownerguid="bf096b02-7f80-4616-ab93-b2f0f3e0d65a"> -<Form> -<AUni ws="qvm-x-ach">disimulädu</AUni> -<AUni ws="qvm-x-acl">disimulädu; disimulädu; disimulädo</AUni> -<AUni ws="qvm-x-akh">disimulädu</AUni> -<AUni ws="qvm-x-akl">disimulädu; disimulädu; disimulädo</AUni> -<AUni ws="qvm-x-ame">disimulädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="895de36b-e2c9-494c-a6a3-19ea5affe20b" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<ExampleWords> -<AUni ws="en">walker, hiker, tramp, pedestrian, passer-by</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What words refer to someone who walks?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="895e74fd-2855-4235-9028-0e3c722a0fb9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rpu; rpa</AUni> -<AUni ws="qvm-x-acl">rpu; rpo; rpa</AUni> -<AUni ws="qvm-x-akh">rpu; rpa</AUni> -<AUni ws="qvm-x-akl">rpu; rpo; rpa</AUni> -<AUni ws="qvm-x-ame">rpu; rpa</AUni> -</Custom> -<AlternateForms> -<objsur guid="b0191a64-2c21-47fc-82f5-8a423777c0ba" t="o" /> -</AlternateForms> -<DateCreated val="2022-9-23 18:26:20.508" /> -<DateModified val="2022-10-15 16:13:37.809" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="28e128b0-0c0c-4c7f-a36c-33ca094585fd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">DWN</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0edb9e55-e4f3-4b8e-a173-41ce0777e08a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7316bec0-4c4c-4afe-b5ae-98e19e4f7db1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx DWN 
\entryTyp suffix 
\gENG DWN 
\gSPN ABAJO 
\e DWN 
\c V1/V1 V2/V2 
\o 035 
\mp PMlowered +foreshortens 
\ach rpu 
\ach rpa morphlowered 
\akh rpu 
\akh rpa morphlowered 
\acl rpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl rpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl rpa morphlowered 
\akl rpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rpa morphlowered 
\ame rpu 
\ame rpa morphlowered</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8960a49d-1d09-4f04-8a2b-dd35a56d7644" ownerguid="56ef3f06-7fb9-462e-a7d0-517f3ce1623f"> -<ExampleWords> -<AUni ws="en">hyena, raccoon, coon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What other carnivores are there?</AUni> -</Question> -</rt> -<rt class="StStyle" guid="89670d4f-71d4-4878-b2ff-815e45512be1" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="14" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Dictionary-Context</Uni> -</Name> -<Rules> -<Prop></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<Usage> -<AUni ws="en">Base style for Before/After/Between content in Dictionary and Reversal views.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="MoStemAllomorph" guid="896963dc-9f9a-40c4-875d-269073fd76f9" ownerguid="745147a3-157d-472b-a4cb-e71da4669788"> -<Form> -<AUni ws="qvm-x-ach">ganchis</AUni> -<AUni ws="qvm-x-acl">ganchis</AUni> -<AUni ws="qvm-x-akh">qanchis</AUni> -<AUni ws="qvm-x-akl">qanchis</AUni> -<AUni ws="qvm-x-ame">qanchis</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="89698051-b3d7-4b62-b7e3-2ff4682c0c7c" ownerguid="d4d7d75f-f9b1-498f-b2d8-55fb72e04044"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">go.up</AUni> -<AUni ws="es">subir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9c788538-1f0a-4f5b-a13f-2d0d9e53bd69" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="896d57d4-4c25-4f0b-9985-a30974f64704" ownerguid="b0a9a631-e0dc-47d4-a762-e9a627732218"> -<Abbreviation> -<AUni ws="en">4.5.4.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.256" /> -<DateModified val="2022-9-23 16:55:8.256" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being a disciple of someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>36D Follow, Be a Disciple</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Follow, be a disciple</AUni> -</Name> -<Questions> -<objsur guid="2d6d7cae-b696-400b-bb7d-dbeac2db35fb" t="o" /> -<objsur guid="a94449b0-06d1-4c8d-8631-27f39883f39a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="896fe4cc-b9a9-49ec-b314-68562a2c86ee" ownerguid="a7a927f4-baae-4fbe-a00f-4b058ea834b9"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="8972dcdb-6d83-4cf2-b87d-e5dcde694eeb" ownerguid="5fac2c48-919a-4523-9c99-5352908f50d9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PunctuationForm" guid="897389ae-4ed0-4437-b9a0-4a3305bf9c35"> -<Form> -<Str> -<Run ws="qvm-x-akh"><<</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="897427a8-5c5a-4dbf-8415-846f76e18de4" ownerguid="768aed05-dbc9-4caf-9461-76cb3720f908"> -<ExampleWords> -<AUni ws="en">Ow! Ouch!</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(17) What do you say when you are hurt?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="897460e7-bd16-4bbc-bfe3-db1d757017e2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ce:la</AUni> -<AUni ws="qvm-x-acl">ce:la</AUni> -<AUni ws="qvm-x-akh">ce:la</AUni> -<AUni ws="qvm-x-akl">ce:la</AUni> -<AUni ws="qvm-x-ame">ce:la</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+celar</AUni> -<AUni ws="qvm-x-acl">+celar</AUni> -<AUni ws="qvm-x-akh">+celar</AUni> -<AUni ws="qvm-x-akl">+celar</AUni> -<AUni ws="qvm-x-ame">+celar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.102" /> -<DateModified val="2022-10-10 21:19:47.694" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="172f7ed9-e4fa-46f1-8298-aad286a628ab" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+celar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b0c13760-9cae-4afe-8c85-8843ff1231ff" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="55bcd442-a87f-43e7-85fc-3debb8a3970a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +celar 
\entryTyp root 
\gENG be.jealous 
\gSPN 
\e +celar 
\c V2 
\ach ce:la 
\akh ce:la 
\acl ce:la 
\akl ce:la 
\ame ce:la</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="89767eba-df2d-49c8-9f72-3f81c58e6969" ownerguid="dd564be9-1c41-4a62-bbb4-ef3a01483155"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">seal</AUni> -<AUni ws="es">sellar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dc8eb01c-8a25-40aa-bc7c-833f034ab4a8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="8976cb4b-2b73-4c42-98dc-a28926ac387e" ownerguid="28de12ca-087c-41e3-ba04-c6f8b460db46"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="897b2047-8353-4040-8b19-e2d95b3c4506" ownerguid="dfc81541-5e5c-4762-8866-df778aa99da6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">seep</AUni> -<AUni ws="es">filtrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fafacfea-10ca-4ca7-b328-b05d0d1b8732" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="897b2881-417e-43f2-a5d1-21b947ea9bfa" ownerguid="a8cb73ed-e20b-4977-905f-a6b6d8177827"> -<Form> -<AUni ws="qvm-x-ach">shanca</AUni> -<AUni ws="qvm-x-acl">shanca</AUni> -<AUni ws="qvm-x-akh">shanka</AUni> -<AUni ws="qvm-x-akl">shanka</AUni> -<AUni ws="qvm-x-ame">shanka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="897ca421-c327-42dd-8fef-64baf368ba20" ownerguid="f055291f-d636-4432-a812-8a667b8d2115"> -<Form> -<AUni ws="qvm-x-ach">caldu; caldo</AUni> -<AUni ws="qvm-x-acl">caldu; caldu; caldo</AUni> -<AUni ws="qvm-x-akh">caldu; caldo</AUni> -<AUni ws="qvm-x-akl">caldu; caldu; caldo</AUni> -<AUni ws="qvm-x-ame">caldu; caldo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="897e8ae7-f339-465e-8628-f5600a2dba27" ownerguid="2d9523b0-11e3-4051-824f-fe31e3b7ca29"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c822708e-1203-4723-8df4-76a00953b6c5" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="f2d372e0-8d38-4299-979f-ff2ef096e894" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="8980c228-838b-41d3-bcc6-78bdd2757c99" ownerguid="95bd1b8a-6f27-4b8e-90dd-2c4a489ea4cd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="8982816c-5256-467e-af60-c90dd5e2bb4d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lampa</AUni> -<AUni ws="qvm-x-acl">lampa</AUni> -<AUni ws="qvm-x-akh">lampa</AUni> -<AUni ws="qvm-x-akl">lampa</AUni> -<AUni ws="qvm-x-ame">lampa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lampa</AUni> -<AUni ws="qvm-x-acl">+lampa</AUni> -<AUni ws="qvm-x-akh">+lampa</AUni> -<AUni ws="qvm-x-akl">+lampa</AUni> -<AUni ws="qvm-x-ame">+lampa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.43" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9ad57ae8-6f5d-468a-9cce-6e78d83e20d3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lampa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8854daac-111e-4d33-8a09-03e6d052e40e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="73479b78-035a-4d8a-a8ab-8cf12c66d02e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lampa 
\entryTyp root 
\gENG shovel 
\gSPN lampa 
\e +lampa 
\c N0 
\ach lampa 
\akh lampa 
\acl lampa 
\akl lampa 
\ame lampa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="89867486-54e4-4a79-a311-971a160a724e" ownerguid="f6f38651-63fc-41f0-99ae-2d0711c5b18d"> -<Form> -<AUni ws="qvm-x-ach">chipsha</AUni> -<AUni ws="qvm-x-acl">chipsha</AUni> -<AUni ws="qvm-x-akh">chipsha</AUni> -<AUni ws="qvm-x-akl">chipsha</AUni> -<AUni ws="qvm-x-ame">chipsha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="8987e6ec-f9cb-4517-85e7-e48f3071c229" ownerguid="88829161-f325-46c5-afa1-4c3ad14c987b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bridge</AUni> -<AUni ws="es">puente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c9c2dbeb-bead-45f7-8061-8bbf73c1c7f3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8987ea5e-4955-456f-b1de-143cf9452d70" ownerguid="084e2568-3f54-4eab-b436-8a87fb466659"> -<ExampleWords> -<AUni ws="en">quarry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a place where stone is dug out of the ground?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="89883f90-e57f-43f2-8a7e-c5e98770a26d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">llampu</AUni> -<AUni ws="qvm-x-acl">llampu; llampo</AUni> -<AUni ws="qvm-x-akh">llampu</AUni> -<AUni ws="qvm-x-akl">llampu; llampo</AUni> -<AUni ws="qvm-x-ame">llampu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llampu.v</AUni> -<AUni ws="qvm-x-acl">*llampu.v</AUni> -<AUni ws="qvm-x-akh">*llampu.v</AUni> -<AUni ws="qvm-x-akl">*llampu.v</AUni> -<AUni ws="qvm-x-ame">*llampu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.134" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="72466dc4-8932-4997-a0c6-16a35bd04243" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llampu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2d2a4197-2111-466b-bee6-05c6929d6781" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ca9192aa-4249-499b-897b-d8534c64e6c9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llampu.v 
\entryTyp root 
\gENG soft 
\gSPN suave 
\e *llampu.v 
\c V1 
\ach llampu 
\akh llampu 
\acl llampu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl llampo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl llampu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl llampo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame llampu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="8988fd68-3256-4bdf-86bb-6861cd091b3b" ownerguid="72ada597-ac17-4c9d-a4a0-f7da15bf94a3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">piedra.caida</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="55ca4997-0b5e-4003-99ee-b2028449544a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="898aacea-1fbf-4e07-a8da-330f39a9a386"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tapu</AUni> -<AUni ws="qvm-x-acl">tapu; tapo</AUni> -<AUni ws="qvm-x-akh">tapu</AUni> -<AUni ws="qvm-x-akl">tapu; tapo</AUni> -<AUni ws="qvm-x-ame">tapu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tapu</AUni> -<AUni ws="qvm-x-acl">*tapu</AUni> -<AUni ws="qvm-x-akh">*tapu</AUni> -<AUni ws="qvm-x-akl">*tapu</AUni> -<AUni ws="qvm-x-ame">*tapu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.815" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2d534e89-91dc-4a1c-bf0a-c71e4c01aa38" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tapu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fb6a2407-472d-4e67-86ff-20731fa28da1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7652a316-32b4-42dc-a7de-20f32d4c4010" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tapu 
\entryTyp root 
\gENG ask 
\gSPN preguntar 
\e *tapu 
\c V2 
\ach tapu 
\akh tapu 
\acl tapu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tapo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tapu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tapo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tapu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="898bd8ed-3f1d-4382-a252-450aaeb164bf" ownerguid="8a36cea6-a15e-4086-8781-2e8d159afe61"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">knee</AUni> -<AUni ws="es">rodilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d5350fac-e42d-42fc-8e40-cf12c91596a6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="898dca8a-8aeb-4327-a7a4-fa653ace2f0f" ownerguid="e6c9fe4c-199e-4934-b622-739a85b0830d"> -<ExampleWords> -<AUni ws="en">organized, ordered, well-ordered, orderly, in order, harmonious, shipshape, structured, systematic, tidy, everything in its place</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe things that have been organized?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="898ef565-ea48-40df-a8c8-3609c41b633d" ownerguid="e0c3b4ec-ae80-44db-a2a6-9f4b3289e003"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lean</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cea09e60-40ad-49ec-b1e5-bfde3c1022c7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="898f759a-0d0f-4d6c-8747-bc8d765859c0" ownerguid="db93fc79-58d1-4d3d-8fe1-f5cce38ef679"> -<Form> -<AUni ws="qvm-x-ach">reloj</AUni> -<AUni ws="qvm-x-acl">reloj</AUni> -<AUni ws="qvm-x-akh">reloj</AUni> -<AUni ws="qvm-x-akl">reloj</AUni> -<AUni ws="qvm-x-ame">reloj</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="8993babd-2056-4e05-b3b6-6514b94e8bc1" ownerguid="0a4d2b93-e0ea-48d5-83db-57831794a8df"> -<Form> -<AUni ws="qvm-x-ach">gachpi</AUni> -<AUni ws="qvm-x-acl">gachpi; gachpi; gachpe</AUni> -<AUni ws="qvm-x-akh">qachpi</AUni> -<AUni ws="qvm-x-akl">qachpi; qachpi; qachpe</AUni> -<AUni ws="qvm-x-ame">qachpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="89944377-8694-4394-bced-153cc22a0e30" ownerguid="529140d1-6e8e-44fe-99f0-95289e933607"> -<Abbreviation> -<AUni ws="en">4.1.9.1.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to birth order.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Birth order</AUni> -</Name> -<Questions> -<objsur guid="a11637a5-1b6b-47b0-9b20-282ea86fdce1" t="o" /> -<objsur guid="e6976fe6-dca8-4095-bc0b-07a2abd5a2d7" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="bb29001e-97f3-4bb4-8946-7c33b9835fcb" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="89967319-82b7-4a1c-8e0b-9d2c96454456" ownerguid="a2a3e21a-819c-4400-b2e6-e6c1a0a0ded3"> -<ExampleWords> -<AUni ws="en">scoffer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who despises someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8998ea31-13c5-475e-8af1-bbc3601d8d69" ownerguid="9c00b1af-91e4-4840-a1d7-2f6e86dbe9f9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="8999a832-1cb4-4d9f-bd50-084c784fc13a" ownerguid="2aa41bcd-2aa4-4795-8b53-d12956906a1d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">widower</AUni> -<AUni ws="es">viudo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="60af729c-0430-430b-9618-a7162f19fe97" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8999bb69-2235-4cb3-a5a7-8cf7d67e12d9" ownerguid="d06dae77-134a-403f-ba88-52ecd66c0522"> -<ExampleWords> -<AUni ws="en">liverwort</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What general words refer to liverworts?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="899a6d21-3a16-4313-9c3c-9851300af09b" ownerguid="a2335c2a-e3b7-46c4-8e6e-5494a4b6fea5"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="899aa4b6-2bae-452f-827c-54dba0135c6c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chegpa</AUni> -<AUni ws="qvm-x-acl">chegpa</AUni> -<AUni ws="qvm-x-akh">cheqpa</AUni> -<AUni ws="qvm-x-akl">cheqpa</AUni> -<AUni ws="qvm-x-ame">chiqpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*triqpa.v</AUni> -<AUni ws="qvm-x-acl">*triqpa.v</AUni> -<AUni ws="qvm-x-akh">*triqpa.v</AUni> -<AUni ws="qvm-x-akl">*triqpa.v</AUni> -<AUni ws="qvm-x-ame">*triqpa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.127" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="109137c9-2cc9-4506-8ff3-afec670f61df" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*triqpa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bffac9e2-9c25-4489-a7bb-b0731ceb63c6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e2dc0525-f1d9-4824-a3b9-3ba341e2573b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *triqpa.v 
\entryTyp root 
\gENG 
\gSPN 
\e *triqpa.v 
\c V1 
\ach chegpa 
\akh cheqpa 
\acl chegpa 
\akl cheqpa 
\ame chiqpa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="899c0ce1-dd5f-4e39-8e71-ab2acec295b9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jagchi</AUni> -<AUni ws="qvm-x-acl">jagchi; jagche</AUni> -<AUni ws="qvm-x-akh">jaqchi</AUni> -<AUni ws="qvm-x-akl">jaqchi; jaqche</AUni> -<AUni ws="qvm-x-ame">haqchi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*haqtri</AUni> -<AUni ws="qvm-x-acl">*haqtri</AUni> -<AUni ws="qvm-x-akh">*haqtri</AUni> -<AUni ws="qvm-x-akl">*haqtri</AUni> -<AUni ws="qvm-x-ame">*haqtri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.680" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aefcfaa7-c1b2-4be9-a593-9533c16bd1cb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*haqtri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e9062ad5-194c-4a19-8a5a-7d96b1ce0653" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2201d46d-8d8b-411c-88fb-6b976d2b3ab4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *haqtri 
\entryTyp root 
\gENG bite 
\gSPN morder 
\e *haqtri 
\c V2 
\mp +FinalI 
\ach jagchi 
\akh jaqchi 
\acl jagchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl jagche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jaqchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jaqche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame haqchi</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="899fdb7b-1961-42ef-949e-0da911bfb6a5" ownerguid="c552c8a3-e8fc-44e9-81f9-52ad272b6640"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="57e435ff-f14a-44e1-b595-dff01f37fcc1" t="r" /> -</Morph> -<Msa> -<objsur guid="be6973f5-a2b1-46a6-9dd0-379cd8bb168a" t="r" /> -</Msa> -<Sense> -<objsur guid="0e064397-2e1c-4aab-a076-37fcf5d55e34" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="89a450e3-09d4-4d2c-a7cb-364d49dd3196" ownerguid="32260b00-dd19-4316-a833-a8a6cf5b6783"> -<Form> -<AUni ws="qvm-x-ach">panata</AUni> -<AUni ws="qvm-x-acl">panata</AUni> -<AUni ws="qvm-x-akh">panata</AUni> -<AUni ws="qvm-x-akl">panata</AUni> -<AUni ws="qvm-x-ame">panata</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="89a6a4b5-a61c-4c22-aab7-d98cc3a3dae6" ownerguid="c753fc8b-22ae-4e71-807f-56fb3ebd3cdd"> -<ExampleWords> -<AUni ws="en">platonic, be just good friends</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to being friends, but not having sex?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="89a9e395-7530-4527-98e4-c153cac68269"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">azucar</AUni> -<AUni ws="qvm-x-acl">azucar</AUni> -<AUni ws="qvm-x-akh">azucar</AUni> -<AUni ws="qvm-x-akl">azucar</AUni> -<AUni ws="qvm-x-ame">azucar</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+azucar</AUni> -<AUni ws="qvm-x-acl">+azucar</AUni> -<AUni ws="qvm-x-akh">+azucar</AUni> -<AUni ws="qvm-x-akl">+azucar</AUni> -<AUni ws="qvm-x-ame">+azucar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.910" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3a24a209-1fcc-41d3-bf33-0b8a1e541caa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+azucar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4cda9f31-b74f-4de3-b010-2fce01634f7b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3d3e0018-65b0-425b-8f8d-e5e622bd6c76" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +azucar 
\entryTyp root 
\gENG sugar 
\gSPN azucar 
\e +azucar 
\c N0 
\mp +FinalC 
\ach azucar 
\akh azucar 
\acl azucar 
\akl azucar 
\ame azucar</Run> -</AStr> -</Custom> -</rt> -<rt class="MoInflAffMsa" guid="89aaf2da-e71b-4b1f-a70d-31fce5e0eaa2" ownerguid="d6ae5750-f0ad-41fe-83f6-53f8a03121cc"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="b31b892c-cb26-4efd-b65c-29374c5e75b6" t="r" /> -</Slots> -</rt> -<rt class="CmSemanticDomain" guid="89ad4e41-bf08-4d93-a4f3-f72e8cc62bed" ownerguid="49bc0d75-4f07-44b4-a50f-bc9a557dc15e"> -<Abbreviation> -<AUni ws="en">4.1.9.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to being related by marriage.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">In-law</AUni> -</Name> -<OcmCodes> -<Uni>606 Parents-in-Law and Children-in-Law; 607 Siblings-in-Law</Uni> -</OcmCodes> -<Questions> -<objsur guid="68f8b663-bbef-49c9-a264-bbd7c483e2fd" t="o" /> -<objsur guid="f35fc040-18bc-457c-9e08-97c61267e626" t="o" /> -<objsur guid="327dec4c-abff-4943-a33d-656140ba3806" t="o" /> -<objsur guid="8f13af57-da2f-4178-b354-e822da6d9852" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="89ad7093-0344-4373-ae27-7519816169f2" ownerguid="8ffcef92-94d7-468e-9737-fad8567dce13"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="89af1673-3066-44f4-bdc7-d386eb2768a0" ownerguid="f56a2511-10cc-4829-940d-49051429bfba"> -<ExampleWords> -<AUni ws="en">thicken, get thicker, set, congeal, clot</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to becoming thicker?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="89b1b127-3b57-4fdf-bd38-69a599a2f045" ownerguid="742996cd-b87f-40a8-bdb3-dba74219bd73"> -<ExampleWords> -<AUni ws="en">hot, piping hot, scalding</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe food that is hot?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="89b2a975-13b0-483a-935f-5880fd0c420f" ownerguid="c0060a0d-c2c3-4cf1-9c4e-f796434a05dc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="2d11d601-c73e-4c0c-a4dc-bc686c7fb4d2" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="8daf31a5-8006-4542-a424-f92f47b4b743" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="89ba59d4-b314-4070-83bb-f9f868bcd363" ownerguid="0bc02285-8e70-442a-8d08-e04d922507c8"> -<Abbreviation> -<AUni ws="en">6.6.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.476" /> -<DateModified val="2022-9-23 16:55:8.476" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to drawing and painting pictures.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Draw, paint</AUni> -</Name> -<Questions> -<objsur guid="6eb54493-1c50-468e-aea7-2f93a20a1f33" t="o" /> -<objsur guid="b4c49ef1-6161-41b6-9221-96b2314af9fb" t="o" /> -<objsur guid="391642ab-ada9-4ebc-8448-539942462b34" t="o" /> -<objsur guid="14b7f7f0-b746-48f1-8393-978c433f46ee" t="o" /> -<objsur guid="8e995496-f2f7-4ef7-8899-12cf91e8095f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="89bb046b-b808-433b-ab23-6a47cca03af9" ownerguid="878a313b-a201-444e-8bdb-67048d60c63e"> -<ExampleWords> -<AUni ws="en">trample on, trample underfoot, ride roughshod over</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a person in authority ignoring what is good for the people under them?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="89bdb96f-aab6-474d-a015-11960f9c1a33"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">letra</AUni> -<AUni ws="qvm-x-acl">letra</AUni> -<AUni ws="qvm-x-akh">letra</AUni> -<AUni ws="qvm-x-akl">letra</AUni> -<AUni ws="qvm-x-ame">letra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+letra</AUni> -<AUni ws="qvm-x-acl">+letra</AUni> -<AUni ws="qvm-x-akh">+letra</AUni> -<AUni ws="qvm-x-akl">+letra</AUni> -<AUni ws="qvm-x-ame">+letra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.82" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ebdf3940-7a76-44e0-9671-57cd532c6ea9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+letra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7f2b42e8-872b-4947-b2c1-140a74d88385" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="96473120-65f5-4f84-9bdc-13721a20ff38" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +letra 
\entryTyp root 
\gENG letter 
\gSPN letra 
\e +letra 
\c N0 
\ach letra 
\akh letra 
\acl letra 
\akl letra 
\ame letra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="89c036ad-fbf3-4fc6-a088-7885c94fdeaa" ownerguid="a128788d-9e04-47fd-b3ca-7d8adc3ceae8"> -<Form> -<AUni ws="qvm-x-ach">pözu</AUni> -<AUni ws="qvm-x-acl">pözu; pözu; pözo</AUni> -<AUni ws="qvm-x-akh">pözu</AUni> -<AUni ws="qvm-x-akl">pözu; pözu; pözo</AUni> -<AUni ws="qvm-x-ame">pözu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="89c3a691-97d2-4ddf-8bce-3c916d5d02c7" ownerguid="832fe228-73ce-4344-938c-c6d29153c348"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="89c55461-5ea8-47a5-b345-0f3bc0a98939"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">milagru; milagro</AUni> -<AUni ws="qvm-x-acl">milagru; milagru; milagro</AUni> -<AUni ws="qvm-x-akh">milagru; milagro</AUni> -<AUni ws="qvm-x-akl">milagru; milagru; milagro</AUni> -<AUni ws="qvm-x-ame">milagru; milagro</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+milagro</AUni> -<AUni ws="qvm-x-acl">+milagro</AUni> -<AUni ws="qvm-x-akh">+milagro</AUni> -<AUni ws="qvm-x-akl">+milagro</AUni> -<AUni ws="qvm-x-ame">+milagro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.434" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a0649085-d258-4ec6-9600-d415e298c552" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+milagro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c9e7cdc5-421a-45f1-9622-e41bb95d84a3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fa71967e-9a52-4a88-8aec-a822afa965fd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +milagro 
\entryTyp root 
\gENG miracle 
\gSPN milagro 
\e +milagro 
\c N0 
\ach milagru / ~_# 
\ach milagro / _# 
\akh milagru / ~_# 
\akh milagro / _# 
\acl milagru / ~_# 
\acl milagru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl milagro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl milagru / ~_# 
\akl milagru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl milagro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame milagru / ~_# 
\ame milagro / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="89c580b4-37cd-480e-ae30-5305c14c1366" ownerguid="7c022751-a9f9-412d-8b27-8cd03b797e2d"> -<ExampleWords> -<AUni ws="en">can hardly, can barely, can scarcely</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that you can do something, but it is difficult?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="89c9becb-c2f1-4fd2-b247-1d887e7937df"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">anqara</AUni> -<AUni ws="qvm-x-acl">anqara</AUni> -<AUni ws="qvm-x-akh">anqara</AUni> -<AUni ws="qvm-x-akl">anqara</AUni> -<AUni ws="qvm-x-ame">anqara</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*anqara</AUni> -<AUni ws="qvm-x-acl">*anqara</AUni> -<AUni ws="qvm-x-akh">*anqara</AUni> -<AUni ws="qvm-x-akl">*anqara</AUni> -<AUni ws="qvm-x-ame">*anqara</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.790" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1b7ad87a-5b48-4b76-a000-891132e8fa06" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*anqara</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c90a608d-7d41-4529-8a84-43b013709f48" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bdf485dc-b2fd-401d-bd76-d48fde29a289" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *anqara 
\entryTyp root 
\gENG 
\gSPN lavatorio 
\e *anqara 
\c N0 
\ach anqara 
\akh anqara 
\acl anqara 
\akl anqara 
\ame anqara 
\i JHN 13.5 Nirkurmi anqaraman yakuta winarkur discïpulunkunapa chakinta maylaparqan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="89ca943e-2560-4660-884e-c75fa6b6c8e4" ownerguid="2061f38d-0bf7-4dcb-af69-9c6a12014be8"> -<Form> -<AUni ws="qvm-x-ach">shüra</AUni> -<AUni ws="qvm-x-acl">shüra</AUni> -<AUni ws="qvm-x-akh">shüra</AUni> -<AUni ws="qvm-x-akl">shüra</AUni> -<AUni ws="qvm-x-ame">shüra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="89cfd2ca-8e4c-454f-ad83-96264469bbfc" ownerguid="12c63812-f1f5-4d11-8ca9-55980271341b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="89d051a5-3828-48e3-b0d3-2d32d920b7d6" ownerguid="f6bfcab1-f820-4f6f-ae55-614bb775337a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="89d24e93-26f2-427b-97ba-6330a80d8974" ownerguid="04752883-aa3e-42a2-bd42-454e9cd99b11"> -<ExampleWords> -<AUni ws="en">I heard that...</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) reported evidence: the speaker claims to know of the situation described via verbal means, but does not specify whether it is second-hand, hearsay, or via folklore.</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="89d3056f-bc26-4898-b825-b29ced75cdd7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gocha</AUni> -<AUni ws="qvm-x-acl">gocha</AUni> -<AUni ws="qvm-x-akh">qocha</AUni> -<AUni ws="qvm-x-akl">qocha</AUni> -<AUni ws="qvm-x-ame">qucha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qutra.n</AUni> -<AUni ws="qvm-x-acl">*qutra.n</AUni> -<AUni ws="qvm-x-akh">*qutra.n</AUni> -<AUni ws="qvm-x-akl">*qutra.n</AUni> -<AUni ws="qvm-x-ame">*qutra.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.902" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a5f65a27-30c1-40c1-abc3-ff16adb944a6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qutra.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5c19e9f4-bb32-41db-abec-84cb1f394cf8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="52030b4b-3684-4342-abb0-6e05caa8cb8a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qutra.n 
\entryTyp root 
\gENG lake 
\gSPN laguna 
\e *qutra.n 
\c N0 
\ach gocha 
\akh qocha 
\acl gocha 
\akl qocha 
\ame qucha</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="89d7c6a6-8be7-4bfe-910b-56a1132456cc" ownerguid="4bcf81e9-1edc-4872-a8d3-b0f710b56b30"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="f50da8b0-7e57-469a-90ff-456c88bd1ecb" t="o" /> -<objsur guid="b74f6fe8-c517-47eb-a65e-5298cb8d5b91" t="o" /> -<objsur guid="593218cd-e21f-41c9-b173-f4c4c1a3fecb" t="o" /> -<objsur guid="e86a1160-ecf9-45d0-b55f-8ae9b418048e" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiAnalysis" guid="89db7c8c-9ada-4bc1-b02b-82871c946c22" ownerguid="a2989907-310a-4a71-8768-cfa71e66caa6"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="73f728d3-a925-4d4c-aae4-a975661952ba" t="o" /> -<objsur guid="ab04c63d-10b9-4fa0-ae94-fe71d559664a" t="o" /> -<objsur guid="567361ce-036b-433f-af36-3f3eaeca8b2d" t="o" /> -<objsur guid="01536c85-4785-453e-835a-b50f2a7c3cc9" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="89e2435c-fb17-439b-b3b8-609262c3b02c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">eja:du</AUni> -<AUni ws="qvm-x-acl">eja:du; eja:du; eja:do</AUni> -<AUni ws="qvm-x-akh">eja:du</AUni> -<AUni ws="qvm-x-akl">eja:du; eja:du; eja:do</AUni> -<AUni ws="qvm-x-ame">eja:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ahijado</AUni> -<AUni ws="qvm-x-acl">+ahijado</AUni> -<AUni ws="qvm-x-akh">+ahijado</AUni> -<AUni ws="qvm-x-akl">+ahijado</AUni> -<AUni ws="qvm-x-ame">+ahijado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.669" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="391567ad-148f-48ab-a241-dc168e9d5f4a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ahijado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5103f59a-d8f6-43fe-aa1c-bbf648febf6a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ec41a1b0-b617-49f1-9c31-facd067a0b8e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ahijado 
\entryTyp root 
\gENG godson 
\gSPN ahijado 
\e +ahijado 
\c N0 
\mp +assimilated 
\ach eja:du 
\akh eja:du 
\acl eja:du / _# 
\acl eja:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl eja:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl eja:du / _# 
\akl eja:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl eja:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame eja:du</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="89e3b0e9-c8d0-4b27-9e16-d3ca29909f8f" ownerguid="f77fd6a4-0a27-4b86-8744-6616143af5e7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="57e435ff-f14a-44e1-b595-dff01f37fcc1" t="r" /> -</Morph> -<Msa> -<objsur guid="be6973f5-a2b1-46a6-9dd0-379cd8bb168a" t="r" /> -</Msa> -</rt> -<rt class="WfiWordform" guid="89e56f97-0f67-49be-b599-d3c02b670303"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Markaykiman</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="89e5cf73-f8ae-4115-a7f9-c6164a4241d6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">puytucshu</AUni> -<AUni ws="qvm-x-acl">puytucshu; puytucshu; puytucsho</AUni> -<AUni ws="qvm-x-akh">puytukshu</AUni> -<AUni ws="qvm-x-akl">puytukshu; puytukshu; puytuksho</AUni> -<AUni ws="qvm-x-ame">puytukshu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puytukshu</AUni> -<AUni ws="qvm-x-acl">*puytukshu</AUni> -<AUni ws="qvm-x-akh">*puytukshu</AUni> -<AUni ws="qvm-x-akl">*puytukshu</AUni> -<AUni ws="qvm-x-ame">*puytukshu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.59" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="382b61a7-245f-4b42-ba38-05c4010cbbd9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puytukshu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c7624372-cecb-4fe4-b8a1-e1450a3e8679" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bd7ad320-cb62-4dc4-99f5-7e8e01e1a956" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puytukshu 
\entryTyp root 
\gENG knoll 
\gSPN cumbre 
\e *puytukshu 
\c N0 
\ach puytucshu 
\akh puytukshu 
\acl puytucshu / _# 
\acl puytucshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl puytucsho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl puytukshu / _# 
\akl puytukshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl puytuksho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame puytukshu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="89e72c49-ac4e-49d6-b972-b04ad54d9e0d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">curu</AUni> -<AUni ws="qvm-x-acl">curu; curo</AUni> -<AUni ws="qvm-x-akh">kuru</AUni> -<AUni ws="qvm-x-akl">kuru; kuro</AUni> -<AUni ws="qvm-x-ame">kuru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kuru.v</AUni> -<AUni ws="qvm-x-acl">*kuru.v</AUni> -<AUni ws="qvm-x-akh">*kuru.v</AUni> -<AUni ws="qvm-x-akl">*kuru.v</AUni> -<AUni ws="qvm-x-ame">*kuru.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.23" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="043761b2-7b28-4198-ae57-02e3a871cf26" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kuru.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2f5c5f9e-a882-49cb-b08d-768ea391729c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="54ebd220-1b42-4bbd-a0e1-77e5d4d0a129" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kuru.v 
\entryTyp root 
\gENG form.ball 
\gSPN obillar 
\e *kuru.v 
\c V2 
\ach curu 
\akh kuru 
\acl curu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl curo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kuru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kuro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kuru</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="89e74a22-861c-4358-9402-d95b9b33a18f"> -<Analyses> -<objsur guid="258864e5-cd2f-4494-827e-b4bfe8140288" t="o" /> -<objsur guid="374811b2-b918-47ad-b4b6-20a055c01a26" t="o" /> -<objsur guid="adb34adc-a53b-4ac5-be7a-6322eace9918" t="o" /> -<objsur guid="d8b1a547-3592-41b4-b2dd-a7994b7357f4" t="o" /> -</Analyses> -<Checksum val="-1544034969" /> -<Form> -<AUni ws="qvm-x-akh">nipäkuq</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="89e7897e-ff38-4957-a042-f6240634dd26" ownerguid="01a69e19-d3b0-4450-aa81-74af2409b40e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="89e7c29b-038b-4d2c-9f2e-72665c7e17b1" ownerguid="c30e4dcd-a9cf-45c8-81ea-e9bd19d61bb7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="a225cf51-dc89-49cf-afcf-83ee2d4fc13f" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="c2c30df4-1993-4159-9b00-023271e69b16" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="89e98a38-d9e2-418f-b1c5-6384e27418af" ownerguid="196f81d0-6a1a-4cc0-936a-367423ff485c"> -<ExampleWords> -<AUni ws="en">trap, snare, pit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What kinds of traps are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="89ecfa8a-83d3-4085-bd6c-3d028266f9a0" ownerguid="ed7930df-e7b4-43c9-a11a-b09521276b57"> -<ExampleWords> -<AUni ws="en">start to smell</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(17) What words refer to something beginning to smell?</AUni> -</Question> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="89edf312-823b-4bd1-9b8e-7755813dda71" ownerguid="472432d6-865c-466c-9972-bcca75f3243e" /> -<rt class="LexEntry" guid="89f18502-3537-4716-9325-3693bf686f55"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">awi</AUni> -<AUni ws="qvm-x-acl">awi; awe</AUni> -<AUni ws="qvm-x-akh">awi</AUni> -<AUni ws="qvm-x-akl">awi; awe</AUni> -<AUni ws="qvm-x-ame">awi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*awi</AUni> -<AUni ws="qvm-x-acl">*awi</AUni> -<AUni ws="qvm-x-akh">*awi</AUni> -<AUni ws="qvm-x-akl">*awi</AUni> -<AUni ws="qvm-x-ame">*awi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.890" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="85a74cf4-929c-403c-8c64-d2990aeffa76" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*awi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="121a418b-2ccf-4663-9843-6b3a7af2fed3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bba9ebe9-5073-4364-bc6f-8b7f9bf94857" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *awi 
\entryTyp root 
\gENG rinse 
\gSPN enjuagar 
\e *awi 
\c V2 
\mp +FinalI 
\ach awi 
\akh awi 
\acl awi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl awe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl awi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl awe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame awi 
\mcc *awi / ~_ [lla] 1</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="89f3771c-7e0d-419e-834b-222d028d2acb" ownerguid="65846491-830b-432a-9b69-ea9f0a84a560"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bank.fire</AUni> -<AUni ws="es">cubrir.un.fuego</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="09330312-0bb2-4209-9b08-06c4c0f8d01d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="89f60275-5df4-4800-b26b-b94ad97e9670" ownerguid="2d563d27-8ac3-41c9-b326-856c9e1f6401"> -<ExampleWords> -<AUni ws="en">concave, hollow, hollowed out, caved in, dented, indented, vaulted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is concave?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="89f83065-6807-460c-afbe-a629b2d801fa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">capri</AUni> -<AUni ws="qvm-x-acl">capri; capri; capre</AUni> -<AUni ws="qvm-x-akh">kapri</AUni> -<AUni ws="qvm-x-akl">kapri; kapri; kapre</AUni> -<AUni ws="qvm-x-ame">kapri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kapri</AUni> -<AUni ws="qvm-x-acl">*kapri</AUni> -<AUni ws="qvm-x-akh">*kapri</AUni> -<AUni ws="qvm-x-akl">*kapri</AUni> -<AUni ws="qvm-x-ame">*kapri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.941" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b5776b20-00fc-4a2e-ba61-92e7309a251d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kapri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="818e2f97-8aa8-4406-aa42-1266a9fecf01" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0a1e5660-e498-41ca-8889-4ae845266f8d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kapri 
\entryTyp root 
\gENG 
\gSPN 
\e *kapri 
\c N0 
\mp +FinalI 
\ach capri 
\akh kapri 
\acl capri / _# 
\acl capri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl capre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kapri / _# 
\akl kapri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kapre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kapri 
\i JOB 41.30 Pachancho escämanpis tëja paquipanogragmi capri capri caycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="89fb78ef-09a0-40a7-a3f4-74e1bae93a3e" ownerguid="50d9d887-1375-4164-90af-eb29f5e73292"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -</rt> -<rt class="LexEntry" guid="89fb9e9a-1c52-4d3a-99aa-5fdd061f778f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ntsi</AUni> -<AUni ws="qvm-x-acl">ntsi; ntsi; ntse</AUni> -<AUni ws="qvm-x-akh">ntsi</AUni> -<AUni ws="qvm-x-akl">ntsi; ntsi; ntse</AUni> -<AUni ws="qvm-x-ame">ntsi</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.607" /> -<DateModified val="2022-10-19 20:39:50.265" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="2" /> -<LexemeForm> -<objsur guid="ecd3fb10-7edc-41bd-a74e-24d356b3fec3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">12P.VV</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2d74ad57-78d8-4748-98d2-3aacf2799c2f" t="o" /> -<objsur guid="a6965348-c2a1-44ad-8d0b-c5c6e8cdc68b" t="o" /> -<objsur guid="f1ab7fd4-3eac-4764-b321-b4d8af63f381" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="939f58a1-f318-4a72-afbd-a86740487b5f" t="o" /> -<objsur guid="79b14f71-d8e3-404e-ab77-6f5e134fbca5" t="o" /> -<objsur guid="e5d454b3-019a-4379-8b13-35881032f622" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx 12P.VV 
\entryTyp suffix 
\gENG 12P.VV 
\gSPN 12P.VV 
\e 12P.VV 
\c N0/N0 BN/BN R1/R0 N1/N0 
\o 140 
\mp +FinalI 
\ach ntsi 
\akh ntsi 
\acl ntsi / _# 
\acl ntsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ntse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ntsi / _# 
\akl ntsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ntse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ntsi 
\mp +foreshortens 
\mcc 12P.VV / {+FinalC} ~_ 
\mcc 12P.VV / ~_ 3P.V</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="89fc1464-1d63-4b94-80bc-31fa63e42e15" ownerguid="6de42a33-35b2-49c6-b2c4-fa9c0c5094f0"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Would you like something to drink? Would you like some tea or coffee? Could I offer you something to drink? Could I get you something to drink?</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(5) What expressions are used to offer a drink?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="89fcc009-77f3-4f69-93ec-f47b87e5221c" ownerguid="9d6cbe74-93d6-41fb-b7e2-cc30adb28187"> -<ExampleWords> -<AUni ws="en">rise (n), ascension, ascent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to the act of moving up?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8a013669-24b4-4ea5-82de-1f7680939193" ownerguid="70164474-a65b-4506-9953-f26afb6b497a"> -<ExampleWords> -<AUni ws="en">fireplace, stove, lamp, lantern, candle, trash heap, firepot, incinerator, furnace, heater, kiln, barbecue, forge, blast furnace, crematorium, brazier, range, cooker, gas ring, burner</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) Where do people light fires?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8a01910f-bdb0-4ffa-9196-f65008aa9ec8" ownerguid="9dfb9f99-4e30-4cd8-a8ac-7b97d5a96a68"> -<Form> -<AUni ws="qvm-x-ach">lïma</AUni> -<AUni ws="qvm-x-acl">lïma</AUni> -<AUni ws="qvm-x-akh">lïma</AUni> -<AUni ws="qvm-x-akl">lïma</AUni> -<AUni ws="qvm-x-ame">lïma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="8a03b9ba-52e3-4fa1-874d-862d5eecf4a7" ownerguid="9a466e3d-e249-4c70-a52a-395c4d4fd851"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8a04e605-90fb-4f07-93fb-c83cd8230b3b" ownerguid="ea17aba7-6d4e-4dbf-89ea-84a1b1c47647"> -<ExampleWords> -<AUni ws="en">expand, enlarge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making a container big?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8a05b503-2898-4892-98e7-e1bccaf4f0d3" ownerguid="725d78eb-8cac-4b2f-b5a4-f0a9adb80f5d"> -<ExampleWords> -<AUni ws="en">false religion, sect</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a religious group, which the official religion considers to be false?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8a07bf49-cdf2-4a89-9e4f-39e847fdc2d4" ownerguid="cc02c930-5692-4eaa-af3f-2bc5210eda20"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8a0c3122-c526-4b26-9831-44ca2275182c" ownerguid="65ef6aae-019f-4980-b6d9-5b7ad2c8e68f"> -<ExampleWords> -<AUni ws="en">saying, proverb, adage, axiom, byword, expression, formula, maxim, moral, saw, truism, household word, well-turned phrase</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a saying?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="8a0c5ed9-0041-4af5-a193-329e6c9f2717" ownerguid="c72985cf-b07f-4ed5-873a-a2209929667e"> -<Abbreviation> -<AUni ws="en">8.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.579" /> -<DateModified val="2022-9-23 16:55:8.579" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is big.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79B' Large, Small</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Big</AUni> -</Name> -<Questions> -<objsur guid="faa13c09-a51a-4adb-b475-6dbabd5b1790" t="o" /> -<objsur guid="7d8e033c-31ed-484d-a84f-cedb44103676" t="o" /> -<objsur guid="36922ba8-264d-46ab-ab82-ada961bfc3a2" t="o" /> -<objsur guid="3c3b6297-7418-44e2-98c5-9f1fbfa59876" t="o" /> -<objsur guid="50c0ec8c-87fc-4f50-9487-7ef0e273da2b" t="o" /> -<objsur guid="a0f2cbfc-fda6-4ab2-9d22-e911ff330aaa" t="o" /> -<objsur guid="5421d7ae-9d62-466a-b516-3702adf59420" t="o" /> -<objsur guid="19bcff60-b148-4187-bacd-3e3c571302a9" t="o" /> -<objsur guid="c9c1004f-8980-4c91-937d-40f4817d374b" t="o" /> -<objsur guid="c7a4c654-d408-49c1-be9f-1830ae6c2cf6" t="o" /> -<objsur guid="14ce9f07-4132-42c5-b2ea-b16b96688cc6" t="o" /> -<objsur guid="bf686d5f-f2df-4d49-ade0-8c156d6fb228" t="o" /> -<objsur guid="a480161a-2d03-4c02-8c1b-99745c33b612" t="o" /> -<objsur guid="31269e8f-6ffb-4df5-9ac7-93ea031bfff1" t="o" /> -<objsur guid="ea68a8d9-9cea-4870-9107-52e50530e6e9" t="o" /> -<objsur guid="5ade33c6-4d4a-4b19-a087-950c886c3670" t="o" /> -<objsur guid="22e68523-52f6-4ebb-b10d-4afbebc4aceb" t="o" /> -<objsur guid="bd7b6fcc-d224-46d6-b65f-e4dab95cbd00" t="o" /> -<objsur guid="a562faa1-4197-4f02-9185-a3a11c912f0d" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="2594fe01-4d20-4a20-b093-2df70bced18f" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b43fae8e-6b19-42ed-98cd-d363174b9cf8" t="o" /> -<objsur guid="7648040b-0aa5-4d9a-8f13-ffd066b81602" t="o" /> -<objsur guid="b1688009-474d-4e2e-a137-acc1e32a435f" t="o" /> -<objsur guid="f8863b67-b911-4334-a1b6-6eb913bd14af" t="o" /> -<objsur guid="67e57493-d286-4271-b877-f63f962dddf1" t="o" /> -<objsur guid="73d580ac-dc89-474c-8048-3453ebdda807" t="o" /> -<objsur guid="d0dee676-f3ae-43cc-96f1-7e3bb65870f5" t="o" /> -<objsur guid="dfdcfa24-b013-4566-af4a-28ef1dfd4742" t="o" /> -<objsur guid="aba3f7f1-9e13-4b48-acbb-3bf6d6bfa0e8" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="8a11e609-e88d-4247-8c5f-224ddb20de10" ownerguid="0f883eb0-00a1-44cc-b719-97fb6ec145d4"> -<Abbreviation> -<AUni ws="en">5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.325" /> -<DateModified val="2022-9-23 16:55:8.325" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to clothing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>6Q Cloth, Leather, and Objects Made of Such Materials</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Clothing</AUni> -</Name> -<OcmCodes> -<Uni>290 Clothing; 291 Normal Garb</Uni> -</OcmCodes> -<Questions> -<objsur guid="3d7c34c0-0246-464a-9466-d39e86c131cd" t="o" /> -<objsur guid="3dfb5634-ebe2-470d-8b0f-591b912b9339" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="ee6e993c-5551-42ae-b35e-26bc6aeeb3a4" t="o" /> -<objsur guid="410a3d81-290f-416b-8012-3aa16eaa9e55" t="o" /> -<objsur guid="5b41c1ed-95bb-4cca-8cff-87361acb5683" t="o" /> -<objsur guid="c3b808d4-d94e-4c8e-b7b2-87b4f4a83198" t="o" /> -<objsur guid="c817af65-7cc8-4105-a8ed-47067d97b73b" t="o" /> -<objsur guid="40516af2-d413-418e-8b68-8443847ee169" t="o" /> -<objsur guid="4445cccd-e9b9-4f25-9e8c-2ef58408297d" t="o" /> -<objsur guid="5450043d-907b-4884-a9e5-35cfd5935947" t="o" /> -<objsur guid="72d9b7cd-aa06-4f7b-a66b-b992171d2cd4" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="PunctuationForm" guid="8a1346e0-a9af-44d8-899c-437343b52ab5"> -<Form> -<Str> -<Run ws="en">witho</Run> -</Str> -</Form> -</rt> -<rt class="WfiMorphBundle" guid="8a15c147-6cbb-4a4e-acac-8d7f303176c5" ownerguid="b7a04cf8-e33b-4a8f-b3c7-78c322732100"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pis</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pis</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pis</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pis</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pis</Run> -</AStr> -</Form> -<Morph> -<objsur guid="18466f68-8c21-4054-acf2-869c4074b430" t="r" /> -</Morph> -<Msa> -<objsur guid="8b7a32d0-6744-4c78-9071-7cf96938c9b3" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="8a1e084b-f492-4ebc-818c-664831e9b63c" ownerguid="78e37c6a-9582-4c14-a495-43eb1171df88"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chief</AUni> -<AUni ws="es">jefe</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b28ef121-f4b0-42f4-b6fb-1b6b90e5e6c5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8a1f8076-c76a-48de-9732-650b16518218" ownerguid="243d8a57-d5ed-4d7f-bd5e-f2605634f0fc"> -<ExampleWords> -<AUni ws="en">defensive, protective</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something you do or use to defend yourself?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8a23ef82-2e94-4aa0-8fae-de0c62cebdbc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bien; bien</AUni> -<AUni ws="qvm-x-acl">bien; bien</AUni> -<AUni ws="qvm-x-akh">bien; bien</AUni> -<AUni ws="qvm-x-akl">bien; bien</AUni> -<AUni ws="qvm-x-ame">bien; bien</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bien</AUni> -<AUni ws="qvm-x-acl">+bien</AUni> -<AUni ws="qvm-x-akh">+bien</AUni> -<AUni ws="qvm-x-akl">+bien</AUni> -<AUni ws="qvm-x-ame">+bien</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.961" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="19b71414-72a1-4515-81c3-848f034c16a7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bien</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4886a1a1-5046-4d27-82c7-70a1323335bf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="edb8ce11-8052-4356-a9d2-f73bf1fb60d2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bien 
\entryTyp root 
\gENG 
\gSPN 
\e +bien 
\c N0 
\mp +FinalC 
\ach bien / _# 
\ach bien / ~_# 
\akh bien / _# 
\akh bien / ~_# 
\acl bien / _# 
\acl bien / ~_# 
\akl bien / _# 
\akl bien / ~_# 
\ame bien / _# 
\ame bien / ~_# 
\i PRO 3.7 Ama yachagtucuytsu. Mas bien Tayta Diosnintsita cäsucushpayqui lutancunata ama ruraytsu.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8a262f30-9be8-4c87-ae1e-a46ab674493d" ownerguid="fb84538a-17a8-4adc-8d50-e2b66f8e4099"> -<ExampleWords> -<AUni ws="en">number (v), numbered</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to writing numbers on a series of things?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8a276178-a411-4030-b3a3-7f3de137e468" ownerguid="7c64f65b-2889-4f90-ba61-6b5f7634d4bc"> -<ExampleWords> -<AUni ws="en">male, female, bitch, tom, tomcat, bull, bullock, cow, heifer, ram, ewe, billy goat, nanny goat, boar, sow, stallion, mare, filly, stag, buck, hart, doe, vixen, lioness, tigress, bull elephant, rooster, cock, hen, drake, peacock, peahen</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a male or female animal?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8a2872fd-4aa5-44b3-aefd-9d9c27024f03" ownerguid="9f868391-f1df-4682-bdcb-2c2c799006cf"> -<ExampleWords> -<AUni ws="en">heed, mind, mindful, respond</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to remembering to do something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8a2955f2-4fcf-49c7-8ff8-78720114c244" ownerguid="44bf22fd-3725-4c49-bd3c-434402c33493"> -<ExampleWords> -<AUni ws="en">carpet, rug, mat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to floor coverings?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8a2fbf1a-1ee8-4794-8310-7e376a763662" ownerguid="41988a9a-f8b3-4817-aeeb-9409cce668e3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cane</AUni> -<AUni ws="es">caña</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="61663d67-9c75-46ba-a455-d505be2dc0bc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8a3042d5-4ebc-4b88-829b-9445e4284beb" ownerguid="1fda68d4-5941-4695-b656-090d603a3344"> -<ExampleWords> -<AUni ws="en">good cook, bad cook, tremendous cook, fantastic cook</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe how well a person cooks?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8a306ee6-b581-4d79-957a-730820d565df" ownerguid="37ebf319-eb0c-4818-8a45-c9a66628b338"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="101bbdc0-3b23-44cd-98c2-a5acb586127c" t="o" /> -</Examples> -<Gloss> -<AUni ws="es">acaparar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b7ef83dd-ae38-41cf-bd4c-513127be9bb4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="8a337ef9-c767-4521-a209-d5a6f9a76e90"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wicsu</AUni> -<AUni ws="qvm-x-acl">wicsu; wicso</AUni> -<AUni ws="qvm-x-akh">wiksu</AUni> -<AUni ws="qvm-x-akl">wiksu; wikso</AUni> -<AUni ws="qvm-x-ame">wiksu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wiksu.v</AUni> -<AUni ws="qvm-x-acl">*wiksu.v</AUni> -<AUni ws="qvm-x-akh">*wiksu.v</AUni> -<AUni ws="qvm-x-akl">*wiksu.v</AUni> -<AUni ws="qvm-x-ame">*wiksu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.648" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2cf7adf9-116e-472c-ae7a-c69e92289886" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wiksu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eb934804-9628-4560-ba6d-b89454e41883" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2dec4433-4b46-403b-8e72-eab40a68ea7c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wiksu.v 
\entryTyp root 
\gENG bend 
\gSPN torcer 
\e *wiksu.v 
\c V1 
\ach wicsu 
\akh wiksu 
\acl wicsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wicso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wiksu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wikso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wiksu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8a34505e-b1d9-46ee-bab8-3fa0bca5ea50" ownerguid="af700054-258a-458a-9e38-e90397833e51"> -<ExampleWords> -<AUni ws="en">orthography, alphabet, letter, punctuation, accent, tone mark, underline, underscore</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the letters and symbols we use to write?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8a36cea6-a15e-4086-8781-2e8d159afe61"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gongur</AUni> -<AUni ws="qvm-x-acl">gongur</AUni> -<AUni ws="qvm-x-akh">qonqur</AUni> -<AUni ws="qvm-x-akl">qonqur</AUni> -<AUni ws="qvm-x-ame">qunqur</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qunqur</AUni> -<AUni ws="qvm-x-acl">*qunqur</AUni> -<AUni ws="qvm-x-akh">*qunqur</AUni> -<AUni ws="qvm-x-akl">*qunqur</AUni> -<AUni ws="qvm-x-ame">*qunqur</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.861" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9d4fa434-b6ca-4986-970e-6d65639185f0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qunqur</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d5350fac-e42d-42fc-8e40-cf12c91596a6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="898bd8ed-3f1d-4382-a252-450aaeb164bf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qunqur 
\entryTyp root 
\gENG knee 
\gSPN rodilla 
\e *qunqur 
\c N0 
\mp +FinalC 
\ach gongur 
\akh qonqur 
\acl gongur 
\akl qonqur 
\ame qunqur</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="8a3909dd-a970-4c78-b654-788efaefdca4" ownerguid="f3231f43-90e3-42b2-ab13-04792f782b7d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">all</AUni> -<AUni ws="es">todos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b16d0818-05dc-49f7-8cdf-889b0be5517e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="8a3a2c97-f0cc-4dae-98c9-a2a6041d35c7" ownerguid="32937435-da56-4752-b867-4de0869207d3"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2SA 8.2 Nircurna pampaman lapanta lätaycatsir cordelwan tuporgan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="8a3ad6e5-5189-4c87-b3c7-af74440ba9fa" ownerguid="b68d23ac-107c-4f83-ad4c-0eb39bde54ee"> -<Form> -<AUni ws="qvm-x-ach">disculpa</AUni> -<AUni ws="qvm-x-acl">disculpa</AUni> -<AUni ws="qvm-x-akh">disculpa</AUni> -<AUni ws="qvm-x-akl">disculpa</AUni> -<AUni ws="qvm-x-ame">disculpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8a3fa8c2-0b6b-431e-b6bb-3a87a3933331"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fiesta</AUni> -<AUni ws="qvm-x-acl">fiesta</AUni> -<AUni ws="qvm-x-akh">fiesta</AUni> -<AUni ws="qvm-x-akl">fiesta</AUni> -<AUni ws="qvm-x-ame">fiesta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fiesta</AUni> -<AUni ws="qvm-x-acl">+fiesta</AUni> -<AUni ws="qvm-x-akh">+fiesta</AUni> -<AUni ws="qvm-x-akl">+fiesta</AUni> -<AUni ws="qvm-x-ame">+fiesta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.548" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="833854bd-a515-4d9d-aa8d-39da2a38dcce" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fiesta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="15a39cf5-e4b4-4ad1-af0e-c9d3c8984d08" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="87b52512-0715-4ae2-956b-5734b831bfb6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fiesta 
\entryTyp root 
\gENG fiesta 
\gSPN fiesta 
\e +fiesta 
\c N0 
\ach fiesta 
\akh fiesta 
\acl fiesta 
\akl fiesta 
\ame fiesta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8a40c914-2bb9-4ffc-a872-288a0d3f134b" ownerguid="17d5f429-6550-4a3a-a755-5ac3c3d7e04f"> -<ExampleWords> -<AUni ws="en">wormhole</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) Where do worms live?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="8a42ded1-e11a-41be-a366-c76ae9db11ba" ownerguid="85af0462-0f6d-45c1-8bbd-f26d918401b0"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="0c13a37e-846b-4baa-a11b-39579f611372" t="o" /> -<objsur guid="bc5695dc-5747-4e36-bebb-6637363cfa88" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="8a42e0ec-bec9-46ac-8d43-673803694f6c"> -<CitationForm> -<AUni ws="qvm-x-ach">&José</AUni> -<AUni ws="qvm-x-acl">&José</AUni> -<AUni ws="qvm-x-akh">&José</AUni> -<AUni ws="qvm-x-akl">&José</AUni> -<AUni ws="qvm-x-ame">&José</AUni> -</CitationForm> -<DateCreated val="2022-9-27 21:55:35.847" /> -<DateModified val="2022-10-15 13:28:32.804" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b4d9dc0d-0e36-466a-bf68-0d3fd58b4ce2" t="o" /> -</LexemeForm> -<MorphoSyntaxAnalyses> -<objsur guid="afc4e56f-141a-4135-8c3e-b01f980d7aac" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="58f0daef-6491-42b5-9dd2-db887424527d" t="o" /> -</Senses> -</rt> -<rt class="CmDomainQ" guid="8a48f40c-3832-432e-b65b-ffac3b354ac4" ownerguid="57e367f4-7029-4916-a700-791db32b4745"> -<ExampleWords> -<AUni ws="en">expenses, expenditure, spending, outlay, overhead, costs, budget</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe how much you spend?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8a490d3e-7e81-4f52-9258-c177419dd7a0" ownerguid="69ad591c-0e9e-452c-aef7-4bde3b6c50cc"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="8a49c02b-29d5-4c61-8183-b1fd5300a0aa" ownerguid="fe0ad458-333d-4cd1-bacf-d10f15f9b8fa"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="8a4f1603-4b63-4a10-8fda-fa6368a4d676"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jampi</AUni> -<AUni ws="qvm-x-acl">jampi; jampe</AUni> -<AUni ws="qvm-x-akh">jampi</AUni> -<AUni ws="qvm-x-akl">jampi; jampe</AUni> -<AUni ws="qvm-x-ame">hampi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hampi.v</AUni> -<AUni ws="qvm-x-acl">*hampi.v</AUni> -<AUni ws="qvm-x-akh">*hampi.v</AUni> -<AUni ws="qvm-x-akl">*hampi.v</AUni> -<AUni ws="qvm-x-ame">*hampi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.650" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="01324d82-8341-4e7b-bf1b-314a1004f27e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hampi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aa37c442-81f0-4ad3-bbf0-d0f88089492b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="143c3146-3f07-44ab-8773-6038328adbb5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hampi.v 
\entryTyp root 
\gENG cure 
\gSPN remediar 
\e *hampi.v 
\c V2 
\mp +FinalI 
\ach jampi 
\akh jampi 
\acl jampi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl jampe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jampi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jampe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hampi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="8a510d5c-8768-4c07-9099-3b60d334faff" ownerguid="079abd3f-dfa3-49e0-9654-674d1816c0a8"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="8a5834e1-0a9e-4289-9ad2-65fd7c2aa444" ownerguid="8adfcb0b-aaf3-46ac-adf7-04cdc7dae250"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="776c53d7-66b3-4957-8bce-092344e486af" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="8a58bb94-5b98-4047-9397-3e9c040f8f41" ownerguid="4524fc30-b933-4841-ade3-a8482a897244"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="8a5b7dbb-5811-4575-ab55-a796f9fd394b" ownerguid="d147de1b-1f4c-426f-a65b-f26ff946039b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Gen 18.6 Ishcay chunca (20) kïluta mas alinnin harinatapita jucla tsapurcur tantata ruramuy.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="8a5c839c-a407-492c-b20d-bafca595dd6b" ownerguid="db1921e9-dd6c-4477-ab3d-27218a5c6b70"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">airplane</AUni> -<AUni ws="es">avión</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="27cac4ef-4886-4de9-96ee-8ecd838cf6a4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="8a5c87ad-2d15-40c2-9f15-d7942ac80261" ownerguid="a3ba10f3-66e3-4ad5-8057-453b8941e497"> -<Abbreviation> -<AUni ws="en">4.8.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.284" /> -<DateModified val="2022-9-23 16:55:8.284" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to surrendering to an enemy.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>39D Yielding</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Surrender</AUni> -</Name> -<Questions> -<objsur guid="66237c50-13e1-4e4b-b91d-c5eb6f5c534b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="8a5d195a-c9c8-4b98-b9fc-ed431c4260c5" ownerguid="f94d5da3-c02d-4742-98e5-6e7159499780"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="8a5f50bf-1ae3-4b7c-bf73-ec15acd20e61"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">iri</AUni> -<AUni ws="qvm-x-acl">iri; ire</AUni> -<AUni ws="qvm-x-akh">iri</AUni> -<AUni ws="qvm-x-akl">iri; ire</AUni> -<AUni ws="qvm-x-ame">iri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*iri</AUni> -<AUni ws="qvm-x-acl">*iri</AUni> -<AUni ws="qvm-x-akh">*iri</AUni> -<AUni ws="qvm-x-akl">*iri</AUni> -<AUni ws="qvm-x-ame">*iri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.842" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="96a7baa4-4938-4215-a927-75694d19a802" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*iri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ec932bf0-42e2-407c-b719-27fefd21f67d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="030d5222-5a35-4270-8354-43167b630fa4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *iri 
\entryTyp root 
\gENG 
\gSPN con.toda.su.fuerza 
\e *iri 
\c V1 
\mp +FinalI 
\ach iri 
\akh iri 
\acl iri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ire +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl iri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ire +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame iri</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="8a603834-740d-47d5-b4a1-466a5926b092" ownerguid="12cb3584-4c18-4fef-b600-a280aecfc31d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8a63a4ab-52e2-4b1d-bb72-556c1179b9fe" ownerguid="bcb1252c-7cb4-4fbc-b83f-e5f9c65b4afb"> -<ExampleWords> -<AUni ws="en">along, alongside, by the side of, at the side of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something is next to something long such as a road?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8a64b3a7-e527-4e34-b6f0-06fe00cb1d85" ownerguid="6c34ed1c-189e-4f74-bd48-58fc5bad6b5b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="8a671564-2517-4177-b2ad-f1aee4217620" ownerguid="64ce1000-d0fc-4b9e-bc84-5af9ae9d98c1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="8a6e0508-98aa-4bf4-885c-d0c94518dde5" ownerguid="f5392cbc-1711-4006-bb66-d45d0fd8afd1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">root</AUni> -<AUni ws="es">escarbar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fcfa390a-8c79-401b-a2e0-b9ba5ddf9e66" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="StTxtPara" guid="8a6f12f3-9fc4-43f7-badf-83e0bce41c2c" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">yarpätsin</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="f8d0b49e-0566-4a8c-a0f8-1268c1f6845b" t="o" /> -</Segments> -</rt> -<rt class="CmDomainQ" guid="8a701514-c81d-48f3-b071-ab044c82a001" ownerguid="fd33670e-ef16-4566-a62e-aa077e58407b"> -<ExampleWords> -<AUni ws="en">hiss, swish, fizz, fizzle, groan, moan, rustle, shriek, sough, wail, wheeze, whine, whisper, whistle, whiz, whoosh</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words refer to the sound of the wind or air?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8a70180e-c0c6-4e5f-8584-ae384ddcc3c6" ownerguid="f7b7eb3c-b784-4ba5-8dac-a68fd27ce0ea"> -<ExampleWords> -<AUni ws="en">blight, wither</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What types of diseases occur in plants?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8a701efb-4d5c-42b8-ba29-f63b861f09cb" ownerguid="ae0190e6-ac98-44c2-b5ef-f8990394129f"> -<Form> -<AUni ws="qvm-x-ach">cumpinchi; cumpinchi</AUni> -<AUni ws="qvm-x-acl">cumpinchi; cumpinchi; cumpinche</AUni> -<AUni ws="qvm-x-akh">cumpinchi; cumpinchi</AUni> -<AUni ws="qvm-x-akl">cumpinchi; cumpinchi; cumpinche</AUni> -<AUni ws="qvm-x-ame">cumpinchi; cumpinchi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8a731984-bfbb-4870-886c-4d74dc671251"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">firmi</AUni> -<AUni ws="qvm-x-acl">firmi</AUni> -<AUni ws="qvm-x-akh">firmi</AUni> -<AUni ws="qvm-x-akl">firmi</AUni> -<AUni ws="qvm-x-ame">firmi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+firme</AUni> -<AUni ws="qvm-x-acl">+firme</AUni> -<AUni ws="qvm-x-akh">+firme</AUni> -<AUni ws="qvm-x-akl">+firme</AUni> -<AUni ws="qvm-x-ame">+firme</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.558" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5d0003cd-165e-4f99-b843-513cccda9f76" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+firme</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5da99c0e-eb08-4513-ac35-22a73c17ed5b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b460cae4-7d17-45df-8df6-1f741c26ed69" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +firme 
\entryTyp root 
\gENG 
\gSPN 
\mp NeverChanged 
\ach firmi 
\akh firmi 
\acl firmi 
\akl firmi 
\ame firmi 
\e +firme 
\c N0 
\mp +FinalI 
\i PSA 36.6 Ali arreglag cashgayquega jatun puntacuna firmi cashgannogmi caycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8a73fd46-029e-46a2-a053-bf5188c39f1a" ownerguid="b2bb077a-92c8-4e54-8dfa-c89efd60b82d"> -<ExampleWords> -<AUni ws="en">gather eggs, collect eggs</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to collecting eggs?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8a7ae5c0-466d-46f8-b5bb-66ff9cc084c4" ownerguid="c973e727-1dd5-4b6b-add2-80da460b12d3"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="8a7b5f69-c119-4aff-a276-5f63e53fded2" ownerguid="040ba998-a84d-4f88-8fc5-d1a52c18eec0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8f2a63f2-89da-4318-a1b7-d645506daff0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="8a7bfbe8-14c4-407a-98ee-f57770e1de48" ownerguid="42b7ea65-3cb9-4bc5-829c-334bdddcac5b"> -<Form> -<AUni ws="qvm-x-ach">deportïvu</AUni> -<AUni ws="qvm-x-acl">deportïvu; deportïvu; deportïvo</AUni> -<AUni ws="qvm-x-akh">deportïvu</AUni> -<AUni ws="qvm-x-akl">deportïvu; deportïvu; deportïvo</AUni> -<AUni ws="qvm-x-ame">deportïvu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8a7df79c-a968-4051-9d08-2e3e9ed4021d" ownerguid="cb99a086-8c6d-4f90-81db-6afa69ae5455"> -<ExampleWords> -<AUni ws="en">roar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What sounds do lions make?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="8a7fdd75-01dc-4d40-84ff-fa0484da3abb" ownerguid="55201761-fe2e-40d5-a2a7-8079e00a2c32"> -<Abbreviation> -<AUni ws="en">4.8.2.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.276" /> -<DateModified val="2022-9-23 16:55:8.276" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being violent--a word describing someone who is likely to attack and injure or kill people.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>20A Violence</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Violent</AUni> -</Name> -<Questions> -<objsur guid="9aec0479-a6d1-409c-a0b8-847891e06525" t="o" /> -<objsur guid="eb48ca6d-bddb-46cc-a2e0-67c8b7bd3fcd" t="o" /> -<objsur guid="b7feb027-4a84-438f-8b5e-5147b479f625" t="o" /> -<objsur guid="7298572f-32a5-4228-b544-1ed7658d9721" t="o" /> -<objsur guid="18e988c2-855b-42ed-955d-5ef7c22f4c2f" t="o" /> -<objsur guid="9be9ff06-8dc0-47a9-b325-d5a275267586" t="o" /> -<objsur guid="f4e8b8de-722e-456d-9763-ea7ce2946c44" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoInflAffMsa" guid="8a80fcb3-0227-404b-88a5-73d9f5ac5ad6" ownerguid="ad83a7c3-2946-4b60-b967-c11101404479"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="8a81b9bc-9c66-4d57-a2d1-2e592604c4b1" ownerguid="c6c772af-7b6b-4393-b0da-5b4a329d3426"> -<Abbreviation> -<AUni ws="en">8.1.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.579" /> -<DateModified val="2022-9-23 16:55:8.579" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a container being full of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>59D Full, Empty</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Full</AUni> -</Name> -<Questions> -<objsur guid="9ea3af27-d808-4bb4-b705-7b1c93d51326" t="o" /> -<objsur guid="d9d0f699-a3a6-451f-82df-19402359e627" t="o" /> -<objsur guid="24bb516a-baef-484a-9da3-991eb96e1484" t="o" /> -<objsur guid="1cfef627-0d3c-46e3-8859-c400730dce8d" t="o" /> -<objsur guid="3175818d-b4e4-4362-8fbf-961dc46a1c0d" t="o" /> -<objsur guid="8f162769-2f51-4b47-9ce6-fd9e4bfe1c78" t="o" /> -<objsur guid="4d9d16e8-1083-45c1-98b4-01d0b4234085" t="o" /> -<objsur guid="abb855c3-ed7c-4069-bc57-5d96bdcde4b5" t="o" /> -<objsur guid="4b900279-584a-459f-90a2-8602406a197c" t="o" /> -<objsur guid="baf6ea1d-7c45-4a23-81e9-546766bdb69e" t="o" /> -<objsur guid="8e94f886-bed0-4a66-8be0-de35788277f4" t="o" /> -<objsur guid="a4c38b61-423d-4e31-82b5-0eb0ae3c38db" t="o" /> -<objsur guid="83fd7d2c-0673-4817-9646-959fd9fa3a03" t="o" /> -<objsur guid="8b48644a-ab52-4fad-a4e1-0595ad423e42" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="e9cafabe-f0f7-4142-a6f6-d1c94bdc4b5c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="8a838205-6ecf-497c-9a69-2fbfec0ffed9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">Satanás</AUni> -<AUni ws="qvm-x-acl">Satanás</AUni> -<AUni ws="qvm-x-akh">Satanás</AUni> -<AUni ws="qvm-x-akl">Satanás</AUni> -<AUni ws="qvm-x-ame">Satanás</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+Satanás</AUni> -<AUni ws="qvm-x-acl">+Satanás</AUni> -<AUni ws="qvm-x-akh">+Satanás</AUni> -<AUni ws="qvm-x-akl">+Satanás</AUni> -<AUni ws="qvm-x-ame">+Satanás</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.468" /> -<DateModified val="2022-10-10 21:18:47.203" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="99abaecd-4a5c-48be-ba3c-76a34616687b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+Satanás</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8d7322c0-fd51-4dec-aa0e-3ee53f0a2741" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="df262c74-64d0-4b14-8833-4d86ebd3e248" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +Satanás 
\entryTyp root 
\gENG 
\gSPN 
\e +Satanás 
\c BN 
\mp +FinalC 
\ach Satanás 
\akh Satanás 
\acl Satanás 
\akl Satanás 
\ame Satanás</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="8a8858d2-3cb9-4949-842f-680af1cf45ea" ownerguid="9b6d179d-fbb7-498a-91ce-60ade91c49ee"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="8a88c838-a463-4d3a-bd96-9df5bbef3452" ownerguid="88ba5a74-7153-46af-adec-a015ca9edc8c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8a88fd77-fdd6-4f56-8563-c734034a8a38" ownerguid="965c6a0b-3034-4e2f-a00b-ed2eb3119a5d"> -<Question> -<AUni ws="en">(4) prohibitive: the mood for expressing negative commands. The English is 'Don't'.</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8a898b92-4e71-4588-9c57-523c44bd21c5" ownerguid="0d608afe-f31e-4e88-a67b-bd87135caa6a"> -<Form> -<AUni ws="qvm-x-ach">silmin</AUni> -<AUni ws="qvm-x-acl">silmin; silmin; silmen</AUni> -<AUni ws="qvm-x-akh">silmin</AUni> -<AUni ws="qvm-x-akl">silmin; silmin; silmen</AUni> -<AUni ws="qvm-x-ame">silmin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8a8c0973-3791-4d9f-99b6-58923b88ef41"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsipa</AUni> -<AUni ws="qvm-x-acl">tsipa</AUni> -<AUni ws="qvm-x-akh">tsipa</AUni> -<AUni ws="qvm-x-akl">tsipa</AUni> -<AUni ws="qvm-x-ame">tsipa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chipa.n</AUni> -<AUni ws="qvm-x-acl">*chipa.n</AUni> -<AUni ws="qvm-x-akh">*chipa.n</AUni> -<AUni ws="qvm-x-akl">*chipa.n</AUni> -<AUni ws="qvm-x-ame">*chipa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.315" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b846faf0-2d07-40ac-887c-df39d7236138" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chipa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="24357b19-28a5-49f2-b6f6-e490276ba094" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4806239f-e91b-4759-94c7-51891d6f21fe" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chipa.n 
\entryTyp root 
\gENG bush 
\gSPN arbusto 
\e *chipa.n 
\c N0 
\ach tsipa 
\akh tsipa 
\acl tsipa 
\akl tsipa 
\ame tsipa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8a8dad87-51d5-4786-947e-5c058b945c93" ownerguid="aabc32ee-46e4-469f-93ad-673373cb2e8d"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The president resigned <in> disgrace.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate attendant circumstances?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8a9257da-eaf6-4f21-9de6-7452b8d1b129" ownerguid="2c25b6db-6d3c-41bc-9e3e-f591cde9e63f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="8a927b7a-3329-424c-a57b-3843ce6d8766" ownerguid="f0d0631c-1dcd-4e76-9609-74889b562141"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">blow</AUni> -<AUni ws="es">soplar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b43c0e15-25e5-4009-8fd8-345049e018a0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="8a9a46db-4b68-4a68-ab33-057314c49af4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cawa</AUni> -<AUni ws="qvm-x-acl">cawa</AUni> -<AUni ws="qvm-x-akh">kawa</AUni> -<AUni ws="qvm-x-akl">kawa</AUni> -<AUni ws="qvm-x-ame">kawa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kawsa</AUni> -<AUni ws="qvm-x-acl">*kawsa</AUni> -<AUni ws="qvm-x-akh">*kawsa</AUni> -<AUni ws="qvm-x-akl">*kawsa</AUni> -<AUni ws="qvm-x-ame">*kawsa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.973" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3e694d80-c839-4d02-b1e2-ca81eb39fc68" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kawsa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f43ac5da-0c55-4efe-9d59-4c377a76f426" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b395c9b6-c2e7-47d4-a459-ade299febc23" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kawsa 
\entryTyp root 
\gENG live 
\gSPN vivir 
\e *kawsa 
\c V1 
\ach cawa 
\akh kawa 
\acl cawa 
\akl kawa 
\ame kawa 
\mcc *kawsa / ~_ PNCT1 
\mcc *kawsa / ~_ SUD</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="8a9b5484-eda8-4194-95ca-c2e76e83ae67" ownerguid="726923d4-b25c-46eb-8ab0-427207177ae3"> -<Abbreviation> -<AUni ws="en">5.2.1.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.306" /> -<DateModified val="2022-9-23 16:55:8.306" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to pounding food in a mortar.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Pound in mortar and pestle</AUni> -</Name> -<Questions> -<objsur guid="f53b00f8-9758-48ce-a16c-f6cc79e1a0b4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="8a9c9a4a-480d-482e-8913-8f05fb5b96a6" ownerguid="9f868391-f1df-4682-bdcb-2c2c799006cf"> -<ExampleWords> -<AUni ws="en">memorize, commit to memory</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to memorizing something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8a9f8f94-11c5-4551-98b0-b911a06286ae" ownerguid="d7ca7972-220f-4f74-a0dd-cfd436b042b3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StTxtPara" guid="8aa08cd5-fc81-4f45-b2f6-d4d807c4fb11" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">tsaypita. </Run> -<Run ws="en">\tr < N0 *chay > ABL.</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="61199806-794d-4c58-a67f-e71441a98b85" t="o" /> -<objsur guid="8ac3dd40-6001-4bbf-a8b0-31ca349b99a9" t="o" /> -</Segments> -</rt> -<rt class="Segment" guid="8aa22fc7-f766-4c56-92a4-bce46e649a07" ownerguid="7ae75bc7-71c5-481e-87cb-94fda885a4b4"> -<Analyses> -<objsur guid="210d3d1c-036d-4a24-8d8b-b004d99be60c" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemMsa" guid="8aa28462-2157-4f8a-b78c-ed4eb75b8c59" ownerguid="9bafc137-21e0-4383-9b24-c734aef576c3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="8aa38d31-0c4f-43fc-bb05-12cbb84aaf6e" ownerguid="e6258e27-a753-4f33-94ca-73e0267188d8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="79e0af96-4bd3-4a79-9a13-9df4566e2b60" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8aa945fb-7639-4af5-96d6-ac5f5398567b" ownerguid="ea46de30-a1a9-4828-84a8-9165f61f8b20"> -<ExampleWords> -<AUni ws="en">to fish, to catch (fish), a catch (of fish), fishing boat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to catching fish?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8aac0e1e-8051-4e2e-9e3e-60be52014750" ownerguid="b385d74f-330c-41de-9680-fcc599e8cdd6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="b761a6be-95a2-4375-b912-bedd63c21a76" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">spread.out</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="82fcb35f-82f3-4262-9325-6e42f495ebdd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="8aac78ab-7bcb-43d0-9018-d581b27a2ee4" ownerguid="ac396d29-a20a-4685-b8ed-f3e91203e148"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="8aadc7ad-3947-4f8c-9c56-5727b987c6d2"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">yarpäran</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="8ab35add-6b63-42a6-9bf6-11bda3e729b5" ownerguid="4b669bed-ba46-41cc-bcba-c2ef8e129c85"> -<ExampleWords> -<AUni ws="en">ask forgiveness, sue for peace, seek pardon, beg for mercy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to requesting forgiveness?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8ab5e719-01fa-405d-9a7e-76c35de79267" ownerguid="f8863b67-b911-4334-a1b6-6eb913bd14af"> -<ExampleWords> -<AUni ws="en">widened, broadened</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that has been made wide?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8ab78fdc-71b8-45aa-b97b-d17788eb861a" ownerguid="a4f4943f-ad94-4736-bf5d-f8a3cb15919f"> -<ExampleWords> -<AUni ws="en">-s, -en</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What affixes can be joined to nouns?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8ab815f7-c161-43c5-8511-a06978013227" ownerguid="3b913de5-6dfe-410d-ab77-8d0cf51b5314"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0 V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">call</AUni> -<AUni ws="es">llamar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6c1f7a2e-0103-4d51-9cff-2a5a42e454dc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="8ab92a5e-56c7-4522-a6ee-6651dfd5ca7d" ownerguid="537dd732-414e-4265-9d6c-f241c6006415"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8ab9f6f5-0c70-46c7-9290-9f390efd19ac" ownerguid="ca98bd7b-8711-41f6-86d0-5cd07b7bfe0d"> -<ExampleWords> -<AUni ws="en">destroy, blow up, hose (v), ruin, total (v), wreck, blow up, burn down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to destroying something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8abc74bc-c50d-4399-946f-b4d33093922c" ownerguid="8e861786-8f47-4019-9f59-fcb9e5e65c7f"> -<Form> -<AUni ws="qvm-x-ach">maltrata</AUni> -<AUni ws="qvm-x-acl">maltrata</AUni> -<AUni ws="qvm-x-akh">maltrata</AUni> -<AUni ws="qvm-x-akl">maltrata</AUni> -<AUni ws="qvm-x-ame">maltrata</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="8abcf2c0-2438-4f77-8b09-8283c2bb8236" ownerguid="6f8d4578-3c91-47b5-a3c5-a3004e9f6e65"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">nqui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">nqui</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">nki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">nki</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="eefb29ad-f416-4367-b09c-bb45b5e9cf21" t="r" /> -</Morph> -<Msa> -<objsur guid="0d90ca1d-7b60-41a3-a022-dba460606a1c" t="r" /> -</Msa> -<Sense> -<objsur guid="08cdcf68-e555-46a8-9801-1003a592bece" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="8abdb1e0-3181-4c7f-9e9f-2a273da03764" ownerguid="10ad2300-18e0-4e12-becd-d5b72207427f"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="8ac0251c-ac8b-43e8-b92a-904077463439" ownerguid="15aba1a6-ac19-4f00-ab5e-97c44e55b43e"> -<Form> -<AUni ws="qvm-x-ach">mas</AUni> -<AUni ws="qvm-x-acl">mas</AUni> -<AUni ws="qvm-x-akh">mas</AUni> -<AUni ws="qvm-x-akl">mas</AUni> -<AUni ws="qvm-x-ame">mas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8ac255d3-6b71-4e67-91bf-6c378c12310b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yanasi:ra</AUni> -<AUni ws="qvm-x-acl">yanase:ra</AUni> -<AUni ws="qvm-x-akh">yanasi:ra</AUni> -<AUni ws="qvm-x-akl">yanase:ra</AUni> -<AUni ws="qvm-x-ame">yanasi:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yanasi:ra</AUni> -<AUni ws="qvm-x-acl">*yanasi:ra</AUni> -<AUni ws="qvm-x-akh">*yanasi:ra</AUni> -<AUni ws="qvm-x-akl">*yanasi:ra</AUni> -<AUni ws="qvm-x-ame">*yanasi:ra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.729" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="958cdbd3-5fd7-4273-b774-3234336e5396" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yanasi:ra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="be612637-21ee-4e61-b956-062e8d4fba4e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c330b5ee-012b-4039-9a60-16d9fd9ab309" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yanasi:ra 
\entryTyp root 
\gENG friendly 
\gSPN amigable 
\e *yanasi:ra 
\c N0 
\ach yanasi:ra 
\akh yanasi:ra 
\acl yanase:ra 
\akl yanase:ra 
\ame yanasi:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="8ac36734-ab41-457a-901b-3104989cdfe7" ownerguid="e2da5be3-30a6-46d7-a10a-8372245ada06"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6fe49b5e-093a-457b-9f14-02b68e8cec63" t="r" /> -</Morph> -</rt> -<rt class="Segment" guid="8ac3dd40-6001-4bbf-a8b0-31ca349b99a9" ownerguid="8aa08cd5-fc81-4f45-b2f6-d4d807c4fb11"> -<Analyses> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="fa7aeb71-200a-4a5d-9436-13faa1972fea" t="r" /> -<objsur guid="25651c34-3e31-419d-86b5-cda6907f0a4f" t="r" /> -<objsur guid="318bf9f9-aa14-41c5-a2de-8b7490464438" t="r" /> -<objsur guid="a85a5670-81ba-47b9-8443-95e8be60ebec" t="r" /> -<objsur guid="8b3ee386-513a-450e-9982-794ac4bf1609" t="r" /> -<objsur guid="4fccec2d-58a4-466f-a087-a79d6bf13b57" t="r" /> -<objsur guid="e91b01d8-fa1e-40c2-bc21-3ad7dd7a6e57" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="10" /> -</rt> -<rt class="MoStemMsa" guid="8ac44997-e136-4184-85dc-211579fb37a8" ownerguid="c447475f-9241-471f-955f-afea24f9b021"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="8ac7ed4d-5cd9-4952-b5ee-1c0979ddd96f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sipra</AUni> -<AUni ws="qvm-x-acl">sipra</AUni> -<AUni ws="qvm-x-akh">sipra</AUni> -<AUni ws="qvm-x-akl">sipra</AUni> -<AUni ws="qvm-x-ame">sipra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*sipra.n</AUni> -<AUni ws="qvm-x-acl">*sipra.n</AUni> -<AUni ws="qvm-x-akh">*sipra.n</AUni> -<AUni ws="qvm-x-akl">*sipra.n</AUni> -<AUni ws="qvm-x-ame">*sipra.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.693" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8437e914-a9bb-405f-ba6e-92005adebb74" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*sipra.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a825b2e5-a243-422f-adf6-b75e10a9929d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="854d2e66-e7cd-4acb-b208-14395b4b43e0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *sipra.n 
\entryTyp root 
\gENG peel 
\gSPN cáscara 
\e *sipra.n 
\c N0 
\ach sipra 
\akh sipra 
\acl sipra 
\akl sipra 
\ame sipra</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="8ac98b7b-fe1f-494a-8412-732e8121f3cf" ownerguid="81622280-13ae-4f67-bf16-618e0d13abad"> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -<Sense> -<objsur guid="b197f38e-d2fb-4e9a-87df-e50eeb6a4b45" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="8acc7331-8061-4851-ad9c-1bfd9f32758d" ownerguid="f0fd4572-67b7-42b3-81d0-38ed7db7b9e1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8acd47f0-123d-4725-8c28-31b62245beca" ownerguid="a31c85df-02a9-4dd8-a094-0f07a0afbcca"> -<ExampleWords> -<AUni ws="en">take apart, detach, disunite, disassemble, disjoin, uncouple, unhook, unfasten, pull apart, break up, dismantle, take something to pieces</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to taking something apart?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8acdd3de-23dc-4804-b133-6ab5fe55583f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sira</AUni> -<AUni ws="qvm-x-acl">sira</AUni> -<AUni ws="qvm-x-akh">sira</AUni> -<AUni ws="qvm-x-akl">sira</AUni> -<AUni ws="qvm-x-ame">sira</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*sira</AUni> -<AUni ws="qvm-x-acl">*sira</AUni> -<AUni ws="qvm-x-akh">*sira</AUni> -<AUni ws="qvm-x-akl">*sira</AUni> -<AUni ws="qvm-x-ame">*sira</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.703" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f5053b56-b6b7-47d3-8526-3900fe1f0f07" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*sira</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="33d07e4d-0cac-4b66-9fba-be1726620439" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="19f69682-1c26-433d-981c-97621c387c0e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *sira 
\entryTyp root 
\gENG scar 
\gSPN cicatríz 
\e *sira 
\c N0 
\ach sira 
\akh sira 
\acl sira 
\akl sira 
\ame sira 
\i LAM 3.4 Garäpis aytsäpis pasaypanami sirayäcan. 
\i LEV 21.18 Saymi mandag cüra cananpä yaycuyanmansu gapracuna, wegrucuna, cera cärayogcuna, macllucuna...</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8aceebe4-58c3-4926-a7a0-0264f83b8357"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jamurpa; jamurpa:</AUni> -<AUni ws="qvm-x-acl">jamurpa; jamurpa:</AUni> -<AUni ws="qvm-x-akh">jamurpa; jamurpa:</AUni> -<AUni ws="qvm-x-akl">jamurpa; jamurpa:</AUni> -<AUni ws="qvm-x-ame">hamurpa; hamurpa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hamurpa:</AUni> -<AUni ws="qvm-x-acl">*hamurpa:</AUni> -<AUni ws="qvm-x-akh">*hamurpa:</AUni> -<AUni ws="qvm-x-akl">*hamurpa:</AUni> -<AUni ws="qvm-x-ame">*hamurpa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.658" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="af981a37-1211-4247-94f5-2e33ab8d8e66" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hamurpa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f02b26b0-10d2-4c7c-8ca8-0c145e1bd9fe" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b8f215d2-5eea-481e-8576-54fc540ca44e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hamurpa: 
\entryTyp root 
\gENG complain 
\gSPN murmurar 
\e *hamurpa: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach jamurpa foreshortened 
\ach jamurpa: 
\akh jamurpa foreshortened 
\akh jamurpa: 
\acl jamurpa foreshortened 
\acl jamurpa: 
\akl jamurpa foreshortened 
\akl jamurpa: 
\ame hamurpa foreshortened 
\ame hamurpa:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="8ad41dae-87f2-4b8d-ad66-6ad658bfc870" ownerguid="07f336f9-cc14-4c95-a762-76b6620ef310"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">un.pájaro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="028b5279-0f22-4019-bcaa-18207a29ff37" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="8ad49531-ca06-44d4-9792-1a8730396f58"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chulgu</AUni> -<AUni ws="qvm-x-acl">chulgu; chulgu; chulgo</AUni> -<AUni ws="qvm-x-akh">chulqu</AUni> -<AUni ws="qvm-x-akl">chulqu; chulqu; chulqo</AUni> -<AUni ws="qvm-x-ame">chulqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chullqu</AUni> -<AUni ws="qvm-x-acl">*chullqu</AUni> -<AUni ws="qvm-x-akh">*chullqu</AUni> -<AUni ws="qvm-x-akl">*chullqu</AUni> -<AUni ws="qvm-x-ame">*chullqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.345" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="43e5d83f-92e1-49ce-bc95-8d361afe88ca" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chullqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ca3eb40c-a1c0-461c-90b7-00b57a691b56" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c5f3ad8c-f7ad-42cc-80b5-7991d87bd2e6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chullqu 
\entryTyp root 
\gENG reward 
\gSPN recompensa 
\e *chullqu 
\c N0 
\ach chulgu 
\akh chulqu 
\acl chulgu / _# 
\acl chulgu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chulgo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chulqu / _# 
\akl chulqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chulqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chulqu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8ad6e485-c6f5-4f31-8fa4-cdb6e4d9cfd1" ownerguid="c753fc8b-22ae-4e71-807f-56fb3ebd3cdd"> -<ExampleWords> -<AUni ws="en">lovers</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to two people who are having sex?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8ad8868f-ea73-42d1-9bd0-34dcf085f98f" ownerguid="3d48e0df-8e07-4e2f-9e29-19cc96df1bc1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8ad8ed0f-3d3c-4d3f-b0e7-3aa47c908118" ownerguid="7c6cad26-79c3-403a-a3aa-59babdfcd46f"> -<ExampleWords> -<AUni ws="en">sickly, delicate, be in poor health, be prone to, hypochondriac</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe someone who is often sick?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8ada287c-bb36-440c-a7cb-7d311cf9a4db"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">supay</AUni> -<AUni ws="qvm-x-acl">supay</AUni> -<AUni ws="qvm-x-akh">supay</AUni> -<AUni ws="qvm-x-akl">supay</AUni> -<AUni ws="qvm-x-ame">supay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*supay</AUni> -<AUni ws="qvm-x-acl">*supay</AUni> -<AUni ws="qvm-x-akh">*supay</AUni> -<AUni ws="qvm-x-akl">*supay</AUni> -<AUni ws="qvm-x-ame">*supay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.754" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b54a2b39-08fd-468b-ac16-bd0ab313df45" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*supay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7caaf1f7-c371-4a07-a8a1-3e3997b787d2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="11caaa01-c9f7-4cc0-b547-957d77b69fbb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *supay 
\entryTyp root 
\gENG demon 
\gSPN demonio 
\e *supay 
\c N0 
\mp +FinalC 
\ach supay 
\akh supay 
\acl supay 
\akl supay 
\ame supay</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="8adb5e4f-6aa7-4721-800d-1336ac4e8b89" ownerguid="72791192-a596-4669-ab01-8235a0cc3b43"> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -</rt> -<rt class="WfiAnalysis" guid="8adc2568-cd8b-4015-b533-e20686c33474" ownerguid="45977dd9-57df-4a4c-8612-8dab353e1416"> -<Evaluations> -<objsur guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="632ee7e6-f646-4cd5-aee6-4c7c226bdf52" t="o" /> -<objsur guid="f789b895-446f-4fe5-83cb-8ec31d41a17e" t="o" /> -<objsur guid="6bb22591-3e62-4d8a-9532-b31bd55ffd83" t="o" /> -<objsur guid="bb11dbe7-142c-4a78-900d-6bbbb5b92388" t="o" /> -</MorphBundles> -</rt> -<rt class="CmSemanticDomain" guid="8add7f4d-333b-4b2c-9999-48a14162152b" ownerguid="8e11dd10-459b-4fb3-b876-7d80ec5f8a4d"> -<Abbreviation> -<AUni ws="en">4.3.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.235" /> -<DateModified val="2022-9-23 16:55:8.235" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to self-control--deciding not to do something that you want to do, because you think it would be bad to do it; or deciding to do something, because you know it is good.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88K Self-Control, Lack of Self-Control</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Self-controlled</AUni> -</Name> -<Questions> -<objsur guid="cab17b6c-e5b4-4114-80be-bd9cd58169c2" t="o" /> -<objsur guid="231f3feb-a5e5-4820-ac2d-6bcae06886a0" t="o" /> -<objsur guid="2681c2e0-acef-415e-aac1-57d9868a9298" t="o" /> -<objsur guid="9b6dd195-a391-418a-a6cc-501ad4b3aa94" t="o" /> -<objsur guid="9e22b448-9755-4e61-b7f3-cafd16777a02" t="o" /> -<objsur guid="559a3d81-c4de-4b23-b6c7-7a1652bfc651" t="o" /> -<objsur guid="77e7ae9d-a546-4ef8-9d0c-c7864740ddc5" t="o" /> -<objsur guid="0fe92bd1-28be-4879-b11c-c8e7b122bbe1" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="3e546c11-bcb6-4024-b2f3-c15be40e257f" t="o" /> -<objsur guid="4acc430b-9c98-4a49-a8b4-15edc0f6d19b" t="o" /> -<objsur guid="9a9c7174-4148-43c2-875c-0d2f884a5fe3" t="o" /> -<objsur guid="cd8b2a8b-687b-42e9-91e7-cfb8812b64ee" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="8adec79f-7ef5-4fc4-bb8b-93b1a76cc445" ownerguid="6e5a4fd3-3971-4583-80b5-e66bd9e2b360"> -<Form> -<AUni ws="qvm-x-ach">yarga</AUni> -<AUni ws="qvm-x-acl">yarga</AUni> -<AUni ws="qvm-x-akh">yarqa</AUni> -<AUni ws="qvm-x-akl">yarqa</AUni> -<AUni ws="qvm-x-ame">yarqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<StemName> -<objsur guid="a177c679-0e2b-4632-9f01-6391c5a4a352" t="r" /> -</StemName> -</rt> -<rt class="LexEntry" guid="8adfcb0b-aaf3-46ac-adf7-04cdc7dae250"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maño:sa</AUni> -<AUni ws="qvm-x-acl">maño:sa</AUni> -<AUni ws="qvm-x-akh">maño:sa</AUni> -<AUni ws="qvm-x-akl">maño:sa</AUni> -<AUni ws="qvm-x-ame">maño:sa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mañosa</AUni> -<AUni ws="qvm-x-acl">+mañosa</AUni> -<AUni ws="qvm-x-akh">+mañosa</AUni> -<AUni ws="qvm-x-akl">+mañosa</AUni> -<AUni ws="qvm-x-ame">+mañosa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.336" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0073849b-2342-4d46-bfc8-34a636eab807" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mañosa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="776c53d7-66b3-4957-8bce-092344e486af" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8a5834e1-0a9e-4289-9ad2-65fd7c2aa444" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mañosa 
\entryTyp root 
\gENG 
\gSPN 
\e +mañosa 
\c N0 
\ach maño:sa 
\akh maño:sa 
\acl maño:sa 
\akl maño:sa 
\ame maño:sa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="8ae17b84-ee9e-4ced-a429-94cc7eaac7f0" ownerguid="20191d4a-6662-463b-ab09-59194aa0dc11"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sweetbread</AUni> -<AUni ws="es">biscocho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="591d7c1b-ce74-4b28-80e0-100c3938d010" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="8ae19846-78de-4783-b225-b42f6189f136" ownerguid="fbd0e618-7c83-4afb-8800-0effa3a16a9b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="8ae35b9e-50bc-427c-8c12-b633575f5bff" ownerguid="97cc9e37-cfac-4c4f-a99b-f302763bac01"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="8aec2883-84da-46ea-a384-95ded5f89ce0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gori</AUni> -<AUni ws="qvm-x-acl">gori; gori; gore</AUni> -<AUni ws="qvm-x-akh">qori</AUni> -<AUni ws="qvm-x-akl">qori; qori; qore</AUni> -<AUni ws="qvm-x-ame">quri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*quri.n</AUni> -<AUni ws="qvm-x-acl">*quri.n</AUni> -<AUni ws="qvm-x-akh">*quri.n</AUni> -<AUni ws="qvm-x-akl">*quri.n</AUni> -<AUni ws="qvm-x-ame">*quri.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.871" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0ec65031-ac0e-47ef-8694-632291f30b01" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*quri.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7a9efd97-4656-4d29-80ac-0c5b5da7ebd7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="54ad558c-fce3-40ea-b28d-52a66a4efd42" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *quri.n 
\entryTyp root 
\gENG gold 
\gSPN oro 
\e *quri.n 
\c N0 
\mp +FinalI 
\ach gori 
\akh qori 
\acl gori / _# 
\acl gori +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gore +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qori / _# 
\akl qori +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qore +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame quri 
\i gori quiru; gori chirapa (cuando solea y llueve a la vez)</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8aed70ab-bea6-45ca-acfc-b1122330072a" ownerguid="b4fe4698-54a2-4bcd-9490-e07ee1ee97af"> -<ExampleWords> -<AUni ws="en">be close to tears, have a lump in your throat, fight back tears, choke back the tears</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to almost crying?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8aef72a4-e3c8-4cbd-b22f-996db1c2f2a4" ownerguid="4b23658b-471f-4b76-9438-8d46f96107d0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="8aef7f09-356a-406e-bb29-4c7f35f7bb7f" ownerguid="ceb6ed65-188e-46d7-ad10-076cba0d49db"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">g</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">g</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">q</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">q</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">q</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7feef4b7-a285-4201-a3a4-057f77618b78" t="r" /> -</Morph> -<Msa> -<objsur guid="964f8962-17d5-4738-8902-97236137c419" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="8af26a63-ddee-47a7-843c-88462cba7130" ownerguid="30e52c37-25d0-4ade-8e84-12f17bf413bd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sentence</AUni> -<AUni ws="es">sentencia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2f92dfc5-4875-4210-b116-9e7960cbdadc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8af29bfb-fbae-41de-aba5-e50c4f41ab47" ownerguid="00041516-72d1-4e56-9ed8-fe235a9b1a68"> -<ExampleWords> -<AUni ws="en">in succession, one after the other, one after another, straight, in a row, running, alternate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that someone does things in a series?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8af3dd04-eefa-4de8-aaa9-fb52ce11734f" ownerguid="90fe0665-199b-47fe-83cf-6f73dde8ae80"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="8af3e5df-7f86-499d-85ad-4440cfd07fa2" ownerguid="d1f005cd-4f3e-4578-bb1f-60923a05a977"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="8af3efa1-8ab1-4763-b671-b55d0f8eee49" ownerguid="51da849a-e8a0-4574-a558-9ac13a31b5f2"> -<Form> -<AUni ws="qvm-x-ach">preciu; precio</AUni> -<AUni ws="qvm-x-acl">preciu; preciu; precio</AUni> -<AUni ws="qvm-x-akh">preciu; precio</AUni> -<AUni ws="qvm-x-akl">preciu; preciu; precio</AUni> -<AUni ws="qvm-x-ame">preciu; precio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="8af43f48-e883-435a-8de5-26175fbbae18" ownerguid="2c8ae99c-06f1-4c12-95ba-37a825918c0d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="3c2402c4-9bc3-4ecb-a75b-f791f8e66771" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="0dc306d8-5107-4af8-8cfc-4bded357a1d3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="8af51d38-7b5d-4a73-89f8-f39e115e8e55" ownerguid="edde4dae-239f-4cb6-a6ad-fd4e79c06f26"> -<Form> -<AUni ws="qvm-x-ach">fiyu</AUni> -<AUni ws="qvm-x-acl">fiyu; fiyu; fiyo</AUni> -<AUni ws="qvm-x-akh">fiyu</AUni> -<AUni ws="qvm-x-akl">fiyu; fiyu; fiyo</AUni> -<AUni ws="qvm-x-ame">fiyu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8af58173-6f34-4b58-bb9a-2e3c6df121bd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">retra:tu</AUni> -<AUni ws="qvm-x-acl">retra:tu; retra:tu; retra:to</AUni> -<AUni ws="qvm-x-akh">retra:tu</AUni> -<AUni ws="qvm-x-akl">retra:tu; retra:tu; retra:to</AUni> -<AUni ws="qvm-x-ame">retra:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+retrato</AUni> -<AUni ws="qvm-x-acl">+retrato</AUni> -<AUni ws="qvm-x-akh">+retrato</AUni> -<AUni ws="qvm-x-akl">+retrato</AUni> -<AUni ws="qvm-x-ame">+retrato</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.348" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0919835b-bf4c-456b-8713-9f99208e0789" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+retrato</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="477430a1-2dbe-44c8-ba6a-f8deadfb8c82" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="04a4913d-9f65-4fc6-81d2-7169ce57989b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +retrato 
\entryTyp root 
\gENG picture 
\gSPN retrato 
\e +retrato 
\c N0 
\ach retra:tu 
\akh retra:tu 
\acl retra:tu / _# 
\acl retra:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl retra:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl retra:tu / _# 
\akl retra:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl retra:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame retra:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="8af97413-d229-49f2-a52d-076ff1160781" ownerguid="248e826d-7bcd-474f-b411-8ca54718a672"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="546ddcc3-6aa9-4386-ab7f-459d7505e2c9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="8afc3e4b-77eb-497b-9106-7fe63b0c07c0" ownerguid="a2417520-5648-492d-b8c5-c2dc258604ef"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="83338005-464f-4e8e-96d2-2a799942a33d" t="r" /> -</Morph> -<Msa> -<objsur guid="715c8af0-d7ab-448b-a2fa-f8b36822dac0" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="8afc9345-9132-4c4e-b021-eabf4717551a" ownerguid="231907bb-fc6c-4d03-8aa4-eb3621e3230d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="8afd1975-e14d-4cc0-ab40-5ddcc721323b" ownerguid="353e3c5f-6f7a-46b5-9159-faa255c44d2e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="8afd5999-b295-46f3-9b07-826cd586e3ba" ownerguid="c21b5bb9-262c-4c84-88b7-27aa810b7daa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.cloudy</AUni> -<AUni ws="es">ser.nuboso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d5029c1f-9925-44ce-a604-6ce775f592f6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="8affe94d-a396-4404-a0d7-c65046e617e6" ownerguid="80bcbc99-3c85-46d6-b15c-895367231747"> -<Abbreviation> -<AUni ws="en">8.5.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being absent--to not be in a particular place, or not be in the correct or expected place.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Absent</AUni> -</Name> -<Questions> -<objsur guid="0a7cecf8-6d20-4a73-b8b4-6f06adf1ff5c" t="o" /> -<objsur guid="e6eabb72-750c-4925-baa5-dfdfb5ec1bd9" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="20e7d987-0d55-46d4-ab69-0b0cce2f1e24" t="r" /> -<objsur guid="e9cafabe-f0f7-4142-a6f6-d1c94bdc4b5c" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="8b049308-696c-40d7-8e7b-b387a94882d9" ownerguid="b0cecf9b-06f2-4f96-88a2-f56cd00faf74"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b43ad487-6e73-48ff-9ec0-62d0371aba88" t="r" /> -</Morph> -<Msa> -<objsur guid="b0ee83ce-c1ff-41c7-8aa1-b6e53ae19ebd" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="8b06e055-3702-4e0c-bba9-33584b1dec4d" ownerguid="3445e61b-61a3-4ede-93f5-402ebe9ca51c"> -<ExampleWords> -<AUni ws="en">warning, admonition, alarm, alert, caution, caveat, discouragement, forewarning</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to what is said when someone is warning someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8b092bc0-61c9-4d00-b963-b84e022b4d1d" ownerguid="db93fc79-58d1-4d3d-8fe1-f5cce38ef679"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="8b0989f5-aed1-4666-9873-8d3c16a4818e" ownerguid="408a637e-691e-4969-a28f-ddd7d0b94b30"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c213c96f-04e1-418a-9ee3-07943e605d10" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">willow</AUni> -<AUni ws="es">sauce</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b1e3c056-bb71-4e65-a481-5d5d3ec4ea06" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="8b0b4f9b-485c-42b5-9277-55dd003fb42a" ownerguid="ad3705bb-2ad8-4e24-b9f2-19600333ce33"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">skunk</AUni> -<AUni ws="es">zorrillo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9d489a44-a00f-4f7b-9cda-20fb028b287e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="8b0ba7f9-ce29-4d56-93f2-7df1378ca60e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ri:cu</AUni> -<AUni ws="qvm-x-acl">ri:cu; ri:cu; ri:co</AUni> -<AUni ws="qvm-x-akh">ri:cu</AUni> -<AUni ws="qvm-x-akl">ri:cu; ri:cu; ri:co</AUni> -<AUni ws="qvm-x-ame">ri:cu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rico</AUni> -<AUni ws="qvm-x-acl">+rico</AUni> -<AUni ws="qvm-x-akh">+rico</AUni> -<AUni ws="qvm-x-akl">+rico</AUni> -<AUni ws="qvm-x-ame">+rico</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.356" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9eff61ec-e63c-43cb-b776-11363f841f24" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rico</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fa054a8f-4213-4d14-bf7a-d998210e2fc9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="defbfc55-ccbd-4ce9-8ca9-a9c4d8f9c093" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rico 
\entryTyp root 
\gENG rich 
\gSPN rico 
\e +rico 
\c N0 
\ach ri:cu 
\akh ri:cu 
\acl ri:cu / _# 
\acl ri:cu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ri:co +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ri:cu / _# 
\akl ri:cu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ri:co +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ri:cu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="8b0bd0e1-3bcd-472f-a381-99d62b7f6f2d" ownerguid="15053303-517a-48dc-a531-c25048e71bf2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">give</AUni> -<AUni ws="es">regalar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4eb03814-afa6-41e5-941e-dd45aae2f702" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="8b0ef0bb-eca6-4882-a2e8-6c776570f76f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">va:su</AUni> -<AUni ws="qvm-x-acl">va:su; va:su; va:so</AUni> -<AUni ws="qvm-x-akh">va:su</AUni> -<AUni ws="qvm-x-akl">va:su; va:su; va:so</AUni> -<AUni ws="qvm-x-ame">va:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vaso</AUni> -<AUni ws="qvm-x-acl">+vaso</AUni> -<AUni ws="qvm-x-akh">+vaso</AUni> -<AUni ws="qvm-x-akl">+vaso</AUni> -<AUni ws="qvm-x-ame">+vaso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.343" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="03bb4a4f-52ba-47f0-b5ae-b3f38fbf03f9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vaso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="043a5c84-4796-4aaa-ad72-80e60261194b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="33576754-2962-46d1-b3be-0af1dbf5199f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vaso 
\entryTyp root 
\gENG cup 
\gSPN vaso 
\e +vaso 
\c N0 
\ach va:su 
\akh va:su 
\acl va:su / _# 
\acl va:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl va:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl va:su / _# 
\akl va:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl va:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame va:su</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8b14fcaa-c183-40e2-b4b0-1859ae2a0044" ownerguid="161cae07-d1cb-467c-920f-62ba9039584c"> -<ExampleWords> -<AUni ws="en">lift off, lift-off, blast off, launch, launch pad, countdown, mission control</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a rocket lifting off?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="8b15717d-4eb0-4314-ab96-85ebb57b401d" ownerguid="6f8d4578-3c91-47b5-a3c5-a3004e9f6e65"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">päca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">päca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">päka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">päka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">päku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e89f4461-706d-4840-bf9f-bfa3b395d737" t="r" /> -</Morph> -<Msa> -<objsur guid="f32a5a50-f426-45b8-ae08-eba8e0a53b74" t="r" /> -</Msa> -<Sense> -<objsur guid="f9fa41d4-dd29-40f1-be9f-24911a0fb7bb" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="8b180827-a748-445b-9a01-fbe77fb19c65"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uraga</AUni> -<AUni ws="qvm-x-acl">uraga</AUni> -<AUni ws="qvm-x-akh">uraqa</AUni> -<AUni ws="qvm-x-akl">uraqa</AUni> -<AUni ws="qvm-x-ame">uraqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uraqa</AUni> -<AUni ws="qvm-x-acl">*uraqa</AUni> -<AUni ws="qvm-x-akh">*uraqa</AUni> -<AUni ws="qvm-x-akl">*uraqa</AUni> -<AUni ws="qvm-x-ame">*uraqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.271" /> -<DateModified val="2022-10-15 12:4:44.608" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d3d4b9cd-2f51-4b9e-aabe-0e91e6a030e5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uraqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1fc3971c-133f-414c-ad62-6e04615c5d55" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="36e75614-ae42-4990-ae91-e5d6f9768ad7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uraqa 
\entryTyp root 
\gENG below 
\gSPN abajo 
\e *uraqa 
\c N0 
\ach uraga 
\akh uraqa 
\acl uraga 
\akl uraqa 
\ame uraqa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="8b1b3853-b163-44a7-9348-979b108a80fd" ownerguid="50b90252-4409-42aa-984e-199d773474d2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="8b1e5560-f37c-426e-9af8-0b274052b60e" ownerguid="91c73307-2ad1-4b0d-8bdf-54de8932e09c"> -<Form> -<AUni ws="qvm-x-ach">cuca</AUni> -<AUni ws="qvm-x-acl">cuca</AUni> -<AUni ws="qvm-x-akh">kuka</AUni> -<AUni ws="qvm-x-akl">kuka</AUni> -<AUni ws="qvm-x-ame">kuka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8b22ef54-ea90-403c-92c1-ae0cc04c051c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lagwa</AUni> -<AUni ws="qvm-x-acl">lagwa</AUni> -<AUni ws="qvm-x-akh">laqwa</AUni> -<AUni ws="qvm-x-akl">laqwa</AUni> -<AUni ws="qvm-x-ame">laqwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llaqwa</AUni> -<AUni ws="qvm-x-acl">*llaqwa</AUni> -<AUni ws="qvm-x-akh">*llaqwa</AUni> -<AUni ws="qvm-x-akl">*llaqwa</AUni> -<AUni ws="qvm-x-ame">*llaqwa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.164" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1ff8a120-8fd9-48e0-98c6-f75833598f0c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llaqwa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a97ab288-dd40-41df-b8f6-cb66666d131a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="da9b2b7d-88bc-46b8-8331-52b06dc1bd75" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llaqwa 
\entryTyp root 
\gENG lick 
\gSPN lamer 
\e *llaqwa 
\c V2 
\ach lagwa 
\akh laqwa 
\acl lagwa 
\akl laqwa 
\ame laqwa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="8b24970c-3cfb-45ee-a426-ad5e19cb180e" ownerguid="f4e9efa2-2437-49d3-9c01-cf7c7629196d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="8b24eda1-6b59-4c7f-9a95-e4d51142a708" ownerguid="ea45500a-0223-4990-87b2-5e062708645c"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8b25607c-4086-4b63-9b5d-d4dfc6059dd9" ownerguid="f352a437-58f2-4920-aec3-eda8041f7447"> -<ExampleWords> -<AUni ws="en">unprecedented, a first</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that has never happened before?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="8b25bae2-6363-4c43-ba51-6621e51c06de" ownerguid="ebbb956c-b015-40c0-9656-e4c077c4f8e6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ku</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ku</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b952a19-fce6-44e5-ab25-c091ef27f843" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="8b290d55-a854-49bd-80f3-46907e6ac845" ownerguid="763fa2e0-c119-4f50-a307-81ed8c3497ed"> -<ExampleWords> -<AUni ws="en">object to, voice opposition to, express opposition to, raise objections</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to saying that you are opposed to something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8b291739-2712-4277-9b83-3156f11fd046" ownerguid="b844d2f8-d3ef-4605-b038-8bc0a2cff0af"> -<ExampleWords> -<AUni ws="en">tall, high</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is tall?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8b2b95c5-666f-44c4-af8a-3c6b45ce861a" ownerguid="60a5fa58-45b1-41ae-9430-5200e8bfbcb8"> -<ExampleWords> -<AUni ws="en">turn around, reverse direction, retreat, go back, retire to the rear</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to turning around and moving in the opposite direction?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8b2e460a-628b-4966-8113-ac72d9a2f343" ownerguid="2b6f9af7-04ee-4030-a2cd-87d55959caa8"> -<ExampleWords> -<AUni ws="en">tremble, quail, quake, shake, shiver, shudder, heart pounds, teeth chatter, be paralyzed with fear, freeze, cower, crouch, cringe, jump, flinch, wince, shrink, slink, stampede, turn tail, turn white, blanch, cry out, goose-flesh, goose-pimples, goose-bumps</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What are the signs that someone is afraid?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8b2fca54-7208-4e33-b5e9-4a33bf4e14de" ownerguid="9bb0b5cd-a299-49ec-b100-0d5dcbd6beb5"> -<Form> -<AUni ws="qvm-x-ach">lagu</AUni> -<AUni ws="qvm-x-acl">lagu; lagu; lago</AUni> -<AUni ws="qvm-x-akh">laqu</AUni> -<AUni ws="qvm-x-akl">laqu; laqu; laqo</AUni> -<AUni ws="qvm-x-ame">laqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8b30702d-4e85-41f6-87e1-d9901dedd529" ownerguid="fd33670e-ef16-4566-a62e-aa077e58407b"> -<ExampleWords> -<AUni ws="en">pitch, tone, note, frequency, inflection, intonation, modulation, overtone, tune, tonality</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the pitch of a sound?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8b31e840-a605-465b-a2a9-466c41264581" ownerguid="8294ca3f-0aed-4517-bdc9-dc5ee6763c29"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="8b33d8dd-6bab-4215-b7a4-2ed686659b60" ownerguid="3d5a1a32-6e9e-486c-8c3b-d12bfe9a3114"> -<Form> -<AUni ws="qvm-x-ach">machëti; machëti</AUni> -<AUni ws="qvm-x-acl">machëti; machëti; machëte</AUni> -<AUni ws="qvm-x-akh">machëti; machëti</AUni> -<AUni ws="qvm-x-akl">machëti; machëti; machëte</AUni> -<AUni ws="qvm-x-ame">machëti; machëti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="8b35e887-b76d-4ca4-a5ae-7e653c1c103f" ownerguid="cbc7166b-1360-4094-8d98-a77a380fdc86"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sister</AUni> -<AUni ws="es">hermana</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="311238e6-8918-42d3-aa2d-3e099ed22849" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8b369173-06c3-449c-88b1-afc959fe6b9a" ownerguid="d1687857-0f1d-4098-affb-b283a6677b6b"> -<ExampleWords> -<AUni ws="en">minority</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to less than half of something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8b3dd0f3-ed86-464c-a5ba-d804cb795536" ownerguid="5658ae3d-ea15-44db-bae4-47df792da12e"> -<ExampleWords> -<AUni ws="en">dishonest, lying, devious, sly, untrustworthy, sneaky, unscrupulous, have no scruples, corrupt, crooked</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who does not tell the truth?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="8b3ee386-513a-450e-9982-794ac4bf1609"> -<Form> -<Str> -<Run ws="en">chay</Run> -</Str> -</Form> -</rt> -<rt class="MoStemMsa" guid="8b433f50-feb1-41e4-ade6-17da1fd1a2be" ownerguid="ef1b0b81-1213-422f-9566-fa24e5513ec2"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="8b435128-ed72-4842-a56a-c6305355edb1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pared</AUni> -<AUni ws="qvm-x-acl">pared</AUni> -<AUni ws="qvm-x-akh">pared</AUni> -<AUni ws="qvm-x-akl">pared</AUni> -<AUni ws="qvm-x-ame">pared</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pared</AUni> -<AUni ws="qvm-x-acl">+pared</AUni> -<AUni ws="qvm-x-akh">+pared</AUni> -<AUni ws="qvm-x-akl">+pared</AUni> -<AUni ws="qvm-x-ame">+pared</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.719" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1f8d1e84-9348-4ade-b78d-7632a8faee71" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pared</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4000f0bd-eb61-4a1b-8e99-0674c7c56be3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c6f7d995-447c-4834-8e04-18f8f4e08350" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pared 
\entryTyp root 
\gENG 
\gSPN 
\e +pared 
\c N0 
\mp +FinalC 
\ach pared 
\akh pared 
\acl pared 
\akl pared 
\ame pared</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="8b443854-2dd7-4bbb-b469-88329d0a289f" ownerguid="70f47508-b668-4214-8811-d90c6ff8c133"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="8b44d2e6-d3cf-41a7-8f92-e6a87c242c4f" ownerguid="6ee14639-c536-42c1-b392-f94736f9575a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="2a23d126-5fb9-458e-9b62-1e6cd6615330" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="8b47555e-bf1a-47a6-8a9c-a2396271e155" ownerguid="3fea4881-b06a-48a6-8c43-2acda231b2ad"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">raise</AUni> -<AUni ws="es">criar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2148f121-ca32-49ed-822f-c79de01ef739" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="8b47e9e5-c935-48c5-a93e-8291e58d2778"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">putu</AUni> -<AUni ws="qvm-x-acl">putu; puto</AUni> -<AUni ws="qvm-x-akh">putu</AUni> -<AUni ws="qvm-x-akl">putu; puto</AUni> -<AUni ws="qvm-x-ame">putu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*putu.v</AUni> -<AUni ws="qvm-x-acl">*putu.v</AUni> -<AUni ws="qvm-x-akh">*putu.v</AUni> -<AUni ws="qvm-x-akl">*putu.v</AUni> -<AUni ws="qvm-x-ame">*putu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.48" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="023cf435-a77c-428b-b8eb-31e15c58dcdf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*putu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5003921c-01bc-4d8d-8895-e572421d605c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d586e71d-5114-4575-9481-0d78a7ec6389" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *putu.v 
\entryTyp root 
\gENG stretch 
\gSPN estirar 
\e *putu.v 
\c V1 
\ach putu 
\akh putu 
\acl putu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl puto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl putu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl puto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame putu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8b48644a-ab52-4fad-a4e1-0595ad423e42" ownerguid="8a81b9bc-9c66-4d57-a2d1-2e592604c4b1"> -<ExampleWords> -<AUni ws="en">overflow, overflowing, run over, running over, brimming over, full and running over, overcrowded, overfilled</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words describe something that is full and overflowing?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="8b4991b6-e01c-4a06-a636-e2b2edf4e98c" ownerguid="cdf65d07-f019-436e-95e6-4d74aafc147c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="8b4b6e11-459f-4a72-8bb9-6c51d25051a8" ownerguid="93de2257-8303-490d-b2fe-6d1d838b08c6"> -<ExampleWords> -<AUni ws="en">fingernail clippings</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What is a piece of a cut off fingernail called?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8b510108-3ec3-49fe-9e99-4f3593692fd4" ownerguid="4d0f1fda-47b6-47cb-850d-00b97a145ce2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">border</AUni> -<AUni ws="es">todo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d6870f03-3de7-4c10-b505-0ae24fcc9705" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="8b52a9d6-a07e-4ac8-8f84-6eb5ba578d97" ownerguid="7fe69c4c-2603-4949-afca-f39c010ad24e"> -<Abbreviation> -<AUni ws="en">2.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to coughing, sneezing, and other actions of the mouth and nose.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>23B Processes Involving the Mouth, Other Than Eating and Drinking</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Cough, sneeze</AUni> -</Name> -<Questions> -<objsur guid="d1558c2e-f169-448d-9c42-f7cbfa0a8068" t="o" /> -<objsur guid="8645970c-0e3d-4c34-b326-68be9a256a59" t="o" /> -<objsur guid="a4158631-018a-4623-9db8-b9c54a1211ee" t="o" /> -<objsur guid="d4301f16-66b2-4adc-89c2-6b3e1b9f002c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="8b533a79-919e-4f5f-bab5-03d48e749ee3" ownerguid="a7bbb255-5b0a-4002-ae08-64f896cfacb5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="8b54800f-4bc2-41cd-9b17-a3a9e0e56763" ownerguid="1e94e6a4-6fb3-4ade-9e3b-a34c77921726"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sheepherder</AUni> -<AUni ws="es">pastor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d6653890-8f34-4609-9089-c180d7e0e699" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8b54c296-c003-4c6c-a028-7e1dc6b531a9" ownerguid="547f1151-5816-4d89-b0bc-ece2a86c92eb"> -<ExampleWords> -<AUni ws="en">leave, move out, leave home, run away, vacate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to leaving home?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8b54d0b0-7bc1-4731-bf88-bc752dd27ca9" ownerguid="bb18a3a5-232f-492b-8784-c7575525ab85"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="8b550145-e8f8-477d-a094-571f9bcd7943" ownerguid="cf8b9a86-96e2-4712-a76d-39f7695a338b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8b5966e4-634c-42ff-9b6a-97e91e109f8d" ownerguid="4f19ab95-428a-4a0b-a069-ca8be6b72b08"> -<ExampleWords> -<AUni ws="en">visit, pay a visit, call, call on, drop by, drop in on, go round, make the rounds, look in on, see, spend time with, stop by</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to going to someone's place to see them?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8b5cf122-0643-4ac1-a44f-e0eae95410a8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gaululu</AUni> -<AUni ws="qvm-x-acl">gaululu; gaululo</AUni> -<AUni ws="qvm-x-akh">qawlulu</AUni> -<AUni ws="qvm-x-akl">qawlulu; qawlulo</AUni> -<AUni ws="qvm-x-ame">qawlulu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qawllullu:</AUni> -<AUni ws="qvm-x-acl">*qawllullu:</AUni> -<AUni ws="qvm-x-akh">*qawllullu:</AUni> -<AUni ws="qvm-x-akl">*qawllullu:</AUni> -<AUni ws="qvm-x-ame">*qawllullu:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.155" /> -<DateModified val="2022-10-10 21:19:47.700" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6c829729-6b99-4136-a715-f976919bb641" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qawllullu:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9b5daf03-b0c0-418a-afa9-58cd7a102cd5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="977c4370-9593-4c53-80b0-236918417848" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qawllullu: 
\entryTyp root 
\gENG growl 
\gSPN 
\e *qawllullu: 
\c V1 
\ach gaululu 
\akh qawlulu 
\acl gaululu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gaululo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qawlulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qawlulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qawlulu 
\i PRO 16.26 Pachan gaululönanta mana munarmi arucun.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8b5d2965-b035-40e7-b006-d72901125c25" ownerguid="9cfe4c5a-80d4-4b31-ba89-79b2e3d28a1c"> -<ExampleWords> -<AUni ws="en">big toe, first toe, middle toe, third toe, little toe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the names of each toe?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8b5f3568-a9a1-4809-ba05-42d25fe70068" ownerguid="295dc021-5b50-47b3-8340-1631c6d6fadc"> -<ExampleWords> -<AUni ws="en">rough it, austere, austerity, Spartan</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to living without things that make you feel comfortable?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="8b5f9519-7301-4400-b93d-ebde4ea3def8" ownerguid="265f5645-94cb-485c-8bf9-0a3ab2354f63"> -<Abbreviation> -<AUni ws="en">9.6.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating an alternative relation between two things or propositions.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89X Alternative Relation</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Or, either</AUni> -</Name> -<Questions> -<objsur guid="6de92ca0-169a-47f4-8cd7-91b6f5d10263" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="8b600f38-8c05-406d-8872-b8662bf4e808" ownerguid="a31c85df-02a9-4dd8-a094-0f07a0afbcca"> -<ExampleWords> -<AUni ws="en">take out, remove, extract, extraction, cut out, get out, excision, withdraw</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to removing a part from inside something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8b60b6be-9c28-4154-ab13-8d37ea48ffa0" ownerguid="4cefadbd-33c2-4397-bf5a-687d0600043f"> -<Form> -<AUni ws="qvm-x-ach">fiscal</AUni> -<AUni ws="qvm-x-acl">fiscal</AUni> -<AUni ws="qvm-x-akh">fiscal</AUni> -<AUni ws="qvm-x-akl">fiscal</AUni> -<AUni ws="qvm-x-ame">fiscal</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8b614ca7-5c22-40dc-a2b1-531645013a23" ownerguid="f2342d42-bdc4-449c-9891-58f90318b9f1"> -<ExampleWords> -<AUni ws="en">messenger</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to someone who takes a message to someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8b61ce26-d083-4887-b3a6-8dd01addbdc1" ownerguid="4870b2b3-03fb-4964-9e2e-84460c9a4cce"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8b632f8b-4ec4-443c-8c50-51741acc2c3a" ownerguid="48ac206f-2706-4500-bb63-2e499b790259"> -<ExampleWords> -<AUni ws="en">academician, genius, highbrow, illuminati, intellectual, literati, magus, philosopher, priest, prodigy, sage, scholar, scholastic, thinker, able thinker, wise man</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a person who thinks well?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8b6698dc-3e93-4826-a711-c4a6609b0eeb" ownerguid="12a028d1-d910-4011-ab9d-59be69daaf65"> -<ExampleWords> -<AUni ws="en">react, respond</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to reacting or responding?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8b6748f6-03ac-4215-82c2-829afdfdc91a" ownerguid="be2f2785-7219-4a35-b8d3-aa56b9b78514"> -<ExampleWords> -<AUni ws="en">move together, move parallel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to more than one thing moving in the same direction?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8b67e92f-52c2-475c-b845-7a0611bd353e" ownerguid="28a68cea-9128-4d5c-8542-8df38c907310"> -<ExampleWords> -<AUni ws="en">set someone free, let someone go, let someone out, release, free, deliver, discharge, emancipate, excuse, liberate, loose, ransom, redeem, spring, unbind, unbridle, unchain, unfetter, unhand, unharness, unleash, unshackle, untie, set at liberty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to setting someone free?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8b682b02-6738-4067-a519-80ec92f4f2a9" ownerguid="424bda37-67d4-4ec3-a39a-7bba0c9f3b97"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="8b6aecfb-071d-439d-9ee0-efa3c57967a0" ownerguid="5e7a5899-df78-4aa7-bec9-b354acfe087f"> -<Abbreviation> -<AUni ws="en">4.6.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.256" /> -<DateModified val="2022-9-23 16:55:8.256" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to diplomacy between nations.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Diplomacy</AUni> -</Name> -<OcmCodes> -<Uni>648 International Relations</Uni> -</OcmCodes> -<Questions> -<objsur guid="4a18bb43-ff77-43fa-bc3c-8d7422c11421" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="8b6da228-9ec4-4e13-b6d6-0e3bb8257f7c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yu:gu</AUni> -<AUni ws="qvm-x-acl">yu:gu; yu:go</AUni> -<AUni ws="qvm-x-akh">yu:gu</AUni> -<AUni ws="qvm-x-akl">yu:gu; yu:go</AUni> -<AUni ws="qvm-x-ame">yu:gu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+yugo.v</AUni> -<AUni ws="qvm-x-acl">+yugo.v</AUni> -<AUni ws="qvm-x-akh">+yugo.v</AUni> -<AUni ws="qvm-x-akl">+yugo.v</AUni> -<AUni ws="qvm-x-ame">+yugo.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.790" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dcb2d421-7283-487a-808d-ea5822d44dbc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+yugo.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8c75a366-e325-4687-b7b8-eac050246609" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6a481c2d-249b-4c67-b911-20ff0943eb3f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +yugo.v 
\entryTyp root 
\gENG 
\gSPN 
\e +yugo.v 
\c V1 
\ach yu:gu 
\akh yu:gu 
\acl yu:gu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl yu:go +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yu:gu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yu:go +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame yu:gu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8b6ddb1f-0335-4f1a-bd7a-3a505a1a6a7c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">to:ru</AUni> -<AUni ws="qvm-x-acl">to:ru; to:ru; to:ro</AUni> -<AUni ws="qvm-x-akh">to:ru</AUni> -<AUni ws="qvm-x-akl">to:ru; to:ru; to:ro</AUni> -<AUni ws="qvm-x-ame">to:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+toro</AUni> -<AUni ws="qvm-x-acl">+toro</AUni> -<AUni ws="qvm-x-akh">+toro</AUni> -<AUni ws="qvm-x-akl">+toro</AUni> -<AUni ws="qvm-x-ame">+toro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.957" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="487c384e-423e-430d-a287-354a694945a2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+toro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3635f85e-cda9-4e17-a148-a437b072cea2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d817caf8-4b20-4f3c-90d3-03fca96655d6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +toro 
\entryTyp root 
\gENG bull 
\gSPN toro 
\e +toro 
\c N0 
\ach to:ru 
\akh to:ru 
\acl to:ru / _# 
\acl to:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl to:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl to:ru / _# 
\akl to:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl to:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame to:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8b727cb7-dc70-4dce-8c6f-7b8da9b8fea9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cumpli</AUni> -<AUni ws="qvm-x-acl">cumpli; cumple</AUni> -<AUni ws="qvm-x-akh">cumpli</AUni> -<AUni ws="qvm-x-akl">cumpli; cumple</AUni> -<AUni ws="qvm-x-ame">cumpli</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cumplir</AUni> -<AUni ws="qvm-x-acl">+cumplir</AUni> -<AUni ws="qvm-x-akh">+cumplir</AUni> -<AUni ws="qvm-x-akl">+cumplir</AUni> -<AUni ws="qvm-x-ame">+cumplir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.252" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f63a13b6-65e1-4c80-91b7-39e955b253a9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cumplir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="04973cf3-e710-4a1a-9f1b-d65b76fbe2fb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="80aba992-133f-4943-b472-03a9e0410ff6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cumplir 
\entryTyp root 
\gENG fulfill 
\gSPN cumplir 
\e +cumplir 
\c V2 
\mp +FinalI 
\ach cumpli 
\akh cumpli 
\acl cumpli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl cumple +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cumpli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cumple +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cumpli</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="8b75a58d-c3d6-4646-a99d-c437d60e41bb" ownerguid="a9069cca-dc28-485f-976f-faa06b34a5a5"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="8b76e6d8-8237-4afd-9e83-648751112f31" ownerguid="11e83147-fac8-422d-99dc-be0903a78eb4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">full</AUni> -<AUni ws="es">lleno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="23d7d6c2-f060-4af1-b8ab-348aa14504ee" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="8b76f4a2-9926-4c76-8d4f-563371683219" ownerguid="34e92ff1-32aa-49c7-b4da-d161bedc5adc"> -<Abbreviation> -<AUni ws="en">6.6.2.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.468" /> -<DateModified val="2022-9-23 16:55:8.468" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to working with chemicals.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Working with chemicals</AUni> -</Name> -<OcmCodes> -<Uni>303 Manufacturing of Toilet Accessories; 380 Chemical Industries; 381 Chemical Engineering; 382 Petroleum and Coal Products Industries; 383 Rubber Industry; 384 Synthetics Industry; 385 Industrial Chemicals; 386 Paint and Dye Manufacture; 387 Fertilizer Industry; 388 Soap and Allied Products; 389 Manufacture of Explosives; 549 Art and Recreational Supplies Industries; 719 Munitions Industries</Uni> -</OcmCodes> -<Questions> -<objsur guid="16bb3a63-31aa-480b-a6cd-bf1a1332dce9" t="o" /> -<objsur guid="fe68d7e1-d5a2-4ff5-a0da-a92f9cf4fffa" t="o" /> -<objsur guid="782e0496-b3af-4512-a83d-efa0a6984847" t="o" /> -<objsur guid="0836c6ee-e66e-4cbc-a7f0-dc4fd7ece3dd" t="o" /> -<objsur guid="33c3d564-553a-4c55-b229-a4162b1bd79d" t="o" /> -<objsur guid="e87e4180-6340-4abf-8ff0-b5f19ec0ea71" t="o" /> -<objsur guid="3fed3c8d-0f6f-4f72-8427-066c0f5d4f07" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="1fd8a8d6-6795-4a5b-90e0-342e8b0975a1" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="8b798583-6f5f-4d46-9aa2-c268648abf03" ownerguid="d93bac06-fdd0-4cc8-b309-7defaa7a3511"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoInflAffMsa" guid="8b7a32d0-6744-4c78-9071-7cf96938c9b3" ownerguid="26bab2b5-98cd-499a-8628-93bf684bc5e7"> -<PartOfSpeech> -<objsur guid="a4fc78d6-7591-4fb3-8edd-82f10ae3739d" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="5f0a99ac-644b-4188-83d9-e7927958c17e" t="r" /> -</Slots> -</rt> -<rt class="LexEntry" guid="8b7bef47-9b6d-47c0-8558-22d442db06a4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pagla</AUni> -<AUni ws="qvm-x-acl">pagla</AUni> -<AUni ws="qvm-x-akh">paqla</AUni> -<AUni ws="qvm-x-akl">paqla</AUni> -<AUni ws="qvm-x-ame">paqla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*paqlla.v</AUni> -<AUni ws="qvm-x-acl">*paqlla.v</AUni> -<AUni ws="qvm-x-akh">*paqlla.v</AUni> -<AUni ws="qvm-x-akl">*paqlla.v</AUni> -<AUni ws="qvm-x-ame">*paqlla.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.709" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d2a6a431-3a04-43dc-993a-089cf99184f0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*paqlla.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f33f0c85-cdbd-4856-990b-bc920c536cf6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a2cb4ee4-8d9c-4205-be8e-dd897a33bc0c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *paqlla.v 
\entryTyp root 
\gENG 
\gSPN 
\e *paqlla.v 
\c V1 
\ach pagla 
\akh paqla 
\acl pagla 
\akl paqla 
\ame paqla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="8b7cbfc1-8bde-4039-9aa6-5a9384ef3241" ownerguid="bb533f0d-2a18-4637-90ce-86198308d1f8"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Tsay junag mana ayunag cäga pï carpis Israel runacunapita gargushgami canga. (Chavinillo)</Run> -</AStr> -</Example> -</rt> -<rt class="PunctuationForm" guid="8b7d244e-9b86-436d-a941-a357e0a8ac32"> -<Form> -<Str> -<Run ws="qvm-x-akh">%<</Run> -</Str> -</Form> -</rt> -<rt class="LexEntry" guid="8b7e5a38-1d5d-44ee-bc7c-ff787a79da7f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsari</AUni> -<AUni ws="qvm-x-acl">tsari; tsari; tsare</AUni> -<AUni ws="qvm-x-akh">tsari</AUni> -<AUni ws="qvm-x-akl">tsari; tsari; tsare</AUni> -<AUni ws="qvm-x-ame">tsari</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chari.r</AUni> -<AUni ws="qvm-x-acl">*chari.r</AUni> -<AUni ws="qvm-x-akh">*chari.r</AUni> -<AUni ws="qvm-x-akl">*chari.r</AUni> -<AUni ws="qvm-x-ame">*chari.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.293" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="31d5bcf4-a4d8-4680-998a-f3d664217a39" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chari.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e5dfdcc5-aa49-444a-86bf-a8398d1c0282" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9f8d80da-6c50-4f52-b4ef-6ed766d54019" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chari.r 
\entryTyp root 
\gENG catch 
\gSPN agarrar 
\e *chari.r 
\c R0 
\mp +FinalI 
\ach tsari 
\akh tsari 
\acl tsari / _# 
\acl tsari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tsare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsari / _# 
\akl tsari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tsare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsari</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8b7f1eb3-f7a5-43f3-b04a-904df3352d0c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">patrón; patron</AUni> -<AUni ws="qvm-x-acl">patrón; patron</AUni> -<AUni ws="qvm-x-akh">patrón; patron</AUni> -<AUni ws="qvm-x-akl">patrón; patron</AUni> -<AUni ws="qvm-x-ame">patrón; patron</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+patrón.1</AUni> -<AUni ws="qvm-x-acl">+patrón.1</AUni> -<AUni ws="qvm-x-akh">+patrón.1</AUni> -<AUni ws="qvm-x-akl">+patrón.1</AUni> -<AUni ws="qvm-x-ame">+patrón.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.767" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b8dd9532-e364-4eef-a1ff-162e489e546b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+patrón.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4a0165fb-1fe0-4ec9-aad0-f150963c2eac" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7a6d94f0-850c-4ada-b11e-4e1a800f1e60" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +patrón.1 
\entryTyp root 
\gENG master 
\gSPN patrón 
\e +patrón.1 
\c N0 
\mp +FinalC 
\ach patrón / _# 
\ach patron / ~_# 
\akh patrón / _# 
\akh patron / ~_# 
\acl patrón / _# 
\acl patron / ~_# 
\akl patrón / _# 
\akl patron / ~_# 
\ame patrón / _# 
\ame patron / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8b80a2ba-c063-408f-90bf-76bef263661c" ownerguid="b5b36c31-c56d-44b9-933c-fe0e62d80c25"> -<ExampleWords> -<AUni ws="en">take turns, take it in turns, share, alternate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to two or more people doing something, first one person doing it, then another person doing it?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8b80fba2-081e-4f12-9d98-73998d97f507" ownerguid="7a1a3d41-5cf2-4654-8553-c770820eb213"> -<Form> -<AUni ws="qvm-x-ach">luchwa</AUni> -<AUni ws="qvm-x-acl">luchwa</AUni> -<AUni ws="qvm-x-akh">luchwa</AUni> -<AUni ws="qvm-x-akl">luchwa</AUni> -<AUni ws="qvm-x-ame">luchwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="8b83027f-647a-47ce-969e-3ed23a3adf6b" ownerguid="e53693cb-a2fe-4752-a0d1-b2ffcfcdb7ac"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="8b8510be-1a87-4ca8-93cf-1e23142332b7" ownerguid="273ef9cc-651e-4fdb-8f65-39e117325c50"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">chaya</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">chaya</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">chaya</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">chaya</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">chaya</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e869925b-126f-494c-b59b-39dc4a0e04ed" t="r" /> -</Morph> -<Msa> -<objsur guid="a25ee531-622d-4a1e-bef2-feee1c1de264" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="8b85eb98-a65b-4a57-9cd3-2ac5c8e94fe6" ownerguid="8fff393a-23c2-42bb-8da8-9b151e790904"> -<ExampleWords> -<AUni ws="en">retire, retirement, retired, retiree, pension, pensioner, old age pensioner</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to when an old person can no longer work?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="8b89cd10-b4fa-4356-bd73-c81dfbcb5c38"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">nirqannatsu</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="8b8ab911-5e1a-4b76-b738-61a535582fe3" ownerguid="71a2cc77-f968-4341-84c1-6c16d007a093"> -<ExampleWords> -<AUni ws="en">kill, butcher, slaughter, destroy, put down, put away, put something out of its misery</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to killing an animal?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8b8cb24b-884f-4515-925d-a9702bb9dfd1" ownerguid="acbe546e-9501-4397-80dc-5e330501c465"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">damage</AUni> -<AUni ws="es">dañar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bd75d3a4-ec11-4f3f-b690-684ff288ad7b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="8b8d2a77-3dd2-4ebd-9a15-0f0ff0374395" ownerguid="836a7fed-e497-4ecb-8057-16c2c95ad368"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.sad</AUni> -<AUni ws="es">estar.triste</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="21ffb591-045f-4ca8-909c-020fb39b0223" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8b8f336b-e1e7-4c19-86c0-027b2901848e" ownerguid="267b98aa-e17c-4ebb-a752-ed4210701867"> -<ExampleWords> -<AUni ws="en">not notice, miss, overlook, fail to notice, escape someone's notice, unnoticed, go unnoticed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to not noticing something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8b945390-bab3-4f80-8d86-3a54278af8b4" ownerguid="0a1ad4c9-8bf3-448b-a27f-611813b305de"> -<ExampleWords> -<AUni ws="en">under, underneath, beneath</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that something is under a covering (such as clothes, skin, or paint)?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8b97c15c-a905-4c5e-a79b-766358f7dedb" ownerguid="e84c68d7-7b45-45bc-a3ea-6b8676c14233"> -<Form> -<AUni ws="qvm-x-ach">pachga</AUni> -<AUni ws="qvm-x-acl">pachga</AUni> -<AUni ws="qvm-x-akh">pachqa</AUni> -<AUni ws="qvm-x-akl">pachqa</AUni> -<AUni ws="qvm-x-ame">pachqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="8b983418-76fe-4417-92cb-da43552bcf05" ownerguid="77301d7b-fb8f-47cf-90c8-2fa5e6d1a9e5"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="8b98c27e-351e-4953-ba13-d4d1e282ea33"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chichi</AUni> -<AUni ws="qvm-x-acl">chichi; chichi; chiche</AUni> -<AUni ws="qvm-x-akh">chichi</AUni> -<AUni ws="qvm-x-akl">chichi; chichi; chiche</AUni> -<AUni ws="qvm-x-ame">chichi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tritri.n</AUni> -<AUni ws="qvm-x-acl">*tritri.n</AUni> -<AUni ws="qvm-x-akh">*tritri.n</AUni> -<AUni ws="qvm-x-akl">*tritri.n</AUni> -<AUni ws="qvm-x-ame">*tritri.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.137" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="65a7a993-845a-4fad-9ba7-79335eb26271" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tritri.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="da3cbefa-53b2-488a-9973-500ce70108e4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="11adb98f-ae31-4255-933e-663f0c38a61c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tritri.n 
\entryTyp root 
\gENG 
\gSPN teta 
\e *tritri.n 
\c N0 
\mp +FinalI 
\ach chichi 
\akh chichi 
\acl chichi / _# 
\acl chichi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chiche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chichi / _# 
\akl chichi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chiche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chichi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="8b9f23f4-a147-4ea8-a13a-c5b1edc7f5e4" ownerguid="2810998c-d6cc-47a3-a946-66d0986a2767"> -<Abbreviation> -<AUni ws="en">7.3.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to opening something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79X Open, Closed</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Open</AUni> -</Name> -<Questions> -<objsur guid="4786af27-01ba-4a91-a88c-b93ba16acbda" t="o" /> -<objsur guid="d808e4e8-4991-47f5-8539-3492ae82eaef" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="d7e4bf3e-e539-43bc-bb43-3ae0980ffb86" t="o" /> -<objsur guid="7992958d-fd36-469e-a94b-f8a9eb26af64" t="o" /> -<objsur guid="440608df-3c98-4dc8-9fd3-fad08afe7aef" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="8b9f2a23-bd3b-4ea6-bd52-f15842372792" ownerguid="0bd56d70-3a1c-41ae-a4d9-a79675ec55f9"> -<Form> -<AUni ws="qvm-x-ach">llanu</AUni> -<AUni ws="qvm-x-acl">llanu; llanu; llano</AUni> -<AUni ws="qvm-x-akh">llanu</AUni> -<AUni ws="qvm-x-akl">llanu; llanu; llano</AUni> -<AUni ws="qvm-x-ame">llanu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8ba27218-425e-415c-aa08-70ed94e95c07" ownerguid="e949f393-2a5b-4792-af8f-75138322ceee"> -<ExampleWords> -<AUni ws="en">be in shape, be in good condition, keep fit, stay in shape, keep in shape</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to being able to work or run for a long time?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8ba297c7-4197-4846-b90f-5915d87763df"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">goylar</AUni> -<AUni ws="qvm-x-acl">goylar</AUni> -<AUni ws="qvm-x-akh">qoylar</AUni> -<AUni ws="qvm-x-akl">qoylar</AUni> -<AUni ws="qvm-x-ame">quylar</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*quyllar</AUni> -<AUni ws="qvm-x-acl">*quyllar</AUni> -<AUni ws="qvm-x-akh">*quyllar</AUni> -<AUni ws="qvm-x-akl">*quyllar</AUni> -<AUni ws="qvm-x-ame">*quyllar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.912" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c87e198e-b083-4006-ae1a-93d1004e0b2d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*quyllar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="27d6042c-7fb2-4e3d-8ce0-93399afb84e7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b435b6d4-4ebc-4672-b30d-27108fe9f0b8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *quyllar 
\entryTyp root 
\gENG star 
\gSPN estrella 
\e *quyllar 
\c N0 
\mp +FinalC 
\ach goylar 
\akh qoylar 
\acl goylar 
\akl qoylar 
\ame quylar</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="8ba5d7f7-d8e5-437c-bc37-fde4b3becd85" ownerguid="dc77b359-1f29-42ba-b89d-9fefc586f4a3"> -<Form> -<AUni ws="qvm-x-ach">reconöci</AUni> -<AUni ws="qvm-x-acl">reconöci; reconöce</AUni> -<AUni ws="qvm-x-akh">reconöci</AUni> -<AUni ws="qvm-x-akl">reconöci; reconöce</AUni> -<AUni ws="qvm-x-ame">reconöci</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="8ba60563-44e9-4fd9-8f0f-3af20cedf8ad" ownerguid="17296a19-2182-430b-85fb-43eb494b0651"> -<PartOfSpeech> -<objsur guid="85ffb381-0567-4202-8640-53cbaec77e45" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="8bb00e2a-cb32-4c76-846a-b3732a9ddd53" ownerguid="f2d39dc3-b2ae-405e-9d4b-e1724b283049"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spread</AUni> -<AUni ws="es">entreverarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d90fb20f-f918-4c7b-b2b0-1e3baba033c6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="8bb20465-4e03-40af-8fd0-65b7a22d214e" ownerguid="e1bfbabf-6076-4702-8013-05c093abd868"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoAffixAllomorph" guid="8bb2b934-216b-4529-aedd-c45d4d0a7b0d" ownerguid="f7eda99e-fde7-4f3f-ab22-a034e7f3c3b2"> -<Form> -<AUni ws="qvm-x-ach">rpä</AUni> -<AUni ws="qvm-x-acl">rpä</AUni> -<AUni ws="qvm-x-akh">rpä</AUni> -<AUni ws="qvm-x-akl">rpä</AUni> -<AUni ws="qvm-x-ame">rpä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="4d5106b0-9756-4fc2-a2e3-b3bb0373fd9b" t="r" /> -</PhoneEnv> -</rt> -<rt class="LexSense" guid="8bb51db2-efaa-4937-a58b-271b3719a9d2" ownerguid="5998134f-2dce-489d-9355-b67044c7611b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a0fc7b3d-b42e-457a-a171-f0019b836b56" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="8bb58704-789a-46f5-ab16-d428dc73e4ba"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">magma</AUni> -<AUni ws="qvm-x-acl">magma</AUni> -<AUni ws="qvm-x-akh">maqma</AUni> -<AUni ws="qvm-x-akl">maqma</AUni> -<AUni ws="qvm-x-ame">maqma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*maqma</AUni> -<AUni ws="qvm-x-acl">*maqma</AUni> -<AUni ws="qvm-x-akh">*maqma</AUni> -<AUni ws="qvm-x-akl">*maqma</AUni> -<AUni ws="qvm-x-ame">*maqma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.336" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="75bcc381-0d9d-4103-a807-4e03b82b163a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*maqma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f76b5b21-08c5-4e20-b31c-de5a46a6764d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="56b0479c-fead-41d9-a1eb-d6734f48ffda" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *maqma 
\entryTyp root 
\gENG clay.jar 
\gSPN olla.de.barro 
\e *maqma 
\c N0 
\ach magma 
\akh maqma 
\acl magma 
\akl maqma 
\ame maqma</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8bb5a987-68f3-4a2a-8ee8-e9cb43af996f" ownerguid="1b3dccfe-29e4-478e-8443-17be9454a05a"> -<ExampleWords> -<AUni ws="en">abandoned, forgotten, forsaken, marooned</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that has been left behind?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8bb84cb0-f726-4fda-8b03-1b5a22191441" ownerguid="e2660eb1-710e-420c-976d-7afccb9b8ea4"> -<Form> -<AUni ws="qvm-x-ach">malmalya; malmalyä</AUni> -<AUni ws="qvm-x-acl">malmalya; malmalyä</AUni> -<AUni ws="qvm-x-akh">malmalya; malmalyä</AUni> -<AUni ws="qvm-x-akl">malmalya; malmalyä</AUni> -<AUni ws="qvm-x-ame">malmalya; malmalyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8bb8e7c0-bb64-428f-8eaa-b67400a29d52"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">melgani</AUni> -<AUni ws="qvm-x-acl">melgani; melgani; melgane</AUni> -<AUni ws="qvm-x-akh">melqani</AUni> -<AUni ws="qvm-x-akl">melqani; melqani; melqane</AUni> -<AUni ws="qvm-x-ame">milqani</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*millqani</AUni> -<AUni ws="qvm-x-acl">*millqani</AUni> -<AUni ws="qvm-x-akh">*millqani</AUni> -<AUni ws="qvm-x-akl">*millqani</AUni> -<AUni ws="qvm-x-ame">*millqani</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.436" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c3f1d82c-f3c9-4cba-9db5-c730f9c5f852" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*millqani</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6e552e23-5ea0-4bf4-bd47-20183aaf75a5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="002e9569-267f-45da-a750-77989f2d993b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *millqani 
\entryTyp root 
\gENG 
\gSPN 
\e *millqani 
\c N0 
\mp +FinalI 
\ach melgani 
\akh melqani 
\acl melgani / _# 
\acl melgani +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl melgane +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl melqani / _# 
\akl melqani +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl melqane +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame milqani 
\mcc *millqani / _... [poss]</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8bb975a0-a459-4684-ad1d-60df82586d49"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">urya</AUni> -<AUni ws="qvm-x-acl">urya</AUni> -<AUni ws="qvm-x-akh">urya</AUni> -<AUni ws="qvm-x-akl">urya</AUni> -<AUni ws="qvm-x-ame">urya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*urya.v</AUni> -<AUni ws="qvm-x-acl">*urya.v</AUni> -<AUni ws="qvm-x-akh">*urya.v</AUni> -<AUni ws="qvm-x-akl">*urya.v</AUni> -<AUni ws="qvm-x-ame">*urya.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.282" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="97a56d0e-59dd-4dbc-90ae-ac17b3d79c5c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*urya.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="02a03330-d3c6-47a2-80d2-58686e5578fb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d71587af-17bc-4550-add9-b2199ada7ef3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *urya.v 
\entryTyp root 
\gENG cultivate 
\gSPN cultivar 
\e *urya.v 
\c V1 
\ach urya 
\akh urya 
\acl urya 
\akl urya 
\ame urya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8bb9c7ff-b817-48e3-8b82-cd60968419c3" ownerguid="771e3882-f672-4e67-8580-edd82d7e5090"> -<ExampleWords> -<AUni ws="en">do good to, be good to, be kind to, benefit (v), treat well, be merciful to, bless, care for</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to doing good to someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8bbb8e9b-914f-4ade-9a19-8241a3c3ae58" ownerguid="975d0109-1bba-4b0e-85b8-2c6b51c8e074"> -<ExampleWords> -<AUni ws="en">sit with your legs crossed, sit cross-legged, sit back, settle back, sit up, sit up straight, sit forward, be on the edge of your seat, sit astride, straddle, sit still, sit around, curl up, perch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe how a person is sitting?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8bbd53fc-5a6e-4939-81eb-dcfd80c1ebfe" ownerguid="f04f6a01-5da7-4f4e-a0d8-622eab6be571"> -<Form> -<AUni ws="qvm-x-ach">wagu</AUni> -<AUni ws="qvm-x-acl">wagu; wagu; wago</AUni> -<AUni ws="qvm-x-akh">waqu</AUni> -<AUni ws="qvm-x-akl">waqu; waqu; waqo</AUni> -<AUni ws="qvm-x-ame">waqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8bc0e4cb-2984-4be7-9fae-6b15817c77e0" ownerguid="e9cafabe-f0f7-4142-a6f6-d1c94bdc4b5c"> -<ExampleWords> -<AUni ws="en">empties, blank (n), space, vacuum, the void, vacancy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something that is empty?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8bc1ad23-7c65-415c-ac69-4ad2933fd459" ownerguid="febd4fc8-66cf-419d-a40e-5e0b51b6a7c8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fall</AUni> -<AUni ws="es">caer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fedd066e-7422-45a6-8ab7-471a782b0c90" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="8bc2c340-00f0-4d24-aa24-1fde6cbe3bdf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alfin</AUni> -<AUni ws="qvm-x-acl">alfin</AUni> -<AUni ws="qvm-x-akh">alfin</AUni> -<AUni ws="qvm-x-akl">alfin</AUni> -<AUni ws="qvm-x-ame">alfin</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+al_fin</AUni> -<AUni ws="qvm-x-acl">+al_fin</AUni> -<AUni ws="qvm-x-akh">+al_fin</AUni> -<AUni ws="qvm-x-akl">+al_fin</AUni> -<AUni ws="qvm-x-ame">+al_fin</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.729" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="79f829b9-fbf9-4902-8416-179a62d2f056" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+al_fin</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ca4bd85a-6451-45a6-ba61-9fd7b6c487bf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="88bd9a05-bdab-426b-afce-4c027e902463" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +al_fin 
\entryTyp root 
\gENG lastly 
\gSPN al.fin 
\e +al_fin 
\c NOSUFF 
\ach alfin 
\akh alfin 
\acl alfin 
\akl alfin 
\ame alfin</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="8bc43d3e-b93f-42c2-8e9f-a1fc8793471d" ownerguid="aef26d30-dcbb-4a8c-b41b-866a8f6fec65"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">greens</AUni> -<AUni ws="es">hoja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c8b24dcf-4f72-45b1-a4ec-7e5e47494b17" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="8bc527ac-155c-4d88-b553-aab9e97e5502"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">paciencia</AUni> -<AUni ws="qvm-x-acl">paciencia</AUni> -<AUni ws="qvm-x-akh">paciencia</AUni> -<AUni ws="qvm-x-akl">paciencia</AUni> -<AUni ws="qvm-x-ame">paciencia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+paciencia.n</AUni> -<AUni ws="qvm-x-acl">+paciencia.n</AUni> -<AUni ws="qvm-x-akh">+paciencia.n</AUni> -<AUni ws="qvm-x-akl">+paciencia.n</AUni> -<AUni ws="qvm-x-ame">+paciencia.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.638" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="71ec8bc6-b59d-4fa3-9d5f-27e4016dace4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+paciencia.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="136f2e28-1ec6-487c-8ce7-e62c4d0ffdf6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a7a8824e-aead-4c3a-8112-01b0ea6254d0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +paciencia.n 
\entryTyp root 
\gENG patience 
\gSPN paciencia 
\e +paciencia.n 
\c N0 
\ach paciencia 
\akh paciencia 
\acl paciencia 
\akl paciencia 
\ame paciencia</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8bc86416-4dc6-4810-b7e6-e14a4d71e0ac"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sogta</AUni> -<AUni ws="qvm-x-acl">sogta</AUni> -<AUni ws="qvm-x-akh">soqta</AUni> -<AUni ws="qvm-x-akl">soqta</AUni> -<AUni ws="qvm-x-ame">suqta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*suqta</AUni> -<AUni ws="qvm-x-acl">*suqta</AUni> -<AUni ws="qvm-x-akh">*suqta</AUni> -<AUni ws="qvm-x-akl">*suqta</AUni> -<AUni ws="qvm-x-ame">*suqta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.754" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7a51844e-519e-4970-aeb1-2b558c74abdb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*suqta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c739a6b0-ffb1-4b8c-9639-b5647013c277" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cf8dab44-8dea-42f0-89b9-b75c060ac155" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *suqta 
\entryTyp root 
\gENG six 
\gSPN seis 
\e *suqta 
\c N0 
\ach sogta 
\akh soqta 
\acl sogta 
\akl soqta 
\ame suqta</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="8bcb23a0-c7a2-4040-80b0-1098e5b3b128" ownerguid="d1e7efd0-1a2d-4164-826d-2333b8ee649b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">punu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">punu; puno</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">punu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">punu; puno</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">punu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="0757cb8b-604d-4d62-aa1d-105843c740e2" t="r" /> -</Morph> -<Msa> -<objsur guid="9da0fb89-0053-4a69-95bf-8b732fe8d281" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="8bcc3b3d-dd0c-4838-a33a-b395f354c86f" ownerguid="12fe5f6c-7f98-47ba-936a-bcd1065c2db3"> -<Abbreviation> -<AUni ws="en">7.2.2.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to continually changing the direction you are facing in until you are once again facing in the same direction, e.g. moving in a circle, moving around something, or rotating.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15R Go Around, Surround; 15I' Roll</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Move in a circle</AUni> -</Name> -<Questions> -<objsur guid="2a53176b-1674-430a-ad23-e4dcaa44750f" t="o" /> -<objsur guid="8477bf5f-d221-4a8f-9363-6282fbf9bb70" t="o" /> -<objsur guid="2af37b06-bc50-47a4-ba1f-9db37c64c06b" t="o" /> -<objsur guid="06047fb2-763c-4eba-9cac-5a89213dc552" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="8bcc6508-263d-4d0d-8eb7-25ec230a157e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sharcu; sharca</AUni> -<AUni ws="qvm-x-acl">sharcu; sharco; sharca</AUni> -<AUni ws="qvm-x-akh">sharku; sharka</AUni> -<AUni ws="qvm-x-akl">sharku; sharko; sharka</AUni> -<AUni ws="qvm-x-ame">sharku; sharka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*sharkU</AUni> -<AUni ws="qvm-x-acl">*sharkU</AUni> -<AUni ws="qvm-x-akh">*sharkU</AUni> -<AUni ws="qvm-x-akl">*sharkU</AUni> -<AUni ws="qvm-x-ame">*sharkU</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.551" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8c3f9771-0dfc-4dce-b555-070fa5e8e1ba" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*sharkU</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="403f2e6e-c261-4054-8084-8f6918ad5b92" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="97791eb6-fd27-4be2-a62d-d7d63bfc1705" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *sharkU 
\entryTyp root 
\gENG stand.up 
\gSPN pararse 
\e *sharkU 
\c V1 R0 
\mp PMlowered 
\ach sharcu 
\ach sharca morphlowered 
\akh sharku 
\akh sharka morphlowered 
\acl sharcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl sharco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl sharca morphlowered 
\akl sharku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sharko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sharka morphlowered 
\ame sharku 
\ame sharka morphlowered</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="8bcddaa8-7f62-4251-831f-9b9fcb546677" ownerguid="f000b9e2-833c-446e-ac1d-59db48ee23ec"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 38.3 Lapan tulöcunapis shunshutaycan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="8bce78d1-5783-4ceb-b63d-faaf55ca4876"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">profeti:sa</AUni> -<AUni ws="qvm-x-acl">profeti:sa</AUni> -<AUni ws="qvm-x-akh">profeti:sa</AUni> -<AUni ws="qvm-x-akl">profeti:sa</AUni> -<AUni ws="qvm-x-ame">profeti:sa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+profetisa</AUni> -<AUni ws="qvm-x-acl">+profetisa</AUni> -<AUni ws="qvm-x-akh">+profetisa</AUni> -<AUni ws="qvm-x-akl">+profetisa</AUni> -<AUni ws="qvm-x-ame">+profetisa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.939" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="25f08c63-8cb0-4d97-b425-7b7ed2e8d7c3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+profetisa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ec2fb55e-473b-48ce-b61a-102366aeeb4a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3cfa7114-1de9-4f6f-9e31-64858df1de7c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +profetisa 
\entryTyp root 
\gENG prophetess 
\gSPN profetisa 
\e +profetisa 
\c N0 
\ach profeti:sa 
\akh profeti:sa 
\acl profeti:sa 
\akl profeti:sa 
\ame profeti:sa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8bcfa8b0-7265-4e49-b903-bb06e5e74bc0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">muchu</AUni> -<AUni ws="qvm-x-acl">muchu; mucho</AUni> -<AUni ws="qvm-x-akh">muchu</AUni> -<AUni ws="qvm-x-akl">muchu; mucho</AUni> -<AUni ws="qvm-x-ame">muchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mutru</AUni> -<AUni ws="qvm-x-acl">*mutru</AUni> -<AUni ws="qvm-x-akh">*mutru</AUni> -<AUni ws="qvm-x-akl">*mutru</AUni> -<AUni ws="qvm-x-ame">*mutru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.517" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6d379b70-90c0-43c3-af94-5acc3bd0a821" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mutru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="56946af8-5f8f-4e94-bb10-1ff9b1e059cc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e3110c40-3958-4203-a194-b6a95bd8e1bb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mutru 
\entryTyp root 
\gENG be.famished 
\gSPN hambrear 
\e *mutru 
\c V2 | HM muchöshunqui; DM muchöshun pero no muchöshunqui 
\ach muchu 
\akh muchu 
\acl muchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl mucho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl muchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mucho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame muchu 
\mcc *mutru / ~_ INF.noI # 
\mcc *mutru / ~_ INF.noI TOP 
\mcc *mutru / ~_ [q] 
\mcc *mutru / ~_ [y] #</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8bd0a688-3bea-4dd3-8b46-f759216604b0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guepi</AUni> -<AUni ws="qvm-x-acl">guepi; guepe</AUni> -<AUni ws="qvm-x-akh">qepi</AUni> -<AUni ws="qvm-x-akl">qepi; qepe</AUni> -<AUni ws="qvm-x-ame">qipi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qipi.v</AUni> -<AUni ws="qvm-x-acl">*qipi.v</AUni> -<AUni ws="qvm-x-akh">*qipi.v</AUni> -<AUni ws="qvm-x-akl">*qipi.v</AUni> -<AUni ws="qvm-x-ame">*qipi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.195" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="734c866a-7026-476b-81fe-7608b56bd03a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qipi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eb79da94-2758-4f78-9eab-f3864fc9ad44" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="159f37ab-13d8-4b5c-b6b7-10a47156594b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qipi.v 
\entryTyp root 
\gENG to.load 
\gSPN cargar 
\e *qipi.v 
\c V2 
\mp +FinalI 
\ach guepi 
\akh qepi 
\acl guepi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl guepe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qepi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qepe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qipi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="8bd1885e-480e-418d-a822-6e53b3f35411" ownerguid="4fb34e46-4d89-43b1-972b-4522f4e5a0d5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="c0beff90-4e3c-408f-bf88-98f0b056ac3b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="8bd90136-cd3c-4c6b-8dbc-65db43cb50c8" ownerguid="0858ccbb-eb10-411c-b5b1-8c0a47b00f30"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">strut</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="13fb8d8b-7492-4e86-85a4-e68f68e757f9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="8bd9eb06-47e2-41b2-b289-376f8c29c005" ownerguid="b34aa77d-24ec-4ef0-8b35-03070bce69ea"> -<Form> -<AUni ws="qvm-x-ach">espíritu; espïritu</AUni> -<AUni ws="qvm-x-acl">espíritu; espïrito; espïritu</AUni> -<AUni ws="qvm-x-akh">espíritu; espïritu</AUni> -<AUni ws="qvm-x-akl">espíritu; espïrito; espïritu</AUni> -<AUni ws="qvm-x-ame">espíritu; espïritu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="8bdb78a3-9cc4-41fe-a75b-5d87c27ba0c0" ownerguid="0b0e8123-4c7c-4ac9-a3ff-720f47c9a5c9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">step-child</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="912d63d8-f24d-48ac-bccd-39bb873d891d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="8bdddfd1-60ae-4f1e-9a7e-2351665f2b41" ownerguid="630fa310-40fc-4015-8fb5-e9409d6cd676"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsay</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsay</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsay</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsay</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsay</Run> -</AStr> -</Form> -<Morph> -<objsur guid="feef9276-2243-43d4-b44a-5a725a0be56c" t="r" /> -</Morph> -<Msa> -<objsur guid="17c53e1a-f12c-41bc-9038-3134419c51bb" t="r" /> -</Msa> -<Sense> -<objsur guid="dc52902d-860a-4eee-86d4-7271f54d4006" t="r" /> -</Sense> -</rt> -<rt class="CmSemanticDomain" guid="8bdf4847-903b-4af6-9553-3cfab65de516" ownerguid="c0d903bf-6502-45dd-9dd8-cff7f022c696"> -<Abbreviation> -<AUni ws="en">8.1.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.559" /> -<DateModified val="2022-9-23 16:55:8.559" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to mathematics and arithmetic--the study of numbers.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Mathematics</AUni> -</Name> -<OcmCodes> -<Uni>803 Mathematics</Uni> -</OcmCodes> -<Questions> -<objsur guid="29b4d263-2836-4028-8512-613d9d3fb383" t="o" /> -<objsur guid="187653e3-e53f-4248-834a-54b01e88b014" t="o" /> -<objsur guid="ffe6d425-58ab-4415-96cd-790b867db9c1" t="o" /> -<objsur guid="e608f148-0dca-49e6-a6e2-9cc4e61b73fb" t="o" /> -<objsur guid="234f2055-3270-4b63-aef0-d27179de4f5d" t="o" /> -<objsur guid="304af057-605a-4410-b1f5-19e52941753e" t="o" /> -<objsur guid="e35d417f-f866-4637-aefe-b749b5effc72" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="8be0a228-60ee-409e-a5d8-215f4d21f168"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wagranya; wagranya:</AUni> -<AUni ws="qvm-x-acl">wagranya; wagranya:</AUni> -<AUni ws="qvm-x-akh">waqranya; waqranya:</AUni> -<AUni ws="qvm-x-akl">waqranya; waqranya:</AUni> -<AUni ws="qvm-x-ame">waqranya; waqranya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waqranya:</AUni> -<AUni ws="qvm-x-acl">*waqranya:</AUni> -<AUni ws="qvm-x-akh">*waqranya:</AUni> -<AUni ws="qvm-x-akl">*waqranya:</AUni> -<AUni ws="qvm-x-ame">*waqranya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.505" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7e4b6069-2137-49db-b79d-87a7b49aea24" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waqranya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="69982798-07f8-4305-a5a9-8ed903687d17" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="629d6a16-d316-4c86-bf5b-0ee4ff6bb6ed" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waqranya: 
\entryTyp root 
\gENG 
\gSPN 
\e *waqranya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach wagranya foreshortened 
\ach wagranya: 
\akh waqranya foreshortened 
\akh waqranya: 
\acl wagranya foreshortened 
\acl wagranya: 
\akl waqranya foreshortened 
\akl waqranya: 
\ame waqranya foreshortened 
\ame waqranya: 
\i MIC 2.10 ¡Gamcunata manami ricaytapis munätsu! ¡Caypita jucla wagranyay!</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8be23dea-0eac-488c-8598-2dae1e4e8500" ownerguid="de544ebd-9f94-4831-8887-944c3bbbc254"> -<ExampleWords> -<AUni ws="en">days of the week</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used to refer to all the days of the week together?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="8be39c56-0972-48b7-bc2c-726974fae70a" ownerguid="5ea4f6af-0125-4cdd-8a90-8a2d9089df5f"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="03243baa-32be-4d20-a0cc-c95a07802ce9" t="o" /> -<objsur guid="b4676380-6e5e-467f-82a4-3b41f85cc812" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="8be438ab-3f70-45a4-8a44-451f9af644c6" ownerguid="5a585789-2ef6-42c5-9c5a-34ff716059b7"> -<ExampleWords> -<AUni ws="en">drinking glass, window, mirror, glasses, lens</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What things are made out of glass?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8be4e5a1-d332-43b4-aa68-c05dcdf96cc2" ownerguid="30ec66cd-df0e-475b-a614-7a91c8210db7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">COV</AUni> -<AUni ws="es">CUB</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8fd0e0a2-1b9d-4036-af10-684955b4761f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8be4f966-23bb-4f8e-b584-1756c24f5a63" ownerguid="3710e019-46c9-44db-a0aa-9054d3126161"> -<ExampleWords> -<AUni ws="en">take drugs, be on drugs</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to taking drugs?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8be79fd9-52a8-4124-8184-0b3644dd833e" ownerguid="29a70926-986d-4a0b-b456-0581cdaff452"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="38c4f865-6e2e-42d0-8c87-bdf2e0745505" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">half</AUni> -<AUni ws="es">mitad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="42492e6e-8306-4a4a-af60-e63491d97114" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="8be94377-a3cc-4187-a6e2-51523e953503" ownerguid="d68911f6-6507-483a-b015-44726fdf868a"> -<Abbreviation> -<AUni ws="en">6.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.345" /> -<DateModified val="2022-9-23 16:55:8.345" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a worker.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Worker</AUni> -</Name> -<Questions> -<objsur guid="95ad06d0-7602-4c19-b971-18babfb5d8a6" t="o" /> -<objsur guid="c16228b7-a3e1-49eb-ba62-3a5b56068145" t="o" /> -<objsur guid="db1d8ed1-185f-43b2-9a00-686b2f8db897" t="o" /> -<objsur guid="d400f1af-84bd-449c-aa58-8e356cad2fc9" t="o" /> -<objsur guid="b39a3dc6-5610-4ef4-a098-84ce1aa4af20" t="o" /> -<objsur guid="743effe4-fdc1-4589-8d35-9f7b80d5f2e8" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b6ead5e6-dab5-4941-9017-d03452182709" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="8bed5a34-813d-4673-9dbd-2fd626c616e2"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">17</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="8bed80a4-b858-4970-8f44-5aad92d1f6c3" ownerguid="e5d556fc-50ac-43fb-a2dd-5d462c9a861e"> -<Form> -<AUni ws="qvm-x-ach">bolsitas</AUni> -<AUni ws="qvm-x-acl">bolsitas</AUni> -<AUni ws="qvm-x-akh">bolsitas</AUni> -<AUni ws="qvm-x-akl">bolsitas</AUni> -<AUni ws="qvm-x-ame">bolsitas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="8bee3444-588c-4cf0-a7a8-87548bbf7731" ownerguid="07d7c0c0-713d-42ec-add0-32197a4e5986"> -<Category> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</Category> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="1dd18297-5738-423b-a527-e0f1a8a4735b" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="fe50186f-0207-45f2-8ee6-a2565c391360" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="8bf2c4c8-0cee-4777-9404-eb14fee06811" ownerguid="e3a4cbcf-c434-41bb-91fa-eaf8b4fbf24e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">imprison</AUni> -<AUni ws="es">aprisionar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="acaf56f5-6c7a-498a-8905-165a5ceff7ea" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="8bf2e2c1-18ec-4591-81f4-5964530099d3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">marpu</AUni> -<AUni ws="qvm-x-acl">marpu; marpu; marpo</AUni> -<AUni ws="qvm-x-akh">marpu</AUni> -<AUni ws="qvm-x-akl">marpu; marpu; marpo</AUni> -<AUni ws="qvm-x-ame">marpu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*marpu.n</AUni> -<AUni ws="qvm-x-acl">*marpu.n</AUni> -<AUni ws="qvm-x-akh">*marpu.n</AUni> -<AUni ws="qvm-x-akl">*marpu.n</AUni> -<AUni ws="qvm-x-ame">*marpu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.346" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c5202325-56e5-41c7-b5d1-e7ff1b3e5d48" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*marpu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1b23d298-3aaa-41bd-8537-01fd73a8b505" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f47b07d9-eac9-402b-9988-5d450c8aac88" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *marpu.n 
\entryTyp root 
\gENG marsh 
\gSPN pantano 
\e *marpu.n 
\c N0 
\ach marpu 
\akh marpu 
\acl marpu / _# 
\acl marpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl marpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl marpu / _# 
\akl marpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl marpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame marpu 
\i PSA 40.2 Marpuman jaticashganog problëmaman jaticashga caycashgäpitami jorgamashga.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="8bf87e1b-057d-448d-a8ec-3e325b7b8435" ownerguid="f79585cc-02e5-4d3c-adf8-b215e91c87d4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="daeae38c-e9b2-4d12-b11b-606c9d6885c4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="8c02c3d0-0d71-4afe-931c-ad450e023271"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mane:ju</AUni> -<AUni ws="qvm-x-acl">mane:ju; mane:ju; mane:jo</AUni> -<AUni ws="qvm-x-akh">mane:ju</AUni> -<AUni ws="qvm-x-akl">mane:ju; mane:ju; mane:jo</AUni> -<AUni ws="qvm-x-ame">mane:ju</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+manejo</AUni> -<AUni ws="qvm-x-acl">+manejo</AUni> -<AUni ws="qvm-x-akh">+manejo</AUni> -<AUni ws="qvm-x-akl">+manejo</AUni> -<AUni ws="qvm-x-ame">+manejo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.315" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a2085196-3aed-4c8a-9a39-c7f1ac8ae71e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+manejo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e5836cb4-d000-4350-a33b-97817ab62ed5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a26dbfc4-a206-4ede-964e-56668ea3d8db" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +manejo 
\entryTyp root 
\gENG 
\gSPN 
\e +manejo 
\c N0 
\ach mane:ju 
\akh mane:ju 
\acl mane:ju / _# 
\acl mane:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mane:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mane:ju / _# 
\akl mane:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mane:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mane:ju</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="8c04fb80-bf77-4c04-9a4f-ab4988d5d6b4" ownerguid="3c703265-d19c-409a-aaa5-998654e5b1df"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pinch</AUni> -<AUni ws="es">pellizcar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e2fe312e-1b45-405d-84d8-06edf73d2e56" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="8c052f44-58fa-4e86-85ac-1cc53d21ddf2" ownerguid="dc11b1a0-ea79-4abd-812b-d0e3532d5013"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wan</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wan</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wan</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wan</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wan</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b441a287-959f-4845-be39-c8c9c2b00da1" t="r" /> -</Morph> -<Msa> -<objsur guid="19e28bb1-2f05-4e65-a0d6-47a005cd199a" t="r" /> -</Msa> -</rt> -<rt class="DsConstChart" guid="8c059cae-149c-4210-bd0d-08693151bd91" ownerguid="c3fe8c1e-ea5e-11de-9e45-0013722f8dec"> -<BasedOn> -<objsur guid="1b3624a5-d4f7-4190-9e19-d074a59aa870" t="r" /> -</BasedOn> -<DateCreated val="2022-10-11 16:57:33.472" /> -<DateModified val="2022-10-11 16:57:33.472" /> -<Template> -<objsur guid="c414012a-ea5e-11de-99fc-0013722f8dec" t="r" /> -</Template> -</rt> -<rt class="CmDomainQ" guid="8c0740c8-05a4-4822-900c-fcbc092cadb2" ownerguid="14e9c20c-6eb5-49a4-a03f-3be26a934500"> -<ExampleWords> -<AUni ws="en">oceanography</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the study of the ocean?</AUni> -</Question> -</rt> -<rt class="Text" guid="8c0862e6-4b58-44e3-a7e1-b73c29fa3492"> -<Contents> -<objsur guid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365" t="o" /> -</Contents> -<DateCreated val="2022-9-27 21:45:44.585" /> -<DateModified val="2022-10-19 21:42:7.22" /> -<Genres> -<objsur guid="c181fb60-ea5e-11de-9e08-0013722f8dec" t="r" /> -</Genres> -<IsTranslated val="False" /> -<Name> -<AUni ws="en">FLEx Analysis test simplified</AUni> -</Name> -</rt> -<rt class="LexEntry" guid="8c0b7413-3060-42cd-a005-318de8789f86"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">milpu</AUni> -<AUni ws="qvm-x-acl">milpu; milpo</AUni> -<AUni ws="qvm-x-akh">milpu</AUni> -<AUni ws="qvm-x-akl">milpu; milpo</AUni> -<AUni ws="qvm-x-ame">milpu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*millpu</AUni> -<AUni ws="qvm-x-acl">*millpu</AUni> -<AUni ws="qvm-x-akh">*millpu</AUni> -<AUni ws="qvm-x-akl">*millpu</AUni> -<AUni ws="qvm-x-ame">*millpu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.436" /> -<DateModified val="2022-10-10 21:19:47.691" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9d692411-05b2-4389-a28b-aaae01287a96" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*millpu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="653b20f6-31ee-4902-a7c1-f263e2f28fcf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d4dd2629-07f7-4e51-8412-a2bde54b77f2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *millpu 
\entryTyp root 
\gENG sink 
\gSPN 
\e *millpu 
\c V2 
\ach milpu 
\akh milpu 
\acl milpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl milpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl milpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl milpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame milpu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8c0f3155-e5b8-4d27-abfa-657f4ead3893" ownerguid="4a44ac87-5ad5-44de-8170-9fd88b056010"> -<ExampleWords> -<AUni ws="en">disrepair, derelict</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe a building that is not in good condition?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8c160bc1-ca98-4dcd-87fa-ed60043f8a1a" ownerguid="251531bb-0f71-44fc-af97-1beb4d74c834"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="34c92650-34b7-47a0-9d68-21ee96430534" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="8c2196f1-f919-4d61-bc24-8e0c7a39a151" ownerguid="5aebb3ae-fff0-43ed-bc73-1c487e131d03"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 28.26 Tsay argöllacuna pectoral rurincho car efodman lataranga.</Run> -</AStr> -</Example> -</rt> -<rt class="Segment" guid="8c22d0fe-6531-4bfc-b3ea-6f356e3899c4" ownerguid="4752c504-3fb6-4b2a-8865-767be12596b8"> -<Analyses> -<objsur guid="4e2ab412-6bb4-411d-ae7e-70062b3c7375" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="8c24e6fb-f9e2-4d80-9a97-55286e89e257" ownerguid="c837daba-ce1a-4069-8f54-8818faf920c9"> -<Form> -<AUni ws="qvm-x-ach">fiya</AUni> -<AUni ws="qvm-x-acl">fiya</AUni> -<AUni ws="qvm-x-akh">fiya</AUni> -<AUni ws="qvm-x-akl">fiya</AUni> -<AUni ws="qvm-x-ame">fiya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8c250335-a5c9-4f76-bea9-2044ae007bfc" ownerguid="5b5bcd42-09bb-4c2f-a2da-569cfa69b6ac"> -<ExampleWords> -<AUni ws="en">not pay attention, daydream, be miles away, your mind wanders, inattentive, pay very little attention, mind is elsewhere, ignore, take no notice, goes in one ear and out the other</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to not paying attention?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8c2694c4-7f8a-485d-9db5-66e476ef5791" ownerguid="e10b9449-08a3-4c13-aff2-31486749b62f"> -<ExampleWords> -<AUni ws="en">investigate, look into, inquire, hold an inquiry, conduct an inquiry, make inquiries, go into, probe, delve into, be under investigation, examine, obtain evidence</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to investigating a crime or accident?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8c27000b-2c0e-44fe-923f-164732a899fe" ownerguid="9f91cd53-8b9e-4d76-82e4-5ede39112322"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">We traveled <to> New York.; Our <destination> is New York.; John moved the wood <to> the back of the house.; John sent David <to> New York.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">to, destination</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate the Goal of movement?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8c27bf74-5086-4ece-a4a7-65dc2329ee6d" ownerguid="c7c3fcaf-0718-49bf-8b16-ba233835663b" /> -<rt class="CmSemanticDomain" guid="8c28c640-db5b-43e2-a1e6-b0e381962129" ownerguid="79b580ff-64a7-445b-abcb-b49b9093779c"> -<Abbreviation> -<AUni ws="en">6.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.446" /> -<DateModified val="2022-9-23 16:55:8.446" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to domesticated animals. Add extra domains for specific domesticated animals in your culture such as elephants in east Asia, camels in the Middle East, and llamas in South America.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Domesticated animal</AUni> -</Name> -<OcmCodes> -<Uni>231 Domesticated Animals</Uni> -</OcmCodes> -<Questions> -<objsur guid="8f2d5a70-c4ff-4a8d-bc87-c08a9904f2be" t="o" /> -<objsur guid="4e6675c6-4883-4fd8-b337-78f23800cf80" t="o" /> -<objsur guid="0b298228-4066-4f57-92d1-c9abb40093ae" t="o" /> -<objsur guid="fdccc69d-609b-4119-b850-83fe37f9e55e" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="32fc19fd-a04e-4b69-9442-f7d57348ec55" t="o" /> -<objsur guid="26b97047-edb1-44e9-8c7b-463de9cfbe78" t="o" /> -<objsur guid="c36131c3-b5e1-4aac-a7b5-7c9cfa1e8f74" t="o" /> -<objsur guid="c888c7ac-8cf4-49d2-a33e-20d19d84c47b" t="o" /> -<objsur guid="10a82711-8829-461a-b172-fc8fff3d555c" t="o" /> -<objsur guid="49c878dd-277f-4bc9-b8ad-9ba192709108" t="o" /> -<objsur guid="e545baab-581d-4af8-81f2-5a884e272349" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="8c2b8a60-5500-41b8-9c69-e89dca55a012" ownerguid="7a1667f6-38e8-47e9-885b-2857554b5e60"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chew</AUni> -<AUni ws="es">masticar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d2cb8764-33d4-457a-a0d4-8b353dcb6848" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="8c2d4caf-fbe7-4901-a284-cf3ef41bdce3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">Cristo; Cristu</AUni> -<AUni ws="qvm-x-acl">Cristo; Cristo; Cristu</AUni> -<AUni ws="qvm-x-akh">Cristo; Cristu</AUni> -<AUni ws="qvm-x-akl">Cristo; Cristo; Cristu</AUni> -<AUni ws="qvm-x-ame">Cristo; Cristu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+Cristo</AUni> -<AUni ws="qvm-x-acl">+Cristo</AUni> -<AUni ws="qvm-x-akh">+Cristo</AUni> -<AUni ws="qvm-x-akl">+Cristo</AUni> -<AUni ws="qvm-x-ame">+Cristo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.223" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6431cf4c-14ea-4065-a844-ae24455652a3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+Cristo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1ddbfa9c-17b7-455e-a365-15a0d196e10c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="700f6012-c6ef-46cc-a252-abccdf14622e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +Cristo 
\entryTyp root 
\gENG Christ 
\gSPN Cristo 
\e +Cristo 
\c BN 
\ach Cristo / _# 
\ach Cristu / ~_# 
\akh Cristo / _# 
\akh Cristu / ~_# 
\acl Cristo / _# 
\acl Cristo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl Cristu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl Cristo / _# 
\akl Cristo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl Cristu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame Cristo / _# 
\ame Cristu / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8c2d5579-0424-495f-a4f0-73b221dcde73" ownerguid="85912845-21b0-41eb-8b8c-1f5c3d53df08"> -<ExampleWords> -<AUni ws="en">get carried away, be full of enthusiasm</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to feeling very enthusiastic?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8c30a1c0-032a-4dc6-aba5-e3943448f9e5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">calentu:ra</AUni> -<AUni ws="qvm-x-acl">calentu:ra</AUni> -<AUni ws="qvm-x-akh">calentu:ra</AUni> -<AUni ws="qvm-x-akl">calentu:ra</AUni> -<AUni ws="qvm-x-ame">calentu:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+calentura</AUni> -<AUni ws="qvm-x-acl">+calentura</AUni> -<AUni ws="qvm-x-akh">+calentura</AUni> -<AUni ws="qvm-x-akl">+calentura</AUni> -<AUni ws="qvm-x-ame">+calentura</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.210" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1e325dba-52d7-4832-a1da-8aa53dae90df" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+calentura</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9dbc8d68-ea7b-4157-9650-d19e27bac867" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="781d34d6-dcd1-4353-b6a4-b4b13bd82bfc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +calentura 
\entryTyp root 
\gENG 
\gSPN 
\e +calentura 
\c N0 
\ach calentu:ra 
\akh calentu:ra 
\acl calentu:ra 
\akl calentu:ra 
\ame calentu:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8c33d2c7-3043-4943-945f-37a6b4e8bd7b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuncha</AUni> -<AUni ws="qvm-x-acl">cuncha</AUni> -<AUni ws="qvm-x-akh">kuncha</AUni> -<AUni ws="qvm-x-akl">kuncha</AUni> -<AUni ws="qvm-x-ame">kuncha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kuntra.v</AUni> -<AUni ws="qvm-x-acl">*kuntra.v</AUni> -<AUni ws="qvm-x-akh">*kuntra.v</AUni> -<AUni ws="qvm-x-akl">*kuntra.v</AUni> -<AUni ws="qvm-x-ame">*kuntra.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.13" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b1a33dfa-08c8-479c-88cd-a86e96e17afc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kuntra.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="79f41d56-eb0a-4afd-90bd-0ef1923b0124" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f3a111fe-b72e-4bec-91cf-3b133787e47f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kuntra.v 
\entryTyp root 
\gENG to.corral 
\gSPN corralar 
\e *kuntra.v 
\c V2 
\ach cuncha 
\akh kuncha 
\acl cuncha 
\akl kuncha 
\ame kuncha 
\mcc *kuntra.v / ~_ 1O 3</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="8c387e93-35ac-4f30-ac4f-a419c362fcd4" ownerguid="040e932b-518f-48b3-b5bd-4b707c2f6950"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="8c3afdce-2305-4cb6-8cb9-ea32c0e77e68"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cie:lu</AUni> -<AUni ws="qvm-x-acl">cie:lu; cie:lu; cie:lo</AUni> -<AUni ws="qvm-x-akh">cie:lu</AUni> -<AUni ws="qvm-x-akl">cie:lu; cie:lu; cie:lo</AUni> -<AUni ws="qvm-x-ame">cie:lu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cielo</AUni> -<AUni ws="qvm-x-acl">+cielo</AUni> -<AUni ws="qvm-x-akh">+cielo</AUni> -<AUni ws="qvm-x-akl">+cielo</AUni> -<AUni ws="qvm-x-ame">+cielo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.112" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="36041c98-0e06-4766-926b-1bc536fa383d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cielo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bda8f065-dd51-4d09-88d9-0f638a3b547a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d9003f53-b2a2-49a0-803b-bb098b407e4a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cielo 
\entryTyp root 
\gENG heaven 
\gSPN cielo 
\e +cielo 
\c N0 
\ach cie:lu 
\akh cie:lu 
\acl cie:lu / _# 
\acl cie:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cie:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cie:lu / _# 
\akl cie:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cie:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cie:lu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="8c3f9771-0dfc-4dce-b555-070fa5e8e1ba" ownerguid="8bcc6508-263d-4d0d-8eb7-25ec230a157e"> -<Form> -<AUni ws="qvm-x-ach">sharcu; sharca</AUni> -<AUni ws="qvm-x-acl">sharcu; sharco; sharca</AUni> -<AUni ws="qvm-x-akh">sharku; sharka</AUni> -<AUni ws="qvm-x-akl">sharku; sharko; sharka</AUni> -<AUni ws="qvm-x-ame">sharku; sharka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="8c40a0fa-0d67-4032-acfc-912038daf3d1"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Rut</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="8c41d2d1-6da6-4ab8-8b29-7e226192d64e" ownerguid="7fe69c4c-2603-4949-afca-f39c010ad24e"> -<Abbreviation> -<AUni ws="en">2.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to blood and bleeding.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Bleed, blood</AUni> -</Name> -<Questions> -<objsur guid="d3c36cb8-1031-48d7-9399-00aa3986fccf" t="o" /> -<objsur guid="b9107e2c-eff4-4bee-9d4e-5afc3f3a45cd" t="o" /> -<objsur guid="45e9af1c-d7fd-45e4-8d6a-a720b363a47f" t="o" /> -<objsur guid="879bf5f2-ba3f-4ff8-82f2-d4bedbdfbb37" t="o" /> -<objsur guid="2ec1e1ba-5873-4608-aa2d-13e9d4a59bfd" t="o" /> -<objsur guid="84470a1b-46cf-423b-83c7-364f836a322d" t="o" /> -<objsur guid="98703d1f-344d-46fd-9e7b-39d115a3ef89" t="o" /> -<objsur guid="fbe24331-e8c8-43de-8b17-d7c1fc6f6c8c" t="o" /> -<objsur guid="472d9caa-f8d1-4447-915a-6f45354cc85c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="8c4727c4-f8ce-4860-9d1d-f85225f7836d" ownerguid="c81ae194-358e-47e3-a873-8523e2a1f043"> -<Form> -<AUni ws="qvm-x-ach">varïlla</AUni> -<AUni ws="qvm-x-acl">varïlla</AUni> -<AUni ws="qvm-x-akh">varïlla</AUni> -<AUni ws="qvm-x-akl">varïlla</AUni> -<AUni ws="qvm-x-ame">varïlla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8c4e1bfe-9ef2-442c-9698-fd44044d4492" ownerguid="cb95189c-8c74-465b-af07-48e08dbf7c39"> -<ExampleWords> -<AUni ws="en">unemotional, dispassionate, unfeeling, insensitive, unsentimental</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words describe someone who does not show many emotions?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8c50a2a6-f059-46a2-accf-595a4db5dceb" ownerguid="31debfe3-91da-4588-b433-21b0e14a101b"> -<ExampleWords> -<AUni ws="en">sign, signpost, marker, line, speed bump, reflector</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words are used for the signs and markers on a road?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8c57a9e5-bca4-4deb-9fa0-eeebb10798cb" ownerguid="de5cd80e-66b4-46e5-b233-ff54fc051820"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="8c59455f-304b-4424-b296-b362aaebbc4c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">canca</AUni> -<AUni ws="qvm-x-acl">canca</AUni> -<AUni ws="qvm-x-akh">kanka</AUni> -<AUni ws="qvm-x-akl">kanka</AUni> -<AUni ws="qvm-x-ame">kanka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kanka.v</AUni> -<AUni ws="qvm-x-acl">*kanka.v</AUni> -<AUni ws="qvm-x-akh">*kanka.v</AUni> -<AUni ws="qvm-x-akl">*kanka.v</AUni> -<AUni ws="qvm-x-ame">*kanka.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.922" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="417f4e80-e241-4dc4-8f05-03d19be20f71" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kanka.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="45d7ff0f-9f70-4e0f-a2f8-a0d58f061e97" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6e089257-418e-4175-9774-aa2d6a0a32a3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kanka.v 
\entryTyp root 
\gENG barbeque 
\gSPN asar 
\e *kanka.v 
\c V1 
\ach canca 
\akh kanka 
\acl canca 
\akl kanka 
\ame kanka</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8c5e2b5d-e460-427b-b21a-7b7509016aa9" ownerguid="7c022751-a9f9-412d-8b27-8cd03b797e2d"> -<ExampleWords> -<AUni ws="en">just, only just, barely, be a near thing, be a close thing, by the skin of your teeth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that you did something, but almost didn't do it?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8c5e3582-e7bd-4461-9dad-60c70cebbf75"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gorpa</AUni> -<AUni ws="qvm-x-acl">gorpa</AUni> -<AUni ws="qvm-x-akh">qorpa</AUni> -<AUni ws="qvm-x-akl">qorpa</AUni> -<AUni ws="qvm-x-ame">qurpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qurpa</AUni> -<AUni ws="qvm-x-acl">*qurpa</AUni> -<AUni ws="qvm-x-akh">*qurpa</AUni> -<AUni ws="qvm-x-akl">*qurpa</AUni> -<AUni ws="qvm-x-ame">*qurpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.871" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="71c50345-190d-47d0-8c33-fd94cd9983c7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qurpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ca2ab56e-37ff-436a-a00b-ec3201f65357" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="04936083-571c-4938-b50a-ab16734e1d88" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qurpa 
\entryTyp root 
\gENG guest 
\gSPN huésped 
\e *qurpa 
\c N0 
\ach gorpa 
\akh qorpa 
\acl gorpa 
\akl qorpa 
\ame qurpa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8c5e4907-30dd-498f-aac1-030cb73b410b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">queja:da</AUni> -<AUni ws="qvm-x-acl">queja:da</AUni> -<AUni ws="qvm-x-akh">queja:da</AUni> -<AUni ws="qvm-x-akl">queja:da</AUni> -<AUni ws="qvm-x-ame">queja:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+quijada</AUni> -<AUni ws="qvm-x-acl">+quijada</AUni> -<AUni ws="qvm-x-akh">+quijada</AUni> -<AUni ws="qvm-x-akl">+quijada</AUni> -<AUni ws="qvm-x-ame">+quijada</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.839" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="abcb5d2f-053a-4cf5-a7d9-18c55592ba18" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+quijada</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c1c47fb1-a5d0-4b71-bef6-30be506f0dd3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="85ebafdc-f280-43b5-b448-14c5a32fdf19" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +quijada 
\entryTyp root 
\gENG bottom.jaw 
\gSPN quijada 
\e +quijada 
\c N0 
\ach queja:da 
\akh queja:da 
\acl queja:da 
\akl queja:da 
\ame queja:da</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8c638f4a-a5f8-4a32-8bc7-a772d11a4a8d" ownerguid="0539de86-f407-4b3d-b1b8-028822fb9f26"> -<ExampleWords> -<AUni ws="en">say it over and over, keep saying</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to saying something many times?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8c66dc03-32e6-4db3-9126-8fc808c973dd" ownerguid="785e7f1f-21ed-46b6-8599-c6ced4fd26d8"> -<ExampleWords> -<AUni ws="en">status, rank, position</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to a person's status?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8c67b3c8-1e62-4833-bf8d-4d428076acc8" ownerguid="c3b808d4-d94e-4c8e-b7b2-87b4f4a83198"> -<ExampleWords> -<AUni ws="en">cap and gown</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What special clothes are worn for graduation?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8c6d9ef8-4012-4518-80c5-88927d5df8bf" ownerguid="7381046a-85e1-4f7c-9510-742040c489ab"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="8c6ead37-8ac7-4d7e-9a58-5ed06ba7f859" ownerguid="1df33d84-5adc-4723-a742-6ce21f17390c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuna</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuna</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuna</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuna</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuna</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f236a19a-86ce-4599-91f5-fb178488e065" t="r" /> -</Morph> -<Msa> -<objsur guid="0851fe14-f99e-4e06-befc-3a76b044ea37" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="8c70c2ce-1b0c-4832-b025-2833afc56423"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tulpu</AUni> -<AUni ws="qvm-x-acl">tulpu; tulpu; tulpo</AUni> -<AUni ws="qvm-x-akh">tulpu</AUni> -<AUni ws="qvm-x-akl">tulpu; tulpu; tulpo</AUni> -<AUni ws="qvm-x-ame">tulpu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tullpu.n</AUni> -<AUni ws="qvm-x-acl">*tullpu.n</AUni> -<AUni ws="qvm-x-akh">*tullpu.n</AUni> -<AUni ws="qvm-x-akl">*tullpu.n</AUni> -<AUni ws="qvm-x-ame">*tullpu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.987" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ad02f95f-e24a-465f-9c40-282f272d688e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tullpu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d402a99b-296e-4f60-9438-de77cdd465e3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="296f6ad9-3715-4938-a99d-b7b9fd55413a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tullpu.n 
\entryTyp root 
\gENG 
\gSPN 
\e *tullpu.n 
\c N0 
\ach tulpu 
\akh tulpu 
\acl tulpu / _# 
\acl tulpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tulpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tulpu / _# 
\akl tulpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tulpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tulpu 
\i PRO 15.17 Wera wäcata micurpis chiquinacur cawananpa trucanga tulpulata upurpis cuyanacur y waylunacur cawaymi mas ali caycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="8c7136f2-2590-45c6-ad7d-fcc56466e614" ownerguid="08d3cb03-43fa-48d7-ad6b-05be6a953946"> -<Form> -<AUni ws="qvm-x-ach">pechëra</AUni> -<AUni ws="qvm-x-acl">pechëra</AUni> -<AUni ws="qvm-x-akh">pechëra</AUni> -<AUni ws="qvm-x-akl">pechëra</AUni> -<AUni ws="qvm-x-ame">pechëra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8c71c4af-2117-4304-b94f-e5fb61546dc9" ownerguid="00269021-e1c4-474d-9dba-341d296bdac7"> -<ExampleWords> -<AUni ws="en">series, lineup, queue</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a group of things in a series?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8c72a5a0-e7a5-41e6-b7ea-d8438e9bf211" ownerguid="13ebe38d-75ac-4b67-9f42-99178eb81cfc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hope</AUni> -<AUni ws="es">ojala</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="029d0078-1fe3-4d86-b21f-7a0d03af872c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="8c7382be-3bbb-4ec7-923a-38a343e9c4fb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fiyupa</AUni> -<AUni ws="qvm-x-acl">fiyupa</AUni> -<AUni ws="qvm-x-akh">fiyupa</AUni> -<AUni ws="qvm-x-akl">fiyupa</AUni> -<AUni ws="qvm-x-ame">fiyupa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+feo.r</AUni> -<AUni ws="qvm-x-acl">+feo.r</AUni> -<AUni ws="qvm-x-akh">+feo.r</AUni> -<AUni ws="qvm-x-akl">+feo.r</AUni> -<AUni ws="qvm-x-ame">+feo.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.546" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f3f36382-d934-42ae-b249-b63285c40de3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+feo.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2b29ba57-74ac-45ef-8f07-ca9a5d66a2b9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="752709be-3797-4fae-8cdf-d2c6e9f50406" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +feo.r 
\entryTyp root 
\gENG really 
\gSPN realmente 
\e +feo.r 
\c R0 
\ach fiyupa 
\akh fiyupa 
\acl fiyupa 
\akl fiyupa 
\ame fiyupa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="8c73be40-d628-4baa-9558-32e5ffdd37ec" ownerguid="a76b6e1f-4453-41f6-9237-7a5e2ff7612f"> -<Form> -<AUni ws="qvm-x-ach">desordin</AUni> -<AUni ws="qvm-x-acl">desordin; desordin; desorden</AUni> -<AUni ws="qvm-x-akh">desordin</AUni> -<AUni ws="qvm-x-akl">desordin; desordin; desorden</AUni> -<AUni ws="qvm-x-ame">desordin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="8c73f2c7-53ea-4372-b646-da9ca953f36d" ownerguid="20ff7b21-2af8-4d28-ac7c-78ddafcec7ba"> -<Form> -<AUni ws="qvm-x-ach">trampa</AUni> -<AUni ws="qvm-x-acl">trampa</AUni> -<AUni ws="qvm-x-akh">trampa</AUni> -<AUni ws="qvm-x-akl">trampa</AUni> -<AUni ws="qvm-x-ame">trampa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="8c75a366-e325-4687-b7b8-eac050246609" ownerguid="8b6da228-9ec4-4e13-b6d6-0e3bb8257f7c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8c767374-1e6e-421c-8495-e86fc3d29e60" ownerguid="67931f1c-9a0c-4d18-9762-e553c132256c"> -<ExampleWords> -<AUni ws="en">transact, transaction</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to financial transactions?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8c7863fd-3046-48a3-9102-3e1925dbe611" ownerguid="de6b15d3-6409-4998-b03d-903133f4ad70"> -<ExampleWords> -<AUni ws="en">choir, chorale, singing group, duet, trio, ensemble</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a group of people singing together?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8c78e1bc-e4c9-4b06-9e1a-05512c8f9f87" ownerguid="ed976bbe-4fb2-4365-b136-d2fce077a73f"> -<ExampleWords> -<AUni ws="en">back (adj), rear, posterior</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is on the back?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8c7c953d-3c76-483f-a8b0-3a12bab0668b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">urunguy</AUni> -<AUni ws="qvm-x-acl">urunguy</AUni> -<AUni ws="qvm-x-akh">urunguy</AUni> -<AUni ws="qvm-x-akl">urunguy</AUni> -<AUni ws="qvm-x-ame">urunguy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+orongoy</AUni> -<AUni ws="qvm-x-acl">+orongoy</AUni> -<AUni ws="qvm-x-akh">+orongoy</AUni> -<AUni ws="qvm-x-akl">+orongoy</AUni> -<AUni ws="qvm-x-ame">+orongoy</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.636" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9d6ec2d2-7588-4cd0-afe6-57293ba76227" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+orongoy</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="79b25689-73a7-4e5d-97a8-57f7cc46f100" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="45121eff-2c34-41f8-ac02-741de0dcdf04" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +orongoy 
\entryTyp root 
\gENG 
\gSPN aveja 
\e +orongoy 
\c N0 
\mp +FinalC 
\ach urunguy 
\akh urunguy 
\acl urunguy 
\akl urunguy 
\ame urunguy</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="8c7da1d1-d7d7-470c-b6a3-edefb0e9a4d2" ownerguid="1e9a0881-f715-4057-9af8-251cb8eec9da"> -<Abbreviation> -<AUni ws="en">3.5.1.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to shouting--to speak loudly.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Shout</AUni> -</Name> -<Questions> -<objsur guid="b8d88fb5-9c5c-409e-8f89-56469efe86a0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="8c7e8946-4159-442f-a1ed-fe561a389089" ownerguid="e5cbae69-deda-4875-a0da-edec1b462d60"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8c82297b-a524-437c-9e9c-5dc18b09267d" ownerguid="23b1a6b4-8d91-425c-b8c2-52d06b1c1d23"> -<ExampleWords> -<AUni ws="en">break through, breakout</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to breaking through a barrier?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8c898340-bd2a-4ab1-b47a-215456b47a5e" ownerguid="1b6b0c12-9ecd-45cb-bb0e-0dadb435eddf"> -<ExampleWords> -<AUni ws="en">generous, liberal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to using or giving a lot of something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8c8a726b-dda2-41ad-bbb6-cf41a952c636" ownerguid="39db0b37-53b3-4cb4-b539-23fadcc865e7"> -<Form> -<AUni ws="qvm-x-ach">becëra</AUni> -<AUni ws="qvm-x-acl">becëra</AUni> -<AUni ws="qvm-x-akh">becëra</AUni> -<AUni ws="qvm-x-akl">becëra</AUni> -<AUni ws="qvm-x-ame">becëra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8c8d1812-493e-47e2-a770-24b61a59c387" ownerguid="51c2e2e4-438c-414b-bd15-773b664dd289"> -<ExampleWords> -<AUni ws="en">merciful, compassionate, humane, lenient, long-suffering, sparing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who has mercy on another person?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8c9180c8-d2df-48c3-aa2c-da33986ce5a4" ownerguid="9cd50dc7-a476-410c-b06c-3978b1b21176"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="8c9196cf-be2a-4df9-8737-0b903ea07ccd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wimpi</AUni> -<AUni ws="qvm-x-acl">wimpi; wimpe</AUni> -<AUni ws="qvm-x-akh">wimpi</AUni> -<AUni ws="qvm-x-akl">wimpi; wimpe</AUni> -<AUni ws="qvm-x-ame">wimpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wimpi</AUni> -<AUni ws="qvm-x-acl">*wimpi</AUni> -<AUni ws="qvm-x-akh">*wimpi</AUni> -<AUni ws="qvm-x-akl">*wimpi</AUni> -<AUni ws="qvm-x-ame">*wimpi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.658" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="968784d5-d8e5-4b11-905b-f043b18547c5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wimpi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e17b0c5a-2b85-4ec8-ada6-c370564c33c6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="eda3d122-46a0-40df-8a40-dd2666bf5ae2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wimpi 
\entryTyp root 
\gENG bend 
\gSPN fleccionar 
\e *wimpi 
\c V1 
\mp +FinalI 
\ach wimpi 
\akh wimpi 
\acl wimpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wimpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wimpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wimpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wimpi 
\i 2SA 22.35 Bronci arcuta wimpitsinäpagpis paymi calpata goman.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8c92643c-307f-4416-a088-d1be838ac2b9" ownerguid="d030f0c7-31a3-47da-be35-46f1eba63ae9"> -<ExampleWords> -<AUni ws="en">adoring, affectionate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe someone who likes something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8c9429a0-ca6e-4771-9777-dee7839d3cf8" ownerguid="2c576c40-17ae-45a7-9ec8-6c16e02ab9c3"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">You come here <and> I'll go there.; You come here <or> I'll go there.; You come here <while> I go there.; You come here <then> I'll go there.; <If> you come here, I'll go there.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">and, or, while, then, if, because</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What conjunctions join two clauses?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8c961c92-b27e-4b7c-8cc4-fe3d3c1c634b" ownerguid="e29f56b2-9f1e-4998-b3d7-f79d03d23f8c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8c981051-1466-48e3-b715-ae9e85859ef8" ownerguid="3f4c559f-ab4f-411f-a23b-d2396c977005"> -<ExampleWords> -<AUni ws="en">visible, show, in view, in sight, seen, show up, perceptible, noticeable, observable, discernible, seeable, distinguishable, perceivable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that can be seen?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="8c9b1238-c746-4a13-a024-39c828637a84" ownerguid="e5ccc991-1171-408f-8862-e3f8d73d59f6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">warmi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">warmi; warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">warmi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">warmi; warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">warmi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ddf5b3ec-6ef7-4a2a-b160-365cb7d372df" t="r" /> -</Morph> -<Msa> -<objsur guid="e9ece695-28de-48a2-aff1-266bce7d2a60" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="8c9ccb80-3103-478c-a4ea-7128059a5e10" ownerguid="040e932b-518f-48b3-b5bd-4b707c2f6950"> -<Form> -<AUni ws="qvm-x-ach">humi</AUni> -<AUni ws="qvm-x-acl">humi; hume</AUni> -<AUni ws="qvm-x-akh">humi</AUni> -<AUni ws="qvm-x-akl">humi; hume</AUni> -<AUni ws="qvm-x-ame">humi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="8c9e08b9-a2d7-4d1f-8936-f65992e0a2c6" ownerguid="2fd00980-86ee-4708-8139-71706001cafa"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="8c9e559a-74ee-43c6-affd-f87eaa38a40d" ownerguid="6d5fdd15-7352-4395-85d4-6fa6fd1ecd3b"> -<Form> -<AUni ws="qvm-x-ach">pupu</AUni> -<AUni ws="qvm-x-acl">pupu; pupu; pupo</AUni> -<AUni ws="qvm-x-akh">pupu</AUni> -<AUni ws="qvm-x-akl">pupu; pupu; pupo</AUni> -<AUni ws="qvm-x-ame">pupu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8c9f539c-a2a5-4408-af33-8f8d44b99993"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lulu</AUni> -<AUni ws="qvm-x-acl">lulu; lulu; lulo</AUni> -<AUni ws="qvm-x-akh">lulu</AUni> -<AUni ws="qvm-x-akl">lulu; lulu; lulo</AUni> -<AUni ws="qvm-x-ame">lulu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llullu</AUni> -<AUni ws="qvm-x-acl">*llullu</AUni> -<AUni ws="qvm-x-akh">*llullu</AUni> -<AUni ws="qvm-x-akl">*llullu</AUni> -<AUni ws="qvm-x-ame">*llullu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.225" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="09e28f00-ffdf-4db6-b1eb-0ca1d26ff434" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llullu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fbbf2903-3dc1-4cdf-8dd4-3802951338bc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4c55ba34-1fac-4d0f-a5de-ce3d124995e2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llullu 
\entryTyp root 
\gENG tender 
\gSPN tierno 
\e *llullu 
\c N0 V1 
\ach lulu 
\akh lulu 
\acl lulu / _# 
\acl lulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lulu / _# 
\akl lulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lulu 
\mcc *llullu / ~_ AG</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8c9fdbea-7063-48ab-9e75-cfb05208ab9d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wishla</AUni> -<AUni ws="qvm-x-acl">wishla</AUni> -<AUni ws="qvm-x-akh">wishla</AUni> -<AUni ws="qvm-x-akl">wishla</AUni> -<AUni ws="qvm-x-ame">wishla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wishlla</AUni> -<AUni ws="qvm-x-acl">*wishlla</AUni> -<AUni ws="qvm-x-akh">*wishlla</AUni> -<AUni ws="qvm-x-akl">*wishlla</AUni> -<AUni ws="qvm-x-ame">*wishlla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.688" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fb36b5c1-91e6-4d34-8de2-fb84cc8d4a3c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wishlla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9a275f7a-6f75-4e85-afaf-f771c6015520" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="369fcb81-c7ee-42f2-9b3c-144dcf00496d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wishlla 
\entryTyp root 
\gENG wooden.spoon 
\gSPN cucharón 
\e *wishlla 
\c N0 
\ach wishla 
\akh wishla 
\acl wishla 
\akl wishla 
\ame wishla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="8ca2498d-e889-4de0-b9f8-8ce6e8b8ec53" ownerguid="472b38d5-6085-4720-b614-071ff85d56a3"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="8ca2e1f1-97b1-41e4-ba14-125f7e454db3" ownerguid="cc099d1f-80a6-4248-b366-077020a80df6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">prop</AUni> -<AUni ws="es">cuña</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="95f30fe9-eda1-4049-ba4d-ad80bf2703ba" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="8ca57018-af2e-4912-aa11-038bade59977" ownerguid="50370272-6516-45ea-b473-8a09c2ec26af"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="8ca6d92e-cbad-4fc6-8f70-db0595274013" ownerguid="5952f6aa-ac17-4f7d-a1fc-001c7f5c1bf4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">servant</AUni> -<AUni ws="es">serviente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1ec96eaa-a0cc-4d13-b796-22eb2e274ef4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmAgentEvaluation" guid="8caa11bb-cac4-4836-a081-1666245106b9" ownerguid="9303883a-ad5c-4ccf-97a5-4add391f8dcb" /> -<rt class="CmDomainQ" guid="8cabcf44-98f4-4a27-9f27-f7cc95305dc6" ownerguid="ccbbd16f-58c5-45c1-bfff-1fba64d9740e"> -<Question> -<AUni ws="en">(7) iterative: the action is repeated on one occasion; usually restricted to dynamic words, often further restricted to semelfactive words.</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8cacaa62-0724-4cb3-9c62-1f9d6373771e" ownerguid="748f375c-4619-4601-bf58-56f51e624dbc"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="8cb0145f-33b0-4899-ade3-ca6a98fd48f3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mamawa:chu</AUni> -<AUni ws="qvm-x-acl">mamawa:chu; mamawa:chu; mamawa:cho</AUni> -<AUni ws="qvm-x-akh">mamawa:chu</AUni> -<AUni ws="qvm-x-akl">mamawa:chu; mamawa:chu; mamawa:cho</AUni> -<AUni ws="qvm-x-ame">mamawa:chu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mamawa:tru</AUni> -<AUni ws="qvm-x-acl">*mamawa:tru</AUni> -<AUni ws="qvm-x-akh">*mamawa:tru</AUni> -<AUni ws="qvm-x-akl">*mamawa:tru</AUni> -<AUni ws="qvm-x-ame">*mamawa:tru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.295" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cace9de3-34c4-48fc-8be2-f8bb23cae51b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mamawa:tru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="85a83beb-f71a-4ed3-acae-95c801bd84e3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="279acfc5-580e-4524-8634-ed61c121e50e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mamawa:tru 
\entryTyp root 
\gENG 
\gSPN 
\e *mamawa:tru 
\c N0 
\ach mamawa:chu 
\akh mamawa:chu 
\acl mamawa:chu / _# 
\acl mamawa:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mamawa:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mamawa:chu / _# 
\akl mamawa:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mamawa:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mamawa:chu 
\i HOS 2.3 Yurishgantanog mamauächulatami cacharishag.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="8cb278d3-8acb-4303-97e0-b805f2220294" ownerguid="cc46b6aa-9772-4bb4-a7f1-33f38a9daf22"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="8cb4f0ee-bc5a-4032-97eb-cf1c93b896bd" ownerguid="c677b4bb-efe4-4099-afb2-75c6b35fd953"> -<Form> -<AUni ws="qvm-x-ach">mananira; mananirä</AUni> -<AUni ws="qvm-x-acl">mananira; mananirä</AUni> -<AUni ws="qvm-x-akh">mananira; mananirä</AUni> -<AUni ws="qvm-x-akl">mananira; mananirä</AUni> -<AUni ws="qvm-x-ame">mananira; mananirä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8cb6d833-7472-498e-bee6-eade3b53547b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ichicnayla</AUni> -<AUni ws="qvm-x-acl">ichicnayla</AUni> -<AUni ws="qvm-x-akh">ichiknayla</AUni> -<AUni ws="qvm-x-akl">ichiknayla</AUni> -<AUni ws="qvm-x-ame">ichiknayla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ichiknaylla</AUni> -<AUni ws="qvm-x-acl">*ichiknaylla</AUni> -<AUni ws="qvm-x-akh">*ichiknaylla</AUni> -<AUni ws="qvm-x-akl">*ichiknaylla</AUni> -<AUni ws="qvm-x-ame">*ichiknaylla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.782" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="83f6592c-17c6-4b51-963b-615c91df28de" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ichiknaylla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="66c32475-099f-4aef-acf1-f71f02820bd1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ded43b73-f389-41bc-ac4b-043d6edacd61" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ichiknaylla 
\entryTyp root 
\gENG small 
\gSPN chico 
\e *ichiknaylla 
\c N0 
\ach ichicnayla 
\akh ichiknayla 
\acl ichicnayla 
\akl ichiknayla 
\ame ichiknayla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8cb720fd-07b9-4766-b12f-938b786413fe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shulya</AUni> -<AUni ws="qvm-x-acl">shulya</AUni> -<AUni ws="qvm-x-akh">shulya</AUni> -<AUni ws="qvm-x-akl">shulya</AUni> -<AUni ws="qvm-x-ame">shulya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shullya.n</AUni> -<AUni ws="qvm-x-acl">*shullya.n</AUni> -<AUni ws="qvm-x-akh">*shullya.n</AUni> -<AUni ws="qvm-x-akl">*shullya.n</AUni> -<AUni ws="qvm-x-ame">*shullya.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.632" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="952e9876-3cc6-478c-b3ff-454f9cea2cb7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shullya.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="39c2d767-f01f-4f89-bfc7-b98f991c5af4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f73600aa-9ff5-4a20-87ff-b94d9c205de0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shullya.n 
\entryTyp root 
\gENG dew 
\gSPN rocía 
\e *shullya.n 
\c N0 
\ach shulya 
\akh shulya 
\acl shulya 
\akl shulya 
\ame shulya</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8cb8a608-a798-4aac-9da6-0266fea75421"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quisquita</AUni> -<AUni ws="qvm-x-acl">quisquita</AUni> -<AUni ws="qvm-x-akh">kiskita</AUni> -<AUni ws="qvm-x-akl">kiskita</AUni> -<AUni ws="qvm-x-ame">kiskita</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kiskita</AUni> -<AUni ws="qvm-x-acl">*kiskita</AUni> -<AUni ws="qvm-x-akh">*kiskita</AUni> -<AUni ws="qvm-x-akl">*kiskita</AUni> -<AUni ws="qvm-x-ame">*kiskita</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.993" /> -<DateModified val="2022-10-10 21:19:47.690" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b64eb28e-d0e0-4ff1-ba7f-1756544aa7dc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kiskita</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4d547cde-098e-4304-96ac-0bf2d187b987" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="75c5fdb0-35ec-40ce-bae2-5da2d4eee5d2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kiskita 
\entryTyp root 
\gENG dodge 
\gSPN 
\e *kiskita 
\c V1 
\ach quisquita 
\akh kiskita 
\acl quisquita 
\akl kiskita 
\ame kiskita 
\i 1SA 18.11 Saúlga elagpita Davidta lanzaycorgan wanutsiyta munashpan. Cada lanzaynin David quisquitaptinmi ishcay cuti lanzarpis mana chayatsergantsu.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8cb91f90-82dd-4d4d-a1ec-af0ce49e479b" ownerguid="fc193988-26ca-49e9-849a-b12456d98792"> -<ExampleWords> -<AUni ws="en">go crazy, go mad, go nuts, go round the bend</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to beginning to feel like you are crazy?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="8cbae597-6b34-4edc-a622-266171f790fe"> -<Form> -<Str> -<Run ws="en">mikU</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="8cbc1d52-76c5-43cd-b4a3-8a86a5a21088" ownerguid="1dc717b9-c5e8-4482-b076-22102da9d553"> -<ExampleWords> -<AUni ws="en">illegal, against the law, criminal, wrong</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe an action that is against the law?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8cc0ae34-0dcd-42e8-8f33-368d1992c26e" ownerguid="bb2a112f-af6f-4a54-bbf0-ba7b8289e58b"> -<ExampleWords> -<AUni ws="en">attractive, tempting, appealing, irresistible, enticing, alluring, seductive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that has qualities that make people interested in it?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8cc2b8b9-08a0-40d7-ae67-ff489944503b" ownerguid="dbcf751a-eec0-4096-ac3c-d3ae3b8ba7f1"> -<Form> -<AUni ws="qvm-x-ach">costa</AUni> -<AUni ws="qvm-x-acl">costa</AUni> -<AUni ws="qvm-x-akh">costa</AUni> -<AUni ws="qvm-x-akl">costa</AUni> -<AUni ws="qvm-x-ame">costa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="8cc414ee-7b0b-4d7d-8acb-9749d42749c9" ownerguid="807edb7d-7b8f-4063-a175-8bd5614b98ff"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="8cc7ea08-5c84-432a-96ad-344fc718615c" ownerguid="19e731d8-63d8-4491-83d8-5c35ddfd57e9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63e241cb-3471-43ad-8545-4d005f632d4d" t="r" /> -</Morph> -<Msa> -<objsur guid="d3b5839a-9f79-4b2d-96b3-8cee7717866b" t="r" /> -</Msa> -<Sense> -<objsur guid="e0657c44-7fed-4604-8196-6f3aa01eee03" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="8cce4003-fb3c-43a1-a1d6-9c91a5d67cd5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">camión; camion</AUni> -<AUni ws="qvm-x-acl">camión; camion</AUni> -<AUni ws="qvm-x-akh">camión; camion</AUni> -<AUni ws="qvm-x-akl">camión; camion</AUni> -<AUni ws="qvm-x-ame">camión; camion</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+camión</AUni> -<AUni ws="qvm-x-acl">+camión</AUni> -<AUni ws="qvm-x-akh">+camión</AUni> -<AUni ws="qvm-x-akl">+camión</AUni> -<AUni ws="qvm-x-ame">+camión</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.31" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="30a99ae8-a2f5-41a1-99cd-c5dd83eea2f9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+camión</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="24780e0b-20c2-48ec-9cf4-b2bbf19dc5ef" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f4459097-0cc6-4455-aaf7-726a9420e2ca" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +camión 
\entryTyp root 
\gENG truck 
\gSPN camión 
\e +camión 
\c N0 
\mp +FinalC 
\ach camión / _# 
\ach camion / ~_# 
\akh camión / _# 
\akh camion / ~_# 
\acl camión / _# 
\acl camion / ~_# 
\akl camión / _# 
\akl camion / ~_# 
\ame camión / _# 
\ame camion / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="8cd3d5a0-cbda-4ef0-a68c-ceb1f52a5612" ownerguid="f0d22468-8e75-46b4-8034-bd8a8c1c873e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="3c79b486-8b20-4231-a454-14779da278c6" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="4375d9f7-09eb-4ad1-8104-c3d74c93ce8f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="8cd59423-4e34-4faa-8046-c902a33fb211" ownerguid="741bda94-b886-4289-ba08-bb02b5a14d38"> -<Form> -<AUni ws="qvm-x-ach">cäsi; cäsi</AUni> -<AUni ws="qvm-x-acl">cäsi; cäsi; cäse</AUni> -<AUni ws="qvm-x-akh">cäsi; cäsi</AUni> -<AUni ws="qvm-x-akl">cäsi; cäsi; cäse</AUni> -<AUni ws="qvm-x-ame">cäsi; cäsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="8cd665e4-07e9-40f1-8728-9c60259d4153" ownerguid="5c3c3e1a-be20-489f-a454-daa2d6ca5bd7"> -<Form> -<AUni ws="qvm-x-ach">mama</AUni> -<AUni ws="qvm-x-acl">mama</AUni> -<AUni ws="qvm-x-akh">mama</AUni> -<AUni ws="qvm-x-akl">mama</AUni> -<AUni ws="qvm-x-ame">mama</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="8cdf0b84-1d00-4a94-a89d-fafc753a6f39" ownerguid="311b5dab-0433-4cba-9928-2d0b656c696d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="275de9ce-3fdc-4230-8731-90c205d29c0f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="8ce06964-1c8e-494b-a177-ad1c4f16ea97"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">banda</AUni> -<AUni ws="qvm-x-acl">banda</AUni> -<AUni ws="qvm-x-akh">banda</AUni> -<AUni ws="qvm-x-akl">banda</AUni> -<AUni ws="qvm-x-ame">banda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+banda</AUni> -<AUni ws="qvm-x-acl">+banda</AUni> -<AUni ws="qvm-x-akh">+banda</AUni> -<AUni ws="qvm-x-akl">+banda</AUni> -<AUni ws="qvm-x-ame">+banda</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.941" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b7646e5e-c847-4fb0-8d3a-79f3e36ec04a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+banda</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4810777e-4d08-424a-adcd-ab2b65ed9f37" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4116995c-cb92-4d40-b6f3-02f720095339" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +banda 
\entryTyp root 
\gENG 
\gSPN 
\e +banda 
\c N0 
\ach banda 
\akh banda 
\acl banda 
\akl banda 
\ame banda</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8ce189cc-c677-4c99-be1b-83dce2f15de6" ownerguid="c2630384-2f72-4a96-baed-3fff03383362"> -<ExampleWords> -<AUni ws="en">harvest, harvest time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the time of harvest?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8ce18f73-b325-4cde-8552-331be1335db4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ajincu; ajinco</AUni> -<AUni ws="qvm-x-acl">ajincu; ajincu; ajinco</AUni> -<AUni ws="qvm-x-akh">ajincu; ajinco</AUni> -<AUni ws="qvm-x-akl">ajincu; ajincu; ajinco</AUni> -<AUni ws="qvm-x-ame">ajincu; ajinco</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ajenjo</AUni> -<AUni ws="qvm-x-acl">+ajenjo</AUni> -<AUni ws="qvm-x-akh">+ajenjo</AUni> -<AUni ws="qvm-x-akl">+ajenjo</AUni> -<AUni ws="qvm-x-ame">+ajenjo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.679" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6dd2ee35-cc3e-41f4-874e-3bc5924bfe30" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ajenjo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="617e0162-e5ed-460d-b10c-9e5f1de893e7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="496e6b38-e08a-488c-aeb0-0f0a41c969ea" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ajenjo 
\entryTyp root 
\gENG 
\gSPN 
\e +ajenjo 
\c N0 
\ach ajincu / ~_# 
\ach ajinco / _# 
\akh ajincu / ~_# 
\akh ajinco / _# 
\acl ajincu / ~_# 
\acl ajincu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ajinco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ajincu / ~_# 
\akl ajincu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ajinco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ajincu / ~_# 
\ame ajinco / _# 
\i LAM 3.19 Pasaypa asgag ajincuta y venënuta upushganogmi nacaycä.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="8ce1a13b-a244-47ab-9092-a006cc8cd505" ownerguid="90b36b2c-0d77-4a8d-81be-bb538ed9a48c"> -<Form> -<AUni ws="qvm-x-ach">purun</AUni> -<AUni ws="qvm-x-acl">purun</AUni> -<AUni ws="qvm-x-akh">purun</AUni> -<AUni ws="qvm-x-akl">purun</AUni> -<AUni ws="qvm-x-ame">purun</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8ce2aa75-f18e-41c8-b8ed-753c5e71f60e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">upacshu</AUni> -<AUni ws="qvm-x-acl">upacshu; upacsho</AUni> -<AUni ws="qvm-x-akh">upakshu</AUni> -<AUni ws="qvm-x-akl">upakshu; upaksho</AUni> -<AUni ws="qvm-x-ame">upakshu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*upakshu</AUni> -<AUni ws="qvm-x-acl">*upakshu</AUni> -<AUni ws="qvm-x-akh">*upakshu</AUni> -<AUni ws="qvm-x-akl">*upakshu</AUni> -<AUni ws="qvm-x-ame">*upakshu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.241" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6a1e1f6d-2de6-45cb-8cdb-cdd629b1588a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*upakshu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8360c772-e083-4417-a390-1284fe552743" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="910ff139-b7a6-497f-ae8f-acc32bb836c3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *upakshu 
\entryTyp root 
\gENG 
\gSPN brotar 
\e *upakshu 
\c V1 
\ach upacshu 
\akh upakshu 
\acl upacshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl upacsho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl upakshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl upaksho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame upakshu 
\i Num 17.8 Tsaypita wara junag Tincuna Tolduman aywarmi Moisés tarergan Leví trïbu Aarónpa tucrun tsintsimushga caycagta, upacshuraycagta, waytaraycagta y wayuraycagta.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8ce4242c-f594-40de-be66-f9b18308b33e" ownerguid="0b0801a3-8a0c-40ea-bf41-07df80bd0d5f"> -<ExampleWords> -<AUni ws="en">drought</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe the air when there is no water in it?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8ce5f6d1-0f9d-4152-9e19-8393d6176651" ownerguid="f2d0f288-5bbe-4fa0-9e8f-ddcc74891701"> -<ExampleWords> -<AUni ws="en">beat their breast, tear their clothes, shave their head, put ashes on their head</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What do people do to show they are mourning?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="8ce6709f-f772-4638-a1aa-c132666f3563" ownerguid="2a62f8e4-7da3-4f37-bf44-e24033c99c00"> -<Abbreviation> -<AUni ws="en">3.4.2.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.143" /> -<DateModified val="2022-9-23 16:55:8.143" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling annoyed--to feel a little angry because someone keeps doing something you don't like.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Annoyed</AUni> -</Name> -<Questions> -<objsur guid="a55eb1bd-8667-4003-aaf9-d76bf1a66cca" t="o" /> -<objsur guid="20ed42d8-510f-4a32-89be-793ed315faf1" t="o" /> -<objsur guid="efda1ecd-8ea3-4d0d-b148-3d80b92d1220" t="o" /> -<objsur guid="0e8ffae3-f5cb-473b-a1aa-7f9b7a8c1b05" t="o" /> -<objsur guid="3374bf88-074f-49cc-88d5-d6dd6751d677" t="o" /> -<objsur guid="cbdb0a1a-6ed7-4b6d-8c02-0be0b72996c7" t="o" /> -<objsur guid="e684ee46-ed21-4806-9fd7-f7a9eea45c41" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="8ce6d206-09f1-4f5d-8c29-c674e837252d" ownerguid="104d40c9-2a4f-4696-ad99-5cf0eb86ab2e"> -<ExampleWords> -<AUni ws="en">recover, get better, make a slow/quick/complete recovery, get well, feel better, improve, be on the mend, respond to treatment, regain your health, gain strength, make good progress</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to recovering?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8ce952c6-9d1e-4ad6-b106-14d29df5bf5f" ownerguid="888e536c-c808-4be9-93af-d820bd655942"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoInflAffMsa" guid="8cec8820-59e6-4ad6-9550-d5b15cc772bb" ownerguid="f8346466-db96-4d4b-8a8d-2da65cfd7dc2"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="fda4c591-1349-4f9e-ab87-905ae2aa25e1" t="r" /> -</Slots> -</rt> -<rt class="LexSense" guid="8cecbda9-1504-4f68-aff2-8edc8c4ce24f" ownerguid="bb4a762f-0d53-4092-a621-f35a8c7cdf7a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stop</AUni> -<AUni ws="es">parar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="92f0ee73-09a3-46bb-8772-8195833c0d40" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="8cef2d5f-40bb-4ca8-ac67-e1acefe6aee9" ownerguid="17707401-b191-4d55-b924-9001ed074b53"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="5410af6e-6070-4e79-916e-b977b9ec9fff" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="8cf22568-7740-4959-b701-6fab09c3c1fa" ownerguid="48d2e013-81fd-40f7-89ed-548ff9f47492"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="5d872b5c-49e4-4ffd-bb8f-cd46f444e95e" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">deep</AUni> -<AUni ws="es">profundo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b68cba9a-8e5a-435a-bc0a-145b9b331742" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="8cf52999-8317-4bb7-acd7-e121aa870c3c" ownerguid="bc27752e-66ee-4878-8dc1-2185801096d4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">smash</AUni> -<AUni ws="es">machucar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1f24c267-6a42-42fa-969d-3a8cf9a1aff4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="8cf81714-6195-4e67-9374-0cf9db5c880c" ownerguid="aa30fd65-3da9-4370-8bad-c0a8d76f6b01"> -<Form> -<AUni ws="qvm-x-ach">lantu</AUni> -<AUni ws="qvm-x-acl">lantu; lantu; lanto</AUni> -<AUni ws="qvm-x-akh">lantu</AUni> -<AUni ws="qvm-x-akl">lantu; lantu; lanto</AUni> -<AUni ws="qvm-x-ame">lantu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="8cfbefdc-0e74-4d77-a718-d2cd4a8f38d0" ownerguid="678bbfc7-b8c7-4f8e-a54c-26fa4bc333ea"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8d000508-5b70-4cc8-87cc-69811b5502e5" ownerguid="cba6876c-5b48-42f4-ae0a-7fbe9bb971ef"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The sun was hot, so we got under the shadow of a tree.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">shadow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a shadow?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8d0049e6-e855-441c-9e4b-f139198cee71" ownerguid="ddab8953-1941-4143-a782-de0e4879e4c6"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="8d031d42-6f27-4bfe-a490-efd0b99fb62a" ownerguid="0272e84c-9487-40ea-ba92-47ccd2dfc9a6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="8d05725f-6340-4c92-84e7-53c17db1f2b7" ownerguid="6eaf4efd-cd63-477e-a0c4-16241a02b050" /> -<rt class="MoStemAllomorph" guid="8d05ade3-be50-41ef-af94-3ea7e4be06ce" ownerguid="b24d098c-b6f0-411a-909d-6566b23f2d91"> -<Form> -<AUni ws="qvm-x-ach">apropösitu</AUni> -<AUni ws="qvm-x-acl">apropösitu; apropösitu; apropösito</AUni> -<AUni ws="qvm-x-akh">apropösitu</AUni> -<AUni ws="qvm-x-akl">apropösitu; apropösitu; apropösito</AUni> -<AUni ws="qvm-x-ame">apropösitu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="8d084b5d-2249-4a0d-94ca-7fab556eea92" ownerguid="1383f82a-bf94-4fd3-97c6-2f922df73929"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="8d09e85b-a87b-4e70-879d-d7f0594119dc" ownerguid="5502544d-617e-4608-bd6b-80fc8ecf90bb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">drizzle</AUni> -<AUni ws="es">lloviznar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="875d833f-c5e3-4d7b-b055-e2cb9519d00f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="8d0a38b4-a86a-4131-adf2-0d041b396c2f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">capchuc</AUni> -<AUni ws="qvm-x-acl">capchuc</AUni> -<AUni ws="qvm-x-akh">kapchuk</AUni> -<AUni ws="qvm-x-akl">kapchuk</AUni> -<AUni ws="qvm-x-ame">kapchuk</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kapchuk</AUni> -<AUni ws="qvm-x-acl">*kapchuk</AUni> -<AUni ws="qvm-x-akh">*kapchuk</AUni> -<AUni ws="qvm-x-akl">*kapchuk</AUni> -<AUni ws="qvm-x-ame">*kapchuk</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.933" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7e069830-7f94-4680-a802-3370dc336d5a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kapchuk</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="697fe19a-329d-4091-a3b3-93da5dfdfb80" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="82843a89-15cf-4d25-898c-000b1cd02645" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kapchuk 
\entryTyp root 
\gENG 
\gSPN 
\e *kapchuk 
\c N0 
\mp +FinalC 
\ach capchuc 
\akh kapchuk 
\acl capchuc 
\akl kapchuk 
\ame kapchuk</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8d0beef8-e1a2-4dd8-8869-6b5aea7ad14b" ownerguid="da39c0d9-a5c1-4f10-bd3b-4e988abcab5a"> -<ExampleWords> -<AUni ws="en">salve your conscience, clear your conscience</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to trying to stop yourself from feeling sorry?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="8d129a4b-4a11-418c-8c78-f64b653ac98c" ownerguid="68120e2f-cb98-4774-8bac-c4f7fb3acf4a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2CH 26.10 Chacrapag aficionädu captinmi üva chacrancunacho y waquin chacrancunachöpis arunanpag mincaynincuna tsaytsica cargan.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="8d139617-5d3e-41d7-baee-03075c28c135" ownerguid="267e9636-39da-4a81-afeb-c468811f18e3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="8d13a888-2604-473b-a573-c03db670c4ee"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jupay</AUni> -<AUni ws="qvm-x-acl">jupay</AUni> -<AUni ws="qvm-x-akh">jupay</AUni> -<AUni ws="qvm-x-akl">jupay</AUni> -<AUni ws="qvm-x-ame">hupay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hupay</AUni> -<AUni ws="qvm-x-acl">*hupay</AUni> -<AUni ws="qvm-x-akh">*hupay</AUni> -<AUni ws="qvm-x-akl">*hupay</AUni> -<AUni ws="qvm-x-ame">*hupay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.761" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c937e0f0-bb5e-4bba-bb73-8472c7ac729a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hupay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c4fcd826-4d0a-43be-926b-9e7ab4897584" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="eab6bda3-ac17-4283-be61-5ced283c637b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hupay 
\entryTyp root 
\gENG evil.spirit 
\gSPN espíritu.malo 
\e *hupay 
\c N0 
\mp +FinalC 
\ach jupay 
\akh jupay 
\acl jupay 
\akl jupay 
\ame hupay 
\mcc *hupay / ~_ JUST2.C PRT2 
\mcc *hupay / ~_ JUST2.C ADV2</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="8d179aad-bdbf-4777-ac4b-4883ae7517d7" ownerguid="b4f8d2c6-f44f-4bf1-a0b7-5f65328545d3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63e241cb-3471-43ad-8545-4d005f632d4d" t="r" /> -</Morph> -<Msa> -<objsur guid="d3b5839a-9f79-4b2d-96b3-8cee7717866b" t="r" /> -</Msa> -</rt> -<rt class="PunctuationForm" guid="8d184473-0863-463e-b3ad-c183bb4801b1"> -<Form> -<Str> -<Run ws="en">verbe</Run> -</Str> -</Form> -</rt> -<rt class="LexEntry" guid="8d1ecc03-e143-48d5-8aa7-a5c835ded4dd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">castella:nu</AUni> -<AUni ws="qvm-x-acl">castella:nu; castella:nu; castella:no</AUni> -<AUni ws="qvm-x-akh">castella:nu</AUni> -<AUni ws="qvm-x-akl">castella:nu; castella:nu; castella:no</AUni> -<AUni ws="qvm-x-ame">castella:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+castellano</AUni> -<AUni ws="qvm-x-acl">+castellano</AUni> -<AUni ws="qvm-x-akh">+castellano</AUni> -<AUni ws="qvm-x-akl">+castellano</AUni> -<AUni ws="qvm-x-ame">+castellano</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.820" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fa6424fa-116f-4955-a5b0-c9c53a9af6ec" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+castellano</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0bbbe084-5b53-4e83-91b9-1d5d3bef8683" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="832dcade-4334-418e-b27e-51bfef569b97" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +castellano 
\entryTyp root 
\gENG 
\gSPN castellano 
\e +castellano 
\c N0 
\ach castella:nu 
\akh castella:nu 
\acl castella:nu / _# 
\acl castella:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl castella:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl castella:nu / _# 
\akl castella:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl castella:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame castella:nu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="8d21826f-f143-46e5-9de9-c38d9435d822" ownerguid="b518bbc3-0930-4e22-8f2f-a9e62ae79e89"> -<Form> -<AUni ws="qvm-x-ach">shica</AUni> -<AUni ws="qvm-x-acl">shica</AUni> -<AUni ws="qvm-x-akh">shika</AUni> -<AUni ws="qvm-x-akl">shika</AUni> -<AUni ws="qvm-x-ame">shika</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="8d252558-8c71-43f2-bef4-f55499ef704b" ownerguid="c6848b51-de16-4ee7-ac57-ecbfae85e37f"> -<Form> -<AUni ws="qvm-x-ach">böllu</AUni> -<AUni ws="qvm-x-acl">böllu; böllu; böllo</AUni> -<AUni ws="qvm-x-akh">böllu</AUni> -<AUni ws="qvm-x-akl">böllu; böllu; böllo</AUni> -<AUni ws="qvm-x-ame">böllu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="8d266c98-9db3-4d3e-b204-956aa848ffa5" ownerguid="cac1d7a8-7382-466e-ba4a-ba2bfe50f13b"> -<Abbreviation> -<AUni ws="en">3.5.9.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.184" /> -<DateModified val="2022-9-23 16:55:8.184" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to communication devices.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Communication devices</AUni> -</Name> -<OcmCodes> -<Uni>202 Transmission of Messages; 203 Dissemination of News and Information; 204 Press; 205 Mail; Postal System; 206 Telephone and Telegraph; 207 Radio and Television</Uni> -</OcmCodes> -<Questions> -<objsur guid="a116f6d2-06f8-46e0-9b29-1df4956e6291" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="8d269843-60a1-4092-b55c-ee43d6047352" ownerguid="7b513a02-c3ae-4243-9410-16854d911258"> -<ExampleWords> -<AUni ws="en">nickname, pet name</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a name your family or friends use for you that is not your real name?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8d2df995-3765-4766-bf0a-ae8484986d31" ownerguid="e3e71352-0500-4792-9401-ca1bb77c1833"> -<Form> -<AUni ws="qvm-x-ach">lläma</AUni> -<AUni ws="qvm-x-acl">lläma</AUni> -<AUni ws="qvm-x-akh">lläma</AUni> -<AUni ws="qvm-x-akl">lläma</AUni> -<AUni ws="qvm-x-ame">lläma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="8d2f364d-7d8a-4223-82a9-b4684985afed" ownerguid="c41c4db3-2844-4feb-bdfd-80a282c48fc8"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="8d300024-38b3-44c8-9161-ef497d6f8025" ownerguid="94fe65b8-1f0e-4c53-bf0e-a85014c0c4a8"> -<Form> -<AUni ws="qvm-x-ach">minütu</AUni> -<AUni ws="qvm-x-acl">minütu; minütu; minüto</AUni> -<AUni ws="qvm-x-akh">minütu</AUni> -<AUni ws="qvm-x-akl">minütu; minütu; minüto</AUni> -<AUni ws="qvm-x-ame">minütu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8d316e54-e6e9-4db9-9975-f6039564242c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jira</AUni> -<AUni ws="qvm-x-acl">jira</AUni> -<AUni ws="qvm-x-akh">jira</AUni> -<AUni ws="qvm-x-akl">jira</AUni> -<AUni ws="qvm-x-ame">hira</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hira</AUni> -<AUni ws="qvm-x-acl">*hira</AUni> -<AUni ws="qvm-x-akh">*hira</AUni> -<AUni ws="qvm-x-akl">*hira</AUni> -<AUni ws="qvm-x-ame">*hira</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.721" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="006a6c01-1ca3-4119-bea5-2e1fbdf8b1b3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hira</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d2efc36d-1244-40da-9cbe-8d78072f8c53" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5e73a269-10bf-4531-8556-d6a2ac76e3ed" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hira 
\entryTyp root 
\gENG sew 
\gSPN coser 
\e *hira 
\c V2 
\ach jira 
\akh jira 
\acl jira 
\akl jira 
\ame hira</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="8d31fe3a-1c4b-4a7e-a9f8-94e29079930b" ownerguid="ef04e630-fd6e-4db8-aed8-e744a4b9f144"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ku</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ku</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b952a19-fce6-44e5-ab25-c091ef27f843" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="8d32777e-0905-475f-ac36-f440c7f66b7c" ownerguid="f1e95399-7004-4d1a-9a3e-ffbadb5e2c42"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8d32e0d6-d8a7-4ec9-97e8-c81b7e22449d" ownerguid="f07f867d-808f-4750-92ca-859aea59e58c"> -<ExampleWords> -<AUni ws="en">inhabitant, resident, dweller, roommate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who lives in a house?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8d33c219-469e-4f69-9360-1e7c0c1dda91" ownerguid="67d10a00-fda8-4a3a-becd-f3ae3b00fcca"> -<ExampleWords> -<AUni ws="en">shock, come as a shock, horrify, stun, shake, knock someone for a loop, drop a bombshell, outrage, rock, scandalize, traumatize</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to causing someone to feel shocked?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8d3ea0c7-042f-4428-b514-d183a2fdd277" ownerguid="3caec22c-0922-42d7-95bf-bfae42f09ffb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.nail</AUni> -<AUni ws="es">clavar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bb1c1f9a-c0f7-4bef-a4b3-270f0c09607f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="8d3f390d-350e-432c-b8f0-2055981c2771" ownerguid="439cc8c7-7109-4d49-8091-7fff68338f16"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8d4284bd-ea19-458b-ab42-912932c77a5e" ownerguid="1f3519f8-d946-4857-a1fd-553d98dddf6d"> -<ExampleWords> -<AUni ws="en">derangement, idiocy, imbecility, insanity, lunacy, madness, senility, stupidity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to not being able to think well? </AUni> -</Question> -</rt> -<rt class="LexSense" guid="8d43ed14-e0c7-42da-bb78-f28b6c5c0020" ownerguid="41e903cf-de45-49e2-8faa-0ced648a61ea"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">slaughter</AUni> -<AUni ws="es">degollar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ed9e9280-bebd-4e76-b664-01fbd1aeb23d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="8d46441e-ca76-4d87-a1e9-94d18adfc21e"> -<Analyses> -<objsur guid="f6df56d5-05df-40f4-9c66-8042b406f68d" t="o" /> -</Analyses> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Nishqänöla</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="8d467815-2b4f-4b6b-9282-1eae44d60ff9" ownerguid="4f531ad5-b628-4cf8-88cc-72122c7cc725"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">warmi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">warmi; warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">warmi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">warmi; warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">warmi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ddf5b3ec-6ef7-4a2a-b160-365cb7d372df" t="r" /> -</Morph> -<Msa> -<objsur guid="e9ece695-28de-48a2-aff1-266bce7d2a60" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="8d47c9ec-80c4-4309-9848-c453dcd71182" ownerguid="63403699-07c1-43f3-a47c-069d6e4316e5"> -<Abbreviation> -<AUni ws="en">1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.963" /> -<DateModified val="2022-9-23 16:55:7.963" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words that relate to all living things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Living things</AUni> -</Name> -<Questions> -<objsur guid="10992cac-deab-4bad-8653-1ba922da7219" t="o" /> -<objsur guid="20e60320-b14b-4bc1-9d2d-6d28e1c79cfc" t="o" /> -<objsur guid="9f4030f6-b623-46b4-ba86-e2be5ced3c72" t="o" /> -<objsur guid="eb764e29-2b8c-41a4-9ea7-bbe6b0c024e0" t="o" /> -<objsur guid="d78d2ce1-e00a-4ea8-af12-4562ee37099e" t="o" /> -<objsur guid="6002756b-3cd0-4acb-a624-f4e11112ea32" t="o" /> -<objsur guid="b015c776-1aa4-4e2e-89be-365f61274eca" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="1c3c8af0-56b9-4617-862e-21f39b388606" t="r" /> -<objsur guid="50db27b5-89eb-4ffb-af82-566f51c8ec0b" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="06a89652-70e0-40ac-b929-ed42f011c9fc" t="o" /> -<objsur guid="1c512719-6ecb-48cb-980e-4ff20e8b5f9b" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="8d490e91-6383-45ea-a3d7-b9c950822f98" ownerguid="afc25fbb-9060-4af2-8225-3fddbab2227d"> -<Abbreviation> -<AUni ws="en">4.3.1.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.225" /> -<DateModified val="2022-9-23 16:55:8.225" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being impatient--if you are impatient, you get angry or do something bad when something bad happens to you for a long time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Impatient</AUni> -</Name> -<Questions> -<objsur guid="0dbaa96b-98f2-4c21-8ba3-f375366f103e" t="o" /> -<objsur guid="0727096c-356c-4d70-bbe6-4a822f886814" t="o" /> -<objsur guid="677a4c19-37ad-4f45-88f4-4619baa1ddf3" t="o" /> -<objsur guid="54deae2e-bb79-4731-81cd-bb1040bc6d0e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="8d49fccc-5b13-4c23-83c0-a1abb14bd8ab" ownerguid="863e5dc0-1b6b-486e-b6b4-2dbef9ed05ec"> -<Form> -<AUni ws="qvm-x-ach">yawa</AUni> -<AUni ws="qvm-x-acl">yawa</AUni> -<AUni ws="qvm-x-akh">yawa</AUni> -<AUni ws="qvm-x-akl">yawa</AUni> -<AUni ws="qvm-x-ame">yawa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8d4a5548-7a6a-48bd-b2a7-58d3fb0cf1cb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sobra</AUni> -<AUni ws="qvm-x-acl">sobra</AUni> -<AUni ws="qvm-x-akh">sobra</AUni> -<AUni ws="qvm-x-akl">sobra</AUni> -<AUni ws="qvm-x-ame">sobra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sobra</AUni> -<AUni ws="qvm-x-acl">+sobra</AUni> -<AUni ws="qvm-x-akh">+sobra</AUni> -<AUni ws="qvm-x-akl">+sobra</AUni> -<AUni ws="qvm-x-ame">+sobra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.713" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ed893a72-8c15-4628-8e65-138804484782" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sobra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5bd76e3e-773c-41dc-8751-13570ab7f845" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="65b5d0f8-5c1c-43b8-80a4-2cfec41b9952" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sobra 
\entryTyp root 
\gENG excess 
\gSPN sobra 
\e +sobra 
\c N0 
\ach sobra 
\akh sobra 
\acl sobra 
\akl sobra 
\ame sobra 
\mcc +sobra / ~_ HUMAN</Run> -</AStr> -</Custom> -</rt> -<rt class="CmAnnotationDefn" guid="8d4cbd80-0dca-4a83-8a1f-9db3aa4cff54" ownerguid="ea346c01-022f-4f34-b938-219ce7b65b73"> -<Abbreviation> -<AUni ws="en">Txt</AUni> -</Abbreviation> -<AllowsComment val="False" /> -<AllowsFeatureStructure val="False" /> -<AllowsInstanceOf val="False" /> -<BackColor val="0" /> -<CanCreateOrphan val="False" /> -<CopyCutPastable val="False" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">Annotations applied to larger parts of a text, such as a sentence or clause. This is a grouping category and should not be instantiated.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<InstanceOfSignature val="0" /> -<IsProtected val="True" /> -<MaxDupOccur val="0" /> -<Multi val="False" /> -<Name> -<AUni ws="en">Text</AUni> -</Name> -<PromptUser val="False" /> -<Severity val="0" /> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="20cf6c1c-9389-4380-91f5-dfa057003d51" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -<UserCanCreate val="False" /> -<ZeroWidth val="False" /> -</rt> -<rt class="CmDomainQ" guid="8d52ddbe-1d34-4aac-9382-7a974c1e654f" ownerguid="0aae1951-4d5b-45a0-853c-1839764c9862"> -<ExampleWords> -<AUni ws="en">shortness, how short</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to how short something is?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8d563b55-6dd7-4552-82aa-fd5c1b229317" ownerguid="50eb32a2-6dbb-4b7c-b370-aacdcfeaf5fc"> -<ExampleWords> -<AUni ws="en">bask in, lap something up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to enjoying being praised?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8d59263b-19c2-4281-bf59-8448128f2326"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">musya</AUni> -<AUni ws="qvm-x-acl">musya</AUni> -<AUni ws="qvm-x-akh">musya</AUni> -<AUni ws="qvm-x-akl">musya</AUni> -<AUni ws="qvm-x-ame">musya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*musya</AUni> -<AUni ws="qvm-x-acl">*musya</AUni> -<AUni ws="qvm-x-akh">*musya</AUni> -<AUni ws="qvm-x-akl">*musya</AUni> -<AUni ws="qvm-x-ame">*musya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.517" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="99865378-37b4-4e46-8367-7b89116652f9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*musya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2fabf27e-a3b4-49d4-a178-ac4e862de439" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dc180f8c-f3aa-4292-b5ef-96866c012e6d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *musya 
\entryTyp root 
\gENG know 
\gSPN saber 
\e *musya 
\c V2 
\ach musya 
\akh musya 
\acl musya 
\akl musya 
\ame musya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="8d5c28b8-91be-40b0-b6c2-4d5adbb495a3" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<Abbreviation> -<AUni ws="en">3.4.2.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.141" /> -<DateModified val="2022-9-23 16:55:8.141" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling disgusted--to dislike something so much that you feel sick.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25Q Abhor</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Disgusted</AUni> -</Name> -<Questions> -<objsur guid="a6f364b2-8b30-469f-bbe1-b945584f2f6a" t="o" /> -<objsur guid="ba1b3e35-ed76-4189-be60-e0077f474945" t="o" /> -<objsur guid="c10668ac-02e8-491f-8486-aead93af3041" t="o" /> -<objsur guid="36a0ae18-6a46-4cb8-8c84-a2f7273c7301" t="o" /> -<objsur guid="45c26417-3c0d-4cf2-8693-dda2e4c5aa17" t="o" /> -<objsur guid="c4aceb81-590f-473c-919f-9b6f6dee5616" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="8d5d4b53-c930-4627-9279-70ddf8e3ae01" ownerguid="92ef1096-bae2-4bc5-b4b8-c16f429c4867"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The hospital <is affiliated with> the university.; Our dictionary project <is affiliated with> the university.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">be affiliated with, affiliation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to one organization belonging to another organization?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8d5db195-4be8-4cfd-b790-80a6fbf09825" ownerguid="ad7c037b-9d49-405a-92bf-b5705a60d818"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">teat</AUni> -<AUni ws="es">teta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1dc0be0f-f56f-4e52-8646-d89d6133f86b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8d5e7a33-e08c-44a6-8b98-294d25a15458" ownerguid="f56a2511-10cc-4829-940d-49051429bfba"> -<ExampleWords> -<AUni ws="en">thick, stiff, creamy, smooth, lumpy, viscid, viscous, paste, concentrated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a liquid that is almost solid?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8d5fe861-d5f3-46b4-8809-202af4156e8a" ownerguid="6278ec36-0756-486f-932d-d63396124629"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stingy</AUni> -<AUni ws="es">mezquino</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="be438404-cc57-4f85-8d36-80d6f0c969d9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8d60ee0c-dccb-4600-9559-586ba2f0144d" ownerguid="a3f1d702-8ca1-457a-a569-eb6fdf696bbe"> -<ExampleWords> -<AUni ws="en">fall into disrepute</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to when people start to disapprove of something?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="8d611c9e-1c00-4b74-8551-7d0b24b61d69"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">qechumashqa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="FsClosedValue" guid="8d622cfd-14d7-44f4-a3e0-4e1dd04f5aaf" ownerguid="4c93f720-536c-4427-a312-f3e7facb5c25"> -<Feature> -<objsur guid="e13ebd7a-824d-4405-8c23-e5a30f3d53a6" t="r" /> -</Feature> -<RefNumber val="0" /> -<Value> -<objsur guid="7fd2e9b4-402c-427c-a3e3-bbf386d652da" t="r" /> -</Value> -<ValueState val="0" /> -</rt> -<rt class="LexSense" guid="8d6dd272-7552-4042-b9db-29e976a77e20" ownerguid="984c3043-fc01-4573-a283-dde53ad78009"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">calf</AUni> -<AUni ws="es">becerro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8498a627-d01a-402e-a573-7c0256c4a817" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="8d70a0d6-ad26-4db2-a546-311fa3b43eaf"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">mayarqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="8d7194e2-6d63-4c0c-aafb-5b0999c00ff0" ownerguid="85329c54-de67-4ec9-8ba8-7bd4c66a5c96"> -<Form> -<AUni ws="qvm-x-ach">gallau</AUni> -<AUni ws="qvm-x-acl">gallau; gallau; gallao</AUni> -<AUni ws="qvm-x-akh">qallaw</AUni> -<AUni ws="qvm-x-akl">qallaw; qallaw; qallao</AUni> -<AUni ws="qvm-x-ame">qallaw</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8d7316b5-866c-4d6a-b4a3-9b34f8747571" ownerguid="779e4547-dee6-4780-a180-30a740f9574c"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">His promise <is the basis of> my hope.; His work <formed the basis of> all subsequent developments.; He was convicted <on the basis of> circumstantial evidence.; <In view of> the current situation we should think about moving.; <By virtue of> the authority conferred on me I pronounce you man and wife.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">basis, foundation, on the basis of, in view of, by virtue of, be the basis of, form the basis of, on what basis? What do you base your...?</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that one thing is the basis for another?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8d7322c0-fd51-4dec-aa0e-3ee53f0a2741" ownerguid="8a838205-6ecf-497c-9a69-2fbfec0ffed9" /> -<rt class="CmDomainQ" guid="8d73ac11-4364-4393-b6e9-15c55ef18a80" ownerguid="86615235-8cdd-413d-b722-11bc5a4653d6"> -<ExampleWords> -<AUni ws="en">end, finish, conclusion, consummation, culmination, denouement, expiration, finale, homestretch, last, outcome, termination, terminus, terminal, conclusion, time is up, that is all</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the end of something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8d73bfdb-2389-4df7-a33a-02974b8ef46e" ownerguid="7c6cad26-79c3-403a-a3aa-59babdfcd46f"> -<ExampleWords> -<AUni ws="en">bedridden, decline, failing, life is ebbing, sinking (fast), seriously ill, critically ill, terminally ill, be fatal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to being very sick?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8d74f29e-bcca-4d5f-a13e-6e00bbb345d1" ownerguid="2051456f-2dc4-4ed8-b481-0c262253089f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8d81d959-5e3b-423b-ad34-b1a775455055" ownerguid="536a2d3e-2303-43bc-bf53-379131eb5730"> -<ExampleWords> -<AUni ws="en">orange, apricot, cadmium, carrot top, carroty, ocher, peach, salmon, tangerine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What are the shades of orange?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8d83d192-9939-4f77-bdd5-ebbb34983596" ownerguid="5c35c2f8-d17c-42a3-aa12-a4c29b6603e8"> -<ExampleWords> -<AUni ws="en">bend, bow, flex, curve, put a kink in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to bending something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8d84d7bb-d81a-4989-8e40-453a59d0c0eb" ownerguid="e08e252a-9227-42e4-bcb8-b803d25071b6"> -<ExampleWords> -<AUni ws="en">embarrassment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of embarrassment?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="8d8a7656-8f8e-467e-b72e-535db6a17c6a" ownerguid="73499b8b-76fc-4121-8bfa-1bdebe537259"> -<Abbreviation> -<AUni ws="en">1.6.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.994" /> -<DateModified val="2022-9-23 16:55:7.994" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for amphibians (phylum Chordata, class Amphibia).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Amphibian</AUni> -</Name> -<OcmCodes> -<Uni>136g Amphibian, worm</Uni> -</OcmCodes> -<Questions> -<objsur guid="52d84004-8ef0-4c29-8b3d-49fc298597f7" t="o" /> -<objsur guid="e4d027d1-9a05-4ae5-b473-a528829f763d" t="o" /> -<objsur guid="de76daf0-585b-42b4-9af5-f1d2070faf59" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="8d8a80d6-97fc-44df-a194-a1e6ad59cf58" ownerguid="9a7604b4-d42f-44b7-9aef-47847dc93f0b"> -<ExampleWords> -<AUni ws="en">adversity, hardship, hell, injury, tormentor, torturer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something that causes someone to suffer?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="8d9ba132-fa95-4759-93ea-e4e60f9f662c" ownerguid="0a66230c-6cd1-4080-a647-2aa8dd2897df"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 28.7 Tsaynogpis efodpa ishcan cuchunpag tiranticuna canga umrunman shawananpag.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="8da0f92a-148f-42c2-a860-7ef0d899db60" ownerguid="dbf1d8b9-e72f-47ae-a8f8-668abee90062"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="8da144b6-16d7-4f3f-8a8d-e5ea9d69d7b9" ownerguid="3c6cd50b-217f-4893-9554-bbe54ba6f883"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 24.8 Tamyarga pasaypa shatyaylami ushman.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="8da190db-383a-43d3-aed7-ecd832665c19"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cincel; cincil</AUni> -<AUni ws="qvm-x-acl">cincel; cincil; cincel</AUni> -<AUni ws="qvm-x-akh">cincel; cincil</AUni> -<AUni ws="qvm-x-akl">cincel; cincil; cincel</AUni> -<AUni ws="qvm-x-ame">cincel; cincil</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cincel</AUni> -<AUni ws="qvm-x-acl">+cincel</AUni> -<AUni ws="qvm-x-akh">+cincel</AUni> -<AUni ws="qvm-x-akl">+cincel</AUni> -<AUni ws="qvm-x-ame">+cincel</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.122" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="da421f47-13c2-4959-90ca-3011adf5aae9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cincel</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8176bba9-37a7-4011-b74c-46e78f2d6067" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fd47cc0e-0ab1-45a9-9234-7467cefc71c8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cincel 
\entryTyp root 
\gENG anvil 
\gSPN 
\e +cincel 
\c N0 
\mp +FinalC 
\ach cincel / _# 
\ach cincil / ~_# 
\akh cincel / _# 
\akh cincil / ~_# 
\acl cincel / _# 
\acl cincil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cincel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cincel / _# 
\akl cincil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cincel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame cincel / _# 
\ame cincil / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="8da1da33-2187-499d-bea1-7b62bc2c7ef2" ownerguid="724a3e70-64f3-4124-a6ff-9f2cb0e69f1b"> -<Form> -<AUni ws="qvm-x-ach">respuesta</AUni> -<AUni ws="qvm-x-acl">respuesta</AUni> -<AUni ws="qvm-x-akh">respuesta</AUni> -<AUni ws="qvm-x-akl">respuesta</AUni> -<AUni ws="qvm-x-ame">respuesta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8da299ce-1c69-47f8-aa99-dac4a6ebf1ed"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rinri</AUni> -<AUni ws="qvm-x-acl">rinri; rinri; rinre</AUni> -<AUni ws="qvm-x-akh">rinri</AUni> -<AUni ws="qvm-x-akl">rinri; rinri; rinre</AUni> -<AUni ws="qvm-x-ame">rinri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rinri</AUni> -<AUni ws="qvm-x-acl">*rinri</AUni> -<AUni ws="qvm-x-akh">*rinri</AUni> -<AUni ws="qvm-x-akl">*rinri</AUni> -<AUni ws="qvm-x-ame">*rinri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.366" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3087d9bb-ddf6-4c72-a72f-3ed75fb47d5f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rinri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c298c3e3-a2a2-4575-bb9a-70a039837cea" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c0c6e239-2718-49e2-9e0e-4bd1a84dc9bb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rinri 
\entryTyp root 
\gENG ear 
\gSPN oreja 
\e *rinri 
\c N0 
\mp +FinalI 
\ach rinri 
\akh rinri 
\acl rinri / _# 
\acl rinri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl rinre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rinri / _# 
\akl rinri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl rinre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame rinri</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="8da440ab-c388-431c-b6c4-ccd2c04f1290" ownerguid="ea8efa6f-3058-4008-9cc2-afa4bb11ab53"> -<Form> -<AUni ws="qvm-x-ach">nushi</AUni> -<AUni ws="qvm-x-acl">nushi; nushe</AUni> -<AUni ws="qvm-x-akh">nushi</AUni> -<AUni ws="qvm-x-akl">nushi; nushe</AUni> -<AUni ws="qvm-x-ame">nushi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8da44b52-71a4-47ec-b14d-684b3010d709" ownerguid="a42db5b4-6317-4d3f-beff-cb92dbaca914"> -<ExampleWords> -<AUni ws="en">ignorant, uneducated, unlearned</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe someone who is learning?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8da5f193-899f-4e5c-a6ee-280d26d4d9d3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">columna</AUni> -<AUni ws="qvm-x-acl">columna</AUni> -<AUni ws="qvm-x-akh">columna</AUni> -<AUni ws="qvm-x-akl">columna</AUni> -<AUni ws="qvm-x-ame">columna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+columna</AUni> -<AUni ws="qvm-x-acl">+columna</AUni> -<AUni ws="qvm-x-akh">+columna</AUni> -<AUni ws="qvm-x-akl">+columna</AUni> -<AUni ws="qvm-x-ame">+columna</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.142" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="99dec0f3-4adb-4b70-a7b2-ff3b3234edb0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+columna</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0cc19979-7f88-496b-be41-6380e1bfc59e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="55b6dc4b-ea90-4ea1-befa-1def21033941" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +columna 
\entryTyp root 
\gENG 
\gSPN 
\e +columna 
\c N0 
\ach columna 
\akh columna 
\acl columna 
\akl columna 
\ame columna</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="8da66a50-5682-4a46-8b39-53815d135c22" ownerguid="592a9a00-7d75-4b54-aeda-fdbd96db29ee"> -<Form> -<AUni ws="qvm-x-ach">lula</AUni> -<AUni ws="qvm-x-acl">lula</AUni> -<AUni ws="qvm-x-akh">lula</AUni> -<AUni ws="qvm-x-akl">lula</AUni> -<AUni ws="qvm-x-ame">lula</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="8daa5d27-4f4b-48ea-b3da-e88814ad9672" ownerguid="555ce911-c73f-440b-9d70-144df6b1491e"> -<Form> -<AUni ws="qvm-x-ach">suncha</AUni> -<AUni ws="qvm-x-acl">suncha</AUni> -<AUni ws="qvm-x-akh">suncha</AUni> -<AUni ws="qvm-x-akl">suncha</AUni> -<AUni ws="qvm-x-ame">suncha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8dadf36f-cf98-4a46-b26b-98a3882b7a13"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuchus</AUni> -<AUni ws="qvm-x-acl">cuchus</AUni> -<AUni ws="qvm-x-akh">kuchus</AUni> -<AUni ws="qvm-x-akl">kuchus</AUni> -<AUni ws="qvm-x-ame">kuchus</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kutrus</AUni> -<AUni ws="qvm-x-acl">*kutrus</AUni> -<AUni ws="qvm-x-akh">*kutrus</AUni> -<AUni ws="qvm-x-akl">*kutrus</AUni> -<AUni ws="qvm-x-ame">*kutrus</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.33" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="31e693b3-394b-491a-a44c-515084592124" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kutrus</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a5812ea3-9546-4771-9b15-9314ccab057e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7d9e6561-46ea-4a0e-af3e-41e094b363ae" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kutrus 
\entryTyp root 
\gENG elbow 
\gSPN codo 
\e *kutrus 
\c N0 
\mp +FinalC 
\ach cuchus 
\akh kuchus 
\acl cuchus 
\akl kuchus 
\ame kuchus</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="8daf31a5-8006-4542-a424-f92f47b4b743" ownerguid="c0060a0d-c2c3-4cf1-9c4e-f796434a05dc"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8db0d570-2928-4376-bd13-f3dee953750c" ownerguid="31ccb9e3-d434-4430-ac84-486cc5a1c53d"> -<ExampleWords> -<AUni ws="en">be impossible, too hard, can't do it, not doable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that a task cannot be done?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8db13d6c-95f4-4c4a-961c-72c48428a594" ownerguid="a1fc2a49-f105-4f42-9af4-4c7af7084072"> -<Form> -<AUni ws="qvm-x-ach">mushug</AUni> -<AUni ws="qvm-x-acl">mushog</AUni> -<AUni ws="qvm-x-akh">mushuq</AUni> -<AUni ws="qvm-x-akl">mushoq</AUni> -<AUni ws="qvm-x-ame">mushuq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="8db17eef-6c42-4ba0-9f07-a3b0e7c8f1e1" ownerguid="0296465a-25de-4af6-a122-376956b4b452"> -<Abbreviation> -<AUni ws="en">9.2.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for pronouns used in relative clauses.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>92F Relative Reference</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Relative pronouns</AUni> -</Name> -<Questions> -<objsur guid="213abc0b-c9b5-4baf-8ad9-910f3580eee3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="8db3836a-d4fa-4808-bf84-e4636aead411" ownerguid="be2f2785-7219-4a35-b8d3-aa56b9b78514"> -<ExampleWords> -<AUni ws="en">meet, come together, unite, crash, collide</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to more than one thing meeting?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="8db46b46-2795-45ce-85b4-f6ff4b9c932d" ownerguid="2129b102-5acc-4824-ad82-f0663cced42a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="8db5e77f-5e47-4974-912c-842817acf29a" ownerguid="e7119442-3063-422a-a03e-d02e570ccd0f"> -<ExampleWords> -<AUni ws="en">not have, haven't go, without, be missing, devoid of, empty-handed, wanting</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to not having something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8db6a163-c86c-4474-a0be-933b12a87fb4" ownerguid="c61d7145-de24-4455-87d9-718a27d74d09"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8db6a8ad-e339-4910-9393-26a25c283e0f" ownerguid="14954a0f-5c8a-4680-90b0-53398bd3a2a7"> -<ExampleWords> -<AUni ws="en">known, noted, familiar, obvious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something or someone that is known to someone?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8db70ac8-2d6c-44b4-8d6b-89a11092f684"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">acu</AUni> -<AUni ws="qvm-x-acl">acu; aco</AUni> -<AUni ws="qvm-x-akh">aku</AUni> -<AUni ws="qvm-x-akl">aku; ako</AUni> -<AUni ws="qvm-x-ame">aku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aku.v</AUni> -<AUni ws="qvm-x-acl">*aku.v</AUni> -<AUni ws="qvm-x-akh">*aku.v</AUni> -<AUni ws="qvm-x-akl">*aku.v</AUni> -<AUni ws="qvm-x-ame">*aku.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.689" /> -<DateModified val="2022-10-27 15:36:5.594" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0ea4439c-3f31-4375-a617-619c36f4333e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aku.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f5657f68-f31b-47d9-9773-4c8ce9ab09ee" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="83f3f401-7960-461f-9bdf-204249f3fb64" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aku.v 
\entryTyp root 
\gENG eat 
\gSPN comer 
\e *aku.v 
\c V1 
\ach acu 
\akh aku 
\acl acu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl aco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl aku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ako +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame aku</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="8db7a037-cc22-4ce9-a770-7195dba0d69d" ownerguid="e7a941e6-e657-4e8e-b25b-5c2549631e93"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.cold</AUni> -<AUni ws="es">hacer.frio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1548b3fd-394a-4efa-82b0-58303feca843" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="8db7c016-bdc9-410b-9523-3197602358f4" ownerguid="70eac6be-66e8-4827-8f2f-d15427efff60"> -<Abbreviation> -<AUni ws="en">3.5.7.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.174" /> -<DateModified val="2022-9-23 16:55:8.174" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to written material--something that has writing on it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Written material</AUni> -</Name> -<OcmCodes> -<Uni>538 Literature; 539 Literary Texts; 900 Texts; 901 Texts in the Language of the Culture or Ethnic Group; 902 Texts Translated in English; 903 Interlinear Translations</Uni> -</OcmCodes> -<Questions> -<objsur guid="9b30cda1-95a9-43d8-a025-e8add324c43c" t="o" /> -<objsur guid="99f69975-ac83-4cad-ae5b-afff3a577889" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="8db8a132-63bd-4e84-a6c7-751e89b5de9d" ownerguid="62769b5e-9981-40f8-905b-1b94475a6f48"> -<Form> -<AUni ws="qvm-x-ach">hornu; horno</AUni> -<AUni ws="qvm-x-acl">hornu; hornu; horno</AUni> -<AUni ws="qvm-x-akh">hornu; horno</AUni> -<AUni ws="qvm-x-akl">hornu; hornu; horno</AUni> -<AUni ws="qvm-x-ame">hornu; horno</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="8db8b0b6-5958-41ed-9fe2-7b2eea079be8" ownerguid="cc266d6a-f4bc-42a3-983e-af7b63ed0d30"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="ca07312d-49a1-4d8c-8591-706cb7d5a595" t="r" /> -</Msa> -<Sense> -<objsur guid="a1eaf593-3379-47ea-bee4-15cbbda9775f" t="r" /> -</Sense> -</rt> -<rt class="PhCode" guid="8dbb310e-7f8e-4bb6-8568-025c4fb2f742" ownerguid="53cd56ab-c7c3-4678-a0ff-115a4828212c"> -<Representation> -<AUni ws="qvm-x-ach">ë</AUni> -<AUni ws="qvm-x-acl">ë</AUni> -<AUni ws="qvm-x-akh">ë</AUni> -<AUni ws="qvm-x-akl">ë</AUni> -<AUni ws="qvm-x-ame">ee</AUni> -</Representation> -</rt> -<rt class="LexSense" guid="8dbb89b0-f615-4725-82a8-115a2aeb9a74" ownerguid="851de080-4de0-4575-b8d6-5bc1784cab07"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tuber</AUni> -<AUni ws="es">oca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="88cb3568-feb0-4160-a7b1-ffaa28464cd7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8dbc9292-bfbe-423a-9942-c4f3f72f23fc" ownerguid="1b399fa1-e4f7-4d7b-a33e-3972b8b556e2"> -<ExampleWords> -<AUni ws="en">container, jar, bottle, canister, spice rack, flour sack, bag, granary</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What containers are used to store food?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8dbcd117-936d-4827-84d2-375ad730eadf" ownerguid="cd436263-30a3-498c-93f6-3d5682f7f7c0"> -<ExampleWords> -<AUni ws="en">trade (v), trade (n), domestic trade, foreign trade, commerce, commercial</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to commerce?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8dc006e1-cef8-46b9-b69c-b4f863e8424a" ownerguid="f67cee84-0f14-4dbc-9618-2305c4d5f0b2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="e1f7ead9-c410-48c1-9daa-11da857c79a3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="8dc150fc-1d1c-414b-a657-50c90c18fbff" ownerguid="7e973f42-7d44-4724-b3e4-ef7d3dc08b6d"> -<Form> -<AUni ws="qvm-x-ach">ajaya; ajayä</AUni> -<AUni ws="qvm-x-acl">ajaya; ajayä</AUni> -<AUni ws="qvm-x-akh">ajaya; ajayä</AUni> -<AUni ws="qvm-x-akl">ajaya; ajayä</AUni> -<AUni ws="qvm-x-ame">ahaya; ahayä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8dc1a404-947c-4158-ade0-1cd329375c17" ownerguid="2e95bd1e-82f0-461d-8ca6-b5f1ce1fb180"> -<ExampleWords> -<AUni ws="en">marriageable age, coming out party, eligible, nubile</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to the age at which a person can get married?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8dc3c087-fa84-42f6-a046-c414ab8230db" ownerguid="6d8c1d6c-d4a6-4164-ba40-42f5672e1ebe"> -<Form> -<AUni ws="qvm-x-ach">sipicha</AUni> -<AUni ws="qvm-x-acl">sipicha</AUni> -<AUni ws="qvm-x-akh">sipicha</AUni> -<AUni ws="qvm-x-akl">sipicha</AUni> -<AUni ws="qvm-x-ame">sipicha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="8dc5d26d-230b-4409-b6d1-598a9ddbecec" ownerguid="5553bfb2-778b-4379-8e1c-b080581c9bbc"> -<Form> -<AUni ws="qvm-x-ach">afán; afan</AUni> -<AUni ws="qvm-x-acl">afán; afan</AUni> -<AUni ws="qvm-x-akh">afán; afan</AUni> -<AUni ws="qvm-x-akl">afán; afan</AUni> -<AUni ws="qvm-x-ame">afán; afan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="8dc72d0c-9050-4e3e-8ae6-e1d1cfc1990c" ownerguid="140f9770-8631-49fe-9438-d11576c75ffc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">business</AUni> -<AUni ws="es">negocio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d5f424b1-914b-477c-bc0b-e2b22ddecc4a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="8dcc9732-0af2-4b44-9ad4-02c1948ee97d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">culebra</AUni> -<AUni ws="qvm-x-acl">culebra</AUni> -<AUni ws="qvm-x-akh">culebra</AUni> -<AUni ws="qvm-x-akl">culebra</AUni> -<AUni ws="qvm-x-ame">culebra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+culebra</AUni> -<AUni ws="qvm-x-acl">+culebra</AUni> -<AUni ws="qvm-x-akh">+culebra</AUni> -<AUni ws="qvm-x-akl">+culebra</AUni> -<AUni ws="qvm-x-ame">+culebra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.244" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1aff13d3-5af1-4583-875c-5dcb984853a2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+culebra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="79e0f080-08a8-40cb-8193-b6e277158b65" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="750c03b2-8f0f-45aa-8416-3e0b1fea1213" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +culebra 
\entryTyp root 
\gENG snake 
\gSPN culebra 
\e +culebra 
\c N0 
\ach culebra 
\akh culebra 
\acl culebra 
\akl culebra 
\ame culebra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="8dcccb03-72a1-467e-8ff7-c1229b1853c2" ownerguid="a2c827eb-49d8-43e8-9d8d-9a2e5f4df97b"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="8dccccb7-4fbb-4504-b0da-40c998572a67" ownerguid="7d6ceca0-b1e2-4993-9888-ab4305c0e811"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="8dcdf13a-f4a1-4d9f-8013-3ccb7fdd7f90" ownerguid="c6d4c02a-a2b4-41e9-8f28-63b4516d3b96"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="8dcfe10a-3386-4b56-b39d-afaec9b5bb54" ownerguid="1a3ad94a-4efd-4c07-ab05-f11b0827a0f6"> -<Form> -<AUni ws="qvm-x-ach">gopi</AUni> -<AUni ws="qvm-x-acl">gopi; gopi; gope</AUni> -<AUni ws="qvm-x-akh">qopi</AUni> -<AUni ws="qvm-x-akl">qopi; qopi; qope</AUni> -<AUni ws="qvm-x-ame">qupi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8dd50c7c-53e0-4a97-9d2d-c09497e792d3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">manatsayga; manatsa:ga</AUni> -<AUni ws="qvm-x-acl">manatsayga; manatsa:ga</AUni> -<AUni ws="qvm-x-akh">manatsayqa; manatsa:qa</AUni> -<AUni ws="qvm-x-akl">manatsayqa; manatsa:qa</AUni> -<AUni ws="qvm-x-ame">manatsayqa; manatsa:qa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*manachayqa</AUni> -<AUni ws="qvm-x-acl">*manachayqa</AUni> -<AUni ws="qvm-x-akh">*manachayqa</AUni> -<AUni ws="qvm-x-akl">*manachayqa</AUni> -<AUni ws="qvm-x-ame">*manachayqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.303" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3e43bb2b-3be4-4bcf-ad0f-710994eda4bd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*manachayqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2f038240-8d35-4fd2-a7d8-d93aaebc6793" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c83696f4-ee77-429d-91ea-ec6c83fdfae8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *manachayqa 
\entryTyp root 
\gENG rather 
\gSPN sino 
\e *manachayqa 
\c NOSUFF 
\cm *** ch *** 
\ach manatsayga 
\ach manatsa:ga 
\cm *** kh *** 
\akh manatsayqa 
\akh manatsa:qa 
\cm *** cl *** 
\acl manatsayga 
\acl manatsa:ga 
\cm *** kl *** 
\akl manatsayqa 
\akl manatsa:qa 
\cm *** me *** 
\ame manatsayqa 
\ame manatsa:qa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="8dd564f7-b9b0-45a6-8097-6af0220563c3" ownerguid="0b1ed66f-f00d-4fd7-844f-91400e4a2bf4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="8dd8f8dd-11ef-4b8a-9b05-eb8dd2c5a623" ownerguid="8946d237-a97c-4745-a03a-2c651f37aeb5"> -<Form> -<AUni ws="qvm-x-ach">gueullanchu</AUni> -<AUni ws="qvm-x-acl">gueullanchu; gueullanchu; gueullancho</AUni> -<AUni ws="qvm-x-akh">qewllanchu</AUni> -<AUni ws="qvm-x-akl">qewllanchu; qewllanchu; qewllancho</AUni> -<AUni ws="qvm-x-ame">qiwllanchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8dd97f6c-4d3d-4199-8b5a-8a2b512ff5d1" ownerguid="b47d2604-8b23-41e9-9158-01526dd83894"> -<ExampleWords> -<AUni ws="en">the world, earth, the Earth, the globe, the planet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the planet we live on?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8de202c1-1be0-4d1f-b4f9-2b01bf9b5472"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ari</AUni> -<AUni ws="qvm-x-acl">ari</AUni> -<AUni ws="qvm-x-akh">ari</AUni> -<AUni ws="qvm-x-akl">ari</AUni> -<AUni ws="qvm-x-ame">ari</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ari.n</AUni> -<AUni ws="qvm-x-acl">*ari.n</AUni> -<AUni ws="qvm-x-akh">*ari.n</AUni> -<AUni ws="qvm-x-akl">*ari.n</AUni> -<AUni ws="qvm-x-ame">*ari.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.828" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="65e25109-70b6-44e6-9ba3-814c12356781" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ari.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="51645e12-78fc-4d24-ad6a-f9e3d5337daf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="15800544-8230-498c-84bf-700812ae5317" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ari.n 
\entryTyp root 
\gENG yes 
\gSPN sí 
\e *ari.n 
\c NOSUFF 
\mp +FinalI 
\ach ari 
\akh ari 
\acl ari 
\akl ari 
\ame ari</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8de62c50-dbb7-42b6-9951-486f7f610ca1" ownerguid="79ca34ea-68a7-4fe9-b5ac-4f3d6a1ab99d"> -<ExampleWords> -<AUni ws="en">drool, dribble, spit up, burp</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer something coming out of a baby's mouth?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8de7fd68-5c43-4279-9f78-f29ca843261b" ownerguid="b844d2f8-d3ef-4605-b038-8bc0a2cff0af"> -<ExampleWords> -<AUni ws="en">height, stature</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to how tall something is?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8deb8e24-c518-4e96-b180-26647d00fe04" ownerguid="f2022802-4f43-4fa2-8c58-33a8b9e75895"> -<ExampleWords> -<AUni ws="en">increasing, rising, growing, mounting, escalating, expanding, more and more, cumulative</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is increasing in number or amount?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8deec2c5-efa6-4a7f-b815-3863963cb835" ownerguid="b50f39cb-3152-4d56-9ddc-4b98f763e76a"> -<ExampleWords> -<AUni ws="en">unwanted, undesirable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that people don't want?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8def58d3-25c0-4edc-b51d-380e97647dbc" ownerguid="434ec34f-e7ca-44f8-9252-dff5b9b2b62f"> -<ExampleWords> -<AUni ws="en">better, best, surpass, superior</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is better than something else?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8df01681-6431-4f3b-85ce-a1b2f512471c" ownerguid="0205145d-23b6-4c3c-bf2d-bf866bb010e7"> -<ExampleWords> -<AUni ws="en">ditch, drainage ditch, sewer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used for transporting dirty water?</AUni> -</Question> -</rt> -<rt class="StTxtPara" guid="8df03913-223b-4e4c-982e-8818ccc798de" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">rikatsikun </Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="6ef269b1-3ff7-4f1e-b7e8-e5a0ca66b71d" t="o" /> -</Segments> -</rt> -<rt class="LexSense" guid="8df2e690-0f98-4a20-92fa-73f2196e78d1" ownerguid="6254b880-b02b-4317-9add-fbae575c6186"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="c8c256a8-9e69-4b97-a095-16f6b2426a82" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="8df2ff73-1da1-48ea-ab95-2b772a932821" ownerguid="d81b6655-eda2-4945-a6f4-965104769770"> -<Form> -<AUni ws="qvm-x-ach">amalä</AUni> -<AUni ws="qvm-x-acl">amalä</AUni> -<AUni ws="qvm-x-akh">amalä</AUni> -<AUni ws="qvm-x-akl">amalä</AUni> -<AUni ws="qvm-x-ame">amalä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="8df71ed6-0170-4185-b1ba-f5c2dc62c015" ownerguid="0dfdb2ba-84df-49e8-9564-d2ffc6256715"> -<Form> -<AUni ws="qvm-x-ach">chichi</AUni> -<AUni ws="qvm-x-acl">chichi; chiche</AUni> -<AUni ws="qvm-x-akh">chichi</AUni> -<AUni ws="qvm-x-akl">chichi; chiche</AUni> -<AUni ws="qvm-x-ame">chichi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="8df82b69-64cf-4e3d-9122-0568fb2230be" ownerguid="c3ae3eef-eb79-4c04-8cab-55b5b0e352b3"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8df95b1c-edf5-491e-88cd-349e96f359f8" ownerguid="cf337287-c9fa-43d2-93c4-284f45e262c0"> -<ExampleWords> -<AUni ws="en">allergy, allergic, amoeba, appendicitis, cholera, colic, colicky, colitis, cyst, diabetes, diabetic, diphtheria, distemper, dropsy, dysentery, elephantiasis, encephalitis, fibrosis, fistula, flux, hypertension, gallstone, goiter, heatstroke, hernia, herpes zoster, hemophilia, hemorrhoid, hives, hookworm, kidney stone, lockjaw, lumbago, malaria, meningitis, mononucleosis, mumps, phlebitis, piles, plague, polio, poliomyelitis, psoriasis, rabid, rabies, rubella, sclerosis, sunstroke, tetanus, typhoid, typhus, yellow fever, airsick, carsick, seasick</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What are the names of particular diseases?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8dfa1e7f-1c62-4c51-8579-a1e91fcec66e" ownerguid="1e0a6241-fd13-49e2-8b30-6fc80983e28a"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="8dfbf570-5ea3-4d27-8399-31a3029596cf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wegui</AUni> -<AUni ws="qvm-x-acl">wegui; wegui; wegue</AUni> -<AUni ws="qvm-x-akh">weqi</AUni> -<AUni ws="qvm-x-akl">weqi; weqi; weqe</AUni> -<AUni ws="qvm-x-ame">wiqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wiqi</AUni> -<AUni ws="qvm-x-acl">*wiqi</AUni> -<AUni ws="qvm-x-akh">*wiqi</AUni> -<AUni ws="qvm-x-akl">*wiqi</AUni> -<AUni ws="qvm-x-ame">*wiqi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.668" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4d1e3980-7342-484a-a093-87f2998abf12" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wiqi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="873fa0b1-dbe7-4c01-8b7a-d6f9919ce0e4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c73d00b3-5958-420b-a696-d50e277375cf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wiqi 
\entryTyp root 
\gENG tear 
\gSPN lágrima 
\e *wiqi 
\c N0 
\mp +FinalI 
\ach wegui 
\akh weqi 
\acl wegui / _# 
\acl wegui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wegue +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl weqi / _# 
\akl weqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl weqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wiqi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8dfbfb1d-cb14-4a7a-8809-9aa11e1ad49f" ownerguid="ff7e3abd-6810-4128-83c9-701b4925c2fe"> -<ExampleWords> -<AUni ws="en">cook fire, bonfire, controlled fire</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a fire started on purpose?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8dffcbc4-08b2-4b6e-8902-b5b2ed367ccc" ownerguid="a2d15c3f-53f7-491b-8675-1f4cabc6d6a7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">translation</AUni> -<AUni ws="es">traducción</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1c7f205b-8fd3-4fed-9d21-68fcd0ee2f0c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="8e0162fa-6430-4b76-af24-5c75d23eadc6" ownerguid="86286c23-4899-4ac4-9869-e1bad3589d0a"> -<Form> -<AUni ws="qvm-x-ach">waya</AUni> -<AUni ws="qvm-x-acl">waya</AUni> -<AUni ws="qvm-x-akh">waya</AUni> -<AUni ws="qvm-x-akl">waya</AUni> -<AUni ws="qvm-x-ame">waya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="8e06ce54-a51f-4b26-9a07-d1618ac8c4a4" ownerguid="951861a4-f7f5-4677-aab8-f262cc753df5"> -<Form> -<AUni ws="qvm-x-ach">juclatsa</AUni> -<AUni ws="qvm-x-acl">juclatsa</AUni> -<AUni ws="qvm-x-akh">juklatsa</AUni> -<AUni ws="qvm-x-akl">juklatsa</AUni> -<AUni ws="qvm-x-ame">huklatsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="8e08e3c6-581a-46f0-82d5-60028a312194" ownerguid="de2b3307-d9e6-480f-87f4-fcad615bc3de"> -<Form> -<AUni ws="qvm-x-ach">calapa</AUni> -<AUni ws="qvm-x-acl">calapa</AUni> -<AUni ws="qvm-x-akh">kalapa</AUni> -<AUni ws="qvm-x-akl">kalapa</AUni> -<AUni ws="qvm-x-ame">kalapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="8e0ae7a8-dd66-4a65-a10f-402e90cac77d"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">REF</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="8e1191f8-6939-43cd-8476-38be0fddd8ac" ownerguid="61513a9e-6592-4262-9646-78564302e4e8"> -<Form> -<AUni ws="qvm-x-ach">asi</AUni> -<AUni ws="qvm-x-acl">asi; ase</AUni> -<AUni ws="qvm-x-akh">asi</AUni> -<AUni ws="qvm-x-akl">asi; ase</AUni> -<AUni ws="qvm-x-ame">asi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="8e11dd10-459b-4fb3-b876-7d80ec5f8a4d" ownerguid="62b4ae33-f3c2-447a-9ef7-7e41805b6a02"> -<Abbreviation> -<AUni ws="en">4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.217" /> -<DateModified val="2022-9-23 16:55:8.217" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to a person's behavior.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>41 Behavior and Related States; 41A Behavior, Conduct; 88 Moral and Ethical Qualities and Related Behavior</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Behavior</AUni> -</Name> -<OcmCodes> -<Uni>577 Ethics</Uni> -</OcmCodes> -<Questions> -<objsur guid="3c018890-6bbb-42ea-a6bc-504fb245314c" t="o" /> -<objsur guid="fc0ca4c2-de06-44dc-afad-ca21582d5dfc" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="30e6b42c-6bbf-4659-99e7-aa4b8e68c9ce" t="o" /> -<objsur guid="9b0fef63-5935-447d-801a-bb02dd6212bb" t="o" /> -<objsur guid="e7caa24f-155d-47cd-946d-cc0d06dfc764" t="o" /> -<objsur guid="771e3882-f672-4e67-8580-edd82d7e5090" t="o" /> -<objsur guid="7d54d3dd-5fb2-4640-9bcf-c234696af894" t="o" /> -<objsur guid="8add7f4d-333b-4b2c-9999-48a14162152b" t="o" /> -<objsur guid="721e2ee8-7ea5-4d17-94cc-d77d8e92bd27" t="o" /> -<objsur guid="bce3f390-452c-4ca9-8c36-5fbcfd6b4755" t="o" /> -<objsur guid="73a59333-134f-4a1d-aba7-e134bdefe059" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="8e146d47-0a81-4727-a37c-c65b92a4829a" ownerguid="80a863d0-38d7-4454-bf8a-fa3d622c5f12"> -<Form> -<AUni ws="qvm-x-ach">uma#pucshu</AUni> -<AUni ws="qvm-x-acl">uma#pucshu; uma#pucshu; uma#pucsho</AUni> -<AUni ws="qvm-x-akh">uma#pukshu</AUni> -<AUni ws="qvm-x-akl">uma#pukshu; uma#pukshu; uma#puksho</AUni> -<AUni ws="qvm-x-ame">uma#pukshu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="8e15ab9f-d4e7-49b7-93ad-70ad2e68fdaf" ownerguid="3b734f1e-083d-42c4-b4ef-5b03e13e3525"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8e1738ec-ab0c-4db9-b0c8-7a7156a8197e" ownerguid="a8b9e892-df3e-44c4-8c68-7a0f7f4468bb"> -<ExampleWords> -<AUni ws="en">mole, shrew, hedgehog</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What species of insect eating animals are there?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="8e1acde5-d828-43de-9d8f-f481480cf559" ownerguid="1913fed8-1f71-4689-a3e9-74482e6c1b46"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="2223645b-2a48-41f7-bd28-695c6fadda9a" t="o" /> -<objsur guid="2b31cc23-d72f-42e6-9188-303fda009760" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="8e1b6fa6-ae1a-46bc-963e-bf9873739a60" ownerguid="1d138c73-f30e-4fc3-8c5a-e2f53084d956"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dove</AUni> -<AUni ws="es">paloma</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d1abb23e-f2a2-4c75-90ae-d950f54ae53a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="8e1e9520-5940-4eb2-ab02-f1d2aa19118b" ownerguid="8855211f-4a6e-477f-be4d-01fdbeeb476e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="8e1f2b3e-62bc-45f9-a7ad-7add06fe101f" ownerguid="00d638ab-1ac8-4359-9f4c-707afe84e413"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">misfortune</AUni> -<AUni ws="es">desgracia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="00c46f53-d1e5-4fea-a267-7240621d8273" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="8e1ff524-21fe-4f7a-b54f-6290688c160d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">warantilan</AUni> -<AUni ws="qvm-x-acl">warantilan</AUni> -<AUni ws="qvm-x-akh">warantilan</AUni> -<AUni ws="qvm-x-akl">warantilan</AUni> -<AUni ws="qvm-x-ame">warantilan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*warantillan</AUni> -<AUni ws="qvm-x-acl">*warantillan</AUni> -<AUni ws="qvm-x-akh">*warantillan</AUni> -<AUni ws="qvm-x-akl">*warantillan</AUni> -<AUni ws="qvm-x-ame">*warantillan</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.523" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="393e4eeb-3d07-4cbd-9257-7ebf9cfccfe5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*warantillan</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3028bda7-2095-48d2-886d-435eb4c698f3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="94c0ffa5-00ee-4294-843f-f33af76f43fc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *warantillan 
\entryTyp root 
\gENG 
\gSPN 
\e *warantillan 
\c N0 
\mp +FinalC 
\ach warantilan 
\akh warantilan 
\acl warantilan 
\akl warantilan 
\ame warantilan</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="8e22b698-d917-429a-bcc9-2bde7a7eee03" ownerguid="8f2fb60a-ff21-435a-a9d4-f579c5d7e851"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="397698e1-92b5-4342-9c3b-b4f8fcd1a7c2" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">lizard</AUni> -<AUni ws="es">lagartija</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="478501ce-8952-4fc3-9b00-5aa5aaba24f8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8e28fdef-344d-4d08-8777-33576addac86" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<ExampleWords> -<AUni ws="en">walk</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to walking?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8e2d7300-2826-497b-a811-c59a01e9e804"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tapshi</AUni> -<AUni ws="qvm-x-acl">tapshi; tapshe</AUni> -<AUni ws="qvm-x-akh">tapshi</AUni> -<AUni ws="qvm-x-akl">tapshi; tapshe</AUni> -<AUni ws="qvm-x-ame">tapshi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tapshi</AUni> -<AUni ws="qvm-x-acl">*tapshi</AUni> -<AUni ws="qvm-x-akh">*tapshi</AUni> -<AUni ws="qvm-x-akl">*tapshi</AUni> -<AUni ws="qvm-x-ame">*tapshi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.815" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a4d58f6d-f0f2-4c8e-9272-7c1ee31dbecd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tapshi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7e4db14a-c9bc-4f18-b4da-49dc59c4cfad" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6c164a2a-2102-4a8e-b922-58c82d5cc8f6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tapshi 
\entryTyp root 
\gENG bump 
\gSPN dar.sacudidas 
\e *tapshi.v 
\c V2 
\mp +FinalI 
\ach tapshi 
\akh tapshi 
\acl tapshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tapshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tapshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tapshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tapshi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="8e302eed-8e35-4d2a-8b7d-bf5d297d95aa" ownerguid="a9ad35b9-7190-4589-8381-51f72ee80b56"> -<Form> -<AUni ws="qvm-x-ach">rëma</AUni> -<AUni ws="qvm-x-acl">rëma</AUni> -<AUni ws="qvm-x-akh">rëma</AUni> -<AUni ws="qvm-x-akl">rëma</AUni> -<AUni ws="qvm-x-ame">rëma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8e30bedb-ba12-4c7a-a2d7-8e4168362d3a" ownerguid="56ef3f06-7fb9-462e-a7d0-517f3ce1623f"> -<ExampleWords> -<AUni ws="en">bear, grizzly, koala, panda, polar bear</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What animals are in the bear family?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8e3606ad-ee49-417d-8e25-d156e7ddf406"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">washa; washa:</AUni> -<AUni ws="qvm-x-acl">washa; washa:</AUni> -<AUni ws="qvm-x-akh">washa; washa:</AUni> -<AUni ws="qvm-x-akl">washa; washa:</AUni> -<AUni ws="qvm-x-ame">washa; washa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*washa:</AUni> -<AUni ws="qvm-x-acl">*washa:</AUni> -<AUni ws="qvm-x-akh">*washa:</AUni> -<AUni ws="qvm-x-akl">*washa:</AUni> -<AUni ws="qvm-x-ame">*washa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.546" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a6136c2c-aade-4d91-a0cb-87b0e0c23128" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*washa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ef866d19-5a1c-4276-8c3b-f35ffc486dc5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d62ff45d-6ed7-407d-a343-72c809fe16d9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *washa: 
\entryTyp root 
\gENG separate 
\gSPN separar 
\e *washa: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach washa foreshortened 
\ach washa: 
\akh washa foreshortened 
\akh washa: 
\acl washa foreshortened 
\acl washa: 
\akl washa foreshortened 
\akl washa: 
\ame washa foreshortened 
\ame washa:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8e381793-573b-4e96-b532-33c89092d3bf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cohe:ti; cohe:ti</AUni> -<AUni ws="qvm-x-acl">cohe:ti; cohe:ti; cohe:te</AUni> -<AUni ws="qvm-x-akh">cohe:ti; cohe:ti</AUni> -<AUni ws="qvm-x-akl">cohe:ti; cohe:ti; cohe:te</AUni> -<AUni ws="qvm-x-ame">cohe:ti; cohe:ti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cohete</AUni> -<AUni ws="qvm-x-acl">+cohete</AUni> -<AUni ws="qvm-x-akh">+cohete</AUni> -<AUni ws="qvm-x-akl">+cohete</AUni> -<AUni ws="qvm-x-ame">+cohete</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.142" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="56aa0ec8-f7d1-4c36-8b3f-7cdf15f0e46c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cohete</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e9c0a858-09cc-4534-b71a-fafeb7cb46e3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3e018ee3-ca47-42d0-97bc-c3152620a42f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cohete 
\entryTyp root 
\gENG rocket 
\gSPN cohete 
\e +cohete 
\c N0 
\mp +FinalI 
\ach cohe:ti / _# 
\ach cohe:ti / ~_# 
\akh cohe:ti / _# 
\akh cohe:ti / ~_# 
\acl cohe:ti / _# 
\acl cohe:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cohe:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cohe:ti / _# 
\akl cohe:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cohe:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cohe:ti / _# 
\ame cohe:ti / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8e39aa41-58a0-4ca0-8700-cc25921d7415"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rucuchu</AUni> -<AUni ws="qvm-x-acl">rucuchu; rucuchu; rucucho</AUni> -<AUni ws="qvm-x-akh">rukuchu</AUni> -<AUni ws="qvm-x-akl">rukuchu; rukuchu; rukucho</AUni> -<AUni ws="qvm-x-ame">rukuchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rokutru</AUni> -<AUni ws="qvm-x-acl">*rokutru</AUni> -<AUni ws="qvm-x-akh">*rokutru</AUni> -<AUni ws="qvm-x-akl">*rokutru</AUni> -<AUni ws="qvm-x-ame">*rokutru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.376" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6516fb85-4018-4281-87ed-72d9f42d3c1f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rokutru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="14a615c0-a476-4a72-a781-51d643bf5a66" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="296c047e-5078-4781-a6f6-75c7562888d5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rokutru 
\entryTyp root 
\gENG toasted.grain 
\gSPN grano.tostado 
\e *rokutru 
\c N0 
\ach rucuchu 
\akh rukuchu 
\acl rucuchu / _# 
\acl rucuchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl rucucho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rukuchu / _# 
\akl rukuchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl rukucho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame rukuchu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8e3fe889-6bad-4ff1-bb98-e504246266c7" ownerguid="7337b2dd-b574-4a41-affa-2dfad7f6cdbc"> -<ExampleWords> -<AUni ws="en">fate, chance, God's will, social consensus</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What is the validating principle behind these methods?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8e4261cb-ffbe-4b2d-9172-0cbd35cd8906" ownerguid="f6896060-4d5c-45e2-b89a-f9f6328a479c"> -<ExampleWords> -<AUni ws="en">usual, normal, natural, typical, ordinary</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is usual?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8e434b1f-d8af-4294-a455-c6b2fda5d476" ownerguid="f03b8344-0771-4c0b-9127-cfbcbd7a9cd7"> -<Form> -<AUni ws="qvm-x-ach">masha</AUni> -<AUni ws="qvm-x-acl">masha</AUni> -<AUni ws="qvm-x-akh">masha</AUni> -<AUni ws="qvm-x-akl">masha</AUni> -<AUni ws="qvm-x-ame">masha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8e4570c9-012c-4c87-a4b3-edc573e01271" ownerguid="7ddbd56f-e458-4a72-a9bc-9b7db6bde75a"> -<ExampleWords> -<AUni ws="en">palace, castle, White House, number 10 Downing Street</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the house of the ruler?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8e4e4743-7f78-4807-a9e6-041ee5a573a9" ownerguid="440608df-3c98-4dc8-9fd3-fad08afe7aef"> -<ExampleWords> -<AUni ws="en">exceed, cross, trespass, overstep</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to going beyond the limit?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="8e530858-6327-4bda-8aee-e29bc66479d1" ownerguid="d1aa6dca-6e86-4575-a555-86fd20218c4f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="8e551e7f-6927-4ee4-95b3-328bbc4b0486" ownerguid="2a14b38c-b241-481f-98c5-dd5c28f32e6b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="8e55db99-d6b2-4b72-b8c2-7f18929d0c8a" ownerguid="ce59ddff-d85b-45e8-9422-f4a6f6f2f0b9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fat</AUni> -<AUni ws="es">gordo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0861afd8-2c5b-4a12-804e-347e519aff29" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8e574908-d691-4292-a0b9-cede5387a9b3" ownerguid="4d2a247e-4925-4750-8c39-e2d78665d33c"> -<ExampleWords> -<AUni ws="en">inside (adj), interior, inner</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is on the inside?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="8e59041e-660b-4f3e-9a11-83217417209e" ownerguid="12fe5f6c-7f98-47ba-936a-bcd1065c2db3"> -<Abbreviation> -<AUni ws="en">7.2.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to moving in a forward direction--in the same direction the person is facing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Move forward</AUni> -</Name> -<Questions> -<objsur guid="dc2246b8-4cfb-4f7c-9a73-3a211b6bf4d4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="8e59e9d1-e237-4184-852f-d2740dc13ce5" ownerguid="5a44d956-4cd0-4365-bcab-90949866ef55"> -<Form> -<AUni ws="qvm-x-ach">locru; locro</AUni> -<AUni ws="qvm-x-acl">locru; locru; locro</AUni> -<AUni ws="qvm-x-akh">locru; locro</AUni> -<AUni ws="qvm-x-akl">locru; locru; locro</AUni> -<AUni ws="qvm-x-ame">locru; locro</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8e5d1146-aa1e-4074-8980-f62bfc2b9122" ownerguid="85cb1e3c-62ba-4a77-a838-0237707fb0cb"> -<ExampleWords> -<AUni ws="en">Yorkshire, California, Midlands, Midwest, the South, outback</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the names of the regions in the area?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8e609ed6-ef7d-4882-89bb-c449004d65a8" ownerguid="ad83a7c3-2946-4b60-b967-c11101404479"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 N1/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">WITH2</AUni> -<AUni ws="es">MAS2</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8a80fcb3-0227-404b-88a5-73d9f5ac5ad6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8e618530-14d9-4576-87cf-f5ccfeeaf16d" ownerguid="6c6259f0-eca6-4a30-8662-eedbaf293527"> -<ExampleWords> -<AUni ws="en">vacillate, go back and forth between, waver</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to changing your mind many times?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8e63638e-142c-4b1e-9978-d4f4486e6100" ownerguid="85646774-8145-4553-b8a7-6927cd077908"> -<ExampleWords> -<AUni ws="en">school (of fish), shoal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a group of fish?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8e64d534-daf7-4b5d-bbfd-f791324aebe5" ownerguid="678bbfc7-b8c7-4f8e-a54c-26fa4bc333ea"> -<Form> -<AUni ws="qvm-x-ach">ashma</AUni> -<AUni ws="qvm-x-acl">ashma</AUni> -<AUni ws="qvm-x-akh">ashma</AUni> -<AUni ws="qvm-x-akl">ashma</AUni> -<AUni ws="qvm-x-ame">ashma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="8e65904c-f9e9-4e12-b430-c1ddc540f1ae" ownerguid="85b9908f-4f57-4baa-9ed2-bc4705b12e72"> -<Abbreviation> -<AUni ws="en">7.1.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.498" /> -<DateModified val="2022-9-23 16:55:8.498" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing a relaxed posture.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Relaxed posture</AUni> -</Name> -<Questions> -<objsur guid="906c32b4-8e3d-442a-9026-c45821725dad" t="o" /> -<objsur guid="3d2d6a05-a0ec-4bab-a0d9-2b70c654cd44" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="26fb2e94-b8fe-4216-9057-ca17a71df83b" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="8e6e0d39-1d67-4297-9f06-b6210db1216d" ownerguid="5c63cb3d-9c24-4f8c-9075-03b9b05b5aa0"> -<Form> -<AUni ws="qvm-x-ach">usha</AUni> -<AUni ws="qvm-x-acl">usha</AUni> -<AUni ws="qvm-x-akh">usha</AUni> -<AUni ws="qvm-x-akl">usha</AUni> -<AUni ws="qvm-x-ame">usha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="8e6e0ece-4ee5-4042-a160-9267d59b8738" ownerguid="bc27752e-66ee-4878-8dc1-2185801096d4"> -<Form> -<AUni ws="qvm-x-ach">latu</AUni> -<AUni ws="qvm-x-acl">latu; lato</AUni> -<AUni ws="qvm-x-akh">latu</AUni> -<AUni ws="qvm-x-akl">latu; lato</AUni> -<AUni ws="qvm-x-ame">latu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8e6f9070-ffb9-4d0f-8f70-d8f40a9dd293"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mujun</AUni> -<AUni ws="qvm-x-acl">mujun</AUni> -<AUni ws="qvm-x-akh">mujun</AUni> -<AUni ws="qvm-x-akl">mujun</AUni> -<AUni ws="qvm-x-ame">mujun</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mojón.1</AUni> -<AUni ws="qvm-x-acl">+mojón.1</AUni> -<AUni ws="qvm-x-akh">+mojón.1</AUni> -<AUni ws="qvm-x-akl">+mojón.1</AUni> -<AUni ws="qvm-x-ame">+mojón.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.467" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="594024e0-4a87-455e-822e-52d95d414dc7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mojón.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="03f7648b-af2b-4976-ab2f-4fb89520668f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9f037ea9-45c3-4b8d-b552-b19d878c8f17" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mojón.1 
\entryTyp root 
\gENG border 
\gSPN lindero 
\e +mojón.1 
\c N0 
\mp +assimilated 
\ach mujun 
\akh mujun 
\acl mujun 
\akl mujun 
\ame mujun 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8e724c9e-d97f-4d26-b889-b8d6df152482" ownerguid="252886c4-9317-4c6b-a69e-13520eb89736"> -<ExampleWords> -<AUni ws="en">Hello. Welcome. Come in.</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What greetings are used to welcome a guest?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8e78e073-7f8a-405d-b852-011da09c8f35" ownerguid="e40c8484-4541-4ce8-aa78-6007811164c4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">case</AUni> -<AUni ws="es">estuche</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1e28460f-5633-4435-ac51-8bebd4cceb27" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8e79bafe-bace-4cf8-b0b8-6fcc37c8ac1c" ownerguid="b790470f-ed4e-42ac-932d-cd15ef701b03"> -<ExampleWords> -<AUni ws="en">purify, purification, cleanse, cleansing, wash, washing, sprinkle, sprinkling, baptize, baptism</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to purifying someone or something for religious purposes?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8e7a5d46-e122-49f5-a7a9-27320725b014"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tawi</AUni> -<AUni ws="qvm-x-acl">tawi; tawe</AUni> -<AUni ws="qvm-x-akh">tawi</AUni> -<AUni ws="qvm-x-akl">tawi; tawe</AUni> -<AUni ws="qvm-x-ame">tawi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tawi</AUni> -<AUni ws="qvm-x-acl">*tawi</AUni> -<AUni ws="qvm-x-akh">*tawi</AUni> -<AUni ws="qvm-x-akl">*tawi</AUni> -<AUni ws="qvm-x-ame">*tawi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.835" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d7da9456-eeb3-46ae-b770-5df295192918" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tawi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f3f2ed8b-f953-4bf9-a444-daf2ff9a2d4e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f8d7dbd2-3281-4db7-8cac-13ee07748e87" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tawi 
\entryTyp root 
\gENG dip 
\gSPN ? 
\e *tawi 
\c V1 
\mp +FinalI 
\ach tawi 
\akh tawi 
\acl tawi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tawe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tawi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tawe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tawi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="8e7b0bea-ee2b-46a5-8967-46a8c6b451bc" ownerguid="22bf031c-cd0a-4ae5-8e49-a569cad42ab1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8e7e2c25-2c2c-4465-86e1-eb9a082fe542" ownerguid="b43fae8e-6b19-42ed-98cd-d363174b9cf8"> -<ExampleWords> -<AUni ws="en">get smaller, shrink, shrivel, shrivel up, contract, decrease in size, reduce, wither</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something becoming small?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8e851b2f-ffa0-40bf-8cb8-2c739ce8f242"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">planta</AUni> -<AUni ws="qvm-x-acl">planta</AUni> -<AUni ws="qvm-x-akh">planta</AUni> -<AUni ws="qvm-x-akl">planta</AUni> -<AUni ws="qvm-x-ame">planta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+plantar</AUni> -<AUni ws="qvm-x-acl">+plantar</AUni> -<AUni ws="qvm-x-akh">+plantar</AUni> -<AUni ws="qvm-x-akl">+plantar</AUni> -<AUni ws="qvm-x-ame">+plantar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.879" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2b31a9b5-b5b2-4a58-b4d0-5c804e719291" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+plantar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5e3534dc-3f88-43a3-8503-c59f2737a6b7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5f6d3f97-3213-4a23-9427-953a61cb986b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +plantar 
\entryTyp root 
\gENG plant 
\gSPN plantar 
\e +plantar 
\c V2 
\ach planta 
\akh planta 
\acl planta 
\akl planta 
\ame planta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="8e85a4ce-6359-4da2-aa5c-12dcf0b9b94d" ownerguid="ec266c79-865d-436e-a476-6f4e30d85a84"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="8e861786-8f47-4019-9f59-fcb9e5e65c7f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maltrata</AUni> -<AUni ws="qvm-x-acl">maltrata</AUni> -<AUni ws="qvm-x-akh">maltrata</AUni> -<AUni ws="qvm-x-akl">maltrata</AUni> -<AUni ws="qvm-x-ame">maltrata</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+maltratar</AUni> -<AUni ws="qvm-x-acl">+maltratar</AUni> -<AUni ws="qvm-x-akh">+maltratar</AUni> -<AUni ws="qvm-x-akl">+maltratar</AUni> -<AUni ws="qvm-x-ame">+maltratar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.285" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8abc74bc-c50d-4399-946f-b4d33093922c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+maltratar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fe04128e-533e-4d69-b06b-59f515cc38ce" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3c51f6bd-01a5-401e-a90d-c632f094d50b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +maltratar 
\entryTyp root 
\gENG mistreat 
\gSPN maltratar 
\e +maltratar 
\c V2 
\ach maltrata 
\akh maltrata 
\acl maltrata 
\akl maltrata 
\ame maltrata 
\i MIC 3.3 Calducunayquipag aytsanta cutsognogmi paycunata maltrataycanqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="8e862ee6-fd51-44b9-9e98-55fbfdaccec5" ownerguid="14891149-e35b-4634-a181-ffe0967abaf9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8e86abf0-a481-4609-a8ec-bb8fff109473" ownerguid="c79d49f1-74ec-4dba-a5aa-5e861af63d05"> -<ExampleWords> -<AUni ws="en">blame someone for something, blame something on someone, say something is somebody's fault, put the blame on, lay the blame on, apportion blame, hold someone responsible</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to blaming someone for something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8e887ab4-b61e-42e3-9a19-892c3bcb2c42" ownerguid="50dfffe4-dfe8-445f-bdde-4cc8d83ebd6b"> -<ExampleWords> -<AUni ws="en">joint</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that people do together?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="8e88ed6a-000d-400a-8cd8-7b3cc7f1818c" ownerguid="101c16f8-ec76-4ec7-895a-fd814fef51dd"> -<Abbreviation> -<AUni ws="en">2.5.7.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.63" /> -<DateModified val="2022-9-23 16:55:8.63" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to traditional medicine. There may be no distinction in terminology between 'modern medicine' and 'traditional medicine.' In that case this domain should be ignored. (Our purpose here is not to judge the value of traditional medicine, but to collect and describe the words used for it.)</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Traditional medicine</AUni> -</Name> -<OcmCodes> -<Uni>754 Sorcery; 755 Magical and Mental Therapy</Uni> -</OcmCodes> -<Questions> -<objsur guid="c5c7496f-9232-488d-85e5-f67d01aea1c2" t="o" /> -<objsur guid="75fc4bc1-283a-4655-86f6-e087e563b096" t="o" /> -<objsur guid="ecab90dc-fe3e-408c-89e0-94d7e765a353" t="o" /> -<objsur guid="b12f9fd0-21e1-4608-b709-4a10c53a2bfd" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="8e8b0be6-66ad-46fb-aae0-339d596613d6" ownerguid="d2b61570-af54-44f3-846e-6d7ec9d3737f"> -<ExampleWords> -<AUni ws="en">room, living room, sitting room, parlor, dining room, bedroom, kitchen, closet, hall, passage, passageway, entry, pantry, garage, storeroom, storage room, laundry room, utility room, den, study, family room, breakfast nook, billiard room, conservatory, library, stair, stairway, stairwell, stairs, porch, front porch, back porch, patio, balcony, basement, attic, workroom, workshop, guestroom, guest bedroom</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What kinds of rooms are there in a house?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8e8bb8db-c63e-409d-8432-ab65a20e2bae" ownerguid="bc144b7d-c87d-4f36-a662-01a632e3e592"> -<Form> -<AUni ws="qvm-x-ach">respitösu</AUni> -<AUni ws="qvm-x-acl">respitösu; respitösu; respitöso</AUni> -<AUni ws="qvm-x-akh">respitösu</AUni> -<AUni ws="qvm-x-akl">respitösu; respitösu; respitöso</AUni> -<AUni ws="qvm-x-ame">respitösu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8e8d8771-949e-4582-b4f0-574ef63228bc" ownerguid="77f0d0dc-61ee-4373-9879-35a7059bd892"> -<ExampleWords> -<AUni ws="en">toothache</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the pain caused by a bad tooth?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8e92b134-6846-44f9-84d6-7971044c38f2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jamuta</AUni> -<AUni ws="qvm-x-acl">jamuta</AUni> -<AUni ws="qvm-x-akh">jamuta</AUni> -<AUni ws="qvm-x-akl">jamuta</AUni> -<AUni ws="qvm-x-ame">hamuta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hamuta</AUni> -<AUni ws="qvm-x-acl">*hamuta</AUni> -<AUni ws="qvm-x-akh">*hamuta</AUni> -<AUni ws="qvm-x-akl">*hamuta</AUni> -<AUni ws="qvm-x-ame">*hamuta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.658" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3a3b23c3-eb41-4218-9b2e-241bcfa6bd11" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hamuta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eb49d6e7-bbef-492a-a6c4-efa226938de6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="84826bae-8de8-45e7-99d7-8d7730fecccc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hamuta 
\entryTyp root 
\gENG 
\gSPN 
\e *hamuta 
\c V1 
\ach jamuta 
\akh jamuta 
\acl jamuta 
\akl jamuta 
\ame hamuta</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="8e9320ba-b9ff-42ca-9fdd-58a70e7b633e"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Tsaypitana</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="8e943e82-9331-4306-9d21-f36cb0d158f2" ownerguid="5511f489-03d5-43aa-9df2-c67319587b80"> -<Form> -<AUni ws="qvm-x-ach">usa</AUni> -<AUni ws="qvm-x-acl">usa</AUni> -<AUni ws="qvm-x-akh">usa</AUni> -<AUni ws="qvm-x-akl">usa</AUni> -<AUni ws="qvm-x-ame">usa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8e94f886-bed0-4a66-8be0-de35788277f4" ownerguid="8a81b9bc-9c66-4d57-a2d1-2e592604c4b1"> -<ExampleWords> -<AUni ws="en">how full, be (half) full</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words indicate how full something is?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8e962832-fc86-43e9-9118-e0b26f14c800" ownerguid="d6ce6b98-ff16-4be0-b3ef-9919e275f39e"> -<Form> -<AUni ws="qvm-x-ach">juknasya; juknasyä</AUni> -<AUni ws="qvm-x-acl">juknasya; juknasyä</AUni> -<AUni ws="qvm-x-akh">juknasya; juknasyä</AUni> -<AUni ws="qvm-x-akl">juknasya; juknasyä</AUni> -<AUni ws="qvm-x-ame">huknasya; huknasyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8e995496-f2f7-4ef7-8899-12cf91e8095f" ownerguid="89ba59d4-b314-4070-83bb-f9f868bcd363"> -<ExampleWords> -<AUni ws="en">paint, brush, palette, easel, canvas, medium, tempera, distemper</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What tools and materials are used to paint a picture?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8e9a3f84-2199-4b06-b220-ff5724cc1106" ownerguid="2f9714d1-97ec-497b-b74c-d56d2b30d283"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pin</AUni> -<AUni ws="es">imperdible</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="468a9fe9-dbfc-407f-b965-6c9308bfabfc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="8e9b5f95-3258-4f73-89fd-9a2fdade51c7" ownerguid="04fd75ce-6570-43d3-991f-e501f53f322f"> -<Form> -<AUni ws="qvm-x-ach">dolienti; doliente</AUni> -<AUni ws="qvm-x-acl">dolienti; dolienti; doliente</AUni> -<AUni ws="qvm-x-akh">dolienti; doliente</AUni> -<AUni ws="qvm-x-akl">dolienti; dolienti; doliente</AUni> -<AUni ws="qvm-x-ame">dolienti; doliente</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8e9c9699-b142-4975-9b33-82399a33ead7" ownerguid="e949f393-2a5b-4792-af8f-75138322ceee"> -<ExampleWords> -<AUni ws="en">stamina, staying power, endurance, physical fitness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to the ability to work or run for a long time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8ea2a1e9-13e7-4bee-b6bf-60308bc5dfb9" ownerguid="a19e219a-6cc1-4057-a8d9-18554ae88de1"> -<ExampleWords> -<AUni ws="en">breastfeed, nurse, feed, wean, suck, suckle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to feeding a baby?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="8ea4e0d4-71a2-4583-a1fe-f1a941af8478" ownerguid="5ea9301a-9906-4e81-97cf-48ee95a54c63"> -<Abbreviation> -<AUni ws="en">3.3.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to suggesting something--saying that something might be good.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Suggest</AUni> -</Name> -<Questions> -<objsur guid="623ccfa8-c56d-4818-8c1c-60ecbd260e0a" t="o" /> -<objsur guid="e2c3aab7-2a7d-4608-aafc-2ff5dc948e5a" t="o" /> -<objsur guid="30aded66-fb83-4093-964c-ed54f2204cbf" t="o" /> -<objsur guid="d9119089-5ec4-43bb-8a63-b1589a555116" t="o" /> -<objsur guid="3d44bb08-5d91-4e2a-a757-985d734e1cc9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="8ea645df-1382-4240-abc8-b51f61350013" ownerguid="52f9a8f0-d97d-4aa1-8c2c-d907d7cb83fc"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The participants entered two <by> two.; The students lined up class <by> class.; We lined up the shoes <in> pairs.; The guests were seated <in> groups of six.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">in, by</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is done in groups?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8ea66d70-8498-40ac-adf0-a48a0da76814" ownerguid="d688e396-2ba5-45d8-ab00-7ffb0aa1e72c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8ea916bd-c32b-4a4e-9c86-5cb27754f503" ownerguid="71430132-f2ea-40fe-b3f5-b6775741cc56"> -<ExampleWords> -<AUni ws="en">thread, yarn, rope, mat, cloth, clothes</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What things are made?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8ea92ea0-a9d4-43bc-8981-6dcbe1bfa34c" ownerguid="aaa5da77-f45a-4633-bf3d-c6da97b9c371"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8ead3015-5bd6-4ad5-a578-c189b45cb29d" ownerguid="4b3a9b5a-df7d-4ec2-9576-2c07fe396021"> -<ExampleWords> -<AUni ws="en">dancer, dance partner, chorus line, dance team</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the people who dance?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8eb0bf5b-13e5-4862-ae32-b15eb94ca6ac" ownerguid="35084c69-7be0-4d8b-81e0-e354085c47e6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">feel</AUni> -<AUni ws="es">sentir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0e0392d0-90fd-4042-8fe0-3145c902a4bc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8eb12c90-3637-49a6-9e65-e634ed3ce51b" ownerguid="2d894eca-8f6c-4b63-b265-0914a65d9be9"> -<ExampleWords> -<AUni ws="en">proof</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to how much alcohol is in a beverage?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8eb1ccdf-8344-4264-b1b2-b1c8f59d2125" ownerguid="ab8d8dc9-eeb7-41ff-93a9-cbbd50b89a73"> -<ExampleWords> -<AUni ws="en">incapacity, incompetence, inability, deficiency, lack of training</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person's inability to do a job?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8eb2d2e0-2cb6-439b-8438-6c9598ffee0d" ownerguid="1a29f916-4708-48fe-b9be-f870d35e6b26"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8eb3d235-d6ac-431b-8b25-317ca1c18225" ownerguid="3e546c11-bcb6-4024-b2f3-c15be40e257f"> -<ExampleWords> -<AUni ws="en">addiction, debauchery, dissipation, excess, excitability, extravagance, gluttony, indulgence, intemperance, leniency, overindulgence</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the quality of lacking self-control?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8eb6f35a-ccdb-4ebe-a1ee-3ee04c6fae57" ownerguid="320dd3d3-c487-4397-8e6e-7af6ccac5723"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="8eb74cc7-3d55-40d6-818c-8b37f9a0e662" ownerguid="a1d0c241-e331-4100-ba1f-a6175b8b1b8d"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">DEU 18.3 Törukunata, carnishkunata y cabrakunata sacrificiupaq apapäkushqanpitami cürakunapa derëchun kanqa palitillan, chakawshan y cuwäjun.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="8eb8f2a4-a7d8-40e3-9bf7-e9e55bfc7579" ownerguid="cac547d7-0905-4cca-971e-dbcc9c0c692b"> -<Form> -<AUni ws="qvm-x-ach">shilqui</AUni> -<AUni ws="qvm-x-acl">shilqui; shilqui; shilque</AUni> -<AUni ws="qvm-x-akh">shilki</AUni> -<AUni ws="qvm-x-akl">shilki; shilki; shilke</AUni> -<AUni ws="qvm-x-ame">shilki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="8ebbebff-4821-4054-b43f-1ab240eb02bf" ownerguid="80b83200-a7bd-4277-a948-9f7204df9caf"> -<Form> -<AUni ws="qvm-x-ach">distancia</AUni> -<AUni ws="qvm-x-acl">distancia</AUni> -<AUni ws="qvm-x-akh">distancia</AUni> -<AUni ws="qvm-x-akl">distancia</AUni> -<AUni ws="qvm-x-ame">distancia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="8ebeeb23-abb5-458c-ad5c-f6b799c7f66a" ownerguid="2a42bdae-8ce6-4b08-84f4-7d1cc3487d27"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="8ebf7180-b50c-4891-a1c1-c04f0779eabb" ownerguid="25ac70e7-7886-4b90-81f7-79e087d01899"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8ec45f31-86e8-491d-9f79-78b521ae8dab" ownerguid="7fed6281-326a-4a15-8cbf-dc574594da19"> -<ExampleWords> -<AUni ws="en">musical instrument, music stand, riser, baton</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What equipment is used in playing music?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8ec4b994-b56c-4877-bf40-9e4c847f421d" ownerguid="f2022802-4f43-4fa2-8c58-33a8b9e75895"> -<ExampleWords> -<AUni ws="en">multiply, double, treble, quadruple, proliferate, snowball</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to increasing a lot?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8ec729f7-3741-4b94-8527-1883f31b930d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lo:mu</AUni> -<AUni ws="qvm-x-acl">lo:mu; lo:mu; lo:mo</AUni> -<AUni ws="qvm-x-akh">lo:mu</AUni> -<AUni ws="qvm-x-akl">lo:mu; lo:mu; lo:mo</AUni> -<AUni ws="qvm-x-ame">lo:mu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lomo</AUni> -<AUni ws="qvm-x-acl">+lomo</AUni> -<AUni ws="qvm-x-akh">+lomo</AUni> -<AUni ws="qvm-x-akl">+lomo</AUni> -<AUni ws="qvm-x-ame">+lomo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.114" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2b720a3a-faf3-436b-a774-6fe4d64e870b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lomo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="773f5f73-d5e8-4eaf-938b-79f4b9c12102" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="51cc2c70-e108-48b3-a925-605d539497e7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lomo 
\entryTyp root 
\gENG loin 
\gSPN lomo 
\e +lomo 
\c N0 
\ach lo:mu 
\akh lo:mu 
\acl lo:mu / _# 
\acl lo:mu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lo:mo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lo:mu / _# 
\akl lo:mu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lo:mo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lo:mu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="8ecdaeac-e5cc-46cb-a2b7-511e6ea902fe" ownerguid="79cf4ef2-3ec7-463a-843e-a7b1bfcb0639"> -<Form> -<AUni ws="qvm-x-ach">vigila</AUni> -<AUni ws="qvm-x-acl">vigila</AUni> -<AUni ws="qvm-x-akh">vigila</AUni> -<AUni ws="qvm-x-akl">vigila</AUni> -<AUni ws="qvm-x-ame">vigila</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="8ecdd142-9fab-4c45-b9fd-de7334fc811c"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">results</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="8ecf252d-29f6-4392-b6f0-4781d0b2c73f" ownerguid="78dd1761-8403-4319-8b2d-a72f10256dc3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">heat</AUni> -<AUni ws="es">calentar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1d2c5ff9-4bf2-46f1-b5f3-67073ffe0468" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="8ed15e03-c5ee-480b-ad4a-d5f185af3a0f" ownerguid="e8fe404b-22ae-4e2b-bb69-426a58f2f72f"> -<Form> -<AUni ws="qvm-x-ach">shucucuy</AUni> -<AUni ws="qvm-x-acl">shucucuy</AUni> -<AUni ws="qvm-x-akh">shukukuy</AUni> -<AUni ws="qvm-x-akl">shukukuy</AUni> -<AUni ws="qvm-x-ame">shukukuy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8ed1a8ca-f15a-4ed6-bad9-703aa85775ba"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wichusca</AUni> -<AUni ws="qvm-x-acl">wichusca</AUni> -<AUni ws="qvm-x-akh">wichuska</AUni> -<AUni ws="qvm-x-akl">wichuska</AUni> -<AUni ws="qvm-x-ame">wichuska</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*witruska</AUni> -<AUni ws="qvm-x-acl">*witruska</AUni> -<AUni ws="qvm-x-akh">*witruska</AUni> -<AUni ws="qvm-x-akl">*witruska</AUni> -<AUni ws="qvm-x-ame">*witruska</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.709" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e2c25688-b41f-4220-9f3f-ef7adfa4ad3f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*witruska</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="571dbac2-46fa-493c-bcc4-4d6e9755a641" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="daf59bcb-9f22-4b62-ad3c-bd2482023a0f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *witruska 
\entryTyp root 
\gENG elbow 
\gSPN codo 
\e *witruska 
\c N0 
\ach wichusca 
\akh wichuska 
\acl wichusca 
\akl wichuska 
\ame wichuska</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="8ed41ef6-0d96-4828-ad4b-93742baabd7b" ownerguid="f39d9f45-6c4b-4e2f-9e86-6e1766545a1d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</Msa> -<Sense> -<objsur guid="2801e582-fd5f-46da-b446-4dd5882c9bda" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="8ed82166-667d-40cf-b86e-0ba12248d7a6" ownerguid="c8595a5f-4dde-4260-b8d8-265d0554ce93"> -<ExampleWords> -<AUni ws="en">winner, winning side, victor, champion, victorious army, champ</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to the person or group that wins?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="8edd5b0f-b69c-489c-ad72-04831c5ffe40" ownerguid="5fef74b3-10a2-4ee5-9b51-61d80776ff05"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="8eddd3fe-6307-4d67-89fe-c445cfab128a" ownerguid="da39c0d9-a5c1-4f10-bd3b-4e988abcab5a"> -<ExampleWords> -<AUni ws="en">conscience, conviction</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to something that causes someone to feel sorry?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8ede9c9d-ec56-4026-b0c1-7ef6e377e3aa" ownerguid="4d8d9a08-8b8c-47c8-811c-0a577d67e53f"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="8eded5c0-fcd1-43c9-87bd-69ab3e302e96"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">asi:</AUni> -<AUni ws="qvm-x-acl">asi:</AUni> -<AUni ws="qvm-x-akh">asi:</AUni> -<AUni ws="qvm-x-akl">asi:</AUni> -<AUni ws="qvm-x-ame">asi:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+así</AUni> -<AUni ws="qvm-x-acl">+así</AUni> -<AUni ws="qvm-x-akh">+así</AUni> -<AUni ws="qvm-x-akl">+así</AUni> -<AUni ws="qvm-x-ame">+así</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.850" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c1362fce-8348-4cc1-bffd-069ff75b1b5c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+así</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="12c34599-44bf-4064-90f3-0b5cc126ca0c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6031fe78-d309-4f1b-8c68-1c2f70efba82" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +así 
\entryTyp root 
\gENG thus 
\gSPN así 
\e +así 
\c N0 
\mp NeverForeshortened 
\ach asi: 
\akh asi: 
\acl asi: 
\akl asi: 
\ame asi: 
\mp +FinalC 
\mp +FinalLength 
\mp NeverChanged</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="8edf29d8-cdaf-4cfe-8d88-3741de9bde82" ownerguid="f8df16a9-d374-4f8c-a7b3-1f2a92376540"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="8edf715c-06db-46cf-b9d5-5d36b6e2b8b3" ownerguid="f30563f9-3a8b-4ca3-a632-77354009248b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b43ad487-6e73-48ff-9ec0-62d0371aba88" t="r" /> -</Morph> -<Msa> -<objsur guid="b0ee83ce-c1ff-41c7-8aa1-b6e53ae19ebd" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="8ee2c73d-60b0-4ca4-a630-cc8d58f9f69e" ownerguid="3caec22c-0922-42d7-95bf-bfae42f09ffb"> -<Form> -<AUni ws="qvm-x-ach">cläva</AUni> -<AUni ws="qvm-x-acl">cläva</AUni> -<AUni ws="qvm-x-akh">cläva</AUni> -<AUni ws="qvm-x-akl">cläva</AUni> -<AUni ws="qvm-x-ame">cläva</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8ee3f6e0-3fc0-4ad7-beb2-74869019cdbf" ownerguid="c345f278-91ff-463d-b9a6-8abac8a267eb"> -<ExampleWords> -<AUni ws="en">amaryllis, angelica, anise, balm, basil, chamomile, cardamom, cassia, catnip, chamomile, chervil, chicory, cosmopolitan, cowpea, cress, cumin, dill, fennel, fenugreek, feverfew, foxglove, ginseng, henbane, herb, horehound, hyssop, licorice, lucerne, mandrake, marjoram, medicinal, mint, parsley, parsnip, peppermint, portulaca, purslane, rosemary, sage, savory, saxifrage, skunk, sorrel, spearmint, spikenard, tarragon, thyme, valerian, watercress, wintergreen, yarrow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What types of aromatic herbs are there?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8ee56c80-4f6b-4d4e-b1f6-6989b08d0f46"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lisiona</AUni> -<AUni ws="qvm-x-acl">lisiona</AUni> -<AUni ws="qvm-x-akh">lisiona</AUni> -<AUni ws="qvm-x-akl">lisiona</AUni> -<AUni ws="qvm-x-ame">lisiona</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lesionar</AUni> -<AUni ws="qvm-x-acl">+lesionar</AUni> -<AUni ws="qvm-x-akh">+lesionar</AUni> -<AUni ws="qvm-x-akl">+lesionar</AUni> -<AUni ws="qvm-x-ame">+lesionar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.74" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0189540a-398a-42d5-b35e-c0207f3be814" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lesionar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1896578b-8a80-4536-93b9-f91d80fccc66" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dd1313fa-e38b-4687-a369-20c30c56fcea" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lesionar 
\entryTyp root 
\gENG injure 
\gSPN lesionar 
\e +lesionar 
\c V2 
\ach lisiona 
\akh lisiona 
\acl lisiona 
\akl lisiona 
\ame lisiona</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8eea5666-c8b9-4ff5-98d6-fd45eef22e97" ownerguid="768aed05-dbc9-4caf-9461-76cb3720f908"> -<ExampleWords> -<AUni ws="en">not hurt, painless, not feel a thing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(18) What words refer to not causing pain?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8eeaf383-7506-4cb9-9a20-28afe3e9c4fa" ownerguid="756f67e9-2b22-4c43-913c-ceff0e781545"> -<ExampleWords> -<AUni ws="en">immerse, submerge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to putting something into liquid?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8eeb1f11-f4e1-4732-8931-6600625a8c4d" ownerguid="6c54f0b0-b056-4090-b3f0-d5ec6710d4ab"> -<ExampleWords> -<AUni ws="en">be low, down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that something is low?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8eec7fde-837b-48e7-bea4-76bf5f306a72" ownerguid="8497fb66-8b91-46b9-a0d5-fb9385319561"> -<ExampleWords> -<AUni ws="en">taste, have a taste, try, sample, lick, sip</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to deliberately trying to taste something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8eed0d00-1053-4b36-a9c5-575a40034bdb" ownerguid="f732bdb5-9a04-468a-b50b-510f94d20fb4"> -<ExampleWords> -<AUni ws="en">table leg, table top, top of the table, edge of the table, corner of the table</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the parts of a table?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8eef5d81-3055-419b-80d8-5b6bfe1ee6d6" ownerguid="1d34380d-61bf-4247-9145-ba318a14a97e"> -<ExampleWords> -<AUni ws="en">block, cube, slab, bar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a piece that has flat sides?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8ef08293-7486-4c62-91ac-a4fa4a7379f1" ownerguid="6bf8ce57-1970-4efb-a7d7-b0bf8be6fb6b"> -<ExampleWords> -<AUni ws="en">timely, opportune, well-timed, come at the right time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something happening at the right time?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8ef2c278-fe87-4e16-ad8c-ab9ee5a4e086" ownerguid="1983847b-17b5-4bb0-b459-074e0259659a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8ef3ef95-d877-4b4f-8a3e-6ef621b9bc52" ownerguid="6ea9bfc6-723c-466f-9efc-0992879ae47d"> -<ExampleWords> -<AUni ws="en">tribal scar, tattoo (n), mutilation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a scar or mark deliberately made to decorate the body?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8ef9d508-a95b-41b2-af89-578e65685105"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">auquin</AUni> -<AUni ws="qvm-x-acl">auquin; auquin; auquen</AUni> -<AUni ws="qvm-x-akh">awkin</AUni> -<AUni ws="qvm-x-akl">awkin; awkin; awken</AUni> -<AUni ws="qvm-x-ame">awkin</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*awkin</AUni> -<AUni ws="qvm-x-acl">*awkin</AUni> -<AUni ws="qvm-x-akh">*awkin</AUni> -<AUni ws="qvm-x-akl">*awkin</AUni> -<AUni ws="qvm-x-ame">*awkin</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.890" /> -<DateModified val="2022-10-14 23:34:30.9" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c4e79b68-3be4-402d-9a8e-5531df13c028" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*awkin</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8692fe8c-2d45-4ca2-af74-830f2650555f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e52b958b-2a80-4434-b987-fad301e2bcba" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *awkin 
\entryTyp root 
\gENG old.man 
\gSPN viejo 
\e *awkin 
\c N0 
\mp +FinalC 
\ach auquin 
\akh awkin 
\acl auquin / _# 
\acl auquin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl auquen +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl awkin / _# 
\akl awkin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl awken +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame awkin</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8efa9c7b-413d-4c7d-b34b-fc4565c65b3a" ownerguid="d117aa22-3f18-47c4-9683-51ecf1dc7134"> -<ExampleWords> -<AUni ws="en">cluster of fruit, bunch of grapes, hand of bananas</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(18) What is a group of fruit called?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8efb07c6-ea3b-4bc6-a72d-fccbfe0091f5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">utsu</AUni> -<AUni ws="qvm-x-acl">utsu; utsu; utso</AUni> -<AUni ws="qvm-x-akh">utsu</AUni> -<AUni ws="qvm-x-akl">utsu; utsu; utso</AUni> -<AUni ws="qvm-x-ame">utsu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uchu.n</AUni> -<AUni ws="qvm-x-acl">*uchu.n</AUni> -<AUni ws="qvm-x-akh">*uchu.n</AUni> -<AUni ws="qvm-x-akl">*uchu.n</AUni> -<AUni ws="qvm-x-ame">*uchu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.200" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d87638fc-b211-4724-8c0f-9dff7790c02d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uchu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2205bcf2-0fb7-46f2-82a1-f53fa4d2c8ae" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="45d0e714-a951-4ecb-b61a-042e3ce6e60f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uchu.n 
\entryTyp root 
\gENG 
\gSPN ají 
\e *uchu.n 
\c N0 
\ach utsu 
\akh utsu 
\acl utsu / _# 
\acl utsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl utso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl utsu / _# 
\akl utsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl utso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame utsu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8efba512-e71c-42c8-9c3d-51030853ef84" ownerguid="879e66bc-af29-4fe4-86e0-0047973a57d6"> -<ExampleWords> -<AUni ws="en">stumble, trip, trip and fall, slip</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to stumbling?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8f033e35-5ebd-4bea-8345-9d13e2da08b2" ownerguid="50370272-6516-45ea-b473-8a09c2ec26af"> -<Form> -<AUni ws="qvm-x-ach">guetu</AUni> -<AUni ws="qvm-x-acl">guetu; guetu; gueto</AUni> -<AUni ws="qvm-x-akh">qetu</AUni> -<AUni ws="qvm-x-akl">qetu; qetu; qeto</AUni> -<AUni ws="qvm-x-ame">qitu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8f0448a2-9846-4c09-8bf0-3fdebf292475"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chegra</AUni> -<AUni ws="qvm-x-acl">chegra</AUni> -<AUni ws="qvm-x-akh">cheqra</AUni> -<AUni ws="qvm-x-akl">cheqra</AUni> -<AUni ws="qvm-x-ame">chiqra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*triqra</AUni> -<AUni ws="qvm-x-acl">*triqra</AUni> -<AUni ws="qvm-x-akh">*triqra</AUni> -<AUni ws="qvm-x-akl">*triqra</AUni> -<AUni ws="qvm-x-ame">*triqra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.127" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="269a842b-ad09-4bb8-baae-56b03314af72" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*triqra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="afe5a916-fea3-4cfb-b302-569cee797603" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0e963374-0454-4a4a-8d1e-30b9c3a514e8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *triqra 
\entryTyp root 
\gENG 
\gSPN sucio 
\e *triqra 
\c N0 
\ach chegra 
\akh cheqra 
\acl chegra 
\akl cheqra 
\ame chiqra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="8f0555af-a3a2-4d5a-bf9e-069769615648" ownerguid="db76365c-1a68-4afe-9248-dc19d0f2bbf6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="8f057403-3283-45e0-a1d4-5c3fa7af2450" ownerguid="cd9a92f0-4f0d-4383-a9cd-32ff7d9cefa4"> -<Form> -<AUni ws="qvm-x-ach">tutuma</AUni> -<AUni ws="qvm-x-acl">tutuma</AUni> -<AUni ws="qvm-x-akh">tutuma</AUni> -<AUni ws="qvm-x-akl">tutuma</AUni> -<AUni ws="qvm-x-ame">tutuma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8f07a15c-bb09-49b2-bff2-07d8e736144a" ownerguid="85f211ae-cc16-4042-8c27-e99ff8f01f61"> -<ExampleWords> -<AUni ws="en">give, give away, donate, let someone have, offer, spare</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to giving something to someone?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8f098359-ae2f-4935-8558-4911baa64932"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">numpa</AUni> -<AUni ws="qvm-x-acl">numpa</AUni> -<AUni ws="qvm-x-akh">numpa</AUni> -<AUni ws="qvm-x-akl">numpa</AUni> -<AUni ws="qvm-x-ame">numpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+nunca.2</AUni> -<AUni ws="qvm-x-acl">+nunca.2</AUni> -<AUni ws="qvm-x-akh">+nunca.2</AUni> -<AUni ws="qvm-x-akl">+nunca.2</AUni> -<AUni ws="qvm-x-ame">+nunca.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.578" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1f5f4c34-124d-4cf2-973b-e27be46fadb4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+nunca.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ed4c3722-4021-4d93-8366-c2b186904243" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="383c2ec3-31d1-4892-9d6f-69c8146f1d49" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +nunca.2 
\entryTyp root 
\gENG never 
\gSPN nunca 
\e +nunca.2 
\c R0 
\ach numpa 
\akh numpa 
\acl numpa 
\akl numpa 
\ame numpa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8f0b27ca-8223-4e67-8600-7096fd25be52"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">puchpus</AUni> -<AUni ws="qvm-x-acl">puchpus</AUni> -<AUni ws="qvm-x-akh">puchpus</AUni> -<AUni ws="qvm-x-akl">puchpus</AUni> -<AUni ws="qvm-x-ame">puchpus</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*putrpus</AUni> -<AUni ws="qvm-x-acl">*putrpus</AUni> -<AUni ws="qvm-x-akh">*putrpus</AUni> -<AUni ws="qvm-x-akl">*putrpus</AUni> -<AUni ws="qvm-x-ame">*putrpus</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.54" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="067fd45c-f7ce-490b-9de8-882e10e538a2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*putrpus</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="739eb3aa-87d1-448c-a601-915864006452" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="26f5dc1a-d1b0-43cb-83f5-9e250fc36679" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *putrpus 
\entryTyp root 
\gENG plant 
\gSPN hierba 
\e *putrpus 
\c N0 
\mp +FinalC 
\ach puchpus 
\akh puchpus 
\acl puchpus 
\akl puchpus 
\ame puchpus</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8f0b441e-a1aa-4d2f-96e7-14bb13b7f641" ownerguid="17851b86-f8fb-4850-9b33-c1a9fcb0aec1"> -<ExampleWords> -<AUni ws="en">show hospitality, entertain, etiquette</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to showing hospitality to a visitor?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8f0de903-8416-4385-b9cc-f0cc55ec340c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">segpi</AUni> -<AUni ws="qvm-x-acl">segpi; segpe</AUni> -<AUni ws="qvm-x-akh">seqpi</AUni> -<AUni ws="qvm-x-akl">seqpi; seqpe</AUni> -<AUni ws="qvm-x-ame">siqpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*siqpi</AUni> -<AUni ws="qvm-x-acl">*siqpi</AUni> -<AUni ws="qvm-x-akh">*siqpi</AUni> -<AUni ws="qvm-x-akl">*siqpi</AUni> -<AUni ws="qvm-x-ame">*siqpi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.701" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="115e7ac3-ce09-4701-a59f-2efa2719fb40" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*siqpi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b704c9db-2761-4cd6-b0bb-9e758f0b8fd9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="314520c6-a372-417e-b05e-7e2f52faa611" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *siqpi 
\entryTyp root 
\gENG low.pants 
\gSPN pantalón.bajo 
\e *siqpi 
\c V1 
\mp +FinalI 
\ach segpi 
\akh seqpi 
\acl segpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl segpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl seqpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl seqpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame siqpi 
\i Segpi pantalón puriycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8f13af57-da2f-4178-b354-e822da6d9852" ownerguid="89ad4e41-bf08-4d93-a4f3-f72e8cc62bed"> -<Question> -<AUni ws="en">(4) What words describe the relationship between a husband's siblings and his wife's siblings?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8f1500d1-1c8b-4da9-ab4c-3c841f3d6fd7" ownerguid="99861dcb-c6ca-4e50-a19a-efadbb10c2cf"> -<ExampleWords> -<AUni ws="en">old hat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe something that people have known about for a long time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8f162769-2f51-4b47-9ce6-fd9e4bfe1c78" ownerguid="8a81b9bc-9c66-4d57-a2d1-2e592604c4b1"> -<ExampleWords> -<AUni ws="en">filled</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that has been made full?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8f16a80a-819e-4906-a438-b82871fd0571" ownerguid="7bf05f4e-909f-40ca-b742-9be21eba9fbb"> -<ExampleWords> -<AUni ws="en">try to, attempt to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) attempt: the agent attempts to complete the action specified by the predicate. Note: this has a sense of incompleteness, and I have seen authors call this "Incomplete" and gloss the examples with 'try'.</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8f193636-44cf-44c2-ab9c-bd799bce875d" ownerguid="e916fa72-0848-4f7c-b412-8dfcfd814b0f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="8f196a2c-f9c4-47a7-a0e1-1e5e4787461d" ownerguid="330e710d-59ea-44c1-932d-f01134b35715"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="8f1ab2a1-1ed9-484c-8483-3aad952489d9" ownerguid="2bd7ff12-4fc2-449c-9505-03b47609512c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">June</AUni> -<AUni ws="es">junio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3055e5eb-62e9-49ce-b0ab-1e5cba610b2e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8f20a6e5-aa92-41a7-b5a5-a0d520566a58" ownerguid="fffa74fb-5b5c-453f-9120-94686033d894"> -<ExampleWords> -<AUni ws="en">swim, dog paddle, stroke, kick, breaststroke, freestyle, backstroke, swim underwater, tread water, wade</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to swimming?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8f268cae-46b2-4814-9b40-84d33a686b3e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">amista; amista:</AUni> -<AUni ws="qvm-x-acl">amista; amista:</AUni> -<AUni ws="qvm-x-akh">amista; amista:</AUni> -<AUni ws="qvm-x-akl">amista; amista:</AUni> -<AUni ws="qvm-x-ame">amista; amista:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+amistad</AUni> -<AUni ws="qvm-x-acl">+amistad</AUni> -<AUni ws="qvm-x-akh">+amistad</AUni> -<AUni ws="qvm-x-akl">+amistad</AUni> -<AUni ws="qvm-x-ame">+amistad</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.759" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a1698c3e-7bbc-454b-9a14-1901e33ef62b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+amistad</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ccd9ca57-c179-4862-914c-722239321f8c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a885e2bb-092c-4987-b6d3-b49217a5ccb4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +amistad 
\entryTyp root 
\gENG friendship 
\gSPN amistad 
\e +amistad 
\c N0 
\mp +FinalC 
\mp +underlong 
\ach amista foreshortened 
\ach amista: 
\mp +underlong 
\akh amista foreshortened 
\akh amista: 
\acl amista foreshortened 
\acl amista: 
\akl amista foreshortened 
\akl amista: 
\mp +underlong 
\ame amista foreshortened 
\ame amista: 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8f2759f0-89a5-4950-956d-d6a6794b0537" ownerguid="7ee3ccb5-e6cb-4028-9af5-62ae782967b5"> -<ExampleWords> -<AUni ws="en">work with (iron), forge, cast, shape, mold, heat, melt, weld, solder, hammer, work the bellows, hit with hammer, beat, plate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What does a blacksmith do?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="8f2a4930-efa1-4597-ab7e-7b4c6fd7f53a" ownerguid="bfc8e70f-4069-4341-b965-d8ea0e9e09e4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="8f2a63f2-89da-4318-a1b7-d645506daff0" ownerguid="040ba998-a84d-4f88-8fc5-d1a52c18eec0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8f2ac1af-898e-4d3a-861d-ef8cca323b59" ownerguid="b8d2fdb9-22ea-4040-8abb-aeeff0399f23"> -<ExampleWords> -<AUni ws="en">martyr, murdered man/woman, victim, fatality</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to the person who was killed?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8f2ad124-6c59-43c3-8c46-7092ee10b10e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pucshu</AUni> -<AUni ws="qvm-x-acl">pucshu; pucshu; pucsho</AUni> -<AUni ws="qvm-x-akh">pukshu</AUni> -<AUni ws="qvm-x-akl">pukshu; pukshu; puksho</AUni> -<AUni ws="qvm-x-ame">pukshu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pukshu</AUni> -<AUni ws="qvm-x-acl">*pukshu</AUni> -<AUni ws="qvm-x-akh">*pukshu</AUni> -<AUni ws="qvm-x-akl">*pukshu</AUni> -<AUni ws="qvm-x-ame">*pukshu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.982" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c8cfa001-d9ee-4072-8f16-8ce5e93d7c54" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pukshu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6555876c-bca0-4e6a-9dfa-91ba9e240cae" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b1eae67a-fb81-4f62-acf3-1804d0cc7cc5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pukshu 
\entryTyp root 
\gENG 
\gSPN 
\e *pukshu 
\c N0 
\ach pucshu 
\akh pukshu 
\acl pucshu / _# 
\acl pucshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pucsho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pukshu / _# 
\akl pukshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl puksho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pukshu 
\i 2SA 14.25 Israel nacioncho manami pipis Absalónnog cuyaylapag runaga cargantsu. Payga chaqui puntanpita uma pucshunyagmi camaragla cargan. Tsaynog captinmi lapan runacuna payta cuyapäcog.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8f2c6946-c11b-403b-9a7c-6ff295d6cb25" ownerguid="c103d339-24f2-45c6-8539-d3c445e15c49"> -<ExampleWords> -<AUni ws="en">behold, look, will you look at that, get a load of this, (point)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used to direct someone's attention to something?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="8f2cadfd-2b4e-4dc2-b249-61f8f4abe576" ownerguid="3d020b79-f1d4-4a06-bae2-2daaa658474b"> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="8f2d035b-dca7-48b3-bfd3-4be728ff3e9d" ownerguid="ec1bcace-fc10-45df-8e1f-29bce1ef786a"> -<ExampleWords> -<AUni ws="en">conversation, discussion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to an event or time period when people talk to each other?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8f2d5a70-c4ff-4a8d-bc87-c08a9904f2be" ownerguid="8c28c640-db5b-43e2-a1e6-b0e381962129"> -<ExampleWords> -<AUni ws="en">domesticated animal, livestock, pet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a domesticated animal?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8f2fb60a-ff21-435a-a9d4-f579c5d7e851"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">arash</AUni> -<AUni ws="qvm-x-acl">arash</AUni> -<AUni ws="qvm-x-akh">arash</AUni> -<AUni ws="qvm-x-akl">arash</AUni> -<AUni ws="qvm-x-ame">arash</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*arash</AUni> -<AUni ws="qvm-x-acl">*arash</AUni> -<AUni ws="qvm-x-akh">*arash</AUni> -<AUni ws="qvm-x-akl">*arash</AUni> -<AUni ws="qvm-x-ame">*arash</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.820" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2ce23e01-1b67-447f-8590-cc9f5af74090" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*arash</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="478501ce-8952-4fc3-9b00-5aa5aaba24f8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8e22b698-d917-429a-bcc9-2bde7a7eee03" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *arash 
\entryTyp root 
\gENG lizard 
\gSPN lagartija 
\e *arash 
\c N0 
\mp +FinalC 
\ach arash 
\akh arash 
\acl arash 
\akl arash 
\ame arash 
\i Lev 11.30 Shulaccuna impürumi caycan salamanqesa carpis, cocodrilo carpis, lagarto carpis, arash carpis y camaleón carpis.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="8f30f828-e15b-4a29-9e12-ee4ae6509d6c" ownerguid="0b33e2e3-ea5c-42b5-9c9c-904b89913aeb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="8f319bbd-7390-471f-b19e-5ac25dd33219" ownerguid="6f7fa8b9-1610-432a-b7a5-06f5a6db505c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8f329186-f3b0-4dfe-a157-4d0c1b759980" ownerguid="a105e31c-1268-4fc2-8655-838d34860ece"> -<ExampleWords> -<AUni ws="en">Lake Superior, Lake Michigan</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the names of the lakes in the language area?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8f34ae54-9cf2-467a-a590-75b8f32ee269" ownerguid="cf38d9ba-f7bc-4b2b-90f3-46510c07ddfb"> -<Form> -<AUni ws="qvm-x-ach">gonchi</AUni> -<AUni ws="qvm-x-acl">gonchi; gonchi; gonche</AUni> -<AUni ws="qvm-x-akh">qonchi</AUni> -<AUni ws="qvm-x-akl">qonchi; qonchi; qonche</AUni> -<AUni ws="qvm-x-ame">qunchi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="8f3b45f3-3d18-41ba-b593-022f361d002a" ownerguid="b6f446d5-4062-4774-b109-10b3e1b82048"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="4fcde5bd-30c9-482c-b4db-2ae0bb791c7c" t="o" /> -<objsur guid="d0de9307-7ea4-4e06-a27f-6f9e0805ca5d" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiAnalysis" guid="8f3ca5ee-a855-4813-aff8-7c1eae13a948" ownerguid="2c24c135-6ca7-4348-9590-c64a2341cd8a"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="90eef418-0468-4d10-82b7-7e093037f2ab" t="o" /> -<objsur guid="62b91962-a09c-4756-bc1c-5e4550010add" t="o" /> -<objsur guid="4ee72ee5-0825-4f7e-bbed-7084d309b896" t="o" /> -<objsur guid="6bfb8270-c97e-40b5-afac-e7bb4cd4008f" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="8f3e3a8c-193e-44ab-acc4-61f633a01a30" ownerguid="1ff743cb-49e0-483d-8a1d-4603a7d6c395"> -<ExampleWords> -<AUni ws="en">decrease (n), reduction, drop, fall, decline, downturn, loss, cut, slump, collapse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a decrease in number or amount?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8f3e7179-b081-40dd-8076-2a25b88592dd" ownerguid="1fd8a8d6-6795-4a5b-90e0-342e8b0975a1"> -<ExampleWords> -<AUni ws="en">explode, blow up, detonate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to bombs or chemicals exploding?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="8f3e74b7-078c-4fc6-9b9e-9bafef987781"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Kutikäriyna</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="8f40f64c-5cc6-4f56-a2b4-6b4f60fa1fdd" ownerguid="eba15b58-b8ca-4123-9d5e-ae4f24a0db78"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="c0a8d088-78b3-40e6-a4ea-e43393fea3a3" t="r" /> -</Morph> -<Msa> -<objsur guid="3503ea2c-6d6a-40bd-ab49-d2f29a6d368a" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="8f46496a-d5b2-411d-944d-9d4d4b6f2e31" ownerguid="8383b4cb-e14a-4d04-a8c3-9c5276384953"> -<Abbreviation> -<AUni ws="en">3.3.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.123" /> -<DateModified val="2022-9-23 16:55:8.123" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to refusing to permit someone to do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Refuse permission</AUni> -</Name> -<Questions> -<objsur guid="55e3ae72-bfec-40e9-bce5-0155abcee593" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="8f48ecbc-3dbc-4c33-9027-67c1c61bf41f" ownerguid="9d9e2273-4ac9-4918-bb0c-8d503ed62821"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="8f49aecf-bcf7-4d75-8615-0cf4b0c455d3" ownerguid="e7b229cb-037f-4f90-9be8-406afc73735d"> -<Form> -<AUni ws="qvm-x-ach">läja</AUni> -<AUni ws="qvm-x-acl">läja</AUni> -<AUni ws="qvm-x-akh">läja</AUni> -<AUni ws="qvm-x-akl">läja</AUni> -<AUni ws="qvm-x-ame">läha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8f4b58a3-1db0-45cf-a092-e4cf9a9bc1c7" ownerguid="be89e0ba-4c6a-4986-ac0d-859a901b89a1"> -<ExampleWords> -<AUni ws="en">imagine, be in the mind, be in your mind, be seeing things, hallucinate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to imagining things that do not exist?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8f4c15fa-54f9-41fc-8de3-2657d57e81f2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shutu</AUni> -<AUni ws="qvm-x-acl">shutu; shuto</AUni> -<AUni ws="qvm-x-akh">shutu</AUni> -<AUni ws="qvm-x-akl">shutu; shuto</AUni> -<AUni ws="qvm-x-ame">shutu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shutu.v</AUni> -<AUni ws="qvm-x-acl">*shutu.v</AUni> -<AUni ws="qvm-x-akh">*shutu.v</AUni> -<AUni ws="qvm-x-akl">*shutu.v</AUni> -<AUni ws="qvm-x-ame">*shutu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.662" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1dfdc916-4b15-43fe-80a1-a751bee7e476" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shutu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f7f59c28-26c0-49cc-9438-76091be6adb1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f29c2ac0-8fb6-4074-8001-dd8ccb3b4610" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shutu.v 
\entryTyp root 
\gENG to.drip 
\gSPN gotear 
\e *shutu.v 
\c V1 
\ach shutu 
\akh shutu 
\acl shutu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shuto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shutu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shuto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shutu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="8f4c9266-a025-4b7a-bd67-fe0c043bf6f5" ownerguid="f7960e84-5af9-4999-9028-783058aa8c5c"> -<Abbreviation> -<AUni ws="en">8.1.5.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.569" /> -<DateModified val="2022-9-23 16:55:8.569" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that indicate whether a number or amount is exact--not more and not less.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Exact</AUni> -</Name> -<Questions> -<objsur guid="9e2137ad-5599-4a44-a21b-05dbed54cdcd" t="o" /> -<objsur guid="5cbfb3cc-d3d8-405e-b48e-24048fd64d00" t="o" /> -<objsur guid="ef7c4402-a1bb-43db-a1ac-68a5991607cc" t="o" /> -<objsur guid="51c0b73d-0f46-4aa1-ad21-496786a6bcce" t="o" /> -<objsur guid="c2c005d0-788f-4115-aac6-014ffc3e2a54" t="o" /> -<objsur guid="b0727d7d-ae66-4c13-9e48-4c295b0b19ac" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="ca752706-1c9e-43e7-bd17-845c4736ccd8" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="8f4d1f54-6058-49eb-a074-0dc5364908a4" ownerguid="99861dcb-c6ca-4e50-a19a-efadbb10c2cf"> -<ExampleWords> -<AUni ws="en">antique, antiquities</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words refer to something that is old?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8f59cd3a-6443-4abb-9505-cfcb0682d9f7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">vinci</AUni> -<AUni ws="qvm-x-acl">vinci; vince</AUni> -<AUni ws="qvm-x-akh">vinci</AUni> -<AUni ws="qvm-x-akl">vinci; vince</AUni> -<AUni ws="qvm-x-ame">vinci</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vencer</AUni> -<AUni ws="qvm-x-acl">+vencer</AUni> -<AUni ws="qvm-x-akh">+vencer</AUni> -<AUni ws="qvm-x-akl">+vencer</AUni> -<AUni ws="qvm-x-ame">+vencer</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.353" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d6ab6dcb-962c-4bc2-b22a-079b621045fa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vencer</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="82700189-f942-4890-a528-56dc2208cb70" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3d45b8da-d44d-45db-810c-0ed611add210" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vencer 
\entryTyp root 
\gENG defeat 
\gSPN vencer 
\e +vencer 
\c V2 
\mp +FinalI 
\ach vinci 
\akh vinci 
\acl vinci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl vince +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl vinci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl vince +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame vinci</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8f5b098c-593f-4b3f-aa5f-dd9cc09505ac" ownerguid="6bd023f6-730e-44c2-ae8f-78df967e2e18"> -<ExampleWords> -<AUni ws="en">jerk, yank, tug</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to pulling something quickly or suddenly?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8f5e1e2c-6e74-4e23-8a6c-d77e4d169506"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sinya</AUni> -<AUni ws="qvm-x-acl">sinya</AUni> -<AUni ws="qvm-x-akh">sinya</AUni> -<AUni ws="qvm-x-akl">sinya</AUni> -<AUni ws="qvm-x-ame">sinya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sonar.2</AUni> -<AUni ws="qvm-x-acl">+sonar.2</AUni> -<AUni ws="qvm-x-akh">+sonar.2</AUni> -<AUni ws="qvm-x-akl">+sonar.2</AUni> -<AUni ws="qvm-x-ame">+sonar.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.723" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6bd613df-153c-4d54-b3d0-936e7a6544bc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sonar.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="05125bd3-a015-4882-9d4e-d66a5e3d5ee0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ff0379d4-2c69-4b74-a08b-9e7d5e6f867b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sonar.2 
\entryTyp root 
\gENG 
\gSPN 
\e +sonar.2 
\c V1 
\ach sinya 
\akh sinya 
\acl sinya 
\akl sinya 
\ame sinya 
\i PRO 30.32,33 lapan fuerzayquiwan sengayquita sinyacur yawarta jorgushgayquinogmi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="8f60c7e1-b7c1-4867-8972-b11d3a663867" ownerguid="34a00b5a-dd25-4b0e-96d4-0f7cad0a9ffd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="8f60f513-ff41-4dda-9636-e747e0e7b65f" ownerguid="fbe87bb5-f2d1-4e5b-9b9f-5151c88ed3ec"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 R0/R0 V0/V0 ONSHEV/ONSHEV BN/BN</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">DUB</AUni> -<AUni ws="es">DUBIT</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4b57b933-e619-41d1-b731-b85722e2a8ff" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="8f60fb41-eed6-42d5-b95f-4b45f15d64a5" ownerguid="a37448c3-7461-486b-b16e-55acdf55f3c2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">crack</AUni> -<AUni ws="es">partir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f2c3e627-9f69-4bb0-9540-403ee5a3106c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="8f611b1b-7a0c-4c2d-aa32-0c0ebb7b8508" ownerguid="93481409-ad52-4f7c-a289-3fb3dea3cc37"> -<Form> -<AUni ws="qvm-x-ach">düda</AUni> -<AUni ws="qvm-x-acl">düda</AUni> -<AUni ws="qvm-x-akh">düda</AUni> -<AUni ws="qvm-x-akl">düda</AUni> -<AUni ws="qvm-x-ame">düda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="8f612b2f-84d4-4a0e-8332-1a47079740dc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ofiendi</AUni> -<AUni ws="qvm-x-acl">ofiendi; ofiende</AUni> -<AUni ws="qvm-x-akh">ofiendi</AUni> -<AUni ws="qvm-x-akl">ofiendi; ofiende</AUni> -<AUni ws="qvm-x-ame">ofiendi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ofender</AUni> -<AUni ws="qvm-x-acl">+ofender</AUni> -<AUni ws="qvm-x-akh">+ofender</AUni> -<AUni ws="qvm-x-akl">+ofender</AUni> -<AUni ws="qvm-x-ame">+ofender</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.618" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="23526206-5b8f-4e85-9bcd-13465dd0847f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ofender</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="60e66cbc-95b9-4ad2-9861-4e40a5585583" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="58070153-4914-4d91-9b2a-23fbfcea951b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ofender 
\entryTyp root 
\gENG offend 
\gSPN ofender 
\e +ofender 
\c V2 
\mp +FinalI 
\ach ofiendi 
\akh ofiendi 
\acl ofiendi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ofiende +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ofiendi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ofiende +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ofiendi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="8f625ffb-9d4d-4102-960e-e61f57558d31" ownerguid="9aff8697-9a18-4058-bcf0-d892577efae3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="8f63d68d-0ac9-468a-a0f2-ed66aff92819" ownerguid="9fc41e37-c61f-4b55-a5b9-d3c3da85925d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">squat</AUni> -<AUni ws="es">agacharse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b4d2972d-299e-4dc3-bab4-58d084c82f49" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="8f65beef-b40a-44a7-985e-efc267b8ee98" ownerguid="1431abed-afa5-49b5-8037-39547186176b"> -<Form> -<AUni ws="qvm-x-ach">cuartel; cuartil</AUni> -<AUni ws="qvm-x-acl">cuartel; cuartil; cuartel</AUni> -<AUni ws="qvm-x-akh">cuartel; cuartil</AUni> -<AUni ws="qvm-x-akl">cuartel; cuartil; cuartel</AUni> -<AUni ws="qvm-x-ame">cuartel; cuartil</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="8f66f2ab-5fb0-4ad2-9e16-e6403cbb1daf" ownerguid="9a7604b4-d42f-44b7-9aef-47847dc93f0b"> -<ExampleWords> -<AUni ws="en">unbearable, unbearably, intolerable, intolerably, unendurable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe something that is too painful to accept?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8f680cc6-52ca-4ee5-b40f-9101111a4e15" ownerguid="4870b2b3-03fb-4964-9e2e-84460c9a4cce"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pile</AUni> -<AUni ws="es">montonar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8b61ce26-d083-4887-b3a6-8dd01addbdc1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8f6845c1-c843-43b0-a552-c1ccb09f5fb0" ownerguid="267b98aa-e17c-4ebb-a752-ed4210701867"> -<ExampleWords> -<AUni ws="en">observant, perceptive, eagle-eyed, have eyes like a hawk, have eyes in the back of your head, powers of observation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who is good at noticing things?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="8f68d85f-70f8-4662-9b4b-1dd2900a002a" ownerguid="e76227e8-4a04-4fbd-a16e-5baa3d9e97a9"> -<Abbreviation> -<AUni ws="en">1.6.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to animals eating. Because animals often eat in very different ways from people, many languages will have words that are specific to the way an animal eats.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Animal eating</AUni> -</Name> -<Questions> -<objsur guid="d68fbfd3-9d56-4d8c-93e5-11fb6acd4f65" t="o" /> -<objsur guid="daf2c50c-6184-49e7-b751-4bc9c05bd821" t="o" /> -<objsur guid="633931ac-4e3c-421b-900c-6b4831d3ef2c" t="o" /> -<objsur guid="d69107bc-dfd4-49fb-af8f-41fe4e0765a4" t="o" /> -<objsur guid="b47bf421-cb14-4406-b9c9-cb871678ec4e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="8f6a4b20-36d1-4f3e-b8c2-4314b42cf039" ownerguid="99b40843-54bf-4c59-ae1d-d7146cebec48"> -<ExampleWords> -<AUni ws="en">luckily, fortunately, happily</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words indicate that something bad did not happen as a result of luck?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8f6d8020-9bf9-446b-8d3f-84c113c34974" ownerguid="7f6c81fb-02a4-415f-a363-fb11cc6b9254"> -<ExampleWords> -<AUni ws="en">Santa Claus, elf, fairy, giant, dwarf, sprite, genie, dragon, monster, Cyclops, vampire, alien</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to supernatural beings that are considered to be mythological or fictional and not real?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8f6fe9b8-e447-4270-bae0-0c57c493ae74" ownerguid="295dc021-5b50-47b3-8340-1631c6d6fadc"> -<ExampleWords> -<AUni ws="en">comfortable, comfort, comfy, in comfort, snug</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling comfortable?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8f711d45-1a2f-44c1-9fdd-ed2db633e0e8" ownerguid="9694bf77-8731-4f05-a894-cba7797278b9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">encircle</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="079b7e91-7715-46d0-977d-ae537ff0a15e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="8f7259e1-c9fd-4f49-a9ea-1f4c039e9d06"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jipash</AUni> -<AUni ws="qvm-x-acl">jipash</AUni> -<AUni ws="qvm-x-akh">jipash</AUni> -<AUni ws="qvm-x-akl">jipash</AUni> -<AUni ws="qvm-x-ame">hipash</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hipash</AUni> -<AUni ws="qvm-x-acl">*hipash</AUni> -<AUni ws="qvm-x-akh">*hipash</AUni> -<AUni ws="qvm-x-akl">*hipash</AUni> -<AUni ws="qvm-x-ame">*hipash</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.721" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b6f36007-951d-4604-87d1-cc2628ff6c70" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hipash</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1468d032-7543-46d7-8d90-71e27c40bffb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1967350c-2cd0-467c-9602-58f8157c3851" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hipash 
\entryTyp root 
\gENG young.girl 
\gSPN muchacha 
\e *hipash 
\c N0 
\mp +FinalC 
\ach jipash 
\akh jipash 
\acl jipash 
\akl jipash 
\ame hipash</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="8f779877-7d86-4683-8a8b-298c7fc62815" ownerguid="1e9a0881-f715-4057-9af8-251cb8eec9da"> -<Abbreviation> -<AUni ws="en">3.5.1.1.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to speaking poorly.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Speak poorly</AUni> -</Name> -<Questions> -<objsur guid="41c14613-f6fd-4406-8619-6e2c9bf55937" t="o" /> -<objsur guid="878c1c4d-41ff-4753-9f84-3210b7a6a56d" t="o" /> -<objsur guid="f6af1ef6-0d78-4bd9-a719-4db5226e2139" t="o" /> -<objsur guid="7c8999ef-ab19-4974-93a8-bccdf1f93723" t="o" /> -<objsur guid="2e5ace90-5795-4e92-b9e3-99163ea973d7" t="o" /> -<objsur guid="557e96f1-ae8f-4067-8479-e7bc118ee7a8" t="o" /> -<objsur guid="6f098312-c8f7-473e-99b6-a5a42f9c4064" t="o" /> -<objsur guid="6af75c2a-6407-419f-a23e-1ea2b0434522" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="8f77b757-2ee1-492c-b3c9-aedd5ac165ee" ownerguid="94b58705-8a11-40a4-bef3-496594c01c13"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="49607efb-9462-45ee-b67a-b5342503aa31" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="b83a9c4f-fc00-486c-82d1-e4fd0cc87e35" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="8f799eec-e143-4cf8-bce8-78ffc7c44fa5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">casti:gu</AUni> -<AUni ws="qvm-x-acl">casti:gu; casti:gu; casti:go</AUni> -<AUni ws="qvm-x-akh">casti:gu</AUni> -<AUni ws="qvm-x-akl">casti:gu; casti:gu; casti:go</AUni> -<AUni ws="qvm-x-ame">casti:gu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+castigo</AUni> -<AUni ws="qvm-x-acl">+castigo</AUni> -<AUni ws="qvm-x-akh">+castigo</AUni> -<AUni ws="qvm-x-akl">+castigo</AUni> -<AUni ws="qvm-x-ame">+castigo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.820" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="17512db4-123c-4b02-beca-0bb7d1511d45" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+castigo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6b33e92c-30c0-4522-b72a-9903d7fd5259" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cf8f2677-0335-47b1-acd4-cb366efb9b1e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +castigo 
\entryTyp root 
\gENG punishment 
\gSPN castigo 
\e +castigo 
\c N0 
\ach casti:gu 
\akh casti:gu 
\acl casti:gu / _# 
\acl casti:gu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl casti:go +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl casti:gu / _# 
\akl casti:gu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl casti:go +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame casti:gu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="8f79f140-2932-4f8b-b78f-ae8a45fa79df" ownerguid="93757be7-a56b-401d-a711-9fec677293d2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lodge</AUni> -<AUni ws="es">hospedarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1319aa46-ea1f-4045-a77a-1978d236fcae" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="8f7c43b0-84ef-4a40-b0d0-b6115dc9398d" ownerguid="95466053-500c-4505-8bce-f085aa4664a3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="8f7c9d7d-9b2a-40f3-9314-8f16f0aa31ef" ownerguid="5c35c2f8-d17c-42a3-aa12-a4c29b6603e8"> -<Abbreviation> -<AUni ws="en">8.3.1.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.607" /> -<DateModified val="2022-9-23 16:55:8.607" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to folding something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Fold</AUni> -</Name> -<Questions> -<objsur guid="de22a3e5-c6c1-4a60-851b-43b544fb2420" t="o" /> -<objsur guid="3808562e-c1a1-49e4-9836-0df615ad1ba5" t="o" /> -<objsur guid="ced78aec-9778-4d94-af31-ec867a755cd4" t="o" /> -<objsur guid="624d0235-6e27-4e8d-bebd-39025d039bd1" t="o" /> -<objsur guid="e78689f4-b843-4985-a1b8-ab5671df2fd2" t="o" /> -<objsur guid="af3e144f-7adc-4105-b80e-5777dc497008" t="o" /> -<objsur guid="331592df-f46e-4c42-8796-93c96d858cb1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="8f81446d-4acd-4c75-b9d0-ef98256af0b7" ownerguid="ab1c7931-4729-4d37-8b47-b95438f34f58"> -<Form> -<AUni ws="qvm-x-ach">cuesta</AUni> -<AUni ws="qvm-x-acl">cuesta</AUni> -<AUni ws="qvm-x-akh">cuesta</AUni> -<AUni ws="qvm-x-akl">cuesta</AUni> -<AUni ws="qvm-x-ame">cuesta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="8f8238f0-673f-41bd-9058-4581f7555c45" ownerguid="b76173eb-aeae-4006-92e5-2283e56986bc"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="8f8c40fd-82b0-4e22-aa25-1d0b82372c14" ownerguid="0b48bd1c-e9e7-40e9-9181-3d0bc411185a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">abandon</AUni> -<AUni ws="es">abandonar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="25ba9a8c-70a1-4d45-afa3-e5e9c18dfa2d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="8f8e49a0-b4dd-417f-98f4-6ca80f8a6d20"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Noemí</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="8f8fe4c3-73ea-43fb-a649-aeb425cefb5c" ownerguid="bfa4fd0d-3d3f-4b5b-a76b-64e32f2f924d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="8f922a1a-0c7c-4a6b-bd36-04a88aeaceeb" ownerguid="9c5b2be3-4ac4-4981-aa97-eae8592e85e2"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8f982976-82d3-44a5-a4aa-a4bfab39db88" ownerguid="32bf055a-d666-4d6e-a3c6-6c984e2c9868"> -<ExampleWords> -<AUni ws="en">telephone, phone, cell phone</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to telephones?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8f98f745-950e-4444-951e-75fbe2784aa9" ownerguid="e496a6d3-a00c-470e-81c3-314f3f97840e"> -<ExampleWords> -<AUni ws="en">leafy vegetable, salad, lettuce, cabbage, spinach, pumpkin leaves, cowpea leaves</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What types of leaves are eaten?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8f9c1493-1d9b-4bf9-a2c3-0485ba74598c" ownerguid="350667ee-592b-47af-adca-14e820ec58cf"> -<ExampleWords> -<AUni ws="en">deny, denial, negate, negation, disavow, disavowal, contradict, contradiction, repudiate, repudiation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used to refer to the process of denying the truth of something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8f9ec85c-3250-45ea-8785-9d3bc7a64444" ownerguid="e10b9449-08a3-4c13-aff2-31486749b62f"> -<ExampleWords> -<AUni ws="en">evidence, facts, proof</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to knowledge about a crime?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8fa150a5-1bb9-4963-80c9-f27d6e830553" ownerguid="ae6f73ab-432d-42e8-aa1a-c848652a13f0"> -<ExampleWords> -<AUni ws="en">girl, lass, young woman, schoolgirl</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a young woman?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8fa41a44-b4ad-4489-be15-79555b77b44d" ownerguid="9c4f821e-2dd3-4981-a024-96ba3c7ee477"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="8fa45805-f4f4-47e0-ab15-7ea16ba9133f" ownerguid="26f60a4b-11d5-435a-8dbd-ac29c06c14f6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="8fa5bf7d-2b09-47f7-bee5-cb289f910e7a" ownerguid="e7e5dbf2-6d5b-4869-b357-8a7860c29002"> -<ExampleWords> -<AUni ws="en">dissolve (in water), produce a solution</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a substance dissolving in water?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8fa700ed-58c1-4fd1-843e-2cd2317daac4" ownerguid="10e92a20-75c9-488b-b0bd-cef70ce61a44"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">move.to.side</AUni> -<AUni ws="es">echar.a.lado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ff385275-47c3-4b9c-a2e9-bcb77920bb28" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="8fab00a3-f851-4d10-852c-6cc38f263cb5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jirca</AUni> -<AUni ws="qvm-x-acl">jirca</AUni> -<AUni ws="qvm-x-akh">jirka</AUni> -<AUni ws="qvm-x-akl">jirka</AUni> -<AUni ws="qvm-x-ame">hirka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hirka</AUni> -<AUni ws="qvm-x-acl">*hirka</AUni> -<AUni ws="qvm-x-akh">*hirka</AUni> -<AUni ws="qvm-x-akl">*hirka</AUni> -<AUni ws="qvm-x-ame">*hirka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.729" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d22d6842-42e8-4d45-988e-3f06f9ef1e66" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hirka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="91a4c8a5-477a-4b49-87dc-1e91727ae38a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f58d73f2-d0d0-4054-8c54-e50498f55931" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hirka 
\entryTyp root 
\gENG countryside 
\gSPN campo 
\e *hirka 
\c N0 
\ach jirca 
\akh jirka 
\acl jirca 
\akl jirka 
\ame hirka 
\mcc *hirka / ~_ 3P.V</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="8fac2398-c0a9-43c2-a4a2-cebacef1da0a" ownerguid="0bc33ad0-55ec-4236-947b-fb62956441b4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="8fac2a47-5fa9-494e-9bae-2efc1f6bd9d6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ta</AUni> -<AUni ws="qvm-x-acl">ta</AUni> -<AUni ws="qvm-x-akh">ta</AUni> -<AUni ws="qvm-x-akl">ta</AUni> -<AUni ws="qvm-x-ame">ta</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.538" /> -<DateModified val="2022-10-16 15:27:47.114" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4f3f1430-f126-405a-98a8-5d0b732eb948" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">OBJ</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6debf4e9-614a-4dc3-aaa7-0d6a27afc1a7" t="o" /> -<objsur guid="eac932ef-fd79-454b-b2f7-95e85dbb829a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="043eec5a-5d9b-4292-877e-68d1d35e7f30" t="o" /> -<objsur guid="b7f05176-ee03-441c-9784-71a63de87417" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx OBJ 
\entryTyp suffix 
\gENG OBJ 
\gSPN OBJ 
\e OBJ 
\c N0/N0 BN/BN R0/R0 
\o 205 
\mp NeverMonophthongized 
\ach ta 
\akh ta 
\acl ta 
\akl ta 
\ame ta 
\mcc OBJ / ~_ PLUR 
\mcc OBJ / ~_ PRT2 
\mcc OBJ / ~_ OBJ</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8fac961a-685c-4efd-9735-1912e50dc944" ownerguid="1ec85151-eba0-48f4-b56d-4f8040602a4b"> -<ExampleWords> -<AUni ws="en">executor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to the person who distributes the property?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="8fafb28d-6170-40ea-a565-f6415372ebce" ownerguid="d1ffe734-0f20-4b85-81d7-feda360df240"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="f9b87870-7b39-41a5-8cb3-e991b17cf5ff" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8fb01575-dfd8-4294-8ed4-c6deb11422e7" ownerguid="9d6cbe74-93d6-41fb-b7e2-cc30adb28187"> -<ExampleWords> -<AUni ws="en">climb onto, get on, mount, embark, hop onto, jump onto</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to moving onto something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8fb018a6-bdfb-440a-b19a-a0f8dc4c4fbd" ownerguid="aae402d4-9510-49dc-8001-03c0b7e8ce5d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="8fb4670b-f1e0-453f-b59c-d68accb777a2" ownerguid="6798703b-c2c6-4f9d-8a2e-26b03ef04064"> -<Form> -<AUni ws="qvm-x-ach">escäma</AUni> -<AUni ws="qvm-x-acl">escäma</AUni> -<AUni ws="qvm-x-akh">escäma</AUni> -<AUni ws="qvm-x-akl">escäma</AUni> -<AUni ws="qvm-x-ame">escäma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="8fb4df72-f883-4ef8-b3bf-6c02e5de0924" ownerguid="5c8f69ec-e607-45a0-943a-4c405d198ad5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hair</AUni> -<AUni ws="es">pelo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bca4ceae-c70f-400a-8472-fc3e4c89a306" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8fb864ef-a12c-4148-9a51-db8b1e1737a1" ownerguid="025da6f4-b1b6-423a-8c0f-b324f531a6f1"> -<ExampleWords> -<AUni ws="en">botany, botanist, herbalist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the study of plants?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="8fb9a1a6-844d-45a5-86c7-977d3e420149" ownerguid="8080c7ed-e69a-4a8a-bd8d-bf3447b13630"> -<Abbreviation> -<AUni ws="en">6.2.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.428" /> -<DateModified val="2022-9-23 16:55:8.428" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to winnowing grain--to separate the chaff from the grain.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>7G Miscellaneous Constructions</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Winnow grain</AUni> -</Name> -<Questions> -<objsur guid="79db4f25-7a7d-40c7-b2c0-25650954a2ae" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="8fbed974-7d25-44c3-80cb-7d02e4069007" ownerguid="2dca9338-85cb-4f58-b40d-d2d759e8edd6"> -<Abbreviation> -<AUni ws="en">8.5.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that express the idea that something contains something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Contain</AUni> -</Name> -<Questions> -<objsur guid="cfa23dd0-8a20-40b2-8e0e-5d67b7d5828e" t="o" /> -<objsur guid="6684c7e5-af7f-4327-862f-4121f9cc7098" t="o" /> -<objsur guid="4ab52912-f1f9-40c8-81a7-a32b456b3bd7" t="o" /> -<objsur guid="d391acc9-171d-4176-a95d-d8a6ed2847ff" t="o" /> -<objsur guid="bb14ad32-1ef6-401d-bce0-22d2912aca86" t="o" /> -<objsur guid="90fa30a4-4de1-42d0-9f3b-1c287fec7c0d" t="o" /> -<objsur guid="45d9111d-8c42-4376-b629-1117fc570c7a" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="eca46133-c350-4573-a349-9b7ce11b6fa8" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="8fbf45b2-6336-4b86-b12d-77c196cbb5ad" ownerguid="6eaf4efd-cd63-477e-a0c4-16241a02b050"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8d05725f-6340-4c92-84e7-53c17db1f2b7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="8fc63483-1342-4db1-8ba1-7d523718647b" ownerguid="56a3860b-d54f-46cb-988f-d664127ccdb4"> -<Form> -<AUni ws="qvm-x-ach">ramäda</AUni> -<AUni ws="qvm-x-acl">ramäda</AUni> -<AUni ws="qvm-x-akh">ramäda</AUni> -<AUni ws="qvm-x-akl">ramäda</AUni> -<AUni ws="qvm-x-ame">ramäda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="8fc7d848-8007-4dcc-8c36-9b0b4da26f05" ownerguid="88843228-3d25-4192-af4b-b368a7803382"> -<Form> -<AUni ws="qvm-x-ach">qui</AUni> -<AUni ws="qvm-x-acl">qui</AUni> -<AUni ws="qvm-x-akh">ki</AUni> -<AUni ws="qvm-x-akl">ki</AUni> -<AUni ws="qvm-x-ame">ki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="3bc9aba3-0585-4f44-806b-3ed4184ffa92" t="r" /> -</PhoneEnv> -</rt> -<rt class="CmDomainQ" guid="8fc7eea7-7fef-44f4-8b56-dc21801aa4c5" ownerguid="6ab060ca-ecfc-4a46-accb-42b0473998cd"> -<ExampleWords> -<AUni ws="en">joint, connection, junction, intersection</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the place where two things (such as wires, roads, rivers) join together?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="8fc87ed3-39b7-4ab7-bd04-a78b29d056ba" ownerguid="72c734dc-727b-40ac-bfeb-bf6bbb79634a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StTxtPara" guid="8fd02b5b-ff2f-4b79-82a5-49b68248014e" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">rikapäman. </Run> -<Run ws="en">\tr %2%< V2 *rika > BEN1 1O 3%< V2 *rika > BEN1 1 COND</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="bb2d8ebc-79dc-437d-bf1a-a405c32af539" t="o" /> -<objsur guid="ea1b56b2-7326-4221-8fad-057bf311e7b4" t="o" /> -</Segments> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="8fd0e0a2-1b9d-4036-af10-684955b4761f" ownerguid="30ec66cd-df0e-475b-a614-7a91c8210db7" /> -<rt class="MoAffixAllomorph" guid="8fd16108-afa0-46a2-956c-3bc4cbb3eaf2" ownerguid="2b370eb5-3a3e-42fc-8753-fd2ad3dafa09"> -<Form> -<AUni ws="qvm-x-ach">man</AUni> -<AUni ws="qvm-x-acl">man</AUni> -<AUni ws="qvm-x-akh">man</AUni> -<AUni ws="qvm-x-akl">man</AUni> -<AUni ws="qvm-x-ame">man</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="8fd241b8-a560-4142-b717-3455380f336b" ownerguid="a7031101-5887-48a6-b1cf-07ce397bf9cf"> -<Form> -<AUni ws="qvm-x-ach">changui</AUni> -<AUni ws="qvm-x-acl">changui; changui; changue</AUni> -<AUni ws="qvm-x-akh">chanqi</AUni> -<AUni ws="qvm-x-akl">chanqi; chanqi; chanqe</AUni> -<AUni ws="qvm-x-ame">chanqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="8fd643f8-76e4-4814-8e99-9bb041dcfe4b" ownerguid="aeedc96f-9d42-4033-9d52-9289953dd046"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Lev 26.19 Mana cäsucog y orgullösu cashgayquipitami tamyatapis mana tamyatsimushagtsu y murushgayquipis mana wayongapagtsu.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="8fda01cc-e0f5-40fc-a6cd-163788e6b224"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">coro:na</AUni> -<AUni ws="qvm-x-acl">coro:na</AUni> -<AUni ws="qvm-x-akh">coro:na</AUni> -<AUni ws="qvm-x-akl">coro:na</AUni> -<AUni ws="qvm-x-ame">coro:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+corona.n1</AUni> -<AUni ws="qvm-x-acl">+corona.n1</AUni> -<AUni ws="qvm-x-akh">+corona.n1</AUni> -<AUni ws="qvm-x-akl">+corona.n1</AUni> -<AUni ws="qvm-x-ame">+corona.n1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.192" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="34daa9c1-323e-4d01-9f60-b6a3a08d4962" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+corona.n1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c8e9390d-ebbb-4314-930b-7328101c2510" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0dde4700-1519-4022-8d42-5b043770c12b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +corona.n1 
\entryTyp root 
\gENG crown 
\gSPN corona 
\e +corona.n1 
\c N0 
\ach coro:na 
\akh coro:na 
\acl coro:na 
\akl coro:na 
\ame coro:na 
\mcc +corona.n1 / ~_ [participle]</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8fda4a2c-04fb-4935-9830-42964363db35"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ocupa:du</AUni> -<AUni ws="qvm-x-acl">ocupa:du; ocupa:du; ocupa:do</AUni> -<AUni ws="qvm-x-akh">ocupa:du</AUni> -<AUni ws="qvm-x-akl">ocupa:du; ocupa:du; ocupa:do</AUni> -<AUni ws="qvm-x-ame">ocupa:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ocupado</AUni> -<AUni ws="qvm-x-acl">+ocupado</AUni> -<AUni ws="qvm-x-akh">+ocupado</AUni> -<AUni ws="qvm-x-akl">+ocupado</AUni> -<AUni ws="qvm-x-ame">+ocupado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.618" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b72bb652-8ec2-4342-8d09-e0b23b7c5635" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ocupado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="af12d262-df7f-4b5f-96ff-3ede02de589d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cde18103-0100-4218-93c5-7edd832dd08b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ocupado 
\entryTyp root 
\gENG busy 
\gSPN ocupado 
\e +ocupado 
\c N0 
\ach ocupa:du 
\akh ocupa:du 
\acl ocupa:du / _# 
\acl ocupa:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ocupa:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ocupa:du / _# 
\akl ocupa:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ocupa:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ocupa:du</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="8fda77ab-3b2b-46a5-8e6b-39b612a1c662" ownerguid="432acf5a-1d31-4f9c-8b2d-674b5dcec0b4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="8fdb404c-19e1-4295-b192-a0b51e6dc39f" ownerguid="d128c232-6dcb-4a21-bc9d-728f28e27005"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">war</AUni> -<AUni ws="es">guerra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="922e30f8-0c0b-4133-bdb4-8740dc964432" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="8fdbb94a-55bf-4afc-9983-f6b33312b1b7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsanca</AUni> -<AUni ws="qvm-x-acl">tsanca</AUni> -<AUni ws="qvm-x-akh">tsanka</AUni> -<AUni ws="qvm-x-akl">tsanka</AUni> -<AUni ws="qvm-x-ame">tsanka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chanka.v</AUni> -<AUni ws="qvm-x-acl">*chanka.v</AUni> -<AUni ws="qvm-x-akh">*chanka.v</AUni> -<AUni ws="qvm-x-akl">*chanka.v</AUni> -<AUni ws="qvm-x-ame">*chanka.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.274" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9c8b836a-5522-4133-afe7-193c0c524eeb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chanka.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="75539858-8a57-4ca5-a0bc-03e3f68b4828" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="42e61599-6c2f-4de4-8e97-4a42487b4094" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chanka.v 
\entryTyp root 
\gENG totter 
\gSPN ? 
\e *chanka.v 
\c V1 
\ach tsanca 
\akh tsanka 
\acl tsanca 
\akl tsanka 
\ame tsanka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8fdc9b23-20ed-46c9-aa61-5b47501acff7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ticsha</AUni> -<AUni ws="qvm-x-acl">ticsha</AUni> -<AUni ws="qvm-x-akh">tiksha</AUni> -<AUni ws="qvm-x-akl">tiksha</AUni> -<AUni ws="qvm-x-ame">tiksha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tiksha</AUni> -<AUni ws="qvm-x-acl">*tiksha</AUni> -<AUni ws="qvm-x-akh">*tiksha</AUni> -<AUni ws="qvm-x-akl">*tiksha</AUni> -<AUni ws="qvm-x-ame">*tiksha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.896" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="71ce60fa-028b-4f4d-95dc-56c3a7acba8a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tiksha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="789a9bad-d9ef-45a6-ab88-1f66e0f9c337" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4e8bee9f-6b0b-490b-b264-9c928c0137c0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tiksha 
\entryTyp root 
\gENG tilt 
\gSPN inclinar 
\e *tiksha 
\c V1 
\ach ticsha 
\akh tiksha 
\acl ticsha 
\akl tiksha 
\ame tiksha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8fdcd118-6c3f-44f9-9d47-c614c12d6e48" ownerguid="5e7a5899-df78-4aa7-bec9-b354acfe087f"> -<ExampleWords> -<AUni ws="en">regulation of trade, regulation of finance, coinage, printing money, public works, keeping the peace, waging war, putting down rebellion, passing laws, enforcing the law, punishing crime</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the functions of government?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="8fdd20a5-9e33-4c68-85c6-1820a643f7fb" ownerguid="5bb495a5-ab5b-4409-8cd1-e48b56401fad"> -<ExampleWords> -<AUni ws="en">moment, instant, point in time, instantaneous, instantaneously</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something happens for a very short time?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="8fdd23e2-a6bd-4e20-bb31-a4f7e04e9968" ownerguid="4e2ab412-6bb4-411d-ae7e-70062b3c7375"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="8fde22ee-01be-4f30-b096-98427742ab0c" ownerguid="e6934a73-27f6-4bc8-a08d-4c5a2d3b330c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="8fde3700-f71e-41b4-bf59-e5f182935722" ownerguid="e1de9a36-08e7-43a7-94de-7ac6139417e4" /> -<rt class="LexSense" guid="8fe6a513-5f0f-4a48-a1ab-2c8e96b3e431" ownerguid="b0eda643-cc55-41f2-8fd4-152db522e813"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">roof</AUni> -<AUni ws="es">techo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="995aa37d-c0a0-4536-9d94-e841811de23a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="8fe88230-944c-4cfe-973d-a79050a56e5e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">co:lis</AUni> -<AUni ws="qvm-x-acl">co:lis</AUni> -<AUni ws="qvm-x-akh">co:lis</AUni> -<AUni ws="qvm-x-akl">co:lis</AUni> -<AUni ws="qvm-x-ame">co:lis</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+col</AUni> -<AUni ws="qvm-x-acl">+col</AUni> -<AUni ws="qvm-x-akh">+col</AUni> -<AUni ws="qvm-x-akl">+col</AUni> -<AUni ws="qvm-x-ame">+col</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.142" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c2368d8d-9972-4bab-83e1-0a25b98f87d0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+col</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e384640d-300f-4451-bf4e-81b59510a94c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="265006a8-3bab-4747-8a26-affcadf068d2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +col 
\entryTyp root 
\gENG cabbage 
\gSPN col 
\e +col 
\c N0 
\mp +FinalC 
\ach co:lis 
\akh co:lis 
\acl co:lis 
\akl co:lis 
\ame co:lis</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="8fe91a3b-a98c-4e7f-8483-917a91344e86"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">masta</AUni> -<AUni ws="qvm-x-acl">masta</AUni> -<AUni ws="qvm-x-akh">masta</AUni> -<AUni ws="qvm-x-akl">masta</AUni> -<AUni ws="qvm-x-ame">masta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*masta</AUni> -<AUni ws="qvm-x-acl">*masta</AUni> -<AUni ws="qvm-x-akh">*masta</AUni> -<AUni ws="qvm-x-akl">*masta</AUni> -<AUni ws="qvm-x-ame">*masta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.356" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c7b6490c-1c08-430a-8722-e220cde476a2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*masta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aca90f6a-3314-42c8-8f70-b066edb93375" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e54cc8e6-789f-4144-930c-b4a55cb048d9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *masta 
\entryTyp root 
\gENG rub.in 
\gSPN echar 
\e *masta 
\c V2 
\ach masta 
\akh masta 
\acl masta 
\akl masta 
\ame masta 
\mcc *masta / ~_ DUB 
\mcc *masta / ~_ DUR AG</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="8fec0515-0850-4061-b779-5a8386b8e370" ownerguid="11569ae9-566d-4ed7-adc7-dc5b4177c6d0" /> -<rt class="LexSense" guid="8fec0ef1-c298-4680-8ee4-c2e7aff3f516" ownerguid="2edd491f-b480-41a0-94aa-92467ade8de3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">to.crowd</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6a1f92e3-5b69-410c-8a90-24e24ded3353" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="8fecbe36-3d8f-469f-abde-d79d76dea798" ownerguid="c1a70060-ba04-4f16-879e-5563492aee02"> -<ExampleWords> -<AUni ws="en">fabulous wealth, filthy rich, millionaire, billionaire</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who is very rich?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8fed77b0-d483-4c2b-bfec-7c5bfbf3881b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">polvu; polvo</AUni> -<AUni ws="qvm-x-acl">polvu; polvu; polvo</AUni> -<AUni ws="qvm-x-akh">polvu; polvo</AUni> -<AUni ws="qvm-x-akl">polvu; polvu; polvo</AUni> -<AUni ws="qvm-x-ame">polvu; polvo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+polvo</AUni> -<AUni ws="qvm-x-acl">+polvo</AUni> -<AUni ws="qvm-x-akh">+polvo</AUni> -<AUni ws="qvm-x-akl">+polvo</AUni> -<AUni ws="qvm-x-ame">+polvo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.891" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8537163d-9742-4c15-9e88-b9d2475735f9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+polvo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d60eb785-6b10-4814-a1a2-dfb90a4ac7b0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="43a921aa-5292-47e3-bb5f-b2596ea68aef" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +polvo 
\entryTyp root 
\gENG dust 
\gSPN polvo 
\e +polvo 
\c N0 
\ach polvu / ~_# 
\ach polvo / _# 
\akh polvu / ~_# 
\akh polvo / _# 
\acl polvu / ~_# 
\acl polvu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl polvo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl polvu / ~_# 
\akl polvu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl polvo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame polvu / ~_# 
\ame polvo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="8feee2ab-24b8-4013-8337-91421fc058c7" ownerguid="a6797fd1-e368-422b-9710-96e0af39552d"> -<ExampleWords> -<AUni ws="en">act acceptably, satisfactorily, normal, pleasingly, be polite, dignity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to acceptable behavior?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="8ff44913-ceae-4308-8c47-aa036f19422b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wawi:tu</AUni> -<AUni ws="qvm-x-acl">wawi:tu</AUni> -<AUni ws="qvm-x-akh">wawi:tu</AUni> -<AUni ws="qvm-x-akl">wawi:tu</AUni> -<AUni ws="qvm-x-ame">wawi:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wawi:tu</AUni> -<AUni ws="qvm-x-acl">*wawi:tu</AUni> -<AUni ws="qvm-x-akh">*wawi:tu</AUni> -<AUni ws="qvm-x-akl">*wawi:tu</AUni> -<AUni ws="qvm-x-ame">*wawi:tu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.597" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e0e090ee-793b-4f23-8972-97a044353c72" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wawi:tu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0478b5aa-eb7b-4f1d-9e51-ef065cb1b33c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dac46f4d-f30a-43f3-8883-b7174da13404" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wawi:tu 
\entryTyp root 
\gENG poor.thing 
\gSPN pobrecito 
\e *wawi:tu 
\c NOSUFF 
\ach wawi:tu 
\akh wawi:tu 
\acl wawi:tu 
\akl wawi:tu 
\ame wawi:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="8ffcef92-94d7-468e-9737-fad8567dce13" ownerguid="7191be07-9702-4a82-ba0b-2fd748164668"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="2a23127b-932f-45d3-a394-2f2bbc84fe98" t="o" /> -<objsur guid="db020c9f-38ba-4032-8ae7-3e0ca64dcfef" t="o" /> -<objsur guid="12efc02d-8cda-4837-99ea-84dea2dfdd83" t="o" /> -<objsur guid="89ad7093-0344-4373-ae27-7519816169f2" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="8ffe3a78-47be-426d-b6f5-2077d85d3728" ownerguid="2e95bd1e-82f0-461d-8ca6-b5f1ce1fb180"> -<ExampleWords> -<AUni ws="en">matchmaker, go-between</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a person who helps with the negotiations?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="8fff221d-0320-4926-b678-234d180e6af8" ownerguid="1e8c10a6-7869-4986-aa40-203151ad0582"> -<Form> -<AUni ws="qvm-x-ach">cosëcha</AUni> -<AUni ws="qvm-x-acl">cosëcha</AUni> -<AUni ws="qvm-x-akh">cosëcha</AUni> -<AUni ws="qvm-x-akl">cosëcha</AUni> -<AUni ws="qvm-x-ame">cosëcha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="8fff393a-23c2-42bb-8da8-9b151e790904" ownerguid="444407f2-0c75-4bb9-a84c-cbd52d0fa9c9"> -<Abbreviation> -<AUni ws="en">2.6.4.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to old age and older persons?</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Old person</AUni> -</Name> -<OcmCodes> -<Uni>886 Senescence; 887 Activities of the Aged; 888 Status and Treatment of the Aged</Uni> -</OcmCodes> -<Questions> -<objsur guid="3043fd75-f743-40e0-92b9-823ae92e8e04" t="o" /> -<objsur guid="903e69a2-3a30-489d-a347-5dc604b61630" t="o" /> -<objsur guid="a26f769c-3b0e-46b5-b9fa-04a470d6b35c" t="o" /> -<objsur guid="fdf8fb19-aab4-4796-81e6-201393dc82f7" t="o" /> -<objsur guid="be2e220e-07b9-481f-93ea-de35f67aa1dc" t="o" /> -<objsur guid="a1c12da0-6206-4961-ac1d-a4c5616ee053" t="o" /> -<objsur guid="8b85eb98-a65b-4a57-9cd3-2ac5c8e94fe6" t="o" /> -<objsur guid="f2002fd3-7adc-4d75-b7f6-076931bc4f37" t="o" /> -<objsur guid="7a3223b0-5549-48e9-af51-636df614eee3" t="o" /> -<objsur guid="d542f0e9-6248-4ae4-b729-17ea37af86a5" t="o" /> -<objsur guid="1eabd857-bd45-43c3-bb24-033f26320ed3" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="cc6f100a-5220-4f53-801c-b1fdcc619608" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="90037347-4dde-4b7e-ac02-5a67c6cd79de"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cutichilway</AUni> -<AUni ws="qvm-x-acl">cutichilway</AUni> -<AUni ws="qvm-x-akh">kutichilway</AUni> -<AUni ws="qvm-x-akl">kutichilway</AUni> -<AUni ws="qvm-x-ame">kutichilway</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kutitrillway</AUni> -<AUni ws="qvm-x-acl">*kutitrillway</AUni> -<AUni ws="qvm-x-akh">*kutitrillway</AUni> -<AUni ws="qvm-x-akl">*kutitrillway</AUni> -<AUni ws="qvm-x-ame">*kutitrillway</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.23" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a7314920-e72c-49b4-8639-e2447eb0038b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kutitrillway</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1a7b00c9-cbb0-4c1b-b63e-7019ae6243b4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="72cf6fa6-018e-43de-b1bf-a6a9d0ddc469" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kutitrillway 
\entryTyp root 
\gENG indian.giver 
\gSPN reclamador 
\e *kutitrillway 
\c N0 
\mp +FinalC 
\ach cutichilway 
\akh kutichilway 
\acl cutichilway 
\akl kutichilway 
\ame kutichilway</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="9003a1d0-1a36-4d51-91c3-b55e655aa606"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">co:sa</AUni> -<AUni ws="qvm-x-acl">co:sa</AUni> -<AUni ws="qvm-x-akh">co:sa</AUni> -<AUni ws="qvm-x-akl">co:sa</AUni> -<AUni ws="qvm-x-ame">co:sa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cosa</AUni> -<AUni ws="qvm-x-acl">+cosa</AUni> -<AUni ws="qvm-x-akh">+cosa</AUni> -<AUni ws="qvm-x-akl">+cosa</AUni> -<AUni ws="qvm-x-ame">+cosa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.192" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="98236f54-97ae-4570-86dd-caf75302374c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cosa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1d16a9b6-f94c-4b58-9c20-811089209ed2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ffe51b1e-fc2e-483e-889f-8eaba3cd361a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cosa 
\entryTyp root 
\gENG good 
\gSPN bueno 
\e +cosa 
\c N0 
\ach co:sa 
\akh co:sa 
\acl co:sa 
\akl co:sa 
\ame co:sa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="9003c29c-599e-4f59-a9e7-38d0d62853d1" ownerguid="3fcd9a41-4aab-4e0a-a92d-3732842dce91"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9006eaa5-912d-4562-826b-ce5c6193932b" ownerguid="532245e7-8f46-4394-9045-240475ee62e8"> -<ExampleWords> -<AUni ws="en">when, then, sometime, someday, anytime, onetime, whenever, approximate, approximately</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to an indefinite time?</AUni> -</Question> -</rt> -<rt class="StTxtPara" guid="900821cc-f020-4529-a7a6-d5faa0f2ae3a" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">yarqurimun</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="b0642e10-839f-433c-9e28-b2947243bf9c" t="o" /> -</Segments> -</rt> -<rt class="MoStemMsa" guid="90084b12-5470-4757-8caf-31e13c2a67c6" ownerguid="2b1967de-1836-4f04-8807-c0586e02dfd4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9011b6e1-20cc-4da0-b2a5-4bc40b5bf7b9" ownerguid="fc82fcec-d03c-4fb0-bf62-714c71754402"> -<ExampleWords> -<AUni ws="en">adult (adj), grown-up (adj), mature (adj)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that has to do with adults rather than children?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9013d46a-119c-4d9b-aa45-543c5b5fa859" ownerguid="1dd1abbb-5a5c-481b-af96-5fe94d86ce49"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="9018d38f-6ad7-4c69-bcc3-680613a28ef8" ownerguid="fa26f731-ad59-4228-bbd9-b0efb196a660"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="90190a7e-f457-4f53-ad53-552af873dcac" ownerguid="a44c0aa3-323f-48ec-b199-e180c17b3e69"> -<Form> -<AUni ws="qvm-x-ach">capital</AUni> -<AUni ws="qvm-x-acl">capital</AUni> -<AUni ws="qvm-x-akh">capital</AUni> -<AUni ws="qvm-x-akl">capital</AUni> -<AUni ws="qvm-x-ame">capital</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="90211e97-225d-4073-ac42-f26538d5539f" ownerguid="aa2b547c-2c82-4ce0-a1b3-35fa809d666c"> -<ExampleWords> -<AUni ws="en">narrow, thin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is narrow?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9022a64c-345e-49fa-8c13-2d2b47557bb5" ownerguid="ad29b77c-0527-4b24-8b5a-73aff588a255"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="90232b86-d2b8-4b16-af53-775a207a47e9" ownerguid="6342c8bf-55b5-400f-af7e-63055fe6813b"> -<ExampleWords> -<AUni ws="en">tool, implement, utensil, device, instrument, gadget, hardware, paraphernalia</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to tools?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="90244fb2-2b26-48fc-a002-e01bd9ed7c8c" ownerguid="5446b5cf-f05a-4bb2-89eb-ce63e27040f3"> -<ExampleWords> -<AUni ws="en">piece of music, music piece, song, number, selection, encore</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a piece of music?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="902537c9-36c5-4e5f-a7b1-68f0a27408fb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">panga</AUni> -<AUni ws="qvm-x-acl">panga</AUni> -<AUni ws="qvm-x-akh">panqa</AUni> -<AUni ws="qvm-x-akl">panqa</AUni> -<AUni ws="qvm-x-ame">panqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*panqa</AUni> -<AUni ws="qvm-x-acl">*panqa</AUni> -<AUni ws="qvm-x-akh">*panqa</AUni> -<AUni ws="qvm-x-akl">*panqa</AUni> -<AUni ws="qvm-x-ame">*panqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.687" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ab77a580-6985-4995-961e-5ec197e6f415" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*panqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d270c913-eae6-4719-9281-9c0b0ab28611" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="71c4804c-feda-462a-93d5-e4be278ee3e4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *panqa 
\entryTyp root 
\gENG leaf 
\gSPN oja 
\e *panqa 
\c N0 
\ach panga 
\akh panqa 
\acl panga 
\akl panqa 
\ame panqa</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="9025c9d6-3bfd-4dff-a896-68356b9e1fc7" ownerguid="ec9b5648-d5ee-4710-9610-0a9763e525c2"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -<Sense> -<objsur guid="7cd134ea-89c1-4a60-8992-dcac673bd263" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="902689a6-e6cf-4c76-b8de-7e47c3c997c4" ownerguid="b8607306-f586-4f9d-83a3-3250c0ee2100"> -<Form> -<AUni ws="qvm-x-ach">gashpa</AUni> -<AUni ws="qvm-x-acl">gashpa</AUni> -<AUni ws="qvm-x-akh">qashpa</AUni> -<AUni ws="qvm-x-akl">qashpa</AUni> -<AUni ws="qvm-x-ame">qashpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="90273c15-92e0-4db3-a11b-4ad2a54e93a7" ownerguid="4626740c-2b5d-4922-b9b1-f551d127743e"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="90278dd2-d224-4b73-85ec-39175d100844" ownerguid="95a8d932-9554-439f-afb5-ab158f2eed96"> -<ExampleWords> -<AUni ws="en">alternate, take turns, take it in turns, share, spell each other, go back and forth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to two or more people doing something in alternate turns?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="902911a3-dc2f-4b79-96bf-731985790b72" ownerguid="4acb340d-ab6c-4717-a5f4-d95749e9f2f9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">r</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">r</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">r</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">r</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">r</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a96fae79-db91-498f-a3f4-4aaeff3f9499" t="r" /> -</Morph> -<Msa> -<objsur guid="973e08a0-60b3-4ff1-9973-ac70ea0a16bc" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="902ae190-e3c0-4d02-ba71-2045aadeb331"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">capchu</AUni> -<AUni ws="qvm-x-acl">capchu; capcho</AUni> -<AUni ws="qvm-x-akh">kapchu</AUni> -<AUni ws="qvm-x-akl">kapchu; kapcho</AUni> -<AUni ws="qvm-x-ame">kapchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kaptru</AUni> -<AUni ws="qvm-x-acl">*kaptru</AUni> -<AUni ws="qvm-x-akh">*kaptru</AUni> -<AUni ws="qvm-x-akl">*kaptru</AUni> -<AUni ws="qvm-x-ame">*kaptru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.943" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ed1b39ef-b38d-4862-8803-20c2aa78ec1e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kaptru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="18cc54c7-78b3-4062-85d6-c13cc59564a2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="363882f3-97cb-47dc-a422-51bf2cd2d533" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kaptru 
\entryTyp root 
\gENG bite.up 
\gSPN morder 
\e *kaptru 
\c V2 
\ach capchu 
\akh kapchu 
\acl capchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl capcho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kapchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kapcho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kapchu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="902c0402-6d3a-427e-9e76-0e0a098a5a62" ownerguid="61f40376-729d-4d99-894f-06c5689a06ac"> -<ExampleWords> -<AUni ws="en">flat, flat as a pancake, even, flush</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is flat?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="902cfcbe-6e42-4e55-b2a5-9146702fc16b" ownerguid="196bf7b1-54a1-4a78-8d10-c61585849c63"> -<Abbreviation> -<AUni ws="en">7.2.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.518" /> -<DateModified val="2022-9-23 16:55:8.518" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to guiding someone--to show someone where to go by going ahead of them.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15S Come/Go With, Travel With</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Guide</AUni> -</Name> -<Questions> -<objsur guid="b2c2c875-32cd-4823-8c8d-c81c66e33b72" t="o" /> -<objsur guid="2d21704b-b1f3-4801-b286-7c0b49aa58eb" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="f70907c6-a064-425a-830f-e669319c38da" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="9033696d-b1a0-4e4c-9d44-b70a1e714fb5" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<ExampleWords> -<AUni ws="en">doctor, nurse, medicine man, midwife, medical technician, pharmacist, herbalist, witchdoctor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What are the occupations in medicine?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9035ce9a-0b67-4578-8f76-1ad29581a2d0" ownerguid="c809691f-b1de-4cbe-993f-1ce88530afd4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="4a4bde3a-3365-46b5-b95a-2e02b603ff0e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="9038c631-d01e-4cce-b0e4-752688f06407" ownerguid="fc4b68a0-31cd-4193-9490-0f488f34fcde"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="57e435ff-f14a-44e1-b595-dff01f37fcc1" t="r" /> -</Morph> -<Msa> -<objsur guid="be6973f5-a2b1-46a6-9dd0-379cd8bb168a" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="9039bc55-1892-41dd-98fa-9fbf4dfdfff9" ownerguid="49e142c3-a037-42ac-9af8-b3f5288cb115"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">muchu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">muchu; mucho</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">muchu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">muchu; mucho</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">muchu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6d379b70-90c0-43c3-af94-5acc3bd0a821" t="r" /> -</Morph> -<Msa> -<objsur guid="56946af8-5f8f-4e94-bb10-1ff9b1e059cc" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="903beca1-13ed-4268-8e10-a28927e8f75c" ownerguid="6c4e27b3-6145-4a86-bab2-2fb8df03e02e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9207faa7-cdae-48b2-b147-310d59c87fe6" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="0bd9488a-4880-497e-b8d2-dd73cdffae01" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="903e69a2-3a30-489d-a347-5dc604b61630" ownerguid="8fff393a-23c2-42bb-8da8-9b151e790904"> -<ExampleWords> -<AUni ws="en">age (v), get old, grow old, mature, be getting on, aging, not be as young as you were</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to becoming old?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="903e74b4-2a51-4678-91f9-b3b1f74e584c" ownerguid="3e1713b2-17fd-41cb-8114-67d15657ebe7"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="904055a8-f84c-4c32-a1f8-782480806945" ownerguid="f8c08c86-ef99-4415-87a7-318e56393672"> -<Form> -<AUni ws="qvm-x-ach">lamar</AUni> -<AUni ws="qvm-x-acl">lamar</AUni> -<AUni ws="qvm-x-akh">lamar</AUni> -<AUni ws="qvm-x-akl">lamar</AUni> -<AUni ws="qvm-x-ame">lamar</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="90407dc8-f0dd-42bf-8479-391eedd3267d" ownerguid="caccd402-1b37-4527-840c-caf4bbf64f79"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2SA 13.6 Tsayman papänin watucog chayaptinmi Amnón caynog nergan: <<Cayman cachaycalämuy panë Tamarta caycho juc ishcay tortillacunata ancarir garamänanpag.>></Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="9040c8fd-b0d7-4fdd-97c0-081a6a79531f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yanin</AUni> -<AUni ws="qvm-x-acl">yanin</AUni> -<AUni ws="qvm-x-akh">yanin</AUni> -<AUni ws="qvm-x-akl">yanin</AUni> -<AUni ws="qvm-x-ame">yanin</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yanin</AUni> -<AUni ws="qvm-x-acl">*yanin</AUni> -<AUni ws="qvm-x-akh">*yanin</AUni> -<AUni ws="qvm-x-akl">*yanin</AUni> -<AUni ws="qvm-x-ame">*yanin</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.737" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2f867bb9-24d2-46a9-8042-4f0ca47eaf34" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yanin</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fcb128f2-37b1-4780-8d21-5e85e9917532" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="315a17c4-2b78-42dd-a7d6-e8a0cc502619" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yanin 
\entryTyp root 
\gENG abundance 
\gSPN abundancia 
\e *yanin 
\c ONSHEV 
\mp +FinalC 
\ach yanin 
\akh yanin 
\acl yanin 
\akl yanin 
\ame yanin</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="90414618-e08d-4cd5-8e1c-adcf91fcd392" ownerguid="ae015229-0907-4e8e-8408-309706403927"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="904210f9-ad72-48eb-b55b-d2c5b6b25461" ownerguid="9ddf4735-6c76-4b73-98cf-d3fc5f808e3e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PhCode" guid="9044efe8-73df-429b-87ec-67b873355df6" ownerguid="b1e553eb-ba5d-438d-a847-8b65e95ab927"> -<Representation> -<AUni ws="qvm-x-ach">ä</AUni> -<AUni ws="qvm-x-acl">ä</AUni> -<AUni ws="qvm-x-akh">ä</AUni> -<AUni ws="qvm-x-akl">ä</AUni> -<AUni ws="qvm-x-ame">aa</AUni> -</Representation> -</rt> -<rt class="MoStemMsa" guid="904bc3f3-39f7-4bb2-b29c-04a273876c4f" ownerguid="e6ff7084-b532-472e-a5b1-b2f9a8712b05"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="904ca763-faeb-4b32-8da7-5e834c6cc402" ownerguid="7babbb46-2299-4864-ba04-c8dc3f7be47f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shut.eyes</AUni> -<AUni ws="es">cerrar.ojos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1da15e72-9235-4c1f-97e7-028623d922ee" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="904d0cff-0b65-4449-9e2e-99bf5af7219a" ownerguid="a7e4f8a8-3fe3-4c86-85df-059f8983df26"> -<ExampleWords> -<AUni ws="en">use someone, take advantage of, exploit, take liberties, manipulate, wrap/twist someone around your little finger</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to using a person?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="90506446-fd27-49e8-9652-e82314ce02cf" ownerguid="3e3b63b0-ea86-4749-beba-e287e25462ed"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="9050c80f-0326-410a-b321-8673dac72149" ownerguid="77882bc5-c87d-44ad-985b-0a15ef40f13f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">camay</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">camay</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kamay</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kamay</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kamay</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f0b99234-0a2f-44c4-83ae-47801443b6b2" t="r" /> -</Morph> -<Msa> -<objsur guid="1829a081-bc32-4291-9767-5bec080e6a37" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="90570944-b8f2-45bf-89cb-3e364e411b5a" ownerguid="fcd22c85-7ee1-4d31-8633-9dbd32344211"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">They didn't know it, but their paths were converging.; The two ships were on a collision course.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">converge, be on a collision course</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to two things moving toward each other?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9057975b-1ed8-41bc-9495-8176b4da3a4f" ownerguid="12b6934d-3a4a-4623-995f-865f401349ab"> -<ExampleWords> -<AUni ws="en">eat a little, nibble, snack, go on a diet, to diet, diet (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to eating a little?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="90582c69-d0c8-4369-9e56-3b8de3a2f21e" ownerguid="e9cafabe-f0f7-4142-a6f6-d1c94bdc4b5c"> -<ExampleWords> -<AUni ws="en">empty (v), drain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something becoming empty?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="90589778-e2d1-4d93-b82e-9a2d930905c5" ownerguid="267cfa86-1b16-4f58-88ef-988eb679d967"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="StStyle" guid="905a485e-4b54-47eb-a8e9-1f86e9c25699" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="7a194e30-4c8c-4934-83ad-b12ecc47a768" t="r" /> -</BasedOn> -<Context val="14" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Dictionary-Sense</Uni> -</Name> -<Rules> -<Prop firstIndent="-12000" leadingIndent="21000" spaceBefore="0"></Prop> -</Rules> -<Structure val="0" /> -<Type val="0" /> -<Usage> -<AUni ws="en">Each paragraph of sense information that is added to the entry if senses are formatted as paragraphs.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="LexExampleSentence" guid="905a9718-3860-4808-9065-dbbccf1776eb" ownerguid="531671fb-e296-4a76-8485-891b8197aaf7"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2SA 16.21 Palaciuta cuidananpag taytayqui cachaycushgan concubïna warmincunawan punuy.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="9060339e-d697-4c35-bc83-ced6bebfee63" ownerguid="771e3882-f672-4e67-8580-edd82d7e5090"> -<Abbreviation> -<AUni ws="en">4.3.4.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.235" /> -<DateModified val="2022-9-23 16:55:8.235" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to entering a place, such as a house, by force.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Enter by force</AUni> -</Name> -<Questions> -<objsur guid="08195053-d7db-4339-af46-ada0f25b2133" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="90632c05-91c8-4e78-9df2-148679c227a7" ownerguid="dbc24270-ada5-48a5-87b7-447a0dd63e61"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="9063dafc-4004-43eb-9956-0c946e22d99c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">awa</AUni> -<AUni ws="qvm-x-acl">awa</AUni> -<AUni ws="qvm-x-akh">awa</AUni> -<AUni ws="qvm-x-akl">awa</AUni> -<AUni ws="qvm-x-ame">awa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*awa.n</AUni> -<AUni ws="qvm-x-acl">*awa.n</AUni> -<AUni ws="qvm-x-akh">*awa.n</AUni> -<AUni ws="qvm-x-akl">*awa.n</AUni> -<AUni ws="qvm-x-ame">*awa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.890" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c005116a-0787-4ed9-aa16-a933f67d8069" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*awa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9d4ab0e2-c0e8-4131-97dc-1ae62b067081" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="97ef570f-2b4e-414b-89d3-10f365b9ca44" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *awa.n 
\entryTyp root 
\gENG 
\gSPN tejido 
\e *awa.n 
\c N0 
\ach awa 
\akh awa 
\acl awa 
\akl awa 
\ame awa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="90651d60-21f1-49e0-bcbd-8b2db15bf456" ownerguid="5a39edae-1ace-4889-b636-1dfd2a1bcc3c"> -<ExampleWords> -<AUni ws="en">pull out, draw out, pluck, tear out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to pulling something out of something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9066a0a6-bdc2-4046-a312-6e64507aef0f" ownerguid="32f868e0-54a7-4d04-8689-ac10e13396e5"> -<ExampleWords> -<AUni ws="en">machete, sickle, scythe, lawnmower, grass clippers</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What tools are used to cut grass?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="906743a7-bf46-485d-9915-0d474a4de46e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gaplu</AUni> -<AUni ws="qvm-x-acl">gaplu; gaplo</AUni> -<AUni ws="qvm-x-akh">qaplu</AUni> -<AUni ws="qvm-x-akl">qaplu; qaplo</AUni> -<AUni ws="qvm-x-ame">qaplu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qapllu</AUni> -<AUni ws="qvm-x-acl">*qapllu</AUni> -<AUni ws="qvm-x-akh">*qapllu</AUni> -<AUni ws="qvm-x-akl">*qapllu</AUni> -<AUni ws="qvm-x-ame">*qapllu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.92" /> -<DateModified val="2022-10-10 21:18:47.218" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3056e985-c492-4378-b3f6-3078d3ecf5c2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qapllu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6f650151-4342-4b3b-90a9-464b6af1131f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ed300049-c986-4008-99a8-93ba81637700" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qapllu 
\entryTyp root 
\gENG 
\gSPN 
\e *qapllu 
\c V1 
\ach gaplu 
\akh qaplu 
\acl gaplu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gaplo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qaplu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qaplo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qaplu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="906c32b4-8e3d-442a-9026-c45821725dad" ownerguid="8e65904c-f9e9-4e12-b430-c1ddc540f1ae"> -<ExampleWords> -<AUni ws="en">relaxed (posture), (stand/be) at ease, be a slouch, slouch around, lounge, sprawl, droop, sag, loll</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a relaxed posture?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="907006ef-516f-482e-9020-d26fa746bcea" ownerguid="742996cd-b87f-40a8-bdb3-dba74219bd73"> -<ExampleWords> -<AUni ws="en">have a temperature, feverish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to feeling hot because you are sick?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="907341c3-6cd7-4240-8c55-bd45dc82b2cb" ownerguid="6e240b2c-56a6-4f86-878d-b4d39954184d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="9073bf47-5663-4174-9bb4-b3cbcadb5bf5" ownerguid="ffcc57f8-6c6d-4bf4-85be-9220ca7c739d"> -<ExampleWords> -<AUni ws="en">married, marriage, matrimony, wedlock, hitched, bonds of marriage, married life</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the state of being married?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="90754ba4-1951-4761-b2a3-fe3e30b4ce6b" ownerguid="99861dcb-c6ca-4e50-a19a-efadbb10c2cf"> -<ExampleWords> -<AUni ws="en">old-timer, old hand, no stranger (to these parts)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe someone who has been in a place for a long time or has worked at a job for a long time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="90779754-0c36-4d7e-b86f-583bcc650f9d" ownerguid="fc170f70-520e-4f3e-b8b8-98e4b898fd24"> -<ExampleWords> -<AUni ws="en">edge (adj), peripheral, marginal, border (adj), bordering</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that is on the edge?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9077b48d-7c41-4855-b02d-a5899ce72180" ownerguid="81ec7da6-ca8f-4b05-acd0-6471c9afcb2c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="90785272-00d8-4377-82bd-2803fd4027ce"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ra:tuni; ra:tuni</AUni> -<AUni ws="qvm-x-acl">ra:tuni; ra:tuni; ra:tune</AUni> -<AUni ws="qvm-x-akh">ra:tuni; ra:tuni</AUni> -<AUni ws="qvm-x-akl">ra:tuni; ra:tuni; ra:tune</AUni> -<AUni ws="qvm-x-ame">ra:tuni; ra:tuni</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ratuni</AUni> -<AUni ws="qvm-x-acl">+ratuni</AUni> -<AUni ws="qvm-x-akh">+ratuni</AUni> -<AUni ws="qvm-x-akl">+ratuni</AUni> -<AUni ws="qvm-x-ame">+ratuni</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.287" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d5e7e674-ffb9-44db-98db-5e3d12b85b80" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ratuni</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ea649ede-f6af-42e5-af0c-7008bc3f6b42" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a513ed3f-ea28-4694-bda8-ebf303cd2c3b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ratuni 
\entryTyp root 
\gENG moment 
\gSPN rato 
\e +ratuni 
\c N0 
\mp +FinalI 
\ach ra:tuni / _# 
\ach ra:tuni / ~_# 
\akh ra:tuni / _# 
\akh ra:tuni / ~_# 
\acl ra:tuni / _# 
\acl ra:tuni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ra:tune +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ra:tuni / _# 
\akl ra:tuni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ra:tune +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ra:tuni / _# 
\ame ra:tuni / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="907b24b6-7dcc-428e-afec-86cb20362d4a" ownerguid="044eef17-ef15-46c5-9ff5-83b31c637421"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="b4cb9e92-8ae2-4e60-80d7-9040ca5cc532" t="o" /> -<objsur guid="ad4f778f-3c8f-4fdf-87c0-8a03727896e4" t="o" /> -<objsur guid="3540a10a-e927-4976-afa9-7dd4fb658136" t="o" /> -<objsur guid="59a45097-804f-402f-a75b-c02b83cac303" t="o" /> -<objsur guid="9d4f39c5-d449-44b1-8513-35d647008f6d" t="o" /> -<objsur guid="795e7e24-f2f9-46fd-b707-8c0b14dd336b" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="907bfaf8-f715-47a4-a663-8878d628cdc3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">azotea</AUni> -<AUni ws="qvm-x-acl">azotea</AUni> -<AUni ws="qvm-x-akh">azotea</AUni> -<AUni ws="qvm-x-akl">azotea</AUni> -<AUni ws="qvm-x-ame">azotea</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+azotea</AUni> -<AUni ws="qvm-x-acl">+azotea</AUni> -<AUni ws="qvm-x-akh">+azotea</AUni> -<AUni ws="qvm-x-akl">+azotea</AUni> -<AUni ws="qvm-x-ame">+azotea</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.910" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1ed50cb8-fafa-40f8-ae0c-a36a1fbfce79" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+azotea</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="91f49d9f-74b0-4d1b-8ea1-164bb5aae211" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="414a3835-7713-476a-8acf-baf24c7966ca" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +azotea 
\entryTyp root 
\gENG roof 
\gSPN azotea 
\e +azotea 
\c N0 
\ach azotea 
\akh azotea 
\acl azotea 
\akl azotea 
\ame azotea</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="907c3cf2-76ef-47fd-b3ee-777ca3050cd7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pobri; pobre</AUni> -<AUni ws="qvm-x-acl">pobri; pobri; pobre</AUni> -<AUni ws="qvm-x-akh">pobri; pobre</AUni> -<AUni ws="qvm-x-akl">pobri; pobri; pobre</AUni> -<AUni ws="qvm-x-ame">pobri; pobre</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pobre</AUni> -<AUni ws="qvm-x-acl">+pobre</AUni> -<AUni ws="qvm-x-akh">+pobre</AUni> -<AUni ws="qvm-x-akl">+pobre</AUni> -<AUni ws="qvm-x-ame">+pobre</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.881" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f9fa9c20-0245-4881-b80c-3fb3b8c01836" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pobre</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3daa071a-2bfd-4a5e-804a-01802953ebfc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d517d956-fa5b-49e6-97db-962d208a6a99" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pobre 
\entryTyp root 
\gENG poor 
\gSPN pobre 
\e +pobre 
\c N0 
\mp +FinalI 
\ach pobri / ~_# 
\ach pobre / _# 
\akh pobri / ~_# 
\akh pobre / _# 
\acl pobri / ~_# 
\acl pobri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pobre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pobri / ~_# 
\akl pobri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pobre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pobri / ~_# 
\ame pobre / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="907f4c95-825f-4183-875f-02f6a18b8961"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuña:da</AUni> -<AUni ws="qvm-x-acl">cuña:da</AUni> -<AUni ws="qvm-x-akh">cuña:da</AUni> -<AUni ws="qvm-x-akl">cuña:da</AUni> -<AUni ws="qvm-x-ame">cuña:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuñada</AUni> -<AUni ws="qvm-x-acl">+cuñada</AUni> -<AUni ws="qvm-x-akh">+cuñada</AUni> -<AUni ws="qvm-x-akl">+cuñada</AUni> -<AUni ws="qvm-x-ame">+cuñada</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.254" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="330665cf-d6d8-4860-823b-5e3dd6454d26" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuñada</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="010e409f-e36d-4eb7-8e09-60e4d68ba46d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="14911c94-f92b-49b4-b37a-d6f1d3adfbdd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuñada 
\entryTyp root 
\gENG sister.in.law 
\gSPN cuñada 
\e +cuñada 
\c N0 
\ach cuña:da 
\akh cuña:da 
\acl cuña:da 
\akl cuña:da 
\ame cuña:da</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="9080bb0a-b965-4da7-84c7-2e87b4088e07"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gosu</AUni> -<AUni ws="qvm-x-acl">gosu; gosu; goso</AUni> -<AUni ws="qvm-x-akh">qosu</AUni> -<AUni ws="qvm-x-akl">qosu; qosu; qoso</AUni> -<AUni ws="qvm-x-ame">qusu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qusu.n</AUni> -<AUni ws="qvm-x-acl">*qusu.n</AUni> -<AUni ws="qvm-x-akh">*qusu.n</AUni> -<AUni ws="qvm-x-akl">*qusu.n</AUni> -<AUni ws="qvm-x-ame">*qusu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.892" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c907381c-579a-40a2-be9e-43612bb6fbe1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qusu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2d4eb82f-b694-4326-bf39-b3ef4af6a84f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="846ad9f2-7519-4645-85ef-90e6e948ad21" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qusu.n 
\entryTyp root 
\gENG cough 
\gSPN toz 
\e *qusu.n 
\c N0 
\ach gosu 
\akh qosu 
\acl gosu / _# 
\acl gosu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl goso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qosu / _# 
\akl qosu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qoso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qusu 
\mcc *qusu.n / ~_ 3P</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="90833f45-c501-48a5-b83e-6b0faa6f4c52" ownerguid="1c3c8af0-56b9-4617-862e-21f39b388606"> -<ExampleWords> -<AUni ws="en">lose (someone), loss, bereaved, be widowed, be orphaned</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to losing someone in death?</AUni> -</Question> -</rt> -<rt class="FsFeatStruc" guid="90843854-fb29-42f2-90fa-2889ef8022b0" ownerguid="e89f4461-706d-4840-bf9f-bfa3b395d737"> -<FeatureSpecs> -<objsur guid="a6c1d187-c0e2-43f7-a609-e5beb5b5ba3b" t="o" /> -</FeatureSpecs> -<Type> -<objsur guid="efc7ecdf-44ed-4b11-9eef-41aaa905ca65" t="r" /> -</Type> -</rt> -<rt class="MoStemAllomorph" guid="90869eca-3e6f-49b4-81c8-e221b53bc6ab" ownerguid="b10eb88e-6f3f-4738-a771-0535e023196e"> -<Form> -<AUni ws="qvm-x-ach">mezcla</AUni> -<AUni ws="qvm-x-acl">mezcla</AUni> -<AUni ws="qvm-x-akh">mezcla</AUni> -<AUni ws="qvm-x-akl">mezcla</AUni> -<AUni ws="qvm-x-ame">mezcla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9087253f-d7cf-40fd-8f46-fe1b517f2da7" ownerguid="a2a3e21a-819c-4400-b2e6-e6c1a0a0ded3"> -<ExampleWords> -<AUni ws="en">despise, disdain, disregard, rebuff, reject, repudiate, scoff, scorn, shun, slight, sneer at, snub, spurn, be contemptuous of, hold in contempt, feel contempt for, feel superior, think someone is worthless, think poorly of, feel superior to, look down on, spit on, be cliquish, turn up your nose at</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to despising someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="90894922-4542-4c3b-b77f-eb73cb22fd1f" ownerguid="716ec168-e053-46af-8a2a-ddaea677f7be"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="908a1a2c-342a-48d8-abbf-dff79aa5504f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ranya</AUni> -<AUni ws="qvm-x-acl">ranya</AUni> -<AUni ws="qvm-x-akh">ranya</AUni> -<AUni ws="qvm-x-akl">ranya</AUni> -<AUni ws="qvm-x-ame">ranya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ranya.v</AUni> -<AUni ws="qvm-x-acl">*ranya.v</AUni> -<AUni ws="qvm-x-akh">*ranya.v</AUni> -<AUni ws="qvm-x-akl">*ranya.v</AUni> -<AUni ws="qvm-x-ame">*ranya.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.265" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6582bdb4-b865-4984-ade6-43e2adbd6eb9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ranya.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="42b8afa2-0e77-4ab5-af11-98bd680843d4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="21bae63e-b92c-42c2-a573-039156d84366" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ranya.v 
\entryTyp root 
\gENG be.bad.luck 
\gSPN ser.mala.suerte 
\e *ranya.v 
\c V1 
\ach ranya 
\akh ranya 
\acl ranya 
\akl ranya 
\ame ranya</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="908a7ffe-e457-4993-8c02-8df999587041" ownerguid="c707c852-a857-4c40-9ad1-1e396327483a"> -<Form> -<AUni ws="qvm-x-ach">wayga</AUni> -<AUni ws="qvm-x-acl">wayga</AUni> -<AUni ws="qvm-x-akh">wayqa</AUni> -<AUni ws="qvm-x-akl">wayqa</AUni> -<AUni ws="qvm-x-ame">wayqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="908a9492-ef77-4052-a703-5d519cb12013" ownerguid="8323cb77-8d19-44e9-b38c-ecfc2c78c0df"> -<Form> -<AUni ws="qvm-x-ach">wayi</AUni> -<AUni ws="qvm-x-acl">wayi; wayi; waye</AUni> -<AUni ws="qvm-x-akh">wayi</AUni> -<AUni ws="qvm-x-akl">wayi; wayi; waye</AUni> -<AUni ws="qvm-x-ame">wayi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="908bb4f2-2517-42ba-8669-6bbc6a3f7f3d" ownerguid="844f922b-6fb6-49aa-864b-b1c49edaa1ae"> -<ExampleWords> -<AUni ws="en">anklet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to jewelry worn on the legs?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="909337b3-eb9d-480c-850c-d76020c7c86b" ownerguid="d168bfa9-6065-4d2f-8c52-a34d175f6a56"> -<Form> -<AUni ws="qvm-x-ach">tishgu</AUni> -<AUni ws="qvm-x-acl">tishgu; tishgu; tishgo</AUni> -<AUni ws="qvm-x-akh">tishqu</AUni> -<AUni ws="qvm-x-akl">tishqu; tishqu; tishqo</AUni> -<AUni ws="qvm-x-ame">tishqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="90945373-3d86-479f-a5ec-af0d8f66a438" ownerguid="82d03809-1149-4ba4-9e71-5a2342de8675"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="9095828c-4f33-46c3-862c-c156d6851e33" ownerguid="dd1d7a67-9c2a-4283-a3e0-bbe6e1d96bda"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="90964207-9f18-4f9d-9f7c-6417c8737bea" ownerguid="a52591db-90ed-4501-aa5f-d8a8fe4ff74a"> -<Form> -<AUni ws="qvm-x-ach">shucu</AUni> -<AUni ws="qvm-x-acl">shucu; shuco</AUni> -<AUni ws="qvm-x-akh">shuku</AUni> -<AUni ws="qvm-x-akl">shuku; shuko</AUni> -<AUni ws="qvm-x-ame">shuku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="909a3113-88bc-470b-8d48-7c0d37966982" ownerguid="a42db5b4-6317-4d3f-beff-cb92dbaca914"> -<Abbreviation> -<AUni ws="en">3.2.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.101" /> -<DateModified val="2022-9-23 16:55:8.101" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to solving something--finding the answer to something that is difficult to understand.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Solve</AUni> -</Name> -<Questions> -<objsur guid="55c6318f-a4eb-4a20-a38a-fd1908e69ee1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="909a3a5c-1e72-4582-a224-59925876200d" ownerguid="2d0b3058-d8bb-4110-a54a-e507b0d3a0e4"> -<ExampleWords> -<AUni ws="en">stop beating, heart attack</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to the heart stopping?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="909a4416-f4e0-42f7-a70f-97846f451de7" ownerguid="807f9ed0-73a9-441f-9dfc-e30507ed5501"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="909cfa11-00e3-4787-b51b-dfac729061be" ownerguid="bbff1d40-e754-42d6-ad25-68f2993e137d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1 V2/V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">REF</AUni> -<AUni ws="es">REF</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="909e1d20-e4ba-4cca-b1af-ba143bc688d0" ownerguid="268bd992-240d-4e26-a831-9a4b03ee5d1b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="74db09ad-1b26-4b3f-ac21-c2774a6d5972" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="dd2867a8-116c-43c4-bcc7-b8fae7f6adfa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="90a16ab4-09de-4d2a-b450-357f9d83c943" ownerguid="f786a75d-c48a-4863-ba03-36ed17df57bb"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="90a191f8-39c1-4598-b366-c224aaa29ded" ownerguid="2b2bedd5-3f9c-4c18-a256-aa65ee19f15c"> -<ExampleWords> -<AUni ws="en">work well together, be well-suited, be well-matched, be made for each other, be a perfect match, be a perfect pair, be ideally suited, be right for</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to people being compatible?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="90a1c9a1-00d2-4403-97f8-b20f80647d19" ownerguid="aa66edd0-122b-489e-80ff-b6bca2de96ce"> -<Form> -<AUni ws="qvm-x-ach">sujëtu</AUni> -<AUni ws="qvm-x-acl">sujëtu; sujëtu; sujëto</AUni> -<AUni ws="qvm-x-akh">sujëtu</AUni> -<AUni ws="qvm-x-akl">sujëtu; sujëtu; sujëto</AUni> -<AUni ws="qvm-x-ame">sujëtu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="90a43dd3-f794-4de5-add3-7d3fcac9fac7" ownerguid="bfa3be74-0390-4e2e-bdb7-ed41eb67e4f1"> -<ExampleWords> -<AUni ws="en">dew, dewdrop, (ground is) damp with dew, moisture</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to dew?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="90a8e1fd-6413-401c-860c-80d0427374a2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tumpa</AUni> -<AUni ws="qvm-x-acl">tumpa</AUni> -<AUni ws="qvm-x-akh">tumpa</AUni> -<AUni ws="qvm-x-akl">tumpa</AUni> -<AUni ws="qvm-x-ame">tumpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tumpa.n</AUni> -<AUni ws="qvm-x-acl">*tumpa.n</AUni> -<AUni ws="qvm-x-akh">*tumpa.n</AUni> -<AUni ws="qvm-x-akl">*tumpa.n</AUni> -<AUni ws="qvm-x-ame">*tumpa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.987" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c15f7c79-84df-4d7a-804d-ddc93c7b39c9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tumpa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5834796b-fe01-4f9c-9faa-a0d600c85137" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d62f09d6-ba14-4c0b-aba2-93e279e33470" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tumpa.n 
\entryTyp root 
\gENG motive 
\gSPN motivo 
\e *tumpa.n 
\c N0 
\ach tumpa 
\akh tumpa 
\acl tumpa 
\akl tumpa 
\ame tumpa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="90aa29c3-73ab-4efa-a3c4-c49e28360794" ownerguid="a5e0766b-516a-47b8-a4ac-f41a36792b2f"> -<Form> -<AUni ws="qvm-x-ach">lapicëru</AUni> -<AUni ws="qvm-x-acl">lapicëru; lapicëru; lapicëro</AUni> -<AUni ws="qvm-x-akh">lapicëru</AUni> -<AUni ws="qvm-x-akl">lapicëru; lapicëru; lapicëro</AUni> -<AUni ws="qvm-x-ame">lapicëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="90aa6f01-0c7f-4a8d-bb9c-72866ecf65b5" ownerguid="c6a8541f-dda4-484d-a65e-fdb19b5e7b7d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">grub</AUni> -<AUni ws="es">gorgojo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6fc2d834-6727-4d29-8b91-4fbb7e831636" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="90b0feca-51ca-4504-b050-19ee2d008fa2" ownerguid="7162885d-1d35-4baf-97d6-7368fff7c723"> -<ExampleWords> -<AUni ws="en">come loose</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something becoming loose?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="90b36b2c-0d77-4a8d-81be-bb538ed9a48c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">purun</AUni> -<AUni ws="qvm-x-acl">purun</AUni> -<AUni ws="qvm-x-akh">purun</AUni> -<AUni ws="qvm-x-akl">purun</AUni> -<AUni ws="qvm-x-ame">purun</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*purun</AUni> -<AUni ws="qvm-x-acl">*purun</AUni> -<AUni ws="qvm-x-akh">*purun</AUni> -<AUni ws="qvm-x-akl">*purun</AUni> -<AUni ws="qvm-x-ame">*purun</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.26" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8ce1a13b-a244-47ab-9092-a006cc8cd505" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*purun</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bead3837-71db-48c9-8783-12e73d1bf969" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ddcbedc0-96ed-4052-8d52-fd713580733a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *purun 
\entryTyp root 
\gENG uncultivated 
\gSPN ? 
\e *purun 
\c N0 
\mp +FinalC 
\ach purun 
\akh purun 
\acl purun 
\akl purun 
\ame purun</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="90b541db-e0f1-4c0a-91e3-ff4962410eb7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ro:pa</AUni> -<AUni ws="qvm-x-acl">ro:pa</AUni> -<AUni ws="qvm-x-akh">ro:pa</AUni> -<AUni ws="qvm-x-akl">ro:pa</AUni> -<AUni ws="qvm-x-ame">ro:pa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ropa</AUni> -<AUni ws="qvm-x-acl">+ropa</AUni> -<AUni ws="qvm-x-akh">+ropa</AUni> -<AUni ws="qvm-x-akl">+ropa</AUni> -<AUni ws="qvm-x-ame">+ropa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.378" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="82b23c7a-d5d5-4c89-9a40-a47622d7746f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ropa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d3e1d2fb-6f42-4dcf-98a5-ec702ddf64a1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a5da0e4e-9b52-481f-8fc7-38aa262d978b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ropa 
\entryTyp root 
\gENG clothes 
\gSPN ropa 
\e +ropa 
\c N0 
\ach ro:pa 
\akh ro:pa 
\acl ro:pa 
\akl ro:pa 
\ame ro:pa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="90b6f757-1d04-411c-a5d5-26f9c359caea" ownerguid="efe8e7b5-e008-4a3a-b3e1-23ae03a0083e"> -<ExampleWords> -<AUni ws="en">knife, paring knife, butcher knife, jackknife, pocketknife, hunting knife, ax, hatchet, saw, blade, razor blade, scissors, wire-cutters</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What types of cutting tools are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="90b74036-f315-4b02-8f37-a53ae0cfbcf3" ownerguid="f56a2511-10cc-4829-940d-49051429bfba"> -<ExampleWords> -<AUni ws="en">thicken, concentrate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making a liquid thicker?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="90b79156-edc7-4c63-b3c5-f163393ebb5b" ownerguid="d98c1c67-b70e-4a35-89db-2e744bd5197f"> -<ExampleWords> -<AUni ws="en">facial, thin (face), high (forehead), thick (eyebrows), long (eyelashes), beady (eyes), stubby (nose), fleshy (cheeks), narrow (mouth), double chin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe the parts of a person's face?</AUni> -</Question> -</rt> -<rt class="StStyle" guid="90b94e23-3e77-4460-94fd-c1997ed9a81f" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="7a194e30-4c8c-4934-83ad-b12ecc47a768" t="r" /> -</BasedOn> -<Context val="14" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Dictionary-Subentry</Uni> -</Name> -<Rules> -<Prop firstIndent="0" leadingIndent="21000" spaceBefore="0"></Prop> -</Rules> -<Structure val="0" /> -<Type val="0" /> -<Usage> -<AUni ws="en">Each paragraph of subentry information that is added to the entry if there are subentries.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="MoStemAllomorph" guid="90beb5a6-495e-4406-b712-22c3db5ab67c" ownerguid="80d33b5e-940c-4a5a-b42e-0fe8ac79a904"> -<Form> -<AUni ws="qvm-x-ach">japa</AUni> -<AUni ws="qvm-x-acl">japa</AUni> -<AUni ws="qvm-x-akh">japa</AUni> -<AUni ws="qvm-x-akl">japa</AUni> -<AUni ws="qvm-x-ame">hapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="90c06635-a12c-4cd4-a190-46925ff0f43e" ownerguid="a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f"> -<Abbreviation> -<AUni ws="en">2.3.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to examining--to look carefully at something because you want to learn something about it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Examine</AUni> -</Name> -<Questions> -<objsur guid="03c53e7f-c620-4c27-bb98-1442c7c2885a" t="o" /> -<objsur guid="588cc44b-cab5-41ea-acdb-26c84f18dbc5" t="o" /> -<objsur guid="1a3ecc3a-e804-4359-9343-f6a1a4b3d746" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="f0e68d2f-f7b3-4722-80a4-8e9c5638b0d4" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="90c14711-87a6-4a4f-9d5f-b3f3c91d9345" ownerguid="33c3655d-5220-4b47-a7e9-d0d3b28d3998"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.attracted</AUni> -<AUni ws="es">ser.atrafdo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3ecdd64b-4226-4e72-8458-df93d4dbdeb7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="90c1c53f-b530-48b2-bc18-a59cb05b5501" ownerguid="06052694-82c0-432e-9c25-9d72e2e32bf5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="20cf5f5d-df51-4878-9397-33d69494a30e" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="512b9eec-4e3d-4918-9685-3f83bfcd73bd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="90c316f9-862b-42ea-a75d-da093ae9e33c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">purugshu</AUni> -<AUni ws="qvm-x-acl">purogshu; purogshu; purogsho</AUni> -<AUni ws="qvm-x-akh">puruqshu</AUni> -<AUni ws="qvm-x-akl">puroqshu; puroqshu; puroqsho</AUni> -<AUni ws="qvm-x-ame">puruqshu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puruqshu</AUni> -<AUni ws="qvm-x-acl">*puruqshu</AUni> -<AUni ws="qvm-x-akh">*puruqshu</AUni> -<AUni ws="qvm-x-akl">*puruqshu</AUni> -<AUni ws="qvm-x-ame">*puruqshu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.28" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f01936f7-208d-4e98-8a04-df07cb6c8135" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puruqshu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f11568ff-4665-4430-bf52-1f6407e08191" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ee206fe7-563e-4fe9-9a6a-3dd874681aa0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puruqshu 
\entryTyp root 
\gENG Adam's.apple 
\gSPN manz.de.Adán 
\e *puruqshu 
\c N0 
\ach purugshu 
\akh puruqshu 
\acl purogshu / _# 
\acl purogshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl purogsho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl puroqshu / _# 
\akl puroqshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl puroqsho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame puruqshu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="90c3990b-fe11-47bb-8265-b38946315adb" ownerguid="d7140538-fb99-4af9-8398-8c31a1b79fb5"> -<ExampleWords> -<AUni ws="en">prevent, immobilize, keep, restrain, control, quarantine, restrict</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to preventing someone from moving?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="90c3b9b0-5d1f-4368-b8b0-dcc048faf340" ownerguid="f8026a5b-8134-4f56-bb77-4257c8f8c8a7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="LexSense" guid="90ccafc6-5304-4654-b57b-7caa6096f13b" ownerguid="00966ac0-e2d5-429f-80a1-6de9cee48e2d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="2dfb79a5-5b6c-4ce9-bed3-9e48233c01fb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="90cf8010-e37c-40c1-9a7e-18a69c3a2dc7" ownerguid="50ac28ab-7385-408f-b5eb-3e27b191fcf4"> -<ExampleWords> -<AUni ws="en">publisher</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who publishes?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="90d0a3a2-34ec-4419-b928-825813fa3823" ownerguid="282a720b-8428-42cf-93b7-fafbbcd11e6a"> -<Form> -<AUni ws="qvm-x-ach">üli; üli</AUni> -<AUni ws="qvm-x-acl">üli; üli; üle</AUni> -<AUni ws="qvm-x-akh">üli; üli</AUni> -<AUni ws="qvm-x-akl">üli; üli; üle</AUni> -<AUni ws="qvm-x-ame">üli; üli</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="90d0eabe-0a01-410c-91b4-93f8505ceffd" ownerguid="5be4a43e-0c5f-41fb-a34b-5e06cb0b6dfb"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 14.18 gagacunata partir cuchpatsishgayquinog,</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="90d43c9c-f0ce-4360-b20c-227f0b72454d" ownerguid="cc06d120-fce8-4587-a4b7-9bbef3677d3c"> -<Form> -<AUni ws="qvm-x-ach">periödicu</AUni> -<AUni ws="qvm-x-acl">periödicu; periödicu; periödico</AUni> -<AUni ws="qvm-x-akh">periödicu</AUni> -<AUni ws="qvm-x-akl">periödicu; periödicu; periödico</AUni> -<AUni ws="qvm-x-ame">periödicu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="90d56522-f967-4157-a75c-c5a05ed1fe65" ownerguid="c5e508cb-4be1-4e1d-ab39-c66e0056daf4"> -<Form> -<AUni ws="qvm-x-ach">sawata</AUni> -<AUni ws="qvm-x-acl">sawata</AUni> -<AUni ws="qvm-x-akh">sawata</AUni> -<AUni ws="qvm-x-akl">sawata</AUni> -<AUni ws="qvm-x-ame">sawata</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="90d9382d-8ae3-45d9-b7c2-2cb2454dfa32" ownerguid="5195d933-c9e7-4e81-b6e6-01a16790c638"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a80ec821-c844-4ea3-8cd6-1a9c56a2073d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="90dca3fe-0a6e-4064-b959-288779db3fef" ownerguid="a1136561-0b46-418b-afe8-f841f89bea85"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="4a0ed58c-4900-4cff-a67b-ecf8c8ec2a3e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="90dcb1ac-788d-4b35-ac83-bc4826470cd2" ownerguid="7e812386-09ea-4275-9e28-fdeec6b107f1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="90e2b940-e27d-4417-b553-cfc5f5df3870" ownerguid="4a0669d9-38b7-4482-95ce-8b4a229bab19"> -<Form> -<AUni ws="qvm-x-ach">gaga</AUni> -<AUni ws="qvm-x-acl">gaga</AUni> -<AUni ws="qvm-x-akh">qaqa</AUni> -<AUni ws="qvm-x-akl">qaqa</AUni> -<AUni ws="qvm-x-ame">qaqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="90e2fae7-1c14-45de-a830-1d888cc05952" ownerguid="0dcaa668-c529-4a1c-89c8-2eb8a44caa73"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="38da97cf-f372-4c4f-b444-eeef5dca18c2" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">rope</AUni> -<AUni ws="es">lazo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="26d58e56-7203-4d96-8fc1-2c066e37ebde" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="90e7cc16-f350-4f9f-90a5-6aa8f8075586" ownerguid="019c50f8-47d4-4b5c-bf01-cc1259de969c"> -<Form> -<AUni ws="qvm-x-ach">pullush</AUni> -<AUni ws="qvm-x-acl">pullush</AUni> -<AUni ws="qvm-x-akh">pullush</AUni> -<AUni ws="qvm-x-akl">pullush</AUni> -<AUni ws="qvm-x-ame">pullush</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="90e8d874-2c41-475c-94dd-e1ae6c78812a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pactu; pacto</AUni> -<AUni ws="qvm-x-acl">pactu; pactu; pacto</AUni> -<AUni ws="qvm-x-akh">pactu; pacto</AUni> -<AUni ws="qvm-x-akl">pactu; pactu; pacto</AUni> -<AUni ws="qvm-x-ame">pactu; pacto</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pacto</AUni> -<AUni ws="qvm-x-acl">+pacto</AUni> -<AUni ws="qvm-x-akh">+pacto</AUni> -<AUni ws="qvm-x-akl">+pacto</AUni> -<AUni ws="qvm-x-ame">+pacto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.638" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="21b838db-1881-48f8-b151-fceb15c02883" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pacto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b05c9787-94bb-484c-a7d4-156777a66134" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d749f1ab-e8ff-4eea-bb6b-0549a12958c2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pacto 
\entryTyp root 
\gENG 
\gSPN 
\e +pacto 
\c N0 
\ach pactu / ~_# 
\ach pacto / _# 
\akh pactu / ~_# 
\akh pacto / _# 
\acl pactu / ~_# 
\acl pactu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pacto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pactu / ~_# 
\akl pactu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pacto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pactu / ~_# 
\ame pacto / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="90e8f25b-62e8-4ea2-a386-2dfd2029a4e8" ownerguid="d0dee676-f3ae-43cc-96f1-7e3bb65870f5"> -<ExampleWords> -<AUni ws="en">fit something to something, resize</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to changing the size of something so that it will fit?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="90e9cd4b-384b-49e9-a200-8c27f2b69d51" ownerguid="dc177f3c-d0fd-4232-adf1-a77b339cdbb2"> -<ExampleWords> -<AUni ws="en">church, synagogue, mosque, temple, shrine, cathedral, monastery, convent, cloister, nunnery, abbey, chapel, parsonage, sanctuary, basilica, pagoda, tabernacle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What kinds of buildings are used in religion?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="90ea053a-47bd-4d31-aec3-975f9ace1dd5" ownerguid="768aed05-dbc9-4caf-9461-76cb3720f908"> -<ExampleWords> -<AUni ws="en">pain, ache, hurt (n), misery, suffering, sufferings, soreness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to pain?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="90eb7aea-966d-434a-8f77-21464c02e98f" ownerguid="7c9c6263-9f7d-472c-a4c9-1767015d41fe"> -<ExampleWords> -<AUni ws="en">Would you like...? Can I...? Shall I...? Have a/some.... Help yourself to....</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What expressions do people use when they are offering something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="90ec9a90-5f10-4cac-8387-220f1cf72ce5" ownerguid="f8d8429d-349a-4028-9943-edc1224cab49"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="90ee0987-0790-4260-bcc3-8932cdbd3ea1" ownerguid="59b02f4e-4380-4541-83a3-e1533d913c22"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tuberculosis</AUni> -<AUni ws="es">tisis</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0e9a0fc1-0126-4c2b-a94b-70d8661722eb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="90ee1c3e-7d5e-4001-8a38-323e83764141" ownerguid="85d0d551-4d20-4930-86d7-84fe189fcc96"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wawa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wawa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wawa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wawa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wawa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="947ece62-6ca2-4ac8-a84c-d2baa509eb59" t="r" /> -</Morph> -<Msa> -<objsur guid="2d28f9c9-ff25-4f47-a9dc-c545ea868393" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="90eef418-0468-4d10-82b7-7e093037f2ab" ownerguid="8f3ca5ee-a855-4813-aff8-7c1eae13a948"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">japa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">japa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">japa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">japa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">hapa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="fa2ed460-0e23-4c0b-a696-06102bb821a4" t="r" /> -</Morph> -<Msa> -<objsur guid="f6c6df56-a369-4462-9c8f-e109e0f67bb5" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="90f09f66-e4fa-4dbc-81bc-54e5c5e44666" ownerguid="1c512719-6ecb-48cb-980e-4ff20e8b5f9b"> -<ExampleWords> -<AUni ws="en">animism, animistic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to worshiping spirits?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="90f1645b-31e3-4834-9aee-a69729585d5f" ownerguid="08d5e632-0aed-4924-b3bb-d43de3420385"> -<ExampleWords> -<AUni ws="en">perform a funeral, hold a memorial service</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to holding a funeral?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="90f36f80-4da7-46a9-9c27-912cadb871d1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">la:du</AUni> -<AUni ws="qvm-x-acl">la:du; la:du; la:do</AUni> -<AUni ws="qvm-x-akh">la:du</AUni> -<AUni ws="qvm-x-akl">la:du; la:du; la:do</AUni> -<AUni ws="qvm-x-ame">la:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lado</AUni> -<AUni ws="qvm-x-acl">+lado</AUni> -<AUni ws="qvm-x-akh">+lado</AUni> -<AUni ws="qvm-x-akl">+lado</AUni> -<AUni ws="qvm-x-ame">+lado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.430" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="068a7ef1-d170-43ca-af54-f945b3d2fb55" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="59e51f54-9b81-48bd-9a18-ece801920787" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aa29986e-d3ad-4b1d-bffb-d4afcdb5e586" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lado 
\entryTyp root 
\gENG side 
\gSPN lado 
\e +lado 
\c N0 
\ach la:du 
\akh la:du 
\acl la:du / _# 
\acl la:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl la:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl la:du / _# 
\akl la:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl la:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame la:du</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="90f41246-a220-49ab-a8e1-873d966edaab" ownerguid="d586a164-ac8f-4356-8aa8-07721c2b5e09"> -<ExampleWords> -<AUni ws="en">postman</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to someone who delivers a letter?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="90f57cb3-1a42-4c45-808d-e9909d9396bd" ownerguid="6b836eab-0b1e-425c-9f13-3e53a0b6f06b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="0ee46d69-e728-4945-a143-9bf1d9f0e03f" t="o" /> -<objsur guid="e272a671-6282-4121-85d3-edaeab64cd2c" t="o" /> -<objsur guid="19a17a98-273c-439b-acee-6ee63f22f0bb" t="o" /> -<objsur guid="edf73653-1bda-41f0-ac7e-1c07853d6d95" t="o" /> -<objsur guid="d0437b7e-1c83-43a3-9722-177cb38c67a3" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiMorphBundle" guid="90f5a8a7-ff57-4e6c-83e7-e1dfa368cbe8" ownerguid="d6b0dfe1-8cb8-465f-bf15-c6dc6ff93d65"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ku</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ku</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b952a19-fce6-44e5-ab25-c091ef27f843" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -<Sense> -<objsur guid="909cfa11-00e3-4787-b51b-dfac729061be" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="90fa30a4-4de1-42d0-9f3b-1c287fec7c0d" ownerguid="8fbed974-7d25-44c3-80cb-7d02e4069007"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">the <contents> <of> the cup</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(6) In English 'Containership' can be expressed by a noun phrase with the word 'contents' as the head and the 'Container' marked by 'of'.</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="90fe0665-199b-47fe-83cf-6f73dde8ae80"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ronde:ru</AUni> -<AUni ws="qvm-x-acl">ronde:ru; ronde:ru; ronde:ro</AUni> -<AUni ws="qvm-x-akh">ronde:ru</AUni> -<AUni ws="qvm-x-akl">ronde:ru; ronde:ru; ronde:ro</AUni> -<AUni ws="qvm-x-ame">ronde:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rondero</AUni> -<AUni ws="qvm-x-acl">+rondero</AUni> -<AUni ws="qvm-x-akh">+rondero</AUni> -<AUni ws="qvm-x-akl">+rondero</AUni> -<AUni ws="qvm-x-ame">+rondero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.378" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b9dc1f62-e31d-42cd-9789-67d46df6c735" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rondero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8af3dd04-eefa-4de8-aaa9-fb52ce11734f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8934255f-93ee-4413-9b2d-f6c53a5c7164" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rondero 
\entryTyp root 
\gENG 
\gSPN 
\e +rondero 
\c N0 
\ach ronde:ru 
\akh ronde:ru 
\acl ronde:ru / _# 
\acl ronde:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ronde:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ronde:ru / _# 
\akl ronde:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ronde:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ronde:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="90ff85be-42f6-4a30-a658-5b1780202333" ownerguid="7cba6668-604a-44ec-907f-f67ff17a52fd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="91033bf9-3d13-451b-97db-6f0c310e89df" ownerguid="f37d803c-37b1-4641-8b10-6b566461d9f9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">man</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">man</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">man</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">man</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">man</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1acbb55c-ccc7-45f0-b507-b8645ea87900" t="r" /> -</Morph> -<Msa> -<objsur guid="afad3961-fbf7-495d-bda7-b2ceaf12bba1" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="910447aa-6e7c-4286-a8fe-da6bd5024f59" ownerguid="84f51fe0-8945-43fc-b837-167eecb147d2"> -<Form> -<AUni ws="qvm-x-ach">wiya</AUni> -<AUni ws="qvm-x-acl">wiya</AUni> -<AUni ws="qvm-x-akh">wiya</AUni> -<AUni ws="qvm-x-akl">wiya</AUni> -<AUni ws="qvm-x-ame">wiya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="91052f43-fe2a-41f3-90ab-623ee6e9eef0" ownerguid="17c8473e-c402-476d-8f93-8b20a5c9b925"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="6fa05c57-b1bb-485d-8ab7-782c8504219b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="91053954-86ef-4146-a674-747249228584"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">multa</AUni> -<AUni ws="qvm-x-acl">multa</AUni> -<AUni ws="qvm-x-akh">multa</AUni> -<AUni ws="qvm-x-akl">multa</AUni> -<AUni ws="qvm-x-ame">multa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+multa</AUni> -<AUni ws="qvm-x-acl">+multa</AUni> -<AUni ws="qvm-x-akh">+multa</AUni> -<AUni ws="qvm-x-akl">+multa</AUni> -<AUni ws="qvm-x-ame">+multa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.495" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="198b676b-cc74-44eb-8a10-d10753c1625e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+multa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d0b9361c-d3bd-431d-a28e-bcd1420e0fa9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f123d8bd-2051-49f3-9c7b-221c283e005d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +multa 
\entryTyp root 
\gENG fine 
\gSPN multa 
\e +multa 
\c N0 
\ach multa 
\akh multa 
\acl multa 
\akl multa 
\ame multa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="91068787-99b8-4670-8742-22bb43df37c6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cruzada</AUni> -<AUni ws="qvm-x-acl">cruzada</AUni> -<AUni ws="qvm-x-akh">cruzada</AUni> -<AUni ws="qvm-x-akl">cruzada</AUni> -<AUni ws="qvm-x-ame">cruzada</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cruzada</AUni> -<AUni ws="qvm-x-acl">+cruzada</AUni> -<AUni ws="qvm-x-akh">+cruzada</AUni> -<AUni ws="qvm-x-akl">+cruzada</AUni> -<AUni ws="qvm-x-ame">+cruzada</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.223" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4b49ef3c-36ad-42a6-939b-48887aa82800" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cruzada</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a603c12d-3536-499c-a233-0bfe578ac5d7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9529220b-1951-47f8-8eea-af88eb21953f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cruzada 
\entryTyp root 
\gENG cross 
\gSPN cruzada 
\e +cruzada 
\c N0 
\ach cruzada 
\akh cruzada 
\acl cruzada 
\akl cruzada 
\ame cruzada</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="91070bb9-fcac-4748-8f10-2c80428657d1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lapi</AUni> -<AUni ws="qvm-x-acl">lapi; lape</AUni> -<AUni ws="qvm-x-akh">lapi</AUni> -<AUni ws="qvm-x-akl">lapi; lape</AUni> -<AUni ws="qvm-x-ame">lapi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llapi.v</AUni> -<AUni ws="qvm-x-acl">*llapi.v</AUni> -<AUni ws="qvm-x-akh">*llapi.v</AUni> -<AUni ws="qvm-x-akl">*llapi.v</AUni> -<AUni ws="qvm-x-ame">*llapi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.144" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="169b0e83-bfcd-4841-8948-0550b91a028c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llapi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="63b0d130-56f6-4f0a-8698-be61f82961be" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cb5a461c-3a0a-472c-83c2-c42ec0492f32" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llapi.v 
\entryTyp root 
\gENG mash 
\gSPN emplastar 
\e *llapi.v 
\c V2 
\mp +FinalI 
\ach lapi 
\akh lapi 
\acl lapi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lape +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lapi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lape +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lapi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="910a8975-8611-4612-9fd9-ee9c1f6b7a4e" ownerguid="f936b01d-6aee-42a5-a3b6-e1f03daebfa7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="910c78ba-996a-4127-b5ae-b98c48ffe8ff" ownerguid="4d3a794a-7043-4afc-a89e-904971076668"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">burnt</AUni> -<AUni ws="es">quemado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f19a3ae1-d35c-4f8c-88d8-57701c86caa1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="910e09ab-fd91-4135-8351-ba58db593423" ownerguid="4a6f92f3-923f-4d27-ac96-a396c3d9658b"> -<Form> -<AUni ws="qvm-x-ach">arti</AUni> -<AUni ws="qvm-x-acl">arti; arte</AUni> -<AUni ws="qvm-x-akh">arti</AUni> -<AUni ws="qvm-x-akl">arti; arte</AUni> -<AUni ws="qvm-x-ame">arti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="910e7b8e-7a3c-47ae-afdb-3c15a17ccfea" ownerguid="b4664e30-2a93-4452-844e-27d17344415f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pti</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pti</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pti</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b2772da-2fbd-4846-99c3-d3f919125916" t="r" /> -</Morph> -<Msa> -<objsur guid="6a97cf20-558d-4866-ba04-48c4807bc533" t="r" /> -</Msa> -<Sense> -<objsur guid="5c9f1fed-2e6d-4ad2-b804-9d3f09a277d3" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="910ff139-b7a6-497f-ae8f-acc32bb836c3" ownerguid="8ce2aa75-f18e-41c8-b8ed-753c5e71f60e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="103a1abb-d37a-4053-aa0b-6cdd8d3009c8" t="o" /> -</Examples> -<Gloss> -<AUni ws="es">brotar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8360c772-e083-4417-a390-1284fe552743" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="9116e9aa-4ac5-4589-bf0c-a22f2003566b" ownerguid="bfc8e70f-4069-4341-b965-d8ea0e9e09e4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">lapa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">lapa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">lapa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">lapa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">lapa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="0655d4c4-dcff-4fca-931a-8964415a96b4" t="r" /> -</Morph> -<Msa> -<objsur guid="b16d0818-05dc-49f7-8cdf-889b0be5517e" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="91187226-bd32-4ed9-9ceb-404f574fb16d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">umri</AUni> -<AUni ws="qvm-x-acl">umri; umre</AUni> -<AUni ws="qvm-x-akh">umri</AUni> -<AUni ws="qvm-x-akl">umri; umre</AUni> -<AUni ws="qvm-x-ame">umri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*umri</AUni> -<AUni ws="qvm-x-acl">*umri</AUni> -<AUni ws="qvm-x-akh">*umri</AUni> -<AUni ws="qvm-x-akl">*umri</AUni> -<AUni ws="qvm-x-ame">*umri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.229" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cdd2be08-0931-456b-ad7b-3b99fb9cb8fe" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*umri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="16043947-a1ba-4e68-ae47-4110e7def074" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c7969b84-cb52-45b6-9501-6633e0828711" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *umri 
\entryTyp root 
\gENG carry 
\gSPN llevar 
\e *umri 
\c V2 
\mp +FinalI 
\ach umri 
\akh umri 
\acl umri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl umre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl umri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl umre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame umri</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="9119c29d-ddb5-4613-8f36-f8cd48a9b751"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tica</AUni> -<AUni ws="qvm-x-acl">tica</AUni> -<AUni ws="qvm-x-akh">tika</AUni> -<AUni ws="qvm-x-akl">tika</AUni> -<AUni ws="qvm-x-ame">tika</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tika</AUni> -<AUni ws="qvm-x-acl">*tika</AUni> -<AUni ws="qvm-x-akh">*tika</AUni> -<AUni ws="qvm-x-akl">*tika</AUni> -<AUni ws="qvm-x-ame">*tika</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.886" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ea7e7545-f1a1-4a57-978a-d8cf9077bbae" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tika</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="813a2dd1-5723-44b0-8b4d-57f045ad047d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bf6866a2-4d63-467a-8cdb-abe9562ca89e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tika 
\entryTyp root 
\gENG adobe 
\gSPN adobe 
\e *tika 
\c N0 
\ach tica 
\akh tika 
\acl tica 
\akl tika 
\ame tika</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="911bef17-6b94-4f0c-840c-4132bb6e685f" ownerguid="3d6216c5-5f8d-4ffa-bc97-c68b63b9fd49"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="9120b0eb-edf6-429c-89f0-37b2d8c5a594"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">menta</AUni> -<AUni ws="qvm-x-acl">menta</AUni> -<AUni ws="qvm-x-akh">menta</AUni> -<AUni ws="qvm-x-akl">menta</AUni> -<AUni ws="qvm-x-ame">menta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+menta</AUni> -<AUni ws="qvm-x-acl">+menta</AUni> -<AUni ws="qvm-x-akh">+menta</AUni> -<AUni ws="qvm-x-akl">+menta</AUni> -<AUni ws="qvm-x-ame">+menta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.406" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3b865224-b301-4b5c-9a35-66084ace37ac" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+menta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7b70ede0-1c7f-47a3-89a4-9bdbde4aae12" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="46c01754-4990-4bc9-bf1c-6f1c90becf60" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +menta 
\entryTyp root 
\gENG mint 
\gSPN menta 
\e +menta 
\c N0 
\ach menta 
\akh menta 
\acl menta 
\akl menta 
\ame menta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="9122d376-1021-4fe3-850d-da17fc00c64f" ownerguid="db6bb851-b6cf-41b3-9905-e56ea5b50686"> -<Form> -<AUni ws="qvm-x-ach">mierda</AUni> -<AUni ws="qvm-x-acl">mierda</AUni> -<AUni ws="qvm-x-akh">mierda</AUni> -<AUni ws="qvm-x-akl">mierda</AUni> -<AUni ws="qvm-x-ame">mierda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="9122fb34-71f4-40cb-8fed-3741c5fade90" ownerguid="61310595-90e0-4e8e-84d1-c6f39b1a65ab"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">garga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">garga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qarqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qarqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qarqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e9154280-f82e-445f-8700-b610d772df34" t="r" /> -</Morph> -<Msa> -<objsur guid="c7dbec8d-838d-4a92-a15b-4f3d5b563513" t="r" /> -</Msa> -<Sense> -<objsur guid="85c9f7db-4fd1-4d3d-80fd-9e0c1d3b8a91" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="91251e23-825c-4d60-bfd6-11cac92b4351" ownerguid="80dc5ca1-44ce-4406-add8-2bbe19c122ab"> -<ExampleWords> -<AUni ws="en">turn up, turn down, adjust the volume</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to changing how loud the music is?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="91268d82-5f81-4ddf-9d70-36c6a2f1ee73" ownerguid="d333614a-4e75-4f5f-9024-59dd71e3ae42"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">add</AUni> -<AUni ws="es">sumar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2dc374ee-517f-4755-9ea6-9d464c7be65b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="91268f50-abbf-4499-ae13-5435d2323f88" ownerguid="0357224d-e682-4974-a261-d07c3e59771b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PunctuationForm" guid="9126e753-059a-485a-bfcb-3c3cb22af5c5"> -<Form> -<Str> -<Run ws="en">PLALLF</Run> -</Str> -</Form> -</rt> -<rt class="LexSense" guid="912978dc-e6b5-48c9-9803-8cd401630195" ownerguid="9fd4342a-b318-42dd-9397-aba4f9d870b7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.cold</AUni> -<AUni ws="es">hacer.frio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aedb094e-f4fd-41a6-afc6-52d788df9ece" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="912a61af-b2a1-41b3-8761-527d792addbd" ownerguid="9b0fef63-5935-447d-801a-bb02dd6212bb"> -<ExampleWords> -<AUni ws="en">admirable, estimable, honorable, idolized</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe someone who is admired?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="912d63d8-f24d-48ac-bccd-39bb873d891d" ownerguid="0b0e8123-4c7c-4ac9-a3ff-720f47c9a5c9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="912f0b1f-974d-4fb6-8f2f-b32da1a8b507" ownerguid="ffcc57f8-6c6d-4bf4-85be-9220ca7c739d"> -<ExampleWords> -<AUni ws="en">inter-racial marriage, miscegenation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to marrying someone from another tribe or race?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="913182a9-5615-4f96-a50e-7aadd51f18e3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shogti</AUni> -<AUni ws="qvm-x-acl">shogti; shogte</AUni> -<AUni ws="qvm-x-akh">shoqti</AUni> -<AUni ws="qvm-x-akl">shoqti; shoqte</AUni> -<AUni ws="qvm-x-ame">shuqti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shuqti</AUni> -<AUni ws="qvm-x-acl">*shuqti</AUni> -<AUni ws="qvm-x-akh">*shuqti</AUni> -<AUni ws="qvm-x-akl">*shuqti</AUni> -<AUni ws="qvm-x-ame">*shuqti</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.660" /> -<DateModified val="2022-10-10 21:18:47.207" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="66bc7774-6dc3-4dfd-87e1-dfee5fd2d8c6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shuqti</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1c1ab146-3f58-4cae-96b8-ca8e7fe17a9a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7dd062e8-fed1-4c39-930f-c0d69b8c2df2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shuqti 
\entryTyp root 
\gENG 
\gSPN 
\e *shuqti 
\c V1 
\mp +FinalI 
\ach shogti 
\akh shoqti 
\acl shogti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shogte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shoqti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shoqte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shuqti</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="913198ef-d365-46f4-84a2-fdad605d474e" ownerguid="206b0422-a0e1-4714-9328-878d63dcc121"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">greet</AUni> -<AUni ws="es">saludar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1748b880-7dee-415a-9e0e-5c996c6ff8c8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9131c599-e423-42e5-8154-56678641047f" ownerguid="f6e416b3-50b1-4e48-8a39-2998725b1c79"> -<ExampleWords> -<AUni ws="en">divorcee, ex-husband, ex-wife, my ex</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who has been divorced?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="91326bc2-6761-42ef-b49f-063940ece3e2" ownerguid="82ecb5b3-9128-4b38-b9c5-612857417ceb"> -<ExampleWords> -<AUni ws="en">offense</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something that causes someone to dislike something?</AUni> -</Question> -</rt> -<rt class="StStyle" guid="9132811f-a2e6-43b1-92f2-6e2030bbea12" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="7a194e30-4c8c-4934-83ad-b12ecc47a768" t="r" /> -</BasedOn> -<Context val="14" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Dictionary-Minor</Uni> -</Name> -<Rules> -<Prop spaceBefore="0"></Prop> -</Rules> -<Structure val="0" /> -<Type val="0" /> -<Usage> -<AUni ws="en">Each paragraph of minor entry information that is added to the entry if there are minor entries.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="LexEntry" guid="913347dd-d78a-42eb-8d0a-4c8ecb22f28b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wishi</AUni> -<AUni ws="qvm-x-acl">wishi; wishe</AUni> -<AUni ws="qvm-x-akh">wishi</AUni> -<AUni ws="qvm-x-akl">wishi; wishe</AUni> -<AUni ws="qvm-x-ame">wishi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wishi</AUni> -<AUni ws="qvm-x-acl">*wishi</AUni> -<AUni ws="qvm-x-akh">*wishi</AUni> -<AUni ws="qvm-x-akl">*wishi</AUni> -<AUni ws="qvm-x-ame">*wishi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.686" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e526cc35-4d6d-4f4a-8ec1-a7acbe37e479" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wishi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aecd7a7e-100b-4ab0-9f15-835643b9eead" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1638e11e-a141-4f12-8c67-ea8cfaac398f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wishi 
\entryTyp root 
\gENG pour 
\gSPN trasegar 
\e *wishi 
\c V2 
\mp +FinalI 
\ach wishi 
\akh wishi 
\acl wishi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wishe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wishi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wishe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wishi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="91374a73-60a2-4ccb-b228-0cfb53d7b7a4" ownerguid="cfdcb880-661d-4357-9edc-a2e0020abc3e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">books</AUni> -<AUni ws="es">libros</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bd0fbcbe-e809-4713-9a9a-ac3b0b5195e3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9141e125-fbaa-444a-bbb4-34d870da7352" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<ExampleWords> -<AUni ws="en">tiptoe, walk on tiptoes</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to walking on your toes?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="914314e8-987f-4979-ae62-2a130de6db37" ownerguid="bdcde8dd-d02f-4682-a697-1a6f5ea24dbf"> -<Form> -<AUni ws="qvm-x-ach">escalón; escalon</AUni> -<AUni ws="qvm-x-acl">escalón; escalon</AUni> -<AUni ws="qvm-x-akh">escalón; escalon</AUni> -<AUni ws="qvm-x-akl">escalón; escalon</AUni> -<AUni ws="qvm-x-ame">escalón; escalon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9143a854-6048-4419-9397-189dfc717c97" ownerguid="7a8cb8d3-797d-478d-b7dd-265a1eedc0c1"> -<ExampleWords> -<AUni ws="en">walled, enclosed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe an area that has a fence around it?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9146d781-0c3a-4ca7-8eaa-cbe5248b60da" ownerguid="ff6f23ca-18c4-4579-8f38-322b606f70c2"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="915208ba-87c0-4c7e-8169-5af9c68e0591" ownerguid="3f4c559f-ab4f-411f-a23b-d2396c977005"> -<ExampleWords> -<AUni ws="en">can't see, can't make out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to not being able to see something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="9152847e-9206-4ffd-a2c5-c12d6d178fde" ownerguid="b2b91f6a-9446-46b1-ab86-c011a5b6597e"> -<Form> -<AUni ws="qvm-x-ach">janjampa</AUni> -<AUni ws="qvm-x-acl">janjampa</AUni> -<AUni ws="qvm-x-akh">janjampa</AUni> -<AUni ws="qvm-x-akl">janjampa</AUni> -<AUni ws="qvm-x-ame">hanhampa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="9153216e-8576-45d1-8d4d-e38cb2394005" ownerguid="4afcc531-720a-4f12-ab49-a7e94869ef0b"> -<Form> -<AUni ws="qvm-x-ach">älas</AUni> -<AUni ws="qvm-x-acl">älas</AUni> -<AUni ws="qvm-x-akh">älas</AUni> -<AUni ws="qvm-x-akl">älas</AUni> -<AUni ws="qvm-x-ame">älas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="915aae9f-5f79-4d20-a140-067213a19470" ownerguid="5058c141-f0a2-4368-b1c4-d0962e7f613f"> -<Form> -<AUni ws="qvm-x-ach">tsulca</AUni> -<AUni ws="qvm-x-acl">tsulca</AUni> -<AUni ws="qvm-x-akh">tsulka</AUni> -<AUni ws="qvm-x-akl">tsulka</AUni> -<AUni ws="qvm-x-ame">tsulka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="915c33ce-88ec-4b93-b3b6-7f69efb4b515" ownerguid="83899fe3-e1fd-4778-b427-830263df66c1"> -<Form> -<AUni ws="qvm-x-ach">lama</AUni> -<AUni ws="qvm-x-acl">lama</AUni> -<AUni ws="qvm-x-akh">lama</AUni> -<AUni ws="qvm-x-akl">lama</AUni> -<AUni ws="qvm-x-ame">lama</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="91616394-52c4-4ca9-9e66-b84073930186"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">casara</AUni> -<AUni ws="qvm-x-acl">casara</AUni> -<AUni ws="qvm-x-akh">casara</AUni> -<AUni ws="qvm-x-akl">casara</AUni> -<AUni ws="qvm-x-ame">casara</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+casar.2</AUni> -<AUni ws="qvm-x-acl">+casar.2</AUni> -<AUni ws="qvm-x-akh">+casar.2</AUni> -<AUni ws="qvm-x-akl">+casar.2</AUni> -<AUni ws="qvm-x-ame">+casar.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.72" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4c4837f9-ff7d-4f10-99fa-43a953a3aa17" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+casar.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3c6009e9-ffe3-409b-8dab-14c6bd2c2231" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9aaf2ce8-212e-468f-ae33-4c48dd752ebd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +casar.2 
\entryTyp root 
\gENG marry 
\gSPN casar 
\e +casar.2 
\c V1 
\ach casara 
\akh casara 
\acl casara 
\akl casara 
\ame casara</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="9162dd64-e1c5-43b7-a7fe-b95df6df5c27" ownerguid="cadfe0ec-0857-471a-b3a8-0a97f896a7b3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">drip</AUni> -<AUni ws="es">gota</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="13222a7b-d65a-45c6-aa77-04410c9610c8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="Segment" guid="9166e95f-e5b7-42dc-9528-e65699b34a3f" ownerguid="e52ccacf-d570-4d24-93ae-8fec9d866965"> -<Analyses> -<objsur guid="cd31a106-82d5-448f-b480-91198cb198b7" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexSense" guid="91693616-d0f6-4ff9-9faa-325881b4d074" ownerguid="593442e2-a727-409f-bd11-f63d5741b719"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">advertencia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5dd03a80-0e45-42b4-9527-6531bae3c9d8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="916d3f4f-5ab7-41c7-9d0c-d0c2879bd628"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quebranta</AUni> -<AUni ws="qvm-x-acl">quebranta</AUni> -<AUni ws="qvm-x-akh">quebranta</AUni> -<AUni ws="qvm-x-akl">quebranta</AUni> -<AUni ws="qvm-x-ame">quebranta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+quebrantar</AUni> -<AUni ws="qvm-x-acl">+quebrantar</AUni> -<AUni ws="qvm-x-akh">+quebrantar</AUni> -<AUni ws="qvm-x-akl">+quebrantar</AUni> -<AUni ws="qvm-x-ame">+quebrantar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.821" /> -<DateModified val="2022-10-10 21:18:47.197" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="728212fc-a6a6-474f-a903-6a24f7286953" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+quebrantar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="06c16d03-b99f-4ce4-a9e0-295ec28f9517" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a1da39db-5b46-49dd-a446-bd3611ee250b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +quebrantar 
\entryTyp root 
\gENG 
\gSPN 
\e +quebrantar 
\c V1 
\ach quebranta 
\akh quebranta 
\acl quebranta 
\akl quebranta 
\ame quebranta 
\i Rumita combu shalamashgannogmi Tayta Diosnintsipa palabranpis caycan chucru shonguntsita quebrantan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="916d94b5-7c27-41f2-9b54-303651169b01" ownerguid="f5156cde-9735-4249-920d-597fb0a7a8e3"> -<ExampleWords> -<AUni ws="en">worn out, has had it, is past it</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that has been used so much that it is no longer useful?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="916e8b1e-6e08-44a1-b0b5-faeb5dbf7a3d" ownerguid="25bf6690-6ed1-42e9-8a4a-3518f9cf382c"> -<ExampleWords> -<AUni ws="en">theology</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the study of God and religion?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="916fd2b7-64f6-48f8-99b7-949dc68e80d9" ownerguid="c1ee74c5-dd40-4e3f-85d1-b9fb87302aac"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="91710373-7c97-4416-af9e-871245876b9b" ownerguid="1168d136-6344-4f8f-b717-9d921e1e8cf9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9173a851-9f39-44c8-ba4f-36f1b66ec48f" ownerguid="5a585789-2ef6-42c5-9c5a-34ff716059b7"> -<ExampleWords> -<AUni ws="en">glass blower</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What is a person called who works with glass?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9175dd2a-9a6a-460c-8ee6-2d2c801fbd00" ownerguid="77c1318b-be8f-4aac-8114-2b6858829a7c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">swell up</AUni> -<AUni ws="es">hinchar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2e30dfec-6533-4e5f-9471-ec0537cba858" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9176f88d-6882-4a01-9848-c39fc06a448d" ownerguid="fd33670e-ef16-4566-a62e-aa077e58407b"> -<ExampleWords> -<AUni ws="en">clink, clank, clang, jingle, ring, tinkle, ding, toll, chime, chink, click</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to the sound of metal or glass hitting something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="917b9ad1-8166-49bd-b273-69d1469474e4" ownerguid="928741b5-bff6-4dd1-be37-ec6e7a4eb6ca"> -<ExampleWords> -<AUni ws="en">land (and sea), dry land, mainland, continent, inland, interior, terrestrial</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the land in contrast to the sea?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="917d28d2-72b6-4191-bb4a-2366eb4d209c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">prostitu:ta</AUni> -<AUni ws="qvm-x-acl">prostitu:ta</AUni> -<AUni ws="qvm-x-akh">prostitu:ta</AUni> -<AUni ws="qvm-x-akl">prostitu:ta</AUni> -<AUni ws="qvm-x-ame">prostitu:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+prostituta</AUni> -<AUni ws="qvm-x-acl">+prostituta</AUni> -<AUni ws="qvm-x-akh">+prostituta</AUni> -<AUni ws="qvm-x-akl">+prostituta</AUni> -<AUni ws="qvm-x-ame">+prostituta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.950" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dc1d57df-d7f3-4bf9-8d32-e9648a1fe934" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+prostituta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="03d940bb-f445-4642-814a-681eb4768165" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f423f43c-fb2e-4e4f-87f6-d0dd561c5e8f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +prostituta 
\entryTyp root 
\gENG prostitute 
\gSPN prostituta 
\e +prostituta 
\c N0 
\ach prostitu:ta 
\akh prostitu:ta 
\acl prostitu:ta 
\akl prostitu:ta 
\ame prostitu:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="917db51d-74f9-4a3b-8b2b-1389e3c13d6b" ownerguid="c0760bba-2f62-4b2a-8c60-06e4313fe7a3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">potato.storage</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c802cda2-eaec-4768-af67-bd1b815c5da0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="917dd571-2df9-4c5c-b438-3785933f9c42"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">que:su</AUni> -<AUni ws="qvm-x-acl">que:su; que:su; que:so</AUni> -<AUni ws="qvm-x-akh">que:su</AUni> -<AUni ws="qvm-x-akl">que:su; que:su; que:so</AUni> -<AUni ws="qvm-x-ame">que:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+queso</AUni> -<AUni ws="qvm-x-acl">+queso</AUni> -<AUni ws="qvm-x-akh">+queso</AUni> -<AUni ws="qvm-x-akl">+queso</AUni> -<AUni ws="qvm-x-ame">+queso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.831" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b275f951-f97b-4ff8-a5ad-9210660be774" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+queso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ed90c9b4-3309-465d-90c4-8ce1b9ab7656" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3cfd1ae0-54db-44ef-a8d6-6b9e0258464c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +queso 
\entryTyp root 
\gENG cheese 
\gSPN queso 
\e +queso 
\c N0 
\ach que:su 
\akh que:su 
\acl que:su / _# 
\acl que:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl que:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl que:su / _# 
\akl que:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl que:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame que:su</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="918019fc-e2a4-494b-af9f-eed9eecf9407" ownerguid="e2fe33f8-bee4-47a3-9e2b-d1c9487e4f7d" /> -<rt class="CmDomainQ" guid="9183e527-51a7-46a4-8942-72ec1ee77ea7" ownerguid="91913920-8a6a-4ba0-9361-d6cc9e1f3639"> -<ExampleWords> -<AUni ws="en">appendage, appurtenance, adjunct, accessory, addition, attachment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something added to the main part?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="9185952d-4dfb-45e2-9ec4-fe176789930a" ownerguid="42092895-8c78-4420-9c69-c0174c79142f"> -<Form> -<AUni ws="qvm-x-ach">pogasha; pogashä</AUni> -<AUni ws="qvm-x-acl">pogasha; pogashä</AUni> -<AUni ws="qvm-x-akh">poqasha; poqashä</AUni> -<AUni ws="qvm-x-akl">poqasha; poqashä</AUni> -<AUni ws="qvm-x-ame">puqasha; puqashä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="9185d474-e0c5-4ac3-ab9d-652d0b9269a1" ownerguid="cd4e0a03-47f9-4119-a883-ea54123d0817"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="9187c095-8ac2-4fd3-b6c0-499740d7ad15" ownerguid="dc43feaa-d4f9-4e3b-9378-bfe9323941e3"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="91913920-8a6a-4ba0-9361-d6cc9e1f3639" ownerguid="c72985cf-b07f-4ed5-873a-a2209929667e"> -<Abbreviation> -<AUni ws="en">8.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that refer to a part of something. These words are often based on the parts of a person's body.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Parts of things</AUni> -</Name> -<Questions> -<objsur guid="9abea0f5-19a4-4740-bbb9-4dd5758320d2" t="o" /> -<objsur guid="49d08ca0-fdfd-4cad-8a93-4f1f0bd5aa93" t="o" /> -<objsur guid="9e4daee2-fa71-4fbe-aae1-ba5c26ffa9af" t="o" /> -<objsur guid="3bd94625-eb4c-42ca-8b39-24ac43f95770" t="o" /> -<objsur guid="9183e527-51a7-46a4-8942-72ec1ee77ea7" t="o" /> -<objsur guid="47e62014-0137-4d6a-992d-fc894d6385b3" t="o" /> -<objsur guid="c1d56d67-1868-4924-8241-94392641c87c" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="aadefee4-ed14-4753-952e-e945f2972e37" t="r" /> -<objsur guid="e5f9c9cf-0b0c-47aa-b7df-8c37f211cd00" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="bddc70ea-d46f-4e4b-83a1-a47bea858dd6" t="o" /> -<objsur guid="5ee64d88-c462-4505-b14a-5d36e357a024" t="o" /> -<objsur guid="9e775794-3dda-4942-b6af-087ffd57f342" t="o" /> -<objsur guid="4d2a247e-4925-4750-8c39-e2d78665d33c" t="o" /> -<objsur guid="3005971d-de4d-401f-8400-b25de5e052ad" t="o" /> -<objsur guid="fc170f70-520e-4f3e-b8b8-98e4b898fd24" t="o" /> -<objsur guid="e1e0b800-85ad-4886-abe5-9f67c022a5ed" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="91932058-857a-4486-8822-955ea69e0689" ownerguid="9da5588e-626a-4347-868d-e378863f591d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="4b71d35c-6ea9-453a-bc3d-ecf95bc5adfd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="9195831b-33be-4b85-93bf-c63630405096" ownerguid="3d14b004-bfeb-41f3-8a76-832e2aba01bb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="919b74ba-29ce-4142-b915-e3cb74ffb7d9" ownerguid="45d867c7-8496-4c92-bb41-b7db5db47717"> -<ExampleWords> -<AUni ws="en">fattening</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe food that makes someone fat?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="919f1864-1663-4d07-b3a7-67494434ae1b" ownerguid="5a44d956-4cd0-4365-bcab-90949866ef55"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">soup</AUni> -<AUni ws="es">locro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9a083e4c-a32a-4bd2-be37-4b59af69516d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="91a024b5-f068-4953-bc16-07125848d849" ownerguid="d8b1a547-3592-41b4-b2dd-a7994b7357f4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="r" /> -</Morph> -</rt> -<rt class="WfiAnalysis" guid="91a24a4f-487c-4657-b2a4-b2f34e8bf101" ownerguid="c8746898-c8cb-4d19-bd2d-508ce344262e"> -<Evaluations> -<objsur guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="f0c6820c-5fce-4a6a-9339-3d76fea58a6f" t="o" /> -<objsur guid="e0f22827-8c89-4294-9bdd-8fc47ac00a92" t="o" /> -<objsur guid="cf7877da-0cc6-4662-9921-abc314ae8d53" t="o" /> -<objsur guid="d6a758c5-e49c-4c9d-ac75-d11e175c44fd" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="91a4c8a5-477a-4b49-87dc-1e91727ae38a" ownerguid="8fab00a3-f851-4d10-852c-6cc38f263cb5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="91a79ec7-fd85-4665-b9bd-5c522c4d6213" ownerguid="ca2f88ed-5d2b-4d01-baf7-e6ca8e0b8879"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">̈tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">̈tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">̈tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">̈tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">̈tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="5e46ae65-54c6-4814-bc32-f0e79a556030" t="r" /> -</Morph> -<Msa> -<objsur guid="292ae651-f5de-4294-ac06-25acfe912125" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="91a89394-ff69-496a-9155-2b02a4fe241d" ownerguid="5455ef1a-b9b5-4ab0-9d8f-2aa16c3a68db"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="78ef22e1-b133-4834-a2a3-7b2869cf743a" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="dc126d7a-aada-413b-ab35-f225d548f096" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="91a8d716-fc9e-4bb5-90a8-e65890d5450d" ownerguid="0db5817e-05bf-4703-a6b9-e239ac44f857"> -<ExampleWords> -<AUni ws="en">asexual, sexless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something (such as a plant) that is neither male nor female?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="91a98349-97ac-43a9-997d-b383649df984" ownerguid="7b7f948a-733c-4245-a403-1e7e35bb5c9a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ta</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ta</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ta</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ta</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ta</Run> -</AStr> -</Form> -<Morph> -<objsur guid="4f3f1430-f126-405a-98a8-5d0b732eb948" t="r" /> -</Morph> -<Msa> -<objsur guid="eac932ef-fd79-454b-b2f7-95e85dbb829a" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="91a9fcc2-49ed-42af-926d-fc4db2bfa2d4" ownerguid="e41d69ef-521c-4bb2-876e-e562a3e2b857"> -<Form> -<AUni ws="qvm-x-ach">última; ultima</AUni> -<AUni ws="qvm-x-acl">última; ultima</AUni> -<AUni ws="qvm-x-akh">última; ultima</AUni> -<AUni ws="qvm-x-akl">última; ultima</AUni> -<AUni ws="qvm-x-ame">última; ultima</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="91aaba41-4723-42ea-881d-8c996542f913" ownerguid="867f98c7-5ab3-4c00-b3dc-774415ad068f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wayi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wayi; wayi; waye</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wayi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wayi; wayi; waye</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wayi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="908a9492-ef77-4052-a703-5d519cb12013" t="r" /> -</Morph> -<Msa> -<objsur guid="87a61372-b529-41d0-892b-ca33273dc85c" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="91aee6e3-5c77-4b16-b448-1f719bcdaea9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">a:ya</AUni> -<AUni ws="qvm-x-acl">a:ya</AUni> -<AUni ws="qvm-x-akh">a:ya</AUni> -<AUni ws="qvm-x-akl">a:ya</AUni> -<AUni ws="qvm-x-ame">a:ya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*a:ya</AUni> -<AUni ws="qvm-x-acl">*a:ya</AUni> -<AUni ws="qvm-x-akh">*a:ya</AUni> -<AUni ws="qvm-x-akl">*a:ya</AUni> -<AUni ws="qvm-x-ame">*a:ya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.898" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3d36807e-d481-4b5a-ab57-3c11400b92d8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*a:ya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cf947f57-1ad3-431e-be09-b4be4b9ecd9f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9a4ac861-4e1c-4964-8796-b419ea24201a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *a:ya 
\entryTyp root 
\gENG open 
\gSPN abrir 
\e *a:ya 
\c V1 
\ach a:ya 
\akh a:ya 
\acl a:ya 
\akl a:ya 
\ame a:ya</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="91b91076-3441-4cc6-ad42-2721a8385e5c" ownerguid="228a64f0-4807-4567-a3dc-138ecb262512"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="86145e0c-9cbf-42a9-a25d-13c00ef8d255" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="91baed0d-3def-43af-ad75-01b6c4cc1b51" ownerguid="14e5a753-b44a-4eda-bef6-da47add5e658"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="91bd94fc-00d1-4ffc-9e0b-02508c4232c9" ownerguid="eb1dad61-59a2-49b1-ac77-4054ebf01b7a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="91bdcedf-4c73-4c70-92bc-c228671429b2" ownerguid="3159b288-5a51-4a70-814b-2e866f61e4a8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="91be7960-f97d-4d64-a469-4163377055cd" ownerguid="938bbb33-be76-412f-bd2f-ca94ca1500fb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="91be9117-db4c-4412-8ee7-5dc2b6ffd95b" ownerguid="69404d44-5a36-4aed-bccf-5249576c6e25"> -<Form> -<AUni ws="qvm-x-ach">jalga</AUni> -<AUni ws="qvm-x-acl">jalga</AUni> -<AUni ws="qvm-x-akh">jalqa</AUni> -<AUni ws="qvm-x-akl">jalqa</AUni> -<AUni ws="qvm-x-ame">halqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="91bf167f-32e3-4d1f-b9ea-1975565ac2e9" ownerguid="139cd00c-429c-465a-a227-512af0c48039"> -<ExampleWords> -<AUni ws="en">cassava</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to growing cassava?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="91bf64b1-50af-4cbb-a61d-30166d139bcf" ownerguid="a36b3354-8598-4228-b779-c7c922b1e61d"> -<ExampleWords> -<AUni ws="en">contraband</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something that is smuggled?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="91c19f3b-3f6b-41f4-be9d-d1176db8a423" ownerguid="411f9559-9127-43a7-b17f-ab4d9b38e050"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="91c37f95-cbf0-40a9-b1f7-793e00f0838d" ownerguid="198181cf-3363-4dee-b22c-c8bdaaf53ce0"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pasa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pasa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pasa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pasa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pasa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="883ada6f-0bf2-4887-9c50-61a9cb250b4c" t="r" /> -</Morph> -<Msa> -<objsur guid="b7f64f45-98d1-4eac-9cd3-956bf92b1494" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="91c73307-2ad1-4b0d-8bdf-54de8932e09c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuca</AUni> -<AUni ws="qvm-x-acl">cuca</AUni> -<AUni ws="qvm-x-akh">kuka</AUni> -<AUni ws="qvm-x-akl">kuka</AUni> -<AUni ws="qvm-x-ame">kuka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kuka</AUni> -<AUni ws="qvm-x-acl">*kuka</AUni> -<AUni ws="qvm-x-akh">*kuka</AUni> -<AUni ws="qvm-x-akl">*kuka</AUni> -<AUni ws="qvm-x-ame">*kuka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.3" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8b1e5560-f37c-426e-9af8-0b274052b60e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kuka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="51df3235-4c52-4e67-8e5e-c2cfe77a73a1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="715eac2e-0f3d-49fe-963a-f631d4bbe769" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kuka 
\entryTyp root 
\gENG coca 
\gSPN coca 
\e *kuka 
\c N0 
\ach cuca 
\akh kuka 
\acl cuca 
\akl kuka 
\ame kuka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="91c945df-0807-4021-9512-d969a53ca273"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sagma</AUni> -<AUni ws="qvm-x-acl">sagma</AUni> -<AUni ws="qvm-x-akh">saqma</AUni> -<AUni ws="qvm-x-akl">saqma</AUni> -<AUni ws="qvm-x-ame">saqma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*saqma</AUni> -<AUni ws="qvm-x-acl">*saqma</AUni> -<AUni ws="qvm-x-akh">*saqma</AUni> -<AUni ws="qvm-x-akl">*saqma</AUni> -<AUni ws="qvm-x-ame">*saqma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.449" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7bc0b0f8-c69f-46e6-a09c-a488ae92b583" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*saqma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dd230635-6161-4114-ab88-4573d5bc0cff" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d2c45354-b434-4cfb-a9bb-a75f12e257aa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *saqma 
\entryTyp root 
\gENG to.stone 
\gSPN apedrear 
\e *saqma 
\c V2 
\ach sagma 
\akh saqma 
\acl sagma 
\akl saqma 
\ame saqma</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="91cb814b-266a-4472-a280-d29d8032a4f5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ración; racion</AUni> -<AUni ws="qvm-x-acl">ración; racion</AUni> -<AUni ws="qvm-x-akh">ración; racion</AUni> -<AUni ws="qvm-x-akl">ración; racion</AUni> -<AUni ws="qvm-x-ame">ración; racion</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ración</AUni> -<AUni ws="qvm-x-acl">+ración</AUni> -<AUni ws="qvm-x-akh">+ración</AUni> -<AUni ws="qvm-x-akl">+ración</AUni> -<AUni ws="qvm-x-ame">+ración</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.226" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1e09f87f-89b7-4094-8bc1-64dacf609ebc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ración</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7ca7a5b0-e671-4e3a-9980-fbf79f26de30" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e22c47e0-5249-4e0b-9cdc-f5ce9429a983" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ración 
\entryTyp root 
\gENG 
\gSPN 
\e +ración 
\c N0 
\mp +FinalC 
\ach ración / _# 
\ach racion / ~_# 
\akh ración / _# 
\akh racion / ~_# 
\acl ración / _# 
\acl racion / ~_# 
\akl ración / _# 
\akl racion / ~_# 
\ame ración / _# 
\ame racion / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="91cb83ea-0e5f-4dc0-b024-4e4545fd988f" ownerguid="179d5ce7-6875-4359-95b9-16fc79a1c4ad"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="96611f0f-8844-4c67-8721-d02aadcc2cf9" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="9cd55063-3d43-467e-9ee0-12805d9bb1b5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="91cc7e8f-522e-4ff1-b545-5a5b72f4e953" ownerguid="434ec34f-e7ca-44f8-9252-dff5b9b2b62f"> -<Abbreviation> -<AUni ws="en">8.3.7.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is worse than something else.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Worse</AUni> -</Name> -<Questions> -<objsur guid="18f8473d-c49c-4c85-aea1-3f9eb6ed4a41" t="o" /> -<objsur guid="684b8cad-7d44-4b7d-afe8-eff2273efa9d" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="57c9a370-0f46-4475-98fd-c7a8b3f5074c" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="91cdf4e0-a3e3-46a2-a289-eb9953e963b8" ownerguid="45d867c7-8496-4c92-bb41-b7db5db47717"> -<ExampleWords> -<AUni ws="en">fattened</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe someone who has been made fat?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="91ceb77e-75af-4e6d-a0ca-ed5b8c808a81" ownerguid="7558d071-a885-447b-9aa2-604c29669492"> -<ExampleWords> -<AUni ws="en">govern, government, governor, governance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to government?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="91d0b337-d45d-4f2b-a620-0687521d70c4" ownerguid="7988974c-99fd-40dd-9b5e-2d81ec603ddc"> -<ExampleWords> -<AUni ws="en">wilderness, uninhabited, frontier, hinterland, outback</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to land where no people live?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="91d3fd07-1dbb-4b95-8d96-371d9f22e034" ownerguid="a8edb4f9-cc35-4486-9979-e49dd9391f4a"> -<Form> -<AUni ws="qvm-x-ach">imana</AUni> -<AUni ws="qvm-x-acl">imana</AUni> -<AUni ws="qvm-x-akh">imana</AUni> -<AUni ws="qvm-x-akl">imana</AUni> -<AUni ws="qvm-x-ame">imana</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="91d69bf7-62af-42be-a0d6-17b350b47443" ownerguid="1d8633e0-4279-4ddc-826e-16aa08a977e5"> -<ExampleWords> -<AUni ws="en">to crack (your knuckles), pop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the sounds made by popping the knuckles?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="91d8da97-ae12-4b4a-93cd-fb8dbca9c441" ownerguid="6c64a7bf-5ee7-4a87-951e-d60522364782"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">succulent</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="00fced91-573a-4814-a689-b3985362864e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="91dc078a-2d36-41de-8401-d41b3021bdd5" ownerguid="fb16da71-89b7-4b66-849a-51a11d68b30c"> -<Form> -<AUni ws="qvm-x-ach">llogui</AUni> -<AUni ws="qvm-x-acl">llogui; llogui; llogue</AUni> -<AUni ws="qvm-x-akh">lloqi</AUni> -<AUni ws="qvm-x-akl">lloqi; lloqi; lloqe</AUni> -<AUni ws="qvm-x-ame">lluqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="91dd1dfd-cfab-4aad-8d91-ae7aa3a44d2d" ownerguid="01b30761-2ba2-4a44-ade8-a72dd70de7b6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">doctor</AUni> -<AUni ws="es">doctor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b88ef553-ebca-4660-ae86-7b9b1e911b4a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="91ddf495-a28b-4a32-90dc-6f997d0cd069" ownerguid="5446b5cf-f05a-4bb2-89eb-ce63e27040f3"> -<Abbreviation> -<AUni ws="en">4.2.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.213" /> -<DateModified val="2022-9-23 16:55:8.213" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to musical instruments and people who play a particular instrument.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>6L Musical Instruments</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Musical instrument</AUni> -</Name> -<OcmCodes> -<Uni>534 Musical Instruments</Uni> -</OcmCodes> -<Questions> -<objsur guid="f7c2ccad-a7f0-4af5-adcc-e356b1988196" t="o" /> -<objsur guid="cfedbad1-b307-49ca-935e-d3b04126c17b" t="o" /> -<objsur guid="3a4fe3ac-c9e9-4e16-92c3-0e59d995f490" t="o" /> -<objsur guid="af79245c-0ffa-4e02-90ae-72d1352b3ccb" t="o" /> -<objsur guid="2a076a01-f505-4f98-a423-a7b940aa4fc9" t="o" /> -<objsur guid="d9ff4b39-4302-42a0-972b-4940f98c9f3c" t="o" /> -<objsur guid="173fdb8e-8edc-4673-8f39-649d0c953687" t="o" /> -<objsur guid="57b0da8d-f292-41ab-9655-e7c96e578366" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="91e4b4d0-9b18-4d98-8b26-bf260a01d8ab" ownerguid="10629560-8228-47ed-a541-6fd1dc3c7369"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="91e674d7-b12d-4c56-85ea-c150f9b74569" ownerguid="93b8bd61-137a-4ebc-b12f-52fa5d2b3ea4"> -<ExampleWords> -<AUni ws="en">whisper, sigh, moan, whistle, howl, scream, shriek</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What sounds does the wind make?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="91e7f3d0-33a5-4c56-bda9-964c828a180b" ownerguid="550c3860-c53c-46ef-b7c1-30e203da49af"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a951ff50-d6e3-42ea-b01c-6675b7741d74" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="91e95825-677a-4221-9e55-78a73bbac6ee" ownerguid="130e2cbb-7e51-4f6f-a1cf-7a053a44c9b7"> -<Abbreviation> -<AUni ws="en">8.3.8.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is simple or plain.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Simple, plain</AUni> -</Name> -<OcmCodes> -<Uni>353 Building Interiors and Arrangement; Interior Decoration and Arrangement</Uni> -</OcmCodes> -<Questions> -<objsur guid="e9c3d0a2-0c94-4595-9587-3b413f834673" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="91e9f009-90f0-40d2-b74c-26f5e5be5b3d" ownerguid="59a95939-44d7-4396-9ef7-3a80c17e9fb1"> -<ExampleWords> -<AUni ws="en">foul-mouthed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe someone who uses obscenities a lot?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="91eac181-4464-47aa-b6cc-b432097ebedc" ownerguid="2c04fa05-eebf-4331-b392-23f795c32382"> -<ExampleWords> -<AUni ws="en">alone, on your own, solo, solely</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to doing something by yourself?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="91ed2bc1-9acd-49f3-8cef-a1fbfa787a73" ownerguid="2bdfe506-0a28-45bd-81e1-44dcedcc262a"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="91ef6c77-bb2f-479a-890e-5cd6aa8694df" ownerguid="4dc64a3a-9db8-49b2-9f70-ea1efa1c5de5"> -<Category> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</Category> -<Evaluations> -<objsur guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="1bc206bb-6330-42fe-ae46-070831594274" t="o" /> -<objsur guid="ddfc88e2-78b2-4b4e-8975-481d6ce4b7db" t="o" /> -<objsur guid="a7b6d17e-5fea-4e49-9d6c-70f5aa5250c4" t="o" /> -<objsur guid="5860d18c-a874-4cb2-a88c-87519bee46f6" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="91f07f78-6bd9-4077-8958-df3a63f853ef"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">original</AUni> -<AUni ws="qvm-x-acl">original</AUni> -<AUni ws="qvm-x-akh">original</AUni> -<AUni ws="qvm-x-akl">original</AUni> -<AUni ws="qvm-x-ame">original</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+original</AUni> -<AUni ws="qvm-x-acl">+original</AUni> -<AUni ws="qvm-x-akh">+original</AUni> -<AUni ws="qvm-x-akl">+original</AUni> -<AUni ws="qvm-x-ame">+original</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.636" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ac43c11c-8894-4ce2-be51-9e319b741321" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+original</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="26a2f392-94ed-4bdb-bff1-46580070bbd1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c0d75b10-225b-44a5-8365-63707afb3a16" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +original 
\entryTyp root 
\gENG 
\gSPN 
\e +original 
\c N0 
\mp +FinalC 
\ach original 
\akh original 
\acl original 
\akl original 
\ame original</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="91f0a77a-79f1-4ce9-a23d-aaac5c91c7fd" ownerguid="d4a8d2fd-b493-4467-941a-677883b2281e"> -<Form> -<AUni ws="qvm-x-ach">dignu; digno</AUni> -<AUni ws="qvm-x-acl">dignu; dignu; digno</AUni> -<AUni ws="qvm-x-akh">dignu; digno</AUni> -<AUni ws="qvm-x-akl">dignu; dignu; digno</AUni> -<AUni ws="qvm-x-ame">dignu; digno</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="91f49d9f-74b0-4d1b-8ea1-164bb5aae211" ownerguid="907bfaf8-f715-47a4-a663-8878d628cdc3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="91f577aa-10a4-436a-91ec-ba20351ebe53"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jutuc</AUni> -<AUni ws="qvm-x-acl">jutuc</AUni> -<AUni ws="qvm-x-akh">jutuk</AUni> -<AUni ws="qvm-x-akl">jutuk</AUni> -<AUni ws="qvm-x-ame">hutuk</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hutuk</AUni> -<AUni ws="qvm-x-acl">*hutuk</AUni> -<AUni ws="qvm-x-akh">*hutuk</AUni> -<AUni ws="qvm-x-akl">*hutuk</AUni> -<AUni ws="qvm-x-ame">*hutuk</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.771" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0b2a0a18-09da-4d00-b7fa-86e1f3b1af97" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hutuk</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bd62b59f-ffd3-4695-8576-9ac8ecc29606" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0e16295d-ba4e-474f-a90e-572c086598b9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hutuk 
\entryTyp root 
\gENG drizzle 
\gSPN lloviznar 
\e *hutuk 
\c V1 
\ach jutuc 
\akh jutuk 
\acl jutuc 
\akl jutuk 
\ame hutuk</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="91f57f71-a0a8-4406-807c-23f5498cc6f2" ownerguid="ffd0547e-e537-4614-ac3f-6d8cd3351f33"> -<ExampleWords> -<AUni ws="en">foreleg, forefoot, forepaw, forelimb, hind leg, hind limb, hoof, paw, claw, hock, fetlock, haunch, pastern, shank, stifle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What are the parts of the legs?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="91f70f33-b214-444b-be15-03a262bde46d" ownerguid="7019ab61-993e-4b4d-9e72-e2f4b8b27858"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="0e3aa5b6-0847-4284-b597-25e72ea7dcc4" t="o" /> -<objsur guid="7b3a7dd6-1849-4a4c-902a-b36d7067b078" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="98edc57b-2399-4877-88cd-27d4b29642d3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="91f8c852-454d-4e98-8384-06f7873f737f" ownerguid="45631b01-889a-49f8-8eb0-9c138e84248c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="91fb4077-c006-44e2-a694-bb3ea906d036" ownerguid="6bf7569e-dc79-49da-9ce1-e2e03303828a"> -<ExampleWords> -<AUni ws="en">stocks, pillory</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What things are used to punish someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="91fb82d0-f4a9-4542-aeaa-01acadbff4ea" ownerguid="9b573e8a-d017-4918-b37e-0d5a600c0b6c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="9202bef8-14f9-41fb-b0bd-cc1939493df2" ownerguid="c6c07195-164d-402e-9612-adf8d18dc3b2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tarp</AUni> -<AUni ws="es">toldera</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f89a394c-5131-46d9-bd57-a1f15b72ba83" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="9207faa7-cdae-48b2-b147-310d59c87fe6" ownerguid="903beca1-13ed-4268-8e10-a28927e8f75c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ISA 2.11 Ali chölutucogcunapis dañëru cuchinogmi upäla mayaranga.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="92095d5a-b3f6-4c61-ba13-eefb657a75d6" ownerguid="a20245bb-760f-4eec-babf-65e35326b66d"> -<Form> -<AUni ws="qvm-x-ach">sagsa</AUni> -<AUni ws="qvm-x-acl">sagsa</AUni> -<AUni ws="qvm-x-akh">saqsa</AUni> -<AUni ws="qvm-x-akl">saqsa</AUni> -<AUni ws="qvm-x-ame">saqsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="920d2c5f-d824-4436-bf71-26b381612203" ownerguid="9eae4253-ffc1-4515-9ca5-5716bb4fd648"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="920f2521-71b8-4a73-ab6a-5e5f432cd9dc" ownerguid="7e286ec9-c553-4ec2-8194-b7ccf77f5491"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="2c944b55-73bf-42b4-b951-04eb7d08b483" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9215cb98-3f61-4889-8a47-410d8a5c830b" ownerguid="a8bfd196-8b54-4084-b11a-fe6e8bc5da4c"> -<ExampleWords> -<AUni ws="en">gather, collect, pick (berries)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to gathering wild plants?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9215eeca-9ab6-46d3-b5b5-d78e96450399" ownerguid="7b2bb976-a035-4423-aa43-850c28641fea"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.thunder</AUni> -<AUni ws="es">sonar.trueno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="152eaf26-8eee-476c-bcd9-8fbf8862d8b8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="92185f65-93b0-40df-bd42-b7b8f8ee6de7" ownerguid="c1ccbaa5-7adb-4ad1-a826-a014b7ebb2ff"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="eb98a5a4-8e4b-47b3-b354-5272c74ab47f" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="053cca94-147b-449e-ac90-5b608aad8b13" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9218655f-7474-431f-9521-eb76be2a9cae" ownerguid="5b5bcd42-09bb-4c2f-a2da-569cfa69b6ac"> -<ExampleWords> -<AUni ws="en">pay attention to, devote attention to, turn your attention to, focus on, concentrate on, give something/someone your undivided attention, attend to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to paying attention to something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="921919e4-3023-44b2-85e1-2d3ae9e03577" ownerguid="6910b634-4d03-4fea-b771-849f2948e5c6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">language</AUni> -<AUni ws="es">idioma</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a5337f20-0242-4046-8187-7af1c0e18e19" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="921991f5-7b35-4e68-80c3-c87466143186" ownerguid="f2899cde-08e5-4930-9f1b-b4ad575b7411"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="9220a21e-e740-4656-8406-c65cda0a1ab3" ownerguid="709b08c2-4066-47f7-8d38-e1838bba27d6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="92276dcf-5089-416e-ac20-bb423fea450d" ownerguid="76662e0a-c33f-4ade-8f11-e668d2cd276c"> -<Form> -<AUni ws="qvm-x-ach">yacha</AUni> -<AUni ws="qvm-x-acl">yacha</AUni> -<AUni ws="qvm-x-akh">yacha</AUni> -<AUni ws="qvm-x-akl">yacha</AUni> -<AUni ws="qvm-x-ame">yacha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9229e1fd-6daa-4929-9968-487cdf9735c6" ownerguid="01441207-4935-49a5-a192-16d949f5606c"> -<ExampleWords> -<AUni ws="en">court, line, lane, out of bounds, goal, finish line</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(19) What are the parts of the playing field?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="922e30f8-0c0b-4133-bdb4-8740dc964432" ownerguid="d128c232-6dcb-4a21-bc9d-728f28e27005"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="922e94ab-f0b8-464c-97ee-9ce552449181" ownerguid="77a30a6b-c141-416f-8100-8177350b049d"> -<Form> -<AUni ws="qvm-x-ach">toga</AUni> -<AUni ws="qvm-x-acl">toga</AUni> -<AUni ws="qvm-x-akh">toqa</AUni> -<AUni ws="qvm-x-akl">toqa</AUni> -<AUni ws="qvm-x-ame">tuqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="922eb830-8fed-4c9b-a16d-274d0366c79a" ownerguid="7d472317-b5e8-4cae-a03f-913ecdaf4c29"> -<ExampleWords> -<AUni ws="en">constrictor, poisonous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of snakes are there?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="9238d66f-e2fa-4ced-87b4-050a53e00f11" ownerguid="1f170500-3a55-4f4d-aa23-c01d9540c88f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuna</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuna</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuna</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuna</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuna</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f236a19a-86ce-4599-91f5-fb178488e065" t="r" /> -</Morph> -<Msa> -<objsur guid="0851fe14-f99e-4e06-befc-3a76b044ea37" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="92396ef0-1534-423a-89a9-651726c353d4" ownerguid="d0b14231-1471-41b3-aeb5-69199acaaefb"> -<ExampleWords> -<AUni ws="en">in a ... way/manner/fashion, with, like, along ... lines, as if, as though, with an air of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that something is done in a particular way?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="923eefa6-f5ae-473b-a17f-fd8045a20502"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pu:ru</AUni> -<AUni ws="qvm-x-acl">pu:ru; pu:ru; pu:ro</AUni> -<AUni ws="qvm-x-akh">pu:ru</AUni> -<AUni ws="qvm-x-akl">pu:ru; pu:ru; pu:ro</AUni> -<AUni ws="qvm-x-ame">pu:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+puro</AUni> -<AUni ws="qvm-x-acl">+puro</AUni> -<AUni ws="qvm-x-akh">+puro</AUni> -<AUni ws="qvm-x-akl">+puro</AUni> -<AUni ws="qvm-x-ame">+puro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.220" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f3ce324f-1ca3-49ef-a9cb-93c18ee5dbe7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+puro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eb039eba-90eb-4a4f-a881-d7cbac65be78" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="48a6e3d6-88bf-4166-906e-c8dd7f65bda8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +puro 
\entryTyp root 
\gENG pure 
\gSPN puro 
\e +puro 
\c N0 
\ach pu:ru 
\akh pu:ru 
\acl pu:ru / _# 
\acl pu:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pu:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pu:ru / _# 
\akl pu:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pu:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pu:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="92405128-fa1f-4fa1-90b0-695c97172478" ownerguid="6baae70c-2f63-458f-9757-3bfa45f953f1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="fa5f6578-df2c-4956-9ae5-cc7f119ef838" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">sneeze</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d93ec668-2b33-4e36-919a-3750bca90f42" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="9240530c-0764-4f02-94d5-d40937b765ac" ownerguid="77509eb0-29ac-40e0-94d3-acad69aa5778"> -<Form> -<AUni ws="qvm-x-ach">ñuchgu</AUni> -<AUni ws="qvm-x-acl">ñuchgu; ñuchgu; ñuchgo</AUni> -<AUni ws="qvm-x-akh">ñuchqu</AUni> -<AUni ws="qvm-x-akl">ñuchqu; ñuchqu; ñuchqo</AUni> -<AUni ws="qvm-x-ame">ñuchqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="9241cf68-361a-432d-b310-e89b0cda2781" ownerguid="cb26e7c4-b30e-4e2b-991d-a73d56fcc29a"> -<Category> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</Category> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="b943f4aa-ad14-47af-b252-42eb7201d605" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="ca8d99c4-0eae-4380-a382-03447a4e0f9e" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="92439677-50c9-4f1a-9800-43a2ff460092" ownerguid="b8df8589-d03c-4e6d-bbeb-4f24fbf6a1dc"> -<ExampleWords> -<AUni ws="en">raise, stand something up, stand something on end, erect, set up, rear</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to making something vertical?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="924591d0-9b21-401e-88f3-1fe79abe6f16" ownerguid="16c520be-2776-4b7b-8f11-7d330600e5eb"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="9248b09d-f0fa-45d8-91fc-5109ba46d3be" ownerguid="078dc3f7-2aac-4ecb-808d-ec65a50932ed"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">steam</AUni> -<AUni ws="es">cocinar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a4f0fcad-e96c-4762-a8cc-fd47dc30e396" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="9248e186-ba56-49dd-a837-8666df231814" ownerguid="a24111ff-bfee-4afa-838f-3af407f0bde8"> -<Form> -<AUni ws="qvm-x-ach">botëllita</AUni> -<AUni ws="qvm-x-acl">botëllita</AUni> -<AUni ws="qvm-x-akh">botëllita</AUni> -<AUni ws="qvm-x-akl">botëllita</AUni> -<AUni ws="qvm-x-ame">botëllita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="92494091-96cb-40be-b29d-b32d7b583c94" ownerguid="372dad9a-3c21-4576-a181-453ba1ef4188"> -<Form> -<AUni ws="qvm-x-ach">vacüna</AUni> -<AUni ws="qvm-x-acl">vacüna</AUni> -<AUni ws="qvm-x-akh">vacüna</AUni> -<AUni ws="qvm-x-akl">vacüna</AUni> -<AUni ws="qvm-x-ame">vacüna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="924abdd2-ac83-42dd-83d2-57026de88bdb" ownerguid="4177b91c-dc7b-4bcc-b8a1-32889406924e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sand</AUni> -<AUni ws="es">arenilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dd71f950-17e9-46eb-95a3-6045a2136f2b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="924ef02d-b9fa-4717-bd20-87b430daf3fc" ownerguid="5ec4cb19-0127-4e01-8d32-31703728bbcb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="924fafd4-deef-4d01-aeac-831c57538dd3" ownerguid="5d977783-a1f3-4de8-9889-032296f1818e"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="92504ac5-e863-4551-9a8f-6754c429ca97" ownerguid="0f631495-e758-444e-9249-d7f384f96f49"> -<Form> -<AUni ws="qvm-x-ach">mogu</AUni> -<AUni ws="qvm-x-acl">mogu; mogo</AUni> -<AUni ws="qvm-x-akh">moqu</AUni> -<AUni ws="qvm-x-akl">moqu; moqo</AUni> -<AUni ws="qvm-x-ame">muqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="9251771f-ead3-4610-9f02-829f7425b21a" ownerguid="94b58705-8a11-40a4-bef3-496594c01c13"> -<Form> -<AUni ws="qvm-x-ach">palanca</AUni> -<AUni ws="qvm-x-acl">palanca</AUni> -<AUni ws="qvm-x-akh">palanca</AUni> -<AUni ws="qvm-x-akl">palanca</AUni> -<AUni ws="qvm-x-ame">palanca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9258788b-fd46-41cb-8b26-a45e70551696" ownerguid="cbc0a8f5-9cba-41d2-a7e5-565fbf09c8c4"> -<ExampleWords> -<AUni ws="en">laugh silently, chuckle, giggle, ripple of laughter, titter, twitter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to laughing a little or quietly?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="92590b7e-55ca-4c96-8288-78f14e25a2a8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">calaba:za</AUni> -<AUni ws="qvm-x-acl">calaba:za</AUni> -<AUni ws="qvm-x-akh">calaba:za</AUni> -<AUni ws="qvm-x-akl">calaba:za</AUni> -<AUni ws="qvm-x-ame">calaba:za</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+calabaza</AUni> -<AUni ws="qvm-x-acl">+calabaza</AUni> -<AUni ws="qvm-x-akh">+calabaza</AUni> -<AUni ws="qvm-x-akl">+calabaza</AUni> -<AUni ws="qvm-x-ame">+calabaza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.110" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="70b8dfd5-ef8f-4925-a018-cc316e0ff1fd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+calabaza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d91d60f1-994e-4fe9-8310-19fc7cb158b3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6d78a458-a4c3-467b-9d41-060866489b2f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +calabaza 
\entryTyp root 
\gENG squash 
\gSPN calabaza 
\e +calabaza 
\c N0 
\ach calaba:za 
\akh calaba:za 
\acl calaba:za 
\akl calaba:za 
\ame calaba:za</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9259107c-8ff9-48bf-8918-598247a39272" ownerguid="da203891-90a2-48f0-955a-8a80b6c62af9"> -<ExampleWords> -<AUni ws="en">arrange, organize, make arrangements, line up, prepare</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to arranging an event?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="925f26f1-e093-499f-8325-8269ce1186ce" ownerguid="639d387e-fed9-4ef5-9fe8-8788d1347c72"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">old.lady</AUni> -<AUni ws="es">vieja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="280a78e7-b556-4d01-8c02-63e10b85e34a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="92627964-b223-46c1-9bd7-25121b2d8307" ownerguid="0fa0be21-2246-40b2-86b1-ca572fe8c16c"> -<ExampleWords> -<AUni ws="en">disinterest, lack of interest, boredom, apathy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of being uninterested?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9267c030-bb2c-4786-9618-330447c3e278" ownerguid="869d0c7b-d792-45ab-bf31-fd9f6fea3107"> -<ExampleWords> -<AUni ws="en">salesman, clerk, shopkeeper, storekeeper</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who sells things?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="9267d7c0-3485-4662-a5fd-c580cbb419fd" ownerguid="18290e88-b731-466a-a69f-aefda0747274"> -<Morph> -<objsur guid="115c00ce-8c52-4e29-9aba-ae1eed0cc618" t="r" /> -</Morph> -<Msa> -<objsur guid="36bc0db3-e9b0-444b-b181-ed81670113b4" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="92691d17-d145-4783-a83a-8d67fc35a586"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">luchuy</AUni> -<AUni ws="qvm-x-acl">luchuy</AUni> -<AUni ws="qvm-x-akh">luchuy</AUni> -<AUni ws="qvm-x-akl">luchuy</AUni> -<AUni ws="qvm-x-ame">luchuy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lluchuy</AUni> -<AUni ws="qvm-x-acl">*lluchuy</AUni> -<AUni ws="qvm-x-akh">*lluchuy</AUni> -<AUni ws="qvm-x-akl">*lluchuy</AUni> -<AUni ws="qvm-x-ame">*lluchuy</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.215" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0937c76c-6518-45dd-9ad8-4ce84e16431c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lluchuy</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4a13ef2b-a876-401b-9e8c-3507b25df928" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="46c223da-dcaf-4080-965c-5c39b04d055d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lluchuy 
\entryTyp root 
\gENG 
\gSPN limpio 
\e *lluchuy 
\c N0 
\mp +FinalC 
\ach luchuy 
\akh luchuy 
\acl luchuy 
\akl luchuy 
\ame luchuy</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="926dd853-60f7-479d-8804-42beb2312f26"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Deut</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="926e9d28-087e-4600-beda-f5f83ead9b47" ownerguid="4386a7fb-da26-446f-a1ef-827ce0f78951"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cinammon</AUni> -<AUni ws="es">canela</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c759e8cb-9b5d-4eef-860c-79a8793fb6a2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="927bcedd-7757-4958-8700-a8f05a1e27c1" ownerguid="c3296c14-6731-418f-a89a-4c3b487d5fb9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="0d363b2f-a9b2-456d-a06e-0ca813b1381f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="927cffdc-2502-4c5b-ba56-02399cf30dc5" ownerguid="4e7a6dfe-3654-4ca1-874d-02424581b774"> -<ExampleWords> -<AUni ws="en">how deep, be (ten feet) deep, (ten feet) in depth, at a depth of (ten feet), plunge (ten feet)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words indicate how deep something is?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="92812b88-4009-4f71-b3d9-b231a7469de9" ownerguid="f3540c55-95d5-446a-8af7-002fea59c41f"> -<Form> -<AUni ws="qvm-x-ach">lucsu</AUni> -<AUni ws="qvm-x-acl">lucsu; lucsu; lucso</AUni> -<AUni ws="qvm-x-akh">luksu</AUni> -<AUni ws="qvm-x-akl">luksu; luksu; lukso</AUni> -<AUni ws="qvm-x-ame">luksu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="9281bb5e-a0f7-44df-b4a7-1a10c820d35a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">auri</AUni> -<AUni ws="qvm-x-acl">auri; aure</AUni> -<AUni ws="qvm-x-akh">awri</AUni> -<AUni ws="qvm-x-akl">awri; awre</AUni> -<AUni ws="qvm-x-ame">awri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*awri.v</AUni> -<AUni ws="qvm-x-acl">*awri.v</AUni> -<AUni ws="qvm-x-akh">*awri.v</AUni> -<AUni ws="qvm-x-akl">*awri.v</AUni> -<AUni ws="qvm-x-ame">*awri.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.890" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9e6d5545-59da-4599-b1d8-75c536f036d7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*awri.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4b5928af-ae4b-4bc5-a5bc-dd52d3b6218a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bee72262-6751-46b4-aaf4-ba4b3cc7c06f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *awri.v 
\entryTyp root 
\gENG tangle 
\gSPN enredarse 
\e *awri.v 
\c V2 
\mp +FinalI 
\ach auri 
\akh awri 
\acl auri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl aure +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl awri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl awre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame awri</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="928741b5-bff6-4dd1-be37-ec6e7a4eb6ca" ownerguid="79ebb5ce-f0fd-4fb5-9f22-1fa4965a555b"> -<Abbreviation> -<AUni ws="en">1.3.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.963" /> -<DateModified val="2022-9-23 16:55:7.963" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to land in contrast with the sea or river.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>1I Land in Contrast With the Sea</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Island, shore</AUni> -</Name> -<Questions> -<objsur guid="917b9ad1-8166-49bd-b273-69d1469474e4" t="o" /> -<objsur guid="4d6641ab-f818-4d27-bd9f-745eaf5c701a" t="o" /> -<objsur guid="6c8aba00-907a-40a2-9da9-ea7ffbe91876" t="o" /> -<objsur guid="6ba91413-9748-465b-b59f-04dd7d1c55f5" t="o" /> -<objsur guid="5b38d7ac-5dec-44d7-9f44-3d1d0179fa75" t="o" /> -<objsur guid="2e8c6de1-80fb-4712-b4a4-4ed0df17c88a" t="o" /> -<objsur guid="068d3c18-124f-4685-88e5-7431bbbfc74f" t="o" /> -<objsur guid="73e4c4d4-ba5c-4f85-aaea-6a1cda366fe1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="928b6d04-0c0f-45b1-86d9-8ef7efda3d2c" ownerguid="bba30b56-6cd8-4542-81ab-f983cf1354bd"> -<ExampleWords> -<AUni ws="en">remote, isolated, out of the way, off the beaten track, secluded, miles from anywhere, in the middle of nowhere, way out, backwater, backcountry, boondocks, boonies, hicks, out in the sticks</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe a place that is far away from where most people go?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="928b8d01-21a8-4ca5-86ba-d926980cd7b6" ownerguid="7df152ed-3b6d-4a16-9135-89f5c742cd2f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1 V2/V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">SUD</AUni> -<AUni ws="es">REPN</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f6ea55f1-4e4a-4ecf-8111-a616c65ce527" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="928fdacd-58a6-4e16-aa41-7501ad85fe2f" ownerguid="1d138c73-f30e-4fc3-8c5a-e2f53084d956"> -<Form> -<AUni ws="qvm-x-ach">culcush</AUni> -<AUni ws="qvm-x-acl">culcush</AUni> -<AUni ws="qvm-x-akh">kulkush</AUni> -<AUni ws="qvm-x-akl">kulkush</AUni> -<AUni ws="qvm-x-ame">kulkush</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="92913196-b794-426c-acd8-9c78fd88b526" ownerguid="9e53f396-f9ed-4f40-a999-e3e9d36e4f69"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">alert</AUni> -<AUni ws="es">alerto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9dc9b32c-4dc9-4678-81c6-3eb751860553" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="92927492-d29d-490a-a2cc-6e42f39831f0" ownerguid="36e8f1df-1798-4ae6-904d-600ca6eb4145"> -<ExampleWords> -<AUni ws="en">evasive (maneuvers), getaway (car)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe something related to escaping?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9296e185-b820-4d67-9741-fa7bbdbc9291"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bururuy</AUni> -<AUni ws="qvm-x-acl">bururuy</AUni> -<AUni ws="qvm-x-akh">bururuy</AUni> -<AUni ws="qvm-x-akl">bururuy</AUni> -<AUni ws="qvm-x-ame">bururuy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*bururuy</AUni> -<AUni ws="qvm-x-acl">*bururuy</AUni> -<AUni ws="qvm-x-akh">*bururuy</AUni> -<AUni ws="qvm-x-akl">*bururuy</AUni> -<AUni ws="qvm-x-ame">*bururuy</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.1" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e3d8cb44-f58e-4907-92bc-68056996ca43" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*bururuy</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7f6c0a2c-80ac-4812-acf5-a5fbf3b0fa58" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="db177d67-0d9e-41b2-96a6-5462a36dd7fa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *bururuy 
\entryTyp root 
\gENG stampede 
\gSPN estampida 
\e *bururuy 
\c N0 
\mp +FinalC 
\ach bururuy 
\akh bururuy 
\acl bururuy 
\akl bururuy 
\ame bururuy</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="929720f5-c264-49fd-b817-3e1ebff6e1de" ownerguid="32125c5f-d69a-442f-ba66-6277ec0a3b15"> -<Abbreviation> -<AUni ws="en">5.2.3.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.317" /> -<DateModified val="2022-9-23 16:55:8.317" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to food from vegetables.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Food from vegetables</AUni> -</Name> -<Questions> -<objsur guid="3899dfb5-2154-46da-a1e6-86e0ed934985" t="o" /> -<objsur guid="ba32e8c8-8946-4047-8412-731679695570" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="9297816e-fb59-451b-8c90-747cfcd77ec4" ownerguid="5929d805-deb3-4fc7-9201-12ad124eb4b8"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PunctuationForm" guid="9297a87b-7ae6-4aff-8dc7-d3927a1f3945"> -<Form> -<Str> -<Run ws="en">t</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="929bf5eb-1a8e-4041-b726-e7aa195acf4c" ownerguid="74cd7314-5ef6-4505-a35a-81468b5a3f3a"> -<ExampleWords> -<AUni ws="en">the picture, the score, what's going on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the true situation rather than the situation that people think exists?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="929eec1a-70ef-42fa-81de-0ebc93c338af" ownerguid="9f8b8c01-f790-469f-bc37-dece6227e276"> -<ExampleWords> -<AUni ws="en">contemporary, be a contemporary of someone, be contemporaries</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to two people that lived at the same time?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="929fafb5-d915-465c-baa7-8f09caa69de6" ownerguid="480ee451-64dd-4bad-bd85-c6811a8eb4cb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.numb</AUni> -<AUni ws="es">adormecer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c27bc227-6861-449b-956c-42c1f33c132a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="92a00216-534a-45cd-9931-b2fd2e7b99a0" ownerguid="598349be-08f2-40ab-9a47-ba0ce2e95f1f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="92a1708a-0d5b-471a-9ead-a18e92ee2a37" ownerguid="9cfe4c5a-80d4-4b31-ba89-79b2e3d28a1c"> -<ExampleWords> -<AUni ws="en">cuticle, root</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What are the parts of a fingernail?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="92a6f151-7f8b-452a-99fa-b1e9f6c138b7" ownerguid="28a68cea-9128-4d5c-8542-8df38c907310"> -<ExampleWords> -<AUni ws="en">deliverance, liberation, redemption</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the act of setting someone free?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="92a837b6-41ab-479b-bc5c-32f583fea8b6" ownerguid="59808e11-c83e-45ef-987a-6e7fcacf2733"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="Segment" guid="92a87a1d-b01f-4230-ba05-2279554498b9" ownerguid="9a4116ea-854f-4905-b59d-a93e7540a437"> -<Analyses> -<objsur guid="2d8d437c-6f6a-464b-bf44-b54b7c97eaf4" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="92a8d6cd-4cfd-4cfd-9e26-27325a250073" ownerguid="d7cdc81e-858f-4f27-be59-e12db8307818"> -<Form> -<AUni ws="qvm-x-ach">yega; yegä</AUni> -<AUni ws="qvm-x-acl">yega; yegä</AUni> -<AUni ws="qvm-x-akh">yeqa; yeqä</AUni> -<AUni ws="qvm-x-akl">yeqa; yeqä</AUni> -<AUni ws="qvm-x-ame">yiqa; yiqä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="92aac2c6-e0cd-44cb-82c6-5974432f826b" ownerguid="9351d5b6-5a87-422a-9e82-ca6a0bacd3e9"> -<ExampleWords> -<AUni ws="en">keep your cool, keep your head, keep a stiff upper lip, maintain your composure, imperturbable, untroubled</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to remaining calm in a difficult situation?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="92ab9a8f-f150-4fc2-8c45-2596ec7a5e58" ownerguid="a0642103-0e21-49bd-8c77-6d7c883361a0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">steep</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="667fdd8b-be1a-4024-aa50-1e5e29ae5d4b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="92b09e81-6822-44a9-a57e-7e09e4f52900" ownerguid="e1a431ea-cae6-4d17-b2ff-4fdadf59c1b3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="57e435ff-f14a-44e1-b595-dff01f37fcc1" t="r" /> -</Morph> -<Msa> -<objsur guid="be6973f5-a2b1-46a6-9dd0-379cd8bb168a" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="92b1f045-a587-4ad6-904e-ae981acf3394" ownerguid="d926ebb0-3765-43a5-a6b1-8780b146bc09"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="92b65ef0-c0fd-4b72-91e4-ddd6905e133d" ownerguid="937ba972-655c-4d39-89f1-753d055c035f"> -<Form> -<AUni ws="qvm-x-ach">upi</AUni> -<AUni ws="qvm-x-acl">upi; upe</AUni> -<AUni ws="qvm-x-akh">upi</AUni> -<AUni ws="qvm-x-akl">upi; upe</AUni> -<AUni ws="qvm-x-ame">upi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="92bce60b-69b6-4867-8802-96ecedc32414" ownerguid="a139558a-8df9-4fc9-bd3e-816a1408ba7f"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">We made this book entirely <by hand>, using locally available materials.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">by hand</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used to indicate that you make something yourself rather than using a machine?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="92bcfa15-b85d-4b32-b367-42a90b5c1032" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<ExampleWords> -<AUni ws="en">hang your head, cry, frown, bewail, groan, lament, lamentation, sigh, wail</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What do people do when they are sad?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="92bdafab-9b20-49b7-9cd9-bc01f4a7246f" ownerguid="60dc7cf6-0a41-4cd3-99a6-0b7a71488e7e"> -<ExampleWords> -<AUni ws="en">downer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something that causes someone to feel bad?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="92bde305-9fd2-48ae-b2a0-ac91a6e95744" ownerguid="ff7e3abd-6810-4128-83c9-701b4925c2fe"> -<ExampleWords> -<AUni ws="en">fireproof, unburnable, fire-resistant, unquenchable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe something that will not burn?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="92c0a925-284f-4bb1-bf05-9dededed361d" ownerguid="f0603e9a-c085-453b-b8bf-3663358ee837"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">indeed</AUni> -<AUni ws="es">de.veras</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9c387d89-ec59-44b3-a5ef-fb34472a5b83" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="92c1bb05-e698-45df-abd3-e4aea63be3cb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">senti:du</AUni> -<AUni ws="qvm-x-acl">senti:du; senti:du; senti:do</AUni> -<AUni ws="qvm-x-akh">senti:du</AUni> -<AUni ws="qvm-x-akl">senti:du; senti:du; senti:do</AUni> -<AUni ws="qvm-x-ame">senti:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sentido</AUni> -<AUni ws="qvm-x-acl">+sentido</AUni> -<AUni ws="qvm-x-akh">+sentido</AUni> -<AUni ws="qvm-x-akl">+sentido</AUni> -<AUni ws="qvm-x-ame">+sentido</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.498" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a06d7f05-9283-4280-913c-69b64b7a7f31" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sentido</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0a70d42a-ffca-4398-8c95-86b8e9cfc112" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1984aec6-dea6-4166-ab0a-18401b299dff" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sentido 
\entryTyp root 
\gENG 
\gSPN 
\e +sentido 
\c N0 
\ach senti:du 
\akh senti:du 
\acl senti:du / _# 
\acl senti:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl senti:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl senti:du / _# 
\akl senti:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl senti:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame senti:du 
\i SNG 5.4 Tsay nishganga ishcay sentïduyogmi caycan. Wayi puncupa maquinta jatimushganta nishgannoglami jipashman mözu yaycunanpag cashgantapis niycan. 
\i SNG 8.5 Gamta ricchatsishcä ninanga cuyanacunantsipag sentïduyquita quichashcä ninanmi.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="92c207a8-abb9-4cef-8ef6-ba3138ebde74" ownerguid="067a0610-1b9c-404c-9ed3-3ed4e773891a"> -<Form> -<AUni ws="qvm-x-ach">gäna</AUni> -<AUni ws="qvm-x-acl">gäna</AUni> -<AUni ws="qvm-x-akh">gäna</AUni> -<AUni ws="qvm-x-akl">gäna</AUni> -<AUni ws="qvm-x-ame">gäna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="92c29fab-5740-4fc1-be29-da9918d99ebc" ownerguid="130e2cbb-7e51-4f6f-a1cf-7a053a44c9b7"> -<ExampleWords> -<AUni ws="en">decoration, adornment, embellishment, ornament</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something used to decorate something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="92c5ca0d-6af7-4018-8c9a-4b7c10602cab" ownerguid="28b0587f-f28f-4fcf-a367-028c6c4dacf8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">road</AUni> -<AUni ws="es">camino</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f28ba5fd-5ad0-4d41-8418-fc647831bbf2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="92ca97bc-23da-478e-8ef3-98a5038bc565" ownerguid="1de2cef5-3a2d-45c1-8cb6-06b2ac087907"> -<Question> -<AUni ws="en">(6) complement to words of ordering (in English we use an infinitive with these words)</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="92cbc1e7-8c50-45ad-b6cd-c1d4f13b87d7" ownerguid="28013fe4-a331-4794-a144-183f7d04712c"> -<Form> -<AUni ws="qvm-x-ach">alabanza</AUni> -<AUni ws="qvm-x-acl">alabanza</AUni> -<AUni ws="qvm-x-akh">alabanza</AUni> -<AUni ws="qvm-x-akl">alabanza</AUni> -<AUni ws="qvm-x-ame">alabanza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="92cdd3e8-490c-4935-acd9-f0157f31cf1c" ownerguid="59d6cf52-5c9a-4333-a6fb-8ee99d077dc1"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="92cf5055-f329-4301-a1b8-acf9d02c7e60"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tagay</AUni> -<AUni ws="qvm-x-acl">tagay</AUni> -<AUni ws="qvm-x-akh">taqay</AUni> -<AUni ws="qvm-x-akl">taqay</AUni> -<AUni ws="qvm-x-ame">taqay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*taqay</AUni> -<AUni ws="qvm-x-acl">*taqay</AUni> -<AUni ws="qvm-x-akh">*taqay</AUni> -<AUni ws="qvm-x-akl">*taqay</AUni> -<AUni ws="qvm-x-ame">*taqay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.815" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="68f22ffa-ea64-42c5-a28c-41d2a53bfc34" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*taqay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4d988f15-7d59-4021-b721-4ca746eaf932" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2d235efe-a723-47e7-83f6-62b7fdd0377b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *taqay 
\entryTyp root 
\gENG that 
\gSPN aquel 
\e *taqay 
\c N0 
\mp NeverForeshortened 
\ach tagay 
\akh taqay 
\acl tagay 
\akl taqay 
\ame taqay 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="92d3a47c-c3c1-40f5-9451-e07ce94b5a64" ownerguid="e258eee9-5bc3-4ede-a5b1-7086af736d64"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">whistle</AUni> -<AUni ws="es">silbar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9e8e98d6-7eb4-4b6c-a1c0-a5b47bcbd8c3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="92d464c2-5a24-40e2-a06f-79499743e601"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Warmikuna</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="92d46caf-f079-416b-908f-371e6f25bc8b" ownerguid="ee407532-ebd4-4026-906d-08229667cbee"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wood.shaving</AUni> -<AUni ws="es">viruta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e7a28d43-086f-4efb-9acc-51178ddc0c42" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="PunctuationForm" guid="92d773f5-6e30-45e7-bb40-77881474930e"> -<Form> -<Str> -<Run ws="en">ransitive</Run> -</Str> -</Form> -</rt> -<rt class="LexEntry" guid="92dd22f1-1c76-4735-aa3f-98fc742469ab"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mautsa</AUni> -<AUni ws="qvm-x-acl">mautsa</AUni> -<AUni ws="qvm-x-akh">mawtsa</AUni> -<AUni ws="qvm-x-akl">mawtsa</AUni> -<AUni ws="qvm-x-ame">mawtsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mawcha</AUni> -<AUni ws="qvm-x-acl">*mawcha</AUni> -<AUni ws="qvm-x-akh">*mawcha</AUni> -<AUni ws="qvm-x-akl">*mawcha</AUni> -<AUni ws="qvm-x-ame">*mawcha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.366" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eefea3f5-b182-4719-8a3e-e0a60840c7ad" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mawcha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e2391443-cfdf-485e-abed-b5b528c4f11c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6981c85a-718c-4ec0-a5cc-0efd5c35e906" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mawcha 
\entryTyp root 
\gENG healthy 
\gSPN gordo 
\e *mawcha 
\c N0 
\ach mautsa 
\akh mawtsa 
\acl mautsa 
\akl mawtsa 
\ame mawtsa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="92df5799-e9d9-44dc-b77d-c4cf6e921e91" ownerguid="af2f9cce-2c39-4b1b-a137-5f37c3374e2a"> -<Form> -<AUni ws="qvm-x-ach">juliu; julio</AUni> -<AUni ws="qvm-x-acl">juliu; juliu; julio</AUni> -<AUni ws="qvm-x-akh">juliu; julio</AUni> -<AUni ws="qvm-x-akl">juliu; juliu; julio</AUni> -<AUni ws="qvm-x-ame">juliu; julio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="92e23ca0-ae2f-4659-9c6c-28d6e85b2244" ownerguid="85188748-1919-4210-a9e9-91171d9d6454"> -<ExampleWords> -<AUni ws="en">freshwater, saltwater, pelagic, marine, aquatic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe where a fish lives?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="92e2f921-df40-44f3-ab05-8d288ffabda8" ownerguid="75202262-cdba-4c43-9343-764c84138797"> -<ExampleWords> -<AUni ws="en">uncle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to your mother's brother?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="92e441df-7e56-4e2c-b205-79a95800f567" ownerguid="50dfffe4-dfe8-445f-bdde-4cc8d83ebd6b"> -<Abbreviation> -<AUni ws="en">4.3.4.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.233" /> -<DateModified val="2022-9-23 16:55:8.233" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to competing with someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Compete with</AUni> -</Name> -<Questions> -<objsur guid="3e942362-4f09-4717-ab30-e9bec8d6de17" t="o" /> -<objsur guid="007e9312-6c39-4b98-b36f-24a3009e24bb" t="o" /> -<objsur guid="3cbf2104-ba2a-402b-aa29-1b7c227c3e4a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="StStyle" guid="92e5dc56-317a-461d-a179-e9e005d6612a" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="7a194e30-4c8c-4934-83ad-b12ecc47a768" t="r" /> -</BasedOn> -<Context val="14" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Dictionary-Pictures</Uni> -</Name> -<Rules> -<Prop firstIndent="0" leadingIndent="21000" spaceBefore="0"></Prop> -</Rules> -<Structure val="0" /> -<Type val="0" /> -<Usage> -<AUni ws="en">The paragraph of pictures that follows the main paragraph (if there are pictures).</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="MoStemMsa" guid="92e60117-743f-4e2f-9305-ded145febb45" ownerguid="0221a7f3-34e8-44d7-8218-1f4c1c3b60e3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="92e62563-85f5-42e8-8020-dc1d37c011ab" ownerguid="e6b21531-b7d0-4e37-b01b-3ca49a285168"> -<ExampleWords> -<AUni ws="en">drought, extended drought, lack of rain, have no rain, go without rain, la Niña</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a time when there is little or no rain?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="92e78485-1f64-4767-8732-cb95e4568a94" ownerguid="197f907c-f581-4e66-a2df-6362304d6d98"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mine</AUni> -<AUni ws="es">mina</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0e587f56-241a-4a26-9375-95f6362cd0c4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="92e88636-2f98-40b2-869d-ce2cf36e8e55" ownerguid="456552fb-7cdd-4623-a027-9fc9e5b570c3"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 23.29,30 Tsaynogpis sin motivo magashga car lutancunata yarpachacularmi purenga.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="92eaaab9-8d23-4e29-967f-d9caaa9c6fbe" ownerguid="ae83adb1-88bc-429d-983b-7808e60fd1b3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7ec18d6c-8ba9-462b-8839-fa825ced120f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="92eddf75-d323-4c4a-8fa3-2f471dbe7aea" ownerguid="ce541ccc-6035-4a49-8396-93beb4f3a36f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="92ef1096-bae2-4bc5-b4b8-c16f429c4867" ownerguid="86f90eff-158b-4f6d-82e9-fab136dfd141"> -<Abbreviation> -<AUni ws="en">4.2.1.8.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.208" /> -<DateModified val="2022-9-23 16:55:8.208" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to belonging to an organization.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>34C Belong to, Be Included in the Membership of, Be Excluded From</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Belong to an organization</AUni> -</Name> -<Questions> -<objsur guid="d54a756c-bcac-4b45-9dae-26db5783ac7d" t="o" /> -<objsur guid="58cfa897-29a1-4642-8a40-2b527ff09dff" t="o" /> -<objsur guid="8d5d4b53-c930-4627-9279-70ddf8e3ae01" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="92f07e1a-4b26-4b83-a269-df8d22a211a1" ownerguid="291fd82e-76e8-4574-abdc-c440160a1db5"> -<Form> -<AUni ws="qvm-x-ach">cuchu</AUni> -<AUni ws="qvm-x-acl">cuchu; cuchu; cucho</AUni> -<AUni ws="qvm-x-akh">kuchu</AUni> -<AUni ws="qvm-x-akl">kuchu; kuchu; kucho</AUni> -<AUni ws="qvm-x-ame">kuchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="92f0ee73-09a3-46bb-8772-8195833c0d40" ownerguid="bb4a762f-0d53-4092-a621-f35a8c7cdf7a"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="92fbd780-8f0e-49b0-bb69-176f1e0f46c2" ownerguid="4e23b037-0547-4650-89c3-2b259b637fb6"> -<ExampleWords> -<AUni ws="en">full moon, half moon, new moon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a time during the month?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="92ff5d9a-21a8-440b-b10d-d98675987524"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">inmundu; inmundo</AUni> -<AUni ws="qvm-x-acl">inmundu; inmundu; inmundo</AUni> -<AUni ws="qvm-x-akh">inmundu; inmundo</AUni> -<AUni ws="qvm-x-akl">inmundu; inmundu; inmundo</AUni> -<AUni ws="qvm-x-ame">inmundu; inmundo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+inmundo</AUni> -<AUni ws="qvm-x-acl">+inmundo</AUni> -<AUni ws="qvm-x-akh">+inmundo</AUni> -<AUni ws="qvm-x-akl">+inmundo</AUni> -<AUni ws="qvm-x-ame">+inmundo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.822" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="26eb6f24-8810-421d-a95d-ef172687f8a0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+inmundo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ced43338-92d0-453e-a11c-ddc5ecec5a90" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e872d9c3-c204-4fd3-98b2-693771df04a6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +inmundo 
\entryTyp root 
\gENG 
\gSPN 
\e +inmundo 
\c N0 
\ach inmundu / ~_# 
\ach inmundo / _# 
\akh inmundu / ~_# 
\akh inmundo / _# 
\acl inmundu / ~_# 
\acl inmundu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl inmundo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl inmundu / ~_# 
\akl inmundu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl inmundo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame inmundu / ~_# 
\ame inmundo / _# 
\i DAN 1.8 Danielmi inmundu cayta mana munar yarpachacorgan mandag reypa micuyninta mana micunanpag y vïnuntapis mana upunanpag.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="93006b52-1d87-461d-a8d2-f7e4ef8e7cd8" ownerguid="439ee5a8-4246-479e-8d14-10cff381797a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmAgent" guid="9303883a-ad5c-4ccf-97a5-4add391f8dcb" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Approves> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="o" /> -</Approves> -<Disapproves> -<objsur guid="70a39b4b-662d-47c5-a9de-e7b5988b7f55" t="o" /> -</Disapproves> -<Human val="True" /> -<Name> -<AUni ws="en">default user</AUni> -</Name> -<Notes> -<objsur guid="0d576300-114e-448c-87da-922d052429c2" t="o" /> -</Notes> -</rt> -<rt class="CmDomainQ" guid="930776cf-c6d2-4dfd-850a-593e6ccba4dc" ownerguid="b4aa4bbd-8abf-4503-96e4-05c75efd23d5"> -<ExampleWords> -<AUni ws="en">weather forecast, weather report, the weather, the outlook</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words refer to a report about the weather?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="93079cf7-8e03-4af6-b1d3-b10c8b324c5e" ownerguid="c5da961a-7d78-4ad4-854c-bbfbad18de27"> -<Form> -<AUni ws="qvm-x-ach">ichic</AUni> -<AUni ws="qvm-x-acl">ichic</AUni> -<AUni ws="qvm-x-akh">ichik</AUni> -<AUni ws="qvm-x-akl">ichik</AUni> -<AUni ws="qvm-x-ame">ichik</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="93096824-7d62-435f-b864-f94f21134670" ownerguid="a59b8884-4ce6-4d80-97a0-b5b89f5316df"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lesson</AUni> -<AUni ws="es">lección</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="03058a13-b66a-464d-8cab-6138ec48f21c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="930a03dd-3974-45b1-b3c2-83908347ffb2" ownerguid="9a456463-3c71-4f9a-8117-dc2fcb087bd3"> -<ExampleWords> -<AUni ws="en">firebrand</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to something taken out of a fire?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="930d90ea-7f06-46e9-85e2-d3c272ae5b97" ownerguid="1d961093-aaf4-4101-b5f9-a50a1efc7dd1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">DIM</AUni> -<AUni ws="es">DIM</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="00c60237-8260-44be-88d0-a9ba66be4733" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="930fb269-6e42-434e-9953-33b03304733b" ownerguid="e28f3f79-d4a5-402c-8a70-196856791078"> -<ExampleWords> -<AUni ws="en">achiever, actor, doer, performer, agent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the person doing something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="93108d81-9833-41eb-a274-b6371c4062bc" ownerguid="6a8c49d2-93e4-4cb2-bee1-ed30a244d188"> -<Form> -<AUni ws="qvm-x-ach">escribi</AUni> -<AUni ws="qvm-x-acl">escribi; escribe</AUni> -<AUni ws="qvm-x-akh">escribi</AUni> -<AUni ws="qvm-x-akl">escribi; escribe</AUni> -<AUni ws="qvm-x-ame">escribi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9310ce74-222d-4be1-ac93-e876f0735f19" ownerguid="0d427d55-d63e-4a35-a66a-5e4dce0a963e"> -<ExampleWords> -<AUni ws="en">tell the difference, see the difference, distinguish, differentiate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to discovering the difference between two things?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="93139c3a-fead-42a2-8d56-4562e9cc6794" ownerguid="790cb5f1-5b46-4ccc-b29f-099faaa9edaa"> -<Form> -<AUni ws="qvm-x-ach">aceitünas</AUni> -<AUni ws="qvm-x-acl">aceitünas</AUni> -<AUni ws="qvm-x-akh">aceitünas</AUni> -<AUni ws="qvm-x-akl">aceitünas</AUni> -<AUni ws="qvm-x-ame">aceitünas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="931492cb-c86f-4217-94ec-2cdfa96f960b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">proba</AUni> -<AUni ws="qvm-x-acl">proba</AUni> -<AUni ws="qvm-x-akh">proba</AUni> -<AUni ws="qvm-x-akl">proba</AUni> -<AUni ws="qvm-x-ame">proba</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+probar.1</AUni> -<AUni ws="qvm-x-acl">+probar.1</AUni> -<AUni ws="qvm-x-akh">+probar.1</AUni> -<AUni ws="qvm-x-akl">+probar.1</AUni> -<AUni ws="qvm-x-ame">+probar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.931" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2d9c1e5a-f800-4d86-84eb-da7324160285" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+probar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cd05113a-057f-4977-aec0-f899577f1b26" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="23911ccd-4561-4775-8754-b89af31e24aa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +probar.1 
\entryTyp root 
\gENG try 
\gSPN probar 
\e +probar.1 
\c V2 
\ach proba 
\akh proba 
\acl proba 
\akl proba 
\ame proba 
\i Exo 17.7 Tsay partipa jutinta churapargan Masah
\f + 17.7 Masahga pruebag ninanmi.
\f* jutin cananpag y Meriba
\f + 17.7 Meribaga reclamay ninanmi.
\f* jutin cananpagpis. 
\i JOB 23.10 Probamarpis jutsaynagtami tarimanga. 
\i JOB 23.10 Probamarpis jusaynagtami tarimanga.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="9315bafb-8125-42cb-ac3d-613c760213b3" ownerguid="fcc4ce3e-c994-4dfd-b404-ff9f6196a9d6"> -<Form> -<AUni ws="qvm-x-ach">wanu</AUni> -<AUni ws="qvm-x-acl">wanu; wano</AUni> -<AUni ws="qvm-x-akh">wanu</AUni> -<AUni ws="qvm-x-akl">wanu; wano</AUni> -<AUni ws="qvm-x-ame">wanu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="93198438-9065-40e1-9b1f-6c2bc8602343" ownerguid="61883dbf-387d-448d-9409-fafe751b804b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="931f5198-a4ff-472d-8f70-cf8806ec3ec7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">goshni</AUni> -<AUni ws="qvm-x-acl">goshni; goshni; goshne</AUni> -<AUni ws="qvm-x-akh">qoshni</AUni> -<AUni ws="qvm-x-akl">qoshni; qoshni; qoshne</AUni> -<AUni ws="qvm-x-ame">qushni</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qushni.n</AUni> -<AUni ws="qvm-x-acl">*qushni.n</AUni> -<AUni ws="qvm-x-akh">*qushni.n</AUni> -<AUni ws="qvm-x-akl">*qushni.n</AUni> -<AUni ws="qvm-x-ame">*qushni.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.882" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="173c0854-1958-4536-bc05-46e54e28b54e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qushni.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="815e839f-fd4c-42bf-ad00-39e49714a2d5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="efaf29f3-4933-4168-a649-b49496a944b8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qushni.n 
\entryTyp root 
\gENG 
\gSPN 
\e *qushni.n 
\c N0 
\mp +FinalI 
\ach goshni 
\akh qoshni 
\acl goshni / _# 
\acl goshni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl goshne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qoshni / _# 
\akl qoshni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qoshne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qushni</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="932087d9-d765-42df-bf4d-bec334e6c91b" ownerguid="d55c32ac-bc49-4310-a943-ac4085d04815"> -<Form> -<AUni ws="qvm-x-ach">estrella</AUni> -<AUni ws="qvm-x-acl">estrella</AUni> -<AUni ws="qvm-x-akh">estrella</AUni> -<AUni ws="qvm-x-akl">estrella</AUni> -<AUni ws="qvm-x-ame">estrella</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="93225ae4-699c-4c03-89ef-d98110f53364" ownerguid="e094e28b-1468-49dd-a341-880222abec52"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoAffixAllomorph" guid="9324dbb3-c924-4b8b-95b9-f735b71f57f9" ownerguid="84367e7d-d279-4e1c-81b4-86492bd6380f"> -<Form> -<AUni ws="qvm-x-ach">ca</AUni> -<AUni ws="qvm-x-acl">ca</AUni> -<AUni ws="qvm-x-akh">ka</AUni> -<AUni ws="qvm-x-akl">ka</AUni> -<AUni ws="qvm-x-ame">ka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="93258a11-9af6-40b2-add5-ea720068462c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">arregla</AUni> -<AUni ws="qvm-x-acl">arregla</AUni> -<AUni ws="qvm-x-akh">arregla</AUni> -<AUni ws="qvm-x-akl">arregla</AUni> -<AUni ws="qvm-x-ame">arregla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+arreglar</AUni> -<AUni ws="qvm-x-acl">+arreglar</AUni> -<AUni ws="qvm-x-akh">+arreglar</AUni> -<AUni ws="qvm-x-akl">+arreglar</AUni> -<AUni ws="qvm-x-ame">+arreglar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.920" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5496f0ca-adcb-4f74-97ec-b32555497009" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+arreglar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eb745629-7018-401c-b7e5-de0f6456c81a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b7c6cff6-aa05-4648-b183-09595e0e1f45" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +arreglar 
\entryTyp root 
\gENG fix 
\gSPN arreglar 
\e +arreglar 
\c V2 
\ach arregla 
\akh arregla 
\acl arregla 
\akl arregla 
\ame arregla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="932aa4f1-c31a-4d26-8e59-8b3f8371044b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsogui</AUni> -<AUni ws="qvm-x-acl">tsogui; tsogui; tsogue</AUni> -<AUni ws="qvm-x-akh">tsoqi</AUni> -<AUni ws="qvm-x-akl">tsoqi; tsoqi; tsoqe</AUni> -<AUni ws="qvm-x-ame">tsuqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chuqi</AUni> -<AUni ws="qvm-x-acl">*chuqi</AUni> -<AUni ws="qvm-x-akh">*chuqi</AUni> -<AUni ws="qvm-x-akl">*chuqi</AUni> -<AUni ws="qvm-x-ame">*chuqi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.345" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7a72d87a-f21b-4fe7-a1ac-9fb9cec305bf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chuqi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a53ea826-40f2-4f62-a199-c96cc2d49503" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4371f081-a53d-4727-9c9e-33bc9b14b0cc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chuqi 
\entryTyp root 
\gENG fish 
\gSPN pez 
\e *chuqi 
\c N0 
\mp +FinalI 
\ach tsogui 
\akh tsoqi 
\acl tsogui / _# 
\acl tsogui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tsogue +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsoqi / _# 
\akl tsoqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tsoqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsuqi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="932ade0f-4937-4504-8aa8-7a142776563d" ownerguid="13f62fa1-589c-4a46-9bbc-b0fd1001e21f"> -<ExampleWords> -<AUni ws="en">complete your sentence, serve out the sentence, fulfill your sentence</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to the process of completing a sentence?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="932df64d-e748-4495-b73d-d742920e9bac" ownerguid="84c3b0ad-3fd8-4e4e-a2d1-a2051f61db4b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">security</AUni> -<AUni ws="es">seguridad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c72acc96-e74d-41b0-9235-4ff34c1efbdb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="932e1c58-546e-4a62-8ed1-68a948f5a5dd" ownerguid="ec1faadb-40cf-472e-858c-a465addb0df3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="932e46b9-5c05-44f6-856e-14eadeb9023b" ownerguid="e41d69ef-521c-4bb2-876e-e562a3e2b857"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="9330f5a7-4e79-485e-a656-e76a3e6eda86"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lamita; lamita:</AUni> -<AUni ws="qvm-x-acl">lamita; lamita:</AUni> -<AUni ws="qvm-x-akh">lamita; lamita:</AUni> -<AUni ws="qvm-x-akl">lamita; lamita:</AUni> -<AUni ws="qvm-x-ame">lamita; lamita:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+la.mitad</AUni> -<AUni ws="qvm-x-acl">+la.mitad</AUni> -<AUni ws="qvm-x-akh">+la.mitad</AUni> -<AUni ws="qvm-x-akl">+la.mitad</AUni> -<AUni ws="qvm-x-ame">+la.mitad</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.610" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="49c9fd72-6be3-4c7a-b5fb-af942702b37b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+la.mitad</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3d4c940f-3a94-451d-8493-dddd7539cef5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f3bd1057-00f7-466c-a895-fd7a577d3f87" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +la.mitad 
\entryTyp root 
\gENG half 
\gSPN la.mitad 
\e +la.mitad 
\c N0 
\mp +FinalC 
\mp +underlong 
\ach lamita foreshortened 
\ach lamita: 
\mp +underlong 
\akh lamita foreshortened 
\akh lamita: 
\acl lamita foreshortened 
\acl lamita: 
\akl lamita foreshortened 
\akl lamita: 
\mp +underlong 
\ame lamita foreshortened 
\ame lamita: 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="933228c9-b168-4228-8742-83e633403abc" ownerguid="3056981e-aa4f-4c3b-8e39-609913a69a60"> -<Form> -<AUni ws="qvm-x-ach">ogra</AUni> -<AUni ws="qvm-x-acl">ogra</AUni> -<AUni ws="qvm-x-akh">oqra</AUni> -<AUni ws="qvm-x-akl">oqra</AUni> -<AUni ws="qvm-x-ame">uqra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="933404fc-9865-4f05-ad2a-55d83ac396f9" ownerguid="1ff89b31-8226-40a6-81e0-f03d8ede0e9f"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="356e454b-552c-442d-98f9-ab005dc99137" t="o" /> -<objsur guid="8369dbef-eb60-46c0-a039-8579e956c3c1" t="o" /> -<objsur guid="c24b8305-24d7-4985-a37a-54438749cdda" t="o" /> -<objsur guid="6fbf4104-cc8c-44a8-b009-b6d99b38fd38" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="93357e9b-37c8-44be-bcef-a2f1f63928b8" ownerguid="38d33d92-63de-42d4-9191-5d16f397a23a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">poor.thing</AUni> -<AUni ws="es">pobrecita</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="63550092-53cc-4363-b6b8-4f516115d8a6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="93361529-b6e9-4db7-95ce-e16b4c5c13c0" ownerguid="e09e5712-8837-4587-b766-483eee947e15"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">weight</AUni> -<AUni ws="es">peso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fce7a8d4-3760-44e7-9679-2b96155569fe" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="933b0045-96fe-4fb5-8d09-2b693257ccfb" ownerguid="951861a4-f7f5-4677-aab8-f262cc753df5"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="933c64d8-3d12-4427-a91a-a192262aac43" ownerguid="3f1b8895-cd2c-4f80-9171-148a99536b61"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.light</AUni> -<AUni ws="es">alumbrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dd3d1090-d908-474d-bad0-bec9bacfe4a5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoAffixAllomorph" guid="933ca697-894e-45e4-9fac-8397cae71491" ownerguid="a97be5dd-69dc-49bf-bcf1-a4da50b64eaa"> -<Form> -<AUni ws="qvm-x-ach">yug</AUni> -<AUni ws="qvm-x-acl">yog</AUni> -<AUni ws="qvm-x-akh">yuq</AUni> -<AUni ws="qvm-x-akl">yoq</AUni> -<AUni ws="qvm-x-ame">yuq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="04c2c26a-62fd-4045-9c28-5e4da7139d19" t="r" /> -</PhoneEnv> -</rt> -<rt class="MoStemMsa" guid="9344af53-713e-4d05-b271-cf652d5f8545" ownerguid="c7f97c73-200b-4afd-ba63-c1ed6641c6f6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="9346f0b2-661a-413d-aa1c-c078ce41350f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ripra</AUni> -<AUni ws="qvm-x-acl">ripra</AUni> -<AUni ws="qvm-x-akh">ripra</AUni> -<AUni ws="qvm-x-akl">ripra</AUni> -<AUni ws="qvm-x-ame">ripra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ripra.1</AUni> -<AUni ws="qvm-x-acl">*ripra.1</AUni> -<AUni ws="qvm-x-akh">*ripra.1</AUni> -<AUni ws="qvm-x-akl">*ripra.1</AUni> -<AUni ws="qvm-x-ame">*ripra.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.368" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ecb3318a-caf6-45ae-a87e-814e1b1cdba1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ripra.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ce9e4d05-79c0-434e-9590-1908e84e746b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dc4eb14c-9144-4961-8f7e-27e8217c516b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ripra.1 
\entryTyp root 
\gENG wing 
\gSPN ala 
\e *ripra.1 
\c N0 
\ach ripra 
\akh ripra 
\acl ripra 
\akl ripra 
\ame ripra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="93481409-ad52-4f7c-a289-3fb3dea3cc37"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">du:da</AUni> -<AUni ws="qvm-x-acl">du:da</AUni> -<AUni ws="qvm-x-akh">du:da</AUni> -<AUni ws="qvm-x-akl">du:da</AUni> -<AUni ws="qvm-x-ame">du:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+dudar</AUni> -<AUni ws="qvm-x-acl">+dudar</AUni> -<AUni ws="qvm-x-akh">+dudar</AUni> -<AUni ws="qvm-x-akl">+dudar</AUni> -<AUni ws="qvm-x-ame">+dudar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.437" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8f611b1b-7a0c-4c2d-aa32-0c0ebb7b8508" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+dudar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="96f35de6-e916-416c-871f-36f784a0de2e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="10d53c9a-8aee-41d1-b1d6-41441b890721" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +dudar 
\entryTyp root 
\gENG to.doubt 
\gSPN dudar 
\e +dudar 
\c V1 
\ach du:da 
\akh du:da 
\acl du:da 
\akl du:da 
\ame du:da</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="93489181-ad8c-4a18-8dbc-fd7a9c871126" ownerguid="afc25fbb-9060-4af2-8225-3fddbab2227d"> -<Abbreviation> -<AUni ws="en">4.3.1.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.225" /> -<DateModified val="2022-9-23 16:55:8.225" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being bad-tempered--to behave in an angry, unfriendly way.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Bad-tempered</AUni> -</Name> -<Questions> -<objsur guid="25ffde00-613c-4a30-b135-c85cad8f15f4" t="o" /> -<objsur guid="f95bd51f-a2c3-4f1e-9ea1-fb4f960c5806" t="o" /> -<objsur guid="4da008a7-578a-4aa2-a6e7-e03a4b9249da" t="o" /> -<objsur guid="849c52b0-b1bb-4421-bcb1-a12456627068" t="o" /> -<objsur guid="ee11eceb-09ce-4eb5-8b6f-1ac14b2f6074" t="o" /> -<objsur guid="ae643126-abd0-41fd-9928-e48814e6b27f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="9351d5b6-5a87-422a-9e82-ca6a0bacd3e9" ownerguid="afa77a2a-8b0f-4a39-91bc-040e90ffbb3a"> -<Abbreviation> -<AUni ws="en">3.4.1.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.133" /> -<DateModified val="2022-9-23 16:55:8.133" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling calm.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Calm</AUni> -</Name> -<Questions> -<objsur guid="ff35a9d1-298d-4fe1-949e-2d6342c189b0" t="o" /> -<objsur guid="404e92e1-51e6-4389-8902-9012af56692d" t="o" /> -<objsur guid="9568ddd7-275b-4d91-bfa0-aa7a9f452f5b" t="o" /> -<objsur guid="1d97172d-e7e4-436d-892e-ee043dd3bf88" t="o" /> -<objsur guid="9c4f5945-303f-4528-95cf-542c3c14e648" t="o" /> -<objsur guid="215f645b-5b5d-4a79-b4fb-06837581bd12" t="o" /> -<objsur guid="92aac2c6-e0cd-44cb-82c6-5974432f826b" t="o" /> -<objsur guid="6643ecb4-af55-463c-b5dc-9985ae8c00a3" t="o" /> -<objsur guid="9809e7c4-5707-41c4-a6ec-84046211aafa" t="o" /> -<objsur guid="95319f0f-bd60-4c5d-baf5-7816925f16e3" t="o" /> -<objsur guid="285f77bf-5315-40be-9247-d5fa93db1470" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="935272f5-e282-47e4-a954-c366d24d1a85" ownerguid="3a28ab73-2847-44a4-97ed-7129269f1366"> -<ExampleWords> -<AUni ws="en">kneel, kneel down, get down on your knees, bend the knee, go down on one knee, sink to your knees</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to kneeling down?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9355579a-4538-4e12-855e-14572189b294" ownerguid="e4e05724-01ec-4c61-90f0-b8658cc8ca51"> -<ExampleWords> -<AUni ws="en">glasses, eyeglasses, corrective lenses, contact lens, bifocals, spectacles, specs, monocle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to glasses?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="93571d51-c4e9-4705-826b-5133ee3e2f7e" ownerguid="af651f9b-9471-4bcc-944c-c1f58b2a7de9"> -<Form> -<AUni ws="qvm-x-ach">sepultüra</AUni> -<AUni ws="qvm-x-acl">sepultüra</AUni> -<AUni ws="qvm-x-akh">sepultüra</AUni> -<AUni ws="qvm-x-akl">sepultüra</AUni> -<AUni ws="qvm-x-ame">sepultüra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="9358bc35-bac8-4039-a555-57645c91543c" ownerguid="c3c5beaa-4f0a-46f6-a47b-e5ee022c78bb"> -<Form> -<AUni ws="qvm-x-ach">sartin</AUni> -<AUni ws="qvm-x-acl">sartin; sartin; sarten</AUni> -<AUni ws="qvm-x-akh">sartin</AUni> -<AUni ws="qvm-x-akl">sartin; sartin; sarten</AUni> -<AUni ws="qvm-x-ame">sartin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="935c86eb-982b-4d05-bd90-4bf5d1b69a65" ownerguid="f3a26e0a-727f-43ab-9310-88b8cec8f6d7"> -<ExampleWords> -<AUni ws="en">temporary, transient</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something will only last for some time and then end?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="935da513-126e-4cab-8e07-625458821181" ownerguid="57225f57-ba51-45d7-b6d2-b22052877ea4"> -<Abbreviation> -<AUni ws="en">4.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.205" /> -<DateModified val="2022-9-23 16:55:8.205" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to coming together to form a group.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Come together, form a group</AUni> -</Name> -<Questions> -<objsur guid="423b1787-e12e-4424-bcc9-e5fe7b9a3600" t="o" /> -<objsur guid="326aa08f-7346-4062-a4cd-208d32f36537" t="o" /> -<objsur guid="7fdd6f78-ac26-4f48-b4fb-b9ca6e675ab0" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="7459c0d8-4da1-4944-a95e-bc64cde860f5" t="o" /> -<objsur guid="6709cc78-cb0b-493e-b3e6-8590a2f20c95" t="o" /> -<objsur guid="c358b041-7a1a-43d6-8e61-26b9507f559f" t="o" /> -<objsur guid="4f19ab95-428a-4a0b-a069-ca8be6b72b08" t="o" /> -<objsur guid="54b6dff4-a21d-490d-8279-69f36a179c93" t="o" /> -<objsur guid="efd03c89-bf8b-4d46-a921-06cc06f28356" t="o" /> -<objsur guid="87eb572c-bae2-45d8-a36a-919561b55d0d" t="o" /> -<objsur guid="86f90eff-158b-4f6d-82e9-fab136dfd141" t="o" /> -<objsur guid="f81b7632-3e5a-4a2d-8a93-648872a6616b" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="935eb0aa-26cf-402a-8f3c-eed9a0425185"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuyu</AUni> -<AUni ws="qvm-x-acl">cuyu; cuyo</AUni> -<AUni ws="qvm-x-akh">kuyu</AUni> -<AUni ws="qvm-x-akl">kuyu; kuyo</AUni> -<AUni ws="qvm-x-ame">kuyu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kuyu</AUni> -<AUni ws="qvm-x-acl">*kuyu</AUni> -<AUni ws="qvm-x-akh">*kuyu</AUni> -<AUni ws="qvm-x-akl">*kuyu</AUni> -<AUni ws="qvm-x-ame">*kuyu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.41" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6dc8e4b3-ec89-4e2d-8c6e-f0249eb9ea48" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kuyu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f2b656ef-6d5b-49fe-9c71-1c476bd9e5ab" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5257d797-be80-4d1b-9c05-56f744c4bece" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kuyu 
\entryTyp root 
\gENG move 
\gSPN mover 
\e *kuyu 
\c V1 
\ach cuyu 
\akh kuyu 
\acl cuyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl cuyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kuyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kuyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kuyu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="935ff29c-60be-4854-98be-1c66beed7517" ownerguid="122cbd7c-9136-4d5d-873c-c07e6e85a151"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">middle</AUni> -<AUni ws="es">mitad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d31442aa-54be-4be2-851b-0135f5c1de72" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="93600bcb-463e-4ea3-bdbe-cbcf9160c7fe" ownerguid="1428d897-2755-4fc4-981c-bc4fb7cc2e06"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">snow</AUni> -<AUni ws="es">nieve</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e2d9f1b3-97b2-4661-b80c-0b9dc2ef3ee5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="9362a0e4-b018-4958-9fb8-c01a6e891eec"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Elimelec</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="9364ff07-9368-4ff0-aacc-49e4940150e7" ownerguid="1248f4d8-bd07-4539-9364-b8e4e07876dd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">BN</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">Jesus.Christ</AUni> -<AUni ws="es">Jesucristo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9849f945-ba66-4ba5-8829-3efad5f3a3e8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="936613dc-c9b0-4f42-b95b-ba630585f6c7" ownerguid="7ac2a0f2-0f68-4cf5-a808-d0acd361d929"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Tsutapacushun.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="936892c2-b0dc-4c5c-a9a6-329b51db4e40" ownerguid="9fc25175-3b4a-4248-bc7f-b86012ec584f"> -<ExampleWords> -<AUni ws="en">wood, coal, charcoal, oil, gas, candle wax, kindling</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of things are normally used as fuel?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="936b00b1-9071-4eea-9800-faef1e319126" ownerguid="d9850acb-9dca-431a-8bd7-e5ec4bcffaa7"> -<Form> -<AUni ws="qvm-x-ach">taytitu</AUni> -<AUni ws="qvm-x-acl">taytitu; taytitu; taytito</AUni> -<AUni ws="qvm-x-akh">taytitu</AUni> -<AUni ws="qvm-x-akl">taytitu; taytitu; taytito</AUni> -<AUni ws="qvm-x-ame">taytitu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="936b0519-549f-4f5b-a3d7-369c1a358dc8" ownerguid="74cd7314-5ef6-4505-a35a-81468b5a3f3a"> -<ExampleWords> -<AUni ws="en">under the circumstances, in the circumstances, given the circumstances, given the situation, as it is, as things stand, force of circumstances, the way things are</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words indicate that something must happen or cannot happen because of the situation?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="936d53eb-31ce-419c-af43-618117739fa4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nu:bi; nu:bi</AUni> -<AUni ws="qvm-x-acl">nu:bi; nu:bi; nu:be</AUni> -<AUni ws="qvm-x-akh">nu:bi; nu:bi</AUni> -<AUni ws="qvm-x-akl">nu:bi; nu:bi; nu:be</AUni> -<AUni ws="qvm-x-ame">nu:bi; nu:bi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+nube.1</AUni> -<AUni ws="qvm-x-acl">+nube.1</AUni> -<AUni ws="qvm-x-akh">+nube.1</AUni> -<AUni ws="qvm-x-akl">+nube.1</AUni> -<AUni ws="qvm-x-ame">+nube.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.578" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e61cce51-001e-45d4-9fb3-28d48f9e5a4b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+nube.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a9ccc8c3-5184-4861-b31e-6cc6f617e54d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="60cacaf3-2cf2-4c0b-a085-09dd29a7fd25" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +nube.1 
\entryTyp root 
\gENG 
\gSPN 
\e +nube.1 
\c N0 
\mp +FinalI 
\ach nu:bi / _# 
\ach nu:bi / ~_# 
\akh nu:bi / _# 
\akh nu:bi / ~_# 
\acl nu:bi / _# 
\acl nu:bi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl nu:be +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl nu:bi / _# 
\akl nu:bi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl nu:be +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame nu:bi / _# 
\ame nu:bi / ~_# 
\i LEV 21.20 curcucuna, enänucuna, nübish nawicuna, garachucuna, pashtapäcogcuna y runtun däñashcunapis.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="93708c48-dfaf-44ae-8623-1e8a74aeb5ce" ownerguid="790462ec-625c-44b3-a794-ed4339017602"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">meat</AUni> -<AUni ws="es">carne</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b23a7c89-50e9-4487-86fc-efee9a0243db" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="9370e326-fbc2-4f12-8dd6-bc6263157adf" ownerguid="4c5fb2b1-f8e1-4aa6-b49c-ee13dfc9154e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="937576c5-65b5-4f33-a5e0-6e04bcce4c1b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">campa:ña</AUni> -<AUni ws="qvm-x-acl">campa:ña</AUni> -<AUni ws="qvm-x-akh">campa:ña</AUni> -<AUni ws="qvm-x-akl">campa:ña</AUni> -<AUni ws="qvm-x-ame">campa:ña</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+campaña</AUni> -<AUni ws="qvm-x-acl">+campaña</AUni> -<AUni ws="qvm-x-akh">+campaña</AUni> -<AUni ws="qvm-x-akl">+campaña</AUni> -<AUni ws="qvm-x-ame">+campaña</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.310" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5ea876b0-233d-491e-8919-7903e9cffc1c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+campaña</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="42dbc7f5-de12-4261-adbe-8a34f267e29b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e290cc90-ad18-417f-9c0f-c8cef2c26b07" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +campaña 
\entryTyp root 
\gENG campaign 
\gSPN +campaña 
\e +campaña 
\c N0 
\ach campa:ña 
\akh campa:ña 
\acl campa:ña 
\akl campa:ña 
\ame campa:ña</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="93757be7-a56b-401d-a711-9fec677293d2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">patsa</AUni> -<AUni ws="qvm-x-acl">patsa</AUni> -<AUni ws="qvm-x-akh">patsa</AUni> -<AUni ws="qvm-x-akl">patsa</AUni> -<AUni ws="qvm-x-ame">patsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pacha.v</AUni> -<AUni ws="qvm-x-acl">*pacha.v</AUni> -<AUni ws="qvm-x-akh">*pacha.v</AUni> -<AUni ws="qvm-x-akl">*pacha.v</AUni> -<AUni ws="qvm-x-ame">*pacha.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.646" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e03186a2-7e77-4563-8af7-bed9d17170c5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pacha.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1319aa46-ea1f-4045-a77a-1978d236fcae" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8f79f140-2932-4f8b-b78f-ae8a45fa79df" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pacha.v 
\entryTyp root 
\gENG lodge 
\gSPN hospedarse 
\e *pacha.v 
\c V1 
\ach patsa 
\akh patsa 
\acl patsa 
\akl patsa 
\ame patsa 
\mcc *pacha.v / ~_ INF.noI ADV1 
\mcc *pacha.v / ~_ INF ADV1 
\mcc *pacha.v / ~_ 3</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="937920ce-dafd-4146-8f55-78c7c697a674" ownerguid="6a70c81a-31ac-4c37-bd61-f1ba2a278341"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="93799031-cd89-4f79-82e9-08be045e6b9b" ownerguid="d7140538-fb99-4af9-8398-8c31a1b79fb5"> -<ExampleWords> -<AUni ws="en">handcuffs, shackles, restraint, cage, restraint</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What things are used to prevent someone from moving?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="9379f382-afbe-42af-bb5c-7a53c0f36cab" ownerguid="df96455e-7c76-4c28-b068-f6c3fc846d45"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -<Sense> -<objsur guid="1b926284-5562-4cf3-8ad2-65536a715093" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="937ba972-655c-4d39-89f1-753d055c035f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">upi</AUni> -<AUni ws="qvm-x-acl">upi; upe</AUni> -<AUni ws="qvm-x-akh">upi</AUni> -<AUni ws="qvm-x-akl">upi; upe</AUni> -<AUni ws="qvm-x-ame">upi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*upi</AUni> -<AUni ws="qvm-x-acl">*upi</AUni> -<AUni ws="qvm-x-akh">*upi</AUni> -<AUni ws="qvm-x-akl">*upi</AUni> -<AUni ws="qvm-x-ame">*upi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.241" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="92b65ef0-c0fd-4b72-91e4-ddd6905e133d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*upi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="61b0fe54-cf02-443a-8832-66ac44630b1d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5506b4a0-14ed-4ca1-8d5e-c2bf97607fc0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *upi 
\entryTyp root 
\gENG quench 
\gSPN apagar 
\e *upi 
\c V1 
\mp +FinalI 
\ach upi 
\akh upi 
\acl upi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl upe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl upi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl upe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame upi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="937f54f3-4370-4865-b3ee-623ed32b709b" ownerguid="b3cc49bd-6bca-4168-95d2-5e2a15da45e1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 N1/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">WITH1</AUni> -<AUni ws="es">MAS1</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1d8c4153-ed72-4898-b1ff-077c42c51fa3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="9380d684-751a-4df8-b3b1-b5e5a24bb079" ownerguid="cb522575-344f-447c-bdf4-32e2ebfea8f5"> -<Form> -<AUni ws="qvm-x-ach">melga</AUni> -<AUni ws="qvm-x-acl">melga</AUni> -<AUni ws="qvm-x-akh">melqa</AUni> -<AUni ws="qvm-x-akl">melqa</AUni> -<AUni ws="qvm-x-ame">milqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="938383ef-5213-4a78-a313-e40cfccb80a4" ownerguid="a894d991-d5da-45a6-9c62-009133257f36"> -<ExampleWords> -<AUni ws="en">cough, sneeze, clear throat, hack</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to coughing?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="938698a1-c41b-42e7-abbd-eff126a79edb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">joga</AUni> -<AUni ws="qvm-x-acl">joga</AUni> -<AUni ws="qvm-x-akh">joqa</AUni> -<AUni ws="qvm-x-akl">joqa</AUni> -<AUni ws="qvm-x-ame">huqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*huqa.v</AUni> -<AUni ws="qvm-x-acl">*huqa.v</AUni> -<AUni ws="qvm-x-akh">*huqa.v</AUni> -<AUni ws="qvm-x-akl">*huqa.v</AUni> -<AUni ws="qvm-x-ame">*huqa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.761" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="beebdf63-11b6-4bb1-ab8f-24b188354578" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*huqa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9c165202-6216-4149-aa4b-e80d0e311e17" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5ac5d114-c4a4-4d96-8797-18491a5bcab3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *huqa.v 
\entryTyp root 
\gENG lift 
\gSPN alzar 
\e *huqa.v 
\c V2 
\ach joga 
\akh joqa 
\acl joga 
\akl joqa 
\ame huqa 
\mcc *huqa.v / ~_ PNCT1</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="9389dcf8-096d-415f-91ab-e03ef84e16e8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cumplia:ñu</AUni> -<AUni ws="qvm-x-acl">cumplia:ñu; cumplia:ñu; cumplia:ño</AUni> -<AUni ws="qvm-x-akh">cumplia:ñu</AUni> -<AUni ws="qvm-x-akl">cumplia:ñu; cumplia:ñu; cumplia:ño</AUni> -<AUni ws="qvm-x-ame">cumplia:ñu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cumpleaño</AUni> -<AUni ws="qvm-x-acl">+cumpleaño</AUni> -<AUni ws="qvm-x-akh">+cumpleaño</AUni> -<AUni ws="qvm-x-akl">+cumpleaño</AUni> -<AUni ws="qvm-x-ame">+cumpleaño</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.244" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f6411df8-4515-4b17-aef4-32bef50ce34a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cumpleaño</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a5af1845-8fde-493c-ae1b-46ccacaea819" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="40aa831f-cb62-4077-87fe-44a6aae92640" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cumpleaño 
\entryTyp root 
\gENG 
\gSPN 
\e +cumpleaño 
\c N0 
\mp +assimilated 
\ach cumplia:ñu 
\akh cumplia:ñu 
\acl cumplia:ñu / _# 
\acl cumplia:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cumplia:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cumplia:ñu / _# 
\akl cumplia:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cumplia:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cumplia:ñu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="938bbb33-be76-412f-bd2f-ca94ca1500fb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cartón; carton</AUni> -<AUni ws="qvm-x-acl">cartón; carton</AUni> -<AUni ws="qvm-x-akh">cartón; carton</AUni> -<AUni ws="qvm-x-akl">cartón; carton</AUni> -<AUni ws="qvm-x-ame">cartón; carton</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cartón</AUni> -<AUni ws="qvm-x-acl">+cartón</AUni> -<AUni ws="qvm-x-akh">+cartón</AUni> -<AUni ws="qvm-x-akl">+cartón</AUni> -<AUni ws="qvm-x-ame">+cartón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.72" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fc2552ac-c73b-4b6a-8fc7-4abbd4c50e34" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cartón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="91be7960-f97d-4d64-a469-4163377055cd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="32a9d128-5db5-4992-a2f8-fb9c1a16fc75" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cartón 
\entryTyp root 
\gENG cardboard 
\gSPN cartón 
\e +cartón 
\c N0 
\mp +FinalC 
\ach cartón / _# 
\ach carton / ~_# 
\akh cartón / _# 
\akh carton / ~_# 
\acl cartón / _# 
\acl carton / ~_# 
\akl cartón / _# 
\akl carton / ~_# 
\ame cartón / _# 
\ame carton / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="938ca464-b329-4492-979e-44812dabfbc9" ownerguid="7d629c80-e5c2-409f-a592-39c56e9ace6d"> -<ExampleWords> -<AUni ws="en">the navy, naval forces</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the navy?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="938f2245-a68a-49d9-b569-a9259722b293" ownerguid="832fe228-73ce-4344-938c-c6d29153c348"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">grinding.stone</AUni> -<AUni ws="es">batán</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="89c3a691-97d2-4ddf-8bce-3c916d5d02c7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="93909cd8-593e-42bd-9c04-20e4d34a62e5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">orguysha</AUni> -<AUni ws="qvm-x-acl">orguysha</AUni> -<AUni ws="qvm-x-akh">orquysha</AUni> -<AUni ws="qvm-x-akl">orquysha</AUni> -<AUni ws="qvm-x-ame">urquysha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*urquysha</AUni> -<AUni ws="qvm-x-acl">*urquysha</AUni> -<AUni ws="qvm-x-akh">*urquysha</AUni> -<AUni ws="qvm-x-akl">*urquysha</AUni> -<AUni ws="qvm-x-ame">*urquysha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.282" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="94f8dedc-fe96-4e40-8d50-78fefd4feb56" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*urquysha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dcd75e81-78f2-4944-a323-dd33d31698d3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="81a36a17-776c-48f0-bdc4-21e4613246b0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *urquysha 
\entryTyp root 
\gENG 
\gSPN marimacha 
\e *urquysha 
\c N0 
\ach orguysha 
\akh orquysha 
\acl orguysha 
\akl orquysha 
\ame urquysha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="9392e71c-31e4-4066-a9a5-7768e63c921f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gueushu</AUni> -<AUni ws="qvm-x-acl">gueushu; gueushu; gueusho</AUni> -<AUni ws="qvm-x-akh">qewshu</AUni> -<AUni ws="qvm-x-akl">qewshu; qewshu; qewsho</AUni> -<AUni ws="qvm-x-ame">qiwshu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qiwshu</AUni> -<AUni ws="qvm-x-acl">*qiwshu</AUni> -<AUni ws="qvm-x-akh">*qiwshu</AUni> -<AUni ws="qvm-x-akl">*qiwshu</AUni> -<AUni ws="qvm-x-ame">*qiwshu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.226" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="72718edb-bb62-426b-bb02-296f8e15c267" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qiwshu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="82904b81-4f67-4c25-99a7-588bb5803ed1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d08344dc-26ec-4b3b-b2e2-60638e3d5b29" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qiwshu 
\entryTyp root 
\gENG 
\gSPN 
\e *qiwshu 
\c N0 
\ach gueushu 
\akh qewshu 
\acl gueushu / _# 
\acl gueushu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gueusho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qewshu / _# 
\akl qewshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qewsho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qiwshu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="9394a9d6-e966-4326-b28f-aadb7a3f56dc" ownerguid="be675724-22b7-4b01-9858-0296aea77a53"> -<Form> -<AUni ws="qvm-x-ach">yusulpalä</AUni> -<AUni ws="qvm-x-acl">yusulpalä</AUni> -<AUni ws="qvm-x-akh">yusulpalä</AUni> -<AUni ws="qvm-x-akl">yusulpalä</AUni> -<AUni ws="qvm-x-ame">yusulpalä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="93972514-1932-4985-b015-2c47afe67983" ownerguid="3e24f147-d901-4552-b7cf-a8dac2cb30b7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">somersault</AUni> -<AUni ws="es">rodar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3de12e00-bba6-405c-81d6-e60e63ea9371" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="939b19ab-0243-4be5-9108-1f77bab4e84d" ownerguid="e1a431ea-cae6-4d17-b2ff-4fdadf59c1b3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="82e9c3df-e95c-44d6-998d-f3779aad6808" t="r" /> -</Morph> -<Msa> -<objsur guid="1b3c6562-1662-468e-b5c0-fcf36256167d" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="939c15c6-6223-4976-a488-8a63f9c22a07" ownerguid="d853597b-f3ed-470b-b6dd-8fe93b8e43eb"> -<ExampleWords> -<AUni ws="en">without a sound, not make a sound, in silence, noiseless, soundless, quietly, silently</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words indicate that you do something without making any noise?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="939db891-2745-4a71-b64b-da13b874ff26" ownerguid="f0d88b43-6bb2-443f-928c-2c24e7e603a9"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="939f58a1-f318-4a72-afbd-a86740487b5f" ownerguid="89fb9e9a-1c52-4d3a-99aa-5fdd061f778f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 BN/BN R1/R0 N1/N0</Run> -</AStr> -</Custom> -<Definition> -<AStr ws="en"> -<Run ws="en">first person plural inclusive possessive</Run> -</AStr> -<AStr ws="es"> -<Run ws="es">primera persona plural inclusiva posesiva</Run> -</AStr> -</Definition> -<Gloss> -<AUni ws="en">12P</AUni> -<AUni ws="es">12P</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f1ab7fd4-3eac-4764-b321-b4d8af63f381" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoAffixAllomorph" guid="93a0133e-4ef8-4908-b174-942abcb6038d" ownerguid="b531b2f1-791f-4c7d-81e6-75560b715ef8"> -<Form> -<AUni ws="qvm-x-ach">lay</AUni> -<AUni ws="qvm-x-acl">lay</AUni> -<AUni ws="qvm-x-akh">lay</AUni> -<AUni ws="qvm-x-akl">lay</AUni> -<AUni ws="qvm-x-ame">lay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="93a09728-06fc-44a4-baa9-b56bc04ea5d5" ownerguid="f2bc15a0-1373-4ca7-83c4-cd643fc2b570"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="93a1eff9-ad2d-44f5-9e70-3b573f385f36" ownerguid="eca46133-c350-4573-a349-9b7ce11b6fa8"> -<ExampleWords> -<AUni ws="en">lid, lip, neck</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the parts of a container?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="93a34379-cbc2-4d3e-9f82-92f72324b23b" ownerguid="49f0742b-349b-471e-b23c-9af2fb502541"> -<Form> -<AUni ws="qvm-x-ach">amenaza</AUni> -<AUni ws="qvm-x-acl">amenaza</AUni> -<AUni ws="qvm-x-akh">amenaza</AUni> -<AUni ws="qvm-x-akl">amenaza</AUni> -<AUni ws="qvm-x-ame">amenaza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="93a3ee85-752f-404c-897c-9242ef77a337" ownerguid="e2a74cc1-03ee-4ca1-adcd-92b9fe2501de"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">weed</AUni> -<AUni ws="es">hierba</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4493b95b-4c01-42db-8f77-9dcd2f97ae71" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="93a52a88-5f73-48eb-8719-ee6b34f795a1" ownerguid="a99bfdb7-8925-4e05-b354-040ffd14b09d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="93a9af43-27d2-4313-8557-6b039d7fe640" ownerguid="6eeef67a-549e-41a2-a3eb-6499150723c2"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="93ac05e1-c8f7-4023-a911-36c9304994ad" ownerguid="43c44a23-e71b-4ff3-b208-f72d89c5b577"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="93b21302-392a-473a-8125-465995c5d91b" ownerguid="b0cecf9b-06f2-4f96-88a2-f56cd00faf74"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="StTxtPara" guid="93b57985-30c0-418e-9c80-840fd48e720a" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">yarqarimun</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="d844d554-c919-45e7-8e69-c5e145c6523f" t="o" /> -</Segments> -</rt> -<rt class="MoInflAffixTemplate" guid="93b7caf7-2fd3-4421-994f-0561ad908414" ownerguid="54712931-442f-42d5-8634-f12bd2e310ce"> -<Disabled val="False" /> -<Final val="True" /> -<Name> -<AUni ws="en">verbal person markers</AUni> -</Name> -<SuffixSlots> -<objsur guid="0eb1d65f-6889-40e2-a5ee-818feedf259c" t="r" /> -<objsur guid="cc7bce64-81a2-4c23-9cb0-ba8f7d274837" t="r" /> -<objsur guid="4241ff27-a983-4a4f-b554-ba2444cca308" t="r" /> -<objsur guid="ca45d090-0c3b-4e36-9a40-58963588cdaf" t="r" /> -<objsur guid="b31b892c-cb26-4efd-b65c-29374c5e75b6" t="r" /> -<objsur guid="5d7569d5-d194-43a3-8975-abfbf7ee2b2f" t="r" /> -<objsur guid="34426d22-8e6e-44f9-9308-73fe011a7617" t="r" /> -<objsur guid="2187f650-9ef3-4104-9740-f007f3b51ffe" t="r" /> -<objsur guid="257de7fb-dab6-4b87-848b-3fbb8f5c3e04" t="r" /> -<objsur guid="6b5fd694-545b-4dac-8fa7-cbce40f8838e" t="r" /> -<objsur guid="2167bf6d-84f4-4209-b618-7a1edf05092a" t="r" /> -</SuffixSlots> -</rt> -<rt class="CmSemanticDomain" guid="93b8bd61-137a-4ebc-b12f-52fa5d2b3ea4" ownerguid="b4aa4bbd-8abf-4503-96e4-05c75efd23d5"> -<Abbreviation> -<AUni ws="en">1.1.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.932" /> -<DateModified val="2022-9-23 16:55:7.932" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the wind. Some words refer to when the wind begins and ends. The wind changes in speed, so some words refer to how fast the wind is moving. Try to rank these on a scale from very slow to very fast. These words may also be distinguished by what the wind does, since a fast wind does more things. These words may also be distinguished by how long the wind blows. Some words refer to the speed of the wind becoming faster or slower. Some words distinguish a steady wind from a wind in which the speed keeps changing. Some words refer to when the speed of the wind becomes faster for a short time. A steady wind moves in a particular direction, so there are words that include the direction of the wind. The direction of the wind may refer to the points of the compass, a neighboring geographical feature or area, or the direction in which the speaker is moving. Some words refer to a wind that moves in a small circle, making a pillar of dust or a funnel-shaped cloud. Some words refer to what the wind does, such as when it moves or damages something. People can feel the wind, so some words refer to how it feels. The wind makes noise, so there are words that refer to the sound of the wind. In some cultures there is a relation between the wind and spirits, so some words may refer to the activity of the spirits in the wind, or that the wind brings disease.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>14B Wind</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Wind</AUni> -</Name> -<Questions> -<objsur guid="3789d8cb-a9a0-455d-8b4b-b5d4863c7831" t="o" /> -<objsur guid="667f8571-ba30-4e4e-8423-b1a49c584b56" t="o" /> -<objsur guid="6a13cee1-c6b6-4211-acb8-4f8f117192b8" t="o" /> -<objsur guid="443af387-a949-4f1e-93fb-dbc9a4bb875a" t="o" /> -<objsur guid="b20ea700-233b-4ed7-acea-838754274f45" t="o" /> -<objsur guid="e5737795-8b11-4b14-9a8b-de97730f1079" t="o" /> -<objsur guid="327711f0-ee6d-43ec-b0be-09b9262a53d0" t="o" /> -<objsur guid="9d5a8d16-3780-4701-9b22-49e11a2270b9" t="o" /> -<objsur guid="f7cca34d-9986-4bab-916b-b46ad9c595e9" t="o" /> -<objsur guid="1139f415-28b3-4f26-bea7-6a4b7cfa9790" t="o" /> -<objsur guid="e2d56ccd-7247-4df3-a43d-c043318441fd" t="o" /> -<objsur guid="6499b1d0-ab18-467c-9c33-79142508733e" t="o" /> -<objsur guid="80fbc8c2-d865-4510-97ca-fc85f1e03bb6" t="o" /> -<objsur guid="cd6407c3-45ef-4d06-9269-49922a917779" t="o" /> -<objsur guid="15eb1ed9-3235-49b1-88b2-6adccd0e1392" t="o" /> -<objsur guid="91e674d7-b12d-4c56-85ea-c150f9b74569" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="18595df7-1c69-40db-a7c1-74d490115c0c" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="93b9850e-c0b2-4a7b-85a9-455291872ffb" ownerguid="388c9235-aa66-4d43-aeb8-aa6cdfb69089"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">raro</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="014bc832-b96d-4339-8c24-fc57ffcaf626" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="93b9aab6-f7d7-48c5-832f-3c1576d174bb" ownerguid="4e7a6dfe-3654-4ca1-874d-02424581b774"> -<ExampleWords> -<AUni ws="en">deeper, deepest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to being deeper than another thing?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="93bc71dc-3954-4667-bece-23e2d61b0793" ownerguid="0d1d15dc-d2d2-44dd-938a-816344e4a078"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="93bcba15-4329-416a-b6ff-4f3c73b2cd4f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">majique:ru</AUni> -<AUni ws="qvm-x-acl">majique:ru; majique:ru; majique:ro</AUni> -<AUni ws="qvm-x-akh">majique:ru</AUni> -<AUni ws="qvm-x-akl">majique:ru; majique:ru; majique:ro</AUni> -<AUni ws="qvm-x-ame">majique:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+magiquero</AUni> -<AUni ws="qvm-x-acl">+magiquero</AUni> -<AUni ws="qvm-x-akh">+magiquero</AUni> -<AUni ws="qvm-x-akl">+magiquero</AUni> -<AUni ws="qvm-x-ame">+magiquero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.255" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="763e4dfc-141e-44cd-a0ce-656cd4b158f4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+magiquero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9db9d984-aa87-4540-adf5-e21096acdd7e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1f8c5066-62ff-4727-b478-52c4e4bcbc3a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +magiquero 
\entryTyp root 
\gENG 
\gSPN 
\e +magiquero 
\c N0 
\ach majique:ru 
\akh majique:ru 
\acl majique:ru / _# 
\acl majique:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl majique:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl majique:ru / _# 
\akl majique:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl majique:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame majique:ru 
\i Deu 18.11 Majiquërupis ni chagchapacogpis ama capäcunquitsu.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="93bfb27c-4873-4a66-93ae-233ac517f2c2" ownerguid="aa2b547c-2c82-4ce0-a1b3-35fa809d666c"> -<ExampleWords> -<AUni ws="en">constriction, restriction</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the process of becoming narrow?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="93c0134f-6930-499b-bb0c-e306b0af173f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wiscul</AUni> -<AUni ws="qvm-x-acl">wiscul</AUni> -<AUni ws="qvm-x-akh">wiskul</AUni> -<AUni ws="qvm-x-akl">wiskul</AUni> -<AUni ws="qvm-x-ame">wiskul</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wiskul.2</AUni> -<AUni ws="qvm-x-acl">*wiskul.2</AUni> -<AUni ws="qvm-x-akh">*wiskul.2</AUni> -<AUni ws="qvm-x-akl">*wiskul.2</AUni> -<AUni ws="qvm-x-ame">*wiskul.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.699" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bf9ca6b8-9dc9-4174-938d-230ae0f86568" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wiskul.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="203661a9-d64d-4d00-8c95-a72b8debc86b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="25c44aac-17ee-4c31-97f9-c3b3dab9343b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wiskul.2 
\entryTyp root 
\gENG turkey.buzzard 
\gSPN gallinazo 
\e *wiskul.2 
\c N0 
\mp +FinalC 
\ach wiscul 
\akh wiskul 
\acl wiscul 
\akl wiskul 
\ame wiskul 
\mcc *wiskul.2 / ~_ [SuffixesWhichLowerDM] / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="93c08fb3-93ea-4519-903f-2158a3cff501" ownerguid="e1e0b800-85ad-4886-abe5-9f67c022a5ed"> -<ExampleWords> -<AUni ws="en">end (n), point, tip, nose, head</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the end of something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="93c64606-44dc-4e99-8289-97b6c77a0fed"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">demanda</AUni> -<AUni ws="qvm-x-acl">demanda</AUni> -<AUni ws="qvm-x-akh">demanda</AUni> -<AUni ws="qvm-x-akl">demanda</AUni> -<AUni ws="qvm-x-ame">demanda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+demandar</AUni> -<AUni ws="qvm-x-acl">+demandar</AUni> -<AUni ws="qvm-x-akh">+demandar</AUni> -<AUni ws="qvm-x-akl">+demandar</AUni> -<AUni ws="qvm-x-ame">+demandar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.376" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="75da3c44-9825-41ef-8682-e0fd6cbf32a9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+demandar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a8c19c98-c11c-4e6f-aa2e-25c727bfd123" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4bbbbd64-d261-47d5-a824-e69b7efa27c3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +demandar 
\entryTyp root 
\gENG sue 
\gSPN demandar 
\e +demandar 
\c V2 
\ach demanda 
\akh demanda 
\acl demanda 
\akl demanda 
\ame demanda</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="93c9ac70-c8f5-4f04-8419-8144710bc5b6" ownerguid="3615c3d1-fd5b-40c5-80ad-80bfd6451d56"> -<ExampleWords> -<AUni ws="en">plunderer, looter, forager, marauder, raider, pirate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to someone who plunders?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="93cd89e9-d469-4921-b12e-1e9c6eabd08e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">adivi:nu</AUni> -<AUni ws="qvm-x-acl">adivi:nu; adivi:nu; adivi:no</AUni> -<AUni ws="qvm-x-akh">adivi:nu</AUni> -<AUni ws="qvm-x-akl">adivi:nu; adivi:nu; adivi:no</AUni> -<AUni ws="qvm-x-ame">adivi:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+adivino</AUni> -<AUni ws="qvm-x-acl">+adivino</AUni> -<AUni ws="qvm-x-akh">+adivino</AUni> -<AUni ws="qvm-x-akl">+adivino</AUni> -<AUni ws="qvm-x-ame">+adivino</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.647" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="04b94ae8-8be1-4ad8-a3a5-fc830459aeda" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+adivino</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="56297b2f-bd80-4fa1-8ccc-32e78a355ad7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c1961d6a-7f83-4604-bf88-74f96a187722" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +adivino 
\entryTyp root 
\gENG diviner 
\gSPN adivino 
\e +adivino 
\c N0 
\ach adivi:nu 
\akh adivi:nu 
\acl adivi:nu / _# 
\acl adivi:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl adivi:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl adivi:nu / _# 
\akl adivi:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl adivi:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame adivi:nu 
\i Gen 44.15 ¿Manacu musyapäcushcanqui adivïnu car imatapis musyashgäta?>></Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="93d0971a-ec84-4f2d-a7ae-1b604f995601"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rica</AUni> -<AUni ws="qvm-x-acl">rica</AUni> -<AUni ws="qvm-x-akh">rika</AUni> -<AUni ws="qvm-x-akl">rika</AUni> -<AUni ws="qvm-x-ame">rika</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rika</AUni> -<AUni ws="qvm-x-acl">*rika</AUni> -<AUni ws="qvm-x-akh">*rika</AUni> -<AUni ws="qvm-x-akl">*rika</AUni> -<AUni ws="qvm-x-ame">*rika</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.358" /> -<DateModified val="2022-10-17 13:23:9.873" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rika</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1b926284-5562-4cf3-8ad2-65536a715093" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rika 
\entryTyp root 
\gENG see 
\gSPN ver 
\e *rika 
\c V2 
\ach rica 
\akh rika 
\acl rica 
\akl rika 
\ame rika</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="93d10fdf-0c24-47c2-9270-ce8dffae1829" ownerguid="7ac2a0f2-0f68-4cf5-a808-d0acd361d929"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Tsatacachärishun.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="93d1a3dd-19ff-4948-907f-c94f7430f9a9" ownerguid="221369a4-3d3d-45fa-8ef7-0b4c2cf9af2d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="530a106f-e77c-4dea-b631-58dd612ed658" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="93d1cf18-fef9-4720-8237-0acc60762f07" ownerguid="18924ddb-69db-4c9a-ab9d-70facc22d603"> -<Form> -<AUni ws="qvm-x-ach">animal</AUni> -<AUni ws="qvm-x-acl">animal</AUni> -<AUni ws="qvm-x-akh">animal</AUni> -<AUni ws="qvm-x-akl">animal</AUni> -<AUni ws="qvm-x-ame">animal</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PhPhoneme" guid="93d652a3-4b98-42e3-90f9-ae9ab0ead15b" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="c8c809b9-dbbc-482b-872a-86eb44e88437" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">lengthened high front unrounded vowel</Run> -</AStr> -</Description> -<Name> -<AUni ws="qvm-x-ach">ï</AUni> -<AUni ws="qvm-x-acl">ï</AUni> -<AUni ws="qvm-x-akh">ï</AUni> -<AUni ws="qvm-x-akl">ï</AUni> -<AUni ws="qvm-x-ame">ii</AUni> -</Name> -</rt> -<rt class="LexEntry" guid="93d7ff09-c75b-40a3-b97f-119018f350c1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">luta</AUni> -<AUni ws="qvm-x-acl">luta</AUni> -<AUni ws="qvm-x-akh">luta</AUni> -<AUni ws="qvm-x-akl">luta</AUni> -<AUni ws="qvm-x-ame">luta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lluta.v</AUni> -<AUni ws="qvm-x-acl">*lluta.v</AUni> -<AUni ws="qvm-x-akh">*lluta.v</AUni> -<AUni ws="qvm-x-akl">*lluta.v</AUni> -<AUni ws="qvm-x-ame">*lluta.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.245" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8693ffdc-495f-4388-93d9-03f5f4157cba" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lluta.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c3267f28-3852-42bb-a03c-caad899870e1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a7e6e805-e316-4e78-ad8c-f84fe4d9718d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lluta.v 
\entryTyp root 
\gENG cover 
\gSPN tapar 
\e *lluta.v 
\c V1 
\ach luta 
\akh luta 
\acl luta 
\akl luta 
\ame luta 
\mcc *lluta.v / ~_ 3</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="93d8c59d-b8b0-4b5e-8419-f17702fb4905" ownerguid="2bb178b7-e4b6-423a-a109-a97207cfba90"> -<Form> -<AUni ws="qvm-x-ach">romanilla</AUni> -<AUni ws="qvm-x-acl">romanilla</AUni> -<AUni ws="qvm-x-akh">romanilla</AUni> -<AUni ws="qvm-x-akl">romanilla</AUni> -<AUni ws="qvm-x-ame">romanilla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="93d9ef97-60cd-4528-8070-d5b6742dbaa0" ownerguid="380b0d15-77a1-49ba-ad83-a508e7ffb83d"> -<ExampleWords> -<AUni ws="en">hurricane, typhoon, cyclone, blizzard, snowstorm, hailstorm, thunderstorm, rainstorm, cloudburst, windstorm, tornado, funnel, whirlwind</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of storms are there?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="93de2257-8303-490d-b2fe-6d1d838b08c6" ownerguid="15947464-997a-4f44-9a4b-ac4916e7e19b"> -<Abbreviation> -<AUni ws="en">5.4.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.327" /> -<DateModified val="2022-9-23 16:55:8.327" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to caring for the fingernails.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Care for the fingernails</AUni> -</Name> -<Questions> -<objsur guid="de2459a8-4218-4d20-847c-841dea8a456a" t="o" /> -<objsur guid="dce301e8-507b-4a2d-8039-018ebeb92a3b" t="o" /> -<objsur guid="8b4b6e11-459f-4a72-8bb9-6c51d25051a8" t="o" /> -<objsur guid="5fd653b7-58eb-4760-b4e6-31e052a7ec58" t="o" /> -<objsur guid="41e9643d-f004-4e43-8680-e5ae23b3ad0d" t="o" /> -<objsur guid="ce263e51-d5b1-436c-bfd6-d90814c457d3" t="o" /> -<objsur guid="626d804d-9cb8-41fb-82f4-e488cfbecd84" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="93ded7f5-92c0-4f5f-b72e-ca9c49189e56" ownerguid="9f9ff37f-be37-43c5-8818-045a15e2c469"> -<Form> -<AUni ws="qvm-x-ach">gotu</AUni> -<AUni ws="qvm-x-acl">gotu; goto</AUni> -<AUni ws="qvm-x-akh">qotu</AUni> -<AUni ws="qvm-x-akl">qotu; qoto</AUni> -<AUni ws="qvm-x-ame">qutu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="93df663c-9a5e-48aa-984f-fdf413079bc2" ownerguid="bb8ddf5f-707d-46c0-aff4-45683d26fd68"> -<Abbreviation> -<AUni ws="en">9.5.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that mark the beneficiary of an event. The sentence "John built a house for his father" is ambiguous. If the house was for his father to live in, then "for" would mark the 'Beneficiary of a patient', meaning that the house was for the father. If, on the other hand, the father was intending to build the house to sell, but couldn't due to an injury, then "for" would mark the 'Beneficiary of an event', meaning the father benefited from the building of the house.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>90I Benefaction</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Beneficiary of an event</AUni> -</Name> -<Questions> -<objsur guid="9f5902d0-36ae-4159-a699-60d863b2fa41" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="93dfb133-8694-4c51-845f-41b6ebd0ec04" ownerguid="392b8fe3-5a0b-46c2-a595-f13d84c3bd06"> -<Form> -<AUni ws="qvm-x-ach">gueulla</AUni> -<AUni ws="qvm-x-acl">gueulla</AUni> -<AUni ws="qvm-x-akh">qewlla</AUni> -<AUni ws="qvm-x-akl">qewlla</AUni> -<AUni ws="qvm-x-ame">qiwlla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="93e14cc1-9e54-46ad-ae9e-d10867965dbf" ownerguid="6817cc05-a77f-405f-86c0-1325fdfaef28"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="93e1aa75-1c40-4f20-84ed-61ec4e93094b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">janca</AUni> -<AUni ws="qvm-x-acl">janca</AUni> -<AUni ws="qvm-x-akh">janka</AUni> -<AUni ws="qvm-x-akl">janka</AUni> -<AUni ws="qvm-x-ame">hanka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hanka</AUni> -<AUni ws="qvm-x-acl">*hanka</AUni> -<AUni ws="qvm-x-akh">*hanka</AUni> -<AUni ws="qvm-x-akl">*hanka</AUni> -<AUni ws="qvm-x-ame">*hanka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.668" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="270967d2-18cc-4be8-80b0-974ef729316e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hanka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bf55247d-48c0-4482-b568-46bee1cd93ca" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="67230444-1da0-4af4-840f-b4671d625686" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hanka 
\entryTyp root 
\gENG snow.cap 
\gSPN cordillera 
\e *hanka 
\c N0 
\ach janca 
\akh janka 
\acl janca 
\akl janka 
\ame hanka</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="93e68721-97d6-4778-8b51-21516c530257" ownerguid="d9874aa6-a28e-4351-b79c-3ab3d257072e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="93e6ed4d-6147-44ba-8e25-e4621eba7b90" ownerguid="d74914e7-e329-49d4-8513-ec8d850241e4"> -<ExampleWords> -<AUni ws="en">gradually, in stages, step by step, one step at a time, in increments, incrementally, piecemeal, by degrees, little by little</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something is done one part at a time?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="93e7b860-a0c0-4f6f-9ecc-e88fabd11119" ownerguid="7ff8d40d-32a6-44fc-a0b3-5edf046f89ba"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="93e87993-8183-443f-9ea0-0fa5810468b3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuchara</AUni> -<AUni ws="qvm-x-acl">cuchara</AUni> -<AUni ws="qvm-x-akh">cuchara</AUni> -<AUni ws="qvm-x-akl">cuchara</AUni> -<AUni ws="qvm-x-ame">cuchara</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuchara</AUni> -<AUni ws="qvm-x-acl">+cuchara</AUni> -<AUni ws="qvm-x-akh">+cuchara</AUni> -<AUni ws="qvm-x-akl">+cuchara</AUni> -<AUni ws="qvm-x-ame">+cuchara</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.234" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0cc3b0bc-7b2e-4e76-b362-cebc13954832" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuchara</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b43f4845-c387-4943-a604-74ecc96acbdc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0acaa999-707b-4cbd-b529-2601e79b0e3a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuchara 
\entryTyp root 
\gENG spoon 
\gSPN cuchara 
\e +cuchara 
\c N0 
\ach cuchara 
\akh cuchara 
\acl cuchara 
\akl cuchara 
\ame cuchara</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="93ec5d47-19ad-4971-94ea-185d0c70ce59" ownerguid="e87b0d47-6e52-42a5-9c14-6b35e317ebd2"> -<Form> -<AUni ws="qvm-x-ach">tsimpa</AUni> -<AUni ws="qvm-x-acl">tsimpa</AUni> -<AUni ws="qvm-x-akh">tsimpa</AUni> -<AUni ws="qvm-x-akl">tsimpa</AUni> -<AUni ws="qvm-x-ame">tsimpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="93f2dd18-69f9-44a9-aaa7-8a80f8493ae8" ownerguid="7ad54364-ca8c-4b7c-9748-f83efb44d0ea"> -<ExampleWords> -<AUni ws="en">mention, refer to, allude to, touch on, say briefly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to mentioning something?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="93f8f119-76d2-49c5-886e-f1f90b97b52c" ownerguid="e9a8359c-c101-4b03-85d3-ff4b9d31426b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">g</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">g</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">q</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">q</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">q</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7feef4b7-a285-4201-a3a4-057f77618b78" t="r" /> -</Morph> -<Msa> -<objsur guid="964f8962-17d5-4738-8902-97236137c419" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="93f90703-a6ba-4c2e-a7bc-e44f382ea550" ownerguid="741c417a-11e9-460c-9ab3-51b8220df016"> -<ExampleWords> -<AUni ws="en">crest, trough, curl, foam</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the parts of a wave?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="93fae065-83bd-4ac7-8b88-25ebd5e6083c" ownerguid="d1e58469-52e3-4b50-b0de-00bf9f09f8d4"> -<ExampleWords> -<AUni ws="en">ancestor, forefather, forebear, patriarch, matriarch, progenitor, background, origins</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to your ancestors?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="93fb55af-d825-450d-a1cd-0451bd7fe1ff" ownerguid="026eb7e6-397b-4769-951e-608bcd733725"> -<Form> -<AUni ws="qvm-x-ach">chogchi</AUni> -<AUni ws="qvm-x-acl">chogchi; chogchi; chogche</AUni> -<AUni ws="qvm-x-akh">choqchi</AUni> -<AUni ws="qvm-x-akl">choqchi; choqchi; choqche</AUni> -<AUni ws="qvm-x-ame">chuqchi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="93fb75bb-fa7d-458c-b10b-07a554c8f640" ownerguid="324cc026-a13b-40f4-936c-3e743c8d8b82"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="2e411906-71e3-41ae-9cda-f47d6c92c243" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="93fcab94-33c1-4cbe-a786-53fcf2cccc1b" ownerguid="ea17aba7-6d4e-4dbf-89ea-84a1b1c47647"> -<ExampleWords> -<AUni ws="en">huge, enormous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a very big container?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="93fcd3fd-19e1-487f-abe1-e53978be7e31" ownerguid="12b6934d-3a4a-4623-995f-865f401349ab"> -<ExampleWords> -<AUni ws="en">(no words in English, but some in North American Indian languages)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to eating two things together?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="93fde103-45c1-4fec-9a5f-3ab9d7992f4c" ownerguid="43848228-1b74-4d32-a279-c6826f9190fd"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="93fec2b2-fe51-4340-896b-adc499d0769a" ownerguid="c345f278-91ff-463d-b9a6-8abac8a267eb"> -<ExampleWords> -<AUni ws="en">banana, plantain, cooking banana</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What types of bananas are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="94007282-357a-485e-8b6f-b77c80a2eac8" ownerguid="fc170f70-520e-4f3e-b8b8-98e4b898fd24"> -<ExampleWords> -<AUni ws="en">edge (n), border, outskirts, perimeter, margin, periphery, curb</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the edge of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9401e10d-4d5d-41b8-b2c5-95ad1cd3fea8" ownerguid="5b223347-0605-4a88-9745-f71aa4e1f320"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">toasted (w/o grease)</AUni> -<AUni ws="es">tostado (sin grasa)</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c124469a-09f2-45cf-97ad-10fc3dd096d7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="94093324-8662-43d9-952c-df45c78273f5" ownerguid="49cd2c20-098a-46d9-9e47-6bf109308793"> -<ExampleWords> -<AUni ws="en">emphasize, stress</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the placing of importance on something?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="940abc4a-4655-4edf-94b4-e46270ab0fe4"> -<Analyses> -<objsur guid="52a7b4cb-3ebe-4c1f-8e5c-4d86e1d7d10b" t="o" /> -</Analyses> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">ruwakuykulanki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="940baead-a62f-4cca-84bd-53b41b215cf9" ownerguid="c60cf6a1-7868-4536-ac73-387bfa26e04b"> -<ExampleWords> -<AUni ws="en">act of rebellion, rebellious act, revolutionary act, demonstration, riot, disorder, sabotage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to an instance of rebelling?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="940c44e5-f1de-4b20-aa81-3f31feb5427e" ownerguid="4d8d52ab-8854-4a42-8e12-34604f635f67"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cook</AUni> -<AUni ws="es">cocinar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="197e93ef-1596-43b2-af57-9042c6eab31f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9414df5f-4ed9-47aa-802f-68a6188a7425" ownerguid="30e6b42c-6bbf-4659-99e7-aa4b8e68c9ce"> -<ExampleWords> -<AUni ws="en">saint</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a good person?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9417f1c6-99cf-42fe-a925-36d5ea5ef914" ownerguid="871819c6-e5de-47fa-ac8d-a42edf98fb2f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">male.kid</AUni> -<AUni ws="es">chivo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4bad4a06-9995-4edf-a39a-d6db597356a6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="94183f5f-3355-4455-9701-2dbffb057a76" ownerguid="9e31b57d-e54b-49e0-b2d9-81938449f024"> -<Form> -<AUni ws="qvm-x-ach">cigärru</AUni> -<AUni ws="qvm-x-acl">cigärru; cigärru; cigärro</AUni> -<AUni ws="qvm-x-akh">cigärru</AUni> -<AUni ws="qvm-x-akl">cigärru; cigärru; cigärro</AUni> -<AUni ws="qvm-x-ame">cigärru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="94189c36-c96a-4cc0-bf33-d3a44e892ba3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tuqui</AUni> -<AUni ws="qvm-x-acl">tuqui; tuque</AUni> -<AUni ws="qvm-x-akh">tuki</AUni> -<AUni ws="qvm-x-akl">tuki; tuke</AUni> -<AUni ws="qvm-x-ame">tuki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tuki</AUni> -<AUni ws="qvm-x-acl">*tuki</AUni> -<AUni ws="qvm-x-akh">*tuki</AUni> -<AUni ws="qvm-x-akl">*tuki</AUni> -<AUni ws="qvm-x-ame">*tuki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.967" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="78577c7f-0664-44e9-8f0c-633bd07bbe32" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tuki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fd0cb698-1888-413c-85d4-526adc67594b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a9b5df9b-f128-49b4-abd2-cdb957c7d50a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tuki 
\entryTyp root 
\gENG feed.fire 
\gSPN atizar 
\e *tuki 
\c V2 
\mp +FinalI 
\ach tuqui 
\akh tuki 
\acl tuqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tuque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tuki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tuke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tuki</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="94195813-65a4-4af9-ac35-b3ab714a6e38" ownerguid="f13ed73c-8b8d-4f97-a172-09f8f88d124f"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">munarcö.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="941a6012-ad76-4e0a-adc2-c17f95054c29" ownerguid="c4f7bca1-1277-4895-b9ea-0c681e6b8135"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">nibble</AUni> -<AUni ws="es">roer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aa1074de-6672-4fdd-8445-79cb5b2d4db7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="941b41f1-4cf2-4b8e-944e-ccd2da7e485e" ownerguid="787da344-8c33-4d3e-84a6-ec7a7b8346da"> -<Form> -<AUni ws="qvm-x-ach">tantiya</AUni> -<AUni ws="qvm-x-acl">tantiya</AUni> -<AUni ws="qvm-x-akh">tantiya</AUni> -<AUni ws="qvm-x-akl">tantiya</AUni> -<AUni ws="qvm-x-ame">tantiya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="941cca94-2463-4e12-83a6-47d8266f5e5f" ownerguid="b009c052-e6f2-4166-a257-69dab97ab896"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">son</AUni> -<AUni ws="es">hijo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="03862302-d56d-4162-89b1-d3c5de98f6aa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="941fca98-c1d4-412d-80d7-b9fea42e3cda" ownerguid="408a637e-691e-4969-a28f-ddd7d0b94b30"> -<Form> -<AUni ws="qvm-x-ach">sauci; sauce</AUni> -<AUni ws="qvm-x-acl">sauci; sauci; sauce</AUni> -<AUni ws="qvm-x-akh">sauci; sauce</AUni> -<AUni ws="qvm-x-akl">sauci; sauci; sauce</AUni> -<AUni ws="qvm-x-ame">sauci; sauce</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="9420c49c-3cbc-44de-b832-655634fcff94" ownerguid="bd550c69-9ff6-4ab2-85d7-718b054adfa4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ground</AUni> -<AUni ws="es">molido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9bae150b-e221-4151-82cd-35d3dcd21649" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="94236ebe-d094-41e1-800e-e81158e82fc4" ownerguid="b5700ad7-36a1-4608-8789-8f84007244f8"> -<ExampleWords> -<AUni ws="en">yawn, sigh, drag, droop, drop, faint, flag, pant, puff, stretch, wilt, wind down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What do people do when they are tired?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="94242f7e-70e5-4409-8de2-dec3f9eaf94f" ownerguid="0de7ba3e-5e24-4c00-b5da-8c6a05523a2b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bread</AUni> -<AUni ws="es">pan</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fd35cb2d-0861-4b36-a4ab-3c3c3c34bdfa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="94253887-8eb0-4704-946f-98a465c513f7" ownerguid="1e2f084c-71ac-42d4-8200-995f1be5d2c4"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="65b73c8a-78dd-4e68-a125-47b8c16de4d1" t="o" /> -<objsur guid="d784902f-42ba-4f29-af47-1c305076bb36" t="o" /> -<objsur guid="e52f57b2-6065-43b3-9e0e-842dd65173a3" t="o" /> -<objsur guid="c9701102-9181-44ad-8b45-03bf0646c311" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="942754fb-6784-4cd0-a556-e8346a5ba897" ownerguid="a4627ca8-f27b-44ce-91f5-cc992332bc86"> -<ExampleWords> -<AUni ws="en">spouse, husband, wife, second wife</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to refer to the person you are married to?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="942c4d5d-3c72-4872-b4fa-2df95f7fbeaa" ownerguid="16835a46-c7fb-4cbf-9a93-3b5488e0d42a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">na</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">na</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">na</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">na</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">na</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7a9a0db9-5eb5-414c-9dd3-907a54abc86b" t="r" /> -</Morph> -<Msa> -<objsur guid="a91771ad-8785-4e3e-b6f8-793820e3a8bd" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="9434061e-80df-49ab-8ee4-86a95abeb762" ownerguid="bbb7808d-7901-4f32-be05-86e73a8a9e57"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="9434cf79-4760-4a13-a2cc-e97e30895fb6" ownerguid="e9136a3a-1564-4822-99ae-e70c050441d7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="9437be78-c933-416a-9330-923ff45aa0dc" ownerguid="e087f00c-9a8c-415b-ab2c-368083838183"> -<Form> -<AUni ws="qvm-x-ach">galsa</AUni> -<AUni ws="qvm-x-acl">galsa</AUni> -<AUni ws="qvm-x-akh">qalsa</AUni> -<AUni ws="qvm-x-akl">qalsa</AUni> -<AUni ws="qvm-x-ame">qalsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="9439cfe8-62b3-4633-8da8-4a4b46911aa1" ownerguid="6a1c2ce5-bb21-4cb6-85f3-fa13f96131a4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="943c6996-5045-454a-a4e5-715e7d7dfd18" ownerguid="e50ab2b1-5337-4b6c-ab4c-ea2cee2e8838"> -<Form> -<AUni ws="qvm-x-ach">tsururu</AUni> -<AUni ws="qvm-x-acl">tsururu; tsururu; tsururo</AUni> -<AUni ws="qvm-x-akh">tsururu</AUni> -<AUni ws="qvm-x-akl">tsururu; tsururu; tsururo</AUni> -<AUni ws="qvm-x-ame">tsururu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="943eb131-2761-4c98-90a0-0bdfb0f8584d" ownerguid="44bf22fd-3725-4c49-bd3c-434402c33493"> -<Abbreviation> -<AUni ws="en">5.1.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.306" /> -<DateModified val="2022-9-23 16:55:8.306" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a bed.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Bed</AUni> -</Name> -<Questions> -<objsur guid="fa69a390-1200-4ec0-b866-9da5762444d2" t="o" /> -<objsur guid="c631e94c-1ef3-4965-8b55-0ffdbd4b2f24" t="o" /> -<objsur guid="e2de2442-84d2-4c6d-bad0-f6bd66cf2b1c" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="0aae0254-dc06-4906-8ecf-2d8450fb83f1" t="r" /> -<objsur guid="d502512c-966b-4752-8636-716fb29facfe" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="943faa92-22c7-4130-ae44-30d3a5836bd4" ownerguid="a1dd1d94-fa8e-4325-9f72-b39bcac69755"> -<ExampleWords> -<AUni ws="en">settle dispute, end hostilities, restore harmony, pacify</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to ending a war with your enemies?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="94426d56-c31d-475e-aa54-94fbf738c0c5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lantag</AUni> -<AUni ws="qvm-x-acl">lantag</AUni> -<AUni ws="qvm-x-akh">lantaq</AUni> -<AUni ws="qvm-x-akl">lantaq</AUni> -<AUni ws="qvm-x-ame">lantaq</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.477" /> -<DateModified val="2022-10-16 15:15:4.755" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f316619d-8160-40c4-a224-4ab66a6572ca" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">AMONG2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c4f6fad5-4115-4ba7-81b1-981ead920c7a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4173d390-b298-46bd-8342-992b71970408" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx AMONG2 
\entryTyp suffix 
\gENG AMONG 
\gSPN ENTRE2 
\e AMONG2 
\c N0/N0 
\o 200 
\mp -PMonophthongized 
\ach lantag 
\akh lantaq 
\acl lantag 
\akl lantaq 
\ame lantaq 
\mp +FinalC 
\mp NeverForeshortened 
\i Gen 36.7 Jacobpis Esaúpis rïculantag captinmi tashgan parti mana aypargantsu tsaylacho juntu tänanpag. 
\i Gen 31.8 Tsaynogpis: <Alga cag yuregcunata pägashayqui> nimaptenga lapan malwacunapis algalantagmi yureg.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="9445e00c-c51a-4015-9364-c2756a681a2e" ownerguid="b5f45cd2-8dd5-4a74-b334-0d4859d26d89"> -<Form> -<AUni ws="qvm-x-ach">wancayla</AUni> -<AUni ws="qvm-x-acl">wancayla</AUni> -<AUni ws="qvm-x-akh">wankayla</AUni> -<AUni ws="qvm-x-akl">wankayla</AUni> -<AUni ws="qvm-x-ame">wankayla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="9446991f-d7bf-4579-8651-ac262ddc0c8a" ownerguid="f2646733-1cdb-4c11-8c7c-221bab794942"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="9448df08-fbd7-42c5-8139-26429353d9e3" ownerguid="e3d18da9-e689-4d16-a8f6-2cda34bfee50"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cut</AUni> -<AUni ws="es">cortar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="08f51dbd-8d01-4508-93be-db28909b3581" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="944a44d3-52c6-4cd9-9d8a-6acf6e2f2be4" ownerguid="34d2e65f-4a27-45a4-8afc-c53b886f9909"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="5fb868de-24d5-4629-8b33-a1df738a11ea" t="o" /> -<objsur guid="bfe4af51-5c56-41ce-93da-53dcc7276593" t="o" /> -<objsur guid="385ddf1b-c028-4bfd-81e0-bd7c2b401be0" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="944c1ac9-138d-44df-b672-9d83440996b4" ownerguid="0ce61f27-9de8-49b2-9189-6f6efe488f6d"> -<ExampleWords> -<AUni ws="en">spot, locate, descry, detect, discern, distinguish, espy, catch a glimpse of, spy, sight something</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to seeing something that you have been looking for?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="944cf5af-469e-4b03-878f-a05d34b0d9f6" ownerguid="63403699-07c1-43f3-a47c-069d6e4316e5"> -<Abbreviation> -<AUni ws="en">1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.978" /> -<DateModified val="2022-9-23 16:55:7.978" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to animals.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>4 Animals</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Animal</AUni> -</Name> -<OcmCodes> -<Uni>136 Fauna</Uni> -</OcmCodes> -<Questions> -<objsur guid="d83a9587-16c0-4244-a4e2-5333517cdbab" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="16de6eab-afab-4ba4-a279-cf0ba4d7c9e6" t="r" /> -<objsur guid="1f608e18-958e-4bb3-a977-04879fb5acd5" t="r" /> -<objsur guid="5df53b87-7f59-4f5c-991e-5ae007b68fa9" t="r" /> -<objsur guid="79b580ff-64a7-445b-abcb-b49b9093779c" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="73499b8b-76fc-4121-8bfa-1bdebe537259" t="o" /> -<objsur guid="ffd0547e-e537-4614-ac3f-6d8cd3351f33" t="o" /> -<objsur guid="ac187298-85e8-43ed-ba85-cc06a62c08ba" t="o" /> -<objsur guid="e76227e8-4a04-4fbd-a16e-5baa3d9e97a9" t="o" /> -<objsur guid="17d5f429-6550-4a3a-a755-5ac3c3d7e04f" t="o" /> -<objsur guid="85646774-8145-4553-b8a7-6927cd077908" t="o" /> -<objsur guid="7c64f65b-2889-4f90-ba61-6b5f7634d4bc" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="944e0edc-58b9-4322-94ab-c19b6f79489b" ownerguid="fea79ddc-1303-4d58-af28-2a49ca9549d4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="bb7b5f0b-36c6-4149-8183-99888b139ccc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="94519d8a-0ad6-4acd-8413-84cb6e9928c7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">siniga</AUni> -<AUni ws="qvm-x-acl">siniga</AUni> -<AUni ws="qvm-x-akh">siniga</AUni> -<AUni ws="qvm-x-akl">siniga</AUni> -<AUni ws="qvm-x-ame">siniga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ciénaga</AUni> -<AUni ws="qvm-x-acl">+ciénaga</AUni> -<AUni ws="qvm-x-akh">+ciénaga</AUni> -<AUni ws="qvm-x-akl">+ciénaga</AUni> -<AUni ws="qvm-x-ame">+ciénaga</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.112" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dcbf90cd-6028-46f8-927c-3d2d053d60ca" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ciénaga</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="305510ac-7ef4-4295-b1a0-befcee5b1fed" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b127f261-0a9c-47f0-b77c-463beeb5eb89" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ciénaga 
\entryTyp root 
\gENG deep.sticky.mud 
\gSPN atolladero 
\e +ciénaga 
\c N0 
\mp +assimilated 
\ach siniga 
\akh siniga 
\acl siniga 
\akl siniga 
\ame siniga</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="9451e323-1237-45b4-8277-6f7089e5a0ec"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">café; cafe:</AUni> -<AUni ws="qvm-x-acl">café; cafe:</AUni> -<AUni ws="qvm-x-akh">café; cafe:</AUni> -<AUni ws="qvm-x-akl">café; cafe:</AUni> -<AUni ws="qvm-x-ame">café; cafe:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+café</AUni> -<AUni ws="qvm-x-acl">+café</AUni> -<AUni ws="qvm-x-akh">+café</AUni> -<AUni ws="qvm-x-akl">+café</AUni> -<AUni ws="qvm-x-ame">+café</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.110" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="011cb6b7-0952-4331-a184-e4d4138b2c6b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+café</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f4a55c88-3300-46d1-89be-0ef20996c836" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a3a7ff6b-3928-4bae-9fbf-e71fa5087d95" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +café 
\entryTyp root 
\gENG coffee 
\gSPN café 
\e +café 
\c N0 
\mp +FinalC 
\ach café / _# 
\ach cafe: / ~_# 
\akh café / _# 
\akh cafe: / ~_# 
\acl café / _# 
\acl cafe: / ~_# 
\akl café / _# 
\akl cafe: / ~_# 
\ame café / _# 
\ame cafe: / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="StStyle" guid="945e6502-615b-4863-a18c-111e4d6b36c6" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="7d2c80cd-af87-4d56-8337-cfd389b775bb" t="r" /> -</BasedOn> -<Context val="14" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Classified-Item</Uni> -</Name> -<Rules> -<Prop firstIndent="-9000" leadingIndent="9000" spaceBefore="2000"></Prop> -</Rules> -<Structure val="0" /> -<Type val="0" /> -<Usage> -<AUni ws="en">In a Classified Dictionary, the individual item paragraphs</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="CmDomainQ" guid="945ee553-e57f-43f2-9345-a75f92fb8471" ownerguid="c6c772af-7b6b-4393-b0da-5b4a329d3426"> -<ExampleWords> -<AUni ws="en">pool, stock, reserves</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the amount of something, such as fuel, that is available to be used?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="945f4af2-29c8-449e-a782-067994a2b367" ownerguid="f2d0fcc5-d521-4181-97e1-ce31ad81fdc5"> -<Form> -<AUni ws="qvm-x-ach">waylapa</AUni> -<AUni ws="qvm-x-acl">waylapa</AUni> -<AUni ws="qvm-x-akh">waylapa</AUni> -<AUni ws="qvm-x-akl">waylapa</AUni> -<AUni ws="qvm-x-ame">waylapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="946235f4-08ce-4e7f-bbd4-724022de7e8b" ownerguid="e28a8997-c1de-489b-9e34-d81a2349a530"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="94626b6f-6a4b-4c45-b7f2-7eab6f173940" ownerguid="9a189da3-4e52-4cad-b44b-d58cdadc7192"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="94657cc8-5002-4c4e-ae23-de9bb99d0f48" ownerguid="ecbdf1c5-9d7f-4446-b6a1-644a379a480b"> -<ExampleWords> -<AUni ws="en">cheap, low, inexpensive, great price, bargain, on sale, deal (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a price that seems low?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9466bf17-560e-46b6-998c-8d6d7cdebc77" ownerguid="eaaf6f47-ef7e-41ec-abd6-1980077664af"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="509c51b8-95ee-4dd0-8fdd-3628a6f1b401" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntryType" guid="9466d126-246e-400b-8bba-0703e09bc567" ownerguid="1ee09905-63dd-4c7a-a9bd-1d496743ccd6"> -<Abbreviation> -<AUni ws="en">say.</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">Any pithy phrasal expression of wisdom or truth; esp., an adage, proverb, or maxim.</Run> -</AStr> -</Description> -<Discussion> -<objsur guid="b6b1fed8-ea5e-11de-8d97-0013722f8dec" t="o" /> -</Discussion> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Saying</AUni> -</Name> -<ReverseAbbr> -<AUni ws="en">say. of</AUni> -</ReverseAbbr> -<ReverseName> -<AUni ws="en">Saying of</AUni> -</ReverseName> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="9467a1c4-d24a-48a6-aa7e-c351c2be356d" ownerguid="f7422014-f252-4852-91df-3743c9e88638"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="946a7f7f-b306-4da0-8a94-cfc1008292f7" ownerguid="30e6b42c-6bbf-4659-99e7-aa4b8e68c9ce"> -<ExampleWords> -<AUni ws="en">good, moral, blameless, decent, ethical, excellent, fine, high-minded, holy, honorable, just, pure, righteous, saintly, sanctified, upstanding, virtuous, worthy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is good?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="946ec21e-c106-4862-a742-fef9bbead297" ownerguid="00e25183-b413-425e-b6a1-cba79632e3ea"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">young.bull</AUni> -<AUni ws="es">torito</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7cca2586-fc04-4481-a670-60d64ed45f3d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="9470ae3d-5f93-4f80-a8d0-016e3a6b8af0" ownerguid="c33687dc-229a-4a5c-98f2-642d79a82f29"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">attic</AUni> -<AUni ws="es">altos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="84e4ae9e-c0c2-4be7-a55f-8c4ef3685756" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="94715029-68a9-4c90-a987-1a3294b6b07a" ownerguid="499691fd-d2e5-4781-ae2b-a09eebef1440"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">string</AUni> -<AUni ws="es">cuerda</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f772fe56-0a71-4efd-986c-cc71715132b1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="9479bd66-b3fa-48de-a925-7c3e4899678a" ownerguid="caf7c146-f61c-4d13-a5bd-c89f537b6682"> -<Form> -<AUni ws="qvm-x-ach">shaya</AUni> -<AUni ws="qvm-x-acl">shaya</AUni> -<AUni ws="qvm-x-akh">shaya</AUni> -<AUni ws="qvm-x-akl">shaya</AUni> -<AUni ws="qvm-x-ame">shaya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="947a6d33-bae4-4dc9-92d3-641847d5634b" ownerguid="475cecdc-0fdb-4617-a3ba-bab898261913"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="947c73ef-192d-4344-b079-7a904d76ac02" ownerguid="054e81ce-abd8-4069-989d-13e2fa58851c"> -<ExampleWords> -<AUni ws="en">show off, flash your money around, put on airs, vaunt yourself</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to showing off?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="947ece62-6ca2-4ac8-a84c-d2baa509eb59" ownerguid="bb82db52-e73c-4f14-8ceb-a59a14022102"> -<Form> -<AUni ws="qvm-x-ach">wawa</AUni> -<AUni ws="qvm-x-acl">wawa</AUni> -<AUni ws="qvm-x-akh">wawa</AUni> -<AUni ws="qvm-x-akl">wawa</AUni> -<AUni ws="qvm-x-ame">wawa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="947fc1ea-cbf2-438a-bcb7-1e116702698e" ownerguid="3934d975-76f9-4daf-b5f6-1451da8d67df"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.salt</AUni> -<AUni ws="es">salar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="67a07790-3a1e-43d0-a551-2af4180ad66d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="9483f1c8-e35e-444e-954d-347735049bd3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lagu:na</AUni> -<AUni ws="qvm-x-acl">lagu:na</AUni> -<AUni ws="qvm-x-akh">lagu:na</AUni> -<AUni ws="qvm-x-akl">lagu:na</AUni> -<AUni ws="qvm-x-ame">lagu:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+laguna</AUni> -<AUni ws="qvm-x-acl">+laguna</AUni> -<AUni ws="qvm-x-akh">+laguna</AUni> -<AUni ws="qvm-x-akl">+laguna</AUni> -<AUni ws="qvm-x-ame">+laguna</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.630" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3ee68483-1382-48b1-b82e-20b3bf0bc1be" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+laguna</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e5868556-ad77-45c9-9397-d29b0fb61f29" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="064f15bd-11f9-413a-938d-9c59816fd5e3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +laguna 
\entryTyp root 
\gENG lake 
\gSPN lago 
\e +laguna 
\c N0 
\ach lagu:na 
\akh lagu:na 
\acl lagu:na 
\akl lagu:na 
\ame lagu:na</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="948b4c75-b16a-4c32-8d6b-e4d42a4fc889" ownerguid="eceef2d1-1b9b-46b5-9aa8-a7aa1dd9b68d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hummingbird</AUni> -<AUni ws="es">picaflor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c4e3a323-847f-4fde-bf56-85539bf49fe8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="94904f8f-b165-451f-90aa-7ad546e67573" ownerguid="9e557906-cf40-42e2-9aee-925b95fd7733"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Num 31.11 Tsaynogpami runacunapa imaycantapis y uywancunatapis shunta shuntarcur apacärergan.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="94977fe2-68ac-4329-af93-7bbe6214f866" ownerguid="501dcdfc-ed38-44ad-a8bf-00e1d93b23ff"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="94999104-664c-4847-9ec9-dc53e5a84fae" ownerguid="cf93b8e0-9f28-4485-b9d6-22293ccd73ce"> -<ExampleWords> -<AUni ws="en">be lost, not know where you are, get lost, lose your way</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to losing your way?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="949a8288-6b13-444f-b1c4-500455d06269" ownerguid="1207a60d-d3f3-4dd3-b8dd-2a74e9d82c3a"> -<Form> -<AUni ws="qvm-x-ach">perfümi; perfümi</AUni> -<AUni ws="qvm-x-acl">perfümi; perfümi; perfüme</AUni> -<AUni ws="qvm-x-akh">perfümi; perfümi</AUni> -<AUni ws="qvm-x-akl">perfümi; perfümi; perfüme</AUni> -<AUni ws="qvm-x-ame">perfümi; perfümi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="949d0efe-c500-4f6e-8572-1ab36d191b48" ownerguid="b7c2be93-5cfe-44fa-a38d-447679d5f359"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="949dd43e-7023-4177-8dfb-d29c3153f4e3" ownerguid="e0c32642-7c51-4e23-a776-f63f2f2f936d"> -<ExampleWords> -<AUni ws="en">could go either way, borderline, there's a fifty-fifty chance, it's a toss-up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that two things are equally possible?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="949e9796-6a45-491b-8830-9b53d2c48998" ownerguid="47905104-632f-45bc-b18c-a689e514158f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="f942e9f6-5383-45d3-bf7c-c2acac03a5a5" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">small.box</AUni> -<AUni ws="es">cajita</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="65947d3b-a93f-4213-b985-c12a6e706cb3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="949eede2-53ae-493c-af19-422ca9087d33" ownerguid="99dd735d-a030-454c-9873-d8cac25e0cc3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fling</AUni> -<AUni ws="es">botar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cf93d82f-6a9f-4292-a3bb-f28bbb38e6a5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="94a0230c-08d9-40ee-b50e-5f80d45b7548" ownerguid="0296465a-25de-4af6-a122-376956b4b452"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John hit <me>.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">me, you, him, her, it, us, you, them</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What pronouns are used for the object of a sentence?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="94a2fa1c-ded9-4774-a4cd-3cfd1a7687fc" ownerguid="0fb54373-f990-4be9-8eb8-2277f4eb45af"> -<Form> -<AUni ws="qvm-x-ach">tulu</AUni> -<AUni ws="qvm-x-acl">tulu; tulu; tulo</AUni> -<AUni ws="qvm-x-akh">tulu</AUni> -<AUni ws="qvm-x-akl">tulu; tulu; tulo</AUni> -<AUni ws="qvm-x-ame">tulu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="94a41957-5520-42d0-92a0-e47e926e15e0" ownerguid="5a8ff7bf-fa7d-4e2e-8531-bc0b902facee"> -<Form> -<AUni ws="qvm-x-ach">tipi</AUni> -<AUni ws="qvm-x-acl">tipi; tipe</AUni> -<AUni ws="qvm-x-akh">tipi</AUni> -<AUni ws="qvm-x-akl">tipi; tipe</AUni> -<AUni ws="qvm-x-ame">tipi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="94a87e52-b74b-4299-885c-011c83541b9e" ownerguid="d27db482-9b02-4441-9078-cccc914c7d99"> -<Form> -<AUni ws="qvm-x-ach">mercädu</AUni> -<AUni ws="qvm-x-acl">mercädu; mercädu; mercädo</AUni> -<AUni ws="qvm-x-akh">mercädu</AUni> -<AUni ws="qvm-x-akl">mercädu; mercädu; mercädo</AUni> -<AUni ws="qvm-x-ame">mercädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="94ac6a47-c755-4a63-a296-b1129a2a905c" ownerguid="101c16f8-ec76-4ec7-895a-fd814fef51dd"> -<ExampleWords> -<AUni ws="en">resuscitate, acupuncture, blood transfusion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a particular type of treatment?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="94ad2e38-b17f-439d-a2ea-f9d344586d4f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">racta</AUni> -<AUni ws="qvm-x-acl">racta</AUni> -<AUni ws="qvm-x-akh">rakta</AUni> -<AUni ws="qvm-x-akl">rakta</AUni> -<AUni ws="qvm-x-ame">rakta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rakta.v</AUni> -<AUni ws="qvm-x-acl">*rakta.v</AUni> -<AUni ws="qvm-x-akh">*rakta.v</AUni> -<AUni ws="qvm-x-akl">*rakta.v</AUni> -<AUni ws="qvm-x-ame">*rakta.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.244" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e6743663-5f88-4abb-843a-c420d485f68c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rakta.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="57efcf39-b43c-4ccc-b359-d3e1ec700a82" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="846fa9e6-c821-4480-9778-aa19e89b1849" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rakta.v 
\entryTyp root 
\gENG thick 
\gSPN grueso 
\e *rakta.v 
\c V1 
\ach racta 
\akh rakta 
\acl racta 
\akl rakta 
\ame rakta 
\i PRO 31.21 Raju rataptinpis manami laquicuntsu wayincho cagcunata ractay ractay jatipar.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="94ae196f-4dc0-4168-98c2-f14467cbda96"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ashac</AUni> -<AUni ws="qvm-x-acl">ashac</AUni> -<AUni ws="qvm-x-akh">ashak</AUni> -<AUni ws="qvm-x-akl">ashak</AUni> -<AUni ws="qvm-x-ame">ashak</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ashak</AUni> -<AUni ws="qvm-x-acl">*ashak</AUni> -<AUni ws="qvm-x-akh">*ashak</AUni> -<AUni ws="qvm-x-akl">*ashak</AUni> -<AUni ws="qvm-x-ame">*ashak</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.840" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1e69cb1d-b951-49aa-9cfd-6770b0adf536" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ashak</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="19636687-6b9e-4e70-9a81-27e59be353de" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="df6a9d18-7fa0-4e47-a5fd-1a490c0777d8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ashak 
\entryTyp root 
\gENG lively 
\gSPN ágil 
\e *ashak 
\c N0 
\mp +FinalC 
\ach ashac 
\akh ashak 
\acl ashac 
\akl ashak 
\ame ashak</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="94af09fa-ff23-433b-a881-ceaca87d9d18" ownerguid="f7706644-542f-4fcb-b8e1-e91d04c8032a"> -<Abbreviation> -<AUni ws="en">2.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.32" /> -<DateModified val="2022-9-23 16:55:8.32" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being weak.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79M Strong, Weak</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Weak</AUni> -</Name> -<Questions> -<objsur guid="e3269b3b-ed73-4aa4-8a2d-94fb498af043" t="o" /> -<objsur guid="49d23a4a-2c93-4aac-b62f-11d5714aa47b" t="o" /> -<objsur guid="3a97e94d-0a5a-44e0-893e-e92921011156" t="o" /> -<objsur guid="2bb89101-d907-4fd2-b037-d2f940cd9c5b" t="o" /> -<objsur guid="0f6c93de-b869-4870-bd61-1a5338745147" t="o" /> -<objsur guid="52e063df-f001-4455-95a2-f33a3b518b62" t="o" /> -<objsur guid="02a5f408-af54-4570-9635-315548416f2e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="94b08f1d-5796-48a5-879a-c4d6fbf8a7b2" ownerguid="e7caa24f-155d-47cd-946d-cc0d06dfc764"> -<ExampleWords> -<AUni ws="en">love (v), like, attached, care about, cherish, be close, feel friendly toward, favor, hold in favor, feel favorable toward, be fond of, wish someone well, hope things turn out well for someone, be partial to, be enshrined in your heart</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to loving someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="94b13808-6b7c-4c34-bb1c-d6b7042d5c50" ownerguid="34f9b8b3-0cef-477d-b7fb-2a1ceec20b95"> -<Form> -<AUni ws="qvm-x-ach">muru</AUni> -<AUni ws="qvm-x-acl">muru; muru; muro</AUni> -<AUni ws="qvm-x-akh">muru</AUni> -<AUni ws="qvm-x-akl">muru; muru; muro</AUni> -<AUni ws="qvm-x-ame">muru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PunctuationForm" guid="94b1e0e9-5365-4697-bd29-1944e0401b92"> -<Form> -<Str> -<Run ws="en">3P</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="94b22b4c-1618-490a-ad38-d6fecd1881b1" ownerguid="edbfc928-049c-4cb7-8c88-8e8af38287c7"> -<ExampleWords> -<AUni ws="en">be madly in love, be head over heels in love, infatuated, have a crush on, be mad about, be crazy about, be besotted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer loving someone very much?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="94b58705-8a11-40a4-bef3-496594c01c13"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">palanca</AUni> -<AUni ws="qvm-x-acl">palanca</AUni> -<AUni ws="qvm-x-akh">palanca</AUni> -<AUni ws="qvm-x-akl">palanca</AUni> -<AUni ws="qvm-x-ame">palanca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+palanca</AUni> -<AUni ws="qvm-x-acl">+palanca</AUni> -<AUni ws="qvm-x-akh">+palanca</AUni> -<AUni ws="qvm-x-akl">+palanca</AUni> -<AUni ws="qvm-x-ame">+palanca</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.658" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9251771f-ead3-4610-9f02-829f7425b21a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+palanca</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b83a9c4f-fc00-486c-82d1-e4fd0cc87e35" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8f77b757-2ee1-492c-b3c9-aedd5ac165ee" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +palanca 
\entryTyp root 
\gENG 
\gSPN 
\e +palanca 
\c N0 
\ach palanca 
\akh palanca 
\acl palanca 
\akl palanca 
\ame palanca 
\i 2CH 26.15 Tsay mäquinacunawanmi jatusag rumicunata y flëchacunata palancaypa jitatsipäcog.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="94b6ac91-a407-4e98-bb20-3f0cb54541ef" ownerguid="3ac14d51-6820-4ca5-9551-bde7ff823cec"> -<Form> -<AUni ws="qvm-x-ach">rawa</AUni> -<AUni ws="qvm-x-acl">rawa</AUni> -<AUni ws="qvm-x-akh">rawa</AUni> -<AUni ws="qvm-x-akl">rawa</AUni> -<AUni ws="qvm-x-ame">rawa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="94b86c1a-e52b-4923-a48b-eb0fe7a05512" ownerguid="6ea13b69-b2a8-41f9-b0bc-14316ebc5118"> -<ExampleWords> -<AUni ws="en">not understandable, inscrutable, unfathomable, incomprehensible, inconceivable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that cannot be understood?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="94bcde76-338f-4616-824c-61887def1379" ownerguid="5e3bb9e5-fd70-4c5a-95a0-938bc4876a47"> -<ExampleWords> -<AUni ws="en">expect, feel satisfied, feel dissatisfied, expect with certainty, expect uncertainly, be looking at, anticipate, await, suspense</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to how a person thinks about the future?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="94bd3921-26b4-4c16-9783-a85a29d6ca7f" ownerguid="aa0a352b-8de8-4686-9247-a6b084cf154f"> -<Form> -<AUni ws="qvm-x-ach">upsha</AUni> -<AUni ws="qvm-x-acl">upsha</AUni> -<AUni ws="qvm-x-akh">upsha</AUni> -<AUni ws="qvm-x-akl">upsha</AUni> -<AUni ws="qvm-x-ame">upsha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="94bdf146-9a96-4c6b-9f3e-e90085f3d166" ownerguid="97cc9e37-cfac-4c4f-a99b-f302763bac01"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">April</AUni> -<AUni ws="es">abril</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8ae35b9e-50bc-427c-8c12-b633575f5bff" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="94be3d8a-5869-4d28-882d-d06f438abfe4" ownerguid="f996e144-02df-417b-8d67-c2b1adba1085"> -<Form> -<AUni ws="qvm-x-ach">afila</AUni> -<AUni ws="qvm-x-acl">afila</AUni> -<AUni ws="qvm-x-akh">afila</AUni> -<AUni ws="qvm-x-akl">afila</AUni> -<AUni ws="qvm-x-ame">afila</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="94bf8d14-f28c-49f5-a015-93f0b1ef9642" ownerguid="2e2a17ba-9d81-4a3d-8af5-96c8f0e39e7e"> -<ExampleWords> -<AUni ws="en">store, put it away, stash it away</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used of storing wealth?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="94c01314-2acc-45d2-9360-05f56f502bd0" ownerguid="586ff3ab-1bb6-4d14-8340-7fed4aa347e4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="94c0ffa5-00ee-4294-843f-f33af76f43fc" ownerguid="8e1ff524-21fe-4f7a-b54f-6290688c160d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="3028bda7-2095-48d2-886d-435eb4c698f3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="94c2f494-8a6e-4418-a96b-f80635cd0b31" ownerguid="4ba3ec62-cf2f-4198-a08e-4f4ed4978c28"> -<Form> -<AUni ws="qvm-x-ach">bajäda</AUni> -<AUni ws="qvm-x-acl">bajäda</AUni> -<AUni ws="qvm-x-akh">bajäda</AUni> -<AUni ws="qvm-x-akl">bajäda</AUni> -<AUni ws="qvm-x-ame">bajäda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="94c404f5-8757-4339-86c4-0dfdd5abb678" ownerguid="cba1f6cc-58ac-4d09-aa6a-1661f5945787"> -<ExampleWords> -<AUni ws="en">relevant, pertinent, clear, clearly, obvious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a clear connection between two things?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="94c4959c-ba6d-4301-b62c-6d8764e7ce9f" ownerguid="86fe101f-30e2-477d-8931-ddf85b9af83e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cobra</AUni> -<AUni ws="es">cobra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ade061f6-d8fb-4db8-a03a-f0cbdb94cf15" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="94c85502-f17e-43e0-b340-bf28970d9817" ownerguid="78fa8e5e-9d52-47be-99df-37877922ade4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="94cad4ca-c2ec-4ff3-b9b1-11107549941d" ownerguid="a72ca6f7-e389-408a-8276-fec4d60a3a56"> -<Abbreviation> -<AUni ws="en">9.1.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.680" /> -<DateModified val="2022-9-23 16:55:8.680" /> -<Description> -<AStr ws="en"> -<Run ws="en">Attributes often belong to a class of attributes (shape = straight, curved) or to a scale (length = long, short). The class or scale can sometimes be included in the expression, but does not mark the proposition itself. (The towel <feels> damp. The box <weighs> five kilos.)</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Attribution</AUni> -</Name> -<Questions> -<objsur guid="885da5c7-3b47-40a4-9887-e914fe1ad5db" t="o" /> -<objsur guid="28578ad1-e574-4812-8aa4-3bc9834c155c" t="o" /> -<objsur guid="fea98c19-3374-4eea-ace8-4f438c5661e1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="94cb5ccc-a2b3-4b78-b8d1-0334dc5aabd4" ownerguid="06cb2024-5f7b-467c-b32c-ef4c56030ac0"> -<ExampleWords> -<AUni ws="en">tell time, keep time, mark time, measure time, beat time, register the time, to chronicle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to telling time?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="94cc3d19-04ce-4b5e-9cbb-a6e9641d62db" ownerguid="99a01c0d-9892-49a9-bfef-c779a2c3eab9"> -<Form> -<AUni ws="qvm-x-ach">cucharón; cucharon</AUni> -<AUni ws="qvm-x-acl">cucharón; cucharon</AUni> -<AUni ws="qvm-x-akh">cucharón; cucharon</AUni> -<AUni ws="qvm-x-akl">cucharón; cucharon</AUni> -<AUni ws="qvm-x-ame">cucharón; cucharon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="94d12ed5-62fe-43f4-a502-5cee13776982" ownerguid="a668d97a-2871-419e-92db-24117893702f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">awl</AUni> -<AUni ws="es">alesna</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="02cc40f4-7d14-47d2-8f6f-de90c70a9778" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="94d2ee17-dadd-47df-9a77-e5b927a6dedc" ownerguid="19d54c2f-ae03-4cbc-9b7e-57292f92fbc1"> -<ExampleWords> -<AUni ws="en">run after, chase, in pursuit, pursue, be on someone's heels, chase after, go after, give chase, come after, be after, hunt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to pursuing someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="94d354b8-7741-4cfd-b1dd-021bd0714300" ownerguid="54f59b23-a2e8-4bfc-9da2-7dd7c37d2a47"> -<ExampleWords> -<AUni ws="en">be... -en</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) resulting state (resultative): action in the past produces a state that persists into the present.</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="94d38651-9ffe-46b4-8414-87b23f1f7ae8" ownerguid="bbc5b3a2-4c6e-4d07-849b-4d616615a794"> -<ExampleWords> -<AUni ws="en">earlier, foregoing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that existed or happened in the past?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="94d56eac-fc40-4ff5-9fc9-ef81c7d43de8" ownerguid="f0b48c79-b15e-4e3f-a722-74947eebd0d2"> -<Form> -<AUni ws="qvm-x-ach">almuerzu; almuerzo</AUni> -<AUni ws="qvm-x-acl">almuerzu; almuerzu; almuerzo</AUni> -<AUni ws="qvm-x-akh">almuerzu; almuerzo</AUni> -<AUni ws="qvm-x-akl">almuerzu; almuerzu; almuerzo</AUni> -<AUni ws="qvm-x-ame">almuerzu; almuerzo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="94d652da-65fc-4ae8-994e-8ece5f57f05a" ownerguid="87f728c9-6808-47ea-b023-95627b8077ec"> -<Form> -<AUni ws="qvm-x-ach">masma</AUni> -<AUni ws="qvm-x-acl">masma</AUni> -<AUni ws="qvm-x-akh">masma</AUni> -<AUni ws="qvm-x-akl">masma</AUni> -<AUni ws="qvm-x-ame">masma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="94d817a9-07e3-4a8d-9685-ab9b5ffc5ea8" ownerguid="a135776f-8f05-4910-9dec-d47a74ae9869"> -<Form> -<AUni ws="qvm-x-ach">despaciu; despacio</AUni> -<AUni ws="qvm-x-acl">despaciu; despacio; despaciu</AUni> -<AUni ws="qvm-x-akh">despaciu; despacio</AUni> -<AUni ws="qvm-x-akl">despaciu; despacio; despaciu</AUni> -<AUni ws="qvm-x-ame">despaciu; despacio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="94dcfdd0-a59c-44df-a512-684540e801e8" ownerguid="624cc5cd-3751-4de6-a202-0d029ab8a53f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mention/insult</AUni> -<AUni ws="es">mentar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d9dadfef-c280-4de9-9268-c77b80fb2e83" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="94e188d4-db09-4c38-9a7f-b99be42fb5b3" ownerguid="751731b9-43be-4f3d-a968-bdc8fdb4e286"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="1dc95887-4ab3-49bc-9c6b-bb4718df80bb" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="ad691732-4d82-4732-99c0-c28313dd25d0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="94e5ea59-3346-42cf-ad13-04f0029f72c1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aypu</AUni> -<AUni ws="qvm-x-acl">aypu; aypo</AUni> -<AUni ws="qvm-x-akh">aypu</AUni> -<AUni ws="qvm-x-akl">aypu; aypo</AUni> -<AUni ws="qvm-x-ame">aypu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aypu</AUni> -<AUni ws="qvm-x-acl">*aypu</AUni> -<AUni ws="qvm-x-akh">*aypu</AUni> -<AUni ws="qvm-x-akl">*aypu</AUni> -<AUni ws="qvm-x-ame">*aypu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.908" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="636c6c29-b2c4-4406-b3db-e671b81d6218" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aypu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aa90b3d3-5509-4ca3-b5c0-a295f5d62ec8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="28cf3211-cf46-45e0-94b6-f423e8e8c1f1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aypu 
\entryTyp root 
\gENG distribute 
\gSPN repartir 
\e *aypu 
\c V2 
\ach aypu 
\akh aypu 
\acl aypu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl aypo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl aypu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl aypo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame aypu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="94e8307a-2b32-42d5-ac24-dfa3bd47576c" ownerguid="ac527685-f31d-42f3-81bd-97221a01c7ef"> -<ExampleWords> -<AUni ws="en">scale, full-scale, life-size</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the size of a model in comparison to the size of the real thing?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="94e84289-507e-4e50-a762-f74a6d40b45f" ownerguid="eda80639-3bd1-4f19-90d3-a6701e15e927"> -<Form> -<AUni ws="qvm-x-ach">nisida; nisidä</AUni> -<AUni ws="qvm-x-acl">nisida; nisidä</AUni> -<AUni ws="qvm-x-akh">nisida; nisidä</AUni> -<AUni ws="qvm-x-akl">nisida; nisidä</AUni> -<AUni ws="qvm-x-ame">nisida; nisidä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="94e853e1-e17f-41b1-aaca-9148ee43e9db" ownerguid="c13ca251-6103-4475-85af-933311923f2c"> -<ExampleWords> -<AUni ws="en">above, higher than, over, overhang, up above, super-, supra-, on high</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is above something else?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="94ea6348-4a78-4254-9d84-1194e3579ff6" ownerguid="04272a3a-e644-4701-8b40-5b50e4775dde"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">na</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">na</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">na</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">na</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">na</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7a9a0db9-5eb5-414c-9dd3-907a54abc86b" t="r" /> -</Morph> -<Msa> -<objsur guid="a91771ad-8785-4e3e-b6f8-793820e3a8bd" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="94ecd265-98cd-4a61-bb71-1f526310c1c8" ownerguid="3e249782-7687-4f36-913b-87c2fde74739"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="49879410-4626-4f3c-96c0-d5a48f199317" t="r" /> -</Morph> -<Msa> -<objsur guid="3b914428-8cc9-47af-9f9c-c2de114360c0" t="r" /> -</Msa> -<Sense> -<objsur guid="3844b05a-8c3e-4fb1-beac-615795c4efc0" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="94eec3c2-abc3-48d6-b3a8-e3e7ebb7ac98"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">seis</AUni> -<AUni ws="qvm-x-acl">seis</AUni> -<AUni ws="qvm-x-akh">seis</AUni> -<AUni ws="qvm-x-akl">seis</AUni> -<AUni ws="qvm-x-ame">seis</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+seis</AUni> -<AUni ws="qvm-x-acl">+seis</AUni> -<AUni ws="qvm-x-akh">+seis</AUni> -<AUni ws="qvm-x-akl">+seis</AUni> -<AUni ws="qvm-x-ame">+seis</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.480" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3cc1544a-63ad-4f10-b44f-94d88a147db2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+seis</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bc052c48-d3ad-43b6-a52c-5fdfddda49fc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7b0f7d96-3188-4e66-b22f-f7efd463f80d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +seis 
\entryTyp root 
\gENG six 
\gSPN seis 
\e +seis 
\c N0 
\mp +FinalC 
\ach seis 
\akh seis 
\acl seis 
\akl seis 
\ame seis</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="94efc769-1ab7-4782-a034-0513296983ab" ownerguid="ebbb956c-b015-40c0-9656-e4c077c4f8e6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">gargu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">gargu; gargo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qarqu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qarqu; qarqo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qarqu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2232ab14-ff9d-4403-b432-21884e84369c" t="r" /> -</Morph> -<Msa> -<objsur guid="d2d2bfb6-5ff7-4b48-831a-c27cb6b0f51e" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="94f29c8c-83fd-41ee-bbc7-5a240ef7fc7b" ownerguid="3596a5ba-f677-4047-b407-0980dfa44bc8"> -<Form> -<AUni ws="qvm-x-ach">centïmetru</AUni> -<AUni ws="qvm-x-acl">centïmetru; centïmetru; centïmetro</AUni> -<AUni ws="qvm-x-akh">centïmetru</AUni> -<AUni ws="qvm-x-akl">centïmetru; centïmetru; centïmetro</AUni> -<AUni ws="qvm-x-ame">centïmetru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="94f406f8-a186-4f07-ab69-7457479fd6a5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gontsu</AUni> -<AUni ws="qvm-x-acl">gontsu; gontsu; gontso</AUni> -<AUni ws="qvm-x-akh">qontsu</AUni> -<AUni ws="qvm-x-akl">qontsu; qontsu; qontso</AUni> -<AUni ws="qvm-x-ame">quntsu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qunchu</AUni> -<AUni ws="qvm-x-acl">*qunchu</AUni> -<AUni ws="qvm-x-akh">*qunchu</AUni> -<AUni ws="qvm-x-akl">*qunchu</AUni> -<AUni ws="qvm-x-ame">*qunchu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.851" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f71a1961-9498-4647-a856-8b0628da101a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qunchu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4073645e-af63-4f01-814f-0f8f3f376227" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0a696070-42b8-4b5f-b7cc-31b69f2f2d25" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qunchu 
\entryTyp root 
\gENG 
\gSPN levadura 
\e *qunchu 
\c N0 
\ach gontsu 
\akh qontsu 
\acl gontsu / _# 
\acl gontsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gontso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qontsu / _# 
\akl qontsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qontso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame quntsu 
\i EZK 23.34 Gontsuntintami chipyag upunquipag. Nircurmi tsay cöpata paquirir chuchuyquitapis pishtaypa pishtar ushanquipag.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="94f50cb8-9a59-42cc-9891-247cc3de7428" ownerguid="76a06e45-99f7-446f-a2e8-e23edf6064bd"> -<Abbreviation> -<AUni ws="en">8.3.7.8.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to metal rusting--when metal becomes bad.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Rust</AUni> -</Name> -<Questions> -<objsur guid="9df21a5c-88d4-4911-87cc-194864d043ef" t="o" /> -<objsur guid="34de6a0b-a295-4d54-8dcd-f32aa4a4ed58" t="o" /> -<objsur guid="e94f52c8-63dc-4341-81f6-42c1458e3f87" t="o" /> -<objsur guid="62264b3c-e8b5-46f4-b3dc-f2aae51ecd78" t="o" /> -<objsur guid="e99ba5d2-8815-404c-983e-3ed8a4f5a09c" t="o" /> -<objsur guid="efc5a081-3912-4e9a-b3d3-df9e4e2310aa" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="94f54b59-6056-4325-bb40-a52894ef9e6b" ownerguid="ca91e41a-81c3-4c96-87e6-f67477fcd686"> -<ExampleWords> -<AUni ws="en">nurse, nursemaid, guardian, nanny, babysitter, sitter, child minder</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to someone who cares for a child?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="94f573ff-29f0-42ae-b1d9-f882823b2935" ownerguid="7b513a02-c3ae-4243-9410-16854d911258"> -<Abbreviation> -<AUni ws="en">9.7.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.728" /> -<DateModified val="2022-9-23 16:55:8.728" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for common nicknames--an additional name given to a person later in life, often descriptive. Also include general names used to call or refer to someone when you don't know their name</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Nickname</AUni> -</Name> -<Questions> -<objsur guid="b4cc0f32-10d5-4d14-a438-19985a31b8e8" t="o" /> -<objsur guid="a4cf668d-12d0-4d26-b0e3-85cd7c1f21ce" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="94f6e9c5-3517-440d-835b-53dacc3d6c4d" ownerguid="3212d12a-a8dc-469e-811b-f685550609cc"> -<Form> -<AUni ws="qvm-x-ach">ilapa</AUni> -<AUni ws="qvm-x-acl">ilapa</AUni> -<AUni ws="qvm-x-akh">ilapa</AUni> -<AUni ws="qvm-x-akl">ilapa</AUni> -<AUni ws="qvm-x-ame">ilapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="94f82e12-dfa2-4283-9b07-7b89f7c5d649" ownerguid="ab8f12fb-57b0-4d61-8ae0-50d7cbc412df"> -<ExampleWords> -<AUni ws="en">ice axe, snow shovel, snowplow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What tools do people use with snow?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="94f8dedc-fe96-4e40-8d50-78fefd4feb56" ownerguid="93909cd8-593e-42bd-9c04-20e4d34a62e5"> -<Form> -<AUni ws="qvm-x-ach">orguysha</AUni> -<AUni ws="qvm-x-acl">orguysha</AUni> -<AUni ws="qvm-x-akh">orquysha</AUni> -<AUni ws="qvm-x-akl">orquysha</AUni> -<AUni ws="qvm-x-ame">urquysha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="94f919c2-bf8b-4ae5-a611-8c0cd4d7a5d2" ownerguid="577017b0-ae87-4fa2-a51b-4f430497be75"> -<Abbreviation> -<AUni ws="en">4.5.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.253" /> -<DateModified val="2022-9-23 16:55:8.253" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to commanding someone to do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33F' Command, Order</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Command</AUni> -</Name> -<Questions> -<objsur guid="77e8cdb9-1148-4380-9fee-ded3ff43029e" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="5ea9301a-9906-4e81-97cf-48ee95a54c63" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="94fbf482-956b-4adc-aa14-401039e1d4b4"> -<Analyses> -<objsur guid="56cb7acc-108f-44ab-a7dc-d995bf6db8c5" t="o" /> -</Analyses> -<Checksum val="-1018201436" /> -<Form> -<AUni ws="qvm-x-akh">rikapäkushqayki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="94fe65b8-1f0e-4c53-bf0e-a85014c0c4a8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">minu:tu</AUni> -<AUni ws="qvm-x-acl">minu:tu; minu:tu; minu:to</AUni> -<AUni ws="qvm-x-akh">minu:tu</AUni> -<AUni ws="qvm-x-akl">minu:tu; minu:tu; minu:to</AUni> -<AUni ws="qvm-x-ame">minu:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+minuto</AUni> -<AUni ws="qvm-x-acl">+minuto</AUni> -<AUni ws="qvm-x-akh">+minuto</AUni> -<AUni ws="qvm-x-akl">+minuto</AUni> -<AUni ws="qvm-x-ame">+minuto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.446" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8d300024-38b3-44c8-9161-ef497d6f8025" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+minuto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="68f1a77b-3b44-45e5-bc0c-54188b03a277" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="23ab5dd0-b6fd-4565-9924-0b681c7b353d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +minuto 
\entryTyp root 
\gENG minute 
\gSPN minuto 
\e +minuto 
\c N0 
\ach minu:tu 
\akh minu:tu 
\acl minu:tu / _# 
\acl minu:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl minu:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl minu:tu / _# 
\akl minu:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl minu:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame minu:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="94ff584a-197a-4ac7-b3ba-cc8538172c6a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">te:la</AUni> -<AUni ws="qvm-x-acl">te:la</AUni> -<AUni ws="qvm-x-akh">te:la</AUni> -<AUni ws="qvm-x-akl">te:la</AUni> -<AUni ws="qvm-x-ame">te:la</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tela</AUni> -<AUni ws="qvm-x-acl">+tela</AUni> -<AUni ws="qvm-x-akh">+tela</AUni> -<AUni ws="qvm-x-akl">+tela</AUni> -<AUni ws="qvm-x-ame">+tela</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.855" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c6cd263a-4db6-42ad-bd4e-848b96fe948c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tela</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ae0b1748-91f6-415e-837f-2c10928e43d3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0f23a4fb-4d22-431d-a9aa-80592bd2e095" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tela 
\entryTyp root 
\gENG material 
\gSPN tela 
\e +tela 
\c N0 
\ach te:la 
\akh te:la 
\acl te:la 
\akl te:la 
\ame te:la</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="95049019-a5ea-4ac1-a081-cbcf24a7723c" ownerguid="2ba2f762-b6d4-4a4c-9119-aab9e3772316"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">here.it.is</AUni> -<AUni ws="es">acá.está</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c59fb6a7-a6eb-4ebe-bfa8-fd18a5089b55" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="95056e7f-4c52-418e-8183-91406cb8d212" ownerguid="96b1e8c9-fa1d-4704-bfdc-6c9f79b24241"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="950625cc-d007-4bac-9bb4-ec2d9bbf8f4d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuenta</AUni> -<AUni ws="qvm-x-acl">cuenta</AUni> -<AUni ws="qvm-x-akh">cuenta</AUni> -<AUni ws="qvm-x-akl">cuenta</AUni> -<AUni ws="qvm-x-ame">cuenta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuenta</AUni> -<AUni ws="qvm-x-acl">+cuenta</AUni> -<AUni ws="qvm-x-akh">+cuenta</AUni> -<AUni ws="qvm-x-akl">+cuenta</AUni> -<AUni ws="qvm-x-ame">+cuenta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.234" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fc4fd1a1-6f36-42af-9355-9da21e1d4370" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuenta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="62ceb696-99c6-4d76-a394-e6beda85d262" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5d15655e-39a4-44c1-8075-dbfbd6402132" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuenta 
\entryTyp root 
\gENG reckoning 
\gSPN cuenta 
\e +cuenta 
\c N0 
\ach cuenta 
\akh cuenta 
\acl cuenta 
\akl cuenta 
\ame cuenta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="9507a1e1-aed5-4ed7-a8c8-f2099bc7f7c1" ownerguid="7912c7a9-b5cb-49d3-aec1-1036d4bf5aa1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">manners</AUni> -<AUni ws="es">manera</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="47403e3e-c778-4f3c-aefb-54ea6d418ee8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="950a7396-72b3-450d-ac68-30f7548b6787" ownerguid="2aefc6aa-aeb5-4f42-bf7c-d95b5ec07604"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hang</AUni> -<AUni ws="es">colgar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3f98f2bc-1d37-4f91-9a94-f189ffd87174" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="95123d19-a47d-48e0-820c-f81fda09d646" ownerguid="36934fab-c0ed-4f25-a387-e1cca26b2401"> -<ExampleWords> -<AUni ws="en">low in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that contains a little of a particular substance?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="95131a0d-bc6d-4615-ae2d-ebcb99748bff" ownerguid="7b761534-c8e7-4ea3-bf57-d83c05fba7fa"> -<Form> -<AUni ws="qvm-x-ach">ragau</AUni> -<AUni ws="qvm-x-acl">ragau; ragau; ragao</AUni> -<AUni ws="qvm-x-akh">raqaw</AUni> -<AUni ws="qvm-x-akl">raqaw; raqaw; raqao</AUni> -<AUni ws="qvm-x-ame">raqaw</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="951861a4-f7f5-4677-aab8-f262cc753df5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">juclatsa</AUni> -<AUni ws="qvm-x-acl">juclatsa</AUni> -<AUni ws="qvm-x-akh">juklatsa</AUni> -<AUni ws="qvm-x-akl">juklatsa</AUni> -<AUni ws="qvm-x-ame">huklatsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hukllacha</AUni> -<AUni ws="qvm-x-acl">*hukllacha</AUni> -<AUni ws="qvm-x-akh">*hukllacha</AUni> -<AUni ws="qvm-x-akl">*hukllacha</AUni> -<AUni ws="qvm-x-ame">*hukllacha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.751" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8e06ce54-a51f-4b26-9a07-d1618ac8c4a4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hukllacha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="933b0045-96fe-4fb5-8d09-2b693257ccfb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="07c98a2f-aebf-41f0-8ca0-aa6cc3abf137" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hukllacha 
\entryTyp root 
\gENG 
\gSPN 
\e *hukllacha 
\c V1 
\ach juclatsa 
\akh juklatsa 
\acl juclatsa 
\akl juklatsa 
\ame huklatsa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="951a3b21-0e06-4327-afb4-c95ac815a304" ownerguid="89051536-adc6-4800-9fd8-49c358265472"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JER 5.24 Tsaynogpis manami tantiyapäcushcanquitsu micuyniquicunata shuntanayquipagpis usyätsimushgäta.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="951c56b5-c6b9-41d7-944c-d28031f49a2f" ownerguid="84a8d541-9571-4ce9-abea-bd9cccb8dbf0"> -<ExampleWords> -<AUni ws="en">floor, story, level</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the levels in a building?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="95230685-5c11-4b86-9180-e41d26810f20" ownerguid="4bf411b7-2b5b-4673-b116-0e6c31fbd08a"> -<ExampleWords> -<AUni ws="en">light, sunshine, gleam (n), glare (n), glow (n), radiance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to light?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9524a77a-ecea-4991-8c0c-6515cbe268d0" ownerguid="21a284ab-b9a3-42c8-8fb9-96aff1e1fe8f"> -<ExampleWords> -<AUni ws="en">toward, towards, away from, inward, inwards, outward, outwards</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is moving toward something else?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9529220b-1951-47f8-8eea-af88eb21953f" ownerguid="91068787-99b8-4670-8742-22bb43df37c6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cross</AUni> -<AUni ws="es">cruzada</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a603c12d-3536-499c-a233-0bfe578ac5d7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="952af6bb-942a-4e2d-b6fc-4e105a1e6369"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uchunayla</AUni> -<AUni ws="qvm-x-acl">uchunayla</AUni> -<AUni ws="qvm-x-akh">uchunayla</AUni> -<AUni ws="qvm-x-akl">uchunayla</AUni> -<AUni ws="qvm-x-ame">uchunayla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*utrunaylla</AUni> -<AUni ws="qvm-x-acl">*utrunaylla</AUni> -<AUni ws="qvm-x-akh">*utrunaylla</AUni> -<AUni ws="qvm-x-akl">*utrunaylla</AUni> -<AUni ws="qvm-x-ame">*utrunaylla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.310" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ebbd0de5-beeb-4bfc-b395-9953e7f1fbc1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*utrunaylla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ebaf5c56-75e2-4aab-9a21-25b72cc10485" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d06cdf08-eb4e-482c-be6f-60bedc8b7093" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *utrunaylla 
\entryTyp root 
\gENG little 
\gSPN chico 
\e *utrunaylla 
\c R0 
\ach uchunayla 
\akh uchunayla 
\acl uchunayla 
\akl uchunayla 
\ame uchunayla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="952bdaa1-8cb6-4bb2-9645-582195db4c19"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">junash</AUni> -<AUni ws="qvm-x-acl">junash</AUni> -<AUni ws="qvm-x-akh">junash</AUni> -<AUni ws="qvm-x-akl">junash</AUni> -<AUni ws="qvm-x-ame">hunash</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hunash</AUni> -<AUni ws="qvm-x-acl">*hunash</AUni> -<AUni ws="qvm-x-akh">*hunash</AUni> -<AUni ws="qvm-x-akl">*hunash</AUni> -<AUni ws="qvm-x-ame">*hunash</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.761" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3686382b-325a-420a-9cdd-0765c5d1a0b8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hunash</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ebb644b3-c6cd-4cad-8d38-8274f2fd1824" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ea83c0ea-709f-403e-8669-178a4436e627" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hunash 
\entryTyp root 
\gENG attic 
\gSPN altos 
\e *hunash 
\c N0 
\mp +FinalC 
\ach junash 
\akh junash 
\acl junash 
\akl junash 
\ame hunash</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="952e9876-3cc6-478c-b3ff-454f9cea2cb7" ownerguid="8cb720fd-07b9-4766-b12f-938b786413fe"> -<Form> -<AUni ws="qvm-x-ach">shulya</AUni> -<AUni ws="qvm-x-acl">shulya</AUni> -<AUni ws="qvm-x-akh">shulya</AUni> -<AUni ws="qvm-x-akl">shulya</AUni> -<AUni ws="qvm-x-ame">shulya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="95315cd7-fc3b-4467-af09-705d1c964552"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pinta</AUni> -<AUni ws="qvm-x-acl">pinta</AUni> -<AUni ws="qvm-x-akh">pinta</AUni> -<AUni ws="qvm-x-akl">pinta</AUni> -<AUni ws="qvm-x-ame">pinta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pintar</AUni> -<AUni ws="qvm-x-acl">+pintar</AUni> -<AUni ws="qvm-x-akh">+pintar</AUni> -<AUni ws="qvm-x-akl">+pintar</AUni> -<AUni ws="qvm-x-ame">+pintar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.840" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1eac5b4a-916f-41b8-9a5a-0ff246157159" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pintar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="06327adc-9fd2-4683-a5b7-4d7d4d802bdb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="009d9531-822c-45d4-9cc8-4b0bc9a39b94" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pintar 
\entryTyp root 
\gENG paint 
\gSPN pintar 
\e +pintar 
\c V1 
\ach pinta 
\akh pinta 
\acl pinta 
\akl pinta 
\ame pinta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="95319f0f-bd60-4c5d-baf5-7816925f16e3" ownerguid="9351d5b6-5a87-422a-9e82-ca6a0bacd3e9"> -<ExampleWords> -<AUni ws="en">calm down, cool down, cool off, compose yourself, steady your nerves, relax, quiet down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to becoming calm?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="9531e925-713b-4587-8f45-2efaa3d52650" ownerguid="501dcdfc-ed38-44ad-a8bf-00e1d93b23ff"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -</rt> -<rt class="WfiAnalysis" guid="9533d698-55a5-4edd-9f05-e850c77a64f6" ownerguid="1750fd81-6f0c-4be2-9f07-09475dc1a7e0"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="0461790e-dfc5-478c-82f1-b006a1f96f14" t="o" /> -<objsur guid="de3ea264-13f1-43e7-ae6a-d31b5516fa61" t="o" /> -<objsur guid="f17d2c33-0915-4cdb-b4b7-3873c7270385" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="95364960-9b26-4544-aad1-4a7c289d2007" ownerguid="4153416a-784d-4f7c-a664-2640f7979a14"> -<ExampleWords> -<AUni ws="en">current, flow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to the movement of a river?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="95391fe2-d166-40bf-8c6c-5844f0f00e0b" ownerguid="ce18ca65-970a-46e9-abf2-75964f7c6196"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="953dba8b-885e-4b5d-9db4-9f9620c042c6" ownerguid="813a720d-2477-4a67-bf2d-938ab6586dae"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="953e8cad-01cd-4fc6-826d-fad252da5b6d" ownerguid="73a59333-134f-4a1d-aba7-e134bdefe059"> -<ExampleWords> -<AUni ws="en">culture, cultural norm, civilization</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to culture?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="95400486-173f-4afe-b780-2d5cc8129a27" ownerguid="f5a9cc88-908b-46e5-9941-72989ed7736a"> -<Form> -<AUni ws="qvm-x-ach">desmäyu</AUni> -<AUni ws="qvm-x-acl">desmäyu; desmäyu; desmäyo</AUni> -<AUni ws="qvm-x-akh">desmäyu</AUni> -<AUni ws="qvm-x-akl">desmäyu; desmäyu; desmäyo</AUni> -<AUni ws="qvm-x-ame">desmäyu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="95444f57-a28d-4fdc-874d-1063abe6bb3b" ownerguid="1d1cb68b-a4d5-43ab-9e13-4c113a5e8cc9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="95466053-500c-4505-8bce-f085aa4664a3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fo:tu</AUni> -<AUni ws="qvm-x-acl">fo:tu; fo:tu; fo:to</AUni> -<AUni ws="qvm-x-akh">fo:tu</AUni> -<AUni ws="qvm-x-akl">fo:tu; fo:tu; fo:to</AUni> -<AUni ws="qvm-x-ame">fo:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+foto</AUni> -<AUni ws="qvm-x-acl">+foto</AUni> -<AUni ws="qvm-x-akh">+foto</AUni> -<AUni ws="qvm-x-akl">+foto</AUni> -<AUni ws="qvm-x-ame">+foto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.578" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7d62ac28-e0bb-4493-aaeb-1efddaecf2bf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+foto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8f7c43b0-84ef-4a40-b0d0-b6115dc9398d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e2e7dcdd-2cb8-4a79-9e82-3f6902590e8f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +foto 
\entryTyp root 
\gENG photo 
\gSPN foto 
\e +foto 
\c N0 
\ach fo:tu 
\akh fo:tu 
\acl fo:tu / _# 
\acl fo:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl fo:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl fo:tu / _# 
\akl fo:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl fo:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame fo:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="9546bfdc-ea45-4a58-9b18-545d0d5a132e" ownerguid="a2f741d9-836f-4bbf-89bd-194ffccab309"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="6aad4953-b1fa-4b02-ad25-f05af3814e4f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="9547b4bf-a332-4321-9e8e-3c66694cb76e" ownerguid="7e4d4600-ace8-4a2d-bb36-b53463439321"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">command</AUni> -<AUni ws="es">mandamiento</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="32b71c12-b9b4-4b31-8ee4-f8ce7235b5b3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="9554a768-c252-4032-ab95-6d3f4229275f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cotencia</AUni> -<AUni ws="qvm-x-acl">cotencia</AUni> -<AUni ws="qvm-x-akh">cotencia</AUni> -<AUni ws="qvm-x-akl">cotencia</AUni> -<AUni ws="qvm-x-ame">cotencia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cotencia</AUni> -<AUni ws="qvm-x-acl">+cotencia</AUni> -<AUni ws="qvm-x-akh">+cotencia</AUni> -<AUni ws="qvm-x-akl">+cotencia</AUni> -<AUni ws="qvm-x-ame">+cotencia</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.208" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d6ff778d-fd6e-49b9-8881-a5bb6475251b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cotencia</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dd4e0802-222a-4a24-8d8e-54c5f3e7b529" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3f395989-5b47-4c95-b0c8-d3cb2b46c5ec" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cotencia 
\entryTyp root 
\gENG burlap 
\gSPN crudo 
\e +cotencia 
\c N0 
\ach cotencia 
\akh cotencia 
\acl cotencia 
\akl cotencia 
\ame cotencia</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="955689d0-6139-4135-a7fa-ac1d05ae7a0f" ownerguid="344e6d59-ca3d-4ba7-ac73-4241f61160f9"> -<Form> -<AUni ws="qvm-x-ach">flëcha</AUni> -<AUni ws="qvm-x-acl">flëcha</AUni> -<AUni ws="qvm-x-akh">flëcha</AUni> -<AUni ws="qvm-x-akl">flëcha</AUni> -<AUni ws="qvm-x-ame">flëcha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="955a2b72-ef11-4c33-ab55-86c4b67a613d" ownerguid="23911ccd-4561-4775-8754-b89af31e24aa"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 23.10 Probamarpis jusaynagtami tarimanga.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="955f2d12-877d-4c57-8b27-5a32a4a58ed4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">real</AUni> -<AUni ws="qvm-x-acl">real</AUni> -<AUni ws="qvm-x-akh">real</AUni> -<AUni ws="qvm-x-akl">real</AUni> -<AUni ws="qvm-x-ame">real</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+real</AUni> -<AUni ws="qvm-x-acl">+real</AUni> -<AUni ws="qvm-x-akh">+real</AUni> -<AUni ws="qvm-x-akl">+real</AUni> -<AUni ws="qvm-x-ame">+real</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.297" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c93cd471-356e-4dff-94ed-93c4c4005da4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+real</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4415172e-f4db-4b4d-919c-5ff95090df8e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0a538370-b871-4d2a-beab-b265aae9d4a1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +real 
\entryTyp root 
\gENG royal 
\gSPN real 
\e +real 
\c N0 
\mp +FinalC 
\ach real 
\akh real 
\acl real 
\akl real 
\ame real 
\i 1KI 4.23 Tsaynogpis shuntapäcog tarushcunata, luychucunata, corzo nishgan luychucunata y wera walpacunata, pätucunata y pavo realtapis.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="9564f60b-ff11-4618-8985-39e4c7a0ed01" ownerguid="a6d9751e-ae7b-4f5b-a1de-1939dd6db198"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pliers</AUni> -<AUni ws="es">alicate</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8953b1a7-d960-4ed9-9aa6-f45aab293ea2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9568ddd7-275b-4d91-bfa0-aa7a9f452f5b" ownerguid="9351d5b6-5a87-422a-9e82-ca6a0bacd3e9"> -<ExampleWords> -<AUni ws="en">calm (adj), calmly, collected, composed, cool, dispassionate, peaceful, phlegmatic, quiescent, sedate, serene, staid, steady, tranquil, unruffled, not fazed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels calm?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="956d4695-6d03-4690-9e9d-32d227b5cbf4" ownerguid="f76409fc-cfcc-4bff-9751-64b7cfdbcae9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoAffixAllomorph" guid="956db2f0-3079-4d61-8616-c23468e65a3f" ownerguid="f586bdd4-75ad-4064-a244-d247a2fe34a2"> -<Form> -<AUni ws="qvm-x-ach">nï</AUni> -<AUni ws="qvm-x-acl">në</AUni> -<AUni ws="qvm-x-akh">nï</AUni> -<AUni ws="qvm-x-akl">në</AUni> -<AUni ws="qvm-x-ame">nï</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="956eaac9-bc62-4c3f-b9c2-ed4971e8b2b5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tabladi:llu</AUni> -<AUni ws="qvm-x-acl">tabladi:llu; tabladi:llu; tabladi:llo</AUni> -<AUni ws="qvm-x-akh">tabladi:llu</AUni> -<AUni ws="qvm-x-akl">tabladi:llu; tabladi:llu; tabladi:llo</AUni> -<AUni ws="qvm-x-ame">tabladi:llu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tabladillo</AUni> -<AUni ws="qvm-x-acl">+tabladillo</AUni> -<AUni ws="qvm-x-akh">+tabladillo</AUni> -<AUni ws="qvm-x-akl">+tabladillo</AUni> -<AUni ws="qvm-x-ame">+tabladillo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.764" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7c8d4021-de4e-4a4a-b08f-10e2ef13f08c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tabladillo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="970dbf65-f491-4cb3-b665-eeba23463c95" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d0c4fdf1-d489-41c5-a5f1-35bbfd91f04d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tabladillo 
\entryTyp root 
\gENG platform 
\gSPN 
\e +tabladillo 
\c N0 
\ach tabladi:llu 
\akh tabladi:llu 
\acl tabladi:llu / _# 
\acl tabladi:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tabladi:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tabladi:llu / _# 
\akl tabladi:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tabladi:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tabladi:llu 
\i 1ki 16.18 Tsaynogpis Asiria nacionpa mandagnin reypa gustunta rurarmi sábado junag 
\nd Tayta Diosta
\nd* adorananpag armashgan tabladïlluta templu patiupita jorgorgan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="95758154-6cea-46b1-a029-e10072403447" ownerguid="b0905fa9-2f90-410b-8eb5-7c7944c4f0f9"> -<ExampleWords> -<AUni ws="en">adulterer, adulteress, sexual partner, lover, mistress</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a person who commits adultery?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9578b3fa-0554-44bc-807f-3d603b3678e5" ownerguid="8841af5e-74e6-4c5d-a313-ba9aa7fdb78b"> -<ExampleWords> -<AUni ws="en">stand someone up, raise someone to their feet, help someone up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to causing someone to stand?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="957b582b-afc3-4d94-9f98-7ec61b95c703" ownerguid="6fc8ae4d-9fad-462e-9ea0-c613c3c1cb5e"> -<ExampleWords> -<AUni ws="en">doubt, suspicion, skepticism</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used of doubtful thoughts?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="957e01b5-bce8-4a85-a629-9673683793c4" ownerguid="040e932b-518f-48b3-b5bd-4b707c2f6950"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8c387e93-35ac-4f30-ac4f-a419c362fcd4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="957e5b95-cd8d-4059-9447-97ad174673f9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yo:ra</AUni> -<AUni ws="qvm-x-acl">yo:ra</AUni> -<AUni ws="qvm-x-akh">yo:ra</AUni> -<AUni ws="qvm-x-akl">yo:ra</AUni> -<AUni ws="qvm-x-ame">yu:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yu:ra</AUni> -<AUni ws="qvm-x-acl">*yu:ra</AUni> -<AUni ws="qvm-x-akh">*yu:ra</AUni> -<AUni ws="qvm-x-akl">*yu:ra</AUni> -<AUni ws="qvm-x-ame">*yu:ra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.800" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3b0ac3c8-2a9b-474d-a25f-4226ceb430ca" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yu:ra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="18c582a9-0303-4d08-949f-91719501988a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e0e67b9d-8a5d-4e38-9a41-8ffa1480d455" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yu:ra 
\entryTyp root 
\gENG tree 
\gSPN árbol 
\e *yu:ra 
\c N0 
\ach yo:ra 
\akh yo:ra 
\acl yo:ra 
\akl yo:ra 
\ame yu:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="95819f97-e876-485f-9fd3-91a301e8d642" ownerguid="db2232d9-8b17-4920-936f-2b6249c6f7fa"> -<ExampleWords> -<AUni ws="en">break in, break down the door, case a joint, crack a safe, pick a lock</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What do robbers do in order to steal things?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="95849c42-5a38-4a44-ad73-229308acef2e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ojal</AUni> -<AUni ws="qvm-x-acl">ojal</AUni> -<AUni ws="qvm-x-akh">ojal</AUni> -<AUni ws="qvm-x-akl">ojal</AUni> -<AUni ws="qvm-x-ame">ojal</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ojal</AUni> -<AUni ws="qvm-x-acl">+ojal</AUni> -<AUni ws="qvm-x-akh">+ojal</AUni> -<AUni ws="qvm-x-akl">+ojal</AUni> -<AUni ws="qvm-x-ame">+ojal</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.626" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6b3f7996-9a0b-4e21-94a3-f64de7ba251e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ojal</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="20a6163d-35a9-439c-872d-de777efbd067" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="23fc63a6-4afc-48b8-88bf-a94a6904f5c7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ojal 
\entryTyp root 
\gENG 
\gSPN 
\e +ojal 
\c N0 
\mp +FinalC 
\ach ojal 
\akh ojal 
\acl ojal 
\akl ojal 
\ame ojal 
\i Exo 26.4 Tsay ishcay piësashgan tolducunapa cuchuncho azul ojalcunata ruratsinqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="95883da9-2f84-4779-b644-a6fd0a82ec93"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">janay</AUni> -<AUni ws="qvm-x-acl">janay</AUni> -<AUni ws="qvm-x-akh">janay</AUni> -<AUni ws="qvm-x-akl">janay</AUni> -<AUni ws="qvm-x-ame">hanay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hanay</AUni> -<AUni ws="qvm-x-acl">*hanay</AUni> -<AUni ws="qvm-x-akh">*hanay</AUni> -<AUni ws="qvm-x-akl">*hanay</AUni> -<AUni ws="qvm-x-ame">*hanay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.660" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="62028419-1ba4-49ec-a42b-98aa8f2338b9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hanay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="97eadecd-0d73-494b-a38a-89e45a79d7a6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="26be5b84-3e67-4384-b326-2d37df208246" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hanay 
\entryTyp root 
\gENG 
\gSPN 
\e *hanay 
\c N0 
\mp +FinalC 
\ach janay 
\akh janay 
\acl janay 
\akl janay 
\ame hanay</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="958ad4ea-45cd-43bc-9076-de28e5d85518" ownerguid="6fb6928b-fa1e-4c9b-aa84-df8eccfc5900"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="31ccef1b-afe2-4ecb-ac42-c7b2aa525da2" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="637881c7-91d2-47d5-a812-501bb96fa1ea" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="958cdbd3-5fd7-4273-b774-3234336e5396" ownerguid="8ac255d3-6b71-4e67-91bf-6c378c12310b"> -<Form> -<AUni ws="qvm-x-ach">yanasïra</AUni> -<AUni ws="qvm-x-acl">yanasëra</AUni> -<AUni ws="qvm-x-akh">yanasïra</AUni> -<AUni ws="qvm-x-akl">yanasëra</AUni> -<AUni ws="qvm-x-ame">yanasïra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="95900b94-c3d1-4247-8ce9-96eead5ca4e1" ownerguid="b948f9df-1600-45d4-9c5a-c0b5fe70f01a"> -<Form> -<AUni ws="qvm-x-ach">estïlu</AUni> -<AUni ws="qvm-x-acl">estïlu; estïlu; estïlo</AUni> -<AUni ws="qvm-x-akh">estïlu</AUni> -<AUni ws="qvm-x-akl">estïlu; estïlu; estïlo</AUni> -<AUni ws="qvm-x-ame">estïlu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="9592006a-4da4-4c05-bf2f-fe4a1b8c8f98" ownerguid="3b18fd9f-1361-47fd-ae1c-dbafc879fefd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="95920faa-c94a-405c-b638-489abd89337b" ownerguid="ea273e20-5284-47f1-aa52-a570157ae264"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="9592ea37-5d72-422b-b578-d3d7cf3eb70c" ownerguid="169d6e3c-34c2-4a4c-b65b-5bac05b82040"> -<Form> -<AUni ws="qvm-x-ach">nina</AUni> -<AUni ws="qvm-x-acl">nina</AUni> -<AUni ws="qvm-x-akh">nina</AUni> -<AUni ws="qvm-x-akl">nina</AUni> -<AUni ws="qvm-x-ame">nina</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9599a0f2-5daa-49f3-99a8-bde9dd6ef056" ownerguid="4e791773-94c8-4667-93f8-92dc0100ddfe"> -<ExampleWords> -<AUni ws="en">holiday, vacation, trip, honeymoon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a holiday?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="959a6d51-fa51-45b8-8418-9ac11440dea4"> -<Form> -<Str> -<Run ws="en">mik</Run> -</Str> -</Form> -</rt> -<rt class="MoStemMsa" guid="959bf08e-2bd3-48f9-8a23-8fe810e2aca5" ownerguid="6f3c704e-dcaf-4b93-85e7-35ab981102c8"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="959c1a4b-d726-422d-9988-fedd60c0347a"> -<Analyses> -<objsur guid="77748469-fcf1-4cde-a3f6-47432eac5b6e" t="o" /> -</Analyses> -<Checksum val="1361794082" /> -<Form> -<AUni ws="qvm-x-akh">aywapäkushqayki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="959d5e5e-ebd8-4a36-8189-42687e90ff0f" ownerguid="615674ac-8158-4089-ae70-b55472fd279b"> -<ExampleWords> -<AUni ws="en">be (ten) years old, (ten)-year-old</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used to say how old something is?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="959db2a6-3d5e-412e-9446-57acca89edd9" ownerguid="cda3346a-d1a2-41bc-b0b2-148ea8aad6aa"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="feb9b30b-866f-4072-afa4-091f819daf71" t="o" /> -<objsur guid="662f5577-6d76-4619-86c6-2e73080fb1e4" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="959e71ea-55d1-48d0-bf54-4730d84e9abf" ownerguid="13edbeff-8913-49ef-8f02-777f86fb512d"> -<ExampleWords> -<AUni ws="en">with, among, together with, between...and, be one with, in common, in union with, union</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate association?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="95a4990a-80b3-44fe-8f91-6110305da460" ownerguid="349f0278-7998-422a-9c3b-6053989cbb20"> -<ExampleWords> -<AUni ws="en">root, stem, affix, prefix, suffix, ending, morpheme</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to parts of words?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="95a84b13-901f-4b91-85cc-fb356c460105" ownerguid="162ba30f-5ff4-4bcc-8246-3b7c97165d3f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="6a91b188-fdd6-4575-a0c0-e2e8b5ae8a4b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="95a8d932-9554-439f-afb5-ab158f2eed96" ownerguid="00269021-e1c4-474d-9dba-341d296bdac7"> -<Abbreviation> -<AUni ws="en">8.4.5.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.640" /> -<DateModified val="2022-9-23 16:55:8.640" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to alternating--when several things happen one after another in a repeated pattern.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Alternate</AUni> -</Name> -<Questions> -<objsur guid="34095b82-e3c7-4466-8172-43b3483c3309" t="o" /> -<objsur guid="86110c42-4f4c-4cbb-b93f-78db5bd0ec27" t="o" /> -<objsur guid="b6206a53-213d-492e-8895-c5157281f769" t="o" /> -<objsur guid="90278dd2-d224-4b73-85ec-39175d100844" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="95abe4dc-df1c-439d-bfe3-64fb4027670a" ownerguid="4006aab6-6c0d-46fa-9f18-c7631502e198"> -<Form> -<AUni ws="qvm-x-ach">gashpi</AUni> -<AUni ws="qvm-x-acl">gashpi; gashpe</AUni> -<AUni ws="qvm-x-akh">gashpi</AUni> -<AUni ws="qvm-x-akl">gashpi; gashpe</AUni> -<AUni ws="qvm-x-ame">gashpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="95ac4eb7-e429-4eef-beb0-84e52e7eaf12"> -<Analyses> -<objsur guid="3e249782-7687-4f36-913b-87c2fde74739" t="o" /> -</Analyses> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">rika</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="95ad06d0-7602-4c19-b971-18babfb5d8a6" ownerguid="8be94377-a3cc-4187-a6e2-51523e953503"> -<ExampleWords> -<AUni ws="en">worker, laborer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to a person who works?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="95b019dd-6c1e-43b2-a0af-edae14cf56d0" ownerguid="7cc6f309-a301-4fa9-953e-49a0064f631c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">smear</AUni> -<AUni ws="es">ensuciar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="81b73cd7-3b2d-4773-8e83-732db08860f5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="95b11bcc-acc0-40db-ae9a-b51adb17c3ca" ownerguid="c97341c5-219d-4458-ad38-384b875d43d4"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="95b1687e-5333-4918-ad62-7bf5555d648b" ownerguid="4bcdb1ab-0f44-4957-8642-860168e0ef79"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="95b3aed8-4154-4ca4-9f2d-76e26a1246fc" ownerguid="977c4370-9593-4c53-80b0-236918417848"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 16.26 Pachan gaululönanta mana munarmi arucun.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="95b3bcd3-a064-4cf0-b43d-848dc15ed134" ownerguid="b45dc743-8347-4e33-840a-ad3ef5aa1b52"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9cac374d-be43-4ea2-8095-c690128fe4fb" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="98da5e0c-d5e5-446b-86a0-38e79bc6da12" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="95b3f5d3-9dd2-4a95-a6ef-241487fbf47e" ownerguid="842791ec-62bb-4f54-8cfa-f40ac4b6cea7"> -<Form> -<AUni ws="qvm-x-ach">matwa</AUni> -<AUni ws="qvm-x-acl">matwa</AUni> -<AUni ws="qvm-x-akh">matwa</AUni> -<AUni ws="qvm-x-akl">matwa</AUni> -<AUni ws="qvm-x-ame">matwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="95b53634-9ce1-4f9e-bb29-2693776afd3b" ownerguid="d8af8890-8c77-4bbb-920f-4af130da85c8"> -<Form> -<AUni ws="qvm-x-ach">máquina; mäquina</AUni> -<AUni ws="qvm-x-acl">máquina; mäquina</AUni> -<AUni ws="qvm-x-akh">máquina; mäquina</AUni> -<AUni ws="qvm-x-akl">máquina; mäquina</AUni> -<AUni ws="qvm-x-ame">máquina; mäquina</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="95b735cf-a7d8-4d54-806e-5514ef9cc743" ownerguid="e5dc2a6b-4139-4762-a925-0d0ea22588ea"> -<Form> -<AUni ws="qvm-x-ach">wagli</AUni> -<AUni ws="qvm-x-acl">wagli; wagli; wagle</AUni> -<AUni ws="qvm-x-akh">waqli</AUni> -<AUni ws="qvm-x-akl">waqli; waqli; waqle</AUni> -<AUni ws="qvm-x-ame">waqli</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="95badcb7-b590-4a25-a8f9-c1a49c973c0d" ownerguid="b6b73d41-e23f-4f22-b01e-7e75f4115fce"> -<ExampleWords> -<AUni ws="en">point, implication, mean, be driving at, be trying to say</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the purpose of something someone says?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="95bc97b4-d877-4f2c-9422-3c94bb46c647" ownerguid="f2d0fcc5-d521-4181-97e1-ce31ad81fdc5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="95bd1b8a-6f27-4b8e-90dd-2c4a489ea4cd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">caya</AUni> -<AUni ws="qvm-x-acl">caya</AUni> -<AUni ws="qvm-x-akh">kaya</AUni> -<AUni ws="qvm-x-akl">kaya</AUni> -<AUni ws="qvm-x-ame">kaya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kaya.n</AUni> -<AUni ws="qvm-x-acl">*kaya.n</AUni> -<AUni ws="qvm-x-akh">*kaya.n</AUni> -<AUni ws="qvm-x-akl">*kaya.n</AUni> -<AUni ws="qvm-x-ame">*kaya.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.973" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0e207cd3-0ac1-42b6-a02e-dce92a6a1e69" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kaya.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8980c228-838b-41d3-bcc6-78bdd2757c99" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="346f0b0e-3eda-4894-adb4-cb5a664c52cf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kaya.n 
\entryTyp root 
\gENG food 
\gSPN comida 
\e *kaya.n 
\c N0 
\ach caya 
\akh kaya 
\acl caya 
\akl kaya 
\ame kaya</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="95c372da-d272-458b-8aa5-e2b0b6c47c4d" ownerguid="978b67de-3568-4965-a5e2-3e50cf8fa622"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">expense</AUni> -<AUni ws="es">gasto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="19e26172-8ee0-4dab-a5a3-1ab23f739382" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="95c6deea-fa89-4cd4-8f86-781c0eda4e94" ownerguid="9a95e6e0-f61a-49c9-b88b-2eae15790df8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">soon</AUni> -<AUni ws="es">ahorita</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aa327f89-b66d-418b-bfd9-5c353d6f61af" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="95c76219-8d46-43de-9f46-f3b1d6ac7f0d" ownerguid="999581c4-1611-4acb-ae1b-5e6c1dfe6f0c"> -<ExampleWords> -<AUni ws="en">aloft, up in the sky, up in the air</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to something being in the sky?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="95c8a8c6-518f-4de7-85e1-1f936647422e" ownerguid="01441207-4935-49a5-a192-16d949f5606c"> -<ExampleWords> -<AUni ws="en">sport, sports, organized sports, athletics, pro sports, amateur sports</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to sports?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="95d0f97f-2d82-47a2-9f81-9988802d6b67" ownerguid="093b3d2a-e0bc-4885-ac70-bf5125e201fe"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="95d65ae4-518a-47a1-b8ea-8a758bdce50e" ownerguid="d52c5e1f-9c59-49a7-833b-ff3aa35e7076"> -<Form> -<AUni ws="qvm-x-ach">purgación; purgacion</AUni> -<AUni ws="qvm-x-acl">purgación; purgacion</AUni> -<AUni ws="qvm-x-akh">purgación; purgacion</AUni> -<AUni ws="qvm-x-akl">purgación; purgacion</AUni> -<AUni ws="qvm-x-ame">purgación; purgacion</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="95d93c17-6adc-4a07-8794-13b4e37b79c0" ownerguid="7b761534-c8e7-4ea3-bf57-d83c05fba7fa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">grub</AUni> -<AUni ws="es">gorgojo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3fc346f9-0471-4d2b-ae7c-4f206b228eaf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="95d994b4-a759-4cb6-a0c7-b4c4ebe0e77d" ownerguid="e7c58c11-2911-446a-96b0-2113247f3792"> -<ExampleWords> -<AUni ws="en">kinship, relationship, close relation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the relationship among members of a family?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="95da253b-9d60-4ba7-a3b6-320cd1ac0e75" ownerguid="aec8c246-0ef7-414a-94a6-b9fdd6812a7c"> -<ExampleWords> -<AUni ws="en">move up in the world, upwardly mobile, social climber</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to moving into a higher social class?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="95dc674a-eb4d-4961-a052-37652f01d990" ownerguid="b6e45998-9f6a-4b19-9cda-62410a11afa2"> -<ExampleWords> -<AUni ws="en">spell, curse, hex, enchantment, charm, incantation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something that someone does using sorcery?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="95e2b4d5-eac4-41b0-9947-c358b2156608" ownerguid="71757ff0-d698-426d-a791-50c4bde6f735"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John ate lunch <at> a restaurant.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">at</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate the location of an event?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="95e323d9-989a-4746-8b96-b1c3bc970b0c"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Mahlón</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="95e6189c-873b-4d2d-834d-4fed699e25a6" ownerguid="c102de4c-ea8e-45d1-8e11-84c5ce3b2b60"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="e1ee6346-0067-4309-b0af-c87b126e793d" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">public.works</AUni> -<AUni ws="es">faena</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9e0ece3d-aec3-4e3e-b306-8d120b634128" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="95e63ddd-b3fb-406b-abc3-35069fee0065" ownerguid="df5080b8-aa7b-4df5-b2f1-b3557c606634"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">modismo: Llanutami micuy putscaycan. Llanutami guellay putscaycan. - ushacänanpag caycan. (Walter habla así, pero Felipe y Wilmer no.)</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="95ea6707-f844-49c8-b640-a36cb0c18152" ownerguid="4bef8767-9346-4e30-acf4-88a2c62ad30b"> -<Form> -<AUni ws="qvm-x-ach">totöra</AUni> -<AUni ws="qvm-x-acl">totöra</AUni> -<AUni ws="qvm-x-akh">totöra</AUni> -<AUni ws="qvm-x-akl">totöra</AUni> -<AUni ws="qvm-x-ame">totöra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="95ea7114-aa0f-4699-8ed3-aba5c1dbcd71" ownerguid="a56a9546-d713-48d0-84ac-690436d999c7"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Jdg 19.21 Tsaynog nirmi auquinga wayinman pushaycur ashnuncunata pastuta garargan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="95ea7fea-1a51-4ac9-ae47-9763021c946c" ownerguid="5d21b3f1-85d5-4999-af64-c4d0101050c0"> -<ExampleWords> -<AUni ws="en">be humble, humbly, condescend</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to doing something humble?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="95eb98f8-57e4-484a-a6ab-3ff59fe97053"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">kaptinmi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="95ed9ddc-7c90-414c-b65b-89a33ec35d5a" ownerguid="c63f35a0-2718-4406-aebf-404012ab4276"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">queen</AUni> -<AUni ws="es">reina</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9b7210d1-6a6f-43af-b541-f18d3950175e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="95f05398-93c8-4a32-a29a-ee455bdc3217"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">marca</AUni> -<AUni ws="qvm-x-acl">marca</AUni> -<AUni ws="qvm-x-akh">marka</AUni> -<AUni ws="qvm-x-akl">marka</AUni> -<AUni ws="qvm-x-ame">marka</AUni> -</Custom> -<AlternateForms> -<objsur guid="2b7f76b6-4b95-4c6a-bbe2-9c2b74d0e708" t="o" /> -</AlternateForms> -<CitationForm> -<AUni ws="qvm-x-ach">*marka</AUni> -<AUni ws="qvm-x-acl">*marka</AUni> -<AUni ws="qvm-x-akh">*marka</AUni> -<AUni ws="qvm-x-akl">*marka</AUni> -<AUni ws="qvm-x-ame">*marka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.346" /> -<DateModified val="2022-10-15 14:2:53.128" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="efaff767-d6db-45ec-8ec0-666b57a06435" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*marka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f87af9c0-e238-4649-8df0-ab17b19c3572" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a9fd5daa-0b30-4298-975d-f5e0cbd5e191" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *marka 
\entryTyp root 
\gENG town 
\gSPN pueblo 
\e *marka 
\c N0 
\ach marca 
\akh marka 
\acl marca 
\akl marka 
\ame marka</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="95f30fe9-eda1-4049-ba4d-ad80bf2703ba" ownerguid="cc099d1f-80a6-4248-b366-077020a80df6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="95f43cc9-a2dd-4f34-97ee-6bd2e0136a08" ownerguid="f4580c19-ba9e-4f71-a46a-6f3c4b19c36c"> -<ExampleWords> -<AUni ws="en">harbor, port, landing, dock, wharf, water break</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a place where a ship comes to land?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="95f68a7b-6be5-4b3e-bc40-111230877a64"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alauga</AUni> -<AUni ws="qvm-x-acl">alauga</AUni> -<AUni ws="qvm-x-akh">alawqa</AUni> -<AUni ws="qvm-x-akl">alawqa</AUni> -<AUni ws="qvm-x-ame">alawqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*allawqa</AUni> -<AUni ws="qvm-x-acl">*allawqa</AUni> -<AUni ws="qvm-x-akh">*allawqa</AUni> -<AUni ws="qvm-x-akl">*allawqa</AUni> -<AUni ws="qvm-x-ame">*allawqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.739" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="82d483a7-2446-44a2-ba3f-297bd5ab89ec" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*allawqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9b2432b6-9f0c-4259-bb68-3eaa02f126b0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c6f89907-45e7-4fd7-ac49-121b692b5e31" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *allawqa 
\entryTyp root 
\gENG right 
\gSPN derecha 
\e *allawqa 
\c N0 
\ach alauga 
\akh alawqa 
\acl alauga 
\akl alawqa 
\ame alawqa</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="95f76778-3484-4cbf-a51d-e6acb79bd884" ownerguid="a104adb9-9e74-4130-aee8-072da2a9ac22"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="5c80707d-3cb1-41b6-a1b7-c1552daaec5f" t="o" /> -<objsur guid="577d896f-5cee-4c39-a03b-a8907394fa1c" t="o" /> -<objsur guid="4849b34f-4b14-4f9b-b148-695ffbf86772" t="o" /> -<objsur guid="e511cd8a-a7b7-4ca3-85d1-a6d86c9bfa71" t="o" /> -<objsur guid="2ac93338-7b99-40e4-93ce-ffb4d86825cd" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="95fb6952-8926-4e83-813f-bdb285dc48d3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sachu</AUni> -<AUni ws="qvm-x-acl">sachu; sachu; sacho</AUni> -<AUni ws="qvm-x-akh">sachu</AUni> -<AUni ws="qvm-x-akl">sachu; sachu; sacho</AUni> -<AUni ws="qvm-x-ame">sachu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*satru</AUni> -<AUni ws="qvm-x-acl">*satru</AUni> -<AUni ws="qvm-x-akh">*satru</AUni> -<AUni ws="qvm-x-akl">*satru</AUni> -<AUni ws="qvm-x-ame">*satru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.470" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3c09226f-6a85-4445-a137-346690358d3f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*satru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9dcf23f7-13e1-44d5-a9b5-1c1631f3e1a6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b7a1286d-7222-4887-842d-17ec43bf6d0b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *satru 
\entryTyp root 
\gENG baby.donkey 
\gSPN burro.tierno 
\e *satru 
\c N0 
\ach sachu 
\akh sachu 
\acl sachu / _# 
\acl sachu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sacho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sachu / _# 
\akl sachu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sacho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sachu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="95fbeece-791e-4cba-aebe-344209ae6be3" ownerguid="9a20fe99-bf9c-4277-9d2e-ad56e04631d0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="7af720b5-ba66-46b1-b689-3e61415d7d6a" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="c3751205-7636-4e36-b8c1-cedb1e20faf8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="95ff56cf-ff80-48d5-8839-120d07103b4a" ownerguid="2e97b83d-1152-473f-9cbe-347f0655041a"> -<ExampleWords> -<AUni ws="en">ear</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to an ear?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="95ff5b17-6b93-4db2-af08-868a42987e65" ownerguid="d7861def-70c1-470f-bca6-8230cbbaa3e9"> -<ExampleWords> -<AUni ws="en">squint, peer, crane your neck</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to looking hard at something because it is difficult to see?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="960240a0-3d88-49cc-b42b-6dd7e4b9e0ae"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ushma</AUni> -<AUni ws="qvm-x-acl">ushma</AUni> -<AUni ws="qvm-x-akh">ushma</AUni> -<AUni ws="qvm-x-akl">ushma</AUni> -<AUni ws="qvm-x-ame">ushma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ushma.v</AUni> -<AUni ws="qvm-x-acl">*ushma.v</AUni> -<AUni ws="qvm-x-akh">*ushma.v</AUni> -<AUni ws="qvm-x-akl">*ushma.v</AUni> -<AUni ws="qvm-x-ame">*ushma.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.290" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9bd2a633-545d-4319-b8dc-fa82d698c18d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ushma.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e0b5b3dc-377a-4367-a1c3-67612803e32b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6dcdecf6-1819-4db5-ae67-8f209010d986" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ushma.v 
\entryTyp root 
\gENG wet 
\gSPN mojar 
\e *ushma.v 
\c V2 
\ach ushma 
\akh ushma 
\acl ushma 
\akl ushma 
\ame ushma</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="960643fc-79e9-4e6f-a765-2fefd3d19892"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">veci:nu</AUni> -<AUni ws="qvm-x-acl">veci:nu; veci:nu; veci:no</AUni> -<AUni ws="qvm-x-akh">veci:nu</AUni> -<AUni ws="qvm-x-akl">veci:nu; veci:nu; veci:no</AUni> -<AUni ws="qvm-x-ame">veci:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vecino</AUni> -<AUni ws="qvm-x-acl">+vecino</AUni> -<AUni ws="qvm-x-akh">+vecino</AUni> -<AUni ws="qvm-x-akl">+vecino</AUni> -<AUni ws="qvm-x-ame">+vecino</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.353" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b3969b99-f569-414e-9ffb-f73cecbc1789" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vecino</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="663c466e-ddec-4dc4-85ed-28208fa86481" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c8d7d60a-89f5-4a24-bfa8-76b6bed090ca" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vecino 
\entryTyp root 
\gENG neighbor 
\gSPN vecino 
\e +vecino 
\c N0 
\ach veci:nu 
\akh veci:nu 
\acl veci:nu / _# 
\acl veci:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl veci:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl veci:nu / _# 
\akl veci:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl veci:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame veci:nu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="960a23be-fe9a-40e3-bbdb-e00d5bb0dd67" ownerguid="28a68cea-9128-4d5c-8542-8df38c907310"> -<ExampleWords> -<AUni ws="en">deliverer, liberator</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to someone who sets someone free?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="960b13d5-e3d5-4863-96ea-0e5c92343a46" ownerguid="1148684a-0f44-4b5a-9e3e-3823163cd4a1"> -<ExampleWords> -<AUni ws="en">announce, declare, proclaim, publicize, publish, broadcast, make something public, make known, promote, advertise, inform, post</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer announcing something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="960b77e6-af97-4884-a094-0c5295fb8964" ownerguid="55a7b809-4196-4c5a-a6d6-09b586ce71e7"> -<ExampleWords> -<AUni ws="en">ostracize, exile, marginalize, shun, cast out, exclude</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to ostracizing someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="960d046c-5933-4f3e-b502-0749d76ccdf5" ownerguid="1860968e-a899-4e22-b1f1-34c74536d538"> -<Form> -<AUni ws="qvm-x-ach">tsegla</AUni> -<AUni ws="qvm-x-acl">tsegla</AUni> -<AUni ws="qvm-x-akh">tseqla</AUni> -<AUni ws="qvm-x-akl">tseqla</AUni> -<AUni ws="qvm-x-ame">tsiqla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="960d1dbe-8d1a-4328-8817-f3327be326ae" ownerguid="cab6c5b3-599b-46f6-b585-386ffca6c796"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">Peru</AUni> -<AUni ws="es">Perú</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3d7dc063-5337-4252-8188-25754e276518" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="960ff213-d101-4de3-9d45-a4762a433412"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aya; aya:</AUni> -<AUni ws="qvm-x-acl">aya; aya:</AUni> -<AUni ws="qvm-x-akh">aya; aya:</AUni> -<AUni ws="qvm-x-akl">aya; aya:</AUni> -<AUni ws="qvm-x-ame">aya; aya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aya:</AUni> -<AUni ws="qvm-x-acl">*aya:</AUni> -<AUni ws="qvm-x-akh">*aya:</AUni> -<AUni ws="qvm-x-akl">*aya:</AUni> -<AUni ws="qvm-x-ame">*aya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.898" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="31b70dbc-6959-4ceb-b7e7-b084f24ab870" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6506e780-1bb7-4864-adf9-333416cf7afa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2aae4501-3b9a-4641-aad8-43ce30209e9d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aya: 
\entryTyp root 
\gENG be.spicy 
\gSPN ser.picante 
\e *aya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach aya foreshortened 
\ach aya: 
\akh aya foreshortened 
\akh aya: 
\acl aya foreshortened 
\acl aya: 
\akl aya foreshortened 
\akl aya: 
\ame aya foreshortened 
\ame aya:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="9612bdd6-15cb-4269-aaf9-481c7b35b5dd" ownerguid="1e9a0881-f715-4057-9af8-251cb8eec9da"> -<Abbreviation> -<AUni ws="en">3.5.1.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that describe a person speaking quietly.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Speak quietly</AUni> -</Name> -<Questions> -<objsur guid="480ea79a-2627-4c59-99aa-f35f08b7bba4" t="o" /> -<objsur guid="19bb18b1-ba8e-440b-9cc4-47415b67de45" t="o" /> -<objsur guid="fa730a0b-85c5-487a-a1d5-6c2eb77ff6be" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="d853597b-f3ed-470b-b6dd-8fe93b8e43eb" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="96132d39-a4e4-4393-afe9-72772bc7c668" ownerguid="85188748-1919-4210-a9e9-91171d9d6454"> -<ExampleWords> -<AUni ws="en">trout, minnow, catfish, mudfish, perch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What species of freshwater fish are there?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="9613303e-9302-4793-9c06-cc44cff4b0ae" ownerguid="ab80b556-2c7d-4e75-a58d-f5bb58b2feef"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="f58e1bfe-915b-4213-a623-971ca50c0ba4" t="o" /> -<objsur guid="4b70d193-a95c-4010-8b78-7bd022dd12c1" t="o" /> -<objsur guid="f68ea3dc-af4c-4bf5-a3ef-6dbce6caaa92" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="9617cbb7-c9db-4a42-a04b-1c1601282acd" ownerguid="665713cd-47da-4b35-b524-c6c14c17f467"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="96189c1c-b75c-48d3-b803-eb86f123fbca" ownerguid="0b6da2c6-cc71-47ea-bcc2-1deccf6901ef"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="9618ab74-6a1a-4639-b3c3-34898e7c846d" ownerguid="c01bbcef-7d89-4753-bafd-3a7f23648982"> -<ExampleWords> -<AUni ws="en">go to the doctor, see a doctor, consult a doctor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to going to a doctor?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="961ac469-82a3-45ff-a17d-40963fce559b" ownerguid="c6e806f9-600c-4f3f-a41b-959c94fb123c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">quechua</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="42d471b3-57f3-4b62-af67-37707d2e25fd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="961acfa2-fd18-4c9e-9842-4f6f79b2ed6b" ownerguid="38d9125b-88fe-4f7a-9e21-5da82d3ee093"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">boil</AUni> -<AUni ws="es">hervir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6f80142f-b1f5-4105-ad05-4663fa5b4a9d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="961cb3d5-fc4a-4084-a46c-4667e274cec0" ownerguid="a4ee4ddc-91d6-4e31-8f8d-361a2b83430d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dance</AUni> -<AUni ws="es">dansar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ecc36992-d2e5-45eb-a545-c1b7535c8438" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="961d08e4-5703-40b1-94be-a76744b248c2" ownerguid="516e8837-8901-4ac8-bd3d-7927c27b8862"> -<Form> -<AUni ws="qvm-x-ach">corrïdus</AUni> -<AUni ws="qvm-x-acl">corrïdus</AUni> -<AUni ws="qvm-x-akh">corrïdus</AUni> -<AUni ws="qvm-x-akl">corrïdus</AUni> -<AUni ws="qvm-x-ame">corrïdus</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="961d78f3-e9a6-4730-8367-32ee07853902" ownerguid="fa0c4030-a408-4b46-b248-e2fa3ad2baf4"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Elagpita aywar tsapuycushcä.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="961def37-cbf9-4470-88b4-8cc89342a9f4" ownerguid="ac4a936e-6c05-4e73-8d40-dfe4223b47fa"> -<ExampleWords> -<AUni ws="en">hand</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What is one game called?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="96221942-834f-40f3-9b8f-5c199bcf7ea1" ownerguid="dd06cfae-5428-49b9-921e-935ceb6e6c21"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">?</AUni> -<AUni ws="es">desramar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6fd6d4c9-7203-47bd-8ee6-40fc67a3821b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="96251bde-c567-4e99-a388-c537792414f2" ownerguid="d014a4fa-c994-4fc4-ae4d-cbb9039aae7f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">March</AUni> -<AUni ws="es">marzo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4e07933c-158b-49c9-9671-f2b2e9894b3a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="9626fb26-242a-4a7d-81db-f88ba1fbeb7c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">comune:ru</AUni> -<AUni ws="qvm-x-acl">comune:ru; comune:ru; comune:ro</AUni> -<AUni ws="qvm-x-akh">comune:ru</AUni> -<AUni ws="qvm-x-akl">comune:ru; comune:ru; comune:ro</AUni> -<AUni ws="qvm-x-ame">comune:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+comunero.2</AUni> -<AUni ws="qvm-x-acl">+comunero.2</AUni> -<AUni ws="qvm-x-akh">+comunero.2</AUni> -<AUni ws="qvm-x-akl">+comunero.2</AUni> -<AUni ws="qvm-x-ame">+comunero.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.162" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="43524cec-eecb-4328-ac3e-b2496d4a567f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+comunero.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="976c5be4-942b-4a82-bcd3-edc0ba62d768" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="66adfcca-2a64-4d31-a2f8-4410cdc4fe38" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +comunero.2 
\entryTyp root 
\gENG peasant 
\gSPN comunero 
\e +comunero.2 
\c N0 
\ach comune:ru 
\akh comune:ru 
\acl comune:ru / _# 
\acl comune:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl comune:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl comune:ru / _# 
\akl comune:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl comune:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame comune:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="962941b2-66bd-437f-aadc-b1921bcae5b4" ownerguid="9d865347-6656-4ab7-8613-bf2e8bc53aa7"> -<Abbreviation> -<AUni ws="en">2.5.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.47" /> -<DateModified val="2022-9-23 16:55:8.47" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to poison--something that is bad for your body if you eat it, it gets on you, or an animal injects it into you.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Poison</AUni> -</Name> -<Questions> -<objsur guid="3b67c4a9-6745-43ee-9f43-7a73a24124bd" t="o" /> -<objsur guid="e7fe4352-5ab3-41a1-9400-9745d203fbd7" t="o" /> -<objsur guid="ae93d275-21d5-4640-b610-7f81e1c739c5" t="o" /> -<objsur guid="d3d474dd-e1e8-4cb4-8a97-3a20aedf50c9" t="o" /> -<objsur guid="e8f51b29-7476-40b5-ae1f-9e3f897cffb9" t="o" /> -<objsur guid="0b7a9887-7cd3-46ca-b94f-16d917f6d984" t="o" /> -<objsur guid="0ea908db-77cf-487e-b746-2fa80887298d" t="o" /> -<objsur guid="f1e10e64-f180-4fcf-b771-f3b59e056007" t="o" /> -<objsur guid="d5af0fb1-ad51-46f0-98e7-3bfec691a413" t="o" /> -<objsur guid="bacbf969-877c-4673-b11b-64486ce2f38d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="962a9df9-ea6d-453e-9fc4-b292eb3f09cc" ownerguid="2541b188-5bc6-497e-b9c7-e9426ef282b0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">round</AUni> -<AUni ws="es">redondo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6aaec51e-6b0f-463e-b25c-b8c8aaa1b5b1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="962cb994-0183-4ac5-94b2-82a33f1d64e4" ownerguid="756728a8-9eb8-4329-aee2-d6a3d64585f2"> -<Abbreviation> -<AUni ws="en">1.2.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.947" /> -<DateModified val="2022-9-23 16:55:7.947" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to oil.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Oil</AUni> -</Name> -<Questions> -<objsur guid="9f9581ee-15c8-49fb-83ef-5cddea7103ca" t="o" /> -<objsur guid="babfa390-f507-4183-acdc-b36a09cc65f1" t="o" /> -<objsur guid="c3222284-e0b5-4b35-84d2-2f2716c8aead" t="o" /> -<objsur guid="b321fb24-e9aa-4ba5-b517-530f148abfc3" t="o" /> -<objsur guid="ae3e1013-1337-4758-9ee4-e235c07f9b25" t="o" /> -<objsur guid="c08a8910-7e18-45e7-98b6-b463e34ba194" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="962cf013-0632-4b94-b4db-72d00b275528" ownerguid="4e2ab412-6bb4-411d-ae7e-70062b3c7375"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ka</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ka</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="22806abf-f462-448a-bb3e-39bbf5d75aea" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -<Sense> -<objsur guid="909cfa11-00e3-4787-b51b-dfac729061be" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="963113db-ab9b-4f15-965c-b0adfd227c7b" ownerguid="dbe972e1-d182-4463-bfd9-f1836a052a29"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="96325526-8d9d-4c11-84b6-5c2d005ba91c" ownerguid="878a313b-a201-444e-8bdb-67048d60c63e"> -<ExampleWords> -<AUni ws="en">ignore, not pay any attention to, pay no attention to, not take any notice of, take no notice of, don't mind me/her/them, shrug off, not want to know, take someone for granted, avoid, refuse to acknowledge, don't greet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to ignoring someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="9633d024-a8b8-4e39-91be-c0a575263159" ownerguid="091a58e4-d2ad-4f7f-bd0f-a1905a9c96ee"> -<Form> -<AUni ws="qvm-x-ach">entabla</AUni> -<AUni ws="qvm-x-acl">entabla</AUni> -<AUni ws="qvm-x-akh">entabla</AUni> -<AUni ws="qvm-x-akl">entabla</AUni> -<AUni ws="qvm-x-ame">entabla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="96373a25-7049-48b6-9830-aa1c791de2f1" ownerguid="f369fcea-d729-419d-9ca0-da8246776b35"> -<Form> -<AUni ws="qvm-x-ach">pasca</AUni> -<AUni ws="qvm-x-acl">pasca</AUni> -<AUni ws="qvm-x-akh">paska</AUni> -<AUni ws="qvm-x-akl">paska</AUni> -<AUni ws="qvm-x-ame">paska</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="96415e6b-515e-46dd-bb29-40838b722ec6" ownerguid="a8b3fa0c-077e-4c0d-b4cc-36dcfbdcb4d4"> -<ExampleWords> -<AUni ws="en">color (v), color something in, blacken, bleach, denigrate, dye, discolor, emblazon, imbue, ingrain, paint (v), redden, shade (v), stain, tinge, tint, add color, mix colors, tone down, whiten</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to changing the color of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="96473120-65f5-4f84-9bdc-13721a20ff38" ownerguid="89bdb96f-aab6-474d-a015-11960f9c1a33"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">letter</AUni> -<AUni ws="es">letra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7f2b42e8-872b-4947-b2c1-140a74d88385" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="964f3d60-c516-4d21-9110-45a47e583f9d" ownerguid="431dd85c-daef-4948-9280-6a8d43b9b335"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoDerivAffMsa" guid="964f8962-17d5-4738-8902-97236137c419" ownerguid="731a76a3-6d71-4541-bff3-269ed7ce49c8"> -<FromPartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</FromPartOfSpeech> -<ToPartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</ToPartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="96504d06-1002-4eab-b335-3562ccbe02e9" ownerguid="bafa274e-8bf0-4cf7-8ce7-2c28293db809"> -<ExampleWords> -<AUni ws="en">door, doorway, entrance, entry way</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the entrance to a house?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="96530c84-41d3-4e05-b422-f8d5d669b8d5" ownerguid="e7c8c42f-0e98-496f-a246-fd4a35bfab99"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="0ff5c907-bdb8-4bd1-9596-9856a1413d17" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">work</AUni> -<AUni ws="es">obra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="56126bb4-4d6f-4306-a25c-f10a349e1832" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="96545548-7fd4-4764-9e17-0c30a599c1db" ownerguid="1ca26512-75f6-4a7a-a7cc-07d08aa799d9"> -<ExampleWords> -<AUni ws="en">Sorry! Excuse me. I'm sorry. Forgive me.</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What do people say when they ask for forgiveness?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="965958c0-4211-483d-9a65-c33044275383" ownerguid="598449d6-42d2-4fda-b0ef-0b2527629e7a"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="965b0558-10fc-4cf4-8832-f82614fb4098"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">corri:da</AUni> -<AUni ws="qvm-x-acl">corri:da</AUni> -<AUni ws="qvm-x-akh">corri:da</AUni> -<AUni ws="qvm-x-akl">corri:da</AUni> -<AUni ws="qvm-x-ame">corri:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+corrida</AUni> -<AUni ws="qvm-x-acl">+corrida</AUni> -<AUni ws="qvm-x-akh">+corrida</AUni> -<AUni ws="qvm-x-akl">+corrida</AUni> -<AUni ws="qvm-x-ame">+corrida</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.211" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ee2bbc7f-a8a8-4493-a25a-d27ea9ce9612" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+corrida</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fc9854cf-68e7-4f0e-888f-61320046613a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="769ba582-f77b-4d55-a3b2-3c58b59b20a5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +corrida 
\entryTyp root 
\gENG running 
\gSPN corrida 
\e +corrida 
\c N0 
\ach corri:da 
\akh corri:da 
\acl corri:da 
\akl corri:da 
\ame corri:da</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="965c6a0b-3034-4e2f-a00b-ed2eb3119a5d" ownerguid="c3ddfc77-e3a6-450e-a853-111f5595df87"> -<Abbreviation> -<AUni ws="en">9.4.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.700" /> -<DateModified val="2022-9-23 16:55:8.700" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate imperatives. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press. Use this domain for words and affixes that a speaker uses to indicate that he is making a command. English has no command word. Some languages change the form of the verb by adding an affix. Some languages have special verbs that are only or normally used as commands. Those verbs could be classified here.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Imperative</AUni> -</Name> -<Questions> -<objsur guid="a4bc6009-a9e5-4dcd-a14b-08f820ac149f" t="o" /> -<objsur guid="58c4159a-bee5-485e-9d77-184f3e552d21" t="o" /> -<objsur guid="810624ba-0660-4789-94fb-8e2d074af4c8" t="o" /> -<objsur guid="8a88fd77-fdd6-4f56-8563-c734034a8a38" t="o" /> -<objsur guid="dd24c859-f935-4de1-9925-c92b8c6944c3" t="o" /> -<objsur guid="9a5c2cfb-4c9f-4860-a279-b78635f62737" t="o" /> -<objsur guid="cc1582be-e26f-44c9-9cdb-bb708cb3385b" t="o" /> -<objsur guid="f2451661-c698-4525-a6a1-7081a1ff050f" t="o" /> -<objsur guid="f585fc51-f0aa-4df6-9b3a-bf975be1a8b3" t="o" /> -<objsur guid="841d6c52-82fa-49ee-8c44-05064a3fd404" t="o" /> -<objsur guid="542d1fc8-57e3-463a-8ace-0abc7ae296be" t="o" /> -<objsur guid="a459a8d5-cf14-4f47-a632-57f644f61dcb" t="o" /> -<objsur guid="287051ce-5217-4808-a640-48c86b3d51d4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="965db265-e5f3-4dfa-af16-a259ac976e4b" ownerguid="4f09c9f4-82da-40a5-a53a-75b4ada04121" /> -<rt class="LexEntry" guid="965f9204-b884-4952-b2fd-2c95379ca9a7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">watpa</AUni> -<AUni ws="qvm-x-acl">watpa</AUni> -<AUni ws="qvm-x-akh">watpa</AUni> -<AUni ws="qvm-x-akl">watpa</AUni> -<AUni ws="qvm-x-ame">watpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*watpa</AUni> -<AUni ws="qvm-x-acl">*watpa</AUni> -<AUni ws="qvm-x-akh">*watpa</AUni> -<AUni ws="qvm-x-akl">*watpa</AUni> -<AUni ws="qvm-x-ame">*watpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.574" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1761fe93-8b34-40eb-9318-a6c8836de474" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*watpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="18ff083f-a708-4124-8895-343dabe9bb35" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="78c94df1-9f7a-4b71-981a-3fc1c3a5d7d7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *watpa 
\entryTyp root 
\gENG 
\gSPN 
\e *watpa 
\c R0 
\ach watpa 
\akh watpa 
\acl watpa 
\akl watpa 
\ame watpa 
\i GEN 27.33 Tsaynog niptin Isaacga mantsacashga watpa watpa parlar caynog nergan...</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="966028ff-8e70-4fe0-963e-377a12d8be82" ownerguid="341d5db4-d517-4c25-97d7-704820bf1d50"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="03a14a7b-b3ff-440f-910b-a22bcd1b4415" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="966075bf-6c37-4c86-91c9-1e4684e97b75"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">japa</AUni> -<AUni ws="qvm-x-acl">japa</AUni> -<AUni ws="qvm-x-akh">japa</AUni> -<AUni ws="qvm-x-akl">japa</AUni> -<AUni ws="qvm-x-ame">hapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hapa.n</AUni> -<AUni ws="qvm-x-acl">*hapa.n</AUni> -<AUni ws="qvm-x-akh">*hapa.n</AUni> -<AUni ws="qvm-x-akl">*hapa.n</AUni> -<AUni ws="qvm-x-ame">*hapa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.670" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fa2ed460-0e23-4c0b-a696-06102bb821a4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hapa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f6c6df56-a369-4462-9c8f-e109e0f67bb5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7a9d5287-b59b-40cb-b16e-79818e3ae4b5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hapa.n 
\entryTyp root 
\gENG only 
\gSPN solo 
\e *hapa.n 
\c N0 
\ach japa 
\akh japa 
\acl japa 
\akl japa 
\ame hapa 
\i GEN 2.18 Japala car runa cuyapaypagmi caycan. 
\mcc *hapa.n / ~_ POL</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="96611f0f-8844-4c67-8721-d02aadcc2cf9" ownerguid="91cb83ea-0e5f-4dc0-b024-4e4545fd988f"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2SA 8.18 Davidpa tsurincunami príncipicuna cargan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="9661ba78-0e6b-4e50-a6d4-672ac6a5df53" ownerguid="f7c5dc00-e7bc-4a8c-900e-ca97b4b96d0e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">have.lovers</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0adbae08-6f72-4a32-a932-f77fafed06f5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="966245e8-9bae-4bed-8ac7-7f428e335215" ownerguid="27b5a149-05a9-4663-bb4a-2592abb862ab"> -<Form> -<AUni ws="qvm-x-ach">tauga</AUni> -<AUni ws="qvm-x-acl">tauga</AUni> -<AUni ws="qvm-x-akh">tawqa</AUni> -<AUni ws="qvm-x-akl">tawqa</AUni> -<AUni ws="qvm-x-ame">tawqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="96667e69-c6d7-4460-8073-fa2d94d0ce48" ownerguid="33e66099-515e-41f3-99a7-4201aff047c2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="966794a7-a8ac-46f4-9ea5-4f72f4aa6fc9" ownerguid="2eba12c6-7817-4dfd-9e7c-94c8b8b389ef"> -<ExampleWords> -<AUni ws="en">prohibited food, taboo food, unclean</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe food that is prohibited?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="96690d3f-afc7-4fd7-8a8d-566821134d97" ownerguid="d1f0e873-9244-49df-aa83-4667f07fb91e"> -<Form> -<AUni ws="qvm-x-ach">chöca</AUni> -<AUni ws="qvm-x-acl">chöca</AUni> -<AUni ws="qvm-x-akh">chöca</AUni> -<AUni ws="qvm-x-akl">chöca</AUni> -<AUni ws="qvm-x-ame">chöca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="96690f40-77a1-44cf-9c74-99eee2f6f121" ownerguid="30e52c37-25d0-4ade-8e84-12f17bf413bd"> -<Form> -<AUni ws="qvm-x-ach">sentencia</AUni> -<AUni ws="qvm-x-acl">sentencia</AUni> -<AUni ws="qvm-x-akh">sentencia</AUni> -<AUni ws="qvm-x-akl">sentencia</AUni> -<AUni ws="qvm-x-ame">sentencia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="966a5570-fe4a-4983-b9e7-8324ba54f0d4" ownerguid="6c4b744b-9c17-463a-961c-4210d7825dee"> -<Form> -<AUni ws="qvm-x-ach">tsara; tsarä</AUni> -<AUni ws="qvm-x-acl">tsara; tsarä</AUni> -<AUni ws="qvm-x-akh">tsara; tsarä</AUni> -<AUni ws="qvm-x-akl">tsara; tsarä</AUni> -<AUni ws="qvm-x-ame">tsara; tsarä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="966af534-c90c-4a3a-8547-a77a7677ea3d" ownerguid="c402df97-d8f4-4726-8f99-7c783e837188"> -<Form> -<AUni ws="qvm-x-ach">cantïna</AUni> -<AUni ws="qvm-x-acl">cantïna</AUni> -<AUni ws="qvm-x-akh">cantïna</AUni> -<AUni ws="qvm-x-akl">cantïna</AUni> -<AUni ws="qvm-x-ame">cantïna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="966b581e-e507-45a7-a5c8-4cf84a60f3f0" ownerguid="026eb7e6-397b-4769-951e-608bcd733725"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="966f2799-d7f2-4c98-9b73-9518968a9bd9" ownerguid="f8e4ec0e-f295-48dc-8730-336a91934050"> -<Form> -<AUni ws="qvm-x-ach">öla</AUni> -<AUni ws="qvm-x-acl">öla</AUni> -<AUni ws="qvm-x-akh">öla</AUni> -<AUni ws="qvm-x-akl">öla</AUni> -<AUni ws="qvm-x-ame">öla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="96737276-7ef2-4df4-80ee-f17c8b9f0eb2" ownerguid="3393b3b2-b324-408d-9c59-057a0de9c3bd"> -<ExampleWords> -<AUni ws="en">have a go, have a stab at, give it a go, put up a good show</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to trying to do something, even though you are unlikely to succeed?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9679180f-37a5-4e95-8bfc-045b3a71b319" ownerguid="bc241f99-65c1-4a28-9abf-c1949935d4b1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="fa18b083-c5c8-42a4-aa2c-9251912544b9" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">prostitute</AUni> -<AUni ws="es">prostituto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="223829bb-4fc2-4541-8d0f-bd919345ff5c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="967b23b6-239e-4326-83e6-c41023950932" ownerguid="bf621f5e-59e7-42ac-a1f1-bcf569b387da"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="967d4311-3d9f-45dc-bda3-d60f324c7313"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lauta</AUni> -<AUni ws="qvm-x-acl">lauta</AUni> -<AUni ws="qvm-x-akh">lawta</AUni> -<AUni ws="qvm-x-akl">lawta</AUni> -<AUni ws="qvm-x-ame">lawta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llawta</AUni> -<AUni ws="qvm-x-acl">*llawta</AUni> -<AUni ws="qvm-x-akh">*llawta</AUni> -<AUni ws="qvm-x-akl">*llawta</AUni> -<AUni ws="qvm-x-ame">*llawta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.184" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0acbb9e7-b739-47a5-8666-23d24babce2d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llawta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c4459ad0-de38-45e6-845a-098200d5574b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3ec14543-41a8-47e6-b939-7adbb7780b84" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llawta 
\entryTyp root 
\gENG skinny 
\gSPN ? 
\e *llawta 
\c N0 
\ach lauta 
\akh lawta 
\acl lauta 
\akl lawta 
\ame lawta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="96809a9f-5538-463c-9cbc-1102747f5833" ownerguid="cefced48-ae37-4de5-8863-963c0dd026b5"> -<Form> -<AUni ws="qvm-x-ach">cha; chä</AUni> -<AUni ws="qvm-x-acl">cha; chä</AUni> -<AUni ws="qvm-x-akh">cha; chä</AUni> -<AUni ws="qvm-x-akl">cha; chä</AUni> -<AUni ws="qvm-x-ame">cha; chä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="9683fda7-1c6d-4186-9588-c44a46b456a8" ownerguid="3d1737b3-d05f-468d-bce7-dd3e3b409859"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="15578f59-2a91-482a-b0e1-a288a3d7dc5a" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">wash.head</AUni> -<AUni ws="es">lavar.cabeza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f9b0ec0a-9293-45b9-9dc2-eca99c90600c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="968784d5-d8e5-4b11-905b-f043b18547c5" ownerguid="8c9196cf-be2a-4df9-8737-0b903ea07ccd"> -<Form> -<AUni ws="qvm-x-ach">wimpi</AUni> -<AUni ws="qvm-x-acl">wimpi; wimpe</AUni> -<AUni ws="qvm-x-akh">wimpi</AUni> -<AUni ws="qvm-x-akl">wimpi; wimpe</AUni> -<AUni ws="qvm-x-ame">wimpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="968a4bf0-1707-4613-ad30-a69f1db2bda6" ownerguid="d2683ae4-dbbb-4bf4-8e22-483b78bd560a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">lapa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">lapa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">lapa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">lapa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">lapa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="0655d4c4-dcff-4fca-931a-8964415a96b4" t="r" /> -</Morph> -<Msa> -<objsur guid="b16d0818-05dc-49f7-8cdf-889b0be5517e" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="9692d73a-10c5-43af-8938-641e4f7a6529" ownerguid="d83ebe2c-c1d6-49ec-a4a9-1cdced843387"> -<ExampleWords> -<AUni ws="en">bring someone around, resuscitate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to causing a person to regain consciousness?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="96938ce5-8593-4c37-8ad1-1a6a312c016e" ownerguid="ced66b2b-f9c0-409f-b544-2509b384c45f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">greedy</AUni> -<AUni ws="es">ambicioso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cb6a2694-3459-4451-bd63-24d6fcd694cc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="9693dca0-263a-48c2-b98c-21948c2c3608"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">calaba:su</AUni> -<AUni ws="qvm-x-acl">calaba:su; calaba:su; calaba:so</AUni> -<AUni ws="qvm-x-akh">calaba:su</AUni> -<AUni ws="qvm-x-akl">calaba:su; calaba:su; calaba:so</AUni> -<AUni ws="qvm-x-ame">calaba:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+calabazo</AUni> -<AUni ws="qvm-x-acl">+calabazo</AUni> -<AUni ws="qvm-x-akh">+calabazo</AUni> -<AUni ws="qvm-x-akl">+calabazo</AUni> -<AUni ws="qvm-x-ame">+calabazo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.190" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7a6abc0f-d291-4c3e-9fa1-9c62f2d8189a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+calabazo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="de979969-cac5-4a80-994c-dd26fe2b657b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="868870ee-003a-4441-8f44-2068ed2c1e29" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +calabazo 
\entryTyp root 
\gENG 
\gSPN 
\e +calabazo 
\c N0 
\ach calaba:su 
\akh calaba:su 
\acl calaba:su / _# 
\acl calaba:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl calaba:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl calaba:su / _# 
\akl calaba:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl calaba:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame calaba:su</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="9693e88f-7198-4b43-850e-bf0aa36f12c9" ownerguid="06700833-ca70-4c41-a4f3-a6bcbe7c1099"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c8713e12-805f-4451-8afd-4021ae3247ea" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">travel</AUni> -<AUni ws="es">viajar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="38c63a78-ec6f-423a-bcb1-e8349c2beed4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="9694bf77-8731-4f05-a894-cba7797278b9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jincuru</AUni> -<AUni ws="qvm-x-acl">jincuru; jincuro</AUni> -<AUni ws="qvm-x-akh">jinkuru</AUni> -<AUni ws="qvm-x-akl">jinkuru; jinkuro</AUni> -<AUni ws="qvm-x-ame">hinkuru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hinkuru.v</AUni> -<AUni ws="qvm-x-acl">*hinkuru.v</AUni> -<AUni ws="qvm-x-akh">*hinkuru.v</AUni> -<AUni ws="qvm-x-akl">*hinkuru.v</AUni> -<AUni ws="qvm-x-ame">*hinkuru.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.721" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="173415ac-c602-4090-90f2-5713b9dae190" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hinkuru.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="079b7e91-7715-46d0-977d-ae537ff0a15e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8f711d45-1a2f-44c1-9fdd-ed2db633e0e8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hinkuru.v 
\entryTyp root 
\gENG 
\gSPN encircle 
\e *hinkuru.v 
\c V1 
\ach jincuru 
\akh jinkuru 
\acl jincuru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl jincuro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jinkuru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jinkuro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hinkuru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="96953f8f-d868-4057-bb76-5c310aa133d6" ownerguid="35e61ec4-0542-4583-b5da-0aa5e31a35aa"> -<ExampleWords> -<AUni ws="en">have a baby, give birth, become a mother, bear a child, deliver, hatch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a mother giving birth?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="96956f25-5845-44f9-bf3f-702520108a85"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ene:ru</AUni> -<AUni ws="qvm-x-acl">ene:ru; ene:ru; ene:ro</AUni> -<AUni ws="qvm-x-akh">ene:ru</AUni> -<AUni ws="qvm-x-akl">ene:ru; ene:ru; ene:ro</AUni> -<AUni ws="qvm-x-ame">ene:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+enero</AUni> -<AUni ws="qvm-x-acl">+enero</AUni> -<AUni ws="qvm-x-akh">+enero</AUni> -<AUni ws="qvm-x-akl">+enero</AUni> -<AUni ws="qvm-x-ame">+enero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.467" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="772cac7b-1b94-4571-9ef5-4eb797b749ea" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+enero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1c1f65d7-347c-417e-9be1-beac6b42a5ba" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9d8ab109-a848-4bfb-a25c-a7d76bdfb0cb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +enero 
\entryTyp root 
\gENG January 
\gSPN enero 
\e +enero 
\c N0 
\ach ene:ru 
\akh ene:ru 
\acl ene:ru / _# 
\acl ene:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ene:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ene:ru / _# 
\akl ene:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ene:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ene:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="9695a660-1296-45ad-87d2-479635346293" ownerguid="ba2cc424-08aa-49b5-9fac-9d0ee5df9a2e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="9698921e-0975-4b34-a574-275dbd3db3f2" ownerguid="084fcee6-0c7c-4818-a44f-b3afd29d0f8e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1 V2/V2</Run> -</AStr> -</Custom> -<Definition> -<AStr ws="en"> -<Run ws="en">plural for directionals (undergoes lowering)</Run> -</AStr> -<AStr ws="es"> -<Run ws="es">plural (con un sufijo direccional)</Run> -</AStr> -</Definition> -<Gloss> -<AUni ws="en">PLDIR</AUni> -<AUni ws="es">PLDIR</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2ae2b1a8-66c6-48dc-bae3-78542bc06a22" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="96990f80-3444-4e9f-a585-202a1653b75b" ownerguid="7a3ac877-b973-4478-94b2-fe3e5fd4a556"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">MRK 9.18 Tsurëta supay elaqpitami pampaman saqtarin, poqshaytapis aqtutsin y kiruntapis uchutsin.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="9699d9ce-4a92-4e41-b659-9644d5c22995" ownerguid="b477381b-1e52-48fd-b3e6-dedbb3c1245d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">waterfalls</AUni> -<AUni ws="es">cascada</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1d162f6a-4499-4a82-b954-b2e6826dd6e9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="969b6e24-4ed4-4317-8c6d-6679d68aed61" ownerguid="e1c40888-f755-4237-a63f-2b1e50e4551b"> -<Form> -<AUni ws="qvm-x-ach">wachcu</AUni> -<AUni ws="qvm-x-acl">wachcu; wachcu; wachco</AUni> -<AUni ws="qvm-x-akh">wachku</AUni> -<AUni ws="qvm-x-akl">wachku; wachku; wachko</AUni> -<AUni ws="qvm-x-ame">wachku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="ReversalIndex" guid="969d7d6f-ba94-4fcd-a478-0d128eb9d423" ownerguid="af26d792-ea5e-11de-8f7e-0013722f8dec"> -<DateCreated val="2022-9-23 16:55:24.349" /> -<DateModified val="2022-9-23 16:55:24.349" /> -<Name> -<AUni ws="en">Spanish</AUni> -</Name> -<PartsOfSpeech> -<objsur guid="3579e0a0-4c90-4c4b-acf1-fb1a9b364c27" t="o" /> -</PartsOfSpeech> -<WritingSystem> -<Uni>es</Uni> -</WritingSystem> -</rt> -<rt class="MoStemMsa" guid="969db3b1-1c62-4f6c-9b75-665aeb8498e4" ownerguid="f3540c55-95d5-446a-8af7-002fea59c41f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="96a03b0e-d122-42d2-833a-39d0d7df3366" ownerguid="62b4ae33-f3c2-447a-9ef7-7e41805b6a02"> -<ExampleWords> -<AUni ws="en">behave, behavior, conduct, relate, relationship, socialize, society</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to how people act in relationship to each other?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="96a0fc9d-14b0-4e3f-aa8a-8e91bd92e8e3" ownerguid="4ebad5df-71d5-4a52-b3db-362245493461"> -<Form> -<AUni ws="qvm-x-ach">zambuli</AUni> -<AUni ws="qvm-x-acl">zambuli; zambule</AUni> -<AUni ws="qvm-x-akh">zambuli</AUni> -<AUni ws="qvm-x-akl">zambuli; zambule</AUni> -<AUni ws="qvm-x-ame">zambuli</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="96a1ad48-1a70-425b-bd20-59294902581f" ownerguid="767aa167-af3d-4e11-a68b-ec31f9d2ef1a"> -<Abbreviation> -<AUni ws="en">3.5.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.174" /> -<DateModified val="2022-9-23 16:55:8.174" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to gesturing--moving a part of the body to communicate a message.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33D" Non-Verbal Communication</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Gesture</AUni> -</Name> -<OcmCodes> -<Uni>201 Gestures and Signs</Uni> -</OcmCodes> -<Questions> -<objsur guid="5ba3a587-02f5-4f14-a8ef-c3f2826be651" t="o" /> -<objsur guid="10d3a014-b6ae-4b01-be14-2f751bdc7ff9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="96a32bc8-2d08-4819-b53c-11452cca5f5f" ownerguid="f3306815-e47c-4345-9ccd-b85729375237"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="96a40b54-88f0-4740-86a3-140912f24f24" ownerguid="6a70d393-1181-48e5-ac69-114d61dd348b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="55fc249a-e80a-4076-af16-ff40828253b3" t="o" /> -<objsur guid="4e38eb16-200c-4bd5-978c-e1955b85ae08" t="o" /> -<objsur guid="cb3c8962-70c3-4fc2-a70b-406c7006cd74" t="o" /> -<objsur guid="6cb3f433-e799-413d-94d0-ce9b8e964821" t="o" /> -<objsur guid="f6ccb99a-af83-4be2-a700-394fef5f9e0b" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="96a7baa4-4938-4215-a927-75694d19a802" ownerguid="8a5f50bf-1ae3-4b7c-bf73-ec15acd20e61"> -<Form> -<AUni ws="qvm-x-ach">iri</AUni> -<AUni ws="qvm-x-acl">iri; ire</AUni> -<AUni ws="qvm-x-akh">iri</AUni> -<AUni ws="qvm-x-akl">iri; ire</AUni> -<AUni ws="qvm-x-ame">iri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="96acc3dd-e9c4-41a5-a3f2-a111271bfe84"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pelo:ta</AUni> -<AUni ws="qvm-x-acl">pelo:ta</AUni> -<AUni ws="qvm-x-akh">pelo:ta</AUni> -<AUni ws="qvm-x-akl">pelo:ta</AUni> -<AUni ws="qvm-x-ame">pelo:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pelota</AUni> -<AUni ws="qvm-x-acl">+pelota</AUni> -<AUni ws="qvm-x-akh">+pelota</AUni> -<AUni ws="qvm-x-akl">+pelota</AUni> -<AUni ws="qvm-x-ame">+pelota</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.790" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="59ce5dcb-e0da-4d3e-8d08-a75a48401a96" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pelota</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ec54e917-bade-4172-89b6-0145874da5dd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e02ae925-29c3-4689-a87c-4a244065395f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pelota 
\entryTyp root 
\gENG ball 
\gSPN pelota 
\e +pelota 
\c N0 
\ach pelo:ta 
\akh pelo:ta 
\acl pelo:ta 
\akl pelo:ta 
\ame pelo:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="96ad84b3-27fa-4fb7-ac7d-d088fe89be0b" ownerguid="6473301d-843d-487c-9389-36a3a449b62a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="96afc413-77b1-4ac2-a157-60435c816db5" ownerguid="ecf4ab85-7d11-460d-9e4e-f50516bd0c07"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a7d43f94-ed2e-4dc9-9166-e7498006c4e7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="96b0f199-d298-4691-b10f-33c296a32ba0" ownerguid="f663e266-2977-46da-bf28-d49cafbf2474"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2KI 18.27 Gamcunaga pasaypa micanar ishpaniquita micunquipag y pasaypa yacunar chiulayniquitapis upunquipag.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="96b19f6b-a3d2-4b27-aaef-c996e2761c9f" ownerguid="bd9de99f-6a92-47ee-b6bc-e9877ea21202"> -<ExampleWords> -<AUni ws="en">find, discover, discovery, uncover, eureka, locate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to finding something that has been hidden?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="96b1e8c9-fa1d-4704-bfdc-6c9f79b24241"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">micha; micha:</AUni> -<AUni ws="qvm-x-acl">micha; micha:</AUni> -<AUni ws="qvm-x-akh">micha; micha:</AUni> -<AUni ws="qvm-x-akl">micha; micha:</AUni> -<AUni ws="qvm-x-ame">micha; micha:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mitra:</AUni> -<AUni ws="qvm-x-acl">*mitra:</AUni> -<AUni ws="qvm-x-akh">*mitra:</AUni> -<AUni ws="qvm-x-akl">*mitra:</AUni> -<AUni ws="qvm-x-ame">*mitra:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.457" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f4a86270-dde1-4f65-9e21-7130e8b6b46e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mitra:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="95056e7f-4c52-418e-8183-91406cb8d212" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="68bf6a41-4a0c-4e66-ae8c-64cff293f162" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mitra: 
\entryTyp root 
\gENG hinder 
\gSPN impedir 
\e *mitra: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach micha foreshortened 
\ach micha: 
\akh micha foreshortened 
\akh micha: 
\acl micha foreshortened 
\acl micha: 
\akl micha foreshortened 
\akl micha: 
\ame micha foreshortened 
\ame micha:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="96b5b766-4157-49a1-ad21-6abc1fa96394" ownerguid="1116e52e-f466-4211-b8df-a1154ad6f512"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="96b6e497-24e8-4de2-9178-74cf49212e78" ownerguid="f14c3188-4beb-4d1d-9299-6f5c3dfd9585"> -<Form> -<AUni ws="qvm-x-ach">ushnu</AUni> -<AUni ws="qvm-x-acl">ushnu; ushnu; ushno</AUni> -<AUni ws="qvm-x-akh">ushnu</AUni> -<AUni ws="qvm-x-akl">ushnu; ushnu; ushno</AUni> -<AUni ws="qvm-x-ame">ushnu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="96b705a9-ff7e-4296-a6c0-2b56f95648c3" ownerguid="7e9a90f9-1a0d-461a-b7eb-671c47a5affd"> -<Form> -<AUni ws="qvm-x-ach">zanja</AUni> -<AUni ws="qvm-x-acl">zanja</AUni> -<AUni ws="qvm-x-akh">zanja</AUni> -<AUni ws="qvm-x-akl">zanja</AUni> -<AUni ws="qvm-x-ame">zanja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="96b7c3a5-bd7d-4c25-8fd0-3cf3372d3844"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">raqui</AUni> -<AUni ws="qvm-x-acl">raqui; raqui; raque</AUni> -<AUni ws="qvm-x-akh">raki</AUni> -<AUni ws="qvm-x-akl">raki; raki; rake</AUni> -<AUni ws="qvm-x-ame">raki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*raki.n</AUni> -<AUni ws="qvm-x-acl">*raki.n</AUni> -<AUni ws="qvm-x-akh">*raki.n</AUni> -<AUni ws="qvm-x-akl">*raki.n</AUni> -<AUni ws="qvm-x-ame">*raki.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.236" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0df6ad0c-b37a-47eb-9d3b-82dcd25494d8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*raki.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="97e7cf35-1b15-4749-bb0b-98cb1d49fec3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bcb32dcc-b39a-4763-8714-7c20261c8b6f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *raki.n 
\entryTyp root 
\gENG separate 
\gSPN 
\e *raki.n 
\c N0 
\mp +FinalI 
\ach raqui 
\akh raki 
\acl raqui / _# 
\acl raqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl raque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl raki / _# 
\akl raki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl rake +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame raki 
\mcc *raki.n / ~_ 3P</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="96b7f510-9c54-4535-b104-c0831aea4424" ownerguid="15fb022e-1b45-41e9-bd8a-09ddc9dc6acd"> -<ExampleWords> -<AUni ws="en">apathetic, indifference, indifferent, listless, lethargic, neutral, nonchalant, uncaring</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to not being determined?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="96be0686-a1d5-438a-8994-106b42cbc6da" ownerguid="ee8fef09-1ba5-499f-a736-f2f0081b6cce"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">saturday</AUni> -<AUni ws="es">sabado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4b858c9d-5fb3-4fa4-817e-06452c516d5e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="96c077d1-9ff7-4f54-b3d9-35ec57c0d32f" ownerguid="49c878dd-277f-4bc9-b8ad-9ba192709108"> -<ExampleWords> -<AUni ws="en">Angora, longhaired, shorthaired, Persian, Siamese, tabby</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to types of cats?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="96c24d5b-8a5b-4358-811e-95c97634317a" ownerguid="d2fbac5f-56d8-44be-844c-ad2acc3db7ca"> -<Form> -<AUni ws="qvm-x-ach">repuestu; repuesto</AUni> -<AUni ws="qvm-x-acl">repuestu; repuestu; repuesto</AUni> -<AUni ws="qvm-x-akh">repuestu; repuesto</AUni> -<AUni ws="qvm-x-akl">repuestu; repuestu; repuesto</AUni> -<AUni ws="qvm-x-ame">repuestu; repuesto</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="96c25ee0-7d29-4ae0-b36d-8cf9b0458e14"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">naupa</AUni> -<AUni ws="qvm-x-acl">naupa</AUni> -<AUni ws="qvm-x-akh">nawpa</AUni> -<AUni ws="qvm-x-akl">nawpa</AUni> -<AUni ws="qvm-x-ame">nawpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñawpa.n</AUni> -<AUni ws="qvm-x-acl">*ñawpa.n</AUni> -<AUni ws="qvm-x-akh">*ñawpa.n</AUni> -<AUni ws="qvm-x-akl">*ñawpa.n</AUni> -<AUni ws="qvm-x-ame">*ñawpa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.598" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="80508e36-5771-40d3-9b2a-9e88309fdc78" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñawpa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7bd7fd79-d782-4077-9b4b-e5cda0781fff" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cf5fc70a-170c-44a6-bbb4-96ee6746a5dd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñawpa.n 
\entryTyp root 
\gENG in.front 
\gSPN adelante 
\e *ñawpa.n 
\c N0 
\ach naupa 
\akh nawpa 
\acl naupa 
\akl nawpa 
\ame nawpa 
\co pn ñu:pa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="96c2e0fd-14e3-4b1b-8056-05d3480d1538" ownerguid="607b5d6f-7721-4851-98c2-2c0eda05370e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">police</AUni> -<AUni ws="es">policía</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c3d64074-b750-49d2-b569-b70a0d32bb74" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="96c56420-a22e-4504-a031-727ec95e5493" ownerguid="d2c7f746-a2fd-4e12-bff5-84c612e376bd"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="96c6d6f2-b31a-478d-a9d1-b68349e48eef" ownerguid="a1443fa7-aecf-420b-9246-f082796f4f81"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="96c81b31-9e75-46ac-9768-1a43ac52534f" ownerguid="3dc5b56e-243f-4e4e-b250-97bd2f7ab8ba"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">famine</AUni> -<AUni ws="es">hambruna</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="381a46a1-69c1-45b5-bb66-ff3b7f998d62" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="96ca12fb-8af6-4d92-abeb-4962787c31d9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">papa:</AUni> -<AUni ws="qvm-x-acl">papa:</AUni> -<AUni ws="qvm-x-akh">papa:</AUni> -<AUni ws="qvm-x-akl">papa:</AUni> -<AUni ws="qvm-x-ame">papa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+papá</AUni> -<AUni ws="qvm-x-acl">+papá</AUni> -<AUni ws="qvm-x-akh">+papá</AUni> -<AUni ws="qvm-x-akl">+papá</AUni> -<AUni ws="qvm-x-ame">+papá</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.699" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f8c5ddd0-497e-4f14-ae33-378ba3c742a3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+papá</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="693ae820-c8e3-4c95-bd94-d2d0acb3975e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="41e5a3c8-0123-45e4-be60-c26664b6c54d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +papá 
\entryTyp root 
\gENG father 
\gSPN padre 
\e +papá 
\c N0 
\mp NeverForeshortened 
\ach papa: 
\akh papa: 
\acl papa: 
\akl papa: 
\ame papa: 
\mp +underlong 
\mp +FinalC 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="96ca3c3e-8b4d-46ba-81b6-bb663145713f" ownerguid="704c913f-781a-46cb-ab19-e67c655078b3"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">RUT 1.15 Gampis paylawan compañacur cuticuy.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="96cc86f0-f5f3-4dec-980b-46557778a88f" ownerguid="ebd37f6f-573c-4328-a021-71b197bb0b85" /> -<rt class="MoStemMsa" guid="96ce33d8-f6ae-4254-a072-488924b0ac6c" ownerguid="2b67b37f-1128-4394-95b3-db82d5225196"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="96cf7c49-a156-42d1-ad97-1afb030384f3" ownerguid="e6bc9f48-b268-46cf-820b-47dcc428530c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Matatias caycashganmanmi Israel runacuna mas masna juntacargan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="96cfcc81-d576-432d-85fb-f7e401e14a6e" ownerguid="bfe8902a-32a7-4092-93b2-9dcf3dce205f"> -<ExampleWords> -<AUni ws="en">be upset, hurt, distressed, troubled</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling upset about something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="96d3ecb7-004a-4325-8537-1f7ffc63c59c" ownerguid="b0e3486c-bd3d-4b5c-be9a-40cd2c0ce2a1"> -<ExampleWords> -<AUni ws="en">French braid</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What kinds of braids are there?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="96d49f90-8c9c-496c-988e-a9b1815dd69f" ownerguid="2269aeba-112c-4eab-a1e5-7d4f6aaf6c8d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ka</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ka</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="22806abf-f462-448a-bb3e-39bbf5d75aea" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -<Sense> -<objsur guid="909cfa11-00e3-4787-b51b-dfac729061be" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="96d55d8f-8542-4f56-8e5e-bce28f7ceb19"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wishtu</AUni> -<AUni ws="qvm-x-acl">wishtu; wishtu; wishto</AUni> -<AUni ws="qvm-x-akh">wishtu</AUni> -<AUni ws="qvm-x-akl">wishtu; wishtu; wishto</AUni> -<AUni ws="qvm-x-ame">wishtu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wishtu.r</AUni> -<AUni ws="qvm-x-acl">*wishtu.r</AUni> -<AUni ws="qvm-x-akh">*wishtu.r</AUni> -<AUni ws="qvm-x-akl">*wishtu.r</AUni> -<AUni ws="qvm-x-ame">*wishtu.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.688" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ce87759f-60bb-4b20-8878-e01aea918b53" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wishtu.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="225a35c4-22c0-44b9-8fe8-ca2f81599704" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="565b8703-fc7b-4135-b1d1-5714651f2f5e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wishtu.r 
\entryTyp root 
\gENG crooked 
\gSPN torcido 
\e *wishtu.r 
\c R0 
\ach wishtu 
\akh wishtu 
\acl wishtu / _# 
\acl wishtu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wishto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wishtu / _# 
\akl wishtu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl wishto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wishtu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="96d5a747-c7d3-4798-abd1-5b27d9d7635c" ownerguid="08239f53-daa5-47a6-9f39-29a9064b0c27"> -<ExampleWords> -<AUni ws="en">affix, anchor, annex, attach, batten, engraft, fix to, graft, moor, nail, screw, secure, stick to, tack</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to joining one thing to another?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="96dcaf59-afc7-49ae-89fc-87ea94015583" ownerguid="e4498a24-096e-47e6-ab99-d60a5cb19826"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="96dd6359-9eec-44ef-94bd-9d0273d159b6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tortilla</AUni> -<AUni ws="qvm-x-acl">tortilla</AUni> -<AUni ws="qvm-x-akh">tortilla</AUni> -<AUni ws="qvm-x-akl">tortilla</AUni> -<AUni ws="qvm-x-ame">tortilla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tortilla</AUni> -<AUni ws="qvm-x-acl">+tortilla</AUni> -<AUni ws="qvm-x-akh">+tortilla</AUni> -<AUni ws="qvm-x-akl">+tortilla</AUni> -<AUni ws="qvm-x-ame">+tortilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.965" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2da756c8-f724-42dd-907b-2fe240fcedd3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tortilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="671a1bca-0da2-4389-80a4-c79f4e1aa866" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="caccd402-1b37-4527-840c-caf4bbf64f79" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tortilla 
\entryTyp root 
\gENG 
\gSPN 
\e +tortilla 
\c N0 
\ach tortilla 
\akh tortilla 
\acl tortilla 
\akl tortilla 
\ame tortilla 
\i 2SA 13.6 Tsayman papänin watucog chayaptinmi Amnón caynog nergan: <<Cayman cachaycalämuy panë Tamarta caycho juc ishcay tortillacunata ancarir garamänanpag.>></Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="96de28a0-4d3a-4927-b22c-c3602d4b97e3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">runa</AUni> -<AUni ws="qvm-x-acl">runa</AUni> -<AUni ws="qvm-x-akh">runa</AUni> -<AUni ws="qvm-x-akl">runa</AUni> -<AUni ws="qvm-x-ame">runa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*runa</AUni> -<AUni ws="qvm-x-acl">*runa</AUni> -<AUni ws="qvm-x-akh">*runa</AUni> -<AUni ws="qvm-x-akl">*runa</AUni> -<AUni ws="qvm-x-ame">*runa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.388" /> -<DateModified val="2022-10-14 18:13:9.951" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dbbd8356-c9df-482b-a128-55aaaa8ad47f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*runa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="735a29e0-40d3-4d25-9e9a-e8181d173c29" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cf4862c0-1792-48e3-9385-fd47ccf1ccc5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *runa 
\entryTyp root 
\gENG man 
\gSPN hombre 
\e *runa 
\c N0 
\ach runa 
\akh runa 
\acl runa 
\akl runa 
\ame runa</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="96dfc4b5-3a56-4ba9-ab49-83f61c067e7e" ownerguid="d7cd6668-9bae-4d42-bca4-f870f4885424"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pti</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pti</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pti</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b2772da-2fbd-4846-99c3-d3f919125916" t="r" /> -</Morph> -<Msa> -<objsur guid="6a97cf20-558d-4866-ba04-48c4807bc533" t="r" /> -</Msa> -<Sense> -<objsur guid="5c9f1fed-2e6d-4ad2-b804-9d3f09a277d3" t="r" /> -</Sense> -</rt> -<rt class="WfiMorphBundle" guid="96e3907c-165d-4524-b713-bce1852436bc" ownerguid="d2822a2f-3338-46d4-bf35-0917358ce611"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ya</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ya</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ya</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ya</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ya</Run> -</AStr> -</Form> -<Morph> -<objsur guid="0266a2a0-8dee-41c8-9584-efdc790cb2f2" t="r" /> -</Morph> -</rt> -<rt class="MoStemMsa" guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" ownerguid="93d0971a-ec84-4f2d-a7ae-1b604f995601"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="96e6430e-2e16-401f-a96c-15d3ab24f6b7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shapra</AUni> -<AUni ws="qvm-x-acl">shapra</AUni> -<AUni ws="qvm-x-akh">shapra</AUni> -<AUni ws="qvm-x-akl">shapra</AUni> -<AUni ws="qvm-x-ame">shapra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shapra</AUni> -<AUni ws="qvm-x-acl">*shapra</AUni> -<AUni ws="qvm-x-akh">*shapra</AUni> -<AUni ws="qvm-x-akl">*shapra</AUni> -<AUni ws="qvm-x-ame">*shapra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.541" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ee38eff6-f7e0-4615-8da8-86216c9f9497" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shapra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="14b4a829-51d9-4f8d-aa18-79b6234d31fa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="420693e3-e1b0-4da6-b9a9-289c52652e66" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shapra 
\entryTyp root 
\gENG whisker 
\gSPN barba 
\e *shapra 
\c N0 
\ach shapra 
\akh shapra 
\acl shapra 
\akl shapra 
\ame shapra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="96e73a2c-be5f-4236-8f20-447d3dbefda8" ownerguid="1277cb9f-bf53-406e-a97f-3426cf3eee0b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="bd50af42-9d9c-40ab-a98a-81ba803c1805" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">long.live</AUni> -<AUni ws="es">viva</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2e801808-2f5f-43dd-94e2-b53149c2ef5e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="96e75226-dd4f-49af-b90e-405b30f6e366" ownerguid="64fa0ba7-73cb-40e9-a8d2-3e61fff146c9"> -<ExampleWords> -<AUni ws="en">dye, rinse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What techniques are used to dye hair?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="96e83b12-e492-4346-9c4d-a709843358e7" ownerguid="ce541ccc-6035-4a49-8396-93beb4f3a36f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">potato.fruit</AUni> -<AUni ws="es">fruta.de.papa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="92eddf75-d323-4c4a-8fa3-2f471dbe7aea" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="96ea0a4e-d24a-4a55-a9e0-f32766a2c5a5" ownerguid="8497fb66-8b91-46b9-a0d5-fb9385319561"> -<ExampleWords> -<AUni ws="en">tasteless, have no taste, not taste of anything, flavorless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words describe something that has no taste?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="96ea5712-6e0c-4282-89d5-f4bde408f12a" ownerguid="df7d8024-acee-4188-a227-c4943575aad3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="bc868a4c-25a1-4b8e-9523-538402348811" t="o" /> -</Examples> -<Gloss> -<AUni ws="es">ayudador</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fa73b50b-1d06-4c8a-b80c-2edaafa6139e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="96ec836c-4602-498b-8b56-31f7accbb793" ownerguid="dde9e168-217c-46ed-8b5d-ddf4139a3872"> -<Form> -<AUni ws="qvm-x-ach">agu</AUni> -<AUni ws="qvm-x-acl">agu; ago</AUni> -<AUni ws="qvm-x-akh">aqu</AUni> -<AUni ws="qvm-x-akl">aqu; aqo</AUni> -<AUni ws="qvm-x-ame">aqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="96f1fa13-28bb-417a-a251-7e88cc912657" ownerguid="3e8606b7-a314-4aea-a161-41cfd4009c80"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="96f273b1-b691-4510-bd81-976225c7017f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tabli:ta</AUni> -<AUni ws="qvm-x-acl">tabli:ta</AUni> -<AUni ws="qvm-x-akh">tabli:ta</AUni> -<AUni ws="qvm-x-akl">tabli:ta</AUni> -<AUni ws="qvm-x-ame">tabli:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tablita</AUni> -<AUni ws="qvm-x-acl">+tablita</AUni> -<AUni ws="qvm-x-akh">+tablita</AUni> -<AUni ws="qvm-x-akl">+tablita</AUni> -<AUni ws="qvm-x-ame">+tablita</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.764" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="63714a1c-329c-4cc0-8f30-8e9a27f5f90e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tablita</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="323546a7-3857-42c2-b1b2-dcbb20fd1712" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1dda2c36-411b-416f-aa5c-78a95fc8d275" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tablita 
\entryTyp root 
\gENG 
\gSPN 
\e +tablita 
\c N0 
\ach tabli:ta 
\akh tabli:ta 
\acl tabli:ta 
\akl tabli:ta 
\ame tabli:ta 
\i Introducción Bíblica: Waquin runacuna mituta lapsha tablïtatanog ruraycur ogulaman escribergan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="96f35de6-e916-416c-871f-36f784a0de2e" ownerguid="93481409-ad52-4f7c-a289-3fb3dea3cc37"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="96f99260-4fbe-4a43-9735-4c7e2bbd149d" ownerguid="41a8ce11-1743-4a6f-98b2-35174e008309"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">throw.down</AUni> -<AUni ws="es">tumbar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3b03bd47-c5cd-46eb-ae97-e6f3bce9e6e0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="96fa9319-14f3-4410-a3f7-af5e3bdcdfcb" ownerguid="f124a350-c42e-4830-802c-3d3e504eb958"> -<Form> -<AUni ws="qvm-x-ach">icsu</AUni> -<AUni ws="qvm-x-acl">icsu; icso</AUni> -<AUni ws="qvm-x-akh">iksu</AUni> -<AUni ws="qvm-x-akl">iksu; ikso</AUni> -<AUni ws="qvm-x-ame">iksu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="96fce07e-3b5e-4249-b23e-92e302930019" ownerguid="dc597a5b-37c8-4e1e-a71c-9bc1da75655b"> -<Form> -<AUni ws="qvm-x-ach">guema</AUni> -<AUni ws="qvm-x-acl">guema</AUni> -<AUni ws="qvm-x-akh">qema</AUni> -<AUni ws="qvm-x-akl">qema</AUni> -<AUni ws="qvm-x-ame">qima</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="96fcfbfe-c6a1-440d-86b3-3aff97ee6c84" ownerguid="f055291f-d636-4432-a812-8a667b8d2115"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="96fd0e4c-e683-4ad7-b558-a1f4c4481442" ownerguid="53ce5d16-865f-4de5-bae1-92badd1c9883"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="87dd5458-ac07-4851-a2b2-7ee4ef9441cb" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">shovel</AUni> -<AUni ws="es">pala</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="44e721b2-a967-46b4-a7e7-b05ef852b3d9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="96fd57a0-666a-4c8f-9d10-5cb48afe8d0e" ownerguid="9f792202-8023-4ef3-b269-5ae4b6908a0b"> -<ExampleWords> -<AUni ws="en">sacrifice, offering, devotion, consecration</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to offering a sacrifice?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="97028a01-c52b-4092-8449-90c22e561e0a" ownerguid="23190f9e-2db2-4ef9-8c0e-495dbef05571"> -<ExampleWords> -<AUni ws="en">looks, sex appeal, beauty, attraction, appeal, the lure of, charm, attractiveness, prettiness, sensuality</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a quality a person has that makes them attractive?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9704680f-9d20-4e28-a598-ca4f17b49543"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shogpi</AUni> -<AUni ws="qvm-x-acl">shogpi; shogpe</AUni> -<AUni ws="qvm-x-akh">shoqpi</AUni> -<AUni ws="qvm-x-akl">shoqpi; shoqpe</AUni> -<AUni ws="qvm-x-ame">shuqpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shuqpi.v</AUni> -<AUni ws="qvm-x-acl">*shuqpi.v</AUni> -<AUni ws="qvm-x-akh">*shuqpi.v</AUni> -<AUni ws="qvm-x-akl">*shuqpi.v</AUni> -<AUni ws="qvm-x-ame">*shuqpi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.652" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="666595de-2430-4f1b-80a5-081d74e62c7b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shuqpi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c03d34f5-d28b-4ef1-97c7-91e2881d303d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fafe086e-f384-4b56-ad18-e27cfb9374df" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shuqpi.v 
\entryTyp root 
\gENG pass.g.pig 
\gSPN jobear 
\e *shuqpi.v 
\c V2 
\mp +FinalI 
\ach shogpi 
\akh shoqpi 
\acl shogpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shogpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shoqpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shoqpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shuqpi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="97055cae-4abf-48af-87a2-ab2881d0b6ac" ownerguid="a2e9f6ab-ef2e-40b3-9014-cfbfb89e0590"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">abundancia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b1fffbdd-de57-4184-a42c-2de8fa6a363b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="9707f666-a3dd-4987-82e4-2508038e223d" ownerguid="ad4eb470-ce57-4c4a-9a65-553e6fca9e57"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">juice</AUni> -<AUni ws="es">chicha</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="37faed5d-0579-48de-bdb1-e593b1ee4037" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="970859b7-c3cb-4a02-ae6d-8b7a31efc2ef" ownerguid="aba3f7f1-9e13-4b48-acbb-3bf6d6bfa0e8"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">What is the <weight> of a litre of water?</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">weight, mass</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the weight of something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="970a70bf-bb15-4f18-92f0-8cc9d4c5b9cb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">actua</AUni> -<AUni ws="qvm-x-acl">actua</AUni> -<AUni ws="qvm-x-akh">actua</AUni> -<AUni ws="qvm-x-akl">actua</AUni> -<AUni ws="qvm-x-ame">actua</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+actuar</AUni> -<AUni ws="qvm-x-acl">+actuar</AUni> -<AUni ws="qvm-x-akh">+actuar</AUni> -<AUni ws="qvm-x-akl">+actuar</AUni> -<AUni ws="qvm-x-ame">+actuar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.629" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4d52a228-3336-4323-a086-8d41d94d2b3e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+actuar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="375b7926-fa74-44a9-a11e-e54bc287b376" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2cce71bb-e093-496f-ae46-287be3547e00" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +actuar 
\entryTyp root 
\gENG 
\gSPN 
\e +actuar 
\c V1 
\ach actua 
\akh actua 
\acl actua 
\akl actua 
\ame actua</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="970abc36-3952-4356-8b97-54088d58b93a" ownerguid="b82c7ba0-9f4e-44da-bcd0-d30f5b224de5"> -<ExampleWords> -<AUni ws="en">dose, dosage, course of medicine, overdose</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to some medicine that is given at one time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="970c286d-08aa-4f31-aa3c-66dfd8db6dd7" ownerguid="c4330001-83ca-485d-8b9b-09f7e1be60cc"> -<ExampleWords> -<AUni ws="en">interpret, understand, translate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to interpreting something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="970c92e8-de41-40ab-87c3-9d3ca0d9dc56" ownerguid="76a06e45-99f7-446f-a2e8-e23edf6064bd"> -<ExampleWords> -<AUni ws="en">rot</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making something decay?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="970dbf65-f491-4cb3-b665-eeba23463c95" ownerguid="956eaac9-bc62-4c3f-b9c2-ed4971e8b2b5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="970efa08-8544-4fec-92a4-bc191ec4b54e" ownerguid="82e4394a-2f58-4356-8d9c-1ad9dbe95293"> -<ExampleWords> -<AUni ws="en">cool, chilly, drafty, nippy, fresh, crisp, bracing, chill</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe a time or place that is cool?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="9711a4ae-e529-45e4-be9b-a276d8559ee2" ownerguid="699732d0-79d8-46c4-8d61-961295dda65c"> -<Form> -<AUni ws="qvm-x-ach">dundi; dundi</AUni> -<AUni ws="qvm-x-acl">dundi; dundi; dunde</AUni> -<AUni ws="qvm-x-akh">dundi; dundi</AUni> -<AUni ws="qvm-x-akl">dundi; dundi; dunde</AUni> -<AUni ws="qvm-x-ame">dundi; dundi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9716531f-5e81-45ea-a174-639bd260fbb1" ownerguid="04370e1f-25aa-4d9e-97c5-de9b59156666"> -<ExampleWords> -<AUni ws="en">widow, widower, dowager</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to refer to someone whose husband or wife has died?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="971928bd-969f-4a1f-92bb-c3a816d15d5a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ca:cu; ca:ca</AUni> -<AUni ws="qvm-x-acl">ca:cu; ca:co; ca:ca</AUni> -<AUni ws="qvm-x-akh">ka:ku; ka:ka</AUni> -<AUni ws="qvm-x-akl">ka:ku; ka:ko; ka:ka</AUni> -<AUni ws="qvm-x-ame">ka:ku; ka:ka</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.497" /> -<DateModified val="2022-10-16 14:56:6.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5c3eb2e0-b53b-4293-ad9a-0d4fa1069f39" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">CMPLT1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6c34753a-e6ec-4e61-a9eb-6c7283150496" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4a32a3d0-289a-4ff2-b00f-631c2a0eb557" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx CMPLT1 
\entryTyp suffix 
\gENG CMPLT 
\gSPN CMPLT 
\e CMPLT1 
\c V1/V1 V2/V2 
\o 020 
\mp PMlowered +foreshortens 
\ach ca:cu 
\ach ca:ca morphlowered 
\akh ka:ku 
\akh ka:ka morphlowered 
\acl ca:cu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ca:co +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ca:ca morphlowered 
\akl ka:ku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ka:ko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ka:ka morphlowered 
\ame ka:ku 
\ame ka:ka morphlowered</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="971a60e2-f021-4438-99f4-d4030dff0738" ownerguid="313ca832-ce91-44c9-bb35-bd130c39d924"> -<ExampleWords> -<AUni ws="en">sharp, razor sharp, keen edged</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is sharp?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="971a9cea-c155-4c6d-832f-1fe304592b97" ownerguid="23190f9e-2db2-4ef9-8c0e-495dbef05571"> -<ExampleWords> -<AUni ws="en">attract, be attractive to, appeal to, tempt, seduce, draw, lure, act sexy, excite, turn someone on, titillate, flirt, flirtatious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to attracting someone sexually?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="971be41f-7e8e-49b6-af37-881e142715b5" ownerguid="cb58440f-0e54-42ee-9fdd-1aa3fc8b7caf"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="971c55d8-d8bf-4d9a-9f06-8ac5f85d753e" ownerguid="448675cc-a73a-4a52-9228-bd56c7378c89"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="971d4ac1-f78a-4449-ad2c-46a914490b15"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lipshi</AUni> -<AUni ws="qvm-x-acl">lipshi; lipshe</AUni> -<AUni ws="qvm-x-akh">lipshi</AUni> -<AUni ws="qvm-x-akl">lipshi; lipshe</AUni> -<AUni ws="qvm-x-ame">lipshi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llipshi</AUni> -<AUni ws="qvm-x-acl">*llipshi</AUni> -<AUni ws="qvm-x-akh">*llipshi</AUni> -<AUni ws="qvm-x-akl">*llipshi</AUni> -<AUni ws="qvm-x-ame">*llipshi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.205" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="031ef6b4-b5d6-4f20-af74-f9540dc5a85b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llipshi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3e1f27a1-bd93-491e-93be-278b15111c60" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9ddd9a3a-18d6-454d-b197-8107bd796977" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llipshi 
\entryTyp root 
\gENG 
\gSPN comer.carne 
\e *llipshi 
\c V1 
\mp +FinalI 
\ach lipshi 
\akh lipshi 
\acl lipshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lipshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lipshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lipshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lipshi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="971e61fc-c38c-4bba-8949-16afc3641bf4" ownerguid="987fc4a4-4519-4253-9e50-58f06d10962b"> -<Form> -<AUni ws="qvm-x-ach">shuya; shuyä</AUni> -<AUni ws="qvm-x-acl">shuya; shuyä</AUni> -<AUni ws="qvm-x-akh">shuya; shuyä</AUni> -<AUni ws="qvm-x-akl">shuya; shuyä</AUni> -<AUni ws="qvm-x-ame">shuya; shuyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="971ff426-5621-4d4a-a028-5b67d1d8c5a7" ownerguid="df2ee830-0668-43d7-8a32-e2fd3e7b31d8"> -<Question> -<AUni ws="en">(4) crastinal: tomorrow.</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="97219600-e2ec-4d68-972c-9745588cf2f7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gollush</AUni> -<AUni ws="qvm-x-acl">gollush</AUni> -<AUni ws="qvm-x-akh">qollush</AUni> -<AUni ws="qvm-x-akl">qollush</AUni> -<AUni ws="qvm-x-ame">qullush</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qullush</AUni> -<AUni ws="qvm-x-acl">*qullush</AUni> -<AUni ws="qvm-x-akh">*qullush</AUni> -<AUni ws="qvm-x-akl">*qullush</AUni> -<AUni ws="qvm-x-ame">*qullush</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.851" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="db2d8b6d-d711-4b5b-a3a9-6d48580a9275" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qullush</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2593d643-e4fd-47e0-9bb9-0afb58c1ef44" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f5b2ff72-09b1-4cfa-9bb2-0b3885f9b7cf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qullush 
\entryTyp root 
\gENG round.rock 
\gSPN piedra.redonda 
\e *qullush 
\c N0 
\mp +FinalC 
\ach gollush 
\akh qollush 
\acl gollush 
\akl qollush 
\ame qullush</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="97248d2a-b920-4dd9-9eb5-f36890a82e7d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ambicia</AUni> -<AUni ws="qvm-x-acl">ambicia</AUni> -<AUni ws="qvm-x-akh">ambicia</AUni> -<AUni ws="qvm-x-akl">ambicia</AUni> -<AUni ws="qvm-x-ame">ambicia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ambicionar</AUni> -<AUni ws="qvm-x-acl">+ambicionar</AUni> -<AUni ws="qvm-x-akh">+ambicionar</AUni> -<AUni ws="qvm-x-akl">+ambicionar</AUni> -<AUni ws="qvm-x-ame">+ambicionar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.749" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b517cf54-7c60-4d86-b872-044b5cf3108b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ambicionar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ad6f75e6-6807-4525-858d-75123b6cb344" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="154ba120-9c27-40ae-95e4-58ffec829bb6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ambicionar 
\entryTyp root 
\gENG aspire 
\gSPN ambicionar 
\e +ambicionar 
\c V1 
\ach ambicia 
\akh ambicia 
\acl ambicia 
\akl ambicia 
\ame ambicia</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9726b4cb-5676-48c4-be02-79a554a9fa45" ownerguid="984dc2b7-6fdd-4257-abdc-5873abb7bb70"> -<ExampleWords> -<AUni ws="en">decline, decrease, diminish, drop, dwindle, fall, plummet, slide, tumble</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is becoming smaller in degree?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9729a818-219a-4faf-800a-79ba9ec9328b" ownerguid="1674883d-c851-471f-b894-bbfd6ef28e77"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.dawn</AUni> -<AUni ws="es">amanecer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f6e14fb1-6559-4667-8f14-a5f025efd226" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="9730239c-9efe-49c9-b2cb-b2ee75558583" ownerguid="e6132df9-8fc6-4d1d-8d11-2ebc9e7f7669"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="97305909-6dc0-4eab-8994-c0942d49e763" ownerguid="1c3c8af0-56b9-4617-862e-21f39b388606"> -<ExampleWords> -<AUni ws="en">drop dead, keel over, slow death, sudden death, painful death, excruciating death, gruesome death, horrible death, die quietly, die peacefully, die with boots on, die fighting, fade away, succumb (to illness), drown, drowning, asphyxiate, suffocate, choke to death, sacrifice, succumb (to a disease), suffocate, suffocation, starvation, starve, starve to death, burn to death, freeze to death</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words are used to describe the manner in which someone dies?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="97330f32-4d7d-4ad2-b61c-4061a024bce1" ownerguid="adb34adc-a53b-4ac5-be7a-6322eace9918"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">g</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">g</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">q</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">q</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">q</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7feef4b7-a285-4201-a3a4-057f77618b78" t="r" /> -</Morph> -<Msa> -<objsur guid="964f8962-17d5-4738-8902-97236137c419" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="9733bd9e-5a9c-4b14-82eb-1ed8be75faf8" ownerguid="0de28f92-c851-413c-bb6c-3ad21f5e267f"> -<ExampleWords> -<AUni ws="en">listen, listen to, listen for, hear someone out, lend an ear, tune in, audit, give an ear to, heed, pay attention to, prick up your ears, be all ears, attend to, get an earful, hearken</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to listening to something?</AUni> -</Question> -</rt> -<rt class="Segment" guid="9733f3ae-f560-40df-b918-08ddf0177ce0" ownerguid="87ac5eab-8861-4950-9488-05704b3a2175"> -<Analyses> -<objsur guid="2ee21c8c-1e85-4195-8e41-8d1d1ba80671" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemMsa" guid="973515a4-21b5-4114-9f6a-1d08a5631df5" ownerguid="a10096c2-f086-4d14-adbf-e792f13efc32"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="97393a8a-b288-4380-8644-4a6530a874df"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">celo:su</AUni> -<AUni ws="qvm-x-acl">celo:su; celo:su; celo:so</AUni> -<AUni ws="qvm-x-akh">celo:su</AUni> -<AUni ws="qvm-x-akl">celo:su; celo:su; celo:so</AUni> -<AUni ws="qvm-x-ame">celo:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+celoso</AUni> -<AUni ws="qvm-x-acl">+celoso</AUni> -<AUni ws="qvm-x-akh">+celoso</AUni> -<AUni ws="qvm-x-akl">+celoso</AUni> -<AUni ws="qvm-x-ame">+celoso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.102" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="617b45b3-557d-4957-927a-08baf8a73d9f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+celoso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e923f41c-fb04-4d06-b423-0298a3470519" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8434c0d7-d490-40cf-8b48-4451fbe9ac09" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +celoso 
\entryTyp root 
\gENG jealous 
\gSPN 
\e +celoso 
\c N0 
\ach celo:su 
\akh celo:su 
\acl celo:su / _# 
\acl celo:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl celo:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl celo:su / _# 
\akl celo:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl celo:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame celo:su</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="97393c87-07e2-4633-88f9-c8bf4d9b935c" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<Abbreviation> -<AUni ws="en">3.4.2.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.141" /> -<DateModified val="2022-9-23 16:55:8.141" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to hating someone or something--to dislike someone or something very much.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88Z Hate, Hateful; 25Q Abhor</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Hate, detest</AUni> -</Name> -<Questions> -<objsur guid="adfd810e-97b0-477d-9966-dca46192500c" t="o" /> -<objsur guid="6a69918e-c56d-4a11-8d7d-952d84741dbe" t="o" /> -<objsur guid="625f89c1-55d1-4d5b-8ce2-991ebf4097fc" t="o" /> -<objsur guid="10063a7d-94d1-4806-921e-5dbf7ccea63e" t="o" /> -<objsur guid="e9d20f84-4577-494d-9944-bc8875c64585" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="642ff468-e6c8-4fd0-8f52-262efa8f7774" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="9739969e-9324-481e-96c8-54c5c95a433a"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">mikutsin</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="9739fd54-ab63-4f8a-821c-dee62b8176de" ownerguid="bfd8c3e0-7007-40d5-856b-7f41e88d5397"> -<Form> -<AUni ws="qvm-x-ach">jana</AUni> -<AUni ws="qvm-x-acl">jana</AUni> -<AUni ws="qvm-x-akh">jana</AUni> -<AUni ws="qvm-x-akl">jana</AUni> -<AUni ws="qvm-x-ame">hana</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="973a83c5-b591-4e6d-ad6c-ef145a504620" ownerguid="734b34e7-9c46-4c9a-9b89-7b5555f499ee"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">damage</AUni> -<AUni ws="es">daño</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="deb791f4-c893-4c12-9823-85473b69c8a0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="973b4eff-562a-4ea5-942f-f4022bbd0409" ownerguid="cece6750-bb2f-46ae-8d44-52f2f9f3cdb2"> -<Form> -<AUni ws="qvm-x-ach">cushuru</AUni> -<AUni ws="qvm-x-acl">cushuru; cushuru; cushuro</AUni> -<AUni ws="qvm-x-akh">kushuru</AUni> -<AUni ws="qvm-x-akl">kushuru; kushuru; kushuro</AUni> -<AUni ws="qvm-x-ame">kushuru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="973b9161-980e-4e88-9d35-812359cd5dc0" ownerguid="2d563d27-8ac3-41c9-b326-856c9e1f6401"> -<ExampleWords> -<AUni ws="en">nook</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a concave part of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="973be127-4dec-448f-9e21-27d154944bfa" ownerguid="9e589440-28a7-4313-91d9-9c2510476605"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">thin</AUni> -<AUni ws="es">flaco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bcba6d75-2fec-4e45-9be8-b482a45ce306" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoDerivAffMsa" guid="973e08a0-60b3-4ff1-9973-ac70ea0a16bc" ownerguid="a8001168-2cc5-43dc-a478-51bbc7fbb33f"> -<FromPartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</FromPartOfSpeech> -<ToPartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</ToPartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9742999c-86c5-479e-9a5a-0834c96a5201" ownerguid="bce3f390-452c-4ca9-8c36-5fbcfd6b4755"> -<ExampleWords> -<AUni ws="en">change someone, discipline, train, reform someone, influence, have a good/bad influence on someone, turn someone toward/away from something</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to trying to change someone's behavior?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="97456324-195c-41eb-93dd-bbaf7077ea65" ownerguid="98f9ceff-e8a2-4e24-abc4-561b80bb5889"> -<ExampleWords> -<AUni ws="en">preserved, well-preserved, unspoiled</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that has been preserved?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9745f913-96ee-4aea-8fcb-196cb217f799" ownerguid="3f6dc9af-0c50-44d5-99f0-4aa67c668186"> -<ExampleWords> -<AUni ws="en">oil well, gas well, oil field</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to an oil or gas well?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="974b5d40-77de-4040-9080-4160075f9fff" ownerguid="02d404d7-f3d7-492c-92a0-c6c9ff1a1908"> -<ExampleWords> -<AUni ws="en">dine, breakfast (v), lunch (v), snack (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to eating a meal?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="974e5f23-f543-46e4-9b99-24c4845e741d" ownerguid="e545baab-581d-4af8-81f2-5a884e272349"> -<ExampleWords> -<AUni ws="en">Arabian, pinto, pony, thoroughbred, racehorse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What types of horses are there?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="974fcfa5-eb5a-4e41-9909-e971a0b6bd9c" ownerguid="ec97ede4-0162-478e-be56-0e3f4b1f975a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gift</AUni> -<AUni ws="es">regalo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="70bd2050-520d-45ba-b701-edd7740a18bb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="9750735a-736d-4aeb-afdb-74a893e08b89"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">urcu</AUni> -<AUni ws="qvm-x-acl">urcu; urcu; urco</AUni> -<AUni ws="qvm-x-akh">urku</AUni> -<AUni ws="qvm-x-akl">urku; urku; urko</AUni> -<AUni ws="qvm-x-ame">urku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*urku</AUni> -<AUni ws="qvm-x-acl">*urku</AUni> -<AUni ws="qvm-x-akh">*urku</AUni> -<AUni ws="qvm-x-akl">*urku</AUni> -<AUni ws="qvm-x-ame">*urku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.271" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d66affed-bee2-4d41-93e6-ec8f358ca2ec" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*urku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="46479ac8-6bd3-470b-a67c-82ae073447fa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="75be2d01-f947-4ab9-b4b7-0deb6b7fba1b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *urku 
\entryTyp root 
\gENG forehead 
\gSPN frente 
\e *urku 
\c N0 
\ach urcu 
\akh urku 
\acl urcu / _# 
\acl urcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl urco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl urku / _# 
\akl urku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl urko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame urku</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="9752ea82-ac5f-421a-bb3e-1cb3d5c7865c" ownerguid="c9da4369-8c6f-47c3-bab4-d59d0de8d022"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" t="r" /> -</Morph> -<Msa> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="9755c63e-87db-4b72-b38f-4e0d7c48b317" ownerguid="5e0c6d02-ba15-46fe-866d-4025533c9bc2"> -<Form> -<AUni ws="qvm-x-ach">gueshwa</AUni> -<AUni ws="qvm-x-acl">gueshwa</AUni> -<AUni ws="qvm-x-akh">qeshwa</AUni> -<AUni ws="qvm-x-akl">qeshwa</AUni> -<AUni ws="qvm-x-ame">qishwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="975d0109-1bba-4b0e-85b8-2c6b51c8e074" ownerguid="9f3b4cab-dc8a-430e-88f3-d3002df64fb8"> -<Abbreviation> -<AUni ws="en">7.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.498" /> -<DateModified val="2022-9-23 16:55:8.498" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to sitting and squatting.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>17B Sit x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Sit</AUni> -</Name> -<Questions> -<objsur guid="35c451b8-6059-48ca-a368-ff981fabc02d" t="o" /> -<objsur guid="8bbb8e9b-914f-4ade-9a19-8241a3c3ae58" t="o" /> -<objsur guid="c4b6ebb7-87b0-4f48-a5b8-8c06776090a3" t="o" /> -<objsur guid="2301ef20-57e9-4c0a-a62a-5a1092f82622" t="o" /> -<objsur guid="5ca02c04-8f57-4205-9599-c29ec9185fea" t="o" /> -<objsur guid="4dd3091f-75aa-476c-bcb4-3e246fd359cb" t="o" /> -<objsur guid="cf61a339-9892-4f47-9500-1a2506706780" t="o" /> -<objsur guid="8813091d-1989-4cf9-87ba-12deb754367e" t="o" /> -<objsur guid="ffb9a35e-c3be-41da-bc4a-49a735df7cc4" t="o" /> -<objsur guid="75218d21-dc6f-4d56-a8b3-de034c9a420a" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="4fc734f2-a91d-4693-8caf-e7fe51a2df8a" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="975f810d-5e5c-4234-af13-dfbac1b8f0dc" ownerguid="9aaf8588-96ab-49f5-90b0-833e7dd1661d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ready</AUni> -<AUni ws="es">listo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c5133a0e-dc93-431d-b222-b26d6fe08772" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="975f9548-a89c-41c1-8038-efbc43dcb716" ownerguid="fae60727-af59-4ee9-a797-99872e299efc"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">qui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">qui</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ki</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="8fc7d848-8007-4dcc-8c36-9b0b4da26f05" t="r" /> -</Morph> -<Msa> -<objsur guid="bbbfe118-132f-4744-9f12-6945daa4a632" t="r" /> -</Msa> -<Sense> -<objsur guid="7a11c70f-471b-4542-a37b-bcfc9731537d" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="9761c645-67a0-4d95-83b7-e9fec662b05e" ownerguid="31d0407f-cb5e-4fae-96c7-bbef69cc8009"> -<Form> -<AUni ws="qvm-x-ach">curu</AUni> -<AUni ws="qvm-x-acl">curu; curu; curo</AUni> -<AUni ws="qvm-x-akh">kuru</AUni> -<AUni ws="qvm-x-akl">kuru; kuru; kuro</AUni> -<AUni ws="qvm-x-ame">kuru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="97621f1d-7036-489d-906d-7baa665c399d" ownerguid="46f79067-6395-43de-9a12-a47e2857f005"> -<Form> -<AUni ws="qvm-x-ach">raströju</AUni> -<AUni ws="qvm-x-acl">raströju; raströju; raströjo</AUni> -<AUni ws="qvm-x-akh">raströju</AUni> -<AUni ws="qvm-x-akl">raströju; raströju; raströjo</AUni> -<AUni ws="qvm-x-ame">raströju</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="97650a78-f3cb-4331-add6-bd11ef9e5b90" ownerguid="0618b32f-755c-417d-bbf8-2e8104f74e65"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="97667d7a-7588-45f4-b3ca-cb3ecd3e6203" ownerguid="384c653a-aba8-4e94-bfc9-1f1f6fec0ec4"> -<Form> -<AUni ws="qvm-x-ach">cëna</AUni> -<AUni ws="qvm-x-acl">cëna</AUni> -<AUni ws="qvm-x-akh">cëna</AUni> -<AUni ws="qvm-x-akl">cëna</AUni> -<AUni ws="qvm-x-ame">cëna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="9767d2aa-33d4-48da-b2b8-48ba06b6ed1b" ownerguid="ff7cf41e-ec29-4e35-b0c8-d61b635ac6eb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="r" /> -</Morph> -</rt> -<rt class="CmDomainQ" guid="97695a12-30dc-451c-88c0-4f52059d9c95" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<ExampleWords> -<AUni ws="en">footsteps</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(20) What words refer to the sound of someone walking?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="976c29bd-cfda-45ba-a51b-ade2940d20d6"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">mözuyarkurna</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="976c5be4-942b-4a82-bcd3-edc0ba62d768" ownerguid="9626fb26-242a-4a7d-81db-f88ba1fbeb7c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="976cafa5-ef66-42a8-8c51-93026b5ce9dc" ownerguid="c250e6e6-092d-43d7-8a10-fcaebc4e64bd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">endure</AUni> -<AUni ws="es">aguantar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="217b1425-2d48-40ba-ab37-268ec3fecb7b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="9770bc11-92bd-48e0-a5b8-d23197546676" ownerguid="ae19b24e-c503-4897-938a-1529a6600d39"> -<Form> -<AUni ws="qvm-x-ach">lipta</AUni> -<AUni ws="qvm-x-acl">lipta</AUni> -<AUni ws="qvm-x-akh">lipta</AUni> -<AUni ws="qvm-x-akl">lipta</AUni> -<AUni ws="qvm-x-ame">lipta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="9775b87e-4bf7-48ba-9786-8432e4e6c6eb" ownerguid="b5cad18b-f00e-4673-aa09-ea2eb36bed24"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="977898e2-60f7-447e-940f-78a7eb14f1fc" ownerguid="b01ae659-98cd-44f9-8771-1696c490fcbf"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="97791eb6-fd27-4be2-a62d-d7d63bfc1705" ownerguid="8bcc6508-263d-4d0d-8eb7-25ec230a157e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1 R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stand.up</AUni> -<AUni ws="es">pararse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="403f2e6e-c261-4054-8084-8f6918ad5b92" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="977bc6e1-0ee1-4993-a567-64a8f044eaef" ownerguid="431f7d00-5a75-4537-9824-fcb14e98657b"> -<Form> -<AUni ws="qvm-x-ach">sumbador</AUni> -<AUni ws="qvm-x-acl">sumbador</AUni> -<AUni ws="qvm-x-akh">sumbador</AUni> -<AUni ws="qvm-x-akl">sumbador</AUni> -<AUni ws="qvm-x-ame">sumbador</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="977bc733-204f-4f2c-837b-ff262eae44e0" ownerguid="152ae262-6ff3-434d-addf-9f19188babd4"> -<Form> -<AUni ws="qvm-x-ach">nombra</AUni> -<AUni ws="qvm-x-acl">nombra</AUni> -<AUni ws="qvm-x-akh">nombra</AUni> -<AUni ws="qvm-x-akl">nombra</AUni> -<AUni ws="qvm-x-ame">nombra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="977c4370-9593-4c53-80b0-236918417848" ownerguid="8b5cf122-0643-4ac1-a44f-e0eae95410a8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="95b3aed8-4154-4ca4-9f2d-76e26a1246fc" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">growl</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9b5daf03-b0c0-418a-afa9-58cd7a102cd5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="977c4b66-ca50-45d3-b046-ff6c0c2005db" ownerguid="350b8501-e64e-4fcc-8961-0ddd63ba94cd"> -<Form> -<AUni ws="qvm-x-ach">color</AUni> -<AUni ws="qvm-x-acl">color</AUni> -<AUni ws="qvm-x-akh">color</AUni> -<AUni ws="qvm-x-akl">color</AUni> -<AUni ws="qvm-x-ame">color</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="977ccc2a-3214-49ae-b752-bc1f9e878cfc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rca; rca:</AUni> -<AUni ws="qvm-x-acl">rca; rca:</AUni> -<AUni ws="qvm-x-akh">rka; rka:</AUni> -<AUni ws="qvm-x-akl">rka; rka:</AUni> -<AUni ws="qvm-x-ame">rka; rka:</AUni> -</Custom> -<AlternateForms> -<objsur guid="8150a0ee-00d2-4be1-a8be-c798339dcc68" t="o" /> -</AlternateForms> -<DateCreated val="2022-9-23 18:26:20.548" /> -<DateModified val="2022-10-16 13:50:32.98" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="02a148f9-2ba9-4863-ac51-356f7fcbb059" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">PLIMPF</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fa42621c-0397-4bd6-a862-5548780fa809" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0a876e85-8442-4b81-a3de-5e0efb0f297f" t="o" /> -<objsur guid="654096f1-cab7-400a-925f-48d3c3d72b91" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx PLIMPF 
\entryTyp suffix 
\gENG PLIMPF 
\gSPN PLIMPF 
\e PLIMPF 
\c V1/V1 V2/V2 
\o 050 
\mp +foreshortens 
\mp +underlong 
\ach rca foreshortened 
\ach rca: 
\akh rka foreshortened 
\akh rka: 
\acl rca foreshortened 
\acl rca: 
\akl rka foreshortened 
\akl rka: 
\ame rka foreshortened 
\ame rka: 
\mp +FinalC 
\mp +FinalLength 
\mcc PLIMPF / _ IMPFV1 / _ BKFRTH</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="97832dfb-d490-40d0-ade8-a5074e868a76"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">peda:zu</AUni> -<AUni ws="qvm-x-acl">peda:zu; peda:zu; peda:zo</AUni> -<AUni ws="qvm-x-akh">peda:zu</AUni> -<AUni ws="qvm-x-akl">peda:zu; peda:zu; peda:zo</AUni> -<AUni ws="qvm-x-ame">peda:zu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pedazo</AUni> -<AUni ws="qvm-x-acl">+pedazo</AUni> -<AUni ws="qvm-x-akh">+pedazo</AUni> -<AUni ws="qvm-x-akl">+pedazo</AUni> -<AUni ws="qvm-x-ame">+pedazo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.780" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5997b228-34a9-4ac6-849c-36ae6428e7fd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pedazo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="edd200ca-50f3-4898-8da0-53d8b59bb007" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a36b3adf-17a4-479e-9eec-dd41cf22b387" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pedazo 
\entryTyp root 
\gENG piece 
\gSPN pedazo 
\e +pedazo 
\c N0 
\ach peda:zu 
\akh peda:zu 
\acl peda:zu / _# 
\acl peda:zu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl peda:zo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl peda:zu / _# 
\akl peda:zu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl peda:zo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame peda:zu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="9784bfdb-75b5-496c-9d4b-879fd1e5bd75"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Tayta</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="97871369-7b9f-4202-b579-0895acaa8632" ownerguid="512e8ebe-f0d9-40fc-bc3b-c0465185c662"> -<Form> -<AUni ws="qvm-x-ach">linäza</AUni> -<AUni ws="qvm-x-acl">linäza</AUni> -<AUni ws="qvm-x-akh">linäza</AUni> -<AUni ws="qvm-x-akl">linäza</AUni> -<AUni ws="qvm-x-ame">linäza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="97874183-7cf9-4454-a9a1-a633ad33d864" ownerguid="99c41bb7-6f4e-4287-b39c-89538f759f29"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="97885cab-cd96-4d34-a62a-3e3daac0c165" ownerguid="01459db0-bf2a-422b-8d55-0ab505aea2b4"> -<Abbreviation> -<AUni ws="en">4.4.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a person being separate or alone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Separate, alone</AUni> -</Name> -<Questions> -<objsur guid="dce2793a-ad69-48dc-ac05-338ff26586ce" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="97893091-7ac7-4c94-818a-551bf27bdeb4" ownerguid="2611b86e-0798-407a-9971-76ffc7ccbc1a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">give</AUni> -<AUni ws="es">regalar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2c2114b5-b47c-4755-ac7a-f23e81f592a4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="978aae92-3c54-4a28-9565-28ecec93b8f5" ownerguid="d92b9f97-110c-4e3a-9aec-90c55b96dc01"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b699320c-1182-41cf-a567-d8008edefdda" t="r" /> -</Morph> -</rt> -<rt class="LexEntry" guid="978b67de-3568-4965-a5e2-3e50cf8fa622"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gastu; gasto</AUni> -<AUni ws="qvm-x-acl">gastu; gastu; gasto</AUni> -<AUni ws="qvm-x-akh">gastu; gasto</AUni> -<AUni ws="qvm-x-akl">gastu; gastu; gasto</AUni> -<AUni ws="qvm-x-ame">gastu; gasto</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gasto</AUni> -<AUni ws="qvm-x-acl">+gasto</AUni> -<AUni ws="qvm-x-akh">+gasto</AUni> -<AUni ws="qvm-x-akl">+gasto</AUni> -<AUni ws="qvm-x-ame">+gasto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.609" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e2cd1753-d710-48a3-acb9-6ddb8dc9655a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gasto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="19e26172-8ee0-4dab-a5a3-1ab23f739382" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="95c372da-d272-458b-8aa5-e2b0b6c47c4d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gasto 
\entryTyp root 
\gENG expense 
\gSPN gasto 
\e +gasto 
\c N0 
\ach gastu / ~_# 
\ach gasto / _# 
\akh gastu / ~_# 
\akh gasto / _# 
\acl gastu / ~_# 
\acl gastu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gasto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl gastu / ~_# 
\akl gastu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl gasto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame gastu / ~_# 
\ame gasto / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="978dec40-74ca-4309-862b-5d55d97c7726" ownerguid="9f792202-8023-4ef3-b269-5ae4b6908a0b"> -<ExampleWords> -<AUni ws="en">sacrifice, offering, burnt offering, votive offering, gift</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to what is sacrificed?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9792deeb-6fbf-4c07-b3a6-5d15d25312a9" ownerguid="31ccb9e3-d434-4430-ac84-486cc5a1c53d"> -<ExampleWords> -<AUni ws="en">difficulty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to how difficult a job is?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="979411f5-03cc-4d71-b0f9-d74f5d4a3c08" ownerguid="b4de1d53-0874-4181-a642-87c7c372f11f"> -<Form> -<AUni ws="qvm-x-ach">fusburus</AUni> -<AUni ws="qvm-x-acl">fusburus</AUni> -<AUni ws="qvm-x-akh">fusburus</AUni> -<AUni ws="qvm-x-akl">fusburus</AUni> -<AUni ws="qvm-x-ame">fusburus</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StStyle" guid="9795fb02-12d8-4d1e-9546-5f1bf1c848ea" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="0" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Strong</Uni> -</Name> -<Rules> -<Prop bold="invert"></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<Usage> -<AUni ws="en">Material to stand out boldly</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="LexSense" guid="979661d3-f062-423b-92be-d351781eaf47" ownerguid="8533a67b-6f09-443c-8a39-4355317e3a28"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">crooked</AUni> -<AUni ws="es">torcido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bd0f8292-8ad5-40bb-abc3-7976169236fc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="9797da27-2dc8-4d6a-a1b1-302122301abf" ownerguid="5c08c178-187e-4355-90bb-decf96e0e8b4"> -<Form> -<AUni ws="qvm-x-ach">cuncha</AUni> -<AUni ws="qvm-x-acl">cuncha</AUni> -<AUni ws="qvm-x-akh">kuncha</AUni> -<AUni ws="qvm-x-akl">kuncha</AUni> -<AUni ws="qvm-x-ame">kuncha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoInflAffMsa" guid="97997a78-9c73-4b23-b19e-1a2681024e61" ownerguid="f711d703-1eac-4059-b0da-24d34bd8df5e"> -<PartOfSpeech> -<objsur guid="a4fc78d6-7591-4fb3-8edd-82f10ae3739d" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="f9e1228b-4c5b-4e23-bd04-d513eddcbaea" t="r" /> -</Slots> -</rt> -<rt class="MoStemAllomorph" guid="979b4501-7a02-4d68-8107-b3f4fbc9e79c" ownerguid="70e2867f-a306-48e2-8bef-1308c97b7c35"> -<Form> -<AUni ws="qvm-x-ach">calavëra</AUni> -<AUni ws="qvm-x-acl">calavëra</AUni> -<AUni ws="qvm-x-akh">calavëra</AUni> -<AUni ws="qvm-x-akl">calavëra</AUni> -<AUni ws="qvm-x-ame">calavëra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="979be69d-7c93-4e8d-b2d7-f1943c8b3157"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">imprimi</AUni> -<AUni ws="qvm-x-acl">imprimi; imprime</AUni> -<AUni ws="qvm-x-akh">imprimi</AUni> -<AUni ws="qvm-x-akl">imprimi; imprime</AUni> -<AUni ws="qvm-x-ame">imprimi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+imprimir</AUni> -<AUni ws="qvm-x-acl">+imprimir</AUni> -<AUni ws="qvm-x-akh">+imprimir</AUni> -<AUni ws="qvm-x-akl">+imprimir</AUni> -<AUni ws="qvm-x-ame">+imprimir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.812" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6bb11c7b-98cd-46e7-a910-e29bd8bfb2db" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+imprimir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="62f0d7af-5ea0-4eeb-a1ea-48a48008ad2f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="531e7a77-fb4f-4c22-8882-0bdcf52a82a8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +imprimir 
\entryTyp root 
\gENG to.print 
\gSPN imprimir 
\e +imprimir 
\c V1 
\mp +FinalI 
\ach imprimi 
\akh imprimi 
\acl imprimi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl imprime +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl imprimi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl imprime +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame imprimi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="97a31406-a20f-4333-802f-f24d4a776ca8" ownerguid="85f211ae-cc16-4042-8c27-e99ff8f01f61"> -<ExampleWords> -<AUni ws="en">allocate, allot, award, confer, grant, present</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to officially giving something to someone?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="97a3ab31-c8a3-4e1c-8790-10d74532d894" ownerguid="297fee80-2171-4516-a2db-90b599f8cb45"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bear</AUni> -<AUni ws="es">parir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b6c4ff26-c9e8-484a-b138-297c945e7305" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="97a42fae-1b45-48be-9c0a-90d144534689" ownerguid="f2c32894-64b5-436c-ab8f-b5045fa2a753"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="f38bd8d8-def5-4c52-90d7-c189a435d80b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="97a56d0e-59dd-4dbc-90ae-ac17b3d79c5c" ownerguid="8bb975a0-a459-4684-ad1d-60df82586d49"> -<Form> -<AUni ws="qvm-x-ach">urya</AUni> -<AUni ws="qvm-x-acl">urya</AUni> -<AUni ws="qvm-x-akh">urya</AUni> -<AUni ws="qvm-x-akl">urya</AUni> -<AUni ws="qvm-x-ame">urya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="97a62eb6-6aa7-42de-b251-e6ba935dbf72" ownerguid="1344dce6-9fae-41ec-ad33-2fe557289a0e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Shilquirishayqui.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="97acd5d3-b720-4cac-a002-789172c1424a" ownerguid="612424b8-997e-4661-a452-772e14a3c4a0"> -<ExampleWords> -<AUni ws="en">reject, not accept, refuse, decline, turn down, take a rain check, have nothing to do with, turn up your nose at, throw out, say no to, veto, vote against, give something the thumbs down, dismiss, rebuff</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to rejecting an offer?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="97adeb63-959a-45c9-81b7-9c63cabe6409" ownerguid="eaacfc93-b8dc-4f0f-ab2f-524b6590e911"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">vengar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="de3354f3-5a50-4057-a51d-350c63719f2f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="97ae18cb-5bf7-4d96-b653-37753a27fd08" ownerguid="5b7666bd-c6c1-45e7-aa2e-1799fcb16d97"> -<ExampleWords> -<AUni ws="en">name (v), call, christen</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to giving a name to someone or something?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="97b2eedd-af8e-4d19-a47a-6d974081935e" ownerguid="ca2f88ed-5d2b-4d01-baf7-e6ca8e0b8879"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yarpa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yarpa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yarpa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yarpa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yarpa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="c9777f31-7d74-4129-9c1f-371fd36b7319" t="r" /> -</Morph> -<Msa> -<objsur guid="ec49278f-13c3-4a3f-8610-07ca758fe2a1" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="97b3e0d9-f649-4db9-b9ec-c2fd4eaf1abc" ownerguid="6ed67bed-4755-4ff6-8325-091d6c82186d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="43a6e00c-6214-4193-94b7-73e5a4a092c9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="97b6a68e-54f2-4e93-a6da-fa516a8aa206" ownerguid="2c96d9ad-62d9-47eb-b44a-060e3f497217"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="97b72009-1a4d-44d7-ab89-419600c00f19"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">baye:ta</AUni> -<AUni ws="qvm-x-acl">baye:ta</AUni> -<AUni ws="qvm-x-akh">baye:ta</AUni> -<AUni ws="qvm-x-akl">baye:ta</AUni> -<AUni ws="qvm-x-ame">baye:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+balleta</AUni> -<AUni ws="qvm-x-acl">+balleta</AUni> -<AUni ws="qvm-x-akh">+balleta</AUni> -<AUni ws="qvm-x-akl">+balleta</AUni> -<AUni ws="qvm-x-ame">+balleta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.941" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a4c4d622-7ac8-4732-99a0-ed394434e0a1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+balleta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f4c119e0-3463-4ddc-9c00-251c5f579c78" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3ff9b3bb-918b-4baf-92aa-604e49789df0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +balleta 
\entryTyp root 
\gENG cloth 
\gSPN balleta 
\e +balleta 
\c N0 
\ach baye:ta 
\akh baye:ta 
\acl baye:ta 
\akl baye:ta 
\ame baye:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="97b80117-57ad-40e2-9901-4905f78c18e0" ownerguid="8439c4da-3e3a-4949-9ea2-56c9fef05b83"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">secretary</AUni> -<AUni ws="es">secretario</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="70ca42b2-0ad6-405d-8c80-efd12f4b8d75" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="97b8b60d-0a9a-4091-8217-e78cadc304db" ownerguid="7bca1201-31f8-4f65-8da9-af0eff36b388"> -<ExampleWords> -<AUni ws="en">gossip, rumor, tale, report, juicy detail, hearsay, scandal, slander, second hand story</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to what is said in gossip?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="97baae03-212c-446c-9059-214d198cce9d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sue:ru</AUni> -<AUni ws="qvm-x-acl">sue:ru; sue:ru; sue:ro</AUni> -<AUni ws="qvm-x-akh">sue:ru</AUni> -<AUni ws="qvm-x-akl">sue:ru; sue:ru; sue:ro</AUni> -<AUni ws="qvm-x-ame">sue:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+suero</AUni> -<AUni ws="qvm-x-acl">+suero</AUni> -<AUni ws="qvm-x-akh">+suero</AUni> -<AUni ws="qvm-x-akl">+suero</AUni> -<AUni ws="qvm-x-ame">+suero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.742" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ca148449-00ca-4a64-9788-0f06174c39d9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+suero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b37e28d2-d11a-418d-983b-4edf830d297b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="728be364-1b88-4c5b-920a-02cbdfbdf15d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +suero 
\entryTyp root 
\gENG 
\gSPN suero 
\e +suero 
\c N0 
\ach sue:ru 
\akh sue:ru 
\acl sue:ru / _# 
\acl sue:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sue:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sue:ru / _# 
\akl sue:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sue:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sue:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="97bb75ae-42bc-4f7b-8d9b-d9c865e08db4" ownerguid="0fb54373-f990-4be9-8eb8-2277f4eb45af"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="97bbbbfe-e9a6-438c-a239-b2403f2a5fda" ownerguid="06b70dd3-13cf-4bbd-8e80-557e3ab59ed0"> -<Form> -<AUni ws="qvm-x-ach">talón; talon</AUni> -<AUni ws="qvm-x-acl">talón; talon</AUni> -<AUni ws="qvm-x-akh">talón; talon</AUni> -<AUni ws="qvm-x-akl">talón; talon</AUni> -<AUni ws="qvm-x-ame">talón; talon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="97bd0a0c-42f9-4027-9b07-08e88a5f00f1" ownerguid="81ecd805-5f71-4a50-81f2-f54772c89d15"> -<Form> -<AUni ws="qvm-x-ach">panta</AUni> -<AUni ws="qvm-x-acl">panta</AUni> -<AUni ws="qvm-x-akh">panta</AUni> -<AUni ws="qvm-x-akl">panta</AUni> -<AUni ws="qvm-x-ame">panta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="97bf7d0a-f030-4807-89c1-10e52d7a3a89" ownerguid="5ec4c46f-784d-4e6e-a3ab-e8e8e603c376"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="e970cb94-ce60-4f30-b13a-d44b563e97a2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="97c1807c-0edd-45ab-afc3-a9f0e382db21"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jancha</AUni> -<AUni ws="qvm-x-acl">jancha</AUni> -<AUni ws="qvm-x-akh">jancha</AUni> -<AUni ws="qvm-x-akl">jancha</AUni> -<AUni ws="qvm-x-ame">hancha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hantra.v</AUni> -<AUni ws="qvm-x-acl">*hantra.v</AUni> -<AUni ws="qvm-x-akh">*hantra.v</AUni> -<AUni ws="qvm-x-akl">*hantra.v</AUni> -<AUni ws="qvm-x-ame">*hantra.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.668" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="845996c9-f2d4-449e-8cc2-7bd892f68d67" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hantra.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f8774755-8525-4351-ab80-92cb787a1b67" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="06ac439b-0455-401c-bf4a-783531308dc3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hantra.v 
\entryTyp root 
\gENG grasp 
\gSPN empuñar 
\e *hantra.v 
\c V2 
\ach jancha 
\akh jancha 
\acl jancha 
\akl jancha 
\ame hancha</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="97c18288-da96-4be3-818f-b4d6a14693c1"> -<Analyses> -<objsur guid="f6271e8f-3bbe-4c81-be8d-3160910bbe0d" t="o" /> -</Analyses> -<Checksum val="-1703896134" /> -<Form> -<AUni ws="qvm-x-akh">juchu</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="97c3952f-c41f-4a57-99a9-c837d00a6197" ownerguid="c753fc8b-22ae-4e71-807f-56fb3ebd3cdd"> -<ExampleWords> -<AUni ws="en">aphrodisiac</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to something used to increase sexual pleasure?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="97c578b1-e37b-49f7-acf7-76d8620e979b" ownerguid="de7a9f49-482c-45a6-82a7-b222fda78b7c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">scorpion</AUni> -<AUni ws="es">alacrán</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="37f99b50-3a99-4441-8d9f-20091de8ed43" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="97c57bde-2ea4-48c6-8192-461b3ff0af72" ownerguid="d3b00c1b-d3e3-43fd-a46d-9da5221817ef"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">banter</AUni> -<AUni ws="es">tener.controversia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4ed60a3b-a1ba-4ff0-9cb1-ee556f6e47d7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="97cc9e37-cfac-4c4f-a99b-f302763bac01"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">abril</AUni> -<AUni ws="qvm-x-acl">abril; abril; abrel</AUni> -<AUni ws="qvm-x-akh">abril</AUni> -<AUni ws="qvm-x-akl">abril; abril; abrel</AUni> -<AUni ws="qvm-x-ame">abril</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+abril</AUni> -<AUni ws="qvm-x-acl">+abril</AUni> -<AUni ws="qvm-x-akh">+abril</AUni> -<AUni ws="qvm-x-akl">+abril</AUni> -<AUni ws="qvm-x-ame">+abril</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.619" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cbbd457e-93e0-45ec-bf3c-1fb8644af3b2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+abril</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8ae35b9e-50bc-427c-8c12-b633575f5bff" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="94bdf146-9a96-4c6b-9f3e-e90085f3d166" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +abril 
\entryTyp root 
\gENG April 
\gSPN abril 
\e +abril 
\c N0 
\mp +FinalC 
\ach abril 
\akh abril 
\acl abril / _# 
\acl abril +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl abrel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl abril / _# 
\akl abril +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl abrel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame abril</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="97cfa993-e9f4-4f63-82d4-feaf1134c864"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wiuya</AUni> -<AUni ws="qvm-x-acl">wiuya</AUni> -<AUni ws="qvm-x-akh">wiwya</AUni> -<AUni ws="qvm-x-akl">wiwya</AUni> -<AUni ws="qvm-x-ame">wiwya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wiwya</AUni> -<AUni ws="qvm-x-acl">*wiwya</AUni> -<AUni ws="qvm-x-akh">*wiwya</AUni> -<AUni ws="qvm-x-akl">*wiwya</AUni> -<AUni ws="qvm-x-ame">*wiwya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.709" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="35dea042-a941-4ab3-9e2b-559d3353bc12" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wiwya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="427caf99-75f8-44cc-8bd5-6d0f4384aa07" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0a54d8cc-a702-496f-b6bd-18906798c5dd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wiwya 
\entryTyp root 
\gENG fast 
\gSPN rápido 
\e *wiwya 
\c V1 
\ach wiuya 
\akh wiwya 
\acl wiuya 
\akl wiwya 
\ame wiwya 
\i HOS 11.11 Pishgucuna wiwyayla pärishgannogmi paycunapis Egiptupita wiuyayla cutimongapag.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="97cfd793-7aae-41df-ab67-df8ed8c1eb7b" ownerguid="f2543afb-e4d0-44ec-883f-8744db660677"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="97d11f10-1e2a-43f3-af5f-f08fb9734f33" ownerguid="a9db2851-6ec1-43c5-89df-c27ea6f2b7a6"> -<Form> -<AUni ws="qvm-x-ach">gasapa</AUni> -<AUni ws="qvm-x-acl">gasapa</AUni> -<AUni ws="qvm-x-akh">qasapa</AUni> -<AUni ws="qvm-x-akl">qasapa</AUni> -<AUni ws="qvm-x-ame">qasapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="97d6943f-c721-4e41-acfa-54b142235685" ownerguid="a0d073df-d413-4dfd-9ba1-c3c68f126d90"> -<ExampleWords> -<AUni ws="en">meteor, shooting star, falling star, meteor trail, meteor shower</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to meteors?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="97d699ee-fd7d-4eaa-a2ec-21e6adaaea6a" ownerguid="0f4113c9-0759-4a57-80c0-640b82663ffa"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="97d88a1b-8834-4df0-a69e-c0457ad7f2a0" ownerguid="ed21ddba-be9e-45f5-914b-27d46ee0e2a7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="97d97ab2-ed30-4daa-a8de-2e03eb0ab92e" ownerguid="27a558b3-c84b-4d59-894b-53f62204ac8f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="97dbafdc-5a68-4874-a018-66e5ad0badc3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">inventa</AUni> -<AUni ws="qvm-x-acl">inventa</AUni> -<AUni ws="qvm-x-akh">inventa</AUni> -<AUni ws="qvm-x-akl">inventa</AUni> -<AUni ws="qvm-x-ame">inventa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+inventar</AUni> -<AUni ws="qvm-x-acl">+inventar</AUni> -<AUni ws="qvm-x-akh">+inventar</AUni> -<AUni ws="qvm-x-akl">+inventar</AUni> -<AUni ws="qvm-x-ame">+inventar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.832" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6007e6f3-c63f-465d-8956-ac57030ac756" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+inventar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="14246d05-1c39-4e4a-ab88-3aa7e5206529" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ff0af7ec-8fb1-4547-b9e7-4119cd4beafd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +inventar 
\entryTyp root 
\gENG 
\gSPN 
\e +inventar 
\c V1 
\ach inventa 
\akh inventa 
\acl inventa 
\akl inventa 
\ame inventa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="97de10da-2d6a-4376-a7de-bba0ef21ad99" ownerguid="97e1aba5-2ac1-44a3-8f18-59b2347a54a1"> -<ExampleWords> -<AUni ws="en">flooring, wooden floor, linoleum, tile floor, dirt floor, cement floor, cow dung</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What materials are used to make a floor?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="97e04cdb-f7dd-4641-94a3-e9ef8b198bc4" ownerguid="85f211ae-cc16-4042-8c27-e99ff8f01f61"> -<ExampleWords> -<AUni ws="en">be generous, lavish something on, shower</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to giving many things to someone?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="97e1aba5-2ac1-44a3-8f18-59b2347a54a1" ownerguid="cde96694-79e5-44af-8d38-d988d1938e5f"> -<Abbreviation> -<AUni ws="en">6.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.458" /> -<DateModified val="2022-9-23 16:55:8.458" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the materials used to make a building.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>7H Building Materials</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Building materials</AUni> -</Name> -<OcmCodes> -<Uni>339 Building Supplies Industries</Uni> -</OcmCodes> -<Questions> -<objsur guid="d76a72a4-2db3-4efb-9cda-27830327757c" t="o" /> -<objsur guid="0aeccd3e-0952-4569-8cbb-8bff0abe2733" t="o" /> -<objsur guid="68a004d3-ae7b-4ea4-99a8-233105f55906" t="o" /> -<objsur guid="d66b4ad5-7141-4283-a6f7-f1fd9431f949" t="o" /> -<objsur guid="44dc5b75-5e51-4dd2-b5fa-b09f190fb6f9" t="o" /> -<objsur guid="97de10da-2d6a-4376-a7de-bba0ef21ad99" t="o" /> -<objsur guid="72b0b82e-692d-4d21-91e2-4eb60e68c577" t="o" /> -<objsur guid="7ad7cabe-f610-4fa3-9769-de718dcb8107" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="4a44ac87-5ad5-44de-8170-9fd88b056010" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="97e35372-d469-40f7-a06a-2e7be72b3e34"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">two</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="97e51834-40c8-4394-ae43-3a3b66ba99c4" ownerguid="c235964c-7af8-4f15-95fc-7d47a850a71f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ready</AUni> -<AUni ws="es">alistar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="80b0b813-e6dc-4d83-ad2f-e99de5d3f080" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="97e78036-09f5-4c79-9bd3-990cbef09a79" ownerguid="0335fea0-5034-4542-9273-6a33f229dbb5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">split</AUni> -<AUni ws="es">partir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="252f2eb5-2597-4b0b-9e9b-900032570ebb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="97e7cf35-1b15-4749-bb0b-98cb1d49fec3" ownerguid="96b7c3a5-bd7d-4c25-8fd0-3cf3372d3844"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="97eadecd-0d73-494b-a38a-89e45a79d7a6" ownerguid="95883da9-2f84-4779-b644-a6fd0a82ec93"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="97ec494e-cfa4-4af0-b99a-aca5c9adcbdf" ownerguid="1e7743e1-9108-4f56-8450-7c908507d477"> -<Form> -<AUni ws="qvm-x-ach">watu</AUni> -<AUni ws="qvm-x-acl">watu; wato</AUni> -<AUni ws="qvm-x-akh">watu</AUni> -<AUni ws="qvm-x-akl">watu; wato</AUni> -<AUni ws="qvm-x-ame">watu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="97ed5af8-29ca-428d-8ac5-c61b61a963fd" ownerguid="d01f1c51-522e-4b35-81b3-00577dbfa3bd"> -<Abbreviation> -<AUni ws="en">8.3.3.3.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.617" /> -<DateModified val="2022-9-23 16:55:8.617" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is multicolored--having many different colors.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Multicolored</AUni> -</Name> -<Questions> -<objsur guid="2b1112a8-00db-491d-ac54-d058abc4ddde" t="o" /> -<objsur guid="01d6db15-d861-4133-a2da-875254834b00" t="o" /> -<objsur guid="7450572a-580e-4d22-96f0-76c685ba8c94" t="o" /> -<objsur guid="684879a1-8a81-453e-bff2-0213203c9b7d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="97ef570f-2b4e-414b-89d3-10f365b9ca44" ownerguid="9063dafc-4004-43eb-9956-0c946e22d99c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">tejido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9d4ab0e2-c0e8-4131-97dc-1ae62b067081" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="97f40359-f4e8-4545-9ba5-980b47487540" ownerguid="d68911f6-6507-483a-b015-44726fdf868a"> -<Abbreviation> -<AUni ws="en">6.1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.367" /> -<DateModified val="2022-9-23 16:55:8.367" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is artificial--something that is made by people.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Artificial</AUni> -</Name> -<Questions> -<objsur guid="f413d73a-4de4-4725-86eb-7b552a0ca356" t="o" /> -<objsur guid="b0075ed5-c2d5-4dcf-bc00-2b2d8160e786" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="97f4b120-beca-46b6-ab42-57d87ee89ba3" ownerguid="a56ab66b-6c3c-4116-9ada-e8430569dca8"> -<Form> -<AUni ws="qvm-x-ach">llëna</AUni> -<AUni ws="qvm-x-acl">llëna</AUni> -<AUni ws="qvm-x-akh">llëna</AUni> -<AUni ws="qvm-x-akl">llëna</AUni> -<AUni ws="qvm-x-ame">llëna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="97f67183-81aa-4edf-b2a8-eb3e31f01d12" ownerguid="741c417a-11e9-460c-9ab3-51b8220df016"> -<ExampleWords> -<AUni ws="en">hit the shore, break on the shore/rocks, break against, break over, crash against, crash down on, lap against, wash against the shore, gentle wash of the waves</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What do waves do when they hit the shore?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="97f7e317-de59-417c-b8a9-d2054b82ae6d" ownerguid="3d020b79-f1d4-4a06-bae2-2daaa658474b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="97f888c8-ea6a-4698-b790-2bb9163bae3f" ownerguid="984dc2b7-6fdd-4257-abdc-5873abb7bb70"> -<ExampleWords> -<AUni ws="en">decline (n), decrease, fall, reduction, tumble</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the amount by which something became smaller?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="97fb3356-ac4c-4e76-98de-10508f8d4b17" ownerguid="2c2d5805-2762-4a00-845d-bdc330d69918"> -<Form> -<AUni ws="qvm-x-ach">aypa</AUni> -<AUni ws="qvm-x-acl">aypa</AUni> -<AUni ws="qvm-x-akh">aypa</AUni> -<AUni ws="qvm-x-akl">aypa</AUni> -<AUni ws="qvm-x-ame">aypa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="97fcc7f2-4485-44b6-aa87-086e216f7d33" ownerguid="0e551ad2-042f-4035-8e3d-0f8da29e7ef3"> -<Form> -<AUni ws="qvm-x-ach">gaycu; gayca</AUni> -<AUni ws="qvm-x-acl">gaycu; gayco; gayca</AUni> -<AUni ws="qvm-x-akh">qayku; qayka</AUni> -<AUni ws="qvm-x-akl">qayku; qayko; qayka</AUni> -<AUni ws="qvm-x-ame">qayku; qayka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="97fdc440-edf9-4da6-97ef-6d8cc308e993" ownerguid="0644f4da-c9fe-4239-bbe5-6efc85f98968"> -<ExampleWords> -<AUni ws="en">park</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to land that has a special use?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="97febdac-6408-4ea2-85e0-52628656daea" ownerguid="4eca9893-e721-4194-97a0-289b6e2b5f12"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="3022168e-4457-4e3e-a753-50b6be4129e7" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="48fdb5f9-3187-4a4b-a0e8-b2f7d3df69e3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="980023d6-5775-4bc0-8ab3-2f67f4707a53" ownerguid="51e888b5-f778-43fe-8a33-5b956e876eec"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">teacher</AUni> -<AUni ws="es">profesor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="40e0fc88-ad7b-409f-ba80-22361ca2fe24" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="980198db-ecf6-4b5a-98bc-c12d4286df77" ownerguid="e0ad6bb1-d422-408a-83f8-f1a7661ed225"> -<ExampleWords> -<AUni ws="en">face-up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is facing or pointing upwards?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9804176a-ea81-41f3-b7f4-726ee01b6039"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pali:tu</AUni> -<AUni ws="qvm-x-acl">pali:tu; pali:tu; pali:to</AUni> -<AUni ws="qvm-x-akh">pali:tu</AUni> -<AUni ws="qvm-x-akl">pali:tu; pali:tu; pali:to</AUni> -<AUni ws="qvm-x-ame">pali:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+palito</AUni> -<AUni ws="qvm-x-acl">+palito</AUni> -<AUni ws="qvm-x-akh">+palito</AUni> -<AUni ws="qvm-x-akl">+palito</AUni> -<AUni ws="qvm-x-ame">+palito</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.669" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9e1edd45-19b1-46c6-908d-fbcdcd3fe301" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+palito</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="54afb938-ed9f-4ced-b352-a66aa5b93353" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="646df3ab-9582-45d4-9725-7472f92a66e3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +palito 
\entryTyp root 
\gENG stick 
\gSPN palito 
\e +palito 
\c N0 
\ach pali:tu 
\akh pali:tu 
\acl pali:tu / _# 
\acl pali:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pali:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pali:tu / _# 
\akl pali:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pali:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pali:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="98083c2e-f677-45f7-912d-2069621e3ccf" ownerguid="789add20-33d4-440c-9d8f-92f41e492adf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="2a9ef917-25e7-43c8-93a6-555f4f0cb203" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9809e7c4-5707-41c4-a6ec-84046211aafa" ownerguid="9351d5b6-5a87-422a-9e82-ca6a0bacd3e9"> -<ExampleWords> -<AUni ws="en">calm, quiet, peaceful</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe a calm place?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="980de7db-380d-4612-a4bc-761a35ec3953" ownerguid="f054c3a4-731f-41e5-9df0-eefe478d748b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="66501b10-dc20-4f0d-abf5-4c9c403bfef6" t="o" /> -<objsur guid="6b22de7b-5b45-404d-80c4-bd4a6b32076e" t="o" /> -<objsur guid="9956c4ae-c53e-44b5-9114-5dafe266a6c0" t="o" /> -<objsur guid="539332b1-6bb1-484b-b81b-e7c0e07dfa51" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="9810a34f-de31-4e21-9a73-207d238d979d" ownerguid="7cb1fe51-099f-4381-a420-115b4c343bf1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dive</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ed9cc75e-082f-40a9-8108-03c2d26f7eb9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="98185a5d-f358-4e10-abc4-80e06693034a" ownerguid="23190f9e-2db2-4ef9-8c0e-495dbef05571"> -<ExampleWords> -<AUni ws="en">unattractive, be a turn-off, sexless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe someone who is not attractive?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="98189584-19e6-4889-8bbf-92bd6972c3a8" ownerguid="f3aa5ec5-b872-43f1-ac23-42d9a371442b"> -<Form> -<AUni ws="qvm-x-ach">ashash</AUni> -<AUni ws="qvm-x-acl">ashash</AUni> -<AUni ws="qvm-x-akh">ashash</AUni> -<AUni ws="qvm-x-akl">ashash</AUni> -<AUni ws="qvm-x-ame">ashash</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="981af5e7-86c0-4f77-9c42-0df9570e02dc" ownerguid="b98d1ecc-60c8-45c5-b939-f45f5d404b01"> -<Form> -<AUni ws="qvm-x-ach">imani</AUni> -<AUni ws="qvm-x-acl">imani; imane</AUni> -<AUni ws="qvm-x-akh">imani</AUni> -<AUni ws="qvm-x-akl">imani; imane</AUni> -<AUni ws="qvm-x-ame">imani</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="981d8935-6612-4c78-b11e-7d39ad4ea75a" ownerguid="77447104-5c11-46c4-a902-8962e310fec5"> -<Category> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</Category> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="e4a486b0-e6b9-479f-abfb-1fa76c4fba0b" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="98220c0d-27e5-47f4-95d9-b61043081a1d" ownerguid="3c9dd0d1-805e-4451-87b9-000ebbef9354"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">need</AUni> -<AUni ws="es">necesitar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cad56e0b-e952-4e6c-af95-41145bf487a9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="98236f54-97ae-4570-86dd-caf75302374c" ownerguid="9003a1d0-1a36-4d51-91c3-b55e655aa606"> -<Form> -<AUni ws="qvm-x-ach">cösa</AUni> -<AUni ws="qvm-x-acl">cösa</AUni> -<AUni ws="qvm-x-akh">cösa</AUni> -<AUni ws="qvm-x-akl">cösa</AUni> -<AUni ws="qvm-x-ame">cösa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="98237a84-d5ed-438d-9001-bc42bf4af1f3" ownerguid="726923d4-b25c-46eb-8ab0-427207177ae3"> -<ExampleWords> -<AUni ws="en">ripen, age (cheese), allow cream to rise, allow bread to rise</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to allowing food to ripen?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="98245850-8657-48d9-b6ec-05d30bd1229b" ownerguid="6c305af5-cff5-4f7f-bd89-040d4c265355"> -<ExampleWords> -<AUni ws="en">thin, rarefy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to making something less dense?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="98267c8e-acb0-4796-acea-d0e37a018348" ownerguid="9ce5e945-6932-4709-a90f-4c8e414b3214"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">brush</AUni> -<AUni ws="es">arbustal</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="51e2b33e-718a-4ad9-b769-a0e7306274df" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="9826cbc8-4b21-4043-a38b-6f71bffa16ef" ownerguid="7e973f42-7d44-4724-b3e4-ef7d3dc08b6d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="9829bf1b-4dbd-4452-93ae-a0bcda5a6442" ownerguid="15dc9f41-febb-4e65-afe0-84d999892a3c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="982c6de9-16bc-4ef0-91b9-7ddaad787d06" ownerguid="f77172f4-dd8d-4624-9b2c-c0aaf9303635"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="982c860b-a12f-43fe-83fc-d9fa483268cd" ownerguid="6a4ac57f-5256-4dca-a331-d54b1d122d6f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">vice</AUni> -<AUni ws="es">vicio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f437516b-d213-4f2a-82ac-4f502fe52e9e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="983054b6-230a-43b7-aeeb-9025e4467f10"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ganyan</AUni> -<AUni ws="qvm-x-acl">ganyan</AUni> -<AUni ws="qvm-x-akh">qanyan</AUni> -<AUni ws="qvm-x-akl">qanyan</AUni> -<AUni ws="qvm-x-ame">qanyan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qanyan</AUni> -<AUni ws="qvm-x-acl">*qanyan</AUni> -<AUni ws="qvm-x-akh">*qanyan</AUni> -<AUni ws="qvm-x-akl">*qanyan</AUni> -<AUni ws="qvm-x-ame">*qanyan</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.84" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f40462d1-9d12-45fe-a3bb-f11ab0c5cfaf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qanyan</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d60f831a-d0d8-44dc-a441-a1ca7544990d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b9d974a6-ce45-488a-a568-d0aafffa7550" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qanyan 
\entryTyp root 
\gENG yesterday 
\gSPN ayer 
\e *qanyan 
\c N0 
\mp +FinalC 
\ach ganyan 
\akh qanyan 
\acl ganyan 
\akl qanyan 
\ame qanyan</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="98309d39-1303-4083-bf18-47df7a37367c" ownerguid="7bc9bc23-8a4e-49de-993a-0d2acd7282c3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">raw</AUni> -<AUni ws="es">crudo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b1910bde-0a52-49bd-996b-fd3902c5c283" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="9830deb9-7085-4427-8eda-1e5a937e0859" ownerguid="e2565f5b-ed3f-487f-97cb-b6786f567cfc"> -<Form> -<AUni ws="qvm-x-ach">chismösa</AUni> -<AUni ws="qvm-x-acl">chismösa</AUni> -<AUni ws="qvm-x-akh">chismösa</AUni> -<AUni ws="qvm-x-akl">chismösa</AUni> -<AUni ws="qvm-x-ame">chismösa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9834a295-5e41-466c-b5f9-293dd41d0799" ownerguid="043d12ac-c76d-4b4c-813b-4ef7758c8085"> -<ExampleWords> -<AUni ws="en">hide, conceal, concealment, bury, secrecy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to hiding something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="983e5d7b-655b-4da7-b00f-9d1cc515423a" ownerguid="0b7b9a1c-588b-475a-ac14-00f0999cbfe9"> -<ExampleWords> -<AUni ws="en">peaceful, harmonious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe the state of peace?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="984253d0-1436-4821-8df0-0896634c6dd5" ownerguid="b2168c7b-a242-4b7a-9248-22638ba4852f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">palm.of.hand</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6399871e-cf57-4efa-b016-169c2ea12075" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="98460973-0eec-4fde-8b88-8793bd8a3fc7" ownerguid="cf337287-c9fa-43d2-93c4-284f45e262c0"> -<ExampleWords> -<AUni ws="en">heart attack, heart failure, coronary, arteriosclerosis, cardiovascular, fibrillation, hardening of the arteries, thrombosis, heart murmur, weak heart, heart condition</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to a disease of the heart?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="98464ae7-34a2-4d89-a07a-02bc8ccb5a0a" ownerguid="ad154560-7c01-42c5-827a-c582941b0faa"> -<Form> -<AUni ws="qvm-x-ach">prenda</AUni> -<AUni ws="qvm-x-acl">prenda</AUni> -<AUni ws="qvm-x-akh">prenda</AUni> -<AUni ws="qvm-x-akl">prenda</AUni> -<AUni ws="qvm-x-ame">prenda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="9849683a-78cb-4f69-bde3-7457cd883167" ownerguid="9d897083-b92e-4a74-99c9-536ddbd56329"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="9849f945-ba66-4ba5-8829-3efad5f3a3e8" ownerguid="1248f4d8-bd07-4539-9364-b8e4e07876dd" /> -<rt class="LexSense" guid="984a3ca0-2d2a-4408-ba31-a660bb4b31fd" ownerguid="0c98ec07-f83d-48f2-8d40-8776b65371c3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">truck.driver</AUni> -<AUni ws="es">camionero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="031c0e2f-8328-417f-a282-3d6e9b13fa7b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="984c3043-fc01-4573-a283-dde53ad78009"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bece:rru</AUni> -<AUni ws="qvm-x-acl">bece:rru; bece:rru; bece:rro</AUni> -<AUni ws="qvm-x-akh">bece:rru</AUni> -<AUni ws="qvm-x-akl">bece:rru; bece:rru; bece:rro</AUni> -<AUni ws="qvm-x-ame">bece:rru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+becerro</AUni> -<AUni ws="qvm-x-acl">+becerro</AUni> -<AUni ws="qvm-x-akh">+becerro</AUni> -<AUni ws="qvm-x-akl">+becerro</AUni> -<AUni ws="qvm-x-ame">+becerro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.961" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0d2e73ab-32e5-4b66-b153-f1aab054970d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+becerro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8498a627-d01a-402e-a573-7c0256c4a817" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8d6dd272-7552-4042-b9db-29e976a77e20" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +becerro 
\entryTyp root 
\gENG calf 
\gSPN becerro 
\e +becerro 
\c N0 
\ach bece:rru 
\akh bece:rru 
\acl bece:rru / _# 
\acl bece:rru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl bece:rro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl bece:rru / _# 
\akl bece:rru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl bece:rro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame bece:rru</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="984c6171-0696-40a2-91a6-b8e6453923d7" ownerguid="d2226181-a021-43f7-9746-bb41ba9601ea"> -<Form> -<AUni ws="qvm-x-ach">paqui</AUni> -<AUni ws="qvm-x-acl">paqui; paque</AUni> -<AUni ws="qvm-x-akh">paki</AUni> -<AUni ws="qvm-x-akl">paki; pake</AUni> -<AUni ws="qvm-x-ame">paki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="984dc2b7-6fdd-4257-abdc-5873abb7bb70" ownerguid="aaf9d375-f0a0-4c7b-bbf8-3c7ffd4f5a52"> -<Abbreviation> -<AUni ws="en">9.3.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a smaller degree.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>78B More Than, Less Than</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">To a smaller degree</AUni> -</Name> -<Questions> -<objsur guid="9726b4cb-5676-48c4-be02-79a554a9fa45" t="o" /> -<objsur guid="97f888c8-ea6a-4698-b790-2bb9163bae3f" t="o" /> -<objsur guid="4aef9ea8-6535-4a98-8d48-a01acc39a06b" t="o" /> -<objsur guid="c462a82a-3694-42e3-969f-54d04ae70670" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="984eb9db-3ffd-4471-90a6-dcb439c7fc2a" ownerguid="2827d3e2-eec1-4f19-a6a9-8dbb4cc1699c" /> -<rt class="MoStemAllomorph" guid="984ffe38-28e9-44ed-9acf-52b87223a94a" ownerguid="4e5bf9a7-e8b2-4f7d-804e-57f58265befb"> -<Form> -<AUni ws="qvm-x-ach">sigura</AUni> -<AUni ws="qvm-x-acl">sigura</AUni> -<AUni ws="qvm-x-akh">sigura</AUni> -<AUni ws="qvm-x-akl">sigura</AUni> -<AUni ws="qvm-x-ame">sigura</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="9855ce7f-2803-411a-8966-26fb4b0d339d" ownerguid="de160b31-15e9-43ce-8a2d-0d7a458c8ade"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">?</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bb148a78-876d-40dc-88ab-a1dc064dfd2c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="985823e3-352b-412f-a33e-22fd2ff72e70" ownerguid="0db5817e-05bf-4703-a6b9-e239ac44f857"> -<ExampleWords> -<AUni ws="en">androgynous, bisexual, hermaphrodite, hermaphroditic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something (such as a plant) that is both male and female?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="985916ce-1bab-403a-82e1-40b25a638194" ownerguid="d5a0d5ca-90e4-4617-bf2e-25ef8b6c692d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="7c374a4c-0ed1-4a3a-afad-5e8f794788c1" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="ffa3586c-8480-4497-ab7d-1eeac6275f15" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="98598227-82c9-408f-a7fa-e6d9edc4248f" ownerguid="bb895a9a-d6f3-41ed-9603-2b424e317208"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="985dd75c-1c14-4d80-9f77-3069719d975b" ownerguid="a0546f85-2590-4dc9-ae94-6512b1116b01"> -<Form> -<AUni ws="qvm-x-ach">guepi</AUni> -<AUni ws="qvm-x-acl">guepi; guepi; guepe</AUni> -<AUni ws="qvm-x-akh">qepi</AUni> -<AUni ws="qvm-x-akl">qepi; qepi; qepe</AUni> -<AUni ws="qvm-x-ame">qipi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="985f099d-f38c-4957-907a-769d1a45ca10" ownerguid="5cc64831-c14a-4dbe-beba-214e725ad041"> -<Abbreviation> -<AUni ws="en">7.2.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that refer to balancing yourself or something--when someone or something is able stand or move without falling.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Steady, unsteady</AUni> -</Name> -<Questions> -<objsur guid="ef225a57-c513-474c-83a5-48954e5c3777" t="o" /> -<objsur guid="1f36827a-bb8c-4822-943a-bacd7ee562fb" t="o" /> -<objsur guid="407b8988-90f1-45b7-ac2b-6cfb7f2e6232" t="o" /> -<objsur guid="1eaca672-7d23-49b5-856c-2e2544d66911" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="82eb3050-d382-48f6-a049-22a5f8a3b25a" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c6132280-d2aa-46f8-9e94-b087dbda09cb" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="9861efc2-35d5-4384-9406-8517bb03a1f8" ownerguid="5073927d-d871-4d59-9c5b-960f332559e3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">becerro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dcd58f4f-4c5f-4032-bec9-14a5543b3db9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="98676d9d-b11b-459a-95ad-f2d2fa8b2702" ownerguid="baeaf24b-30ff-424c-af6a-c2885e95d9e7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">runa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">runa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">runa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">runa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">runa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="dbbd8356-c9df-482b-a128-55aaaa8ad47f" t="r" /> -</Morph> -<Msa> -<objsur guid="735a29e0-40d3-4d25-9e9a-e8181d173c29" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="986b31ce-1a07-47f4-93aa-3048f8e0833d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ynag</AUni> -<AUni ws="qvm-x-acl">ynag</AUni> -<AUni ws="qvm-x-akh">ynaq</AUni> -<AUni ws="qvm-x-akl">ynaq</AUni> -<AUni ws="qvm-x-ame">ynaq</AUni> -</Custom> -<AlternateForms> -<objsur guid="52866377-e927-4dc3-a05c-7c9761fb6438" t="o" /> -<objsur guid="86c790d8-820c-4e15-81b9-d5bf73931b53" t="o" /> -</AlternateForms> -<DateCreated val="2022-9-23 18:26:20.589" /> -<DateModified val="2022-10-16 15:10:18.638" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cd8a6924-7b49-44be-b2ab-849ecf09bb6b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">WOUT1.V</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d2da946d-6a87-4287-bfd1-608f8a9f111e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c1b1ed0c-5cb1-464b-a659-e297feaf1d83" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx WOUT1.V 
\entryTyp suffix 
\gENG WOUT1.V 
\gSPN SIN1.V 
\e WOUT1.V 
\c N0/N0 
\o 000 
\mp +FinalC 
\ach ynag 
\akh ynaq 
\acl ynag 
\akl ynaq 
\ame ynaq 
\mp +foreshortens 
\mcc WOUT1.V / {+FinalC} ~_ 
\mcc WOUT1.V / ~_ HUMAN</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="986e2ed8-9085-4f9d-ab90-8e5ceb24a48c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">elagpita</AUni> -<AUni ws="qvm-x-acl">elagpita</AUni> -<AUni ws="qvm-x-akh">elaqpita</AUni> -<AUni ws="qvm-x-akl">elaqpita</AUni> -<AUni ws="qvm-x-ame">ilaqpita</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*illaqpita</AUni> -<AUni ws="qvm-x-acl">*illaqpita</AUni> -<AUni ws="qvm-x-akh">*illaqpita</AUni> -<AUni ws="qvm-x-akl">*illaqpita</AUni> -<AUni ws="qvm-x-ame">*illaqpita</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.800" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="de2fdb34-51cf-4661-9914-23bd7bed3e55" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*illaqpita</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6c4aa1e1-0256-4701-aba4-930d855ef1f9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a5ce751f-cb61-42d0-950e-fed8e683c75d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *illaqpita 
\entryTyp root 
\gENG suddenly 
\gSPN de.repente 
\e *illaqpita 
\c N0 
\ach elagpita 
\akh elaqpita 
\acl elagpita 
\akl elaqpita 
\ame ilaqpita</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="986fc904-beca-4fed-b0b1-62719c43927f" ownerguid="0f70c0b3-79b7-4a5a-b1b4-8fb1c2bd1b41"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">drool</AUni> -<AUni ws="es">salivar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5eceb3ae-ff49-4580-90c1-f98f9e2a9ee9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="98703d1f-344d-46fd-9e7b-39d115a3ef89" ownerguid="8c41d2d1-6da6-4ab8-8b29-7e226192d64e"> -<ExampleWords> -<AUni ws="en">pool of blood</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a lot of blood?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9871cf97-df7e-4aa6-ab11-10c0d338c57b" ownerguid="8718e1ed-ba2e-41c4-a112-af2a9f137ac9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="9873474a-960a-4784-93e9-967b3205408c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">farol</AUni> -<AUni ws="qvm-x-acl">farol</AUni> -<AUni ws="qvm-x-akh">farol</AUni> -<AUni ws="qvm-x-akl">farol</AUni> -<AUni ws="qvm-x-ame">farol</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+farol</AUni> -<AUni ws="qvm-x-acl">+farol</AUni> -<AUni ws="qvm-x-akh">+farol</AUni> -<AUni ws="qvm-x-akl">+farol</AUni> -<AUni ws="qvm-x-ame">+farol</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.536" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ab2f6ba5-13ee-4268-ad44-c0fa008649ac" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+farol</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5f80d08a-e945-417c-97c5-07c44262d78e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4ed0f079-b693-4ce9-81cf-167336d8c1f4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +farol 
\entryTyp root 
\gENG kerosene.storm.lantern 
\gSPN farol 
\e +farol 
\c N0 
\mp +FinalC 
\ach farol 
\akh farol 
\acl farol 
\akl farol 
\ame farol</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="9877608f-5900-43c7-b321-63addb34dad5" ownerguid="a51bee8c-209a-48e7-b26e-611645f3c4fb"> -<Form> -<AUni ws="qvm-x-ach">wac</AUni> -<AUni ws="qvm-x-acl">wac</AUni> -<AUni ws="qvm-x-akh">wak</AUni> -<AUni ws="qvm-x-akl">wak</AUni> -<AUni ws="qvm-x-ame">wak</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="98799cbc-340e-4d7a-ab33-7f935ecd231a" ownerguid="537b2e3f-4ab8-4e19-ac8b-fbcf42ca8b75"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">just.in.case</AUni> -<AUni ws="es">por.si.acaso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5ce7968a-f3ce-4bc9-9243-2df975f560ba" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="987c6c27-3982-4ce5-9938-e578b61ebfe3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sacya</AUni> -<AUni ws="qvm-x-acl">sacya</AUni> -<AUni ws="qvm-x-akh">sakya</AUni> -<AUni ws="qvm-x-akl">sakya</AUni> -<AUni ws="qvm-x-ame">sakya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+saquear</AUni> -<AUni ws="qvm-x-acl">+saquear</AUni> -<AUni ws="qvm-x-akh">+saquear</AUni> -<AUni ws="qvm-x-akl">+saquear</AUni> -<AUni ws="qvm-x-ame">+saquear</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.478" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9a55a7cb-dd17-4cee-9a5b-a1e1a9ba8501" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+saquear</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f4f06e1e-8a5f-4663-b43b-b2e0c68a8980" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1689a701-427f-425b-ad78-09ef141cd13b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +saquear 
\entryTyp root 
\gENG swindle 
\gSPN saquear 
\e +saquear 
\c V2 
\mp +assimilated KQWchange 
\ach sacya 
\akh sakya 
\acl sacya 
\akl sakya 
\ame sakya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="987d88e1-7773-464e-86fe-d22cebbf315f" ownerguid="e0ad6bb1-d422-408a-83f8-f1a7661ed225"> -<ExampleWords> -<AUni ws="en">go up, climb, rise</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that a path or road goes upward?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="987fc4a4-4519-4253-9e50-58f06d10962b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shuya; shuya:</AUni> -<AUni ws="qvm-x-acl">shuya; shuya:</AUni> -<AUni ws="qvm-x-akh">shuya; shuya:</AUni> -<AUni ws="qvm-x-akl">shuya; shuya:</AUni> -<AUni ws="qvm-x-ame">shuya; shuya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shuya:</AUni> -<AUni ws="qvm-x-acl">*shuya:</AUni> -<AUni ws="qvm-x-akh">*shuya:</AUni> -<AUni ws="qvm-x-akl">*shuya:</AUni> -<AUni ws="qvm-x-ame">*shuya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.662" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="971e61fc-c38c-4bba-8949-16afc3641bf4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shuya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="41352f09-57dc-427e-80db-51b0f2153ec5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3c55dbf8-8d69-4f05-976f-8f5546cfb367" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shuya: 
\entryTyp root 
\gENG wait 
\gSPN esperar 
\e *shuya: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach shuya foreshortened 
\ach shuya: 
\akh shuya foreshortened 
\akh shuya: 
\acl shuya foreshortened 
\acl shuya: 
\akl shuya foreshortened 
\akl shuya: 
\ame shuya foreshortened 
\ame shuya:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="9881e815-ba20-4265-b243-c43a386261ac" ownerguid="a6341082-8a31-43c6-87d4-0a180914a374"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">place</AUni> -<AUni ws="es">poner</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c1731704-be1d-456f-a862-ea6a5ccd4dbf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="98830eda-3997-4f4a-9ba4-664df669e7e2" ownerguid="f595deab-1838-4ddb-9ebe-55fb3007b309"> -<Abbreviation> -<AUni ws="en">4.8.3.6.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.286" /> -<DateModified val="2022-9-23 16:55:8.286" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a fort.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Fort</AUni> -</Name> -<Questions> -<objsur guid="2b9c20ca-94e0-456c-8be5-bed007ac19a5" t="o" /> -<objsur guid="85cdec9f-a359-4986-a70b-b817254ae90a" t="o" /> -<objsur guid="2166002a-b1f3-404d-8a04-fcb7218abf4a" t="o" /> -<objsur guid="e2c42ed2-4abf-4126-bba0-9a52200a3a7a" t="o" /> -<objsur guid="c2ce9ebf-1618-42bf-804f-972883902db4" t="o" /> -<objsur guid="4c6090b6-9189-483f-bd3a-cbe857ac3143" t="o" /> -<objsur guid="b8a2d2df-84dd-48cf-ab8e-e503d4939cf5" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="9885c1fa-c724-4afc-bb33-6af3b26909f1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">inteligenti; inteligente</AUni> -<AUni ws="qvm-x-acl">inteligenti; inteligenti; inteligente</AUni> -<AUni ws="qvm-x-akh">inteligenti; inteligente</AUni> -<AUni ws="qvm-x-akl">inteligenti; inteligenti; inteligente</AUni> -<AUni ws="qvm-x-ame">inteligenti; inteligente</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+inteligente</AUni> -<AUni ws="qvm-x-acl">+inteligente</AUni> -<AUni ws="qvm-x-akh">+inteligente</AUni> -<AUni ws="qvm-x-akl">+inteligente</AUni> -<AUni ws="qvm-x-ame">+inteligente</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.832" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="08156f60-00e8-4761-91d8-0563dac6baa5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+inteligente</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1fc0df05-2548-40d0-8084-ad538f4c5d10" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b91aa766-e633-445e-9f15-f5e448e47140" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +inteligente 
\entryTyp root 
\gENG 
\gSPN 
\e +inteligente 
\c N0 
\mp +FinalI 
\ach inteligenti / ~_# 
\ach inteligente / _# 
\akh inteligenti / ~_# 
\akh inteligente / _# 
\acl inteligenti / ~_# 
\acl inteligenti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl inteligente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl inteligenti / ~_# 
\akl inteligenti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl inteligente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame inteligenti / ~_# 
\ame inteligente / _# 
\i PRO 9.10 Tayta Diosta cäsucogcunaga inteligentimi caycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="9886f609-95e4-4b61-8d4b-07bf0eb003de"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lle:nu</AUni> -<AUni ws="qvm-x-acl">lle:nu; lle:nu; lle:no</AUni> -<AUni ws="qvm-x-akh">lle:nu</AUni> -<AUni ws="qvm-x-akl">lle:nu; lle:nu; lle:no</AUni> -<AUni ws="qvm-x-ame">lle:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lleno</AUni> -<AUni ws="qvm-x-acl">+lleno</AUni> -<AUni ws="qvm-x-akh">+lleno</AUni> -<AUni ws="qvm-x-akl">+lleno</AUni> -<AUni ws="qvm-x-ame">+lleno</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.192" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="53e7c5d2-c1ae-4c60-872c-763552a56695" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lleno</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3f19bd62-99b6-4524-a081-45f4014ccf08" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d36b17c4-4719-4dda-8bc8-b2763104c642" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lleno 
\entryTyp root 
\gENG full 
\gSPN lleno 
\e +lleno 
\c N0 
\ach lle:nu 
\akh lle:nu 
\acl lle:nu / _# 
\acl lle:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lle:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lle:nu / _# 
\akl lle:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lle:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lle:nu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="988886e7-e445-4fb9-ae38-c09d6eaead02" ownerguid="9b476afd-58c2-46a2-8294-449ac4aad3a9"> -<ExampleWords> -<AUni ws="en">house of God, church, temple, synagogue, mosque, shrine, god house, sanctuary, tabernacle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a place that is dedicated to God?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9889ba37-adbf-4b95-9ae1-cf694a41da87" ownerguid="536a2d3e-2303-43bc-bf53-379131eb5730"> -<ExampleWords> -<AUni ws="en">brown, tan, beige, flesh colored, auburn, brunette, buff, chestnut, chocolate, cinnamon, cocoa, coffee, dun, fawn, foxy, hazel, khaki, mahogany, ocher, russet, rust, sepia, sienna, sorrel, umber, walnut</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What are the shades of brown?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="988fbfb9-2d1d-4a65-8d59-148dbffbe226" ownerguid="400d318e-a9ef-40b4-92be-0d7e96e51d8a"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The <source> of our water is a deep well.; Our drinking water is <from> a deep well.; John brought the wood <from> the forest.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">source, from</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate the Source of movement?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="98905286-984f-47c2-9bd4-5d227eb5e7a2" ownerguid="320dd3d3-c487-4397-8e6e-7af6ccac5723"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">scrape</AUni> -<AUni ws="es">recoger</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c9bcf862-8dc9-4c35-a7af-cfbbb6fffee5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9893c3a4-5bf2-46a1-b3cf-d5805085cbf9" ownerguid="ffd0547e-e537-4614-ac3f-6d8cd3351f33"> -<ExampleWords> -<AUni ws="en">animal body parts</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to the parts of an animal?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="98958be1-ff22-4079-bd78-d9182fee21e7" ownerguid="386b1f9e-33b6-46f3-bc2d-6b50758b82f5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">leather.worker</AUni> -<AUni ws="es">suelero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c030a690-0464-414c-80f4-417537b5848f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="9896c6e8-2e7c-48d0-9f05-134f0a77332d" ownerguid="ecbc2581-772a-415b-bf79-7863f20fb6e2"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9899102f-7ef1-4b58-bfe5-f4613b47ef01" ownerguid="5fcadae4-b4a8-4600-8d30-c4f67986d619"> -<ExampleWords> -<AUni ws="en">amputee</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who has lost a limb?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="989afba4-ae9a-4839-aae7-39bc6c381672"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">limushna</AUni> -<AUni ws="qvm-x-acl">limushna</AUni> -<AUni ws="qvm-x-akh">limushna</AUni> -<AUni ws="qvm-x-akl">limushna</AUni> -<AUni ws="qvm-x-ame">limushna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+limosna</AUni> -<AUni ws="qvm-x-acl">+limosna</AUni> -<AUni ws="qvm-x-akh">+limosna</AUni> -<AUni ws="qvm-x-akl">+limosna</AUni> -<AUni ws="qvm-x-ame">+limosna</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.94" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3e69797d-7ebd-4edb-99c1-1e39ccfa8120" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+limosna</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8862006a-3fe2-4c6e-8395-fbc6442c3094" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="76124242-2051-46ee-acf7-06346971415a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +limosna 
\entryTyp root 
\gENG alms 
\gSPN limosna 
\e +limosna 
\c N0 V1 
\ach limushna 
\akh limushna 
\acl limushna 
\akl limushna 
\ame limushna</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="989e44c7-6f88-47ef-893f-10eac1bc5c53" ownerguid="5ef13a22-d5d4-4b58-b73f-b6eaa745095b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="98a0a540-c2d8-42e5-bc82-a62e00c6f870" ownerguid="1d1cb68b-a4d5-43ab-9e13-4c113a5e8cc9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">frog</AUni> -<AUni ws="es">sapo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="95444f57-a28d-4fdc-874d-1063abe6bb3b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="98a41584-cae4-4c65-88ae-0fb71a7c1339" ownerguid="fe951639-653a-4af7-a1e9-c24a92b94011"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="98a6140c-19ec-4469-a152-71c7f034e747" ownerguid="c6c772af-7b6b-4393-b0da-5b4a329d3426"> -<ExampleWords> -<AUni ws="en">amount, quantity, level, volume, percentage, proportion, sum, how much, ($100) worth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the amount of something?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="98a70e58-5ffc-45f3-a744-ce6863135694"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">root</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="98a84871-b33c-4ae4-b0b3-4dba0d22bb9f" ownerguid="05811fbe-2361-4219-a5d3-be3dc487f6fa"> -<ExampleWords> -<AUni ws="en">solve, resolve, put right, find a solution, rectify</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to solving a problem?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="98aaf22e-a3ff-48ec-801a-6ad863738a93" ownerguid="236229a4-150b-4012-bf63-34394ad00f98"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 104.32 Yataycuptenga jircacunapis goshtatanmi.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="98acdca0-184b-4a63-b866-5a6838838b79" ownerguid="b38bc4a9-c22f-41a2-9c9b-5d48f8c15954"> -<Form> -<AUni ws="qvm-x-ach">baratya; baratyä</AUni> -<AUni ws="qvm-x-acl">baratya; baratyä</AUni> -<AUni ws="qvm-x-akh">baratya; baratyä</AUni> -<AUni ws="qvm-x-akl">baratya; baratyä</AUni> -<AUni ws="qvm-x-ame">baratya; baratyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="98acdf37-9e71-4f7b-92a4-6d759de4cccc" ownerguid="d6aa7ce3-2aba-4f1d-b7e7-2f960d2a7e4c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">crumb</AUni> -<AUni ws="es">pedazo.chico</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6a1ab751-e3cc-4f11-ad1b-d8125f904b04" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="98ae2365-ecde-44ee-927e-ebe62d568b43" ownerguid="810d01d5-4569-418e-b535-bcfebc6aca5e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">improve</AUni> -<AUni ws="es">mejorar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7bfd8288-6f20-4527-99b4-aad65fe5e0d9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="98af7419-f31c-4834-a5b4-8a90467da07b" ownerguid="6a39a61b-ec4d-452b-bf97-f613fb10dc4a"> -<Form> -<AUni ws="qvm-x-ach">emplastu</AUni> -<AUni ws="qvm-x-acl">emplastu; emplasto</AUni> -<AUni ws="qvm-x-akh">emplastu</AUni> -<AUni ws="qvm-x-akl">emplastu; emplasto</AUni> -<AUni ws="qvm-x-ame">emplastu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="98b0a529-0fdd-444a-a9c2-fa047d394366" ownerguid="b0e39b97-5304-4789-a7f4-f8daac52089e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="b8637efb-05ba-4934-b728-dfe32f3c262a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="98b246b8-3373-4150-a3c5-2cad709b9461" ownerguid="1e5abf5f-b384-435a-8353-ca903ef37c62"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="50c6c9d6-3c6b-4e7c-a05e-aa8b32aa8799" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="98b28f38-f144-4b3d-b962-e4d4a043dc23" ownerguid="05472990-3f51-40b3-bca8-df3cf383328b"> -<ExampleWords> -<AUni ws="en">speaker, preacher, teacher, lecturer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the person making the speech?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="98b3d2b5-67ee-430f-ba5c-6965897a0d1e" ownerguid="725d78eb-8cac-4b2f-b5a4-f0a9adb80f5d"> -<ExampleWords> -<AUni ws="en">apostasy, backsliding, reprobate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to turning away from God?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="98b802c7-6c61-4c45-8cf6-c4f6aae3ca82" ownerguid="08239f53-daa5-47a6-9f39-29a9064b0c27"> -<ExampleWords> -<AUni ws="en">attach to, bind to, fasten to, stick to, take hold of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something joining itself to something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="98ba5e82-c969-4fd0-b02d-5273cc15d567" ownerguid="5e3de2f1-e0d3-4153-931c-4edc342a30b1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bucket</AUni> -<AUni ws="es">balde</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="275e3dd9-2efe-4997-8167-1463dc893b26" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="98bc0e8a-a3c6-43d1-b717-3165063cda05" ownerguid="cc70d4ce-4cf4-4556-991a-e1b57a7279f4"> -<Form> -<AUni ws="qvm-x-ach">liuta</AUni> -<AUni ws="qvm-x-acl">liuta</AUni> -<AUni ws="qvm-x-akh">liwta</AUni> -<AUni ws="qvm-x-akl">liwta</AUni> -<AUni ws="qvm-x-ame">liwta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="98bd87b9-fda5-4198-a721-535381fd1ece" ownerguid="bf4f8a88-1281-49e3-96cd-34a37bdf47c0"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1SA 15.11 <<Malayämi mandag rey cananpag Saúlta churashgäpita. Manami nishgäcunata cumplishgatsu.>> Tsaynog niptinmi Samuel laquicushpan waraylata Tayta Diosta manacur wagargan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="98bdde46-83fb-41d6-b44a-10d5d0b56867"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cincu; cinco</AUni> -<AUni ws="qvm-x-acl">cincu; cincu; cinco</AUni> -<AUni ws="qvm-x-akh">cincu; cinco</AUni> -<AUni ws="qvm-x-akl">cincu; cincu; cinco</AUni> -<AUni ws="qvm-x-ame">cincu; cinco</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cinco</AUni> -<AUni ws="qvm-x-acl">+cinco</AUni> -<AUni ws="qvm-x-akh">+cinco</AUni> -<AUni ws="qvm-x-akl">+cinco</AUni> -<AUni ws="qvm-x-ame">+cinco</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.122" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ea831884-f042-4232-bec5-5a477848b2f1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cinco</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="46655353-179e-4fa6-b4b8-e7d8a513f738" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="acfe9d17-ba68-4c6a-88cc-56555154c191" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cinco 
\entryTyp root 
\gENG five 
\gSPN cinco 
\e +cinco 
\c N0 
\ach cincu / ~_# 
\ach cinco / _# 
\akh cincu / ~_# 
\akh cinco / _# 
\acl cincu / ~_# 
\acl cincu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cinco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cincu / ~_# 
\akl cincu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cinco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cincu / ~_# 
\ame cinco / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntryType" guid="98c273c4-f723-4fb0-80df-eede2204dfca" ownerguid="1ee09905-63dd-4c7a-a9bd-1d496743ccd6"> -<Abbreviation> -<AUni ws="en">der.</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">A stem that is made up of a root plus an affix that adds a non-inflectional component of meaning.</Run> -</AStr> -</Description> -<Discussion> -<objsur guid="b39a75fe-ea5e-11de-8de8-0013722f8dec" t="o" /> -</Discussion> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Derivative</AUni> -</Name> -<ReverseAbbr> -<AUni ws="en">der. of</AUni> -</ReverseAbbr> -<ReverseName> -<AUni ws="en">Derivative of</AUni> -</ReverseName> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="98c5356a-71ba-499b-8e70-016d3b607bfd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">te:ja</AUni> -<AUni ws="qvm-x-acl">te:ja</AUni> -<AUni ws="qvm-x-akh">te:ja</AUni> -<AUni ws="qvm-x-akl">te:ja</AUni> -<AUni ws="qvm-x-ame">te:ja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+teja</AUni> -<AUni ws="qvm-x-acl">+teja</AUni> -<AUni ws="qvm-x-akh">+teja</AUni> -<AUni ws="qvm-x-akl">+teja</AUni> -<AUni ws="qvm-x-ame">+teja</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.855" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f5c4cfb0-1d6d-474e-b005-49f95de2cd79" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+teja</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b29004f3-b69c-4366-95b9-0ef10eb0386e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b645a4a8-dc6d-47b1-9a35-f876a5bb6fc0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +teja 
\entryTyp root 
\gENG 
\gSPN 
\e +teja 
\c N0 
\ach te:ja 
\akh te:ja 
\acl te:ja 
\akl te:ja 
\ame te:ja 
\i JOB 41.30 Pachancho escämanpis tëja paquipanogragmi capri capri caycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="98c8ba61-c891-42df-9dd8-d5d829259587" ownerguid="b1756402-83c4-476d-8f55-010a0a10b5d9"> -<ExampleWords> -<AUni ws="en">make a profit, profitable, make a killing, take in, gain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to making a profit?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="98ca132c-0904-4008-8dd2-6f152dbf45a4" ownerguid="5d977783-a1f3-4de8-9889-032296f1818e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.contagious</AUni> -<AUni ws="es">contagiar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="924fafd4-deef-4d01-aeac-831c57538dd3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="98ca74ec-8fec-408a-ae6c-c1a200d444af" ownerguid="a19e219a-6cc1-4057-a8d9-18554ae88de1"> -<ExampleWords> -<AUni ws="en">wet, urinate, defecate, potty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to a baby urinating or defecating?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="98ca945e-9371-478c-9089-8a4dad411dc5" ownerguid="0c5eff0b-4158-4315-8bb0-98192b7f9bd8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="98cb87a1-8548-42f8-9bf2-6e1205e093b4" ownerguid="31777669-e37b-4b77-9cce-0d8c33f6ebb9"> -<ExampleWords> -<AUni ws="en">get bogged down, sink</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to moving through a swamp?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="98cc03df-5ee5-461f-8bde-028e38e8aae0" ownerguid="e533682e-3059-471e-a3e8-9542c3f6d84b"> -<Form> -<AUni ws="qvm-x-ach">sogu</AUni> -<AUni ws="qvm-x-acl">sogu; sogu; sogo</AUni> -<AUni ws="qvm-x-akh">soqu</AUni> -<AUni ws="qvm-x-akl">soqu; soqu; soqo</AUni> -<AUni ws="qvm-x-ame">suqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="98cc8439-9c18-453d-8383-45488ba4b606"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aca; aca:</AUni> -<AUni ws="qvm-x-acl">aca; aca:</AUni> -<AUni ws="qvm-x-akh">aka; aka:</AUni> -<AUni ws="qvm-x-akl">aka; aka:</AUni> -<AUni ws="qvm-x-ame">aka; aka:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aka:</AUni> -<AUni ws="qvm-x-acl">*aka:</AUni> -<AUni ws="qvm-x-akh">*aka:</AUni> -<AUni ws="qvm-x-akl">*aka:</AUni> -<AUni ws="qvm-x-ame">*aka:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.679" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5608e6ae-4d0f-4f59-9231-a77c35a9d770" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aka:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9d381ac9-c24a-48ae-94fb-e1e27a0e5339" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1afb73ca-75cf-4dbc-9d80-e706b85bba49" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aka: 
\entryTyp root 
\gENG heat 
\gSPN calentar 
\e *aka: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach aca foreshortened 
\ach aca: 
\akh aka foreshortened 
\akh aka: 
\acl aca foreshortened 
\acl aca: 
\akl aka foreshortened 
\akl aka: 
\ame aka foreshortened 
\ame aka: 
\mcc *aka: / ~_ 1 NEG 
\mcc *aka: / ~_ BEN2 DUR</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="98ce83bf-0aac-4133-8c84-e88cd7a37442"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">música; mu:sica</AUni> -<AUni ws="qvm-x-acl">música; mu:sica</AUni> -<AUni ws="qvm-x-akh">música; mu:sica</AUni> -<AUni ws="qvm-x-akl">música; mu:sica</AUni> -<AUni ws="qvm-x-ame">música; mu:sica</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+música</AUni> -<AUni ws="qvm-x-acl">+música</AUni> -<AUni ws="qvm-x-akh">+música</AUni> -<AUni ws="qvm-x-akl">+música</AUni> -<AUni ws="qvm-x-ame">+música</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.527" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="007d44db-21b3-409b-8bf7-00856e4b6bb4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+música</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="80b70805-0a91-47c2-9018-726e0b426bd7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="162d7155-0968-4540-a829-2ced4996142b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +música 
\entryTyp root 
\gENG music 
\gSPN música 
\e +música 
\c N0 
\ach música / _# 
\ach mu:sica / ~_# 
\akh música / _# 
\akh mu:sica / ~_# 
\acl música / _# 
\acl mu:sica / ~_# 
\akl música / _# 
\akl mu:sica / ~_# 
\ame música / _# 
\ame mu:sica / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="98cf23ff-cda5-44e0-948f-b2850f0c7fc1" ownerguid="dbebc3bd-2d01-4d62-a009-866c18ee3527"> -<ExampleWords> -<AUni ws="en">birth control, family planning, contraception, sterilize, sterilization, vasectomy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to preventing pregnancy?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="98cf8109-a3c4-4baa-9a30-0b874deb8925" ownerguid="e11b6e55-ed8e-46ca-b7e9-8cc7d0a11531"> -<Form> -<AUni ws="qvm-x-ach">tapra</AUni> -<AUni ws="qvm-x-acl">tapra</AUni> -<AUni ws="qvm-x-akh">tapra</AUni> -<AUni ws="qvm-x-akl">tapra</AUni> -<AUni ws="qvm-x-ame">tapra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="98d1c6b4-6ec3-4d69-9169-c8e2a400e327" ownerguid="f6deea64-e38a-4698-8100-d5278c3a304e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">say</AUni> -<AUni ws="es">decir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</MorphoSyntaxAnalysis> -<Custom name="Target Equivalent"> -<AStr ws="en"> -<Run ws="en">silfw://localhost/link?database%3dSouth+Conchucos%26tool%3dlexiconEdit%26guid%3d208e091d-aa8c-4147-ab36-bff3f2dd935c%26tag%3d</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="98d7a4a9-4b27-4241-b2f6-6ca4f4b2181d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yullag</AUni> -<AUni ws="qvm-x-acl">yullag</AUni> -<AUni ws="qvm-x-akh">yullaq</AUni> -<AUni ws="qvm-x-akl">yullaq</AUni> -<AUni ws="qvm-x-ame">yullaq</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yullag</AUni> -<AUni ws="qvm-x-acl">*yullag</AUni> -<AUni ws="qvm-x-akh">*yullaq</AUni> -<AUni ws="qvm-x-akl">*yullaq</AUni> -<AUni ws="qvm-x-ame">*yullaq</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.597" /> -<DateModified val="2022-10-15 13:39:20.670" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e55c6c4e-6318-4e43-beba-6c2a00094f96" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">yullag</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="576f2c8e-a5ac-495e-ba39-79e44a402f6e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0c67dc84-967d-4ae9-aa5d-7d649e0a4374" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx yullag 
\entryTyp root 
\gENG white 
\gSPN blanco 
\e *yullaq 
\c N0 
\mp +FinalC 
\ach yullag 
\akh yullaq 
\acl yullag 
\akl yullaq 
\ame yullaq</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="98d88e3a-ed0b-4db5-916a-31177fe9c913" ownerguid="9b476afd-58c2-46a2-8294-449ac4aad3a9"> -<ExampleWords> -<AUni ws="en">pew, altar, pulpit, choir loft, baptismal font, stained glass window, steeple</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the parts of a church?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="98d8ed5b-9b34-4d7c-abba-0303dc28b6d5" ownerguid="e00ffcd7-c6bc-463c-8116-9da90e825e34"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="43471cd9-1a72-4a54-a72a-01746af742d3" t="o" /> -<objsur guid="38b56d7c-9f14-4caa-b186-c99c75b45055" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiMorphBundle" guid="98da10ac-50ec-4ec8-8d6d-1011e20d7648" ownerguid="31ec0cbc-4079-4c6c-873a-d0c406383db2"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" t="r" /> -</Morph> -<Msa> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="98da5e0c-d5e5-446b-86a0-38e79bc6da12" ownerguid="b45dc743-8347-4e33-840a-ad3ef5aa1b52"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="98dc4bb9-47a5-4f61-9a89-e7a1b5d0f0ba"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mamá</AUni> -<AUni ws="qvm-x-acl">mamá</AUni> -<AUni ws="qvm-x-akh">mamá</AUni> -<AUni ws="qvm-x-akl">mamá</AUni> -<AUni ws="qvm-x-ame">mamá</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mamá</AUni> -<AUni ws="qvm-x-acl">*mamá</AUni> -<AUni ws="qvm-x-akh">*mamá</AUni> -<AUni ws="qvm-x-akl">*mamá</AUni> -<AUni ws="qvm-x-ame">*mamá</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.295" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a5a1a89b-e089-4ac1-9340-29475e5260ed" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mamá</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b1c78f49-d270-409a-b94e-969f2a47eeac" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4b86cfe6-4ae3-4470-9ac2-8ea2b1dd0183" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mamá 
\entryTyp root 
\gENG mother 
\gSPN madre 
\e *mamá 
\c N0 
\mp +FinalC 
\ach mamá 
\akh mamá 
\acl mamá 
\akl mamá 
\ame mamá 
\mcc *mamá / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="98df09ef-5227-4371-83d3-439b34bb4b1b" ownerguid="0f8fce3e-7aeb-49f5-ab43-fb6dd8e148e1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">drown</AUni> -<AUni ws="es">ahogar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d1d3c5d6-fcbf-4136-b669-48753fa1881c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="98dff5f0-acd9-44a3-94f2-7a93970680f1" ownerguid="dfdcfa24-b013-4566-af4a-28ef1dfd4742"> -<ExampleWords> -<AUni ws="en">immeasurable, measureless, incalculable, unfathomable, unmeasured, untold</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to an amount that cannot be measured?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="98e0ba61-7de9-429d-b132-cd5ec8e59b3a" ownerguid="be675724-22b7-4b01-9858-0296aea77a53"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">thankyou</AUni> -<AUni ws="es">gracias</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="13c46f40-b19c-4687-aa9e-9843cac6be89" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="98e38521-8531-427b-b04e-65db6679710e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yarcu; yarca</AUni> -<AUni ws="qvm-x-acl">yarcu; yarco; yarca</AUni> -<AUni ws="qvm-x-akh">yarku; yarka</AUni> -<AUni ws="qvm-x-akl">yarku; yarko; yarka</AUni> -<AUni ws="qvm-x-ame">yarku; yarka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yarkU</AUni> -<AUni ws="qvm-x-acl">*yarkU</AUni> -<AUni ws="qvm-x-akh">*yarkU</AUni> -<AUni ws="qvm-x-akl">*yarkU</AUni> -<AUni ws="qvm-x-ame">*yarkU</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.749" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="27fb91f6-5df9-473b-bc10-a84ad1e35b9a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yarkU</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d8234bfc-9f87-41ed-8c78-92a562643369" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d01a1904-29be-4278-8b38-7da94c528d9c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yarkU 
\entryTyp root 
\gENG go.up 
\gSPN subir 
\e *yarkU 
\c V1 
\mp PMlowered 
\ach yarcu 
\ach yarca morphlowered 
\akh yarku 
\akh yarka morphlowered 
\acl yarcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl yarco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl yarca morphlowered 
\akl yarku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yarko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yarka morphlowered 
\ame yarku 
\ame yarka morphlowered</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="98e60aac-c0c6-42e0-a71b-2f618811bb60"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">unca</AUni> -<AUni ws="qvm-x-acl">unca</AUni> -<AUni ws="qvm-x-akh">unka</AUni> -<AUni ws="qvm-x-akl">unka</AUni> -<AUni ws="qvm-x-ame">unka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*unka</AUni> -<AUni ws="qvm-x-acl">*unka</AUni> -<AUni ws="qvm-x-akh">*unka</AUni> -<AUni ws="qvm-x-akl">*unka</AUni> -<AUni ws="qvm-x-ame">*unka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.231" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6dc46ea4-20eb-4528-9f5e-ffc1e3e27332" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*unka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5099d287-fb09-42e5-abb5-4d86e107d204" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9abf41ef-c05a-49f5-b0a7-442d21b0dad5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *unka 
\entryTyp root 
\gENG 
\gSPN dar.de.comer 
\e *unka 
\c V2 
\ach unca 
\akh unka 
\acl unca 
\akl unka 
\ame unka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="98ec2d97-4a2c-4f63-b3f9-32d5083d089e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ca:yi</AUni> -<AUni ws="qvm-x-acl">ca:yi; ca:ye</AUni> -<AUni ws="qvm-x-akh">ca:yi</AUni> -<AUni ws="qvm-x-akl">ca:yi; ca:ye</AUni> -<AUni ws="qvm-x-ame">ca:yi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+caer.v1</AUni> -<AUni ws="qvm-x-acl">+caer.v1</AUni> -<AUni ws="qvm-x-akh">+caer.v1</AUni> -<AUni ws="qvm-x-akl">+caer.v1</AUni> -<AUni ws="qvm-x-ame">+caer.v1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.110" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a5846a0c-bc12-44d1-a69c-09563cc1cc5c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+caer.v1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cdbbd906-fcd8-4031-83b7-5543ed93ac73" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="847e4e13-d1cf-4d03-982d-e022f9c2bdfa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +caer.v1 
\entryTyp root 
\gENG fall 
\gSPN caer 
\e +caer.v1 
\c V1 
\mp +FinalI 
\ach ca:yi 
\akh ca:yi 
\acl ca:yi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ca:ye +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ca:yi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ca:ye +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ca:yi 
\i AMO 3.5 Pishgucunapis trampaman cäyin ima micuytapis jitapaptintsiragmi. 
\mcc +caer.v1 / ~_... [trans] 
\mcc +caer.v1 / ~_ CAUS 
\mcc +caer.v1 / ~_ REF</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="98ec54e3-789c-462c-889b-b24091a2ce5b" ownerguid="4d2a67fb-91c8-4436-87f4-f4eab6cb0828"> -<ExampleWords> -<AUni ws="en">have an infection, be infected, infect, get infected, break out, develop an infection</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to having an infection?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="98edc57b-2399-4877-88cd-27d4b29642d3" ownerguid="7019ab61-993e-4b4d-9e72-e2f4b8b27858"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="98eedf7e-34a7-484b-bc09-eb5c159d9b25" ownerguid="22dba64d-28de-40f7-9e78-18a38f30642b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">news</AUni> -<AUni ws="es">noticia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fb2e8792-b7dd-4d8b-85a9-fb2015f58423" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="98f01f2d-b7fe-4cd5-922a-a5950d0d8bd6" ownerguid="fdac360e-4fe4-4aba-bd68-6e4410c06e68"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d1685fdc-96d8-4baf-9cb8-523863adb67f" t="r" /> -</Morph> -<Msa> -<objsur guid="434f36b9-aa05-46d6-be7e-89240d9e2c4d" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="98f0f88f-4c62-464f-a0ae-f139ca21f967" ownerguid="aaf9d375-f0a0-4c7b-bbf8-3c7ffd4f5a52"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">fast<er></Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">more, -er</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words express a comparative degree?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="98f41510-b28c-4b6d-8782-1a7e589ab737"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gra:da</AUni> -<AUni ws="qvm-x-acl">gra:da</AUni> -<AUni ws="qvm-x-akh">gra:da</AUni> -<AUni ws="qvm-x-akl">gra:da</AUni> -<AUni ws="qvm-x-ame">gra:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+grada</AUni> -<AUni ws="qvm-x-acl">+grada</AUni> -<AUni ws="qvm-x-akh">+grada</AUni> -<AUni ws="qvm-x-akl">+grada</AUni> -<AUni ws="qvm-x-ame">+grada</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.627" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ba8faed7-7068-4a54-a7a1-e93460e3468e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+grada</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2feba8da-76e0-40bd-ad77-1608c0bd8a45" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a7653dc2-96d2-4406-b93d-c5fad4b85832" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +grada 
\entryTyp root 
\gENG steps 
\gSPN grada 
\e +grada 
\c N0 
\ach gra:da 
\akh gra:da 
\acl gra:da 
\akl gra:da 
\ame gra:da</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="98f5dc34-591a-4109-9a35-e3542eda163f" ownerguid="45421256-0af0-4ec8-92b6-340d343009ed"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">25.pounds</AUni> -<AUni ws="es">12.kilos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ac910285-aef8-4997-aff4-d7e97f60efde" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="98f7846f-0ab0-411a-93fe-b5b5e114e7b3" ownerguid="a8a25f74-cf52-43c2-9bf2-41863f060fa6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="98f9ceff-e8a2-4e24-abc4-561b80bb5889" ownerguid="76a06e45-99f7-446f-a2e8-e23edf6064bd"> -<Abbreviation> -<AUni ws="en">8.3.7.8.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to preserving the condition of something from decay.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Preserve</AUni> -</Name> -<Questions> -<objsur guid="84da4fa1-d846-4f84-9491-57ed917c715b" t="o" /> -<objsur guid="d08af051-c1c1-4335-90bf-6c169e19eec2" t="o" /> -<objsur guid="97456324-195c-41eb-93dd-bbaf7077ea65" t="o" /> -<objsur guid="dcdd6b3b-5de9-4b0a-92cf-5ac303827b62" t="o" /> -<objsur guid="1fddbc22-8662-4ac5-a597-1bb174c825f3" t="o" /> -<objsur guid="ae3527c4-81fe-449c-93b2-9056346e5cb6" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="06ac577a-4d61-4898-ac9d-e3f18b7504af" t="r" /> -<objsur guid="41cac849-613d-4be4-a3bc-389412b7f653" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="98fe8145-f963-4983-a1c0-ac06e8d6caa4" ownerguid="de342a1f-1002-4c22-b361-2fe0e5e91614"> -<Form> -<AUni ws="qvm-x-ach">gueusa</AUni> -<AUni ws="qvm-x-acl">gueusa</AUni> -<AUni ws="qvm-x-akh">qewsa</AUni> -<AUni ws="qvm-x-akl">qewsa</AUni> -<AUni ws="qvm-x-ame">qiwsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="98ffa023-ef13-4edf-b2ad-b513262e0a5a" ownerguid="27ee8fbf-dec0-4435-879c-e4d91d1ec4f5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9900e428-278d-4fbd-a5ec-9d3ce796376e" ownerguid="01459db0-bf2a-422b-8d55-0ab505aea2b4"> -<ExampleWords> -<AUni ws="en">trouble, adversity, difficulty, hardship</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to bad things that happen in life?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="990364bc-cdf8-47e0-aafd-755f462315d0" ownerguid="a6fd8b95-5adf-43e0-8ba2-404391a14d91"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="9904f8ef-fca6-4020-815d-14f3fb6eae0f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rey</AUni> -<AUni ws="qvm-x-acl">rey</AUni> -<AUni ws="qvm-x-akh">rey</AUni> -<AUni ws="qvm-x-akl">rey</AUni> -<AUni ws="qvm-x-ame">rey</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rey</AUni> -<AUni ws="qvm-x-acl">+rey</AUni> -<AUni ws="qvm-x-akh">+rey</AUni> -<AUni ws="qvm-x-akl">+rey</AUni> -<AUni ws="qvm-x-ame">+rey</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.348" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="edf4a65b-3f3f-4cec-9511-08730f7100b5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rey</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7cc9e085-4e90-4115-98b0-c6544152e78c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="78348219-6a32-4b13-9985-54a84cb02246" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rey 
\entryTyp root 
\gENG king 
\gSPN rey 
\e +rey 
\c N0 
\mp +FinalC 
\ach rey 
\akh rey 
\acl rey 
\akl rey 
\ame rey</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="9907c381-2270-4175-8947-91dc64e16eb8" ownerguid="e28228bc-647f-47e4-a342-39fb00cdb918"> -<Form> -<AUni ws="qvm-x-ach">paqui</AUni> -<AUni ws="qvm-x-acl">paqui; paqui; paque</AUni> -<AUni ws="qvm-x-akh">paki</AUni> -<AUni ws="qvm-x-akl">paki; paki; pake</AUni> -<AUni ws="qvm-x-ame">paki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="990a0519-692a-46b0-9e5f-82999cbb8f00" ownerguid="5177eb1d-7a51-4f94-82a0-c44553beee3c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="9910c87e-6b79-442e-ba64-b11bf7fb268d" ownerguid="4d536ae0-2abc-49af-91e0-70767d9262a9"> -<Form> -<AUni ws="qvm-x-ach">ticticya; ticticyä</AUni> -<AUni ws="qvm-x-acl">ticticya; ticticyä</AUni> -<AUni ws="qvm-x-akh">tiktikya; tiktikyä</AUni> -<AUni ws="qvm-x-akl">tiktikya; tiktikyä</AUni> -<AUni ws="qvm-x-ame">tiktikya; tiktikyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="99110d35-7714-4daf-b5be-3585aef89f9b" ownerguid="e872023d-4047-41cd-a5bf-cdfef4ac2fff"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="99127519-ae2d-4415-998b-5112c02c9dfd" ownerguid="af74046a-6667-48a1-a068-ed96ca9d8fb2"> -<Form> -<AUni ws="qvm-x-ach">colchón; colchon</AUni> -<AUni ws="qvm-x-acl">colchón; colchon</AUni> -<AUni ws="qvm-x-akh">colchón; colchon</AUni> -<AUni ws="qvm-x-akl">colchón; colchon</AUni> -<AUni ws="qvm-x-ame">colchón; colchon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="99134d2a-f96e-42c1-8798-b01372d5cb27" ownerguid="6506a629-35d7-4e12-b1ae-d3c064d925e0"> -<Form> -<AUni ws="qvm-x-ach">terremötu</AUni> -<AUni ws="qvm-x-acl">terremötu; terremötu; terremöto</AUni> -<AUni ws="qvm-x-akh">terremötu</AUni> -<AUni ws="qvm-x-akl">terremötu; terremötu; terremöto</AUni> -<AUni ws="qvm-x-ame">terremötu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="991357dc-9f56-47ed-8790-85cbd5f9b06f" ownerguid="2810998c-d6cc-47a3-a946-66d0986a2767"> -<Abbreviation> -<AUni ws="en">7.3.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to moving something in a vehicle.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Transport</AUni> -</Name> -<Questions> -<objsur guid="b2678bec-f841-4524-88ba-a0163bfbe6b6" t="o" /> -<objsur guid="c1fb285f-068f-41e7-9296-3795da8e57e7" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="99159a0b-51ba-4d3b-9944-985ae8514cce" ownerguid="be352131-083c-45b0-8728-e246a01503c0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="9916ae12-fcd2-4bef-bad1-a1d5d408abc5" ownerguid="9ecbe4dd-d8b5-4c0e-93ba-0af49bb92c03"> -<Form> -<AUni ws="qvm-x-ach">aguysha</AUni> -<AUni ws="qvm-x-acl">aguysha</AUni> -<AUni ws="qvm-x-akh">aquysha</AUni> -<AUni ws="qvm-x-akl">aquysha</AUni> -<AUni ws="qvm-x-ame">aquysha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="991ba8ca-d43d-4d68-8d55-62c18e406db5" ownerguid="f3a3c98c-a0bc-4db7-9836-e2bfe57f50fa"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="991cc143-ec42-4a5b-b285-cc4b313ac8b5" ownerguid="ff3d89de-92db-4eb1-ab00-4f9a92720e16"> -<Form> -<AUni ws="qvm-x-ach">wagshu</AUni> -<AUni ws="qvm-x-acl">wagshu; wagshu; wagsho</AUni> -<AUni ws="qvm-x-akh">waqshu</AUni> -<AUni ws="qvm-x-akl">waqshu; waqshu; waqsho</AUni> -<AUni ws="qvm-x-ame">waqshu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="991d1d59-2367-47c5-934f-f1f798a9fa98"> -<Analyses> -<objsur guid="a1a48737-8d57-4702-9956-891c691d7b96" t="o" /> -</Analyses> -<Checksum val="-1778198259" /> -<Form> -<AUni ws="qvm-x-akh">yarqaramun</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="991ef507-e3bd-439e-bdaa-2d6c50d27b31" ownerguid="2e5acfd2-3009-4496-9cc2-58d2a0088994"> -<ExampleWords> -<AUni ws="en">kinky, curl, curly, wavy, straight, coarse, fine, thick, thin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe types of hair?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="991f90e0-aa64-4253-8ff0-55d4ba48fabb" ownerguid="17c8473e-c402-476d-8f93-8b20a5c9b925"> -<Form> -<AUni ws="qvm-x-ach">amälas</AUni> -<AUni ws="qvm-x-acl">amälas</AUni> -<AUni ws="qvm-x-akh">amälas</AUni> -<AUni ws="qvm-x-akl">amälas</AUni> -<AUni ws="qvm-x-ame">amälas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="9920c20a-5840-4b77-b21c-47d40fd7f5f8" ownerguid="f1ad1b4d-60a3-42b7-be30-71b5c794ce68"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 26.2 Ogracashga pichiuchanca y ogracashga wayanay\f + 26.2 Waquin runacunaga \it wagya pishgu\it* nipäcun.\f* gueshwanman mana chayashgannogmi jutsaynag runamanga maldicionashganpis mana chayangatsu.</Run> -</AStr> -</Example> -</rt> -<rt class="Segment" guid="992184b1-c323-4c81-83f5-f48d2f7c9569" ownerguid="262d0404-2451-40f9-b01e-e0190dd07374"> -<Analyses> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="fa7aeb71-200a-4a5d-9436-13faa1972fea" t="r" /> -<objsur guid="25651c34-3e31-419d-86b5-cda6907f0a4f" t="r" /> -<objsur guid="7beb2bdf-1e77-4955-99ec-39f893293020" t="r" /> -<objsur guid="a85a5670-81ba-47b9-8443-95e8be60ebec" t="r" /> -<objsur guid="a634fa54-71cd-440e-8d33-b886ebea1acf" t="r" /> -<objsur guid="4fccec2d-58a4-466f-a087-a79d6bf13b57" t="r" /> -<objsur guid="022f83e9-e527-4390-9c80-81bb6c237ca1" t="r" /> -<objsur guid="2e7d55c1-5ae3-4d4c-959b-ab1be7059fe3" t="r" /> -<objsur guid="26ca52f1-b5e7-41e8-aa2e-cf2572524687" t="r" /> -</Analyses> -<BeginOffset val="13" /> -</rt> -<rt class="LexEntry" guid="99231692-d761-4fa7-bd41-1748534dfaf0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ishpani</AUni> -<AUni ws="qvm-x-acl">ishpani; ishpani; ishpane</AUni> -<AUni ws="qvm-x-akh">ishpani</AUni> -<AUni ws="qvm-x-akl">ishpani; ishpani; ishpane</AUni> -<AUni ws="qvm-x-ame">ishpani</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ishpani</AUni> -<AUni ws="qvm-x-acl">*ishpani</AUni> -<AUni ws="qvm-x-akh">*ishpani</AUni> -<AUni ws="qvm-x-akl">*ishpani</AUni> -<AUni ws="qvm-x-ame">*ishpani</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.852" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2d05d266-1787-4020-b7f7-d91cdc3dae23" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ishpani</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="14dd6589-3725-4fa6-863c-3cd46e6ed272" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f663e266-2977-46da-bf28-d49cafbf2474" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ishpani 
\entryTyp root 
\gENG 
\gSPN 
\e *ishpani 
\c N0 
\mp +FinalI 
\ach ishpani 
\akh ishpani 
\acl ishpani / _# 
\acl ishpani +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ishpane +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ishpani / _# 
\akl ishpani +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ishpane +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ishpani 
\i 2KI 18.27 Gamcunaga pasaypa micanar ishpaniquita micunquipag y pasaypa yacunar chiulayniquitapis upunquipag.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="99294b5b-feef-4b5b-ad6e-9482505569bb" ownerguid="82a97f9c-f9fe-46d7-89cf-9f1d769b990b"> -<Category> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</Category> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="852b390a-04c7-4ffa-97e4-072ebffa88e9" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="c3ffb0a1-bf9d-4c36-a542-affc1afe981d" t="o" /> -<objsur guid="414dd991-545b-49d2-9178-2d9fac238e2d" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="992b1320-0a0e-4f3d-88b1-07000bf3d8a3" ownerguid="caab9405-4904-4a8a-b426-5fbf33393c84"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="992f3b2f-248e-4a5f-aad5-5628bce2192a" ownerguid="50eb32a2-6dbb-4b7c-b370-aacdcfeaf5fc"> -<ExampleWords> -<AUni ws="en">for fun, for a laugh, for the hell of it</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to doing something just because you enjoy it?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="99327483-571e-48ae-9194-e7f224067ffe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tina:ja</AUni> -<AUni ws="qvm-x-acl">tina:ja</AUni> -<AUni ws="qvm-x-akh">tina:ja</AUni> -<AUni ws="qvm-x-akl">tina:ja</AUni> -<AUni ws="qvm-x-ame">tina:ja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tenaja</AUni> -<AUni ws="qvm-x-acl">+tenaja</AUni> -<AUni ws="qvm-x-akh">+tenaja</AUni> -<AUni ws="qvm-x-akl">+tenaja</AUni> -<AUni ws="qvm-x-ame">+tenaja</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.863" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="da5c8ca5-f594-4b6f-9add-493f6d1d5a80" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tenaja</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="858e82f3-cc40-4dee-8adf-0dd3c5d16e67" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d1ceff21-54e7-4594-978c-3e8d1f89ccad" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tenaja 
\entryTyp root 
\gENG pot 
\gSPN tenaja 
\e +tenaja 
\c N0 
\ach tina:ja 
\akh tina:ja 
\acl tina:ja 
\akl tina:ja 
\ame tina:ja</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9932d4d8-99b8-4144-8ae2-a73101670404" ownerguid="6cbdaf94-8e2c-4b26-936a-d2f86d158250"> -<ExampleWords> -<AUni ws="en">Aborigine, African, Arab, Asian, American Indian, Caucasian, Hispanic, Indian, Latin American, Native American</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person's race on the basis of where their ancestors were from?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="99339809-686d-4346-b7df-cc8d8d3a1adb" ownerguid="8405cd70-5754-40ae-be22-a54327bcc408"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="993ad8fe-a9a4-4288-b58a-006dc1b2496b" ownerguid="3aafd578-e2b0-496b-a632-2e78e88c22a4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="993b8955-52db-4b2a-8e9a-405a155e7b60" ownerguid="34e92ff1-32aa-49c7-b4da-d161bedc5adc"> -<Abbreviation> -<AUni ws="en">6.6.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.468" /> -<DateModified val="2022-9-23 16:55:8.468" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to smelting--melting rocks to get metal out of them.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Smelting</AUni> -</Name> -<OcmCodes> -<Uni>325 Metallurgy; 327 Iron and Steel Industry</Uni> -</OcmCodes> -<Questions> -<objsur guid="2d79a3d8-84e1-41df-9fd0-356919049e34" t="o" /> -<objsur guid="0bab0747-58fd-4a90-b20e-26c83ee75649" t="o" /> -<objsur guid="569b6232-858b-4c1c-a32c-23f5c1c1c46f" t="o" /> -<objsur guid="e7f76d88-364d-47af-82df-6da7c9da264d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="993d57fd-0f0c-41ea-8ad0-0b4b6dc51a02" ownerguid="7ee3ccb5-e6cb-4028-9af5-62ae782967b5"> -<ExampleWords> -<AUni ws="en">hammer, anvil, tongs, forge, furnace, bellows</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What tools does a blacksmith use?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="99424280-0bd3-41c1-97e9-e557f6493d73"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chinchan</AUni> -<AUni ws="qvm-x-acl">chinchan</AUni> -<AUni ws="qvm-x-akh">chinchan</AUni> -<AUni ws="qvm-x-akl">chinchan</AUni> -<AUni ws="qvm-x-ame">chinchan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trintran</AUni> -<AUni ws="qvm-x-acl">*trintran</AUni> -<AUni ws="qvm-x-akh">*trintran</AUni> -<AUni ws="qvm-x-akl">*trintran</AUni> -<AUni ws="qvm-x-ame">*trintran</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.119" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cd19bcef-3997-496d-94f8-9af5309b6ec4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trintran</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="16139090-9d13-49af-9483-d71b8937abf1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="be592554-b6f0-4fdb-a66c-e80625a816c2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trintran 
\entryTyp root 
\gENG 
\gSPN 
\e *trintran 
\c N0 
\mp +FinalC 
\ach chinchan 
\akh chinchan 
\acl chinchan 
\akl chinchan 
\ame chinchan</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="9942adbf-fbc5-4d72-bf87-3306ac3b631b" ownerguid="497ab205-76f7-4bea-9dbb-fd88003b7276"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ta</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ta</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ta</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ta</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ta</Run> -</AStr> -</Form> -<Morph> -<objsur guid="4f3f1430-f126-405a-98a8-5d0b732eb948" t="r" /> -</Morph> -<Msa> -<objsur guid="eac932ef-fd79-454b-b2f7-95e85dbb829a" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="9944ed58-6d62-48d8-9c37-57d362afb3eb" ownerguid="11d93cd0-4afb-44e0-b841-2475d4b69585"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="99460595-a669-4c67-8f08-861cb2eb3b0a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gachi</AUni> -<AUni ws="qvm-x-acl">gachi; gachi; gache</AUni> -<AUni ws="qvm-x-akh">qachi</AUni> -<AUni ws="qvm-x-akl">qachi; qachi; qache</AUni> -<AUni ws="qvm-x-ame">qachi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qatri</AUni> -<AUni ws="qvm-x-acl">*qatri</AUni> -<AUni ws="qvm-x-akh">*qatri</AUni> -<AUni ws="qvm-x-akl">*qatri</AUni> -<AUni ws="qvm-x-ame">*qatri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.144" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="221343dd-01e5-4d57-9add-45cecf31fc89" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qatri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="484b7486-2e92-407f-a1d2-9b0cc44ed7fb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9f301b9d-225f-48b3-b68c-7c9102240f6c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qatri 
\entryTyp root 
\gENG plastic.cloth 
\gSPN tela.plástica 
\e *qatri 
\c N0 
\mp +FinalI 
\ach gachi 
\akh qachi 
\acl gachi / _# 
\acl gachi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gache +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qachi / _# 
\akl qachi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qache +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qachi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="9947a4ec-6acb-4a1f-85ea-ba42e630ca41" ownerguid="8583bfe9-2f9c-4eb5-817c-ad98c5b05acb"> -<Form> -<AUni ws="qvm-x-ach">litsca; lichca</AUni> -<AUni ws="qvm-x-acl">litsca; lichca</AUni> -<AUni ws="qvm-x-akh">litska; lichka</AUni> -<AUni ws="qvm-x-akl">litska; lichka</AUni> -<AUni ws="qvm-x-ame">litska; lichka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="994d2c17-eae0-4475-9854-e967d565dbcc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">senci:llu</AUni> -<AUni ws="qvm-x-acl">senci:llu; senci:llu; senci:llo</AUni> -<AUni ws="qvm-x-akh">senci:llu</AUni> -<AUni ws="qvm-x-akl">senci:llu; senci:llu; senci:llo</AUni> -<AUni ws="qvm-x-ame">senci:llu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sencillo</AUni> -<AUni ws="qvm-x-acl">+sencillo</AUni> -<AUni ws="qvm-x-akh">+sencillo</AUni> -<AUni ws="qvm-x-akl">+sencillo</AUni> -<AUni ws="qvm-x-ame">+sencillo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.490" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4499f82c-b573-4b8d-bc46-7ceec90c42d7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sencillo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4afedb64-b6cc-4cd1-bd33-ab8a482be0b4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3f930114-49a3-4332-94d4-45e240d6f710" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sencillo 
\entryTyp root 
\gENG simple 
\gSPN sencillo 
\e +sencillo 
\c N0 
\ach senci:llu 
\akh senci:llu 
\acl senci:llu / _# 
\acl senci:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl senci:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl senci:llu / _# 
\akl senci:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl senci:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame senci:llu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="9956c4ae-c53e-44b5-9114-5dafe266a6c0" ownerguid="980de7db-380d-4612-a4bc-761a35ec3953"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="99572c11-c663-466e-b856-d1da3e20ea5c" ownerguid="dd0304a6-1ed3-49c7-9844-a8cf11943bae"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="99572e5c-1820-4dbb-84a7-cac9192142f0" ownerguid="09aa0843-05ca-4889-9c5f-372905366911"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="99574527-ffce-4857-9617-38aba5877a81" ownerguid="3be7e3fe-89d4-471a-92bd-8c70fcb146bb"> -<ExampleWords> -<AUni ws="en">deafness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the condition of being deaf?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="995751ef-d71b-429c-a4ee-032f5b309bd7" ownerguid="0e79435b-f5ff-4061-81ff-49557ba2aed4"> -<Abbreviation> -<AUni ws="en">4.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.184" /> -<DateModified val="2022-9-23 16:55:8.184" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to different types of people.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Types of people</AUni> -</Name> -<Questions> -<objsur guid="3b6ae0e3-ee45-4c41-a35d-ef315d202309" t="o" /> -<objsur guid="5c80aa4d-0a6a-4e59-b430-68a11a5060d1" t="o" /> -<objsur guid="e4421429-b849-4375-abc8-fade61bc4f5f" t="o" /> -<objsur guid="68e47a4d-a0ca-4a40-9c51-6f9edd9955e4" t="o" /> -<objsur guid="4d1968da-3821-4048-8f4e-747f18dd465a" t="o" /> -<objsur guid="76bbfd8b-a4b7-4f4d-be84-2717ace035cb" t="o" /> -<objsur guid="53c467e0-e038-46ea-8d00-ada6880c7247" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="0db5817e-05bf-4703-a6b9-e239ac44f857" t="r" /> -<objsur guid="444407f2-0c75-4bb9-a84c-cbd52d0fa9c9" t="r" /> -<objsur guid="6cbdaf94-8e2c-4b26-936a-d2f86d158250" t="r" /> -<objsur guid="aec8c246-0ef7-414a-94a6-b9fdd6812a7c" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="513771eb-8467-468a-8bc8-e52567e66df9" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="995a8838-a394-4f50-af55-aa1341df9c34" ownerguid="09d7ef9b-596d-4a68-b91d-e67fdaffa371"> -<Form> -<AUni ws="qvm-x-ach">centävu</AUni> -<AUni ws="qvm-x-acl">centävu; centävu; centävo</AUni> -<AUni ws="qvm-x-akh">centävu</AUni> -<AUni ws="qvm-x-akl">centävu; centävu; centävo</AUni> -<AUni ws="qvm-x-ame">centävu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="995aa37d-c0a0-4536-9d94-e841811de23a" ownerguid="b0eda643-cc55-41f2-8fd4-152db522e813"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="995c023c-c531-4df7-883e-1c0cbaffa6f9" ownerguid="fb6840e2-11f3-434c-bb10-e35bbe7d80f1"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yqui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yqui</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yki</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1b0fe7f9-c0ed-498b-9263-f8c0d31cc569" t="r" /> -</Morph> -<Msa> -<objsur guid="2999bb54-aa09-4eed-affb-cf684bd15cf6" t="r" /> -</Msa> -</rt> -<rt class="MoInflAffMsa" guid="995c92aa-8065-4e46-add3-98c79aa138f1" ownerguid="14784775-37dd-4682-bdcc-b8944da947a5"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="fda4c591-1349-4f9e-ab87-905ae2aa25e1" t="r" /> -</Slots> -</rt> -<rt class="MoInflAffixTemplate" guid="995d4180-72d6-45f7-8862-ae462a3288af" ownerguid="f3ea5225-9cc3-474e-b548-7bda3376fce1"> -<Disabled val="False" /> -<Final val="True" /> -<SuffixSlots> -<objsur guid="b5380f6d-8ec4-4a58-806f-5e3caeadb9df" t="r" /> -</SuffixSlots> -</rt> -<rt class="CmSemanticDomain" guid="995ee828-2393-462b-be82-47f5b5439aaf" ownerguid="6c36a680-4ff4-43b9-a7c2-9037ceb0d3f6"> -<Abbreviation> -<AUni ws="en">8.3.1.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.607" /> -<DateModified val="2022-9-23 16:55:8.607" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is convex--extending outward in shape toward the viewer.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Convex</AUni> -</Name> -<Questions> -<objsur guid="6b75f129-b123-43c6-93db-341eb246af04" t="o" /> -<objsur guid="7559b371-a6e8-4c73-8308-a0468d1ae49d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="995f64f0-4244-4127-9032-5265d18840e8" ownerguid="6baae70c-2f63-458f-9757-3bfa45f953f1"> -<Form> -<AUni ws="qvm-x-ach">eqchiwya; eqchiwyä</AUni> -<AUni ws="qvm-x-acl">eqchiwya; eqchiwyä</AUni> -<AUni ws="qvm-x-akh">eqchiwya; eqchiwyä</AUni> -<AUni ws="qvm-x-akl">eqchiwya; eqchiwyä</AUni> -<AUni ws="qvm-x-ame">iqchiwya; iqchiwyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="99622f79-2a4a-4e3f-b3e2-958749dda08b" ownerguid="8718e1ed-ba2e-41c4-a112-af2a9f137ac9"> -<Form> -<AUni ws="qvm-x-ach">inöju</AUni> -<AUni ws="qvm-x-acl">inöju; inöju; inöjo</AUni> -<AUni ws="qvm-x-akh">inöju</AUni> -<AUni ws="qvm-x-akl">inöju; inöju; inöjo</AUni> -<AUni ws="qvm-x-ame">inöju</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="99634d88-2bb3-4817-abbc-a0dd18ef1c7b"> -<Analyses> -<objsur guid="d405a3d4-b41e-4c60-8841-321e5b37759d" t="o" /> -</Analyses> -<Checksum val="1150139485" /> -<Form> -<AUni ws="qvm-x-akh">qamta</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="9967d50b-ade7-4641-a23a-2bc05f70d45d" ownerguid="2330813b-7413-41a8-8eb2-ae138511c953"> -<ExampleWords> -<AUni ws="en">bright, light, well lit, ablaze with light</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a place where there is lots of light?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="996979c0-4890-430c-a725-480686d6dabc" ownerguid="1c1e1fc5-5e41-4df4-bd34-2f3e20dd0bbc"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="996b374c-01ea-49c1-950f-201e38c21dc4" ownerguid="a447a645-8095-4238-9aeb-3cc776d8c25c"> -<Form> -<AUni ws="qvm-x-ach">aysa</AUni> -<AUni ws="qvm-x-acl">aysa</AUni> -<AUni ws="qvm-x-akh">aysa</AUni> -<AUni ws="qvm-x-akl">aysa</AUni> -<AUni ws="qvm-x-ame">aysa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="996c06ca-a2c6-4f13-864b-8617ce6a97ec" ownerguid="fde96b45-cc47-4b35-88f8-a62f2243df26"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 6.3 jucpa munaynincho cashgayquipita salvacunayquipag pengayta jitaycur garantiashgayqui runata cobranqui.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="996fb4a9-6eb1-4d2d-9fcc-4d87019b6760" ownerguid="bb4f0608-4ac0-4cbc-b206-3614d98b7d29"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shoulder</AUni> -<AUni ws="es">hombro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="801ef7ba-85a0-4a57-a714-727bdc76e2d7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="99755823-e723-4329-b6c4-8a4dfc9c0381" ownerguid="e6e3adc7-b678-4f54-933d-2839455c2ff6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hate</AUni> -<AUni ws="es">odiar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="266aa733-c29e-4308-8e68-b72d34b811d3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9977f305-b96d-40a3-926d-7949dbd14f89" ownerguid="1bd42665-0610-4442-8d8d-7c666fee3a6d"> -<ExampleWords> -<AUni ws="en">moonlight, moonbeam, moonshine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to the light of the moon?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="997c1ed8-d90e-4137-9ea3-ec42e85cfcb7" ownerguid="c1870e14-5161-4955-8284-39fb7bae2274"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="997d2163-84b9-4f99-9157-4b42f2f01219" ownerguid="6e660c8b-5898-4482-b003-af758b1708b9"> -<Form> -<AUni ws="qvm-x-ach">fiesta</AUni> -<AUni ws="qvm-x-acl">fiesta</AUni> -<AUni ws="qvm-x-akh">fiesta</AUni> -<AUni ws="qvm-x-akl">fiesta</AUni> -<AUni ws="qvm-x-ame">fiesta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="997e3c5a-fa22-41ca-9852-bfc7f14fce21" ownerguid="b8d2fdb9-22ea-4040-8abb-aeeff0399f23"> -<ExampleWords> -<AUni ws="en">homicidal, murderous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe someone who wants to kill someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="997e4ecd-e14a-4543-ac15-ec6322c26501" ownerguid="df361917-97dd-4a8b-b98b-fdfa4563617d"> -<Form> -<AUni ws="qvm-x-ach">tsuta</AUni> -<AUni ws="qvm-x-acl">tsuta</AUni> -<AUni ws="qvm-x-akh">tsuta</AUni> -<AUni ws="qvm-x-akl">tsuta</AUni> -<AUni ws="qvm-x-ame">tsuta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="997eba85-9a15-48c2-8906-40ea725e8fa5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">catequista</AUni> -<AUni ws="qvm-x-acl">catequista</AUni> -<AUni ws="qvm-x-akh">catequista</AUni> -<AUni ws="qvm-x-akl">catequista</AUni> -<AUni ws="qvm-x-ame">catequista</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+catequista</AUni> -<AUni ws="qvm-x-acl">+catequista</AUni> -<AUni ws="qvm-x-akh">+catequista</AUni> -<AUni ws="qvm-x-akl">+catequista</AUni> -<AUni ws="qvm-x-ame">+catequista</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.82" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ea465097-7f31-47a9-adbc-75b413a84e69" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+catequista</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="29adb6ac-9066-4aed-8c56-7fb7ed983e5d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="887d8aa0-02a0-495c-a160-8b4b30a8de8c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +catequista 
\entryTyp root 
\gENG catechist 
\gSPN catequista 
\e +catequista 
\c N0 
\ach catequista 
\akh catequista 
\acl catequista 
\akl catequista 
\ame catequista</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="997fd62a-2f60-4ad5-9f2f-5cdc3880dfd0" ownerguid="e9fdc131-addb-4db6-8f79-ae0044e1eb81"> -<ExampleWords> -<AUni ws="en">sacred writings, Scripture, Bible, the Good Book, Gospel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to sacred writings?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9985372f-a09a-4fd7-8bc2-00f8b3ae30c0" ownerguid="80637c82-f211-4619-adc5-3c6ecda29ff2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9a40d616-1306-44df-ae65-033a7a7c7e78" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">make.legitimate</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6c463301-0796-43d5-ab5e-812529e4bf17" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="9986016c-dfda-4f67-8b96-04aede9ac45d" ownerguid="e4498a24-096e-47e6-ab99-d60a5cb19826"> -<Form> -<AUni ws="qvm-x-ach">pogu</AUni> -<AUni ws="qvm-x-acl">pogu; pogu; pogo</AUni> -<AUni ws="qvm-x-akh">poqu</AUni> -<AUni ws="qvm-x-akl">poqu; poqu; poqo</AUni> -<AUni ws="qvm-x-ame">puqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="99861dcb-c6ca-4e50-a19a-efadbb10c2cf" ownerguid="615674ac-8158-4089-ae70-b55472fd279b"> -<Abbreviation> -<AUni ws="en">8.4.6.5.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.658" /> -<DateModified val="2022-9-23 16:55:8.658" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something old--a word describing something that has existed for a long time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>58K New, Old</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Old, not new</AUni> -</Name> -<Questions> -<objsur guid="066a2a9f-b0d8-4914-8cb4-c80d35888bed" t="o" /> -<objsur guid="9d965a66-b087-4828-b780-108eba45dd11" t="o" /> -<objsur guid="b0705ec2-c147-4d1e-87b0-043f1db4be9d" t="o" /> -<objsur guid="e3b02edd-a96b-4e0e-a468-21b1313e756c" t="o" /> -<objsur guid="06f529a0-7e76-4cb9-83f4-e2ad345d11df" t="o" /> -<objsur guid="f5ab50fe-c4de-423a-9afe-06e6df95d7f4" t="o" /> -<objsur guid="697b9367-4293-43d8-9c67-dbcb33648ee7" t="o" /> -<objsur guid="6affd519-d719-4dd5-8d84-513dcb4a7ce5" t="o" /> -<objsur guid="8f1500d1-1c8b-4da9-ab4c-3c841f3d6fd7" t="o" /> -<objsur guid="3ee645e9-8233-4a5a-ab72-f5f7c7151680" t="o" /> -<objsur guid="90754ba4-1951-4761-b2a3-fe3e30b4ce6b" t="o" /> -<objsur guid="e8763279-178f-422b-8fbd-88bd095206fa" t="o" /> -<objsur guid="f795865f-2c5f-46fa-9459-82844955f9fe" t="o" /> -<objsur guid="36ddec0c-d34f-4a22-b6b0-0453d1f835a8" t="o" /> -<objsur guid="8f4d1f54-6058-49eb-a074-0dc5364908a4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="99865378-37b4-4e46-8367-7b89116652f9" ownerguid="8d59263b-19c2-4281-bf59-8448128f2326"> -<Form> -<AUni ws="qvm-x-ach">musya</AUni> -<AUni ws="qvm-x-acl">musya</AUni> -<AUni ws="qvm-x-akh">musya</AUni> -<AUni ws="qvm-x-akl">musya</AUni> -<AUni ws="qvm-x-ame">musya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="99895592-3aa5-4988-9d69-5caaedeac5b6" ownerguid="6b19e828-f597-4d0d-b7a6-f52f3bbd041f"> -<ExampleWords> -<AUni ws="en">willing, acquiescent, agreeable, compliant, disposed, fain, free, game, kindly, morale, offer, readily, ready, ungrudging, volition, volitional, voluntary, volunteer, will, willful</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being willing to do something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9989db86-c201-4791-a10f-08cbf678cb33" ownerguid="68c7d5d8-f1be-48d3-bc63-5319354c734e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.sick</AUni> -<AUni ws="es">estar.enfermo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="841a6afc-47f6-495e-8e85-151fe538d8c2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="998d216b-33ee-495a-8fa3-a58161623411"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">muti; muti</AUni> -<AUni ws="qvm-x-acl">muti; muti; mute</AUni> -<AUni ws="qvm-x-akh">muti; muti</AUni> -<AUni ws="qvm-x-akl">muti; muti; mute</AUni> -<AUni ws="qvm-x-ame">muti; muti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+muti</AUni> -<AUni ws="qvm-x-acl">+muti</AUni> -<AUni ws="qvm-x-akh">+muti</AUni> -<AUni ws="qvm-x-akl">+muti</AUni> -<AUni ws="qvm-x-ame">+muti</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.517" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1fdffcb4-f070-403d-b719-ff3ca91f3969" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+muti</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cb7c0a50-8fa2-49f2-87b9-96803f3b7cec" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="06709d5c-abbd-4c9d-8d08-2a72df87f6b2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +muti 
\entryTyp root 
\gENG stewed.grain 
\gSPN mote 
\e +muti 
\c N0 
\mp +FinalI 
\ach muti / _# 
\ach muti / ~_# 
\akh muti / _# 
\akh muti / ~_# 
\acl muti / _# 
\acl muti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mute +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl muti / _# 
\akl muti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mute +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame muti / _# 
\ame muti / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="99917717-0cdb-414f-a958-5395ef98ea4a" ownerguid="fe58ae61-ab0b-43a4-86fb-d9aedd199932"> -<ExampleWords> -<AUni ws="en">be a mixture of, combine, blend</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something being a mixture of other things?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9992b4ba-908a-42ac-a727-bb58b7f9b1c1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsaca</AUni> -<AUni ws="qvm-x-acl">tsaca</AUni> -<AUni ws="qvm-x-akh">tsaka</AUni> -<AUni ws="qvm-x-akl">tsaka</AUni> -<AUni ws="qvm-x-ame">tsaka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chaka.r</AUni> -<AUni ws="qvm-x-acl">*chaka.r</AUni> -<AUni ws="qvm-x-akh">*chaka.r</AUni> -<AUni ws="qvm-x-akl">*chaka.r</AUni> -<AUni ws="qvm-x-ame">*chaka.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.264" /> -<DateModified val="2022-10-10 21:18:47.207" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="41064032-9e71-462b-af7e-019afbe385a0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chaka.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="395d511a-58d1-483b-a2c2-7442b8631afd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f5d07df9-f492-4d14-a924-782be540f397" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chaka.r 
\entryTyp root 
\gENG 
\gSPN 
\e *chaka.r 
\c R0 
\ach tsaca 
\akh tsaka 
\acl tsaca 
\akl tsaka 
\ame tsaka</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="99946c9a-38b6-4c06-92b7-bc9f323e79ad" ownerguid="adb34adc-a53b-4ac5-be7a-6322eace9918"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="82e9c3df-e95c-44d6-998d-f3779aad6808" t="r" /> -</Morph> -<Msa> -<objsur guid="1b3c6562-1662-468e-b5c0-fcf36256167d" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="999581c4-1611-4acb-ae1b-5e6c1dfe6f0c" ownerguid="63403699-07c1-43f3-a47c-069d6e4316e5"> -<Abbreviation> -<AUni ws="en">1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.916" /> -<DateModified val="2022-9-23 16:55:7.916" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the sky.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>1B Regions Above the Earth</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Sky</AUni> -</Name> -<Questions> -<objsur guid="0ddb6bb0-869b-4c79-99d5-28fffa32b620" t="o" /> -<objsur guid="d3a5186a-87db-4e15-9d90-adcddfe47a51" t="o" /> -<objsur guid="060aa625-4c3a-412a-97ec-2a2e0be8711b" t="o" /> -<objsur guid="683f6d16-1d19-4ff3-ba09-2846947b06df" t="o" /> -<objsur guid="c97ee867-113d-4a81-aa57-1a7cdeff914e" t="o" /> -<objsur guid="47fb31ce-cbfa-4d5f-81c7-cc656667f58c" t="o" /> -<objsur guid="bf061384-e1e9-49ee-b9cf-ad01bffbbab9" t="o" /> -<objsur guid="baa31124-00a6-441f-8b78-c779984b88f5" t="o" /> -<objsur guid="95c76219-8d46-43de-9f46-f3b1d6ac7f0d" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="dc1a2c6f-1b32-4631-8823-36dacc8cb7bb" t="o" /> -<objsur guid="e836b01b-6c1a-4d41-b90a-ea5f349f88d4" t="o" /> -<objsur guid="b4aa4bbd-8abf-4503-96e4-05c75efd23d5" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="9996af37-1f17-4b09-9722-e976d0750f9b" ownerguid="82ecb5b3-9128-4b38-b9c5-612857417ceb"> -<ExampleWords> -<AUni ws="en">displeased, offended, prejudiced</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who dislikes something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="99975b42-aa57-4b92-b56a-cfa75f514bb4" ownerguid="0a39c484-07ea-454b-9cfa-511197ca8380"> -<Form> -<AUni ws="qvm-x-ach">yuquish</AUni> -<AUni ws="qvm-x-acl">yuquish</AUni> -<AUni ws="qvm-x-akh">yukish</AUni> -<AUni ws="qvm-x-akl">yukish</AUni> -<AUni ws="qvm-x-ame">yukish</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="99988f94-3aa4-4984-88df-ae228f01d3b7" ownerguid="fe9253f4-d063-4d63-91af-85273d61337f"> -<Abbreviation> -<AUni ws="en">8.3.5.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.619" /> -<DateModified val="2022-9-23 16:55:8.619" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to other, as in 'the other person', 'another thing'--a thing that is not the same as something that has been mentioned.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Other</AUni> -</Name> -<Questions> -<objsur guid="192ea1f9-49b4-4f3a-996d-586273f8951d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="999c8aee-88d8-4f27-8d57-ccfd45acb830"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">túnica; tu:nica</AUni> -<AUni ws="qvm-x-acl">túnica; tu:nica</AUni> -<AUni ws="qvm-x-akh">túnica; tu:nica</AUni> -<AUni ws="qvm-x-akl">túnica; tu:nica</AUni> -<AUni ws="qvm-x-ame">túnica; tu:nica</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+túnica</AUni> -<AUni ws="qvm-x-acl">+túnica</AUni> -<AUni ws="qvm-x-akh">+túnica</AUni> -<AUni ws="qvm-x-akl">+túnica</AUni> -<AUni ws="qvm-x-ame">+túnica</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.380" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6b0c8e23-5f0b-4e5b-a7f4-1ddc66840e29" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+túnica</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cede80ac-8204-450f-84a8-c755bb5e20e5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2a952192-5ef9-4d6a-94e9-9816af927f31" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +túnica 
\entryTyp root 
\gENG robe 
\gSPN túnica 
\e +túnica 
\c N0 
\ach túnica / _# 
\ach tu:nica / ~_# 
\akh túnica / _# 
\akh tu:nica / ~_# 
\acl túnica / _# 
\acl tu:nica / ~_# 
\akl túnica / _# 
\akl tu:nica / ~_# 
\ame túnica / _# 
\ame tu:nica / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="999eb12b-3503-4e58-b153-641cf0ba29b0" ownerguid="6c24b8fa-a36d-4bd7-83f8-fb9041b87659"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 3.21 Riccharcamur chuchunäpäga wanushga wamralana oglanëcho caycashga.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="99a01c0d-9892-49a9-bfef-c779a2c3eab9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cucharón; cucharon</AUni> -<AUni ws="qvm-x-acl">cucharón; cucharon</AUni> -<AUni ws="qvm-x-akh">cucharón; cucharon</AUni> -<AUni ws="qvm-x-akl">cucharón; cucharon</AUni> -<AUni ws="qvm-x-ame">cucharón; cucharon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cucharón</AUni> -<AUni ws="qvm-x-acl">+cucharón</AUni> -<AUni ws="qvm-x-akh">+cucharón</AUni> -<AUni ws="qvm-x-akl">+cucharón</AUni> -<AUni ws="qvm-x-ame">+cucharón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.234" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="94cc3d19-04ce-4b5e-9cbb-a6e9641d62db" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cucharón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="68bde32e-13f9-4d93-b2c6-4c369c4ae4d3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="344f3fe0-ec4e-4396-a1bd-7a0eeda9e84b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cucharón 
\entryTyp root 
\gENG 
\gSPN 
\e +cucharón 
\c N0 
\mp +FinalC 
\ach cucharón / _# 
\ach cucharon / ~_# 
\akh cucharón / _# 
\akh cucharon / ~_# 
\acl cucharón / _# 
\acl cucharon / ~_# 
\akl cucharón / _# 
\akl cucharon / ~_# 
\ame cucharón / _# 
\ame cucharon / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="99a3f2fe-d5ce-4558-b2cd-40a6cf3e275d" ownerguid="d29f2c50-a011-4471-a730-5045de1ae4fe"> -<Form> -<AUni ws="qvm-x-ach">tiranti; tirante</AUni> -<AUni ws="qvm-x-acl">tiranti; tiranti; tirante</AUni> -<AUni ws="qvm-x-akh">tiranti; tirante</AUni> -<AUni ws="qvm-x-akl">tiranti; tiranti; tirante</AUni> -<AUni ws="qvm-x-ame">tiranti; tirante</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="99a44d63-c66d-41fc-8a3c-9ee0c36b7af2" ownerguid="7fed6281-326a-4a15-8cbf-dc574594da19"> -<ExampleWords> -<AUni ws="en">tune, in tune, out of tune, sharp, flat, warm up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to adjusting an instrument so that it plays correctly?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="99a6c60a-cc23-46c7-964d-423fd92895b5" ownerguid="86c60f77-6ff9-4df2-9e54-3f6e108402af"> -<Form> -<AUni ws="qvm-x-ach">ä</AUni> -<AUni ws="qvm-x-acl">ä</AUni> -<AUni ws="qvm-x-akh">ä</AUni> -<AUni ws="qvm-x-akl">ä</AUni> -<AUni ws="qvm-x-ame">ä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="FsFeatStruc" guid="99a7fe78-3a01-46ad-9a7c-6f3018f19e7c" ownerguid="ec6359d2-b25a-466e-b6a0-4a7efa980490"> -<FeatureSpecs> -<objsur guid="6c8ef36f-464c-4a8d-833a-0d47ae922bb4" t="o" /> -</FeatureSpecs> -<Type> -<objsur guid="efc7ecdf-44ed-4b11-9eef-41aaa905ca65" t="r" /> -</Type> -</rt> -<rt class="LexSense" guid="99ab569b-7b38-41d1-b9c3-cb7973ec22d7" ownerguid="761ed6be-d61a-48d3-b666-2e09756a2bc6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mold</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3d227028-c442-414b-a7b4-5f402cf014dc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="99abaecd-4a5c-48be-ba3c-76a34616687b" ownerguid="8a838205-6ecf-497c-9a69-2fbfec0ffed9"> -<Form> -<AUni ws="qvm-x-ach">Satanás</AUni> -<AUni ws="qvm-x-acl">Satanás</AUni> -<AUni ws="qvm-x-akh">Satanás</AUni> -<AUni ws="qvm-x-akl">Satanás</AUni> -<AUni ws="qvm-x-ame">Satanás</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="99ac2583-b18d-4304-aa97-866e74d581c6" ownerguid="0537f54e-67e6-421d-9ab0-28ecccef1723"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="99b40843-54bf-4c59-ae1d-d7146cebec48" ownerguid="b5499348-b8ca-4fae-8486-b23863560ae5"> -<Abbreviation> -<AUni ws="en">4.4.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being lucky.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Lucky</AUni> -</Name> -<Questions> -<objsur guid="b2e6e921-b770-4557-a33c-90eb084605dc" t="o" /> -<objsur guid="dab9b625-f5d1-44f6-852d-f0e47df56c2e" t="o" /> -<objsur guid="6b76c073-0806-4adb-a6ec-c22448618f90" t="o" /> -<objsur guid="7317d7eb-5883-41fc-8675-f0a6646cc88a" t="o" /> -<objsur guid="57d4be42-bf24-4b38-8b11-4fb0c1b1d9d7" t="o" /> -<objsur guid="8f6a4b20-36d1-4f3e-b8c2-4314b42cf039" t="o" /> -<objsur guid="9ddba0b2-029a-4723-a3e3-67dedd366ca3" t="o" /> -<objsur guid="bea916fe-028d-454d-a02d-e2fa812b5701" t="o" /> -<objsur guid="2dce881f-eb9c-4f4a-94a0-d8f3d0575bcf" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoAffixAllomorph" guid="99b46deb-a91d-4222-a9fc-6c1a15fed4be" ownerguid="9cff6edc-9b12-4926-ae50-c3ef3cae55f6"> -<Form> -<AUni ws="qvm-x-ach">na</AUni> -<AUni ws="qvm-x-acl">na</AUni> -<AUni ws="qvm-x-akh">na</AUni> -<AUni ws="qvm-x-akl">na</AUni> -<AUni ws="qvm-x-ame">na</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="99b5b80a-a2d6-4820-adfc-1da72528c272" ownerguid="fe9253f4-d063-4d63-91af-85273d61337f"> -<Abbreviation> -<AUni ws="en">8.3.5.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.619" /> -<DateModified val="2022-9-23 16:55:8.619" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is the same thing as you just mentioned, or describing two things that are exactly the same.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>58E Same or Equivalent Kind or Class</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Same</AUni> -</Name> -<Questions> -<objsur guid="c3e4e9a0-c0b4-4b55-b513-1e6795ee13a2" t="o" /> -<objsur guid="de3356ca-0da3-4969-9eb1-196eda0ce1f0" t="o" /> -<objsur guid="1a341111-d154-402d-8656-ef83e7f7bfa6" t="o" /> -<objsur guid="5184e8b3-f869-4951-9d2a-4fd702f7e3c2" t="o" /> -<objsur guid="7c494f70-e736-44b6-b7c5-f54eafab6eef" t="o" /> -<objsur guid="2320bbd3-c06d-4bf5-af1d-6b08111fa25f" t="o" /> -<objsur guid="8950841b-4fc7-465e-8299-dcf99c834696" t="o" /> -<objsur guid="18c52ad6-be8c-4959-8b27-1b436d2d929a" t="o" /> -<objsur guid="3412d08e-fffb-4e58-b0e1-429e57e2e318" t="o" /> -<objsur guid="c05d5cc2-957d-435a-a4ff-b82e33f41328" t="o" /> -<objsur guid="2c981f79-84e6-4daf-a94c-7d6488f36d8a" t="o" /> -<objsur guid="283f0511-19ec-4b4c-925e-4bfc73f20598" t="o" /> -<objsur guid="77e62f42-06f3-41a5-929d-eb511eb4b688" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="99b722c9-6bc7-41e7-9d59-ff1e57d3cf64" ownerguid="bf521591-5c65-4164-afc3-c4ea62eef33a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="99b8a9b2-f3d6-41f9-9fe7-040264796ade" ownerguid="4c1ebd19-9be7-437e-85c0-dfa70ee9c4d3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pneumonia</AUni> -<AUni ws="es">neumonia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="55c0c6b1-25d6-49e0-94b1-e83fb68cf630" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="99b970e4-5deb-48ed-9dd5-ce6e1726d3f8" ownerguid="41a089de-32a7-4b25-b4d7-2e50c22f38a7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="99bbe317-74e9-4dd2-8e66-d5c98ebe4106" ownerguid="4153416a-784d-4f7c-a664-2640f7979a14"> -<ExampleWords> -<AUni ws="en">watercourse, dry riverbed, wash, arroyo, wadi</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a river when it has no water?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="99bc5213-69fe-47e0-a7ce-b83b5405172a" ownerguid="efa87dee-281c-4f4d-812f-8b5cb8b5bcf8"> -<Form> -<AUni ws="qvm-x-ach">cuña</AUni> -<AUni ws="qvm-x-acl">cuña</AUni> -<AUni ws="qvm-x-akh">cuña</AUni> -<AUni ws="qvm-x-akl">cuña</AUni> -<AUni ws="qvm-x-ame">cuña</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="99bc71fb-09e9-4400-9674-8f066e8a4bf7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fe:cha</AUni> -<AUni ws="qvm-x-acl">fe:cha</AUni> -<AUni ws="qvm-x-akh">fe:cha</AUni> -<AUni ws="qvm-x-akl">fe:cha</AUni> -<AUni ws="qvm-x-ame">fe:cha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fecha</AUni> -<AUni ws="qvm-x-acl">+fecha</AUni> -<AUni ws="qvm-x-akh">+fecha</AUni> -<AUni ws="qvm-x-akl">+fecha</AUni> -<AUni ws="qvm-x-ame">+fecha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.538" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c241b918-33d2-4486-bb87-4de8ff2cfa1a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fecha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6f8af73b-9df1-4f74-87cf-ed4907cdb84e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e50e32ab-7c08-4040-9bca-2aaf3f242e2c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fecha 
\entryTyp root 
\gENG date 
\gSPN fecha 
\e +fecha 
\c N0 
\ach fe:cha 
\akh fe:cha 
\acl fe:cha 
\akl fe:cha 
\ame fe:cha</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="99c02956-f8de-4b14-be12-e62c7719c91a" ownerguid="c926057e-1c0a-4806-bfea-04505812bd6e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">nin</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">nin</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">nin</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">nin</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nin</Run> -</AStr> -</Form> -<Morph> -<objsur guid="18b86caf-a560-48d6-ab1d-03882ed1fbd7" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="99c2898d-a2e0-414b-a32f-9708718caadc" ownerguid="4c862416-f7c4-4a3c-82ac-fe81e1efb879"> -<ExampleWords> -<AUni ws="en">liver, hepatic, appendix, gall bladder, pancreas, pancreatic, spleen, lymphatic, lymph node, peritoneum</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the names of each of the internal organs?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="99c41bb7-6f4e-4287-b39c-89538f759f29"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aja; aja:</AUni> -<AUni ws="qvm-x-acl">aja; aja:</AUni> -<AUni ws="qvm-x-akh">aja; aja:</AUni> -<AUni ws="qvm-x-akl">aja; aja:</AUni> -<AUni ws="qvm-x-ame">aha; aha:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aha:</AUni> -<AUni ws="qvm-x-acl">*aha:</AUni> -<AUni ws="qvm-x-akh">*aha:</AUni> -<AUni ws="qvm-x-akl">*aha:</AUni> -<AUni ws="qvm-x-ame">*aha:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.669" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0a122985-f33d-4fbf-b87b-090714266af1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aha:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="97874183-7cf9-4454-a9a1-a633ad33d864" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="06b21955-dd00-4fa6-98c8-83e0f2ef04fd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aha: 
\entryTyp root 
\gENG to.rage 
\gSPN tener.cólera 
\e *aha: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach aja foreshortened 
\ach aja: 
\akh aja foreshortened 
\akh aja: 
\acl aja foreshortened 
\acl aja: 
\akl aja foreshortened 
\akl aja: 
\ame aha foreshortened 
\ame aha:</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="99c45d69-8aae-4e74-84e2-8757c91e1d07" ownerguid="d9c288d9-54c0-42ab-a3e0-70d8a1951a74"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="07f6d3ac-02c3-4ec9-aead-a9ac1b875b4f" t="o" /> -<objsur guid="e3edb30c-066d-4017-9caa-50fd241de1e8" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiWordform" guid="99c46b95-5967-4e84-b44c-7adfbb7992f8"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">rikakatsikun</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="99c51a2c-ad49-48a6-bb0b-f059da745ec4" ownerguid="116bef13-e80f-4a15-bb0a-bb7b3794ffac"> -<Abbreviation> -<AUni ws="en">9.5.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that mark the recipient of the Patient of an activity. The Patient is usually expressed as the object of a sentence.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Recipient (of a patient)</AUni> -</Name> -<Questions> -<objsur guid="484b3ba1-71ff-4f8b-b288-adc2cb690d3b" t="o" /> -<objsur guid="78868225-716e-4197-a0ba-41898519261f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="99c59650-b088-4fa2-ab0e-db000d670f1f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">navida; navida:</AUni> -<AUni ws="qvm-x-acl">navida; navida:</AUni> -<AUni ws="qvm-x-akh">navida; navida:</AUni> -<AUni ws="qvm-x-akl">navida; navida:</AUni> -<AUni ws="qvm-x-ame">navida; navida:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+navidad</AUni> -<AUni ws="qvm-x-acl">+navidad</AUni> -<AUni ws="qvm-x-akh">+navidad</AUni> -<AUni ws="qvm-x-akl">+navidad</AUni> -<AUni ws="qvm-x-ame">+navidad</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.547" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e8cde0de-df27-4d67-b752-096b19449948" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+navidad</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="75779322-a374-4bbd-a257-1a6b44f4e1c8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c82140a2-eeb2-486e-8471-af634140b1c2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +navidad 
\entryTyp root 
\gENG christmas 
\gSPN navidad 
\e +navidad 
\c N0 
\mp +FinalC 
\mp +underlong 
\ach navida foreshortened 
\ach navida: 
\mp +underlong 
\akh navida foreshortened 
\akh navida: 
\acl navida foreshortened 
\acl navida: 
\akl navida foreshortened 
\akl navida: 
\mp +underlong 
\ame navida foreshortened 
\ame navida: 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="99c8750f-e339-4090-b184-3243781f85ef" ownerguid="7aaf3b02-0ef7-4b4e-a9d3-8617b1d841a6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="99c8fc41-644b-4d4c-a0c6-15dbb794e818" ownerguid="7f0f77fd-8996-4ed4-a896-44b0a8580146"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 26.18,19 Löcu runa lutala pitapis flëchagnogmi caycan amïgunta lulaparcur brömapagcunaga.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="99cf2c43-51bb-42ca-a657-299a164e8b53" ownerguid="79a33505-0c33-4e92-89b9-6a42e6ff2228"> -<ExampleWords> -<AUni ws="en">appear, become visible, come into view, come into sight, come out, loom, loom up, reappear, surface, materialize, assume visible form, put in an appearance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to something appearing?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="99d0d129-b427-4468-b4c6-91005be63e18" ownerguid="198436ae-c3c6-4f3c-8fe0-ea10c867f1c6"> -<Abbreviation> -<AUni ws="en">6.2.1.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.385" /> -<DateModified val="2022-9-23 16:55:8.385" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to growing tobacco.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Growing tobacco</AUni> -</Name> -<Questions> -<objsur guid="a0e825f2-99fe-4ffe-9b86-903447364d8e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="99d2b38a-eea5-4d42-a33f-922c1f4ced10" ownerguid="643ef0ba-b1ae-4562-accd-6e57fd2d3818"> -<Form> -<AUni ws="qvm-x-ach">buënu</AUni> -<AUni ws="qvm-x-acl">buënu; buënu; buëno</AUni> -<AUni ws="qvm-x-akh">buënu</AUni> -<AUni ws="qvm-x-akl">buënu; buënu; buëno</AUni> -<AUni ws="qvm-x-ame">buënu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="99d2d532-7c4e-49ec-ba16-ae3fa480e2fe" ownerguid="dc7adfea-e6bd-4b32-8bfb-32f8746e158e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">I slept the night in fits and starts.</AUni> -<AUni ws="es">asustado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="82a9f772-93a4-472c-988a-c95cc8aac465" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="99d6f90e-5168-4560-8ebe-9e81eb1a91d7" ownerguid="b4aa4bbd-8abf-4503-96e4-05c75efd23d5"> -<ExampleWords> -<AUni ws="en">thermometer, barometer, weather vane</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What instruments are used to study the weather?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="99d7ae3c-10df-4a64-9711-e9d3cf65f3bb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chimu</AUni> -<AUni ws="qvm-x-acl">chimu; chimu; chimo</AUni> -<AUni ws="qvm-x-akh">chimu</AUni> -<AUni ws="qvm-x-akl">chimu; chimu; chimo</AUni> -<AUni ws="qvm-x-ame">chimu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trimu</AUni> -<AUni ws="qvm-x-acl">*trimu</AUni> -<AUni ws="qvm-x-akh">*trimu</AUni> -<AUni ws="qvm-x-akl">*trimu</AUni> -<AUni ws="qvm-x-ame">*trimu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.119" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7de75225-3a80-4fc0-961a-427634ab9e95" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trimu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cea03b1a-4991-41c7-ba14-8c995af3b627" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="33386176-2c1b-41b4-9064-6ba520f566fb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trimu 
\entryTyp root 
\gENG herb 
\gSPN hierba 
\e *trimu 
\c N0 
\ach chimu 
\akh chimu 
\acl chimu / _# 
\acl chimu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chimo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chimu / _# 
\akl chimu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chimo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chimu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="99dd735d-a030-454c-9873-d8cac25e0cc3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wicapa</AUni> -<AUni ws="qvm-x-acl">wicapa</AUni> -<AUni ws="qvm-x-akh">wikapa</AUni> -<AUni ws="qvm-x-akl">wikapa</AUni> -<AUni ws="qvm-x-ame">wikapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wikapa</AUni> -<AUni ws="qvm-x-acl">*wikapa</AUni> -<AUni ws="qvm-x-akh">*wikapa</AUni> -<AUni ws="qvm-x-akl">*wikapa</AUni> -<AUni ws="qvm-x-ame">*wikapa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.648" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="62d60337-3051-4969-b766-c558fd748f33" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wikapa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cf93d82f-6a9f-4292-a3bb-f28bbb38e6a5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="949eede2-53ae-493c-af19-422ca9087d33" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wikapa 
\entryTyp root 
\gENG fling 
\gSPN botar 
\e *wikapa 
\c V2 
\ach wicapa 
\akh wikapa 
\acl wicapa 
\akl wikapa 
\ame wikapa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="99dd8dce-0de3-4776-97fc-7a2e707b1210" ownerguid="6fb1d03c-b0fe-49b7-a473-168f12a54a36"> -<ExampleWords> -<AUni ws="en">about time too, what time do you call this? where have you been? better late than never</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What do people say to someone who is late?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="99dec0f3-4adb-4b70-a7b2-ff3b3234edb0" ownerguid="8da5f193-899f-4e5c-a6ee-280d26d4d9d3"> -<Form> -<AUni ws="qvm-x-ach">columna</AUni> -<AUni ws="qvm-x-acl">columna</AUni> -<AUni ws="qvm-x-akh">columna</AUni> -<AUni ws="qvm-x-akl">columna</AUni> -<AUni ws="qvm-x-ame">columna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="99e04950-3a2f-49f1-a518-c7db96a93855"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fuerza</AUni> -<AUni ws="qvm-x-acl">fuerza</AUni> -<AUni ws="qvm-x-akh">fuerza</AUni> -<AUni ws="qvm-x-akl">fuerza</AUni> -<AUni ws="qvm-x-ame">fuerza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fuerza</AUni> -<AUni ws="qvm-x-acl">+fuerza</AUni> -<AUni ws="qvm-x-akh">+fuerza</AUni> -<AUni ws="qvm-x-akl">+fuerza</AUni> -<AUni ws="qvm-x-ame">+fuerza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.589" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7251b6fa-520f-4bd1-ab69-97945f1b86c3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fuerza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5ccb0107-0e79-409c-86de-194924c13651" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3ece58b5-f5c4-4ce9-9708-3b108c2982ec" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fuerza 
\entryTyp root 
\gENG strength 
\gSPN fuerza 
\e +fuerza 
\c N0 
\ach fuerza 
\akh fuerza 
\acl fuerza 
\akl fuerza 
\ame fuerza 
\mcc +fuerza / ~_ BEC</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="99e35708-ce20-4f44-b969-5e44b71b6ea2" ownerguid="fd87963b-2365-4a15-9044-dbce4701cf89"> -<Form> -<AUni ws="qvm-x-ach">garashta</AUni> -<AUni ws="qvm-x-acl">garashta</AUni> -<AUni ws="qvm-x-akh">qarashta</AUni> -<AUni ws="qvm-x-akl">qarashta</AUni> -<AUni ws="qvm-x-ame">qarashta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="99e38da1-91ad-4dff-a68f-972607936e50" ownerguid="50c1a392-2928-407a-8306-3c70141e375e"> -<Abbreviation> -<AUni ws="en">8.4.6.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to something not happening yet.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Not yet</AUni> -</Name> -<Questions> -<objsur guid="f9f54627-2230-42c8-b4c3-8da3bb58b847" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="99e3f156-9607-4160-ac95-668c82b8095f" ownerguid="d117aa22-3f18-47c4-9683-51ecf1dc7134"> -<ExampleWords> -<AUni ws="en">trunk, frond, midrib, leaf, needle, nut, husk, shell, meat, milk</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What are the parts of a coconut tree?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="99e47884-cd6b-42dd-9e8e-be04e8791dcb" ownerguid="a2989907-310a-4a71-8768-cfa71e66caa6"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="768a8995-c53f-40d3-9b9e-480133295d91" t="o" /> -<objsur guid="1fd8a47f-98b6-42ae-8f00-726f1318afb8" t="o" /> -<objsur guid="223c23ec-7258-4d6f-b444-7de7f226ddb6" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="99e6dfb0-c924-4029-ba21-7817a89c3f2a" ownerguid="ebccb87f-8554-4b1e-b829-d964c9d9cb9b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="15ea98c8-b0b3-409a-9160-904f3644757b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="99e8a6c6-700e-42bf-b4ba-516e36c9c64c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">león; leon</AUni> -<AUni ws="qvm-x-acl">león; leon</AUni> -<AUni ws="qvm-x-akh">león; leon</AUni> -<AUni ws="qvm-x-akl">león; leon</AUni> -<AUni ws="qvm-x-ame">león; leon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+león</AUni> -<AUni ws="qvm-x-acl">+león</AUni> -<AUni ws="qvm-x-akh">+león</AUni> -<AUni ws="qvm-x-akl">+león</AUni> -<AUni ws="qvm-x-ame">+león</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.74" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="69428a6f-342c-4768-998f-eba5e4c71c1e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+león</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2866f7ae-4d9a-403d-a1ff-c318b24dc289" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3e774275-0ff7-45e7-b90a-b54d468978ae" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +león 
\entryTyp root 
\gENG lion 
\gSPN león 
\e +león 
\c N0 
\mp +FinalC 
\ach león / _# 
\ach leon / ~_# 
\akh león / _# 
\akh leon / ~_# 
\acl león / _# 
\acl leon / ~_# 
\akl león / _# 
\akl leon / ~_# 
\ame león / _# 
\ame leon / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="99e95bf5-86f9-40e1-8806-da801bc8a364" ownerguid="3388ec9f-d179-46d1-87e4-8a2ddb25375f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">break</AUni> -<AUni ws="es">trozarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e7c7c1ea-79b7-4d41-8a28-ea6ac1ae17ac" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="99ee1558-34b2-4a1b-bfd2-eb4ccbfe7728" ownerguid="7d54d3dd-5fb2-4640-9bcf-c234696af894"> -<Abbreviation> -<AUni ws="en">4.3.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.235" /> -<DateModified val="2022-9-23 16:55:8.235" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being reliable--words describe a person who can be relied on to do what he is supposed to.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Reliable</AUni> -</Name> -<Questions> -<objsur guid="7ee082e8-1f0d-4ff6-b839-e91c589fde83" t="o" /> -<objsur guid="87d1d349-6b6c-4787-94f3-018efbf11aa6" t="o" /> -<objsur guid="0b09c30e-fec2-4377-b976-470c7386e0d7" t="o" /> -<objsur guid="ed28b419-7c75-4574-9cf3-d7cf423ef35b" t="o" /> -<objsur guid="4385b9bf-35d5-413d-b7bb-239a67cf8843" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="99ef8643-6b78-4ab0-b284-09c213462ff5" ownerguid="c01442d9-7a0d-41b5-9fbf-5f78c8d5999a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sparrow</AUni> -<AUni ws="es">gorrión</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="451e960e-0cdf-4349-a4fb-6004c3b83a07" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="99f0ba8c-b86f-434d-a668-7ebaafb60afe" ownerguid="64fcd0a7-1ca7-412d-bb55-c91f7392fde2"> -<Form> -<AUni ws="qvm-x-ach">chucaru</AUni> -<AUni ws="qvm-x-acl">chucaru</AUni> -<AUni ws="qvm-x-akh">chucaru</AUni> -<AUni ws="qvm-x-akl">chucaru</AUni> -<AUni ws="qvm-x-ame">chucaru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="99f2af42-c1da-4158-8760-849ccbc939d3" ownerguid="ba38505d-9033-4eaf-ac46-8a5e8d4f335a"> -<Form> -<AUni ws="qvm-x-ach">ausiliu; ausilio</AUni> -<AUni ws="qvm-x-acl">ausiliu; ausiliu; ausilio</AUni> -<AUni ws="qvm-x-akh">ausiliu; ausilio</AUni> -<AUni ws="qvm-x-akl">ausiliu; ausiliu; ausilio</AUni> -<AUni ws="qvm-x-ame">ausiliu; ausilio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="99f35726-13f9-48d4-aac2-e2bde5c296eb" ownerguid="efd85e94-ea33-45d8-b169-397a34acd71d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ff29ca11-5122-447f-aa00-031d3cbfadc8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="99f5d0f4-2deb-49e4-a002-c37083b1f9b2" ownerguid="474aa982-8350-47e2-a983-e1e2bce9d928"> -<ExampleWords> -<AUni ws="en">happy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to feeling good for a long time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="99f69975-ac83-4cad-ae5b-afff3a577889" ownerguid="8db7c016-bdc9-410b-9523-3197602358f4"> -<ExampleWords> -<AUni ws="en">library, bookcase, file cabinet, archive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something used to store written material?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="99f6d9c4-83ff-4104-9041-41b9bd9ef927"> -<Analyses> -<objsur guid="d887b868-775f-4179-a8a9-18256256982c" t="o" /> -</Analyses> -<Checksum val="-488631121" /> -<Form> -<AUni ws="qvm-x-akh">wawä</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="9a027801-3de2-469b-9c91-033a6ebab97b" ownerguid="e94a5cf3-1fd4-4b52-902f-bbf0ad6bac2b"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">We <only> have five chairs.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">only, just, no more than, all</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that there is only a particular number or amount of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9a02935b-f2e2-4719-a703-676ead141a22" ownerguid="f144e812-3c2f-49e5-a07a-54be78e9dec4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">small.ones</AUni> -<AUni ws="es">chicos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a3ccb9f6-445e-4ec2-8cb5-f9708a07b500" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="9a0398ad-d21e-40d7-8e98-5154e012ee3b" ownerguid="852335c0-3900-49e5-8717-136f53f3ed79"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 N1/N0</Run> -</AStr> -</Custom> -<Definition> -<AStr ws="en"> -<Run ws="en">superlative</Run> -</AStr> -<AStr ws="es"> -<Run ws="es">superlativo</Run> -</AStr> -</Definition> -<Gloss> -<AUni ws="en">SUP</AUni> -<AUni ws="es">SUP</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="00740d5f-863f-4708-8c1c-58699413571e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="9a039ca3-c371-4e0e-9e8c-482838e42356" ownerguid="e0cd4a33-d8bb-45df-86f1-222d52ec9e4c"> -<Form> -<AUni ws="qvm-x-ach">cuenta</AUni> -<AUni ws="qvm-x-acl">cuenta</AUni> -<AUni ws="qvm-x-akh">cuenta</AUni> -<AUni ws="qvm-x-akl">cuenta</AUni> -<AUni ws="qvm-x-ame">cuenta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="9a04fa57-eeb7-4e70-8b0e-ccf8d45404f8"> -<Analyses> -<objsur guid="fe2136a5-5025-4394-b6d7-29b78f480494" t="o" /> -</Analyses> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">arushqaykiman</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="9a06d38d-d4e0-4e84-9da0-0922b5b07671" ownerguid="ed7930df-e7b4-43c9-a11a-b09521276b57"> -<ExampleWords> -<AUni ws="en">smelly, stinking, acrid, body odor, awful, fetid, foul, foul-smelling, fusty, malodorous, moldy, musty, noisome, pungent, putrid, rancid, rank, reeking, rotten</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe something that smells bad?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9a083e4c-a32a-4bd2-be37-4b59af69516d" ownerguid="5a44d956-4cd0-4365-bcab-90949866ef55"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="9a0e46a2-ed49-467b-a201-37377c06b1a2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">apuesta</AUni> -<AUni ws="qvm-x-acl">apuesta</AUni> -<AUni ws="qvm-x-akh">apuesta</AUni> -<AUni ws="qvm-x-akl">apuesta</AUni> -<AUni ws="qvm-x-ame">apuesta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+apuesta.1</AUni> -<AUni ws="qvm-x-acl">+apuesta.1</AUni> -<AUni ws="qvm-x-akh">+apuesta.1</AUni> -<AUni ws="qvm-x-akl">+apuesta.1</AUni> -<AUni ws="qvm-x-ame">+apuesta.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.810" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c5e052e7-3eac-4e9c-a3f9-073b1980ed0a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+apuesta.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="71955fa6-e0db-4f37-917f-b11f22a76976" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dd6907ae-1870-4b5d-8ef2-49a0fc088807" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +apuesta.1 
\entryTyp root 
\gENG race 
\gSPN apuesta 
\e +apuesta.1 
\c N0 
\ach apuesta 
\akh apuesta 
\acl apuesta 
\akl apuesta 
\ame apuesta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="9a0e8478-e42b-4a2f-9ba1-19ed1019abc2" ownerguid="fdaedbb6-8223-4884-86ff-cb2bad0e8175"> -<Form> -<AUni ws="qvm-x-ach">orgu</AUni> -<AUni ws="qvm-x-acl">orgu; orgu; orgo</AUni> -<AUni ws="qvm-x-akh">orqu</AUni> -<AUni ws="qvm-x-akl">orqu; orqu; orqo</AUni> -<AUni ws="qvm-x-ame">urqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9a12fb25-ed25-444f-be7d-9ed1456c1031" ownerguid="56984b2b-3417-49b4-a082-1a383551a9e9"> -<ExampleWords> -<AUni ws="en">contraction, push, bear down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the contractions of the muscles of the uterus?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="9a173912-e4b7-48b0-8912-9551312eb363" ownerguid="326f2174-eef5-4ed4-987d-021d9e7946a1"> -<Form> -<AUni ws="qvm-x-ach">garcu</AUni> -<AUni ws="qvm-x-acl">garcu; garco</AUni> -<AUni ws="qvm-x-akh">qarku</AUni> -<AUni ws="qvm-x-akl">qarku; qarko</AUni> -<AUni ws="qvm-x-ame">qarku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="9a189da3-4e52-4cad-b44b-d58cdadc7192"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">calinta</AUni> -<AUni ws="qvm-x-acl">calinta</AUni> -<AUni ws="qvm-x-akh">calinta</AUni> -<AUni ws="qvm-x-akl">calinta</AUni> -<AUni ws="qvm-x-ame">calinta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+calentar</AUni> -<AUni ws="qvm-x-acl">+calentar</AUni> -<AUni ws="qvm-x-akh">+calentar</AUni> -<AUni ws="qvm-x-akl">+calentar</AUni> -<AUni ws="qvm-x-ame">+calentar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.21" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d5146a70-6b2c-402c-842c-67c0be740af2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+calentar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="94626b6f-6a4b-4c45-b7f2-7eab6f173940" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cd122d7e-1bcc-409d-a692-3ccdac0a783f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +calentar 
\entryTyp root0 
\gENG heat 
\gSPN calentar 
\e +calentar 
\c V2 
\ach calinta 
\akh calinta 
\acl calinta 
\akl calinta 
\ame calinta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9a1aee83-034c-44e7-a6d6-fcbe57beb95a" ownerguid="aec8c246-0ef7-414a-94a6-b9fdd6812a7c"> -<ExampleWords> -<AUni ws="en">middle-class, bourgeois, the bourgeoisie, white-collar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person belonging to the middle class?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="9a1f3d20-0579-4020-a2ab-64ba0933dc8a" ownerguid="fe0ad458-333d-4cd1-bacf-d10f15f9b8fa"> -<Form> -<AUni ws="qvm-x-ach">obliga</AUni> -<AUni ws="qvm-x-acl">obliga</AUni> -<AUni ws="qvm-x-akh">obliga</AUni> -<AUni ws="qvm-x-akl">obliga</AUni> -<AUni ws="qvm-x-ame">obliga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="9a20da5d-ca8d-4217-99de-f7c5f9ebe167" ownerguid="3735603d-7c81-4258-901a-198682a69433"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Deu 4.11 Tsaypitanami punta chaquinman juntacaycur ricapäcorgayqui puntapita nina rupar ciëluyag sharcogta. Tsaynogpis ricapäcorgayqui yanauyaycag pucutay tsay puntata pasaypa quiluraycagta \f +4.11 Waquin runacuna nipäcun \it pasaypa tsapacurcogta\it*.\f*.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="9a20fe99-bf9c-4277-9d2e-ad56e04631d0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">desairi</AUni> -<AUni ws="qvm-x-acl">desairi; desaire</AUni> -<AUni ws="qvm-x-akh">desairi</AUni> -<AUni ws="qvm-x-akl">desairi; desaire</AUni> -<AUni ws="qvm-x-ame">desairi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+desairar</AUni> -<AUni ws="qvm-x-acl">+desairar</AUni> -<AUni ws="qvm-x-akh">+desairar</AUni> -<AUni ws="qvm-x-akl">+desairar</AUni> -<AUni ws="qvm-x-ame">+desairar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.384" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="72106968-7a5e-4def-909d-5745226a9dfa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+desairar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c3751205-7636-4e36-b8c1-cedb1e20faf8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="95fbeece-791e-4cba-aebe-344209ae6be3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +desairar 
\entryTyp root 
\gENG 
\gSPN 
\e +desairar 
\c V2 
\mp +FinalI 
\ach desairi 
\akh desairi 
\acl desairi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl desaire +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl desairi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl desaire +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame desairi 
\i JER 2.36 Asiria nacionman puntata yäracuptiquipis desairishushgayquinoglami Egipto nacionman yäracuptiquipis desairishunquipag.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="9a25af4b-3063-4f36-8a44-c6732e91a2b5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shulshul</AUni> -<AUni ws="qvm-x-acl">shulshul</AUni> -<AUni ws="qvm-x-akh">shulshul</AUni> -<AUni ws="qvm-x-akl">shulshul</AUni> -<AUni ws="qvm-x-ame">shulshul</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shullshull</AUni> -<AUni ws="qvm-x-acl">*shullshull</AUni> -<AUni ws="qvm-x-akh">*shullshull</AUni> -<AUni ws="qvm-x-akl">*shullshull</AUni> -<AUni ws="qvm-x-ame">*shullshull</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.630" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f8b96122-2737-4626-bb9b-98233c96af45" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shullshull</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f588a915-ba11-4d1c-af51-b2446bb5eda8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="21647a26-2e52-4ae7-9fd8-c63eb9b5e0a6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shullshull 
\entryTyp root 
\gENG flower 
\gSPN flor 
\e *shullshull 
\c NOSUFF 
\ach shulshul 
\akh shulshul 
\acl shulshul 
\akl shulshul 
\ame shulshul</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="9a275f7a-6f75-4e85-afaf-f771c6015520" ownerguid="8c9fdbea-7063-48ab-9e75-cfb05208ab9d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9a2aee69-da09-4300-98ab-f01860e48489" ownerguid="38ab2681-fcc7-4a75-bb0b-29c5cd2e3a8f"> -<ExampleWords> -<AUni ws="en">send</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to sending someone to do something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9a30535e-f048-43cd-9d28-f221d7d14371" ownerguid="1f3519f8-d946-4857-a1fd-553d98dddf6d"> -<ExampleWords> -<AUni ws="en">foolish, shortsighted, unwise</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who makes bad decisions?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9a30755f-46f4-4919-a6a8-11c23c6aff14" ownerguid="ae7d2dd7-7c7d-4f25-90f6-ae153c694063"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1 V2/V2</Run> -</AStr> -</Custom> -<Definition> -<AStr ws="en"> -<Run ws="en">verbal pluralizer - does not morphlower, does not foreshorten</Run> -</AStr> -</Definition> -<Examples> -<objsur guid="cad12a7a-25ce-416c-8ebe-6ad475bf6f4a" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">PLALLM</AUni> -<AUni ws="es">PLTODM</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="68618445-e00f-461f-b5f0-47431ba947f9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="9a31c915-004d-43de-be20-b731f4cf68ba" ownerguid="82107093-8388-4cc7-bc8f-bbff667c1696"> -<Form> -<AUni ws="qvm-x-ach">vecïna</AUni> -<AUni ws="qvm-x-acl">vecïna</AUni> -<AUni ws="qvm-x-akh">vecïna</AUni> -<AUni ws="qvm-x-akl">vecïna</AUni> -<AUni ws="qvm-x-ame">vecïna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="9a3510ee-e718-41fb-a270-8522d29e0855" ownerguid="a447a645-8095-4238-9aeb-3cc776d8c25c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9a3564ee-0690-48eb-8997-5f7d68b77e9d" ownerguid="615674ac-8158-4089-ae70-b55472fd279b"> -<ExampleWords> -<AUni ws="en">be (ten), be (ten) years old, be (ten) years of age, aged (ten), (a boy) of (ten), (ten)-year-old, have turned (ten)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used to say how old someone is?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9a392b60-de1d-4e87-b6ff-6d1af029cd3e" ownerguid="dc1055aa-98c7-4ecd-845c-e5e3a51529b9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">difficult</AUni> -<AUni ws="es">diffcil</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2ab976b6-c090-4455-ba9a-7467509b11af" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="9a3aea3c-6e4e-44fc-93df-e609071f8fa9" ownerguid="b2d2501f-e8da-4675-8505-9b5dc5b52d4c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="9a3b5920-6b21-4989-868a-3f2c64e0c1df" ownerguid="cb2d461b-e205-4c20-8a53-00abb5b008f8" /> -<rt class="MoStemMsa" guid="9a3caede-cd72-4b9f-8383-8dc826d5b0a1" ownerguid="aa30fd65-3da9-4370-8bad-c0a8d76f6b01"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="9a3cf33a-4804-4eb4-8dfd-80f6018764e5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lapi</AUni> -<AUni ws="qvm-x-acl">lapi; lapi; lape</AUni> -<AUni ws="qvm-x-akh">lapi</AUni> -<AUni ws="qvm-x-akl">lapi; lapi; lape</AUni> -<AUni ws="qvm-x-ame">lapi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llapi.n</AUni> -<AUni ws="qvm-x-acl">*llapi.n</AUni> -<AUni ws="qvm-x-akh">*llapi.n</AUni> -<AUni ws="qvm-x-akl">*llapi.n</AUni> -<AUni ws="qvm-x-ame">*llapi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.144" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="315c1ccc-fdda-4948-a788-d81c7ad4f705" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llapi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a5b03f12-55fc-4a09-889b-edd1cdf26c99" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b30271ea-da8c-42b7-9357-5d8e2788982e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llapi.n 
\entryTyp root 
\gENG floppy 
\gSPN colgante 
\e *llapi.n 
\c N0 
\mp +FinalI 
\ach lapi 
\akh lapi 
\acl lapi / _# 
\acl lapi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lape +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lapi / _# 
\akl lapi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lape +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lapi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="9a400249-719c-437b-b3b7-9929055dda24" ownerguid="5ea72913-a220-4d8c-aa5a-15eb9dc0d4c5"> -<Form> -<AUni ws="qvm-x-ach">tünas</AUni> -<AUni ws="qvm-x-acl">tünas</AUni> -<AUni ws="qvm-x-akh">tünas</AUni> -<AUni ws="qvm-x-akl">tünas</AUni> -<AUni ws="qvm-x-ame">tünas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="9a40d616-1306-44df-ae65-033a7a7c7e78" ownerguid="9985372f-a09a-4fd7-8bc2-00f8b3ae30c0"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">GAL 4.5 Tsaynoqpami paypa wamrankunana kanantsipaq legitikamashkantsi.</Run> -</AStr> -</Example> -</rt> -<rt class="StTxtPara" guid="9a4116ea-854f-4905-b59d-a93e7540a437" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">aywapäkamushqayki. </Run> -<Run ws="en">\tr < V1 *aywa > PLALL AFAR REL1 2P</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="92a87a1d-b01f-4230-ba05-2279554498b9" t="o" /> -<objsur guid="7ddb8759-c9ff-45ae-a50a-59df4063b0e3" t="o" /> -</Segments> -</rt> -<rt class="MoStemMsa" guid="9a413a24-c54a-46a9-ada0-50f15ddaad42" ownerguid="e6cce7f5-6441-4d6e-8d80-af1b477342ac"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="9a456463-3c71-4f9a-8117-dc2fcb087bd3" ownerguid="ff7e3abd-6810-4128-83c9-701b4925c2fe"> -<Abbreviation> -<AUni ws="en">5.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.335" /> -<DateModified val="2022-9-23 16:55:8.335" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that refer to tending a fire--to keep a fire burning so that it burns well and does not go out.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Tend a fire</AUni> -</Name> -<Questions> -<objsur guid="7aa7d5f4-78a3-4a3a-a020-7923b109b728" t="o" /> -<objsur guid="050b35e1-e2d0-4441-9260-62631b0e8b16" t="o" /> -<objsur guid="e8e7599a-df43-4ab5-b59a-7fcebcb94a7a" t="o" /> -<objsur guid="24135721-a637-4451-8eae-b8a0facaf447" t="o" /> -<objsur guid="2f3198fe-a5e4-4a35-a833-22d69589d1b8" t="o" /> -<objsur guid="d980feed-3ace-4467-a3d4-6022e9c7e125" t="o" /> -<objsur guid="43545105-d8c3-4fc0-91ed-47e37ca393eb" t="o" /> -<objsur guid="930a03dd-3974-45b1-b3c2-83908347ffb2" t="o" /> -<objsur guid="e1f35bca-2f42-4f8b-8bb2-70d6c74f1eb0" t="o" /> -<objsur guid="28d11532-0485-4496-8973-e4904a1e4e2b" t="o" /> -<objsur guid="66d1cfd9-00df-4143-9a6b-47105def5e20" t="o" /> -<objsur guid="0d6f506a-21dc-4d79-b654-697dcc82038d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="9a466e3d-e249-4c70-a52a-395c4d4fd851"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">umru</AUni> -<AUni ws="qvm-x-acl">umru; umro</AUni> -<AUni ws="qvm-x-akh">umru</AUni> -<AUni ws="qvm-x-akl">umru; umro</AUni> -<AUni ws="qvm-x-ame">umru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hombrear</AUni> -<AUni ws="qvm-x-acl">+hombrear</AUni> -<AUni ws="qvm-x-akh">+hombrear</AUni> -<AUni ws="qvm-x-akl">+hombrear</AUni> -<AUni ws="qvm-x-ame">+hombrear</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.741" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ab2e9222-1ed3-44aa-95ae-895fc93b1a9d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hombrear</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8a03b9ba-52e3-4fa1-874d-862d5eecf4a7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="27d97a65-3e6e-490c-8fac-047a6ba84a11" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hombrear 
\entryTyp root 
\gENG to.shoulder 
\gSPN hombrear 
\e +hombrear 
\c V1 
\mp +assimilated 
\ach umru 
\akh umru 
\acl umru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl umro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl umru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl umro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame umru 
\mcc +hombrear / ~_ [lla] 3 COND</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="9a4ac861-4e1c-4964-8796-b419ea24201a" ownerguid="91aee6e3-5c77-4b16-b448-1f719bcdaea9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">open</AUni> -<AUni ws="es">abrir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cf947f57-1ad3-431e-be09-b4be4b9ecd9f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9a4c2ee7-41c2-4e58-a5aa-5179ef9506f5" ownerguid="87dd09b8-689c-4a56-b3f6-846a849f71b8"> -<ExampleWords> -<AUni ws="en">correct, edit, mark, reprove, punish, discipline</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to correcting a mistake?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9a4c83bb-92b8-4469-9758-df1456f7e019" ownerguid="bfa3be74-0390-4e2e-bdb7-ed41eb67e4f1"> -<ExampleWords> -<AUni ws="en">rainy, wet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe the weather when it is raining?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="9a4d4dcc-3f76-4efa-8275-8265349c47b4" ownerguid="5381a1bc-5f38-462f-8404-59aa5e3799e2"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Tagay runa agtsasapa car achami caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="9a504072-b48c-4957-af20-e98808b53d1b" ownerguid="c17b70a4-fefa-42c9-850b-ebde6e26e9f7"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="9a5455af-ab0e-450d-a3e8-291786b8d888" ownerguid="2c7cb499-562d-4b42-8f26-e3317e0f4c69"> -<Form> -<AUni ws="qvm-x-ach">milu</AUni> -<AUni ws="qvm-x-acl">milu; milo</AUni> -<AUni ws="qvm-x-akh">milu</AUni> -<AUni ws="qvm-x-akl">milu; milo</AUni> -<AUni ws="qvm-x-ame">milu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="9a546f94-1226-4acc-a36f-146114658c9d" ownerguid="5e8f97eb-5732-4ef2-bec0-bfe818b9d41c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="9a55a7cb-dd17-4cee-9a5b-a1e1a9ba8501" ownerguid="987c6c27-3982-4ce5-9938-e578b61ebfe3"> -<Form> -<AUni ws="qvm-x-ach">sacya</AUni> -<AUni ws="qvm-x-acl">sacya</AUni> -<AUni ws="qvm-x-akh">sakya</AUni> -<AUni ws="qvm-x-akl">sakya</AUni> -<AUni ws="qvm-x-ame">sakya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="9a59b78d-969a-479f-9ea9-5895984d18c2" ownerguid="a9a5d19c-f4cf-4fe3-a25c-4bc0803115a9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9a5aea32-89db-4854-9127-133447b94640" ownerguid="2e30f02d-d1e6-489c-a1fb-8b9fb6ecd819"> -<ExampleWords> -<AUni ws="en">disappointment, anticlimax, bitter pill to swallow, blow, letdown, discouragement, frustration</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something that causes someone to feel disappointed?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9a5b2af7-c8c9-4eac-ac9e-510fd2f9625b" ownerguid="0db5817e-05bf-4703-a6b9-e239ac44f857"> -<ExampleWords> -<AUni ws="en">sexual equality, sexual discrimination, sexism, sexist, male chauvinism, male chauvinist, feminism, feminist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to problems between men and women?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="9a5b319b-b7d7-4968-bb8f-7b7d6d7b6380" ownerguid="6e5a4fd3-3971-4583-80b5-e66bd9e2b360"> -<Form> -<AUni ws="qvm-x-ach">yargU</AUni> -<AUni ws="qvm-x-acl">yargU</AUni> -<AUni ws="qvm-x-akh">yarqU</AUni> -<AUni ws="qvm-x-akl">yarqU</AUni> -<AUni ws="qvm-x-ame">yarqU</AUni> -</Form> -<IsAbstract val="True" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9a5c2cfb-4c9f-4860-a279-b78635f62737" ownerguid="965c6a0b-3034-4e2f-a00b-ed2eb3119a5d"> -<Question> -<AUni ws="en">(6) Meanings co-occurring with imperative:</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9a5d153a-c42a-43ca-83de-bb0c9129b54e" ownerguid="345e019f-87d2-415d-ba37-9fb85460f7e1"> -<ExampleWords> -<AUni ws="en">lumbering, forestry, lumber industry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to lumbering?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9a682783-0f14-477e-9c68-8b88e0ee8058" ownerguid="2b9c1681-c55d-4fcf-892e-4fd28f7b65df"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="9a68d3be-cc57-4200-8a0e-b1528c8830dd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">i:lu</AUni> -<AUni ws="qvm-x-acl">i:lu; i:lu; i:lo</AUni> -<AUni ws="qvm-x-akh">i:lu</AUni> -<AUni ws="qvm-x-akl">i:lu; i:lu; i:lo</AUni> -<AUni ws="qvm-x-ame">i:lu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*i:llu</AUni> -<AUni ws="qvm-x-acl">*i:llu</AUni> -<AUni ws="qvm-x-akh">*i:llu</AUni> -<AUni ws="qvm-x-akl">*i:llu</AUni> -<AUni ws="qvm-x-ame">*i:llu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.802" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="af4fe667-a873-44ea-b8a4-7e4a81bbf2c9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*i:llu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4ba0260a-61a9-4eee-9c38-38f94be0f7b8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="710dafe8-bcce-4c3c-bb9a-61c785da3c12" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *i:llu 
\entryTyp root 
\gENG seems 
\gSPN parece 
\e *i:llu 
\c R0 
\ach i:lu 
\akh i:lu 
\acl i:lu / _# 
\acl i:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl i:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl i:lu / _# 
\akl i:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl i:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame i:lu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9a69ca18-8039-418a-b983-a6863021bd35" ownerguid="f5642647-9b9c-499b-a66e-349593c863f1"> -<ExampleWords> -<AUni ws="en">silent, quiet, close-mouthed, mum, mute, speechless, wordless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who is silent?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9a738f40-d914-4a10-b191-6d838812ceed" ownerguid="aaf63abd-c8a5-4546-8fc1-a51c6e607683"> -<ExampleWords> -<AUni ws="en">hope (n), wish (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something good that may happen in the future?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9a756508-f1c3-4c22-9049-04a801f14687" ownerguid="2c96d9ad-62d9-47eb-b44a-060e3f497217"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="97b6a68e-54f2-4e93-a6da-fa516a8aa206" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="9a7604b4-d42f-44b7-9aef-47847dc93f0b" ownerguid="01459db0-bf2a-422b-8d55-0ab505aea2b4"> -<Abbreviation> -<AUni ws="en">4.4.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to suffering--to feel very bad because of something very bad that has happened to you.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Suffer</AUni> -</Name> -<Questions> -<objsur guid="61ab52b2-1059-4d92-b934-4bab2a6ef431" t="o" /> -<objsur guid="7d90fb34-e003-4435-83bb-1e3953b3eb36" t="o" /> -<objsur guid="5ad4805a-0707-476f-a190-73c427d37385" t="o" /> -<objsur guid="631bd16a-f461-4f2f-b46d-f7d7df4ae4e1" t="o" /> -<objsur guid="4f5cfc57-2448-430c-9197-6199ea7ee17d" t="o" /> -<objsur guid="8d8a80d6-97fc-44df-a194-a1e6ad59cf58" t="o" /> -<objsur guid="da1fec31-048a-423a-ab67-9148322cbc70" t="o" /> -<objsur guid="8f66f2ab-5fb0-4ad2-9e16-e6403cbb1daf" t="o" /> -<objsur guid="aea1569d-f1c7-401a-b46b-90894b615fec" t="o" /> -<objsur guid="50620963-f3f5-4038-8c27-19639a73ec35" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="768aed05-dbc9-4caf-9461-76cb3720f908" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="9a77016a-6e75-4ec5-8fcf-cc615b6f754b" ownerguid="7a0cfaa7-f048-4a09-8320-52bf4b679ab9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="9a7cc768-f4a3-42ae-8b0b-838ca88538f8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tapla</AUni> -<AUni ws="qvm-x-acl">tapla</AUni> -<AUni ws="qvm-x-akh">tapla</AUni> -<AUni ws="qvm-x-akl">tapla</AUni> -<AUni ws="qvm-x-ame">tapla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*taplla</AUni> -<AUni ws="qvm-x-acl">*taplla</AUni> -<AUni ws="qvm-x-akh">*taplla</AUni> -<AUni ws="qvm-x-akl">*taplla</AUni> -<AUni ws="qvm-x-ame">*taplla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.805" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e390bbbd-25d2-4130-9ded-7b8dbebb398f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*taplla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fa46d54a-9db3-4d4b-8163-7cea566bf36f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a23835cc-abf0-4625-a030-13a792965a47" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *taplla 
\entryTyp root 
\gENG 
\gSPN 
\e *taplla 
\c V2 
\ach tapla 
\akh tapla 
\acl tapla 
\akl tapla 
\ame tapla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="9a7e6399-c3b1-4e1b-936a-856d09a944a7" ownerguid="4390e993-552f-417f-a6ab-1d7ee15bb530"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">husband</AUni> -<AUni ws="es">esposo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9e0d923f-300b-4061-afdd-0284966a7647" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="9a7ec0c1-5d35-4bf9-aac4-bb5f4c7ce951" ownerguid="b11420cb-ee8d-461a-8f3f-b55fe00a2b5f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="9a7fc4ad-d2c5-4d84-8a79-0e96b9df5372" ownerguid="82aabdc6-ccee-4559-9a75-d2d11adab21e"> -<Form> -<AUni ws="qvm-x-ach">puca</AUni> -<AUni ws="qvm-x-acl">puca</AUni> -<AUni ws="qvm-x-akh">puka</AUni> -<AUni ws="qvm-x-akl">puka</AUni> -<AUni ws="qvm-x-ame">puka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="9a802f69-5a84-4584-9ba0-b938cdf836e7" ownerguid="331d2881-5a44-49a5-ae78-6e858b12c5ab"> -<Form> -<AUni ws="qvm-x-ach">quilicsa</AUni> -<AUni ws="qvm-x-acl">quilicsa</AUni> -<AUni ws="qvm-x-akh">kiliksa</AUni> -<AUni ws="qvm-x-akl">kiliksa</AUni> -<AUni ws="qvm-x-ame">kiliksa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9a80dcdc-c5f1-45b7-928b-74c2e0cf815e" ownerguid="4a388000-d5c6-4127-91cd-f4e0c9fac6f1"> -<ExampleWords> -<AUni ws="en">informative</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that gives a lot of information?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="9a827af8-055d-4cae-94b8-d595a1ce79b8" ownerguid="7ce991fb-142b-4e85-a942-50746710f348"> -<Form> -<AUni ws="qvm-x-ach">tsacma</AUni> -<AUni ws="qvm-x-acl">tsacma</AUni> -<AUni ws="qvm-x-akh">tsakma</AUni> -<AUni ws="qvm-x-akl">tsakma</AUni> -<AUni ws="qvm-x-ame">tsakma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="9a82833f-3f29-4d89-958d-476b83afd37f" ownerguid="6307e96b-9481-4edf-84c4-8afed61042ad"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">red</AUni> -<AUni ws="es">rojo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2397e66b-6547-4ba5-a898-1aaff0dbdeec" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9a83ae45-3345-4b37-8f4c-504e70b04e03" ownerguid="286ee16c-a218-43d5-bbac-ab15f80c3fcf"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John <is> strong enough to walk now.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">enough, sufficiently</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that someone is strong enough or old enough to do something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9a8b98ee-4254-41f0-bc27-a0d603639c5c" ownerguid="b0905fa9-2f90-410b-8eb5-7c7944c4f0f9"> -<ExampleWords> -<AUni ws="en">have an incestuous relationship, incest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What words refer to sex between close relatives?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="9a8f2f6a-a039-45dd-80d3-d1e0911907b2" ownerguid="2b893d04-3450-4862-b046-7df6f87272f6"> -<Abbreviation> -<AUni ws="en">6.8.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to tax.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>57N Tax, Tribute</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Tax</AUni> -</Name> -<OcmCodes> -<Uni>651 Taxation and Public Income; 652 Public Finance</Uni> -</OcmCodes> -<Questions> -<objsur guid="f91a49c8-1ca5-49ae-b62c-58895eeba6d1" t="o" /> -<objsur guid="7f4d4f2d-f814-4866-a70c-f40ae219ffcf" t="o" /> -<objsur guid="1cb41f46-2721-4af7-8867-b846749ecf2e" t="o" /> -<objsur guid="588ee690-2e1f-4be4-83b1-4e311df9ced4" t="o" /> -<objsur guid="60cb2c43-11b9-4ab7-9992-66e15568fc49" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="9a902c1b-e3a0-4e76-86c8-e7e7ee27f119" ownerguid="d0dee676-f3ae-43cc-96f1-7e3bb65870f5"> -<ExampleWords> -<AUni ws="en">size, fit (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the size of something?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="9a92ce04-fba8-47e4-a62e-14ff17b2840f" ownerguid="374811b2-b918-47ad-b4b6-20a055c01a26"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="82e9c3df-e95c-44d6-998d-f3779aad6808" t="r" /> -</Morph> -<Msa> -<objsur guid="1b3c6562-1662-468e-b5c0-fcf36256167d" t="r" /> -</Msa> -</rt> -<rt class="CmCell" guid="9a942f8d-aa92-40c3-8163-ef3638192bf0" ownerguid="47a43063-ba83-4be2-9604-46a7701a9385"> -<Contents> -<Str> -<Run ws="en">Matches </Run> -<Run link="80ae5729-9cd8-424d-8e71-96c1a8fd5821" ws="en"></Run> -</Str> -</Contents> -</rt> -<rt class="LexSense" guid="9a95d5d4-3070-4c21-af4d-197f7b04ee25" ownerguid="ae94138e-a8a2-4c05-bfa7-7b7dd55f7c16"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.bruise</AUni> -<AUni ws="es">golpear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1563492a-b374-4450-b019-6b7fc9234334" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="9a95e6e0-f61a-49c9-b88b-2eae15790df8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">naga</AUni> -<AUni ws="qvm-x-acl">naga</AUni> -<AUni ws="qvm-x-akh">naqa</AUni> -<AUni ws="qvm-x-akl">naqa</AUni> -<AUni ws="qvm-x-ame">naqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*naqa</AUni> -<AUni ws="qvm-x-acl">*naqa</AUni> -<AUni ws="qvm-x-akh">*naqa</AUni> -<AUni ws="qvm-x-akl">*naqa</AUni> -<AUni ws="qvm-x-ame">*naqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.545" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6a2e6ac1-e847-40c1-956c-551d3b558dd0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*naqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aa327f89-b66d-418b-bfd9-5c353d6f61af" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="95c6deea-fa89-4cd4-8f86-781c0eda4e94" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *naqa 
\entryTyp root 
\gENG soon 
\gSPN ahorita 
\e *naqa 
\c R0 
\ach naga 
\akh naqa 
\acl naga 
\akl naqa 
\ame naqa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9a964966-e240-4822-8e1f-4719351fdaf1" ownerguid="ab8f12fb-57b0-4d61-8ae0-50d7cbc412df"> -<ExampleWords> -<AUni ws="en">ski, skate, sled, sleigh, sledge, snowshoes, skis, ice-skates, slide, slip</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to moving on snow or ice?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9a9a6de7-7471-4db7-9663-2c1eb1630f5c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rabya</AUni> -<AUni ws="qvm-x-acl">rabya</AUni> -<AUni ws="qvm-x-akh">rabya</AUni> -<AUni ws="qvm-x-akl">rabya</AUni> -<AUni ws="qvm-x-ame">rabya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rabia.n</AUni> -<AUni ws="qvm-x-acl">+rabia.n</AUni> -<AUni ws="qvm-x-akh">+rabia.n</AUni> -<AUni ws="qvm-x-akl">+rabia.n</AUni> -<AUni ws="qvm-x-ame">+rabia.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.226" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6aa1e126-0367-470c-9190-e549b31590de" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rabia.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2ab21fc1-e61e-48a9-9b43-579a8e94f566" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b719f652-e058-44c5-aa33-0c3ae28ceac7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rabia.n 
\entryTyp root 
\gENG 
\gSPN 
\e +rabia.n 
\c N0 
\mp +assimilated 
\ach rabya 
\akh rabya 
\acl rabya 
\akl rabya 
\ame rabya 
\i GEN 4.5 Tsaynog mana chasquiptinmi Caínpaga cäranpis rabyawan jucagyacäcorgan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="9a9b1081-67e4-4177-82a1-a6df6dca0db9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chuscu</AUni> -<AUni ws="qvm-x-acl">chuscu; chuscu; chusco</AUni> -<AUni ws="qvm-x-akh">chusku</AUni> -<AUni ws="qvm-x-akl">chusku; chusku; chusko</AUni> -<AUni ws="qvm-x-ame">chusku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trusku</AUni> -<AUni ws="qvm-x-acl">*trusku</AUni> -<AUni ws="qvm-x-akh">*trusku</AUni> -<AUni ws="qvm-x-akl">*trusku</AUni> -<AUni ws="qvm-x-ame">*trusku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.190" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9c79d8c5-65ef-4def-99e4-c4040dd65a3c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trusku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bf895756-857e-45c3-9edd-a546e2f06447" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1411a228-89be-4888-80f0-e18e4c02745f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trusku 
\entryTyp root 
\gENG four 
\gSPN cuatro 
\e *trusku 
\c N0 
\ach chuscu 
\akh chusku 
\acl chuscu / _# 
\acl chuscu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chusco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chusku / _# 
\akl chusku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chusko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chusku</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="9a9bd1b2-cccd-4154-9265-87abedcae4cc" ownerguid="2fc6e3a3-635f-46f6-ad6d-1674d5d1d766"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="9a9c3523-b946-4d8a-9177-c56080f07519"> -<Analyses> -<objsur guid="9eb0947d-f902-460a-b8e0-30857e7bb37a" t="o" /> -</Analyses> -<Checksum val="1601139929" /> -<Form> -<AUni ws="qvm-x-akh">kaypita</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="9a9c7174-4148-43c2-875c-0d2f884a5fe3" ownerguid="8add7f4d-333b-4b2c-9999-48a14162152b"> -<Abbreviation> -<AUni ws="en">4.3.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.235" /> -<DateModified val="2022-9-23 16:55:8.235" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being untidy--to not keep your things tidy and orderly.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Untidy</AUni> -</Name> -<Questions> -<objsur guid="6f082281-d209-4c1f-ba81-9c29bcf3569e" t="o" /> -<objsur guid="bc7d7ed1-7a68-4f89-a2e3-f9250e123a19" t="o" /> -<objsur guid="0347fe2f-3207-44b3-bb65-f5d8674c3b2b" t="o" /> -<objsur guid="09207dcc-9a6b-43e5-8b32-7203023d327d" t="o" /> -<objsur guid="034b44a5-1357-4cd9-b8cd-f644fd64c625" t="o" /> -<objsur guid="b50827d4-82c2-40cc-83cc-e207122dc803" t="o" /> -<objsur guid="3540305e-d8b7-4712-8ff9-dcfb9538e51a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="9a9c9c08-7b08-40f8-a04a-c13b151d2add" ownerguid="00269021-e1c4-474d-9dba-341d296bdac7"> -<ExampleWords> -<AUni ws="en">be out of order, be in the wrong order, be the wrong way round, backwards</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe a group of things in the wrong order?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9a9d2fee-2467-4761-b72f-910b434a9c41" ownerguid="3147ae2e-bb1c-45ae-8da3-b656a0ede47d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="9a9d59f7-defa-49e5-a722-30043de78eab"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ra:mapa; ra:mapa:</AUni> -<AUni ws="qvm-x-acl">ra:mapa; ra:mapa:</AUni> -<AUni ws="qvm-x-akh">ra:mapa; ra:mapa:</AUni> -<AUni ws="qvm-x-akl">ra:mapa; ra:mapa:</AUni> -<AUni ws="qvm-x-ame">ra:mapa; ra:mapa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ramapa:</AUni> -<AUni ws="qvm-x-acl">+ramapa:</AUni> -<AUni ws="qvm-x-akh">+ramapa:</AUni> -<AUni ws="qvm-x-akl">+ramapa:</AUni> -<AUni ws="qvm-x-ame">+ramapa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.246" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d65ffa88-00f1-4361-a889-f8770bf1c9a9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ramapa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c42b6c1b-370e-4de2-8ab0-e60c49d4ab4b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1e742da0-e91a-433e-9b65-a123ca6c8565" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ramapa: 
\entryTyp root 
\gENG 
\gSPN podar 
\e +ramapa: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach ra:mapa foreshortened 
\ach ra:mapa: 
\mp +underlong 
\akh ra:mapa foreshortened 
\akh ra:mapa: 
\acl ra:mapa foreshortened 
\acl ra:mapa: 
\akl ra:mapa foreshortened 
\akl ra:mapa: 
\mp +underlong 
\ame ra:mapa foreshortened 
\ame ra:mapa:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="9aa12222-cd90-4218-b396-d39482cf6bd6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">albasya</AUni> -<AUni ws="qvm-x-acl">albasya</AUni> -<AUni ws="qvm-x-akh">albasya</AUni> -<AUni ws="qvm-x-akl">albasya</AUni> -<AUni ws="qvm-x-ame">albasya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+albacea</AUni> -<AUni ws="qvm-x-acl">+albacea</AUni> -<AUni ws="qvm-x-akh">+albacea</AUni> -<AUni ws="qvm-x-akl">+albacea</AUni> -<AUni ws="qvm-x-ame">+albacea</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.697" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="80e32ce5-b8cd-4b3d-a0a4-4a03b86cc6c3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+albacea</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="beaa8d08-9c81-4cbf-aa8a-9c1cb9c77a2f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f803f5e4-29b7-46d8-b971-2e7090192b85" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +albacea 
\entryTyp root 
\gENG guardian 
\gSPN albacea 
\e +albacea 
\mp +assimilated 
\ach albasya 
\akh albasya 
\acl albasya 
\akl albasya 
\ame albasya 
\c N0</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="9aa2f531-d7f6-4a4f-a787-e14eda2ea6cc" ownerguid="4eca9893-e721-4194-97a0-289b6e2b5f12"> -<Form> -<AUni ws="qvm-x-ach">archiva</AUni> -<AUni ws="qvm-x-acl">archiva</AUni> -<AUni ws="qvm-x-akh">archiva</AUni> -<AUni ws="qvm-x-akl">archiva</AUni> -<AUni ws="qvm-x-ame">archiva</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="9aa61de6-fd7d-4f1c-859d-93b993693023" ownerguid="81734053-8676-402e-8871-4ee306608383"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d1685fdc-96d8-4baf-9cb8-523863adb67f" t="r" /> -</Morph> -<Msa> -<objsur guid="434f36b9-aa05-46d6-be7e-89240d9e2c4d" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="9aaa7a21-b0b3-4d68-91ac-c8285d9c937a" ownerguid="73b1f5d7-de2c-4439-bc7a-76f2ec875572"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9aae9e72-6c11-4cf4-a4a5-47c17fbe411f" ownerguid="b917ffec-ab7e-496a-bfe4-35c567fa0785"> -<ExampleWords> -<AUni ws="en">electrician</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who works with electricity?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9aaf2ce8-212e-468f-ae33-4c48dd752ebd" ownerguid="91616394-52c4-4ca9-9e66-b84073930186"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">marry</AUni> -<AUni ws="es">casar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3c6009e9-ffe3-409b-8dab-14c6bd2c2231" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="9aaf8588-96ab-49f5-90b0-833e7dd1661d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">listu; listo</AUni> -<AUni ws="qvm-x-acl">listu; listu; listo</AUni> -<AUni ws="qvm-x-akh">listu; listo</AUni> -<AUni ws="qvm-x-akl">listu; listu; listo</AUni> -<AUni ws="qvm-x-ame">listu; listo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+listo.n</AUni> -<AUni ws="qvm-x-acl">+listo.n</AUni> -<AUni ws="qvm-x-akh">+listo.n</AUni> -<AUni ws="qvm-x-akl">+listo.n</AUni> -<AUni ws="qvm-x-ame">+listo.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.104" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2a23a069-3747-4f4d-b8ca-452915e6a383" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+listo.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c5133a0e-dc93-431d-b222-b26d6fe08772" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="975f810d-5e5c-4234-af13-dfbac1b8f0dc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +listo.n 
\entryTyp root 
\gENG ready 
\gSPN listo 
\e +listo.n 
\c N0 
\ach listu / ~_# 
\ach listo / _# 
\akh listu / ~_# 
\akh listo / _# 
\acl listu / ~_# 
\acl listu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl listo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl listu / ~_# 
\akl listu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl listo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame listu / ~_# 
\ame listo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="9ab144b9-54bd-499f-a903-d768f8e06cf8" ownerguid="56b1d8b1-5514-4661-8073-f0ed9ba0ca2f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9ab1d5a0-fd05-4320-b378-1bcb4ea1fa71" ownerguid="1e419f7a-7363-46bc-8044-157ed0b40ccd"> -<ExampleWords> -<AUni ws="en">hold</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to holding something in the hand?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="9ab5174b-884e-440b-84c7-f5bcc36a6123" ownerguid="07fa99e4-1a4c-4f69-a02b-e18581115472"> -<Form> -<AUni ws="qvm-x-ach">walpa</AUni> -<AUni ws="qvm-x-acl">walpa</AUni> -<AUni ws="qvm-x-akh">walpa</AUni> -<AUni ws="qvm-x-akl">walpa</AUni> -<AUni ws="qvm-x-ame">walpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="9ab6efa1-321c-44c9-a0d2-8808cdc9b43f" ownerguid="61cb6bcd-2767-4c9c-88b9-559308894147"> -<Form> -<AUni ws="qvm-x-ach">geulanchu</AUni> -<AUni ws="qvm-x-acl">geulanchu; geulanchu; geulancho</AUni> -<AUni ws="qvm-x-akh">qewlanchu</AUni> -<AUni ws="qvm-x-akl">qewlanchu; qewlanchu; qewlancho</AUni> -<AUni ws="qvm-x-ame">qiwlanchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9ab8332d-2602-415c-b9b0-d185a12be0aa" ownerguid="312ce7a7-8c7c-416d-bf93-73376f1f16d8"> -<ExampleWords> -<AUni ws="en">glory, glorious, magnificent, splendor, resplendent, awe inspiring, wonderful, grand, great</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is pleasing and awe inspiring in appearance?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9ab8455b-91d8-4d2c-8986-41e04eb78259" ownerguid="843f5815-aa0c-4319-a068-045a69c4b514"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="9abaf521-35ae-49fa-a344-36a670c51398" ownerguid="71fef8c1-59e0-413a-9742-0fb1a9c09d01"> -<Form> -<AUni ws="qvm-x-ach">garachu</AUni> -<AUni ws="qvm-x-acl">garachu; garachu; garacho</AUni> -<AUni ws="qvm-x-akh">qarachu</AUni> -<AUni ws="qvm-x-akl">qarachu; qarachu; qaracho</AUni> -<AUni ws="qvm-x-ame">qarachu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="9abbe345-97ed-46ce-98a2-42243d9c3033"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shimi</AUni> -<AUni ws="qvm-x-acl">shimi; shimi; shime</AUni> -<AUni ws="qvm-x-akh">shimi</AUni> -<AUni ws="qvm-x-akl">shimi; shimi; shime</AUni> -<AUni ws="qvm-x-ame">shimi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shimi</AUni> -<AUni ws="qvm-x-acl">*shimi</AUni> -<AUni ws="qvm-x-akh">*shimi</AUni> -<AUni ws="qvm-x-akl">*shimi</AUni> -<AUni ws="qvm-x-ame">*shimi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.581" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="82d69588-0ec1-4a74-8f16-aa824b33acbe" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shimi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7f26c16a-be5e-439d-82a8-d5748adabc6a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fc0c7d6d-f7b8-477e-b45e-a74be31e120c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shimi 
\entryTyp root 
\gENG mouth 
\gSPN boca 
\e *shimi 
\c N0 
\mp +FinalI 
\ach shimi 
\akh shimi 
\acl shimi / _# 
\acl shimi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shime +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shimi / _# 
\akl shimi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shime +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shimi 
\i shimilayquita ganrataycatsiy</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9abea0f5-19a4-4740-bbb9-4dd5758320d2" ownerguid="91913920-8a6a-4ba0-9361-d6cc9e1f3639"> -<ExampleWords> -<AUni ws="en">part, piece, section, component, portion, bit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to a part of something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9abea1f0-6ada-4d61-861f-a9c44afc7195" ownerguid="535ffc87-3819-4bc0-85c5-5dcf5376bbd9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="9abf41ef-c05a-49f5-b0a7-442d21b0dad5" ownerguid="98e60aac-c0c6-42e0-a71b-2f618811bb60"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">dar.de.comer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5099d287-fb09-42e5-abb5-4d86e107d204" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="9ac55942-49e1-4530-830e-76d2b858bf4c" ownerguid="1540a357-563e-4f46-8004-4ff10ab15876"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">leave</AUni> -<AUni ws="es">dejar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2f1d6814-7b70-4ecf-ba81-86cf55c4970e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9ac61bf9-3d33-40d9-baa2-357eff07f91f" ownerguid="cbc24a98-1c64-467e-98aa-251a28e4c0b8"> -<ExampleWords> -<AUni ws="en">toilet paper</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What things do people use to clean themselves?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="9ac6dec6-1b8f-463c-8239-e2acb93586b1" ownerguid="0e79435b-f5ff-4061-81ff-49557ba2aed4"> -<Abbreviation> -<AUni ws="en">4.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.192" /> -<DateModified val="2022-9-23 16:55:8.192" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to unity--when a group of people agree with each other and are not fighting.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>63B Unite</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Unity</AUni> -</Name> -<Questions> -<objsur guid="86329643-6d7d-413b-bb02-faceebaaa65a" t="o" /> -<objsur guid="5e60f257-3286-4d69-b282-c0c4dba329d4" t="o" /> -<objsur guid="83ebb17b-9861-45ec-aa26-a517c872a560" t="o" /> -<objsur guid="59ff470d-88c4-4046-afa6-af6000d5eb62" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="9ac907c3-6e33-4ae4-9ab9-801bc463facd" ownerguid="46cb943c-9102-4d7e-93a5-f647287fcc10"> -<Form> -<AUni ws="qvm-x-ach">galan</AUni> -<AUni ws="qvm-x-acl">galan</AUni> -<AUni ws="qvm-x-akh">qalan</AUni> -<AUni ws="qvm-x-akl">qalan</AUni> -<AUni ws="qvm-x-ame">qalan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9ac96c01-9c05-44db-9144-b24d97c2fad6" ownerguid="12fe5f6c-7f98-47ba-936a-bcd1065c2db3"> -<ExampleWords> -<AUni ws="en">direction, heading, way, course</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the direction in which a person is moving?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="9ad0be7a-f9b6-4a92-b396-392f53e09ecf"> -<Analyses> -<objsur guid="eaa2018f-d92a-440b-b5d7-9ac949f75f99" t="o" /> -</Analyses> -<Checksum val="1490478502" /> -<Form> -<AUni ws="qvm-x-akh">Faraón</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="9ad2c696-8a2b-43d9-a88f-02da591448b5" ownerguid="86928d3c-0e55-488a-b86e-de28805c963a"> -<Form> -<AUni ws="qvm-x-ach">nubïllu</AUni> -<AUni ws="qvm-x-acl">nubïllu; nubïllu; nubïllo</AUni> -<AUni ws="qvm-x-akh">nubïllu</AUni> -<AUni ws="qvm-x-akl">nubïllu; nubïllu; nubïllo</AUni> -<AUni ws="qvm-x-ame">nubïllu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="9ad57ae8-6f5d-468a-9cce-6e78d83e20d3" ownerguid="8982816c-5256-467e-af60-c90dd5e2bb4d"> -<Form> -<AUni ws="qvm-x-ach">lampa</AUni> -<AUni ws="qvm-x-acl">lampa</AUni> -<AUni ws="qvm-x-akh">lampa</AUni> -<AUni ws="qvm-x-akl">lampa</AUni> -<AUni ws="qvm-x-ame">lampa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9ad7c0df-01bc-44bb-bc5f-229786ef18a1" ownerguid="df2ee830-0668-43d7-8a32-e2fd3e7b31d8"> -<Question> -<AUni ws="en">(8) post-crastinal: after tomorrow.</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="9ad8cf32-80b4-401e-9ef3-fd327106d6c5" ownerguid="e9d6b91b-de0f-4134-9682-da9c1df64b00"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EZK 8.17 Intita adorashganga büdanogragmi asyaycun.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="9ad8d2d1-c023-4787-abed-a91df5e64be3" ownerguid="c7c2d82e-d86c-4bf3-81a1-82772e87d709"> -<ExampleWords> -<AUni ws="en">between, amid, amidships, amidst, among, amongst, betwixt, center, central, equidistant, half-way, mean, medial, median, medium, mid, middle, middlemost, midst, midway, therein, throughout, within</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is between two other things?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9ad91d15-9f42-40b2-a375-ec6653d9fbd2" ownerguid="a0cf4e6c-c605-47d8-865f-21f4690e7aef"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="9ad9472c-74d8-422c-9c05-5cea83fcb52e" ownerguid="64367de3-7fca-4995-8ef3-8a561b946bc8"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="9ade2e50-0fec-4b09-aa74-c20515e57192"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">which</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="9ae0321d-23e0-45f2-9bb7-0d7a7d326a49" ownerguid="e15962c5-aac1-48c6-bcca-ba9c245cb146"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.pleasing</AUni> -<AUni ws="es">gustar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0d83a12a-561e-4e02-a94b-618b09a062d9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9ae40670-9d43-4be4-a666-18fc393f6dda" ownerguid="be280123-dda6-49a0-bd8c-5e2855b56159"> -<ExampleWords> -<AUni ws="en">plant, plant vines, plant cuttings, transplant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to planting plants?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="9ae4744e-5ac3-49f9-8d1c-b003ac0c7401"> -<Analyses> -<objsur guid="a8197bd1-918e-45e4-b312-be565f0c1f52" t="o" /> -</Analyses> -<Checksum val="-274743412" /> -<Form> -<AUni ws="qvm-x-akh">täshaq</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="9aea5d19-3d43-4105-bee9-4bf0b31bb5c1" ownerguid="af3dcbd8-3747-402e-a23a-a5e1de1c6e99"> -<Form> -<AUni ws="qvm-x-ach">bujunäda</AUni> -<AUni ws="qvm-x-acl">bujunäda</AUni> -<AUni ws="qvm-x-akh">bujunäda</AUni> -<AUni ws="qvm-x-akl">bujunäda</AUni> -<AUni ws="qvm-x-ame">bujunäda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="9aebd273-516a-4cb8-87c1-dd493e8282b4" ownerguid="80cc6767-3e19-4cee-8ca5-fbdaee4f5bd7"> -<Form> -<AUni ws="qvm-x-ach">bärra</AUni> -<AUni ws="qvm-x-acl">bärra</AUni> -<AUni ws="qvm-x-akh">bärra</AUni> -<AUni ws="qvm-x-akl">bärra</AUni> -<AUni ws="qvm-x-ame">bärra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9aec0479-a6d1-409c-a0b8-847891e06525" ownerguid="8a7fdd75-01dc-4d40-84ff-fa0484da3abb"> -<ExampleWords> -<AUni ws="en">violent, brutal, aggressive, vicious, savage, barbarous, bloodthirsty, barbaric</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is violent?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9aee1fb7-1dcc-4050-a7b8-a92cae5b1d54" ownerguid="339d8e7a-d699-498d-afd3-9da240ba8565"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="9af21dcc-1ab3-45ca-9faa-13c5552af760"> -<Analyses> -<objsur guid="e9a8359c-c101-4b03-85d3-ff4b9d31426b" t="o" /> -<objsur guid="f20d736d-a3a6-4b0a-923c-ffaf9d1cd199" t="o" /> -</Analyses> -<Checksum val="-264719302" /> -<Form> -<AUni ws="qvm-x-akh">kaqman</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoAffixAllomorph" guid="9af28252-f656-4252-8fd5-ca3bddbfdbfd" ownerguid="084fcee6-0c7c-4818-a44f-b3afd29d0f8e"> -<Form> -<AUni ws="qvm-x-ach">̈rI</AUni> -<AUni ws="qvm-x-acl">̈rI</AUni> -<AUni ws="qvm-x-akh">̈rI</AUni> -<AUni ws="qvm-x-akl">̈rI</AUni> -<AUni ws="qvm-x-ame">̈rI</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="9af40fad-ebfb-4844-b623-3a0e31b957dc" ownerguid="0903592a-a301-44c5-9b71-89328c1c8e38"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hey</AUni> -<AUni ws="es">oye</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="240560f4-bbc5-4669-a1fa-1482b9f46d39" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="9af54cc4-9076-4ea8-9714-206cc1ace3d5" ownerguid="4173d390-b298-46bd-8342-992b71970408"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Gen 36.7 Jacobpis Esaúpis rïculantag captinmi tashgan parti mana aypargantsu tsaylacho juntu tänanpag.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="9af5d937-103f-4d4f-917d-895f94b0643e" ownerguid="cc6d78c5-9fa7-40dd-84bf-2ba2375b0d51"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="9afaab37-4992-4c21-b299-452eac7ae52e" ownerguid="08bd689d-bf0d-422b-83be-0a6545407128"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="9afb64d6-feae-4490-9b7e-95768627f643" ownerguid="0b7b9a1c-588b-475a-ac14-00f0999cbfe9"> -<Abbreviation> -<AUni ws="en">4.8.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.286" /> -<DateModified val="2022-9-23 16:55:8.286" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to making an appeal.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Make an appeal</AUni> -</Name> -<Questions> -<objsur guid="5eee3462-897f-451d-aba1-401d5d7f5f36" t="o" /> -<objsur guid="15371bfe-76aa-4530-81ee-3d187722a0a4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="9afc1f7d-d6f7-4a9a-b50b-affabb2fc4f6" ownerguid="fdac360e-4fe4-4aba-bd68-6e4410c06e68"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="ca07312d-49a1-4d8c-8591-706cb7d5a595" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="9aff8697-9a18-4058-bcf0-d892577efae3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gawan</AUni> -<AUni ws="qvm-x-acl">gawan</AUni> -<AUni ws="qvm-x-akh">qawan</AUni> -<AUni ws="qvm-x-akl">qawan</AUni> -<AUni ws="qvm-x-ame">qawan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qawan</AUni> -<AUni ws="qvm-x-acl">*qawan</AUni> -<AUni ws="qvm-x-akh">*qawan</AUni> -<AUni ws="qvm-x-akl">*qawan</AUni> -<AUni ws="qvm-x-ame">*qawan</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.155" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="413fca01-e365-4ba8-a1c7-e82200eb36a0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qawan</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8f625ffb-9d4d-4102-960e-e61f57558d31" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="288efcf8-aa00-47ef-9746-5ae900d8cd17" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qawan 
\entryTyp root 
\gENG root 
\gSPN raiz 
\e *qawan 
\c N0 
\mp +FinalC 
\ach gawan 
\akh qawan 
\acl gawan 
\akl qawan 
\ame qawan</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="9affe392-25f7-493d-b8dd-b8013cbcc31c" ownerguid="a27acfa8-6c48-4621-a14b-c560fe8fade6" /> -<rt class="MoStemAllomorph" guid="9b00a381-54f4-47f6-8177-55679643cc26" ownerguid="2feb574b-e452-46da-8dcb-d9dc09b1fd54"> -<Form> -<AUni ws="qvm-x-ach">yupa</AUni> -<AUni ws="qvm-x-acl">yupa</AUni> -<AUni ws="qvm-x-akh">yupa</AUni> -<AUni ws="qvm-x-akl">yupa</AUni> -<AUni ws="qvm-x-ame">yupa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="9b00c347-ef1c-496c-89f0-3023cc1fb39f" ownerguid="5a8ff7bf-fa7d-4e2e-8531-bc0b902facee"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pick</AUni> -<AUni ws="es">coger</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="15013026-30d0-41bb-a489-0d584909cbee" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="9b02529b-7ad9-4f75-a119-a46b3c96dde4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ata</AUni> -<AUni ws="qvm-x-acl">ata</AUni> -<AUni ws="qvm-x-akh">ata</AUni> -<AUni ws="qvm-x-akl">ata</AUni> -<AUni ws="qvm-x-ame">ata</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ata.v</AUni> -<AUni ws="qvm-x-acl">*ata.v</AUni> -<AUni ws="qvm-x-akh">*ata.v</AUni> -<AUni ws="qvm-x-akl">*ata.v</AUni> -<AUni ws="qvm-x-ame">*ata.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.860" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a58737ab-014c-4e62-af46-dc55cceb0618" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ata.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5cb1a8ca-f7ce-4eb4-9b6e-e2837e907aca" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="58c3a2bd-ed2a-4cee-bb2c-24b0b319fbfa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ata.v 
\entryTyp root 
\gENG wail 
\gSPN lamentar 
\e *ata.v 
\c V1 
\ach ata 
\akh ata 
\acl ata 
\akl ata 
\ame ata 
\mcc *ata.v / ~_ PASS 
\mcc *ata.v / ~_ REF (PL) AFAR</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9b03a3a8-62a7-425a-a92b-4025a1a2f258" ownerguid="1a635032-6e13-4a56-aa03-6c6a015c502e"> -<ExampleWords> -<AUni ws="en">not be sure, not be certain, be unsure, be uncertain, not know, doubt, wonder, can't be sure, not be confident, be indefinite about, ambivalent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to not being sure about something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9b03b531-bf8b-4ac1-87dd-56d150d1c68f" ownerguid="18147a68-b70a-4610-aa92-2f7c676b385b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="9b08bdca-0352-4215-a76a-02b2625fcc87" ownerguid="340a633c-324e-43af-a843-c6032a28d697"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="9b0e6a30-c5a2-4df2-ae0a-f7e99a045f7e" ownerguid="749ae4c4-5254-4786-8aa4-c706e09c0834"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="f8e9024d-ef5e-4f10-9935-c4b86eb46c9f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9b0e9080-5bf5-4e9a-90be-0bfb8286d0cc" ownerguid="a8b3fa0c-077e-4c0d-b4cc-36dcfbdcb4d4"> -<ExampleWords> -<AUni ws="en">fast</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe a color that does not change?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="9b0fef63-5935-447d-801a-bb02dd6212bb" ownerguid="8e11dd10-459b-4fb3-b876-7d80ec5f8a4d"> -<Abbreviation> -<AUni ws="en">4.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.225" /> -<DateModified val="2022-9-23 16:55:8.225" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to admiring someone--to feel good about someone because you think that he is a good person.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Admire someone</AUni> -</Name> -<Questions> -<objsur guid="c2349bd4-7a92-48df-b533-189071a31017" t="o" /> -<objsur guid="343b13da-73e9-45dc-a051-0e0efde14df7" t="o" /> -<objsur guid="c67ffc13-f8e2-4c3d-a608-b641df851b44" t="o" /> -<objsur guid="efd4c90f-0015-4661-bef8-bb12213c4975" t="o" /> -<objsur guid="e9a66725-f92b-4ed2-93b9-acb510d182fd" t="o" /> -<objsur guid="912a61af-b2a1-41b3-8761-527d792addbd" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="a2a3e21a-819c-4400-b2e6-e6c1a0a0ded3" t="o" /> -<objsur guid="5d21b3f1-85d5-4999-af64-c4d0101050c0" t="o" /> -<objsur guid="18b3ca02-18fe-4ab5-8709-c20957a0a2fb" t="o" /> -<objsur guid="054e81ce-abd8-4069-989d-13e2fa58851c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="9b12d06d-80fd-41f0-b14e-430205a929a1" ownerguid="76d5872c-60af-4782-b6dc-f7f90cd9b805"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 21.8 Ali runa kawashqanmi itsanqa hututu qeruno kaykan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="9b13abd6-15b7-4ba6-9106-e0fa8e831712"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jincuru</AUni> -<AUni ws="qvm-x-acl">jincuru; jincuru; jincuro</AUni> -<AUni ws="qvm-x-akh">jinkuru</AUni> -<AUni ws="qvm-x-akl">jinkuru; jinkuru; jinkuro</AUni> -<AUni ws="qvm-x-ame">hinkuru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hinkuru.n</AUni> -<AUni ws="qvm-x-acl">*hinkuru.n</AUni> -<AUni ws="qvm-x-akh">*hinkuru.n</AUni> -<AUni ws="qvm-x-akl">*hinkuru.n</AUni> -<AUni ws="qvm-x-ame">*hinkuru.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.721" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="54f5a592-8b34-4c58-99d3-02121eab62a9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hinkuru.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fb18da1f-b2e6-4afe-bb20-0a55fb1f3b25" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1647e90f-7869-4c90-bb70-2e6c55739e16" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hinkuru.n 
\entryTyp root 
\gENG hoop 
\gSPN aro 
\e *hinkuru.n 
\c N0 
\ach jincuru 
\akh jinkuru 
\acl jincuru / _# 
\acl jincuru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl jincuro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jinkuru / _# 
\akl jinkuru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl jinkuro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hinkuru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="9b158c9e-9ba5-4be2-a9a1-77ef888a3b06" ownerguid="fe58ae61-ab0b-43a4-86fb-d9aedd199932"> -<Abbreviation> -<AUni ws="en">7.5.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.546" /> -<DateModified val="2022-9-23 16:55:8.546" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being pure--words describing something (like water, food, or air) that does not have anything bad in it; or unmixed--words describing something that is only one thing and has not been mixed with something else.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79T Pure, Unadulterated, Undiluted</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Pure, unmixed</AUni> -</Name> -<Questions> -<objsur guid="444a4b3a-347d-4e9b-994c-5114f5ecc4dc" t="o" /> -<objsur guid="09b842ec-674c-4b0f-aa6b-63a1dc4869f6" t="o" /> -<objsur guid="3db825a9-77c4-49b2-b8a1-fccfc53cc451" t="o" /> -<objsur guid="5fab083e-b5a1-444d-a619-4fa709f6ac99" t="o" /> -<objsur guid="64af8674-29af-4e73-8f75-16a24950fe39" t="o" /> -<objsur guid="470e93b0-bc10-4ebc-b2af-9eb24c6d8cdb" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="9b16a61c-0669-4d21-99ba-d660f1476500" ownerguid="583247d7-e105-4555-a7b6-06041564dc4f"> -<Form> -<AUni ws="qvm-x-ach">wap</AUni> -<AUni ws="qvm-x-acl">wap</AUni> -<AUni ws="qvm-x-akh">wap</AUni> -<AUni ws="qvm-x-akl">wap</AUni> -<AUni ws="qvm-x-ame">wap</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="9b1aa350-0d18-4b46-8cd7-f3cc4fe6b661" ownerguid="e2565f5b-ed3f-487f-97cb-b6786f567cfc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="53892da7-af43-4a89-b7ac-d49d9c546892" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="41b8c45d-d329-4d73-bfc4-b1de4ed1272a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="9b2432b6-9f0c-4259-bb68-3eaa02f126b0" ownerguid="95f68a7b-6be5-4b3e-bc40-111230877a64"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="9b267cc1-983c-407a-98d2-1e27add6292c" ownerguid="6045c6eb-efea-4586-95f8-840d32578d66"> -<Abbreviation> -<AUni ws="en">7.5.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.549" /> -<DateModified val="2022-9-23 16:55:8.549" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to tying things together.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>18 Attachment; 18B Fasten, Stick To</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Tie</AUni> -</Name> -<Questions> -<objsur guid="0b85932c-2165-4828-9315-f81389d16674" t="o" /> -<objsur guid="63e89ce8-3ec7-43ad-a057-0600eab70576" t="o" /> -<objsur guid="c57aed3b-2416-4a1c-b7a7-b4410193923d" t="o" /> -<objsur guid="d2f861df-ce83-4e62-9ac2-97482afb6fec" t="o" /> -<objsur guid="54f4f81e-17bc-4971-9cb8-cdc572cdc8d6" t="o" /> -<objsur guid="150c72c2-36af-4ee8-9525-2869e84a1258" t="o" /> -<objsur guid="7024bd01-afee-482a-8349-4843b9a7f2de" t="o" /> -<objsur guid="c7971b14-ddb1-4995-bb60-cd8f35ef6d1e" t="o" /> -<objsur guid="1a0a2563-bd38-4553-b5d1-0122cf0834df" t="o" /> -<objsur guid="9c0f2e63-a1ea-4fbc-8b7c-c2b407232220" t="o" /> -<objsur guid="75539e64-28d2-4799-af99-9636ec7c18e1" t="o" /> -<objsur guid="d5de697a-14f4-4424-895b-cb16d273f99b" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="0b7bfd0a-249c-45b6-9427-2c17ae00bf37" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="761706fe-d289-4ace-b2c3-ab15d80dba7f" t="o" /> -<objsur guid="5f791daf-98a2-4787-93cc-8813aea93c4d" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="9b28f06c-f972-4034-8f65-cd8846505e95" ownerguid="78fa8e5e-9d52-47be-99df-37877922ade4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.marry</AUni> -<AUni ws="es">casarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="94c85502-f17e-43e0-b340-bf28970d9817" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="9b2c46f4-80a6-47d4-89b1-9a899a5018fc" ownerguid="0487d560-7421-4859-bd46-91ee95dd2582"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stomach</AUni> -<AUni ws="es">barriga</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="097c4f5c-6b4c-474d-a2b6-01e4090f7cb7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9b2d08f6-d7d7-4f86-9e41-9aacd1d747fe" ownerguid="dc1a2c6f-1b32-4631-8823-36dacc8cb7bb"> -<ExampleWords> -<AUni ws="en">looks down on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What else does the sun do?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9b2d8f39-754d-4c4f-93b2-e55cd1576af6" ownerguid="47fb953c-33ca-4a22-af07-19f5b0a53df4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="9b2e3df7-8d1f-43c0-b65d-60c6bd79406b" ownerguid="f1d5a303-a423-48b0-ad63-276c3f9e16b0"> -<Form> -<AUni ws="qvm-x-ach">raca</AUni> -<AUni ws="qvm-x-acl">raca</AUni> -<AUni ws="qvm-x-akh">raka</AUni> -<AUni ws="qvm-x-akl">raka</AUni> -<AUni ws="qvm-x-ame">raka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="9b2e9688-e4ac-4eef-8383-e5b76194f351" ownerguid="02e8fc00-fb8e-49d5-b684-031eb5e10ed4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9b30cda1-95a9-43d8-a025-e8add324c43c" ownerguid="8db7c016-bdc9-410b-9523-3197602358f4"> -<ExampleWords> -<AUni ws="en">written material, literature, writing, book, composition, essay, article, card, document, inscription, envelope, page, passage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to written material?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9b315b20-b38b-49b5-8539-fa56ef5d5d37" ownerguid="efbdc60d-47a8-4dbb-9da5-cc7a4894e935"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">compete</AUni> -<AUni ws="es">competer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="33ff6f42-16ee-49ee-ba6e-95eedb5b1d67" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="9b34f385-47a2-4bda-9ac9-b5248f635ced" ownerguid="179a56b9-6eff-4b57-8682-da3c2a5f1e41"> -<Form> -<AUni ws="qvm-x-ach">pishpi</AUni> -<AUni ws="qvm-x-acl">pishpi; pishpi; pishpe</AUni> -<AUni ws="qvm-x-akh">pishpi</AUni> -<AUni ws="qvm-x-akl">pishpi; pishpi; pishpe</AUni> -<AUni ws="qvm-x-ame">pishpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="9b37dedc-eccc-41f7-9aa8-0622cb46051c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pedasya</AUni> -<AUni ws="qvm-x-acl">pedasya</AUni> -<AUni ws="qvm-x-akh">pedasya</AUni> -<AUni ws="qvm-x-akl">pedasya</AUni> -<AUni ws="qvm-x-ame">pedasya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pedacear</AUni> -<AUni ws="qvm-x-acl">+pedacear</AUni> -<AUni ws="qvm-x-akh">+pedacear</AUni> -<AUni ws="qvm-x-akl">+pedacear</AUni> -<AUni ws="qvm-x-ame">+pedacear</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.780" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="117ee575-9394-4412-a0be-f81f0d169211" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pedacear</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="51d65a05-26df-4e96-b4af-744abda88980" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a016e804-e9d5-4765-9eaa-42a612683a8e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pedacear 
\entryTyp root 
\gENG 
\gSPN hacer.pedazos 
\e +pedacear 
\c V2 
\mp +assimilated 
\ach pedasya 
\akh pedasya 
\acl pedasya 
\akl pedasya 
\ame pedasya 
\i JOB 41.6 Tsaynogpis ¿pedasyanquimantsurag ranticunayquipag?</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="9b393e83-7f93-4043-b364-a9942c3fa77c" ownerguid="122ac350-466c-42f3-8aef-687a9d416648"> -<Form> -<AUni ws="qvm-x-ach">shagshagyag</AUni> -<AUni ws="qvm-x-acl">shagshagyag</AUni> -<AUni ws="qvm-x-akh">shaqshaqyaq</AUni> -<AUni ws="qvm-x-akl">shaqshaqyaq</AUni> -<AUni ws="qvm-x-ame">shaqshaqyaq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="9b3a5c6d-7f69-4cee-b4fa-98773152e5f1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chushig</AUni> -<AUni ws="qvm-x-acl">chusheg</AUni> -<AUni ws="qvm-x-akh">chushiq</AUni> -<AUni ws="qvm-x-akl">chusheq</AUni> -<AUni ws="qvm-x-ame">chushiq</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trushiq</AUni> -<AUni ws="qvm-x-acl">*trushiq</AUni> -<AUni ws="qvm-x-akh">*trushiq</AUni> -<AUni ws="qvm-x-akl">*trushiq</AUni> -<AUni ws="qvm-x-ame">*trushiq</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.190" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4a5e5ddc-c65a-44a7-876b-e79908b74551" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trushiq</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="801bab55-65fe-4ee2-9091-09d188399929" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="26ecd164-331c-4317-9664-4a96a0f6b5fd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trushiq 
\entryTyp root 
\gENG owl 
\gSPN buho 
\e *trushiq 
\c N0 
\mp +FinalC 
\ach chushig 
\akh chushiq 
\acl chusheg 
\akl chusheq 
\ame chushiq</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="9b3bba1a-cf29-45b5-9bf3-9478d5180999"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cara:</AUni> -<AUni ws="qvm-x-acl">cara:</AUni> -<AUni ws="qvm-x-akh">cara:</AUni> -<AUni ws="qvm-x-akl">cara:</AUni> -<AUni ws="qvm-x-ame">cara:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+carajo.3</AUni> -<AUni ws="qvm-x-acl">+carajo.3</AUni> -<AUni ws="qvm-x-akh">+carajo.3</AUni> -<AUni ws="qvm-x-akl">+carajo.3</AUni> -<AUni ws="qvm-x-ame">+carajo.3</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.600" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c069c626-85c3-4c8a-9f63-bfeaf1bd9c8f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+carajo.3</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ea67acab-8445-4134-9205-8778a609e882" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d59e7f7f-45a1-46b9-80a8-2a2fd9ce58b7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +carajo.3 
\entryTyp root 
\gENG exclamation 
\gSPN exclamación 
\e +carajo.3 
\c NOSUFF 
\mp +FinalLength 
\ach cara: 
\akh cara: 
\acl cara: 
\akl cara: 
\ame cara:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="9b3cf8b2-351f-4260-bde3-949cb7dd0296" ownerguid="85b6cc88-e7d7-4968-9b09-aa7b736d60ce"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">parrot</AUni> -<AUni ws="es">loro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7bd32f9e-4790-4d60-a3d6-4c773fa5be1f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="9b3d4dd9-5ad0-4a3a-9d9a-ff91892bca83" ownerguid="2541b188-5bc6-497e-b9c7-e9426ef282b0"> -<Form> -<AUni ws="qvm-x-ach">muyru</AUni> -<AUni ws="qvm-x-acl">muyru; muyru; muyro</AUni> -<AUni ws="qvm-x-akh">muyru</AUni> -<AUni ws="qvm-x-akl">muyru; muyru; muyro</AUni> -<AUni ws="qvm-x-ame">muyru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="9b407431-6405-41ab-9791-a4c69efdc5ed" ownerguid="d7ba3de4-ad9f-4c16-9ec2-156c6befeaf3"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="9b413f6f-f64e-49ae-a71a-a0ac12ad56f8" ownerguid="43a692af-46d8-4b35-8cfa-8522901487cf" /> -<rt class="CmDomainQ" guid="9b418d6b-4c99-48d4-926b-3500bfe3dee5" ownerguid="7c9c6263-9f7d-472c-a4c9-1767015d41fe"> -<ExampleWords> -<AUni ws="en">take back an offer, withdraw an offer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to taking back an offer?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="9b423e2d-b225-4105-9d00-398a0cf442e7" ownerguid="bbc3f307-133c-47b5-97ac-d59e966ff060"> -<Form> -<AUni ws="qvm-x-ach">sapi</AUni> -<AUni ws="qvm-x-acl">sapi; sapi; sape</AUni> -<AUni ws="qvm-x-akh">sapi</AUni> -<AUni ws="qvm-x-akl">sapi; sapi; sape</AUni> -<AUni ws="qvm-x-ame">sapi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="9b468fc0-6ec7-4305-af13-38a3822dc53a" ownerguid="309ef96d-4cdb-4c3c-b386-8078d6f83fda"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="9b476afd-58c2-46a2-8294-449ac4aad3a9" ownerguid="e311cc3a-a387-449e-a05a-07ed9678411d"> -<Abbreviation> -<AUni ws="en">4.9.8.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.304" /> -<DateModified val="2022-9-23 16:55:8.304" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to places of worship. Each religion has different types of places of worship. These questions must be answered according to the practices of each religion and for each separate type of place.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Place of worship</AUni> -</Name> -<OcmCodes> -<Uni>778 Sacred Objects and Places; 346 Religious and Educational Structures</Uni> -</OcmCodes> -<Questions> -<objsur guid="988886e7-e445-4fb9-ae38-c09d6eaead02" t="o" /> -<objsur guid="98d88e3a-ed0b-4db5-916a-31177fe9c913" t="o" /> -<objsur guid="c2edbe29-3b61-4be2-b7ed-1452341b3422" t="o" /> -<objsur guid="e9048c15-09b9-4140-8df6-91a72f1f4a36" t="o" /> -<objsur guid="4d65251d-373c-4d45-b469-1ca2c2fa5140" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="9b48dcd0-cc99-4bc8-8368-17e5452a078b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tucu; tuca</AUni> -<AUni ws="qvm-x-acl">tucu; tuco; tuca</AUni> -<AUni ws="qvm-x-akh">tuku; tuka</AUni> -<AUni ws="qvm-x-akl">tuku; tuko; tuka</AUni> -<AUni ws="qvm-x-ame">tuku; tuka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tukU</AUni> -<AUni ws="qvm-x-acl">*tukU</AUni> -<AUni ws="qvm-x-akh">*tukU</AUni> -<AUni ws="qvm-x-akl">*tukU</AUni> -<AUni ws="qvm-x-ame">*tukU</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.977" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ebcbaa3a-d402-4916-8638-67f01d888400" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tukU</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b1606f49-c9b6-4577-a81f-71cc65171d9a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="492a0270-bfec-4627-9625-12dc2197a851" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tukU 
\entryTyp root 
\gENG become 
\gSPN llegar.a.ser 
\e *tukU 
\c V2 
\mp PMlowered 
\ach tucu 
\ach tuca morphlowered 
\akh tuku 
\akh tuka morphlowered 
\acl tucu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tuco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tuca morphlowered 
\akl tuku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tuko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tuka morphlowered 
\ame tuku 
\ame tuka morphlowered 
\i Gen 31.1 duëñu tucuycan 
\i Deu 33.29 Ali chölu tucuycagtami ushanquipag. 
\mcc *tukU / ~_ INF.noI SIM1 [pa] 
\mcc *tukU / ~_... AFAR 
\mcc *tukU / ~_ PLALL 
\mcc *tukU / ~_ CAUS 
\mcc *tukU / ~_ BEN1 
\mcc *tukU / ~_ INF 
\mcc *tukU / ~_ 2IMP.1</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="9b4b60f0-473f-4340-a4c1-6c6f92ad9786"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">llanqui</AUni> -<AUni ws="qvm-x-acl">llanqui; llanqui; llanque</AUni> -<AUni ws="qvm-x-akh">llanki</AUni> -<AUni ws="qvm-x-akl">llanki; llanki; llanke</AUni> -<AUni ws="qvm-x-ame">llanki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llanki</AUni> -<AUni ws="qvm-x-acl">*llanki</AUni> -<AUni ws="qvm-x-akh">*llanki</AUni> -<AUni ws="qvm-x-akl">*llanki</AUni> -<AUni ws="qvm-x-ame">*llanki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.134" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1c048eae-8608-4987-a337-7228f9f72fc8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llanki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4358ad59-6b5b-4432-b752-145a27be9a26" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cf2aabe2-d168-4acc-a85e-ddfffbc33a40" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llanki 
\entryTyp root 
\gENG sandal 
\gSPN ojota 
\e *llanki 
\c N0 
\mp +FinalI 
\ach llanqui 
\akh llanki 
\acl llanqui / _# 
\acl llanqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl llanque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl llanki / _# 
\akl llanki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl llanke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame llanki</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9b4d3645-1655-4d2f-829a-2a4dcbc0531b" ownerguid="218c1d59-0ebb-4936-b9cf-0a93e88aa729"> -<ExampleWords> -<AUni ws="en">hopeless, lose hope, cynical, cynicism, despair, fatalistic, fatalism, pessimistic, pessimism</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling hopeless?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9b4da5f4-b835-4302-93c2-ae84533d72e5" ownerguid="6fb1d03c-b0fe-49b7-a473-168f12a54a36"> -<ExampleWords> -<AUni ws="en">be behind, be behind schedule, be running late, overrun</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to not finishing something within the time that is allowed?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="9b4ecc37-a618-4d1a-bac4-4e70b55f27c4" ownerguid="417346fe-16dc-4fb7-8989-1af5a412a09a"> -<Form> -<AUni ws="qvm-x-ach">jarca; jarcä</AUni> -<AUni ws="qvm-x-acl">jarca; jarcä</AUni> -<AUni ws="qvm-x-akh">jarka; jarkä</AUni> -<AUni ws="qvm-x-akl">jarka; jarkä</AUni> -<AUni ws="qvm-x-ame">harka; harkä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9b4eccd2-0f16-4909-bdc3-da28a0bce3b4" ownerguid="76a06e45-99f7-446f-a2e8-e23edf6064bd"> -<ExampleWords> -<AUni ws="en">go bad, go off, go stale, go sour, spoil, taint</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to food decaying?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9b4f1490-0f5e-43a7-bcb3-a8bd0c0a0432" ownerguid="4e7f1593-02a2-4659-8f15-101b37e71f02"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="9b53c2b7-d09e-42de-9306-ae741cefcd03" ownerguid="cefced48-ae37-4de5-8863-963c0dd026b5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">arrive</AUni> -<AUni ws="es">llegar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cc617c95-e65c-4aeb-9870-08268d5b52c9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="9b55e147-e893-4b10-a270-268de08e6852" ownerguid="565be8d0-02ff-43a0-8d85-383c047534cb"> -<Form> -<AUni ws="qvm-x-ach">shanu</AUni> -<AUni ws="qvm-x-acl">shanu; shano</AUni> -<AUni ws="qvm-x-akh">shanu</AUni> -<AUni ws="qvm-x-akl">shanu; shano</AUni> -<AUni ws="qvm-x-ame">shanu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="9b56d2e5-f06a-4b9c-b173-ce022d9b8078" ownerguid="28a4e00c-de72-4c2a-8b2e-ac12e16c4757"> -<Form> -<AUni ws="qvm-x-ach">piëza</AUni> -<AUni ws="qvm-x-acl">piëza</AUni> -<AUni ws="qvm-x-akh">piëza</AUni> -<AUni ws="qvm-x-akl">piëza</AUni> -<AUni ws="qvm-x-ame">piëza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="9b573e8a-d017-4918-b37e-0d5a600c0b6c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">buyis</AUni> -<AUni ws="qvm-x-acl">buyis</AUni> -<AUni ws="qvm-x-akh">buyis</AUni> -<AUni ws="qvm-x-akl">buyis</AUni> -<AUni ws="qvm-x-ame">buyis</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bueyes</AUni> -<AUni ws="qvm-x-acl">+bueyes</AUni> -<AUni ws="qvm-x-akh">+bueyes</AUni> -<AUni ws="qvm-x-akl">+bueyes</AUni> -<AUni ws="qvm-x-ame">+bueyes</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.991" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a2d99351-2700-492d-bfc1-e21f5c0b325b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bueyes</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="91fb82d0-f4a9-4542-aeaa-01acadbff4ea" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="31ac6469-0c46-4296-93b5-b9de215f836f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bueyes 
\entryTyp root 
\gENG oxen 
\gSPN buyes 
\e +bueyes 
\c N0 
\mp +FinalC 
\ach buyis 
\akh buyis 
\acl buyis 
\akl buyis 
\ame buyis</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9b590af2-fc7a-4b33-9f70-e735b749d546" ownerguid="726923d4-b25c-46eb-8ab0-427207177ae3"> -<ExampleWords> -<AUni ws="en">mix, stir, knead, toss, tossed, whisk, beat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to mixing ingredients?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9b5daf03-b0c0-418a-afa9-58cd7a102cd5" ownerguid="8b5cf122-0643-4ac1-a44f-e0eae95410a8"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="9b5ee2f0-29d3-49c8-bb54-e101cd75ee8f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsalcu</AUni> -<AUni ws="qvm-x-acl">tsalcu; tsalcu; tsalco</AUni> -<AUni ws="qvm-x-akh">tsalku</AUni> -<AUni ws="qvm-x-akl">tsalku; tsalku; tsalko</AUni> -<AUni ws="qvm-x-ame">tsalku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*challku</AUni> -<AUni ws="qvm-x-acl">*challku</AUni> -<AUni ws="qvm-x-akh">*challku</AUni> -<AUni ws="qvm-x-akl">*challku</AUni> -<AUni ws="qvm-x-ame">*challku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.272" /> -<DateModified val="2022-10-10 21:18:47.207" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="79ae03fd-8eee-4b07-8a2b-1eb1f02c737c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*challku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cd53d883-e143-4737-a1a3-bbaf95748713" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e4b04a0f-b137-40da-9038-f5655c32e367" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *challku 
\entryTyp root 
\gENG 
\gSPN 
\e *challku 
\c N0 V2 
\ach tsalcu 
\akh tsalku 
\acl tsalcu / _# 
\acl tsalcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tsalco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsalku / _# 
\akl tsalku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tsalko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsalku 
\i 2KI 18.21 Egipto runacunaman yäracuptiquipis paycunaga manami yanapashunquitsu. Shogushman tucnacuptin paquicar maqui paltanman tsalcu yaycognogmi Egipto runacunapis gamcunapag canga. 
\i EZK 29.7 Aptarcushuptiqui paquicäcushpayquimi paycunata tsalcushcanqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="9b618ae9-a560-4b16-b966-2243b3621081" ownerguid="fb227763-b05d-4b53-9a50-69a8e8376bb3"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="9b62e5bc-6efd-4005-a445-e48f78c366b1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">va:ra</AUni> -<AUni ws="qvm-x-acl">va:ra</AUni> -<AUni ws="qvm-x-akh">va:ra</AUni> -<AUni ws="qvm-x-akl">va:ra</AUni> -<AUni ws="qvm-x-ame">va:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vara</AUni> -<AUni ws="qvm-x-acl">+vara</AUni> -<AUni ws="qvm-x-akh">+vara</AUni> -<AUni ws="qvm-x-akl">+vara</AUni> -<AUni ws="qvm-x-ame">+vara</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.343" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fe5c8530-9237-4bbb-aaf8-8951edeb2fcc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vara</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="60202329-88f3-4c13-b5d8-12485c2014cf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="43dc9e35-0613-432c-9fee-5001d2e92467" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vara 
\entryTyp root 
\gENG scepter 
\gSPN bastón 
\e +vara 
\c N0 
\ach va:ra 
\akh va:ra 
\acl va:ra 
\akl va:ra 
\ame va:ra 
\i EST 4.11 Wanunanta mana munar öru bäranwan rey togrishgan cagtami itsanga pitapis mana wanutsintsu.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9b62f998-d519-4086-aad3-4022aeff4850" ownerguid="4d2a67fb-91c8-4436-87f4-f4eab6cb0828"> -<ExampleWords> -<AUni ws="en">boil, infection, sore, open sore, scab, rash, ulcer, abscess, bunion, growth, tumor, bruise, gangrene, inflammation, pox, lesion, canker, corn, eruption, blister, bedsore, cold sore</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a sore in the skin?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9b6391e6-9579-46c6-a2bb-475abadfe963" ownerguid="c345f278-91ff-463d-b9a6-8abac8a267eb"> -<ExampleWords> -<AUni ws="en">grape vine, morning glory</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What types of vines are there?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9b63f4be-db36-4c49-be7b-8d5500e46367"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">travie:su</AUni> -<AUni ws="qvm-x-acl">travie:su; travie:su; travie:so</AUni> -<AUni ws="qvm-x-akh">travie:su</AUni> -<AUni ws="qvm-x-akl">travie:su; travie:su; travie:so</AUni> -<AUni ws="qvm-x-ame">travie:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+travieso</AUni> -<AUni ws="qvm-x-acl">+travieso</AUni> -<AUni ws="qvm-x-akh">+travieso</AUni> -<AUni ws="qvm-x-akl">+travieso</AUni> -<AUni ws="qvm-x-ame">+travieso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.780" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2df03b37-ef2d-457f-b84d-4ba6f0a73d15" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+travieso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3e11ed6b-8bbc-431d-b290-415b1eb030a9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5253e60c-efbb-4a6a-87c7-ff741f55a380" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +travieso 
\entryTyp root 
\gENG mischevous 
\gSPN travieso 
\e +travieso 
\c N0 
\ach travie:su 
\akh travie:su 
\acl travie:su / _# 
\acl travie:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl travie:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl travie:su / _# 
\akl travie:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl travie:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame travie:su</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9b6555cb-f9f8-4197-86e0-92c045df3016" ownerguid="1a28d255-8f58-428c-9641-59f17f8b1e08"> -<ExampleWords> -<AUni ws="en">tear down, demolish, dismantle, take apart, take down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to tearing something down?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="9b671713-e20d-4cdd-8924-db9fe32b96cf" ownerguid="bbde4375-924b-4202-b8cd-915ccbe85448"> -<Form> -<AUni ws="qvm-x-ach">altu; alto</AUni> -<AUni ws="qvm-x-acl">altu; altu; alto</AUni> -<AUni ws="qvm-x-akh">altu; alto</AUni> -<AUni ws="qvm-x-akl">altu; altu; alto</AUni> -<AUni ws="qvm-x-ame">altu; alto</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="9b68b91e-d069-4187-b8c8-544f9ed200f8"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">paykuna</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="9b694e01-dc85-4f39-82f5-7b37440e48b6" ownerguid="7e812386-09ea-4275-9e28-fdeec6b107f1"> -<Form> -<AUni ws="qvm-x-ach">lijya</AUni> -<AUni ws="qvm-x-acl">lijya</AUni> -<AUni ws="qvm-x-akh">lijya</AUni> -<AUni ws="qvm-x-akl">lijya</AUni> -<AUni ws="qvm-x-ame">lijya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="9b6a566e-965b-4ba8-a9e2-3f1be30ecf34" ownerguid="fcfc5d75-a155-4c4f-b607-fac923566087"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="9b6aefff-3ae5-4607-ae4e-44d4c5ab0c24" ownerguid="a250e19e-4ad2-46e2-91d2-e3d573358e31"> -<Form> -<AUni ws="qvm-x-ach">tintirïllu</AUni> -<AUni ws="qvm-x-acl">tintirïllu; tintirïllu; tintirïllo</AUni> -<AUni ws="qvm-x-akh">tintirïllu</AUni> -<AUni ws="qvm-x-akl">tintirïllu; tintirïllu; tintirïllo</AUni> -<AUni ws="qvm-x-ame">tintirïllu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="9b6c51cd-8a39-4470-a0c5-c78b6bc4ef1b" ownerguid="30bf17f3-f3e8-477b-8bce-67e647db6f8c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">food</AUni> -<AUni ws="es">comida</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f30a9c57-c993-4160-88ed-dd3ceb114e9c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="9b6d179d-fbb7-498a-91ce-60ade91c49ee"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">segundu; segundo</AUni> -<AUni ws="qvm-x-acl">segundu; segundu; segundo</AUni> -<AUni ws="qvm-x-akh">segundu; segundo</AUni> -<AUni ws="qvm-x-akl">segundu; segundu; segundo</AUni> -<AUni ws="qvm-x-ame">segundu; segundo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+segundo</AUni> -<AUni ws="qvm-x-acl">+segundo</AUni> -<AUni ws="qvm-x-akh">+segundo</AUni> -<AUni ws="qvm-x-akl">+segundo</AUni> -<AUni ws="qvm-x-ame">+segundo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.518" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3254cc7a-0aa7-43ae-988a-813f9b29b2a7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+segundo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8a8858d2-3cb9-4949-842f-680af1cf45ea" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="53a66441-7c71-46d0-9259-240e50a152f8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +segundo 
\entryTyp root 
\gENG second 
\gSPN segundo 
\e +segundo 
\c N0 
\ach segundu / ~_# 
\ach segundo / _# 
\akh segundu / ~_# 
\akh segundo / _# 
\acl segundu / ~_# 
\acl segundu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl segundo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl segundu / ~_# 
\akl segundu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl segundo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame segundu / ~_# 
\ame segundo / _# 
\i JDG 16.27 Templupa segundo pïsunchömi Sansónta burlacushganta ricäcur warmipis olgupis quimsa waranganog (3,000) caycargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9b6dd195-a391-418a-a6cc-501ad4b3aa94" ownerguid="8add7f4d-333b-4b2c-9999-48a14162152b"> -<ExampleWords> -<AUni ws="en">self-control, abnegation, abstention, abstinence, asceticism, constraint, discipline, equanimity, forbearance, moderation, poise, reserve, restraint, self-denial, self-discipline, sobriety, stoicism, sufferance, temperance, tolerance, toleration</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the quality of being self-controlled?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="9b703e2c-527b-44eb-b565-6bedb96fc1ef"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">rikapäkutsikun</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="9b7210d1-6a6f-43af-b541-f18d3950175e" ownerguid="c63f35a0-2718-4406-aebf-404012ab4276"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="9b7305d6-61ea-46b3-93be-61618f7dc812" ownerguid="e4111081-4f61-4fef-b14a-b6f497e3cf70"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">well</AUni> -<AUni ws="es">bien</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b7eac2da-784b-4603-8b77-50a7c0ac4646" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="9b796a42-1f77-4987-92bb-7989c2ecf948" ownerguid="0c846b1b-058e-409b-bffe-fac4a8cdc81f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="9b7a8671-2641-45d3-8cae-b8363c830296" ownerguid="4dc50300-5e81-4a47-a5c5-d0434d75eb81"> -<Form> -<AUni ws="qvm-x-ach">sagra</AUni> -<AUni ws="qvm-x-acl">sagra</AUni> -<AUni ws="qvm-x-akh">saqra</AUni> -<AUni ws="qvm-x-akl">saqra</AUni> -<AUni ws="qvm-x-ame">saqra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9b7d8982-42ae-4222-8f90-f8e10e5c0f69" ownerguid="7c234ccc-0dbe-42b0-a377-db99ebd2b51e"> -<ExampleWords> -<AUni ws="en">swat, fumigate, spray, flyswatter, bug spray</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words are used for killing insects?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9b7dbd93-e38b-411d-ae2b-41c4472e96d8" ownerguid="3a9d62dc-08c7-4fc4-b628-97763eea9fce"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bat</AUni> -<AUni ws="es">morcielago</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="28240e14-456e-4cc2-afd0-280d9ccb3b9f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="9b81e0a7-da7e-4001-aac4-ab14d2b40580" ownerguid="52a7b4cb-3ebe-4c1f-8e5c-4d86e1d7d10b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">nqui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">nqui; nqui; nque</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">nki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">nki; nki; nke</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="eefb29ad-f416-4367-b09c-bb45b5e9cf21" t="r" /> -</Morph> -<Msa> -<objsur guid="0d90ca1d-7b60-41a3-a022-dba460606a1c" t="r" /> -</Msa> -<Sense> -<objsur guid="08cdcf68-e555-46a8-9801-1003a592bece" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="9b87c2be-3d35-4510-8049-3d069a91f188" ownerguid="b3745f13-3632-4f13-b0cc-a74c51f8f2a1"> -<ExampleWords> -<AUni ws="en">rock (house, ground), shake (house, ground), crack (ground), knock down (things), cause (buildings) to collapse, ground splits, earth shifts</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What do earthquakes do?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9b87e625-231f-4cef-b438-46574465e687" ownerguid="1447278f-efff-4807-b9ea-c487dea1ba5e"> -<ExampleWords> -<AUni ws="en">cottonseed, flaxseed, hayseed, linseed, pumpkin seeds, sunflower seeds</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What other types of seeds are eaten?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9b8beafc-e5f0-4454-ac0e-881b721b239b" ownerguid="3710e019-46c9-44db-a0aa-9054d3126161"> -<ExampleWords> -<AUni ws="en">joint</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a dosage of drugs?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9b8c273a-4c6b-481a-929b-f808852f515b" ownerguid="84f51fe0-8945-43fc-b837-167eecb147d2"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="9b8c6188-540c-4015-8c83-7d19c9f61da3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">warmi</AUni> -<AUni ws="qvm-x-acl">warmi; warmi; warme</AUni> -<AUni ws="qvm-x-akh">warmi</AUni> -<AUni ws="qvm-x-akl">warmi; warmi; warme</AUni> -<AUni ws="qvm-x-ame">warmi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*warmi.n</AUni> -<AUni ws="qvm-x-acl">*warmi.n</AUni> -<AUni ws="qvm-x-akh">*warmi.n</AUni> -<AUni ws="qvm-x-akl">*warmi.n</AUni> -<AUni ws="qvm-x-ame">*warmi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.536" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ddf5b3ec-6ef7-4a2a-b160-365cb7d372df" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*warmi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e9ece695-28de-48a2-aff1-266bce7d2a60" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="665a0faa-f86f-42a9-9573-15a753e44c8c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *warmi.n 
\entryTyp root 
\gENG woman 
\gSPN mujer 
\e *warmi.n 
\c N0 
\mp +FinalI 
\ach warmi 
\akh warmi 
\acl warmi / _# 
\acl warmi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl warme +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl warmi / _# 
\akl warmi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl warme +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame warmi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9b8f992a-d343-4929-9f35-aed33dbdb301" ownerguid="f3654a7f-d16e-4870-9ef0-4b4268faeffb"> -<ExampleWords> -<AUni ws="en">be discontent, complain, complaint, fuss, chafe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling bad about your present conditions?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="9b934b7d-8929-42ea-b4c3-73ceaac42041" ownerguid="04207506-5a9f-49eb-adae-80ab00bd5510"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="9b9beef3-780c-424d-aeab-2edfbc83124a" ownerguid="7fc5c4e8-8d66-4a8e-9368-9c85043c95a1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="9b9ccd76-76d6-457b-93d2-c4d242a395f8" ownerguid="0b7b9a1c-588b-475a-ac14-00f0999cbfe9"> -<Abbreviation> -<AUni ws="en">4.8.4.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.286" /> -<DateModified val="2022-9-23 16:55:8.286" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to renouncing a claim.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Renounce claim, concede</AUni> -</Name> -<Questions> -<objsur guid="7407d939-a3bb-44bc-babe-f546306ca055" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="9b9d021f-4b7d-46dc-aecc-0ed2c1394117"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">y</AUni> -<AUni ws="qvm-x-acl">y</AUni> -<AUni ws="qvm-x-akh">y</AUni> -<AUni ws="qvm-x-akl">y</AUni> -<AUni ws="qvm-x-ame">y</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.518" /> -<DateModified val="2022-10-15 16:9:18.119" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="1" /> -<LexemeForm> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">INF</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="07ddeffe-9ec0-437a-a413-6bb07751c896" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx INF 
\entryTyp suffix 
\gENG INF 
\gSPN INF 
\e INF 
\c V1/N0 V2/N0 
\o 000 
\mp +foreshortens 
\ach y 
\akh y 
\acl y 
\akl y 
\ame y 
\mp +FinalC 
\mcc INF / ~_ ADV1 | force ADV2 
\mcc INF / BEN1 1O ~_# 
\mcc INF / POL ... ~_ 
\mcc INF / 1O ~_# 
\mcc INF GEN / ~_ [sim] 
\mcc INF GEN / BEN1 ~_ 
\mcc INF / CAUSBE3 ~_ GEN 
\mcc INF / REF ~_ JUST GEN 
\mcc INF / REF PLDIR ...~_# 
\mcc INF / *ka ~_ NEG 
\mcc INF / ~_ YN? 
\mcc INF / ~_ JUST ADV 
\mcc INF/ AFAR ~_# 
\mcc INF / IMPFV1 PL ~_ 
\mcc INF / IN CAUS [lla] ~_ 
\mcc INF / REFDIR UP ~_# 
\mcc INF / ~_ JUST2.C (3P.V) [pa] 
\mcc INF / ~_ NOW NEG 
\mcc INF / IN1 CAUS JUST.V ~_ 
\mcc INF / ~_... INF 
\mcc INF / 1O ~_ GEN 
\mcc INF / PASS ~_ GEN 
\mcc INF / IN1 [just] ~_</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="9ba6c978-8ccf-4333-9813-84cda57e1d93" ownerguid="0d4d4f1b-a385-4ea0-9496-9ff1b7a2b52a"> -<Form> -<AUni ws="qvm-x-ach">cörri; cörri</AUni> -<AUni ws="qvm-x-acl">cörri; cörre; cörri</AUni> -<AUni ws="qvm-x-akh">cörri; cörri</AUni> -<AUni ws="qvm-x-akl">cörri; cörre; cörri</AUni> -<AUni ws="qvm-x-ame">cörri; cörri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="9ba710c8-5264-46c7-af49-3678cc6a3e86" ownerguid="a370aa5c-290b-4b03-a827-7a5f707fc846"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">earthquake</AUni> -<AUni ws="es">temblor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="14436a76-f030-4651-8f17-6f1acd27420d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="9ba89bb6-2261-43bf-a292-242d714b0170" ownerguid="78bf0de0-e54a-446a-9ccd-79dace661e64"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">day</AUni> -<AUni ws="es">día</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2a41474f-1dff-4f68-a787-65d99d7936a2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9ba91ed7-e2eb-4222-ac97-2701490e0136" ownerguid="9e2b0c61-304e-4cad-9708-792bfde880b4"> -<ExampleWords> -<AUni ws="en">ceasefire, truce, armistice, peace treaty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to an agreement to stop fighting?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9ba9f3ff-0c6e-466d-ad92-67c97b96fcb1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mediu</AUni> -<AUni ws="qvm-x-acl">mediu; mediu; medio</AUni> -<AUni ws="qvm-x-akh">mediu</AUni> -<AUni ws="qvm-x-akl">mediu; mediu; medio</AUni> -<AUni ws="qvm-x-ame">mediu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+medio.2</AUni> -<AUni ws="qvm-x-acl">+medio.2</AUni> -<AUni ws="qvm-x-akh">+medio.2</AUni> -<AUni ws="qvm-x-akl">+medio.2</AUni> -<AUni ws="qvm-x-ame">+medio.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.396" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d04e78e4-b792-4930-a70e-36208d3b0b67" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+medio.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3c61cce2-042c-4338-b08d-ecf2c0e3b271" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="35e3e1ba-6cd2-49f2-97d7-f387418c8cf3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +medio.2 
\entryTyp root 
\gENG half 
\gSPN medio 
\e +medio.2 
\c N0 
\mp +assimilated 
\ach mediu 
\akh mediu 
\acl mediu / _# 
\acl mediu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl medio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mediu / _# 
\akl mediu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl medio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mediu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="9baac3cb-62f4-47c5-b2e2-26cd542aa9da"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lutsca; lutsca:</AUni> -<AUni ws="qvm-x-acl">lutsca; lutsca:</AUni> -<AUni ws="qvm-x-akh">lutska; lutska:</AUni> -<AUni ws="qvm-x-akl">lutska; lutska:</AUni> -<AUni ws="qvm-x-ame">lutska; lutska:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lluchka:</AUni> -<AUni ws="qvm-x-acl">*lluchka:</AUni> -<AUni ws="qvm-x-akh">*lluchka:</AUni> -<AUni ws="qvm-x-akl">*lluchka:</AUni> -<AUni ws="qvm-x-ame">*lluchka:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.215" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1d119231-0268-4976-b1da-5a53266a1371" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lluchka:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="41ab383d-47c1-4ca4-a243-7949e146cb7b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="37dd6a25-c0c2-4475-9960-05b4a898397d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lluchka: 
\entryTyp root 
\gENG slip 
\gSPN resbalar 
\e *lluchka: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach lutsca foreshortened 
\ach lutsca: 
\akh lutska foreshortened 
\akh lutska: 
\acl lutsca foreshortened 
\acl lutsca: 
\akl lutska foreshortened 
\akl lutska: 
\ame lutska foreshortened 
\ame lutska:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="9bab95c4-9773-4894-9cb9-d7ad39378b45" ownerguid="c82fa28f-7e26-489e-a244-4d69cea87b94"> -<Abbreviation> -<AUni ws="en">6.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.458" /> -<DateModified val="2022-9-23 16:55:8.458" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to occupations.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>42E Craft, Trade</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Occupation</AUni> -</Name> -<Questions> -<objsur guid="6af6ae0c-f884-4a33-b1c5-9bcf15100fca" t="o" /> -<objsur guid="ae5d9919-6593-400b-bba8-a65b240b3692" t="o" /> -<objsur guid="b1e8d23b-59c9-4d9e-b7ef-5fb7d2e3347c" t="o" /> -<objsur guid="cd8fd17e-b7b5-44bd-8a18-623c2be0421c" t="o" /> -<objsur guid="9033696d-b1a0-4e4c-9d44-b70a1e714fb5" t="o" /> -<objsur guid="7a96a148-1d38-4d26-a6c0-35e0911bd49c" t="o" /> -<objsur guid="816d4d19-db45-4cb3-a805-eed74181c3b6" t="o" /> -<objsur guid="66d74c8b-5a61-4c24-8fdc-4f4f40922dad" t="o" /> -<objsur guid="e0b14cd0-d7cc-4d70-be7d-e48d27c5d99f" t="o" /> -<objsur guid="c3f8b979-cb52-4470-a48e-d2977e6c3f06" t="o" /> -<objsur guid="134a4be4-8866-4243-a4fe-9f57e338c8b9" t="o" /> -<objsur guid="399e218f-3673-45ec-b9e4-9c65db3fc44d" t="o" /> -<objsur guid="e4baeb50-99ac-4edf-85b2-91881e6787e4" t="o" /> -<objsur guid="010b88bd-ed06-4c27-a618-d4c04216b088" t="o" /> -<objsur guid="9bfa8fa9-ec61-4913-ad8d-70b551bdb3bc" t="o" /> -<objsur guid="14f6d694-e06a-4b04-b7c1-6aaa445246f6" t="o" /> -<objsur guid="da5f6e7a-00a9-43b6-a53c-71427fa3c855" t="o" /> -<objsur guid="50a932bd-c92b-42b0-bd00-0356fd1665bf" t="o" /> -<objsur guid="becdac2c-a9db-4c51-9ebc-1a7b2821425d" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="71430132-f2ea-40fe-b3f5-b6775741cc56" t="o" /> -<objsur guid="34e92ff1-32aa-49c7-b4da-d161bedc5adc" t="o" /> -<objsur guid="adde4a66-9040-47a9-91ab-327934a2e97e" t="o" /> -<objsur guid="f6eb81d5-caba-4735-be6f-ae038656b555" t="o" /> -<objsur guid="0bc02285-8e70-442a-8d08-e04d922507c8" t="o" /> -<objsur guid="0644f4da-c9fe-4239-bbe5-6efc85f98968" t="o" /> -<objsur guid="683f570a-0bfe-4a97-b55d-4319b328508b" t="o" /> -<objsur guid="f1373316-7917-4dca-9d33-c6b520bd4034" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="9bae150b-e221-4151-82cd-35d3dcd21649" ownerguid="bd550c69-9ff6-4ab2-85d7-718b054adfa4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="9bafa059-d5d8-4c48-991c-547be2cdde08"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Tsaymi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="9bafc137-21e0-4383-9b24-c734aef576c3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waychau</AUni> -<AUni ws="qvm-x-acl">waychau</AUni> -<AUni ws="qvm-x-akh">waychaw</AUni> -<AUni ws="qvm-x-akl">waychaw</AUni> -<AUni ws="qvm-x-ame">waychaw</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waytraw</AUni> -<AUni ws="qvm-x-acl">*waytraw</AUni> -<AUni ws="qvm-x-akh">*waytraw</AUni> -<AUni ws="qvm-x-akl">*waytraw</AUni> -<AUni ws="qvm-x-ame">*waytraw</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.637" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1bd2bd03-03f4-4172-a57f-c07aceb245f3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waytraw</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8aa28462-2157-4f8a-b78c-ed4eb75b8c59" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6c3f3aee-ccbe-4ed2-b0bf-3ccde5af9e00" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waytraw 
\entryTyp root 
\gENG waychaw 
\gSPN huaychau 
\e *waytraw 
\c N0 
\mp NeverLowered 
\ach waychau 
\akh waychaw 
\acl waychau 
\akl waychaw 
\ame waychaw 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="9bb0b5cd-a299-49ec-b100-0d5dcbd6beb5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lagu</AUni> -<AUni ws="qvm-x-acl">lagu; lagu; lago</AUni> -<AUni ws="qvm-x-akh">laqu</AUni> -<AUni ws="qvm-x-akl">laqu; laqu; laqo</AUni> -<AUni ws="qvm-x-ame">laqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llaqu.n</AUni> -<AUni ws="qvm-x-acl">*llaqu.n</AUni> -<AUni ws="qvm-x-akh">*llaqu.n</AUni> -<AUni ws="qvm-x-akl">*llaqu.n</AUni> -<AUni ws="qvm-x-ame">*llaqu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.184" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8b2fca54-7208-4e33-b5e9-4a33bf4e14de" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llaqu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5f01f060-dcce-4c79-9d0d-8121fb59f437" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="58c3a412-128b-4a95-9fe5-8433c4df2a8c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llaqu.n 
\entryTyp root 
\gENG dull 
\gSPN desafilado 
\e *llaqu.n 
\c N0 
\ach lagu 
\akh laqu 
\acl lagu / _# 
\acl lagu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lago +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl laqu / _# 
\akl laqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl laqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame laqu 
\i ECC 10.10 Ächa laguyaptin mana afilarga mas calpawanragmi mutuntsi.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="9bb173c6-cf38-47cd-803f-ebdf964ca2fc" ownerguid="62b4ae33-f3c2-447a-9ef7-7e41805b6a02"> -<Abbreviation> -<AUni ws="en">4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.243" /> -<DateModified val="2022-9-23 16:55:8.243" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to prosperity and trouble</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>22 Trouble, Hardship, Relief, Favorable Circumstances</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Prosperity, trouble</AUni> -</Name> -<Questions> -<objsur guid="ce8f960f-fbd0-4367-8020-bfeadf921f48" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c1144a6e-3fce-4084-93d6-6f305eda8b1f" t="o" /> -<objsur guid="01459db0-bf2a-422b-8d55-0ab505aea2b4" t="o" /> -<objsur guid="65bb0844-9a71-4eec-9b86-bf4b4b508a28" t="o" /> -<objsur guid="3dd684e6-75d9-41f4-aaa3-fb0cb3c7d400" t="o" /> -<objsur guid="b5499348-b8ca-4fae-8486-b23863560ae5" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="9bb55594-b7fa-4839-ad0a-a64d2ac1b429" ownerguid="83a3fd94-eab8-469c-af5b-d94b664759a4"> -<Form> -<AUni ws="qvm-x-ach">waylu</AUni> -<AUni ws="qvm-x-acl">waylu; waylu; waylo</AUni> -<AUni ws="qvm-x-akh">waylu</AUni> -<AUni ws="qvm-x-akl">waylu; waylu; waylo</AUni> -<AUni ws="qvm-x-ame">waylu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="9bb6f1ed-7170-4caa-a14c-747fd95ca30e" ownerguid="36ad58e3-ade7-49b9-9922-de0b5c3f13c3"> -<Abbreviation> -<AUni ws="en">5.2.3.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.317" /> -<DateModified val="2022-9-23 16:55:8.317" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to sugar.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Sugar</AUni> -</Name> -<Questions> -<objsur guid="b9ee1157-49cd-437b-9cb7-af6c329dc513" t="o" /> -<objsur guid="a7a2e61c-440b-4db7-806d-5e4a2c5ba77a" t="o" /> -<objsur guid="ce30d2f0-34d7-4cf9-a52e-d612a2767679" t="o" /> -<objsur guid="62697447-c8e9-4b4a-845f-958064138c89" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="9bb8052c-9c17-4f4d-ba12-693ed4024e85" ownerguid="cbb679d3-ae6f-497e-b7d3-16b5a16a0730"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">junag</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">junag</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">junaq</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">junaq</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">hunaq</Run> -</AStr> -</Form> -<Morph> -<objsur guid="c52a56a5-e19d-430e-8ebc-ea403d8bfc03" t="r" /> -</Morph> -<Msa> -<objsur guid="2a41474f-1dff-4f68-a787-65d99d7936a2" t="r" /> -</Msa> -<Sense> -<objsur guid="9ba89bb6-2261-43bf-a292-242d714b0170" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="9bb84783-72a2-4572-a6ca-aeeec15101f6" ownerguid="eaf69e79-17ff-48c0-97c3-22b972a0e94e"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="9bbb6eda-06d7-4f3b-9eab-0864fff6eebb" ownerguid="00593c1d-59f7-4aab-a228-ab1ab60e420d"> -<Form> -<AUni ws="qvm-x-ach">pampa</AUni> -<AUni ws="qvm-x-acl">pampa</AUni> -<AUni ws="qvm-x-akh">pampa</AUni> -<AUni ws="qvm-x-akl">pampa</AUni> -<AUni ws="qvm-x-ame">pampa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9bbff1ae-467c-4801-a51e-0884e9eaaff2" ownerguid="ec1bcace-fc10-45df-8e1f-29bce1ef786a"> -<ExampleWords> -<AUni ws="en">long (conversation, talk), brief (conversation)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words modify the length of time?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9bc4a434-f791-4d73-839b-707c09898c69" ownerguid="2e2bdbad-d0ce-461e-bff3-b0a8a7cf7100"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9bc4cb7e-7fc3-4be8-918b-6d1cfd9a981c" ownerguid="627280f0-4f98-4b31-ad23-eabe37b002ad"> -<ExampleWords> -<AUni ws="en">thin, fine, light, lightweight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something like cloth or paper that is thin?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9bca93d5-512a-4277-9c20-ad52ad5dd1d9" ownerguid="1ff743cb-49e0-483d-8a1d-4603a7d6c395"> -<ExampleWords> -<AUni ws="en">decreasing, declining, falling, lowering, shrinking, less and less, fewer and fewer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is decreasing in number or amount?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9bd22b75-3bbb-4b10-96ca-255b1c9e97b1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">azufri; azufre</AUni> -<AUni ws="qvm-x-acl">azufri; azufri; azufre</AUni> -<AUni ws="qvm-x-akh">azufri; azufre</AUni> -<AUni ws="qvm-x-akl">azufri; azufri; azufre</AUni> -<AUni ws="qvm-x-ame">azufri; azufre</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+azufre.1</AUni> -<AUni ws="qvm-x-acl">+azufre.1</AUni> -<AUni ws="qvm-x-akh">+azufre.1</AUni> -<AUni ws="qvm-x-akl">+azufre.1</AUni> -<AUni ws="qvm-x-ame">+azufre.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.910" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="722e270c-2762-4606-81ca-0e6e6a8cdc5e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+azufre.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="473c50a6-02df-41be-933b-e9390d41ac12" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="202ede89-e05f-4e57-8666-6b4a71075182" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +azufre.1 
\entryTyp root 
\gENG sulfur 
\gSPN azufre 
\e +azufre.1 
\c N0 
\mp +FinalI 
\ach azufri / ~_# 
\ach azufre / _# 
\akh azufri / ~_# 
\akh azufre / _# 
\acl azufri / ~_# 
\acl azufri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl azufre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl azufri / ~_# 
\akl azufri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl azufre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame azufri / ~_# 
\ame azufre / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="9bd2a633-545d-4319-b8dc-fa82d698c18d" ownerguid="960240a0-3d88-49cc-b42b-6dd7e4b9e0ae"> -<Form> -<AUni ws="qvm-x-ach">ushma</AUni> -<AUni ws="qvm-x-acl">ushma</AUni> -<AUni ws="qvm-x-akh">ushma</AUni> -<AUni ws="qvm-x-akl">ushma</AUni> -<AUni ws="qvm-x-ame">ushma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9bd36178-68fc-4c1d-a6f7-5bbd1db35316" ownerguid="f5156cde-9735-4249-920d-597fb0a7a8e3"> -<ExampleWords> -<AUni ws="en">wear, wear out, deteriorate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something wearing out?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9bd455c1-b1f9-4fdb-9c19-c667a71e80f8" ownerguid="13d6c4b2-d416-44eb-bdcf-4d17867e1e60"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="04a3b822-6b1f-41ab-8e55-75ff92b1d1b4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="9bd490e6-8863-4ab4-9a0f-7e696f0a0d4a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pauca</AUni> -<AUni ws="qvm-x-acl">pauca</AUni> -<AUni ws="qvm-x-akh">pawka</AUni> -<AUni ws="qvm-x-akl">pawka</AUni> -<AUni ws="qvm-x-ame">pawka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pawka</AUni> -<AUni ws="qvm-x-acl">*pawka</AUni> -<AUni ws="qvm-x-akh">*pawka</AUni> -<AUni ws="qvm-x-akl">*pawka</AUni> -<AUni ws="qvm-x-ame">*pawka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.769" /> -<DateModified val="2022-10-10 21:18:47.204" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1e3a5e08-523e-4b3d-a8e9-d560d527b5ce" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pawka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="56290cc0-5eeb-4a35-bdfc-37711d61a3c5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7c4114f9-80a5-4377-b07d-6aaafe178a59" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pawka 
\entryTyp root 
\gENG 
\gSPN 
\e *pawka 
\c V1 
\ach pauca 
\akh pawka 
\acl pauca 
\akl pawka 
\ame pawka</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="9bd642f1-72f7-442c-8df5-f7f8223953b9" ownerguid="055b2e6f-cacc-4740-a7f8-4ee42b6f73a3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9bd670d5-1bc6-48c1-a75b-389059593fcd" ownerguid="00364f0c-9a3a-4910-a82e-1ffbc4d4137f"> -<ExampleWords> -<AUni ws="en">excited, eager, thrilled, animated, exuberant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels excited?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9bd77b3f-9931-4150-891b-403c318907b2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gashpa</AUni> -<AUni ws="qvm-x-acl">gashpa</AUni> -<AUni ws="qvm-x-akh">qashpa</AUni> -<AUni ws="qvm-x-akl">qashpa</AUni> -<AUni ws="qvm-x-ame">qashpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qashpa.v</AUni> -<AUni ws="qvm-x-acl">*qashpa.v</AUni> -<AUni ws="qvm-x-akh">*qashpa.v</AUni> -<AUni ws="qvm-x-akl">*qashpa.v</AUni> -<AUni ws="qvm-x-ame">*qashpa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.134" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b1d88b07-0f2e-4ce9-81b1-0643e7802cae" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qashpa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bb0ac467-2909-4998-848d-bf8729dd51e1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f2b721dd-85af-4851-8b83-d68b2825942d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qashpa.v 
\entryTyp root 
\gENG burn.hair 
\gSPN quemar.pelo 
\e *qashpa.v 
\c V2 
\ach gashpa 
\akh qashpa 
\acl gashpa 
\akl qashpa 
\ame qashpa 
\i ISA 43.2 Manami gashpaylapis gashpashunquitsu.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="9bd85d2c-68a8-4fb7-817d-bf15496a642a" ownerguid="d0f847c9-44de-43a8-bdb6-cc46bb666a4a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sheet.lightning</AUni> -<AUni ws="es">relampaguear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6711efaf-1399-4feb-82b5-4f4913c092df" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9bd99cc6-348f-4c41-b7cb-e970ad96f455" ownerguid="adfc2bcd-6b8e-486c-b105-29b286b61cc0"> -<ExampleWords> -<AUni ws="en">acquisition</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something someone gets?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9be66618-88a2-4167-85d1-2735656cd9be" ownerguid="afdd8b8e-9502-4d06-94ee-e79815b65750"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">We are <almost> there.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">almost, nearly, just about</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that someone has almost reached a place?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9be6b3df-887f-45b5-8f21-0ff238074edd" ownerguid="445f3084-f250-40fa-87ba-ebd233f9018f"> -<ExampleWords> -<AUni ws="en">anteater, sloth, armadillo</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What species of anteaters are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9be9b834-b462-4fcb-be17-351469de6a93" ownerguid="29a8ebbe-ebc4-4295-b6af-84331d019361"> -<ExampleWords> -<AUni ws="en">word, term, verbal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a word?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9be9ff06-8dc0-47a9-b325-d5a275267586" ownerguid="8a7fdd75-01dc-4d40-84ff-fa0484da3abb"> -<ExampleWords> -<AUni ws="en">violence, aggression, brutality, savagery, ferocity, fierceness, force, fury, barbarity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to violent behavior?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="9bea4b68-0e65-4341-9f77-0771c296e8d2" ownerguid="8239a895-f525-49e0-9513-65857e52750c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1SA 25.25 Nabalga jutinman tupumi malgeniumi caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="9bee001a-83cd-4866-ab86-741ffa623515" ownerguid="9c3e4586-e333-4771-8a8e-0054f5ba1801"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">backbone</AUni> -<AUni ws="es">columna.vertebr</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0b1fab53-c28d-4fed-80f3-92d3f975aac9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="9bee7f92-3186-4693-8c7e-e75f0894ffa3" ownerguid="de2888bf-7980-4a80-a111-f62fbd2b3260"> -<Form> -<AUni ws="qvm-x-ach">chicu</AUni> -<AUni ws="qvm-x-acl">chicu; chico</AUni> -<AUni ws="qvm-x-akh">chiku</AUni> -<AUni ws="qvm-x-akl">chiku; chiko</AUni> -<AUni ws="qvm-x-ame">chiku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="9bf21458-0acc-4d8d-ba9a-7b9fb6b8ee0b" ownerguid="7d54d3dd-5fb2-4640-9bcf-c234696af894"> -<Abbreviation> -<AUni ws="en">4.3.5.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.235" /> -<DateModified val="2022-9-23 16:55:8.235" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being a hypocrite.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88C' Hypocrisy, Pretense</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Hypocrite</AUni> -</Name> -<Questions> -<objsur guid="dd0319a5-570d-4b71-b447-96222bda08db" t="o" /> -<objsur guid="9ce6ed11-8c37-4d03-b398-4fc45d65332d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="9bf4384a-25fe-46b4-92a9-779ea39d637e" ownerguid="6ae4a4de-7aeb-4325-9209-7187c858428e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="9bf5702e-0bd8-4dcc-9579-0f76bc39bf5a" ownerguid="78ae595d-ca38-40e4-89de-ef042b4d8aab"> -<Form> -<AUni ws="qvm-x-ach">mäña</AUni> -<AUni ws="qvm-x-acl">mäña</AUni> -<AUni ws="qvm-x-akh">mäña</AUni> -<AUni ws="qvm-x-akl">mäña</AUni> -<AUni ws="qvm-x-ame">mäña</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9bf76421-79ff-4940-b4fb-35aec683cf17" ownerguid="40516af2-d413-418e-8b68-8443847ee169"> -<ExampleWords> -<AUni ws="en">belt buckle, button, buttonhole, clasp, cuff-link, lace, snap, zip, zipper</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What things are used to hold parts of clothes together?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="9bf7caa0-c172-49f0-9855-b6360e178c6c"> -<Analyses> -<objsur guid="0b6da2c6-cc71-47ea-bcc2-1deccf6901ef" t="o" /> -</Analyses> -<Checksum val="1928205181" /> -<Form> -<AUni ws="qvm-x-akh">rikapäkatsikun</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="9bfa8fa9-ec61-4913-ad8d-70b551bdb3bc" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<ExampleWords> -<AUni ws="en">chauffeur, driver, truck driver, cab driver, porter, loader, mover, dispatcher, captain of ship, sailor, pilot, copilot, navigator, steward, stewardess</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What are the occupations in transportation?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9c00b1af-91e4-4840-a1d7-2f6e86dbe9f9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">panteón; panteon</AUni> -<AUni ws="qvm-x-acl">panteón; panteon</AUni> -<AUni ws="qvm-x-akh">panteón; panteon</AUni> -<AUni ws="qvm-x-akl">panteón; panteon</AUni> -<AUni ws="qvm-x-ame">panteón; panteon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+panteón</AUni> -<AUni ws="qvm-x-acl">+panteón</AUni> -<AUni ws="qvm-x-akh">+panteón</AUni> -<AUni ws="qvm-x-akl">+panteón</AUni> -<AUni ws="qvm-x-ame">+panteón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.689" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2df9c4cc-e841-4259-8122-0b94a6e134e3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+panteón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8998ea31-13c5-475e-8af1-bbc3601d8d69" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cb887b08-deb1-4282-8e5c-42b81240edec" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +panteón 
\entryTyp root 
\gENG cemetery 
\gSPN panteón 
\e +panteón 
\c N0 
\mp +FinalC 
\ach panteón / _# 
\ach panteon / ~_# 
\akh panteón / _# 
\akh panteon / ~_# 
\acl panteón / _# 
\acl panteon / ~_# 
\akl panteón / _# 
\akl panteon / ~_# 
\ame panteón / _# 
\ame panteon / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9c056000-d1fe-4ffb-8e08-10d2dfe824a0" ownerguid="ab127348-7f98-43e5-801d-01241ecdb517"> -<ExampleWords> -<AUni ws="en">put under, put underneath</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to putting something under something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9c06070d-45a8-4638-a744-cfe4b2898c5d" ownerguid="01441207-4935-49a5-a192-16d949f5606c"> -<ExampleWords> -<AUni ws="en">athlete, player, starting line up, substitute, bench, coach, captain, referee, trainer, professional, amateur</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What is a person called who participates in sports?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9c0c6d39-bb13-4ab4-949e-48bf3332883c" ownerguid="b602c0e1-5398-4cc9-850b-7cfb5c592d13"> -<ExampleWords> -<AUni ws="en">blind (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to making someone blind?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9c0f2e63-a1ea-4fbc-8b7c-c2b407232220" ownerguid="9b267cc1-983c-407a-98d2-1e27add6292c"> -<ExampleWords> -<AUni ws="en">untie, be untied, take off the rope, undo</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to untying something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9c0fc5ca-81ef-402f-bed3-da887c64235e" ownerguid="c05bf8c3-78f2-4ec5-b0d7-32d4963a5794"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John's house is made of bricks.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">be made of, consist of, be made up of, be composed of, made out of, made with, made from</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to something being made of some material?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="9c1115a2-d562-4d24-9e36-3ff21f7ecaf8"> -<Form> -<Str> -<Run ws="qvm-x-akh">(:</Run> -</Str> -</Form> -</rt> -<rt class="WfiWordform" guid="9c11b8c7-f0af-4dc6-b620-111c132f274d"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Qampis</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="9c11d9a1-f741-4c83-b4f5-eb206686543b" ownerguid="a7dae83a-dce6-47ea-ab3f-ac8a3af4cce9"> -<ExampleWords> -<AUni ws="en">country, land, nation, territory, kingdom</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a country?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9c165202-6216-4149-aa4b-e80d0e311e17" ownerguid="938698a1-c41b-42e7-abbd-eff126a79edb"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9c1bac8c-f944-4bf5-a5a0-bd54f640e95b" ownerguid="c8185ca6-567a-40ef-939f-ffefdd9a4770"> -<ExampleWords> -<AUni ws="en">forever, always, ever, eternally, incessantly, unceasingly, forever and ever, in perpetuity, for all eternity, for all time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to indicate that an event or state that will continue forever?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="9c1e1d9f-c771-43f2-9505-1b369fe64d4a" ownerguid="d167c58f-7de0-4dbf-b896-e563f37268b0"> -<Form> -<AUni ws="qvm-x-ach">wachwachayla</AUni> -<AUni ws="qvm-x-acl">wachwachayla</AUni> -<AUni ws="qvm-x-akh">wachwachayla</AUni> -<AUni ws="qvm-x-akl">wachwachayla</AUni> -<AUni ws="qvm-x-ame">wachwachayla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="9c1e5ef0-0c5b-405b-a2a6-3c982e89e4c0" ownerguid="f38f267d-c55d-4927-9ac7-7a61e42d49ff"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">note</AUni> -<AUni ws="es">nota</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5a686695-633f-457c-95eb-b6fc8608a19b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="9c21f9bd-a7e0-4989-99f1-7fa2853ab73c" ownerguid="6b8366b9-b5e8-42b8-991c-c568d4442a81"> -<Abbreviation> -<AUni ws="en">5.4.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.327" /> -<DateModified val="2022-9-23 16:55:8.327" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to cutting hair.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Cut hair</AUni> -</Name> -<Questions> -<objsur guid="ad5c7fb2-e2fd-48c9-8a7c-a6c1ea17439e" t="o" /> -<objsur guid="1c5683a2-2190-4800-b729-cdc2aa020dec" t="o" /> -<objsur guid="15f86fce-817c-47dc-a64c-2ee724bb5813" t="o" /> -<objsur guid="745aba29-cdb6-49cc-b300-3a2c2966b118" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="9c22513d-fe7c-4f24-8290-cf20d83c82e0" ownerguid="ec0455d5-4578-45c7-bd7d-8aa6b3a8da42"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="9c239e68-85a8-4cfa-8658-d0a47280e55b" ownerguid="6601b6a4-645a-47fb-8275-bfe335210009"> -<Form> -<AUni ws="qvm-x-ach">fresäda</AUni> -<AUni ws="qvm-x-acl">fresäda</AUni> -<AUni ws="qvm-x-akh">fresäda</AUni> -<AUni ws="qvm-x-akl">fresäda</AUni> -<AUni ws="qvm-x-ame">fresäda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="9c273ea6-a314-408b-b766-f3929d8bec86" ownerguid="834c0976-f985-4355-a1be-b39d31579892"> -<Form> -<AUni ws="qvm-x-ach">goshtata; goshtatä</AUni> -<AUni ws="qvm-x-acl">goshtata; goshtatä</AUni> -<AUni ws="qvm-x-akh">qoshtata; qoshtatä</AUni> -<AUni ws="qvm-x-akl">qoshtata; qoshtatä</AUni> -<AUni ws="qvm-x-ame">qushtata; qushtatä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9c28c915-a534-435a-8875-eff562c3e69e" ownerguid="f38f8344-838f-44ba-b103-22289c2d2793"> -<ExampleWords> -<AUni ws="en">wet, dank, watery, aqueous, sludgy, slush, slushy, sloppy, sweaty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is wet?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9c2ab099-51fd-4ced-94cb-e2a27f461d22" ownerguid="efe7b1e6-1ac3-4fba-bec1-7a75ac3fe65a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9c2b73a0-07c1-4b43-9fac-4d2227604738" ownerguid="de6b15d3-6409-4998-b03d-903133f4ad70"> -<ExampleWords> -<AUni ws="en">sing in unison, sing in harmony, sing the melody/harmony, keep time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe whether or not people are singing the same thing together?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9c2c35dd-5633-43f7-b4a7-bc89853f0faa" ownerguid="1984977c-621e-487a-b924-2c2a163bca1c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1 R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">turn</AUni> -<AUni ws="es">volver</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="68118a6a-bf1a-4523-a34c-85685caebd39" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="9c2c65dc-68c2-4f2d-b746-a675ad9c5020" ownerguid="8946d237-a97c-4745-a03a-2c651f37aeb5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">gaviota</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3bbf9e45-c1f6-4a48-bfe9-a46ead84a7da" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="9c2d1f1d-81d4-4776-9be7-9fc5b920ca14"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">isca</AUni> -<AUni ws="qvm-x-acl">isca</AUni> -<AUni ws="qvm-x-akh">iska</AUni> -<AUni ws="qvm-x-akl">iska</AUni> -<AUni ws="qvm-x-ame">iska</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*iska.n</AUni> -<AUni ws="qvm-x-acl">*iska.n</AUni> -<AUni ws="qvm-x-akh">*iska.n</AUni> -<AUni ws="qvm-x-akl">*iska.n</AUni> -<AUni ws="qvm-x-ame">*iska.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.852" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="26237de6-c73b-4adf-83e0-e94771b19c59" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*iska.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7dd93fa3-9abf-4a37-b50b-2da51d8f4811" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5e3652ff-4817-455f-86fb-8142fb331a10" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *iska.n 
\entryTyp root 
\gENG lime 
\gSPN cal 
\e *iska.n 
\c N0 
\ach isca 
\akh iska 
\acl isca 
\akl iska 
\ame iska</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9c2d554f-96ce-4b56-9dac-749f13631930" ownerguid="2e30f02d-d1e6-489c-a1fb-8b9fb6ecd819"> -<ExampleWords> -<AUni ws="en">disappoint, dash someone's hopes, demoralize, devastate, discourage, dishearten, disillusion, dissatisfy, jilt, let someone down, frustrate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to causing someone to feel disappointed?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9c2dc070-8880-4d3d-82c6-7c1b54db3376" ownerguid="1447278f-efff-4807-b9ea-c487dea1ba5e"> -<ExampleWords> -<AUni ws="en">green bean, lima bean, kidney bean, pea, cowpea, soybean</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What types of beans are eaten?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9c32556a-b736-4697-921b-508a3ab14578" ownerguid="f3aa5ec5-b872-43f1-ac23-42d9a371442b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="9c387d89-ec59-44b3-a5ef-fb34472a5b83" ownerguid="f0603e9a-c085-453b-b8bf-3663358ee837"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9c39ecb0-feb9-4aea-acf3-63d081764627" ownerguid="c1144a6e-3fce-4084-93d6-6f305eda8b1f"> -<ExampleWords> -<AUni ws="en">the good life, good times, prosperity, blessing, good fortune, ease, welfare, quality of life, utopia</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a good life?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9c3d9cd4-92e3-4e3a-a127-78ac009b2881"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gatswa</AUni> -<AUni ws="qvm-x-acl">gatswa</AUni> -<AUni ws="qvm-x-akh">qatswa</AUni> -<AUni ws="qvm-x-akl">qatswa</AUni> -<AUni ws="qvm-x-ame">qatswa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qachwa</AUni> -<AUni ws="qvm-x-acl">*qachwa</AUni> -<AUni ws="qvm-x-akh">*qachwa</AUni> -<AUni ws="qvm-x-akl">*qachwa</AUni> -<AUni ws="qvm-x-ame">*qachwa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.65" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b6258c31-b823-47b5-a4c3-276ad10b48ef" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qachwa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4741e2db-27c1-4132-9b52-d8fc03eb9215" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="53734e43-7973-4578-84f8-8489d4387b9a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qachwa 
\entryTyp root 
\gENG dance 
\gSPN danzar 
\e *qachwa 
\c V1 
\ach gatswa 
\akh qatswa 
\acl gatswa 
\akl qatswa 
\ame qatswa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="9c3e4586-e333-4771-8a8e-0054f5ba1801"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">washamuru</AUni> -<AUni ws="qvm-x-acl">washamuru; washamuru; washamuro</AUni> -<AUni ws="qvm-x-akh">washamuru</AUni> -<AUni ws="qvm-x-akl">washamuru; washamuru; washamuro</AUni> -<AUni ws="qvm-x-ame">washamuru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*washamuru</AUni> -<AUni ws="qvm-x-acl">*washamuru</AUni> -<AUni ws="qvm-x-akh">*washamuru</AUni> -<AUni ws="qvm-x-akl">*washamuru</AUni> -<AUni ws="qvm-x-ame">*washamuru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.546" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="78ffa0db-907d-438f-a9e4-97ead99be977" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*washamuru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0b1fab53-c28d-4fed-80f3-92d3f975aac9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9bee001a-83cd-4866-ab86-741ffa623515" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *washamuru 
\entryTyp root 
\gENG backbone 
\gSPN columna.vertebr 
\e *washamuru 
\c N0 
\ach washamuru 
\akh washamuru 
\acl washamuru / _# 
\acl washamuru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl washamuro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl washamuru / _# 
\akl washamuru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl washamuro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame washamuru</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="9c459cd2-2eb2-4a18-bdde-eeaaae6be022" ownerguid="71fef8c1-59e0-413a-9742-0fb1a9c09d01"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="9c46a35b-0a14-45ee-920e-b4c7a127dadb" ownerguid="4cd2b299-6eef-4173-a992-868d014b802b"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9c492694-11e0-4915-aca7-f921357b70c6" ownerguid="e0a8e1d9-c43e-4092-a8dc-476a3417924e"> -<ExampleWords> -<AUni ws="en">your morale rises</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to feeling more confident?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9c49e93f-1d5f-438b-b26a-e6291b0731a5" ownerguid="51fbf9d6-8b9e-4f92-9cf0-02fa37a690c7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9c4c30f8-dd70-4d87-84b1-8e9c58eda616" ownerguid="f29dccae-1654-4eb7-8aae-04f7df4fe90c"> -<ExampleWords> -<AUni ws="en">suitability, suitableness, fit (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the quality of being proper?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9c4f5945-303f-4528-95cf-542c3c14e648" ownerguid="9351d5b6-5a87-422a-9e82-ca6a0bacd3e9"> -<ExampleWords> -<AUni ws="en">calming influence, tranquilizer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something that causes someone to feel calm?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9c4f821e-2dd3-4981-a024-96ba3c7ee477"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pu:ta</AUni> -<AUni ws="qvm-x-acl">pu:ta</AUni> -<AUni ws="qvm-x-akh">pu:ta</AUni> -<AUni ws="qvm-x-akl">pu:ta</AUni> -<AUni ws="qvm-x-ame">pu:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+puta</AUni> -<AUni ws="qvm-x-acl">+puta</AUni> -<AUni ws="qvm-x-akh">+puta</AUni> -<AUni ws="qvm-x-akl">+puta</AUni> -<AUni ws="qvm-x-ame">+puta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.420" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a4b1c6e5-45df-4fcc-b35a-f5a4a27dc69d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+puta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8fa41a44-b4ad-4489-be15-79555b77b44d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="84ab146b-b10b-4290-b315-082cd4388c9c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +puta 
\entryTyp root 
\gENG prostitute 
\gSPN ramera 
\e +puta 
\c N0 
\ach pu:ta 
\akh pu:ta 
\acl pu:ta 
\akl pu:ta 
\ame pu:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="9c52c588-223a-4efc-aa79-e7d964722c57" ownerguid="427842fe-e98f-4e25-9720-00122ce5b5e9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wow!</AUni> -<AUni ws="es">ay!</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7c9bdadd-8bb1-412a-a2d5-7e0c4c993c16" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="9c544b4a-3280-4962-aa7a-95cfe1a08a98" ownerguid="fc4253b4-2d55-44b2-8a72-7b7ecc26bf51"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">discipline</AUni> -<AUni ws="es">disciplinar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b30d77fd-a9b3-4e0f-98fe-5880a3b1192e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="9c5524e4-e0dd-4d3c-9f72-0d1be7e50ce1" ownerguid="78e69fe7-3b10-4c63-978c-ad8026cd9808"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="9c594a4a-2c7a-44e7-9b53-0261a0190024" ownerguid="1ebdec50-63b7-4640-975d-4a46e9e1d7f1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="0bd85a5f-898f-4aa5-ae03-c17a32de4cac" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="5f305fc9-a07c-4c6a-8602-2d49ae586f86" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="9c59fe93-dd0a-4266-b63b-1f29b128253a" ownerguid="14ec6de4-9fb8-49e9-9b25-4970be64f86a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 27.17 Runa mayiquita tantyatserga fiërruta lïmanawan afilagnogmi caycanqui.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="9c5b2be3-4ac4-4981-aa97-eae8592e85e2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fastidia</AUni> -<AUni ws="qvm-x-acl">fastidia</AUni> -<AUni ws="qvm-x-akh">fastidia</AUni> -<AUni ws="qvm-x-akl">fastidia</AUni> -<AUni ws="qvm-x-ame">fastidia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fastidiar</AUni> -<AUni ws="qvm-x-acl">+fastidiar</AUni> -<AUni ws="qvm-x-akh">+fastidiar</AUni> -<AUni ws="qvm-x-akl">+fastidiar</AUni> -<AUni ws="qvm-x-ame">+fastidiar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.536" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ef61ca6a-e07d-4903-a158-a57daf18dac6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fastidiar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8f922a1a-0c7c-4a6b-bd36-04a88aeaceeb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e4b9e862-57c6-430f-b843-99d19d7357ae" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fastidiar 
\entryTyp root 
\gENG bother 
\gSPN fastidiar 
\e +fastidiar 
\c V2 
\ach fastidia 
\akh fastidia 
\acl fastidia 
\akl fastidia 
\ame fastidia</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9c5ca6d7-ec43-40de-a0e3-6d823370b5ee" ownerguid="2933a9c1-aa62-46fb-a03c-68aed7fae9b7"> -<ExampleWords> -<AUni ws="en">burn something</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a fire burning something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9c5d5f3a-51c2-4945-b1c5-d59421434b75"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pale:ta</AUni> -<AUni ws="qvm-x-acl">pale:ta</AUni> -<AUni ws="qvm-x-akh">pale:ta</AUni> -<AUni ws="qvm-x-akl">pale:ta</AUni> -<AUni ws="qvm-x-ame">pale:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+paleta</AUni> -<AUni ws="qvm-x-acl">+paleta</AUni> -<AUni ws="qvm-x-akh">+paleta</AUni> -<AUni ws="qvm-x-akl">+paleta</AUni> -<AUni ws="qvm-x-ame">+paleta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.669" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="12de2247-1736-40b4-8548-f23c500678fe" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+paleta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eab6d87d-add6-4e60-a42a-e37d71d5fcf1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e328d0ff-260e-4a0a-82c7-af8f22917984" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +paleta 
\entryTyp root 
\gENG 
\gSPN 
\e +paleta 
\c N0 
\ach pale:ta 
\akh pale:ta 
\acl pale:ta 
\akl pale:ta 
\ame pale:ta 
\i 2CH 4.11 Tsaynogpis Hiramga rurargan mancacunata, palëtacunata y tazoncunata.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="9c62fcd6-d45e-4e5e-bf16-b6e0b6fcf86d" ownerguid="0bd1ff14-0f91-4144-8ccc-ae374620d493"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="9c639758-c7dd-4378-95c5-4d08957b938c" ownerguid="60ba31b6-c83e-4054-9d5f-041f5e79b48d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">salchicha</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4df8ade0-9734-4525-b518-f83eb26fb843" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="9c695b1e-953b-4888-9410-414a87138011" ownerguid="2bea0d64-fca6-4864-a4d9-30eeb68fc280"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="9c6def39-3de7-45e5-8922-830f12a5fc93" ownerguid="3787b076-8bcc-4676-b78b-feef69c28bdc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pair</AUni> -<AUni ws="es">par</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ee292d37-91a5-4dfa-85dd-5434ea93c0a7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="9c6f35e0-4a16-4a5e-8b0e-c165146b2d5b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cre:ma</AUni> -<AUni ws="qvm-x-acl">cre:ma</AUni> -<AUni ws="qvm-x-akh">cre:ma</AUni> -<AUni ws="qvm-x-akl">cre:ma</AUni> -<AUni ws="qvm-x-ame">cre:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+crema</AUni> -<AUni ws="qvm-x-acl">+crema</AUni> -<AUni ws="qvm-x-akh">+crema</AUni> -<AUni ws="qvm-x-akl">+crema</AUni> -<AUni ws="qvm-x-ame">+crema</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.211" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f2356040-70dd-43ca-a741-b211428c1d6d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+crema</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e9a71e35-9780-4d40-9961-4125d9513bb0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1c7a684e-ba11-41e8-a415-be5b1962dba8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +crema 
\entryTyp root 
\gENG 
\gSPN 
\e +crema 
\c N0 
\ach cre:ma 
\akh cre:ma 
\acl cre:ma 
\akl cre:ma 
\ame cre:ma</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="9c6f7a28-8912-4d0b-ac82-c8dfa7d5ca79" ownerguid="f7422014-f252-4852-91df-3743c9e88638"> -<Form> -<AUni ws="qvm-x-ach">barätu</AUni> -<AUni ws="qvm-x-acl">barätu; barätu; baräto</AUni> -<AUni ws="qvm-x-akh">barätu</AUni> -<AUni ws="qvm-x-akl">barätu; barätu; baräto</AUni> -<AUni ws="qvm-x-ame">barätu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="9c6f7f95-28ea-413e-b424-01bb57be222a" ownerguid="e5a2589b-82cf-440a-a7f9-f546198f169b"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="9c6f951d-f11e-4d8a-878b-d1cd91242e46" ownerguid="18290e88-b731-466a-a69f-aefda0747274"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">peor</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">peor</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">peor</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">peor</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">peor</Run> -</AStr> -</Form> -<Morph> -<objsur guid="bf12cbfa-a6bf-476e-bf3a-ca38e159a523" t="r" /> -</Morph> -<Msa> -<objsur guid="b1bdfbba-bc97-4a7b-93c3-2dd9ae94b147" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="9c7198df-3bf1-4a1f-82a3-0287ef370c5c" ownerguid="45d867c7-8496-4c92-bb41-b7db5db47717"> -<ExampleWords> -<AUni ws="en">fatter, fattest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to being fatter than another person?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9c741043-0a48-40d1-8ba3-bb9c57d036a5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">putsca</AUni> -<AUni ws="qvm-x-acl">putsca</AUni> -<AUni ws="qvm-x-akh">putska</AUni> -<AUni ws="qvm-x-akl">putska</AUni> -<AUni ws="qvm-x-ame">putska</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puchka.n</AUni> -<AUni ws="qvm-x-acl">*puchka.n</AUni> -<AUni ws="qvm-x-akh">*puchka.n</AUni> -<AUni ws="qvm-x-akl">*puchka.n</AUni> -<AUni ws="qvm-x-ame">*puchka.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.970" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a361452d-8e77-4e2c-a0e4-ad73d6fcaf2a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puchka.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="445d2d3f-807f-4be1-8657-65e9869df12c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ea0b9c60-5989-4b63-b28a-c6f713f84d7d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puchka.n 
\entryTyp root 
\gENG spindle 
\gSPN huso 
\e *puchka.n 
\c N0 
\ach putsca 
\akh putska 
\acl putsca 
\akl putska 
\ame putska</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9c76136f-451c-4be0-ac6e-f79e45e19f3c" ownerguid="a894d991-d5da-45a6-9c62-009133257f36"> -<ExampleWords> -<AUni ws="en">pale, flushed, red, dark (circles under the eyes), spot, rash</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the skin changing color due to illness?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9c7809d7-018a-4b71-9843-3481fd7267be" ownerguid="edeb9458-3bdb-4d14-aaa1-6eb457307b9c"> -<ExampleWords> -<AUni ws="en">duty, responsibility, obligation, onus, requirement</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something a person should do?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9c788538-1f0a-4f5b-a13f-2d0d9e53bd69" ownerguid="d4d7d75f-f9b1-498f-b2d8-55fb72e04044"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="9c79d8c5-65ef-4def-99e4-c4040dd65a3c" ownerguid="9a9b1081-67e4-4177-82a1-a6df6dca0db9"> -<Form> -<AUni ws="qvm-x-ach">chuscu</AUni> -<AUni ws="qvm-x-acl">chuscu; chuscu; chusco</AUni> -<AUni ws="qvm-x-akh">chusku</AUni> -<AUni ws="qvm-x-akl">chusku; chusku; chusko</AUni> -<AUni ws="qvm-x-ame">chusku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="9c7b4917-a0dd-4710-b73d-2e3146f89891" ownerguid="2d3615a7-d19a-4180-81b7-67d5e2072960"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="9c7ccdd8-8f55-40af-bb5a-45ac0b3e1a3e" ownerguid="3a9da652-d75f-40dc-8b95-e314d9e38437"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="9c84b0d7-347a-41f4-8777-e19188698650" ownerguid="3c63967b-a6aa-4150-86ca-17f016d2dffe"> -<Form> -<AUni ws="qvm-x-ach">suedra</AUni> -<AUni ws="qvm-x-acl">suedra</AUni> -<AUni ws="qvm-x-akh">suedra</AUni> -<AUni ws="qvm-x-akl">suedra</AUni> -<AUni ws="qvm-x-ame">suedra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9c85127f-d801-4f5a-859f-53aaa38a0c91" ownerguid="2470ad05-636e-4c85-96ab-cd880da58741"> -<ExampleWords> -<AUni ws="en">sect, denomination, party</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a group within a religion?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="9c860c71-c009-4e8f-8c01-8183ae852138" ownerguid="27b34c00-3d63-4d25-bea6-14002f31108a"> -<Form> -<AUni ws="qvm-x-ach">väli</AUni> -<AUni ws="qvm-x-acl">väli; väle</AUni> -<AUni ws="qvm-x-akh">väli</AUni> -<AUni ws="qvm-x-akl">väli; väle</AUni> -<AUni ws="qvm-x-ame">väli</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="9c876278-ade9-48e6-adae-1d8e1700d60f" ownerguid="1e57be76-81b2-4f82-ad26-e1a853a85acc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hedgehog</AUni> -<AUni ws="es">puercoespín</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="58d7f0a7-260a-4928-a20b-d23cba55ddce" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9c89f143-2c5b-4fc8-bf51-726417766b7b" ownerguid="b6686c7c-39de-40b5-adee-67fc7dc54374"> -<ExampleWords> -<AUni ws="en">one hundred, two hundred</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) multiples of one hundred</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="9c8b3760-f3df-43a2-96e5-c4809dc2d51e"> -<Analyses> -<objsur guid="67b648fc-5317-4a74-8f22-30e8b1b34d51" t="o" /> -</Analyses> -<Checksum val="-183182919" /> -<Form> -<AUni ws="qvm-x-akh">kutimushqä</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="9c8b836a-5522-4133-afe7-193c0c524eeb" ownerguid="8fdbb94a-55bf-4afc-9983-f6b33312b1b7"> -<Form> -<AUni ws="qvm-x-ach">tsanca</AUni> -<AUni ws="qvm-x-acl">tsanca</AUni> -<AUni ws="qvm-x-akh">tsanka</AUni> -<AUni ws="qvm-x-akl">tsanka</AUni> -<AUni ws="qvm-x-ame">tsanka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="9c8dbd05-3e9c-4864-a366-d6c1de042404" ownerguid="0618b32f-755c-417d-bbf8-2e8104f74e65"> -<Form> -<AUni ws="qvm-x-ach">balay</AUni> -<AUni ws="qvm-x-acl">balay</AUni> -<AUni ws="qvm-x-akh">balay</AUni> -<AUni ws="qvm-x-akl">balay</AUni> -<AUni ws="qvm-x-ame">balay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="9c8de31e-254a-4d62-bbe9-63ccdc1ed424" ownerguid="e533682e-3059-471e-a3e8-9542c3f6d84b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">white.haired</AUni> -<AUni ws="es">pelo.blanco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bf05e96a-bef1-44b4-ad38-173d88bf25d4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9c8fc636-f926-41cc-a098-bf31d9ce1912" ownerguid="d01f1c51-522e-4b35-81b3-00577dbfa3bd"> -<ExampleWords> -<AUni ws="en">dark, deep, rich</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is a dark color?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="9c8fff0f-e5ba-44b8-af07-3efba0bf8cb4" ownerguid="3a24aece-a859-435c-bad6-99ac68e3414d"> -<Form> -<AUni ws="qvm-x-ach">pläya</AUni> -<AUni ws="qvm-x-acl">pläya</AUni> -<AUni ws="qvm-x-akh">pläya</AUni> -<AUni ws="qvm-x-akl">pläya</AUni> -<AUni ws="qvm-x-ame">pläya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9c93bf5c-9f42-4c39-9f5d-b175f8286777" ownerguid="d117aa22-3f18-47c4-9683-51ecf1dc7134"> -<ExampleWords> -<AUni ws="en">log, stump, grass trimmings, compost, pile of leaves, straw, hay</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(21) What words are used of plants when they have been cut down?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9c97e309-1ba5-43cf-85ef-27c6aba6f306" ownerguid="d25f7907-091e-4cf7-bd8c-bdb97278b616"> -<ExampleWords> -<AUni ws="en">light hit, tap, knock</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe hitting something with not much force?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9c9b4dfa-be79-44f1-969e-8bba8e202da1" ownerguid="e9cafabe-f0f7-4142-a6f6-d1c94bdc4b5c"> -<ExampleWords> -<AUni ws="en">emptied, depleted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that has been made empty?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9ca059b6-63fe-4cdd-b75e-27f773c206d1" ownerguid="0e88ebaa-ae1c-422f-baed-81b818bc79ed"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">drip</AUni> -<AUni ws="es">gotear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c87f1998-c67c-4fba-8681-7c243672d8f8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="9ca7ec49-017b-4dbe-b1ff-47cf8a2beb46" ownerguid="5e587dd9-1f34-4440-b67f-3cb6fcbb18f5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cord</AUni> -<AUni ws="es">cuerda</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bf036abf-6265-4e57-a5f2-4bf30b0d2d9d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="9ca837a5-9f76-4d02-b96c-8a9deedea996" ownerguid="243da013-7072-4095-b32f-b46a0b2fc109"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="9ca98d4b-2eb4-4e19-8f40-55f5ea851c1e"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">ruwakuykulä̈</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="9cac0b96-e71a-4150-a499-a2d8428ea667" ownerguid="2c6bcf05-4f1d-4e8a-af5a-0a6792e378fe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="e4ae0858-0f1e-433d-b618-4c746a50a74a" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">frog</AUni> -<AUni ws="es">rana</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e55b9c5f-0d3d-44bd-aeb5-1849f9f15109" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="9cac374d-be43-4ea2-8095-c690128fe4fb" ownerguid="95b3bcd3-a064-4cf0-b43d-848dc15ed134"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Wishqa jagchisyätsimashga.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="9cae4ee3-03cf-46f7-9475-21d66c93ae04" ownerguid="32125c5f-d69a-442f-ba66-6277ec0a3b15"> -<Abbreviation> -<AUni ws="en">5.2.3.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.317" /> -<DateModified val="2022-9-23 16:55:8.317" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to food from fruit.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>3D Fruit Parts of Plants</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Food from fruit</AUni> -</Name> -<Questions> -<objsur guid="02fbc9be-4397-4bf4-8399-fc5a03966ece" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="9caeb05a-19bf-4b03-b1ec-555c4dcb7071" ownerguid="8043d3ee-dc8d-4e02-b14b-2c6916bcc67d"> -<Form> -<AUni ws="qvm-x-ach">munti</AUni> -<AUni ws="qvm-x-acl">munti; munti; munte</AUni> -<AUni ws="qvm-x-akh">munti</AUni> -<AUni ws="qvm-x-akl">munti; munti; munte</AUni> -<AUni ws="qvm-x-ame">munti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="9cafb420-1105-4825-99d4-0fab3bca82f4" ownerguid="181d4c04-9b7f-4c9b-b752-45c2e360773a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="5524a85c-0fa3-49d2-8f89-a97330bfa12a" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="783b8e9c-2591-42bd-aef3-63e74126e07a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="9cb109f8-fb2f-4d4b-9b14-e06f93fb339a" ownerguid="2ed507df-d454-4a95-8c6a-3db0c525e8bc"> -<Form> -<AUni ws="qvm-x-ach">barril</AUni> -<AUni ws="qvm-x-acl">barril; barril; barrel</AUni> -<AUni ws="qvm-x-akh">barril</AUni> -<AUni ws="qvm-x-akl">barril; barril; barrel</AUni> -<AUni ws="qvm-x-ame">barril</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="9cb14f15-a446-499c-bec2-a406938aecc9" ownerguid="2fece058-54b0-4d24-8938-4fa894a75434"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mika</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d7a52586-e3cb-47a4-bb0f-95c98b351afd" t="r" /> -</Morph> -<Msa> -<objsur guid="f69667c3-a01d-49bd-8565-d45a284be800" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="9cb488ec-6ea3-43c5-8ca6-e97a3083a5c8" ownerguid="42b520b9-536e-40ec-b03b-8903f4fc43d3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">track</AUni> -<AUni ws="es">huella</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d59affa1-8aeb-4005-b720-97ce31812489" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9cb52842-c4ea-4598-af46-757bfb7368c2" ownerguid="742996cd-b87f-40a8-bdb3-dba74219bd73"> -<ExampleWords> -<AUni ws="en">thermometer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What things do people use to measure how hot something is?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="9cb5734b-4164-4483-a0a0-dd948cbb3318" ownerguid="802b5538-85de-4365-bdd1-3bb80907c724"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JER 5.27 Jaulacho pichiwchancacuna atsca cashgannogmi wayincunachöpis suwacushgancuna atsca caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="9cb6b515-d2ae-4da3-8f14-ff90bdeb3710" ownerguid="d59c604b-59d7-4f2c-a2c0-3e3961802abb"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9cb961a3-233a-4558-aba8-974d3e0bd8b7" ownerguid="721e2ee8-7ea5-4d17-94cc-d77d8e92bd27"> -<ExampleWords> -<AUni ws="en">good, well-behaved, well-brought up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe a child who is polite?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9cbbcc31-f29b-4890-aeda-c46c1ed31306" ownerguid="b43fae8e-6b19-42ed-98cd-d363174b9cf8"> -<ExampleWords> -<AUni ws="en">smaller, smallest, littler, littlest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to being smaller than another thing?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9cbe80db-c38c-4ef2-83b9-3ca21c0be1f9" ownerguid="44003c2e-c9c2-42c8-9ac1-8b40c11ba7f4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="9cbee5a5-220b-4f42-bf5b-4aebcd099d9b" ownerguid="10d5870a-afb3-45d9-b12a-c7d1eb907007"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wolf</AUni> -<AUni ws="es">lobo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d7707ab1-ec80-4226-a6a8-9e9333232ac1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9cc1e05b-5e6c-4601-ab9c-2cb62f0a8170" ownerguid="1f608e18-958e-4bb3-a977-04879fb5acd5"> -<ExampleWords> -<AUni ws="en">beef (cow), mutton (sheep), venison (deer)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of animals are eaten?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9cc23cf5-89f7-4304-b7be-1609a23682d4" ownerguid="448675cc-a73a-4a52-9228-bd56c7378c89"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gnaw</AUni> -<AUni ws="es">dentar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="971c55d8-d8bf-4d9a-9f06-8ac5f85d753e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9cc33bb4-8e3f-4f12-84b7-d26dcdb93eeb" ownerguid="7981a8e1-cf0b-44a0-9de4-12160b2f201d"> -<ExampleWords> -<AUni ws="en">land, property, piece of property, plot, section, estate, site, building site</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the land that a person owns?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="9cc5a0f7-7bf7-4b9b-be0d-a579e9e741fe" ownerguid="e7c1521c-60de-4787-9046-6842754b08cb"> -<Form> -<AUni ws="qvm-x-ach">jäpa</AUni> -<AUni ws="qvm-x-acl">jäpa</AUni> -<AUni ws="qvm-x-akh">jäpa</AUni> -<AUni ws="qvm-x-akl">jäpa</AUni> -<AUni ws="qvm-x-ame">häpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9cc790b6-93a7-4ac8-a998-51d754f9f3e5" ownerguid="aaf9d375-f0a0-4c7b-bbf8-3c7ffd4f5a52"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">fast<est></Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">most, -est</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words express a superlative degree?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9ccb9ab6-99e7-43b9-a2a4-381aeb09ee62" ownerguid="242de55d-1982-4099-a98b-a71d991104a8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9ccc2904-90ac-434e-a91a-1010d0646f8e" ownerguid="0bbe1739-e0b4-442e-b69c-02a0ea20d790"> -<ExampleWords> -<AUni ws="en">rise to the surface, surface (v), float to the surface</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to coming to the surface of the water?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="9ccf6595-3c25-4473-bf78-bb4f0c464acd" ownerguid="9dca62a8-2127-46bd-87d1-6057b729c7c6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="9cd42dbd-a38d-444f-bae8-2a0b45fc1a74" ownerguid="f53eda70-9618-400b-b728-ede65f970090"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spread</AUni> -<AUni ws="es">ancho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5c5641c8-5277-4b84-8871-d34f4e4163bd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="9cd50dc7-a476-410c-b06c-3978b1b21176"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alama:las</AUni> -<AUni ws="qvm-x-acl">alama:las</AUni> -<AUni ws="qvm-x-akh">alama:las</AUni> -<AUni ws="qvm-x-akl">alama:las</AUni> -<AUni ws="qvm-x-ame">alama:las</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+a.la.malas</AUni> -<AUni ws="qvm-x-acl">+a.la.malas</AUni> -<AUni ws="qvm-x-akh">+a.la.malas</AUni> -<AUni ws="qvm-x-akl">+a.la.malas</AUni> -<AUni ws="qvm-x-ame">+a.la.malas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.920" /> -<DateModified val="2022-10-10 21:18:47.215" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bc6f67a4-c70f-4cdc-8a3d-fd4afad45e22" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+a.la.malas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8c9180c8-d2df-48c3-aa2c-da33986ce5a4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="efb8e028-ccd4-45a1-80f6-d4ce3805acea" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +a.la.malas 
\entryTyp root 
\gENG 
\gSPN 
\e +a.la.malas 
\c R0 
\mp +FinalC 
\ach alama:las 
\akh alama:las 
\acl alama:las 
\akl alama:las 
\ame alama:las 
\i AMO 2.12 Tsaynog acraptëpis gamcunaga nazareo runacunata alamälami vïnuta uputsishcanqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="9cd55063-3d43-467e-9ee0-12805d9bb1b5" ownerguid="179d5ce7-6875-4359-95b9-16fc79a1c4ad"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9cd65a41-9d6e-4d42-957c-1f5f93f48ddc" ownerguid="3be7e3fe-89d4-471a-92bd-8c70fcb146bb"> -<ExampleWords> -<AUni ws="en">sign language, sign (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a deaf person talking using their hands?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9cd7f456-ee3a-4af0-a813-ffd2830b3c6e" ownerguid="11a8085d-c69a-45e5-b97f-c18157752f07"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="9cda4ca7-7648-4fa7-910b-f5290d0346e0" ownerguid="d2adf6c6-1447-4289-897c-bc057ed3c203"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9cda97c5-684a-42d9-8523-4ef6a4fbcada" ownerguid="c345f278-91ff-463d-b9a6-8abac8a267eb"> -<ExampleWords> -<AUni ws="en">herb, grass, vine, aquatic, bulb, bulbous, briar, brier, burr, cactus, cane, creeper, cultivated, fern, flowering, gourd, reed, sod, sprawling, thorny, weed, wild</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What general types of small plants are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9cdb5977-cab6-416b-bdc4-cab0c7a4473d" ownerguid="aa0f165d-3013-4a0c-b68c-14ea317013f9"> -<ExampleWords> -<AUni ws="en">compose, write, arrange</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to composing music?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9ce02b92-f79a-4ed7-b03a-bd960c760b5d" ownerguid="51c2e2e4-438c-414b-bd15-773b664dd289"> -<ExampleWords> -<AUni ws="en">mercy, mercies, clemency, compassion, empathetic, forbearance, kindness, leniency, pity (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the act of having mercy?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9ce5e945-6932-4709-a90f-4c8e414b3214"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shata</AUni> -<AUni ws="qvm-x-acl">shata</AUni> -<AUni ws="qvm-x-akh">shata</AUni> -<AUni ws="qvm-x-akl">shata</AUni> -<AUni ws="qvm-x-ame">shata</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shata</AUni> -<AUni ws="qvm-x-acl">*shata</AUni> -<AUni ws="qvm-x-akh">*shata</AUni> -<AUni ws="qvm-x-akl">*shata</AUni> -<AUni ws="qvm-x-ame">*shata</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.551" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e580b8ca-8e51-47a3-8fcc-c42567ac1e16" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shata</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="51e2b33e-718a-4ad9-b769-a0e7306274df" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="98267c8e-acb0-4796-acea-d0e37a018348" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shata 
\entryTyp root 
\gENG brush 
\gSPN arbustal 
\e *shata 
\c N0 
\ach shata 
\akh shata 
\acl shata 
\akl shata 
\ame shata</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9ce6ed11-8c37-4d03-b398-4fc45d65332d" ownerguid="9bf21458-0acc-4d8d-ba9a-7b9fb6b8ee0b"> -<ExampleWords> -<AUni ws="en">hypocrite, pretender, actor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who says one thing but does something else?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9ce75616-4876-4061-b3ac-bd68b9f3fe66" ownerguid="f42416f1-2bb8-4790-a812-2cdc678e76f3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">separate</AUni> -<AUni ws="es">aparte</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="26b344ca-5de5-4040-bd1d-a2153442bc87" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="9ce94725-4ae2-4e86-84bc-620acdacb4bd" ownerguid="e196bb08-55f4-47dd-ae9e-75da0efaee04"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9ceaf87e-8fd3-403b-a00d-923c2c9801d2" ownerguid="e11d6360-6fa9-45a9-a23e-2252a301cf86"> -<ExampleWords> -<AUni ws="en">leaven, yeast, baking powder (sodium bicarbonate), rising agent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to leaven?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9ced4037-ba9a-4b83-8465-e6e15120d1da" ownerguid="ad7cc381-1dc6-4fc2-94a4-acd5bf7a11da"> -<ExampleWords> -<AUni ws="en">absolute, assurance, assured, can, certain, certainly, certitude, clear, decided, decisive, definite, doubtless, established, fixed, guaranteed, incalculable, incontestable, incontrovertible, indisputable, indubitable, ineluctable, inevitable, infallible, inescapable, inevitable, irrefragable, irrefutable, positive, really, set, settled, single-minded, sure, sureness, trustworthy, unarguable, unavoidable, undeniable, unequivocal, unmistakable, unquestionable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words indicate that something is certainly not true?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9cef332e-af02-4cb7-b98b-f00168f193d3" ownerguid="5966e182-2cab-444f-9c03-8c32a26b1dd5"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="9cef4229-fa1e-4cbc-92e7-f047d6e696a1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">macllu</AUni> -<AUni ws="qvm-x-acl">macllu; macllu; macllo</AUni> -<AUni ws="qvm-x-akh">makllu</AUni> -<AUni ws="qvm-x-akl">makllu; makllu; makllo</AUni> -<AUni ws="qvm-x-ame">makllu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*makllu</AUni> -<AUni ws="qvm-x-acl">*makllu</AUni> -<AUni ws="qvm-x-akh">*makllu</AUni> -<AUni ws="qvm-x-akl">*makllu</AUni> -<AUni ws="qvm-x-ame">*makllu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.265" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ecbe0559-6ca2-4827-80e9-e4326bc9060e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*makllu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a39484ac-b623-4d7e-9496-d7c97004a00d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d658f481-939b-4618-b47d-87d043a2b51c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *makllu 
\entryTyp root 
\gENG cripple 
\gSPN manco 
\e *makllu 
\c N0 
\ach macllu 
\akh makllu 
\acl macllu / _# 
\acl macllu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl macllo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl makllu / _# 
\akl makllu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl makllo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame makllu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9cef9bda-dd99-4d32-a5d3-49a152884651" ownerguid="c8c74ec6-3f7a-4b45-b0e9-399b97c4a800"> -<ExampleWords> -<AUni ws="en">free, freedman, liberated, freeborn, freeman</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a person who is free?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9cf244a3-639e-4aee-9ff6-8b0e95c7b7ad" ownerguid="0ede51d2-69bd-411e-97f9-da0d5118bbff"> -<ExampleWords> -<AUni ws="en">condemned man, convict, guilty party</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the person who is condemned?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9cf6dda8-3d00-4a39-9e3a-b1f5ba05b402" ownerguid="1983847b-17b5-4bb0-b459-074e0259659a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">front</AUni> -<AUni ws="es">frente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8ef2c278-fe87-4e16-ad8c-ab9ee5a4e086" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="9cfb58a8-8ccb-4ad7-8ffe-8318781beeb9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ranra</AUni> -<AUni ws="qvm-x-acl">ranra</AUni> -<AUni ws="qvm-x-akh">ranra</AUni> -<AUni ws="qvm-x-akl">ranra</AUni> -<AUni ws="qvm-x-ame">ranra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ranra.v</AUni> -<AUni ws="qvm-x-acl">*ranra.v</AUni> -<AUni ws="qvm-x-akh">*ranra.v</AUni> -<AUni ws="qvm-x-akl">*ranra.v</AUni> -<AUni ws="qvm-x-ame">*ranra.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.256" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a9e36fe6-3ef1-40d6-80ad-f0d55a094c35" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ranra.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="283ac82f-bbf3-4efd-a0bb-f45ab895903f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dfb96c36-e470-4ab7-b72c-75ea9c18d7c7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ranra.v 
\entryTyp root 
\gENG pile 
\gSPN amontonar 
\e *ranra.v 
\c V1 
\ach ranra 
\akh ranra 
\acl ranra 
\akl ranra 
\ame ranra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="9cfbb165-ae1f-427d-9412-8573117545f0" ownerguid="f15d7055-db7a-499a-932b-aafa1f228965"> -<Form> -<AUni ws="qvm-x-ach">pasya</AUni> -<AUni ws="qvm-x-acl">pasya</AUni> -<AUni ws="qvm-x-akh">pasya</AUni> -<AUni ws="qvm-x-akl">pasya</AUni> -<AUni ws="qvm-x-ame">pasya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="9cfc613a-248f-4ad2-bd57-93cad7f6c9ad" ownerguid="ed743f9d-97cd-4e6c-80dc-f5c1de2d836f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">väsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">väsu; väsu; väso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">väsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">väsu; väsu; väso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">väsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="03bb4a4f-52ba-47f0-b5ae-b3f38fbf03f9" t="r" /> -</Morph> -<Msa> -<objsur guid="043a5c84-4796-4aaa-ad72-80e60261194b" t="r" /> -</Msa> -<Sense> -<objsur guid="33576754-2962-46d1-b3be-0af1dbf5199f" t="r" /> -</Sense> -</rt> -<rt class="LexExampleSentence" guid="9cfdab9f-29ec-4bf5-9da6-adc0caa22f9b" ownerguid="f1eaedb7-cc06-4d24-899c-5ac0869d0838"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">AMO 2.13 Tsayno kapäkushqaykipitami töchi töchi cargashqa aywaykaq carrëta imatapis aqashqanno qamkunatapis ushakätsishayki.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="9cfe4c5a-80d4-4b31-ba89-79b2e3d28a1c" ownerguid="c5282457-be5f-4ce9-a802-91140cb0a22b"> -<Abbreviation> -<AUni ws="en">2.1.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the fingers and toes.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Finger, toe</AUni> -</Name> -<Questions> -<objsur guid="260fa75c-a744-4285-aa06-71499a63b3b9" t="o" /> -<objsur guid="82128387-615e-4174-a616-3ab9188815c1" t="o" /> -<objsur guid="8b5d2965-b035-40e7-b006-d72901125c25" t="o" /> -<objsur guid="fc6ac48a-8d80-4846-8742-cee319d67a65" t="o" /> -<objsur guid="221c314f-9888-49d3-b237-aae57c76dc0c" t="o" /> -<objsur guid="92a1708a-0d5b-471a-9ead-a18e92ee2a37" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="93de2257-8303-490d-b2fe-6d1d838b08c6" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="9cff6edc-9b12-4926-ae50-c3ef3cae55f6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">na</AUni> -<AUni ws="qvm-x-acl">na</AUni> -<AUni ws="qvm-x-akh">na</AUni> -<AUni ws="qvm-x-akl">na</AUni> -<AUni ws="qvm-x-ame">na</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.538" /> -<DateModified val="2022-10-15 16:7:5.337" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="3" /> -<LexemeForm> -<objsur guid="99b46deb-a91d-4222-a9fc-6c1a15fed4be" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">NOW</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a5b30965-e5c8-452a-9057-ed02c784d19b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a8a44bba-65e4-423e-aaaa-33197b8bda04" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx NOW 
\entryTyp suffix 
\gENG NOW 
\gSPN AHORA 
\e NOW 
\c N0/N0 V0/V0 R0/R0 ONSHEV/ONSHEV BN/BN 
\ach na 
\akh na 
\acl na 
\akl na 
\ame na 
\o 220 
\mcc NOW / ~_ OBJ 
\mcc NOW / ~_ JUST 3P 
\mcc NOW / ~_ NOW 
\mcc NOW / ~_ PLUR</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9d03d712-2c42-4027-9fab-06ff6c2c555e" ownerguid="c36131c3-b5e1-4aac-a7b5-7c9cfa1e8f74"> -<ExampleWords> -<AUni ws="en">goatherd</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What is a person called who takes care of goats?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9d098db5-6637-49b9-b3ca-ded5f7b76c3b" ownerguid="6bcaf8ff-3006-4246-847c-9673a999e808"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="9d09c9a9-d8dd-412f-8fbc-4ce5c64ad734" ownerguid="bd7ef33f-1485-4e23-adae-44c49cf33d36"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">manapis aycaglatami</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="9d112b14-56c8-41a2-9f0f-71b535608344" ownerguid="ba70183c-1698-489a-a897-4fef6500fdd3"> -<Form> -<AUni ws="qvm-x-ach">cordón; cordon</AUni> -<AUni ws="qvm-x-acl">cordón; cordon</AUni> -<AUni ws="qvm-x-akh">cordón; cordon</AUni> -<AUni ws="qvm-x-akl">cordón; cordon</AUni> -<AUni ws="qvm-x-ame">cordón; cordon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="9d11c60d-9f91-4694-a4c6-a0b82a5f3182"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">achya:</AUni> -<AUni ws="qvm-x-acl">achya:</AUni> -<AUni ws="qvm-x-akh">achya:</AUni> -<AUni ws="qvm-x-akl">achya:</AUni> -<AUni ws="qvm-x-ame">achya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*achiya:</AUni> -<AUni ws="qvm-x-acl">*achiya:</AUni> -<AUni ws="qvm-x-akh">*achiya:</AUni> -<AUni ws="qvm-x-akl">*achiya:</AUni> -<AUni ws="qvm-x-ame">*achiya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.639" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c701b419-90d0-4720-ba29-c4f7dbaa8845" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*achiya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7e9ccad5-c72e-4755-928f-a401329470a4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dfdcec0f-ae95-4b61-9b07-007972752aa7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *achiya: 
\entryTyp root 
\gENG indeed 
\gSPN claro 
\e *achiya: 
\c NOSUFF 
\mp +FinalLength 
\ach achya: 
\akh achya: 
\acl achya: 
\akl achya: 
\ame achya:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9d1228b1-3fc3-4a70-8986-64e17e60a1f6" ownerguid="706cb38c-9aca-4e2f-9653-d9562f07331c"> -<ExampleWords> -<AUni ws="en">pattern, design, motif, patterning, markings</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a pattern?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9d19770e-c9ee-43da-9e11-bb1376304747" ownerguid="b632b00b-b03f-4549-8e02-6402c05a4f06"> -<ExampleWords> -<AUni ws="en">obedient, law-abiding, submissive, compliant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a person who obeys?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9d1bf999-3505-4ca3-ad94-fabaf1bd2ca8" ownerguid="dc1a2c6f-1b32-4631-8823-36dacc8cb7bb"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">We got up before <dawn>, in order to get an early start.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">dawn, sunrise, sunup, daybreak, cockcrow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the time when the sun rises?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9d1c0448-4e52-4dd4-ba77-a2824d57dedd" ownerguid="6fbe39fb-a4cb-4fcf-830b-8875fd4324e0"> -<ExampleWords> -<AUni ws="en">bossy, coercive, pushy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe someone who forces people to do things?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="9d1e38af-2578-47e8-a7d5-b8b0ca965de9" ownerguid="789acf1f-932f-4e95-b9dd-23422aea34da"> -<Form> -<AUni ws="qvm-x-ach">envidiösu</AUni> -<AUni ws="qvm-x-acl">envidiösu; envidiösu; envidiöso</AUni> -<AUni ws="qvm-x-akh">envidiösu</AUni> -<AUni ws="qvm-x-akl">envidiösu; envidiösu; envidiöso</AUni> -<AUni ws="qvm-x-ame">envidiösu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="9d1e622c-fec9-4647-8e23-ee5de3414ef7" ownerguid="66db6d18-e83f-4b5c-bc95-aee41959173a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9d20dc32-0b5a-49e1-862b-ad559f5087de" ownerguid="ca91e41a-81c3-4c96-87e6-f67477fcd686"> -<ExampleWords> -<AUni ws="en">teach, train, upbringing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to teaching and training a child?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9d216f24-32de-4ff4-821e-4c31294215e1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ayapa</AUni> -<AUni ws="qvm-x-acl">ayapa</AUni> -<AUni ws="qvm-x-akh">ayapa</AUni> -<AUni ws="qvm-x-akl">ayapa</AUni> -<AUni ws="qvm-x-ame">ayapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ayapa</AUni> -<AUni ws="qvm-x-acl">*ayapa</AUni> -<AUni ws="qvm-x-akh">*ayapa</AUni> -<AUni ws="qvm-x-akl">*ayapa</AUni> -<AUni ws="qvm-x-ame">*ayapa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.900" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c4532527-88da-4e60-8770-1b7a52bb0d37" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ayapa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="00e2752a-00fa-416c-aee4-c41986c35cf9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="023fca23-1e4e-4b84-8399-b8bc433901a7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ayapa 
\entryTyp root 
\gENG 
\gSPN dar.en.la.mano.para.que.tenga.con.mati.o.con.plato.o.con.manca 
\e *ayapa 
\c V1 
\ach ayapa 
\akh ayapa 
\acl ayapa 
\akl ayapa 
\ame ayapa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="9d2379c4-fbd2-4f66-a7df-13e7ac5379ac" ownerguid="69c031e3-024d-4201-a0a5-2ef4003f3e80"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="9d381ac9-c24a-48ae-94fb-e1e27a0e5339" ownerguid="98cc8439-9c18-453d-8383-45488ba4b606"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9d3e057c-b83d-45a4-b242-4fbbf9b9d80c" ownerguid="f4b18e9c-b465-4763-ba79-d7eed2cebcfa"> -<ExampleWords> -<AUni ws="en">move sideways, make room for, move aside, move out of the way, get out of the way, move over, budge, shift</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving sideways?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9d3f2d66-0196-4b7c-b876-c25240149dab" ownerguid="696ba84e-5ae8-414d-8bc9-2564a77257ad" /> -<rt class="WfiAnalysis" guid="9d41b1a8-bdbd-4d42-9872-12eaaf19a72b" ownerguid="9f486af7-3fe6-4405-850c-5dff8b0542a5"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="b3282635-a1d0-4681-99ab-0f7e72bd68b0" t="o" /> -</MorphBundles> -</rt> -<rt class="CmSemanticDomain" guid="9d428e57-e125-4575-b165-9bc6fd4ec507" ownerguid="5ea9301a-9906-4e81-97cf-48ee95a54c63"> -<Abbreviation> -<AUni ws="en">3.3.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to persuading someone--to try to get someone to do something or to change his thinking.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33B' Urge, Persuade; 33H' Recommend, Propose</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Persuade</AUni> -</Name> -<Questions> -<objsur guid="e602da0d-9311-4834-accf-1ea20c4298f7" t="o" /> -<objsur guid="190561bf-aa8c-4a33-985b-cd1592759912" t="o" /> -<objsur guid="2a2ba3b8-9bb9-4d40-891e-abdc052eb9c6" t="o" /> -<objsur guid="63c01891-2f2d-4083-9d98-8dfa53fbc5e3" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="5ea9301a-9906-4e81-97cf-48ee95a54c63" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="9d489a44-a00f-4f7b-9cda-20fb028b287e" ownerguid="ad3705bb-2ad8-4e24-b9f2-19600333ce33"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9d498f67-84ff-4309-9477-3615dcb41c79" ownerguid="c2dbe83a-d638-45ac-a6d5-5f041b9dde71"> -<ExampleWords> -<AUni ws="en">disable, handicap (v), cripple, paralyze, maim, mutilate, disfigure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to disabling someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9d4ab0e2-c0e8-4131-97dc-1ae62b067081" ownerguid="9063dafc-4004-43eb-9956-0c946e22d99c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="9d4bc93a-7272-4956-b4de-028551f6563b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">defiendi</AUni> -<AUni ws="qvm-x-acl">defiendi; defiende</AUni> -<AUni ws="qvm-x-akh">defiendi</AUni> -<AUni ws="qvm-x-akl">defiendi; defiende</AUni> -<AUni ws="qvm-x-ame">defiendi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+defender</AUni> -<AUni ws="qvm-x-acl">+defender</AUni> -<AUni ws="qvm-x-akh">+defender</AUni> -<AUni ws="qvm-x-akl">+defender</AUni> -<AUni ws="qvm-x-ame">+defender</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.374" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="19e292b8-e04f-4861-a770-83d13ff20f02" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+defender</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6d5114fc-a740-4a54-a028-5b5d64b95da2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ded2feb5-71a3-4661-9f20-28dae5b143cf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +defender 
\entryTyp root 
\gENG defend 
\gSPN defender 
\e +defender 
\c V2 
\mp +FinalI 
\ach defiendi 
\akh defiendi 
\acl defiendi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl defiende +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl defiendi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl defiende +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame defiendi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9d4be01a-c41c-4bec-893f-91da75044724" ownerguid="0c7c33f2-4cfa-42df-84bb-19fc915a72bd"> -<ExampleWords> -<AUni ws="en">copy (v), make a copy of, duplicate, photocopy, reduplicate, reproduce, clone, replicate, triplicate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to copying something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9d4d3c53-316e-415b-b89f-179e21ba015a" ownerguid="0ccab162-fbb3-4a29-86d0-4a5432e001b3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">peel.skin</AUni> -<AUni ws="es">sacar.piel</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fa821a33-0117-4a06-9629-47d403bce6f7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="9d4f39c5-d449-44b1-8513-35d647008f6d" ownerguid="907b24b6-7dcc-428e-afec-86cb20362d4a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">na</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">na</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">na</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">na</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">na</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38151a50-9c63-4a70-8bbb-e5cfc5339ad5" t="r" /> -</Morph> -<Msa> -<objsur guid="3afae7ea-b6f9-4990-9b80-c355228ee832" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="9d4fa434-b6ca-4986-970e-6d65639185f0" ownerguid="8a36cea6-a15e-4086-8781-2e8d159afe61"> -<Form> -<AUni ws="qvm-x-ach">gongur</AUni> -<AUni ws="qvm-x-acl">gongur</AUni> -<AUni ws="qvm-x-akh">qonqur</AUni> -<AUni ws="qvm-x-akl">qonqur</AUni> -<AUni ws="qvm-x-ame">qunqur</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="9d584c28-b17b-436a-9a66-e993a288099e" ownerguid="23dc662b-3b24-4546-8b1c-14d8c041813c"> -<Form> -<AUni ws="qvm-x-ach">ishanca</AUni> -<AUni ws="qvm-x-acl">ishanca</AUni> -<AUni ws="qvm-x-akh">ishanka</AUni> -<AUni ws="qvm-x-akl">ishanka</AUni> -<AUni ws="qvm-x-ame">ishanka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9d58827b-4784-4ebd-84ef-f3a530f49459" ownerguid="aba3f7f1-9e13-4b48-acbb-3bf6d6bfa0e8"> -<ExampleWords> -<AUni ws="en">ounce, pound, ton, milligram, centigram, decigram, gram, decagram, kilo, kilogram, metric ton, kiloton, megaton, atomic weight, carat, dram, grain, hundredweight, pennyweight, stone, talent, gross weight, net weight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a unit of weight?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9d5a8d16-3780-4701-9b22-49e11a2270b9" ownerguid="93b8bd61-137a-4ebc-b12f-52fa5d2b3ea4"> -<ExampleWords> -<AUni ws="en">whirlwind, tornado, twister, dust devil, funnel, waterspout</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a wind that moves in a circle?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="9d5b0469-8604-4eb3-8202-c7484bfae021" ownerguid="e22444ea-92b3-4abc-a341-69f01dfab3a4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -<Sense> -<objsur guid="98d1c6b4-6ec3-4d69-9169-c8e2a400e327" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="9d5b5ff9-89cc-4980-96d9-fc62391554a8" ownerguid="cbfdb722-1cab-4d70-8a3f-bbaf4c8ff5f0"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="9d6002dc-5501-4053-b5fd-d04f1e71726e" ownerguid="d88f62ce-1375-4ddb-a635-ff73b844d650"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ya</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ya</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ya</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ya</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ya</Run> -</AStr> -</Form> -<Morph> -<objsur guid="0266a2a0-8dee-41c8-9584-efdc790cb2f2" t="r" /> -</Morph> -</rt> -<rt class="LexEntry" guid="9d6126d3-6083-4451-8b5c-a28b09dfcad2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tucari</AUni> -<AUni ws="qvm-x-acl">tucari; tucare</AUni> -<AUni ws="qvm-x-akh">tucari</AUni> -<AUni ws="qvm-x-akl">tucari; tucare</AUni> -<AUni ws="qvm-x-ame">tucari</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tucari</AUni> -<AUni ws="qvm-x-acl">+tucari</AUni> -<AUni ws="qvm-x-akh">+tucari</AUni> -<AUni ws="qvm-x-akl">+tucari</AUni> -<AUni ws="qvm-x-ame">+tucari</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.967" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d260f0ce-9a86-468e-83c4-6238f06cdd46" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tucari</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0daa87e1-0842-4be2-9b40-aa852f6fb5d4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="33d07b34-7dcd-4b80-91c7-31b34213c724" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tucari 
\entryTyp root 
\gENG 
\gSPN 
\e +tucari 
\c V1 
\mp +FinalI 
\ach tucari 
\akh tucari 
\acl tucari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tucare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tucari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tucare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tucari</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="9d65bd85-877d-4efb-a896-2638c68b9fbd" ownerguid="e6132df9-8fc6-4d1d-8d11-2ebc9e7f7669"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">straw</AUni> -<AUni ws="es">icho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9730239c-9efe-49c9-b2cb-b2ee75558583" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="9d676b5c-7ba5-4d14-ac4a-778db749e05d" ownerguid="a8e4421f-7fb7-47c3-a610-8ac1928ffcc9"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Jdg 16.7 Tsaynog tapuptinmi Sansón caynog nergan: <<Flëchapag rurashga ganchis manarag tsaqueg wanuwan liyamaptin calpä manami canganatsu. Tsaynogpami waquin runanoglana ricacushag.>></Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="9d692411-05b2-4389-a28b-aaae01287a96" ownerguid="8c0b7413-3060-42cd-a005-318de8789f86"> -<Form> -<AUni ws="qvm-x-ach">milpu</AUni> -<AUni ws="qvm-x-acl">milpu; milpo</AUni> -<AUni ws="qvm-x-akh">milpu</AUni> -<AUni ws="qvm-x-akl">milpu; milpo</AUni> -<AUni ws="qvm-x-ame">milpu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="9d6a59fd-cf1b-4c66-86bc-9fb7b1bf4158" ownerguid="cb0e8865-afec-4259-839b-5ca760f571ec"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">president</AUni> -<AUni ws="es">presidente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="67540106-a01c-47a7-8379-709a22317a13" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="9d6ba00b-496b-41be-9ebb-d1f84755f671" ownerguid="59ef732b-1fd4-48ac-a9d1-504f16919adb"> -<Form> -<AUni ws="qvm-x-ach">declaración; declaracion</AUni> -<AUni ws="qvm-x-acl">declaración; declaracion</AUni> -<AUni ws="qvm-x-akh">declaración; declaracion</AUni> -<AUni ws="qvm-x-akl">declaración; declaracion</AUni> -<AUni ws="qvm-x-ame">declaración; declaracion</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9d6c4567-9ffc-4b01-a672-f36ed7f9108a" ownerguid="a9625460-7162-447c-b400-84fbc5744f1b"> -<ExampleWords> -<AUni ws="en">Goodbye. See you later. Have a good day.</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words and expressions are used when saying farewell?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9d6c5b27-1602-4270-b86e-d3d7f6dd7595" ownerguid="4153416a-784d-4f7c-a664-2640f7979a14"> -<ExampleWords> -<AUni ws="en">watershed, basin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to the area of land drained by a river?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="9d6cbe74-93d6-41fb-b7e2-cc30adb28187" ownerguid="12fe5f6c-7f98-47ba-936a-bcd1065c2db3"> -<Abbreviation> -<AUni ws="en">7.2.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to moving in an upward direction or to moving to a higher place.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15I Come/Go Onto; 15J Come/Go Up, Ascend</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Move up</AUni> -</Name> -<Questions> -<objsur guid="579647e2-a368-4435-8931-cca56ee66f70" t="o" /> -<objsur guid="e3c6dfe3-6e2d-484a-bbda-b8a94ce2f2b2" t="o" /> -<objsur guid="a9db2f20-5fed-4f5c-bd20-1f1597a1165a" t="o" /> -<objsur guid="2ceeb3e5-742c-4908-a79e-54e70483bfe5" t="o" /> -<objsur guid="8fb01575-dfd8-4294-8ed4-c6deb11422e7" t="o" /> -<objsur guid="fbe811ce-282f-48ab-8037-2c1dada77609" t="o" /> -<objsur guid="f467abed-5a03-49bd-b204-e03acfdb4a2e" t="o" /> -<objsur guid="5232bee6-2f1c-4d95-a04f-25aa6ee51c9b" t="o" /> -<objsur guid="89fcc009-77f3-4f69-93ec-f47b87e5221c" t="o" /> -<objsur guid="ecf44772-a5ae-47e3-bd85-65a4333c3178" t="o" /> -<objsur guid="6bbc57ff-4f83-4058-a10f-e721e6bfe4fb" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="9d6e31cf-4676-421a-8810-fee5263df8e0" ownerguid="34f3f19d-5a4c-4039-8aa2-4f311e7a7fb6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="9d6ec2d2-7588-4cd0-afe6-57293ba76227" ownerguid="8c7c953d-3c76-483f-a8b0-3a12bab0668b"> -<Form> -<AUni ws="qvm-x-ach">urunguy</AUni> -<AUni ws="qvm-x-acl">urunguy</AUni> -<AUni ws="qvm-x-akh">urunguy</AUni> -<AUni ws="qvm-x-akl">urunguy</AUni> -<AUni ws="qvm-x-ame">urunguy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="9d6f1c37-2f51-4a0e-9c6e-6d0573736272" ownerguid="c49b8038-b6c9-4a4e-90e4-ae79fe3a8398"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="9d72d02d-a64f-4a6d-b2ed-27aeff4e3e03" ownerguid="ca6f505d-6e7a-45b3-8d3d-d18a16ddc207"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="9d7587fd-593d-4056-a334-a4be5ab47e85" ownerguid="a285fdb1-f889-4804-bc36-beda9d57ec9a"> -<Form> -<AUni ws="qvm-x-ach">casta</AUni> -<AUni ws="qvm-x-acl">casta</AUni> -<AUni ws="qvm-x-akh">casta</AUni> -<AUni ws="qvm-x-akl">casta</AUni> -<AUni ws="qvm-x-ame">casta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="9d79be9a-f21e-4189-be39-779db79da027" ownerguid="bbb897b5-f09b-4263-9f81-826ca61084f1"> -<Abbreviation> -<AUni ws="en">5.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.337" /> -<DateModified val="2022-9-23 16:55:8.337" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to washing dishes.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Wash dishes</AUni> -</Name> -<Questions> -<objsur guid="fb1f1709-7fe0-40ae-8cdd-5d751ffe8553" t="o" /> -<objsur guid="ec20864a-95ca-44c3-8b18-02fb445f60cd" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="9d7e023d-b2f6-484a-b309-3fb0cea61b47" ownerguid="aea88426-5f10-4b18-9364-eee04437c4ee"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="9d7f2384-48bd-4993-a929-28ef2f70658b" ownerguid="0bd56d70-3a1c-41ae-a4d9-a79675ec55f9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="9d857fba-e4ab-4e1e-9f15-60e7308ea5f5" ownerguid="5d977783-a1f3-4de8-9889-032296f1818e"> -<Form> -<AUni ws="qvm-x-ach">jogu</AUni> -<AUni ws="qvm-x-acl">jogu; jogo</AUni> -<AUni ws="qvm-x-akh">joqu</AUni> -<AUni ws="qvm-x-akl">joqu; joqo</AUni> -<AUni ws="qvm-x-ame">huqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="9d865347-6656-4ab7-8613-bf2e8bc53aa7" ownerguid="32bebe7e-bdcc-4e40-8f0a-894cd6b26f25"> -<Abbreviation> -<AUni ws="en">2.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.47" /> -<DateModified val="2022-9-23 16:55:8.47" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to injuring someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>20B Harm, wound</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Injure</AUni> -</Name> -<OcmCodes> -<Uni>752 Bodily Injuries</Uni> -</OcmCodes> -<Questions> -<objsur guid="c4df2a8a-7fb7-40a1-bba4-d4fb8e50825e" t="o" /> -<objsur guid="db6e6a48-670d-4b5a-8bb5-953a2710014c" t="o" /> -<objsur guid="83facd36-1b6a-49e8-acb3-1f58d1dfe33a" t="o" /> -<objsur guid="3cb21869-33d6-432a-b81b-144527c0a079" t="o" /> -<objsur guid="221c98d6-17a0-432c-9e42-9cfd00aaf2ac" t="o" /> -<objsur guid="d158f682-1c52-4151-8da7-1518fc08c78a" t="o" /> -<objsur guid="777e3d53-b2c5-4e83-b751-4b62afae1555" t="o" /> -<objsur guid="e616f8ae-a973-493a-be36-4c16d89da58b" t="o" /> -<objsur guid="66441847-d173-41af-ab63-a0ae51dfb9d3" t="o" /> -<objsur guid="2e603cd0-d976-4592-bcb8-12e9eb3caabf" t="o" /> -<objsur guid="ffb868ff-1b3d-4d5b-a5d0-d7e0251350fc" t="o" /> -<objsur guid="6e46896b-f613-4a1e-984c-8e78a4930d7d" t="o" /> -<objsur guid="48ad871d-f4a0-4141-8234-89400088a778" t="o" /> -<objsur guid="c48ededc-2f7b-4c72-abec-e62782b7fda9" t="o" /> -<objsur guid="dea4ea4a-f0e4-45b0-b374-b9b928582357" t="o" /> -<objsur guid="cc158d84-88a6-48e2-af45-ba38183630d8" t="o" /> -<objsur guid="6ee24601-b80f-46b0-b5d1-6cdcfa930dd4" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="eb00b4c2-5b87-4ef8-9548-800fc5c9b524" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="5fcadae4-b4a8-4600-8d30-c4f67986d619" t="o" /> -<objsur guid="962941b2-66bd-437f-aadc-b1921bcae5b4" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="9d88ab7e-8fdb-4e25-8895-6638aecb3df7" ownerguid="b8d2fdb9-22ea-4040-8abb-aeeff0399f23"> -<ExampleWords> -<AUni ws="en">kill, murder, assassinate, bump off, do away with, finish someone off, take someone's life, dispatch, dispose, finish, eliminate, liquidate, commit murder, waste, zap, slay, snuff, send to Davy Jones locker, lynch, silence, terminate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to killing someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9d88bd46-3f5b-4260-9bc6-79a76ddf5230" ownerguid="d2001c9c-3c37-4910-8b8a-adcffc6fbf26"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The village was on the other side of the river from us.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">across, across from, on the other side of, on the opposite side of, beyond, offshore from</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is across from something else?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9d894161-2e32-42c9-bb27-bf9a5e1190ea" ownerguid="13f62fa1-589c-4a46-9bbc-b0fd1001e21f"> -<ExampleWords> -<AUni ws="en">prison warden, prison guard, jailer, keeper, turnkey, warder</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) Who are the staff of a prison?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="9d896f02-c26a-49e1-a602-5f97ae3d2bc2" ownerguid="5ea4f6af-0125-4cdd-8a90-8a2d9089df5f"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="47f8d0dd-fceb-47a2-9323-d1c11c218ce3" t="o" /> -<objsur guid="c8c3d801-d256-4685-a024-9bf574b3fe0d" t="o" /> -<objsur guid="f4efa9f2-7292-4c70-b8cd-e9a0d36904d5" t="o" /> -<objsur guid="019ef1ce-ba38-43b6-8950-d8e69c48192c" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="9d897083-b92e-4a74-99c9-536ddbd56329"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lepra</AUni> -<AUni ws="qvm-x-acl">lepra</AUni> -<AUni ws="qvm-x-akh">lepra</AUni> -<AUni ws="qvm-x-akl">lepra</AUni> -<AUni ws="qvm-x-ame">lepra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lepra</AUni> -<AUni ws="qvm-x-acl">+lepra</AUni> -<AUni ws="qvm-x-akh">+lepra</AUni> -<AUni ws="qvm-x-akl">+lepra</AUni> -<AUni ws="qvm-x-ame">+lepra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.74" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d9bb5ea8-6921-44fb-885c-ace03ce37871" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lepra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9849683a-78cb-4f69-bde3-7457cd883167" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3d99e29d-cdf6-43e9-9173-13bfbfa10105" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lepra 
\entryTyp root 
\gENG leper 
\gSPN lepra 
\e +lepra 
\c N0 
\ach lepra 
\akh lepra 
\acl lepra 
\akl lepra 
\ame lepra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="9d8ab109-a848-4bfb-a25c-a7d76bdfb0cb" ownerguid="96956f25-5845-44f9-bf3f-702520108a85"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">January</AUni> -<AUni ws="es">enero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1c1f65d7-347c-417e-9be1-beac6b42a5ba" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="9d8bb0ed-a6c2-4592-a4b7-ba28311c5664"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pilpintuy</AUni> -<AUni ws="qvm-x-acl">pilpintuy</AUni> -<AUni ws="qvm-x-akh">pilpintuy</AUni> -<AUni ws="qvm-x-akl">pilpintuy</AUni> -<AUni ws="qvm-x-ame">pilpintuy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pillpintuy</AUni> -<AUni ws="qvm-x-acl">*pillpintuy</AUni> -<AUni ws="qvm-x-akh">*pillpintuy</AUni> -<AUni ws="qvm-x-akl">*pillpintuy</AUni> -<AUni ws="qvm-x-ame">*pillpintuy</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.830" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="55123710-c5f8-47d8-8695-9cb944d9b2a1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pillpintuy</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bf9c220b-bd7c-4466-b938-bdcbf2150749" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bd648cae-f67b-4d4f-8d5c-db0560bb0301" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pillpintuy 
\entryTyp root 
\gENG moth 
\gSPN alevilla 
\e *pillpintuy 
\c N0 
\mp +FinalC 
\ach pilpintuy 
\akh pilpintuy 
\acl pilpintuy 
\akl pilpintuy 
\ame pilpintuy</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9d8c7aac-98b1-4d9a-a2fc-123b839c9734" ownerguid="72274e9d-5d3c-4ae7-93ab-db3617cdda1e"> -<ExampleWords> -<AUni ws="en">feel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling something?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="9d8fbadd-6532-4d95-9f36-092fa56d5c57" ownerguid="5ca1539c-8d73-4116-9ca9-842c8e1a489c"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="53ffb994-4cfd-4e20-a739-f972a870d3ac" t="o" /> -<objsur guid="ffd921a7-d7e2-4dbf-8f77-42933bd522da" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="9d965a66-b087-4828-b780-108eba45dd11" ownerguid="99861dcb-c6ca-4e50-a19a-efadbb10c2cf"> -<ExampleWords> -<AUni ws="en">age-old, be as old as the hills, ancestral, ancient, be around from time immemorial</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is very old?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9d97ee4f-b5db-4100-9e5a-de46e1259f9b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">se:llu</AUni> -<AUni ws="qvm-x-acl">se:llu; se:llu; se:llo</AUni> -<AUni ws="qvm-x-akh">se:llu</AUni> -<AUni ws="qvm-x-akl">se:llu; se:llu; se:llo</AUni> -<AUni ws="qvm-x-ame">se:llu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sello</AUni> -<AUni ws="qvm-x-acl">+sello</AUni> -<AUni ws="qvm-x-akh">+sello</AUni> -<AUni ws="qvm-x-akl">+sello</AUni> -<AUni ws="qvm-x-ame">+sello</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.490" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7f3f70d3-be3a-4ccd-9bab-dcc6802c04ff" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sello</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="10404bc0-83cb-44d0-9415-e4ceb913bbf3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="38edcdd7-740f-4d4b-9e14-765e963cf57d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sello 
\entryTyp root 
\gENG seal 
\gSPN sello 
\e +sello 
\c N0 
\ach se:llu 
\akh se:llu 
\acl se:llu / _# 
\acl se:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl se:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl se:llu / _# 
\akl se:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl se:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame se:llu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9d9b51e2-2477-449c-b23e-41e6c7e5bb9a" ownerguid="3014de03-88e5-4330-9682-51963a41ca50"> -<ExampleWords> -<AUni ws="en">shark, ray, stingray, skate, chimera</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What types of sharks and rays are there?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9d9b7215-c486-49af-982d-640b6a56ef50" ownerguid="7a71a573-5118-4d2a-b39a-69518acc17ea"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="07b71911-b0cf-45f3-bace-b24623f7b257" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="468dae40-2067-4cc8-b888-ae8145ce9dd9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="9d9be965-d87f-46b7-b779-2846b978a008" ownerguid="de94f006-ecc6-4347-b505-28b1f6735f59"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9d9c30f9-2e06-483f-9ecd-731ab58f288d" ownerguid="64e41545-3a0a-4524-a8d4-8e5e0f0e2391"> -<ExampleWords> -<AUni ws="en">candlestick, wick, wax, candelabra, holder</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What are the parts of a candle?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9d9e2273-4ac9-4918-bb0c-8d503ed62821"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tagra</AUni> -<AUni ws="qvm-x-acl">tagra</AUni> -<AUni ws="qvm-x-akh">taqra</AUni> -<AUni ws="qvm-x-akl">taqra</AUni> -<AUni ws="qvm-x-ame">taqra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*taqra</AUni> -<AUni ws="qvm-x-acl">*taqra</AUni> -<AUni ws="qvm-x-akh">*taqra</AUni> -<AUni ws="qvm-x-akl">*taqra</AUni> -<AUni ws="qvm-x-ame">*taqra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.823" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="70201c11-1309-41f9-9cb9-955a2225eb94" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*taqra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8f48ecbc-3dbc-4c33-9027-67c1c61bf41f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c621ef83-6f66-447d-b77c-c28dd7199969" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *taqra 
\entryTyp root 
\gENG 
\gSPN suciedad 
\e *taqra 
\c N0 
\ach tagra 
\akh taqra 
\acl tagra 
\akl taqra 
\ame taqra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="9d9fa92a-2364-452d-9ac1-a4459e831b10"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">palapa</AUni> -<AUni ws="qvm-x-acl">palapa</AUni> -<AUni ws="qvm-x-akh">palapa</AUni> -<AUni ws="qvm-x-akl">palapa</AUni> -<AUni ws="qvm-x-ame">palapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pallapa.n</AUni> -<AUni ws="qvm-x-acl">*pallapa.n</AUni> -<AUni ws="qvm-x-akh">*pallapa.n</AUni> -<AUni ws="qvm-x-akl">*pallapa.n</AUni> -<AUni ws="qvm-x-ame">*pallapa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.677" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="840695d3-988a-4447-9c45-9955e124cdcf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pallapa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6cad88fd-22fa-4df1-a88e-c1e17ef684c1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="888257fb-e89c-4647-b854-acf4778f43f4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pallapa.n 
\entryTyp root 
\gENG spillage 
\gSPN lo.que.cayó 
\e *pallapa.n 
\c N0 
\ach palapa 
\akh palapa 
\acl palapa 
\akl palapa 
\ame palapa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9d9fc7a6-e4a8-4df3-921e-87922cf7456c" ownerguid="fcd22c85-7ee1-4d31-8633-9dbd32344211"> -<ExampleWords> -<AUni ws="en">move toward, go toward, head toward, go in the (general) direction of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving toward a place?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9da07673-752d-4979-bf89-8375cab3c98c" ownerguid="2b6f9af7-04ee-4030-a2cd-87d55959caa8"> -<ExampleWords> -<AUni ws="en">feel afraid, be afraid, fear (v), for fear of, have a horror of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling afraid?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9da0fb89-0053-4a69-95bf-8b732fe8d281" ownerguid="3ec43596-23e7-43fa-8853-9c69b6683451"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9da3f4b1-9e58-43ea-bcf5-6e3620ece68b" ownerguid="b4fe4698-54a2-4bcd-9490-e07ee1ee97af"> -<ExampleWords> -<AUni ws="en">fall, run (down the face), streak</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What do tears do?</AUni> -</Question> -</rt> -<rt class="WfiGloss" guid="9da49e0e-0736-4cc1-bcfa-66932f3d040e" ownerguid="ec8f85f7-0c45-4350-a18d-4b595462fea3"> -<Form> -<AUni ws="en">final</AUni> -<AUni ws="es">final</AUni> -</Form> -</rt> -<rt class="CmDomainQ" guid="9da4d4cf-6d93-4e15-8a35-05f8dcedd0c8" ownerguid="a8b3fa0c-077e-4c0d-b4cc-36dcfbdcb4d4"> -<ExampleWords> -<AUni ws="en">fade, bleach</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the sun changing the color of something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9da5588e-626a-4347-868d-e378863f591d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mayoría; mayoria</AUni> -<AUni ws="qvm-x-acl">mayoría; mayoria</AUni> -<AUni ws="qvm-x-akh">mayoría; mayoria</AUni> -<AUni ws="qvm-x-akl">mayoría; mayoria</AUni> -<AUni ws="qvm-x-ame">mayoría; mayoria</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mayoría</AUni> -<AUni ws="qvm-x-acl">+mayoría</AUni> -<AUni ws="qvm-x-akh">+mayoría</AUni> -<AUni ws="qvm-x-akl">+mayoría</AUni> -<AUni ws="qvm-x-ame">+mayoría</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.384" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5d0defe9-845f-4cf7-a62c-73a2e8b4e839" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mayoría</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4b71d35c-6ea9-453a-bc3d-ecf95bc5adfd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="91932058-857a-4486-8822-955ea69e0689" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mayoría 
\entryTyp root 
\gENG 
\gSPN 
\e +mayoría 
\c N0 
\ach mayoría / _# 
\ach mayoria / ~_# 
\akh mayoría / _# 
\akh mayoria / ~_# 
\acl mayoría / _# 
\acl mayoria / ~_# 
\akl mayoría / _# 
\akl mayoria / ~_# 
\ame mayoría / _# 
\ame mayoria / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="9da991a1-eb7b-4eaa-a3fc-cadd733fa9e7" ownerguid="9f1d000c-937f-4832-9502-eb671abfec06"> -<Form> -<AUni ws="qvm-x-ach">merenda</AUni> -<AUni ws="qvm-x-acl">merenda</AUni> -<AUni ws="qvm-x-akh">merenda</AUni> -<AUni ws="qvm-x-akl">merenda</AUni> -<AUni ws="qvm-x-ame">merenda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9daa5219-9742-48dd-9660-141f1739f6bb" ownerguid="04752883-aa3e-42a2-bd42-454e9cd99b11"> -<ExampleWords> -<AUni ws="en">I wasn't there but...</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) indirect evidence: the speaker claims not to have witnessed the situation, but does not specify further whether the evidence is reported or simply inferred.</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9dafa8db-ebe1-4b32-a643-f84cc1a86c0d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">siki</AUni> -<AUni ws="qvm-x-acl">siki; siki; sike</AUni> -<AUni ws="qvm-x-akh">siki</AUni> -<AUni ws="qvm-x-akl">siki; siki; sike</AUni> -<AUni ws="qvm-x-ame">siki</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.568" /> -<DateModified val="2022-10-16 15:12:15.367" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0a59de77-f86e-4519-84b2-594c7bcda84e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">SIKI</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1728d758-293b-4e13-a8e4-e03410b2f777" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="85f66a33-7989-4427-b9a4-a8a34835e94d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx SIKI 
\entryTyp suffix 
\gENG SIKI 
\gSPN SIKI 
\e SIKI 
\c N0/N0 BN/BN R0/R0 
\o 200 
\mp -PMonophthongized 
\ach siki 
\akh siki 
\acl siki / _# 
\acl siki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl sike +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl siki / _# 
\akl siki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sike +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame siki 
\mp NeverMonophthongized 
\mp +FinalI 
\mcc SIKI / *puñu [inf] _</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="9db00bb9-0443-4017-9185-2a6e3f43e556" ownerguid="4bcf81e9-1edc-4872-a8d3-b0f710b56b30"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="476632bc-99cc-4828-bdd4-7771c0a33cc4" t="o" /> -<objsur guid="2ee1ab9d-0ca7-4b6a-8212-b3bc2d24a2ff" t="o" /> -<objsur guid="7cabaa85-a98d-4497-be83-81f115320392" t="o" /> -<objsur guid="a25162cd-f008-4b09-bab3-c307c651f135" t="o" /> -<objsur guid="dc789335-b55b-4253-88bb-4cd35b15ee90" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="9db168f8-b209-4b89-b88c-3b98ce8e8a84" ownerguid="07476166-c5e5-4701-97d3-d97de8b5be6f"> -<ExampleWords> -<AUni ws="en">know how to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to knowing how to do something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9db6902f-b85f-4cc9-971c-78d02164964b" ownerguid="ec90e061-e6a0-435f-8784-7269a24c670a"> -<ExampleWords> -<AUni ws="en">give a pledge, bond, collateral, earnest, put up collateral, promissory note, lien, credit, security, surety</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to giving a pledge to repay a loan?</AUni> -</Question> -</rt> -<rt class="MoDerivAffMsa" guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" ownerguid="3430f8ab-f9ad-47af-a0f0-315210361573"> -<FromMsFeatures> -<objsur guid="42aecc62-ac82-4123-9c65-1651c8b2f7c3" t="o" /> -</FromMsFeatures> -<FromPartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</FromPartOfSpeech> -<ToPartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</ToPartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="9db8b722-16ce-401f-92fd-1f9baade5e98" ownerguid="37d1a4be-3a32-4033-9695-58b4b77ac36a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="9db9d984-aa87-4540-adf5-e21096acdd7e" ownerguid="93bcba15-4329-416a-b6ff-4f3c73b2cd4f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PunctuationForm" guid="9db9fafd-9bf2-4320-8de9-9c57d9a366b8"> -<Form> -<Str> -<Run ws="qvm-x-akh">(</Run> -</Str> -</Form> -</rt> -<rt class="LexSense" guid="9dba945f-1264-41fd-9f64-b3d936121e27" ownerguid="a21b17d1-0ff3-4733-b4cf-57c6ad2793c0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pill</AUni> -<AUni ws="es">pastilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3c688cf8-f038-44a9-8b9e-a753e64e0b59" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="9dbb7b56-35d2-4b80-8106-8aff76b58d56" ownerguid="2a6a1f3b-6f03-4a6a-ba58-77e5f136229b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ycu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ycu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d47785a7-bced-4085-a334-1ed6f848c530" t="r" /> -</Morph> -<Msa> -<objsur guid="382e9c39-4806-4765-a8a2-5ecb5ad0e3bd" t="r" /> -</Msa> -<Sense> -<objsur guid="d6918f9b-be9f-4049-bf76-21a1597e24db" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="9dbbc2d6-73a3-4faf-b9c7-fd8dde446265" ownerguid="2e2bdbad-d0ce-461e-bff3-b0a8a7cf7100"> -<Form> -<AUni ws="qvm-x-ach">lagya</AUni> -<AUni ws="qvm-x-acl">lagya</AUni> -<AUni ws="qvm-x-akh">laqya</AUni> -<AUni ws="qvm-x-akl">laqya</AUni> -<AUni ws="qvm-x-ame">laqya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="9dbc8d68-ea7b-4157-9650-d19e27bac867" ownerguid="8c30a1c0-032a-4dc6-aba5-e3943448f9e5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9dc02b0b-11d7-47b4-b488-fa6e38b761c8" ownerguid="00269021-e1c4-474d-9dba-341d296bdac7"> -<ExampleWords> -<AUni ws="en">place, position, where something comes</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the particular order in which something comes?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="9dc084f3-059c-4c7c-9dd6-aff6331a2fa5" ownerguid="2374f162-5a3e-40b8-b85f-1802ea02f391"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 8.18 Sapinpita tronquiyaptin jacha ushacashgannogmi paycunapis ushacan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="9dc23c68-72c8-4499-b7b9-56e31b7ad24b" ownerguid="aa8203e4-ecff-4f6d-b9b6-eda8c10f968b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="9dc4af63-bd2f-49a1-964d-f91c9ad4a145" ownerguid="b442fdfb-24b1-4f86-b323-e2ef84572018"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">Europe</AUni> -<AUni ws="es">europa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="55d2312e-3d91-4dce-bd57-b7c358e3c533" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="9dc687fd-ca5e-431b-a6b7-ed7e8cf3ba86" ownerguid="a4bc5f8d-363a-412e-ba54-2df17a92120a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="f63d167a-e316-4a5f-963b-afcb19563b11" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="9dc7a6ed-842d-4e73-a731-451ab2ba1b4a" ownerguid="7f5a5781-1c0f-4a25-b619-baf7774fb103"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="e7aa0f52-88bf-4080-aa96-91d8a978002f" t="o" /> -<objsur guid="41ccdef7-3a96-4010-bc4b-9e7092aa7ce3" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="9dc8e159-6107-4251-94a3-221317256a85" ownerguid="54ec3cad-4a0f-48a5-9dd6-36855480ee5d"> -<Form> -<AUni ws="qvm-x-ach">pachamanca</AUni> -<AUni ws="qvm-x-acl">pachamanca</AUni> -<AUni ws="qvm-x-akh">pachamanka</AUni> -<AUni ws="qvm-x-akl">pachamanka</AUni> -<AUni ws="qvm-x-ame">pachamanka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="9dc9019f-b657-43ed-9a28-00e4e4dc072a" ownerguid="5177eb1d-7a51-4f94-82a0-c44553beee3c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ankle</AUni> -<AUni ws="es">tobillo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="990a0519-692a-46b0-9e5f-82999cbb8f00" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="9dc9b32c-4dc9-4678-81c6-3eb751860553" ownerguid="9e53f396-f9ed-4f40-a999-e3e9d36e4f69"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="9dca62a8-2127-46bd-87d1-6057b729c7c6" ownerguid="cdfc188f-21e6-470e-8e81-be88ec8f431b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="7fcc64f4-d39e-4ba2-8651-7c526c66f0fc" t="o" /> -<objsur guid="5d610939-e395-4b29-982f-9f135d8d35e4" t="o" /> -<objsur guid="9ccf6595-3c25-4473-bf78-bb4f0c464acd" t="o" /> -<objsur guid="0711771d-4c26-4d0e-a687-86f805043e76" t="o" /> -<objsur guid="f36ba4ad-1fa1-4d12-b3cd-d125f4f89d4f" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="9dcf23f7-13e1-44d5-a9b5-1c1631f3e1a6" ownerguid="95fb6952-8926-4e83-813f-bdb285dc48d3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="9dd0c5ca-6e76-4b1e-bc23-2fe7acce695f" ownerguid="f49b51af-eea9-4258-ac46-79f044dfc46a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9dd4542c-a178-4cb4-81fb-a78209aefe90" ownerguid="5fdf3946-7e47-4fd2-906f-4da7ce5fa490"> -<ExampleWords> -<AUni ws="en">take a long time to answer, take your time to answer, quick reply, response time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the time it takes to answer?</AUni> -</Question> -</rt> -<rt class="StTxtPara" guid="9dd6be50-49c0-4282-af86-812450bf6720" ownerguid="4542fe53-014b-4a89-8aab-b1714d601956"> -<Contents> -<Str> -<Run ws="en">There is a problem with this environment string '/~_#': The phoneme which begins '~_#' was not found in the set of representations for any Phoneme.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -<Segments> -<objsur guid="4b62a502-d4b3-4b79-93a5-480a818dba7c" t="o" /> -</Segments> -<StyleRules> -<Prop namedStyle="Paragraph"></Prop> -</StyleRules> -</rt> -<rt class="LexSense" guid="9dd89498-6d7f-4297-acc9-1630477e4dfc" ownerguid="8439fc80-2f31-4c82-9ca6-d8d3e86c5cca"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">quartz</AUni> -<AUni ws="es">cuarzo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a5bdc365-afb7-4c58-875f-c9b462aae427" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9ddba0b2-029a-4723-a3e3-67dedd366ca3" ownerguid="99b40843-54bf-4c59-ae1d-d7146cebec48"> -<ExampleWords> -<AUni ws="en">blessing in disguise</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to something that seems unlucky but turns out to be good?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9ddbcb0a-397e-415f-ac11-e6c458be9259" ownerguid="4bedae6a-1df4-40e5-8a2f-ab0a1f41997e"> -<ExampleWords> -<AUni ws="en">sap, rubber</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What plant products are used for chemicals?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9ddd9a3a-18d6-454d-b197-8107bd796977" ownerguid="971d4ac1-f78a-4449-ad2c-46a914490b15"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">comer.carne</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3e1f27a1-bd93-491e-93be-278b15111c60" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="9ddf39a7-ad28-4623-ac85-b7a42a89c06d" ownerguid="77722ca5-841e-46ee-8f24-d6e594fccea8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="7ecb8b08-bc59-49f5-8e4c-665e2568d318" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="edde2c28-08d9-4d6d-bbfe-5aec1fbe95d6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="9ddf4735-6c76-4b73-98cf-d3fc5f808e3e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mili</AUni> -<AUni ws="qvm-x-acl">mili; mile</AUni> -<AUni ws="qvm-x-akh">mili</AUni> -<AUni ws="qvm-x-akl">mili; mile</AUni> -<AUni ws="qvm-x-ame">mili</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+melizo.v</AUni> -<AUni ws="qvm-x-acl">+melizo.v</AUni> -<AUni ws="qvm-x-akh">+melizo.v</AUni> -<AUni ws="qvm-x-akl">+melizo.v</AUni> -<AUni ws="qvm-x-ame">+melizo.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.406" /> -<DateModified val="2022-10-10 21:18:47.204" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="774000f6-dc28-4464-838c-cb6ec071d7ae" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+melizo.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="904210f9-ad72-48eb-b55b-d2c5b6b25461" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a7b70024-de7d-4eec-b290-055b2dfda3ad" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +melizo.v 
\entryTyp root 
\gENG 
\gSPN 
\e +melizo.v 
\c V1 
\mp +FinalI 
\ach mili 
\akh mili 
\acl mili +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl mile +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mili +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mile +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mili</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="9de2228b-1cd5-4489-a848-087f04149642" ownerguid="4c69ee77-777e-4a6e-b592-d29537dfd146"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="9de2ec46-0565-4837-8fed-35f07f9bbc40" ownerguid="86078fa5-1d4e-4420-867e-8e76a1b6e3bf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="505e7e23-ae56-481a-837c-28de0b8bcfec" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="9de5b3c3-74fa-48dd-8b6a-fcc711a258b5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tupi:du</AUni> -<AUni ws="qvm-x-acl">tupi:du; tupi:du; tupi:do</AUni> -<AUni ws="qvm-x-akh">tupi:du</AUni> -<AUni ws="qvm-x-akl">tupi:du; tupi:du; tupi:do</AUni> -<AUni ws="qvm-x-ame">tupi:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tupido</AUni> -<AUni ws="qvm-x-acl">+tupido</AUni> -<AUni ws="qvm-x-akh">+tupido</AUni> -<AUni ws="qvm-x-akl">+tupido</AUni> -<AUni ws="qvm-x-ame">+tupido</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.500" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1877bd52-c36c-4c14-9698-43ffb363e78d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tupido</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cb2b2761-86bd-40dc-83d0-39de4efbbefe" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0dd57450-628a-4eaf-8ce8-12b18b43ea2a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tupido 
\entryTyp root 
\gENG 
\gSPN 
\e +tupido 
\c N0 
\ach tupi:du 
\akh tupi:du 
\acl tupi:du / _# 
\acl tupi:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tupi:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tupi:du / _# 
\akl tupi:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tupi:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tupi:du 
\i ZEC 11.2 Basáncho cag encina yöracuna, tupïdu munti ushacashga captin wagapäcuy.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="9de88500-fcee-49f4-b489-e4d13de155e1" ownerguid="b29e78c9-045a-4a6c-8d87-9586d034b6ef"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gouge</AUni> -<AUni ws="es">picotear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c128622a-6407-4c88-bb52-097ff0b5b0e1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="9debf42f-7511-4123-b9c5-c4b0c90b0aa4" ownerguid="b0adc784-6b3a-4596-aec4-10379a331c18"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">candy</AUni> -<AUni ws="es">caramelos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0e374ae1-8ef2-4a3f-b350-dcb59bb30cc1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="9dee40d7-69e3-449e-90f2-0eeddd4ad6fb" ownerguid="7c319154-d1d5-4e64-94d0-27b05186b8f9"> -<Form> -<AUni ws="qvm-x-ach">mayi</AUni> -<AUni ws="qvm-x-acl">mayi; mayi; maye</AUni> -<AUni ws="qvm-x-akh">mayi</AUni> -<AUni ws="qvm-x-akl">mayi; mayi; maye</AUni> -<AUni ws="qvm-x-ame">mayi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9dee6129-d521-4050-9c83-7e0f5627fd25" ownerguid="d7da5318-dccf-477f-967d-1e3f6a421860"> -<ExampleWords> -<AUni ws="en">scratch, roost</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What do chickens do?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9df21a5c-88d4-4911-87cc-194864d043ef" ownerguid="94f50cb8-9a59-42cc-9891-247cc3de7428"> -<ExampleWords> -<AUni ws="en">rust, corrode, oxidize, tarnish, rust away</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to metal rusting?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9df81722-58b7-4744-a53d-42a1351de886" ownerguid="5537653f-05e8-4263-bac6-9dbcce4dfd5a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">save</AUni> -<AUni ws="es">salvar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d64bf434-ed96-421c-bba2-300182b3dbf9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9df85a9b-3b9c-4996-bfb6-73fd7a42efbd" ownerguid="290f0994-ce8e-4922-975f-fa091f566823"> -<ExampleWords> -<AUni ws="en">relief</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to relief from trouble?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9df994ea-c5be-4e4a-b9c8-717049721d0c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bisti</AUni> -<AUni ws="qvm-x-acl">bisti; biste</AUni> -<AUni ws="qvm-x-akh">bisti</AUni> -<AUni ws="qvm-x-akl">bisti; biste</AUni> -<AUni ws="qvm-x-ame">bisti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vestir</AUni> -<AUni ws="qvm-x-acl">+vestir</AUni> -<AUni ws="qvm-x-akh">+vestir</AUni> -<AUni ws="qvm-x-akl">+vestir</AUni> -<AUni ws="qvm-x-ame">+vestir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.373" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ef32036b-a4a7-4a5c-9438-9ba6fc48ae98" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vestir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6abbd74f-3b78-4de5-8ed2-7ac408e5329a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e57494ae-1e25-4c22-8be7-ee811a760c5d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vestir 
\entryTyp root 
\gENG dress 
\gSPN vestir 
\e +vestir 
\c V1 
\mp +FinalI 
\ach bisti 
\akh bisti 
\acl bisti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl biste +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl bisti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl biste +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame bisti</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="9dfa7a4c-cadb-40b9-9318-cb0045095614" ownerguid="bb79da61-088b-4bee-bbd3-72d8686b8878"> -<Form> -<AUni ws="qvm-x-ach">wallicya; wallicyä</AUni> -<AUni ws="qvm-x-acl">wallicya; wallicyä</AUni> -<AUni ws="qvm-x-akh">wallikya; wallikyä</AUni> -<AUni ws="qvm-x-akl">wallikya; wallikyä</AUni> -<AUni ws="qvm-x-ame">wallikya; wallikyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="9dfb06db-f884-4db8-b10b-8fe1b58373af" ownerguid="edbc9a1b-e37d-46ca-b519-81f8f65431e9"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">NEH 8.3 Leycuna escribiraycashgan rölluta liyipaptinmi lapan runacuna atento mayapäcorgan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="9dfb3d5c-98d5-4b5f-9e8f-4e74fc4bc790" ownerguid="d49f2c9d-1b4a-4370-b107-71f9b9fbdc8e"> -<ExampleWords> -<AUni ws="en">be neighbors, live next to each other, live near each other, live in the same neighborhood, live on the same street, live nearby</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that someone lives nearby?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9dfb842d-15f8-4800-bceb-2283ff05b25d" ownerguid="b1688009-474d-4e2e-a137-acc1e32a435f"> -<ExampleWords> -<AUni ws="en">thick, stout</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something like a branch or rope that is thick?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9dfb9f99-4e30-4cd8-a8ac-7b97d5a96a68"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">li:ma</AUni> -<AUni ws="qvm-x-acl">li:ma</AUni> -<AUni ws="qvm-x-akh">li:ma</AUni> -<AUni ws="qvm-x-akl">li:ma</AUni> -<AUni ws="qvm-x-ame">li:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+limar</AUni> -<AUni ws="qvm-x-acl">+limar</AUni> -<AUni ws="qvm-x-akh">+limar</AUni> -<AUni ws="qvm-x-akl">+limar</AUni> -<AUni ws="qvm-x-ame">+limar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.920" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8a01910f-bdb0-4ffa-9196-f65008aa9ec8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+limar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="85d97d5a-8e32-47bb-8aa2-43901cfddde9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="14ec6de4-9fb8-49e9-9b25-4970be64f86a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +limar 
\entryTyp root 
\gENG to.file 
\gSPN limar 
\e +limar 
\c V1 
\ach li:ma 
\akh li:ma 
\acl li:ma 
\akl li:ma 
\ame li:ma 
\i PRO 27.17 Runa mayiquita tantyatserga fiërruta lïmanawan afilagnogmi caycanqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="9dfe2fab-3e31-452a-96cd-e1a400afe31e" ownerguid="b45dc743-8347-4e33-840a-ad3ef5aa1b52"> -<Form> -<AUni ws="qvm-x-ach">jagchisya; jagchisyä</AUni> -<AUni ws="qvm-x-acl">jagchisya; jagchisyä</AUni> -<AUni ws="qvm-x-akh">jaqchisya; jaqchisyä</AUni> -<AUni ws="qvm-x-akl">jaqchisya; jaqchisyä</AUni> -<AUni ws="qvm-x-ame">haqchisya; haqchisyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9e048ad4-98db-4cd5-a69f-95736ac03494" ownerguid="ffa13b7d-5eaa-43be-8518-51d9aa08f321"> -<ExampleWords> -<AUni ws="en">single, duo, duet, trio, quartet, quintet, sextet, twins, triplets, quadruplets, quintuplets, sextuplets, twosome, threesome, foursome, fortnight, decade, century, millennium, dozen, score, gross</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a group of a particular number?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9e06fe94-7cd9-40d9-b715-d3120ff1c3e4" ownerguid="44236418-c5d0-44d9-b5c1-94fca40d97ce"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">two</AUni> -<AUni ws="es">dos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0cf492ae-6cf0-40c0-80d8-763443288627" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9e0b092e-a4ef-4a36-b211-354109c5b6e0" ownerguid="03e22b05-8505-442d-9c3b-7e691bd525e0"> -<ExampleWords> -<AUni ws="en">anoint, perfume, smear, douse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to anointing the body?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9e0c1717-3a25-4d44-ac7a-8824b303fbca" ownerguid="12d752d5-53a9-46f6-9e81-3153401cc760"> -<ExampleWords> -<AUni ws="en">schedule, timetable, program</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a plan for the time of an event?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9e0d923f-300b-4061-afdd-0284966a7647" ownerguid="4390e993-552f-417f-a6ab-1d7ee15bb530"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="9e0e2b44-6732-47a7-b994-f38302c0af95" ownerguid="6dde2d5d-c27f-432b-8bf8-ff740be6ad2a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1 V2/V2</Run> -</AStr> -</Custom> -<Definition> -<AStr ws="en"> -<Run ws="en">reflexive after directionals (foreshortens)</Run> -</AStr> -</Definition> -<Examples> -<objsur guid="c5d95746-4a88-4561-8a21-1aef5a951383" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">REFDIR</AUni> -<AUni ws="es">REFDIR</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="19d8e776-3207-47b6-bd4e-4f4c71fa6989" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="9e0ece3d-aec3-4e3e-b306-8d120b634128" ownerguid="c102de4c-ea8e-45d1-8e11-84c5ce3b2b60"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="9e11e239-7f97-4e30-bc6a-40bf0c22029c" ownerguid="c416afa2-6841-4e89-a089-0ead03c816e5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">kettle</AUni> -<AUni ws="es">peról</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8605a7d3-b164-4332-a7fc-fd4648e31309" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9e17c31b-744b-42d8-b7c1-1efa84d7b194" ownerguid="a3e905b8-107b-4311-bb50-0abe151131b3"> -<ExampleWords> -<AUni ws="en">go ahead, be my guest, feel free, help yourself</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words do people use when they give someone permission?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="9e185af2-d65e-4253-bd20-7121b5b43d4a" ownerguid="d6b0dfe1-8cb8-465f-bf15-c6dc6ff93d65"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">gargu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">gargu; gargo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qarqu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qarqu; qarqo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qarqu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="73ffd175-ad05-4d66-af47-2c487b1126eb" t="r" /> -</Morph> -<Msa> -<objsur guid="6da469f9-1f0c-4335-acc0-6c49a7bb5c21" t="r" /> -</Msa> -<Sense> -<objsur guid="787e73b6-84a8-45dd-99cc-170258492e7f" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="9e1883b1-c4b9-442a-be7d-3d48cbac2777" ownerguid="262fc4ae-7735-465b-934b-2125d95de147"> -<ExampleWords> -<AUni ws="en">make someone jealous, arouse jealousy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to causing someone to feel jealous?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9e198146-76bf-4ef2-bcad-b34a84a85e25" ownerguid="1ec85151-eba0-48f4-b56d-4f8040602a4b"> -<ExampleWords> -<AUni ws="en">heir, heiress, beneficiary</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to someone who inherits something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9e1a3ea2-76e6-4532-87c2-9f949c210ba9" ownerguid="67146bf0-738b-4f63-9595-139c4e9e351c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">encaramar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="34d318ed-04ba-4a2d-aca5-3ce9578bd169" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="9e1b0f9f-a2f0-4e31-9507-ff06bc4526de" ownerguid="6cea20b9-67a9-4e43-81b5-ac54e38743d6"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="f3edbaef-78dc-483c-82d2-f46f9ce1996d" t="o" /> -<objsur guid="25ad985f-7f1a-489e-85a5-1758b55fc419" t="o" /> -<objsur guid="cdf347c9-a28d-4383-b56a-400c0c9c93be" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="9e1dfb99-7223-4111-9dec-b04439a098bb" ownerguid="eb00b4c2-5b87-4ef8-9548-800fc5c9b524"> -<ExampleWords> -<AUni ws="en">vandal, saboteur, bull in a china shop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a person who damages things?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="9e1edd45-19b1-46c6-908d-fbcdcd3fe301" ownerguid="9804176a-ea81-41f3-b7f4-726ee01b6039"> -<Form> -<AUni ws="qvm-x-ach">palïtu</AUni> -<AUni ws="qvm-x-acl">palïtu; palïtu; palïto</AUni> -<AUni ws="qvm-x-akh">palïtu</AUni> -<AUni ws="qvm-x-akl">palïtu; palïtu; palïto</AUni> -<AUni ws="qvm-x-ame">palïtu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="9e207525-5fa3-40d3-aa6e-dec8f631cd7d" ownerguid="a20245bb-760f-4eec-babf-65e35326b66d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9e2137ad-5599-4a44-a21b-05dbed54cdcd" ownerguid="8f4c9266-a025-4b7a-bd67-fe0c043bf6f5"> -<ExampleWords> -<AUni ws="en">exact, precise</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a number or amount that is exact?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9e22b448-9755-4e61-b7f3-cafd16777a02" ownerguid="8add7f4d-333b-4b2c-9999-48a14162152b"> -<ExampleWords> -<AUni ws="en">keep your temper, calm and collected, composed, composure, forbearing, unexcitable, long-suffering, poised, reserved, staid, steady, unexcited</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to controlling your feelings?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9e26a07d-3f4f-4b4f-9c9d-b818519ffeb7" ownerguid="b28406f8-eee1-4263-8a78-47b432a9efe8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">joint</AUni> -<AUni ws="es">coyuntura</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e9a6dfc8-d0c0-4c27-8b27-526a4387e38d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="9e2739cf-4848-4c72-93f4-4bfc68aab8a4" ownerguid="4ba2b5d4-9029-49f5-830b-7cc384d5b68b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="bfce9de4-acb2-4fe7-9be2-ccad064cc352" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="da2abd01-01f7-4eaf-adac-7ad84be99862" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="9e285fa9-7e38-4225-8378-c10a367868d8" ownerguid="4db0b9be-4c9c-47b8-a0d8-d16f147564fe"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="9e2a3596-4ad3-4eb9-a29a-cca0acaafe3e" ownerguid="607457c5-5a36-43ab-8809-5a39b18cc3e8" /> -<rt class="CmSemanticDomain" guid="9e2b0c61-304e-4cad-9708-792bfde880b4" ownerguid="a1dd1d94-fa8e-4325-9f72-b39bcac69755"> -<Abbreviation> -<AUni ws="en">4.8.4.8.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.286" /> -<DateModified val="2022-9-23 16:55:8.286" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to stopping fighting.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Stop fighting</AUni> -</Name> -<Questions> -<objsur guid="af8dc409-ef92-4dba-923a-d23ffc589748" t="o" /> -<objsur guid="ff55700a-b164-4412-ac46-9d5a5912615e" t="o" /> -<objsur guid="9ba91ed7-e2eb-4222-ac97-2701490e0136" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="9e2c2725-abfa-4753-be03-39d1b38c5064" ownerguid="ca9c215a-e568-4d09-b3a9-b5727cd831d6"> -<ExampleWords> -<AUni ws="en">cremate, cremation, pyre, ashes</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to burning a body?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9e30ddc7-57fb-424d-bae9-86c213864e92" ownerguid="b8301711-721e-4841-8193-efcc546dea16"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="41945ba0-8631-4e37-928b-0eeec193147f" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">thick</AUni> -<AUni ws="es">grueso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8095133d-2251-4076-bb90-27d8ab18d96c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="9e31b57d-e54b-49e0-b2d9-81938449f024"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ciga:rru</AUni> -<AUni ws="qvm-x-acl">ciga:rru; ciga:rru; ciga:rro</AUni> -<AUni ws="qvm-x-akh">ciga:rru</AUni> -<AUni ws="qvm-x-akl">ciga:rru; ciga:rru; ciga:rro</AUni> -<AUni ws="qvm-x-ame">ciga:rru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cigarro</AUni> -<AUni ws="qvm-x-acl">+cigarro</AUni> -<AUni ws="qvm-x-akh">+cigarro</AUni> -<AUni ws="qvm-x-akl">+cigarro</AUni> -<AUni ws="qvm-x-ame">+cigarro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.120" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="94183f5f-3355-4455-9701-2dbffb057a76" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cigarro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fc54f417-e803-4ead-969d-9af9582c5771" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0f8b8b06-496c-4ea0-96eb-64830a570dae" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cigarro 
\entryTyp root 
\gENG cigarrette 
\gSPN cigarro 
\e +cigarro 
\c N0 
\ach ciga:rru 
\akh ciga:rru 
\acl ciga:rru / _# 
\acl ciga:rru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ciga:rro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ciga:rru / _# 
\akl ciga:rru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ciga:rro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ciga:rru</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="9e39793f-6f7f-4cba-aeb9-69fb47036cf3" ownerguid="feb45ae0-0c1b-48a4-a258-c4edf4159d39" /> -<rt class="CmDomainQ" guid="9e3b5442-038f-4e63-98f6-68dbde9b1a52" ownerguid="5c348090-12f4-4c83-8331-e10971bbc8d3"> -<ExampleWords> -<AUni ws="en">meat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to meat?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9e3b9734-d3aa-43e9-8ef5-e5680a379633" ownerguid="262fc4ae-7735-465b-934b-2125d95de147"> -<ExampleWords> -<AUni ws="en">jealous, possessive, envious, green with envy, covetous, jaundiced, resentful, bitter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels jealous?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9e3fb8cb-7475-455b-a887-ba979c737750" ownerguid="fbe55ac6-7f80-4f5f-ae49-438900095620"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="9e409988-4e1d-45fa-8176-595e955af9d4" ownerguid="14dc9eeb-191d-4bb1-8782-f74926482b23"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="9e44d8b3-f58d-4d56-a06a-cf4b41de575a" ownerguid="bc23a3e4-5815-4938-8a97-eedf3ec06cfd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="9e6c783f-0744-4559-aded-f9efc38cd73d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9e4888fd-c7cf-426e-acad-4b401f6ec725" ownerguid="08c05e00-9660-4491-af2f-a05fab27ef39"> -<ExampleWords> -<AUni ws="en">try to lose weight, watch your weight, watch your figure, diet, be on a diet, go on a diet, slim (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to trying to become thin?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9e4ad2ec-8c79-4eb8-a802-102603d83139" ownerguid="86c065ea-2420-4619-82d4-1d43527b3371"> -<ExampleWords> -<AUni ws="en">distribute, distribution, apportion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to distributing things to several people?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9e4bf6e0-2eda-4066-84cd-3913b93987ca" ownerguid="380b0d15-77a1-49ba-ad83-a508e7ffb83d"> -<ExampleWords> -<AUni ws="en">terrible (storm), howling (blizzard), raging (storm)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe the intensity of a storm?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9e4daee2-fa71-4fbe-aae1-ba5c26ffa9af" ownerguid="91913920-8a6a-4ba0-9361-d6cc9e1f3639"> -<ExampleWords> -<AUni ws="en">handle, grip</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the part of something used to hold it?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9e4ee679-cea5-4aac-b5c8-f69514e048ff" ownerguid="d6c29733-beeb-4fc9-975f-5e78a8acc273"> -<ExampleWords> -<AUni ws="en">work well, give it your best, do your best, skill, skillful, skillfully</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to working well?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9e53f396-f9ed-4f40-a999-e3e9d36e4f69"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maya</AUni> -<AUni ws="qvm-x-acl">maya</AUni> -<AUni ws="qvm-x-akh">maya</AUni> -<AUni ws="qvm-x-akl">maya</AUni> -<AUni ws="qvm-x-ame">maya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*maya.r</AUni> -<AUni ws="qvm-x-acl">*maya.r</AUni> -<AUni ws="qvm-x-akh">*maya.r</AUni> -<AUni ws="qvm-x-akl">*maya.r</AUni> -<AUni ws="qvm-x-ame">*maya.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.376" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="df45e95e-67c5-496c-9ae5-18a97b29743c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*maya.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9dc9b32c-4dc9-4678-81c6-3eb751860553" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="92913196-b794-426c-acd8-9c78fd88b526" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *maya.r 
\entryTyp root 
\gENG alert 
\gSPN alerto 
\e *maya.r 
\c R0 
\ach maya 
\akh maya 
\acl maya 
\akl maya 
\ame maya 
\mcc *maya.r / ~_ 3P</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="9e557906-cf40-42e2-9aee-925b95fd7733" ownerguid="4affa918-4258-4b12-8241-d04191d05abe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="94904f8f-b165-451f-90aa-7ad546e67573" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">collect</AUni> -<AUni ws="es">recoger</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="48cf9176-b1e9-4729-a59c-37e6525fa49b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="9e587127-4f2c-4796-9c67-d37332b57303" ownerguid="444407f2-0c75-4bb9-a84c-cbd52d0fa9c9"> -<Abbreviation> -<AUni ws="en">2.6.4.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a peer group--all the people who were born during the same time period.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Peer group</AUni> -</Name> -<OcmCodes> -<Uni>561 Age Stratification</Uni> -</OcmCodes> -<Questions> -<objsur guid="1f4c3eed-4e2c-4be6-a886-6ff6f5cecadc" t="o" /> -<objsur guid="e48e84b3-3f67-4b76-a0ff-5062559ba572" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="615674ac-8158-4089-ae70-b55472fd279b" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="9e589440-28a7-4313-91d9-9c2510476605"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uyu</AUni> -<AUni ws="qvm-x-acl">uyu; uyu; uyo</AUni> -<AUni ws="qvm-x-akh">uyu</AUni> -<AUni ws="qvm-x-akl">uyu; uyu; uyo</AUni> -<AUni ws="qvm-x-ame">uyu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uyu.n</AUni> -<AUni ws="qvm-x-acl">*uyu.n</AUni> -<AUni ws="qvm-x-akh">*uyu.n</AUni> -<AUni ws="qvm-x-akl">*uyu.n</AUni> -<AUni ws="qvm-x-ame">*uyu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.312" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="be2073bb-35a1-401d-bac5-ba4c17400bbb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uyu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bcba6d75-2fec-4e45-9be8-b482a45ce306" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="973be127-4dec-448f-9e21-27d154944bfa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uyu.n 
\entryTyp root 
\gENG thin 
\gSPN flaco 
\e *uyu.n 
\c N0 
\ach uyu 
\akh uyu 
\acl uyu / _# 
\acl uyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl uyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl uyu / _# 
\akl uyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl uyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame uyu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="9e5b1380-4864-41e4-ab95-69bd5929faf3" ownerguid="cee40abd-eed9-4cc2-b343-9e15e488df40"> -<Form> -<AUni ws="qvm-x-ach">warmïshu</AUni> -<AUni ws="qvm-x-acl">warmïshu; warmïshu; warmïsho</AUni> -<AUni ws="qvm-x-akh">warmïshu</AUni> -<AUni ws="qvm-x-akl">warmïshu; warmïshu; warmïsho</AUni> -<AUni ws="qvm-x-ame">warmïshu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="9e5ce494-5700-49d5-92ec-7246320156e2" ownerguid="19b51f5a-9c14-4e64-88fd-f0517de6e817"> -<Form> -<AUni ws="qvm-x-ach">verdi; verde</AUni> -<AUni ws="qvm-x-acl">verdi; verdi; verde</AUni> -<AUni ws="qvm-x-akh">verdi; verde</AUni> -<AUni ws="qvm-x-akl">verdi; verdi; verde</AUni> -<AUni ws="qvm-x-ame">verdi; verde</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="9e5df875-3579-4c7e-89fe-38b5f2a1fe51" ownerguid="a9f5ead1-80d8-4344-8860-f035cb403617"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="9e61a509-b7fd-422e-bd51-42e6be23fd60"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">desmantela</AUni> -<AUni ws="qvm-x-acl">desmantela</AUni> -<AUni ws="qvm-x-akh">desmantela</AUni> -<AUni ws="qvm-x-akl">desmantela</AUni> -<AUni ws="qvm-x-ame">desmantela</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+desmantelar</AUni> -<AUni ws="qvm-x-acl">+desmantelar</AUni> -<AUni ws="qvm-x-akh">+desmantelar</AUni> -<AUni ws="qvm-x-akl">+desmantelar</AUni> -<AUni ws="qvm-x-ame">+desmantelar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.386" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ada8db99-c952-4314-84a9-6ad0aaa3b8ef" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+desmantelar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3965539f-3ced-4670-8d64-0a2b5215ed2b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ee53cdfe-d296-479d-9dc3-b5ff7aa6cce4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +desmantelar 
\entryTyp root 
\gENG 
\gSPN 
\e +desmantelar 
\c V1 
\ach desmantela 
\akh desmantela 
\acl desmantela 
\akl desmantela 
\ame desmantela</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="9e64b1e7-927f-4ba6-99a3-c53fb9e88806" ownerguid="f4aa9013-6ff2-43af-8b86-98fb80591271"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="9e6528e7-35dd-4b61-8549-e66fa5c4b0c2" ownerguid="4db0b9be-4c9c-47b8-a0d8-d16f147564fe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="9e285fa9-7e38-4225-8378-c10a367868d8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="9e66a042-6748-4186-8a0d-66e194b4039c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shuti</AUni> -<AUni ws="qvm-x-acl">shuti; shuti; shute</AUni> -<AUni ws="qvm-x-akh">shuti</AUni> -<AUni ws="qvm-x-akl">shuti; shuti; shute</AUni> -<AUni ws="qvm-x-ame">shuti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shuti</AUni> -<AUni ws="qvm-x-acl">*shuti</AUni> -<AUni ws="qvm-x-akh">*shuti</AUni> -<AUni ws="qvm-x-akl">*shuti</AUni> -<AUni ws="qvm-x-ame">*shuti</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.662" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7ac41a57-16af-47cb-aef7-d898d3712df6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shuti</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="582498a9-f405-48b9-9fc9-264f9912a342" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="48486f9d-84ae-4098-b823-439c9abc578a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shuti 
\entryTyp root 
\gENG 
\gSPN bolsa.para.coca 
\e *shuti 
\c N0 
\mp +FinalI 
\ach shuti 
\akh shuti 
\acl shuti / _# 
\acl shuti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shute +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shuti / _# 
\akl shuti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shute +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shuti</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="9e680670-ab57-419f-87c9-f2a1f77030aa" ownerguid="2c5ce276-75ea-4fcd-9224-0796162d675e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sentry.boys</AUni> -<AUni ws="es">alguacil</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="71d13442-06a9-4f20-8f41-48381908011f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="9e6c783f-0744-4559-aded-f9efc38cd73d" ownerguid="bc23a3e4-5815-4938-8a97-eedf3ec06cfd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="9e6d5545-59da-4599-b1d8-75c536f036d7" ownerguid="9281bb5e-a0f7-44df-b4a7-1a10c820d35a"> -<Form> -<AUni ws="qvm-x-ach">auri</AUni> -<AUni ws="qvm-x-acl">auri; aure</AUni> -<AUni ws="qvm-x-akh">awri</AUni> -<AUni ws="qvm-x-akl">awri; awre</AUni> -<AUni ws="qvm-x-ame">awri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="9e6d7c69-788c-4d40-8584-32f185e91932" ownerguid="c82fa28f-7e26-489e-a244-4d69cea87b94"> -<Abbreviation> -<AUni ws="en">6.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to hunting and fishing--catching and killing wild animals.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>44 Animal Husbandry, Fishing</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Hunt and fish</AUni> -</Name> -<OcmCodes> -<Uni>220 Food Quest; 221 Annual Cycle; 222 Collecting</Uni> -</OcmCodes> -<Questions> -<objsur guid="66c0dd72-d274-4e15-aaf5-97af65054724" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="a1ce19c4-d12c-46da-a718-6d03949b3db1" t="o" /> -<objsur guid="196f81d0-6a1a-4cc0-936a-367423ff485c" t="o" /> -<objsur guid="4e0992cd-c04c-4b55-beab-6b0a3c98a994" t="o" /> -<objsur guid="b0e2635e-47c4-4995-942b-07f6635faf6f" t="o" /> -<objsur guid="ea46de30-a1a9-4828-84a8-9165f61f8b20" t="o" /> -<objsur guid="7c234ccc-0dbe-42b0-a377-db99ebd2b51e" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoInflAffMsa" guid="9e717853-bae2-43ea-877b-f3cc67789d3b" ownerguid="386a1ffc-4c9b-4b9c-aefd-fa6fa089967e"> -<PartOfSpeech> -<objsur guid="a4fc78d6-7591-4fb3-8edd-82f10ae3739d" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="f9e1228b-4c5b-4e23-bd04-d513eddcbaea" t="r" /> -</Slots> -</rt> -<rt class="CmDomainQ" guid="9e74e54b-5458-41f1-9a12-c1bf0a6840e4" ownerguid="afa77a2a-8b0f-4a39-91bc-040e90ffbb3a"> -<ExampleWords> -<AUni ws="en">make someone happy, cheer someone up, comfort, console, delight, gladden, please, satisfy, put someone in a good mood, make someone's day, raise someone's spirits, lift someone's spirits</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to causing someone to feel happy?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="9e775794-3dda-4942-b6af-087ffd57f342" ownerguid="91913920-8a6a-4ba0-9361-d6cc9e1f3639"> -<Abbreviation> -<AUni ws="en">8.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.678" /> -<DateModified val="2022-9-23 16:55:8.678" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the side part of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Side</AUni> -</Name> -<Questions> -<objsur guid="234d71bb-c6b8-4d6b-9cfe-3d847d335a82" t="o" /> -<objsur guid="cf7b3f5c-0a6d-44bc-bb12-888dc51e7a23" t="o" /> -<objsur guid="df393d3e-5d16-454f-88d3-835e9b77d6be" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="9e7d1d54-7e40-4d49-be76-e8a24a027a9b" ownerguid="aa0cf39b-b6de-4142-902e-fddeaa4771fa"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9e8769ca-d997-4c0d-963e-9abdbbe3cf6a" ownerguid="afc25fbb-9060-4af2-8225-3fddbab2227d"> -<ExampleWords> -<AUni ws="en">patient, persevering, accommodating</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is patient?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9e87dc31-103d-49fd-97bd-d459c7c4f0c5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">forma</AUni> -<AUni ws="qvm-x-acl">forma</AUni> -<AUni ws="qvm-x-akh">forma</AUni> -<AUni ws="qvm-x-akl">forma</AUni> -<AUni ws="qvm-x-ame">forma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+formar</AUni> -<AUni ws="qvm-x-acl">+formar</AUni> -<AUni ws="qvm-x-akh">+formar</AUni> -<AUni ws="qvm-x-akl">+formar</AUni> -<AUni ws="qvm-x-ame">+formar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.578" /> -<DateModified val="2022-10-10 21:18:47.218" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="35994c9e-faa0-4c61-a45a-d52c8bbbed75" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+formar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2951f40e-8323-46f8-8a16-9a02c5b8ed18" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e56b6fd4-d783-448e-b65d-7fff2810cf62" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +formar 
\entryTyp root 
\gENG 
\gSPN 
\e +formar 
\c V2 
\ach forma 
\akh forma 
\acl forma 
\akl forma 
\ame forma 
\i EXO 6.26 Paycunatami Tayta Dios nergan Israel runacunata soldädutanograg formashgata Egiptupita jorgamunanpag.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="9e8b331c-da61-4881-b7ed-0bf3f07ce88f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ñabaja</AUni> -<AUni ws="qvm-x-acl">ñabaja</AUni> -<AUni ws="qvm-x-akh">ñabaja</AUni> -<AUni ws="qvm-x-akl">ñabaja</AUni> -<AUni ws="qvm-x-ame">ñabaja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+nabaja</AUni> -<AUni ws="qvm-x-acl">+nabaja</AUni> -<AUni ws="qvm-x-akh">+nabaja</AUni> -<AUni ws="qvm-x-akl">+nabaja</AUni> -<AUni ws="qvm-x-ame">+nabaja</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.535" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ccea91d4-0498-430b-a9d0-6aaa7fb9469a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+nabaja</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5338ce99-d43c-4b44-8c19-f19e6e266413" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="022ba925-aac2-4b4d-a7d6-c07c4d66b23d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +nabaja 
\entryTyp root 
\gENG pocket.knife 
\gSPN nabaja 
\e +nabaja 
\c N0 
\ach ñabaja 
\akh ñabaja 
\acl ñabaja 
\akl ñabaja 
\ame ñabaja</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="9e8ce636-ca1a-4c33-a06a-a88978abc25a" ownerguid="2a42bdae-8ce6-4b08-84f4-7d1cc3487d27"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">corral</AUni> -<AUni ws="es">corral</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8ebeeb23-abb5-458c-ad5c-f6b799c7f66a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="9e8d3ff5-82b6-4294-9be4-7bdb7191f516" ownerguid="ea67b3b5-f3d6-407b-9222-ea54265ab382"> -<Form> -<AUni ws="qvm-x-ach">shinca</AUni> -<AUni ws="qvm-x-acl">shinca</AUni> -<AUni ws="qvm-x-akh">shinka</AUni> -<AUni ws="qvm-x-akl">shinka</AUni> -<AUni ws="qvm-x-ame">shinka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9e8e260a-7391-460a-97f8-653b1540d576" ownerguid="e080687b-0900-4dd0-9677-e3aaa3eae641"> -<ExampleWords> -<AUni ws="en">tell, explain, demonstrate, give instructions</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to explaining how something works or how to do something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9e8e98d6-7eb4-4b6c-a1c0-a5b47bcbd8c3" ownerguid="e258eee9-5bc3-4ede-a5b1-7086af736d64"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="9e909f03-59d3-4560-a61b-efa3b583ed3d" ownerguid="bf292d0e-f15c-4083-aebb-0673efe33125"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="9e90dbd6-46fa-4905-9872-039c8afcf858" ownerguid="24605a88-4c28-4db6-b209-a6fca2fddd9e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">sacrificio de paz</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="9e940a56-a94f-49b1-a795-d8a78b83d26b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">insectu; insecto</AUni> -<AUni ws="qvm-x-acl">insectu; insectu; insecto</AUni> -<AUni ws="qvm-x-akh">insectu; insecto</AUni> -<AUni ws="qvm-x-akl">insectu; insectu; insecto</AUni> -<AUni ws="qvm-x-ame">insectu; insecto</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+insecto</AUni> -<AUni ws="qvm-x-acl">+insecto</AUni> -<AUni ws="qvm-x-akh">+insecto</AUni> -<AUni ws="qvm-x-akl">+insecto</AUni> -<AUni ws="qvm-x-ame">+insecto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.822" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0614e7cf-440c-4ee6-81af-3175b0e00b77" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+insecto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="22ec1ad2-9080-4ae8-83e2-731ffe1c33f0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2d1e4abb-1430-452e-9ca9-384d85970b49" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +insecto 
\entryTyp root 
\gENG 
\gSPN 
\e +insecto 
\c N0 
\ach insectu / ~_# 
\ach insecto / _# 
\akh insectu / ~_# 
\akh insecto / _# 
\acl insectu / ~_# 
\acl insectu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl insecto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl insectu / ~_# 
\akl insectu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl insecto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame insectu / ~_# 
\ame insecto / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9e963c0b-e872-403b-8103-4759b18a3cbe" ownerguid="cb95189c-8c74-465b-af07-48e08dbf7c39"> -<ExampleWords> -<AUni ws="en">feel, experience</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling something?</AUni> -</Question> -</rt> -<rt class="PhPhoneme" guid="9e9886d6-589e-4538-9509-5532fbe76ef1" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="a8b21d03-bc20-4eda-bf1d-88fd63d99460" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">palatal affricate</Run> -</AStr> -</Description> -<Name> -<AUni ws="qvm-x-ach">ch</AUni> -<AUni ws="qvm-x-acl">ch</AUni> -<AUni ws="qvm-x-akh">ch</AUni> -<AUni ws="qvm-x-akl">ch</AUni> -<AUni ws="qvm-x-ame">ch</AUni> -</Name> -</rt> -<rt class="CmSemanticDomain" guid="9e98c76f-6c1c-4b7d-8f71-38f9f0e8750e" ownerguid="811e8c93-d97a-4aab-bd67-268b7783ff11"> -<Abbreviation> -<AUni ws="en">6.2.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.405" /> -<DateModified val="2022-9-23 16:55:8.405" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to uprooting plants.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Uproot plants</AUni> -</Name> -<Questions> -<objsur guid="4dd8b7aa-8853-4313-a5ad-0b14c5e4129f" t="o" /> -<objsur guid="70958988-2990-4aa4-b0bf-49e4124ab0f9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="9e98f0a7-168c-4a6d-9900-32091d50b2c3" ownerguid="68ed3e51-ddc4-4cec-89ff-605259ac9fcf"> -<ExampleWords> -<AUni ws="en">nose</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the nose?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9ea337af-73db-494f-bd9b-9dfd112d252a" ownerguid="e54f6ad6-aec7-4132-8c48-33922bcdde05"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9ea3a5db-ee55-4207-925a-990b81158c59" ownerguid="08d5e632-0aed-4924-b3bb-d43de3420385"> -<ExampleWords> -<AUni ws="en">obituary, eulogy, epitaph</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something someone says about a dead person?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9ea3af27-d808-4bb4-b705-7b1c93d51326" ownerguid="8a81b9bc-9c66-4d57-a2d1-2e592604c4b1"> -<ExampleWords> -<AUni ws="en">full, full up, bulging, be full to the brim, be bursting at the seams, be full to capacity, be chock-a-block, be packed out, be up to the brim, brimful, brimming, bursting, charged, chock-full, chockablock, jam-packed, jammed, loaded, replete, saturated, soaked, stuffed, supercharged</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is full?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="9ea5aa99-9806-46a9-af70-e80c3f8faaa0" ownerguid="5557909e-dd68-490a-8495-66bc75256739"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="9ea6cb48-9a4d-4259-9f33-b29f2309c1f6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gobernador</AUni> -<AUni ws="qvm-x-acl">gobernador</AUni> -<AUni ws="qvm-x-akh">gobernador</AUni> -<AUni ws="qvm-x-akl">gobernador</AUni> -<AUni ws="qvm-x-ame">gobernador</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gobernador</AUni> -<AUni ws="qvm-x-acl">+gobernador</AUni> -<AUni ws="qvm-x-akh">+gobernador</AUni> -<AUni ws="qvm-x-akl">+gobernador</AUni> -<AUni ws="qvm-x-ame">+gobernador</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.617" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0778b6b5-9da4-455c-8386-cdc1ce057da4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gobernador</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7da408c5-a085-4b6c-8f57-c9d4720a7f18" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="14724f5b-48b9-4a8c-8c4d-69b36b5c05c0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gobernador 
\entryTyp root 
\gENG governor 
\gSPN gobernador 
\e +gobernador 
\c N0 
\mp +FinalC 
\ach gobernador 
\akh gobernador 
\acl gobernador 
\akl gobernador 
\ame gobernador</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="9ea87731-00f2-4f6e-bf73-2a902395a2e9" ownerguid="ea45500a-0223-4990-87b2-5e062708645c"> -<Form> -<AUni ws="qvm-x-ach">pasaypa</AUni> -<AUni ws="qvm-x-acl">pasaypa</AUni> -<AUni ws="qvm-x-akh">pasaypa</AUni> -<AUni ws="qvm-x-akl">pasaypa</AUni> -<AUni ws="qvm-x-ame">pasaypa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="9eaa5e3f-c40a-4e8f-a63f-de486cf9ad17" ownerguid="5b1f9d8e-5ac6-4c09-887c-03e11aa2e070"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="9eaad86a-ba31-4ea5-8601-c90cfe296476"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">marpu</AUni> -<AUni ws="qvm-x-acl">marpu; marpo</AUni> -<AUni ws="qvm-x-akh">marpu</AUni> -<AUni ws="qvm-x-akl">marpu; marpo</AUni> -<AUni ws="qvm-x-ame">marpu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*marpu.v</AUni> -<AUni ws="qvm-x-acl">*marpu.v</AUni> -<AUni ws="qvm-x-akh">*marpu.v</AUni> -<AUni ws="qvm-x-akl">*marpu.v</AUni> -<AUni ws="qvm-x-ame">*marpu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.346" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="11d6aed5-7a8f-44f7-89c6-45f502426208" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*marpu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="114a6f9f-ac38-4525-ae0c-aad56eabafed" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c4bb5764-5075-47f4-890e-249aa05f3078" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *marpu.v 
\entryTyp root 
\gENG fall 
\gSPN caerse 
\e *marpu.v 
\c V1 
\ach marpu 
\akh marpu 
\acl marpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl marpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl marpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl marpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame marpu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="9eacb978-d888-4ace-9a4a-455abe5b071b" ownerguid="5151d545-a147-4c16-b63f-7a8bfeb75c3c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yarpa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yarpa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yarpa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yarpa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yarpa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="390d6b92-9796-4636-b528-170a1b6aa62a" t="r" /> -</Morph> -<Msa> -<objsur guid="19ab5cf1-1864-4db0-94a6-3ed04ddf2ef7" t="r" /> -</Msa> -<Sense> -<objsur guid="b76c1d77-e3dc-4a8b-9cf7-6fb696740bed" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="9eadd071-a8c9-47e4-ab54-8d1758ba6459" ownerguid="d8dd9aea-ceb9-44e3-8758-97d435c730c3"> -<Form> -<AUni ws="qvm-x-ach">conträtu</AUni> -<AUni ws="qvm-x-acl">conträtu; conträtu; conträto</AUni> -<AUni ws="qvm-x-akh">conträtu</AUni> -<AUni ws="qvm-x-akl">conträtu; conträtu; conträto</AUni> -<AUni ws="qvm-x-ame">conträtu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="9eae4253-ffc1-4515-9ca5-5716bb4fd648"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mi:di</AUni> -<AUni ws="qvm-x-acl">mi:di; mi:de</AUni> -<AUni ws="qvm-x-akh">mi:di</AUni> -<AUni ws="qvm-x-akl">mi:di; mi:de</AUni> -<AUni ws="qvm-x-ame">mi:di</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+medir</AUni> -<AUni ws="qvm-x-acl">+medir</AUni> -<AUni ws="qvm-x-akh">+medir</AUni> -<AUni ws="qvm-x-akl">+medir</AUni> -<AUni ws="qvm-x-ame">+medir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.396" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a76dc37e-6d7c-4ae4-a56f-e19dc3dc5433" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+medir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="920d2c5f-d824-4436-bf71-26b381612203" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="26764ffd-a0f0-4c0c-9e9f-94479e019684" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +medir 
\entryTyp root 
\gENG measure 
\gSPN medir 
\e +medir 
\c V2 
\mp +FinalI 
\ach mi:di 
\akh mi:di 
\acl mi:di +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl mi:de +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mi:di +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mi:de +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mi:di</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="9eaf1d79-fa5d-4ca1-884c-62a316b13404" ownerguid="50d06ec2-c978-4c12-83dc-c2e2d919f465"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 BN/BN R0/R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">LIM2</AUni> -<AUni ws="es">LIM2</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="72dc7bab-4d12-4cdb-a144-3c853f889fb5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="9eb0947d-f902-460a-b8e0-30857e7bb37a" ownerguid="9a9c3523-b946-4d8a-9177-c56080f07519"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="69a34042-28dd-4007-b833-570dfb2fbefa" t="o" /> -<objsur guid="043559be-6d45-43a7-ae4a-9f1568f8cd19" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="9eb190fd-172d-4ab4-bffa-e3ddcbcaab63" ownerguid="ba5c0547-c470-496f-a206-4109f1333f3c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fearfully</AUni> -<AUni ws="es">con.temor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="edbc24cd-33ff-44d6-90b3-d4e601cf162e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="9eb2db55-c39c-4f11-bc8c-525ceb6d1662" ownerguid="2f16311f-c325-492c-a958-93c1f5ea057d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="9eb48f8c-ef4f-4a20-9dd7-77c0d572c4ee" ownerguid="de972142-b8c4-4d5f-8fa2-f1ab61d4b33e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="9eb5ff90-654d-4d5a-863c-ce655e84a049" ownerguid="d1687857-0f1d-4098-affb-b283a6677b6b"> -<ExampleWords> -<AUni ws="en">generally, broad</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is done by most people?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9eb708c5-56b0-475e-8f0d-e417521ec42a" ownerguid="bdcde8dd-d02f-4682-a697-1a6f5ea24dbf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="284a664a-51da-48c1-8ebc-a5589fc40942" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9eb88d3a-098d-416c-9498-ac1061af8e60" ownerguid="3dba39bc-48f2-4bcb-9357-c8fbed6922ca"> -<ExampleWords> -<AUni ws="en">promise, agree, commit, guarantee, assure, swear</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to promising to do something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9ebd5bca-91ba-46b6-9faf-13d78fab1a12" ownerguid="180a2220-942c-4e17-96ee-cd4f63a4c715"> -<ExampleWords> -<AUni ws="en">soil, topsoil, earth, earthen, ground, loam, clay, dirt, dirty, sand, sandy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to soil?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9ec06467-087d-4fdc-ba57-25a2a454cf37" ownerguid="70e2867f-a306-48e2-8bef-1308c97b7c35"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">skull</AUni> -<AUni ws="es">calavera</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="196cf46a-00a8-4e9d-9162-721a3dc56067" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="9ec102c7-15e4-4695-9132-0e05ba68ce9e" ownerguid="53939045-85a6-421c-a7a9-ac39f48bb604"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pita</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pita</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pita</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pita</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pita</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ef81e8c3-e8c7-4bf5-9fdb-ebd4284a70bd" t="r" /> -</Morph> -<Msa> -<objsur guid="c516d14b-9b18-44a7-8c37-97267a8b8796" t="r" /> -</Msa> -<Sense> -<objsur guid="75f1d891-753c-42a9-8f14-18fa3dd1767b" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="9ec109d0-1d4e-416d-80db-b765bc54b093" ownerguid="5ff33204-fa18-4008-9b22-56647edb534b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="efd13c3d-dbbc-4e73-9674-a9b9858a9d43" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9ec1f8dc-2f20-409e-aaf4-c7d9acbfe68e" ownerguid="0aae0254-dc06-4906-8ecf-2d8450fb83f1"> -<ExampleWords> -<AUni ws="en">lie on your back/front/side, stretched out, spread-eagled, sprawled, flat out, reclining</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe how a person is lying?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9ec2691c-ae80-441d-84cc-456f6f90265b" ownerguid="64d112a2-be5c-41c5-aa4c-2010afdb8fec"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="3b9bd1a8-c522-4272-81ec-ba43f3911dab" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="9ec3d097-cb08-466f-98b1-d38fb7ff740e" ownerguid="175a97dc-d29c-40d3-8b7d-31c0520d4980"> -<Form> -<AUni ws="qvm-x-ach">recita</AUni> -<AUni ws="qvm-x-acl">recita</AUni> -<AUni ws="qvm-x-akh">recita</AUni> -<AUni ws="qvm-x-akl">recita</AUni> -<AUni ws="qvm-x-ame">recita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="9ec62ffe-69be-4b9b-944c-29a0f4f133db" ownerguid="01459db0-bf2a-422b-8d55-0ab505aea2b4"> -<Abbreviation> -<AUni ws="en">4.4.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to accidents--something bad that happens without anyone wanting it to happen or doing anything to cause it to happen.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Accident</AUni> -</Name> -<Questions> -<objsur guid="ae2939f6-c8db-4a81-95b7-8d99f9564796" t="o" /> -<objsur guid="bcc5eb6f-d2de-404e-b899-eae0d4393227" t="o" /> -<objsur guid="e8615c64-73c9-4153-b874-3b214e6a6bc2" t="o" /> -<objsur guid="6a0b3f3f-f7f1-4e04-b9a7-09de7ffb36df" t="o" /> -<objsur guid="17321cf5-d9cb-4de4-bb11-17c09fa27b53" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="9ecafa63-d487-4cf6-9a07-48e243b8c1a3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">intu</AUni> -<AUni ws="qvm-x-acl">intu; into</AUni> -<AUni ws="qvm-x-akh">intu</AUni> -<AUni ws="qvm-x-akl">intu; into</AUni> -<AUni ws="qvm-x-ame">intu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*intu</AUni> -<AUni ws="qvm-x-acl">*intu</AUni> -<AUni ws="qvm-x-akh">*intu</AUni> -<AUni ws="qvm-x-akl">*intu</AUni> -<AUni ws="qvm-x-ame">*intu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.832" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c596f09a-e522-47d9-8ddd-098bf29289e3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*intu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6b9ac07b-1336-4ee6-8586-1fb59b8c42f2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3cde4829-bbcd-45aa-a2e4-527b921fa3bf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *intu 
\entryTyp root 
\gENG gang.up.on 
\gSPN atacar 
\e *intu 
\c V2 
\ach intu 
\akh intu 
\acl intu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl into +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl intu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl into +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame intu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="9ecbe4dd-d8b5-4c0e-93ba-0af49bb92c03"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aguysha</AUni> -<AUni ws="qvm-x-acl">aguysha</AUni> -<AUni ws="qvm-x-akh">aquysha</AUni> -<AUni ws="qvm-x-akl">aquysha</AUni> -<AUni ws="qvm-x-ame">aquysha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aquysha</AUni> -<AUni ws="qvm-x-acl">*aquysha</AUni> -<AUni ws="qvm-x-akh">*aquysha</AUni> -<AUni ws="qvm-x-akl">*aquysha</AUni> -<AUni ws="qvm-x-ame">*aquysha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.931" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9916ae12-fcd2-4bef-bad1-a1d5d408abc5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aquysha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="22043cbd-d2df-4275-8be4-6e34f5d03fa9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="08fcdb12-d304-47f1-8403-add46a679e9b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aquysha 
\entryTyp root 
\gENG sand 
\gSPN arena 
\e *aquysha 
\c N0 
\ach aguysha 
\akh aquysha 
\acl aguysha 
\akl aquysha 
\ame aquysha</Run> -</AStr> -</Custom> -</rt> -<rt class="StStyle" guid="9ece8f19-30f0-43a0-bf7b-9e5f33c6cea7" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="0" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Deleted Text</Uni> -</Name> -<Rules> -<Prop forecolor="red" undercolor="red" underline="strikethrough"></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<Usage> -<AUni ws="en">Material marked as being deleted</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="CmDomainQ" guid="9ecff319-d83a-437a-b37c-49bf92c9dc58" ownerguid="c7c85346-158d-4881-839d-9a6a8e47209b"> -<ExampleWords> -<AUni ws="en">stir, make a move</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to beginning to move?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9ed12150-bd31-430d-a0e8-d5c8c3707900" ownerguid="3fdba5e5-eb24-4b2f-a6fc-d1ed7397c39c"> -<ExampleWords> -<AUni ws="en">class, grade, form, year, set, student body</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a group of students in a school?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9ed282bc-5c69-4057-8e8a-389b0e6e9c96" ownerguid="d6666db3-af56-416a-b89f-5752f6ad2422"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cut.bushes</AUni> -<AUni ws="es">cortar.arbusto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="66f50eed-5da9-4c3d-8c23-652259cc6674" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="9ed42115-8532-4f99-b0c0-36abfe9db652" ownerguid="785e7f1f-21ed-46b6-8599-c6ced4fd26d8"> -<Abbreviation> -<AUni ws="en">4.5.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.256" /> -<DateModified val="2022-9-23 16:55:8.256" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to low social status.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>87D Low Status or Rank</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Low status</AUni> -</Name> -<Questions> -<objsur guid="a73211ff-cea4-4bb7-b83b-c194507c474f" t="o" /> -<objsur guid="d002f798-6e8a-4ba3-acda-96fa93df5f59" t="o" /> -<objsur guid="f886f89a-7362-4cdf-8a7b-6ec4d7a104ef" t="o" /> -<objsur guid="fff2c8a6-baf5-4e14-af30-6200fe7958be" t="o" /> -<objsur guid="bb45c385-8f70-47b3-94f0-353cdbd2b8bb" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="9ed53efa-7278-448e-ace4-39f8950dde9e" ownerguid="c0890e46-90e8-4364-a82a-70f169c97b59"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Lev 11</Run> -</AStr> -</Example> -</rt> -<rt class="LexExampleSentence" guid="9ed5ab14-a4a3-41d4-b626-48c177d2955f" ownerguid="42378eb9-7411-46c7-8b90-d25ee5da20d6"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2CH 21.2 Paycuna cargan finädu Josafatpa tsurincunami.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="9ed66151-c144-4e5e-a3a2-f5d08b0c9bb8" ownerguid="4f485a60-e3ba-42e6-9d59-185305c5d1f2"> -<Abbreviation> -<AUni ws="en">8.5.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating a backward direction.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Backward</AUni> -</Name> -<Questions> -<objsur guid="7bb47af2-b136-49cb-a569-848c5c5e0630" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="9ed9b96f-9e6c-41b4-af61-b323e4586764" ownerguid="f2027748-f208-4392-a6e6-e34020699ecd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="9edd1d74-f08a-4f5e-a196-3478c9a9d111"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tra:za</AUni> -<AUni ws="qvm-x-acl">tra:za</AUni> -<AUni ws="qvm-x-akh">tra:za</AUni> -<AUni ws="qvm-x-akl">tra:za</AUni> -<AUni ws="qvm-x-ame">tra:za</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+traza</AUni> -<AUni ws="qvm-x-acl">+traza</AUni> -<AUni ws="qvm-x-akh">+traza</AUni> -<AUni ws="qvm-x-akl">+traza</AUni> -<AUni ws="qvm-x-ame">+traza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.880" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d1e0edff-bb92-4997-ba48-5defe05f030b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+traza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2ee3bb41-0248-41aa-b352-b8a1927cd48d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f7581dc1-442e-4c58-b01c-0794abd6404f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +traza 
\entryTyp root 
\gENG 
\gSPN 
\e +traza 
\c N0 
\ach tra:za 
\akh tra:za 
\acl tra:za 
\akl tra:za 
\ame tra:za</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9ede575a-5619-481d-bae8-cbdd484153ec" ownerguid="a9fe3347-12ae-4624-b55e-45ea42cdbf9b"> -<ExampleWords> -<AUni ws="en">trim, prune, cut back, thin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to trimming plants?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9ee20758-7d62-4e31-8038-2a35e7cfbec4" ownerguid="07476166-c5e5-4701-97d3-d97de8b5be6f"> -<ExampleWords> -<AUni ws="en">not know, be ignorant, be unaware of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to not knowing something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9ee35e7f-5001-4659-ad6d-8a5efcdeb1df" ownerguid="b7d23cf5-eb57-4aa9-bf97-259c0ac75d20"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">string</AUni> -<AUni ws="es">ensartar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6c98fba7-06c5-41f6-9a08-1f3bb1f514c2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="9ee5d44e-85e1-4b35-8949-ddcf800a1506" ownerguid="bca5430d-cc1a-4772-9ada-81d107cabfda"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="FsFeatStruc" guid="9ee92136-3d1e-4002-9a6f-53790d1f5855" ownerguid="84097b64-d9df-441f-a9d3-d11d4b9d9ea0"> -<FeatureSpecs> -<objsur guid="dc9973d5-5836-4832-92bc-53cba5b5402b" t="o" /> -</FeatureSpecs> -<Type> -<objsur guid="efc7ecdf-44ed-4b11-9eef-41aaa905ca65" t="r" /> -</Type> -</rt> -<rt class="CmDomainQ" guid="9ee92215-f0da-46e8-b6ef-875d006e922e" ownerguid="e442afe1-e7cd-4ab2-b456-963e2e041a1e"> -<ExampleWords> -<AUni ws="en">crawl, move at a snail's pace, creep along, inch forward, poke along, slowpoke, drag, mosey along, slow motion, plod, dawdle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving slowly?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="9eeae6c5-7920-421c-8d35-c7907d8f1e1a" ownerguid="2bdfe506-0a28-45bd-81e1-44dcedcc262a"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9eec928a-e293-4c1b-bc39-d8b90a767bc8" ownerguid="2e95bd1e-82f0-461d-8ca6-b5f1ce1fb180"> -<ExampleWords> -<AUni ws="en">get engaged, engagement, set a date</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to formally agreeing to get married?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9eedcbd6-c65f-4550-8d85-a20bdf903a09" ownerguid="1778b9f5-92c8-4f88-909b-a38926b5101a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="a12cd479-3728-43e3-8e7f-c92aebe8cf8c" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="0cf9b460-eca5-4975-af12-2e2951a2569b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="9eefcb1d-7d32-46cf-b09e-ecbc902cfd6c" ownerguid="a97909b2-5498-436d-80c4-549e1fcfd365"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chain</AUni> -<AUni ws="es">cadenar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b0dc3e89-90b9-4a12-81f9-0c429a8fa69e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="9ef41718-0161-4427-af6d-55c02e92b015"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sagchu</AUni> -<AUni ws="qvm-x-acl">sagchu; sagchu; sagcho</AUni> -<AUni ws="qvm-x-akh">saqchu</AUni> -<AUni ws="qvm-x-akl">saqchu; saqchu; saqcho</AUni> -<AUni ws="qvm-x-ame">saqchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*saqtru</AUni> -<AUni ws="qvm-x-acl">*saqtru</AUni> -<AUni ws="qvm-x-akh">*saqtru</AUni> -<AUni ws="qvm-x-akl">*saqtru</AUni> -<AUni ws="qvm-x-ame">*saqtru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.459" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bc862bff-88c2-4d04-b51c-4f127c3bf9a4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*saqtru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="29899511-9a0d-4342-aa07-e9fd001b22a9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f826020f-2d71-4101-a073-8e70bf135512" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *saqtru 
\entryTyp root 
\gENG 
\gSPN 
\e *saqtru 
\c N0 
\ach sagchu 
\akh saqchu 
\acl sagchu / _# 
\acl sagchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sagcho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl saqchu / _# 
\akl saqchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl saqcho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame saqchu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="9ef4d444-cec1-4e6f-af75-0f57d6febd71" ownerguid="87d27b82-e7f3-47e2-b510-6e6127ee7375"> -<Form> -<AUni ws="qvm-x-ach">melgay</AUni> -<AUni ws="qvm-x-acl">melgay</AUni> -<AUni ws="qvm-x-akh">melqay</AUni> -<AUni ws="qvm-x-akl">melqay</AUni> -<AUni ws="qvm-x-ame">milqay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9ef6802f-74ed-437b-b717-3dc26c378279" ownerguid="ffd0547e-e537-4614-ac3f-6d8cd3351f33"> -<ExampleWords> -<AUni ws="en">fur, wool, fleece, forelock, mane, hide, skin, meat, pelt, whisker, sheepskin, goatskin, leather</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What are the parts of the skin and hair?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9efa2471-64c9-4ad8-9364-f76c35da3769" ownerguid="5c3c3e1a-be20-489f-a454-daa2d6ca5bd7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="9efa7949-de15-499a-b382-4560e06c4fb4" ownerguid="c9aee4df-ac3e-4159-bd1a-060db1a5f070"> -<Abbreviation> -<AUni ws="en">3.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to saying something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33F Speak, Talk</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Say</AUni> -</Name> -<OcmCodes> -<Uni>191 Speech</Uni> -</OcmCodes> -<Questions> -<objsur guid="6181150d-2495-414f-aeb5-04f3bc434667" t="o" /> -<objsur guid="4e2a62fc-e5a3-4ebe-b793-83fcfc863abe" t="o" /> -<objsur guid="89076e27-08eb-4b5e-86ef-af7804ccb97f" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="1e9a0881-f715-4057-9af8-251cb8eec9da" t="o" /> -<objsur guid="e45b8bac-9623-4f84-a113-9dec13a8db64" t="o" /> -<objsur guid="ac2e424b-6aee-4031-8864-7b3f4a6fb5a3" t="o" /> -<objsur guid="ec1bcace-fc10-45df-8e1f-29bce1ef786a" t="o" /> -<objsur guid="77b4d6c1-87bf-4839-b4be-6a45119b700a" t="o" /> -<objsur guid="eafdea8e-521e-4614-8fd5-e8446adf9203" t="o" /> -<objsur guid="a4958dd9-03cc-4863-ab76-cd0682060cb0" t="o" /> -<objsur guid="bc9d763c-e4fe-48ab-ad44-87a36f6cc06f" t="o" /> -<objsur guid="3dba39bc-48f2-4bcb-9357-c8fbed6922ca" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="9efb950b-4bbe-4301-b51a-707fb07f36d8" ownerguid="d086c2ad-2d11-4250-a25a-dc6538439db6"> -<ExampleWords> -<AUni ws="en">couple, pair, duo, twosome, duet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to two people who do things together?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="9eff61ec-e63c-43cb-b776-11363f841f24" ownerguid="8b0ba7f9-ce29-4d56-93f2-7df1378ca60e"> -<Form> -<AUni ws="qvm-x-ach">rïcu</AUni> -<AUni ws="qvm-x-acl">rïcu; rïcu; rïco</AUni> -<AUni ws="qvm-x-akh">rïcu</AUni> -<AUni ws="qvm-x-akl">rïcu; rïcu; rïco</AUni> -<AUni ws="qvm-x-ame">rïcu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="9f021d93-fa71-4776-adfe-40212c6105f1" ownerguid="df7ccd8c-3186-482f-8672-93f0614cedf2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="9f037ea9-45c3-4b8d-b552-b19d878c8f17" ownerguid="8e6f9070-ffb9-4d0f-8f70-d8f40a9dd293"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">border</AUni> -<AUni ws="es">lindero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="03f7648b-af2b-4976-ab2f-4fb89520668f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="9f05ab60-9e24-4a73-a583-840b0c28beab" ownerguid="43a1301a-3ecd-4a1d-ac86-fa7a90148b5c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Tagay jipash miluycachanmi.</Run> -</AStr> -</Example> -</rt> -<rt class="LexExampleSentence" guid="9f082a54-67fe-4bc3-9da3-a368c9bed58d" ownerguid="54d680f8-2862-4837-85ac-6d0a4e917d73"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">GAL 4.5 Tsaynoqpami paypa wamrankunana kanantsipaq legitikamashkantsi.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="9f0bcab1-8256-47a1-853c-408f025e04e7" ownerguid="ac2e424b-6aee-4031-8864-7b3f4a6fb5a3"> -<Abbreviation> -<AUni ws="en">3.5.1.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to lying--to say something that is not true.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Tell a lie</AUni> -</Name> -<Questions> -<objsur guid="02d44bb3-5bbd-4b79-8adf-d25186b33c99" t="o" /> -<objsur guid="221afb35-6893-45c8-8517-cb393c1b3e63" t="o" /> -<objsur guid="d1635e6a-1ae1-43d0-9dc6-fb528d5aef47" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="9f0d0611-8f2e-4013-ac07-5ad5fb1ed8e8" ownerguid="ce6d5e60-7cf6-46ab-bd02-453ec7b04f7a"> -<ExampleWords> -<AUni ws="en">proud</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to feeling very good about yourself?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9f0f8ccb-3a9f-48cb-93a5-6fa5b1e38ec1" ownerguid="df81ebe4-6185-45f1-ae43-03a4ef6e96d5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/N0</Run> -</AStr> -</Custom> -<Definition> -<AStr ws="en"> -<Run ws="en">without having</Run> -</AStr> -<AStr ws="es"> -<Run ws="es">sin hacer</Run> -</AStr> -</Definition> -<Examples> -<objsur guid="28e377fe-d40d-4095-85eb-62c66d4f9703" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">UNDONE</AUni> -<AUni ws="es">SINHAC</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0e48721b-df9d-4704-8442-6a66ca1bdbc2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="9f0feef6-9a5f-4a9a-9a1d-9ee2874e71ee"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">falta</AUni> -<AUni ws="qvm-x-acl">falta</AUni> -<AUni ws="qvm-x-akh">falta</AUni> -<AUni ws="qvm-x-akl">falta</AUni> -<AUni ws="qvm-x-ame">falta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+faltar.1</AUni> -<AUni ws="qvm-x-acl">+faltar.1</AUni> -<AUni ws="qvm-x-akh">+faltar.1</AUni> -<AUni ws="qvm-x-akl">+faltar.1</AUni> -<AUni ws="qvm-x-ame">+faltar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.528" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="098fc963-a194-4adb-9e90-3b18c19ef248" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+faltar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="45c2a471-8633-4a6d-aa46-08d73f88f084" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f78fe00a-c953-4584-b118-9ff7786c2516" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +faltar.1 
\entryTyp root 
\gENG be.lacking 
\gSPN faltar 
\e +faltar.1 
\c V2 
\ach falta 
\akh falta 
\acl falta 
\akl falta 
\ame falta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="9f19741a-c25c-479a-8c00-bf0668de3ca4" ownerguid="cee1ec81-f8d7-4d5f-9530-3de5d91e99e5"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ACT 1.12 Tsay lömapita Jerusalénman cargan säbaducho purinan distanciami.\f + \fr 1.12 \ft Sábado captin Israel runacuna hasta ishcay waranga (2,000) japaylatami purergan. Tsaypita masta manami purergantsu. Ishcay waranga japayga juc kilometrupita ichic maslami caycan.\f*</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="9f1a3051-a413-42ae-93b0-ec4c1c52d02d" ownerguid="7b7bf5a6-abac-4730-991d-a047417cc33b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">other</AUni> -<AUni ws="es">otro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="111e6213-5199-454e-be11-061e17979c42" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="9f1cabda-8bb7-4e79-9945-53528f08de97" ownerguid="cac7515e-88d5-4c73-b473-159eef5aa28f"> -<Form> -<AUni ws="qvm-x-ach">o</AUni> -<AUni ws="qvm-x-acl">o</AUni> -<AUni ws="qvm-x-akh">o</AUni> -<AUni ws="qvm-x-akl">o</AUni> -<AUni ws="qvm-x-ame">o</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="9f1d000c-937f-4832-9502-eb671abfec06"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">merenda</AUni> -<AUni ws="qvm-x-acl">merenda</AUni> -<AUni ws="qvm-x-akh">merenda</AUni> -<AUni ws="qvm-x-akl">merenda</AUni> -<AUni ws="qvm-x-ame">merenda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+merienda</AUni> -<AUni ws="qvm-x-acl">+merienda</AUni> -<AUni ws="qvm-x-akh">+merienda</AUni> -<AUni ws="qvm-x-akl">+merienda</AUni> -<AUni ws="qvm-x-ame">+merienda</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.416" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9da991a1-eb7b-4eaa-a3fc-cadd733fa9e7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+merienda</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cc2eb8e3-34d5-4517-b643-ade93e66b8a0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b6f4f8a4-15e0-4234-920f-72fb129b0417" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +merienda 
\entryTyp root 
\gENG sup 
\gSPN cenar 
\e +merienda 
\c N0 
\ach merenda 
\akh merenda 
\acl merenda 
\akl merenda 
\ame merenda</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="9f1d1b75-c36d-418c-822f-8408eb5a1500"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">diamanti; diamante</AUni> -<AUni ws="qvm-x-acl">diamanti; diamanti; diamante</AUni> -<AUni ws="qvm-x-akh">diamanti; diamante</AUni> -<AUni ws="qvm-x-akl">diamanti; diamanti; diamante</AUni> -<AUni ws="qvm-x-ame">diamanti; diamante</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+diamante</AUni> -<AUni ws="qvm-x-acl">+diamante</AUni> -<AUni ws="qvm-x-akh">+diamante</AUni> -<AUni ws="qvm-x-akl">+diamante</AUni> -<AUni ws="qvm-x-ame">+diamante</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.404" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3435ea42-8af7-4c31-b80b-95c9deafa691" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+diamante</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="49b316f6-65b2-4085-b1ac-1f6ef3848b9a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fd08444a-eaf0-4993-8b93-0b74d2f95627" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +diamante 
\entryTyp root 
\gENG 
\gSPN 
\e +diamante 
\c N0 
\ach diamanti / ~_# 
\ach diamante / _# 
\akh diamanti / ~_# 
\akh diamante / _# 
\acl diamanti / ~_# 
\acl diamanti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl diamante +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl diamanti / ~_# 
\akl diamanti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl diamante +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame diamanti / ~_# 
\ame diamante / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="9f1d939d-c40d-4e76-ab14-0720733355b1" ownerguid="3f7eb622-ecbd-47fc-9e94-b00397ba7fd3"> -<Form> -<AUni ws="qvm-x-ach">honor</AUni> -<AUni ws="qvm-x-acl">honor</AUni> -<AUni ws="qvm-x-akh">honor</AUni> -<AUni ws="qvm-x-akl">honor</AUni> -<AUni ws="qvm-x-ame">honor</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoInflAffMsa" guid="9f227daa-6be8-432d-8cbf-31169eb23e02" ownerguid="f8346466-db96-4d4b-8a8d-2da65cfd7dc2"> -<PartOfSpeech> -<objsur guid="a4fc78d6-7591-4fb3-8edd-82f10ae3739d" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="f9e1228b-4c5b-4e23-bd04-d513eddcbaea" t="r" /> -</Slots> -</rt> -<rt class="MoStemMsa" guid="9f24de78-1763-40b3-8c6b-d66245fdc06c" ownerguid="a2ec6d72-c5cb-43d7-abbc-7e46b7f877c4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="9f2a2d08-f39f-4cf3-940a-bab3966c1bea" ownerguid="dee448f2-5ef5-485a-87f8-b82e3b286bc7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="12231a01-0cfc-47ea-9347-537810bbdfab" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="f0d29703-cf1f-4712-8bdc-c5d4b3bed49a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9f2dfac8-9b97-412c-9167-4d7df48e8251" ownerguid="e9ef98d9-8844-4804-88a5-614493d150f5"> -<ExampleWords> -<AUni ws="en">be on your guard, beware, take heed, be on the lookout, watch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to an alert mental state?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9f301b9d-225f-48b3-b68c-7c9102240f6c" ownerguid="99460595-a669-4c67-8f08-861cb2eb3b0a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">plastic.cloth</AUni> -<AUni ws="es">tela.plástica</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="484b7486-2e92-407f-a1d2-9b0cc44ed7fb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="9f321175-ae6b-4195-86db-ec5e5e30463b" ownerguid="7bed7b62-cb48-4b14-84ba-2ac199843469"> -<PartOfSpeech> -<objsur guid="85ffb381-0567-4202-8640-53cbaec77e45" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9f32bfae-97ed-4ccc-bcc2-e1b81d4493e6" ownerguid="d086c2ad-2d11-4250-a25a-dc6538439db6"> -<ExampleWords> -<AUni ws="en">twice, double, twice as much (as), two times as much (as), two times what, double what</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words indicate that something is two times the amount of something else?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="9f33c312-5ef5-4da5-9f36-753d13d3fbe9" ownerguid="e77dc0f6-a090-4220-b557-b93910b63f75"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="9f3423ab-7085-4cf0-b43e-59ccabcc5e24" ownerguid="7ba76f5b-8f11-4043-915b-4b6c0e5c71d4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">subract</AUni> -<AUni ws="es">restar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="290f4e97-4d4a-49fd-aa52-112b0584004a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="9f3b4cab-dc8a-430e-88f3-d3002df64fb8" ownerguid="d60faf11-cc6e-48db-8a13-82f86d78ab00"> -<Abbreviation> -<AUni ws="en">7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.498" /> -<DateModified val="2022-9-23 16:55:8.498" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words indicating the posture or stance of a person's body. Use the domains in this section for specific words for postures and for moving parts of the body. Many of these words have two meanings. One meaning is stative, indicating that the body is in a particular posture, but not moving. The other meaning is active, indicating that the person is moving his body into a particular posture. Some of these words can be used of animals or even things, if the things are perceived as being similar in posture to that of a human body.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>17 Stances and Events Related to Stances</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Posture</AUni> -</Name> -<OcmCodes> -<Uni>516 Postures</Uni> -</OcmCodes> -<Questions> -<objsur guid="84cfaa97-61c5-4bfd-8588-bec04dc9091f" t="o" /> -<objsur guid="7edf9dc2-8b6a-4108-a0dd-de6d3a62d167" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="c7c85346-158d-4881-839d-9a6a8e47209b" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="8841af5e-74e6-4c5d-a313-ba9aa7fdb78b" t="o" /> -<objsur guid="975d0109-1bba-4b0e-85b8-2c6b51c8e074" t="o" /> -<objsur guid="0aae0254-dc06-4906-8ecf-2d8450fb83f1" t="o" /> -<objsur guid="3a28ab73-2847-44a4-97ed-7129269f1366" t="o" /> -<objsur guid="c3f20ce7-d30e-40fd-af8a-713a65c46cd0" t="o" /> -<objsur guid="566be8c1-3e42-4f8b-87eb-e70e8c13c6f8" t="o" /> -<objsur guid="85b9908f-4f57-4baa-9ed2-bc4705b12e72" t="o" /> -<objsur guid="85dfc6a3-6c70-41f2-a869-32e2fb3c40ee" t="o" /> -<objsur guid="86e5c062-d90f-476c-a363-264adfafedfa" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="9f3e435f-640f-412a-81a1-de14ad4d2238" ownerguid="24dcd977-5e52-4c2b-858d-58b7d5209f56"> -<Form> -<AUni ws="qvm-x-ach">arcu</AUni> -<AUni ws="qvm-x-acl">arcu; arco</AUni> -<AUni ws="qvm-x-akh">arku</AUni> -<AUni ws="qvm-x-akl">arku; arko</AUni> -<AUni ws="qvm-x-ame">arku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9f4030f6-b623-46b4-ba86-e2be5ced3c72" ownerguid="8d47c9ec-80c4-4309-9848-c453dcd71182"> -<ExampleWords> -<AUni ws="en">be alive, live</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to being alive?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="9f418efb-27b1-40ce-be95-cbc2ab6e8d4f" ownerguid="fdd0e73f-9587-4bc9-98da-baf9233943bf"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">fiyu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">fiyu; fiyu; fiyo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">fiyu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">fiyu; fiyu; fiyo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">fiyu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="8af51d38-7b5d-4a73-89f8-f39e115e8e55" t="r" /> -</Morph> -<Msa> -<objsur guid="4780accf-3d86-484c-a8d2-c398d837871c" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="9f425812-8e7a-4cc4-b427-4cab065d2be6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wagshi</AUni> -<AUni ws="qvm-x-acl">wagshi; wagshe</AUni> -<AUni ws="qvm-x-akh">waqshi</AUni> -<AUni ws="qvm-x-akl">waqshi; waqshe</AUni> -<AUni ws="qvm-x-ame">waqshi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waqshi.v</AUni> -<AUni ws="qvm-x-acl">*waqshi.v</AUni> -<AUni ws="qvm-x-akh">*waqshi.v</AUni> -<AUni ws="qvm-x-akl">*waqshi.v</AUni> -<AUni ws="qvm-x-ame">*waqshi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.505" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cdfa8a3c-5b65-4dc1-a633-65648ab73cca" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waqshi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="76285b10-1fc6-4067-aca1-574525c60662" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="28d6a186-b5fd-4b1d-bf51-d52fd8ce502e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waqshi.v 
\entryTyp root 
\gENG protrude 
\gSPN sobresalir 
\e *waqshi.v 
\c V1 
\mp +FinalI 
\ach wagshi 
\akh waqshi 
\acl wagshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wagshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl waqshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl waqshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame waqshi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9f443ae6-eb20-41d5-8084-64e39dcb6aa8" ownerguid="5b41c1ed-95bb-4cca-8cff-87361acb5683"> -<ExampleWords> -<AUni ws="en">old fashioned, period costume</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to traditional clothing?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9f446903-c472-48f9-83ad-00435e221373"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ogu</AUni> -<AUni ws="qvm-x-acl">ogu; ogo</AUni> -<AUni ws="qvm-x-akh">oqu</AUni> -<AUni ws="qvm-x-akl">oqu; oqo</AUni> -<AUni ws="qvm-x-ame">uqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uqu.v</AUni> -<AUni ws="qvm-x-acl">*uqu.v</AUni> -<AUni ws="qvm-x-akh">*uqu.v</AUni> -<AUni ws="qvm-x-akl">*uqu.v</AUni> -<AUni ws="qvm-x-ame">*uqu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.322" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4c66508c-bb8e-4313-a20e-9c69f9431fef" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uqu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5803ea7e-4a09-4827-bf42-8e85aec4c3cb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="660cf7a3-9f96-4c3f-9078-4af7b9b39349" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uqu.v 
\entryTyp root 
\gENG to.wet 
\gSPN mojar 
\e *uqu.v 
\c V2 
\ach ogu 
\akh oqu 
\acl ogu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ogo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl oqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl oqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame uqu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="9f4617a5-0384-4a3a-961f-c3a55400b1a4" ownerguid="00bbedc3-7d9d-42e4-a331-13882d44a401"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="WfiWordform" guid="9f486af7-3fe6-4405-850c-5dff8b0542a5"> -<Analyses> -<objsur guid="49e142c3-a037-42ac-9af8-b3f5288cb115" t="o" /> -<objsur guid="9d41b1a8-bdbd-4d42-9872-12eaaf19a72b" t="o" /> -<objsur guid="d7740902-abdb-495f-9ea5-9b0a031144d3" t="o" /> -</Analyses> -<Checksum val="-1032674095" /> -<Form> -<AUni ws="qvm-x-akh">muchuy</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="9f4a97e7-74f2-4b23-96c0-40261e2065a3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">perga</AUni> -<AUni ws="qvm-x-acl">perga</AUni> -<AUni ws="qvm-x-akh">perqa</AUni> -<AUni ws="qvm-x-akl">perqa</AUni> -<AUni ws="qvm-x-ame">pirqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pirqa.v</AUni> -<AUni ws="qvm-x-acl">*pirqa.v</AUni> -<AUni ws="qvm-x-akh">*pirqa.v</AUni> -<AUni ws="qvm-x-akl">*pirqa.v</AUni> -<AUni ws="qvm-x-ame">*pirqa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.850" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ca560fdc-86c5-4d61-a54c-814903729804" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pirqa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ebba10d4-6f8c-4edb-8237-af3eaa634a9f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fe13651d-7021-4ca5-9693-9874fe10954f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pirqa.v 
\entryTyp root 
\gENG build 
\gSPN construir 
\e *pirqa.v 
\c V2 
\ach perga 
\akh perqa 
\acl perga 
\akl perqa 
\ame pirqa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9f4c768a-655a-44cd-ab95-b16e182ac20d" ownerguid="e1e0b800-85ad-4886-abe5-9f67c022a5ed"> -<ExampleWords> -<AUni ws="en">end (adj), pointy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is on the end?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="9f4cd8bd-f001-400f-b50a-e177f432aea8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">venga</AUni> -<AUni ws="qvm-x-acl">venga</AUni> -<AUni ws="qvm-x-akh">venga</AUni> -<AUni ws="qvm-x-akl">venga</AUni> -<AUni ws="qvm-x-ame">venga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vengar</AUni> -<AUni ws="qvm-x-acl">+vengar</AUni> -<AUni ws="qvm-x-akh">+vengar</AUni> -<AUni ws="qvm-x-akl">+vengar</AUni> -<AUni ws="qvm-x-ame">+vengar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.363" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e768fe73-f2bc-494e-b4e1-e512fa86ae98" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vengar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="46c1ce3d-5a11-40e7-a1ce-64b50b5c005a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7018becf-e371-4613-8c37-5a1bc6faddfa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vengar 
\entryTyp root 
\gENG to.avenge 
\gSPN vengar 
\e +vengar 
\c V2 
\ach venga 
\akh venga 
\acl venga 
\akl venga 
\ame venga</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9f4f57ef-9418-40aa-ae4d-8cdaa5fce893" ownerguid="858af232-b570-4153-b4c0-f60930df9ced"> -<ExampleWords> -<AUni ws="en">impression, feeling</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to what you think or feel because of what someone or something seems?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="9f51fba2-1749-4c9b-81a3-742b6162ad3b" ownerguid="fa49c235-7864-49a0-9e77-233506bffb53"> -<Form> -<AUni ws="qvm-x-ach">hacienda</AUni> -<AUni ws="qvm-x-acl">hacienda</AUni> -<AUni ws="qvm-x-akh">hacienda</AUni> -<AUni ws="qvm-x-akl">hacienda</AUni> -<AUni ws="qvm-x-ame">hacienda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="9f57522a-321d-4142-a7d2-dd53837ce246" ownerguid="1067e24c-275e-4e12-8cec-fca35e7c5260"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9f5902d0-36ae-4159-a699-60d863b2fa41" ownerguid="93df663c-9a5e-48aa-984f-fdf413079bc2"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John held our coats <for> us.; John manages the business <for> us.; John invited some older couples to join them <for> his parent's <sake>.; <For the sake of> his parents John invited some older couples to join them.; <For the benefit of> the children we included a trip to the zoo.; Because you are sick, Mary has offered to cook <for> you.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">for, for (someone's) sake, for the sake of, for (someone's) benefit, for the benefit of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words mark the beneficiary of an event?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="9f5ca3dc-a5c0-4a7c-ad78-109be43d224e" ownerguid="02c7ba24-ba2d-4b28-adb4-f14d228e5807"> -<Form> -<AUni ws="qvm-x-ach">pañalón; pañalon</AUni> -<AUni ws="qvm-x-acl">pañalón; pañalon</AUni> -<AUni ws="qvm-x-akh">pañalón; pañalon</AUni> -<AUni ws="qvm-x-akl">pañalón; pañalon</AUni> -<AUni ws="qvm-x-ame">pañalón; pañalon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="9f63f6b4-5c42-4a12-a6a7-942e87216f8e" ownerguid="cee8d3f1-f4fd-4797-aaae-780bb88160a3"> -<Form> -<AUni ws="qvm-x-ach">posti; poste</AUni> -<AUni ws="qvm-x-acl">posti; posti; poste</AUni> -<AUni ws="qvm-x-akh">posti; poste</AUni> -<AUni ws="qvm-x-akl">posti; posti; poste</AUni> -<AUni ws="qvm-x-ame">posti; poste</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="9f64f8c6-2c9e-42bb-a6bf-8dd0a0eab228" ownerguid="a0767a55-ff99-4eba-adbd-be135e932a79"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">look.at</AUni> -<AUni ws="es">mirar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="73247dfc-e7bb-4002-8830-b465e6340eca" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="9f6754ae-a429-4bba-8f6f-2cd4ea0cbe45" ownerguid="c753fc8b-22ae-4e71-807f-56fb3ebd3cdd"> -<Abbreviation> -<AUni ws="en">2.6.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.63" /> -<DateModified val="2022-9-23 16:55:8.63" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being a virgin--a person who has never had sex.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Virginity</AUni> -</Name> -<Questions> -<objsur guid="6f49630d-2f5b-47c6-8360-757d1c41235e" t="o" /> -<objsur guid="3d00410a-a71a-4e0f-aa4b-fc495522c63c" t="o" /> -<objsur guid="26dfaffb-7781-4e48-bcbd-c37da55256fd" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="9f682ea6-5dc0-4b01-8fdf-31ea74531684" ownerguid="ca752706-1c9e-43e7-bd17-845c4736ccd8"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">We need to know the <approximate> weight of his suitcase.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">approximate, rough</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a number or amount that is approximate?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9f689523-1fb8-4fb0-8e2e-c2ba599286b3" ownerguid="b6a40216-fe93-4b0f-b85b-5622327031d0"> -<ExampleWords> -<AUni ws="en">egg</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to an egg?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="9f68c237-5e34-484e-8055-fa32b54f7f63" ownerguid="b2168c7b-a242-4b7a-9248-22638ba4852f"> -<Form> -<AUni ws="qvm-x-ach">maquipalta</AUni> -<AUni ws="qvm-x-acl">maquipalta</AUni> -<AUni ws="qvm-x-akh">makipalta</AUni> -<AUni ws="qvm-x-akl">makipalta</AUni> -<AUni ws="qvm-x-ame">makipalta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="9f6a6fcd-6b6a-4ffa-a896-621eaf12aba3" ownerguid="a419d056-ce49-4c3b-b5ff-56fc3afe6740"> -<Form> -<AUni ws="qvm-x-ach">muchïla</AUni> -<AUni ws="qvm-x-acl">muchïla</AUni> -<AUni ws="qvm-x-akh">muchïla</AUni> -<AUni ws="qvm-x-akl">muchïla</AUni> -<AUni ws="qvm-x-ame">muchïla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="9f6d9090-8931-41f2-a93d-3df4ee15fff1" ownerguid="fe2136a5-5025-4394-b6d7-29b78f480494"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">man</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">man</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">man</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">man</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">man</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1acbb55c-ccc7-45f0-b507-b8645ea87900" t="r" /> -</Morph> -<Msa> -<objsur guid="afad3961-fbf7-495d-bda7-b2ceaf12bba1" t="r" /> -</Msa> -<Sense> -<objsur guid="61948ca3-8e7f-427d-add7-3b9475d3979d" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="9f717bd7-41d6-40b2-b7c2-71632aba1169" ownerguid="de2dab57-b870-491d-b6d2-bd5169aa88c7"> -<Form> -<AUni ws="qvm-x-ach">ley</AUni> -<AUni ws="qvm-x-acl">ley</AUni> -<AUni ws="qvm-x-akh">ley</AUni> -<AUni ws="qvm-x-akl">ley</AUni> -<AUni ws="qvm-x-ame">ley</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="9f73643b-6682-41ec-84dd-549c10dc0779" ownerguid="bf57579e-47db-43a0-b876-b81c8ea5554c"> -<Form> -<AUni ws="qvm-x-ach">mözu</AUni> -<AUni ws="qvm-x-acl">mözu</AUni> -<AUni ws="qvm-x-akh">mözu</AUni> -<AUni ws="qvm-x-akl">mözu</AUni> -<AUni ws="qvm-x-ame">mözu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="9f78c5f9-4700-43c3-8f06-ce023673dc01"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pura</AUni> -<AUni ws="qvm-x-acl">pura</AUni> -<AUni ws="qvm-x-akh">pura</AUni> -<AUni ws="qvm-x-akl">pura</AUni> -<AUni ws="qvm-x-ame">pura</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.477" /> -<DateModified val="2022-10-16 15:15:12.521" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9fcd6ccf-0965-474e-85d9-ccf55969dd7c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">AMONG</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="44290eac-98c5-4f10-84b2-20bacedcab79" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fc8990fa-4b16-4c42-a604-2ca2f76d4f15" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx AMONG 
\entryTyp suffix 
\gENG AMONG 
\gSPN ENTRE 
\e AMONG 
\c N0/N0 
\o 160 
\mp -PMonophthongized 
\ach pura 
\akh pura 
\acl pura 
\akl pura 
\ame pura</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="9f792202-8023-4ef3-b269-5ae4b6908a0b" ownerguid="b9c752a4-66be-493c-8955-cfa5324a54c1"> -<Abbreviation> -<AUni ws="en">4.9.5.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.296" /> -<DateModified val="2022-9-23 16:55:8.296" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to offering a sacrifice.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>53B Offering, Sacrifice</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Offering, sacrifice</AUni> -</Name> -<OcmCodes> -<Uni>782 Prayers and Sacrifices; Propitiation; 782 Propitiation</Uni> -</OcmCodes> -<Questions> -<objsur guid="11befe8a-d0d4-499e-869c-7b30f5e6c599" t="o" /> -<objsur guid="96fd57a0-666a-4c8f-9d10-5cb48afe8d0e" t="o" /> -<objsur guid="978dec40-74ca-4309-862b-5d55d97c7726" t="o" /> -<objsur guid="469c882f-24a0-4204-a300-fab2c4cdc571" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="9f7a94a9-a226-4f7d-a6b0-bb689750810c" ownerguid="f5fd90f4-fdc6-44a8-88bd-730cdbf5bd4b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ec5fb8b3-9551-4cc6-b886-4e7233e0ca45" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="9f7ce087-2cb6-4847-87e9-e4ad31c67a3e" ownerguid="fe951639-653a-4af7-a1e9-c24a92b94011"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.quiet</AUni> -<AUni ws="es">callarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="98a41584-cae4-4c65-88ae-0fb71a7c1339" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="9f7f1ca8-0fbd-4c24-a56a-9dd7a1e46dbb" ownerguid="c92d7e46-5575-42a4-b495-7a5a9f05ca68"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">apple</AUni> -<AUni ws="es">manzana</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="59cfedbf-5db1-4b8f-8ea7-d36cb8a36021" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="9f828e9f-5fb4-4d30-bea1-2f4888b56d35"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">reconcilia</AUni> -<AUni ws="qvm-x-acl">reconcilia</AUni> -<AUni ws="qvm-x-akh">reconcilia</AUni> -<AUni ws="qvm-x-akl">reconcilia</AUni> -<AUni ws="qvm-x-ame">reconcilia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+reconciliar</AUni> -<AUni ws="qvm-x-acl">+reconciliar</AUni> -<AUni ws="qvm-x-akh">+reconciliar</AUni> -<AUni ws="qvm-x-akl">+reconciliar</AUni> -<AUni ws="qvm-x-ame">+reconciliar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.307" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="821e2fd2-48ee-4cb9-b4ae-c9cba691506d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+reconciliar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="013d17c5-34f8-462f-8fbb-f8cf53541260" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="13cb1014-1b77-47ad-ab99-527e27209218" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +reconciliar 
\entryTyp root 
\gENG restore 
\gSPN reconciliarse 
\e +reconciliar 
\c V2 
\ach reconcilia 
\akh reconcilia 
\acl reconcilia 
\akl reconcilia 
\ame reconcilia</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="9f845bde-606d-4abd-b5e5-dc788512c578"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lo:ma</AUni> -<AUni ws="qvm-x-acl">lo:ma</AUni> -<AUni ws="qvm-x-akh">lo:ma</AUni> -<AUni ws="qvm-x-akl">lo:ma</AUni> -<AUni ws="qvm-x-ame">lo:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+loma</AUni> -<AUni ws="qvm-x-acl">+loma</AUni> -<AUni ws="qvm-x-akh">+loma</AUni> -<AUni ws="qvm-x-akl">+loma</AUni> -<AUni ws="qvm-x-ame">+loma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.114" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="35769d48-f104-4325-9b9e-ce7aa56e8e3f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+loma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2711fff1-dd66-4632-a407-308db9cbc672" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d5dcbcac-53f8-44f7-a348-99c8bf504174" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +loma 
\entryTyp root 
\gENG 
\gSPN loma 
\e +loma 
\c N0 
\ach lo:ma 
\akh lo:ma 
\acl lo:ma 
\akl lo:ma 
\ame lo:ma</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9f85fd7d-6e2b-4f5f-aa62-86e9d46a238b" ownerguid="469b0a30-3c26-4cfd-b948-7bb952eeff41"> -<ExampleWords> -<AUni ws="en">acquaintance, casual acquaintance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to someone you know, who is not a friend?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="9f868391-f1df-4682-bdcb-2c2c799006cf" ownerguid="df9ee372-e92e-4f73-aac5-d36908497698"> -<Abbreviation> -<AUni ws="en">3.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.111" /> -<DateModified val="2022-9-23 16:55:8.111" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to remembering something you know.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>29 Memory and Recall; 29B Recalling from Memory; 29D Recalling and Responding with Appropriate Action</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Remember</AUni> -</Name> -<Questions> -<objsur guid="45888c6c-1957-4291-a74c-fd9d3dcb8d5b" t="o" /> -<objsur guid="8a9c9a4a-480d-482e-8913-8f05fb5b96a6" t="o" /> -<objsur guid="7404362b-41b9-4460-b38d-84de3b77ac80" t="o" /> -<objsur guid="81753cc6-0885-4e51-828d-6e2391beab15" t="o" /> -<objsur guid="677e6b62-5268-4840-8b5d-3711cdfaefb4" t="o" /> -<objsur guid="2b2a527b-ed91-4830-a8d0-b22049744d59" t="o" /> -<objsur guid="8a2872fd-4aa5-44b3-aefd-9d9c27024f03" t="o" /> -<objsur guid="c539f20f-d67b-4117-bbc0-7589c4f9f88a" t="o" /> -<objsur guid="761b0899-4da5-4e31-9c8c-d00027d224d1" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="ce30eb9c-8260-476b-878c-0a078d596955" t="o" /> -<objsur guid="a86b2e14-1299-4f59-842c-c4c5a401aace" t="o" /> -<objsur guid="65a928b8-8587-48be-8f23-41f85549c547" t="o" /> -<objsur guid="45e90d41-a462-4671-968f-92166378b3f0" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="9f887e44-23dc-4c39-9663-86968062cf8d" ownerguid="e53693cb-a2fe-4752-a0d1-b2ffcfcdb7ac"> -<Form> -<AUni ws="qvm-x-ach">maestra</AUni> -<AUni ws="qvm-x-acl">maestra</AUni> -<AUni ws="qvm-x-akh">maestra</AUni> -<AUni ws="qvm-x-akl">maestra</AUni> -<AUni ws="qvm-x-ame">maestra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="9f888438-880a-4bc9-a064-6b3055914f9b" ownerguid="03134252-5f94-470e-93ff-675fc44a5fbf"> -<Form> -<AUni ws="qvm-x-ach">yapya</AUni> -<AUni ws="qvm-x-acl">yapya</AUni> -<AUni ws="qvm-x-akh">yapya</AUni> -<AUni ws="qvm-x-akl">yapya</AUni> -<AUni ws="qvm-x-ame">yapya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="9f894e65-e845-4c53-b2cd-a14d2261f7ff" ownerguid="f858278a-2727-4403-9cf0-565cdececb1e"> -<Question> -<AUni ws="en">(10) Since the conjunction 'if' obligatorily occurs in the protasis, there will also be the following:</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="9f8a06ff-42da-4c72-9562-d2fb7b17ba15" ownerguid="e975f49e-455e-41f4-8410-e3cb486570c4"> -<Form> -<AUni ws="qvm-x-ach">shupu</AUni> -<AUni ws="qvm-x-acl">shupu; shupu; shupo</AUni> -<AUni ws="qvm-x-akh">shupu</AUni> -<AUni ws="qvm-x-akl">shupu; shupu; shupo</AUni> -<AUni ws="qvm-x-ame">shupu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="9f8b8c01-f790-469f-bc37-dece6227e276" ownerguid="d80360f9-7319-40a7-a2bc-fd8718711ba4"> -<Abbreviation> -<AUni ws="en">8.4.5.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.648" /> -<DateModified val="2022-9-23 16:55:8.648" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to two things happening at the same time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>67G Duration of Time with Reference to Some Unit of Time: During, In, While, Throughout</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">At the same time</AUni> -</Name> -<Questions> -<objsur guid="834aadec-2882-45a0-b42c-256e7847307a" t="o" /> -<objsur guid="68241eaf-e794-40af-a32d-4ff22eca86a0" t="o" /> -<objsur guid="f8ef82fe-0279-4ac7-84c2-94e947c0a110" t="o" /> -<objsur guid="42dfbd36-20c5-4e3f-9184-ce32d704cc85" t="o" /> -<objsur guid="1e8ae6ad-888b-4dd1-ade8-d33bd17d6641" t="o" /> -<objsur guid="929eec1a-70ef-42fa-81de-0ebc93c338af" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="9f8bbd01-e632-4c24-a40b-e51ddb1716eb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsicla</AUni> -<AUni ws="qvm-x-acl">tsicla</AUni> -<AUni ws="qvm-x-akh">tsikla</AUni> -<AUni ws="qvm-x-akl">tsikla</AUni> -<AUni ws="qvm-x-ame">tsikla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chiklla</AUni> -<AUni ws="qvm-x-acl">*chiklla</AUni> -<AUni ws="qvm-x-akh">*chiklla</AUni> -<AUni ws="qvm-x-akl">*chiklla</AUni> -<AUni ws="qvm-x-ame">*chiklla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.305" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cdc329fe-af04-4169-b3d0-0f1cd55f873b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chiklla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="84903a51-6519-4055-b074-752253ebe109" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="079ae6f1-dff6-4cb4-87e3-e9ca55b78e44" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chiklla 
\entryTyp root 
\gENG trap 
\gSPN trampa 
\e *chiklla 
\c N0 
\ach tsicla 
\akh tsikla 
\acl tsicla 
\akl tsikla 
\ame tsikla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="9f8d80da-6c50-4f52-b4ef-6ed766d54019" ownerguid="8b7e5a38-1d5d-44ee-bc7c-ff787a79da7f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">catch</AUni> -<AUni ws="es">agarrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e5dfdcc5-aa49-444a-86bf-a8398d1c0282" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="9f8e38f6-f079-49ef-8b2f-b479bd162597" ownerguid="5b39b650-7475-4958-8653-9c3f4389a28b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="9f8f607d-37a2-483e-914e-4f0473b29c30" ownerguid="78e89dd6-63de-4790-951f-7fc979548e59"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="9f9014a7-d96e-41fc-9e05-b1b6b4efa0f2" ownerguid="31af73a8-7b1b-4ddc-adfa-4f835a66b975"> -<Form> -<AUni ws="qvm-x-ach">palpalla</AUni> -<AUni ws="qvm-x-acl">palpalla</AUni> -<AUni ws="qvm-x-akh">palpalla</AUni> -<AUni ws="qvm-x-akl">palpalla</AUni> -<AUni ws="qvm-x-ame">palpalla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="9f91cd53-8b9e-4d76-82e4-5ede39112322" ownerguid="71757ff0-d698-426d-a791-50c4bde6f735"> -<Abbreviation> -<AUni ws="en">9.5.1.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating the Goal of movement.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Goal (of movement)</AUni> -</Name> -<Questions> -<objsur guid="8c27000b-2c0e-44fe-923f-164732a899fe" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="9f92bbbb-a45c-4fdd-a5e1-8cb268ca0cab" ownerguid="be300735-7062-4abf-8154-4ab725f5798c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">street.mud</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="23c42a67-7bdd-4897-8518-b3eae6f804ab" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="9f92eaa9-e1c7-4896-ba4b-3f077ea0c051" ownerguid="0357224d-e682-4974-a261-d07c3e59771b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">captain</AUni> -<AUni ws="es">capitán</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="91268f50-abbf-4499-ae13-5435d2323f88" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="9f9581ee-15c8-49fb-83ef-5cddea7103ca" ownerguid="962cb994-0183-4ac5-94b2-82a33f1d64e4"> -<ExampleWords> -<AUni ws="en">oil, grease, lubricant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to oil?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="9f9635e0-90ba-4383-b8af-9724c32bf49c" ownerguid="223b53db-03b9-46bb-bd2c-2ef9f6a2733c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rebellious</AUni> -<AUni ws="es">rebelde</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1ac38fc1-2fba-4b82-9f41-b636cb08d1f3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="9f9d7ea8-a60d-47fe-8fe2-f70bb2d55ad3" ownerguid="312820e2-4738-43c4-a998-c2d48967fc7b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">así.dice</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b2b02fb7-483f-4bc4-9e69-b752906f3aa2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="9f9e25de-2d6c-4c14-a163-98ee54bdef83" ownerguid="1e0a6241-fd13-49e2-8b30-6fc80983e28a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="5e3d6971-a278-4d6c-a4d2-dbc3fa921bec" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="8dfa1e7f-1c62-4c51-8579-a1e91fcec66e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="9f9e7900-132a-4c1b-a3f7-c45e4006d095" ownerguid="ee395576-086e-410d-8ec6-dcfc602613ae"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 25.17 Amïguyqui captinpis seguïdoga ama aywapaytsu.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="9f9ff37f-be37-43c5-8818-045a15e2c469"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gotu</AUni> -<AUni ws="qvm-x-acl">gotu; goto</AUni> -<AUni ws="qvm-x-akh">qotu</AUni> -<AUni ws="qvm-x-akl">qotu; qoto</AUni> -<AUni ws="qvm-x-ame">qutu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qutu.v</AUni> -<AUni ws="qvm-x-acl">*qutu.v</AUni> -<AUni ws="qvm-x-akh">*qutu.v</AUni> -<AUni ws="qvm-x-akl">*qutu.v</AUni> -<AUni ws="qvm-x-ame">*qutu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.902" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="93ded7f5-92c0-4f5f-b72e-ca9c49189e56" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qutu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="680ecf54-d3bc-4816-88ae-4f4bac9d076e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a5e8753c-ab0e-4eed-8a15-97d1daf53894" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qutu.v 
\entryTyp root 
\gENG gather 
\gSPN recoger 
\e *qutu.v 
\c V2 
\ach gotu 
\akh qotu 
\acl gotu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl goto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qotu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qoto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qutu</Run> -</AStr> -</Custom> -</rt> -<rt class="StStyle" guid="9fa82bd0-e797-4c40-88d7-cb591613b426" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="14" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Classified-Headword</Uni> -</Name> -<Rules> -<Prop bold="invert"></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<Usage> -<AUni ws="en">Used for the headword in a Classified Dictionary.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="MoStemAllomorph" guid="9fab3a27-6fd5-4bff-9ec8-27ee1034bb1e" ownerguid="79ebd9c1-026e-4250-b11c-cb34e6757f84"> -<Form> -<AUni ws="qvm-x-ach">togtu</AUni> -<AUni ws="qvm-x-acl">togtu; togto</AUni> -<AUni ws="qvm-x-akh">toqtu</AUni> -<AUni ws="qvm-x-akl">toqtu; toqto</AUni> -<AUni ws="qvm-x-ame">tuqtu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="9fab97a2-8a98-4a2d-857d-cfa88767ea81" ownerguid="228a64f0-4807-4567-a3dc-138ecb262512"> -<Form> -<AUni ws="qvm-x-ach">shogli</AUni> -<AUni ws="qvm-x-acl">shogli; shogle</AUni> -<AUni ws="qvm-x-akh">shoqli</AUni> -<AUni ws="qvm-x-akl">shoqli; shoqle</AUni> -<AUni ws="qvm-x-ame">shuqli</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="9fac006a-4f92-4b0a-b6ce-425f5cd03386"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">viernes; viernis</AUni> -<AUni ws="qvm-x-acl">viernes; viernis</AUni> -<AUni ws="qvm-x-akh">viernes; viernis</AUni> -<AUni ws="qvm-x-akl">viernes; viernis</AUni> -<AUni ws="qvm-x-ame">viernes; viernis</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+viernes</AUni> -<AUni ws="qvm-x-acl">+viernes</AUni> -<AUni ws="qvm-x-akh">+viernes</AUni> -<AUni ws="qvm-x-akl">+viernes</AUni> -<AUni ws="qvm-x-ame">+viernes</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.394" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5222ec25-d1ad-4c69-b40f-bdd788db4662" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+viernes</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6ad430df-5a3e-4662-8f7c-e1be3d7740a7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5547d3c9-e3de-4584-86c4-46a703f00d5c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +viernes 
\entryTyp root 
\gENG friday 
\gSPN viernes 
\e +viernes 
\c N0 
\mp +FinalC 
\ach viernes / _# 
\ach viernis / ~_# 
\akh viernes / _# 
\akh viernis / ~_# 
\acl viernes / _# 
\acl viernis / ~_# 
\akl viernes / _# 
\akl viernis / ~_# 
\ame viernes / _# 
\ame viernis / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="9fafebd7-0781-4d9b-9b6a-8a741c91e59e" ownerguid="742996cd-b87f-40a8-bdb3-dba74219bd73"> -<ExampleWords> -<AUni ws="en">warm, thermal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words describe clothes that make you feel warm?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="9fb016c3-4869-42ee-8f69-726dff6c9821" ownerguid="296f6ad9-3715-4938-a99d-b7b9fd55413a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 15.17 Wera wäcata micurpis chiquinacur cawananpa trucanga tulpulata upurpis cuyanacur y waylunacur cawaymi mas ali caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="9fb77344-1bb0-4720-be23-d17069bc2ab6" ownerguid="ac550d1f-ec74-46a8-bf81-7832ace533ee"> -<ExampleWords> -<AUni ws="en">popular, be in demand, sought-after, be big, best-seller, blockbuster, hit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that many people like?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="9fbadfdf-fc62-43e0-b645-1e2499269f3b" ownerguid="b0905fa9-2f90-410b-8eb5-7c7944c4f0f9"> -<ExampleWords> -<AUni ws="en">one night stand</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to a single time of adultery?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="9fc25175-3b4a-4248-bc7f-b86012ec584f" ownerguid="ff7e3abd-6810-4128-83c9-701b4925c2fe"> -<Abbreviation> -<AUni ws="en">5.5.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.337" /> -<DateModified val="2022-9-23 16:55:8.337" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for types of fuel and for words used in making, collecting, storing, or using fuel. This domain includes the scenario of collecting firewood.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Fuel</AUni> -</Name> -<Questions> -<objsur guid="3caf9fca-e1ea-4536-a6ed-689414758aa8" t="o" /> -<objsur guid="936892c2-b0dc-4c5c-a9a6-329b51db4e40" t="o" /> -<objsur guid="4360546e-37c9-41fa-ac96-f48f9fab8eef" t="o" /> -<objsur guid="5fca6b0a-e232-4134-bbdc-396117e8127e" t="o" /> -<objsur guid="a57fbc6a-0900-4abd-a3a3-5a9d952f1e61" t="o" /> -<objsur guid="7ccad568-e6dd-4512-b314-c46bdfdcea31" t="o" /> -<objsur guid="a714c4b5-e8a7-47fd-b75e-f2fdd05a445b" t="o" /> -<objsur guid="78da2c5a-d39c-4a39-98de-5c8b8d189e6d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="9fc30071-3afd-4890-af69-5ca20887a47f" ownerguid="586ff3ab-1bb6-4d14-8340-7fed4aa347e4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">twelve</AUni> -<AUni ws="es">doce</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="94c01314-2acc-45d2-9360-05f56f502bd0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="9fc41e37-c61f-4b55-a5b9-d3c3da85925d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tuncu</AUni> -<AUni ws="qvm-x-acl">tuncu; tunco</AUni> -<AUni ws="qvm-x-akh">tunku</AUni> -<AUni ws="qvm-x-akl">tunku; tunko</AUni> -<AUni ws="qvm-x-ame">tunku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tunku</AUni> -<AUni ws="qvm-x-acl">*tunku</AUni> -<AUni ws="qvm-x-akh">*tunku</AUni> -<AUni ws="qvm-x-akl">*tunku</AUni> -<AUni ws="qvm-x-ame">*tunku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.997" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="44a3d832-ac23-4ec2-b3f8-e4ecd82faf51" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tunku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b4d2972d-299e-4dc3-bab4-58d084c82f49" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8f63d68d-0ac9-468a-a0f2-ed66aff92819" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tunku 
\entryTyp root 
\gENG squat 
\gSPN agacharse 
\e *tunku 
\c V1 
\ach tuncu 
\akh tunku 
\acl tuncu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tunco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tunku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tunko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tunku</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="9fc68e80-42d1-4865-a7ea-1e6efd06e848" ownerguid="335acc66-724a-4cf2-80f4-d4efcd73e003"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="9fcaa180-5efc-4905-88a3-e3f182c144d2" ownerguid="bbb897b5-f09b-4263-9f81-826ca61084f1"> -<ExampleWords> -<AUni ws="en">soap, shampoo, laundry soap, detergent, cleanser, scouring powder</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What materials are used to wash things?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="9fcae400-ce8f-4e30-9516-97ab794c30a9" ownerguid="6bf7569e-dc79-49da-9ce1-e2e03303828a"> -<Abbreviation> -<AUni ws="en">4.7.7.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to pardoning someone who has been found guilty of a crime.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Pardon, release</AUni> -</Name> -<Questions> -<objsur guid="4caa61eb-eb68-4e43-aafb-33f0dc02877e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="9fcc4811-1538-4d95-a3db-cdce22f73c5d" ownerguid="2bdfe506-0a28-45bd-81e1-44dcedcc262a"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="9fccb60f-4b91-432a-a591-67707eb724a1" ownerguid="60cacaf3-2cf2-4c0b-a085-09dd29a7fd25"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">LEV 21.20 curcucuna, enänucuna, nübish nawicuna, garachucuna, pashtapäcogcuna y runtun däñashcunapis.</Run> -</AStr> -</Example> -</rt> -<rt class="MoAffixAllomorph" guid="9fcd6ccf-0965-474e-85d9-ccf55969dd7c" ownerguid="9f78c5f9-4700-43c3-8f06-ce023673dc01"> -<Form> -<AUni ws="qvm-x-ach">pura</AUni> -<AUni ws="qvm-x-acl">pura</AUni> -<AUni ws="qvm-x-akh">pura</AUni> -<AUni ws="qvm-x-akl">pura</AUni> -<AUni ws="qvm-x-ame">pura</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="9fd1764a-7237-417f-9ad8-e1b367cf7c4c" ownerguid="f8c08c86-ef99-4415-87a7-318e56393672"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sea</AUni> -<AUni ws="es">mar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="827e017f-1438-44fa-b4d5-dfe68cabc32a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="PunctuationForm" guid="9fd42a5c-d322-4ff3-a8dd-08929b5df863"> -<Form> -<Str> -<Run ws="en">v2</Run> -</Str> -</Form> -</rt> -<rt class="LexEntry" guid="9fd4342a-b318-42dd-9397-aba4f9d870b7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gasa; gasa:</AUni> -<AUni ws="qvm-x-acl">gasa; gasa:</AUni> -<AUni ws="qvm-x-akh">qasa; qasa:</AUni> -<AUni ws="qvm-x-akl">qasa; qasa:</AUni> -<AUni ws="qvm-x-ame">qasa; qasa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qasa:</AUni> -<AUni ws="qvm-x-acl">*qasa:</AUni> -<AUni ws="qvm-x-akh">*qasa:</AUni> -<AUni ws="qvm-x-akl">*qasa:</AUni> -<AUni ws="qvm-x-ame">*qasa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.124" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="684505af-c9b3-4087-94f0-65bcc10e60e3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qasa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aedb094e-f4fd-41a6-afc6-52d788df9ece" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="912978dc-e6b5-48c9-9803-8cd401630195" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qasa: 
\entryTyp root 
\gENG be.cold 
\gSPN hacer.frio 
\e *qasa: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach gasa foreshortened 
\ach gasa: 
\akh qasa foreshortened 
\akh qasa: 
\acl gasa foreshortened 
\acl gasa: 
\akl qasa foreshortened 
\akl qasa: 
\ame qasa foreshortened 
\ame qasa: 
\mcc *qasa: / ~_... 1 COND</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="9fd448fd-12bf-4d65-92b7-859fb689053c" ownerguid="a6993674-4df0-418f-a032-ae376db5048b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="9fd8ecee-283d-4dc4-a4f5-41fb8ec94a5a" ownerguid="6545d219-5055-445e-b141-9a57907a923b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="f7df2184-6319-47da-9cbe-0a650ca2bd83" t="o" /> -<objsur guid="56789d54-a8e0-4642-9d6a-1530f873306d" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiMorphBundle" guid="9fdfafad-8f4e-4374-b1f9-d8c7dddf2bac" ownerguid="598e009b-59a9-4571-80b5-ce5162587668"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="9fe037c5-dc65-4c94-b7c5-efa4f58d76fd" ownerguid="e0ac46b6-6746-4953-8c6d-840a8ba10b37"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">nga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">nga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">nqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">nqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="5dcad267-89ba-4258-b423-e84c57ba90ed" t="r" /> -</Morph> -<Msa> -<objsur guid="cdacd2fc-4611-457d-b88f-3c9c8bb345b9" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="9fe58849-2d1f-47ea-8087-faa58aff2e42" ownerguid="bd4879c9-fb7c-4db4-a024-b70f237789a6"> -<Form> -<AUni ws="qvm-x-ach">wayipatsa</AUni> -<AUni ws="qvm-x-acl">wayipatsa</AUni> -<AUni ws="qvm-x-akh">wayipatsa</AUni> -<AUni ws="qvm-x-akl">wayipatsa</AUni> -<AUni ws="qvm-x-ame">wayipatsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="9fe7447d-dad4-4f27-a537-5cf9a59348a7" ownerguid="78e37c6a-9582-4c14-a495-43eb1171df88"> -<Form> -<AUni ws="qvm-x-ach">cucun</AUni> -<AUni ws="qvm-x-acl">cucun</AUni> -<AUni ws="qvm-x-akh">kukun</AUni> -<AUni ws="qvm-x-akl">kukun</AUni> -<AUni ws="qvm-x-ame">kukun</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="9fe98f49-0f91-456c-9514-97e41bab62cc" ownerguid="b01ae659-98cd-44f9-8771-1696c490fcbf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="beadbadc-b433-4de4-9bbc-2c2d391fb2f6" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="977898e2-60f7-447e-940f-78a7eb14f1fc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="9febae43-db52-489f-8ef8-a9492c454aea" ownerguid="2495d5b2-9623-4b99-9066-04e164c9bb14"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="9fec2b3e-1983-40bd-85a9-4f182fde1db0" ownerguid="052bc995-c41e-4b2c-bed1-49b921bdce25"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="9fec2e0f-2d3e-48cb-a0ac-de3d74b2aab7"> -<Analyses> -<objsur guid="2b4d3c49-4504-45f8-b165-2b0be2b64398" t="o" /> -</Analyses> -<Checksum val="528922966" /> -<Form> -<AUni ws="qvm-x-akh">nación</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="9ff0486c-d0b0-4d0c-920b-58c1034b3afa" ownerguid="84990520-e200-4390-a1b8-04ceb53c2918"> -<Form> -<AUni ws="qvm-x-ach">alimenta</AUni> -<AUni ws="qvm-x-acl">alimenta</AUni> -<AUni ws="qvm-x-akh">alimenta</AUni> -<AUni ws="qvm-x-akl">alimenta</AUni> -<AUni ws="qvm-x-ame">alimenta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="9ff04c56-f7b1-4d81-ab15-4079612a3df5" ownerguid="56af7635-6d73-41c5-a74e-a55e2bde7edb"> -<Form> -<AUni ws="qvm-x-ach">coronel; coronil</AUni> -<AUni ws="qvm-x-acl">coronel; coronil; coronel</AUni> -<AUni ws="qvm-x-akh">coronel; coronil</AUni> -<AUni ws="qvm-x-akl">coronel; coronil; coronel</AUni> -<AUni ws="qvm-x-ame">coronel; coronil</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="9ff15b88-6b51-4b4b-8d19-41cde766e287" ownerguid="092b9b79-4ebd-4dfd-9f00-3e1690042122"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spirit</AUni> -<AUni ws="es">espíritu</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e5517529-c23c-4603-8e86-bbb305c972ee" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="9ff6143e-d2ce-4dd1-9d72-418912941c6c" ownerguid="195cd53a-6e26-4661-8356-d8d60017fbe5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="397ccb44-2729-4224-b5ae-ef54ae1dbf45" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="9ffccad9-e445-41b8-b924-897bdee1eb58"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">agtsalma</AUni> -<AUni ws="qvm-x-acl">agtsalma</AUni> -<AUni ws="qvm-x-akh">aqtsalma</AUni> -<AUni ws="qvm-x-akl">aqtsalma</AUni> -<AUni ws="qvm-x-ame">aqtsalma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aqchallma</AUni> -<AUni ws="qvm-x-acl">*aqchallma</AUni> -<AUni ws="qvm-x-akh">*aqchallma</AUni> -<AUni ws="qvm-x-akl">*aqchallma</AUni> -<AUni ws="qvm-x-ame">*aqchallma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.818" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1e4da206-0219-4f56-bba0-a9e618ca5dc8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aqchallma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3cdb4159-47a3-499a-8301-155b3348d22a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="67752934-b91c-4c50-bd77-6c41dc858dca" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aqchallma 
\entryTyp root 
\gENG silk.in 
\gSPN tener.pelo 
\e *aqchallma 
\c V1 
\ach agtsalma 
\akh aqtsalma 
\acl agtsalma 
\akl aqtsalma 
\ame aqtsalma</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="9ffd9617-7676-434c-b399-45da3c0f516f" ownerguid="c978d827-bb9e-4501-b87f-c1eb215435d1"> -<Form> -<AUni ws="qvm-x-ach">tisun</AUni> -<AUni ws="qvm-x-acl">tisun</AUni> -<AUni ws="qvm-x-akh">tisun</AUni> -<AUni ws="qvm-x-akl">tisun</AUni> -<AUni ws="qvm-x-ame">tisun</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="a00a93e6-db87-41bb-840c-e63c69e09c4e" ownerguid="b5134925-6924-4e53-87c9-71a9a7042005"> -<Form> -<AUni ws="qvm-x-ach">enchapa</AUni> -<AUni ws="qvm-x-acl">enchapa</AUni> -<AUni ws="qvm-x-akh">enchapa</AUni> -<AUni ws="qvm-x-akl">enchapa</AUni> -<AUni ws="qvm-x-ame">enchapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmCell" guid="a00ccf58-9159-471b-908f-2aaebda1b209" ownerguid="0288b729-8eb0-41ad-b27c-9534c64900a5"> -<Contents> -<Str> -<Run ws="en">Matches +subitems</Run> -</Str> -</Contents> -</rt> -<rt class="LexEntry" guid="a0112e1c-367d-4035-8894-35cff90e4d3b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">upugruy</AUni> -<AUni ws="qvm-x-acl">upogruy</AUni> -<AUni ws="qvm-x-akh">upuqruy</AUni> -<AUni ws="qvm-x-akl">upoqruy</AUni> -<AUni ws="qvm-x-ame">upuqruy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*upukuruy</AUni> -<AUni ws="qvm-x-acl">*upukuruy</AUni> -<AUni ws="qvm-x-akh">*upukuruy</AUni> -<AUni ws="qvm-x-akl">*upukuruy</AUni> -<AUni ws="qvm-x-ame">*upukuruy</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.251" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6ab94bd9-fec1-46ce-8458-ac9bdaa8c7a4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*upukuruy</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d0faa1b4-6402-4e5a-a624-4c7eb835c688" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6d03ad42-59ef-4161-971a-1a1ccbb9d40f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *upukuruy 
\entryTyp root 
\gENG horsefly 
\gSPN 
\e *upukuruy 
\c N0 
\mp +FinalC 
\ach upugruy 
\akh upuqruy 
\acl upogruy 
\akl upoqruy 
\ame upuqruy</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a01683b8-8c5e-4b9c-8e70-ee28bffb3bf9" ownerguid="221369a4-3d3d-45fa-8ef7-0b4c2cf9af2d"> -<Form> -<AUni ws="qvm-x-ach">india; indiä</AUni> -<AUni ws="qvm-x-acl">india; indiä</AUni> -<AUni ws="qvm-x-akh">india; indiä</AUni> -<AUni ws="qvm-x-akl">india; indiä</AUni> -<AUni ws="qvm-x-ame">india; indiä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a016e804-e9d5-4765-9eaa-42a612683a8e" ownerguid="9b37dedc-eccc-41f7-9aa8-0622cb46051c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="54845717-8ed8-477a-bdd7-e334cd6e8f30" t="o" /> -</Examples> -<Gloss> -<AUni ws="es">hacer.pedazos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="51d65a05-26df-4e96-b4af-744abda88980" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="a01956ef-582e-49db-9f92-8039d2837a22" ownerguid="31e7ed11-6644-4c39-8a2b-18de4fd15760"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="a01a1900-fc1f-462e-ba3d-ae822711b034" ownerguid="32bebe7e-bdcc-4e40-8f0a-894cd6b26f25"> -<Abbreviation> -<AUni ws="en">2.5.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.63" /> -<DateModified val="2022-9-23 16:55:8.63" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being mentally ill or disabled.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Mental illness</AUni> -</Name> -<OcmCodes> -<Uni>158 Personality Disorders; 756 Shamans and Psychotherapists</Uni> -</OcmCodes> -<Questions> -<objsur guid="403469fa-40eb-4d02-91ea-0e5fc242a9bc" t="o" /> -<objsur guid="aab8b442-38e7-48f0-a93f-d33bf30bba32" t="o" /> -<objsur guid="efcd1dd1-92aa-4945-92c8-2d7cfc9c3f39" t="o" /> -<objsur guid="42204061-cd0d-4fe3-9951-bc38063db767" t="o" /> -<objsur guid="aaa8342f-6fca-4f84-a582-7a6b6c1372f6" t="o" /> -<objsur guid="c16d265b-ae6f-4c3f-a5d9-24aedaffac6e" t="o" /> -<objsur guid="59a8eb3c-b3bd-41fd-8624-ca08317b85f4" t="o" /> -<objsur guid="fd55e533-7e5a-4b67-abb1-0aca0e410dad" t="o" /> -<objsur guid="de59438f-7254-44c5-83d4-89953799fc65" t="o" /> -<objsur guid="61e96a54-58c2-4482-b73b-7f6150beb888" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="fc193988-26ca-49e9-849a-b12456d98792" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="a01be9f7-4647-40c3-96b5-fc28512267ea" ownerguid="27eb7861-04ed-42d1-b5e7-8a4c21fd798f"> -<Form> -<AUni ws="qvm-x-ach">nirag</AUni> -<AUni ws="qvm-x-acl">nirag</AUni> -<AUni ws="qvm-x-akh">niraq</AUni> -<AUni ws="qvm-x-akl">niraq</AUni> -<AUni ws="qvm-x-ame">niraq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="a01daf07-d7ec-4f77-ba90-2dd6c3b63f08"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Aywaptintsipis</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="a01deb5d-e216-4a87-a52b-45f4aee7a8ee" ownerguid="6430b89c-7077-418a-a558-51f0e3f2c1a6"> -<ExampleWords> -<AUni ws="en">porter, bearer, carrier, courier</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to someone who carries things?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a01e0e71-4940-4351-b973-964e5e5b8d8f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mawca</AUni> -<AUni ws="qvm-x-acl">mawca</AUni> -<AUni ws="qvm-x-akh">mawka</AUni> -<AUni ws="qvm-x-akl">mawka</AUni> -<AUni ws="qvm-x-ame">mawka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mawka</AUni> -<AUni ws="qvm-x-acl">*mawka</AUni> -<AUni ws="qvm-x-akh">*mawka</AUni> -<AUni ws="qvm-x-akl">*mawka</AUni> -<AUni ws="qvm-x-ame">*mawka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.374" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fcd718bd-c126-4786-87ed-10d5c61dc97c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mawka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="030843d2-059a-4f82-9d09-7fa8b7d94eba" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fb2d0024-fa92-41d6-897d-6bc44a9a22e0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mawka 
\entryTyp root 
\gENG old 
\gSPN viejo 
\e *mawka 
\c N0 
\ach mawca 
\akh mawka 
\acl mawca 
\akl mawka 
\ame mawka</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a020fb78-2895-4d49-a291-f0216442b6b0" ownerguid="fea3c863-afd1-40af-aabe-51dfe7dda361"> -<Form> -<AUni ws="qvm-x-ach">shegui</AUni> -<AUni ws="qvm-x-acl">shegui; shegue</AUni> -<AUni ws="qvm-x-akh">sheqi</AUni> -<AUni ws="qvm-x-akl">sheqi; sheqe</AUni> -<AUni ws="qvm-x-ame">shiqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="a02239f8-4f1d-40f8-bf86-86e4f80a459f" ownerguid="e603497a-50e2-4fb3-8100-893e6c13757e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="a023b8e6-41d0-4d86-99cc-94428a5ccaa0" ownerguid="6a39a61b-ec4d-452b-bf97-f613fb10dc4a"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="a0283cec-1bc7-4dae-b8e8-346f7d7cabe1" ownerguid="f8bcfda9-8e69-47d6-970c-556a792e23f7"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="a029ba3b-1415-4768-937e-184c6c3770f5" ownerguid="108eea5a-bd2e-42b8-bb53-b1fc1231dd62"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cloth</AUni> -<AUni ws="es">mantilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6db26996-f527-4fd4-aea2-4f0021a57369" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a02b67e5-8246-4859-9c7c-99e7c9a116e4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ce:rru</AUni> -<AUni ws="qvm-x-acl">ce:rru; ce:rru; ce:rro</AUni> -<AUni ws="qvm-x-akh">ce:rru</AUni> -<AUni ws="qvm-x-akl">ce:rru; ce:rru; ce:rro</AUni> -<AUni ws="qvm-x-ame">ce:rru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cerro</AUni> -<AUni ws="qvm-x-acl">+cerro</AUni> -<AUni ws="qvm-x-akh">+cerro</AUni> -<AUni ws="qvm-x-akl">+cerro</AUni> -<AUni ws="qvm-x-ame">+cerro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.112" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cd5ed0db-5b28-4b3e-80bb-16f9eb490cae" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cerro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4ac16465-8fc0-48ff-8cab-fdf785aa78eb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2ebe1d76-492a-4a50-ad94-9c2310918ef3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cerro 
\entryTyp root 
\gENG mountain 
\gSPN cerro 
\e +cerro 
\c N0 
\ach ce:rru 
\akh ce:rru 
\acl ce:rru / _# 
\acl ce:rru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ce:rro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ce:rru / _# 
\akl ce:rru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ce:rro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ce:rru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="a02d7edb-9233-4f10-a27c-4516ec05b0db" ownerguid="e8b60316-f643-448b-9a60-60bffc9ea560"> -<Example> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">asipäman</Run> -</AStr> -</Example> -</rt> -<rt class="PunctuationForm" guid="a035e618-18aa-488b-ad3a-a85ba839a563"> -<Form> -<Str> -<Run ws="en">transl</Run> -</Str> -</Form> -</rt> -<rt class="MoStemMsa" guid="a03660f9-a791-428d-bbcb-eb44ca435f2b" ownerguid="0f61c1f8-abee-45c1-a8e6-768b61bc0194"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="a03663ca-0c66-4570-be2d-b40105cc4400" ownerguid="61a28bdc-c05c-49d8-b47e-d54a9082156c"> -<Abbreviation> -<AUni ws="en">9.4.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.708" /> -<DateModified val="2022-9-23 16:55:8.708" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that affirm or agree with the truth of something, or that answer a yes/no question in the affirmative.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>69A Affirmation; 69 Affirmation, Negation</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Yes</AUni> -</Name> -<Questions> -<objsur guid="e0f148f9-5f13-4e9b-b026-7e0f50af1f48" t="o" /> -<objsur guid="d73b228d-e5fc-4f9e-923d-8b842fd1d581" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="350667ee-592b-47af-adca-14e820ec58cf" t="o" /> -<objsur guid="b4c1e05f-f741-45cc-8d13-a1f60f474325" t="o" /> -<objsur guid="e64e647e-a5fb-463c-8eef-44879e2e70b2" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="a03bfa08-1bf0-46a6-9a59-b9bc6d4dfde8" ownerguid="a1dd1d94-fa8e-4325-9f72-b39bcac69755"> -<ExampleWords> -<AUni ws="en">keep the peace, peace-keeping, mediate between</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to trying to prevent or end a war?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a03f7b4e-13d1-402b-89df-8a3b4b5f53c2" ownerguid="0a91423d-4b5e-46b7-a4d4-9f40479f6ef8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="07c3b761-7d30-488c-8656-4a795ec3c3c5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="a041c54e-2fb4-422c-8504-654b58874de1" ownerguid="fce3a591-51ce-46ad-83a2-d150940f5da5"> -<Form> -<AUni ws="qvm-x-ach">wisgui</AUni> -<AUni ws="qvm-x-acl">wisgui; wisgue</AUni> -<AUni ws="qvm-x-akh">wisqi</AUni> -<AUni ws="qvm-x-akl">wisqi; wisqe</AUni> -<AUni ws="qvm-x-ame">wisqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a045cf60-6997-4439-ac02-0d32b9e8e8a3" ownerguid="20baa5e7-4f02-4782-a292-c6281d7b5f3a"> -<ExampleWords> -<AUni ws="en">squeeze into, squeeze through, squeeze in between</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words refer to pushing yourself into a small space?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a0465cdf-a648-49dd-a2da-a7b3a858683c" ownerguid="768aed05-dbc9-4caf-9461-76cb3720f908"> -<ExampleWords> -<AUni ws="en">discomfort, feel uncomfortable, mild, hurts a little bit, itch, prickle, smart, sting, stinging, tingle, tingling, stitch, twinge, dull</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a mild pain?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a04a1673-c59c-4de4-83b4-6d86bc311414" ownerguid="09c10f22-64d6-4d20-ba2b-488ab8a46b67"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a0512d50-c03b-4719-ba98-812fe9a16811" ownerguid="a4958dd9-03cc-4863-ab76-cd0682060cb0"> -<ExampleWords> -<AUni ws="en">praise, acclaim, approve, commend, compliment, eulogize, exalt, extol, glorify, honor (v), give credit, recognize, laud, magnify, sing your praises, speak well of, express your approval, go into raptures over</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to praising someone?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a0546f85-2590-4dc9-ae94-6512b1116b01"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guepi</AUni> -<AUni ws="qvm-x-acl">guepi; guepi; guepe</AUni> -<AUni ws="qvm-x-akh">qepi</AUni> -<AUni ws="qvm-x-akl">qepi; qepi; qepe</AUni> -<AUni ws="qvm-x-ame">qipi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qipi.n</AUni> -<AUni ws="qvm-x-acl">*qipi.n</AUni> -<AUni ws="qvm-x-akh">*qipi.n</AUni> -<AUni ws="qvm-x-akl">*qipi.n</AUni> -<AUni ws="qvm-x-ame">*qipi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.195" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="985dd75c-1c14-4d80-9f77-3069719d975b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qipi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1c71c899-6622-4c8c-8568-433b15e7f844" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ced18ca2-31eb-42ab-afd4-7f98bf0f2db7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qipi.n 
\entryTyp root 
\gENG load 
\gSPN cargo 
\e *qipi.n 
\c N0 
\mp +FinalI 
\ach guepi 
\akh qepi 
\acl guepi / _# 
\acl guepi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl guepe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qepi / _# 
\akl qepi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qepe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qipi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a05d984e-e99b-4ab8-b9c7-6bbb4833a724" ownerguid="0066f0f7-02dd-4f8e-afa5-59b8cb5a434a"> -<ExampleWords> -<AUni ws="en">betray, turn traitor, collaborate, treason</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to betraying your country?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a05e906f-289d-4ad8-b3b5-30a840c4c99d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gala</AUni> -<AUni ws="qvm-x-acl">gala</AUni> -<AUni ws="qvm-x-akh">qala</AUni> -<AUni ws="qvm-x-akl">qala</AUni> -<AUni ws="qvm-x-ame">qala</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qalla.n</AUni> -<AUni ws="qvm-x-acl">*qalla.n</AUni> -<AUni ws="qvm-x-akh">*qalla.n</AUni> -<AUni ws="qvm-x-akl">*qalla.n</AUni> -<AUni ws="qvm-x-ame">*qalla.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.72" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5a1f2944-9142-41ea-84ef-033abb058371" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qalla.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="576fc9d2-fdcb-4a04-98e2-eab2155cb680" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dc76c958-7930-4460-b00f-e9871eb07f75" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qalla.n 
\entryTyp root 
\gENG 
\gSPN 
\e *qalla.n 
\c N0 
\ach gala 
\akh qala 
\acl gala 
\akl qala 
\ame qala</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a063dde9-01af-4bc3-9384-e6c8c3498bdc" ownerguid="a7824686-a3f3-4c8a-907e-5d841cf846c8"> -<ExampleWords> -<AUni ws="en">flicker, blink</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something shining brighter and dimmer again and again?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a0642103-0e21-49bd-8c77-6d7c883361a0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jiujiuya; jiujiuya:</AUni> -<AUni ws="qvm-x-acl">jiujiuya; jiujiuya:</AUni> -<AUni ws="qvm-x-akh">jiwjiwya; jiwjiwya:</AUni> -<AUni ws="qvm-x-akl">jiwjiwya; jiwjiwya:</AUni> -<AUni ws="qvm-x-ame">hiwhiwya; hiwhiwya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hiwjiwya:</AUni> -<AUni ws="qvm-x-acl">*hiwjiwya:</AUni> -<AUni ws="qvm-x-akh">*hiwjiwya:</AUni> -<AUni ws="qvm-x-akl">*hiwjiwya:</AUni> -<AUni ws="qvm-x-ame">*hiwjiwya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.739" /> -<DateModified val="2022-10-10 21:19:47.698" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="be95c11e-6853-40bd-8b1f-88e47d3ceac2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hiwjiwya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="667fdd8b-be1a-4024-aa50-1e5e29ae5d4b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="92ab9a8f-f150-4fc2-8c45-2596ec7a5e58" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hiwjiwya: 
\entryTyp root 
\gENG steep 
\gSPN 
\e *hiwjiwya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach jiujiuya foreshortened 
\ach jiujiuya: 
\akh jiwjiwya foreshortened 
\akh jiwjiwya: 
\acl jiujiuya foreshortened 
\acl jiujiuya: 
\akl jiwjiwya foreshortened 
\akl jiwjiwya: 
\ame hiwhiwya foreshortened 
\ame hiwhiwya:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a0649085-d258-4ec6-9600-d415e298c552" ownerguid="89c55461-5ea8-47a5-b345-0f3bc0a98939"> -<Form> -<AUni ws="qvm-x-ach">milagru; milagro</AUni> -<AUni ws="qvm-x-acl">milagru; milagru; milagro</AUni> -<AUni ws="qvm-x-akh">milagru; milagro</AUni> -<AUni ws="qvm-x-akl">milagru; milagru; milagro</AUni> -<AUni ws="qvm-x-ame">milagru; milagro</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a0659fd1-f3b7-492b-bd93-5514183d4291" ownerguid="bc9d763c-e4fe-48ab-ad44-87a36f6cc06f"> -<ExampleWords> -<AUni ws="en">critical, captious, censorious, hypercritical, judgmental</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe someone who often criticizes other people?</AUni> -</Question> -</rt> -<rt class="StTxtPara" guid="a067c5ec-fc08-47da-98ba-acff5d70cac0" ownerguid="06e5b434-26a2-4f38-9e9c-adb5afdaafa1"> -<Contents> -<Str> -<Run ws="en">There is a problem with this environment string '': There is some kind of error somewhere around here: ''. It may be a missing underscore _, two or more underscores, a missing slash /, something beyond a word boundary symbol #, or two or more word boundary symbols at the same edge.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -<Segments> -<objsur guid="211029d5-d23f-4f12-9012-c1d684993ec4" t="o" /> -<objsur guid="7923913a-85a9-4255-b613-6a33e2ae33be" t="o" /> -</Segments> -<StyleRules> -<Prop namedStyle="Paragraph"></Prop> -</StyleRules> -</rt> -<rt class="MoStemMsa" guid="a06951ab-d085-4ae1-9eb2-23300aba7ee7" ownerguid="f13432f6-42c8-4c0b-8bce-72ba1d8f7922"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a069edc6-cbcf-4faf-8144-3303bb70185a" ownerguid="85912845-21b0-41eb-8b8c-1f5c3d53df08"> -<ExampleWords> -<AUni ws="en">not enthusiastic, unenthusiastic, lack of enthusiasm, half-hearted, lukewarm, muted, your heart's not in it</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to not feeling enthusiastic?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a06c0727-3da8-4a07-b6d0-371db015e29d" ownerguid="fc193988-26ca-49e9-849a-b12456d98792"> -<ExampleWords> -<AUni ws="en">crazy, insane, mad, screwy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something someone does that is crazy?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a06d7f05-9283-4280-913c-69b64b7a7f31" ownerguid="92c1bb05-e698-45df-abd3-e4aea63be3cb"> -<Form> -<AUni ws="qvm-x-ach">sentïdu</AUni> -<AUni ws="qvm-x-acl">sentïdu; sentïdu; sentïdo</AUni> -<AUni ws="qvm-x-akh">sentïdu</AUni> -<AUni ws="qvm-x-akl">sentïdu; sentïdu; sentïdo</AUni> -<AUni ws="qvm-x-ame">sentïdu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a06d8571-f152-4ad9-9cff-47685527e2b4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pilta</AUni> -<AUni ws="qvm-x-acl">pilta</AUni> -<AUni ws="qvm-x-akh">pilta</AUni> -<AUni ws="qvm-x-akl">pilta</AUni> -<AUni ws="qvm-x-ame">pilta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pillta.v</AUni> -<AUni ws="qvm-x-acl">*pillta.v</AUni> -<AUni ws="qvm-x-akh">*pillta.v</AUni> -<AUni ws="qvm-x-akl">*pillta.v</AUni> -<AUni ws="qvm-x-ame">*pillta.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.830" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="34e8fe39-20f2-4da5-bde0-62b31ef77c2c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pillta.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="490b8b98-8301-458d-88e4-69b783b7425b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a50b36b3-5bc5-4332-9b3b-ab52785ad713" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pillta.v 
\entryTyp root 
\gENG braid 
\gSPN trensar 
\e *pillta.v 
\c V1 
\ach pilta 
\akh pilta 
\acl pilta 
\akl pilta 
\ame pilta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="a070d10d-afcf-4c4a-9b30-bc832bccc1fc" ownerguid="83500e3b-e92b-4626-8312-59ffd4a39f6e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">leave</AUni> -<AUni ws="es">dejar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6634bec7-8253-4ea3-ad5a-1d24a33442cb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a0722dc7-ca7f-44bf-9db3-8367500d1010" ownerguid="47feee3e-80e1-469a-911c-0c550b37a2f8"> -<ExampleWords> -<AUni ws="en">unnecessary, extraneous, incidental, inessential, needless, nonessential, uncalled-for, unessential, unnecessary, unneeded</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that is not necessary?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a07612d5-3d8c-40f0-bfcc-3b1852154ed7" ownerguid="ccbbd16f-58c5-45c1-bfff-1fba64d9740e"> -<ExampleWords> -<AUni ws="en">go, dig in, have at it, let's go, let's do it, move it, let's get going, "on your marks, get set, go", "ready, set, go"</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(17) What do people say when they want someone else to start?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a0767a55-ff99-4eba-adbd-be135e932a79"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rica:ri; rica:ra</AUni> -<AUni ws="qvm-x-acl">rica:ri; rica:re; rica:ra</AUni> -<AUni ws="qvm-x-akh">rika:ri; rika:ra</AUni> -<AUni ws="qvm-x-akl">rika:ri; rika:re; rika:ra</AUni> -<AUni ws="qvm-x-ame">rika:ri; rika:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rika:ri</AUni> -<AUni ws="qvm-x-acl">*rika:ri</AUni> -<AUni ws="qvm-x-akh">*rika:ri</AUni> -<AUni ws="qvm-x-akl">*rika:ri</AUni> -<AUni ws="qvm-x-ame">*rika:ri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.358" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="25b7151f-6b51-4df3-aecc-0082bdee8830" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rika:ri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="73247dfc-e7bb-4002-8830-b465e6340eca" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9f64f8c6-2c9e-42bb-a6bf-8dd0a0eab228" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rika:ri 
\entryTyp root 
\gENG look.at 
\gSPN mirar 
\e *rika:ri 
\c V2 
\mp +FinalI 
\ach rica:ri 
\ach rica:ra morphlowered 
\akh rika:ri 
\akh rika:ra morphlowered 
\acl rica:ri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl rica:re +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl rica:ra morphlowered 
\akl rika:ri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rika:re +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rika:ra morphlowered 
\ame rika:ri 
\ame rika:ra morphlowered 
\mp PMlowered</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a07bbb0f-ba72-46ff-bd0d-555bbc764e65" ownerguid="2b17fa72-8cff-456c-b7cf-921c7b457c33"> -<Form> -<AUni ws="qvm-x-ach">shulu</AUni> -<AUni ws="qvm-x-acl">shulu; shulu; shulo</AUni> -<AUni ws="qvm-x-akh">shulu</AUni> -<AUni ws="qvm-x-akl">shulu; shulu; shulo</AUni> -<AUni ws="qvm-x-ame">shulu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="a07dfe6b-73e8-4ed3-b16f-28d091025c84" ownerguid="1b3c60f3-541a-4e64-9ff0-c4d6a7882a40"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="a07ef679-22f1-4d9d-a328-eac8104cce46" ownerguid="fa8c43d1-057e-4bf4-bc2e-f6c3fb3a5bb1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">offering</AUni> -<AUni ws="es">ofrenda</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="00651563-fc2e-4d8d-8ff7-9f42c9ccb1d0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a0811c78-a31e-4818-9e53-3b7d2cddfac1" ownerguid="3615c3d1-fd5b-40c5-80ad-80bfd6451d56"> -<ExampleWords> -<AUni ws="en">plunder, booty, loot, spoils</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to plunder?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="a0812d74-9b7a-4a74-b504-a941af5f1579" ownerguid="6bda8a7e-628f-4114-9c86-ba3b42f31d3f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">warmi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">warmi; warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">warmi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">warmi; warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">warmi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ddf5b3ec-6ef7-4a2a-b160-365cb7d372df" t="r" /> -</Morph> -<Msa> -<objsur guid="e9ece695-28de-48a2-aff1-266bce7d2a60" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="a083e12a-2295-4c74-9641-397ba3edf009" ownerguid="6d888d6e-b0e0-46f3-b77b-3d2adadbc77c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sleep</AUni> -<AUni ws="es">dormir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="887b326c-78a6-4233-a815-e445cd03819e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a086be2e-79f6-4ba1-9677-fb6af2a33cdf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wega</AUni> -<AUni ws="qvm-x-acl">wega</AUni> -<AUni ws="qvm-x-akh">weqa</AUni> -<AUni ws="qvm-x-akl">weqa</AUni> -<AUni ws="qvm-x-ame">wiqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wiqa</AUni> -<AUni ws="qvm-x-acl">*wiqa</AUni> -<AUni ws="qvm-x-akh">*wiqa</AUni> -<AUni ws="qvm-x-akl">*wiqa</AUni> -<AUni ws="qvm-x-ame">*wiqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.668" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="18a1c5f0-a63c-49f6-89e1-9dced40784a9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wiqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="30b376a1-3d37-4428-8970-8bcf4312a004" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c998dae3-45d2-4310-94ba-58e3a966c595" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wiqa 
\entryTyp root 
\gENG squeeze 
\gSPN exprimir 
\e *wiqa 
\c V1 
\ach wega 
\akh weqa 
\acl wega 
\akl weqa 
\ame wiqa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="a0891c00-fce6-4665-a54f-ee2d07026c99" ownerguid="7938c5cf-93d0-4b8f-943b-5d032105117b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EXO 26.26 Quinranpa tsacarag guerucunata ruratsinqui acacia guerupita.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="a08c03a8-e32f-4ee3-a700-30e974b3b90f" ownerguid="c345f278-91ff-463d-b9a6-8abac8a267eb"> -<ExampleWords> -<AUni ws="en">alfalfa, bamboo, barley, bluegrass, buckwheat, bulrush, burmuda grass, cane, cereal, clover, corn, crabgrass, elephant grass, foxtail, grass, horsetail, knotgrass, lemongrass, maize, millet, oat, reed, rye, sesame, shortgrass, sorghum, speargrass, sugarcane, weed, wheat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What types of grass are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a08cd252-a2e0-4b35-b111-c97a038905fb" ownerguid="ffcc57f8-6c6d-4bf4-85be-9220ca7c739d"> -<ExampleWords> -<AUni ws="en">monogamous, monogamy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to marrying only one person?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a08f1569-36b9-4cb7-8187-00d9cbeae32a" ownerguid="eed3064f-530f-46fc-9115-3f94ac70c46a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="a091cfe6-190a-4e75-bf0c-8730574ebad7" ownerguid="4246d409-c802-47c6-a3f9-a1317f59d1bb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">park</AUni> -<AUni ws="es">cuadrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f69bbb7a-5ee3-4b30-b2a1-f0b1dd124f54" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="a093ac75-be53-4524-9848-63fcb621ed28" ownerguid="47ca0709-4df5-4faa-8f72-302922245f12"> -<Form> -<AUni ws="qvm-x-ach">corrigi</AUni> -<AUni ws="qvm-x-acl">corrigi; corrige</AUni> -<AUni ws="qvm-x-akh">corrigi</AUni> -<AUni ws="qvm-x-akl">corrigi; corrige</AUni> -<AUni ws="qvm-x-ame">corrigi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="a094c688-4926-460e-9706-cde7c04475b1" ownerguid="5200b698-99c0-41ab-9e53-9026dedabd15"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a095b4cf-3eec-486a-b603-6de49a7c6305" ownerguid="130e2cbb-7e51-4f6f-a1cf-7a053a44c9b7"> -<ExampleWords> -<AUni ws="en">decorate, adorn, bedeck, deck, embellish, festoon, ornament, gild</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to decorating something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a09630c3-4e3b-4e1b-b245-8d26f0b888ad" ownerguid="36bf7e87-332f-45d2-a3fd-0c7dd269dad5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="4b3b5ca1-8a0f-4cae-baf5-460564daad5d" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="53670ecd-4986-4ed9-9a5a-bb29133e2512" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="a096bbac-f9f5-417b-b1b6-11034f062f2b" ownerguid="f0fa94d2-410b-4437-9250-35adfeb0fdfc"> -<Form> -<AUni ws="qvm-x-ach">lanzamientu; lanzamiento</AUni> -<AUni ws="qvm-x-acl">lanzamientu; lanzamientu; lanzamiento</AUni> -<AUni ws="qvm-x-akh">lanzamientu; lanzamiento</AUni> -<AUni ws="qvm-x-akl">lanzamientu; lanzamientu; lanzamiento</AUni> -<AUni ws="qvm-x-ame">lanzamientu; lanzamiento</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a099bda7-0779-49fd-a156-66b6d3e2c1d1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">barbicha</AUni> -<AUni ws="qvm-x-acl">barbicha</AUni> -<AUni ws="qvm-x-akh">barbicha</AUni> -<AUni ws="qvm-x-akl">barbicha</AUni> -<AUni ws="qvm-x-ame">barbicha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+barbechar</AUni> -<AUni ws="qvm-x-acl">+barbechar</AUni> -<AUni ws="qvm-x-akh">+barbechar</AUni> -<AUni ws="qvm-x-akl">+barbechar</AUni> -<AUni ws="qvm-x-ame">+barbechar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.941" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="debf9e9e-d3d6-48a6-b0eb-b2a5c19c5231" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+barbechar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6b7c151e-a79f-42d6-a9cb-94dd63f8395c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="13cc66bd-6be9-4074-9bcd-7a7773807ccf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +barbechar 
\entryTyp root 
\gENG 
\gSPN 
\e +barbechar 
\c V1 
\ach barbicha 
\akh barbicha 
\acl barbicha 
\akl barbicha 
\ame barbicha 
\i PSA 65.10 Gammi barbichashgan chacracunatapis yacuwan pargunqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a09c7bc2-692c-4e60-8683-65b84eff22cd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">piña</AUni> -<AUni ws="qvm-x-acl">piña</AUni> -<AUni ws="qvm-x-akh">piña</AUni> -<AUni ws="qvm-x-akl">piña</AUni> -<AUni ws="qvm-x-ame">piña</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*piña.v</AUni> -<AUni ws="qvm-x-acl">*piña.v</AUni> -<AUni ws="qvm-x-akh">*piña.v</AUni> -<AUni ws="qvm-x-akl">*piña.v</AUni> -<AUni ws="qvm-x-ame">*piña.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.840" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2307cb23-54a8-47e7-b937-cfee82366bd4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*piña.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f146c4f0-5fc9-4c42-af82-64e3e8327833" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7a996e65-d07f-417f-b8a7-98aba71d6a4e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *piña.v 
\entryTyp root 
\gENG angry 
\gSPN enojarse 
\e *piña.v 
\c V2 
\ach piña 
\akh piña 
\acl piña 
\akl piña 
\ame piña</Run> -</AStr> -</Custom> -</rt> -<rt class="MoAffixAllomorph" guid="a09df5ed-2fa9-43b2-b132-389c6f56b96e" ownerguid="d6bd9f96-9d92-4651-b1e6-b4211c758955"> -<Form> -<AUni ws="qvm-x-ach">rgayqui</AUni> -<AUni ws="qvm-x-acl">rgayqui</AUni> -<AUni ws="qvm-x-akh">rqayki</AUni> -<AUni ws="qvm-x-akl">rqayki</AUni> -<AUni ws="qvm-x-ame">rqayki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a09f3bf8-9bdc-4bfa-8d89-4a145483ed2b" ownerguid="a2c827eb-49d8-43e8-9d8d-9a2e5f4df97b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="fda0bd50-c5a7-423f-9a87-2ef4db7076b8" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">help</AUni> -<AUni ws="es">auxiliar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8dcccb03-72a1-467e-8ff7-c1229b1853c2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="a0a15b5c-38bc-425c-b0cb-2f3c5da36787"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">shequn</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoAffixAllomorph" guid="a0a53b4e-09af-43aa-8dbe-9775bc1197e5" ownerguid="6a19c088-7fc7-47dd-a7a9-c8191ad99d45"> -<Form> -<AUni ws="qvm-x-ach">tag</AUni> -<AUni ws="qvm-x-acl">tag</AUni> -<AUni ws="qvm-x-akh">taq</AUni> -<AUni ws="qvm-x-akl">taq</AUni> -<AUni ws="qvm-x-ame">taq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a0a829b4-b930-44e1-a4f0-f892c2a5fe00" ownerguid="3420b36a-a033-4af9-a8c4-53f8221ee56e"> -<ExampleWords> -<AUni ws="en">from</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something moves from one place (to another place)?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a0af3947-9ebb-4500-a8e3-33bebcf0263d" ownerguid="716bb125-9945-45ba-a631-ec4893efd1d7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a0b02bcf-8ed0-4a2f-83b4-4efc97667de9" ownerguid="acc16676-b30c-4c4c-aa94-20869e1bafdd"> -<Form> -<AUni ws="qvm-x-ach">guempu</AUni> -<AUni ws="qvm-x-acl">guempu; guempo</AUni> -<AUni ws="qvm-x-akh">qempu</AUni> -<AUni ws="qvm-x-akl">qempu; qempo</AUni> -<AUni ws="qvm-x-ame">qimpu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a0b1bca1-75ce-4cf0-aa54-08aa1746eb57" ownerguid="dca9a740-68f3-415b-8261-b1809e2abc4d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bed</AUni> -<AUni ws="es">catre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="eb208ace-c734-49b6-9c33-d4d2adbbd29a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a0b4c971-2aa1-4a2e-a329-fd6cf926f849" ownerguid="d502512c-966b-4752-8636-716fb29facfe"> -<ExampleWords> -<AUni ws="en">talk in your sleep</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to talking in your sleep?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a0bceaf4-b5bd-43f7-84d8-388fce6a1b01"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rapi</AUni> -<AUni ws="qvm-x-acl">rapi; rape</AUni> -<AUni ws="qvm-x-akh">rapi</AUni> -<AUni ws="qvm-x-akl">rapi; rape</AUni> -<AUni ws="qvm-x-ame">rapi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rapi.v</AUni> -<AUni ws="qvm-x-acl">*rapi.v</AUni> -<AUni ws="qvm-x-akh">*rapi.v</AUni> -<AUni ws="qvm-x-akl">*rapi.v</AUni> -<AUni ws="qvm-x-ame">*rapi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.270" /> -<DateModified val="2022-10-10 21:18:47.203" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6b78d23a-71bb-4660-9366-13d605eb25d5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rapi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c584af9f-1475-45ca-83cb-f29151da950e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a7fa4e13-e7b5-44b3-9f36-01954e5c7e30" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rapi.v 
\entryTyp root 
\gENG 
\gSPN 
\e *rapi.v 
\c V1 R0 
\mp +FinalI 
\ach rapi 
\akh rapi 
\acl rapi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl rape +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rapi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rape +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame rapi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="a0bd2361-4496-4cd3-a3e7-00fde61d0881" ownerguid="06b70dd3-13cf-4bbd-8e80-557e3ab59ed0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">heel</AUni> -<AUni ws="es">talón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c505edce-1bd8-4201-8f8b-1b6c790bd348" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="a0bda81b-57a1-46c3-95c0-4c553e4dd392" ownerguid="02e8fc00-fb8e-49d5-b684-031eb5e10ed4"> -<Form> -<AUni ws="qvm-x-ach">wayla</AUni> -<AUni ws="qvm-x-acl">wayla</AUni> -<AUni ws="qvm-x-akh">wayla</AUni> -<AUni ws="qvm-x-akl">wayla</AUni> -<AUni ws="qvm-x-ame">wayla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PunctuationForm" guid="a0bead63-82fa-4e6b-86c7-c8e28bf3c3eb"> -<Form> -<Str> -<Run ws="en">yarpä</Run> -</Str> -</Form> -</rt> -<rt class="MoStemMsa" guid="a0c4890c-db0c-4fff-ae27-57f987c657b5" ownerguid="1a02c2ed-5ed3-40ad-8a76-eb6426f4b587"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a0c6f973-67a5-4b80-a561-79875a41cc41" ownerguid="6912fd97-2452-42b3-b772-458b9bdeffe0"> -<Form> -<AUni ws="qvm-x-ach">utucya; utucyä</AUni> -<AUni ws="qvm-x-acl">utucya; utucyä</AUni> -<AUni ws="qvm-x-akh">utukya; utukyä</AUni> -<AUni ws="qvm-x-akl">utukya; utukyä</AUni> -<AUni ws="qvm-x-ame">utukya; utukyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="a0c7b823-1585-42c7-9c2a-8f7fefc31e2e" ownerguid="8033798b-e0b8-436a-9e27-62f2ed3bdb08"> -<Form> -<AUni ws="qvm-x-ach">mantil</AUni> -<AUni ws="qvm-x-acl">mantil; mantil; mantel</AUni> -<AUni ws="qvm-x-akh">mantil</AUni> -<AUni ws="qvm-x-akl">mantil; mantil; mantel</AUni> -<AUni ws="qvm-x-ame">mantil</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a0cd3b93-84b4-46b1-bc50-0bf090e5e014" ownerguid="21083632-77f8-4c64-b957-34c04bce47f4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="22f3bf70-7951-421a-9714-6c5c0876c682" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a0cdadce-5a36-4cbe-b99c-358e86f33b7a" ownerguid="5f726266-21e9-467f-a6b6-9513c54958c4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="3c472965-ae3b-421d-9e73-51fdeb07d571" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a0cdd1d0-9c1b-4464-bdab-8f5e7afbd4aa" ownerguid="ae2f0ff8-d3d7-409e-a19b-84d4bd88c1ed"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">know</AUni> -<AUni ws="es">saber</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b1d16f9f-b075-4cb8-b056-d1ad90dcd870" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a0ce1188-88d8-46a0-b675-df7f8400beaa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">esqui:na</AUni> -<AUni ws="qvm-x-acl">esqui:na</AUni> -<AUni ws="qvm-x-akh">esqui:na</AUni> -<AUni ws="qvm-x-akl">esqui:na</AUni> -<AUni ws="qvm-x-ame">esqui:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+esquina</AUni> -<AUni ws="qvm-x-acl">+esquina</AUni> -<AUni ws="qvm-x-akh">+esquina</AUni> -<AUni ws="qvm-x-akl">+esquina</AUni> -<AUni ws="qvm-x-ame">+esquina</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.518" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5481ca96-ec01-400f-b164-fb471e3e51ba" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+esquina</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5ac01377-a8cc-4ee7-bad1-e61e489d17de" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="30f03c38-1f95-49d6-b4c9-9254f1d7404b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +esquina 
\entryTyp root 
\gENG corner 
\gSPN esquina 
\e +esquina 
\c N0 
\ach esqui:na 
\akh esqui:na 
\acl esqui:na 
\akl esqui:na 
\ame esqui:na 
\i 2KI 14.13 Nircurnami Jerusalén marcaman aywar murällanta juchutsergan Efraín puncupita hasta Isquïna nishgan puncuyag.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a0cf4e6c-c605-47d8-865f-21f4690e7aef"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">brasile:ta</AUni> -<AUni ws="qvm-x-acl">brasile:ta</AUni> -<AUni ws="qvm-x-akh">brasile:ta</AUni> -<AUni ws="qvm-x-akl">brasile:ta</AUni> -<AUni ws="qvm-x-ame">brasile:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+brazalete.2</AUni> -<AUni ws="qvm-x-acl">+brazalete.2</AUni> -<AUni ws="qvm-x-akh">+brazalete.2</AUni> -<AUni ws="qvm-x-akl">+brazalete.2</AUni> -<AUni ws="qvm-x-ame">+brazalete.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.981" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3a264cfb-bd13-4f47-8d87-b217333366f8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+brazalete.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9ad91d15-9f42-40b2-a375-ec6653d9fbd2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="39b3c19a-3604-4eb4-ad7e-a837f6bf4ab6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +brazalete.2 
\entryTyp root 
\gENG bracelet 
\gSPN brazalete 
\e +brazalete.2 
\c N0 
\ach brasile:ta 
\akh brasile:ta 
\acl brasile:ta 
\akl brasile:ta 
\ame brasile:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="a0d073df-d413-4dfd-9ba1-c3c68f126d90" ownerguid="dc1a2c6f-1b32-4631-8823-36dacc8cb7bb"> -<Abbreviation> -<AUni ws="en">1.1.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.916" /> -<DateModified val="2022-9-23 16:55:7.916" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to planets (large objects that circle the sun, looking like bright wandering stars in the sky), comets (objects that circle the sun, looking like a star with a tail), meteors (small objects that come from space and burn up when they hit the earth's atmosphere, causing a streak of light across the sky), and asteroids (small objects that circle the sun), planetary moons (large objects that circle the planets). Some cultures do not study the stars and will have few or no words in this domain. Others cultures that study the stars will have many words. There are only five planets that people can see in the sky--Mercury, Venus, Mars, Jupiter, and Saturn. The others are only known from the scientific study of astronomy.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Planet</AUni> -</Name> -<Questions> -<objsur guid="60836a5a-1e5d-4ddf-bfc3-cbc821a5a921" t="o" /> -<objsur guid="03884c2a-62fa-49f1-9a46-47c51fa387b5" t="o" /> -<objsur guid="4f4aadcb-b6ef-4605-a691-590273dd17af" t="o" /> -<objsur guid="6f5ae82d-060b-429f-b5af-96937196cd57" t="o" /> -<objsur guid="79af8b32-fe1b-42ea-91ba-3b5772196a69" t="o" /> -<objsur guid="c904a11a-20a5-4858-b312-ac5297a4a075" t="o" /> -<objsur guid="97d6943f-c721-4e41-acfa-54b142235685" t="o" /> -<objsur guid="8631895f-d91f-4a1e-ab3e-a2362f70cba0" t="o" /> -<objsur guid="0f04408f-b53d-4954-b744-063e036bb760" t="o" /> -<objsur guid="c55f2d06-86e6-4a93-8e56-2f91e5f43f9e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="a0d3ad5c-3871-411c-8704-d4dab3a537ca" ownerguid="7d472dd5-636d-4499-bf66-83cf23c0dbe1"> -<ExampleWords> -<AUni ws="en">young, little, small, underage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a child?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a0d3c903-1533-4be4-84a9-c52c6201adea" ownerguid="4c5fb2b1-f8e1-4aa6-b49c-ee13dfc9154e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">ser.lleno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9370e326-fbc2-4f12-8dd6-bc6263157adf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a0d79b1a-bbf8-4dfb-854c-1cf7cd071a70" ownerguid="183dc976-34ef-4c1a-aaf4-03531a320304"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="10f288a1-2de7-4807-a081-da1b50cd81cd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a0da53a2-5caf-444d-aeb4-5c0799f72939"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waqui</AUni> -<AUni ws="qvm-x-acl">waqui; waqui; waque</AUni> -<AUni ws="qvm-x-akh">waki</AUni> -<AUni ws="qvm-x-akl">waki; waki; wake</AUni> -<AUni ws="qvm-x-ame">waki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waki</AUni> -<AUni ws="qvm-x-acl">*waki</AUni> -<AUni ws="qvm-x-akh">*waki</AUni> -<AUni ws="qvm-x-akl">*waki</AUni> -<AUni ws="qvm-x-ame">*waki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.444" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b8c0790f-19ad-403a-a150-224d326b6e2a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ee6cab1c-08ed-45e3-abc8-e72015ab930a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ba68a992-72d5-44d8-8e11-9edab2c71522" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waki 
\entryTyp root 
\gENG others 
\gSPN otros 
\e *waki 
\c N1 
\mp +FinalI 
\ach waqui 
\akh waki 
\acl waqui / _# 
\acl waqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl waque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl waki / _# 
\akl waki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl wake +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame waki 
\mcc *waki / ~_ 3P.V</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="a0de790c-a0e3-477e-ab81-61518d8a6c21" ownerguid="2ef711fc-a58a-4ceb-b48a-7e1fc71ec429"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">nqui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">nqui; nqui; nque</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">nki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">nki; nki; nke</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="eefb29ad-f416-4367-b09c-bb45b5e9cf21" t="r" /> -</Morph> -<Msa> -<objsur guid="0d90ca1d-7b60-41a3-a022-dba460606a1c" t="r" /> -</Msa> -<Sense> -<objsur guid="08cdcf68-e555-46a8-9801-1003a592bece" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="a0e224da-c76a-46a9-9b95-fa6e2402455f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">malogra</AUni> -<AUni ws="qvm-x-acl">malogra</AUni> -<AUni ws="qvm-x-akh">malogra</AUni> -<AUni ws="qvm-x-akl">malogra</AUni> -<AUni ws="qvm-x-ame">malogra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+malograr</AUni> -<AUni ws="qvm-x-acl">+malograr</AUni> -<AUni ws="qvm-x-akh">+malograr</AUni> -<AUni ws="qvm-x-akl">+malograr</AUni> -<AUni ws="qvm-x-ame">+malograr</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.285" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ba4615ff-456d-4ecb-9457-800f9ff14841" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+malograr</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1a2a84e5-c3e6-478b-833b-596449c3bb9a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="beb8a95b-aba3-4e79-9b70-099c1d29f65c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +malograr 
\entryTyp root 
\gENG ruin 
\gSPN malograr 
\e +malograr 
\c V2 
\ach malogra 
\akh malogra 
\acl malogra 
\akl malogra 
\ame malogra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a0e27b76-7e59-4f7c-9e2b-260d4cccf859" ownerguid="7ed18a74-27a3-4c44-9d83-94425ceb774c"> -<Form> -<AUni ws="qvm-x-ach">trätu</AUni> -<AUni ws="qvm-x-acl">trätu; trätu; träto</AUni> -<AUni ws="qvm-x-akh">trätu</AUni> -<AUni ws="qvm-x-akl">trätu; trätu; träto</AUni> -<AUni ws="qvm-x-ame">trätu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a0e540c3-62e5-4765-93ca-7c0795d7e606"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gueshma</AUni> -<AUni ws="qvm-x-acl">gueshma</AUni> -<AUni ws="qvm-x-akh">qeshma</AUni> -<AUni ws="qvm-x-akl">qeshma</AUni> -<AUni ws="qvm-x-ame">qishma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qishma</AUni> -<AUni ws="qvm-x-acl">*qishma</AUni> -<AUni ws="qvm-x-akh">*qishma</AUni> -<AUni ws="qvm-x-akl">*qishma</AUni> -<AUni ws="qvm-x-ame">*qishma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.204" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4700d3a8-17da-4ec1-8b6a-d53b2bbe6165" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qishma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a43a1fd0-76fe-4a33-857c-488308eda802" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ac9120c4-18fc-4aa9-96ce-2af7348e152a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qishma 
\entryTyp root 
\gENG 
\gSPN 
\e *qishma 
\c V1 
\ach gueshma 
\akh qeshma 
\acl gueshma 
\akl qeshma 
\ame qishma 
\i PRO 8.28 Lamar mana geshmacänanpag tacyatsiptinpis tsaychömi caycargä.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a0e825f2-99fe-4ffe-9b86-903447364d8e" ownerguid="99d0d129-b427-4468-b4c6-91005be63e18"> -<ExampleWords> -<AUni ws="en">tobacco, leaf, dry, rack, cut</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to growing tobacco?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a0f207d9-6daa-4746-a608-47f0d438b2d9" ownerguid="fe6cfaa7-1e0c-4fae-806c-7ae07375ba6c"> -<Form> -<AUni ws="qvm-x-ach">choga</AUni> -<AUni ws="qvm-x-acl">choga</AUni> -<AUni ws="qvm-x-akh">choqa</AUni> -<AUni ws="qvm-x-akl">choqa</AUni> -<AUni ws="qvm-x-ame">chuqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a0f2cbfc-fda6-4ab2-9d22-e911ff330aaa" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<ExampleWords> -<AUni ws="en">extend, stretch, enlarge, blow up, magnify, expand, inflate, augment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to making something big?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a0f371ea-5dc7-42cf-8f77-4178d49e3417" ownerguid="b602c0e1-5398-4cc9-850b-7cfb5c592d13"> -<ExampleWords> -<AUni ws="en">blind, sightless, can't see, totally blind, visually handicapped, visually-impaired</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is blind?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a0fae60b-0697-437d-b562-459ff648420d" ownerguid="22acd714-b11e-462a-bd8e-6ff50843c103"> -<ExampleWords> -<AUni ws="en">side, front, back</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the side of a building?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="a0fb93b0-abc8-40a1-96a2-afca7966e414" ownerguid="f980af6b-7b2e-4b20-a512-e58de06349ce"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EXO 8.24 Jehová nishgannoglami upogruy gashyayparag juntargan Faraónpa palaciunman, mandäshegnincunapa wayincunaman y intëru Egipto nacionman.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="a0fc7b3d-b42e-457a-a171-f0019b836b56" ownerguid="5998134f-2dce-489d-9355-b67044c7611b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="a0fcd1c1-b83c-4b81-a1fe-90c2aa1e5445" ownerguid="62e53799-aac2-4507-a871-81ae7ef85cce"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wan</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wan</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wan</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wan</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wan</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b441a287-959f-4845-be39-c8c9c2b00da1" t="r" /> -</Morph> -<Msa> -<objsur guid="19e28bb1-2f05-4e65-a0d6-47a005cd199a" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="a10096c2-f086-4d14-adbf-e792f13efc32"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">avella:nu</AUni> -<AUni ws="qvm-x-acl">avella:nu; avella:nu; avella:no</AUni> -<AUni ws="qvm-x-akh">avella:nu</AUni> -<AUni ws="qvm-x-akl">avella:nu; avella:nu; avella:no</AUni> -<AUni ws="qvm-x-ame">avella:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+avellano</AUni> -<AUni ws="qvm-x-acl">+avellano</AUni> -<AUni ws="qvm-x-akh">+avellano</AUni> -<AUni ws="qvm-x-akl">+avellano</AUni> -<AUni ws="qvm-x-ame">+avellano</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.880" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b9be8be2-0f47-4947-8fd7-80f6cc745e9a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+avellano</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="973515a4-21b5-4114-9f6a-1d08a5631df5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b9695ccf-2b55-4288-8f71-cf95cdc283be" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +avellano 
\entryTyp root 
\gENG hazelnut 
\gSPN avellano 
\e +avellano 
\c N0 
\ach avella:nu 
\akh avella:nu 
\acl avella:nu / _# 
\acl avella:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl avella:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl avella:nu / _# 
\akl avella:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl avella:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame avella:nu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a10129e5-4e7b-4364-9aa7-304f4e55dffd" ownerguid="d2c54b09-ad0e-4660-9902-c9c80c3c64f4"> -<Form> -<AUni ws="qvm-x-ach">romänu</AUni> -<AUni ws="qvm-x-acl">romänu; romänu; romäno</AUni> -<AUni ws="qvm-x-akh">romänu</AUni> -<AUni ws="qvm-x-akl">romänu; romänu; romäno</AUni> -<AUni ws="qvm-x-ame">romänu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="a104adb9-9e74-4130-aee8-072da2a9ac22"> -<Analyses> -<objsur guid="43848228-1b74-4d32-a279-c6826f9190fd" t="o" /> -<objsur guid="49ee1a30-4e7d-400e-824f-9b2f2c1786e3" t="o" /> -<objsur guid="95f76778-3484-4cbf-a51d-e6acb79bd884" t="o" /> -<objsur guid="bbfd32d9-d744-46a2-addd-823f246ed04f" t="o" /> -<objsur guid="f3a3c98c-a0bc-4db7-9836-e2bfe57f50fa" t="o" /> -<objsur guid="fdac360e-4fe4-4aba-bd68-6e4410c06e68" t="o" /> -</Analyses> -<Checksum val="1589328074" /> -<Form> -<AUni ws="qvm-x-akh">rikakashqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="PunctuationForm" guid="a1058ca6-0288-4c06-92cc-d1869a9e8ef5"> -<Form> -<Str> -<Run ws="en">v1</Run> -</Str> -</Form> -</rt> -<rt class="CmSemanticDomain" guid="a105e31c-1268-4fc2-8655-838d34860ece" ownerguid="69541573-f845-4e77-91f6-1e3551fc6c82"> -<Abbreviation> -<AUni ws="en">9.7.2.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.731" /> -<DateModified val="2022-9-23 16:55:8.731" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the proper names of the oceans and lakes in the language area. Only include the names of oceans and lakes outside the language area if your language has borrowed or adapted the name and you talk about them in your language.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Names of oceans and lakes</AUni> -</Name> -<Questions> -<objsur guid="856fcea1-b603-434f-8f4e-c82ed9d6e8b8" t="o" /> -<objsur guid="8f329186-f3b0-4dfe-a157-4d0c1b759980" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="a10b5056-336b-4a88-93d1-d2bed4b53043" ownerguid="e3652e40-520f-4331-b510-861e207e6c0b"> -<Form> -<AUni ws="qvm-x-ach">ragui</AUni> -<AUni ws="qvm-x-acl">ragui; ragui; rague</AUni> -<AUni ws="qvm-x-akh">raqi</AUni> -<AUni ws="qvm-x-akl">raqi; raqi; raqe</AUni> -<AUni ws="qvm-x-ame">raqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="a10dd8c7-73b7-4b9d-b678-5c1e5382cfbd" ownerguid="436c4a88-703d-4237-815a-547ab5488ffe"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="a1136561-0b46-418b-afe8-f841f89bea85"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">medi:da</AUni> -<AUni ws="qvm-x-acl">medi:da</AUni> -<AUni ws="qvm-x-akh">medi:da</AUni> -<AUni ws="qvm-x-akl">medi:da</AUni> -<AUni ws="qvm-x-ame">medi:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+medida</AUni> -<AUni ws="qvm-x-acl">+medida</AUni> -<AUni ws="qvm-x-akh">+medida</AUni> -<AUni ws="qvm-x-akl">+medida</AUni> -<AUni ws="qvm-x-ame">+medida</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.396" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="68838aa2-6224-4481-99e4-80046cd9d3c9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+medida</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4a0ed58c-4900-4cff-a67b-ecf8c8ec2a3e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="90dca3fe-0a6e-4064-b959-288779db3fef" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +medida 
\entryTyp root 
\gENG 
\gSPN 
\e +medida 
\c N0 
\ach medi:da 
\akh medi:da 
\acl medi:da 
\akl medi:da 
\ame medi:da</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a113a42c-2221-456c-ab2c-7d81df0efcc7" ownerguid="8497fb66-8b91-46b9-a0d5-fb9385319561"> -<ExampleWords> -<AUni ws="en">mild, bland, insipid, weak</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe something that does not have a strong taste?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a1156ec8-4ced-49d4-b9a2-6affa99dcab5" ownerguid="0bd3a443-92ec-4aba-9f6d-67e1ba8c2d94"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fem.sex.organs</AUni> -<AUni ws="es">sexo.de.la.muje</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="43826ea1-2ce1-40e6-a553-836c312d441b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a11637a5-1b6b-47b0-9b20-282ea86fdce1" ownerguid="89944377-8694-4394-bced-153cc22a0e30"> -<ExampleWords> -<AUni ws="en">oldest, youngest, firstborn, second born, last born, middle child</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the order in which a child was born?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a116f6d2-06f8-46e0-9b29-1df4956e6291" ownerguid="8d266c98-9db3-4d3e-b204-956aa848ffa5"> -<ExampleWords> -<AUni ws="en">telephone, radio, television, amplifier, megaphone, telegraph, telegram</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What devices and machines are used to communicate?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a11ae4f0-3abb-4d03-90c9-e20c189edda8" ownerguid="ea796eb8-9dc0-4db0-9518-722cdfc8dc6e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a11c7386-0344-42fa-a682-89164700ed12" ownerguid="4db7beac-642c-4eb0-8efa-40b4ce911da5"> -<Form> -<AUni ws="qvm-x-ach">carcil</AUni> -<AUni ws="qvm-x-acl">carcil</AUni> -<AUni ws="qvm-x-akh">carcil</AUni> -<AUni ws="qvm-x-akl">carcil</AUni> -<AUni ws="qvm-x-ame">carcil</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a11e4309-2c02-4a8a-bd2a-c070815107b8" ownerguid="5332c42f-b44c-48a8-84cc-c9be572133f7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">carpenter.bee</AUni> -<AUni ws="es">abeja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1eb30c47-b5e5-4294-bec9-77e9f3af43aa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a11e5e9a-2eba-4066-883f-023e2e7d1904" ownerguid="3389561c-f264-48b9-b94c-86c33fc3c423"> -<ExampleWords> -<AUni ws="en">average (v), average out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to calculating the average?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a12018a8-694b-440b-a22e-da3e58a4586a" ownerguid="e6cb051b-48e9-4064-bc02-f73151dc0b7c"> -<Form> -<AUni ws="qvm-x-ach">cruz</AUni> -<AUni ws="qvm-x-acl">cruz</AUni> -<AUni ws="qvm-x-akh">cruz</AUni> -<AUni ws="qvm-x-akl">cruz</AUni> -<AUni ws="qvm-x-ame">cruz</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a122b79d-c2ec-40b0-ab0e-26c238dd06d2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tapia</AUni> -<AUni ws="qvm-x-acl">tapia</AUni> -<AUni ws="qvm-x-akh">tapia</AUni> -<AUni ws="qvm-x-akl">tapia</AUni> -<AUni ws="qvm-x-ame">tapia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tapia</AUni> -<AUni ws="qvm-x-acl">+tapia</AUni> -<AUni ws="qvm-x-akh">+tapia</AUni> -<AUni ws="qvm-x-akl">+tapia</AUni> -<AUni ws="qvm-x-ame">+tapia</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.805" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="55b9707b-c5e4-4e30-93fc-766381491441" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tapia</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ce9019f3-7d02-41cb-aea5-e4371688b104" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="22c303d7-5983-4a5e-8a9b-7654b4dc1fb4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tapia 
\entryTyp root 
\gENG mud.wall 
\gSPN tapia 
\e +tapia 
\c N0 
\ach tapia 
\akh tapia 
\acl tapia 
\akl tapia 
\ame tapia</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="a124f35b-ceb8-4906-86e2-b89e1a51fd49" ownerguid="28013fe4-a331-4794-a144-183f7d04712c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">praise</AUni> -<AUni ws="es">alabanza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="82c8cf16-53af-4be5-80c1-3341ae8ae29d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a128788d-9e04-47fd-b3ca-7d8adc3ceae8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">po:zu</AUni> -<AUni ws="qvm-x-acl">po:zu; po:zu; po:zo</AUni> -<AUni ws="qvm-x-akh">po:zu</AUni> -<AUni ws="qvm-x-akl">po:zu; po:zu; po:zo</AUni> -<AUni ws="qvm-x-ame">po:zu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pozo</AUni> -<AUni ws="qvm-x-acl">+pozo</AUni> -<AUni ws="qvm-x-akh">+pozo</AUni> -<AUni ws="qvm-x-akl">+pozo</AUni> -<AUni ws="qvm-x-ame">+pozo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.911" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="89c036ad-fbf3-4fc6-a088-7885c94fdeaa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pozo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="abadfe44-ccba-40b3-8d0b-8f9bb846c2e9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="42714b96-6b18-4fa4-a6f9-27d2e21f6f0a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pozo 
\entryTyp root 
\gENG pit 
\gSPN pozo 
\e +pozo 
\c N0 
\ach po:zu 
\akh po:zu 
\acl po:zu / _# 
\acl po:zu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl po:zo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl po:zu / _# 
\akl po:zu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl po:zo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame po:zu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a12908ef-00ec-4dab-b1c5-171bdfb3db86" ownerguid="c7cabc9e-0ca4-46f6-aa35-7180c26a202b"> -<Form> -<AUni ws="qvm-x-ach">adorna</AUni> -<AUni ws="qvm-x-acl">adorna</AUni> -<AUni ws="qvm-x-akh">adorna</AUni> -<AUni ws="qvm-x-akl">adorna</AUni> -<AUni ws="qvm-x-ame">adorna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="a12cd479-3728-43e3-8e7f-c92aebe8cf8c" ownerguid="9eedcbd6-c65f-4550-8d85-a20bdf903a09"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1SA 17.42 Tsauraga cuyaylapag wancashla mözuta ricaycurmi Davidta manacagman churar</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="a12e0583-d0ba-4285-8e0e-13be32382092"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uti</AUni> -<AUni ws="qvm-x-acl">uti; ute</AUni> -<AUni ws="qvm-x-akh">uti</AUni> -<AUni ws="qvm-x-akl">uti; ute</AUni> -<AUni ws="qvm-x-ame">uti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uti</AUni> -<AUni ws="qvm-x-acl">*uti</AUni> -<AUni ws="qvm-x-akh">*uti</AUni> -<AUni ws="qvm-x-akl">*uti</AUni> -<AUni ws="qvm-x-ame">*uti</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.300" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="80afd477-d3de-4db6-a2b1-dfcc237e6e02" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uti</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a27ea006-8ebb-4696-85db-04b6f37d51f8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="070b821f-7043-489b-a771-c14fd4f81366" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uti 
\entryTyp root 
\gENG ? 
\gSPN ? 
\e *uti 
\c V1 
\mp +FinalI 
\ach uti 
\akh uti 
\acl uti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ute +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl uti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ute +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame uti</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a1313d01-3861-4215-99ee-1a5311bc4b32"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shula</AUni> -<AUni ws="qvm-x-acl">shula</AUni> -<AUni ws="qvm-x-akh">shula</AUni> -<AUni ws="qvm-x-akl">shula</AUni> -<AUni ws="qvm-x-ame">shula</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shulla.v</AUni> -<AUni ws="qvm-x-acl">*shulla.v</AUni> -<AUni ws="qvm-x-akh">*shulla.v</AUni> -<AUni ws="qvm-x-akl">*shulla.v</AUni> -<AUni ws="qvm-x-ame">*shulla.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.622" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ba8e775a-47ef-4274-8950-09b4a12712e1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shulla.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fc26524a-dd66-4c00-98ab-4df844ca0b9b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0721adde-8b15-471d-84b6-127e2f8b5a66" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shulla.v 
\entryTyp root 
\gENG slip.out 
\gSPN escapar 
\e *shulla.v 
\c V2 
\ach shula / ~_ la 
\akh shula / ~_ la 
\acl shula / ~_ la 
\akl shula / ~_ la 
\ame shula / ~_ la</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a1334874-63c5-446e-b4b8-87ea6072c014" ownerguid="88519985-6c9c-4206-a781-56dfd09a526d"> -<Form> -<AUni ws="qvm-x-ach">poder</AUni> -<AUni ws="qvm-x-acl">poder</AUni> -<AUni ws="qvm-x-akh">poder</AUni> -<AUni ws="qvm-x-akl">poder</AUni> -<AUni ws="qvm-x-ame">poder</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a1340fa9-02ef-4701-87d1-a593d1fcf9d0" ownerguid="51c2e2e4-438c-414b-bd15-773b664dd289"> -<ExampleWords> -<AUni ws="en">merciless, unmerciful, heartless, pitiless, ruthless, ruthlessness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe someone who does not have mercy on other people?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a135776f-8f05-4910-9dec-d47a74ae9869"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">despaciu; despacio</AUni> -<AUni ws="qvm-x-acl">despaciu; despacio; despaciu</AUni> -<AUni ws="qvm-x-akh">despaciu; despacio</AUni> -<AUni ws="qvm-x-akl">despaciu; despacio; despaciu</AUni> -<AUni ws="qvm-x-ame">despaciu; despacio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+despacio</AUni> -<AUni ws="qvm-x-acl">+despacio</AUni> -<AUni ws="qvm-x-akh">+despacio</AUni> -<AUni ws="qvm-x-akl">+despacio</AUni> -<AUni ws="qvm-x-ame">+despacio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.394" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="94d817a9-07e3-4a8d-9685-ab9b5ffc5ea8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+despacio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="15b6563d-3582-4519-95dd-150f911400d3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="82e6549d-4f50-4860-926a-a1d115001fce" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +despacio 
\entryTyp root 
\gENG slow 
\gSPN despacio 
\e +despacio 
\c R0 
\ach despaciu / ~_# 
\ach despacio / _# 
\akh despaciu / ~_# 
\akh despacio / _# 
\acl despaciu / _# 
\acl despacio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl despaciu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl despaciu / _# 
\akl despacio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl despaciu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame despaciu / ~_# 
\ame despacio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a1362f44-c8db-4f05-9e8e-e99a1b3dde2b" ownerguid="4c31ac6a-3197-4762-9937-2fdea90784b7"> -<ExampleWords> -<AUni ws="en">sudden (warning), all of a sudden, abrupt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used to indicate that an event is sudden?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="a139558a-8df9-4fc9-bd3e-816a1408ba7f" ownerguid="0296465a-25de-4af6-a122-376956b4b452"> -<Abbreviation> -<AUni ws="en">9.2.3.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that indicate that someone does something himself, rather than through someone else.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Personally</AUni> -</Name> -<Questions> -<objsur guid="f481807a-ccb4-4d63-997f-0c72be24f4ab" t="o" /> -<objsur guid="92bce60b-69b6-4867-8802-96ecedc32414" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="a13a3068-7667-4a07-8b26-0f45f661cd40" ownerguid="00cf30ee-24b0-4e3d-b186-9bc1ef75c50d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="a13a84d6-c9c5-467a-bbb6-08a85e1e01c9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">paga</AUni> -<AUni ws="qvm-x-acl">paga</AUni> -<AUni ws="qvm-x-akh">paqa</AUni> -<AUni ws="qvm-x-akl">paqa</AUni> -<AUni ws="qvm-x-ame">paqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*paqa</AUni> -<AUni ws="qvm-x-acl">*paqa</AUni> -<AUni ws="qvm-x-akh">*paqa</AUni> -<AUni ws="qvm-x-akl">*paqa</AUni> -<AUni ws="qvm-x-ame">*paqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.699" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="db605116-a469-474f-bc0f-e770291ef87d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*paqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f2129bdc-43d2-4a75-b18f-881065f8a9f6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="440c24c0-e87f-41e0-a3b7-3b4733a463e8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *paqa 
\entryTyp root 
\gENG wash.head 
\gSPN lavar.cabeza 
\e *paqa 
\c V2 
\ach paga 
\akh paqa 
\acl paga 
\akl paqa 
\ame paqa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a13af01a-0134-4e57-ac60-722e1945248d" ownerguid="742996cd-b87f-40a8-bdb3-dba74219bd73"> -<ExampleWords> -<AUni ws="en">hot, heat, red hot, boiling, burning hot, molten, ardent, baking, blazing, brisk, broiling, burning, calorific, fervent, fervid, fevered, fiery, glowing, heat, hot, igneous, incandescent, reeking, scorching, sizzling, smoking, torrid, white-hot</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is hot?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a13c2ff6-9c41-47ff-be93-775adc41e4a0" ownerguid="7fa7e166-5942-436b-8d3f-13d56519233b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="b1ebff21-611f-4f0c-86ae-9d33085c144d" t="o" /> -<objsur guid="e66cdbae-052e-47e0-8477-5ce74dce986b" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">spirit</AUni> -<AUni ws="es">alma</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7450fe55-d556-4ef3-874e-93725b06829d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a1443fa7-aecf-420b-9246-f082796f4f81"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">manta</AUni> -<AUni ws="qvm-x-acl">manta</AUni> -<AUni ws="qvm-x-akh">manta</AUni> -<AUni ws="qvm-x-akl">manta</AUni> -<AUni ws="qvm-x-ame">manta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*manta.v</AUni> -<AUni ws="qvm-x-acl">*manta.v</AUni> -<AUni ws="qvm-x-akh">*manta.v</AUni> -<AUni ws="qvm-x-akl">*manta.v</AUni> -<AUni ws="qvm-x-ame">*manta.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.315" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b3773d59-2cd8-43f7-b052-f8f554b776e7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*manta.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="96c6d6f2-b31a-478d-a9d1-b68349e48eef" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="08530aa0-6b86-42fb-8be3-a7efe2d46cf6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *manta.v 
\entryTyp root 
\gENG stretch.wool 
\gSPN extender.lana 
\e *manta.v 
\c V1 
\ach manta 
\akh manta 
\acl manta 
\akl manta 
\ame manta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a1474cc6-bb54-4375-bdbf-aaa35816a8cd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">prenda</AUni> -<AUni ws="qvm-x-acl">prenda</AUni> -<AUni ws="qvm-x-akh">prenda</AUni> -<AUni ws="qvm-x-akl">prenda</AUni> -<AUni ws="qvm-x-ame">prenda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+prenda</AUni> -<AUni ws="qvm-x-acl">+prenda</AUni> -<AUni ws="qvm-x-akh">+prenda</AUni> -<AUni ws="qvm-x-akl">+prenda</AUni> -<AUni ws="qvm-x-ame">+prenda</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.919" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ca0e214f-8d98-4c92-8bed-174abf85a1f0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+prenda</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ef01ee77-99e9-4aba-8d68-13862f54416b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="eb2a9cda-d00c-4469-ae91-7f6557abcb63" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +prenda 
\entryTyp root 
\gENG pledge 
\gSPN prenda 
\e +prenda 
\c N0 
\ach prenda 
\akh prenda 
\acl prenda 
\akl prenda 
\ame prenda</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a1495767-9d00-48f3-9806-e5134ecabe28" ownerguid="d47b69e0-ab4a-4111-aec3-2c889a4e70b3"> -<ExampleWords> -<AUni ws="en">design, invention, conception, dream</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something that has been invented?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a14ab76b-a061-4ac6-ac65-15f0fe4e9bf4" ownerguid="3fdba5e5-eb24-4b2f-a6fc-d1ed7397c39c"> -<ExampleWords> -<AUni ws="en">school</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a school?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="a14d4a77-5f52-4bde-b1da-aa485ff52517"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">in</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="a14efc51-5bf2-4dc5-9f6b-baa38a357ea4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wichga</AUni> -<AUni ws="qvm-x-acl">wichga</AUni> -<AUni ws="qvm-x-akh">wichqa</AUni> -<AUni ws="qvm-x-akl">wichqa</AUni> -<AUni ws="qvm-x-ame">wichqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*witrqa</AUni> -<AUni ws="qvm-x-acl">*witrqa</AUni> -<AUni ws="qvm-x-akh">*witrqa</AUni> -<AUni ws="qvm-x-akl">*witrqa</AUni> -<AUni ws="qvm-x-ame">*witrqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.709" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b3093c77-6908-4410-b377-977dd2a52d23" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*witrqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1616e785-f1a5-4513-a577-b3dcb8e02130" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1259192c-a224-484b-8fae-14a1be7d2769" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *witrqa 
\entryTyp root 
\gENG close 
\gSPN cerrar 
\e *witrqa 
\c V2 
\ach wichga 
\akh wichqa 
\acl wichga 
\akl wichqa 
\ame wichqa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a14f6567-6b89-4968-9f19-9509d9e48f3f" ownerguid="df2b9d7a-9b90-4704-8bc3-11dcffe985f4"> -<ExampleWords> -<AUni ws="en">skin color, coloring, complexion, pigment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the color of a person's skin?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a1534f8f-3582-41b9-b3c1-2e3f04b1b66a" ownerguid="f0fb7da6-1307-40cf-910d-2a7a279934ed"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="a1536b3b-aba3-4042-9180-c4640d58a86c" ownerguid="6334b0e6-6de2-4f5c-94b6-caae5357ddb4" /> -<rt class="MoStemMsa" guid="a1541925-25ca-4c29-8fac-38b577837f13" ownerguid="6092226c-99d3-4fb4-ab1a-794821117d36"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="a1542519-a9ed-40af-8acb-f33efaed31ec"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">llama</AUni> -<AUni ws="qvm-x-acl">llama</AUni> -<AUni ws="qvm-x-akh">llama</AUni> -<AUni ws="qvm-x-akl">llama</AUni> -<AUni ws="qvm-x-ame">llama</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llama.n1</AUni> -<AUni ws="qvm-x-acl">*llama.n1</AUni> -<AUni ws="qvm-x-akh">*llama.n1</AUni> -<AUni ws="qvm-x-akl">*llama.n1</AUni> -<AUni ws="qvm-x-ame">*llama.n1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.134" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="320bff25-51eb-40cf-aff4-ae9f7f507ebf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llama.n1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="73576fc4-7a05-4270-9137-a90b97f2131d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d2416bf1-91bb-4ef9-8140-6ee6d40e74fa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llama.n1 
\entryTyp root 
\gENG 
\gSPN 
\e *llama.n1 
\c N0 
\ach llama 
\akh llama 
\acl llama 
\akl llama 
\ame llama</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a156e0b1-da0a-43be-a19b-303229f7ece8" ownerguid="bc61bd8d-295b-4965-a183-703d21a56996"> -<ExampleWords> -<AUni ws="en">your honor, your majesty, your grace, sir, mister, madam, ma'am</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used to speak to a person in authority?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a158029e-b425-4e6f-92fa-3be549a0715c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">muntun</AUni> -<AUni ws="qvm-x-acl">muntun</AUni> -<AUni ws="qvm-x-akh">muntun</AUni> -<AUni ws="qvm-x-akl">muntun</AUni> -<AUni ws="qvm-x-ame">muntun</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+montón.1</AUni> -<AUni ws="qvm-x-acl">+montón.1</AUni> -<AUni ws="qvm-x-akh">+montón.1</AUni> -<AUni ws="qvm-x-akl">+montón.1</AUni> -<AUni ws="qvm-x-ame">+montón.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.477" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a8e68a72-7563-489c-b996-5e533b297492" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+montón.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="44a1c433-826b-4c16-ad2a-710911431d7c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ceb028e1-beef-4fd0-a817-2c322c46d848" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +montón.1 
\entryTyp root 
\gENG piled 
\gSPN montón 
\e +montón.1 
\c N0 
\mp +assimilated 
\ach muntun 
\akh muntun 
\acl muntun 
\akl muntun 
\ame muntun 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a15883a3-bd37-4cb5-b4ac-385520095f86" ownerguid="7c9c6263-9f7d-472c-a4c9-1767015d41fe"> -<ExampleWords> -<AUni ws="en">offer to do something (for someone), volunteer, come forward, let me, proffer, tender, make an overture</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to offering to do something for someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a15ada42-940b-4ec7-8d38-640a964aa061" ownerguid="dc1a2c6f-1b32-4631-8823-36dacc8cb7bb"> -<ExampleWords> -<AUni ws="en">shade, eclipse of the sun, sunless, shady, shadow, eclipse (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe when or where the sun doesn't shine?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a161f530-9256-4f1c-a5bf-0771eb9d6c0e" ownerguid="f6e416b3-50b1-4e48-8a39-2998725b1c79"> -<ExampleWords> -<AUni ws="en">separate, separation, estrange, split up, break up (a marriage), live apart</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to when a husband and wife no longer live together?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a16654a8-c06d-4d03-b4e6-f7ee7fdc41e3" ownerguid="13e67cc9-055b-4f9b-9217-a16b18db0329"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en"><I suppose> X is true.; <It is my conjecture that> X is true.; <I would wager that> X is true.; <If my suspicions are true,> X is true.; X <may> be true.; <It's possible> X is true.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">assume, assumption, presume, suppose, imagine, take it for granted, presumably, I take it</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that you think something is true, but you have no proof of it?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a1698c3e-7bbc-454b-9a14-1901e33ef62b" ownerguid="8f268cae-46b2-4814-9b40-84d33a686b3e"> -<Form> -<AUni ws="qvm-x-ach">amista; amistä</AUni> -<AUni ws="qvm-x-acl">amista; amistä</AUni> -<AUni ws="qvm-x-akh">amista; amistä</AUni> -<AUni ws="qvm-x-akl">amista; amistä</AUni> -<AUni ws="qvm-x-ame">amista; amistä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a16d9d81-5c04-47ce-9a21-8dab16896878"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">casti:llu</AUni> -<AUni ws="qvm-x-acl">casti:llu; casti:llu; casti:llo</AUni> -<AUni ws="qvm-x-akh">casti:llu</AUni> -<AUni ws="qvm-x-akl">casti:llu; casti:llu; casti:llo</AUni> -<AUni ws="qvm-x-ame">casti:llu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+castillo</AUni> -<AUni ws="qvm-x-acl">+castillo</AUni> -<AUni ws="qvm-x-akh">+castillo</AUni> -<AUni ws="qvm-x-akl">+castillo</AUni> -<AUni ws="qvm-x-ame">+castillo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.820" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="12979d39-bacc-41f3-a0f5-798785407bbf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+castillo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bb2a3bcd-5367-49e8-9291-d370db8dac50" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0a13ee4d-5b0b-4a09-ae28-0964e5581040" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +castillo 
\entryTyp root 
\gENG 
\gSPN 
\e +castillo 
\c N0 
\ach casti:llu 
\akh casti:llu 
\acl casti:llu / _# 
\acl casti:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl casti:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl casti:llu / _# 
\akl casti:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl casti:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame casti:llu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a16e9eea-36fc-49f1-8209-568b085da511" ownerguid="844f922b-6fb6-49aa-864b-b1c49edaa1ae"> -<ExampleWords> -<AUni ws="en">jewelry, accessory, ornament</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to jewelry?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a16efff0-44b6-4020-9b3e-4da2427756fb" ownerguid="61513a9e-6592-4262-9646-78564302e4e8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">laugh</AUni> -<AUni ws="es">reirse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="73956561-d0f6-47ee-a80e-509ef3e701e4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="a1744356-9cac-46ec-8972-73a8048e792d" ownerguid="6f9ca431-5796-4d32-a3d7-8293ae8998ff"> -<Form> -<AUni ws="qvm-x-ach">reclama</AUni> -<AUni ws="qvm-x-acl">reclama</AUni> -<AUni ws="qvm-x-akh">reclama</AUni> -<AUni ws="qvm-x-akl">reclama</AUni> -<AUni ws="qvm-x-ame">reclama</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="a1745322-1f67-4f58-8269-fe3d4b6a5cd3" ownerguid="b6622d50-6ec5-4748-ba7d-ad36a758ee7c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemName" guid="a177c679-0e2b-4632-9f01-6391c5a4a352" ownerguid="86ff66f6-0774-407a-a0dc-3eeaf873daf7"> -<Abbreviation> -<AUni ws="en">+ml</AUni> -</Abbreviation> -<Description> -<AStr ws="en"> -<Run ws="en">can potentially undergo morphophonemic lowering</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">undergoes morphlowering</AUni> -</Name> -<Regions> -<objsur guid="4c93f720-536c-4427-a312-f3e7facb5c25" t="o" /> -</Regions> -</rt> -<rt class="MoStemAllomorph" guid="a1793224-db54-43d1-bce7-077e52f62435" ownerguid="da60d6ed-addf-497f-ae68-2156e61681e3"> -<Form> -<AUni ws="qvm-x-ach">chullu</AUni> -<AUni ws="qvm-x-acl">chullu; chullu; chullo</AUni> -<AUni ws="qvm-x-akh">chullu</AUni> -<AUni ws="qvm-x-akl">chullu; chullu; chullo</AUni> -<AUni ws="qvm-x-ame">chullu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="a17cdd96-241b-4bef-8b4e-046862675a1e" ownerguid="826fb4db-ba81-41df-b6a2-58403cc2080c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a17ed956-a254-47cf-92d6-85e66d16c8f1" ownerguid="80de758c-537d-4c8c-8308-4babfb2c787a"> -<ExampleWords> -<AUni ws="en">occupy, occupy an area, take up space, cover an area, fill</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to occupying an area?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a180b1a5-99f5-4771-a40c-c4a10abe7db5" ownerguid="6d16734e-2d7e-4d98-93bd-ee2fac9eaddb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chewy</AUni> -<AUni ws="es">como.chicle</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="53770578-b3c5-47cc-9e9f-152490d2d8e5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="a185a816-aa61-4ad1-bc23-336e55f6d452" ownerguid="186814de-424b-46de-99e9-78bad588c44c"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a187aa95-be99-48b7-860a-9b7fa9378b49" ownerguid="afdd8b8e-9502-4d06-94ee-e79815b65750"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">He is <almost> the worst student in the school.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">almost, nearly, practically, virtually, just about, verging on, bordering on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words indicate that something is almost the best or worst example of some quality?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a1890d66-e950-4b8c-809f-ddf4cad957f8" ownerguid="652b95bc-d0cf-45ac-b3d1-faa4374ecf1d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="a18c4bf8-2cba-4a47-9b03-8b67e49872e1" ownerguid="f011d811-a0c5-4c64-8527-024a129dfaf7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">detach</AUni> -<AUni ws="es">desprender</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f2ae492b-090a-4f9e-8320-553d23b84691" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="a18f83ca-db7d-4797-ad5a-6d09202db26f" ownerguid="4c288c59-e685-42b7-b6dc-d8ef81940ba1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="a18fc16a-7e60-4c54-8a53-b6deaa16940e" ownerguid="f5a9cc88-908b-46e5-9941-72989ed7736a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="a194b668-6cb3-404c-8620-e32e692ad02c" ownerguid="e56b6fd4-d783-448e-b65d-7fff2810cf62"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EXO 6.26 Paycunatami Tayta Dios nergan Israel runacunata soldädutanograg formashgata Egiptupita jorgamunanpag.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="a1956187-465b-4381-9bba-cc9f6fcdc1f7" ownerguid="1e102423-6167-486a-bfef-dad1c9cdf1eb"> -<ExampleWords> -<AUni ws="en">vehicle, car, auto, truck, motorcycle, bicycle, cycle, bus, taxi</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What kinds of vehicles are there?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="a1959b00-9702-4b45-ac46-93f18d3bc5e6" ownerguid="7fe69c4c-2603-4949-afca-f39c010ad24e"> -<Abbreviation> -<AUni ws="en">2.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to breathing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>23J Breathe, Breath</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Breathe, breath</AUni> -</Name> -<Questions> -<objsur guid="35f13d30-eab2-4d41-9fb1-fc26f33adbd2" t="o" /> -<objsur guid="c835263b-7916-4621-92e3-886121c6c4fc" t="o" /> -<objsur guid="76ba92de-1ea2-48de-9906-f79f4c2c07ca" t="o" /> -<objsur guid="68648d8e-24e8-41ac-bd18-0df068f483e0" t="o" /> -<objsur guid="59332f24-d6cd-4aa2-af59-9e6a5349fe82" t="o" /> -<objsur guid="b1cca5a4-7bba-4b94-9236-aea20b34bc62" t="o" /> -<objsur guid="126d2776-1de4-4dbd-bdd6-053b15c018db" t="o" /> -<objsur guid="dc766309-957b-4c29-b674-c99a2bde4da0" t="o" /> -<objsur guid="bed3e674-a3b7-4ce3-82cb-5268a5b8c36b" t="o" /> -<objsur guid="6f6e16f6-a78d-4638-a11a-334eb476b227" t="o" /> -<objsur guid="d4382eee-1db3-41ac-86c9-1bb5d52db95d" t="o" /> -<objsur guid="ad3aa9fb-ed36-43bc-84af-e937d22fd47a" t="o" /> -<objsur guid="37a2c4a5-86da-4f7f-b38c-7def52ad08ac" t="o" /> -<objsur guid="7c8acfe2-64c6-46f7-be23-deb2dfad0cc0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="a195e7e1-b98f-4135-90cf-f7acc88d403f" ownerguid="0105615f-0a96-4d08-ab00-ca4b4473de39"> -<ExampleWords> -<AUni ws="en">stingy, avaricious, parsimonious, miserly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a person who refuses to share?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="a197dbfb-20e4-40c2-9c76-6abbeb1a9b12" ownerguid="f726d9bb-ae80-4c01-bdef-b600cb27736e"> -<Abbreviation> -<AUni ws="en">6.9.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.498" /> -<DateModified val="2022-9-23 16:55:8.498" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to insurance.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Insurance</AUni> -</Name> -<OcmCodes> -<Uni>456 Insurance</Uni> -</OcmCodes> -<Questions> -<objsur guid="7bbd9b10-635b-4645-8d33-2d6677b83ed8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="a1987332-8f72-4b38-b7a3-401428860e58" ownerguid="45ecf038-d244-4f96-a002-9d30d505854e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="a19ba480-c2fd-45da-b84b-38f1794907e8"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Tsayno</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="a19c156b-bc66-44c0-92ea-1ce7ad785dd3" ownerguid="cef09dd1-3488-4a86-91a3-325e2419ebad"> -<Form> -<AUni ws="qvm-x-ach">chuya; chuyä</AUni> -<AUni ws="qvm-x-acl">chuya; chuyä</AUni> -<AUni ws="qvm-x-akh">chuya; chuyä</AUni> -<AUni ws="qvm-x-akl">chuya; chuyä</AUni> -<AUni ws="qvm-x-ame">chuya; chuyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="a19e219a-6cc1-4057-a8d9-18554ae88de1" ownerguid="79ca34ea-68a7-4fe9-b5ac-4f3d6a1ab99d"> -<Abbreviation> -<AUni ws="en">2.6.4.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to caring for a baby.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Care for a baby</AUni> -</Name> -<OcmCodes> -<Uni>853 Infant Feeding; 854 Infant Care; 862 Weaning and Food Training</Uni> -</OcmCodes> -<Questions> -<objsur guid="f39c6451-ad82-437c-900b-18947d5ffbb6" t="o" /> -<objsur guid="8ea2a1e9-13e7-4bee-b6bf-60308bc5dfb9" t="o" /> -<objsur guid="609ba31f-f378-4a41-bf75-be3254537269" t="o" /> -<objsur guid="0130aa4b-8d04-4897-bbb2-a907ddeb4fea" t="o" /> -<objsur guid="f7a79558-dbfb-4ee4-8f49-362776ecfc5c" t="o" /> -<objsur guid="4cc00eb8-3398-498d-bf36-d98a2b9215e9" t="o" /> -<objsur guid="0d88b9b1-ccb1-4bcf-ab88-4bf65427f15c" t="o" /> -<objsur guid="c65bcae8-aa4b-45bb-a20f-31421f50bd6e" t="o" /> -<objsur guid="98ca74ec-8fec-408a-ae6c-c1a200d444af" t="o" /> -<objsur guid="219d619b-e373-41d8-9612-7375c6bababd" t="o" /> -<objsur guid="7bf7fb46-abff-44d2-bb20-86c50ef03ac1" t="o" /> -<objsur guid="f04d256e-3708-4eab-9662-1d20fd02b561" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="a1a48737-8d57-4702-9956-891c691d7b96" ownerguid="991d1d59-2367-47c5-934f-f1f798a9fa98"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="c57fbd1b-47fc-4b4c-9d1a-0391b6b854aa" t="o" /> -<objsur guid="6f1db76e-e0a8-4aa9-a2fa-5476d4703762" t="o" /> -<objsur guid="b80da53d-b80a-4473-b821-56e97b1c5b9f" t="o" /> -<objsur guid="876cdbaa-87ed-409a-bedc-9d443c277b1d" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="a1a6f6da-365e-4d82-abeb-2bf667617fe1" ownerguid="3dee4718-f385-4183-90d9-a581899a2230"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="a1aa2412-2321-4423-9288-d5a364fd9513" ownerguid="748edc49-54f8-4e52-ba37-ad097a05a8d6"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Tsay ïdulucunaga caycan melón\f + 10.5 Melonga shüpinirag frütami caycan.\f* chacracho pishgu mantsacunanpag ichitsishgan muñëcanog mana parlagmi.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="a1c12da0-6206-4961-ac1d-a4c5616ee053" ownerguid="8fff393a-23c2-42bb-8da8-9b151e790904"> -<ExampleWords> -<AUni ws="en">be past it, be over the hill, be a bit long in the tooth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to being too old to do something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a1c52410-eeaf-4a07-a90e-7ace5fa1b54c" ownerguid="f76409fc-cfcc-4bff-9751-64b7cfdbcae9"> -<Form> -<AUni ws="qvm-x-ach">waquin</AUni> -<AUni ws="qvm-x-acl">waquin; waquin; waquen</AUni> -<AUni ws="qvm-x-akh">wakin</AUni> -<AUni ws="qvm-x-akl">wakin; wakin; waken</AUni> -<AUni ws="qvm-x-ame">wakin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a1c52b94-f1bf-4da0-9f33-61a78707a0fc" ownerguid="f29dccae-1654-4eb7-8aae-04f7df4fe90c"> -<ExampleWords> -<AUni ws="en">suit, lends itself to, be suited to, be cut out for, be made for, fit the bill, fit in, be right for, be the right person for, make a good/ideal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something being right for a particular job?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a1c56408-3690-4ef1-9bf4-ee429ce97dad"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">charqui</AUni> -<AUni ws="qvm-x-acl">charqui; charqui; charque</AUni> -<AUni ws="qvm-x-akh">charki</AUni> -<AUni ws="qvm-x-akl">charki; charki; charke</AUni> -<AUni ws="qvm-x-ame">charki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*charki</AUni> -<AUni ws="qvm-x-acl">*charki</AUni> -<AUni ws="qvm-x-akh">*charki</AUni> -<AUni ws="qvm-x-akl">*charki</AUni> -<AUni ws="qvm-x-ame">*charki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.295" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b5fc28fc-cbd5-4622-acb2-b8e155d48ee3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*charki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="393e199a-1770-4e8e-9c9e-38baef03cca1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="42fb8cc3-1fc0-4317-8091-d933def9a89d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *charki 
\entryTyp root 
\gENG jerky 
\gSPN cecina 
\e *charki 
\c N0 
\mp +FinalI 
\ach charqui 
\akh charki 
\acl charqui / _# 
\acl charqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl charque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl charki / _# 
\akl charki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl charke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame charki</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a1c7568b-4114-4103-89b1-7dbef4419f84"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">atsqui</AUni> -<AUni ws="qvm-x-acl">atsqui; atsqui; atsque</AUni> -<AUni ws="qvm-x-akh">atski</AUni> -<AUni ws="qvm-x-akl">atski; atski; atske</AUni> -<AUni ws="qvm-x-ame">atski</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*achki.n</AUni> -<AUni ws="qvm-x-acl">*achki.n</AUni> -<AUni ws="qvm-x-akh">*achki.n</AUni> -<AUni ws="qvm-x-akl">*achki.n</AUni> -<AUni ws="qvm-x-ame">*achki.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.639" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7c84bce9-0628-4a5b-87f7-66b8e5a6da2b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*achki.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="df0bf86c-7fb5-4cca-b106-7cf0d90e6ed9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="728ef849-d561-4268-8db3-725284bd902b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *achki.n 
\entryTyp root 
\gENG light 
\gSPN luz 
\e *achki.n 
\c N0 
\mp +FinalI 
\ach atsqui 
\akh atski 
\acl atsqui / _# 
\acl atsqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl atsque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl atski / _# 
\akl atski +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl atske +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame atski</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a1c8a0c5-3395-4faa-9ea7-6103c42aaae9" ownerguid="b63b6a47-5e5e-4088-a916-4e9777be9e39"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="a1cb0fa5-32ba-4832-8749-180ee960f6c4" ownerguid="40d0a9f2-1c32-4753-90ff-ff46d203ea0b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ta</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ta</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ta</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ta</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ta</Run> -</AStr> -</Form> -<Morph> -<objsur guid="4f3f1430-f126-405a-98a8-5d0b732eb948" t="r" /> -</Morph> -<Msa> -<objsur guid="eac932ef-fd79-454b-b2f7-95e85dbb829a" t="r" /> -</Msa> -<Sense> -<objsur guid="043eec5a-5d9b-4292-877e-68d1d35e7f30" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="a1cb1357-3a51-4f83-8a08-4c322cd134aa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lindu; lindo</AUni> -<AUni ws="qvm-x-acl">lindu; lindu; lindo</AUni> -<AUni ws="qvm-x-akh">lindu; lindo</AUni> -<AUni ws="qvm-x-akl">lindu; lindu; lindo</AUni> -<AUni ws="qvm-x-ame">lindu; lindo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lindo</AUni> -<AUni ws="qvm-x-acl">+lindo</AUni> -<AUni ws="qvm-x-akh">+lindo</AUni> -<AUni ws="qvm-x-akl">+lindo</AUni> -<AUni ws="qvm-x-ame">+lindo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.94" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="80a05ad8-065d-4878-acb1-923de290a6e9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lindo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="63e6d351-47f9-4896-8ea0-8618ee2451c4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b099a856-de2d-4536-abe6-1fc469d8b0a4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lindo 
\entryTyp root 
\gENG pretty 
\gSPN lindo 
\e +lindo 
\c N0 
\ach lindu / ~_# 
\ach lindo / _# 
\akh lindu / ~_# 
\akh lindo / _# 
\acl lindu / ~_# 
\acl lindu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lindo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lindu / ~_# 
\akl lindu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lindo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lindu / ~_# 
\ame lindo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="a1ce19c4-d12c-46da-a718-6d03949b3db1" ownerguid="9e6d7c69-788c-4d40-8584-32f185e91932"> -<Abbreviation> -<AUni ws="en">6.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to hunting wild animals.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Hunt</AUni> -</Name> -<OcmCodes> -<Uni>224 Hunting and Trapping</Uni> -</OcmCodes> -<Questions> -<objsur guid="f556d466-c94c-424a-b10c-1d21abd67f9c" t="o" /> -<objsur guid="df6abe45-e71a-4eb8-8fd1-67efa058438a" t="o" /> -<objsur guid="c2ca53ad-5d00-46e2-b1e3-f8ad6f3ba0b2" t="o" /> -<objsur guid="c83b3510-35f8-4e9b-aca4-409e3d2e923a" t="o" /> -<objsur guid="86ab235c-ffb3-4e95-9624-65f6185ec75e" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="62b40326-f74c-4d80-9b1c-4dae0fc07026" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="a1d0042f-6580-44dd-ac7b-95608719be9a" ownerguid="5929d805-deb3-4fc7-9201-12ad124eb4b8"> -<Form> -<AUni ws="qvm-x-ach">jayta</AUni> -<AUni ws="qvm-x-acl">jayta</AUni> -<AUni ws="qvm-x-akh">jayta</AUni> -<AUni ws="qvm-x-akl">jayta</AUni> -<AUni ws="qvm-x-ame">hayta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a1d0c241-e331-4100-ba1f-a6175b8b1b8d" ownerguid="1a76e7ee-eaed-4535-ae7d-b1f6d6e5a07d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="8eb74cc7-3d55-40d6-818c-8b37f9a0e662" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="52c8d765-54c2-472a-982b-2b1dd737cbe8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a1d39530-7de6-4b41-893b-71d1953909b4" ownerguid="1fda68d4-5941-4695-b656-090d603a3344"> -<ExampleWords> -<AUni ws="en">the cook, chef, short order cook, cookie</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the person who prepares food and cooks?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a1d479e6-fef7-4ee8-a2fc-cf9a2bee6e27" ownerguid="6c305af5-cff5-4f7f-bd89-040d4c265355"> -<ExampleWords> -<AUni ws="en">dense, thick, compact, consolidated, thickset</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is dense?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a1d543af-790e-4a69-8cd7-fa00e862a296" ownerguid="5422d4ba-8af4-4767-912e-43b60ef28eab"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en"><very> green; <too> dark; <really> fast; <real> good; <pretty> heavy</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">very, really, highly, deeply, real, so, mighty, one, quite, ever so, bloody, decidedly, too, proper, true, extremely, such</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words intensify an attribute?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a1d867dd-8bcf-40b6-8c95-d5c25e1a2a0e" ownerguid="411f9559-9127-43a7-b17f-ab4d9b38e050"> -<Form> -<AUni ws="qvm-x-ach">laga</AUni> -<AUni ws="qvm-x-acl">laga</AUni> -<AUni ws="qvm-x-akh">laqa</AUni> -<AUni ws="qvm-x-akl">laqa</AUni> -<AUni ws="qvm-x-ame">laqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a1d93026-801f-4531-bf2b-732c54e71349" ownerguid="b632b00b-b03f-4549-8e02-6402c05a4f06"> -<ExampleWords> -<AUni ws="en">obey, abide by the law, submit, comply</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being obedient?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a1da39db-5b46-49dd-a446-bd3611ee250b" ownerguid="916d3f4f-5ab7-41c7-9d0c-d0c2879bd628"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="50fe417e-09fb-48ab-8fb8-188704164e68" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="06c16d03-b99f-4ce4-a9e0-295ec28f9517" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a1dba1bc-1377-49b9-a4c2-1f3fabda9576"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tulpu</AUni> -<AUni ws="qvm-x-acl">tulpu; tulpo</AUni> -<AUni ws="qvm-x-akh">tulpu</AUni> -<AUni ws="qvm-x-akl">tulpu; tulpo</AUni> -<AUni ws="qvm-x-ame">tulpu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tullpu</AUni> -<AUni ws="qvm-x-acl">*tullpu</AUni> -<AUni ws="qvm-x-akh">*tullpu</AUni> -<AUni ws="qvm-x-akl">*tullpu</AUni> -<AUni ws="qvm-x-ame">*tullpu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.987" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="10340ca4-7555-4d47-a548-e2a9b5507966" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tullpu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="72e58eb4-57c2-4e63-8519-e9bfd009317b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c56f130f-125c-4880-b0cc-f325107a26f2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tullpu 
\entryTyp root 
\gENG 
\gSPN 
\e *tullpu 
\c V1 
\ach tulpu 
\akh tulpu 
\acl tulpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tulpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tulpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tulpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tulpu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="a1dd1d94-fa8e-4325-9f72-b39bcac69755" ownerguid="0b7b9a1c-588b-475a-ac14-00f0999cbfe9"> -<Abbreviation> -<AUni ws="en">4.8.4.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.286" /> -<DateModified val="2022-9-23 16:55:8.286" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to making peace--to try to prevent or end a war.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Make peace</AUni> -</Name> -<OcmCodes> -<Uni>728 Peacemaking</Uni> -</OcmCodes> -<Questions> -<objsur guid="a03bfa08-1bf0-46a6-9a59-b9bc6d4dfde8" t="o" /> -<objsur guid="943faa92-22c7-4130-ae44-30d3a5836bd4" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="9e2b0c61-304e-4cad-9708-792bfde880b4" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="a1dfce7c-8be3-47e9-8ab6-443b5d634f42" ownerguid="bbfd32d9-d744-46a2-addd-823f246ed04f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="a1e01849-2559-43d8-80f1-641be2a1f6cc" ownerguid="ae328926-69c4-4b51-a752-ef9e6eff92eb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7eb8e0ac-c3e5-41bf-83f5-588970ee8632" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a1e0698f-18f2-4778-bc7a-a6e9bcead3cd" ownerguid="c982941c-0cff-47aa-9e08-5234a8e0d6e8"> -<ExampleWords> -<AUni ws="en">potato, potato vine, potato mound</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to growing potatoes?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a1e1132d-aee9-476a-9a30-ac809fd2c543" ownerguid="e3bde9db-0878-4fac-8b93-64cdc5adf71e"> -<Form> -<AUni ws="qvm-x-ach">segru</AUni> -<AUni ws="qvm-x-acl">segru; segru; segro</AUni> -<AUni ws="qvm-x-akh">seqru</AUni> -<AUni ws="qvm-x-akl">seqru; seqru; seqro</AUni> -<AUni ws="qvm-x-ame">siqru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a1e39ec2-25be-4665-9e71-c431c03e7a20"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ja:cu; ja:ca</AUni> -<AUni ws="qvm-x-acl">ja:cu; ja:co; ja:ca</AUni> -<AUni ws="qvm-x-akh">ja:ku; ja:ka</AUni> -<AUni ws="qvm-x-akl">ja:ku; ja:ko; ja:ka</AUni> -<AUni ws="qvm-x-ame">ha:ku; ha:ka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ha:kU.1</AUni> -<AUni ws="qvm-x-acl">*ha:kU.1</AUni> -<AUni ws="qvm-x-akh">*ha:kU.1</AUni> -<AUni ws="qvm-x-akl">*ha:kU.1</AUni> -<AUni ws="qvm-x-ame">*ha:kU.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.650" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a7677f2f-65c8-4b01-b5d3-387abb8b7c7e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ha:kU.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c1396c04-8309-428b-8bef-180ea43141da" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3eecf862-60aa-49a1-93f4-faa077e78b6f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ha:kU.1 
\entryTyp root 
\gENG be.empty 
\gSPN ser.vacío 
\e *ha:kU.1 
\c V1 
\mp PMlowered 
\ach ja:cu 
\ach ja:ca morphlowered 
\akh ja:ku 
\akh ja:ka morphlowered 
\acl ja:cu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ja:co +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ja:ca morphlowered 
\akl ja:ku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ja:ko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ja:ka morphlowered 
\ame ha:ku 
\ame ha:ka morphlowered</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a1e67572-e613-4351-9d34-e2c39c1ed4b4" ownerguid="314c8fea-4bdb-4bc8-ab67-a26a9c5abbd4"> -<ExampleWords> -<AUni ws="en">flexible, flexibility, flimsy, pliable, bendable, weak</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is easy to bend?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a1e70889-4eae-46bd-92e7-d102daf15f50" ownerguid="3f7749c1-5eff-4496-9953-dbca38442e94"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="59495eec-7287-4b5d-928b-4f8bdf2d552d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a1eaf593-3379-47ea-bee4-15cbbda9775f" ownerguid="1610a4f0-ffe4-41ad-8fa2-90f1615ece63"> -<Gloss> -<AUni ws="en">TRS</AUni> -<AUni ws="es">TRS</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ca07312d-49a1-4d8c-8591-706cb7d5a595" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a1f18424-bdb0-4454-a038-14d4d9625272" ownerguid="1c1e1fc5-5e41-4df4-bd34-2f3e20dd0bbc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">push</AUni> -<AUni ws="es">empujar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="996979c0-4890-430c-a725-480686d6dabc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="a1f23521-5d64-407c-b377-e3da90256f12" ownerguid="a2fdb6a9-ed0c-4444-a101-5adab718b86b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a1f24308-6bf9-4c06-88c7-0cbfb87b60c8" ownerguid="7212ba9e-1753-4aa3-aea0-80ff1d798502"> -<Form> -<AUni ws="qvm-x-ach">witi</AUni> -<AUni ws="qvm-x-acl">witi; wite</AUni> -<AUni ws="qvm-x-akh">witi</AUni> -<AUni ws="qvm-x-akl">witi; wite</AUni> -<AUni ws="qvm-x-ame">witi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a1f2fd0e-070b-4dcd-b432-208445dddb0d" ownerguid="15f2cdb3-ccc9-4cd3-9753-c0f23c99349a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">down</AUni> -<AUni ws="es">abajo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bcd4a7aa-ed50-44ef-bf2e-c7c0b261a165" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a1fc2a49-f105-4f42-9af4-4c7af7084072"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mushug</AUni> -<AUni ws="qvm-x-acl">mushog</AUni> -<AUni ws="qvm-x-akh">mushuq</AUni> -<AUni ws="qvm-x-akl">mushoq</AUni> -<AUni ws="qvm-x-ame">mushuq</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mushuq</AUni> -<AUni ws="qvm-x-acl">*mushuq</AUni> -<AUni ws="qvm-x-akh">*mushuq</AUni> -<AUni ws="qvm-x-akl">*mushuq</AUni> -<AUni ws="qvm-x-ame">*mushuq</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.515" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8db13d6c-95f4-4c4a-961c-72c48428a594" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mushuq</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b7a578bb-9746-43fc-8668-99635b9c8015" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2dc159d9-8648-4ab3-9cc3-4f3575e197ef" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mushuq 
\entryTyp root 
\gENG new 
\gSPN nuevo 
\e *mushuq 
\c N0 
\mp +FinalC 
\ach mushug 
\akh mushuq 
\acl mushog 
\akl mushoq 
\ame mushuq</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a1fdfa77-164c-4d9d-8a2b-6fe27169d8cc" ownerguid="77f27500-aad8-409c-a28e-92df73794dce"> -<ExampleWords> -<AUni ws="en">enemy, the enemy, foe, adversary, hostile, opponent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to an enemy?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a1fe830b-7192-4115-a731-f34ad046181a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quimsani</AUni> -<AUni ws="qvm-x-acl">quimsani; quimsani; quimsane</AUni> -<AUni ws="qvm-x-akh">kimsani</AUni> -<AUni ws="qvm-x-akl">kimsani; kimsani; kimsane</AUni> -<AUni ws="qvm-x-ame">kimsani</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kimsani</AUni> -<AUni ws="qvm-x-acl">*kimsani</AUni> -<AUni ws="qvm-x-akh">*kimsani</AUni> -<AUni ws="qvm-x-akl">*kimsani</AUni> -<AUni ws="qvm-x-ame">*kimsani</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.983" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2880442e-e300-402d-8a45-10ea09bb219a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kimsani</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="766e9573-a089-422d-9f8b-6eb78e8017d5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f3133bc5-1725-47c3-86b9-1e76b2d6824d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kimsani 
\entryTyp root 
\gENG three 
\gSPN tres 
\e *kimsani 
\c N0 
\mp +FinalI 
\ach quimsani 
\akh kimsani 
\acl quimsani / _# 
\acl quimsani +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl quimsane +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kimsani / _# 
\akl kimsani +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kimsane +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kimsani 
\mcc *kimsani / _ [poss]</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a202382c-5965-4ebf-aa6f-dabc11f01599"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ti:na</AUni> -<AUni ws="qvm-x-acl">ti:na</AUni> -<AUni ws="qvm-x-akh">ti:na</AUni> -<AUni ws="qvm-x-akl">ti:na</AUni> -<AUni ws="qvm-x-ame">ti:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tina</AUni> -<AUni ws="qvm-x-acl">+tina</AUni> -<AUni ws="qvm-x-akh">+tina</AUni> -<AUni ws="qvm-x-akl">+tina</AUni> -<AUni ws="qvm-x-ame">+tina</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.906" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ed558093-8e3e-4d7b-8451-4130fc21da16" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tina</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="edf0d122-83e3-4508-8627-99ea861a4cf5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="83251aee-e84a-4729-9299-ed60357fc21e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tina 
\entryTyp root 
\gENG 
\gSPN 
\e +tina 
\c N0 
\ach ti:na 
\akh ti:na 
\acl ti:na 
\akl ti:na 
\ame ti:na</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a20245bb-760f-4eec-babf-65e35326b66d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sagsa</AUni> -<AUni ws="qvm-x-acl">sagsa</AUni> -<AUni ws="qvm-x-akh">saqsa</AUni> -<AUni ws="qvm-x-akl">saqsa</AUni> -<AUni ws="qvm-x-ame">saqsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*saqsa</AUni> -<AUni ws="qvm-x-acl">*saqsa</AUni> -<AUni ws="qvm-x-akh">*saqsa</AUni> -<AUni ws="qvm-x-akl">*saqsa</AUni> -<AUni ws="qvm-x-ame">*saqsa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.459" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="92095d5a-b3f6-4c61-ba13-eefb657a75d6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*saqsa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9e207525-5fa3-40d3-aa6e-dec8f631cd7d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3acb05ff-c56a-4e53-8d6b-a92ef79d7cbd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *saqsa 
\entryTyp root 
\gENG 
\gSPN 
\e *saqsa 
\c N0 
\ach sagsa 
\akh saqsa 
\acl sagsa 
\akl saqsa 
\ame saqsa 
\i NUM 15.38 Israel runacunata niy röpancunapa cuchunman morädu hïlupita sagsan rurapäcunanpag.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="a204faec-678b-4e46-93ee-8f52fd067519" ownerguid="3159b288-5a51-4a70-814b-2e866f61e4a8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="a20650ed-e702-4bab-a1a7-78531d909a45" ownerguid="e7069ec3-3b82-4ba9-9507-ceafb1720d9b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="afc7dc97-419a-48b2-8398-4144a1f33493" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a206887b-8a9d-455a-9585-c53ca146e484"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">punta</AUni> -<AUni ws="qvm-x-acl">punta</AUni> -<AUni ws="qvm-x-akh">punta</AUni> -<AUni ws="qvm-x-akl">punta</AUni> -<AUni ws="qvm-x-ame">punta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+punta</AUni> -<AUni ws="qvm-x-acl">+punta</AUni> -<AUni ws="qvm-x-akh">+punta</AUni> -<AUni ws="qvm-x-akl">+punta</AUni> -<AUni ws="qvm-x-ame">+punta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.4" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="29690693-d2bd-43fd-b607-5e406dbb5e4d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+punta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6c4cd593-153e-465c-8d0e-88450e81f41f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4174059a-d052-4ea1-ab37-8232c85b248e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +punta 
\entryTyp root 
\gENG peak 
\gSPN punta 
\e +punta 
\c N0 
\ach punta 
\akh punta 
\acl punta 
\akl punta 
\ame punta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a2085196-3aed-4c8a-9a39-c7f1ac8ae71e" ownerguid="8c02c3d0-0d71-4afe-931c-ad450e023271"> -<Form> -<AUni ws="qvm-x-ach">manëju</AUni> -<AUni ws="qvm-x-acl">manëju; manëju; manëjo</AUni> -<AUni ws="qvm-x-akh">manëju</AUni> -<AUni ws="qvm-x-akl">manëju; manëju; manëjo</AUni> -<AUni ws="qvm-x-ame">manëju</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a20a2e9d-e430-4330-9a31-6c3a8c86f3bc" ownerguid="bbfcbaec-e266-4522-80b2-16f41ac25603"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sharpen</AUni> -<AUni ws="es">sacar.punta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7913c766-0542-435b-ba67-54197cc4e786" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="a213c582-525b-4e13-a47a-50ea084da9bc" ownerguid="4b0dc35a-01b7-4df6-a7ab-d26afc3abebe"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a216732e-745e-4748-b429-35c34466968e" ownerguid="e15962c5-aac1-48c6-bcca-ba9c245cb146"> -<Form> -<AUni ws="qvm-x-ach">gusta; gustä</AUni> -<AUni ws="qvm-x-acl">gusta; gustä</AUni> -<AUni ws="qvm-x-akh">gusta; gustä</AUni> -<AUni ws="qvm-x-akl">gusta; gustä</AUni> -<AUni ws="qvm-x-ame">gusta; gustä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="a216c09c-e564-4c98-9217-4720961f0dab" ownerguid="2049d587-5ba1-420d-ad86-d9ada997e069"> -<Form> -<AUni ws="qvm-x-ach">jorgu</AUni> -<AUni ws="qvm-x-acl">jorgu; jorgo</AUni> -<AUni ws="qvm-x-akh">jorqu</AUni> -<AUni ws="qvm-x-akl">jorqu; jorqo</AUni> -<AUni ws="qvm-x-ame">hurqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a217b301-f6c7-4964-b4f8-84a5fd9e1c54" ownerguid="09d452b3-8f58-4d30-bdc8-3fa16032a0c2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mad.bull</AUni> -<AUni ws="es">loco.toro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cbb63853-32b5-4e8d-bbff-52b922b0f46d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a21b17d1-0ff3-4733-b4cf-57c6ad2793c0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pastilla</AUni> -<AUni ws="qvm-x-acl">pastilla</AUni> -<AUni ws="qvm-x-akh">pastilla</AUni> -<AUni ws="qvm-x-akl">pastilla</AUni> -<AUni ws="qvm-x-ame">pastilla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pastilla</AUni> -<AUni ws="qvm-x-acl">+pastilla</AUni> -<AUni ws="qvm-x-akh">+pastilla</AUni> -<AUni ws="qvm-x-akl">+pastilla</AUni> -<AUni ws="qvm-x-ame">+pastilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.749" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5994231f-2d78-499a-8c48-e421f7424196" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pastilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3c688cf8-f038-44a9-8b9e-a753e64e0b59" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9dba945f-1264-41fd-9f64-b3d936121e27" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pastilla 
\entryTyp root 
\gENG pill 
\gSPN pastilla 
\e +pastilla 
\c N0 
\ach pastilla 
\akh pastilla 
\acl pastilla 
\akl pastilla 
\ame pastilla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a21dd887-a570-4cba-9fd0-052cc3809e22" ownerguid="3dee4718-f385-4183-90d9-a581899a2230"> -<Form> -<AUni ws="qvm-x-ach">adivina</AUni> -<AUni ws="qvm-x-acl">adivina</AUni> -<AUni ws="qvm-x-akh">adivina</AUni> -<AUni ws="qvm-x-akl">adivina</AUni> -<AUni ws="qvm-x-ame">adivina</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="a220a734-af03-4de3-8d05-369a3cad14cf" ownerguid="bd4a2527-f66c-4f48-922e-8b180bba8ef6"> -<Abbreviation> -<AUni ws="en">5.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.306" /> -<DateModified val="2022-9-23 16:55:8.306" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to household decorations.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Household decoration</AUni> -</Name> -<OcmCodes> -<Uni>353 Building Interiors and Arrangement; Interior Decoration and Arrangement</Uni> -</OcmCodes> -<Questions> -<objsur guid="0dc29feb-5cf5-4e28-93cc-efe4007d4b69" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="a220fd76-eeff-49b6-b485-ed1da7f841d9" ownerguid="c6132280-d2aa-46f8-9e94-b087dbda09cb"> -<ExampleWords> -<AUni ws="en">lose your balance, totter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to losing your balance?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="a2240259-608b-40f1-990a-7f8e00ef1d07" ownerguid="7c80f6ee-e76d-4903-aee6-7a33d1da3f75"> -<Abbreviation> -<AUni ws="en">7.3.7.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to spreading something--to cover something on all sides with something liquid or sticky like paint or mud.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Spread, smear</AUni> -</Name> -<Questions> -<objsur guid="fc52ad5d-3e2c-4a4f-b306-22e2fda650ea" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="a2240ea8-a0ba-475b-8608-c7fca97beb2b" ownerguid="ea88f1df-6b20-478b-8385-15ab693bbec7"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Lev 11.16,17 avestruzta, tucuy casta tucucunata, gaviötata, tucuy casta yacu pätucunata,</Run> -</AStr> -</Example> -</rt> -<rt class="LexExampleSentence" guid="a225cf51-dc89-49cf-afcf-83ee2d4fc13f" ownerguid="89e7c29b-038b-4d2c-9f2e-72665c7e17b1"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2KI 24.14 Tsaynoglami prësu apacärergan capitancunata, alinnin soldäducunata, artesänucunata\f + 24.14 Artesänucunaga caycan carpintërucuna, suëlapita imatapis ruragcuna, awata awagcuna, mancata ruragcuna y mas imatapis shumag yachag runacunapis.\f* y herriërucunatapis.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="a2269f62-e181-4fce-87e9-d6846b8d118e" ownerguid="ed7930df-e7b4-43c9-a11a-b09521276b57"> -<ExampleWords> -<AUni ws="en">smell good, smell nice</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to smelling good?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="a228d3b1-a6b5-4dd7-9c77-ff4a2df3cf52" ownerguid="fe0e5d58-8870-42b3-9744-bfa0b500641a"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="d6b60c16-42dc-40ec-a465-537d0be60d9e" t="o" /> -<objsur guid="f0f108f9-e329-4770-98ea-c95abeced081" t="o" /> -<objsur guid="0d3f195f-8ef6-4ef7-bb0d-71105e62af23" t="o" /> -<objsur guid="f20fe326-bfd9-42fd-8cae-f792a7b5695f" t="o" /> -<objsur guid="7247d63c-98ee-48f8-9f8b-d8fbcd893411" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="a228f038-a880-4c8f-afdc-d3afb6e6eb69" ownerguid="380b0d15-77a1-49ba-ad83-a508e7ffb83d"> -<ExampleWords> -<AUni ws="en">die down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a storm stopping?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a22c41ff-78f7-4ea6-a3a2-bb235e0c18e3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ogui</AUni> -<AUni ws="qvm-x-acl">ogui; ogui; ogue</AUni> -<AUni ws="qvm-x-akh">oqi</AUni> -<AUni ws="qvm-x-akl">oqi; oqi; oqe</AUni> -<AUni ws="qvm-x-ame">uqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uqi.n</AUni> -<AUni ws="qvm-x-acl">*uqi.n</AUni> -<AUni ws="qvm-x-akh">*uqi.n</AUni> -<AUni ws="qvm-x-akl">*uqi.n</AUni> -<AUni ws="qvm-x-ame">*uqi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.259" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="308481cf-df1f-44c6-8671-01eb7d3dd211" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uqi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d5f5c1a7-6abf-44bf-afba-a8c9ece04a18" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fee09eec-47dc-45e7-835d-ad4f91b82c71" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uqi.n 
\entryTyp root 
\gENG gray 
\gSPN gris 
\e *uqi.n 
\c N0 
\mp +FinalI 
\ach ogui 
\akh oqi 
\acl ogui / _# 
\acl ogui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ogue +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl oqi / _# 
\akl oqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl oqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame uqi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="a22d5c1c-daed-4e7a-8243-493f2d841314" ownerguid="5422d4ba-8af4-4767-912e-43b60ef28eab"> -<Abbreviation> -<AUni ws="en">9.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating intensity of an action.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Do intensely</AUni> -</Name> -<Questions> -<objsur guid="f7bf1a71-f8e6-432f-8ddd-351d0e3b2fae" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoInflAffMsa" guid="a22f2957-a229-4afb-b8d3-b397bafea06d" ownerguid="802c371e-6a7a-4929-b99a-dcbcc28b3d01"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="cc7bce64-81a2-4c23-9cb0-ba8f7d274837" t="r" /> -</Slots> -</rt> -<rt class="LexEntry" guid="a2335c2a-e3b7-46c4-8e6e-5494a4b6fea5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gapchu</AUni> -<AUni ws="qvm-x-acl">gapchu; gapcho</AUni> -<AUni ws="qvm-x-akh">qapchu</AUni> -<AUni ws="qvm-x-akl">qapchu; qapcho</AUni> -<AUni ws="qvm-x-ame">qapchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qaptru</AUni> -<AUni ws="qvm-x-acl">*qaptru</AUni> -<AUni ws="qvm-x-akh">*qaptru</AUni> -<AUni ws="qvm-x-akl">*qaptru</AUni> -<AUni ws="qvm-x-ame">*qaptru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.94" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3b141557-a064-4823-acdd-03222e6de62d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qaptru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="899a6d21-3a16-4313-9c3c-9851300af09b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7b357484-ea91-40c4-b4a8-807b1f70c841" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qaptru 
\entryTyp root 
\gENG smash 
\gSPN aplastar 
\e *qaptru 
\c V2 
\ach gapchu 
\akh qapchu 
\acl gapchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gapcho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qapchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qapcho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qapchu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a236ef4f-e870-4094-809a-380a55e9b6e1" ownerguid="694ffc6c-675f-4bcf-be42-876687d0ca96"> -<Form> -<AUni ws="qvm-x-ach">pölu</AUni> -<AUni ws="qvm-x-acl">pölu; pölu; pölo</AUni> -<AUni ws="qvm-x-akh">pölu</AUni> -<AUni ws="qvm-x-akl">pölu; pölu; pölo</AUni> -<AUni ws="qvm-x-ame">pölu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="a2371e66-79f4-460e-8fca-13391250b3ee" ownerguid="77748469-fcf1-4cde-a3f6-47432eac5b6e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">päcu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">päcu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">päku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">päku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">päku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d9706437-e094-4fe8-b14f-01ea8dfdec23" t="r" /> -</Morph> -<Msa> -<objsur guid="f32a5a50-f426-45b8-ae08-eba8e0a53b74" t="r" /> -</Msa> -<Sense> -<objsur guid="f9fa41d4-dd29-40f1-be9f-24911a0fb7bb" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="a23835cc-abf0-4625-a030-13a792965a47" ownerguid="9a7cc768-f4a3-42ae-8b0b-838ca88538f8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="fa46d54a-9db3-4d4b-8163-7cea566bf36f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="a2391a6a-c20c-4a14-bb4c-c2e8bbd697a6" ownerguid="1913fed8-1f71-4689-a3e9-74482e6c1b46"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="138529ed-cd66-4274-8bc5-4ebb36b2e583" t="o" /> -<objsur guid="caf82cfc-6902-462c-961a-329cded10ec9" t="o" /> -</MorphBundles> -</rt> -<rt class="MoMorphType" guid="a23b6faa-1052-4f4d-984b-4b338bdaf95f" ownerguid="d7f713d8-e8cf-11d3-9764-00c04f186933"> -<Abbreviation> -<AUni ws="en">phr</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">A phrase is a syntactic structure that consists of more than one word but lacks the subject-predicate organization of a clause.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">phrase</AUni> -</Name> -<SecondaryOrder val="0" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="a23c5868-0c56-4cc0-8349-e51de57fb2f5" ownerguid="ec134919-c362-49eb-bb7e-7752098698d9"> -<Form> -<AUni ws="qvm-x-ach">wagya</AUni> -<AUni ws="qvm-x-acl">wagya</AUni> -<AUni ws="qvm-x-akh">waqya</AUni> -<AUni ws="qvm-x-akl">waqya</AUni> -<AUni ws="qvm-x-ame">waqya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="a23c8662-66b0-43fd-acb8-7111706ef43e" ownerguid="888ad11b-6c50-419e-a18e-5bcfbdb5f8fd"> -<Form> -<AUni ws="qvm-x-ach">goshgu</AUni> -<AUni ws="qvm-x-acl">goshgu; goshgo</AUni> -<AUni ws="qvm-x-akh">qoshqu</AUni> -<AUni ws="qvm-x-akl">qoshqu; qoshqo</AUni> -<AUni ws="qvm-x-ame">qushqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="a23fb110-59cf-43ab-a7ea-f177877c7e8d" ownerguid="edc2c502-a452-425a-89e7-15c18d080f50"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="a24111ff-bfee-4afa-838f-3af407f0bde8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bote:llita</AUni> -<AUni ws="qvm-x-acl">bote:llita</AUni> -<AUni ws="qvm-x-akh">bote:llita</AUni> -<AUni ws="qvm-x-akl">bote:llita</AUni> -<AUni ws="qvm-x-ame">bote:llita</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+botellita</AUni> -<AUni ws="qvm-x-acl">+botellita</AUni> -<AUni ws="qvm-x-akh">+botellita</AUni> -<AUni ws="qvm-x-akl">+botellita</AUni> -<AUni ws="qvm-x-ame">+botellita</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.971" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9248e186-ba56-49dd-a837-8666df231814" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+botellita</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d1015f38-14e7-4cf2-b932-7dda2001f0db" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bf3d7390-9aab-4db2-aaf9-06299880fb33" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +botellita 
\entryTyp root 
\gENG bottle 
\gSPN botella 
\e +botellita 
\c N0 
\ach bote:llita 
\akh bote:llita 
\acl bote:llita 
\akl bote:llita 
\ame bote:llita</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a2412f4b-abe7-4a95-8d08-f0ce1928a6dc" ownerguid="6d9b435c-f319-4c9b-958d-2a3d0454a6ea"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="a2417520-5648-492d-b8c5-c2dc258604ef" ownerguid="dccb55f6-9e2b-4963-a6d5-640d118909e1"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="3866d89b-263c-41c4-b8e1-4c869e39d121" t="o" /> -<objsur guid="7292a0c7-91a5-4b69-b7f9-1774bf418174" t="o" /> -<objsur guid="8afc3e4b-77eb-497b-9106-7fe63b0c07c0" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiMorphBundle" guid="a241a157-b5e2-4102-994a-ff8fb6b307ce" ownerguid="bad07400-ad11-4f98-9a6d-83aeae23913f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="a241fe43-86ce-447f-9996-1f90e013b408"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa:sa</AUni> -<AUni ws="qvm-x-acl">pa:sa</AUni> -<AUni ws="qvm-x-akh">pa:sa</AUni> -<AUni ws="qvm-x-akl">pa:sa</AUni> -<AUni ws="qvm-x-ame">pa:sa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pasar.2</AUni> -<AUni ws="qvm-x-acl">+pasar.2</AUni> -<AUni ws="qvm-x-akh">+pasar.2</AUni> -<AUni ws="qvm-x-akl">+pasar.2</AUni> -<AUni ws="qvm-x-ame">+pasar.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.737" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6da703dc-b3e9-42ba-bb66-e60771b44fe0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pasar.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="60f0f363-143d-48ad-a1c6-0a2f5506061e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5da6d9fc-9533-4728-9938-817f1628f69d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pasar.2 
\entryTyp root 
\gENG pass 
\gSPN pasar 
\e +pasar.2 
\c V2 
\ach pa:sa 
\akh pa:sa 
\acl pa:sa 
\akl pa:sa 
\ame pa:sa 
\mcc +pasar.2 / _ [y] ([case]) ([shade]) ([wfinal]) # / _ DWN</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="a2423b5d-c60b-4965-95c4-7da3f3844486" ownerguid="34f2be49-cb77-4299-bb2e-9308d0278797"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="479cd9a4-a9c6-4326-9f46-f3f99c4780b7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a24e45df-fa39-498b-8e65-482c9071135a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuwa:ju</AUni> -<AUni ws="qvm-x-acl">cuwa:ju; cuwa:ju; cuwa:jo</AUni> -<AUni ws="qvm-x-akh">cuwa:ju</AUni> -<AUni ws="qvm-x-akl">cuwa:ju; cuwa:ju; cuwa:jo</AUni> -<AUni ws="qvm-x-ame">cuwa:ju</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuajada</AUni> -<AUni ws="qvm-x-acl">+cuajada</AUni> -<AUni ws="qvm-x-akh">+cuajada</AUni> -<AUni ws="qvm-x-akl">+cuajada</AUni> -<AUni ws="qvm-x-ame">+cuajada</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.223" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d0a482e6-a43c-4735-8889-0dcc323d3251" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuajada</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d8c59993-98f8-4ad6-8271-c68324b5a7ce" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0d685282-afd2-474c-887a-dbb3afb4f4c0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuajada 
\entryTyp root 
\gENG 
\gSPN 
\e +cuajada 
\c N0 
\ach cuwa:ju 
\akh cuwa:ju 
\acl cuwa:ju / _# 
\acl cuwa:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cuwa:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cuwa:ju / _# 
\akl cuwa:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cuwa:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cuwa:ju</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a24fa55f-1c23-48b7-98f5-a50f2dffc30a" ownerguid="b77bf6a2-75ec-47e5-a218-d00a3a2fc6e7"> -<Form> -<AUni ws="qvm-x-ach">raycu</AUni> -<AUni ws="qvm-x-acl">raycu; raycu; rayco</AUni> -<AUni ws="qvm-x-akh">rayku</AUni> -<AUni ws="qvm-x-akl">rayku; rayku; rayko</AUni> -<AUni ws="qvm-x-ame">rayku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="a2508183-7ea5-434e-a773-00d53087d27b" ownerguid="1cb79293-d4f7-4990-9f50-3bb595744f61"> -<Abbreviation> -<AUni ws="en">3.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.94" /> -<DateModified val="2022-9-23 16:55:8.94" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a person's mental state.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Mental state</AUni> -</Name> -<Questions> -<objsur guid="811e229b-689d-4077-8a76-4cde37696f89" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="e9ef98d9-8844-4804-88a5-614493d150f5" t="o" /> -<objsur guid="267b98aa-e17c-4ebb-a752-ed4210701867" t="o" /> -<objsur guid="5b5bcd42-09bb-4c2f-a2da-569cfa69b6ac" t="o" /> -<objsur guid="878a313b-a201-444e-8bdb-67048d60c63e" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="a250e19e-4ad2-46e2-91d2-e3d573358e31"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tintiri:llu</AUni> -<AUni ws="qvm-x-acl">tintiri:llu; tintiri:llu; tintiri:llo</AUni> -<AUni ws="qvm-x-akh">tintiri:llu</AUni> -<AUni ws="qvm-x-akl">tintiri:llu; tintiri:llu; tintiri:llo</AUni> -<AUni ws="qvm-x-ame">tintiri:llu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tinterillo</AUni> -<AUni ws="qvm-x-acl">+tinterillo</AUni> -<AUni ws="qvm-x-akh">+tinterillo</AUni> -<AUni ws="qvm-x-akl">+tinterillo</AUni> -<AUni ws="qvm-x-ame">+tinterillo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.916" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9b6aefff-3ae5-4607-ae4e-44d4c5ab0c24" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tinterillo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7a51404d-3b1c-4d0e-a51d-2d1406885ba1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="db263f84-c392-4fa9-9302-d66e578ab4ba" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tinterillo 
\entryTyp root 
\gENG shyster.lawyer 
\gSPN tinterillo 
\e +tinterillo 
\c N0 
\ach tintiri:llu 
\akh tintiri:llu 
\acl tintiri:llu / _# 
\acl tintiri:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tintiri:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tintiri:llu / _# 
\akl tintiri:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tintiri:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tintiri:llu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="a25162cd-f008-4b09-bab3-c307c651f135" ownerguid="9db00bb9-0443-4017-9185-2a6e3f43e556"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="a256ddf0-fc9e-43c9-a272-6c32471967f5" ownerguid="297f69f1-160e-442f-be7b-efcb44722b9c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a2577b70-e856-4d60-a49d-e389b1897e3d" ownerguid="78406cc5-ce24-49a4-a8a6-cd91cfdc02fe"> -<Form> -<AUni ws="qvm-x-ach">gaptsi</AUni> -<AUni ws="qvm-x-acl">gaptsi; gaptse</AUni> -<AUni ws="qvm-x-akh">qaptsi</AUni> -<AUni ws="qvm-x-akl">qaptsi; qaptse</AUni> -<AUni ws="qvm-x-ame">qaptsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="a2594c9d-697f-4d85-a08b-c613da210cef" ownerguid="560b3b04-316e-4326-b298-621a7b0a5fe9"> -<Form> -<AUni ws="qvm-x-ach">princesa</AUni> -<AUni ws="qvm-x-acl">princesa</AUni> -<AUni ws="qvm-x-akh">princesa</AUni> -<AUni ws="qvm-x-akl">princesa</AUni> -<AUni ws="qvm-x-ame">princesa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a25b217d-f678-4be4-86a5-f08ecd95df3d" ownerguid="32fc19fd-a04e-4b69-9442-f7d57348ec55"> -<ExampleWords> -<AUni ws="en">calf, bullock, heifer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to young cattle?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a25ee531-622d-4a1e-bef2-feee1c1de264" ownerguid="d7a7c02b-d75c-4b00-a9a6-942ee64e8c57"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a26720ab-2fe7-4ee1-8695-39fd440cf446" ownerguid="2bd7ff12-4fc2-449c-9505-03b47609512c"> -<Form> -<AUni ws="qvm-x-ach">juniu; junio</AUni> -<AUni ws="qvm-x-acl">juniu; juniu; junio</AUni> -<AUni ws="qvm-x-akh">juniu; junio</AUni> -<AUni ws="qvm-x-akl">juniu; juniu; junio</AUni> -<AUni ws="qvm-x-ame">juniu; junio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a269179d-53ea-4542-b62f-e5ab71161f81" ownerguid="18bf6c79-6399-4977-be3d-93135302d8c4"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Do something <with the purpose of> something happening.; Do something <for the sake of> something happening.; Do something <for the purpose of> causing something to happen.; Do something <in order to> cause something to happen.; Do something <to> cause something to happen.; Do something <in order that> something might happen.; Do something <so that> something might happen.; Do something <to show that> something would happen.; Do something <for> some reason.; This medicine is good <for> malaria.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">for, for the purpose of, for the sake of, with the purpose of, to, in order to, so that, to show that</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate the intended purpose of something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a26c3c21-bb9a-4b82-a354-fa9b54d681f4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bote:lla</AUni> -<AUni ws="qvm-x-acl">bote:lla</AUni> -<AUni ws="qvm-x-akh">bote:lla</AUni> -<AUni ws="qvm-x-akl">bote:lla</AUni> -<AUni ws="qvm-x-ame">bote:lla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+botella</AUni> -<AUni ws="qvm-x-acl">+botella</AUni> -<AUni ws="qvm-x-akh">+botella</AUni> -<AUni ws="qvm-x-akl">+botella</AUni> -<AUni ws="qvm-x-ame">+botella</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.971" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="35065e37-b67b-409c-b0cc-35637a4ad143" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+botella</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fac991e0-69ca-4cc5-943c-d96bc80908bc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="677e0119-7e10-4ffd-9f93-6830f3785559" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +botella 
\entryTyp root 
\gENG bottle 
\gSPN botella 
\e +botella 
\c N0 
\ach bote:lla 
\akh bote:lla 
\acl bote:lla 
\akl bote:lla 
\ame bote:lla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="a26dbfc4-a206-4ede-964e-56668ea3d8db" ownerguid="8c02c3d0-0d71-4afe-931c-ad450e023271"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="e5836cb4-d000-4350-a33b-97817ab62ed5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a26f769c-3b0e-46b5-b9fa-04a470d6b35c" ownerguid="8fff393a-23c2-42bb-8da8-9b151e790904"> -<ExampleWords> -<AUni ws="en">old, elderly, aged, ancient, up in years, retired</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe an old person?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a26ffae3-6efd-4572-9b48-ae2ef2655be7" ownerguid="17703d2d-8933-43b5-9ead-2f46c9ced38e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a276adb9-3c53-45eb-ab4a-f448932945b8" ownerguid="6159b0fc-f2b4-488e-a8b9-f1e8e13cd5fe"> -<Form> -<AUni ws="qvm-x-ach">generación; generacion</AUni> -<AUni ws="qvm-x-acl">generación; generacion</AUni> -<AUni ws="qvm-x-akh">generación; generacion</AUni> -<AUni ws="qvm-x-akl">generación; generacion</AUni> -<AUni ws="qvm-x-ame">generación; generacion</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a27acfa8-6c48-4621-a14b-c560fe8fade6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yali</AUni> -<AUni ws="qvm-x-acl">yali</AUni> -<AUni ws="qvm-x-akh">yali</AUni> -<AUni ws="qvm-x-akl">yali</AUni> -<AUni ws="qvm-x-ame">yali</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yalli.r</AUni> -<AUni ws="qvm-x-acl">*yalli.r</AUni> -<AUni ws="qvm-x-akh">*yalli.r</AUni> -<AUni ws="qvm-x-akl">*yalli.r</AUni> -<AUni ws="qvm-x-ame">*yalli.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.719" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2a7a21f3-1ae4-49a3-9e8b-b7da015722c6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yalli.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9affe392-25f7-493d-b8dd-b8013cbcc31c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0e6999b9-9cfc-4d24-96e4-3a36cd0154c7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yalli.r 
\entryTyp root 
\gENG 
\gSPN 
\e *yalli.r 
\c ONSHEV 
\mp +FinalI 
\ach yali 
\akh yali 
\acl yali 
\akl yali 
\ame yali</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a27ae67d-a00c-4094-90a6-aa6b965492f1" ownerguid="66fc9a08-3661-4dd5-94b0-1eea41fb4554"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The rain <prevented> John <from> finishing his work.; John <kept> us <from> losing our way.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">prevent someone from, keep someone from, avert, avoid, check, frustrate, nip in the bud, obviate, preempt, preemption, prevention, prohibit, stave off, stop, stopping, constrain, impose, hinder, impede, limit, overcome, prevail</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to preventing someone from doing something.</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a27ea006-8ebb-4696-85db-04b6f37d51f8" ownerguid="a12e0583-d0ba-4285-8e0e-13be32382092"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="a2823182-02b2-4fc1-927f-6391c81dfe0c" ownerguid="5ff16f03-4466-4c06-ae98-9c5ba4fa6aca"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="a283647e-ee95-4a79-82de-f8ec237765ed" ownerguid="f0b48c79-b15e-4e3f-a722-74947eebd0d2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="a284a49b-86a0-4549-a04a-2513678be7b0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">willu</AUni> -<AUni ws="qvm-x-acl">willu; willo</AUni> -<AUni ws="qvm-x-akh">willu</AUni> -<AUni ws="qvm-x-akl">willu; willo</AUni> -<AUni ws="qvm-x-ame">willu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*willu</AUni> -<AUni ws="qvm-x-acl">*willu</AUni> -<AUni ws="qvm-x-akh">*willu</AUni> -<AUni ws="qvm-x-akl">*willu</AUni> -<AUni ws="qvm-x-ame">*willu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.658" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d38cf70b-e65e-4dcc-a8a6-3e72b1af17a6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*willu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ebbcbb7c-a749-48af-b93c-0fb9b122af6c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6a9ea33d-3ce6-4009-8fbf-f8487ef58288" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *willu 
\entryTyp root 
\gENG 
\gSPN 
\e *willu 
\c V1 
\ach willu 
\akh willu 
\acl willu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl willo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl willu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl willo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame willu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a285fdb1-f889-4804-bc36-beda9d57ec9a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">casta</AUni> -<AUni ws="qvm-x-acl">casta</AUni> -<AUni ws="qvm-x-akh">casta</AUni> -<AUni ws="qvm-x-akl">casta</AUni> -<AUni ws="qvm-x-ame">casta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+casta</AUni> -<AUni ws="qvm-x-acl">+casta</AUni> -<AUni ws="qvm-x-akh">+casta</AUni> -<AUni ws="qvm-x-akl">+casta</AUni> -<AUni ws="qvm-x-ame">+casta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.82" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9d7587fd-593d-4056-a334-a4be5ab47e85" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+casta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="af36951f-c56a-414c-9db9-16f8cac7e9c8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="686c405d-852b-4af7-bb08-2991f5c3c413" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +casta 
\entryTyp root 
\gENG family 
\gSPN casta 
\e +casta 
\c N0 
\ach casta 
\akh casta 
\acl casta 
\akl casta 
\ame casta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a287c9ec-d8d7-4263-97bf-f5370d3b58ee" ownerguid="70708d98-c14f-4796-98db-50672b023e91"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a28bf2a4-827a-41b5-a192-4b7b2ec18285" ownerguid="246e3ff5-6b51-4366-b84b-138037e2e923"> -<Form> -<AUni ws="qvm-x-ach">alfombra</AUni> -<AUni ws="qvm-x-acl">alfombra</AUni> -<AUni ws="qvm-x-akh">alfombra</AUni> -<AUni ws="qvm-x-akl">alfombra</AUni> -<AUni ws="qvm-x-ame">alfombra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a29591b8-2a5a-49b4-b89b-2833ed12e65c" ownerguid="f13e62d1-1680-4113-a74f-f665bfccae7e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">twine</AUni> -<AUni ws="es">torcilar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d619a002-d8a2-4e1a-a838-d79a145c6687" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="a2989907-310a-4a71-8768-cfa71e66caa6"> -<Analyses> -<objsur guid="04207506-5a9f-49eb-adae-80ab00bd5510" t="o" /> -<objsur guid="50d9d887-1375-4164-90af-eb29f5e73292" t="o" /> -<objsur guid="89db7c8c-9ada-4bc1-b02b-82871c946c22" t="o" /> -<objsur guid="99e47884-cd6b-42dd-9e8e-be04e8791dcb" t="o" /> -<objsur guid="a8a25f74-cf52-43c2-9bf2-41863f060fa6" t="o" /> -<objsur guid="b0cecf9b-06f2-4f96-88a2-f56cd00faf74" t="o" /> -<objsur guid="b93d9c47-2a86-4719-8864-71b8ddc50398" t="o" /> -<objsur guid="e0e4dd0f-4743-4439-a6db-6e410ea088ca" t="o" /> -<objsur guid="eb3585b5-cb6c-4061-8aff-feb66ba09add" t="o" /> -<objsur guid="f8e9778a-93f5-431d-8c9f-7fc4d90e45f7" t="o" /> -</Analyses> -<Checksum val="1458157639" /> -<Form> -<AUni ws="qvm-x-akh">nipäkamay</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="a29eb296-d50b-410e-bf9a-c5a2b1fba7a0" ownerguid="b34dc5c9-3367-4bfc-b077-cd014250dc5c"> -<ExampleWords> -<AUni ws="en">Wow! Hold on! Good grief!</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What interjections are in your language?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a29ebbfa-efa5-4143-b430-9bc2c4151c25"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gapa</AUni> -<AUni ws="qvm-x-acl">gapa</AUni> -<AUni ws="qvm-x-akh">qapa</AUni> -<AUni ws="qvm-x-akl">qapa</AUni> -<AUni ws="qvm-x-ame">qapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qapa</AUni> -<AUni ws="qvm-x-acl">*qapa</AUni> -<AUni ws="qvm-x-akh">*qapa</AUni> -<AUni ws="qvm-x-akl">*qapa</AUni> -<AUni ws="qvm-x-ame">*qapa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.84" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="635dee39-173c-4964-9bda-a09e8eddf4c7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qapa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ec65567c-b797-4b3a-b07e-28a1b2367631" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ab930688-f158-44d3-849d-ac9dfb7a0b1e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qapa 
\entryTyp root 
\gENG scream 
\gSPN gritar 
\e *qapa 
\c V2 
\ach gapa 
\akh qapa 
\acl gapa 
\akl qapa 
\ame qapa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a29f2b2f-cc76-4fd4-9b7d-aa4abab71c51" ownerguid="66f0ef9a-0dcd-40ec-873a-65512053caf0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a2a01b11-008e-4a3c-a128-5cae6d6bbe73" ownerguid="d3315d4b-c39c-479e-ab46-b8875a90f675"> -<Form> -<AUni ws="qvm-x-ach">wasgui</AUni> -<AUni ws="qvm-x-acl">wasgui; wasgue</AUni> -<AUni ws="qvm-x-akh">wasqi</AUni> -<AUni ws="qvm-x-akl">wasqi; wasqe</AUni> -<AUni ws="qvm-x-ame">wasqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="a2a3e21a-819c-4400-b2e6-e6c1a0a0ded3" ownerguid="9b0fef63-5935-447d-801a-bb02dd6212bb"> -<Abbreviation> -<AUni ws="en">4.3.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.225" /> -<DateModified val="2022-9-23 16:55:8.225" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to despising someone--to feel bad about someone because you think they are not as good as you.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88Y Despise, Scorn, Contempt</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Despise someone</AUni> -</Name> -<Questions> -<objsur guid="9087253f-d7cf-40fd-8f46-fe1b517f2da7" t="o" /> -<objsur guid="d50b2ceb-8fd5-4932-8e91-4f741b2ff5bb" t="o" /> -<objsur guid="89967319-82b7-4a1c-8e0b-9d2c96454456" t="o" /> -<objsur guid="4c987686-8828-487d-913f-c7e115c9363f" t="o" /> -<objsur guid="c1022ee1-4597-4e66-9021-c98cb2973af7" t="o" /> -<objsur guid="b3e9a5b2-98ba-4a32-b98f-031e35e3277c" t="o" /> -<objsur guid="b526bed8-2887-4308-b8be-0c29eb53b701" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="a2a60d06-b6b2-47f2-9c6f-1ea68491848c" ownerguid="ccbbd16f-58c5-45c1-bfff-1fba64d9740e"> -<ExampleWords> -<AUni ws="en">begin, start, commence, beginning, the start, commencement, initiate, to institute, inception</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What words are used to indicate that something has begun?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a2aa1245-04a4-4249-9e14-4ae762ecbc49" ownerguid="c753fc8b-22ae-4e71-807f-56fb3ebd3cdd"> -<ExampleWords> -<AUni ws="en">have sex with, have intercourse, make love, sleep with, go to bed with, lovemaking, coition, coitus, copulation, coupling, impregnate, mate, unite</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to having sex with someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a2aa8c2d-48f6-468c-9b86-bd11c8f2e155" ownerguid="21c90725-57f4-490f-bccc-a5dfec231372"> -<Form> -<AUni ws="qvm-x-ach">oguitin</AUni> -<AUni ws="qvm-x-acl">oguitin; oguitin; oguiten</AUni> -<AUni ws="qvm-x-akh">oqitin</AUni> -<AUni ws="qvm-x-akl">oqitin; oqitin; oqiten</AUni> -<AUni ws="qvm-x-ame">uqitin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a2adc8a5-885f-4920-81b1-fb4df2f7cb16" ownerguid="3c404755-b77f-4de9-842b-d323af1fd1ca"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">twig</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c04bad9f-ac61-4a2f-bdb2-9a05bae18f02" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a2adee39-5cd8-4340-9fcf-53da186121cf" ownerguid="bcb1252c-7cb4-4fbc-b83f-e5f9c65b4afb"> -<ExampleWords> -<AUni ws="en">next to, right next to, right up next to, by, beside, neighbor, juxtaposed, nearest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is next to another?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="a2ae0c29-df1c-486d-a44b-96fcc4e0aa8c" ownerguid="b760a3a7-ea7f-4a4b-a4b5-81752f2ca158"> -<Abbreviation> -<AUni ws="en">6.1.2.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.350" /> -<DateModified val="2022-9-23 16:55:8.350" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to giving up.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Give up</AUni> -</Name> -<Questions> -<objsur guid="c1f42e84-1855-433a-949e-2d55746188aa" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="a2aee42b-8abb-488e-b723-c149817f94c6" ownerguid="4c9458da-13a4-4bed-b7c7-f843e9c73479"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="befba4f6-ba0f-4691-a4b9-55aa62797b55" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">base</AUni> -<AUni ws="es">base</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="26824f4a-2206-49e9-9029-61555cde6e5b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a2b0a640-9941-45b2-9d30-2fcd4dedbed5" ownerguid="f726d9bb-ae80-4c01-bdef-b600cb27736e"> -<ExampleWords> -<AUni ws="en">business, organization, company, industry, industrial, enterprise, establishment, firm, institution</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to business?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a2b740a2-98ce-4275-8bf1-9ef98a873036" ownerguid="5257eee1-d68f-4d7f-b0f0-f99cbb91e396"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="a2bb3f67-3e5d-404a-aa52-0657d7052f8f" ownerguid="3e3b63b0-ea86-4749-beba-e287e25462ed"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">punch</AUni> -<AUni ws="es">punzar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="90506446-fd27-49e8-9652-e82314ce02cf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="a2bbf179-8d38-4d2e-84cd-0e00bb6c74f3" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<Abbreviation> -<AUni ws="en">7.2.1.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.498" /> -<DateModified val="2022-9-23 16:55:8.498" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to crawling--moving on your hands and knees or on your stomach.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Crawl</AUni> -</Name> -<Questions> -<objsur guid="54f7454a-348a-4ae2-8629-59b56c491cd9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="a2bde31c-ba6b-4894-ab3c-06b3d3a4933c" ownerguid="b4fe4698-54a2-4bcd-9490-e07ee1ee97af"> -<ExampleWords> -<AUni ws="en">snivel, sniffle, whimper, blubber, blub, crybaby</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to crying in an annoying way?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a2c4d440-ebfb-458b-a401-baf4d5243bae" ownerguid="624cc5cd-3751-4de6-a202-0d029ab8a53f"> -<Form> -<AUni ws="qvm-x-ach">menta</AUni> -<AUni ws="qvm-x-acl">menta</AUni> -<AUni ws="qvm-x-akh">menta</AUni> -<AUni ws="qvm-x-akl">menta</AUni> -<AUni ws="qvm-x-ame">menta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a2c66e2f-fc99-436a-a9df-68ac7d6d1cd1" ownerguid="1bd42665-0610-4442-8d8d-7c666fee3a6d"> -<ExampleWords> -<AUni ws="en">rise, set, sink</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to how the moon moves?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a2c7d7fb-170b-4155-93eb-5d56fbdc4280" ownerguid="e0dc68e0-5490-4c50-a18a-a58f0240c54c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="a2c827eb-49d8-43e8-9d8d-9a2e5f4df97b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ausilia</AUni> -<AUni ws="qvm-x-acl">ausilia</AUni> -<AUni ws="qvm-x-akh">ausilia</AUni> -<AUni ws="qvm-x-akl">ausilia</AUni> -<AUni ws="qvm-x-ame">ausilia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+auxiliar</AUni> -<AUni ws="qvm-x-acl">+auxiliar</AUni> -<AUni ws="qvm-x-akh">+auxiliar</AUni> -<AUni ws="qvm-x-akl">+auxiliar</AUni> -<AUni ws="qvm-x-ame">+auxiliar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.880" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="de493ec6-1957-40c4-b7ec-4c9eed48b445" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+auxiliar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8dcccb03-72a1-467e-8ff7-c1229b1853c2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a09f3bf8-9bdc-4bfa-8d89-4a145483ed2b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +auxiliar 
\entryTyp root 
\gENG help 
\gSPN auxiliar 
\e +auxiliar 
\c V2 
\mp +assimilated 
\ach ausilia 
\akh ausilia 
\acl ausilia 
\akl ausilia 
\ame ausilia 
\i DAN 11.45 Paytaga manami pipis ausiliangatsu.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a2c9734d-4709-4e31-9baf-9d1674dc9d2a" ownerguid="bfa3be74-0390-4e2e-bdb7-ed41eb67e4f1"> -<ExampleWords> -<AUni ws="en">sprinkle, drizzle, light rain, shower, pour, downpour, cloudburst, rainstorm, hard/heavy/driving rain, torrential, deluge, thundershower</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe how hard it is raining?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a2cb4ee4-8d9c-4205-be8e-dd897a33bc0c" ownerguid="8b7bef47-9b6d-47c0-8558-22d442db06a4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="f33f0c85-cdbd-4856-990b-bc920c536cf6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="a2ce1453-9832-447c-9481-70c9e2da4227" ownerguid="811e8c93-d97a-4aab-bd67-268b7783ff11"> -<Abbreviation> -<AUni ws="en">6.2.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.426" /> -<DateModified val="2022-9-23 16:55:8.426" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to irrigating a field.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Irrigate</AUni> -</Name> -<Questions> -<objsur guid="06cb054c-3e57-4e5c-8f03-c0ecbf92ae7f" t="o" /> -<objsur guid="78a4522f-0fdb-4076-8938-f243788afd57" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="a2ce6283-ec59-4491-bacc-108dc88edd19" ownerguid="17d5f429-6550-4a3a-a755-5ac3c3d7e04f"> -<ExampleWords> -<AUni ws="en">den, hole, burrow, molehill</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) Where do mammals live?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="a2d0b3d4-2203-48f8-ae10-b956e3db266d" ownerguid="2e1ac83f-3ca6-46a4-a5af-ee776c9b7cf5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ta</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ta</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ta</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ta</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ta</Run> -</AStr> -</Form> -<Morph> -<objsur guid="4f3f1430-f126-405a-98a8-5d0b732eb948" t="r" /> -</Morph> -<Msa> -<objsur guid="eac932ef-fd79-454b-b2f7-95e85dbb829a" t="r" /> -</Msa> -<Sense> -<objsur guid="043eec5a-5d9b-4292-877e-68d1d35e7f30" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="a2d15c3f-53f7-491b-8675-1f4cabc6d6a7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">traducción; traduccion</AUni> -<AUni ws="qvm-x-acl">traducción; traduccion</AUni> -<AUni ws="qvm-x-akh">traducción; traduccion</AUni> -<AUni ws="qvm-x-akl">traducción; traduccion</AUni> -<AUni ws="qvm-x-ame">traducción; traduccion</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+traducción</AUni> -<AUni ws="qvm-x-acl">+traducción</AUni> -<AUni ws="qvm-x-akh">+traducción</AUni> -<AUni ws="qvm-x-akl">+traducción</AUni> -<AUni ws="qvm-x-ame">+traducción</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.38" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6f7d045c-1439-475b-9732-ae7880feea09" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+traducción</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1c7f205b-8fd3-4fed-9d21-68fcd0ee2f0c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8dffcbc4-08b2-4b6e-8902-b5b2ed367ccc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +traducción 
\entryTyp root 
\gENG translation 
\gSPN traducción 
\e +traducción 
\c N0 
\mp +FinalC 
\ach traducción / _# 
\ach traduccion / ~_# 
\akh traducción / _# 
\akh traduccion / ~_# 
\acl traducción / _# 
\acl traduccion / ~_# 
\akl traducción / _# 
\akl traduccion / ~_# 
\ame traducción / _# 
\ame traduccion / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a2d99351-2700-492d-bfc1-e21f5c0b325b" ownerguid="9b573e8a-d017-4918-b37e-0d5a600c0b6c"> -<Form> -<AUni ws="qvm-x-ach">buyis</AUni> -<AUni ws="qvm-x-acl">buyis</AUni> -<AUni ws="qvm-x-akh">buyis</AUni> -<AUni ws="qvm-x-akl">buyis</AUni> -<AUni ws="qvm-x-ame">buyis</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a2dd8b5c-ec8e-48bc-a803-1672cf804b84" ownerguid="d395edc8-fb58-4ba4-8446-dacf8ea0477a"> -<ExampleWords> -<AUni ws="en">sweat (v), perspire, be dripping with sweat, sweat like a pig</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to sweating?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a2e161e6-7b5c-4e4a-9250-d4cef698f67a" ownerguid="5728b699-9a17-4021-9579-76f5d762a090"> -<Form> -<AUni ws="qvm-x-ach">shuyshu</AUni> -<AUni ws="qvm-x-acl">shuyshu; shuysho</AUni> -<AUni ws="qvm-x-akh">shuyshu</AUni> -<AUni ws="qvm-x-akl">shuyshu; shuysho</AUni> -<AUni ws="qvm-x-ame">shuyshu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a2e3ee97-fa71-4934-9ccd-5f9aec0fd908"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ri:ca</AUni> -<AUni ws="qvm-x-acl">ri:ca</AUni> -<AUni ws="qvm-x-akh">ri:ca</AUni> -<AUni ws="qvm-x-akl">ri:ca</AUni> -<AUni ws="qvm-x-ame">ri:ca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rica</AUni> -<AUni ws="qvm-x-acl">+rica</AUni> -<AUni ws="qvm-x-akh">+rica</AUni> -<AUni ws="qvm-x-akl">+rica</AUni> -<AUni ws="qvm-x-ame">+rica</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.348" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2a85bfe2-aeb1-4061-8e5b-3af609d4b6c1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rica</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b9bfe8c4-84a3-4f43-8e6d-c30133a91b5d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0bc4b01f-8d17-4349-a113-1253adb2aaae" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rica 
\entryTyp root 
\gENG rich 
\gSPN rica 
\e +rica 
\c N0 
\ach ri:ca 
\akh ri:ca 
\acl ri:ca 
\akl ri:ca 
\ame ri:ca</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a2e640ed-b9e7-4da5-8c34-b2aeb0cd2629" ownerguid="3759bdda-2b52-43dc-8995-8379e3129dce"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">We will submit the file <in accordance with> the law.; He will be judged <in accordance with> his crime.; His grade <corresponds to> his performance.; You aren't acting <in line with> your beliefs.; You will benefit <in proportion to> your contribution.; What I have said <applies to> myself as well.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">correspond to, correspondence, in accordance with, in relation to, according to, in line with, in proportion to, to apply to, to regard as applicable to, in keeping with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that one thing corresponds to another?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a2e9f6ab-ef2e-40b3-9014-cfbfb89e0590"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tampi</AUni> -<AUni ws="qvm-x-acl">tampi; tampe</AUni> -<AUni ws="qvm-x-akh">tampi</AUni> -<AUni ws="qvm-x-akl">tampi; tampe</AUni> -<AUni ws="qvm-x-ame">tampi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tampi</AUni> -<AUni ws="qvm-x-acl">*tampi</AUni> -<AUni ws="qvm-x-akh">*tampi</AUni> -<AUni ws="qvm-x-akl">*tampi</AUni> -<AUni ws="qvm-x-ame">*tampi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.794" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7738266e-4417-4c2c-a50e-34aa0b63a9fd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tampi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b1fffbdd-de57-4184-a42c-2de8fa6a363b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="97055cae-4abf-48af-87a2-ab2881d0b6ac" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tampi 
\entryTyp root 
\gENG 
\gSPN abundancia 
\e *tampi 
\c V1 
\mp +FinalI 
\ach tampi 
\akh tampi 
\acl tampi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tampe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tampi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tampe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tampi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a2ec6d72-c5cb-43d7-abbc-7e46b7f877c4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">grana:da</AUni> -<AUni ws="qvm-x-acl">grana:da</AUni> -<AUni ws="qvm-x-akh">grana:da</AUni> -<AUni ws="qvm-x-akl">grana:da</AUni> -<AUni ws="qvm-x-ame">grana:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+granada</AUni> -<AUni ws="qvm-x-acl">+granada</AUni> -<AUni ws="qvm-x-akh">+granada</AUni> -<AUni ws="qvm-x-akl">+granada</AUni> -<AUni ws="qvm-x-ame">+granada</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.629" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f2206d56-b1d3-4156-8ed3-42d7ce8da72e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+granada</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9f24de78-1763-40b3-8c6b-d66245fdc06c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7e06cd32-a360-48d3-bc41-7b65527d6c04" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +granada 
\entryTyp root 
\gENG 
\gSPN 
\e +granada 
\c N0 
\ach grana:da 
\akh grana:da 
\acl grana:da 
\akl grana:da 
\ame grana:da 
\i Exo 28.33 Sotänapa ura cuchunpa azul tëlapita, morädu tëlapita y puca chicnu tëlapita adornuta granädatanog churatsinqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a2efa866-b02c-4893-a7ba-d6c4629ea7e3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">parti; parte</AUni> -<AUni ws="qvm-x-acl">parti; parti; parte</AUni> -<AUni ws="qvm-x-akh">parti; parte</AUni> -<AUni ws="qvm-x-akl">parti; parti; parte</AUni> -<AUni ws="qvm-x-ame">parti; parte</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+parte</AUni> -<AUni ws="qvm-x-acl">+parte</AUni> -<AUni ws="qvm-x-akh">+parte</AUni> -<AUni ws="qvm-x-akl">+parte</AUni> -<AUni ws="qvm-x-ame">+parte</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.727" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ad87a2fb-9699-4d00-84e9-8a90ac2d0034" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+parte</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1093286d-ed8e-4fd7-b1cb-8b652efa1443" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2a20d5e5-d765-4ad4-ad09-081ae9bc7b2c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +parte 
\entryTyp root 
\gENG part 
\gSPN parte 
\e +parte 
\c N0 
\mp +FinalI 
\ach parti / ~_# 
\ach parte / _# 
\akh parti / ~_# 
\akh parte / _# 
\acl parti / ~_# 
\acl parti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl parte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl parti / ~_# 
\akl parti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl parte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame parti / ~_# 
\ame parte / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a2f072b5-f895-4d0e-9d25-4d91cfe0355f" ownerguid="a758718d-6e90-471d-acde-a637ba9ff9eb"> -<ExampleWords> -<AUni ws="en">sell, offer (for purchase), to market</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to selling something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a2f47e4d-1ba8-4ce2-9066-faeea4abc27d" ownerguid="1488107d-c1b4-4aa1-a407-7ea1497d22e0"> -<Form> -<AUni ws="qvm-x-ach">trosadöra</AUni> -<AUni ws="qvm-x-acl">trosadöra</AUni> -<AUni ws="qvm-x-akh">trosadöra</AUni> -<AUni ws="qvm-x-akl">trosadöra</AUni> -<AUni ws="qvm-x-ame">trosadöra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a2f741d9-836f-4bbf-89bd-194ffccab309"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">meche:ru</AUni> -<AUni ws="qvm-x-acl">meche:ru; meche:ru; meche:ro</AUni> -<AUni ws="qvm-x-akh">meche:ru</AUni> -<AUni ws="qvm-x-akl">meche:ru; meche:ru; meche:ro</AUni> -<AUni ws="qvm-x-ame">meche:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mechero</AUni> -<AUni ws="qvm-x-acl">+mechero</AUni> -<AUni ws="qvm-x-akh">+mechero</AUni> -<AUni ws="qvm-x-akl">+mechero</AUni> -<AUni ws="qvm-x-ame">+mechero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.386" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c171bd2f-42b3-414a-9bb6-e265029f3727" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mechero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6aad4953-b1fa-4b02-ad25-f05af3814e4f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9546bfdc-ea45-4a58-9b18-545d0d5a132e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mechero 
\entryTyp root 
\gENG 
\gSPN 
\e +mechero 
\c N0 
\ach meche:ru 
\akh meche:ru 
\acl meche:ru / _# 
\acl meche:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl meche:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl meche:ru / _# 
\akl meche:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl meche:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame meche:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="a2fd5374-7a4c-4a18-b1a2-8f3bcf75046b" ownerguid="56cb7acc-108f-44ab-a7dc-d995bf6db8c5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="ca07312d-49a1-4d8c-8591-706cb7d5a595" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="a2fdb6a9-ed0c-4444-a101-5adab718b86b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">catu</AUni> -<AUni ws="qvm-x-acl">catu; cato</AUni> -<AUni ws="qvm-x-akh">katu</AUni> -<AUni ws="qvm-x-akl">katu; kato</AUni> -<AUni ws="qvm-x-ame">katu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*katu</AUni> -<AUni ws="qvm-x-acl">*katu</AUni> -<AUni ws="qvm-x-akh">*katu</AUni> -<AUni ws="qvm-x-akl">*katu</AUni> -<AUni ws="qvm-x-ame">*katu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.953" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2ed83b4e-2d1b-4347-8400-183f5f6c0e73" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*katu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a1f23521-5d64-407c-b377-e3da90256f12" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="15fb7fc2-8b47-4d43-9dcc-556fa34faf99" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *katu 
\entryTyp root 
\gENG 
\gSPN 
\e *katu 
\c V1 
\ach catu 
\akh katu 
\acl catu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl cato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl katu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame katu 
\i Lev 7.24 Wanushga uywacunapa wiranta o jirca uywacuna catupacushgan uywapa wirantaga ama micutsuntsu. Micunanpa trucan tsay wirataga imalachöpis manijatsun.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a2ff9378-d4d0-413c-acdb-0b059cfd6537" ownerguid="770a116e-6021-41a8-a523-fa86a0ce3b65"> -<Form> -<AUni ws="qvm-x-ach">rasun</AUni> -<AUni ws="qvm-x-acl">rasun</AUni> -<AUni ws="qvm-x-akh">rasun</AUni> -<AUni ws="qvm-x-akl">rasun</AUni> -<AUni ws="qvm-x-ame">rasun</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="a302dc69-ec72-4e07-9934-73bd9491e140" ownerguid="ecf532a7-038b-4f31-8c1c-f36f85314222"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="a306bbf3-adec-47c6-b3a5-2c80e0d3298c" ownerguid="d974afac-8da9-4e3d-840e-412a093ad72d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="a307edfc-f639-4259-918e-267056c0df25" ownerguid="c32f6536-3f9f-4d6e-90fb-4b375d9d195f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="a30b00ce-5a6b-41ec-b8e2-f39507216c3a" ownerguid="bee4d6b2-771a-45e8-ab29-847f225a02d1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">amen</AUni> -<AUni ws="es">amén</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c658f0e6-824d-435f-ac87-e717211f6c4e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a30b7caf-1ee2-4f8d-8b33-3e0c80c07f6b" ownerguid="8662aa19-df80-4dc7-b6b3-270db0d1456a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">other.side</AUni> -<AUni ws="es">vuelta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5eef66a2-47be-4653-b45f-a6284ad5bc2e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a30bba18-ee9e-4a47-aa17-686be7151d7c" ownerguid="a459dfd1-54ee-4b03-845f-35041413b1aa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">understand</AUni> -<AUni ws="es">entender</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dd55819d-2311-4bdc-b5e8-5f9881f13f1a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="a30c8d15-6f38-4e3d-95e4-20fbc6cb6503" ownerguid="fdbdb4cf-b6a0-489f-a7db-d7e5e05a25f6"> -<Form> -<AUni ws="qvm-x-ach">aguish</AUni> -<AUni ws="qvm-x-acl">aguish</AUni> -<AUni ws="qvm-x-akh">aqish</AUni> -<AUni ws="qvm-x-akl">aqish</AUni> -<AUni ws="qvm-x-ame">aqish</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StTxtPara" guid="a30d2287-d368-4ac8-839e-634193ad6567" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">yarpätsin. </Run> -<Run ws="en">\tr < V1 *yarpäv1 > CAUS 3</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="1e9d9cbb-c30a-4242-8f75-a03d1ad3df77" t="o" /> -<objsur guid="d5229460-5535-4f65-bff4-f067d46f872b" t="o" /> -</Segments> -</rt> -<rt class="CmSemanticDomain" guid="a30e0391-ea64-4938-9eca-023c351d60af" ownerguid="77b4d6c1-87bf-4839-b4be-6a45119b700a"> -<Abbreviation> -<AUni ws="en">3.5.1.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.164" /> -<DateModified val="2022-9-23 16:55:8.164" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that refer to discovering and revealing unknown information.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Disclose</AUni> -</Name> -<Questions> -<objsur guid="1948d50f-1850-456d-8dd2-4498cd72670d" t="o" /> -<objsur guid="fb3a6c3e-eb74-451c-9aea-aec0b57ba778" t="o" /> -<objsur guid="71d213b8-f9a1-463d-ab17-7d360eb5c00d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="a3114026-3243-493e-b04d-4cd401fb8d7b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ci:ta</AUni> -<AUni ws="qvm-x-acl">ci:ta</AUni> -<AUni ws="qvm-x-akh">ci:ta</AUni> -<AUni ws="qvm-x-akl">ci:ta</AUni> -<AUni ws="qvm-x-ame">ci:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cita</AUni> -<AUni ws="qvm-x-acl">+cita</AUni> -<AUni ws="qvm-x-akh">+cita</AUni> -<AUni ws="qvm-x-akl">+cita</AUni> -<AUni ws="qvm-x-ame">+cita</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.122" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6bfff551-e79e-4d74-b8ed-74b0a562c240" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cita</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="318dc442-ba4c-4a79-afdb-3a9d3cf54fa6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d85d1009-3e22-48c7-a860-f0a0475c658d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cita 
\entryTyp root 
\gENG reference 
\gSPN cita 
\e +cita 
\c N0 
\ach ci:ta 
\akh ci:ta 
\acl ci:ta 
\akl ci:ta 
\ame ci:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a312b997-99c7-4b9c-bc3c-3022f4b11091"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">trenza</AUni> -<AUni ws="qvm-x-acl">trenza</AUni> -<AUni ws="qvm-x-akh">trenza</AUni> -<AUni ws="qvm-x-akl">trenza</AUni> -<AUni ws="qvm-x-ame">trenza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+trenza</AUni> -<AUni ws="qvm-x-acl">+trenza</AUni> -<AUni ws="qvm-x-akh">+trenza</AUni> -<AUni ws="qvm-x-akl">+trenza</AUni> -<AUni ws="qvm-x-ame">+trenza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.96" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d96c6b50-60ba-4636-8cbe-f3e88a623c69" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+trenza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="63d02647-9500-4696-9ff8-9f2bc467323b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a3a1cd1f-b7b1-4a22-8dcd-2849ec8bc276" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +trenza 
\entryTyp root 
\gENG 
\gSPN 
\e +trenza 
\c N0 
\ach trenza 
\akh trenza 
\acl trenza 
\akl trenza 
\ame trenza</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="a3147249-29eb-4b76-a99c-21e29d7b1f27" ownerguid="3d4d2a28-ed45-4fc1-85ae-a16b964d7054"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ec472a9c-7ab2-4d47-b71e-3d39eef0f88c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiGloss" guid="a315116c-1d61-4f83-9556-be33c6a4854f" ownerguid="f85d098c-f4f9-4890-bbc1-02d70546fdd3"> -<Form> -<AUni ws="en">no</AUni> -<AUni ws="es">no</AUni> -</Form> -</rt> -<rt class="WfiMorphBundle" guid="a315669f-fb8b-481a-9957-2196d75f48d4" ownerguid="c6e365c2-5fd4-4d69-8202-bc20a49fa1d8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="a315f87a-e9b6-4fe1-b9fd-5cc54dd57ecf" ownerguid="31d04eec-f855-4675-88e3-3e62cca59a84"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a318d190-bbc5-42bd-a3e0-3897c2959c96" ownerguid="6268bc24-e119-41df-9101-423023162e9a"> -<Form> -<AUni ws="qvm-x-ach">tupshi</AUni> -<AUni ws="qvm-x-acl">tupshi; tupshi; tupshe</AUni> -<AUni ws="qvm-x-akh">tupshi</AUni> -<AUni ws="qvm-x-akl">tupshi; tupshi; tupshe</AUni> -<AUni ws="qvm-x-ame">tupshi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a3193716-c0af-4692-9040-9360b6d86b2e" ownerguid="ecc972e2-fd45-4364-be97-09555bc9e8d0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">quickly</AUni> -<AUni ws="es">rápidamente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="794ff46d-92c8-42ee-9318-579036797a35" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="a31b19c5-c713-48c0-b554-df1c35c8d500" ownerguid="fbfb11f6-a58c-4ef1-9bf9-dd4c439447c5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="a31c85df-02a9-4dd8-a094-0f07a0afbcca" ownerguid="08239f53-daa5-47a6-9f39-29a9064b0c27"> -<Abbreviation> -<AUni ws="en">7.5.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.546" /> -<DateModified val="2022-9-23 16:55:8.546" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to removing part of something, taking something apart, and things coming apart.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Remove, take apart</AUni> -</Name> -<Questions> -<objsur guid="c7ab5dd4-0a40-48ee-8c72-2e64802eae98" t="o" /> -<objsur guid="8b600f38-8c05-406d-8872-b8662bf4e808" t="o" /> -<objsur guid="17edf9cf-e156-43c9-8661-012c3d265172" t="o" /> -<objsur guid="3cecb9c3-e0ee-49d9-9572-35a1f004b3b1" t="o" /> -<objsur guid="e37152be-61f5-4f1c-8b3c-3ab0ae48666d" t="o" /> -<objsur guid="63278d0d-87a9-4a87-8e47-4bfab6d822b2" t="o" /> -<objsur guid="a4ed9b4a-da09-46e0-80ba-2dc30925600b" t="o" /> -<objsur guid="01d638d6-da52-49bd-9294-148c0559732e" t="o" /> -<objsur guid="8acd47f0-123d-4725-8c28-31b62245beca" t="o" /> -<objsur guid="05914213-df74-4675-8b6b-9c5463ce34c3" t="o" /> -<objsur guid="acc6e488-402e-429f-9bcb-f0a7b6da591f" t="o" /> -<objsur guid="18d9bebb-8d01-4cc1-8ac2-b84282a5921a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="a320fe8b-cf33-42be-a977-aa29bf6d04fe" ownerguid="088c5a2a-9ab9-4949-83c6-8ac5d0c29808"> -<Form> -<AUni ws="qvm-x-ach">yananya; yananyä</AUni> -<AUni ws="qvm-x-acl">yananya; yananyä</AUni> -<AUni ws="qvm-x-akh">yananya; yananyä</AUni> -<AUni ws="qvm-x-akl">yananya; yananyä</AUni> -<AUni ws="qvm-x-ame">yananya; yananyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="a3246aa7-468a-4ee4-af5d-09e36aa4afe1" ownerguid="de6c022f-6ed0-483c-bfda-25b96598daad"> -<Form> -<AUni ws="qvm-x-ach">nawi</AUni> -<AUni ws="qvm-x-acl">nawi; nawi; nawe</AUni> -<AUni ws="qvm-x-akh">nawi</AUni> -<AUni ws="qvm-x-akl">nawi; nawi; nawe</AUni> -<AUni ws="qvm-x-ame">nawi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="a326cbfa-99c4-4e80-b440-e90026ce9427" ownerguid="da7866e6-1f15-4693-991d-5b5234334976"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PartOfSpeech" guid="a3274cfd-225f-45fd-8851-a7b1a1e1037a" ownerguid="a4fc78d6-7591-4fb3-8edd-82f10ae3739d"> -<Abbreviation> -<AUni ws="en">pro</AUni> -</Abbreviation> -<AffixTemplates> -<objsur guid="654f160b-ffa2-402d-9fa4-e8a990266927" t="o" /> -</AffixTemplates> -<BackColor val="-1073741824" /> -<CatalogSourceId> -<Uni>Pronoun</Uni> -</CatalogSourceId> -<DateCreated val="2022-9-23 16:55:8.749" /> -<DateModified val="2022-10-16 15:23:56.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">A pronoun is a pro-form which functions like a noun and substitutes for a noun or noun phrase.</Run> -</AStr> -</Description> -<ForeColor val="6303632" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Pronoun</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="1" /> -</rt> -<rt class="LexSense" guid="a327eab9-d675-4a30-acde-37adf25942d3" ownerguid="f550e0f1-b56f-42ed-9740-fe5c12020dd1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fish</AUni> -<AUni ws="es">pescado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="606d947f-700b-4c60-81bb-fa1aaa1ba544" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a3291487-2ca6-41a4-a58b-354cda76316f" ownerguid="befe69ac-c954-4251-b28e-b4c8b1a207ac"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="025599bd-4e2a-4e25-b8c4-3bf628f1e822" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="a32aaa94-a452-4cc7-bfea-3314fb389f11" ownerguid="d9850acb-9dca-431a-8bd7-e5ec4bcffaa7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="a32ab2c8-34e0-4b1b-8552-35b8223e2aed" ownerguid="ec3db861-a8b0-47b5-a12b-ef9a8a37dfaf"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a32ada67-91a8-48c5-aab5-d41e11a8f316" ownerguid="af4dc9fa-dafa-43eb-b1f6-e0fe51e236c6"> -<Form> -<AUni ws="qvm-x-ach">wanupan</AUni> -<AUni ws="qvm-x-acl">wanupan</AUni> -<AUni ws="qvm-x-akh">wanupan</AUni> -<AUni ws="qvm-x-akl">wanupan</AUni> -<AUni ws="qvm-x-ame">wanupan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a32ae4dc-5181-4d60-9651-6e391e4d028e" ownerguid="4e7f1593-02a2-4659-8f15-101b37e71f02"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">twist</AUni> -<AUni ws="es">torcer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9b4f1490-0f5e-43a7-bcb3-a8bd0c0a0432" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntryInflType" guid="a32f1d1c-4832-46a2-9732-c2276d6547e8" ownerguid="01d4fbc1-3b0c-4f52-9163-7ab0d4f4711c"> -<Abbreviation> -<AUni ws="en">pl.</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">The plural form of a noun that does not take the regular inflectional affix for plural.</Run> -</AStr> -</Description> -<Discussion> -<objsur guid="b716211a-ea5e-11de-8768-0013722f8dec" t="o" /> -</Discussion> -<ForeColor val="0" /> -<GlossAppend> -<AUni ws="en">.pl</AUni> -</GlossAppend> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Plural</AUni> -</Name> -<ReverseAbbr> -<AUni ws="en">pl. of</AUni> -</ReverseAbbr> -<ReverseName> -<AUni ws="en">Plural of</AUni> -</ReverseName> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="a3322179-f592-4d9f-b7e3-4d7dc03740b0" ownerguid="49c878dd-277f-4bc9-b8ad-9ba192709108"> -<ExampleWords> -<AUni ws="en">wash themselves, groom, hunt, stalk</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What do cats do?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a3336d76-8a12-47be-a70c-72ab5bc37d09" ownerguid="44acfa0f-1a00-4e7d-8b98-1851b4484599"> -<Form> -<AUni ws="qvm-x-ach">pïna; pïnä</AUni> -<AUni ws="qvm-x-acl">pïna; pïnä</AUni> -<AUni ws="qvm-x-akh">pïna; pïnä</AUni> -<AUni ws="qvm-x-akl">pïna; pïnä</AUni> -<AUni ws="qvm-x-ame">pïna; pïnä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PunctuationForm" guid="a333d7b9-14a8-4362-ac54-328ea0bba033"> -<Form> -<Str> -<Run ws="en">1</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="a3343f49-2ba8-4159-9cc5-7f76c09bd655" ownerguid="3ea4c495-b837-4310-8741-38d89fa63e0b"> -<ExampleWords> -<AUni ws="en">[none in English]</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) indicative: main clause mood that also appears in questions. Contrasts with subjunctive, conditional, and imperative.</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a3358e05-9a48-4ca2-a9f9-a61aaf6789ba" ownerguid="35e61ec4-0542-4583-b5da-0aa5e31a35aa"> -<ExampleWords> -<AUni ws="en">maternity, postnatal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something to do with birth?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a335ec94-3b9a-45cf-8d96-303996f1ee68" ownerguid="cb240e85-78cc-4d93-acad-6fab2419151f"> -<Form> -<AUni ws="qvm-x-ach">sobrinu; sobrino</AUni> -<AUni ws="qvm-x-acl">sobrinu; sobrinu; sobrino</AUni> -<AUni ws="qvm-x-akh">sobrinu; sobrino</AUni> -<AUni ws="qvm-x-akl">sobrinu; sobrinu; sobrino</AUni> -<AUni ws="qvm-x-ame">sobrinu; sobrino</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a336e26e-c41e-4a12-bd4a-b62ca78865eb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lutsca</AUni> -<AUni ws="qvm-x-acl">lutsca</AUni> -<AUni ws="qvm-x-akh">lutska</AUni> -<AUni ws="qvm-x-akl">lutska</AUni> -<AUni ws="qvm-x-ame">lutska</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lluchka.n</AUni> -<AUni ws="qvm-x-acl">*lluchka.n</AUni> -<AUni ws="qvm-x-akh">*lluchka.n</AUni> -<AUni ws="qvm-x-akl">*lluchka.n</AUni> -<AUni ws="qvm-x-ame">*lluchka.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.215" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1d1ccbe5-8cd1-463a-b018-99f8d67b136d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lluchka.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="75d3140e-0023-46a7-809e-f9106bf27e78" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d1d02e46-4d98-4b89-b9b5-535068c0832a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lluchka.n 
\entryTyp root 
\gENG slippery.spot 
\gSPN lugar.resbalozo 
\e *lluchka.n 
\c N0 
\ach lutsca 
\akh lutska 
\acl lutsca 
\akl lutska 
\ame lutska</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="a3384417-0862-45b8-8f51-76ce3395d107" ownerguid="c52e3809-7b7b-4bd7-88b4-1aa9b36fef05"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="b15804c1-58a8-44e6-9792-3239b3fc7cf8" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="ef4e0371-17fb-401c-993f-3b808a9a5dff" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="a33891c4-cb43-4723-817a-b4941ac3114c" ownerguid="fd2ee979-9301-46e9-ac89-1243592d6b9b"> -<Form> -<AUni ws="qvm-x-ach">tuma</AUni> -<AUni ws="qvm-x-acl">tuma</AUni> -<AUni ws="qvm-x-akh">tuma</AUni> -<AUni ws="qvm-x-akl">tuma</AUni> -<AUni ws="qvm-x-ame">tuma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a33add98-ddcb-4f2b-ac39-fe068f9dc609" ownerguid="1b6b0c12-9ecd-45cb-bb0e-0dadb435eddf"> -<ExampleWords> -<AUni ws="en">a lot of, lots of, a great deal of, a good deal of, a fair bit of, a fair amount of, much, loads of, tons of, masses of, scads of, piles of, heaps of, stacks of, a mountain of, extensive, widespread, big amount, lots and lots</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that there is a large amount of something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a33be084-0288-467a-93e9-447150d1a463"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">latsapa</AUni> -<AUni ws="qvm-x-acl">latsapa</AUni> -<AUni ws="qvm-x-akh">latsapa</AUni> -<AUni ws="qvm-x-akl">latsapa</AUni> -<AUni ws="qvm-x-ame">latsapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llachapa</AUni> -<AUni ws="qvm-x-acl">*llachapa</AUni> -<AUni ws="qvm-x-akh">*llachapa</AUni> -<AUni ws="qvm-x-akl">*llachapa</AUni> -<AUni ws="qvm-x-ame">*llachapa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.122" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a68601f8-9e40-4783-bf2a-ec7c981bd02a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llachapa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cb3b9850-292c-4c21-8672-3466f1368c62" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="463cd17a-aa94-4540-8cff-6a418e41190e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llachapa 
\entryTyp root 
\gENG worn.out 
\gSPN rotoso 
\e *llachapa 
\c N0 
\ach latsapa 
\akh latsapa 
\acl latsapa 
\akl latsapa 
\ame latsapa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a33ec443-5299-4582-8442-18b37ea28ecd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mayor</AUni> -<AUni ws="qvm-x-acl">mayor</AUni> -<AUni ws="qvm-x-akh">mayor</AUni> -<AUni ws="qvm-x-akl">mayor</AUni> -<AUni ws="qvm-x-ame">mayor</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mayor</AUni> -<AUni ws="qvm-x-acl">+mayor</AUni> -<AUni ws="qvm-x-akh">+mayor</AUni> -<AUni ws="qvm-x-akl">+mayor</AUni> -<AUni ws="qvm-x-ame">+mayor</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.376" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7177ae14-010c-4493-ba83-44700bfcbe8b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mayor</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="686e5cc6-08f3-410c-a525-e36454eef1ec" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="41ba563b-3303-4f74-995d-264944d16b70" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mayor 
\entryTyp root 
\gENG older 
\gSPN mayor 
\e +mayor 
\c N0 
\mp +FinalC 
\ach mayor 
\akh mayor 
\acl mayor 
\akl mayor 
\ame mayor</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a33fc8bd-1004-451d-a46a-2476025fc95b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jubila</AUni> -<AUni ws="qvm-x-acl">jubila</AUni> -<AUni ws="qvm-x-akh">jubila</AUni> -<AUni ws="qvm-x-akl">jubila</AUni> -<AUni ws="qvm-x-ame">jubila</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+jubilar</AUni> -<AUni ws="qvm-x-acl">+jubilar</AUni> -<AUni ws="qvm-x-akh">+jubilar</AUni> -<AUni ws="qvm-x-akl">+jubilar</AUni> -<AUni ws="qvm-x-ame">+jubilar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.882" /> -<DateModified val="2022-10-10 21:19:47.697" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7afe1328-9593-41a2-88c3-f53186b7670c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+jubilar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="254d6a4d-3676-456a-8d48-c0904c9ef660" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4b19f8b0-8e89-4229-b05b-b0325eeb3c53" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +jubilar 
\entryTyp root 
\gENG retire 
\gSPN 
\e +jubilar 
\c V1 
\ach jubila 
\akh jubila 
\acl jubila 
\akl jubila 
\ame jubila 
\i Num 8.25 Pitsga chunca (50) watata cumplircorga jubilaconganami.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a3428ad4-e052-4bdf-93a8-30329ec06ade" ownerguid="f068e266-e8ea-4671-934f-17929e749315"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a3429319-55d4-4504-ab54-f76b1a1b4881" ownerguid="e9fdc131-addb-4db6-8f79-ae0044e1eb81"> -<ExampleWords> -<AUni ws="en">chapter, verse, text, Old/New Testament, Law, Prophets, Gospels, Epistles, Apocalypse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a part of the sacred writings?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a342e01b-25f0-49cc-941b-84462250fa13" ownerguid="7981a8e1-cf0b-44a0-9de4-12160b2f201d"> -<ExampleWords> -<AUni ws="en">landowner, landlord, owner</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the person who owns the land?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a345c2c4-ba9a-4bf9-b4c0-412303a19de3" ownerguid="339f54a5-125b-435f-bf37-cfc2a2bd26d3"> -<ExampleWords> -<AUni ws="en">break into a smile, someone's face lights up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to starting to smile?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="a345d090-14e2-4897-9186-debcb05ab27c" ownerguid="00269021-e1c4-474d-9dba-341d296bdac7"> -<Abbreviation> -<AUni ws="en">8.4.5.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.640" /> -<DateModified val="2022-9-23 16:55:8.640" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to something happening next.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Next</AUni> -</Name> -<Questions> -<objsur guid="c1786d33-c3d9-4a10-87b5-6bb938e5e86c" t="o" /> -<objsur guid="26890fc1-88a4-4cf8-a402-f0d2f422b070" t="o" /> -<objsur guid="c9dae705-667f-42de-bc88-a7799a031e3b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="a346839b-794f-4988-b508-3d195ddf726b" ownerguid="250baab9-5a31-493c-95ea-9fee8baf9fd5"> -<ExampleWords> -<AUni ws="en">graceful, coordinated, elegant, light-footed, light on your feet, lithe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who moves in a graceful way?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a3477d7b-f797-4cdc-940c-fe07081f6b33" ownerguid="53636d8a-0c27-4b70-af40-b6311cabcd2d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">beat</AUni> -<AUni ws="es">golpear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fc779bb8-3216-4451-bf8f-f5ef08fff6d1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a34a78e5-20af-4608-b8fb-a2975be3a5b9" ownerguid="fc7e4918-61d3-4287-9a66-057e7ef25bf5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">above</AUni> -<AUni ws="es">sobre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="51609f05-a73a-486d-81bc-b2adaea24367" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="a34ad215-7028-480b-bac4-f2166356f2d7" ownerguid="21adcdce-d6a7-46ac-925e-7202981a1736"> -<Form> -<AUni ws="qvm-x-ach">chunku</AUni> -<AUni ws="qvm-x-acl">chunku; chunko</AUni> -<AUni ws="qvm-x-akh">chunku</AUni> -<AUni ws="qvm-x-akl">chunku; chunko</AUni> -<AUni ws="qvm-x-ame">chunku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a34c4588-ec1b-4d43-8cdd-2ee059bda97e" ownerguid="7cf6312e-f9f0-49e8-ae60-7677fac86c3f"> -<ExampleWords> -<AUni ws="en">leave, be left with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate the answer?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a34da010-25fd-4e68-9b19-4c09e51be7ec"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pre:su</AUni> -<AUni ws="qvm-x-acl">pre:su; pre:su; pre:so</AUni> -<AUni ws="qvm-x-akh">pre:su</AUni> -<AUni ws="qvm-x-akl">pre:su; pre:su; pre:so</AUni> -<AUni ws="qvm-x-ame">pre:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+preso.n</AUni> -<AUni ws="qvm-x-acl">+preso.n</AUni> -<AUni ws="qvm-x-akh">+preso.n</AUni> -<AUni ws="qvm-x-akl">+preso.n</AUni> -<AUni ws="qvm-x-ame">+preso.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.921" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0eef36c2-0731-4f8f-b14c-f5cf7a644084" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+preso.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c81e7b48-eb5b-4eff-bc33-257cb79cb2b5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6eed974b-9e55-4ab1-b8af-a3278c74c5e9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +preso.n 
\entryTyp root 
\gENG prisoner 
\gSPN preso 
\e +preso.n 
\c N0 
\ach pre:su 
\akh pre:su 
\acl pre:su / _# 
\acl pre:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pre:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pre:su / _# 
\akl pre:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pre:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pre:su</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a350a2f2-eb17-48e2-8edb-19833c2c5502" ownerguid="e17407bc-5642-45ce-8f14-5d49ea3d89ad"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a35355be-ec71-4967-ac56-a576c15e2b2e" ownerguid="e1efcec2-0474-4efb-8c6a-8c9595a17f09"> -<Form> -<AUni ws="qvm-x-ach">manija</AUni> -<AUni ws="qvm-x-acl">manija</AUni> -<AUni ws="qvm-x-akh">manija</AUni> -<AUni ws="qvm-x-akl">manija</AUni> -<AUni ws="qvm-x-ame">manija</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="a355db53-7c4f-41ea-b17b-e5bb5e319fa7" ownerguid="4e780ffd-89c9-4ed3-af01-97633f15706f"> -<Form> -<AUni ws="qvm-x-ach">büya</AUni> -<AUni ws="qvm-x-acl">büya</AUni> -<AUni ws="qvm-x-akh">büya</AUni> -<AUni ws="qvm-x-akl">büya</AUni> -<AUni ws="qvm-x-ame">büya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="a3569355-1ab7-4c40-bac3-0202f33fff51" ownerguid="108eea5a-bd2e-42b8-bb53-b1fc1231dd62"> -<Form> -<AUni ws="qvm-x-ach">mantila</AUni> -<AUni ws="qvm-x-acl">mantila</AUni> -<AUni ws="qvm-x-akh">mantila</AUni> -<AUni ws="qvm-x-akl">mantila</AUni> -<AUni ws="qvm-x-ame">mantila</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a358047f-bf6e-4e7e-97b6-975d7417f337" ownerguid="10b6c417-d020-4318-a44a-ae69ea3eec5a"> -<ExampleWords> -<AUni ws="en">changeable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that can be changed?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a3595d27-1036-4a99-85c4-12d22d1462a5" ownerguid="e45b8bac-9623-4f84-a113-9dec13a8db64"> -<ExampleWords> -<AUni ws="en">point, aspect</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a part of a subject?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a359970c-b836-4bda-b58a-f7bb09e31825"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chogpa</AUni> -<AUni ws="qvm-x-acl">chogpa</AUni> -<AUni ws="qvm-x-akh">choqpa</AUni> -<AUni ws="qvm-x-akl">choqpa</AUni> -<AUni ws="qvm-x-ame">chuqpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chuqpa</AUni> -<AUni ws="qvm-x-acl">*chuqpa</AUni> -<AUni ws="qvm-x-akh">*chuqpa</AUni> -<AUni ws="qvm-x-akl">*chuqpa</AUni> -<AUni ws="qvm-x-ame">*chuqpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.345" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d31f58c4-8f8c-4459-8e8a-8aa2b3482816" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chuqpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bba4e8fa-0879-4218-be93-1d9d39f9dc93" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="88093fc5-373f-4914-8d2f-6bff1058e409" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chuqpa 
\entryTyp root 
\gENG touch 
\gSPN tocar 
\e *chuqpa 
\c V1 
\ach chogpa 
\akh choqpa 
\acl chogpa 
\akl choqpa 
\ame chuqpa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a35b7fd1-8427-492e-89f7-500f3e75b449"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cucu</AUni> -<AUni ws="qvm-x-acl">cucu; cuco</AUni> -<AUni ws="qvm-x-akh">kuku</AUni> -<AUni ws="qvm-x-akl">kuku; kuko</AUni> -<AUni ws="qvm-x-ame">kuku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kuku.v</AUni> -<AUni ws="qvm-x-acl">*kuku.v</AUni> -<AUni ws="qvm-x-akh">*kuku.v</AUni> -<AUni ws="qvm-x-akl">*kuku.v</AUni> -<AUni ws="qvm-x-ame">*kuku.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.3" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b3beb7ca-37df-453a-b88a-cc901f27a428" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kuku.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ca47964b-09a0-45fb-baa8-9f2e7112641d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1c6da039-581f-4f29-ac86-f0b8a7cef904" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kuku.v 
\entryTyp root 
\gENG stoop 
\gSPN agachar 
\e *kuku.v 
\c V1 
\ach cucu 
\akh kuku 
\acl cucu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl cuco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kuku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kuko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kuku</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a35c245c-4e56-4913-971f-7ff9f87277fe" ownerguid="0f7c4d2f-ed94-49ba-a91c-fba36193f35a"> -<ExampleWords> -<AUni ws="en">cost, price, value, charge, rate, wage, expense</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the price of something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a36143ee-b7cd-43c2-be54-61bcbeb9218d" ownerguid="df45abe8-d148-4729-afff-c7a0c4608128"> -<Form> -<AUni ws="qvm-x-ach">arädu</AUni> -<AUni ws="qvm-x-acl">arädu; arädu; arädo</AUni> -<AUni ws="qvm-x-akh">arädu</AUni> -<AUni ws="qvm-x-akl">arädu; arädu; arädo</AUni> -<AUni ws="qvm-x-ame">arädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="a361452d-8e77-4e2c-a0e4-ad73d6fcaf2a" ownerguid="9c741043-0a48-40d1-8ba3-bb9c57d036a5"> -<Form> -<AUni ws="qvm-x-ach">putsca</AUni> -<AUni ws="qvm-x-acl">putsca</AUni> -<AUni ws="qvm-x-akh">putska</AUni> -<AUni ws="qvm-x-akl">putska</AUni> -<AUni ws="qvm-x-ame">putska</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a362ede0-5c25-4cc2-8c4d-c5003740c08e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yapa</AUni> -<AUni ws="qvm-x-acl">yapa</AUni> -<AUni ws="qvm-x-akh">yapa</AUni> -<AUni ws="qvm-x-akl">yapa</AUni> -<AUni ws="qvm-x-ame">yapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yapa.r</AUni> -<AUni ws="qvm-x-acl">*yapa.r</AUni> -<AUni ws="qvm-x-akh">*yapa.r</AUni> -<AUni ws="qvm-x-akl">*yapa.r</AUni> -<AUni ws="qvm-x-ame">*yapa.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.747" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b97551e3-69a6-43ea-ae10-d470185d60aa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yapa.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="539e4c13-389e-4a99-8b99-689b17d59a65" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c5c24209-9d22-4879-a5ce-138a07530575" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yapa.r 
\entryTyp root 
\gENG 
\gSPN 
\e *yapa.r 
\c NOSUFF 
\ach yapa 
\akh yapa 
\acl yapa 
\akl yapa 
\ame yapa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a3634e20-56c9-429a-9b29-fc52ef5f02ae"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">calla:ju</AUni> -<AUni ws="qvm-x-acl">calla:ju</AUni> -<AUni ws="qvm-x-akh">calla:ju</AUni> -<AUni ws="qvm-x-akl">calla:ju</AUni> -<AUni ws="qvm-x-ame">calla:ju</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+carajo.2</AUni> -<AUni ws="qvm-x-acl">+carajo.2</AUni> -<AUni ws="qvm-x-akh">+carajo.2</AUni> -<AUni ws="qvm-x-akl">+carajo.2</AUni> -<AUni ws="qvm-x-ame">+carajo.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.520" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5ab32b27-7c50-498c-9b77-4b9a0d12c551" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+carajo.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6390f4e1-0a30-4eef-af19-4d25f415338f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="071e9d97-69ea-44ec-a992-261ec81db9af" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +carajo.2 
\entryTyp root 
\gENG exclamation 
\gSPN exclamación 
\e +carajo.2 
\c NOSUFF 
\ach calla:ju 
\akh calla:ju 
\acl calla:ju 
\akl calla:ju 
\ame calla:ju</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a3635cb7-6882-4b10-8a86-fa6a9943f4f5" ownerguid="ad4d28bb-0408-4aa7-bbac-ed1c060f3023"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="a3643663-29d6-4f6e-b379-4d5e99e22d22" ownerguid="abb362dd-be9e-4508-a818-32afb7b9acd1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="d00a0361-c095-4245-8dfa-6ba3eea9f462" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a3644ca0-2f1a-42ab-86cf-33bdd1494e0d" ownerguid="ba1e8d2b-7d3e-4b65-a9be-ee1a4063c796"> -<ExampleWords> -<AUni ws="en">worry (v), feel worried, be worried, feel anxious, be anxious, be afraid, feel afraid, feel scared, feel unsure, agonize over, wonder what is going to happen, uneasy, fret, brood, lose sleep, not like the look of, not like the sound of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling worried?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="a36b3354-8598-4228-b779-c7c922b1e61d" ownerguid="63b18261-faf3-4ab2-bcb4-7c3ac4d6d6ba"> -<Abbreviation> -<AUni ws="en">6.8.9.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.496" /> -<DateModified val="2022-9-23 16:55:8.496" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to smuggling--taking something secretly into a country, something which is illegal or without paying duty.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Smuggle</AUni> -</Name> -<Questions> -<objsur guid="61503384-736a-4a11-9719-0aaa4775c7ff" t="o" /> -<objsur guid="ac643fef-e387-460c-9459-4299bf65391e" t="o" /> -<objsur guid="91bf64b1-50af-4cbb-a61d-30166d139bcf" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="a36b3adf-17a4-479e-9eec-dd41cf22b387" ownerguid="97832dfb-d490-40d0-ade8-a5074e868a76"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">piece</AUni> -<AUni ws="es">pedazo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="edd200ca-50f3-4898-8da0-53d8b59bb007" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="a36cc8f6-df92-49b5-8b43-30cdb83d0424" ownerguid="25da20bf-f0ad-46d9-9701-645654d31ba9"> -<Form> -<AUni ws="qvm-x-ach">tröpaza</AUni> -<AUni ws="qvm-x-acl">tröpaza</AUni> -<AUni ws="qvm-x-akh">tröpaza</AUni> -<AUni ws="qvm-x-akl">tröpaza</AUni> -<AUni ws="qvm-x-ame">tröpaza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="a36cc977-4a0d-4a5a-a8a2-b23ff99846d2" ownerguid="4b2815e4-adec-488b-996b-45df6bdadc33"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="a36f7683-c5e1-4417-9d38-3180a515facc" ownerguid="ace212ed-d855-449c-a447-ac515e635a65"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="a370aa5c-290b-4b03-a827-7a5f707fc846"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">temblor</AUni> -<AUni ws="qvm-x-acl">temblor</AUni> -<AUni ws="qvm-x-akh">temblor</AUni> -<AUni ws="qvm-x-akl">temblor</AUni> -<AUni ws="qvm-x-ame">temblor</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+temblor</AUni> -<AUni ws="qvm-x-acl">+temblor</AUni> -<AUni ws="qvm-x-akh">+temblor</AUni> -<AUni ws="qvm-x-akl">+temblor</AUni> -<AUni ws="qvm-x-ame">+temblor</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.855" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="efbfdfe1-d5e0-4db2-8744-196c0ed0f6ba" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+temblor</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="14436a76-f030-4651-8f17-6f1acd27420d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9ba710c8-5264-46c7-af49-3678cc6a3e86" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +temblor 
\entryTyp root 
\gENG earthquake 
\gSPN temblor 
\e +temblor 
\c N0 
\mp +FinalC 
\ach temblor 
\akh temblor 
\acl temblor 
\akl temblor 
\ame temblor</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a37448c3-7461-486b-b16e-55acdf55f3c2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">litsi</AUni> -<AUni ws="qvm-x-acl">litsi; litse</AUni> -<AUni ws="qvm-x-akh">litsi</AUni> -<AUni ws="qvm-x-akl">litsi; litse</AUni> -<AUni ws="qvm-x-ame">litsi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llichi</AUni> -<AUni ws="qvm-x-acl">*llichi</AUni> -<AUni ws="qvm-x-akh">*llichi</AUni> -<AUni ws="qvm-x-akl">*llichi</AUni> -<AUni ws="qvm-x-ame">*llichi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.194" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7c0e1331-2815-4683-9955-032aa7c2f8df" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llichi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f2c3e627-9f69-4bb0-9540-403ee5a3106c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8f60fb41-eed6-42d5-b95f-4b45f15d64a5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llichi 
\entryTyp root 
\gENG crack 
\gSPN partir 
\e *llichi 
\c V1 
\mp +FinalI 
\ach litsi 
\akh litsi 
\acl litsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl litse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl litsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl litse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame litsi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a374c677-3d81-423f-928f-57d2eab6f9d4" ownerguid="0a3585ec-0b89-4307-bf04-aa0a7038b6b3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a377583d-b269-4eb0-a279-c933609656fd" ownerguid="498f9806-fcc4-4bbc-bbaa-26dd1002ac8d"> -<Form> -<AUni ws="qvm-x-ach">cära</AUni> -<AUni ws="qvm-x-acl">cära</AUni> -<AUni ws="qvm-x-akh">cära</AUni> -<AUni ws="qvm-x-akl">cära</AUni> -<AUni ws="qvm-x-ame">cära</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a377fc98-d3fe-4c74-a667-6b4b22d10c94" ownerguid="7d111356-e04e-4891-960c-2f35147eba82"> -<ExampleWords> -<AUni ws="en">call, name, rename</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to giving something a name?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a378735f-986b-445f-81d6-3a65d0c374a5" ownerguid="32ee64a8-b693-4a7f-a8a0-55304ebe5c7b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a37a36f7-91ad-43f1-b063-513def235876" ownerguid="101c16f8-ec76-4ec7-895a-fd814fef51dd"> -<ExampleWords> -<AUni ws="en">hygiene, immunization, immunize, inoculate, inoculation, vaccinate, vaccination</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words refer to preventing disease?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a37a7f06-4b86-4af7-8262-f5c8c810f08c" ownerguid="191ca5a5-0a67-426e-adfc-6fdf7c2aaa2c"> -<ExampleWords> -<AUni ws="en">bungalow, mansion, duplex, apartment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What kinds of houses are there?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a37c69fe-cd2f-4ecd-9fbc-effdc8177033" ownerguid="61c8829c-027a-422d-857a-a656684a8a1b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mister</AUni> -<AUni ws="es">señor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bee93917-a0f7-4d9e-9b30-a6a8623b297a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="a37d219b-b791-482f-80af-99377e0fc8b5" ownerguid="88239bd1-1eec-4fa5-8bc9-2e2d59bda62a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="a3843af8-0a6b-4a00-bb36-c78fb72ea3af" ownerguid="69da6101-b9e3-42c5-92ff-fe6091c9f833"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a3849a1d-6eec-465f-a59a-44a57469eb2a" ownerguid="85f211ae-cc16-4042-8c27-e99ff8f01f61"> -<ExampleWords> -<AUni ws="en">charity, donation, handout</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to something that is given to poor people?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a3874e81-d550-4db1-8f35-ac3a1c7c4659" ownerguid="2f20e2a5-9e6b-4c6a-a7e5-3c4e64c35d14"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="a387caa2-ccba-430a-96a1-09f6b233ab19"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bro:ma</AUni> -<AUni ws="qvm-x-acl">bro:ma</AUni> -<AUni ws="qvm-x-akh">bro:ma</AUni> -<AUni ws="qvm-x-akl">bro:ma</AUni> -<AUni ws="qvm-x-ame">bro:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bromear</AUni> -<AUni ws="qvm-x-acl">+bromear</AUni> -<AUni ws="qvm-x-akh">+bromear</AUni> -<AUni ws="qvm-x-akl">+bromear</AUni> -<AUni ws="qvm-x-ame">+bromear</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.981" /> -<DateModified val="2022-10-10 21:18:47.215" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="13328071-fced-4c92-8204-494cd1066b5b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bromear</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7f5d13bc-ab85-4c40-8503-6d36c5b66050" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7f0f77fd-8996-4ed4-a896-44b0a8580146" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bromear 
\entryTyp root 
\gENG 
\gSPN 
\e +bromear 
\c V1 
\mp +assimilated 
\ach bro:ma 
\akh bro:ma 
\acl bro:ma 
\akl bro:ma 
\ame bro:ma 
\i PRO 26.18,19 Löcu runa lutala pitapis flëchagnogmi caycan amïgunta lulaparcur brömapagcunaga.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a3897851-d722-47f5-ab83-9f01b81e9b05" ownerguid="b044e890-ce30-455c-aede-7e9d5569396e"> -<ExampleWords> -<AUni ws="en">starlit (sky), (sky is) ablaze with stars, starry (sky), star studded (sky), stars are shining</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe the sky when the stars are shining?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a38f237b-d629-42c4-8010-d843f7374e9c" ownerguid="1ff743cb-49e0-483d-8a1d-4603a7d6c395"> -<ExampleWords> -<AUni ws="en">reduce, lessen, relieve, ease, alleviate, deaden, dull, take the edge off, allay, mitigate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to reducing pain or a bad feeling?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a39484ac-b623-4d7e-9496-d7c97004a00d" ownerguid="9cef4229-fa1e-4cbc-92e7-f047d6e696a1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a394be8b-417e-4fba-84e4-5bd36bb18aa8" ownerguid="1ebdec50-63b7-4640-975d-4a46e9e1d7f1"> -<Form> -<AUni ws="qvm-x-ach">yä</AUni> -<AUni ws="qvm-x-acl">yä</AUni> -<AUni ws="qvm-x-akh">yä</AUni> -<AUni ws="qvm-x-akl">yä</AUni> -<AUni ws="qvm-x-ame">yä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="a3953a29-b9c0-4415-bd66-c21f09ba6a47" ownerguid="393b5f04-972d-41e2-89b7-d08b3dd3ae70"> -<Form> -<AUni ws="qvm-x-ach">llävi</AUni> -<AUni ws="qvm-x-acl">llävi; lläve</AUni> -<AUni ws="qvm-x-akh">llävi</AUni> -<AUni ws="qvm-x-akl">llävi; lläve</AUni> -<AUni ws="qvm-x-ame">llävi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="a397202a-c08f-461b-8786-77a8a8e2e266"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">pasaptin</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="a39eb1aa-f40e-45e6-91a6-c84ce391028c" ownerguid="302ab46f-eda4-4df3-b4c3-6b11bc645c32"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="a39f772c-3e5b-48b6-b7bc-e8b00c6208ac"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">muñica</AUni> -<AUni ws="qvm-x-acl">muñica</AUni> -<AUni ws="qvm-x-akh">muñica</AUni> -<AUni ws="qvm-x-akl">muñica</AUni> -<AUni ws="qvm-x-ame">muñica</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+muñeca</AUni> -<AUni ws="qvm-x-acl">+muñeca</AUni> -<AUni ws="qvm-x-akh">+muñeca</AUni> -<AUni ws="qvm-x-akl">+muñeca</AUni> -<AUni ws="qvm-x-ame">+muñeca</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.497" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1dab46d7-a247-40f9-af59-ba729f690256" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+muñeca</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e897efaa-f4e5-4bb3-82b5-53d7a443aafd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d54d07d6-be72-4309-91d5-c49f172e22da" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +muñeca 
\entryTyp root 
\gENG doll 
\gSPN muñeca 
\e +muñeca 
\c N0 
\ach muñica 
\akh muñica 
\acl muñica 
\akl muñica 
\ame muñica</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a39fec65-5ada-4bf8-b219-93ba7d47ff87"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">purificación</AUni> -<AUni ws="qvm-x-acl">purificación</AUni> -<AUni ws="qvm-x-akh">purificación</AUni> -<AUni ws="qvm-x-akl">purificación</AUni> -<AUni ws="qvm-x-ame">purificación</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+purificación</AUni> -<AUni ws="qvm-x-acl">+purificación</AUni> -<AUni ws="qvm-x-akh">+purificación</AUni> -<AUni ws="qvm-x-akl">+purificación</AUni> -<AUni ws="qvm-x-ame">+purificación</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.12" /> -<DateModified val="2022-10-10 21:18:47.197" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="09b688ef-0a24-491a-b447-7c0bc8472c1c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+purificación</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d8e1a4a5-f1bd-4b2f-9aed-13944bae58f5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1eeb6be6-0578-42d4-8555-83f1cfb1b540" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +purificación 
\entryTyp root 
\gENG 
\gSPN 
\e +purificación 
\c NOSUFF 
\ach purificación 
\akh purificación 
\acl purificación 
\akl purificación 
\ame purificación</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a3a031f2-6b73-4704-9ede-7e00a5755b91" ownerguid="14954a0f-5c8a-4680-90b0-53398bd3a2a7"> -<ExampleWords> -<AUni ws="en">unapparent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that is not easily known?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a3a107c5-f625-4729-b508-1fbb2f3c2c46" ownerguid="bf5352cf-3507-441b-9a6e-9a9ae2d4bf97"> -<Form> -<AUni ws="qvm-x-ach">micu</AUni> -<AUni ws="qvm-x-acl">micu</AUni> -<AUni ws="qvm-x-akh">miku</AUni> -<AUni ws="qvm-x-akl">miku</AUni> -<AUni ws="qvm-x-ame">miku</AUni> -</Form> -<IsAbstract val="True" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<StemName> -<objsur guid="ee11e7e3-3838-48c4-88ec-3815091bab33" t="r" /> -</StemName> -</rt> -<rt class="LexSense" guid="a3a1cd1f-b7b1-4a22-8dcd-2849ec8bc276" ownerguid="a312b997-99c7-4b9c-bc3c-3022f4b11091"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="63d02647-9500-4696-9ff8-9f2bc467323b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a3a69edd-d639-4313-9828-6052cf3297b0" ownerguid="60dc7cf6-0a41-4cd3-99a6-0b7a71488e7e"> -<ExampleWords> -<AUni ws="en">get someone down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to causing someone to feel bad?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a3a7ff6b-3928-4bae-9fbf-e71fa5087d95" ownerguid="9451e323-1237-45b4-8277-6f7089e5a0ec"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">coffee</AUni> -<AUni ws="es">café</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f4a55c88-3300-46d1-89be-0ef20996c836" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a3a95572-f54c-4d49-b138-c671d55e6cd5" ownerguid="55d09bf0-d8ce-463d-a471-0614b737f739"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="2fed386b-57c6-449b-97f7-b4ddaedbf2de" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">sharp</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="669bb1b1-05d4-400c-8556-0277a7192f1e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a3a9ce7e-d3df-462d-940d-802ec59b50e6" ownerguid="ccbbd16f-58c5-45c1-bfff-1fba64d9740e"> -<ExampleWords> -<AUni ws="en">initiator, founder, originator, starter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(18) What is a person called who starts something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a3ac2a2f-d5b9-48ae-a3aa-85bdfab73473"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">turwa</AUni> -<AUni ws="qvm-x-acl">turwa</AUni> -<AUni ws="qvm-x-akh">turwa</AUni> -<AUni ws="qvm-x-akl">turwa</AUni> -<AUni ws="qvm-x-ame">turwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+turbarse.2</AUni> -<AUni ws="qvm-x-acl">+turbarse.2</AUni> -<AUni ws="qvm-x-akh">+turbarse.2</AUni> -<AUni ws="qvm-x-akl">+turbarse.2</AUni> -<AUni ws="qvm-x-ame">+turbarse.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.17" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="751bfa8c-e13b-4425-9e26-f42b8be28cc7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+turbarse.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7b0aa329-eb59-418d-ace0-c0a5a2874941" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d69de8d4-386a-4dae-9c54-2ff558df2117" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +turbarse.2 
\entryTyp root 
\gENG worry 
\gSPN preocuparse 
\e +turbarse.2 
\c V1 
\mp +assimilated 
\ach turwa 
\akh turwa 
\acl turwa 
\akl turwa 
\ame turwa 
\i PSA 46.10 Ama turwapäcuytsu.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a3adf82b-af09-43b2-a593-e4a4d58e2b9d" ownerguid="1cb79293-d4f7-4990-9f50-3bb595744f61"> -<ExampleWords> -<AUni ws="en">heart, breast, emotions, emotional makeup, feeling, feelings, sensitivity, gut</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the part of a person that feels?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a3b6bda9-863e-4e44-98fb-8812df75ccea" ownerguid="62a7eac8-a0b8-44ba-a4bb-dfefefdbd216"> -<Form> -<AUni ws="qvm-x-ach">gasma</AUni> -<AUni ws="qvm-x-acl">gasma</AUni> -<AUni ws="qvm-x-akh">qasma</AUni> -<AUni ws="qvm-x-akl">qasma</AUni> -<AUni ws="qvm-x-ame">qasma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="a3ba10f3-66e3-4ad5-8057-453b8941e497" ownerguid="f7da1907-e6c5-4d21-a8e8-81376f3467df"> -<Abbreviation> -<AUni ws="en">4.8.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.284" /> -<DateModified val="2022-9-23 16:55:8.284" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to war--fighting between countries.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>39 Hostility, Strife; 55 Military Activities</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">War</AUni> -</Name> -<OcmCodes> -<Uni>720 War; 726 Warfare; 721 Instigation of War; 722 Wartime Adjustments; 723 Strategy; 724 Logistics; 725 Tactics; 727 Aftermath of Combat; 729 War Veterans</Uni> -</OcmCodes> -<Questions> -<objsur guid="22d0be6c-8093-4e9e-be0f-df09e714fc3b" t="o" /> -<objsur guid="18c4655f-4ea5-4faf-b72d-05b99e36b986" t="o" /> -<objsur guid="1978d8d8-09ad-4a01-88fb-01ecc5e5da5a" t="o" /> -<objsur guid="8126caa2-bdd4-4e06-9460-b158da164a29" t="o" /> -<objsur guid="5469b10f-e4ac-4641-aafe-ee736748cdbb" t="o" /> -<objsur guid="3d5324e9-9822-4ab7-b03c-d94399f2923b" t="o" /> -<objsur guid="7811ecd7-a6dc-44b5-8f9c-4d7771b0fd9d" t="o" /> -<objsur guid="3d2b3054-4fe6-42c5-950a-7e35c82ce197" t="o" /> -<objsur guid="dbd3a64f-907d-44ec-a029-dcaf357a841d" t="o" /> -<objsur guid="66de3ce4-1947-403a-acdc-8cdc3a68473a" t="o" /> -<objsur guid="5de4e9d2-d8fd-4fb5-b29c-2fdf433dd044" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="225c48dd-9fc2-4467-944f-16a098b4e518" t="o" /> -<objsur guid="c8595a5f-4dde-4260-b8d8-265d0554ce93" t="o" /> -<objsur guid="17102138-b97a-4f1d-81bc-9be4af90889e" t="o" /> -<objsur guid="8a5c87ad-2d15-40c2-9f15-d7942ac80261" t="o" /> -<objsur guid="21461d78-02f9-4be6-80e3-6a4498ce8f4c" t="o" /> -<objsur guid="f595deab-1838-4ddb-9ebe-55fb3007b309" t="o" /> -<objsur guid="738a09a5-59df-40f9-8a4e-176e00d03bbf" t="o" /> -<objsur guid="3615c3d1-fd5b-40c5-80ad-80bfd6451d56" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="a3ba23d2-618e-4618-af18-9befae2f888b" ownerguid="66d8b546-92f5-4e94-b992-08be81c3d30c"> -<Abbreviation> -<AUni ws="en">7.7.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.549" /> -<DateModified val="2022-9-23 16:55:8.549" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to grinding--to rub something rough against something else, while applying force, in order to break it or remove its surface.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Grind</AUni> -</Name> -<Questions> -<objsur guid="15bced48-c71e-404d-968c-bef230e147e9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="a3bc1fbd-9f2f-4a9d-ae6e-7b02da8a05b4" ownerguid="efe8e7b5-e008-4a3a-b3e1-23ae03a0083e"> -<Abbreviation> -<AUni ws="en">6.7.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to poking tools--tools used to make holes in things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Poking tool</AUni> -</Name> -<Questions> -<objsur guid="a86a6876-95b8-477e-8e14-9ab4ae8e9a50" t="o" /> -<objsur guid="2b9f692f-ff54-44fa-90a3-8d2a815c7e71" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="a3bd0dd3-aaa0-449b-8fc3-05967b001cb3" ownerguid="cba3b774-c8be-441f-ae3f-f3d6c83e5274"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">son</AUni> -<AUni ws="es">hijo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0eb9ad89-62b1-4032-a9a0-66d396ddb503" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a3be9ea1-c49a-4983-b0c4-80d8dc879aec" ownerguid="e704c2e1-c9af-456e-aa2a-12b51a5d4814"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">enferm.de.piel</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1ff9b53b-68ca-40d1-8cf0-f7fab9e91cb4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a3c59ae6-1cc7-4fe0-b4d2-8a7bd720b152" ownerguid="bf15e14a-a265-4dff-a2b9-6f36db0f54c0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="2e35e409-5397-40d2-99f9-9770ba588552" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="bfee8816-e042-45dc-ad67-dc6f4bb0cb06" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a3c61773-dc65-4dc5-830f-6f921f3524ba"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">respe:tu</AUni> -<AUni ws="qvm-x-acl">respe:tu; respe:tu; respe:to</AUni> -<AUni ws="qvm-x-akh">respe:tu</AUni> -<AUni ws="qvm-x-akl">respe:tu; respe:tu; respe:to</AUni> -<AUni ws="qvm-x-ame">respe:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+respeto</AUni> -<AUni ws="qvm-x-acl">+respeto</AUni> -<AUni ws="qvm-x-akh">+respeto</AUni> -<AUni ws="qvm-x-akl">+respeto</AUni> -<AUni ws="qvm-x-ame">+respeto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.338" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4ee0229d-2c66-4287-911e-3bbaea963680" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+respeto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="440bea58-d5df-486c-b3e2-bade7bef9cb6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="28930ff3-7396-4454-8135-5508b62e3986" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +respeto 
\entryTyp root 
\gENG respect 
\gSPN respeto 
\e +respeto 
\c N0 
\ach respe:tu 
\akh respe:tu 
\acl respe:tu / _# 
\acl respe:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl respe:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl respe:tu / _# 
\akl respe:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl respe:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame respe:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="a3c6d426-590f-405d-9033-9458cb60faee" ownerguid="e1a431ea-cae6-4d17-b2ff-4fdadf59c1b3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">waga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">waga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">waqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">waqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">waqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d100a60e-40fa-45d4-8643-92375fc3d00c" t="r" /> -</Morph> -<Msa> -<objsur guid="dae1adcc-bc09-4a2e-8fca-8dd1fcb23810" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="a3c88264-3855-46ee-a082-250f32bf4602" ownerguid="2a2af155-9db9-41c5-860a-fe0a3a09d6de"> -<ExampleWords> -<AUni ws="en">thinker, brain, intellectual, philosopher</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words refer to a person who thinks a lot?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="a3ca2a31-259e-4e15-9696-75b0c81886e9" ownerguid="080bf07b-e58b-4a75-bb97-84d980a143f0"> -<Abbreviation> -<AUni ws="en">8.3.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.599" /> -<DateModified val="2022-9-23 16:55:8.599" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to being straight.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79Q Straight, Crooked</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Straight</AUni> -</Name> -<Questions> -<objsur guid="b4ba4a4d-aaa1-415b-ac74-be98633dc0e6" t="o" /> -<objsur guid="5cf3fe35-ee5a-4974-8236-d246033cf297" t="o" /> -<objsur guid="80470c0d-5403-45fe-b0c3-5171a2209e3d" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="61f40376-729d-4d99-894f-06c5689a06ac" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="a3ca4c7d-7c78-4e4a-a4bf-1526dcc58d0f" ownerguid="6c34ed1c-189e-4f74-bd48-58fc5bad6b5b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">snot</AUni> -<AUni ws="es">moco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8a64b3a7-e527-4e34-b6f0-06fe00cb1d85" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a3cb8a0a-99b7-40b3-9297-2a7eb51f0b7d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsunu</AUni> -<AUni ws="qvm-x-acl">tsunu; tsunu; tsuno</AUni> -<AUni ws="qvm-x-akh">tsunu</AUni> -<AUni ws="qvm-x-akl">tsunu; tsunu; tsuno</AUni> -<AUni ws="qvm-x-ame">tsunu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chuñu</AUni> -<AUni ws="qvm-x-acl">*chuñu</AUni> -<AUni ws="qvm-x-akh">*chuñu</AUni> -<AUni ws="qvm-x-akl">*chuñu</AUni> -<AUni ws="qvm-x-ame">*chuñu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.345" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bfc3effa-235d-4041-a825-ec312f0e8950" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chuñu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="65d15ae8-135a-4faa-bb34-ec0336d84fcc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ae690164-adf1-47cf-9237-5d912557efde" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chuñu 
\entryTyp root 
\gENG dried.potatoes 
\gSPN papas.secas 
\e *chuñu 
\c N0 
\ach tsunu 
\akh tsunu 
\acl tsunu / _# 
\acl tsunu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tsuno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsunu / _# 
\akl tsunu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tsuno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsunu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a3ccb9f6-445e-4ec2-8cb5-f9708a07b500" ownerguid="f144e812-3c2f-49e5-a07a-54be78e9dec4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a3cf0836-48b6-4347-b17f-979bab39baad" ownerguid="2810998c-d6cc-47a3-a946-66d0986a2767"> -<ExampleWords> -<AUni ws="en">shift, free, release</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to moving something that is difficult to move?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a3cf3969-db64-4fed-b252-d17892b77358" ownerguid="f5a16170-3ccc-475a-be46-370c7b82dfd5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="a3d09a61-ccca-4b8a-aa05-a9da2453d4ad" ownerguid="641c0fe9-e019-433f-8d77-e80584d03dc5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gloves</AUni> -<AUni ws="es">guantes</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1ff49b50-5e49-40c3-8542-c4d8a5846e86" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a3d233e4-605f-412f-9fda-bed40f7494ff" ownerguid="1ff743cb-49e0-483d-8a1d-4603a7d6c395"> -<ExampleWords> -<AUni ws="en">decrease, fall, go down, come down, slide, diminish, contract, shrink, lessen, reduce, reduction, depreciate, lose, narrow, slow down, abate, peter out, tail off, waste away</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to something decreasing in number or amount?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="a3d34285-ff0f-4cd2-9aac-3bdc8c4f5b0e" ownerguid="fa0c4030-a408-4b46-b248-e2fa3ad2baf4"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Cananmi itsanga tsapuycushcä punuycagta.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="a3d77077-aadf-4d65-9791-ee883d3aa129" ownerguid="510d5c78-1d23-441a-9f3f-25c2b251ac8f"> -<Form> -<AUni ws="qvm-x-ach">acra</AUni> -<AUni ws="qvm-x-acl">acra</AUni> -<AUni ws="qvm-x-akh">akra</AUni> -<AUni ws="qvm-x-akl">akra</AUni> -<AUni ws="qvm-x-ame">akra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="a3d79707-26e9-48f1-850f-d9b53a8d3bca" ownerguid="c6c07195-164d-402e-9612-adf8d18dc3b2"> -<Form> -<AUni ws="qvm-x-ach">toldëra</AUni> -<AUni ws="qvm-x-acl">toldëra</AUni> -<AUni ws="qvm-x-akh">toldëra</AUni> -<AUni ws="qvm-x-akl">toldëra</AUni> -<AUni ws="qvm-x-ame">toldëra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a3d94743-abc3-4c6c-8430-dcf9c47650f9" ownerguid="adc91699-7e9d-410e-a513-5f24cff284bd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cat</AUni> -<AUni ws="es">gato</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="84db17f9-8259-488e-99c0-10c7c3639d7a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="a3d95c6a-4b0b-4af0-aca8-addd042becd2" ownerguid="57225f57-ba51-45d7-b6d2-b22052877ea4"> -<Abbreviation> -<AUni ws="en">4.2.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.217" /> -<DateModified val="2022-9-23 16:55:8.217" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to playing and fun.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Play, fun</AUni> -</Name> -<Questions> -<objsur guid="142d11f6-fa58-4c2f-8574-36993a48a409" t="o" /> -<objsur guid="84ee6296-6f43-4d83-8777-caf8d1d52ac0" t="o" /> -<objsur guid="facb697c-5378-43fb-b0b0-e0d77116955f" t="o" /> -<objsur guid="3ce20fa4-6e9e-4423-9897-595137856c59" t="o" /> -<objsur guid="bbfa18f3-4d6f-4032-975e-ffbce84294b4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="a3d9ba1e-5cec-46d8-88f4-a39737de61d4" ownerguid="fec02498-8d8f-4213-afa3-426351ee3b38"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a3e22a57-4e32-4284-b70e-67e2c5acbbac" ownerguid="e28a8997-c1de-489b-9e34-d81a2349a530"> -<Form> -<AUni ws="qvm-x-ach">erïzu</AUni> -<AUni ws="qvm-x-acl">erïzu; erïzu; erïzo</AUni> -<AUni ws="qvm-x-akh">erïzu</AUni> -<AUni ws="qvm-x-akl">erïzu; erïzu; erïzo</AUni> -<AUni ws="qvm-x-ame">erïzu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="a3e905b8-107b-4311-bb50-0abe151131b3" ownerguid="8383b4cb-e14a-4d04-a8c3-9c5276384953"> -<Abbreviation> -<AUni ws="en">3.3.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.121" /> -<DateModified val="2022-9-23 16:55:8.121" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to giving someone permission to do something. This domain is about a scenario: You have authority over me. I want to do something. I ask you for permission to do it. You give permission or refuse permission.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>37C Exercise Authority</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Give permission</AUni> -</Name> -<Questions> -<objsur guid="7f28f00a-32b5-4a4b-be7d-e46c5bcf8e2c" t="o" /> -<objsur guid="9e17c31b-744b-42d8-b7c1-1efa84d7b194" t="o" /> -<objsur guid="0c2ce541-ebee-4487-9c87-cd04df65c0f4" t="o" /> -<objsur guid="bb8a9a17-5e39-43d1-84cb-07c1475f1d0a" t="o" /> -<objsur guid="c6a30190-65b0-4db7-b7a9-63efea6f0e1b" t="o" /> -<objsur guid="29635548-a894-4138-802b-c4198791dd0a" t="o" /> -<objsur guid="7c6c5c85-4a74-4ead-9b83-8a8d8afc82d9" t="o" /> -<objsur guid="de5ab4e2-acca-421b-9b26-043b257e4dad" t="o" /> -<objsur guid="2be1f037-ef82-4b65-8f6d-c96df837b009" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="a3e984a5-2339-4f5e-8f6b-a400898acfa7" ownerguid="a7ad13d3-e658-4b2a-beb4-18c6758a787b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="fb1dffab-1c58-4347-a3de-dfc4b80b27c3" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="5d1053cd-a135-434b-9335-fb12b286508f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a3ee2e46-9e30-4650-9371-e7327940ec7e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">acra</AUni> -<AUni ws="qvm-x-acl">acra</AUni> -<AUni ws="qvm-x-akh">akra</AUni> -<AUni ws="qvm-x-akl">akra</AUni> -<AUni ws="qvm-x-ame">akra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*akra.r</AUni> -<AUni ws="qvm-x-acl">*akra.r</AUni> -<AUni ws="qvm-x-akh">*akra.r</AUni> -<AUni ws="qvm-x-akl">*akra.r</AUni> -<AUni ws="qvm-x-ame">*akra.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.687" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="044ea536-0865-4553-8963-aeec22058b1d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*akra.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ecdcef1c-160e-4f28-adca-9685ca9dd2f2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ad137682-d3bd-4a9a-ad2d-b4a83dd2136a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *akra.r 
\entryTyp root 
\gENG selecting 
\gSPN escogiendo 
\e *akra.r 
\c R0 
\ach acra 
\akh akra 
\acl acra 
\akl akra 
\ame akra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="a3ef2fcf-3a82-4e4b-b295-3bbbd5f56502" ownerguid="483a342d-2cab-40ab-a1af-dc2693735ef6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ability</AUni> -<AUni ws="es">habilidad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3fc4d3f0-d6ed-49e8-94a5-4976818a7c0d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="a3f1d702-8ca1-457a-a569-eb6fdf696bbe" ownerguid="541dfa10-bf97-4713-a534-9cbcc7f66bc9"> -<Abbreviation> -<AUni ws="en">3.2.5.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.103" /> -<DateModified val="2022-9-23 16:55:8.103" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to approving of doing something--to think that doing something is good.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Approve of something</AUni> -</Name> -<Questions> -<objsur guid="fc415557-4e6c-4864-8fd4-e3049af48379" t="o" /> -<objsur guid="dfd5223e-4ee7-43e2-a2e8-d6ea5dd49a9c" t="o" /> -<objsur guid="1589ffbc-07fe-4803-9c1c-66ca9236e056" t="o" /> -<objsur guid="5d183e37-24ae-4993-b260-8c045c929abe" t="o" /> -<objsur guid="1e728019-7349-4d3a-8a6e-0fd990c69735" t="o" /> -<objsur guid="fec9efcd-bdd4-41e9-8151-030ba1114180" t="o" /> -<objsur guid="81ded310-40bc-4f38-ba92-b0abb8141364" t="o" /> -<objsur guid="f65fbb2d-c1b9-48e9-8cc1-ee62acab4f26" t="o" /> -<objsur guid="79bb92d1-f19f-42d9-aa28-dc47b13f28bf" t="o" /> -<objsur guid="b0234665-576d-46ec-b612-87e4e58d66c8" t="o" /> -<objsur guid="8d60ee0c-dccb-4600-9559-586ba2f0144d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="a3f3325d-2c1f-41fc-bbff-bd1a593ea448" ownerguid="f7fcd1ee-4863-4a86-ad9d-3b2c9e444010"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="a3f5a51d-403d-48e9-9891-dbe3eb2ff776" ownerguid="effc49dd-6322-4302-899c-4cf540f0e2e4"> -<ExampleWords> -<AUni ws="en">sack lunch, picnic lunch, dried food, C-rations, fast food</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What foods are eaten away from home (for instance on a journey or at work)?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a3f5e076-f088-4c9a-a4fa-3a6664237f32" ownerguid="c7b0a9cd-3c78-4567-8ac5-aa32e75e1fb3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="a3f849e7-c6c0-4af8-99f4-7b4493cafee9" ownerguid="560b3b04-316e-4326-b298-621a7b0a5fe9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="dac89bb4-898b-49cb-8057-04ff7f391c78" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="f49a886b-6e00-4d39-bbdb-a8597049d9a8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a3f903ec-95f8-47a1-8c17-5833ba1257d3" ownerguid="313a65bf-450f-48da-8903-a43247f1a5f8"> -<ExampleWords> -<AUni ws="en">opening, hole, aperture</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to an opening?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="a3fb18fd-befb-493f-8a19-760883ed9697" ownerguid="d0dee676-f3ae-43cc-96f1-7e3bb65870f5"> -<Abbreviation> -<AUni ws="en">8.2.7.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.599" /> -<DateModified val="2022-9-23 16:55:8.599" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to being wedged in or stuck in a hole.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Wedged in, stuck</AUni> -</Name> -<Questions> -<objsur guid="e3c65ef0-b110-4211-b45e-bc590b84644a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="a3fe0ca2-64fe-44db-ac3f-14513385bc25" ownerguid="d502512c-966b-4752-8636-716fb29facfe"> -<Abbreviation> -<AUni ws="en">5.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.337" /> -<DateModified val="2022-9-23 16:55:8.337" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to going to bed and going to sleep.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Go to sleep</AUni> -</Name> -<Questions> -<objsur guid="716d77dc-e8e3-421c-8255-3bdd9f7a8a10" t="o" /> -<objsur guid="55a2846c-efed-44da-af23-003132a57fed" t="o" /> -<objsur guid="be0cbb29-5628-4e91-a0f7-cd6fd13f446a" t="o" /> -<objsur guid="b5bee285-5929-4ab2-ab42-cf468ed574c1" t="o" /> -<objsur guid="67a83eef-37c9-4b4e-968b-2dc52167b75b" t="o" /> -<objsur guid="ef94e0f3-bb37-4cc3-8fcd-aef859192d91" t="o" /> -<objsur guid="8560714d-6545-4c44-88fa-64bf65853ea3" t="o" /> -<objsur guid="f3bd21c2-349b-43e8-bc69-c864f1d35118" t="o" /> -<objsur guid="76a4a678-80b0-40c1-9856-5b2b6f501067" t="o" /> -<objsur guid="2e515f58-df56-4b97-8d84-706693496b6d" t="o" /> -<objsur guid="1b62d9dc-4cc2-4056-85ee-d8d18473b353" t="o" /> -<objsur guid="24b94b1c-9eea-41f7-a044-348ad9a259c5" t="o" /> -<objsur guid="2dffbfef-b1ab-4570-84aa-a5ba20254073" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="a40357cf-676f-43bf-b3c8-a03b99d41126" ownerguid="59a95939-44d7-4396-9ef7-3a80c17e9fb1"> -<ExampleWords> -<AUni ws="en">damn, damn it, God damn, Hell, shit, screw, fuck, bastard, son of a bitch, bitch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used in an obscene way?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a405c6ab-c3aa-4227-b5c1-968e8b16f9e0" ownerguid="bb79da61-088b-4bee-bbd3-72d8686b8878"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a408dd52-a745-4eac-935e-ab5d84e7476a" ownerguid="cb99a086-8c6d-4f90-81db-6afa69ae5455"> -<ExampleWords> -<AUni ws="en">roar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What sounds do crocodiles make?</AUni> -</Question> -</rt> -<rt class="MoInflAffMsa" guid="a40909fa-461f-42f5-8d0b-c089ff6c7753" ownerguid="88843228-3d25-4192-af4b-b368a7803382"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="6c1a55b7-decb-4da3-86ca-e0b8dc1a89c0" t="r" /> -</Slots> -</rt> -<rt class="LexExampleSentence" guid="a409796c-e3ea-41a7-a032-e61207dec8ee" ownerguid="078d3b66-d501-4f57-849b-e0c4925ce416"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Shegilatami cafëta upuycan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="a40ea667-1d58-4511-8f02-0ce11a010bfa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">anili:na</AUni> -<AUni ws="qvm-x-acl">anili:na</AUni> -<AUni ws="qvm-x-akh">anili:na</AUni> -<AUni ws="qvm-x-akl">anili:na</AUni> -<AUni ws="qvm-x-ame">anili:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+anilina</AUni> -<AUni ws="qvm-x-acl">+anilina</AUni> -<AUni ws="qvm-x-akh">+anilina</AUni> -<AUni ws="qvm-x-akl">+anilina</AUni> -<AUni ws="qvm-x-ame">+anilina</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.769" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7f61fbdc-b5f0-46b1-88cb-4614ab345abd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+anilina</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e6391ac1-f4f8-4f32-9899-7a0a6048f542" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c08cd523-eb7c-485a-9a60-b39faeb9ea21" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +anilina 
\entryTyp root 
\gENG dye 
\gSPN anilina 
\e +anilina 
\c N0 
\ach anili:na 
\akh anili:na 
\acl anili:na 
\akl anili:na 
\ame anili:na</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a410bb95-5ab1-4266-82dc-47a44aa7a92c" ownerguid="da15ff44-522b-4be6-bbfe-95b39d8e10c1"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="a413a5fc-030d-4be9-a9c2-7214de45c7da"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jawi</AUni> -<AUni ws="qvm-x-acl">jawi; jawe</AUni> -<AUni ws="qvm-x-akh">jawi</AUni> -<AUni ws="qvm-x-akl">jawi; jawe</AUni> -<AUni ws="qvm-x-ame">hawi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hawi</AUni> -<AUni ws="qvm-x-acl">*hawi</AUni> -<AUni ws="qvm-x-akh">*hawi</AUni> -<AUni ws="qvm-x-akl">*hawi</AUni> -<AUni ws="qvm-x-ame">*hawi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.690" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6562f564-a07d-41ce-aa4e-5fc5a887d8b7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hawi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fd667d83-70a2-4d50-b79c-873145aaf6b2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="687bd813-0ef8-45e4-9a58-8b3d505a8802" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hawi 
\entryTyp root 
\gENG implant 
\gSPN plantar 
\e *hawi 
\c V2 
\mp +FinalI 
\ach jawi 
\akh jawi 
\acl jawi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl jawe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jawi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jawe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hawi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a4158631-018a-4623-9db8-b9c54a1211ee" ownerguid="8b52a9d6-a07e-4ac8-8f84-6eb5ba578d97"> -<ExampleWords> -<AUni ws="en">burp, burp (n), belch, belch (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to burping?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a4186755-9079-4d66-82b1-abf0acf3086b" ownerguid="d55c32ac-bc49-4310-a943-ac4085d04815"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">star</AUni> -<AUni ws="es">estrella</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cf6e9acf-c9a9-468d-a4fe-9ea18e167e94" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a419d056-ce49-4c3b-b5ff-56fc3afe6740"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">muchi:la</AUni> -<AUni ws="qvm-x-acl">muchi:la</AUni> -<AUni ws="qvm-x-akh">muchi:la</AUni> -<AUni ws="qvm-x-akl">muchi:la</AUni> -<AUni ws="qvm-x-ame">muchi:la</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mochila</AUni> -<AUni ws="qvm-x-acl">+mochila</AUni> -<AUni ws="qvm-x-akh">+mochila</AUni> -<AUni ws="qvm-x-akl">+mochila</AUni> -<AUni ws="qvm-x-ame">+mochila</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.465" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9f6a6fcd-6b6a-4ffa-a896-621eaf12aba3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mochila</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b5fc08cc-68d5-47de-bfb0-24ccd87d0efa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="43015d9d-bf75-4099-9fd4-e3d44a652e09" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mochila 
\entryTyp root 
\gENG backpack 
\gSPN mochilla 
\e +mochila 
\c N0 
\ach muchi:la 
\akh muchi:la 
\acl muchi:la 
\akl muchi:la 
\ame muchi:la</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a41bc2dd-1cae-4c9d-b160-1cef755c581e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">necesariu; necesario</AUni> -<AUni ws="qvm-x-acl">necesariu; necesariu; necesario</AUni> -<AUni ws="qvm-x-akh">necesariu; necesario</AUni> -<AUni ws="qvm-x-akl">necesariu; necesariu; necesario</AUni> -<AUni ws="qvm-x-ame">necesariu; necesario</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+necesario</AUni> -<AUni ws="qvm-x-acl">+necesario</AUni> -<AUni ws="qvm-x-akh">+necesario</AUni> -<AUni ws="qvm-x-akl">+necesario</AUni> -<AUni ws="qvm-x-ame">+necesario</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.547" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="add0dd6b-99e9-418d-af6d-bcece8e30789" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+necesario</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d664b1eb-1815-4314-a4b1-93b251315cae" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fe218ad9-548f-4981-b7e5-77c11a607d8c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +necesario 
\entryTyp root 
\gENG necessary 
\gSPN necesario 
\e +necesario 
\c N0 
\ach necesariu / ~_# 
\ach necesario / _# 
\akh necesariu / ~_# 
\akh necesario / _# 
\acl necesariu / ~_# 
\acl necesariu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl necesario +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl necesariu / ~_# 
\akl necesariu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl necesario +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame necesariu / ~_# 
\ame necesario / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a420f6b1-41a1-469f-871b-8aa8f626d388" ownerguid="32fc19fd-a04e-4b69-9442-f7d57348ec55"> -<ExampleWords> -<AUni ws="en">milk, blood, meat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What do cows produce?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a420f780-a434-40e5-a6a0-bd50aeed0fc5" ownerguid="d72971a3-484c-431e-a2b9-9f1eba996c20"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a4271dca-63e2-4711-b5ae-7e8c95d73420" ownerguid="0b459857-2866-4fce-9f7e-bb69d723fe26"> -<Form> -<AUni ws="qvm-x-ach">macya</AUni> -<AUni ws="qvm-x-acl">macya</AUni> -<AUni ws="qvm-x-akh">makya</AUni> -<AUni ws="qvm-x-akl">makya</AUni> -<AUni ws="qvm-x-ame">makya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="a42aa891-e4fd-489e-b573-b9d20dfc5c2a" ownerguid="f950b7cc-fb85-4dbb-b8ca-934d38cae7fc"> -<Abbreviation> -<AUni ws="en">9.2.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain to list all phrase level conjunctions--conjunctions that join two words within a phrase.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Phrase conjunctions</AUni> -</Name> -<Questions> -<objsur guid="de430e53-7ea3-4031-adb4-50ccc4320a1d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="a42bd414-d390-4ccf-8200-6cd05a2c6243"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">falda</AUni> -<AUni ws="qvm-x-acl">falda</AUni> -<AUni ws="qvm-x-akh">falda</AUni> -<AUni ws="qvm-x-akl">falda</AUni> -<AUni ws="qvm-x-ame">falda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+falda</AUni> -<AUni ws="qvm-x-acl">+falda</AUni> -<AUni ws="qvm-x-akh">+falda</AUni> -<AUni ws="qvm-x-akl">+falda</AUni> -<AUni ws="qvm-x-ame">+falda</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.528" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f1810c37-e979-4461-8d8d-1b1f150095c9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+falda</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="875d274d-c259-4a3e-89ae-3bb28c79c633" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f0e7441a-9288-44bc-affb-354562072824" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +falda 
\entryTyp root 
\gENG skirt 
\gSPN falda 
\e +falda 
\c N0 
\ach falda 
\akh falda 
\acl falda 
\akl falda 
\ame falda</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a42c2d52-3f9d-4ddc-a0d4-839d8f2bf70a" ownerguid="fda0c1ac-5728-4ba2-9f8e-827f161b5bb1"> -<ExampleWords> -<AUni ws="en">watch, keep an eye</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to watching something for a long time, but not watching it all the time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a42c967a-f80f-4b97-8c1d-fcd4246ec56e" ownerguid="bc8d0ad4-6ebf-4fa0-bc7e-60e8ec9c43db"> -<ExampleWords> -<AUni ws="en">blink, wink, close, open, squint, open wide (in amazement), bat (eyelids), flutter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the eyelids moving?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="a42db5b4-6317-4d3f-beff-cb92dbaca914" ownerguid="df9ee372-e92e-4f73-aac5-d36908497698"> -<Abbreviation> -<AUni ws="en">3.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.101" /> -<DateModified val="2022-9-23 16:55:8.101" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to learning something, acquiring information, gaining knowledge (whether done intentionally or unintentionally), or discovering the answer to some question.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>27 Learn; 27A Learn</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Learn</AUni> -</Name> -<Questions> -<objsur guid="71c035d1-97a0-4895-a20e-8c0ec731a229" t="o" /> -<objsur guid="82b0990e-936b-48e1-9e71-41deaad77252" t="o" /> -<objsur guid="2e604b38-28c3-4b5a-bc36-216f4e341a07" t="o" /> -<objsur guid="8da44b52-71a4-47ec-b14d-684b3010d709" t="o" /> -<objsur guid="f10079d5-2c4c-498f-855e-383e29a3401e" t="o" /> -<objsur guid="1d66b9c2-d47c-4162-a27f-6d750e9e44c8" t="o" /> -<objsur guid="b81acce7-cb70-445e-bb37-93c432af45c3" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="f0e68d2f-f7b3-4722-80a4-8e9c5638b0d4" t="o" /> -<objsur guid="f39b14c4-52cf-4afa-956c-f0f5815ef6ac" t="o" /> -<objsur guid="167bfba5-0785-4bb5-a083-3ffbefa57897" t="o" /> -<objsur guid="f1af3f4c-6e0e-4cfa-adcf-9dcddf05feab" t="o" /> -<objsur guid="909a3113-88bc-470b-8d48-7c0d37966982" t="o" /> -<objsur guid="eac4b58e-1fd7-4ce1-9a68-c7516470e876" t="o" /> -<objsur guid="880647e5-6543-46dd-9178-8edae9272add" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="a42e883f-d50c-4b90-80b2-579c4f395d7d" ownerguid="f4aa9013-6ff2-43af-8b86-98fb80591271"> -<Form> -<AUni ws="qvm-x-ach">nunca</AUni> -<AUni ws="qvm-x-acl">nunca</AUni> -<AUni ws="qvm-x-akh">nunca</AUni> -<AUni ws="qvm-x-akl">nunca</AUni> -<AUni ws="qvm-x-ame">nunca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a42f2140-e40e-486c-b41f-412218a0e088"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rag</AUni> -<AUni ws="qvm-x-acl">rag</AUni> -<AUni ws="qvm-x-akh">raq</AUni> -<AUni ws="qvm-x-akl">raq</AUni> -<AUni ws="qvm-x-ame">raq</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.589" /> -<DateModified val="2022-10-16 15:10:10.466" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="07d433ff-c955-4479-a0a1-3b363d926e60" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">YET1a</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6dcb48c7-e583-4d11-8c06-4fb11a4f7d09" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="863f955f-9a33-47eb-b8c1-d220ea470dfd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx YET1a 
\entryTyp suffix 
\gENG YET 
\gSPN TDV 
\e YET1a 
\c N0/N0 V0/V0 R0/R0 ONSHEV/ONSHEV BN/BN 
\o 220 
\mp NeverForeshortened 
\ach rag 
\akh raq 
\acl rag 
\akl raq 
\ame raq 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a4308bec-981b-4711-880c-d5499b7cf082" ownerguid="cdf94156-faa3-4909-82d8-70b8d42cd7bd"> -<Form> -<AUni ws="qvm-x-ach">nïchu</AUni> -<AUni ws="qvm-x-acl">nïchu; nïchu; nïcho</AUni> -<AUni ws="qvm-x-akh">nïchu</AUni> -<AUni ws="qvm-x-akl">nïchu; nïchu; nïcho</AUni> -<AUni ws="qvm-x-ame">nïchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a4355894-ab4b-4f05-850d-66ce11affc7f" ownerguid="27ee8fbf-dec0-4435-879c-e4d91d1ec4f5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hook</AUni> -<AUni ws="es">azuela</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="98ffa023-ef13-4edf-b2ad-b513262e0a5a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="a43a1fd0-76fe-4a33-857c-488308eda802" ownerguid="a0e540c3-62e5-4765-93ca-7c0795d7e606"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a43bb4e3-1dde-4b49-81eb-d6edc3b3de87" ownerguid="ee407532-ebd4-4026-906d-08229667cbee"> -<Form> -<AUni ws="qvm-x-ach">viruta</AUni> -<AUni ws="qvm-x-acl">viruta</AUni> -<AUni ws="qvm-x-akh">viruta</AUni> -<AUni ws="qvm-x-akl">viruta</AUni> -<AUni ws="qvm-x-ame">viruta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="a43d5aed-cadf-4a82-9634-d6f26099fc92" ownerguid="f20ab82e-0875-441f-94db-fe01f8b527cb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="a43e8dbf-5300-499f-9e40-ef0c266e8809" ownerguid="7eece01d-30fc-4448-aea7-e69d8871d160"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chick</AUni> -<AUni ws="es">pollito</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="70103093-32b1-4d23-9b66-e123581ea250" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a4403790-4d4d-4844-a312-2515f0d17e35"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shipli</AUni> -<AUni ws="qvm-x-acl">shipli; shiple</AUni> -<AUni ws="qvm-x-akh">shipli</AUni> -<AUni ws="qvm-x-akl">shipli; shiple</AUni> -<AUni ws="qvm-x-ame">shipli</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shiplli</AUni> -<AUni ws="qvm-x-acl">*shiplli</AUni> -<AUni ws="qvm-x-akh">*shiplli</AUni> -<AUni ws="qvm-x-akl">*shiplli</AUni> -<AUni ws="qvm-x-ame">*shiplli</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.602" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="526b7667-9ffc-4f9b-83ef-e28c11d4fefd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shiplli</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cb6aea05-d97d-42ed-8e58-6a6ab589e63f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e3308f2b-31de-40db-a516-8b0eddcd50ee" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shiplli 
\entryTyp root 
\gENG split 
\gSPN partir 
\e *shiplli 
\c V2 
\mp +FinalI 
\ach shipli 
\akh shipli 
\acl shipli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shiple +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shipli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shiple +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shipli</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a440fce5-36f2-4bb3-a487-684ec5845ef0" ownerguid="e2f3437a-57e1-4776-9db9-06220d307f3d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="a4446893-4605-42dd-a26f-8902220567a7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uca</AUni> -<AUni ws="qvm-x-acl">uca</AUni> -<AUni ws="qvm-x-akh">uka</AUni> -<AUni ws="qvm-x-akl">uka</AUni> -<AUni ws="qvm-x-ame">uka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uka</AUni> -<AUni ws="qvm-x-acl">*uka</AUni> -<AUni ws="qvm-x-akh">*uka</AUni> -<AUni ws="qvm-x-akl">*uka</AUni> -<AUni ws="qvm-x-ame">*uka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.200" /> -<DateModified val="2022-10-10 21:19:47.692" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c314af13-78cc-475b-a033-fdd27ec7400e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="106e1ba9-5b0f-4b1e-8b61-b7dbc260d3a9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="32d80bfa-df21-40b6-ad23-c572953d4e8e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uka 
\entryTyp root 
\gENG startle 
\gSPN 
\e *uka 
\c V1 
\ach uca 
\akh uka 
\acl uca 
\akl uka 
\ame uka 
\mcc *uka / _ PASS / _ CMPLT1</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a447a645-8095-4238-9aeb-3cc776d8c25c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aysa</AUni> -<AUni ws="qvm-x-acl">aysa</AUni> -<AUni ws="qvm-x-akh">aysa</AUni> -<AUni ws="qvm-x-akl">aysa</AUni> -<AUni ws="qvm-x-ame">aysa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aysa</AUni> -<AUni ws="qvm-x-acl">*aysa</AUni> -<AUni ws="qvm-x-akh">*aysa</AUni> -<AUni ws="qvm-x-akl">*aysa</AUni> -<AUni ws="qvm-x-ame">*aysa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.910" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="996b374c-01ea-49c1-950f-201e38c21dc4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aysa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9a3510ee-e718-41fb-a270-8522d29e0855" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="beaa93c4-b5b4-4d41-bb9e-67a575206e43" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aysa 
\entryTyp root 
\gENG tired 
\gSPN cansado 
\e *aysa 
\c V1 
\ach aysa 
\akh aysa 
\acl aysa 
\akl aysa 
\ame aysa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a449e95e-9fd7-4fc7-aafe-7772634bc683" ownerguid="ff9dfc70-526d-405e-b613-5a2a21c1b2d8"> -<ExampleWords> -<AUni ws="en">farmer, farm worker, field hand, sharecropper, itinerant farm laborer, hired hand</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a person who works on a farm?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a44c0aa3-323f-48ec-b199-e180c17b3e69"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">capital</AUni> -<AUni ws="qvm-x-acl">capital</AUni> -<AUni ws="qvm-x-akh">capital</AUni> -<AUni ws="qvm-x-akl">capital</AUni> -<AUni ws="qvm-x-ame">capital</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+capital</AUni> -<AUni ws="qvm-x-acl">+capital</AUni> -<AUni ws="qvm-x-akh">+capital</AUni> -<AUni ws="qvm-x-akl">+capital</AUni> -<AUni ws="qvm-x-ame">+capital</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.52" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="90190a7e-f457-4f53-ad53-552af873dcac" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+capital</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="885b6030-a446-40b0-ac24-407af6f48331" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c4746fff-540b-4e14-8a48-1c3289704984" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +capital 
\entryTyp root 
\gENG capitol 
\gSPN capital 
\e +capital 
\c N0 
\mp +FinalC 
\ach capital 
\akh capital 
\acl capital 
\akl capital 
\ame capital</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a450ec75-e22a-4a72-8451-c5acbebe8206" ownerguid="7a355831-f4bd-4c1b-ae8b-f353a321c7d4"> -<Form> -<AUni ws="qvm-x-ach">japshi</AUni> -<AUni ws="qvm-x-acl">japshi; japshe</AUni> -<AUni ws="qvm-x-akh">japshi</AUni> -<AUni ws="qvm-x-akl">japshi; japshe</AUni> -<AUni ws="qvm-x-ame">hapshi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="a4515c6f-01e9-453c-9e63-457f6b3785ff" ownerguid="79436830-092b-4d13-a715-f392d7e33708"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</Msa> -<Sense> -<objsur guid="80f44d0c-72fe-4b3c-b505-6b06de3ee220" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="a452f567-9fdb-43cd-a74c-65e11171d4a1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">vientu; viento</AUni> -<AUni ws="qvm-x-acl">vientu; vientu; viento</AUni> -<AUni ws="qvm-x-akh">vientu; viento</AUni> -<AUni ws="qvm-x-akl">vientu; vientu; viento</AUni> -<AUni ws="qvm-x-ame">vientu; viento</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+viento.n</AUni> -<AUni ws="qvm-x-acl">+viento.n</AUni> -<AUni ws="qvm-x-akh">+viento.n</AUni> -<AUni ws="qvm-x-akl">+viento.n</AUni> -<AUni ws="qvm-x-ame">+viento.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.394" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c7eff419-543f-4ccf-9920-30f130b252e2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+viento.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="681d317b-8d15-4729-b283-389b074fd96e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="381868f5-4778-4f93-9756-596650f13c4e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +viento.n 
\entryTyp root 
\gENG wind 
\gSPN viento 
\e +viento.n 
\c N0 
\ach vientu / ~_# 
\ach viento / _# 
\akh vientu / ~_# 
\akh viento / _# 
\acl vientu / ~_# 
\acl vientu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl viento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl vientu / ~_# 
\akl vientu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl viento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame vientu / ~_# 
\ame viento / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a453ab37-1b89-4eb1-942c-71fb7004953a" ownerguid="ff736f67-197b-46b9-bc14-edbeb1fb3d5a"> -<ExampleWords> -<AUni ws="en">owner</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the person who owns something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a455de28-b812-4bf4-a9f3-fc318aa77d4f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ma:dista</AUni> -<AUni ws="qvm-x-acl">ma:dista</AUni> -<AUni ws="qvm-x-akh">ma:dista</AUni> -<AUni ws="qvm-x-akl">ma:dista</AUni> -<AUni ws="qvm-x-ame">ma:dista</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+madrastra</AUni> -<AUni ws="qvm-x-acl">+madrastra</AUni> -<AUni ws="qvm-x-akh">+madrastra</AUni> -<AUni ws="qvm-x-akl">+madrastra</AUni> -<AUni ws="qvm-x-ame">+madrastra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.255" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="edce8526-bf43-4e8f-a407-35f139f68eb1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+madrastra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7e479885-2522-47a4-9739-d8c90734a956" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dbd2182c-e8c0-4bcd-b318-6b2a59502b76" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +madrastra 
\entryTyp root 
\gENG step-mother 
\gSPN madrastra 
\e +madrastra 
\c N0 
\ach ma:dista 
\akh ma:dista 
\acl ma:dista 
\akl ma:dista 
\ame ma:dista</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a4567144-16e1-4799-b3d7-68fbefc6b4be" ownerguid="0603c405-3d02-40c2-8da1-dc78c9d47ecf"> -<Form> -<AUni ws="qvm-x-ach">wagtsa</AUni> -<AUni ws="qvm-x-acl">wagtsa</AUni> -<AUni ws="qvm-x-akh">waqtsa</AUni> -<AUni ws="qvm-x-akl">waqtsa</AUni> -<AUni ws="qvm-x-ame">waqtsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a457eed9-12b7-48e6-8732-dcab5f23521e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wiscu</AUni> -<AUni ws="qvm-x-acl">wiscu; wiscu; wisco</AUni> -<AUni ws="qvm-x-akh">wisku</AUni> -<AUni ws="qvm-x-akl">wisku; wisku; wisko</AUni> -<AUni ws="qvm-x-ame">wisku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wisku</AUni> -<AUni ws="qvm-x-acl">*wisku</AUni> -<AUni ws="qvm-x-akh">*wisku</AUni> -<AUni ws="qvm-x-akl">*wisku</AUni> -<AUni ws="qvm-x-ame">*wisku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.699" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="02cc9120-05b7-4152-9911-ffd078a4e8f6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wisku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="87841988-9f0c-4fad-a0c9-621b3bc0e742" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d463c080-f0e6-4f3b-9911-256cf40331fc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wisku 
\entryTyp root 
\gENG one.eyed 
\gSPN tuerto 
\e *wisku 
\c N0 
\ach wiscu 
\akh wisku 
\acl wiscu / _# 
\acl wiscu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wisco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wisku / _# 
\akl wisku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl wisko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wisku</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="a458b668-c7c3-4721-bb68-4dbd29f513c0"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Markaykichöqa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="a4599e92-8109-4054-b2d0-31fd8e1dac7b" ownerguid="d33042a7-36e6-496e-b2b5-69a668175a46"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a459a8d5-cf14-4f47-a632-57f644f61dcb" ownerguid="965c6a0b-3034-4e2f-a00b-ed2eb3119a5d"> -<ExampleWords> -<AUni ws="en">(none in English), (in many Bantu languages) -e 'a verbal suffix indicating that the sentence is a command'</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What affixes indicate that the sentence is a command?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a459cdbc-485c-4d4a-baf9-64b148a1346e" ownerguid="f919dc5e-b3ed-41a8-8422-6fc1df2aef0f"> -<PartOfSpeech> -<objsur guid="85ffb381-0567-4202-8640-53cbaec77e45" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="a459dfd1-54ee-4b03-845f-35041413b1aa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">intindi</AUni> -<AUni ws="qvm-x-acl">intindi; intinde</AUni> -<AUni ws="qvm-x-akh">intindi</AUni> -<AUni ws="qvm-x-akl">intindi; intinde</AUni> -<AUni ws="qvm-x-ame">intindi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+entender</AUni> -<AUni ws="qvm-x-acl">+entender</AUni> -<AUni ws="qvm-x-akh">+entender</AUni> -<AUni ws="qvm-x-akl">+entender</AUni> -<AUni ws="qvm-x-ame">+entender</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.477" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ba5bf41f-8208-45b1-9b48-dda5db96bf96" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+entender</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dd55819d-2311-4bdc-b5e8-5f9881f13f1a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a30bba18-ee9e-4a47-aa17-686be7151d7c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +entender 
\entryTyp root 
\gENG understand 
\gSPN entender 
\e +entender 
\c V2 
\mp +FinalI 
\ach intindi 
\akh intindi 
\acl intindi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl intinde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl intindi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl intinde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame intindi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a45ac6c1-c929-41af-8d66-92064af39619"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sementera</AUni> -<AUni ws="qvm-x-acl">sementera</AUni> -<AUni ws="qvm-x-akh">sementera</AUni> -<AUni ws="qvm-x-akl">sementera</AUni> -<AUni ws="qvm-x-ame">sementera</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sementera</AUni> -<AUni ws="qvm-x-acl">+sementera</AUni> -<AUni ws="qvm-x-akh">+sementera</AUni> -<AUni ws="qvm-x-akl">+sementera</AUni> -<AUni ws="qvm-x-ame">+sementera</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.490" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aa6229c4-4f3b-40b2-9327-3fe28341f370" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sementera</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f867685a-e850-4f10-a24e-cecdf0e27b26" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="adae5f96-4e8f-481a-885d-29b241e2fa31" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sementera 
\entryTyp root 
\gENG field 
\gSPN sementera 
\e +sementera 
\c N0 
\ach sementera 
\akh sementera 
\acl sementera 
\akl sementera 
\ame sementera</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="a45d1a98-21be-467c-b7c5-26fae43480ec"> -<Form> -<Str> -<Run ws="en">2</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="a45ef71b-c7e6-45db-8bfe-6718993a5c88" ownerguid="adde4a66-9040-47a9-91ab-327934a2e97e"> -<ExampleWords> -<AUni ws="en">carpentry, to saw, to plane, to hammer, to nail, to chisel, sharpen, fit, carve, drive a screw, to screw, hollow out a log, chop in pieces</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to working with wood?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a460ff54-b604-4119-b66e-1e008a0a4ed5" ownerguid="439cc8c7-7109-4d49-8091-7fff68338f16"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ahaa</AUni> -<AUni ws="es">ajaa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8d3f390d-350e-432c-b8f0-2055981c2771" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a462075b-9cbc-46c6-ae16-7f19705517b6" ownerguid="79a33505-0c33-4e92-89b9-6a42e6ff2228"> -<ExampleWords> -<AUni ws="en">appearance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the event of something appearing?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="a4627ca8-f27b-44ce-91f5-cc992332bc86" ownerguid="49bc0d75-4f07-44b4-a50f-bc9a557dc15e"> -<Abbreviation> -<AUni ws="en">4.1.9.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to your spouse.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Husband, wife</AUni> -</Name> -<Questions> -<objsur guid="942754fb-6784-4cd0-a556-e8346a5ba897" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="a462dc51-7847-46f3-90ba-a2781972b9d0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cargu; cargo</AUni> -<AUni ws="qvm-x-acl">cargu; cargu; cargo</AUni> -<AUni ws="qvm-x-akh">cargu; cargo</AUni> -<AUni ws="qvm-x-akl">cargu; cargu; cargo</AUni> -<AUni ws="qvm-x-ame">cargu; cargo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cargo</AUni> -<AUni ws="qvm-x-acl">+cargo</AUni> -<AUni ws="qvm-x-akh">+cargo</AUni> -<AUni ws="qvm-x-akl">+cargo</AUni> -<AUni ws="qvm-x-ame">+cargo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.62" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="534ab1d3-1e3a-4bdd-a369-d1622fe4f569" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cargo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f0186080-e861-4b07-9a0a-3944b41073d9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1b74bcbd-05fb-424d-9696-78c95f94c936" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cargo 
\entryTyp root 
\gENG responsibility 
\gSPN cargo 
\e +cargo 
\c N0 
\ach cargu / ~_# 
\ach cargo / _# 
\akh cargu / ~_# 
\akh cargo / _# 
\acl cargu / ~_# 
\acl cargu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cargo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cargu / ~_# 
\akl cargu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cargo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cargu / ~_# 
\ame cargo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a46546ee-4adb-46bc-b3fd-20a014278659"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cachcachya; cachcachya:</AUni> -<AUni ws="qvm-x-acl">cachcachya; cachcachya:</AUni> -<AUni ws="qvm-x-akh">kachkachya; kachkachya:</AUni> -<AUni ws="qvm-x-akl">kachkachya; kachkachya:</AUni> -<AUni ws="qvm-x-ame">kachkachya; kachkachya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*katrkatrya:</AUni> -<AUni ws="qvm-x-acl">*katrkatrya:</AUni> -<AUni ws="qvm-x-akh">*katrkatrya:</AUni> -<AUni ws="qvm-x-akl">*katrkatrya:</AUni> -<AUni ws="qvm-x-ame">*katrkatrya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.963" /> -<DateModified val="2022-10-10 21:19:47.695" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="00a424ef-143c-45e0-859e-a7620fa87e6e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*katrkatrya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="41f780ae-5543-4ce9-88d7-ad58d8d85d26" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e27b1567-14cc-4822-a19e-f5a02c67b2a3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *katrkatrya: 
\entryTyp root 
\gENG chew 
\gSPN 
\e *katrkatrya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach cachcachya foreshortened 
\ach cachcachya: 
\akh kachkachya foreshortened 
\akh kachkachya: 
\acl cachcachya foreshortened 
\acl cachcachya: 
\akl kachkachya foreshortened 
\akl kachkachya: 
\ame kachkachya foreshortened 
\ame kachkachya: 
\i JOB 16.9 Cachcachyayparagmi rabyaycun.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a466eaa8-1131-45f0-9a19-95b279ff59fc" ownerguid="7edf9e7c-3e32-4307-b5e3-b0d704df7803"> -<ExampleWords> -<AUni ws="en">spinning wheel, distaff, spindle, bobbin, spool</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What tools and machines are used to spin thread?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a466ebdf-8337-43a4-a0cd-fd5f87673d8f" ownerguid="28174ef9-89d2-4059-bc8c-32fef000368b"> -<Form> -<AUni ws="qvm-x-ach">institütu</AUni> -<AUni ws="qvm-x-acl">institütu; institütu; institüto</AUni> -<AUni ws="qvm-x-akh">institütu</AUni> -<AUni ws="qvm-x-akl">institütu; institütu; institüto</AUni> -<AUni ws="qvm-x-ame">institütu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a46f3f5c-35a2-40a5-b9bc-0adb716ad4c5" ownerguid="28d4ec2b-08a6-4a73-94a5-70f4fd91c215"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">smile.w.squint</AUni> -<AUni ws="es">sonreír.bizco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5490c80f-2617-4533-a669-9d2c93165c35" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a4765bf0-1966-444f-8242-faf1e28859a3" ownerguid="faf0ae24-6584-4766-a93b-389c1cb06d8d"> -<ExampleWords> -<AUni ws="en">turtle (water), tortoise (land)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to turtles?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a478966b-c282-4674-9333-7be4a062d053" ownerguid="607b1b5d-fbff-40ed-85f1-72e8a96b3377"> -<PartOfSpeech> -<objsur guid="d32dff62-4117-4762-a887-96478406769b" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a479d1c1-4eb6-4447-90e1-9c95aaf1f729" ownerguid="63c69d11-1101-4870-aeb8-43ee364381b0"> -<ExampleWords> -<AUni ws="en">lightning, lightning bolt, thunderbolt, lightning storm</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to lightning?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a47a29e7-0fb2-4c94-8bc5-bcf87a0f1276"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lushti</AUni> -<AUni ws="qvm-x-acl">lushti; lushte</AUni> -<AUni ws="qvm-x-akh">lushti</AUni> -<AUni ws="qvm-x-akl">lushti; lushte</AUni> -<AUni ws="qvm-x-ame">lushti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llushti</AUni> -<AUni ws="qvm-x-acl">*llushti</AUni> -<AUni ws="qvm-x-akh">*llushti</AUni> -<AUni ws="qvm-x-akl">*llushti</AUni> -<AUni ws="qvm-x-ame">*llushti</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.243" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0157beeb-527d-40fe-9f3d-457eb75db74b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llushti</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2f8fa194-59ac-43e5-a1a9-4aa4903d0caf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3a0c5d41-d078-4040-88e8-9048fa1255f7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llushti 
\entryTyp root 
\gENG pull.off 
\gSPN quitar 
\e *llushti 
\c V2 
\mp +FinalI 
\ach lushti 
\akh lushti 
\acl lushti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lushte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lushti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lushte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lushti</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a47c4979-6a03-4266-a4f8-972471888b75" ownerguid="f2022802-4f43-4fa2-8c58-33a8b9e75895"> -<ExampleWords> -<AUni ws="en">increase (vt), raise, put up, push up, drive up, force up, boost, maximize</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to causing something to increase?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a47d60d0-f727-47a2-8815-f9cf26e51894" ownerguid="ad67443c-99ff-474d-9bcb-ddf3d7d8a639"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a480161a-2d03-4c02-8c1b-99745c33b612" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<ExampleWords> -<AUni ws="en">measure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to measuring how big something is?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a48916c8-0800-498e-acf9-a71afa2e4b87" ownerguid="250a52e4-ede0-427d-8382-46a5742d4f96"> -<ExampleWords> -<AUni ws="en">pharmacy, medicine cabinet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a place where medicine is kept or given out?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a48bf643-d3a9-49c3-bedd-691babcd9044" ownerguid="84f79788-dd5c-4ce6-808d-8f23d8c713c0"> -<Form> -<AUni ws="qvm-x-ach">yanagui</AUni> -<AUni ws="qvm-x-acl">yanagui; yanagui; yanague</AUni> -<AUni ws="qvm-x-akh">yanaqi</AUni> -<AUni ws="qvm-x-akl">yanaqi; yanaqi; yanaqe</AUni> -<AUni ws="qvm-x-ame">yanaqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="a491b60d-8695-4139-98ff-0485684115e6" ownerguid="6cea20b9-67a9-4e43-81b5-ac54e38743d6"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="bb8c7346-eef3-4ea2-a073-0b54ebcf8119" t="o" /> -<objsur guid="a7ec318d-c0a5-4050-a2de-521f9f751975" t="o" /> -<objsur guid="10ac7335-fc1f-4bec-94e1-266ff5026057" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="a4957c98-c53d-40c3-8412-03c4ae81c1b3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ti:tulu</AUni> -<AUni ws="qvm-x-acl">ti:tulu; ti:tulu; ti:tulo</AUni> -<AUni ws="qvm-x-akh">ti:tulu</AUni> -<AUni ws="qvm-x-akl">ti:tulu; ti:tulu; ti:tulo</AUni> -<AUni ws="qvm-x-ame">ti:tulu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+título</AUni> -<AUni ws="qvm-x-acl">+título</AUni> -<AUni ws="qvm-x-akh">+título</AUni> -<AUni ws="qvm-x-akl">+título</AUni> -<AUni ws="qvm-x-ame">+título</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.936" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d3d6193b-68f7-42bd-89b6-db3ba5647b28" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+título</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="01cef8d7-dd6d-4189-991c-98d99404a940" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="87e3acc8-35e4-47d9-bbef-f4f9415b317f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +título 
\entryTyp root 
\gENG title 
\gSPN título 
\e +título 
\c N0 
\ach ti:tulu 
\akh ti:tulu 
\acl ti:tulu / _# 
\acl ti:tulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ti:tulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ti:tulu / _# 
\akl ti:tulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ti:tulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ti:tulu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="a4958dd9-03cc-4863-ab76-cd0682060cb0" ownerguid="9efa7949-de15-499a-b382-4560e06c4fb4"> -<Abbreviation> -<AUni ws="en">3.5.1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.164" /> -<DateModified val="2022-9-23 16:55:8.164" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to praising someone or something--to say something good about someone, or to say that someone did something good.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33K' Praise</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Praise</AUni> -</Name> -<Questions> -<objsur guid="a0512d50-c03b-4719-ba98-812fe9a16811" t="o" /> -<objsur guid="50bdfee5-208c-4132-95c0-9f3dd8142fe5" t="o" /> -<objsur guid="c0824732-7426-4b9d-bd26-e83f2ac3ff27" t="o" /> -<objsur guid="a94dd075-7934-497f-991a-1c91aa720727" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="27048124-c204-4585-9997-c51728f085d6" t="o" /> -<objsur guid="53d34f16-2f94-4afa-9530-7ac75e05b8d4" t="o" /> -<objsur guid="80415fac-b3d8-4e3c-bdb8-dc92f3c6dad8" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="a497fb49-8d8d-4cf1-821f-67470b8e8098"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cordel; cordil</AUni> -<AUni ws="qvm-x-acl">cordel; cordil; cordel</AUni> -<AUni ws="qvm-x-akh">cordel; cordil</AUni> -<AUni ws="qvm-x-akl">cordel; cordil; cordel</AUni> -<AUni ws="qvm-x-ame">cordel; cordil</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cordel</AUni> -<AUni ws="qvm-x-acl">+cordel</AUni> -<AUni ws="qvm-x-akh">+cordel</AUni> -<AUni ws="qvm-x-akl">+cordel</AUni> -<AUni ws="qvm-x-ame">+cordel</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.190" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cebb1f46-eae3-46f3-809d-d8e9e641e817" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cordel</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="22a26c80-94d5-492a-936d-afd8dcb44c47" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="32937435-da56-4752-b867-4de0869207d3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cordel 
\entryTyp root 
\gENG 
\gSPN 
\e +cordel 
\c N0 
\mp +FinalC 
\ach cordel / _# 
\ach cordil / ~_# 
\akh cordel / _# 
\akh cordil / ~_# 
\acl cordel / _# 
\acl cordil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cordel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cordel / _# 
\akl cordil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cordel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame cordel / _# 
\ame cordil / ~_# 
\i 2SA 8.2 Nircurna pampaman lapanta lätaycatsir cordelwan tuporgan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a498112c-17c7-4f5c-a6c0-96e9f0e99de8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gala</AUni> -<AUni ws="qvm-x-acl">gala</AUni> -<AUni ws="qvm-x-akh">qala</AUni> -<AUni ws="qvm-x-akl">qala</AUni> -<AUni ws="qvm-x-ame">qala</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qalla.v</AUni> -<AUni ws="qvm-x-acl">*qalla.v</AUni> -<AUni ws="qvm-x-akh">*qalla.v</AUni> -<AUni ws="qvm-x-akl">*qalla.v</AUni> -<AUni ws="qvm-x-ame">*qalla.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.74" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="65020ca7-e512-4098-982b-d8557fdf544e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qalla.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3a9db7aa-5239-4545-baca-6360c336d60d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3a20c23d-6d54-4a66-a51f-4903335230fe" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qalla.v 
\entryTyp root 
\gENG begin 
\gSPN empezar 
\e *qalla.v 
\c V2 
\ach gala 
\akh qala 
\acl gala 
\akl qala 
\ame qala 
\mcc *qalla.v / ~_ [pnct] 
\mcc *qalla.v / ~_ INF PLUR</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a49b127c-31dc-438c-bf17-90b0912f7583"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">esti; este</AUni> -<AUni ws="qvm-x-acl">esti; esti; este</AUni> -<AUni ws="qvm-x-akh">esti; este</AUni> -<AUni ws="qvm-x-akl">esti; esti; este</AUni> -<AUni ws="qvm-x-ame">esti; este</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+este</AUni> -<AUni ws="qvm-x-acl">+este</AUni> -<AUni ws="qvm-x-akh">+este</AUni> -<AUni ws="qvm-x-akl">+este</AUni> -<AUni ws="qvm-x-ame">+este</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.508" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d039a31f-f48a-4bbc-af01-7725654283d6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+este</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d8533a2a-c69a-4530-be89-8c8ff295762f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e470ad6b-6e80-4df8-b4b9-f558890c9c4d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +este 
\entryTyp root 
\gENG east 
\gSPN 
\e +este 
\c N0 
\mp +FinalI 
\ach esti / ~_# 
\ach este / _# 
\akh esti / ~_# 
\akh este / _# 
\acl esti / ~_# 
\acl esti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl este +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl esti / ~_# 
\akl esti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl este +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame esti / ~_# 
\ame este / _# 
\i Jdg 8.11 Tsay caminoga pasargan Nobapita y Jogbehapita este cag lädupami.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a49fc2a5-c581-4d6e-9268-f67517b73ff6" ownerguid="88269184-d033-454e-b750-559d5f53287c"> -<ExampleWords> -<AUni ws="en">move in, go in, go into, enter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving into an area or space?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="a4a0aa5c-fcd6-4b91-af3c-5c74faf9250c"> -<Form> -<Str> -<Run ws="en">22</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="a4a22f53-c725-434c-ab32-460858d77350" ownerguid="c1a70060-ba04-4f16-879e-5563492aee02"> -<ExampleWords> -<AUni ws="en">middle class, bourgeois</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to someone who has enough but is not rich or poor?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="a4a35159-5eea-4f5f-91b0-57c94202bc19" ownerguid="baa9b98b-7c7c-44b5-9c31-cb2e1413919c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EZK 27.20 Dedánpita shamogcunanami silla jananman churananpag cuyaylapag chalpata ranticushog canqui.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="a4a57714-49c1-44c6-93f9-0b3770366b42" ownerguid="1c8da3aa-3c74-4188-8949-5ab82fc1f99c"> -<ExampleWords> -<AUni ws="en">every time, whenever</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that when one thing happens something else always happens?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a4a7e843-bc65-4bf6-99d6-d15a9abc8950" ownerguid="0cdbf190-fcde-4096-a453-4f07568551fd"> -<Gloss> -<AUni ws="en">Pharoah</AUni> -<AUni ws="es">Faraón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="544259c0-a889-419a-8a2e-c0080a6f0496" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a4a895ee-4c2c-4986-b7a5-67095886e1fc" ownerguid="043d12ac-c76d-4b4c-813b-4ef7758c8085"> -<ExampleWords> -<AUni ws="en">come out (from hiding), surface</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to coming out from hiding?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a4a8c347-76cd-454b-a7b8-715060881e79" ownerguid="cd265743-390b-4b6c-b803-53941e137bed"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a4a9f5b0-a61f-4312-b78d-34fac2a42d77" ownerguid="514974a2-c2fd-4b25-a24d-2ff52fa3d798"> -<ExampleWords> -<AUni ws="en">extinguish, put out (a fire), fight (a fire), stub out (a cigarette)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What general words are used of a person stopping a fire?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a4ac260f-3c24-41af-90dc-c88e7a8fe6ff"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">palumita</AUni> -<AUni ws="qvm-x-acl">palumita</AUni> -<AUni ws="qvm-x-akh">palumita</AUni> -<AUni ws="qvm-x-akl">palumita</AUni> -<AUni ws="qvm-x-ame">palumita</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+palomita</AUni> -<AUni ws="qvm-x-acl">+palomita</AUni> -<AUni ws="qvm-x-akh">+palomita</AUni> -<AUni ws="qvm-x-akl">+palomita</AUni> -<AUni ws="qvm-x-ame">+palomita</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.669" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6bfcad87-4c40-45aa-9ca1-f80cba8d86ef" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+palomita</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cb60925c-7c27-4ff8-9c15-dc9b2a3ae9bf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c656e18e-9d5f-4233-9876-347bdee0076a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +palomita 
\entryTyp root 
\gENG 
\gSPN 
\e +palomita 
\c N0 
\ach palumita 
\akh palumita 
\acl palumita 
\akl palumita 
\ame palumita</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a4ad6152-c5c0-4a2e-88ba-32585113f559"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsogtsi</AUni> -<AUni ws="qvm-x-acl">tsogtsi; tsogtse</AUni> -<AUni ws="qvm-x-akh">tsoqtsi</AUni> -<AUni ws="qvm-x-akl">tsoqtsi; tsoqtse</AUni> -<AUni ws="qvm-x-ame">tsuqtsi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chuqchi</AUni> -<AUni ws="qvm-x-acl">*chuqchi</AUni> -<AUni ws="qvm-x-akh">*chuqchi</AUni> -<AUni ws="qvm-x-akl">*chuqchi</AUni> -<AUni ws="qvm-x-ame">*chuqchi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.345" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2d1113b6-33e2-48d9-8e62-be13aa03f889" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chuqchi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5790ff1a-77f8-42d9-b303-62b62fe8cfde" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="09bb0ddc-2a10-47e8-80f5-d543c466f40d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chuqchi 
\entryTyp root 
\gENG rinse.mouth 
\gSPN enjuagar.la.boca 
\e *chuqchi 
\c V2 
\mp +FinalI 
\ach tsogtsi 
\akh tsoqtsi 
\acl tsogtsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tsogtse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsoqtsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsoqtse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsuqtsi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a4aeac4c-8591-463a-8161-6b0f1d40f2dd" ownerguid="35e61ec4-0542-4583-b5da-0aa5e31a35aa"> -<ExampleWords> -<AUni ws="en">birth, childbirth, birthing, childbed, parturition, nativity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the event of giving birth?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="a4b03891-c2df-4d72-bbdc-13bc8d4eceba" ownerguid="2dca9338-85cb-4f58-b40d-d2d759e8edd6"> -<Abbreviation> -<AUni ws="en">8.5.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to an area.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>80 Space; 80A Space, Place</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Area</AUni> -</Name> -<Questions> -<objsur guid="c8998118-83a5-4fa1-8d10-f7c76a4725bc" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="ec6f626c-e7a0-4ec7-a541-d683f20c9271" t="o" /> -<objsur guid="80de758c-537d-4c8c-8308-4babfb2c787a" t="o" /> -<objsur guid="f45a456e-8e23-4364-8842-047cc73f529b" t="o" /> -<objsur guid="061749a8-e28a-461c-bf2d-052ab3e157d5" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="a4b14c64-72c5-4985-82fb-587d3802483e" ownerguid="16cf2099-8e71-4c6c-ad42-1f5c7429f812"> -<Form> -<AUni ws="qvm-x-ach">estancia</AUni> -<AUni ws="qvm-x-acl">estancia</AUni> -<AUni ws="qvm-x-akh">estancia</AUni> -<AUni ws="qvm-x-akl">estancia</AUni> -<AUni ws="qvm-x-ame">estancia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="a4b1c6e5-45df-4fcc-b35a-f5a4a27dc69d" ownerguid="9c4f821e-2dd3-4981-a024-96ba3c7ee477"> -<Form> -<AUni ws="qvm-x-ach">püta</AUni> -<AUni ws="qvm-x-acl">püta</AUni> -<AUni ws="qvm-x-akh">püta</AUni> -<AUni ws="qvm-x-akl">püta</AUni> -<AUni ws="qvm-x-ame">püta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="a4b41da7-4872-4d76-afb1-cbe82365405a" ownerguid="c49b8038-b6c9-4a4e-90e4-ae79fe3a8398"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">lapa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">lapa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">lapa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">lapa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">lapa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="0655d4c4-dcff-4fca-931a-8964415a96b4" t="r" /> -</Morph> -<Msa> -<objsur guid="b16d0818-05dc-49f7-8cdf-889b0be5517e" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="a4b55375-5c47-493b-a36d-50b2b70849b9" ownerguid="87db1257-496d-49ec-abf5-2ef8c71cb210"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">water</AUni> -<AUni ws="es">agua</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="70d57e02-8751-4574-b1ac-7c0ea2f07724" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a4b6ab5f-3da4-42e4-b3d7-045ceed5bfdd" ownerguid="583c98ff-1cc8-4b05-9086-974d13a78894"> -<ExampleWords> -<AUni ws="en">disorganized, arbitrary, chaotic, confused, in disarray, haphazard, helter-skelter, jumbled, messed up, messy, nonsystematic, random, unarranged, unsorted, unmethodical, unordered, unorganized, unsystematic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe things that are disorganized?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a4b8ae11-05a7-45d8-9527-2191d0f7b4c8" ownerguid="33566204-d674-40ed-8fd8-63676d75513d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="58e7b991-e92e-4cc0-9981-eae4d9b8dbc0" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">rest.hour</AUni> -<AUni ws="es">descanso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4c50d93f-2c22-4050-9338-3bf2e73b00d9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a4bc5f8d-363a-412e-ba54-2df17a92120a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">captu</AUni> -<AUni ws="qvm-x-acl">captu; capto</AUni> -<AUni ws="qvm-x-akh">kaptu</AUni> -<AUni ws="qvm-x-akl">kaptu; kapto</AUni> -<AUni ws="qvm-x-ame">kaptu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kaptu.v</AUni> -<AUni ws="qvm-x-acl">*kaptu.v</AUni> -<AUni ws="qvm-x-akh">*kaptu.v</AUni> -<AUni ws="qvm-x-akl">*kaptu.v</AUni> -<AUni ws="qvm-x-ame">*kaptu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.943" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0e3fcd78-47e6-456f-b8e8-c1a8affbd52f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kaptu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f63d167a-e316-4a5f-963b-afcb19563b11" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9dc687fd-ca5e-431b-a6b7-ed7e8cf3ba86" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kaptu.v 
\entryTyp root 
\gENG 
\gSPN 
\e *kaptu.v 
\c V2 
\ach captu 
\akh kaptu 
\acl captu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl capto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kaptu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kapto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kaptu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a4bc6009-a9e5-4dcd-a14b-08f820ac149f" ownerguid="965c6a0b-3034-4e2f-a00b-ed2eb3119a5d"> -<Question> -<AUni ws="en">(1) imperative: the verb form used for direct commands in the 2nd person. If there are also 1st and 3rd person forms, the meaning can still be that of imperative, with the 1st and 3rd persons being interpreted as 'Let us, let him...', etc.</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a4bc6faf-bf61-4be1-9e4b-ea3466dc9696" ownerguid="482fae12-4041-4cf4-a652-9b7e0ed382a7"> -<Form> -<AUni ws="qvm-x-ach">pedagögicu</AUni> -<AUni ws="qvm-x-acl">pedagögicu; pedagögicu; pedagögico</AUni> -<AUni ws="qvm-x-akh">pedagögicu</AUni> -<AUni ws="qvm-x-akl">pedagögicu; pedagögicu; pedagögico</AUni> -<AUni ws="qvm-x-ame">pedagögicu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a4c38b61-423d-4e31-82b5-0eb0ae3c38db" ownerguid="8a81b9bc-9c66-4d57-a2d1-2e592604c4b1"> -<ExampleWords> -<AUni ws="en">almost full, not quite full</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words describe something that is almost full?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a4c4d622-7ac8-4732-99a0-ed394434e0a1" ownerguid="97b72009-1a4d-44d7-ab89-419600c00f19"> -<Form> -<AUni ws="qvm-x-ach">bayëta</AUni> -<AUni ws="qvm-x-acl">bayëta</AUni> -<AUni ws="qvm-x-akh">bayëta</AUni> -<AUni ws="qvm-x-akl">bayëta</AUni> -<AUni ws="qvm-x-ame">bayëta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="a4c630eb-8edf-4bb3-bab7-3b934b4188d0" ownerguid="27285ffe-6343-4b33-bfe0-0f671fde9af6"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 39.4 Wawancunapis chunyag jircachömi luchwaypa luchwarrag winan.</Run> -</AStr> -</Example> -</rt> -<rt class="Segment" guid="a4c63aae-408a-4683-b8de-ae5074ffed9a" ownerguid="7ff31d9c-f8ac-4cd6-9102-74aaac2da6dc"> -<Analyses> -<objsur guid="bafcff46-fb61-4d1e-b08f-1ea0177d7902" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexEntry" guid="a4c64fcf-79d7-4fdc-a32c-b86d1be35568"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">venda</AUni> -<AUni ws="qvm-x-acl">venda</AUni> -<AUni ws="qvm-x-akh">venda</AUni> -<AUni ws="qvm-x-akl">venda</AUni> -<AUni ws="qvm-x-ame">venda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+venda</AUni> -<AUni ws="qvm-x-acl">+venda</AUni> -<AUni ws="qvm-x-akh">+venda</AUni> -<AUni ws="qvm-x-akl">+venda</AUni> -<AUni ws="qvm-x-ame">+venda</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.361" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a59d3c3c-1da8-4da2-b56a-314183a4994e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+venda</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e8d97506-c52e-4dd0-9558-fdf342244b2a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="af0cd22a-583b-4863-8a66-5e5ef7a1cc22" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +venda 
\entryTyp root 
\gENG 
\gSPN vendar 
\e +venda 
\c N0 
\ach venda 
\akh venda 
\acl venda 
\akl venda 
\ame venda</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a4c65c90-930a-4dbc-98e2-af0d655c7225" ownerguid="f1e7c689-72f6-4766-8c94-0330e54bbb14"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a4c664f0-93fa-483f-a60a-4a0a79299349" ownerguid="d25f7907-091e-4cf7-bd8c-bdb97278b616"> -<ExampleWords> -<AUni ws="en">(no words in English)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to striking someone in order to cause injury?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a4c84a8c-c560-4c16-8a7b-435f9d39c1bb" ownerguid="878a313b-a201-444e-8bdb-67048d60c63e"> -<ExampleWords> -<AUni ws="en">overlook, let it pass, turn a blind eye, shut your eyes to, close your eyes, bury your head in the sand</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to ignoring something bad that is happening?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a4cdee93-4e26-4d4c-b6ee-16126454554f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cabe:za</AUni> -<AUni ws="qvm-x-acl">cabe:za</AUni> -<AUni ws="qvm-x-akh">cabe:za</AUni> -<AUni ws="qvm-x-akl">cabe:za</AUni> -<AUni ws="qvm-x-ame">cabe:za</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cabeza</AUni> -<AUni ws="qvm-x-acl">+cabeza</AUni> -<AUni ws="qvm-x-akh">+cabeza</AUni> -<AUni ws="qvm-x-akl">+cabeza</AUni> -<AUni ws="qvm-x-ame">+cabeza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.900" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fd64fabc-4edc-4d5a-bd26-ab2d73d6bb65" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cabeza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="46a20fe7-25ca-44de-b6a3-ff97800dcf82" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="67ab2de9-dd2b-485e-bbe1-85a4ebcde024" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cabeza 
\entryTyp root 
\gENG head 
\gSPN cabeza 
\e +cabeza 
\c NOSUFF 
\ach cabe:za 
\akh cabe:za 
\acl cabe:za 
\akl cabe:za 
\ame cabe:za</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a4cf668d-12d0-4d26-b0e3-85cd7c1f21ce" ownerguid="94f573ff-29f0-42ae-b1d9-f882823b2935"> -<ExampleWords> -<AUni ws="en">John Doe, Jane Doe, Joe Blow, GI Joe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What names are used to refer to someone when you don't know their name.</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="a4d42f6f-d626-4469-8166-21d6f4e69d6d" ownerguid="50d06ec2-c978-4c12-83dc-c2e2d919f465"> -<Form> -<AUni ws="qvm-x-ach">cama</AUni> -<AUni ws="qvm-x-acl">cama</AUni> -<AUni ws="qvm-x-akh">kama</AUni> -<AUni ws="qvm-x-akl">kama</AUni> -<AUni ws="qvm-x-ame">kama</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="a4d4f914-68ed-45b2-8241-82ac30cd1623" ownerguid="7002a15a-d1b9-40b1-b746-af6950273652"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="a4d56bda-dbe1-4eea-abd6-64f3bf41e9bf" ownerguid="65db711e-86aa-492d-ae2a-4b34e6d308b5"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a4d58f6d-f0f2-4c8e-9272-7c1ee31dbecd" ownerguid="8e2d7300-2826-497b-a811-c59a01e9e804"> -<Form> -<AUni ws="qvm-x-ach">tapshi</AUni> -<AUni ws="qvm-x-acl">tapshi; tapshe</AUni> -<AUni ws="qvm-x-akh">tapshi</AUni> -<AUni ws="qvm-x-akl">tapshi; tapshe</AUni> -<AUni ws="qvm-x-ame">tapshi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a4d63307-ce03-499f-a4f1-ee3b261a1c43" ownerguid="2a62f8e4-7da3-4f37-bf44-e24033c99c00"> -<ExampleWords> -<AUni ws="en">have a temper, irascible, bilious, cantankerous, choleric, cranky, grouch, hot tempered, hot headed, ill-tempered, irascible, irritable, easily offended, quick-tempered, prim, prude, sensitive, thin-skinned, touchy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe a person who gets angry often or easily?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a4d91a73-cdad-490b-9b42-7d565ef7cad0" ownerguid="f9d956b6-73d7-44f4-ac6c-b9a73cf0ab9e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a4db2565-a919-465f-8792-ebca882fec27" ownerguid="5483b41c-4ebc-4298-ae29-f68de3f489b4"> -<Form> -<AUni ws="qvm-x-ach">wäquer</AUni> -<AUni ws="qvm-x-acl">wäquer</AUni> -<AUni ws="qvm-x-akh">wäker</AUni> -<AUni ws="qvm-x-akl">wäker</AUni> -<AUni ws="qvm-x-ame">wäkir</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="a4e065f6-28ba-4f1d-9c78-bd1c33bf793d" ownerguid="565be8d0-02ff-43a0-8d85-383c047534cb"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="a4e4b3a0-f74c-4e82-a0be-3e61109ff98c" ownerguid="e77dc0f6-a090-4220-b557-b93910b63f75"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">help</AUni> -<AUni ws="es">ayudar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9f33c312-5ef5-4da5-9f36-753d13d3fbe9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="a4e9911b-ed31-4edc-88a2-e6d2873f83da" ownerguid="df7ccd8c-3186-482f-8672-93f0614cedf2"> -<Form> -<AUni ws="qvm-x-ach">chanca</AUni> -<AUni ws="qvm-x-acl">chanca</AUni> -<AUni ws="qvm-x-akh">chanka</AUni> -<AUni ws="qvm-x-akl">chanka</AUni> -<AUni ws="qvm-x-ame">chanka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a4ea7ef6-3a01-4425-8869-620fd4727de3" ownerguid="2d92e248-1512-4e89-b886-425814c6dd32"> -<ExampleWords> -<AUni ws="en">chess, chess game</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What is the game called?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="a4ec868c-e2c1-43f3-ab4e-562517b2a5e0" ownerguid="7b39e22d-bdac-4a5e-bee0-1bf549ccdd75"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">nqui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">nqui; nqui; nque</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">nki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">nki; nki; nke</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="eefb29ad-f416-4367-b09c-bb45b5e9cf21" t="r" /> -</Morph> -<Msa> -<objsur guid="0d90ca1d-7b60-41a3-a022-dba460606a1c" t="r" /> -</Msa> -<Sense> -<objsur guid="08cdcf68-e555-46a8-9801-1003a592bece" t="r" /> -</Sense> -</rt> -<rt class="LexExampleSentence" guid="a4ecd32a-8cb3-41c7-9525-70575ba534b7" ownerguid="cca9ca85-2edf-4c17-9ae3-9a46277c7bb8"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">DAN 6.2 Paycunata mandananpagmi quimsa ministrucunata churargan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="a4ed9b4a-da09-46e0-80ba-2dc30925600b" ownerguid="a31c85df-02a9-4dd8-a094-0f07a0afbcca"> -<ExampleWords> -<AUni ws="en">permanent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that cannot be removed?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="a4edea9a-62e0-46b5-8889-a266d5abf43f" ownerguid="670857e8-048a-4ab7-92a8-ebc28a5f914b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ka</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ka</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="22806abf-f462-448a-bb3e-39bbf5d75aea" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -<Sense> -<objsur guid="909cfa11-00e3-4787-b51b-dfac729061be" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="a4ee4ddc-91d6-4e31-8f8d-361a2b83430d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tu:na</AUni> -<AUni ws="qvm-x-acl">tu:na</AUni> -<AUni ws="qvm-x-akh">tu:na</AUni> -<AUni ws="qvm-x-akl">tu:na</AUni> -<AUni ws="qvm-x-ame">tu:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tu:na</AUni> -<AUni ws="qvm-x-acl">*tu:na</AUni> -<AUni ws="qvm-x-akh">*tu:na</AUni> -<AUni ws="qvm-x-akl">*tu:na</AUni> -<AUni ws="qvm-x-ame">*tu:na</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.997" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6eabfbb5-7723-43ab-a02d-2f128bd62605" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tu:na</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ecc36992-d2e5-45eb-a545-c1b7535c8438" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="961cb3d5-fc4a-4084-a46c-4667e274cec0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tu:na 
\entryTyp root 
\gENG dance 
\gSPN dansar 
\e *tu:na 
\c V1 
\ach tu:na 
\akh tu:na 
\acl tu:na 
\akl tu:na 
\ame tu:na</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a4f0fcad-e96c-4762-a8cc-fd47dc30e396" ownerguid="078dc3f7-2aac-4ecb-808d-ec65a50932ed"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="a4f11590-a946-4c2e-8018-e8decdc52c4f" ownerguid="ae780708-c312-493a-b30d-21c76be756a7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">match</AUni> -<AUni ws="es">fósforo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7323517c-8583-4620-9f46-01adc7cd96e4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="a4f4943f-ad94-4736-bf5d-f8a3cb15919f" ownerguid="35624f3a-2029-43b3-b70a-83e63ac9052f"> -<Abbreviation> -<AUni ws="en">9.2.9.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain to list all noun affixes.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Noun affixes</AUni> -</Name> -<Questions> -<objsur guid="8ab78fdc-71b8-45aa-b97b-d17788eb861a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="a4f6fc2a-b7cb-44a6-9f09-4a635cb6057d" ownerguid="6cea20b9-67a9-4e43-81b5-ac54e38743d6"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="ee9896de-c435-4c3b-8c67-6faa9aebe2cb" t="o" /> -<objsur guid="ac8a0b53-09a6-4704-becd-fb46c0ad87d3" t="o" /> -<objsur guid="321e2a7b-19c7-4344-a879-506fda30975a" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="a4fa3818-e7a6-46dc-b547-a5154295c665" ownerguid="51fbf9d6-8b9e-4f92-9cf0-02fa37a690c7"> -<Form> -<AUni ws="qvm-x-ach">runtu</AUni> -<AUni ws="qvm-x-acl">runtu; runtu; runto</AUni> -<AUni ws="qvm-x-akh">runtu</AUni> -<AUni ws="qvm-x-akl">runtu; runtu; runto</AUni> -<AUni ws="qvm-x-ame">runtu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="a4fa9f98-73c6-4c3e-9dad-d73d2634be3b" ownerguid="3160b7ad-e4e8-4a46-8e2e-d5e601969547"> -<Abbreviation> -<AUni ws="en">3.5.4.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.174" /> -<DateModified val="2022-9-23 16:55:8.174" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to verbal tradition--something that your ancestors told to each successive generation.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Verbal tradition</AUni> -</Name> -<Questions> -<objsur guid="fc49c061-13eb-4a9f-815c-626179234aea" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="a4fb117d-db0e-441f-8118-669c5dbf03fe" ownerguid="b7ba320b-ee5b-499a-8e1f-ab37678473fe"> -<Form> -<AUni ws="qvm-x-ach">mayla</AUni> -<AUni ws="qvm-x-acl">mayla</AUni> -<AUni ws="qvm-x-akh">mayla</AUni> -<AUni ws="qvm-x-akl">mayla</AUni> -<AUni ws="qvm-x-ame">mayla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="Segment" guid="a4fb1234-eb79-49e4-a305-e5fa978a3abc" ownerguid="6b4a5202-224f-4512-b23d-3479dd6bef12"> -<Analyses> -<objsur guid="698c92ce-1791-4cb7-b3ae-a885613d34e6" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemMsa" guid="a4fbee4d-e000-4601-ba8c-3cb120b03858" ownerguid="dfec780e-c856-47f1-b21a-56c77a902ab4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PartOfSpeech" guid="a4fc78d6-7591-4fb3-8edd-82f10ae3739d" ownerguid="ecf8c677-320a-452c-85c0-1f0df87b5be5"> -<Abbreviation> -<AUni ws="en">pro-form</AUni> -</Abbreviation> -<AffixSlots> -<objsur guid="1ac8c2fd-7b17-4fc7-b901-1d1db8a97b2d" t="o" /> -<objsur guid="5f0a99ac-644b-4188-83d9-e7927958c17e" t="o" /> -<objsur guid="f9e1228b-4c5b-4e23-bd04-d513eddcbaea" t="o" /> -</AffixSlots> -<BackColor val="-1073741824" /> -<CatalogSourceId> -<Uni>Pro-form</Uni> -</CatalogSourceId> -<DateCreated val="2022-9-23 16:55:8.749" /> -<DateModified val="2022-10-16 15:23:59.621" /> -<Description> -<AStr ws="en"> -<Run ws="en">A pro-form is a part of speech whose members usually substitute for other constituents, including phrases, clauses, or sentences, and whose meaning is recoverable from the linguistic or extralinguistic context.</Run> -</AStr> -</Description> -<ForeColor val="6303632" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Pro-form</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="a3274cfd-225f-45fd-8851-a7b1a1e1037a" t="o" /> -</SubPossibilities> -<UnderColor val="-1073741824" /> -<UnderStyle val="1" /> -</rt> -<rt class="MoStemMsa" guid="a4fd9ee3-efb7-44b3-91ba-3212bc1818f2" ownerguid="068d0802-c08c-4b0e-9861-dc975d9235d8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="a4ff4988-38de-4537-b332-9661d49600d4" ownerguid="00a13013-72ac-4a52-a4fa-9f65210728c9"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="a50162fb-f652-4f20-a9b9-e9b75a422af5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ma; ma:</AUni> -<AUni ws="qvm-x-acl">ma; ma:</AUni> -<AUni ws="qvm-x-akh">ma; ma:</AUni> -<AUni ws="qvm-x-akl">ma; ma:</AUni> -<AUni ws="qvm-x-ame">ma; ma:</AUni> -</Custom> -<AlternateForms> -<objsur guid="a9ab8772-4ce9-4712-be14-e5897137c5c1" t="o" /> -<objsur guid="d461bd39-dcdb-4b92-b683-c6749822c8b1" t="o" /> -</AlternateForms> -<DateCreated val="2022-9-23 18:26:20.599" /> -<DateModified val="2022-10-16 15:31:33.115" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d8a5ab62-4847-4d85-8c1f-50af05630f2b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">1O</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="554634ac-1f6d-4bfc-8e9c-9d1dfeca4367" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f442ba09-2469-4cfe-a31e-bcd120dbdec2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx 1O 
\entryTyp suffix 
\gENG 1O 
\gSPN 1O 
\e 1O 
\c V2/V1 
\o 070 
\mp +mlowers 
\mp +underlong 
\ach ma foreshortened 
\ach ma: 
\akh ma foreshortened 
\akh ma: 
\acl ma foreshortened 
\acl ma: 
\akl ma foreshortened 
\akl ma: 
\ame ma foreshortened 
\ame ma: 
\mp +FinalC 
\mp +FinalLength 
\i EXO 14.15 Tsauraga Moisésta Tayta Dios caynog nergan: <<Israel runacuna aywananpag ninayquipa trucanga ¿imanirtag manacamalar caycanqui?</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="a5019bfe-c2db-4218-9778-0865bc4abc83" ownerguid="df687f25-5ed2-43c1-a2c9-78c1db3b4381"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">list</AUni> -<AUni ws="es">lista</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1919b709-5d41-4594-9259-9a64b46a125f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a503cb69-5336-4b15-bb94-6a81a7c96a05"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shiri</AUni> -<AUni ws="qvm-x-acl">shiri; shire</AUni> -<AUni ws="qvm-x-akh">shiri</AUni> -<AUni ws="qvm-x-akl">shiri; shire</AUni> -<AUni ws="qvm-x-ame">shiri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shiri</AUni> -<AUni ws="qvm-x-acl">*shiri</AUni> -<AUni ws="qvm-x-akh">*shiri</AUni> -<AUni ws="qvm-x-akl">*shiri</AUni> -<AUni ws="qvm-x-ame">*shiri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.610" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3fab0bd2-c3e9-4c0f-b38c-34ed06113237" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shiri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0b6ce15a-f01d-4839-ad02-abd430e32d19" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fe336ac1-4c3f-4ab1-a759-4b7a7ed87530" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shiri 
\entryTyp root 
\gENG mate 
\gSPN aparearse 
\e *shiri 
\c V2 
\mp +FinalI 
\ach shiri 
\akh shiri 
\acl shiri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shire +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shiri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shire +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shiri</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a505d3f3-312a-4451-a35e-0f80d53b899f" ownerguid="3f6dc9af-0c50-44d5-99f0-4aa67c668186"> -<ExampleWords> -<AUni ws="en">pipeline, pump, oil tanker, tank, tanker truck</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What tools and machines are used for moving oil and gas?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a50856b4-6fa7-4064-84cd-df419cf1836a" ownerguid="b672e8ab-cdcc-41e4-8d33-c919ac9a068e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="a50b36b3-5bc5-4332-9b3b-ab52785ad713" ownerguid="a06d8571-f152-4ad9-9cff-47685527e2b4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">braid</AUni> -<AUni ws="es">trensar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="490b8b98-8301-458d-88e4-69b783b7425b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a50d88ce-2ce0-4765-9e4e-da9407d8d482" ownerguid="00269021-e1c4-474d-9dba-341d296bdac7"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">the first child; the second taxi; the next person (to speak); the last person (out the door)</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(10) In English 'Order' can be expressed by a noun phrase with no overt marker.</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a50f38f9-87df-4259-b674-bf1aa4242ed9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chaccha</AUni> -<AUni ws="qvm-x-acl">chaccha</AUni> -<AUni ws="qvm-x-akh">chaccha</AUni> -<AUni ws="qvm-x-akl">chaccha</AUni> -<AUni ws="qvm-x-ame">chaccha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+chacchar</AUni> -<AUni ws="qvm-x-acl">+chacchar</AUni> -<AUni ws="qvm-x-akh">+chacchar</AUni> -<AUni ws="qvm-x-akl">+chacchar</AUni> -<AUni ws="qvm-x-ame">+chacchar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.254" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b69adb84-d535-4786-85d9-403171273b96" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+chacchar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="10d7b08f-7c8f-4731-a60c-ba4c90fbcddf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6f9d5643-2bb6-4b86-8302-c665dee2ccf7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +chacchar 
\entryTyp root 
\gENG to.stand.out 
\gSPN superar 
\e +chacchar 
\c V1 
\ach chaccha 
\akh chaccha 
\acl chaccha 
\akl chaccha 
\ame chaccha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a50fd996-1695-46f8-9daf-578be385ba8c" ownerguid="ed4a2ca6-c03c-4c72-9431-b72fb7294b8f"> -<ExampleWords> -<AUni ws="en">bride, bridal, groom, bridegroom, couple, bride and groom</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the people who are getting married?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a5104a30-fd18-4b79-8497-96a0e7c70822" ownerguid="c65a5371-6156-4f7b-83cb-3b0005867d7d"> -<Form> -<AUni ws="qvm-x-ach">agradëci</AUni> -<AUni ws="qvm-x-acl">agradëci; agradëce</AUni> -<AUni ws="qvm-x-akh">agradëci</AUni> -<AUni ws="qvm-x-akl">agradëci; agradëce</AUni> -<AUni ws="qvm-x-ame">agradëci</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a513ed3f-ea28-4694-bda8-ebf303cd2c3b" ownerguid="90785272-00d8-4377-82bd-2803fd4027ce"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">moment</AUni> -<AUni ws="es">rato</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ea649ede-f6af-42e5-af0c-7008bc3f6b42" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a5142cbb-77a6-43c3-a2a0-f9831f7f611b" ownerguid="f211defe-d80f-4e40-9842-af19cb0719e7"> -<ExampleWords> -<AUni ws="en">Judaism, Jew, Jewish, Israel, Torah, Mishna, rabbi, synagogue, kosher, Passover, Hanukkah, Messiah, Mosaic Law</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to talk about Judaism?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a51827e1-c92d-4ff2-980f-7fc864c5b938" ownerguid="67d10a00-fda8-4a3a-becd-f3ae3b00fcca"> -<ExampleWords> -<AUni ws="en">be in a state of shock, traumatized, shattered</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to being very shocked or shocked for a long time?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="a51b6146-e484-47bd-9cc9-7a1535bcb501"> -<Analyses> -<objsur guid="eba15b58-b8ca-4123-9d5e-ae4f24a0db78" t="o" /> -</Analyses> -<Checksum val="-763616158" /> -<Form> -<AUni ws="qvm-x-akh">kushishqa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="a51b808e-e22e-4784-b577-e2cd73c62637"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ga</AUni> -<AUni ws="qvm-x-acl">ga</AUni> -<AUni ws="qvm-x-akh">qa</AUni> -<AUni ws="qvm-x-akl">qa</AUni> -<AUni ws="qvm-x-ame">qa</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.586" /> -<DateModified val="2022-10-16 15:28:37.603" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ad55e4ad-cad4-4eb6-adc9-e41a236ae9cd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">TOP</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0daaea2b-9cca-4a9f-953a-83273b1d5023" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="50df97b3-2d9c-48ae-ab56-d24155815026" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx TOP 
\entryTyp suffix 
\gENG TOP 
\gSPN TOP 
\e TOP 
\c N0/N0 R0/R0 V0/V0 ONSHEV/ONSHEV BN/BN 
\o 240 
\mp -PMonophthongized 
\ach ga 
\akh qa 
\acl ga 
\akl qa 
\ame qa 
\mcc TOP / BEN1 1 COND ~_ 
\mcc TOP / ~_ DIR.V</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a51bee8c-209a-48e7-b26e-611645f3c4fb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wac</AUni> -<AUni ws="qvm-x-acl">wac</AUni> -<AUni ws="qvm-x-akh">wak</AUni> -<AUni ws="qvm-x-akl">wak</AUni> -<AUni ws="qvm-x-ame">wak</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wak</AUni> -<AUni ws="qvm-x-acl">*wak</AUni> -<AUni ws="qvm-x-akh">*wak</AUni> -<AUni ws="qvm-x-akl">*wak</AUni> -<AUni ws="qvm-x-ame">*wak</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.434" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9877608f-5900-43c7-b321-63addb34dad5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wak</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="55cec91f-07f2-4291-948a-3f7383c9c918" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3b90c54e-d1ea-4663-9c74-32946a760a02" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wak 
\entryTyp root 
\gENG other.side 
\gSPN vuelta 
\e *wak 
\c N0 
\mp +FinalC 
\ach wac 
\akh wak 
\acl wac 
\akl wak 
\ame wak 
\mcc *wak / ~_ CAUSBE 
\mcc *wak / ~_ SUR 
\mcc *wak / ~_ CAUSBE2</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a51db7c8-83f8-48d1-8308-fd980ca8d846" ownerguid="d299e78b-b4e5-4b52-8dc2-54b91154382d"> -<Form> -<AUni ws="qvm-x-ach">ucya</AUni> -<AUni ws="qvm-x-acl">ucya</AUni> -<AUni ws="qvm-x-akh">ukya</AUni> -<AUni ws="qvm-x-akl">ukya</AUni> -<AUni ws="qvm-x-ame">ukya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a5206e1d-e5aa-414e-b96a-3bb9681a4866"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">eneldu; eneldo</AUni> -<AUni ws="qvm-x-acl">eneldu; eneldu; eneldo</AUni> -<AUni ws="qvm-x-akh">eneldu; eneldo</AUni> -<AUni ws="qvm-x-akl">eneldu; eneldu; eneldo</AUni> -<AUni ws="qvm-x-ame">eneldu; eneldo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+eneldo</AUni> -<AUni ws="qvm-x-acl">+eneldo</AUni> -<AUni ws="qvm-x-akh">+eneldo</AUni> -<AUni ws="qvm-x-akl">+eneldo</AUni> -<AUni ws="qvm-x-ame">+eneldo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.467" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1f488231-7d46-4d24-866e-aabaf0aaa8a2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+eneldo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4e1bbe62-dc94-4f7f-8b0f-35933e5c9702" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0643331d-4d96-419b-80de-4253a6ae6fcd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +eneldo 
\entryTyp root 
\gENG dill 
\gSPN eneldo 
\e +eneldo 
\c N0 
\ach eneldu / ~_# 
\ach eneldo / _# 
\akh eneldu / ~_# 
\akh eneldo / _# 
\acl eneldu / ~_# 
\acl eneldu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl eneldo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl eneldu / ~_# 
\akl eneldu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl eneldo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame eneldu / ~_# 
\ame eneldo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="a524d203-39e2-41dc-9a67-d0b49e025cb1" ownerguid="42cc7fe5-c15d-4deb-85c2-1cadc4e18228"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">slander</AUni> -<AUni ws="es">rinsilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1e55062b-34b5-4ead-858b-0f3a9d76963e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a52591db-90ed-4501-aa5f-d8a8fe4ff74a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shucu</AUni> -<AUni ws="qvm-x-acl">shucu; shuco</AUni> -<AUni ws="qvm-x-akh">shuku</AUni> -<AUni ws="qvm-x-akl">shuku; shuko</AUni> -<AUni ws="qvm-x-ame">shuku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shuku</AUni> -<AUni ws="qvm-x-acl">*shuku</AUni> -<AUni ws="qvm-x-akh">*shuku</AUni> -<AUni ws="qvm-x-akl">*shuku</AUni> -<AUni ws="qvm-x-ame">*shuku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.622" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="90964207-9f18-4f9d-9f7c-6417c8737bea" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shuku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7789d2b1-9d83-45d4-87f7-80348fd1efea" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4ca1dc00-ccd6-4b8b-bfb5-6bca0ff55658" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shuku 
\entryTyp root 
\gENG cover 
\gSPN tapar 
\e *shuku 
\c V1 
\ach shucu 
\akh shuku 
\acl shucu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shuco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shuku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shuko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shuku 
\co mcc *shuku / ~_ REF [y] 
\co tdhm shucucuy. 
\tr *shukukuy.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a52fd435-2281-4708-baca-9c21320a9824" ownerguid="4e7a6dfe-3654-4ca1-874d-02424581b774"> -<ExampleWords> -<AUni ws="en">deepen, get deeper</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something becoming deep?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a5320b42-b8da-49c9-bd6d-1dfca0f81db7" ownerguid="b0905fa9-2f90-410b-8eb5-7c7944c4f0f9"> -<ExampleWords> -<AUni ws="en">sleep around, promiscuous, promiscuity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to having sex with many people?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a5337f20-0242-4046-8187-7af1c0e18e19" ownerguid="6910b634-4d03-4fea-b771-849f2948e5c6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="a5364d61-21ed-456b-a0d5-c165fbf239c3" ownerguid="6f9ca431-5796-4d32-a3d7-8293ae8998ff"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="a536adf7-560b-4a50-8f3e-20bd505188df" ownerguid="a6eb0ea6-9e43-4baa-8fb5-5ea379d74241"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gore</AUni> -<AUni ws="es">cornear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0026e024-7022-4ede-aebc-7b6601b79d2f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a53da84f-5430-4cbb-96f9-a62e334f281d" ownerguid="ed4a2ca6-c03c-4c72-9431-b72fb7294b8f"> -<ExampleWords> -<AUni ws="en">procession, give (the bride) away, speech, wedding vows, pronouncement, reception, toast</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the parts of a wedding ceremony?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a53db78d-bc88-4d37-92df-bb17c2abba12" ownerguid="0448c78b-dbb7-417c-afc5-b227a1475825"> -<ExampleWords> -<AUni ws="en">arraign, book, lock up, imprison, put behind bars, handcuff, chain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What do the police do to a criminal?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a53ea826-40f2-4f62-a199-c96cc2d49503" ownerguid="932aa4f1-c31a-4d26-8e59-8b3f8371044b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="a540c97a-4d98-4e4b-9575-4cb09b431013" ownerguid="4d80670f-7cea-4381-bd29-2a1d7fdb295a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="82e9c3df-e95c-44d6-998d-f3779aad6808" t="r" /> -</Morph> -<Msa> -<objsur guid="1b3c6562-1662-468e-b5c0-fcf36256167d" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="a5466829-4cee-4a52-9a72-cd3eb880da81"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">montu:ra</AUni> -<AUni ws="qvm-x-acl">montu:ra</AUni> -<AUni ws="qvm-x-akh">montu:ra</AUni> -<AUni ws="qvm-x-akl">montu:ra</AUni> -<AUni ws="qvm-x-ame">montu:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+montura</AUni> -<AUni ws="qvm-x-acl">+montura</AUni> -<AUni ws="qvm-x-akh">+montura</AUni> -<AUni ws="qvm-x-akl">+montura</AUni> -<AUni ws="qvm-x-ame">+montura</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.477" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ef6fa65e-8d91-4c8c-a309-8ce52881e00a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+montura</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b3939df9-36a0-4790-a9e9-d31eeb5201c3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0e8f85e4-8049-41c7-b52d-b621b5e08a9d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +montura 
\entryTyp root 
\gENG saddle 
\gSPN silla.de.montar 
\e +montura 
\c N0 
\ach montu:ra 
\akh montu:ra 
\acl montu:ra 
\akl montu:ra 
\ame montu:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a5523b0a-40c9-4d87-b572-4014f5e7ae2a" ownerguid="f1b1ee7f-67e4-4471-b37b-34a4186bfbf4"> -<Form> -<AUni ws="qvm-x-ach">garwa</AUni> -<AUni ws="qvm-x-acl">garwa</AUni> -<AUni ws="qvm-x-akh">qarwa</AUni> -<AUni ws="qvm-x-akl">qarwa</AUni> -<AUni ws="qvm-x-ame">qarwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a5525b24-d1f6-4b42-820a-c16a66cce39d" ownerguid="c5da961a-7d78-4ad4-854c-bbfbad18de27"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">small</AUni> -<AUni ws="es">pequeño</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d1489a71-419e-48ef-9dba-7242754297db" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a553a829-c310-45cb-bb95-ecb9a96dd537" ownerguid="c9b5f83e-529d-45af-949f-4cc6b0591b66"> -<ExampleWords> -<AUni ws="en">improved, corrected</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that has been improved?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a5543b3c-5e6c-4731-ad29-1d1954a46f1a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ytsa; ytsa:</AUni> -<AUni ws="qvm-x-acl">ytsa; ytsa:</AUni> -<AUni ws="qvm-x-akh">ytsa; ytsa:</AUni> -<AUni ws="qvm-x-akl">ytsa; ytsa:</AUni> -<AUni ws="qvm-x-ame">ytsa; ytsa:</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.497" /> -<DateModified val="2022-10-16 14:59:23.89" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="00f6416b-c11d-427d-8776-e90a845aa41c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">CAUSBE3</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f9bf2f95-2c02-4382-b1c8-ec171a061f5e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d6be796d-e74f-43db-9a12-cc2bd101c1b4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx CAUSBE3 
\entryTyp suffix 
\gENG CAUSBE 
\gSPN CAUSER 
\e CAUSBE3 
\c N0/V2 N0/V2 V1/V1 V2/V2 
\o 020 
\mp +FinalC 
\mp +underlong 
\ach ytsa foreshortened 
\ach ytsa: 
\akh ytsa foreshortened 
\akh ytsa: 
\acl ytsa foreshortened 
\acl ytsa: 
\akl ytsa foreshortened 
\akl ytsa: 
\ame ytsa foreshortened 
\ame ytsa: 
\mp +FinalLength 
\mp +foreshortens</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a5567cfe-bf31-4c3f-b974-0cb316243111" ownerguid="879e66bc-af29-4fe4-86e0-0047973a57d6"> -<ExampleWords> -<AUni ws="en">limp, hobble, shamble, shuffle, walk haltingly, walk with a cane, use crutches, get around</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to limping?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a556d488-2c6e-4b6d-b406-915a9fec3919" ownerguid="78fa8e5e-9d52-47be-99df-37877922ade4"> -<Form> -<AUni ws="qvm-x-ach">casa</AUni> -<AUni ws="qvm-x-acl">casa</AUni> -<AUni ws="qvm-x-akh">casa</AUni> -<AUni ws="qvm-x-akl">casa</AUni> -<AUni ws="qvm-x-ame">casa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="a55b800d-5a9e-4d4f-8e1f-8c6964518db1" ownerguid="b5734f71-fac2-4a15-b17a-41581bf7f722"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a55eb1bd-8667-4003-aaf9-d76bf1a66cca" ownerguid="8ce6709f-f772-4638-a1aa-c132666f3563"> -<ExampleWords> -<AUni ws="en">be annoyed, feel annoyed, be fed up, be tired of, be sick of, have had enough of, have had it, have had it up to here, be at the end of your tether</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling annoyed?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a561ffe8-4abb-4e33-bfaa-b0a72c29533c" ownerguid="2c401e7f-6ce9-470f-b6b6-fadf7a798536"> -<ExampleWords> -<AUni ws="en">break room, lunchroom, in the shade</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) Where do workers rest?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a5625b5c-8657-44b4-9700-185095eb5e15"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">itu</AUni> -<AUni ws="qvm-x-acl">itu; ito</AUni> -<AUni ws="qvm-x-akh">itu</AUni> -<AUni ws="qvm-x-akl">itu; ito</AUni> -<AUni ws="qvm-x-ame">itu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*itu</AUni> -<AUni ws="qvm-x-acl">*itu</AUni> -<AUni ws="qvm-x-akh">*itu</AUni> -<AUni ws="qvm-x-akl">*itu</AUni> -<AUni ws="qvm-x-ame">*itu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.870" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b6037fa3-e8f2-409b-93d2-fe7488a7cbe5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*itu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6cc03415-e59c-4f5c-b0c9-1e55f639b589" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="26e0a6b0-efe2-4a36-91a5-612b8fc61247" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *itu 
\entryTyp root 
\gENG 
\gSPN 
\e *itu 
\c V1 
\ach itu 
\akh itu 
\acl itu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl itu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame itu 
\i 2CO 4.2 Manami pitapis engañaykätsu ni Tayta Diospa wilakuyninman ituykatsilar kikëkunapa yarpaynëkunata yapapäkötsu.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a562faa1-4197-4f02-9185-a3a11c912f0d" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<ExampleWords> -<AUni ws="en">gross, outsized, overgrown, oversized, unwieldy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(19) What words describe something that is too big?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a56402ad-3fd7-4862-be14-b8f13eab4ab7" ownerguid="ca6f505d-6e7a-45b3-8d3d-d18a16ddc207"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">peel</AUni> -<AUni ws="es">pelar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9d72d02d-a64f-4a6d-b2ed-27aeff4e3e03" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a5672516-ed80-4ede-821f-ef437ab9caac" ownerguid="167bfba5-0785-4bb5-a083-3ffbefa57897"> -<ExampleWords> -<AUni ws="en">appraisal, appraise, evaluate, weigh (the merits of)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the process of determining the value of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a56a9546-d713-48d0-84ac-690436d999c7" ownerguid="bca1d45b-f438-497e-b9b2-1f0e67f3a410"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="95ea7114-aa0f-4699-8ed3-aba5c1dbcd71" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="0128d027-3c04-4277-84c7-fd4985e00616" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a56a9d85-43ab-4fd1-a1b6-bf8878f0cbff" ownerguid="8863ed55-e31f-4eae-8b56-5c020f073658"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rent</AUni> -<AUni ws="es">alquilo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d34bf917-b729-484d-add3-dbad3eff722a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a56ab66b-6c3c-4116-9ada-e8430569dca8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lle:na</AUni> -<AUni ws="qvm-x-acl">lle:na</AUni> -<AUni ws="qvm-x-akh">lle:na</AUni> -<AUni ws="qvm-x-akl">lle:na</AUni> -<AUni ws="qvm-x-ame">lle:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+llenar</AUni> -<AUni ws="qvm-x-acl">+llenar</AUni> -<AUni ws="qvm-x-akh">+llenar</AUni> -<AUni ws="qvm-x-akl">+llenar</AUni> -<AUni ws="qvm-x-ame">+llenar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.184" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="97f4b120-beca-46b6-ab42-57d87ee89ba3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+llenar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1db7e5ac-01ea-4a41-8a2f-af91bdf73c0f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ba5e0bb8-4705-4631-bd60-4586d1dc7306" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +llenar 
\entryTyp root 
\gENG fill 
\gSPN llenar 
\e +llenar 
\c V2 
\ach lle:na 
\akh lle:na 
\acl lle:na 
\akl lle:na 
\ame lle:na</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="a56ebeab-7cb9-4a28-8fb0-d0aa5e45c175" ownerguid="f8026a5b-8134-4f56-bb77-4257c8f8c8a7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="WfiWordform" guid="a570a474-b7fd-4dae-9298-f423836820a3"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Tsaypita</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="a57185c3-0cb5-41fa-94bf-da0c9edac600" ownerguid="fb84538a-17a8-4adc-8d50-e2b66f8e4099"> -<Abbreviation> -<AUni ws="en">8.1.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.559" /> -<DateModified val="2022-9-23 16:55:8.559" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to multiples of something (single, double, triple).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>60F Double, Four Times As Much, Etc.</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Multiples</AUni> -</Name> -<Questions> -<objsur guid="0b509e56-5fca-4163-a9c1-5a294f77cf65" t="o" /> -<objsur guid="3160197e-cc5f-49a5-a517-550ffb72675a" t="o" /> -<objsur guid="b5a910a2-2917-45dc-837a-8329be34a753" t="o" /> -<objsur guid="49adcf2a-91f4-4b8a-85a4-c0e72966dd13" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="a5789adf-d362-46cf-98b5-04d7ab0444d7" ownerguid="752d8412-ab63-4488-b252-a831a7f70b6c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">problem</AUni> -<AUni ws="es">problema</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ebd96303-5122-40dd-ae06-544e86de4303" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="a578ea88-bc35-4164-b476-8a6c4af23546" ownerguid="3d73dfa6-dca0-47db-a7e8-bd63f73569a7"> -<Form> -<AUni ws="qvm-x-ach">ultu</AUni> -<AUni ws="qvm-x-acl">ultu; ultu; ulto</AUni> -<AUni ws="qvm-x-akh">ultu</AUni> -<AUni ws="qvm-x-akl">ultu; ultu; ulto</AUni> -<AUni ws="qvm-x-ame">ultu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="a57d07e8-3006-4b77-b54d-9d7be5a364fa" ownerguid="304b7d5f-51af-480a-af98-77a7578039fa"> -<Form> -<AUni ws="qvm-x-ach">gransa</AUni> -<AUni ws="qvm-x-acl">gransa</AUni> -<AUni ws="qvm-x-akh">gransa</AUni> -<AUni ws="qvm-x-akl">gransa</AUni> -<AUni ws="qvm-x-ame">gransa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a57fbc6a-0900-4abd-a3a3-5a9d952f1e61" ownerguid="9fc25175-3b4a-4248-bc7f-b86012ec584f"> -<ExampleWords> -<AUni ws="en">charcoal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to charcoal?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a5812ea3-9546-4771-9b15-9314ccab057e" ownerguid="8dadf36f-cf98-4a46-b26b-98a3882b7a13"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a5818c97-176d-4b69-abc6-62c7565c8a41" ownerguid="ef025cd9-dd92-442b-a8f9-fe7ac944ccec"> -<ExampleWords> -<AUni ws="en">catch, intercept, snag</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to catching something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a5822a50-89fb-4d47-8305-959167df4a0d" ownerguid="802c371e-6a7a-4929-b99a-dcbcc28b3d01"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1 V2/V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="58121728-55af-4431-a83e-2f0383f8f46b" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">DUR</AUni> -<AUni ws="es">DUR</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a22f2957-a229-4afb-b8d3-b397bafea06d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a5822b96-a849-4b28-8dd1-48ea51613cc7" ownerguid="2cee0d5b-86bd-4cee-b1eb-781af915a9ce"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stone.wall</AUni> -<AUni ws="es">muralla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="04cf3262-fd40-47c8-ad21-52f6c2546c4d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="a582370d-11f2-4061-a4bb-537549f86156" ownerguid="6159b0fc-f2b4-488e-a8b9-f1e8e13cd5fe"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoDerivAffMsa" guid="a5828f29-3281-474f-84d6-378971bbc0be" ownerguid="1ae6e023-810b-43f5-8de7-cbb3346890ef"> -<FromPartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</FromPartOfSpeech> -<ToPartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</ToPartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="a58332db-c18b-4c45-897c-cad02133464f" ownerguid="f067ae9a-5f5b-44a4-b710-bb1357746fa8"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Deu 19.18 Tsaynogpami lutan yarpayniyog runacunata mana consientinquitsu.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="a584604e-aa2d-4d91-803b-9276879b59ca" ownerguid="d5a03a9e-11be-4a1a-973e-1bd82e25999b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a5846a0c-bc12-44d1-a69c-09563cc1cc5c" ownerguid="98ec2d97-4a2c-4f63-b3f9-32d5083d089e"> -<Form> -<AUni ws="qvm-x-ach">cäyi</AUni> -<AUni ws="qvm-x-acl">cäyi; cäye</AUni> -<AUni ws="qvm-x-akh">cäyi</AUni> -<AUni ws="qvm-x-akl">cäyi; cäye</AUni> -<AUni ws="qvm-x-ame">cäyi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a5855a80-ede7-423d-9f7b-428cb68d910b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">unapis</AUni> -<AUni ws="qvm-x-acl">unapis</AUni> -<AUni ws="qvm-x-akh">unapis</AUni> -<AUni ws="qvm-x-akl">unapis</AUni> -<AUni ws="qvm-x-ame">unapis</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*unapis</AUni> -<AUni ws="qvm-x-acl">*unapis</AUni> -<AUni ws="qvm-x-akh">*unapis</AUni> -<AUni ws="qvm-x-akl">*unapis</AUni> -<AUni ws="qvm-x-ame">*unapis</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.231" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="27d309b3-642e-4231-a10c-d18fa78f27c4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*unapis</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="39729f79-7380-42a8-8a49-aac426b0769d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="327281fe-f369-401c-8140-e0f3ffe6348b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *unapis 
\entryTyp root 
\gENG similar 
\gSPN semejanza 
\e *unapis 
\c NOSUFF 
\ach unapis 
\akh unapis 
\acl unapis 
\akl unapis 
\ame unapis</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a58737ab-014c-4e62-af46-dc55cceb0618" ownerguid="9b02529b-7ad9-4f75-a119-a46b3c96dde4"> -<Form> -<AUni ws="qvm-x-ach">ata</AUni> -<AUni ws="qvm-x-acl">ata</AUni> -<AUni ws="qvm-x-akh">ata</AUni> -<AUni ws="qvm-x-akl">ata</AUni> -<AUni ws="qvm-x-ame">ata</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a58ea2af-a2aa-47ee-b94b-3716e9bb76d0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ashti</AUni> -<AUni ws="qvm-x-acl">ashti; ashte</AUni> -<AUni ws="qvm-x-akh">ashti</AUni> -<AUni ws="qvm-x-akl">ashti; ashte</AUni> -<AUni ws="qvm-x-ame">ashti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ashti</AUni> -<AUni ws="qvm-x-acl">*ashti</AUni> -<AUni ws="qvm-x-akh">*ashti</AUni> -<AUni ws="qvm-x-akl">*ashti</AUni> -<AUni ws="qvm-x-ame">*ashti</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.850" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="671ad197-76f9-412d-a8da-115ebd6fb446" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ashti</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e0362ccd-f1ef-49c5-9619-859b378dcf77" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="696d0309-7ab0-479c-aafd-d3d79df6caa7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ashti 
\entryTyp root 
\gENG 
\gSPN 
\e *ashti 
\c V1 
\mp +FinalI 
\ach ashti 
\akh ashti 
\acl ashti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ashte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ashti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ashte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ashti</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a5963716-b67a-449e-ae09-2888a927abd8" ownerguid="82602177-e119-4dc8-a754-4130f46ff764"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="a597d8f2-868c-4450-9a8f-421b8426c381" ownerguid="e899f2b9-0495-4e34-b3e6-2a909b32b866"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">suitcase</AUni> -<AUni ws="es">maletín</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="49613aee-242c-4bba-9a59-86a3d4c8c47c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a59b8884-4ce6-4d80-97a0-b5b89f5316df"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lección; leccion</AUni> -<AUni ws="qvm-x-acl">lección; leccion</AUni> -<AUni ws="qvm-x-akh">lección; leccion</AUni> -<AUni ws="qvm-x-akl">lección; leccion</AUni> -<AUni ws="qvm-x-ame">lección; leccion</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lección</AUni> -<AUni ws="qvm-x-acl">+lección</AUni> -<AUni ws="qvm-x-akh">+lección</AUni> -<AUni ws="qvm-x-akl">+lección</AUni> -<AUni ws="qvm-x-ame">+lección</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.63" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fe92dbbd-c6f7-4098-b7bf-c22770170a99" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lección</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="03058a13-b66a-464d-8cab-6138ec48f21c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="93096824-7d62-435f-b864-f94f21134670" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lección 
\entryTyp root 
\gENG lesson 
\gSPN lección 
\e +lección 
\c N0 
\mp +FinalC 
\ach lección / _# 
\ach leccion / ~_# 
\akh lección / _# 
\akh leccion / ~_# 
\acl lección / _# 
\acl leccion / ~_# 
\akl lección / _# 
\akl leccion / ~_# 
\ame lección / _# 
\ame leccion / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a59d3c3c-1da8-4da2-b56a-314183a4994e" ownerguid="a4c64fcf-79d7-4fdc-a32c-b86d1be35568"> -<Form> -<AUni ws="qvm-x-ach">venda</AUni> -<AUni ws="qvm-x-acl">venda</AUni> -<AUni ws="qvm-x-akh">venda</AUni> -<AUni ws="qvm-x-akl">venda</AUni> -<AUni ws="qvm-x-ame">venda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a59fc3b7-939d-4b14-86d6-214ea3e3fa13" ownerguid="12a028d1-d910-4011-ab9d-59be69daaf65"> -<ExampleWords> -<AUni ws="en">reaction, response, feedback, backlash</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to how someone reacts?</AUni> -</Question> -</rt> -<rt class="StStyle" guid="a5a1a249-b888-434d-a839-a2421ec50dbf" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="7d2c80cd-af87-4d56-8337-cfd389b775bb" t="r" /> -</BasedOn> -<Context val="10" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Section Head</Uni> -</Name> -<Next> -<objsur guid="679ab46a-8a27-4449-91b1-edad14669b01" t="r" /> -</Next> -<Rules> -<Prop align="center" bold="invert" fontsize="9000" fontsizeUnit="mpt" keepTogether="1" keepWithNext="1" spaceAfter="4000" spaceBefore="8000"></Prop> -</Rules> -<Structure val="1" /> -<Type val="0" /> -<Usage> -<AUni ws="en">Section Head identifies the start of a normal section.</AUni> -</Usage> -<UserLevel val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="a5a1a89b-e089-4ac1-9340-29475e5260ed" ownerguid="98dc4bb9-47a5-4f61-9a89-e7a1b5d0f0ba"> -<Form> -<AUni ws="qvm-x-ach">mamá</AUni> -<AUni ws="qvm-x-acl">mamá</AUni> -<AUni ws="qvm-x-akh">mamá</AUni> -<AUni ws="qvm-x-akl">mamá</AUni> -<AUni ws="qvm-x-ame">mamá</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a5a6021b-6c09-467a-ab5a-08400588f9e8" ownerguid="fc0afb69-a4d4-439a-91cd-ed0ce67677b5"> -<ExampleWords> -<AUni ws="en">cooked, boiled, braised, broiled, fried, grilled, marinated, parboiled, pickled, poached, sautéed, stewed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that has been cooked?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a5a96727-b9ab-4fec-8afa-12701c6c1be4" ownerguid="de2b5010-6fa5-41f6-8916-c6808283acec"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="a5aa95aa-738a-45b1-9b07-243dada56361" ownerguid="d6ab90a1-24c7-4fc5-a1ae-92c8f826f2b3"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="a5af1845-8fde-493c-ae1b-46ccacaea819" ownerguid="9389dcf8-096d-415f-91ab-e03ef84e16e8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="a5b03f12-55fc-4a09-889b-edd1cdf26c99" ownerguid="9a3cf33a-4804-4eb4-8dfd-80f6018764e5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoInflAffMsa" guid="a5b30965-e5c8-452a-9057-ed02c784d19b" ownerguid="9cff6edc-9b12-4926-ae50-c3ef3cae55f6"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="c1118d19-b22a-4beb-87cf-1c1faf476ece" t="r" /> -</Slots> -</rt> -<rt class="MoStemMsa" guid="a5b42144-371c-4767-a26f-bafed0c81b90" ownerguid="d5319800-c4ad-4a6f-957e-3b4b993e7b7f" /> -<rt class="MoStemAllomorph" guid="a5b55a99-ee42-47fa-b5ef-58ca6b789acc" ownerguid="3ba7b5a4-38b1-4107-a05e-b7d62e560880"> -<Form> -<AUni ws="qvm-x-ach">recomendación; recomendacion</AUni> -<AUni ws="qvm-x-acl">recomendación; recomendacion</AUni> -<AUni ws="qvm-x-akh">recomendación; recomendacion</AUni> -<AUni ws="qvm-x-akl">recomendación; recomendacion</AUni> -<AUni ws="qvm-x-ame">recomendación; recomendacion</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a5b70782-a3d2-4454-b564-fbe9eccfa471" ownerguid="be89e0ba-4c6a-4986-ac0d-859a901b89a1"> -<ExampleWords> -<AUni ws="en">imagination, vivid imagination, fertile imagination, creativity, inventiveness, vision</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the ability to imagine?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a5b7564a-6c25-4fe5-9d29-50563b3357d1" ownerguid="1b3dccfe-29e4-478e-8443-17be9454a05a"> -<ExampleWords> -<AUni ws="en">Leave it. Leave it where it is. Leave it behind. Leave it here. Don't move it. Forget it.</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What commands are used to ask someone to leave something where it is?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a5b803cf-f8c9-4144-8ee3-db7048706599" ownerguid="fadc0a78-523b-4977-a78a-aecf75c90c5e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lessen</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fbda9047-4d8e-472f-8451-a57c60df3cb9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="a5b9fee5-b51f-4a1d-b98a-74f772649e6e" ownerguid="ff5c0122-12ac-4dbe-9c15-5fdb108b690f"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 28.42 Tsaynogpis lïnupita calzoncillunta tseglapita gonguryag ruratsipanqui pengayninta tsapananpag.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="a5ba96ff-77b0-49c5-b1a8-bf8f13879627"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chichu</AUni> -<AUni ws="qvm-x-acl">chichu; chichu; chicho</AUni> -<AUni ws="qvm-x-akh">chichu</AUni> -<AUni ws="qvm-x-akl">chichu; chichu; chicho</AUni> -<AUni ws="qvm-x-ame">chichu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tritru</AUni> -<AUni ws="qvm-x-acl">*tritru</AUni> -<AUni ws="qvm-x-akh">*tritru</AUni> -<AUni ws="qvm-x-akl">*tritru</AUni> -<AUni ws="qvm-x-ame">*tritru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.139" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b976a7a0-bffd-42fd-a21d-18b87d6d87ef" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tritru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="608c4cf8-251b-4417-8976-50c6bb4870ce" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2cf2c3e6-fea3-4b3d-95bf-a252cc309a7a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tritru 
\entryTyp root 
\gENG pregnant 
\gSPN embarazada 
\e *tritru 
\c N0 
\ach chichu 
\akh chichu 
\acl chichu / _# 
\acl chichu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chicho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chichu / _# 
\akl chichu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chicho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chichu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a5bc1843-121b-455b-99eb-067798064e94" ownerguid="73499b8b-76fc-4121-8bfa-1bdebe537259"> -<ExampleWords> -<AUni ws="en">amphibian, aquatic, arboreal, barnyard, tropical</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to where an animal lives?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a5bc2adb-6fcb-4b12-8fe8-9e4921745aef" ownerguid="b8e66bb4-140c-45b4-89ce-d9a77b9e5d21"> -<ExampleWords> -<AUni ws="en">London, Washington D.C.</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the names of the cities in the language area?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a5bdc365-afb7-4c58-875f-c9b462aae427" ownerguid="8439fc80-2f31-4c82-9ca6-d8d3e86c5cca"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="a5bfa564-0cad-4014-8007-7372a7def937"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bronci; bronce</AUni> -<AUni ws="qvm-x-acl">bronci; bronci; bronce</AUni> -<AUni ws="qvm-x-akh">bronci; bronce</AUni> -<AUni ws="qvm-x-akl">bronci; bronci; bronce</AUni> -<AUni ws="qvm-x-ame">bronci; bronce</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bronce.1</AUni> -<AUni ws="qvm-x-acl">+bronce.1</AUni> -<AUni ws="qvm-x-akh">+bronce.1</AUni> -<AUni ws="qvm-x-akl">+bronce.1</AUni> -<AUni ws="qvm-x-ame">+bronce.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.981" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dd4e30ee-8070-41cd-9b11-421816d11cd4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bronce.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3264c6e5-5450-4ffd-8415-99ddac21d62b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e7aaf41c-250e-48c2-8d2f-e6f97cd16237" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bronce.1 
\entryTyp root 
\gENG bronze 
\gSPN 
\e +bronce.1 
\c N0 
\ach bronci / ~_# 
\ach bronce / _# 
\akh bronci / ~_# 
\akh bronce / _# 
\acl bronci / ~_# 
\acl bronci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl bronce +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl bronci / ~_# 
\akl bronci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl bronce +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame bronci / ~_# 
\ame bronce / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a5c3edd5-2f07-4d21-b49a-c7c34d1f62be" ownerguid="3be7e3fe-89d4-471a-92bd-8c70fcb146bb"> -<ExampleWords> -<AUni ws="en">be stone deaf, be as deaf as a post, totally deaf, profoundly deaf</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who is totally deaf?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a5c70540-e29c-4e44-b9a0-49b84061870c" ownerguid="06ad8615-b0d1-4f3e-897b-e73e058104e1"> -<Form> -<AUni ws="qvm-x-ach">laya</AUni> -<AUni ws="qvm-x-acl">laya</AUni> -<AUni ws="qvm-x-akh">laya</AUni> -<AUni ws="qvm-x-akl">laya</AUni> -<AUni ws="qvm-x-ame">laya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a5c91ca5-c6f0-464f-9b4c-a1fbdb9470b5" ownerguid="67d10a00-fda8-4a3a-becd-f3ae3b00fcca"> -<ExampleWords> -<AUni ws="en">shocked, deeply shocked, stunned, shaken, dazed, speechless, horrified, aghast, mortified, outraged, scandalized</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels shocked?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a5ccd859-5c9e-4481-9805-9c8f82d27d63" ownerguid="d244e8e6-c47f-490c-a998-5841eca099ce"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">round</AUni> -<AUni ws="es">redondo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cd03ae38-94ec-4cf6-ae24-f8648dd9e96c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="a5cd5d27-e792-49d6-92b5-e134f46c2508" ownerguid="0eeb062f-1ee4-425b-a2c1-18feb55c4269"> -<Form> -<AUni ws="qvm-x-ach">shuyu</AUni> -<AUni ws="qvm-x-acl">shuyu; shuyu; shuyo</AUni> -<AUni ws="qvm-x-akh">shuyu</AUni> -<AUni ws="qvm-x-akl">shuyu; shuyu; shuyo</AUni> -<AUni ws="qvm-x-ame">shuyu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a5ce751f-cb61-42d0-950e-fed8e683c75d" ownerguid="986e2ed8-9085-4f9d-ab90-8e5ceb24a48c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">suddenly</AUni> -<AUni ws="es">de.repente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6c4aa1e1-0256-4701-aba4-930d855ef1f9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="a5d66a3a-979d-47c1-9afb-c4b9bb14020b" ownerguid="5d20d7b4-fc80-4289-a895-00ddf2f32376"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="a5da0e4e-9b52-481f-8fc7-38aa262d978b" ownerguid="90b541db-e0f1-4c0a-91e3-ff4962410eb7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">clothes</AUni> -<AUni ws="es">ropa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d3e1d2fb-6f42-4dcf-98a5-ec702ddf64a1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a5dc36c2-02e0-410c-a46b-95dae49c215b" ownerguid="d345142f-d51e-4023-a25a-2a4c0f1fbcbf"> -<ExampleWords> -<AUni ws="en">prepare field, clear field</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to preparing a field?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="a5dc6db0-b7c0-4f11-a091-34c72060e8b8" ownerguid="ca34fbb8-44db-4e14-9a62-e483dd3db481"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a4d42f6f-d626-4469-8166-21d6f4e69d6d" t="r" /> -</Morph> -<Msa> -<objsur guid="72dc7bab-4d12-4cdb-a144-3c853f889fb5" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="a5debbdb-4df7-4758-acf5-3738842ebf94" ownerguid="531af868-b5fb-41c2-ba50-764458f9102f"> -<ExampleWords> -<AUni ws="en">bush, bushy, shrub, hedge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to bushes?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a5e0766b-516a-47b8-a4ac-f41a36792b2f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lapice:ru</AUni> -<AUni ws="qvm-x-acl">lapice:ru; lapice:ru; lapice:ro</AUni> -<AUni ws="qvm-x-akh">lapice:ru</AUni> -<AUni ws="qvm-x-akl">lapice:ru; lapice:ru; lapice:ro</AUni> -<AUni ws="qvm-x-ame">lapice:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lapicero</AUni> -<AUni ws="qvm-x-acl">+lapicero</AUni> -<AUni ws="qvm-x-akh">+lapicero</AUni> -<AUni ws="qvm-x-akl">+lapicero</AUni> -<AUni ws="qvm-x-ame">+lapicero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.530" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="90aa29c3-73ab-4efa-a3c4-c49e28360794" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lapicero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="70504187-07d5-4cb2-a51a-f889adb4bd5a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ac1a8e9e-c018-4206-86a4-53fe0a31c64b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lapicero 
\entryTyp root 
\gENG pen 
\gSPN lapicero 
\e +lapicero 
\c N0 
\ach lapice:ru 
\akh lapice:ru 
\acl lapice:ru / _# 
\acl lapice:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lapice:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lapice:ru / _# 
\akl lapice:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lapice:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lapice:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a5e2d668-66b6-494c-b91e-a15d45f1ac90" ownerguid="08bcc187-08e4-4016-89a3-73c45fda9f3d"> -<Form> -<AUni ws="qvm-x-ach">libri; libre</AUni> -<AUni ws="qvm-x-acl">libri; libri; libre</AUni> -<AUni ws="qvm-x-akh">libri; libre</AUni> -<AUni ws="qvm-x-akl">libri; libri; libre</AUni> -<AUni ws="qvm-x-ame">libri; libre</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a5e4126e-bc63-47f6-8399-25d080e4aad1" ownerguid="f0fd4572-67b7-42b3-81d0-38ed7db7b9e1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cold</AUni> -<AUni ws="es">gripe</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8acc7331-8061-4851-ad9c-1bfd9f32758d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a5e4979f-69c0-4a97-9f40-ad865c189905" ownerguid="1b6b0c12-9ecd-45cb-bb0e-0dadb435eddf"> -<ExampleWords> -<AUni ws="en">common, popular, widespread, widely</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that many people are doing?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a5e70fa3-19fb-4fde-88da-2272bee10294" ownerguid="225a2892-1bfd-43b4-b192-9398f05fd0f1"> -<Form> -<AUni ws="qvm-x-ach">puestu; puesto</AUni> -<AUni ws="qvm-x-acl">puestu; puestu; puesto</AUni> -<AUni ws="qvm-x-akh">puestu; puesto</AUni> -<AUni ws="qvm-x-akl">puestu; puestu; puesto</AUni> -<AUni ws="qvm-x-ame">puestu; puesto</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a5e8753c-ab0e-4eed-8a15-97d1daf53894" ownerguid="9f9ff37f-be37-43c5-8818-045a15e2c469"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gather</AUni> -<AUni ws="es">recoger</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="680ecf54-d3bc-4816-88ae-4f4bac9d076e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a5e8813a-aee1-4b33-98e6-1b29106e9448" ownerguid="191ca5a5-0a67-426e-adfc-6fdf7c2aaa2c"> -<ExampleWords> -<AUni ws="en">dwelling, house, home, abode, habitation, residence, homestead, settlement, compound, place</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to a house where people live?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a5e913d9-34a0-49e0-afab-6b5a1353929d" ownerguid="411f9559-9127-43a7-b17f-ab4d9b38e050"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stick</AUni> -<AUni ws="es">pegar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="91c19f3b-3f6b-41f4-be9d-d1176db8a423" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a5eca8ca-c6e2-458f-b0e3-3719efa8d9db" ownerguid="590aabbc-fe32-4a59-a39e-7f44825f9687"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">raise</AUni> -<AUni ws="es">criar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="76bad901-686a-4235-a0d4-9018f3711cf6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a5ecb812-1f4b-4db6-b422-9cf7aea9182d" ownerguid="e53c913f-91f1-4228-a845-7bfdfc80a1a8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hammer</AUni> -<AUni ws="es">martillo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1676b69a-9f83-499e-9707-8af5c395508d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a5ee8ed1-5af8-4cf0-a60d-d1d4706b43a3" ownerguid="0d427d55-d63e-4a35-a66a-5e4dce0a963e"> -<ExampleWords> -<AUni ws="en">difference, variation, dissimilarity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the way in which two things are different?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a5efa293-a878-45c5-ae35-b81c8a9bf3a8" ownerguid="5c1fb772-962c-4941-8593-f81f27add753"> -<Form> -<AUni ws="qvm-x-ach">luqui</AUni> -<AUni ws="qvm-x-acl">luqui; luque</AUni> -<AUni ws="qvm-x-akh">luki</AUni> -<AUni ws="qvm-x-akl">luki; luke</AUni> -<AUni ws="qvm-x-ame">luki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="a5f2d6b5-7688-491f-a2f6-dc33968c412f"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Diosnïmi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="a5f65a27-30c1-40c1-abc3-ff16adb944a6" ownerguid="89d3056f-bc26-4898-b825-b29ced75cdd7"> -<Form> -<AUni ws="qvm-x-ach">gocha</AUni> -<AUni ws="qvm-x-acl">gocha</AUni> -<AUni ws="qvm-x-akh">qocha</AUni> -<AUni ws="qvm-x-akl">qocha</AUni> -<AUni ws="qvm-x-ame">qucha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="a5f7feb9-72ff-444b-9de5-c325c60afd40" ownerguid="77de6f3c-0fc3-4f16-97e9-f96726c0a9e6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ali</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ali; ali; ale</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ali</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ali; ali; ale</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ali</Run> -</AStr> -</Form> -<Morph> -<objsur guid="5909b4a6-8ff0-4757-b7a4-28e1c643883c" t="r" /> -</Morph> -<Msa> -<objsur guid="373d0f40-8d63-45ed-a36c-6d34f5970b90" t="r" /> -</Msa> -</rt> -<rt class="WfiWordform" guid="a5f9bd69-aa7d-4272-ac8f-f28f6a0de6e8"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">runäpis</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="a5fed54e-3f29-4111-b347-63b4385f6aad" ownerguid="0e24efb5-6410-4331-b5c4-4681cc476873"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="a5ff5965-e0a7-4d5e-91c8-0dc34c30bc61" ownerguid="475cecdc-0fdb-4617-a3ba-bab898261913"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ground</AUni> -<AUni ws="es">molido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="947a6d33-bae4-4dc9-92d3-641847d5634b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a5ffa20c-871f-4b70-83bd-449751045d59" ownerguid="3ae3a1be-cfb5-4953-b65b-68f0c51b1d40"> -<ExampleWords> -<AUni ws="en">carving, sculpture, model</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something that has been carved?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a6039ee9-59ea-4d2d-a7f2-3449af741b7a" ownerguid="cd9a92f0-4f0d-4383-a9cd-32ff7d9cefa4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="a603c12d-3536-499c-a233-0bfe578ac5d7" ownerguid="91068787-99b8-4670-8742-22bb43df37c6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a60b8239-b45b-4128-9068-de7762cc5f5b" ownerguid="e4517880-aa2d-4977-b55a-dcb0b6d1f533"> -<ExampleWords> -<AUni ws="en">beautiful, lovely, cute</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a child who is beautiful?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a60bab5c-c707-4b32-b7f8-20644f83cdeb" ownerguid="10f0e28a-a156-4a18-8e97-4712b22d6c4b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a611f35f-f658-40e7-b9b3-3a473bae66bc" ownerguid="2b439c51-4151-4da9-99b3-e8735385d919"> -<Form> -<AUni ws="qvm-x-ach">aficionädu</AUni> -<AUni ws="qvm-x-acl">aficionädu; aficionädu; aficionädo</AUni> -<AUni ws="qvm-x-akh">aficionädu</AUni> -<AUni ws="qvm-x-akl">aficionädu; aficionädu; aficionädo</AUni> -<AUni ws="qvm-x-ame">aficionädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="a6136c2c-aade-4d91-a0cb-87b0e0c23128" ownerguid="8e3606ad-ee49-417d-8e25-d156e7ddf406"> -<Form> -<AUni ws="qvm-x-ach">washa; washä</AUni> -<AUni ws="qvm-x-acl">washa; washä</AUni> -<AUni ws="qvm-x-akh">washa; washä</AUni> -<AUni ws="qvm-x-akl">washa; washä</AUni> -<AUni ws="qvm-x-ame">washa; washä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a6153272-8e74-48a1-b24d-c37dcb15e1b5" ownerguid="49cd2c20-098a-46d9-9e47-6bf109308793"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The <emphasis> is on efficiency.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">emphasis, stress, importance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the importance placed on something?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="a6153955-312a-42b7-8e16-709a23fda364"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">1O</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="a61b986d-3ebd-42f5-b13f-4db9652bec0d" ownerguid="57f07b5f-75bf-4565-b969-ce0adc0b50d4"> -<ExampleWords> -<AUni ws="en">makes</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate the answer?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a61d37dd-dcba-42c1-b305-55d31e8e7fa0" ownerguid="78b10399-81b3-4bba-a17b-b811cdea46ef"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a620d9b0-88b8-43bc-afb0-27691bb0a7ff" ownerguid="67e57493-d286-4271-b877-f63f962dddf1"> -<ExampleWords> -<AUni ws="en">rod</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What instruments are used to measure an area?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a628f348-9748-4529-ae27-218e7281cf64"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">estanqui; estanque</AUni> -<AUni ws="qvm-x-acl">estanqui; estanqui; estanque</AUni> -<AUni ws="qvm-x-akh">estanqui; estanque</AUni> -<AUni ws="qvm-x-akl">estanqui; estanqui; estanque</AUni> -<AUni ws="qvm-x-ame">estanqui; estanque</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+estanque</AUni> -<AUni ws="qvm-x-acl">+estanque</AUni> -<AUni ws="qvm-x-akh">+estanque</AUni> -<AUni ws="qvm-x-akl">+estanque</AUni> -<AUni ws="qvm-x-ame">+estanque</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.506" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="82134d82-6ae9-415d-9ffc-fb7b311477cc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+estanque</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7de7703d-3780-4a7e-9afc-2573db33870e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e15c3312-6054-44ff-b87e-ebf86f9eb197" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +estanque 
\entryTyp root 
\gENG 
\gSPN 
\e +estanque 
\c N0 
\mp +FinalI 
\ach estanqui / ~_# 
\ach estanque / _# 
\akh estanqui / ~_# 
\akh estanque / _# 
\acl estanqui / ~_# 
\acl estanqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl estanque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl estanqui / ~_# 
\akl estanqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl estanque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame estanqui / ~_# 
\ame estanque / _# 
\i NEH 2.14 Tsaypitanami pasargä Pucyu jutiyog puncu cag lädupa y Reypa Yacu Estanquin cag lädupapis.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a62b4c66-8449-40ec-9bdf-f46505b672af" ownerguid="a909429a-d459-4e27-b1df-620deb91ab0f"> -<Form> -<AUni ws="qvm-x-ach">taca</AUni> -<AUni ws="qvm-x-acl">taca</AUni> -<AUni ws="qvm-x-akh">taka</AUni> -<AUni ws="qvm-x-akl">taka</AUni> -<AUni ws="qvm-x-ame">taka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a62b8642-95f2-4ef1-9467-6395a7f3fb59" ownerguid="ca98bd7b-8711-41f6-86d0-5cd07b7bfe0d"> -<ExampleWords> -<AUni ws="en">ruin, wreck, wreckage, shipwreck</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something that has been destroyed?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a6329e15-8524-40df-93b7-5832720bb0b8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cáncer; cancer</AUni> -<AUni ws="qvm-x-acl">cáncer; cancer</AUni> -<AUni ws="qvm-x-akh">cáncer; cancer</AUni> -<AUni ws="qvm-x-akl">cáncer; cancer</AUni> -<AUni ws="qvm-x-ame">cáncer; cancer</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cáncer</AUni> -<AUni ws="qvm-x-acl">+cáncer</AUni> -<AUni ws="qvm-x-akh">+cáncer</AUni> -<AUni ws="qvm-x-akl">+cáncer</AUni> -<AUni ws="qvm-x-ame">+cáncer</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.92" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f49a88a1-2500-44ea-84e6-91cee021dfad" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cáncer</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e6be8b63-19b2-4957-8d17-caaf37f23a4f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bafc3bb9-3876-4d46-b17e-a9fa82beb43b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cáncer 
\entryTyp root 
\gENG 
\gSPN 
\e +cáncer 
\c N0 
\mp +FinalC 
\ach cáncer / _# 
\ach cancer / ~_# 
\akh cáncer / _# 
\akh cancer / ~_# 
\acl cáncer / _# 
\acl cancer / ~_# 
\akl cáncer / _# 
\akl cancer / ~_# 
\ame cáncer / _# 
\ame cancer / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a633a382-b1ae-4436-944d-472be8ab5d4b" ownerguid="b16de6a0-71dd-448c-9ffa-49f6646a5219"> -<ExampleWords> -<AUni ws="en">break into a run, set off on a run</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to beginning to run?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a6341082-8a31-43c6-87d4-0a180914a374"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chura</AUni> -<AUni ws="qvm-x-acl">chura</AUni> -<AUni ws="qvm-x-akh">chura</AUni> -<AUni ws="qvm-x-akl">chura</AUni> -<AUni ws="qvm-x-ame">chura</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trura</AUni> -<AUni ws="qvm-x-acl">*trura</AUni> -<AUni ws="qvm-x-akh">*trura</AUni> -<AUni ws="qvm-x-akl">*trura</AUni> -<AUni ws="qvm-x-ame">*trura</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.180" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="38a37bb4-850b-4823-9e21-08dcf13b6358" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trura</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c1731704-be1d-456f-a862-ea6a5ccd4dbf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9881e815-ba20-4265-b243-c43a386261ac" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trura 
\entryTyp root 
\gENG place 
\gSPN poner 
\e *trura 
\c V2 
\ach chura 
\akh chura 
\acl chura 
\akl chura 
\ame chura</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="a634fa54-71cd-440e-8d33-b886ebea1acf"> -<Form> -<Str> -<Run ws="en">yarpäv1</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="a637683e-48b0-4adf-93af-9589145086e3" ownerguid="566be8c1-3e42-4f8b-87eb-e70e8c13c6f8"> -<ExampleWords> -<AUni ws="en">leaning, lean forward, lean towards, lean over</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is leaning?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a63d48a3-55db-4792-bfec-aaaff4484eaf" ownerguid="c6848b51-de16-4ee7-ac57-ecbfae85e37f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="a88dbaeb-f55d-45db-8998-d6a3fea10295" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="adf73237-74cd-407f-b35f-0369fd1269f7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a64236c5-ef12-4544-bd67-a0ef28748feb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ragra</AUni> -<AUni ws="qvm-x-acl">ragra</AUni> -<AUni ws="qvm-x-akh">raqra</AUni> -<AUni ws="qvm-x-akl">raqra</AUni> -<AUni ws="qvm-x-ame">raqra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*raqra</AUni> -<AUni ws="qvm-x-acl">*raqra</AUni> -<AUni ws="qvm-x-akh">*raqra</AUni> -<AUni ws="qvm-x-akl">*raqra</AUni> -<AUni ws="qvm-x-ame">*raqra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.275" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4eb15654-dd8f-48ac-8787-29edc7e8228a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*raqra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="161e9c9e-26b3-4a34-8547-0110d48c8bc7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="45fd5836-31c6-432f-a32a-bcfe497fe58b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *raqra 
\entryTyp root 
\gENG ravine 
\gSPN quebrada 
\e *raqra 
\c N0 
\ach ragra 
\akh raqra 
\acl ragra 
\akl raqra 
\ame raqra</Run> -</AStr> -</Custom> -</rt> -<rt class="DsConstChart" guid="a6461329-057c-4f58-8962-4a98c8299732" ownerguid="c3fe8c1e-ea5e-11de-9e45-0013722f8dec"> -<BasedOn> -<objsur guid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365" t="r" /> -</BasedOn> -<DateCreated val="2022-09-27 21:45:44.703" /> -<DateModified val="2022-09-27 21:45:44.703" /> -<Template> -<objsur guid="c414012a-ea5e-11de-99fc-0013722f8dec" t="r" /> -</Template> -</rt> -<rt class="MoStemAllomorph" guid="a6462f9f-8844-4a58-89f4-80edb61b7324" ownerguid="dbdbccf2-3e63-4265-a6ff-265057f2a553"> -<Form> -<AUni ws="qvm-x-ach">ayauchacu; ayauchaca</AUni> -<AUni ws="qvm-x-acl">ayauchacu; ayauchaco; ayauchaca</AUni> -<AUni ws="qvm-x-akh">ayawchaku; ayawchaka</AUni> -<AUni ws="qvm-x-akl">ayawchaku; ayawchako; ayawchaka</AUni> -<AUni ws="qvm-x-ame">ayawchaku; ayawchaka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a64af191-9ba3-4ead-93c0-88c6af0a6451" ownerguid="aa2b547c-2c82-4ce0-a1b3-35fa809d666c"> -<ExampleWords> -<AUni ws="en">tight squeeze</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is very narrow?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a64cb25a-ff44-4e59-aebd-efcaf827d9a9" ownerguid="7d46ca1c-d073-4416-9a7f-bafbc569cb9b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="46d33e77-a6a6-47a9-9e01-e3a1573177a2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="a6522b02-e85d-4075-80af-11520d7f034c" ownerguid="6ad910f6-c929-4bce-90f1-53cb1035e659"> -<Form> -<AUni ws="qvm-x-ach">guempi</AUni> -<AUni ws="qvm-x-acl">guempi; guempi; guempe</AUni> -<AUni ws="qvm-x-akh">qempi</AUni> -<AUni ws="qvm-x-akl">qempi; qempi; qempe</AUni> -<AUni ws="qvm-x-ame">qimpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a6526f4b-a0b4-4692-a1fb-7de94404e405" ownerguid="c5b8c936-1e01-4e86-9145-a2b721ec9e39"> -<ExampleWords> -<AUni ws="en">deep, shallow, narrow, wide</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe the size of a hole in the ground?</AUni> -</Question> -</rt> -<rt class="MoDerivAffMsa" guid="a65486e9-3066-4a42-8c90-7aadcf10ae12" ownerguid="212914f2-1f1a-4ab4-8aae-7955ec0c4d84"> -<FromPartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</FromPartOfSpeech> -<ToPartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</ToPartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a654a1f1-4e67-4c58-a03e-bbbdd88d7bff" ownerguid="1cb9266c-c5a6-4b25-8fa3-dbad81a53cd3"> -<Form> -<AUni ws="qvm-x-ach">mica</AUni> -<AUni ws="qvm-x-acl">mica</AUni> -<AUni ws="qvm-x-akh">mika</AUni> -<AUni ws="qvm-x-akl">mika</AUni> -<AUni ws="qvm-x-ame">mika</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<StemName> -<objsur guid="a177c679-0e2b-4632-9f01-6391c5a4a352" t="r" /> -</StemName> -</rt> -<rt class="CmDomainQ" guid="a6557cd7-161e-40aa-a729-a476558cc335" ownerguid="741c417a-11e9-460c-9ab3-51b8220df016"> -<ExampleWords> -<AUni ws="en">wave, ripple, swell, breaker, billow, surf, tidal wave, tsunami</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What types of waves are there?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a655fdba-bc4d-487d-9952-ff515e35d6d2" ownerguid="6d2abbb5-eb19-49f9-9063-5668b43b600f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="87b7a537-f83e-4648-8fc5-02a00e9e6046" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="a657fb7e-d01b-490b-b7ae-b37f896a3cb2" ownerguid="4083c501-02ef-45ec-8b64-cb09a0c58ca7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="a65a1b93-77ce-49fc-af28-2ae244226294" ownerguid="f943628b-a409-4384-bb7b-66c8ec485202"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chief</AUni> -<AUni ws="es">jefe</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f2207e17-36cf-49cb-bf93-4187ea1e2151" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="a65daf8c-9927-4019-bd3b-ac7cbb683d2c" ownerguid="edd1834a-85cd-4ee9-a8f6-d2cc2c536a30"> -<Form> -<AUni ws="qvm-x-ach">traductor</AUni> -<AUni ws="qvm-x-acl">traductor</AUni> -<AUni ws="qvm-x-akh">traductor</AUni> -<AUni ws="qvm-x-akl">traductor</AUni> -<AUni ws="qvm-x-ame">traductor</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="a6616a09-df51-4ca6-850f-733ee73c8750" ownerguid="683f570a-0bfe-4a97-b55d-4319b328508b"> -<Abbreviation> -<AUni ws="en">6.6.7.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to working in the sea.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Working in the sea</AUni> -</Name> -<OcmCodes> -<Uni>228 Marine Industries; 312 Water Supply; 336 Plumbing; 376 Water Power</Uni> -</OcmCodes> -<Questions> -<objsur guid="eee8e4d0-4d7a-4daf-a613-fddc45d2f397" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="a6636684-7a4d-45f1-a61f-54b08f5d2b68" ownerguid="799fe404-5ef1-4781-b56a-ccf2ac640bfb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a663caf7-f93a-436d-b68c-bda973131a18" ownerguid="ec118a28-fd23-48b3-8819-bfe1329f028d"> -<ExampleWords> -<AUni ws="en">reflective</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that reflects light?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a6645b53-34f8-4660-974f-5c087f714a8b" ownerguid="14954a0f-5c8a-4680-90b0-53398bd3a2a7"> -<ExampleWords> -<AUni ws="en">little-known, secret, secrecy, obscure, private, mystery, mysterious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something or someone that is not known by many people?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a6686bbf-398a-41c7-9bbf-8bd50ae3b43a" ownerguid="4725c8d5-b4bc-4f6c-8ca9-75e970281f74"> -<Form> -<AUni ws="qvm-x-ach">minca</AUni> -<AUni ws="qvm-x-acl">minca</AUni> -<AUni ws="qvm-x-akh">minka</AUni> -<AUni ws="qvm-x-akl">minka</AUni> -<AUni ws="qvm-x-ame">minka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a668d97a-2871-419e-92db-24117893702f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alisna</AUni> -<AUni ws="qvm-x-acl">alisna</AUni> -<AUni ws="qvm-x-akh">alisna</AUni> -<AUni ws="qvm-x-akl">alisna</AUni> -<AUni ws="qvm-x-ame">alisna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+alesna</AUni> -<AUni ws="qvm-x-acl">+alesna</AUni> -<AUni ws="qvm-x-akh">+alesna</AUni> -<AUni ws="qvm-x-akl">+alesna</AUni> -<AUni ws="qvm-x-ame">+alesna</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.699" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="55a10289-8ef0-4ec4-8fde-4d55fbb123d5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+alesna</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="02cc40f4-7d14-47d2-8f6f-de90c70a9778" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="94d12ed5-62fe-43f4-a502-5cee13776982" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +alesna 
\entryTyp root 
\gENG awl 
\gSPN alesna 
\e +alesna 
\c N0 
\ach alisna 
\akh alisna 
\acl alisna 
\akl alisna 
\ame alisna</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="a66bb79d-361a-4fcb-b734-fa25098a9e83" ownerguid="02169ac4-ee89-412a-98ef-2261a98cfdc3"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">HAB 3.16 Tulöcunapis pasaypa shumshutarmi gotucäcushga.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="a66bc5aa-9aef-463c-a1ef-5b7c8ec9b282" ownerguid="01459db0-bf2a-422b-8d55-0ab505aea2b4"> -<ExampleWords> -<AUni ws="en">war, famine, disaster, accident, sickness, injury, death, conflict, harm, destruction, oppression</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What causes trouble?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a66c9853-b76b-40da-ac63-81394bc169b3" ownerguid="6c071281-d180-4ca1-a1cb-f3a738783b6e"> -<Form> -<AUni ws="qvm-x-ach">yarpu; yarpa</AUni> -<AUni ws="qvm-x-acl">yarpu; yarpo; yarpa</AUni> -<AUni ws="qvm-x-akh">yarpu; yarpa</AUni> -<AUni ws="qvm-x-akl">yarpu; yarpo; yarpa</AUni> -<AUni ws="qvm-x-ame">yarpu; yarpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a66cfd2a-34be-4210-92a3-1ae4b7901be8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chita</AUni> -<AUni ws="qvm-x-acl">chita</AUni> -<AUni ws="qvm-x-akh">chita</AUni> -<AUni ws="qvm-x-akl">chita</AUni> -<AUni ws="qvm-x-ame">chita</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chita</AUni> -<AUni ws="qvm-x-acl">*chita</AUni> -<AUni ws="qvm-x-akh">*chita</AUni> -<AUni ws="qvm-x-akl">*chita</AUni> -<AUni ws="qvm-x-ame">*chita</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.325" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="018ee96a-76ae-427e-9d66-151e99c4d76b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chita</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="391fbbb9-6a14-47f1-a6d2-1f76aa8aaf77" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5696a458-3903-4caa-bc71-e3414a46ff76" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chita 
\entryTyp root 
\gENG 
\gSPN 
\e *chita 
\c N0 
\ach chita 
\akh chita 
\acl chita 
\akl chita 
\ame chita</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="a66e5867-59c0-4dcd-b258-d49f3e83f68d" ownerguid="273ef9cc-651e-4fdb-8f65-39e117325c50"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">r</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">r</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">r</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">r</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">r</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a96fae79-db91-498f-a3f4-4aaeff3f9499" t="r" /> -</Morph> -<Msa> -<objsur guid="973e08a0-60b3-4ff1-9973-ac70ea0a16bc" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="a6710378-186d-4b6b-8e32-7f38e12ccfd9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aygui</AUni> -<AUni ws="qvm-x-acl">aygui; aygue</AUni> -<AUni ws="qvm-x-akh">ayqi</AUni> -<AUni ws="qvm-x-akl">ayqi; ayqe</AUni> -<AUni ws="qvm-x-ame">ayqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ayqi</AUni> -<AUni ws="qvm-x-acl">*ayqi</AUni> -<AUni ws="qvm-x-akh">*ayqi</AUni> -<AUni ws="qvm-x-akl">*ayqi</AUni> -<AUni ws="qvm-x-ame">*ayqi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.908" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="32a93390-7842-494c-b0e9-46f05bc68ac6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ayqi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b4c561e3-de7b-4f1f-9de6-dd83322c98c7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ab3541a4-7168-4a6e-beab-e91bbd754cc6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ayqi 
\entryTyp root 
\gENG escape 
\gSPN escapar 
\e *ayqi 
\c V1 
\mp +FinalI 
\ach aygui 
\akh ayqi 
\acl aygui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl aygue +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ayqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ayqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ayqi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a6745453-3f1b-4716-97c7-2f860ddf88c3" ownerguid="12e5427f-6be6-4fcd-9834-c8ae477fd415"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a674d5e0-a379-4809-8c5c-927395ffeed6" ownerguid="851413bf-5eb7-4230-b034-e9178b5925bc"> -<Form> -<AUni ws="qvm-x-ach">sengaypa</AUni> -<AUni ws="qvm-x-acl">sengaypa</AUni> -<AUni ws="qvm-x-akh">senqaypa</AUni> -<AUni ws="qvm-x-akl">senqaypa</AUni> -<AUni ws="qvm-x-ame">sinqaypa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="a6797fd1-e368-422b-9710-96e0af39552d" ownerguid="30e6b42c-6bbf-4659-99e7-aa4b8e68c9ce"> -<Abbreviation> -<AUni ws="en">4.3.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.223" /> -<DateModified val="2022-9-23 16:55:8.223" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to meeting a standard.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88D Perfect, Perfection; 88F Modesty, Propriety</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Meet a standard</AUni> -</Name> -<Questions> -<objsur guid="ffe32965-565f-4aa1-99d2-893900a089fe" t="o" /> -<objsur guid="8feee2ab-24b8-4013-8337-91421fc058c7" t="o" /> -<objsur guid="35db5edd-524e-495b-95a3-2ab04d0c853a" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="1461c106-d9e0-417d-9487-a57e6d0cced0" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="a67caa25-92b4-4ba9-b22d-4c6c9993faff" ownerguid="3ec38ec1-2665-4697-a56b-a5662620a8a1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">map</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="182e948f-306a-4aef-a16d-48713c8124f5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a67ec645-deae-4750-b3dc-a519519f5c15" ownerguid="b8c444ec-e0db-4f80-8a7f-cc6812b0a76f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="752e8607-77d9-4c86-bce3-b9c14e3aabfd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="a685a458-e397-4c7d-bbec-3bc996c35639" ownerguid="d3b21664-5fdf-4052-915a-40b87cafcf65"> -<Form> -<AUni ws="qvm-x-ach">canseri</AUni> -<AUni ws="qvm-x-acl">canseri; canseri; cansere</AUni> -<AUni ws="qvm-x-akh">kanseri</AUni> -<AUni ws="qvm-x-akl">kanseri; kanseri; kansere</AUni> -<AUni ws="qvm-x-ame">kansiri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="a68601f8-9e40-4783-bf2a-ec7c981bd02a" ownerguid="a33be084-0288-467a-93e9-447150d1a463"> -<Form> -<AUni ws="qvm-x-ach">latsapa</AUni> -<AUni ws="qvm-x-acl">latsapa</AUni> -<AUni ws="qvm-x-akh">latsapa</AUni> -<AUni ws="qvm-x-akl">latsapa</AUni> -<AUni ws="qvm-x-ame">latsapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="a6916931-8fd1-44e0-ac7d-ee4041670d97"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">lakikuyman</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="a6945cd6-84ae-47d5-afc2-5481f6e5fc87" ownerguid="db85926f-7111-45b8-ae79-9a77456f8582"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a694ffa8-f4be-4681-87b5-4fff84db6dd0" ownerguid="709d43dd-ce94-4df1-91b1-edb0b12fdaea"> -<ExampleWords> -<AUni ws="en">polish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to rubbing something to make it smooth?</AUni> -</Question> -</rt> -<rt class="MoInflAffMsa" guid="a6965348-c2a1-44ad-8d0b-c5c6e8cdc68b" ownerguid="89fb9e9a-1c52-4d3a-99aa-5fdd061f778f"> -<PartOfSpeech> -<objsur guid="85ffb381-0567-4202-8640-53cbaec77e45" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="769c8d34-7ae5-450b-9e9b-f62d75e5f18a" t="r" /> -</Slots> -</rt> -<rt class="LexEntry" guid="a6993674-4df0-418f-a032-ae376db5048b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tina:cu</AUni> -<AUni ws="qvm-x-acl">tina:cu; tina:cu; tina:co</AUni> -<AUni ws="qvm-x-akh">tina:cu</AUni> -<AUni ws="qvm-x-akl">tina:cu; tina:cu; tina:co</AUni> -<AUni ws="qvm-x-ame">tina:cu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tinaco</AUni> -<AUni ws="qvm-x-acl">+tinaco</AUni> -<AUni ws="qvm-x-akh">+tinaco</AUni> -<AUni ws="qvm-x-akl">+tinaco</AUni> -<AUni ws="qvm-x-ame">+tinaco</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.906" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3a5ce2fc-1493-435a-90a3-a6d1e3ac255a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tinaco</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9fd448fd-12bf-4d65-92b7-859fb689053c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cc0bb960-d151-44fc-b835-658d9caee13b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tinaco 
\entryTyp root 
\gENG 
\gSPN 
\e +tinaco 
\c N0 
\ach tina:cu 
\akh tina:cu 
\acl tina:cu / _# 
\acl tina:cu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tina:co +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tina:cu / _# 
\akl tina:cu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tina:co +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tina:cu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a6a16ef1-0228-462d-8282-1a19345edc79" ownerguid="51d9d243-35cc-4a1e-bcdd-f2749975f5fd"> -<ExampleWords> -<AUni ws="en">unreal, artificial, imaginary, phony, pretend</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is not real?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="a6a4a898-03b5-414b-998a-c2a71f51cd21" ownerguid="3fb6e4bb-c608-4d3e-bd47-193a546b6c26"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="WfiWordform" guid="a6afc268-b0d1-4da5-8ae5-b4131c2b34b5"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">qarqukan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="a6afdfff-d775-4c02-be89-5d494a627972" ownerguid="b4e9a00e-70ab-4ccf-a837-07e02f91712a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="a6b042b8-9ab8-4f14-87f9-b6562a5a82de"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">polvu</AUni> -<AUni ws="qvm-x-acl">polvu; polvo</AUni> -<AUni ws="qvm-x-akh">polvu</AUni> -<AUni ws="qvm-x-akl">polvu; polvo</AUni> -<AUni ws="qvm-x-ame">polvu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+polvo.v</AUni> -<AUni ws="qvm-x-acl">+polvo.v</AUni> -<AUni ws="qvm-x-akh">+polvo.v</AUni> -<AUni ws="qvm-x-akl">+polvo.v</AUni> -<AUni ws="qvm-x-ame">+polvo.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.899" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="22e67755-9387-48a6-a301-3c1076f73436" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+polvo.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f6ea043a-2049-4f16-ad39-4c2a68e40c12" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e154b572-c987-4eca-a8d4-8eb92be44b0e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +polvo.v 
\entryTyp root 
\gENG dust 
\gSPN polvo 
\e +polvo.v 
\c V1 
\ach polvu 
\akh polvu 
\acl polvu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl polvo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl polvu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl polvo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame polvu 
\i 1KI 20.10 Tsaymi lapanta polvuypa polvur ushashag.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a6b33028-9972-48eb-8f6c-9b45214d4c8a"> -<Comment> -<AStr ws="en"> -<Run ws="en">does not have the allomorph -nila after the consonant y in pay: paylawan; not paynilawan</Run> -</AStr> -</Comment> -<DateCreated val="2022-10-16 14:45:18.756" /> -<DateModified val="2022-10-16 14:47:15.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="2" /> -<LexemeForm> -<objsur guid="6d85d716-492b-4928-9d6f-ab9d777e4202" t="o" /> -</LexemeForm> -<MorphoSyntaxAnalyses> -<objsur guid="59734ec2-b6a9-4973-bbe0-e18423cefad7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4ab41701-27a0-4ca7-a968-ae123151eef3" t="o" /> -</Senses> -</rt> -<rt class="LexSense" guid="a6b3680b-d540-426c-ab38-5c48aa697467" ownerguid="30954ee0-f9e2-430e-b754-e6dc8e3d855a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">carpet</AUni> -<AUni ws="es">alfombra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5bf5a8b3-b167-4f35-b9b5-982d9938ab52" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="a6b37d89-c195-45f5-a1af-79fc6d59c530" ownerguid="526e88aa-02ae-4e04-aace-c7501fcd57d7"> -<Form> -<AUni ws="qvm-x-ach">jara</AUni> -<AUni ws="qvm-x-acl">jara</AUni> -<AUni ws="qvm-x-akh">jara</AUni> -<AUni ws="qvm-x-akl">jara</AUni> -<AUni ws="qvm-x-ame">hara</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a6b89391-baf0-4986-912a-9dc2dfccf4ec" ownerguid="45d867c7-8496-4c92-bb41-b7db5db47717"> -<ExampleWords> -<AUni ws="en">weight, bulk</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to how fat someone is?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a6c070ed-f0e8-4c51-ae37-711230667e79" ownerguid="df092f30-28ba-420c-bb67-d2eb55aa173e"> -<Form> -<AUni ws="qvm-x-ach">astilla</AUni> -<AUni ws="qvm-x-acl">astilla</AUni> -<AUni ws="qvm-x-akh">astilla</AUni> -<AUni ws="qvm-x-akl">astilla</AUni> -<AUni ws="qvm-x-ame">astilla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="FsClosedValue" guid="a6c1d187-c0e2-43f7-a609-e5beb5b5ba3b" ownerguid="90843854-fb29-42f2-90fa-2889ef8022b0"> -<Feature> -<objsur guid="e13ebd7a-824d-4405-8c23-e5a30f3d53a6" t="r" /> -</Feature> -<RefNumber val="0" /> -<Value> -<objsur guid="7fd2e9b4-402c-427c-a3e3-bbf386d652da" t="r" /> -</Value> -<ValueState val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="a6c599a8-2982-4c7d-bda0-56ea2313d1aa" ownerguid="b13ce5d7-e5f9-42b8-bae0-12fd1fec9b43"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">nga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">nga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">nqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">nqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="5dcad267-89ba-4258-b423-e84c57ba90ed" t="r" /> -</Morph> -<Msa> -<objsur guid="cdacd2fc-4611-457d-b88f-3c9c8bb345b9" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="a6c61264-d1f6-431b-aaac-f043a77ed9c5" ownerguid="d1f005cd-4f3e-4578-bb1f-60923a05a977"> -<Form> -<AUni ws="qvm-x-ach">impüru</AUni> -<AUni ws="qvm-x-acl">impüru; impüru; impüro</AUni> -<AUni ws="qvm-x-akh">impüru</AUni> -<AUni ws="qvm-x-akl">impüru; impüru; impüro</AUni> -<AUni ws="qvm-x-ame">impüru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a6c89bc7-61f1-4cc8-9504-236978f03534"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shacsha</AUni> -<AUni ws="qvm-x-acl">shacsha</AUni> -<AUni ws="qvm-x-akh">shaksha</AUni> -<AUni ws="qvm-x-akl">shaksha</AUni> -<AUni ws="qvm-x-ame">shaksha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shaksha.n</AUni> -<AUni ws="qvm-x-acl">*shaksha.n</AUni> -<AUni ws="qvm-x-akh">*shaksha.n</AUni> -<AUni ws="qvm-x-akl">*shaksha.n</AUni> -<AUni ws="qvm-x-ame">*shaksha.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.521" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="673c1398-de11-4264-97e7-060167a7977f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shaksha.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eccfc022-d889-412e-b2bb-e00840d5df3e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b6a10b7e-356a-4e9a-ac13-00780be91f96" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shaksha.n 
\entryTyp root 
\gENG 
\gSPN 
\e *shaksha.n 
\c N0 
\ach shacsha 
\akh shaksha 
\acl shacsha 
\akl shaksha 
\ame shaksha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="a6c8ff0d-0def-4e2d-8457-c62751f760b2" ownerguid="2574c8e7-7940-4952-b911-9e5ee9f63015"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">DO2</AUni> -<AUni ws="es">HACER2</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="78ef9b8e-8c76-4a50-bf41-d7eda1077fdf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="a6c92048-d824-4f74-b1fd-5fb505f8e73d" ownerguid="d2c7f746-a2fd-4e12-bff5-84c612e376bd"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="a6c9344b-0deb-48db-bcdb-a4b7bc9a75d2" ownerguid="c447475f-9241-471f-955f-afea24f9b021"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">search</AUni> -<AUni ws="es">buscar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8ac44997-e136-4184-85dc-211579fb37a8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a6c938ae-4b91-4e80-bf3a-c6beab597827" ownerguid="fa829fcb-40f4-4003-8cca-561074eded13"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">put</AUni> -<AUni ws="es">poner</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="40b01283-cec8-41d7-9a98-9dbace2197b2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a6c9fc30-dbf3-4612-8367-78f733ebb506" ownerguid="86c065ea-2420-4619-82d4-1d43527b3371"> -<ExampleWords> -<AUni ws="en">share, portion, lot, part</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the share or portion that one person receives?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a6cbe677-559b-4905-ba94-e1544a18a514" ownerguid="5fd34ae2-6b2d-4841-ac57-cee710e19006"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoAffixAllomorph" guid="a6cc8fb2-2e41-4ede-9f72-8fd0b63bdb09" ownerguid="852335c0-3900-49e5-8717-136f53f3ed79"> -<Form> -<AUni ws="qvm-x-ach">nin</AUni> -<AUni ws="qvm-x-acl">nin</AUni> -<AUni ws="qvm-x-akh">nin</AUni> -<AUni ws="qvm-x-akl">nin</AUni> -<AUni ws="qvm-x-ame">nin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="35058c7a-447a-4ee8-89bd-323da24bf7c5" t="r" /> -</PhoneEnv> -</rt> -<rt class="LexEntry" guid="a6d2646f-f761-4717-9dca-6b4dd5747fdb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ga:llu</AUni> -<AUni ws="qvm-x-acl">ga:llu; ga:llu; ga:llo</AUni> -<AUni ws="qvm-x-akh">ga:llu</AUni> -<AUni ws="qvm-x-akl">ga:llu; ga:llu; ga:llo</AUni> -<AUni ws="qvm-x-ame">ga:llu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gallo</AUni> -<AUni ws="qvm-x-acl">+gallo</AUni> -<AUni ws="qvm-x-akh">+gallo</AUni> -<AUni ws="qvm-x-akl">+gallo</AUni> -<AUni ws="qvm-x-ame">+gallo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.597" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ff0cec6c-b58a-4e53-852b-e9ddd4917c14" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gallo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="13f37d0b-6e2d-45c6-bd12-4b9d287fc862" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6ec60887-b656-4891-84bf-5c841f4736fb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gallo 
\entryTyp root 
\gENG rooster 
\gSPN gallo 
\e +gallo 
\c N0 
\ach ga:llu 
\akh ga:llu 
\acl ga:llu / _# 
\acl ga:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ga:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ga:llu / _# 
\akl ga:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ga:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ga:llu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a6d56aab-4644-4a4c-a7cd-e8e62f49f8f2" ownerguid="86b66f59-3ca8-47ac-989d-645f7a9e219b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="a6d78f9d-79a6-4bce-8e71-4c23bdd5cb00" ownerguid="eca147b6-fc3d-4f35-b3db-325652e862ec"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="a6d9751e-ae7b-4f5b-a1de-1939dd6db198"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alica:ti; alica:ti</AUni> -<AUni ws="qvm-x-acl">alica:ti; alica:ti; alica:te</AUni> -<AUni ws="qvm-x-akh">alica:ti; alica:ti</AUni> -<AUni ws="qvm-x-akl">alica:ti; alica:ti; alica:te</AUni> -<AUni ws="qvm-x-ame">alica:ti; alica:ti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+alicate</AUni> -<AUni ws="qvm-x-acl">+alicate</AUni> -<AUni ws="qvm-x-akh">+alicate</AUni> -<AUni ws="qvm-x-akl">+alicate</AUni> -<AUni ws="qvm-x-ame">+alicate</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.707" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e77d9ff3-38d8-4085-913b-531df06f7bcb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+alicate</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8953b1a7-d960-4ed9-9aa6-f45aab293ea2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9564f60b-ff11-4618-8985-39e4c7a0ed01" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +alicate 
\entryTyp root 
\gENG pliers 
\gSPN alicate 
\e +alicate 
\c N0 
\mp +FinalI 
\ach alica:ti / _# 
\ach alica:ti / ~_# 
\akh alica:ti / _# 
\akh alica:ti / ~_# 
\acl alica:ti / _# 
\acl alica:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl alica:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl alica:ti / _# 
\akl alica:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl alica:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame alica:ti / _# 
\ame alica:ti / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a6dab780-88fb-436e-99b9-6ad61822ca90" ownerguid="8562b03a-de13-4fed-bbd7-ee05d82cb818"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a6e28844-ea5f-4a13-b25f-274e6e5b3c02" ownerguid="2a62f8e4-7da3-4f37-bf44-e24033c99c00"> -<ExampleWords> -<AUni ws="en">enraged, furious, furiously, incensed, infuriated, irate, livid, full of resentment, seething, be on the warpath, wrathful, have a tantrum, have a temper tantrum, boiling mad</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to feeling very angry?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a6e4cffb-d5d1-44e1-b3a7-504f2c3c667b" ownerguid="12a028d1-d910-4011-ab9d-59be69daaf65"> -<ExampleWords> -<AUni ws="en">reciprocate, give back</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to reacting to someone in the same way they treat you?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a6e5baf2-4823-4627-a09f-4c503514006a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ila; ila:</AUni> -<AUni ws="qvm-x-acl">ila; ila:</AUni> -<AUni ws="qvm-x-akh">ila; ila:</AUni> -<AUni ws="qvm-x-akl">ila; ila:</AUni> -<AUni ws="qvm-x-ame">ila; ila:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*illa:</AUni> -<AUni ws="qvm-x-acl">*illa:</AUni> -<AUni ws="qvm-x-akh">*illa:</AUni> -<AUni ws="qvm-x-akl">*illa:</AUni> -<AUni ws="qvm-x-ame">*illa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.792" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3e2ee506-b109-4990-a709-e91251eabfb2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*illa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="69d003a7-cff5-41c2-be5a-771139f3ac1c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f44f329a-a5b8-4478-b95a-b7cf366aa701" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *illa: 
\entryTyp root 
\gENG be.absent 
\gSPN ausentarse 
\e *illa: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach ila foreshortened 
\ach ila: 
\akh ila foreshortened 
\akh ila: 
\acl ila foreshortened 
\acl ila: 
\akl ila foreshortened 
\akl ila: 
\ame ila foreshortened 
\ame ila: 
\mcc *illa: / ~_ AG ABL 
\mcc *illa: / ~_ PASS | force *illaqa:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a6e78d23-0064-4c3d-9c16-6a506bf57164" ownerguid="2e5acfd2-3009-4496-9cc2-58d2a0088994"> -<ExampleWords> -<AUni ws="en">bald, bald spot, thinning hair, receding hairline</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe a man who has lost his hair?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a6e8d249-e306-4ce2-a075-da47039facf0" ownerguid="ae782d96-cc83-495f-8500-2d483d9a060f"> -<Form> -<AUni ws="qvm-x-ach">häbitu</AUni> -<AUni ws="qvm-x-acl">häbitu; häbitu; häbito</AUni> -<AUni ws="qvm-x-akh">häbitu</AUni> -<AUni ws="qvm-x-akl">häbitu; häbitu; häbito</AUni> -<AUni ws="qvm-x-ame">häbitu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="a6e9bfc3-a16f-4a03-abd9-bbd14ebfa411" ownerguid="718d0c91-5938-4f5c-a690-f0b8b0c7fb48"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a6ea2980-07c9-49f1-8d10-1ac1f56a85fa" ownerguid="3055338f-eccc-4193-85b5-a44ef560434e"> -<Form> -<AUni ws="qvm-x-ach">sapsapya; sapsapyä</AUni> -<AUni ws="qvm-x-acl">sapsapya; sapsapyä</AUni> -<AUni ws="qvm-x-akh">sapsapya; sapsapyä</AUni> -<AUni ws="qvm-x-akl">sapsapya; sapsapyä</AUni> -<AUni ws="qvm-x-ame">sapsapya; sapsapyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a6eb0ea6-9e43-4baa-8fb5-5ea379d74241"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wishti</AUni> -<AUni ws="qvm-x-acl">wishti; wishte</AUni> -<AUni ws="qvm-x-akh">wishti</AUni> -<AUni ws="qvm-x-akl">wishti; wishte</AUni> -<AUni ws="qvm-x-ame">wishti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wishti</AUni> -<AUni ws="qvm-x-acl">*wishti</AUni> -<AUni ws="qvm-x-akh">*wishti</AUni> -<AUni ws="qvm-x-akl">*wishti</AUni> -<AUni ws="qvm-x-ame">*wishti</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.688" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e9c31633-57ca-4860-9a38-4c480a50b1a3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wishti</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0026e024-7022-4ede-aebc-7b6601b79d2f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a536adf7-560b-4a50-8f3e-20bd505188df" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wishti 
\entryTyp root 
\gENG gore 
\gSPN cornear 
\e *wishti 
\c V2 
\mp +FinalI 
\ach wishti 
\akh wishti 
\acl wishti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wishte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wishti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wishte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wishti</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a6eba134-b805-46fa-bc18-a9728f8d1af0" ownerguid="4a094d70-797c-49b3-b118-7267cb273e87"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="a6ec503d-379e-478f-89f3-107fc84fedf7" ownerguid="31b8af41-cbce-4c3c-b2b7-a1c8eb5f1412"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="5ce3853c-5229-4983-a42e-00feadcd2738" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="bdaaeab4-2500-4a52-9dbd-4926d5cd9254" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="a6ece11b-4058-4d50-bf9d-aba44343ef1c" ownerguid="de2888bf-7980-4a80-a111-f62fbd2b3260"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="a6ee3b26-629b-4ec4-9e7c-df3f25056f14" ownerguid="136c49a6-0125-4b83-ad61-fa196aeab76e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 72.16 Líbanuchönograg logyuypa logyur winatsun.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="a6ef15fa-0184-44d0-8ba0-cbef74808d57" ownerguid="d7d39e2b-5ca5-4783-b4f2-f4e315d0ab9c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.tremble</AUni> -<AUni ws="es">temblar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e0604945-661e-4424-bcc4-dcd5acb454d4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a6f2f005-4706-4048-9599-bc5108a31077"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">turmanyuy</AUni> -<AUni ws="qvm-x-acl">turmanyuy</AUni> -<AUni ws="qvm-x-akh">turmanyuy</AUni> -<AUni ws="qvm-x-akl">turmanyuy</AUni> -<AUni ws="qvm-x-ame">turmanyuy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*turmanyu</AUni> -<AUni ws="qvm-x-acl">*turmanyu</AUni> -<AUni ws="qvm-x-akh">*turmanyu</AUni> -<AUni ws="qvm-x-akl">*turmanyu</AUni> -<AUni ws="qvm-x-ame">*turmanyu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.17" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="30f7a18a-dbce-4131-bf93-42695f709df6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*turmanyu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a9d0dc64-260e-409a-89d6-abded02550c6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="332bcaca-dbb6-449f-b14c-37480791b593" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *turmanyu 
\entryTyp root 
\gENG rainbow 
\gSPN arcoiris 
\e *turmanyu 
\c N0 
\mp NeverForeshortened 
\ach turmanyuy 
\akh turmanyuy 
\acl turmanyuy 
\akl turmanyuy 
\ame turmanyuy 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a6f364b2-8b30-469f-bbe1-b945584f2f6a" ownerguid="8d5c28b8-91be-40b0-b6c2-4d5adbb495a3"> -<ExampleWords> -<AUni ws="en">be disgusted, execrate, feel awful, feel revolted, feel sick, shudder at the thought, shudder to think, turn away in disgust, be disgusted, be grossed out, can't stand, can't bear</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling disgusted by something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a6f52f7b-e431-4a6e-b794-c45ecd708f4f" ownerguid="e7069ec3-3b82-4ba9-9507-ceafb1720d9b"> -<Form> -<AUni ws="qvm-x-ach">formón; formon</AUni> -<AUni ws="qvm-x-acl">formón; formon</AUni> -<AUni ws="qvm-x-akh">formón; formon</AUni> -<AUni ws="qvm-x-akl">formón; formon</AUni> -<AUni ws="qvm-x-ame">formón; formon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="a6f7bb84-c0ad-4d3e-bc11-c74057bd554d" ownerguid="b8bc2a9f-5839-4462-a733-aa02d69fdc19"> -<Form> -<AUni ws="qvm-x-ach">matanca</AUni> -<AUni ws="qvm-x-acl">matanca</AUni> -<AUni ws="qvm-x-akh">matanka</AUni> -<AUni ws="qvm-x-akl">matanka</AUni> -<AUni ws="qvm-x-ame">matanka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a6fb00fa-b777-4d15-b033-d26d99ed07e7" ownerguid="c2891be6-e7d7-41d5-add0-da25e169a446"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="06073e56-0e91-40f7-a363-2cfdf4430e52" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a6fd8b95-5adf-43e0-8ba2-404391a14d91"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">herramienta</AUni> -<AUni ws="qvm-x-acl">herramienta</AUni> -<AUni ws="qvm-x-akh">herramienta</AUni> -<AUni ws="qvm-x-akl">herramienta</AUni> -<AUni ws="qvm-x-ame">herramienta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+herramienta</AUni> -<AUni ws="qvm-x-acl">+herramienta</AUni> -<AUni ws="qvm-x-akh">+herramienta</AUni> -<AUni ws="qvm-x-akl">+herramienta</AUni> -<AUni ws="qvm-x-ame">+herramienta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.710" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fa48d3aa-bee7-4d80-9838-230356ae2878" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+herramienta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="990364bc-cdf8-47e0-aafd-755f462315d0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4ee5d412-54d7-4907-b244-b23781fa5a18" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +herramienta 
\entryTyp root 
\gENG tool 
\gSPN herramienta 
\e +herramienta 
\c N0 
\ach herramienta 
\akh herramienta 
\acl herramienta 
\akl herramienta 
\ame herramienta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a6ff0a3e-661c-4948-8a0b-3db2c10c0639" ownerguid="339f54a5-125b-435f-bf37-cfc2a2bd26d3"> -<ExampleWords> -<AUni ws="en">expressionless, impassive, blank, deadpan, inscrutable, poker-faced</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe a face that shows no feeling?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a70147b0-d599-4117-8782-105dcb16a7d8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tatua:ji; tatua:ji</AUni> -<AUni ws="qvm-x-acl">tatua:ji; tatua:ji; tatua:je</AUni> -<AUni ws="qvm-x-akh">tatua:ji; tatua:ji</AUni> -<AUni ws="qvm-x-akl">tatua:ji; tatua:ji; tatua:je</AUni> -<AUni ws="qvm-x-ame">tatua:ji; tatua:ji</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tatuaje</AUni> -<AUni ws="qvm-x-acl">+tatuaje</AUni> -<AUni ws="qvm-x-akh">+tatuaje</AUni> -<AUni ws="qvm-x-akl">+tatuaje</AUni> -<AUni ws="qvm-x-ame">+tatuaje</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.835" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="82a9c6bd-8084-42db-99c1-2a9c1c8561c4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tatuaje</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aa474518-6822-4631-8d47-4740aa5857e7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="10772eb7-ff62-4ab6-ac1f-6127e6433a71" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tatuaje 
\entryTyp root 
\gENG tatoo 
\gSPN tatuaje 
\e +tatuaje 
\c N0 
\mp +FinalI 
\ach tatua:ji / _# 
\ach tatua:ji / ~_# 
\akh tatua:ji / _# 
\akh tatua:ji / ~_# 
\acl tatua:ji / _# 
\acl tatua:ji +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tatua:je +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tatua:ji / _# 
\akl tatua:ji +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tatua:je +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tatua:ji / _# 
\ame tatua:ji / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a7031101-5887-48a6-b1cf-07ce397bf9cf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">changui</AUni> -<AUni ws="qvm-x-acl">changui; changui; changue</AUni> -<AUni ws="qvm-x-akh">chanqi</AUni> -<AUni ws="qvm-x-akl">chanqi; chanqi; chanqe</AUni> -<AUni ws="qvm-x-ame">chanqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tranqi.n</AUni> -<AUni ws="qvm-x-acl">*tranqi.n</AUni> -<AUni ws="qvm-x-akh">*tranqi.n</AUni> -<AUni ws="qvm-x-akl">*tranqi.n</AUni> -<AUni ws="qvm-x-ame">*tranqi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.58" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8fd241b8-a560-4142-b717-3455380f336b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tranqi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0c14ec24-7f7e-4c3b-877f-bf2508f6e26c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8411e61c-9132-4152-85d8-54109a8d5dba" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tranqi.n 
\entryTyp root 
\gENG cut.tuber 
\gSPN cortar.tuber 
\e *tranqi.n 
\c N0 
\mp +FinalI 
\ach changui 
\akh chanqi 
\acl changui / _# 
\acl changui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl changue +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chanqi / _# 
\akl chanqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chanqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chanqi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a703376d-780e-4b30-b993-836a22b7ffd3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bestia</AUni> -<AUni ws="qvm-x-acl">bestia</AUni> -<AUni ws="qvm-x-akh">bestia</AUni> -<AUni ws="qvm-x-akl">bestia</AUni> -<AUni ws="qvm-x-ame">bestia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bestia.1</AUni> -<AUni ws="qvm-x-acl">+bestia.1</AUni> -<AUni ws="qvm-x-akh">+bestia.1</AUni> -<AUni ws="qvm-x-akl">+bestia.1</AUni> -<AUni ws="qvm-x-ame">+bestia.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.961" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="61a2984f-5d34-4408-a9d5-ef64b16f271a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bestia.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e3c353c3-6e2f-409e-b685-b6f198317334" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6b779069-3f95-4b41-8155-576558f3d5cf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bestia.1 
\entryTyp root 
\gENG horse 
\gSPN caballo 
\e +bestia.1 
\c N0 
\ach bestia 
\akh bestia 
\acl bestia 
\akl bestia 
\ame bestia</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a70741be-ebbd-47a4-956f-0f829f82fb27" ownerguid="8497fb66-8b91-46b9-a0d5-fb9385319561"> -<ExampleWords> -<AUni ws="en">sense of taste, palate, taste buds</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the ability to taste?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a70c1059-3132-4c43-9bcf-55d479865318" ownerguid="dd8fe16b-4d31-470b-96e3-4b043128490d"> -<Form> -<AUni ws="qvm-x-ach">vïda</AUni> -<AUni ws="qvm-x-acl">vïda</AUni> -<AUni ws="qvm-x-akh">vïda</AUni> -<AUni ws="qvm-x-akl">vïda</AUni> -<AUni ws="qvm-x-ame">vïda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="a70cc197-093c-41ca-b154-ddfbe1d2f035" ownerguid="31d13f5c-fcf7-430b-8746-2b6adac6e871"> -<Form> -<AUni ws="qvm-x-ach">wera</AUni> -<AUni ws="qvm-x-acl">wera</AUni> -<AUni ws="qvm-x-akh">wera</AUni> -<AUni ws="qvm-x-akl">wera</AUni> -<AUni ws="qvm-x-ame">wira</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="a70cc6f3-be35-4553-b0f8-f534589ccfa0" ownerguid="e5cbae69-deda-4875-a0da-edec1b462d60"> -<Form> -<AUni ws="qvm-x-ach">escarpín; escarpin</AUni> -<AUni ws="qvm-x-acl">escarpín; escarpin</AUni> -<AUni ws="qvm-x-akh">escarpín; escarpin</AUni> -<AUni ws="qvm-x-akl">escarpín; escarpin</AUni> -<AUni ws="qvm-x-ame">escarpín; escarpin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a714c4b5-e8a7-47fd-b75e-f2fdd05a445b" ownerguid="9fc25175-3b4a-4248-bc7f-b86012ec584f"> -<ExampleWords> -<AUni ws="en">liquid fuel, gasoline (petrol), gas, kerosene (paraffin), diesel, candle wax, oil (lamp)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to liquid fuel?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a716282c-9ae7-4885-a43f-eb10161ef656" ownerguid="cbc24a98-1c64-467e-98aa-251a28e4c0b8"> -<ExampleWords> -<AUni ws="en">diarrhea, loose bowel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to when the feces are liquid?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a71b28db-8e68-494b-baff-830dd8708b27" ownerguid="27d2d722-894d-4847-8657-3e81d4ab8abb"> -<Form> -<AUni ws="qvm-x-ach">mojusya; mojusyä</AUni> -<AUni ws="qvm-x-acl">mojusya; mojusyä</AUni> -<AUni ws="qvm-x-akh">mojusya; mojusyä</AUni> -<AUni ws="qvm-x-akl">mojusya; mojusyä</AUni> -<AUni ws="qvm-x-ame">mojusya; mojusyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="a71bd3ac-7b67-49a2-aaf5-ab310976f7ec" ownerguid="f786a75d-c48a-4863-ba03-36ed17df57bb"> -<Form> -<AUni ws="qvm-x-ach">tsanca</AUni> -<AUni ws="qvm-x-acl">tsanca</AUni> -<AUni ws="qvm-x-akh">tsanka</AUni> -<AUni ws="qvm-x-akl">tsanka</AUni> -<AUni ws="qvm-x-ame">tsanka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a71f1afb-48d7-41ab-ab0e-6e417d34fcbd" ownerguid="236e9510-edac-4196-8ad5-51475798a59d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="7b6cd53f-9005-4d61-842c-613d756b9a5e" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="be13cbb1-9026-483a-bda6-43b275c95d51" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a71fac2e-1b03-4b9f-8559-41d25ec832f5" ownerguid="e626c65e-eb79-4230-b07a-a6d975d3fe3d"> -<ExampleWords> -<AUni ws="en">vomit (v), vomit (n), regurgitate, disgorge, heave, retch, throw up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to vomiting?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a71fd5b0-02bf-4caf-a9db-415148b6e474" ownerguid="ef860ee3-a4a5-4a42-b810-fdf41e35d151"> -<ExampleWords> -<AUni ws="en">priest, father, bishop, archbishop, Cardinal, pope, man of the cloth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What is a leader of the (Christian-Catholic) religion called?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a722be4c-b8d6-4e26-8f1b-82eef46249e1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sagra; sagra:</AUni> -<AUni ws="qvm-x-acl">sagra; sagra:</AUni> -<AUni ws="qvm-x-akh">saqra; saqra:</AUni> -<AUni ws="qvm-x-akl">saqra; saqra:</AUni> -<AUni ws="qvm-x-ame">saqra; saqra:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*saqra:</AUni> -<AUni ws="qvm-x-acl">*saqra:</AUni> -<AUni ws="qvm-x-akh">*saqra:</AUni> -<AUni ws="qvm-x-akl">*saqra:</AUni> -<AUni ws="qvm-x-ame">*saqra:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.457" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="66bffd6c-6728-4b55-9135-1a9c7576908d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*saqra:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="53d39c6f-508a-463b-82b8-ffd8969bdab4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e94cea93-c208-470b-82cd-10de608721fc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *saqra: 
\entryTyp root 
\gENG crack 
\gSPN rajar 
\e *saqra: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach sagra foreshortened 
\ach sagra: 
\akh saqra foreshortened 
\akh saqra: 
\acl sagra foreshortened 
\acl sagra: 
\akl saqra foreshortened 
\akl saqra: 
\ame saqra foreshortened 
\ame saqra: 
\mcc *saqra: / ~_ [prtspm] 
\mcc sagrädu. 
\tr sagräduxx.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="a72515ec-998d-4b48-bd69-c67cf9245abc" ownerguid="64493789-1c2c-4b24-a7e6-f00ff9be923e"> -<Abbreviation> -<AUni ws="en">6.1.2.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.350" /> -<DateModified val="2022-9-23 16:55:8.350" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to wasting something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Waste</AUni> -</Name> -<Questions> -<objsur guid="f5d60baf-5e9d-4aaa-9eb2-18be4af3dc40" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="a7266ff0-7df2-4c2f-b026-6c2239c39ed7" ownerguid="c23688e5-10a3-4cc6-b3db-a6de090f0e60"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mushroom</AUni> -<AUni ws="es">hongo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e2612b97-12f5-4b9e-9496-c4508cf015dc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="a72939e5-3808-4c71-960d-f24c5688e1cf"> -<Analyses> -<objsur guid="319b7245-2c99-422b-a23e-d33810811ef9" t="o" /> -<objsur guid="321264e3-bd8d-4c08-895b-94f56a413b40" t="o" /> -</Analyses> -<Checksum val="-1342200674" /> -<Form> -<AUni ws="qvm-x-akh">kachariykur</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="a729613e-052b-425c-af4d-a7b412095911" ownerguid="d7140538-fb99-4af9-8398-8c31a1b79fb5"> -<ExampleWords> -<AUni ws="en">block, check, hem in, blockade, get in the way</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to preventing someone from moving by getting in their way?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a72b5581-fcdc-4e67-94d3-451e5949b5b8" ownerguid="bbc3f307-133c-47b5-97ac-d59e966ff060"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">root</AUni> -<AUni ws="es">raíz</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="de3fa208-9b95-4ac3-b094-7c3a39aa1a35" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="a72ca6f7-e389-408a-8276-fec4d60a3a56" ownerguid="3a2c0773-6b3e-4f8b-909d-c8f84d66d4f4"> -<Abbreviation> -<AUni ws="en">9.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.680" /> -<DateModified val="2022-9-23 16:55:8.680" /> -<Description> -<AStr ws="en"> -<Run ws="en">Many languages have general words that indicate some kind of state. These general words may be used with a wide variety of specific meanings. For instance in English the word 'be' may be used to identify something, describe something, and many other ideas.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>13A State</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Be</AUni> -</Name> -<Questions> -<objsur guid="5b506a53-d84e-4953-911e-4aa79e251b89" t="o" /> -<objsur guid="c0aa8c0b-6c53-4f4e-98d5-ccbee74d3f18" t="o" /> -<objsur guid="c5a3ca01-8601-4690-931c-90e4f356169f" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="0d63adce-41dd-4873-b0bf-331d0205e65d" t="o" /> -<objsur guid="093eeea2-4ff6-4ee8-ad05-8af1702b7246" t="o" /> -<objsur guid="da988f73-fc9d-4a23-b70d-22299a7c6097" t="o" /> -<objsur guid="94cad4ca-c2ec-4ff3-b9b1-11107549941d" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="a730d0b4-b6db-45ac-bf6e-cefc96ae3fbb" ownerguid="7d54d3dd-5fb2-4640-9bcf-c234696af894"> -<Abbreviation> -<AUni ws="en">4.3.5.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.235" /> -<DateModified val="2022-9-23 16:55:8.235" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to deceiving someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88U Mislead, Lead Astray, Deceive</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Deceive</AUni> -</Name> -<Questions> -<objsur guid="5255f436-d87e-49be-9191-63463bf05e66" t="o" /> -<objsur guid="61869b58-18e4-4de4-b56c-04647bae356e" t="o" /> -<objsur guid="1d9ca436-7282-4c7b-934d-69f4139209f6" t="o" /> -<objsur guid="cbae6099-cec1-42ce-8a29-ac6fbf9317ac" t="o" /> -<objsur guid="2fcf82e0-b224-4cb9-97b7-e823d1383515" t="o" /> -<objsur guid="c84e4eb2-b3b9-4cc3-a74c-2d8aba0f0a79" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="a7314920-e72c-49b4-8639-e2447eb0038b" ownerguid="90037347-4dde-4b7e-ac02-5a67c6cd79de"> -<Form> -<AUni ws="qvm-x-ach">cutichilway</AUni> -<AUni ws="qvm-x-acl">cutichilway</AUni> -<AUni ws="qvm-x-akh">kutichilway</AUni> -<AUni ws="qvm-x-akl">kutichilway</AUni> -<AUni ws="qvm-x-ame">kutichilway</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a73211ff-cea4-4bb7-b83b-c194507c474f" ownerguid="9ed42115-8532-4f99-b0c0-36abfe9db652"> -<ExampleWords> -<AUni ws="en">be low down, be at the bottom, be at the bottom of the pile</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being low in status?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a735fd91-8d22-47c7-8949-8782a8a27054" ownerguid="02990ea1-29db-4ec9-9d39-5edc58f4b60c" /> -<rt class="MoStemMsa" guid="a7386bf2-380c-4e8c-b049-d454231f8e3c" ownerguid="e36a2ebf-7195-431a-8f9f-1f7943754de6"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a73c5b13-cb71-43b1-b3aa-0c1c4cb93f46" ownerguid="f718fc15-59b2-4b6a-a9e3-39b3e8d487d7"> -<ExampleWords> -<AUni ws="en">growth, development, maturation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the process of growing?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a73c9c31-7e39-4c84-8614-4e84257a105a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mantie:ni</AUni> -<AUni ws="qvm-x-acl">mantie:ni; mantie:ne</AUni> -<AUni ws="qvm-x-akh">mantie:ni</AUni> -<AUni ws="qvm-x-akl">mantie:ni; mantie:ne</AUni> -<AUni ws="qvm-x-ame">mantie:ni</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mantener</AUni> -<AUni ws="qvm-x-acl">+mantener</AUni> -<AUni ws="qvm-x-akh">+mantener</AUni> -<AUni ws="qvm-x-akl">+mantener</AUni> -<AUni ws="qvm-x-ame">+mantener</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.323" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c54f1255-5209-4a71-8c07-6d8fed1b4238" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mantener</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6164c162-ab75-4dc6-9e50-1afe9efe6159" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1ccba061-db9f-4417-b619-e609cbacca45" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mantener 
\entryTyp root 
\gENG support 
\gSPN mantener 
\e +mantener 
\c V2 
\mp +FinalI 
\ach mantie:ni 
\akh mantie:ni 
\acl mantie:ni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl mantie:ne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mantie:ni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mantie:ne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mantie:ni</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="a740afc4-2bc0-4fdc-8cab-e650487a246e" ownerguid="71db9179-0dd5-445f-b153-c1857c6cf612"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ku</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ku</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b952a19-fce6-44e5-ab25-c091ef27f843" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -<Sense> -<objsur guid="909cfa11-00e3-4787-b51b-dfac729061be" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="a7418167-b85b-45f1-a4f6-d6c7d049f181" ownerguid="0d38c343-9c51-47fe-a367-ffadfc92c507"> -<ExampleWords> -<AUni ws="en">youthful, well-preserved</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe someone who looks or acts young?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a7466543-1c88-493b-bdfa-f737d82c1e1f" ownerguid="fbc0960d-67cd-474f-bb01-3c189f6335f0"> -<Form> -<AUni ws="qvm-x-ach">estatütu</AUni> -<AUni ws="qvm-x-acl">estatütu; estatütu; estatüto</AUni> -<AUni ws="qvm-x-akh">estatütu</AUni> -<AUni ws="qvm-x-akl">estatütu; estatütu; estatüto</AUni> -<AUni ws="qvm-x-ame">estatütu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a748588b-1138-4ea5-a007-18ea918f65c7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">naupa; naupa:</AUni> -<AUni ws="qvm-x-acl">naupa; naupa:</AUni> -<AUni ws="qvm-x-akh">nawpa; nawpa:</AUni> -<AUni ws="qvm-x-akl">nawpa; nawpa:</AUni> -<AUni ws="qvm-x-ame">nawpa; nawpa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñawpa:</AUni> -<AUni ws="qvm-x-acl">*ñawpa:</AUni> -<AUni ws="qvm-x-akh">*ñawpa:</AUni> -<AUni ws="qvm-x-akl">*ñawpa:</AUni> -<AUni ws="qvm-x-ame">*ñawpa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.598" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b08553f1-d05b-41c2-b707-c611c96118c3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñawpa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c98c3cc8-760a-42a3-884b-3a683b533bf8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f42682aa-bfaf-4278-b6ca-da33d96ce20d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñawpa: 
\entryTyp root 
\gENG go.ahead 
\gSPN adelantarse 
\e *ñawpa: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach naupa foreshortened 
\ach naupa: 
\akh nawpa foreshortened 
\akh nawpa: 
\acl naupa foreshortened 
\acl naupa: 
\akl nawpa foreshortened 
\akl nawpa: 
\ame nawpa foreshortened 
\ame nawpa: 
\mcc *ñawpa: / ~_ REF 
\mcc *ñawpa: / ~_ SUD 
\mcc *ñawpa: / ~_ 3 COND</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a74c97f9-27c1-43a4-a735-eeae29947bb7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lápiz; la:piz</AUni> -<AUni ws="qvm-x-acl">lápiz; la:piz</AUni> -<AUni ws="qvm-x-akh">lápiz; la:piz</AUni> -<AUni ws="qvm-x-akl">lápiz; la:piz</AUni> -<AUni ws="qvm-x-ame">lápiz; la:piz</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lápiz.1</AUni> -<AUni ws="qvm-x-acl">+lápiz.1</AUni> -<AUni ws="qvm-x-akh">+lápiz.1</AUni> -<AUni ws="qvm-x-akl">+lápiz.1</AUni> -<AUni ws="qvm-x-ame">+lápiz.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.630" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d8740dc2-d496-4bc6-af42-4f01b3174d27" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lápiz.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6d32cbb2-ee13-442b-81c1-3717b98bdb42" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2d848550-93d1-48bf-bb76-ba718478d623" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lápiz.1 
\entryTyp root 
\gENG pen 
\gSPN lápiz.1 
\e +lápiz.1 
\c N0 
\mp +FinalC 
\ach lápiz / _# 
\ach la:piz / ~_# 
\akh lápiz / _# 
\akh la:piz / ~_# 
\acl lápiz / _# 
\acl la:piz / ~_# 
\akl lápiz / _# 
\akl la:piz / ~_# 
\ame lápiz / _# 
\ame la:piz / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a74f648f-52b5-4f8d-b022-a323cb9ecea9" ownerguid="af62c8f6-43c7-4c44-a0d1-ab9bcff8e26f"> -<ExampleWords> -<AUni ws="en">imitate, pattern after, mimic, imitate, copy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to imitating someone?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="a7522f0d-f5fe-4f37-8daf-3ec0db391cb1" ownerguid="4bcf81e9-1edc-4872-a8d3-b0f710b56b30"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="ef0284d8-9699-42e8-927e-d0484a27678f" t="o" /> -<objsur guid="76f03af6-642d-4c8b-a3f3-81b2561852a4" t="o" /> -<objsur guid="c8233a7f-14a5-43b2-b1ff-f3e20c1120a3" t="o" /> -<objsur guid="ac2d0c84-75e5-4630-9534-a92f96277e2b" t="o" /> -<objsur guid="bc934585-14b8-4154-a564-0fd8e7b05923" t="o" /> -</MorphBundles> -</rt> -<rt class="CmSemanticDomain" guid="a755eaba-fce9-4a8b-b9cf-b3970a49f464" ownerguid="0f7c4d2f-ed94-49ba-a91c-fba36193f35a"> -<Abbreviation> -<AUni ws="en">6.8.4.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to an expensive price.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Expensive</AUni> -</Name> -<Questions> -<objsur guid="e9363c16-4108-4d74-9917-8924cb24f7f8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="a7568031-43e3-4cf9-b162-ac2fe74125f1" ownerguid="d8366daf-ae1d-4b2c-a447-478c73580639"> -<Abbreviation> -<AUni ws="en">6.1.2.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.365" /> -<DateModified val="2022-9-23 16:55:8.365" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to an opportunity to do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Opportunity</AUni> -</Name> -<Questions> -<objsur guid="396e5ef7-557d-4a0a-b30c-14bf09f0c06f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="a7573971-b029-49a6-aaa1-6f7c041fa7f1" ownerguid="ae1a3325-4d14-4ca5-8e66-00e6007d5a2a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="a758718d-6e90-471d-acde-a637ba9ff9eb" ownerguid="67931f1c-9a0c-4d18-9762-e553c132256c"> -<Abbreviation> -<AUni ws="en">6.8.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to selling something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Sell</AUni> -</Name> -<Questions> -<objsur guid="a2f072b5-f895-4d0e-9d25-4d91cfe0355f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="a75a5ee2-0d20-45ce-8a6c-68c9cdc42dd8" ownerguid="738e1ab1-f471-470b-9cb4-c6bfb781f7c0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="a764174f-ccb7-48b1-add7-158bc89a5e81" ownerguid="31ccb9e3-d434-4430-ac84-486cc5a1c53d"> -<Abbreviation> -<AUni ws="en">6.1.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.367" /> -<DateModified val="2022-9-23 16:55:8.367" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to failing to do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Fail</AUni> -</Name> -<Questions> -<objsur guid="e360f576-424c-4083-ad52-ef73d5aaec7a" t="o" /> -<objsur guid="2598f457-b7cc-47f6-afd2-6de0b04c52c9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="a7653dc2-96d2-4406-b93d-c5fad4b85832" ownerguid="98f41510-b28c-4b6d-8782-1a7e589ab737"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">steps</AUni> -<AUni ws="es">grada</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2feba8da-76e0-40bd-ad77-1608c0bd8a45" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a766155b-12a1-420d-94eb-93fb5b2dba7c" ownerguid="816490a4-2cac-472a-bbb0-eafbb9bbe4a8"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">My parents had five boys and I am the <second>.; This book is the <third> in the series.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">first, second, third, fourth, fifth, sixth, seven, eighth, ninth, tenth, eleventh, twelfth, thirteenth, hundredth, thousandth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the ordinal numbers?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a7677f2f-65c8-4b01-b5d3-387abb8b7c7e" ownerguid="a1e39ec2-25be-4665-9e71-c431c03e7a20"> -<Form> -<AUni ws="qvm-x-ach">jäcu; jäca</AUni> -<AUni ws="qvm-x-acl">jäcu; jäco; jäca</AUni> -<AUni ws="qvm-x-akh">jäku; jäka</AUni> -<AUni ws="qvm-x-akl">jäku; jäko; jäka</AUni> -<AUni ws="qvm-x-ame">häku; häka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a76859f6-b6fd-4d69-9837-77d30931fde3" ownerguid="c7c3aa7d-a4b5-45af-9a31-a640179e8fa4"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en"><light> blue, <dark> red, <dull> gray, <faded> colors</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">fairly, sort of, quite</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words modify an attribute?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a768ef98-7a32-4e3d-a1c7-2846112fae64" ownerguid="76e1a0be-4631-4515-8f6e-b74bf40859b9"> -<Form> -<AUni ws="qvm-x-ach">pirwa</AUni> -<AUni ws="qvm-x-acl">pirwa</AUni> -<AUni ws="qvm-x-akh">pirwa</AUni> -<AUni ws="qvm-x-akl">pirwa</AUni> -<AUni ws="qvm-x-ame">pirwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="a769c2ec-1f84-4ddc-b37a-4a01c46ca6fe" ownerguid="3b2de55c-317a-4c5a-8732-7df8b74be33c"> -<Form> -<AUni ws="qvm-x-ach">räja</AUni> -<AUni ws="qvm-x-acl">räja</AUni> -<AUni ws="qvm-x-akh">räja</AUni> -<AUni ws="qvm-x-akl">räja</AUni> -<AUni ws="qvm-x-ame">räja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a76b6e1f-4453-41f6-9237-7a5e2ff7612f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">desordin</AUni> -<AUni ws="qvm-x-acl">desordin; desordin; desorden</AUni> -<AUni ws="qvm-x-akh">desordin</AUni> -<AUni ws="qvm-x-akl">desordin; desordin; desorden</AUni> -<AUni ws="qvm-x-ame">desordin</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+desorden</AUni> -<AUni ws="qvm-x-acl">+desorden</AUni> -<AUni ws="qvm-x-akh">+desorden</AUni> -<AUni ws="qvm-x-akl">+desorden</AUni> -<AUni ws="qvm-x-ame">+desorden</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.394" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8c73be40-d628-4baa-9558-32e5ffdd37ec" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+desorden</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0d03f176-f1fa-4065-a19b-07db66f9c6ca" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f3af1288-cf5a-474d-be20-d188b6d00061" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +desorden 
\entryTyp root 
\gENG confusion 
\gSPN 
\e +desorden 
\c N0 
\mp +FinalC 
\ach desordin 
\akh desordin 
\acl desordin / _# 
\acl desordin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl desorden +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl desordin / _# 
\akl desordin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl desorden +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame desordin</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a76dc37e-6d7c-4ae4-a56f-e19dc3dc5433" ownerguid="9eae4253-ffc1-4515-9ca5-5716bb4fd648"> -<Form> -<AUni ws="qvm-x-ach">mïdi</AUni> -<AUni ws="qvm-x-acl">mïdi; mïde</AUni> -<AUni ws="qvm-x-akh">mïdi</AUni> -<AUni ws="qvm-x-akl">mïdi; mïde</AUni> -<AUni ws="qvm-x-ame">mïdi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a77063f8-6f33-4f38-9288-5865061f01e9" ownerguid="7fed6281-326a-4a15-8cbf-dc574594da19"> -<ExampleWords> -<AUni ws="en">music lover, critic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe someone who likes to listen to music?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a7712dab-7710-4b07-8582-3086d0c0bcc0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chaucha</AUni> -<AUni ws="qvm-x-acl">chaucha</AUni> -<AUni ws="qvm-x-akh">chawcha</AUni> -<AUni ws="qvm-x-akl">chawcha</AUni> -<AUni ws="qvm-x-ame">chawcha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chawcha</AUni> -<AUni ws="qvm-x-acl">*chawcha</AUni> -<AUni ws="qvm-x-akh">*chawcha</AUni> -<AUni ws="qvm-x-akl">*chawcha</AUni> -<AUni ws="qvm-x-ame">*chawcha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.295" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eed67b10-0e1d-4e45-b54f-aca3439c311a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chawcha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c395b369-f4a0-4a67-af62-d1db83b2af24" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="afc0240e-80ca-4f20-a136-8149bd6fee82" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chawcha 
\entryTyp root 
\gENG 
\gSPN 
\e *chawcha 
\c N0 
\ach chaucha 
\akh chawcha 
\acl chaucha 
\akl chawcha 
\ame chawcha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a776a035-3dcb-48d3-bd13-2655783e5c19" ownerguid="c888c7ac-8cf4-49d2-a33e-20d19d84c47b"> -<ExampleWords> -<AUni ws="en">slop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What do pigs eat?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a777c9d6-9372-4620-be88-6006da5147ae" ownerguid="67d10a00-fda8-4a3a-becd-f3ae3b00fcca"> -<ExampleWords> -<AUni ws="en">shock, horror, outrage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of shock?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="a779aca5-a3f3-4f30-a0b4-1e4d90b33fec" ownerguid="f77fd6a4-0a27-4b86-8744-6616143af5e7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuti</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuti; cute</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuti</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuti; kute</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuti</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1ea93998-be9c-4ae6-b87a-1279a5c89619" t="r" /> -</Morph> -<Msa> -<objsur guid="35967ee3-872d-4b56-ae00-e643fda7e9f3" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="a77b6825-41c2-4f04-9864-8a99f0ed10b3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gasagla:wa</AUni> -<AUni ws="qvm-x-acl">gasagla:wa</AUni> -<AUni ws="qvm-x-akh">qasaqla:wa</AUni> -<AUni ws="qvm-x-akl">qasaqla:wa</AUni> -<AUni ws="qvm-x-ame">qasaqla:wa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qasaqla:wa</AUni> -<AUni ws="qvm-x-acl">*qasaqla:wa</AUni> -<AUni ws="qvm-x-akh">*qasaqla:wa</AUni> -<AUni ws="qvm-x-akl">*qasaqla:wa</AUni> -<AUni ws="qvm-x-ame">*qasaqla:wa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.132" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c039b2f0-c4e4-4c8a-90c6-0bf91c291ff7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qasaqla:wa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fe33b9e8-f8f8-445e-a955-3a92c1ce2f04" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c4696400-50a3-444c-8c95-c59227cd4693" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qasaqla:wa 
\entryTyp root 
\gENG taciturn 
\gSPN no. habla 
\e *qasaqla:wa 
\c N0 
\ach gasagla:wa 
\akh qasaqla:wa 
\acl gasagla:wa 
\akl qasaqla:wa 
\ame qasaqla:wa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a77fde5f-bed8-4e31-9349-742366b09b9d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pitsga</AUni> -<AUni ws="qvm-x-acl">pitsga</AUni> -<AUni ws="qvm-x-akh">pitsqa</AUni> -<AUni ws="qvm-x-akl">pitsqa</AUni> -<AUni ws="qvm-x-ame">pitsqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pichqa</AUni> -<AUni ws="qvm-x-acl">*pichqa</AUni> -<AUni ws="qvm-x-akh">*pichqa</AUni> -<AUni ws="qvm-x-akl">*pichqa</AUni> -<AUni ws="qvm-x-ame">*pichqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.820" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bec3d25a-5630-4f38-a007-2062db8944fe" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pichqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bfa339d1-e8b8-4dc3-8ea4-6ffe346e4a5b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4b9e0d72-5558-4b2e-bae1-6d46f54cb563" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pichqa 
\entryTyp root 
\gENG five 
\gSPN cinco 
\e *pichqa 
\c N0 
\ach pitsga 
\akh pitsqa 
\acl pitsga 
\akl pitsqa 
\ame pitsqa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a780cc0e-d2b0-496c-92d3-1be5674170e7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">loglu</AUni> -<AUni ws="qvm-x-acl">loglu; loglu; loglo</AUni> -<AUni ws="qvm-x-akh">loqlu</AUni> -<AUni ws="qvm-x-akl">loqlu; loqlu; loqlo</AUni> -<AUni ws="qvm-x-ame">luqlu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lluqllu.n</AUni> -<AUni ws="qvm-x-acl">*lluqllu.n</AUni> -<AUni ws="qvm-x-akh">*lluqllu.n</AUni> -<AUni ws="qvm-x-akl">*lluqllu.n</AUni> -<AUni ws="qvm-x-ame">*lluqllu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.235" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="65c0aec0-3f79-4e87-8313-6abe37666358" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lluqllu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7b739e30-207c-4136-be4d-5784f20ebfff" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0d9cac6e-369c-41fb-b935-8cad485e925b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lluqllu.n 
\entryTyp root 
\gENG spread.out 
\gSPN 
\e *lluqllu.n 
\c N0 
\ach loglu 
\akh loqlu 
\acl loglu / _# 
\acl loglu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl loglo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl loqlu / _# 
\akl loqlu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl loqlo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame luqlu 
\i Rämancunapis logluypa loglumi winan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="a781d57d-174d-47a6-b6a1-ae635a13df84" ownerguid="e7c58c11-2911-446a-96b0-2113247f3792"> -<Abbreviation> -<AUni ws="en">4.1.9.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.201" /> -<DateModified val="2022-9-23 16:55:8.201" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that refer to social groups composed of related people.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>11D Ethnic-Cultural</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Family, clan</AUni> -</Name> -<OcmCodes> -<Uni>590 Family; 144 Racial Identification; Racial Affinities; 591 Residence; 592 Household; 593 Family Relationships; 594 Nuclear Family; 595 Polygamy; 596 Extended Families; 610 Kin Groups; 611 Rule of Descent; 612 Kindreds and Ramages; 613 Lineages; 614 Clans; 615 Phratries; 616 Moieties; 617 Bilineal Kin Groups; 618 Localized Kin Groups; 619 Tribe and Nation</Uni> -</OcmCodes> -<Questions> -<objsur guid="0e642e42-6fe3-41ec-b10a-e0b5dd30fa21" t="o" /> -<objsur guid="28ec81ce-5a72-415f-9e37-4abd04a83130" t="o" /> -<objsur guid="381d3074-0d6d-40a9-b684-15cb22ea12d9" t="o" /> -<objsur guid="c367287f-385f-43ed-9fe4-42a77896c1b7" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="a7824686-a3f3-4c8a-907e-5d841cf846c8" ownerguid="4bf411b7-2b5b-4673-b116-0e6c31fbd08a"> -<Abbreviation> -<AUni ws="en">8.3.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.609" /> -<DateModified val="2022-9-23 16:55:8.609" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a light source shining--for something to make light.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Shine</AUni> -</Name> -<Questions> -<objsur guid="36127a72-3ce7-4ca1-a9c6-ca3ebbeb7f83" t="o" /> -<objsur guid="4e4dbec3-b4bf-4881-8f57-af79887e7dfa" t="o" /> -<objsur guid="3545ca41-0ddd-40a3-9809-2a62d51e75f6" t="o" /> -<objsur guid="a063dde9-01af-4bc3-9384-e6c8c3498bdc" t="o" /> -<objsur guid="d141e63d-20b4-4e08-9cba-a7e69a765324" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="64e41545-3a0a-4524-a8d4-8e5e0f0e2391" t="o" /> -<objsur guid="2330813b-7413-41a8-8eb2-ae138511c953" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="a78674fd-f244-4f17-acc4-46a668c84d17" ownerguid="da7866e6-1f15-4693-991d-5b5234334976"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="5c357ab1-5c89-453b-92eb-72e37653306c" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="a326cbfa-99c4-4e80-b440-e90026ce9427" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="a78b2bc4-6b7f-43cd-9441-091d5362a325"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">ABL</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="a79271db-1728-4d0f-9f27-9a01a44e8183" ownerguid="0f23f3b8-8ed9-4670-8878-9ed7223a46d5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">certify</AUni> -<AUni ws="es">certificar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1ac1e89a-e7a1-4892-be5b-67bdb71696b3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a7940683-a253-48a9-affb-817ec6fe95a2" ownerguid="b43fae8e-6b19-42ed-98cd-d363174b9cf8"> -<ExampleWords> -<AUni ws="en">reduction, contraction, decrease (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the process of becoming small?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a796ec30-1ed8-4f31-935c-156a9adcea61" ownerguid="384f7ec4-3100-4734-9e25-17740dcbc68c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="03d2b625-2c86-41c6-9a70-59eca2fca6cf" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">unit.of.measure</AUni> -<AUni ws="es">unidad.de.medida</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b6c5f5d6-a961-425d-a993-5f4acf5b0a8a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a79a4379-36b1-40aa-9b8f-a8e8d104d275" ownerguid="afa77a2a-8b0f-4a39-91bc-040e90ffbb3a"> -<ExampleWords> -<AUni ws="en">exultant, glee, gleeful, gloat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to feeling good when something bad happens to someone?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="a79ad0c0-d592-4bc8-a879-64b63e24a800"> -<Form> -<Str> -<Run ws="en">ver</Run> -</Str> -</Form> -</rt> -<rt class="MoStemMsa" guid="a79bbc0a-a7df-46d7-ba39-51473d2f3d92" ownerguid="333bdd9e-1ba6-4fe6-934f-676d7cc98bd6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="a79c6ef2-9586-4b46-981c-9ec1d89ef270" ownerguid="c6ea12be-7f25-45bf-938e-4c9a801b929f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">box</AUni> -<AUni ws="es">cuadro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1bd679b4-f20e-4c85-87a3-1e80f3ebfe2a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a79d88fc-c869-491a-8c9e-bcfbfe8720a4" ownerguid="4ef76c70-68d7-49b1-a4a2-7b2e6c7ff89a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tea.kettle</AUni> -<AUni ws="es">tetera</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3bb512aa-49a6-491c-9fcc-d819cb8e516b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a79dbbf8-5bfb-46d2-a9cf-fe38d100aa09" ownerguid="57b07c49-f5ff-4cf9-9333-0e10ca873e82"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">clench.in.mouth</AUni> -<AUni ws="es">agarrar.en.boca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c7bd463c-adc0-4f02-ba85-3f88899d25b8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a7a0a0da-97a4-4384-a263-c3bfa10d710f" ownerguid="5c770098-2c91-4a9c-bfa0-a7ffaa871a7f"> -<ExampleWords> -<AUni ws="en">hire, employ</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to hiring someone?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a7a204aa-c7e2-40c9-9734-bf83a5e9b1a8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ishqui</AUni> -<AUni ws="qvm-x-acl">ishqui; ishque</AUni> -<AUni ws="qvm-x-akh">ishki</AUni> -<AUni ws="qvm-x-akl">ishki; ishke</AUni> -<AUni ws="qvm-x-ame">ishki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ishki.v1</AUni> -<AUni ws="qvm-x-acl">*ishki.v1</AUni> -<AUni ws="qvm-x-akh">*ishki.v1</AUni> -<AUni ws="qvm-x-akl">*ishki.v1</AUni> -<AUni ws="qvm-x-ame">*ishki.v1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.850" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="da137f95-6c7c-4027-bf4e-7bc27365a6e6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ishki.v1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0a8275cd-f851-47ac-8103-2d906d2a4417" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4bcbb739-593a-4493-9ead-1611e59073b7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ishki.v1 
\entryTyp root 
\gENG fall 
\gSPN caerse 
\e *ishki.v1 
\c V1 
\mp +FinalI 
\ach ishqui 
\akh ishki 
\acl ishqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ishque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ishki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ishke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ishki</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a7a2e61c-440b-4db7-806d-5e4a2c5ba77a" ownerguid="9bb6f1ed-7170-4caa-a14c-747fd95ca30e"> -<ExampleWords> -<AUni ws="en">sweet, sugary, sweetened</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that has sugar in it?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a7a661cf-38dc-4139-8ae2-b869a6baa34b" ownerguid="dd1d7a67-9c2a-4283-a3e0-bbe6e1d96bda"> -<Form> -<AUni ws="qvm-x-ach">pucillu; pucillo</AUni> -<AUni ws="qvm-x-acl">pucillu; pucillu; pucillo</AUni> -<AUni ws="qvm-x-akh">pucillu; pucillo</AUni> -<AUni ws="qvm-x-akl">pucillu; pucillu; pucillo</AUni> -<AUni ws="qvm-x-ame">pucillu; pucillo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a7a7e774-fa1c-4edf-94ec-8245dfdb28c6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cone:ju</AUni> -<AUni ws="qvm-x-acl">cone:ju; cone:ju; cone:jo</AUni> -<AUni ws="qvm-x-akh">cone:ju</AUni> -<AUni ws="qvm-x-akl">cone:ju; cone:ju; cone:jo</AUni> -<AUni ws="qvm-x-ame">cone:ju</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+conejo</AUni> -<AUni ws="qvm-x-acl">+conejo</AUni> -<AUni ws="qvm-x-akh">+conejo</AUni> -<AUni ws="qvm-x-akl">+conejo</AUni> -<AUni ws="qvm-x-ame">+conejo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.162" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7af8bab4-6fae-483c-8e49-c553b1b612d4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+conejo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6313c642-c06f-43a6-ba82-f6ec36d9d546" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fb7d3cc6-b13b-4aee-9975-86089dbe7df9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +conejo 
\entryTyp root 
\gENG rabbit 
\gSPN conejo 
\e +conejo 
\c N0 
\ach cone:ju 
\akh cone:ju 
\acl cone:ju / _# 
\acl cone:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cone:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cone:ju / _# 
\akl cone:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cone:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cone:ju</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="a7a8824e-aead-4c3a-8112-01b0ea6254d0" ownerguid="8bc527ac-155c-4d88-b553-aab9e97e5502"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">patience</AUni> -<AUni ws="es">paciencia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="136f2e28-1ec6-487c-8ce7-e62c4d0ffdf6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a7a927f4-baae-4fbe-a00f-4b058ea834b9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ja:chisya; ja:chisya:</AUni> -<AUni ws="qvm-x-acl">ja:chisya; ja:chisya:</AUni> -<AUni ws="qvm-x-akh">ja:chisya; ja:chisya:</AUni> -<AUni ws="qvm-x-akl">ja:chisya; ja:chisya:</AUni> -<AUni ws="qvm-x-ame">ha:chisya; ha:chisya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ha:trisya:</AUni> -<AUni ws="qvm-x-acl">*ha:trisya:</AUni> -<AUni ws="qvm-x-akh">*ha:trisya:</AUni> -<AUni ws="qvm-x-akl">*ha:trisya:</AUni> -<AUni ws="qvm-x-ame">*ha:trisya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.690" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b2d15168-dd00-46ba-a22f-6c2dda1f8e07" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ha:trisya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="896fe4cc-b9a9-49ec-b314-68562a2c86ee" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f205bf4a-bf4c-4fe5-af00-d711bc807af7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ha:trisya: 
\entryTyp root 
\gENG sneeze 
\gSPN estornudar 
\e *ha:trisya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach ja:chisya foreshortened 
\ach ja:chisya: 
\akh ja:chisya foreshortened 
\akh ja:chisya: 
\acl ja:chisya foreshortened 
\acl ja:chisya: 
\akl ja:chisya foreshortened 
\akl ja:chisya: 
\ame ha:chisya foreshortened 
\ame ha:chisya:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="a7aa0b4b-c3c6-4fdb-a201-c28f8218e468" ownerguid="fa80eb56-d1c3-4fde-9ef9-75f0749e8fdc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V2</Run> -</AStr> -</Custom> -<Definition> -<AStr ws="en"> -<Run ws="en">intermittent</Run> -</AStr> -<AStr ws="es"> -<Run ws="es">intermitiente</Run> -</AStr> -</Definition> -<Gloss> -<AUni ws="en">INTER</AUni> -<AUni ws="es">INTER</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="56ccbf7e-62af-4fad-98de-8c627f35a848" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="a7abffb4-d22c-4e47-8cb0-b2f1cead8da6" ownerguid="ff6b4fe8-6cd5-4d38-a190-509772f96b24"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="a7ac842e-8c38-4b68-87dd-ed968e088cdb" ownerguid="65429919-05cf-4261-8822-c821702f636f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuya</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuya</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuya</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuya</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuya</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ed8e0c9a-5a44-4448-bc6b-1b766f141f5c" t="r" /> -</Morph> -<Msa> -<objsur guid="6ee88865-51d6-40db-b9fa-4ba30a1cf4e7" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="a7ad13d3-e658-4b2a-beb4-18c6758a787b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">propi:na</AUni> -<AUni ws="qvm-x-acl">propi:na</AUni> -<AUni ws="qvm-x-akh">propi:na</AUni> -<AUni ws="qvm-x-akl">propi:na</AUni> -<AUni ws="qvm-x-ame">propi:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+propina</AUni> -<AUni ws="qvm-x-acl">+propina</AUni> -<AUni ws="qvm-x-akh">+propina</AUni> -<AUni ws="qvm-x-akl">+propina</AUni> -<AUni ws="qvm-x-ame">+propina</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.948" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="009c9229-cfaf-4f4d-b164-cee02e5d1f3f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+propina</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5d1053cd-a135-434b-9335-fb12b286508f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a3e984a5-2339-4f5e-8f6b-a400898acfa7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +propina 
\entryTyp root 
\gENG 
\gSPN 
\e +propina 
\c N0 
\ach propi:na 
\akh propi:na 
\acl propi:na 
\akl propi:na 
\ame propi:na 
\i 2KI 25.30 Tsaynogpis cada junagmi propïnanta chasquergan gastuncunapag.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a7aefd14-13a2-4875-9137-aa8e90d48cc8" ownerguid="5b5e6818-ede9-4980-bb47-6cb17453f7dc"> -<Form> -<AUni ws="qvm-x-ach">machu</AUni> -<AUni ws="qvm-x-acl">machu; machu; macho</AUni> -<AUni ws="qvm-x-akh">machu</AUni> -<AUni ws="qvm-x-akl">machu; machu; macho</AUni> -<AUni ws="qvm-x-ame">machu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="a7b299e0-c78a-4279-9168-db242095977e" ownerguid="7cba6668-604a-44ec-907f-f67ff17a52fd"> -<Form> -<AUni ws="qvm-x-ach">cay</AUni> -<AUni ws="qvm-x-acl">cay</AUni> -<AUni ws="qvm-x-akh">kay</AUni> -<AUni ws="qvm-x-akl">kay</AUni> -<AUni ws="qvm-x-ame">kay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="a7b32d1b-1be7-43ec-94a1-fc7bdd826168" ownerguid="af0909a5-928a-4421-baaa-f33b14302714"> -<Abbreviation> -<AUni ws="en">9.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain to list all particles.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Particles</AUni> -</Name> -<Questions> -<objsur guid="3536b173-3a6c-4eaa-8894-bfd038cb091a" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="da41ea1f-dd09-421d-a1a5-174ff43f4eff" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="a7b6d17e-5fea-4e49-9d6c-70f5aa5250c4" ownerguid="91ef6c77-bb2f-479a-890e-5cd6aa8694df"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">niqui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">niqui; niqui; nique</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">niki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">niki; niki; nike</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">niki</Run> -</AStr> -</Form> -</rt> -<rt class="LexSense" guid="a7b70024-de7d-4eec-b290-055b2dfda3ad" ownerguid="9ddf4735-6c76-4b73-98cf-d3fc5f808e3e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="904210f9-ad72-48eb-b55b-d2c5b6b25461" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a7bbb255-5b0a-4002-ae08-64f896cfacb5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">premiu; premio</AUni> -<AUni ws="qvm-x-acl">premiu; premiu; premio</AUni> -<AUni ws="qvm-x-akh">premiu; premio</AUni> -<AUni ws="qvm-x-akl">premiu; premiu; premio</AUni> -<AUni ws="qvm-x-ame">premiu; premio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+premio</AUni> -<AUni ws="qvm-x-acl">+premio</AUni> -<AUni ws="qvm-x-akh">+premio</AUni> -<AUni ws="qvm-x-akl">+premio</AUni> -<AUni ws="qvm-x-ame">+premio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.911" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="57212f6e-763d-40b9-a0eb-456706d38d9c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+premio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8b533a79-919e-4f5f-bab5-03d48e749ee3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d9f2c5cf-2a6a-4543-88b5-293548bbbd15" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +premio 
\entryTyp root 
\gENG prize 
\gSPN premio 
\e +premio 
\c N0 
\ach premiu / ~_# 
\ach premio / _# 
\akh premiu / ~_# 
\akh premio / _# 
\acl premiu / ~_# 
\acl premiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl premio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl premiu / ~_# 
\akl premiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl premio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame premiu / ~_# 
\ame premio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a7c13fcc-c45e-4df9-9bd9-2a3fd2875f8a" ownerguid="29366746-50da-4c40-b276-ccf85f210ae8"> -<Form> -<AUni ws="qvm-x-ach">laya</AUni> -<AUni ws="qvm-x-acl">laya</AUni> -<AUni ws="qvm-x-akh">laya</AUni> -<AUni ws="qvm-x-akl">laya</AUni> -<AUni ws="qvm-x-ame">laya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a7cc2d4e-8265-4fe8-86bc-a07775baf95c" ownerguid="12f12bf3-f232-4477-bf39-d91b7f55c2c3"> -<ExampleWords> -<AUni ws="en">how often, how many times, the number of times, frequency</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words indicate how often something happens?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a7cc5d7e-d6ee-425a-8da6-68b7e838906e" ownerguid="ef6d136e-ac1d-48b9-819d-252485534557"> -<ExampleWords> -<AUni ws="en">contract, memorandum of agreement, treaty, peace accord, charter, constitution, compact, pact, will, testament, covenant, notarize</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a legal contract?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="a7ce228d-da93-41a8-93fd-08d42493ebe9" ownerguid="7a9d5287-b59b-40cb-b16e-79818e3ae4b5"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">GEN 2.18 Japala car runa cuyapaypagmi caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="a7d36cfa-9f03-495b-aa5d-116e9260fb4c" ownerguid="4d52d128-44c8-4574-a625-ecbd5828d87b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="c2000091-843f-4829-b102-4c6bf7b5b7a3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="a7d3e2f3-0c26-4c65-a7a2-0e407f8463b3" ownerguid="4f2141b0-e7ec-4564-acf1-8ac376a7dea3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="a7d43f94-ed2e-4dc9-9166-e7498006c4e7" ownerguid="ecf4ab85-7d11-460d-9e4e-f50516bd0c07"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a7d5f397-e88d-4ebc-9829-91ff76342680" ownerguid="e76227e8-4a04-4fbd-a16e-5baa3d9e97a9"> -<ExampleWords> -<AUni ws="en">spawn, lay eggs</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What do fish do?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a7d8dca3-ac77-49f5-9165-a7693ba30dfa" ownerguid="ca9ba8f2-93d5-4b02-95ef-5d19575c8aeb" /> -<rt class="MoStemMsa" guid="a7dad0bc-2ae4-469c-9d19-64baebf3a2ed" ownerguid="ff36330d-8479-46d8-a6a5-dd86e292aee0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="a7dae83a-dce6-47ea-ab3f-ac8a3af4cce9" ownerguid="c8d94c8f-db0b-4016-bdd2-e41a2eae4288"> -<Abbreviation> -<AUni ws="en">4.6.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.264" /> -<DateModified val="2022-9-23 16:55:8.264" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a country.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>1L Governmental Administrative Areas</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Country</AUni> -</Name> -<Questions> -<objsur guid="9c11d9a1-f741-4c83-b4f5-eb206686543b" t="o" /> -<objsur guid="fab3101c-7f0d-4e40-8a66-b7cfb8a2e461" t="o" /> -<objsur guid="575c0d0c-51f1-462d-b724-4ded9f16d190" t="o" /> -<objsur guid="1f4106a6-8898-43f0-9503-dc12c59da657" t="o" /> -<objsur guid="eac18773-637d-4460-8ab0-40fa371ee4df" t="o" /> -<objsur guid="afb64894-f0d9-4884-8772-e2235263cb51" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="a7db782a-78c1-4d8c-a2ce-9691167af5a4" ownerguid="ef9134b4-0205-4a92-b95d-96fcc27f8e47"> -<Form> -<AUni ws="qvm-x-ach">hincha</AUni> -<AUni ws="qvm-x-acl">hincha</AUni> -<AUni ws="qvm-x-akh">hincha</AUni> -<AUni ws="qvm-x-akl">hincha</AUni> -<AUni ws="qvm-x-ame">hincha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="a7dc7b74-6a03-454f-97fd-4890519d89c7" ownerguid="cc46b6aa-9772-4bb4-a7f1-33f38a9daf22"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="a7dda087-ed7a-41d6-a202-5fcb2cff8d37"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sawan</AUni> -<AUni ws="qvm-x-acl">sawan</AUni> -<AUni ws="qvm-x-akh">sawan</AUni> -<AUni ws="qvm-x-akl">sawan</AUni> -<AUni ws="qvm-x-ame">sawan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sawan</AUni> -<AUni ws="qvm-x-acl">+sawan</AUni> -<AUni ws="qvm-x-akh">+sawan</AUni> -<AUni ws="qvm-x-akl">+sawan</AUni> -<AUni ws="qvm-x-ame">+sawan</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.470" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="13e84f86-7181-4263-bd2a-b90b3f527363" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sawan</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ab8bede6-3526-4117-bb38-269328000049" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1a9ad89c-e148-4c4e-a622-2c440cab3908" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sawan 
\entryTyp root 
\gENG 
\gSPN 
\e +sawan 
\c N0 
\mp +FinalC 
\ach sawan 
\akh sawan 
\acl sawan 
\akl sawan 
\ame sawan</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a7e0316c-5926-45d6-a690-8de59f1cebd6" ownerguid="063e0810-8e49-44ef-aa8f-bb9e63bb66dd"> -<ExampleWords> -<AUni ws="en">buy, purchase, pick up (at the store)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to buying something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a7e30d0d-25f7-4754-b22c-3becbebb3328" ownerguid="78c4c93f-a4af-4325-a119-e79ec9cabcb2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a7e353b9-8061-45ba-a6c4-16917c10df50" ownerguid="86e5c062-d90f-476c-a363-264adfafedfa"> -<ExampleWords> -<AUni ws="en">shake, nod, throw (head) back, bow, hang, hold high, crane (neck)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to moving the head?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="a7e4f8a8-3fe3-4c86-85df-059f8983df26" ownerguid="e6cf2c28-7630-41d7-835d-bd171ab67378"> -<Abbreviation> -<AUni ws="en">4.3.4.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.233" /> -<DateModified val="2022-9-23 16:55:8.233" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to using someone for your own purpose or gain without helping them.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Use a person</AUni> -</Name> -<Questions> -<objsur guid="904d0cff-0b65-4449-9e2e-99bf5af7219a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="a7e502af-cce9-4d76-926f-d0646456fba1" ownerguid="fb9fb454-1893-41f8-97ef-095928c402b4"> -<Form> -<AUni ws="qvm-x-ach">höra</AUni> -<AUni ws="qvm-x-acl">höra</AUni> -<AUni ws="qvm-x-akh">höra</AUni> -<AUni ws="qvm-x-akl">höra</AUni> -<AUni ws="qvm-x-ame">höra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a7e6e805-e316-4e78-ad8c-f84fe4d9718d" ownerguid="93d7ff09-c75b-40a3-b97f-119018f350c1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cover</AUni> -<AUni ws="es">tapar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c3267f28-3852-42bb-a03c-caad899870e1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="a7e78545-e7fb-4db0-8956-4ccd687b2013" ownerguid="7ff8d40d-32a6-44fc-a0b3-5edf046f89ba"> -<Form> -<AUni ws="qvm-x-ach">jinayla</AUni> -<AUni ws="qvm-x-acl">jinayla</AUni> -<AUni ws="qvm-x-akh">jinayla</AUni> -<AUni ws="qvm-x-akl">jinayla</AUni> -<AUni ws="qvm-x-ame">hinayla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a7eaecc8-3168-49a8-80c3-753c5e5d9dbd" ownerguid="6ea3e2ec-6988-49b0-9520-2ed73fbad920"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ffdb3ad3-853a-4fd1-8180-c83f50ed3dfe" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a7eafa37-dff8-45f3-84db-0d14c822831e" ownerguid="6ae44dd0-08c7-4556-99a6-d2b2b1c6ba54"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="1041bea6-60cc-46ff-a265-436e71f590e2" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">lukewarm</AUni> -<AUni ws="es">tíbia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="787d1d20-55d6-44c1-b2be-163dd85d395e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a7eb250d-09e8-4601-9ce7-732f4d88dd45" ownerguid="c793b885-6264-40bb-82d8-0251d7239da1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tiger</AUni> -<AUni ws="es">tigre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1f58b0df-f222-416d-b494-c9ec614b0ef2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="a7ec318d-c0a5-4050-a2de-521f9f751975" ownerguid="a491b60d-8695-4139-98ff-0485684115e6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="a7ecefe2-bb1a-45db-ba70-38a81182c855"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">le:va</AUni> -<AUni ws="qvm-x-acl">le:va</AUni> -<AUni ws="qvm-x-akh">le:va</AUni> -<AUni ws="qvm-x-akl">le:va</AUni> -<AUni ws="qvm-x-ame">le:va</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+leva</AUni> -<AUni ws="qvm-x-acl">+leva</AUni> -<AUni ws="qvm-x-akh">+leva</AUni> -<AUni ws="qvm-x-akl">+leva</AUni> -<AUni ws="qvm-x-ame">+leva</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.840" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ae0291c2-8db1-4c43-978a-aff9a7abe414" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+leva</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2f7a41e6-ea19-4e47-bfb1-9a642e3a0182" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d9c2e604-bbf7-4382-8732-88500e441a0e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +leva 
\entryTyp root 
\gENG recruitment 
\gSPN 
\e +leva 
\c N0 
\ach le:va 
\akh le:va 
\acl le:va 
\akl le:va 
\ame le:va 
\i 2KI 25.19 Tsaynoglami prësu tsarergan soldäducunapa capitanninta, reyta yätseg pitsga runacunata, lëva shuntag capitanta y sogta chunca (60) mayor runacunatapis.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a7ef4cdb-46e2-4838-8228-dcac670abcf8" ownerguid="87cdcd18-d309-4913-8d74-ee421f703757"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a7f21528-35d2-49ec-9070-a385dd45427e" ownerguid="f48346c2-1c61-4bbd-a867-8d84532bc816"> -<Form> -<AUni ws="qvm-x-ach">yarpä</AUni> -<AUni ws="qvm-x-acl">yarpä</AUni> -<AUni ws="qvm-x-akh">yarpä</AUni> -<AUni ws="qvm-x-akl">yarpä</AUni> -<AUni ws="qvm-x-ame">yarpaa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="4d5106b0-9756-4fc2-a2e3-b3bb0373fd9b" t="r" /> -</PhoneEnv> -</rt> -<rt class="MoStemAllomorph" guid="a7f2a3f8-a206-4704-82ff-27f5d5e6d37f" ownerguid="89043106-cbb3-487f-bdcd-00ea38bc6807"> -<Form> -<AUni ws="qvm-x-ach">rupupu</AUni> -<AUni ws="qvm-x-acl">rupupu; rupupo</AUni> -<AUni ws="qvm-x-akh">rupupu</AUni> -<AUni ws="qvm-x-akl">rupupu; rupupo</AUni> -<AUni ws="qvm-x-ame">rupupu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="a7f412a6-b3c0-494e-a50c-ff519ff335ac" ownerguid="b07fc6e4-2556-4a6c-8c9e-10ce1736e6a7"> -<Example> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">sharkätsëshinki, cargätsëshinki</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="a7f6e9bd-c715-4f82-bd06-b092fa1927ef" ownerguid="5225d309-285b-4169-bf8b-646f2bf1ca28"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="a7f7f1c0-406c-4815-84d2-c899ac121b50" ownerguid="4d8d9a08-8b8c-47c8-811c-0a577d67e53f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">roast</AUni> -<AUni ws="es">asar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8ede9c9d-ec56-4026-b0c1-7ef6e377e3aa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a7fa4e13-e7b5-44b3-9f36-01954e5c7e30" ownerguid="a0bceaf4-b5bd-43f7-84d8-388fce6a1b01"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1 R0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="c584af9f-1475-45ca-83cb-f29151da950e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="a7fb657f-bc40-40e9-b16b-e8c0d01b1c1d" ownerguid="3cbc6885-f099-454f-a0c3-ebbb708e04f6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="a8001168-2cc5-43dc-a478-51bbc7fbb33f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">r</AUni> -<AUni ws="qvm-x-acl">r</AUni> -<AUni ws="qvm-x-akh">r</AUni> -<AUni ws="qvm-x-akl">r</AUni> -<AUni ws="qvm-x-ame">r</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.475" /> -<DateModified val="2022-10-16 13:48:51.505" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a96fae79-db91-498f-a3f4-4aaeff3f9499" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">ADVSS1.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="973e08a0-60b3-4ff1-9973-ac70ea0a16bc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bb533f0d-2a18-4637-90ce-86198308d1f8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx ADVSS1.1 
\entryTyp suffix 
\gENG ADVSS1.1 
\gSPN ASI1.1 
\e ADVSS1.1 
\c V2/R0 V1/R0 
\o 120 
\mp +foreshortens 
\ach r 
\akh r 
\acl r 
\akl r 
\ame r 
\mp +FinalC 
\i Tsay junag mana ayunag cäga pï captinpis Israel runacunapita gargushgami canga. (Margos) 
\i Tsay junag mana ayunag cäga pï carpis Israel runacunapita gargushgami canga. (Chavinillo) 
\mcc ADVSS1.1 / ~_ OBJ 
\mcc ADVSS1.1 / ~_ PLUR 
\mcc ADVSS1.1 / ~_ JUST 
\mcc ADVSS1.1 / ~_ ABL</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a80099cd-6e7f-442c-9747-bd06091a4114" ownerguid="8583bfe9-2f9c-4eb5-817c-ad98c5b05acb"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a8066556-8127-4a2a-a245-11285e00f1fd" ownerguid="07476166-c5e5-4701-97d3-d97de8b5be6f"> -<ExampleWords> -<AUni ws="en">knowledgeable, know (something) thoroughly, know well, know all about, familiar with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to knowing something thoroughly?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a80811bb-bfbd-46d6-9d89-e89632efc942" ownerguid="2e8859a9-52ee-46fb-8355-77f1c75862e1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wart</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="56b267cb-eff7-4256-9063-d4e73f3a3a76" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a808d11d-0e55-4026-a1e3-c3fa141d6df5" ownerguid="d8366daf-ae1d-4b2c-a447-478c73580639"> -<ExampleWords> -<AUni ws="en">method, methodology, approach, means, procedure, process, strategy, system, tactics, technique, way</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a method of doing something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a808fe1d-51b3-451d-afb3-d102e87963f5" ownerguid="466a4708-420c-4053-b6af-a8b15fb1400e"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a809c1b1-d763-4bfb-a43e-4c8a9094038e" ownerguid="b632b00b-b03f-4549-8e02-6402c05a4f06"> -<ExampleWords> -<AUni ws="en">law-abiding citizen</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who obeys?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a80ec821-c844-4ea3-8cd6-1a9c56a2073d" ownerguid="5195d933-c9e7-4e81-b6e6-01a16790c638"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="a80f12aa-c30d-4892-978a-b076985742d5" ownerguid="1b0270a5-babf-4151-99f5-279ba5a4b044"> -<Abbreviation> -<AUni ws="en">2.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the parts of the torso.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Torso</AUni> -</Name> -<Questions> -<objsur guid="e0d07ed2-fe3c-452c-a2f5-68744809c7fe" t="o" /> -<objsur guid="d01e5464-daf3-4fa8-b38f-5bf1d1d2ae6d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="a8161188-80c5-4fb3-9539-2f53adf30a22" ownerguid="37e6c8b5-f63c-4f5b-8c16-eccd727d6618"> -<ExampleWords> -<AUni ws="en">fight, fight against, fight back, put up a fight, resist, resistance, put up a resistance, meet with resistance, stand up to, make a stand, take a stand, hold out against, hold your ground, not be moved, be unyielding, not give in, defend your ground, oppose, opposing, opposition, react, withstand</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to fighting against someone who is trying to do something bad?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="a8197bd1-918e-45e4-b312-be565f0c1f52" ownerguid="9ae4744e-5ac3-49f9-8d1c-b003ac0c7401"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="e1338e78-5257-440d-bf6f-d59e7da1a286" t="o" /> -<objsur guid="356f8763-1497-4290-8a4b-9e38e6377106" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiAnalysis" guid="a81b4f8f-2c46-4c9a-9640-8b7bad9360f1" ownerguid="4bcf81e9-1edc-4872-a8d3-b0f710b56b30"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="031382fd-597e-4b98-ad00-629b2cac3287" t="o" /> -<objsur guid="b14d71df-110c-4721-890c-f06a0bafb28a" t="o" /> -<objsur guid="d27912e6-7603-402f-a263-47fd53b70934" t="o" /> -<objsur guid="ee612614-1a3f-465a-993a-bbd51cbf02ba" t="o" /> -<objsur guid="e8b844d0-61d1-4178-bd8d-39f0143b9963" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="a81c2dc4-fcc3-4c0a-a631-bd50363b5547" ownerguid="e823a2bb-e8dd-4710-93ae-36eecb504aa9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">jail</AUni> -<AUni ws="es">calabozo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b8eca66c-1520-426e-9395-8b5bf2bd1d43" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a823dbb3-0137-43cd-9ebd-765a139a453e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shaclu</AUni> -<AUni ws="qvm-x-acl">shaclu; shaclu; shaclo</AUni> -<AUni ws="qvm-x-akh">shaklu</AUni> -<AUni ws="qvm-x-akl">shaklu; shaklu; shaklo</AUni> -<AUni ws="qvm-x-ame">shaklu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shakllu.n</AUni> -<AUni ws="qvm-x-acl">*shakllu.n</AUni> -<AUni ws="qvm-x-akh">*shakllu.n</AUni> -<AUni ws="qvm-x-akl">*shakllu.n</AUni> -<AUni ws="qvm-x-ame">*shakllu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.521" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b134e398-cf28-441a-961d-f676e9b212c2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shakllu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="12b7c111-b685-4ad8-a2c2-59cd1a996e4d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7ada7f5d-3855-4c33-a73c-7744e3198d0a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shakllu.n 
\entryTyp root 
\gENG straw 
\gSPN paja 
\e *shakllu.n 
\c N0 
\ach shaclu 
\akh shaklu 
\acl shaclu / _# 
\acl shaclu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shaclo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shaklu / _# 
\akl shaklu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shaklo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shaklu 
\i HOS 10.7 Samariacho tag mandag reytaga shacluta yacu apagnogmi prësu apacärenga.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a825b2e5-a243-422f-adf6-b75e10a9929d" ownerguid="8ac7ed4d-5cd9-4952-b5ee-1c0979ddd96f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="a825ef96-397a-4b35-8d68-0ab0b683f27b" ownerguid="cbcab7c3-6c8f-415b-8245-53e500b14f1d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gringo</AUni> -<AUni ws="es">gringo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c11fc281-f9f0-4920-adf1-bcb549322416" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a8267eed-a22e-448a-83e8-cfd63255667f" ownerguid="f89a6e08-7ed6-41aa-930a-5bb555ad44fe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="78d75430-8f90-47d3-8da1-a03c1f741818" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a82829fd-38e3-4cd3-8fb4-7a664debd6a8" ownerguid="0aae1951-4d5b-45a0-853c-1839764c9862"> -<ExampleWords> -<AUni ws="en">tiny, diminutive, puny</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who is very short?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a8318857-8431-412c-82b4-ecba6a7ca1bd" ownerguid="0b67c9a4-a590-4417-a289-77d963f50a8d"> -<Form> -<AUni ws="qvm-x-ach">ruchun</AUni> -<AUni ws="qvm-x-acl">ruchun</AUni> -<AUni ws="qvm-x-akh">ruchun</AUni> -<AUni ws="qvm-x-akl">ruchun</AUni> -<AUni ws="qvm-x-ame">ruchun</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a8327b37-6ce8-4291-a139-e19b1defe34e" ownerguid="f7e625a6-53e3-4f9b-8764-119e3906f5cf"> -<ExampleWords> -<AUni ws="en">maid, maiden, maidenhood, maidenly, old maid, spinster, spinsterhood, virgin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a woman who is unmarried?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a832f8ff-f2eb-4aee-aa36-07c073a32e14" ownerguid="cb240e85-78cc-4d93-acad-6fab2419151f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">nephew</AUni> -<AUni ws="es">sobrino</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d3eb87ee-ccdb-42fa-ae8b-502f5f1cec08" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a836b8c3-350e-4964-9d00-1e3fe5e89978" ownerguid="5e04771f-5cab-4734-ad44-ca5b6b7686ca"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="c1e4762f-2b45-460e-af5e-e2696934426d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="a8379a74-e9e7-474e-ad78-94013a604753" ownerguid="582fe42e-9eb0-4deb-b681-ef835b7747f3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">qui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">qui</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ki</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="8fc7d848-8007-4dcc-8c36-9b0b4da26f05" t="r" /> -</Morph> -<Msa> -<objsur guid="bbbfe118-132f-4744-9f12-6945daa4a632" t="r" /> -</Msa> -<Sense> -<objsur guid="7a11c70f-471b-4542-a37b-bcfc9731537d" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="a8381301-8474-4b98-8e78-9db43d9e75d5" ownerguid="ad35b3e0-36f4-4c90-bb88-a670d3635bf2"> -<Form> -<AUni ws="qvm-x-ach">brinca</AUni> -<AUni ws="qvm-x-acl">brinca</AUni> -<AUni ws="qvm-x-akh">brinca</AUni> -<AUni ws="qvm-x-akl">brinca</AUni> -<AUni ws="qvm-x-ame">brinca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="a8389b7f-e575-438b-bd27-68c7da7f0e0a" ownerguid="bf73a1bc-e3ac-4c93-8f2a-05a42511d4f2"> -<Form> -<AUni ws="qvm-x-ach">cäja</AUni> -<AUni ws="qvm-x-acl">cäja</AUni> -<AUni ws="qvm-x-akh">cäja</AUni> -<AUni ws="qvm-x-akl">cäja</AUni> -<AUni ws="qvm-x-ame">cäja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a8430b52-643e-44c7-beab-2e571e3adcc5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tacu</AUni> -<AUni ws="qvm-x-acl">tacu; taco</AUni> -<AUni ws="qvm-x-akh">taku</AUni> -<AUni ws="qvm-x-akl">taku; tako</AUni> -<AUni ws="qvm-x-ame">taku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*taku</AUni> -<AUni ws="qvm-x-acl">*taku</AUni> -<AUni ws="qvm-x-akh">*taku</AUni> -<AUni ws="qvm-x-akl">*taku</AUni> -<AUni ws="qvm-x-ame">*taku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.774" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d99b0e5a-35b1-4f22-83aa-78afc1cbc489" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*taku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="782bbda0-043b-44e3-ad02-931e90c817d7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b60f818d-5c97-4f06-af69-4febe25374b0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *taku 
\entryTyp root 
\gENG mix 
\gSPN mezclar 
\e *taku 
\c V2 
\ach tacu 
\akh taku 
\acl tacu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl taco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl taku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tako +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame taku</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a8435938-6982-4f17-a978-67ce52f3904f" ownerguid="744d1402-05f5-4491-9c15-a5af03595edb"> -<ExampleWords> -<AUni ws="en">bad, blameworthy, sinful, wrong</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe something someone does that is bad?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a849bb77-b36d-49db-9187-080063c9e817" ownerguid="721e7782-9add-41fa-a7cf-659d5ca33926"> -<ExampleWords> -<AUni ws="en">piece, game piece, playing piece, die, dice, card, pack of cards, board</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What are the parts of games?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a84a4f28-fef9-41bb-a316-8e86f4943181" ownerguid="60db66f9-b4de-4f20-bb9d-715b6caa2164"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="a84a5dea-25af-4a21-8699-82d197cd1c1f" ownerguid="cef6644c-6a2c-47ac-aa2c-82463d4e5208"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="a84a5ffc-006c-4d29-b71f-5215cc40a5a8" ownerguid="577017b0-ae87-4fa2-a51b-4f430497be75"> -<Abbreviation> -<AUni ws="en">4.5.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.253" /> -<DateModified val="2022-9-23 16:55:8.253" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to disciplining someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>36B Discipline, Train</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Discipline, train</AUni> -</Name> -<Questions> -<objsur guid="d4c4f9e7-1ca3-4d3a-b191-675331583089" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="a84bd6de-0a66-4e92-86cb-a91d9e9ed96e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">urdi:da</AUni> -<AUni ws="qvm-x-acl">urdi:da</AUni> -<AUni ws="qvm-x-akh">urdi:da</AUni> -<AUni ws="qvm-x-akl">urdi:da</AUni> -<AUni ws="qvm-x-ame">urdi:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+urdida</AUni> -<AUni ws="qvm-x-acl">+urdida</AUni> -<AUni ws="qvm-x-akh">+urdida</AUni> -<AUni ws="qvm-x-akl">+urdida</AUni> -<AUni ws="qvm-x-ame">+urdida</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.271" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0ef5507f-ea10-4b62-aa6e-8c7e46218670" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+urdida</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c7526a70-2a91-45a2-bd23-b4029a9aa928" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b14be3d8-82b1-490b-bf6a-c413f822e825" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +urdida 
\entryTyp root 
\gENG warp 
\gSPN urdida 
\e +urdida 
\c N0 
\ach urdi:da 
\akh urdi:da 
\acl urdi:da 
\akl urdi:da 
\ame urdi:da</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a84e6f52-6596-410c-ad66-f3b3b0749a1d" ownerguid="39cb7964-8ebd-4629-bf1c-363eca8ba6e6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a84e78a3-43ab-44ef-a5a5-5e35fefbc108" ownerguid="3ea4c495-b837-4310-8741-38d89fa63e0b"> -<ExampleWords> -<AUni ws="en">may, could</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) possibility: the speaker is indicating that the situation described in the proposition is possibly true. Some markers with this meaning also indicate future time: 'He may arrive late because of the weather; It may snow again tomorrow; She could have already taken it'.</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a84f914e-b2e4-4571-bc2b-ef476d3af0f3" ownerguid="4415f908-b544-436b-a241-784865c36719"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bruise</AUni> -<AUni ws="es">+golpe</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c0719f6a-1765-4cc4-815c-ac3bce98acd0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a854b6a5-e727-49a7-8123-dad693a9a80c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pita</AUni> -<AUni ws="qvm-x-acl">pita</AUni> -<AUni ws="qvm-x-akh">pita</AUni> -<AUni ws="qvm-x-akl">pita</AUni> -<AUni ws="qvm-x-ame">pita</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.465" /> -<DateModified val="2022-10-16 15:27:47.114" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ef81e8c3-e8c7-4bf5-9fdb-ebd4284a70bd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">ABL</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7afcee6e-54b0-4ff0-8b7f-bf81e7e75205" t="o" /> -<objsur guid="c516d14b-9b18-44a7-8c37-97267a8b8796" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="75f1d891-753c-42a9-8f14-18fa3dd1767b" t="o" /> -<objsur guid="5125c171-2a3d-48b8-a3be-6591f879d4bb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx ABL 
\entryTyp suffix 
\gENG ABL 
\gSPN ABL 
\e ABL 
\c N0/N0 BN/BN R0/R0 
\o 200 | HG chaynöpitachi 
\mp -PMonophthongized 
\ach pita 
\akh pita 
\acl pita 
\akl pita 
\ame pita 
\mcc ABL / ~_ ABL</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a8559c25-a9e1-48c7-a4df-fe570c8e75d3" ownerguid="b7b0819b-eceb-4f16-ae6d-2298c4df1e6f"> -<ExampleWords> -<AUni ws="en">in time, just in time, in the nick of time, not a moment too soon, at the last minute, at the eleventh hour, catch, cut it fine, cut it too close, made it in by a whisker, just under the wire</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that something happens before it is too late?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="a855a64d-1bb8-44af-b5f0-302d292c4df2" ownerguid="c5c12827-1f84-4f27-931b-268ef4c1b2e3"> -<Form> -<AUni ws="qvm-x-ach">shag</AUni> -<AUni ws="qvm-x-acl">shag</AUni> -<AUni ws="qvm-x-akh">shaq</AUni> -<AUni ws="qvm-x-akl">shaq</AUni> -<AUni ws="qvm-x-ame">shaq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f" ownerguid="38bbb33a-90bf-4a2c-a0e5-4bde7e134bd9"> -<Abbreviation> -<AUni ws="en">2.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to seeing something (in general or without conscious choice).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>24A See</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">See</AUni> -</Name> -<Questions> -<objsur guid="5fad39d3-eb97-4a82-bf76-32e8536fd49d" t="o" /> -<objsur guid="ba2d36b0-5889-4e36-832a-87cc71d75cf9" t="o" /> -<objsur guid="ea80a2b1-ee67-4eb4-bd51-c592be994261" t="o" /> -<objsur guid="473d2861-d1fa-4d2f-959b-22205bc77400" t="o" /> -<objsur guid="02e3a503-da16-4af2-8c35-5e20c374cbba" t="o" /> -<objsur guid="cc2a8f2f-8561-4bfa-ace8-4f76de24bfb8" t="o" /> -<objsur guid="2683334c-8bbe-4466-9a26-baf8128f39eb" t="o" /> -<objsur guid="81124368-385e-40c2-baea-e1fd68ff5780" t="o" /> -<objsur guid="c1f7e63b-6045-4490-8df2-e438b2a2247b" t="o" /> -<objsur guid="5a115409-46d7-44b8-a5ef-68be44ffbc82" t="o" /> -<objsur guid="f4c498a4-40d2-4d71-b802-79f10b52792f" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="4bf411b7-2b5b-4673-b116-0e6c31fbd08a" t="r" /> -<objsur guid="b602c0e1-5398-4cc9-850b-7cfb5c592d13" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="d7861def-70c1-470f-bca6-8230cbbaa3e9" t="o" /> -<objsur guid="fda0c1ac-5728-4ba2-9f8e-827f161b5bb1" t="o" /> -<objsur guid="90c06635-a12c-4cd4-a190-46925ff0f43e" t="o" /> -<objsur guid="273f4956-f79f-4b1e-b552-466280a65e60" t="o" /> -<objsur guid="3f4c559f-ab4f-411f-a23b-d2396c977005" t="o" /> -<objsur guid="cd6f1b37-5bdd-4237-8827-b1c947c8e1b4" t="o" /> -<objsur guid="ec118a28-fd23-48b3-8819-bfe1329f028d" t="o" /> -<objsur guid="4275df2e-d4f6-461a-9279-39e0712dc082" t="o" /> -<objsur guid="e4e05724-01ec-4c61-90f0-b8658cc8ca51" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="a859e4d3-fc2f-434c-84d5-faf37aa2b26d" ownerguid="6a3588bf-efea-4f1d-a307-a76c1d40b3c3"> -<Form> -<AUni ws="qvm-x-ach">chawa; chawä</AUni> -<AUni ws="qvm-x-acl">chawa; chawä</AUni> -<AUni ws="qvm-x-akh">chawa; chawä</AUni> -<AUni ws="qvm-x-akl">chawa; chawä</AUni> -<AUni ws="qvm-x-ame">chawa; chawä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="a85a1596-eb26-42cf-b969-6e7aa71345b4" ownerguid="0ba86b69-2a31-49c2-8922-d0c366d0b11c"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PunctuationForm" guid="a85a5670-81ba-47b9-8443-95e8be60ebec"> -<Form> -<Str> -<Run ws="en">*</Run> -</Str> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="a85cccce-6e3a-4eb0-9d68-fbb25b6b3a88" ownerguid="79c40493-932f-4b5b-a443-412e11af8537"> -<Form> -<AUni ws="qvm-x-ach">avanza</AUni> -<AUni ws="qvm-x-acl">avanza</AUni> -<AUni ws="qvm-x-akh">avanza</AUni> -<AUni ws="qvm-x-akl">avanza</AUni> -<AUni ws="qvm-x-ame">avanza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a85d0ad2-7b36-4e0b-81a7-2eba5f25e335"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">natin</AUni> -<AUni ws="qvm-x-acl">natin; natin; naten</AUni> -<AUni ws="qvm-x-akh">natin</AUni> -<AUni ws="qvm-x-akl">natin; natin; naten</AUni> -<AUni ws="qvm-x-ame">natin</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñatin</AUni> -<AUni ws="qvm-x-acl">*ñatin</AUni> -<AUni ws="qvm-x-akh">*ñatin</AUni> -<AUni ws="qvm-x-akl">*ñatin</AUni> -<AUni ws="qvm-x-ame">*ñatin</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.588" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ce05611e-8416-4129-b002-79e8d9ca2c28" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñatin</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1821036a-12bc-461a-ad04-57973984da95" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="50faff0d-402c-4cb9-9608-97612740133a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñatin 
\entryTyp root 
\gENG liver 
\gSPN higado 
\e *ñatin 
\c N0 
\mp +FinalC 
\ach natin 
\akh natin 
\acl natin / _# 
\acl natin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl naten +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl natin / _# 
\akl natin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl naten +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame natin</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="a85da8c9-fa0a-4f61-8311-d9279e65622d" ownerguid="b531b2f1-791f-4c7d-81e6-75560b715ef8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/NOSUFF V2/NOSUFF N0/NOSUFF BN/BN</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">EXCL2</AUni> -<AUni ws="es">ADM2</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="33dcdba1-aa82-4097-bd0c-272315630142" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a85ed302-8e8f-497e-8e8d-975375974fe5" ownerguid="75dd6637-1564-4de8-889c-7f3e3e371ec2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">escarminar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6187b260-8763-4b5f-9302-40b868944a0a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a85ffffa-6255-4d26-bf93-b7683f201e02" ownerguid="2629943b-3a69-4c6b-9956-2aa59ebd03d3"> -<ExampleWords> -<AUni ws="en">era, epoch, civilization, period, age</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a time period in history?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a860a3ca-c29e-40c2-97cd-30d988b9bf9f" ownerguid="d9d05e45-0a86-4881-b763-fc823156bcd5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="bef2781e-c09d-47b9-a084-81503e450ba9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="a860f584-d611-436f-b202-0fe70c8bae88" ownerguid="3c4f3090-5820-46cb-a89e-51307ed69e00"> -<Form> -<AUni ws="qvm-x-ach">calca</AUni> -<AUni ws="qvm-x-acl">calca</AUni> -<AUni ws="qvm-x-akh">kalka</AUni> -<AUni ws="qvm-x-akl">kalka</AUni> -<AUni ws="qvm-x-ame">kalka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a860f6fc-4470-4144-89cd-cc6d9feb8574" ownerguid="bb4e0a69-db20-4757-beff-5dcb1c5e0f92"> -<ExampleWords> -<AUni ws="en">oppression, harassment, persecution, tyranny</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the act or practice of oppressing people?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a861024e-3092-4076-ab04-cb8433203520" ownerguid="cd8b2a8b-687b-42e9-91e7-cfb8812b64ee"> -<ExampleWords> -<AUni ws="en">put your foot in it, faux pas, gaffe, boo-boo, indiscretion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to an embarrassing mistake?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a862f0ce-d552-4b4a-bcb9-7db8d1b7a3f5" ownerguid="4b1fe9c3-961e-4074-9ea1-ce5cb4dcd415"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">rápido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2b811885-9a34-40b5-b8a4-9e31883e0050" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a8659486-5bab-4b04-af41-3cbe122cbf18" ownerguid="4a5b16e0-73de-46b4-ab77-5538a7b9cbb0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">áspera</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3637f33f-5b3e-4d3a-86ac-1ec5da5ef2d5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a86a6876-95b8-477e-8e14-9ab4ae8e9a50" ownerguid="a3bc1fbd-9f2f-4a9d-ae6e-7b02da8a05b4"> -<ExampleWords> -<AUni ws="en">awl, drill, punch, pin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to tools used for poking holes in things?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="a86b2e14-1299-4f59-842c-c4c5a401aace" ownerguid="9f868391-f1df-4682-bdcb-2c2c799006cf"> -<Abbreviation> -<AUni ws="en">3.2.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to recognizing something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>27G Recognize</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Recognize</AUni> -</Name> -<Questions> -<objsur guid="2271721f-4c3c-45b2-b378-b1549b03c59d" t="o" /> -<objsur guid="fd1e0905-0a04-4456-9d43-20362a485d61" t="o" /> -<objsur guid="a87dc5bd-fcf6-44a2-99eb-2a14bf26170d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="a86d8492-2702-4217-8291-bd473dd617f8" ownerguid="3b8fd99c-a4f7-4f1f-b046-2d0649166611"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a86dc3e3-c9d1-419f-ab5c-6f4662a53d75" ownerguid="d2b61570-af54-44f3-846e-6d7ec9d3737f"> -<ExampleWords> -<AUni ws="en">toilet, bathroom, loo, john, rest room, wash room, men's room, ladies' room, lavatory, WC</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the room where the toilet is?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="a87b2184-b2a1-40a0-bc96-672ca7de86b5"> -<Analyses> -<objsur guid="f8df16a9-d374-4f8c-a7b3-1f2a92376540" t="o" /> -</Analyses> -<Checksum val="-1589416557" /> -<Form> -<AUni ws="qvm-x-akh">aywashaq</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="a87beacd-074d-4d28-8891-83240a67eafd" ownerguid="253a61b8-e47b-4548-ba6f-a9005d516fee"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="ffb4ed7e-81d3-41a9-b1fd-e6949e2f42b5" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="c4f37edd-43f4-48a3-ab0a-c6b5c137093f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a87d14bf-4739-4625-b15c-d84f973e04d2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">engrei:du</AUni> -<AUni ws="qvm-x-acl">engrei:du; engrei:du; engrei:do</AUni> -<AUni ws="qvm-x-akh">engrei:du</AUni> -<AUni ws="qvm-x-akl">engrei:du; engrei:du; engrei:do</AUni> -<AUni ws="qvm-x-ame">engrei:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+engreído</AUni> -<AUni ws="qvm-x-acl">+engreído</AUni> -<AUni ws="qvm-x-akh">+engreído</AUni> -<AUni ws="qvm-x-akl">+engreído</AUni> -<AUni ws="qvm-x-ame">+engreído</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.467" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fb02634a-06d9-4d57-90ce-0e3b1e6e0f88" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+engreído</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="46151eed-f92d-411a-8d95-08daf7a3c58b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a8fc7d51-7b67-4128-8375-dd93b8b11444" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +engreído 
\entryTyp root 
\gENG 
\gSPN 
\e +engreído 
\c N0 
\ach engrei:du 
\akh engrei:du 
\acl engrei:du / _# 
\acl engrei:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl engrei:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl engrei:du / _# 
\akl engrei:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl engrei:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame engrei:du</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a87dc5bd-fcf6-44a2-99eb-2a14bf26170d" ownerguid="a86b2e14-1299-4f59-842c-c4c5a401aace"> -<ExampleWords> -<AUni ws="en">unrecognizable, unfamiliar, strange, changed beyond all recognition</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that you can't recognize?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a87e250a-1810-4e21-ab7d-41353664b15c" ownerguid="81e03df2-33a8-4735-aa23-80ef1c63679e"> -<ExampleWords> -<AUni ws="en">slightly disoriented, a bit confused, a little out of it</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used to express a slight case of these conditions?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a8822992-8c9c-456d-9ec5-5ecdd13656ed" ownerguid="cf5f83be-2c19-4cf8-8cc5-53bd32b50530"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en"><According to> John his business is doing very well.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">according to, rumor has it, they say, people say, there is talk of, apparently, supposedly, be rumored to be</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that you heard what you are saying from someone else?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a8858d53-24ec-4a5a-9f96-b0403126e302"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">calpa</AUni> -<AUni ws="qvm-x-acl">calpa</AUni> -<AUni ws="qvm-x-akh">kalpa</AUni> -<AUni ws="qvm-x-akl">kalpa</AUni> -<AUni ws="qvm-x-ame">kalpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kallpa</AUni> -<AUni ws="qvm-x-acl">*kallpa</AUni> -<AUni ws="qvm-x-akh">*kallpa</AUni> -<AUni ws="qvm-x-akl">*kallpa</AUni> -<AUni ws="qvm-x-ame">*kallpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.912" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="00d8ded6-c83d-4182-a15b-75298c2d78cb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kallpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c31489c6-af06-4c67-83a0-2f1ecc3339b3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="20991a77-86c7-4b78-bf2e-fa5b6df11fae" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kallpa 
\entryTyp root 
\gENG strength 
\gSPN fuerza 
\e *kallpa 
\c N0 
\ach calpa 
\akh kalpa 
\acl calpa 
\akl kalpa 
\ame kalpa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="a885e2bb-092c-4987-b6d3-b49217a5ccb4" ownerguid="8f268cae-46b2-4814-9b40-84d33a686b3e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">friendship</AUni> -<AUni ws="es">amistad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ccd9ca57-c179-4862-914c-722239321f8c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a8866695-3ea9-4b52-b950-eeb695f0c69d" ownerguid="f56a2511-10cc-4829-940d-49051429bfba"> -<ExampleWords> -<AUni ws="en">thickness, consistency, viscosity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to how thick or thin a liquid is?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a886ddc2-2edb-4155-961d-883101703c39" ownerguid="772a9c40-4053-4381-9800-3eceba9a83d1"> -<Form> -<AUni ws="qvm-x-ach">walca</AUni> -<AUni ws="qvm-x-acl">walca</AUni> -<AUni ws="qvm-x-akh">walka</AUni> -<AUni ws="qvm-x-akl">walka</AUni> -<AUni ws="qvm-x-ame">walka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a88760d8-6aa4-4100-8052-fabaf4471e5e" ownerguid="30a5530f-49a2-454f-be28-aabe5e618b16"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">animal</AUni> -<AUni ws="es">animal</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b6df5b53-34e2-4024-9ac3-ec5b23db067f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a888ffb5-28ca-40b1-a35a-f567870085b8" ownerguid="ba70183c-1698-489a-a897-4fef6500fdd3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cord</AUni> -<AUni ws="es">cordón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="82cd3478-de88-4677-a83b-f9ce5dc06c23" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a88ab17e-77dc-42dc-ac74-390c53fedd7b" ownerguid="18b3ca02-18fe-4ab5-8709-c20957a0a2fb"> -<ExampleWords> -<AUni ws="en">put someone in their place, wipe the smile off someone's face, cut someone down to size</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to stopping someone from behaving proudly by criticizing them?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a88c03b9-3080-437f-a1b6-d489ce3d6f07" ownerguid="346c29e0-a7fe-4b47-b7f8-35cd5b35f4d9"> -<Form> -<AUni ws="qvm-x-ach">forsa</AUni> -<AUni ws="qvm-x-acl">forsa</AUni> -<AUni ws="qvm-x-akh">forsa</AUni> -<AUni ws="qvm-x-akl">forsa</AUni> -<AUni ws="qvm-x-ame">forsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="a88dbaeb-f55d-45db-8998-d6a3fea10295" ownerguid="a63d48a3-55db-4792-bfec-aaaff4484eaf"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Gen 40.17 Janan cag balaychömi tucuynirag böllucuna caycashga Faraón micunanpag. Tsay böllucunatami pishgucuna shamur micucurcushga.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="a88fe160-29f4-493c-9a62-1cdc53d93a7c" ownerguid="e64a3b56-3e9f-4574-9550-a68725e5a9ed"> -<Form> -<AUni ws="qvm-x-ach">wachquillu</AUni> -<AUni ws="qvm-x-acl">wachquillu; wachquillu; wachquillo</AUni> -<AUni ws="qvm-x-akh">wachkillu</AUni> -<AUni ws="qvm-x-akl">wachkillu; wachkillu; wachkillo</AUni> -<AUni ws="qvm-x-ame">wachkillu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="a890a40e-d753-4bbd-8e16-f27c747a3fcf" ownerguid="2e994579-9439-4cae-a6d8-ae29194121f0"> -<Form> -<AUni ws="qvm-x-ach">perjuiciu; perjuicio</AUni> -<AUni ws="qvm-x-acl">perjuiciu; perjuiciu; perjuicio</AUni> -<AUni ws="qvm-x-akh">perjuiciu; perjuicio</AUni> -<AUni ws="qvm-x-akl">perjuiciu; perjuiciu; perjuicio</AUni> -<AUni ws="qvm-x-ame">perjuiciu; perjuicio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a8915eb1-7c23-441b-8d45-d7ce8dbff520"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">minca</AUni> -<AUni ws="qvm-x-acl">minca</AUni> -<AUni ws="qvm-x-akh">minka</AUni> -<AUni ws="qvm-x-akl">minka</AUni> -<AUni ws="qvm-x-ame">minka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*minka.v</AUni> -<AUni ws="qvm-x-acl">*minka.v</AUni> -<AUni ws="qvm-x-akh">*minka.v</AUni> -<AUni ws="qvm-x-akl">*minka.v</AUni> -<AUni ws="qvm-x-ame">*minka.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.446" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="089ce860-af01-4819-83fb-68fcf52a1fa4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*minka.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="32c03dea-c4d1-468e-baf1-12c41ac62010" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0efb47cd-ef8a-46f2-8191-6db6ae277b05" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *minka.v 
\entryTyp root 
\gENG employ 
\gSPN emplear 
\e *minka.v 
\c V2 
\ach minca 
\akh minka 
\acl minca 
\akl minka 
\ame minka</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="a894d991-d5da-45a6-9c62-009133257f36" ownerguid="32bebe7e-bdcc-4e40-8f0a-894cd6b26f25"> -<Abbreviation> -<AUni ws="en">2.5.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.47" /> -<DateModified val="2022-9-23 16:55:8.47" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words for symptoms of disease--something that happens to you when you get sick, something that shows that you are sick.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Symptom of disease</AUni> -</Name> -<Questions> -<objsur guid="0a94999d-ade1-45ef-9317-66e175f93c7a" t="o" /> -<objsur guid="edcc4da1-29fc-42d9-a162-c0012cd98fec" t="o" /> -<objsur guid="cd34ac8b-07c5-4bb4-ba76-fe9f82073fba" t="o" /> -<objsur guid="9c76136f-451c-4be0-ac6e-f79e45e19f3c" t="o" /> -<objsur guid="dd0ff52f-9597-4a5c-99d4-a6104436b85c" t="o" /> -<objsur guid="938383ef-5213-4a78-a313-e40cfccb80a4" t="o" /> -<objsur guid="f71da34c-b52c-433a-a337-1086b04bac53" t="o" /> -<objsur guid="5d3e12ca-b6ec-48d8-a576-c3d95362dd81" t="o" /> -<objsur guid="706f0071-a90c-4cae-9beb-3292bfc7b96d" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="d83ebe2c-c1d6-49ec-a4a9-1cdced843387" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="768aed05-dbc9-4caf-9461-76cb3720f908" t="o" /> -<objsur guid="5238fe9c-4bbe-444c-b5f6-18f946b3d6aa" t="o" /> -<objsur guid="6eaba0c3-cdfe-435d-8811-7f2ddf6facbd" t="o" /> -<objsur guid="d83ebe2c-c1d6-49ec-a4a9-1cdced843387" t="o" /> -<objsur guid="81e03df2-33a8-4735-aa23-80ef1c63679e" t="o" /> -<objsur guid="5c091d8d-5bc4-40c3-8a30-2a08fb0794b8" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="a8978e60-f059-4f1f-84d2-5c5c81674795" ownerguid="f651aadd-814c-488c-9101-cbff0150b5e1"> -<Form> -<AUni ws="qvm-x-ach">adrë</AUni> -<AUni ws="qvm-x-acl">adrë</AUni> -<AUni ws="qvm-x-akh">adrë</AUni> -<AUni ws="qvm-x-akl">adrë</AUni> -<AUni ws="qvm-x-ame">adrë</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a8992eca-aaca-4f79-b594-454b6f1c26f0" ownerguid="dd3f680d-05ef-400e-bb4f-9cf66074bb0a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="19fd8017-d396-4d1f-a1dc-bb989afc9099" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="a89a3321-c8e0-45b0-84fc-cf1e23feb71a" ownerguid="eabbeb61-3400-4ccd-81d3-cedeaa73fef7"> -<Form> -<AUni ws="qvm-x-ach">tiuya</AUni> -<AUni ws="qvm-x-acl">tiuya</AUni> -<AUni ws="qvm-x-akh">tiwya</AUni> -<AUni ws="qvm-x-akl">tiwya</AUni> -<AUni ws="qvm-x-ame">tiwya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a89b3635-a6c1-4e9f-9d0c-d0cd9de67af0" ownerguid="53cc0f4a-dba1-4fd5-8feb-dad7bb4abfd7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">female</AUni> -<AUni ws="es">hembra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="eb8573b6-d21b-46b8-bf9a-ce35796021cd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a8a18adf-f3c5-4b26-b2d5-c1ce999f3f03" ownerguid="1b6b0c12-9ecd-45cb-bb0e-0dadb435eddf"> -<ExampleWords> -<AUni ws="en">huge, enormous, vast, massive, colossal, goodly, immense, whopping</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words describe a very large number or amount?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a8a19207-6933-4538-97eb-50b8172d2159" ownerguid="bfbfb9b5-363d-4767-a5cb-1b11b348efd6"> -<ExampleWords> -<AUni ws="en">never, no time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to no time?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="a8a25f74-cf52-43c2-9bf2-41863f060fa6" ownerguid="a2989907-310a-4a71-8768-cfa71e66caa6"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="cbdbfb74-0f26-4097-b3d0-fa160ed0284a" t="o" /> -<objsur guid="5db2f30e-fc08-4ec2-8097-0524018f2ec8" t="o" /> -<objsur guid="84646c29-e50e-46de-b8bf-08d30d5bbd31" t="o" /> -<objsur guid="98f7846f-0ab0-411a-93fe-b5b5e114e7b3" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="a8a44bba-65e4-423e-aaaa-33197b8bda04" ownerguid="9cff6edc-9b12-4926-ae50-c3ef3cae55f6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 V0/V0 R0/R0 ONSHEV/ONSHEV BN/BN</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">NOW</AUni> -<AUni ws="es">AHORA</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a5b30965-e5c8-452a-9057-ed02c784d19b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="a8a734fa-d560-418b-9f35-6c95f2e932cf" ownerguid="b6160092-9070-4549-af63-b6e2b52c06ec"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="a8a9b7c4-9c60-4a67-a3d6-8aa6d18d86c8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pala</AUni> -<AUni ws="qvm-x-acl">pala</AUni> -<AUni ws="qvm-x-akh">pala</AUni> -<AUni ws="qvm-x-akl">pala</AUni> -<AUni ws="qvm-x-ame">pala</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*palla</AUni> -<AUni ws="qvm-x-acl">*palla</AUni> -<AUni ws="qvm-x-akh">*palla</AUni> -<AUni ws="qvm-x-akl">*palla</AUni> -<AUni ws="qvm-x-ame">*palla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.669" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e96c28a1-d86e-4bb7-95ab-04dc20fc8948" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*palla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0c1429f9-cdac-4b0d-b0ad-44721c7d3923" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="53c0279a-a257-4427-9252-7b349db29cd1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *palla 
\entryTyp root 
\gENG pick 
\gSPN coger 
\e *palla 
\c V2 
\ach pala 
\akh pala 
\acl pala 
\akl pala 
\ame pala 
\mcc *palla / ~_ BEN</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a8ab3410-2af8-46d3-bd43-f01f90d33e1d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">piti</AUni> -<AUni ws="qvm-x-acl">piti; pite</AUni> -<AUni ws="qvm-x-akh">piti</AUni> -<AUni ws="qvm-x-akl">piti; pite</AUni> -<AUni ws="qvm-x-ame">piti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*piti.v</AUni> -<AUni ws="qvm-x-acl">*piti.v</AUni> -<AUni ws="qvm-x-akh">*piti.v</AUni> -<AUni ws="qvm-x-akl">*piti.v</AUni> -<AUni ws="qvm-x-ame">*piti.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.869" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5d11b7b1-957a-42de-999d-1f0327a5895a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*piti.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="87651b9e-2735-4da0-8635-cdf42eb191f5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="87209338-13af-4080-8fa3-99d5ef4e0929" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *piti.v 
\entryTyp root 
\gENG lose.conscnss 
\gSPN privarse 
\e *piti.v 
\c V2 
\mp +FinalI 
\ach piti 
\akh piti 
\acl piti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pite +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl piti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pite +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame piti</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="a8ac52a4-d2d5-47fb-9384-82a21a60f8cd" ownerguid="fdac360e-4fe4-4aba-bd68-6e4410c06e68"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="a8ad0ffc-3a82-4dbd-ac8d-61a6cf2cf655" ownerguid="26bc089a-a989-4763-be6c-05d127d1c0e8"> -<ExampleWords> -<AUni ws="en">accidentally, by accident, by mistake, unintentionally, not mean to do something, inadvertently, unconsciously</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to not doing something deliberately?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="a8ae0ee7-56ca-4bdf-bd9a-c56da3ff9254" ownerguid="63b18261-faf3-4ab2-bcb4-7c3ac4d6d6ba"> -<Abbreviation> -<AUni ws="en">6.8.9.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.496" /> -<DateModified val="2022-9-23 16:55:8.496" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to extorting money--forcing someone to give you money on a regular basis by threatening them with some harm.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Extort money</AUni> -</Name> -<Questions> -<objsur guid="0cc1153a-9dcf-42ba-bc04-433fc2f13155" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="a8b01ddb-87ba-4dfe-b93b-3984443d4934" ownerguid="d2ca3194-e393-480e-ae1d-dd67bed55227"> -<ExampleWords> -<AUni ws="en">wither, droop, fade, decay, rot, dry, die</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a plant dying?</AUni> -</Question> -</rt> -<rt class="PhCode" guid="a8b21d03-bc20-4eda-bf1d-88fd63d99460" ownerguid="9e9886d6-589e-4538-9509-5532fbe76ef1"> -<Representation> -<AUni ws="qvm-x-ach">ch</AUni> -<AUni ws="qvm-x-acl">ch</AUni> -<AUni ws="qvm-x-akh">ch</AUni> -<AUni ws="qvm-x-akl">ch</AUni> -<AUni ws="qvm-x-ame">ch</AUni> -</Representation> -</rt> -<rt class="CmSemanticDomain" guid="a8b2abb3-d09f-4ff1-89ce-6ae99f16401c" ownerguid="d59a84e1-5e12-4cb7-b72b-15c51810ad48"> -<Abbreviation> -<AUni ws="en">4.1.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to setting yourself apart from other people and not relating to them.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>34D Limit or Avoid Association</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Set self apart</AUni> -</Name> -<Questions> -<objsur guid="bbe347cf-06ad-4dcb-9dae-c8de6e194db5" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="a8b3fa0c-077e-4c0d-b4cc-36dcfbdcb4d4" ownerguid="d01f1c51-522e-4b35-81b3-00577dbfa3bd"> -<Abbreviation> -<AUni ws="en">8.3.3.3.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.617" /> -<DateModified val="2022-9-23 16:55:8.617" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to changing the color of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Change color</AUni> -</Name> -<Questions> -<objsur guid="96415e6b-515e-46dd-bb29-40838b722ec6" t="o" /> -<objsur guid="e72a5e86-c5c6-4541-b355-e1b9375c357c" t="o" /> -<objsur guid="ac1fc3d9-d2be-48ec-a3da-723d73e07915" t="o" /> -<objsur guid="9da4d4cf-6d93-4e15-8a35-05f8dcedd0c8" t="o" /> -<objsur guid="203f9c02-bac6-4ed8-b6c9-af4589007047" t="o" /> -<objsur guid="b7e16c4f-ae97-48ff-bbe6-bb59e2cfb553" t="o" /> -<objsur guid="9b0e9080-5bf5-4e9a-90be-0bfb8286d0cc" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="a8b3fbbc-e556-435c-bae7-9aaa75dcb674" ownerguid="1c82027b-da06-405a-a3e9-faaf125a461c"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="a8b727a8-6257-4f87-a8c8-729395265fb7" ownerguid="462b3ad8-842e-48e6-aba8-a83606dd8a69"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="bf3b7475-1920-4d5b-94b6-c278488e11cf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a8b8063f-903a-4906-abbb-9e4ebad7408c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cangalan</AUni> -<AUni ws="qvm-x-acl">cangalan</AUni> -<AUni ws="qvm-x-akh">kanqalan</AUni> -<AUni ws="qvm-x-akl">kanqalan</AUni> -<AUni ws="qvm-x-ame">kanqalan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kanqallan</AUni> -<AUni ws="qvm-x-acl">*kanqallan</AUni> -<AUni ws="qvm-x-akh">*kanqallan</AUni> -<AUni ws="qvm-x-akl">*kanqallan</AUni> -<AUni ws="qvm-x-ame">*kanqallan</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.922" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="321f9a55-4c41-454a-9e12-cc1f6756eecf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kanqallan</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ae77feed-32fe-4a68-b4b0-b46ab9454dd6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2a55a794-b4db-472c-a75b-305004893796" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kanqallan 
\entryTyp root 
\gENG 
\gSPN conforme 
\e *kanqallan 
\c N0 
\mp +FinalC 
\ach cangalan 
\akh kanqalan 
\acl cangalan 
\akl kanqalan 
\ame kanqalan</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a8b92a2a-0a10-450d-8409-d057e3b2637e" ownerguid="85c3c579-109f-40dd-8c7a-ffb5e04b894d"> -<Form> -<AUni ws="qvm-x-ach">cachca</AUni> -<AUni ws="qvm-x-acl">cachca</AUni> -<AUni ws="qvm-x-akh">kachka</AUni> -<AUni ws="qvm-x-akl">kachka</AUni> -<AUni ws="qvm-x-ame">kachka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="a8b9e892-df3e-44c4-8c68-7a0f7f4468bb" ownerguid="5e9f361d-17dc-4ada-a312-8da269d22a64"> -<Abbreviation> -<AUni ws="en">1.6.1.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.978" /> -<DateModified val="2022-9-23 16:55:7.978" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for rodents--gnawing animals (phylum Chordata, class Mammalia, order Rodentia), insect eating animals (phylum Chordata, class Mammalia, order Insectivora), rabbits (phylum Chordata, class Mammalia, order Lagomorpha), and hyraxes (phylum Chordata, class Mammalia, order Hyracoidea).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Rodent</AUni> -</Name> -<Questions> -<objsur guid="fc6d2846-cc8b-4561-bce2-edf4b41b166a" t="o" /> -<objsur guid="79fe51d2-a9c3-4081-aa38-a208d23c6301" t="o" /> -<objsur guid="8e1738ec-ab0c-4db9-b0c8-7a7156a8197e" t="o" /> -<objsur guid="f688d678-4b98-4d26-a153-5eaeefec256b" t="o" /> -<objsur guid="261e9c9f-fed5-4eaf-afa0-551d8db19a1a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="a8bf92dc-d6e1-40ce-8037-79ab89f17476" ownerguid="18147a68-b70a-4610-aa92-2f7c676b385b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">carry</AUni> -<AUni ws="es">llevar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9b03b531-bf8b-4ac1-87dd-56d150d1c68f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="a8bfd196-8b54-4084-b11a-fe6e8bc5da4c" ownerguid="c2630384-2f72-4a96-baed-3fff03383362"> -<Abbreviation> -<AUni ws="en">6.2.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.428" /> -<DateModified val="2022-9-23 16:55:8.428" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to gathering wild plants. In a hunter-gatherer culture this domain might need to be extensively developed.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Gather wild plants</AUni> -</Name> -<Questions> -<objsur guid="9215cb98-3f61-4889-8a47-410d8a5c830b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="a8c0276e-ce39-4768-a7ba-5a1b94532b3c" ownerguid="ba3dfe4c-7db2-40f0-8994-eb010001f6c7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b699320c-1182-41cf-a567-d8008edefdda" t="r" /> -</Morph> -</rt> -<rt class="WfiWordform" guid="a8c0636a-4879-408d-9586-36bc9668a286"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">rikaptiyki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="a8c19c98-c11c-4e6f-aa2e-25c727bfd123" ownerguid="93c64606-44dc-4e99-8289-97b6c77a0fed"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="a8c59c70-4b0e-4b1f-a7e0-b144ecc2698c" ownerguid="b0acbed4-b979-4f33-8893-e4e67a732a7f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a8c9aa3b-8557-4a2e-a2fc-059e7d9c230e" ownerguid="5c091d8d-5bc4-40c3-8a30-2a08fb0794b8"> -<ExampleWords> -<AUni ws="en">be in a trance, have a vision, hallucinate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the state of being in an unusual state of consciousness?</AUni> -</Question> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="a8caf8c8-0473-4c7e-80ec-9dc4ff6bb4c3" ownerguid="bffe6dbd-8a09-4958-b6a0-dc735daa5798" /> -<rt class="LexEntry" guid="a8cb73ed-e20b-4977-905f-a6b6d8177827"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shanca</AUni> -<AUni ws="qvm-x-acl">shanca</AUni> -<AUni ws="qvm-x-akh">shanka</AUni> -<AUni ws="qvm-x-akl">shanka</AUni> -<AUni ws="qvm-x-ame">shanka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shanka.n</AUni> -<AUni ws="qvm-x-acl">*shanka.n</AUni> -<AUni ws="qvm-x-akh">*shanka.n</AUni> -<AUni ws="qvm-x-akl">*shanka.n</AUni> -<AUni ws="qvm-x-ame">*shanka.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.541" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="897b2881-417e-43f2-a5d1-21b947ea9bfa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shanka.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="451f6cda-11bc-488b-9b90-54b69d665478" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b14a4f35-ed94-48fd-ace2-940b187addef" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shanka.n 
\entryTyp root 
\gENG diseased.potato 
\gSPN papa.enferma 
\e *shanka.n 
\c N0 
\ach shanca 
\akh shanka 
\acl shanca 
\akl shanka 
\ame shanka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="a8cd16d9-1567-4ba1-bda3-5d1d40b935bd" ownerguid="d4b2c1de-1c10-4bcc-95f7-2838748fc7f0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="41e93460-14a1-4f9d-b5f4-438a08fab7f1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="a8d542c4-32fa-402e-9ca8-4750a288ce32" ownerguid="c0a8228c-21da-4593-898a-c19aa9f6d2a3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a8d66259-eed3-4ea2-9669-7a3b39afdedc" ownerguid="4f390d36-5d1c-4ab9-95a9-255b04a7ecff"> -<Form> -<AUni ws="qvm-x-ach">lushuc</AUni> -<AUni ws="qvm-x-acl">lushuc</AUni> -<AUni ws="qvm-x-akh">lushuk</AUni> -<AUni ws="qvm-x-akl">lushuk</AUni> -<AUni ws="qvm-x-ame">lushuk</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="a8d6ae12-75c5-428a-9493-571c28e8ecb5" ownerguid="73bb8073-650f-4d61-ba41-e4ecbda4c9a2"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="a8d704bc-32f3-4309-9f9b-8a9d76b4e925"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pasha</AUni> -<AUni ws="qvm-x-acl">pasha</AUni> -<AUni ws="qvm-x-akh">pasha</AUni> -<AUni ws="qvm-x-akl">pasha</AUni> -<AUni ws="qvm-x-ame">pasha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pasha.n</AUni> -<AUni ws="qvm-x-acl">*pasha.n</AUni> -<AUni ws="qvm-x-akh">*pasha.n</AUni> -<AUni ws="qvm-x-akl">*pasha.n</AUni> -<AUni ws="qvm-x-ame">*pasha.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.739" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f637940d-d196-4411-8cb4-b894536bc61c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pasha.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ce38fa9a-19eb-42d5-919f-4f02e63dcb9e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e7c33ec4-2f36-44e1-ba36-00b257f22190" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pasha.n 
\entryTyp root 
\gENG 
\gSPN 
\e *pasha.n 
\c N0 
\ach pasha 
\akh pasha 
\acl pasha 
\akl pasha 
\ame pasha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="a8d71b5e-6c79-4f47-9c72-ec53ace5a0c0" ownerguid="21a35c7d-a266-42fb-ba87-8b0ba75318a8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="d07015f6-03c4-44c3-a0c5-4c87adc9daee" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="012e3458-d6e7-4962-b599-e91f2b9fd617" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a8d845a2-f818-4608-b26f-df1de466a1db" ownerguid="72274e9d-5d3c-4ae7-93ab-db3617cdda1e"> -<ExampleWords> -<AUni ws="en">ouch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words do people use to say that something feels bad?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a8d8e14b-f3c0-44a8-af1e-022414f715ff" ownerguid="63403699-07c1-43f3-a47c-069d6e4316e5"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">In the beginning God created <the heavens and the earth>.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">universe, creation, cosmos, heaven and earth, macrocosm, everything that exists</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to everything we can see?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a8d92446-3ab7-43b5-8e2a-29d5599e0bd7" ownerguid="7c7f62d8-0293-45ba-8658-956c38bafc66"> -<ExampleWords> -<AUni ws="en">God's will, providence</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the decisions God makes concerning what happens to a person?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a8d97a5a-4e86-4559-940f-fd8a521ad104" ownerguid="be68fa80-5f68-4870-a8d0-25830ebe0e74"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ouch!</AUni> -<AUni ws="es">qué.dolor!</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0415aa5f-75b6-4899-9236-9a213cd611d5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="a8ddfff2-768a-4010-9f31-5e5f67196766" ownerguid="e5753e53-fb22-4adb-8e65-709f727cd3cb"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="a8e0f7dd-4e42-4482-b087-5cab01b93363" ownerguid="22aba232-9fe9-4f6e-afda-41c40a29d3d8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a8e4082c-8118-4e4a-9858-661df0c8c16f" ownerguid="fe8d133a-6bcd-4f0a-94ac-b45f272aa226"> -<Form> -<AUni ws="qvm-x-ach">chupa</AUni> -<AUni ws="qvm-x-acl">chupa</AUni> -<AUni ws="qvm-x-akh">chupa</AUni> -<AUni ws="qvm-x-akl">chupa</AUni> -<AUni ws="qvm-x-ame">chupa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PartOfSpeech" guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" ownerguid="ecf8c677-320a-452c-85c0-1f0df87b5be5"> -<Abbreviation> -<AUni ws="en">n</AUni> -</Abbreviation> -<AffixSlots> -<objsur guid="42bc87c7-a17e-4c3e-850a-437f19ff6b36" t="o" /> -<objsur guid="b5380f6d-8ec4-4a58-806f-5e3caeadb9df" t="o" /> -<objsur guid="c1118d19-b22a-4beb-87cf-1c1faf476ece" t="o" /> -<objsur guid="fda4c591-1349-4f9e-ab87-905ae2aa25e1" t="o" /> -</AffixSlots> -<AffixTemplates> -<objsur guid="67b2fc26-c47e-43cf-b1f9-7b650bb39f80" t="o" /> -</AffixTemplates> -<BackColor val="-1073741824" /> -<CatalogSourceId> -<Uni>Noun</Uni> -</CatalogSourceId> -<DateCreated val="2022-9-23 16:55:8.749" /> -<DateModified val="2022-10-15 15:11:50.732" /> -<Description> -<AStr ws="en"> -<Run ws="en">A noun is a broad classification of parts of speech which include substantives and nominals.</Run> -</AStr> -</Description> -<ForeColor val="6303632" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Noun</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="f3ea5225-9cc3-474e-b548-7bda3376fce1" t="o" /> -<objsur guid="85ffb381-0567-4202-8640-53cbaec77e45" t="o" /> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="o" /> -</SubPossibilities> -<UnderColor val="-1073741824" /> -<UnderStyle val="1" /> -</rt> -<rt class="LexSense" guid="a8e4421f-7fb7-47c3-a610-8ac1928ffcc9" ownerguid="0d31ea20-4230-4195-ba9a-98f07ef1e4c7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9d676b5c-7ba5-4d14-ac4a-778db749e05d" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">rope</AUni> -<AUni ws="es">soga</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0b267061-94ac-4a60-9637-3b9a66fc4e04" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="a8e49960-d854-4961-8d03-0e847b1267bc" ownerguid="544b07f9-d735-4147-8613-18acb6d83838"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a8e564b5-8799-428f-90fd-553a60581de3" ownerguid="ba06de9e-63e1-43e6-ae94-77bea498379a"> -<ExampleWords> -<AUni ws="en">people, folks, population, the public, populace</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to more than one person?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a8e5d72e-1ace-4eaa-a801-1dd74aa502db" ownerguid="12c172dd-8bce-4d8d-9f64-f9faeea783ba"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a8e68a72-7563-489c-b996-5e533b297492" ownerguid="a158029e-b425-4e6f-92fa-3be549a0715c"> -<Form> -<AUni ws="qvm-x-ach">muntun</AUni> -<AUni ws="qvm-x-acl">muntun</AUni> -<AUni ws="qvm-x-akh">muntun</AUni> -<AUni ws="qvm-x-akl">muntun</AUni> -<AUni ws="qvm-x-ame">muntun</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a8ec5265-d4ed-44ad-95db-ed6912e7bf9d" ownerguid="8242fc85-a703-4efa-a78a-0556a84e811e"> -<ExampleWords> -<AUni ws="en">bite, bite into, bite off, take a bite, chomp down on, champ, crunch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to biting something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a8edb4f9-cc35-4486-9979-e49dd9391f4a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">imana</AUni> -<AUni ws="qvm-x-acl">imana</AUni> -<AUni ws="qvm-x-akh">imana</AUni> -<AUni ws="qvm-x-akl">imana</AUni> -<AUni ws="qvm-x-ame">imana</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*imana</AUni> -<AUni ws="qvm-x-acl">*imana</AUni> -<AUni ws="qvm-x-akh">*imana</AUni> -<AUni ws="qvm-x-akl">*imana</AUni> -<AUni ws="qvm-x-ame">*imana</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.802" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="91d3fd07-1dbb-4b95-8d96-371d9f22e034" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*imana</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="32ade28b-a4b3-44cc-92a3-acb7e2878954" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="270f25ae-9cfc-46f4-8fe9-a67e4e1d3050" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *imana 
\entryTyp root 
\gENG 
\gSPN 
\e *imana 
\c V2 
\ach imana 
\akh imana 
\acl imana 
\akl imana 
\ame imana 
\mcc *imana / _... 2O / _... 2 
\i Exo 32.21 Aaróntanami Moisés caynog nergan: <<Israel runacuna ¿imanashushcanquitag cayjinanpa jutsata ruraycatsinayquipäga?>></Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="a8ee8b6b-52dc-4c4e-98c8-f02648255d00" ownerguid="e3b78a5f-5d6a-4f82-9032-8865c3bd57fa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">amallor</AUni> -<AUni ws="es">crush</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6a8fe39c-0731-44fa-94ca-6e1b2513ca96" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="a8f06ef3-2a11-48e4-9c30-011e83cd1ab5" ownerguid="31a7ec5f-da68-429d-99c9-6cf84807ddfb"> -<Form> -<AUni ws="qvm-x-ach">junta</AUni> -<AUni ws="qvm-x-acl">junta</AUni> -<AUni ws="qvm-x-akh">junta</AUni> -<AUni ws="qvm-x-akl">junta</AUni> -<AUni ws="qvm-x-ame">junta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="a8f0dcf9-f674-426e-9f78-f626cd137032" ownerguid="3f5a2f9c-b293-482d-9d11-2f316b553459"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a8f817ec-8ea5-4741-9d34-5b20b6699796" ownerguid="38bf569c-c1e9-4530-876b-5bcc629d06ca"> -<Form> -<AUni ws="qvm-x-ach">gochgu</AUni> -<AUni ws="qvm-x-acl">gochgu; gochgu; gochgo</AUni> -<AUni ws="qvm-x-akh">qochqu</AUni> -<AUni ws="qvm-x-akl">qochqu; qochqu; qochqo</AUni> -<AUni ws="qvm-x-ame">quchqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="a8f9fa65-385f-4596-93d8-642306b99ddf" ownerguid="da038c26-ac03-418d-92ef-2820686c3b30"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="a8fc7d51-7b67-4128-8375-dd93b8b11444" ownerguid="a87d14bf-4739-4625-b15c-d84f973e04d2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="46151eed-f92d-411a-8d95-08daf7a3c58b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a9069cca-dc28-485f-976f-faa06b34a5a5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shana; shana:</AUni> -<AUni ws="qvm-x-acl">shana; shana:</AUni> -<AUni ws="qvm-x-akh">shana; shana:</AUni> -<AUni ws="qvm-x-akl">shana; shana:</AUni> -<AUni ws="qvm-x-ame">shana; shana:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shana:</AUni> -<AUni ws="qvm-x-acl">*shana:</AUni> -<AUni ws="qvm-x-akh">*shana:</AUni> -<AUni ws="qvm-x-akl">*shana:</AUni> -<AUni ws="qvm-x-ame">*shana:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.531" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1832da1e-8cc7-4ed1-8a8c-d4288936ef07" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shana:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8b75a58d-c3d6-4646-a99d-c437d60e41bb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f1385df9-3547-4145-9f0b-3dd5e1390f44" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shana: 
\entryTyp root 
\gENG hot 
\gSPN hacer.calor 
\e *shana: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach shana foreshortened 
\ach shana: 
\akh shana foreshortened 
\akh shana: 
\acl shana foreshortened 
\acl shana: 
\akl shana foreshortened 
\akl shana: 
\ame shana foreshortened 
\ame shana:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="a907c5fe-bca9-4847-bd2c-0e9b4846552c" ownerguid="eb329059-18b6-435f-a811-34f33f5e9990"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">grated.potatoes</AUni> -<AUni ws="es">almidón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ebaecfa6-d652-49f7-ac81-b08944db0aae" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a909429a-d459-4e27-b1df-620deb91ab0f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">taca</AUni> -<AUni ws="qvm-x-acl">taca</AUni> -<AUni ws="qvm-x-akh">taka</AUni> -<AUni ws="qvm-x-akl">taka</AUni> -<AUni ws="qvm-x-ame">taka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*taka</AUni> -<AUni ws="qvm-x-acl">*taka</AUni> -<AUni ws="qvm-x-akh">*taka</AUni> -<AUni ws="qvm-x-akl">*taka</AUni> -<AUni ws="qvm-x-ame">*taka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.774" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a62b4c66-8449-40ec-9bdf-f46505b672af" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*taka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c5896450-e7b7-41af-9e26-707892ae0dc5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f6d1e25e-5e1c-4cf1-a136-4fd009cef49c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *taka 
\entryTyp root 
\gENG pound 
\gSPN golpear 
\e *taka 
\c V2 
\ach taca 
\akh taka 
\acl taca 
\akl taka 
\ame taka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="a9098bd2-9a52-4226-a033-701f67c7a05e" ownerguid="d20a7f46-1849-488e-8262-93a0167d4210"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">notebook</AUni> -<AUni ws="es">cuaderno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="457916a6-5350-4431-960d-1b12208239f1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="a90e47fb-667c-46f7-beab-5ec4e9e6edb5" ownerguid="65bb0844-9a71-4eec-9b86-bf4b4b508a28"> -<Abbreviation> -<AUni ws="en">4.4.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being cautious.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Caution</AUni> -</Name> -<Questions> -<objsur guid="03f0baae-80a8-40c9-affc-ac3a5dad2be8" t="o" /> -<objsur guid="cf19b822-ff00-472e-b9d8-0f958d54a02e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="a9172057-0e8a-47fa-bae4-84e5f3b214b3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">arbitru; arbitro</AUni> -<AUni ws="qvm-x-acl">arbitru; arbitru; arbitro</AUni> -<AUni ws="qvm-x-akh">arbitru; arbitro</AUni> -<AUni ws="qvm-x-akl">arbitru; arbitru; arbitro</AUni> -<AUni ws="qvm-x-ame">arbitru; arbitro</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+arbitro</AUni> -<AUni ws="qvm-x-acl">+arbitro</AUni> -<AUni ws="qvm-x-akh">+arbitro</AUni> -<AUni ws="qvm-x-akl">+arbitro</AUni> -<AUni ws="qvm-x-ame">+arbitro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.820" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d885a08b-0711-46a9-8426-da9ab1b98c38" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+arbitro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4c45c72e-0f8c-4faf-900f-ebf1a022257b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c3a56f53-6647-4a56-b889-4a31408ee82d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +arbitro 
\entryTyp root 
\gENG referee 
\gSPN arbitro 
\e +arbitro 
\c N0 
\ach arbitru / ~_# 
\ach arbitro / _# 
\akh arbitru / ~_# 
\akh arbitro / _# 
\acl arbitru / ~_# 
\acl arbitru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl arbitro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl arbitru / ~_# 
\akl arbitru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl arbitro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame arbitru / ~_# 
\ame arbitro / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="Segment" guid="a9174308-3b52-438f-b333-c29be9012c1d" ownerguid="346e0eef-6251-4263-895b-0457fc7c3c96"> -<Analyses> -<objsur guid="fae60727-af59-4ee9-a797-99872e299efc" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoDerivAffMsa" guid="a91771ad-8785-4e3e-b6f8-793820e3a8bd" ownerguid="d1fa5a96-43b1-4974-9134-dd49a6603053"> -<FromPartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</FromPartOfSpeech> -<ToPartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</ToPartOfSpeech> -</rt> -<rt class="LexSense" guid="a9182b98-7759-457c-83b2-6f86b37cd06f" ownerguid="20b6e2ae-3638-4c31-803b-ce8eb255fa57"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">corpse</AUni> -<AUni ws="es">cadaver</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="34f4f7ba-d7ab-4c6e-963b-aead3ca48be0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a91dc659-45a8-4c0a-beb1-a4485393377d" ownerguid="f29dccae-1654-4eb7-8aae-04f7df4fe90c"> -<ExampleWords> -<AUni ws="en">right, properly, correctly, by the book</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to doing something in the right way?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a91e7c15-408c-4119-8ae0-aecb5cd2961f" ownerguid="64e3d6b1-1d61-454c-97ab-e1d7cb0a8917"> -<ExampleWords> -<AUni ws="en">nervous, high-strung, of a nervous disposition</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe someone who is often nervous?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a91eabb4-50e0-4a6a-b9d7-d66fc2e83f57" ownerguid="21ebc64a-a1b8-45bd-b7f6-143a053f1d31"> -<ExampleWords> -<AUni ws="en">league, conference, association, National Basketball Association</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What is a group of teams called?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a921397b-6079-4639-9cb0-a08e939403c9" ownerguid="7b513a02-c3ae-4243-9410-16854d911258"> -<ExampleWords> -<AUni ws="en">anonymous, unnamed, unidentified, incognito, unknown, nameless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe someone whose name is not known?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="a9274aef-d301-40d6-a5fd-b5ff5878e0b4" ownerguid="fdee8ed6-d450-416a-816e-9a16e82804d8"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="69f513e8-6d98-4d7f-a734-b283ce945bc6" t="o" /> -<objsur guid="eaae3768-2c91-45b7-a6db-7a0c5083de7a" t="o" /> -<objsur guid="0dc61e4a-06d3-48bd-bfcf-e1960deecfe5" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="a92818d9-500b-4298-b87c-4464944b4980" ownerguid="375d1eae-35ea-43eb-8d24-67023afed5d1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.sweet</AUni> -<AUni ws="es">ser.dulce</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d2f1e620-8add-4111-9a75-42fd07223055" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="a9287cdf-ef40-4d98-81a8-03aaa5017c14" ownerguid="c87f5a66-58f2-404d-9fd9-4bfd598d2009"> -<Form> -<AUni ws="qvm-x-ach">cancapish</AUni> -<AUni ws="qvm-x-acl">cancapish</AUni> -<AUni ws="qvm-x-akh">kankapish</AUni> -<AUni ws="qvm-x-akl">kankapish</AUni> -<AUni ws="qvm-x-ame">kankapish</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a92d776c-04d2-465a-a42b-8bc330c6d2f8" ownerguid="aa0a352b-8de8-4686-9247-a6b084cf154f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">peck</AUni> -<AUni ws="es">picotear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4f67afb1-1556-4e4b-a92a-1dc7a99a8cad" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="a92da10e-6457-4ca2-bc25-31f91d16ceb9"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">AFAR</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="a92f8505-07c3-4c92-a965-41dcd07d1329" ownerguid="d684b91c-95cc-4ace-a36a-574b5d809998"> -<Form> -<AUni ws="qvm-x-ach">afecta</AUni> -<AUni ws="qvm-x-acl">afecta</AUni> -<AUni ws="qvm-x-akh">afecta</AUni> -<AUni ws="qvm-x-akl">afecta</AUni> -<AUni ws="qvm-x-ame">afecta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a933578e-82dd-4b74-95ed-5d9a1afcc802" ownerguid="320cf7d7-ddc6-4226-8900-b23cc5256217"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">veranda</AUni> -<AUni ws="es">veranda</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="345d9bac-97bc-4484-9adc-f307565c365d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a934fe16-268d-4675-9a89-3a31a4adedbd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">despacha</AUni> -<AUni ws="qvm-x-acl">despacha</AUni> -<AUni ws="qvm-x-akh">despacha</AUni> -<AUni ws="qvm-x-akl">despacha</AUni> -<AUni ws="qvm-x-ame">despacha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+despachar</AUni> -<AUni ws="qvm-x-acl">+despachar</AUni> -<AUni ws="qvm-x-akh">+despachar</AUni> -<AUni ws="qvm-x-akl">+despachar</AUni> -<AUni ws="qvm-x-ame">+despachar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.396" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f4054e98-dffe-4530-a09e-64cd0ec8b9b4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+despachar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7b27ad71-175e-4e8a-a429-d6e6f4d5dfb3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f208ce76-0daa-41fe-a026-a31bd6452e4c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +despachar 
\entryTyp root 
\gENG dispatch 
\gSPN despachar 
\e +despachar 
\c V2 
\ach despacha 
\akh despacha 
\acl despacha 
\akl despacha 
\ame despacha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a93654fd-99a8-47cc-a86d-1cb2e6c8df68"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tacya</AUni> -<AUni ws="qvm-x-acl">tacya</AUni> -<AUni ws="qvm-x-akh">takya</AUni> -<AUni ws="qvm-x-akl">takya</AUni> -<AUni ws="qvm-x-ame">takya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*takya</AUni> -<AUni ws="qvm-x-acl">*takya</AUni> -<AUni ws="qvm-x-akh">*takya</AUni> -<AUni ws="qvm-x-akl">*takya</AUni> -<AUni ws="qvm-x-ame">*takya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.782" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dc36e187-ee13-463a-a403-d505508e1b4e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*takya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2663958f-2dfe-4db0-848c-0fafa554226b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dd1d1514-30ff-4c03-928f-550073886727" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *takya 
\entryTyp root 
\gENG be.established 
\gSPN establecerse 
\e *takya 
\c V1 
\ach tacya 
\akh takya 
\acl tacya 
\akl takya 
\ame takya</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a937025b-b5e3-45e2-be6d-fc06234a3b30" ownerguid="294d3bf5-366a-40fb-94ed-efe086be3b60"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a93a5d4a-1ded-46c0-a54a-d38375b736a2" ownerguid="d25f7907-091e-4cf7-bd8c-bdb97278b616"> -<ExampleWords> -<AUni ws="en">hit, slap, smack</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to hitting something with your fist or hand?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a93c6d7f-1e84-4184-9282-60c150069d8d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yana</AUni> -<AUni ws="qvm-x-acl">yana</AUni> -<AUni ws="qvm-x-akh">yana</AUni> -<AUni ws="qvm-x-akl">yana</AUni> -<AUni ws="qvm-x-ame">yana</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yana</AUni> -<AUni ws="qvm-x-acl">*yana</AUni> -<AUni ws="qvm-x-akh">*yana</AUni> -<AUni ws="qvm-x-akl">*yana</AUni> -<AUni ws="qvm-x-ame">*yana</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.727" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f2db9088-e30b-4b9e-9fc6-3c62edd24296" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yana</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d25d1ccc-8551-4ad4-a4da-626efbfc8799" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c6a51013-edb6-43c0-983f-2fe2062b8f61" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yana 
\entryTyp root 
\gENG dark 
\gSPN oscuro 
\e *yana 
\c N0 
\ach yana 
\akh yana 
\acl yana 
\akl yana 
\ame yana 
\mcc *yana / ~_ GEN GOAL 
\mcc *yana / ~_ PUR</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="a940012d-b194-4189-9427-718ffe36ee75" ownerguid="f6c6d931-47ff-499a-8f5c-fe587d46d78d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 BN/BN R0/R0 V0/V0 ONSHEV/ONSHEV</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">RPT</AUni> -<AUni ws="es">IND</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1f012570-3ca4-4030-ab61-99e6e57064dd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a940b2e4-ba69-4a2c-bbe3-8b2aa2d59d38" ownerguid="f2022802-4f43-4fa2-8c58-33a8b9e75895"> -<ExampleWords> -<AUni ws="en">leap, surge, explosion, boom, jump</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to a large increase?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="a941e219-39a0-414b-85c3-d612cc1969b2" ownerguid="64367de3-7fca-4995-8ef3-8a561b946bc8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pray</AUni> -<AUni ws="es">rezar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9ad9472c-74d8-422c-9c05-5cea83fcb52e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a94449b0-06d1-4c8d-8631-27f39883f39a" ownerguid="896d57d4-4c25-4f0b-9985-a30974f64704"> -<ExampleWords> -<AUni ws="en">disciple, adherent, devotee, follower, imitator, learner, proselyte</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a disciple?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="a9470e53-ee43-4c87-9cce-09cc4fa6b1c1" ownerguid="71757ff0-d698-426d-a791-50c4bde6f735"> -<Abbreviation> -<AUni ws="en">9.5.1.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating the Path of movement.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Path (of movement)</AUni> -</Name> -<Questions> -<objsur guid="12f8ca80-42e8-4fbf-b918-e0c79cb9b81a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="a9473df9-eb91-4996-921a-97ad39b78bdf" ownerguid="0249a66f-940e-439b-9d7a-6d2ae604b988"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">armpit</AUni> -<AUni ws="es">sobaco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="24546d36-2801-4661-9087-0ef7d8226579" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a94b2801-1989-44f6-b617-56cccd499ff2" ownerguid="08d5e632-0aed-4924-b3bb-d43de3420385"> -<ExampleWords> -<AUni ws="en">memorial, monument, in memory of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something that is made or done to remind people of the person who died?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a94b99e6-d195-405f-9919-77405d1ae217"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shiwa</AUni> -<AUni ws="qvm-x-acl">shiwa</AUni> -<AUni ws="qvm-x-akh">shiwa</AUni> -<AUni ws="qvm-x-akl">shiwa</AUni> -<AUni ws="qvm-x-ame">shiwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shiwa</AUni> -<AUni ws="qvm-x-acl">*shiwa</AUni> -<AUni ws="qvm-x-akh">*shiwa</AUni> -<AUni ws="qvm-x-akl">*shiwa</AUni> -<AUni ws="qvm-x-ame">*shiwa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.612" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="423a5a5b-ac0f-47f4-862e-03983a2ea560" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shiwa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cf9e53e1-6d76-4dc6-bcc8-78cabc189b2d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3620a5f7-c2e8-4d68-b77d-5486a660fc41" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shiwa 
\entryTyp root 
\gENG red.potato 
\gSPN papa.roja 
\e *shiwa 
\c N0 
\ach shiwa 
\akh shiwa 
\acl shiwa 
\akl shiwa 
\ame shiwa</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="a94ca324-c7a1-4dd6-a357-80cb255f5e43"> -<Analyses> -<objsur guid="2aec3ca7-a7d5-475c-acc2-6bcdd325d6c2" t="o" /> -</Analyses> -<Checksum val="-1777804068" /> -<Form> -<AUni ws="qvm-x-akh">paywan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="a94dd075-7934-497f-991a-1c91aa720727" ownerguid="a4958dd9-03cc-4863-ab76-cd0682060cb0"> -<ExampleWords> -<AUni ws="en">praise the Lord, hallelujah, hosanna</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What exclamations do people use when speaking well of someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="a9503672-0665-4b1b-bf3a-a1ea7843f981" ownerguid="2084be86-a681-48c5-9ef0-6ee12c9a250b"> -<Form> -<AUni ws="qvm-x-ach">corrala</AUni> -<AUni ws="qvm-x-acl">corrala</AUni> -<AUni ws="qvm-x-akh">corrala</AUni> -<AUni ws="qvm-x-akl">corrala</AUni> -<AUni ws="qvm-x-ame">corrala</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="a951ff50-d6e3-42ea-b01c-6675b7741d74" ownerguid="550c3860-c53c-46ef-b7c1-30e203da49af"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoAffixAllomorph" guid="a95540e6-3238-4f49-a238-82fd682806d9" ownerguid="852335c0-3900-49e5-8717-136f53f3ed79"> -<Form> -<AUni ws="qvm-x-ach">nnin</AUni> -<AUni ws="qvm-x-acl">nnin</AUni> -<AUni ws="qvm-x-akh">nnin</AUni> -<AUni ws="qvm-x-akl">nnin</AUni> -<AUni ws="qvm-x-ame">nnin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="04c2c26a-62fd-4045-9c28-5e4da7139d19" t="r" /> -</PhoneEnv> -</rt> -<rt class="LexSense" guid="a958fd0d-2af1-44c3-a719-80fd8884d31c" ownerguid="d2c54b09-ad0e-4660-9902-c9c80c3c64f4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">Roman</AUni> -<AUni ws="es">romano</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="212efd8b-49b9-416e-b06d-69e405e9298f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="a95c38c1-9f7a-4da9-8dfb-d73a55a21eba" ownerguid="3c51f6bd-01a5-401e-a90d-c632f094d50b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">MIC 3.3 Calducunayquipag aytsanta cutsognogmi paycunata maltrataycanqui.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="a95f3a4f-4d36-47d6-86f8-982e656c7e43" ownerguid="4d1ac5e6-dfe3-4643-b6e5-21649a01cce9"> -<ExampleWords> -<AUni ws="en">tracks, railroad tracks, rail, tie, bed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the tracks?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a9616cdc-f462-4be2-b478-d8c1b4796aca" ownerguid="dc177f3c-d0fd-4232-adf1-a77b339cdbb2"> -<ExampleWords> -<AUni ws="en">enclosed, open, multi-story, high-rise</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(18) What words describe different kinds of buildings?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="a9625460-7162-447c-b400-84fbc5744f1b" ownerguid="ec1bcace-fc10-45df-8e1f-29bce1ef786a"> -<Abbreviation> -<AUni ws="en">3.5.1.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.162" /> -<DateModified val="2022-9-23 16:55:8.162" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to saying farewell.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Say farewell</AUni> -</Name> -<Questions> -<objsur guid="bf14787b-d417-4d55-be15-ee05986951e6" t="o" /> -<objsur guid="9d6c4567-9ffc-4b01-a672-f36ed7f9108a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="a963e21e-442d-4a80-ab78-f6b6f510b5d6" ownerguid="bbd00b1c-739d-4288-a370-3aab776bf465"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="bfc36132-5ff4-4d06-b241-0d4626ab8b74" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="a9695987-ccfb-4545-9caa-2fda48559299" ownerguid="6817cc05-a77f-405f-86c0-1325fdfaef28"> -<Form> -<AUni ws="qvm-x-ach">porugsa</AUni> -<AUni ws="qvm-x-acl">porogsa</AUni> -<AUni ws="qvm-x-akh">poruqsa</AUni> -<AUni ws="qvm-x-akl">poroqsa</AUni> -<AUni ws="qvm-x-ame">puruqsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="a96fae79-db91-498f-a3f4-4aaeff3f9499" ownerguid="a8001168-2cc5-43dc-a478-51bbc7fbb33f"> -<Form> -<AUni ws="qvm-x-ach">r</AUni> -<AUni ws="qvm-x-acl">r</AUni> -<AUni ws="qvm-x-akh">r</AUni> -<AUni ws="qvm-x-akl">r</AUni> -<AUni ws="qvm-x-ame">r</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a970105b-3d86-4977-9ab9-355bea8b8a67" ownerguid="e02e7419-3e92-4a91-931a-9a02be601ad3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="fc27c166-2481-4d66-8dcb-b6af9c8de391" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="a977c4b6-1004-448f-b6b0-daf5ce87d76d" ownerguid="785e7f1f-21ed-46b6-8599-c6ced4fd26d8"> -<Abbreviation> -<AUni ws="en">4.5.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.256" /> -<DateModified val="2022-9-23 16:55:8.256" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to high social status.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>87C High Status or Rank</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">High status</AUni> -</Name> -<Questions> -<objsur guid="52ba1065-481c-4ded-af8d-e178a6380bff" t="o" /> -<objsur guid="aaf0cb66-0192-458b-9360-49b719b1317e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="a977dae5-a8a3-4e8c-b647-c0586ff510b6" ownerguid="40516af2-d413-418e-8b68-8443847ee169"> -<ExampleWords> -<AUni ws="en">belt loop, bodice, collar, cowl, crease, cuff, fringe, hem, hood, lapel, leg, neck, neckband, neckline, placket, pocket, sash, seam, seat, shirttail, skirt, sleeve, slit, tassel, waist, waistband, waistline</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to parts of clothing?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a97909b2-5498-436d-80c4-549e1fcfd365"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cadina</AUni> -<AUni ws="qvm-x-acl">cadina</AUni> -<AUni ws="qvm-x-akh">cadina</AUni> -<AUni ws="qvm-x-akl">cadina</AUni> -<AUni ws="qvm-x-ame">cadina</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+encadenar</AUni> -<AUni ws="qvm-x-acl">+encadenar</AUni> -<AUni ws="qvm-x-akh">+encadenar</AUni> -<AUni ws="qvm-x-akl">+encadenar</AUni> -<AUni ws="qvm-x-ame">+encadenar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.457" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ed924ca7-df89-4a47-a80d-c6f46736b9b8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+encadenar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b0dc3e89-90b9-4a12-81f9-0c429a8fa69e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9eefcb1d-7d32-46cf-b09e-ecbc902cfd6c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +encadenar 
\entryTyp root 
\gENG chain 
\gSPN cadenar 
\e +encadenar 
\c V2 
\ach cadina 
\akh cadina 
\acl cadina 
\akl cadina 
\ame cadina</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a97ab288-dd40-41df-b8f6-cb66666d131a" ownerguid="8b22ef54-ea90-403c-92c1-ae0cc04c051c"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a97aee9c-0cdb-4163-bde8-f2fa754ee1d3" ownerguid="00364f0c-9a3a-4910-a82e-1ffbc4d4137f"> -<ExampleWords> -<AUni ws="en">calm, unexcited</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words describe a person who does not feel excited?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="a97b4b26-057d-43ff-9bd7-2b1957792d4a" ownerguid="b82a296c-7f7b-4b54-9a35-38b9c5482b35"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 27.3 Altarcho lapan manëjucunaga canga broncipitami. Manëjucuna canga uchpa shuntacuna, tenäza, trinchicuna, tasoncuna y canalacuna.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="a97be5dd-69dc-49bf-bcf1-a4da50b64eaa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yug</AUni> -<AUni ws="qvm-x-acl">yog</AUni> -<AUni ws="qvm-x-akh">yuq</AUni> -<AUni ws="qvm-x-akl">yoq</AUni> -<AUni ws="qvm-x-ame">yuq</AUni> -</Custom> -<AlternateForms> -<objsur guid="933ca697-894e-45e4-9fac-8397cae71491" t="o" /> -<objsur guid="2493b0d6-56b4-4ad1-8952-831ac0432d21" t="o" /> -</AlternateForms> -<DateCreated val="2022-9-23 18:26:20.518" /> -<DateModified val="2022-10-16 15:27:47.114" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7c0d63ba-653e-422e-8d82-161d2a6c7478" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">HAVE.V</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="19f56977-ab7e-4f38-a9f8-7d5786460d3c" t="o" /> -<objsur guid="df50dc20-76ec-48c3-a0d2-a55e1cd253ab" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2ea9352e-995b-48ed-8e69-3a3c247cab3e" t="o" /> -<objsur guid="1b3cb31f-4433-4195-bd21-e46c7d3dfa4e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx HAVE.V 
\entryTyp suffix 
\gENG HAVE 
\gSPN TENER 
\e HAVE.V 
\c N0/N0 
\o 000 
\mp -PMonophthongizes 
\ach yug 
\akh yuq 
\acl yog 
\akl yoq 
\ame yuq 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a97e1e43-8347-41a8-b258-5ec7de90442c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">machay</AUni> -<AUni ws="qvm-x-acl">machay</AUni> -<AUni ws="qvm-x-akh">machay</AUni> -<AUni ws="qvm-x-akl">machay</AUni> -<AUni ws="qvm-x-ame">machay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*matray</AUni> -<AUni ws="qvm-x-acl">*matray</AUni> -<AUni ws="qvm-x-akh">*matray</AUni> -<AUni ws="qvm-x-akl">*matray</AUni> -<AUni ws="qvm-x-ame">*matray</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.366" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3b52986b-81f2-4103-84b5-879d72648ef1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*matray</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="09368bb3-7e45-47f4-b60a-7a85ffb72ba5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="389c616b-3514-4b8b-b409-a5360057a677" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *matray 
\entryTyp root 
\gENG cave 
\gSPN cueva 
\e *matray 
\c N0 
\mp +FinalC 
\ach machay 
\akh machay 
\acl machay 
\akl machay 
\ame machay</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="a97ff68c-ac58-405a-a366-6e8a3df23715" ownerguid="81d21551-f443-430f-b26a-11e481d95c37"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="d9ad060b-2236-465e-a6db-2a45c90c49cb" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="008df509-2829-43e8-84bb-da30a198c327" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a9811ae6-1b46-48aa-90d1-7c8872df2eee" ownerguid="3d5a1a32-6e9e-486c-8c3b-d12bfe9a3114"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">machete</AUni> -<AUni ws="es">machete</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2e1eacb2-6b88-4720-903f-e763dfa9b1f9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="a984b5c2-45bf-4dea-bf42-3e61815e0b2d" ownerguid="8275c745-d129-4661-a70b-44c7799187ff"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="a985323b-eff9-47db-a7e0-71b8f282354d" ownerguid="e4582d00-a49b-4f42-be7f-d56cc462a064"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="a987fb7e-c326-4431-ac4c-5f01ccfc3767"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">textu; texto</AUni> -<AUni ws="qvm-x-acl">textu; textu; texto</AUni> -<AUni ws="qvm-x-akh">textu; texto</AUni> -<AUni ws="qvm-x-akl">textu; textu; texto</AUni> -<AUni ws="qvm-x-ame">textu; texto</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+texto</AUni> -<AUni ws="qvm-x-acl">+texto</AUni> -<AUni ws="qvm-x-akh">+texto</AUni> -<AUni ws="qvm-x-akl">+texto</AUni> -<AUni ws="qvm-x-ame">+texto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.876" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e67a473e-c6cf-4ab8-a900-cc47b6ff4aa7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+texto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ef9556ea-6211-4c47-8fe6-45315845cbcd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b0bc5e57-8967-4f26-ae0e-b80be845262b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +texto 
\entryTyp root 
\gENG verse 
\gSPN texto 
\e +texto 
\c N0 
\ach textu / ~_# 
\ach texto / _# 
\akh textu / ~_# 
\akh texto / _# 
\acl textu / ~_# 
\acl textu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl texto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl textu / ~_# 
\akl textu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl texto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame textu / ~_# 
\ame texto / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a9898fad-e79b-44f2-b06b-7d35f1e05a38"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">perdón; perdon</AUni> -<AUni ws="qvm-x-acl">perdón; perdon</AUni> -<AUni ws="qvm-x-akh">perdón; perdon</AUni> -<AUni ws="qvm-x-akl">perdón; perdon</AUni> -<AUni ws="qvm-x-ame">perdón; perdon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+perdón</AUni> -<AUni ws="qvm-x-acl">+perdón</AUni> -<AUni ws="qvm-x-akh">+perdón</AUni> -<AUni ws="qvm-x-akl">+perdón</AUni> -<AUni ws="qvm-x-ame">+perdón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.790" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3548db4c-ec03-4cde-8af5-2baf938c130e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+perdón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e47c3eb4-0b19-443a-a3b9-68fa74aacde0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="caf089d5-ccda-40e0-8c5c-716e6a834fff" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +perdón 
\entryTyp root 
\gENG forgiveness 
\gSPN perdón 
\e +perdón 
\c N0 
\mp +FinalC 
\ach perdón / _# 
\ach perdon / ~_# 
\akh perdón / _# 
\akh perdon / ~_# 
\acl perdón / _# 
\acl perdon / ~_# 
\akl perdón / _# 
\akl perdon / ~_# 
\ame perdón / _# 
\ame perdon / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a98a43d4-200c-4f6c-9ee2-a7fa90614137" ownerguid="eaa8aa46-b632-48a0-a7fb-b8ef4b7dcc4e"> -<Form> -<AUni ws="qvm-x-ach">üna</AUni> -<AUni ws="qvm-x-acl">üna</AUni> -<AUni ws="qvm-x-akh">üna</AUni> -<AUni ws="qvm-x-akl">üna</AUni> -<AUni ws="qvm-x-ame">üna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="a98c1553-69e2-4620-9a5e-8c027b96520e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">condor</AUni> -<AUni ws="qvm-x-acl">condor</AUni> -<AUni ws="qvm-x-akh">condor</AUni> -<AUni ws="qvm-x-akl">condor</AUni> -<AUni ws="qvm-x-ame">condor</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+condor</AUni> -<AUni ws="qvm-x-acl">+condor</AUni> -<AUni ws="qvm-x-akh">+condor</AUni> -<AUni ws="qvm-x-akl">+condor</AUni> -<AUni ws="qvm-x-ame">+condor</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.162" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bb307ce7-b7b5-45f2-857f-f1fc2ef55ffd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+condor</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2cc2c2e5-96d9-4e2b-a5a9-bee3cbc012ca" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="12d952dc-94d7-4068-b4d5-de30e80c8924" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +condor 
\entryTyp root 
\gENG condor 
\gSPN condor 
\e +condor 
\c N0 
\mp +FinalC 
\ach condor 
\akh condor 
\acl condor 
\akl condor 
\ame condor</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="a98e075e-312c-4c13-a05b-5e6ddfd79d8a" ownerguid="71c70eb9-7ea1-4fe0-ae10-ab6645ed74a7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tempt</AUni> -<AUni ws="es">tentar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4f27f161-d58d-4243-8786-2cafd219a295" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a98f6042-6292-4046-a9e6-e51f220cf3c7" ownerguid="56da6572-a106-43d5-ab55-28f96bf065ea"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="12a5ac1f-b770-4bea-ad3a-6ddb4ff1449d" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="7aa05678-af75-4a0a-ab75-b449f7ca9a6a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a9911ac4-1f7b-4e60-8714-bdd80f4ac20f" ownerguid="edbfc928-049c-4cb7-8c88-8e8af38287c7"> -<ExampleWords> -<AUni ws="en">lovers, the one you love, the love of your life</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to someone you love?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a9953815-1132-4a82-bc1e-d53933ba663c" ownerguid="c8c8b1f6-a898-4d5b-a1ce-fa7284915e8f"> -<ExampleWords> -<AUni ws="en">disaster, catastrophe, tragedy, calamity, crisis, emergency</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to a disaster?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a995d9d3-e7d3-469b-b571-6e34d5f25d8c" ownerguid="273f4956-f79f-4b1e-b552-466280a65e60"> -<ExampleWords> -<AUni ws="en">show (n), exhibition, display, presentation, showing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to an event when something is shown?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="a99bfdb7-8925-4e05-b354-040ffd14b09d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shulu</AUni> -<AUni ws="qvm-x-acl">shulu; shulo</AUni> -<AUni ws="qvm-x-akh">shulu</AUni> -<AUni ws="qvm-x-akl">shulu; shulo</AUni> -<AUni ws="qvm-x-ame">shulu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shullu.v</AUni> -<AUni ws="qvm-x-acl">*shullu.v</AUni> -<AUni ws="qvm-x-akh">*shullu.v</AUni> -<AUni ws="qvm-x-akl">*shullu.v</AUni> -<AUni ws="qvm-x-ame">*shullu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.632" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c8b84334-9841-43e3-95d8-6118bdb9f01b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shullu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="93a52a88-5f73-48eb-8719-ee6b34f795a1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="689f1ef0-62f7-4e62-ac83-b6a88c3328bd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shullu.v 
\entryTyp root 
\gENG abort 
\gSPN abortar 
\e *shullu.v 
\c V2 
\ach shulu 
\akh shulu 
\acl shulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shulu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a99ceb76-9eb9-4701-b032-6736d3d93811" ownerguid="62f3fd0b-ef3d-4b23-999e-06c0b290a67c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="a9a03ccc-eb79-4862-8711-d919db632f19"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">raspi</AUni> -<AUni ws="qvm-x-acl">raspi; raspe</AUni> -<AUni ws="qvm-x-akh">raspi</AUni> -<AUni ws="qvm-x-akl">raspi; raspe</AUni> -<AUni ws="qvm-x-ame">raspi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+raspir</AUni> -<AUni ws="qvm-x-acl">+raspir</AUni> -<AUni ws="qvm-x-akh">+raspir</AUni> -<AUni ws="qvm-x-akl">+raspir</AUni> -<AUni ws="qvm-x-ame">+raspir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.277" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0e5e1717-35fd-4b6d-96da-d36958c41060" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+raspir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1a661b20-4003-4cd5-8ffa-8f1557665fec" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bde73b4d-ea70-496c-9c83-21d45c2497e1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +raspir 
\entryTyp root 
\gENG scratch 
\gSPN raspar 
\e +raspir 
\c V2 
\mp +FinalI 
\ach raspi 
\akh raspi 
\acl raspi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl raspe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl raspi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl raspe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame raspi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="a9a19a49-6cfb-4c94-9c71-1c7c704cf6d5" ownerguid="37675f68-2df4-4f45-9d10-2dd417087230"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">discourage</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1b03528f-e14c-42c4-abd9-dafd969f983d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a9a5d19c-f4cf-4fe3-a25c-4bc0803115a9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jayta</AUni> -<AUni ws="qvm-x-acl">jayta</AUni> -<AUni ws="qvm-x-akh">jayta</AUni> -<AUni ws="qvm-x-akl">jayta</AUni> -<AUni ws="qvm-x-ame">hayta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hayta.n</AUni> -<AUni ws="qvm-x-acl">*hayta.n</AUni> -<AUni ws="qvm-x-akh">*hayta.n</AUni> -<AUni ws="qvm-x-akl">*hayta.n</AUni> -<AUni ws="qvm-x-ame">*hayta.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.700" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b00a60a4-b64c-413b-813a-edec8d72d36f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hayta.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9a59b78d-969a-479f-9ea9-5895984d18c2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="488c7517-8478-4b73-ae17-c75466aea1a2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hayta.n 
\entryTyp root 
\gENG foot 
\gSPN pie 
\e *hayta.n 
\c N0 
\ach jayta 
\akh jayta 
\acl jayta 
\akl jayta 
\ame hayta</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="a9a7e915-4fda-408a-9708-8ec56fbf04c8"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">aywa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiAnalysis" guid="a9a93240-5237-4ad0-911a-152179f78550" ownerguid="b0df2954-a1f9-4e21-91d4-6611841ed964"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="c416b076-6d75-4fbf-b028-06cca2f35110" t="o" /> -<objsur guid="596a4e4d-79c8-479b-8186-7598e8d557fd" t="o" /> -<objsur guid="305b4f50-e946-404e-a341-68a19aa7b2e9" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="a9aac848-a15e-49a2-bf4c-4952f0ddb9ad"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ce:jas</AUni> -<AUni ws="qvm-x-acl">ce:jas</AUni> -<AUni ws="qvm-x-akh">ce:jas</AUni> -<AUni ws="qvm-x-akl">ce:jas</AUni> -<AUni ws="qvm-x-ame">ce:jas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cejas</AUni> -<AUni ws="qvm-x-acl">+cejas</AUni> -<AUni ws="qvm-x-akh">+cejas</AUni> -<AUni ws="qvm-x-akl">+cejas</AUni> -<AUni ws="qvm-x-ame">+cejas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.102" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="88847e28-3009-44ab-b82f-15c1a895c1b6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cejas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f13415ab-c806-49f9-bda7-d8609bb6e407" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0a0c01d8-c297-45bc-91fa-6c0df85381c9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cejas 
\entryTyp root 
\gENG eyebrows 
\gSPN 
\e +cejas 
\c N0 
\mp +FinalC 
\ach ce:jas 
\akh ce:jas 
\acl ce:jas 
\akl ce:jas 
\ame ce:jas</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a9ab39e7-1152-4f70-9b85-39971f8e97f1" ownerguid="57c9a370-0f46-4475-98fd-c7a8b3f5074c"> -<ExampleWords> -<AUni ws="en">spoil, mar, put a damper on, cast a shadow over</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to spoiling an event?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="a9ab8772-4ce9-4712-be14-e5897137c5c1" ownerguid="a50162fb-f652-4f20-a9b9-e9b75a422af5"> -<Form> -<AUni ws="qvm-x-ach">mä</AUni> -<AUni ws="qvm-x-acl">mä</AUni> -<AUni ws="qvm-x-akh">mä</AUni> -<AUni ws="qvm-x-akl">mä</AUni> -<AUni ws="qvm-x-ame">mä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="4d5106b0-9756-4fc2-a2e3-b3bb0373fd9b" t="r" /> -</PhoneEnv> -</rt> -<rt class="LexEntry" guid="a9ad35b9-7190-4589-8381-51f72ee80b56"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">re:ma</AUni> -<AUni ws="qvm-x-acl">re:ma</AUni> -<AUni ws="qvm-x-akh">re:ma</AUni> -<AUni ws="qvm-x-akl">re:ma</AUni> -<AUni ws="qvm-x-ame">re:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+remar</AUni> -<AUni ws="qvm-x-acl">+remar</AUni> -<AUni ws="qvm-x-akh">+remar</AUni> -<AUni ws="qvm-x-akl">+remar</AUni> -<AUni ws="qvm-x-ame">+remar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.328" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8e302eed-8e35-4d2a-8b7d-bf5d297d95aa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+remar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7882ca8e-4665-4fa1-95e2-aee4752aff63" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cf67c582-1e9d-4bba-9c2c-db0af346a53d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +remar 
\entryTyp root 
\gENG to.oar 
\gSPN remar 
\e +remar 
\c V2 
\ach re:ma 
\akh re:ma 
\acl re:ma 
\akl re:ma 
\ame re:ma</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="a9af7c35-f782-4198-916d-8e818eb8613f" ownerguid="436c4a88-703d-4237-815a-547ab5488ffe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stink</AUni> -<AUni ws="es">apestar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a10dd8c7-73b7-4b9d-b678-5c1e5382cfbd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="a9b02e2f-faca-4883-a79d-d29fae1e1ea2" ownerguid="3e3e9af5-1be0-449c-9ffd-98891fb64bb6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dove</AUni> -<AUni ws="es">paloma</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5df42573-788c-42de-a8e3-3a1c28700676" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a9b1644c-51d5-42c4-879c-1bab919c3576" ownerguid="8497fb66-8b91-46b9-a0d5-fb9385319561"> -<ExampleWords> -<AUni ws="en">delicious, tasty, good, nice, palatable, flavorful, yummy, juicy, succulent, delectable, luscious, rich, scrumptious, fresh, ambrosial, toothsome</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that tastes good?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a9b1ce81-3034-433c-907a-aa582e9b69da" ownerguid="557c912e-5223-4c38-a818-f3638bb3b1ef"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="a9b382a5-80bf-41a3-99ca-34df011aef40" ownerguid="ad3705bb-2ad8-4e24-b9f2-19600333ce33"> -<Form> -<AUni ws="qvm-x-ach">añaca</AUni> -<AUni ws="qvm-x-acl">añaca</AUni> -<AUni ws="qvm-x-akh">añaka</AUni> -<AUni ws="qvm-x-akl">añaka</AUni> -<AUni ws="qvm-x-ame">añaka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="a9b5df9b-f128-49b4-abd2-cdb957c7d50a" ownerguid="94189c36-c96a-4cc0-bf33-d3a44e892ba3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">feed.fire</AUni> -<AUni ws="es">atizar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fd0cb698-1888-413c-85d4-526adc67594b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a9b79ed2-d70d-49ce-9bf9-c4ad7ac03dd7" ownerguid="284433df-7b37-4e63-a614-78520c483213"> -<ExampleWords> -<AUni ws="en">crawl, inch along, creep</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) How do worms move?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="a9b9d13a-5b11-4687-ad9e-3ee8fbee6377" ownerguid="0f2ec646-30b7-4fa2-b5e3-59c4845321d9"> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="a9be5cf7-9146-4f7f-b07a-cd6d14133460" ownerguid="ea0f3bf0-2843-479b-9b9b-ec30cdf45936"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">daily</AUni> -<AUni ws="es">cada.día</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f5edd8da-f385-4f6b-ba31-a6586dc5a982" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a9befe97-e7a8-4ceb-ba86-54cccacd9322"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aboga:du</AUni> -<AUni ws="qvm-x-acl">aboga:du; aboga:du; aboga:do</AUni> -<AUni ws="qvm-x-akh">aboga:du</AUni> -<AUni ws="qvm-x-akl">aboga:du; aboga:du; aboga:do</AUni> -<AUni ws="qvm-x-ame">aboga:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+abogado</AUni> -<AUni ws="qvm-x-acl">+abogado</AUni> -<AUni ws="qvm-x-akh">+abogado</AUni> -<AUni ws="qvm-x-akl">+abogado</AUni> -<AUni ws="qvm-x-ame">+abogado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.619" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e832d969-21f5-4576-b3ed-3d8dc3d0e226" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+abogado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="87a14096-4aab-4c54-bd02-2f1b124ecf31" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="61772429-f8aa-474e-b80a-e34ecfdbbe6d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +abogado 
\entryTyp root 
\gENG lawyer 
\gSPN abogado 
\e +abogado 
\c N0 
\ach aboga:du 
\akh aboga:du 
\acl aboga:du / _# 
\acl aboga:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl aboga:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl aboga:du / _# 
\akl aboga:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl aboga:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame aboga:du</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a9c20a59-9f8d-4543-8717-0774299aedc4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ycu; yca</AUni> -<AUni ws="qvm-x-acl">ycu; yco; yca</AUni> -<AUni ws="qvm-x-akh">yku; yka</AUni> -<AUni ws="qvm-x-akl">yku; yko; yka</AUni> -<AUni ws="qvm-x-ame">yku; yka</AUni> -</Custom> -<AlternateForms> -<objsur guid="fc004e24-beda-4811-8754-1096429c35bb" t="o" /> -<objsur guid="5357d99a-3a06-4692-a3f7-761e7328e45a" t="o" /> -</AlternateForms> -<DateCreated val="2022-9-23 18:26:20.518" /> -<DateModified val="2022-10-15 16:9:24.962" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d47785a7-bced-4085-a334-1ed6f848c530" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">IN1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="382e9c39-4806-4765-a8a2-5ecb5ad0e3bd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d6918f9b-be9f-4049-bf76-21a1597e24db" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx IN1 
\entryTyp suffix 
\gENG IN 
\gSPN AF 
\e IN1 
\c V1/V1 V2/V2 
\o 040 
\mp PMlowered 
\ach ycu 
\ach yca morphlowered 
\akh yku 
\akh yka morphlowered 
\acl ycu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl yco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl yca morphlowered 
\akl yku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yka morphlowered 
\ame yku 
\ame yka morphlowered 
\mp +foreshortens 
\mcc IN1 / ~_ IN1 
\mcc IN1 / ~_ [just] INF 
\mcc IN1 1O / ~_ INF 
\mcc IN1 / *rura ~_ NMN 
\mcc IN1 / ~_ NMN [case] 
\mcc IN1 / *ka ~_ NMN 
\mcc IN1 / ~_ HELP</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a9c4f4e2-a920-42ce-8481-96be634806b0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsa</AUni> -<AUni ws="qvm-x-acl">tsa</AUni> -<AUni ws="qvm-x-akh">tsa</AUni> -<AUni ws="qvm-x-akl">tsa</AUni> -<AUni ws="qvm-x-ame">tsa</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.495" /> -<DateModified val="2022-10-16 14:59:19.166" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="2" /> -<LexemeForm> -<objsur guid="71365c2a-e254-43af-89b3-e3974a992188" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">CAUSBE2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6c33f89d-3f7a-4bad-b071-ac31d875398c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="faf84c2f-3b02-44e1-be92-077199cdddf9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx CAUSBE2 
\entryTyp suffix 
\gENG CAUSBE 
\gSPN CAUSER 
\e CAUSBE2 
\c N0/V1 N0/V2 
\ach tsa 
\akh tsa 
\acl tsa 
\akl tsa 
\ame tsa 
\o 000 
\mcc CAUSBE2 / [TakeCAUSBE2] ..._ 
\mcc CAUSBE2 / ~_ ADV 
\mcc CAUSBE2 / *huk JUST2.C ~_ 
\mcc CAUSBE2 / *qara.n ~_ INF.noI ADV1 
\mcc CAUSBE2 / INF ~_ | force CAUSBE3 
\mcc CAUSBE2 / *may ~_</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a9c5103b-3255-4597-bce1-1d4ddfeb3cd4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">juez</AUni> -<AUni ws="qvm-x-acl">juez</AUni> -<AUni ws="qvm-x-akh">juez</AUni> -<AUni ws="qvm-x-akl">juez</AUni> -<AUni ws="qvm-x-ame">juez</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+juez</AUni> -<AUni ws="qvm-x-acl">+juez</AUni> -<AUni ws="qvm-x-akh">+juez</AUni> -<AUni ws="qvm-x-akl">+juez</AUni> -<AUni ws="qvm-x-ame">+juez</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.890" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="57fa74f8-4cbd-4586-a78f-2ed5dcc91fac" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+juez</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ca8cc796-3f7c-42e4-8921-e0e42745e7c0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="803ed57c-d65c-4d9d-b536-2576e7dc33d7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +juez 
\entryTyp root 
\gENG judge 
\gSPN juez 
\e +juez 
\c N0 
\mp AlwaysLow 
\ach juez 
\akh juez 
\acl juez 
\akl juez 
\ame juez 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="a9c67c41-699d-4857-9dbb-ec3ab8a5a28b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aprovecha</AUni> -<AUni ws="qvm-x-acl">aprovecha</AUni> -<AUni ws="qvm-x-akh">aprovecha</AUni> -<AUni ws="qvm-x-akl">aprovecha</AUni> -<AUni ws="qvm-x-ame">aprovecha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+aprovechar.1</AUni> -<AUni ws="qvm-x-acl">+aprovechar.1</AUni> -<AUni ws="qvm-x-akh">+aprovechar.1</AUni> -<AUni ws="qvm-x-akl">+aprovechar.1</AUni> -<AUni ws="qvm-x-ame">+aprovechar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.810" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5a76e620-f948-4742-bb8c-56e959815eea" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+aprovechar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0ef67223-735f-4593-bee5-1aacd8a1383e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d5d6ce68-24e3-427c-a989-744cdd293d67" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +aprovechar.1 
\entryTyp root 
\gENG take.advantage 
\gSPN aprovechar 
\e +aprovechar.1 
\c V2 
\ach aprovecha 
\akh aprovecha 
\acl aprovecha 
\akl aprovecha 
\ame aprovecha</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a9c69eee-967c-4813-bd7e-5fc322444f92" ownerguid="b38bc4a9-c22f-41a2-9c9b-5d48f8c15954"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="a9c8a6f8-134c-4fec-832d-b8bfcae2b5c8"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">mayikiqa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="a9c8abf8-38d6-4ba5-b924-4852424261f0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lantu</AUni> -<AUni ws="qvm-x-acl">lantu; lanto</AUni> -<AUni ws="qvm-x-akh">lantu</AUni> -<AUni ws="qvm-x-akl">lantu; lanto</AUni> -<AUni ws="qvm-x-ame">lantu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llantu.v</AUni> -<AUni ws="qvm-x-acl">*llantu.v</AUni> -<AUni ws="qvm-x-akh">*llantu.v</AUni> -<AUni ws="qvm-x-akl">*llantu.v</AUni> -<AUni ws="qvm-x-ame">*llantu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.144" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="67981488-5c2f-4a7b-810c-5cae50bb8d40" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llantu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f05e0b54-7c1c-4e13-a144-b7aaaf7cb178" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="db0ce23d-6ae6-4b32-a257-0547443bb8cf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llantu.v 
\entryTyp root 
\gENG be.in.shade 
\gSPN estar.en.sombra 
\e *llantu.v 
\c V2 
\ach lantu 
\akh lantu 
\acl lantu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lanto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lantu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lanto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lantu 
\mcc *llantu.v / ~_ 1O 3 
\mcc *llantu.v / ~_ [y]</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a9cb94e6-fa83-471e-9217-9169e48bfbe2" ownerguid="d7861def-70c1-470f-bca6-8230cbbaa3e9"> -<ExampleWords> -<AUni ws="en">peek, peep, take a peep, sneak a look at, snoop around, spy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to looking at something secretly?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a9ccc8c3-5184-4861-b31e-6cc6f617e54d" ownerguid="936d53eb-31ce-419c-af43-618117739fa4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="a9ce4725-c525-4f41-a1ef-1c25098cc881" ownerguid="0e590da7-c027-42e0-b580-f65686cee461"> -<ExampleWords> -<AUni ws="en">surprise (n), amazement, astonishment, awe (n), incredulity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of surprise?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a9d0dc64-260e-409a-89d6-abded02550c6" ownerguid="a6f2f005-4706-4048-9599-bc5108a31077"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="a9d739fc-2e79-47a4-9251-bdd1da3cc9bc" ownerguid="3fb3baf7-1c60-499f-a226-260eb82a89a7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">remove.teeth</AUni> -<AUni ws="es">desmolar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="04c398d9-e3d4-4a40-9002-5ba8b7fbb9e1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="a9d85485-6e9f-46dc-8709-c6a256eab1a7" ownerguid="b6006567-8e06-4e00-8a8a-5ed9654be26d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="a9daa13e-716e-40fc-ac27-eaccfa7f70c7" ownerguid="dd235928-9ba3-44d3-b41c-fae0183f9756"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="a9db2851-6ec1-43c5-89df-c27ea6f2b7a6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gasapa</AUni> -<AUni ws="qvm-x-acl">gasapa</AUni> -<AUni ws="qvm-x-akh">qasapa</AUni> -<AUni ws="qvm-x-akl">qasapa</AUni> -<AUni ws="qvm-x-ame">qasapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qasapa</AUni> -<AUni ws="qvm-x-acl">*qasapa</AUni> -<AUni ws="qvm-x-akh">*qasapa</AUni> -<AUni ws="qvm-x-akl">*qasapa</AUni> -<AUni ws="qvm-x-ame">*qasapa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.124" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="97d11f10-1e2a-43f3-af5f-f08fb9734f33" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qasapa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d9cff43e-4df9-480e-bc8f-4b80984a2818" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="56726870-1e9a-4d60-9a15-fece8b1115f4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qasapa 
\entryTyp root 
\gENG frost 
\gSPN ? 
\e *qasapa 
\c N0 
\ach gasapa 
\akh qasapa 
\acl gasapa 
\akl qasapa 
\ame qasapa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="a9db2f20-5fed-4f5c-bd20-1f1597a1165a" ownerguid="9d6cbe74-93d6-41fb-b7e2-cc30adb28187"> -<ExampleWords> -<AUni ws="en">fly up, soar, shoot up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to moving up into the air quickly?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a9db508e-5624-4f6c-b662-6b8e7765a1ef" ownerguid="2c04fa05-eebf-4331-b392-23f795c32382"> -<ExampleWords> -<AUni ws="en">alone, by yourself, sole</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to being by yourself?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a9dd4f2d-6697-44ce-b819-cccf7e979272" ownerguid="eb81c747-0ebf-451c-8969-8474a94a4d47"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="a9e26764-f8ec-4ca0-b89a-fdac5433a53d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lo:cu</AUni> -<AUni ws="qvm-x-acl">lo:cu; lo:co</AUni> -<AUni ws="qvm-x-akh">lo:cu</AUni> -<AUni ws="qvm-x-akl">lo:cu; lo:co</AUni> -<AUni ws="qvm-x-ame">lo:cu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+loco.v</AUni> -<AUni ws="qvm-x-acl">+loco.v</AUni> -<AUni ws="qvm-x-akh">+loco.v</AUni> -<AUni ws="qvm-x-akl">+loco.v</AUni> -<AUni ws="qvm-x-ame">+loco.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.112" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="55fbb5bd-3073-4482-ac27-4315ac1be299" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+loco.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="648fd45b-d648-415a-8048-dee1edb8cbfe" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6127ac0e-0b9e-4780-9578-7762dd91335b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +loco.v 
\entryTyp root 
\gENG crazy 
\gSPN loco 
\e +loco.v 
\c V1 
\ach lo:cu 
\akh lo:cu 
\acl lo:cu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lo:co +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lo:cu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lo:co +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lo:cu 
\i 2KI 9.20 Paynogmi löcuypa löcur cärrutapis manijaycämun. 
\mcc +loco.v / ~_ PL PRF</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="a9e36fe6-3ef1-40d6-80ad-f0d55a094c35" ownerguid="9cfb58a8-8ccb-4ad7-8ffe-8318781beeb9"> -<Form> -<AUni ws="qvm-x-ach">ranra</AUni> -<AUni ws="qvm-x-acl">ranra</AUni> -<AUni ws="qvm-x-akh">ranra</AUni> -<AUni ws="qvm-x-akl">ranra</AUni> -<AUni ws="qvm-x-ame">ranra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="a9ec118e-de13-43a7-8456-342c468f7dc2" ownerguid="b6a40216-fe93-4b0f-b85b-5622327031d0"> -<ExampleWords> -<AUni ws="en">crack, break, smash</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words are used for opening an egg?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="a9ee3154-2a23-4507-9ce8-ae1f0bc56274" ownerguid="fb1cc66b-80da-42fa-8c0c-2ee3e0fe0089"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="a9ee4824-4937-4ae7-8764-72f24517ee26" ownerguid="bf930956-33c5-4d06-b6b4-59a555607478"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="a9f045ea-e8db-448d-bb16-fa4fe27e3e9e" ownerguid="f0a3d251-8e38-4a25-8292-29ed6dc06c82"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">autopsy</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="18c4b5d8-10e8-48d0-ae10-254baf852348" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="a9f5ead1-80d8-4344-8860-f035cb403617"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jicha</AUni> -<AUni ws="qvm-x-acl">jicha</AUni> -<AUni ws="qvm-x-akh">jicha</AUni> -<AUni ws="qvm-x-akl">jicha</AUni> -<AUni ws="qvm-x-ame">hicha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hitra.v</AUni> -<AUni ws="qvm-x-acl">*hitra.v</AUni> -<AUni ws="qvm-x-akh">*hitra.v</AUni> -<AUni ws="qvm-x-akl">*hitra.v</AUni> -<AUni ws="qvm-x-ame">*hitra.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.731" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="22b8b918-ebf8-40ac-acd3-2d7849e29907" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hitra.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9e5df875-3579-4c7e-89fe-38b5f2a1fe51" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2edc2e03-06c8-4ca5-93fd-ad7a51c7a393" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hitra.v 
\entryTyp root 
\gENG spill 
\gSPN derramar 
\e *hitra.v 
\c V2 
\ach jicha 
\akh jicha 
\acl jicha 
\akl jicha 
\ame hicha</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="a9fabfe2-86e8-4290-9f6a-d36426c406d6" ownerguid="6855bdcb-b4a4-4a56-be58-e070b460d075"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="a9fbc056-3134-41af-baf4-9f63fa5bd5ae" ownerguid="50ab3705-a81e-4fcc-b3ae-95c075966f69"> -<Abbreviation> -<AUni ws="en">1.3.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.963" /> -<DateModified val="2022-9-23 16:55:7.963" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to drops of water and what they do.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Drip</AUni> -</Name> -<Questions> -<objsur guid="bdaf96fa-5be7-4a5a-9a7a-b64f9055775c" t="o" /> -<objsur guid="2b5e5cf3-4d68-4786-9dc3-ca04bc49b70d" t="o" /> -<objsur guid="da1d2c1f-2758-46a7-8fba-cf176602d7b9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="a9fd5daa-0b30-4298-975d-f5e0cbd5e191" ownerguid="95f05398-93c8-4a32-a29a-ee455bdc3217"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">town</AUni> -<AUni ws="es">pueblo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f87af9c0-e238-4649-8df0-ab17b19c3572" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="a9fdb9ca-549a-4ed1-b384-c6c83542d686" ownerguid="2855cda6-a031-46aa-bf3f-718d94374d46"> -<ExampleWords> -<AUni ws="en">protest (n), demonstration, march, rally, riot, unrest, civil disobedience, peaceful demonstration, placard</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to when many people protest in a group?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="a9fde0ed-6869-4458-a354-d1fee72d43d6" ownerguid="c029eed8-2ec0-4f6f-aa22-3a066bb23ea6"> -<ExampleWords> -<AUni ws="en">first, second, third, firstly, secondly, thirdly, in the first/second/third place, first of all, to begin with, to start with, finally, lastly, to conclude, in conclusion, last but not least</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that you are adding another in a list of thoughts?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="a9fe3347-12ae-4624-b55e-45ea42cdbf9b" ownerguid="811e8c93-d97a-4aab-bd67-268b7783ff11"> -<Abbreviation> -<AUni ws="en">6.2.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.426" /> -<DateModified val="2022-9-23 16:55:8.426" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to trimming plants.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Trim plants</AUni> -</Name> -<Questions> -<objsur guid="9ede575a-5619-481d-bae8-cbdd484153ec" t="o" /> -<objsur guid="56c4019f-f749-4717-ba94-d6474ece68a0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="aa00559b-89ee-4e86-af66-6fc68058d08c" ownerguid="267e008e-547d-458b-b216-680ceab68b5f"> -<Form> -<AUni ws="qvm-x-ach">sagräda</AUni> -<AUni ws="qvm-x-acl">sagräda</AUni> -<AUni ws="qvm-x-akh">sagräda</AUni> -<AUni ws="qvm-x-akl">sagräda</AUni> -<AUni ws="qvm-x-ame">sagräda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="aa045f61-cc5b-4a46-a6c8-9a0e7a13823b" ownerguid="64a6ff62-6b62-49fc-9f4a-34bcb4949523"> -<Form> -<AUni ws="qvm-x-ach">cuchi</AUni> -<AUni ws="qvm-x-acl">cuchi; cuchi; cuche</AUni> -<AUni ws="qvm-x-akh">kuchi</AUni> -<AUni ws="qvm-x-akl">kuchi; kuchi; kuche</AUni> -<AUni ws="qvm-x-ame">kuchi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="aa068512-8259-461b-90ee-2d09d74f3946" ownerguid="3a4ced6d-61c4-41cf-ac8a-02ba84fa9c64"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="aa08d5ca-3ea8-4e38-8d52-95e1146b6496" ownerguid="70c6dcab-db0d-45f4-aa98-712513bffa4a"> -<Form> -<AUni ws="qvm-x-ach">salpi</AUni> -<AUni ws="qvm-x-acl">salpi; salpe</AUni> -<AUni ws="qvm-x-akh">salpi</AUni> -<AUni ws="qvm-x-akl">salpi; salpe</AUni> -<AUni ws="qvm-x-ame">salpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="aa0a352b-8de8-4686-9247-a6b084cf154f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">upsha</AUni> -<AUni ws="qvm-x-acl">upsha</AUni> -<AUni ws="qvm-x-akh">upsha</AUni> -<AUni ws="qvm-x-akl">upsha</AUni> -<AUni ws="qvm-x-ame">upsha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*upsha</AUni> -<AUni ws="qvm-x-acl">*upsha</AUni> -<AUni ws="qvm-x-akh">*upsha</AUni> -<AUni ws="qvm-x-akl">*upsha</AUni> -<AUni ws="qvm-x-ame">*upsha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.251" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="94bd3921-26b4-4c16-9783-a85a29d6ca7f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*upsha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4f67afb1-1556-4e4b-a92a-1dc7a99a8cad" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a92d776c-04d2-465a-a42b-8bc330c6d2f8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *upsha 
\entryTyp root 
\gENG peck 
\gSPN picotear 
\e *upsha 
\c V2 
\ach upsha 
\akh upsha 
\acl upsha 
\akl upsha 
\ame upsha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="aa0cf39b-b6de-4142-902e-fddeaa4771fa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">días; di:as</AUni> -<AUni ws="qvm-x-acl">días; di:as</AUni> -<AUni ws="qvm-x-akh">días; di:as</AUni> -<AUni ws="qvm-x-akl">días; di:as</AUni> -<AUni ws="qvm-x-ame">días; di:as</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+días</AUni> -<AUni ws="qvm-x-acl">+días</AUni> -<AUni ws="qvm-x-akh">+días</AUni> -<AUni ws="qvm-x-akl">+días</AUni> -<AUni ws="qvm-x-ame">+días</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.426" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ca033c05-978d-4618-8a90-19b2f08cb45f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+días</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9e7d1d54-7e40-4d49-be76-e8a24a027a9b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7a0afa51-79fd-4f8e-b9af-63a9d7fa540f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +días 
\entryTyp root 
\gENG day 
\gSPN días 
\e +días 
\c N0 
\mp +FinalC 
\ach días / _# 
\ach di:as / ~_# 
\akh días / _# 
\akh di:as / ~_# 
\acl días / _# 
\acl di:as / ~_# 
\akl días / _# 
\akl di:as / ~_# 
\ame días / _# 
\ame di:as / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="aa0f165d-3013-4a0c-b68c-14ea317013f9" ownerguid="5446b5cf-f05a-4bb2-89eb-ce63e27040f3"> -<Abbreviation> -<AUni ws="en">4.2.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.212" /> -<DateModified val="2022-9-23 16:55:8.212" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to composing music.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Compose music</AUni> -</Name> -<Questions> -<objsur guid="9cdb5977-cab6-416b-bdc4-cab0c7a4473d" t="o" /> -<objsur guid="88a8c1e4-2d67-481c-a8cd-97343f705fa2" t="o" /> -<objsur guid="b0566320-6bf4-49f6-9d78-e30065d998e8" t="o" /> -<objsur guid="05eca2c5-c92e-4558-85f7-4b21d185f09b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="aa1074de-6672-4fdd-8445-79cb5b2d4db7" ownerguid="c4f7bca1-1277-4895-b9ea-0c681e6b8135"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="aa17c574-4693-4a39-b446-e493abcebfea" ownerguid="b9c1d2d0-47b4-4691-916b-de4bf47faed8"> -<Form> -<AUni ws="qvm-x-ach">monumentu; monumento</AUni> -<AUni ws="qvm-x-acl">monumentu; monumentu; monumento</AUni> -<AUni ws="qvm-x-akh">monumentu; monumento</AUni> -<AUni ws="qvm-x-akl">monumentu; monumentu; monumento</AUni> -<AUni ws="qvm-x-ame">monumentu; monumento</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="aa20d222-c9c2-4910-a126-70931460bddb" ownerguid="748f375c-4619-4601-bf58-56f51e624dbc"> -<Form> -<AUni ws="qvm-x-ach">volca</AUni> -<AUni ws="qvm-x-acl">volca</AUni> -<AUni ws="qvm-x-akh">volca</AUni> -<AUni ws="qvm-x-akl">volca</AUni> -<AUni ws="qvm-x-ame">volca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="aa21368d-3a48-4b5f-9a62-7c93581c3257" ownerguid="47ed6c39-b728-4ae7-be7c-c45c714c3153"> -<ExampleWords> -<AUni ws="en">threshing floor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) Where is grain threshed?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="aa23f4a2-4f66-458c-8ac9-e19fa0b0b6d3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waugui</AUni> -<AUni ws="qvm-x-acl">waugui; waugui; waugue</AUni> -<AUni ws="qvm-x-akh">wawqi</AUni> -<AUni ws="qvm-x-akl">wawqi; wawqi; wawqe</AUni> -<AUni ws="qvm-x-ame">wawqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wawqi</AUni> -<AUni ws="qvm-x-acl">*wawqi</AUni> -<AUni ws="qvm-x-akh">*wawqi</AUni> -<AUni ws="qvm-x-akl">*wawqi</AUni> -<AUni ws="qvm-x-ame">*wawqi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.597" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3ff6f18e-1e5e-4db8-9fec-fb023ac45889" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wawqi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fd699cc6-27fd-4838-ae7c-e1a0e888dc2b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dc79296a-a2ce-475c-846f-a6f15f685b74" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wawqi 
\entryTyp root 
\gENG brother 
\gSPN hermano 
\e *wawqi 
\c N0 
\mp +FinalI 
\ach waugui 
\akh wawqi 
\acl waugui / _# 
\acl waugui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl waugue +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wawqi / _# 
\akl wawqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl wawqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wawqi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="aa2759b9-382c-4224-8377-5f8f7796cffb" ownerguid="2c04fa05-eebf-4331-b392-23f795c32382"> -<ExampleWords> -<AUni ws="en">once, one time, single time, one-off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words indicate that something happens or is done one time?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="aa27707c-8397-46f1-8c3f-e0958db547b2" ownerguid="f0fa94d2-410b-4437-9250-35adfeb0fdfc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">launch</AUni> -<AUni ws="es">lanzamiento</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="363d94ce-52bd-4c68-ba70-a1682b76ada7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="aa2994b2-b172-49d6-8c75-aa5e4e902f7c" ownerguid="6f6f27a4-8095-405a-a15a-a22794bfb9c1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="aa29986e-d3ad-4b1d-bffb-d4afcdb5e586" ownerguid="90f36f80-4da7-46a9-9c27-912cadb871d1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">side</AUni> -<AUni ws="es">lado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="59e51f54-9b81-48bd-9a18-ece801920787" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="aa2b19eb-c7e5-4540-8092-45205607715f" ownerguid="262fc4ae-7735-465b-934b-2125d95de147"> -<ExampleWords> -<AUni ws="en">not begrudge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to not feeling jealous?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="aa2b547c-2c82-4ce0-a1b3-35fa809d666c" ownerguid="f8863b67-b911-4334-a1b6-6eb913bd14af"> -<Abbreviation> -<AUni ws="en">8.2.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.589" /> -<DateModified val="2022-9-23 16:55:8.589" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being narrow.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>81D Narrow, Wide</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Narrow</AUni> -</Name> -<Questions> -<objsur guid="90211e97-225d-4073-ac42-f26538d5539f" t="o" /> -<objsur guid="a64af191-9ba3-4ead-93c0-88c6af0a6451" t="o" /> -<objsur guid="ea22ee89-598f-4bc3-a4b1-8485b0f004b9" t="o" /> -<objsur guid="889a7f72-0d2f-43c4-94fd-ee56b5e9ec09" t="o" /> -<objsur guid="e50c6662-039e-42db-8b7d-3108ba0563d2" t="o" /> -<objsur guid="93bfb27c-4873-4a66-93ae-233ac517f2c2" t="o" /> -<objsur guid="61090538-c388-4fb7-b0c9-a76755033108" t="o" /> -<objsur guid="19723178-8406-4bf2-bd99-60fcc454d383" t="o" /> -<objsur guid="4068b06d-820d-448b-8fa7-d36006fba8b7" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="aa30fd65-3da9-4370-8bad-c0a8d76f6b01"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lantu</AUni> -<AUni ws="qvm-x-acl">lantu; lantu; lanto</AUni> -<AUni ws="qvm-x-akh">lantu</AUni> -<AUni ws="qvm-x-akl">lantu; lantu; lanto</AUni> -<AUni ws="qvm-x-ame">lantu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llantu.n</AUni> -<AUni ws="qvm-x-acl">*llantu.n</AUni> -<AUni ws="qvm-x-akh">*llantu.n</AUni> -<AUni ws="qvm-x-akl">*llantu.n</AUni> -<AUni ws="qvm-x-ame">*llantu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.142" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8cf81714-6195-4e67-9374-0cf9db5c880c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llantu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9a3caede-cd72-4b9f-8383-8dc826d5b0a1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fc59d6db-b10b-4d1b-9770-fce6d09f2306" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llantu.n 
\entryTyp root 
\gENG shade 
\gSPN sombra 
\e *llantu.n 
\c N0 
\ach lantu 
\akh lantu 
\acl lantu / _# 
\acl lantu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lanto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lantu / _# 
\akl lantu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lanto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lantu 
\mcc *llantu.n / ~_ [pa] YET2</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="aa327f89-b66d-418b-bfd9-5c353d6f61af" ownerguid="9a95e6e0-f61a-49c9-b88b-2eae15790df8"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="aa3478a3-c7c8-45eb-8ee8-b25f57a7d1de" ownerguid="12f12bf3-f232-4477-bf39-d91b7f55c2c3"> -<ExampleWords> -<AUni ws="en">increasingly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something happening more often?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="aa3493ca-544b-4911-ad02-a95b4568f09c" ownerguid="ba38505d-9033-4eaf-ac46-8a5e8d4f335a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoInflAffixTemplate" guid="aa34c6e1-fa72-4d69-a2fb-d4a4c0675dc6" ownerguid="85ffb381-0567-4202-8640-53cbaec77e45"> -<Disabled val="False" /> -<Final val="True" /> -<SuffixSlots> -<objsur guid="b5380f6d-8ec4-4a58-806f-5e3caeadb9df" t="r" /> -<objsur guid="769c8d34-7ae5-450b-9e9b-f62d75e5f18a" t="r" /> -</SuffixSlots> -</rt> -<rt class="MoStemAllomorph" guid="aa36a766-7a7a-4163-b9d4-c4fd68aa4701" ownerguid="5db3e0e5-c02d-4c1d-a9c0-b6419adf76d6"> -<Form> -<AUni ws="qvm-x-ach">ishca</AUni> -<AUni ws="qvm-x-acl">ishca</AUni> -<AUni ws="qvm-x-akh">ishka</AUni> -<AUni ws="qvm-x-akl">ishka</AUni> -<AUni ws="qvm-x-ame">ishka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="aa37c442-81f0-4ad3-bbf0-d0f88089492b" ownerguid="8a4f1603-4b63-4a10-8fda-fa6368a4d676"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="aa3e3390-fc99-4d7d-ad6e-2096e69d44f5" ownerguid="01c0fabf-e23c-49d4-8b4e-5b36ad316d50"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">waga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">waga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">waqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">waqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">waqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d100a60e-40fa-45d4-8643-92375fc3d00c" t="r" /> -</Morph> -<Msa> -<objsur guid="dae1adcc-bc09-4a2e-8fca-8dd1fcb23810" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="aa3f5892-3c1f-4394-b683-b72055fde926" ownerguid="737ac182-6676-4e3b-bae7-523199291521"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">penis</AUni> -<AUni ws="es">pene</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="38e35cbd-321d-4d39-ae68-50898da5a86f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="aa3f7eae-01c2-4fb6-85b1-bf00f119ae38"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alish</AUni> -<AUni ws="qvm-x-acl">alish</AUni> -<AUni ws="qvm-x-akh">alish</AUni> -<AUni ws="qvm-x-akl">alish</AUni> -<AUni ws="qvm-x-ame">alish</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*allish</AUni> -<AUni ws="qvm-x-acl">*allish</AUni> -<AUni ws="qvm-x-akh">*allish</AUni> -<AUni ws="qvm-x-akl">*allish</AUni> -<AUni ws="qvm-x-ame">*allish</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.739" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e8cd344e-17ae-475f-a09b-6525f60bb5f6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*allish</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="63786f9d-9f35-489c-9abe-c82cf5a2f3ad" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7a652915-c2f6-4b48-bba0-92702aebb20e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *allish 
\entryTyp root 
\gENG 
\gSPN 
\e *allish 
\c N0 
\mp +FinalC 
\ach alish 
\akh alish 
\acl alish 
\akl alish 
\ame alish 
\mcc *allish / _SUP 
\i alishnin, "lo mejor"</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="aa40eb75-f625-4277-9fa4-1eac2452325b" ownerguid="314520c6-a372-417e-b05e-7e2f52faa611"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Segpi pantalón puriycan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="aa4367be-e5b3-4fd9-9ef1-4abaf47be85c" ownerguid="1cbd3bd0-ca9e-4a65-a993-b73f723448f8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="aa44afe8-c21a-450e-85cc-df5e0067e9af" ownerguid="0fa0be21-2246-40b2-86b1-ca572fe8c16c"> -<ExampleWords> -<AUni ws="en">bore (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a person who is uninteresting?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="aa474518-6822-4631-8d47-4740aa5857e7" ownerguid="a70147b0-d599-4117-8782-105dcb16a7d8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="aa4c1571-41db-490a-ab62-eb648a298ac0" ownerguid="4ae3f90f-5e36-4988-b2d5-c877470dc672"> -<Form> -<AUni ws="qvm-x-ach">cöma</AUni> -<AUni ws="qvm-x-acl">cöma</AUni> -<AUni ws="qvm-x-akh">cöma</AUni> -<AUni ws="qvm-x-akl">cöma</AUni> -<AUni ws="qvm-x-ame">cöma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="aa509a31-3b12-4350-a4f1-5992f8edb52b" ownerguid="0a27d9d1-0f1f-475a-92a2-bbccf5b15f41"> -<ExampleWords> -<AUni ws="en">appetite, big appetite, small appetite</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to how much you can eat or want to eat?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="aa51dff6-e5c7-4506-bd13-32e255f6061f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">libra</AUni> -<AUni ws="qvm-x-acl">libra</AUni> -<AUni ws="qvm-x-akh">libra</AUni> -<AUni ws="qvm-x-akl">libra</AUni> -<AUni ws="qvm-x-ame">libra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+libra</AUni> -<AUni ws="qvm-x-acl">+libra</AUni> -<AUni ws="qvm-x-akh">+libra</AUni> -<AUni ws="qvm-x-akl">+libra</AUni> -<AUni ws="qvm-x-ame">+libra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.84" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5e5e1c20-560f-41d0-9ee6-e7db0978eebb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+libra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bd7907bb-1435-4291-bfa7-2f10417a0be4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5d82b838-f0cf-43f2-ab08-9329f2b6d7ae" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +libra 
\entryTyp root 
\gENG pound 
\gSPN libra 
\e +libra 
\c N0 
\ach libra 
\akh libra 
\acl libra 
\akl libra 
\ame libra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="aa5658da-8926-4519-83a5-d451dc5a6b49" ownerguid="1f608e18-958e-4bb3-a977-04879fb5acd5"> -<Abbreviation> -<AUni ws="en">5.2.3.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.317" /> -<DateModified val="2022-9-23 16:55:8.317" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to food made from eggs.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Egg dishes</AUni> -</Name> -<Questions> -<objsur guid="7226eea3-b798-4b9b-b3b2-9a78bd05a813" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="aa57936d-f8a9-4603-8c3d-27abccd13531" ownerguid="63403699-07c1-43f3-a47c-069d6e4316e5"> -<Abbreviation> -<AUni ws="en">1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to nature and the environment--the world around us. Include words that refer to how people damage or protect nature.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Nature, environment</AUni> -</Name> -<OcmCodes> -<Uni>318 Environmental Quality</Uni> -</OcmCodes> -<Questions> -<objsur guid="3a859d7f-7496-489d-8029-d3a836b4bee7" t="o" /> -<objsur guid="4606ea7a-e89e-4184-89f6-5fce0274d4b4" t="o" /> -<objsur guid="1ea93e35-d39b-4eee-8b02-6f3d93b302d0" t="o" /> -<objsur guid="75ab1316-4fde-4636-9862-b3621c925dd7" t="o" /> -<objsur guid="03b16eb1-d079-455a-9469-a1de92018b39" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="f4ed1712-c072-4213-b89d-eb3a9be233b2" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="aa59f93b-742d-49b8-a57e-b275a771fe00" ownerguid="cbc0a8f5-9cba-41d2-a7e5-565fbf09c8c4"> -<ExampleWords> -<AUni ws="en">laugh, laughter, laugh at (something), have a laugh</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to laughing?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="aa5b0cca-0b69-4d6b-b0cd-735d8b4cef34" ownerguid="fd87963b-2365-4a15-9044-dbce4701cf89"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="aa5c83a2-9fda-42c5-b047-7190883298e3" ownerguid="2c561345-a734-4b43-9531-b9d4fe4c280a"> -<Form> -<AUni ws="qvm-x-ach">pichumientu</AUni> -<AUni ws="qvm-x-acl">pichumientu; pichumientu; pichumiento</AUni> -<AUni ws="qvm-x-akh">pichumientu</AUni> -<AUni ws="qvm-x-akl">pichumientu; pichumientu; pichumiento</AUni> -<AUni ws="qvm-x-ame">pichumientu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="aa5e6ff6-c9fa-4974-9715-b90cbb5e8420" ownerguid="5d8cae53-6f77-494b-84d0-189c29205104"> -<Form> -<AUni ws="qvm-x-ach">sinö</AUni> -<AUni ws="qvm-x-acl">sinö</AUni> -<AUni ws="qvm-x-akh">sinö</AUni> -<AUni ws="qvm-x-akl">sinö</AUni> -<AUni ws="qvm-x-ame">sinö</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="aa6229c4-4f3b-40b2-9327-3fe28341f370" ownerguid="a45ac6c1-c929-41af-8d66-92064af39619"> -<Form> -<AUni ws="qvm-x-ach">sementera</AUni> -<AUni ws="qvm-x-acl">sementera</AUni> -<AUni ws="qvm-x-akh">sementera</AUni> -<AUni ws="qvm-x-akl">sementera</AUni> -<AUni ws="qvm-x-ame">sementera</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="aa64916d-be58-4591-9bd3-97cd0615fd54"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">utiliza</AUni> -<AUni ws="qvm-x-acl">utiliza</AUni> -<AUni ws="qvm-x-akh">utiliza</AUni> -<AUni ws="qvm-x-akl">utiliza</AUni> -<AUni ws="qvm-x-ame">utiliza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+utilizar</AUni> -<AUni ws="qvm-x-acl">+utilizar</AUni> -<AUni ws="qvm-x-akh">+utilizar</AUni> -<AUni ws="qvm-x-akl">+utilizar</AUni> -<AUni ws="qvm-x-ame">+utilizar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.302" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="17259862-8f6a-4167-b1bc-10c7bbc35e9f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+utilizar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c3da4481-0321-4843-8ca6-04f7457cb9b3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4d19e80e-3377-4d8f-a9f4-bf94ea561563" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +utilizar 
\entryTyp root 
\gENG use 
\gSPN utilizar 
\e +utilizar 
\c V2 
\ach utiliza 
\akh utiliza 
\acl utiliza 
\akl utiliza 
\ame utiliza</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiGloss" guid="aa65923e-3cb0-45d4-9489-6efbc2a82f74" ownerguid="5fdf723e-9f43-42d6-a717-cf395f74b1a5"> -<Form> -<AUni ws="es">*yapay</AUni> -</Form> -</rt> -<rt class="LexEntry" guid="aa66edd0-122b-489e-80ff-b6bca2de96ce"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">suje:tu</AUni> -<AUni ws="qvm-x-acl">suje:tu; suje:tu; suje:to</AUni> -<AUni ws="qvm-x-akh">suje:tu</AUni> -<AUni ws="qvm-x-akl">suje:tu; suje:tu; suje:to</AUni> -<AUni ws="qvm-x-ame">suje:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sujeto</AUni> -<AUni ws="qvm-x-acl">+sujeto</AUni> -<AUni ws="qvm-x-akh">+sujeto</AUni> -<AUni ws="qvm-x-akl">+sujeto</AUni> -<AUni ws="qvm-x-ame">+sujeto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.744" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="90a1c9a1-00d2-4403-97f8-b20f80647d19" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sujeto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e6f45b72-7b57-43fa-a30e-7f7195fe88a7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6f5c0f2c-6ecd-426b-8e81-dfed65726db4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sujeto 
\entryTyp root 
\gENG subject 
\gSPN sujeto 
\e +sujeto 
\c N0 
\ach suje:tu 
\akh suje:tu 
\acl suje:tu / _# 
\acl suje:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl suje:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl suje:tu / _# 
\akl suje:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl suje:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame suje:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="aa67d5a4-7c2e-402b-8171-01366e687b44" ownerguid="7efc2786-02ee-469f-81f8-b84514726be1"> -<Form> -<AUni ws="qvm-x-ach">trücha</AUni> -<AUni ws="qvm-x-acl">trücha</AUni> -<AUni ws="qvm-x-akh">trücha</AUni> -<AUni ws="qvm-x-akl">trücha</AUni> -<AUni ws="qvm-x-ame">trücha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="aa70055e-436a-4d4e-a1b0-e9e0cebb14ad"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wawa:</AUni> -<AUni ws="qvm-x-acl">wawa:</AUni> -<AUni ws="qvm-x-akh">wawa:</AUni> -<AUni ws="qvm-x-akl">wawa:</AUni> -<AUni ws="qvm-x-ame">wawa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wawa:</AUni> -<AUni ws="qvm-x-acl">*wawa:</AUni> -<AUni ws="qvm-x-akh">*wawa:</AUni> -<AUni ws="qvm-x-akl">*wawa:</AUni> -<AUni ws="qvm-x-ame">*wawa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.595" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="525431e8-5e69-4c6e-b205-806eaf03f56b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wawa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0390f6fd-d5e0-42ae-b22f-8f7e22e6540c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6f9fbc99-e2a3-4a37-b2b0-cf4672f6c772" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wawa: 
\entryTyp root 
\gENG produce 
\gSPN producir 
\e *wawa: 
\c V1 
\mp +FinalLength 
\ach wawa: +/ _ REF 
\akh wawa: +/ _ REF 
\acl wawa: +/ _ REF 
\akl wawa: +/ _ REF 
\ame wawa: +/ _ REF</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="aa7168be-e1a3-4ca9-8dc3-cc0fd7b5bfa2" ownerguid="7e8288eb-78e7-406e-aba6-b3b9ce712382"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">year</AUni> -<AUni ws="es">año</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1b5b9bbf-3a6f-4db8-851a-e016cd3deb8b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="aa72e5af-be0b-4d6b-909c-6d352c63ad19" ownerguid="41846def-c6ee-4e9a-94cd-4ae5c102eaa6"> -<Form> -<AUni ws="qvm-x-ach">chaqui</AUni> -<AUni ws="qvm-x-acl">chaqui; chaqui; chaque</AUni> -<AUni ws="qvm-x-akh">chaki</AUni> -<AUni ws="qvm-x-akl">chaki; chaki; chake</AUni> -<AUni ws="qvm-x-ame">chaki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="aa734ecb-a6be-4796-b978-74be5b7efc2e" ownerguid="411e2f93-b331-4717-94f1-43dc9151808c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">tocosh</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fec47d37-7710-4b53-b532-7e5b4997356c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoAffixAllomorph" guid="aa748aa0-d1af-450e-92e1-cac14bcd12da" ownerguid="4dd9e1f0-4609-4c62-b4df-b82a35e5594e"> -<Form> -<AUni ws="qvm-x-ach">pag</AUni> -<AUni ws="qvm-x-acl">pag</AUni> -<AUni ws="qvm-x-akh">paq</AUni> -<AUni ws="qvm-x-akl">paq</AUni> -<AUni ws="qvm-x-ame">paq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="aa7d566d-d0eb-4741-95e5-2658bb778e08" ownerguid="e03c889b-8368-4d9f-aac6-5cd3a43b01ca"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="LexExampleSentence" guid="aa81ff59-3351-44cf-a9b4-5c778ff37067" ownerguid="ddf5674f-4460-44fe-bdb0-80f33e9c2229"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ISA 11.6 Tigriwan capshipis juntumi punonga.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="aa8203e4-ecff-4f6d-b9b6-eda8c10f968b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yorag</AUni> -<AUni ws="qvm-x-acl">yorag</AUni> -<AUni ws="qvm-x-akh">yoraq</AUni> -<AUni ws="qvm-x-akl">yoraq</AUni> -<AUni ws="qvm-x-ame">yuraq</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yuraq</AUni> -<AUni ws="qvm-x-acl">*yuraq</AUni> -<AUni ws="qvm-x-akh">*yuraq</AUni> -<AUni ws="qvm-x-akl">*yuraq</AUni> -<AUni ws="qvm-x-ame">*yuraq</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.800" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f4c535ac-999c-41f3-832f-60cbae54910b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yuraq</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9dc23c68-72c8-4499-b7b9-56e31b7ad24b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="41ad2bda-3e91-4cd1-83a5-9a5d873cc29e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yuraq 
\entryTyp root 
\gENG white 
\gSPN blanco 
\e *yuraq 
\c N0 
\mp +FinalC 
\ach yorag 
\akh yoraq 
\acl yorag 
\akl yoraq 
\ame yuraq</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="aa8241a0-5379-4e51-8c33-663491a3bdae" ownerguid="27a558b3-c84b-4d59-894b-53f62204ac8f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.born</AUni> -<AUni ws="es">nacer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="97d97ab2-ed30-4daa-a8de-2e03eb0ab92e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="aa82a014-c85e-403b-b0e8-63569f15f7d9" ownerguid="ba38505d-9033-4eaf-ac46-8a5e8d4f335a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="bc2f46c0-7e5d-44e7-bdcc-4469141dfdf1" t="o" /> -<objsur guid="4a26761d-9620-4a50-a3ac-8c19a7363832" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">help</AUni> -<AUni ws="es">auxilio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aa3493ca-544b-4911-ad02-a95b4568f09c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="aa8585bd-04b0-4f6f-a7a2-e20bc4bd2c46" ownerguid="f4f87192-4abf-42a0-842d-900b74cb6684"> -<Form> -<AUni ws="qvm-x-ach">sacri</AUni> -<AUni ws="qvm-x-acl">sacri; sacre</AUni> -<AUni ws="qvm-x-akh">sakri</AUni> -<AUni ws="qvm-x-akl">sakri; sakre</AUni> -<AUni ws="qvm-x-ame">sakri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="aa86b9d3-33e8-47d2-b571-90c18c624860" ownerguid="734b34e7-9c46-4c9a-9b89-7b5555f499ee"> -<Form> -<AUni ws="qvm-x-ach">däñu</AUni> -<AUni ws="qvm-x-acl">däñu; däñu; däño</AUni> -<AUni ws="qvm-x-akh">däñu</AUni> -<AUni ws="qvm-x-akl">däñu; däñu; däño</AUni> -<AUni ws="qvm-x-ame">däñu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="aa87c23f-f7ba-4973-a774-94e755ef4964"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">prove:chu</AUni> -<AUni ws="qvm-x-acl">prove:chu; prove:chu; prove:cho</AUni> -<AUni ws="qvm-x-akh">prove:chu</AUni> -<AUni ws="qvm-x-akl">prove:chu; prove:chu; prove:cho</AUni> -<AUni ws="qvm-x-ame">prove:chu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+provecho</AUni> -<AUni ws="qvm-x-acl">+provecho</AUni> -<AUni ws="qvm-x-akh">+provecho</AUni> -<AUni ws="qvm-x-akl">+provecho</AUni> -<AUni ws="qvm-x-ame">+provecho</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.950" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="417cca65-5e1b-42f6-85b4-cb5d4da09e4f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+provecho</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="67ecc1e0-a9b9-42cc-9ccb-6a954aa98e21" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7175b798-f9aa-4fbe-b0c7-3d54d34bd505" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +provecho 
\entryTyp root 
\gENG advantage 
\gSPN provecho 
\e +provecho 
\c N0 
\ach prove:chu 
\akh prove:chu 
\acl prove:chu / _# 
\acl prove:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl prove:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl prove:chu / _# 
\akl prove:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl prove:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame prove:chu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="aa88f255-19ba-4273-b65f-e77323348ec3"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">v1</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="aa8ae4da-326c-4446-8d1c-635794db05f5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chagcha</AUni> -<AUni ws="qvm-x-acl">chagcha</AUni> -<AUni ws="qvm-x-akh">chaqcha</AUni> -<AUni ws="qvm-x-akl">chaqcha</AUni> -<AUni ws="qvm-x-ame">chaqcha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*traqtra</AUni> -<AUni ws="qvm-x-acl">*traqtra</AUni> -<AUni ws="qvm-x-akh">*traqtra</AUni> -<AUni ws="qvm-x-akl">*traqtra</AUni> -<AUni ws="qvm-x-ame">*traqtra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.76" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d3c43efa-be26-464d-9f63-153e507538b5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*traqtra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="31609e09-a8f4-4d14-a67d-dacfcce44dbf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="59885225-ab94-4342-a2be-d718279791b4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *traqtra 
\entryTyp root 
\gENG chew.coca 
\gSPN chacchar 
\e *traqtra 
\c V2 
\ach chagcha 
\akh chaqcha 
\acl chagcha 
\akl chaqcha 
\ame chaqcha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="aa8c4239-80ed-41ce-9daa-796bc5580685" ownerguid="b0cdf732-5199-4df9-975a-2190adb4261a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c514d490-871a-41d7-86cd-4b83196be459" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="509bc7d7-9e67-46b7-98a0-ec5fc0c87123" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="aa8d812b-7c13-414a-ad02-a4240d2cef68" ownerguid="2cc624fa-76cb-46ab-87c8-c13c6adb1c72"> -<Abbreviation> -<AUni ws="en">7.2.3.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to moving toward the speaker.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Come</AUni> -</Name> -<Questions> -<objsur guid="cb47b87b-cebe-4f3b-9f44-23d7f93386fe" t="o" /> -<objsur guid="cfe55c81-b450-41e1-90c8-1f3b9bb5d7b6" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="aa8dfd98-df13-4168-a30a-7fe16c13c30e" ownerguid="cfda2dd1-184c-4b49-b95a-a412bdf5b542"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="aa8f939d-8f9f-45b9-87b3-eb4b8e43d93e" ownerguid="0108ee33-63b3-4d4c-8937-4bbce4d62898"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">respond</AUni> -<AUni ws="es">responder</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="27d416a7-e31d-41b6-9849-8da33931189b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="aa90b3d3-5509-4ca3-b5c0-a295f5d62ec8" ownerguid="94e5ea59-3346-42cf-ad13-04f0029f72c1"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="aa921d5f-9d37-40c0-a86c-d90230c8daad" ownerguid="7e512866-4b27-4ecf-903e-cab043f309e3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">nin</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">nin</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">nin</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">nin</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nin</Run> -</AStr> -</Form> -<Morph> -<objsur guid="18b86caf-a560-48d6-ab1d-03882ed1fbd7" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="aa95cd60-7d14-45e0-b174-af9b9dc73d11" ownerguid="ba06de9e-63e1-43e6-ae94-77bea498379a"> -<ExampleWords> -<AUni ws="en">personal, personally</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something characteristic of one person?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="aa9643ff-e602-47e2-9a1e-4f0b4af335c4" ownerguid="2330813b-7413-41a8-8eb2-ae138511c953"> -<ExampleWords> -<AUni ws="en">blinding, dazzling, glare</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a light that is so bright it hurts your eyes?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="aa9771e8-28e3-4325-a656-e3c67beea6be" ownerguid="191c6030-6e33-4380-9a14-aa0ad4db4643"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="aa9792af-02c7-400d-bf36-b34d38dca998" ownerguid="185d398b-1e9d-4de6-9606-908b55df3c3a"> -<Form> -<AUni ws="qvm-x-ach">janapay</AUni> -<AUni ws="qvm-x-acl">janapay</AUni> -<AUni ws="qvm-x-akh">janapay</AUni> -<AUni ws="qvm-x-akl">janapay</AUni> -<AUni ws="qvm-x-ame">hanapay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="aa982cc0-4905-4c8d-80f3-e094719fdd6f" ownerguid="cd8b2a8b-687b-42e9-91e7-cfb8812b64ee"> -<ExampleWords> -<AUni ws="en">mistake something, confuse, mix someone up with, get something mixed up, muddle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to mistaking one thing or person for another?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="aa987ef8-d4f2-49df-8a94-b2fec19192d5" ownerguid="7558d071-a885-447b-9aa2-604c29669492"> -<ExampleWords> -<AUni ws="en">capital, seat of government</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the place where the government is?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="aa995098-cd36-4b13-a40b-e4334297bc30"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shupu</AUni> -<AUni ws="qvm-x-acl">shupu; shupo</AUni> -<AUni ws="qvm-x-akh">shupu</AUni> -<AUni ws="qvm-x-akl">shupu; shupo</AUni> -<AUni ws="qvm-x-ame">shupu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shupu.v</AUni> -<AUni ws="qvm-x-acl">*shupu.v</AUni> -<AUni ws="qvm-x-akh">*shupu.v</AUni> -<AUni ws="qvm-x-akl">*shupu.v</AUni> -<AUni ws="qvm-x-ame">*shupu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.650" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2a0d1094-b7d8-4ff5-a299-53bea90915ba" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shupu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="61ba776d-06d1-4fc4-a17e-17aab135673a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b2f4a1aa-ba2c-44bb-9982-1249dc97c7cd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shupu.v 
\entryTyp root 
\gENG 
\gSPN 
\e *shupu.v 
\c V1 
\ach shupu 
\akh shupu 
\acl shupu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shupo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shupu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shupo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shupu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="aa9b1495-7367-40e8-8b59-3515135a65b3" ownerguid="467dd680-ac64-4dc4-8a17-1cfe297d3392"> -<ExampleWords> -<AUni ws="en">simple, one to one</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe a simple connection between two things?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="aa9c222c-dc39-4451-8572-049e39b95540" ownerguid="14be4ae5-cbf8-4462-8c01-b5a9b761ada7"> -<Form> -<AUni ws="qvm-x-ach">ayudanti; ayudante</AUni> -<AUni ws="qvm-x-acl">ayudanti; ayudanti; ayudante</AUni> -<AUni ws="qvm-x-akh">ayudanti; ayudante</AUni> -<AUni ws="qvm-x-akl">ayudanti; ayudanti; ayudante</AUni> -<AUni ws="qvm-x-ame">ayudanti; ayudante</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="aaa01b5f-0899-42cd-a62b-60c74fcdf5be"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ceba:da</AUni> -<AUni ws="qvm-x-acl">ceba:da</AUni> -<AUni ws="qvm-x-akh">ceba:da</AUni> -<AUni ws="qvm-x-akl">ceba:da</AUni> -<AUni ws="qvm-x-ame">ceba:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cebada</AUni> -<AUni ws="qvm-x-acl">+cebada</AUni> -<AUni ws="qvm-x-akh">+cebada</AUni> -<AUni ws="qvm-x-akl">+cebada</AUni> -<AUni ws="qvm-x-ame">+cebada</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.920" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4e3416e4-1ba3-4632-9add-d01459fa66ad" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cebada</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="409a2bb3-32ed-46cb-9dec-be7c3d19c974" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="824ca435-d7a3-4031-9955-9dc63f7ef922" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cebada 
\entryTyp root 
\gENG barley 
\gSPN cebada 
\e +cebada 
\c N0 
\ach ceba:da 
\akh ceba:da 
\acl ceba:da 
\akl ceba:da 
\ame ceba:da</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="aaa533e0-4447-41d4-895d-b6aa7a4fb5d3" ownerguid="18924ddb-69db-4c9a-ab9d-70facc22d603"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wild.animal</AUni> -<AUni ws="es">animal</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6478a79a-f38b-4d32-afab-83dd2bd5a831" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="aaa5da77-f45a-4633-bf3d-c6da97b9c371"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">avispa</AUni> -<AUni ws="qvm-x-acl">avispa</AUni> -<AUni ws="qvm-x-akh">avispa</AUni> -<AUni ws="qvm-x-akl">avispa</AUni> -<AUni ws="qvm-x-ame">avispa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+avispa</AUni> -<AUni ws="qvm-x-acl">+avispa</AUni> -<AUni ws="qvm-x-akh">+avispa</AUni> -<AUni ws="qvm-x-akl">+avispa</AUni> -<AUni ws="qvm-x-ame">+avispa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.888" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f9a9559b-c047-4cca-9b59-c9f1853f86b4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+avispa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8ea92ea0-a9d4-43bc-8981-6dcbe1bfa34c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="16edaac9-0b48-4ef8-978b-746053190488" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +avispa 
\entryTyp root 
\gENG wasp 
\gSPN avispa 
\e +avispa 
\c N0 
\ach avispa 
\akh avispa 
\acl avispa 
\akl avispa 
\ame avispa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="aaa8342f-6fca-4f84-a582-7a6b6c1372f6" ownerguid="a01a1900-fc1f-462e-ba3d-ae822711b034"> -<ExampleWords> -<AUni ws="en">brain injury, mental trauma, shock</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something that causes mental illness?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="aaa9689f-b1b6-416b-a43b-fbd207564aae"> -<Form> -<Str> -<Run ws="en">14</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="aaacd4fb-a537-4a53-9b98-814e8c6b55ce" ownerguid="7ee3ccb5-e6cb-4028-9af5-62ae782967b5"> -<ExampleWords> -<AUni ws="en">nugget, bar, rod, ingot, wire</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a piece of metal?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="aab1c99c-625d-4540-b8d6-dee565b9672f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cabeci:lla</AUni> -<AUni ws="qvm-x-acl">cabeci:lla</AUni> -<AUni ws="qvm-x-akh">cabeci:lla</AUni> -<AUni ws="qvm-x-akl">cabeci:lla</AUni> -<AUni ws="qvm-x-ame">cabeci:lla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cabecilla</AUni> -<AUni ws="qvm-x-acl">+cabecilla</AUni> -<AUni ws="qvm-x-akh">+cabecilla</AUni> -<AUni ws="qvm-x-akl">+cabecilla</AUni> -<AUni ws="qvm-x-ame">+cabecilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.900" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3503f9b0-54bf-411e-aed6-405c2874a2e6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cabecilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="73c2e63a-b154-4fc1-9b89-729989f1ba28" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3de24900-ef8f-4cd7-966c-70f1d387eb10" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cabecilla 
\entryTyp root 
\gENG 
\gSPN 
\e +cabecilla 
\c N0 
\ach cabeci:lla 
\akh cabeci:lla 
\acl cabeci:lla 
\akl cabeci:lla 
\ame cabeci:lla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="aab47664-113f-4a52-8a68-7993877af101" ownerguid="7e55326a-5377-4efa-b4e6-427d09c38da8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="aab69c7a-1772-4237-9421-377904dae7bb" ownerguid="1c512719-6ecb-48cb-980e-4ff20e8b5f9b"> -<ExampleWords> -<AUni ws="en">commune</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to talking to the spirits?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="aab82dc7-de9f-44b3-845e-0c926f47cfb6" ownerguid="349f0278-7998-422a-9c3b-6053989cbb20"> -<Abbreviation> -<AUni ws="en">9.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Each verb has a set of semantic case relations. For instance in the sentence 'I gave flowers to my wife' the verb give has three case relations. 'I' is the Agent, 'flowers' is the Patient, and 'my wife is the 'Recipient'. In this sentence the only word that marks a case relation is 'to'. English often marks case relations by their position in the sentence. Some languages mark case relations by affixes, prepositions, postpositions, and sometimes special verbs. To completely describe a language, each verb must be investigated, all its case relations must be identified, and all the ways in which these relations are marked must be described. Since verbs are often unique and unpredictable in their case relations, this information should go into the dictionary. This section should be used to classify the words and affixes that are used to mark case relations. This domain should be used for technical terms that refer to case.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>90 Case; 90A Agent, Personal or Nonpersonal, Causative or Immediate, Direct or Indirect; 90C Source of Event or Activity; 90D Responsibility; 90E Viewpoint Participant; 90F Content; 90G Guarantor Participant with Oaths; 90H Opposition; 90J Reason Participant; 90K Agent of a Numerable Event; 90L Agent in a Causative Role Marked by Verbs; 90M Experiencer; 90N To Cause To Experience</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Case</AUni> -</Name> -<Questions> -<objsur guid="e232df53-715e-4b6c-b9b0-fc55797ec5d1" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="bb8ddf5f-707d-46c0-aff4-45683d26fd68" t="o" /> -<objsur guid="0eefa07a-e0a3-49e3-aeb4-62f1eafd8e23" t="o" /> -<objsur guid="116bef13-e80f-4a15-bb0a-bb7b3794ffac" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="aab87a20-074e-448b-b7bc-93e3ec99cfa8" ownerguid="714c19ca-fc12-4630-b529-468429ec083d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wayi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wayi; wayi; waye</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wayi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wayi; wayi; waye</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wayi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="908a9492-ef77-4052-a703-5d519cb12013" t="r" /> -</Morph> -<Msa> -<objsur guid="87a61372-b529-41d0-892b-ca33273dc85c" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="aab8b442-38e7-48f0-a93f-d33bf30bba32" ownerguid="a01a1900-fc1f-462e-ba3d-ae822711b034"> -<ExampleWords> -<AUni ws="en">senile, confused, his mind is wandering, lose your marbles</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe an old person who has become mentally ill?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="aabbaf80-1c6b-4613-86a6-c6cf76d5a56c" ownerguid="e369a394-97cf-492b-974f-50349b5be319"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="87edda04-8af2-47bc-aae0-30cb5b751edb" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="f06aaa44-28c9-46f4-b0c4-7c68acd6c03f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="aabc32ee-46e4-469f-93ad-673373cb2e8d" ownerguid="bb8ddf5f-707d-46c0-aff4-45683d26fd68"> -<Abbreviation> -<AUni ws="en">9.5.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating the attendant circumstances in which something happened.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89M Attendant Circumstances</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Attendant circumstances</AUni> -</Name> -<Questions> -<objsur guid="8a8dad87-51d5-4786-947e-5c058b945c93" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="aabce80c-4db7-4458-98b8-7bae9456fc93" ownerguid="62a7eac8-a0b8-44ba-a4bb-dfefefdbd216"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hoarse</AUni> -<AUni ws="es">ronco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="24f679aa-f170-429a-a6cf-b068081e2668" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="aac92bf0-55c7-470c-80ed-b57afcd03792"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">vesti:du</AUni> -<AUni ws="qvm-x-acl">vesti:du; vesti:du; vesti:do</AUni> -<AUni ws="qvm-x-akh">vesti:du</AUni> -<AUni ws="qvm-x-akl">vesti:du; vesti:du; vesti:do</AUni> -<AUni ws="qvm-x-ame">vesti:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vestido</AUni> -<AUni ws="qvm-x-acl">+vestido</AUni> -<AUni ws="qvm-x-akh">+vestido</AUni> -<AUni ws="qvm-x-akl">+vestido</AUni> -<AUni ws="qvm-x-ame">+vestido</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.373" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7d80bcca-a0fe-445e-bb8f-03fdf49b3609" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vestido</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b2ce6e2f-1095-45de-8732-56d8c4f46f1a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="307bca4f-dfc5-4c2d-ae79-85d996e15013" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vestido 
\entryTyp root 
\gENG suit 
\gSPN vestido 
\e +vestido 
\c N0 
\ach vesti:du 
\akh vesti:du 
\acl vesti:du / _# 
\acl vesti:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl vesti:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl vesti:du / _# 
\akl vesti:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl vesti:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame vesti:du</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="aaca6952-6e2e-4006-b736-a56406728d95" ownerguid="17d50454-fe0c-4552-95cc-f4841295f8ec"> -<Form> -<AUni ws="qvm-x-ach">ana</AUni> -<AUni ws="qvm-x-acl">ana</AUni> -<AUni ws="qvm-x-akh">ana</AUni> -<AUni ws="qvm-x-akl">ana</AUni> -<AUni ws="qvm-x-ame">ana</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="aacb0d72-c9ac-4e58-b84b-b9301dea9139" ownerguid="10ad2300-18e0-4e12-becd-d5b72207427f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cut.sod</AUni> -<AUni ws="es">cortar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8abdb1e0-3181-4c7f-9e9f-2a273da03764" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="aacf56d5-2429-4058-ba8a-f0108072e137" ownerguid="8052744f-7a9a-49da-89e3-4c518126180b"> -<ExampleWords> -<AUni ws="en">distraction, puzzle (n), mystery</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something that causes someone to feel confused?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="aad1bd84-9f36-4cc3-a61b-1536175597d4" ownerguid="bc144b7d-c87d-4f36-a662-01a632e3e592"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="aad2eee6-db17-49f3-bbc7-3fe7f26c4553"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wacatay</AUni> -<AUni ws="qvm-x-acl">wacatay</AUni> -<AUni ws="qvm-x-akh">wakatay</AUni> -<AUni ws="qvm-x-akl">wakatay</AUni> -<AUni ws="qvm-x-ame">wakatay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wakatay</AUni> -<AUni ws="qvm-x-acl">*wakatay</AUni> -<AUni ws="qvm-x-akh">*wakatay</AUni> -<AUni ws="qvm-x-akl">*wakatay</AUni> -<AUni ws="qvm-x-ame">*wakatay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.434" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f7b33ab0-b678-4183-b083-4539b597b85f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wakatay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ba77ba76-1642-4469-b5d7-9c362f835f38" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b837260a-3dc3-4b7c-bf3c-36ddbbc3e118" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wakatay 
\entryTyp root 
\gENG a.spice 
\gSPN chincho.molido 
\e *wakatay 
\c N0 
\mp +FinalC 
\ach wacatay 
\akh wakatay 
\acl wacatay 
\akl wakatay 
\ame wakatay</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="aad2f719-3691-4ee0-9802-873ca7115884" ownerguid="47e3f461-984b-45b6-b09b-9fefb9191b15"> -<Form> -<AUni ws="qvm-x-ach">mushqui</AUni> -<AUni ws="qvm-x-acl">mushqui; mushque</AUni> -<AUni ws="qvm-x-akh">mushki</AUni> -<AUni ws="qvm-x-akl">mushki; mushke</AUni> -<AUni ws="qvm-x-ame">mushki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="aad50ac8-9851-4cd8-8e90-61ec5f7a323c" ownerguid="0eeea224-1e76-4482-b357-08b14ac65edb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="aad7c9b0-aff3-4684-86d5-657a20e39288" ownerguid="62b4ae33-f3c2-447a-9ef7-7e41805b6a02"> -<Abbreviation> -<AUni ws="en">4.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to authority.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Authority</AUni> -</Name> -<Questions> -<objsur guid="b4609422-8ea0-40b7-ada7-99b22dad9f2d" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="67087306-0211-4c28-b17e-0b6827723f07" t="o" /> -<objsur guid="b8f59ddd-48de-4b3d-af47-687c9237ccd9" t="o" /> -<objsur guid="577017b0-ae87-4fa2-a51b-4f430497be75" t="o" /> -<objsur guid="b0a9a631-e0dc-47d4-a762-e9a627732218" t="o" /> -<objsur guid="4a8c6c2e-7a8f-4dd6-97d3-20a35d7d10e9" t="o" /> -<objsur guid="785e7f1f-21ed-46b6-8599-c6ced4fd26d8" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="aad8d7ad-9688-46a4-b96e-7050fcd31cd1" ownerguid="59ee2eeb-d59f-44e0-8d71-51e12fccc837"> -<Form> -<AUni ws="qvm-x-ach">sieti; siete</AUni> -<AUni ws="qvm-x-acl">sieti; sieti; siete</AUni> -<AUni ws="qvm-x-akh">sieti; siete</AUni> -<AUni ws="qvm-x-akl">sieti; sieti; siete</AUni> -<AUni ws="qvm-x-ame">sieti; siete</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="aad9af47-7ccf-46b9-ad10-79c184dec6e7" ownerguid="cc1d95ae-fc7b-4987-a2b1-fb8113600330"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">blue</AUni> -<AUni ws="es">azul</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c2e40e1e-4ddf-40ad-b6c8-a89417fc2b7b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="aadccbfb-df2b-45f0-91d3-09afc7c416ac" ownerguid="74261e57-5f50-4201-b7e9-270bc186ffe3"> -<Form> -<AUni ws="qvm-x-ach">sëca</AUni> -<AUni ws="qvm-x-acl">sëca</AUni> -<AUni ws="qvm-x-akh">sëca</AUni> -<AUni ws="qvm-x-akl">sëca</AUni> -<AUni ws="qvm-x-ame">sëca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="aadefee4-ed14-4753-952e-e945f2972e37" ownerguid="7cfc8b3c-ad67-4928-ae6a-74afd47ced89"> -<Abbreviation> -<AUni ws="en">8.1.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.579" /> -<DateModified val="2022-9-23 16:55:8.579" /> -<Description> -<AStr ws="en"> -<Run ws="en">Many things have parts. Use this domain for words referring to a part of something, and for words that express the idea that something has parts, that something is a part of something, or that link the whole with a part.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>63D Part</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Part</AUni> -</Name> -<Questions> -<objsur guid="1a72aa41-1b78-430d-a354-78e39f77b997" t="o" /> -<objsur guid="000eb971-3e92-46b6-8908-bda2964fe1af" t="o" /> -<objsur guid="e3aed75d-a5cb-47b4-8cc5-435f811ced39" t="o" /> -<objsur guid="56c5e323-46a4-463e-823e-96e5773bd591" t="o" /> -<objsur guid="2ade06af-f67b-40f0-b88c-b15713be388a" t="o" /> -<objsur guid="331d158b-ddf2-4432-b196-8a71723e385f" t="o" /> -<objsur guid="65a6484e-bde3-4ca7-bece-619eee49b86c" t="o" /> -<objsur guid="02319a64-1177-415e-9f0e-f0376297454b" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="91913920-8a6a-4ba0-9361-d6cc9e1f3639" t="r" /> -<objsur guid="c05bf8c3-78f2-4ec5-b0d7-32d4963a5794" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="aae2abc3-c6f3-4492-9df4-13f329427fab"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">asqaq</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="aae3928e-a495-4b45-aaeb-2c925de7c300" ownerguid="7992958d-fd36-469e-a94b-f8a9eb26af64"> -<ExampleWords> -<AUni ws="en">blockade, dam, barricade, wall, barrier, fence</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something that is used to block something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="aae402d4-9510-49dc-8001-03c0b7e8ce5d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">estandarti; estandarti</AUni> -<AUni ws="qvm-x-acl">estandarti; estandarti; estandarte</AUni> -<AUni ws="qvm-x-akh">estandarti; estandarti</AUni> -<AUni ws="qvm-x-akl">estandarti; estandarti; estandarte</AUni> -<AUni ws="qvm-x-ame">estandarti; estandarti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+estandar</AUni> -<AUni ws="qvm-x-acl">+estandar</AUni> -<AUni ws="qvm-x-akh">+estandar</AUni> -<AUni ws="qvm-x-akl">+estandar</AUni> -<AUni ws="qvm-x-ame">+estandar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.506" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="06a3532f-21d6-4ca5-afed-9e869636c930" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+estandar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8fb018a6-bdfb-440a-b19a-a0f8dc4c4fbd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="834b712b-6983-40d8-b1bd-f0ff225cbd8b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +estandar 
\entryTyp root 
\gENG 
\gSPN 
\e +estandar 
\c N0 
\mp +FinalI 
\ach estandarti / _# 
\ach estandarti / ~_# 
\akh estandarti / _# 
\akh estandarti / ~_# 
\acl estandarti / _# 
\acl estandarti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl estandarte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl estandarti / _# 
\akl estandarti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl estandarte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame estandarti / _# 
\ame estandarti / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="aae8aefe-cea0-42fe-b9de-793c4cbdbbd9" ownerguid="72fd74de-6052-4112-a874-29262b5c4159"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="46b9eb7e-64c9-4319-8fd4-47040c10ebbd" t="o" /> -<objsur guid="0ff9c402-904a-484f-8c3b-c76aebd7875a" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="aae8b259-db24-4abe-b794-4fd955cafc47" ownerguid="2c4552ce-6cb0-4c34-9525-ac0f62cd6ee8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="aae94bdb-dda0-48a8-8942-6ed32dff39d9" ownerguid="1b004786-7bfc-42be-bcd1-8616f9383206"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="aae9abba-b532-4791-baee-79e7ca97789d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">merenda</AUni> -<AUni ws="qvm-x-acl">merenda</AUni> -<AUni ws="qvm-x-akh">merenda</AUni> -<AUni ws="qvm-x-akl">merenda</AUni> -<AUni ws="qvm-x-ame">merenda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+merendar</AUni> -<AUni ws="qvm-x-acl">+merendar</AUni> -<AUni ws="qvm-x-akh">+merendar</AUni> -<AUni ws="qvm-x-akl">+merendar</AUni> -<AUni ws="qvm-x-ame">+merendar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.416" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f7935832-77ff-4cb7-afca-64851adde3e6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+merendar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7f341698-3f00-4314-8bd2-b29fde568570" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="55536258-f3e0-4ba8-b8e7-1671f8a18bc2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +merendar 
\entryTyp root 
\gENG sup 
\gSPN merendar 
\e +merendar 
\c V1 
\ach merenda 
\akh merenda 
\acl merenda 
\akl merenda 
\ame merenda</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="aaea47af-baed-4cf8-a679-99d2509601a3" ownerguid="2b6f9af7-04ee-4030-a2cd-87d55959caa8"> -<ExampleWords> -<AUni ws="en">frightening, frightful, alarming, blood-curdling, chilling, creepy, dreadful, eerie, fearsome, forbidding, hair-raising, scary, spine-chilling, spooky, terrifying</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe something that causes someone to feel afraid?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="aaeb31c3-effb-49c2-b07a-3385fbbc5748" ownerguid="e5a2589b-82cf-440a-a7f9-f546198f169b"> -<Form> -<AUni ws="qvm-x-ach">shimpa; shimpä</AUni> -<AUni ws="qvm-x-acl">shimpa; shimpä</AUni> -<AUni ws="qvm-x-akh">shimpa; shimpä</AUni> -<AUni ws="qvm-x-akl">shimpa; shimpä</AUni> -<AUni ws="qvm-x-ame">shimpa; shimpä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="aaee175e-73d1-433a-87be-46b1478628c0" ownerguid="091ee60b-b9e7-4205-8690-bce5f4efcfb0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">ruina</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="432d62eb-d4cc-41fb-8fae-7ff802630af0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="aaf0cb66-0192-458b-9360-49b719b1317e" ownerguid="a977c4b6-1004-448f-b6b0-daf5ce87d76d"> -<ExampleWords> -<AUni ws="en">sir, my lord, gentleman, lady</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What titles of address are used to refer to or speak to a person of high status?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="aaf30f58-88a3-4303-87cc-7e85a060aba4" ownerguid="89043106-cbb3-487f-bdcd-00ea38bc6807"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="843433ad-5cb7-43db-a85c-8f9d74c30c5b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="aaf4227a-cfb7-4470-b67d-0c41f8f232d7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tosta</AUni> -<AUni ws="qvm-x-acl">tosta</AUni> -<AUni ws="qvm-x-akh">tosta</AUni> -<AUni ws="qvm-x-akl">tosta</AUni> -<AUni ws="qvm-x-ame">tosta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tostar</AUni> -<AUni ws="qvm-x-acl">+tostar</AUni> -<AUni ws="qvm-x-akh">+tostar</AUni> -<AUni ws="qvm-x-akl">+tostar</AUni> -<AUni ws="qvm-x-ame">+tostar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.967" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2e5f243e-9f91-4d2c-99d9-3e0b0b881ded" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tostar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="558f6059-024a-4c7c-95c4-ebcfad4272c1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d0d57170-597a-4c46-b407-05ae6a330505" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tostar 
\entryTyp root 
\gENG toast 
\gSPN tostar 
\e +tostar 
\c V1 
\ach tosta 
\akh tosta 
\acl tosta 
\akl tosta 
\ame tosta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="aaf63abd-c8a5-4546-8fc1-a51c6e607683" ownerguid="5e3bb9e5-fd70-4c5a-95a0-938bc4876a47"> -<Abbreviation> -<AUni ws="en">3.2.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to hoping that something will happen--to want something good to happen in the future.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25D Hope, Look Forward To</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Hope</AUni> -</Name> -<Questions> -<objsur guid="6305d4d9-7717-484f-8034-a2d664260223" t="o" /> -<objsur guid="9a738f40-d914-4a10-b191-6d838812ceed" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="aaf9d375-f0a0-4c7b-bbf8-3c7ffd4f5a52" ownerguid="5422d4ba-8af4-4767-912e-43b60ef28eab"> -<Abbreviation> -<AUni ws="en">9.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that indicate a degree on a scale.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>78 Degree; 78E Up to, As Much As, To the Degree That</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Degree</AUni> -</Name> -<Questions> -<objsur guid="cedad80d-f390-4994-89d4-d9ee8f38f989" t="o" /> -<objsur guid="ecbb0414-5ac1-4af5-8418-b52bf437b005" t="o" /> -<objsur guid="f61e6345-e169-4e35-b7b7-ce1d0f7b587c" t="o" /> -<objsur guid="2951c233-dd0b-4516-82b6-2c4cd8117b49" t="o" /> -<objsur guid="98f0f88f-4c62-464f-a0ae-f139ca21f967" t="o" /> -<objsur guid="9cc790b6-93a7-4ac8-a998-51d754f9f3e5" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="7f91aa6d-f342-4fb9-9448-69d694cda9c5" t="o" /> -<objsur guid="1082c52b-490a-4eec-acf1-7016796dafd9" t="o" /> -<objsur guid="73b959ab-0229-4710-af99-dfc9b5370540" t="o" /> -<objsur guid="984dc2b7-6fdd-4257-abdc-5873abb7bb70" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoInflAffMsa" guid="aafa5d02-399a-4048-b045-4c82d08978e0" ownerguid="10e92cd8-6d9d-4c1e-b946-f076814474e0"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="aafc37cf-579c-4a27-9de3-bef4cb2853ec" ownerguid="fb84538a-17a8-4adc-8d50-e2b66f8e4099"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The group <numbered> fifty.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">number (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words indicate that there are a particular number of something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ab019246-9513-4e2d-880e-382fbeda7887" ownerguid="0cebe947-9794-4972-8ecd-c3a300d394d7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="ab0383f3-2cca-44f3-8b28-631d17f745fb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">patata</AUni> -<AUni ws="qvm-x-acl">patata</AUni> -<AUni ws="qvm-x-akh">patata</AUni> -<AUni ws="qvm-x-akl">patata</AUni> -<AUni ws="qvm-x-ame">patata</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*patata</AUni> -<AUni ws="qvm-x-acl">*patata</AUni> -<AUni ws="qvm-x-akh">*patata</AUni> -<AUni ws="qvm-x-akl">*patata</AUni> -<AUni ws="qvm-x-ame">*patata</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.749" /> -<DateModified val="2022-10-10 21:18:47.204" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cd659cc5-0b46-4e13-91cb-30685b0f2c54" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*patata</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d4ee6de7-17d2-4cc9-a48a-ac17ca68eed1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="647826d2-d793-40fe-9609-5363f1c1d173" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *patata 
\entryTyp root 
\gENG 
\gSPN 
\e *patata 
\c V1 
\ach patata 
\akh patata 
\acl patata 
\akl patata 
\ame patata</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="ab04c63d-10b9-4fa0-ae94-fe71d559664a" ownerguid="89db7c8c-9ada-4bc1-b02b-82871c946c22"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -</rt> -<rt class="Segment" guid="ab05ade7-d1f0-45b4-95b5-698d0e83ec1d" ownerguid="c6f4df11-a92b-4446-a8d7-dc6bc8cc11a1"> -<Analyses> -<objsur guid="18827245-e541-4039-a53c-0c4b7e2715ac" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexSense" guid="ab0745e3-c71a-4ee2-ba19-cc25b3841b22" ownerguid="c0d8c0ff-3cee-4f62-ba1f-fffdbde9f8b9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="dc3c8134-2b88-4dc8-9835-2827765cd77d" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="72f14ebf-2c51-47f7-8b43-1c380fb62d1e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="ab08a47b-f171-4fef-a21b-97d2ece0654f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">comple:tu</AUni> -<AUni ws="qvm-x-acl">comple:tu; comple:tu; comple:to</AUni> -<AUni ws="qvm-x-akh">comple:tu</AUni> -<AUni ws="qvm-x-akl">comple:tu; comple:tu; comple:to</AUni> -<AUni ws="qvm-x-ame">comple:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+completo</AUni> -<AUni ws="qvm-x-acl">+completo</AUni> -<AUni ws="qvm-x-akh">+completo</AUni> -<AUni ws="qvm-x-akl">+completo</AUni> -<AUni ws="qvm-x-ame">+completo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.162" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d45ba243-7133-44b7-8d00-528de48ab378" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+completo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="62d7100a-8944-4b1c-a677-7e606db3f5a9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="550f2cf4-aedb-4b70-9026-5fe2b734ac1b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +completo 
\entryTyp root 
\gENG complete 
\gSPN completo 
\e +completo 
\c N0 
\ach comple:tu 
\akh comple:tu 
\acl comple:tu / _# 
\acl comple:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl comple:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl comple:tu / _# 
\akl comple:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl comple:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame comple:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ab08e42f-ec7d-4bb3-9ae4-0d1ba4530c81" ownerguid="21f21658-a69a-491c-a37b-156a8f4ad3fb"> -<ExampleWords> -<AUni ws="en">unfit, not fit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something being unsuitable because it isn't good enough?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ab0dfa34-3174-4b8d-afef-97c5eec695a0" ownerguid="47fb953c-33ca-4a22-af07-19f5b0a53df4"> -<Form> -<AUni ws="qvm-x-ach">perjuiciädu</AUni> -<AUni ws="qvm-x-acl">perjuiciädu; perjuiciädu; perjuiciädo</AUni> -<AUni ws="qvm-x-akh">perjuiciädu</AUni> -<AUni ws="qvm-x-akl">perjuiciädu; perjuiciädu; perjuiciädo</AUni> -<AUni ws="qvm-x-ame">perjuiciädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="ab0f710f-51a0-4574-a484-638e695cfe39" ownerguid="6c6e3f3f-22a2-41c3-87b9-5a2191c5b35d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hug</AUni> -<AUni ws="es">abrazar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1aa8f059-38c5-43d5-a339-3550bc311e4b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="ab127348-7f98-43e5-801d-01241ecdb517" ownerguid="d9f336cf-0682-4702-ab94-5ade755ddc64"> -<Abbreviation> -<AUni ws="en">7.3.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.528" /> -<DateModified val="2022-9-23 16:55:8.528" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to putting something lower than you or lower than something else, putting something under something else, or moving something lower than it was.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Lower something</AUni> -</Name> -<Questions> -<objsur guid="d9b8e86f-9ede-4206-b3da-b8a3c5e106c8" t="o" /> -<objsur guid="9c056000-d1fe-4ffb-8e08-10d2dfe824a0" t="o" /> -<objsur guid="70cf9119-57be-4075-a063-a1b52a985348" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="ab184505-6f6b-4e17-bdbf-c1c9f1379fea" ownerguid="20a2e768-ef72-4393-8f4c-96540ff15891"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">eight</AUni> -<AUni ws="es">ocho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="acf5d624-d859-4a04-b0a2-2ab79facbdfe" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="ab1baaa2-4c4c-4ed4-bc81-d55dbfbc3b01" ownerguid="d4a78550-b02b-4479-bcf3-ad40880667db"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">crush</AUni> -<AUni ws="es">aplastar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2de351b5-b927-4cbb-8ee2-65779b408c55" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="ab1c00bf-0c24-476f-b2bf-c09740ab1a3a" ownerguid="302ab46f-eda4-4df3-b4c3-6b11bc645c32"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">plant</AUni> -<AUni ws="es">planta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a39eb1aa-f40e-45e6-91a6-c84ce391028c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="ab1c7931-4729-4d37-8b47-b95438f34f58"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuesta</AUni> -<AUni ws="qvm-x-acl">cuesta</AUni> -<AUni ws="qvm-x-akh">cuesta</AUni> -<AUni ws="qvm-x-akl">cuesta</AUni> -<AUni ws="qvm-x-ame">cuesta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuesta</AUni> -<AUni ws="qvm-x-acl">+cuesta</AUni> -<AUni ws="qvm-x-akh">+cuesta</AUni> -<AUni ws="qvm-x-akl">+cuesta</AUni> -<AUni ws="qvm-x-ame">+cuesta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.244" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8f81446d-4acd-4c75-b9d0-ef98256af0b7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuesta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="76ddc48b-f57d-4421-b137-0f58d88e49be" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fb2929e9-5eb3-4985-8be5-1e2254a016b2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuesta 
\entryTyp root 
\gENG steep 
\gSPN cuesta 
\e +cuesta 
\c N0 
\ach cuesta 
\akh cuesta 
\acl cuesta 
\akl cuesta 
\ame cuesta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ab1d1011-6a28-4ebb-9229-48815ee2f894" ownerguid="5e8f97eb-5732-4ef2-bec0-bfe818b9d41c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sin</AUni> -<AUni ws="es">pecado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9a546f94-1226-4acc-a36f-146114658c9d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="ab22b78d-96a6-42ee-ac4a-3910bcc0ce72" ownerguid="703b72ec-ce56-460e-af9e-6175bf998908" /> -<rt class="MoStemAllomorph" guid="ab24d393-1943-4f75-bf12-da361af26fb4" ownerguid="ffa9ada0-ed30-4646-9042-f1596d41eb9d"> -<Form> -<AUni ws="qvm-x-ach">panal</AUni> -<AUni ws="qvm-x-acl">panal</AUni> -<AUni ws="qvm-x-akh">panal</AUni> -<AUni ws="qvm-x-akl">panal</AUni> -<AUni ws="qvm-x-ame">panal</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="ab2c40b6-fe9d-47b8-bd35-f88c8365892c" ownerguid="e6d71ee8-5dbe-4ef2-819b-56296812f94d"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">MIC 3.3 Calducunanpag aytsanta cutsognogmi carcaycanqui.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="ab2e9222-1ed3-44aa-95ae-895fc93b1a9d" ownerguid="9a466e3d-e249-4c70-a52a-395c4d4fd851"> -<Form> -<AUni ws="qvm-x-ach">umru</AUni> -<AUni ws="qvm-x-acl">umru; umro</AUni> -<AUni ws="qvm-x-akh">umru</AUni> -<AUni ws="qvm-x-akl">umru; umro</AUni> -<AUni ws="qvm-x-ame">umru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ab2f6ba5-13ee-4268-ad44-c0fa008649ac" ownerguid="9873474a-960a-4784-93e9-967b3205408c"> -<Form> -<AUni ws="qvm-x-ach">farol</AUni> -<AUni ws="qvm-x-acl">farol</AUni> -<AUni ws="qvm-x-akh">farol</AUni> -<AUni ws="qvm-x-akl">farol</AUni> -<AUni ws="qvm-x-ame">farol</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="ab3541a4-7168-4a6e-beab-e91bbd754cc6" ownerguid="a6710378-186d-4b6b-8e32-7f38e12ccfd9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">escape</AUni> -<AUni ws="es">escapar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b4c561e3-de7b-4f1f-9de6-dd83322c98c7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="ab398660-9e4c-4863-a3f5-5f2ec19d4e34" ownerguid="0f301187-4dbb-48c0-95fe-26155414e2b1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">curtain</AUni> -<AUni ws="es">cortina</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4acfc53d-746e-47f6-840f-02bf6bb1845f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ab3e3003-0087-493d-b61c-b3c5249a4ab9" ownerguid="d41c16d7-0ab0-49ce-bbea-b2440595bc8a"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ab439ccf-e894-4c80-b904-7fb2af9b4285" ownerguid="c817af65-7cc8-4105-a8ed-47067d97b73b"> -<ExampleWords> -<AUni ws="en">police uniform, military uniform, nurse's uniform, band uniform</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What kinds of uniforms are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ab46efc5-0ec8-4cb6-960e-2275af1d5595" ownerguid="7ddbd56f-e458-4a72-a9bc-9b7db6bde75a"> -<ExampleWords> -<AUni ws="en">abdicate, resign, overthrow, leave office</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to when a ruler stops ruling?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ab4704f7-57f6-4aed-9024-305a5d7b037e" ownerguid="756f67e9-2b22-4c43-913c-ceff0e781545"> -<ExampleWords> -<AUni ws="en">stick, ram, drive, plunge, thrust</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to pushing something into an opening or into something soft?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ab48f95a-f4de-4e5f-a236-dd5568352fdf" ownerguid="66fc9a08-3661-4dd5-94b0-1eea41fb4554"> -<ExampleWords> -<AUni ws="en">check, constraint, impediment, limitation, restriction</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something that prevents someone from doing something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ab49b8b1-a7e4-4f8a-9aaa-44a3232d9f4b" ownerguid="ffad98ad-9af2-43bf-99e3-d54f0b9222e5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="499b706b-3582-442f-80b2-9a165b41cb28" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="ab4a51af-9f95-4789-b1df-63c4103178aa" ownerguid="bf621f5e-59e7-42ac-a1f1-bcf569b387da"> -<Form> -<AUni ws="qvm-x-ach">apellïdu</AUni> -<AUni ws="qvm-x-acl">apellïdu; apellïdu; apellïdo</AUni> -<AUni ws="qvm-x-akh">apellïdu</AUni> -<AUni ws="qvm-x-akl">apellïdu; apellïdu; apellïdo</AUni> -<AUni ws="qvm-x-ame">apellïdu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ab4fd9b3-d50c-4295-809c-9c131b596bf3" ownerguid="c73ee12f-593b-47bd-9770-09b0ef991119"> -<Form> -<AUni ws="qvm-x-ach">jäca</AUni> -<AUni ws="qvm-x-acl">jäca</AUni> -<AUni ws="qvm-x-akh">jäka</AUni> -<AUni ws="qvm-x-akl">jäka</AUni> -<AUni ws="qvm-x-ame">häka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ab517c06-df1c-4241-a242-9f6742c025e4" ownerguid="6105a207-4311-4920-8c19-63259424bfaf"> -<ExampleWords> -<AUni ws="en">savior</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who saves another?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ab51c84c-2279-4a97-bee9-8b13c254637d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">perdición; perdicion</AUni> -<AUni ws="qvm-x-acl">perdición; perdicion</AUni> -<AUni ws="qvm-x-akh">perdición; perdicion</AUni> -<AUni ws="qvm-x-akl">perdición; perdicion</AUni> -<AUni ws="qvm-x-ame">perdición; perdicion</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+perdición.1</AUni> -<AUni ws="qvm-x-acl">+perdición.1</AUni> -<AUni ws="qvm-x-akh">+perdición.1</AUni> -<AUni ws="qvm-x-akl">+perdición.1</AUni> -<AUni ws="qvm-x-ame">+perdición.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.790" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="df0185e3-4bcf-4108-95bf-ef8f65260080" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+perdición.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e090c1bc-03ec-4c35-b095-b6bcaf4090a6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d6fad191-1428-450e-98c8-f5523996ed13" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +perdición.1 
\entryTyp root 
\gENG 
\gSPN 
\e +perdición.1 
\c N0 
\mp +FinalC 
\ach perdición / _# 
\ach perdicion / ~_# 
\akh perdición / _# 
\akh perdicion / ~_# 
\acl perdición / _# 
\acl perdicion / ~_# 
\akl perdición / _# 
\akl perdicion / ~_# 
\ame perdición / _# 
\ame perdicion / ~_# 
\i DEU 22.19 Nircurmi Israel jipashta mala fämaman churar perdicionta rurashganpita pägatsenga pachac (100) yorag guellayta. 
\i 2SA 13.12 Tsaynog niptin Tamar caynog nergan: <<¡Imanaycanquitag, turi! Ama perdicionta ruramaytsu. Israel nacionchöga tsaynog manami rurantsitsu. Tsaynog desonramashpayquega pasaypa jutsatachari ruranquipag.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="ab520d54-2664-4dda-945e-d025f7bf6bb8" ownerguid="43873b41-c559-435d-ad89-ffab5c2448eb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="ab52bd72-851a-4989-92eb-40f5c1118148" ownerguid="7a26a6e3-5fd9-4921-a5c6-5962f9011330"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ab538bab-0c31-4e14-b31f-049c662531d1" ownerguid="44dc42e4-e9c7-4aa9-ac9b-1008385244b1"> -<ExampleWords> -<AUni ws="en">parent, folks</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to your parents?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ab54655b-4578-4f30-bf60-5dca06d576a6" ownerguid="1b73b2bf-9582-4f8a-822a-e0d020272c7c"> -<ExampleWords> -<AUni ws="en">pull ahead</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to moving faster than the person following you?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ab5529a2-6aa0-4b87-8e5d-fb822ed9ddb8" ownerguid="30fff450-1aa5-4993-9c14-c8019a5f072e"> -<ExampleWords> -<AUni ws="en">on the contrary, contrary to, in contrast, as opposed to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words indicate that the opposite of something is true?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ab563b0a-b739-432e-b35d-3be8f00a5250" ownerguid="2855cda6-a031-46aa-bf3f-718d94374d46"> -<ExampleWords> -<AUni ws="en">boo (v), boo (n), booing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What do people do when they are protesting against something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ab56d718-80f7-47aa-a757-ad9759954431" ownerguid="0448c78b-dbb7-417c-afc5-b227a1475825"> -<ExampleWords> -<AUni ws="en">arrest, apprehend, apprehension, bust, capture, catch, collar, detain, detention, nab, pick up, seize, seizure, take away, take into custody, take prisoner, trap</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the police arresting a criminal?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ab58163f-f65c-4ddb-bed1-b2f23e19f441" ownerguid="5f9ebdd8-3f47-46a0-8ef1-8324d1a3cf03"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">high</AUni> -<AUni ws="es">sumo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="06e5d5ef-c079-4bcc-9678-3a35b7ea6682" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ab5c3d34-5052-4f6c-b937-25823f19b4d0" ownerguid="e080687b-0900-4dd0-9677-e3aaa3eae641"> -<ExampleWords> -<AUni ws="en">in other words, let me explain, that is, to put it another way, put it like this, put it this way, let me rephrase that</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words do people use when they start to explain something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ab5c75d6-84d5-4366-916a-5b019cfa11c1" ownerguid="fb277c1a-3699-4713-b9e1-14dd19d2815d"> -<Form> -<AUni ws="qvm-x-ach">wachwa</AUni> -<AUni ws="qvm-x-acl">wachwa</AUni> -<AUni ws="qvm-x-akh">wachwa</AUni> -<AUni ws="qvm-x-akl">wachwa</AUni> -<AUni ws="qvm-x-ame">wachwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="ab5f2042-21a2-45fb-ac8f-7cd2481bd104" ownerguid="ac20049d-d2e8-4dd5-9642-672edecad64f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ab5f7f01-e7b0-4c4c-b4b0-86895b05f940" ownerguid="e0a8e1d9-c43e-4092-a8dc-476a3417924e"> -<ExampleWords> -<AUni ws="en">overconfident</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe someone who is too confident?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ab646829-738c-4106-82a3-de84184eaebc" ownerguid="f5ff1715-8282-408b-92f6-6ac96194bb5d"> -<Form> -<AUni ws="qvm-x-ach">tsicashag</AUni> -<AUni ws="qvm-x-acl">tsicashag</AUni> -<AUni ws="qvm-x-akh">tsikashaq</AUni> -<AUni ws="qvm-x-akl">tsikashaq</AUni> -<AUni ws="qvm-x-ame">tsikashaq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="ab65fb70-328e-4285-af71-5db817087dc3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">logtu</AUni> -<AUni ws="qvm-x-acl">logtu; logtu; logto</AUni> -<AUni ws="qvm-x-akh">loqtu</AUni> -<AUni ws="qvm-x-akl">loqtu; loqtu; loqto</AUni> -<AUni ws="qvm-x-ame">luqtu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lluqtu</AUni> -<AUni ws="qvm-x-acl">*lluqtu</AUni> -<AUni ws="qvm-x-akh">*lluqtu</AUni> -<AUni ws="qvm-x-akl">*lluqtu</AUni> -<AUni ws="qvm-x-ame">*lluqtu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.235" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="48478320-e082-489a-8db8-8c0b48daa2cf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lluqtu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dc697acc-5643-4ecd-bf3f-0ee5d3604a38" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6217d38f-eb4f-44d1-aafc-2fc3f7041d34" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lluqtu 
\entryTyp root 
\gENG watery 
\gSPN aguanoso 
\e *lluqtu 
\c N0 
\ach logtu 
\akh loqtu 
\acl logtu / _# 
\acl logtu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl logto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl loqtu / _# 
\akl loqtu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl loqto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame luqtu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ab69ddd9-488b-4b37-9208-651a1bc80725" ownerguid="efd03c89-bf8b-4d46-a921-06cc06f28356"> -<ExampleWords> -<AUni ws="en">full, complete, enthusiastic, whole-hearted, with reservations, half-hearted, hesitant, reserved, doesn't have his heart in it, involved</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a person's participation in a group?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ab6af991-6bad-4b14-a89a-1844bdcad783" ownerguid="4f206556-90aa-444c-ac3d-27800ff88da9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ab6c0d81-9bbc-4d66-954d-b07f0045a004" ownerguid="f545e3a3-5c07-42d5-8796-216271c338c5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">path</AUni> -<AUni ws="es">sendero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b98fc44d-e310-467c-a840-40ba40fee4c4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ab6dd916-7d66-4576-9d4b-a1f89f57ddd0" ownerguid="f7960e84-5af9-4999-9028-783058aa8c5c"> -<ExampleWords> -<AUni ws="en">total, blanket, overall, global, all-embracing, universal, all-pervading, complete, comprehensive, exhaustive, full, general, indiscriminate, sweeping, thorough, thoroughgoing, unmitigated, unqualified, utter, widespread, worldwide</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that affects or includes everything?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ab6df95e-b55d-42fc-a8d1-c08d24aefd7f" ownerguid="2d71c797-cdda-4bc1-99e6-6bc256bfbb3c"> -<Form> -<AUni ws="qvm-x-ach">plätu</AUni> -<AUni ws="qvm-x-acl">plätu; plätu; pläto</AUni> -<AUni ws="qvm-x-akh">plätu</AUni> -<AUni ws="qvm-x-akl">plätu; plätu; pläto</AUni> -<AUni ws="qvm-x-ame">plätu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="ab6edc0a-0f28-4f0a-9260-26fed523be41"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wiscul</AUni> -<AUni ws="qvm-x-acl">wiscol</AUni> -<AUni ws="qvm-x-akh">wiskul</AUni> -<AUni ws="qvm-x-akl">wiskol</AUni> -<AUni ws="qvm-x-ame">wiskul</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wiskul.1</AUni> -<AUni ws="qvm-x-acl">*wiskul.1</AUni> -<AUni ws="qvm-x-akh">*wiskul.1</AUni> -<AUni ws="qvm-x-akl">*wiskul.1</AUni> -<AUni ws="qvm-x-ame">*wiskul.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.699" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1c9a9969-86f6-41a3-a0eb-7e4a38310c34" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wiskul.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fd5534e3-7ac9-49c0-843a-82a7f1bf3a9b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2a54c162-d75e-403e-8e9a-8c70e14453a4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wiskul.1 
\entryTyp root 
\gENG turkey.buzzard 
\gSPN gallinazo 
\e *wiskul.1 
\c N0 
\mp +FinalC 
\ach wiscul 
\akh wiskul 
\acl wiscol 
\akl wiskol 
\ame wiskul 
\mcc *wiskul.1 / _ [SuffixesWhichLowerDM] / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ab6fd3b2-80ce-4357-8f68-0ea1668edf81" ownerguid="7f798c10-5a3f-4979-baf1-ced2dc457311"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mayordomo</AUni> -<AUni ws="es">mayordomo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="831f5ac9-b82a-4d35-9e4c-cafbc7fcdfa2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="ab746411-9fcb-4288-b7c6-951aa057e8d7" ownerguid="57fdd16c-87d1-4ad5-8b26-7b00a4fd6b1f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">drink</AUni> -<AUni ws="es">tomar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="79498187-df3a-4313-ad1c-997e4c801e23" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ab7570a3-bd4c-498d-a34e-a212d45b9096" ownerguid="38473463-4b92-4681-8fd0-0aca0342e88a"> -<ExampleWords> -<AUni ws="en">flatworm, liver fluke, intestinal worm, tapeworm</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to flatworms (phylum Platyhelminthes)?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ab77a580-6985-4995-961e-5ec197e6f415" ownerguid="902537c9-36c5-4e5f-a7b1-68f0a27408fb"> -<Form> -<AUni ws="qvm-x-ach">panga</AUni> -<AUni ws="qvm-x-acl">panga</AUni> -<AUni ws="qvm-x-akh">panqa</AUni> -<AUni ws="qvm-x-akl">panqa</AUni> -<AUni ws="qvm-x-ame">panqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="ab783f79-d67e-45b3-80af-c947cd47cd51" ownerguid="ecce310f-de4b-43f0-8ed6-c18b70575b7a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="MoStemMsa" guid="ab7be64b-8113-400a-88ba-464387c07995" ownerguid="b0546721-ff38-416a-8a42-36f6d6fe7313"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ab7c2282-39ed-4563-8050-7549191825b0" ownerguid="8405cd70-5754-40ae-be22-a54327bcc408"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bandit</AUni> -<AUni ws="es">bandolero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="99339809-686d-4346-b7df-cc8d8d3a1adb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ab7c520a-678e-4e5e-8ae5-48344b2a64a0" ownerguid="d086c2ad-2d11-4250-a25a-dc6538439db6"> -<ExampleWords> -<AUni ws="en">for two, double, two-man</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something used by two people?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ab800be7-f0ea-457e-8a9f-760c9af2e004" ownerguid="6254b880-b02b-4317-9add-fbae575c6186"> -<Form> -<AUni ws="qvm-x-ach">escrïba</AUni> -<AUni ws="qvm-x-acl">escrïba</AUni> -<AUni ws="qvm-x-akh">escrïba</AUni> -<AUni ws="qvm-x-akl">escrïba</AUni> -<AUni ws="qvm-x-ame">escrïba</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="ab80b556-2c7d-4e75-a58d-f5bb58b2feef"> -<Analyses> -<objsur guid="1e4daec2-7641-4a60-b0e0-25b4f250ba5f" t="o" /> -<objsur guid="267e9636-39da-4a81-afeb-c468811f18e3" t="o" /> -<objsur guid="30fa4dfc-c21d-46f6-8fd8-55b6c9f3577b" t="o" /> -<objsur guid="3448a62a-7774-463d-a8cd-af8cfa753338" t="o" /> -<objsur guid="604ab9e6-0ad7-4a0d-b166-5d7150d8e6c9" t="o" /> -<objsur guid="70103b13-f5f0-48d4-8d4e-d6e0268967aa" t="o" /> -<objsur guid="9613303e-9302-4793-9c06-cc44cff4b0ae" t="o" /> -<objsur guid="c849a559-cbc7-4b16-b7e7-8b8d19483c69" t="o" /> -<objsur guid="d52a0cc9-7aa4-4a2a-a8a0-406da6d392d4" t="o" /> -<objsur guid="f2899cde-08e5-4930-9f1b-b4ad575b7411" t="o" /> -</Analyses> -<Checksum val="-683664531" /> -<Form> -<AUni ws="qvm-x-akh">qarqutsin</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="ab83eb45-ee8a-4937-a26f-9781f74bc2f0" ownerguid="e0e4dd0f-4743-4439-a6db-6e410ea088ca"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="ab862032-421f-4807-8b1f-61cefc110c2a" ownerguid="3a28ab73-2847-44a4-97ed-7129269f1366"> -<ExampleWords> -<AUni ws="en">be kneeling, be down on your knees</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to being in a kneeling position?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ab88c083-514f-4890-b2b5-f54d084505e9" ownerguid="09ba0db6-0881-4df8-8508-be23625f17fb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">follow</AUni> -<AUni ws="es">seguir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b51f3a5c-4030-4c4c-8ac1-f6ab88c4feab" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ab8bede6-3526-4117-bb38-269328000049" ownerguid="a7dda087-ed7a-41d6-a202-5fcb2cff8d37"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ab8c4921-2745-4ae6-9c38-cb494dc24844" ownerguid="db2232d9-8b17-4920-936f-2b6249c6f7fa"> -<ExampleWords> -<AUni ws="en">steal, filch, help yourself to, lift, nick, pinch, purloin, rip off, rustle, take, walk off with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to stealing something?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="ab8ca07c-b23c-43dc-b705-7fe34ddf6d4d" ownerguid="ac2e424b-6aee-4031-8864-7b3f4a6fb5a3"> -<Abbreviation> -<AUni ws="en">3.5.1.3.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.162" /> -<DateModified val="2022-9-23 16:55:8.162" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to exaggerating--reporting information but saying something untrue that makes the information seem bigger or more important than it really is.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Exaggerate</AUni> -</Name> -<Questions> -<objsur guid="2942b38b-b928-4712-a0f6-441270c4ca50" t="o" /> -<objsur guid="7de3d15b-e26a-4f2f-a86c-f96b5c89f201" t="o" /> -<objsur guid="b0e08da6-d6e5-43ce-8d66-e4d9a0b79de3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="ab8d8dc9-eeb7-41ff-93a9-cbbd50b89a73" ownerguid="7bf05f4e-909f-40ca-b742-9be21eba9fbb"> -<Abbreviation> -<AUni ws="en">9.4.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.700" /> -<DateModified val="2022-9-23 16:55:8.700" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being incapable of doing something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Can't</AUni> -</Name> -<Questions> -<objsur guid="2c682304-727e-43d6-a691-645a618e2cb0" t="o" /> -<objsur guid="8eb1ccdf-8344-4264-b1b2-b1c8f59d2125" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="ab8f12fb-57b0-4d61-8ae0-50d7cbc412df" ownerguid="b4aa4bbd-8abf-4503-96e4-05c75efd23d5"> -<Abbreviation> -<AUni ws="en">1.1.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.932" /> -<DateModified val="2022-9-23 16:55:7.932" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to snow, ice, sleet, and hail.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Snow, ice</AUni> -</Name> -<Questions> -<objsur guid="69b81902-777b-4cfc-872a-f6c7b714e6d2" t="o" /> -<objsur guid="63b3e7d5-a767-4b18-894c-dde6921998b7" t="o" /> -<objsur guid="402b412b-fe37-451d-82a3-35b24b824630" t="o" /> -<objsur guid="5db4aac1-f39c-4359-ad60-df9d4e13ec3f" t="o" /> -<objsur guid="ce3a6f22-cda8-4e8d-8053-bc305c160bc8" t="o" /> -<objsur guid="e8afd4dd-752e-4a64-8ddc-32b92248f1e6" t="o" /> -<objsur guid="d90eb449-7f3c-4bcc-a1c8-264eeadcf89f" t="o" /> -<objsur guid="bb813b80-8327-4d50-bde2-20b5ecc9bf8c" t="o" /> -<objsur guid="94f82e12-dfa2-4283-9b07-7b89f7c5d649" t="o" /> -<objsur guid="9a964966-e240-4822-8e1f-4719351fdaf1" t="o" /> -<objsur guid="b47f4c8b-2d0d-4237-9868-ee2265187364" t="o" /> -<objsur guid="ec37d4e8-b24a-4b03-a3ef-8cc8a506fa18" t="o" /> -<objsur guid="1feb47f1-e410-406f-8bfc-f17ef31cb2a8" t="o" /> -<objsur guid="05a6ca86-482e-4e85-8dd8-5e633b5ff2e4" t="o" /> -<objsur guid="0fba4030-33ca-4602-b084-6c6cf274247d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="ab8f40ea-0cf0-4d08-b7c3-2e637fab2b3d" ownerguid="0f568473-880d-43bd-b5ce-590100fdcaf6"> -<ExampleWords> -<AUni ws="en">eat, consume, ingest, partake</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to eating food?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="ab8f5391-ad8b-42dc-a43c-22590a09ce77" ownerguid="2470ad05-636e-4c85-96ab-cd880da58741"> -<Abbreviation> -<AUni ws="en">4.9.7.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.304" /> -<DateModified val="2022-9-23 16:55:8.304" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words used in Islam.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Islam</AUni> -</Name> -<Questions> -<objsur guid="c3e0b0eb-cbbf-4474-9297-3db891396586" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="ab924245-2dde-469e-898c-ccf199695cf2" ownerguid="7556a257-3703-40d3-91d3-c891fb250947"> -<ExampleWords> -<AUni ws="en">supernatural, magic, miracle, miraculous, paranormal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to what is beyond our senses or ability?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ab930688-f158-44d3-849d-ac9dfb7a0b1e" ownerguid="a29ebbfa-efa5-4143-b430-9bc2c4151c25"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">scream</AUni> -<AUni ws="es">gritar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ec65567c-b797-4b3a-b07e-28a1b2367631" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="ab97c5c0-ae29-4cf8-9916-f5caae9368ce" ownerguid="267e9636-39da-4a81-afeb-c468811f18e3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="ab98496d-8c4a-4be9-8086-ec5eaf8bde91" ownerguid="411b3d52-60b2-47b4-844d-bbfdfa6a1c34"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="ab99f8d0-f8c1-46a0-b1e5-61b876e7bfa9" ownerguid="2e998270-a158-4bf6-98fa-000ebd3facee"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="ab9b3cfa-5f39-4e34-87b5-9d87ea77dbc1" ownerguid="b7a04cf8-e33b-4a8f-b3c7-78c322732100"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">noga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">noga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">noqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">noqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nuqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="de5c3d10-074c-49d9-8785-6267d1e823c5" t="r" /> -</Morph> -<Msa> -<objsur guid="e6df1eee-926d-4e16-890a-be63f1161ca0" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="ab9e950f-31ce-4e31-8dda-e2c99e2165a2" ownerguid="17102138-b97a-4f1d-81bc-9be4af90889e"> -<ExampleWords> -<AUni ws="en">loser, losing side, defeated army</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the person or group that loses?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="aba0a8e3-0fc6-49b5-b00d-416825e8b03f" ownerguid="32bebe7e-bdcc-4e40-8f0a-894cd6b26f25"> -<ExampleWords> -<AUni ws="en">robust, have a strong constitution</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who is healthy and doesn't get sick?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="aba20795-58e7-4dcd-b428-2a3b5e6a0777" ownerguid="ece72519-f223-4968-b92e-80b654ded50e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">what.is.vain</AUni> -<AUni ws="es">lo.que.es.nada</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d323219f-b22a-4001-abcd-e39fa0a68fcb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="StStyle" guid="aba229f3-ca42-4727-a903-0abc3d418607" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="14" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Dictionary-CrossReferences</Uni> -</Name> -<Rules> -<Prop bold="invert"></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<Usage> -<AUni ws="en">Used for the headwords that occur in cross references to other entries.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="CmSemanticDomain" guid="aba3f7f1-9e13-4b48-acbb-3bf6d6bfa0e8" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<Abbreviation> -<AUni ws="en">8.2.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.599" /> -<DateModified val="2022-9-23 16:55:8.599" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to weighing something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>86 Weight; 86B Pound, Talent</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Weigh</AUni> -</Name> -<Questions> -<objsur guid="3f39f3b2-ee37-4225-a344-2a0d71dd8597" t="o" /> -<objsur guid="970859b7-c3cb-4a02-ae6d-8b7a31efc2ef" t="o" /> -<objsur guid="9d58827b-4784-4ebd-84ef-f3a530f49459" t="o" /> -<objsur guid="2bab8a1d-05f1-4062-8bb9-876b35267916" t="o" /> -<objsur guid="3092cc01-6591-4ea3-b543-7c5f4f9df9bd" t="o" /> -<objsur guid="1689d952-fd70-4fbf-95ee-1ea7e8ab0150" t="o" /> -<objsur guid="3d85b542-b26a-4cd4-a930-f04091213c99" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="d574c970-6834-4566-ae37-f42c7e95483b" t="o" /> -<objsur guid="6e7d10f8-6da5-4a8a-a06d-952511194105" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="aba57a9f-97e9-4620-882c-fde6a929879a" ownerguid="3ccc3a21-07c8-4983-a044-e3c74b538135"> -<ExampleWords> -<AUni ws="en">how short, be (two inches) (too) short</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words indicate how short something is?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="aba62efa-b83b-442b-8e16-df72eee20258"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">abe:tu</AUni> -<AUni ws="qvm-x-acl">abe:tu; abe:tu; abe:to</AUni> -<AUni ws="qvm-x-akh">abe:tu</AUni> -<AUni ws="qvm-x-akl">abe:tu; abe:tu; abe:to</AUni> -<AUni ws="qvm-x-ame">abe:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+abeto</AUni> -<AUni ws="qvm-x-acl">+abeto</AUni> -<AUni ws="qvm-x-akh">+abeto</AUni> -<AUni ws="qvm-x-akl">+abeto</AUni> -<AUni ws="qvm-x-ame">+abeto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.617" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2fd90f74-3ec1-4965-8d42-c5b0727951e6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+abeto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5028ca70-81ac-4ad1-9bbc-2edc34923eeb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="67a6edcb-b36a-419c-bbc6-97be9d07c17b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +abeto 
\entryTyp root 
\gENG fir 
\gSPN 
\e +abeto 
\c N0 
\ach abe:tu 
\akh abe:tu 
\acl abe:tu / _# 
\acl abe:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl abe:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl abe:tu / _# 
\akl abe:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl abe:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame abe:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="abaadadb-ea0a-49cc-8ce1-61824f6ee509" ownerguid="66e2806d-3e16-4fb2-a158-7f3b4dd5d9af"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John <is from> New York.; I<'m from> California.; <from> the tribe of; <from> America</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">from, be from (the tribe, or country)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate the place where someone was born?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="abab24dd-3897-4b19-a162-93d5230163a6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pilta</AUni> -<AUni ws="qvm-x-acl">pilta</AUni> -<AUni ws="qvm-x-akh">pilta</AUni> -<AUni ws="qvm-x-akl">pilta</AUni> -<AUni ws="qvm-x-ame">pilta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pillta.n</AUni> -<AUni ws="qvm-x-acl">*pillta.n</AUni> -<AUni ws="qvm-x-akh">*pillta.n</AUni> -<AUni ws="qvm-x-akl">*pillta.n</AUni> -<AUni ws="qvm-x-ame">*pillta.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.830" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1ad87c2c-1509-49e1-aef3-51a40a0fdd35" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pillta.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c64c250d-41cc-4558-acc1-12909206b57a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c0f01f85-c7fe-426e-976d-7a9b12285f3e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pillta.n 
\entryTyp root 
\gENG braid 
\gSPN trensa 
\e *pillta.n 
\c N0 
\ach pilta 
\akh pilta 
\acl pilta 
\akl pilta 
\ame pilta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="abac6c68-8666-4549-89a2-af046e1351f2" ownerguid="8594cb26-9f3c-48f5-b00b-f055eb5a5e61"> -<ExampleWords> -<AUni ws="en">rioter, mob, rabble</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to people who are rioting?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="abadfe44-ccba-40b3-8d0b-8f9bb846c2e9" ownerguid="a128788d-9e04-47fd-b3ca-7d8adc3ceae8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="abaf5ed9-480f-4862-8c25-3bb67a84b955" ownerguid="31b314be-236e-4854-b921-4d416a5e66ce"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="abaff495-e781-4995-a3f9-74d312b0c5ad" ownerguid="08788e9a-93b8-4a2e-ab01-dea177f061e8"> -<ExampleWords> -<AUni ws="en">first course, main course</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the parts of a feast?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="abb0be91-7836-4342-aeba-c6566e860c94" ownerguid="57e367f4-7029-4916-a700-791db32b4745"> -<ExampleWords> -<AUni ws="en">thrifty, economical, frugal, careful with your money</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe someone who does not spend a lot of money?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="abb2e81d-b19e-4a29-b110-3e9125e73635" ownerguid="306707d2-e4e5-4b16-96b4-09fa5c1c1984"> -<Form> -<AUni ws="qvm-x-ach">selläma</AUni> -<AUni ws="qvm-x-acl">selläma</AUni> -<AUni ws="qvm-x-akh">selläma</AUni> -<AUni ws="qvm-x-akl">selläma</AUni> -<AUni ws="qvm-x-ame">silläma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="abb362dd-be9e-4508-a818-32afb7b9acd1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">formal</AUni> -<AUni ws="qvm-x-acl">formal</AUni> -<AUni ws="qvm-x-akh">formal</AUni> -<AUni ws="qvm-x-akl">formal</AUni> -<AUni ws="qvm-x-ame">formal</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+formal</AUni> -<AUni ws="qvm-x-acl">+formal</AUni> -<AUni ws="qvm-x-akh">+formal</AUni> -<AUni ws="qvm-x-akl">+formal</AUni> -<AUni ws="qvm-x-ame">+formal</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.578" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="22c9a570-6d24-4a71-bf75-ed03f2a5fabf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+formal</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d00a0361-c095-4245-8dfa-6ba3eea9f462" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a3643663-29d6-4f6e-b379-4d5e99e22d22" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +formal 
\entryTyp root 
\gENG 
\gSPN 
\e +formal 
\c N0 
\mp +FinalC 
\ach formal 
\akh formal 
\acl formal 
\akl formal 
\ame formal</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="abb41b18-4eb8-459d-90bd-8d833411cc09" ownerguid="28a68cea-9128-4d5c-8542-8df38c907310"> -<ExampleWords> -<AUni ws="en">freedman</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to someone who has been set free?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="abb6b608-55ff-4c7e-9cf3-4f125135c7d3" ownerguid="7158c621-c46e-4173-80c1-188f514a920f"> -<ExampleWords> -<AUni ws="en">deny, disavow, disclaim</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to refusing to admit something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="abb855c3-ed7c-4069-bc57-5d96bdcde4b5" ownerguid="8a81b9bc-9c66-4d57-a2d1-2e592604c4b1"> -<ExampleWords> -<AUni ws="en">swarm, teem, be teeming with, be swarming with, be crawling with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a place being full of animals or insects?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="abbadf39-6727-4a3e-b6cd-c0fa98520d10"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">palme:ra</AUni> -<AUni ws="qvm-x-acl">palme:ra</AUni> -<AUni ws="qvm-x-akh">palme:ra</AUni> -<AUni ws="qvm-x-akl">palme:ra</AUni> -<AUni ws="qvm-x-ame">palme:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+palmera</AUni> -<AUni ws="qvm-x-acl">+palmera</AUni> -<AUni ws="qvm-x-akh">+palmera</AUni> -<AUni ws="qvm-x-akl">+palmera</AUni> -<AUni ws="qvm-x-ame">+palmera</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.669" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5308bf88-03a7-4010-8391-743c664c5784" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+palmera</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2c0e4f54-fb2b-455d-84c0-c0b9ed42926f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d8c9a9f2-cd74-4277-8c64-d5f168770bad" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +palmera 
\entryTyp root 
\gENG palm.tree 
\gSPN palmera 
\e +palmera 
\c N0 
\ach palme:ra 
\akh palme:ra 
\acl palme:ra 
\akl palme:ra 
\ame palme:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="abbbc2b7-c0b6-4de1-a422-429ed63a9a76" ownerguid="46a35455-4f89-454c-bd66-75683efd6049"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="abbc19d7-fe02-4b69-852c-c48181c7eebd" ownerguid="e2a1632b-0456-4488-bbad-5a1db5115bde"> -<Form> -<AUni ws="qvm-x-ach">deporti; deporte</AUni> -<AUni ws="qvm-x-acl">deporti; deporti; deporte</AUni> -<AUni ws="qvm-x-akh">deporti; deporte</AUni> -<AUni ws="qvm-x-akl">deporti; deporti; deporte</AUni> -<AUni ws="qvm-x-ame">deporti; deporte</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="abbec739-657c-4b04-9e4f-8dd9c2a1b43b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rue:da</AUni> -<AUni ws="qvm-x-acl">rue:da</AUni> -<AUni ws="qvm-x-akh">rue:da</AUni> -<AUni ws="qvm-x-akl">rue:da</AUni> -<AUni ws="qvm-x-ame">rue:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rueda</AUni> -<AUni ws="qvm-x-acl">+rueda</AUni> -<AUni ws="qvm-x-akh">+rueda</AUni> -<AUni ws="qvm-x-akl">+rueda</AUni> -<AUni ws="qvm-x-ame">+rueda</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.388" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="35bf9038-d3ab-4f6d-9c15-fb26035f4876" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rueda</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="33ce4ed9-4642-42b1-829b-bbe1596ec327" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="48a588f0-1701-4c14-acec-75005c8a6dac" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rueda 
\entryTyp root 
\gENG 
\gSPN 
\e +rueda 
\c N0 
\ach rue:da 
\akh rue:da 
\acl rue:da 
\akl rue:da 
\ame rue:da</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="abc378a7-42f5-4a04-aa74-d4b15ba502d6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ejercitu; ejército</AUni> -<AUni ws="qvm-x-acl">ejercitu; ejercitu; ejercito</AUni> -<AUni ws="qvm-x-akh">ejercitu; ejército</AUni> -<AUni ws="qvm-x-akl">ejercitu; ejercitu; ejercito</AUni> -<AUni ws="qvm-x-ame">ejercitu; ejército</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ejército</AUni> -<AUni ws="qvm-x-acl">+ejército</AUni> -<AUni ws="qvm-x-akh">+ejército</AUni> -<AUni ws="qvm-x-akl">+ejército</AUni> -<AUni ws="qvm-x-ame">+ejército</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.447" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="874945d6-b395-4a6d-b487-89db615def75" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ejército</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cf185089-9aaf-4de4-9a29-02a43f1e01ab" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f691e303-f700-4e58-9dcd-f7ab86946e51" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ejército 
\entryTyp root 
\gENG 
\gSPN 
\e +ejército 
\c N0 
\ach ejercitu / ~_# 
\ach ejército / _# 
\akh ejercitu / ~_# 
\akh ejército / _# 
\acl ejercitu / ~_# 
\acl ejercitu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ejercito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ejercitu / ~_# 
\akl ejercitu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ejercito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ejercitu / ~_# 
\ame ejército / _# 
\i PSA 103.21 Tayta Diosta sirveg y munashganta rurag ejercitunpis, payta agradëcicäriy.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmFilter" guid="abc71f1c-dd0b-4f57-add8-9200ac20a653" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="a7d421e1-1dd3-11d5-b720-0010a4b54856" /> -<ClassId val="3018" /> -<ColumnInfo> -<Uni>replace me</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>kstidNoteMultiFilter</Uni> -</Name> -<PromptText> -<Uni>Setup a filter that handles multiple criteria:</Uni> -</PromptText> -<Rows> -<objsur guid="1b4d1c03-9321-415b-a560-fe6831f317be" t="o" /> -</Rows> -<ShowPrompt val="1" /> -<Type val="0" /> -</rt> -<rt class="LangProject" guid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<AffixCategories> -<objsur guid="be6a7290-ea5e-11de-98a2-0013722f8dec" t="o" /> -</AffixCategories> -<AnalysisWss> -<Uni>en es</Uni> -</AnalysisWss> -<AnalyzingAgents> -<objsur guid="1257a971-fcef-4f06-a5e2-c289de5aaf72" t="o" /> -<objsur guid="5093d7d7-4f18-4aad-8c86-88389476df15" t="o" /> -<objsur guid="67e9b8bf-c312-458e-89c3-6e9326e48aa0" t="o" /> -<objsur guid="9303883a-ad5c-4ccf-97a5-4add391f8dcb" t="o" /> -</AnalyzingAgents> -<AnnotationDefs> -<objsur guid="ea346c01-022f-4f34-b938-219ce7b65b73" t="o" /> -</AnnotationDefs> -<Annotations> -<objsur guid="d20e73e6-f549-4382-b190-dcf89f2e8123" t="o" /> -<objsur guid="d4e76b58-c50a-4329-aac7-404797114889" t="o" /> -</Annotations> -<AnthroList> -<objsur guid="d87ba7c6-ea5e-11de-9dd2-0013722f8dec" t="o" /> -</AnthroList> -<ConfidenceLevels> -<objsur guid="d99e8542-ea5e-11de-9301-0013722f8dec" t="o" /> -</ConfidenceLevels> -<CurAnalysisWss> -<Uni>en es</Uni> -</CurAnalysisWss> -<CurPronunWss> -<Uni>qvm-x-ach</Uni> -</CurPronunWss> -<CurVernWss> -<Uni>qvm-x-akh qvm-x-acl qvm-x-akl qvm-x-ach qvm-x-ame</Uni> -</CurVernWss> -<DateCreated val="2022-09-23 16:55:11.757" /> -<DateModified val="2022-12-14 16:24:47.308" /> -<DiscourseData> -<objsur guid="c3fe8c1e-ea5e-11de-9e45-0013722f8dec" t="o" /> -</DiscourseData> -<Education> -<objsur guid="d70c7f6e-ea5e-11de-9dc3-0013722f8dec" t="o" /> -</Education> -<FilePathsInTsStrings> -<objsur guid="156eff82-9e78-4f5a-b187-5baf85db7cae" t="o" /> -</FilePathsInTsStrings> -<Filters> -<objsur guid="abc71f1c-dd0b-4f57-add8-9200ac20a653" t="o" /> -<objsur guid="b887abc2-ea5e-11de-8ed2-0013722f8dec" t="o" /> -<objsur guid="b8a90c86-ea5e-11de-9e66-0013722f8dec" t="o" /> -<objsur guid="b8ca6d4a-ea5e-11de-9350-0013722f8dec" t="o" /> -<objsur guid="b8ebce0e-ea5e-11de-9a5f-0013722f8dec" t="o" /> -<objsur guid="b90d2ed2-ea5e-11de-87ca-0013722f8dec" t="o" /> -<objsur guid="b92e8f8c-ea5e-11de-8dff-0013722f8dec" t="o" /> -<objsur guid="b94ff050-ea5e-11de-8288-0013722f8dec" t="o" /> -<objsur guid="b9715114-ea5e-11de-9a92-0013722f8dec" t="o" /> -<objsur guid="b992b1d8-ea5e-11de-806d-0013722f8dec" t="o" /> -<objsur guid="b9b4129c-ea5e-11de-8aff-0013722f8dec" t="o" /> -<objsur guid="b9d57356-ea5e-11de-9799-0013722f8dec" t="o" /> -<objsur guid="ba02bfd2-ea5e-11de-96d4-0013722f8dec" t="o" /> -<objsur guid="ba242096-ea5e-11de-8dd3-0013722f8dec" t="o" /> -<objsur guid="ba516d08-ea5e-11de-91eb-0013722f8dec" t="o" /> -<objsur guid="ba72cdcc-ea5e-11de-9f45-0013722f8dec" t="o" /> -<objsur guid="ba942e86-ea5e-11de-9772-0013722f8dec" t="o" /> -<objsur guid="bab58f4a-ea5e-11de-9fec-0013722f8dec" t="o" /> -<objsur guid="bad6f00e-ea5e-11de-9708-0013722f8dec" t="o" /> -<objsur guid="baf850d2-ea5e-11de-9ccf-0013722f8dec" t="o" /> -<objsur guid="bb259d44-ea5e-11de-8dd1-0013722f8dec" t="o" /> -<objsur guid="bb46fe08-ea5e-11de-9314-0013722f8dec" t="o" /> -<objsur guid="bb744a7a-ea5e-11de-881b-0013722f8dec" t="o" /> -<objsur guid="bb7dd3d8-ea5e-11de-8cc5-0013722f8dec" t="o" /> -<objsur guid="bb89bf90-ea5e-11de-9773-0013722f8dec" t="o" /> -<objsur guid="bb95ab3e-ea5e-11de-94f6-0013722f8dec" t="o" /> -</Filters> -<GenreList> -<objsur guid="c06b099c-ea5e-11de-890c-0013722f8dec" t="o" /> -</GenreList> -<HomographWs> -<Uni>qvm-x-acl</Uni> -</HomographWs> -<LexDb> -<objsur guid="af26d792-ea5e-11de-8f7e-0013722f8dec" t="o" /> -</LexDb> -<LinkedFilesRootDir> -<Uni>%proj%\LinkedFiles</Uni> -</LinkedFilesRootDir> -<Locations> -<objsur guid="d887937e-ea5e-11de-9e1f-0013722f8dec" t="o" /> -</Locations> -<MorphologicalData> -<objsur guid="b80228bc-ea5e-11de-9d24-0013722f8dec" t="o" /> -</MorphologicalData> -<MsFeatureSystem> -<objsur guid="d6d5a99e-ea5e-11de-994c-0013722f8dec" t="o" /> -</MsFeatureSystem> -<Overlays> -<objsur guid="bfa2c518-ea5e-11de-8a81-0013722f8dec" t="o" /> -</Overlays> -<PartsOfSpeech> -<objsur guid="ecf8c677-320a-452c-85c0-1f0df87b5be5" t="o" /> -</PartsOfSpeech> -<People> -<objsur guid="d72de032-ea5e-11de-84f3-0013722f8dec" t="o" /> -</People> -<PhFeatureSystem> -<objsur guid="d6eb1eb4-ea5e-11de-89a2-0013722f8dec" t="o" /> -</PhFeatureSystem> -<PhonologicalData> -<objsur guid="be765e3e-ea5e-11de-9d42-0013722f8dec" t="o" /> -</PhonologicalData> -<Positions> -<objsur guid="d9b3fa4e-ea5e-11de-8cea-0013722f8dec" t="o" /> -</Positions> -<ResearchNotebook> -<objsur guid="d739cbea-ea5e-11de-85be-0013722f8dec" t="o" /> -</ResearchNotebook> -<Restrictions> -<objsur guid="d743553e-ea5e-11de-842a-0013722f8dec" t="o" /> -</Restrictions> -<Roles> -<objsur guid="d992998a-ea5e-11de-899e-0013722f8dec" t="o" /> -</Roles> -<SemanticDomainList> -<objsur guid="b32a39c4-43ff-4522-aed0-b2d5b8ad7157" t="o" /> -</SemanticDomainList> -<Status> -<objsur guid="d86632ba-ea5e-11de-8a58-0013722f8dec" t="o" /> -</Status> -<Styles> -<objsur guid="164123a0-ca12-4c44-bd69-d5fb9d4b1a0b" t="o" /> -<objsur guid="1b25e2a0-5f78-40d1-943a-2b14caccf860" t="o" /> -<objsur guid="1fafdfa6-34a7-4577-b4aa-0c6518af623a" t="o" /> -<objsur guid="23efa4cc-0347-4fc1-a33d-57b57ee852f9" t="o" /> -<objsur guid="25d17a96-4130-49c5-8f2b-497c1953556a" t="o" /> -<objsur guid="282f9ae7-d4dc-4c9b-93b5-413a7d3986b1" t="o" /> -<objsur guid="29e239ee-95f3-4c1e-97d7-e2a6794cd174" t="o" /> -<objsur guid="3191611c-41c6-4ecf-bcd5-a5084cc3e1f2" t="o" /> -<objsur guid="31d215a7-ac39-4d1c-be7d-88fe2b7c8d34" t="o" /> -<objsur guid="366e9470-26f7-4bdf-86e4-f829784c3113" t="o" /> -<objsur guid="3c8c511b-4683-4289-88d0-024f66540f6f" t="o" /> -<objsur guid="3eb5354a-9f55-4165-a411-eca7f9d2a845" t="o" /> -<objsur guid="3f844794-09d1-45fa-9d75-05c62e2b836d" t="o" /> -<objsur guid="4d6cffc4-254e-4ef7-b26b-41aab4bfbf48" t="o" /> -<objsur guid="4e5bf21d-f892-4382-a7a2-4bb9c5da8fcf" t="o" /> -<objsur guid="501c3363-065d-465a-baad-15d0787f9ded" t="o" /> -<objsur guid="507cb768-7f8a-471e-8776-8faf196f27a6" t="o" /> -<objsur guid="5ce84d6f-4e4c-45f8-8e77-555471f3efbe" t="o" /> -<objsur guid="674f0bdd-4240-49d7-9288-a6dcc130ff08" t="o" /> -<objsur guid="679ab46a-8a27-4449-91b1-edad14669b01" t="o" /> -<objsur guid="693aedeb-1f1a-4f1f-b6cd-4a2a96a1dc37" t="o" /> -<objsur guid="6de6e4d1-0c06-4102-86e2-82faf7bf9811" t="o" /> -<objsur guid="6ed2cb3d-f6db-4af5-9de9-75669ce26f46" t="o" /> -<objsur guid="6fab1eb3-500c-4b76-be30-a27b0b12883a" t="o" /> -<objsur guid="6fbc04a2-3664-4106-abf3-dfe699b97be5" t="o" /> -<objsur guid="740c5846-9d09-4109-806c-5357fede8712" t="o" /> -<objsur guid="7434c828-a430-4084-8a49-4be3bfa97068" t="o" /> -<objsur guid="7473c95b-26ed-4fda-8f31-c8aa0c25f2aa" t="o" /> -<objsur guid="77997501-47d3-4574-ae1d-7300107dfb73" t="o" /> -<objsur guid="7a194e30-4c8c-4934-83ad-b12ecc47a768" t="o" /> -<objsur guid="7d2c80cd-af87-4d56-8337-cfd389b775bb" t="o" /> -<objsur guid="7ff691e7-32f4-445d-acea-1ded6a6ac8ea" t="o" /> -<objsur guid="80a47ed1-1e29-40d4-9aa0-d3041a8ca9dc" t="o" /> -<objsur guid="879d3c6f-8e62-4887-a4af-27feb88c2af1" t="o" /> -<objsur guid="89670d4f-71d4-4878-b2ff-815e45512be1" t="o" /> -<objsur guid="905a485e-4b54-47eb-a8e9-1f86e9c25699" t="o" /> -<objsur guid="90b94e23-3e77-4460-94fd-c1997ed9a81f" t="o" /> -<objsur guid="9132811f-a2e6-43b1-92f2-6e2030bbea12" t="o" /> -<objsur guid="92e5dc56-317a-461d-a179-e9e005d6612a" t="o" /> -<objsur guid="945e6502-615b-4863-a18c-111e4d6b36c6" t="o" /> -<objsur guid="9795fb02-12d8-4d1e-9546-5f1bf1c848ea" t="o" /> -<objsur guid="9ece8f19-30f0-43a0-bf7b-9e5f33c6cea7" t="o" /> -<objsur guid="9fa82bd0-e797-4c40-88d7-cb591613b426" t="o" /> -<objsur guid="a5a1a249-b888-434d-a839-a2421ec50dbf" t="o" /> -<objsur guid="aba229f3-ca42-4727-a903-0abc3d418607" t="o" /> -<objsur guid="b169287b-53f7-4faa-a2c3-e382f72b845a" t="o" /> -<objsur guid="b93de5b9-556c-4651-8b9d-d3369fb8ebc8" t="o" /> -<objsur guid="bc5caa5e-6324-4935-8573-8378fc6cf6c9" t="o" /> -<objsur guid="cb0fbdb3-2ca2-473b-97bb-8f505e18010c" t="o" /> -<objsur guid="d80764cc-4d86-4e14-b217-d1b0a4dc3379" t="o" /> -<objsur guid="dbf212fe-a9ef-4cc8-a41f-7cad28a99bd3" t="o" /> -<objsur guid="dd807cae-4b18-4354-934d-99632b663f9e" t="o" /> -<objsur guid="f41be047-a4ee-402b-bcfe-9458e502e682" t="o" /> -<objsur guid="fb6450f5-626d-4fbf-ada5-4cfd5986b5b0" t="o" /> -</Styles> -<TextMarkupTags> -<objsur guid="c1af47dc-ea5e-11de-8e34-0013722f8dec" t="o" /> -</TextMarkupTags> -<TimeOfDay> -<objsur guid="d850bdae-ea5e-11de-985e-0013722f8dec" t="o" /> -</TimeOfDay> -<TranslationTags> -<objsur guid="d7f71649-e8cf-11d3-9764-00c04f186933" t="o" /> -</TranslationTags> -<VernWss> -<Uni>qvm-x-akh qvm-x-acl qvm-x-akl qvm-x-ach qvm-x-ame</Uni> -</VernWss> -</rt> -<rt class="MoStemAllomorph" guid="abc93d7d-22a4-441f-89a1-4385f3f108b0" ownerguid="5ecff316-8cf6-450b-b95b-03dc2b801007"> -<Form> -<AUni ws="qvm-x-ach">wagya</AUni> -<AUni ws="qvm-x-acl">wagya</AUni> -<AUni ws="qvm-x-akh">waqya</AUni> -<AUni ws="qvm-x-akl">waqya</AUni> -<AUni ws="qvm-x-ame">waqya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="abcb5d2f-053a-4cf5-a7d9-18c55592ba18" ownerguid="8c5e4907-30dd-498f-aac1-030cb73b410b"> -<Form> -<AUni ws="qvm-x-ach">quejäda</AUni> -<AUni ws="qvm-x-acl">quejäda</AUni> -<AUni ws="qvm-x-akh">quejäda</AUni> -<AUni ws="qvm-x-akl">quejäda</AUni> -<AUni ws="qvm-x-ame">quejäda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="abcb73bd-0aad-4974-b3a1-bb9e8f1dc794" ownerguid="1088cc2f-83ae-4911-8018-401a745dcfd5"> -<ExampleWords> -<AUni ws="en">at night, during the night, in the night, by night</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words indicate that something happens during the night?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="abcd9b8e-bb9a-4f82-aa32-d71bb3383102" ownerguid="2feb574b-e452-46da-8dcb-d9dc09b1fd54"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="abcfe90d-3831-4d16-9085-52e4c5463932" ownerguid="ce6a862d-a4bb-4378-b14d-439806870c41"> -<ExampleWords> -<AUni ws="en">unlucky, unfortunate, unfortunately, as bad luck would have it, be bad luck</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe an unlucky situation or event?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="abcffd37-8f71-4d9e-9ab0-940476bf9b9b" ownerguid="f899802d-bd32-427f-a101-c84219f7e14e"> -<ExampleWords> -<AUni ws="en">substance, stuff, matter, material</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to matter?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="abd25711-0af4-4ae3-9351-b091b2afb8f2" ownerguid="038a45a5-5878-4f1d-b43a-22ce4a89a098"> -<Form> -<AUni ws="qvm-x-ach">broquel; broquil</AUni> -<AUni ws="qvm-x-acl">broquel; broquil; broquel</AUni> -<AUni ws="qvm-x-akh">broquel; broquil</AUni> -<AUni ws="qvm-x-akl">broquel; broquil; broquel</AUni> -<AUni ws="qvm-x-ame">broquel; broquil</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="abd31e70-f9be-472e-a88f-2eb51775e2e7" ownerguid="6506a629-35d7-4e12-b1ae-d3c064d925e0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">earthquake</AUni> -<AUni ws="es">terremoto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b53c4f80-acce-4b8d-8bc3-cd74fe788e55" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="abda9f4d-8804-43b7-b108-7eb0962a82e8" ownerguid="13f62fa1-589c-4a46-9bbc-b0fd1001e21f"> -<ExampleWords> -<AUni ws="en">prison, brig, can, concentration camp, correctional institution, death camp, dungeon, house of correction, jail, jailhouse, county jail, joint, pen, penal colony, penitentiary, federal penitentiary, pound, reformatory, slammer, stockade</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) Where are people imprisoned?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="abdac764-9edb-46c8-b650-08a309a28764" ownerguid="f17a53aa-4777-4503-90f8-a446963c2acf"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="abdd7b35-c273-496c-85a9-3912bc3a3449" ownerguid="7be41ec9-58ec-4a22-9af5-5c66dce6b1d4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="abdf2b3e-9fb0-43cf-98f4-fd674f8dd8ad"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">legpi</AUni> -<AUni ws="qvm-x-acl">legpi; legpe</AUni> -<AUni ws="qvm-x-akh">leqpi</AUni> -<AUni ws="qvm-x-akl">leqpi; leqpe</AUni> -<AUni ws="qvm-x-ame">liqpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lliqpi.v</AUni> -<AUni ws="qvm-x-acl">*lliqpi.v</AUni> -<AUni ws="qvm-x-akh">*lliqpi.v</AUni> -<AUni ws="qvm-x-akl">*lliqpi.v</AUni> -<AUni ws="qvm-x-ame">*lliqpi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.205" /> -<DateModified val="2022-10-10 21:19:47.698" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5599f456-9957-4529-b870-177df1c88311" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lliqpi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bb3f0b2b-2b6e-4aec-812e-7368adf4fe8a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aff40ce4-81bf-4814-8808-e9ae94cd0bf7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lliqpi.v 
\entryTyp root 
\gENG fall 
\gSPN 
\e *lliqpi.v 
\c V1 
\mp +FinalI 
\ach legpi 
\akh leqpi 
\acl legpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl legpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl leqpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl leqpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame liqpi</Run> -</AStr> -</Custom> -</rt> -<rt class="PhEnvironment" guid="abe0ecdd-ea94-4f30-a907-034beb750359" ownerguid="be765e3e-ea5e-11de-9d42-0013722f8dec"> -<Description> -<AStr ws="en"> -<Run ws="en">First consonant is not /t/</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">before two consonants and a vowel</AUni> -</Name> -<StringRepresentation> -<Str> -<Run underline="none" ws="en">/_</Run> -<Run underline="none" ws="qvm-x-akh">[C-t][C][V]</Run> -</Str> -</StringRepresentation> -</rt> -<rt class="CmDomainQ" guid="abe3ea41-5894-4103-9f2d-b4a06f36cead" ownerguid="6903b844-79be-4e9d-a3c8-1ca2a385bf4f"> -<ExampleWords> -<AUni ws="en">partner, companion, fellow (student), sidekick</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to someone who does something with another person?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="abe6286b-fca1-40cd-bfde-82eac17c4a4b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">viu:da</AUni> -<AUni ws="qvm-x-acl">viu:da</AUni> -<AUni ws="qvm-x-akh">viu:da</AUni> -<AUni ws="qvm-x-akl">viu:da</AUni> -<AUni ws="qvm-x-ame">viu:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+viuda</AUni> -<AUni ws="qvm-x-acl">+viuda</AUni> -<AUni ws="qvm-x-akh">+viuda</AUni> -<AUni ws="qvm-x-akl">+viuda</AUni> -<AUni ws="qvm-x-ame">+viuda</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.414" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="62201e09-4fb6-4b3f-ad95-d8268b39a3d0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+viuda</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="79bb539f-1e28-4b65-af45-945ba95b5719" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="44414653-42e8-48ca-80b2-08fa1036dc69" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +viuda 
\entryTyp root 
\gENG widow 
\gSPN viuda 
\e +viuda 
\c N0 
\ach viu:da 
\akh viu:da 
\acl viu:da 
\akl viu:da 
\ame viu:da</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="abe6fe9e-4958-4752-b83e-c4f2f1ad0040"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">tänaykipaq</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="abe7e681-7674-4d75-b245-2fc3c40ba170" ownerguid="223b53db-03b9-46bb-bd2c-2ef9f6a2733c"> -<Form> -<AUni ws="qvm-x-ach">caprichüdu</AUni> -<AUni ws="qvm-x-acl">caprichüdu</AUni> -<AUni ws="qvm-x-akh">caprichüdu</AUni> -<AUni ws="qvm-x-akl">caprichüdu</AUni> -<AUni ws="qvm-x-ame">caprichüdu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="abec0d32-d2a4-470e-86c4-ba49ea9fdcef" ownerguid="c7ccc5bb-181d-420f-8665-64793fefb37b"> -<ExampleWords> -<AUni ws="en">perfect, flawless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is perfect?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="abed43e3-4ccc-47e4-be82-f025d2edf0d1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ñutu</AUni> -<AUni ws="qvm-x-acl">ñutu; ñutu; ñuto</AUni> -<AUni ws="qvm-x-akh">ñutu</AUni> -<AUni ws="qvm-x-akl">ñutu; ñutu; ñuto</AUni> -<AUni ws="qvm-x-ame">ñutu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñutu.n</AUni> -<AUni ws="qvm-x-acl">*ñutu.n</AUni> -<AUni ws="qvm-x-akh">*ñutu.n</AUni> -<AUni ws="qvm-x-akl">*ñutu.n</AUni> -<AUni ws="qvm-x-ame">*ñutu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.608" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="33ebc93c-1aad-414e-89c5-5dbdfd3fae7b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñutu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="390cf96c-5b15-4c2c-8917-515f1b1c4db4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="26f61d92-9f8e-42f5-8d57-ec4e357cbfb9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñutu.n 
\entryTyp root 
\gENG ground 
\gSPN molido 
\e *ñutu.n 
\c N0 
\ach ñutu 
\akh ñutu 
\acl ñutu / _# 
\acl ñutu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ñuto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ñutu / _# 
\akl ñutu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ñuto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ñutu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="abf2834d-0eb1-4118-8ae4-83e004423fa5" ownerguid="4c69ee77-777e-4a6e-b592-d29537dfd146"> -<Form> -<AUni ws="qvm-x-ach">mucu</AUni> -<AUni ws="qvm-x-acl">mucu; mucu; muco</AUni> -<AUni ws="qvm-x-akh">muku</AUni> -<AUni ws="qvm-x-akl">muku; muku; muko</AUni> -<AUni ws="qvm-x-ame">muku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="abf2ace8-ee72-480d-b8d4-a4c58d238a8d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">responsu; responso</AUni> -<AUni ws="qvm-x-acl">responsu; responsu; responso</AUni> -<AUni ws="qvm-x-akh">responsu; responso</AUni> -<AUni ws="qvm-x-akl">responsu; responsu; responso</AUni> -<AUni ws="qvm-x-ame">responsu; responso</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+responso</AUni> -<AUni ws="qvm-x-acl">+responso</AUni> -<AUni ws="qvm-x-akh">+responso</AUni> -<AUni ws="qvm-x-akl">+responso</AUni> -<AUni ws="qvm-x-ame">+responso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.338" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="20a80766-ae37-4a0c-8cd6-a6589f4d2e9d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+responso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7a1b959c-8f7a-42fa-86fb-9a5e3f1ca9bb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="042b8d70-0596-4e32-9ece-8e338967f02b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +responso 
\entryTyp root 
\gENG funeral.lament 
\gSPN verso 
\e +responso 
\c N0 
\ach responsu / ~_# 
\ach responso / _# 
\akh responsu / ~_# 
\akh responso / _# 
\acl responsu / ~_# 
\acl responsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl responso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl responsu / ~_# 
\akl responsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl responso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame responsu / ~_# 
\ame responso / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="abf5173e-0a0f-464c-9587-f802a5df4d9f" ownerguid="f81b7632-3e5a-4a2d-8a93-648872a6616b"> -<ExampleWords> -<AUni ws="en">hippies, yuppies, beatniks, greens, teenagers</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What social groups exist in your culture?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="abf64472-55b0-407b-9c06-202ef7d1d6fc" ownerguid="d84da4a1-0eb7-45b8-850b-0c215137a585" /> -<rt class="CmDomainQ" guid="ac028b18-0311-434f-aefb-1cf4d1469ab0" ownerguid="d7e4bf3e-e539-43bc-bb43-3ae0980ffb86"> -<ExampleWords> -<AUni ws="en">lock</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What things are used to keep something shut?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="ac13256c-e0cb-4882-a58c-3c9bd2eb8b43" ownerguid="cc46b6aa-9772-4bb4-a7f1-33f38a9daf22"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ka</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ka</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="22806abf-f462-448a-bb3e-39bbf5d75aea" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="ac135dd0-3090-48c5-ace5-62df68a0af31" ownerguid="d117aa22-3f18-47c4-9683-51ecf1dc7134"> -<ExampleWords> -<AUni ws="en">stem, stalk, blade of grass, straw</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What are the parts of grass?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ac15b501-9430-4638-a066-a8781863e251" ownerguid="71430132-f2ea-40fe-b3f5-b6775741cc56"> -<ExampleWords> -<AUni ws="en">tailor, seamstress, weaver</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) Who does the activity?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ac18060f-110e-496f-92b1-00b734d4cd06" ownerguid="12ed3a86-33b0-4327-acac-d1e7279c02fa"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="ac187298-85e8-43ed-ba85-cc06a62c08ba" ownerguid="944cf5af-469e-4b03-878f-a05d34b0d9f6"> -<Abbreviation> -<AUni ws="en">1.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the life cycle of an animal.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Animal life cycle</AUni> -</Name> -<OcmCodes> -<Uni>136b Growth Stages</Uni> -</OcmCodes> -<Questions> -<objsur guid="83523418-2ffb-450b-998c-d192a21bf651" t="o" /> -<objsur guid="2b0554bf-9432-461a-b95e-1430a2e257ae" t="o" /> -<objsur guid="6447ed2a-4f24-4afe-8947-9907ff77fa40" t="o" /> -<objsur guid="47448aaa-f9de-48f2-b9e1-4a158dc39179" t="o" /> -<objsur guid="20da6b66-7f2f-4b44-9282-4aab1b6958e9" t="o" /> -<objsur guid="ba8535fe-e435-4f25-92a6-750d3c1820e7" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b6a40216-fe93-4b0f-b85b-5622327031d0" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="ac1a8e9e-c018-4206-86a4-53fe0a31c64b" ownerguid="a5e0766b-516a-47b8-a4ac-f41a36792b2f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pen</AUni> -<AUni ws="es">lapicero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="70504187-07d5-4cb2-a51a-f889adb4bd5a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="ac1b748f-ad65-4d94-8878-23327428271e" ownerguid="dd31246e-9402-48f1-ae98-07d340f56f8f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stop</AUni> -<AUni ws="es">parar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1e1928c5-6ef0-457f-889d-aee4d016ac62" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="ac1c2981-b3a5-4ad9-aee1-8fcaf20741d1" ownerguid="22f423c5-8417-425e-bbf3-c99f5483d53e"> -<Form> -<AUni ws="qvm-x-ach">wana</AUni> -<AUni ws="qvm-x-acl">wana</AUni> -<AUni ws="qvm-x-akh">wana</AUni> -<AUni ws="qvm-x-akl">wana</AUni> -<AUni ws="qvm-x-ame">wana</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ac1fc3d9-d2be-48ec-a3da-723d73e07915" ownerguid="a8b3fa0c-077e-4c0d-b4cc-36dcfbdcb4d4"> -<ExampleWords> -<AUni ws="en">wash out, run</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to dye being washed out of cloth?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ac20049d-d2e8-4dd5-9642-672edecad64f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">urya</AUni> -<AUni ws="qvm-x-acl">urya</AUni> -<AUni ws="qvm-x-akh">urya</AUni> -<AUni ws="qvm-x-akl">urya</AUni> -<AUni ws="qvm-x-ame">urya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*urya.n</AUni> -<AUni ws="qvm-x-acl">*urya.n</AUni> -<AUni ws="qvm-x-akh">*urya.n</AUni> -<AUni ws="qvm-x-akl">*urya.n</AUni> -<AUni ws="qvm-x-ame">*urya.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.279" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e7ae5b8b-5915-449c-8435-3adc199e82f7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*urya.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ab5f2042-21a2-45fb-ac8f-7cd2481bd104" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2d72af45-adb1-4382-9e45-07cc96384897" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *urya.n 
\entryTyp root 
\gENG work 
\gSPN trabajo 
\e *urya.n 
\c N0 
\ach urya 
\akh urya 
\acl urya 
\akl urya 
\ame urya</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ac2b7523-330b-4268-8aaa-4902de85d6df" ownerguid="f8515dad-926c-4195-bf26-4a15b9a9c24b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="59c55d33-0905-4578-8607-0d5ef860a1a8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="ac2c9cc0-eaf2-4665-ba3f-21f266684f37" ownerguid="202b5306-b111-4068-9fba-c86d97bbeb28"> -<Form> -<AUni ws="qvm-x-ach">pirgantsa</AUni> -<AUni ws="qvm-x-acl">pirgantsa</AUni> -<AUni ws="qvm-x-akh">pirqantsa</AUni> -<AUni ws="qvm-x-akl">pirqantsa</AUni> -<AUni ws="qvm-x-ame">pirqantsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="ac2d0c84-75e5-4630-9534-a92f96277e2b" ownerguid="a7522f0d-f5fe-4f37-8daf-3ec0db391cb1"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="ac2e424b-6aee-4031-8864-7b3f4a6fb5a3" ownerguid="9efa7949-de15-499a-b382-4560e06c4fb4"> -<Abbreviation> -<AUni ws="en">3.5.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that indicate if something is true, if it agrees with reality, or if it is not true.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>72 True, False; 72A True, False; 72B Accurate, Inaccurate</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">True</AUni> -</Name> -<Questions> -<objsur guid="c4e792ca-bda6-4fd5-b453-d61678011858" t="o" /> -<objsur guid="05aa545a-7e89-4e8b-8e02-d9d90ef81b92" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="3bc961d1-9f4f-4f1b-ada7-b1e9a2928ea4" t="o" /> -<objsur guid="9f0bcab1-8256-47a1-853c-408f025e04e7" t="o" /> -<objsur guid="02b6da2b-fae3-49f4-83f0-fd014024e117" t="o" /> -<objsur guid="016e3f5b-b527-446e-9da6-49af34870001" t="o" /> -<objsur guid="51d9d243-35cc-4a1e-bcdd-f2749975f5fd" t="o" /> -<objsur guid="ab8ca07c-b23c-43dc-b705-7fe34ddf6d4d" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="ac3177d5-4d9e-4542-a62e-9afe914fb090" ownerguid="cb99a086-8c6d-4f90-81db-6afa69ae5455"> -<ExampleWords> -<AUni ws="en">croak, rivet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What noises do frogs make?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ac3234a0-3b4a-4cbb-a508-6298550ec31a" ownerguid="eb8d7a3b-ad1a-46d4-8cb6-9a54961b3f6a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ac33a404-98f4-4bd9-8a61-556f05ac2905" ownerguid="c1ceebe1-1274-40c1-a932-696265d9d412"> -<ExampleWords> -<AUni ws="en">yard, front yard, back yard, patio, courtyard, garden, driveway, sidewalk, outside</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the area around a house?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ac34d795-4259-4f98-9416-f1e12d0a0363" ownerguid="ace212ed-d855-449c-a447-ac515e635a65"> -<Form> -<AUni ws="qvm-x-ach">novillu; novillo</AUni> -<AUni ws="qvm-x-acl">novillu; novillu; novillo</AUni> -<AUni ws="qvm-x-akh">novillu; novillo</AUni> -<AUni ws="qvm-x-akl">novillu; novillu; novillo</AUni> -<AUni ws="qvm-x-ame">novillu; novillo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="ac359263-edd7-47b9-8832-d710bceec51a" ownerguid="ce665b46-d6e9-471c-8399-319fc346f025"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">man</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">man</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">man</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">man</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">man</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1acbb55c-ccc7-45f0-b507-b8645ea87900" t="r" /> -</Morph> -<Msa> -<objsur guid="afad3961-fbf7-495d-bda7-b2ceaf12bba1" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="ac35d320-d6b3-4e66-ad88-c5c16a70aaca"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">metal</AUni> -<AUni ws="qvm-x-acl">metal</AUni> -<AUni ws="qvm-x-akh">metal</AUni> -<AUni ws="qvm-x-akl">metal</AUni> -<AUni ws="qvm-x-ame">metal</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+metal</AUni> -<AUni ws="qvm-x-acl">+metal</AUni> -<AUni ws="qvm-x-akh">+metal</AUni> -<AUni ws="qvm-x-akl">+metal</AUni> -<AUni ws="qvm-x-ame">+metal</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.416" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="48451b66-fa75-4f84-8484-3bbb57792ef9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+metal</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f1d64617-5b1f-4c91-b80a-40c62c039cea" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4e66374f-514e-4eab-a24f-9687b01a1ffb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +metal 
\entryTyp root 
\gENG metal 
\gSPN metal 
\e +metal 
\c N0 
\mp +FinalC 
\ach metal 
\akh metal 
\acl metal 
\akl metal 
\ame metal</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ac3643f0-90db-4d08-9e54-bddf55193d12" ownerguid="1b73b2bf-9582-4f8a-822a-e0d020272c7c"> -<ExampleWords> -<AUni ws="en">be on someone's tail, be on someone's heels, tailgate, be right behind</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to following someone closely?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ac396d29-a20a-4685-b8ed-f3e91203e148"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">iscu</AUni> -<AUni ws="qvm-x-acl">iscu; iscu; isco</AUni> -<AUni ws="qvm-x-akh">isku</AUni> -<AUni ws="qvm-x-akl">isku; isku; isko</AUni> -<AUni ws="qvm-x-ame">isku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*isku</AUni> -<AUni ws="qvm-x-acl">*isku</AUni> -<AUni ws="qvm-x-akh">*isku</AUni> -<AUni ws="qvm-x-akl">*isku</AUni> -<AUni ws="qvm-x-ame">*isku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.860" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="16ad9b0c-8950-47fd-9367-a43595b1ee64" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*isku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8aac78ab-7bcb-43d0-9018-d581b27a2ee4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="381fe5b7-6080-4e25-89b4-cd3499ebfc1a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *isku 
\entryTyp root 
\gENG calcium 
\gSPN cal 
\e *isku 
\c N0 
\ach iscu 
\akh isku 
\acl iscu / _# 
\acl iscu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl isco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl isku / _# 
\akl isku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl isko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame isku</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="ac3be3e5-8566-477a-a51a-7641f401eef0" ownerguid="5f8a09d0-ca6d-4317-ae0a-7d7ae858808b"> -<Form> -<AUni ws="qvm-x-ach">tushu</AUni> -<AUni ws="qvm-x-acl">tushu; tusho</AUni> -<AUni ws="qvm-x-akh">tushu</AUni> -<AUni ws="qvm-x-akl">tushu; tusho</AUni> -<AUni ws="qvm-x-ame">tushu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ac3edb8b-1ad1-4376-8023-f605e78f1bbd" ownerguid="475cecdc-0fdb-4617-a3ba-bab898261913"> -<Form> -<AUni ws="qvm-x-ach">ñutgu</AUni> -<AUni ws="qvm-x-acl">ñutgu; ñutgo</AUni> -<AUni ws="qvm-x-akh">ñutqu</AUni> -<AUni ws="qvm-x-akl">ñutqu; ñutqo</AUni> -<AUni ws="qvm-x-ame">ñutqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ac43aebc-c8e8-4ff9-bbad-e1ec4439ffd0" ownerguid="775b53f1-bfcf-4270-a60d-b5affc9d6a99"> -<ExampleWords> -<AUni ws="en">behind, in back, way back, in the rear, background</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is in back of something else?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ac43c11c-8894-4ce2-be51-9e319b741321" ownerguid="91f07f78-6bd9-4077-8958-df3a63f853ef"> -<Form> -<AUni ws="qvm-x-ach">original</AUni> -<AUni ws="qvm-x-acl">original</AUni> -<AUni ws="qvm-x-akh">original</AUni> -<AUni ws="qvm-x-akl">original</AUni> -<AUni ws="qvm-x-ame">original</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ac44f84e-3bed-41fd-9565-615babdcce1c" ownerguid="18885339-b20b-4ce5-a634-4a2231bc075a"> -<Form> -<AUni ws="qvm-x-ach">aburrïdu</AUni> -<AUni ws="qvm-x-acl">aburrïdu; aburrïdu; aburrïdo</AUni> -<AUni ws="qvm-x-akh">aburrïdu</AUni> -<AUni ws="qvm-x-akl">aburrïdu; aburrïdu; aburrïdo</AUni> -<AUni ws="qvm-x-ame">aburrïdu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="ac4a936e-6c05-4e73-8d40-dfe4223b47fa" ownerguid="721e7782-9add-41fa-a7cf-659d5ca33926"> -<Abbreviation> -<AUni ws="en">4.2.6.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.216" /> -<DateModified val="2022-9-23 16:55:8.216" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a particular game. The example words are from the card games. If you do not play card games in your culture, you can rename this domain and use it for one of your games. Add other domains for each of your games.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Card game</AUni> -</Name> -<Questions> -<objsur guid="26799ab6-6125-4a90-b239-d6f017767437" t="o" /> -<objsur guid="961def37-cbf9-4470-88b4-8cc89342a9f4" t="o" /> -<objsur guid="6a3d52cb-51f9-4635-8312-d3ca15fcede7" t="o" /> -<objsur guid="57146ac6-81be-456b-bb4d-bd72a2dad303" t="o" /> -<objsur guid="c3897f25-75fb-4924-aa9f-6a89785db62b" t="o" /> -<objsur guid="79a59694-ab71-4b3a-8d88-1aa8288fe51f" t="o" /> -<objsur guid="bf5a0e67-5951-4898-a450-78ec3b29b782" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="ac4a9f08-539d-41a4-8b40-70f9144bc18e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">harina</AUni> -<AUni ws="qvm-x-acl">harina</AUni> -<AUni ws="qvm-x-akh">harina</AUni> -<AUni ws="qvm-x-akl">harina</AUni> -<AUni ws="qvm-x-ame">harina</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+harina</AUni> -<AUni ws="qvm-x-acl">+harina</AUni> -<AUni ws="qvm-x-akh">+harina</AUni> -<AUni ws="qvm-x-akl">+harina</AUni> -<AUni ws="qvm-x-ame">+harina</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.680" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3f3a3b6a-9054-4522-b8fe-3ac50702bd00" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+harina</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="54ae3270-5da4-4bdc-baec-caf4e6e45437" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="766f009c-1dfa-4755-a909-55996e44b560" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +harina 
\entryTyp root 
\gENG flour 
\gSPN harina 
\e +harina 
\c N0 
\mp +assimilated 
\ach harina 
\akh harina 
\acl harina 
\akl harina 
\ame harina</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ac4b7b10-975d-4504-8cad-8c3b1b593e09"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">manual</AUni> -<AUni ws="qvm-x-acl">manual</AUni> -<AUni ws="qvm-x-akh">manual</AUni> -<AUni ws="qvm-x-akl">manual</AUni> -<AUni ws="qvm-x-ame">manual</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+manual</AUni> -<AUni ws="qvm-x-acl">+manual</AUni> -<AUni ws="qvm-x-akh">+manual</AUni> -<AUni ws="qvm-x-akl">+manual</AUni> -<AUni ws="qvm-x-ame">+manual</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.325" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ed634c8c-6c4b-45f9-a8bb-ecd84aaf95de" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+manual</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1862fe42-9ae8-46a8-8ae1-ef9eb406577c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="841ef65d-b9ca-4442-80df-0874a4b8be5e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +manual 
\entryTyp root 
\gENG 
\gSPN 
\e +manual 
\c N0 
\mp +FinalC 
\ach manual 
\akh manual 
\acl manual 
\akl manual 
\ame manual</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ac4f1bd6-8bd9-4c00-9d5e-e4b1cb59055b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ve:la</AUni> -<AUni ws="qvm-x-acl">ve:la</AUni> -<AUni ws="qvm-x-akh">ve:la</AUni> -<AUni ws="qvm-x-akl">ve:la</AUni> -<AUni ws="qvm-x-ame">ve:la</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vela</AUni> -<AUni ws="qvm-x-acl">+vela</AUni> -<AUni ws="qvm-x-akh">+vela</AUni> -<AUni ws="qvm-x-akl">+vela</AUni> -<AUni ws="qvm-x-ame">+vela</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.353" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5494e55e-bbc8-4db9-b059-329f746f5fb9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vela</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1e44144f-e189-4097-a5db-98c0830825db" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="890b03fa-e707-480c-8a6b-0f27b82b2f5d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vela 
\entryTyp root 
\gENG candle 
\gSPN vela 
\e +vela 
\c N0 
\ach ve:la 
\akh ve:la 
\acl ve:la 
\akl ve:la 
\ame ve:la</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="ac524006-a15e-4c0b-b8ea-2b440b46c232" ownerguid="bfa15caf-a60a-44e5-8243-e46dce4d2e5a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="ac527685-f31d-42f3-81bd-97221a01c7ef" ownerguid="bfeba2a4-4479-49e9-838c-3baa2ad0fcae"> -<Abbreviation> -<AUni ws="en">8.3.5.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.619" /> -<DateModified val="2022-9-23 16:55:8.619" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a pattern or model.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>58I Pattern, Model, Example, and Corresponding Representation; 58J Archetype, Corresponding Type</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Pattern, model</AUni> -</Name> -<Questions> -<objsur guid="579b014d-6897-4e10-abd0-85fe0da7cdf3" t="o" /> -<objsur guid="348188ea-62fe-45d9-876f-33d3d33c1a55" t="o" /> -<objsur guid="60867c21-b7d1-4b34-bc97-58d9843fb942" t="o" /> -<objsur guid="94e8307a-2b32-42d5-ac24-dfa3bd47576c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="ac5352a7-fc9a-4c2c-8702-9165452167a3" ownerguid="74fbe52e-51af-456b-9c1a-ffc99db626bf"> -<Form> -<AUni ws="qvm-x-ach">tatu</AUni> -<AUni ws="qvm-x-acl">tatu; tatu; tato</AUni> -<AUni ws="qvm-x-akh">tatu</AUni> -<AUni ws="qvm-x-akl">tatu; tatu; tato</AUni> -<AUni ws="qvm-x-ame">tatu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="ac550d1f-ec74-46a8-bf81-7832ace533ee" ownerguid="d030f0c7-31a3-47da-be35-46f1eba63ae9"> -<Abbreviation> -<AUni ws="en">3.4.1.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.123" /> -<DateModified val="2022-9-23 16:55:8.123" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that many people like.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Popular</AUni> -</Name> -<Questions> -<objsur guid="33f69efa-6dbe-402d-afc9-76931f04c2c0" t="o" /> -<objsur guid="9fb77344-1bb0-4720-be23-d17069bc2ab6" t="o" /> -<objsur guid="b0918e47-a08a-456c-982c-1abd8c45d842" t="o" /> -<objsur guid="c69c9a3a-2acd-49e4-bce4-0512e4a6baf1" t="o" /> -<objsur guid="4faaf34f-fc9f-46e2-bb1d-d0d517022aa0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="ac57f508-442f-48ce-bc1f-20470e16d4f5" ownerguid="7bfd1ead-4cef-47a4-84f3-9fab023d7423"> -<Form> -<AUni ws="qvm-x-ach">plüma</AUni> -<AUni ws="qvm-x-acl">plüma</AUni> -<AUni ws="qvm-x-akh">plüma</AUni> -<AUni ws="qvm-x-akl">plüma</AUni> -<AUni ws="qvm-x-ame">plüma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="ac5ee669-f5d9-47a0-b27a-486259369e93" ownerguid="ec134919-c362-49eb-bb7e-7752098698d9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7dd9db06-bbb3-433f-b733-67d849fa69dc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ac643fef-e387-460c-9459-4299bf65391e" ownerguid="a36b3354-8598-4228-b779-c7c922b1e61d"> -<ExampleWords> -<AUni ws="en">smuggler</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to someone who smuggles?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ac650401-00f0-4159-ae7f-74aa96840e4e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">:</AUni> -<AUni ws="qvm-x-acl">:</AUni> -<AUni ws="qvm-x-akh">:</AUni> -<AUni ws="qvm-x-akl">:</AUni> -<AUni ws="qvm-x-ame">:</AUni> -</Custom> -<AlternateForms> -<objsur guid="ae57ba3d-6339-4336-9e35-51df03ab7399" t="o" /> -</AlternateForms> -<DateCreated val="2022-09-23 18:26:20.597" /> -<DateModified val="2022-12-03 17:56:58.807" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="1" /> -<LexemeForm> -<objsur guid="3a878dea-02ea-4b48-879e-8e5e29865122" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c3d4a91d-b03e-4087-92b5-780b4f2da3cf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="592debd4-e4e7-4674-b661-677db0163460" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx 1 
\entryTyp suffix 
\gENG 1 
\gSPN 1 
\e 1 
\c V1/V0 
\o 120 
\mp +foreshortens 
\ach : 
\akh : 
\acl : 
\akl : 
\ame : 
\mp +FinalC 
\mp +FinalLength 
\mp NeverForeshortened 
\mp -PMonophthongizes 
\mcc 1 / ~_ JUST1.C 
\mcc 1 / ~_ TOP</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="ac670db5-cdff-407e-b469-884f9538e16e" ownerguid="f96e8a7b-d84c-4d74-b5f7-1c43535a1e0c"> -<Form> -<AUni ws="qvm-x-ach">büqui; büqui</AUni> -<AUni ws="qvm-x-acl">büqui; büqui; büque</AUni> -<AUni ws="qvm-x-akh">büqui; büqui</AUni> -<AUni ws="qvm-x-akl">büqui; büqui; büque</AUni> -<AUni ws="qvm-x-ame">büqui; büqui</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ac6cd9b4-97e8-40a8-832e-50cd94fb2fb8" ownerguid="87cdcd18-d309-4913-8d74-ee421f703757"> -<Form> -<AUni ws="qvm-x-ach">negocianti</AUni> -<AUni ws="qvm-x-acl">negocianti</AUni> -<AUni ws="qvm-x-akh">negocianti</AUni> -<AUni ws="qvm-x-akl">negocianti</AUni> -<AUni ws="qvm-x-ame">negocianti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="ac6eac01-7c0f-46a0-baef-f7dccd33cc07"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shatu</AUni> -<AUni ws="qvm-x-acl">shatu; shato</AUni> -<AUni ws="qvm-x-akh">shatu</AUni> -<AUni ws="qvm-x-akl">shatu; shato</AUni> -<AUni ws="qvm-x-ame">shatu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shatu.v</AUni> -<AUni ws="qvm-x-acl">*shatu.v</AUni> -<AUni ws="qvm-x-akh">*shatu.v</AUni> -<AUni ws="qvm-x-akl">*shatu.v</AUni> -<AUni ws="qvm-x-ame">*shatu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.559" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d7265649-2ff4-42a2-9a6a-cee722622164" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shatu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="48dc1ca4-8523-4f40-815c-f5a15e5cfbb2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="88f7c231-4cc4-4066-af15-71f04def22aa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shatu.v 
\entryTyp root 
\gENG 
\gSPN 
\e *shatu.v 
\c V1 
\ach shatu 
\akh shatu 
\acl shatu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shatu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shatu 
\i PSA 74.13 Lamarcho tag waräcuypa umantapis shatorgayquimi.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ac71f098-0429-4964-9fd8-6fa26d4cb6dc" ownerguid="10708644-7060-42cc-9ce5-b36c4f95f9c5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">knot</AUni> -<AUni ws="es">nudo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3d7acd54-124e-4666-83a6-1417a9afb890" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="ac734a97-d49b-469b-8068-e59c6e9af96c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">disci:pulu</AUni> -<AUni ws="qvm-x-acl">disci:pulu; disci:pulu; disci:pulo</AUni> -<AUni ws="qvm-x-akh">disci:pulu</AUni> -<AUni ws="qvm-x-akl">disci:pulu; disci:pulu; disci:pulo</AUni> -<AUni ws="qvm-x-ame">disci:pulu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+discípulo</AUni> -<AUni ws="qvm-x-acl">+discípulo</AUni> -<AUni ws="qvm-x-akh">+discípulo</AUni> -<AUni ws="qvm-x-akl">+discípulo</AUni> -<AUni ws="qvm-x-ame">+discípulo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.416" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6fce1f0e-0596-43ae-bbe3-8fc242e08a44" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+discípulo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="15baceb7-b239-417a-ae7a-de3bb4da72de" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1fa20644-752a-4aa2-8869-52d4e44e7ed9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +discípulo 
\entryTyp root 
\gENG disciple 
\gSPN discípulo 
\e +discípulo 
\c N0 
\ach disci:pulu 
\akh disci:pulu 
\acl disci:pulu / _# 
\acl disci:pulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl disci:pulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl disci:pulu / _# 
\akl disci:pulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl disci:pulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame disci:pulu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ac7933c3-8127-40d5-b0d5-0331b99117a4" ownerguid="04752883-aa3e-42a2-bd42-454e9cd99b11"> -<ExampleWords> -<AUni ws="en">it is rumored that...</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) evidence from hearsay: the speaker claims to have heard about the situation described, but not from a direct witness.</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ac79fb7b-f09d-40b4-92ca-34a8c5655349"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">urpu</AUni> -<AUni ws="qvm-x-acl">urpu; urpu; urpo</AUni> -<AUni ws="qvm-x-akh">urpu</AUni> -<AUni ws="qvm-x-akl">urpu; urpu; urpo</AUni> -<AUni ws="qvm-x-ame">urpu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*urpu</AUni> -<AUni ws="qvm-x-acl">*urpu</AUni> -<AUni ws="qvm-x-akh">*urpu</AUni> -<AUni ws="qvm-x-akl">*urpu</AUni> -<AUni ws="qvm-x-ame">*urpu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.271" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ad5a17f1-2384-44f7-874d-d44c172a2347" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*urpu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7a5758e1-7d76-4d2f-8cb1-f72a0d0a01ab" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c80ea639-1334-4202-8674-c28daf18ea64" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *urpu 
\entryTyp root 
\gENG 
\gSPN 
\e *urpu 
\c N0 
\ach urpu 
\akh urpu 
\acl urpu / _# 
\acl urpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl urpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl urpu / _# 
\akl urpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl urpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame urpu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ac7b08b8-6d30-435f-9bdd-121e13b1feea" ownerguid="f5e2ad18-5ad4-4186-9572-b1542096759e"> -<ExampleWords> -<AUni ws="en">sailor, marine, seaman, ensign, petty officer, mate, captain, admiral</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What are the military ranks in the navy?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="ac7de73d-0059-4f35-9317-462a1813edba" ownerguid="726923d4-b25c-46eb-8ab0-427207177ae3"> -<Abbreviation> -<AUni ws="en">5.2.1.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.306" /> -<DateModified val="2022-9-23 16:55:8.306" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to grinding flour.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Grind flour</AUni> -</Name> -<Questions> -<objsur guid="16d6833d-1ae9-4829-87c4-457cd8d4a1e3" t="o" /> -<objsur guid="3a5daa13-c3dc-4ea9-bf36-e5719ae165e7" t="o" /> -<objsur guid="db3f665d-2cbb-428e-84cd-02fea65742cd" t="o" /> -<objsur guid="b976f6c6-f5bd-4db2-ad3f-86a2c2cf5e6b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="ac7f45a7-286e-4717-baf1-b7d9f1520707" ownerguid="b2a806e4-6ef4-4c46-9d6c-93a1620acfca"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">AMO 8.6 Gamcunaga trïgupa japrichuntapis ranticuycanqui mana perdinayquipag.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="ac86dd10-1b6e-4d8b-89e9-d40f1d1d9ad6" ownerguid="f7fcd1ee-4863-4a86-ad9d-3b2c9e444010"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yarpa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yarpa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yarpa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yarpa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yarpa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="887ae17a-ced7-4093-8e19-bf260b43d5a9" t="r" /> -</Morph> -<Msa> -<objsur guid="7440cecd-7493-4b9e-86fd-dbf27ad2bfed" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="ac876e5b-d93a-4188-b511-c928871446cd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">li:nu</AUni> -<AUni ws="qvm-x-acl">li:nu; li:nu; li:no</AUni> -<AUni ws="qvm-x-akh">li:nu</AUni> -<AUni ws="qvm-x-akl">li:nu; li:nu; li:no</AUni> -<AUni ws="qvm-x-ame">li:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lino.n</AUni> -<AUni ws="qvm-x-acl">+lino.n</AUni> -<AUni ws="qvm-x-akh">+lino.n</AUni> -<AUni ws="qvm-x-akl">+lino.n</AUni> -<AUni ws="qvm-x-ame">+lino.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.940" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ef052d68-aae4-4d12-9c65-1467aeae2e17" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lino.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2f9ef6f2-636b-42df-a6a1-3c9113524170" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fa635774-42dd-4567-ae7f-649c9be7192f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lino.n 
\entryTyp root 
\gENG flax 
\gSPN lino 
\e +lino.n 
\c N0 
\ach li:nu 
\akh li:nu 
\acl li:nu / _# 
\acl li:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl li:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl li:nu / _# 
\akl li:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl li:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame li:nu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ac88c81a-097c-477e-9979-c160b54d1b2d" ownerguid="0cc62b4a-d5ff-4f45-83d1-e2b46e5d159a"> -<ExampleWords> -<AUni ws="en">just before dawn, hours before dawn, predawn hours, it gets light, foredawn</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to the time just before dawn?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ac8954b5-66f8-4e78-84da-b0f7003dd9f6" ownerguid="54519ee6-6c8b-491a-946e-2eab149adefb"> -<Form> -<AUni ws="qvm-x-ach">glorifica</AUni> -<AUni ws="qvm-x-acl">glorifica</AUni> -<AUni ws="qvm-x-akh">glorifica</AUni> -<AUni ws="qvm-x-akl">glorifica</AUni> -<AUni ws="qvm-x-ame">glorifica</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="ac8a0b53-09a6-4704-becd-fb46c0ad87d3" ownerguid="a4f6fc2a-b7cb-44a6-9f09-4a635cb6057d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="ac910285-aef8-4997-aff4-d7e97f60efde" ownerguid="45421256-0af0-4ec8-92b6-340d343009ed"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ac9120c4-18fc-4aa9-96ce-2af7348e152a" ownerguid="a0e540c3-62e5-4765-93ca-7c0795d7e606"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="817a0280-edf1-4b47-8974-d4cafda97e75" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="a43a1fd0-76fe-4a33-857c-488308eda802" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="ac9945cb-66bf-4aa4-babc-bc9de749cb4a" ownerguid="867f98c7-5ab3-4c00-b3dc-774415ad068f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="CmDomainQ" guid="ac9a1295-e62c-4058-a6a7-93bbf741e58c" ownerguid="b4aa4bbd-8abf-4503-96e4-05c75efd23d5"> -<ExampleWords> -<AUni ws="en">climate, dry/wet/cold/hot climate, tropical, temperate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to the type of weather a place normally has?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ac9d1dac-aa71-4e2a-8b25-709b0fed352a" ownerguid="65af4e52-850e-4fbd-97c9-f89a7b307e86"> -<Form> -<AUni ws="qvm-x-ach">gari</AUni> -<AUni ws="qvm-x-acl">gari; gare</AUni> -<AUni ws="qvm-x-akh">qari</AUni> -<AUni ws="qvm-x-akl">qari; qare</AUni> -<AUni ws="qvm-x-ame">qari</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="ac9ea955-7d61-4468-9e9b-9a471cd2a12f" ownerguid="ff39e472-fc70-4848-86f0-53a17ba96f65"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">warmi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">warmi; warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">warmi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">warmi; warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">warmi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ddf5b3ec-6ef7-4a2a-b160-365cb7d372df" t="r" /> -</Morph> -<Msa> -<objsur guid="e9ece695-28de-48a2-aff1-266bce7d2a60" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="ac9ee84f-f0c7-48b3-8e5a-b4c967112394" ownerguid="c72985cf-b07f-4ed5-873a-a2209929667e"> -<Abbreviation> -<AUni ws="en">8.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.599" /> -<DateModified val="2022-9-23 16:55:8.599" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to the quality or condition of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79 Features of Objects</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Quality</AUni> -</Name> -<Questions> -<objsur guid="21cb61bc-1fa1-4037-8f0e-cad6259d416f" t="o" /> -<objsur guid="0f529f39-a942-46c3-83d4-e16c5d14ce81" t="o" /> -<objsur guid="75f826ce-1038-431b-b355-ef751e6714d8" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="080bf07b-e58b-4a75-bb97-84d980a143f0" t="o" /> -<objsur guid="2621e605-3ecc-4f3d-b28c-f8c92b3c4584" t="o" /> -<objsur guid="4bf411b7-2b5b-4673-b116-0e6c31fbd08a" t="o" /> -<objsur guid="742996cd-b87f-40a8-bdb3-dba74219bd73" t="o" /> -<objsur guid="bfeba2a4-4479-49e9-838c-3baa2ad0fcae" t="o" /> -<objsur guid="c05bf8c3-78f2-4ec5-b0d7-32d4963a5794" t="o" /> -<objsur guid="83adeb9d-c0be-4073-894d-913014420280" t="o" /> -<objsur guid="130e2cbb-7e51-4f6f-a1cf-7a053a44c9b7" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="aca24133-47fc-43af-88ed-b5dc34919f1d" ownerguid="1ae89c4d-b129-47b5-a0d1-e550104d9457"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="aca37ae2-a4de-49e9-85e1-74f3f7ad6fea" ownerguid="508d2900-dee3-41df-9da3-41843ac47cf4"> -<Form> -<AUni ws="qvm-x-ach">justas</AUni> -<AUni ws="qvm-x-acl">justas</AUni> -<AUni ws="qvm-x-akh">justas</AUni> -<AUni ws="qvm-x-akl">justas</AUni> -<AUni ws="qvm-x-ame">justas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="aca77273-6f6b-4d4c-9b3f-3be08be28353" ownerguid="eb3bc41a-8c2f-4fdf-bd56-d2f42cfe9090"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">idol</AUni> -<AUni ws="es">ídolo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ded34405-7bdc-4af4-a902-101db97edbb0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="aca90f6a-3314-42c8-8f70-b066edb93375" ownerguid="8fe91a3b-a98c-4e7f-8483-917a91344e86"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="acabc150-4dd5-4fa4-8c91-efba123955e0" ownerguid="0ce19759-6e90-47b7-bf9c-b5892b6808bf"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="acae6f77-7d40-4690-8e71-33ff2df22af4" ownerguid="f586bdd4-75ad-4064-a244-d247a2fe34a2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 R1/R0 N1/N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="ccf88f94-b943-4a6a-8487-b94c0d21e706" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">1Pni</AUni> -<AUni ws="es">1Pni</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6a999fb4-9b50-420c-9fb2-46dc7f876785" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="acaf56f5-6c7a-498a-8905-165a5ceff7ea" ownerguid="e3a4cbcf-c434-41bb-91fa-eaf8b4fbf24e"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="acb15b44-5d4d-4b55-ae65-993eb193f477" ownerguid="4dd9e1f0-4609-4c62-b4df-b82a35e5594e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 BN/BN R0/R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">PUR</AUni> -<AUni ws="es">PROP</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="01f553e1-5eb4-4a63-9066-6708cdc08588" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="acb20d68-aa2e-4280-be1b-a55da094db1c" ownerguid="b0220f1b-891c-4db2-abd0-0865edfb345e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hang</AUni> -<AUni ws="es">colgar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6de9d5d3-f9e2-47d2-a14d-aeab3c4f392c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="acb27c0f-0c18-4c10-b711-a896fa822fad" ownerguid="8959b37f-207f-4770-b1d2-fad2be7e2575"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="b7c8049c-09e2-479d-b9ed-7ef51c19f930" t="o" /> -<objsur guid="78d38f3e-1054-47b2-adc3-5be9007b0cf4" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="acb95270-3e2a-42d5-a38a-75449249f6e3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">corta</AUni> -<AUni ws="qvm-x-acl">corta</AUni> -<AUni ws="qvm-x-akh">corta</AUni> -<AUni ws="qvm-x-akl">corta</AUni> -<AUni ws="qvm-x-ame">corta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+corta</AUni> -<AUni ws="qvm-x-acl">+corta</AUni> -<AUni ws="qvm-x-akh">+corta</AUni> -<AUni ws="qvm-x-akl">+corta</AUni> -<AUni ws="qvm-x-ame">+corta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.192" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c45e4a3e-98cb-4d87-a43b-5e4cd5d22333" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+corta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dc227b28-ca99-4aef-96e9-0d1a4805597b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="08874586-ba47-45e3-bd79-db91d899ed61" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +corta 
\entryTyp root 
\gENG colostrum 
\gSPN ? 
\e +corta 
\c N0 
\ach corta 
\akh corta 
\acl corta 
\akl corta 
\ame corta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="acbe546e-9501-4397-80dc-5e330501c465"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">da:ña</AUni> -<AUni ws="qvm-x-acl">da:ña</AUni> -<AUni ws="qvm-x-akh">da:ña</AUni> -<AUni ws="qvm-x-akl">da:ña</AUni> -<AUni ws="qvm-x-ame">da:ña</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+dañar</AUni> -<AUni ws="qvm-x-acl">+dañar</AUni> -<AUni ws="qvm-x-akh">+dañar</AUni> -<AUni ws="qvm-x-akl">+dañar</AUni> -<AUni ws="qvm-x-ame">+dañar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.356" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f5a3fab8-cbc3-4905-bbe3-9711cb2cac9e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+dañar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bd75d3a4-ec11-4f3f-b690-684ff288ad7b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8b8cb24b-884f-4515-925d-a9702bb9dfd1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +dañar 
\entryTyp root 
\gENG damage 
\gSPN dañar 
\e +dañar 
\c V2 
\ach da:ña 
\akh da:ña 
\acl da:ña 
\akl da:ña 
\ame da:ña</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="acc05eaf-9f30-4467-af07-ea2c7ea246fa" ownerguid="7ee3ccb5-e6cb-4028-9af5-62ae782967b5"> -<ExampleWords> -<AUni ws="en">smith, blacksmith (iron), goldsmith, silversmith, tinsmith, tinker, jeweler, welder</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What is a person called who works with metal?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="acc16676-b30c-4c4c-aa94-20869e1bafdd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guempu</AUni> -<AUni ws="qvm-x-acl">guempu; guempo</AUni> -<AUni ws="qvm-x-akh">qempu</AUni> -<AUni ws="qvm-x-akl">qempu; qempo</AUni> -<AUni ws="qvm-x-ame">qimpu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qimpu</AUni> -<AUni ws="qvm-x-acl">*qimpu</AUni> -<AUni ws="qvm-x-akh">*qimpu</AUni> -<AUni ws="qvm-x-akl">*qimpu</AUni> -<AUni ws="qvm-x-ame">*qimpu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.185" /> -<DateModified val="2022-10-10 21:19:47.699" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a0b02bcf-8ed0-4a2f-83b4-4efc97667de9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qimpu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ec8b49c5-c7fb-4cb2-8cb1-72c686ae009e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="04ab642a-10f0-468c-a0a0-b7f7223f2134" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qimpu 
\entryTyp root 
\gENG crouch? 
\gSPN 
\e *qimpu 
\c V1 
\ach guempu 
\akh qempu 
\acl guempu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl guempo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qempu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qempo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qimpu 
\i JOB 39.3 Wachanarga guempucaycashganchömi wachapäcun.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="acc384f3-bf34-47dc-9444-3c147eb16c82" ownerguid="39da5c85-d257-42ec-8bd2-d373499bbe6a"> -<Form> -<AUni ws="qvm-x-ach">subraya</AUni> -<AUni ws="qvm-x-acl">subraya</AUni> -<AUni ws="qvm-x-akh">subraya</AUni> -<AUni ws="qvm-x-akl">subraya</AUni> -<AUni ws="qvm-x-ame">subraya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="acc3a380-f6f2-4a49-a13c-55828a38e1de" ownerguid="fce3a591-51ce-46ad-83a2-d150940f5da5"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="acc5d82d-8b98-4681-bdb2-5092551bf329" ownerguid="e0a98173-161f-4736-9c4d-6cd40ae12f05"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="acc6e488-402e-429f-9bcb-f0a7b6da591f" ownerguid="a31c85df-02a9-4dd8-a094-0f07a0afbcca"> -<ExampleWords> -<AUni ws="en">detachable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe something that can be taken apart?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="acc995e5-23a4-473f-a29a-817ea2fedf21" ownerguid="0ced5b87-390a-4e15-85ea-b66c5cd0dce3"> -<Form> -<AUni ws="qvm-x-ach">embarga</AUni> -<AUni ws="qvm-x-acl">embarga</AUni> -<AUni ws="qvm-x-akh">embarga</AUni> -<AUni ws="qvm-x-akl">embarga</AUni> -<AUni ws="qvm-x-ame">embarga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="accaa4d6-755a-4d0c-bb8a-1d9848f089bb" ownerguid="738a09a5-59df-40f9-8a4e-176e00d03bbf"> -<ExampleWords> -<AUni ws="en">shaft, tip</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What are the parts of a spear?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="accef927-0e82-459b-81fe-31d2076dcd1b" ownerguid="0296465a-25de-4af6-a122-376956b4b452"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en"><I> went to town.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">I, you, he, she, it, we, you, they</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What pronouns are used for the subject of a sentence?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="acd02b86-79e1-47d9-9cb6-e1cd334a5fb8" ownerguid="1cc4897f-1365-440a-aa3e-d42ee2fee5d1"> -<Form> -<AUni ws="qvm-x-ach">cunca</AUni> -<AUni ws="qvm-x-acl">cunca</AUni> -<AUni ws="qvm-x-akh">kunka</AUni> -<AUni ws="qvm-x-akl">kunka</AUni> -<AUni ws="qvm-x-ame">kunka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="acd1956e-7b55-40c3-8c5c-3122e4bce2fe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">danza</AUni> -<AUni ws="qvm-x-acl">danza</AUni> -<AUni ws="qvm-x-akh">danza</AUni> -<AUni ws="qvm-x-akl">danza</AUni> -<AUni ws="qvm-x-ame">danza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+danza</AUni> -<AUni ws="qvm-x-acl">+danza</AUni> -<AUni ws="qvm-x-akh">+danza</AUni> -<AUni ws="qvm-x-akl">+danza</AUni> -<AUni ws="qvm-x-ame">+danza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.356" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b5414155-839a-4b97-9029-42e79fc3fcf2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+danza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6f50c212-ebb9-4dd7-9f44-a3658961f89c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="151fb171-73f5-4ba9-bc88-8d071ffc582c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +danza 
\entryTyp root 
\gENG dance 
\gSPN danza 
\e +danza 
\c N0 
\ach danza 
\akh danza 
\acl danza 
\akl danza 
\ame danza</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="acd50cc4-77e6-473f-88ef-b66403e035ca"> -<Form> -<Str> -<Run ws="en">v</Run> -</Str> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="acd7a2a0-ae2e-432d-9776-891d7795b64f" ownerguid="e3d23dcf-2c2c-4094-b8ed-d1381de5b36f"> -<Form> -<AUni ws="qvm-x-ach">lanza</AUni> -<AUni ws="qvm-x-acl">lanza</AUni> -<AUni ws="qvm-x-akh">lanza</AUni> -<AUni ws="qvm-x-akl">lanza</AUni> -<AUni ws="qvm-x-ame">lanza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="acdbbf09-6297-4142-b0dd-0917eaef7944" ownerguid="b654322c-087a-4153-a0d1-e329ddc2635b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="acdbed9e-5027-46ca-b7e4-131ca0e887b7" ownerguid="139c9830-e453-4fed-8fad-8a3f19e2324f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">garbage</AUni> -<AUni ws="es">basura</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d4ee1d67-cff2-47f6-9296-acdd67853f96" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="acdd06a1-a5fd-4b5e-80e8-1abb8f0c12ff" ownerguid="529140d1-6e8e-44fe-99f0-95289e933607"> -<ExampleWords> -<AUni ws="en">blood relation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to someone who is related to you by birth?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="acddab32-6de6-4b9b-98af-b531d64647b7" ownerguid="4ed53cad-3d5e-4fd9-b0bd-ae7a4cf3ec8b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Röpan caycan wachuy wachuymi.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="acddd447-bf8a-4d74-8501-7defb0525cc0" ownerguid="71dbaf5f-2afa-4282-b9b8-8a50d8c8e5e9"> -<Abbreviation> -<AUni ws="en">6.3.8.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to animal diseases.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Animal diseases</AUni> -</Name> -<Questions> -<objsur guid="7b0fc525-b91b-41bc-b61b-6bf7cd6f6448" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="ace212ed-d855-449c-a447-ac515e635a65"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">novillu; novillo</AUni> -<AUni ws="qvm-x-acl">novillu; novillu; novillo</AUni> -<AUni ws="qvm-x-akh">novillu; novillo</AUni> -<AUni ws="qvm-x-akl">novillu; novillu; novillo</AUni> -<AUni ws="qvm-x-ame">novillu; novillo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+novillo</AUni> -<AUni ws="qvm-x-acl">+novillo</AUni> -<AUni ws="qvm-x-akh">+novillo</AUni> -<AUni ws="qvm-x-akl">+novillo</AUni> -<AUni ws="qvm-x-ame">+novillo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.568" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ac34d795-4259-4f98-9416-f1e12d0a0363" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+novillo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a36f7683-c5e1-4417-9d38-3180a515facc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0b54e63a-1b13-4ac8-a50d-15a866f5d5c4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +novillo 
\entryTyp root 
\gENG steer 
\gSPN novillo 
\e +novillo 
\c N0 
\ach novillu / ~_# 
\ach novillo / _# 
\akh novillu / ~_# 
\akh novillo / _# 
\acl novillu / ~_# 
\acl novillu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl novillo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl novillu / ~_# 
\akl novillu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl novillo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame novillu / ~_# 
\ame novillo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ace273a0-b780-4a31-94ea-33fc0e937168" ownerguid="da39c0d9-a5c1-4f10-bd3b-4e988abcab5a"> -<ExampleWords> -<AUni ws="en">sorry, penitent, regretful, remorseful, rueful, convicted, guilty, contrite, repentant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels sorry?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ace55897-1102-490c-927a-4a3451cd2885" ownerguid="ea0c6f73-ae4d-44c8-93c6-91e7f5a6a50e"> -<Form> -<AUni ws="qvm-x-ach">tucapalanpa</AUni> -<AUni ws="qvm-x-acl">tucapalanpa</AUni> -<AUni ws="qvm-x-akh">tukapalanpa</AUni> -<AUni ws="qvm-x-akl">tukapalanpa</AUni> -<AUni ws="qvm-x-ame">tukapalanpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="ace9f3cc-264f-4e13-90dd-9bac5c270226" ownerguid="1b8adb92-b5e5-4408-bf9c-2ff8c6454755"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuti</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuti; cute</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuti</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuti; kute</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuti</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1ea93998-be9c-4ae6-b87a-1279a5c89619" t="r" /> -</Morph> -<Msa> -<objsur guid="35967ee3-872d-4b56-ae00-e643fda7e9f3" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="aceb5e66-75a7-4c7d-82cd-57425ed7705a" ownerguid="e6e548c7-8e3f-46b1-846c-e75c9314e75b"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="acef96aa-8f5f-4ef2-a1ca-6b090d7c9bf6" ownerguid="3d14b004-bfeb-41f3-8a76-832e2aba01bb"> -<Form> -<AUni ws="qvm-x-ach">paisänu</AUni> -<AUni ws="qvm-x-acl">paisänu; paisänu; paisäno</AUni> -<AUni ws="qvm-x-akh">paisänu</AUni> -<AUni ws="qvm-x-akl">paisänu; paisänu; paisäno</AUni> -<AUni ws="qvm-x-ame">paisänu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="acf25d4b-22bc-4bac-8185-ea548ffc1e21" ownerguid="b63ce4e1-c832-4623-b489-b8b8ad094e8c"> -<Form> -<AUni ws="qvm-x-ach">parla</AUni> -<AUni ws="qvm-x-acl">parla</AUni> -<AUni ws="qvm-x-akh">parla</AUni> -<AUni ws="qvm-x-akl">parla</AUni> -<AUni ws="qvm-x-ame">parla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="acf5d624-d859-4a04-b0a2-2ab79facbdfe" ownerguid="20a2e768-ef72-4393-8f4c-96540ff15891"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="acf5e294-d169-45c1-a9d3-960536e018cc" ownerguid="8503660c-03af-49ee-86b6-525aab4da828"> -<Abbreviation> -<AUni ws="en">2.3.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.32" /> -<DateModified val="2022-9-23 16:55:8.32" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to sounds.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Sound</AUni> -</Name> -<Questions> -<objsur guid="dd10cec0-5c8c-4f67-8fc2-cb855eb0c511" t="o" /> -<objsur guid="532b311a-f447-48d7-a96b-c42470e46df3" t="o" /> -<objsur guid="d924bf5d-c297-43d7-af6d-968147145acb" t="o" /> -<objsur guid="36726051-5c4d-416d-b164-6f418ec5f500" t="o" /> -<objsur guid="f91d8920-cf7e-400c-b196-a9eb3c574169" t="o" /> -<objsur guid="2e6498dc-7f4a-4b28-b8bd-92d0b6643002" t="o" /> -<objsur guid="30b95730-dfb6-4ea9-8323-9d1ac363a612" t="o" /> -<objsur guid="d2c3e217-1064-4164-9f55-240a8d7cfdf9" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="1e9a0881-f715-4057-9af8-251cb8eec9da" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="acf7090a-dfb2-4945-8d61-d620a856bb4a" ownerguid="ca98bd7b-8711-41f6-86d0-5cd07b7bfe0d"> -<ExampleWords> -<AUni ws="en">destructive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe someone of something that destroys things?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="acf7bdb8-a0f1-46a1-868f-55d68b9b1216" ownerguid="df2ee830-0668-43d7-8a32-e2fd3e7b31d8"> -<ExampleWords> -<AUni ws="en">tense, time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(18) What general words refer to the tense of an event?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="acf7cd30-138a-4008-a7db-5ba057b8b21c" ownerguid="72862fee-38c5-48e5-8db3-0a3884cb00e0"> -<Form> -<AUni ws="qvm-x-ach">cabildu; cabildo</AUni> -<AUni ws="qvm-x-acl">cabildu; cabildu; cabildo</AUni> -<AUni ws="qvm-x-akh">cabildu; cabildo</AUni> -<AUni ws="qvm-x-akl">cabildu; cabildu; cabildo</AUni> -<AUni ws="qvm-x-ame">cabildu; cabildo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="acfe9d17-ba68-4c6a-88cc-56555154c191" ownerguid="98bdde46-83fb-41d6-b44a-10d5d0b56867"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">five</AUni> -<AUni ws="es">cinco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="46655353-179e-4fa6-b4b8-e7d8a513f738" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="ad012705-24fa-4bf5-adca-5d416dee4250"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jurque:ta</AUni> -<AUni ws="qvm-x-acl">jurque:ta</AUni> -<AUni ws="qvm-x-akh">jurque:ta</AUni> -<AUni ws="qvm-x-akl">jurque:ta</AUni> -<AUni ws="qvm-x-ame">jurque:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+horqueta.n</AUni> -<AUni ws="qvm-x-acl">+horqueta.n</AUni> -<AUni ws="qvm-x-akh">+horqueta.n</AUni> -<AUni ws="qvm-x-akl">+horqueta.n</AUni> -<AUni ws="qvm-x-ame">+horqueta.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.741" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cc05fc77-976f-4496-afc5-92d774ebb7b9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+horqueta.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bfe41ef4-8022-415f-8769-d7d5d58e6a3b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7b8cdb38-ced0-4dab-a743-5138bcb53243" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +horqueta.n 
\entryTyp root 
\gENG winnowing fork 
\gSPN horqueta 
\e +horqueta.n 
\c N0 
\ach jurque:ta 
\akh jurque:ta 
\acl jurque:ta 
\akl jurque:ta 
\ame jurque:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="ad0157b8-1d6b-4725-aebe-d6c4a8f3f5ac" ownerguid="70ec2363-c91b-4fd0-ab07-367a1439cbdf"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="ad01b190-615c-40be-8b60-534c0dd8c056" ownerguid="c7fe3fd0-802d-429e-8f1c-9691f371f7bb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="ad02f95f-e24a-465f-9c40-282f272d688e" ownerguid="8c70c2ce-1b0c-4832-b025-2833afc56423"> -<Form> -<AUni ws="qvm-x-ach">tulpu</AUni> -<AUni ws="qvm-x-acl">tulpu; tulpu; tulpo</AUni> -<AUni ws="qvm-x-akh">tulpu</AUni> -<AUni ws="qvm-x-akl">tulpu; tulpu; tulpo</AUni> -<AUni ws="qvm-x-ame">tulpu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ad08c875-73da-498a-852d-ca7564ebf9ba" ownerguid="d45c976a-56d0-476a-bdc0-b78cee1db402"> -<Form> -<AUni ws="qvm-x-ach">mënus</AUni> -<AUni ws="qvm-x-acl">mënus</AUni> -<AUni ws="qvm-x-akh">mënus</AUni> -<AUni ws="qvm-x-akl">mënus</AUni> -<AUni ws="qvm-x-ame">mënus</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="ad123b9e-2ba6-42ab-98c8-a31b0480ef22" ownerguid="1ae6e023-810b-43f5-8de7-cbb3346890ef"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/N0 V2/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">NOM12PURJ</AUni> -<AUni ws="es">NOM12PROS</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a5828f29-3281-474f-84d6-378971bbc0be" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ad12a286-063c-423f-91ba-b264b53c7208" ownerguid="4ea4845b-ab94-4424-a1ef-eea531e392df"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ad12ad45-5ab1-458b-a987-e97b5100b688" ownerguid="1621aac3-4ea9-4373-bf1b-40fce0ca7b5e"> -<ExampleWords> -<AUni ws="en">destitute, can't make ends meet, starve</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to not having enough food or money to live?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ad137682-d3bd-4a9a-ad2d-b4a83dd2136a" ownerguid="a3ee2e46-9e30-4650-9371-e7327940ec7e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">selecting</AUni> -<AUni ws="es">escogiendo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ecdcef1c-160e-4f28-adca-9685ca9dd2f2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ad13ddbc-d619-4619-9b1a-6528bf983d4a" ownerguid="bd6846e7-173b-418b-8860-56a43c5d4387"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="ad154560-7c01-42c5-827a-c582941b0faa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">prenda</AUni> -<AUni ws="qvm-x-acl">prenda</AUni> -<AUni ws="qvm-x-akh">prenda</AUni> -<AUni ws="qvm-x-akl">prenda</AUni> -<AUni ws="qvm-x-ame">prenda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+prendar</AUni> -<AUni ws="qvm-x-acl">+prendar</AUni> -<AUni ws="qvm-x-akh">+prendar</AUni> -<AUni ws="qvm-x-akl">+prendar</AUni> -<AUni ws="qvm-x-ame">+prendar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.919" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="98464ae7-34a2-4d89-a07a-02bc8ccb5a0a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+prendar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1eb9a757-44da-4251-b252-6d2a43697a93" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1098c4d6-5f83-4b7b-b69a-7bb39a5df244" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +prendar 
\entryTyp root 
\gENG deposit 
\gSPN depositar 
\e +prendar 
\c V1 
\ach prenda 
\akh prenda 
\acl prenda 
\akl prenda 
\ame prenda</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ad15ca92-7243-48be-84a3-88fba0a0e24f" ownerguid="cb99a086-8c6d-4f90-81db-6afa69ae5455"> -<ExampleWords> -<AUni ws="en">neigh, whinny, bray (donkey)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What sounds do horses make?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ad169013-1395-405b-95d1-7191c0988114" ownerguid="d5bda083-681b-4048-80f7-d2347cf1e050"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="ad1704a0-f590-4406-881b-95656cf33c61"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">terne:ra</AUni> -<AUni ws="qvm-x-acl">terne:ra</AUni> -<AUni ws="qvm-x-akh">terne:ra</AUni> -<AUni ws="qvm-x-akl">terne:ra</AUni> -<AUni ws="qvm-x-ame">terne:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ternera</AUni> -<AUni ws="qvm-x-acl">+ternera</AUni> -<AUni ws="qvm-x-akh">+ternera</AUni> -<AUni ws="qvm-x-akl">+ternera</AUni> -<AUni ws="qvm-x-ame">+ternera</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.866" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="44b64439-183c-4f1a-85ec-327511c3bd4b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ternera</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="735e5a54-49b3-459d-a530-d103b8a8e637" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="77960e7f-4519-4a1e-9485-a96f106ec8ca" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ternera 
\entryTyp root 
\gENG 
\gSPN 
\e +ternera 
\c N0 
\ach terne:ra 
\akh terne:ra 
\acl terne:ra 
\akl terne:ra 
\ame terne:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="ad1735b2-df37-4b59-a829-daeb4b05596d" ownerguid="5bd7d08f-b49b-4ddf-8fd6-b86b60337013"> -<Form> -<AUni ws="qvm-x-ach">garza</AUni> -<AUni ws="qvm-x-acl">garza</AUni> -<AUni ws="qvm-x-akh">garza</AUni> -<AUni ws="qvm-x-akl">garza</AUni> -<AUni ws="qvm-x-ame">garza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ad187217-3508-4957-b13f-29c08e39581d" ownerguid="7f1dfb68-bf07-472d-a481-b802d2591ca6"> -<ExampleWords> -<AUni ws="en">razor blade, bandage, anesthesia, antiseptic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What tools and materials are used?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ad189eef-c72a-4cba-a909-e608d43ec691" ownerguid="0858ccbb-eb10-411c-b5b1-8c0a47b00f30"> -<Form> -<AUni ws="qvm-x-ach">waräwa</AUni> -<AUni ws="qvm-x-acl">waräwa</AUni> -<AUni ws="qvm-x-akh">waräwa</AUni> -<AUni ws="qvm-x-akl">waräwa</AUni> -<AUni ws="qvm-x-ame">waräwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="ad1c8d0b-0929-4c8a-ba19-b547c4081e9b" ownerguid="19d82084-dfa2-4189-9c8e-aea682049398"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="LexSense" guid="ad24053d-5ab6-4a84-8a32-2411dc9b18c0" ownerguid="e9ee1317-ef25-4d57-a213-5ab6fec6e2c6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lard</AUni> -<AUni ws="es">manteca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="deba586a-9a21-43c6-ac01-b4712a632422" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ad24a29e-1407-4ba9-8e3a-39f08b79d95f" ownerguid="fb460a8d-ede0-43dc-a1da-f81ef8da6f62"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="ad279a66-0b51-4d78-bf07-05d3755804a5"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">foreshortened</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="ad29b77c-0527-4b24-8b5a-73aff588a255"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">catsu</AUni> -<AUni ws="qvm-x-acl">catsu; catso</AUni> -<AUni ws="qvm-x-akh">katsu</AUni> -<AUni ws="qvm-x-akl">katsu; katso</AUni> -<AUni ws="qvm-x-ame">katsu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kachu</AUni> -<AUni ws="qvm-x-acl">*kachu</AUni> -<AUni ws="qvm-x-akh">*kachu</AUni> -<AUni ws="qvm-x-akl">*kachu</AUni> -<AUni ws="qvm-x-ame">*kachu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.902" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="187c1138-5ed9-4a82-bf4c-ed727091d6ba" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kachu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9022a64c-345e-49fa-8c13-2d2b47557bb5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fdf5b9e5-930a-4ef8-ae16-95849a152b1f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kachu 
\entryTyp root 
\gENG roll 
\gSPN enrollar 
\e *kachu 
\c V1 
\ach catsu 
\akh katsu 
\acl catsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl catso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl katsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl katso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame katsu 
\mcc *kachu / ~_ 3</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ad2dc5ac-7e3b-4b44-b1a7-bf7f6ff66496" ownerguid="401bbbe4-a33a-4a1e-b26a-18a756e002c4"> -<ExampleWords> -<AUni ws="en">be cowardly, be a coward, act cowardly, have a yellow streak</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling cowardly?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ad306ab0-5996-43a2-96c1-0727ca3f600e" ownerguid="4308b26b-16b7-454c-91e4-e58d2baaff9a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">race</AUni> -<AUni ws="es">carrera</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="43096f67-2ebf-4e67-be29-80095fe94452" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="ad35b3e0-36f4-4c90-bb88-a670d3635bf2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">brinca</AUni> -<AUni ws="qvm-x-acl">brinca</AUni> -<AUni ws="qvm-x-akh">brinca</AUni> -<AUni ws="qvm-x-akl">brinca</AUni> -<AUni ws="qvm-x-ame">brinca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+brincar.1</AUni> -<AUni ws="qvm-x-acl">+brincar.1</AUni> -<AUni ws="qvm-x-akh">+brincar.1</AUni> -<AUni ws="qvm-x-akl">+brincar.1</AUni> -<AUni ws="qvm-x-ame">+brincar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.981" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a8381301-8474-4b98-8e78-9db43d9e75d5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+brincar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="63a05e5a-1cee-4523-bdb6-426196666829" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="71d88ecd-1089-414a-8239-857e9597aea4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +brincar.1 
\entryTyp root 
\gENG jump 
\gSPN brincar 
\e +brincar.1 
\c V1 
\ach brinca 
\akh brinca 
\acl brinca 
\akl brinca 
\ame brinca</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ad3705bb-2ad8-4e24-b9f2-19600333ce33"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">añaca</AUni> -<AUni ws="qvm-x-acl">añaca</AUni> -<AUni ws="qvm-x-akh">añaka</AUni> -<AUni ws="qvm-x-akl">añaka</AUni> -<AUni ws="qvm-x-ame">añaka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*añaka</AUni> -<AUni ws="qvm-x-acl">*añaka</AUni> -<AUni ws="qvm-x-akh">*añaka</AUni> -<AUni ws="qvm-x-akl">*añaka</AUni> -<AUni ws="qvm-x-ame">*añaka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.800" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a9b382a5-80bf-41a3-99ca-34df011aef40" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*añaka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9d489a44-a00f-4f7b-9cda-20fb028b287e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8b0b4f9b-485c-42b5-9277-55dd003fb42a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *añaka 
\entryTyp root 
\gENG skunk 
\gSPN zorrillo 
\e *añaka 
\c N0 
\ach añaca 
\akh añaka 
\acl añaca 
\akl añaka 
\ame añaka</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ad3aa9fb-ed36-43bc-84af-e937d22fd47a" ownerguid="a1959b00-9702-4b45-ac46-93f18d3bc5e6"> -<ExampleWords> -<AUni ws="en">expire, draw your last breath, death rattle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to stopping breathing?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ad3d26c8-f9f7-498d-bd75-90faf8f9276d" ownerguid="09a91a89-1936-4bc3-bca0-5206a35f67cd"> -<Form> -<AUni ws="qvm-x-ach">guenti</AUni> -<AUni ws="qvm-x-acl">guenti; guente</AUni> -<AUni ws="qvm-x-akh">qenti</AUni> -<AUni ws="qvm-x-akl">qenti; qente</AUni> -<AUni ws="qvm-x-ame">qinti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="ad3d9e00-3042-4e3b-b729-3634fa2639ef" ownerguid="6af9e57c-beaf-4ebb-a656-affe9729cd38"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">disjoint</AUni> -<AUni ws="es">discoyuntar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="83f9e8b3-81dc-4f1b-acc1-94475237b811" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ad3da97f-f128-42b7-8738-e28e289bc1d3" ownerguid="44a9052c-c3a2-491b-ac0f-a5795901eafe"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ad3e3d7c-e37b-49cb-8531-37cff872eb73" ownerguid="091a58e4-d2ad-4f7f-bd0f-a1905a9c96ee"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="41c65d34-fc50-4121-b41c-dd3903c42bf7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ad412fac-a62b-480b-b253-4c8d66218a5e" ownerguid="4445cccd-e9b9-4f25-9e8c-2ef58408297d"> -<ExampleWords> -<AUni ws="en">wear, have on, be clothed, clad, shod</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to wearing clothing?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="ad47f738-08b2-474a-85ea-9d3c431d48ff" ownerguid="fbf7faf7-323b-41cc-ab45-1e58f3a30a6a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1CH 19.11 Ley religiösata\f + 19.11a Ley religiösaga parlargan Tayta Diosta imanog adorananpag y juc dioscunata ni ïdulucunata mana adorananpagmi.\f* mana cäsucogcunataga mandag cüra Amaríasmi arreglanga.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="ad4d28bb-0408-4aa7-bbac-ed1c060f3023"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">apa:ri</AUni> -<AUni ws="qvm-x-acl">apa:ri; apa:re</AUni> -<AUni ws="qvm-x-akh">apa:ri</AUni> -<AUni ws="qvm-x-akl">apa:ri; apa:re</AUni> -<AUni ws="qvm-x-ame">apa:ri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*apa:ri</AUni> -<AUni ws="qvm-x-acl">*apa:ri</AUni> -<AUni ws="qvm-x-akh">*apa:ri</AUni> -<AUni ws="qvm-x-akl">*apa:ri</AUni> -<AUni ws="qvm-x-ame">*apa:ri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.800" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="416287ce-d3d7-4695-8a16-ddd1d3f0fa66" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*apa:ri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a3635cb7-6882-4b10-8a86-fa6a9943f4f5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="09ec1678-9ece-4925-8664-1388f34109e5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *apa:ri 
\entryTyp root 
\gENG 
\gSPN 
\e *apa:ri 
\c V2 
\mp +FinalI 
\ach apa:ri 
\akh apa:ri 
\acl apa:ri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl apa:re +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl apa:ri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl apa:re +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame apa:ri</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="ad4d28f0-5cbb-4b82-b736-9b41860a248c" ownerguid="0296465a-25de-4af6-a122-376956b4b452"> -<Abbreviation> -<AUni ws="en">9.2.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for demonstrative pronouns.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>92G Demonstrative or Deictic Reference</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Demonstrative pronouns</AUni> -</Name> -<Questions> -<objsur guid="71e3d0ee-7c51-40ce-bd65-2c720a31d5eb" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="ad4de49d-b604-4574-bd16-b9470424f896" ownerguid="70e2d960-8053-46de-9e06-6bf44dd1e73d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="ad4eb470-ce57-4c4a-9a65-553e6fca9e57"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aswa</AUni> -<AUni ws="qvm-x-acl">aswa</AUni> -<AUni ws="qvm-x-akh">aswa</AUni> -<AUni ws="qvm-x-akl">aswa</AUni> -<AUni ws="qvm-x-ame">aswa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aswa</AUni> -<AUni ws="qvm-x-acl">*aswa</AUni> -<AUni ws="qvm-x-akh">*aswa</AUni> -<AUni ws="qvm-x-akl">*aswa</AUni> -<AUni ws="qvm-x-ame">*aswa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.858" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fe9e5b3b-8c4a-42f0-9b21-37d1ceb39593" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aswa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="37faed5d-0579-48de-bdb1-e593b1ee4037" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9707f666-a3dd-4987-82e4-2508038e223d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aswa 
\entryTyp root 
\gENG juice 
\gSPN chicha 
\e *aswa 
\c N0 
\ach aswa 
\akh aswa 
\acl aswa 
\akl aswa 
\ame aswa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ad4f7395-9a11-4cdb-9811-eb0aab310e89" ownerguid="58f9004c-69b5-444d-a932-842c08d6907d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">aim</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="19eb6f21-eb62-4dbe-bfbb-3322ebf82b98" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="ad4f778f-3c8f-4fdf-87c0-8a03727896e4" ownerguid="907b24b6-7dcc-428e-afec-86cb20362d4a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="r" /> -</Morph> -</rt> -<rt class="WfiGloss" guid="ad511186-81ea-4a35-8b33-9daf3c1edafe" ownerguid="6aed624e-1b4a-4909-a8d2-0baf1c658458"> -<Form> -<AUni ws="es">*kimsa</AUni> -</Form> -</rt> -<rt class="CmDomainQ" guid="ad530357-3096-4972-9c3e-13785932791d" ownerguid="243d8a57-d5ed-4d7f-bd5e-f2605634f0fc"> -<ExampleWords> -<AUni ws="en">defender, guard, sentinel, lookout, watchman</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a person who defends?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ad541a44-bd90-446d-8b52-cf8bcb85f460"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">contra</AUni> -<AUni ws="qvm-x-acl">contra</AUni> -<AUni ws="qvm-x-akh">contra</AUni> -<AUni ws="qvm-x-akl">contra</AUni> -<AUni ws="qvm-x-ame">contra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+contra</AUni> -<AUni ws="qvm-x-acl">+contra</AUni> -<AUni ws="qvm-x-akh">+contra</AUni> -<AUni ws="qvm-x-akl">+contra</AUni> -<AUni ws="qvm-x-ame">+contra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.172" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="67128ed7-0c4f-4490-bd68-209eba2556a5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+contra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6fbef779-0a16-4227-80ef-6f7088b804a6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="51ef8608-08bc-4022-810d-15e590090edc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +contra 
\entryTyp root 
\gENG enemy 
\gSPN contra 
\e +contra 
\c N0 
\ach contra 
\akh contra 
\acl contra 
\akl contra 
\ame contra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="ad542860-254b-421c-8195-a6add455fd27" ownerguid="426a871a-86dc-41af-a698-1a77dae28f35"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="ad54b888-1997-44df-b814-c737ba1140b1" ownerguid="681812e8-bf9b-4607-93fb-8f4232c25b8f"> -<Form> -<AUni ws="qvm-x-ach">chiwi</AUni> -<AUni ws="qvm-x-acl">chiwi; chiwe</AUni> -<AUni ws="qvm-x-akh">chiwi</AUni> -<AUni ws="qvm-x-akl">chiwi; chiwe</AUni> -<AUni ws="qvm-x-ame">chiwi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ad5563f2-c536-4c19-9d85-0fa19b15ed06" ownerguid="7b17e304-9a3f-463f-8216-cd1e1e119e0e"> -<ExampleWords> -<AUni ws="en">divide, division</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used of dividing one number by another number?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="ad55e4ad-cad4-4eb6-adc9-e41a236ae9cd" ownerguid="a51b808e-e22e-4784-b577-e2cd73c62637"> -<Form> -<AUni ws="qvm-x-ach">ga</AUni> -<AUni ws="qvm-x-acl">ga</AUni> -<AUni ws="qvm-x-akh">qa</AUni> -<AUni ws="qvm-x-akl">qa</AUni> -<AUni ws="qvm-x-ame">qa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="8378f21c-cf54-437a-9d41-a303c764b326" t="r" /> -</PhoneEnv> -</rt> -<rt class="CmSemanticDomain" guid="ad56dc48-9c39-43f6-9386-f7df80d93cd4" ownerguid="5ea9301a-9906-4e81-97cf-48ee95a54c63"> -<Abbreviation> -<AUni ws="en">3.3.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.121" /> -<DateModified val="2022-9-23 16:55:8.121" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to insisting--to say strongly or repeatedly that someone must do something, because the other person does not want to do it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33E' Insist</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Insist</AUni> -</Name> -<Questions> -<objsur guid="c11bbfd9-2e5b-4dcb-bc8a-4adc8ba5dd75" t="o" /> -<objsur guid="736e1cc2-3a96-4c70-a905-c6f91aed17f6" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="ad56e8e3-c46b-4007-9823-7fa7a7a9d5ba"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wanyay</AUni> -<AUni ws="qvm-x-acl">wanyay</AUni> -<AUni ws="qvm-x-akh">wanyay</AUni> -<AUni ws="qvm-x-akl">wanyay</AUni> -<AUni ws="qvm-x-ame">wanyay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wanyay</AUni> -<AUni ws="qvm-x-acl">*wanyay</AUni> -<AUni ws="qvm-x-akh">*wanyay</AUni> -<AUni ws="qvm-x-akl">*wanyay</AUni> -<AUni ws="qvm-x-ame">*wanyay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.485" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c7515ff6-81d0-424d-ba62-556ad2f773b7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wanyay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c92cf85d-6e2d-4550-a504-c5c71703ed79" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fc6cd834-f4cf-4fdb-bfa0-1b46a625000c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wanyay 
\entryTyp root 
\gENG bone.dry 
\gSPN muy.seco 
\e *wanyay 
\c ONSHEV 
\mp +FinalC 
\ach wanyay 
\akh wanyay 
\acl wanyay 
\akl wanyay 
\ame wanyay</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ad58df32-1584-4b93-9eb4-5b619cc5aad4" ownerguid="3f2a2fc1-284f-4ee3-a5bd-62123a87d4c1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spread.legs</AUni> -<AUni ws="es">piernas.exten</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="78efd21c-0956-475b-9a61-1024f3a127b6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ad599b48-44c1-49b8-9d7a-00f526442a72" ownerguid="101c16f8-ec76-4ec7-895a-fd814fef51dd"> -<ExampleWords> -<AUni ws="en">surgery, surgical, operate, operation, perform an operation, have an operation, major surgery, minor surgery, operating theater, operating table, amputate, implant, transplant, inoperable, incision, stitch, suture, sew up, scalpel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to surgery?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ad59a0d7-06bd-49f0-a80c-76050a15ad74" ownerguid="868ef7d2-d980-4024-81dc-9b20c8ee9201"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="5fce8b22-1461-4a32-835b-9468fb8da71c" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="e169a9f0-e8fb-46d0-a08e-6bc8021b5fa1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="ad5a17f1-2384-44f7-874d-d44c172a2347" ownerguid="ac79fb7b-f09d-40b4-92ca-34a8c5655349"> -<Form> -<AUni ws="qvm-x-ach">urpu</AUni> -<AUni ws="qvm-x-acl">urpu; urpu; urpo</AUni> -<AUni ws="qvm-x-akh">urpu</AUni> -<AUni ws="qvm-x-akl">urpu; urpu; urpo</AUni> -<AUni ws="qvm-x-ame">urpu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ad5c7fb2-e2fd-48c9-8a7c-a6c1ea17439e" ownerguid="9c21f9bd-a7e0-4989-99f1-7fa2853ab73c"> -<ExampleWords> -<AUni ws="en">cut, trim, haircut, barber, scissors, haircutter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to cutting hair?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ad613495-f4d0-468e-bd2b-5480e800d154" ownerguid="e55ec875-33e0-4e71-b2b3-dfa2c131782f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">earth</AUni> -<AUni ws="es">tierra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e7ec9b3c-51fa-4556-b124-7eb09dc11e2b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="ad61acd7-a41f-450c-89ff-6a1a758546d3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lasa; lasa:</AUni> -<AUni ws="qvm-x-acl">lasa; lasa:</AUni> -<AUni ws="qvm-x-akh">lasa; lasa:</AUni> -<AUni ws="qvm-x-akl">lasa; lasa:</AUni> -<AUni ws="qvm-x-ame">lasa; lasa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llasa:</AUni> -<AUni ws="qvm-x-acl">*llasa:</AUni> -<AUni ws="qvm-x-akh">*llasa:</AUni> -<AUni ws="qvm-x-akl">*llasa:</AUni> -<AUni ws="qvm-x-ame">*llasa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.164" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e6dcd6c6-0e04-4367-aa20-cb9a023ceeba" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llasa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3d346683-aa99-438b-91fa-7fc4a8c46918" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="279acb7e-451e-4986-995d-9c9a1bfc6772" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llasa: 
\entryTyp root 
\gENG be.heavy 
\gSPN ser.pesado 
\e *llasa: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach lasa foreshortened 
\ach lasa: 
\akh lasa foreshortened 
\akh lasa: 
\acl lasa foreshortened 
\acl lasa: 
\akl lasa foreshortened 
\akl lasa: 
\ame lasa foreshortened 
\ame lasa:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="ad658b78-a68c-4c67-9c32-e2db16bd2a78" ownerguid="cf21bb99-7006-449d-afb9-e63e844d4440"> -<Form> -<AUni ws="qvm-x-ach">wäca</AUni> -<AUni ws="qvm-x-acl">wäca</AUni> -<AUni ws="qvm-x-akh">wäka</AUni> -<AUni ws="qvm-x-akl">wäka</AUni> -<AUni ws="qvm-x-ame">wäka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="ad67443c-99ff-474d-9bcb-ddf3d7d8a639"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">torta</AUni> -<AUni ws="qvm-x-acl">torta</AUni> -<AUni ws="qvm-x-akh">torta</AUni> -<AUni ws="qvm-x-akl">torta</AUni> -<AUni ws="qvm-x-ame">torta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+torta</AUni> -<AUni ws="qvm-x-acl">+torta</AUni> -<AUni ws="qvm-x-akh">+torta</AUni> -<AUni ws="qvm-x-akl">+torta</AUni> -<AUni ws="qvm-x-ame">+torta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.957" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ae1799fb-8ba2-4ef2-a856-defe530700e7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+torta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a47d60d0-f727-47a2-8815-f9cf26e51894" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cfc33dbe-edb0-403a-8e96-7116428a9396" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +torta 
\entryTyp root 
\gENG cake 
\gSPN torta 
\e +torta 
\c N0 
\ach torta 
\akh torta 
\acl torta 
\akl torta 
\ame torta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ad68c6d7-53c1-4163-962c-5cf73a2cd717" ownerguid="45d867c7-8496-4c92-bb41-b7db5db47717"> -<ExampleWords> -<AUni ws="en">tub, porker</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to someone who is fat?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ad691732-4d82-4732-99c0-c28313dd25d0" ownerguid="751731b9-43be-4f3d-a968-bdc8fdb4e286"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ad6d4e1b-0e48-4ee8-9442-df2ef894e715" ownerguid="dbf1d8b9-e72f-47ae-a8f8-668abee90062"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ground</AUni> -<AUni ws="es">suelo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8da0f92a-148f-42c2-a860-7ef0d899db60" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ad6f75e6-6807-4525-858d-75123b6cb344" ownerguid="97248d2a-b920-4dd9-9eb5-f36890a82e7d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="ad752873-0f3d-4d51-b9d0-e801747df65c" ownerguid="74778ce4-f823-4579-96fa-7ed43eedd31e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="ad79ba7a-b8da-4239-b4e1-43e6a8c5cb23" ownerguid="c2dbe83a-d638-45ac-a6d5-5f041b9dde71"> -<ExampleWords> -<AUni ws="en">disabled, handicapped, crippled, paralyzed, partially paralyzed, totally paralyzed, maimed, disfigured, mutilated, lame</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe someone who has been disabled?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ad7c037b-9d49-405a-92bf-b5705a60d818"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chuchu</AUni> -<AUni ws="qvm-x-acl">chuchu; chuchu; chucho</AUni> -<AUni ws="qvm-x-akh">chuchu</AUni> -<AUni ws="qvm-x-akl">chuchu; chuchu; chucho</AUni> -<AUni ws="qvm-x-ame">chuchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chuchu.n</AUni> -<AUni ws="qvm-x-acl">*chuchu.n</AUni> -<AUni ws="qvm-x-akh">*chuchu.n</AUni> -<AUni ws="qvm-x-akl">*chuchu.n</AUni> -<AUni ws="qvm-x-ame">*chuchu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.333" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b6b5c37d-9c62-4add-8c63-55f82a1e0de3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chuchu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1dc0be0f-f56f-4e52-8646-d89d6133f86b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8d5db195-4be8-4cfd-b790-80a6fbf09825" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chuchu.n 
\entryTyp root 
\gENG teat 
\gSPN teta 
\e *chuchu.n 
\c N0 
\ach chuchu 
\akh chuchu 
\acl chuchu / _# 
\acl chuchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chucho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chuchu / _# 
\akl chuchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chucho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chuchu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="ad7cc381-1dc6-4fc2-94a4-acd5bf7a11da" ownerguid="3ea4c495-b837-4310-8741-38d89fa63e0b"> -<Abbreviation> -<AUni ws="en">9.4.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.700" /> -<DateModified val="2022-9-23 16:55:8.700" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that a speaker uses to indicate that he thinks something is certainly true or is certain to happen.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>71C Certain, Uncertain</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Certainly, definitely</AUni> -</Name> -<Questions> -<objsur guid="2a02552e-580e-4063-ac83-19d6f8501c2b" t="o" /> -<objsur guid="5344875c-090a-4c12-8341-e0de4e68f71e" t="o" /> -<objsur guid="3be48dbd-cf40-40f1-a9d7-668973368f17" t="o" /> -<objsur guid="21065a53-7f6d-4b25-9b4b-6d4fad141cac" t="o" /> -<objsur guid="5e0ad2d5-2deb-4e82-8e3b-b0e62e8ddb07" t="o" /> -<objsur guid="3cdf8bc6-eedb-4a49-8677-7425823870a2" t="o" /> -<objsur guid="9ced4037-ba9a-4b83-8465-e6e15120d1da" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="af6fe2d6-576d-473f-8a32-583779d95d1d" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="ad7f54e5-6111-4a44-8c63-314db143cc8d" ownerguid="4bfe53d2-fb85-4397-98a8-97d59b907064"> -<ExampleWords> -<AUni ws="en">row, paddle, sail, push a boat with a pole, pole a boat, bale out water</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words are used of operating a boat?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ad808fc5-c58c-42ae-b8ff-9bdbb06937e5" ownerguid="f2b0d936-da1a-4871-b734-24e101878b58"> -<Form> -<AUni ws="qvm-x-ach">wayunca</AUni> -<AUni ws="qvm-x-acl">wayunca</AUni> -<AUni ws="qvm-x-akh">wayunka</AUni> -<AUni ws="qvm-x-akl">wayunka</AUni> -<AUni ws="qvm-x-ame">wayunka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ad8129d0-7e11-4c59-a506-309e3b636faa" ownerguid="530ff7e0-e3cb-4dc3-9c1c-3034969e1ce8"> -<ExampleWords> -<AUni ws="en">retributive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something done in revenge?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ad827ada-b1a4-42f8-ba9d-1d76e14d03dd" ownerguid="ebeb90e5-7f43-4363-9474-8590442058d3"> -<Form> -<AUni ws="qvm-x-ach">fiebri; fiebre</AUni> -<AUni ws="qvm-x-acl">fiebri; fiebri; fiebre</AUni> -<AUni ws="qvm-x-akh">fiebri; fiebre</AUni> -<AUni ws="qvm-x-akl">fiebri; fiebri; fiebre</AUni> -<AUni ws="qvm-x-ame">fiebri; fiebre</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="ad83a7c3-2946-4b60-b967-c11101404479"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ninti</AUni> -<AUni ws="qvm-x-acl">ninti; ninti; ninte</AUni> -<AUni ws="qvm-x-akh">ninti</AUni> -<AUni ws="qvm-x-akl">ninti; ninti; ninte</AUni> -<AUni ws="qvm-x-ame">ninti</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.589" /> -<DateModified val="2022-10-16 15:10:28.84" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="752bab55-0dac-46cb-8854-cb97847a0375" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">WITH.C1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8a80fcb3-0227-404b-88a5-73d9f5ac5ad6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8e609ed6-ef7d-4882-89bb-c449004d65a8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx WITH.C1 
\entryTyp suffix 
\gENG WITH.C1 
\gSPN MAS.C1 
\e WITH.C1 
\c N0/N0 N1/N0 
\o 000 
\mp +FinalI 
\ach ninti 
\akh ninti 
\acl ninti / _# 
\acl ninti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ninte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ninti / _# 
\akl ninti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ninte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ninti 
\mcc WITH.C1 / {+FinalC} _ / 2P.I _ / 2P.V _</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ad852fb4-7c09-4628-81bc-d28b7174cc0e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">defrenti; defrente</AUni> -<AUni ws="qvm-x-acl">defrenti; defrente; defrenti</AUni> -<AUni ws="qvm-x-akh">defrenti; defrente</AUni> -<AUni ws="qvm-x-akl">defrenti; defrente; defrenti</AUni> -<AUni ws="qvm-x-ame">defrenti; defrente</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+defrente</AUni> -<AUni ws="qvm-x-acl">+defrente</AUni> -<AUni ws="qvm-x-akh">+defrente</AUni> -<AUni ws="qvm-x-akl">+defrente</AUni> -<AUni ws="qvm-x-ame">+defrente</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.376" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b1ca3252-b6ab-4704-b3fc-152cbdebbf7f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+defrente</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="16805469-5fd7-403f-b5f6-a3cb87531a55" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="192dbac7-beff-44be-967b-159b6d0cc5b0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +defrente 
\entryTyp root 
\gENG straight 
\gSPN de.frente 
\e +defrente 
\c R0 
\mp +FinalI 
\ach defrenti / ~_# 
\ach defrente / _# 
\akh defrenti / ~_# 
\akh defrente / _# 
\acl defrenti / _# 
\acl defrente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl defrenti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl defrenti / _# 
\akl defrente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl defrenti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame defrenti / ~_# 
\ame defrente / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="ad87a2fb-9699-4d00-84e9-8a90ac2d0034" ownerguid="a2efa866-b02c-4893-a7ba-d6c4629ea7e3"> -<Form> -<AUni ws="qvm-x-ach">parti; parte</AUni> -<AUni ws="qvm-x-acl">parti; parti; parte</AUni> -<AUni ws="qvm-x-akh">parti; parte</AUni> -<AUni ws="qvm-x-akl">parti; parti; parte</AUni> -<AUni ws="qvm-x-ame">parti; parte</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="ad8a9294-25ba-47fe-a809-681a77ae2041" ownerguid="299c2c32-9eee-4983-bf99-83dc623d7469"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ad8ad9b5-d166-4d9a-89b5-a5e4da1e1417" ownerguid="b6b73d41-e23f-4f22-b01e-7e75f4115fce"> -<ExampleWords> -<AUni ws="en">for, be for, for the sake of, serve to, so, so that, to, toward, with a view to, with the aim of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate the purpose of something?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="ad8e299f-1d96-4666-ba6a-39a851d52fb1" ownerguid="5cd4d841-a1fa-4c17-a0ec-c8f5472702f2"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Taytanwan micanacuycan. Son tan parecidos en su fisonomía que uno de ellos, sea el padre o el hijo va a morir.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="ad94680a-00c9-4c0f-97af-803ee6828dde" ownerguid="ae0190e6-ac98-44c2-b5ef-f8990394129f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ad948eca-922b-4019-8f6d-9085de247bac" ownerguid="cb95189c-8c74-465b-af07-48e08dbf7c39"> -<ExampleWords> -<AUni ws="en">attitude, mood, state of mind, frame of mind, spirits, morale</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to feeling something for a long time?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ad95ae11-c210-4cd0-88ff-c9fd689f4a3a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">atpi</AUni> -<AUni ws="qvm-x-acl">atpi; atpe</AUni> -<AUni ws="qvm-x-akh">atpi</AUni> -<AUni ws="qvm-x-akl">atpi; atpe</AUni> -<AUni ws="qvm-x-ame">atpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*atpi</AUni> -<AUni ws="qvm-x-acl">*atpi</AUni> -<AUni ws="qvm-x-akh">*atpi</AUni> -<AUni ws="qvm-x-akl">*atpi</AUni> -<AUni ws="qvm-x-ame">*atpi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.868" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fb664a7e-7e3c-4df1-a1ab-ea2a8873cf24" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*atpi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bfb9b2d4-0320-4970-a426-3186d22b7a09" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="09184d32-2818-4489-afa2-9c699ca70f40" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *atpi 
\entryTyp root 
\gENG 
\gSPN desear 
\e *atpi 
\c V1 
\mp +FinalI 
\ach atpi 
\akh atpi 
\acl atpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl atpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl atpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl atpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame atpi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="ad9ba918-a713-499c-99d2-5a9f603eb978" ownerguid="ba4f9b46-0704-4a5f-a6fe-0e30f88b3b8d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="ad9dc86b-32a6-4f79-8f22-dc0e8cdf6325" ownerguid="76de6e68-dc9a-4cd6-9641-2eba2d9a92c3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ad9e3a4d-6503-4611-9211-cf4c1da9ccbc" ownerguid="715eee13-dfed-43bb-9ec5-bd398e998ca9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">one</AUni> -<AUni ws="es">uno(a)</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4f8f8fdd-f3f4-45d3-bfda-babfb57eb81a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ada0be66-d372-4256-800b-bb3e6edf751c" ownerguid="57e367f4-7029-4916-a700-791db32b4745"> -<ExampleWords> -<AUni ws="en">spend, pay, give</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to spending money?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ada4a7e0-3e0b-48b7-aaca-be5b25b155ed" ownerguid="830d8cda-37a3-4f9d-ac02-4ec5aac52794"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="f26bcc4c-470e-4005-bbcf-d690cb6122e0" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">to.hook</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ff982186-e509-4a56-8a54-b26476900954" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ada61b4a-d11a-44ad-93b8-06b1f4fffbd9" ownerguid="cb95189c-8c74-465b-af07-48e08dbf7c39"> -<ExampleWords> -<AUni ws="en">stimulation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to something that causes someone to feel something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ada8db99-c952-4314-84a9-6ad0aaa3b8ef" ownerguid="9e61a509-b7fd-422e-bd51-42e6be23fd60"> -<Form> -<AUni ws="qvm-x-ach">desmantela</AUni> -<AUni ws="qvm-x-acl">desmantela</AUni> -<AUni ws="qvm-x-akh">desmantela</AUni> -<AUni ws="qvm-x-akl">desmantela</AUni> -<AUni ws="qvm-x-ame">desmantela</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="ada92c0c-a1db-4a81-bcf9-675c47f67688" ownerguid="1d2097b0-904f-43f2-a510-795fd4650081"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="adacc72a-3893-4edc-9e59-5d278dac4bd0" ownerguid="5b12ea7b-790f-4f3e-8d07-893fc267773e"> -<ExampleWords> -<AUni ws="en">rain, build, rise, gather, disperse, billow, blow, blown by the wind, move across the sky, threatening, shadow, obscure, hide (the sun)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What do clouds do?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="adae5f96-4e8f-481a-885d-29b241e2fa31" ownerguid="a45ac6c1-c929-41af-8d66-92064af39619"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">field</AUni> -<AUni ws="es">sementera</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f867685a-e850-4f10-a24e-cecdf0e27b26" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="adb32d21-a057-428a-8b51-cfc1d643dc84" ownerguid="0b67c9a4-a590-4417-a289-77d963f50a8d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cold.wind</AUni> -<AUni ws="es">viento.frio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cc6b9254-bbcf-4cbe-8a25-d2855cd7e115" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="adb34adc-a53b-4ac5-be7a-6322eace9918" ownerguid="89e74a22-861c-4358-9402-d95b9b33a18f"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="c4aea3b2-4462-44b4-b371-f037d684c5cb" t="o" /> -<objsur guid="4a895d1c-deaf-49b8-a3c9-522fcb804abb" t="o" /> -<objsur guid="99946c9a-38b6-4c06-92b7-bc9f323e79ad" t="o" /> -<objsur guid="97330f32-4d7d-4ad2-b61c-4061a024bce1" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="adb49030-5bbd-41ea-a303-c010c7ef23e0" ownerguid="fb16da71-89b7-4b66-849a-51a11d68b30c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">árbol</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5c8b372a-26e8-404b-8ae8-72f0f1db6a8f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="adb5072a-99a3-4f4e-8a2d-5b24cae783d9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">topuyiyu</AUni> -<AUni ws="qvm-x-acl">topuyiyu; topuyiyu; topuyiyo</AUni> -<AUni ws="qvm-x-akh">topuyiyu</AUni> -<AUni ws="qvm-x-akl">topuyiyu; topuyiyu; topuyiyo</AUni> -<AUni ws="qvm-x-ame">tupuyiyu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*topuyiyu</AUni> -<AUni ws="qvm-x-acl">*topuyiyu</AUni> -<AUni ws="qvm-x-akh">*topuyiyu</AUni> -<AUni ws="qvm-x-akl">*topuyiyu</AUni> -<AUni ws="qvm-x-ame">*topuyiyu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.954" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e93271cd-d5c3-44bb-b91f-d88151999010" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*topuyiyu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6adf1e67-dfd0-458a-a11a-841cedac9549" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="552fde46-f7cd-4930-a375-7abec907ec46" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *topuyiyu 
\entryTyp root 
\gENG small.man 
\gSPN hombre.chico 
\e *topuyiyu 
\c N0 
\ach topuyiyu 
\akh topuyiyu 
\acl topuyiyu / _# 
\acl topuyiyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl topuyiyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl topuyiyu / _# 
\akl topuyiyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl topuyiyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tupuyiyu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="adb7dfa4-d2a9-403d-aab7-ce3575797776" ownerguid="7e06cd32-a360-48d3-bc41-7b65527d6c04"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 28.33 Sotänapa ura cuchunpa azul tëlapita, morädu tëlapita y puca chicnu tëlapita adornuta granädatanog churatsinqui.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="adb8cc38-5c13-4a0b-8a62-4ebdc86c1ee3" ownerguid="349937e3-a2fd-41f8-b7c4-bd6fa106add4"> -<ExampleWords> -<AUni ws="en">recede</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a flood ending?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="adbbaefc-f8a4-4143-8822-bc10a07db717" ownerguid="efa87dee-281c-4f4d-812f-8b5cb8b5bcf8"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="adbd8389-d4d7-4d75-b914-579ae027c710" ownerguid="6339d20b-014e-473a-ac82-e0003bf10b2a"> -<Form> -<AUni ws="qvm-x-ach">pachun</AUni> -<AUni ws="qvm-x-acl">pachun</AUni> -<AUni ws="qvm-x-akh">pachun</AUni> -<AUni ws="qvm-x-akl">pachun</AUni> -<AUni ws="qvm-x-ame">pachun</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="adbe08c9-69da-4462-a12f-d398b9efd562" ownerguid="1c512719-6ecb-48cb-980e-4ff20e8b5f9b"> -<ExampleWords> -<AUni ws="en">spirit, animal spirits</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the spirits of things?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="adc1a826-ccca-4732-8833-c9d1ce999d2d" ownerguid="537dd732-414e-4265-9d6c-f241c6006415"> -<Form> -<AUni ws="qvm-x-ach">chacu</AUni> -<AUni ws="qvm-x-acl">chacu; chaco</AUni> -<AUni ws="qvm-x-akh">chaku</AUni> -<AUni ws="qvm-x-akl">chaku; chako</AUni> -<AUni ws="qvm-x-ame">chaku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="adc2293d-d6e3-428c-8c25-618bd91282c9" ownerguid="0a1b26b2-2152-45e2-9b63-4a68fca73a90"> -<ExampleWords> -<AUni ws="en">musician, singer, player, performer, band member, choir member</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a person who performs music?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="adc33d47-17d7-446d-ae82-5af743c1cb02" ownerguid="81b564d9-347e-4ad1-9cc1-bfa7497fe06a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="adc8ccff-d2f9-46a7-8f01-72012aad7bff" ownerguid="e99c5aba-e736-4972-9889-99ff7c3d0af2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hit</AUni> -<AUni ws="es">pegar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e0ee6ed5-ea65-46ec-975e-e54684b58735" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="adc91699-7e9d-410e-a513-5f24cff284bd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mishi</AUni> -<AUni ws="qvm-x-acl">mishi; mishi; mishe</AUni> -<AUni ws="qvm-x-akh">mishi</AUni> -<AUni ws="qvm-x-akl">mishi; mishi; mishe</AUni> -<AUni ws="qvm-x-ame">mishi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mishi</AUni> -<AUni ws="qvm-x-acl">*mishi</AUni> -<AUni ws="qvm-x-akh">*mishi</AUni> -<AUni ws="qvm-x-akl">*mishi</AUni> -<AUni ws="qvm-x-ame">*mishi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.455" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e7f64350-9a20-4093-934a-c781dd0539e8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mishi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="84db17f9-8259-488e-99c0-10c7c3639d7a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a3d94743-abc3-4c6c-8430-dcf9c47650f9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mishi 
\entryTyp root 
\gENG cat 
\gSPN gato 
\e *mishi 
\c N0 
\mp +FinalI 
\ach mishi 
\akh mishi 
\acl mishi / _# 
\acl mishi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mishe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mishi / _# 
\akl mishi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mishe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mishi</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="adcac372-98b1-425a-979d-2777af1d6603" ownerguid="31ec0cbc-4079-4c6c-873a-d0c406383db2"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a4d42f6f-d626-4469-8166-21d6f4e69d6d" t="r" /> -</Morph> -<Msa> -<objsur guid="72dc7bab-4d12-4cdb-a144-3c853f889fb5" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="add0dd6b-99e9-418d-af6d-bcece8e30789" ownerguid="a41bc2dd-1cae-4c9d-b160-1cef755c581e"> -<Form> -<AUni ws="qvm-x-ach">necesariu; necesario</AUni> -<AUni ws="qvm-x-acl">necesariu; necesariu; necesario</AUni> -<AUni ws="qvm-x-akh">necesariu; necesario</AUni> -<AUni ws="qvm-x-akl">necesariu; necesariu; necesario</AUni> -<AUni ws="qvm-x-ame">necesariu; necesario</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="add33d77-245d-44a4-8541-290270a34930" ownerguid="44a9052c-c3a2-491b-ac0f-a5795901eafe"> -<Form> -<AUni ws="qvm-x-ach">gloria</AUni> -<AUni ws="qvm-x-acl">gloria</AUni> -<AUni ws="qvm-x-akh">gloria</AUni> -<AUni ws="qvm-x-akl">gloria</AUni> -<AUni ws="qvm-x-ame">gloria</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="add7bb08-faca-4aaf-8a40-cecbdfb06323" ownerguid="65c68427-2e20-42b2-8f49-623055ea9246"> -<ExampleWords> -<AUni ws="en">hammer, mallet, club, pestle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What types of pounding tools are there?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="add7df10-d641-418a-8a58-6aa2069be819"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">marmarya; marmarya:</AUni> -<AUni ws="qvm-x-acl">marmarya; marmarya:</AUni> -<AUni ws="qvm-x-akh">marmarya; marmarya:</AUni> -<AUni ws="qvm-x-akl">marmarya; marmarya:</AUni> -<AUni ws="qvm-x-ame">marmarya; marmarya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*marmarya:</AUni> -<AUni ws="qvm-x-acl">*marmarya:</AUni> -<AUni ws="qvm-x-akh">*marmarya:</AUni> -<AUni ws="qvm-x-akl">*marmarya:</AUni> -<AUni ws="qvm-x-ame">*marmarya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.346" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="718adb17-ff98-4853-8389-275d494ca322" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*marmarya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="afde997c-1da1-437f-8304-0d6a6ea9aea3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6acfc64e-630c-4564-9f19-06669ed0d770" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *marmarya: 
\entryTyp root 
\gENG 
\gSPN 
\e *marmarya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach marmarya foreshortened 
\ach marmarya: 
\akh marmarya foreshortened 
\akh marmarya: 
\acl marmarya foreshortened 
\acl marmarya: 
\akl marmarya foreshortened 
\akl marmarya: 
\ame marmarya foreshortened 
\ame marmarya:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoAffixAllomorph" guid="add93156-8778-48d6-a0b7-2e3588ad7cd8" ownerguid="784206f3-6f68-4d54-b582-250080a9b777"> -<Form> -<AUni ws="qvm-x-ach">tä</AUni> -<AUni ws="qvm-x-acl">tä</AUni> -<AUni ws="qvm-x-akh">tä</AUni> -<AUni ws="qvm-x-akl">tä</AUni> -<AUni ws="qvm-x-ame">tä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="add9925e-41ea-4a84-b18c-bb7ce005d808" ownerguid="85b50531-5fc2-4a1b-9353-a36b8d62d308"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">veruga.grande</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="117fefbb-1a82-444f-a00d-4af9adf357a5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="addd8440-9588-4bf2-8989-582cf651bcae"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ja:ma</AUni> -<AUni ws="qvm-x-acl">ja:ma</AUni> -<AUni ws="qvm-x-akh">ja:ma</AUni> -<AUni ws="qvm-x-akl">ja:ma</AUni> -<AUni ws="qvm-x-ame">ha:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ha:ma</AUni> -<AUni ws="qvm-x-acl">*ha:ma</AUni> -<AUni ws="qvm-x-akh">*ha:ma</AUni> -<AUni ws="qvm-x-akl">*ha:ma</AUni> -<AUni ws="qvm-x-ame">*ha:ma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.650" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="682e04d9-f8ed-425a-a5da-9b85acc099d4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ha:ma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6888d1a4-5bb6-442c-be1e-fb1891754248" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ddfcbbd8-07f6-4fb6-a08d-b61ac2827cfc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ha:ma 
\entryTyp root 
\gENG breathe 
\gSPN respirar 
\e *ha:ma 
\c V1 
\ach ja:ma 
\akh ja:ma 
\acl ja:ma 
\akl ja:ma 
\ame ha:ma 
\i jämaytapis manami cachantsu - está enojado 
\mcc *ha:ma / ~_ INF.noI CAUSBE INF.noI GEN 
\mcc *ha:ma / ~_ ALL.2 
\mcc *ha:ma / ~_ IN1</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="adde4a66-9040-47a9-91ab-327934a2e97e" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<Abbreviation> -<AUni ws="en">6.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.468" /> -<DateModified val="2022-9-23 16:55:8.468" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to working with wood.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Working with wood</AUni> -</Name> -<OcmCodes> -<Uni>322 Woodworking; 335 Carpentry; 289 Paper Industry</Uni> -</OcmCodes> -<Questions> -<objsur guid="a45ef71b-c7e6-45db-8bfe-6718993a5c88" t="o" /> -<objsur guid="1fbe05ec-7e18-4943-b35b-00c42eafd67f" t="o" /> -<objsur guid="25808cfb-f179-4b90-be9d-c3e46ef10aa2" t="o" /> -<objsur guid="b665ae86-5bb5-4d70-a964-a3a1a2c5c139" t="o" /> -<objsur guid="519f7c1a-aec9-41aa-ad7d-820123c47602" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="345e019f-87d2-415d-ba37-9fb85460f7e1" t="o" /> -<objsur guid="0fef044a-c822-450d-b54a-eac8621e50c2" t="o" /> -<objsur guid="d8389a63-8b39-4e23-8528-cd756dae2f5c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="ade061f6-d8fb-4db8-a03a-f0cbdb94cf15" ownerguid="86fe101f-30e2-477d-8931-ddf85b9af83e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="ade0f55f-f237-438f-b525-01a8bd3b4f33" ownerguid="499fe33d-789f-405b-813d-f75f798508f2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ade23c6c-29e5-4816-9f44-910012fa04e9" ownerguid="5c35c2f8-d17c-42a3-aa12-a4c29b6603e8"> -<ExampleWords> -<AUni ws="en">bend, bow, curve, kink, loop, angle, joint</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a bend in something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ade36d57-b360-4679-a822-a17bd312db9a" ownerguid="f0f3c371-166e-4a66-849f-60d6fa7ad889"> -<ExampleWords> -<AUni ws="en">line, stanza, verse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a part of a poem?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="ade3ef6d-7e47-4299-a8b1-c69f144b2a69" ownerguid="593f8912-967c-4bc5-8eac-b681cf9a5f2f"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ishcay camata</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="ade48fbd-6348-4cc9-b18b-04ed20ddf78c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">señal</AUni> -<AUni ws="qvm-x-acl">señal</AUni> -<AUni ws="qvm-x-akh">señal</AUni> -<AUni ws="qvm-x-akl">señal</AUni> -<AUni ws="qvm-x-ame">señal</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+señal</AUni> -<AUni ws="qvm-x-acl">+señal</AUni> -<AUni ws="qvm-x-akh">+señal</AUni> -<AUni ws="qvm-x-akl">+señal</AUni> -<AUni ws="qvm-x-ame">+señal</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.500" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bd83b54d-ef27-4e52-b011-323093f43e87" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+señal</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7eb9e4a2-eecb-4bcd-8fe1-e2e0bc2e8ec7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d2f2c5f1-c7a8-4acb-8960-28e7dd625868" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +señal 
\entryTyp root 
\gENG signal 
\gSPN señal 
\e +señal 
\c N0 
\mp +FinalC 
\ach señal 
\akh señal 
\acl señal 
\akl señal 
\ame señal</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ade5f0bc-6fde-40f1-add1-e3300ab8ba07" ownerguid="f2543afb-e4d0-44ec-883f-8744db660677"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wet.spot</AUni> -<AUni ws="es">oconal</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="97cfd793-7aae-41df-ab67-df8ed8c1eb7b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="ade677f5-ae22-4fc6-85cc-e27043dc900f" ownerguid="4ed53cad-3d5e-4fd9-b0bd-ae7a4cf3ec8b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Wachuy papa maypis micucuylapagmi caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiAnalysis" guid="ade9b029-59be-454d-a8ee-389eb1be8202" ownerguid="50ef9789-3afe-4345-a294-4169710a9704"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="1f438bcf-4f47-4f80-9b15-5bb565bcca62" t="o" /> -<objsur guid="daef0593-bc20-4965-816c-bc6bd17b7e19" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="adf046be-1f4d-4ebe-b51f-c89dba72da1c" ownerguid="fa9b59c0-3c29-4678-afc7-a013692f307d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="adf6ad2b-7af9-4bd8-a7b4-f864b9dad86d" ownerguid="444407f2-0c75-4bb9-a84c-cbd52d0fa9c9"> -<Abbreviation> -<AUni ws="en">2.6.4.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to initiation rites--a ceremony when a child becomes an adult.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Initiation</AUni> -</Name> -<OcmCodes> -<Uni>881 Puberty and Initiation</Uni> -</OcmCodes> -<Questions> -<objsur guid="43306c03-81cc-4e31-bf7b-36ff591d0165" t="o" /> -<objsur guid="7a9647d4-809c-47c8-a691-e4256894252a" t="o" /> -<objsur guid="f96f24fe-71e2-483c-9cdd-5a594562393e" t="o" /> -<objsur guid="559afa18-cfda-4af5-ae86-4c7da92b02b6" t="o" /> -<objsur guid="d60b3c3d-6e63-4258-9fe8-05b0f03d8a99" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="adf73237-74cd-407f-b35f-0369fd1269f7" ownerguid="c6848b51-de16-4ee7-ac57-ecbfae85e37f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="adfc2bcd-6b8e-486c-b105-29b286b61cc0" ownerguid="24398eec-edd1-449a-ad36-d609be24a79e"> -<Abbreviation> -<AUni ws="en">7.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to getting something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Get</AUni> -</Name> -<Questions> -<objsur guid="e4f7e4a9-d74f-4cc4-bfea-71b0a868fb46" t="o" /> -<objsur guid="47670069-ae7f-45ae-a527-a82e9afb56f0" t="o" /> -<objsur guid="9bd99cc6-348f-4c41-b7cb-e970ad96f455" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="da988f73-fc9d-4a23-b70d-22299a7c6097" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="adfd807a-e4b8-4e1e-bc5e-698ea83802e3" ownerguid="d7da5318-dccf-477f-967d-1e3f6a421860"> -<ExampleWords> -<AUni ws="en">cluck, crow, cock-a-doodle-doo, cheep</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What noises do chickens make?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="adfd810e-97b0-477d-9966-dca46192500c" ownerguid="97393c87-07e2-4633-88f9-c8bf4d9b935c"> -<ExampleWords> -<AUni ws="en">hate, abhor, have an abhorrence, abominate, deplore, despise, detest, loathe, have a loathing for, look down on, odium, feel unfriendly toward</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling hateful?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="adfd8e34-9e60-45d9-aa62-36b6622d92e6" ownerguid="1886ffc9-0a18-41ea-b2f6-c17c297f1681"> -<ExampleWords> -<AUni ws="en">geology</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the study of the ground?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ae015229-0907-4e8e-8408-309706403927"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">camilla</AUni> -<AUni ws="qvm-x-acl">camilla</AUni> -<AUni ws="qvm-x-akh">camilla</AUni> -<AUni ws="qvm-x-akl">camilla</AUni> -<AUni ws="qvm-x-ame">camilla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+camilla</AUni> -<AUni ws="qvm-x-acl">+camilla</AUni> -<AUni ws="qvm-x-akh">+camilla</AUni> -<AUni ws="qvm-x-akl">+camilla</AUni> -<AUni ws="qvm-x-ame">+camilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.31" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2dc14a40-bb9f-4d43-9d0c-aa3e236131eb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+camilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="90414618-e08d-4cd5-8e1c-adcf91fcd392" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0c7a72f5-7462-4cbc-b45a-b9abcb295fda" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +camilla 
\entryTyp root 
\gENG stretcher 
\gSPN camilla 
\e +camilla 
\c N0 
\ach camilla 
\akh camilla 
\acl camilla 
\akl camilla 
\ame camilla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ae0190e6-ac98-44c2-b5ef-f8990394129f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cumpinchi; cumpinchi</AUni> -<AUni ws="qvm-x-acl">cumpinchi; cumpinchi; cumpinche</AUni> -<AUni ws="qvm-x-akh">cumpinchi; cumpinchi</AUni> -<AUni ws="qvm-x-akl">cumpinchi; cumpinchi; cumpinche</AUni> -<AUni ws="qvm-x-ame">cumpinchi; cumpinchi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+compinchi</AUni> -<AUni ws="qvm-x-acl">+compinchi</AUni> -<AUni ws="qvm-x-akh">+compinchi</AUni> -<AUni ws="qvm-x-akl">+compinchi</AUni> -<AUni ws="qvm-x-ame">+compinchi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.160" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8a701efb-4d5c-42b8-ba29-f63b861f09cb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+compinchi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ad94680a-00c9-4c0f-97af-803ee6828dde" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0e417e18-de43-4a47-8d06-3b7b3cf99ec9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +compinchi 
\entryTyp root 
\gENG fellow.bad.doer 
\gSPN 
\e +compinchi 
\c N0 
\mp +FinalI 
\ach cumpinchi / _# 
\ach cumpinchi / ~_# 
\akh cumpinchi / _# 
\akh cumpinchi / ~_# 
\acl cumpinchi / _# 
\acl cumpinchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cumpinche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cumpinchi / _# 
\akl cumpinchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cumpinche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cumpinchi / _# 
\ame cumpinchi / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="ae0291c2-8db1-4c43-978a-aff9a7abe414" ownerguid="a7ecefe2-bb1a-45db-ba70-38a81182c855"> -<Form> -<AUni ws="qvm-x-ach">lëva</AUni> -<AUni ws="qvm-x-acl">lëva</AUni> -<AUni ws="qvm-x-akh">lëva</AUni> -<AUni ws="qvm-x-akl">lëva</AUni> -<AUni ws="qvm-x-ame">lëva</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="ae04020a-3bb2-4672-ad75-71ce72d461ea" ownerguid="f950b7cc-fb85-4dbb-b8ca-934d38cae7fc"> -<Abbreviation> -<AUni ws="en">9.2.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain to list all sentence level conjunctions--conjunctions that join two sentences.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Sentence conjunctions</AUni> -</Name> -<Questions> -<objsur guid="245f1813-7bcc-476d-814e-f3f58e7f3f9b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="ae0b1748-91f6-415e-837f-2c10928e43d3" ownerguid="94ff584a-197a-4ac7-b3ba-cc8538172c6a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="ae0bf2cb-cc4e-4c2d-ae6c-911a6f6f5239" ownerguid="084c32cc-0a83-45c5-8179-78387c6ca24e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="ae0e8b72-9c32-4f10-8b32-90c75893cb33"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">goñuñu</AUni> -<AUni ws="qvm-x-acl">goñuñu; goñuño</AUni> -<AUni ws="qvm-x-akh">qoñuñu</AUni> -<AUni ws="qvm-x-akl">qoñuñu; qoñuño</AUni> -<AUni ws="qvm-x-ame">quñuñu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*quñuñu</AUni> -<AUni ws="qvm-x-acl">*quñuñu</AUni> -<AUni ws="qvm-x-akh">*quñuñu</AUni> -<AUni ws="qvm-x-akl">*quñuñu</AUni> -<AUni ws="qvm-x-ame">*quñuñu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.861" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="516d3b06-0af2-4c9b-9e64-bb843dfa4a50" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*quñuñu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4986d37e-9bc1-422a-af3e-b773d89a709e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="eff74619-b3e3-46b4-9afc-06533cc47ddf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *quñuñu 
\entryTyp root 
\gENG 
\gSPN 
\e *quñuñu 
\c V1 
\ach goñuñu 
\akh qoñuñu 
\acl goñuñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl goñuño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qoñuñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qoñuño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame quñuñu 
\i Juc runa chayatsergan goñuñuycagta sebäda rurashgan ishcay chunca tantata.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="ae1799fb-8ba2-4ef2-a856-defe530700e7" ownerguid="ad67443c-99ff-474d-9bcb-ddf3d7d8a639"> -<Form> -<AUni ws="qvm-x-ach">torta</AUni> -<AUni ws="qvm-x-acl">torta</AUni> -<AUni ws="qvm-x-akh">torta</AUni> -<AUni ws="qvm-x-akl">torta</AUni> -<AUni ws="qvm-x-ame">torta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ae17a9fd-0943-4206-b3ff-6bca561e13ad" ownerguid="2e97b83d-1152-473f-9cbe-347f0655041a"> -<ExampleWords> -<AUni ws="en">aural</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe something to do with the ears?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ae19b24e-c503-4897-938a-1529a6600d39"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lipta</AUni> -<AUni ws="qvm-x-acl">lipta</AUni> -<AUni ws="qvm-x-akh">lipta</AUni> -<AUni ws="qvm-x-akl">lipta</AUni> -<AUni ws="qvm-x-ame">lipta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llipta.v</AUni> -<AUni ws="qvm-x-acl">*llipta.v</AUni> -<AUni ws="qvm-x-akh">*llipta.v</AUni> -<AUni ws="qvm-x-akl">*llipta.v</AUni> -<AUni ws="qvm-x-ame">*llipta.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.205" /> -<DateModified val="2022-10-10 21:18:47.217" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9770bc11-92bd-48e0-a5b8-d23197546676" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llipta.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c54b1279-d408-43cb-a4a8-190ca3bca509" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="80f2e35f-35df-42d2-b5c1-7970b75b9e06" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llipta.v 
\entryTyp root 
\gENG 
\gSPN 
\e *llipta.v 
\c V1 
\ach lipta 
\akh lipta 
\acl lipta 
\akl lipta 
\ame lipta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ae1a3325-4d14-4ca5-8e66-00e6007d5a2a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">impuestu; impuesto</AUni> -<AUni ws="qvm-x-acl">impuestu; impuestu; impuesto</AUni> -<AUni ws="qvm-x-akh">impuestu; impuesto</AUni> -<AUni ws="qvm-x-akl">impuestu; impuestu; impuesto</AUni> -<AUni ws="qvm-x-ame">impuestu; impuesto</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+impuesto</AUni> -<AUni ws="qvm-x-acl">+impuesto</AUni> -<AUni ws="qvm-x-akh">+impuesto</AUni> -<AUni ws="qvm-x-akl">+impuesto</AUni> -<AUni ws="qvm-x-ame">+impuesto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.812" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cb139c80-e858-4a71-9fa5-1abe6f355412" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+impuesto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a7573971-b029-49a6-aaa1-6f7c041fa7f1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c21a8690-c448-4bd1-b6e5-bc5ed0d3cb22" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +impuesto 
\entryTyp root 
\gENG 
\gSPN 
\e +impuesto 
\c N0 
\ach impuestu / ~_# 
\ach impuesto / _# 
\akh impuestu / ~_# 
\akh impuesto / _# 
\acl impuestu / ~_# 
\acl impuestu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl impuesto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl impuestu / ~_# 
\akl impuestu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl impuesto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame impuestu / ~_# 
\ame impuesto / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ae1e14cb-df3b-4620-a40e-dc62e4d921a1" ownerguid="785e7f1f-21ed-46b6-8599-c6ced4fd26d8"> -<ExampleWords> -<AUni ws="en">promote, upgrade, elevate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to giving someone a higher position?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="ae1f45fb-8247-4b1b-a3ae-fdb1b73c3f1a" ownerguid="d52a0cc9-7aa4-4a2a-a8a0-406da6d392d4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">gargu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">gargu; gargo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qarqu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qarqu; qarqo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qarqu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="73ffd175-ad05-4d66-af47-2c487b1126eb" t="r" /> -</Morph> -<Msa> -<objsur guid="6da469f9-1f0c-4335-acc0-6c49a7bb5c21" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="ae2144b6-7111-42f2-9eab-8e854af561ee" ownerguid="d7b74d48-e849-4473-ac00-a9d79616cab4"> -<Form> -<AUni ws="qvm-x-ach">shacsha</AUni> -<AUni ws="qvm-x-acl">shacsha</AUni> -<AUni ws="qvm-x-akh">shaksha</AUni> -<AUni ws="qvm-x-akl">shaksha</AUni> -<AUni ws="qvm-x-ame">shaksha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ae246816-74e4-4e10-bde7-7555321dafeb" ownerguid="fd33670e-ef16-4566-a62e-aa077e58407b"> -<ExampleWords> -<AUni ws="en">bang, thud, crack, crash, bump, thump, boom, clack, clap, clash, clunk, jangle, knock, peal, pound, rap, tap, scrunch, slam, slap, smack</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to the sound of one thing hitting another?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="ae272d1c-4ba6-4d70-90a5-5827e9455458" ownerguid="4ed53cad-3d5e-4fd9-b0bd-ae7a4cf3ec8b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 100.2 Wachuy wachuy cantacunata cantashpantsi naupanman cushishga yaycushun.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="ae2939f6-c8db-4a81-95b7-8d99f9564796" ownerguid="9ec62ffe-69be-4b9b-944c-29a0f4f133db"> -<ExampleWords> -<AUni ws="en">accident, mishap</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to an accident?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ae2a0601-f811-42f5-96f5-75cc9dc27100" ownerguid="7a656e80-04f9-4fc6-8b2c-f32144812ecb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="ae2b077a-eee4-474d-89bf-5da1d1665538" ownerguid="fd850542-a957-4b6d-9726-e2600271f2ba"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="ae2f0ff8-d3d7-409e-a19b-84d4bd88c1ed"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yacha</AUni> -<AUni ws="qvm-x-acl">yacha</AUni> -<AUni ws="qvm-x-akh">yacha</AUni> -<AUni ws="qvm-x-akl">yacha</AUni> -<AUni ws="qvm-x-ame">yacha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yatra.v1</AUni> -<AUni ws="qvm-x-acl">*yatra.v1</AUni> -<AUni ws="qvm-x-akh">*yatra.v1</AUni> -<AUni ws="qvm-x-akl">*yatra.v1</AUni> -<AUni ws="qvm-x-ame">*yatra.v1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.770" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="237446cf-ba78-4bcc-8616-56a88aa39555" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yatra.v1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b1d16f9f-b075-4cb8-b056-d1ad90dcd870" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a0cdd1d0-9c1b-4464-bdab-8f5e7afbd4aa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yatra.v1 
\entryTyp root 
\gENG know 
\gSPN saber 
\e *yatra.v1 
\c V1 
\ach yacha 
\akh yacha 
\acl yacha 
\akl yacha 
\ame yacha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ae306250-7535-494f-b49e-4949dd9a9c16" ownerguid="e5f9c9cf-0b0c-47aa-b7df-8c37f211cd00"> -<ExampleWords> -<AUni ws="en">divide (up), divide into pieces, division, split (up), halve, quarter (v), apportion, take apart</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used of dividing something into parts?</AUni> -</Question> -</rt> -<rt class="StTxtPara" guid="ae306a4b-bfda-4a91-a1a9-018c97a61967" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">rikakutsin</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="c9f634cd-c4e4-4e36-9972-dd43a1180665" t="o" /> -</Segments> -</rt> -<rt class="LexEntry" guid="ae328926-69c4-4b51-a752-ef9e6eff92eb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">versu; verso</AUni> -<AUni ws="qvm-x-acl">versu; versu; verso</AUni> -<AUni ws="qvm-x-akh">versu; verso</AUni> -<AUni ws="qvm-x-akl">versu; versu; verso</AUni> -<AUni ws="qvm-x-ame">versu; verso</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+verso</AUni> -<AUni ws="qvm-x-acl">+verso</AUni> -<AUni ws="qvm-x-akh">+verso</AUni> -<AUni ws="qvm-x-akl">+verso</AUni> -<AUni ws="qvm-x-ame">+verso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.373" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1adfb93d-04e3-4edf-aaf2-bc702e50cb21" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+verso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7eb8e0ac-c3e5-41bf-83f5-588970ee8632" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a1e01849-2559-43d8-80f1-641be2a1f6cc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +verso 
\entryTyp root 
\gENG 
\gSPN 
\e +verso 
\c N0 
\ach versu / ~_# 
\ach verso / _# 
\akh versu / ~_# 
\akh verso / _# 
\acl versu / ~_# 
\acl versu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl verso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl versu / ~_# 
\akl versu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl verso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame versu / ~_# 
\ame verso / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ae3527c4-81fe-449c-93b2-9056346e5cb6" ownerguid="98f9ceff-e8a2-4e24-abc4-561b80bb5889"> -<ExampleWords> -<AUni ws="en">preservation, embalming, mummification</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the process of preserving something?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="ae36c7bb-1579-4414-868b-17cfa6d99f7c" ownerguid="82d7a7cb-e372-4c4e-aa11-cb2cdbe24bfe"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="ae372657-899c-43ac-9e6a-6fbf7c2eac1f" ownerguid="d5bda083-681b-4048-80f7-d2347cf1e050"> -<Form> -<AUni ws="qvm-x-ach">fuga</AUni> -<AUni ws="qvm-x-acl">fuga</AUni> -<AUni ws="qvm-x-akh">fuga</AUni> -<AUni ws="qvm-x-akl">fuga</AUni> -<AUni ws="qvm-x-ame">fuga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ae38add3-35f2-4998-8ae2-319be84dca9b" ownerguid="3378188d-6eed-4c37-8962-7e6c5f2b95bb"> -<Form> -<AUni ws="qvm-x-ach">ladrón; ladron</AUni> -<AUni ws="qvm-x-acl">ladrón; ladron</AUni> -<AUni ws="qvm-x-akh">ladrón; ladron</AUni> -<AUni ws="qvm-x-akl">ladrón; ladron</AUni> -<AUni ws="qvm-x-ame">ladrón; ladron</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="ae3abb6f-e710-43d8-b6bd-3da10d5dcc33" ownerguid="d946a8c7-fb2b-4d8f-a5ab-a62dd1b161f8" /> -<rt class="CmDomainQ" guid="ae3e1013-1337-4758-9ee4-e235c07f9b25" ownerguid="962cb994-0183-4ac5-94b2-82a33f1d64e4"> -<ExampleWords> -<AUni ws="en">drop of oil, oil slick, blob, glob, soap (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to some oil on something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ae46217a-5867-453c-b435-5c1a3338ef96" ownerguid="f51bcafa-e624-4555-b8f1-b5726d74734d"> -<ExampleWords> -<AUni ws="en">law, act of law, appointment, bill, command, commandment, constraint, decree, dogma, edict, judgment, legislation, ordinance, prescription, principle, regulation, requirement, rule, ruling, religious law, rubric, standard, statute</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a law?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ae4b7642-8d6c-4ea1-ba9d-6726f18d12c4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mereci</AUni> -<AUni ws="qvm-x-acl">mereci; merece</AUni> -<AUni ws="qvm-x-akh">mereci</AUni> -<AUni ws="qvm-x-akl">mereci; merece</AUni> -<AUni ws="qvm-x-ame">mereci</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+merecer</AUni> -<AUni ws="qvm-x-acl">+merecer</AUni> -<AUni ws="qvm-x-akh">+merecer</AUni> -<AUni ws="qvm-x-akl">+merecer</AUni> -<AUni ws="qvm-x-ame">+merecer</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.416" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b94e990f-8fc5-4fbf-b15b-2f6cc15d5cb2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+merecer</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f723f0a1-2f76-48ae-bb5e-8174c4bf8fa0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="28f61c31-a3e7-41ae-ad26-e69433ad830b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +merecer 
\entryTyp root 
\gENG deserve 
\gSPN merecer 
\e +merecer 
\c V1 
\mp +FinalI 
\ach mereci 
\akh mereci 
\acl mereci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl merece +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mereci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl merece +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mereci 
\i MRK 1.7 Paypa lanqi watunta paskapänaläpaqpis manami merecïtsu.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="ae501d85-aa3b-4a31-aeae-2856898be841" ownerguid="f2027748-f208-4392-a6e6-e34020699ecd"> -<Form> -<AUni ws="qvm-x-ach">chulcu</AUni> -<AUni ws="qvm-x-acl">chulcu; chulcu; chulco</AUni> -<AUni ws="qvm-x-akh">chulku</AUni> -<AUni ws="qvm-x-akl">chulku; chulku; chulko</AUni> -<AUni ws="qvm-x-ame">chulku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StTxtPara" guid="ae55d49a-f4f4-4a32-a46b-9764902f0e41" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">rikatsipäkamashqanki. </Run> -<Run ws="en">\tr < V2 *rika > CAUS PLALL 1O PRF 2</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="118e3173-7a08-400e-9d81-dde5ef0ec3d2" t="o" /> -<objsur guid="0690a3b8-31fb-4fcb-b7a3-231c850b340c" t="o" /> -</Segments> -</rt> -<rt class="Segment" guid="ae55e996-fb0d-4140-ab0d-2b43376db4b8" ownerguid="39565473-a6e6-4353-b6cd-75e2ddd6eca4"> -<Analyses> -<objsur guid="74778ce4-f823-4579-96fa-7ed43eedd31e" t="r" /> -<objsur guid="7dd1a9aa-5fd7-42ef-9d2b-0cd0070d47a2" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="CmDomainQ" guid="ae56d064-03e0-4834-9c6a-0107173b118e" ownerguid="76a06e45-99f7-446f-a2e8-e23edf6064bd"> -<ExampleWords> -<AUni ws="en">decay (n), corruption, decomposition, putrefaction</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the process of decay?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="ae57ba3d-6339-4336-9e35-51df03ab7399" ownerguid="ac650401-00f0-4159-ae7f-74aa96840e4e"> -<Form> -<AUni ws="qvm-x-ach">∅</AUni> -<AUni ws="qvm-x-acl">∅</AUni> -<AUni ws="qvm-x-akh">∅</AUni> -<AUni ws="qvm-x-akl">∅</AUni> -<AUni ws="qvm-x-ame">∅</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="c70a3593-3901-43b4-b84f-0da2c2ccccda" t="r" /> -</PhoneEnv> -</rt> -<rt class="CmDomainQ" guid="ae5b0916-e1da-4a60-90e5-a482da72862c" ownerguid="80563285-4de7-4040-8080-a5b22208e7d5"> -<ExampleWords> -<AUni ws="en">counter-attack, hit back, retaliate, strike back</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to attacking someone who has attacked you?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ae5d9919-6593-400b-bba8-a65b240b3692" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<ExampleWords> -<AUni ws="en">farmer, palm tree climber</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the occupations in agriculture?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ae5da631-5af2-493b-bbaa-1c87df82f39f" ownerguid="797a10b9-ef8f-411e-8043-7b4e46426caa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">peas</AUni> -<AUni ws="es">arveja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="297d94b9-d163-4a6f-9172-02f7569458a0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="PhEnvironment" guid="ae5f3ffd-a9d0-4eaa-9040-50a5a57e64bc" ownerguid="be765e3e-ea5e-11de-9d42-0013722f8dec"> -<Name> -<AUni ws="en">before consonant + end of word</AUni> -</Name> -<StringRepresentation> -<Str> -<Run underline="none" ws="en">/_[C]#</Run> -</Str> -</StringRepresentation> -</rt> -<rt class="MoStemAllomorph" guid="ae5ffae5-e06d-4f27-8f9c-df2589fe2e3a" ownerguid="d4a78550-b02b-4479-bcf3-ad40880667db"> -<Form> -<AUni ws="qvm-x-ach">niti</AUni> -<AUni ws="qvm-x-acl">niti; nite</AUni> -<AUni ws="qvm-x-akh">niti</AUni> -<AUni ws="qvm-x-akl">niti; nite</AUni> -<AUni ws="qvm-x-ame">niti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ae643126-abd0-41fd-9928-e48814e6b27f" ownerguid="93489181-ad8c-4a18-8dbc-fd7a9c871126"> -<ExampleWords> -<AUni ws="en">grouch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to someone who is bad-tempered?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ae66b757-5d95-4698-948f-7bfa30c5e462"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsagla</AUni> -<AUni ws="qvm-x-acl">tsagla</AUni> -<AUni ws="qvm-x-akh">tsaqla</AUni> -<AUni ws="qvm-x-akl">tsaqla</AUni> -<AUni ws="qvm-x-ame">tsaqla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chaqlla.v</AUni> -<AUni ws="qvm-x-acl">*chaqlla.v</AUni> -<AUni ws="qvm-x-akh">*chaqlla.v</AUni> -<AUni ws="qvm-x-akl">*chaqlla.v</AUni> -<AUni ws="qvm-x-ame">*chaqlla.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.284" /> -<DateModified val="2022-10-10 21:19:47.694" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="053518ba-8a9a-40ea-a35e-4730bf422951" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chaqlla.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6786f91a-d56f-4df6-8749-5c908b91e272" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="673e3b68-eb62-4c13-bac8-0525527e3348" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chaqlla.v 
\entryTyp root 
\gENG weave.betw.rafters 
\gSPN 
\e *chaqlla.v 
\c V1 
\ach tsagla 
\akh tsaqla 
\acl tsagla 
\akl tsaqla 
\ame tsaqla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ae6716eb-b0e5-4e96-a85e-f706393fe02e" ownerguid="8563e871-9fbc-437e-b2be-f9989199f760"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spring</AUni> -<AUni ws="es">manantial</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="36f468c6-e901-44de-8f42-48e94531e09a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ae68497d-80be-4de6-8c6c-64dceb31409b" ownerguid="2e2e4992-66b2-4e84-8f9b-84ee7d598ccd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ae690164-adf1-47cf-9237-5d912557efde" ownerguid="a3cb8a0a-99b7-40b3-9297-2a7eb51f0b7d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dried.potatoes</AUni> -<AUni ws="es">papas.secas</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="65d15ae8-135a-4faa-bb34-ec0336d84fcc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="ae6a018a-b931-45ea-8151-70a2bf83d1d2" ownerguid="6c4b744b-9c17-463a-961c-4210d7825dee"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hold</AUni> -<AUni ws="es">agarrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2b8bc574-dd91-4475-a7ae-fc75e3ba292c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="ae6b368e-4e46-4ee3-8e8a-a42b97f6e579" ownerguid="29b970d1-2e6f-453f-bacc-b6f12ae5bed7"> -<Form> -<AUni ws="qvm-x-ach">apari</AUni> -<AUni ws="qvm-x-acl">apari; apare</AUni> -<AUni ws="qvm-x-akh">apari</AUni> -<AUni ws="qvm-x-akl">apari; apare</AUni> -<AUni ws="qvm-x-ame">apari</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="ae6ba304-209e-4fcb-b0dd-1d81adeff725" ownerguid="161dd1e0-cb7d-404e-9a68-4adcedb7ec23"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">go.on</AUni> -<AUni ws="es">mas.que</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5b98b357-078e-4492-9c6f-d5c47c209005" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ae6bf748-b5ea-410f-bbc2-1b1a8259d22e" ownerguid="c7326724-aed9-4849-99c7-55af02f39f80"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="ae6f73ab-432d-42e8-aa1a-c848652a13f0" ownerguid="0db5817e-05bf-4703-a6b9-e239ac44f857"> -<Abbreviation> -<AUni ws="en">2.6.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a woman or any female person.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>9C Females</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Woman</AUni> -</Name> -<Questions> -<objsur guid="b122730e-b4b7-46fa-b1c5-a29170da6df9" t="o" /> -<objsur guid="8fa150a5-1bb9-4963-80c9-f27d6e830553" t="o" /> -<objsur guid="62d998e7-dba7-4919-ad14-c13d097fba4b" t="o" /> -<objsur guid="bb79ec73-cbdf-426c-8612-5c4bdd248333" t="o" /> -<objsur guid="c5c19c30-d8a5-407d-af64-aca0b2f36d01" t="o" /> -<objsur guid="e71260c6-42fa-4f36-9d09-763963779551" t="o" /> -<objsur guid="79bffa90-e7a0-41bc-ae3f-01b55d9ffdf6" t="o" /> -<objsur guid="1b08fea6-aa83-4600-85f4-661b55c0d6f0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="ae738b2b-e0a8-4035-a6d5-a0e38a0517c7" ownerguid="f20d736d-a3a6-4b0a-923c-ffaf9d1cd199"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63e241cb-3471-43ad-8545-4d005f632d4d" t="r" /> -</Morph> -<Msa> -<objsur guid="d3b5839a-9f79-4b2d-96b3-8cee7717866b" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="ae75822b-1431-4727-81b9-66fafaa79d8b" ownerguid="199368f4-203a-40a6-af16-a41a277c09f5"> -<Form> -<AUni ws="qvm-x-ach">promiti</AUni> -<AUni ws="qvm-x-acl">promiti; promite</AUni> -<AUni ws="qvm-x-akh">promiti</AUni> -<AUni ws="qvm-x-akl">promiti; promite</AUni> -<AUni ws="qvm-x-ame">promiti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ae75891d-6f25-4535-8d93-6bf758c6360f" ownerguid="00364f0c-9a3a-4910-a82e-1ffbc4d4137f"> -<ExampleWords> -<AUni ws="en">frenzy, fever pitch, hysterical, high spirits</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a group of people who are excited?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ae766d83-9e66-4c86-b0ce-93ed019fa2cf" ownerguid="c79d49f1-74ec-4dba-a5aa-5e861af63d05"> -<ExampleWords> -<AUni ws="en">exonerate, give someone the benefit of the doubt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to saying that someone is not to blame for something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ae769269-33d6-40c1-8a3f-c0af5de428d2" ownerguid="df2ee830-0668-43d7-8a32-e2fd3e7b31d8"> -<ExampleWords> -<AUni ws="en">(no words or affixes in English)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(19) What words are used to indicate the present tense?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ae77feed-32fe-4a68-b4b0-b46ab9454dd6" ownerguid="a8b8063f-903a-4906-abbb-9e4ebad7408c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="ae780708-c312-493a-b30d-21c76be756a7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fusburu</AUni> -<AUni ws="qvm-x-acl">fusburu; fusburu; fusburo</AUni> -<AUni ws="qvm-x-akh">fusburu</AUni> -<AUni ws="qvm-x-akl">fusburu; fusburu; fusburo</AUni> -<AUni ws="qvm-x-ame">fusburu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fósforo</AUni> -<AUni ws="qvm-x-acl">+fósforo</AUni> -<AUni ws="qvm-x-akh">+fósforo</AUni> -<AUni ws="qvm-x-akl">+fósforo</AUni> -<AUni ws="qvm-x-ame">+fósforo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.578" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ea093fdf-0a74-4a15-812a-67a9863f71af" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fósforo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7323517c-8583-4620-9f46-01adc7cd96e4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a4f11590-a946-4c2e-8018-e8decdc52c4f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fósforo 
\entryTyp root 
\gENG match 
\gSPN fósforo 
\e +fósforo 
\c N0 
\mp +assimilated 
\ach fusburu 
\akh fusburu 
\acl fusburu / _# 
\acl fusburu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl fusburo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl fusburu / _# 
\akl fusburu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl fusburo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame fusburu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ae782d96-cc83-495f-8500-2d483d9a060f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ha:bitu</AUni> -<AUni ws="qvm-x-acl">ha:bitu; ha:bitu; ha:bito</AUni> -<AUni ws="qvm-x-akh">ha:bitu</AUni> -<AUni ws="qvm-x-akl">ha:bitu; ha:bitu; ha:bito</AUni> -<AUni ws="qvm-x-ame">ha:bitu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+habito</AUni> -<AUni ws="qvm-x-acl">+habito</AUni> -<AUni ws="qvm-x-akh">+habito</AUni> -<AUni ws="qvm-x-akl">+habito</AUni> -<AUni ws="qvm-x-ame">+habito</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.639" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a6e8d249-e306-4ce2-a075-da47039facf0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+habito</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d0279dfd-667e-41e3-b6ec-9b96e9770ba9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3a451b36-8ac3-438f-b22e-f08b95a559b8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +habito 
\entryTyp root 
\gENG habit 
\gSPN hábito 
\e +habito 
\c N0 
\ach ha:bitu 
\akh ha:bitu 
\acl ha:bitu / _# 
\acl ha:bitu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ha:bito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ha:bitu / _# 
\akl ha:bitu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ha:bito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ha:bitu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ae7d2dd7-7c7d-4f25-90f6-ae153c694063"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa:cu; pa:ca</AUni> -<AUni ws="qvm-x-acl">pa:cu; pa:co; pa:ca</AUni> -<AUni ws="qvm-x-akh">pa:ku; pa:ka</AUni> -<AUni ws="qvm-x-akl">pa:ku; pa:ko; pa:ka</AUni> -<AUni ws="qvm-x-ame">pa:ku; pa:ka</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.548" /> -<DateModified val="2022-10-21 16:40:1.253" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4466969e-c86b-4570-931c-b36377271a06" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">PLALLM</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="68618445-e00f-461f-b5f0-47431ba947f9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9a30755f-46f4-4919-a6a8-11c23c6aff14" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx PLALLM 
\entryTyp suffix 
\gENG PLALLM 
\gSPN PLTODM 
\e PLALLM 
\c V1/V1 V2/V2 
\o 060 
\mp PMlowered 
\ach pa:cu 
\ach pa:ca morphlowered 
\akh pa:ku 
\akh pa:ka morphlowered 
\acl pa:cu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pa:co +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pa:ca morphlowered 
\akl pa:ku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pa:ko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pa:ka morphlowered 
\ame pa:ku 
\ame pa:ka morphlowered 
\mcc PLALLM / [TakePLALLM] ... _</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="ae811a67-f7f2-4697-be8e-b5574bbd196e" ownerguid="d039c5f7-4519-40d7-ae28-2dbbd3822be0"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="ae83adb1-88bc-429d-983b-7808e60fd1b3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lectu:ra</AUni> -<AUni ws="qvm-x-acl">lectu:ra</AUni> -<AUni ws="qvm-x-akh">lectu:ra</AUni> -<AUni ws="qvm-x-akl">lectu:ra</AUni> -<AUni ws="qvm-x-ame">lectu:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lectura</AUni> -<AUni ws="qvm-x-acl">+lectura</AUni> -<AUni ws="qvm-x-akh">+lectura</AUni> -<AUni ws="qvm-x-akl">+lectura</AUni> -<AUni ws="qvm-x-ame">+lectura</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.630" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="08966f36-c9b0-48cd-8b10-9651772a82fb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lectura</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7ec18d6c-8ba9-462b-8839-fa825ced120f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="92eaaab9-8d23-4e29-967f-d9caaa9c6fbe" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lectura 
\entryTyp root 
\gENG 
\gSPN 
\e +lectura 
\c N0 
\ach lectu:ra 
\akh lectu:ra 
\acl lectu:ra 
\akl lectu:ra 
\ame lectu:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ae83ce8c-bbf8-441c-ae00-01dea8893636" ownerguid="3b673a05-fd79-4b49-a972-6bdacd6a03b8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">thorn</AUni> -<AUni ws="es">espina</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="74775b7e-fa84-457c-8efb-d8ea9f364b54" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="ae8486f0-e553-4077-af99-428a2bff0920" ownerguid="ecf532a7-038b-4f31-8c1c-f36f85314222"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hit</AUni> -<AUni ws="es">pegar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a302dc69-ec72-4e07-9934-73bd9491e140" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="ae8805cc-5c4d-4e23-bd3b-bf5a2039fc75" ownerguid="eacf722f-ee09-45ab-8963-b80cfa67342f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">feel</AUni> -<AUni ws="es">sentir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="37d9836f-4730-4ebf-a5a3-35608eacf17f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ae8a786d-3bcb-42a1-a409-88914ab7631a" ownerguid="4c862416-f7c4-4a3c-82ac-fe81e1efb879"> -<ExampleWords> -<AUni ws="en">brain, spinal column, spinal cord, nerve, nervous, nerve ending, synapse, synaptic, cerebellum, cerebrum, ganglion, hypothalamus, neural, neuron</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What are the parts of the nervous system?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ae93d275-21d5-4640-b610-7f81e1c739c5" ownerguid="962941b2-66bd-437f-aadc-b1921bcae5b4"> -<ExampleWords> -<AUni ws="en">poison ivy, hemlock</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What types of plant poisons are there?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ae94138e-a8a2-4c05-bfa7-7b7dd55f7c16"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">golpi</AUni> -<AUni ws="qvm-x-acl">golpi; golpe</AUni> -<AUni ws="qvm-x-akh">golpi</AUni> -<AUni ws="qvm-x-akl">golpi; golpe</AUni> -<AUni ws="qvm-x-ame">golpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+golpear</AUni> -<AUni ws="qvm-x-acl">+golpear</AUni> -<AUni ws="qvm-x-akh">+golpear</AUni> -<AUni ws="qvm-x-akl">+golpear</AUni> -<AUni ws="qvm-x-ame">+golpear</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.619" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aed42c45-a28f-494a-b7c1-5f6ecce36e0c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+golpear</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1563492a-b374-4450-b019-6b7fc9234334" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9a95d5d4-3070-4c21-af4d-197f7b04ee25" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +golpear 
\entryTyp root 
\gENG to.bruise 
\gSPN golpear 
\e +golpear 
\c V2 
\mp +assimilated 
\ach golpi 
\akh golpi 
\acl golpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl golpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl golpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl golpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame golpi 
\mp +FinalI</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="ae95db7b-9ff3-4a13-959a-747152e3a800" ownerguid="b76173eb-aeae-4006-92e5-2283e56986bc"> -<Form> -<AUni ws="qvm-x-ach">merma; mermä</AUni> -<AUni ws="qvm-x-acl">merma; mermä</AUni> -<AUni ws="qvm-x-akh">merma; mermä</AUni> -<AUni ws="qvm-x-akl">merma; mermä</AUni> -<AUni ws="qvm-x-ame">merma; mermä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ae992b19-b9e4-4e7e-bd16-b715dc0be30c" ownerguid="5a585789-2ef6-42c5-9c5a-34ff716059b7"> -<ExampleWords> -<AUni ws="en">glass, crystal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used to refer to the glass?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ae99c354-533a-4b2f-9e3f-06a7fbb3f3bd" ownerguid="e54cd744-d106-4bcf-bd07-b8783c075c21"> -<ExampleWords> -<AUni ws="en">fad, craze</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something that is fashionable for a short time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ae9e6604-edde-4d95-a18b-3e871e61ab6f" ownerguid="c27b87cf-1211-4df2-96b1-12c416edabbe"> -<ExampleWords> -<AUni ws="en">witty, comic, jocular, droll, smart, dry wit, slapstick, fun, facetious, waggish, comical, salty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe a person's sense of humor?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="aea1569d-f1c7-401a-b46b-90894b615fec" ownerguid="9a7604b4-d42f-44b7-9aef-47847dc93f0b"> -<ExampleWords> -<AUni ws="en">sufferer, casualty, victim</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to someone who suffers?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="aea268ae-4eb3-445a-ba69-96df7a7d249f" ownerguid="d6fad191-1428-450e-98c8-f5523996ed13"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2SA 13.12 Tsaynog niptin Tamar caynog nergan: <<¡Imanaycanquitag, turi! Ama perdicionta ruramaytsu. Israel nacionchöga tsaynog manami rurantsitsu. Tsaynog desonramashpayquega pasaypa jutsatachari ruranquipag.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="aea29c93-89cd-4632-9ca6-d1a608a3099f" ownerguid="f055291f-d636-4432-a812-8a667b8d2115"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">broth</AUni> -<AUni ws="es">caldo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="96fcfbfe-c6a1-440d-86b3-3aff97ee6c84" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="aea6bc32-69f2-498f-bdaa-f8fc992b8cea" ownerguid="309ef96d-4cdb-4c3c-b386-8078d6f83fda"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">saint</AUni> -<AUni ws="es">santo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9b468fc0-6ec7-4305-af13-38a3822dc53a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="aea7518d-e26a-4325-8aef-f08e1da18ad0" ownerguid="e0959576-1ac4-4900-8cec-cbf47580cd59"> -<Form> -<AUni ws="qvm-x-ach">agostu; agosto</AUni> -<AUni ws="qvm-x-acl">agostu; agostu; agosto</AUni> -<AUni ws="qvm-x-akh">agostu; agosto</AUni> -<AUni ws="qvm-x-akl">agostu; agostu; agosto</AUni> -<AUni ws="qvm-x-ame">agostu; agosto</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="aea7ff8e-bd97-4c43-8d88-71018cd1e8dd" ownerguid="b7801f6e-683b-4d5d-9bab-57f6e593db8c"> -<ExampleWords> -<AUni ws="en">list (v), make a list, compile a list, catalog (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making a list?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="aea88426-5f10-4b18-9364-eee04437c4ee"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ña:push</AUni> -<AUni ws="qvm-x-acl">ña:push</AUni> -<AUni ws="qvm-x-akh">ña:push</AUni> -<AUni ws="qvm-x-akl">ña:push</AUni> -<AUni ws="qvm-x-ame">ña:push</AUni> -</Custom> -<AlternateForms> -<objsur guid="f64a30d8-b12b-4017-865b-fef75b4176b6" t="o" /> -<objsur guid="9d7e023d-b2f6-484a-b309-3fb0cea61b47" t="o" /> -<objsur guid="4a7a3cfa-cab6-4a06-941c-e150fb9be6cb" t="o" /> -</AlternateForms> -<CitationForm> -<AUni ws="qvm-x-ach">+ñabus</AUni> -<AUni ws="qvm-x-acl">+ñabus</AUni> -<AUni ws="qvm-x-akh">+ñabus</AUni> -<AUni ws="qvm-x-akl">+ñabus</AUni> -<AUni ws="qvm-x-ame">+ñabus</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.586" /> -<DateModified val="2022-10-15 14:2:34.510" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="55215ef6-63f2-4b29-a518-db04290c4508" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ñabus</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cf9a69b3-ca1b-476e-8968-8bfbb0b68873" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2c35be4b-bb68-40df-8f3b-2303c45df045" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ñabus 
\entryTyp root 
\gENG mustard 
\gSPN mostaza 
\e +ñabus 
\c N0 
\mp +FinalC 
\ach ña:push 
\akh ña:push 
\acl ña:push 
\akl ña:push 
\ame ña:push</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="aead3098-ec34-447f-b626-faee76939dee" ownerguid="7bf05f4e-909f-40ca-b742-9be21eba9fbb"> -<ExampleWords> -<AUni ws="en">can</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) ability, mental: English: 'Melissa can speak Dutch'.</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="aeaec051-998f-4d45-8a97-2caf019da8e5" ownerguid="7f7fc197-5064-43c0-af51-2919fb7355c9"> -<ExampleWords> -<AUni ws="en">related, associated, allied</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that two things are connected because they are similar in some way?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="aeb1401c-7ad6-466e-b6bc-816665d786bb" ownerguid="d039c5f7-4519-40d7-ae28-2dbbd3822be0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="295ad13c-f7e8-452c-a664-794961e9aa0b" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">drag</AUni> -<AUni ws="es">arrastrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ae811a67-f7f2-4697-be8e-b5574bbd196e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="aeb16623-d27e-456f-ae28-a7f368d1b8f9" ownerguid="480ee451-64dd-4bad-bd85-c6811a8eb4cb"> -<Form> -<AUni ws="qvm-x-ach">usunca; usuncä</AUni> -<AUni ws="qvm-x-acl">usunca; usuncä</AUni> -<AUni ws="qvm-x-akh">usunka; usunkä</AUni> -<AUni ws="qvm-x-akl">usunka; usunkä</AUni> -<AUni ws="qvm-x-ame">usunka; usunkä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="aeb20093-26ba-492b-a69d-af18d5ba51eb" ownerguid="0e79435b-f5ff-4061-81ff-49557ba2aed4"> -<Abbreviation> -<AUni ws="en">4.1.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to showing affection.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>34I Kiss, Embrace</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Show affection</AUni> -</Name> -<Questions> -<objsur guid="093c5765-18c0-4a14-a50b-067cebac055d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="aeb53f5e-f8ab-4d4a-9e27-bae9d9185057"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lushpi</AUni> -<AUni ws="qvm-x-acl">lushpi; lushpe</AUni> -<AUni ws="qvm-x-akh">lushpi</AUni> -<AUni ws="qvm-x-akl">lushpi; lushpe</AUni> -<AUni ws="qvm-x-ame">lushpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llushpi</AUni> -<AUni ws="qvm-x-acl">*llushpi</AUni> -<AUni ws="qvm-x-akh">*llushpi</AUni> -<AUni ws="qvm-x-akl">*llushpi</AUni> -<AUni ws="qvm-x-ame">*llushpi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.243" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cd125dcf-b116-46e9-baa8-eafa5b31758a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llushpi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1a9fbf42-e156-4830-9f5e-397151a079ed" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="02014a03-b4b6-40e5-9cf7-1c721f80e1c3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llushpi 
\entryTyp root 
\gENG clean 
\gSPN limpiar 
\e *llushpi 
\c V1 
\mp +FinalI 
\ach lushpi 
\akh lushpi 
\acl lushpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lushpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lushpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lushpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lushpi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="aebb2f11-8120-46f8-9df3-6a264d9c804f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">muchu; muchu:</AUni> -<AUni ws="qvm-x-acl">mucho:; muchu; mucho</AUni> -<AUni ws="qvm-x-akh">muchu; muchu:</AUni> -<AUni ws="qvm-x-akl">mucho:; muchu; mucho</AUni> -<AUni ws="qvm-x-ame">muchu; muchu:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mutru:</AUni> -<AUni ws="qvm-x-acl">*mutru:</AUni> -<AUni ws="qvm-x-akh">*mutru:</AUni> -<AUni ws="qvm-x-akl">*mutru:</AUni> -<AUni ws="qvm-x-ame">*mutru:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.517" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="43524615-1ad3-4e97-9fa5-e8ee3a1582e7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mutru:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c89af841-45bf-4559-96c3-f2055a4a6ef7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bc6e8523-880b-4d6e-bc7d-7e66b98cc4db" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mutru: 
\entryTyp root 
\gENG be.famished 
\gSPN hambrear 
\e *mutru: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach muchu foreshortened 
\ach muchu: 
\akh muchu foreshortened 
\akh muchu: 
\mp +underlong 
\acl mucho: 
\acl muchu foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl mucho foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\mp +underlong 
\akl mucho: 
\akl muchu foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mucho foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame muchu foreshortened 
\ame muchu: 
\mcc *mutru: / ~_ 2IMP</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="aebe3e25-301a-496b-acd5-6f7116bcafba" ownerguid="d69caa77-a8de-4fc5-b76c-34f080dcfc94"> -<Form> -<AUni ws="qvm-x-ach">tuyri</AUni> -<AUni ws="qvm-x-acl">tuyri; tuyre</AUni> -<AUni ws="qvm-x-akh">tuyri</AUni> -<AUni ws="qvm-x-akl">tuyri; tuyre</AUni> -<AUni ws="qvm-x-ame">tuyri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="aec0f6eb-10bb-40a6-a595-735f238f8f36"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ichichag</AUni> -<AUni ws="qvm-x-acl">ichichag</AUni> -<AUni ws="qvm-x-akh">ichichaq</AUni> -<AUni ws="qvm-x-akl">ichichaq</AUni> -<AUni ws="qvm-x-ame">ichichaq</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ichichaq</AUni> -<AUni ws="qvm-x-acl">*ichichaq</AUni> -<AUni ws="qvm-x-akh">*ichichaq</AUni> -<AUni ws="qvm-x-akl">*ichichaq</AUni> -<AUni ws="qvm-x-ame">*ichichaq</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.782" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="24c08bec-13d7-4e24-828f-6343dada879a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ichichaq</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6455cfc4-68d1-4056-a751-c2d99674e773" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0a148902-1fee-4fe1-8de1-9eb1d3b7f68d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ichichaq 
\entryTyp root 
\gENG small 
\gSPN pequeño 
\e *ichichaq 
\c N0 
\mp +FinalC 
\ach ichichag 
\akh ichichaq 
\acl ichichag 
\akl ichichaq 
\ame ichichaq</Run> -</AStr> -</Custom> -</rt> -<rt class="StTxtPara" guid="aec38955-64b7-4fe6-942e-4c2ae08e2fd3" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">aywashqan. </Run> -<Run ws="en">\tr < V1 *aywa > REL1 3P</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="ec55e08b-a450-4109-ab92-2ed19b54e20a" t="o" /> -<objsur guid="f5e4fe34-3b08-421e-88b3-3a789e129747" t="o" /> -</Segments> -</rt> -<rt class="CmDomainQ" guid="aec67a46-8ff8-48e1-b80c-bd9ceb2a32a8" ownerguid="23fb1571-c04e-4850-b499-f170bc45247f"> -<ExampleWords> -<AUni ws="en">wear glasses</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to wearing glasses?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="aec87436-1486-4eba-9202-c81619e2eaec" ownerguid="b09c222a-28a2-4748-bbe2-9e6e35812817"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">reveal</AUni> -<AUni ws="es">revelar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="07f17c0d-5b82-455c-a304-d3b1053aea84" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="aec88692-9587-4e39-903c-dc7607c4e9fd" ownerguid="45e2aadb-03d3-439a-bb60-04de139cd53f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">large</AUni> -<AUni ws="es">largo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d282e7c6-3673-4cc4-859f-59230b38c8ae" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="aec892f4-7a26-443a-b2fb-9f0eade74a94"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wayanay</AUni> -<AUni ws="qvm-x-acl">wayanay</AUni> -<AUni ws="qvm-x-akh">wayanay</AUni> -<AUni ws="qvm-x-akl">wayanay</AUni> -<AUni ws="qvm-x-ame">wayanay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wayanay</AUni> -<AUni ws="qvm-x-acl">*wayanay</AUni> -<AUni ws="qvm-x-akh">*wayanay</AUni> -<AUni ws="qvm-x-akl">*wayanay</AUni> -<AUni ws="qvm-x-ame">*wayanay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.605" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7d0fb43d-fc04-4401-9b01-5272a6a6e198" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wayanay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cae93ed5-32d9-4035-810f-5276400529b8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f1ad1b4d-60a3-42b7-be30-71b5c794ce68" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wayanay 
\entryTyp root 
\gENG 
\gSPN 
\e *wayanay 
\c N0 
\mp +FinalC 
\ach wayanay 
\akh wayanay 
\acl wayanay 
\akl wayanay 
\ame wayanay 
\i PRO 26.2 Ogracashga pichiuchanca y ogracashga wayanay
\f + 26.2 Waquin runacunaga 
\it wagya pishgu
\it* nipäcun.
\f* gueshwanman mana chayashgannogmi jutsaynag runamanga maldicionashganpis mana chayangatsu.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="aec8c246-0ef7-414a-94a6-b9fdd6812a7c" ownerguid="d49f2c9d-1b4a-4370-b107-71f9b9fbdc8e"> -<Abbreviation> -<AUni ws="en">4.1.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.192" /> -<DateModified val="2022-9-23 16:55:8.192" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to social class.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Social class</AUni> -</Name> -<OcmCodes> -<Uni>560 Social Stratification; 561 Age Stratification; 562 Gender Status; Sex Status; 563 Ethnic Stratification; 564 Castes; 565 Classes; 566 Serfdom and Peonage; 567 Slavery</Uni> -</OcmCodes> -<Questions> -<objsur guid="e66729dc-529c-4f62-8cd9-d4a198cdf0cb" t="o" /> -<objsur guid="45884958-cb02-40e9-9000-1ea70cc08a56" t="o" /> -<objsur guid="9a1aee83-034c-44e7-a6d6-fcbe57beb95a" t="o" /> -<objsur guid="e8f1e247-34af-4444-ba4b-5d46a074e4be" t="o" /> -<objsur guid="ed49d819-de27-41bd-8652-6cc1dd701e9c" t="o" /> -<objsur guid="95da253b-9d60-4ba7-a3b6-320cd1ac0e75" t="o" /> -<objsur guid="1e9e05d0-18d1-4546-a27d-03ab936b5e5c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="aecaad50-2be5-4df2-9882-5fdc32055323" ownerguid="3c63967b-a6aa-4150-86ca-17f016d2dffe"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="aecd7a7e-100b-4ab0-9f15-835643b9eead" ownerguid="913347dd-d78a-42eb-8d0a-4c8ecb22f28b"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="aecf2aad-b7a4-444f-9b13-64bc534126d2" ownerguid="83adeb9d-c0be-4073-894d-913014420280"> -<Abbreviation> -<AUni ws="en">8.3.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something bad.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88O Bad, Evil, Harmful, Damaging</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Bad</AUni> -</Name> -<Questions> -<objsur guid="ed52f7ab-7ca5-4a14-a4b3-13141065b41d" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="744d1402-05f5-4491-9c15-a5af03595edb" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="aed23460-6a2b-48c4-90fa-6d1b947fc2da" ownerguid="67d74de1-33f9-4d39-8fa5-5dd27e7cd1d1"> -<ExampleWords> -<AUni ws="en">suspicious, suspect (adj), fishy, dubious, questionable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that makes you suspect someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="aed269ac-1d44-453a-9a7d-39f2b692363b" ownerguid="e482bb5a-5a32-4bc5-a0de-32cbe0aa7908"> -<ExampleWords> -<AUni ws="en">style, register, formal, informal, colloquial, humorously, seriously, pronunciation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to your style of speaking?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="aed42c45-a28f-494a-b7c1-5f6ecce36e0c" ownerguid="ae94138e-a8a2-4c05-bfa7-7b7dd55f7c16"> -<Form> -<AUni ws="qvm-x-ach">golpi</AUni> -<AUni ws="qvm-x-acl">golpi; golpe</AUni> -<AUni ws="qvm-x-akh">golpi</AUni> -<AUni ws="qvm-x-akl">golpi; golpe</AUni> -<AUni ws="qvm-x-ame">golpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="aed4910b-0523-4233-bda7-fd04d2d924fe" ownerguid="19cca110-d755-4e05-835c-d10c609d477b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="3da8aead-9649-4eb7-97ee-8625e11ef3c3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="aed5be9a-225d-4792-a26e-09093c0a25d0" ownerguid="6187e620-89bd-4b9d-9896-0c0c788e7740"> -<ExampleWords> -<AUni ws="en">team</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What is a group of players called?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="aed63161-ca1b-4ebd-a4c6-e0ce946a98ff" ownerguid="f77053f4-ed5a-4376-bcba-17552ea447ba"> -<ExampleWords> -<AUni ws="en">prepare, get something ready</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to preparing something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="aed65dc5-d9b9-4aa8-8ff9-d05eeee810c7" ownerguid="f022c550-5762-4552-acd7-2871c850a990"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="aed6c1ec-abbe-47e3-a6cc-a99ecff3b825" ownerguid="4bf411b7-2b5b-4673-b116-0e6c31fbd08a"> -<Abbreviation> -<AUni ws="en">8.3.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.617" /> -<DateModified val="2022-9-23 16:55:8.617" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that describe something that is shiny--when something gives back light because light is shining on it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Shiny</AUni> -</Name> -<Questions> -<objsur guid="e29ce926-a2d6-485a-b53d-5de40aede5e5" t="o" /> -<objsur guid="0c1d089f-07fa-42a8-86c1-880872a02c82" t="o" /> -<objsur guid="14463fd5-65ef-4557-89d0-f80693126140" t="o" /> -<objsur guid="ed80933a-bb13-4542-ae55-ae81fbefbccd" t="o" /> -<objsur guid="eb3466b3-8a09-48a6-99f7-12f849769cdd" t="o" /> -<objsur guid="b7736cb5-f039-4001-b00b-d932dc020cdc" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="aed7106d-c2f9-4ebf-9a0f-fc43d7e70a98" ownerguid="f858278a-2727-4403-9cf0-565cdececb1e"> -<Question> -<AUni ws="en">(1) Conditional sentences: Conditional sentences consist of two clauses, the 'if'-clause or protasis (which is a subordinate clause) and the 'then'-clause or apodosis (which is the main clause). Both of these clauses may take special verb forms. (Interestingly enough, they sometime both take the same special verb forms.)</AUni> -</Question> -</rt> -<rt class="LexSense" guid="aed86177-c526-4e0d-8b04-6e8b27131479" ownerguid="12b6a9e2-f4c6-4b4f-aa70-ab7bf0f33057"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">nose</AUni> -<AUni ws="es">naríz</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7b19ab85-7a73-4128-aa85-763bc369e465" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="aedb094e-f4fd-41a6-afc6-52d788df9ece" ownerguid="9fd4342a-b318-42dd-9397-aba4f9d870b7"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="aedc9015-a9f1-4d8e-9ad1-48478ed89983" ownerguid="678a3319-a12b-4f92-857d-167def8ef583"> -<ExampleWords> -<AUni ws="en">go together</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving together?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="aedcfa71-f71d-4c6d-b985-36ede7482891" ownerguid="1030cc2f-0c38-4df8-b6f6-87f4e2091742"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="aee0f1f5-401c-4217-a542-06a80d4e363b" ownerguid="703c755a-40d2-4991-a863-a51d073505ed"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="aee2b530-dd69-4b57-8158-840f451bf33f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jara</AUni> -<AUni ws="qvm-x-acl">jara</AUni> -<AUni ws="qvm-x-akh">jara</AUni> -<AUni ws="qvm-x-akl">jara</AUni> -<AUni ws="qvm-x-ame">hara</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hara.n</AUni> -<AUni ws="qvm-x-acl">*hara.n</AUni> -<AUni ws="qvm-x-akh">*hara.n</AUni> -<AUni ws="qvm-x-akl">*hara.n</AUni> -<AUni ws="qvm-x-ame">*hara.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.680" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="18376088-c521-4dba-b401-31e381a95ddb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hara.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e49f3be4-84ad-41fa-9c86-66468cba0549" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="defc50e1-9be8-4384-b161-66b3b6a47a7a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hara.n 
\entryTyp root 
\gENG corn 
\gSPN maíz 
\e *hara.n 
\c N0 
\ach jara 
\akh jara 
\acl jara 
\akl jara 
\ame hara</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="aee3c02f-0c54-4d50-a706-8af38fee9929" ownerguid="0f883eb0-00a1-44cc-b719-97fb6ec145d4"> -<ExampleWords> -<AUni ws="en">life, routine, homemaking</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to daily life?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="aee86070-ff3f-4ced-bcfd-bb6262945b35" ownerguid="60595d09-4a15-4499-b6e1-d36a704bcbe9"> -<ExampleWords> -<AUni ws="en">drain, bleed, discharge, draw off, empty, leak, ooze, strain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to water draining out of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="aeedc96f-9d42-4033-9d52-9289953dd046" ownerguid="c52079c2-5ebf-4fd5-b9ef-6a21c492700f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="8fd643f8-76e4-4814-8e99-9bb041dcfe4b" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="09f055ce-28a1-4fe8-b2b5-bc8b89258b9d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="aef00236-946f-4474-b7ba-4b05fbc57e42" ownerguid="d024e342-8501-467b-89a8-cc86173c0060"> -<Form> -<AUni ws="qvm-x-ach">pagta</AUni> -<AUni ws="qvm-x-acl">pagta</AUni> -<AUni ws="qvm-x-akh">paqta</AUni> -<AUni ws="qvm-x-akl">paqta</AUni> -<AUni ws="qvm-x-ame">paqta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="aef03b33-f9e9-4c02-ac3e-19ec3417e5b4" ownerguid="71430132-f2ea-40fe-b3f5-b6775741cc56"> -<ExampleWords> -<AUni ws="en">tailoring, spinning, sewing, weaving, knitting, rope making, embroidery, cordage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used for the craft?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="aef26d30-dcbb-4a8c-b41b-866a8f6fec65"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lagui</AUni> -<AUni ws="qvm-x-acl">lagui; lagui; lague</AUni> -<AUni ws="qvm-x-akh">laqi</AUni> -<AUni ws="qvm-x-akl">laqi; laqi; laqe</AUni> -<AUni ws="qvm-x-ame">laqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llaqi.n</AUni> -<AUni ws="qvm-x-acl">*llaqi.n</AUni> -<AUni ws="qvm-x-akh">*llaqi.n</AUni> -<AUni ws="qvm-x-akl">*llaqi.n</AUni> -<AUni ws="qvm-x-ame">*llaqi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.154" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="166e4b97-7c7a-4eea-9b23-f75f90d8eeb1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llaqi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c8b24dcf-4f72-45b1-a4ec-7e5e47494b17" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8bc43d3e-b93f-42c2-8e9f-a1fc8793471d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llaqi.n 
\entryTyp root 
\gENG greens 
\gSPN hoja 
\e *llaqi.n 
\c N0 
\mp +FinalI 
\ach lagui 
\akh laqi 
\acl lagui / _# 
\acl lagui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lague +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl laqi / _# 
\akl laqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl laqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame laqi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="aef4b5fa-a311-4536-805d-233f05ae8413" ownerguid="2477844f-c33e-4607-857f-f5b8bc56037e"> -<Form> -<AUni ws="qvm-x-ach">shilqui</AUni> -<AUni ws="qvm-x-acl">shilqui; shilque</AUni> -<AUni ws="qvm-x-akh">shilki</AUni> -<AUni ws="qvm-x-akl">shilki; shilke</AUni> -<AUni ws="qvm-x-ame">shilki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="aef4f6cf-d138-4765-8555-da088e94035f" ownerguid="5ce6f0d8-3b4b-4723-9526-88451429b850"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="aef53121-94c9-4c57-be0e-f5958045cfc8" ownerguid="ea2d0dc5-2cdb-4686-9f48-abe65ed295a4"> -<ExampleWords> -<AUni ws="en">come up with, catch up with, overtake</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to overtaking someone of something, which is moving in the same direction?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="aef9cae6-b311-4d12-a931-ab6155fe3c39" ownerguid="40d540ef-2338-410e-af93-f9bf69cd4892"> -<Form> -<AUni ws="qvm-x-ach">tagsha</AUni> -<AUni ws="qvm-x-acl">tagsha</AUni> -<AUni ws="qvm-x-akh">taqsha</AUni> -<AUni ws="qvm-x-akl">taqsha</AUni> -<AUni ws="qvm-x-ame">taqsha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="aefa687f-ebf0-4bd4-90d6-4e6e30e18cb5" ownerguid="c9741b97-ad50-465c-a4ca-b21d488f45fe"> -<ExampleWords> -<AUni ws="en">substance, stuff, matter, material</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something that is physical?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="aefcfaa7-c1b2-4be9-a593-9533c16bd1cb" ownerguid="899c0ce1-dd5f-4e39-8e71-ab2acec295b9"> -<Form> -<AUni ws="qvm-x-ach">jagchi</AUni> -<AUni ws="qvm-x-acl">jagchi; jagche</AUni> -<AUni ws="qvm-x-akh">jaqchi</AUni> -<AUni ws="qvm-x-akl">jaqchi; jaqche</AUni> -<AUni ws="qvm-x-ame">haqchi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="af0084eb-1b87-4fdb-aaa7-7544cba465a1" ownerguid="d9cb2e69-133d-4525-bca5-50b0f3402cbb"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John is the <owner> of the house.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">owner</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the person who owns something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="af03bf45-2ad8-408d-a3c7-a9019b3396be" ownerguid="d1e58469-52e3-4b50-b0de-00bf9f09f8d4"> -<ExampleWords> -<AUni ws="en">ancestral, ancestry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something having to do with your ancestors?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="af060a32-14c5-4c48-822a-51fab0a5c163" ownerguid="14e9339a-47f0-480e-84c9-14ada79da311"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.happy</AUni> -<AUni ws="es">alegrar(se)</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="53712600-404b-40c0-9652-040c45c61b60" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="af080ffa-3fd0-43d6-ac09-22c545bbfbb0" ownerguid="46f79067-6395-43de-9a12-a47e2857f005"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="2f767ec6-4adc-40e2-91b9-89d650b6a7b6" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">stubble</AUni> -<AUni ws="es">rastrojo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5f89c691-8130-4674-b2de-6f560acaf192" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="af0909a5-928a-4421-baaa-f33b14302714" ownerguid="349f0278-7998-422a-9c3b-6053989cbb20"> -<Abbreviation> -<AUni ws="en">9.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.680" /> -<DateModified val="2022-9-23 16:55:8.680" /> -<Description> -<AStr ws="en"> -<Run ws="en">This domain is for organization purposes and should not be used for any words. Use the domains in this section for words that belong to a particular part of speech. It is best not to use these domains, since they are based on grammar and not meaning. But if you have a small group of words that belong to a part of speech and you want to list them all, you can use these domains. You can also classify words in this section if you don't know what they mean yet.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Part of speech</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="64f39297-426b-45a8-b5d2-097cf71d688c" t="o" /> -<objsur guid="24d3d7f9-0fda-4759-930b-6b721d3e9115" t="o" /> -<objsur guid="0296465a-25de-4af6-a122-376956b4b452" t="o" /> -<objsur guid="811a2abc-4bf3-44e4-9ff4-e33ff4470ce6" t="o" /> -<objsur guid="f950b7cc-fb85-4dbb-b8ca-934d38cae7fc" t="o" /> -<objsur guid="a7b32d1b-1be7-43ec-94a1-fc7bdd826168" t="o" /> -<objsur guid="b34dc5c9-3367-4bfc-b077-cd014250dc5c" t="o" /> -<objsur guid="8206415e-a915-4842-a46a-fbea64f1a0e3" t="o" /> -<objsur guid="35624f3a-2029-43b3-b70a-83e63ac9052f" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="af0c6c87-51be-489d-829c-493cb35b899d" ownerguid="47a1aafd-8ce7-471e-98df-d8c67f04a5e1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="af0cd22a-583b-4863-8a66-5e5ef7a1cc22" ownerguid="a4c64fcf-79d7-4fdc-a32c-b86d1be35568"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">vendar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e8d97506-c52e-4dd0-9558-fdf342244b2a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="af12d262-df7f-4b5f-96ff-3ede02de589d" ownerguid="8fda4a2c-04fb-4935-9830-42964363db35"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="af1421b6-ee1b-495b-ab4f-db1c10161fb1" ownerguid="4bf411b7-2b5b-4673-b116-0e6c31fbd08a"> -<ExampleWords> -<AUni ws="en">light (v), light up, illuminate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to making light shine in a place?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="af16bde8-0892-4347-847e-8c4917fa4c27" ownerguid="84c3b0ad-3fd8-4e4e-a2d1-a2051f61db4b"> -<Form> -<AUni ws="qvm-x-ach">segurida; seguridä</AUni> -<AUni ws="qvm-x-acl">segurida; seguridä</AUni> -<AUni ws="qvm-x-akh">segurida; seguridä</AUni> -<AUni ws="qvm-x-akl">segurida; seguridä</AUni> -<AUni ws="qvm-x-ame">segurida; seguridä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="af1a73c8-e56c-4730-a90a-81912ce4463e" ownerguid="5c3c3e1a-be20-489f-a454-daa2d6ca5bd7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mother</AUni> -<AUni ws="es">madre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9efa2471-64c9-4ad8-9364-f76c35da3769" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="af1d114f-12ae-4cbd-9936-f1d325ef06e2" ownerguid="8197eac8-65a6-4b9e-a86b-698929a5e952"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="WfiMorphBundle" guid="af1f6a54-59b6-4966-9437-c1f639c2c937" ownerguid="db72da84-2cb0-480a-a0d2-0868132d4702"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yqui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yqui</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yki</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1b0fe7f9-c0ed-498b-9263-f8c0d31cc569" t="r" /> -</Morph> -<Msa> -<objsur guid="2999bb54-aa09-4eed-affb-cf684bd15cf6" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="af206329-7cf0-4be1-a7c8-b4ae7cc22642" ownerguid="fb3fab20-330d-4956-b545-4da82564918b"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="af255979-788b-4a1f-a319-52bbd3287aa2" ownerguid="df17c748-7c4b-457f-8415-fc6638e354ed" /> -<rt class="LexDb" guid="af26d792-ea5e-11de-8f7e-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<ComplexEntryTypes> -<objsur guid="1ee09905-63dd-4c7a-a9bd-1d496743ccd6" t="o" /> -</ComplexEntryTypes> -<DateCreated val="2022-9-23 16:55:7.762" /> -<DateModified val="2022-9-23 16:55:7.762" /> -<DialectLabels> -<objsur guid="a3a8188b-ab00-4a43-b925-a1eed62287ba" t="o" /> -</DialectLabels> -<DomainTypes> -<objsur guid="b0a1eb98-ea5e-11de-888e-0013722f8dec" t="o" /> -</DomainTypes> -<ExtendedNoteTypes> -<objsur guid="ed6b2dcc-e82f-4631-b61a-6b630de332d0" t="o" /> -</ExtendedNoteTypes> -<Introduction> -<objsur guid="d4ed5890-b92b-427f-9a42-baa58d122ca9" t="o" /> -</Introduction> -<IsBodyInSeparateSubentry val="False" /> -<IsHeadwordCitationForm val="False" /> -<Languages> -<objsur guid="487c15b0-2ced-4417-8b77-9075f4a21e5f" t="o" /> -</Languages> -<MorphTypes> -<objsur guid="d7f713d8-e8cf-11d3-9764-00c04f186933" t="o" /> -</MorphTypes> -<Name> -<AUni ws="en">Dictionary</AUni> -</Name> -<PublicationTypes> -<objsur guid="48a4eaed-2ae3-4c81-8c9c-f79f2f3a1455" t="o" /> -</PublicationTypes> -<References> -<objsur guid="b758e2a2-ea5e-11de-9d24-0013722f8dec" t="o" /> -</References> -<Resources> -<objsur guid="73732cc2-7053-49bf-ac11-1ea942f2715c" t="o" /> -</Resources> -<ReversalIndexes> -<objsur guid="65c9ed08-8bc7-4048-b5ab-367dadba7487" t="o" /> -<objsur guid="969d7d6f-ba94-4fcd-a478-0d128eb9d423" t="o" /> -</ReversalIndexes> -<SenseTypes> -<objsur guid="af32c340-ea5e-11de-9040-0013722f8dec" t="o" /> -</SenseTypes> -<UsageTypes> -<objsur guid="af542404-ea5e-11de-8bde-0013722f8dec" t="o" /> -</UsageTypes> -<VariantEntryTypes> -<objsur guid="bb372467-5230-43ef-9cc7-4d40b053fb94" t="o" /> -</VariantEntryTypes> -</rt> -<rt class="LexEntry" guid="af26d96c-bc85-4162-8468-9b71b5c64de6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wipi</AUni> -<AUni ws="qvm-x-acl">wipi; wipi; wipe</AUni> -<AUni ws="qvm-x-akh">wipi</AUni> -<AUni ws="qvm-x-akl">wipi; wipi; wipe</AUni> -<AUni ws="qvm-x-ame">wipi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wipi</AUni> -<AUni ws="qvm-x-acl">*wipi</AUni> -<AUni ws="qvm-x-akh">*wipi</AUni> -<AUni ws="qvm-x-akl">*wipi</AUni> -<AUni ws="qvm-x-ame">*wipi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.668" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3370cae3-8302-4e41-98ba-babce07bfdd3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wipi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bd6423ea-bf34-4119-b898-060105539bec" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d12cc98f-e241-4168-968b-d41e3f7f51d0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wipi 
\entryTyp root 
\gENG scale 
\gSPN balanza 
\e *wipi 
\c N0 
\mp +FinalI 
\ach wipi 
\akh wipi 
\acl wipi / _# 
\acl wipi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wipe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wipi / _# 
\akl wipi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl wipe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wipi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="af2f9cce-2c39-4b1b-a137-5f37c3374e2a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">juliu; julio</AUni> -<AUni ws="qvm-x-acl">juliu; juliu; julio</AUni> -<AUni ws="qvm-x-akh">juliu; julio</AUni> -<AUni ws="qvm-x-akl">juliu; juliu; julio</AUni> -<AUni ws="qvm-x-ame">juliu; julio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+julio</AUni> -<AUni ws="qvm-x-acl">+julio</AUni> -<AUni ws="qvm-x-akh">+julio</AUni> -<AUni ws="qvm-x-akl">+julio</AUni> -<AUni ws="qvm-x-ame">+julio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.892" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="92df5799-e9d9-44dc-b77d-c4cf6e921e91" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+julio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="41a9b68d-f542-4a58-b67e-16d652442cae" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7b8d0c33-a94e-4e71-9ab4-631725fb91d1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +julio 
\entryTyp root 
\gENG july 
\gSPN julio 
\e +julio 
\c N0 
\ach juliu / ~_# 
\ach julio / _# 
\akh juliu / ~_# 
\akh julio / _# 
\acl juliu / ~_# 
\acl juliu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl julio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl juliu / ~_# 
\akl juliu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl julio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame juliu / ~_# 
\ame julio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="af3144fa-fe8f-4b47-af67-8395cf48bba4" ownerguid="09b9a89f-38ee-4b45-99ed-a094074bd4f6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="af32730e-4945-45f3-b980-4d93b2a6fcff" ownerguid="ca443be3-3ee1-42c3-9d91-3f2ea02ecdc1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmPossibilityList" guid="af32c340-ea5e-11de-9040-0013722f8dec" ownerguid="af26d792-ea5e-11de-8f7e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">SenTyp</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:6.262" /> -<DateModified val="2018-8-2 16:32:6.262" /> -<Depth val="1" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="True" /> -<IsVernacular val="False" /> -<ItemClsid val="7" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Sense Types</AUni> -</Name> -<Possibilities> -<objsur guid="af3eaef8-ea5e-11de-80fd-0013722f8dec" t="o" /> -<objsur guid="af48384c-ea5e-11de-9aef-0013722f8dec" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="MoStemMsa" guid="af36951f-c56a-414c-9db9-16f8cac7e9c8" ownerguid="a285fdb1-f889-4804-bc36-beda9d57ec9a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="af388a70-dc49-4010-a2a4-a26747262d8d" ownerguid="81e6851d-4716-4b52-8631-ac1e5a70c9e5"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="af38a106-eabc-40d4-892b-eff75e72b524" ownerguid="2322e9e9-f483-412e-be1d-e5bef48714f5"> -<Form> -<AUni ws="qvm-x-ach">jiruru</AUni> -<AUni ws="qvm-x-acl">jiruru; jiruro</AUni> -<AUni ws="qvm-x-akh">jiruru</AUni> -<AUni ws="qvm-x-akl">jiruru; jiruro</AUni> -<AUni ws="qvm-x-ame">hiruru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="af399519-5d7c-4100-9c79-8162cb4641cb" ownerguid="df149819-608f-46cd-ba0f-55f1d9d2e8ec"> -<Abbreviation> -<AUni ws="en">8.4.8.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.660" /> -<DateModified val="2022-9-23 16:55:8.660" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to doing something at a slow speed.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Slow</AUni> -</Name> -<Questions> -<objsur guid="5c3c4d06-fa50-4496-a867-80f5c540a7cf" t="o" /> -<objsur guid="c5db2c2b-0cf5-455d-a31c-03db814d605b" t="o" /> -<objsur guid="5097d9d8-c2f8-4215-be6b-d7ca70108493" t="o" /> -<objsur guid="bee6ea1f-0eea-4cc1-9f29-2e6caadbf474" t="o" /> -<objsur guid="00ebaa20-7ed7-43bd-a32b-c7f51cfd5023" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="af3c4485-4d14-4556-90ab-ae59d1ea50f4" ownerguid="5c563fa9-c1ca-4d86-9b45-ccae7dea5028"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="af3d6efe-726e-4682-8f05-66bbc56c5672" ownerguid="be0bef3b-acd0-4c75-9d6f-a0dc1ec768dd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="af3dcbd8-3747-402e-a23a-a5e1de1c6e99"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bujuna:da</AUni> -<AUni ws="qvm-x-acl">bujuna:da</AUni> -<AUni ws="qvm-x-akh">bujuna:da</AUni> -<AUni ws="qvm-x-akl">bujuna:da</AUni> -<AUni ws="qvm-x-ame">bujuna:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bujunada</AUni> -<AUni ws="qvm-x-acl">+bujunada</AUni> -<AUni ws="qvm-x-akh">+bujunada</AUni> -<AUni ws="qvm-x-akl">+bujunada</AUni> -<AUni ws="qvm-x-ame">+bujunada</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.991" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9aea5d19-3d43-4105-bee9-4bf0b31bb5c1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bujunada</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eb23d5d0-f4fb-422f-b09c-756304adb140" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="be235bc9-6253-4466-9cce-a98a75593ecc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bujunada 
\entryTyp root 
\gENG 
\gSPN 
\e +bujunada 
\c N0 
\ach bujuna:da 
\akh bujuna:da 
\acl bujuna:da 
\akl bujuna:da 
\ame bujuna:da 
\i EPH 5.4 Lutankunata, manakaqkunata ni lutan yarpayman apaq bujunädakunatapis ama rimapäkuytsu.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="af3e144f-7adc-4105-b80e-5777dc497008" ownerguid="8f7c9d7d-9b2a-40f3-9314-8f16f0aa31ef"> -<ExampleWords> -<AUni ws="en">crumpled up, pleated, wrinkled</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that has many folds?</AUni> -</Question> -</rt> -<rt class="CmPossibility" guid="af3eaef8-ea5e-11de-80fd-0013722f8dec" ownerguid="af32c340-ea5e-11de-9040-0013722f8dec"> -<Abbreviation> -<AUni ws="en">fig</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">figurative</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="af4236bd-eaa2-4153-bfe1-e0983fb07d02" ownerguid="683f570a-0bfe-4a97-b55d-4319b328508b"> -<ExampleWords> -<AUni ws="en">sieve, drain, press, extract, strain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words are used of removing water from something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="af43e92f-472f-4f1c-a477-c969209bc922" ownerguid="fa789ec1-b4d9-42cf-9adb-375c52d9ebc4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fisherman</AUni> -<AUni ws="es">pescador</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2622ad27-0e3a-4b12-a6c9-63dd3912d654" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="af46ab02-2787-42e1-a497-30fb49764236" ownerguid="cc46b6aa-9772-4bb4-a7f1-33f38a9daf22"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="af46f626-b9e1-4255-b2f8-e9cacf67d7e5" ownerguid="cbc0a8f5-9cba-41d2-a7e5-565fbf09c8c4"> -<ExampleWords> -<AUni ws="en">roar with laughter, laugh uproariously, howl with laughter, shriek with laughter, hearty laugh, peals of laughter, laugh helplessly, laugh your head off, laugh hysterically, have hysterics, roll in the aisle, almost die laughing, double up, convulsed with laughter, split your sides</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to laughing a lot or loudly?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="af47c794-c4a3-4d9f-9c46-6bf9622d7e4c" ownerguid="3f4c559f-ab4f-411f-a23b-d2396c977005"> -<ExampleWords> -<AUni ws="en">clarity, visibility</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to how well something can be seen?</AUni> -</Question> -</rt> -<rt class="CmPossibility" guid="af48384c-ea5e-11de-9aef-0013722f8dec" ownerguid="af32c340-ea5e-11de-9040-0013722f8dec"> -<Abbreviation> -<AUni ws="en">prim</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">primary</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibilityList" guid="487c15b0-2ced-4417-8b77-9075f4a21e5f" ownerguid="af26d792-ea5e-11de-8f7e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Lgs</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:6.270" /> -<DateModified val="2018-8-2 16:32:6.270" /> -<Depth val="1" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="True" /> -<IsVernacular val="False" /> -<ItemClsid val="7" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Languages</AUni> -</Name> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="True" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="CmPossibilityList" guid="a3a8188b-ab00-4a43-b925-a1eed62287ba" ownerguid="af26d792-ea5e-11de-8f7e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Dials</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:6.270" /> -<DateModified val="2018-8-2 16:32:6.270" /> -<Depth val="1" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="True" /> -<IsVernacular val="False" /> -<ItemClsid val="7" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Dialect Labels</AUni> -</Name> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="True" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-6" /> -</rt> -<rt class="MoStemAllomorph" guid="af4a1738-70d8-4b2b-a18c-bb564bffe1f3" ownerguid="872b9ebc-d4c4-4996-8697-733573023c14"> -<Form> -<AUni ws="qvm-x-ach">äla</AUni> -<AUni ws="qvm-x-acl">äla</AUni> -<AUni ws="qvm-x-akh">äla</AUni> -<AUni ws="qvm-x-akl">äla</AUni> -<AUni ws="qvm-x-ame">äla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="af4ac058-d4b3-4c7a-ade8-6af762d0486d" ownerguid="b50f39cb-3152-4d56-9ddc-4b98f763e76a"> -<Abbreviation> -<AUni ws="en">3.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to deciding to do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>30E To Decide, To Conclude</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Decide, plan</AUni> -</Name> -<Questions> -<objsur guid="6561f184-8bbd-4012-968b-37f5eba558b9" t="o" /> -<objsur guid="c8843eed-7e01-4515-b242-5d5f7dd057e8" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b6b73d41-e23f-4f22-b01e-7e75f4115fce" t="o" /> -<objsur guid="fed2b7bd-2315-4085-b0a7-2ced988120f3" t="o" /> -<objsur guid="7337b2dd-b574-4a41-affa-2dfad7f6cdbc" t="o" /> -<objsur guid="7bf77556-64df-428e-bfdd-095af5bfeeda" t="o" /> -<objsur guid="26bc089a-a989-4763-be6c-05d127d1c0e8" t="o" /> -<objsur guid="15fb022e-1b45-41e9-bd8a-09ddc9dc6acd" t="o" /> -<objsur guid="cc121082-2d07-484e-8a6f-7382f7d71f39" t="o" /> -<objsur guid="41b80f5d-0298-4d3c-b1a3-6d5e6c3985b1" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="af4bb075-1bc2-40cf-8c4a-01028415564f"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">6</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="af4dc9fa-dafa-43eb-b1f6-e0fe51e236c6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wanupan</AUni> -<AUni ws="qvm-x-acl">wanupan</AUni> -<AUni ws="qvm-x-akh">wanupan</AUni> -<AUni ws="qvm-x-akl">wanupan</AUni> -<AUni ws="qvm-x-ame">wanupan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wañupan</AUni> -<AUni ws="qvm-x-acl">*wañupan</AUni> -<AUni ws="qvm-x-akh">*wañupan</AUni> -<AUni ws="qvm-x-akl">*wañupan</AUni> -<AUni ws="qvm-x-ame">*wañupan</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.485" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a32ada67-91a8-48c5-aab5-d41e11a8f316" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wañupan</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6601128e-8cfe-48a5-8f12-be237441b8a6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ba83b14d-17ef-4af5-8c67-3979143462cb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wañupan 
\entryTyp root 
\gENG meat 
\gSPN carne 
\e *wañupan 
\c N0 
\mp +FinalC 
\ach wanupan 
\akh wanupan 
\acl wanupan 
\akl wanupan 
\ame wanupan</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="af4def35-e98f-4e41-907e-329895f65fd9" ownerguid="b7801f6e-683b-4d5d-9bab-57f6e593db8c"> -<ExampleWords> -<AUni ws="en">list, reel off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to giving a list?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="af4e6524-b803-413b-ba8c-3e9a9eb5077a" ownerguid="7d8898d6-6296-4d4d-b8dd-2f48c49f9e98"> -<ExampleWords> -<AUni ws="en">raised, elevated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe a surface that is higher than the area around it?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="af4fe667-a873-44ea-b8a4-7e4a81bbf2c9" ownerguid="9a68d3be-cc57-4200-8a0e-b1528c8830dd"> -<Form> -<AUni ws="qvm-x-ach">ïlu</AUni> -<AUni ws="qvm-x-acl">ïlu; ïlu; ïlo</AUni> -<AUni ws="qvm-x-akh">ïlu</AUni> -<AUni ws="qvm-x-akl">ïlu; ïlu; ïlo</AUni> -<AUni ws="qvm-x-ame">ïlu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="af54834b-a7da-4190-ba74-cb82057ed59f" ownerguid="540fa096-41dc-417e-aad1-b3e85766ba61"> -<Form> -<AUni ws="qvm-x-ach">tamshu</AUni> -<AUni ws="qvm-x-acl">tamshu; tamsho</AUni> -<AUni ws="qvm-x-akh">tamshu</AUni> -<AUni ws="qvm-x-akl">tamshu; tamsho</AUni> -<AUni ws="qvm-x-ame">tamshu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="af552dde-7d1d-4e96-b0a2-4ed76c9dcb73" ownerguid="83322b11-96f4-481b-bc88-2ce9d94939a2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cost</AUni> -<AUni ws="es">costar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="35677f7b-24a3-4d74-a919-fca11c314ac1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="af579430-9c02-4fff-ab5e-e5365f62963b" ownerguid="06cc958d-f7c2-4879-a166-719c7da8848a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="af5804b9-5f0a-4603-92d7-e382b51f21e6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cebadillu</AUni> -<AUni ws="qvm-x-acl">cebadillu; cebadillu; cebadillo</AUni> -<AUni ws="qvm-x-akh">cebadillu</AUni> -<AUni ws="qvm-x-akl">cebadillu; cebadillu; cebadillo</AUni> -<AUni ws="qvm-x-ame">cebadillu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cebadilla</AUni> -<AUni ws="qvm-x-acl">+cebadilla</AUni> -<AUni ws="qvm-x-akh">+cebadilla</AUni> -<AUni ws="qvm-x-akl">+cebadilla</AUni> -<AUni ws="qvm-x-ame">+cebadilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.92" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="315f6657-60d5-4e6e-a710-2e0cfbbfa6bc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cebadilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f2f25c83-8de8-4f6f-bdad-c5f950b64844" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e49b0b2e-fb4d-4041-9c5f-c44b6f71678e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cebadilla 
\entryTyp root 
\gENG 
\gSPN cebadilla 
\e +cebadilla 
\c N0 
\ach cebadillu 
\akh cebadillu 
\acl cebadillu / _# 
\acl cebadillu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cebadillo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cebadillu / _# 
\akl cebadillu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cebadillo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cebadillu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="af5bcf27-56e2-4072-b321-30a31b58af78" ownerguid="cb362fc7-b3aa-46f4-b9a8-0f8c97fb16fe"> -<Abbreviation> -<AUni ws="en">6.2.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.383" /> -<DateModified val="2022-9-23 16:55:8.383" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to growing fruit, such as berries, cranberries, grapes, raspberries, and strawberries. If one type of fruit is cultivated extensively and there are many words related to it, set up a separate domain for it. This has already been done for grapes and bananas, since they are so common around the world.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Growing fruit</AUni> -</Name> -<Questions> -<objsur guid="b8d2fff3-cfa6-40d1-b776-f00ba9bfda6c" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="7d9f48f5-aba3-486f-b49d-cd2cb0ac03f8" t="o" /> -<objsur guid="b7662b2b-e57c-400b-8ef6-6fb612f5ee9f" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="af5bda30-0917-4d35-87dc-c4e4ef2b4598" ownerguid="45b7dcce-21d5-4738-a64d-e8b0be8a1824"> -<ExampleWords> -<AUni ws="en">symmetrical, regular, even, balanced, even sided</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is symmetrical?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="af5dc9a0-b774-4854-a82d-9d2597f14195" ownerguid="167a5bae-f06f-424c-bfcb-ec547a076c8d"> -<ExampleWords> -<AUni ws="en">tether, rope, prod (stick to direct cattle), cowbell</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What tools are used to tend animals?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="af61ee04-c5fc-4961-8b0a-3985da7665d1" ownerguid="0d63adce-41dd-4873-b0bf-331d0205e65d"> -<ExampleWords> -<AUni ws="en">appear, arise, coalesce, come into being, come into existence, come to be, develop, emerge, form, materialize, spring up, take shape</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something starting to exist?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="af62c8f6-43c7-4c44-a0d1-ab9bcff8e26f" ownerguid="bfeba2a4-4479-49e9-838c-3baa2ad0fcae"> -<Abbreviation> -<AUni ws="en">8.3.5.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.619" /> -<DateModified val="2022-9-23 16:55:8.619" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to imitating someone--to do things in the same way as another person.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>41D Imitate Behavior</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Imitate</AUni> -</Name> -<Questions> -<objsur guid="a74f648f-52b5-4f8d-b022-a323cb9ecea9" t="o" /> -<objsur guid="3ee55dad-42a1-4e4a-9ecb-a9e8e58311fe" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="af6405b4-1127-4be0-8450-1bd71d2453bb" ownerguid="1621aac3-4ea9-4373-bf1b-40fce0ca7b5e"> -<ExampleWords> -<AUni ws="en">inadequate, insufficient, meager, needed, poor, scant, scanty, scarce, short</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that you lack?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="af651f9b-9471-4bcc-944c-c1f58b2a7de9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sepultu:ra</AUni> -<AUni ws="qvm-x-acl">sepultu:ra</AUni> -<AUni ws="qvm-x-akh">sepultu:ra</AUni> -<AUni ws="qvm-x-akl">sepultu:ra</AUni> -<AUni ws="qvm-x-ame">sepultu:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sepultura</AUni> -<AUni ws="qvm-x-acl">+sepultura</AUni> -<AUni ws="qvm-x-akh">+sepultura</AUni> -<AUni ws="qvm-x-akl">+sepultura</AUni> -<AUni ws="qvm-x-ame">+sepultura</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.510" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="93571d51-c4e9-4705-826b-5133ee3e2f7e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sepultura</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4cf561fd-6439-4040-ab6f-a34db4b5eada" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="80d24f0b-f638-493e-9b06-8e3a26971cbc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sepultura 
\entryTyp root 
\gENG sepulture 
\gSPN sepultura 
\e +sepultura 
\c N0 
\ach sepultu:ra 
\akh sepultu:ra 
\acl sepultu:ra 
\akl sepultu:ra 
\ame sepultu:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="af68cbfd-318d-46cf-8de8-7b36c1779782" ownerguid="2d3ea645-0e8c-43b3-bb7e-32daea3d5d64"> -<Form> -<AUni ws="qvm-x-ach">espïga</AUni> -<AUni ws="qvm-x-acl">espïga</AUni> -<AUni ws="qvm-x-akh">espïga</AUni> -<AUni ws="qvm-x-akl">espïga</AUni> -<AUni ws="qvm-x-ame">espïga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="af68ec67-5e3e-4ef9-bd06-cbeeba23230a" ownerguid="b6a40216-fe93-4b0f-b85b-5622327031d0"> -<ExampleWords> -<AUni ws="en">clutch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What is a group of eggs called?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="af6a8ef0-b876-4dde-8593-829021ca3c82"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">terra:du</AUni> -<AUni ws="qvm-x-acl">terra:du; terra:du; terra:do</AUni> -<AUni ws="qvm-x-akh">terra:du</AUni> -<AUni ws="qvm-x-akl">terra:du; terra:du; terra:do</AUni> -<AUni ws="qvm-x-ame">terra:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+terrado</AUni> -<AUni ws="qvm-x-acl">+terrado</AUni> -<AUni ws="qvm-x-akh">+terrado</AUni> -<AUni ws="qvm-x-akl">+terrado</AUni> -<AUni ws="qvm-x-ame">+terrado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.876" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="232eddd6-6c1d-4ce9-bc46-1df5c50386d6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+terrado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3783dd9a-de59-4481-9dcd-47a3af8d5829" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="148bea06-3fc0-4602-80c5-bceb64930013" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +terrado 
\entryTyp root 
\gENG rafter 
\gSPN cabrio 
\e +terrado 
\c N0 
\ach terra:du 
\akh terra:du 
\acl terra:du / _# 
\acl terra:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl terra:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl terra:du / _# 
\akl terra:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl terra:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame terra:du</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="af6d6235-ede3-4585-9da1-740122263157" ownerguid="57a5e538-15ff-4d25-acda-f8218a89d219"> -<Form> -<AUni ws="qvm-x-ach">anca</AUni> -<AUni ws="qvm-x-acl">anca</AUni> -<AUni ws="qvm-x-akh">anka</AUni> -<AUni ws="qvm-x-akl">anka</AUni> -<AUni ws="qvm-x-ame">anka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="af6fe2d6-576d-473f-8a32-583779d95d1d" ownerguid="3ea4c495-b837-4310-8741-38d89fa63e0b"> -<Abbreviation> -<AUni ws="en">9.4.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.700" /> -<DateModified val="2022-9-23 16:55:8.700" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being sure that something is true.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Sure</AUni> -</Name> -<Questions> -<objsur guid="03cd5b91-2ab9-4141-af45-8ddb967d5c00" t="o" /> -<objsur guid="cfc46645-a4cc-4c4e-86af-b2644599f28a" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="ad7cc381-1dc6-4fc2-94a4-acd5bf7a11da" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="af700054-258a-458a-9e38-e90397833e51" ownerguid="70eac6be-66e8-4827-8f2f-d15427efff60"> -<Abbreviation> -<AUni ws="en">3.5.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.174" /> -<DateModified val="2022-9-23 16:55:8.174" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to writing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33E Written Language; 6J Instruments Used in Marking and Writing</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Write</AUni> -</Name> -<OcmCodes> -<Uni>212 Writing; 218 Writing and Printing Supplies</Uni> -</OcmCodes> -<Questions> -<objsur guid="24222d27-1e21-4d92-b935-3ceaf3968dbf" t="o" /> -<objsur guid="8a34505e-b1d9-46ee-bab8-3fa0bca5ea50" t="o" /> -<objsur guid="c65dc15a-3116-4e5d-b735-3b78ec53fbb1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="af701296-dac7-42d2-8962-f8cdcba34499" ownerguid="1c0c4951-03b6-49b8-8a8e-724397cfd5a7"> -<ExampleWords> -<AUni ws="en">fascination, obsession, mania, fixation, fetish, preoccupation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of obsession?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="af71c610-8842-43fb-8c1b-47ef4ab3edad" ownerguid="dad53ed2-34f7-42a1-a9db-6ed5cd728a57"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuya</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuya</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuya</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuya</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuya</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ed8e0c9a-5a44-4448-bc6b-1b766f141f5c" t="r" /> -</Morph> -<Msa> -<objsur guid="6ee88865-51d6-40db-b9fa-4ba30a1cf4e7" t="r" /> -</Msa> -</rt> -<rt class="LexExampleSentence" guid="af71c7b9-fcb8-41a0-a5a8-ffa1ee60ddbd" ownerguid="e793f653-ec88-4eab-ba06-5c0f05394e05"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Mancata quilparcuy.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="af720757-2691-4fa0-b1e0-4fb35db2dca5" ownerguid="1ca26512-75f6-4a7a-a7cc-07d08aa799d9"> -<ExampleWords> -<AUni ws="en">repentance, reformation, reversal, change of heart</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a decision to change?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="af730668-21d9-4098-ba9a-3c589d495bcd" ownerguid="cd0162de-bb70-4f39-85fa-f9c59ba90886"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">scatter</AUni> -<AUni ws="es">esparcir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="79dce89b-da34-49a5-a332-81bc3fae781a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="af73842b-c513-44d4-9ce8-780abeff2314" ownerguid="2d37e83c-b72e-463d-bd58-22d4dc895241"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sun</AUni> -<AUni ws="es">sol</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="690a2664-eef4-439f-a586-108d1661e097" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="af74046a-6667-48a1-a068-ed96ca9d8fb2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">colchón; colchon</AUni> -<AUni ws="qvm-x-acl">colchón; colchon</AUni> -<AUni ws="qvm-x-akh">colchón; colchon</AUni> -<AUni ws="qvm-x-akl">colchón; colchon</AUni> -<AUni ws="qvm-x-ame">colchón; colchon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+colchón</AUni> -<AUni ws="qvm-x-acl">+colchón</AUni> -<AUni ws="qvm-x-akh">+colchón</AUni> -<AUni ws="qvm-x-akl">+colchón</AUni> -<AUni ws="qvm-x-ame">+colchón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.142" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="99127519-ae2d-4415-998b-5112c02c9dfd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+colchón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eac04665-21b1-4078-9e10-62a6d958d08b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="330b1e97-6414-4989-8581-4ceac3e0c93f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +colchón 
\entryTyp root 
\gENG mattress 
\gSPN colchón 
\e +colchón 
\c N0 
\mp +FinalC 
\ach colchón / _# 
\ach colchon / ~_# 
\akh colchón / _# 
\akh colchon / ~_# 
\acl colchón / _# 
\acl colchon / ~_# 
\akl colchón / _# 
\akl colchon / ~_# 
\ame colchón / _# 
\ame colchon / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="af778721-dfb6-41c3-8af3-371f2d53be26" ownerguid="4a8d4d97-d0bb-4019-81e5-93b1808a8226"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">large.bowl</AUni> -<AUni ws="es">tazón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2d366c70-fd53-4f2e-b8ce-8c681805eac3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="af79245c-0ffa-4e02-90ae-72d1352b3ccb" ownerguid="91ddf495-a28b-4a32-90dc-6f997d0cd069"> -<ExampleWords> -<AUni ws="en">wind instruments, winds, reeds, organ, flute, clarinet, oboe, brass instruments, horn, trumpet, cornet, bugle, trombone, French horn, baritone horn, tuba, harmonica, bagpipes, pipe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What are the types of instruments that you blow into?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="af7afc6c-24e3-435a-b8a2-217d4576055a" ownerguid="f08fdf77-9feb-4462-a6ea-032408846cc5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="f90a4c3c-4423-4a99-97bc-0cd3623b0620" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="af7f67aa-6db2-4038-a861-0ef6619bea24" ownerguid="f883266a-146a-41c7-b1db-85120840c3a8"> -<ExampleWords> -<AUni ws="en">absurd, impenetrable, impervious, inaccessible, inoperable, insurmountable, no chance, no earthly way, outlandish, preposterous, ridiculous, unable, unachievable, unapproachable, undoable, unfeasible, unimaginable, unworkable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words indicate that something is impossible?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="af80ae07-faac-4d0c-8fa0-538cf1cd0a0c" ownerguid="ea75c415-1cdf-4e67-8942-e8be5b569c91"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="af824d61-9a01-4f40-9fa7-8b62fc94cbd6" ownerguid="3c774a89-7af1-4806-98e8-b0102f4a4aba"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">moon</AUni> -<AUni ws="es">luna</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="25079657-7759-4f10-98b0-a2f3a4ce231e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="af869258-aa97-4d01-a648-6563b970dfa3" ownerguid="5332c42f-b44c-48a8-84cc-c9be572133f7"> -<Form> -<AUni ws="qvm-x-ach">tinyay</AUni> -<AUni ws="qvm-x-acl">tinyay</AUni> -<AUni ws="qvm-x-akh">tinyay</AUni> -<AUni ws="qvm-x-akl">tinyay</AUni> -<AUni ws="qvm-x-ame">tinyay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="af874bf2-8d9e-4b36-ba5f-6fbb3e3f8473" ownerguid="6b36eca1-0b5d-4a4a-8756-dafc44e18693"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="af8b0d9b-2175-4995-a70d-c58ea78c9b27"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuti</AUni> -<AUni ws="qvm-x-acl">cuti; cute</AUni> -<AUni ws="qvm-x-akh">kuti</AUni> -<AUni ws="qvm-x-akl">kuti; kute</AUni> -<AUni ws="qvm-x-ame">kuti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kuti.v</AUni> -<AUni ws="qvm-x-acl">*kuti.v</AUni> -<AUni ws="qvm-x-akh">*kuti.v</AUni> -<AUni ws="qvm-x-akl">*kuti.v</AUni> -<AUni ws="qvm-x-ame">*kuti.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.31" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1ea93998-be9c-4ae6-b87a-1279a5c89619" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kuti.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="35967ee3-872d-4b56-ae00-e643fda7e9f3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b02c3472-ad16-42ae-93e7-e30a5d70a6f3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kuti.v 
\entryTyp root 
\gENG return 
\gSPN volver 
\e *kuti.v 
\c V1 
\mp +FinalI 
\ach cuti 
\akh kuti 
\acl cuti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl cute +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kuti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kute +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kuti 
\mcc *kuti.v / ~_ NMN 
\mcc *kuti.v / ~_ REFDIR IN1 CAUS</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="af8dc409-ef92-4dba-923a-d23ffc589748" ownerguid="9e2b0c61-304e-4cad-9708-792bfde880b4"> -<ExampleWords> -<AUni ws="en">stop fighting, cease hostilities, end adversity, make peace, make amends, apologize, apology, reconcile, reconciliation, make up, disengage, settle, peace offering, pacify, appease, quell, tranquilize, neutralize, harmonize, harmonious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to stopping fighting?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="af915073-f912-4266-977a-64c871b7ea9d" ownerguid="f957a4aa-d3d4-4dad-93d1-20565b5158d4"> -<ExampleWords> -<AUni ws="en">cousin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to your mother's sister's child?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="af925757-3cfd-48ac-bcd9-2c69004d0fa0" ownerguid="c956a98a-4c85-4c85-868d-f27f44bd6422"> -<ExampleWords> -<AUni ws="en">claim, forecast, foretell, predict, prognosticate, prophesy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to predicting what you think will happen in the future?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="af93ad7a-6e68-4952-856b-d1cccbe6cda3" ownerguid="b015f460-faeb-4aa5-b453-9e5e9ae061fe"> -<ExampleWords> -<AUni ws="en">antiquated, dated, fusty, early type/form of, obsolete, primitive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is old fashioned and no longer used?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="af9675a3-6f13-4e8e-a29b-5cb6558a9065" ownerguid="492a0270-bfec-4627-9625-12dc2197a851"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Gen 31.1 duëñu tucuycan</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="af971c43-110f-4ba3-a321-26bfed35dc17" ownerguid="025da6f4-b1b6-423a-8c0f-b324f531a6f1"> -<ExampleWords> -<AUni ws="en">plant, flora, greenery, vegetation, herbage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to all plants?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="af97416f-5122-418e-9ea4-75005d9883d0" ownerguid="0cc62b4a-d5ff-4f45-83d1-e2b46e5d159a"> -<ExampleWords> -<AUni ws="en">midnight, the middle of the night, pumpkin hour</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to midnight?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="af981a37-1211-4247-94f5-2e33ab8d8e66" ownerguid="8aceebe4-58c3-4926-a7a0-0264f83b8357"> -<Form> -<AUni ws="qvm-x-ach">jamurpa; jamurpä</AUni> -<AUni ws="qvm-x-acl">jamurpa; jamurpä</AUni> -<AUni ws="qvm-x-akh">jamurpa; jamurpä</AUni> -<AUni ws="qvm-x-akl">jamurpa; jamurpä</AUni> -<AUni ws="qvm-x-ame">hamurpa; hamurpä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="af9ca902-8081-4e07-becd-5ed123fdee0b" ownerguid="529f86f1-b0dd-4706-9196-97797adab7a2"> -<Form> -<AUni ws="qvm-x-ach">tsucu</AUni> -<AUni ws="qvm-x-acl">tsucu; tsucu; tsuco</AUni> -<AUni ws="qvm-x-akh">tsuku</AUni> -<AUni ws="qvm-x-akl">tsuku; tsuku; tsuko</AUni> -<AUni ws="qvm-x-ame">tsuku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="af9d7430-c198-496d-9a80-c942040bb920" ownerguid="dfe59469-d1bf-4ed2-9faa-6d5af52eefdd"> -<ExampleWords> -<AUni ws="en">cover, coat, blanket, coat, encrust, mask, pave, plate, robe, shroud, smother, swathe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to covering something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="af9ecd07-95c6-41ca-92b4-c7058fd9d437" ownerguid="267b98aa-e17c-4ebb-a752-ed4210701867"> -<ExampleWords> -<AUni ws="en">notice, spot, become aware, detect, note, perceive, observe, conscious of, catch someone's eye, take note</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to noticing something?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="af9f0774-1825-40b5-b8d6-7516efec916a" ownerguid="f2d823a1-804a-4388-b911-3bcb871b29c8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</Msa> -<Sense> -<objsur guid="80f44d0c-72fe-4b3c-b505-6b06de3ee220" t="r" /> -</Sense> -</rt> -<rt class="CmSemanticDomain" guid="afa77a2a-8b0f-4a39-91bc-040e90ffbb3a" ownerguid="474aa982-8350-47e2-a983-e1e2bce9d928"> -<Abbreviation> -<AUni ws="en">3.4.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.133" /> -<DateModified val="2022-9-23 16:55:8.133" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling happy--to feel good when something good happens (such as receiving a gift, hearing good news, or watching something good happening).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25K Happy, Glad, Joyful; 25H Acceptable To, To Be Pleased With; 25J Enjoy, Take Pleasure In, Be Fond of Doing</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Happy</AUni> -</Name> -<Questions> -<objsur guid="ddc021a2-0b34-4128-92c7-d832377c026b" t="o" /> -<objsur guid="e63dc412-96f4-4aa9-a53d-137fbe5d24b0" t="o" /> -<objsur guid="275280b9-3886-4637-b9e7-07e96f0bfa4a" t="o" /> -<objsur guid="decbc48d-8a12-41a0-8181-eaeafb8d62fa" t="o" /> -<objsur guid="55964875-25eb-4a74-be41-8620550b2c3c" t="o" /> -<objsur guid="d0232c48-944c-44e3-b933-321acc754bf4" t="o" /> -<objsur guid="b6cdd4a9-94ea-404b-9a00-cea6024b4470" t="o" /> -<objsur guid="7a05f327-4a30-43f7-9487-a8acd377e352" t="o" /> -<objsur guid="d95e2193-0a48-448e-bbe7-f3e8c9a7b253" t="o" /> -<objsur guid="a79a4379-36b1-40aa-9b8f-a8e8d104d275" t="o" /> -<objsur guid="9e74e54b-5458-41f1-9a12-c1bf0a6840e4" t="o" /> -<objsur guid="c8bf76a3-de4b-45c2-aebe-e510caf18b14" t="o" /> -<objsur guid="fbcedfec-d5f1-42bf-ba82-86419d27e001" t="o" /> -<objsur guid="88f1d23d-e275-41f5-bbb7-658f4b9669d7" t="o" /> -<objsur guid="b7443c79-3d53-440c-b101-e959d2f17165" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="26fb2e94-b8fe-4216-9057-ca17a71df83b" t="o" /> -<objsur guid="9351d5b6-5a87-422a-9e82-ca6a0bacd3e9" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="afa8c3cb-e8ff-4629-9637-6b5924d0174b" ownerguid="68d7d08b-efb3-4fc1-87d6-ad37562e920d"> -<Form> -<AUni ws="qvm-x-ach">goyu</AUni> -<AUni ws="qvm-x-acl">goyu; goyu; goyo</AUni> -<AUni ws="qvm-x-akh">qoyu</AUni> -<AUni ws="qvm-x-akl">qoyu; qoyu; qoyo</AUni> -<AUni ws="qvm-x-ame">quyu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="afa9f3ca-60f9-4798-99b3-4b79e83b4b5e" ownerguid="06be473e-c2f3-45fe-8522-3a0c033b5067"> -<ExampleWords> -<AUni ws="en">mark, stain, spot, smudge, fingerprint</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a mark on something?</AUni> -</Question> -</rt> -<rt class="MoInflAffMsa" guid="afad3961-fbf7-495d-bda7-b2ceaf12bba1" ownerguid="fb2de51f-da06-435c-8dcf-320f193f47bc"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="fda4c591-1349-4f9e-ab87-905ae2aa25e1" t="r" /> -</Slots> -</rt> -<rt class="StTxtPara" guid="afaf3c09-e7ae-48ec-84ea-141cd4fe563a" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">yarqaramun. </Run> -<Run ws="en">\tr < V1 *yarqU > PNCT AFAR 3</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="c52b0aa2-b356-40af-a0e2-9ed054396e42" t="o" /> -<objsur guid="012a7b73-dd76-40ff-a7e5-ad8368c95bc3" t="o" /> -</Segments> -</rt> -<rt class="MoStemAllomorph" guid="afb198f1-7704-4f26-9862-707f514cc21a" ownerguid="188ba7c5-49b2-4162-85f2-778797fd5960"> -<Form> -<AUni ws="qvm-x-ach">mulli</AUni> -<AUni ws="qvm-x-acl">mulli; mulli; mulle</AUni> -<AUni ws="qvm-x-akh">mulli</AUni> -<AUni ws="qvm-x-akl">mulli; mulli; mulle</AUni> -<AUni ws="qvm-x-ame">mulli</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="afb500a6-84c7-45e7-813b-98b2445db30b" ownerguid="d90afb31-9666-4b79-8caf-ce4f4f248172"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">one.day.plow.area</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7a08230c-8da6-41d1-af56-af81f7f45874" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="afb63cae-c892-4003-9a30-8334c1503473" ownerguid="5e0c6d02-ba15-46fe-866d-4025533c9bc2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="afb64894-f0d9-4884-8772-e2235263cb51" ownerguid="a7dae83a-dce6-47ea-ab3f-ac8a3af4cce9"> -<ExampleWords> -<AUni ws="en">international</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that has to do with more than one country?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="afc021e0-6e80-4f6e-8de4-37813f7aede6" ownerguid="1f2173bf-8e27-4cb2-a28a-2ec98728541d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="afc0240e-80ca-4f20-a136-8149bd6fee82" ownerguid="a7712dab-7710-4b07-8582-3086d0c0bcc0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="c395b369-f4a0-4a67-af62-d1db83b2af24" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="afc25fbb-9060-4af2-8225-3fddbab2227d" ownerguid="30e6b42c-6bbf-4659-99e7-aa4b8e68c9ce"> -<Abbreviation> -<AUni ws="en">4.3.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.225" /> -<DateModified val="2022-9-23 16:55:8.225" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being patient--if you are patient, you don't get angry or do anything bad even though something bad happens to you for a long time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25O Patience, Endurance, Perseverance</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Patient</AUni> -</Name> -<Questions> -<objsur guid="9e8769ca-d997-4c0d-963e-9abdbbe3cf6a" t="o" /> -<objsur guid="f59387b1-b3aa-4626-aed9-c81a8731d71f" t="o" /> -<objsur guid="0b698d44-a6be-40f5-a7c9-aa3ab9a2ec40" t="o" /> -<objsur guid="8817ffe8-8804-4a14-92e6-7ceca65d5a4b" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="8d490e91-6383-45ea-a3d7-b9c950822f98" t="o" /> -<objsur guid="93489181-ad8c-4a18-8dbc-fd7a9c871126" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="afc3a4e4-ad5d-46dc-addb-54e58f1cfe01" ownerguid="3056981e-aa4f-4c3b-8e39-609913a69a60"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lose</AUni> -<AUni ws="es">perder</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e20a5a33-9803-47fb-abb1-15d48931c335" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="afc4e56f-141a-4135-8c3e-b01f980d7aac" ownerguid="8a42e0ec-bec9-46ac-8d43-673803694f6c"> -<PartOfSpeech> -<objsur guid="38b17640-aa0a-406d-bc99-a54197290945" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="afc69365-d08e-4c95-b337-001df32c3991" ownerguid="c41c4db3-2844-4feb-bdfd-80a282c48fc8"> -<Form> -<AUni ws="qvm-x-ach">muyu</AUni> -<AUni ws="qvm-x-acl">muyu; muyo</AUni> -<AUni ws="qvm-x-akh">muyu</AUni> -<AUni ws="qvm-x-akl">muyu; muyo</AUni> -<AUni ws="qvm-x-ame">muyu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="afc7dc97-419a-48b2-8398-4144a1f33493" ownerguid="e7069ec3-3b82-4ba9-9507-ceafb1720d9b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="afc9693b-7648-4fad-a215-d07690c0551d" ownerguid="5a1bcba2-4b2d-4fcc-a51e-50f75d1cc603"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1SA 15.14 Tsaynog niptinna Samuel caynog nergan: <<¿Imanirtag tsauraga uyshacuna y cabracuna wagamushganta y törucuna jüyamushganta mayaycä?>></Run> -</AStr> -</Example> -</rt> -<rt class="FsFeatStruc" guid="afcb93c3-7487-43bb-b6ef-e20d3699f66c" ownerguid="22806abf-f462-448a-bb3e-39bbf5d75aea"> -<FeatureSpecs> -<objsur guid="7f3e968d-e8cd-4f27-981f-dbf6fe76a77a" t="o" /> -</FeatureSpecs> -<Type> -<objsur guid="efc7ecdf-44ed-4b11-9eef-41aaa905ca65" t="r" /> -</Type> -</rt> -<rt class="CmDomainQ" guid="afccd7d1-0c20-4213-8373-cdb94a07a581" ownerguid="6fb1d03c-b0fe-49b7-a473-168f12a54a36"> -<ExampleWords> -<AUni ws="en">late (adv), not on time, lateness (of the hour), late in life</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something happens late?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="afd1ff80-111a-414d-8e0a-4361836308a8" ownerguid="1dc717b9-c5e8-4482-b076-22102da9d553"> -<ExampleWords> -<AUni ws="en">commit (a crime), break the law</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to breaking the law?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="afd69f89-69a9-42df-ac48-fdd88913db69" ownerguid="dc43feaa-d4f9-4e3b-9378-bfe9323941e3"> -<Form> -<AUni ws="qvm-x-ach">liqui</AUni> -<AUni ws="qvm-x-acl">liqui; lique</AUni> -<AUni ws="qvm-x-akh">liki</AUni> -<AUni ws="qvm-x-akl">liki; like</AUni> -<AUni ws="qvm-x-ame">liki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="afd7e394-6ec6-4814-81c7-f8b1e958ac2b" ownerguid="00364f0c-9a3a-4910-a82e-1ffbc4d4137f"> -<ExampleWords> -<AUni ws="en">excite, get someone excited, thrill, give someone a thrill, animate, stir up, exhilarate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to causing someone to feel excited?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="afdbf731-1307-48a3-95ca-31f854d1535a" ownerguid="6187e620-89bd-4b9d-9896-0c0c788e7740"> -<ExampleWords> -<AUni ws="en">field</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What is the place called where the game is played?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="afdd8b8e-9502-4d06-94ee-e79815b65750" ownerguid="f7960e84-5af9-4999-9028-783058aa8c5c"> -<Abbreviation> -<AUni ws="en">8.1.5.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.569" /> -<DateModified val="2022-9-23 16:55:8.569" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a number or amount that is almost the same as another number.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Almost</AUni> -</Name> -<Questions> -<objsur guid="d61847ca-8773-4679-8f9f-97c9dd300faf" t="o" /> -<objsur guid="9be66618-88a2-4167-85d1-2735656cd9be" t="o" /> -<objsur guid="e15669a7-52a8-43aa-920c-e4fdcf18d325" t="o" /> -<objsur guid="327ae1d9-5161-4909-8595-7081009549ca" t="o" /> -<objsur guid="553e250a-6173-46d6-9997-a6383bae3ab4" t="o" /> -<objsur guid="197eccac-0ba1-403e-a7a3-b091e9d35782" t="o" /> -<objsur guid="a187aa95-be99-48b7-860a-9b7fa9378b49" t="o" /> -<objsur guid="dd322afd-d716-46fc-8b2f-9ca38401936c" t="o" /> -<objsur guid="09c18216-5526-4860-b67f-7395edde392c" t="o" /> -<objsur guid="f31ac378-0967-4325-90f5-b239340f8bb2" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="FsFeatStruc" guid="afde1c9a-2780-4c3f-8864-3274f31f962e" ownerguid="3f2628c2-c996-47dc-b083-d75626ba04eb"> -<FeatureSpecs> -<objsur guid="80a94e7b-6a6c-4348-8b31-92e884f667d9" t="o" /> -</FeatureSpecs> -<Type> -<objsur guid="efc7ecdf-44ed-4b11-9eef-41aaa905ca65" t="r" /> -</Type> -</rt> -<rt class="MoStemMsa" guid="afde997c-1da1-437f-8304-0d6a6ea9aea3" ownerguid="add7df10-d641-418a-8a58-6aa2069be819"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="afe19163-7cf1-4796-bd99-646d884d100f" ownerguid="15df5c19-204d-4097-accc-179b20cf5280"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="afe2e158-aec7-40ca-97e9-efe7e5348699" ownerguid="df2b9d7a-9b90-4704-8bc3-11dcffe985f4"> -<ExampleWords> -<AUni ws="en">skin, hide, dermis, epidermal, epidermis, pore</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to the skin?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="afe4f1db-7cab-4e71-8041-12b983377a3c" ownerguid="e5246c0e-798c-439d-8749-30ef44e4521f"> -<Form> -<AUni ws="qvm-x-ach">pU</AUni> -<AUni ws="qvm-x-acl">pU</AUni> -<AUni ws="qvm-x-akh">pU</AUni> -<AUni ws="qvm-x-akl">pU</AUni> -<AUni ws="qvm-x-ame">pU</AUni> -</Form> -<IsAbstract val="True" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="afe5a916-fea3-4cfb-b302-569cee797603" ownerguid="8f0448a2-9846-4c09-8bf0-3fdebf292475"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="afe7cc92-e0ad-40d9-be56-aa12d2693a3f" ownerguid="14ad95ad-50fc-450f-b44d-4273df0b1e8b"> -<Abbreviation> -<AUni ws="en">8.4.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a day.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Day</AUni> -</Name> -<Questions> -<objsur guid="21f2e1fb-5bf3-4ec5-a0c6-6942dd4683e2" t="o" /> -<objsur guid="004de934-52e2-4bd4-8b83-28580cdaa467" t="o" /> -<objsur guid="ef11db14-6ffb-4c54-9f82-c2a431e85bf4" t="o" /> -<objsur guid="0d346aa7-f42b-405e-903d-d2a132f6f88d" t="o" /> -<objsur guid="25ecb154-9454-4f3f-ba75-a1f67295e56c" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="1088cc2f-83ae-4911-8018-401a745dcfd5" t="o" /> -<objsur guid="3a0dc521-f028-4c17-945c-b121e2d3dc0b" t="o" /> -<objsur guid="0cc62b4a-d5ff-4f45-83d1-e2b46e5d159a" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="afea2f35-94d7-4ab6-89d9-3b0bf54a9dec" ownerguid="87eb572c-bae2-45d8-a36a-919561b55d0d"> -<ExampleWords> -<AUni ws="en">crowd, group, congregation, bunch of people, horde, mass of people, gang, mob, multitude, host, crush of people, throng, clique, rabble, horde, army, scores, thousands, swarm, body of people, crew, knot, pack, batch, band, party, company, team</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a crowd?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="aff070ab-882f-43cd-8afe-551f238918d1" ownerguid="c4c3618f-59d9-4e04-8b1a-6445cd01ba73"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="aff40ce4-81bf-4814-8808-e9ae94cd0bf7" ownerguid="abdf2b3e-9fb0-43cf-98f4-fd674f8dd8ad"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fall</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bb3f0b2b-2b6e-4aec-812e-7368adf4fe8a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="aff720bd-fb3d-4f85-bbc4-41d5fc5b83f8" ownerguid="c4b110cf-d968-4bc6-ac0c-7e70cbad2756"> -<Abbreviation> -<AUni ws="en">4.2.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.211" /> -<DateModified val="2022-9-23 16:55:8.211" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to celebrating.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>51 Festivals</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Celebrate</AUni> -</Name> -<Questions> -<objsur guid="bda40d16-507b-4b25-85d7-d758b29152db" t="o" /> -<objsur guid="fdd958c7-025b-4421-94c5-6a2665e83690" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="affde07f-367a-40e0-ac90-2e2357aebe95" ownerguid="112c0dfc-77da-4998-9fcb-6ded490bfd26"> -<Form> -<AUni ws="qvm-x-ach">tamya</AUni> -<AUni ws="qvm-x-acl">tamya</AUni> -<AUni ws="qvm-x-akh">tamya</AUni> -<AUni ws="qvm-x-akl">tamya</AUni> -<AUni ws="qvm-x-ame">tamya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="affef7cc-724f-46f6-b017-4074d945eade" ownerguid="7b513a02-c3ae-4243-9410-16854d911258"> -<ExampleWords> -<AUni ws="en">name, identify</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to discovering or stating the name of someone whose name has not been known?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="afffb5bb-d332-4ad0-b30c-3ea9206a1815"> -<Form> -<Str> -<Run ws="en">REL1</Run> -</Str> -</Form> -</rt> -<rt class="MoStemMsa" guid="b005214a-3da2-4b59-9ad8-b4a7e7f5e6a7" ownerguid="bea55eef-1d76-4242-99be-668309cb5884"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="b005a4c0-e205-4d9a-b997-6a4067909c5a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cardón; cardon</AUni> -<AUni ws="qvm-x-acl">cardón; cardon</AUni> -<AUni ws="qvm-x-akh">cardón; cardon</AUni> -<AUni ws="qvm-x-akl">cardón; cardon</AUni> -<AUni ws="qvm-x-ame">cardón; cardon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cardo</AUni> -<AUni ws="qvm-x-acl">+cardo</AUni> -<AUni ws="qvm-x-akh">+cardo</AUni> -<AUni ws="qvm-x-akl">+cardo</AUni> -<AUni ws="qvm-x-ame">+cardo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.62" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="66e5bc59-7089-4194-b5c1-13f146be1480" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cardo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cabd9361-1a9f-4b0f-be2d-48d935479410" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="56f9350b-6aa7-41ba-9a98-67ebbe4bc6fd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cardo 
\entryTyp root 
\gENG thistle 
\gSPN cardón 
\e +cardón 
\c N0 
\mp +FinalC 
\ach cardón / _# 
\ach cardon / ~_# 
\akh cardón / _# 
\akh cardon / ~_# 
\acl cardón / _# 
\acl cardon / ~_# 
\akl cardón / _# 
\akl cardon / ~_# 
\ame cardón / _# 
\ame cardon / ~_# 
\i 2KI 14.9 Cardon cashami cachargan Líbanucho caycag cedruta caynog ninanpag: <Tsurëwan tänanpag warmi tsuriquita entregamay.></Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b0075ed5-c2d5-4dcf-bc00-2b2d8160e786" ownerguid="97f40359-f4e8-4545-9ba5-980b47487540"> -<ExampleWords> -<AUni ws="en">natural, wild, raw, virgin, untamed, organic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something not made by people?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b009c052-e6f2-4166-a257-69dab97ab896"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">hi:ju</AUni> -<AUni ws="qvm-x-acl">hi:ju; hi:ju; hi:jo</AUni> -<AUni ws="qvm-x-akh">hi:ju</AUni> -<AUni ws="qvm-x-akl">hi:ju; hi:ju; hi:jo</AUni> -<AUni ws="qvm-x-ame">hi:ju</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hijo</AUni> -<AUni ws="qvm-x-acl">+hijo</AUni> -<AUni ws="qvm-x-akh">+hijo</AUni> -<AUni ws="qvm-x-akl">+hijo</AUni> -<AUni ws="qvm-x-ame">+hijo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.710" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6c46a6df-b494-4e0b-830e-fabf4715ff09" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hijo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="03862302-d56d-4162-89b1-d3c5de98f6aa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="941cca94-2463-4e12-83a6-47d8266f5e5f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hijo 
\entryTyp root 
\gENG son 
\gSPN hijo 
\e +hijo 
\c N0 
\ach hi:ju 
\akh hi:ju 
\acl hi:ju / _# 
\acl hi:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl hi:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl hi:ju / _# 
\akl hi:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl hi:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hi:ju</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="b00a60a4-b64c-413b-813a-edec8d72d36f" ownerguid="a9a5d19c-f4cf-4fe3-a25c-4bc0803115a9"> -<Form> -<AUni ws="qvm-x-ach">jayta</AUni> -<AUni ws="qvm-x-acl">jayta</AUni> -<AUni ws="qvm-x-akh">jayta</AUni> -<AUni ws="qvm-x-akl">jayta</AUni> -<AUni ws="qvm-x-ame">hayta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b00d5f12-5e1e-498a-8b8d-b8cb5e4a185f" ownerguid="799fe404-5ef1-4781-b56a-ccf2ac640bfb"> -<Form> -<AUni ws="qvm-x-ach">pachca</AUni> -<AUni ws="qvm-x-acl">pachca</AUni> -<AUni ws="qvm-x-akh">pachka</AUni> -<AUni ws="qvm-x-akl">pachka</AUni> -<AUni ws="qvm-x-ame">pachka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b011cad0-7342-49cd-888c-201c1c231c5c" ownerguid="e2fe33f8-bee4-47a3-9e2b-d1c9487e4f7d"> -<Form> -<AUni ws="qvm-x-ach">tag</AUni> -<AUni ws="qvm-x-acl">tag</AUni> -<AUni ws="qvm-x-akh">taq</AUni> -<AUni ws="qvm-x-akl">taq</AUni> -<AUni ws="qvm-x-ame">taq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e1-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="8378f21c-cf54-437a-9d41-a303c764b326" t="r" /> -</PhoneEnv> -</rt> -<rt class="MoStemMsa" guid="b012ffc8-9c79-43c1-bfb1-36f3162a3578" ownerguid="c2c44f7a-4add-4907-addd-12cb05044695"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b013e5f8-c084-4b02-92f6-3bf42408600c" ownerguid="691bdba3-c216-4b42-877c-674bbdb517a7"> -<ExampleWords> -<AUni ws="en">untrustworthy, can't be trusted, not to be trusted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe someone who cannot be trusted?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b0149cac-2c69-4bb7-8e95-9851cc4aff57" ownerguid="5c468a85-e45f-4ea0-a3ba-68feda7e85a1"> -<ExampleWords> -<AUni ws="en">Caesarean section</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a doctor operating on a woman to deliver a baby?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="b0156a7c-928a-4cc8-a021-4af4dc74fead" ownerguid="06a44085-cbcf-4217-ae5e-56c51899c99a"> -<Abbreviation> -<AUni ws="en">8.3.5.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.619" /> -<DateModified val="2022-9-23 16:55:8.619" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is unusual.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>58H Unusual, Different From the Ordinary</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Unusual</AUni> -</Name> -<Questions> -<objsur guid="04c09613-3c25-417b-9030-506ccbb002f8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="b015c776-1aa4-4e2e-89be-365f61274eca" ownerguid="8d47c9ec-80c4-4309-9848-c453dcd71182"> -<ExampleWords> -<AUni ws="en">edible, inedible</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to whether a plant or animal can be eaten?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="b015f460-faeb-4aa5-b453-9e5e9ae061fe" ownerguid="615674ac-8158-4089-ae70-b55472fd279b"> -<Abbreviation> -<AUni ws="en">8.4.6.5.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.658" /> -<DateModified val="2022-9-23 16:55:8.658" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something old fashioned--something that was done or used in the past, but not done or used now.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Old fashioned</AUni> -</Name> -<Questions> -<objsur guid="b2ed6cc1-7cbc-4f88-9670-d9937c24f040" t="o" /> -<objsur guid="af93ad7a-6e68-4952-856b-d1cccbe6cda3" t="o" /> -<objsur guid="446a4f64-d5ca-4ea1-9e48-a256a95e1149" t="o" /> -<objsur guid="eb8bf74b-5d9f-4042-87ea-98728f4dfd45" t="o" /> -<objsur guid="7e871887-a918-499d-b0a3-8b66c8cecd63" t="o" /> -<objsur guid="e8f091e9-5291-4fc9-a4a9-5da4f012b309" t="o" /> -<objsur guid="3dbdc174-e189-4d50-a964-128cd5225259" t="o" /> -<objsur guid="61c9bea2-02e5-4e54-a28f-3abd85ea4199" t="o" /> -<objsur guid="3647b4a3-8274-4254-986d-badd8fac9c35" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="b0164278-ce6a-4d74-832f-91a1055a4089" ownerguid="32125c5f-d69a-442f-ba66-6277ec0a3b15"> -<ExampleWords> -<AUni ws="en">vegetarian</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person (or animal) who only eats plants?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b0167a77-f0d3-45e2-8967-942f0e6833dd" ownerguid="040ba998-a84d-4f88-8fc5-d1a52c18eec0"> -<Form> -<AUni ws="qvm-x-ach">padrón; padron</AUni> -<AUni ws="qvm-x-acl">padrón; padron</AUni> -<AUni ws="qvm-x-akh">padrón; padron</AUni> -<AUni ws="qvm-x-akl">padrón; padron</AUni> -<AUni ws="qvm-x-ame">padrón; padron</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b0187e26-1dd9-400d-a6d6-adc24d796cdc" ownerguid="77d1610f-4757-46de-b5f8-e127dc270dfd"> -<ExampleWords> -<AUni ws="en">plaid, tartan</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe a woven pattern?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="b0191a64-2c21-47fc-82f5-8a423777c0ba" ownerguid="895e74fd-2855-4235-9028-0e3c722a0fb9"> -<Form> -<AUni ws="qvm-x-ach">rpu</AUni> -<AUni ws="qvm-x-acl">rpu</AUni> -<AUni ws="qvm-x-akh">rpu</AUni> -<AUni ws="qvm-x-akl">rpu</AUni> -<AUni ws="qvm-x-ame">rpu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="b01ae659-98cd-44f9-8771-1696c490fcbf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mineral</AUni> -<AUni ws="qvm-x-acl">mineral</AUni> -<AUni ws="qvm-x-akh">mineral</AUni> -<AUni ws="qvm-x-akl">mineral</AUni> -<AUni ws="qvm-x-ame">mineral</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mineral</AUni> -<AUni ws="qvm-x-acl">+mineral</AUni> -<AUni ws="qvm-x-akh">+mineral</AUni> -<AUni ws="qvm-x-akl">+mineral</AUni> -<AUni ws="qvm-x-ame">+mineral</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.444" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="42b34fad-0e53-464a-9153-ba1d2f93c853" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mineral</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="977898e2-60f7-447e-940f-78a7eb14f1fc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9fe98f49-0f91-456c-9514-97e41bab62cc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mineral 
\entryTyp root 
\gENG 
\gSPN 
\e +mineral 
\c N0 
\mp +FinalC 
\ach mineral 
\akh mineral 
\acl mineral 
\akl mineral 
\ame mineral 
\i JOB 28.3 Saypitami tucuynirag mineralcunata acrarcur jorgamun.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="b01aefab-b2c4-48ef-9cc4-d1cddfcd4c2a" ownerguid="69e2e8d4-cbb2-4d74-b04f-0dd48994eae9"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b01dbef2-6016-4c3c-9e84-57eb5e0378f1" ownerguid="15947464-997a-4f44-9a4b-ac4916e7e19b"> -<ExampleWords> -<AUni ws="en">adornment, accessories, decoration</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What general words refer to things people put on themselves in addition to clothes?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b01dbfdb-14d6-4dfe-b0c1-3cc71a3c2c39" ownerguid="e4e05724-01ec-4c61-90f0-b8658cc8ca51"> -<ExampleWords> -<AUni ws="en">lens, eyepiece, optical instrument, prism, sight, gun sight, bomb sight, scope, viewer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to things people use to help them see better?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b0220f1b-891c-4db2-abd0-0865edfb345e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wagui</AUni> -<AUni ws="qvm-x-acl">wagui; wague</AUni> -<AUni ws="qvm-x-akh">waqi</AUni> -<AUni ws="qvm-x-akl">waqi; waqe</AUni> -<AUni ws="qvm-x-ame">waqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waqi</AUni> -<AUni ws="qvm-x-acl">*waqi</AUni> -<AUni ws="qvm-x-akh">*waqi</AUni> -<AUni ws="qvm-x-akl">*waqi</AUni> -<AUni ws="qvm-x-ame">*waqi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.495" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2e7bdcb4-b6af-4257-a5b3-3f31751345c5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waqi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6de9d5d3-f9e2-47d2-a14d-aeab3c4f392c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="acb20d68-aa2e-4280-be1b-a55da094db1c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waqi 
\entryTyp root 
\gENG hang 
\gSPN colgar 
\e *waqi 
\c V1 
\mp +FinalI 
\ach wagui 
\akh waqi 
\acl wagui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wague +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl waqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl waqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame waqi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="b022fa1f-2aa2-4ecb-ba5e-bde17ff37ffd" ownerguid="e6822331-6cb7-467a-8c58-32cfefc2f332"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b0234665-576d-46ec-b612-87e4e58d66c8" ownerguid="a3f1d702-8ca1-457a-a569-eb6fdf696bbe"> -<ExampleWords> -<AUni ws="en">disapproving, derogatory, pejorative</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe something said in a disapproving way?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b02451d6-6324-4320-a17d-fcc0d998fb6d" ownerguid="bba30b56-6cd8-4542-81ab-f983cf1354bd"> -<ExampleWords> -<AUni ws="en">go away, recede</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to moving away from someone or something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b026be60-cc4a-4f8b-8efd-9b8e85f76456" ownerguid="5f8a09d0-ca6d-4317-ae0a-7d7ae858808b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dance</AUni> -<AUni ws="es">danzar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d231519b-e4fd-4164-af42-46d9efaf9e1b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="b02a4a9c-cfca-4e01-8be5-5ccfbf32400b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lapla</AUni> -<AUni ws="qvm-x-acl">lapla</AUni> -<AUni ws="qvm-x-akh">lapla</AUni> -<AUni ws="qvm-x-akl">lapla</AUni> -<AUni ws="qvm-x-ame">lapla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llaplla</AUni> -<AUni ws="qvm-x-acl">*llaplla</AUni> -<AUni ws="qvm-x-akh">*llaplla</AUni> -<AUni ws="qvm-x-akl">*llaplla</AUni> -<AUni ws="qvm-x-ame">*llaplla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.144" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f0b972c3-0cee-4e3f-bf17-f3f28710c848" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llaplla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="768d1e59-9e73-4f75-8328-a092fb504575" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fe941e2c-c2f2-4903-9733-6821e92ed214" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llaplla 
\entryTyp root 
\gENG side.burn 
\gSPN patilla 
\e *llaplla 
\c N0 
\ach lapla 
\akh lapla 
\acl lapla 
\akl lapla 
\ame lapla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="b02ae2bf-8a43-494a-b4b5-f1be12829243" ownerguid="ced66b2b-f9c0-409f-b544-2509b384c45f"> -<Form> -<AUni ws="qvm-x-ach">ambiciösu</AUni> -<AUni ws="qvm-x-acl">ambiciösu; ambiciösu; ambiciöso</AUni> -<AUni ws="qvm-x-akh">ambiciösu</AUni> -<AUni ws="qvm-x-akl">ambiciösu; ambiciösu; ambiciöso</AUni> -<AUni ws="qvm-x-ame">ambiciösu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b02c3472-ad16-42ae-93e7-e30a5d70a6f3" ownerguid="af8b0d9b-2175-4995-a70d-c58ea78c9b27"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">return</AUni> -<AUni ws="es">volver</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="35967ee3-872d-4b56-ae00-e643fda7e9f3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="b02e1181-dc50-49fa-b8bd-764751a94f13" ownerguid="76dce78c-855d-41e5-9867-8fdccae9465f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cough</AUni> -<AUni ws="es">tozar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1ee8013e-c0a4-4310-bd9c-4e70f252b061" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="b02fa781-bbbd-4f59-9915-db6b19de3a20" ownerguid="b5179c37-f18c-473d-bf8d-b96f23503f3c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="b030d483-fee1-4e48-9f90-8096165b7c1f" ownerguid="61d085e6-2092-4d86-88b4-45f4e4579a4d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b03260e1-1fa6-4ac6-861b-f58bc53ec8ba" ownerguid="deff977c-a664-4456-9d44-a5127dd2a7d1"> -<ExampleWords> -<AUni ws="en">wander, meander, ramble, roam, prowl, walk around</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to wandering?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="b035dcf9-1dd0-4fb3-bd04-7c8945e92cdf" ownerguid="d9f336cf-0682-4702-ab94-5ade755ddc64"> -<Abbreviation> -<AUni ws="en">7.3.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.528" /> -<DateModified val="2022-9-23 16:55:8.528" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to putting something in back of you or in back of something else.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Put in back</AUni> -</Name> -<Questions> -<objsur guid="7d5ca6f9-071f-4f6d-af50-716440682926" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="b036a6eb-ec6a-4cf4-bcf1-0e8b9e676178" ownerguid="73499b8b-76fc-4121-8bfa-1bdebe537259"> -<ExampleWords> -<AUni ws="en">edible, non-edible, clean, unclean, kosher</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to whether or not an animal can be eaten?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b03a1b23-a435-41b3-8d41-2ed1244f59f1" ownerguid="28a37d39-8347-4254-99bf-8e3c37dbf8a8"> -<ExampleWords> -<AUni ws="en">Set upright, set up, stand</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to setting something upright?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b03a6eb8-b916-4c9d-a0e2-15bc77dca511"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wiya</AUni> -<AUni ws="qvm-x-acl">wiya</AUni> -<AUni ws="qvm-x-akh">wiya</AUni> -<AUni ws="qvm-x-akl">wiya</AUni> -<AUni ws="qvm-x-ame">wiya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wiya.n</AUni> -<AUni ws="qvm-x-acl">*wiya.n</AUni> -<AUni ws="qvm-x-akh">*wiya.n</AUni> -<AUni ws="qvm-x-akl">*wiya.n</AUni> -<AUni ws="qvm-x-ame">*wiya.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.709" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e6aa6017-8436-4543-8f58-aaf2a4cce424" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wiya.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="08dbd80b-e123-4f6a-8c65-0820150cb68e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="06dad083-e288-48d6-98b6-06ebcd778184" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wiya.n 
\entryTyp root 
\gENG 
\gSPN 
\e *wiya.n 
\c N0 
\ach wiya 
\akh wiya 
\acl wiya 
\akl wiya 
\ame wiya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b03e029e-eac6-42d1-b240-7ce052330291" ownerguid="42133f78-9860-4bb7-8083-5559083f0714"> -<ExampleWords> -<AUni ws="en">cockfight, horse race</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What other kinds of events do people typically bet on?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="b044e890-ce30-455c-aede-7e9d5569396e" ownerguid="dc1a2c6f-1b32-4631-8823-36dacc8cb7bb"> -<Abbreviation> -<AUni ws="en">1.1.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.916" /> -<DateModified val="2022-9-23 16:55:7.916" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the stars and other heavenly bodies.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Star</AUni> -</Name> -<Questions> -<objsur guid="06828be2-cab0-4aa2-bcdc-7345eeb5162d" t="o" /> -<objsur guid="a3897851-d722-47f5-ab83-9f01b81e9b05" t="o" /> -<objsur guid="6309600f-a0b9-494a-8240-05cc7c3052e2" t="o" /> -<objsur guid="74a1648b-f379-4079-a67f-cfcf1b0211a6" t="o" /> -<objsur guid="d943a72b-f8c4-4de4-bdd7-dab105a7cff3" t="o" /> -<objsur guid="e9f327bb-dc68-45ae-8fcc-8306da36e5e5" t="o" /> -<objsur guid="c6c595e7-384a-4be4-a4ca-166322ca0a39" t="o" /> -<objsur guid="2e11f9cd-da1e-4588-ac82-ad7b78001fca" t="o" /> -<objsur guid="f3feb5b2-2813-4c0b-94c8-ad0f5219e058" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="69d366d2-9735-4a1b-b938-7b212932b568" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="b04857c0-cbad-4756-89fb-33c4e5805c93" ownerguid="0add0775-0ed0-46be-ba4a-76310e63a036"> -<ExampleWords> -<AUni ws="en">lean, angle, tilt, slant, incline</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to causing something to lean?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b04f605c-b014-4a98-97e2-1286421ace73" ownerguid="b7801f6e-683b-4d5d-9bab-57f6e593db8c"> -<ExampleWords> -<AUni ws="en">list, checklist, inventory, catalog</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a list of things?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b04f9e58-c070-4a07-bf21-d497df47abc5" ownerguid="e15322ea-b7fc-4b8e-8147-fe9c3313caba"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">take.snack</AUni> -<AUni ws="es">llevar.fiambre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="19c53a65-3ef2-4bdb-b453-18ca5acc888a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b05120f8-6f25-4458-8192-408b047a04f2" ownerguid="f883266a-146a-41c7-b1db-85120840c3a8"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en"><It is impossible for> a person to fly.; <It is not possible for> a person to fly.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">impossible, not possible, impracticable, there's no way, out of the question, hopeless, impractical</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something cannot be done?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b0519186-6a3b-4a56-9667-5c2c106ae471" ownerguid="7495b59c-dcdc-4b45-80fb-049428e04995"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="b05348e1-d90c-4a2b-a2dc-2a69ad99e2fc" ownerguid="d56a5d54-9e54-49a6-9473-da133f47c02a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Tsurëpis geshpipacushganami.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="b05373d4-77d9-49e4-91da-ace22b3cdaec" ownerguid="1c00eec6-a852-48f6-aea6-f3b0d73f95b3"> -<Form> -<AUni ws="qvm-x-ach">estäñu</AUni> -<AUni ws="qvm-x-acl">estäñu; estäñu; estäño</AUni> -<AUni ws="qvm-x-akh">estäñu</AUni> -<AUni ws="qvm-x-akl">estäñu; estäñu; estäño</AUni> -<AUni ws="qvm-x-ame">estäñu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b05418f3-bc4c-49f9-9452-b4ea2c329f14" ownerguid="cf337287-c9fa-43d2-93c4-284f45e262c0"> -<ExampleWords> -<AUni ws="en">eye disease, glaucoma, red eyes, pinkeye, cataract, conjunctivitis, sty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to a disease of the eyes?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b0546721-ff38-416a-8a42-36f6d6fe7313"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">auri</AUni> -<AUni ws="qvm-x-acl">auri; auri; aure</AUni> -<AUni ws="qvm-x-akh">awri</AUni> -<AUni ws="qvm-x-akl">awri; awri; awre</AUni> -<AUni ws="qvm-x-ame">awri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*awri.n</AUni> -<AUni ws="qvm-x-acl">*awri.n</AUni> -<AUni ws="qvm-x-akh">*awri.n</AUni> -<AUni ws="qvm-x-akl">*awri.n</AUni> -<AUni ws="qvm-x-ame">*awri.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.890" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="05556bf5-bff6-4960-a8c6-29b818ac3609" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*awri.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ab7be64b-8113-400a-88ba-464387c07995" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="649d8f70-1441-4511-a54c-e7116ba8a7e8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *awri.n 
\entryTyp root 
\gENG tangle 
\gSPN enredarse 
\e *awri.n 
\c N0 
\mp +FinalI 
\ach auri 
\akh awri 
\acl auri / _# 
\acl auri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl aure +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl awri / _# 
\akl awri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl awre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame awri</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="b0557124-8d2c-47f0-a658-84d2830d0a30" ownerguid="097c4430-fda8-4a6d-8886-df2ded026dc6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b0566320-6bf4-49f6-9d78-e30065d998e8" ownerguid="aa0f165d-3013-4a0c-b68c-14ea317013f9"> -<ExampleWords> -<AUni ws="en">composition, arrangement, score</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a piece of music that a person has composed?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b05c9787-94bb-484c-a7d4-156777a66134" ownerguid="90e8d874-2c41-475c-94dd-e1ae6c78812a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="b061694b-7355-4be1-b92a-9849d752991b" ownerguid="0ea925c8-864b-470d-9a96-ccc0547a713b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">four</AUni> -<AUni ws="es">cuatro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="54d1c377-581b-4232-8de5-ea802a69d134" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="Segment" guid="b0642e10-839f-433c-9e28-b2947243bf9c" ownerguid="900821cc-f020-4529-a7a6-d5faa0f2ae3a"> -<Analyses> -<objsur guid="83a9259a-9765-4525-bafd-61b618e7f470" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="b06452cf-85b8-4e4c-aa9d-a6917ab64149" ownerguid="bfb1dfa0-ba12-4f41-a1b8-3d99e5b634c5"> -<Form> -<AUni ws="qvm-x-ach">gashya; gashyä</AUni> -<AUni ws="qvm-x-acl">gashya; gashyä</AUni> -<AUni ws="qvm-x-akh">qashya; qashyä</AUni> -<AUni ws="qvm-x-akl">qashya; qashyä</AUni> -<AUni ws="qvm-x-ame">qashya; qashyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="b066ab6c-3bde-42c0-94c4-15af18e5285e" ownerguid="14b9d6bc-7b49-49ec-b694-87f5c05a08ea"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="b06da719-78bd-4bc2-9d9b-356e57b5d3ac"> -<Analyses> -<objsur guid="f786786c-783e-4736-ae68-ed1a8dfd8a53" t="o" /> -</Analyses> -<Checksum val="-1416233255" /> -<Form> -<AUni ws="qvm-x-akh">yarquramun</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="b0700871-4f2c-416e-95c9-fe68b75c2d51" ownerguid="0aae0254-dc06-4906-8ecf-2d8450fb83f1"> -<ExampleWords> -<AUni ws="en">get up, get out of bed, sit up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to getting up from lying down?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b0705ec2-c147-4d1e-87b0-043f1db4be9d" ownerguid="99861dcb-c6ca-4e50-a19a-efadbb10c2cf"> -<ExampleWords> -<AUni ws="en">primeval, antediluvian, medieval, primordial</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is old and belongs to an early period of history?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b0727d7d-ae66-4c13-9e48-4c295b0b19ac" ownerguid="8f4c9266-a025-4b7a-bd67-fe0c043bf6f5"> -<ExampleWords> -<AUni ws="en">exactly, strictly, religiously, to the letter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words indicate that something is done in exactly the right way?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b0758bc9-74c3-4d12-a09b-6c4d2e6d7e1b" ownerguid="4fb34e46-4d89-43b1-972b-4522f4e5a0d5"> -<Form> -<AUni ws="qvm-x-ach">diacunïsa</AUni> -<AUni ws="qvm-x-acl">diacunïsa</AUni> -<AUni ws="qvm-x-akh">diacunïsa</AUni> -<AUni ws="qvm-x-akl">diacunïsa</AUni> -<AUni ws="qvm-x-ame">diacunïsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="b0768543-3cca-47ee-ad8a-970207d9cb4b" ownerguid="c51acfd9-59db-4631-afa9-078ed0ec1c99"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b07c8d46-e1a8-4958-8863-bd403640cc23" ownerguid="efef45bd-26be-46f8-b85b-424be55bcdac"> -<ExampleWords> -<AUni ws="en">new, newness, newly, modern, state-of-the-art, untrodden, up-to-date</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is new?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b07ce49b-13b7-4af7-99fc-2f407077da0e" ownerguid="dc71598d-21a2-4598-9c12-13978796d2c9"> -<ExampleWords> -<AUni ws="en">sweep, mop, scrub, wax, rake</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to cleaning the floor or ground?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b07fc6e4-2556-4a6c-8c9e-10ce1736e6a7" ownerguid="1fe7b7e5-f809-4e90-99a6-9f1991e96972"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V2</Run> -</AStr> -</Custom> -<Definition> -<AStr ws="en"> -<Run ws="en">cause to help</Run> -</AStr> -<AStr ws="es"> -<Run ws="es">causar ayudar</Run> -</AStr> -</Definition> -<Examples> -<objsur guid="a7f412a6-b3c0-494e-a50c-ff519ff335ac" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">CAUSHELP</AUni> -<AUni ws="es">CAUSAYU</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="292ae651-f5de-4294-ac06-25acfe912125" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="b080162c-9578-4fdc-bd39-d5f25cb3c473"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa:ñi</AUni> -<AUni ws="qvm-x-acl">pa:ñi</AUni> -<AUni ws="qvm-x-akh">pa:ñi</AUni> -<AUni ws="qvm-x-akl">pa:ñi</AUni> -<AUni ws="qvm-x-ame">pa:ñi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pa:ñi</AUni> -<AUni ws="qvm-x-acl">*pa:ñi</AUni> -<AUni ws="qvm-x-akh">*pa:ñi</AUni> -<AUni ws="qvm-x-akl">*pa:ñi</AUni> -<AUni ws="qvm-x-ame">*pa:ñi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.689" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b0e789fd-99b0-4001-a651-ea7ee233adbf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pa:ñi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ec514334-4500-4375-8c2b-5f77b5185c56" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d21d7be5-1473-423f-b3e6-b09e84ad2deb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pa:ñi 
\entryTyp root 
\gENG come.on 
\gSPN ? 
\e *pa:ñi 
\c NOSUFF 
\mp +FinalI 
\ach pa:ñi 
\akh pa:ñi 
\acl pa:ñi 
\akl pa:ñi 
\ame pa:ñi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="b08424b7-a2f1-4a0e-82d1-665249e12cfc" ownerguid="20e7d987-0d55-46d4-ab69-0b0cce2f1e24"> -<Abbreviation> -<AUni ws="en">7.2.3.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to arriving at a place.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15F Come, Come To, Arrive</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Arrive</AUni> -</Name> -<Questions> -<objsur guid="0d0ed352-57b3-4add-8c8a-b01036370e76" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="b08553f1-d05b-41c2-b707-c611c96118c3" ownerguid="a748588b-1138-4ea5-a007-18ea918f65c7"> -<Form> -<AUni ws="qvm-x-ach">naupa; naupä</AUni> -<AUni ws="qvm-x-acl">naupa; naupä</AUni> -<AUni ws="qvm-x-akh">nawpa; nawpä</AUni> -<AUni ws="qvm-x-akl">nawpa; nawpä</AUni> -<AUni ws="qvm-x-ame">nawpa; nawpä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b08565a4-5bb2-4cdf-badf-2beffa5a32e5" ownerguid="4d61f524-7213-4c2c-8c14-f8eff3aed813"> -<ExampleWords> -<AUni ws="en">get tight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something becoming tight?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="b0872004-3c49-4756-bfae-94f994daf224"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">kaykä</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="b089f0be-e6a0-44f5-aa1f-7d9744e63641"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aylu</AUni> -<AUni ws="qvm-x-acl">aylu; aylo</AUni> -<AUni ws="qvm-x-akh">aylu</AUni> -<AUni ws="qvm-x-akl">aylu; aylo</AUni> -<AUni ws="qvm-x-ame">aylu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ayllu.v</AUni> -<AUni ws="qvm-x-acl">*ayllu.v</AUni> -<AUni ws="qvm-x-akh">*ayllu.v</AUni> -<AUni ws="qvm-x-akl">*ayllu.v</AUni> -<AUni ws="qvm-x-ame">*ayllu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.900" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="04e8a172-20df-4cc2-bf5b-1f4a0dd65720" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ayllu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c2c5b8ff-7941-4a51-9856-8399beac19a3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b11ebc6c-c26a-4eb0-b51a-c4306add2042" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ayllu.v 
\entryTyp root 
\gENG to.clothe 
\gSPN aropar 
\e *ayllu.v 
\c V2 
\ach aylu 
\akh aylu 
\acl aylu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl aylo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl aylu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl aylo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame aylu 
\mcc *ayllu.v / ~_ 3</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="b08ae47a-1125-4f6f-8a6f-37b5c96397da"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mantsa</AUni> -<AUni ws="qvm-x-acl">mantsa</AUni> -<AUni ws="qvm-x-akh">mantsa</AUni> -<AUni ws="qvm-x-akl">mantsa</AUni> -<AUni ws="qvm-x-ame">mantsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mancha.v</AUni> -<AUni ws="qvm-x-acl">*mancha.v</AUni> -<AUni ws="qvm-x-akh">*mancha.v</AUni> -<AUni ws="qvm-x-akl">*mancha.v</AUni> -<AUni ws="qvm-x-ame">*mancha.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.305" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d5918545-7c5b-4e3b-9a2f-8a06fa5a1536" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mancha.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="368e989e-c76b-4285-992c-e5fadbe0866d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="204d2162-913a-4c72-855a-6c4405674fee" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mancha.v 
\entryTyp root 
\gENG fear 
\gSPN temer 
\e *mancha.v 
\c V2 
\ach mantsa 
\akh mantsa 
\acl mantsa 
\akl mantsa 
\ame mantsa 
\mcc *mancha.v / ~_ [pnct1-2] 
\mcc *mancha.v / ~_ PNCT3 
\mcc *mancha.v / ~_ ADV2</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="b08b8ce6-bbf1-40e2-ab98-df488856f760" ownerguid="ebbb956c-b015-40c0-9656-e4c077c4f8e6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="b0905fa9-2f90-410b-8eb5-7c7944c4f0f9" ownerguid="c753fc8b-22ae-4e71-807f-56fb3ebd3cdd"> -<Abbreviation> -<AUni ws="en">2.6.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.63" /> -<DateModified val="2022-9-23 16:55:8.63" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to illicit sexual relations.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88J' Sexual Misbehavior</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Sexual immorality</AUni> -</Name> -<OcmCodes> -<Uni>684 Sex and Marital Offenses; 834 General Sex Restrictions; 835 Kinship Regulation of Sex; 836 Premarital Sex Relations; 837 Extramarital Sex Relations; 838 Homosexuality; 839 Miscellaneous Sex Behavior</Uni> -</OcmCodes> -<Questions> -<objsur guid="727a8f65-471c-46ac-bdf8-11d1ae821361" t="o" /> -<objsur guid="c749fde6-3435-4f85-96d1-be60e8de85a8" t="o" /> -<objsur guid="1bde266b-3a91-41a8-bd18-5c714ff30316" t="o" /> -<objsur guid="27eba62a-9019-455a-aa63-fe963de1f559" t="o" /> -<objsur guid="e79fd027-dcdf-4c12-8cbb-2fcc32dfe610" t="o" /> -<objsur guid="78ba2f2e-6cbb-452c-ba42-acab0750a15b" t="o" /> -<objsur guid="95758154-6cea-46b1-a029-e10072403447" t="o" /> -<objsur guid="d425fff6-9ef3-4e55-9dc4-591b47aabb80" t="o" /> -<objsur guid="fbdbc655-b4ca-4040-b94c-41e7cdefe749" t="o" /> -<objsur guid="9fbadfdf-fc62-43e0-b645-1e2499269f3b" t="o" /> -<objsur guid="a5320b42-b8da-49c9-bd6d-1dfca0f81db7" t="o" /> -<objsur guid="5b4d0173-f090-446c-8070-ba62ef38959d" t="o" /> -<objsur guid="552c59e0-7e36-45a5-9857-0aa86aa165a8" t="o" /> -<objsur guid="b52063c3-2204-4d33-aaac-78a15ac6b3bb" t="o" /> -<objsur guid="b80e241b-a177-4e2d-b12f-03c9df05c63e" t="o" /> -<objsur guid="9a8b98ee-4254-41f0-bc27-a0d603639c5c" t="o" /> -<objsur guid="121227f9-722b-4106-ab93-8aed34221f7a" t="o" /> -<objsur guid="f5ac53b6-66fa-4008-905b-1402d78656bc" t="o" /> -<objsur guid="e7acde6f-c742-4589-a849-d034eeb5c32f" t="o" /> -<objsur guid="8228cbc7-8a1b-4fe2-a2ab-88f6c7d36fe0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="b0918e47-a08a-456c-982c-1abd8c45d842" ownerguid="ac550d1f-ec74-46a8-bf81-7832ace533ee"> -<ExampleWords> -<AUni ws="en">popularity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to how popular something is?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="b09205d4-fbb4-4bcd-94ef-f8d83e298462" ownerguid="50ab3705-a81e-4fcc-b3ae-95c075966f69"> -<Abbreviation> -<AUni ws="en">1.3.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.963" /> -<DateModified val="2022-9-23 16:55:7.963" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing the surface of water.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Calm, rough</AUni> -</Name> -<Questions> -<objsur guid="5dd968a0-4fc2-4fc2-844e-5f2877f21de4" t="o" /> -<objsur guid="efb8c649-9398-4fe0-b844-75eba333699c" t="o" /> -<objsur guid="ce66e128-5234-4055-9922-dd4f35be26c6" t="o" /> -<objsur guid="d7bef3bc-af80-40d3-8e75-d6c394875772" t="o" /> -<objsur guid="86492965-405c-435c-9022-e94dadfbc002" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="b0923815-0bd9-4f54-b61f-62f6fc6bc490" ownerguid="4d2a67fb-91c8-4436-87f4-f4eab6cb0828"> -<ExampleWords> -<AUni ws="en">leper</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a person with a skin disease?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b093ef57-bd1b-42e6-a7d3-88f4dd08d62a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pi</AUni> -<AUni ws="qvm-x-acl">pi; pi; pe</AUni> -<AUni ws="qvm-x-akh">pi</AUni> -<AUni ws="qvm-x-akl">pi; pi; pe</AUni> -<AUni ws="qvm-x-ame">pi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pi.nl</AUni> -<AUni ws="qvm-x-acl">*pi.nl</AUni> -<AUni ws="qvm-x-akh">*pi.nl</AUni> -<AUni ws="qvm-x-akl">*pi.nl</AUni> -<AUni ws="qvm-x-ame">*pi.nl</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.871" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8640f3e8-cdbd-4fe2-ac32-70eda921e21a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pi.nl</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5e23d2c2-7929-4bf9-b3ee-c72694efb96f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="41c89b73-39aa-4008-9329-a04489590b23" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pi.nl 
\entryTyp root 
\gENG anyone 
\gSPN alguien 
\e *pi.nl 
\c N0 
\mp +FinalI 
\ach pi 
\akh pi 
\acl pi / _# 
\acl pi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pi / _# 
\akl pi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pi 
\mcc *pi.nl / _(NOW) [yet] / _(NOW) [ques] / _ (JUST.V) EVEN1 / _ (JUST.V) EVEN2 / _ JUST.V TOP / _ (JUST.V) [yet] / _ (JUST.V) OBJ / _ (JUST.V) GEN / _GOAL / _ INST / _ [pur]/ _ ABL / _ INST 
\mcc *pi.nl / ~_# 
\mcc *pi.nl / ~_ SIM1 
\mcc *pi.nl / ~_ [poss] 
\mcc *pi.nl / ~_ LOC 
\mcc *pi.nl / ~_ CAUSBE 
\mcc *pi.nl / ~_ CHA: 
\mcc *pi.nl / ~_ CONJ 
\mcc *pi.nl / ~_ PRET4 
\mcc *pi.nl / ~_ JUST.V PRET4 1O 3 
\mcc *pi.nl / ~_ PLUR 
\mcc *pi.nl / ~_ PRT2 
\mcc *pi.nl / ~_ OBJ NEG</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="b099a856-de2d-4536-abe6-1fc469d8b0a4" ownerguid="a1cb1357-3a51-4f83-8a08-4c322cd134aa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pretty</AUni> -<AUni ws="es">lindo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="63e6d351-47f9-4896-8ea0-8618ee2451c4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b099e292-79ba-4190-a6a9-43db58e349d1" ownerguid="6045c6eb-efea-4586-95f8-840d32578d66"> -<ExampleWords> -<AUni ws="en">arrangement, alignment, array, formation, order, ordering, pattern, row, disposition, distribution, gradation, grouping, layout, concatenation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the pattern in which things are arranged?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b09c222a-28a2-4748-bbe2-9e6e35812817"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">revela</AUni> -<AUni ws="qvm-x-acl">revela</AUni> -<AUni ws="qvm-x-akh">revela</AUni> -<AUni ws="qvm-x-akl">revela</AUni> -<AUni ws="qvm-x-ame">revela</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+revelar</AUni> -<AUni ws="qvm-x-acl">+revelar</AUni> -<AUni ws="qvm-x-akh">+revelar</AUni> -<AUni ws="qvm-x-akl">+revelar</AUni> -<AUni ws="qvm-x-ame">+revelar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.348" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1f6f0cfa-15a2-40af-b1c4-d9823c1faa62" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+revelar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="07f17c0d-5b82-455c-a304-d3b1053aea84" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aec87436-1486-4eba-9202-c81619e2eaec" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +revelar 
\entryTyp root 
\gENG reveal 
\gSPN revelar 
\e +revelar 
\c V2 
\ach revela 
\akh revela 
\acl revela 
\akl revela 
\ame revela</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b09d56fb-12ff-4102-9739-f37b1faeda12" ownerguid="0656f6a7-9a88-4c03-a8ab-ace8c0f52ebf"> -<ExampleWords> -<AUni ws="en">illegitimate child, bastard</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a child who is born to an unmarried woman?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b09fb115-da7b-492d-89f6-d6d3cf23e981" ownerguid="e61dd088-2f71-4c91-83eb-c4d110170511"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="b0a0b9f0-8b7d-456a-8eac-5bf835934d4f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bu:da</AUni> -<AUni ws="qvm-x-acl">bu:da</AUni> -<AUni ws="qvm-x-akh">bu:da</AUni> -<AUni ws="qvm-x-akl">bu:da</AUni> -<AUni ws="qvm-x-ame">bu:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+buda</AUni> -<AUni ws="qvm-x-acl">+buda</AUni> -<AUni ws="qvm-x-akh">+buda</AUni> -<AUni ws="qvm-x-akl">+buda</AUni> -<AUni ws="qvm-x-ame">+buda</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.991" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b9b5188e-7a8f-4256-bf1d-7a5276ddaee6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+buda</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="23e98c4c-7dde-4e40-b6e1-4691eb71d535" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e9d6b91b-de0f-4134-9682-da9c1df64b00" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +buda 
\entryTyp root 
\gENG 
\gSPN 
\e +buda 
\c N0 
\ach bu:da 
\akh bu:da 
\acl bu:da 
\akl bu:da 
\ame bu:da 
\i EZK 8.17 Intita adorashganga büdanogragmi asyaycun.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="b0a66c9c-f223-4531-9940-2059a9e4fccf" ownerguid="46a35455-4f89-454c-bd66-75683efd6049"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.asleep</AUni> -<AUni ws="es">entumirse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="abbbc2b7-c0b6-4de1-a422-429ed63a9a76" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b0a69178-376c-48b3-9f02-c48608afed0f" ownerguid="bba30b56-6cd8-4542-81ab-f983cf1354bd"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">It is far from here to there, about a day's journey.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">far, far away, far off, afar, far afield, far and wide, a far cry from, far apart, far removed, distant, be distant, a long distance, in the distance, some distance, a good distance, a ways, way off, a long way (off), a long ways away, a fair way, quite a ways, nowhere near, miles (away), yonder, wide of, clear off, all over, asunder, at arm's length, on the horizon, the ends of the earth, uttermost parts of the earth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is far from something else?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b0a74692-fe6d-48ec-aa9d-949afe375bbb" ownerguid="286ee16c-a218-43d5-bbac-ab15f80c3fcf"> -<ExampleWords> -<AUni ws="en">not enough, insufficient, too little, too few, scarce, inadequate, inadequacy, shortage, lack of, be in short supply, be short</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to not having enough?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="b0a9a631-e0dc-47d4-a762-e9a627732218" ownerguid="aad7c9b0-aff3-4684-86d5-657a20e39288"> -<Abbreviation> -<AUni ws="en">4.5.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.253" /> -<DateModified val="2022-9-23 16:55:8.253" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to submitting to authority.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>39D Yielding; 33U Profess Allegiance</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Submit to authority</AUni> -</Name> -<Questions> -<objsur guid="4a8d132c-9da6-4f19-8d82-535290aca114" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b632b00b-b03f-4549-8e02-6402c05a4f06" t="o" /> -<objsur guid="28ba8f5c-5baa-4500-a6f5-be292caa673f" t="o" /> -<objsur guid="430ce279-1464-4d55-8483-5525a3c3094d" t="o" /> -<objsur guid="e1ac83c2-352f-4a2e-9612-99e66d6d3d0c" t="o" /> -<objsur guid="896d57d4-4c25-4f0b-9985-a30974f64704" t="o" /> -<objsur guid="c60cf6a1-7868-4536-ac73-387bfa26e04b" t="o" /> -<objsur guid="e9947962-a243-4a44-a94d-64d68718d88c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="b0aad3e0-4a33-4a77-999f-080559a47793" ownerguid="5b1f9d8e-5ac6-4c09-887c-03e11aa2e070"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ten</AUni> -<AUni ws="es">diez</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9eaa5e3f-c40a-4e8f-a63f-de486cf9ad17" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b0aba2a6-9bb1-44de-92f0-bb20ce8befe4" ownerguid="ed7930df-e7b4-43c9-a11a-b09521276b57"> -<ExampleWords> -<AUni ws="en">smell (n), odor, stench, stink, reek, halitosis</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to a bad smell?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="b0abe9ca-e4c2-4027-9f55-1e2379750593" ownerguid="829086bb-82c7-4342-87aa-2bc3308b84da"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="b0acbc85-beac-4e37-9506-5141f34c6d79" ownerguid="82d7a7cb-e372-4c4e-aa11-cb2cdbe24bfe"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="b0acbed4-b979-4f33-8893-e4e67a732a7f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jawa</AUni> -<AUni ws="qvm-x-acl">jawa</AUni> -<AUni ws="qvm-x-akh">jawa</AUni> -<AUni ws="qvm-x-akl">jawa</AUni> -<AUni ws="qvm-x-ame">hawa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hawa</AUni> -<AUni ws="qvm-x-acl">*hawa</AUni> -<AUni ws="qvm-x-akh">*hawa</AUni> -<AUni ws="qvm-x-akl">*hawa</AUni> -<AUni ws="qvm-x-ame">*hawa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.690" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6b060b4c-43f5-47ff-a32b-2b2f4ed31cea" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hawa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a8c59c70-4b0e-4b1f-a7e0-b144ecc2698c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4b6999a0-f9fb-48c6-a814-3f793ece1269" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hawa 
\entryTyp root 
\gENG outside 
\gSPN afuera 
\e *hawa 
\c N0 
\ach jawa 
\akh jawa 
\acl jawa 
\akl jawa 
\ame hawa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="b0adc784-6b3a-4596-aec4-10379a331c18"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">carame:lu</AUni> -<AUni ws="qvm-x-acl">carame:lu; carame:lu; carame:lo</AUni> -<AUni ws="qvm-x-akh">carame:lu</AUni> -<AUni ws="qvm-x-akl">carame:lu; carame:lu; carame:lo</AUni> -<AUni ws="qvm-x-ame">carame:lu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+caramelo</AUni> -<AUni ws="qvm-x-acl">+caramelo</AUni> -<AUni ws="qvm-x-akh">+caramelo</AUni> -<AUni ws="qvm-x-akl">+caramelo</AUni> -<AUni ws="qvm-x-ame">+caramelo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.600" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4b1260af-731b-4500-be26-439714e8a465" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+caramelo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0e374ae1-8ef2-4a3f-b350-dcb59bb30cc1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9debf42f-7511-4123-b9c5-c4b0c90b0aa4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +caramelo 
\entryTyp root 
\gENG candy 
\gSPN caramelos 
\e +caramelo 
\c N0 
\ach carame:lu 
\akh carame:lu 
\acl carame:lu / _# 
\acl carame:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl carame:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl carame:lu / _# 
\akl carame:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl carame:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame carame:lu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="b0b161b2-e773-4b04-99eb-23778fd2aa80" ownerguid="e5f9c9cf-0b0c-47aa-b7df-8c37f211cd00"> -<Abbreviation> -<AUni ws="en">7.8.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.557" /> -<DateModified val="2022-9-23 16:55:8.557" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to tearing or ripping something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>19C Split, Tear</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Tear, rip</AUni> -</Name> -<Questions> -<objsur guid="e363d890-bfc3-45db-a3ad-8458f2df7ca1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="StTxtPara" guid="b0b46a35-65fa-4b8d-9da6-7e95179ac2de" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">mikuman</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="dfdce1cf-74e9-4e2e-9a59-93198ec6195e" t="o" /> -</Segments> -</rt> -<rt class="WfiWordform" guid="b0b51c6f-5cf7-4f38-ac58-09d0418bb0f5"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">intransitive</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="b0b80351-a3b7-4fe4-9900-5d36dcff894b" ownerguid="42587f2a-0511-4221-ac81-290368b8375a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="8454b900-cbc0-48f2-854f-23e831401c47" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">crush</AUni> -<AUni ws="es">amollar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b6396f29-e2ba-4da9-ad75-5bbe21872785" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b0b8f039-dd1f-4097-9896-f03ea11c8f2c" ownerguid="5c770098-2c91-4a9c-bfa0-a7ffaa871a7f"> -<ExampleWords> -<AUni ws="en">get the sack, get the ax, lose your job, be laid off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to being fired from a job?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b0bc5e57-8967-4f26-ae0e-b80be845262b" ownerguid="a987fb7e-c326-4431-ac4c-5f01ccfc3767"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">verse</AUni> -<AUni ws="es">texto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ef9556ea-6211-4c47-8fe6-45315845cbcd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="b0c00599-7757-44ad-9ba2-27a56486fb67" ownerguid="cdda7311-c2da-4dce-a68e-2031365bb40f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">free</AUni> -<AUni ws="es">gratis</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="81ed1053-ae6b-4640-b731-4da8fa11ad65" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b0c00e92-defc-4b18-b7ea-8b7870e556e6" ownerguid="ea990893-7941-4ab7-8090-acbaf1b1cf97"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="b0c04ec9-cc27-4ac1-863a-b45e41c56f2f" ownerguid="17d50454-fe0c-4552-95cc-f4841295f8ec"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="b0c13760-9cae-4afe-8c85-8843ff1231ff" ownerguid="897460e7-bd16-4bbc-bfe3-db1d757017e2"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="b0c272a8-9fe3-4647-a887-00c4f757f820" ownerguid="82d7a7cb-e372-4c4e-aa11-cb2cdbe24bfe"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="LexEntry" guid="b0c2c50a-effb-45cd-9732-861e34c3ec7f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">curpa</AUni> -<AUni ws="qvm-x-acl">curpa</AUni> -<AUni ws="qvm-x-akh">kurpa</AUni> -<AUni ws="qvm-x-akl">kurpa</AUni> -<AUni ws="qvm-x-ame">kurpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kurpa</AUni> -<AUni ws="qvm-x-acl">*kurpa</AUni> -<AUni ws="qvm-x-akh">*kurpa</AUni> -<AUni ws="qvm-x-akl">*kurpa</AUni> -<AUni ws="qvm-x-ame">*kurpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.21" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="83f76f82-d534-460b-8e31-19ae14b3135e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kurpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c91b3fe8-3da4-4edb-8ac6-4dc5aa1dd0e4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5d9c88c6-c7c5-42f1-a17c-a570628e4526" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kurpa 
\entryTyp root 
\gENG dirt.clod 
\gSPN terrón 
\e *kurpa 
\c N0 
\ach curpa 
\akh kurpa 
\acl curpa 
\akl kurpa 
\ame kurpa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="b0c4436d-04bf-4595-9c89-9cbe4b368697" ownerguid="c6361356-0b5c-44f1-8fe2-7f3c28d41dbd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b0c4c22b-602e-4abc-82e4-f7c32ee6b0dc" ownerguid="cbcff912-e1c2-4d9b-9938-85d73e7e7265"> -<ExampleWords> -<AUni ws="en">some, any, several, a number of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate some of a group of things or people?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b0c901b0-b329-4db7-a30e-fa35460ad561" ownerguid="c6340d2f-f792-470d-8005-679200241fec"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="b0cb3336-04b4-42d8-8151-d6f4ddb4a7a5" ownerguid="0335fea0-5034-4542-9273-6a33f229dbb5"> -<Form> -<AUni ws="qvm-x-ach">parti</AUni> -<AUni ws="qvm-x-acl">parti; parte</AUni> -<AUni ws="qvm-x-akh">parti</AUni> -<AUni ws="qvm-x-akl">parti; parte</AUni> -<AUni ws="qvm-x-ame">parti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b0cd2f09-2b95-47b3-a602-5590eb22fe5c" ownerguid="738a09a5-59df-40f9-8a4e-176e00d03bbf"> -<ExampleWords> -<AUni ws="en">weapon, weaponry, arms, armament, munitions, ordnance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to a weapon?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b0cdf732-5199-4df9-975a-2190adb4261a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gochmu</AUni> -<AUni ws="qvm-x-acl">gochmu; gochmo</AUni> -<AUni ws="qvm-x-akh">qochmu</AUni> -<AUni ws="qvm-x-akl">qochmu; qochmo</AUni> -<AUni ws="qvm-x-ame">quchmu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qutrmu</AUni> -<AUni ws="qvm-x-acl">*qutrmu</AUni> -<AUni ws="qvm-x-akh">*qutrmu</AUni> -<AUni ws="qvm-x-akl">*qutrmu</AUni> -<AUni ws="qvm-x-ame">*qutrmu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.902" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4f614df4-3ec9-4e03-81ab-49a2bddf9df1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qutrmu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="509bc7d7-9e67-46b7-98a0-ec5fc0c87123" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aa8c4239-80ed-41ce-9daa-796bc5580685" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qutrmu 
\entryTyp root 
\gENG 
\gSPN 
\e *qutrmu 
\c V1 
\ach gochmu 
\akh qochmu 
\acl gochmu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gochmo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qochmu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qochmo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame quchmu 
\i MIC 4.13 Sión runacuna, trïgu punshata gochmogpag jarutsir ushacätsishgannog tsay nacioncunata ushacätsiy.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="b0cecf9b-06f2-4f96-88a2-f56cd00faf74" ownerguid="a2989907-310a-4a71-8768-cfa71e66caa6"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="08052c57-41bc-44be-9f4b-a6a8fd83ad63" t="o" /> -<objsur guid="8830b9b1-4d3d-41cc-bd82-0bad7f121296" t="o" /> -<objsur guid="8b049308-696c-40d7-8e7b-b387a94882d9" t="o" /> -<objsur guid="93b21302-392a-473a-8125-465995c5d91b" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="b0d275be-46ce-4311-864d-b4bce6efc115" ownerguid="6092226c-99d3-4fb4-ab1a-794821117d36"> -<Form> -<AUni ws="qvm-x-ach">sänu</AUni> -<AUni ws="qvm-x-acl">sänu; sänu; säno</AUni> -<AUni ws="qvm-x-akh">sänu</AUni> -<AUni ws="qvm-x-akl">sänu; sänu; säno</AUni> -<AUni ws="qvm-x-ame">sänu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b0d95aff-fcec-4cba-90c7-d1dee005df49" ownerguid="2854734e-834a-42cb-8812-d9e7028916dc"> -<ExampleWords> -<AUni ws="en">vegetable garden, hoe, pick</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to growing vegetables?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b0d99526-708a-426c-9e7c-447b9f48b23b" ownerguid="e17bf8da-45f5-43de-bd6a-1c28d8611e02"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="b0dc3e89-90b9-4a12-81f9-0c429a8fa69e" ownerguid="a97909b2-5498-436d-80c4-549e1fcfd365"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b0dd78ca-033a-4ae3-aa00-1f5ca3070072" ownerguid="e836b01b-6c1a-4d41-b90a-ea5f349f88d4"> -<ExampleWords> -<AUni ws="en">stuffy, airless, stifling, polluted, air pollution, smog</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe bad air (such as when the air in a room is dirty, hot, smells bad, or too many people are breathing)?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="b0df2954-a1f9-4e21-91d4-6611841ed964"> -<Analyses> -<objsur guid="a9a93240-5237-4ad0-911a-152179f78550" t="o" /> -</Analyses> -<Checksum val="1232239949" /> -<Form> -<AUni ws="qvm-x-akh">ninanmi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="b0df4f25-fdd3-4fad-b13d-8049a12f57ee" ownerguid="31b8af41-cbce-4c3c-b2b7-a1c8eb5f1412"> -<Form> -<AUni ws="qvm-x-ach">autorizädu</AUni> -<AUni ws="qvm-x-acl">autorizädu; autorizädu; autorizädo</AUni> -<AUni ws="qvm-x-akh">autorizädu</AUni> -<AUni ws="qvm-x-akl">autorizädu; autorizädu; autorizädo</AUni> -<AUni ws="qvm-x-ame">autorizädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b0e08da6-d6e5-43ce-8d66-e4d9a0b79de3" ownerguid="ab8ca07c-b23c-43dc-b705-7fe34ddf6d4d"> -<ExampleWords> -<AUni ws="en">exaggerated, extravagant, melodramatic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe an exaggerated statement?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b0e0a7b4-5b52-463f-96d2-fdc71dfcfc0a" ownerguid="537b2e3f-4ab8-4e19-ac8b-fbcf42ca8b75"> -<Form> -<AUni ws="qvm-x-ach">porsyacäsu</AUni> -<AUni ws="qvm-x-acl">porsyacäsu; porsyacäsu; porsyacäso</AUni> -<AUni ws="qvm-x-akh">porsyacäsu</AUni> -<AUni ws="qvm-x-akl">porsyacäsu; porsyacäsu; porsyacäso</AUni> -<AUni ws="qvm-x-ame">porsyacäsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="b0e2635e-47c4-4995-942b-07f6635faf6f" ownerguid="9e6d7c69-788c-4d40-8584-32f185e91932"> -<Abbreviation> -<AUni ws="en">6.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to keeping bees.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Beekeeping</AUni> -</Name> -<Questions> -<objsur guid="211b8ff1-233c-4884-9284-bbde7998a0b2" t="o" /> -<objsur guid="3bb65738-49b0-4369-8038-e714e91d10a9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="b0e3486c-bd3d-4b5c-be9a-40cd2c0ce2a1" ownerguid="6b8366b9-b5e8-42b8-991c-c568d4442a81"> -<Abbreviation> -<AUni ws="en">5.4.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.327" /> -<DateModified val="2022-9-23 16:55:8.327" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to plaiting your hair.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Plait hair</AUni> -</Name> -<Questions> -<objsur guid="1ef00125-728f-4249-a81c-de760a5de8ef" t="o" /> -<objsur guid="96d3ecb7-004a-4325-8537-1f7ffc63c59c" t="o" /> -<objsur guid="538f2080-f918-43ad-9f32-add0d068d6e4" t="o" /> -<objsur guid="b95b98d6-2c13-458d-a6d8-298916cea6e9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="b0e35336-2062-423b-b0f3-0805d5d056fd" ownerguid="c40a802d-f46a-40e8-a741-7cd8882bf6a3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ounce</AUni> -<AUni ws="es">onza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7be0e33a-3fbf-45de-86c6-ad945b3e7e45" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="b0e39b97-5304-4789-a7f4-f8daac52089e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa:su</AUni> -<AUni ws="qvm-x-acl">pa:su; pa:su; pa:so</AUni> -<AUni ws="qvm-x-akh">pa:su</AUni> -<AUni ws="qvm-x-akl">pa:su; pa:su; pa:so</AUni> -<AUni ws="qvm-x-ame">pa:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+paso</AUni> -<AUni ws="qvm-x-acl">+paso</AUni> -<AUni ws="qvm-x-akh">+paso</AUni> -<AUni ws="qvm-x-akl">+paso</AUni> -<AUni ws="qvm-x-ame">+paso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.749" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="492aae9f-9068-467c-8aea-981c155b016d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+paso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b8637efb-05ba-4934-b728-dfe32f3c262a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="98b0a529-0fdd-444a-a9c2-fa047d394366" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +paso 
\entryTyp root 
\gENG 
\gSPN 
\e +paso 
\c N0 
\ach pa:su 
\akh pa:su 
\acl pa:su / _# 
\acl pa:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pa:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pa:su / _# 
\akl pa:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pa:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pa:su</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="b0e3b653-038b-4d0b-b59b-79eb9cf9f453" ownerguid="ba8370ac-4918-42c8-afa0-55ac80bb5f52"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="b0e5042d-1ade-4fb1-a6fd-9a165f5c4763" ownerguid="771e3882-f672-4e67-8580-edd82d7e5090"> -<Abbreviation> -<AUni ws="en">4.3.4.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.235" /> -<DateModified val="2022-9-23 16:55:8.235" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to kidnapping someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Kidnap</AUni> -</Name> -<Questions> -<objsur guid="bee7c075-3a14-4030-a7aa-26139f09550a" t="o" /> -<objsur guid="29cbc121-787f-41c4-af32-4d51921a8189" t="o" /> -<objsur guid="6a2aa9ee-79fa-40f0-9a51-8bb0b1d66712" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="b0e526a5-cbfa-4e7d-a32b-e7084459b1eb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cansa</AUni> -<AUni ws="qvm-x-acl">cansa</AUni> -<AUni ws="qvm-x-akh">cansa</AUni> -<AUni ws="qvm-x-akl">cansa</AUni> -<AUni ws="qvm-x-ame">cansa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cansar</AUni> -<AUni ws="qvm-x-acl">+cansar</AUni> -<AUni ws="qvm-x-akh">+cansar</AUni> -<AUni ws="qvm-x-akl">+cansar</AUni> -<AUni ws="qvm-x-ame">+cansar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.41" /> -<DateModified val="2022-10-10 21:18:47.215" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7e4d20b7-e01d-45bd-9a07-dcde154072e9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cansar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4e8fee2b-f341-4ad4-972f-c9f859b80bea" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d18515b2-75c1-48d1-81e8-f22be8396300" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cansar 
\entryTyp root 
\gENG 
\gSPN 
\e +cansar 
\c V1 
\ach cansa 
\akh cansa 
\acl cansa 
\akl cansa 
\ame cansa 
\i ISA 56.12 ¡Canan upyashgantsinog warapis fiestata rurar pasashgantsiyag
\f + 
\fr 56.12 
\ft Waquincunaga cansashgantsiyag nipäcun.
\f* upyashun!>></Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b0e5a58d-cf9c-4432-a7da-f921ea8a29e8" ownerguid="0add0775-0ed0-46be-ba4a-76310e63a036"> -<ExampleWords> -<AUni ws="en">sloping, slope up/down, on an incline, rising, rise up (toward), ascending, upgrade, uphill, falling, fall away, descending, downgrade, downhill, dip</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a surface that is sloping?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b0e789fd-99b0-4001-a651-ea7ee233adbf" ownerguid="b080162c-9578-4fdc-bd39-d5f25cb3c473"> -<Form> -<AUni ws="qvm-x-ach">päñi</AUni> -<AUni ws="qvm-x-acl">päñi</AUni> -<AUni ws="qvm-x-akh">päñi</AUni> -<AUni ws="qvm-x-akl">päñi</AUni> -<AUni ws="qvm-x-ame">päñi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="b0ebe7d2-fde4-4b6e-a4f6-ed9f0ba0308a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ratsatsa</AUni> -<AUni ws="qvm-x-acl">ratsatsa</AUni> -<AUni ws="qvm-x-akh">ratsatsa</AUni> -<AUni ws="qvm-x-akl">ratsatsa</AUni> -<AUni ws="qvm-x-ame">ratsatsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rachacha</AUni> -<AUni ws="qvm-x-acl">*rachacha</AUni> -<AUni ws="qvm-x-akh">*rachacha</AUni> -<AUni ws="qvm-x-akl">*rachacha</AUni> -<AUni ws="qvm-x-ame">*rachacha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.234" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="73f12db9-24fd-4dec-850f-478373655c36" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rachacha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="18e9622c-d31f-4bbc-aed6-e867365f2ece" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4eeff345-07cf-4027-a177-e1c51a246488" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rachacha 
\entryTyp root 
\gENG plant 
\gSPN planta 
\e *rachacha 
\c N0 
\ach ratsatsa 
\akh ratsatsa 
\acl ratsatsa 
\akl ratsatsa 
\ame ratsatsa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="b0eda643-cc55-41f2-8fd4-152db522e813"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">te:chu</AUni> -<AUni ws="qvm-x-acl">te:chu; te:chu; te:cho</AUni> -<AUni ws="qvm-x-akh">te:chu</AUni> -<AUni ws="qvm-x-akl">te:chu; te:chu; te:cho</AUni> -<AUni ws="qvm-x-ame">te:chu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+techo</AUni> -<AUni ws="qvm-x-acl">+techo</AUni> -<AUni ws="qvm-x-akh">+techo</AUni> -<AUni ws="qvm-x-akl">+techo</AUni> -<AUni ws="qvm-x-ame">+techo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.855" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="555f7d67-bb01-4563-a960-4ffde46df299" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+techo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="995aa37d-c0a0-4536-9d94-e841811de23a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8fe6a513-5f0f-4a48-a1ab-2c8e96b3e431" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +techo 
\entryTyp root 
\gENG roof 
\gSPN techo 
\e +techo 
\c N0 
\ach te:chu 
\akh te:chu 
\acl te:chu / _# 
\acl te:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl te:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl te:chu / _# 
\akl te:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl te:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame te:chu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="b0edabb7-dd7c-46aa-bfd8-9a1fa24897fd" ownerguid="5e0faf19-8717-4dab-bf6f-c4225a3844b2"> -<Form> -<AUni ws="qvm-x-ach">churchu</AUni> -<AUni ws="qvm-x-acl">churchu; churcho</AUni> -<AUni ws="qvm-x-akh">churchu</AUni> -<AUni ws="qvm-x-akl">churchu; churcho</AUni> -<AUni ws="qvm-x-ame">churchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoInflAffMsa" guid="b0ee83ce-c1ff-41c7-8aa1-b6e53ae19ebd" ownerguid="7e4bf435-4769-4d4a-a865-9a9981467355"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="b0eec267-89be-49b2-b930-0c4fad240c17" ownerguid="30ccfb7f-2232-4200-a662-ece020feaf9e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b0f2993e-9b2d-47d1-9a40-984fb10187ea" ownerguid="dc177f3c-d0fd-4232-adf1-a77b339cdbb2"> -<ExampleWords> -<AUni ws="en">building, structure, construction, kitchen house, bathhouse, outhouse, latrine, outbuilding, bank, elevator, gallery, garage, gazebo, hospital, library, lighthouse, mausoleum, museum, outbuilding, observatory, pavilion, pyramid, rotunda, skyscraper, tabernacle, tower</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What types of buildings are there?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b0f49127-f866-4222-8c07-66f965daff18" ownerguid="fa68a2c2-e14a-4e9f-a5d1-985054267fe5"> -<Form> -<AUni ws="qvm-x-ach">macllu</AUni> -<AUni ws="qvm-x-acl">macllu; macllo</AUni> -<AUni ws="qvm-x-akh">makllu</AUni> -<AUni ws="qvm-x-akl">makllu; makllo</AUni> -<AUni ws="qvm-x-ame">makllu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b0f57ed0-b6f7-4666-8efa-6a393f13017f" ownerguid="68ed3e51-ddc4-4cec-89ff-605259ac9fcf"> -<ExampleWords> -<AUni ws="en">nasal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe something to do with the nose?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b0f59466-3382-43b3-b016-c13e0653754e" ownerguid="52522931-e14e-424b-b78f-fa27acc54934"> -<Form> -<AUni ws="qvm-x-ach">säna</AUni> -<AUni ws="qvm-x-acl">säna</AUni> -<AUni ws="qvm-x-akh">säna</AUni> -<AUni ws="qvm-x-akl">säna</AUni> -<AUni ws="qvm-x-ame">säna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StTxtPara" guid="b0f724c9-6bc4-4bf2-9218-d67682918740" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">yarpapäkun. </Run> -<Run ws="en">\tr < V1 *yarpäv1 > PLALLF 3</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="029e66fb-9480-4534-b743-247863f10b57" t="o" /> -<objsur guid="73be0f66-ac33-432b-80d8-80a1c9dcd385" t="o" /> -</Segments> -</rt> -<rt class="CmDomainQ" guid="b0f83371-2b20-49d0-bd16-6126cb869c0c" ownerguid="34a02a17-23fb-4260-9f97-c125842a3594"> -<ExampleWords> -<AUni ws="en">birthday</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the day a person was born?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b0f9506c-2af1-4c68-836c-82fe2f4f8719" ownerguid="f718fc15-59b2-4b6a-a9e3-39b3e8d487d7"> -<ExampleWords> -<AUni ws="en">fully grown, adult, mature, grown up, fully developed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that has finished growing?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b0fa7c03-6f14-45e7-8bb5-912c2d5a8653" ownerguid="0d6e5607-3bb1-43b6-a494-eafc2d2d6299"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tufted</AUni> -<AUni ws="es">copado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="036646c9-e583-4854-88ee-d6cb53718c83" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="b0feb82b-7981-49f0-8611-bf674064ec33"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tesore:ru</AUni> -<AUni ws="qvm-x-acl">tesore:ru; tesore:ru; tesore:ro</AUni> -<AUni ws="qvm-x-akh">tesore:ru</AUni> -<AUni ws="qvm-x-akl">tesore:ru; tesore:ru; tesore:ro</AUni> -<AUni ws="qvm-x-ame">tesore:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tesorero</AUni> -<AUni ws="qvm-x-acl">+tesorero</AUni> -<AUni ws="qvm-x-akh">+tesorero</AUni> -<AUni ws="qvm-x-akl">+tesorero</AUni> -<AUni ws="qvm-x-ame">+tesorero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.876" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7886dfc0-53d0-465c-b58f-3b05c61f32c8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tesorero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e9ded309-bf0b-4bdd-8ba0-12a17634ba56" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bdeaf696-2919-4beb-af32-2ae79b256cc6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tesorero 
\entryTyp root 
\gENG treasurer 
\gSPN tesorero 
\e +tesorero 
\c N0 
\ach tesore:ru 
\akh tesore:ru 
\acl tesore:ru / _# 
\acl tesore:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tesore:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tesore:ru / _# 
\akl tesore:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tesore:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tesore:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="b1015e0e-410c-4213-8a2b-7791c4e8ad12" ownerguid="e66c9cb1-376d-4b82-8763-1b5b7fcb3401"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b102a10b-358f-415c-914a-1272c83cfb86" ownerguid="3bc961d1-9f4f-4f1b-ada7-b1e9a2928ea4"> -<ExampleWords> -<AUni ws="en">tell the truth, speak the truth, be honest, be open, be up front, play fair, level with, lay/put your cards on the table, testify, witness, reveal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to telling the truth?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b102b67f-eec0-49ff-82b9-4243b6068788"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa:ja</AUni> -<AUni ws="qvm-x-acl">pa:ja</AUni> -<AUni ws="qvm-x-akh">pa:ja</AUni> -<AUni ws="qvm-x-akl">pa:ja</AUni> -<AUni ws="qvm-x-ame">pa:ja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+paja</AUni> -<AUni ws="qvm-x-acl">+paja</AUni> -<AUni ws="qvm-x-akh">+paja</AUni> -<AUni ws="qvm-x-akl">+paja</AUni> -<AUni ws="qvm-x-ame">+paja</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.648" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="67474367-4f5c-4d2d-a311-adc126e13854" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+paja</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1d7b4ddf-a34d-439d-aaa8-4903bf63c2fa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="62bc45cd-7b58-48d6-8e55-03a6ff1dc760" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +paja 
\entryTyp root 
\gENG straw 
\gSPN paja 
\e +paja 
\c N0 
\ach pa:ja 
\akh pa:ja 
\acl pa:ja 
\akl pa:ja 
\ame pa:ja</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="b1035f7b-e1f9-4873-b832-a4fb94a45baf" ownerguid="bea4961a-06b3-41b3-8042-db16d18b34fc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.rotton</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="68437829-5831-4d6c-855f-6830e941eb6f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b103dd6e-92f3-4007-9ecf-bd33ae9104ee" ownerguid="b9a4b336-080a-4973-a7e3-a9af10fc347c"> -<ExampleWords> -<AUni ws="en">digest (food), digestion, burp, hunger, be empty, be full, distend, fill with gas</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What does the stomach do?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b10a00a2-8632-4084-94d2-5824dc36a059"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pri:mu</AUni> -<AUni ws="qvm-x-acl">pri:mu; pri:mu; pri:mo</AUni> -<AUni ws="qvm-x-akh">pri:mu</AUni> -<AUni ws="qvm-x-akl">pri:mu; pri:mu; pri:mo</AUni> -<AUni ws="qvm-x-ame">pri:mu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+primo</AUni> -<AUni ws="qvm-x-acl">+primo</AUni> -<AUni ws="qvm-x-akh">+primo</AUni> -<AUni ws="qvm-x-akl">+primo</AUni> -<AUni ws="qvm-x-ame">+primo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.929" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1094af22-c608-47a8-b597-ccdfcf77fdf1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+primo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bcefa51d-b681-4c27-8254-c648611b3a26" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dc35b02a-bcf5-44f4-b8a1-87736b0e2332" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +primo 
\entryTyp root 
\gENG cousin 
\gSPN primo 
\e +primo 
\c N0 
\ach pri:mu 
\akh pri:mu 
\acl pri:mu / _# 
\acl pri:mu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pri:mo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pri:mu / _# 
\akl pri:mu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pri:mo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pri:mu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="b10d1740-502e-4c62-840e-eb89c948c3dc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">linea</AUni> -<AUni ws="qvm-x-acl">linea</AUni> -<AUni ws="qvm-x-akh">linea</AUni> -<AUni ws="qvm-x-akl">linea</AUni> -<AUni ws="qvm-x-ame">linea</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+linea</AUni> -<AUni ws="qvm-x-acl">+linea</AUni> -<AUni ws="qvm-x-akh">+linea</AUni> -<AUni ws="qvm-x-akl">+linea</AUni> -<AUni ws="qvm-x-ame">+linea</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.94" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="81133e46-f465-4cd1-b8c3-a14c8ca3348f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+linea</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="54533a3f-238b-4308-bf1e-05a557c7a619" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="095a3671-dafd-4582-b84c-d02d8f82e517" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +linea 
\entryTyp root 
\gENG line 
\gSPN linea 
\e +linea 
\c N0 
\ach linea 
\akh linea 
\acl linea 
\akl linea 
\ame linea</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="b10eb88e-6f3f-4738-a771-0535e023196e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mezcla</AUni> -<AUni ws="qvm-x-acl">mezcla</AUni> -<AUni ws="qvm-x-akh">mezcla</AUni> -<AUni ws="qvm-x-akl">mezcla</AUni> -<AUni ws="qvm-x-ame">mezcla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mezcla</AUni> -<AUni ws="qvm-x-acl">+mezcla</AUni> -<AUni ws="qvm-x-akh">+mezcla</AUni> -<AUni ws="qvm-x-akl">+mezcla</AUni> -<AUni ws="qvm-x-ame">+mezcla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.424" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="90869eca-3e6f-49b4-81c8-e221b53bc6ab" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mezcla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3d9f88b8-0119-43be-a2e5-31b392cb7dc5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="29148dac-78df-4796-bde8-1fa2ff1b8107" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mezcla 
\entryTyp root 
\gENG 
\gSPN 
\e +mezcla 
\c N0 
\ach mezcla 
\akh mezcla 
\acl mezcla 
\akl mezcla 
\ame mezcla</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b1111ffa-50b0-4692-8ec9-a991730e86ab" ownerguid="15e0b54b-bb7c-4900-b048-20b718d05f79"> -<ExampleWords> -<AUni ws="en">especially, particularly, particular, most of all</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words focus especially on one of several things?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b11420cb-ee8d-461a-8f3f-b55fe00a2b5f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">washa</AUni> -<AUni ws="qvm-x-acl">washa</AUni> -<AUni ws="qvm-x-akh">washa</AUni> -<AUni ws="qvm-x-akl">washa</AUni> -<AUni ws="qvm-x-ame">washa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*washa</AUni> -<AUni ws="qvm-x-acl">*washa</AUni> -<AUni ws="qvm-x-akh">*washa</AUni> -<AUni ws="qvm-x-akl">*washa</AUni> -<AUni ws="qvm-x-ame">*washa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.546" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c28f493f-a960-40a0-8426-c140366cb02b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*washa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9a7ec0c1-5d35-4bf9-aac4-bb5f4c7ce951" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d64cf1b2-b017-45b8-abe3-103556f08b4f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *washa 
\entryTyp root 
\gENG level 
\gSPN a.nivel 
\e *washa 
\c N0 
\ach washa 
\akh washa 
\acl washa 
\akl washa 
\ame washa 
\mcc *washa / ~_ JUST [poss]</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="b117dfc9-ebc9-4e3b-be7f-7dde6b94dcb0"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Aywarkaykashqanchömi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="b11a8eb5-3dc3-42c3-8505-546756ef787e" ownerguid="826c3361-e08e-4ca8-8324-57b56884776c"> -<Form> -<AUni ws="qvm-x-ach">misa</AUni> -<AUni ws="qvm-x-acl">misa</AUni> -<AUni ws="qvm-x-akh">misa</AUni> -<AUni ws="qvm-x-akl">misa</AUni> -<AUni ws="qvm-x-ame">misa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b11ebc6c-c26a-4eb0-b51a-c4306add2042" ownerguid="b089f0be-e6a0-44f5-aa1f-7d9744e63641"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.clothe</AUni> -<AUni ws="es">aropar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c2c5b8ff-7941-4a51-9856-8399beac19a3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b122730e-b4b7-46fa-b1c5-a29170da6df9" ownerguid="ae6f73ab-432d-42e8-aa1a-c848652a13f0"> -<ExampleWords> -<AUni ws="en">woman, lady, female, gal, belle, chick, dame, frau, gentlewoman, mistress, senorita, wench, womenfolk</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a woman?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b124ee10-493f-43dd-8909-367d6c056ee0" ownerguid="efef45bd-26be-46f8-b85b-424be55bcdac"> -<ExampleWords> -<AUni ws="en">renew, renewal, freshen, modernize, modernization, recondition, reconditioning, refresh, refurbish, refurbishing, rejuvenate, rejuvenation, renovate, restore, update, bring something up to date</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to changing something that is old, so that it is like new?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b127f261-0a9c-47f0-b77c-463beeb5eb89" ownerguid="94519d8a-0ad6-4acd-8413-84cb6e9928c7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">deep.sticky.mud</AUni> -<AUni ws="es">atolladero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="305510ac-7ef4-4295-b1a0-befcee5b1fed" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b12f9fd0-21e1-4608-b709-4a10c53a2bfd" ownerguid="8e88ed6a-000d-400a-8cd8-7b3cc7f1818c"> -<ExampleWords> -<AUni ws="en">potion, herb</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the medicine used in traditional medicine?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b13060be-f5da-4f24-9ad8-a18cb33ae795" ownerguid="16e930c3-8e70-408a-840c-58cf5e512d44"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="b1318864-bc45-4d59-ad0e-500fe32dd107" ownerguid="86c27056-e083-4db9-8ea8-8276c94ba50f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cornet</AUni> -<AUni ws="es">corneta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1582eb0e-6a67-40ef-b405-f8ed78557d18" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="b133daae-24b4-4145-9783-83d68c46c023"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ari</AUni> -<AUni ws="qvm-x-acl">ari; are</AUni> -<AUni ws="qvm-x-akh">ari</AUni> -<AUni ws="qvm-x-akl">ari; are</AUni> -<AUni ws="qvm-x-ame">ari</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ari.v</AUni> -<AUni ws="qvm-x-acl">*ari.v</AUni> -<AUni ws="qvm-x-akh">*ari.v</AUni> -<AUni ws="qvm-x-akl">*ari.v</AUni> -<AUni ws="qvm-x-ame">*ari.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.828" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f9732dfc-9f12-47d1-ae7e-d79260f99ab1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ari.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="80c4c8bb-9a15-4256-a0a0-82127467a2dd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e0182458-be17-4bc7-8316-38ab7b7aa4e7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ari.v 
\entryTyp root 
\gENG break.in 
\gSPN probar 
\e *ari.v 
\c V1 
\mp +FinalI 
\ach ari 
\akh ari 
\acl ari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl are +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl are +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ari 
\mcc *ari.v +/ ~_ NMN</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="b133e52b-0e5a-4c40-85da-f098db38d05e" ownerguid="d9874aa6-a28e-4351-b79c-3ab3d257072e"> -<Form> -<AUni ws="qvm-x-ach">jömu</AUni> -<AUni ws="qvm-x-acl">jömu; jömo</AUni> -<AUni ws="qvm-x-akh">jömu</AUni> -<AUni ws="qvm-x-akl">jömu; jömo</AUni> -<AUni ws="qvm-x-ame">hümu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b134abc9-7ea2-4f49-91a0-a817c571632a" ownerguid="fe649c64-54c2-47bb-9d21-ba7a19f9bdc0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="baf0619f-5a28-4d92-92f8-baa1180ad81d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="b134e398-cf28-441a-961d-f676e9b212c2" ownerguid="a823dbb3-0137-43cd-9ebd-765a139a453e"> -<Form> -<AUni ws="qvm-x-ach">shaclu</AUni> -<AUni ws="qvm-x-acl">shaclu; shaclu; shaclo</AUni> -<AUni ws="qvm-x-akh">shaklu</AUni> -<AUni ws="qvm-x-akl">shaklu; shaklu; shaklo</AUni> -<AUni ws="qvm-x-ame">shaklu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b1392cdb-51f6-4d5f-90b4-f2eccfb37d30" ownerguid="57f3b56c-d223-4571-9ca3-0591f9f9022c"> -<Form> -<AUni ws="qvm-x-ach">shogush</AUni> -<AUni ws="qvm-x-acl">shogush</AUni> -<AUni ws="qvm-x-akh">shoqush</AUni> -<AUni ws="qvm-x-akl">shoqush</AUni> -<AUni ws="qvm-x-ame">shuqush</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="b13ce5d7-e5f9-42b8-bae0-12fd1fec9b43" ownerguid="40c4b498-7132-4ed0-9840-97622a4b9369"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="7ed286e5-86e7-42db-b03b-8868d1c56dc9" t="o" /> -<objsur guid="a6c599a8-2982-4c7d-bda0-56ea2313d1aa" t="o" /> -<objsur guid="66f2b89c-b2b2-4bf9-8e25-f8d9e8c8f81d" t="o" /> -<objsur guid="756467c6-1e65-4ac3-be11-abb37563b724" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="b13cf498-4103-42c6-8021-524b209e56be" ownerguid="e9a661d2-f167-4471-8c49-1f8e27e5cd60"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">girl</AUni> -<AUni ws="es">niña</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="21941ca6-61ff-4a6a-b58a-2f28c234665a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="b13e0045-78f5-4d21-8edc-800c2b6376ec" ownerguid="d92b9f97-110c-4e3a-9aec-90c55b96dc01"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">warmi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">warmi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">warmi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f527da1e-d074-47e5-ab55-35d9106f617d" t="r" /> -</Morph> -<Msa> -<objsur guid="86b5e60e-c55d-4797-a0a2-e6891fff7ec3" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="b1473435-f2a2-466c-9aa2-35eb335b9112" ownerguid="ba760e74-4389-4262-bf25-19ca25a06066"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PhEnvironment" guid="b148e437-5e11-4abc-84bf-b21723b5a9f0" ownerguid="be765e3e-ea5e-11de-9d42-0013722f8dec"> -<Name> -<AUni ws="en">after a non-i vowel</AUni> -</Name> -<StringRepresentation> -<Str> -<Run underline="none" ws="qvm-x-akh">/[V-i]_</Run> -</Str> -</StringRepresentation> -</rt> -<rt class="LexSense" guid="b14a4f35-ed94-48fd-ace2-940b187addef" ownerguid="a8cb73ed-e20b-4977-905f-a6b6d8177827"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">diseased.potato</AUni> -<AUni ws="es">papa.enferma</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="451f6cda-11bc-488b-9b90-54b69d665478" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="b14be3d8-82b1-490b-bf6a-c413f822e825" ownerguid="a84bd6de-0a66-4e92-86cb-a91d9e9ed96e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">warp</AUni> -<AUni ws="es">urdida</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c7526a70-2a91-45a2-bd23-b4029a9aa928" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="b14d71df-110c-4721-890c-f06a0bafb28a" ownerguid="a81b4f8f-2c46-4c9a-9640-8b7bad9360f1"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -</rt> -<rt class="CmSemanticDomain" guid="b14db9f4-5e1d-4a2b-bec0-0d6bcb5b1a31" ownerguid="16081dd6-72e5-4826-b86d-958dd82a01c0"> -<Abbreviation> -<AUni ws="en">7.2.2.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to something falling--for something to move down under the influence of gravity.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15L Fall</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Fall</AUni> -</Name> -<Questions> -<objsur guid="c06db647-3e2f-4385-a3a7-623d87b7a100" t="o" /> -<objsur guid="cc2c05c2-168e-4e3d-9771-0484826ea68b" t="o" /> -<objsur guid="8052c414-1989-40ef-9eee-ec0c08de21e6" t="o" /> -<objsur guid="16084ddf-f9f3-48ea-a912-cb510e7bd75e" t="o" /> -<objsur guid="4de07180-9600-4871-8a4f-c1fc7bee8890" t="o" /> -<objsur guid="2bde6aaf-48c6-427d-bd1e-6adeef38f94a" t="o" /> -<objsur guid="f4288fb9-191e-4e77-b185-0b97b3bb1e4f" t="o" /> -<objsur guid="701d28af-3a5f-4222-8f9c-50602e4bcf65" t="o" /> -<objsur guid="81aef061-1a15-4b33-8907-ae5c384e1fbd" t="o" /> -<objsur guid="fa12182c-8e52-4af6-bce4-a3047edeebef" t="o" /> -<objsur guid="7afb96ff-66f3-4429-9270-0ebca2bd1db0" t="o" /> -<objsur guid="5d469677-40ca-4493-9eba-1378207b2ce5" t="o" /> -<objsur guid="e57e8fc6-3b7b-4313-93e7-ecea623c62ef" t="o" /> -<objsur guid="e03c2955-2853-4f61-aba8-b026890814f3" t="o" /> -<objsur guid="bb841559-54a5-47d3-aee7-8318ccc74f84" t="o" /> -<objsur guid="c6d47f08-a842-484f-9eb9-d247ea492c8e" t="o" /> -<objsur guid="611fc36b-e744-40ee-81c2-f146bbc0174e" t="o" /> -<objsur guid="67d79b4b-6b2c-4b33-8d8f-bd5b61d0231a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="b14ec571-568e-4469-aeda-2044bba7da40" ownerguid="626c8435-776f-4da6-97d9-2c85484b6b7a"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="b14f9a07-4b4c-4d74-b681-7228ec43270e" ownerguid="c29b7b74-c6bd-401b-8c7a-422853a14a83"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="b155b1db-19d3-4f06-af74-841c9dd46edf" ownerguid="067a0610-1b9c-404c-9ed3-3ed4e773891a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="b15804c1-58a8-44e6-9792-3239b3fc7cf8" ownerguid="a3384417-0862-45b8-8f51-76ce3395d107"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">DAN 1 .10 Waquin mözucuna weray weray caycagta ricashpan gamcunata upishyashga caycagta ricaycushushpayquega nogatachari wanutsimanga.>></Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="b158858e-5753-436f-960a-36841ab7bbe7" ownerguid="57c9a370-0f46-4475-98fd-c7a8b3f5074c"> -<ExampleWords> -<AUni ws="en">wet blanket, spoilsport, killjoy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to someone who spoils people's enjoyment of an event?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b1588da0-653f-4fb1-9cea-51f7e8267ca1" ownerguid="f7960e84-5af9-4999-9028-783058aa8c5c"> -<ExampleWords> -<AUni ws="en">whatever, anything, everything but the kitchen sink, you name it</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to all of what you want?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="b158fe11-5af2-4467-bbc0-cc1aee766592" ownerguid="e28f3f79-d4a5-402c-8a70-196856791078"> -<Abbreviation> -<AUni ws="en">9.1.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.680" /> -<DateModified val="2022-9-23 16:55:8.680" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for non-volitional pro-verbs.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>13D Happen</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Happen</AUni> -</Name> -<Questions> -<objsur guid="4d61ad88-d69a-4297-b004-3a4ecb9b14f5" t="o" /> -<objsur guid="d0368df7-dfd5-437a-967a-944cf3a8983b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="b15a35dd-9450-42f8-8c59-0685ee02ac29" ownerguid="c805af85-77a9-46a9-ba60-f33fa7196812"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rope</AUni> -<AUni ws="es">soga</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c8965bfb-29ac-44f6-8b34-b3a9b187640e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b15bedd8-ca63-48d1-b17f-72abc85859b8" ownerguid="0539de86-f407-4b3d-b1b8-028822fb9f26"> -<ExampleWords> -<AUni ws="en">repeat, quote, echo, parrot, regurgitate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to repeating what someone else said?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b15c3a9d-ab6c-4850-b28a-46af4d2483e1" ownerguid="e2246243-cfba-4cf0-ab09-0066cb082b62"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="bd96fe45-5971-43c1-aae3-f1d65862d52a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="b15f10d8-9dd6-4179-a01a-e3d6ccd4febe" ownerguid="43e9931c-d63d-4fa4-934c-80870b1d2ccf"> -<Form> -<AUni ws="qvm-x-ach">ripyu</AUni> -<AUni ws="qvm-x-acl">ripyu; ripyo</AUni> -<AUni ws="qvm-x-akh">ripyu</AUni> -<AUni ws="qvm-x-akl">ripyu; ripyo</AUni> -<AUni ws="qvm-x-ame">ripyu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b15ff554-60d6-4dbd-a7e1-e32052d0ab50" ownerguid="68c7d5d8-f1be-48d3-bc63-5319354c734e"> -<Form> -<AUni ws="qvm-x-ach">gueshya</AUni> -<AUni ws="qvm-x-acl">gueshya</AUni> -<AUni ws="qvm-x-akh">qeshya</AUni> -<AUni ws="qvm-x-akl">qeshya</AUni> -<AUni ws="qvm-x-ame">qishya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="b1606f49-c9b6-4577-a81f-71cc65171d9a" ownerguid="9b48dcd0-cc99-4bc8-8368-17e5452a078b"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="b1609337-90c4-418e-beaf-8a9d694fb2da" ownerguid="f936b01d-6aee-42a5-a3b6-e1f03daebfa7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wick</AUni> -<AUni ws="es">mecha</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="910a8975-8611-4612-9fd9-ee9c1f6b7a4e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="b1688009-474d-4e2e-a137-acc1e32a435f" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<Abbreviation> -<AUni ws="en">8.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.589" /> -<DateModified val="2022-9-23 16:55:8.589" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to being thick.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>81D Narrow, Wide</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Thick</AUni> -</Name> -<Questions> -<objsur guid="b2af2d01-9834-4f08-bd3e-5258d12349a2" t="o" /> -<objsur guid="9dfb842d-15f8-4800-bceb-2283ff05b25d" t="o" /> -<objsur guid="1404ca25-6a38-4bae-a40f-68165c3fcc88" t="o" /> -<objsur guid="b873091c-0244-4167-9708-81fafbb84983" t="o" /> -<objsur guid="d6808cf5-6b5c-4f73-b45e-2379ad9895f5" t="o" /> -<objsur guid="18b9fd62-b74e-40d2-baae-7c8f73a0fde5" t="o" /> -<objsur guid="dacf6cb6-2a83-4eb5-a736-3924dbc8aa2a" t="o" /> -<objsur guid="3ec83a46-5f75-4664-8390-399c91bfb6d0" t="o" /> -<objsur guid="e98b5577-d933-43ef-ac00-29b821edd2ae" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="45d867c7-8496-4c92-bb41-b7db5db47717" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="627280f0-4f98-4b31-ad23-eabe37b002ad" t="o" /> -<objsur guid="45d867c7-8496-4c92-bb41-b7db5db47717" t="o" /> -<objsur guid="08c05e00-9660-4491-af2f-a05fab27ef39" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="StStyle" guid="b169287b-53f7-4faa-a2c3-e382f72b845a" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="5" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Note Marker</Uni> -</Name> -<Rules> -<Prop bold="invert" spellcheck="doNotCheck" superscript="super"></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<Usage> -<AUni ws="en">Note Marker identifies the location of a note (for example, a footnote).</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="MoStemMsa" guid="b16d0818-05dc-49f7-8cdf-889b0be5517e" ownerguid="f3231f43-90e3-42b2-ab13-04792f782b7d"> -<PartOfSpeech> -<objsur guid="85ffb381-0567-4202-8640-53cbaec77e45" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="b16de6a0-71dd-448c-9ffa-49f6646a5219" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<Abbreviation> -<AUni ws="en">7.2.1.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.498" /> -<DateModified val="2022-9-23 16:55:8.498" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to running--moving fast on your legs.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15D' Run x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Run</AUni> -</Name> -<Questions> -<objsur guid="6cb0c581-2b1b-41ba-9921-3489d37ba7c4" t="o" /> -<objsur guid="6b908fa2-caaa-46ac-93a8-6018987a0cd6" t="o" /> -<objsur guid="c2ba5e10-54af-43aa-abf1-ff31ad72ed31" t="o" /> -<objsur guid="dad2f12f-a02d-44a5-9ee6-a1db5fa1e55c" t="o" /> -<objsur guid="a633a382-b1ae-4436-944d-472be8ab5d4b" t="o" /> -<objsur guid="25d414eb-329b-478b-96de-ce9cb7d15e5c" t="o" /> -<objsur guid="da0a33da-5e4a-49f2-ac73-dc9457f51e3d" t="o" /> -<objsur guid="803e24fd-c7b0-49d5-9451-0c969afc4fc2" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="b170d38d-806d-450b-bae8-9f075c915025" ownerguid="50db27b5-89eb-4ffb-af82-566f51c8ec0b"> -<ExampleWords> -<AUni ws="en">be alive, live, life, stay alive, be going strong</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being alive?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="b1756402-83c4-476d-8f55-010a0a10b5d9" ownerguid="4f22ebdb-01db-432a-9d7a-41cd44010265"> -<Abbreviation> -<AUni ws="en">6.8.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.486" /> -<DateModified val="2022-9-23 16:55:8.486" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to making a profit.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>57P Earn, Gain, Do Business</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Make profit</AUni> -</Name> -<Questions> -<objsur guid="98c8ba61-c891-42df-9dd8-d5d829259587" t="o" /> -<objsur guid="10f69c6c-5541-49cc-aa8f-96442883c34a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="b179244b-7f64-4aa2-bc77-417eaf8c17c7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gavio:ta</AUni> -<AUni ws="qvm-x-acl">gavio:ta</AUni> -<AUni ws="qvm-x-akh">gavio:ta</AUni> -<AUni ws="qvm-x-akl">gavio:ta</AUni> -<AUni ws="qvm-x-ame">gavio:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gaviota</AUni> -<AUni ws="qvm-x-acl">+gaviota</AUni> -<AUni ws="qvm-x-akh">+gaviota</AUni> -<AUni ws="qvm-x-akl">+gaviota</AUni> -<AUni ws="qvm-x-ame">+gaviota</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.609" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="275d055e-4559-4f35-865e-249383132be7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gaviota</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="202132cd-96da-4c43-9319-57cb8c97955b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ea88f1df-6b20-478b-8385-15ab693bbec7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gaviota 
\entryTyp root 
\gENG 
\gSPN 
\e +gaviota 
\c N0 
\ach gavio:ta 
\akh gavio:ta 
\acl gavio:ta 
\akl gavio:ta 
\ame gavio:ta 
\i Lev 11.16,17 avestruzta, tucuy casta tucucunata, gaviötata, tucuy casta yacu pätucunata,</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="b17973ee-a11a-4411-a998-d85347bd89e2" ownerguid="1798391b-b843-4b16-bcf6-5cbdfece91c3"> -<Form> -<AUni ws="qvm-x-ach">mancha</AUni> -<AUni ws="qvm-x-acl">mancha</AUni> -<AUni ws="qvm-x-akh">mancha</AUni> -<AUni ws="qvm-x-akl">mancha</AUni> -<AUni ws="qvm-x-ame">mancha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b179d84c-6be8-4ed8-b494-8afb002b0e47" ownerguid="1c8d22d3-7a3d-489e-98f7-387b87ca10db"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">drink</AUni> -<AUni ws="es">bebida</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="06e37cd0-8b02-4109-b2e1-85b01edba404" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="b17e6e3e-90f4-4b02-81b7-fd472be8c9bd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">parte:ra</AUni> -<AUni ws="qvm-x-acl">parte:ra</AUni> -<AUni ws="qvm-x-akh">parte:ra</AUni> -<AUni ws="qvm-x-akl">parte:ra</AUni> -<AUni ws="qvm-x-ame">parte:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+partera</AUni> -<AUni ws="qvm-x-acl">+partera</AUni> -<AUni ws="qvm-x-akh">+partera</AUni> -<AUni ws="qvm-x-akl">+partera</AUni> -<AUni ws="qvm-x-ame">+partera</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.727" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="22585b10-ded1-45c2-8f80-bb2018a59914" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+partera</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="69bbe4cc-01df-4a0d-b779-5eee93ff4358" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="32f40f19-a8c8-4a2b-ad07-127d084cb751" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +partera 
\entryTyp root 
\gENG midwife 
\gSPN 
\e +partera 
\c N0 
\ach parte:ra 
\akh parte:ra 
\acl parte:ra 
\akl parte:ra 
\ame parte:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="b17fe1fe-024b-4742-a58c-d21981cfad14" ownerguid="29282c30-0be7-4a11-8742-bb1ff919cfa6"> -<Form> -<AUni ws="qvm-x-ach">garapachu; garapacha</AUni> -<AUni ws="qvm-x-acl">garapachu; garapacho; garapacha</AUni> -<AUni ws="qvm-x-akh">qarapachu; qarapacha</AUni> -<AUni ws="qvm-x-akl">qarapachu; qarapacho; qarapacha</AUni> -<AUni ws="qvm-x-ame">qarapachu; qarapacha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="b18717c0-6eb0-4c3b-bf66-ffe5127e3d43" ownerguid="c9084524-56b4-44e2-84c0-6c4294cbf0ea"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b1871824-6cc4-414e-9974-e890a07f8757" ownerguid="345e019f-87d2-415d-ba37-9fb85460f7e1"> -<ExampleWords> -<AUni ws="en">harvest lumber, cut down, chop down, to log, wood cutting, clear cut, fell a tree</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What activities are involved in lumbering?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b1893c78-7d24-4e0b-96ee-c025b9760103" ownerguid="2621e605-3ecc-4f3d-b28c-f8c92b3c4584"> -<ExampleWords> -<AUni ws="en">texture, surface, (to have a) feel, (it) feels (rough), quality, grain, prickly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to how something feels?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b18b54fd-1f5b-4130-9753-90c321ed95fb" ownerguid="f7281629-f8ed-4672-a055-02ab7730030f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">staff</AUni> -<AUni ws="es">palo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bb7bc00e-495a-4069-88d0-970477a84199" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="b18d63fa-f6b9-4440-8bfd-ea55504a62dc" ownerguid="d52fd88d-9fda-4915-9cab-f82c0e044534"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">plow</AUni> -<AUni ws="es">arado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="088c3b35-a2e0-4913-93cf-94aa3b3dcacc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b1910bde-0a52-49bd-996b-fd3902c5c283" ownerguid="7bc9bc23-8a4e-49de-993a-0d2acd7282c3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="b194d54e-4876-45b0-81a5-390de1d41dc4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pucla</AUni> -<AUni ws="qvm-x-acl">pucla</AUni> -<AUni ws="qvm-x-akh">pukla</AUni> -<AUni ws="qvm-x-akl">pukla</AUni> -<AUni ws="qvm-x-ame">pukla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puklla.n</AUni> -<AUni ws="qvm-x-acl">*puklla.n</AUni> -<AUni ws="qvm-x-akh">*puklla.n</AUni> -<AUni ws="qvm-x-akl">*puklla.n</AUni> -<AUni ws="qvm-x-ame">*puklla.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.982" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="67ee89ca-6eaf-4a7f-97b6-866eb75eed15" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puklla.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b5b7b0c0-8f9b-4ec5-9ca7-e94415af70a2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="46248702-8e45-4760-82d8-3ed715109b89" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puklla.n 
\entryTyp root 
\gENG game 
\gSPN partido 
\e *puklla.n 
\c N0 
\ach pucla 
\akh pukla 
\acl pucla 
\akl pukla 
\ame pukla</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b1950a3e-9574-4128-9dde-da6068253b12" ownerguid="7c80f6ee-e76d-4903-aee6-7a33d1da3f75"> -<ExampleWords> -<AUni ws="en">cover, bury, drape, hang, spread, wrap</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to covering something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b195d644-4338-47aa-b7f2-7f515df1bea5" ownerguid="59d19623-0f3b-484d-96eb-a9093b020c8d"> -<ExampleWords> -<AUni ws="en">take an oath, swear, solemnly swear, promise, guarantee, invoke a curse, vow, forswear, raise right hand, blood oath, adjure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to taking an oath?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b197f38e-d2fb-4e9a-87df-e50eeb6a4b45" ownerguid="5fa2d1bc-777b-49e4-bf4d-188dab771e54"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 V0/V0 R0/R0 ONSHEV/ONSHEV BN/BN</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">DIR</AUni> -<AUni ws="es">DIR</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="b1991248-42aa-4b9b-9346-adcc24d0fbe5" ownerguid="4e330f00-ea0d-4354-8f03-8b892281201f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rude</AUni> -<AUni ws="es">malcriado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f99d65bb-e002-46d2-ac27-666fd5c95bc5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="b19f1030-aa45-4184-996e-bc5edc3201c9" ownerguid="3c549735-95e1-4af3-ab1f-e0d8f93f4297"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">carry</AUni> -<AUni ws="es">llevar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2dc01132-0b36-4620-9b68-4bb310ceaf1d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="b19f6456-c6b2-462d-b28e-0c3139956b44" ownerguid="21bd5d63-6ac9-4381-86e9-8c4da4b70e50"> -<Form> -<AUni ws="qvm-x-ach">tiempu; tiempo</AUni> -<AUni ws="qvm-x-acl">tiempu; tiempu; tiempo</AUni> -<AUni ws="qvm-x-akh">tiempu; tiempo</AUni> -<AUni ws="qvm-x-akl">tiempu; tiempu; tiempo</AUni> -<AUni ws="qvm-x-ame">tiempu; tiempo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b1a33dfa-08c8-479c-88cd-a86e96e17afc" ownerguid="8c33d2c7-3043-4943-945f-37a6b4e8bd7b"> -<Form> -<AUni ws="qvm-x-ach">cuncha</AUni> -<AUni ws="qvm-x-acl">cuncha</AUni> -<AUni ws="qvm-x-akh">kuncha</AUni> -<AUni ws="qvm-x-akl">kuncha</AUni> -<AUni ws="qvm-x-ame">kuncha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b1a5e891-14fe-417b-bcd7-78030a47b2ee" ownerguid="34c3edad-a158-44e7-989b-5b74401e6945"> -<ExampleWords> -<AUni ws="en">spread, drift, creep along the ground, vapor trail, rise</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the movement of gas?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b1a62e2e-70fd-41b6-b470-a6dd665de204" ownerguid="41270f2a-7fab-42b4-9771-f300041a4427"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="b1a8b40f-7404-4a7a-a42a-782ddcd2debd" ownerguid="307bd120-e876-4218-b489-8c794914b8c6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">nga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">nga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">nqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">nqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="5dcad267-89ba-4258-b423-e84c57ba90ed" t="r" /> -</Morph> -<Msa> -<objsur guid="cdacd2fc-4611-457d-b88f-3c9c8bb345b9" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="b1ac3b9b-6649-4ee9-bd87-237e550d2623" ownerguid="39db0b37-53b3-4cb4-b539-23fadcc865e7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="b1ac5179-f888-4fb1-a8ba-b108e78acca8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">remenda</AUni> -<AUni ws="qvm-x-acl">remenda</AUni> -<AUni ws="qvm-x-akh">remenda</AUni> -<AUni ws="qvm-x-akl">remenda</AUni> -<AUni ws="qvm-x-ame">remenda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+remendar</AUni> -<AUni ws="qvm-x-acl">+remendar</AUni> -<AUni ws="qvm-x-akh">+remendar</AUni> -<AUni ws="qvm-x-akl">+remendar</AUni> -<AUni ws="qvm-x-ame">+remendar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.328" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="47b6bcfb-4c27-4608-b978-8921a95b031a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+remendar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2cb7ba38-be8e-4f01-8801-0bbded208392" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="41cae28f-73b2-4828-9226-b04fb727955e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +remendar 
\entryTyp root 
\gENG mend 
\gSPN remendar 
\e +remendar 
\c V2 
\ach remenda 
\akh remenda 
\acl remenda 
\akl remenda 
\ame remenda</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="b1b656ec-b1d1-4696-b448-1ae5e54a5804" ownerguid="2bb178b7-e4b6-423a-a109-a97207cfba90"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="105fbd07-5c5e-488e-a817-72c78b290cb0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b1bdfbba-bc97-4a7b-93c3-2dd9ae94b147" ownerguid="e03998cf-0b4d-49ea-b9a8-15a3e3ca2c81"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="b1be4642-75c0-4395-a172-ab574c4dc188" ownerguid="0cbef6d0-3121-4610-8696-a123e2cc7913"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="0c83772c-83cb-41b8-b65f-d447c23e1531" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="b1c068f6-0929-4233-b752-560893ad840b" ownerguid="f0381c4b-881e-4e9f-a5a9-6e081cde914f"> -<Form> -<AUni ws="qvm-x-ach">cementu; cemento</AUni> -<AUni ws="qvm-x-acl">cementu; cementu; cemento</AUni> -<AUni ws="qvm-x-akh">cementu; cemento</AUni> -<AUni ws="qvm-x-akl">cementu; cementu; cemento</AUni> -<AUni ws="qvm-x-ame">cementu; cemento</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b1c11e8f-b65b-4a74-9641-fda636460b45" ownerguid="709d43dd-ce94-4df1-91b1-edb0b12fdaea"> -<ExampleWords> -<AUni ws="en">wipe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to rubbing something to make it clean?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b1c1dde8-eb4b-4220-b6b2-d554fadfd634" ownerguid="318c8249-be92-4a1d-a930-d896c7f33f34"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="b1c380f9-449a-41d9-bb60-fbaf246d22e8" ownerguid="10b13e82-37db-41e0-b912-0fca0351db84"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">AMO 2.13 Muytipaylapa cargashga aywaycag carrëta pampata panatashgannogmi ushacätsishayqui.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="b1c56d38-87bb-433c-9e5b-c160f30f9f6e" ownerguid="547f1151-5816-4d89-b0bc-ece2a86c92eb"> -<ExampleWords> -<AUni ws="en">housewarming</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a celebration when moving into a new house?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b1c6288b-7296-4820-ab40-1d13b6284205" ownerguid="ea46de30-a1a9-4828-84a8-9165f61f8b20"> -<ExampleWords> -<AUni ws="en">catch, scale, gut, clean, smoke, dry, smoked fish, dried fish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What do people do to fish?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b1c74096-907d-409a-ba54-700e6774ea7f" ownerguid="136b4d64-de79-48b9-8014-8bf9ac7b6d41"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="b6319200-7903-4eb0-ae91-1cce5ccb31a6" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">current</AUni> -<AUni ws="es">corriente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="df14a75d-d776-4cfc-a19e-82076f6c8de2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b1c78f49-d270-409a-b94e-969f2a47eeac" ownerguid="98dc4bb9-47a5-4f61-9a89-e7a1b5d0f0ba"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="b1ca3252-b6ab-4704-b3fc-152cbdebbf7f" ownerguid="ad852fb4-7c09-4628-81bc-d28b7174cc0e"> -<Form> -<AUni ws="qvm-x-ach">defrenti; defrente</AUni> -<AUni ws="qvm-x-acl">defrenti; defrente; defrenti</AUni> -<AUni ws="qvm-x-akh">defrenti; defrente</AUni> -<AUni ws="qvm-x-akl">defrenti; defrente; defrenti</AUni> -<AUni ws="qvm-x-ame">defrenti; defrente</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b1cc65e7-e769-4f0d-93d4-eb15878f989e" ownerguid="e76227e8-4a04-4fbd-a16e-5baa3d9e97a9"> -<ExampleWords> -<AUni ws="en">strike, coil, crush (prey), sun (themselves), venom</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What do snakes do?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b1cca5a4-7bba-4b94-9236-aea20b34bc62" ownerguid="a1959b00-9702-4b45-ac46-93f18d3bc5e6"> -<ExampleWords> -<AUni ws="en">breathe hard, pant, huff and puff, gulp</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to breathing quickly?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b1cdb80c-35c5-4979-883c-de2444ca71b8" ownerguid="7bed7b62-cb48-4b14-84ba-2ac199843469"> -<Form> -<AUni ws="qvm-x-ach">truca</AUni> -<AUni ws="qvm-x-acl">truca</AUni> -<AUni ws="qvm-x-akh">truka</AUni> -<AUni ws="qvm-x-akl">truka</AUni> -<AUni ws="qvm-x-ame">truka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b1cdc8e2-8b01-4ebe-b5c3-a577470c362e" ownerguid="06052694-82c0-432e-9c25-9d72e2e32bf5"> -<Form> -<AUni ws="qvm-x-ach">chilinya; chilinyä</AUni> -<AUni ws="qvm-x-acl">chilinya; chilinyä</AUni> -<AUni ws="qvm-x-akh">chilinya; chilinyä</AUni> -<AUni ws="qvm-x-akl">chilinya; chilinyä</AUni> -<AUni ws="qvm-x-ame">chilinya; chilinyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b1ce7242-6935-41a7-a16c-0d1b76755e3c" ownerguid="fd9b8618-1f62-419b-85c3-365a12e85523"> -<ExampleWords> -<AUni ws="en">come to an agreement, come together, ratify a treaty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to two people coming to agreement?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b1cfa593-301a-42db-b1f0-ba847d6cb571" ownerguid="eeb38cbb-7102-424d-8e2d-7acabf83f477"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b1d0b6e9-1fab-4034-a54f-ae6a49a8072d" ownerguid="0aae1951-4d5b-45a0-853c-1839764c9862"> -<ExampleWords> -<AUni ws="en">shortened, shrunken</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that has been made short?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b1d16f9f-b075-4cb8-b056-d1ad90dcd870" ownerguid="ae2f0ff8-d3d7-409e-a19b-84d4bd88c1ed"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="b1d26b82-5ef7-4c46-97f1-dad7fbcc40c0" ownerguid="2704b55f-0dfc-45fd-80c9-0ff8c12f8604"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sweater</AUni> -<AUni ws="es">chompa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="401b313f-a7e7-4182-852f-1e39ba88567e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="b1d6db02-ac5c-4cbe-b174-53cad9901cf1" ownerguid="3147ae2e-bb1c-45ae-8da3-b656a0ede47d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9a9d2fee-2467-4761-b72f-910b434a9c41" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b1d7d8c4-3c9a-4920-8774-b9028904dd19" ownerguid="fe8f91de-1a1e-4603-8168-b00bab119846" /> -<rt class="MoStemAllomorph" guid="b1d88b07-0f2e-4ce9-81b1-0643e7802cae" ownerguid="9bd77b3f-9931-4150-891b-403c318907b2"> -<Form> -<AUni ws="qvm-x-ach">gashpa</AUni> -<AUni ws="qvm-x-acl">gashpa</AUni> -<AUni ws="qvm-x-akh">qashpa</AUni> -<AUni ws="qvm-x-akl">qashpa</AUni> -<AUni ws="qvm-x-ame">qashpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b1dec1a7-00c4-42c1-b35b-0a1960f2c3fc" ownerguid="2bdfe506-0a28-45bd-81e1-44dcedcc262a"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="b1e3461b-4ea1-4329-9015-56044a1882f1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ali</AUni> -<AUni ws="qvm-x-acl">ali; ali; ale</AUni> -<AUni ws="qvm-x-akh">ali</AUni> -<AUni ws="qvm-x-akl">ali; ali; ale</AUni> -<AUni ws="qvm-x-ame">ali</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*alli</AUni> -<AUni ws="qvm-x-acl">*alli</AUni> -<AUni ws="qvm-x-akh">*alli</AUni> -<AUni ws="qvm-x-akl">*alli</AUni> -<AUni ws="qvm-x-ame">*alli</AUni> -</CitationForm> -<Comment> -<AStr ws="en"> -<Run ws="en">as an adjective it can take SUP</Run> -</AStr> -</Comment> -<DateCreated val="2022-9-23 18:26:20.739" /> -<DateModified val="2022-10-15 15:38:13.415" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5909b4a6-8ff0-4757-b7a4-28e1c643883c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*alli</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="373d0f40-8d63-45ed-a36c-6d34f5970b90" t="o" /> -<objsur guid="e414c58c-943d-4c9b-91f2-c6ea5c87b68a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="eff71fbb-f3bb-45b7-8b19-d32f4157be1b" t="o" /> -<objsur guid="332c1e60-e621-426a-b90a-33ad863a78f7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *alli 
\entryTyp root 
\gENG good 
\gSPN bueno 
\e *alli 
\c N0 
\mp +FinalI 
\ach ali 
\akh ali 
\acl ali / _# 
\acl ali +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ale +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ali / _# 
\akl ali +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ale +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ali 
\mcc *alli / ~_1P.V 
\mcc *alli / ~_ [participle]</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="b1e3c056-bb71-4e65-a481-5d5d3ec4ea06" ownerguid="408a637e-691e-4969-a28f-ddd7d0b94b30"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PhPhoneme" guid="b1e553eb-ba5d-438d-a847-8b65e95ab927" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="9044efe8-73df-429b-87ec-67b873355df6" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">lengthened low central unrounded vowel</Run> -</AStr> -</Description> -<Name> -<AUni ws="qvm-x-ach">ä</AUni> -<AUni ws="qvm-x-acl">ä</AUni> -<AUni ws="qvm-x-akh">ä</AUni> -<AUni ws="qvm-x-akl">ä</AUni> -<AUni ws="qvm-x-ame">aa</AUni> -</Name> -</rt> -<rt class="CmDomainQ" guid="b1e8d23b-59c9-4d9e-b7ef-5fb7d2e3347c" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<ExampleWords> -<AUni ws="en">shepherd, herdsman</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the occupations in animal husbandry?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b1eae67a-fb81-4f62-acf3-1804d0cc7cc5" ownerguid="8f2ad124-6c59-43c3-8c46-7092ee10b10e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="07720a23-a149-4dad-b617-a9ac8ff5f752" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="6555876c-bca0-4e6a-9dfa-91ba9e240cae" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="b1ebff21-611f-4f0c-86ae-9d33085c144d" ownerguid="a13c2ff6-9c41-47ff-be93-775adc41e4a0"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">almatacashga. - micanar</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="b1f3f291-8627-46eb-8811-f906d7ca3e04" ownerguid="0066f0f7-02dd-4f8e-afa5-59b8cb5a434a"> -<ExampleWords> -<AUni ws="en">hand over, deliver</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to handing someone over to his enemies?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="b1fbe262-b187-4221-98ba-17f8da8d42e1"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Tsaynöpis</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="b1fd58f0-f98a-4c9e-b75b-a2034e4d25f8" ownerguid="dc5efcfb-dc41-4af4-9357-5eb7c6578708"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hurt</AUni> -<AUni ws="es">doler</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="11c918f1-ab12-4cc7-8a78-32c972895b51" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="b1fd6378-0f32-452b-9274-60b4a79cd5b6" ownerguid="7002a15a-d1b9-40b1-b746-af6950273652"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">scatter</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a4d4f914-68ed-45b2-8241-82ac30cd1623" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b1fd9e10-82b4-48dc-bb05-41fff4e62e04" ownerguid="4d1ac5e6-dfe3-4643-b6e5-21649a01cce9"> -<ExampleWords> -<AUni ws="en">ride, ride the rails, go on the train</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to moving in a train?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b1fe10fb-af55-4779-8f36-6e0ed972e18c" ownerguid="31e0fde8-b3ab-47ae-b791-54309e6ed0bd"> -<ExampleWords> -<AUni ws="en">contemporary, avant-garde, futuristic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe modern art, literature, or music?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b1fffbdd-de57-4184-a42c-2de8fa6a363b" ownerguid="a2e9f6ab-ef2e-40b3-9014-cfbfb89e0590"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b2007d1f-fc95-41e0-8e25-f577f3d1c415" ownerguid="18595df7-1c69-40db-a7c1-74d490115c0c"> -<ExampleWords> -<AUni ws="en">blow up, inflate, pump up, pneumatic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to putting air into something (such as a tire or balloon)?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b206df6d-1231-4c73-bd6c-1c5a95114fab" ownerguid="bd81aa47-8112-4aab-b293-fdd2fc71869d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="b2098dbe-5e39-4b1a-a5c5-01f11844ce59" ownerguid="59923773-7a83-4932-8f63-86758743d8fd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">agree</AUni> -<AUni ws="es">concordar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2a41ef6f-bc95-4429-8202-c7f639a0eadc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b20a059b-fbf2-4ca1-b62f-f7748417389f" ownerguid="4cf28853-34b3-417b-8eee-8d5edcba2660"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="b20bcab4-45ab-4aca-915c-df0a8a08666a" ownerguid="bcc5be3f-fcee-4504-abba-7d2cb3871412"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="b20e8cef-5d0e-4f24-b6a2-46c381144d36" ownerguid="ceb6ed65-188e-46d7-ad10-076cba0d49db"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6fe49b5e-093a-457b-9f14-02b68e8cec63" t="r" /> -</Morph> -</rt> -<rt class="CmDomainQ" guid="b20ea700-233b-4ed7-acea-838754274f45" ownerguid="93b8bd61-137a-4ebc-b12f-52fa5d2b3ea4"> -<ExampleWords> -<AUni ws="en">heavy wind, strong wind, squall, gale, stormy wind, howling wind</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe a strong wind?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b20fa758-fe17-43d6-bdf2-528ee8706e9a" ownerguid="2c7cb499-562d-4b42-8f26-e3317e0f4c69"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="b21435d2-137a-4111-8f63-6ffeea671b2c" ownerguid="40ffe791-d9ca-4135-a1df-e308e27feedb"> -<Form> -<AUni ws="qvm-x-ach">shicra</AUni> -<AUni ws="qvm-x-acl">shicra</AUni> -<AUni ws="qvm-x-akh">shikra</AUni> -<AUni ws="qvm-x-akl">shikra</AUni> -<AUni ws="qvm-x-ame">shikra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b2150e1b-1141-427c-8a3d-cfdd23bc55bd" ownerguid="1e419f7a-7363-46bc-8044-157ed0b40ccd"> -<ExampleWords> -<AUni ws="en">release, let go of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to releasing something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b2165782-bfba-49d3-b34a-5b3298d5fba5" ownerguid="38877d9c-e6c5-4593-b01f-500c0fc607a6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="b2168c7b-a242-4b7a-9248-22638ba4852f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maquipalta</AUni> -<AUni ws="qvm-x-acl">maquipalta</AUni> -<AUni ws="qvm-x-akh">makipalta</AUni> -<AUni ws="qvm-x-akl">makipalta</AUni> -<AUni ws="qvm-x-ame">makipalta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*makipallta</AUni> -<AUni ws="qvm-x-acl">*makipallta</AUni> -<AUni ws="qvm-x-akh">*makipallta</AUni> -<AUni ws="qvm-x-akl">*makipallta</AUni> -<AUni ws="qvm-x-ame">*makipallta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.265" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9f68c237-5e34-484e-8055-fa32b54f7f63" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*makipallta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6399871e-cf57-4efa-b016-169c2ea12075" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="984253d0-1436-4821-8df0-0896634c6dd5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *makipallta 
\entryTyp root 
\gENG palm.of.hand 
\gSPN 
\e *makipallta 
\c N0 
\ach maquipalta 
\akh makipalta 
\acl maquipalta 
\akl makipalta 
\ame makipalta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="b2192fec-bc78-4900-b363-4ad62318be86"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maran</AUni> -<AUni ws="qvm-x-acl">maran</AUni> -<AUni ws="qvm-x-akh">maran</AUni> -<AUni ws="qvm-x-akl">maran</AUni> -<AUni ws="qvm-x-ame">maran</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*maran</AUni> -<AUni ws="qvm-x-acl">*maran</AUni> -<AUni ws="qvm-x-akh">*maran</AUni> -<AUni ws="qvm-x-akl">*maran</AUni> -<AUni ws="qvm-x-ame">*maran</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.336" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2fca5547-5210-4cee-82aa-bbee936f2d79" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*maran</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0e367670-5845-46a2-9c69-5b4a172c72cc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8946b9bd-7248-4f43-b930-4f99d8d3ebba" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *maran 
\entryTyp root 
\gENG 
\gSPN antiguo 
\e *maran 
\c N0 
\mp +FinalC 
\ach maran 
\akh maran 
\acl maran 
\akl maran 
\ame maran</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="b21ace5f-9307-4bdc-b103-9fdf14a5655e" ownerguid="14ad95ad-50fc-450f-b44d-4273df0b1e8b"> -<Abbreviation> -<AUni ws="en">8.4.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.638" /> -<DateModified val="2022-9-23 16:55:8.638" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a week.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Week</AUni> -</Name> -<Questions> -<objsur guid="5289aec4-ea69-4f3d-a43b-f76b620eb734" t="o" /> -<objsur guid="12b71a69-0c2f-4af3-8fb2-ec28fb8482db" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="de544ebd-9f94-4831-8887-944c3bbbc254" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="b21df06c-8f92-4b34-ba4a-3889d9c96ff9" ownerguid="4e7a6dfe-3654-4ca1-874d-02424581b774"> -<ExampleWords> -<AUni ws="en">shallows, shoal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to a shallow place?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b21e144f-215a-4707-b239-a653504fc2d1" ownerguid="1c3f8996-362e-4ee0-af02-0dd02887f6aa"> -<ExampleWords> -<AUni ws="en">Heaven, the highest heaven, the abode of God, the throne of God</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What is the place or home of God called?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b220166f-5b5e-40a0-a39c-7dc4822d9780" ownerguid="e77dc0f6-a090-4220-b557-b93910b63f75"> -<Form> -<AUni ws="qvm-x-ach">yanapa</AUni> -<AUni ws="qvm-x-acl">yanapa</AUni> -<AUni ws="qvm-x-akh">yanapa</AUni> -<AUni ws="qvm-x-akl">yanapa</AUni> -<AUni ws="qvm-x-ame">yanapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b22216d8-4352-49a7-80b3-f6e9e5287b44" ownerguid="7d8898d6-6296-4d4d-b8dd-2f48c49f9e98"> -<ExampleWords> -<AUni ws="en">be high up, high above, far above, way up there, sky-high, up in the air, be aloft</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that something is high in the air?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b224ea84-c5cf-4843-88a3-82f7dc28cc33" ownerguid="627280f0-4f98-4b31-ad23-eabe37b002ad"> -<ExampleWords> -<AUni ws="en">thin, spindly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something like a branch or rope that is thin?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b22cda5b-7012-4dbd-ba80-7d1e97978390" ownerguid="73dfe06b-5660-4e22-8064-6a0dead8e3de"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b22ea8d8-e929-43d7-ab66-e40feb611b69" ownerguid="d7140538-fb99-4af9-8398-8c31a1b79fb5"> -<ExampleWords> -<AUni ws="en">lock up, cage, confine, contain, corral, shut up, trap</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to preventing someone from moving by putting them in an enclosure?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b233ad14-84dc-4edd-9d8d-cc86dc46719e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pilu</AUni> -<AUni ws="qvm-x-acl">pilu; pilo</AUni> -<AUni ws="qvm-x-akh">pilu</AUni> -<AUni ws="qvm-x-akl">pilu; pilo</AUni> -<AUni ws="qvm-x-ame">pilu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pillu.v</AUni> -<AUni ws="qvm-x-acl">*pillu.v</AUni> -<AUni ws="qvm-x-akh">*pillu.v</AUni> -<AUni ws="qvm-x-akl">*pillu.v</AUni> -<AUni ws="qvm-x-ame">*pillu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.838" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="552921ee-61b0-4b79-b398-e35100319eb1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pillu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3cc9dac6-326c-4195-bdc0-c9c8c63eb94c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="82504db3-c46c-4e74-9ae7-e88b69d40655" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pillu.v 
\entryTyp root 
\gENG wind 
\gSPN enrollar 
\e *pillu.v 
\c V2 
\ach pilu 
\akh pilu 
\acl pilu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pilo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pilu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pilo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pilu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b233ade9-ffa9-4259-8972-eea377b4197f" ownerguid="c6688928-6694-4264-8048-a60b665b5793"> -<ExampleWords> -<AUni ws="en">smokers cough, smokers hack, habit, addiction, lung cancer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What affect does tobacco have on a person?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b237c55d-2e98-47a9-8ac9-e5bc5f10b477" ownerguid="fb84538a-17a8-4adc-8d50-e2b66f8e4099"> -<ExampleWords> -<AUni ws="en">even, odd, positive, negative, infinite, cardinal, ordinal, whole, fraction, decimal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe different kinds of numbers?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b2384851-cca7-4dd2-9410-b7095bb9bf4d" ownerguid="32bf055a-d666-4d6e-a3c6-6c984e2c9868"> -<ExampleWords> -<AUni ws="en">operator</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a person who works for the telephone company?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b23a7c89-50e9-4487-86fc-efee9a0243db" ownerguid="790462ec-625c-44b3-a794-ed4339017602"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="b23abbad-ecf7-48cd-805e-0e5bb2edbfc9" ownerguid="1ec2677e-e1d1-46bf-bb5c-03a58b5e96b5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="b23b9297-f72d-4cb6-9807-843856f6663a" ownerguid="0ff4cbb1-904f-42fc-aaa7-30e6f45273d5"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="b23e325a-5b19-4224-bd78-8226754ec659"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Quelión</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="b23e4e0c-056a-481a-8d94-5e3e26c52129" ownerguid="ff7e3abd-6810-4128-83c9-701b4925c2fe"> -<ExampleWords> -<AUni ws="en">campfire, hellfire</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to where the fire is?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b24000d9-a34a-4c7f-8bf3-793538c2b741" ownerguid="e10baccf-7e2e-43c3-b5db-4433b589673e"> -<Form> -<AUni ws="qvm-x-ach">según</AUni> -<AUni ws="qvm-x-acl">según</AUni> -<AUni ws="qvm-x-akh">según</AUni> -<AUni ws="qvm-x-akl">según</AUni> -<AUni ws="qvm-x-ame">según</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="b2479069-3ae2-4fb4-b578-ffc0950c094c" ownerguid="17bbd739-7fc0-4013-97f0-1805e465c65b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="b24963c1-6752-46a5-b431-339c0d18a462" ownerguid="c2563ea4-c463-45ec-962e-938f8f832519"> -<Form> -<AUni ws="qvm-x-ach">cuandu; cuando</AUni> -<AUni ws="qvm-x-acl">cuandu; cuandu; cuando</AUni> -<AUni ws="qvm-x-akh">cuandu; cuando</AUni> -<AUni ws="qvm-x-akl">cuandu; cuandu; cuando</AUni> -<AUni ws="qvm-x-ame">cuandu; cuando</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="b24c2256-9970-4c1a-8dce-048a105cb93a" ownerguid="2ab6f9f3-60c4-49e9-8068-4cd757b56390"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="b24c4d73-7d0f-4475-a4b5-ead6687cf321" ownerguid="4ba1cb76-f683-42bd-80d8-5997db4824f8"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="b24d098c-b6f0-411a-909d-6566b23f2d91"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">apropo:situ</AUni> -<AUni ws="qvm-x-acl">apropo:situ; apropo:situ; apropo:sito</AUni> -<AUni ws="qvm-x-akh">apropo:situ</AUni> -<AUni ws="qvm-x-akl">apropo:situ; apropo:situ; apropo:sito</AUni> -<AUni ws="qvm-x-ame">apropo:situ</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+a.propósito.2</AUni> -<AUni ws="qvm-x-acl">+a.propósito.2</AUni> -<AUni ws="qvm-x-akh">+a.propósito.2</AUni> -<AUni ws="qvm-x-akl">+a.propósito.2</AUni> -<AUni ws="qvm-x-ame">+a.propósito.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.931" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8d05ade3-be50-41ef-af94-3ea7e4be06ce" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+a.propósito.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8589599f-3ef1-4df3-af4c-f885bed3da45" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3b5e5f19-53ee-4bf0-bba6-91da27a3a405" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +a.propósito.2 
\entryTyp root 
\gENG 
\gSPN 
\e +a.propósito.2 
\c R0 
\ach apropo:situ 
\akh apropo:situ 
\acl apropo:situ / _# 
\acl apropo:situ +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl apropo:sito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl apropo:situ / _# 
\akl apropo:situ +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl apropo:sito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame apropo:situ</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="b24fbd33-a2aa-4274-8198-d6eef8f0345f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ma:sa</AUni> -<AUni ws="qvm-x-acl">ma:sa</AUni> -<AUni ws="qvm-x-akh">ma:sa</AUni> -<AUni ws="qvm-x-akl">ma:sa</AUni> -<AUni ws="qvm-x-ame">ma:sa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+masa</AUni> -<AUni ws="qvm-x-acl">+masa</AUni> -<AUni ws="qvm-x-akh">+masa</AUni> -<AUni ws="qvm-x-akl">+masa</AUni> -<AUni ws="qvm-x-ame">+masa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.346" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fadf967f-127d-46dd-aa31-b39b26b93be7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+masa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ead54c85-6f26-486e-aa3a-5e4e957b2055" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7557073b-241d-40a3-bafa-e6236eac9844" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +masa 
\entryTyp root 
\gENG dough 
\gSPN masa 
\e +masa 
\c N0 
\ach ma:sa 
\akh ma:sa 
\acl ma:sa 
\akl ma:sa 
\ame ma:sa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="b2572ed5-5ea8-4243-be67-f17da23e8132" ownerguid="6972ac50-bbd2-48c7-8a04-1fb6c4439d2d"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">AMO 5.27 Tsaynog cashgayquipitami gamcunata castigar Damascupita mas washagan tsaqui jircaman gargutsishayquipag.>></Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="b263a395-61dd-4e11-951a-326aeb7f5538" ownerguid="b4e6c077-4f5e-44f3-8868-1f7ae3486585"> -<ExampleWords> -<AUni ws="en">place setting</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the utensils used by one person?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b2678bec-f841-4524-88ba-a0163bfbe6b6" ownerguid="991357dc-9f56-47ed-8790-85cbd5f9b06f"> -<ExampleWords> -<AUni ws="en">transport, transportation, carry, cart, convey, drive, ferry, fly, haul, row, truck, trundle, wheel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving something in a vehicle?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b267cd1d-c859-47d3-a470-f7fabb7966e5" ownerguid="1b6b0c12-9ecd-45cb-bb0e-0dadb435eddf"> -<ExampleWords> -<AUni ws="en">productive, prolific</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe someone who makes many things?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b26866bb-29c8-415d-ae12-3bd84c011f5d" ownerguid="c5f858b4-ca56-41d2-9bfb-4d31af4ecaac"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">in.love</AUni> -<AUni ws="es">enamorado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="470f6338-ad88-4079-bbbb-a153011c7edc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b26a663f-ef47-48fc-a305-7d2f5879e04d" ownerguid="16d2c60a-52d7-4ec5-a5b1-c559dc078bf3"> -<ExampleWords> -<AUni ws="en">gun, revolver, billy club, handcuffs, police uniform, badge, police car, siren, police radio, whistle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What tools do police use?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b272cfe4-e8d9-48d1-a823-d319691d82e3" ownerguid="ed4a2ca6-c03c-4c72-9431-b72fb7294b8f"> -<ExampleWords> -<AUni ws="en">newlyweds, honeymooner, man and wife</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to the husband and wife after the wedding?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b275f58d-9a5d-411f-a811-7a8347a8a4e1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chaufer</AUni> -<AUni ws="qvm-x-acl">chaufer</AUni> -<AUni ws="qvm-x-akh">chaufer</AUni> -<AUni ws="qvm-x-akl">chaufer</AUni> -<AUni ws="qvm-x-ame">chaufer</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+chaufer</AUni> -<AUni ws="qvm-x-acl">+chaufer</AUni> -<AUni ws="qvm-x-akh">+chaufer</AUni> -<AUni ws="qvm-x-akl">+chaufer</AUni> -<AUni ws="qvm-x-ame">+chaufer</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.295" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1b021e14-ef44-4c61-a64c-17a54ec01862" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+chaufer</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1c75221c-77ff-4c61-81f4-eeef1b7305e0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d3835f8a-caeb-4418-a3c8-11469c9e43dc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +chaufer 
\entryTyp root 
\gENG driver 
\gSPN chaufer 
\e +chaufer 
\c N0 
\mp +FinalC 
\ach chaufer 
\akh chaufer 
\acl chaufer 
\akl chaufer 
\ame chaufer</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="b275f951-f97b-4ff8-a5ad-9210660be774" ownerguid="917dd571-2df9-4c5c-b438-3785933f9c42"> -<Form> -<AUni ws="qvm-x-ach">quësu</AUni> -<AUni ws="qvm-x-acl">quësu; quësu; quëso</AUni> -<AUni ws="qvm-x-akh">quësu</AUni> -<AUni ws="qvm-x-akl">quësu; quësu; quëso</AUni> -<AUni ws="qvm-x-ame">quësu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b2777f54-8484-4db5-a1cd-adc28f8127eb" ownerguid="31d0407f-cb5e-4fae-96c7-bbef69cc8009"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bug</AUni> -<AUni ws="es">bichu</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="57cf7295-3398-4be3-be2c-56f0cd62268d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="PhEnvironment" guid="b27c54e7-0a24-46d7-b332-e63a45ecffc2" ownerguid="be765e3e-ea5e-11de-9d42-0013722f8dec"> -<Name> -<AUni ws="en">before two consonants + vowel</AUni> -</Name> -<StringRepresentation> -<Str> -<Run underline="none" ws="en">/_</Run> -<Run underline="none" ws="qvm-x-akh">[C][C][V]</Run> -</Str> -</StringRepresentation> -</rt> -<rt class="CmDomainQ" guid="b2802b68-bd04-42ab-b804-579af286ce58" ownerguid="08239f53-daa5-47a6-9f39-29a9064b0c27"> -<ExampleWords> -<AUni ws="en">union, unity, assembly, assemblage, bundle, ensemble, merger, trinity, triumvirate, partnership, compound, couple, coupling, conglomerate, combination, construct (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to something made by joining things together?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b281c2a1-e437-4c28-abc0-f935f65e4d43" ownerguid="26d1d925-99fd-481c-8d85-8984a8eb331e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pass</AUni> -<AUni ws="es">pasar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b7f64f45-98d1-4eac-9cd3-956bf92b1494" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="b2830b72-c642-484f-9485-24682aa11ed8" ownerguid="61f52196-a8b2-496d-96ea-8c15dc7d377a"> -<Abbreviation> -<AUni ws="en">4.9.4.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.296" /> -<DateModified val="2022-9-23 16:55:8.296" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to supernatural knowledge.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Omen, divination</AUni> -</Name> -<OcmCodes> -<Uni>787 Revelation and Divination</Uni> -</OcmCodes> -<Questions> -<objsur guid="d672da34-1edb-43c4-94f7-d0ca53479019" t="o" /> -<objsur guid="62abc639-b907-484e-a340-2f974a96c257" t="o" /> -<objsur guid="83a70d45-3276-4213-84c5-7b447d50bec3" t="o" /> -<objsur guid="f503145d-b71a-4044-a90e-333cff5db8bb" t="o" /> -<objsur guid="c302d6ca-0dff-45aa-b8f8-b22f10ccaa26" t="o" /> -<objsur guid="6c922f7a-8620-4e98-beea-579e75866305" t="o" /> -<objsur guid="32637235-4346-4317-961a-7c4ac62566c6" t="o" /> -<objsur guid="71b73b15-6d5c-4158-939e-a5b062f33b7c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="b2830b88-2927-4dd0-b99d-a7c33904266b" ownerguid="2ae33e10-d42f-492c-9429-f486fb613a7d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">la</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">la</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">la</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">la</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">la</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7e3a2a21-331d-4db9-8026-9cb6ee2cd414" t="r" /> -</Morph> -<Msa> -<objsur guid="5a4d9e40-3b93-4303-947b-5d6ee7f02108" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="b28406f8-eee1-4263-8a78-47b432a9efe8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mogu</AUni> -<AUni ws="qvm-x-acl">mogu; mogu; mogo</AUni> -<AUni ws="qvm-x-akh">moqu</AUni> -<AUni ws="qvm-x-akl">moqu; moqu; moqo</AUni> -<AUni ws="qvm-x-ame">muqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*muqu</AUni> -<AUni ws="qvm-x-acl">*muqu</AUni> -<AUni ws="qvm-x-akh">*muqu</AUni> -<AUni ws="qvm-x-akl">*muqu</AUni> -<AUni ws="qvm-x-ame">*muqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.527" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="056f46da-35bc-4e3c-b5db-5b0c24f6a653" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*muqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e9a6dfc8-d0c0-4c27-8b27-526a4387e38d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9e26a07d-3f4f-4b4f-9c9d-b818519ffeb7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *muqu 
\entryTyp root 
\gENG joint 
\gSPN coyuntura 
\e *muqu 
\c N0 
\ach mogu 
\akh moqu 
\acl mogu / _# 
\acl mogu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mogo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl moqu / _# 
\akl moqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl moqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame muqu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="b285bc3b-ba9f-4160-8e79-81dd43dfdbaa" ownerguid="d68911f6-6507-483a-b015-44726fdf868a"> -<Abbreviation> -<AUni ws="en">6.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.367" /> -<DateModified val="2022-9-23 16:55:8.367" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being unemployed.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Unemployed, not working</AUni> -</Name> -<Questions> -<objsur guid="d3449f95-5dee-4a1c-b94d-de03b0c395dc" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="b28648a5-419b-4fe5-a5d7-0f68ab346398" ownerguid="c01d8a5a-3f39-4061-9da5-f37d95177dee"> -<Form> -<AUni ws="qvm-x-ach">carga</AUni> -<AUni ws="qvm-x-acl">carga</AUni> -<AUni ws="qvm-x-akh">carga</AUni> -<AUni ws="qvm-x-akl">carga</AUni> -<AUni ws="qvm-x-ame">carga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b288f0f1-b148-4b70-87f1-0cd24f92dd5d" ownerguid="2ab52bfe-a1f6-483a-bd7b-f4524a6b0c16"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="4dcee76b-2e7c-4757-8ffe-48c85f72e5df" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">cry</AUni> -<AUni ws="es">llorar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dae1adcc-bc09-4a2e-8fca-8dd1fcb23810" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b2897a27-9f71-40ac-9694-afedb67fd7ee" ownerguid="858af232-b570-4153-b4c0-f60930df9ced"> -<ExampleWords> -<AUni ws="en">it seems, it appears, it looks as if, apparently, to all appearances, by all appearances, seemingly, on the face of it, on the surface, outwardly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that something seems to be happening, or something seems to be true?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b289db8d-f729-4721-87c2-f65f3f193733" ownerguid="fabae049-74c7-45b2-8ef3-cc2bded3d8f7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">family</AUni> -<AUni ws="es">familia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="48a44248-5f10-4387-ace6-8143ad224b2e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b28c1db0-7908-4151-98a3-5a55be83f59e" ownerguid="59ef732b-1fd4-48ac-a9d1-504f16919adb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="b28ef121-f4b0-42f4-b6fb-1b6b90e5e6c5" ownerguid="78e37c6a-9582-4c14-a495-43eb1171df88"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="b29004f3-b69c-4366-95b9-0ef10eb0386e" ownerguid="98c5356a-71ba-499b-8e70-016d3b607bfd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="b2919b4a-33a6-46cf-9001-177e59f2da77" ownerguid="2d3615a7-d19a-4180-81b7-67d5e2072960"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cliff</AUni> -<AUni ws="es">escarpa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9c7b4917-a0dd-4710-b73d-2e3146f89891" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b2966aaa-fb80-4b1d-be80-62f15de93e71" ownerguid="bced94e1-87fb-46b3-92f7-6b57843d610c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="b2996b9a-b242-40d5-a0ad-60305d6bdacd" ownerguid="42471d90-8ba5-45c1-b7bb-d1006b88911e"> -<Form> -<AUni ws="qvm-x-ach">chuscuni</AUni> -<AUni ws="qvm-x-acl">chuscuni; chuscuni; chuscune</AUni> -<AUni ws="qvm-x-akh">chuskuni</AUni> -<AUni ws="qvm-x-akl">chuskuni; chuskuni; chuskune</AUni> -<AUni ws="qvm-x-ame">chuskuni</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b29c27d3-5ed6-4fd3-9a8b-e5c03a7d9371" ownerguid="04582a28-b94a-4e7f-8cc4-5cdefa8a39f0"> -<ExampleWords> -<AUni ws="en">sir, Mr., mate, buddy, mister, sire, lord</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What do you call a man when you talk to him?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b29e78c9-045a-4a6c-8d87-9586d034b6ef"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">taushi</AUni> -<AUni ws="qvm-x-acl">taushi; taushe</AUni> -<AUni ws="qvm-x-akh">tawshi</AUni> -<AUni ws="qvm-x-akl">tawshi; tawshe</AUni> -<AUni ws="qvm-x-ame">tawshi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tawshi</AUni> -<AUni ws="qvm-x-acl">*tawshi</AUni> -<AUni ws="qvm-x-akh">*tawshi</AUni> -<AUni ws="qvm-x-akl">*tawshi</AUni> -<AUni ws="qvm-x-ame">*tawshi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.845" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3ffabe8c-4d3f-44aa-a488-9468675f3f8f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tawshi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c128622a-6407-4c88-bb52-097ff0b5b0e1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9de88500-fcee-49f4-b489-e4d13de155e1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tawshi 
\entryTyp root 
\gENG gouge 
\gSPN picotear 
\e *tawshi 
\c V2 
\mp +FinalI 
\ach taushi 
\akh tawshi 
\acl taushi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl taushe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tawshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tawshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tawshi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b29ec11f-3eb5-4253-8639-9c9b2940a456" ownerguid="55201761-fe2e-40d5-a2a7-8079e00a2c32"> -<ExampleWords> -<AUni ws="en">fighter, hooligan</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to someone who is fighting?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b2a30d91-2e47-45f5-a782-8709ada207a2" ownerguid="5be839f1-0799-44e9-b3fc-7bc558cef1eb"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="b2a52981-8b33-497e-83b7-a740bb8ddd11"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gaushu</AUni> -<AUni ws="qvm-x-acl">gaushu; gaushu; gausho</AUni> -<AUni ws="qvm-x-akh">qawshu</AUni> -<AUni ws="qvm-x-akl">qawshu; qawshu; qawsho</AUni> -<AUni ws="qvm-x-ame">qawshu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qawshu</AUni> -<AUni ws="qvm-x-acl">*qawshu</AUni> -<AUni ws="qvm-x-akh">*qawshu</AUni> -<AUni ws="qvm-x-akl">*qawshu</AUni> -<AUni ws="qvm-x-ame">*qawshu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.163" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1fd513e3-e1ae-48ef-a5c1-4a3d08c7f268" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qawshu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="35218f84-0e53-4849-9a4a-b2189c13dbc3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6118b2a0-2600-409f-8c03-c9ecb725623b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qawshu 
\entryTyp root 
\gENG 
\gSPN 
\e *qawshu 
\c N0 
\ach gaushu 
\akh qawshu 
\acl gaushu / _# 
\acl gaushu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gausho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qawshu / _# 
\akl qawshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qawsho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qawshu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="b2a76423-5ba7-4baf-8ccb-628baaa593b3" ownerguid="1d5e2962-0937-472e-84fb-c584fa3f5636"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">worry</AUni> -<AUni ws="es">afana</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="100efcf7-5aed-4719-9d06-feb643cd93a6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="b2a806e4-6ef4-4c46-9d6c-93a1620acfca" ownerguid="370f96de-1cae-4df6-b8a9-0ee1b125b8e0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="ac7f45a7-286e-4717-baf1-b7d9f1520707" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="6cf27f94-6493-452e-8908-46aff9b50f4e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="b2a97d92-6ce6-4640-93e4-c81eab5e885a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ama:nu</AUni> -<AUni ws="qvm-x-acl">ama:nu; ama:nu; ama:no</AUni> -<AUni ws="qvm-x-akh">ama:nu</AUni> -<AUni ws="qvm-x-akl">ama:nu; ama:nu; ama:no</AUni> -<AUni ws="qvm-x-ame">ama:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+a.mano</AUni> -<AUni ws="qvm-x-acl">+a.mano</AUni> -<AUni ws="qvm-x-akh">+a.mano</AUni> -<AUni ws="qvm-x-akl">+a.mano</AUni> -<AUni ws="qvm-x-ame">+a.mano</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.920" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f7d1391f-ddde-413a-bfea-e09c6a72c36d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+a.mano</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="07cb0f34-d7b8-45b9-8c44-d0e26fa672b6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3c051b0c-97a4-4680-b3ba-aa6357c46647" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +a.mano 
\entryTyp root 
\gENG 
\gSPN 
\e +a.mano 
\c N0 
\ach ama:nu 
\akh ama:nu 
\acl ama:nu / _# 
\acl ama:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ama:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ama:nu / _# 
\akl ama:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ama:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ama:nu 
\i Tsaymi Abrahamga chacranpa chaninta manashgannogla Hit runacunapa naupancho manashgannogla Efronta amänu pägargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="b2a9e122-c993-439b-b257-4b1e254a5aef" ownerguid="1b8adb92-b5e5-4408-bf9c-2ff8c6454755"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="b2aa34c3-69ab-43c5-a658-46921b28624c" ownerguid="08c69239-ee7e-4caf-b9a5-8096dcca2822"> -<Form> -<AUni ws="qvm-x-ach">shupla</AUni> -<AUni ws="qvm-x-acl">shupla</AUni> -<AUni ws="qvm-x-akh">shupla</AUni> -<AUni ws="qvm-x-akl">shupla</AUni> -<AUni ws="qvm-x-ame">shupla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="b2aae534-a0e1-4a4f-9806-78420f65052f" ownerguid="107a88b3-6591-4e19-8856-86e6d0a675bf"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b2af2d01-9834-4f08-bd3e-5258d12349a2" ownerguid="b1688009-474d-4e2e-a137-acc1e32a435f"> -<ExampleWords> -<AUni ws="en">thick, chunky, fat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is thick?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b2b02fb7-483f-4bc4-9e69-b752906f3aa2" ownerguid="312820e2-4738-43c4-a998-c2d48967fc7b" /> -<rt class="CmDomainQ" guid="b2b22db9-fec8-4986-bf35-88f9f8d668ea" ownerguid="ed4a2ca6-c03c-4c72-9431-b72fb7294b8f"> -<ExampleWords> -<AUni ws="en">best man, maid of honor, groomsman, bridesmaid, wedding party, guest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What other people are involved in a wedding?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b2b2cafc-4a33-4aaf-bb37-ad49d349f0bb" ownerguid="0177f8a5-1fc5-4473-9e8f-88874b376475" /> -<rt class="MoStemMsa" guid="b2b866bb-32dc-4656-aea5-2a188dbdc5e5" ownerguid="72a7faef-6f1d-40fb-a97b-88731154eaca"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="b2b8c6ca-f5d5-48b7-83a6-3c38960fc5a5" ownerguid="169746f5-c4c1-4f35-a781-0e77ef3472b6"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 37.12 Tsay jananmannami juc rebëtita örupita churargan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="b2b91f6a-9446-46b1-ab86-c011a5b6597e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">janjampa</AUni> -<AUni ws="qvm-x-acl">janjampa</AUni> -<AUni ws="qvm-x-akh">janjampa</AUni> -<AUni ws="qvm-x-akl">janjampa</AUni> -<AUni ws="qvm-x-ame">hanhampa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hanjampa.n</AUni> -<AUni ws="qvm-x-acl">*hanjampa.n</AUni> -<AUni ws="qvm-x-akh">*hanjampa.n</AUni> -<AUni ws="qvm-x-akl">*hanjampa.n</AUni> -<AUni ws="qvm-x-ame">*hanjampa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.660" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9152847e-9206-4ffd-a2c5-c12d6d178fde" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hanjampa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5c2352f2-64e9-40c2-8e11-2706c775fa1d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0a747b3d-4456-45c2-b25a-b42633f5f7fc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hanjampa.n 
\entryTyp root 
\gENG weakness 
\gSPN debilidad 
\e *hanjampa.n 
\c N0 
\ach janjampa 
\akh janjampa 
\acl janjampa 
\akl janjampa 
\ame hanhampa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="b2ba130f-bc3c-4d19-b108-08ff1bc8e9ac"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lupu</AUni> -<AUni ws="qvm-x-acl">lupu; lupo</AUni> -<AUni ws="qvm-x-akh">lupu</AUni> -<AUni ws="qvm-x-akl">lupu; lupo</AUni> -<AUni ws="qvm-x-ame">lupu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llupu</AUni> -<AUni ws="qvm-x-acl">*llupu</AUni> -<AUni ws="qvm-x-akh">*llupu</AUni> -<AUni ws="qvm-x-akl">*llupu</AUni> -<AUni ws="qvm-x-ame">*llupu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.225" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e7491cfc-e074-49fd-b438-72d5379ac362" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llupu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5418e6f2-01a0-45d9-9fb1-35e9fac4aa33" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="641ce610-2818-47d1-a2cc-6d3ea09a9e08" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llupu 
\entryTyp root 
\gENG duck 
\gSPN encogerse 
\e *llupu 
\c V1 
\ach lupu 
\akh lupu 
\acl lupu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lupo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lupu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lupo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lupu 
\i Num 24.9 Leonnogmi Israel nación lupucuycun.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="b2ba5707-f5e2-4d24-9da4-64d6d54e35b5" ownerguid="4f390d36-5d1c-4ab9-95a9-255b04a7ecff"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="b2bb077a-92c8-4e54-8dfa-c89efd60b82d" ownerguid="79b580ff-64a7-445b-abcb-b49b9093779c"> -<Abbreviation> -<AUni ws="en">6.3.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to raising birds.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Poultry raising</AUni> -</Name> -<OcmCodes> -<Uni>235 Poultry Raising</Uni> -</OcmCodes> -<Questions> -<objsur guid="c2a0e017-4097-41d4-9ca2-c16d8154b3dd" t="o" /> -<objsur guid="38acd925-2ac3-41cf-89b4-aeaf38db0035" t="o" /> -<objsur guid="8a73fd46-029e-46a2-a053-bf5188c39f1a" t="o" /> -<objsur guid="1596d612-3357-4f2f-80fc-be4d3c255714" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="d7da5318-dccf-477f-967d-1e3f6a421860" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="b2c19680-6c99-42f5-bf74-c83b53d722fb" ownerguid="4a8d4d97-d0bb-4019-81e5-93b1808a8226"> -<Form> -<AUni ws="qvm-x-ach">tazón; tazon</AUni> -<AUni ws="qvm-x-acl">tazón; tazon</AUni> -<AUni ws="qvm-x-akh">tazón; tazon</AUni> -<AUni ws="qvm-x-akl">tazón; tazon</AUni> -<AUni ws="qvm-x-ame">tazón; tazon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b2c243d8-98db-44b2-ac1a-de6c49cc5479" ownerguid="d1439ea3-485d-4176-bfdc-932083f3b54a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sheep</AUni> -<AUni ws="es">oveja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="649e1d7f-f742-430a-a617-e880a4e7367b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b2c2c875-32cd-4823-8c8d-c81c66e33b72" ownerguid="902cfcbe-6e42-4e55-b2a5-9146702fc16b"> -<ExampleWords> -<AUni ws="en">guide, lead, show, usher, shepherd, take the lead, lead on, lead the way, show the way, show someone to a place, blaze a trail, conduct, escort, precede, go before, marshal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to guiding someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b2c3a6f9-e997-4a32-b9ef-3497d7cb3bb3" ownerguid="50e28fa7-f6c3-45bc-871d-12ef771d532c"> -<ExampleWords> -<AUni ws="en">caregiver</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What is a person called who takes care of another?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b2cb58eb-3e11-4099-9a3b-cc882354a7c5" ownerguid="ca98bd7b-8711-41f6-86d0-5cd07b7bfe0d"> -<ExampleWords> -<AUni ws="en">destruction, ruin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the act or process of destroying something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b2cc9224-dbb9-48d2-b3fa-ef1f6550831f" ownerguid="c888c7ac-8cf4-49d2-a33e-20d19d84c47b"> -<ExampleWords> -<AUni ws="en">boar, sow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to male or female pigs?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b2cda79e-3f2c-45e2-9cfb-72c73e92145a" ownerguid="278a0d7b-23fc-4092-a30b-e0525204c698"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V2 V2/V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">HELP</AUni> -<AUni ws="es">AYUD</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="19eb2825-30d1-416a-8b25-408b37e64c35" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b2cdfcc3-f849-40d8-b324-df85eb154058" ownerguid="4d61f524-7213-4c2c-8c14-f8eff3aed813"> -<ExampleWords> -<AUni ws="en">tighten</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to making something tight?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b2ce6e2f-1095-45de-8732-56d8c4f46f1a" ownerguid="aac92bf0-55c7-470c-80ed-b57afcd03792"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="b2d00b9e-8ea4-4fc0-8452-02e9a67d7fe0" ownerguid="2d84d914-77fd-4ef1-9c30-8920db9bd166"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="322a02bd-73dc-4af6-a70c-2ff39eb35b0e" t="o" /> -<objsur guid="f3069301-32fb-4a78-851a-c9b99c4b0c44" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="b2d0466a-9617-4b65-9387-edd6fd3f0546" ownerguid="b6686c7c-39de-40b5-adee-67fc7dc54374"> -<ExampleWords> -<AUni ws="en">tens, hundreds, thousands, tens of thousands, millions, billions, trillions</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words are used to refer to groups of a certain decimal place?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b2d0820b-76e6-4033-8c25-01f3af721438" ownerguid="50789089-ee7a-4d84-bac4-d78be5cf197e"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="b2d15168-dd00-46ba-a22f-6c2dda1f8e07" ownerguid="a7a927f4-baae-4fbe-a00f-4b058ea834b9"> -<Form> -<AUni ws="qvm-x-ach">jächisya; jächisyä</AUni> -<AUni ws="qvm-x-acl">jächisya; jächisyä</AUni> -<AUni ws="qvm-x-akh">jächisya; jächisyä</AUni> -<AUni ws="qvm-x-akl">jächisya; jächisyä</AUni> -<AUni ws="qvm-x-ame">hächisya; hächisyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="b2d2501f-e8da-4675-8505-9b5dc5b52d4c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jucnayla</AUni> -<AUni ws="qvm-x-acl">jucnayla</AUni> -<AUni ws="qvm-x-akh">juknayla</AUni> -<AUni ws="qvm-x-akl">juknayla</AUni> -<AUni ws="qvm-x-ame">huknayla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*huknaylla</AUni> -<AUni ws="qvm-x-acl">*huknaylla</AUni> -<AUni ws="qvm-x-akh">*huknaylla</AUni> -<AUni ws="qvm-x-akl">*huknaylla</AUni> -<AUni ws="qvm-x-ame">*huknaylla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.751" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3a455ed8-3531-488f-8643-4c21d98a6943" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*huknaylla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9a3aea3c-6e4e-44fc-93df-e609071f8fa9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2e8cf450-d6d9-49b4-9687-15175ac3e775" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *huknaylla 
\entryTyp root 
\gENG 
\gSPN 
\e *huknaylla 
\c N0 
\ach jucnayla 
\akh juknayla 
\acl jucnayla 
\akl juknayla 
\ame huknayla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="b2d5076b-4e0b-498d-8d70-5020c0711429" ownerguid="d2226181-a021-43f7-9746-bb41ba9601ea"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="b2d7f699-59c5-4fcb-839d-0928fb25d969" ownerguid="b98d1ecc-60c8-45c5-b939-f45f5d404b01"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">what.say</AUni> -<AUni ws="es">que.decir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cfaaca22-036a-4d40-a836-4add17e1c926" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b2d9dfb0-69c7-416b-a2bb-e353fa6f562b" ownerguid="554b3b38-c53e-46c2-9a7a-ed9cade4673a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="b2da94ae-ff9d-49e9-b8f2-9d6d3dc10db1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wacu</AUni> -<AUni ws="qvm-x-acl">wacu; wacu; waco</AUni> -<AUni ws="qvm-x-akh">waku</AUni> -<AUni ws="qvm-x-akl">waku; waku; wako</AUni> -<AUni ws="qvm-x-ame">waku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waku</AUni> -<AUni ws="qvm-x-acl">*waku</AUni> -<AUni ws="qvm-x-akh">*waku</AUni> -<AUni ws="qvm-x-akl">*waku</AUni> -<AUni ws="qvm-x-ame">*waku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.444" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="17a1a84a-bcd3-4daf-b29b-5d059927dffb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3a018a0a-d0bc-4ef6-9287-bed19e0bcfc6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="86ee3a7f-e24a-4f05-8d4c-83b51ba9dca8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waku 
\entryTyp root 
\gENG 
\gSPN 
\e *waku 
\c N0 
\ach wacu 
\akh waku 
\acl wacu / _# 
\acl wacu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl waco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl waku / _# 
\akl waku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl wako +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame waku</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="b2e2bd75-13a0-4cb4-8377-5ceee9ba3be4" ownerguid="541f332b-82d8-4579-acff-e9d7fb8cadb8"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b2e2da71-45a7-4c4f-b9bc-f14b379808a0" ownerguid="1ff743cb-49e0-483d-8a1d-4603a7d6c395"> -<ExampleWords> -<AUni ws="en">lessen, subside, wane, ebb, recede</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a quality becoming less?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b2e3717e-3a9c-4260-b089-5a96e0893055"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">diplo:ma</AUni> -<AUni ws="qvm-x-acl">diplo:ma</AUni> -<AUni ws="qvm-x-akh">diplo:ma</AUni> -<AUni ws="qvm-x-akl">diplo:ma</AUni> -<AUni ws="qvm-x-ame">diplo:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+diploma</AUni> -<AUni ws="qvm-x-acl">+diploma</AUni> -<AUni ws="qvm-x-akh">+diploma</AUni> -<AUni ws="qvm-x-akl">+diploma</AUni> -<AUni ws="qvm-x-ame">+diploma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.416" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="330302e6-6e57-436d-99ca-25d01b06aab0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+diploma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3043ec91-2fd0-4c13-a00e-6023b989c88f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="663168ff-767d-4958-87c8-aa4dde05c36f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +diploma 
\entryTyp root 
\gENG diploma 
\gSPN diploma 
\e +diploma 
\c N0 
\ach diplo:ma 
\akh diplo:ma 
\acl diplo:ma 
\akl diplo:ma 
\ame diplo:ma</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="b2e3c568-8a97-4728-88c4-370cd0b0a26a" ownerguid="cd10fae7-d7c1-4cce-a713-f53bbc71bdae"> -<Category> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</Category> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="b890cd6a-4e9d-4950-835d-5d91b6722555" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="cf343a0f-5eb7-4dbf-bf22-0a831a2437c9" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="b2e6e921-b770-4557-a33c-90eb084605dc" ownerguid="99b40843-54bf-4c59-ae1d-d7146cebec48"> -<ExampleWords> -<AUni ws="en">lucky, fortunate, be in luck, have the good fortune to do something, fall on your feet, be in the right place at the right time, luck out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being lucky on a particular occasion?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b2e7580e-9a0c-4b34-ab59-0fa949d53707" ownerguid="3a568f98-8446-4327-876b-7c5ec78d9084"> -<ExampleWords> -<AUni ws="en">floor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the bottom of a house?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b2e84259-6d72-4a5e-bc92-052caca5416c" ownerguid="80b48f92-0a83-4eeb-bfe0-6980285feb65"> -<ExampleWords> -<AUni ws="en">cruelty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the quality of being cruel?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b2eae479-1a3f-4851-addf-12f4c64a00b6" ownerguid="7dfd2d48-3518-43a6-b075-38dbae91e485"> -<Form> -<AUni ws="qvm-x-ach">tablón; tablon</AUni> -<AUni ws="qvm-x-acl">tablón; tablon</AUni> -<AUni ws="qvm-x-akh">tablón; tablon</AUni> -<AUni ws="qvm-x-akl">tablón; tablon</AUni> -<AUni ws="qvm-x-ame">tablón; tablon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b2ec36e2-628e-483f-9a61-9c785ff5875b" ownerguid="430ce279-1464-4d55-8483-5525a3c3094d"> -<ExampleWords> -<AUni ws="en">butler, maid, chambermaid, housemaid, houseboy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a servant who works in a house?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b2ed6cc1-7cbc-4f88-9670-d9937c24f040" ownerguid="b015f460-faeb-4aa5-b453-9e5e9ae061fe"> -<ExampleWords> -<AUni ws="en">old-fashioned, unfashionable, antiquated, archaic, outdated, out of date, outmoded, outworn</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is old fashioned?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b2f1b041-bbab-4e41-9864-13d34bae6a5d" ownerguid="2feb574b-e452-46da-8dcb-d9dc09b1fd54"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">count</AUni> -<AUni ws="es">contar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="abcd9b8e-bb9a-4f82-aa32-d71bb3383102" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="b2f3d9c8-978e-404a-9d33-f8c0d61a9a5b" ownerguid="60fb6b73-00c7-4adf-817c-7e61783b3a66"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">punta</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">punta</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">punta</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">punta</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">punta</Run> -</AStr> -</Form> -<Morph> -<objsur guid="29690693-d2bd-43fd-b607-5e406dbb5e4d" t="r" /> -</Morph> -<Msa> -<objsur guid="6c4cd593-153e-465c-8d0e-88450e81f41f" t="r" /> -</Msa> -<Sense> -<objsur guid="4174059a-d052-4ea1-ab37-8232c85b248e" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="b2f4a1aa-ba2c-44bb-9982-1249dc97c7cd" ownerguid="aa995098-cd36-4b13-a40b-e4334297bc30"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="61ba776d-06d1-4fc4-a17e-17aab135673a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="b2f95320-1b8e-4f64-bf96-3c274a7f00b5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jucla</AUni> -<AUni ws="qvm-x-acl">jucla</AUni> -<AUni ws="qvm-x-akh">jukla</AUni> -<AUni ws="qvm-x-akl">jukla</AUni> -<AUni ws="qvm-x-ame">hukla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*huklla</AUni> -<AUni ws="qvm-x-acl">*huklla</AUni> -<AUni ws="qvm-x-akh">*huklla</AUni> -<AUni ws="qvm-x-akl">*huklla</AUni> -<AUni ws="qvm-x-ame">*huklla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.751" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="33b1fc6b-00f7-4b38-b663-94c1c2de14e0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*huklla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b6f0f52d-1aec-4ded-8c3a-22726018d488" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5fa5d236-43b3-4710-a4e3-5dc33c5119df" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *huklla 
\entryTyp root 
\gENG immediately 
\gSPN inmediatamente 
\e *huklla 
\c R0 
\ach jucla 
\akh jukla 
\acl jucla 
\akl jukla 
\ame hukla 
\mcc *huklla / ~_ CAUSBE1</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b2fa0572-c753-488a-bc4f-977f3602e2ca" ownerguid="b5700ad7-36a1-4608-8789-8f84007244f8"> -<ExampleWords> -<AUni ws="en">tiring, exhausting, wearing, boring, draining, grueling, taxing, tedious, wearisome, wearying</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that makes someone tired?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="b2fa4109-1165-4c1f-9613-c5b2d349d2d4" ownerguid="1e9a0881-f715-4057-9af8-251cb8eec9da"> -<Abbreviation> -<AUni ws="en">3.5.1.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to speaking a lot.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Speak a lot</AUni> -</Name> -<Questions> -<objsur guid="61395a4b-0c96-4bb5-8184-329e5847b566" t="o" /> -<objsur guid="53ec4f35-8568-4254-bfb6-fdb603b41f85" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="b2fd2d29-1389-4114-91a8-15b8d9742794" ownerguid="7f7fc197-5064-43c0-af51-2919fb7355c9"> -<Abbreviation> -<AUni ws="en">9.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.718" /> -<DateModified val="2022-9-23 16:55:8.718" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that something is dependent on another thing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89B Dependency</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Dependency relations</AUni> -</Name> -<Questions> -<objsur guid="6254911a-0a19-43a8-980f-ded01e8da4d3" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="66dedb31-dd2a-4e94-825e-331590ac59a9" t="o" /> -<objsur guid="05e20a72-9496-4bba-8097-5605692e83a1" t="o" /> -<objsur guid="3759bdda-2b52-43dc-8995-8379e3129dce" t="o" /> -<objsur guid="779e4547-dee6-4780-a180-30a740f9574c" t="o" /> -<objsur guid="23bc906d-c15a-4368-b0ca-7443d5e37b83" t="o" /> -<objsur guid="48d3de9f-3619-4785-b50b-6921ba7eecd6" t="o" /> -<objsur guid="18bf6c79-6399-4977-be3d-93135302d8c4" t="o" /> -<objsur guid="f858278a-2727-4403-9cf0-565cdececb1e" t="o" /> -<objsur guid="2f28f1ab-476e-4317-8787-124d95d6b9d2" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="b2fd4377-e8e3-4ee7-9def-ca0fb2aea53b" ownerguid="23190f9e-2db2-4ef9-8c0e-495dbef05571"> -<ExampleWords> -<AUni ws="en">sexy, provocative, seductive, suggestive, sensual, be a turn-on, erotic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something someone does to attract someone?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="b2fee662-c451-4d32-aca5-a913ca0b2164" ownerguid="6342c8bf-55b5-400f-af7e-63055fe6813b"> -<Abbreviation> -<AUni ws="en">6.7.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to holding tools--tools used to grip and hold things so that they don't move, and tools used to hold things that you can't hold with your hand, such as very hot things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Holding tool</AUni> -</Name> -<Questions> -<objsur guid="44da7cff-5e51-48ba-b129-05b0e8a20bc6" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="b2ffb193-46df-4bb9-82ab-3930c76d8c02" ownerguid="f718fc15-59b2-4b6a-a9e3-39b3e8d487d7"> -<ExampleWords> -<AUni ws="en">grow, get taller, bet bigger, develop, increase in size, mature, grow up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to growing bigger?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b30271ea-da8c-42b7-9357-5d8e2788982e" ownerguid="9a3cf33a-4804-4eb4-8dfd-80f6018764e5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">floppy</AUni> -<AUni ws="es">colgante</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a5b03f12-55fc-4a09-889b-edd1cdf26c99" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b303db48-66c5-462e-b282-863c49401bcc" ownerguid="e7c58c11-2911-446a-96b0-2113247f3792"> -<ExampleWords> -<AUni ws="en">family, clan, tribe, nation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to groups of people who are related by kinship?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b304749b-8e52-4b5a-b238-9cc5234b2044"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rapa</AUni> -<AUni ws="qvm-x-acl">rapa</AUni> -<AUni ws="qvm-x-akh">rapa</AUni> -<AUni ws="qvm-x-akl">rapa</AUni> -<AUni ws="qvm-x-ame">rapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rapa</AUni> -<AUni ws="qvm-x-acl">*rapa</AUni> -<AUni ws="qvm-x-akh">*rapa</AUni> -<AUni ws="qvm-x-akl">*rapa</AUni> -<AUni ws="qvm-x-ame">*rapa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.268" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="12ca84f3-bb65-4e56-a495-9b2a1a46b1b0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rapa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="75151706-4d8a-49a4-a4a7-de556bab5f79" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="50b29abd-77ca-45e1-9594-d446d23bcc09" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rapa 
\entryTyp root 
\gENG turn.sod 
\gSPN voltear.césped 
\e *rapa 
\c V2 
\ach rapa 
\akh rapa 
\acl rapa 
\akl rapa 
\ame rapa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="b3052512-54b2-4b7b-a694-9e2f617e3481"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sienti</AUni> -<AUni ws="qvm-x-acl">sienti; siente</AUni> -<AUni ws="qvm-x-akh">sienti</AUni> -<AUni ws="qvm-x-akl">sienti; siente</AUni> -<AUni ws="qvm-x-ame">sienti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sentir.v1</AUni> -<AUni ws="qvm-x-acl">+sentir.v1</AUni> -<AUni ws="qvm-x-akh">+sentir.v1</AUni> -<AUni ws="qvm-x-akl">+sentir.v1</AUni> -<AUni ws="qvm-x-ame">+sentir.v1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.500" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7d794112-cf1f-4ef3-8eff-b5fa2868c1e7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sentir.v1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="105093f0-3b82-43bf-8753-686d35eb5907" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f8c17f62-74b7-4681-9e79-abbf7ad13667" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sentir.v1 
\entryTyp root 
\gENG feel 
\gSPN sentir 
\e +sentir.v1 
\c V1 
\mp +FinalI 
\ach sienti 
\akh sienti 
\acl sienti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl siente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sienti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl siente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sienti</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b30540ee-f2e6-4418-86a8-2f11e786ac15" ownerguid="c0b7f354-a75c-41d5-a489-ae2df6364d02"> -<ExampleWords> -<AUni ws="en">start, accelerate, pull out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to starting a vehicle?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b3070dfc-6f4d-4c6e-ad0f-3739b344e62d" ownerguid="e545baab-581d-4af8-81f2-5a884e272349"> -<ExampleWords> -<AUni ws="en">beast of burden, horse, equine, donkey, burro, ass, mule, camel, llama, elephant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What types of beasts of burden are there?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b308d004-be9f-4a79-bddc-e808285fedcb" ownerguid="d4f1f463-b30e-4e01-955c-65d7b2f671c5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">steering.wheel</AUni> -<AUni ws="es">timón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="66489338-8403-4bd2-8178-c8cee40d3eb5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="b3093c77-6908-4410-b377-977dd2a52d23" ownerguid="a14efc51-5bf2-4dc5-9f6b-baa38a357ea4"> -<Form> -<AUni ws="qvm-x-ach">wichga</AUni> -<AUni ws="qvm-x-acl">wichga</AUni> -<AUni ws="qvm-x-akh">wichqa</AUni> -<AUni ws="qvm-x-akl">wichqa</AUni> -<AUni ws="qvm-x-ame">wichqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="b30d77fd-a9b3-4e0f-98fe-5880a3b1192e" ownerguid="fc4253b4-2d55-44b2-8a72-7b7ecc26bf51"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="b30ea4cb-9615-47a2-a171-1adb09d5882d" ownerguid="2bea4b4a-90b3-4a4a-b8ec-a8406aa7a4ea"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">derecho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4270c4f0-e1b1-448f-8095-8147cb1c2b59" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="b3128064-5f17-484b-a164-7a86e2edc8d4" ownerguid="5d9a4b83-1cd2-4944-90b1-0a4c118fd1d2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wring</AUni> -<AUni ws="es">exprimir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="773a6ea3-d970-4a35-a48a-99517b9736af" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="b31493a6-9a83-43f3-9e17-07f12d01fe2e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chico:ti; chico:ti</AUni> -<AUni ws="qvm-x-acl">chico:ti; chico:ti; chico:te</AUni> -<AUni ws="qvm-x-akh">chico:ti; chico:ti</AUni> -<AUni ws="qvm-x-akl">chico:ti; chico:ti; chico:te</AUni> -<AUni ws="qvm-x-ame">chico:ti; chico:ti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+chicote.1</AUni> -<AUni ws="qvm-x-acl">+chicote.1</AUni> -<AUni ws="qvm-x-akh">+chicote.1</AUni> -<AUni ws="qvm-x-akl">+chicote.1</AUni> -<AUni ws="qvm-x-ame">+chicote.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.303" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="73a18a85-73e9-48ef-af72-0f48f3b98ffd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+chicote.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b8ff35f7-7dc1-45f7-9c7f-82dd375f63d0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5b4d4a5a-4457-4df1-8338-bb7f4ad489ff" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +chicote.1 
\entryTyp root 
\gENG whip 
\gSPN chicote 
\e +chicote.1 
\c N0 
\mp +FinalI 
\ach chico:ti / _# 
\ach chico:ti / ~_# 
\akh chico:ti / _# 
\akh chico:ti / ~_# 
\acl chico:ti / _# 
\acl chico:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chico:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chico:ti / _# 
\akl chico:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chico:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chico:ti / _# 
\ame chico:ti / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="b314c1b0-044f-461b-8eb9-8843da556309" ownerguid="45b07db7-67ef-46cf-9506-8e69a0baec81"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pot</AUni> -<AUni ws="es">olla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="38234dbe-a513-4112-bd69-b22ad6b39cec" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="b31986ce-558e-460b-9d7d-e929f98bac90" ownerguid="01c0fabf-e23c-49d4-8b4e-5b36ad316d50"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="b31acbe5-d1fe-4d81-9935-1eaf364f2b0f" ownerguid="167d21c6-a28e-4309-a28e-a1ce0d7c5f14"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoInflAffixSlot" guid="b31b892c-cb26-4efd-b65c-29374c5e75b6" ownerguid="86ff66f6-0774-407a-a0dc-3eeaf873daf7"> -<Name> -<AUni ws="en">trigger</AUni> -</Name> -<Optional val="True" /> -</rt> -<rt class="CmDomainQ" guid="b321fb24-e9aa-4ba5-b517-530f148abfc3" ownerguid="962cb994-0183-4ac5-94b2-82a33f1d64e4"> -<ExampleWords> -<AUni ws="en">oily, greasy, slippery, slick, slimy, smooth, lubricating, fatty, gummy, mucous, soapy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe oil?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b322d8c3-bb3f-47de-9863-cca168922f66" ownerguid="66cbf861-88e7-47b7-8c5c-ff02f79d9337" /> -<rt class="LexExampleSentence" guid="b323c609-c815-4ad1-9580-fd230e623dbf" ownerguid="1a8d1d13-3708-4bc2-a709-c245a7fd405e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EZK 30.21 Tsay paquishgä ricranta manami pipis jampipashgatsu ni astillawanpis watapashgatsu.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="b3242c0b-9f0a-4aaf-abfd-bbef14c44cb8" ownerguid="80563285-4de7-4040-8080-a5b22208e7d5"> -<ExampleWords> -<AUni ws="en">vulnerable, sitting duck, be an easy target, open to attack</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe a person or place that is easy to attack?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b324bb11-259c-4036-a678-dceb9e0c0918" ownerguid="85c5b8f7-8086-493d-b70d-a361bfa56f09"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en"><It is possible that> he will come.; <It is possible for> him to come.; He <could> come.; He <might> come.; He <may> come.; He <is able to> come.; <Maybe> he will come.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">possible, possibly, could, might, may, able, maybe, perhaps, sort of, I guess so</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is possible?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b3255388-4f7a-45f4-b13c-6a54eea20ed0" ownerguid="e5699be9-4b51-4496-9ac1-1f275082d17e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="ecd2b70f-45ba-4aca-916b-de61189b4293" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="061e877e-e4a7-43c0-bc94-8066d0ab054c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="b3272502-e172-460c-a076-9f87ce3337ce" ownerguid="f838a849-ffc9-4530-93f0-db41ad4218c6"> -<Form> -<AUni ws="qvm-x-ach">tuctu</AUni> -<AUni ws="qvm-x-acl">tuctu; tucto</AUni> -<AUni ws="qvm-x-akh">tuktu</AUni> -<AUni ws="qvm-x-akl">tuktu; tukto</AUni> -<AUni ws="qvm-x-ame">tuktu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="b32757c5-6fad-4203-a70c-015e7b5bd4d0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jagta</AUni> -<AUni ws="qvm-x-acl">jagta</AUni> -<AUni ws="qvm-x-akh">jaqta</AUni> -<AUni ws="qvm-x-akl">jaqta</AUni> -<AUni ws="qvm-x-ame">haqta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*haqta</AUni> -<AUni ws="qvm-x-acl">*haqta</AUni> -<AUni ws="qvm-x-akh">*haqta</AUni> -<AUni ws="qvm-x-akl">*haqta</AUni> -<AUni ws="qvm-x-ame">*haqta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.680" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cec423e1-6244-454f-9d05-f7df94e5e10f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*haqta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0f3891fb-e612-4c8d-b266-7a36a7307b7c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dcc0d00a-e4e8-499f-b897-6f839874b226" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *haqta 
\entryTyp root 
\gENG jerk.head 
\gSPN arrojar.cabeza 
\e *haqta 
\c V1 
\ach jagta 
\akh jaqta 
\acl jagta 
\akl jaqta 
\ame haqta</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="b3282635-a1d0-4681-99ab-0f7e72bd68b0" ownerguid="9d41b1a8-bdbd-4d42-9872-12eaaf19a72b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">muchuy</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">muchuy</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">muchuy</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">muchuy</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">muchuy</Run> -</AStr> -</Form> -<Morph> -<objsur guid="092e3754-97f6-4d75-9a8a-cc6fa8076694" t="r" /> -</Morph> -<Msa> -<objsur guid="381a46a1-69c1-45b5-bb66-ff3b7f998d62" t="r" /> -</Msa> -</rt> -<rt class="CmPossibilityList" guid="b32a39c4-43ff-4522-aed0-b2d5b8ad7157" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Abbreviation> -<AUni ws="en">Sem</AUni> -</Abbreviation> -<DateCreated val="2022-9-23 16:55:7.894" /> -<DateModified val="2022-9-23 16:55:7.894" /> -<Depth val="127" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="True" /> -<IsVernacular val="False" /> -<ItemClsid val="66" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Semantic Domains</AUni> -</Name> -<Possibilities> -<objsur guid="63403699-07c1-43f3-a47c-069d6e4316e5" t="o" /> -<objsur guid="ba06de9e-63e1-43e6-ae94-77bea498379a" t="o" /> -<objsur guid="f4491f9b-3c5e-42ab-afc0-f22e19d0fff5" t="o" /> -<objsur guid="62b4ae33-f3c2-447a-9ef7-7e41805b6a02" t="o" /> -<objsur guid="0f883eb0-00a1-44cc-b719-97fb6ec145d4" t="o" /> -<objsur guid="c82fa28f-7e26-489e-a244-4d69cea87b94" t="o" /> -<objsur guid="d60faf11-cc6e-48db-8a13-82f86d78ab00" t="o" /> -<objsur guid="c72985cf-b07f-4ed5-873a-a2209929667e" t="o" /> -<objsur guid="349f0278-7998-422a-9c3b-6053989cbb20" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="PunctuationForm" guid="b3311ea2-ea7a-4ccf-8583-33b12c6ca683"> -<Form> -<Str> -<Run ws="en">obje</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="b331aa41-399a-43de-8a8f-d91e34c4499c" ownerguid="06a89652-70e0-40ac-b929-ed42f011c9fc"> -<ExampleWords> -<AUni ws="en">dead, lifeless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is dead?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b3331545-d516-4a35-bf74-6ff9a52c0557" ownerguid="8533a67b-6f09-443c-8a39-4355317e3a28"> -<Form> -<AUni ws="qvm-x-ach">wishtu</AUni> -<AUni ws="qvm-x-acl">wishtu; wishtu; wishto</AUni> -<AUni ws="qvm-x-akh">wishtu</AUni> -<AUni ws="qvm-x-akl">wishtu; wishtu; wishto</AUni> -<AUni ws="qvm-x-ame">wishtu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b335d915-3f83-4681-b53e-156a8264176e" ownerguid="21ebc64a-a1b8-45bd-b7f6-143a053f1d31"> -<ExampleWords> -<AUni ws="en">assistant coach, trainer, recruiter, referee, timekeeper</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What is the staff of a team called?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b339f080-edaa-4b3f-bdf4-c960ee9e7d98" ownerguid="05e9ce30-3079-4519-8928-fb3c81996a28"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="b33a9052-cc2e-4cd2-a349-8b575835a438" ownerguid="52b7528a-203d-4580-aa1f-cf0927538021"> -<Form> -<AUni ws="qvm-x-ach">latsqui</AUni> -<AUni ws="qvm-x-acl">latsqui; latsque</AUni> -<AUni ws="qvm-x-akh">latski</AUni> -<AUni ws="qvm-x-akl">latski; latske</AUni> -<AUni ws="qvm-x-ame">latski</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="b33cab68-9cbe-4b01-8b58-9c3b61582335" ownerguid="1d1cefbb-d017-478f-9207-2394065f5d88"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="b33da469-fefa-44f3-b35c-d70411bfe7e1" ownerguid="f726d9bb-ae80-4c01-bdef-b600cb27736e"> -<Abbreviation> -<AUni ws="en">6.9.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.498" /> -<DateModified val="2022-9-23 16:55:8.498" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the promotion of trade and sales.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Marketing</AUni> -</Name> -<OcmCodes> -<Uni>440 Marketing; 441 Mercantile Business; 442 Wholesale Marketing; 443 Retail Marketing; 444 Retail Businesses; 445 Service Industries; 446 Sales Promotion; 447 Advertising</Uni> -</OcmCodes> -<Questions> -<objsur guid="c11745eb-165d-41c4-af76-558240f734fa" t="o" /> -<objsur guid="30456073-086a-4511-9d56-08541c561e54" t="o" /> -<objsur guid="e055c461-eff7-4732-93f9-ccb3ce04e0c9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="b3406678-8e18-45f7-bc1c-8ae743a6392d"> -<Analyses> -<objsur guid="7e512866-4b27-4ecf-903e-cab043f309e3" t="o" /> -</Analyses> -<Checksum val="-1601450997" /> -<Form> -<AUni ws="qvm-x-akh">lumtsuyninkuna</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="b3450652-9efe-4623-a462-c745c85358f6" ownerguid="4b2815e4-adec-488b-996b-45df6bdadc33"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a36cc977-4a0d-4a5a-a8a2-b23ff99846d2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="b34aa77d-24ec-4ef0-8b35-03070bce69ea"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">espíritu; espi:ritu</AUni> -<AUni ws="qvm-x-acl">espíritu; espi:rito; espi:ritu</AUni> -<AUni ws="qvm-x-akh">espíritu; espi:ritu</AUni> -<AUni ws="qvm-x-akl">espíritu; espi:rito; espi:ritu</AUni> -<AUni ws="qvm-x-ame">espíritu; espi:ritu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+espíritu.1</AUni> -<AUni ws="qvm-x-acl">+espíritu.1</AUni> -<AUni ws="qvm-x-akh">+espíritu.1</AUni> -<AUni ws="qvm-x-akl">+espíritu.1</AUni> -<AUni ws="qvm-x-ame">+espíritu.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.498" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8bd9eb06-47e2-41b2-b289-376f8c29c005" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+espíritu.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="71f4fe1b-cd85-4f4d-bcd5-ad02c52458de" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ca19e30d-4539-4dd7-b911-5800e49e1f46" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +espíritu.1 
\entryTyp root 
\gENG spirit 
\gSPN espíritu 
\e +espíritu.1 
\c N0 
\ach espíritu / _# 
\ach espi:ritu / ~_# 
\akh espíritu / _# 
\akh espi:ritu / ~_# 
\acl espíritu / _# 
\acl espi:rito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl espi:ritu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl espíritu / _# 
\akl espi:rito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl espi:ritu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame espíritu / _# 
\ame espi:ritu / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="b34c8664-e3fd-4ea0-8004-b9a462426783" ownerguid="5ec4cb19-0127-4e01-8d32-31703728bbcb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">na</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">na</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">na</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">na</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">na</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7a9a0db9-5eb5-414c-9dd3-907a54abc86b" t="r" /> -</Morph> -<Msa> -<objsur guid="a91771ad-8785-4e3e-b6f8-793820e3a8bd" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="b34dc5c9-3367-4bfc-b077-cd014250dc5c" ownerguid="af0909a5-928a-4421-baaa-f33b14302714"> -<Abbreviation> -<AUni ws="en">9.2.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain to list all interjections.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Interjections</AUni> -</Name> -<Questions> -<objsur guid="a29eb296-d50b-410e-bf9a-c5a2b1fba7a0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="b34e0f00-b562-4e2b-83be-dff2d39993ac" ownerguid="741bda94-b886-4289-ba08-bb02b5a14d38"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="b3511a1c-ec05-4a6f-94de-4ceb714a365f" ownerguid="e603497a-50e2-4fb3-8100-893e6c13757e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">almond.tree</AUni> -<AUni ws="es">almendro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a02239f8-4f1d-40f8-bf86-86e4f80a459f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="b3515424-181a-4eb2-89a3-b63bb4903fca" ownerguid="f3bd3a06-b6ff-4683-aca7-140038927e22"> -<Form> -<AUni ws="qvm-x-ach">ucumarya</AUni> -<AUni ws="qvm-x-acl">ucumarya</AUni> -<AUni ws="qvm-x-akh">ukumarya</AUni> -<AUni ws="qvm-x-akl">ukumarya</AUni> -<AUni ws="qvm-x-ame">ukumarya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b352f77d-89e8-435f-a55a-d1f0af8c7ac9" ownerguid="0a350627-948b-483b-800b-bc18ff6a28fe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cross</AUni> -<AUni ws="es">cruzar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="de21a7f3-f5b2-4fc3-a759-bbcb78b4fb99" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="b35572c3-8604-445a-a209-7b4b70a48a4e" ownerguid="7d7bb92f-5baf-418e-8ad3-92cfdc3a8d41"> -<Form> -<AUni ws="qvm-x-ach">tagra; tagrä</AUni> -<AUni ws="qvm-x-acl">tagra; tagrä</AUni> -<AUni ws="qvm-x-akh">taqra; taqrä</AUni> -<AUni ws="qvm-x-akl">taqra; taqrä</AUni> -<AUni ws="qvm-x-ame">taqra; taqrä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="b355b744-58b3-4741-b357-f16a481fe886"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">qui:ta</AUni> -<AUni ws="qvm-x-acl">qui:ta</AUni> -<AUni ws="qvm-x-akh">qui:ta</AUni> -<AUni ws="qvm-x-akl">qui:ta</AUni> -<AUni ws="qvm-x-ame">qui:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+quitar</AUni> -<AUni ws="qvm-x-acl">+quitar</AUni> -<AUni ws="qvm-x-akh">+quitar</AUni> -<AUni ws="qvm-x-akl">+quitar</AUni> -<AUni ws="qvm-x-ame">+quitar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.841" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1f4a4add-64e1-4a96-a17f-ead783c8eac7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+quitar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3061cd4c-dc5e-434e-aa7d-8ea86ef932ef" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5b3e8958-06b8-428d-95bb-a6979f3db7e5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +quitar 
\entryTyp root 
\gENG remove 
\gSPN quitar 
\e +quitar 
\c V2 
\ach qui:ta 
\akh qui:ta 
\acl qui:ta 
\akl qui:ta 
\ame qui:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b3649c18-a0d5-42d6-90ac-45268de480fd" ownerguid="6330871b-6008-490e-bfff-e28e17ebce7e"> -<ExampleWords> -<AUni ws="en">stable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is difficult to move?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b364a7bc-adce-4fad-9caf-28e5f27b3a71" ownerguid="c6132280-d2aa-46f8-9e94-b087dbda09cb"> -<ExampleWords> -<AUni ws="en">balance, keep your balance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to balancing yourself?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="b364bfaf-ee6d-4e15-994b-68200df791fa" ownerguid="126e199f-69cc-4e72-bcf1-5417cc9e38fa"> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="b36a309a-2a16-4645-9517-1f67ffdc2162" ownerguid="70f9e69f-bcd4-45e6-87a1-ddbf2ae42402"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b36c0268-a83c-499a-b86c-00fc08697269" ownerguid="ca752706-1c9e-43e7-bd17-845c4736ccd8"> -<ExampleWords> -<AUni ws="en">roughly, more or less, somewhat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words indicate that something is done in approximately the right way?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b3711f01-fbe5-4446-86e2-9caaa5d911e1" ownerguid="08d5e632-0aed-4924-b3bb-d43de3420385"> -<ExampleWords> -<AUni ws="en">death notice, send death notice</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to notifying people that someone has died?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b37183b5-5d23-4e27-8d10-ca1819df944e" ownerguid="67146bf0-738b-4f63-9595-139c4e9e351c"> -<Form> -<AUni ws="qvm-x-ach">incara</AUni> -<AUni ws="qvm-x-acl">incara</AUni> -<AUni ws="qvm-x-akh">inkara</AUni> -<AUni ws="qvm-x-akl">inkara</AUni> -<AUni ws="qvm-x-ame">inkara</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="b3745f13-3632-4f13-b0cc-a74c51f8f2a1" ownerguid="cce98603-ff8f-4213-945a-bd6746716139"> -<Abbreviation> -<AUni ws="en">1.2.1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.947" /> -<DateModified val="2022-9-23 16:55:7.947" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to earthquakes. In some languages earthquakes are thought of as moving somewhere. In Amele (PNG) they say "mim nen" which means 'the earthquake came down (from above)'. In Northern Embera an earthquake is a "house-shaking". They say "a house-shaking went."</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>14J Movement of the Earth x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Earthquake</AUni> -</Name> -<Questions> -<objsur guid="c856a609-ced8-47d7-9ca5-83984685d5e1" t="o" /> -<objsur guid="9b87c2be-3d35-4510-8049-3d069a91f188" t="o" /> -<objsur guid="fec1e2aa-2c29-4954-94c9-2999fc04161b" t="o" /> -<objsur guid="b85f4434-bc4e-40e5-93b1-d3e9d3b31fbb" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="b3747a01-4413-473e-a8df-a437ec2f250e" ownerguid="2f196632-8bc5-4e81-b006-65e570981414"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.hot</AUni> -<AUni ws="es">ser.caliente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dfe007a4-f2c3-49c4-a95e-aec20dd84db1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="b3773d59-2cd8-43f7-b052-f8f554b776e7" ownerguid="a1443fa7-aecf-420b-9246-f082796f4f81"> -<Form> -<AUni ws="qvm-x-ach">manta</AUni> -<AUni ws="qvm-x-acl">manta</AUni> -<AUni ws="qvm-x-akh">manta</AUni> -<AUni ws="qvm-x-akl">manta</AUni> -<AUni ws="qvm-x-ame">manta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="b3779c87-0f69-469c-8014-943e0338f9bc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">hi:ja</AUni> -<AUni ws="qvm-x-acl">hi:ja</AUni> -<AUni ws="qvm-x-akh">hi:ja</AUni> -<AUni ws="qvm-x-akl">hi:ja</AUni> -<AUni ws="qvm-x-ame">hi:ja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hija</AUni> -<AUni ws="qvm-x-acl">+hija</AUni> -<AUni ws="qvm-x-akh">+hija</AUni> -<AUni ws="qvm-x-akl">+hija</AUni> -<AUni ws="qvm-x-ame">+hija</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.710" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="41eb5489-46bc-4ceb-84dc-f14fb1d53284" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hija</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d1d364b6-495d-4b03-b0e1-ff765aa11d56" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="27f0a69e-85d4-4811-8490-a13f76a62120" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hija 
\entryTyp root 
\gENG daughter 
\gSPN hija 
\e +hija 
\c N0 
\ach hi:ja 
\akh hi:ja 
\acl hi:ja 
\akl hi:ja 
\ame hi:ja</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="b378ae47-e5ba-4693-9126-6e79d862145a" ownerguid="57b07c49-f5ff-4cf9-9333-0e10ca873e82"> -<Form> -<AUni ws="qvm-x-ach">amu</AUni> -<AUni ws="qvm-x-acl">amu; amo</AUni> -<AUni ws="qvm-x-akh">amu</AUni> -<AUni ws="qvm-x-akl">amu; amo</AUni> -<AUni ws="qvm-x-ame">amu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b37d3af1-810c-4ce1-bc2e-2ea20016eb66" ownerguid="5e529363-6111-464f-bb6f-8d3a9f56da6f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">seat</AUni> -<AUni ws="es">silla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c11deb1e-8e7d-441e-a9f6-f4c6a72c5481" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b37e28d2-d11a-418d-983b-4edf830d297b" ownerguid="97baae03-212c-446c-9059-214d198cce9d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b382dc7c-b175-489c-977f-0500482cc555" ownerguid="dbd3e164-3f70-4395-9728-1c24c8900da6"> -<ExampleWords> -<AUni ws="en">pancake turner, spatula, whisk, stirring spoon, wooden spoon, meat fork, spit, mixer, blender</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What utensils are used to move, stir, mix and turn food?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b385d74f-330c-41de-9680-fcc599e8cdd6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">loglu</AUni> -<AUni ws="qvm-x-acl">loglu; loglo</AUni> -<AUni ws="qvm-x-akh">loqlu</AUni> -<AUni ws="qvm-x-akl">loqlu; loqlo</AUni> -<AUni ws="qvm-x-ame">luqlu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lluqllu</AUni> -<AUni ws="qvm-x-acl">*lluqllu</AUni> -<AUni ws="qvm-x-akh">*lluqllu</AUni> -<AUni ws="qvm-x-akl">*lluqllu</AUni> -<AUni ws="qvm-x-ame">*lluqllu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.233" /> -<DateModified val="2022-10-10 21:19:47.698" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1a3db1c9-89e1-4c4e-8bc8-c8162e1b6805" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lluqllu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="82fcb35f-82f3-4262-9325-6e42f495ebdd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8aac0e1e-8051-4e2e-9e3e-60be52014750" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lluqllu 
\entryTyp root 
\gENG spread.out 
\gSPN 
\e *lluqllu 
\c V1 
\ach loglu 
\akh loqlu 
\acl loglu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl loglo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl loqlu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl loqlo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame luqlu 
\i Logluyparag winar tapya jananpapis pasagnogmi paycuna canga.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b38acc3e-29a3-420e-ab1f-173eb4e05505" ownerguid="1c3f8996-362e-4ee0-af02-0dd02887f6aa"> -<ExampleWords> -<AUni ws="en">hell, the pit, fire and brimstone, eternal damnation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What is the place called where unbelievers (bad people) go when they die?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b38bbf3c-d2a2-4809-8291-d6a354a43f12" ownerguid="725d78eb-8cac-4b2f-b5a4-f0a9adb80f5d"> -<ExampleWords> -<AUni ws="en">unbeliever, pagan, gentile, heathen, atheist, agnostic, irreligious, godless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What is a person called who does not believe in a religion?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b38bc4a9-c22f-41a2-9c9b-5d48f8c15954"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">baratya; baratya:</AUni> -<AUni ws="qvm-x-acl">baratya; baratya:</AUni> -<AUni ws="qvm-x-akh">baratya; baratya:</AUni> -<AUni ws="qvm-x-akl">baratya; baratya:</AUni> -<AUni ws="qvm-x-ame">baratya; baratya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+barrato+ya:</AUni> -<AUni ws="qvm-x-acl">+barrato+ya:</AUni> -<AUni ws="qvm-x-akh">+barrato+ya:</AUni> -<AUni ws="qvm-x-akl">+barrato+ya:</AUni> -<AUni ws="qvm-x-ame">+barrato+ya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.959" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="98acdca0-184b-4a63-b866-5a6838838b79" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+barrato+ya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a9c69eee-967c-4813-bd7e-5fc322444f92" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d11bbd1e-c4c5-4207-aa3c-486bf7bba543" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +barrato+ya: 
\entryTyp root 
\gENG 
\gSPN 
\e +barrato+ya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach baratya foreshortened 
\ach baratya: 
\mp +underlong 
\akh baratya foreshortened 
\akh baratya: 
\acl baratya foreshortened 
\acl baratya: 
\akl baratya foreshortened 
\akl baratya: 
\mp +underlong 
\ame baratya foreshortened 
\ame baratya: 
\i PRO 20.14 Rantinan cashgalami imatapis baratyan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="b3939df9-36a0-4790-a9e9-d31eeb5201c3" ownerguid="a5466829-4cee-4a52-9a72-cd3eb880da81"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b395b580-26c7-4e51-8f92-dd9a83a76641" ownerguid="1bd42665-0610-4442-8d8d-7c666fee3a6d"> -<ExampleWords> -<AUni ws="en">moonset, setting of the moon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the time when the moon sets?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b395c9b6-c2e7-47d4-a459-ade299febc23" ownerguid="8a9a46db-4b68-4a68-ab33-057314c49af4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">live</AUni> -<AUni ws="es">vivir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f43ac5da-0c55-4efe-9d59-4c377a76f426" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b395cbfb-505e-4b96-b0af-cae1f921a6b4" ownerguid="68a0cab6-a726-4cb8-9fcd-bdfdc2b010ff"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="b3969b99-f569-414e-9ffb-f73cecbc1789" ownerguid="960643fc-79e9-4e6f-a765-2fefd3d19892"> -<Form> -<AUni ws="qvm-x-ach">vecïnu</AUni> -<AUni ws="qvm-x-acl">vecïnu; vecïnu; vecïno</AUni> -<AUni ws="qvm-x-akh">vecïnu</AUni> -<AUni ws="qvm-x-akl">vecïnu; vecïnu; vecïno</AUni> -<AUni ws="qvm-x-ame">vecïnu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="b3991454-5320-4505-9e93-268357f18c3e" ownerguid="cad348c3-306c-4a2c-b61b-63dbe03e9d03"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Lev 21.20</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="b39a3dc6-5610-4ef4-a098-84ce1aa4af20" ownerguid="8be94377-a3cc-4187-a6e2-51523e953503"> -<ExampleWords> -<AUni ws="en">part-time worker, full-time worker</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a person who works for only part of a day, or for the whole day?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b39d0146-515e-4047-bbbe-c7bbc443a5ea" ownerguid="69d366d2-9735-4a1b-b938-7b212932b568"> -<ExampleWords> -<AUni ws="en">North Star, Morning Star, Betelgeuse, Alpha Centauri</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the names of the stars?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b39ee336-8703-484b-9bd6-2b94e4f2a47c" ownerguid="519bec6f-2db3-4703-a93f-b3da331d49a3"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b3a2feb1-b95f-4014-bcdf-323fb3f8bf71" ownerguid="84d67c87-86ff-4e71-8a26-abe048132f8f"> -<ExampleWords> -<AUni ws="en">clean-shaven</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who has shaved?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b3a35ece-823f-413c-abbc-99b8ecddbae8" ownerguid="0a1ad4c9-8bf3-448b-a27f-611813b305de"> -<ExampleWords> -<AUni ws="en">under, underneath, beneath, under-, sub-</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is under something that is directly above it?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b3a52454-c88b-4a11-9478-a21a6aa5e2bb" ownerguid="5b7666bd-c6c1-45e7-aa2e-1799fcb16d97"> -<ExampleWords> -<AUni ws="en">name, proper noun</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to the name of a person, place, or thing?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b3a69b66-e793-49f2-8a39-82dba9431ec3" ownerguid="efe242bb-d9d5-4120-8404-399fea031fe0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1 V2/V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">DELIB</AUni> -<AUni ws="es">DELIB</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d61afcd0-aac8-42cb-b01a-12c6d4d5e48d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="b3a6e73f-1850-4b6a-b2de-c3c13e10df36" ownerguid="f37d803c-37b1-4641-8b10-6b566461d9f9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yqui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yqui</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yki</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1b0fe7f9-c0ed-498b-9263-f8c0d31cc569" t="r" /> -</Morph> -<Msa> -<objsur guid="a40909fa-461f-42f5-8d0b-c089ff6c7753" t="r" /> -</Msa> -</rt> -<rt class="WfiWordform" guid="b3a70325-10cd-49e3-88cf-862c127c7f9f"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">diosnikikunapis</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="b3a85cd7-97fd-4306-830d-714801492498"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">warcu</AUni> -<AUni ws="qvm-x-acl">warcu; warco</AUni> -<AUni ws="qvm-x-akh">warku</AUni> -<AUni ws="qvm-x-akl">warku; warko</AUni> -<AUni ws="qvm-x-ame">warku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*warku</AUni> -<AUni ws="qvm-x-acl">*warku</AUni> -<AUni ws="qvm-x-akh">*warku</AUni> -<AUni ws="qvm-x-akl">*warku</AUni> -<AUni ws="qvm-x-ame">*warku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.536" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f356f74d-17c4-4f6f-afa4-c1fb04a8369d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*warku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5e1ccdb5-6074-4b65-9fc7-35c117117f66" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4e900747-d7e7-4eee-8f8c-ff183f93b5aa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *warku 
\entryTyp root 
\gENG hang 
\gSPN colgar 
\e *warku 
\c V1 
\ach warcu 
\akh warku 
\acl warcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl warco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl warku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl warko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame warku</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b3a8bc33-42fe-4266-af17-8dbf0b8a2c49" ownerguid="267b98aa-e17c-4ebb-a752-ed4210701867"> -<ExampleWords> -<AUni ws="en">unobservant, unperceptive, oblivious, can't see the forest for the trees, got your head in the clouds</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe someone who is not good at noticing things?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b3afe4b7-0904-4a18-85dd-4564fa7a518e" ownerguid="29211892-1ee2-4732-b797-4c444e60e55b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">katydid</AUni> -<AUni ws="es">chicharra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="105691a0-6992-49a1-ac05-2f536129f45b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b3b08fa8-94fc-48e0-922a-d74b62c206fd" ownerguid="c65a5371-6156-4f7b-83cb-3b0005867d7d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b3b6b48c-b220-46ac-bbd2-28b8b434432b" ownerguid="8216627d-9d20-4a5c-8bfd-0709c16e7a08"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">More than 100 people came to the wedding.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">more, over, above, beyond, greater than, in excess of, upwards of, plus, at least</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that the actual number is more than a particular number?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b3b6f703-3493-421a-8d06-605026346b69" ownerguid="14784775-37dd-4682-bdcc-b8944da947a5"> -<Gloss> -<AUni ws="en">SIM2.1</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5a3e9dbc-32e4-498e-9fe3-635d62980299" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="b3bb84dd-69bf-477d-93a1-34644776a797" ownerguid="2c4552ce-6cb0-4c34-9525-ac0f62cd6ee8"> -<Form> -<AUni ws="qvm-x-ach">rösa</AUni> -<AUni ws="qvm-x-acl">rösa</AUni> -<AUni ws="qvm-x-akh">rösa</AUni> -<AUni ws="qvm-x-akl">rösa</AUni> -<AUni ws="qvm-x-ame">rösa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="b3be00a9-41a4-42ae-ba51-320b5000a563" ownerguid="cce98603-ff8f-4213-945a-bd6746716139"> -<Abbreviation> -<AUni ws="en">1.2.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.947" /> -<DateModified val="2022-9-23 16:55:7.947" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the area under the ground, and to holes in the ground.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>1H Depressions and Holes; 1C Regions Below the Surface of the Earth</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Underground</AUni> -</Name> -<Questions> -<objsur guid="740674bf-3208-4551-aea4-c878deac4953" t="o" /> -<objsur guid="f2854765-2bac-4f5c-b34b-77e69b52290a" t="o" /> -<objsur guid="3ec8287e-f199-495c-825c-7844d33c39cb" t="o" /> -<objsur guid="3480218a-7fd8-44c9-b6c6-cf76b1017c33" t="o" /> -<objsur guid="7339bbfb-4753-4a61-b1fb-ad5c87bbe69b" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="c5996b7d-0acc-4ac7-bfa0-09b93a0eccbc" t="r" /> -<objsur guid="c5b8c936-1e01-4e86-9145-a2b721ec9e39" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="b3beb7ca-37df-453a-b88a-cc901f27a428" ownerguid="a35b7fd1-8427-492e-89f7-500f3e75b449"> -<Form> -<AUni ws="qvm-x-ach">cucu</AUni> -<AUni ws="qvm-x-acl">cucu; cuco</AUni> -<AUni ws="qvm-x-akh">kuku</AUni> -<AUni ws="qvm-x-akl">kuku; kuko</AUni> -<AUni ws="qvm-x-ame">kuku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b3bfadd8-c652-47d9-92f5-0f54ac5c8893" ownerguid="b59f6fc4-629d-4e62-8673-cf62f8ad8197"> -<ExampleWords> -<AUni ws="en">mediocre, average, undistinguished</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is neither good nor bad?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b3c5ab6c-69fd-464f-badc-b1c223315792" ownerguid="74693758-e781-4a77-a90c-fdec7f1437fa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="3543570b-2091-4978-ad07-c81d7474626e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="b3c7fd4f-3f63-468a-bea5-945a41171df7" ownerguid="20f45413-19df-4423-bcf8-5f9924503731"> -<Form> -<AUni ws="qvm-x-ach">aspi</AUni> -<AUni ws="qvm-x-acl">aspi; aspe</AUni> -<AUni ws="qvm-x-akh">aspi</AUni> -<AUni ws="qvm-x-akl">aspi; aspe</AUni> -<AUni ws="qvm-x-ame">aspi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="b3c9c6ea-a441-4d01-be67-abfbe4307aa3" ownerguid="d7cdc81e-858f-4f27-be59-e12db8307818"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="b3cc49bd-6bca-4168-95d2-5e2a15da45e1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ntin</AUni> -<AUni ws="qvm-x-acl">ntin; ntin; nten</AUni> -<AUni ws="qvm-x-akh">ntin</AUni> -<AUni ws="qvm-x-akl">ntin; ntin; nten</AUni> -<AUni ws="qvm-x-ame">ntin</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.589" /> -<DateModified val="2022-10-16 15:10:35.344" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f2cd801c-f2a9-4469-b5dc-7916f95ab35b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">WITH1.V</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1d8c4153-ed72-4898-b1ff-077c42c51fa3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="937f54f3-4370-4865-b3ee-623ed32b709b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx WITH1.V 
\entryTyp suffix 
\gENG WITH1.V 
\gSPN MAS1.V 
\e WITH1.V 
\c N0/N0 N1/N0 
\o 000 
\mp +FinalC 
\ach ntin 
\akh ntin 
\acl ntin / _# 
\acl ntin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl nten +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ntin / _# 
\akl ntin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl nten +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame ntin 
\mp +foreshortens 
\mcc WITH1.V / {+FinalC} ~_ 
\mcc WITH1.V / SUP ~_</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b3cc8e6a-89c9-42ff-a67a-6ee781bff720" ownerguid="34a02a17-23fb-4260-9f97-c125842a3594"> -<ExampleWords> -<AUni ws="en">birthday party</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a yearly celebration of a person's birth?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="b3d3dd7d-0cb1-4c25-bcae-cc402fcfa3ea" ownerguid="0f568473-880d-43bd-b5ce-590100fdcaf6"> -<Abbreviation> -<AUni ws="en">5.2.2.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.317" /> -<DateModified val="2022-9-23 16:55:8.317" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to fasting--to not eat for a period of time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Fast, not eat</AUni> -</Name> -<Questions> -<objsur guid="173923a3-b426-47bb-a833-686ddfb19423" t="o" /> -<objsur guid="3e05bd0b-5246-40fa-8ada-2c341062c4d2" t="o" /> -<objsur guid="141cae5b-a554-469c-b035-33ba2cbecb80" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="b3d4de0d-7d4d-475c-af97-bcf24045f927" ownerguid="0a4d2b93-e0ea-48d5-83db-57831794a8df"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="b3d8c4b0-311b-4192-8175-8540302cddb8"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">yarqU</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="b3d9c774-faf7-4833-baec-96d0b16e5851" ownerguid="d10301f3-573c-4005-ad65-1c73fb80b3b6"> -<ExampleWords> -<AUni ws="en">understand, perceive, realize, see, recognize, recognition, figure out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to coming to understand something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b3de44ce-c4af-4c9b-8435-bad3792f8a43" ownerguid="333abfbb-ad21-48b0-9baa-6527d28efdb1"> -<Form> -<AUni ws="qvm-x-ach">wasca</AUni> -<AUni ws="qvm-x-acl">wasca</AUni> -<AUni ws="qvm-x-akh">waska</AUni> -<AUni ws="qvm-x-akl">waska</AUni> -<AUni ws="qvm-x-ame">waska</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b3e9a5b2-98ba-4a32-b98f-031e35e3277c" ownerguid="a2a3e21a-819c-4400-b2e6-e6c1a0a0ded3"> -<ExampleWords> -<AUni ws="en">withering (look), derisive (laugh)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something someone does to show they despise someone?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="b3eff2b5-11a7-4c2f-9257-952f98e88723"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Tsay</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="b3f33b16-5b21-4cb1-b3b0-162de1237143" ownerguid="5bcf23fe-ca50-43bc-a10d-1184430aa39d"> -<Form> -<AUni ws="qvm-x-ach">amista</AUni> -<AUni ws="qvm-x-acl">amista</AUni> -<AUni ws="qvm-x-akh">amista</AUni> -<AUni ws="qvm-x-akl">amista</AUni> -<AUni ws="qvm-x-ame">amista</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b3fa56d8-597a-4b5e-b229-8d4145c2f1a9" ownerguid="73adcfbe-8a74-4fda-969f-616964226b9b"> -<ExampleWords> -<AUni ws="en">boundary, border</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the boundary of an area?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="b3fb9960-8f42-43bc-9595-dfb3e04f5bfd" ownerguid="6045c6eb-efea-4586-95f8-840d32578d66"> -<Abbreviation> -<AUni ws="en">7.5.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.549" /> -<DateModified val="2022-9-23 16:55:8.549" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to substituting something for something else--to move something and put something else in its place.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>57J Exchange</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Substitute</AUni> -</Name> -<Questions> -<objsur guid="6f38ddcc-cce5-4a92-b350-dbdd1f1bc456" t="o" /> -<objsur guid="771f6367-f931-4cc1-90b6-35d816afe441" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="7e0bc050-5298-4808-af22-5e284526c652" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="b3feec25-7afd-49bc-aedb-e0e1c0ce85d7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bo:rra</AUni> -<AUni ws="qvm-x-acl">bo:rra</AUni> -<AUni ws="qvm-x-akh">bo:rra</AUni> -<AUni ws="qvm-x-akl">bo:rra</AUni> -<AUni ws="qvm-x-ame">bo:rra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+borrar</AUni> -<AUni ws="qvm-x-acl">+borrar</AUni> -<AUni ws="qvm-x-akh">+borrar</AUni> -<AUni ws="qvm-x-akl">+borrar</AUni> -<AUni ws="qvm-x-ame">+borrar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.981" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="03814099-7973-4f98-babc-d3621895b453" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+borrar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f7e06b9c-31a7-4a9c-a339-2943f7a9d0a2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3510164b-e877-4ae6-b31a-9de75c9f00c8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +borrar 
\entryTyp root 
\gENG erase 
\gSPN borrar 
\e +borrar 
\c V2 
\ach bo:rra 
\akh bo:rra 
\acl bo:rra 
\akl bo:rra 
\ame bo:rra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="b3ff132a-ac26-4c51-a325-be3beb92c8e0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">caspa</AUni> -<AUni ws="qvm-x-acl">caspa</AUni> -<AUni ws="qvm-x-akh">caspa</AUni> -<AUni ws="qvm-x-akl">caspa</AUni> -<AUni ws="qvm-x-ame">caspa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+caspa</AUni> -<AUni ws="qvm-x-acl">+caspa</AUni> -<AUni ws="qvm-x-akh">+caspa</AUni> -<AUni ws="qvm-x-akl">+caspa</AUni> -<AUni ws="qvm-x-ame">+caspa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.82" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="22ad1223-f8bd-40c6-97e3-ccfd459a49ef" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+caspa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="04cdf031-7e01-43f3-a0c1-18e77f69fe6e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="45dc04b4-61b1-4c0e-8234-51d26a0e0779" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +caspa 
\entryTyp root 
\gENG 
\gSPN 
\e +caspa 
\c N0 
\ach caspa 
\akh caspa 
\acl caspa 
\akl caspa 
\ame caspa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="b400cf18-032f-424e-aa44-fb7c99ad52f9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quilu</AUni> -<AUni ws="qvm-x-acl">quilu; quilo</AUni> -<AUni ws="qvm-x-akh">kilu</AUni> -<AUni ws="qvm-x-akl">kilu; kilo</AUni> -<AUni ws="qvm-x-ame">kilu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*killu</AUni> -<AUni ws="qvm-x-acl">*killu</AUni> -<AUni ws="qvm-x-akh">*killu</AUni> -<AUni ws="qvm-x-akl">*killu</AUni> -<AUni ws="qvm-x-ame">*killu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.983" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="66db176b-2544-421a-9386-a180b14a29dd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*killu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="75cf1249-2a1a-434f-bd69-e5ac5a4bed51" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3735603d-7c81-4258-901a-198682a69433" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *killu 
\entryTyp root 
\gENG ? 
\gSPN ? 
\e *killu 
\c V1 
\ach quilu 
\akh kilu 
\acl quilu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl quilo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kilu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kilo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kilu 
\i Deu 4.11 Tsaypitanami punta chaquinman juntacaycur ricapäcorgayqui puntapita nina rupar ciëluyag sharcogta. Tsaynogpis ricapäcorgayqui yanauyaycag pucutay tsay puntata pasaypa quiluraycagta 
\f +4.11 Waquin runacuna nipäcun 
\it pasaypa tsapacurcogta
\it*.
\f*.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="b4048275-25be-4621-8612-323e496d690a" ownerguid="14891149-e35b-4634-a181-ffe0967abaf9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">meter</AUni> -<AUni ws="es">metro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8e862ee6-fd51-44b9-9e98-55fbfdaccec5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="b405b982-021d-47b3-b79d-5f82b338de44" ownerguid="6fd38eb4-21e9-4b1e-8538-ae2461b28912"> -<Form> -<AUni ws="qvm-x-ach">cu</AUni> -<AUni ws="qvm-x-acl">cu</AUni> -<AUni ws="qvm-x-akh">ku</AUni> -<AUni ws="qvm-x-akl">ku</AUni> -<AUni ws="qvm-x-ame">ku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e1-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="8378f21c-cf54-437a-9d41-a303c764b326" t="r" /> -</PhoneEnv> -</rt> -<rt class="CmSemanticDomain" guid="b40637e5-be76-4a82-96bb-c55306ee293d" ownerguid="646dab64-5c2f-4f45-8e28-4d13437639d4"> -<Abbreviation> -<AUni ws="en">4.1.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.184" /> -<DateModified val="2022-9-23 16:55:8.184" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a girlfriend or boyfriend.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Girlfriend, boyfriend</AUni> -</Name> -<Questions> -<objsur guid="fdd37ac7-9c24-47cf-8fb0-ec0c964c8ef8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="b4083d2d-6246-4def-a938-632e34c8f461" ownerguid="58812056-10ca-4d79-8bbf-21ecb8e4ab87"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="b408c595-cd18-4c26-9d6a-c3c7182c80fd" ownerguid="f9a33614-2be4-42e9-a6a8-27024a7a2ac0"> -<Form> -<AUni ws="qvm-x-ach">paz</AUni> -<AUni ws="qvm-x-acl">paz</AUni> -<AUni ws="qvm-x-akh">paz</AUni> -<AUni ws="qvm-x-akl">paz</AUni> -<AUni ws="qvm-x-ame">paz</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="b40a5aec-21d4-4c5a-9b21-5b7b5ad0c9a7" ownerguid="11f85ff3-8d15-431b-af47-45e271989db6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="b40ad958-7a6a-4a1e-aaa8-0a809c274448"> -<Analyses> -<objsur guid="62e53799-aac2-4507-a871-81ae7ef85cce" t="o" /> -</Analyses> -<Checksum val="-1613773867" /> -<Form> -<AUni ws="qvm-x-akh">paylawan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="b412082e-9140-49e3-a15b-303f8ce03068" ownerguid="874f8415-fca2-49ce-923f-ff1d4a2b94d9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yqui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yqui; yqui; yque</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yki; yki; yke</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e923ff73-545c-4526-86e7-58a4c95762c6" t="r" /> -</Morph> -<Msa> -<objsur guid="a40909fa-461f-42f5-8d0b-c089ff6c7753" t="r" /> -</Msa> -<Sense> -<objsur guid="dc00d67a-ea89-4d8e-a1ff-33d88111a258" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="b413bc9d-3d0e-4d58-adc5-64897459034c" ownerguid="ca9c215a-e568-4d09-b3a9-b5727cd831d6"> -<ExampleWords> -<AUni ws="en">bury, burial, inter, interment, lay to rest, entomb</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to burying a dead body?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b414dbf8-6426-403b-8adf-1c1902d389d8" ownerguid="e6c9fe4c-199e-4934-b622-739a85b0830d"> -<ExampleWords> -<AUni ws="en">reorganize, reorganization, adjust, reform, reorder, reordering</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to organizing things a second time, or organizing things after they have been disorganized?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b41d76cc-1c6c-4cbb-a7e5-da25cae7a096" ownerguid="33d1a85d-ff32-4ab3-a9fc-2779022c0bac"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="b41f07f8-dabe-4f51-9b9e-5be25f11168b" ownerguid="6a14394b-49a2-467f-8513-cc4adb1b74c6"> -<Form> -<AUni ws="qvm-x-ach">yaga</AUni> -<AUni ws="qvm-x-acl">yaga</AUni> -<AUni ws="qvm-x-akh">yaqa</AUni> -<AUni ws="qvm-x-akl">yaqa</AUni> -<AUni ws="qvm-x-ame">yaqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b421e489-69b6-4981-9e7c-7987bfc77d8f" ownerguid="0bac846b-10fa-4a97-ab51-5fae1db19d81"> -<Form> -<AUni ws="qvm-x-ach">shumshuta</AUni> -<AUni ws="qvm-x-acl">shumshuta</AUni> -<AUni ws="qvm-x-akh">shumshuta</AUni> -<AUni ws="qvm-x-akl">shumshuta</AUni> -<AUni ws="qvm-x-ame">shumshuta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="b4233b02-1bab-4751-9de9-5a8108a1cfcc" ownerguid="758e1195-e56f-4071-a337-81810bf63391"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b42350cd-2d42-4406-9906-ab39106accf8" ownerguid="3dba39bc-48f2-4bcb-9357-c8fbed6922ca"> -<ExampleWords> -<AUni ws="en">break, renege on, go back on promise</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to not doing what you promised?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b423f042-e2e0-4737-98d8-a45205e5e634" ownerguid="e1fbb9d1-56eb-4a40-af91-9d31f6c475fb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="b427b21e-a90e-4164-8d38-e10f9a37d300" ownerguid="68dec44d-7c5b-4e12-9f6e-0aa0b8dec042"> -<Form> -<AUni ws="qvm-x-ach">tabla</AUni> -<AUni ws="qvm-x-acl">tabla</AUni> -<AUni ws="qvm-x-akh">tabla</AUni> -<AUni ws="qvm-x-akl">tabla</AUni> -<AUni ws="qvm-x-ame">tabla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b42be7f7-7ac5-4e80-a218-d9c9fb5d1598" ownerguid="d6ab90a1-24c7-4fc5-a1ae-92c8f826f2b3"> -<Form> -<AUni ws="qvm-x-ach">ancala</AUni> -<AUni ws="qvm-x-acl">ancala</AUni> -<AUni ws="qvm-x-akh">ankala</AUni> -<AUni ws="qvm-x-akl">ankala</AUni> -<AUni ws="qvm-x-ame">ankala</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="b4300039-ebcb-4fee-8872-3117339365f6" ownerguid="0e59680e-7850-488f-943f-d0a8d5659349"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="b43143cc-58fa-4943-b70d-4f3020d8f921" ownerguid="d3d880cc-6e10-4afa-930e-73c62f5daf61"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PunctuationForm" guid="b4350fbf-e044-40fe-adfa-c826dc70905d"> -<Form> -<Str> -<Run ws="en">mikUv2</Run> -</Str> -</Form> -</rt> -<rt class="LexSense" guid="b435b6d4-4ebc-4672-b30d-27108fe9f0b8" ownerguid="8ba297c7-4197-4846-b90f-5915d87763df"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">star</AUni> -<AUni ws="es">estrella</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="27d6042c-7fb2-4e3d-8ce0-93399afb84e7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b436ba0b-2f12-4321-abcf-825c3eb1d147" ownerguid="60364974-a005-4567-82e9-7aaeff894ab0"> -<ExampleWords> -<AUni ws="en">water, H2O, moisture</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to water?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="b43ad487-6e73-48ff-9ec0-62d0371aba88" ownerguid="7e4bf435-4769-4d4a-a865-9a9981467355"> -<Form> -<AUni ws="qvm-x-ach">cama</AUni> -<AUni ws="qvm-x-acl">cama</AUni> -<AUni ws="qvm-x-akh">kama</AUni> -<AUni ws="qvm-x-akl">kama</AUni> -<AUni ws="qvm-x-ame">kama</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="b43c0e15-25e5-4009-8fd8-345049e018a0" ownerguid="f0d0631c-1dcd-4e76-9609-74889b562141"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b43c2daf-8e8a-4592-a720-299b70e52004" ownerguid="fcd22c85-7ee1-4d31-8633-9dbd32344211"> -<ExampleWords> -<AUni ws="en">destination, goal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the place toward which a person is moving?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="b43ee297-39d0-44bb-af4b-20d1235f7e47" ownerguid="fc4b68a0-31cd-4193-9490-0f488f34fcde"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ku</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ku</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b952a19-fce6-44e5-ab25-c091ef27f843" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="b43f4845-c387-4943-a604-74ecc96acbdc" ownerguid="93e87993-8183-443f-9ea0-0fa5810468b3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="b43fae8e-6b19-42ed-98cd-d363174b9cf8" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<Abbreviation> -<AUni ws="en">8.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.579" /> -<DateModified val="2022-9-23 16:55:8.579" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to being small.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79B' Large, Small</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Small</AUni> -</Name> -<Questions> -<objsur guid="0061e167-c41f-4ea7-a218-98835a39dac0" t="o" /> -<objsur guid="6ec9a841-8aa9-4689-97e2-249559f81733" t="o" /> -<objsur guid="1673f65d-9953-47de-9d96-654ce5e0a59a" t="o" /> -<objsur guid="8e7e2c25-2c2c-4465-86e1-eb9a082fe542" t="o" /> -<objsur guid="f4c6ae83-a0aa-4c67-acae-52e490a2384a" t="o" /> -<objsur guid="a7940683-a253-48a9-affb-817ec6fe95a2" t="o" /> -<objsur guid="c90d88f2-299e-4dc0-b479-5d82db16e7c6" t="o" /> -<objsur guid="9cbbcc31-f29b-4890-aeda-c46c1ed31306" t="o" /> -<objsur guid="1e19502d-9160-4b44-a820-53282161d55e" t="o" /> -<objsur guid="39869d1a-8b3a-4b1a-b24d-9891fd7dbbed" t="o" /> -<objsur guid="53d676a1-044a-4d6b-90b0-c2c3689fee79" t="o" /> -<objsur guid="bba9d0f6-07d9-4ea3-9df5-9593d08da563" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="b43fdd76-9895-4585-912a-7484289e0100" ownerguid="7524887a-5cf0-4459-96d1-fd8262bef7d4"> -<ExampleWords> -<AUni ws="en">root, uproot</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to growing roots?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="b441a287-959f-4845-be39-c8c9c2b00da1" ownerguid="5dfb5545-62ab-4401-a48a-70d7a8cfb3c9"> -<Form> -<AUni ws="qvm-x-ach">wan</AUni> -<AUni ws="qvm-x-acl">wan</AUni> -<AUni ws="qvm-x-akh">wan</AUni> -<AUni ws="qvm-x-akl">wan</AUni> -<AUni ws="qvm-x-ame">wan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="b442fdfb-24b1-4f86-b323-e2ef84572018"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">europa</AUni> -<AUni ws="qvm-x-acl">europa</AUni> -<AUni ws="qvm-x-akh">europa</AUni> -<AUni ws="qvm-x-akl">europa</AUni> -<AUni ws="qvm-x-ame">europa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+europa</AUni> -<AUni ws="qvm-x-acl">+europa</AUni> -<AUni ws="qvm-x-akh">+europa</AUni> -<AUni ws="qvm-x-akl">+europa</AUni> -<AUni ws="qvm-x-ame">+europa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.518" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6c212b54-1448-49cd-b3aa-ff68e04d0ea6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+europa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="55d2312e-3d91-4dce-bd57-b7c358e3c533" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9dc4af63-bd2f-49a1-964d-f91c9ad4a145" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +europa 
\entryTyp root 
\gENG Europe 
\gSPN europa 
\e +europa 
\c N0 
\ach europa 
\akh europa 
\acl europa 
\akl europa 
\ame europa</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="b44c14ba-8f8e-4937-84f6-1ba5c1ecd704" ownerguid="7e512866-4b27-4ecf-903e-cab043f309e3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">lumtsuy</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">lumtsuy</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">lumtsuy</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">lumtsuy</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">lumtsuy</Run> -</AStr> -</Form> -<Morph> -<objsur guid="016f3085-2d5e-47f3-946f-5066308fcadd" t="r" /> -</Morph> -<Msa> -<objsur guid="c41c60cc-83bf-48bb-8ded-b37916944eab" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="b44ed97c-28cd-49ce-93e2-186b3706b109" ownerguid="d66a286d-698f-4879-a57f-6674a9e685a6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pave</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7c43e663-8320-433f-b3ae-fca7842a9f37" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b4508281-2fda-4c90-96dc-bf77e15d3475" ownerguid="756728a8-9eb8-4329-aee2-d6a3d64585f2"> -<ExampleWords> -<AUni ws="en">solid, liquid, gas</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe the states of matter?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b4508293-4948-4264-901d-922eee30edaa" ownerguid="6d5540de-e3b1-4396-aa44-a13bcad5e61a"> -<Form> -<AUni ws="qvm-x-ach">norti; norte</AUni> -<AUni ws="qvm-x-acl">norti; norti; norte</AUni> -<AUni ws="qvm-x-akh">norti; norte</AUni> -<AUni ws="qvm-x-akl">norti; norti; norte</AUni> -<AUni ws="qvm-x-ame">norti; norte</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b451098b-393a-42f7-afa5-e283aae61f97" ownerguid="f6e416b3-50b1-4e48-8a39-2998725b1c79"> -<ExampleWords> -<AUni ws="en">leave (your spouse), walk out on, leave (your spouse) for another man/woman</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to leaving your husband or wife?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b4544ce4-018b-42a4-a743-1cfef8f4e26a" ownerguid="2d992d65-6708-43a7-8afa-7da2d77cb470"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hoopoe</AUni> -<AUni ws="es">abubilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dc1f2ee7-4bf7-4190-8264-cc56ddcfddcc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="b4548dc3-b24a-49c4-8405-5e19ac464039" ownerguid="540fa096-41dc-417e-aad1-b3e85766ba61"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">crush</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1f999640-8527-4462-8faa-7d160b9cf0c4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="b456e020-211a-458d-9d0f-59b89e938b3f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">honras</AUni> -<AUni ws="qvm-x-acl">honras</AUni> -<AUni ws="qvm-x-akh">honras</AUni> -<AUni ws="qvm-x-akl">honras</AUni> -<AUni ws="qvm-x-ame">honras</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+honras</AUni> -<AUni ws="qvm-x-acl">+honras</AUni> -<AUni ws="qvm-x-akh">+honras</AUni> -<AUni ws="qvm-x-akl">+honras</AUni> -<AUni ws="qvm-x-ame">+honras</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.741" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cd8e182f-8db3-4300-84e4-cadd0d8534ac" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+honras</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bd8ae24c-0fc4-4b80-8aa6-1ca3f201a9c2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0eaffa7e-9658-49e7-9c85-b49badb86b73" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +honras 
\entryTyp root 
\gENG 
\gSPN 
\e +honras 
\c N0 
\mp +FinalC 
\ach honras 
\akh honras 
\acl honras 
\akl honras 
\ame honras</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="b45dc743-8347-4e33-840a-ad3ef5aa1b52"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jagchisya; jagchisya:</AUni> -<AUni ws="qvm-x-acl">jagchisya; jagchisya:</AUni> -<AUni ws="qvm-x-akh">jaqchisya; jaqchisya:</AUni> -<AUni ws="qvm-x-akl">jaqchisya; jaqchisya:</AUni> -<AUni ws="qvm-x-ame">haqchisya; haqchisya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*haqchis</AUni> -<AUni ws="qvm-x-acl">*haqchis</AUni> -<AUni ws="qvm-x-akh">*haqchis</AUni> -<AUni ws="qvm-x-akl">*haqchis</AUni> -<AUni ws="qvm-x-ame">*haqchis</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.670" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9dfe2fab-3e31-452a-96cd-e1a400afe31e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*haqchis</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="98da5e0c-d5e5-446b-86a0-38e79bc6da12" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="95b3bcd3-a064-4cf0-b43d-848dc15ed134" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *haqchis 
\entryTyp root 
\gENG 
\gSPN 
\e *haqchis 
\c V1 
\mp +underlong 
\mp +underlong 
\ach jagchisya foreshortened 
\ach jagchisya: 
\akh jaqchisya foreshortened 
\akh jaqchisya: 
\acl jagchisya foreshortened 
\acl jagchisya: 
\akl jaqchisya foreshortened 
\akl jaqchisya: 
\ame haqchisya foreshortened 
\ame haqchisya: 
\mp +FinalLength 
\i Wishqa jagchisyätsimashga.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="b45ea8c7-35ba-464c-98c1-b2a711140dbf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tanga</AUni> -<AUni ws="qvm-x-acl">tanga</AUni> -<AUni ws="qvm-x-akh">tanqa</AUni> -<AUni ws="qvm-x-akl">tanqa</AUni> -<AUni ws="qvm-x-ame">tanqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tanqa.r</AUni> -<AUni ws="qvm-x-acl">*tanqa.r</AUni> -<AUni ws="qvm-x-akh">*tanqa.r</AUni> -<AUni ws="qvm-x-akl">*tanqa.r</AUni> -<AUni ws="qvm-x-ame">*tanqa.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.794" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e8d2a27f-1f55-479d-82f8-0ee1974ddef7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tanqa.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2d56fc06-c1e6-4517-a6b0-f6a34819c089" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dbfb1cce-ad3a-4b20-9404-f3c4266e376a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tanqa.r 
\entryTyp root 
\gENG push 
\gSPN empujar 
\e *tanqa.r 
\c R0 
\ach tanga 
\akh tanqa 
\acl tanga 
\akl tanqa 
\ame tanqa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="b4600d6d-a7e5-4040-9ed3-ff230e8497cd" ownerguid="0c49d8bb-06a5-4b7d-a317-c94d9ecb8850"> -<Form> -<AUni ws="qvm-x-ach">contrata</AUni> -<AUni ws="qvm-x-acl">contrata</AUni> -<AUni ws="qvm-x-akh">contrata</AUni> -<AUni ws="qvm-x-akl">contrata</AUni> -<AUni ws="qvm-x-ame">contrata</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b4609422-8ea0-40b7-ada7-99b22dad9f2d" ownerguid="aad7c9b0-aff3-4684-86d5-657a20e39288"> -<ExampleWords> -<AUni ws="en">authority, power, dominion, hegemony, control, right</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to authority?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b460cae4-7d17-45df-8df6-1f741c26ed69" ownerguid="8a731984-bfbb-4870-886c-4d74dc671251"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="2a189027-7548-4acf-8da7-ea2210303e63" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="5da99c0e-eb08-4513-ac35-22a73c17ed5b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b4631b18-7815-482a-9d63-be77928d9a10" ownerguid="cf337287-c9fa-43d2-93c4-284f45e262c0"> -<ExampleWords> -<AUni ws="en">arthritis, arthritic, stiffness of the joints, rheumatic, rheumatism, backache</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What words refer to a disease of the bones and joints?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b4636fd8-73e8-429f-9f94-5d7bc57483c1" ownerguid="0066f0f7-02dd-4f8e-afa5-59b8cb5a434a"> -<ExampleWords> -<AUni ws="en">betray, double-cross, stab in the back, sell out, sell someone down the river</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to betraying someone to his enemies?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="b4664e30-2a93-4452-844e-27d17344415f" ownerguid="c42245c6-88e7-48d8-b5b9-0ef7f4fffcce"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="b4eaff67-9284-411a-86be-abf5d1f5d257" t="o" /> -<objsur guid="48681d0a-d5f3-4861-b0f6-e3571dc55eee" t="o" /> -<objsur guid="910e7b8e-7a3c-47ae-afdb-3c15a17ccfea" t="o" /> -<objsur guid="7e63ba02-f987-4f41-9aae-e4fe85bce33d" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiMorphBundle" guid="b4676380-6e5e-467f-82a4-3b41f85cc812" ownerguid="8be39c56-0972-48b7-bc2c-726974fae70a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">paypa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">paypa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">paypa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">paypa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">paypa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ef8aa2fa-1fcd-42c5-b5e9-7103eb66cd96" t="r" /> -</Morph> -<Msa> -<objsur guid="343b8dc5-eec2-4cec-b5df-a2909c950e5c" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="b4690dab-df5b-4545-99db-3d0c8ee32950" ownerguid="81e6851d-4716-4b52-8631-ac1e5a70c9e5"> -<Form> -<AUni ws="qvm-x-ach">tana</AUni> -<AUni ws="qvm-x-acl">tana</AUni> -<AUni ws="qvm-x-akh">tana</AUni> -<AUni ws="qvm-x-akl">tana</AUni> -<AUni ws="qvm-x-ame">tana</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b46cc4d6-1f16-4e96-82b4-1efc21e9b2d5" ownerguid="ba8370ac-4918-42c8-afa0-55ac80bb5f52"> -<Form> -<AUni ws="qvm-x-ach">aylu</AUni> -<AUni ws="qvm-x-acl">aylu; aylu; aylo</AUni> -<AUni ws="qvm-x-akh">aylu</AUni> -<AUni ws="qvm-x-akl">aylu; aylu; aylo</AUni> -<AUni ws="qvm-x-ame">aylu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="b46d4673-7e63-4476-9596-e1602c5530d0"> -<Analyses> -<objsur guid="0ca0a9a5-fa82-4472-a3e3-6034fc2c7fc9" t="o" /> -</Analyses> -<Checksum val="-1191425956" /> -<Form> -<AUni ws="qvm-x-akh">ima</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="b472982f-508a-4487-b961-c2edacbb397b" ownerguid="7d6ceca0-b1e2-4993-9888-ab4305c0e811"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">desordenar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8dccccb7-4fbb-4504-b0da-40c998572a67" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="b473345a-2b96-4c6c-9f2c-bb45f8ef8390" ownerguid="15f2cdb3-ccc9-4cd3-9753-c0f23c99349a"> -<Form> -<AUni ws="qvm-x-ach">ura</AUni> -<AUni ws="qvm-x-acl">ura</AUni> -<AUni ws="qvm-x-akh">ura</AUni> -<AUni ws="qvm-x-akl">ura</AUni> -<AUni ws="qvm-x-ame">ura</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b473dc9f-5301-49cf-9e97-90ececa253e7" ownerguid="1fda68d4-5941-4695-b656-090d603a3344"> -<ExampleWords> -<AUni ws="en">recipe, ingredients, instructions, measurements</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a set of instructions for cooking something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b477381b-1e52-48fd-b3e6-dedbb3c1245d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pagtsa</AUni> -<AUni ws="qvm-x-acl">pagtsa</AUni> -<AUni ws="qvm-x-akh">paqtsa</AUni> -<AUni ws="qvm-x-akl">paqtsa</AUni> -<AUni ws="qvm-x-ame">paqtsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*paqcha</AUni> -<AUni ws="qvm-x-acl">*paqcha</AUni> -<AUni ws="qvm-x-akh">*paqcha</AUni> -<AUni ws="qvm-x-akl">*paqcha</AUni> -<AUni ws="qvm-x-ame">*paqcha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.707" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="58f437f0-3746-496e-8ef0-078c782839b9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*paqcha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1d162f6a-4499-4a82-b954-b2e6826dd6e9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9699d9ce-4a92-4e41-b659-9644d5c22995" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *paqcha 
\entryTyp root 
\gENG waterfalls 
\gSPN cascada 
\e *paqcha 
\c N0 
\ach pagtsa 
\akh paqtsa 
\acl pagtsa 
\akl paqtsa 
\ame paqtsa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="b47bc921-a46e-4e6c-a236-7f91faa3dda7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pagla</AUni> -<AUni ws="qvm-x-acl">pagla</AUni> -<AUni ws="qvm-x-akh">paqla</AUni> -<AUni ws="qvm-x-akl">paqla</AUni> -<AUni ws="qvm-x-ame">paqla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*paqlla.n</AUni> -<AUni ws="qvm-x-acl">*paqlla.n</AUni> -<AUni ws="qvm-x-akh">*paqlla.n</AUni> -<AUni ws="qvm-x-akl">*paqlla.n</AUni> -<AUni ws="qvm-x-ame">*paqlla.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.709" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dd13b98a-1219-4893-9e41-a5e82bd65d7c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*paqlla.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="be8b654b-42c9-4da8-a3fb-49beb836f033" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bd638e6c-76fa-4b7b-b87e-ef3814f6b4a6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *paqlla.n 
\entryTyp root 
\gENG 
\gSPN 
\e *paqlla.n 
\c N0 
\ach pagla 
\akh paqla 
\acl pagla 
\akl paqla 
\ame paqla 
\i Lev 13.41 Urculanpa agtsan ushacaptin pagla ricacurpis pürumi caycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b47bf421-cb14-4406-b9c9-cb871678ec4e" ownerguid="8f68d85f-70f8-4662-9b4b-1dd2900a002a"> -<ExampleWords> -<AUni ws="en">suck blood, bloodsucking, chew (holes in leaves)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) How do insects eat?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="b47d2604-8b23-41e9-9158-01526dd83894" ownerguid="63403699-07c1-43f3-a47c-069d6e4316e5"> -<Abbreviation> -<AUni ws="en">1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.932" /> -<DateModified val="2022-9-23 16:55:7.932" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the planet we live on.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">World</AUni> -</Name> -<Questions> -<objsur guid="8dd97f6c-4d3d-4199-8b5a-8a2b512ff5d1" t="o" /> -<objsur guid="00eacb31-e002-4fcf-a142-3874bbbf1c15" t="o" /> -<objsur guid="35afb080-7a99-4e03-8f60-6219c8777501" t="o" /> -<objsur guid="e8ea88cb-a60b-44ef-83dc-2fc612645bda" t="o" /> -<objsur guid="ffe9a459-15c5-4b66-97e9-ced06a7f40d9" t="o" /> -<objsur guid="56bc0361-18f3-4836-9dd6-0acebf47dff1" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="09ac3709-0b0e-4046-b6b2-7869d574aa0d" t="r" /> -<objsur guid="390ad7fc-8360-4eae-8736-3aedc15ae659" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="cce98603-ff8f-4213-945a-bd6746716139" t="o" /> -<objsur guid="f899802d-bd32-427f-a101-c84219f7e14e" t="o" /> -<objsur guid="756728a8-9eb8-4329-aee2-d6a3d64585f2" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="b47e6f6a-1c48-47af-855d-e1217bddfa6c" ownerguid="7831223b-e5ed-4186-a321-94e9ae72a27d"> -<ExampleWords> -<AUni ws="en">toss, flip</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to throwing something so that it turns over and over?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b47eafdc-7965-4830-b96e-49a59fdad3d2" ownerguid="273f4956-f79f-4b1e-b552-466280a65e60"> -<ExampleWords> -<AUni ws="en">show, point out, point to, mark, indicate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to showing someone where something is?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b47f4c8b-2d0d-4237-9868-ee2265187364" ownerguid="ab8f12fb-57b0-4d61-8ae0-50d7cbc412df"> -<ExampleWords> -<AUni ws="en">freeze, frozen, ice over/up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to water turning into ice?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b48262b5-a121-4bc2-82bb-3633646e68aa" ownerguid="da3c18df-1023-4ef1-8a28-3b7549604028"> -<Form> -<AUni ws="qvm-x-ach">lucli</AUni> -<AUni ws="qvm-x-acl">lucli; lucle</AUni> -<AUni ws="qvm-x-akh">lukli</AUni> -<AUni ws="qvm-x-akl">lukli; lukle</AUni> -<AUni ws="qvm-x-ame">lukli</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b48c99c7-f85e-4210-a190-7ae8a9bf1718" ownerguid="70e2d960-8053-46de-9e06-6bf44dd1e73d"> -<Form> -<AUni ws="qvm-x-ach">tranquïlu</AUni> -<AUni ws="qvm-x-acl">tranquïlu; tranquïlu; tranquïlo</AUni> -<AUni ws="qvm-x-akh">tranquïlu</AUni> -<AUni ws="qvm-x-akl">tranquïlu; tranquïlu; tranquïlo</AUni> -<AUni ws="qvm-x-ame">tranquïlu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b4902b9b-2883-4ad4-8af8-1940b630edd6" ownerguid="f4e655bc-6048-4f78-95b2-50cb1f6bd6b8"> -<Form> -<AUni ws="qvm-x-ach">jabón; jabon</AUni> -<AUni ws="qvm-x-acl">jabón; jabon</AUni> -<AUni ws="qvm-x-akh">jabón; jabon</AUni> -<AUni ws="qvm-x-akl">jabón; jabon</AUni> -<AUni ws="qvm-x-ame">jabón; jabon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b49ace75-8cb1-49f7-979e-76fe1359c3fa" ownerguid="7963a558-b7dd-45dd-b347-8f9cce1d7aa9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">anywhere</AUni> -<AUni ws="es">dondequiera</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b8def1a6-0471-4c89-a784-3844950ceff6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="b49c25f0-a465-4350-86be-6787787e0eb7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tijiral</AUni> -<AUni ws="qvm-x-acl">tijiral</AUni> -<AUni ws="qvm-x-akh">tijiral</AUni> -<AUni ws="qvm-x-akl">tijiral</AUni> -<AUni ws="qvm-x-ame">tijiral</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tijeral</AUni> -<AUni ws="qvm-x-acl">+tijeral</AUni> -<AUni ws="qvm-x-akh">+tijeral</AUni> -<AUni ws="qvm-x-akl">+tijeral</AUni> -<AUni ws="qvm-x-ame">+tijeral</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.886" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="11aefcb9-b91f-41e6-88fa-8cd1a99e25e7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tijeral</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="841724f6-dd8d-459c-87df-96a848cc84ee" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4d0ae195-13ef-4eba-9050-4887643ce681" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tijeral 
\entryTyp root 
\gENG joist 
\gSPN tijeral 
\e +tijeral 
\c N0 
\mp +FinalC 
\ach tijiral 
\akh tijiral 
\acl tijiral 
\akl tijiral 
\ame tijiral</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="b49f5869-e8e8-4f00-8d7e-d4890c494e12" ownerguid="3e9ed499-7b7e-494f-978d-7d8d9c9397cb"> -<Form> -<AUni ws="qvm-x-ach">ranra</AUni> -<AUni ws="qvm-x-acl">ranra</AUni> -<AUni ws="qvm-x-akh">ranra</AUni> -<AUni ws="qvm-x-akl">ranra</AUni> -<AUni ws="qvm-x-ame">ranra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b4a4b649-e2b0-4f95-95a8-8f21981eea89" ownerguid="cb99a086-8c6d-4f90-81db-6afa69ae5455"> -<ExampleWords> -<AUni ws="en">grunt, snort, squeal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What sounds do pigs make?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b4aa2d66-88f8-4488-b089-26a4c60515bc" ownerguid="ca48386d-293f-4452-a489-d179042da11c"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="b4aa4bbd-8abf-4503-96e4-05c75efd23d5" ownerguid="999581c4-1611-4acb-ae1b-5e6c1dfe6f0c"> -<Abbreviation> -<AUni ws="en">1.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.916" /> -<DateModified val="2022-9-23 16:55:7.916" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the weather.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>14A Weather</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Weather</AUni> -</Name> -<OcmCodes> -<Uni>132 Climate</Uni> -</OcmCodes> -<Questions> -<objsur guid="cb8dac15-14d3-453c-a1d5-47f4768503af" t="o" /> -<objsur guid="85a48f2b-7a93-4b4a-ab35-c677bfefe7d1" t="o" /> -<objsur guid="e256835b-c4a0-4ca5-ab13-c32036ea234a" t="o" /> -<objsur guid="75b92147-1693-44d8-b74f-bbdc4cc099fb" t="o" /> -<objsur guid="c301d2f0-7e9d-468b-90a5-1dc40707604b" t="o" /> -<objsur guid="ea4e34f5-f2fe-445a-88ff-eb9bb60c1288" t="o" /> -<objsur guid="55aed3be-13e8-4565-bb46-e835e5967485" t="o" /> -<objsur guid="eacb9cf9-1013-4317-a1ad-4a95551bf77e" t="o" /> -<objsur guid="165215ef-3878-450b-b46e-ffaa02501295" t="o" /> -<objsur guid="f418a639-50cb-49b3-b80f-fe13e2c839b8" t="o" /> -<objsur guid="ac9a1295-e62c-4058-a6a7-93bbf741e58c" t="o" /> -<objsur guid="75c65134-9cca-49c8-9a32-556dde1d2f4a" t="o" /> -<objsur guid="b907fb8a-9b85-4eda-9eb1-822c045e168f" t="o" /> -<objsur guid="99d6f90e-5168-4560-8ebe-9e81eb1a91d7" t="o" /> -<objsur guid="930776cf-c6d2-4dfd-850a-593e6ccba4dc" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="742996cd-b87f-40a8-bdb3-dba74219bd73" t="r" /> -<objsur guid="82e4394a-2f58-4356-8d9c-1ad9dbe95293" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="93b8bd61-137a-4ebc-b12f-52fa5d2b3ea4" t="o" /> -<objsur guid="5b12ea7b-790f-4f3e-8d07-893fc267773e" t="o" /> -<objsur guid="bfa3be74-0390-4e2e-bdb7-ed41eb67e4f1" t="o" /> -<objsur guid="ab8f12fb-57b0-4d61-8ae0-50d7cbc412df" t="o" /> -<objsur guid="380b0d15-77a1-49ba-ad83-a508e7ffb83d" t="o" /> -<objsur guid="63c69d11-1101-4870-aeb8-43ee364381b0" t="o" /> -<objsur guid="349937e3-a2fd-41f8-b7c4-bd6fa106add4" t="o" /> -<objsur guid="e6b21531-b7d0-4e37-b01b-3ca49a285168" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="b4aabb6c-34de-476c-b195-41153ace4122" ownerguid="c51acfd9-59db-4631-afa9-078ed0ec1c99"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ink</AUni> -<AUni ws="es">tinta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b0768543-3cca-47ee-ad8a-970207d9cb4b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b4ab5dc2-ff49-4b17-9ee5-0e5927f49990" ownerguid="b5d679e3-506a-4994-81a2-be48a698d945"> -<ExampleWords> -<AUni ws="en">meet (for the first time), introduce someone, introduce oneself, introduce each other, be introduced</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to meeting someone for the first time?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="b4ae16e1-fa4e-46bf-a046-0778575840a1" ownerguid="6cdb7ecf-5ac5-46b8-a7f7-45815f6b8e64"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="b4b1eb70-88d6-4633-90a0-6ebeafabe910" ownerguid="b6844f38-bbf3-40cb-8a4c-118cc4d502b8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">no.way</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d44d4a73-32c0-4273-96d8-7630c327454a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b4ba4a4d-aaa1-415b-ac74-be98633dc0e6" ownerguid="a3ca2a31-259e-4e15-9696-75b0c81886e9"> -<ExampleWords> -<AUni ws="en">straight, straight as an arrow, direct, even, lank, linear, rectilinear, true</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is straight?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b4bbb7b8-d484-4238-8162-f8956cd7fecb" ownerguid="3393b3b2-b324-408d-9c59-057a0de9c3bd"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The <attempt> was unsuccessful.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">attempt (n), endeavor (n), try (n), campaign, drive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to an attempt to do something?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="b4be01c0-d851-483d-94b7-a7c2854264dc" ownerguid="4528c56e-618e-4fcb-abf2-d0e4be3a6a76"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">runa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">runa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">runa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">runa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">runa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="dbbd8356-c9df-482b-a128-55aaaa8ad47f" t="r" /> -</Morph> -<Msa> -<objsur guid="735a29e0-40d3-4d25-9e9a-e8181d173c29" t="r" /> -</Msa> -<Sense> -<objsur guid="cf4862c0-1792-48e3-9385-fd47ccf1ccc5" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="b4c17095-15c8-4589-90b8-2e39be8bff56" ownerguid="787da344-8c33-4d3e-84a6-ec7a7b8346da"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="b4c1e05f-f741-45cc-8d13-a1f60f474325" ownerguid="a03663ca-0c66-4570-be2d-b40105cc4400"> -<Abbreviation> -<AUni ws="en">9.4.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.708" /> -<DateModified val="2022-9-23 16:55:8.708" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that an affirmative answer is expected to a question.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>69D Markers for an Affirmative Response to Questions</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Markers expecting an affirmative answer</AUni> -</Name> -<Questions> -<objsur guid="f13ad6a3-fbd4-4755-9610-a1ab6078fd20" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="b4c40a22-26c2-47a5-9b2e-e13f85958126" ownerguid="f04f6a01-5da7-4f4e-a0d8-622eab6be571"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b4c49ef1-6161-41b6-9221-96b2314af9fb" ownerguid="89ba59d4-b314-4070-83bb-f9f868bcd363"> -<ExampleWords> -<AUni ws="en">painter, artist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who draws or paints?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b4c561e3-de7b-4f1f-9de6-dd83322c98c7" ownerguid="a6710378-186d-4b6b-8e32-7f38e12ccfd9"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b4c87ab5-c2ca-4c64-8392-b8d765b517b1" ownerguid="2b6f9af7-04ee-4030-a2cd-87d55959caa8"> -<ExampleWords> -<AUni ws="en">brave, bravely, bravery, courage, courageous, courageously, fearless, fearlessly, unafraid</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe someone who is not afraid?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="b4cb9e92-8ae2-4e60-80d7-9040ca5cc532" ownerguid="907b24b6-7dcc-428e-afec-86cb20362d4a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="b4cc0f32-10d5-4d14-a438-19985a31b8e8" ownerguid="94f573ff-29f0-42ae-b1d9-f882823b2935"> -<ExampleWords> -<AUni ws="en">buddy, buster, guy, gal, bro, sis</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the common nicknames?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b4cd38e9-ff82-4913-bba0-6d002ab8e103" ownerguid="1ffebc95-cdd8-41f9-977d-ed8556048060"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bruise</AUni> -<AUni ws="es">moretón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6b89368c-0e25-43b4-ae32-564c5b889256" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="b4d00173-3223-408b-a7b0-f78edbfd7c41" ownerguid="11569ae9-566d-4ed7-adc7-dc5b4177c6d0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0 V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">good.day</AUni> -<AUni ws="es">buenos.días</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8fec0515-0850-4061-b779-5a8386b8e370" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b4d1c9c7-8767-4893-afdb-4a69d91aa9c8" ownerguid="42be1634-72ca-4a20-80a1-ba726e5cd1d2"> -<ExampleWords> -<AUni ws="en">knife, ax</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to cutting something with a particular tool?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b4d2972d-299e-4dc3-bab4-58d084c82f49" ownerguid="9fc41e37-c61f-4b55-a5b9-d3c3da85925d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b4d3c52f-fff3-432e-9f1d-0b4c2d3f9e6b" ownerguid="0296465a-25de-4af6-a122-376956b4b452"> -<ExampleWords> -<AUni ws="en">we, us, our, ours</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What pronouns refer to the speaker and those associated with the speaker?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b4d72877-eb52-4c74-8dda-dcb6df4e761f" ownerguid="22e8f542-0ab1-4f25-af50-fd0d02917fda"> -<ExampleWords> -<AUni ws="en">figurative, not literal, metaphorical, figure of speech, colorful language</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to figurative speech?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b4d76e57-368b-4066-a496-a65ace3227f4" ownerguid="c5996b7d-0acc-4ac7-bfa0-09b93a0eccbc"> -<ExampleWords> -<AUni ws="en">prospecting, pan for gold</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to looking for minerals?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b4d9dc0d-0e36-466a-bf68-0d3fd58b4ce2" ownerguid="8a42e0ec-bec9-46ac-8d43-673803694f6c"> -<Form> -<AUni ws="qvm-x-ach">José</AUni> -<AUni ws="qvm-x-acl">José</AUni> -<AUni ws="qvm-x-akh">José</AUni> -<AUni ws="qvm-x-akl">José</AUni> -<AUni ws="qvm-x-ame">José</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="b4dc89dc-3811-4d45-b0ee-0b71e28305cc" ownerguid="64493789-1c2c-4b24-a7e6-f00ff9be923e"> -<Abbreviation> -<AUni ws="en">6.1.2.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.348" /> -<DateModified val="2022-9-23 16:55:8.348" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to using something up.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Use up</AUni> -</Name> -<Questions> -<objsur guid="c4c0b1d2-1228-4d6e-9922-618c98fe4df3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="b4ddc5f8-5bb0-40b6-9f76-ec6b7d47c8df" ownerguid="4a146fa6-8cdf-4d5a-a5b3-2a3b92afed2f"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EZK 34.19 ¿Tsaynogpis jarucur putcatashgayqui yacutatsurag uponga?</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="b4de1d53-0874-4181-a642-87c7c372f11f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fusburus</AUni> -<AUni ws="qvm-x-acl">fusburus</AUni> -<AUni ws="qvm-x-akh">fusburus</AUni> -<AUni ws="qvm-x-akl">fusburus</AUni> -<AUni ws="qvm-x-ame">fusburus</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fósforos</AUni> -<AUni ws="qvm-x-acl">+fósforos</AUni> -<AUni ws="qvm-x-akh">+fósforos</AUni> -<AUni ws="qvm-x-akl">+fósforos</AUni> -<AUni ws="qvm-x-ame">+fósforos</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.578" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="979411f5-03cc-4d71-b0f9-d74f5d4a3c08" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fósforos</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c8920105-990d-4274-8bd2-912d74496248" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1c8dbc6a-a4fa-41ca-8b12-3befdba3b006" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fósforos 
\entryTyp root 
\gENG match 
\gSPN fósforos 
\e +fósforos 
\c N0 
\mp +assimilated 
\ach fusburus 
\akh fusburus 
\acl fusburus 
\akl fusburus 
\ame fusburus 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="b4e2b780-d90d-427f-bf54-10acafdca8e6" ownerguid="79eb8229-3c23-4396-979d-b6911f63feda"> -<Form> -<AUni ws="qvm-x-ach">fiërra</AUni> -<AUni ws="qvm-x-acl">fiërra</AUni> -<AUni ws="qvm-x-akh">fiërra</AUni> -<AUni ws="qvm-x-akl">fiërra</AUni> -<AUni ws="qvm-x-ame">fiërra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b4e42fd5-e183-43e9-b63d-8de8b9b0abaa" ownerguid="ee8a20b7-4202-489a-b8cd-bdebaf770313"> -<ExampleWords> -<AUni ws="en">distillery, brewery, still, filter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What equipment and materials are used to brew alcohol?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b4e4a211-db7f-43d2-8b94-398c0a37e195" ownerguid="7b513a02-c3ae-4243-9410-16854d911258"> -<ExampleWords> -<AUni ws="en">be named for, be named after, namesake</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to the reason why someone is given a name?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b4e57a46-db12-4f4e-a584-82a731356d5c" ownerguid="3c130521-28d4-40bb-abbd-e5a2e8445814"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="b4e6c077-4f5e-44f3-8868-1f7ae3486585" ownerguid="0f568473-880d-43bd-b5ce-590100fdcaf6"> -<Abbreviation> -<AUni ws="en">5.2.2.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.317" /> -<DateModified val="2022-9-23 16:55:8.317" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to eating utensils.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Eating utensil</AUni> -</Name> -<OcmCodes> -<Uni>415 Utensils</Uni> -</OcmCodes> -<Questions> -<objsur guid="3cdd8137-7c49-4822-a164-f7c5f20c8671" t="o" /> -<objsur guid="36eceb5c-7b19-4666-b973-ee3f019f10ff" t="o" /> -<objsur guid="61806326-4c9b-4efc-a5b9-04550338496f" t="o" /> -<objsur guid="86eae6d1-f8be-4918-95a5-591c4e4f750e" t="o" /> -<objsur guid="b263a395-61dd-4e11-951a-326aeb7f5538" t="o" /> -<objsur guid="f9bd16bf-2bfc-42ba-9d10-c279502db56d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="b4e70051-d6f0-4e89-becc-e765858844ee" ownerguid="fcfb806d-27a7-4482-9809-12bc5a60d766"> -<Form> -<AUni ws="qvm-x-ach">sufïju</AUni> -<AUni ws="qvm-x-acl">sufïju; sufïju; sufïjo</AUni> -<AUni ws="qvm-x-akh">sufïju</AUni> -<AUni ws="qvm-x-akl">sufïju; sufïju; sufïjo</AUni> -<AUni ws="qvm-x-ame">sufïju</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="b4e9a00e-70ab-4ccf-a837-07e02f91712a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">queja</AUni> -<AUni ws="qvm-x-acl">queja</AUni> -<AUni ws="qvm-x-akh">queja</AUni> -<AUni ws="qvm-x-akl">queja</AUni> -<AUni ws="qvm-x-ame">queja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+quejar</AUni> -<AUni ws="qvm-x-acl">+quejar</AUni> -<AUni ws="qvm-x-akh">+quejar</AUni> -<AUni ws="qvm-x-akl">+quejar</AUni> -<AUni ws="qvm-x-ame">+quejar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.831" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c045d028-e023-4455-9d6a-15acaa1fc61e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+quejar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a6afdfff-d775-4c02-be89-5d494a627972" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5f17ed7c-026a-4c4d-a4aa-e72337c7ae87" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +quejar 
\entryTyp root 
\gENG denounce 
\gSPN denunciar 
\e +quejar 
\c V2 
\ach queja 
\akh queja 
\acl queja 
\akl queja 
\ame queja 
\mcc +quejar / ~_ PRTSPF 
\mcc +quejar / ~_ ALL.2</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="b4eaff67-9284-411a-86be-abf5d1f5d257" ownerguid="b4664e30-2a93-4452-844e-27d17344415f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -<Sense> -<objsur guid="1b926284-5562-4cf3-8ad2-65536a715093" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="b4ef7c71-cc06-4916-a9ba-bd22743582c0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cumplita</AUni> -<AUni ws="qvm-x-acl">cumplita</AUni> -<AUni ws="qvm-x-akh">cumplita</AUni> -<AUni ws="qvm-x-akl">cumplita</AUni> -<AUni ws="qvm-x-ame">cumplita</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+completar</AUni> -<AUni ws="qvm-x-acl">+completar</AUni> -<AUni ws="qvm-x-akh">+completar</AUni> -<AUni ws="qvm-x-akl">+completar</AUni> -<AUni ws="qvm-x-ame">+completar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.162" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="49cd8449-6693-4cda-ba6c-7d8e00775b95" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+completar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="09cdb01e-a424-46e1-a306-caf3841c6378" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c0fa3fdd-414f-440c-a85b-014a532c6e3d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +completar 
\entryTyp root 
\gENG complete 
\gSPN completar 
\e +completar 
\c V1 
\ach cumplita 
\akh cumplita 
\acl cumplita 
\akl cumplita 
\ame cumplita</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="b4f7bb65-cefb-4eda-a895-09cb34af2f6d" ownerguid="e4bee7f1-8900-4833-bbb9-cf0b65c7216e"> -<Form> -<AUni ws="qvm-x-ach">pichi</AUni> -<AUni ws="qvm-x-acl">pichi; piche</AUni> -<AUni ws="qvm-x-akh">pichi</AUni> -<AUni ws="qvm-x-akl">pichi; piche</AUni> -<AUni ws="qvm-x-ame">pichi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="b4f8d2c6-f44f-4bf1-a0b7-5f65328545d3" ownerguid="40c4b498-7132-4ed0-9840-97622a4b9369"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="8d179aad-bdbf-4777-ac4b-4883ae7517d7" t="o" /> -<objsur guid="edcf3420-728e-46a7-a688-ba8e9e2efcbc" t="o" /> -<objsur guid="69972a6d-010a-4d78-9f2d-88a1b7129d63" t="o" /> -<objsur guid="efd81008-6515-489e-a118-ac1df7af5995" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="b4fac85b-9d87-45c4-9861-2fc4b6ac4087" ownerguid="46d13b18-d016-4b11-9f95-d5b99061469f"> -<Form> -<AUni ws="qvm-x-ach">pirwa</AUni> -<AUni ws="qvm-x-acl">pirwa</AUni> -<AUni ws="qvm-x-akh">pirwa</AUni> -<AUni ws="qvm-x-akl">pirwa</AUni> -<AUni ws="qvm-x-ame">pirwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="b4fc91fe-68f7-45a6-8863-75bba1029bef" ownerguid="63b18261-faf3-4ab2-bcb4-7c3ac4d6d6ba"> -<Abbreviation> -<AUni ws="en">6.8.9.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.496" /> -<DateModified val="2022-9-23 16:55:8.496" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to taking something by force.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Take by force</AUni> -</Name> -<Questions> -<objsur guid="80738a94-2b5c-43f1-b690-1d494be155f3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="b4fdb8e4-30e8-4468-be4e-cf3e8f653bc6" ownerguid="0a1b26b2-2152-45e2-9b63-4a68fca73a90"> -<ExampleWords> -<AUni ws="en">have an ear for music, have a good ear, maestro, tone deaf</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a good or bad musician?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b4fdd3b9-c9ca-494c-aea5-8d5d98681281" ownerguid="63b18261-faf3-4ab2-bcb4-7c3ac4d6d6ba"> -<ExampleWords> -<AUni ws="en">counterfeit, counterfeiter, counterfeit bill, bogus</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to making fake money?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="b4fe4698-54a2-4bcd-9490-e07ee1ee97af" ownerguid="767aa167-af3d-4e11-a68b-ec31f9d2ef1a"> -<Abbreviation> -<AUni ws="en">3.5.6.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.174" /> -<DateModified val="2022-9-23 16:55:8.174" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to crying--when water forms in the eyes because of sadness or pain.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25L Laugh, Cry, Groan x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Cry, tear</AUni> -</Name> -<Questions> -<objsur guid="ee950a97-85b1-48ab-ac62-9ea9eb0f2890" t="o" /> -<objsur guid="11a56a16-e4f6-44ca-b503-a74021d11082" t="o" /> -<objsur guid="e103b13b-1bd5-4c84-aa47-fef96c309a00" t="o" /> -<objsur guid="a2bde31c-ba6b-4894-ab3c-06b3d3a4933c" t="o" /> -<objsur guid="e991f2a4-8214-4873-9497-a5ac2818c6a1" t="o" /> -<objsur guid="8aed70ab-bea6-45ca-acfc-b1122330072a" t="o" /> -<objsur guid="31b6d46a-7d87-4de3-860c-fd4cc75815ae" t="o" /> -<objsur guid="ce2fe6b2-c7b7-4f22-8eb2-5022be45f40d" t="o" /> -<objsur guid="d81cc1e0-0f36-4c6d-9940-15199788ef31" t="o" /> -<objsur guid="9da3f4b1-9e58-43ea-bcf5-6e3620ece68b" t="o" /> -<objsur guid="3c0e62d3-e706-4e9e-9683-4d15dae6bd2d" t="o" /> -<objsur guid="4ea1fea2-7e3d-406f-a3c4-a3522b45abb0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="b5045b35-adc8-430e-a61a-0db5a8f9b0e6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsapu</AUni> -<AUni ws="qvm-x-acl">tsapu; tsapu; tsapo</AUni> -<AUni ws="qvm-x-akh">tsapu</AUni> -<AUni ws="qvm-x-akl">tsapu; tsapu; tsapo</AUni> -<AUni ws="qvm-x-ame">tsapu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chapu.n</AUni> -<AUni ws="qvm-x-acl">*chapu.n</AUni> -<AUni ws="qvm-x-akh">*chapu.n</AUni> -<AUni ws="qvm-x-akl">*chapu.n</AUni> -<AUni ws="qvm-x-ame">*chapu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.284" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c6b5fdb1-c02f-4bc2-806b-bdea3f7f6b0e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chapu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="38199f75-31ef-4682-928e-aa7038054ead" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c4698df6-111a-4e8f-94a2-849d47e72677" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chapu.n 
\entryTyp root 
\gENG toasted.wheat 
\gSPN harina.tostada 
\e *chapu.n 
\c N0 
\ach tsapu 
\akh tsapu 
\acl tsapu / _# 
\acl tsapu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tsapo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsapu / _# 
\akl tsapu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tsapo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsapu</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="b50493dc-626e-4d25-b0d9-4a7f52207717"> -<Form> -<Str> -<Run ws="en">yarqUv1</Run> -</Str> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="b504b0a2-8803-4848-a379-a2f6e56be581" ownerguid="28b0587f-f28f-4fcf-a367-028c6c4dacf8"> -<Form> -<AUni ws="qvm-x-ach">caminu; camino</AUni> -<AUni ws="qvm-x-acl">caminu; caminu; camino</AUni> -<AUni ws="qvm-x-akh">caminu; camino</AUni> -<AUni ws="qvm-x-akl">caminu; caminu; camino</AUni> -<AUni ws="qvm-x-ame">caminu; camino</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b505e4c1-0c1a-4303-95a8-d8af6e413491" ownerguid="e6e548c7-8e3f-46b1-846c-e75c9314e75b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.light</AUni> -<AUni ws="es">alumbrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aceb5e66-75a7-4c7d-82cd-57425ed7705a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b505f40d-9c51-4cd5-8963-13a6d54df104" ownerguid="c0543870-4232-464d-8645-36f15a6cbe90"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b50827d4-82c2-40cc-83cc-e207122dc803" ownerguid="9a9c7174-4148-43c2-875c-0d2f884a5fe3"> -<ExampleWords> -<AUni ws="en">untidy, messy, be a mess, bedraggled, careless, cluttered, disheveled, frowzy, rumpled, slatternly, slovenly, be all in a muddle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that is untidy?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="b5095e3e-bf2a-451b-ae2d-5d7a9c20b53c"> -<Analyses> -<objsur guid="497ab205-76f7-4bea-9dbb-fd88003b7276" t="o" /> -</Analyses> -<Checksum val="-107239172" /> -<Form> -<AUni ws="qvm-x-akh">masta</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="b50d6175-d480-4e2d-a90c-9064edddd36a" ownerguid="2e61b40e-2fdb-47c4-a2d0-cd77f8b9adee"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spread</AUni> -<AUni ws="es">tender</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5ec6f96e-99d3-47a6-92dd-2390269e6350" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="b50f021f-f2b5-45d1-b157-bbb5c4fa9154" ownerguid="4cfcff0f-d396-4309-b67c-c7357facd62c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">toda.clase</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3ca36744-0455-4b97-b50d-974223966812" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="b50f39cb-3152-4d56-9ddc-4b98f763e76a" ownerguid="f4491f9b-3c5e-42ab-afc0-f22e19d0fff5"> -<Abbreviation> -<AUni ws="en">3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to wanting something or wanting to do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25A Desire, Want, Wish</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Want</AUni> -</Name> -<Questions> -<objsur guid="050039c2-55da-4972-a5dd-84d10623c044" t="o" /> -<objsur guid="e62b8120-7707-4e27-8414-bba2083f2fde" t="o" /> -<objsur guid="4a0d3906-c396-4107-b419-0f53b54ad596" t="o" /> -<objsur guid="6e63d3f9-0132-47b7-b1b5-cddbd23a583e" t="o" /> -<objsur guid="8deec2c5-efa6-4a7f-b815-3863963cb835" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="af4ac058-d4b3-4c7a-ade8-6af762d0486d" t="o" /> -<objsur guid="45f7b003-ade3-4efc-8dee-259dcbf80a4a" t="o" /> -<objsur guid="5ea9301a-9906-4e81-97cf-48ee95a54c63" t="o" /> -<objsur guid="8383b4cb-e14a-4d04-a8c3-9c5276384953" t="o" /> -<objsur guid="7c9c6263-9f7d-472c-a4c9-1767015d41fe" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="b50fda60-e10d-46a2-8b5e-1d9c6a5f1e19" ownerguid="00593c1d-59f7-4aab-a228-ab1ab60e420d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="b50fda9d-ad6f-4454-8978-b7e2cfeb8366" ownerguid="6eb1cb04-4be5-48bc-b2a1-ec90fd81a464"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="b5134925-6924-4e53-87c9-71a9a7042005"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">enchapa</AUni> -<AUni ws="qvm-x-acl">enchapa</AUni> -<AUni ws="qvm-x-akh">enchapa</AUni> -<AUni ws="qvm-x-akl">enchapa</AUni> -<AUni ws="qvm-x-ame">enchapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+enchapar</AUni> -<AUni ws="qvm-x-acl">+enchapar</AUni> -<AUni ws="qvm-x-akh">+enchapar</AUni> -<AUni ws="qvm-x-akl">+enchapar</AUni> -<AUni ws="qvm-x-ame">+enchapar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.467" /> -<DateModified val="2022-10-10 21:18:47.218" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a00a93e6-db87-41bb-840c-e63c69e09c4e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+enchapar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="11ac6b8e-7ca3-45e4-a15d-104923454136" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4099fa0a-f905-4aee-8a50-2da2f7ffebbf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +enchapar 
\entryTyp root 
\gENG 
\gSPN 
\e +enchapar 
\c V1 
\ach enchapa 
\akh enchapa 
\acl enchapa 
\akl enchapa 
\ame enchapa</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="b515ff91-86ee-4107-bf66-3616bc52fe43" ownerguid="5c382242-9d84-408a-a5b9-e6cc2320c640"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">na</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">na</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">na</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">na</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">na</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38151a50-9c63-4a70-8bbb-e5cfc5339ad5" t="r" /> -</Morph> -<Msa> -<objsur guid="3afae7ea-b6f9-4990-9b80-c355228ee832" t="r" /> -</Msa> -</rt> -<rt class="WfiAnalysis" guid="b5179c37-f18c-473d-bf8d-b96f23503f3c" ownerguid="6545d219-5055-445e-b141-9a57907a923b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="4988f165-d414-49c1-96f2-d4e4a2baee4e" t="o" /> -<objsur guid="b02fa781-bbbd-4f59-9915-db6b19de3a20" t="o" /> -<objsur guid="da1a2528-eb3d-4989-ba14-4e083754643b" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="b517cf54-7c60-4d86-b872-044b5cf3108b" ownerguid="97248d2a-b920-4dd9-9eb5-f36890a82e7d"> -<Form> -<AUni ws="qvm-x-ach">ambicia</AUni> -<AUni ws="qvm-x-acl">ambicia</AUni> -<AUni ws="qvm-x-akh">ambicia</AUni> -<AUni ws="qvm-x-akl">ambicia</AUni> -<AUni ws="qvm-x-ame">ambicia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="b518bbc3-0930-4e22-8f2f-a9e62ae79e89"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shica</AUni> -<AUni ws="qvm-x-acl">shica</AUni> -<AUni ws="qvm-x-akh">shika</AUni> -<AUni ws="qvm-x-akl">shika</AUni> -<AUni ws="qvm-x-ame">shika</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shika</AUni> -<AUni ws="qvm-x-acl">*shika</AUni> -<AUni ws="qvm-x-akh">*shika</AUni> -<AUni ws="qvm-x-akl">*shika</AUni> -<AUni ws="qvm-x-ame">*shika</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.569" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8d21826f-f143-46e5-9de9-c38d9435d822" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shika</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d7af271d-e56a-451a-8117-fa238e467fee" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b78bd870-12a7-4975-9a3e-cc2f8b7ddfe9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shika 
\entryTyp root 
\gENG sprinkle 
\gSPN sacudir 
\e *shika 
\c V2 
\ach shica 
\akh shika 
\acl shica 
\akl shika 
\ame shika</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="b51bb3ab-0a52-4fd1-82aa-6b6b774b15f3" ownerguid="f43ea635-fc56-4aae-8450-ad5ff77cec24"> -<Form> -<AUni ws="qvm-x-ach">ishpa</AUni> -<AUni ws="qvm-x-acl">ishpa</AUni> -<AUni ws="qvm-x-akh">ishpa</AUni> -<AUni ws="qvm-x-akl">ishpa</AUni> -<AUni ws="qvm-x-ame">ishpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PunctuationForm" guid="b51c5aed-a330-4c4f-8dc6-98b42f4e03ad"> -<Form> -<Str> -<Run ws="en">o</Run> -</Str> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="b51e001a-6b36-4eaf-8e14-486207f69ac6" ownerguid="43d75b24-809e-44a7-a635-cb2edc31bd1d"> -<Form> -<AUni ws="qvm-x-ach">raspi</AUni> -<AUni ws="qvm-x-acl">raspi; raspi; raspe</AUni> -<AUni ws="qvm-x-akh">raspi</AUni> -<AUni ws="qvm-x-akl">raspi; raspi; raspe</AUni> -<AUni ws="qvm-x-ame">raspi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="b51f3a5c-4030-4c4c-8ac1-f6ab88c4feab" ownerguid="09ba0db6-0881-4df8-8508-be23625f17fb"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b52063c3-2204-4d33-aaac-78a15ac6b3bb" ownerguid="b0905fa9-2f90-410b-8eb5-7c7944c4f0f9"> -<ExampleWords> -<AUni ws="en">masturbate, masturbation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to having sex by yourself?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="b5229c72-afcc-4581-9038-d7054d7ff8ce"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">benefactive</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="b5259e80-7522-4e4c-9784-1b427333ab56"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">i:la; i:la:</AUni> -<AUni ws="qvm-x-acl">i:la; i:la:</AUni> -<AUni ws="qvm-x-akh">i:la; i:la:</AUni> -<AUni ws="qvm-x-akl">i:la; i:la:</AUni> -<AUni ws="qvm-x-ame">i:la; i:la:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+helar</AUni> -<AUni ws="qvm-x-acl">+helar</AUni> -<AUni ws="qvm-x-akh">+helar</AUni> -<AUni ws="qvm-x-akl">+helar</AUni> -<AUni ws="qvm-x-ame">+helar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.700" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ee12497d-e01d-4d19-9f31-51c818c894a3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+helar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fe864c4e-a942-4d33-8611-d4e05724c3c4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="83d5a230-8920-4ecc-a757-cbf2961c4094" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +helar 
\entryTyp root 
\gENG freeze 
\gSPN helar 
\e +helar 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach i:la foreshortened 
\ach i:la: 
\mp +underlong 
\akh i:la foreshortened 
\akh i:la: 
\acl i:la foreshortened 
\acl i:la: 
\akl i:la foreshortened 
\akl i:la: 
\mp +underlong 
\ame i:la foreshortened 
\ame i:la:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b526bed8-2887-4308-b8be-0c29eb53b701" ownerguid="a2a3e21a-819c-4400-b2e6-e6c1a0a0ded3"> -<ExampleWords> -<AUni ws="en">contemptible, despicable, pitiable, pitiful, despised</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe someone who is despised?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b52db03e-dd96-46e2-a33a-7bb17cea373c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">punchu</AUni> -<AUni ws="qvm-x-acl">punchu; punchu; puncho</AUni> -<AUni ws="qvm-x-akh">punchu</AUni> -<AUni ws="qvm-x-akl">punchu; punchu; puncho</AUni> -<AUni ws="qvm-x-ame">punchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*punchu</AUni> -<AUni ws="qvm-x-acl">*punchu</AUni> -<AUni ws="qvm-x-akh">*punchu</AUni> -<AUni ws="qvm-x-akl">*punchu</AUni> -<AUni ws="qvm-x-ame">*punchu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.1" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0481bd97-82e4-4d85-87a5-af7fb7ff811f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*punchu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="25d3c844-a553-42fd-91ab-d92903ef1475" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="49088f3a-00b9-4b87-a717-6ec42d0a7c5d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *punchu 
\entryTyp root 
\gENG poncho 
\gSPN poncho 
\e *punchu 
\c N0 
\ach punchu 
\akh punchu 
\acl punchu / _# 
\acl punchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl puncho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl punchu / _# 
\akl punchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl puncho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame punchu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="b531b2f1-791f-4c7d-81e6-75560b715ef8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lay</AUni> -<AUni ws="qvm-x-acl">lay</AUni> -<AUni ws="qvm-x-akh">lay</AUni> -<AUni ws="qvm-x-akl">lay</AUni> -<AUni ws="qvm-x-ame">lay</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.508" /> -<DateModified val="2022-10-15 16:12:39.231" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="93a0133e-4ef8-4908-b174-942abcb6038d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">EXCL2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="33dcdba1-aa82-4097-bd0c-272315630142" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a85da8c9-fa0a-4f61-8311-d9279e65622d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx EXCL2 
\entryTyp suffix 
\gENG EXCL2 
\gSPN ADM2 
\e EXCL2 
\c V1/NOSUFF V2/NOSUFF N0/NOSUFF BN/BN 
\o 220 
\mp +foreshortens +mlowers 
\ach lay 
\akh lay 
\acl lay 
\akl lay 
\ame lay 
\mp +FinalC 
\mcc EXCL2 / IN CAUS ~_ 
\mcc EXCL2 / *wawa _ / *churi _ / +Absalón _ / +papá _ / *marka _ / +vida _</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="b531c81f-c18b-4a93-ac0f-b6da7ca455cb" ownerguid="cb58440f-0e54-42ee-9fdd-1aa3fc8b7caf"> -<Form> -<AUni ws="qvm-x-ach">siusa</AUni> -<AUni ws="qvm-x-acl">siusa</AUni> -<AUni ws="qvm-x-akh">siwsa</AUni> -<AUni ws="qvm-x-akl">siwsa</AUni> -<AUni ws="qvm-x-ame">siwsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b531caf2-666b-46c3-a145-6258e7a12c67" ownerguid="3fcd9a41-4aab-4e0a-a92d-3732842dce91"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">post</AUni> -<AUni ws="es">poste</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9003c29c-599e-4f59-a9e7-38d0d62853d1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b5349e80-ba2e-4f9f-b235-f062c0b8fa3c" ownerguid="d3b21664-5fdf-4052-915a-40b87cafcf65"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="b536622c-80a3-4b31-9d22-4ed2fb76324d" ownerguid="c8d94c8f-db0b-4016-bdd2-e41a2eae4288"> -<Abbreviation> -<AUni ws="en">4.6.7.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.264" /> -<DateModified val="2022-9-23 16:55:8.264" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a city.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>1N Population Centers</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">City</AUni> -</Name> -<OcmCodes> -<Uni>632 Towns; 633 Cities; 360 Settlements; 361 Settlement Patterns; 362 Housing; 369 Urban and Rural Life</Uni> -</OcmCodes> -<Questions> -<objsur guid="2b7d5fe2-6e83-44c0-ac56-d64f25ab7555" t="o" /> -<objsur guid="39db9b36-ab36-4a89-b92a-38b3903218b6" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoInflAffixSlot" guid="b5380f6d-8ec4-4a58-806f-5e3caeadb9df" ownerguid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5"> -<Name> -<AUni ws="en">just</AUni> -</Name> -<Optional val="True" /> -</rt> -<rt class="WfiMorphBundle" guid="b53c3ead-20d2-4d15-bcdc-168561c60734" ownerguid="b93d9c47-2a86-4719-8864-71b8ddc50398"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="b53c4f80-acce-4b8d-8bc3-cd74fe788e55" ownerguid="6506a629-35d7-4e12-b1ae-d3c064d925e0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="b53deac1-26c7-4fe9-9109-8496e248e8c7" ownerguid="5e7a5899-df78-4aa7-bec9-b354acfe087f"> -<Abbreviation> -<AUni ws="en">4.6.6.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.264" /> -<DateModified val="2022-9-23 16:55:8.264" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to an election.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Election</AUni> -</Name> -<OcmCodes> -<Uni>666 Elections</Uni> -</OcmCodes> -<Questions> -<objsur guid="26a515f7-aba0-4fb1-9ca8-691bd50699f2" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="b53ec0fe-25f3-4146-b8d1-cb7b52500c75" ownerguid="fabae049-74c7-45b2-8ef3-cc2bded3d8f7"> -<Form> -<AUni ws="qvm-x-ach">aylu</AUni> -<AUni ws="qvm-x-acl">aylu; aylu; aylo</AUni> -<AUni ws="qvm-x-akh">aylu</AUni> -<AUni ws="qvm-x-akl">aylu; aylu; aylo</AUni> -<AUni ws="qvm-x-ame">aylu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b5414155-839a-4b97-9029-42e79fc3fcf2" ownerguid="acd1956e-7b55-40c3-8c5c-3122e4bce2fe"> -<Form> -<AUni ws="qvm-x-ach">danza</AUni> -<AUni ws="qvm-x-acl">danza</AUni> -<AUni ws="qvm-x-akh">danza</AUni> -<AUni ws="qvm-x-akl">danza</AUni> -<AUni ws="qvm-x-ame">danza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="b541715e-a327-4ee0-91ba-c7a83d22314a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lo:cu</AUni> -<AUni ws="qvm-x-acl">lo:cu; lo:cu; lo:co</AUni> -<AUni ws="qvm-x-akh">lo:cu</AUni> -<AUni ws="qvm-x-akl">lo:cu; lo:cu; lo:co</AUni> -<AUni ws="qvm-x-ame">lo:cu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+loco.n</AUni> -<AUni ws="qvm-x-acl">+loco.n</AUni> -<AUni ws="qvm-x-akh">+loco.n</AUni> -<AUni ws="qvm-x-akl">+loco.n</AUni> -<AUni ws="qvm-x-ame">+loco.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.112" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f77a7391-2743-4542-ade8-0beaf30bdfe5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+loco.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="18254021-1c97-400e-85ed-1a3be561cdbf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e53e7c85-eecc-4720-956c-022def3cec70" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +loco.n 
\entryTyp root 
\gENG crazy 
\gSPN loco 
\e +loco.n 
\c N0 
\ach lo:cu 
\akh lo:cu 
\acl lo:cu / _# 
\acl lo:cu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lo:co +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lo:cu / _# 
\akl lo:cu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lo:co +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lo:cu 
\i GEN 34.8 Tsaymi paykunawan parlar Hamor kaynoq nirqan: <<Tsurï Shequemmi panikipaq pasaypa namurädu kashpan löcutashqa puriykan.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="b541e0c9-8977-4a59-a4ea-8f9a6e4ee374"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">niptin</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="b5499348-b8ca-4fae-8486-b23863560ae5" ownerguid="9bb173c6-cf38-47cd-803f-ebdf964ca2fc"> -<Abbreviation> -<AUni ws="en">4.4.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to chance--when something happens that no one intended.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Chance</AUni> -</Name> -<OcmCodes> -<Uni>777 Luck and Chance</Uni> -</OcmCodes> -<Questions> -<objsur guid="ffe1a2e4-d00b-4396-bfba-561c9e0c8742" t="o" /> -<objsur guid="62fccace-9ae5-4b8f-942c-1db27dec1fb0" t="o" /> -<objsur guid="58e5cab8-a2a8-4019-bfbb-f1e9061c0ba0" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="99b40843-54bf-4c59-ae1d-d7146cebec48" t="o" /> -<objsur guid="ce6a862d-a4bb-4378-b14d-439806870c41" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="b54a2b39-08fd-468b-ac16-bd0ab313df45" ownerguid="8ada287c-bb36-440c-a7cb-7d311cf9a4db"> -<Form> -<AUni ws="qvm-x-ach">supay</AUni> -<AUni ws="qvm-x-acl">supay</AUni> -<AUni ws="qvm-x-akh">supay</AUni> -<AUni ws="qvm-x-akl">supay</AUni> -<AUni ws="qvm-x-ame">supay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="b54d33f2-c662-49e2-90f5-8e027e6b216f" ownerguid="6c713245-57c0-43c1-95b6-b8b91063aa5c"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="bf6e02e6-5619-4736-a86c-721cce235d6c" t="o" /> -<objsur guid="baaa72c2-993e-4432-9130-335995093310" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="b54fa508-a1e3-4c32-96f4-aac816105bae" ownerguid="5af67a6a-6f24-49b5-b2d6-a4271cc7f14a"> -<Form> -<AUni ws="qvm-x-ach">wiswi</AUni> -<AUni ws="qvm-x-acl">wiswi; wiswe</AUni> -<AUni ws="qvm-x-akh">wiswi</AUni> -<AUni ws="qvm-x-akl">wiswi; wiswe</AUni> -<AUni ws="qvm-x-ame">wiswi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b550442e-7f07-41fb-a54c-9f456d5b171d" ownerguid="df6302ad-0d24-4317-ad63-b99c6039aaab"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="45876ad9-ee4e-4bea-afff-662e47a4cc33" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">heart</AUni> -<AUni ws="es">corazon</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2fb7213e-0e9b-4f92-bb67-d0acb24f26e8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="b551fe30-773e-457d-aca6-afca2d89daec" ownerguid="61d085e6-2092-4d86-88b4-45f4e4579a4d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">food</AUni> -<AUni ws="es">comida</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b030d483-fee1-4e48-9f90-8096165b7c1f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="b553e989-2b2a-4b1e-a987-ae75f3862501" ownerguid="e7caa24f-155d-47cd-946d-cc0d06dfc764"> -<Abbreviation> -<AUni ws="en">4.3.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.225" /> -<DateModified val="2022-9-23 16:55:8.225" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to not caring about someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Not care</AUni> -</Name> -<Questions> -<objsur guid="e098780d-fdbb-4d95-a4b5-83ab68ef97fb" t="o" /> -<objsur guid="510091af-e912-422e-81b0-b469f03a4b0a" t="o" /> -<objsur guid="0efc516b-db2c-46f9-a616-48fc0cabf8a8" t="o" /> -<objsur guid="33ad7bee-2c3b-405b-beba-fd7bded9a553" t="o" /> -<objsur guid="2d050800-b636-486b-b29a-941116d2bb3e" t="o" /> -<objsur guid="ecad5118-6654-450a-91e7-6dfb51157aeb" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="b554a305-4f76-472b-a0d7-55025daf05d7" ownerguid="3a5918e6-cab9-4fde-bbcc-d65a0bb191d6"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="b5558ab9-dead-4454-a62e-f2705b2ece5d"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">37</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="b559dbca-c20e-429c-91d0-4ae42e1612a8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">altsa</AUni> -<AUni ws="qvm-x-acl">altsa</AUni> -<AUni ws="qvm-x-akh">altsa</AUni> -<AUni ws="qvm-x-akl">altsa</AUni> -<AUni ws="qvm-x-ame">altsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*alli+cha</AUni> -<AUni ws="qvm-x-acl">*alli+cha</AUni> -<AUni ws="qvm-x-akh">*alli+cha</AUni> -<AUni ws="qvm-x-akl">*alli+cha</AUni> -<AUni ws="qvm-x-ame">*alli+cha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.739" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cde5ad17-4f28-47eb-a4d0-1d67ca67093e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*alli+cha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6272ac00-e9a9-462b-b6d3-85a1413daa4d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d78da944-00a5-4ec2-9436-e566201d2878" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *alli+cha 
\entryTyp root 
\gENG fix 
\gSPN arreglar 
\e *alli+cha 
\c V2 
\ach altsa 
\akh altsa 
\acl altsa 
\akl altsa 
\ame altsa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b55b87fc-62ce-4333-9a51-20bcab31a60a" ownerguid="101c16f8-ec76-4ec7-895a-fd814fef51dd"> -<ExampleWords> -<AUni ws="en">radiation, scan</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to things are done to treat disease?</AUni> -</Question> -</rt> -<rt class="Segment" guid="b55e487c-64cd-484c-935a-da99610f33e0" ownerguid="d3c455db-ef72-49c6-902d-0c916d2beeca"> -<Analyses> -<objsur guid="61310595-90e0-4e8e-84d1-c6f39b1a65ab" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="CmDomainQ" guid="b56322ff-4640-45e4-a8a7-bcdf519217db" ownerguid="6c36a680-4ff4-43b9-a7c2-9037ceb0d3f6"> -<ExampleWords> -<AUni ws="en">round (off), roll into a ball, make a ball of, loop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to making something round?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b56d9572-6ab1-4223-8377-b7274c562325" ownerguid="f2088079-3650-4044-b6bc-3e3b04c09a8a"> -<PartOfSpeech> -<objsur guid="a3274cfd-225f-45fd-8851-a7b1a1e1037a" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="b56e4ae2-0f53-4541-922f-ab25958e73d6" ownerguid="c55029f6-188e-4812-a5fd-c28e2dba66e2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dig.ditch</AUni> -<AUni ws="es">sanjar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="13a30676-1c05-4dd8-99cb-b631455ed94c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="b5700ad7-36a1-4608-8789-8f84007244f8" ownerguid="f7706644-542f-4fcb-b8e1-e91d04c8032a"> -<Abbreviation> -<AUni ws="en">2.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.32" /> -<DateModified val="2022-9-23 16:55:8.32" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being tired.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>23F Tire, Rest</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Tired</AUni> -</Name> -<Questions> -<objsur guid="c13a78f4-35f4-41dd-ad15-90994596a144" t="o" /> -<objsur guid="287be46e-e4b2-4b22-9c66-b4835fb2a321" t="o" /> -<objsur guid="c5e8573f-2dc9-4c6f-8706-e8d82ef33bc2" t="o" /> -<objsur guid="dfa8e981-4df3-44c5-80f7-85999a9a66da" t="o" /> -<objsur guid="4c439c7c-aeed-411a-be6e-d72e904cc4d4" t="o" /> -<objsur guid="b2fa0572-c753-488a-bc4f-977f3602e2ca" t="o" /> -<objsur guid="74f83b8c-a0b0-47b5-9f28-a47e9048bd63" t="o" /> -<objsur guid="94236ebe-d094-41e1-800e-e81158e82fc4" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="0c21ae3d-10b1-481f-8d8f-66e2590c4578" t="r" /> -<objsur guid="d502512c-966b-4752-8636-716fb29facfe" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="b5734f71-fac2-4a15-b17a-41581bf7f722"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">colinda</AUni> -<AUni ws="qvm-x-acl">colinda</AUni> -<AUni ws="qvm-x-akh">colinda</AUni> -<AUni ws="qvm-x-akl">colinda</AUni> -<AUni ws="qvm-x-ame">colinda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+colinda</AUni> -<AUni ws="qvm-x-acl">+colinda</AUni> -<AUni ws="qvm-x-akh">+colinda</AUni> -<AUni ws="qvm-x-akl">+colinda</AUni> -<AUni ws="qvm-x-ame">+colinda</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.142" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="04d89944-c490-4e3e-8426-5b6a850a6b33" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+colinda</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a55b800d-5a9e-4d4f-8e1f-8c6964518db1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7665da24-217d-4ae3-8ad4-aa20300a4799" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +colinda 
\entryTyp root 
\gENG 
\gSPN 
\e +colinda 
\c N0 
\ach colinda 
\akh colinda 
\acl colinda 
\akl colinda 
\ame colinda 
\i ZEC 8.2 Tsaymi Hadracpa colindancho caycag Hamat runcuna, Tiro runacuna y Sidón runacunapis paypami caycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="b573d2af-0821-41de-b715-084cab3741d6" ownerguid="6f0813fd-b177-49a9-98f3-2ed3b398a85a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">manta.pequeña</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fee01688-a3ef-4767-b267-5da64092b7e8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="b57400c7-c815-4bc2-98a2-335f4af2f125" ownerguid="417346fe-16dc-4fb7-8989-1af5a412a09a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">intercept</AUni> -<AUni ws="es">atajar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c99f92c0-b953-4668-abef-7d2b10f4a455" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="b5753e98-bf3e-4bc0-8b0f-ecaaf4d2d3f3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsucuy</AUni> -<AUni ws="qvm-x-acl">tsucuy</AUni> -<AUni ws="qvm-x-akh">tsukuy</AUni> -<AUni ws="qvm-x-akl">tsukuy</AUni> -<AUni ws="qvm-x-ame">tsukuy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chukuy</AUni> -<AUni ws="qvm-x-acl">*chukuy</AUni> -<AUni ws="qvm-x-akh">*chukuy</AUni> -<AUni ws="qvm-x-akl">*chukuy</AUni> -<AUni ws="qvm-x-ame">*chukuy</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.335" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5a3a3156-1ab9-49df-834b-c16b6578aeac" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chukuy</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5730b2e3-200d-4284-aa70-f3111d0dd00d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bbf427d9-d8fe-4508-a14b-063efee87d4c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chukuy 
\entryTyp root 
\gENG full 
\gSPN lleno 
\e *chukuy 
\c N0 
\mp +FinalC 
\ach tsucuy 
\akh tsukuy 
\acl tsucuy 
\akl tsukuy 
\ame tsukuy</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b5766c90-9f35-475b-bb6d-467b96ad0589" ownerguid="26bc089a-a989-4763-be6c-05d127d1c0e8"> -<ExampleWords> -<AUni ws="en">deliberate, intentional, conscious, calculated, premeditated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is done deliberately?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b5776b20-00fc-4a2e-ba61-92e7309a251d" ownerguid="89f83065-6807-460c-afbe-a629b2d801fa"> -<Form> -<AUni ws="qvm-x-ach">capri</AUni> -<AUni ws="qvm-x-acl">capri; capri; capre</AUni> -<AUni ws="qvm-x-akh">kapri</AUni> -<AUni ws="qvm-x-akl">kapri; kapri; kapre</AUni> -<AUni ws="qvm-x-ame">kapri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b57972fb-7816-449e-91df-7672421cf377" ownerguid="4f09c9f4-82da-40a5-a53a-75b4ada04121"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1 N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="36532ec0-f032-4438-bb15-968e743bee60" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">crack</AUni> -<AUni ws="es">rajar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="965db265-e5f3-4dfa-af16-a259ac976e4b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="b57e903f-a23f-448e-89ce-85873e3e552b" ownerguid="52b7528a-203d-4580-aa1f-cf0927538021"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">break</AUni> -<AUni ws="es">romper</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bfbb83bf-cb66-4959-a639-9de6ce0b9691" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b5820972-cc4d-4f15-93d5-c1504098fd5f" ownerguid="d2ca3194-e393-480e-ae1d-dd67bed55227"> -<ExampleWords> -<AUni ws="en">green, unripe, immature, mature, mellow, ripen, ripe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to seeds and fruit being ripe?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b585192f-8733-4e79-868e-9b30db46a22f" ownerguid="889de305-82ad-4d1a-9a97-63733ed27bfc"> -<ExampleWords> -<AUni ws="en">prepare, preparations, make preparations, get ready, ready something</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to preparing for a task?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b58752af-cfd1-4050-a79f-f6b90ea31800" ownerguid="71b19b9e-231c-4196-a7d7-aa56a5079782"> -<ExampleWords> -<AUni ws="en">exclude, segregate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to excluding something from a group?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b58a651e-f0c7-4088-8736-3ba5d3ed1a92" ownerguid="0db5817e-05bf-4703-a6b9-e239ac44f857"> -<ExampleWords> -<AUni ws="en">single-sex</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe a school or organization that includes only males or females?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b58ab18c-6ecb-420d-b1a2-2269f99dd788"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pashpa</AUni> -<AUni ws="qvm-x-acl">pashpa</AUni> -<AUni ws="qvm-x-akh">pashpa</AUni> -<AUni ws="qvm-x-akl">pashpa</AUni> -<AUni ws="qvm-x-ame">pashpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pashpa</AUni> -<AUni ws="qvm-x-acl">*pashpa</AUni> -<AUni ws="qvm-x-akh">*pashpa</AUni> -<AUni ws="qvm-x-akl">*pashpa</AUni> -<AUni ws="qvm-x-ame">*pashpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.739" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f307b374-f04d-4a6e-a7ee-34f084b2a376" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pashpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3dbfae5b-0639-4b39-98d2-47ad6fe2330f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f7bebc37-3afc-4fec-bf72-67cbf5638c1f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pashpa 
\entryTyp root 
\gENG grassy.area 
\gSPN pampa 
\e *pashpa 
\c N0 
\ach pashpa 
\akh pashpa 
\acl pashpa 
\akl pashpa 
\ame pashpa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="b58b0b5c-48a0-48ba-adc0-4cb0168b59a8" ownerguid="10b858d3-6b3b-48cb-8d7e-9359cce8c684"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">blacksmith</AUni> -<AUni ws="es">herrero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="86cbe132-d800-4312-aa36-c0734dcc96e3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoAffixAllomorph" guid="b58e5cb2-c3fd-48af-b93e-4e9f495bcd52" ownerguid="03458dde-6a66-459e-a778-8898a462d17b"> -<Form> -<AUni ws="qvm-x-ach">char</AUni> -<AUni ws="qvm-x-acl">char</AUni> -<AUni ws="qvm-x-akh">char</AUni> -<AUni ws="qvm-x-akl">char</AUni> -<AUni ws="qvm-x-ame">char</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="b5930488-6ffc-4922-b6d3-99272a079fb7" ownerguid="df805cee-9cd6-4733-a2d9-eb97a6f4a199"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="b594278c-c938-48ea-a157-49ff67244ef5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chiula</AUni> -<AUni ws="qvm-x-acl">chiula</AUni> -<AUni ws="qvm-x-akh">chiwla</AUni> -<AUni ws="qvm-x-akl">chiwla</AUni> -<AUni ws="qvm-x-ame">chiwla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*triwlla</AUni> -<AUni ws="qvm-x-acl">*triwlla</AUni> -<AUni ws="qvm-x-akh">*triwlla</AUni> -<AUni ws="qvm-x-akl">*triwlla</AUni> -<AUni ws="qvm-x-ame">*triwlla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.139" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="68afe8b5-1cce-415d-9d19-adb5d103b216" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*triwlla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cf57b621-6b75-4635-ac90-38511cfa7b90" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="284be73d-e0d7-4953-983b-caaad5cf4610" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *triwlla 
\entryTyp root 
\gENG urinate 
\gSPN orinar 
\e *triwlla 
\c V1 
\ach chiula 
\akh chiwla 
\acl chiula 
\akl chiwla 
\ame chiwla 
\mcc *triwlla / ~_ REF NOM</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="b5987fee-71fb-400d-8f6f-2991bce15d00"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">silla</AUni> -<AUni ws="qvm-x-acl">silla</AUni> -<AUni ws="qvm-x-akh">silla</AUni> -<AUni ws="qvm-x-akl">silla</AUni> -<AUni ws="qvm-x-ame">silla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+silla.n1</AUni> -<AUni ws="qvm-x-acl">+silla.n1</AUni> -<AUni ws="qvm-x-akh">+silla.n1</AUni> -<AUni ws="qvm-x-akl">+silla.n1</AUni> -<AUni ws="qvm-x-ame">+silla.n1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.681" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f8523230-b30e-4550-9947-bbad0f2547f1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+silla.n1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2489f068-51f1-4ed3-9044-652a38a92ffd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5c0e4a9c-7d56-4ad4-b39f-4b081f3329bd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +silla.n1 
\entryTyp root 
\gENG saddle 
\gSPN montura 
\e +silla.n1 
\c N0 
\ach silla 
\akh silla 
\acl silla 
\akl silla 
\ame silla 
\i Lev 15.9 Purgacionwan caycag runa muntacushgan sillapis impürumi canga.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="b598b722-e164-4250-86d3-d6feacb66335" ownerguid="62ac799d-ad65-4fb5-a08f-a2c750b94997"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yarpä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yarpä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yarpä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yarpä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yarpaa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a7f21528-35d2-49ec-9070-a385dd45427e" t="r" /> -</Morph> -<Msa> -<objsur guid="19ab5cf1-1864-4db0-94a6-3ed04ddf2ef7" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="b59e3268-374b-4ff0-a0fc-8a7d53de996a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">argo:lla</AUni> -<AUni ws="qvm-x-acl">argo:lla</AUni> -<AUni ws="qvm-x-akh">argo:lla</AUni> -<AUni ws="qvm-x-akl">argo:lla</AUni> -<AUni ws="qvm-x-ame">argo:lla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+argolla</AUni> -<AUni ws="qvm-x-acl">+argolla</AUni> -<AUni ws="qvm-x-akh">+argolla</AUni> -<AUni ws="qvm-x-akl">+argolla</AUni> -<AUni ws="qvm-x-ame">+argolla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.828" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7f4a391d-a96f-40a7-a38a-58544dfe4369" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+argolla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f18edfcc-2b59-4850-8d5f-59839a573fcf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f23583e5-529e-448c-a477-ed312c7e41e8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +argolla 
\entryTyp root 
\gENG loop 
\gSPN lazo 
\e +argolla 
\c N0 
\ach argo:lla 
\akh argo:lla 
\acl argo:lla 
\akl argo:lla 
\ame argo:lla</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="b59f6fc4-629d-4e62-8673-cf62f8ad8197" ownerguid="83adeb9d-c0be-4073-894d-913014420280"> -<Abbreviation> -<AUni ws="en">8.3.7.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is mediocre.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Mediocre</AUni> -</Name> -<Questions> -<objsur guid="b3bfadd8-c652-47d9-92f5-0f54ac5c8893" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="b5a56f7d-8d68-4114-a523-3569466f387d" ownerguid="7d54d3dd-5fb2-4640-9bcf-c234696af894"> -<ExampleWords> -<AUni ws="en">honest, reputable, incorruptible, above suspicion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is honest?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b5a82d34-b9b3-44fd-85fe-931fb4eed2dd" ownerguid="cf337287-c9fa-43d2-93c4-284f45e262c0"> -<ExampleWords> -<AUni ws="en">illness, disease, complaint, condition, ailment, disorder, infection, bug, sickness, malady, infirmity, affliction, contagion, debility, indisposition, fever, syndrome, malaise</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a disease?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b5a910a2-2917-45dc-837a-8329be34a753" ownerguid="a57185c3-0cb5-41fa-94bf-da0c9edac600"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The size of our herd <doubled> in three years.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">double (vi), triple, quadruple</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something becoming two or three times as much?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b5a96042-faba-40ea-9769-b71a25289fa3" ownerguid="c8e3c39c-d895-4e42-8e1e-1574137ba016"> -<ExampleWords> -<AUni ws="en">rectangular, round, one story, two story, duplex, bungalow, apartment, apartment building, flat, duplex, ranch style, mansion, castle, man's house, wife's house</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What types of houses are there?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="b5aa5873-4c66-4d2d-935a-18e0ab231dbb" ownerguid="250baab9-5a31-493c-95ea-9fee8baf9fd5"> -<Abbreviation> -<AUni ws="en">7.2.1.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.506" /> -<DateModified val="2022-9-23 16:55:8.506" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to moving in a clumsy manner.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Clumsy</AUni> -</Name> -<Questions> -<objsur guid="00f3ea3e-93b6-4ccc-8d98-3903577f3f94" t="o" /> -<objsur guid="30aa8b93-ab4c-4c83-aea8-cb56b47a39be" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="b5ab50e4-943a-4896-b9fd-b303dd062997" ownerguid="527bd2ae-dc82-494f-934f-dc32c9fa85e4"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">DEU 20.6 Maygayquipis üvata tsayrag plantar wayuyninta manarag provichashga carga chacrayquiman cuticuy.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="b5aea5ff-786b-4255-a43e-e235c497f986" ownerguid="87bd0d45-8a94-41cb-9864-90d53a11a4b9"> -<ExampleWords> -<AUni ws="en">lawyer, advocate, barrister, bar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a lawyer?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b5b16ddc-27b6-4f4c-be52-b965019a5ed7" ownerguid="346c29e0-a7fe-4b47-b7f8-35cd5b35f4d9"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="b5b36c31-c56d-44b9-933c-fe0e62d80c25" ownerguid="771e3882-f672-4e67-8580-edd82d7e5090"> -<Abbreviation> -<AUni ws="en">4.3.4.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.233" /> -<DateModified val="2022-9-23 16:55:8.233" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to sharing with other people.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Share with</AUni> -</Name> -<Questions> -<objsur guid="e61a81ff-00d9-49d1-93e5-dbdfa1e7defc" t="o" /> -<objsur guid="8b80a2ba-c063-408f-90bf-76bef263661c" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="749ad6fe-5509-4e45-b236-84ea12de102e" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="0f323bee-0d8a-4564-9691-87880f55d910" t="o" /> -<objsur guid="50e28fa7-f6c3-45bc-871d-12ef771d532c" t="o" /> -<objsur guid="5d9ef67a-e4ba-47ca-8c8c-ea0f512a66cd" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="b5b44432-e719-47e7-9383-4756d9a3c48f" ownerguid="7c6ba6e5-d81e-4a50-a111-c946a0793378"> -<ExampleWords> -<AUni ws="en">have an advantage, be at an advantage, have something on your side, the odds are stacked in your favor, have a head start, have everything going for you, hold all the cards, have the upper hand, be in a strong position, be in a position of strength</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to having an advantage over other people?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b5b671d3-4d33-4765-ab1d-d708195aa79e" ownerguid="1300719d-cb10-40ea-a158-247cfd41a177"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="b5b7b0c0-8f9b-4ec5-9ca7-e94415af70a2" ownerguid="b194d54e-4876-45b0-81a5-390de1d41dc4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b5b9a709-70da-4dda-a114-e1803a8fdb4d" ownerguid="6fb1d03c-b0fe-49b7-a473-168f12a54a36"> -<ExampleWords> -<AUni ws="en">too late, it's a little late in the day, leave it a bit late, miss</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words indicate that something is too late?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b5bee285-5929-4ab2-ab42-cf468ed574c1" ownerguid="a3fe0ca2-64fe-44db-ac3f-14513385bc25"> -<ExampleWords> -<AUni ws="en">drowsiness, drowsy, sleepiness, sleepy, somnolence, somnolent, soporific</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to feeling like you want to sleep?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b5bf9c3d-4862-459e-998c-e27b5ec42fe3" ownerguid="7c9c6263-9f7d-472c-a4c9-1767015d41fe"> -<ExampleWords> -<AUni ws="en">bid</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to what is offered?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b5c489d8-805a-4f94-b500-739491902545" ownerguid="cbf21710-d2f3-4284-ae07-9a3635ccde6b"> -<Form> -<AUni ws="qvm-x-ach">pincullu</AUni> -<AUni ws="qvm-x-acl">pincullu; pincullu; pincullo</AUni> -<AUni ws="qvm-x-akh">pinkullu</AUni> -<AUni ws="qvm-x-akl">pinkullu; pinkullu; pinkullo</AUni> -<AUni ws="qvm-x-ame">pinkullu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b5ca0d3a-2db3-4c26-abc3-dd843d703c7d" ownerguid="805612cb-6296-434b-8ca1-14ff9ed0a2a1"> -<Form> -<AUni ws="qvm-x-ach">wanwa</AUni> -<AUni ws="qvm-x-acl">wanwa</AUni> -<AUni ws="qvm-x-akh">wanwa</AUni> -<AUni ws="qvm-x-akl">wanwa</AUni> -<AUni ws="qvm-x-ame">wanwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="b5cad18b-f00e-4673-aa09-ea2eb36bed24"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">biene:chu</AUni> -<AUni ws="qvm-x-acl">biene:chu; biene:chu; biene:cho</AUni> -<AUni ws="qvm-x-akh">biene:chu</AUni> -<AUni ws="qvm-x-akl">biene:chu; biene:chu; biene:cho</AUni> -<AUni ws="qvm-x-ame">biene:chu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bien.hecho</AUni> -<AUni ws="qvm-x-acl">+bien.hecho</AUni> -<AUni ws="qvm-x-akh">+bien.hecho</AUni> -<AUni ws="qvm-x-akl">+bien.hecho</AUni> -<AUni ws="qvm-x-ame">+bien.hecho</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.961" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bcfd83ab-8b83-416d-a388-7a1cb6575da5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bien.hecho</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9775b87e-4bf7-48ba-9786-8432e4e6c6eb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ee301b3a-8a2a-4070-87dd-5eb9ea5a8b04" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bien.hecho 
\entryTyp root 
\gENG 
\gSPN 
\e +bien.hecho 
\c N0 
\ach biene:chu 
\akh biene:chu 
\acl biene:chu / _# 
\acl biene:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl biene:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl biene:chu / _# 
\akl biene:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl biene:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame biene:chu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="b5cd99b5-1a6e-4820-8d92-459f6944a478" ownerguid="de8cc82b-a6bb-411d-8ec6-da92f915f422"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="41e55d2f-8bd9-46c1-be7e-da5445d49184" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b5ce40ab-8536-4c2e-a034-0f537d38ddc3" ownerguid="47b7d210-055d-4652-a536-648f0af21fd9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="b5d47dab-541a-428f-9d26-4593f29eab3c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nushi</AUni> -<AUni ws="qvm-x-acl">nushi; nushi; nushe</AUni> -<AUni ws="qvm-x-akh">nushi</AUni> -<AUni ws="qvm-x-akl">nushi; nushi; nushe</AUni> -<AUni ws="qvm-x-ame">nushi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñushi.n</AUni> -<AUni ws="qvm-x-acl">*ñushi.n</AUni> -<AUni ws="qvm-x-akh">*ñushi.n</AUni> -<AUni ws="qvm-x-akl">*ñushi.n</AUni> -<AUni ws="qvm-x-ame">*ñushi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.606" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3a7b7064-d223-4def-9955-e204de69cb52" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñushi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fe44f235-2391-433e-8f3e-ac6ae983f941" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bfafac42-06de-4bd0-993e-019950275fe6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñushi.n 
\entryTyp root 
\gENG streaked 
\gSPN sucio 
\e *ñushi.n 
\c N0 
\mp +FinalI 
\ach nushi 
\akh nushi 
\acl nushi / _# 
\acl nushi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl nushe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl nushi / _# 
\akl nushi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl nushe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame nushi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="b5d679e3-506a-4994-81a2-be48a698d945" ownerguid="469b0a30-3c26-4cfd-b948-7bb952eeff41"> -<Abbreviation> -<AUni ws="en">4.1.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.192" /> -<DateModified val="2022-9-23 16:55:8.192" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to meeting someone for the first time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Meet for the first time</AUni> -</Name> -<Questions> -<objsur guid="b4ab5dc2-ff49-4b17-9ee5-0e5927f49990" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="b5d6d800-b2e6-45d6-9c84-c7efebb76072" ownerguid="4153416a-784d-4f7c-a664-2640f7979a14"> -<ExampleWords> -<AUni ws="en">bridge, ford</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to a place to cross a river?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b5d71f18-f0df-4aec-b707-94537db5037e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ratanya</AUni> -<AUni ws="qvm-x-acl">ratanya</AUni> -<AUni ws="qvm-x-akh">ratanya</AUni> -<AUni ws="qvm-x-akl">ratanya</AUni> -<AUni ws="qvm-x-ame">ratanya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ratanya</AUni> -<AUni ws="qvm-x-acl">*ratanya</AUni> -<AUni ws="qvm-x-akh">*ratanya</AUni> -<AUni ws="qvm-x-akl">*ratanya</AUni> -<AUni ws="qvm-x-ame">*ratanya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.287" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="66f86be1-34ba-43d5-bc93-60945dc2bcbe" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ratanya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f8bbb202-be31-4194-b9ed-c3175f78791f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0b675cfb-f736-4bf8-ab1c-a8c418c361d3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ratanya 
\entryTyp root 
\gENG thistle.ball 
\gSPN 
\e *ratanya 
\c N0 
\ach ratanya 
\akh ratanya 
\acl ratanya 
\akl ratanya 
\ame ratanya</Run> -</AStr> -</Custom> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="b5d8be30-16d2-419e-bb80-39977d5242bd" ownerguid="784206f3-6f68-4d54-b582-250080a9b777" /> -<rt class="WfiMorphBundle" guid="b5daf67d-caa0-4cb1-ba6e-85247e96d4aa" ownerguid="374811b2-b918-47ad-b4b6-20a055c01a26"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="b5db7cc5-1f04-4580-aeb6-14f142e2c344"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">golpa</AUni> -<AUni ws="qvm-x-acl">golpa</AUni> -<AUni ws="qvm-x-akh">qolpa</AUni> -<AUni ws="qvm-x-akl">qolpa</AUni> -<AUni ws="qvm-x-ame">qulpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qullpa.v</AUni> -<AUni ws="qvm-x-acl">*qullpa.v</AUni> -<AUni ws="qvm-x-akh">*qullpa.v</AUni> -<AUni ws="qvm-x-akl">*qullpa.v</AUni> -<AUni ws="qvm-x-ame">*qullpa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.849" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c5b362e8-4329-4ee3-898e-b1090d0c0b7a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qullpa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="123925c9-1dc9-463b-86bc-a774025fafc9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="238e243d-899e-4e96-950b-c0293200f294" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qullpa.v 
\entryTyp root 
\gENG be.in.heat 
\gSPN estar.en.celo 
\e *qullpa.v 
\c V1 
\ach golpa 
\akh qolpa 
\acl golpa 
\akl qolpa 
\ame qulpa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="b5de92e2-0771-4446-b076-19342b7cc6cd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shayqui</AUni> -<AUni ws="qvm-x-acl">shayqui; shayqui; shayque</AUni> -<AUni ws="qvm-x-akh">shayki</AUni> -<AUni ws="qvm-x-akl">shayki; shayki; shayke</AUni> -<AUni ws="qvm-x-ame">shayki</AUni> -</Custom> -<AlternateForms> -<objsur guid="3b75c4bd-154f-4d71-83c0-4e2c8e373ad6" t="o" /> -</AlternateForms> -<DateCreated val="2022-9-23 18:26:20.599" /> -<DateModified val="2022-10-16 14:7:36.150" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="84ebfb93-4f87-44cf-be19-9cb24f246abd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">1FUT2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1e4804b7-c62a-422f-b375-30094952accb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c4851340-e53b-4a5a-94e9-6064e5ade492" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx 1FUT2 
\entryTyp suffix 
\gENG 1FUT2 
\gSPN 1FUT2 
\e 1FUT2 
\c V2/V0 
\o 120 
\mp +FinalI 
\ach shayqui 
\akh shayki 
\acl shayqui / _# 
\acl shayqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shayque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shayki / _# 
\akl shayki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shayke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shayki</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="b5e5984d-25f9-4b5d-a2eb-fc47a411c2ea"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sepulcru; sepulcro</AUni> -<AUni ws="qvm-x-acl">sepulcru; sepulcru; sepulcro</AUni> -<AUni ws="qvm-x-akh">sepulcru; sepulcro</AUni> -<AUni ws="qvm-x-akl">sepulcru; sepulcru; sepulcro</AUni> -<AUni ws="qvm-x-ame">sepulcru; sepulcro</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sepulcro</AUni> -<AUni ws="qvm-x-acl">+sepulcro</AUni> -<AUni ws="qvm-x-akh">+sepulcro</AUni> -<AUni ws="qvm-x-akl">+sepulcro</AUni> -<AUni ws="qvm-x-ame">+sepulcro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.508" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f46f2666-8acf-46df-a7ab-31765fcc7c29" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sepulcro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="090cbdfb-0947-4548-bfce-a1438908f76d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ea523a85-650b-4752-b1c2-f11e5856d5e9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sepulcro 
\entryTyp root 
\gENG sepulcher 
\gSPN sepulcro 
\e +sepulcro 
\c N0 
\ach sepulcru / ~_# 
\ach sepulcro / _# 
\akh sepulcru / ~_# 
\akh sepulcro / _# 
\acl sepulcru / ~_# 
\acl sepulcru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sepulcro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sepulcru / ~_# 
\akl sepulcru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sepulcro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sepulcru / ~_# 
\ame sepulcro / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="b5e5c1c8-106b-410a-b802-7d7f7f473298" ownerguid="28b1aca0-8f20-42cc-bb36-9a97cc83c60a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">young</AUni> -<AUni ws="es">tierno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1c8876db-19c9-490d-9015-fe84611d0a20" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b5e6dd3c-fcd8-4c8d-ae05-3a2ff825f561" ownerguid="5df53b87-7f59-4f5c-991e-5ae007b68fa9"> -<ExampleWords> -<AUni ws="en">Lassie, Fifi, Toto</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What names are given to dogs?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b5ec6e0e-f87f-4231-9655-8e6aa9043fea" ownerguid="c973e727-1dd5-4b6b-add2-80da460b12d3"> -<Form> -<AUni ws="qvm-x-ach">curunya; curunyä</AUni> -<AUni ws="qvm-x-acl">curunya; curunyä</AUni> -<AUni ws="qvm-x-akh">kurunya; kurunyä</AUni> -<AUni ws="qvm-x-akl">kurunya; kurunyä</AUni> -<AUni ws="qvm-x-ame">kurunya; kurunyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b5edee51-acb2-4d07-ab2c-e3aa56ab2bdb" ownerguid="01441207-4935-49a5-a192-16d949f5606c"> -<ExampleWords> -<AUni ws="en">fan, crowd, cheerleaders, pep club</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(21) What is a person called who watches sports?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b5ef1192-8900-4dfc-b200-e42d13100a06" ownerguid="1a6588a1-08cd-4e67-9e1b-f4af3944322a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">grasshopper</AUni> -<AUni ws="es">langosta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="80d88696-3447-4ab1-a871-44e93c5ec853" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="b5f0305b-e9ce-41fb-a8bc-5900aa9402c3" ownerguid="1c1b273d-9def-43bf-8abc-823eea459960"> -<Form> -<AUni ws="qvm-x-ach">quinra</AUni> -<AUni ws="qvm-x-acl">quinra</AUni> -<AUni ws="qvm-x-akh">kinra</AUni> -<AUni ws="qvm-x-akl">kinra</AUni> -<AUni ws="qvm-x-ame">kinra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="b5f45cd2-8dd5-4a74-b334-0d4859d26d89"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wancayla</AUni> -<AUni ws="qvm-x-acl">wancayla</AUni> -<AUni ws="qvm-x-akh">wankayla</AUni> -<AUni ws="qvm-x-akl">wankayla</AUni> -<AUni ws="qvm-x-ame">wankayla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wankaylla</AUni> -<AUni ws="qvm-x-acl">*wankaylla</AUni> -<AUni ws="qvm-x-akh">*wankaylla</AUni> -<AUni ws="qvm-x-akl">*wankaylla</AUni> -<AUni ws="qvm-x-ame">*wankaylla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.475" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9445e00c-c51a-4015-9364-c2756a681a2e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wankaylla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="432c0230-984e-4af6-862b-c11985596062" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4d989341-2640-44a1-8a39-bce1b3feac0a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wankaylla 
\entryTyp root 
\gENG 
\gSPN 
\e *wankaylla 
\c R0 
\ach wancayla 
\akh wankayla 
\acl wancayla 
\akl wankayla 
\ame wankayla 
\i 2SA 3.22 Davidwan parlashganpita Abner yarguriptilannami Davidpa soldäduncunawan Joab chayargan guërracho guechumushgancunata wancayla aparishga.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b5f4ac59-72e6-4dec-8668-a2e05d3f4143" ownerguid="cde96694-79e5-44af-8d38-d988d1938e5f"> -<ExampleWords> -<AUni ws="en">design, draft, draw up the plans, survey, excavate (the foundation)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the steps in building a building?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b5f6659a-fa1b-43f8-a4f6-61fc9d19a783" ownerguid="b672e8ab-cdcc-41e4-8d33-c919ac9a068e"> -<Form> -<AUni ws="qvm-x-ach">mogru</AUni> -<AUni ws="qvm-x-acl">mogru; mogru; mogro</AUni> -<AUni ws="qvm-x-akh">moqru</AUni> -<AUni ws="qvm-x-akl">moqru; moqru; moqro</AUni> -<AUni ws="qvm-x-ame">muqru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b5f8dd14-b195-4a03-ad4e-bda82b79642f" ownerguid="e0d10625-c887-49bd-9ef9-9ccb13bc4852"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">servant</AUni> -<AUni ws="es">serviente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f89457c7-5c45-47c0-bcaa-b056939a620b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b5fc08cc-68d5-47de-bfb0-24ccd87d0efa" ownerguid="a419d056-ce49-4c3b-b5ff-56fc3afe6740"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="b5fc28fc-cbd5-4622-acb2-b8e155d48ee3" ownerguid="a1c56408-3690-4ef1-9bf4-ee429ce97dad"> -<Form> -<AUni ws="qvm-x-ach">charqui</AUni> -<AUni ws="qvm-x-acl">charqui; charqui; charque</AUni> -<AUni ws="qvm-x-akh">charki</AUni> -<AUni ws="qvm-x-akl">charki; charki; charke</AUni> -<AUni ws="qvm-x-ame">charki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b5fc72b2-1a65-4cc0-95b7-bf0dcb62f2b6" ownerguid="10b6c417-d020-4318-a44a-ae69ea3eec5a"> -<ExampleWords> -<AUni ws="en">small, slight, tiny, minute</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe a small change?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b5fed8a3-9573-48a2-b903-397c618be814" ownerguid="d946a8c7-fb2b-4d8f-a5ab-a62dd1b161f8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">later</AUni> -<AUni ws="es">más.rato</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ae3abb6f-e710-43d8-b6bd-3da10d5dcc33" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="b5feeee5-bf0c-4305-98cd-699548838cc5" ownerguid="3271c8e7-0541-4342-b230-3613446785e7"> -<Form> -<AUni ws="qvm-x-ach">arëna</AUni> -<AUni ws="qvm-x-acl">arëna</AUni> -<AUni ws="qvm-x-akh">arëna</AUni> -<AUni ws="qvm-x-akl">arëna</AUni> -<AUni ws="qvm-x-ame">arëna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="b6006567-8e06-4e00-8a8a-5ed9654be26d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">volunta:</AUni> -<AUni ws="qvm-x-acl">volunta:</AUni> -<AUni ws="qvm-x-akh">volunta:</AUni> -<AUni ws="qvm-x-akl">volunta:</AUni> -<AUni ws="qvm-x-ame">volunta:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+voluntad</AUni> -<AUni ws="qvm-x-acl">+voluntad</AUni> -<AUni ws="qvm-x-akh">+voluntad</AUni> -<AUni ws="qvm-x-akl">+voluntad</AUni> -<AUni ws="qvm-x-ame">+voluntad</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.424" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e3c4220d-e30e-4186-9ec7-1bb2c7cddcb7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+voluntad</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a9d85485-6e9f-46dc-8709-c6a256eab1a7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c922934b-75bc-405b-9744-ff4add68d011" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +voluntad 
\entryTyp root 
\gENG will 
\gSPN voluntad 
\e +voluntad 
\c N0 
\mp NeverForeshortened 
\ach volunta: 
\akh volunta: 
\acl volunta: 
\akl volunta: 
\ame volunta: 
\mp +FinalC 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="b6008ac4-a2c1-439f-9781-13019ad2b578" ownerguid="bcfd5ef2-c048-4c84-88dc-0b954c735490"> -<Form> -<AUni ws="qvm-x-ach">desonra</AUni> -<AUni ws="qvm-x-acl">desonra</AUni> -<AUni ws="qvm-x-akh">desonra</AUni> -<AUni ws="qvm-x-akl">desonra</AUni> -<AUni ws="qvm-x-ame">desonra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b6011534-873c-4959-9c8c-8a81f7316d19" ownerguid="4eda1965-3d19-4af3-a75c-092c45932917"> -<Form> -<AUni ws="qvm-x-ach">palta</AUni> -<AUni ws="qvm-x-acl">palta</AUni> -<AUni ws="qvm-x-akh">palta</AUni> -<AUni ws="qvm-x-akl">palta</AUni> -<AUni ws="qvm-x-ame">palta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="b602c0e1-5398-4cc9-850b-7cfb5c592d13" ownerguid="c2dbe83a-d638-45ac-a6d5-5f041b9dde71"> -<Abbreviation> -<AUni ws="en">2.5.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.47" /> -<DateModified val="2022-9-23 16:55:8.47" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being blind.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>24A See</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Blind</AUni> -</Name> -<Questions> -<objsur guid="a0f371ea-5dc7-42cf-8f77-4178d49e3417" t="o" /> -<objsur guid="e9671dff-0c60-45ee-9998-bfe0697ceb57" t="o" /> -<objsur guid="9c0c6d39-bb13-4ab4-949e-48bf3332883c" t="o" /> -<objsur guid="58542d55-f5fe-4b75-8c52-f8be8009e4c8" t="o" /> -<objsur guid="442784f7-6d63-4427-af68-26eafc3cb306" t="o" /> -<objsur guid="1a4399d1-b7c4-4c86-92d5-5d45da3385a0" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="b6037fa3-e8f2-409b-93d2-fe7488a7cbe5" ownerguid="a5625b5c-8657-44b4-9700-185095eb5e15"> -<Form> -<AUni ws="qvm-x-ach">itu</AUni> -<AUni ws="qvm-x-acl">itu; ito</AUni> -<AUni ws="qvm-x-akh">itu</AUni> -<AUni ws="qvm-x-akl">itu; ito</AUni> -<AUni ws="qvm-x-ame">itu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="b608174e-b249-42d5-bcbe-af80eca90ea1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cimientu</AUni> -<AUni ws="qvm-x-acl">cimientu; cimiento</AUni> -<AUni ws="qvm-x-akh">cimientu</AUni> -<AUni ws="qvm-x-akl">cimientu; cimiento</AUni> -<AUni ws="qvm-x-ame">cimientu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cimiento.v</AUni> -<AUni ws="qvm-x-acl">+cimiento.v</AUni> -<AUni ws="qvm-x-akh">+cimiento.v</AUni> -<AUni ws="qvm-x-akl">+cimiento.v</AUni> -<AUni ws="qvm-x-ame">+cimiento.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.122" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="37030423-92d4-4c1c-a9ee-e62d7e97f73c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cimiento.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6c246f41-4e36-484f-9c43-137a30852e3e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6a13c52a-b850-4a7b-b96e-e433ae3d7f86" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cimiento.v 
\entryTyp root 
\gENG make.foundation 
\gSPN hacer.cimiento 
\e +cimiento.v 
\c V1 
\ach cimientu 
\akh cimientu 
\acl cimientu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl cimiento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cimientu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cimiento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cimientu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="b60bf544-7774-4623-8c67-19b32b53dea2" ownerguid="7556a257-3703-40d3-91d3-c891fb250947"> -<Abbreviation> -<AUni ws="en">4.9.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.294" /> -<DateModified val="2022-9-23 16:55:8.294" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to God--the supreme being in the universe. Each theological system will have different beliefs concerning the existence and nature of God. Our purpose here is to collect and define the terms used to refer to the supreme deity. If there is no such person in the theological system, then use this domain for other terms for the pantheon of gods, ultimate reality, nirvana, and similar concepts. However most theological systems, even atheism, have the concept of a supreme God and use words to refer to him.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">God</AUni> -</Name> -<Questions> -<objsur guid="0c21d95c-59ff-4577-a381-880b9d8e218e" t="o" /> -<objsur guid="db55446f-54b3-4d2c-83ce-8987e37c4184" t="o" /> -<objsur guid="c2068215-ad98-4285-8945-61512c4a72dc" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="b60ebd41-bbaa-4160-a99b-4fd1389c0eac" ownerguid="e88d2480-6a87-45e4-ba93-59bdbea8b708"> -<Form> -<AUni ws="qvm-x-ach">dios</AUni> -<AUni ws="qvm-x-acl">dios</AUni> -<AUni ws="qvm-x-akh">dios</AUni> -<AUni ws="qvm-x-akl">dios</AUni> -<AUni ws="qvm-x-ame">dios</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b60f818d-5c97-4f06-af69-4febe25374b0" ownerguid="a8430b52-643e-44c7-beab-2e571e3adcc5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mix</AUni> -<AUni ws="es">mezclar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="782bbda0-043b-44e3-ad02-931e90c817d7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b6144ac6-d38e-41d7-99c2-0ae49f1733dd" ownerguid="bb4e0a69-db20-4757-beff-5dcb1c5e0f92"> -<ExampleWords> -<AUni ws="en">oppressive, tyrannical, cruel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe a person who oppresses?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b6160092-9070-4549-af63-b6e2b52c06ec"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ki:lus</AUni> -<AUni ws="qvm-x-acl">ki:lus</AUni> -<AUni ws="qvm-x-akh">ki:lus</AUni> -<AUni ws="qvm-x-akl">ki:lus</AUni> -<AUni ws="qvm-x-ame">ki:lus</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+kilos</AUni> -<AUni ws="qvm-x-acl">+kilos</AUni> -<AUni ws="qvm-x-akh">+kilos</AUni> -<AUni ws="qvm-x-akl">+kilos</AUni> -<AUni ws="qvm-x-ame">+kilos</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.983" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fba78d54-4faa-4885-acb9-3fc7995bedf7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+kilos</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a8a734fa-d560-418b-9f35-6c95f2e932cf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4820942a-275b-45f3-adaf-8a9d74aa7aaa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +kilos 
\entryTyp root 
\gENG 
\gSPN 
\e +kilos 
\c N0 
\mp +FinalC 
\ach ki:lus 
\akh ki:lus 
\acl ki:lus 
\akl ki:lus 
\ame ki:lus</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="b61a4027-8a59-4f05-a97f-799fe6b9461b" ownerguid="2b7e0483-15d8-4b3b-9bdc-6072fc0f49a9"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b61bdf7f-c49c-4914-847e-2f1f468a256a" ownerguid="7c9c6263-9f7d-472c-a4c9-1767015d41fe"> -<ExampleWords> -<AUni ws="en">offer, hold something out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to holding something out to someone so that they can take it if they want it?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b61d0b63-91e2-4112-986d-c5c27b020b0d" ownerguid="4f485a60-e3ba-42e6-9d59-185305c5d1f2"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">We were carried down the river <with> the current.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that two things are going in the same direction?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b61fbbed-55df-47ba-bf7a-997878e43529" ownerguid="5a0dcf35-a145-40da-b4cb-8f8986835a2e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sound</AUni> -<AUni ws="es">sonar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c49c8651-3a9b-4062-a944-4d0bc39f15b0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b6206a53-213d-492e-8895-c5157281f769" ownerguid="95a8d932-9554-439f-afb5-ab158f2eed96"> -<ExampleWords> -<AUni ws="en">alternate (actions, events)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that two things alternate?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b62114a5-8930-4dd5-aefe-b358b1875352" ownerguid="55201761-fe2e-40d5-a2a7-8079e00a2c32"> -<ExampleWords> -<AUni ws="en">fighting, battle, clash (n), confrontation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a fight between many people?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b6234b67-5981-48c3-9ba6-f3995950461b" ownerguid="d8ea1902-5fa6-4fda-b7b2-1f9c301cdc5f"> -<ExampleWords> -<AUni ws="en">pile, stack, heap</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a group of things that are put on top of each other?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b6258c31-b823-47b5-a4c3-276ad10b48ef" ownerguid="9c3d9cd4-92e3-4e3a-a127-78ac009b2881"> -<Form> -<AUni ws="qvm-x-ach">gatswa</AUni> -<AUni ws="qvm-x-acl">gatswa</AUni> -<AUni ws="qvm-x-akh">qatswa</AUni> -<AUni ws="qvm-x-akl">qatswa</AUni> -<AUni ws="qvm-x-ame">qatswa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b62978aa-d8a8-4073-b87f-f4fff42c5ac6" ownerguid="07476166-c5e5-4701-97d3-d97de8b5be6f"> -<ExampleWords> -<AUni ws="en">unknowable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe something that cannot be known?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="b62b5fc7-1b20-4f63-8459-8eb4991839ee" ownerguid="e5f9c9cf-0b0c-47aa-b7df-8c37f211cd00"> -<Abbreviation> -<AUni ws="en">7.8.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.557" /> -<DateModified val="2022-9-23 16:55:8.557" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a crack--a partial break in something that does not entirely divide it in pieces.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Crack</AUni> -</Name> -<Questions> -<objsur guid="d4a15f61-4228-4ec3-bfd7-8154c8819fa0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="b62b9b74-49f7-42a0-ab5e-77aee6129b61" ownerguid="7ce991fb-142b-4e85-a942-50746710f348"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="b6319200-7903-4eb0-ae91-1cce5ccb31a6" ownerguid="b1c74096-907d-409a-ba54-700e6774ea7f"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 4.22 Salomónpäga cada junag micuyta shuntapäcog sogta waranga sogta pachac (6,600) kïlu alinnin cag harinata, chunca quimsa waranga ishcay pachac (13,200) kïlu corrienti cag harinata,</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="b631bb2a-e901-46eb-8337-98b23ff37855" ownerguid="63f5d940-5d28-4e00-80a4-a0c68655b1b3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="b632b00b-b03f-4549-8e02-6402c05a4f06" ownerguid="b0a9a631-e0dc-47d4-a762-e9a627732218"> -<Abbreviation> -<AUni ws="en">4.5.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.253" /> -<DateModified val="2022-9-23 16:55:8.253" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to obeying someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Obey</AUni> -</Name> -<Questions> -<objsur guid="a1d93026-801f-4531-bf2b-732c54e71349" t="o" /> -<objsur guid="a809c1b1-d763-4bfb-a43e-4c8a9094038e" t="o" /> -<objsur guid="9d19770e-c9ee-43da-9e11-bb1376304747" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="b6354c4e-f9c1-4c5c-846d-43b9722006b5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mantun</AUni> -<AUni ws="qvm-x-acl">mantun</AUni> -<AUni ws="qvm-x-akh">mantun</AUni> -<AUni ws="qvm-x-akl">mantun</AUni> -<AUni ws="qvm-x-ame">mantun</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mantun</AUni> -<AUni ws="qvm-x-acl">*mantun</AUni> -<AUni ws="qvm-x-akh">*mantun</AUni> -<AUni ws="qvm-x-akl">*mantun</AUni> -<AUni ws="qvm-x-ame">*mantun</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.325" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="390cbc1e-9a2d-4c69-afe7-f9b5eacac827" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mantun</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e6adb313-e0e4-49c1-baac-c760571f03a8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c84a629c-2f54-4425-8aac-25d35e4ba6a6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mantun 
\entryTyp root 
\gENG medium 
\gSPN mediano 
\e *mantun 
\c N0 
\mp +FinalC 
\ach mantun 
\akh mantun 
\acl mantun 
\akl mantun 
\ame mantun</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="b6396f29-e2ba-4da9-ad75-5bbe21872785" ownerguid="42587f2a-0511-4221-ac81-290368b8375a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="b63b6a47-5e5e-4088-a916-4e9777be9e39"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">table:ru</AUni> -<AUni ws="qvm-x-acl">table:ru; table:ru; table:ro</AUni> -<AUni ws="qvm-x-akh">table:ru</AUni> -<AUni ws="qvm-x-akl">table:ru; table:ru; table:ro</AUni> -<AUni ws="qvm-x-ame">table:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tablero</AUni> -<AUni ws="qvm-x-acl">+tablero</AUni> -<AUni ws="qvm-x-akh">+tablero</AUni> -<AUni ws="qvm-x-akl">+tablero</AUni> -<AUni ws="qvm-x-ame">+tablero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.764" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="60e8c745-dd34-4b54-a754-751d76d6d6f1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tablero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a1c8a0c5-3395-4faa-9ea7-6103c42aaae9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="73c52dfb-0483-4c57-9f71-f8dd86ee35a8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tablero 
\entryTyp root 
\gENG 
\gSPN 
\e +tablero 
\c N0 
\ach table:ru 
\akh table:ru 
\acl table:ru / _# 
\acl table:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl table:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl table:ru / _# 
\akl table:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl table:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame table:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b63c3f01-b9cf-4773-919d-81f7124e6c8d" ownerguid="32fc19fd-a04e-4b69-9442-f7d57348ec55"> -<ExampleWords> -<AUni ws="en">cattle, bovine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to cattle?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b63ce4e1-c832-4623-b489-b8b8ad094e8c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">parla</AUni> -<AUni ws="qvm-x-acl">parla</AUni> -<AUni ws="qvm-x-akh">parla</AUni> -<AUni ws="qvm-x-akl">parla</AUni> -<AUni ws="qvm-x-ame">parla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+parlar</AUni> -<AUni ws="qvm-x-acl">+parlar</AUni> -<AUni ws="qvm-x-akh">+parlar</AUni> -<AUni ws="qvm-x-akl">+parlar</AUni> -<AUni ws="qvm-x-ame">+parlar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.719" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="acf25d4b-22bc-4bac-8185-ea548ffc1e21" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+parlar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2dd120e8-8df6-4fda-b5b9-b1d1026d933f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="191c6340-34ee-4b75-a82f-7ed4db0f1a03" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +parlar 
\entryTyp root 
\gENG talk 
\gSPN hablar 
\e +parlar 
\c V2 
\ach parla 
\akh parla 
\acl parla 
\akl parla 
\ame parla</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b63d775f-3b38-4ddc-b5b4-5b4c1d6b60f7" ownerguid="f3d162d7-da79-4ce4-9610-040f03b57d9d"> -<ExampleWords> -<AUni ws="en">die in childbirth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a mother who dies while giving birth?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b63da3fe-91e1-471c-bbd4-8eca4ef0fa7e" ownerguid="26f60a4b-11d5-435a-8dbd-ac29c06c14f6"> -<Form> -<AUni ws="qvm-x-ach">mitu</AUni> -<AUni ws="qvm-x-acl">mitu; mitu; mito</AUni> -<AUni ws="qvm-x-akh">mitu</AUni> -<AUni ws="qvm-x-akl">mitu; mitu; mito</AUni> -<AUni ws="qvm-x-ame">mitu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b63fe9f0-15d4-4da5-a5bb-97a0765c583d" ownerguid="c2630384-2f72-4a96-baed-3fff03383362"> -<ExampleWords> -<AUni ws="en">harvest, reap, gather in the harvest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to harvesting?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b6418f95-7a50-4ba5-9149-4b432f48d82c" ownerguid="46ad1505-9049-41d8-831b-768f46f12500"> -<ExampleWords> -<AUni ws="en">be dirty, filthy, soiled, stained, smeared, dusty, spotted, corrupted, grimy, greasy, polluted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is dirty?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b6445800-b043-4aee-baab-0d7290d0025a" ownerguid="6c32038c-adf3-4085-bde3-cd2f21a421ba"> -<ExampleWords> -<AUni ws="en">litter, trash, garbage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something that is thrown away?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b64463c6-448c-4167-a39e-3a541663f8a5" ownerguid="16ed4be7-55ee-44ba-af48-75991b621fa3"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="b645a4a8-dc6d-47b1-9a35-f876a5bb6fc0" ownerguid="98c5356a-71ba-499b-8e70-016d3b607bfd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="ced0d7f9-0480-4981-98cf-7184fd08b9fb" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="b29004f3-b69c-4366-95b9-0ef10eb0386e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b645c0b2-e9f6-4b96-9dc3-d1ec2940eeb2" ownerguid="dc1ab28c-3e1e-474c-8359-2548b7ad5595"> -<ExampleWords> -<AUni ws="en">describe, talk about, write about, give an account of, tell of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to describing an event?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b647d30b-67ce-4bba-973b-e253770ec1e8" ownerguid="6736dafe-2916-40f6-b6b7-b6300100933b"> -<ExampleWords> -<AUni ws="en">nightmare, bad dream</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What is a bad dream called?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b647e124-38df-432b-846c-ff5268f57984" ownerguid="fcfb806d-27a7-4482-9809-12bc5a60d766"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">suffix</AUni> -<AUni ws="es">sufijo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c1e07b1f-dac4-443e-b98e-48165013d98d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="b6482ed8-9762-45a3-b0a1-0c120593c9a1" ownerguid="50370272-6516-45ea-b473-8a09c2ec26af"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8ca57018-af2e-4912-aa11-038bade59977" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="b64933e3-fd57-4090-848e-2af0cc6d8e88" ownerguid="ddfd5465-72db-4690-a44d-ce338517274b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="76d2e9f6-c566-46aa-9316-36a01093aec1" t="o" /> -<objsur guid="1a7f3f9f-2dd1-42c3-86e1-5cb4990855dd" t="o" /> -<objsur guid="67b3c979-61aa-486d-8313-7b7e457a2a3b" t="o" /> -<objsur guid="13cfd356-0573-48f8-9945-2ac3670a03cc" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="b64a6480-3cc9-47a7-b237-79e380aff0c8" ownerguid="7496cea3-d239-4a1e-9121-cdbf98e3a4e9"> -<Form> -<AUni ws="qvm-x-ach">viva</AUni> -<AUni ws="qvm-x-acl">viva</AUni> -<AUni ws="qvm-x-akh">viva</AUni> -<AUni ws="qvm-x-akl">viva</AUni> -<AUni ws="qvm-x-ame">viva</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b64e472e-2127-4dab-ad5d-3bd423b8bc28" ownerguid="cc70d4ce-4cf4-4556-991a-e1b57a7279f4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">?</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="59274b11-d972-4e82-a0a5-4293b49383c4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="b64eb28e-d0e0-4ff1-ba7f-1756544aa7dc" ownerguid="8cb8a608-a798-4aac-9da6-0266fea75421"> -<Form> -<AUni ws="qvm-x-ach">quisquita</AUni> -<AUni ws="qvm-x-acl">quisquita</AUni> -<AUni ws="qvm-x-akh">kiskita</AUni> -<AUni ws="qvm-x-akl">kiskita</AUni> -<AUni ws="qvm-x-ame">kiskita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b6518989-b842-4b75-9290-d2d2088df9d8" ownerguid="2d5d634e-75b5-4921-922e-573a809a49f8"> -<ExampleWords> -<AUni ws="en">artifact, building, construction, manufactured goods, product, production</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something that has been made?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b651b5c5-7f02-4c60-b38b-d2c93a3a3f15" ownerguid="bbf5307d-10c4-469e-bc63-d1f67fc8de14"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mutter</AUni> -<AUni ws="es">murmurar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bd13daed-1e4f-4277-884f-2bbdb52bfa0f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="b654322c-087a-4153-a0d1-e329ddc2635b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tagla</AUni> -<AUni ws="qvm-x-acl">tagla</AUni> -<AUni ws="qvm-x-akh">taqla</AUni> -<AUni ws="qvm-x-akl">taqla</AUni> -<AUni ws="qvm-x-ame">taqla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*taqlla</AUni> -<AUni ws="qvm-x-acl">*taqlla</AUni> -<AUni ws="qvm-x-akh">*taqlla</AUni> -<AUni ws="qvm-x-akl">*taqlla</AUni> -<AUni ws="qvm-x-ame">*taqlla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.815" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1213e7ce-8d92-46d9-96f8-d2480ff330bb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*taqlla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="acdbbf09-6297-4142-b0dd-0917eaef7944" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="83fc8218-6ab1-4d6f-aa74-d075279050a5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *taqlla 
\entryTyp root 
\gENG 
\gSPN 
\e *taqlla 
\c V1 
\ach tagla 
\akh taqla 
\acl tagla 
\akl taqla 
\ame taqla</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b65517a6-52ba-49af-97d3-4b73dd69ec0d" ownerguid="6b1eeebd-2433-4f39-9e67-7ac4dd0fe20a"> -<ExampleWords> -<AUni ws="en">north, south, east, west, northeast, northwest, southeast, southwest, northward, southward, eastward, westward, northerly, southerly, westerly, easterly, up north, down south, sunrise, sunset</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a direction of the compass?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b65a1cfd-1b7f-4672-bebe-49bb20c00e50" ownerguid="3389561c-f264-48b9-b94c-86c33fc3c423"> -<ExampleWords> -<AUni ws="en">average (adj), mean (adj), medium (adj), medial, on average</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe an average number?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b65ac656-1613-43f7-9951-76488a84892e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">encuentru; encuentro</AUni> -<AUni ws="qvm-x-acl">encuentru; encuentru; encuentro</AUni> -<AUni ws="qvm-x-akh">encuentru; encuentro</AUni> -<AUni ws="qvm-x-akl">encuentru; encuentru; encuentro</AUni> -<AUni ws="qvm-x-ame">encuentru; encuentro</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+encuentro</AUni> -<AUni ws="qvm-x-acl">+encuentro</AUni> -<AUni ws="qvm-x-akh">+encuentro</AUni> -<AUni ws="qvm-x-akl">+encuentro</AUni> -<AUni ws="qvm-x-ame">+encuentro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.467" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="79a9fb4e-9252-49a0-a360-995ab3b999d2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+encuentro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f29b984a-54a5-4722-90af-8d6921826ddb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ba8de953-6f67-48b8-81ce-3efd60cb5047" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +encuentro 
\entryTyp root 
\gENG 
\gSPN 
\e +encuentro 
\c N0 
\ach encuentru / ~_# 
\ach encuentro / _# 
\akh encuentru / ~_# 
\akh encuentro / _# 
\acl encuentru / ~_# 
\acl encuentru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl encuentro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl encuentru / ~_# 
\akl encuentru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl encuentro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame encuentru / ~_# 
\ame encuentro / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="b65b6a5f-a977-43f3-a996-bc9f2c3434c9" ownerguid="592a9a00-7d75-4b54-aeda-fdbd96db29ee"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="b6622d50-6ec5-4748-ba7d-ad36a758ee7c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yuca</AUni> -<AUni ws="qvm-x-acl">yuca</AUni> -<AUni ws="qvm-x-akh">yuca</AUni> -<AUni ws="qvm-x-akl">yuca</AUni> -<AUni ws="qvm-x-ame">yuca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+yuca</AUni> -<AUni ws="qvm-x-acl">+yuca</AUni> -<AUni ws="qvm-x-akh">+yuca</AUni> -<AUni ws="qvm-x-akl">+yuca</AUni> -<AUni ws="qvm-x-ame">+yuca</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.780" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d74c5e55-de67-4192-bd3e-41d243d6604c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+yuca</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a1745322-1f67-4f58-8269-fe3d4b6a5cd3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d292eea0-973b-4c49-9eab-dc1b4a29b0d6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +yuca 
\entryTyp root 
\gENG 
\gSPN 
\e +yuca 
\c N0 
\ach yuca 
\akh yuca 
\acl yuca 
\akl yuca 
\ame yuca</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b665ae86-5bb5-4d70-a964-a3a1a2c5c139" ownerguid="adde4a66-9040-47a9-91ab-327934a2e97e"> -<ExampleWords> -<AUni ws="en">saw (n), saw kerf, saw horse, plane (n), hammer (n), nail (n), chisel (n), mortise and tenon, screwdriver, screw (n), sawhorse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What tools does a carpenter work with?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b667f48d-aa15-4849-a1e9-73e7979f3b49" ownerguid="11628750-a93f-4d51-b38f-ee50ddcfbfab"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="1260485c-c406-4b2e-8170-8baf210e7c07" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="b6686c7c-39de-40b5-adee-67fc7dc54374" ownerguid="fb84538a-17a8-4adc-8d50-e2b66f8e4099"> -<Abbreviation> -<AUni ws="en">8.1.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.559" /> -<DateModified val="2022-9-23 16:55:8.559" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the cardinal numbers (one, two, three)--the numbers used to count.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>60B One, Two, Three, Etc.</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Cardinal numbers</AUni> -</Name> -<Questions> -<objsur guid="21ea111c-849e-4d0d-b0e0-605eb523d05f" t="o" /> -<objsur guid="690c651c-0665-42eb-b7da-b637ceecd9b5" t="o" /> -<objsur guid="9c89f143-2c5b-4fc8-bf51-726417766b7b" t="o" /> -<objsur guid="22b5b9d6-be48-4718-9b5d-1eaba53053b9" t="o" /> -<objsur guid="37378c68-9c9a-458d-9652-ce2f0b5be548" t="o" /> -<objsur guid="3c80533d-3116-4b57-914c-abc76c0042fd" t="o" /> -<objsur guid="b2d0466a-9617-4b65-9387-edd6fd3f0546" t="o" /> -<objsur guid="7ffcfe95-3269-4eaf-b547-ef5a6f696b82" t="o" /> -<objsur guid="f2d738a6-7e07-4d3f-815c-75fb7ba1f557" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="2c04fa05-eebf-4331-b392-23f795c32382" t="o" /> -<objsur guid="d086c2ad-2d11-4250-a25a-dc6538439db6" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="b669331e-510f-49e9-84ae-05930cf7a7cf" ownerguid="68d7d08b-efb3-4fc1-87d6-ad37562e920d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="b669ea44-29b6-4841-92ff-6c34b969117d" ownerguid="36c4afbc-dced-457f-b9ac-0127e1718e2e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">nine</AUni> -<AUni ws="es">nueve</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="335b2f6c-e789-4801-8491-f8dcc10a9663" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="b66ce4b4-fc22-4e1d-9170-62e3959ed0e4"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Núm</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="b66ceb5c-8ce2-4aac-b976-16131e5ccc35" ownerguid="80079656-7d30-4205-8db5-e55a469a0669"> -<Form> -<AUni ws="qvm-x-ach">parqui; parque</AUni> -<AUni ws="qvm-x-acl">parqui; parqui; parque</AUni> -<AUni ws="qvm-x-akh">parqui; parque</AUni> -<AUni ws="qvm-x-akl">parqui; parqui; parque</AUni> -<AUni ws="qvm-x-ame">parqui; parque</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="b66ee6d4-9da4-43be-af91-8c27868e750f" ownerguid="07d7a531-1248-4891-a2df-9c1139acf28d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="b67165aa-e672-436e-b1ea-25015823d83c" ownerguid="5557909e-dd68-490a-8495-66bc75256739"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="b67284eb-3373-4858-a5f5-e2f2589d7f83" ownerguid="ca48386d-293f-4452-a489-d179042da11c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">happily</AUni> -<AUni ws="es">con.alegre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b4aa2d66-88f8-4488-b089-26a4c60515bc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="b672e8ab-cdcc-41e4-8d33-c919ac9a068e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mogru</AUni> -<AUni ws="qvm-x-acl">mogru; mogru; mogro</AUni> -<AUni ws="qvm-x-akh">moqru</AUni> -<AUni ws="qvm-x-akl">moqru; moqru; moqro</AUni> -<AUni ws="qvm-x-ame">muqru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*muqru</AUni> -<AUni ws="qvm-x-acl">*muqru</AUni> -<AUni ws="qvm-x-akh">*muqru</AUni> -<AUni ws="qvm-x-akl">*muqru</AUni> -<AUni ws="qvm-x-ame">*muqru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.507" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b5f6659a-fa1b-43f8-a4f6-61fc9d19a783" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*muqru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a50856b4-6fa7-4064-84cd-df419cf1836a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="eb16bfb7-a132-42a3-9578-41e973c28d81" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *muqru 
\entryTyp root 
\gENG knot 
\gSPN 
\e *muqru 
\c N0 
\ach mogru 
\akh moqru 
\acl mogru / _# 
\acl mogru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mogro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl moqru / _# 
\akl moqru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl moqro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame muqru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="b67301f0-d6bd-4096-bac5-ec91f8e18c22" ownerguid="f711d703-1eac-4059-b0da-24d34bd8df5e"> -<Gloss> -<AUni ws="en">SIM1</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="97997a78-9c73-4b23-b19e-1a2681024e61" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b673518d-b462-4ce3-968b-62db6474d1c9" ownerguid="f8d2bc29-5451-4278-9d5d-177959dd3b13"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="b67ba03f-aad8-49bd-b44d-681ffe9b9387" ownerguid="3e3e9af5-1be0-449c-9ffd-98891fb64bb6"> -<Form> -<AUni ws="qvm-x-ach">paluma</AUni> -<AUni ws="qvm-x-acl">paluma</AUni> -<AUni ws="qvm-x-akh">paluma</AUni> -<AUni ws="qvm-x-akl">paluma</AUni> -<AUni ws="qvm-x-ame">paluma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b67f5fca-82d5-4566-921a-8dbd18a19c83" ownerguid="08c69239-ee7e-4caf-b9a5-8096dcca2822"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.peel</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="62fbb894-cd1a-4513-a7ce-521f28220dc5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="b6844f38-bbf3-40cb-8a4c-118cc4d502b8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">queva:</AUni> -<AUni ws="qvm-x-acl">queva:</AUni> -<AUni ws="qvm-x-akh">queva:</AUni> -<AUni ws="qvm-x-akl">queva:</AUni> -<AUni ws="qvm-x-ame">queva:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+que.va</AUni> -<AUni ws="qvm-x-acl">+que.va</AUni> -<AUni ws="qvm-x-akh">+que.va</AUni> -<AUni ws="qvm-x-akl">+que.va</AUni> -<AUni ws="qvm-x-ame">+que.va</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.831" /> -<DateModified val="2022-10-10 21:19:47.690" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e7397bb0-5fdc-4c02-b27c-3fd576eee7e5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+que.va</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d44d4a73-32c0-4273-96d8-7630c327454a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b4b1eb70-88d6-4633-90a0-6ebeafabe910" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +que.va 
\entryTyp root 
\gENG no.way 
\gSPN 
\e +que.va 
\c NOSUFF 
\mp +FinalLength 
\ach queva: 
\akh queva: 
\acl queva: 
\akl queva: 
\ame queva:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="b68cba9a-8e5a-435a-bc0a-145b9b331742" ownerguid="48d2e013-81fd-40f7-89ed-548ff9f47492"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="b68d23ac-107c-4f83-ad4c-0eb39bde54ee"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">disculpa</AUni> -<AUni ws="qvm-x-acl">disculpa</AUni> -<AUni ws="qvm-x-akh">disculpa</AUni> -<AUni ws="qvm-x-akl">disculpa</AUni> -<AUni ws="qvm-x-ame">disculpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+disculpar</AUni> -<AUni ws="qvm-x-acl">+disculpar</AUni> -<AUni ws="qvm-x-akh">+disculpar</AUni> -<AUni ws="qvm-x-akl">+disculpar</AUni> -<AUni ws="qvm-x-ame">+disculpar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.424" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8a3ad6e5-5189-4c87-b3c7-af74440ba9fa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+disculpar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ee451cee-ab4c-4a1f-bbd8-82e3ad7bddd0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="32dfbbb9-0089-46b7-9fea-a8c850e44ec0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +disculpar 
\entryTyp root 
\gENG forgive 
\gSPN disculpar 
\e +disculpar 
\c V2 N0 
\ach disculpa 
\akh disculpa 
\acl disculpa 
\akl disculpa 
\ame disculpa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="b68e9561-69c4-4934-b3d2-29fd319fb7c2" ownerguid="fc749e89-9938-4e14-951c-31a922a7a572"> -<Form> -<AUni ws="qvm-x-ach">simberwensa</AUni> -<AUni ws="qvm-x-acl">simberwensa</AUni> -<AUni ws="qvm-x-akh">simberwensa</AUni> -<AUni ws="qvm-x-akl">simberwensa</AUni> -<AUni ws="qvm-x-ame">simberwensa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b696a5a6-2b73-43a3-82e6-9b7e2c258481" ownerguid="77d1610f-4757-46de-b5f8-e127dc270dfd"> -<ExampleWords> -<AUni ws="en">woven</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe cloth that has been made by weaving?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="b699320c-1182-41cf-a567-d8008edefdda" ownerguid="713aea02-c693-434b-93fe-fdb801f02965"> -<Form> -<AUni ws="qvm-x-ach">pa</AUni> -<AUni ws="qvm-x-acl">pa</AUni> -<AUni ws="qvm-x-akh">pa</AUni> -<AUni ws="qvm-x-akl">pa</AUni> -<AUni ws="qvm-x-ame">pa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b69adb84-d535-4786-85d9-403171273b96" ownerguid="a50f38f9-87df-4259-b674-bf1aa4242ed9"> -<Form> -<AUni ws="qvm-x-ach">chaccha</AUni> -<AUni ws="qvm-x-acl">chaccha</AUni> -<AUni ws="qvm-x-akh">chaccha</AUni> -<AUni ws="qvm-x-akl">chaccha</AUni> -<AUni ws="qvm-x-ame">chaccha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b69b9f76-2244-4977-bb84-e9fc4e071e3a" ownerguid="cd8b2a8b-687b-42e9-91e7-cfb8812b64ee"> -<ExampleWords> -<AUni ws="en">make a mistake, make an error, mistake something, go wrong, get something wrong, blunder, goof, goof up, slip up, misjudge, bungle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making a mistake?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b6a09064-d5d2-432d-8509-6ec40d64987f" ownerguid="cee40abd-eed9-4cc2-b343-9e15e488df40"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="b6a0e8ff-ff1d-4a94-98c2-5dc44a9950c9" ownerguid="2b1bbad5-319c-4be7-b46a-1de7fd49b381"> -<Form> -<AUni ws="qvm-x-ach">acata</AUni> -<AUni ws="qvm-x-acl">acata</AUni> -<AUni ws="qvm-x-akh">akata</AUni> -<AUni ws="qvm-x-akl">akata</AUni> -<AUni ws="qvm-x-ame">akata</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b6a10b7e-356a-4e9a-ac13-00780be91f96" ownerguid="a6c89bc7-61f1-4cc8-9504-236978f03534"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="eccfc022-d889-412e-b2bb-e00840d5df3e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b6a2403e-5b9e-4d1b-9c31-7dc42531ffd1" ownerguid="e033ca92-ee8c-4ab9-9368-5f6f4e942987"> -<ExampleWords> -<AUni ws="en">be in contact, keep in touch, stay in touch, keep in contact, communicate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to regularly contacting someone?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="b6a40216-fe93-4b0f-b85b-5622327031d0" ownerguid="ac187298-85e8-43ed-ba85-cc06a62c08ba"> -<Abbreviation> -<AUni ws="en">1.6.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to eggs.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Egg</AUni> -</Name> -<Questions> -<objsur guid="9f689523-1fb8-4fb0-8e2e-c2ba599286b3" t="o" /> -<objsur guid="fbf3ad02-08e9-4b7e-a395-b2b069c68e0d" t="o" /> -<objsur guid="c48047c8-f202-4871-962c-948b4f9ab0dd" t="o" /> -<objsur guid="5a1e1dc6-ed41-4285-a4d4-a30c93b4465d" t="o" /> -<objsur guid="bb0c7229-293e-476c-b123-6b9fd48826be" t="o" /> -<objsur guid="ccc7f00e-510e-4f47-a8ff-fcfb2cc7190c" t="o" /> -<objsur guid="af68ec67-5e3e-4ef9-bd06-cbeeba23230a" t="o" /> -<objsur guid="e802474e-6d28-4b4e-b44a-9d5e4bfe28f8" t="o" /> -<objsur guid="a9ec118e-de13-43a7-8456-342c468f7dc2" t="o" /> -<objsur guid="496a4970-f5d1-48a8-bfe0-b3f83a3867cb" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="b6a58a0e-d993-4bc3-bc99-664c57d7902f" ownerguid="81ce75c5-ef9c-4f66-9393-9a12019acc10"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pitcher</AUni> -<AUni ws="es">cántaro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="629c978a-b327-47ae-9b54-9b69708551e0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b6aad208-7a9d-4d2c-bab5-84a4d21fec56" ownerguid="fa9fba9b-536a-4054-9957-ffd3e6165b3f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b6af46c1-4024-4fd2-8b6d-228f833eba4b" ownerguid="05472990-3f51-40b3-bca8-df3cf383328b"> -<ExampleWords> -<AUni ws="en">introduction, body of a speech, point, make a point, conclusion, concluding remarks</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the parts of a speech?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b6b4e0cb-ad2c-4a85-b459-ca712d270efa" ownerguid="d93eecf7-6db3-40b9-851f-ccc8b74552fc"> -<Form> -<AUni ws="qvm-x-ach">pägu</AUni> -<AUni ws="qvm-x-acl">pägu; pägu; pägo</AUni> -<AUni ws="qvm-x-akh">pägu</AUni> -<AUni ws="qvm-x-akl">pägu; pägu; pägo</AUni> -<AUni ws="qvm-x-ame">pägu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b6b5c37d-9c62-4add-8c63-55f82a1e0de3" ownerguid="ad7c037b-9d49-405a-92bf-b5705a60d818"> -<Form> -<AUni ws="qvm-x-ach">chuchu</AUni> -<AUni ws="qvm-x-acl">chuchu; chuchu; chucho</AUni> -<AUni ws="qvm-x-akh">chuchu</AUni> -<AUni ws="qvm-x-akl">chuchu; chuchu; chucho</AUni> -<AUni ws="qvm-x-ame">chuchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="b6b73d41-e23f-4f22-b01e-7e75f4115fce" ownerguid="af4ac058-d4b3-4c7a-ade8-6af762d0486d"> -<Abbreviation> -<AUni ws="en">3.3.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a goal--something that you want to do or something that you want to happen.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89I Purpose</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Purpose, goal</AUni> -</Name> -<Questions> -<objsur guid="4ba2cc80-6808-4691-9fb6-539b26460c7d" t="o" /> -<objsur guid="95badcb7-b590-4a25-a8f9-c1a49c973c0d" t="o" /> -<objsur guid="114c8f3d-991d-4296-a46f-26f3a69ee417" t="o" /> -<objsur guid="ad8ad9b5-d166-4d9a-89b5-a5e4da1e1417" t="o" /> -<objsur guid="3f3078ac-f31e-4ff9-a221-826b7737ff34" t="o" /> -<objsur guid="c161b9bb-9de1-4be3-81e5-29f19a7d4e20" t="o" /> -<objsur guid="7ad73ce6-6ce9-48bf-8b02-5a669bbf4986" t="o" /> -<objsur guid="744d77f0-dd92-4b03-83f6-6828da76173d" t="o" /> -<objsur guid="389c0a53-160d-43c5-8c1d-93e078f8031e" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="18bf6c79-6399-4977-be3d-93135302d8c4" t="r" /> -<objsur guid="53ba3b61-4f4e-4749-8a7f-0d2b327a113d" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="b6b956bf-e624-4338-8e09-0d8a80dd2ba1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yanaga; yanaga:</AUni> -<AUni ws="qvm-x-acl">yanaga; yanaga:</AUni> -<AUni ws="qvm-x-akh">yanaqa; yanaqa:</AUni> -<AUni ws="qvm-x-akl">yanaqa; yanaqa:</AUni> -<AUni ws="qvm-x-ame">yanaqa; yanaqa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yanaqa:</AUni> -<AUni ws="qvm-x-acl">*yanaqa:</AUni> -<AUni ws="qvm-x-akh">*yanaqa:</AUni> -<AUni ws="qvm-x-akl">*yanaqa:</AUni> -<AUni ws="qvm-x-ame">*yanaqa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.729" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="77fb96af-5636-47af-a640-86caf7159360" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yanaqa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="34c3fb58-228e-43e9-a720-a1f75e6ffdaf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="da9f99f7-881c-4d34-936e-0176ec6abcf2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yanaqa: 
\entryTyp root 
\gENG accompany 
\gSPN acompañar 
\e *yanaqa: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach yanaga foreshortened 
\ach yanaga: 
\akh yanaqa foreshortened 
\akh yanaqa: 
\acl yanaga foreshortened 
\acl yanaga: 
\akl yanaqa foreshortened 
\akl yanaqa: 
\ame yanaqa foreshortened 
\ame yanaqa:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="b6b98276-595a-44f4-871f-6a330c82a916" ownerguid="4ead25b0-39ad-459b-a180-9f98727d5a9f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spider.web</AUni> -<AUni ws="es">telaraña</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="57430dab-b66e-435e-a70c-1dcda14ebc50" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="b6baa8bf-7691-431d-8715-3937372b9da0" ownerguid="8383b4cb-e14a-4d04-a8c3-9c5276384953"> -<Abbreviation> -<AUni ws="en">3.3.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.123" /> -<DateModified val="2022-9-23 16:55:8.123" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being exempt from a law or obligation.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Exempt</AUni> -</Name> -<Questions> -<objsur guid="49650371-7689-4c03-8bb7-5c0c56f21bd3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="b6bbffa2-1a51-49a5-a7e1-838641ada612" ownerguid="4deb64e2-1dfb-4fc8-8761-6be8107630cd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="b6c3ec08-ec43-4e37-9526-1d8ff0501e48" ownerguid="45e2aadb-03d3-439a-bb60-04de139cd53f"> -<Form> -<AUni ws="qvm-x-ach">ata</AUni> -<AUni ws="qvm-x-acl">ata</AUni> -<AUni ws="qvm-x-akh">ata</AUni> -<AUni ws="qvm-x-akl">ata</AUni> -<AUni ws="qvm-x-ame">ata</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="b6c4a65b-a4a3-4e8e-8533-260fe7e80011" ownerguid="307b6c74-3765-4e58-b29c-682a2033cd53"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="b6c4ff26-c9e8-484a-b138-297c945e7305" ownerguid="297fee80-2171-4516-a2db-90b599f8cb45"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b6c593ba-04e3-419f-8b05-63dc0c784947" ownerguid="13f62fa1-589c-4a46-9bbc-b0fd1001e21f"> -<ExampleWords> -<AUni ws="en">put in prison, imprison, to jail, incarcerate, lock up, confine, put in irons, send to prison, commit, put away, captivity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the action of putting a person in prison?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b6c5f5d6-a961-425d-a993-5f4acf5b0a8a" ownerguid="384f7ec4-3100-4734-9e25-17740dcbc68c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="b6c63667-80e0-4aa5-90b3-8c6f27ab5c23" ownerguid="4b4b4164-1b76-4207-9d5d-694490be5a09"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">green.twig</AUni> -<AUni ws="es">rama</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bf4bf26f-aece-4ca6-aaf3-81cef0f81f6c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="b6ca734a-c8cf-4876-855b-7655c0fe03a6" ownerguid="82d7a7cb-e372-4c4e-aa11-cb2cdbe24bfe"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuya</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuya</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuya</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuya</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuya</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ed8e0c9a-5a44-4448-bc6b-1b766f141f5c" t="r" /> -</Morph> -<Msa> -<objsur guid="6ee88865-51d6-40db-b9fa-4ba30a1cf4e7" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="b6cbf828-24fb-460e-b5b9-d26e71bd6aaf" ownerguid="78ccab71-20ea-48cd-9a27-15ed781f3b17"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b6cdd4a9-94ea-404b-9a00-cea6024b4470" ownerguid="afa77a2a-8b0f-4a39-91bc-040e90ffbb3a"> -<ExampleWords> -<AUni ws="en">enjoy, take pleasure in, be fond of doing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe a person who feels good while doing something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b6ce959d-53e5-489b-b04b-97ff41d03525" ownerguid="fc170f70-520e-4f3e-b8b8-98e4b898fd24"> -<ExampleWords> -<AUni ws="en">corner (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the corner of something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b6ceeefe-c4ee-46e7-adc0-37f543e1ae9b" ownerguid="55201761-fe2e-40d5-a2a7-8079e00a2c32"> -<ExampleWords> -<AUni ws="en">arouse, challenge, embroil, fan the flames, goad, incite, instigate, provoke, rally, rouse, spur, stir up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to someone causing a fight?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b6cf3b2d-dffd-4554-9870-33a00db9618a" ownerguid="1088cc2f-83ae-4911-8018-401a745dcfd5"> -<ExampleWords> -<AUni ws="en">all night long, the whole night long</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words indicate that something happens during the whole night?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b6d3a420-2e3b-4ffc-97dc-cae63568e28e" ownerguid="fe8b2653-2144-405b-8886-53662db8d64e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">let's.go</AUni> -<AUni ws="es">vamos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0b781401-d335-4477-a377-955765d693e3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b6d562df-9c7d-47b4-a952-8b2e12bbe4ff" ownerguid="fd9b8618-1f62-419b-85c3-365a12e85523"> -<ExampleWords> -<AUni ws="en">agreement, like-mindedness, cooperation, unity, concord, be in congruity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the act or state of agreeing?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b6d74740-dbbc-4492-9a02-3769cce0e687" ownerguid="024ec8bc-fd9f-4f71-8e86-b4e1a027da53"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="b6df5b53-34e2-4024-9ac3-ec5b23db067f" ownerguid="30a5530f-49a2-454f-be28-aabe5e618b16"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="Text" guid="b6e16590-f63c-4957-9177-2541ecaf56f4"> -<Contents> -<objsur guid="1b3624a5-d4f7-4190-9e19-d074a59aa870" t="o" /> -</Contents> -<DateCreated val="2022-10-11 16:57:33.463" /> -<DateModified val="2022-10-11 16:57:49.277" /> -<IsTranslated val="False" /> -<Name> -<AUni ws="en">DM-SC test bed</AUni> -</Name> -</rt> -<rt class="LexExampleSentence" guid="b6e20317-2753-4f25-92c0-170ad46c60a3" ownerguid="163b60d5-b72d-47f0-83ab-2d654b4938ab"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EXO 9.32 Trïguta y centënataga\f + 9.32 \it Centënaga\it* juc casta trïgumi caycan.\f* manami ushacätsergantsu guepa muruy captin.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="b6e45998-9f6a-4b19-9cda-62410a11afa2" ownerguid="61f52196-a8b2-496d-96ea-8c15dc7d377a"> -<Abbreviation> -<AUni ws="en">4.9.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.296" /> -<DateModified val="2022-9-23 16:55:8.296" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to sorcery--the use of supernatural power to do something bad.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>53J Magic</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Sorcery</AUni> -</Name> -<OcmCodes> -<Uni>789 Magic; 754 Sorcery; 755 Magical and Mental Therapy</Uni> -</OcmCodes> -<Questions> -<objsur guid="7fa1afa1-0eac-421d-b4fc-035ec088fa62" t="o" /> -<objsur guid="c5ba3eb7-19ae-4bbb-96ff-6cebcdd4c587" t="o" /> -<objsur guid="95dc674a-eb4d-4961-a052-37652f01d990" t="o" /> -<objsur guid="f32a8c9b-d16a-4ce7-8fe6-e40ee6141db4" t="o" /> -<objsur guid="37203e9e-97d3-49e4-ab88-d56679468189" t="o" /> -<objsur guid="4afd0a59-2ae1-4c10-848c-86e32f7bdea4" t="o" /> -<objsur guid="017d4abd-b10c-4dee-9512-29cc4181f302" t="o" /> -<objsur guid="892294bd-d41f-494b-bbd8-75c3f5c62603" t="o" /> -<objsur guid="3f832715-5b69-40ef-8193-d470912cbc41" t="o" /> -<objsur guid="803f49c2-5da9-4696-93f3-625ffefd5af5" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="b6e4d5f8-3fca-4486-8642-d29ff2e22d14" ownerguid="7f73f730-304d-4edf-a19a-ce9797d4545a"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="b6e59b23-222b-4009-b08c-1d0a4c8a3ed5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">asamblea</AUni> -<AUni ws="qvm-x-acl">asamblea</AUni> -<AUni ws="qvm-x-akh">asamblea</AUni> -<AUni ws="qvm-x-akl">asamblea</AUni> -<AUni ws="qvm-x-ame">asamblea</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+asamblea</AUni> -<AUni ws="qvm-x-acl">+asamblea</AUni> -<AUni ws="qvm-x-akh">+asamblea</AUni> -<AUni ws="qvm-x-akl">+asamblea</AUni> -<AUni ws="qvm-x-ame">+asamblea</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.485" /> -<DateModified val="2022-10-16 15:14:41.867" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eab5c907-1629-46e8-bd7f-e1e7b289be8b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">asamblea</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e937875d-d929-4351-bbce-721022183ca8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f3e236e9-93d0-4dca-9400-ebc2466206dc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx asamblea 
\entryTyp root 
\gENG assembly 
\gSPN asamblea 
\e +asamblea 
\c N0 
\ach asamblea 
\akh asamblea 
\acl asamblea 
\akl asamblea 
\ame asamblea</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="b6e9b9c9-632b-48e7-99f7-fa53ebcb3bc5" ownerguid="71430132-f2ea-40fe-b3f5-b6775741cc56"> -<Abbreviation> -<AUni ws="en">6.6.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.468" /> -<DateModified val="2022-9-23 16:55:8.468" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to knitting.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Knitting</AUni> -</Name> -<Questions> -<objsur guid="140140f4-ee4b-485f-839e-b742395164af" t="o" /> -<objsur guid="d19af970-c671-4d6c-868f-63acb94ef733" t="o" /> -<objsur guid="6f17ccc4-73f2-4145-a5d5-c1bb5ee82754" t="o" /> -<objsur guid="161ca329-a6d2-4185-a8d6-acec11f7aa52" t="o" /> -<objsur guid="57e4208d-f9e0-40fd-bf36-bde85969ff75" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="b6ead5e6-dab5-4941-9017-d03452182709" ownerguid="8be94377-a3cc-4187-a6e2-51523e953503"> -<Abbreviation> -<AUni ws="en">6.1.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.345" /> -<DateModified val="2022-9-23 16:55:8.345" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being an expert--someone who can do something well.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Expert</AUni> -</Name> -<Questions> -<objsur guid="0aa2e71e-ebae-402d-85bc-b98d7d9a7589" t="o" /> -<objsur guid="c3933cf7-a3c9-43b3-8d66-e4641ba640e5" t="o" /> -<objsur guid="4e2ea168-87bb-44cf-a601-ca29cc56bbf5" t="o" /> -<objsur guid="d83b70ea-1ceb-412e-a01d-4faad5d77ea0" t="o" /> -<objsur guid="815820ec-27a5-4af4-a50f-085c7ae54dfd" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="59d936f3-dffb-4585-80e0-eaf6cd6a8026" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="b6eb6370-5849-454e-8b70-7bcea2ccc52e" ownerguid="58b17d92-f7a8-430f-977a-38b17ff8147f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bell</AUni> -<AUni ws="es">campana</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="178f07bb-dd8d-4baf-9892-2dc7b80bd688" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="b6eb8ae9-1fd3-481a-83bf-31e911c487f1" ownerguid="258864e5-cd2f-4494-827e-b4bfe8140288"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">g</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">g</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">q</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">q</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">q</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2077e726-cf37-4913-b54c-2d034d4883b4" t="r" /> -</Morph> -<Msa> -<objsur guid="cc4f521e-5e38-4217-aa16-46da99d423ec" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="b6eba5d8-dc1c-40fa-8cfc-de4ee2b7bc7a" ownerguid="ba506c00-02c6-4f6a-8222-135a37c52c53"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.sticky</AUni> -<AUni ws="es">ser.pegajoso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="614d7a90-efa9-4a9b-b44f-828915b4b9fe" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoInflAffixSlot" guid="b6f091af-032e-4c9c-9c5c-443c1328d1e2" ownerguid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9"> -<Name> -<AUni ws="en">person</AUni> -</Name> -<Optional val="True" /> -</rt> -<rt class="CmDomainQ" guid="b6f0d147-970a-4628-9090-b173eabd672e" ownerguid="8052744f-7a9a-49da-89e3-4c518126180b"> -<ExampleWords> -<AUni ws="en">confuse, baffle, befuddle, bewilder, distract, flummox, fluster, mystify, nonplus, perplex, puzzle (v), stupefy, throw</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to causing someone to feel confused?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b6f0f52d-1aec-4ded-8c3a-22726018d488" ownerguid="b2f95320-1b8e-4f64-bf96-3c274a7f00b5"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="b6f36007-951d-4604-87d1-cc2628ff6c70" ownerguid="8f7259e1-c9fd-4f49-a9ea-1f4c039e9d06"> -<Form> -<AUni ws="qvm-x-ach">jipash</AUni> -<AUni ws="qvm-x-acl">jipash</AUni> -<AUni ws="qvm-x-akh">jipash</AUni> -<AUni ws="qvm-x-akl">jipash</AUni> -<AUni ws="qvm-x-ame">hipash</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b6f3ea40-5c47-4c64-bc14-5f44ebab96d4" ownerguid="e545baab-581d-4af8-81f2-5a884e272349"> -<ExampleWords> -<AUni ws="en">gelding</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a castrated male horse?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="b6f446d5-4062-4774-b109-10b3e1b82048"> -<Analyses> -<objsur guid="02d40281-094f-426e-a0eb-f10e113efb58" t="o" /> -<objsur guid="4f531ad5-b628-4cf8-88cc-72122c7cc725" t="o" /> -<objsur guid="8f3b45f3-3d18-41ba-b593-022f361d002a" t="o" /> -</Analyses> -<Checksum val="-1572469976" /> -<Form> -<AUni ws="qvm-x-akh">warmin</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="b6f4f8a4-15e0-4234-920f-72fb129b0417" ownerguid="9f1d000c-937f-4832-9502-eb671abfec06"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sup</AUni> -<AUni ws="es">cenar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cc2eb8e3-34d5-4517-b643-ade93e66b8a0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="PunctuationForm" guid="b6f85872-82e2-4115-b10c-9d4e33accf3d"> -<Form> -<Str> -<Run ws="en">PLALL</Run> -</Str> -</Form> -</rt> -<rt class="WfiMorphBundle" guid="b6fa9304-bd53-4da7-98b2-5fad70e0cc17" ownerguid="dd235928-9ba3-44d3-b41c-fae0183f9756"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wanu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wanu; wanu; wano</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wanu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wanu; wanu; wano</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wanu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="09b55264-ed18-4159-a886-daf61ac69c60" t="r" /> -</Morph> -<Msa> -<objsur guid="0b267061-94ac-4a60-9637-3b9a66fc4e04" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="b6fb9a5a-f4cf-4e97-a4cc-f630198a8ca3" ownerguid="56c9c38c-728a-42fe-b93c-6ca67fdf2a9a"> -<ExampleWords> -<AUni ws="en">mineralogy, mineralogist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the study of minerals?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b7001f5d-c08c-47f4-8f6d-d3376a1ec24d" ownerguid="36934fab-c0ed-4f25-a387-e1cca26b2401"> -<ExampleWords> -<AUni ws="en">a little, a drop of, pinch, dash, mouthful, in moderation, meager</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a small amount of food?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b700b123-a918-49b9-ac63-9eae3ff41258" ownerguid="742996cd-b87f-40a8-bdb3-dba74219bd73"> -<ExampleWords> -<AUni ws="en">heat something, warm something, thaw something, melt something, take the chill off, heat up, reheat, warm up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to making something hot?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b700d7da-6192-417d-9c8f-bdee3c45595b" ownerguid="36934fab-c0ed-4f25-a387-e1cca26b2401"> -<ExampleWords> -<AUni ws="en">a trickle, in dribs and drabs, in ones and twos</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words indicate that few people are doing something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b7028edc-e210-42e4-8e28-ceb41b11b2d4" ownerguid="88ba5a74-7153-46af-adec-a015ca9edc8c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">elastic</AUni> -<AUni ws="es">suave</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8a88c838-a463-4d3a-bd96-9df5bbef3452" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b702daa0-8e4d-4f27-a485-0da5202f300b" ownerguid="26bc089a-a989-4763-be6c-05d127d1c0e8"> -<ExampleWords> -<AUni ws="en">deliberately, on purpose, intentionally, pointedly, make a point of, knowingly, consciously, willfully, mean to do something</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to doing something deliberately?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b704c9db-2761-4cd6-b0bb-9e758f0b8fd9" ownerguid="8f0de903-8416-4385-b9cc-f0cc55ec340c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="b70deab5-76ba-4674-a1af-af0eab64e583" ownerguid="173c4bcf-6cb9-4473-bd57-2ee41acc3051"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">melt</AUni> -<AUni ws="es">derritir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cd35f3b7-1ce6-4b01-b929-a8e708ea2f44" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="b70edf0c-a56b-4be9-97ed-10847f1e3477" ownerguid="da038c26-ac03-418d-92ef-2820686c3b30"> -<Form> -<AUni ws="qvm-x-ach">travis</AUni> -<AUni ws="qvm-x-acl">travis</AUni> -<AUni ws="qvm-x-akh">travis</AUni> -<AUni ws="qvm-x-akl">travis</AUni> -<AUni ws="qvm-x-ame">travis</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b7107e19-95da-4d7e-bef1-724c4f4cb536" ownerguid="ff029102-3adb-440f-a061-2c56e88db807"> -<Form> -<AUni ws="qvm-x-ach">gol</AUni> -<AUni ws="qvm-x-acl">gol</AUni> -<AUni ws="qvm-x-akh">gol</AUni> -<AUni ws="qvm-x-akl">gol</AUni> -<AUni ws="qvm-x-ame">gol</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="b715dec5-d6da-4da3-81d4-2ec11115175d" ownerguid="c964116f-8581-46ed-9c28-42316f94fb38"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Tagay wamra rabyashga car culayla culaycan. Manami imatapis rimantsu. Jämaylatami cachaycan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="b715f06f-153e-4a6a-b018-7a5388b0daae"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bande:ra</AUni> -<AUni ws="qvm-x-acl">bande:ra</AUni> -<AUni ws="qvm-x-akh">bande:ra</AUni> -<AUni ws="qvm-x-akl">bande:ra</AUni> -<AUni ws="qvm-x-ame">bande:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bandera</AUni> -<AUni ws="qvm-x-acl">+bandera</AUni> -<AUni ws="qvm-x-akh">+bandera</AUni> -<AUni ws="qvm-x-akl">+bandera</AUni> -<AUni ws="qvm-x-ame">+bandera</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.941" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2dfee515-e744-4d5e-bbe8-0062eda17b23" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bandera</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="07ea8a9f-4e30-41da-bcaf-6b43ee2e270d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5ecbcc37-2fb1-403b-a8e4-a6a3fee8a140" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bandera 
\entryTyp root 
\gENG 
\gSPN bandera 
\e +bandera 
\c N0 V1 
\ach bande:ra 
\akh bande:ra 
\acl bande:ra 
\akl bande:ra 
\ame bande:ra 
\i Banderaraycanqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="b7179551-8920-4a54-af06-f59a104c2f24" ownerguid="6ad910f6-c929-4bce-90f1-53cb1035e659"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="b719f652-e058-44c5-aa33-0c3ae28ceac7" ownerguid="9a9a6de7-7471-4db7-9663-2c1eb1630f5c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="f0e5986a-2fc0-4ac1-a51a-203f0563478b" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="2ab21fc1-e61e-48a9-9b43-579a8e94f566" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b71d5c2b-48b8-49d4-8cb0-98132d67d2a2" ownerguid="43282de6-51e1-4e52-99fc-d54e2043fb6c"> -<ExampleWords> -<AUni ws="en">money, currency, finance, financial, bill, denomination, bread (slang), coin, bill, check, cash</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to money?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="b71ea717-8665-4825-86a7-74964405872b" ownerguid="f786786c-783e-4736-ae68-ed1a8dfd8a53"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yargu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yargu; yargo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yarqu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yarqu; yarqo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yarqu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7c95fb99-2d6d-47b6-9f44-63117f03e73c" t="r" /> -</Morph> -<Msa> -<objsur guid="c28bfe3d-38df-47f4-81ac-47db4ce988b5" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="b72074cf-94db-4193-8a53-843f13103fbd" ownerguid="40d0a9f2-1c32-4753-90ff-ff46d203ea0b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">vïnu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">vïnu; vïnu; vïno</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">vïnu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">vïnu; vïnu; vïno</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">vïnu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="c66aeb13-2604-4097-8f50-c8232255d314" t="r" /> -</Morph> -<Msa> -<objsur guid="ab520d54-2664-4dda-945e-d025f7bf6bb8" t="r" /> -</Msa> -<Sense> -<objsur guid="47094c18-8b83-41b8-88dd-fc64d907862d" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="b7229c16-d9e8-4f48-a92d-362c845d7884" ownerguid="627280f0-4f98-4b31-ad23-eabe37b002ad"> -<ExampleWords> -<AUni ws="en">tapering</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe something that is thin on one side or end?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b722bbe4-a29b-4960-85c5-4d6c668a187a" ownerguid="55c59036-a1b3-4e89-ac77-1727b5f3c154"> -<Form> -<AUni ws="qvm-x-ach">witsa; witsä</AUni> -<AUni ws="qvm-x-acl">witsa; witsä</AUni> -<AUni ws="qvm-x-akh">witsa; witsä</AUni> -<AUni ws="qvm-x-akl">witsa; witsä</AUni> -<AUni ws="qvm-x-ame">witsa; witsä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b7234e42-09d2-40bd-bd1b-924d5d1acaef" ownerguid="7019ab61-993e-4b4d-9e72-e2f4b8b27858"> -<Form> -<AUni ws="qvm-x-ach">aya</AUni> -<AUni ws="qvm-x-acl">aya</AUni> -<AUni ws="qvm-x-akh">aya</AUni> -<AUni ws="qvm-x-akl">aya</AUni> -<AUni ws="qvm-x-ame">aya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="b727ef2e-5f1f-4c7f-8f99-4621642f648d"> -<Analyses> -<objsur guid="6bda8a7e-628f-4114-9c86-ba3b42f31d3f" t="o" /> -</Analyses> -<Checksum val="-1951493846" /> -<Form> -<AUni ws="qvm-x-akh">warminta</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="b7281bba-888d-44f8-844a-620419417918" ownerguid="4383b317-2430-4fa5-a40e-a43cbabb03fc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="857c3d5d-7fda-4b92-8f6b-d60a4dc87cb2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="b72bb652-8ec2-4342-8d09-e0b23b7c5635" ownerguid="8fda4a2c-04fb-4935-9830-42964363db35"> -<Form> -<AUni ws="qvm-x-ach">ocupädu</AUni> -<AUni ws="qvm-x-acl">ocupädu; ocupädu; ocupädo</AUni> -<AUni ws="qvm-x-akh">ocupädu</AUni> -<AUni ws="qvm-x-akl">ocupädu; ocupädu; ocupädo</AUni> -<AUni ws="qvm-x-ame">ocupädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b72c7f80-0183-4775-9096-22d2f256fdc7" ownerguid="c13019df-58c1-47c2-b624-6d4907930152"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gnat</AUni> -<AUni ws="es">mosquito</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c95bb75a-d28d-460d-8b92-fd8d21b4bc1a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b72d5f23-5ae8-4283-b354-82217d5b931c" ownerguid="d4ebf50d-7ab1-4481-9933-a887cd2a2af7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="b72d64aa-b33b-47d9-84d1-186a72461e32" ownerguid="0cce6d8e-cc43-4441-aa0f-c18893567d84"> -<Form> -<AUni ws="qvm-x-ach">juti</AUni> -<AUni ws="qvm-x-acl">juti; juti; jute</AUni> -<AUni ws="qvm-x-akh">juti</AUni> -<AUni ws="qvm-x-akl">juti; juti; jute</AUni> -<AUni ws="qvm-x-ame">huti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="b72e1c00-8514-424e-9d56-8161690f2f3f" ownerguid="d63c5f73-85d8-4a05-bb72-8a88e2ef624a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b73217ee-97db-4bac-8abe-a44ba10cf6c2" ownerguid="0ede51d2-69bd-411e-97f9-da0d5118bbff"> -<ExampleWords> -<AUni ws="en">recover damages, render a guilty verdict, hand down a conviction</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used of the action of condemning a person?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b735bca1-4f76-4ab2-ba95-fd986ffefce2" ownerguid="c3d3c269-a682-4198-867d-37e42b6af96b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="b738210b-80e8-48eb-88f5-c611c101250e" ownerguid="4268cbc0-6680-4779-99d7-1df8d8cbf450"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">puppy</AUni> -<AUni ws="es">cachorro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="89312133-fc69-447a-8408-36ec787c434d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b73a78f0-1f2d-43c4-afe0-84b5755ae17f" ownerguid="849dcf1c-51e1-4c63-9308-504bfb1c3cd0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b73cd84d-6a35-4e55-97a1-4d1f77f3f93d" ownerguid="d117aa22-3f18-47c4-9683-51ecf1dc7134"> -<ExampleWords> -<AUni ws="en">seed, acorn, bean, berry, cone, ear, grain, gourd, kernel, nut, pinecone, pod, rosehip, bran, chaff, cob, corncob, germ, head of grain, hull, husk, nutshell, pod, pit, rind, section, seedcase, shell, skin, stem, stone, whole(wheat)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to the seeds?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b73fe6a6-a0db-494c-a35b-8bf41c0d3644" ownerguid="6330871b-6008-490e-bfff-e28e17ebce7e"> -<ExampleWords> -<AUni ws="en">stationary, still, motionless, still</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is not moving?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b7443c79-3d53-440c-b101-e959d2f17165" ownerguid="afa77a2a-8b0f-4a39-91bc-040e90ffbb3a"> -<ExampleWords> -<AUni ws="en">happy, blissful, delightful (time), idyllic, joyous (occasion), pleasant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words describe a time period when you feel happy?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b744f052-2f52-4f41-8773-2fa08727db5c" ownerguid="d2b9a972-f2de-4535-adbf-152b679769a0"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b7493614-2150-4466-8be1-9c1ebf4793df" ownerguid="738a09a5-59df-40f9-8a4e-176e00d03bbf"> -<ExampleWords> -<AUni ws="en">ax, axe, blackjack, club, halberd, hatchet, mace, tomahawk, truncheon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What types of axes and clubs are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b7497526-efce-4541-a7e2-b5197e10027e" ownerguid="611aa361-4ddd-450b-a152-94984a274575"> -<ExampleWords> -<AUni ws="en">abandonment, dereliction, desertion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the act of abandoning something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b74b4a19-b366-4cc1-a3f2-5047193f19cb" ownerguid="275f048d-f5d1-4d7c-81e2-6e45df03773d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">night</AUni> -<AUni ws="es">noche</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c7102aac-4a4b-43d2-8fd2-8e67461ca1c1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="b74c78f5-e2e4-44f8-9c4c-d7098f3041aa" ownerguid="fcda3c9b-d0d3-4f73-b815-0716fb5455d5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gather</AUni> -<AUni ws="es">coger</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bc200771-3e33-42ca-af78-ebb98bfa3fbc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b74e01bd-77de-4a86-9e34-337c402328d0" ownerguid="8497fb66-8b91-46b9-a0d5-fb9385319561"> -<ExampleWords> -<AUni ws="en">sweet, sugary, sickly sweet, sweeten</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words describe something that has a sweet taste?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="b74f6fe8-c517-47eb-a65e-5298cb8d5b91" ownerguid="89d7c6a6-8be7-4bfe-910b-56a1132456cc"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="r" /> -</Morph> -</rt> -<rt class="WfiWordform" guid="b757d9ba-ae80-481a-ab8f-3bae62d43b54"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">morphlowers</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="b759a244-6b1f-41c6-a799-67dd1cc935e8" ownerguid="117d15f5-27ea-4ed5-973a-690e38c6e0ca"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b76092c5-d5da-4185-a034-2901a92e40c4" ownerguid="cab8e9dc-5e4f-4a12-8b3d-4acbb7ad2059"> -<ExampleWords> -<AUni ws="en">understand differently, give a different interpretation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to understanding something differently than someone else?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="b760a3a7-ea7f-4a4b-a4b5-81752f2ca158" ownerguid="d8366daf-ae1d-4b2c-a447-478c73580639"> -<Abbreviation> -<AUni ws="en">6.1.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.350" /> -<DateModified val="2022-9-23 16:55:8.350" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to working poorly.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Work poorly</AUni> -</Name> -<Questions> -<objsur guid="834a487d-e523-4053-ab68-5974e6ad3899" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="6e04a3e2-3b3a-4d0b-bf71-1596ca0aa211" t="o" /> -<objsur guid="0c21ae3d-10b1-481f-8d8f-66e2590c4578" t="o" /> -<objsur guid="a2ae0c29-df1c-486d-a44b-96fcc4e0aa8c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="b76173eb-aeae-4006-92e5-2283e56986bc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">merma; merma:</AUni> -<AUni ws="qvm-x-acl">merma; merma:</AUni> -<AUni ws="qvm-x-akh">merma; merma:</AUni> -<AUni ws="qvm-x-akl">merma; merma:</AUni> -<AUni ws="qvm-x-ame">merma; merma:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mermar</AUni> -<AUni ws="qvm-x-acl">+mermar</AUni> -<AUni ws="qvm-x-akh">+mermar</AUni> -<AUni ws="qvm-x-akl">+mermar</AUni> -<AUni ws="qvm-x-ame">+mermar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.416" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ae95db7b-9ff3-4a13-959a-747152e3a800" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mermar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8f8238f0-673f-41bd-9058-4581f7555c45" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="200def8b-f75e-45c4-8603-a3eed38a9257" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mermar 
\entryTyp root 
\gENG diminishù 
\gSPN mermar 
\e +mermar 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach merma foreshortened 
\ach merma: 
\mp +underlong 
\akh merma foreshortened 
\akh merma: 
\acl merma foreshortened 
\acl merma: 
\akl merma foreshortened 
\akl merma: 
\mp +underlong 
\ame merma foreshortened 
\ame merma:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="b761a6be-95a2-4375-b912-bedd63c21a76" ownerguid="8aac0e1e-8051-4e2e-9e3e-60be52014750"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Logluyparag winar tapya jananpapis pasagnogmi paycuna canga.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="b7646e5e-c847-4fb0-8d3a-79f3e36ec04a" ownerguid="8ce06964-1c8e-494b-a177-ad1c4f16ea97"> -<Form> -<AUni ws="qvm-x-ach">banda</AUni> -<AUni ws="qvm-x-acl">banda</AUni> -<AUni ws="qvm-x-akh">banda</AUni> -<AUni ws="qvm-x-akl">banda</AUni> -<AUni ws="qvm-x-ame">banda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="b7662b2b-e57c-400b-8ef6-6fb612f5ee9f" ownerguid="af5bcf27-56e2-4072-b321-30a31b58af78"> -<Abbreviation> -<AUni ws="en">6.2.1.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.385" /> -<DateModified val="2022-9-23 16:55:8.385" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to growing bananas.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Growing bananas</AUni> -</Name> -<Questions> -<objsur guid="e6c4e4dd-2b22-4615-835c-d5c886d1f0cd" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="PunctuationForm" guid="b7671a82-6b84-4106-b30c-661ff95ed9da"> -<Form> -<Str> -<Run ws="en">8</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="b76a5701-3021-4574-9cdd-f7a1cf41982a" ownerguid="c8d94c8f-db0b-4016-bdd2-e41a2eae4288"> -<ExampleWords> -<AUni ws="en">state, province, territory, prefecture, county, district</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a region of a country?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b76a828b-eac9-466a-9339-798850f3f534" ownerguid="5d1bb537-bcee-49f4-bb91-86f347bc471d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="b76c1d77-e3dc-4a8b-9cf7-6fb696740bed" ownerguid="f48346c2-1c61-4bbd-a867-8d84532bc816"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.remember</AUni> -<AUni ws="es">recordar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="19ab5cf1-1864-4db0-94a6-3ed04ddf2ef7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="b76c5002-f55a-4871-82db-18d65707232b" ownerguid="34082327-9615-4703-9817-d2ef3b93692d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">only.one</AUni> -<AUni ws="es">solo.uno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="41b04248-c472-404e-90cc-f877ad3eead9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="b770c97b-d9a9-4dfd-b276-66bfdea4f19c" ownerguid="efefadd4-0419-4705-a08e-cb3298edb4f0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">later</AUni> -<AUni ws="es">tarde</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2b84ebd8-2c6a-4acf-896f-754bf9d8c3aa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b7736cb5-f039-4001-b00b-d932dc020cdc" ownerguid="aed6c1ec-abbe-47e3-a6cc-a99ecff3b825"> -<ExampleWords> -<AUni ws="en">dull, matt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that is not shiny?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b774701d-233d-489b-bba1-2bd1dadc215c" ownerguid="2a62f8e4-7da3-4f37-bf44-e24033c99c00"> -<ExampleWords> -<AUni ws="en">make a scene, huff, have a tantrum, throw a tantrum, outburst, shake your fist, stamp your foot, let off steam, rant, rave, scowl, pout</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to acting in an angry manner?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b7776ddd-cdb0-44dd-be97-a9d7e6d4ac5a" ownerguid="86c8bff0-cf2e-4823-a850-9fde7ac0b5d1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wide</AUni> -<AUni ws="es">ancho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="32b1b8cc-7f84-4aa6-96a2-d0d718432c64" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="b77a0a5e-b4cc-4e17-b9e8-e024ea8ba2c5" ownerguid="4432db51-bbe3-46fc-9b3c-92fa775d8a7c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">?</AUni> -<AUni ws="es">tranquear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="46218318-888b-49d8-9ae6-47262a1626fc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="b77bf6a2-75ec-47e5-a218-d00a3a2fc6e7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">raycu</AUni> -<AUni ws="qvm-x-acl">raycu; raycu; rayco</AUni> -<AUni ws="qvm-x-akh">rayku</AUni> -<AUni ws="qvm-x-akl">rayku; rayku; rayko</AUni> -<AUni ws="qvm-x-ame">rayku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rayku</AUni> -<AUni ws="qvm-x-acl">*rayku</AUni> -<AUni ws="qvm-x-akh">*rayku</AUni> -<AUni ws="qvm-x-akl">*rayku</AUni> -<AUni ws="qvm-x-ame">*rayku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.297" /> -<DateModified val="2022-10-10 21:19:47.691" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a24fa55f-1c23-48b7-98f5-a50f2dffc30a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rayku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f3c5d264-2db6-4e27-842a-115f65ef3b69" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f1cddb60-310f-40be-bb22-1ce76eb80cc9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rayku 
\entryTyp root 
\gENG sake 
\gSPN 
\e *rayku 
\c R0 
\ach raycu 
\akh rayku 
\acl raycu / _# 
\acl raycu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl rayco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rayku / _# 
\akl rayku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl rayko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame rayku 
\i PRO 6.26 Prostitüta warmega guellaypag rayculami runawan punun.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="b77dea81-897b-4015-aae3-ed7a66cdc656" ownerguid="829086bb-82c7-4342-87aa-2bc3308b84da"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">vïda</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">vïda</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">vïda</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">vïda</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">vïda</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a70c1059-3132-4c43-9bcf-55d479865318" t="r" /> -</Morph> -<Msa> -<objsur guid="3fa1c127-9b36-48a1-bb26-f13d5864ce67" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="b7801f6e-683b-4d5d-9bab-57f6e593db8c" ownerguid="70eac6be-66e8-4827-8f2f-d15427efff60"> -<Abbreviation> -<AUni ws="en">3.5.7.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.182" /> -<DateModified val="2022-9-23 16:55:8.182" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a list of things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">List</AUni> -</Name> -<Questions> -<objsur guid="b04f605c-b014-4a98-97e2-1286421ace73" t="o" /> -<objsur guid="f214ebde-6528-42e2-a431-8a0f03a31653" t="o" /> -<objsur guid="ef0ca465-d08a-4c2c-a5aa-06fe90ea86f8" t="o" /> -<objsur guid="0fa025bd-5f48-42fd-ae8b-5098f74329b3" t="o" /> -<objsur guid="aea7ff8e-bd97-4c43-8d88-71018cd1e8dd" t="o" /> -<objsur guid="af4def35-e98f-4e41-907e-329895f65fd9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="b781d05f-5e39-43a7-b1ab-e3d40fd6fab5" ownerguid="03e02aa1-46e1-4b39-b303-9f7d729d4b1e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="b785c289-0e78-4626-a25c-da44b2bc903a" ownerguid="17563e74-6020-4a64-a1a9-b874ef533fcb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">penis</AUni> -<AUni ws="es">pene</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fc985e07-1d45-4fda-9815-d3f77da2c9af" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b78a4ccd-e551-4718-aba6-a85c55da1229" ownerguid="0134f6fe-9b56-4d4e-ae56-f1fd5e58493f"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="b78b53ce-690a-458d-81b6-a05dd2fc77db" ownerguid="cd4e0a03-47f9-4119-a883-ea54123d0817"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pasture</AUni> -<AUni ws="es">pastar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9185d474-e0c5-4ac3-ab9d-652d0b9269a1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="b78bd870-12a7-4975-9a3e-cc2f8b7ddfe9" ownerguid="b518bbc3-0930-4e22-8f2f-a9e62ae79e89"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sprinkle</AUni> -<AUni ws="es">sacudir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d7af271d-e56a-451a-8117-fa238e467fee" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="b790470f-ed4e-42ac-932d-cd15ef701b03" ownerguid="b9c752a4-66be-493c-8955-cfa5324a54c1"> -<Abbreviation> -<AUni ws="en">4.9.5.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.296" /> -<DateModified val="2022-9-23 16:55:8.296" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to religious purification.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88C Holy, Pure; 53C Purify, Cleanse; 53D Defiled, Unclean, Common; 53E Baptize</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Religious purification</AUni> -</Name> -<OcmCodes> -<Uni>783 Purification and Atonement; Purification and Expiation; 783 Purification and Expiation; 688 Religious Offenses</Uni> -</OcmCodes> -<Questions> -<objsur guid="8e79bafe-bace-4cf8-b0b8-6fcc37c8ac1c" t="o" /> -<objsur guid="0b65cdae-26a7-4d5d-bbac-ea87a4efed6c" t="o" /> -<objsur guid="16280f85-24ce-44de-8888-adb2732dabd0" t="o" /> -<objsur guid="cca7c886-444c-4b95-adb9-0a986061c7e9" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="24361be2-49be-4860-bb56-4e46dd1e8b0c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="b7923925-d507-42a2-bbd7-7b6edb4f2093" ownerguid="83c35895-8809-4e26-92f2-056942c9c007"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="b794219a-c4f6-4d05-a8c2-17ff346976e3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">catu</AUni> -<AUni ws="qvm-x-acl">catu; catu; cato</AUni> -<AUni ws="qvm-x-akh">katu</AUni> -<AUni ws="qvm-x-akl">katu; katu; kato</AUni> -<AUni ws="qvm-x-ame">katu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*katu.n</AUni> -<AUni ws="qvm-x-acl">*katu.n</AUni> -<AUni ws="qvm-x-akh">*katu.n</AUni> -<AUni ws="qvm-x-akl">*katu.n</AUni> -<AUni ws="qvm-x-ame">*katu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.953" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6c76da95-155c-4e44-a30e-6648334fa7ff" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*katu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="54094256-ddf9-40c4-ae5e-edcf0e42532e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7d07793f-c78f-4e3b-ae99-51f55cbcaec4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *katu.n 
\entryTyp root 
\gENG 
\gSPN 
\e *katu.n 
\c N0 
\ach catu 
\akh katu 
\acl catu / _# 
\acl catu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl katu / _# 
\akl katu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame katu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b79899cc-ab50-4e4e-8383-5666b3d4ba66" ownerguid="0ac5e5f9-e7fe-4d37-a631-eab1ceb1f8ae"> -<ExampleWords> -<AUni ws="en">moraine, talus</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to rocks at the bottom of a mountain?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="b79f8775-d8d0-4aa5-b4ab-917f6f3d6c13" ownerguid="e931da8a-efc1-46cb-836a-72fba4a1eb4f"> -<Abbreviation> -<AUni ws="en">7.3.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.528" /> -<DateModified val="2022-9-23 16:55:8.528" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to chasing or driving people and animals--to cause someone (or an animal) to move.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Chase away</AUni> -</Name> -<Questions> -<objsur guid="b90141a3-230b-49ca-902c-1d1f17e2c680" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="b7a04cf8-e33b-4a8f-b3c7-78c322732100" ownerguid="29487264-a5ad-47cc-9966-2424e2d7fb28"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="ab9b3cfa-5f39-4e34-87b5-9d87ea77dbc1" t="o" /> -<objsur guid="8a15c147-6cbb-4a4e-acac-8d7f303176c5" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="b7a1286d-7222-4887-842d-17ec43bf6d0b" ownerguid="95fb6952-8926-4e83-813f-bdb285dc48d3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">baby.donkey</AUni> -<AUni ws="es">burro.tierno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9dcf23f7-13e1-44d5-a9b5-1c1631f3e1a6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b7a578bb-9746-43fc-8668-99635b9c8015" ownerguid="a1fc2a49-f105-4f42-9af4-4c7af7084072"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b7a6c0a5-8244-4b9b-b0b9-bdb8ff5e9820" ownerguid="c358b041-7a1a-43d6-8e61-26b9507f559f"> -<ExampleWords> -<AUni ws="en">meet, meet together, get together, rendezvous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to meeting someone?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b7a776f3-d742-43ee-9701-1f7172703c9d" ownerguid="c4133918-247c-46dc-991b-ce9ccd2d2ced"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">12V</AUni> -<AUni ws="es">12V</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7901bffa-960d-4e26-a36f-49cd9cb87071" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="b7a971e8-63c5-47a8-b1e2-63c86f30f108" ownerguid="3159b288-5a51-4a70-814b-2e866f61e4a8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yarpä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yarpä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yarpä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yarpä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yarpaa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a7f21528-35d2-49ec-9070-a385dd45427e" t="r" /> -</Morph> -<Msa> -<objsur guid="19ab5cf1-1864-4db0-94a6-3ed04ddf2ef7" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="b7aa8a4d-4685-4d28-9499-c8b7a9fc9f95" ownerguid="6045c6eb-efea-4586-95f8-840d32578d66"> -<ExampleWords> -<AUni ws="en">arrange, align, array, dispose, lay out, line up, order, put in order, range, set out, concatenate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to arranging things?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b7ab6ae8-4dfb-42b2-b827-7c74c6fc35e3" ownerguid="0b33e2e3-ea5c-42b5-9c9c-904b89913aeb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mule</AUni> -<AUni ws="es">mula</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8f30f828-e15b-4a29-9e12-ee4ae6509d6c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="b7ad601f-b474-4bb3-94cb-2fdee7e3f23f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa:cu; pa:ca</AUni> -<AUni ws="qvm-x-acl">pa:cu; pa:co; pa:ca</AUni> -<AUni ws="qvm-x-akh">pa:ku; pa:ka</AUni> -<AUni ws="qvm-x-akl">pa:ku; pa:ko; pa:ka</AUni> -<AUni ws="qvm-x-ame">pa:ku; pa:ka</AUni> -</Custom> -<AlternateForms> -<objsur guid="d9706437-e094-4fe8-b14f-01ea8dfdec23" t="o" /> -<objsur guid="e89f4461-706d-4840-bf9f-bfa3b395d737" t="o" /> -</AlternateForms> -<DateCreated val="2022-9-23 18:26:20.548" /> -<DateModified val="2022-10-19 17:56:46.295" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="1" /> -<LexemeForm> -<objsur guid="bf549c71-b400-447d-b3b0-fdf056dadf6d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">PLALL</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f32a5a50-f426-45b8-ae08-eba8e0a53b74" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f9fa41d4-dd29-40f1-be9f-24911a0fb7bb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx PLALL 
\entryTyp suffix 
\gENG PLALL 
\gSPN PLGEN 
\e PLALL 
\c V1/V1 V2/V2 
\o 040 
\mp PMlowered +mlowers 
\ach pa:cu 
\ach pa:ca morphlowered 
\akh pa:ku 
\akh pa:ka morphlowered 
\acl pa:cu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pa:co +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pa:ca morphlowered 
\akl pa:ku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pa:ko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pa:ka morphlowered 
\ame pa:ku 
\ame pa:ka morphlowered 
\mcc PLALL / ~_ IMPFV1</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="b7b0819b-eceb-4f16-ae6d-2298c4df1e6f" ownerguid="6bf8ce57-1970-4efb-a7d7-b0bf8be6fb6b"> -<Abbreviation> -<AUni ws="en">8.4.5.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something happening on time--at the expected time, at the usual time, or at the time that was agreed on.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">On time</AUni> -</Name> -<Questions> -<objsur guid="4721c457-0c2a-4a77-8f7d-f2b190d1c0f6" t="o" /> -<objsur guid="82150f06-352a-4885-a8c4-c3e6030bf1bc" t="o" /> -<objsur guid="f83989da-ad4c-4781-bf39-74d18c810649" t="o" /> -<objsur guid="a8559c25-a9e1-48c7-a4df-fe570c8e75d3" t="o" /> -<objsur guid="2e092836-d57e-41c8-ba90-faa93accdd96" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="b7b1ac4c-1503-4fb5-b052-f22911d37a9d" ownerguid="c6340d2f-f792-470d-8005-679200241fec"> -<Form> -<AUni ws="qvm-x-ach">escuëla</AUni> -<AUni ws="qvm-x-acl">escuëla</AUni> -<AUni ws="qvm-x-akh">escuëla</AUni> -<AUni ws="qvm-x-akl">escuëla</AUni> -<AUni ws="qvm-x-ame">escuëla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="b7b26d35-9a0e-408d-b39a-aba28f9be3ba"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">oli:vu</AUni> -<AUni ws="qvm-x-acl">oli:vu; oli:vu; oli:vo</AUni> -<AUni ws="qvm-x-akh">oli:vu</AUni> -<AUni ws="qvm-x-akl">oli:vu; oli:vu; oli:vo</AUni> -<AUni ws="qvm-x-ame">oli:vu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+olivo.1</AUni> -<AUni ws="qvm-x-acl">+olivo.1</AUni> -<AUni ws="qvm-x-akh">+olivo.1</AUni> -<AUni ws="qvm-x-akl">+olivo.1</AUni> -<AUni ws="qvm-x-ame">+olivo.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.628" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7cd7f1d7-eb44-47ad-8d91-c640f2cf059f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+olivo.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eb5b7322-12fa-46bc-9ef2-2dcf7307803f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c6793f7f-1b45-4096-a31e-fe080ee0b60b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +olivo.1 
\entryTyp root 
\gENG olive 
\gSPN 
\e +olivo.1 
\c N0 
\ach oli:vu 
\akh oli:vu 
\acl oli:vu / _# 
\acl oli:vu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl oli:vo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl oli:vu / _# 
\akl oli:vu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl oli:vo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame oli:vu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="b7b29bb4-14c4-438d-abc0-d15f1e9121c8" ownerguid="64367de3-7fca-4995-8ef3-8a561b946bc8"> -<Form> -<AUni ws="qvm-x-ach">reza</AUni> -<AUni ws="qvm-x-acl">reza</AUni> -<AUni ws="qvm-x-akh">reza</AUni> -<AUni ws="qvm-x-akl">reza</AUni> -<AUni ws="qvm-x-ame">reza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="Segment" guid="b7b2fe3e-31a0-4d05-857c-9a0cbbda2755" ownerguid="1915d1c3-1c71-4415-912d-0327ae56198f"> -<Analyses> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="fa7aeb71-200a-4a5d-9436-13faa1972fea" t="r" /> -<objsur guid="25651c34-3e31-419d-86b5-cda6907f0a4f" t="r" /> -<objsur guid="7beb2bdf-1e77-4955-99ec-39f893293020" t="r" /> -<objsur guid="a85a5670-81ba-47b9-8443-95e8be60ebec" t="r" /> -<objsur guid="cc5592b2-d053-4f21-868f-e47798949ce1" t="r" /> -<objsur guid="4fccec2d-58a4-466f-a087-a79d6bf13b57" t="r" /> -<objsur guid="b6f85872-82e2-4115-b10c-9d4e33accf3d" t="r" /> -<objsur guid="afffb5bb-d332-4ad0-b30c-3ea9206a1815" t="r" /> -<objsur guid="d3da10af-d6fb-4b58-9133-b9d5c3ec090c" t="r" /> -</Analyses> -<BeginOffset val="18" /> -</rt> -<rt class="CmDomainQ" guid="b7b3023d-acde-4224-a051-01682b3bd964" ownerguid="0ac5e5f9-e7fe-4d37-a631-eab1ceb1f8ae"> -<ExampleWords> -<AUni ws="en">climb</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What do people do to mountains?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b7b96393-b219-4790-a6d6-948f0466c24a" ownerguid="dc177f3c-d0fd-4232-adf1-a77b339cdbb2"> -<ExampleWords> -<AUni ws="en">hotel, motel, inn, hostel, lodge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What kinds of buildings are used by travelers for sleeping?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b7ba320b-ee5b-499a-8e1f-ab37678473fe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mayla</AUni> -<AUni ws="qvm-x-acl">mayla</AUni> -<AUni ws="qvm-x-akh">mayla</AUni> -<AUni ws="qvm-x-akl">mayla</AUni> -<AUni ws="qvm-x-ame">mayla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*maylla</AUni> -<AUni ws="qvm-x-acl">*maylla</AUni> -<AUni ws="qvm-x-akh">*maylla</AUni> -<AUni ws="qvm-x-akl">*maylla</AUni> -<AUni ws="qvm-x-ame">*maylla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.376" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a4fb117d-db0e-441f-8118-669c5dbf03fe" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*maylla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="232570be-c370-4d86-a116-869480fe4890" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5d15a96f-521a-47b5-8fc3-d28a970cfa9e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *maylla 
\entryTyp root 
\gENG wash 
\gSPN lavar 
\e *maylla 
\c V2 
\ach mayla 
\akh mayla 
\acl mayla 
\akl mayla 
\ame mayla</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b7bf5aae-7020-4320-af7b-e66e4882fa51" ownerguid="7575d654-e528-4fe0-85eb-481b0e6654bb"> -<ExampleWords> -<AUni ws="en">be off, break down, broken</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to when a machine is not working?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b7c0e1b7-6691-4340-9d85-a52d9a169b7d" ownerguid="c8185ca6-567a-40ef-939f-ffefdd9a4770"> -<ExampleWords> -<AUni ws="en">eternal, infinite, everlasting, constant, perpetual, unending, endless, never-ending, unceasing, ceaseless, incessant, undying, immortal, imperishable, deathless, boundless, indefinite, unlimited, immeasurable, never failing, unfailing, timeless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used to describe something will continue forever?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b7c2be93-5cfe-44fa-a38d-447679d5f359"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mu:sicu</AUni> -<AUni ws="qvm-x-acl">mu:sicu; mu:sicu; mu:sico</AUni> -<AUni ws="qvm-x-akh">mu:sicu</AUni> -<AUni ws="qvm-x-akl">mu:sicu; mu:sicu; mu:sico</AUni> -<AUni ws="qvm-x-ame">mu:sicu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+músico</AUni> -<AUni ws="qvm-x-acl">+músico</AUni> -<AUni ws="qvm-x-akh">+músico</AUni> -<AUni ws="qvm-x-akl">+músico</AUni> -<AUni ws="qvm-x-ame">+músico</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.527" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f0cecd6d-6848-4863-b024-774f646dbf2a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+músico</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="949d0efe-c500-4f6e-8572-1ab36d191b48" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="043254f2-456d-4310-b7a0-177f3076565f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +músico 
\entryTyp root 
\gENG 
\gSPN 
\e +músico 
\c N0 
\ach mu:sicu 
\akh mu:sicu 
\acl mu:sicu / _# 
\acl mu:sicu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mu:sico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mu:sicu / _# 
\akl mu:sicu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mu:sico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mu:sicu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="b7c6cff6-aa05-4648-b183-09595e0e1f45" ownerguid="93258a11-9af6-40b2-add5-ea720068462c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fix</AUni> -<AUni ws="es">arreglar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="eb745629-7018-401c-b7e5-de0f6456c81a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="b7c8049c-09e2-479d-b9ed-7ef51c19f930" ownerguid="acb27c0f-0c18-4c10-b711-a896fa822fad"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsay</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsay</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsay</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsay</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsay</Run> -</AStr> -</Form> -<Morph> -<objsur guid="feef9276-2243-43d4-b44a-5a725a0be56c" t="r" /> -</Morph> -<Msa> -<objsur guid="17c53e1a-f12c-41bc-9038-3134419c51bb" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="b7c8ccf4-ce02-4bcb-966a-f58e1a6a931c" ownerguid="5663238a-9f7f-4218-aed2-a8cc9be6887e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</Msa> -<Sense> -<objsur guid="80f44d0c-72fe-4b3c-b505-6b06de3ee220" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="b7ce223c-f52a-4198-acb7-59d8713864d6" ownerguid="d01f1c51-522e-4b35-81b3-00577dbfa3bd"> -<ExampleWords> -<AUni ws="en">light (adj), pale, pastel, faint, livid, lurid, pallid, pallor, pale-faced, neutral tint</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that is a light color?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b7d23cf5-eb57-4aa9-bf97-259c0ac75d20"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shinri</AUni> -<AUni ws="qvm-x-acl">shinri; shinre</AUni> -<AUni ws="qvm-x-akh">shinri</AUni> -<AUni ws="qvm-x-akl">shinri; shinre</AUni> -<AUni ws="qvm-x-ame">shinri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shinri</AUni> -<AUni ws="qvm-x-acl">*shinri</AUni> -<AUni ws="qvm-x-akh">*shinri</AUni> -<AUni ws="qvm-x-akl">*shinri</AUni> -<AUni ws="qvm-x-ame">*shinri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.591" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0b67362f-6317-49bf-bc3f-4ca7096bbbbf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shinri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6c98fba7-06c5-41f6-9a08-1f3bb1f514c2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9ee35e7f-5001-4659-ad6d-8a5efcdeb1df" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shinri 
\entryTyp root 
\gENG string 
\gSPN ensartar 
\e *shinri 
\c V2 
\mp +FinalI 
\ach shinri 
\akh shinri 
\acl shinri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shinre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shinri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shinre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shinri</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b7d26886-df3e-4f1a-acf1-9dbce2fad498" ownerguid="dd830047-d7f5-4010-a8ea-ae20468a0cbf"> -<ExampleWords> -<AUni ws="en">greedy, greed, grasping, materialistic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to wanting more money?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b7d5f1fb-2cef-4ead-9fe2-a39509d228ac" ownerguid="db1921e9-dd6c-4477-ab3d-27218a5c6b70"> -<Form> -<AUni ws="qvm-x-ach">avión; avion</AUni> -<AUni ws="qvm-x-acl">avión; avion</AUni> -<AUni ws="qvm-x-akh">avión; avion</AUni> -<AUni ws="qvm-x-akl">avión; avion</AUni> -<AUni ws="qvm-x-ame">avión; avion</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b7d62112-bdc1-4c17-8d57-1555f22d56e4" ownerguid="2f58bd8d-98ba-43a6-a143-441d8a630f7d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">inside</AUni> -<AUni ws="es">adentro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="df2a1f95-f8e8-4991-bd04-18eda8f38d73" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="b7d6465e-b276-4988-beff-b6b3bf4817ee" ownerguid="c7f97c73-200b-4afd-ba63-c1ed6641c6f6"> -<Form> -<AUni ws="qvm-x-ach">gueshpi</AUni> -<AUni ws="qvm-x-acl">gueshpi; gueshpi; gueshpe</AUni> -<AUni ws="qvm-x-akh">qeshpi</AUni> -<AUni ws="qvm-x-akl">qeshpi; qeshpi; qeshpe</AUni> -<AUni ws="qvm-x-ame">qishpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b7e16c4f-ae97-48ff-bbe6-bb59e2cfb553" ownerguid="a8b3fa0c-077e-4c0d-b4cc-36dcfbdcb4d4"> -<ExampleWords> -<AUni ws="en">paint (n), dye (n), bleach (n), food coloring, stain (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to things used to change the color of something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b7e24860-a37c-42ab-bc19-fa27d7c4f082" ownerguid="6a8c49d2-93e4-4cb2-bee1-ed30a244d188"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="b7e51b91-bb46-4e6b-a259-512c83f55028" ownerguid="1bbc977d-5778-450c-abfa-be746b255c3d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">deacon</AUni> -<AUni ws="es">diácono</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f7179bab-35f8-4461-8e4c-90bd09d111b3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b7e54d59-2478-4437-bcc0-1ae6a0f95245" ownerguid="2b2bedd5-3f9c-4c18-a256-aa65ee19f15c"> -<ExampleWords> -<AUni ws="en">incompatibility</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to the quality of being incompatible?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b7e73bed-f50c-4a03-b848-455adeebf442" ownerguid="4daad1d2-6cfb-469d-9288-69602e35b12d"> -<Form> -<AUni ws="qvm-x-ach">jacu</AUni> -<AUni ws="qvm-x-acl">jacu; jacu; jaco</AUni> -<AUni ws="qvm-x-akh">jaku</AUni> -<AUni ws="qvm-x-akl">jaku; jaku; jako</AUni> -<AUni ws="qvm-x-ame">haku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b7ea7c44-e15e-4771-addc-03166af8cfe4" ownerguid="d039c5f7-4519-40d7-ae28-2dbbd3822be0"> -<Form> -<AUni ws="qvm-x-ach">garacha; garachä</AUni> -<AUni ws="qvm-x-acl">garacha; garachä</AUni> -<AUni ws="qvm-x-akh">qaracha; qarachä</AUni> -<AUni ws="qvm-x-akl">qaracha; qarachä</AUni> -<AUni ws="qvm-x-ame">qaracha; qarachä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="b7eaa4f1-8aa8-4f77-9cf2-2bc36d5cc650"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chimpi</AUni> -<AUni ws="qvm-x-acl">chimpi; chimpe</AUni> -<AUni ws="qvm-x-akh">chimpi</AUni> -<AUni ws="qvm-x-akl">chimpi; chimpe</AUni> -<AUni ws="qvm-x-ame">chimpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trimpi</AUni> -<AUni ws="qvm-x-acl">*trimpi</AUni> -<AUni ws="qvm-x-akh">*trimpi</AUni> -<AUni ws="qvm-x-akl">*trimpi</AUni> -<AUni ws="qvm-x-ame">*trimpi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.117" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6c24ca18-c7e8-4af3-925b-ece688adc078" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trimpi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2fcd9bc3-1801-488e-8b8e-8fa7c30eea5a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="72a3917e-d358-461b-b71d-6164244d9c57" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trimpi 
\entryTyp root 
\gENG climb 
\gSPN subir 
\e *trimpi 
\c V1 
\mp +FinalI 
\ach chimpi 
\akh chimpi 
\acl chimpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl chimpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chimpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chimpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chimpi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="b7eac2da-784b-4603-8b77-50a7c0ac4646" ownerguid="e4111081-4f61-4fef-b14a-b6f497e3cf70"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="b7ed2482-6883-4a02-a992-e86c2573cc74" ownerguid="3b4b947a-f223-4c87-8839-9f6237cda9f6"> -<Abbreviation> -<AUni ws="en">7.3.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.536" /> -<DateModified val="2022-9-23 16:55:8.536" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to putting something down.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>85B Put, Place</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Put down</AUni> -</Name> -<Questions> -<objsur guid="62ff6d0a-b715-4b4d-8f1a-f6f98f24e591" t="o" /> -<objsur guid="13549774-3e96-448c-b4c8-c81d94ad755d" t="o" /> -<objsur guid="7081a0f5-4513-4a10-9fe5-a53cb8cc3c42" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="b7ef83dd-ae38-41cf-bd4c-513127be9bb4" ownerguid="37ebf319-eb0c-4818-8a45-c9a66628b338"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="b7f05176-ee03-441c-9784-71a63de87417" ownerguid="8fac2a47-5fa9-494e-9bae-2efc1f6bd9d6"> -<Gloss> -<AUni ws="en">OBJ</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6debf4e9-614a-4dc3-aaa7-0d6a27afc1a7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="b7f058af-9ce6-4dd0-b555-00526975300e" ownerguid="c16334a0-be29-4a1e-a870-4cb3f1df984d"> -<Abbreviation> -<AUni ws="en">7.5.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that describe a member of a group that is different or special.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Special</AUni> -</Name> -<Questions> -<objsur guid="cf06279f-4e13-4bf8-8ec6-d893e70938b3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="b7f4fd44-fa17-46a8-bdaf-d3399d6cb0ac" ownerguid="043d12ac-c76d-4b4c-813b-4ef7758c8085"> -<Abbreviation> -<AUni ws="en">7.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.549" /> -<DateModified val="2022-9-23 16:55:8.549" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to putting something in a place and not being able to find it again, or for when someone else moves something without your knowledge so that you cannot find it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Lose, misplace</AUni> -</Name> -<Questions> -<objsur guid="13686e4a-3900-472f-9c20-24cbc8623726" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="b7f64f45-98d1-4eac-9cd3-956bf92b1494" ownerguid="26d1d925-99fd-481c-8d85-8984a8eb331e"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="b7f996d9-47d7-41e8-abb1-f702c59dc9de" ownerguid="69b43685-e475-487b-8324-f666f6ff2c76"> -<Form> -<AUni ws="qvm-x-ach">tiya; tíía</AUni> -<AUni ws="qvm-x-acl">tiya; tíía</AUni> -<AUni ws="qvm-x-akh">tiya; tíía</AUni> -<AUni ws="qvm-x-akl">tiya; tíía</AUni> -<AUni ws="qvm-x-ame">tiya; tíía</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b7fae644-e755-43e6-8961-8febad6ef4bd" ownerguid="28174ef9-89d2-4059-bc8c-32fef000368b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">institute</AUni> -<AUni ws="es">instituto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0bca0245-7de5-42e2-8e82-2dfd684802be" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b7fb7aa2-e0da-4c9c-b612-201bd21ddb02" ownerguid="0e79435b-f5ff-4061-81ff-49557ba2aed4"> -<ExampleWords> -<AUni ws="en">associate (n), comrade, participant, partner, friend, coworker, colleague, acquaintance, ally, collaborator, fellow (student), age mate, affiliate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a person in a relationship?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b7feb027-4a84-438f-8b5e-5147b479f625" ownerguid="8a7fdd75-01dc-4d40-84ff-fa0484da3abb"> -<ExampleWords> -<AUni ws="en">violent, violently, vicious, brutal, savage, ferocious, rough, bloody, forcible, stormy, barbarous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something someone does that is violent?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b802bd6d-b05a-4c74-b73c-36370b14a854" ownerguid="f4e34394-ff52-4675-aa7b-feeaca45934e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="b80a8896-26f0-4277-acfa-6b80362ccf2a" ownerguid="7c03827f-0d7e-42d3-b2ae-23374e37dc6e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="b80da53d-b80a-4473-b821-56e97b1c5b9f" ownerguid="a1a48737-8d57-4702-9956-891c691d7b96"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mu; mo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mu; mo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="45846476-db8b-4639-bef8-780e6651a907" t="r" /> -</Morph> -<Msa> -<objsur guid="84097b64-d9df-441f-a9d3-d11d4b9d9ea0" t="r" /> -</Msa> -<Sense> -<objsur guid="788609d7-ea80-4813-aabb-8837acc21fd4" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="b80e241b-a177-4e2d-b12f-03c9df05c63e" ownerguid="b0905fa9-2f90-410b-8eb5-7c7944c4f0f9"> -<ExampleWords> -<AUni ws="en">erotic, pornographic, pornography, porn, adult, blue, dirty, steamy, raunchy, X-rated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words describe books and movies that are about sex?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b810259d-6f3f-4ae0-9a39-2e036ad66bb0" ownerguid="c2ded748-7ff9-4df9-9870-670c4b747eaa"> -<Form> -<AUni ws="qvm-x-ach">firma</AUni> -<AUni ws="qvm-x-acl">firma</AUni> -<AUni ws="qvm-x-akh">firma</AUni> -<AUni ws="qvm-x-akl">firma</AUni> -<AUni ws="qvm-x-ame">firma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b810bbab-5e04-4a80-98ce-d6f5e9ba378d" ownerguid="cf5c67a8-59c4-4f24-9ffb-85cb04e39d9c"> -<Form> -<AUni ws="qvm-x-ach">salteador</AUni> -<AUni ws="qvm-x-acl">salteador</AUni> -<AUni ws="qvm-x-akh">salteador</AUni> -<AUni ws="qvm-x-akl">salteador</AUni> -<AUni ws="qvm-x-ame">salteador</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b8110ae7-358a-458f-80f8-d8c38a6a9fb3" ownerguid="2bef8b66-9d06-4ecf-a6cf-0e664b90dd35"> -<Form> -<AUni ws="qvm-x-ach">shinti</AUni> -<AUni ws="qvm-x-acl">shinti; shinti; shinte</AUni> -<AUni ws="qvm-x-akh">shinti</AUni> -<AUni ws="qvm-x-akl">shinti; shinti; shinte</AUni> -<AUni ws="qvm-x-ame">shinti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b8151062-e521-403c-9509-bfcbc7112967" ownerguid="6ce98c1d-d86f-43b0-a401-9e2af0cf37a1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ff340606-6d3e-42da-afe4-d27e1aca3d89" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b81acce7-cb70-445e-bb37-93c432af45c3" ownerguid="a42db5b4-6317-4d3f-beff-cb92dbaca914"> -<ExampleWords> -<AUni ws="en">learning, answer, solution, information, conclusion, discovery, discipline, education, initiation, instruction, training</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to what is learned?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b8217dd0-c1c5-4912-b769-7bfd43a94302" ownerguid="823dcac2-74eb-4b72-9e17-75c34faaf1e4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="b8230dca-544a-408b-9972-810b743f00d3" ownerguid="77a30a6b-c141-416f-8100-8177350b049d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spit</AUni> -<AUni ws="es">escupir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="65b23cbe-3239-47d4-8fc5-8ce15fecef2b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b8251526-eed2-4ed2-a998-519ce7ca15ce" ownerguid="4d040b38-4fb4-4bf7-8372-0ca7819dc383"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b825ff80-353d-4e85-9118-f52740fc88bb" ownerguid="79b580ff-64a7-445b-abcb-b49b9093779c"> -<ExampleWords> -<AUni ws="en">shelter, barn, shed, corral, pen, stall, manger</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used of animal shelters and enclosures?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b828d8ad-cd61-41bb-86b7-a235816eb6dd" ownerguid="45d80a0b-dc9c-49ec-ba53-0031a75347c4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mast</AUni> -<AUni ws="es">mastil</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="62aecab8-0725-40d7-ae0b-00cef9683136" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b828fb35-8b6d-402b-853b-a1cc5222e0ca" ownerguid="3b0e81b6-a586-492d-8757-d84495a5631d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="b82a296c-7f7b-4b54-9a35-38b9c5482b35" ownerguid="09c10f22-64d6-4d20-ba2b-488ab8a46b67"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="a97b4b26-057d-43ff-9bd7-2b1957792d4a" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">fork</AUni> -<AUni ws="es">tenedor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a04a1673-c59c-4de4-83b4-6d86bc311414" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="b82c7ba0-9f4e-44da-bcd0-d30f5b224de5" ownerguid="101c16f8-ec76-4ec7-895a-fd814fef51dd"> -<Abbreviation> -<AUni ws="en">2.5.7.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.47" /> -<DateModified val="2022-9-23 16:55:8.47" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to medicine, types of medicine, and the application of medicine.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>6T Medicines</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Medicine</AUni> -</Name> -<OcmCodes> -<Uni>751 Preventive Medicine; 278 Pharmaceuticals</Uni> -</OcmCodes> -<Questions> -<objsur guid="cebe0a6b-c8c8-437b-9161-3baea03cf510" t="o" /> -<objsur guid="c9671ba6-e90a-46eb-8741-9d9030d6ea2c" t="o" /> -<objsur guid="0be52387-b2a7-4290-b9f1-52a8d569b84e" t="o" /> -<objsur guid="781b0141-91a4-494d-a886-63b46b60bee5" t="o" /> -<objsur guid="758b5043-6d7b-4f58-885d-20bf4f81fe63" t="o" /> -<objsur guid="7478e32d-4a6a-4e5e-896e-8a7b7a07f137" t="o" /> -<objsur guid="ea591d46-8408-4710-9af8-9189cf839046" t="o" /> -<objsur guid="970abc36-3952-4356-8b97-54088d58b93a" t="o" /> -<objsur guid="587fffab-517b-4d46-ba2a-c4b2252cb6e3" t="o" /> -<objsur guid="1d068b54-df9d-4d79-a13c-c7b4c2773f7f" t="o" /> -<objsur guid="88af8cd4-2824-43de-8068-9a08b4d7b9a3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoInflAffMsa" guid="b82cfe35-39fd-45ff-aeed-524a769cd259" ownerguid="2e3cdcdd-46bc-48c3-8aed-0541a5421c38"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="0eb1d65f-6889-40e2-a5ee-818feedf259c" t="r" /> -</Slots> -</rt> -<rt class="WfiMorphBundle" guid="b82fbf74-2144-4e54-a12c-690108739b87" ownerguid="42fc2fe1-46eb-4646-b011-d351d39083e2"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ypa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ypa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ypa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ypa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ypa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ed76c6da-f04a-47ec-9d43-af432768f6a0" t="r" /> -</Morph> -<Msa> -<objsur guid="89edf312-823b-4bd1-9b8e-7755813dda71" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="b8301711-721e-4841-8193-efcc546dea16"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">racu</AUni> -<AUni ws="qvm-x-acl">racu; racu; raco</AUni> -<AUni ws="qvm-x-akh">raku</AUni> -<AUni ws="qvm-x-akl">raku; raku; rako</AUni> -<AUni ws="qvm-x-ame">raku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*raku</AUni> -<AUni ws="qvm-x-acl">*raku</AUni> -<AUni ws="qvm-x-akh">*raku</AUni> -<AUni ws="qvm-x-akl">*raku</AUni> -<AUni ws="qvm-x-ame">*raku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.246" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cf28da09-74cc-44f8-9f26-6ccb8db1b7da" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*raku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8095133d-2251-4076-bb90-27d8ab18d96c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9e30ddc7-57fb-424d-bae9-86c213864e92" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *raku 
\entryTyp root 
\gENG thick 
\gSPN grueso 
\e *raku 
\c N0 
\ach racu 
\akh raku 
\acl racu / _# 
\acl racu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl raco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl raku / _# 
\akl raku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl rako +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame raku 
\mcc *raku 
\i JER 52.21 Rakunnami karqan pitsqa metro pulannoq.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="b837260a-3dc3-4b7c-bf3c-36ddbbc3e118" ownerguid="aad2eee6-db17-49f3-bbc7-3fe7f26c4553"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">a.spice</AUni> -<AUni ws="es">chincho.molido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ba77ba76-1642-4469-b5d7-9c362f835f38" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b8395b6c-b127-49a8-92be-cd39e3debd65" ownerguid="8315264a-c9b7-4b27-93d0-d0446bc78a1c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="b83a9c4f-fc00-486c-82d1-e4fd0cc87e35" ownerguid="94b58705-8a11-40a4-bef3-496594c01c13"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="b83e66f0-f907-42ff-b43b-34d85214708d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cabala</AUni> -<AUni ws="qvm-x-acl">cabala</AUni> -<AUni ws="qvm-x-akh">cabala</AUni> -<AUni ws="qvm-x-akl">cabala</AUni> -<AUni ws="qvm-x-ame">cabala</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cabalar</AUni> -<AUni ws="qvm-x-acl">+cabalar</AUni> -<AUni ws="qvm-x-akh">+cabalar</AUni> -<AUni ws="qvm-x-akl">+cabalar</AUni> -<AUni ws="qvm-x-ame">+cabalar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.1" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3b0490a4-ee2f-4179-bbe8-4a0f808a04b1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cabalar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="86cf087d-6033-42a6-bb97-6a97b822438d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e3ac167a-3a6d-4b0d-bbc2-f97c51a26183" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cabalar 
\entryTyp root 
\gENG 
\gSPN completar 
\e +cabalar 
\c V2 
\ach cabala 
\akh cabala 
\acl cabala 
\akl cabala 
\ame cabala</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="b83ee7ed-3a1b-4d16-b87b-6107ef09f390" ownerguid="c33687dc-229a-4a5c-98f2-642d79a82f29"> -<Form> -<AUni ws="qvm-x-ach">altus; altoos</AUni> -<AUni ws="qvm-x-acl">altus; altoos</AUni> -<AUni ws="qvm-x-akh">altus; altoos</AUni> -<AUni ws="qvm-x-akl">altus; altoos</AUni> -<AUni ws="qvm-x-ame">altus; altoos</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b8403064-c76e-43cf-956d-d9681db3bfbd" ownerguid="e1fbb9d1-56eb-4a40-af91-9d31f6c475fb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">principal</AUni> -<AUni ws="es">director</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b423f042-e2e0-4737-98d8-a45205e5e634" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="b84367e5-ae2c-4ee4-8e39-97bee9d19f9f" ownerguid="2b65d33b-e7f4-4772-88e2-2ea5722577d6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuna</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuna</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuna</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuna</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuna</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f236a19a-86ce-4599-91f5-fb178488e065" t="r" /> -</Morph> -<Msa> -<objsur guid="0851fe14-f99e-4e06-befc-3a76b044ea37" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="b843bb9f-565f-4e78-be1c-f96fadc77d8a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">la:ja</AUni> -<AUni ws="qvm-x-acl">la:ja</AUni> -<AUni ws="qvm-x-akh">la:ja</AUni> -<AUni ws="qvm-x-akl">la:ja</AUni> -<AUni ws="qvm-x-ame">la:ja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+laja</AUni> -<AUni ws="qvm-x-acl">+laja</AUni> -<AUni ws="qvm-x-akh">+laja</AUni> -<AUni ws="qvm-x-akl">+laja</AUni> -<AUni ws="qvm-x-ame">+laja</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.430" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2d453f5a-84f3-485b-8f5a-2a3e53764bda" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+laja</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="107c735d-7186-41d4-9129-0c917f221a1e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2dd6b799-4e64-43f0-a4c4-5ec802342278" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +laja 
\entryTyp root 
\gENG flat.rock 
\gSPN laja 
\e +laja 
\c N0 
\ach la:ja 
\akh la:ja 
\acl la:ja 
\akl la:ja 
\ame la:ja</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="b8442db8-9063-4ebe-a4c5-09b58c558aba" ownerguid="c1ee74c5-dd40-4e3f-85d1-b9fb87302aac"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="bb2ae43f-7c7b-45e4-b7f1-d4bbf188780e" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="916fd2b7-64f6-48f8-99b7-949dc68e80d9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="b844d2f8-d3ef-4605-b038-8bc0a2cff0af" ownerguid="7648040b-0aa5-4d9a-8f13-ffd066b81602"> -<Abbreviation> -<AUni ws="en">8.2.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.589" /> -<DateModified val="2022-9-23 16:55:8.589" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being tall--a word describing something that is big from the top to the bottom.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>23K Grow, Growth; 81B High, Low, Deep</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Tall</AUni> -</Name> -<Questions> -<objsur guid="8b291739-2712-4277-9b83-3156f11fd046" t="o" /> -<objsur guid="ed1a42c5-9d0b-49a6-8bca-8b89af5731be" t="o" /> -<objsur guid="bd7877fb-0825-4532-b35e-3591946a2c59" t="o" /> -<objsur guid="178db256-29ff-4f56-a220-fbf316d529a8" t="o" /> -<objsur guid="85f4ea3e-e02a-4a1e-909a-01d7e6046bd1" t="o" /> -<objsur guid="0d064224-152a-4079-937f-9082fe00032b" t="o" /> -<objsur guid="6b02e987-e30f-4b39-9d67-65902d1af456" t="o" /> -<objsur guid="ca4db0c7-b0b7-4f96-82d1-4f76ee43725d" t="o" /> -<objsur guid="8de7fd68-5c43-4279-9f78-f29ca843261b" t="o" /> -<objsur guid="c74d45e0-3b0b-46c2-8d0c-a1c8d513acb7" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="b8466559-5efe-44f7-b237-d14e81584d7d" ownerguid="34d60dc3-c587-48dc-8401-d64a0ec1304c"> -<Form> -<AUni ws="qvm-x-ach">logla</AUni> -<AUni ws="qvm-x-acl">logla</AUni> -<AUni ws="qvm-x-akh">loqla</AUni> -<AUni ws="qvm-x-akl">loqla</AUni> -<AUni ws="qvm-x-ame">luqla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b846faf0-2d07-40ac-887c-df39d7236138" ownerguid="8a8c0973-3791-4d9f-99b6-58923b88ef41"> -<Form> -<AUni ws="qvm-x-ach">tsipa</AUni> -<AUni ws="qvm-x-acl">tsipa</AUni> -<AUni ws="qvm-x-akh">tsipa</AUni> -<AUni ws="qvm-x-akl">tsipa</AUni> -<AUni ws="qvm-x-ame">tsipa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b847efe5-ec07-4921-a3f8-1d59ad739c80" ownerguid="0bbe1739-e0b4-442e-b69c-02a0ea20d790"> -<ExampleWords> -<AUni ws="en">drown</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to drowning?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b84a72ea-8527-4043-9548-c0904d3eaea4" ownerguid="d5c12a8b-109d-4f0e-8167-f881484d021a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hand.over</AUni> -<AUni ws="es">entregar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fe9b8e02-b4fe-4369-b100-965f69b8a580" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b8587522-f7e7-4031-b389-5c59c32b62af" ownerguid="d853597b-f3ed-470b-b6dd-8fe93b8e43eb"> -<ExampleWords> -<AUni ws="en">quiet, peace and quiet, hush</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a place or situation that is quiet?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b859f3aa-edf8-4ff7-b31f-51b84e74a4fc" ownerguid="193257cf-2e65-4773-8f1e-ed20c3ca484c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">church</AUni> -<AUni ws="es">iglesia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="56cfc0db-0a07-40df-9cab-428bf6a2572f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="b85aa310-0382-4674-9e65-5b189fcb3cf9" ownerguid="e2143cef-5297-4799-a37e-7b298a8d56d3"> -<Form> -<AUni ws="qvm-x-ach">rüda</AUni> -<AUni ws="qvm-x-acl">rüda</AUni> -<AUni ws="qvm-x-akh">rüda</AUni> -<AUni ws="qvm-x-akl">rüda</AUni> -<AUni ws="qvm-x-ame">rüda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b85bd61e-d633-4ca5-8a03-02ed29a5c4bf" ownerguid="64630f43-f9e4-40eb-a4db-b6a00156b5e1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="62b2defb-0a19-4959-b140-81eb9de970d5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="b85d785c-e1d2-440e-a940-da6a62139777" ownerguid="dbcf751a-eec0-4096-ac3c-d3ae3b8ba7f1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">coast</AUni> -<AUni ws="es">costa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e92b2777-97f9-4ca2-813c-cd185507f0e1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b85f4434-bc4e-40e5-93b1-d3e9d3b31fbb" ownerguid="b3745f13-3632-4f13-b0cc-a74c51f8f2a1"> -<ExampleWords> -<AUni ws="en">tidal wave, tsunami</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a large wave caused by an earthquake?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b8607306-f586-4f9d-83a3-3250c0ee2100"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gashpa</AUni> -<AUni ws="qvm-x-acl">gashpa</AUni> -<AUni ws="qvm-x-akh">qashpa</AUni> -<AUni ws="qvm-x-akl">qashpa</AUni> -<AUni ws="qvm-x-ame">qashpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qashpa.r</AUni> -<AUni ws="qvm-x-acl">*qashpa.r</AUni> -<AUni ws="qvm-x-akh">*qashpa.r</AUni> -<AUni ws="qvm-x-akl">*qashpa.r</AUni> -<AUni ws="qvm-x-ame">*qashpa.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.134" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="902689a6-e6cf-4c76-b8de-7e47c3c997c4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qashpa.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="45bdf85a-69d5-4df3-bd75-00c024807a00" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="70df399d-c45a-4a4e-b358-92239e830833" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qashpa.r 
\entryTyp root 
\gENG 
\gSPN 
\e *qashpa.r 
\c R0 
\ach gashpa 
\akh qashpa 
\acl gashpa 
\akl qashpa 
\ame qashpa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="b8637efb-05ba-4934-b728-dfe32f3c262a" ownerguid="b0e39b97-5304-4789-a7f4-f8daac52089e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="b868b0ae-af5b-431c-8739-ee563065b80e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cla:ra</AUni> -<AUni ws="qvm-x-acl">cla:ra</AUni> -<AUni ws="qvm-x-akh">cla:ra</AUni> -<AUni ws="qvm-x-akl">cla:ra</AUni> -<AUni ws="qvm-x-ame">cla:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+clara</AUni> -<AUni ws="qvm-x-acl">+clara</AUni> -<AUni ws="qvm-x-akh">+clara</AUni> -<AUni ws="qvm-x-akl">+clara</AUni> -<AUni ws="qvm-x-ame">+clara</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.132" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fd797e53-bb9a-40c0-835c-d752ad62aab6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+clara</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="34ef2d61-7637-4d35-ab8f-0110eec93359" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="52cf2c08-9ba1-40a2-8fe6-ff4bd833c3b7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +clara 
\entryTyp root 
\gENG white.of.egg 
\gSPN yema 
\e +clara 
\c N0 
\ach cla:ra 
\akh cla:ra 
\acl cla:ra 
\akl cla:ra 
\ame cla:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b86974ed-132e-4fb0-8fe9-3db1d6647e59" ownerguid="3fbe3ea6-3ad3-430f-ab67-2d9c9f852c61"> -<ExampleWords> -<AUni ws="en">current, present, present-day</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a situation that exists now?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b86a6cbe-ffa6-4f8d-a482-7fe0fa11d2c1" ownerguid="2861a719-9482-4b0c-8564-d96a9af2ae05"> -<Form> -<AUni ws="qvm-x-ach">waryana</AUni> -<AUni ws="qvm-x-acl">waryana</AUni> -<AUni ws="qvm-x-akh">waryana</AUni> -<AUni ws="qvm-x-akl">waryana</AUni> -<AUni ws="qvm-x-ame">waryana</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b8729140-d69a-46e9-bfd6-479b9372318a" ownerguid="744d1402-05f5-4491-9c15-a5af03595edb"> -<ExampleWords> -<AUni ws="en">miscreant, reprobate (n), scoundrel, sinner, black sheep, villain, knave</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a bad person?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b873091c-0244-4167-9708-81fafbb84983" ownerguid="b1688009-474d-4e2e-a137-acc1e32a435f"> -<ExampleWords> -<AUni ws="en">thicken, get thick</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something becoming thick?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b87536bb-b406-4935-9ec9-5ca1fb5ae57b" ownerguid="50ab3705-a81e-4fcc-b3ae-95c075966f69"> -<ExampleWords> -<AUni ws="en">fill, flow in, inflow, infuse, infusion, run into</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to water moving into something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b8765f40-c14a-45e5-bad4-ed1a2eb73a39" ownerguid="fa2f39bd-7130-4cea-9eaa-efaad4e9f622"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b881a995-feb6-48f2-bb45-9d0d396f33a4" ownerguid="02b6da2b-fae3-49f4-83f0-fd014024e117"> -<ExampleWords> -<AUni ws="en">contradict, speak in opposition to, disagree with, speak against, deny, dispute, argue against</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to contradicting what someone has said?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b881fa31-3d60-4455-bb33-36a84e5bb79d" ownerguid="d2b61570-af54-44f3-846e-6d7ec9d3737f"> -<ExampleWords> -<AUni ws="en">foyer, sanctuary, meeting hall, worship center, baptistery, classroom, pastor's study, vestibule, belfry, choir loft, balcony</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What kinds of rooms are there in a religious building (church, mosque, synagogue, temple)?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b8849c2f-9a10-45f6-ab36-a14ea14d645f" ownerguid="350667ee-592b-47af-adca-14e820ec58cf"> -<ExampleWords> -<AUni ws="en">no, none, not, nay, uh-uh, no one, nothing, never, nowhere, no indeed, by no means, certainly not, most certainly not, absolutely not, shake your head, negative</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to negate the truth of something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b885c4f5-389c-4023-b3e8-9d2dd562fb70" ownerguid="1884cb09-d450-4435-9067-dbfbfff707e0"> -<Form> -<AUni ws="qvm-x-ach">pëchu</AUni> -<AUni ws="qvm-x-acl">pëchu; pëchu; pëcho</AUni> -<AUni ws="qvm-x-akh">pëchu</AUni> -<AUni ws="qvm-x-akl">pëchu; pëchu; pëcho</AUni> -<AUni ws="qvm-x-ame">pëchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="b888d7d3-4531-4083-a033-866a673a58ce"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">chayarqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="b88a1d58-697a-4f0c-8574-66086e8ab198" ownerguid="f786786c-783e-4736-ae68-ed1a8dfd8a53"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="b88ec50e-f199-4716-90cc-fd3de0318576" ownerguid="7d9aad89-daf4-42b3-9495-1c64d90b075a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">levantar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="df07b355-d6c3-483f-9e5a-0c9b43c4ede1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b88ef553-ebca-4660-ae86-7b9b1e911b4a" ownerguid="01b30761-2ba2-4a44-ade8-a72dd70de7b6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="b88f97b6-e97d-46e3-90c3-8e5e4269edfd" ownerguid="357f6258-1d36-4306-96ef-f556d794c7e4"> -<Form> -<AUni ws="qvm-x-ach">shapu</AUni> -<AUni ws="qvm-x-acl">shapu; shapo</AUni> -<AUni ws="qvm-x-akh">shapu</AUni> -<AUni ws="qvm-x-akl">shapu; shapo</AUni> -<AUni ws="qvm-x-ame">shapu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b8903407-2b56-4d28-b9e5-0258dd757c57" ownerguid="671eea84-1073-47da-bcf2-07bf99e93a1f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 N1/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">MANY</AUni> -<AUni ws="es">VAR</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ffd00358-88ae-49b0-96b8-10366deaba2f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiGloss" guid="b890cd6a-4e9d-4950-835d-5d91b6722555" ownerguid="b2e3c568-8a97-4728-88c4-370cd0b0a26a"> -<Form> -<AUni ws="en">capitol</AUni> -<AUni ws="es">capital</AUni> -</Form> -</rt> -<rt class="CmDomainQ" guid="b8916b28-a75a-4ded-a4c3-ca82092a614f" ownerguid="de544ebd-9f94-4831-8887-944c3bbbc254"> -<ExampleWords> -<AUni ws="en">first day of the week (Sunday), second day of the week (Monday), midweek (Wednesday), Sabbath (Saturday), the Lord's day (Sunday)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What other terms are used for the days of the week?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b891ea66-0cd8-469c-86a5-10a5096c826c" ownerguid="52b04e15-7062-4fb2-9eaa-4fe8726f302a"> -<ExampleWords> -<AUni ws="en">refuse to greet, snub, ignore</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a refusal to greet someone?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="b894ee25-9815-4221-b387-dc1822c999b9" ownerguid="0c5e2310-1d3a-4460-987f-dfdfecc5090d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">g</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">g</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">q</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">q</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">q</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2077e726-cf37-4913-b54c-2d034d4883b4" t="r" /> -</Morph> -<Msa> -<objsur guid="cc4f521e-5e38-4217-aa16-46da99d423ec" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="b894f610-ef89-4f76-a906-4718d51d4c59" ownerguid="f2022802-4f43-4fa2-8c58-33a8b9e75895"> -<ExampleWords> -<AUni ws="en">add to, strengthen, swell, augment, supplement</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to increasing something by adding to it?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b8956636-6231-4d9d-99c3-f5997354efad" ownerguid="054f479c-f87a-4ee3-bc51-b80249cde0ce"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b8984590-fc3e-43d8-9ee4-65db06a58880" ownerguid="f0f3c371-166e-4a66-849f-60d6fa7ad889"> -<ExampleWords> -<AUni ws="en">recite</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to saying a poem?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b899274c-ff53-4c85-b5d0-d7bfd17db946" ownerguid="6efaac57-95a7-4aa7-9c6d-9df656a8e349"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="e172f2cc-d1a0-48e6-b2cc-928f49b1b477" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="13b51248-193a-4b3c-a735-2ead7b13963a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b89a011d-318d-4704-881f-46a0905ac84b" ownerguid="44dc42e4-e9c7-4aa9-ac9b-1008385244b1"> -<ExampleWords> -<AUni ws="en">fatherhood, motherhood, parenthood</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the state of being a parent?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b89aa797-f6f9-4394-addf-23606af935cd" ownerguid="50db27b5-89eb-4ffb-af82-566f51c8ec0b"> -<ExampleWords> -<AUni ws="en">animate (v), bring to life, give life to, give breath to, breathe life into, vivify</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to causing someone to be alive?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b89caa27-9fcb-43ee-a8fd-78066cdab07b" ownerguid="71c0ef32-d1cc-4af5-9276-2c60abde2138"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b8a09962-d51b-4121-9144-31a95359adbf" ownerguid="fc170f70-520e-4f3e-b8b8-98e4b898fd24"> -<ExampleWords> -<AUni ws="en">rim, lip, brim</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the edge of a cup or plate?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b8a19f86-3533-4a5e-9c3b-7893cecfb5ba" ownerguid="16de6eab-afab-4ba4-a279-cf0ba4d7c9e6"> -<ExampleWords> -<AUni ws="en">spotted, striped, camouflaged, flecked, speckled, piebald, dappled, star, blaze, brindled, calico, tabby, pinto</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used to describe the markings on an animal?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b8a2d2df-84dd-48cf-ab8e-e503d4939cf5" ownerguid="98830eda-3997-4f4a-9ba4-664df669e7e2"> -<ExampleWords> -<AUni ws="en">fortify, entrench, strengthen, dig in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to making a fort?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b8a312be-6a2b-4da5-86a1-8e9e20dbf199" ownerguid="2f11a76b-9af1-4544-b0f0-f5749959c73c"> -<Form> -<AUni ws="qvm-x-ach">usya</AUni> -<AUni ws="qvm-x-acl">usya</AUni> -<AUni ws="qvm-x-akh">usya</AUni> -<AUni ws="qvm-x-akl">usya</AUni> -<AUni ws="qvm-x-ame">usya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b8a93c97-a030-445f-b9c2-8a9fcb45f7c3" ownerguid="08f53049-0abc-43c7-89fa-c6907fab1eae"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">itch</AUni> -<AUni ws="es">dar.comezón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e4f52f46-46a4-4fba-92a8-ec503403afb9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b8ab9814-b085-4695-99e6-f21035cbc856" ownerguid="df2ee830-0668-43d7-8a32-e2fd3e7b31d8"> -<Question> -<AUni ws="en">(2) past: the situation occurred before the moment of speech.</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b8abfad7-d129-4ae4-9cc4-226ebb0e7647" ownerguid="1c058512-9c4d-47ac-b13a-4d91161d442a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">atraso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="02340639-5072-448e-a414-78dcb2e26e0c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b8afd8d3-acdc-4d1c-a984-91ea9d31afaf" ownerguid="26b97047-edb1-44e9-8c7b-463de9cfbe78"> -<ExampleWords> -<AUni ws="en">baa, bleat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What sounds do sheep make?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b8b05a94-147d-4859-987b-adaa645086b8" ownerguid="ce18ca65-970a-46e9-abf2-75964f7c6196"> -<Form> -<AUni ws="qvm-x-ach">tulma</AUni> -<AUni ws="qvm-x-acl">tulma</AUni> -<AUni ws="qvm-x-akh">tulma</AUni> -<AUni ws="qvm-x-akl">tulma</AUni> -<AUni ws="qvm-x-ame">tulma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="b8b2c795-ce1b-4f04-84f5-7402f3b7244d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mira</AUni> -<AUni ws="qvm-x-acl">mira</AUni> -<AUni ws="qvm-x-akh">mira</AUni> -<AUni ws="qvm-x-akl">mira</AUni> -<AUni ws="qvm-x-ame">mira</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mira</AUni> -<AUni ws="qvm-x-acl">*mira</AUni> -<AUni ws="qvm-x-akh">*mira</AUni> -<AUni ws="qvm-x-akl">*mira</AUni> -<AUni ws="qvm-x-ame">*mira</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.446" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6007cee7-7ef7-4d13-a6ae-69c92d7349f7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mira</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d4461753-e842-4052-b48b-00d666519c45" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4561ebe9-c3ca-4830-9f2e-a5fcce0da953" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mira 
\entryTyp root 
\gENG multiply 
\gSPN reproducir 
\e *mira 
\c V1 
\ach mira 
\akh mira 
\acl mira 
\akl mira 
\ame mira</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="b8b512d8-24d3-441c-aa31-e9eceac8a979" ownerguid="fe542788-f41e-4106-95b3-7257792896b7"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="b8ba0162-1a22-40e5-8df7-64ce4cfd78cc" ownerguid="3485b6a2-2d95-4a1a-99fe-3c64b221bad2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gossiper</AUni> -<AUni ws="es">chismoso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6d633df3-74b7-4087-92e5-95ff8214325f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="b8bc2a9f-5839-4462-a733-aa02d69fdc19"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">matanca</AUni> -<AUni ws="qvm-x-acl">matanca</AUni> -<AUni ws="qvm-x-akh">matanka</AUni> -<AUni ws="qvm-x-akl">matanka</AUni> -<AUni ws="qvm-x-ame">matanka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*matanka.n</AUni> -<AUni ws="qvm-x-acl">*matanka.n</AUni> -<AUni ws="qvm-x-akh">*matanka.n</AUni> -<AUni ws="qvm-x-akl">*matanka.n</AUni> -<AUni ws="qvm-x-ame">*matanka.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.364" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a6f7bb84-c0ad-4d3e-bc11-c74057bd554d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*matanka.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f0a3f9d6-62b8-477a-8c17-67f7304c7da8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cff1e330-3d57-47e3-91b0-c77a4b9058fe" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *matanka.n 
\entryTyp root 
\gENG nape 
\gSPN nuca 
\e *matanka.n 
\c N0 
\ach matanca 
\akh matanka 
\acl matanca 
\akl matanka 
\ame matanka</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="b8c0790f-19ad-403a-a150-224d326b6e2a" ownerguid="a0da53a2-5caf-444d-aeb4-5c0799f72939"> -<Form> -<AUni ws="qvm-x-ach">waqui</AUni> -<AUni ws="qvm-x-acl">waqui; waqui; waque</AUni> -<AUni ws="qvm-x-akh">waki</AUni> -<AUni ws="qvm-x-akl">waki; waki; wake</AUni> -<AUni ws="qvm-x-ame">waki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="b8c444ec-e0db-4f80-8a7f-cc6812b0a76f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chi:na</AUni> -<AUni ws="qvm-x-acl">chi:na</AUni> -<AUni ws="qvm-x-akh">chi:na</AUni> -<AUni ws="qvm-x-akl">chi:na</AUni> -<AUni ws="qvm-x-ame">chi:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+china.n</AUni> -<AUni ws="qvm-x-acl">+china.n</AUni> -<AUni ws="qvm-x-akh">+china.n</AUni> -<AUni ws="qvm-x-akl">+china.n</AUni> -<AUni ws="qvm-x-ame">+china.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.313" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3563914c-9058-480c-b767-a5dbf078fd47" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+china.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="752e8607-77d9-4c86-bce3-b9c14e3aabfd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a67ec645-deae-4750-b3dc-a519519f5c15" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +china.n 
\entryTyp root 
\gENG 
\gSPN 
\e +china.n 
\c N0 
\ach chi:na 
\akh chi:na 
\acl chi:na 
\akl chi:na 
\ame chi:na</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="b8c56d0d-e2b8-4a4d-a088-1d569a1f5292" ownerguid="0f61c1f8-abee-45c1-a8e6-768b61bc0194"> -<Form> -<AUni ws="qvm-x-ach">demandu; demando</AUni> -<AUni ws="qvm-x-acl">demandu; demandu; demando</AUni> -<AUni ws="qvm-x-akh">demandu; demando</AUni> -<AUni ws="qvm-x-akl">demandu; demandu; demando</AUni> -<AUni ws="qvm-x-ame">demandu; demando</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b8c5d4b1-e2f7-430a-aaf3-61496cc2d13b" ownerguid="36ad58e3-ade7-49b9-9922-de0b5c3f13c3"> -<ExampleWords> -<AUni ws="en">ingredient</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to ingredients?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b8ca097b-c514-488c-b99c-e7658b4a0cc7" ownerguid="4651aef1-e18f-481e-9c3e-d9dfff4a6b51"> -<ExampleWords> -<AUni ws="en">miss, want to see someone, feel lonesome, long for someone</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to feeling lonely because someone you love is not there?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b8ce888e-c0c8-4f8e-befc-64d02c73d2e6" ownerguid="2a57fa30-ee20-4db8-89d8-92b821b131eb"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="b8ced0aa-cbcf-46e5-bbd5-8a3ef6423817" ownerguid="3e48dcd9-21da-40ac-b0f9-1c0cb94ebcb5"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b8cff0eb-a739-4c71-84b5-0a559e2e2504" ownerguid="1b0270a5-babf-4151-99f5-279ba5a4b044"> -<ExampleWords> -<AUni ws="en">cell, cellular, chromosome, protoplasm</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to cells?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b8d28a68-ef19-4ff1-8256-2cd784963408" ownerguid="d9b1216f-1802-4aee-b08b-4158c3398bb3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="b8d2fdb9-22ea-4040-8abb-aeeff0399f23" ownerguid="1c3c8af0-56b9-4617-862e-21f39b388606"> -<Abbreviation> -<AUni ws="en">2.6.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to killing someone--to cause someone to die.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>20D Kill</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Kill</AUni> -</Name> -<OcmCodes> -<Uni>762 Suicide</Uni> -</OcmCodes> -<Questions> -<objsur guid="9d88ab7e-8fdb-4e25-8895-6638aecb3df7" t="o" /> -<objsur guid="cbb70ec5-0baa-4d99-8979-9ae7bda7602d" t="o" /> -<objsur guid="475bcaba-9ee4-447e-95f3-b1d3737a455d" t="o" /> -<objsur guid="71d8678b-5155-44ce-a168-c63eadd42172" t="o" /> -<objsur guid="c54fdce3-53df-401b-b652-4d97417f7836" t="o" /> -<objsur guid="610ef6e9-6eb7-488f-bbf0-44270d21a08c" t="o" /> -<objsur guid="5a9ef92c-9fe8-4633-ab0c-f091189d59d4" t="o" /> -<objsur guid="d6b38863-d29a-4045-ba27-9f8a982928ed" t="o" /> -<objsur guid="6a2b6f6e-92b5-4114-ad32-ffc62046ffd8" t="o" /> -<objsur guid="997e3c5a-fa22-41ca-9852-bfc7f14fce21" t="o" /> -<objsur guid="8f2ac1af-898e-4d3a-861d-ef8cca323b59" t="o" /> -<objsur guid="69573ee5-db0f-4fef-adcb-6a9a0c560266" t="o" /> -<objsur guid="c618a3d2-1f31-43c3-afca-637fc6747477" t="o" /> -<objsur guid="c3362e39-102b-41d8-920f-969b0102cce6" t="o" /> -<objsur guid="39870854-1ee6-43e5-b229-aecf50e0b985" t="o" /> -<objsur guid="d81a31a1-2318-4746-8024-791a1e020f71" t="o" /> -<objsur guid="7984b8dd-f9ba-40da-97e3-9c88cf247507" t="o" /> -<objsur guid="2aeb03cc-4ff5-4664-9467-75d9b3d0ed86" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="b8d2fff3-cfa6-40d1-b776-f00ba9bfda6c" ownerguid="af5bcf27-56e2-4072-b321-30a31b58af78"> -<ExampleWords> -<AUni ws="en">pick, press, juice, fruit juice</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to growing fruit?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b8d88fb5-9c5c-409e-8f89-56469efe86a0" ownerguid="8c7da1d1-d7d7-470c-b6a3-edefb0e9a4d2"> -<ExampleWords> -<AUni ws="en">shout, speak loudly, yell, scream, talk in a loud voice, holler, call out, project your voice, aloud, exclaim, exclamation, vociferate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to speaking loudly?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b8db0ab4-d7e4-45c0-afa0-3e2c5cd2149c" ownerguid="fcc24831-313b-462b-8333-73ca813d4f36"> -<Form> -<AUni ws="qvm-x-ach">casäca</AUni> -<AUni ws="qvm-x-acl">casäca</AUni> -<AUni ws="qvm-x-akh">casäca</AUni> -<AUni ws="qvm-x-akl">casäca</AUni> -<AUni ws="qvm-x-ame">casäca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="b8dcf1ca-9c88-4195-8c2c-779205ee9aca" ownerguid="75ee8281-5299-4cd3-a5b8-cd1100883e97"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="b8dd9532-e364-4eef-a1ff-162e489e546b" ownerguid="8b7f1eb3-f7a5-43f3-b04a-904df3352d0c"> -<Form> -<AUni ws="qvm-x-ach">patrón; patron</AUni> -<AUni ws="qvm-x-acl">patrón; patron</AUni> -<AUni ws="qvm-x-akh">patrón; patron</AUni> -<AUni ws="qvm-x-akl">patrón; patron</AUni> -<AUni ws="qvm-x-ame">patrón; patron</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="b8deea93-c45e-4ae0-bcc7-bd45c904fba8" ownerguid="1bd5d8d9-c816-45aa-8269-98fa423cb451"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="b8def1a6-0471-4c89-a784-3844950ceff6" ownerguid="7963a558-b7dd-45dd-b347-8f9cce1d7aa9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="b8df8589-d03c-4e6d-bbeb-4f24fbf6a1dc" ownerguid="82a4ae36-8e70-4c0d-8144-ad9fc3c0e04f"> -<Abbreviation> -<AUni ws="en">8.3.1.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.599" /> -<DateModified val="2022-9-23 16:55:8.599" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing a vertical orientation in relation to the ground. A person is vertical when he is standing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Vertical</AUni> -</Name> -<Questions> -<objsur guid="d71996c9-f5bb-4972-91c0-afc35e8ca040" t="o" /> -<objsur guid="92439677-50c9-4f1a-9800-43a2ff460092" t="o" /> -<objsur guid="e72c03a1-6675-440c-aa29-43abf870e520" t="o" /> -<objsur guid="d415d95e-4de5-4dc2-8ab9-9aff5652b607" t="o" /> -<objsur guid="7b53099f-7922-4664-a1b0-2379ec8c54e5" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="8841af5e-74e6-4c5d-a313-ba9aa7fdb78b" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="b8e47f02-8f30-4064-b742-0791b681a28e" ownerguid="4b1e9d5e-4e91-4170-a283-3f520744657b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="b8e633f7-ca67-40cb-84e7-8b42887d161b" ownerguid="541dfa10-bf97-4713-a534-9cbcc7f66bc9"> -<Abbreviation> -<AUni ws="en">3.2.5.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.103" /> -<DateModified val="2022-9-23 16:55:8.103" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a set of beliefs about truth.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>11E Philosophical</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Philosophy</AUni> -</Name> -<OcmCodes> -<Uni>100 Orientation</Uni> -</OcmCodes> -<Questions> -<objsur guid="eea47775-9c96-4f35-b6c1-e80de498fa7b" t="o" /> -<objsur guid="d6bf0db2-11ff-432f-bd33-d9ab088be302" t="o" /> -<objsur guid="78f7f0c3-f15d-413e-87b5-97c94151d9b5" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="b8e66bb4-140c-45b4-89ce-d9a77b9e5d21" ownerguid="69541573-f845-4e77-91f6-1e3551fc6c82"> -<Abbreviation> -<AUni ws="en">9.7.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.731" /> -<DateModified val="2022-9-23 16:55:8.731" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the proper names of cities, towns, and villages in the language area. Include the names of important cities outside of the language area if your language has a special name for the city or a different pronunciation for it. It might be good to use a map for this. In fact it is good to include a map of the language area in a published dictionary. If your language area is very large, there may be hundreds or thousands of cities, towns, and villages. In this case you will have to decide which should be included in the dictionary. Or you could decided to list them in a special section.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Names of cities</AUni> -</Name> -<Questions> -<objsur guid="a5bc2adb-6fcb-4b12-8fe8-9e4921745aef" t="o" /> -<objsur guid="61eba015-38b1-4d8b-b91e-b38d944a8225" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="b8e93895-c468-41e2-8633-6539f0e13366" ownerguid="864f3816-41b6-4881-bf14-235e6301e8bb"> -<Form> -<AUni ws="qvm-x-ach">buen</AUni> -<AUni ws="qvm-x-acl">buen</AUni> -<AUni ws="qvm-x-akh">buen</AUni> -<AUni ws="qvm-x-akl">buen</AUni> -<AUni ws="qvm-x-ame">buen</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b8e9e8e1-4fac-43ee-9cc6-2888894e9f1b" ownerguid="5caafec8-c8f6-4d4f-9e6e-eb75154e76e2"> -<Form> -<AUni ws="qvm-x-ach">compädri; compädri</AUni> -<AUni ws="qvm-x-acl">compädri; compädri; compädre</AUni> -<AUni ws="qvm-x-akh">compädri; compädri</AUni> -<AUni ws="qvm-x-akl">compädri; compädri; compädre</AUni> -<AUni ws="qvm-x-ame">compädri; compädri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="b8ea7b65-4676-49da-814b-7e2fb59de2ee" ownerguid="393b5f04-972d-41e2-89b7-d08b3dd3ae70"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="b8eca66c-1520-426e-9395-8b5bf2bd1d43" ownerguid="e823a2bb-e8dd-4710-93ae-36eecb504aa9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b8edd564-2e8f-4fff-ad6b-888b05b26904" ownerguid="e76227e8-4a04-4fbd-a16e-5baa3d9e97a9"> -<ExampleWords> -<AUni ws="en">sting, collect nectar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What do insects do?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b8eecdd6-e055-4109-971d-5d9bc10368ac" ownerguid="2ccab97a-fb98-4054-a29b-e5ceac8ca1b4"> -<ExampleWords> -<AUni ws="en">prayer, singing hymns, praising God</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What types of actions make up worship?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b8f215d2-5eea-481e-8576-54fc540ca44e" ownerguid="8aceebe4-58c3-4926-a7a0-0264f83b8357"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">complain</AUni> -<AUni ws="es">murmurar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f02b26b0-10d2-4c7c-8ca8-0c145e1bd9fe" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="StTxtPara" guid="b8f23190-e3ef-4ce9-a41b-ab593a36b7d2" ownerguid="bf3f1d61-0fb7-4d38-ad7b-0e74c2659ac5"> -<ParseIsCurrent val="True" /> -</rt> -<rt class="CmSemanticDomain" guid="b8f59ddd-48de-4b3d-af47-687c9237ccd9" ownerguid="aad7c9b0-aff3-4684-86d5-657a20e39288"> -<Abbreviation> -<AUni ws="en">4.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to having authority.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Have authority</AUni> -</Name> -<Questions> -<objsur guid="0151c32b-fbb3-488a-9548-27ad532a6661" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="b8f812f1-8b5e-4066-a9cb-56bf837fae66" ownerguid="00cf30ee-24b0-4e3d-b186-9bc1ef75c50d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">old</AUni> -<AUni ws="es">viejo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a13a3068-7667-4a07-8b26-0f45f661cd40" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b8f86f45-f96a-4740-b4c0-677171981cb8" ownerguid="d2e73238-ff99-4ba3-8ce6-d8ae98721710"> -<ExampleWords> -<AUni ws="en">give in, bow to, accede to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to agreeing to do something after first refusing?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b8f8f184-c683-4f8a-a93c-12f2db326955" ownerguid="f2a599c6-6343-4246-8847-446bb3b0bd21"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.cold</AUni> -<AUni ws="es">hacer.frio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3c2fe35e-5777-48a5-aad5-681cf561d9c8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="b8fc54d8-afd2-4ef8-b811-efb8aa7064db" ownerguid="f76c3803-1c7a-4181-9a87-64ae7231a67d"> -<Abbreviation> -<AUni ws="en">8.5.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.668" /> -<DateModified val="2022-9-23 16:55:8.668" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that indicate that something is to the side of someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>83E At, Beside, Near, Far</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Beside</AUni> -</Name> -<Questions> -<objsur guid="549b5a3f-d3cd-4794-a304-70f3ed3bae67" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="bcb1252c-7cb4-4fbc-b83f-e5f9c65b4afb" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="6bc8e911-36f2-4d45-b237-2bdb6c03cc11" t="o" /> -<objsur guid="c7c2d82e-d86c-4bf3-81a1-82772e87d709" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="b8fc7997-5daa-4c03-bcce-30f7295dfe62"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">garwa</AUni> -<AUni ws="qvm-x-acl">garwa</AUni> -<AUni ws="qvm-x-akh">qarwa</AUni> -<AUni ws="qvm-x-akl">qarwa</AUni> -<AUni ws="qvm-x-ame">qarwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qarwa.n</AUni> -<AUni ws="qvm-x-acl">*qarwa.n</AUni> -<AUni ws="qvm-x-akh">*qarwa.n</AUni> -<AUni ws="qvm-x-akl">*qarwa.n</AUni> -<AUni ws="qvm-x-ame">*qarwa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.124" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e5ab3866-9673-45a8-8174-2dacabd98c92" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qarwa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e6399c0e-55bd-453c-98ed-882a9d160a8c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3b430c74-3702-4f2c-9cf6-135105c49dae" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qarwa.n 
\entryTyp root 
\gENG ? 
\gSPN ? 
\e *qarwa.n 
\c N0 
\ach garwa 
\akh qarwa 
\acl garwa 
\akl qarwa 
\ame qarwa 
\mcc *qarwa.n / ~_ PRT2</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="b8feb510-f035-4bcd-a957-c6698535f660" ownerguid="bb7c2722-353d-4fc1-bf9a-0cefcb5e4ab8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">throw.down.and.break</AUni> -<AUni ws="es">romper.de.alto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c94f2e64-a270-400b-815b-5aefb359ed99" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="b8fec924-fedb-4e03-8a2b-ba60c93e15db" ownerguid="15648f4a-8566-4153-af3e-ec3cdb0b1a6b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="b8ff35f7-7dc1-45f7-9c7f-82dd375f63d0" ownerguid="b31493a6-9a83-43f3-9e17-07f12d01fe2e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b90141a3-230b-49ca-902c-1d1f17e2c680" ownerguid="b79f8775-d8d0-4aa5-b4ab-917f6f3d6c13"> -<ExampleWords> -<AUni ws="en">chase away, send away, exile, expel, send out, dismiss</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to causing someone to go away?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b9056d19-ca35-4bdc-a910-06047c620a73" ownerguid="31debfe3-91da-4588-b433-21b0e14a101b"> -<ExampleWords> -<AUni ws="en">build a road, lay a new road, build up the bed, pave</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words are used for making a road?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b90644f9-6eed-4b42-9d66-175a1454ee7f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">secta</AUni> -<AUni ws="qvm-x-acl">secta</AUni> -<AUni ws="qvm-x-akh">secta</AUni> -<AUni ws="qvm-x-akl">secta</AUni> -<AUni ws="qvm-x-ame">secta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+secta</AUni> -<AUni ws="qvm-x-acl">+secta</AUni> -<AUni ws="qvm-x-akh">+secta</AUni> -<AUni ws="qvm-x-akl">+secta</AUni> -<AUni ws="qvm-x-ame">+secta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.480" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1b03cb3a-a5da-498a-bfad-2d1a3fc93acb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+secta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5f9715ce-78c2-4c21-be61-4adb31962e68" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5cb9c037-385b-4ca1-a990-dce64b196c3e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +secta 
\entryTyp root 
\gENG sect 
\gSPN secta 
\e +secta 
\c N0 
\ach secta 
\akh secta 
\acl secta 
\akl secta 
\ame secta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b9072b5a-36f1-4649-8399-f2bd3ae416b2" ownerguid="3a545732-145a-4034-8f72-e08d752cb4d4"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John was <with> me at supper last night.; John was there <along with> David.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">with, be accompanied by, company, in someone's company, in someone's presence, contact, along with, together with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate a person who accompanied the person who is the subject of the clause?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b907fb8a-9b85-4eda-9eb1-822c045e168f" ownerguid="b4aa4bbd-8abf-4503-96e4-05c75efd23d5"> -<ExampleWords> -<AUni ws="en">meteorology, meteorologist, weatherman</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to studying the weather?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b908a012-504a-45b6-8eb5-e9ec55ed6be0" ownerguid="38af7490-8810-4d18-9761-ca6266fe5b9d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b90a8ac4-8740-42e5-a210-10ba1fa73fe3" ownerguid="84eb31d3-b932-4b3b-b945-85884ea856c7"> -<ExampleWords> -<AUni ws="en">probably, likely, probable, be a strong possibility, it looks as if, it looks like, chances are, may well, be in the cards, as likely as not, I wouldn't be surprised if, I dare say, I should think, I guess</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something will probably happen?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b9107e2c-eff4-4bee-9d4e-5afc3f3a45cd" ownerguid="8c41d2d1-6da6-4ab8-8b29-7e226192d64e"> -<ExampleWords> -<AUni ws="en">pour, stream from, spurt, gush</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to bleeding quickly?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="b910c55b-27ca-4c8e-b5e5-00944b5883b4" ownerguid="2aec3ca7-a7d5-475c-acc2-6bcdd325d6c2"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pay</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pay</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pay</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pay</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pay</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6d4121d0-f0ed-4233-81e4-f54d239a5704" t="r" /> -</Morph> -<Msa> -<objsur guid="d9219b0e-14bd-4167-bd13-182acfa0647f" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="b914fd62-d5f0-4784-9f21-fb9086d3f7d4" ownerguid="350b8501-e64e-4fcc-8961-0ddd63ba94cd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="b916ab61-6f02-4352-bac1-f2ca5aac0785" ownerguid="da421589-6183-4e82-ab9c-5cbe747ec0a0"> -<Form> -<AUni ws="qvm-x-ach">umaca</AUni> -<AUni ws="qvm-x-acl">umaca</AUni> -<AUni ws="qvm-x-akh">umaka</AUni> -<AUni ws="qvm-x-akl">umaka</AUni> -<AUni ws="qvm-x-ame">umaka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="b917ffec-ab7e-496a-bfe4-35c567fa0785" ownerguid="f1373316-7917-4dca-9d33-c6b520bd4034"> -<Abbreviation> -<AUni ws="en">6.6.8.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to working with electricity.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Working with electricity</AUni> -</Name> -<OcmCodes> -<Uni>337 Electrical Installation; 375 Thermal Power; 377 Electric Power; 378 Atomic Energy; 379 Miscellaneous Power Production</Uni> -</OcmCodes> -<Questions> -<objsur guid="16e9855f-3941-4830-9b02-1b061a3dc45e" t="o" /> -<objsur guid="9aae9e72-6c11-4cf4-a4a5-47c17fbe411f" t="o" /> -<objsur guid="6460a0c4-0219-405f-a496-43b7074955c1" t="o" /> -<objsur guid="bfb26612-ff89-478f-b1cb-de29c9406030" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="b9193932-3a03-43b9-acde-8dfaaf8232e1" ownerguid="03d65d0c-aafb-40c0-9cd2-3e5ced66ad03"> -<ExampleWords> -<AUni ws="en">all the time, always, constantly, permanently, permanent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something happens or a situation exists all the time?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b91aa766-e633-445e-9f15-f5e448e47140" ownerguid="9885c1fa-c724-4afc-bb33-6af3b26909f1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="160939a9-1800-4c6a-be12-f0fa0d4add6a" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="1fc0df05-2548-40d0-8084-ad538f4c5d10" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="b92101c0-f16f-4696-8d2f-62d2fd85f198" ownerguid="e094e28b-1468-49dd-a341-880222abec52"> -<Form> -<AUni ws="qvm-x-ach">süda</AUni> -<AUni ws="qvm-x-acl">süda</AUni> -<AUni ws="qvm-x-akh">süda</AUni> -<AUni ws="qvm-x-akl">süda</AUni> -<AUni ws="qvm-x-ame">süda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="b92255fb-f575-4131-84a6-73197cce0f26" ownerguid="00734aec-1d6f-45ab-ab85-f6c0ea7e6465"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="b922771e-14ab-409b-8b07-5139e78f4576" ownerguid="0aaacffe-9b6c-49a7-bf68-c0f9ff3e120e"> -<ExampleWords> -<AUni ws="en">an all-time low, record low, lowest ebb</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to an amount being the smallest it has ever been?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b92394d5-a003-4cbb-ac3a-3120be8866dd" ownerguid="f5e4e66f-0445-4434-a143-c60c5390be39"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">pasar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="87d70374-b5a2-4e52-8a74-64ab8fc76ada" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b92449cc-1f8b-4522-9287-5c6e2958ab43" ownerguid="67d74de1-33f9-4d39-8fa5-5dd27e7cd1d1"> -<ExampleWords> -<AUni ws="en">suspect (v), suspicious, suspicion, have a sneaking suspicion, smell a rat, have your suspicions</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to thinking that someone did something bad?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b9263983-a6ba-49f1-8d82-ef958db58650" ownerguid="1cb79293-d4f7-4990-9f50-3bb595744f61"> -<ExampleWords> -<AUni ws="en">will, volition</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the part of a person that wants and decides?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b9280d2a-2aa9-46b8-91ff-8284f025c44b" ownerguid="ba760e74-4389-4262-bf25-19ca25a06066"> -<Form> -<AUni ws="qvm-x-ach">usya; usyä</AUni> -<AUni ws="qvm-x-acl">usya; usyä</AUni> -<AUni ws="qvm-x-akh">usya; usyä</AUni> -<AUni ws="qvm-x-akl">usya; usyä</AUni> -<AUni ws="qvm-x-ame">usya; usyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b9292504-0f7d-435d-87bc-e5a7c8f6e12d" ownerguid="39cb7964-8ebd-4629-bf1c-363eca8ba6e6"> -<Form> -<AUni ws="qvm-x-ach">cabra</AUni> -<AUni ws="qvm-x-acl">cabra</AUni> -<AUni ws="qvm-x-akh">cabra</AUni> -<AUni ws="qvm-x-akl">cabra</AUni> -<AUni ws="qvm-x-ame">cabra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b92b7ad9-f5a6-4de9-9ca3-8b724d3b8ba9" ownerguid="5d21b3f1-85d5-4999-af64-c4d0101050c0"> -<ExampleWords> -<AUni ws="en">humble, lowly, meek, mild, modest, self-deprecating, self-effacing, simple, timid, timorous, unassuming, unpretentious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is humble?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b92ff732-70a5-4ff7-a033-4902297cfe68" ownerguid="ccbbd16f-58c5-45c1-bfff-1fba64d9740e"> -<Question> -<AUni ws="en">(3) continuative: keep on doing what is being done. Restricted to dynamic words.</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b931718c-3517-4bfa-9c63-4551f54b0bf2" ownerguid="f472b2d2-b4d3-4852-914d-71b66bdb6f26"> -<ExampleWords> -<AUni ws="en">hang, hang up, suspend</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to hanging something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b9342936-0ace-412f-996d-a521b341ce02"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">panu</AUni> -<AUni ws="qvm-x-acl">panu; pano</AUni> -<AUni ws="qvm-x-akh">panu</AUni> -<AUni ws="qvm-x-akl">panu; pano</AUni> -<AUni ws="qvm-x-ame">panu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pañu</AUni> -<AUni ws="qvm-x-acl">*pañu</AUni> -<AUni ws="qvm-x-akh">*pañu</AUni> -<AUni ws="qvm-x-akl">*pañu</AUni> -<AUni ws="qvm-x-ame">*pañu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.699" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="de007181-35c5-4b77-8ebc-c18754eff5f0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pañu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="093e8dbf-7fcd-430e-95d5-a96d0c35930b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="da5d1da5-80c8-491a-8318-384102eecb21" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pañu 
\entryTyp root 
\gENG dry 
\gSPN secar 
\e *pañu 
\c V1 
\ach panu 
\akh panu 
\acl panu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pano +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl panu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pano +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame panu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b935cf69-1759-4fe1-a72b-038d9b72247d" ownerguid="4f485a60-e3ba-42e6-9d59-185305c5d1f2"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">What <way> did he go?; He headed in that <direction>.; Turn to a <bearing> of 270 degrees.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">direction, orientation, course, way, bearing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a direction?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b938b594-a0f4-4fd2-9706-8d57a68d989b" ownerguid="513771eb-8467-468a-8bc8-e52567e66df9"> -<ExampleWords> -<AUni ws="en">partnership, association, office, working group</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a group of people who work together?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b9395be6-f646-44d2-abbd-45b51e743f04"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mulaca</AUni> -<AUni ws="qvm-x-acl">mulaca</AUni> -<AUni ws="qvm-x-akh">mulaka</AUni> -<AUni ws="qvm-x-akl">mulaka</AUni> -<AUni ws="qvm-x-ame">mulaka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mullaka</AUni> -<AUni ws="qvm-x-acl">*mullaka</AUni> -<AUni ws="qvm-x-akh">*mullaka</AUni> -<AUni ws="qvm-x-akl">*mullaka</AUni> -<AUni ws="qvm-x-ame">*mullaka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.497" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f911ba11-1c8c-4558-8ad1-3491aa1a88d1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mullaka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="26221a7a-19fb-4e4e-a2c9-8c0dc9ae4281" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f32289fb-43a1-454f-977d-b9109d715065" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mullaka 
\entryTyp root 
\gENG berry 
\gSPN uva 
\e *mullaka 
\c N0 
\ach mulaca 
\akh mulaka 
\acl mulaca 
\akl mulaka 
\ame mulaka</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b93ad229-dcef-4f70-8dc9-11183fbf8916" ownerguid="dfdcfa24-b013-4566-af4a-28ef1dfd4742"> -<ExampleWords> -<AUni ws="en">capacity, dimension, distance, extent, length, measure, portion, quantity, size, volume</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the size or amount of something?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="b93bdfa4-486c-44a0-8266-557ccdc78b31" ownerguid="ff7e3abd-6810-4128-83c9-701b4925c2fe"> -<Abbreviation> -<AUni ws="en">5.5.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.337" /> -<DateModified val="2022-9-23 16:55:8.337" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the things that fires produce.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">What fires produce</AUni> -</Name> -<Questions> -<objsur guid="3b69f044-7969-45ca-9387-7065d6f130b8" t="o" /> -<objsur guid="fa795cf9-3e1a-498d-9b72-3a5a985c4145" t="o" /> -<objsur guid="61d79e78-d77a-48dd-b16a-d4e3bf7e2a54" t="o" /> -<objsur guid="67c04ce5-f47b-4b9c-826d-0395dff682c9" t="o" /> -<objsur guid="2d062841-920b-4872-92bd-46ac5b36e67e" t="o" /> -<objsur guid="61265b8f-e6b4-4bd8-a985-d963f303f478" t="o" /> -<objsur guid="3f24223a-608f-4490-888f-d1481aedaee1" t="o" /> -<objsur guid="f1e24ca6-65b6-4a1c-a023-c3458d0456b4" t="o" /> -<objsur guid="3b0fc691-a1a3-4343-92c1-deb574158648" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="b93d9c47-2a86-4719-8864-71b8ddc50398" ownerguid="a2989907-310a-4a71-8768-cfa71e66caa6"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="52f0f943-d05e-4e1e-9935-ea0c9b55de21" t="o" /> -<objsur guid="26a917d7-9ce9-4cc6-a006-b9aed4a4f355" t="o" /> -<objsur guid="5a658f56-1bbe-404a-ad19-ca75df5b5fc3" t="o" /> -<objsur guid="b53c3ead-20d2-4d15-bcdc-168561c60734" t="o" /> -</MorphBundles> -</rt> -<rt class="StStyle" guid="b93de5b9-556c-4651-8b9d-d3369fb8ebc8" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="a5a1a249-b888-434d-a839-a2421ec50dbf" t="r" /> -</BasedOn> -<Context val="10" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Parallel Passage Reference</Uni> -</Name> -<Next> -<objsur guid="679ab46a-8a27-4449-91b1-edad14669b01" t="r" /> -</Next> -<Rules> -<Prop bold="off" italic="invert" spaceAfter="4000" spaceBefore="-4000"></Prop> -</Rules> -<Structure val="1" /> -<Type val="0" /> -<Usage> -<AUni ws="en">Parallel Passage Reference identifies canonical (book-chapter-verse) references to parallel passages.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="CmDomainQ" guid="b93df490-660d-4ad1-8398-5837ee34a44b" ownerguid="68ed3e51-ddc4-4cec-89ff-605259ac9fcf"> -<ExampleWords> -<AUni ws="en">nostril, bridge, septum, sinus, nasal passage, mucous membrane</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the parts of the nose?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b93ed194-ff03-4c2f-a529-2a2565b13709" ownerguid="8033798b-e0b8-436a-9e27-62f2ed3bdb08"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiGloss" guid="b943f4aa-ad14-47af-b252-42eb7201d605" ownerguid="9241cf68-361a-432d-b310-e89b0cda2781"> -<Form> -<AUni ws="en">widow</AUni> -<AUni ws="es">viuda</AUni> -</Form> -</rt> -<rt class="WfiGloss" guid="b944437c-7d5b-4ba1-aa3e-2aa6761b30c0" ownerguid="de49aef7-c3de-4490-b89a-a279b594b155"> -<Form> -<AUni ws="en">and</AUni> -<AUni ws="es">y</AUni> -</Form> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="b945415f-3c4c-4fcf-b445-e88a1578c095" ownerguid="f8e88cdc-111b-42e6-a5b7-eaaa0807eae1" /> -<rt class="CmDomainQ" guid="b9483951-3b66-4269-b90e-f0c2567b345b" ownerguid="49aa89f2-2022-4213-845e-dbbb4b53476c"> -<ExampleWords> -<AUni ws="en">lastly, finally, last but not least</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words do people use to indicate the last thing in a list of things they are talking about?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b948f9df-1600-45d4-9c5a-c0b5fe70f01a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">esti:lu</AUni> -<AUni ws="qvm-x-acl">esti:lu; esti:lu; esti:lo</AUni> -<AUni ws="qvm-x-akh">esti:lu</AUni> -<AUni ws="qvm-x-akl">esti:lu; esti:lu; esti:lo</AUni> -<AUni ws="qvm-x-ame">esti:lu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+estilo</AUni> -<AUni ws="qvm-x-acl">+estilo</AUni> -<AUni ws="qvm-x-akh">+estilo</AUni> -<AUni ws="qvm-x-akl">+estilo</AUni> -<AUni ws="qvm-x-ame">+estilo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.508" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="95900b94-c3d1-4247-8ce9-96eead5ca4e1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+estilo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ef619691-c8e2-4182-a27b-24d521ef7291" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6f92fc75-7b8b-4a86-9d46-ff104a08f60a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +estilo 
\entryTyp root 
\gENG 
\gSPN 
\e +estilo 
\c N0 
\ach esti:lu 
\akh esti:lu 
\acl esti:lu / _# 
\acl esti:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl esti:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl esti:lu / _# 
\akl esti:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl esti:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame esti:lu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="b94e990f-8fc5-4fbf-b15b-2f6cc15d5cb2" ownerguid="ae4b7642-8d6c-4ea1-ba9d-6726f18d12c4"> -<Form> -<AUni ws="qvm-x-ach">mereci</AUni> -<AUni ws="qvm-x-acl">mereci; merece</AUni> -<AUni ws="qvm-x-akh">mereci</AUni> -<AUni ws="qvm-x-akl">mereci; merece</AUni> -<AUni ws="qvm-x-ame">mereci</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b954957f-a0d8-4614-8b89-bf8a060253d4" ownerguid="08c05e00-9660-4491-af2f-a05fab27ef39"> -<ExampleWords> -<AUni ws="en">scarecrow, skeleton, bag of bones</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to someone who is thin?</AUni> -</Question> -</rt> -<rt class="Segment" guid="b95741a0-f0ad-4258-858e-98f319e66951" ownerguid="2120c813-0e82-4ae3-9f40-cfc12ec9e382"> -<Analyses> -<objsur guid="2d0f45f3-2471-4d69-9429-76c51a12e2a8" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="b95b12d8-40ee-4fef-9132-6cf938f20c1c" ownerguid="46c44f13-ca96-4108-bc90-950e4c3a25c7"> -<Form> -<AUni ws="qvm-x-ach">bisagra</AUni> -<AUni ws="qvm-x-acl">bisagra</AUni> -<AUni ws="qvm-x-akh">bisagra</AUni> -<AUni ws="qvm-x-akl">bisagra</AUni> -<AUni ws="qvm-x-ame">bisagra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b95b4cfd-2862-436d-9a2b-72bca5a61e90" ownerguid="c1a70060-ba04-4f16-879e-5563492aee02"> -<ExampleWords> -<AUni ws="en">be wealthy, be rich, rich person, the rich, the wealth, the upper class, live comfortable, be well-off, well-to-do</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being rich?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b95b98d6-2c13-458d-a6d8-298916cea6e9" ownerguid="b0e3486c-bd3d-4b5c-be9a-40cd2c0ce2a1"> -<Question> -<AUni ws="en">(4) What things are used?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b95c77d7-0ca4-4c09-af39-dbb3fd2ba4ef" ownerguid="5edc9272-cf93-4fe7-9d3a-dd28cd4b5126"> -<Form> -<AUni ws="qvm-x-ach">pilashta</AUni> -<AUni ws="qvm-x-acl">pilashta</AUni> -<AUni ws="qvm-x-akh">pilashta</AUni> -<AUni ws="qvm-x-akl">pilashta</AUni> -<AUni ws="qvm-x-ame">pilashta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b960ee24-8956-42e1-8a2b-9974621f4164" ownerguid="578baf67-d1cb-473e-aa7d-631e069a99a9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hide</AUni> -<AUni ws="es">esconder</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ca03f238-6060-43be-b2a8-aba6f25a6a03" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b962e322-e672-43d1-aa81-38ce319164a3" ownerguid="130e2cbb-7e51-4f6f-a1cf-7a053a44c9b7"> -<ExampleWords> -<AUni ws="en">decorated, adorned, bedecked, bejewelled, decked, embellished, festooned, hung, ornamented, studded</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is decorated?</AUni> -</Question> -</rt> -<rt class="Segment" guid="b9658d40-ee16-4d43-9768-6e86282189a3" ownerguid="7bd00e49-483a-4313-bada-f7fe7b852732"> -<Analyses> -<objsur guid="ba458e9a-a8bb-4ba0-858a-569b8db65261" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexSense" guid="b9695ccf-2b55-4288-8f71-cf95cdc283be" ownerguid="a10096c2-f086-4d14-adbf-e792f13efc32"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hazelnut</AUni> -<AUni ws="es">avellano</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="973515a4-21b5-4114-9f6a-1d08a5631df5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="b96b7016-e46b-4a6b-9bab-ae3e07c9ee74" ownerguid="cf079329-b4c0-4dfd-acb9-dd2e6dee6338"> -<Form> -<AUni ws="qvm-x-ach">despächu</AUni> -<AUni ws="qvm-x-acl">despächu; despächu; despächo</AUni> -<AUni ws="qvm-x-akh">despächu</AUni> -<AUni ws="qvm-x-akl">despächu; despächu; despächo</AUni> -<AUni ws="qvm-x-ame">despächu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b96bd8fb-9640-4ce4-b35f-16b61e8898da" ownerguid="dfdcfa24-b013-4566-af4a-28ef1dfd4742"> -<ExampleWords> -<AUni ws="en">measurement, reading</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the number or amount that you get when you measure something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="b96cbdd1-ed70-471e-9836-5dea7202c88d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gonta</AUni> -<AUni ws="qvm-x-acl">gonta</AUni> -<AUni ws="qvm-x-akh">qonta</AUni> -<AUni ws="qvm-x-akl">qonta</AUni> -<AUni ws="qvm-x-ame">qunta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qunta</AUni> -<AUni ws="qvm-x-acl">*qunta</AUni> -<AUni ws="qvm-x-akh">*qunta</AUni> -<AUni ws="qvm-x-akl">*qunta</AUni> -<AUni ws="qvm-x-ame">*qunta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.859" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5b0652cd-a41d-4c02-b46b-b524cc9a7e75" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qunta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f43dbfd2-dcbc-4dbc-9ffb-82918049f0de" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d2412e4c-71e9-40bc-a38d-81eccede3762" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qunta 
\entryTyp root 
\gENG soot 
\gSPN tizne 
\e *qunta 
\c V1 N0 
\ach gonta 
\akh qonta 
\acl gonta 
\akl qonta 
\ame qunta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b96d1b20-888c-445e-b88c-9ae6741fafac" ownerguid="f56a2511-10cc-4829-940d-49051429bfba"> -<ExampleWords> -<AUni ws="en">skin, scum, crust, slime, slimy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to the thick part that can form on the top of a liquid?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="b97531df-8256-4796-8335-f69753a8f2e3" ownerguid="e311cc3a-a387-449e-a05a-07ed9678411d"> -<Abbreviation> -<AUni ws="en">4.9.8.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.304" /> -<DateModified val="2022-9-23 16:55:8.304" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to idols and their use.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>6M Images and Idols</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Idol</AUni> -</Name> -<Questions> -<objsur guid="bf9df196-9bb6-4cf5-ab59-62f1f14c6415" t="o" /> -<objsur guid="ee619566-3c90-4489-9659-d73e7c3f110e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="b97551e3-69a6-43ea-ae10-d470185d60aa" ownerguid="a362ede0-5c25-4cc2-8c4d-c5003740c08e"> -<Form> -<AUni ws="qvm-x-ach">yapa</AUni> -<AUni ws="qvm-x-acl">yapa</AUni> -<AUni ws="qvm-x-akh">yapa</AUni> -<AUni ws="qvm-x-akl">yapa</AUni> -<AUni ws="qvm-x-ame">yapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b976a7a0-bffd-42fd-a21d-18b87d6d87ef" ownerguid="a5ba96ff-77b0-49c5-b1a8-bf8f13879627"> -<Form> -<AUni ws="qvm-x-ach">chichu</AUni> -<AUni ws="qvm-x-acl">chichu; chichu; chicho</AUni> -<AUni ws="qvm-x-akh">chichu</AUni> -<AUni ws="qvm-x-akl">chichu; chichu; chicho</AUni> -<AUni ws="qvm-x-ame">chichu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b976f6c6-f5bd-4db2-ad3f-86a2c2cf5e6b" ownerguid="ac7de73d-0059-4f35-9317-462a1813edba"> -<ExampleWords> -<AUni ws="en">mill, flour mill, grind stone, millstone, grinder, grinding mill, flour sack</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What tools are used to grind flour?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b9777291-73f4-4772-a6d2-4684a959f5d3" ownerguid="482b5e0e-41af-408d-a300-66c0c7b682de"> -<Form> -<AUni ws="qvm-x-ach">brüju</AUni> -<AUni ws="qvm-x-acl">brüju; brüju; brüjo</AUni> -<AUni ws="qvm-x-akh">brüju</AUni> -<AUni ws="qvm-x-akl">brüju; brüju; brüjo</AUni> -<AUni ws="qvm-x-ame">brüju</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b980ea65-ce70-445c-84d3-b672ecc246b5" ownerguid="e1f5490e-19bd-4861-8039-962cd46de12e"> -<Form> -<AUni ws="qvm-x-ach">reservoriu; reservorio</AUni> -<AUni ws="qvm-x-acl">reservoriu; reservoriu; reservorio</AUni> -<AUni ws="qvm-x-akh">reservoriu; reservorio</AUni> -<AUni ws="qvm-x-akl">reservoriu; reservoriu; reservorio</AUni> -<AUni ws="qvm-x-ame">reservoriu; reservorio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b98108d2-5eb7-48ee-bb64-f64d547ef436" ownerguid="d688e396-2ba5-45d8-ab00-7ffb0aa1e72c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="e7503bee-c801-4288-a9a2-244831f55274" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">to.do.public.work</AUni> -<AUni ws="es">faenar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8ea66d70-8498-40ac-adf0-a48a0da76814" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="b98a5bcc-bbea-41cd-acde-2e10408657ee" ownerguid="1b73b2bf-9582-4f8a-822a-e0d020272c7c"> -<ExampleWords> -<AUni ws="en">keep up, keep pace, stay up with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to moving at the same speed as the person you are following?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b98c5f89-c228-48f2-9c3a-5ed6c7c8f0a5" ownerguid="5257eee1-d68f-4d7f-b0f0-f99cbb91e396"> -<Form> -<AUni ws="qvm-x-ach">labor</AUni> -<AUni ws="qvm-x-acl">labor</AUni> -<AUni ws="qvm-x-akh">labor</AUni> -<AUni ws="qvm-x-akl">labor</AUni> -<AUni ws="qvm-x-ame">labor</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="b98d1ecc-60c8-45c5-b939-f45f5d404b01"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">imani</AUni> -<AUni ws="qvm-x-acl">imani; imane</AUni> -<AUni ws="qvm-x-akh">imani</AUni> -<AUni ws="qvm-x-akl">imani; imane</AUni> -<AUni ws="qvm-x-ame">imani</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*imani</AUni> -<AUni ws="qvm-x-acl">*imani</AUni> -<AUni ws="qvm-x-akh">*imani</AUni> -<AUni ws="qvm-x-akl">*imani</AUni> -<AUni ws="qvm-x-ame">*imani</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.802" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="981af5e7-86c0-4f77-9c42-0df9570e02dc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*imani</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cfaaca22-036a-4d40-a836-4add17e1c926" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b2d7f699-59c5-4fcb-839d-0928fb25d969" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *imani 
\entryTyp root 
\gENG what.say 
\gSPN que.decir 
\e *imani 
\c V2 
\mp +FinalI 
\ach imani 
\akh imani 
\acl imani +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl imane +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl imani +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl imane +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame imani 
\mcc *imani / ~_ ADVSS1.1</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="b98d8087-4997-46e3-87e1-debd9ba0e23d" ownerguid="837c934c-ad68-4b64-8e9a-f6b060bfbb4b"> -<Form> -<AUni ws="qvm-x-ach">emplastu; emplasto</AUni> -<AUni ws="qvm-x-acl">emplastu; emplastu; emplasto</AUni> -<AUni ws="qvm-x-akh">emplastu; emplasto</AUni> -<AUni ws="qvm-x-akl">emplastu; emplastu; emplasto</AUni> -<AUni ws="qvm-x-ame">emplastu; emplasto</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b98dc2d0-2622-4cfa-a26e-8e9ffea433fd" ownerguid="25ac70e7-7886-4b90-81f7-79e087d01899"> -<Form> -<AUni ws="qvm-x-ach">wapya</AUni> -<AUni ws="qvm-x-acl">wapya</AUni> -<AUni ws="qvm-x-akh">wapya</AUni> -<AUni ws="qvm-x-akl">wapya</AUni> -<AUni ws="qvm-x-ame">wapya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="b98fc44d-e310-467c-a840-40ba40fee4c4" ownerguid="f545e3a3-5c07-42d5-8796-216271c338c5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="b99ab801-6b4b-46c4-a636-1add64dd477e" ownerguid="21113dbe-2d87-4c6b-b681-c8a66bc8aafe"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="b99cb04d-0945-4464-9cf6-989f0012dbde" ownerguid="14f882ff-a03c-4081-a4aa-a29988822757"> -<Form> -<AUni ws="qvm-x-ach">wallicu</AUni> -<AUni ws="qvm-x-acl">wallicu; wallicu; wallico</AUni> -<AUni ws="qvm-x-akh">walliku</AUni> -<AUni ws="qvm-x-akl">walliku; walliku; walliko</AUni> -<AUni ws="qvm-x-ame">walliku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b99d6301-2104-4436-a533-ce1d34d843a5" ownerguid="d117aa22-3f18-47c4-9683-51ecf1dc7134"> -<ExampleWords> -<AUni ws="en">root, trunk, stalk, branch, stem, leaf</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the basic parts of all plants?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="b9a04f20-5b49-4bda-9a4b-20624ea9856b" ownerguid="7f1b2fc4-6bac-4581-a920-44c514817783"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="b9a20b82-7fda-4b85-b449-6aaada701fc0" ownerguid="2351f52a-8822-46ad-99c4-7ef526e94a6f"> -<ExampleWords> -<AUni ws="en">back to square one, make a fresh start</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to having to start something again from the very beginning?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="b9a4b336-080a-4973-a7e3-a9af10fc347c" ownerguid="4c862416-f7c4-4a3c-82ac-fe81e1efb879"> -<Abbreviation> -<AUni ws="en">2.1.8.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the stomach and to the normal functions of the stomach. Do not use this domain for stomach illness.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Stomach</AUni> -</Name> -<Questions> -<objsur guid="3f458610-09e3-49fc-b8a7-a3b152df0d07" t="o" /> -<objsur guid="b103dd6e-92f3-4007-9ecf-bd33ae9104ee" t="o" /> -<objsur guid="0e7fae44-f51d-4437-99ab-f1c38cda0b3b" t="o" /> -<objsur guid="fd29c75a-3c14-4b7e-9fa9-af9fc8541b28" t="o" /> -<objsur guid="83cb7d28-d5d7-47f2-b862-f81d9905c71d" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="39dcb6b9-94df-45be-a128-c14c7a9dcdbd" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="b9a4ee1f-9ca3-4582-920a-c70d6682dca2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jananpa; jananpa:</AUni> -<AUni ws="qvm-x-acl">jananpa; jananpa:</AUni> -<AUni ws="qvm-x-akh">jananpa; jananpa:</AUni> -<AUni ws="qvm-x-akl">jananpa; jananpa:</AUni> -<AUni ws="qvm-x-ame">hananpa; hananpa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hananpa:</AUni> -<AUni ws="qvm-x-acl">*hananpa:</AUni> -<AUni ws="qvm-x-akh">*hananpa:</AUni> -<AUni ws="qvm-x-akl">*hananpa:</AUni> -<AUni ws="qvm-x-ame">*hananpa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.660" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="585041e1-7558-4245-87cd-a7472ea87934" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hananpa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2ac16dcc-03a0-4e14-a971-7e9be144f5f5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f4efeaf5-2519-40aa-99d8-baba2acc673f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hananpa: 
\entryTyp root 
\gENG 
\gSPN 
\e *hananpa: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach jananpa foreshortened 
\ach jananpa: 
\akh jananpa foreshortened 
\akh jananpa: 
\acl jananpa foreshortened 
\acl jananpa: 
\akl jananpa foreshortened 
\akl jananpa: 
\ame hananpa foreshortened 
\ame hananpa: 
\i PRO 29.24 Suwacog runata janamparga quiquinmi pengaycho cangapag.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="b9afb4d3-73d4-456a-a0d6-590f2110ee50" ownerguid="7981a8e1-cf0b-44a0-9de4-12160b2f201d"> -<ExampleWords> -<AUni ws="en">property line, boundary marker</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the boundary of a piece of property?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b9b0d5a1-2363-4eb1-8e94-0dadbe00071f" ownerguid="5eb2b1a8-3427-4929-be10-ceb6d354950d"> -<Form> -<AUni ws="qvm-x-ach">gamya</AUni> -<AUni ws="qvm-x-acl">gamya</AUni> -<AUni ws="qvm-x-akh">qamya</AUni> -<AUni ws="qvm-x-akl">qamya</AUni> -<AUni ws="qvm-x-ame">qamya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b9b5188e-7a8f-4256-bf1d-7a5276ddaee6" ownerguid="b0a0b9f0-8b7d-456a-8eac-5bf835934d4f"> -<Form> -<AUni ws="qvm-x-ach">büda</AUni> -<AUni ws="qvm-x-acl">büda</AUni> -<AUni ws="qvm-x-akh">büda</AUni> -<AUni ws="qvm-x-akl">büda</AUni> -<AUni ws="qvm-x-ame">büda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b9ba9de2-d56a-41c6-9ac4-b5b67bcd6462" ownerguid="07f336f9-cc14-4c95-a762-76b6620ef310"> -<Form> -<AUni ws="qvm-x-ach">liclish</AUni> -<AUni ws="qvm-x-acl">liclish</AUni> -<AUni ws="qvm-x-akh">liklish</AUni> -<AUni ws="qvm-x-akl">liklish</AUni> -<AUni ws="qvm-x-ame">liklish</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="b9bcece5-a13a-487c-9517-ea7cb3b857a6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pirgash</AUni> -<AUni ws="qvm-x-acl">pirgash</AUni> -<AUni ws="qvm-x-akh">pirqash</AUni> -<AUni ws="qvm-x-akl">pirqash</AUni> -<AUni ws="qvm-x-ame">pirqash</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pirqash.n</AUni> -<AUni ws="qvm-x-acl">*pirqash.n</AUni> -<AUni ws="qvm-x-akh">*pirqash.n</AUni> -<AUni ws="qvm-x-akl">*pirqash.n</AUni> -<AUni ws="qvm-x-ame">*pirqash.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.850" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4477a132-65fe-47cf-84b1-d66e695bf9eb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pirqash.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1cf8ddae-9796-4ca3-ab08-36f6ac8f8b0b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7c95e1c1-f2de-4eef-bcf8-8cedaf2fca60" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pirqash.n 
\entryTyp root 
\gENG sheep.skin 
\gSPN ? 
\e *pirqash.n 
\c N0 
\mp +FinalC 
\ach pirgash 
\akh pirqash 
\acl pirgash 
\akl pirqash 
\ame pirqash</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="b9bdc902-1be0-42e5-83f6-e348d2e1b117" ownerguid="7b5cb6a9-ad1d-4d55-8593-589bb4eda322"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">AMO 1.2 Parlamuptinmi jircacho guewacunapis elagpita gaugan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="b9be8be2-0f47-4947-8fd7-80f6cc745e9a" ownerguid="a10096c2-f086-4d14-adbf-e792f13efc32"> -<Form> -<AUni ws="qvm-x-ach">avellänu</AUni> -<AUni ws="qvm-x-acl">avellänu; avellänu; avelläno</AUni> -<AUni ws="qvm-x-akh">avellänu</AUni> -<AUni ws="qvm-x-akl">avellänu; avellänu; avelläno</AUni> -<AUni ws="qvm-x-ame">avellänu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="b9bfe8c4-84a3-4f43-8e6d-c30133a91b5d" ownerguid="a2e3ee97-fa71-4934-9ccd-5f9aec0fd908"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="b9c17ff5-3338-4eab-8bf1-48f6633d066a" ownerguid="30941699-d337-4c85-bacf-d9cd93743610"> -<Form> -<AUni ws="qvm-x-ach">acäsu</AUni> -<AUni ws="qvm-x-acl">acäsu</AUni> -<AUni ws="qvm-x-akh">acäsu</AUni> -<AUni ws="qvm-x-akl">acäsu</AUni> -<AUni ws="qvm-x-ame">acäsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="b9c1d2d0-47b4-4691-916b-de4bf47faed8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">monumentu; monumento</AUni> -<AUni ws="qvm-x-acl">monumentu; monumentu; monumento</AUni> -<AUni ws="qvm-x-akh">monumentu; monumento</AUni> -<AUni ws="qvm-x-akl">monumentu; monumentu; monumento</AUni> -<AUni ws="qvm-x-ame">monumentu; monumento</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+monumento</AUni> -<AUni ws="qvm-x-acl">+monumento</AUni> -<AUni ws="qvm-x-akh">+monumento</AUni> -<AUni ws="qvm-x-akl">+monumento</AUni> -<AUni ws="qvm-x-ame">+monumento</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.477" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aa17c574-4693-4a39-b446-e493abcebfea" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+monumento</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4a4f0b29-ba24-4db5-a1a0-b460a025ef37" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="143600a5-af6b-4f5a-8ab0-5fb91903ed11" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +monumento 
\entryTyp root 
\gENG monument 
\gSPN monumento 
\e +monumento 
\c N0 
\ach monumentu / ~_# 
\ach monumento / _# 
\akh monumentu / ~_# 
\akh monumento / _# 
\acl monumentu / ~_# 
\acl monumentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl monumento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl monumentu / ~_# 
\akl monumentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl monumento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame monumentu / ~_# 
\ame monumento / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="b9c50a96-de75-4eb5-8348-639372c6e2ad"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">arma</AUni> -<AUni ws="qvm-x-acl">arma</AUni> -<AUni ws="qvm-x-akh">arma</AUni> -<AUni ws="qvm-x-akl">arma</AUni> -<AUni ws="qvm-x-ame">arma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*arma</AUni> -<AUni ws="qvm-x-acl">*arma</AUni> -<AUni ws="qvm-x-akh">*arma</AUni> -<AUni ws="qvm-x-akl">*arma</AUni> -<AUni ws="qvm-x-ame">*arma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.830" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f7f4a797-3593-4468-b8ee-54751d696017" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*arma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f3f71fc7-8ee0-43eb-a6bb-4cf66bf47808" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f9f1bbf1-7de3-46f0-aaac-c62313bb5e03" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *arma 
\entryTyp root 
\gENG bathe 
\gSPN bañar 
\e *arma 
\c V2 
\ach arma 
\akh arma 
\acl arma 
\akl arma 
\ame arma 
\mcc *arma / ~_ PRTSPF1</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="b9c5a909-4ae2-4c03-b2d3-15dabfd34519" ownerguid="de160b31-15e9-43ce-8a2d-0d7a458c8ade"> -<Form> -<AUni ws="qvm-x-ach">caballitu; caballito</AUni> -<AUni ws="qvm-x-acl">caballitu; caballitu; caballito</AUni> -<AUni ws="qvm-x-akh">caballitu; caballito</AUni> -<AUni ws="qvm-x-akl">caballitu; caballitu; caballito</AUni> -<AUni ws="qvm-x-ame">caballitu; caballito</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="b9c752a4-66be-493c-8955-cfa5324a54c1" ownerguid="7556a257-3703-40d3-91d3-c891fb250947"> -<Abbreviation> -<AUni ws="en">4.9.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.296" /> -<DateModified val="2022-9-23 16:55:8.296" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to practicing religion.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>53 Religious Activities; 53A Religious Practice</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Practice religion</AUni> -</Name> -<OcmCodes> -<Uni>780 Religious Practices; 781 Religious Experience; 786 Ecstatic Religious Practices; Orgies</Uni> -</OcmCodes> -<Questions> -<objsur guid="76d2d00b-4d92-4188-ad32-7be531f2d0bd" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="4cb8b433-4efa-4698-8ebd-0f00f8fc3f66" t="o" /> -<objsur guid="00dde3be-e53d-42c3-b3ff-717e25cbffb6" t="o" /> -<objsur guid="2ccab97a-fb98-4054-a29b-e5ceac8ca1b4" t="o" /> -<objsur guid="5a4a8ae5-a209-4946-8fa1-3c3bd5083e0d" t="o" /> -<objsur guid="9f792202-8023-4ef3-b269-5ae4b6908a0b" t="o" /> -<objsur guid="b790470f-ed4e-42ac-932d-cd15ef701b03" t="o" /> -<objsur guid="6105a207-4311-4920-8c19-63259424bfaf" t="o" /> -<objsur guid="62ed8254-e53a-4781-935e-79869619e40a" t="o" /> -<objsur guid="79f3b53a-eb56-4188-87f8-48317f76e7ce" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="b9c927f7-acc5-4ccc-831e-912b1e06d583" ownerguid="f919dc5e-b3ed-41a8-8422-6fc1df2aef0f"> -<Gloss> -<AUni ws="en">time</AUni> -<AUni ws="es">tiempo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a459cdbc-485c-4d4a-baf9-64b148a1346e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="b9ca2d56-750e-4ace-95a6-4c3c54bffbb0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">adornu; adorno</AUni> -<AUni ws="qvm-x-acl">adornu; adornu; adorno</AUni> -<AUni ws="qvm-x-akh">adornu; adorno</AUni> -<AUni ws="qvm-x-akl">adornu; adornu; adorno</AUni> -<AUni ws="qvm-x-ame">adornu; adorno</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+adorno</AUni> -<AUni ws="qvm-x-acl">+adorno</AUni> -<AUni ws="qvm-x-akh">+adorno</AUni> -<AUni ws="qvm-x-akl">+adorno</AUni> -<AUni ws="qvm-x-ame">+adorno</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.649" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="52f36c9c-37e4-45da-b0eb-922d1c7438b9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+adorno</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="493be8bf-2ecd-4a13-bf48-6c35a3590d09" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7f1036a9-350b-4881-9640-e6729c49f56a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +adorno 
\entryTyp root 
\gENG decoration 
\gSPN adorno 
\e +adorno 
\c N0 
\ach adornu / ~_# 
\ach adorno / _# 
\akh adornu / ~_# 
\akh adorno / _# 
\acl adornu / ~_# 
\acl adornu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl adorno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl adornu / ~_# 
\akl adornu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl adorno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame adornu / ~_# 
\ame adorno / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="b9d6b5d2-12c3-489c-8735-dafa4c420657" ownerguid="2517e8ce-94e1-4de9-8605-d63cabe2c9f3"> -<Form> -<AUni ws="qvm-x-ach">rogu</AUni> -<AUni ws="qvm-x-acl">rogu; rogu; rogo</AUni> -<AUni ws="qvm-x-akh">roqu</AUni> -<AUni ws="qvm-x-akl">roqu; roqu; roqo</AUni> -<AUni ws="qvm-x-ame">ruqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b9d77efa-c8ee-462c-81dc-0fb40c48ba5f" ownerguid="e11d6360-6fa9-45a9-a23e-2252a301cf86"> -<ExampleWords> -<AUni ws="en">leaven</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to adding leaven to food?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b9d8d03d-b854-476c-b3ac-038bf76eefc4" ownerguid="87bd0d45-8a94-41cb-9864-90d53a11a4b9"> -<ExampleWords> -<AUni ws="en">law</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to the law?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="b9d974a6-ce45-488a-a568-d0aafffa7550" ownerguid="983054b6-230a-43b7-aeeb-9025e4467f10"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">yesterday</AUni> -<AUni ws="es">ayer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d60f831a-d0d8-44dc-a441-a1ca7544990d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="PunctuationForm" guid="b9dacc88-13fd-471b-b4aa-c7ba950df177"> -<Form> -<Str> -<Run ws="en">aransitive</Run> -</Str> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="b9dc1f62-e31d-42cd-9789-67d46df6c735" ownerguid="90fe0665-199b-47fe-83cf-6f73dde8ae80"> -<Form> -<AUni ws="qvm-x-ach">rondëru</AUni> -<AUni ws="qvm-x-acl">rondëru; rondëru; rondëro</AUni> -<AUni ws="qvm-x-akh">rondëru</AUni> -<AUni ws="qvm-x-akl">rondëru; rondëru; rondëro</AUni> -<AUni ws="qvm-x-ame">rondëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="b9dda8d3-bf05-45db-a8fd-1b0ec770e9c0" ownerguid="bf521591-5c65-4164-afc3-c4ea62eef33a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="99b722c9-6bc7-41e7-9d59-ff1e57d3cf64" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="b9e1de21-95c0-4fae-8b71-172dd61e3f4b" ownerguid="ebc236df-9c56-400c-8715-c20015701b3b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="082c1a59-b994-4fd1-8eef-702b20580282" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">yes</AUni> -<AUni ws="es">sí</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e8f5f1cc-327f-4205-98f5-89dfdee9fad4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="b9e273b2-9d83-41e3-bc22-7f5b76fc17ae"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shuplu</AUni> -<AUni ws="qvm-x-acl">shuplu; shuplo</AUni> -<AUni ws="qvm-x-akh">shuplu</AUni> -<AUni ws="qvm-x-akl">shuplu; shuplo</AUni> -<AUni ws="qvm-x-ame">shuplu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shupllu.v</AUni> -<AUni ws="qvm-x-acl">*shupllu.v</AUni> -<AUni ws="qvm-x-akh">*shupllu.v</AUni> -<AUni ws="qvm-x-akl">*shupllu.v</AUni> -<AUni ws="qvm-x-ame">*shupllu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.642" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7e14da80-3278-4ca8-9b23-c71263b7945f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shupllu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e5ba30aa-7d56-4d5a-a2b6-d50709b73d5d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d9b61cb2-0a0b-411e-9d05-581e91ba0d1c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shupllu.v 
\entryTyp root 
\gENG to.blister 
\gSPN ampollar 
\e *shupllu.v 
\c V1 
\ach shuplu 
\akh shuplu 
\acl shuplu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shuplo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shuplu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shuplo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shuplu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="b9e3d614-cb46-46b0-9d87-aa1c2f2ba563" ownerguid="12e5427f-6be6-4fcd-9834-c8ae477fd415"> -<Form> -<AUni ws="qvm-x-ach">esclävu</AUni> -<AUni ws="qvm-x-acl">esclävu; esclävu; esclävo</AUni> -<AUni ws="qvm-x-akh">esclävu</AUni> -<AUni ws="qvm-x-akl">esclävu; esclävu; esclävo</AUni> -<AUni ws="qvm-x-ame">esclävu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="b9e5f7d4-7799-4116-b176-ae685aebdc0c" ownerguid="defbe920-aa69-4033-b0d9-f0194c13fe90"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="b9e6271f-afac-4860-8169-61212e1a0825" ownerguid="2c071d8c-555b-40f8-b225-e03adcd13b58"> -<Form> -<AUni ws="qvm-x-ach">amansa</AUni> -<AUni ws="qvm-x-acl">amansa</AUni> -<AUni ws="qvm-x-akh">amansa</AUni> -<AUni ws="qvm-x-akl">amansa</AUni> -<AUni ws="qvm-x-ame">amansa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="b9e694b5-5132-4748-a2c6-c2abd5a269b9" ownerguid="501dcdfc-ed38-44ad-a8bf-00e1d93b23ff"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wanu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wanu; wano</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wanu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wanu; wano</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wanu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="9315bafb-8125-42cb-ac3d-613c760213b3" t="r" /> -</Morph> -<Msa> -<objsur guid="52c4e986-5fd0-4705-87fe-8ddc628aff31" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="b9e6a7bb-0e8a-4329-a231-8613403ff87d" ownerguid="efc668bc-6e64-498d-8e03-c8c829fe229c"> -<Form> -<AUni ws="qvm-x-ach">leöna</AUni> -<AUni ws="qvm-x-acl">leöna</AUni> -<AUni ws="qvm-x-akh">leöna</AUni> -<AUni ws="qvm-x-akl">leöna</AUni> -<AUni ws="qvm-x-ame">leöna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b9ed2ff8-5001-4b0e-b262-e147eaa5bd11" ownerguid="75eb23c7-28b5-4c98-937a-1d8f371b24cf"> -<ExampleWords> -<AUni ws="en">pilot</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who flies an airplane?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="b9ee1157-49cd-437b-9cb7-af6c329dc513" ownerguid="9bb6f1ed-7170-4caa-a14c-747fd95ca30e"> -<ExampleWords> -<AUni ws="en">sugar, sweetener, granulated sugar, white sugar, brown sugar, sugar cube, grain of sugar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to sugar?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="b9f0dd42-87d2-4abe-8a00-8d7c6d6715e6" ownerguid="22bf031c-cd0a-4ae5-8e49-a569cad42ab1"> -<Form> -<AUni ws="qvm-x-ach">api</AUni> -<AUni ws="qvm-x-acl">api; api; ape</AUni> -<AUni ws="qvm-x-akh">api</AUni> -<AUni ws="qvm-x-akl">api; api; ape</AUni> -<AUni ws="qvm-x-ame">api</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="b9f24c23-76cd-4848-8b2b-440fb950812e" ownerguid="5998134f-2dce-489d-9355-b67044c7611b"> -<Form> -<AUni ws="qvm-x-ach">mati</AUni> -<AUni ws="qvm-x-acl">mati; mati; mate</AUni> -<AUni ws="qvm-x-akh">mati</AUni> -<AUni ws="qvm-x-akl">mati; mati; mate</AUni> -<AUni ws="qvm-x-ame">mati</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="b9f4980e-a057-413a-b67b-38593f375941" ownerguid="0fa0be21-2246-40b2-86b1-ca572fe8c16c"> -<ExampleWords> -<AUni ws="en">bore (v), put you to sleep</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to causing someone to feel uninterested?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="b9f8e4f3-7411-4695-9fb9-b914f8829314" ownerguid="227fb664-a77f-41ed-8ccc-1daafc834d73"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="ba012533-980e-48ff-96be-076164ebfda8" ownerguid="c677b4bb-efe4-4099-afb2-75c6b35fd953"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="ba02296d-f69e-4c43-8ac3-24edb95a1a2f" ownerguid="719ddef3-f5fa-4ae5-a51b-a3457e46088e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="ba04ffb0-cafe-4177-a9e4-d13805974839"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chulpa</AUni> -<AUni ws="qvm-x-acl">chulpa</AUni> -<AUni ws="qvm-x-akh">chulpa</AUni> -<AUni ws="qvm-x-akl">chulpa</AUni> -<AUni ws="qvm-x-ame">chulpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trullpa</AUni> -<AUni ws="qvm-x-acl">*trullpa</AUni> -<AUni ws="qvm-x-akh">*trullpa</AUni> -<AUni ws="qvm-x-akl">*trullpa</AUni> -<AUni ws="qvm-x-ame">*trullpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.168" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8039de50-9579-4b83-9c1d-55fd699cf26d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trullpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="53bef0b4-c16f-427f-9ae1-b3113d19eefe" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="586cce6f-5cdb-4a14-b3bf-1b22680b0ea6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trullpa 
\entryTyp root 
\gENG manure 
\gSPN abono.orgánico 
\e *trullpa 
\c N0 
\ach chulpa 
\akh chulpa 
\acl chulpa 
\akl chulpa 
\ame chulpa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ba064353-4493-46ca-a07b-468755a8f47f" ownerguid="469846b5-c4d6-4062-996b-2ec2cbfc73dd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">catholic</AUni> -<AUni ws="es">católica</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dfc60eba-cdad-45f7-b17f-91dea6bc7dec" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="ba06de9e-63e1-43e6-ae94-77bea498379a" ownerguid="b32a39c4-43ff-4522-aed0-b2d5b8ad7157"> -<Abbreviation> -<AUni ws="en">2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words for a person or all mankind.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>9 People; 9A Human Beings</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Person</AUni> -</Name> -<Questions> -<objsur guid="727ee1c0-135d-4f99-968a-c7fb4e55a992" t="o" /> -<objsur guid="fdfcfd0b-8f88-47fd-a814-e1b4e334b50d" t="o" /> -<objsur guid="a8e564b5-8799-428f-90fd-553a60581de3" t="o" /> -<objsur guid="f6ed379c-67c6-41d6-9205-5c74361fa28c" t="o" /> -<objsur guid="797149a9-eeb0-4bf7-ae2c-5b34cd7079f5" t="o" /> -<objsur guid="aa95cd60-7d14-45e0-b174-af9b9dc73d11" t="o" /> -<objsur guid="0a8b988a-6a14-4b2a-8831-ab27bf97bf14" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="1b0270a5-babf-4151-99f5-279ba5a4b044" t="o" /> -<objsur guid="7fe69c4c-2603-4949-afca-f39c010ad24e" t="o" /> -<objsur guid="38bbb33a-90bf-4a2c-a0e5-4bde7e134bd9" t="o" /> -<objsur guid="f7706644-542f-4fcb-b8e1-e91d04c8032a" t="o" /> -<objsur guid="32bebe7e-bdcc-4e40-8f0a-894cd6b26f25" t="o" /> -<objsur guid="50db27b5-89eb-4ffb-af82-566f51c8ec0b" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="ba0a35cc-9157-4c5c-acb6-3dc1d6a6cb3d" ownerguid="7dbd7f43-4291-47f8-a392-6fdf3c98d522"> -<ExampleWords> -<AUni ws="en">penis, scrotum, testicle, testis, foreskin, loins</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the male organs?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="ba0a3fc5-861e-42bd-ab09-f549603f3e63" ownerguid="fc9f2ee6-1f5a-49a4-9786-df15a5a20ef2"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="d4e67c71-cc73-47e8-89d2-c53a44cd088e" t="o" /> -<objsur guid="22149171-89c8-4177-abca-775d9d91c881" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="ba0a8b3c-a0f5-4463-b43b-26b82c1e9fd2" ownerguid="df9ee372-e92e-4f73-aac5-d36908497698"> -<ExampleWords> -<AUni ws="en">thought, concept, consideration, fact, idea, image, notion, opinion, sentiment, syllogism</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a single thought?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ba102f53-ee7a-462f-82c4-feee4f18003f" ownerguid="6804db44-b71b-4452-98b1-b726bc7cf022"> -<ExampleWords> -<AUni ws="en">loud, roaring, blaring, thunderous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a loud sound?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ba115d02-28e5-414e-b82b-4e5e672ce691" ownerguid="7d629c80-e5c2-409f-a592-39c56e9ace6d"> -<ExampleWords> -<AUni ws="en">detachment, squadron, task force, fleet, flotilla</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What types of naval units are there?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ba12b579-2eec-4f6d-b0cc-39db020128c8" ownerguid="0e312109-1cc2-4645-96f5-97caeaf7c869"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">litter</AUni> -<AUni ws="es">andas</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6abd48ab-6c43-40d4-8da3-8320879d681b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoInflAffixTemplate" guid="ba1af743-893a-47eb-b359-86056addd123" ownerguid="7a161b46-6c84-4aea-9bb7-4af1aaee8790"> -<Disabled val="False" /> -<Final val="True" /> -<Name> -<AUni ws="en">structure for optionally possessed nouns</AUni> -</Name> -<SuffixSlots> -<objsur guid="6c1a55b7-decb-4da3-86ca-e0b8dc1a89c0" t="r" /> -<objsur guid="42bc87c7-a17e-4c3e-850a-437f19ff6b36" t="r" /> -<objsur guid="b5380f6d-8ec4-4a58-806f-5e3caeadb9df" t="r" /> -<objsur guid="6c1a55b7-decb-4da3-86ca-e0b8dc1a89c0" t="r" /> -<objsur guid="fda4c591-1349-4f9e-ab87-905ae2aa25e1" t="r" /> -<objsur guid="c1118d19-b22a-4beb-87cf-1c1faf476ece" t="r" /> -</SuffixSlots> -</rt> -<rt class="CmDomainQ" guid="ba1b3e35-ed76-4189-be60-e0077f474945" ownerguid="8d5c28b8-91be-40b0-b6c2-4d5adbb495a3"> -<ExampleWords> -<AUni ws="en">disgust, abhorrence, detestation, loathing, nausea, revulsion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of disgust?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="ba1e8d2b-7d3e-4b65-a9be-ee1a4063c796" ownerguid="2b6f9af7-04ee-4030-a2cd-87d55959caa8"> -<Abbreviation> -<AUni ws="en">3.4.2.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.143" /> -<DateModified val="2022-9-23 16:55:8.143" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling worried--to feel bad because you think something bad might happen.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25U Worry, Anxiety, Distress, Peace</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Worried</AUni> -</Name> -<Questions> -<objsur guid="a3644ca0-2f1a-42ab-86cf-33bdd1494e0d" t="o" /> -<objsur guid="044a6b20-6445-4304-b144-88df29012ca7" t="o" /> -<objsur guid="687b061c-2c54-42ae-9513-be04f446ca23" t="o" /> -<objsur guid="21ba7841-486a-487a-9c62-0ec66e4cbef6" t="o" /> -<objsur guid="4c558898-5255-4498-8c0c-1d905975a3c5" t="o" /> -<objsur guid="6f4882cd-e09b-44a5-991c-a005c3690086" t="o" /> -<objsur guid="19226a49-7c8e-4fb3-9297-e3517753c31b" t="o" /> -<objsur guid="25e455c0-9dca-4d83-a299-85b2c467cc1c" t="o" /> -<objsur guid="ff7cb512-8565-48df-abdb-372e8cb1ef2c" t="o" /> -<objsur guid="1e00e58f-5974-4d3e-b0af-71810371ab60" t="o" /> -<objsur guid="62b14abf-474c-4946-a312-ce86465048a2" t="o" /> -<objsur guid="c65aeffb-3e72-487c-9c0d-c688841d6e69" t="o" /> -<objsur guid="41755edb-69ae-4ef8-bd96-10aec552c55e" t="o" /> -<objsur guid="00bf9da7-4a8f-49fd-9187-13ccd5726d64" t="o" /> -<objsur guid="67a374ce-02e1-43e5-8b07-0445842874bb" t="o" /> -<objsur guid="00f8aa99-afe0-4634-b463-7790753770e1" t="o" /> -<objsur guid="cc0bc01c-6905-4218-b606-40c01d19a64e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="ba1f8da8-9d02-48ea-a638-e2ddea30ddaa" ownerguid="d405a3d4-b41e-4c60-8841-321e5b37759d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ta</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ta</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ta</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ta</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ta</Run> -</AStr> -</Form> -<Morph> -<objsur guid="4f3f1430-f126-405a-98a8-5d0b732eb948" t="r" /> -</Morph> -<Msa> -<objsur guid="6debf4e9-614a-4dc3-aaa7-0d6a27afc1a7" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="ba24e7de-b697-44e5-b40f-2ed2b312bc1a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">suchu</AUni> -<AUni ws="qvm-x-acl">suchu; suchu; sucho</AUni> -<AUni ws="qvm-x-akh">suchu</AUni> -<AUni ws="qvm-x-akl">suchu; suchu; sucho</AUni> -<AUni ws="qvm-x-ame">suchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*sutru</AUni> -<AUni ws="qvm-x-acl">*sutru</AUni> -<AUni ws="qvm-x-akh">*sutru</AUni> -<AUni ws="qvm-x-akl">*sutru</AUni> -<AUni ws="qvm-x-ame">*sutru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.762" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="830dcfc7-adce-43ee-bd1f-0034d41918a5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*sutru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="513d0332-57fc-4099-b88a-458d8876e06d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="822169b9-3467-4708-b8c5-da97ca374b7f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *sutru 
\entryTyp root 
\gENG small 
\gSPN pequeño 
\e *sutru 
\c N0 
\ach suchu 
\akh suchu 
\acl suchu / _# 
\acl suchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sucho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl suchu / _# 
\akl suchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sucho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame suchu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="ba287029-72d0-4c95-a47f-4f5dd64b3064" ownerguid="19b3fbee-ef66-47f4-bc63-edb56b02ae91"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="ba2c65d8-855f-4365-a907-e877a449342c" ownerguid="fe8d133a-6bcd-4f0a-94ac-b45f272aa226"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ba2cb1da-d87d-4301-b2fe-550b5b3a01a3" ownerguid="df7ccd8c-3186-482f-8672-93f0614cedf2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">leg</AUni> -<AUni ws="es">pierna</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9f021d93-fa71-4776-adfe-40212c6105f1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="ba2cc424-08aa-49b5-9fac-9d0ee5df9a2e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">segui:du</AUni> -<AUni ws="qvm-x-acl">segui:du; segui:du; segui:do</AUni> -<AUni ws="qvm-x-akh">segui:du</AUni> -<AUni ws="qvm-x-akl">segui:du; segui:du; segui:do</AUni> -<AUni ws="qvm-x-ame">segui:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+seguido</AUni> -<AUni ws="qvm-x-acl">+seguido</AUni> -<AUni ws="qvm-x-akh">+seguido</AUni> -<AUni ws="qvm-x-akl">+seguido</AUni> -<AUni ws="qvm-x-ame">+seguido</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.510" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e724e4ad-602d-41a0-9d7d-5a18975bdf49" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+seguido</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9695a660-1296-45ad-87d2-479635346293" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ee395576-086e-410d-8ec6-dcfc602613ae" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +seguido 
\entryTyp root 
\gENG 
\gSPN 
\e +seguido 
\c N0 
\ach segui:du 
\akh segui:du 
\acl segui:du / _# 
\acl segui:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl segui:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl segui:du / _# 
\akl segui:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl segui:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame segui:du 
\i PRO 25.17 Amïguyqui captinpis seguïdoga ama aywapaytsu.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ba2d36b0-5889-4e36-832a-87cc71d75cf9" ownerguid="a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f"> -<ExampleWords> -<AUni ws="en">catch sight of, catch a glimpse of, get a look at</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to seeing something for a very short time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ba32e8c8-8946-4047-8412-731679695570" ownerguid="929720f5-c264-49fd-b817-3e1ebff6e1de"> -<ExampleWords> -<AUni ws="en">gourd, pumpkin, squash, eggplant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of gourds are eaten?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ba339cf2-8191-4519-9289-a9d996eb059c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">justán; justan</AUni> -<AUni ws="qvm-x-acl">justán; justan</AUni> -<AUni ws="qvm-x-akh">justán; justan</AUni> -<AUni ws="qvm-x-akl">justán; justan</AUni> -<AUni ws="qvm-x-ame">justán; justan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+justán</AUni> -<AUni ws="qvm-x-acl">+justán</AUni> -<AUni ws="qvm-x-akh">+justán</AUni> -<AUni ws="qvm-x-akl">+justán</AUni> -<AUni ws="qvm-x-ame">+justán</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.902" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="edff9f47-ac59-4a01-acc7-7fef452146d2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+justán</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2e569721-7d70-4723-a945-dd4aaf460e86" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d5375983-c269-4cdb-8925-500cc9a50ccd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +justán 
\entryTyp root 
\gENG 
\gSPN 
\e +justán 
\c N0 
\mp +FinalC 
\ach justán / _# 
\ach justan / ~_# 
\akh justán / _# 
\akh justan / ~_# 
\acl justán / _# 
\acl justan / ~_# 
\akl justán / _# 
\akl justan / ~_# 
\ame justán / _# 
\ame justan / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ba34ee9a-481b-46db-95c9-692822693e9d" ownerguid="80d33b5e-940c-4a5a-b42e-0fe8ac79a904"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">step</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7e6b3b3c-6692-48df-8e4d-b6344c68a962" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ba378090-694c-4cea-a020-bf91f5670129" ownerguid="ed898eea-b9c2-4cbe-aa72-abf64b226f4e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="ba38505d-9033-4eaf-ac46-8a5e8d4f335a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ausiliu; ausilio</AUni> -<AUni ws="qvm-x-acl">ausiliu; ausiliu; ausilio</AUni> -<AUni ws="qvm-x-akh">ausiliu; ausilio</AUni> -<AUni ws="qvm-x-akl">ausiliu; ausiliu; ausilio</AUni> -<AUni ws="qvm-x-ame">ausiliu; ausilio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+auxilio</AUni> -<AUni ws="qvm-x-acl">+auxilio</AUni> -<AUni ws="qvm-x-akh">+auxilio</AUni> -<AUni ws="qvm-x-akl">+auxilio</AUni> -<AUni ws="qvm-x-ame">+auxilio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.880" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="99f2af42-c1da-4158-8760-849ccbc939d3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+auxilio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aa3493ca-544b-4911-ad02-a95b4568f09c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aa82a014-c85e-403b-b0e8-63569f15f7d9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +auxilio 
\entryTyp root 
\gENG help 
\gSPN auxilio 
\e +auxilio 
\c N0 
\ach ausiliu / ~_# 
\ach ausilio / _# 
\akh ausiliu / ~_# 
\akh ausilio / _# 
\acl ausiliu / ~_# 
\acl ausiliu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ausilio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ausiliu / ~_# 
\akl ausiliu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ausilio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ausiliu / ~_# 
\ame ausilio / _# 
\i 1KI 22.32 Atacananpag tumareg juntapaycuptinmi Josafatga gaparargan ausiliuta manacushpan. 
\i PRO 1.28 Tsaynog pasashushgayqui höra ausiliuta manamaptiquipis manami cäsushayquitsu.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="ba387140-3344-479d-a4f2-77f1eb1090d0" ownerguid="06b883a4-8770-4ddb-a837-c6d6037f540f"> -<Form> -<AUni ws="qvm-x-ach">utsu</AUni> -<AUni ws="qvm-x-acl">utsu; utso</AUni> -<AUni ws="qvm-x-akh">utsu</AUni> -<AUni ws="qvm-x-akl">utsu; utso</AUni> -<AUni ws="qvm-x-ame">utsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="ba38bd6a-cb0d-4a47-9551-3f14a6835e96" ownerguid="638a5fec-c76f-4f8c-b395-4d8be3400239"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="ba3dfe4c-7db2-40f0-8994-eb010001f6c7" ownerguid="34d2e65f-4a27-45a4-8afc-c53b886f9909"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="ff14a8d5-3ca7-458c-8ad6-d80d570e0651" t="o" /> -<objsur guid="84c30ada-27ae-47a5-9879-928348796150" t="o" /> -<objsur guid="a8c0276e-ce39-4768-a7ba-5a1b94532b3c" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="ba4126df-8aeb-422a-aff0-56091c6669c8" ownerguid="0037693a-ae42-4e5c-85f5-10a05482d4ee"> -<ExampleWords> -<AUni ws="en">what's its name, thingy, thingamajig, whatchamacallit, whatsit, such and such</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used to refer to something when you can't remember what it is called?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ba43e6c9-24f6-4c3e-a923-237e7d98a2f9" ownerguid="70f80041-af88-4521-9ebd-21d8f0b0d131"> -<ExampleWords> -<AUni ws="en">at the front, at the head of, leading</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to being at the front of a line?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ba44c67a-8cb0-4c76-85bd-69639417f5dd" ownerguid="47feee3e-80e1-469a-911c-0c550b37a2f8"> -<ExampleWords> -<AUni ws="en">necessary, compulsory, essential, imperative, indispensable, inevitable, mandatory, obligatory, required, unavoidable, urgent, vital</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is necessary?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="ba458e9a-a8bb-4ba0-858a-569b8db65261"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">qarqakun</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="ba4615ff-456d-4ecb-9457-800f9ff14841" ownerguid="a0e224da-c76a-46a9-9b95-fa6e2402455f"> -<Form> -<AUni ws="qvm-x-ach">malogra</AUni> -<AUni ws="qvm-x-acl">malogra</AUni> -<AUni ws="qvm-x-akh">malogra</AUni> -<AUni ws="qvm-x-akl">malogra</AUni> -<AUni ws="qvm-x-ame">malogra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="ba463dc0-5214-4d18-93f2-b598d4acc89a" ownerguid="41a089de-32a7-4b25-b4d7-2e50c22f38a7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">warm</AUni> -<AUni ws="es">cálido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="99b970e4-5deb-48ed-9dd5-ce6e1726d3f8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ba4f9379-f55f-4bd6-9ded-321f83e504e6" ownerguid="744d1402-05f5-4491-9c15-a5af03595edb"> -<ExampleWords> -<AUni ws="en">go bad, go wrong, turn to crime, fall, fall into sin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to someone becoming bad?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ba4f9b46-0704-4a5f-a6fe-0e30f88b3b8d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa:rish</AUni> -<AUni ws="qvm-x-acl">pa:rish</AUni> -<AUni ws="qvm-x-akh">pa:rish</AUni> -<AUni ws="qvm-x-akl">pa:rish</AUni> -<AUni ws="qvm-x-ame">pa:rish</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pares</AUni> -<AUni ws="qvm-x-acl">+pares</AUni> -<AUni ws="qvm-x-akh">+pares</AUni> -<AUni ws="qvm-x-akl">+pares</AUni> -<AUni ws="qvm-x-ame">+pares</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.719" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7950fd3b-1398-43b1-bffb-51636fdb20c3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pares</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ad9ba918-a713-499c-99d2-5a9f603eb978" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e739e85b-831f-4506-9dcb-a46709f51b43" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pares 
\entryTyp root 
\gENG afterbirth 
\gSPN pares 
\e +pares 
\c N0 
\mp +FinalC 
\ach pa:rish 
\akh pa:rish 
\acl pa:rish 
\akl pa:rish 
\ame pa:rish</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ba4fd4b7-bc9c-4de2-b98d-90b454d48b74" ownerguid="d030f0c7-31a3-47da-be35-46f1eba63ae9"> -<ExampleWords> -<AUni ws="en">liking, admiration, adoration, affection, approval, enjoyment, fondness for, pleasure, pride, affinity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the feeling of liking something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ba506c00-02c6-4f6a-8222-135a37c52c53"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">llausha</AUni> -<AUni ws="qvm-x-acl">llausha</AUni> -<AUni ws="qvm-x-akh">llawsha</AUni> -<AUni ws="qvm-x-akl">llawsha</AUni> -<AUni ws="qvm-x-ame">llawsha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llawsha</AUni> -<AUni ws="qvm-x-acl">*llawsha</AUni> -<AUni ws="qvm-x-akh">*llawsha</AUni> -<AUni ws="qvm-x-akl">*llawsha</AUni> -<AUni ws="qvm-x-ame">*llawsha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.184" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1958aa79-e531-41dc-a190-bb47e69b842f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llawsha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="614d7a90-efa9-4a9b-b44f-828915b4b9fe" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b6eba5d8-dc1c-40fa-8cfc-de4ee2b7bc7a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llawsha 
\entryTyp root 
\gENG be.sticky 
\gSPN ser.pegajoso 
\e *llawsha 
\c V1 
\ach llausha 
\akh llawsha 
\acl llausha 
\akl llawsha 
\ame llawsha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ba508e57-67cb-4a75-95e5-971e508772a9" ownerguid="89085bab-7f2a-44cb-99c1-0d2c20de4e95"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="10111c9b-83f7-4740-acb6-95c807fb8c87" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="41d53c0b-5ec9-4a23-b700-39b482206ba5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="ba56249f-3986-4cfd-b754-c7be8132001c" ownerguid="ec3db861-a8b0-47b5-a12b-ef9a8a37dfaf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">professional</AUni> -<AUni ws="es">profesional</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a32ab2c8-34e0-4b1b-8552-35b8223e2aed" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="ba576ff6-020c-40ad-b716-e3e46303d189" ownerguid="5ec4c46f-784d-4e6e-a3ab-e8e8e603c376"> -<Form> -<AUni ws="qvm-x-ach">goshni</AUni> -<AUni ws="qvm-x-acl">goshni; goshne</AUni> -<AUni ws="qvm-x-akh">qoshni</AUni> -<AUni ws="qvm-x-akl">qoshni; qoshne</AUni> -<AUni ws="qvm-x-ame">qushni</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="ba589f34-b164-4bdf-b0d9-ebe9ec860f23" ownerguid="fb277c1a-3699-4713-b9e1-14dd19d2815d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">andean goose</AUni> -<AUni ws="es">ganso andino</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cceeae63-88a8-4f9e-a9e4-3e345300c452" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="ba5bb5ea-0131-4dca-aa3f-e26f433e9548" ownerguid="1383f82a-bf94-4fd3-97c6-2f922df73929"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="44d1e099-ef7e-4e43-9940-4a1cb9135a0b" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">cap</AUni> -<AUni ws="es">gorra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8d084b5d-2249-4a0d-94ca-7fab556eea92" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="ba5bf41f-8208-45b1-9b48-dda5db96bf96" ownerguid="a459dfd1-54ee-4b03-845f-35041413b1aa"> -<Form> -<AUni ws="qvm-x-ach">intindi</AUni> -<AUni ws="qvm-x-acl">intindi; intinde</AUni> -<AUni ws="qvm-x-akh">intindi</AUni> -<AUni ws="qvm-x-akl">intindi; intinde</AUni> -<AUni ws="qvm-x-ame">intindi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="ba5c0547-c470-496f-a206-4109f1333f3c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mantsa</AUni> -<AUni ws="qvm-x-acl">mantsa</AUni> -<AUni ws="qvm-x-akh">mantsa</AUni> -<AUni ws="qvm-x-akl">mantsa</AUni> -<AUni ws="qvm-x-ame">mantsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mancha.r</AUni> -<AUni ws="qvm-x-acl">*mancha.r</AUni> -<AUni ws="qvm-x-akh">*mancha.r</AUni> -<AUni ws="qvm-x-akl">*mancha.r</AUni> -<AUni ws="qvm-x-ame">*mancha.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.305" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fd46b7c6-1a10-4eb0-99a1-37aa89315701" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mancha.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="edbc24cd-33ff-44d6-90b3-d4e601cf162e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9eb190fd-172d-4ab4-bffa-e3ddcbcaab63" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mancha.r 
\entryTyp root 
\gENG fearfully 
\gSPN con.temor 
\e *mancha.r 
\c R0 
\ach mantsa 
\akh mantsa 
\acl mantsa 
\akl mantsa 
\ame mantsa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ba5ce436-48f2-4039-b025-c915538ed40c" ownerguid="110404f2-fab5-4550-847c-c4c0e6f78f70"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="74222752-b29c-4ae5-9fde-5c1521abe08e" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">sideburn</AUni> -<AUni ws="es">patilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4b462f2f-0d40-4bbf-ba4d-df13fcc5a1e0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="ba5e0bb8-4705-4631-bd60-4586d1dc7306" ownerguid="a56ab66b-6c3c-4116-9ada-e8430569dca8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fill</AUni> -<AUni ws="es">llenar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1db7e5ac-01ea-4a41-8a2f-af91bdf73c0f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="ba608290-4c3c-4144-8b70-10aa77bc0243"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">purifica</AUni> -<AUni ws="qvm-x-acl">purifica</AUni> -<AUni ws="qvm-x-akh">purifica</AUni> -<AUni ws="qvm-x-akl">purifica</AUni> -<AUni ws="qvm-x-ame">purifica</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+purificar</AUni> -<AUni ws="qvm-x-acl">+purificar</AUni> -<AUni ws="qvm-x-akh">+purificar</AUni> -<AUni ws="qvm-x-akl">+purificar</AUni> -<AUni ws="qvm-x-ame">+purificar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.12" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dd0b39f3-c51c-46ce-b9e2-cee67a9d9fd0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+purificar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="552a3444-6065-4aab-abcc-3f848c339134" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d74f70b2-d286-473a-8d89-933a142093e9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +purificar 
\entryTyp root 
\gENG purify 
\gSPN purificarse 
\e +purificar 
\c V2 
\ach purifica 
\akh purifica 
\acl purifica 
\akl purifica 
\ame purifica 
\i Gen 35.2 Nircurna purificacushpayqui röpayquita trucacäriy.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="ba6157fd-7cde-47dc-87f4-3a92d09a1bc3" ownerguid="45ecf038-d244-4f96-a002-9d30d505854e"> -<Form> -<AUni ws="qvm-x-ach">sobornu</AUni> -<AUni ws="qvm-x-acl">sobornu; soborno</AUni> -<AUni ws="qvm-x-akh">sobornu</AUni> -<AUni ws="qvm-x-akl">sobornu; soborno</AUni> -<AUni ws="qvm-x-ame">sobornu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="ba646443-df49-4855-826c-b3d58f83799f" ownerguid="cf0ac4da-df0e-47ff-bb56-2d20ec9e5f87"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="ba64d3d5-5af6-46b1-a3f8-ce6187140999" ownerguid="804bed79-da20-4383-b1f1-b842eda4c6e9"> -<Form> -<AUni ws="qvm-x-ach">religiösu</AUni> -<AUni ws="qvm-x-acl">religiösu; religiösu; religiöso</AUni> -<AUni ws="qvm-x-akh">religiösu</AUni> -<AUni ws="qvm-x-akl">religiösu; religiösu; religiöso</AUni> -<AUni ws="qvm-x-ame">religiösu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ba665af0-0a86-4fd2-8e9d-e43376d6a7a3" ownerguid="db2232d9-8b17-4920-936f-2b6249c6f7fa"> -<ExampleWords> -<AUni ws="en">loot, the goods, stolen goods, haul, hot items, tainted money</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to something that is stolen?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ba67b8ec-8279-40cf-8c38-dd9a0e490ad0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waru</AUni> -<AUni ws="qvm-x-acl">waru; waru; waro</AUni> -<AUni ws="qvm-x-akh">waru</AUni> -<AUni ws="qvm-x-akl">waru; waru; waro</AUni> -<AUni ws="qvm-x-ame">waru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waru.n</AUni> -<AUni ws="qvm-x-acl">*waru.n</AUni> -<AUni ws="qvm-x-akh">*waru.n</AUni> -<AUni ws="qvm-x-akl">*waru.n</AUni> -<AUni ws="qvm-x-ame">*waru.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.536" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3d64aa68-b0e4-4015-9db9-7a5cb6004fa2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waru.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4ede6541-e643-4922-b257-83c0a534b7a6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3d821d25-e699-43d3-a48c-09878ccf207f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waru.n 
\entryTyp root 
\gENG crossing 
\gSPN 
\e *waru.n 
\c N0 
\ach waru 
\akh waru 
\acl waru / _# 
\acl waru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl waro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl waru / _# 
\akl waru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl waro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame waru 
\i Ragrata juclayla gueru tsacaraptin jutin cayca waru. Ishcay gueru tsacaraptinragmi tsaca.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ba685b9f-4cbe-4c3a-be7a-979fd014c56f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pu:tsa</AUni> -<AUni ws="qvm-x-acl">pu:tsa</AUni> -<AUni ws="qvm-x-akh">pu:tsa</AUni> -<AUni ws="qvm-x-akl">pu:tsa</AUni> -<AUni ws="qvm-x-ame">pu:tsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pu:cha</AUni> -<AUni ws="qvm-x-acl">*pu:cha</AUni> -<AUni ws="qvm-x-akh">*pu:cha</AUni> -<AUni ws="qvm-x-akl">*pu:cha</AUni> -<AUni ws="qvm-x-ame">*pu:cha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.962" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d6991688-cb0e-4ea3-abe7-bc47fd346e66" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pu:cha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c764e6df-b66a-4691-8d9e-2b3e5e8e13e0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1903ba2d-1a43-4b32-8965-60bc673915ec" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pu:cha 
\entryTyp root 
\gENG ooze 
\gSPN exudar 
\e *pu:cha 
\c V1 
\ach pu:tsa 
\akh pu:tsa 
\acl pu:tsa 
\akl pu:tsa 
\ame pu:tsa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ba68a992-72d5-44d8-8e11-9edab2c71522" ownerguid="a0da53a2-5caf-444d-aeb4-5c0799f72939"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">others</AUni> -<AUni ws="es">otros</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ee6cab1c-08ed-45e3-abc8-e72015ab930a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="StTxtPara" guid="ba68d75f-8408-48e8-87be-ace5fb79182f" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">rikatsipäkumashqanki</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="55a0c853-efdb-46c1-8cb6-0b6353ca1872" t="o" /> -</Segments> -</rt> -<rt class="LexSense" guid="ba6deb0f-7802-4a32-ad48-22057353d38e" ownerguid="4a6b60b0-7b96-4437-936b-00432e82384f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">whiten</AUni> -<AUni ws="es">blanquear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="82454fe0-b093-4b1e-ab11-3e5a58dc3e39" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="ba70183c-1698-489a-a897-4fef6500fdd3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cordón; cordon</AUni> -<AUni ws="qvm-x-acl">cordón; cordon</AUni> -<AUni ws="qvm-x-akh">cordón; cordon</AUni> -<AUni ws="qvm-x-akl">cordón; cordon</AUni> -<AUni ws="qvm-x-ame">cordón; cordon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cordón</AUni> -<AUni ws="qvm-x-acl">+cordón</AUni> -<AUni ws="qvm-x-akh">+cordón</AUni> -<AUni ws="qvm-x-akl">+cordón</AUni> -<AUni ws="qvm-x-ame">+cordón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.192" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9d112b14-56c8-41a2-9f0f-71b535608344" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cordón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="82cd3478-de88-4677-a83b-f9ce5dc06c23" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a888ffb5-28ca-40b1-a35a-f567870085b8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cordón 
\entryTyp root 
\gENG cord 
\gSPN cordón 
\e +cordón 
\c N0 
\mp +FinalC 
\ach cordón / _# 
\ach cordon / ~_# 
\akh cordón / _# 
\akh cordon / ~_# 
\acl cordón / _# 
\acl cordon / ~_# 
\akl cordón / _# 
\akl cordon / ~_# 
\ame cordón / _# 
\ame cordon / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ba760e74-4389-4262-bf25-19ca25a06066"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">usya; usya:</AUni> -<AUni ws="qvm-x-acl">usya; usya:</AUni> -<AUni ws="qvm-x-akh">usya; usya:</AUni> -<AUni ws="qvm-x-akl">usya; usya:</AUni> -<AUni ws="qvm-x-ame">usya; usya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*usya:</AUni> -<AUni ws="qvm-x-acl">*usya:</AUni> -<AUni ws="qvm-x-akh">*usya:</AUni> -<AUni ws="qvm-x-akl">*usya:</AUni> -<AUni ws="qvm-x-ame">*usya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.292" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b9280d2a-2aa9-46b8-91ff-8284f025c44b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*usya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b1473435-f2a2-466c-9aa2-35eb335b9112" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="89051536-adc6-4800-9fd8-49c358265472" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *usya: 
\entryTyp root 
\gENG clear 
\gSPN escampar 
\e *usya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach usya foreshortened 
\ach usya: 
\akh usya foreshortened 
\akh usya: 
\acl usya foreshortened 
\acl usya: 
\akl usya foreshortened 
\akl usya: 
\ame usya foreshortened 
\ame usya: 
\i JER 5.24 Tsaynogpis manami tantiyapäcushcanquitsu micuyniquicunata shuntanayquipagpis usyätsimushgäta.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="ba77ba76-1642-4469-b5d7-9c362f835f38" ownerguid="aad2eee6-db17-49f3-bbc7-3fe7f26c4553"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ba7dd796-dded-409a-8a21-190f169dff97" ownerguid="de6b15d3-6409-4998-b03d-903133f4ad70"> -<ExampleWords> -<AUni ws="en">soprano, alto, baritone, bass</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe how high or low a person sings?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ba80ab56-d073-4c97-898e-416362d3cfea" ownerguid="d68ff392-9595-4af1-adc5-e138c7ffd2c7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">silversmith</AUni> -<AUni ws="es">platero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2d65fa03-6f0e-4834-94da-fd6e667f380e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ba80c8c9-ef39-4725-a5fd-ab8a5b991af5" ownerguid="756728a8-9eb8-4329-aee2-d6a3d64585f2"> -<ExampleWords> -<AUni ws="en">ice, water, steam</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe the states of water?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ba80cc19-a99a-4dc5-9647-41161b0def58" ownerguid="247643e1-281d-409c-9b29-ea9f202672c1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c32fa63d-4145-491b-be8d-e7b711dcdab1" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="d1ad1ae8-6ac0-4a83-bf10-504c050a02eb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="ba8370ac-4918-42c8-afa0-55ac80bb5f52"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aylu</AUni> -<AUni ws="qvm-x-acl">aylu; aylu; aylo</AUni> -<AUni ws="qvm-x-akh">aylu</AUni> -<AUni ws="qvm-x-akl">aylu; aylu; aylo</AUni> -<AUni ws="qvm-x-ame">aylu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ayllu.r</AUni> -<AUni ws="qvm-x-acl">*ayllu.r</AUni> -<AUni ws="qvm-x-akh">*ayllu.r</AUni> -<AUni ws="qvm-x-akl">*ayllu.r</AUni> -<AUni ws="qvm-x-ame">*ayllu.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.900" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b46cc4d6-1f16-4e96-82b4-1efc21e9b2d5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ayllu.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b0e3b653-038b-4d0b-b59b-79eb9cf9f453" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c2076711-27ed-4c95-902c-e75412b42a68" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ayllu.r 
\entryTyp root 
\gENG to.clothe 
\gSPN aropar 
\e *ayllu.r 
\c R0 
\ach aylu 
\akh aylu 
\acl aylu / _# 
\acl aylu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl aylo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl aylu / _# 
\akl aylu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl aylo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame aylu 
\mcc *ayllu.r / ~_ 3P.V</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ba83b14d-17ef-4af5-8c67-3979143462cb" ownerguid="af4dc9fa-dafa-43eb-b1f6-e0fe51e236c6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">meat</AUni> -<AUni ws="es">carne</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6601128e-8cfe-48a5-8f12-be237441b8a6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ba8535fe-e435-4f25-92a6-750d3c1820e7" ownerguid="ac187298-85e8-43ed-ba85-cc06a62c08ba"> -<ExampleWords> -<AUni ws="en">molt, shed, down, fledge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to animals growing fur, feathers, or new skin?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ba88bcd7-83a2-464d-902e-4f4325d8bfab" ownerguid="5446b5cf-f05a-4bb2-89eb-ce63e27040f3"> -<ExampleWords> -<AUni ws="en">duet, trio, quartet, quintet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a piece of music meant to be played or sung by two, three, or more people?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="ba88c59a-ec0a-4353-8622-bfb5fcd18776" ownerguid="62e53799-aac2-4507-a871-81ae7ef85cce"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">la</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">la</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">la</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">la</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">la</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6d85d716-492b-4928-9d6f-ab9d777e4202" t="r" /> -</Morph> -<Msa> -<objsur guid="59734ec2-b6a9-4973-bbe0-e18423cefad7" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="ba8af5d2-4037-4fa9-af9b-dc4cdde18ddf" ownerguid="d55192bb-7d8a-4535-a1ca-5f48b707a814"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ba8cb08a-a1ac-48ce-ac38-708111a42130" ownerguid="12d73f07-821e-4621-98a7-486b1619e81a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">zorrillo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5e7e8f2b-1811-4c33-96d2-c0acc755fb21" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="ba8d18bd-2556-47a0-aa33-3ebef3e90814" ownerguid="70eac6be-66e8-4827-8f2f-d15427efff60"> -<Abbreviation> -<AUni ws="en">3.5.7.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.174" /> -<DateModified val="2022-9-23 16:55:8.174" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a record--something written because people need to remember it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Record</AUni> -</Name> -<OcmCodes> -<Uni>210 Records; 126 Recording and Collecting In the Field; 211 Mnemonic Devices; 217 Archives</Uni> -</OcmCodes> -<Questions> -<objsur guid="ecfe6f10-4bfb-460e-acd2-bdd29aae15e9" t="o" /> -<objsur guid="058f45b2-a7ee-4019-bd83-6744a2719921" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="ba8da67e-03d1-4afd-aeac-2a2998eca376" ownerguid="ec6db741-9d23-451c-9dc7-d1fe9513dfb8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ba8de953-6f67-48b8-81ce-3efd60cb5047" ownerguid="b65ac656-1613-43f7-9951-76488a84892e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="f29b984a-54a5-4722-90af-8d6921826ddb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="ba8e775a-47ef-4274-8950-09b4a12712e1" ownerguid="a1313d01-3861-4215-99ee-1a5311bc4b32"> -<Form> -<AUni ws="qvm-x-ach">shula</AUni> -<AUni ws="qvm-x-acl">shula</AUni> -<AUni ws="qvm-x-akh">shula</AUni> -<AUni ws="qvm-x-akl">shula</AUni> -<AUni ws="qvm-x-ame">shula</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ba8ef822-c741-4cb2-99aa-b91dba336f9e" ownerguid="57c0b313-73c5-48e3-9dba-263a4a2f76dc"> -<Form> -<AUni ws="qvm-x-ach">tarush</AUni> -<AUni ws="qvm-x-acl">tarush</AUni> -<AUni ws="qvm-x-akh">tarush</AUni> -<AUni ws="qvm-x-akl">tarush</AUni> -<AUni ws="qvm-x-ame">tarush</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ba8faed7-7068-4a54-a7a1-e93460e3468e" ownerguid="98f41510-b28c-4b6d-8782-1a7e589ab737"> -<Form> -<AUni ws="qvm-x-ach">gräda</AUni> -<AUni ws="qvm-x-acl">gräda</AUni> -<AUni ws="qvm-x-akh">gräda</AUni> -<AUni ws="qvm-x-akl">gräda</AUni> -<AUni ws="qvm-x-ame">gräda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="ba92b0fe-5be2-4a93-8686-6d24c3dea00e" ownerguid="0ae80364-83fa-419b-82e7-26243d63fe3d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">unequal</AUni> -<AUni ws="es">desigual</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4c170c51-3776-42ae-81b0-8081e73d877a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ba95a7ad-90d5-443a-b60f-87b4a8ef5de6" ownerguid="0f1d6478-3f28-47b4-99a5-3e7270b454ad"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="ba95b940-5b1a-427b-a314-5d62b8559bad" ownerguid="fbfcdae2-dd76-4bd7-93b2-8fdb495113ea"> -<Form> -<AUni ws="qvm-x-ach">läta</AUni> -<AUni ws="qvm-x-acl">läta</AUni> -<AUni ws="qvm-x-akh">läta</AUni> -<AUni ws="qvm-x-akl">läta</AUni> -<AUni ws="qvm-x-ame">läta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="ba98f891-77df-4910-8657-38f4ba79d3a5" ownerguid="6bf7569e-dc79-49da-9ce1-e2e03303828a"> -<Abbreviation> -<AUni ws="en">4.7.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to rewarding someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>38B Reward, Recompense</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Reward</AUni> -</Name> -<Questions> -<objsur guid="0780da77-9f0c-4c1c-af5e-6a49318a61d3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="baa16b53-f46e-4456-93c2-7908056870a4" ownerguid="d25f7907-091e-4cf7-bd8c-bdb97278b616"> -<ExampleWords> -<AUni ws="en">hit over and over, beat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to striking something repeatedly?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="baa19786-02f6-4582-ab56-88bd51c77369" ownerguid="e2dc2403-1222-4fb6-8053-7b210bfe527d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">curled</AUni> -<AUni ws="es">encojido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5b647078-a690-4c7b-9825-4ee3c6f6724f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="baa27026-3eb5-4e1a-b49f-b0c27b7b86c7" ownerguid="e59597ea-26f1-4a4e-8543-118893eb383e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EZK 27.26 Tsaychömi elagpita inti jegamunan cag lädupita shamog wayra gamta lacticätsishushcanqui.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="baa31124-00a6-441f-8b78-c779984b88f5" ownerguid="999581c4-1611-4acb-ae1b-5e6c1dfe6f0c"> -<ExampleWords> -<AUni ws="en">aurora borealis, northern lights</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to the lights that appear in the northern (or southern) sky?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="baa60d67-f110-4695-978c-c31d943d61b5" ownerguid="3cd36fee-d3e2-4b9b-82a7-6f25d696c83f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bow.head</AUni> -<AUni ws="es">agachar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="189c658f-cee3-40d1-88f6-58edb6505fed" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="baa72d83-f62b-499e-af40-5d41c39a9499"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shaclu</AUni> -<AUni ws="qvm-x-acl">shaclu; shaclo</AUni> -<AUni ws="qvm-x-akh">shaklu</AUni> -<AUni ws="qvm-x-akl">shaklu; shaklo</AUni> -<AUni ws="qvm-x-ame">shaklu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shakllu.v</AUni> -<AUni ws="qvm-x-acl">*shakllu.v</AUni> -<AUni ws="qvm-x-akh">*shakllu.v</AUni> -<AUni ws="qvm-x-akl">*shakllu.v</AUni> -<AUni ws="qvm-x-ame">*shakllu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.521" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="40f16859-b81d-45a5-b812-9e5724eba471" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shakllu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3bf739c7-a3e8-4617-a150-022fe7633fb5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f25bd3a9-bfc3-4993-9567-b0acf2ca1315" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shakllu.v 
\entryTyp root 
\gENG come.out 
\gSPN salir 
\e *shakllu.v 
\c V1 
\ach shaclu 
\akh shaklu 
\acl shaclu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shaclo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shaklu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shaklo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shaklu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="baa7495d-7cf1-4f82-b549-89e28140665c" ownerguid="2861a719-9482-4b0c-8564-d96a9af2ae05"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1d3a7701-a996-4fb1-a219-5d5531c9ff26" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoDerivAffMsa" guid="baa93a03-82fe-4274-944c-006ddad7d6aa" ownerguid="cb655848-c91a-4585-af91-478eb961e0ab"> -<FromPartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</FromPartOfSpeech> -<ToPartOfSpeech> -<objsur guid="f3ea5225-9cc3-474e-b548-7bda3376fce1" t="r" /> -</ToPartOfSpeech> -</rt> -<rt class="LexSense" guid="baa950c0-5e0a-40c4-98c9-d5141f1f72aa" ownerguid="4373236c-a468-4a20-a536-76605739db6c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">strip</AUni> -<AUni ws="es">descascarar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c4fd105f-2da4-4c48-99f5-84165a31aadc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="baa9b98b-7c7c-44b5-9c31-cb2e1413919c" ownerguid="f49b51af-eea9-4258-ac46-79f044dfc46a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="a4a35159-5eea-4f5f-91b0-57c94202bc19" t="o" /> -</Examples> -<Gloss> -<AUni ws="es">alfombra?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9dd0c5ca-6e76-4b1e-bc23-2fe7acce695f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="baaa72c2-993e-4432-9130-335995093310" ownerguid="b54d33f2-c662-49e2-90f5-8e027e6b216f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">g</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">g</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">q</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">q</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">q</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2077e726-cf37-4913-b54c-2d034d4883b4" t="r" /> -</Morph> -<Msa> -<objsur guid="cc4f521e-5e38-4217-aa16-46da99d423ec" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="baaa8065-14fd-462b-ae36-2fa530a9a16c" ownerguid="c36131c3-b5e1-4aac-a7b5-7c9cfa1e8f74"> -<ExampleWords> -<AUni ws="en">flock, herd</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What is a group of goats called?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="baafcd3c-f314-493f-91ff-acfa1c66e09f" ownerguid="80563285-4de7-4040-8080-a5b22208e7d5"> -<ExampleWords> -<AUni ws="en">attack, invade, storm, raid, besiege, bombard</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to attacking in war?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bab149f3-948a-4fd3-a583-511c7282b943" ownerguid="d49f2c9d-1b4a-4370-b107-71f9b9fbdc8e"> -<ExampleWords> -<AUni ws="en">neighbor, neighbor, next door neighbor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to someone who lives nearby?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="bab28b0a-5aa2-461d-ba0f-288d0696a3b3" ownerguid="2d11cf4e-e2bd-4ff1-8c9e-b582d307e1fd"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 7.15 Tsaynog nacatsimänayquipa trucanga alimi canman jucla jurcaramaptiqui.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="bab58c68-afea-4ff1-ac32-ccb0eaa51089" ownerguid="00041516-72d1-4e56-9ed8-fe235a9b1a68"> -<ExampleWords> -<AUni ws="en">series, sequence, string of, succession of, stream, train of events, course of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a series of things, events, numbers or people?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bab65e11-6fb2-44f8-a9f0-40341bc70e77" ownerguid="bf25931d-4760-4c66-abe8-c05a6dc5adbe"> -<ExampleWords> -<AUni ws="en">float, float down river, afloat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something floating on the surface of the water?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="babc6b2d-870a-42f2-be0c-968f8ecb650e" ownerguid="7c7fc1b6-3775-4881-bbe0-9d0ce50e42a9"> -<ExampleWords> -<AUni ws="en">lift, lift up, raise, put up, hoist, pull up, elevate, erect, uplift, heighten, jack up, pick up, levitate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving something up?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="babfa390-f507-4183-acdc-b36a09cc65f1" ownerguid="962cb994-0183-4ac5-94b2-82a33f1d64e4"> -<ExampleWords> -<AUni ws="en">petroleum, petrol, gasoline, gas, diesel, kerosene, paraffin, crude oil, mineral oil, ointment, liniment, lotion, Vaseline, glycerin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of oil are there?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="babff5e8-4dc8-4b62-9a13-5b5170fbe825" ownerguid="c83bbaf2-b0a8-4c89-8d04-89e33130d354"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="bac241f3-49d7-4692-a2d7-07fedab8433b" ownerguid="53451bc6-4247-494c-92a9-3b3d6f9be9e0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stir</AUni> -<AUni ws="es">batir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="12c0555e-a132-4fdd-af9b-04716a8c2093" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="bac2c107-9d4c-438c-b899-4c46f24ff693" ownerguid="4d5ffd0b-4dce-4f6e-b166-aa996cd87e47"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="bac866eb-6592-471f-ae6c-30820972d98f" ownerguid="75825d72-695b-4e92-9f33-0f3ab4d7dd11"> -<ExampleWords> -<AUni ws="en">spit, spit out, expectorate, spew</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to spitting?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bacbf969-877c-4673-b11b-64486ce2f38d" ownerguid="962941b2-66bd-437f-aadc-b1921bcae5b4"> -<ExampleWords> -<AUni ws="en">antidote, administer (the antidote)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to treating poison that is eaten or drunk?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="bad07400-ad11-4f98-9a6d-83aeae23913f" ownerguid="cdfc188f-21e6-470e-8e81-be88ec8f431b"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="2ac5e60f-d184-48eb-a0a8-47efc9f6c1b4" t="o" /> -<objsur guid="f9f70dd5-efb5-44d4-9290-bb85c5ddcfbc" t="o" /> -<objsur guid="71746d18-7461-4486-a153-f36657add076" t="o" /> -<objsur guid="f05157d9-4295-410f-8ad5-8d0d0b753068" t="o" /> -<objsur guid="a241a157-b5e2-4102-994a-ff8fb6b307ce" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="bad09629-d0e5-4d26-bc3a-de14302f5ba6" ownerguid="0c54aece-ae0a-403b-910a-a0d169782b5c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="bad1ba2e-fb30-40cb-bc09-88f0fdbd1605" ownerguid="f6bfcab1-f820-4f6f-ae55-614bb775337a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">sauve</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="89d051a5-3828-48e3-b0d3-2d32d920b7d6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="bad58a18-4ffa-425b-b39a-6e4a8b9cd991" ownerguid="07d7a531-1248-4891-a2df-9c1139acf28d"> -<Form> -<AUni ws="qvm-x-ach">arca; arcä</AUni> -<AUni ws="qvm-x-acl">arca; arcä</AUni> -<AUni ws="qvm-x-akh">arka; arkä</AUni> -<AUni ws="qvm-x-akl">arka; arkä</AUni> -<AUni ws="qvm-x-ame">arka; arkä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="bad6895f-2d13-4784-a168-acbbab16f563" ownerguid="442bfc0c-557f-4857-8f9b-2f3321c9fd06"> -<Form> -<AUni ws="qvm-x-ach">shuntu</AUni> -<AUni ws="qvm-x-acl">shuntu; shuntu; shunto</AUni> -<AUni ws="qvm-x-akh">shuntu</AUni> -<AUni ws="qvm-x-akl">shuntu; shuntu; shunto</AUni> -<AUni ws="qvm-x-ame">shuntu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="bad7a1ac-c7df-495a-a858-d8657fbb8a0b" ownerguid="69a13710-b558-4803-b5cd-99863cc2768a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="6b9b5768-7dec-4f84-ba9e-dcc4437b53f5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="bae2a05a-410c-49a5-a6dd-2819d2413139" ownerguid="23fb1571-c04e-4850-b499-f170bc45247f"> -<ExampleWords> -<AUni ws="en">glasses, eyeglasses, corrective lenses, contact lens, bifocals, spectacles, specs, monocle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to glasses?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="bae4649f-3571-4ea2-aa65-ebc0f4834290" ownerguid="d978baea-da66-4787-a304-7962b3d6ba35"> -<Form> -<AUni ws="qvm-x-ach">moldi</AUni> -<AUni ws="qvm-x-acl">moldi</AUni> -<AUni ws="qvm-x-akh">moldi</AUni> -<AUni ws="qvm-x-akl">moldi</AUni> -<AUni ws="qvm-x-ame">moldi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="bae5de78-76e7-40d1-8c03-7d6618f63b00" ownerguid="eaaf6f47-ef7e-41ec-abd6-1980077664af"> -<Form> -<AUni ws="qvm-x-ach">coro</AUni> -<AUni ws="qvm-x-acl">coro</AUni> -<AUni ws="qvm-x-akh">coro</AUni> -<AUni ws="qvm-x-akl">coro</AUni> -<AUni ws="qvm-x-ame">coro</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="baeabaff-4f72-488a-b020-3e793c733869" ownerguid="6e41c546-4be4-41a5-8eb9-ff6ea23d2737"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">send</AUni> -<AUni ws="es">mandar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="64a2dfae-6056-4b8a-9e97-83a27439223d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="baeaf24b-30ff-424c-af6a-c2885e95d9e7" ownerguid="f869a6c6-446c-4389-9e44-426ec5a3b530"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="98676d9d-b11b-459a-95ad-f2d2fa8b2702" t="o" /> -<objsur guid="1bca57cd-f248-49e7-83c8-6b538fc1c372" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiWordform" guid="baedbf9f-c8db-4803-abc1-d30e7d364282"> -<Analyses> -<objsur guid="dd235928-9ba3-44d3-b41c-fae0183f9756" t="o" /> -<objsur guid="e9de27b6-abac-46ed-a68c-2c3d314297c6" t="o" /> -</Analyses> -<Checksum val="-259373525" /> -<Form> -<AUni ws="qvm-x-akh">wanuptin</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="baefa281-72fe-4f99-9e55-d7c9baa44cc6" ownerguid="4f19ab95-428a-4a0b-a069-ca8be6b72b08"> -<ExampleWords> -<AUni ws="en">visitor, guest, houseguest, overnight visitor, caller</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a visitor?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="baf0619f-5a28-4d92-92f8-baa1180ad81d" ownerguid="fe649c64-54c2-47bb-9d21-ba7a19f9bdc0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="baf352bc-a5db-407c-ae84-a95c5bea0ef6" ownerguid="2e16fa56-78c4-484d-91fe-b68e8171cd38"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="baf4193b-06de-4c41-9b09-65d06ba7cf61" ownerguid="2b86891f-52d7-4659-a39e-d75f8322e852"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="baf427d5-74ce-4c4b-a006-1fa5287af664" ownerguid="6473301d-843d-487c-9389-36a3a449b62a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">catch</AUni> -<AUni ws="es">agarrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="96ad84b3-27fa-4fb7-ac7d-d088fe89be0b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="baf58dac-a0e7-4dcd-be81-f639a924b00e" ownerguid="fcded7cb-9a9e-4079-904f-11712573f564"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wayi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wayi; wayi; waye</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wayi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wayi; wayi; waye</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wayi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="908a9492-ef77-4052-a703-5d519cb12013" t="r" /> -</Morph> -<Msa> -<objsur guid="87a61372-b529-41d0-892b-ca33273dc85c" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="baf5b826-eec5-43a7-bcb1-9378715e6046" ownerguid="666d0b4a-257f-4b33-9b4f-216da109daa9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="baf680b6-cfd5-49ab-8104-240aa42a5a99" ownerguid="539051a2-2e15-4ef7-8854-3c07d83ab898"> -<Form> -<AUni ws="qvm-x-ach">primaria</AUni> -<AUni ws="qvm-x-acl">primaria</AUni> -<AUni ws="qvm-x-akh">primaria</AUni> -<AUni ws="qvm-x-akl">primaria</AUni> -<AUni ws="qvm-x-ame">primaria</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="baf6ea1d-7c45-4a23-81e9-546766bdb69e" ownerguid="8a81b9bc-9c66-4d57-a2d1-2e592604c4b1"> -<ExampleWords> -<AUni ws="en">fullness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to the state of being full?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="bafa274e-8bf0-4cf7-8ce7-2c28293db809" ownerguid="22acd714-b11e-462a-bd8e-6ff50843c103"> -<Abbreviation> -<AUni ws="en">6.5.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.458" /> -<DateModified val="2022-9-23 16:55:8.458" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a door.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Door</AUni> -</Name> -<Questions> -<objsur guid="96504d06-1002-4eab-b335-3562ccbe02e9" t="o" /> -<objsur guid="2061094a-b4a4-430f-abcc-53343d24700c" t="o" /> -<objsur guid="2a341cad-eee2-4b8f-87e4-9fcad0325492" t="o" /> -<objsur guid="0e38340d-ee49-4d02-a370-f09a4276a86e" t="o" /> -<objsur guid="c40eb85e-e249-4b6e-9746-c5637327c97c" t="o" /> -<objsur guid="5f246140-d524-4702-a464-33fae9fb1071" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="bafc3bb9-3876-4d46-b17e-a9fa82beb43b" ownerguid="a6329e15-8524-40df-93b7-5832720bb0b8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="e6be8b63-19b2-4957-8d17-caaf37f23a4f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="bafcff46-fb61-4d1e-b08f-1ea0177d7902" ownerguid="dd7ee9e8-19a1-44c3-a0d4-19e6bc47893c"> -<Evaluations> -<objsur guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="fc5b6936-6cce-4c97-8dea-decb998b8d8f" t="o" /> -<objsur guid="3cd9f49b-2724-4d32-8eb4-b7d84ab7bb24" t="o" /> -<objsur guid="58fc7238-56a6-43d7-a58b-0cffd1e7c4d6" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="bafdc174-c065-4afe-b575-17c1463f58b3" ownerguid="510d5c78-1d23-441a-9f3f-25c2b251ac8f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">select</AUni> -<AUni ws="es">escoger</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="44ae6bff-3236-4e4d-ae9b-b06981188e08" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="bb00cc4b-d7a3-4ab3-976c-5926f3104582" ownerguid="6187e620-89bd-4b9d-9896-0c0c788e7740"> -<ExampleWords> -<AUni ws="en">half</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the parts of a game?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bb033ace-9477-496f-92a6-8ea5b2d191f9" ownerguid="4acc430b-9c98-4a49-a8b4-15edc0f6d19b"> -<ExampleWords> -<AUni ws="en">tidy, immaculate, just so, neat, shipshape, smart, trim, well-kept</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that is tidy?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bb045497-8a03-4ab4-a3a3-5ef36b7bcac5" ownerguid="1773715e-7b2f-41dc-88eb-99d2c7ea3f66"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="bb054773-90fb-42ab-ab6e-937ff94a56ff" ownerguid="0105615f-0a96-4d08-ab00-ca4b4473de39"> -<ExampleWords> -<AUni ws="en">hoard, parsimony</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to refusing to share?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bb06edb5-107f-48dc-9816-ed4c91742bd8" ownerguid="3be7e3fe-89d4-471a-92bd-8c70fcb146bb"> -<ExampleWords> -<AUni ws="en">deaf man, the deaf</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a deaf person?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bb0746e1-6019-4ec2-909c-186a63371c05" ownerguid="0d63adce-41dd-4873-b0bf-331d0205e65d"> -<ExampleWords> -<AUni ws="en">become extinct, extinction, die out, disappear, vanish, cease to exist, disappearance, disintegrate, disintegration, fade, loss</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something ceasing to exist?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="bb0a5eef-e04e-4d14-9e19-ffcbdab19628" ownerguid="737ac182-6676-4e3b-bae7-523199291521"> -<Form> -<AUni ws="qvm-x-ach">compañón; compañon</AUni> -<AUni ws="qvm-x-acl">compañón; compañon</AUni> -<AUni ws="qvm-x-akh">compañón; compañon</AUni> -<AUni ws="qvm-x-akl">compañón; compañon</AUni> -<AUni ws="qvm-x-ame">compañón; compañon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="bb0ac467-2909-4998-848d-bf8729dd51e1" ownerguid="9bd77b3f-9931-4150-891b-403c318907b2"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="bb0c7229-293e-476c-b123-6b9fd48826be" ownerguid="b6a40216-fe93-4b0f-b85b-5622327031d0"> -<ExampleWords> -<AUni ws="en">lay, sit on, incubate, roust, turn, fertilize</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What do birds do to eggs?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="bb0cd83d-b40b-4e1e-b663-38ba08b1d207" ownerguid="2c668e7d-116b-4ce6-aa68-9ec0f9bef9bf"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2CH 26.15 Tsay mäquinacunawanmi jatusag rumicunata y flëchacunata palancaypa jitatsipäcog.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="bb0f8f80-c1c7-42ea-806c-41492deae74d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">caruna</AUni> -<AUni ws="qvm-x-acl">caruna</AUni> -<AUni ws="qvm-x-akh">karuna</AUni> -<AUni ws="qvm-x-akl">karuna</AUni> -<AUni ws="qvm-x-ame">karuna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*karuna.v</AUni> -<AUni ws="qvm-x-acl">*karuna.v</AUni> -<AUni ws="qvm-x-akh">*karuna.v</AUni> -<AUni ws="qvm-x-akl">*karuna.v</AUni> -<AUni ws="qvm-x-ame">*karuna.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.951" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0a9689c9-cd8c-4dce-a6cc-1f17f039fca1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*karuna.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6b94800d-e1bb-4508-b1b6-e175b3be0ece" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="67a7812b-f130-492b-9061-21edabeca533" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *karuna.v 
\entryTyp root 
\gENG 
\gSPN 
\e *karuna.v 
\c V2 
\ach caruna 
\akh karuna 
\acl caruna 
\akl karuna 
\ame karuna</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="bb10227b-09f8-4cd0-8b46-3b36c3073257" ownerguid="ece42d2d-cced-443b-83cd-22d573670894"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="bb11dbe7-142c-4a78-900d-6bbbb5b92388" ownerguid="8adc2568-cd8b-4015-b533-e20686c33474"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ad55e4ad-cad4-4eb6-adc9-e41a236ae9cd" t="r" /> -</Morph> -<Msa> -<objsur guid="0daaea2b-9cca-4a9f-953a-83273b1d5023" t="r" /> -</Msa> -<Sense> -<objsur guid="50df97b3-2d9c-48ae-ab56-d24155815026" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="bb13362c-a733-4ca4-a51e-e6464ccb7c95" ownerguid="bc96b3e3-6185-4925-b79e-8f0f9555bfb7"> -<ExampleWords> -<AUni ws="en">code, sign language, computer language</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a special or secret language?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bb148a78-876d-40dc-88ab-a1dc064dfd2c" ownerguid="de160b31-15e9-43ce-8a2d-0d7a458c8ade"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="bb14ad32-1ef6-401d-bce0-22d2912aca86" ownerguid="8fbed974-7d25-44c3-80cb-7d02e4069007"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">the <container> <of> milk</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(5) In English 'Containership' can be expressed by a noun phrase with the word 'container' as the head and the 'Content' marked by 'of'.</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="bb177e3f-8bd6-476f-8c8f-205e5c9977cd" ownerguid="fe8f91de-1a1e-4603-8168-b00bab119846"> -<Form> -<AUni ws="qvm-x-ach">quinta</AUni> -<AUni ws="qvm-x-acl">quinta</AUni> -<AUni ws="qvm-x-akh">quinta</AUni> -<AUni ws="qvm-x-akl">quinta</AUni> -<AUni ws="qvm-x-ame">quinta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="bb18a3a5-232f-492b-8784-c7575525ab85"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chilla</AUni> -<AUni ws="qvm-x-acl">chilla</AUni> -<AUni ws="qvm-x-akh">chilla</AUni> -<AUni ws="qvm-x-akl">chilla</AUni> -<AUni ws="qvm-x-ame">chilla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trilla</AUni> -<AUni ws="qvm-x-acl">*trilla</AUni> -<AUni ws="qvm-x-akh">*trilla</AUni> -<AUni ws="qvm-x-akl">*trilla</AUni> -<AUni ws="qvm-x-ame">*trilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.109" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="50c97901-74ab-4d7a-83bf-d26ceb798596" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8b54d0b0-7bc1-4731-bf88-bc752dd27ca9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="87c81f31-d32c-4875-a529-0344dcc2ba43" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trilla 
\entryTyp root 
\gENG 
\gSPN 
\e *trilla 
\c V1 
\ach chilla 
\akh chilla 
\acl chilla 
\akl chilla 
\ame chilla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="bb1a467d-89a9-4b71-96e3-e5af8c5d74e6" ownerguid="deba4a79-3398-4dfa-b692-461f181f2ebb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">corn.on.cob</AUni> -<AUni ws="es">choclo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="603b460e-2f19-48f6-9b5a-ff8df3f19c09" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="bb1b8472-62fb-4797-be8f-984bfd0ba103" ownerguid="72274e9d-5d3c-4ae7-93ab-db3617cdda1e"> -<ExampleWords> -<AUni ws="en">anesthetize, numb (an area), deaden</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(20) What words refer to causing a person not to feel anything?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bb1c1f9a-c0f7-4bef-a4b3-270f0c09607f" ownerguid="3caec22c-0922-42d7-95bf-bfae42f09ffb"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="bb25e1b4-652f-4f40-b1c8-bd9fead70d75" ownerguid="05a05da3-0adf-41e2-9a72-0e9ae7aeb3db"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ant</AUni> -<AUni ws="es">hormiga</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2e07e3b7-aff0-4f2e-84d1-554d8e3f0cb4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="bb268227-ccf5-4bdd-8d68-eaedb6e0ade1"> -<Analyses> -<objsur guid="365fdc2e-9999-4aaa-aa02-af53dd9d0e2e" t="o" /> -</Analyses> -<Checksum val="-1616838206" /> -<Form> -<AUni ws="qvm-x-akh">hïja</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="bb29001e-97f3-4bb4-8946-7c33b9835fcb" ownerguid="529140d1-6e8e-44fe-99f0-95289e933607"> -<Abbreviation> -<AUni ws="en">4.1.9.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to siblings.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>10C Kinship Relations of the Same Generation</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Brother, sister</AUni> -</Name> -<Questions> -<objsur guid="6b8d467e-126d-4be1-a0c9-4cb928ddd043" t="o" /> -<objsur guid="79da2f14-8778-40d6-b4a4-55b6f2e36eb6" t="o" /> -<objsur guid="85ea1bf0-c7e1-4695-9bbe-53a5a1c075a9" t="o" /> -<objsur guid="15390637-5668-4c05-a72a-7d8d1db27a8e" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="89944377-8694-4394-bced-153cc22a0e30" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="bb2918b3-e742-4043-9f70-c6d8bd0e8e46" ownerguid="3c9dd0d1-805e-4451-87b9-000ebbef9354"> -<Form> -<AUni ws="qvm-x-ach">nista</AUni> -<AUni ws="qvm-x-acl">nista</AUni> -<AUni ws="qvm-x-akh">nista</AUni> -<AUni ws="qvm-x-akl">nista</AUni> -<AUni ws="qvm-x-ame">nista</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="bb2a112f-af6f-4a54-bbf0-ba7b8289e58b" ownerguid="f9d020d6-b129-4bb8-9509-3b4a6c27482e"> -<Abbreviation> -<AUni ws="en">3.4.1.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.133" /> -<DateModified val="2022-9-23 16:55:8.133" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to attracting someone's attention to something. In a typical situation, a person sees something with an interesting quality. The person moves closer, pays close attention to the thing, and possibly does something to it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Attract</AUni> -</Name> -<Questions> -<objsur guid="dbff9885-08d7-48f0-b058-a753011df984" t="o" /> -<objsur guid="8cc0ae34-0dcd-42e8-8f33-368d1992c26e" t="o" /> -<objsur guid="76611522-2d7d-4112-a285-cf670a447cf3" t="o" /> -<objsur guid="e59516f6-7c1c-46f7-8de7-6c8e4917fc04" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="bb2a1949-45c5-45f9-adf9-fb3513399ee6" ownerguid="5c08c178-187e-4355-90bb-decf96e0e8b4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="bb2a3bcd-5367-49e8-9291-d370db8dac50" ownerguid="a16d9d81-5c04-47ce-9a21-8dab16896878"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="bb2ae43f-7c7b-45e4-b7f1-d4bbf188780e" ownerguid="b8442db8-9063-4ebe-a4c5-09b58c558aba"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JDG 15.14 Tsauraga jinan hörami \nd Tayta Diospa\nd* Espïritun yanapaptin Sansónga liyaraycashgan wascatapis rachirergan liptayashga hïlutanogla.</Run> -</AStr> -</Example> -</rt> -<rt class="Segment" guid="bb2d8ebc-79dc-437d-bf1a-a405c32af539" ownerguid="8fd02b5b-ff2f-4b79-82a5-49b68248014e"> -<Analyses> -<objsur guid="1faa4b42-bd79-4797-aa30-587d4773ce4e" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemMsa" guid="bb302077-07af-4981-ad5e-c91b9bb5f054" ownerguid="595692da-68f4-41cd-a676-4ea47e15a74b"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="bb307ce7-b7b5-45f2-857f-f1fc2ef55ffd" ownerguid="a98c1553-69e2-4620-9a5e-8c027b96520e"> -<Form> -<AUni ws="qvm-x-ach">condor</AUni> -<AUni ws="qvm-x-acl">condor</AUni> -<AUni ws="qvm-x-akh">condor</AUni> -<AUni ws="qvm-x-akl">condor</AUni> -<AUni ws="qvm-x-ame">condor</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="bb354236-becc-4d8b-9016-eafb690e4707"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">aywakurmi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexExampleSentence" guid="bb35f5d6-849e-433b-bc91-147c3017e028" ownerguid="2f48550a-3702-4bdb-bb3e-09bee13e0c4e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">DAN 5.9 Pipis tantiyayta mana camäpacuptinmi Belsasarga fiyupa mantsacar pasaypa yoragatargan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="bb36bac5-ad5e-45e1-928c-2fc33d2ef566" ownerguid="708152e0-9019-460e-88a8-8227505806e8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="bb3f0b2b-2b6e-4aec-812e-7368adf4fe8a" ownerguid="abdf2b3e-9fb0-43cf-98f4-fd674f8dd8ad"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="bb438dc5-9f54-4bc3-b5ad-ec1f6b93d0d8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tren; tren</AUni> -<AUni ws="qvm-x-acl">tren; tren</AUni> -<AUni ws="qvm-x-akh">tren; tren</AUni> -<AUni ws="qvm-x-akl">tren; tren</AUni> -<AUni ws="qvm-x-ame">tren; tren</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tren</AUni> -<AUni ws="qvm-x-acl">+tren</AUni> -<AUni ws="qvm-x-akh">+tren</AUni> -<AUni ws="qvm-x-akl">+tren</AUni> -<AUni ws="qvm-x-ame">+tren</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.88" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="458786d0-3316-4a1f-8763-1bd3351df8ac" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tren</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2e87abb2-30e7-4da8-8cc8-c0f22f1f1ef3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7534e605-ddb8-4963-b574-47725fdf07a8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tren 
\entryTyp root 
\gENG train 
\gSPN tren 
\e +tren 
\c N0 
\mp +FinalC 
\ach tren / _# 
\ach tren / ~_# 
\akh tren / _# 
\akh tren / ~_# 
\acl tren / _# 
\acl tren / ~_# 
\akl tren / _# 
\akl tren / ~_# 
\ame tren / _# 
\ame tren / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="bb43a9c5-d11c-4885-9497-d6c19482fadb" ownerguid="60de9433-de63-41e5-9942-158d2fab81f9"> -<Form> -<AUni ws="qvm-x-ach">vuela</AUni> -<AUni ws="qvm-x-acl">vuela</AUni> -<AUni ws="qvm-x-akh">vuela</AUni> -<AUni ws="qvm-x-akl">vuela</AUni> -<AUni ws="qvm-x-ame">vuela</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="bb44a23b-2836-4029-8de1-ce58d2682d82" ownerguid="45ebfa40-e500-45d6-b0dd-f61a14c0c832"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="bb45c385-8f70-47b3-94f0-353cdbd2b8bb" ownerguid="9ed42115-8532-4f99-b0c0-36abfe9db652"> -<ExampleWords> -<AUni ws="en">be reduced in status, humble, reduce in rank, bust (in rank), debase, degrade, demote</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words are used of lowering someone's status?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bb46ea76-daf5-4ac1-aaa4-6b79f02fe710" ownerguid="cbc24a98-1c64-467e-98aa-251a28e4c0b8"> -<ExampleWords> -<AUni ws="en">wipe (yourself, your anus)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to cleaning after defecating?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="bb480917-c2dd-41af-a26a-5eb288a15565" ownerguid="ec0846d0-9424-4aa2-96b7-e3ea446be8ae"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">night</AUni> -<AUni ws="es">noche</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1af62928-3bed-4511-8fa4-f359bc07ca98" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="bb4a2c8f-e8f6-4023-a0bf-626b8edf3af8" ownerguid="cfcd574e-d9af-4501-8d99-690a0c2c5d61"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shield</AUni> -<AUni ws="es">escudo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8083687f-c059-4661-9c06-30479b8c2b24" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="bb4a5c41-557a-4d0d-b3a5-c6c6f2085f45" ownerguid="3b986bd2-93d0-4ec5-b224-e94e21452077"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">valley</AUni> -<AUni ws="es">valle</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1c259d4a-a4b7-4881-ad9e-56c3959da548" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="bb4a762f-0d53-4092-a621-f35a8c7cdf7a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chiya; chiya:</AUni> -<AUni ws="qvm-x-acl">chiya; chiya:</AUni> -<AUni ws="qvm-x-akh">chiya; chiya:</AUni> -<AUni ws="qvm-x-akl">chiya; chiya:</AUni> -<AUni ws="qvm-x-ame">chiya; chiya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*triya:</AUni> -<AUni ws="qvm-x-acl">*triya:</AUni> -<AUni ws="qvm-x-akh">*triya:</AUni> -<AUni ws="qvm-x-akl">*triya:</AUni> -<AUni ws="qvm-x-ame">*triya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.139" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="22429b25-428b-431d-8fad-59c3df2981e4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*triya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="92f0ee73-09a3-46bb-8772-8195833c0d40" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8cecbda9-1504-4f68-aff2-8edc8c4ce24f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *triya: 
\entryTyp root 
\gENG stop 
\gSPN parar 
\e *triya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach chiya foreshortened 
\ach chiya: 
\akh chiya foreshortened 
\akh chiya: 
\acl chiya foreshortened 
\acl chiya: 
\akl chiya foreshortened 
\akl chiya: 
\ame chiya foreshortened 
\ame chiya:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="bb4e0a69-db20-4757-beff-5dcb1c5e0f92" ownerguid="596ab399-e442-4afe-8796-633a49de65a7"> -<Abbreviation> -<AUni ws="en">4.7.9.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.274" /> -<DateModified val="2022-9-23 16:55:8.274" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to oppressing someone or a particular group of people--when a person uses his power or authority to harm others who are innocent.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>39I Persecution</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Oppress</AUni> -</Name> -<Questions> -<objsur guid="e9afe5b1-c748-4e28-9cca-bdc79a4578cd" t="o" /> -<objsur guid="a860f6fc-4470-4144-89cd-cc6d9feb8574" t="o" /> -<objsur guid="875b82af-dc70-4266-bf1e-4a6177876d17" t="o" /> -<objsur guid="24cbc912-4c61-45d9-898d-09565af3e4fc" t="o" /> -<objsur guid="b6144ac6-d38e-41d7-99c2-0ae49f1733dd" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="bb4f0608-4ac0-4cbc-b206-3614d98b7d29"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">umru; umro</AUni> -<AUni ws="qvm-x-acl">umru; umru; umro</AUni> -<AUni ws="qvm-x-akh">umru; umro</AUni> -<AUni ws="qvm-x-akl">umru; umru; umro</AUni> -<AUni ws="qvm-x-ame">umru; umro</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hombro</AUni> -<AUni ws="qvm-x-acl">+hombro</AUni> -<AUni ws="qvm-x-akh">+hombro</AUni> -<AUni ws="qvm-x-akl">+hombro</AUni> -<AUni ws="qvm-x-ame">+hombro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.741" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="239c0b80-b9e8-4a87-80ab-25c44d4d6d3a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hombro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="801ef7ba-85a0-4a57-a714-727bdc76e2d7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="996fb4a9-6eb1-4d2d-9fcc-4d87019b6760" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hombro 
\entryTyp root 
\gENG shoulder 
\gSPN hombro 
\e +hombro 
\c N0 
\ach umru / ~_# 
\ach umro / _# 
\akh umru / ~_# 
\akh umro / _# 
\acl umru / ~_# 
\acl umru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl umro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl umru / ~_# 
\akl umru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl umro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame umru / ~_# 
\ame umro / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bb51269b-add0-4117-ad28-acb8f964c773" ownerguid="e45b8bac-9623-4f84-a113-9dec13a8db64"> -<ExampleWords> -<AUni ws="en">talk about, dwell on, discuss, address, treat, cover</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to talking about a subject?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bb51f629-5fcb-49ba-b6ba-63bf03340a55" ownerguid="4302d543-41c0-43c8-a167-1fbe1470afb9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="bb533f0d-2a18-4637-90ce-86198308d1f8" ownerguid="a8001168-2cc5-43dc-a478-51bbc7fbb33f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2/R0 V1/R0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c610ac35-b269-4f14-8bdc-88baaa7273f0" t="o" /> -<objsur guid="8b7cbfc1-8bde-4039-9aa6-5a9384ef3241" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">ADVSS1</AUni> -<AUni ws="es">ASI1</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="973e08a0-60b3-4ff1-9973-ac70ea0a16bc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="bb538686-64b5-4a7a-a1b7-835a7843e7cd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">asta</AUni> -<AUni ws="qvm-x-acl">asta</AUni> -<AUni ws="qvm-x-akh">asta</AUni> -<AUni ws="qvm-x-akl">asta</AUni> -<AUni ws="qvm-x-ame">asta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+azotar.1</AUni> -<AUni ws="qvm-x-acl">+azotar.1</AUni> -<AUni ws="qvm-x-akh">+azotar.1</AUni> -<AUni ws="qvm-x-akl">+azotar.1</AUni> -<AUni ws="qvm-x-ame">+azotar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.910" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bbfcb997-eca7-444e-8b75-329f3bd38a32" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+azotar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e7fc8721-985a-49e9-842a-e5ab64c8a678" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="54e0ce45-b781-4db3-b7fb-848fbea00f8a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +azotar.1 
\entryTyp root 
\gENG whip 
\gSPN azotar 
\e +azotar.1 
\c V2 
\mp +assimilated 
\ach asta 
\akh asta 
\acl asta 
\akl asta 
\ame asta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="bb53ef55-bd3c-42ae-8e9b-770b7ded295c" ownerguid="81ce75c5-ef9c-4f66-9393-9a12019acc10"> -<Form> -<AUni ws="qvm-x-ach">wichi</AUni> -<AUni ws="qvm-x-acl">wichi; wichi; wiche</AUni> -<AUni ws="qvm-x-akh">wichi</AUni> -<AUni ws="qvm-x-akl">wichi; wichi; wiche</AUni> -<AUni ws="qvm-x-ame">wichi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="bb56c1ca-8edc-4b9d-a34e-07d413de7c06" ownerguid="c8602dc5-5c91-480a-b5ce-1c82fe3da83a"> -<ExampleWords> -<AUni ws="en">enamel, root, crown, ivory</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the parts of a tooth?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bb5bb5ee-66cb-4201-889e-bf7aa26534a3" ownerguid="1f0f411b-2502-4c42-a75e-55a09d0d9e08"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="bb5ccd1f-2aaa-42ed-bdf4-e1ff150aebb2" ownerguid="ec998dc6-d509-4832-8434-d2abac34ba70"> -<ExampleWords> -<AUni ws="en">community</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a community?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="bb5eb24b-0aee-4a12-b7f8-0130efbad3ae" ownerguid="590056fe-7a5d-4cb7-87cf-2cdde8e576c6"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Num 5.8 Agraviädu runa wanushga captin y castancuna mana captenga pägapacunanpag cagta cürata entregatsun.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="bb6240f3-6817-4458-9f9f-ce9e8b19a603" ownerguid="0f46cb61-7bb5-410d-abc5-4a75dc80a24f"> -<ExampleWords> -<AUni ws="en">doubt, waver, undecided</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to being unsure whether to believe or not?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="bb69d649-c392-464d-bb32-8cfae9e6df31"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">may</AUni> -<AUni ws="qvm-x-acl">may</AUni> -<AUni ws="qvm-x-akh">may</AUni> -<AUni ws="qvm-x-akl">may</AUni> -<AUni ws="qvm-x-ame">may</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*may</AUni> -<AUni ws="qvm-x-acl">*may</AUni> -<AUni ws="qvm-x-akh">*may</AUni> -<AUni ws="qvm-x-akl">*may</AUni> -<AUni ws="qvm-x-ame">*may</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.374" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="58e291e4-6151-436e-a958-760ef2d5fafd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*may</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1e5c56eb-0b35-498b-8c37-d56a8702b4b7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ff0a35c2-4708-4449-8de4-9ea47f0895ef" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *may 
\entryTyp root 
\gENG where 
\gSPN donde 
\e *may 
\c N0 
\mp +FinalC 
\ach may 
\akh may 
\acl may 
\akl may 
\ame may 
\i 1SA 19.2b Papänëmi imaycanogpapis wanutsishunayquipag yarpachacuycan. Mana wanutsishunayquipag wara tuta tsaca tsacala yargur maynilanmanpis pacacuy. 
\mcc *may / ~_ CHA: 
\mcc *may / ~_ CAUSBE 
\mcc *may / ~_ JUST 3P OBJ 
\mcc *may / ~_ NOW 
\mcc *may / ~_ ... PUR 
\mcc *may / ~_ JUST2.C 3P.V</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bb6bc3d4-31f9-48e9-a3ae-7e1acc694fb5" ownerguid="c345f278-91ff-463d-b9a6-8abac8a267eb"> -<ExampleWords> -<AUni ws="en">rose, carnation, orchid, sunflower</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What types of plants have flowers?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="bb6e3e7e-a66e-4838-a320-c908d6471fe0" ownerguid="47288b53-a9c0-42d0-bf20-63419b4132bf"> -<Form> -<AUni ws="qvm-x-ach">palga</AUni> -<AUni ws="qvm-x-acl">palga</AUni> -<AUni ws="qvm-x-akh">palqa</AUni> -<AUni ws="qvm-x-akl">palqa</AUni> -<AUni ws="qvm-x-ame">palqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="bb6f95ac-84db-411f-a58f-5ef627d8bd62" ownerguid="7f96b8bb-5ff4-4be1-ae43-b3c7e32b9a71"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">soot</AUni> -<AUni ws="es">tizne</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="433fa810-2219-4631-832e-8d467ecda89e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="bb6fe0c0-7ac2-49e8-a45b-58e788394d33" ownerguid="f858278a-2727-4403-9cf0-565cdececb1e"> -<Question> -<AUni ws="en">(8) meaning label: protasis</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="bb71c3de-c7d6-4aba-af01-2f4bc4a4f6c3" ownerguid="2bea4b4a-90b3-4a4a-b8ec-a8406aa7a4ea"> -<Form> -<AUni ws="qvm-x-ach">cabal</AUni> -<AUni ws="qvm-x-acl">cabal</AUni> -<AUni ws="qvm-x-akh">cabal</AUni> -<AUni ws="qvm-x-akl">cabal</AUni> -<AUni ws="qvm-x-ame">cabal</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="bb71e3a5-bac1-44c9-8796-86b6ba9a9983" ownerguid="6fb8d865-3c68-4b4c-8e19-3e04fc13cfef"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EZR 7.20 Diosniquipa templunpag imapis pishiptenga jorgunqui churacunä almacenpita.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="bb722f2f-6214-4dfd-b772-518f665f0ae3" ownerguid="1886ffc9-0a18-41ea-b2f6-c17c297f1681"> -<ExampleWords> -<AUni ws="en">hydrology, oceanography</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the study of water?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="bb723df0-2b97-461e-bae3-564d9c1a0cfd"> -<Form> -<Str> -<Run ws="en">rika</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="bb73cf23-d67b-4379-b85d-f0a6d9741bf7" ownerguid="8938e132-6534-4428-9b03-cb1f459b7cbe"> -<ExampleWords> -<AUni ws="en">basic, fundamental, essential, central</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is basic?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="bb79da61-088b-4bee-bbd3-72d8686b8878"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wallicya; wallicya:</AUni> -<AUni ws="qvm-x-acl">wallicya; wallicya:</AUni> -<AUni ws="qvm-x-akh">wallikya; wallikya:</AUni> -<AUni ws="qvm-x-akl">wallikya; wallikya:</AUni> -<AUni ws="qvm-x-ame">wallikya; wallikya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wallikya:</AUni> -<AUni ws="qvm-x-acl">*wallikya:</AUni> -<AUni ws="qvm-x-akh">*wallikya:</AUni> -<AUni ws="qvm-x-akl">*wallikya:</AUni> -<AUni ws="qvm-x-ame">*wallikya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.455" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9dfa7a4c-cadb-40b9-9318-cb0045095614" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wallikya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a405c6ab-c3aa-4227-b5c1-968e8b16f9e0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e99d9228-91c7-4d33-bda2-a6d949ec436e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wallikya: 
\entryTyp root 
\gENG disappear 
\gSPN desaparecer 
\e *wallikya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach wallicya foreshortened 
\ach wallicya: 
\akh wallikya foreshortened 
\akh wallikya: 
\acl wallicya foreshortened 
\acl wallicya: 
\akl wallikya foreshortened 
\akl wallikya: 
\ame wallikya foreshortened 
\ame wallikya:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bb79ec73-cbdf-426c-8612-5c4bdd248333" ownerguid="ae6f73ab-432d-42e8-aa1a-c848652a13f0"> -<ExampleWords> -<AUni ws="en">feminine, ladylike, womanly, femininity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a woman who acts like a woman?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bb7b5f0b-36c6-4149-8183-99888b139ccc" ownerguid="fea79ddc-1303-4d58-af28-2a49ca9549d4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="bb7bc00e-495a-4069-88d0-970477a84199" ownerguid="f7281629-f8ed-4672-a055-02ab7730030f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="bb7c2722-353d-4fc1-bf9a-0cefcb5e4ab8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pagshi</AUni> -<AUni ws="qvm-x-acl">pagshi; pagshe</AUni> -<AUni ws="qvm-x-akh">paqshi</AUni> -<AUni ws="qvm-x-akl">paqshi; paqshe</AUni> -<AUni ws="qvm-x-ame">paqshi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*paqshi</AUni> -<AUni ws="qvm-x-acl">*paqshi</AUni> -<AUni ws="qvm-x-akh">*paqshi</AUni> -<AUni ws="qvm-x-akl">*paqshi</AUni> -<AUni ws="qvm-x-ame">*paqshi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.709" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4d306819-ff55-4703-a666-2a0615d82e94" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*paqshi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c94f2e64-a270-400b-815b-5aefb359ed99" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b8feb510-f035-4bcd-a957-c6698535f660" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *paqshi 
\entryTyp root 
\gENG throw.down.and.break 
\gSPN romper.de.alto 
\e *paqshi 
\c V1 
\mp +FinalI 
\ach pagshi 
\akh paqshi 
\acl pagshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pagshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl paqshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl paqshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame paqshi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="bb7fe352-ae90-4194-96c4-33a39dad752d" ownerguid="3fd9fd6b-5a58-4c74-a970-1036a5de58c2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wait</AUni> -<AUni ws="es">esperar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0686dcc5-d695-485c-81ce-496fb95e1eb6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="bb813b80-8327-4d50-bde2-20b5ecc9bf8c" ownerguid="ab8f12fb-57b0-4d61-8ae0-50d7cbc412df"> -<ExampleWords> -<AUni ws="en">snowball, snowman, igloo</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What do people make with snow?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="bb82db52-e73c-4f14-8ceb-a59a14022102"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wawa</AUni> -<AUni ws="qvm-x-acl">wawa</AUni> -<AUni ws="qvm-x-akh">wawa</AUni> -<AUni ws="qvm-x-akl">wawa</AUni> -<AUni ws="qvm-x-ame">wawa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wawa</AUni> -<AUni ws="qvm-x-acl">*wawa</AUni> -<AUni ws="qvm-x-akh">*wawa</AUni> -<AUni ws="qvm-x-akl">*wawa</AUni> -<AUni ws="qvm-x-ame">*wawa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.597" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="947ece62-6ca2-4ac8-a84c-d2baa509eb59" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wawa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2d28f9c9-ff25-4f47-a9dc-c545ea868393" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f9f6f1ee-9a7c-43d0-a4dc-9a7178f7cc43" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wawa 
\entryTyp root 
\gENG child 
\gSPN niño 
\e *wawa 
\c N0 
\ach wawa 
\akh wawa 
\acl wawa 
\akl wawa 
\ame wawa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bb841559-54a5-47d3-aee7-8318ccc74f84" ownerguid="b14db9f4-5e1d-4a2b-bec0-0d6bcb5b1a31"> -<ExampleWords> -<AUni ws="en">cascade, cataract, pour, precipitate, shower</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words refer to water falling?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="bb88d1e6-52e5-41ea-8242-213ace0500b7" ownerguid="5e640c5a-aa6a-4cf0-9ad2-45e88a91c052"> -<Form> -<AUni ws="qvm-x-ach">shengalwa</AUni> -<AUni ws="qvm-x-acl">shengalwa</AUni> -<AUni ws="qvm-x-akh">shenqalwa</AUni> -<AUni ws="qvm-x-akl">shenqalwa</AUni> -<AUni ws="qvm-x-ame">shinqalwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="bb895a9a-d6f3-41ed-9603-2b424e317208"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tornu; torno</AUni> -<AUni ws="qvm-x-acl">tornu; tornu; torno</AUni> -<AUni ws="qvm-x-akh">tornu; torno</AUni> -<AUni ws="qvm-x-akl">tornu; tornu; torno</AUni> -<AUni ws="qvm-x-ame">tornu; torno</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+torno</AUni> -<AUni ws="qvm-x-acl">+torno</AUni> -<AUni ws="qvm-x-akh">+torno</AUni> -<AUni ws="qvm-x-akl">+torno</AUni> -<AUni ws="qvm-x-ame">+torno</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.957" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5c0ef937-88e7-4df6-958d-ac7abbd8447d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+torno</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="98598227-82c9-408f-a7fa-e6d9edc4248f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2fbd26b9-f5b2-41bb-b813-3759b2601a1b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +torno 
\entryTyp root 
\gENG potter.wheel 
\gSPN 
\e +torno 
\c N0 
\ach tornu / ~_# 
\ach torno / _# 
\akh tornu / ~_# 
\akh torno / _# 
\acl tornu / ~_# 
\acl tornu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl torno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tornu / ~_# 
\akl tornu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl torno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tornu / ~_# 
\ame torno / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bb8a9a17-5e39-43d1-84cb-07c1475f1d0a" ownerguid="a3e905b8-107b-4311-bb50-0abe151131b3"> -<ExampleWords> -<AUni ws="en">let, allow, not stand in someone's way, unchecked</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to allowing something to happen by not making any effort to prevent it?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="bb8c7346-eef3-4ea2-a073-0b54ebcf8119" ownerguid="a491b60d-8695-4139-98ff-0485684115e6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">warmi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">warmi; warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">warmi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">warmi; warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">warmi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ddf5b3ec-6ef7-4a2a-b160-365cb7d372df" t="r" /> -</Morph> -<Msa> -<objsur guid="e9ece695-28de-48a2-aff1-266bce7d2a60" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="bb8ddf5f-707d-46c0-aff4-45683d26fd68" ownerguid="aab82dc7-de9f-44b3-845e-0c926f47cfb6"> -<Abbreviation> -<AUni ws="en">9.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this section for primary cases.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Primary cases</AUni> -</Name> -<Questions> -<objsur guid="6cffa4b0-3e43-4f14-bd34-edb50521fa0a" t="o" /> -<objsur guid="1660758f-45f2-4914-9c91-ad505fbc8a64" t="o" /> -<objsur guid="3259f405-1ee8-403c-8fa5-cc5b0c4a914c" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="93df663c-9a5e-48aa-984f-fdf413079bc2" t="o" /> -<objsur guid="4415aff1-4d74-463e-a25d-9832c7477329" t="o" /> -<objsur guid="4f587b2b-60a6-4ea0-9fe5-89e5a502d380" t="o" /> -<objsur guid="d0b14231-1471-41b3-aeb5-69199acaaefb" t="o" /> -<objsur guid="aabc32ee-46e4-469f-93ad-673373cb2e8d" t="o" /> -<objsur guid="71757ff0-d698-426d-a791-50c4bde6f735" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="bb8e98a6-bd6c-4890-b970-953fa1bcb0cb" ownerguid="623c8efb-3af4-455e-a528-26ce16f10dc0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="bb95300a-5ff2-48b0-b772-aaf25a464305" ownerguid="3b970db0-5d31-4c00-bbc6-f7f38e0c620e"> -<Form> -<AUni ws="qvm-x-ach">vïvu</AUni> -<AUni ws="qvm-x-acl">vïvu</AUni> -<AUni ws="qvm-x-akh">vïvu</AUni> -<AUni ws="qvm-x-akl">vïvu</AUni> -<AUni ws="qvm-x-ame">vïvu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="bb9658a8-0305-445b-99a8-ade5747c5ada" ownerguid="6c54f0b0-b056-4090-b3f0-d5ec6710d4ab"> -<ExampleWords> -<AUni ws="en">low</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is low?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bb986e9d-6d31-462f-94b2-1d1fe7deb3bc" ownerguid="7ee96f62-7c8e-4c27-a373-d7a534844612"> -<ExampleWords> -<AUni ws="en">skin, leather, leather goods, parchment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What things are made from leather?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="bb987a06-3fee-4686-b9e6-0098e6221e64" ownerguid="858188d8-a065-4935-be65-2786d510e503"> -<Form> -<AUni ws="qvm-x-ach">fïju</AUni> -<AUni ws="qvm-x-acl">fïju; fïju; fïjo</AUni> -<AUni ws="qvm-x-akh">fïju</AUni> -<AUni ws="qvm-x-akl">fïju; fïju; fïjo</AUni> -<AUni ws="qvm-x-ame">fïju</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="bba05913-032d-4b8b-b4d3-c2fca89259ba" ownerguid="56c9c38c-728a-42fe-b93c-6ca67fdf2a9a"> -<ExampleWords> -<AUni ws="en">bauxite, borax, brimstone, calcium, carbon, coal, coke, feldspar, gypsum, limestone, magnetite, mica, nitrate, peat, phosphate, phosphorus, pitch, pitchblende, potash, potassium, pyrite, salt, saltpeter, silica, soda, sulfur, talc, tar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of minerals are there?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="bba30b56-6cd8-4542-81ab-f983cf1354bd" ownerguid="73d580ac-dc89-474c-8048-3453ebdda807"> -<Abbreviation> -<AUni ws="en">8.2.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.589" /> -<DateModified val="2022-9-23 16:55:8.589" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that something is far from something else.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>83E At, Beside, Near, Far x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Far</AUni> -</Name> -<Questions> -<objsur guid="b0a69178-376c-48b3-9f02-c48608afed0f" t="o" /> -<objsur guid="d1a19ad3-2c14-4e72-9030-d68c0368e978" t="o" /> -<objsur guid="11b849f9-04a3-4a8e-9bfc-0bf997a71907" t="o" /> -<objsur guid="334291fd-5753-49d3-b0d8-50a3ba279709" t="o" /> -<objsur guid="b02451d6-6324-4320-a17d-fcc0d998fb6d" t="o" /> -<objsur guid="846ed3a8-cff9-46d5-8ed0-75493ea1ccb9" t="o" /> -<objsur guid="61710da3-af25-4048-ba14-9c2e61c709ca" t="o" /> -<objsur guid="3eb236ab-933a-4af5-9aa2-0c16e9dcae24" t="o" /> -<objsur guid="928b6d04-0c0f-45b1-86d9-8ef7efda3d2c" t="o" /> -<objsur guid="23d6fa1f-67b6-4c9c-9cd7-f641d6e0fc9c" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="7648040b-0aa5-4d9a-8f13-ffd066b81602" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="bba46356-8a69-4073-bfff-fe2ca4bd180e" ownerguid="ef1b0b81-1213-422f-9566-fa24e5513ec2"> -<Form> -<AUni ws="qvm-x-ach">vöta</AUni> -<AUni ws="qvm-x-acl">vöta</AUni> -<AUni ws="qvm-x-akh">vöta</AUni> -<AUni ws="qvm-x-akl">vöta</AUni> -<AUni ws="qvm-x-ame">vöta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="bba4e8fa-0879-4218-be93-1d9d39f9dc93" ownerguid="a359970c-b836-4bda-b58a-f7bb09e31825"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="bba9ce21-4953-4ee9-8a3b-99d7cd10fcd4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sima</AUni> -<AUni ws="qvm-x-acl">sima</AUni> -<AUni ws="qvm-x-akh">sima</AUni> -<AUni ws="qvm-x-akl">sima</AUni> -<AUni ws="qvm-x-ame">sima</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*sima</AUni> -<AUni ws="qvm-x-acl">*sima</AUni> -<AUni ws="qvm-x-akh">*sima</AUni> -<AUni ws="qvm-x-akl">*sima</AUni> -<AUni ws="qvm-x-ame">*sima</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.683" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="de34f4a0-934f-499d-a078-120ee44a7d43" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*sima</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="efa6ce38-2156-4fff-a014-903513da978b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6ba84239-6725-4ae1-aaae-7de2b2949d36" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *sima 
\entryTyp root 
\gENG wild 
\gSPN 
\e *sima 
\c N0 
\ach sima 
\akh sima 
\acl sima 
\akl sima 
\ame sima</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bba9d0f6-07d9-4ea3-9df5-9593d08da563" ownerguid="b43fae8e-6b19-42ed-98cd-d363174b9cf8"> -<ExampleWords> -<AUni ws="en">compact, pocket, miniature</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words describe something that is made small enough to carry?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="bba9ebe9-5073-4364-bc6f-8b7f9bf94857" ownerguid="89f18502-3537-4716-9325-3693bf686f55"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rinse</AUni> -<AUni ws="es">enjuagar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="121a418b-2ccf-4663-9843-6b3a7af2fed3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="bbaea43a-2d94-44e0-a2cc-d81fbf5d59cd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yag</AUni> -<AUni ws="qvm-x-acl">yag</AUni> -<AUni ws="qvm-x-akh">yaq</AUni> -<AUni ws="qvm-x-akl">yaq</AUni> -<AUni ws="qvm-x-ame">yaq</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.528" /> -<DateModified val="2022-10-15 16:8:43.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="13381d5f-70dc-406a-ac52-792a856bd979" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">LIM1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="39d1c8b2-dca3-4184-82dc-a2b4e87e52d7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c421fe06-71ef-46d1-a1cb-51f25a0559a8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx LIM1 
\entryTyp suffix 
\gENG LIM1 
\gSPN LIM1 
\e LIM1 
\c N0/N0 BN/BN R0/R0 
\o 180 
\mp -PMonophthongizes 
\ach yag 
\akh yaq 
\acl yag 
\akl yaq 
\ame yaq 
\mp +FinalC 
\mcc LIM1 / ~_ PLUR</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="bbb00905-2054-4d55-a0ea-cd0fba9de02a" ownerguid="2418dd59-fa53-44a5-964d-f9dae2183b5e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="82e9c3df-e95c-44d6-998d-f3779aad6808" t="r" /> -</Morph> -<Msa> -<objsur guid="1b3c6562-1662-468e-b5c0-fcf36256167d" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="bbb21324-089d-4368-a2ac-37c6bbfcbffc" ownerguid="f7960e84-5af9-4999-9028-783058aa8c5c"> -<Abbreviation> -<AUni ws="en">8.1.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.569" /> -<DateModified val="2022-9-23 16:55:8.569" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to both of two things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Both</AUni> -</Name> -<Questions> -<objsur guid="04674b17-a42c-43b7-a019-61e189402b2b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="bbb30248-5028-4e27-9aeb-05f3bae2f22b" ownerguid="67d74de1-33f9-4d39-8fa5-5dd27e7cd1d1"> -<ExampleWords> -<AUni ws="en">suspect (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to someone who is suspected?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="bbb42026-10d5-4d68-bccc-632cf71842c8" ownerguid="01d8a648-bdc5-4905-aaa2-e0a3ebdc5bf5"> -<Form> -<AUni ws="qvm-x-ach">huaca</AUni> -<AUni ws="qvm-x-acl">huaca</AUni> -<AUni ws="qvm-x-akh">huaka</AUni> -<AUni ws="qvm-x-akl">huaka</AUni> -<AUni ws="qvm-x-ame">huaka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="bbb45f29-0b40-4c8f-8431-de8a6a6f10a8" ownerguid="c6132280-d2aa-46f8-9e94-b087dbda09cb"> -<ExampleWords> -<AUni ws="en">dizzy, giddy, vertigo, dizziness, someone's head is swimming</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to feeling like you are going to fall?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bbb4d4df-fdfa-4edb-b741-d17bc81e22de" ownerguid="5511f489-03d5-43aa-9df2-c67319587b80"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="bbb6ff4e-7b24-4686-bd2e-8bf8074bcf2e" ownerguid="15be9a65-e841-4091-a9d9-c8890e78b3c5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">flood</AUni> -<AUni ws="es">diluvio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4ce86d40-d3fd-4c6c-83b9-69acb547f5a3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="bbb7808d-7901-4f32-be05-86e73a8a9e57"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">toca:yu</AUni> -<AUni ws="qvm-x-acl">toca:yu; toca:yu; toca:yo</AUni> -<AUni ws="qvm-x-akh">toca:yu</AUni> -<AUni ws="qvm-x-akl">toca:yu; toca:yu; toca:yo</AUni> -<AUni ws="qvm-x-ame">toca:yu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tocayo</AUni> -<AUni ws="qvm-x-acl">+tocayo</AUni> -<AUni ws="qvm-x-akh">+tocayo</AUni> -<AUni ws="qvm-x-akl">+tocayo</AUni> -<AUni ws="qvm-x-ame">+tocayo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.944" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="39d602e1-416a-431c-af99-8bdc476727e3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tocayo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9434061e-80df-49ab-8ee4-86a95abeb762" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fe5baff2-e4d9-4e43-9531-b26b658d00ff" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tocayo 
\entryTyp root 
\gENG namesake 
\gSPN tocayo 
\e +tocayo 
\c N0 
\ach toca:yu 
\akh toca:yu 
\acl toca:yu / _# 
\acl toca:yu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl toca:yo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl toca:yu / _# 
\akl toca:yu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl toca:yo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame toca:yu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="bbb897b5-f09b-4263-9f81-826ca61084f1" ownerguid="0f883eb0-00a1-44cc-b719-97fb6ec145d4"> -<Abbreviation> -<AUni ws="en">5.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.337" /> -<DateModified val="2022-9-23 16:55:8.337" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words related to cleaning things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>47B Use of Liquids</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Cleaning</AUni> -</Name> -<Questions> -<objsur guid="c155d2ee-a027-47c5-81db-21665012af1d" t="o" /> -<objsur guid="e637c477-9a16-404b-aaee-817e8e97c474" t="o" /> -<objsur guid="9fcaa180-5efc-4905-88a3-e3f182c144d2" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="46ad1505-9049-41d8-831b-768f46f12500" t="o" /> -<objsur guid="dd12ac0f-55cc-4c79-a50c-d23cc7ea60b3" t="o" /> -<objsur guid="9d79be9a-f21e-4189-be39-779db79da027" t="o" /> -<objsur guid="dae6488c-7fea-4fa3-84c9-b611d017b6a5" t="o" /> -<objsur guid="dc71598d-21a2-4598-9c12-13978796d2c9" t="o" /> -<objsur guid="c09eedd3-c4e1-4cf9-b6d1-a01624c6426a" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="bbba8dfc-55a4-4686-a305-060849a97025" ownerguid="21bcc306-13cb-4162-98b3-2ba319ba14ea"> -<ExampleWords> -<AUni ws="en">precious, semiprecious, facet, glitter, sparkle, lustrous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe jewels?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bbbdfe7c-b6f7-4684-a229-038c51b3a33f" ownerguid="23fb1571-c04e-4850-b499-f170bc45247f"> -<ExampleWords> -<AUni ws="en">cataracts, glaucoma</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a disease that causes poor eyesight?</AUni> -</Question> -</rt> -<rt class="MoInflAffMsa" guid="bbbfe118-132f-4744-9f12-6945daa4a632" ownerguid="88843228-3d25-4192-af4b-b368a7803382"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="b6f091af-032e-4c9c-9c5c-443c1328d1e2" t="r" /> -</Slots> -</rt> -<rt class="MoStemAllomorph" guid="bbc00c04-2762-4872-8b10-a321dbf78889" ownerguid="5fa180eb-8427-41aa-af2a-cf08dce5c88f"> -<Form> -<AUni ws="qvm-x-ach">tsaura</AUni> -<AUni ws="qvm-x-acl">tsaura</AUni> -<AUni ws="qvm-x-akh">tsawra</AUni> -<AUni ws="qvm-x-akl">tsawra</AUni> -<AUni ws="qvm-x-ame">tsawra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="bbc0894e-a397-4ddd-a11a-99496e369db1" ownerguid="6e44405a-b655-4226-afc6-5507a4a42b67"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">curl.up</AUni> -<AUni ws="es">encoger</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f21b4bf3-ca19-4ede-b764-70f250f29ad3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="bbc3b166-44e5-4891-9298-5420daf7d3d4" ownerguid="e4111081-4f61-4fef-b14a-b6f497e3cf70"> -<Form> -<AUni ws="qvm-x-ach">shumag</AUni> -<AUni ws="qvm-x-acl">shumag</AUni> -<AUni ws="qvm-x-akh">shumaq</AUni> -<AUni ws="qvm-x-akl">shumaq</AUni> -<AUni ws="qvm-x-ame">shumaq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="bbc3f307-133c-47b5-97ac-d59e966ff060"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sapi</AUni> -<AUni ws="qvm-x-acl">sapi; sapi; sape</AUni> -<AUni ws="qvm-x-akh">sapi</AUni> -<AUni ws="qvm-x-akl">sapi; sapi; sape</AUni> -<AUni ws="qvm-x-ame">sapi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*sapi.1</AUni> -<AUni ws="qvm-x-acl">*sapi.1</AUni> -<AUni ws="qvm-x-akh">*sapi.1</AUni> -<AUni ws="qvm-x-akl">*sapi.1</AUni> -<AUni ws="qvm-x-ame">*sapi.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.449" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9b423e2d-b225-4105-9d00-398a0cf442e7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*sapi.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="de3fa208-9b95-4ac3-b094-7c3a39aa1a35" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a72b5581-fcdc-4e67-94d3-451e5949b5b8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *sapi.1 
\entryTyp root 
\gENG root 
\gSPN raíz 
\e *sapi.1 
\c N0 
\mp +FinalI 
\ach sapi 
\akh sapi 
\acl sapi / _# 
\acl sapi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sape +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sapi / _# 
\akl sapi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sape +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sapi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bbc484f9-a167-4fcb-84cd-8bf9f0ba16a4" ownerguid="12d752d5-53a9-46f6-9e81-3153401cc760"> -<ExampleWords> -<AUni ws="en">time, date, timing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the time of an event?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bbc57cc5-0db6-432e-9c02-4ba42fd1eeed" ownerguid="47672c2a-f85d-431a-81a1-9c78b967fcd2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="bbc5b3a2-4c6e-4d07-849b-4d616615a794" ownerguid="18a6684f-d324-45ee-855c-44d473916b14"> -<Abbreviation> -<AUni ws="en">8.4.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the past or to a time in the past.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Past</AUni> -</Name> -<Questions> -<objsur guid="f9e354c8-0a5b-4cf8-99d6-cf8a3ad935c6" t="o" /> -<objsur guid="94d38651-9ffe-46b4-8414-87b23f1f7ae8" t="o" /> -<objsur guid="72678d13-519c-4819-9559-4a568b014302" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="0656cd5e-641f-46f3-bcad-6f643727a344" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="bbc7bddc-b618-4460-85a8-210c42480f64" ownerguid="da39c0d9-a5c1-4f10-bd3b-4e988abcab5a"> -<ExampleWords> -<AUni ws="en">sorrow, regret, remorse, guilt, conviction, contrition, penitence, repentance, shame, conscience</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of sorrow?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="bbcc6674-775f-46d7-883f-c1d61aea7a43" ownerguid="e67562d2-59c9-4d2e-87e5-aa994c3b7d30"> -<Form> -<AUni ws="qvm-x-ach">pasadïsu</AUni> -<AUni ws="qvm-x-acl">pasadïsu; pasadïsu; pasadïso</AUni> -<AUni ws="qvm-x-akh">pasadïsu</AUni> -<AUni ws="qvm-x-akl">pasadïsu; pasadïsu; pasadïso</AUni> -<AUni ws="qvm-x-ame">pasadïsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="bbd00b1c-739d-4288-a370-3aab776bf465"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gachmi</AUni> -<AUni ws="qvm-x-acl">gachmi; gachmi; gachme</AUni> -<AUni ws="qvm-x-akh">qachmi</AUni> -<AUni ws="qvm-x-akl">qachmi; qachmi; qachme</AUni> -<AUni ws="qvm-x-ame">qachmi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qatrmi</AUni> -<AUni ws="qvm-x-acl">*qatrmi</AUni> -<AUni ws="qvm-x-akh">*qatrmi</AUni> -<AUni ws="qvm-x-akl">*qatrmi</AUni> -<AUni ws="qvm-x-ame">*qatrmi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.144" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="68ce3961-6037-4bb3-b544-8b42012d5c6c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qatrmi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bfc36132-5ff4-4d06-b241-0d4626ab8b74" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a963e21e-442d-4a80-ab78-f6b6f510b5d6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qatrmi 
\entryTyp root 
\gENG 
\gSPN 
\e *qatrmi 
\c N0 
\mp +FinalI 
\ach gachmi 
\akh qachmi 
\acl gachmi / _# 
\acl gachmi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gachme +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qachmi / _# 
\akl qachmi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qachme +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qachmi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="bbd17567-fd7a-4999-b920-ea247e8cf787" ownerguid="7bfd1ead-4cef-47a4-84f3-9fab023d7423"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="bbd2d1da-b97c-4bfc-94f1-1deaf6cc7415" ownerguid="482b5e0e-41af-408d-a300-66c0c7b682de"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="bbd3c3f1-7387-4ec6-a75d-66c1355a94ef" ownerguid="5e9f361d-17dc-4ada-a312-8da269d22a64"> -<Abbreviation> -<AUni ws="en">1.6.1.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.978" /> -<DateModified val="2022-9-23 16:55:7.978" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for even-toed hoofed animals (phylum Chordata, class Mammalia, order Artiodactyla), odd-toed hoofed animals (phylum Chordata, class Mammalia, order Perissodactyla), and elephants (phylum Chordata, class Mammalia, order Proboscidea).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Hoofed animals</AUni> -</Name> -<Questions> -<objsur guid="fcd38ae2-84c7-4bdf-9d5c-f42a309957d4" t="o" /> -<objsur guid="72d65e5a-928d-47d9-b8a1-d076aff636b1" t="o" /> -<objsur guid="80a41ada-343d-4bf0-b0f5-7e0ac88128e3" t="o" /> -<objsur guid="e8a34518-90d5-4c31-a23f-892669f6ac30" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="bbd46563-242d-4d18-9757-b52a0d68bad4" ownerguid="e899f2b9-0495-4e34-b3e6-2a909b32b866"> -<Form> -<AUni ws="qvm-x-ach">maletín; maletin</AUni> -<AUni ws="qvm-x-acl">maletín; maletin</AUni> -<AUni ws="qvm-x-akh">maletín; maletin</AUni> -<AUni ws="qvm-x-akl">maletín; maletin</AUni> -<AUni ws="qvm-x-ame">maletín; maletin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="bbd6666e-257b-40e7-89f0-bdb42f17edec" ownerguid="122956b3-570b-4668-a8b2-2988f9d8ec14"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="bbdc0e42-28dc-4a9f-99a1-d225946cdd4b" ownerguid="ec8e1481-827c-4554-bf50-0d3f592f3702"> -<ExampleWords> -<AUni ws="en">cloth, fabric</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to cloth?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="bbde4375-924b-4202-b8cd-915ccbe85448"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">altu; alto</AUni> -<AUni ws="qvm-x-acl">altu; altu; alto</AUni> -<AUni ws="qvm-x-akh">altu; alto</AUni> -<AUni ws="qvm-x-akl">altu; altu; alto</AUni> -<AUni ws="qvm-x-ame">altu; alto</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+alto.1</AUni> -<AUni ws="qvm-x-acl">+alto.1</AUni> -<AUni ws="qvm-x-akh">+alto.1</AUni> -<AUni ws="qvm-x-akl">+alto.1</AUni> -<AUni ws="qvm-x-ame">+alto.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.719" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9b671713-e20d-4cdd-8924-db9fe32b96cf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+alto.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6408826e-91a8-435f-9015-68212ccf7eaa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="72f2c75d-dc09-421b-ab19-a9227c2a97e1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +alto.1 
\entryTyp root 
\gENG high 
\gSPN alto 
\e +alto.1 
\c N0 
\ach altu / ~_# 
\ach alto / _# 
\akh altu / ~_# 
\akh alto / _# 
\acl altu / ~_# 
\acl altu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl alto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl altu / ~_# 
\akl altu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl alto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame altu / ~_# 
\ame alto / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bbe347cf-06ad-4dcb-9dae-c8de6e194db5" ownerguid="a8b2abb3-d09f-4ff1-89ce-6ae99f16401c"> -<ExampleWords> -<AUni ws="en">isolate, set self apart, remove, disengage, estrange, reserve, withdraw, quit, resign</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to setting oneself apart from others and not relating to them?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bbe41a41-6a05-416f-b80a-a8dc96380cbc" ownerguid="7d472dd5-636d-4499-bf66-83cf23c0dbe1"> -<ExampleWords> -<AUni ws="en">child, children, kid, youngster, boy, girl, brat, small fry, imp, infant, juvenile, minor, offspring, progeny, schoolchild, squirt, tad, urchin, weanling</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a child (from birth to puberty)?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bbe49411-5898-402b-a7a7-3f8482d8eb82" ownerguid="83b483b8-f036-44be-8510-ea337d010a1c"> -<ExampleWords> -<AUni ws="en">long-necked, short-necked, long-winged, zygodactyl</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe birds?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bbecdc46-eaf3-4073-8224-eecc6cf20442" ownerguid="2d0b3058-d8bb-4110-a54a-e507b0d3a0e4"> -<ExampleWords> -<AUni ws="en">pump</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to the heart moving blood?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="bbee9d91-d31a-4983-bcbc-a8e2685628b6" ownerguid="7ffaf94c-bfa2-4afc-b25a-246727eed01f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">alcoholic.drink</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4475359d-8f1d-4112-a2a2-ef2985c7fd22" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="bbf15772-c3e3-44ad-922b-74666dfcbf89" ownerguid="c7f350ff-2a07-4fc8-be34-bf651711bcd1"> -<Form> -<AUni ws="qvm-x-ach">lasdösi; lasdösi</AUni> -<AUni ws="qvm-x-acl">lasdösi; lasdösi; lasdöse</AUni> -<AUni ws="qvm-x-akh">lasdösi; lasdösi</AUni> -<AUni ws="qvm-x-akl">lasdösi; lasdösi; lasdöse</AUni> -<AUni ws="qvm-x-ame">lasdösi; lasdösi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="bbf427d9-d8fe-4508-a14b-063efee87d4c" ownerguid="b5753e98-bf3e-4bc0-8b0f-ecaaf4d2d3f3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">full</AUni> -<AUni ws="es">lleno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5730b2e3-200d-4284-aa70-f3111d0dd00d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="bbf5307d-10c4-469e-bc63-d1f67fc8de14"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chapchu</AUni> -<AUni ws="qvm-x-acl">chapchu; chapcho</AUni> -<AUni ws="qvm-x-akh">chapchu</AUni> -<AUni ws="qvm-x-akl">chapchu; chapcho</AUni> -<AUni ws="qvm-x-ame">chapchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*traptru</AUni> -<AUni ws="qvm-x-acl">*traptru</AUni> -<AUni ws="qvm-x-akh">*traptru</AUni> -<AUni ws="qvm-x-akl">*traptru</AUni> -<AUni ws="qvm-x-ame">*traptru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.68" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="524ee71a-7514-4f10-9b14-5590676c213c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*traptru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bd13daed-1e4f-4277-884f-2bbdb52bfa0f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b651b5c5-7f02-4c60-b38b-d2c93a3a3f15" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *traptru 
\entryTyp root 
\gENG mutter 
\gSPN murmurar 
\e *traptru 
\c V1 
\ach chapchu 
\akh chapchu 
\acl chapchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl chapcho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chapchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chapcho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chapchu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bbf7a35a-9949-49d3-ab32-df9bb9d2554c" ownerguid="36e8f1df-1798-4ae6-904d-600ca6eb4145"> -<ExampleWords> -<AUni ws="en">escape, get out, flee, make your escape, get away, get clear, abandon ship, bail out, evacuate, fly the coop, get free, get loose, run away, scarper, break away, break free, break loose, sneak out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to escaping from a dangerous place?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bbfa18f3-4d6f-4032-975e-ffbce84294b4" ownerguid="a3d95c6a-4b0b-4af0-aca8-addd042becd2"> -<ExampleWords> -<AUni ws="en">playground</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) Where do people play?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bbfaf925-c6ec-467a-9b11-1c6f91781ee1" ownerguid="c36131c3-b5e1-4aac-a7b5-7c9cfa1e8f74"> -<ExampleWords> -<AUni ws="en">pasture, range, enclosure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) Where are goats kept?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="bbfcb997-eca7-444e-8b75-329f3bd38a32" ownerguid="bb538686-64b5-4a7a-a1b7-835a7843e7cd"> -<Form> -<AUni ws="qvm-x-ach">asta</AUni> -<AUni ws="qvm-x-acl">asta</AUni> -<AUni ws="qvm-x-akh">asta</AUni> -<AUni ws="qvm-x-akl">asta</AUni> -<AUni ws="qvm-x-ame">asta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="bbfcbaec-e266-4522-80b2-16f41ac25603"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aguza</AUni> -<AUni ws="qvm-x-acl">aguza</AUni> -<AUni ws="qvm-x-akh">aguza</AUni> -<AUni ws="qvm-x-akl">aguza</AUni> -<AUni ws="qvm-x-ame">aguza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+aguzar</AUni> -<AUni ws="qvm-x-acl">+aguzar</AUni> -<AUni ws="qvm-x-akh">+aguzar</AUni> -<AUni ws="qvm-x-akl">+aguzar</AUni> -<AUni ws="qvm-x-ame">+aguzar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.931" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d7033906-9e45-4196-8c16-a194d2ed4942" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+aguzar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7913c766-0542-435b-ba67-54197cc4e786" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a20a2e9d-e430-4330-9a31-6c3a8c86f3bc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +aguzar 
\entryTyp root 
\gENG sharpen 
\gSPN sacar.punta 
\e +aguzar 
\c V1 
\ach aguza 
\akh aguza 
\acl aguza 
\akl aguza 
\ame aguza</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="bbfd32d9-d744-46a2-addd-823f246ed04f" ownerguid="a104adb9-9e74-4130-aee8-072da2a9ac22"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="6954434e-b184-436e-b418-d9394e3269eb" t="o" /> -<objsur guid="cfda0e77-354d-4ad4-a059-2c46d51830e2" t="o" /> -<objsur guid="a1dfce7c-8be3-47e9-8ab6-443b5d634f42" t="o" /> -<objsur guid="2392275c-1635-43e4-9f84-732de012ba36" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="bbfdf9e8-3659-4dad-973b-7e8cccfb5d6d" ownerguid="38473463-4b92-4681-8fd0-0aca0342e88a"> -<ExampleWords> -<AUni ws="en">rotifer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to rotifers (phylum Rotifera)?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="bbff1d40-e754-42d6-ad25-68f2993e137d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cu</AUni> -<AUni ws="qvm-x-acl">cu</AUni> -<AUni ws="qvm-x-akh">ku</AUni> -<AUni ws="qvm-x-akl">ku</AUni> -<AUni ws="qvm-x-ame">ku</AUni> -</Custom> -<AlternateForms> -<objsur guid="22806abf-f462-448a-bb3e-39bbf5d75aea" t="o" /> -<objsur guid="2b952a19-fce6-44e5-ab25-c091ef27f843" t="o" /> -</AlternateForms> -<DateCreated val="2022-09-23 18:26:20.568" /> -<DateModified val="2022-12-01 21:45:57.857" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="2" /> -<LexemeForm> -<objsur guid="840819ff-8e8d-44e2-a503-ed688872bd5b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">REF</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="909cfa11-00e3-4787-b51b-dfac729061be" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx REF 
\entryTyp suffix 
\gENG REF 
\gSPN REF 
\e REF 
\c V1/V1 V2/V2 
\o 000 
\mp PMlowered 
\ach cu 
\ach ca morphlowered 
\akh ku 
\akh ka morphlowered 
\acl cu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl co +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ca morphlowered 
\akl ku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ka morphlowered 
\ame ku 
\ame ka morphlowered 
\mcc REF PLDIR / ~_ ... INF.noI # 
\mcc REF / {+underlong} ~_ [dir] 
\mcc REF / ~_ NOM 3P.V ([wfinal+shade]) # 
\mcc REF / ~_ PLALL 
\mcc REF / ~_ REF 
\mcc REF / [v2] ~_</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="bc011a6a-46e2-492e-b923-6dc6e03dcea4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shipi</AUni> -<AUni ws="qvm-x-acl">shipi; shipi; shipe</AUni> -<AUni ws="qvm-x-akh">shipi</AUni> -<AUni ws="qvm-x-akl">shipi; shipi; shipe</AUni> -<AUni ws="qvm-x-ame">shipi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shipi.n</AUni> -<AUni ws="qvm-x-acl">*shipi.n</AUni> -<AUni ws="qvm-x-akh">*shipi.n</AUni> -<AUni ws="qvm-x-akl">*shipi.n</AUni> -<AUni ws="qvm-x-ame">*shipi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.602" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2b3a0a8e-ba9a-401c-b9bd-bba960a95486" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shipi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7c7fdfe1-16ef-4193-addd-07e3a5c5a490" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dcd5cb8f-b263-491d-be14-f0981beae5ab" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shipi.n 
\entryTyp root 
\gENG chilwar 
\gSPN chilhuar 
\e *shipi.n 
\c N0 
\mp +FinalI 
\ach shipi 
\akh shipi 
\acl shipi / _# 
\acl shipi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shipe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shipi / _# 
\akl shipi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shipe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shipi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="bc052c48-d3ad-43b6-a52c-5fdfddda49fc" ownerguid="94eec3c2-abc3-48d6-b3a8-e3e7ebb7ac98"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="bc0565a2-4c4b-4c52-9d91-c1f4e01de3ba" ownerguid="ceff0bcd-a262-4e41-bf0c-920b446951be"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ka</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ka</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="22806abf-f462-448a-bb3e-39bbf5d75aea" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -<Sense> -<objsur guid="909cfa11-00e3-4787-b51b-dfac729061be" t="r" /> -</Sense> -</rt> -<rt class="WfiMorphBundle" guid="bc084959-493b-48ca-ba96-33a2cddc7fce" ownerguid="e22444ea-92b3-4abc-a341-69f01dfab3a4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="bc102db5-fe31-4be6-8c2e-b6d2a9d035ae"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lo:ca</AUni> -<AUni ws="qvm-x-acl">lo:ca</AUni> -<AUni ws="qvm-x-akh">lo:ca</AUni> -<AUni ws="qvm-x-akl">lo:ca</AUni> -<AUni ws="qvm-x-ame">lo:ca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+loca</AUni> -<AUni ws="qvm-x-acl">+loca</AUni> -<AUni ws="qvm-x-akh">+loca</AUni> -<AUni ws="qvm-x-akl">+loca</AUni> -<AUni ws="qvm-x-ame">+loca</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.104" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="283348ea-4944-41e6-9135-84889c63f362" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+loca</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="45f14fc7-ba1d-4bed-b30c-2ad3696cf569" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="05187a74-5a16-4e4d-8a85-6a3bbdb215c1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +loca 
\entryTyp root 
\gENG crazy 
\gSPN loco 
\e +loca 
\c N0 
\ach lo:ca 
\akh lo:ca 
\acl lo:ca 
\akl lo:ca 
\ame lo:ca</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="bc11b8e2-72b1-42f6-a42f-06ed287f248b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">costal</AUni> -<AUni ws="qvm-x-acl">costal</AUni> -<AUni ws="qvm-x-akh">costal</AUni> -<AUni ws="qvm-x-akl">costal</AUni> -<AUni ws="qvm-x-ame">costal</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+costal</AUni> -<AUni ws="qvm-x-acl">+costal</AUni> -<AUni ws="qvm-x-akh">+costal</AUni> -<AUni ws="qvm-x-akl">+costal</AUni> -<AUni ws="qvm-x-ame">+costal</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.204" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7bf2ca78-d3b7-47e8-bdee-563fe561f1ff" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+costal</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="496ba683-1f62-422b-af0d-f71f5a921b6f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c030e559-adb9-4ae9-8053-0c187cd49a60" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +costal 
\entryTyp root 
\gENG sack 
\gSPN costal 
\e +costal 
\c N0 
\mp +FinalC 
\ach costal 
\akh costal 
\acl costal 
\akl costal 
\ame costal</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="bc144b7d-c87d-4f36-a662-01a632e3e592"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">respito:su</AUni> -<AUni ws="qvm-x-acl">respito:su; respito:su; respito:so</AUni> -<AUni ws="qvm-x-akh">respito:su</AUni> -<AUni ws="qvm-x-akl">respito:su; respito:su; respito:so</AUni> -<AUni ws="qvm-x-ame">respito:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+respetuoso</AUni> -<AUni ws="qvm-x-acl">+respetuoso</AUni> -<AUni ws="qvm-x-akh">+respetuoso</AUni> -<AUni ws="qvm-x-akl">+respetuoso</AUni> -<AUni ws="qvm-x-ame">+respetuoso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.338" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8e8bb8db-c63e-409d-8432-ab65a20e2bae" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+respetuoso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aad1bd84-9f36-4cc3-a61b-1536175597d4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d04d074f-2666-4972-b215-c67ea46daffb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +respetuoso 
\entryTyp root 
\gENG respectul 
\gSPN respitoso 
\e +respetuoso 
\c N0 
\ach respito:su 
\akh respito:su 
\acl respito:su / _# 
\acl respito:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl respito:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl respito:su / _# 
\akl respito:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl respito:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame respito:su</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bc1ba6be-286d-49be-8620-3c858ba6e413" ownerguid="6bfb7813-3a7d-47e2-88e1-d54034c07e5d"> -<ExampleWords> -<AUni ws="en">refuse advice, ignore advice</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to not accepting advice?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bc200771-3e33-42ca-af78-ebb98bfa3fbc" ownerguid="fcda3c9b-d0d3-4f73-b815-0716fb5455d5"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="bc231b81-873e-426e-aaad-5aa017706f94" ownerguid="f5e2ad18-5ad4-4186-9572-b1542096759e"> -<ExampleWords> -<AUni ws="en">infantryman, private, buck private, corporal, sergeant, warrant officer, lieutenant, captain, major, colonel, general, field marshal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the military ranks in the army?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="bc23a3e4-5815-4938-8a97-eedf3ec06cfd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">po:mu</AUni> -<AUni ws="qvm-x-acl">po:mu; po:mu; po:mo</AUni> -<AUni ws="qvm-x-akh">po:mu</AUni> -<AUni ws="qvm-x-akl">po:mu; po:mu; po:mo</AUni> -<AUni ws="qvm-x-ame">po:mu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pomo</AUni> -<AUni ws="qvm-x-acl">+pomo</AUni> -<AUni ws="qvm-x-akh">+pomo</AUni> -<AUni ws="qvm-x-akl">+pomo</AUni> -<AUni ws="qvm-x-ame">+pomo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.901" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="148f5bfa-01e1-4ea0-b5e9-4581a6d85a7f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pomo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9e6c783f-0744-4559-aded-f9efc38cd73d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9e44d8b3-f58d-4d56-a06a-cf4b41de575a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pomo 
\entryTyp root 
\gENG 
\gSPN 
\e +pomo 
\c N0 
\ach po:mu 
\akh po:mu 
\acl po:mu / _# 
\acl po:mu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl po:mo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl po:mu / _# 
\akl po:mu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl po:mo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame po:mu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="bc241f99-65c1-4a28-9abf-c1949935d4b1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">prostitu:tu</AUni> -<AUni ws="qvm-x-acl">prostitu:tu; prostitu:tu; prostitu:to</AUni> -<AUni ws="qvm-x-akh">prostitu:tu</AUni> -<AUni ws="qvm-x-akl">prostitu:tu; prostitu:tu; prostitu:to</AUni> -<AUni ws="qvm-x-ame">prostitu:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+prostituto</AUni> -<AUni ws="qvm-x-acl">+prostituto</AUni> -<AUni ws="qvm-x-akh">+prostituto</AUni> -<AUni ws="qvm-x-akl">+prostituto</AUni> -<AUni ws="qvm-x-ame">+prostituto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.950" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cd180408-3e0d-4359-8f7d-c5a615731f20" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+prostituto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="223829bb-4fc2-4541-8d0f-bd919345ff5c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9679180f-37a5-4e95-8bfc-045b3a71b319" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +prostituto 
\entryTyp root 
\gENG prostitute 
\gSPN prostituto 
\e +prostituto 
\c N0 
\ach prostitu:tu 
\akh prostitu:tu 
\acl prostitu:tu / _# 
\acl prostitu:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl prostitu:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl prostitu:tu / _# 
\akl prostitu:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl prostitu:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame prostitu:tu 
\i 1KI 14.24 Saynöpis capillacunaman aywar saycho caycag prostitüta warmicunawan y prostitütu runacunawan cacorgan saynöpa Diosta adorashganta yarpashpan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bc24981c-8bfd-40ba-a81e-f5fa69d892f4" ownerguid="196bf7b1-54a1-4a78-8d10-c61585849c63"> -<ExampleWords> -<AUni ws="en">companion, traveling companion, fellow travelers/passengers, escort (n), tour group</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to someone you travel with?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bc253aad-e8bd-4c28-baaa-d7b77c463eba" ownerguid="70f80041-af88-4521-9ebd-21d8f0b0d131"> -<ExampleWords> -<AUni ws="en">the front</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the front of a line of people or vehicles?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="bc27752e-66ee-4878-8dc1-2185801096d4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">latu</AUni> -<AUni ws="qvm-x-acl">latu; lato</AUni> -<AUni ws="qvm-x-akh">latu</AUni> -<AUni ws="qvm-x-akl">latu; lato</AUni> -<AUni ws="qvm-x-ame">latu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llatu.v</AUni> -<AUni ws="qvm-x-acl">*llatu.v</AUni> -<AUni ws="qvm-x-akh">*llatu.v</AUni> -<AUni ws="qvm-x-akl">*llatu.v</AUni> -<AUni ws="qvm-x-ame">*llatu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.174" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8e6e0ece-4ee5-4042-a160-9267d59b8738" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llatu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1f24c267-6a42-42fa-969d-3a8cf9a1aff4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8cf52999-8317-4bb7-acd7-e121aa870c3c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llatu.v 
\entryTyp root 
\gENG smash 
\gSPN machucar 
\e *llatu.v 
\c V1 
\ach latu 
\akh latu 
\acl latu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl latu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame latu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="bc296d2e-da61-4fd2-a495-61030d0a0421" ownerguid="efc4ecf6-f71a-47c6-9b9c-d5c59dab61f2"> -<Form> -<AUni ws="qvm-x-ach">pësa</AUni> -<AUni ws="qvm-x-acl">pësa</AUni> -<AUni ws="qvm-x-akh">pësa</AUni> -<AUni ws="qvm-x-akl">pësa</AUni> -<AUni ws="qvm-x-ame">pësa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="bc2de619-fc27-4fc2-a3b6-965136dd86fb" ownerguid="770a116e-6021-41a8-a523-fa86a0ce3b65"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">true</AUni> -<AUni ws="es">de.veras</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="07ba9450-4e79-46b1-9945-c7fa09bbe2de" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="bc2f46c0-7e5d-44e7-bdcc-4469141dfdf1" ownerguid="aa82a014-c85e-403b-b0e8-63569f15f7d9"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 22.32 Atacananpag tumareg juntapaycuptinmi Josafatga gaparargan ausiliuta manacushpan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="bc30dac9-aba9-4827-b21e-e7cc8ddee01c" ownerguid="d38f76c5-5c31-4a0a-bfab-e68eba44609c"> -<Form> -<AUni ws="qvm-x-ach">pati</AUni> -<AUni ws="qvm-x-acl">pati; pate</AUni> -<AUni ws="qvm-x-akh">pati</AUni> -<AUni ws="qvm-x-akl">pati; pate</AUni> -<AUni ws="qvm-x-ame">pati</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StTxtPara" guid="bc33ef15-be3a-41fa-a767-708f24c1cd8a" ownerguid="7d78db90-a316-4649-84b0-32db353e8633"> -<Contents> -<Str> -<Run ws="qvm-x-akh">Tsaycho</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="744e213c-45e2-4aaa-b30d-dd54309d8e62" t="o" /> -</Segments> -</rt> -<rt class="MoStemAllomorph" guid="bc347f34-23d8-4351-982f-2771f9421f75" ownerguid="57f1ffbf-6812-4906-83f7-4e3cc61ebdb6"> -<Form> -<AUni ws="qvm-x-ach">manca</AUni> -<AUni ws="qvm-x-acl">manca</AUni> -<AUni ws="qvm-x-akh">manka</AUni> -<AUni ws="qvm-x-akl">manka</AUni> -<AUni ws="qvm-x-ame">manka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="bc389b96-274f-448e-9825-09929a97231a" ownerguid="d83402b0-6631-4925-9300-54aa3b751e9b"> -<Form> -<AUni ws="qvm-x-ach">lula</AUni> -<AUni ws="qvm-x-acl">lula</AUni> -<AUni ws="qvm-x-akh">lula</AUni> -<AUni ws="qvm-x-akl">lula</AUni> -<AUni ws="qvm-x-ame">lula</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="bc3a1e67-d4b0-42ff-b653-0b769c179b3d" ownerguid="c2f01aa8-9f94-43c9-9ada-b1e4a60aba07"> -<ExampleWords> -<AUni ws="en">crook (of the arm when it is bent), fist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a part of an arm when it is in a particular position?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="bc3a8d92-bebb-4c64-b83e-5bd3c92864d9" ownerguid="17296a19-2182-430b-85fb-43eb494b0651"> -<Form> -<AUni ws="qvm-x-ach">lapani</AUni> -<AUni ws="qvm-x-acl">lapani; lapani; lapane</AUni> -<AUni ws="qvm-x-akh">lapani</AUni> -<AUni ws="qvm-x-akl">lapani; lapani; lapane</AUni> -<AUni ws="qvm-x-ame">lapani</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="bc3a951a-fbae-4cb6-819a-0478e76ec0c2" ownerguid="d030f0c7-31a3-47da-be35-46f1eba63ae9"> -<ExampleWords> -<AUni ws="en">like, be fond of, be attached to, have a soft spot for, see something in someone, a man/woman after your own heart</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to liking someone?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="bc3fd853-3bec-48db-a7d7-9b814215773c" ownerguid="7b2702a5-9ab0-4c7e-b7b0-d665d3e60668"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">a.drink</AUni> -<AUni ws="es">trago</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f353730d-7edf-4897-84d6-fe485761e8bb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="bc402db4-d50d-4462-8b6b-c4ef65c780a8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">agenti; agente</AUni> -<AUni ws="qvm-x-acl">agenti; agenti; agente</AUni> -<AUni ws="qvm-x-akh">agenti; agente</AUni> -<AUni ws="qvm-x-akl">agenti; agenti; agente</AUni> -<AUni ws="qvm-x-ame">agenti; agente</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+agente</AUni> -<AUni ws="qvm-x-acl">+agente</AUni> -<AUni ws="qvm-x-akh">+agente</AUni> -<AUni ws="qvm-x-akl">+agente</AUni> -<AUni ws="qvm-x-ame">+agente</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.659" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e07b7eb8-92ea-4eb1-80f4-18c842018041" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+agente</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="067af888-176a-4e7d-aba8-e592fbbeb6f1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5eaba272-2af0-4b2c-8a16-76714797a264" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +agente 
\entryTyp root 
\gENG agent 
\gSPN agente 
\e +agente 
\c N0 
\mp +FinalI 
\ach agenti / ~_# 
\ach agente / _# 
\akh agenti / ~_# 
\akh agente / _# 
\acl agenti / ~_# 
\acl agenti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl agente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl agenti / ~_# 
\akl agenti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl agente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame agenti / ~_# 
\ame agente / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="bc411fdd-048e-4884-8169-f26a9acb77cd" ownerguid="2ae33e10-d42f-492c-9429-f486fb613a7d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="bc479751-fb7b-4d42-9852-7f4af560e491" ownerguid="f20ab82e-0875-441f-94db-fe01f8b527cb"> -<Form> -<AUni ws="qvm-x-ach">tsumi</AUni> -<AUni ws="qvm-x-acl">tsumi; tsumi; tsume</AUni> -<AUni ws="qvm-x-akh">tsumi</AUni> -<AUni ws="qvm-x-akl">tsumi; tsumi; tsume</AUni> -<AUni ws="qvm-x-ame">tsumi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="bc49ef8f-7709-449e-a53c-7db114336637" ownerguid="32260b00-dd19-4316-a833-a8a6cf5b6783"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="bc5695dc-5747-4e36-bebb-6637363cfa88" ownerguid="8a42ded1-e11a-41be-a366-c76ae9db11ba"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">nga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">nga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">nqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">nqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="5dcad267-89ba-4258-b423-e84c57ba90ed" t="r" /> -</Morph> -<Msa> -<objsur guid="cdacd2fc-4611-457d-b88f-3c9c8bb345b9" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="bc5a97ca-0f37-40f8-9db7-2881005975ce" ownerguid="78b0ad1b-0766-41ba-b788-d176addd5e9f"> -<ExampleWords> -<AUni ws="en">speak little, taciturn, shy, man of few words, uncommunicative, reticent, hold your tongue</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to speaking a little?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="bc5b25bc-06f4-4569-9e0c-c427dbacdb2e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">anya</AUni> -<AUni ws="qvm-x-acl">anya</AUni> -<AUni ws="qvm-x-akh">anya</AUni> -<AUni ws="qvm-x-akl">anya</AUni> -<AUni ws="qvm-x-ame">anya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*anya.v</AUni> -<AUni ws="qvm-x-acl">*anya.v</AUni> -<AUni ws="qvm-x-akh">*anya.v</AUni> -<AUni ws="qvm-x-akl">*anya.v</AUni> -<AUni ws="qvm-x-ame">*anya.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.800" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3f8dcac1-8d88-4d0e-ba98-d4e2d65b18c1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*anya.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4179e6f2-2c5b-4435-81be-08b02547060b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cc38febd-e1d6-46d2-9d8c-688f47a39481" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *anya.v 
\entryTyp root 
\gENG to.counsel 
\gSPN dar.consejo 
\e *anya.v 
\c V2 
\ach anya 
\akh anya 
\acl anya 
\akl anya 
\ame anya</Run> -</AStr> -</Custom> -</rt> -<rt class="StStyle" guid="bc5caa5e-6324-4935-8573-8378fc6cf6c9" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="a5a1a249-b888-434d-a839-a2421ec50dbf" t="r" /> -</BasedOn> -<Context val="10" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Chapter Head</Uni> -</Name> -<Next> -<objsur guid="679ab46a-8a27-4449-91b1-edad14669b01" t="r" /> -</Next> -<Rules> -<Prop align="center" italic="off"></Prop> -</Rules> -<Structure val="1" /> -<Type val="0" /> -<Usage> -<AUni ws="en">Chapter Head identifies a heading that contains the chapter number and the word for Chapter or Psalm.</AUni> -</Usage> -<UserLevel val="0" /> -</rt> -<rt class="LexEntry" guid="bc5d011e-e125-4655-bae4-c775a009b4ef"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">reta:ma</AUni> -<AUni ws="qvm-x-acl">reta:ma</AUni> -<AUni ws="qvm-x-akh">reta:ma</AUni> -<AUni ws="qvm-x-akl">reta:ma</AUni> -<AUni ws="qvm-x-ame">reta:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+retama</AUni> -<AUni ws="qvm-x-acl">+retama</AUni> -<AUni ws="qvm-x-akh">+retama</AUni> -<AUni ws="qvm-x-akl">+retama</AUni> -<AUni ws="qvm-x-ame">+retama</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.346" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4f5fdea5-3ed8-4362-a5ae-78bfec970b4e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+retama</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dd409242-352f-4695-9a95-3606a8e89d1f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c7dc72a7-5f20-43b3-ac7a-95a32e749895" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +retama 
\entryTyp root 
\gENG 
\gSPN 
\e +retama 
\c N0 
\ach reta:ma 
\akh reta:ma 
\acl reta:ma 
\akl reta:ma 
\ame reta:ma</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="bc5e0227-243f-4347-bc02-775398459106"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mundu; mundo</AUni> -<AUni ws="qvm-x-acl">mundu; mundu; mundo</AUni> -<AUni ws="qvm-x-akh">mundu; mundo</AUni> -<AUni ws="qvm-x-akl">mundu; mundu; mundo</AUni> -<AUni ws="qvm-x-ame">mundu; mundo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mundo</AUni> -<AUni ws="qvm-x-acl">+mundo</AUni> -<AUni ws="qvm-x-akh">+mundo</AUni> -<AUni ws="qvm-x-akl">+mundo</AUni> -<AUni ws="qvm-x-ame">+mundo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.497" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="73c326fb-2863-4e24-b5f5-e80066dc053a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mundo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7a81e7a1-9cb6-45e3-9399-b25ad01a643d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="33e4c15f-49fb-439f-af59-3b2243ecac50" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mundo 
\entryTyp root 
\gENG world 
\gSPN mundo 
\e +mundo 
\c N0 
\ach mundu / ~_# 
\ach mundo / _# 
\akh mundu / ~_# 
\akh mundo / _# 
\acl mundu / ~_# 
\acl mundu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mundo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mundu / ~_# 
\akl mundu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mundo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mundu / ~_# 
\ame mundo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="bc5f355f-97e4-4d5b-b26e-1a07eca6e394" ownerguid="4fa873e3-bd37-4bda-9fa0-6802f4171a45"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="bc60dc77-07bf-4243-b6a7-a4239c011f20" ownerguid="c6e365c2-5fd4-4d69-8202-bc20a49fa1d8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wac</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wac</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wak</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wak</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wak</Run> -</AStr> -</Form> -<Morph> -<objsur guid="9877608f-5900-43c7-b321-63addb34dad5" t="r" /> -</Morph> -<Msa> -<objsur guid="55cec91f-07f2-4291-948a-3f7383c9c918" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="bc61bd8d-295b-4965-a183-703d21a56996" ownerguid="4a8c6c2e-7a8f-4dd6-97d3-20a35d7d10e9"> -<Abbreviation> -<AUni ws="en">4.5.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.256" /> -<DateModified val="2022-9-23 16:55:8.256" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a title of honor.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Title, name of honor</AUni> -</Name> -<Questions> -<objsur guid="7c29438c-62f3-4235-b93c-c4362a199b47" t="o" /> -<objsur guid="a156e0b1-da0a-43be-a19b-303229f7ece8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="bc661667-0d83-4ec5-a081-92504492566f" ownerguid="cb7140d4-d89f-4337-b5bb-b823ad4eb1f8"> -<Form> -<AUni ws="qvm-x-ach">chupu</AUni> -<AUni ws="qvm-x-acl">chupu; chupu; chupo</AUni> -<AUni ws="qvm-x-akh">chupu</AUni> -<AUni ws="qvm-x-akl">chupu; chupu; chupo</AUni> -<AUni ws="qvm-x-ame">chupu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="bc6b6484-99cd-4951-ac3d-8d827ee473f7" ownerguid="2cccfd92-de45-42c2-83f7-1e0ef7dfddc1"> -<ExampleWords> -<AUni ws="en">unique, distinctive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is not like anything else?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="bc6e8523-880b-4d6e-bc7d-7e66b98cc4db" ownerguid="aebb2f11-8120-46f8-9df3-6a264d9c804f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.famished</AUni> -<AUni ws="es">hambrear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c89af841-45bf-4559-96c3-f2055a4a6ef7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="bc6f67a4-c70f-4cdc-8a3d-fd4afad45e22" ownerguid="9cd50dc7-a476-410c-b06c-3978b1b21176"> -<Form> -<AUni ws="qvm-x-ach">alamälas</AUni> -<AUni ws="qvm-x-acl">alamälas</AUni> -<AUni ws="qvm-x-akh">alamälas</AUni> -<AUni ws="qvm-x-akl">alamälas</AUni> -<AUni ws="qvm-x-ame">alamälas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="bc706e2a-1dc0-438f-989c-69a733d67e31" ownerguid="3ab01c1e-439b-44a6-95d0-6c680f6f46d3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="bc7d7ed1-7a68-4f89-a2e3-f9250e123a19" ownerguid="9a9c7174-4148-43c2-875c-0d2f884a5fe3"> -<ExampleWords> -<AUni ws="en">untidy, scruffy, unkempt, disheveled, bedraggled</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone whose clothes and hair are untidy?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="bc7eecb3-e6fc-4278-a8e3-cfcd6f87472a" ownerguid="08203117-dfb9-4e8a-91bc-a3460256a3bc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="3be6a502-f105-45f7-bdf8-0872885ae1d5" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="ee6a1ab9-356f-4019-9109-74acd44c2c06" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="bc809580-9747-4572-98aa-8370bdf262c0" ownerguid="ccbbd16f-58c5-45c1-bfff-1fba64d9740e"> -<Question> -<AUni ws="en">(6) limited duration: action performed for a relatively short or bounded period of time.</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bc8256d3-349f-4ba5-bac8-310ade4e556e" ownerguid="44dc42e4-e9c7-4aa9-ac9b-1008385244b1"> -<ExampleWords> -<AUni ws="en">father, dad, old man, pa, papa, sire</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to your father?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="bc831a09-ec37-419b-894a-38a93d42b68c" ownerguid="2ef1c923-3a98-4b23-a1d1-99cf3fd74919"> -<Form> -<AUni ws="qvm-x-ach">yarputsi</AUni> -<AUni ws="qvm-x-acl">yarputsi; yarputse</AUni> -<AUni ws="qvm-x-akh">yarputsi</AUni> -<AUni ws="qvm-x-akl">yarputsi; yarputse</AUni> -<AUni ws="qvm-x-ame">yarputsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="bc844a71-108d-461f-9f62-cd79740e130e" ownerguid="cf4d4d84-b7b7-4f0b-93e1-8484e851d6eb"> -<Form> -<AUni ws="qvm-x-ach">shicshi</AUni> -<AUni ws="qvm-x-acl">shicshi; shicshe</AUni> -<AUni ws="qvm-x-akh">shikshi</AUni> -<AUni ws="qvm-x-akl">shikshi; shikshe</AUni> -<AUni ws="qvm-x-ame">shikshi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="bc862bff-88c2-4d04-b51c-4f127c3bf9a4" ownerguid="9ef41718-0161-4427-af6d-55c02e92b015"> -<Form> -<AUni ws="qvm-x-ach">sagchu</AUni> -<AUni ws="qvm-x-acl">sagchu; sagchu; sagcho</AUni> -<AUni ws="qvm-x-akh">saqchu</AUni> -<AUni ws="qvm-x-akl">saqchu; saqchu; saqcho</AUni> -<AUni ws="qvm-x-ame">saqchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="bc868a4c-25a1-4b8e-9523-538402348811" ownerguid="96ea5712-6e0c-4282-89d5-f4bde408f12a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 12.14 Tsaynoglami comedïducunaga imatapis tarin.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="bc8c6701-f48f-4ed7-9f45-b73027c226ff" ownerguid="53ba3b61-4f4e-4749-8a7f-0d2b327a113d"> -<ExampleWords> -<AUni ws="en">plan, aim, objective, goal, purpose, program, scheme</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a plan?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="bc8d0ad4-6ebf-4fa0-bc7e-60e8ec9c43db" ownerguid="d98c1c67-b70e-4a35-89db-2e744bd5197f"> -<Abbreviation> -<AUni ws="en">2.1.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the eye.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Eye</AUni> -</Name> -<Questions> -<objsur guid="3e85ef4d-9d4b-4988-a70d-64f21c1b80c7" t="o" /> -<objsur guid="128d5c2e-6aaf-4214-9502-9cb67e995766" t="o" /> -<objsur guid="7c6b7816-e578-4c23-af4e-b73653ba75dd" t="o" /> -<objsur guid="7b4a0029-0aec-4d63-bf20-8abaeea38e10" t="o" /> -<objsur guid="ea83effc-73f4-49bc-80f6-e6b61997e4be" t="o" /> -<objsur guid="a42c967a-f80f-4b97-8c1d-fcd4246ec56e" t="o" /> -<objsur guid="4b4e04e8-85f2-45a1-8d5b-88de70d1c9d6" t="o" /> -<objsur guid="2844551b-9c8b-464b-b45d-7ce09a61f99a" t="o" /> -<objsur guid="77b904d5-99e3-453f-a22e-18f5f26bda59" t="o" /> -<objsur guid="1f8ecfc1-a315-4216-8979-29e3693623bb" t="o" /> -<objsur guid="d8f1622b-b805-475a-beee-cc410ab67989" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="b4fe4698-54a2-4bcd-9490-e07ee1ee97af" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="bc8e0843-88c3-4571-a7f1-6f79fff689a9"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">mözuyänanyaqqa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="bc934585-14b8-4154-a564-0fd8e7b05923" ownerguid="a7522f0d-f5fe-4f37-8daf-3ec0db391cb1"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" t="r" /> -</Morph> -<Msa> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="bc940e64-ee30-44ef-8270-c80c599161e1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">banca</AUni> -<AUni ws="qvm-x-acl">banca</AUni> -<AUni ws="qvm-x-akh">banca</AUni> -<AUni ws="qvm-x-akl">banca</AUni> -<AUni ws="qvm-x-ame">banca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+banca</AUni> -<AUni ws="qvm-x-acl">+banca</AUni> -<AUni ws="qvm-x-akh">+banca</AUni> -<AUni ws="qvm-x-akl">+banca</AUni> -<AUni ws="qvm-x-ame">+banca</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.941" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="03743a2a-7c17-4dcf-ab19-43d09432add2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+banca</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f1ce0df9-8d5f-4a61-85c0-91b13d8c17e5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ef96b857-ccea-4f81-882b-1c5e2fbf1e08" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +banca 
\entryTyp root 
\gENG bench 
\gSPN banca 
\e +banca 
\c N0 
\ach banca 
\akh banca 
\acl banca 
\akl banca 
\ame banca</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="bc96b3e3-6185-4925-b79e-8f0f9555bfb7" ownerguid="c9aee4df-ac3e-4159-bd1a-060db1a5f070"> -<Abbreviation> -<AUni ws="en">3.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.172" /> -<DateModified val="2022-9-23 16:55:8.172" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a language.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33A Language</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Language</AUni> -</Name> -<OcmCodes> -<Uni>190 Language; 197 Linguistic Identification; 198 Special Languages; 193 Grammar; 194 Phonology; 192 Vocabulary</Uni> -</OcmCodes> -<Questions> -<objsur guid="6a18798b-5b50-481a-8068-2f44b260f783" t="o" /> -<objsur guid="2330302a-d1f0-4827-a93f-9b92e8ee216b" t="o" /> -<objsur guid="f18442d1-d973-466e-96b0-91a8d3ee7fe9" t="o" /> -<objsur guid="c8c9f6a1-eefb-4dea-a245-4e825a8e88d1" t="o" /> -<objsur guid="bb13362c-a733-4ca4-a51e-e6464ccb7c95" t="o" /> -<objsur guid="4150ca15-772c-4bdd-bb49-21cac48d7d85" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="29a8ebbe-ebc4-4295-b6af-84331d019361" t="o" /> -<objsur guid="4a388000-d5c6-4127-91cd-f4e0c9fac6f1" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="bc972dfe-8b5f-4c04-bf99-e2a5b2c557c3" ownerguid="82a4ae36-8e70-4c0d-8144-ad9fc3c0e04f"> -<ExampleWords> -<AUni ws="en">make level, level (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making something level?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="bc9bd837-ae7c-4e7d-be15-0d7984e48f80" ownerguid="24b78cba-d55b-44d2-8a76-5f3df1bf5009"> -<Form> -<AUni ws="qvm-x-ach">muñanca</AUni> -<AUni ws="qvm-x-acl">muñanca</AUni> -<AUni ws="qvm-x-akh">muñanka</AUni> -<AUni ws="qvm-x-akl">muñanka</AUni> -<AUni ws="qvm-x-ame">muñanka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="bc9d763c-e4fe-48ab-ad44-87a36f6cc06f" ownerguid="9efa7949-de15-499a-b382-4560e06c4fb4"> -<Abbreviation> -<AUni ws="en">3.5.1.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.164" /> -<DateModified val="2022-9-23 16:55:8.164" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to criticizing someone or something--to say that something is bad, especially something that someone did.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33S' Criticize</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Criticize</AUni> -</Name> -<Questions> -<objsur guid="250eed0f-becf-43d9-b0d3-1e0308f103b1" t="o" /> -<objsur guid="1e87ee51-abac-45ca-8c4c-a0fa3dec02b9" t="o" /> -<objsur guid="2c843c2d-7825-4412-a949-1f56791d1ee2" t="o" /> -<objsur guid="49734831-c882-43d5-91ac-7bdcb3c3bf8e" t="o" /> -<objsur guid="d29699a9-a885-4772-969f-ee0a4f6e9f5a" t="o" /> -<objsur guid="3f9c528b-ea7b-4a52-bcf3-55b2b9ce0c27" t="o" /> -<objsur guid="a0659fd1-f3b7-492b-bd93-5514183d4291" t="o" /> -<objsur guid="070902be-1583-4ae6-8702-e5057745c80b" t="o" /> -<objsur guid="1303c423-8310-4a36-b954-6e909f7af3f7" t="o" /> -<objsur guid="826a5a65-5629-4b43-8273-e89e938f03b0" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c79d49f1-74ec-4dba-a5aa-5e861af63d05" t="o" /> -<objsur guid="81b62078-984c-4e82-94c4-39fa44dd3e56" t="o" /> -<objsur guid="e2d3294b-4463-48bb-95e4-8c9b5238ecec" t="o" /> -<objsur guid="7bca1201-31f8-4f65-8da9-af0eff36b388" t="o" /> -<objsur guid="f3dbb078-6265-4861-a6e3-46cc151c5d72" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="bc9f24b0-f740-42c8-ba9d-fa8bd4e652c0" ownerguid="46c44f13-ca96-4108-bc90-950e4c3a25c7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="bca1af45-7621-43c0-9152-fac0018e5319" ownerguid="e931da8a-efc1-46cb-836a-72fba4a1eb4f"> -<Abbreviation> -<AUni ws="en">7.3.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.528" /> -<DateModified val="2022-9-23 16:55:8.528" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to driving people and animals--to cause someone (or an animal) to move with you.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15V Drive Along, Carry Along</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Drive along</AUni> -</Name> -<Questions> -<objsur guid="d378771a-8157-4194-91c8-c775576b6373" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="bca1d45b-f438-497e-b9b2-1f0e67f3a410"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pastu; pasto</AUni> -<AUni ws="qvm-x-acl">pastu; pastu; pasto</AUni> -<AUni ws="qvm-x-akh">pastu; pasto</AUni> -<AUni ws="qvm-x-akl">pastu; pastu; pasto</AUni> -<AUni ws="qvm-x-ame">pastu; pasto</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pasto</AUni> -<AUni ws="qvm-x-acl">+pasto</AUni> -<AUni ws="qvm-x-akh">+pasto</AUni> -<AUni ws="qvm-x-akl">+pasto</AUni> -<AUni ws="qvm-x-ame">+pasto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.749" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="248e58eb-4e0a-43d3-9910-0fae1ac0b81b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pasto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0128d027-3c04-4277-84c7-fd4985e00616" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a56a9546-d713-48d0-84ac-690436d999c7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pasto 
\entryTyp root 
\gENG 
\gSPN 
\e +pasto 
\c N0 
\ach pastu / ~_# 
\ach pasto / _# 
\akh pastu / ~_# 
\akh pasto / _# 
\acl pastu / ~_# 
\acl pastu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pasto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pastu / ~_# 
\akl pastu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pasto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pastu / ~_# 
\ame pasto / _# 
\i Jdg 19.21 Tsaynog nirmi auquinga wayinman pushaycur ashnuncunata pastuta garargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="bca4ceae-c70f-400a-8472-fc3e4c89a306" ownerguid="5c8f69ec-e607-45a0-943a-4c405d198ad5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="bca503ed-6da9-4b73-ab96-4046407c1152" ownerguid="4e90365c-54f2-4d08-99a7-723092e9bfeb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="bca5430d-cc1a-4772-9ada-81d107cabfda"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wasarima</AUni> -<AUni ws="qvm-x-acl">wasarima</AUni> -<AUni ws="qvm-x-akh">wasarima</AUni> -<AUni ws="qvm-x-akl">wasarima</AUni> -<AUni ws="qvm-x-ame">wasarima</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wasarima</AUni> -<AUni ws="qvm-x-acl">*wasarima</AUni> -<AUni ws="qvm-x-akh">*wasarima</AUni> -<AUni ws="qvm-x-akl">*wasarima</AUni> -<AUni ws="qvm-x-ame">*wasarima</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.546" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="54b7d25b-6b22-465b-877a-260ac0cbbf9c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wasarima</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9ee5d44e-85e1-4b35-8949-ddcf800a1506" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f99c9aff-d490-43b3-a50f-a558c66bd76d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wasarima 
\entryTyp root 
\gENG slander 
\gSPN rinsilla 
\e *wasarima 
\c N0 
\ach wasarima 
\akh wasarima 
\acl wasarima 
\akl wasarima 
\ame wasarima</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="bca94c7b-4583-4180-b340-3c9d8116057a" ownerguid="57f81c17-57cb-4d5e-afca-6197ecfdf443"> -<Form> -<AUni ws="qvm-x-ach">apripösu</AUni> -<AUni ws="qvm-x-acl">apripösu; apripösu; apripöso</AUni> -<AUni ws="qvm-x-akh">apripösu</AUni> -<AUni ws="qvm-x-akl">apripösu; apripösu; apripöso</AUni> -<AUni ws="qvm-x-ame">apripösu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="bcae71a9-91f9-4d17-ac02-009f39940f38"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">toldu</AUni> -<AUni ws="qvm-x-acl">toldu; toldo</AUni> -<AUni ws="qvm-x-akh">toldu</AUni> -<AUni ws="qvm-x-akl">toldu; toldo</AUni> -<AUni ws="qvm-x-ame">toldu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+toldo.v</AUni> -<AUni ws="qvm-x-acl">+toldo.v</AUni> -<AUni ws="qvm-x-akh">+toldo.v</AUni> -<AUni ws="qvm-x-akl">+toldo.v</AUni> -<AUni ws="qvm-x-ame">+toldo.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.944" /> -<DateModified val="2022-10-10 21:18:47.207" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="029a0b5e-428e-44fe-9bae-e2d98174aace" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+toldo.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="564c1e31-73e0-4162-aaf5-f6bd71eed1f6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5d8b0ac4-78d9-4a70-afc7-dbcff49875bc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +toldo.v 
\entryTyp root 
\gENG 
\gSPN 
\e +toldo.v 
\c V1 
\ach toldu 
\akh toldu 
\acl toldu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl toldo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl toldu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl toldo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame toldu 
\mcc +toldo.v / ~_ BEN1 AG</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="bcb1252c-7cb4-4fbc-b83f-e5f9c65b4afb" ownerguid="8596f086-ee46-4245-8d45-2171a60e19e4"> -<Abbreviation> -<AUni ws="en">8.5.1.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that something is next to something else.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>83E At, Beside, Near, Far x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Next to</AUni> -</Name> -<Questions> -<objsur guid="a2adee39-5cd8-4340-9fcf-53da186121cf" t="o" /> -<objsur guid="8a63a4ab-52e2-4b1d-bb72-556c1179b9fe" t="o" /> -<objsur guid="1dee7a9b-02c4-45da-b817-c6e4e7827ccc" t="o" /> -<objsur guid="78332aa5-e8ea-4761-a96c-66d9c3eebecd" t="o" /> -<objsur guid="8312616f-138f-48b2-95dd-129c4c94ed93" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="bcb32dcc-b39a-4763-8714-7c20261c8b6f" ownerguid="96b7c3a5-bd7d-4c25-8fd0-3cf3372d3844"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">separate</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="97e7cf35-1b15-4749-bb0b-98cb1d49fec3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="bcb7f7ad-171d-484e-ac7b-b499a81aa33d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsampa</AUni> -<AUni ws="qvm-x-acl">tsampa</AUni> -<AUni ws="qvm-x-akh">tsampa</AUni> -<AUni ws="qvm-x-akl">tsampa</AUni> -<AUni ws="qvm-x-ame">tsampa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*champa</AUni> -<AUni ws="qvm-x-acl">*champa</AUni> -<AUni ws="qvm-x-akh">*champa</AUni> -<AUni ws="qvm-x-akl">*champa</AUni> -<AUni ws="qvm-x-ame">*champa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.274" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4bf278b6-88a6-4e83-aafb-37a67f16a3d4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*champa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="be6b59de-cd44-49bf-80a7-ea90acbdfb06" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6f090edc-8db3-4897-8037-e148ebcd481c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *champa 
\entryTyp root 
\gENG sod 
\gSPN césped 
\e *champa 
\c N0 
\ach tsampa 
\akh tsampa 
\acl tsampa 
\akl tsampa 
\ame tsampa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="bcb9a1bf-60d4-4a95-bc2a-3103fbd04821" ownerguid="3baa9487-8ce5-4a20-bf39-eca59eea5dc9"> -<Form> -<AUni ws="qvm-x-ach">brüja</AUni> -<AUni ws="qvm-x-acl">brüja</AUni> -<AUni ws="qvm-x-akh">brüja</AUni> -<AUni ws="qvm-x-akl">brüja</AUni> -<AUni ws="qvm-x-ame">brüja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="bcba6d75-2fec-4e45-9be8-b482a45ce306" ownerguid="9e589440-28a7-4313-91d9-9c2510476605"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="bcbc4135-9e93-4f0a-9206-ef842cbe35c8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">frega</AUni> -<AUni ws="qvm-x-acl">frega</AUni> -<AUni ws="qvm-x-akh">frega</AUni> -<AUni ws="qvm-x-akl">frega</AUni> -<AUni ws="qvm-x-ame">frega</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fregar</AUni> -<AUni ws="qvm-x-acl">+fregar</AUni> -<AUni ws="qvm-x-akh">+fregar</AUni> -<AUni ws="qvm-x-akl">+fregar</AUni> -<AUni ws="qvm-x-ame">+fregar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.578" /> -<DateModified val="2022-10-10 21:18:47.218" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="36fca4ef-c980-4713-9519-bbcc5470661a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fregar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7759092f-444a-4389-90f7-382e7bcba085" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f2937426-8167-4568-a2bf-d9dde370f2af" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fregar 
\entryTyp root 
\gENG 
\gSPN 
\e +fregar 
\c V2 
\ach frega 
\akh frega 
\acl frega 
\akl frega 
\ame frega</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="bcc1af33-2756-4b78-95d5-f762d4936d62" ownerguid="5f6a50e1-9754-44d0-9c78-d127fa949918"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6fe49b5e-093a-457b-9f14-02b68e8cec63" t="r" /> -</Morph> -</rt> -<rt class="MoStemAllomorph" guid="bcc21d50-55da-431b-91dd-15e98d269e98" ownerguid="d5cb678c-7676-4c5f-9cd7-64cc57170b86"> -<Form> -<AUni ws="qvm-x-ach">togpi</AUni> -<AUni ws="qvm-x-acl">togpi; togpe</AUni> -<AUni ws="qvm-x-akh">toqpi</AUni> -<AUni ws="qvm-x-akl">toqpi; toqpe</AUni> -<AUni ws="qvm-x-ame">tuqpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="bcc4e020-51a9-4000-b80d-0d1cc080ba88" ownerguid="7ac829d3-c7e9-4566-b15e-0ba29ecadba2"> -<Form> -<AUni ws="qvm-x-ach">nä</AUni> -<AUni ws="qvm-x-acl">nä</AUni> -<AUni ws="qvm-x-akh">nä</AUni> -<AUni ws="qvm-x-akl">nä</AUni> -<AUni ws="qvm-x-ame">nä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="bcc5be3f-fcee-4504-abba-7d2cb3871412"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">zapatu; zapato</AUni> -<AUni ws="qvm-x-acl">zapatu; zapatu; zapato</AUni> -<AUni ws="qvm-x-akh">zapatu; zapato</AUni> -<AUni ws="qvm-x-akl">zapatu; zapatu; zapato</AUni> -<AUni ws="qvm-x-ame">zapatu; zapato</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+zapato</AUni> -<AUni ws="qvm-x-acl">+zapato</AUni> -<AUni ws="qvm-x-akh">+zapato</AUni> -<AUni ws="qvm-x-akl">+zapato</AUni> -<AUni ws="qvm-x-ame">+zapato</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.810" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cb23658e-f435-4589-b4f3-db926749dee7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+zapato</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b20bcab4-45ab-4aca-915c-df0a8a08666a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ee74eb83-1de8-4b98-a86c-8680dd663c87" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +zapato 
\entryTyp root 
\gENG shoe 
\gSPN zapato 
\e +zapato 
\c N0 
\ach zapatu / ~_# 
\ach zapato / _# 
\akh zapatu / ~_# 
\akh zapato / _# 
\acl zapatu / ~_# 
\acl zapatu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl zapato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl zapatu / ~_# 
\akl zapatu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl zapato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame zapatu / ~_# 
\ame zapato / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bcc5eb6f-d2de-404e-b899-eae0d4393227" ownerguid="9ec62ffe-69be-4b9b-944c-29a0f4f133db"> -<ExampleWords> -<AUni ws="en">disaster</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a big accident?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bcc6f560-8b7d-4229-9b3c-4af4b887c30e" ownerguid="4d19f09f-035b-477e-862c-a4157acdfe81"> -<ExampleWords> -<AUni ws="en">to pollute, pollution, polluted, contaminate, dump sewage into</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words are used of polluting water?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="bcc70686-2c32-4944-8e42-fa92556d88bc" ownerguid="431f7d00-5a75-4537-9824-fcb14e98657b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">whip</AUni> -<AUni ws="es">sumbador</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d97145da-a2e6-47ae-aad3-e9347850cb69" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="bcc9b3cf-ed79-4582-a8ec-688dd11569bf" ownerguid="386a1ffc-4c9b-4b9c-aefd-fa6fa089967e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">GEN</AUni> -<AUni ws="es">GEN</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="715c8af0-d7ab-448b-a2fa-f8b36822dac0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="bcca8f38-1d1d-46ce-b339-400c8b0b6482" ownerguid="5e26d2e6-4a03-425b-9499-34ce237993c2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mouse</AUni> -<AUni ws="es">ratón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3fcad420-b0c6-4137-86e2-d651b77bc74c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="bccc8374-9290-4693-88d8-83772b7d0d01"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">also</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="bccd3aa9-4fb8-4836-881c-93c632d40741" ownerguid="c87fcda1-31ee-4809-b284-da0a392dea87"> -<Form> -<AUni ws="qvm-x-ach">entenäda</AUni> -<AUni ws="qvm-x-acl">entenäda</AUni> -<AUni ws="qvm-x-akh">entenäda</AUni> -<AUni ws="qvm-x-akl">entenäda</AUni> -<AUni ws="qvm-x-ame">entenäda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="bccdcdc6-081c-4475-bcc8-cf3719d6bd51"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rata</AUni> -<AUni ws="qvm-x-acl">rata</AUni> -<AUni ws="qvm-x-akh">rata</AUni> -<AUni ws="qvm-x-akl">rata</AUni> -<AUni ws="qvm-x-ame">rata</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rata.v</AUni> -<AUni ws="qvm-x-acl">*rata.v</AUni> -<AUni ws="qvm-x-akh">*rata.v</AUni> -<AUni ws="qvm-x-akl">*rata.v</AUni> -<AUni ws="qvm-x-ame">*rata.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.287" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="124857a0-258e-4a14-9664-e4ddacc95a85" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rata.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ee397f50-b8fb-432a-ae42-0ead2a7609f6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1e9c5a92-99e6-4a2f-bdc3-453aa166b4b6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rata.v 
\entryTyp root 
\gENG light 
\gSPN prender 
\e *rata.v 
\c V2 
\ach rata 
\akh rata 
\acl rata 
\akl rata 
\ame rata</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bccf3040-41ad-4156-ba7b-e8f9cf5049a4" ownerguid="2933a9c1-aa62-46fb-a03c-68aed7fae9b7"> -<ExampleWords> -<AUni ws="en">burn up, burn down, burn to the ground, consume, incinerate, destroy by fire, reduce to ashes</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to something burning completely?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="bccff8c0-787d-4665-9b4f-1be69d6bf148" ownerguid="5818445e-fd27-4f3a-865c-e9266daa2dd4"> -<Form> -<AUni ws="qvm-x-ach">negocia</AUni> -<AUni ws="qvm-x-acl">negocia</AUni> -<AUni ws="qvm-x-akh">negocia</AUni> -<AUni ws="qvm-x-akl">negocia</AUni> -<AUni ws="qvm-x-ame">negocia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="bcd24108-1541-448b-b723-c28dcc57880a" ownerguid="dae6488c-7fea-4fa3-84c9-b611d017b6a5"> -<ExampleWords> -<AUni ws="en">laundry soap, detergent, washing machine, drier, washtub, washbasin, sink, basin, washboard, clothesline, clothespin, bucket, hanger, scrubbing stone</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What tools are used to wash clothes?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bcd4a7aa-ed50-44ef-bf2e-c7c0b261a165" ownerguid="15f2cdb3-ccc9-4cd3-9753-c0f23c99349a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="bcd6a9ae-5c4d-4e84-a8c5-1739b6cedc6c" ownerguid="755a7462-1d87-48b0-939c-08be5b5ea002"> -<ExampleWords> -<AUni ws="en">have extra</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to having extra?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bcd6e7b5-0f8e-4cfa-9663-ba0a83561d5f" ownerguid="d975a233-1e48-4313-8bed-aada7460487e"> -<ExampleWords> -<AUni ws="en">put aside, put to the side, put beside, put next to you, push aside, push to the side, move aside, move to the side</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to putting something to the side of you?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="bcd78dd5-bf65-45a7-aa4b-5a4b3796bbe6" ownerguid="0f6a898d-6286-4b97-b07d-97213b9c723a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0 V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="67709fdd-843f-42e4-890f-952044efc57c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="StTxtPara" guid="bcddd9ed-6b95-4b39-b443-f314b21bc2fb" ownerguid="cd2fa409-a581-457a-a957-cb4cdabc7f2d"> -<ParseIsCurrent val="False" /> -</rt> -<rt class="MoStemAllomorph" guid="bce1113d-90c1-43d2-a586-ff501a9e53a9" ownerguid="7ed8fed2-1855-4f1a-b106-031e8f771beb"> -<Form> -<AUni ws="qvm-x-ach">wayca</AUni> -<AUni ws="qvm-x-acl">wayca</AUni> -<AUni ws="qvm-x-akh">wayka</AUni> -<AUni ws="qvm-x-akl">wayka</AUni> -<AUni ws="qvm-x-ame">wayka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="bce337e0-118c-4bda-990e-fb91e0d27f4b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">acuerdu; acuerdo</AUni> -<AUni ws="qvm-x-acl">acuerdu; acuerdu; acuerdo</AUni> -<AUni ws="qvm-x-akh">acuerdu; acuerdo</AUni> -<AUni ws="qvm-x-akl">acuerdu; acuerdu; acuerdo</AUni> -<AUni ws="qvm-x-ame">acuerdu; acuerdo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+acuerdo</AUni> -<AUni ws="qvm-x-acl">+acuerdo</AUni> -<AUni ws="qvm-x-akh">+acuerdo</AUni> -<AUni ws="qvm-x-akl">+acuerdo</AUni> -<AUni ws="qvm-x-ame">+acuerdo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.629" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="efae3e29-c498-4035-89ac-ab37cebae25d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+acuerdo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4010c798-c18d-4499-bb4e-37dfc6f4ba14" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5e69c3ef-07a2-414d-a55c-555974eaa677" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +acuerdo 
\entryTyp root 
\gENG agreement 
\gSPN acuerdo 
\e +acuerdo 
\c N0 
\ach acuerdu / ~_# 
\ach acuerdo / _# 
\akh acuerdu / ~_# 
\akh acuerdo / _# 
\acl acuerdu / ~_# 
\acl acuerdu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl acuerdo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl acuerdu / ~_# 
\akl acuerdu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl acuerdo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame acuerdu / ~_# 
\ame acuerdo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="bce37854-d76d-4dea-b911-465166886669"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">chayashqanpita</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="bce3f390-452c-4ca9-8c36-5fbcfd6b4755" ownerguid="8e11dd10-459b-4fb3-b876-7d80ec5f8a4d"> -<Abbreviation> -<AUni ws="en">4.3.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.243" /> -<DateModified val="2022-9-23 16:55:8.243" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to changing your behavior either for the better or for the worse.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>41E Change Behavior</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Change behavior</AUni> -</Name> -<OcmCodes> -<Uni>153 Modification of Behavior; 154 Adjustment Processes; 155 Personality Development</Uni> -</OcmCodes> -<Questions> -<objsur guid="fe2c4c0e-6191-4fab-96bf-1cd92840cad2" t="o" /> -<objsur guid="51dba941-5ff6-43e5-ae27-ff05be837b47" t="o" /> -<objsur guid="0770193a-7d1f-436b-abde-0850f0a490f8" t="o" /> -<objsur guid="9742999c-86c5-479e-9a5a-0834c96a5201" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="1ca26512-75f6-4a7a-a7cc-07d08aa799d9" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="0efe342d-4969-4bd1-95be-556f6c62adfc" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="bce88b55-6cfe-4234-b4df-6c1a62fb53fd" ownerguid="20ef979b-dc82-4bf3-a4c4-bc02c73ee4b3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lamb</AUni> -<AUni ws="es">cordero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d2064bed-8fc1-4149-a02d-cc2c1c741531" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="bced94e1-87fb-46b3-92f7-6b57843d610c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">arreglu; arreglo</AUni> -<AUni ws="qvm-x-acl">arreglu; arreglu; arreglo</AUni> -<AUni ws="qvm-x-akh">arreglu; arreglo</AUni> -<AUni ws="qvm-x-akl">arreglu; arreglu; arreglo</AUni> -<AUni ws="qvm-x-ame">arreglu; arreglo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+arreglo</AUni> -<AUni ws="qvm-x-acl">+arreglo</AUni> -<AUni ws="qvm-x-akh">+arreglo</AUni> -<AUni ws="qvm-x-akl">+arreglo</AUni> -<AUni ws="qvm-x-ame">+arreglo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.920" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f58e16c5-e0dc-4c0c-9f70-1d502484e42f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+arreglo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b2966aaa-fb80-4b1d-be80-62f15de93e71" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="03aa2a60-5456-4b32-b9c3-237bc28d349b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +arreglo 
\entryTyp root 
\gENG settlement 
\gSPN arreglo 
\e +arreglo 
\c N0 
\ach arreglu / ~_# 
\ach arreglo / _# 
\akh arreglu / ~_# 
\akh arreglo / _# 
\acl arreglu / ~_# 
\acl arreglu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl arreglo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl arreglu / ~_# 
\akl arreglu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl arreglo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame arreglu / ~_# 
\ame arreglo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bcedfbf4-1970-4957-a395-ef84367b4b67" ownerguid="101c16f8-ec76-4ec7-895a-fd814fef51dd"> -<ExampleWords> -<AUni ws="en">care for (a patient), nurse (a patient), nurse back to health, look after, hospice care</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to taking care of someone who is sick?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bcefa51d-b681-4c27-8254-c648611b3a26" ownerguid="b10a00a2-8632-4084-94d2-5824dc36a059"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="bcf046ed-540a-4229-98e0-2ebcfa17f9f9" ownerguid="71d57564-b6ff-4e98-b58b-24cb72af027c"> -<Form> -<AUni ws="qvm-x-ach">vincha</AUni> -<AUni ws="qvm-x-acl">vincha</AUni> -<AUni ws="qvm-x-akh">vincha</AUni> -<AUni ws="qvm-x-akl">vincha</AUni> -<AUni ws="qvm-x-ame">vincha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="bcf2cafc-b0af-4073-a684-e4a518fcc025" ownerguid="4e17244e-6b00-463c-86b0-e24c799ec082"> -<Form> -<AUni ws="qvm-x-ach">puëdi</AUni> -<AUni ws="qvm-x-acl">puëdi; puëde</AUni> -<AUni ws="qvm-x-akh">puëdi</AUni> -<AUni ws="qvm-x-akl">puëdi; puëde</AUni> -<AUni ws="qvm-x-ame">puëdi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="bcf2e1bc-8c58-4abb-940c-8cbcf8a4e334" ownerguid="23baedce-4764-43e2-9bfc-4a2837bd46b2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">kerosene</AUni> -<AUni ws="es">kerosene</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6730cf67-bc7f-4b30-83a9-dfe4fa79d5a8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="bcf74226-0f9e-4581-ba34-e4910849819a" ownerguid="58612712-8f51-48ce-9819-e766effbb009"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="bcf78e7b-a874-40c4-973d-49a8b071f2bb" ownerguid="cc542297-3128-4b48-b670-0b63903910d3"> -<Form> -<AUni ws="qvm-x-ach">arcu</AUni> -<AUni ws="qvm-x-acl">arcu; arcu; arco</AUni> -<AUni ws="qvm-x-akh">arku</AUni> -<AUni ws="qvm-x-akl">arku; arku; arko</AUni> -<AUni ws="qvm-x-ame">arku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PhPhoneme" guid="bcf89c4f-49cb-4a7f-8937-f35c715f70df" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="09d9ad9c-a42b-4e5e-82cf-d307923c8c42" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">palatal fricative</Run> -</AStr> -</Description> -<Name> -<AUni ws="qvm-x-ach">sh</AUni> -<AUni ws="qvm-x-acl">sh</AUni> -<AUni ws="qvm-x-akh">sh</AUni> -<AUni ws="qvm-x-akl">sh</AUni> -<AUni ws="qvm-x-ame">sh</AUni> -</Name> -</rt> -<rt class="LexEntry" guid="bcfd5ef2-c048-4c84-88dc-0b954c735490"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">desonra</AUni> -<AUni ws="qvm-x-acl">desonra</AUni> -<AUni ws="qvm-x-akh">desonra</AUni> -<AUni ws="qvm-x-akl">desonra</AUni> -<AUni ws="qvm-x-ame">desonra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+deshonrar</AUni> -<AUni ws="qvm-x-acl">+deshonrar</AUni> -<AUni ws="qvm-x-akh">+deshonrar</AUni> -<AUni ws="qvm-x-akl">+deshonrar</AUni> -<AUni ws="qvm-x-ame">+deshonrar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.386" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b6008ac4-a2c1-439f-9781-13019ad2b578" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+deshonrar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e95fa9aa-1d95-4c5c-bc01-626d6f92f556" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2a6794a8-8858-4177-8e48-452919718d82" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +deshonrar 
\entryTyp root 
\gENG 
\gSPN 
\e +deshonrar 
\c V2 
\ach desonra 
\akh desonra 
\acl desonra 
\akl desonra 
\ame desonra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="bcfd83ab-8b83-416d-a388-7a1cb6575da5" ownerguid="b5cad18b-f00e-4673-aa09-ea2eb36bed24"> -<Form> -<AUni ws="qvm-x-ach">bienëchu</AUni> -<AUni ws="qvm-x-acl">bienëchu; bienëchu; bienëcho</AUni> -<AUni ws="qvm-x-akh">bienëchu</AUni> -<AUni ws="qvm-x-akl">bienëchu; bienëchu; bienëcho</AUni> -<AUni ws="qvm-x-ame">bienëchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="bcfddc5b-a16f-474e-b7ec-3a65bebc525d" ownerguid="1b8e0af2-0a62-4b0c-b9af-59af6da8b0f1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="bd002dfa-e842-47d6-b11b-3c213cbf133a" ownerguid="35e61ec4-0542-4583-b5da-0aa5e31a35aa"> -<Abbreviation> -<AUni ws="en">2.6.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a fetus--a baby that has not been born yet.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Fetus</AUni> -</Name> -<Questions> -<objsur guid="4106dbae-eac4-448e-b4e3-abf2121fd80c" t="o" /> -<objsur guid="c6757a5b-f03f-4cc4-bb7b-ecadeac162b3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="bd02e853-2252-4134-ae55-3629fc6d5e3e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tantiya</AUni> -<AUni ws="qvm-x-acl">tantiya</AUni> -<AUni ws="qvm-x-akh">tantiya</AUni> -<AUni ws="qvm-x-akl">tantiya</AUni> -<AUni ws="qvm-x-ame">tantiya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tantear.v1</AUni> -<AUni ws="qvm-x-acl">+tantear.v1</AUni> -<AUni ws="qvm-x-akh">+tantear.v1</AUni> -<AUni ws="qvm-x-akl">+tantear.v1</AUni> -<AUni ws="qvm-x-ame">+tantear.v1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.805" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1b1fa59c-a161-47d4-b14e-90300db53826" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tantear.v1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d0a52214-0f44-4bd8-afa2-376ea2bd2078" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3c0eedde-c3be-4880-8014-a7c6a257718c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tantear.v1 
\entryTyp root 
\gENG understand 
\gSPN comprender 
\e +tantear.v1 
\c V1 
\mp +assimilated 
\ach tantiya 
\akh tantiya 
\acl tantiya 
\akl tantiya 
\ame tantiya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bd03497e-b115-463c-9fc3-773c0392f206" ownerguid="63b18261-faf3-4ab2-bcb4-7c3ac4d6d6ba"> -<ExampleWords> -<AUni ws="en">dishonest, unscrupulous, fraud, corruption, graft, malfeasance, vice</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to dishonest financial practices?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bd0843d6-4b8e-4cf5-a312-de186d375648" ownerguid="64a83014-6a55-42b9-8829-948557a0aefb" /> -<rt class="CmDomainQ" guid="bd091603-8cb3-4fd3-b2f5-b1e15b35baab" ownerguid="093eeea2-4ff6-4ee8-ad05-8af1702b7246"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John <became> president last year.; The sky <turned> red as the sun set.; After a long illness, John finally <got> better.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">become (characteristic), change, come to be, turn, get, develop, grow into, turn into, change into, become different, evolve</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to indicate a change of state?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bd0f8292-8ad5-40bb-abc3-7976169236fc" ownerguid="8533a67b-6f09-443c-8a39-4355317e3a28"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="bd0fbcbe-e809-4713-9a9a-ac3b0b5195e3" ownerguid="cfdcb880-661d-4357-9edc-a2e0020abc3e" /> -<rt class="MoStemMsa" guid="bd10aab8-649d-4a40-aea3-ecf9feefc336" ownerguid="5dd8f103-f04d-46be-903a-68f6d728e511"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="bd11a025-a299-4f9e-bef1-bf50c60f10c7" ownerguid="49aa89f2-2022-4213-845e-dbbb4b53476c"> -<ExampleWords> -<AUni ws="en">next to the last, the last but one, penultimate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words indicate that something is next to the last?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bd11d786-663d-4869-8cd1-496a75e4a1bc" ownerguid="c888c7ac-8cf4-49d2-a33e-20d19d84c47b"> -<ExampleWords> -<AUni ws="en">pig, hog, swine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to pigs?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bd13daed-1e4f-4277-884f-2bbdb52bfa0f" ownerguid="bbf5307d-10c4-469e-bc63-d1f67fc8de14"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="bd17c548-5b6f-4c09-8255-6c618f6bd600" ownerguid="c0543870-4232-464d-8645-36f15a6cbe90"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cheer</AUni> -<AUni ws="es">hurrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b505f40d-9c51-4cd5-8963-13a6d54df104" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="bd1827b7-7d99-4f78-a8c9-03325815cb9e" ownerguid="19fea936-30d1-482f-a103-1c5549b19745"> -<ExampleWords> -<AUni ws="en">twist, wind, twine, coil, wring, wring out, torque</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to twisting something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="bd18b390-e90a-41ce-a8a0-131c68338281" ownerguid="1277cb9f-bf53-406e-a97f-3426cf3eee0b"> -<Form> -<AUni ws="qvm-x-ach">vïva</AUni> -<AUni ws="qvm-x-acl">vïva</AUni> -<AUni ws="qvm-x-akh">vïva</AUni> -<AUni ws="qvm-x-akl">vïva</AUni> -<AUni ws="qvm-x-ame">vïva</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="bd1bfdc8-a558-4b0b-af9f-c778dbdd32ad"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tercer</AUni> -<AUni ws="qvm-x-acl">tercer</AUni> -<AUni ws="qvm-x-akh">tercer</AUni> -<AUni ws="qvm-x-akl">tercer</AUni> -<AUni ws="qvm-x-ame">tercer</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tercer</AUni> -<AUni ws="qvm-x-acl">+tercer</AUni> -<AUni ws="qvm-x-akh">+tercer</AUni> -<AUni ws="qvm-x-akl">+tercer</AUni> -<AUni ws="qvm-x-ame">+tercer</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.866" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="513b0a65-612b-4ea9-b18f-845918c381dc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tercer</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="80cb5a61-b9dc-4480-9b5a-5432e866e23c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6132b2cc-aae1-4494-ad69-c79397c54cf1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tercer 
\entryTyp root 
\gENG 
\gSPN 
\e +tercer 
\c N0 
\mp +FinalC 
\ach tercer 
\akh tercer 
\acl tercer 
\akl tercer 
\ame tercer</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="bd1c0ea7-6a7b-47bb-b5d4-bcc0133f834d" ownerguid="fde99846-cd4b-4e1b-8e15-7cbd48249b00"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1SA 7.11 Tsaymi Filistea runacunata gati gatiycur atacargan Mizpapita Bet-car mas uraganyag.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="bd209b26-d059-49a5-a258-acc41aa6b1c2" ownerguid="f937313f-ec38-4f1b-86dc-cb78edd33ca2"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="bd25ab84-bec9-45d3-acfa-b27f54454313" ownerguid="054374ba-4897-4b39-b0ee-8c5c4f4a9c73"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="3374391f-3d36-4e37-9de3-ab6541adb8c6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="bd31529c-ab67-419b-89a4-949aee8b3b11" ownerguid="596ab399-e442-4afe-8796-633a49de65a7"> -<Abbreviation> -<AUni ws="en">4.7.9.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.274" /> -<DateModified val="2022-9-23 16:55:8.274" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to acting harshly.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88Q Act Harshly</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Act harshly</AUni> -</Name> -<Questions> -<objsur guid="c99e4d87-d79f-4e12-a5f1-993dc7bc731f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="bd38f425-3c0e-45b3-9389-0e9653691e4f" ownerguid="022e57c2-c632-4419-93be-602cf7f29c7d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PunctuationForm" guid="bd3a1efa-64ab-4043-9f14-c7188ebe355d"> -<Form> -<Str> -<Run ws="en">5</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="bd3e9a8b-d8e6-4fc8-aa29-ffe057d74c6d" ownerguid="1137590c-6f2f-4b69-b04e-f6a890a335a2"> -<ExampleWords> -<AUni ws="en">refuse, refusal, flatly refuse, refuse point-blank, not agree to, will not, say no, decline, shake your head, turn down, dig your heels in, slam the door in someone's face, draw the line at, have none of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to refusing to do something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="bd3f01f7-1fb8-46a1-a743-e89bc047b040" ownerguid="d661c6a6-ccb2-46a1-a848-4dcfb42d6969"> -<Form> -<AUni ws="qvm-x-ach">gusta</AUni> -<AUni ws="qvm-x-acl">gusta</AUni> -<AUni ws="qvm-x-akh">gusta</AUni> -<AUni ws="qvm-x-akl">gusta</AUni> -<AUni ws="qvm-x-ame">gusta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="bd439cb3-067a-40a6-a22c-31be04da51e1" ownerguid="c7c3fcaf-0718-49bf-8b16-ba233835663b"> -<Form> -<AUni ws="qvm-x-ach">cada</AUni> -<AUni ws="qvm-x-acl">cada</AUni> -<AUni ws="qvm-x-akh">cada</AUni> -<AUni ws="qvm-x-akl">cada</AUni> -<AUni ws="qvm-x-ame">cada</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="bd4655e4-072b-43d3-892a-12e527b3920c" ownerguid="21d1998d-dfc2-4151-8d77-3c73f30916f8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">leave</AUni> -<AUni ws="es">dejar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c533f197-4448-4a72-87f3-bef95ff4fc6e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="bd4879c9-fb7c-4db4-a024-b70f237789a6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wayipatsa</AUni> -<AUni ws="qvm-x-acl">wayipatsa</AUni> -<AUni ws="qvm-x-akh">wayipatsa</AUni> -<AUni ws="qvm-x-akl">wayipatsa</AUni> -<AUni ws="qvm-x-ame">wayipatsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wasipacha</AUni> -<AUni ws="qvm-x-acl">*wasipacha</AUni> -<AUni ws="qvm-x-akh">*wasipacha</AUni> -<AUni ws="qvm-x-akl">*wasipacha</AUni> -<AUni ws="qvm-x-ame">*wasipacha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.556" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9fe58849-2d1f-47ea-8087-faa58aff2e42" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wasipacha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6fcee042-25ba-4fd9-9035-4e07bbfb5ef0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e8024867-a7f0-4e6b-80f3-f5ee7f882a87" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wasipacha 
\entryTyp root 
\gENG fallen.house 
\gSPN casa.tumbada 
\e *wasipacha 
\c N0 
\ach wayipatsa 
\akh wayipatsa 
\acl wayipatsa 
\akl wayipatsa 
\ame wayipatsa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="bd4a2527-f66c-4f48-922e-8b180bba8ef6" ownerguid="0f883eb0-00a1-44cc-b719-97fb6ec145d4"> -<Abbreviation> -<AUni ws="en">5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.306" /> -<DateModified val="2022-9-23 16:55:8.306" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to household equipment and tools.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Household equipment</AUni> -</Name> -<OcmCodes> -<Uni>354 Heating and Lighting Equipment; 355 Miscellaneous Building Equipment</Uni> -</OcmCodes> -<Questions> -<objsur guid="01451534-d8ef-4917-85d8-b89001184e31" t="o" /> -<objsur guid="2340a756-d651-496b-9c16-b42df4fdd6c0" t="o" /> -<objsur guid="49815eae-be8f-475b-af83-0ba093891d04" t="o" /> -<objsur guid="88b0bcda-4c3b-48bf-98c1-4dc6f4f4e0fb" t="o" /> -<objsur guid="d39144bf-97a3-4a07-9419-970dbfd3ea27" t="o" /> -<objsur guid="f44d755e-fe00-4a91-9747-7b3d50a99cfe" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="6342c8bf-55b5-400f-af7e-63055fe6813b" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="44bf22fd-3725-4c49-bd3c-434402c33493" t="o" /> -<objsur guid="a220a734-af03-4de3-8d05-369a3cad14cf" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="bd4a9fba-575f-43ec-8324-09471393e5c9" ownerguid="6c071281-d180-4ca1-a1cb-f3a738783b6e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="bd50af42-9d9c-40ab-a98a-81ba803c1805" ownerguid="96e73a2c-be5f-4236-8f20-447d3dbefda8"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 1.40 Jerusalénman cutirnami Salomónpa guepanta aywapäcorgan pincullunta tucaraycar y gagapis yachapashganyag cushicuypita vivaraycar.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="bd513100-5896-4232-a933-a4bb8acdbf55" ownerguid="4725c8d5-b4bc-4f6c-8ca9-75e970281f74"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="bd527689-1054-4021-a211-5a13ee69f80f" ownerguid="48ac206f-2706-4500-bb63-2e499b790259"> -<ExampleWords> -<AUni ws="en">bright, gifted, precocious, prodigy, whiz kid</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe an intelligent child?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="bd550c69-9ff6-4ab2-85d7-718b054adfa4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ñutgu</AUni> -<AUni ws="qvm-x-acl">ñutgu; ñutgu; ñutgo</AUni> -<AUni ws="qvm-x-akh">ñutqu</AUni> -<AUni ws="qvm-x-akl">ñutqu; ñutqu; ñutqo</AUni> -<AUni ws="qvm-x-ame">ñutqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñutqu.n</AUni> -<AUni ws="qvm-x-acl">*ñutqu.n</AUni> -<AUni ws="qvm-x-akh">*ñutqu.n</AUni> -<AUni ws="qvm-x-akl">*ñutqu.n</AUni> -<AUni ws="qvm-x-ame">*ñutqu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.608" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="451e1000-25b4-406c-8f2e-69f195a4db3d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñutqu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9bae150b-e221-4151-82cd-35d3dcd21649" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9420c49c-3cbc-44de-b832-655634fcff94" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñutqu.n 
\entryTyp root 
\gENG ground 
\gSPN molido 
\e *ñutqu.n 
\c N0 
\ach ñutgu 
\akh ñutqu 
\acl ñutgu / _# 
\acl ñutgu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ñutgo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ñutqu / _# 
\akl ñutqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ñutqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ñutqu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bd5572eb-108f-45f9-a0ab-a3419794ff8a" ownerguid="edbfc928-049c-4cb7-8c88-8e8af38287c7"> -<ExampleWords> -<AUni ws="en">love, be in love</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to loving someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bd5658dc-eed9-452f-9cd8-b367946c207e" ownerguid="e8586039-5b46-4c5c-9c1b-0b7685121aea"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="bd568a41-0d74-4d9b-8756-73b7af65d9f7" ownerguid="d4fca9fe-870a-4110-99bb-10a29c29b2e6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ta</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ta</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ta</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ta</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ta</Run> -</AStr> -</Form> -<Morph> -<objsur guid="4f3f1430-f126-405a-98a8-5d0b732eb948" t="r" /> -</Morph> -<Msa> -<objsur guid="eac932ef-fd79-454b-b2f7-95e85dbb829a" t="r" /> -</Msa> -<Sense> -<objsur guid="043eec5a-5d9b-4292-877e-68d1d35e7f30" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="bd5d3eb8-dc4a-4e8b-9f51-e34e29e78436" ownerguid="54ec3cad-4a0f-48a5-9dd6-36855480ee5d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="bd5f097f-76d1-46b0-95cd-006dbd0ea161" ownerguid="e2a1632b-0456-4488-bbad-5a1db5115bde"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="bd5fac83-a725-46bb-be20-c72f3fc01ed5" ownerguid="cb312439-8279-4f5f-a6a1-81bf5a3b7ecf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">young</AUni> -<AUni ws="es">joven</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ee270a36-313c-437e-a744-0b4dd0505ccb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="bd60df76-2641-420e-b713-893b13269f36" ownerguid="7d111356-e04e-4891-960c-2f35147eba82"> -<ExampleWords> -<AUni ws="en">name, proper name, designation, label, nomenclature, tag, title</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a name for something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bd62b59f-ffd3-4695-8576-9ac8ecc29606" ownerguid="91f577aa-10a4-436a-91ec-ba20351ebe53"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="bd638e6c-76fa-4b7b-b87e-ef3814f6b4a6" ownerguid="b47bc921-a46e-4e6c-a236-7f91faa3dda7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="dad7302b-0088-433f-82bb-49104e355fbb" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="be8b654b-42c9-4da8-a3fb-49beb836f033" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="bd6423ea-bf34-4119-b898-060105539bec" ownerguid="af26d96c-bc85-4162-8468-9b71b5c64de6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="bd648cae-f67b-4d4f-8d5c-db0560bb0301" ownerguid="9d8bb0ed-a6c2-4592-a4b7-ba28311c5664"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">moth</AUni> -<AUni ws="es">alevilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bf9c220b-bd7c-4466-b938-bdcbf2150749" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="bd6846e7-173b-418b-8860-56a43c5d4387"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">penga</AUni> -<AUni ws="qvm-x-acl">penga</AUni> -<AUni ws="qvm-x-akh">penqa</AUni> -<AUni ws="qvm-x-akl">penqa</AUni> -<AUni ws="qvm-x-ame">pinqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pinqa</AUni> -<AUni ws="qvm-x-acl">*pinqa</AUni> -<AUni ws="qvm-x-akh">*pinqa</AUni> -<AUni ws="qvm-x-akl">*pinqa</AUni> -<AUni ws="qvm-x-ame">*pinqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.840" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d5acc91e-36a4-40e9-a81c-76934512f30c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pinqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ad13ddbc-d619-4619-9b1a-6528bf983d4a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="46e1f6c6-1b58-4900-ac6f-394d3be2c37a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pinqa 
\entryTyp root 
\gENG shy 
\gSPN tímido 
\e *pinqa 
\c V2 
\ach penga 
\akh penqa 
\acl penga 
\akl penqa 
\ame pinqa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="bd6e6f85-4585-4151-8888-dc221371b58e" ownerguid="89085bab-7f2a-44cb-99c1-0d2c20de4e95"> -<Form> -<AUni ws="qvm-x-ach">depösitu</AUni> -<AUni ws="qvm-x-acl">depösitu; depösitu; depösito</AUni> -<AUni ws="qvm-x-akh">depösitu</AUni> -<AUni ws="qvm-x-akl">depösitu; depösitu; depösito</AUni> -<AUni ws="qvm-x-ame">depösitu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="bd6fec5a-24ed-4059-9921-933a9b214183"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">progra:ma</AUni> -<AUni ws="qvm-x-acl">progra:ma</AUni> -<AUni ws="qvm-x-akh">progra:ma</AUni> -<AUni ws="qvm-x-akl">progra:ma</AUni> -<AUni ws="qvm-x-ame">progra:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+programa</AUni> -<AUni ws="qvm-x-acl">+programa</AUni> -<AUni ws="qvm-x-akh">+programa</AUni> -<AUni ws="qvm-x-akl">+programa</AUni> -<AUni ws="qvm-x-ame">+programa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.943" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4e82c7d2-b15b-4677-83cb-c1ccaf4ec711" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+programa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="51155f7b-e429-460c-ada9-a01e0656a838" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6e856bca-d693-4149-80b1-a3fd265bf857" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +programa 
\entryTyp root 
\gENG program 
\gSPN programa 
\e +programa 
\c N0 
\ach progra:ma 
\akh progra:ma 
\acl progra:ma 
\akl progra:ma 
\ame progra:ma</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="bd7018ab-b5aa-420b-b8e5-43dabbf4bbb2" ownerguid="2d0f45f3-2471-4d69-9429-76c51a12e2a8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">qui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">qui</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ki</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="8fc7d848-8007-4dcc-8c36-9b0b4da26f05" t="r" /> -</Morph> -<Msa> -<objsur guid="bbbfe118-132f-4744-9f12-6945daa4a632" t="r" /> -</Msa> -<Sense> -<objsur guid="7a11c70f-471b-4542-a37b-bcfc9731537d" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="bd73360b-b027-4dc8-b82d-863b1233a61f" ownerguid="f3364eb3-dbb7-406a-a270-0d39b87a28fd"> -<Form> -<AUni ws="qvm-x-ach">padruna</AUni> -<AUni ws="qvm-x-acl">padruna</AUni> -<AUni ws="qvm-x-akh">padruna</AUni> -<AUni ws="qvm-x-akl">padruna</AUni> -<AUni ws="qvm-x-ame">padruna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="bd743d4a-a9cb-43fc-bfd9-af8525985297" ownerguid="effc49dd-6322-4302-899c-4cf540f0e2e4"> -<ExampleWords> -<AUni ws="en">side dish, vegetable, carrot sticks, onion rings</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What foods are made primarily from vegetables?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="bd745493-61d8-47b0-9ff9-060f86ce7e17" ownerguid="7acde7d5-1a5b-4e16-99c7-5f297d2643f4"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="4d4a9018-1649-4a04-b552-5df015cdca96" t="o" /> -<objsur guid="2a7be77e-bf76-4440-b377-b8d24b6cb3fe" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="bd74c32f-7d7e-4fd0-ab5b-59670006e70b" ownerguid="2c62ccfa-0223-449f-87ed-62bba4173897"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">praise</AUni> -<AUni ws="es">alabar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="82a9ecc4-ffc6-45c4-b1a7-e384391b6785" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="bd75d3a4-ec11-4f3f-b690-684ff288ad7b" ownerguid="acbe546e-9501-4397-80dc-5e330501c465"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="bd76361e-32cd-4525-9d5a-6128b942b692" ownerguid="88a69e5d-91fd-43ce-9650-43b561a4eb63"> -<Form> -<AUni ws="qvm-x-ach">yaycU</AUni> -<AUni ws="qvm-x-acl">yaycU</AUni> -<AUni ws="qvm-x-akh">yaykU</AUni> -<AUni ws="qvm-x-akl">yaykU</AUni> -<AUni ws="qvm-x-ame">yaykU</AUni> -</Form> -<IsAbstract val="True" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="bd76405b-9875-499f-b131-55c241e7a36a" ownerguid="fb460a8d-ede0-43dc-a1da-f81ef8da6f62"> -<Form> -<AUni ws="qvm-x-ach">göma</AUni> -<AUni ws="qvm-x-acl">göma</AUni> -<AUni ws="qvm-x-akh">göma</AUni> -<AUni ws="qvm-x-akl">göma</AUni> -<AUni ws="qvm-x-ame">göma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="bd7877fb-0825-4532-b35e-3591946a2c59" ownerguid="b844d2f8-d3ef-4605-b038-8bc0a2cff0af"> -<ExampleWords> -<AUni ws="en">tall, lanky, gangling, leggy, hulking, gangly, strapping</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a tall person?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bd7907bb-1435-4291-bfa7-2f10417a0be4" ownerguid="aa51dff6-e5c7-4506-bd13-32e255f6061f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="bd7ad320-cb62-4dc4-99f5-7e8e01e1a956" ownerguid="89e5cf73-f8ae-4115-a7f9-c6164a4241d6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">knoll</AUni> -<AUni ws="es">cumbre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c7624372-cecb-4fe4-b8a1-e1450a3e8679" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="bd7b6fcc-d224-46d6-b65f-e4dab95cbd00" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<ExampleWords> -<AUni ws="en">flare, spread, lopsided, fan out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(18) What words refer to something being big on one side or end?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="bd7d0c9c-791e-4c34-b9ed-ebddad8f9724" ownerguid="87bd0d45-8a94-41cb-9864-90d53a11a4b9"> -<Abbreviation> -<AUni ws="en">4.7.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to judging someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>56E Judge, Condemn, Acquit; 56F Obtain Justice; 56H Lead Off to Punishment</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Judge, render a verdict</AUni> -</Name> -<Questions> -<objsur guid="21d3d21f-b602-4c1c-aeb0-e3f919fc2cb7" t="o" /> -<objsur guid="e5bc1e80-227d-4b3b-afb1-d80524746ac5" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="0c1bcc98-9bc3-4da0-8eac-ff8a6eecbf84" t="o" /> -<objsur guid="0ede51d2-69bd-411e-97f9-da0d5118bbff" t="o" /> -<objsur guid="8570f05c-a152-4117-9f54-4edfa9c06a32" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="bd7ef33f-1485-4e23-adae-44c49cf33d36" ownerguid="4516f994-a4be-439b-b3df-9bc3693701b9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 N1/N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9d09c9a9-d8dd-412f-8fbc-4ce5c64ad734" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">HUMAN</AUni> -<AUni ws="es">HUMANO</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cc4f521e-5e38-4217-aa16-46da99d423ec" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="bd81aa47-8112-4aab-b293-fdd2fc71869d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">verbu; verbo</AUni> -<AUni ws="qvm-x-acl">verbu; verbu; verbo</AUni> -<AUni ws="qvm-x-akh">verbu; verbo</AUni> -<AUni ws="qvm-x-akl">verbu; verbu; verbo</AUni> -<AUni ws="qvm-x-ame">verbu; verbo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+verbo</AUni> -<AUni ws="qvm-x-acl">+verbo</AUni> -<AUni ws="qvm-x-akh">+verbo</AUni> -<AUni ws="qvm-x-akl">+verbo</AUni> -<AUni ws="qvm-x-ame">+verbo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.371" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6da97182-d8a9-4095-979c-83f71b63a3be" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+verbo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b206df6d-1231-4c73-bd6c-1c5a95114fab" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e239aef4-3c7d-4d3d-a4b1-4ea865985857" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +verbo 
\entryTyp root 
\gENG verb 
\gSPN verbo 
\e +verbo 
\c N0 
\ach verbu / ~_# 
\ach verbo / _# 
\akh verbu / ~_# 
\akh verbo / _# 
\acl verbu / ~_# 
\acl verbu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl verbo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl verbu / ~_# 
\akl verbu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl verbo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame verbu / ~_# 
\ame verbo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bd83057e-cec8-4e65-b4c6-83459af2a9c4" ownerguid="60b8dcfd-49a0-4ab4-82a7-2c5058b325ae"> -<ExampleWords> -<AUni ws="en">fragment, shadow, trace, vestige</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a very small part that remains?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="bd83b54d-ef27-4e52-b011-323093f43e87" ownerguid="ade48fbd-6348-4cc9-b18b-04ed20ddf78c"> -<Form> -<AUni ws="qvm-x-ach">señal</AUni> -<AUni ws="qvm-x-acl">señal</AUni> -<AUni ws="qvm-x-akh">señal</AUni> -<AUni ws="qvm-x-akl">señal</AUni> -<AUni ws="qvm-x-ame">señal</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="bd844382-2279-4a6f-9ee2-bc8f8235a4d5" ownerguid="20baa5e7-4f02-4782-a292-c6281d7b5f3a"> -<ExampleWords> -<AUni ws="en">push something, push away, give something a push, move something forward, advance something, thrust, nudge, give impetus, impel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to pushing something so that it moves away you?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="bd847e1e-c1e3-4fb4-802c-11118aaf40aa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cunish</AUni> -<AUni ws="qvm-x-acl">cunish</AUni> -<AUni ws="qvm-x-akh">cunish</AUni> -<AUni ws="qvm-x-akl">cunish</AUni> -<AUni ws="qvm-x-ame">cunish</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cunish</AUni> -<AUni ws="qvm-x-acl">+cunish</AUni> -<AUni ws="qvm-x-akh">+cunish</AUni> -<AUni ws="qvm-x-akl">+cunish</AUni> -<AUni ws="qvm-x-ame">+cunish</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.252" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="532c0c6c-2702-4aa2-b9f8-bf9be318cf7c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cunish</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eb97a5dc-1784-4808-a5ae-699e4c189fd2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c74805c7-f999-47ed-8e35-9a1d6550a821" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cunish 
\entryTyp root 
\gENG rabbit 
\gSPN conejo 
\e +cunish 
\c N0 
\mp +FinalC 
\ach cunish 
\akh cunish 
\acl cunish 
\akl cunish 
\ame cunish</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="bd88e09a-0127-434a-b9e2-28ea6537b797"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bu:lla</AUni> -<AUni ws="qvm-x-acl">bu:lla</AUni> -<AUni ws="qvm-x-akh">bu:lla</AUni> -<AUni ws="qvm-x-akl">bu:lla</AUni> -<AUni ws="qvm-x-ame">bu:lla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bulla.v</AUni> -<AUni ws="qvm-x-acl">+bulla.v</AUni> -<AUni ws="qvm-x-akh">+bulla.v</AUni> -<AUni ws="qvm-x-akl">+bulla.v</AUni> -<AUni ws="qvm-x-ame">+bulla.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.999" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cb5dc9b7-3a51-4f1e-953c-74d1cdfef484" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bulla.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1fafcb53-5b4a-4bb1-9c3b-10871ba927d8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6f630e1b-9383-4f89-8eff-c6825762f2a1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bulla.v 
\entryTyp root 
\gENG noise 
\gSPN bulla 
\e +bulla.v 
\c V1 
\ach bu:lla 
\akh bu:lla 
\acl bu:lla 
\akl bu:lla 
\ame bu:lla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="bd8a4e42-c7bb-4281-8118-ff644562b54e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">vinagra</AUni> -<AUni ws="qvm-x-acl">vinagra</AUni> -<AUni ws="qvm-x-akh">vinagra</AUni> -<AUni ws="qvm-x-akl">vinagra</AUni> -<AUni ws="qvm-x-ame">vinagra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vinagrar</AUni> -<AUni ws="qvm-x-acl">+vinagrar</AUni> -<AUni ws="qvm-x-akh">+vinagrar</AUni> -<AUni ws="qvm-x-akl">+vinagrar</AUni> -<AUni ws="qvm-x-ame">+vinagrar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.402" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0d1df8ac-e40b-41c0-b937-9bfc59ce6aa0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vinagrar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cf11a988-d5a8-4fe2-95e0-7e11f1eb6941" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="207a61fc-e8d0-41a8-94bb-357fb6e5a32e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vinagrar 
\entryTyp root 
\gENG to.vinager 
\gSPN vinagrar 
\e +vinagrar 
\c V1 
\ach vinagra 
\akh vinagra 
\acl vinagra 
\akl vinagra 
\ame vinagra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="bd8ae24c-0fc4-4b80-8aa6-1ca3f201a9c2" ownerguid="b456e020-211a-458d-9d0f-59b89e938b3f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="bd8bc3ad-a027-4c40-88e6-f3d406d5b7f9"> -<Analyses> -<objsur guid="219cb684-f18b-4821-9b20-a20f642dfbb5" t="o" /> -</Analyses> -<Checksum val="1007010350" /> -<Form> -<AUni ws="qvm-x-akh">jinan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="bd8ec5d0-ba23-4a90-a75c-e7ff3c5718ca"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">canta</AUni> -<AUni ws="qvm-x-acl">canta</AUni> -<AUni ws="qvm-x-akh">canta</AUni> -<AUni ws="qvm-x-akl">canta</AUni> -<AUni ws="qvm-x-ame">canta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cantar</AUni> -<AUni ws="qvm-x-acl">+cantar</AUni> -<AUni ws="qvm-x-akh">+cantar</AUni> -<AUni ws="qvm-x-akl">+cantar</AUni> -<AUni ws="qvm-x-ame">+cantar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.41" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dfa329b4-14bf-4f2d-a344-2927c638a951" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cantar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="de929a9d-f366-4fc8-ac1a-2d69767b70b3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f73c1122-d434-4846-8351-2a8def2d4884" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cantar 
\entryTyp root 
\gENG sing 
\gSPN cantar 
\e +cantar 
\c V2 
\ach canta 
\akh canta 
\acl canta 
\akl canta 
\ame canta 
\mcc +cantar / ~_ 1 YN?</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="bd8f8f0d-e1c1-4e7f-9467-6a882455dc95" ownerguid="7f2018f7-bef3-4c46-8bbd-dbcc563f7d66"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="137f4b18-c9b8-4aaf-be24-efcdaff871eb" t="o" /> -<objsur guid="4209fb1a-730b-441b-bdeb-3b5df16e2dd8" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="bd8ff020-e182-4012-993b-f6811d2774a0" ownerguid="0066f0f7-02dd-4f8e-afa5-59b8cb5a434a"> -<ExampleWords> -<AUni ws="en">betrayal, sell-out, treachery, treason</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the action of betraying someone?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="bd90dbb0-7fd5-4fe2-93ea-495296aaa153" ownerguid="2a6a1f3b-6f03-4a6a-ba58-77e5f136229b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuti</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuti; cuti; cute</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuti</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuti; kuti; kute</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuti</Run> -</AStr> -</Form> -<Morph> -<objsur guid="15cd3c26-af09-4ed6-a99c-c5c4e077d532" t="r" /> -</Morph> -<Msa> -<objsur guid="50ccffa6-4c46-497e-854c-58ddad7cd9d2" t="r" /> -</Msa> -<Sense> -<objsur guid="dbe617d7-4dee-4597-adb5-ce08a0e18938" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="bd9161ef-6b87-4258-86ea-e4dab284b70d" ownerguid="fda0c1ac-5728-4ba2-9f8e-827f161b5bb1"> -<ExampleWords> -<AUni ws="en">watch, keep an eye on, observation, monitor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to watching something so that nothing bad happens?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bd9500ca-2e58-4802-acec-13d45e3c1c69" ownerguid="d9f9ca3f-2dbf-4114-a8bc-050f578493a5" /> -<rt class="MoStemMsa" guid="bd96fe45-5971-43c1-aae3-f1d65862d52a" ownerguid="e2246243-cfba-4cf0-ab09-0066cb082b62"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="bd988253-1afa-4ee6-80d5-4960e40012f7" ownerguid="c7bc8d62-b808-48b6-a089-fe183cc35fa5"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ECC 11.4 Lamar lädupita pukutay juntämuptenqa musyantsi manaraq cosechanantsipaq kashqanta.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="bd9bb361-3c12-4c70-8098-40b0df9824ce" ownerguid="4a8c6c2e-7a8f-4dd6-97d3-20a35d7d10e9"> -<Abbreviation> -<AUni ws="en">4.5.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.256" /> -<DateModified val="2022-9-23 16:55:8.256" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to lacking respect.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Lack respect</AUni> -</Name> -<Questions> -<objsur guid="438b92df-f32b-4b69-a29c-0d3cfb05e51f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="bd9d994f-840f-4671-b1eb-94c374d1b0a8" ownerguid="32922991-52e6-497c-bbd1-db375f9af8ca"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7bfa773e-dbed-4274-91b2-c5fa9b6e964b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="bd9dddad-d821-46f0-9525-d95cf63b38ab" ownerguid="6daa3b80-7c0c-4f3a-93ae-d097c1cb5899"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="bd9de99f-6a92-47ee-b6bc-e9877ea21202" ownerguid="043d12ac-c76d-4b4c-813b-4ef7758c8085"> -<Abbreviation> -<AUni ws="en">7.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.549" /> -<DateModified val="2022-9-23 16:55:8.549" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to finding something that has been hidden or lost.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>27B Learn the Location of Something</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Find</AUni> -</Name> -<Questions> -<objsur guid="96b19f6b-a3d2-4b27-aaef-c996e2761c9f" t="o" /> -<objsur guid="d333ac00-bcbd-496f-8dd8-6a6b27275b19" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="bd9efa5d-da29-4fc3-a3a1-1bcc3055f7a1" ownerguid="6804db44-b71b-4452-98b1-b726bc7cf022"> -<ExampleWords> -<AUni ws="en">noisy, rowdy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a group of people that is loud?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="bda1d14c-1046-4136-9304-cb887f2bd442" ownerguid="ce194a5d-5485-4804-9421-d3804cf31764"> -<Form> -<AUni ws="qvm-x-ach">raqui</AUni> -<AUni ws="qvm-x-acl">raqui; raque</AUni> -<AUni ws="qvm-x-akh">raki</AUni> -<AUni ws="qvm-x-akl">raki; rake</AUni> -<AUni ws="qvm-x-ame">raki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="bda40d16-507b-4b25-85d7-d758b29152db" ownerguid="aff720bd-fb3d-4f85-bbc4-41d5fc5b83f8"> -<ExampleWords> -<AUni ws="en">celebrate, commemorate, honor, do something in someone's honor, mark, in celebration of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to celebrating?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bda63b23-dc9c-4642-a0ae-e368c0e04146" ownerguid="642ff468-e6c8-4fd0-8f52-262efa8f7774"> -<ExampleWords> -<AUni ws="en">hateful, hating, antagonistic, hostile, malicious, spiteful</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a person who hates?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="bda6adc2-c9b3-4eb5-9fd3-5e0dadf7ea9f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mandil</AUni> -<AUni ws="qvm-x-acl">mandil; mandil; mandel</AUni> -<AUni ws="qvm-x-akh">mandil</AUni> -<AUni ws="qvm-x-akl">mandil; mandil; mandel</AUni> -<AUni ws="qvm-x-ame">mandil</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mandel</AUni> -<AUni ws="qvm-x-acl">+mandel</AUni> -<AUni ws="qvm-x-akh">+mandel</AUni> -<AUni ws="qvm-x-akl">+mandel</AUni> -<AUni ws="qvm-x-ame">+mandel</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.305" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4fcdaa40-c72b-41d5-b86c-e4fae1dad351" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mandel</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5474a940-0683-4a6a-a1b1-6820f419d542" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7b97a850-c994-4601-9242-f923e568859b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mandel 
\entryTyp root 
\gENG apron 
\gSPN 
\e +mandel 
\c N0 
\mp +FinalC 
\ach mandil 
\akh mandil 
\acl mandil / _# 
\acl mandil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mandel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mandil / _# 
\akl mandil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mandel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame mandil</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="bda8f065-dd51-4d09-88d9-0f638a3b547a" ownerguid="8c3afdce-2305-4cb6-8cb9-ea32c0e77e68"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="bdaaeab4-2500-4a52-9dbd-4926d5cd9254" ownerguid="31b8af41-cbce-4c3c-b2b7-a1c8eb5f1412"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="bdaecf2f-d0fa-49f7-891e-bcb0a31ae630" ownerguid="d80360f9-7319-40a7-a2bc-fd8718711ba4"> -<Abbreviation> -<AUni ws="en">8.4.5.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.648" /> -<DateModified val="2022-9-23 16:55:8.648" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to one event happening after another.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89O Sequential Addition</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">After</AUni> -</Name> -<Questions> -<objsur guid="221e394d-6a63-434c-b821-219ce42312d1" t="o" /> -<objsur guid="7072bdd3-344c-478a-a27e-ec34459f3bbb" t="o" /> -<objsur guid="3458fc8d-0772-4540-99b8-6e8844da7e7c" t="o" /> -<objsur guid="eded6cce-5a4d-4d0b-8639-1550489a2a8a" t="o" /> -<objsur guid="2f8a5488-e469-4e6f-a23b-35c5afe48021" t="o" /> -<objsur guid="fcc5d414-690c-46b9-92b1-2c674c7e7350" t="o" /> -<objsur guid="f4c22f8c-83e4-487a-8d87-1dbb7fc09d77" t="o" /> -<objsur guid="436dd4f9-96a8-45d6-8c9d-db565746c264" t="o" /> -<objsur guid="40270442-476c-423e-aa85-b0a2cb4a26ea" t="o" /> -<objsur guid="60b04731-a33f-488b-a895-49d5eae4b8f2" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="bdaf96fa-5be7-4a5a-9a7a-b64f9055775c" ownerguid="a9fbc056-3134-41af-baf4-9f63fa5bd5ae"> -<ExampleWords> -<AUni ws="en">drop (of water/blood), droplet, a drip</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What is a drop of water called?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bdb4bf9f-8e41-4578-8c8d-64d20d2195aa" ownerguid="0f568473-880d-43bd-b5ce-590100fdcaf6"> -<ExampleWords> -<AUni ws="en">swallow, gulp</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to swallowing?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="bdb505ec-e22b-4cee-9d30-3f70fe045bfb" ownerguid="1431abed-afa5-49b5-8037-39547186176b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">barracks</AUni> -<AUni ws="es">cuartel</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e10672e8-a003-4e34-8a87-0d86eca06262" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="bdb54436-1f82-41f7-b953-72f047e4202a" ownerguid="4f516445-e044-4d9c-ac9b-a3178f72b405"> -<ExampleWords> -<AUni ws="en">show, screen, intermission</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to showing a movie?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bdb5b2aa-e34d-4a0a-a983-2df595815b30" ownerguid="e2d1467c-2610-4296-870b-873d92cc8f19"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="bdba0a6e-4eff-4584-ba43-7cf667d99fda" ownerguid="6855bdcb-b4a4-4a56-be58-e070b460d075"> -<Form> -<AUni ws="qvm-x-ach">öru</AUni> -<AUni ws="qvm-x-acl">öru; öru; öro</AUni> -<AUni ws="qvm-x-akh">öru</AUni> -<AUni ws="qvm-x-akl">öru; öru; öro</AUni> -<AUni ws="qvm-x-ame">öru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="bdbd75e4-49ca-4d20-a638-2ca3b56b2a1f" ownerguid="4d61f524-7213-4c2c-8c14-f8eff3aed813"> -<ExampleWords> -<AUni ws="en">tight, too small</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is tight?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="bdbf3074-aec7-4152-9e17-becfaa4a9256" ownerguid="f1488c80-cf16-4f1d-af6d-aad304199966"> -<Form> -<AUni ws="qvm-x-ach">limpiu; limpio</AUni> -<AUni ws="qvm-x-acl">limpiu; limpiu; limpio</AUni> -<AUni ws="qvm-x-akh">limpiu; limpio</AUni> -<AUni ws="qvm-x-akl">limpiu; limpiu; limpio</AUni> -<AUni ws="qvm-x-ame">limpiu; limpio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="bdc19513-7246-4678-99fe-9b4297d3f81f" ownerguid="11cf45ec-f9d6-4c99-8782-738e26a342c8"> -<ExampleWords> -<AUni ws="en">displace, dislocate, dislodge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to causing something to move from somewhere?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="bdc50987-5450-4385-a5ab-43970ecf866f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rura</AUni> -<AUni ws="qvm-x-acl">rura</AUni> -<AUni ws="qvm-x-akh">rura</AUni> -<AUni ws="qvm-x-akl">rura</AUni> -<AUni ws="qvm-x-ame">rura</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rura</AUni> -<AUni ws="qvm-x-acl">*rura</AUni> -<AUni ws="qvm-x-akh">*rura</AUni> -<AUni ws="qvm-x-akl">*rura</AUni> -<AUni ws="qvm-x-ame">*rura</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.399" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6ffa80ef-8157-43c1-b9e5-3564ece26f98" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rura</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1926c011-b8c7-4363-ae71-d334b4fb65b4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7911c1cd-1831-48c8-b08d-d789ab9c2171" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rura 
\entryTyp root 
\gENG do 
\gSPN hacer 
\e *rura 
\c V2 
\ach rura 
\akh rura 
\acl rura 
\akl rura 
\ame rura</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="bdcde8dd-d02f-4682-a697-1a6f5ea24dbf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">escalón; escalon</AUni> -<AUni ws="qvm-x-acl">escalón; escalon</AUni> -<AUni ws="qvm-x-akh">escalón; escalon</AUni> -<AUni ws="qvm-x-akl">escalón; escalon</AUni> -<AUni ws="qvm-x-ame">escalón; escalon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+escalón</AUni> -<AUni ws="qvm-x-acl">+escalón</AUni> -<AUni ws="qvm-x-akh">+escalón</AUni> -<AUni ws="qvm-x-akl">+escalón</AUni> -<AUni ws="qvm-x-ame">+escalón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.487" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="914314e8-987f-4979-ae62-2a130de6db37" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+escalón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="284a664a-51da-48c1-8ebc-a5589fc40942" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9eb708c5-56b0-475e-8f0d-e417521ec42a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +escalón 
\entryTyp root 
\gENG 
\gSPN 
\e +escalón 
\c N0 
\mp +FinalC 
\ach escalón / _# 
\ach escalon / ~_# 
\akh escalón / _# 
\akh escalon / ~_# 
\acl escalón / _# 
\acl escalon / ~_# 
\akl escalón / _# 
\akl escalon / ~_# 
\ame escalón / _# 
\ame escalon / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bdd0533c-48c9-4d6a-a930-d153ce22c702" ownerguid="756728a8-9eb8-4329-aee2-d6a3d64585f2"> -<ExampleWords> -<AUni ws="en">solidify, harden, dry, bake, freeze, thicken, stiffen, set, jell, gel, clot, coagulate, coagulation, congeal, crystallize, crystallization, precipitate, precipitation, curdle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to liquids changing into solids?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bdd27055-7516-4659-9f5a-3a3b104c4ab0" ownerguid="70953222-5bc5-4fa2-a85a-01827f7bc537"> -<ExampleWords> -<AUni ws="en">can you tell me the way to, do you know the way to, how do I get to, can you direct me to, is this the way to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What do you say to someone when you want them to tell you the way?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bdd3292e-23b0-4a87-a720-881dc095f7b3" ownerguid="08788e9a-93b8-4a2e-ab01-dea177f061e8"> -<ExampleWords> -<AUni ws="en">dinner, banquet, feast</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a large or important meal?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="bdd669c6-5d67-4a35-b66d-0b641893dbe4" ownerguid="ea943ba9-ac0f-406f-adeb-b2e5540461dd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">talk</AUni> -<AUni ws="es">hablar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e4f4a6e0-e5f6-4f76-b5b5-8981edb6e04a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="bddc70ea-d46f-4e4b-83a1-a47bea858dd6" ownerguid="91913920-8a6a-4ba0-9361-d6cc9e1f3639"> -<Abbreviation> -<AUni ws="en">8.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the front part of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Front</AUni> -</Name> -<Questions> -<objsur guid="11005ef1-0a6e-47fe-83c0-5a3e4c5e2fff" t="o" /> -<objsur guid="2b72e465-1724-4261-9b97-6cb8f8e0ac8d" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="ed976bbe-4fb2-4365-b136-d2fce077a73f" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="bddc72ff-ab18-4452-b21a-3de854e3227e" ownerguid="5ec4cb19-0127-4e01-8d32-31703728bbcb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" t="r" /> -</Morph> -<Msa> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="bddfd523-a158-4739-b701-b0c48d013d3e" ownerguid="30b3faa8-747e-465f-833a-a9957a259be2"> -<ExampleWords> -<AUni ws="en">separation, dispersion, dispersal, the spread of, division</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe the condition of things when they are separated?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bde134cb-6414-453d-9241-c52a5cef9df1" ownerguid="da39c0d9-a5c1-4f10-bd3b-4e988abcab5a"> -<ExampleWords> -<AUni ws="en">convict</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to causing someone to feeling sorry?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="bde73b4d-ea70-496c-9c83-21d45c2497e1" ownerguid="a9a03ccc-eb79-4862-8711-d919db632f19"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">scratch</AUni> -<AUni ws="es">raspar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1a661b20-4003-4cd5-8ffa-8f1557665fec" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="bdeaf696-2919-4beb-af32-2ae79b256cc6" ownerguid="b0feb82b-7981-49f0-8611-bf674064ec33"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">treasurer</AUni> -<AUni ws="es">tesorero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e9ded309-bf0b-4bdd-8ba0-12a17634ba56" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="bdec1b52-b38a-4c24-a5bf-f5e4d41642aa" ownerguid="db2232d9-8b17-4920-936f-2b6249c6f7fa"> -<ExampleWords> -<AUni ws="en">carjacking, hijack, hijacked, hijacking, piracy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to stealing a vehicle?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="bdec53c5-23e0-4d69-9674-104ed8d01bf5" ownerguid="67b648fc-5317-4a74-8f22-30e8b1b34d51"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuti</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuti; cute</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuti</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuti; kute</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuti</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1ea93998-be9c-4ae6-b87a-1279a5c89619" t="r" /> -</Morph> -<Msa> -<objsur guid="35967ee3-872d-4b56-ae00-e643fda7e9f3" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="bdf1bb80-1094-4dc8-bd6a-0df542fbe978" ownerguid="ca98bd7b-8711-41f6-86d0-5cd07b7bfe0d"> -<ExampleWords> -<AUni ws="en">fall down, collapse, be blown down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something being destroyed?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="bdf485dc-b2fd-401d-bd76-d48fde29a289" ownerguid="89c9becb-c2f1-4fd2-b247-1d887e7937df"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="6b8b9736-e52b-41c9-b6a8-d76589346167" t="o" /> -</Examples> -<Gloss> -<AUni ws="es">lavatorio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c90a608d-7d41-4529-8a84-43b013709f48" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="bdf6b9b8-189a-4ff8-a593-c9ecf6009b6e" ownerguid="ef860ee3-a4a5-4a42-b810-fdf41e35d151"> -<ExampleWords> -<AUni ws="en">believer, member (of the faith), adherent, follower, practitioner</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What is a person called who believes in a religion?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bdfa9fff-47a7-4db7-91fe-4a8a8ae23551" ownerguid="f726d9bb-ae80-4c01-bdef-b600cb27736e"> -<ExampleWords> -<AUni ws="en">system, structure, network, framework, apparatus, mechanism, set-up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the way an organization is organized?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bdfb6bd2-ddf0-4ef7-bde9-2a788f4b7f2d" ownerguid="445f3084-f250-40fa-87ba-ebd233f9018f"> -<ExampleWords> -<AUni ws="en">pangolin, scaly anteater</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What species of pangolin are there?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="be055ca0-88b2-49ca-9d7a-0601ed5890a9" ownerguid="6f8d4578-3c91-47b5-a3c5-a3004e9f6e65"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</Msa> -<Sense> -<objsur guid="2801e582-fd5f-46da-b446-4dd5882c9bda" t="r" /> -</Sense> -</rt> -<rt class="LexExampleSentence" guid="be095055-0e23-4e98-882c-3a0017bbd03d" ownerguid="c964116f-8581-46ed-9c28-42316f94fb38"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Wäcapis wachar culaycan. Nnnnfff, nnnnfff, nin.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="be0979ee-989d-4012-a5f7-3859ca577a39" ownerguid="376e9662-39a0-4b0d-a746-195ddf737241"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">contribution</AUni> -<AUni ws="es">cuota</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1ab79354-e86f-4714-915c-c605e0968cc2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="be0b7b6e-c484-4277-b788-c5b434079a2f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ronzal</AUni> -<AUni ws="qvm-x-acl">ronzal</AUni> -<AUni ws="qvm-x-akh">ronzal</AUni> -<AUni ws="qvm-x-akl">ronzal</AUni> -<AUni ws="qvm-x-ame">ronzal</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ronzal</AUni> -<AUni ws="qvm-x-acl">+ronzal</AUni> -<AUni ws="qvm-x-akh">+ronzal</AUni> -<AUni ws="qvm-x-akl">+ronzal</AUni> -<AUni ws="qvm-x-ame">+ronzal</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.378" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c5348009-9fb7-4eec-908b-07ac462e77a9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ronzal</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1c087574-defa-4621-ad70-d487d4a08a43" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="54205274-f35c-478c-9b20-37b0f7339f5d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ronzal 
\entryTyp root 
\gENG 
\gSPN 
\e +ronzal 
\c N0 
\mp +FinalC 
\ach ronzal 
\akh ronzal 
\acl ronzal 
\akl ronzal 
\ame ronzal 
\i 1KI 12.11 Papänë läzuwan astashga cashuptiquipis nogaga fiërru puntayog ronzalwanragmi astashayquipag.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="be0bef3b-acd0-4c75-9d6f-a0dc1ec768dd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">malfa:ma</AUni> -<AUni ws="qvm-x-acl">malfa:ma</AUni> -<AUni ws="qvm-x-akh">malfa:ma</AUni> -<AUni ws="qvm-x-akl">malfa:ma</AUni> -<AUni ws="qvm-x-ame">malfa:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mala.fama</AUni> -<AUni ws="qvm-x-acl">+mala.fama</AUni> -<AUni ws="qvm-x-akh">+mala.fama</AUni> -<AUni ws="qvm-x-akl">+mala.fama</AUni> -<AUni ws="qvm-x-ame">+mala.fama</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.273" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="44ea9485-c22a-4461-81e6-f048e4e27b92" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mala.fama</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="af3d6efe-726e-4682-8f05-66bbc56c5672" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="730fd40b-346e-4330-8a6e-76b3e17a332e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mala.fama 
\entryTyp root 
\gENG 
\gSPN 
\e +mala.fama 
\c N0 
\ach malfa:ma 
\akh malfa:ma 
\acl malfa:ma 
\akl malfa:ma 
\ame malfa:ma 
\i PRO 25.10 Jucta wilapaptiquega pengaymanmi churashunquipag. Tsaynogpami malfämacho quëdanquipag.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="be0cbb29-5628-4e91-a0f7-cd6fd13f446a" ownerguid="a3fe0ca2-64fe-44db-ac3f-14513385bc25"> -<ExampleWords> -<AUni ws="en">go to sleep, fall asleep, drop off, sink into a deep sleep</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to going to sleep?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="be13cbb1-9026-483a-bda6-43b275c95d51" ownerguid="236e9510-edac-4196-8ad5-51475798a59d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="be1493b3-8c0c-48e9-ace2-50722bcdc508" ownerguid="7110adbe-a4ce-47b0-8c2f-6b41edaf2fcb"> -<ExampleWords> -<AUni ws="en">stop, come to rest, halt, brake</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to stopping moving?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="be15f818-d144-4745-b6b0-8b2d3623e41e" ownerguid="c3e99a56-db48-4824-ad93-32f78f7a2e52"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2Sa 6.5 Tayta Diospa babulninta aparmi Israel runacunawan Davidpis aywargan pasaypa cushishga. Tayta Diosta alabashpanmi arpacunata, salteriucunata, panderëtacunata, shagshagyagcunata y platïllucunatapis tucaraycar aywapäcorgan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="be170807-40d9-475b-8d63-393984a5ee71" ownerguid="cbc24a98-1c64-467e-98aa-251a28e4c0b8"> -<ExampleWords> -<AUni ws="en">feces, manure, crap, droppings, dung, excrement, fecal, guano, pile, stool, waste, shit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to feces?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="be1b9e87-3a82-4ad0-a4b9-8faf74ee2516" ownerguid="d9cb2e69-133d-4525-bca5-50b0f3402cbb"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John <has> a house.; John <owns> a house.; That house <belongs to> John.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">own, possess, have, belong to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to owning something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="be1ba0af-0be2-4172-a1bb-807ab504ad68"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">camisa</AUni> -<AUni ws="qvm-x-acl">camisa</AUni> -<AUni ws="qvm-x-akh">camisa</AUni> -<AUni ws="qvm-x-akl">camisa</AUni> -<AUni ws="qvm-x-ame">camisa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+camisa</AUni> -<AUni ws="qvm-x-acl">+camisa</AUni> -<AUni ws="qvm-x-akh">+camisa</AUni> -<AUni ws="qvm-x-akl">+camisa</AUni> -<AUni ws="qvm-x-ame">+camisa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.31" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6e4706a4-998f-41c7-bb56-ae39a64f2052" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+camisa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="50e06b0c-9a7a-47f4-b733-97773f914b3d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="03440bde-0907-40db-bccf-c53da9131b31" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +camisa 
\entryTyp root 
\gENG shirt 
\gSPN camisa 
\e +camisa 
\c N0 
\ach camisa 
\akh camisa 
\acl camisa 
\akl camisa 
\ame camisa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="be2073bb-35a1-401d-bac5-ba4c17400bbb" ownerguid="9e589440-28a7-4313-91d9-9c2510476605"> -<Form> -<AUni ws="qvm-x-ach">uyu</AUni> -<AUni ws="qvm-x-acl">uyu; uyu; uyo</AUni> -<AUni ws="qvm-x-akh">uyu</AUni> -<AUni ws="qvm-x-akl">uyu; uyu; uyo</AUni> -<AUni ws="qvm-x-ame">uyu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="be235bc9-6253-4466-9cce-a98a75593ecc" ownerguid="af3dcbd8-3747-402e-a23a-a5e1de1c6e99"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="48d07764-d025-4381-9f88-9b1ab60a5727" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="eb23d5d0-f4fb-422f-b09c-756304adb140" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="be26728b-67cf-4db2-8804-b79c615b968d" ownerguid="4c288c59-e685-42b7-b6dc-d8ef81940ba1"> -<Form> -<AUni ws="qvm-x-ach">cuentu; cuento</AUni> -<AUni ws="qvm-x-acl">cuentu; cuentu; cuento</AUni> -<AUni ws="qvm-x-akh">cuentu; cuento</AUni> -<AUni ws="qvm-x-akl">cuentu; cuentu; cuento</AUni> -<AUni ws="qvm-x-ame">cuentu; cuento</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="be27fc7d-94e6-489a-a2d4-327375ee095d" ownerguid="e072bd42-eb0f-48c8-97fd-ae9ca8bc3a75"> -<ExampleWords> -<AUni ws="en">fight (n) for, struggle for, battle, campaign for, crusade for, drive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the process of fighting for something good?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="be280123-dda6-49a0-bd8c-5e2855b56159" ownerguid="5bb29704-fe0f-4594-9622-ce0aa42b93c8"> -<Abbreviation> -<AUni ws="en">6.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.397" /> -<DateModified val="2022-9-23 16:55:8.397" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to planting a field.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Plant a field</AUni> -</Name> -<Questions> -<objsur guid="24bc7ba6-90ea-4de0-b0f9-30700e14e52d" t="o" /> -<objsur guid="9ae40670-9d43-4be4-a666-18fc393f6dda" t="o" /> -<objsur guid="5e9ea014-f65d-4bc3-8b9e-8f20e02d53cb" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="be2a4a74-8d95-4acf-8252-2cd58debd1e4" ownerguid="38824245-7f7d-4081-ab7c-29c35d481dc3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">+</AUni> -<AUni ws="es">+</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5542c7da-b266-4ff0-8ae0-23a7af5123ff" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="be2e220e-07b9-481f-93ea-de35f67aa1dc" ownerguid="8fff393a-23c2-42bb-8da8-9b151e790904"> -<ExampleWords> -<AUni ws="en">old age, twilight years</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the time period of old age?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="be2f2785-7219-4a35-b8d3-aa56b9b78514" ownerguid="6045c6eb-efea-4586-95f8-840d32578d66"> -<Abbreviation> -<AUni ws="en">7.5.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.549" /> -<DateModified val="2022-9-23 16:55:8.549" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to multiple things moving.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Multiple things moving</AUni> -</Name> -<Questions> -<objsur guid="8b6748f6-03ac-4215-82c2-829afdfdc91a" t="o" /> -<objsur guid="01837665-7203-4e03-b8f8-22fa8babc3e1" t="o" /> -<objsur guid="13e23a61-727e-4436-8edd-1df3b946c5b5" t="o" /> -<objsur guid="8db3836a-d4fa-4808-bf84-e4636aead411" t="o" /> -<objsur guid="fbe7d35e-8871-49a5-98a2-580046c42dd9" t="o" /> -<objsur guid="4f957f94-f7e4-41de-9189-b3d0e46fc8b6" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="be300735-7062-4abf-8154-4ab725f5798c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">esgui</AUni> -<AUni ws="qvm-x-acl">esgui; esgui; esgue</AUni> -<AUni ws="qvm-x-akh">esqi</AUni> -<AUni ws="qvm-x-akl">esqi; esqi; esqe</AUni> -<AUni ws="qvm-x-ame">isqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*isqi</AUni> -<AUni ws="qvm-x-acl">*isqi</AUni> -<AUni ws="qvm-x-akh">*isqi</AUni> -<AUni ws="qvm-x-akl">*isqi</AUni> -<AUni ws="qvm-x-ame">*isqi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.862" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ddb65797-a268-4bf5-b422-902be12bb472" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*isqi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="23c42a67-7bdd-4897-8518-b3eae6f804ab" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9f92bbbb-a45c-4fdd-a5e1-8cb268ca0cab" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *isqi 
\entryTyp root 
\gENG street.mud 
\gSPN 
\e *isqi 
\c N0 
\mp +FinalI 
\ach esgui 
\akh esqi 
\acl esgui / _# 
\acl esgui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl esgue +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl esqi / _# 
\akl esqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl esqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame isqi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="be308386-6204-41f2-a72d-d5210336af3a" ownerguid="bf73a1bc-e3ac-4c93-8f2a-05a42511d4f2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">box</AUni> -<AUni ws="es">caja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="be3fbf4c-4f7b-4e31-862a-6b87facbac4b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="be352131-083c-45b0-8728-e246a01503c0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">setenta</AUni> -<AUni ws="qvm-x-acl">setenta</AUni> -<AUni ws="qvm-x-akh">setenta</AUni> -<AUni ws="qvm-x-akl">setenta</AUni> -<AUni ws="qvm-x-ame">setenta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+setenta</AUni> -<AUni ws="qvm-x-acl">+setenta</AUni> -<AUni ws="qvm-x-akh">+setenta</AUni> -<AUni ws="qvm-x-akl">+setenta</AUni> -<AUni ws="qvm-x-ame">+setenta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.510" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c9001560-e7b2-436c-bce7-81cf7b6578ed" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+setenta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="99159a0b-51ba-4d3b-9944-985ae8514cce" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="73e2999e-0561-4f06-a6b3-910c952d32f7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +setenta 
\entryTyp root 
\gENG seventy 
\gSPN setenta 
\e +setenta 
\c N0 
\ach setenta 
\akh setenta 
\acl setenta 
\akl setenta 
\ame setenta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="be3559d9-d69f-4e06-8184-071c35aa2e10" ownerguid="23bc906d-c15a-4368-b0ca-7443d5e37b83"> -<Abbreviation> -<AUni ws="en">9.6.2.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.720" /> -<DateModified val="2022-9-23 16:55:8.720" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that indicate that an event or state has no cause or reason, or is unreasonable (has insufficient cause).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89G Cause and/or Reason</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Without cause</AUni> -</Name> -<Questions> -<objsur guid="20a3ca22-53dc-4715-be60-c25bafb6aeb9" t="o" /> -<objsur guid="434ae813-7419-424c-962e-75ead9745b02" t="o" /> -<objsur guid="e8c77991-dcd9-4ce9-b3dc-1b14f41a4bd5" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="be35ba78-2ef2-4209-85b9-85b3fa62569d" ownerguid="d80360f9-7319-40a7-a2bc-fd8718711ba4"> -<ExampleWords> -<AUni ws="en">do something first, be first, beat someone to it, ahead of, be ahead of your time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to doing something before someone else does it?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="be35fa70-bb74-4320-86a0-c1e999146d57" ownerguid="4451aa09-44e4-49bc-9a0b-0e897b172173"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="2d8cba92-d33c-4716-8370-26c1c20fe7d6" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="056d3bd4-db8f-4462-b997-81a92f863b85" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="be366adb-d4c5-4424-8a22-6f06c46c2f55" ownerguid="21113dbe-2d87-4c6b-b681-c8a66bc8aafe"> -<Form> -<AUni ws="qvm-x-ach">chaga</AUni> -<AUni ws="qvm-x-acl">chaga</AUni> -<AUni ws="qvm-x-akh">chaqa</AUni> -<AUni ws="qvm-x-akl">chaqa</AUni> -<AUni ws="qvm-x-ame">chaqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="be378dc5-0efe-4014-aa54-b0c587666dff" ownerguid="3738d425-2ccf-49df-9281-86a96b3f0173"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">DAN 6.5 Tsayta tantiyarmi caynog nipäcorgan: <<Manami imatapis paytaga jitapayta camäpacushuntsu. Ünico Diosninta adorashgalanwanmi itsanga tunitsishwan.>></Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="be38886b-0ee3-4325-9ffd-2c09cf29d1fc" ownerguid="1082c52b-490a-4eec-acf1-7016796dafd9"> -<ExampleWords> -<AUni ws="en">deficient, inappreciably, inconsequentially, insignificantly, lacking, lightly, limited, little, low, merely, moderately, negligibly, piddling, possible, puny, reasonably, relatively, slightly, somewhat, sparingly, temperately, trivial, trivially</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate a small degree?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="be3d080e-8627-40ae-9cdd-dea6d661a9e6" ownerguid="5f8aec4d-cfc6-49ff-96fc-74373c2c16ba"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">destroy</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3864367c-8ad6-4d5a-9fae-340a7c8e4820" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="be3e4189-14e6-47bd-941f-a90ce658e8e4" ownerguid="5428a01a-5717-4d95-a125-0de648c7d173"> -<Form> -<AUni ws="qvm-x-ach">tisna</AUni> -<AUni ws="qvm-x-acl">tisna</AUni> -<AUni ws="qvm-x-akh">tisna</AUni> -<AUni ws="qvm-x-akl">tisna</AUni> -<AUni ws="qvm-x-ame">tisna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="be3fbf4c-4f7b-4e31-862a-6b87facbac4b" ownerguid="bf73a1bc-e3ac-4c93-8f2a-05a42511d4f2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="be422a88-8bd5-4ddc-a08a-684e34ac8f65" ownerguid="d2ca3194-e393-480e-ae1d-dd67bed55227"> -<ExampleWords> -<AUni ws="en">flower, blossom, bear fruit, produce fruit, fruitful, head, drop seeds, pollinate, yield</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a plant bearing seeds or fruit?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="be438404-cc57-4f85-8d36-80d6f0c969d9" ownerguid="6278ec36-0756-486f-932d-d63396124629"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="be468e11-6620-492e-8a6a-2e6173759ef7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lu:na</AUni> -<AUni ws="qvm-x-acl">lu:na</AUni> -<AUni ws="qvm-x-akh">lu:na</AUni> -<AUni ws="qvm-x-akl">lu:na</AUni> -<AUni ws="qvm-x-ame">lu:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+luna</AUni> -<AUni ws="qvm-x-acl">+luna</AUni> -<AUni ws="qvm-x-akh">+luna</AUni> -<AUni ws="qvm-x-akl">+luna</AUni> -<AUni ws="qvm-x-ame">+luna</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.114" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="023a46ef-5e87-4606-a63f-2326cae12265" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+luna</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1ba01f07-3b6e-4a73-b12b-f28f85af73e0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d395ebd6-1b9c-498d-b53a-e93fa0c66bfc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +luna 
\entryTyp root 
\gENG glass 
\gSPN luna 
\e +luna 
\c N0 
\ach lu:na 
\akh lu:na 
\acl lu:na 
\akl lu:na 
\ame lu:na</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="be48163e-93dd-4f15-b6e8-6a561c08d4d9"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">test</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="be488868-2b5b-4101-82c5-68b710043610" ownerguid="267cfa86-1b16-4f58-88ef-988eb679d967"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6fe49b5e-093a-457b-9f14-02b68e8cec63" t="r" /> -</Morph> -</rt> -<rt class="LexSense" guid="be4a219b-8d69-492a-a9dc-2f9fd12a73fb" ownerguid="1dd1abbb-5a5c-481b-af96-5fe94d86ce49"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">purple</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9013d46a-119c-4d9b-aa45-543c5b5fa859" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="be4a63e7-f4ba-4de2-be69-d26219d99cb6" ownerguid="66d8b546-92f5-4e94-b992-08be81c3d30c"> -<Abbreviation> -<AUni ws="en">7.7.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.549" /> -<DateModified val="2022-9-23 16:55:8.549" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to kicking--to hit something with your foot. The words in this domain may be distinguished by the way in which the foot moves, either in a swinging motion, or by first bending the leg and then quickly straightening it. They may also be distinguished by whether the foot moves horizontally or vertically, whether the effect is to move something or damage it, or how hard the person kicks.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Kick</AUni> -</Name> -<Questions> -<objsur guid="3dcbda4f-4255-40d8-b8b8-a2b65cb39815" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="be4ab208-1fa0-463f-9ca0-4c7e3e03aafd" ownerguid="6342c8bf-55b5-400f-af7e-63055fe6813b"> -<Abbreviation> -<AUni ws="en">6.7.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to tools used to lift things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Lifting tool</AUni> -</Name> -<Questions> -<objsur guid="09fbbde3-dc23-47a6-9a1f-9f8f2f630e7a" t="o" /> -<objsur guid="19f401c3-1894-46a4-9f28-660599cf3b71" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="be50f2f4-e630-4378-89ed-8fd4308b99fc" ownerguid="3793a7b7-a136-4c99-9830-65dffd7ccc6c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">encampment</AUni> -<AUni ws="es">campamento</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ce582558-e453-4b84-88cd-371495f02195" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="be51c63d-a6e9-4edb-872d-300a5e3b0e32" ownerguid="d0de0fe3-cb05-4d8b-9809-4ffb92099fdb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="3c9327ae-645a-408d-a5b0-e25edc3617b7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="be5685d5-6fd8-4d49-93e1-8b1237070318" ownerguid="18885339-b20b-4ce5-a634-4a2231bc075a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">impatient</AUni> -<AUni ws="es">aburrido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="09d13348-839e-470d-8dd2-c9a275d102bb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="be57e62b-41d5-4d52-bba3-338c0fb646d5" ownerguid="0b0801a3-8a0c-40ea-bf41-07df80bd0d5f"> -<ExampleWords> -<AUni ws="en">dry something, sear, parch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making something dry?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="be592554-b6f0-4fdb-a66c-e80625a816c2" ownerguid="99424280-0bd3-41c1-97e9-e557f6493d73"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="16139090-9d13-49af-9483-d71b8937abf1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="be5ac108-4166-435e-8b86-069a2a0dc6e3" ownerguid="ef04e630-fd6e-4db8-aed8-e744a4b9f144"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="be5f332d-78cd-43a7-b5fc-0b975c31281a" ownerguid="210fcfec-1ee9-494c-96be-72730127f7f2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">leather</AUni> -<AUni ws="es">suela</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d09017e9-ba73-4b85-97a3-d9697c3b8619" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="be612637-21ee-4e61-b956-062e8d4fba4e" ownerguid="8ac255d3-6b71-4e67-91bf-6c378c12310b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="be61f29a-6289-4e58-a891-53a559eb8195" ownerguid="5f791daf-98a2-4787-93cc-8813aea93c4d"> -<ExampleWords> -<AUni ws="en">tangle, entangle, become tangled, get all tangled up, snarl</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to things becoming tangled?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="be64c74c-9658-4a52-a624-8bcfd748852f" ownerguid="87d344ac-94cc-49d6-9878-ebc86a933033"> -<ExampleWords> -<AUni ws="en">help (n), assistance, support (n), aid (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to what is done to help?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="be66bbba-8231-4400-82a4-581c2069f8e3" ownerguid="1d34380d-61bf-4247-9145-ba318a14a97e"> -<ExampleWords> -<AUni ws="en">sheet, slip, pane, slice</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a thin piece?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="be675724-22b7-4b01-9858-0296aea77a53"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yusulpala:</AUni> -<AUni ws="qvm-x-acl">yusulpala:</AUni> -<AUni ws="qvm-x-akh">yusulpala:</AUni> -<AUni ws="qvm-x-akl">yusulpala:</AUni> -<AUni ws="qvm-x-ame">yusulpala:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+dios.le.pag.1</AUni> -<AUni ws="qvm-x-acl">+dios.le.pag.1</AUni> -<AUni ws="qvm-x-akh">+dios.le.pag.1</AUni> -<AUni ws="qvm-x-akl">+dios.le.pag.1</AUni> -<AUni ws="qvm-x-ame">+dios.le.pag.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.416" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9394a9d6-e966-4326-b28f-aadb7a3f56dc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+dios.le.pag.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="13c46f40-b19c-4687-aa9e-9843cac6be89" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="98e0ba61-7de9-429d-b132-cd5ec8e59b3a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +dios.le.pag.1 
\entryTyp root 
\gENG thankyou 
\gSPN gracias 
\e +dios.le.pag.1 
\c ONSHEV 
\mp NeverForeshortened 
\ach yusulpala: 
\akh yusulpala: 
\acl yusulpala: 
\akl yusulpala: 
\ame yusulpala: 
\mp +FinalC 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="be68b6db-4d28-42f4-ad96-e1f1bc47b52a" ownerguid="f6134be5-3f96-4750-a03e-fca381a42db1"> -<ExampleWords> -<AUni ws="en">Animism, paganism</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to talk about Animism?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="be68fa80-5f68-4870-a8d0-25830ebe0e74"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ananau</AUni> -<AUni ws="qvm-x-acl">ananau</AUni> -<AUni ws="qvm-x-akh">ananaw</AUni> -<AUni ws="qvm-x-akl">ananaw</AUni> -<AUni ws="qvm-x-ame">ananaw</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ananaw</AUni> -<AUni ws="qvm-x-acl">*ananaw</AUni> -<AUni ws="qvm-x-akh">*ananaw</AUni> -<AUni ws="qvm-x-akl">*ananaw</AUni> -<AUni ws="qvm-x-ame">*ananaw</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.759" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="43f2068d-1d84-48bb-bb97-3dd0a657f732" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ananaw</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0415aa5f-75b6-4899-9236-9a213cd611d5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a8d97a5a-4e86-4559-940f-fd8a521ad104" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ananaw 
\entryTyp root 
\gENG ouch! 
\gSPN qué.dolor! 
\e *ananaw 
\c NOSUFF 
\ach ananau 
\akh ananaw 
\acl ananau 
\akl ananaw 
\ame ananaw</Run> -</AStr> -</Custom> -</rt> -<rt class="MoInflAffMsa" guid="be6973f5-a2b1-46a6-9dd0-379cd8bb168a" ownerguid="2d9a7fef-1302-4f0e-8708-7339d07116a4"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="2187f650-9ef3-4104-9740-f007f3b51ffe" t="r" /> -</Slots> -</rt> -<rt class="MoStemMsa" guid="be6b59de-cd44-49bf-80a7-ea90acbdfb06" ownerguid="bcb7f7ad-171d-484e-ac7b-b499a81aa33d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="be6e490c-a324-48ca-88e3-32e53cb6e8cd" ownerguid="cbc0a8f5-9cba-41d2-a7e5-565fbf09c8c4"> -<ExampleWords> -<AUni ws="en">laughable, amusing, comic, comical, absurd, facetious, humor, humorous, sense of humor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe someone or something that causes people to laugh?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="be6eae69-0c6b-4e11-9607-30b7c187b7be" ownerguid="01d78278-4376-4e9b-bf37-5423217504d9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="be71ce46-4013-48b3-b604-4d59f77cd8b1" ownerguid="c6688928-6694-4264-8048-a60b665b5793"> -<ExampleWords> -<AUni ws="en">cigarette ash, cigarette smoke, cigarette butt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What is produced by smoking tobacco?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="be74f6a4-8830-469e-9e17-074205097ec2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">punuysanca</AUni> -<AUni ws="qvm-x-acl">punuysanca</AUni> -<AUni ws="qvm-x-akh">punuysanka</AUni> -<AUni ws="qvm-x-akl">punuysanka</AUni> -<AUni ws="qvm-x-ame">punuysanka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puñuysanca</AUni> -<AUni ws="qvm-x-acl">*puñuysanca</AUni> -<AUni ws="qvm-x-akh">*puñuysanca</AUni> -<AUni ws="qvm-x-akl">*puñuysanca</AUni> -<AUni ws="qvm-x-ame">*puñuysanca</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.12" /> -<DateModified val="2022-10-10 21:19:47.690" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7b9a5e00-e814-4ed8-a7a8-7a8fcb2836c6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puñuysanca</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="66204b24-5821-4d17-8e79-8620bfc3dbcf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2029d4cd-6640-47b5-b954-25c201ae3d30" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puñuysanca 
\entryTyp root 
\gENG sleepily 
\gSPN 
\e *puñuysanca 
\c R0 
\ach punuysanca 
\akh punuysanka 
\acl punuysanca 
\akl punuysanka 
\ame punuysanka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="be77dbc1-6dd2-4228-a1ba-e080f8b62db1" ownerguid="5aa2379c-17bd-4551-b679-1eae52aadaa4"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 22.2b Tsacaypa manacamurpis tranquilidäta tarënatagcu.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="be79afb0-6d9f-4089-875d-bb082f9e4e87" ownerguid="6eabd924-d1b0-4c2b-95a0-dbfddb3552f9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">riches</AUni> -<AUni ws="es">riqueza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="54be4e19-0e3e-4579-a6cb-1d2d3cfd6188" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="be851ff3-c4ba-4a2c-a87e-1a42d6a1b5c3" ownerguid="ce6d5e60-7cf6-46ab-bd02-453ec7b04f7a"> -<ExampleWords> -<AUni ws="en">encouragement, boost, congratulations</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something that causes someone to feel good about himself?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="be8741e4-fe67-474e-b321-682a95c22c6b"> -<Form> -<Str> -<Run ws="qvm-x-akh">?</Run> -</Str> -</Form> -</rt> -<rt class="LexEntry" guid="be878acc-7985-40ed-99ce-0f8f857ce5a4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ñuchgu</AUni> -<AUni ws="qvm-x-acl">ñuchgu; ñuchgo</AUni> -<AUni ws="qvm-x-akh">ñuchqu</AUni> -<AUni ws="qvm-x-akl">ñuchqu; ñuchqo</AUni> -<AUni ws="qvm-x-ame">ñuchqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñutrqu.v</AUni> -<AUni ws="qvm-x-acl">*ñutrqu.v</AUni> -<AUni ws="qvm-x-akh">*ñutrqu.v</AUni> -<AUni ws="qvm-x-akl">*ñutrqu.v</AUni> -<AUni ws="qvm-x-ame">*ñutrqu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.608" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e0defc46-3cf3-4cc6-83a4-18cbd873f587" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñutrqu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ea51f192-39b6-4c6a-b7f9-70f8a5e71ce4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="76060c41-1c25-48cb-a1ec-ca005a9e155d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñutrqu.v 
\entryTyp root 
\gENG 
\gSPN molido 
\e *ñutrqu.v 
\c V1 
\ach ñuchgu 
\akh ñuchqu 
\acl ñuchgu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ñuchgo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ñuchqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ñuchqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ñuchqu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="be89e0ba-4c6a-4986-ac0d-859a901b89a1" ownerguid="7185bd93-5281-46de-80af-767f0ec40ff6"> -<Abbreviation> -<AUni ws="en">3.2.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.94" /> -<DateModified val="2022-9-23 16:55:8.94" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for imagining things--to think about something that does not exist, or to think about something happening that has never happened.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Imagine</AUni> -</Name> -<Questions> -<objsur guid="5fb38a0e-9e81-4864-9c2f-822e4c814420" t="o" /> -<objsur guid="41ae92c8-4def-4b55-adf1-64cab734f7ca" t="o" /> -<objsur guid="8f4b58a3-1db0-45cf-a092-e4cf9a9bc1c7" t="o" /> -<objsur guid="a5b70782-a3d2-4454-b564-fbe9eccfa471" t="o" /> -<objsur guid="cf83d28a-1ecb-4f47-acfc-9d2df864d88f" t="o" /> -<objsur guid="42dcace7-c24b-4bed-8a37-e31bbd2c8a52" t="o" /> -<objsur guid="e021c594-94b7-4b44-8de7-8577d9997dcd" t="o" /> -<objsur guid="242ed73e-f890-40b7-bcc7-a9897560d25d" t="o" /> -<objsur guid="77417eb5-7751-4af9-b715-56437abd6feb" t="o" /> -<objsur guid="030756f6-ddd3-4daf-a25f-8090bb60de22" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="be8b654b-42c9-4da8-a3fb-49beb836f033" ownerguid="b47bc921-a46e-4e6c-a236-7f91faa3dda7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="be8b7fab-b686-4ff0-8152-1d37a88b75b6" ownerguid="e93daac7-6c45-41e3-b69d-4a1ac5cdf95a"> -<Form> -<AUni ws="qvm-x-ach">shushu</AUni> -<AUni ws="qvm-x-acl">shushu; shusho</AUni> -<AUni ws="qvm-x-akh">shushu</AUni> -<AUni ws="qvm-x-akl">shushu; shusho</AUni> -<AUni ws="qvm-x-ame">shushu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="be8b9233-c216-46fb-97a7-310ad8f131bf" ownerguid="892f4033-1332-4426-9fca-14d126677c5f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</Msa> -<Sense> -<objsur guid="80f44d0c-72fe-4b3c-b505-6b06de3ee220" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="be8bcc8c-9d81-411a-8417-1b0ba335bdd6" ownerguid="d8efbe75-255b-4a50-b5d6-edde747da301"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="be8c9469-ba14-4c39-bd7a-599b07a3d8d1" ownerguid="5db1b502-7c36-44fb-a7b4-50744e9ec286"> -<ExampleWords> -<AUni ws="en">feel (for something), grope (in the dark)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to trying to find something with your hand?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="be90d603-9081-4638-9470-4a61b1b75568" ownerguid="fd9701f5-f358-44a8-964a-9c36a51e5603"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="be91df27-965e-4cec-938a-6d1097dfcc48" ownerguid="17563e74-6020-4a64-a1a9-b874ef533fcb"> -<Form> -<AUni ws="qvm-x-ach">pichulu</AUni> -<AUni ws="qvm-x-acl">pichulu; pichulu; pichulo</AUni> -<AUni ws="qvm-x-akh">pichulu</AUni> -<AUni ws="qvm-x-akl">pichulu; pichulu; pichulo</AUni> -<AUni ws="qvm-x-ame">pichulu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="be95c11e-6853-40bd-8b1f-88e47d3ceac2" ownerguid="a0642103-0e21-49bd-8c77-6d7c883361a0"> -<Form> -<AUni ws="qvm-x-ach">jiujiuya; jiujiuyä</AUni> -<AUni ws="qvm-x-acl">jiujiuya; jiujiuyä</AUni> -<AUni ws="qvm-x-akh">jiwjiwya; jiwjiwyä</AUni> -<AUni ws="qvm-x-akl">jiwjiwya; jiwjiwyä</AUni> -<AUni ws="qvm-x-ame">hiwhiwya; hiwhiwyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="be96c99e-8305-4423-ab6c-d357c69f3559" ownerguid="ef2aab61-f171-4aa2-bea2-308a8e343338"> -<Form> -<AUni ws="qvm-x-ach">ciprés; cipres</AUni> -<AUni ws="qvm-x-acl">ciprés; cipres</AUni> -<AUni ws="qvm-x-akh">ciprés; cipres</AUni> -<AUni ws="qvm-x-akl">ciprés; cipres</AUni> -<AUni ws="qvm-x-ame">ciprés; cipres</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="be978201-e93a-4d9b-b523-12764e27a4c7" ownerguid="d53569d1-aa47-4ee6-a5f8-ce4bc6583391"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">HAB 3.19 Cantagcunapa mandagninpag nöta: cayta cantapäcunqui cuerdasniyog instrumentucunawan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="be981b60-ba21-4631-9bea-4e049ffd11d0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">go:za</AUni> -<AUni ws="qvm-x-acl">go:za</AUni> -<AUni ws="qvm-x-akh">go:za</AUni> -<AUni ws="qvm-x-akl">go:za</AUni> -<AUni ws="qvm-x-ame">go:za</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gozar</AUni> -<AUni ws="qvm-x-acl">+gozar</AUni> -<AUni ws="qvm-x-akh">+gozar</AUni> -<AUni ws="qvm-x-akl">+gozar</AUni> -<AUni ws="qvm-x-ame">+gozar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.619" /> -<DateModified val="2022-10-10 21:19:47.700" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f6410b17-c2b1-4c3d-9812-93ae554f67c5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gozar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="61860f78-dc7b-465b-b9ce-c60aaeb0371b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c74e3474-ed60-448e-a4bd-47afefb77d75" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gozar 
\entryTyp root 
\gENG be.merry 
\gSPN 
\e +gozar 
\c V1 
\ach go:za 
\akh go:za 
\acl go:za 
\akl go:za 
\ame go:za</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="bea01178-d66f-4294-9bb4-6737ebda015d" ownerguid="867e7660-1e22-4978-abff-e5a681c93dde"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">licorice</AUni> -<AUni ws="es">anís</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c4bb9a90-b5aa-47ec-9b35-d67d9e10acab" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="bea27228-a6ac-4e2c-945b-fcb370b6779a" ownerguid="c849a559-cbc7-4b16-b7e7-8b8d19483c69"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="bea320d9-3f9b-4eab-b783-235c71076d0a" ownerguid="8354e445-3a62-4414-ae9b-bd55bd281728"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="bea4961a-06b3-41b3-8042-db16d18b34fc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">asyari</AUni> -<AUni ws="qvm-x-acl">asyari; asyare</AUni> -<AUni ws="qvm-x-akh">asyari</AUni> -<AUni ws="qvm-x-akl">asyari; asyare</AUni> -<AUni ws="qvm-x-ame">asyari</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*asyari</AUni> -<AUni ws="qvm-x-acl">*asyari</AUni> -<AUni ws="qvm-x-akh">*asyari</AUni> -<AUni ws="qvm-x-akl">*asyari</AUni> -<AUni ws="qvm-x-ame">*asyari</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.860" /> -<DateModified val="2022-10-10 21:19:47.697" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e215e2c1-94d8-46fb-a9bb-856044dffb2f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*asyari</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="68437829-5831-4d6c-855f-6830e941eb6f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b1035f7b-e1f9-4873-b832-a4fb94a45baf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *asyari 
\entryTyp root 
\gENG be.rotton 
\gSPN 
\e *asyari 
\c V1 
\mp +FinalI 
\ach asyari 
\akh asyari 
\acl asyari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl asyare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl asyari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl asyare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame asyari</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="bea55eef-1d76-4242-99be-668309cb5884"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">balcón; balcon</AUni> -<AUni ws="qvm-x-acl">balcón; balcon</AUni> -<AUni ws="qvm-x-akh">balcón; balcon</AUni> -<AUni ws="qvm-x-akl">balcón; balcon</AUni> -<AUni ws="qvm-x-ame">balcón; balcon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+balcón</AUni> -<AUni ws="qvm-x-acl">+balcón</AUni> -<AUni ws="qvm-x-akh">+balcón</AUni> -<AUni ws="qvm-x-akl">+balcón</AUni> -<AUni ws="qvm-x-ame">+balcón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.939" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7ec8bcf4-bc00-402b-9a8a-fdc6cb831a53" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+balcón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b005214a-3da2-4b59-9ad8-b4a7e7f5e6a7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d6ef8f3b-09d5-45f3-bc52-2529a8accf1c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +balcón 
\entryTyp root 
\gENG 
\gSPN 
\e +balcón 
\c N0 
\mp +FinalC 
\ach balcón / _# 
\ach balcon / ~_# 
\akh balcón / _# 
\akh balcon / ~_# 
\acl balcón / _# 
\acl balcon / ~_# 
\akl balcón / _# 
\akl balcon / ~_# 
\ame balcón / _# 
\ame balcon / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="bea703ce-56bf-4c6e-84f7-5fecfe7553c9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mari</AUni> -<AUni ws="qvm-x-acl">mari</AUni> -<AUni ws="qvm-x-akh">mari</AUni> -<AUni ws="qvm-x-akl">mari</AUni> -<AUni ws="qvm-x-ame">mari</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.506" /> -<DateModified val="2022-10-16 14:51:27.836" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e2e83604-4006-4507-a4a7-87b6b6872418" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">DIRSUR1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="537700bd-09cb-4c0c-85f7-2f433e1addbf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="46d2b84e-ccdd-446c-bb47-ae3ea1300583" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx DIRSUR1 
\entryTyp suffix 
\gENG DIRSUR1 
\gSPN DIRSEG1 
\e DIRSUR1 
\c N0/N0 V0/V0 R0/R0 ONSHEV/NOSUFF BN/BN 
\o 255 
\mp NeverChanged 
\ach mari 
\akh mari 
\acl mari 
\akl mari 
\ame mari 
\mp +FinalI</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bea916fe-028d-454d-a02d-e2fa812b5701" ownerguid="99b40843-54bf-4c59-ae1d-d7146cebec48"> -<ExampleWords> -<AUni ws="en">wish someone luck, good luck, best of luck</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What do people say when they hope someone will be lucky?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="beaa8d08-9c81-4cbf-aa8a-9c1cb9c77a2f" ownerguid="9aa12222-cd90-4218-b396-d39482cf6bd6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="beaa93c4-b5b4-4d41-bb9e-67a575206e43" ownerguid="a447a645-8095-4238-9aeb-3cc776d8c25c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tired</AUni> -<AUni ws="es">cansado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9a3510ee-e718-41fb-a270-8522d29e0855" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="beac6dd3-9b8b-4ca5-804c-2f72c2c50c0b" ownerguid="45ebfa40-e500-45d6-b0dd-f61a14c0c832"> -<Form> -<AUni ws="qvm-x-ach">jurca</AUni> -<AUni ws="qvm-x-acl">jurca</AUni> -<AUni ws="qvm-x-akh">jurka</AUni> -<AUni ws="qvm-x-akl">jurka</AUni> -<AUni ws="qvm-x-ame">hurka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="beacffed-4143-4f70-b8a5-040720006827" ownerguid="548e3500-6daa-44a6-8416-e7a3de3da478"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="bead341a-2e3e-4044-9543-5b3c9322ecb7" ownerguid="4c308c44-f7bb-4116-9c24-0b60f417756a"> -<Form> -<AUni ws="qvm-x-ach">chasqui</AUni> -<AUni ws="qvm-x-acl">chasqui; chasque</AUni> -<AUni ws="qvm-x-akh">chaski</AUni> -<AUni ws="qvm-x-akl">chaski; chaske</AUni> -<AUni ws="qvm-x-ame">chaski</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="bead3837-71db-48c9-8783-12e73d1bf969" ownerguid="90b36b2c-0d77-4a8d-81be-bb538ed9a48c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="beadbadc-b433-4de4-9bbc-2c2d391fb2f6" ownerguid="9fe98f49-0f91-456c-9514-97e41bab62cc"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 28.3 Saypitami tucuynirag mineralcunata acrarcur jorgamun.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="beb120fa-f3a7-4162-9121-2263a82b92b6" ownerguid="d839f4ef-784f-4f94-bd37-31039eb5e3fe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="12d13dd6-a862-41d5-81a3-9e19dfdd2a08" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="beb8a95b-aba3-4e79-9b70-099c1d29f65c" ownerguid="a0e224da-c76a-46a9-9b95-fa6e2402455f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ruin</AUni> -<AUni ws="es">malograr</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1a2a84e5-c3e6-478b-833b-596449c3bb9a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="bec05bbc-48b0-4d8d-99c5-5d5f59af9369" ownerguid="e021830e-b644-4e1b-a723-40d3f643ba66"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="bec3d25a-5630-4f38-a007-2062db8944fe" ownerguid="a77fde5f-bed8-4e31-9349-742366b09b9d"> -<Form> -<AUni ws="qvm-x-ach">pitsga</AUni> -<AUni ws="qvm-x-acl">pitsga</AUni> -<AUni ws="qvm-x-akh">pitsqa</AUni> -<AUni ws="qvm-x-akl">pitsqa</AUni> -<AUni ws="qvm-x-ame">pitsqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="bec3d49c-ca8c-4c64-a789-5e8ea406a7d9" ownerguid="7b39e22d-bdac-4a5e-bee0-1bf549ccdd75"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rka</Run> -</AStr> -</Form> -<Msa> -<objsur guid="c6e7792f-f209-4623-b3a0-f732c9368e47" t="r" /> -</Msa> -<Sense> -<objsur guid="f13ed73c-8b8d-4f97-a172-09f8f88d124f" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="bec4f12f-48e8-4217-83df-9dc555469724" ownerguid="80f0945b-9e56-4379-98ce-00c0ef528aec"> -<Form> -<AUni ws="qvm-x-ach">gara</AUni> -<AUni ws="qvm-x-acl">gara</AUni> -<AUni ws="qvm-x-akh">qara</AUni> -<AUni ws="qvm-x-akl">qara</AUni> -<AUni ws="qvm-x-ame">qara</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="becb3215-9f6d-4086-9380-8988bc895431" ownerguid="c2ebfbd0-5e63-4232-86c9-625e47379016"> -<Form> -<AUni ws="qvm-x-ach">rI</AUni> -<AUni ws="qvm-x-acl">rI</AUni> -<AUni ws="qvm-x-akh">rI</AUni> -<AUni ws="qvm-x-akl">rI</AUni> -<AUni ws="qvm-x-ame">rI</AUni> -</Form> -<IsAbstract val="True" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="becba040-7467-4777-bf34-ebda5f1b907c" ownerguid="72c2f394-3231-48e4-b597-205971b0c731"> -<Form> -<AUni ws="qvm-x-ach">amïgu</AUni> -<AUni ws="qvm-x-acl">amïgu; amïgu; amïgo</AUni> -<AUni ws="qvm-x-akh">amïgu</AUni> -<AUni ws="qvm-x-akl">amïgu; amïgu; amïgo</AUni> -<AUni ws="qvm-x-ame">amïgu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="becd540e-9398-4235-a1b9-dc1445f672d0" ownerguid="05f95abb-163a-4927-83c5-8c81ef7b769c"> -<ExampleWords> -<AUni ws="en">tend, have a tendency, lean a certain way, apt to, prone to, proclivity, predilection, bent, bias, leaning, penchant, inclination, propensity, susceptibility, likelihood, liable to, trend, drift, conducive to, leads in the direction of, dispose, incline toward, gravitate toward, likely</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that the speaker thinks that something tends to be a certain way?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="becdac2c-a9db-4c51-9ebc-1a7b2821425d" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<ExampleWords> -<AUni ws="en">do a job, make a living, perform a task</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(19) What words are used of doing a job?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="becdbb71-0ebf-438c-bfea-a51c9ca20500" ownerguid="22f943d1-3a95-4b3b-bf1b-e9fcb94255c3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">broad</AUni> -<AUni ws="es">ancho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d78ebab4-8887-4f8f-93e5-76f7ac4c139d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="bece9cf8-4432-4d90-b1c3-c13f59c40557" ownerguid="cf15ff4c-effd-4807-bbc2-dee9eef7d588"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="bed3e674-a3b7-4ce3-82cb-5268a5b8c36b" ownerguid="a1959b00-9702-4b45-ac46-93f18d3bc5e6"> -<ExampleWords> -<AUni ws="en">get your breath back</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to breathing normally after running or working hard?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="bedad25b-fc5b-4617-b36e-79d2faffa907" ownerguid="5fa2d1bc-777b-49e4-bf4d-188dab771e54"> -<Form> -<AUni ws="qvm-x-ach">mi</AUni> -<AUni ws="qvm-x-acl">mi</AUni> -<AUni ws="qvm-x-akh">mi</AUni> -<AUni ws="qvm-x-akl">mi</AUni> -<AUni ws="qvm-x-ame">mi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e1-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="8378f21c-cf54-437a-9d41-a303c764b326" t="r" /> -</PhoneEnv> -</rt> -<rt class="MoStemMsa" guid="bee1d449-731f-4348-9f7e-a1b88914af6e" ownerguid="516e8837-8901-4ac8-bd3d-7927c27b8862"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="bee4d6b2-771a-45e8-ab29-847f225a02d1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">amén</AUni> -<AUni ws="qvm-x-acl">amén</AUni> -<AUni ws="qvm-x-akh">amén</AUni> -<AUni ws="qvm-x-akl">amén</AUni> -<AUni ws="qvm-x-ame">amén</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+amén</AUni> -<AUni ws="qvm-x-acl">+amén</AUni> -<AUni ws="qvm-x-akh">+amén</AUni> -<AUni ws="qvm-x-akl">+amén</AUni> -<AUni ws="qvm-x-ame">+amén</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.757" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="781723b4-ecc8-47bc-90b9-d6d0f69bbc67" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+amén</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c658f0e6-824d-435f-ac87-e717211f6c4e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a30b00ce-5a6b-41ec-b8e2-f39507216c3a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +amén 
\entryTyp root 
\gENG amen 
\gSPN amén 
\e +amén 
\c NOSUFF 
\ach amén 
\akh amén 
\acl amén 
\akl amén 
\ame amén</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bee6ea1f-0eea-4cc1-9f29-2e6caadbf474" ownerguid="af399519-5d7c-4100-9c79-8162cb4641cb"> -<ExampleWords> -<AUni ws="en">slow (someone) down, hold back, restrain, delay, hold up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to causing someone to do something slowly?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="bee72262-6751-46b4-aaf4-ba4b3cc7c06f" ownerguid="9281bb5e-a0f7-44df-b4a7-1a10c820d35a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tangle</AUni> -<AUni ws="es">enredarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4b5928af-ae4b-4bc5-a5bc-dd52d3b6218a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="bee7c075-3a14-4030-a7aa-26139f09550a" ownerguid="b0e5042d-1ade-4fb1-a6fd-9a165f5c4763"> -<ExampleWords> -<AUni ws="en">kidnap, abduct, kidnap, nab, shanghai, snatch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to kidnapping someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bee93917-a0f7-4d9e-9b30-a6a8623b297a" ownerguid="61c8829c-027a-422d-857a-a656684a8a1b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="bee96736-8acc-4639-8145-2cffb8739056"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ejerciciu; ejercicio</AUni> -<AUni ws="qvm-x-acl">ejerciciu; ejerciciu; ejercicio</AUni> -<AUni ws="qvm-x-akh">ejerciciu; ejercicio</AUni> -<AUni ws="qvm-x-akl">ejerciciu; ejerciciu; ejercicio</AUni> -<AUni ws="qvm-x-ame">ejerciciu; ejercicio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ejercicio</AUni> -<AUni ws="qvm-x-acl">+ejercicio</AUni> -<AUni ws="qvm-x-akh">+ejercicio</AUni> -<AUni ws="qvm-x-akl">+ejercicio</AUni> -<AUni ws="qvm-x-ame">+ejercicio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.447" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1fe1118a-b72f-4314-8934-ac806494f501" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ejercicio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6aaab492-8352-4349-8b74-d99b5d7155ce" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6d872b5e-55c9-49bf-866c-b9b99568a9f4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ejercicio 
\entryTyp root 
\gENG 
\gSPN 
\e +ejercicio 
\c N0 
\ach ejerciciu / ~_# 
\ach ejercicio / _# 
\akh ejerciciu / ~_# 
\akh ejercicio / _# 
\acl ejerciciu / ~_# 
\acl ejerciciu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ejercicio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ejerciciu / ~_# 
\akl ejerciciu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ejercicio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ejerciciu / ~_# 
\ame ejercicio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="beebcdc8-8ef7-4cb8-b73e-9162146465c1" ownerguid="20baa5e7-4f02-4782-a292-c6281d7b5f3a"> -<ExampleWords> -<AUni ws="en">squeeze, compress</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to pushing something from all directions?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="beebdf63-11b6-4bb1-ab8f-24b188354578" ownerguid="938698a1-c41b-42e7-abbd-eff126a79edb"> -<Form> -<AUni ws="qvm-x-ach">joga</AUni> -<AUni ws="qvm-x-acl">joga</AUni> -<AUni ws="qvm-x-akh">joqa</AUni> -<AUni ws="qvm-x-akl">joqa</AUni> -<AUni ws="qvm-x-ame">huqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="bef2781e-c09d-47b9-a084-81503e450ba9" ownerguid="d9d05e45-0a86-4881-b763-fc823156bcd5"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="bef2fb8f-03bd-4981-95e6-3e19e6b9ef25" ownerguid="4e0992cd-c04c-4b55-beab-6b0a3c98a994"> -<ExampleWords> -<AUni ws="en">hunt for birds, snare, fowling, look for bird's nest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to hunting birds?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bef60c3d-1724-4d6d-827b-d566d056f439" ownerguid="7d111356-e04e-4891-960c-2f35147eba82"> -<ExampleWords> -<AUni ws="en">misnomer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a name that is not correct?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="bef8c538-d69e-4b60-8d0b-5c8560d712eb" ownerguid="813545f6-6213-482d-919e-86244fad47e8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">satisfy</AUni> -<AUni ws="es">satisfacer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="77e0981b-8f3c-45af-8baa-d4c78ba32deb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="befba4f6-ba0f-4691-a4b9-55aa62797b55" ownerguid="a2aee42b-8abb-488e-b723-c149817f94c6"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 36.24 Tsay marcucuna ichinanpag rurapäcorgan guellaypita chuscu chunca (40) bäsicunata.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="befc073f-a3fb-4c56-bae0-5e954c6402f2" ownerguid="ff6b4fe8-6cd5-4d38-a190-509772f96b24"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a7abffb4-d22c-4e47-8cb0-b2f1cead8da6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="befe69ac-c954-4251-b28e-b4c8b1a207ac"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chuchu</AUni> -<AUni ws="qvm-x-acl">chuchu; chucho</AUni> -<AUni ws="qvm-x-akh">chuchu</AUni> -<AUni ws="qvm-x-akl">chuchu; chucho</AUni> -<AUni ws="qvm-x-ame">chuchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chuchu.v</AUni> -<AUni ws="qvm-x-acl">*chuchu.v</AUni> -<AUni ws="qvm-x-akh">*chuchu.v</AUni> -<AUni ws="qvm-x-akl">*chuchu.v</AUni> -<AUni ws="qvm-x-ame">*chuchu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.333" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5b49c2ef-3a88-4546-91a9-1ec9d763c505" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chuchu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="025599bd-4e2a-4e25-b8c4-3bf628f1e822" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a3291487-2ca6-41a4-a58b-354cda76316f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chuchu.v 
\entryTyp root 
\gENG 
\gSPN 
\e *chuchu.v 
\c V2 
\ach chuchu 
\akh chuchu 
\acl chuchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl chucho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chuchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chucho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chuchu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="bf007cd9-925d-4073-a1d6-16d64a45ca25" ownerguid="7558d071-a885-447b-9aa2-604c29669492"> -<Abbreviation> -<AUni ws="en">4.6.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.256" /> -<DateModified val="2022-9-23 16:55:8.256" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a person subjugating someone to their authority.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Subjugate</AUni> -</Name> -<Questions> -<objsur guid="4f0608cb-e3d1-40ca-803f-f55843d4cebc" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="bf022506-c6f7-4a68-bc15-9949ca00c3c7" ownerguid="0c5e2310-1d3a-4460-987f-dfdfecc5090d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="bf02a27c-7eb0-4701-a37b-722d84a80e1c" ownerguid="3271c8e7-0541-4342-b230-3613446785e7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="bf036abf-6265-4e57-a5f2-4bf30b0d2d9d" ownerguid="5e587dd9-1f34-4440-b67f-3cb6fcbb18f5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="bf05619f-89f4-4c4c-9bed-42fb58e00159" ownerguid="05a74610-1394-472f-acf9-17f5fd72e054"> -<Form> -<AUni ws="qvm-x-ach">por</AUni> -<AUni ws="qvm-x-acl">por</AUni> -<AUni ws="qvm-x-akh">por</AUni> -<AUni ws="qvm-x-akl">por</AUni> -<AUni ws="qvm-x-ame">por</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="bf05e96a-bef1-44b4-ad38-173d88bf25d4" ownerguid="e533682e-3059-471e-a3e8-9542c3f6d84b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="bf061384-e1e9-49ee-b9cf-ad01bffbbab9" ownerguid="999581c4-1611-4acb-ae1b-5e6c1dfe6f0c"> -<ExampleWords> -<AUni ws="en">heavenly body, celestial body, luminary</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to something in the sky?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="bf06b732-6e63-41a5-9b64-a82bf0db959d" ownerguid="694ffc6c-675f-4bcf-be42-876687d0ca96"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shirt</AUni> -<AUni ws="es">polo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="54cd190b-658f-4814-af59-2f72a102eab6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="bf08aac6-305f-435c-abe7-9634c0632db4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gaywi</AUni> -<AUni ws="qvm-x-acl">gaywi; gaywe</AUni> -<AUni ws="qvm-x-akh">qaywi</AUni> -<AUni ws="qvm-x-akl">qaywi; qaywe</AUni> -<AUni ws="qvm-x-ame">qaywi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qaywi</AUni> -<AUni ws="qvm-x-acl">*qaywi</AUni> -<AUni ws="qvm-x-akh">*qaywi</AUni> -<AUni ws="qvm-x-akl">*qaywi</AUni> -<AUni ws="qvm-x-ame">*qaywi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.165" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5f1e6c3b-556e-4c6b-83ad-8cb3fda14eba" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qaywi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4663620c-13cf-4c6a-bfc0-272e3c586d32" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f981c102-84f4-446f-8855-e7b867155692" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qaywi 
\entryTyp root 
\gENG stir 
\gSPN batir 
\e *qaywi 
\c V2 
\mp +FinalI 
\ach gaywi 
\akh qaywi 
\acl gaywi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gaywe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qaywi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qaywe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qaywi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="bf096b02-7f80-4616-ab93-b2f0f3e0d65a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">disimula:du</AUni> -<AUni ws="qvm-x-acl">disimula:du; disimula:du; disimula:do</AUni> -<AUni ws="qvm-x-akh">disimula:du</AUni> -<AUni ws="qvm-x-akl">disimula:du; disimula:du; disimula:do</AUni> -<AUni ws="qvm-x-ame">disimula:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+disimulado</AUni> -<AUni ws="qvm-x-acl">+disimulado</AUni> -<AUni ws="qvm-x-akh">+disimulado</AUni> -<AUni ws="qvm-x-akl">+disimulado</AUni> -<AUni ws="qvm-x-ame">+disimulado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.426" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="895ba32c-9c7f-42e8-83a3-d8fdc4036cd7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+disimulado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="686d01b2-c268-4d73-a164-1d1f4b13a0fd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4b75a586-cacf-4ab4-bff8-6043f09a003c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +disimulado 
\entryTyp root 
\gENG 
\gSPN 
\e +disimulado 
\c N0 
\ach disimula:du 
\akh disimula:du 
\acl disimula:du / _# 
\acl disimula:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl disimula:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl disimula:du / _# 
\akl disimula:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl disimula:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame disimula:du</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="bf0b24d2-4bd6-4e9c-8775-a623ace8db56" ownerguid="36ad58e3-ade7-49b9-9922-de0b5c3f13c3"> -<Abbreviation> -<AUni ws="en">5.2.3.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.317" /> -<DateModified val="2022-9-23 16:55:8.317" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for spices--things that are added to food to make them taste better.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Spice</AUni> -</Name> -<Questions> -<objsur guid="e0c48d16-9c93-46fd-bc01-5b854e912b2c" t="o" /> -<objsur guid="085326da-16b2-470c-89d5-290aea78b76e" t="o" /> -<objsur guid="54e65ea8-c828-4eb6-a5fd-7db9c46facdf" t="o" /> -<objsur guid="0f0f49ec-5b4c-4b30-86d9-ee04d569df72" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="bf0bdeeb-564d-407b-8bdf-31221aff7364" ownerguid="577017b0-ae87-4fa2-a51b-4f430497be75"> -<Abbreviation> -<AUni ws="en">4.5.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.253" /> -<DateModified val="2022-9-23 16:55:8.253" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to appointing someone to a position of authority, or delegating authority to someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>37E Assign to a Role or Function</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Appoint, delegate</AUni> -</Name> -<OcmCodes> -<Uni>676 Agency</Uni> -</OcmCodes> -<Questions> -<objsur guid="caa6bbf0-7a46-42ab-9f12-15f790aae7af" t="o" /> -<objsur guid="18bed929-d313-4506-b9c4-cea2b5ec7bd4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="bf0be5c0-30a3-4c8b-9a5d-6596de5dc801" ownerguid="c17db558-f852-4c06-8e6b-2daab5b04eb8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">believe</AUni> -<AUni ws="es">creer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bf4cc450-58d8-4333-96d1-45bc96eddf86" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="bf10154c-1971-4f1c-8563-2b17e1c17229" ownerguid="77882bc5-c87d-44ad-985b-0a15ef40f13f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="r" /> -</Morph> -</rt> -<rt class="LexSense" guid="bf115c25-70b8-4217-bdfb-9a7bf64eba72" ownerguid="1b6afcd2-1530-4e2c-a02f-9d14248f3188"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">often</AUni> -<AUni ws="es">a.menudo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6b7802af-64c4-4212-9873-c051ca0d63d1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="bf12cbfa-a6bf-476e-bf3a-ca38e159a523" ownerguid="e03998cf-0b4d-49ea-b9a8-15a3e3ca2c81"> -<Form> -<AUni ws="qvm-x-ach">peor</AUni> -<AUni ws="qvm-x-acl">peor</AUni> -<AUni ws="qvm-x-akh">peor</AUni> -<AUni ws="qvm-x-akl">peor</AUni> -<AUni ws="qvm-x-ame">peor</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="bf14787b-d417-4d55-be15-ee05986951e6" ownerguid="a9625460-7162-447c-b400-84fbc5744f1b"> -<ExampleWords> -<AUni ws="en">say farewell, say goodbye</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to saying farewell?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="bf15e14a-a265-4dff-a2b9-6f36db0f54c0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uruy</AUni> -<AUni ws="qvm-x-acl">uruy</AUni> -<AUni ws="qvm-x-akh">uruy</AUni> -<AUni ws="qvm-x-akl">uruy</AUni> -<AUni ws="qvm-x-ame">uruy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uruy</AUni> -<AUni ws="qvm-x-acl">*uruy</AUni> -<AUni ws="qvm-x-akh">*uruy</AUni> -<AUni ws="qvm-x-akl">*uruy</AUni> -<AUni ws="qvm-x-ame">*uruy</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.271" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fc7d27a2-3530-4b6f-9e10-f1a963abf1b9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uruy</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bfee8816-e042-45dc-ad67-dc6f4bb0cb06" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a3c59ae6-1cc7-4fe0-b4d2-8a7bd720b152" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uruy 
\entryTyp root 
\gENG 
\gSPN 
\e *uruy 
\c R0 
\mp +FinalC 
\ach uruy 
\akh uruy 
\acl uruy 
\akl uruy 
\ame uruy 
\i Uruy uruy micun. Comen excesivamente. Sacsashganpita mastami.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bf168202-45cc-4cca-90f8-8765948508c5" ownerguid="87bd0d45-8a94-41cb-9864-90d53a11a4b9"> -<ExampleWords> -<AUni ws="en">right</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a person's rights under the law?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bf175a52-4f8f-4167-846a-ba59eebb37c3" ownerguid="73d580ac-dc89-474c-8048-3453ebdda807"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Dallas is a thousand miles <from> Phoenix.; Our house is two miles <from> town.; Our house is two miles <away>.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">from, away, off, apart, away from</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate the distance between two places?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="bf1815c0-3c1a-420f-b59e-f592b5751ea4" ownerguid="f462a53b-3eab-4149-983c-3f5ded91bc68"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mare</AUni> -<AUni ws="es">yegua</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="108d83e4-355c-41ad-ac35-0ab3b12e3236" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="bf1b7fe6-7bf0-4bd1-b4ff-52545af034cb" ownerguid="d661c6a6-ccb2-46a1-a848-4dcfb42d6969"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="bf1f9360-6dd4-4ee3-b9f8-a5539baeb53b" ownerguid="cb362fc7-b3aa-46f4-b9a8-0f8c97fb16fe"> -<Abbreviation> -<AUni ws="en">6.2.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.397" /> -<DateModified val="2022-9-23 16:55:8.397" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to growing flowers. If one type of flower is cultivated extensively and there are many words related to it, set up a separate domain for it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Growing flowers</AUni> -</Name> -<OcmCodes> -<Uni>247 Floriculture</Uni> -</OcmCodes> -<Questions> -<objsur guid="7e643cb3-6fb9-4c6c-8c7c-356b6a6790dd" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="bf238ae1-c963-4e90-b75a-2dfeacef1160" ownerguid="51e888b5-f778-43fe-8a33-5b956e876eec"> -<Form> -<AUni ws="qvm-x-ach">preceptor</AUni> -<AUni ws="qvm-x-acl">preceptor</AUni> -<AUni ws="qvm-x-akh">preceptor</AUni> -<AUni ws="qvm-x-akl">preceptor</AUni> -<AUni ws="qvm-x-ame">preceptor</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="bf25931d-4760-4c66-abe8-c05a6dc5adbe" ownerguid="60364974-a005-4567-82e9-7aaeff894ab0"> -<Abbreviation> -<AUni ws="en">1.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.963" /> -<DateModified val="2022-9-23 16:55:7.963" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to being in water or putting something in water.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Be in water</AUni> -</Name> -<Questions> -<objsur guid="dc96b85c-8e35-4121-b35d-3af865c0c8cd" t="o" /> -<objsur guid="bab65e11-6fb2-44f8-a9f0-40341bc70e77" t="o" /> -<objsur guid="2a4bb74d-8e20-4293-929d-87c8e6278e61" t="o" /> -<objsur guid="f77f3ff0-27cb-4087-a81f-38481c286786" t="o" /> -<objsur guid="5f32ddbf-29fb-4d8a-af1d-9455b1d5001a" t="o" /> -<objsur guid="0a1d63c7-e99c-4c98-90c7-0664d2c3ad29" t="o" /> -<objsur guid="ec368641-1e05-4529-8101-9a49b5157984" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="0bbe1739-e0b4-442e-b69c-02a0ea20d790" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="bf26a560-18cb-430f-80e5-3707302adbc0" ownerguid="31e7ed11-6644-4c39-8a2b-18de4fd15760"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hut</AUni> -<AUni ws="es">chosa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a01956ef-582e-49db-9f92-8039d2837a22" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="bf285485-be0c-449d-990e-43368461f60d" ownerguid="07a04735-d4f4-446d-b749-741a3a0b4259"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="bf292d0e-f15c-4083-aebb-0673efe33125"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">putu</AUni> -<AUni ws="qvm-x-acl">putu; putu; puto</AUni> -<AUni ws="qvm-x-akh">putu</AUni> -<AUni ws="qvm-x-akl">putu; putu; puto</AUni> -<AUni ws="qvm-x-ame">putu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*putu.n</AUni> -<AUni ws="qvm-x-acl">*putu.n</AUni> -<AUni ws="qvm-x-akh">*putu.n</AUni> -<AUni ws="qvm-x-akl">*putu.n</AUni> -<AUni ws="qvm-x-ame">*putu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.47" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3f935f6b-6283-4e8e-94bd-5d9b95114b84" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*putu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9e909f03-59d3-4560-a61b-efa3b583ed3d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f464db53-f719-4235-a831-a1a934650d04" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *putu.n 
\entryTyp root 
\gENG 
\gSPN 
\e *putu.n 
\c N0 
\ach putu 
\akh putu 
\acl putu / _# 
\acl putu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl puto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl putu / _# 
\akl putu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl puto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame putu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="bf2bf036-737a-4b42-947a-a72e23c4ce34" ownerguid="44798d07-57ef-4356-a81c-13cb8eb3e40b"> -<Form> -<AUni ws="qvm-x-ach">bëta</AUni> -<AUni ws="qvm-x-acl">bëta</AUni> -<AUni ws="qvm-x-akh">bëta</AUni> -<AUni ws="qvm-x-akl">bëta</AUni> -<AUni ws="qvm-x-ame">bëta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="bf309576-a4b0-49ee-8a7c-09952cc58195"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chiqui</AUni> -<AUni ws="qvm-x-acl">chiqui</AUni> -<AUni ws="qvm-x-akh">chiki</AUni> -<AUni ws="qvm-x-akl">chiki</AUni> -<AUni ws="qvm-x-ame">chiki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*triki.n</AUni> -<AUni ws="qvm-x-acl">*triki.n</AUni> -<AUni ws="qvm-x-akh">*triki.n</AUni> -<AUni ws="qvm-x-akl">*triki.n</AUni> -<AUni ws="qvm-x-ame">*triki.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.98" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5a42990f-f614-46b5-a162-68a615351559" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*triki.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0c8c497b-5b67-49c4-893e-8a8edd3e5710" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="50a91b09-718e-4fbb-8016-8b36aae392a1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *triki.n 
\entryTyp root 
\gENG envious 
\gSPN envidioso 
\e *triki.n 
\c ONSHEV 
\mp +FinalI 
\ach chiqui 
\akh chiki 
\acl chiqui 
\akl chiki 
\ame chiki</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="bf32c57f-0055-4c8a-bbe3-8667af4dcd79" ownerguid="7b8ad325-aa92-4fa6-b47e-8b9b5d1edeaf"> -<Form> -<AUni ws="qvm-x-ach">päsha</AUni> -<AUni ws="qvm-x-acl">päsha</AUni> -<AUni ws="qvm-x-akh">päsha</AUni> -<AUni ws="qvm-x-akl">päsha</AUni> -<AUni ws="qvm-x-ame">päsha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="bf333269-d22c-47a2-ad0e-85f744fe8b91" ownerguid="55d75f66-810f-4a08-8eb0-fa7078873979"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pti</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pti</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pti</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b2772da-2fbd-4846-99c3-d3f919125916" t="r" /> -</Morph> -<Msa> -<objsur guid="6a97cf20-558d-4866-ba04-48c4807bc533" t="r" /> -</Msa> -<Sense> -<objsur guid="5c9f1fed-2e6d-4ad2-b804-9d3f09a277d3" t="r" /> -</Sense> -</rt> -<rt class="WfiWordform" guid="bf3a3da9-66df-43ae-aad4-5d1e5176a4fb"> -<Analyses> -<objsur guid="d6b0dfe1-8cb8-465f-bf15-c6dc6ff93d65" t="o" /> -<objsur guid="ebbb956c-b015-40c0-9656-e4c077c4f8e6" t="o" /> -</Analyses> -<Checksum val="-1904171863" /> -<Form> -<AUni ws="qvm-x-akh">qarqukun</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="bf3b7475-1920-4d5b-94b6-c278488e11cf" ownerguid="462b3ad8-842e-48e6-aba8-a83606dd8a69" /> -<rt class="WfiMorphBundle" guid="bf3bf799-fa78-4d1c-8752-cec9cec78098" ownerguid="4d8a2aae-c80c-4007-84b5-5255881a284c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b43ad487-6e73-48ff-9ec0-62d0371aba88" t="r" /> -</Morph> -<Msa> -<objsur guid="b0ee83ce-c1ff-41c7-8aa1-b6e53ae19ebd" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="bf3ccda4-9f43-4ebb-9d5d-3aa7a5357702" ownerguid="7fe7626d-bcfc-490a-981f-61a702901ca5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="bf3d59c0-e5cb-4e99-883d-0db90420299c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mejor</AUni> -<AUni ws="qvm-x-acl">mejor</AUni> -<AUni ws="qvm-x-akh">mejor</AUni> -<AUni ws="qvm-x-akl">mejor</AUni> -<AUni ws="qvm-x-ame">mejor</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mejor</AUni> -<AUni ws="qvm-x-acl">+mejor</AUni> -<AUni ws="qvm-x-akh">+mejor</AUni> -<AUni ws="qvm-x-akl">+mejor</AUni> -<AUni ws="qvm-x-ame">+mejor</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.396" /> -<DateModified val="2022-10-15 15:38:51.905" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4c56dedc-e5bb-4799-b149-cf62566841ca" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mejor</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0f7ee493-6be0-475c-ad64-ce23f5e4db57" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4fa8a16a-c957-431b-b13d-9e230827f098" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mejor 
\entryTyp root 
\gENG better 
\gSPN mejor 
\e +mejor 
\c N0 
\mp +FinalC 
\ach mejor 
\akh mejor 
\acl mejor 
\akl mejor 
\ame mejor</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="bf3d7390-9aab-4db2-aaf9-06299880fb33" ownerguid="a24111ff-bfee-4afa-838f-3af407f0bde8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bottle</AUni> -<AUni ws="es">botella</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d1015f38-14e7-4cf2-b932-7dda2001f0db" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="bf3ed4ea-35cd-47bc-987f-e6384074fa4b" ownerguid="c62e246c-30ba-49ed-8885-c673eafdb477"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">slaughter</AUni> -<AUni ws="es">degollar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fd4b8d8f-0e19-42d7-8e42-9b28fff64ce5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="StText" guid="bf3f1d61-0fb7-4d38-ad7b-0e74c2659ac5" ownerguid="1a8d9e35-7022-4536-b104-ff840fa9fbc2"> -<DateModified val="2022-09-28 16:04:44.720" /> -<Paragraphs> -<objsur guid="6b4a5202-224f-4512-b23d-3479dd6bef12" t="o" /> -<objsur guid="87678ea1-48ab-4611-93a4-90311b59529a" t="o" /> -<objsur guid="e4e27c37-cdac-46fc-bf90-2698cd8a774a" t="o" /> -<objsur guid="e8b77d6a-f431-4f37-a995-b784cf18be2a" t="o" /> -<objsur guid="e80ec74c-11ba-4966-8e9e-c0e6bcd508db" t="o" /> -<objsur guid="e3c46986-6476-4ac9-ac5b-d64afde389cd" t="o" /> -<objsur guid="b8f23190-e3ef-4ce9-a41b-ab593a36b7d2" t="o" /> -</Paragraphs> -<RightToLeft val="False" /> -</rt> -<rt class="LexSense" guid="bf40c410-aa27-4c05-9726-0ff61ab4fcc3" ownerguid="0c5eff0b-4158-4315-8bb0-98192b7f9bd8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">robber's.cache</AUni> -<AUni ws="es">escondite</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="98ca945e-9371-478c-9089-8a4dad411dc5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="bf40cde8-9446-4f31-904a-a23fc8b41fa7" ownerguid="0f07adb7-4387-4723-9800-8362e825ad45"> -<ExampleWords> -<AUni ws="en">hard, soft, sharp, smooth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe rocks?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="bf40fe7b-ea11-4548-9b7b-613f2bdef890"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">puchca</AUni> -<AUni ws="qvm-x-acl">puchca</AUni> -<AUni ws="qvm-x-akh">puchka</AUni> -<AUni ws="qvm-x-akl">puchka</AUni> -<AUni ws="qvm-x-ame">puchka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*putrka.v</AUni> -<AUni ws="qvm-x-acl">*putrka.v</AUni> -<AUni ws="qvm-x-akh">*putrka.v</AUni> -<AUni ws="qvm-x-akl">*putrka.v</AUni> -<AUni ws="qvm-x-ame">*putrka.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.51" /> -<DateModified val="2022-10-10 21:18:47.197" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f9d7ff13-d20d-48c4-8c27-139330b39b68" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*putrka.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e51a5e5a-51a7-4f53-8187-96bd645f22bb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e94d8369-f3cf-4d81-a417-d04caf3ca731" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *putrka.v 
\entryTyp root 
\gENG 
\gSPN 
\e *putrka.v 
\c V1 
\ach puchca 
\akh puchka 
\acl puchca 
\akl puchka 
\ame puchka</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="bf42d721-f16e-4b86-8f7a-713cfab3bf8f" ownerguid="693537bc-0068-462d-95c6-ae472cd08830"> -<Form> -<AUni ws="qvm-x-ach">equïpu</AUni> -<AUni ws="qvm-x-acl">equïpu; equïpu; equïpo</AUni> -<AUni ws="qvm-x-akh">equïpu</AUni> -<AUni ws="qvm-x-akl">equïpu; equïpu; equïpo</AUni> -<AUni ws="qvm-x-ame">equïpu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="bf44ef9b-c9e9-4653-8f59-965fdee8ce61"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">predica</AUni> -<AUni ws="qvm-x-acl">predica</AUni> -<AUni ws="qvm-x-akh">predica</AUni> -<AUni ws="qvm-x-akl">predica</AUni> -<AUni ws="qvm-x-ame">predica</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+predicar</AUni> -<AUni ws="qvm-x-acl">+predicar</AUni> -<AUni ws="qvm-x-akh">+predicar</AUni> -<AUni ws="qvm-x-akl">+predicar</AUni> -<AUni ws="qvm-x-ame">+predicar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.911" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d13e7d44-5e09-4b99-b971-974e7c5d44e6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+predicar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="67812d54-a37b-43c9-9514-a6aaacf365be" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5e44d82f-e3e2-415d-b3bb-a6918a19fcc4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +predicar 
\entryTyp root 
\gENG preach 
\gSPN predicar 
\e +predicar 
\c V2 
\ach predica 
\akh predica 
\acl predica 
\akl predica 
\ame predica</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bf470cc3-0a8a-4739-a81a-2dbadf318584" ownerguid="57c9a370-0f46-4475-98fd-c7a8b3f5074c"> -<ExampleWords> -<AUni ws="en">spoil, damage, damaging, discredit, harm, tarnish, be tainted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to spoiling a person's reputation?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bf4ac4ae-286c-463c-8b36-aaf96849d3d2" ownerguid="21bd5d63-6ac9-4381-86e9-8c4da4b70e50"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="bf4bf26f-aece-4ca6-aaf3-81cef0f81f6c" ownerguid="4b4b4164-1b76-4207-9d5d-694490be5a09"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="bf4c028e-353e-4bcf-a0b0-e96ea754bff8" ownerguid="e5ccc991-1171-408f-8862-e3f8d73d59f6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ta</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ta</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ta</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ta</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ta</Run> -</AStr> -</Form> -<Morph> -<objsur guid="4f3f1430-f126-405a-98a8-5d0b732eb948" t="r" /> -</Morph> -<Msa> -<objsur guid="eac932ef-fd79-454b-b2f7-95e85dbb829a" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="bf4cc450-58d8-4333-96d1-45bc96eddf86" ownerguid="c17db558-f852-4c06-8e6b-2daab5b04eb8"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="bf4eda87-4a5e-4243-9270-929c0a0e190a" ownerguid="65726302-2917-4638-bf41-cdb5cd3de093"> -<Form> -<AUni ws="qvm-x-ach">intëru</AUni> -<AUni ws="qvm-x-acl">intëru; intëru; intëro</AUni> -<AUni ws="qvm-x-akh">intëru</AUni> -<AUni ws="qvm-x-akl">intëru; intëru; intëro</AUni> -<AUni ws="qvm-x-ame">intëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="bf4f8a88-1281-49e3-96cd-34a37bdf47c0" ownerguid="0bc2029e-1a6f-4f6d-b034-82524355271e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="98bd87b9-fda5-4198-a721-535381fd1ece" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">regret</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="de1b2cbc-ed69-41b1-a037-10ae0c2c9aad" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="bf4ff97d-7c3e-4c5a-95e8-1da18c12a971" ownerguid="cddc10d4-d68e-4fab-a563-90f5cabda349"> -<Form> -<AUni ws="qvm-x-ach">agtu</AUni> -<AUni ws="qvm-x-acl">agtu; agto</AUni> -<AUni ws="qvm-x-akh">aqtu</AUni> -<AUni ws="qvm-x-akl">aqtu; aqto</AUni> -<AUni ws="qvm-x-ame">aqtu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="bf516db0-ff37-4fed-985e-bdb48ace550f" ownerguid="dbd3e164-3f70-4395-9728-1c24c8900da6"> -<ExampleWords> -<AUni ws="en">mortar and pestle, meat tenderizer, grinder, meat grinder</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What utensils are used to break up and crush food?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="bf5175f6-fbe4-4ac6-9041-f8aa78b7ac78" ownerguid="6bf7569e-dc79-49da-9ce1-e2e03303828a"> -<Abbreviation> -<AUni ws="en">4.7.7.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to executing someone for a crime.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>6F Instruments Used in Punishment and Execution</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Execute</AUni> -</Name> -<Questions> -<objsur guid="cc14340d-725d-400e-8634-b8b5554241e5" t="o" /> -<objsur guid="49493071-daea-4089-942f-c707ab54aa04" t="o" /> -<objsur guid="00c05fee-a61a-493d-9a4f-4a3e57b3ad41" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="bf521591-5c65-4164-afc3-c4ea62eef33a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">odri; odre</AUni> -<AUni ws="qvm-x-acl">odri; odri; odre</AUni> -<AUni ws="qvm-x-akh">odri; odre</AUni> -<AUni ws="qvm-x-akl">odri; odri; odre</AUni> -<AUni ws="qvm-x-ame">odri; odre</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+odre</AUni> -<AUni ws="qvm-x-acl">+odre</AUni> -<AUni ws="qvm-x-akh">+odre</AUni> -<AUni ws="qvm-x-akl">+odre</AUni> -<AUni ws="qvm-x-ame">+odre</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.618" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e7a4ff40-8363-448c-9165-4d9117d2f0bf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+odre</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="99b722c9-6bc7-41e7-9d59-ff1e57d3cf64" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b9dda8d3-bf05-45db-a8fd-1b0ec770e9c0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +odre 
\entryTyp root 
\gENG 
\gSPN 
\e +odre 
\c N0 
\mp +FinalI 
\ach odri / ~_# 
\ach odre / _# 
\akh odri / ~_# 
\akh odre / _# 
\acl odri / ~_# 
\acl odri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl odre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl odri / ~_# 
\akl odri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl odre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame odri / ~_# 
\ame odre / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="bf5352cf-3507-441b-9a6e-9a9ae2d4bf97"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">micu; mica</AUni> -<AUni ws="qvm-x-acl">micu; mico; mica</AUni> -<AUni ws="qvm-x-akh">miku; mika</AUni> -<AUni ws="qvm-x-akl">miku; miko; mika</AUni> -<AUni ws="qvm-x-ame">miku; mika</AUni> -</Custom> -<AlternateForms> -<objsur guid="d7a52586-e3cb-47a4-bb0f-95c98b351afd" t="o" /> -</AlternateForms> -<CitationForm> -<AUni ws="qvm-x-ach">*mikU.v2</AUni> -<AUni ws="qvm-x-acl">*mikU.v2</AUni> -<AUni ws="qvm-x-akh">*mikU.v2</AUni> -<AUni ws="qvm-x-akl">*mikU.v2</AUni> -<AUni ws="qvm-x-ame">*mikU.v2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.426" /> -<DateModified val="2022-10-26 21:7:34.409" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a3a107c5-f625-4729-b508-1fbb2f3c2c46" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mikU.v2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f69667c3-a01d-49bd-8565-d45a284be800" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5cd4d841-a1fa-4c17-a0ec-c8f5472702f2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mikU.v2 
\entryTyp root 
\gENG eat 
\gSPN comer 
\e *mikU.v2 
\c V2 
\mp PMlowered 
\ach micu 
\ach mica morphlowered 
\akh miku 
\akh mika morphlowered 
\acl micu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl mico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl mica morphlowered 
\akl miku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl miko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mika morphlowered 
\ame miku 
\ame mika morphlowered 
\mcc *mikU.v2 / _... [trans] 
\i Taytanwan micanacuycan. Son tan parecidos en su fisonomía que uno de ellos, sea el padre o el hijo va a morir. 
\mcc *mikU.v2 / _... [trigger]</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="bf5437d1-1dc8-487b-895c-fe0f60cb85e9" ownerguid="6e44405a-b655-4226-afc6-5507a4a42b67"> -<Form> -<AUni ws="qvm-x-ach">ichaya; ichayä</AUni> -<AUni ws="qvm-x-acl">ichaya; ichayä</AUni> -<AUni ws="qvm-x-akh">ichaya; ichayä</AUni> -<AUni ws="qvm-x-akl">ichaya; ichayä</AUni> -<AUni ws="qvm-x-ame">ichaya; ichayä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="bf549c71-b400-447d-b3b0-fdf056dadf6d" ownerguid="b7ad601f-b474-4bb3-94cb-2fdee7e3f23f"> -<Form> -<AUni ws="qvm-x-ach">päcU</AUni> -<AUni ws="qvm-x-acl">päcU</AUni> -<AUni ws="qvm-x-akh">päkU</AUni> -<AUni ws="qvm-x-akl">päkU</AUni> -<AUni ws="qvm-x-ame">päkU</AUni> -</Form> -<IsAbstract val="True" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="bf55247d-48c0-4482-b568-46bee1cd93ca" ownerguid="93e1aa75-1c40-4f20-84ed-61ec4e93094b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="bf56020f-6308-41b6-8805-70876ce4f0bb" ownerguid="f89a7c90-4a8f-44fc-9664-7b0e30c49569"> -<Form> -<AUni ws="qvm-x-ach">cärru</AUni> -<AUni ws="qvm-x-acl">cärru; cärru; cärro</AUni> -<AUni ws="qvm-x-akh">cärru</AUni> -<AUni ws="qvm-x-akl">cärru; cärru; cärro</AUni> -<AUni ws="qvm-x-ame">cärru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="bf56e339-9be3-4daa-9f58-dda6e4e17090" ownerguid="807f9ed0-73a9-441f-9dfc-e30507ed5501"> -<Form> -<AUni ws="qvm-x-ach">cächu</AUni> -<AUni ws="qvm-x-acl">cächu; cächu; cächo</AUni> -<AUni ws="qvm-x-akh">cächu</AUni> -<AUni ws="qvm-x-akl">cächu; cächu; cächo</AUni> -<AUni ws="qvm-x-ame">cächu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="bf57579e-47db-43a0-b876-b81c8ea5554c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mo:zu</AUni> -<AUni ws="qvm-x-acl">mo:zu; mo:zu; mo:zo</AUni> -<AUni ws="qvm-x-akh">mo:zu</AUni> -<AUni ws="qvm-x-akl">mo:zu; mo:zu; mo:zo</AUni> -<AUni ws="qvm-x-ame">mo:zu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mozo</AUni> -<AUni ws="qvm-x-acl">+mozo</AUni> -<AUni ws="qvm-x-akh">+mozo</AUni> -<AUni ws="qvm-x-akl">+mozo</AUni> -<AUni ws="qvm-x-ame">+mozo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.485" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9f73643b-6682-41ec-84dd-549c10dc0779" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mozo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="663e1995-17c4-41e8-9c25-9fff81b0c786" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2297dbd6-f42c-49b5-9874-dc16376897d4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mozo 
\entryTyp root 
\gENG young.man 
\gSPN mozo 
\e +mozo 
\c N0 
\ach mo:zu 
\akh mo:zu 
\acl mo:zu / _# 
\acl mo:zu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mo:zo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mo:zu / _# 
\akl mo:zu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mo:zo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mo:zu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bf5a0e67-5951-4898-a450-78ec3b29b782" ownerguid="ac4a936e-6c05-4e73-8d40-dfe4223b47fa"> -<ExampleWords> -<AUni ws="en">card, deck, suit, heart, diamond, club, hand, trick, spade, kitty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What equipment is used to play the game?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bf5fb03f-602b-486a-aec5-69ff2303a0bf" ownerguid="f7960e84-5af9-4999-9028-783058aa8c5c"> -<ExampleWords> -<AUni ws="en">everywhere</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to all places?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="bf621f5e-59e7-42ac-a1f1-bcf569b387da"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">apelli:du</AUni> -<AUni ws="qvm-x-acl">apelli:du; apelli:du; apelli:do</AUni> -<AUni ws="qvm-x-akh">apelli:du</AUni> -<AUni ws="qvm-x-akl">apelli:du; apelli:du; apelli:do</AUni> -<AUni ws="qvm-x-ame">apelli:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+apellido</AUni> -<AUni ws="qvm-x-acl">+apellido</AUni> -<AUni ws="qvm-x-akh">+apellido</AUni> -<AUni ws="qvm-x-akl">+apellido</AUni> -<AUni ws="qvm-x-ame">+apellido</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.808" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ab4a51af-9f95-4789-b1df-63c4103178aa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+apellido</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="967b23b6-239e-4326-83e6-c41023950932" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="84950f3c-8b44-41c9-9909-edf720a2a894" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +apellido 
\entryTyp root 
\gENG last.name 
\gSPN apellido 
\e +apellido 
\c N0 
\ach apelli:du 
\akh apelli:du 
\acl apelli:du / _# 
\acl apelli:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl apelli:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl apelli:du / _# 
\akl apelli:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl apelli:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame apelli:du</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="bf62d4e6-41a0-4bb0-a452-fe85f2c31116" ownerguid="ed238399-cf2a-4342-8b03-cbbdc9137c7a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="23105142-5e16-4e92-8a57-a99a21696fec" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="bf6866a2-4d63-467a-8cdb-abe9562ca89e" ownerguid="9119c29d-ddb5-4613-8f36-f8cd48a9b751"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">adobe</AUni> -<AUni ws="es">adobe</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="813a2dd1-5723-44b0-8b4d-57f045ad047d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="bf686d5f-f2df-4d49-ade0-8c156d6fb228" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<ExampleWords> -<AUni ws="en">how big, measure (10 meters), be 10 meters long/wide/high</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words indicate how big something is?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bf695009-b899-4e09-9659-5e682af50b4c" ownerguid="13129ec3-872e-4183-8b6d-190a317ab0f4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="bf6a441e-59e4-4e54-9969-9a29db438690" ownerguid="1c324d75-00b9-47c2-93b1-95870b2bbc6c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2/V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="31089a7b-3d86-47a4-aa86-2879999722ca" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">2O</AUni> -<AUni ws="es">2O</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7fd5787e-fab9-4d36-bb4a-82d01c28f736" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="bf6ae899-1eed-4587-bec4-26664fcf87a6" ownerguid="2e8859a9-52ee-46fb-8355-77f1c75862e1"> -<Form> -<AUni ws="qvm-x-ach">ticti</AUni> -<AUni ws="qvm-x-acl">ticti; ticti; ticte</AUni> -<AUni ws="qvm-x-akh">tikti</AUni> -<AUni ws="qvm-x-akl">tikti; tikti; tikte</AUni> -<AUni ws="qvm-x-ame">tikti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="bf6c5e07-bf17-48e2-bebf-2d25441e11a4" ownerguid="291fd82e-76e8-4574-abdc-c440160a1db5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="bf6de4f3-9e4a-4e72-8946-1b13107db077" ownerguid="2c42f822-2079-440c-b3b7-7725b6a8db8b"> -<ExampleWords> -<AUni ws="en">halt, standstill, pause, discontinuance, stoppage, stay, closure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the event of stopping?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="bf6e02e6-5619-4736-a86c-721cce235d6c" ownerguid="b54d33f2-c662-49e2-90f5-8e027e6b216f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">gueshya</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">gueshya</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qeshya</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qeshya</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qishya</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b15ff554-60d6-4dbd-a7e1-e32052d0ab50" t="r" /> -</Morph> -<Msa> -<objsur guid="841a6afc-47f6-495e-8e85-151fe538d8c2" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="bf6e1719-11ee-4ace-9c84-72019c01aabc" ownerguid="79ebb5ce-f0fd-4fb5-9f22-1fa4965a555b"> -<Abbreviation> -<AUni ws="en">1.3.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.963" /> -<DateModified val="2022-9-23 16:55:7.963" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a place where water comes out of the ground.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Spring, well</AUni> -</Name> -<Questions> -<objsur guid="4a193486-47eb-475e-978c-ccd158f218b9" t="o" /> -<objsur guid="314e274b-5c6c-4da5-8834-1effe71bdbd5" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="bf6e5330-deea-4852-a686-986cf58f4441" ownerguid="c40e9b00-548c-445a-8316-3d653364527b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">length</AUni> -<AUni ws="es">largo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="81916f8e-8809-442a-8d35-37b27c74de58" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="bf73a1bc-e3ac-4c93-8f2a-05a42511d4f2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ca:ja</AUni> -<AUni ws="qvm-x-acl">ca:ja</AUni> -<AUni ws="qvm-x-akh">ca:ja</AUni> -<AUni ws="qvm-x-akl">ca:ja</AUni> -<AUni ws="qvm-x-ame">ca:ja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+caja</AUni> -<AUni ws="qvm-x-acl">+caja</AUni> -<AUni ws="qvm-x-akh">+caja</AUni> -<AUni ws="qvm-x-akl">+caja</AUni> -<AUni ws="qvm-x-ame">+caja</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.110" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a8389b7f-e575-438b-bd27-68c7da7f0e0a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+caja</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="be3fbf4c-4f7b-4e31-862a-6b87facbac4b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="be308386-6204-41f2-a72d-d5210336af3a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +caja 
\entryTyp root 
\gENG box 
\gSPN caja 
\e +caja 
\c N0 
\ach ca:ja 
\akh ca:ja 
\acl ca:ja 
\akl ca:ja 
\ame ca:ja</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="bf73dea4-50b3-47a5-b23a-2094439a191a" ownerguid="773a282a-9633-4bf1-95ca-58ee82d89b8d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.rent</AUni> -<AUni ws="es">arrendar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1ba79cf7-3010-40de-b0e3-583bc1890bcc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="bf768c56-37f7-416a-8be1-538e7fd1e76a" ownerguid="14b9d6bc-7b49-49ec-b694-87f5c05a08ea"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bite</AUni> -<AUni ws="es">morder</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b066ab6c-3bde-42c0-94c4-15af18e5285e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="bf7dddcd-5303-4449-b815-6b8d199c34bb" ownerguid="4e7a6dfe-3654-4ca1-874d-02424581b774"> -<ExampleWords> -<AUni ws="en">the depths, channel, trench, gulf, abyss</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a deep place?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="bf821a02-62db-4071-a22c-496217bbcb83" ownerguid="7eece01d-30fc-4448-aea7-e69d8871d160"> -<Form> -<AUni ws="qvm-x-ach">chipsa</AUni> -<AUni ws="qvm-x-acl">chipsa</AUni> -<AUni ws="qvm-x-akh">chipsa</AUni> -<AUni ws="qvm-x-akl">chipsa</AUni> -<AUni ws="qvm-x-ame">chipsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="bf834835-602d-48e8-9f71-2316670e4fef" ownerguid="e88d2480-6a87-45e4-ba93-59bdbea8b708"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="bf870941-1b5b-4457-8117-71497348a261" ownerguid="179d5ce7-6875-4359-95b9-16fc79a1c4ad"> -<Form> -<AUni ws="qvm-x-ach">principi; príncipe</AUni> -<AUni ws="qvm-x-acl">principi; principi; principe</AUni> -<AUni ws="qvm-x-akh">principi; príncipe</AUni> -<AUni ws="qvm-x-akl">principi; principi; principe</AUni> -<AUni ws="qvm-x-ame">principi; príncipe</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="bf8909d7-2e92-4299-b5f1-dbcd06c8097d" ownerguid="672982f9-90f7-4d71-85da-a54578f61abe"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="bf895756-857e-45c3-9edd-a546e2f06447" ownerguid="9a9b1081-67e4-4177-82a1-a6df6dca0db9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="bf8cb808-30f5-4466-bee6-e0a41a7e4278" ownerguid="780093c1-faaa-4732-8305-4e024b56005d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shiver</AUni> -<AUni ws="es">tiritar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="728227aa-57bc-444b-8283-08e00d26b097" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="bf8f441b-085d-45fd-98f5-e929af0e719b" ownerguid="6f1b95a1-cd4a-4bb0-8335-c7abe824c37d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="dfbe4709-a405-40d4-b9d2-696318f82fb8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="bf930956-33c5-4d06-b6b4-59a555607478"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">empaña</AUni> -<AUni ws="qvm-x-acl">empaña</AUni> -<AUni ws="qvm-x-akh">empaña</AUni> -<AUni ws="qvm-x-akl">empaña</AUni> -<AUni ws="qvm-x-ame">empaña</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+empaña</AUni> -<AUni ws="qvm-x-acl">+empaña</AUni> -<AUni ws="qvm-x-akh">+empaña</AUni> -<AUni ws="qvm-x-akl">+empaña</AUni> -<AUni ws="qvm-x-ame">+empaña</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.455" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e840e586-63af-4585-b0c7-d514f390769f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+empaña</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a9ee4824-4937-4ae7-8764-72f24517ee26" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ea7727e3-3738-4dd3-b53c-12050f85a6de" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +empaña 
\entryTyp root 
\gENG gleam 
\gSPN empañar 
\e +empaña 
\c V1 
\ach empaña 
\akh empaña 
\acl empaña 
\akl empaña 
\ame empaña</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="bf9606ec-9a8e-4822-8bfd-d5eebc58c65b" ownerguid="4bf411b7-2b5b-4673-b116-0e6c31fbd08a"> -<Abbreviation> -<AUni ws="en">8.3.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.609" /> -<DateModified val="2022-9-23 16:55:8.609" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is dark--a place where there is little or no light.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>14G Darkness</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Dark</AUni> -</Name> -<Questions> -<objsur guid="d6c09475-0556-4fd5-be49-aa1ca0d454bd" t="o" /> -<objsur guid="698ec5c6-9a56-4344-92fa-9e6e6b00cf3a" t="o" /> -<objsur guid="7a2f3da4-c2d2-47bd-b2a3-68540b8a9f4c" t="o" /> -<objsur guid="fd37589e-13a1-48e9-9755-13ed72839709" t="o" /> -<objsur guid="dd5cf783-1656-4511-885d-748d751315a1" t="o" /> -<objsur guid="fab2129d-a2f8-4f9f-8f1b-7e810076b85c" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="cba6876c-5b48-42f4-ae0a-7fbe9bb971ef" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="bf9c220b-bd7c-4466-b938-bdcbf2150749" ownerguid="9d8bb0ed-a6c2-4592-a4b7-ba28311c5664"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="bf9ca6b8-9dc9-4174-938d-230ae0f86568" ownerguid="93c0134f-6930-499b-bb0c-e306b0af173f"> -<Form> -<AUni ws="qvm-x-ach">wiscul</AUni> -<AUni ws="qvm-x-acl">wiscul</AUni> -<AUni ws="qvm-x-akh">wiskul</AUni> -<AUni ws="qvm-x-akl">wiskul</AUni> -<AUni ws="qvm-x-ame">wiskul</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="bf9df196-9bb6-4cf5-ab59-62f1f14c6415" ownerguid="b97531df-8256-4796-8335-f69753a8f2e3"> -<ExampleWords> -<AUni ws="en">idol, image, icon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to an object that represents a god?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="bf9f70d1-9067-4e2e-aa04-da1c74b6cb29"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wachuy</AUni> -<AUni ws="qvm-x-acl">wachuy</AUni> -<AUni ws="qvm-x-akh">wachuy</AUni> -<AUni ws="qvm-x-akl">wachuy</AUni> -<AUni ws="qvm-x-ame">wachuy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*watruy</AUni> -<AUni ws="qvm-x-acl">*watruy</AUni> -<AUni ws="qvm-x-akh">*watruy</AUni> -<AUni ws="qvm-x-akl">*watruy</AUni> -<AUni ws="qvm-x-ame">*watruy</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.586" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1a544fdb-5746-4156-9ed9-3bd3db0de3d9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*watruy</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7ed5984d-0c4e-4973-b1b4-5905e7278510" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4ed53cad-3d5e-4fd9-b0bd-ae7a4cf3ec8b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *watruy 
\entryTyp root 
\gENG 
\gSPN 
\e *watruy 
\c N0 
\mp +FinalC 
\ach wachuy 
\akh wachuy 
\acl wachuy 
\akl wachuy 
\ame wachuy 
\i Röpan caycan wachuy wachuymi. 
\i Wachuy papa maypis micucuylapagmi caycan. 
\i PSA 100.2 Wachuy wachuy cantacunata cantashpantsi naupanman cushishga yaycushun.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="bfa15caf-a60a-44e5-8243-e46dce4d2e5a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gapya</AUni> -<AUni ws="qvm-x-acl">gapya</AUni> -<AUni ws="qvm-x-akh">qapya</AUni> -<AUni ws="qvm-x-akl">qapya</AUni> -<AUni ws="qvm-x-ame">qapya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qapya</AUni> -<AUni ws="qvm-x-acl">*qapya</AUni> -<AUni ws="qvm-x-akh">*qapya</AUni> -<AUni ws="qvm-x-akl">*qapya</AUni> -<AUni ws="qvm-x-ame">*qapya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.94" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7c10817a-0c51-49d2-b092-e19317a45328" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qapya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ac524006-a15e-4c0b-b8ea-2b440b46c232" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4791c665-6544-41b1-af00-ff51640c24a6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qapya 
\entryTyp root 
\gENG tender 
\gSPN tierno 
\e *qapya 
\c N0 
\ach gapya 
\akh qapya 
\acl gapya 
\akl qapya 
\ame qapya</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="bfa1c16c-08c9-4892-be4e-f2b837ce99be"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">aywakushun</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="bfa23d33-a943-4075-9102-47346592cec9" ownerguid="4d2a67fb-91c8-4436-87f4-f4eab6cb0828"> -<ExampleWords> -<AUni ws="en">ooze, run</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What does pus do?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bfa339d1-e8b8-4dc3-8ea4-6ffe346e4a5b" ownerguid="a77fde5f-bed8-4e31-9349-742366b09b9d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="bfa3be74-0390-4e2e-bdb7-ed41eb67e4f1" ownerguid="b4aa4bbd-8abf-4503-96e4-05c75efd23d5"> -<Abbreviation> -<AUni ws="en">1.1.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.932" /> -<DateModified val="2022-9-23 16:55:7.932" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the rain.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>14C Rain</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Rain</AUni> -</Name> -<Questions> -<objsur guid="11690994-4acd-4e9d-a63a-a5229ffd0938" t="o" /> -<objsur guid="cf0df956-82e4-4c7a-bdb0-b320d98dea6d" t="o" /> -<objsur guid="9a4c83bb-92b8-4469-9758-df1456f7e019" t="o" /> -<objsur guid="7edf08c4-9fb5-4146-8f22-0233b97c11ad" t="o" /> -<objsur guid="a2c9734d-4709-4e31-9baf-9d1674dc9d2a" t="o" /> -<objsur guid="1c415ae2-c338-4d5d-98c0-20ebfba2fc54" t="o" /> -<objsur guid="1ed780f9-7df9-40ec-88e0-ba593b38b8ed" t="o" /> -<objsur guid="7962f425-0279-438f-90fb-3593ec18c00c" t="o" /> -<objsur guid="5bb4edd4-b9d7-4a6c-b32f-f6dfa86ad9f8" t="o" /> -<objsur guid="5b4c9ab3-e1a4-4510-8307-ceeffd0a1d69" t="o" /> -<objsur guid="90a43dd3-f794-4de5-add3-7d3fcac9fac7" t="o" /> -<objsur guid="850011ac-dc2f-4482-b0e5-ea7ac45c06ef" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="bfa4f634-83a1-4ebc-bf86-c2b41a8dc173" ownerguid="2c25b6db-6d3c-41bc-9e3e-f591cde9e63f"> -<Form> -<AUni ws="qvm-x-ach">shuqui</AUni> -<AUni ws="qvm-x-acl">shuqui; shuque</AUni> -<AUni ws="qvm-x-akh">shuki</AUni> -<AUni ws="qvm-x-akl">shuki; shuke</AUni> -<AUni ws="qvm-x-ame">shuki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="bfa4fd0d-3d3f-4b5b-a76b-64e32f2f924d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">go:ma</AUni> -<AUni ws="qvm-x-acl">go:ma</AUni> -<AUni ws="qvm-x-akh">go:ma</AUni> -<AUni ws="qvm-x-akl">go:ma</AUni> -<AUni ws="qvm-x-ame">go:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gomar</AUni> -<AUni ws="qvm-x-acl">+gomar</AUni> -<AUni ws="qvm-x-akh">+gomar</AUni> -<AUni ws="qvm-x-akl">+gomar</AUni> -<AUni ws="qvm-x-ame">+gomar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.619" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="002b13ff-d913-4386-81d6-3fd92ef902d4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gomar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8f8fe4c3-73ea-43fb-a649-aeb425cefb5c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ce16265a-51a1-4654-9437-b554da60aaf9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gomar 
\entryTyp root 
\gENG 
\gSPN 
\e +gomar 
\c V1 
\ach go:ma 
\akh go:ma 
\acl go:ma 
\akl go:ma 
\ame go:ma</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="bfac2ced-98c2-4c95-99fb-83bc53ac7bac" ownerguid="ec3e8cba-764f-41d8-8fa7-97d1d8067fb1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">evil.omen</AUni> -<AUni ws="es">mala.agnero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2b8f4e5e-6713-40ce-9f0a-13ec663dd12b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="bfafac42-06de-4bd0-993e-019950275fe6" ownerguid="b5d47dab-541a-428f-9d26-4593f29eab3c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">streaked</AUni> -<AUni ws="es">sucio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fe44f235-2391-433e-8f3e-ac6ae983f941" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="bfb025ad-3a69-490b-8406-53ca366c0147" ownerguid="5eb2b1a8-3427-4929-be10-ceb6d354950d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="bfb1dfa0-ba12-4f41-a1b8-3d99e5b634c5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gashya; gashya:</AUni> -<AUni ws="qvm-x-acl">gashya; gashya:</AUni> -<AUni ws="qvm-x-akh">qashya; qashya:</AUni> -<AUni ws="qvm-x-akl">qashya; qashya:</AUni> -<AUni ws="qvm-x-ame">qashya; qashya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qashya:</AUni> -<AUni ws="qvm-x-acl">*qashya:</AUni> -<AUni ws="qvm-x-akh">*qashya:</AUni> -<AUni ws="qvm-x-akl">*qashya:</AUni> -<AUni ws="qvm-x-ame">*qashya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.134" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b06452cf-85b8-4e4c-aa9d-a6917ab64149" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qashya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6fa4402f-60c0-4a0d-aad6-040af485e6ce" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f980af6b-7b2e-4b20-a512-e58de06349ce" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qashya: 
\entryTyp root 
\gENG 
\gSPN 
\e *qashya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach gashya foreshortened 
\ach gashya: 
\akh qashya foreshortened 
\akh qashya: 
\acl gashya foreshortened 
\acl gashya: 
\akl qashya foreshortened 
\akl qashya: 
\ame qashya foreshortened 
\ame qashya: 
\i EXO 8.24 Jehová nishgannoglami upogruy gashyayparag juntargan Faraónpa palaciunman, mandäshegnincunapa wayincunaman y intëru Egipto nacionman.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bfb26612-ff89-478f-b1cb-de29c9406030" ownerguid="b917ffec-ab7e-496a-bfe4-35c567fa0785"> -<ExampleWords> -<AUni ws="en">battery</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to batteries?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bfb81fb8-1569-4666-b99c-d3ea5a161c84" ownerguid="250a52e4-ede0-427d-8382-46a5742d4f96"> -<ExampleWords> -<AUni ws="en">hospital, infirmary, hospice, clinic, medical center, health center, doctor's office, the doctor's, dispensary, aid post/station, nursing home</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a place where the sick and injured are treated?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="bfb8c31e-189b-47df-a0fd-175d18db3a00" ownerguid="fe0ad458-333d-4cd1-bacf-d10f15f9b8fa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">obligate</AUni> -<AUni ws="es">obligar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8a49c02b-29d5-4c61-8183-b1fd5300a0aa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="bfb9b2d4-0320-4970-a426-3186d22b7a09" ownerguid="ad95ae11-c210-4cd0-88ff-c9fd689f4a3a"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="bfbb83bf-cb66-4959-a639-9de6ce0b9691" ownerguid="52b7528a-203d-4580-aa1f-cf0927538021"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="bfbbb294-a4a2-42a2-9a68-d1375f645524" ownerguid="fc193988-26ca-49e9-849a-b12456d98792"> -<ExampleWords> -<AUni ws="en">be nuts, be crackers, need your head examined, be out of your mind, be off your rocker, be stark raving mad, be out to lunch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to being crazy?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bfbeb073-ec0d-4978-97c4-ba6fd2b3cc92" ownerguid="c2604a26-003e-4991-9059-b2e1a17e796c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="bfbfb9b5-363d-4767-a5cb-1b11b348efd6" ownerguid="f7960e84-5af9-4999-9028-783058aa8c5c"> -<Abbreviation> -<AUni ws="en">8.1.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.569" /> -<DateModified val="2022-9-23 16:55:8.569" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that nothing, no one, never, and nowhere.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">None, nothing</AUni> -</Name> -<Questions> -<objsur guid="693fcc3e-46e4-4871-aa56-a4935f15c6c7" t="o" /> -<objsur guid="341a2361-d63c-44a6-bb6e-0d6d9ecb2b76" t="o" /> -<objsur guid="42d53a89-607a-465e-93e5-d73af708511d" t="o" /> -<objsur guid="a8a19207-6933-4538-97eb-50b8172d2159" t="o" /> -<objsur guid="fef8aad2-22e1-48aa-8f89-e42197124593" t="o" /> -<objsur guid="8118abc9-37af-41d0-8496-fa4130cca499" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="350667ee-592b-47af-adca-14e820ec58cf" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="bfc08dd8-fea5-4334-ad1d-55db4ae94955" ownerguid="2722cd46-a725-4464-a19d-09a5b9783d95"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">christian</AUni> -<AUni ws="es">cristiano</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f0191755-03e5-434f-87d3-67e1b86f83af" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="bfc0d927-7901-4798-8f91-a547f3931ffb" ownerguid="18b3ca02-18fe-4ab5-8709-c20957a0a2fb"> -<ExampleWords> -<AUni ws="en">proud, aloof, arrogant, big-headed, boastful, brash, conceited, contemptuous, egocentric, egotistic, egotistical, hoity-toity, imperious, inflated, lofty, ostentatious, pretentious, prideful, proud hearted, puffed up, self-aggrandizing, self-confident, uppity, vain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe someone who is proud?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bfc36132-5ff4-4d06-b241-0d4626ab8b74" ownerguid="bbd00b1c-739d-4288-a370-3aab776bf465"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="bfc3effa-235d-4041-a825-ec312f0e8950" ownerguid="a3cb8a0a-99b7-40b3-9297-2a7eb51f0b7d"> -<Form> -<AUni ws="qvm-x-ach">tsunu</AUni> -<AUni ws="qvm-x-acl">tsunu; tsunu; tsuno</AUni> -<AUni ws="qvm-x-akh">tsunu</AUni> -<AUni ws="qvm-x-akl">tsunu; tsunu; tsuno</AUni> -<AUni ws="qvm-x-ame">tsunu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="bfc449fe-bc53-4325-b0ac-9c960e7549eb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shuyni</AUni> -<AUni ws="qvm-x-acl">shuyni; shuyni; shuyne</AUni> -<AUni ws="qvm-x-akh">shuyni</AUni> -<AUni ws="qvm-x-akl">shuyni; shuyni; shuyne</AUni> -<AUni ws="qvm-x-ame">shuyni</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shuyni</AUni> -<AUni ws="qvm-x-acl">*shuyni</AUni> -<AUni ws="qvm-x-akh">*shuyni</AUni> -<AUni ws="qvm-x-akl">*shuyni</AUni> -<AUni ws="qvm-x-ame">*shuyni</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.662" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="83051bfc-cd46-49bd-adac-e651b3d46819" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shuyni</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3a0a43e1-8410-4478-9bda-e1178dc3414d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6df912bb-1630-4833-b996-3c7275af6f91" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shuyni 
\entryTyp root 
\gENG apart 
\gSPN separado 
\e *shuyni 
\c N0 
\mp +FinalI 
\ach shuyni 
\akh shuyni 
\acl shuyni / _# 
\acl shuyni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shuyne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shuyni / _# 
\akl shuyni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shuyne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shuyni</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bfc8a049-548f-4a94-8c70-f0d6424491da" ownerguid="515f9b40-0637-4ce3-b343-2d99de3f723b"> -<ExampleWords> -<AUni ws="en">pipe, water pipe, valve, faucet, joint, elbow, sections of pipe, water main, water meter, drain, sink</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the parts of a system of pipes?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="bfc8e70f-4069-4341-b965-d8ea0e9e09e4" ownerguid="281bfc6f-a948-424f-b42e-783b83744808"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="9116e9aa-4ac5-4589-bf0c-a22f2003566b" t="o" /> -<objsur guid="8f2a4930-efa1-4597-ab7e-7b4c6fd7f53a" t="o" /> -</MorphBundles> -</rt> -<rt class="LexExampleSentence" guid="bfce9de4-acb2-4fe7-9be2-ccad064cc352" ownerguid="9e2739cf-4848-4c72-93f4-4bfc68aab8a4"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 37.2 Lulu guewata luquiptintsi gaushucar ushacashgannogmi paycunaga manaragpis aycagta ushacanga.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="bfcfbe88-19c5-4683-964b-3c509c1c60ce" ownerguid="d45c976a-56d0-476a-bdc0-b78cee1db402"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">less</AUni> -<AUni ws="es">menos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7be453a5-6f7e-4238-9cd6-deea877e4d5c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="bfd20358-1867-42dd-ae9b-9cb4e3ab3ba3" ownerguid="eb07e333-38d2-4ddb-9bc9-5990403600b4"> -<ExampleWords> -<AUni ws="en">fishing equipment, fishing gear, net, hook, fishhook, line, sinker, float, rod, reel, tackle, boat, dam, trap, bait</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What equipment is used to catch fish?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="bfd8c3e0-7007-40d5-856b-7f41e88d5397"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jana</AUni> -<AUni ws="qvm-x-acl">jana</AUni> -<AUni ws="qvm-x-akh">jana</AUni> -<AUni ws="qvm-x-akl">jana</AUni> -<AUni ws="qvm-x-ame">hana</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hana.v</AUni> -<AUni ws="qvm-x-acl">*hana.v</AUni> -<AUni ws="qvm-x-akh">*hana.v</AUni> -<AUni ws="qvm-x-akl">*hana.v</AUni> -<AUni ws="qvm-x-ame">*hana.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.660" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9739fd54-ab63-4f8a-821c-dee62b8176de" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hana.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3c894d33-73d8-45a2-86e4-7d6483a8758c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5979d306-49c3-4c2a-9745-3053f0b61a60" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hana.v 
\entryTyp root 
\gENG be.above 
\gSPN estar.sobre 
\e *hana.v 
\c V1 
\ach jana 
\akh jana 
\acl jana 
\akl jana 
\ame hana 
\mcc *hana.v / _ RECIP 
\i NUM 25.8 Yaykurirmi jananakushqa kaykaqta pachanpa tuksiriykurqan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="bfdb3ba4-a616-4e5f-9187-69e050d94694" ownerguid="cb7c33f2-148b-44f9-bce6-855453fc253a"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="bfdc347a-41d3-4f80-bd7c-2c566ba12e20" ownerguid="43dd6293-28be-49a1-89f1-422b07947fda"> -<Form> -<AUni ws="qvm-x-ach">carni; carni</AUni> -<AUni ws="qvm-x-acl">carni; carni; carne</AUni> -<AUni ws="qvm-x-akh">carni; carni</AUni> -<AUni ws="qvm-x-akl">carni; carni; carne</AUni> -<AUni ws="qvm-x-ame">carni; carni</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="bfdc7520-492f-46c1-b7f5-938d58a1c947" ownerguid="19d82084-dfa2-4189-9c8e-aea682049398"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">fiyu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">fiyu; fiyu; fiyo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">fiyu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">fiyu; fiyu; fiyo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">fiyu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="8af51d38-7b5d-4a73-89f8-f39e115e8e55" t="r" /> -</Morph> -<Msa> -<objsur guid="4780accf-3d86-484c-a8d2-c398d837871c" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="bfe32ef1-d815-4321-919e-945bc548f05d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mili:shu</AUni> -<AUni ws="qvm-x-acl">mili:shu; mili:shu; mili:sho</AUni> -<AUni ws="qvm-x-akh">mili:shu</AUni> -<AUni ws="qvm-x-akl">mili:shu; mili:shu; mili:sho</AUni> -<AUni ws="qvm-x-ame">mili:shu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mellizo.1</AUni> -<AUni ws="qvm-x-acl">+mellizo.1</AUni> -<AUni ws="qvm-x-akh">+mellizo.1</AUni> -<AUni ws="qvm-x-akl">+mellizo.1</AUni> -<AUni ws="qvm-x-ame">+mellizo.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.406" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c83e8b70-45f5-4e5d-8c26-1f48d044f2b7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mellizo.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1fae0f17-23eb-4c1e-a86d-9a564880ec52" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cc324d35-38da-474f-983e-5b39f234580f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mellizo.1 
\entryTyp root 
\gENG twins 
\gSPN mellizo 
\e +mellizo.1 
\c N0 
\mp +assimilated 
\ach mili:shu 
\akh mili:shu 
\acl mili:shu / _# 
\acl mili:shu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mili:sho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mili:shu / _# 
\akl mili:shu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mili:sho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mili:shu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="bfe41ef4-8022-415f-8769-d7d5d58e6a3b" ownerguid="ad012705-24fa-4bf5-adca-5d416dee4250"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="bfe4af51-5c56-41ce-93da-53dcc7276593" ownerguid="944a44d3-52c6-4cd9-9d8a-6acf6e2f2be4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="bfe6811f-a48e-44f3-a0b7-cb0b4f25c23a" ownerguid="cf15ff4c-effd-4807-bbc2-dee9eef7d588"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">taste</AUni> -<AUni ws="es">saborear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bece9cf8-4432-4d90-b1c3-c13f59c40557" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="bfe6da0a-4737-4ac6-a3d9-2c9a57617f86" ownerguid="862aa851-6b1d-491a-bd03-40e8723e4d33"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b43ad487-6e73-48ff-9ec0-62d0371aba88" t="r" /> -</Morph> -<Msa> -<objsur guid="b0ee83ce-c1ff-41c7-8aa1-b6e53ae19ebd" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="bfe8902a-32a7-4092-93b2-9dcf3dce205f" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<Abbreviation> -<AUni ws="en">3.4.2.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.143" /> -<DateModified val="2022-9-23 16:55:8.143" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for word related to feeling upset--to feel very bad because someone has done something bad to you or because something bad has happened to you, so that your thinking and behavior is affected.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Upset</AUni> -</Name> -<Questions> -<objsur guid="96cfcc81-d576-432d-85fb-f7e401e14a6e" t="o" /> -<objsur guid="105f3866-f775-46b9-b3e3-4cc079ed83f6" t="o" /> -<objsur guid="4d4242f1-c327-41d4-a5ef-67951b990b90" t="o" /> -<objsur guid="0be505c4-c0e6-4b50-959e-72b0b41e3abf" t="o" /> -<objsur guid="0abb3c6a-9985-4abe-bfa0-42d39e00fdfa" t="o" /> -<objsur guid="7da5e353-c603-48f7-b7c0-2fe213bb4a44" t="o" /> -<objsur guid="c32c0648-fb06-4e35-bf4f-938b9eb79497" t="o" /> -<objsur guid="cafbf19f-b70b-4e07-a90b-447c45bc1996" t="o" /> -<objsur guid="030ec7cc-57a1-4c5f-b651-e0f130dc16e6" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="bfe9c2c2-8976-4596-9bc3-a18bff50414c" ownerguid="52b04e15-7062-4fb2-9eaa-4fe8726f302a"> -<ExampleWords> -<AUni ws="en">greet, say hello</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to greeting someone?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="bfeba2a4-4479-49e9-838c-3baa2ad0fcae" ownerguid="ac9ee84f-f0c7-48b3-8e5a-b4c967112394"> -<Abbreviation> -<AUni ws="en">8.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.619" /> -<DateModified val="2022-9-23 16:55:8.619" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to something being a type of thing, or that something belongs to a class of things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>58D Class, Kind; 58 Nature, Class, Example</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Type, kind</AUni> -</Name> -<Questions> -<objsur guid="7bf7c5aa-c8a8-4171-a006-4d3679c3db76" t="o" /> -<objsur guid="86bdee4e-fb15-4d60-ad47-0b3e36ab1ba5" t="o" /> -<objsur guid="5664d4d4-c672-4838-a4f9-7b0576634e01" t="o" /> -<objsur guid="4b893346-6d4e-4e45-9b92-6669d2ae39ba" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="d8ea1902-5fa6-4fda-b7b2-1f9c301cdc5f" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="25763563-5ad6-4b4d-9073-3fc88f6dd44e" t="o" /> -<objsur guid="fe9253f4-d063-4d63-91af-85273d61337f" t="o" /> -<objsur guid="06a44085-cbcf-4217-ae5e-56c51899c99a" t="o" /> -<objsur guid="ac527685-f31d-42f3-81bd-97221a01c7ef" t="o" /> -<objsur guid="af62c8f6-43c7-4c44-a0d1-ab9bcff8e26f" t="o" /> -<objsur guid="0c7c33f2-4cfa-42df-84bb-19fc915a72bd" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="bfee8816-e042-45dc-ad67-dc6f4bb0cb06" ownerguid="bf15e14a-a265-4dff-a2b9-6f36db0f54c0"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="bff4fbda-49bc-4699-aec0-25b67011c689" ownerguid="fc0afb69-a4d4-439a-91cd-ed0ce67677b5"> -<ExampleWords> -<AUni ws="en">cook, bake, baste, boil, boil over, braise, brew, broil, brown (v), fry, deep fat fry, grill, marinate, pan-fry, parboil, pickle, poach, roast, sauté, season, sift, simmer, steam, stew, stir fry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to various ways of cooking food?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bff7b599-0a04-42dc-bdae-0a2fa5a713a1" ownerguid="48d3de9f-3619-4785-b50b-6921ba7eecd6"> -<ExampleWords> -<AUni ws="en">result, outcome, end, to result in, to lead to, wages, to end up being, have as a consequence, therefore, so then, consequently, as a result, for this reason, with the result that, so that as a result, to cause, which caused, so that, that, accordingly, then, hence, and so, yield, has the effect of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate the result of something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="bff7e039-a9fe-4f22-949d-9b911806fc2d" ownerguid="2a62f8e4-7da3-4f37-bf44-e24033c99c00"> -<ExampleWords> -<AUni ws="en">angry, aggravated, bitter, embittered, cross, exasperated, incensed, indignant, irate, irked, irritated, mad, nettled, offended, peeved, perturbed, piqued, rancorous, resentful, riled, sore, upset, vexed, wroth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels angry?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="bffac9e2-9c25-4489-a7bb-b0731ceb63c6" ownerguid="899aa4b6-2bae-452f-827c-54dba0135c6c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="bffe6dbd-8a09-4958-b6a0-dc735daa5798"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ycacha; ycacha:</AUni> -<AUni ws="qvm-x-acl">ycacha; ycacha:</AUni> -<AUni ws="qvm-x-akh">ykacha; ykacha:</AUni> -<AUni ws="qvm-x-akl">ykacha; ykacha:</AUni> -<AUni ws="qvm-x-ame">ykacha; ykacha:</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.487" /> -<DateModified val="2022-10-16 14:59:51.334" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6057ba4f-0c47-4d7a-9a45-a149c33ebf44" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">BKFRTH</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a8caf8c8-0473-4c7e-80ec-9dc4ff6bb4c3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7af4f3de-b4eb-4fbe-ac7a-c2c3109953e2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx BKFRTH 
\entryTyp suffix 
\gENG BKFRTH 
\gSPN AQUIALLA 
\e BKFRTH 
\c V1/V1 V2/V2 
\o 035 
\mp +foreshortens 
\mp +underlong 
\ach ycacha foreshortened 
\ach ycacha: 
\akh ykacha foreshortened 
\akh ykacha: 
\acl ycacha foreshortened 
\acl ycacha: 
\akl ykacha foreshortened 
\akl ykacha: 
\ame ykacha foreshortened 
\ame ykacha: 
\mp +FinalC 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="bfff8f47-91dc-4fde-9081-09dc8a207dfb" ownerguid="04752883-aa3e-42a2-bd42-454e9cd99b11"> -<ExampleWords> -<AUni ws="en">with my own eyes I saw...</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) visual evidence: the speaker claims to have seen the situation described.</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c0015d08-0a96-482f-aeda-3ad3ad9292f3" ownerguid="1ff743cb-49e0-483d-8a1d-4603a7d6c395"> -<ExampleWords> -<AUni ws="en">decreased, lowered, lower</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe something that someone is doing or feeling less than before?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c00180e4-c51e-4427-9528-13e6d2046798" ownerguid="50b90252-4409-42aa-984e-199d773474d2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lead</AUni> -<AUni ws="es">plomo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8b1b3853-b163-44a7-9348-979b108a80fd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c003b52c-ad4b-4349-a365-357b4655a667" ownerguid="dc94635b-d56c-42e5-ab54-54b4a0f85166"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c0043fc0-97fb-49a2-a7e1-1414d42ec19c" ownerguid="18595df7-1c69-40db-a7c1-74d490115c0c"> -<ExampleWords> -<AUni ws="en">winnow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to using the wind to winnow grain?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c005116a-0787-4ed9-aa16-a933f67d8069" ownerguid="9063dafc-4004-43eb-9956-0c946e22d99c"> -<Form> -<AUni ws="qvm-x-ach">awa</AUni> -<AUni ws="qvm-x-acl">awa</AUni> -<AUni ws="qvm-x-akh">awa</AUni> -<AUni ws="qvm-x-akl">awa</AUni> -<AUni ws="qvm-x-ame">awa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c005397b-5296-4d80-89dd-2dc522b6b1f6" ownerguid="c27b87cf-1211-4df2-96b1-12c416edabbe"> -<ExampleWords> -<AUni ws="en">joke, play a joke on, prank, play a prank on, farce, clowning, fooling around, tomfoolery, buffoonery, horseplay, monkey business</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something done humorously?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c0060a0d-c2c3-4cf1-9c4e-f796434a05dc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">exactu; exacto</AUni> -<AUni ws="qvm-x-acl">exactu; exactu; exacto</AUni> -<AUni ws="qvm-x-akh">exactu; exacto</AUni> -<AUni ws="qvm-x-akl">exactu; exactu; exacto</AUni> -<AUni ws="qvm-x-ame">exactu; exacto</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+exacto</AUni> -<AUni ws="qvm-x-acl">+exacto</AUni> -<AUni ws="qvm-x-akh">+exacto</AUni> -<AUni ws="qvm-x-akl">+exacto</AUni> -<AUni ws="qvm-x-ame">+exacto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.518" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1c6dc5fa-84c7-4c4f-ab8e-3bbb1401a80e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+exacto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8daf31a5-8006-4542-a424-f92f47b4b743" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="89b2a975-13b0-483a-935f-5880fd0c420f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +exacto 
\entryTyp root 
\gENG 
\gSPN 
\e +exacto 
\c N0 
\ach exactu / ~_# 
\ach exacto / _# 
\akh exactu / ~_# 
\akh exacto / _# 
\acl exactu / ~_# 
\acl exactu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl exacto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl exactu / ~_# 
\akl exactu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl exacto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame exactu / ~_# 
\ame exacto / _# 
\i Lev 19.36 Pitapis mana engañanayquipag tupuyquipis pësayquipis y balanzayquipis exacto catsun.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c00d9716-afa5-47f3-bc74-83269bf9b1a8" ownerguid="5a585789-2ef6-42c5-9c5a-34ff716059b7"> -<ExampleWords> -<AUni ws="en">furnace, pipe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What tools are used to work with glass?</AUni> -</Question> -</rt> -<rt class="PhEnvironment" guid="c00e385f-cbe6-4724-8993-cc46e22ee3ba" ownerguid="be765e3e-ea5e-11de-9d42-0013722f8dec"> -<Name> -<AUni ws="en">before -päkU, PLALLF which foreshortens</AUni> -</Name> -<StringRepresentation> -<Str> -<Run underline="none" ws="qvm-x-akh">/_päk</Run> -</Str> -</StringRepresentation> -</rt> -<rt class="LexEntry" guid="c00f899a-5989-4e41-a8c1-2385ec8e5851"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">calcetín; calcetin</AUni> -<AUni ws="qvm-x-acl">calcetín; calcetin</AUni> -<AUni ws="qvm-x-akh">calcetín; calcetin</AUni> -<AUni ws="qvm-x-akl">calcetín; calcetin</AUni> -<AUni ws="qvm-x-ame">calcetín; calcetin</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+calcetín</AUni> -<AUni ws="qvm-x-acl">+calcetín</AUni> -<AUni ws="qvm-x-akh">+calcetín</AUni> -<AUni ws="qvm-x-akl">+calcetín</AUni> -<AUni ws="qvm-x-ame">+calcetín</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.21" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f000e3de-c81c-4268-b1a7-05614573869b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+calcetín</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ed2ce96f-e1b7-4a40-aad0-84405f0cebe7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="71607d46-0766-4aa7-85a6-5198aa8c888b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +calcetín 
\entryTyp root 
\gENG 
\gSPN 
\e +calcetín 
\c N0 
\mp +FinalC 
\ach calcetín / _# 
\ach calcetin / ~_# 
\akh calcetín / _# 
\akh calcetin / ~_# 
\acl calcetín / _# 
\acl calcetin / ~_# 
\akl calcetín / _# 
\akl calcetin / ~_# 
\ame calcetín / _# 
\ame calcetin / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="c0134bc6-815d-4de1-97eb-0591be49bd2a" ownerguid="31a7ec5f-da68-429d-99c9-6cf84807ddfb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gather</AUni> -<AUni ws="es">juntar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="278154d8-639f-45ca-afbb-6908c7c2361e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c01442d9-7a0d-41b5-9fbf-5f78c8d5999a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chanquis</AUni> -<AUni ws="qvm-x-acl">chanquis</AUni> -<AUni ws="qvm-x-akh">chankis</AUni> -<AUni ws="qvm-x-akl">chankis</AUni> -<AUni ws="qvm-x-ame">chankis</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chankis</AUni> -<AUni ws="qvm-x-acl">*chankis</AUni> -<AUni ws="qvm-x-akh">*chankis</AUni> -<AUni ws="qvm-x-akl">*chankis</AUni> -<AUni ws="qvm-x-ame">*chankis</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.274" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fcedc113-5e88-4077-a27d-7e79f9dd0b84" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chankis</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="451e960e-0cdf-4349-a4fb-6004c3b83a07" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="99ef8643-6b78-4ab0-b284-09c213462ff5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chankis 
\entryTyp root 
\gENG sparrow 
\gSPN gorrión 
\e *chankis 
\c N0 
\mp +FinalC 
\ach chanquis 
\akh chankis 
\acl chanquis 
\akl chankis 
\ame chankis</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="c016bd4e-6888-402f-9ed1-91de1edb8040" ownerguid="38702665-019c-4c2f-afa1-5f62aadc81bd"> -<Form> -<AUni ws="qvm-x-ach">ministru; ministro</AUni> -<AUni ws="qvm-x-acl">ministru; ministru; ministro</AUni> -<AUni ws="qvm-x-akh">ministru; ministro</AUni> -<AUni ws="qvm-x-akl">ministru; ministru; ministro</AUni> -<AUni ws="qvm-x-ame">ministru; ministro</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="c01bbcef-7d89-4753-bafd-3a7f23648982" ownerguid="101c16f8-ec76-4ec7-895a-fd814fef51dd"> -<Abbreviation> -<AUni ws="en">2.5.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.47" /> -<DateModified val="2022-9-23 16:55:8.47" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to people who habitually take care of the sick and injured, such as those who do it for a living.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Doctor, nurse</AUni> -</Name> -<OcmCodes> -<Uni>759 Medical Personnel</Uni> -</OcmCodes> -<Questions> -<objsur guid="69723fd8-8056-4ef0-9303-46d81140c435" t="o" /> -<objsur guid="5bb78c58-bd21-4487-883a-70b8236291c8" t="o" /> -<objsur guid="07e9830c-30a4-4565-9d92-fcd443fa576c" t="o" /> -<objsur guid="165f1fde-cf7a-4519-b023-448cb8c79c3c" t="o" /> -<objsur guid="60436817-2134-4f3f-9f96-4ed9fdec64ab" t="o" /> -<objsur guid="d171842e-dbe9-4f72-9e2f-c2c5273b2123" t="o" /> -<objsur guid="1fb4e021-81b1-4606-92ae-e980b7686554" t="o" /> -<objsur guid="e1eea6d8-ebb6-40f7-9935-0a270472ac15" t="o" /> -<objsur guid="c74f139f-521b-4f45-b2ba-b271c639759b" t="o" /> -<objsur guid="9618ab74-6a1a-4639-b3c3-34898e7c846d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="c01d8a5a-3f39-4061-9da5-f37d95177dee"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">carga</AUni> -<AUni ws="qvm-x-acl">carga</AUni> -<AUni ws="qvm-x-akh">carga</AUni> -<AUni ws="qvm-x-akl">carga</AUni> -<AUni ws="qvm-x-ame">carga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cargar.1</AUni> -<AUni ws="qvm-x-acl">+cargar.1</AUni> -<AUni ws="qvm-x-akh">+cargar.1</AUni> -<AUni ws="qvm-x-akl">+cargar.1</AUni> -<AUni ws="qvm-x-ame">+cargar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.62" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b28648a5-419b-4fe5-a5d7-0f68ab346398" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cargar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="12d991ff-96b9-48ce-aa71-88f7305d6e6f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="107966b3-76a1-4f1e-a259-f2950179fbef" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cargar.1 
\entryTyp root 
\gENG load 
\gSPN cargar 
\e +cargar.1 
\c V2 
\ach carga 
\akh carga 
\acl carga 
\akl carga 
\ame carga 
\mcc +cargar.1 / _ PST / _ [ben] / _ REF / _ REFDIR / _ REL / _ 1FUT2 / _ NOM / _ [prtall] / _ UP / _ INTER / _ INSTL1 / _PNCT1 / _ AFAR / _ NMN / _ IMPFV1 / _ IN2 / _ ADVSS1.2 
\mcc +cargar.1 / ~_ 3 
\mcc +cargar.1 / ~_ REF NMN</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="c01da0bc-800f-4854-8120-ab307d60a5d6" ownerguid="f9308afb-73bc-4444-a6bd-1a762dd98cdd"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">GEN 20.12 Panë kaytaqa panëmi kaykan. Itsanqa papänëpa tsuripakuyninmi. Kananqa warmënami kaykan.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="c020ab95-454f-412a-b628-067dd431caa6" ownerguid="d8b1a547-3592-41b4-b2dd-a7994b7357f4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">g</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">g</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">q</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">q</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">q</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7feef4b7-a285-4201-a3a4-057f77618b78" t="r" /> -</Morph> -<Msa> -<objsur guid="964f8962-17d5-4738-8902-97236137c419" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="c025bb74-43d6-462e-8199-f278e7858330" ownerguid="7f1dfb68-bf07-472d-a481-b802d2591ca6"> -<ExampleWords> -<AUni ws="en">surgeon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) Who does the operation?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c027cfb1-00ee-4472-90ca-db53e5ab8fc4" ownerguid="0d1d15dc-d2d2-44dd-938a-816344e4a078"> -<Form> -<AUni ws="qvm-x-ach">uli</AUni> -<AUni ws="qvm-x-acl">uli; ule</AUni> -<AUni ws="qvm-x-akh">uli</AUni> -<AUni ws="qvm-x-akl">uli; ule</AUni> -<AUni ws="qvm-x-ame">uli</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="c029eed8-2ec0-4f6f-aa22-3a066bb23ea6" ownerguid="265f5645-94cb-485c-8bf9-0a3ab2354f63"> -<Abbreviation> -<AUni ws="en">9.6.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that indicate that you are adding another thought to a previous thought. Words in this domain may indicate a variety of relationships between words, phrases, clauses, or sentences. For instance the words may join two clauses that are the same except that the subjects are different, or the objects are different, or the verbs are different.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89Q Addition</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">And, also</AUni> -</Name> -<Questions> -<objsur guid="1b40a824-0735-429b-a008-a354cfe5d5ce" t="o" /> -<objsur guid="45e44918-e6f5-4e16-905f-d52aad4ca756" t="o" /> -<objsur guid="cbdbe2ef-2af7-431c-ae44-3a99b8072ae8" t="o" /> -<objsur guid="a9fde0ed-6869-4458-a354-d1fee72d43d6" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="c02e71c2-110f-40e7-b09d-a4f830eab45f" ownerguid="cd01db6c-8aa6-42d1-93ac-05e81a8be523"> -<ExampleWords> -<AUni ws="en">dining room, restaurant, banquet hall, serving line, buffet, soup line</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) Where is food served?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c02e9b48-7a05-46bc-9157-c0933f8e850f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa:ri</AUni> -<AUni ws="qvm-x-acl">pa:ri; pa:re</AUni> -<AUni ws="qvm-x-akh">pa:ri</AUni> -<AUni ws="qvm-x-akl">pa:ri; pa:re</AUni> -<AUni ws="qvm-x-ame">pa:ri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pa:ri</AUni> -<AUni ws="qvm-x-acl">*pa:ri</AUni> -<AUni ws="qvm-x-akh">*pa:ri</AUni> -<AUni ws="qvm-x-akl">*pa:ri</AUni> -<AUni ws="qvm-x-ame">*pa:ri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.719" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0e2c584a-e0a6-427d-b053-9de276ce5d82" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pa:ri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6c5b4bfd-bd0f-40be-9c25-066f9a1a5be8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4e7a9c6d-5563-46e3-8d29-02a541d349fb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pa:ri 
\entryTyp root 
\gENG fly 
\gSPN volar 
\e *pa:ri 
\c V1 
\mp +FinalI 
\ach pa:ri 
\akh pa:ri 
\acl pa:ri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pa:re +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pa:ri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pa:re +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pa:ri</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="c030a690-0464-414c-80f4-417537b5848f" ownerguid="386b1f9e-33b6-46f3-bc2d-6b50758b82f5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c030e559-adb9-4ae9-8053-0c187cd49a60" ownerguid="bc11b8e2-72b1-42f6-a42f-06ed287f248b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sack</AUni> -<AUni ws="es">costal</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="496ba683-1f62-422b-af0d-f71f5a921b6f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c0315386-36c1-429a-ad69-a66d97b9f98b" ownerguid="c1870e14-5161-4955-8284-39fb7bae2274"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">female.kid</AUni> -<AUni ws="es">chiva</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="997c1ed8-d90e-4137-9ea3-ec42e85cfcb7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c038b0f7-8d34-4f13-9d9f-fff06ac936a4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">laque:sa</AUni> -<AUni ws="qvm-x-acl">laque:sa</AUni> -<AUni ws="qvm-x-akh">laque:sa</AUni> -<AUni ws="qvm-x-akl">laque:sa</AUni> -<AUni ws="qvm-x-ame">laque:sa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+llaki+eza</AUni> -<AUni ws="qvm-x-acl">+llaki+eza</AUni> -<AUni ws="qvm-x-akh">+llaki+eza</AUni> -<AUni ws="qvm-x-akl">+llaki+eza</AUni> -<AUni ws="qvm-x-ame">+llaki+eza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.124" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d294848e-1992-45f1-9d5b-befc07aa4b6a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+llaki+eza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ea17aee2-ff10-44a0-86a4-957ec2af2bd8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6fed0233-6c30-424b-9105-e22ba4d49b67" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +llaki+eza 
\entryTyp root 
\gENG sadness 
\gSPN tristeza 
\e +llaki+eza 
\c N0 
\ach laque:sa 
\akh laque:sa 
\acl laque:sa 
\akl laque:sa 
\ame laque:sa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="c039b2f0-c4e4-4c8a-90c6-0bf91c291ff7" ownerguid="a77b6825-41c2-4f04-9864-8a99f0ed10b3"> -<Form> -<AUni ws="qvm-x-ach">gasagläwa</AUni> -<AUni ws="qvm-x-acl">gasagläwa</AUni> -<AUni ws="qvm-x-akh">qasaqläwa</AUni> -<AUni ws="qvm-x-akl">qasaqläwa</AUni> -<AUni ws="qvm-x-ame">qasaqläwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="c03b522c-63ca-40a9-8286-d70f0806d805" ownerguid="f1092161-733a-4873-8885-7df06f52421f"> -<Form> -<AUni ws="qvm-x-ach">cho</AUni> -<AUni ws="qvm-x-acl">cho</AUni> -<AUni ws="qvm-x-akh">cho</AUni> -<AUni ws="qvm-x-akl">cho</AUni> -<AUni ws="qvm-x-ame">chaw</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="8378f21c-cf54-437a-9d41-a303c764b326" t="r" /> -</PhoneEnv> -</rt> -<rt class="LexSense" guid="c03b535d-57db-4d84-b20f-a092848b6521" ownerguid="22439507-37c3-4c61-b620-2e5e1cdd0319"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="4313561b-583a-4bab-b86a-394b53d9b31a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c03c8f95-5dcc-46fa-bad6-9d022c103215" ownerguid="32da55f7-a216-468e-9680-01ef7ea68a52"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="c03d34f5-d28b-4ef1-97c7-91e2881d303d" ownerguid="9704680f-9d20-4e28-a598-ca4f17b49543"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="c04283f0-8fcb-4e0e-82c7-6402dcd361ec" ownerguid="c26fdcd4-5ead-4eb0-8bd0-ebf01e06e4e6"> -<Form> -<AUni ws="qvm-x-ach">cedru; cedro</AUni> -<AUni ws="qvm-x-acl">cedru; cedru; cedro</AUni> -<AUni ws="qvm-x-akh">cedru; cedro</AUni> -<AUni ws="qvm-x-akl">cedru; cedru; cedro</AUni> -<AUni ws="qvm-x-ame">cedru; cedro</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c045d028-e023-4455-9d6a-15acaa1fc61e" ownerguid="b4e9a00e-70ab-4ccf-a837-07e02f91712a"> -<Form> -<AUni ws="qvm-x-ach">queja</AUni> -<AUni ws="qvm-x-acl">queja</AUni> -<AUni ws="qvm-x-akh">queja</AUni> -<AUni ws="qvm-x-akl">queja</AUni> -<AUni ws="qvm-x-ame">queja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="c0470245-8e11-4a7e-afe3-9cff2df0afb3" ownerguid="71708d92-1d5b-4b5a-af2f-ba11a0941d11"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">give</AUni> -<AUni ws="es">dar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="34251e95-3878-4360-8a1f-df247959a619" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c04bad9f-ac61-4a2f-bdb2-9a05bae18f02" ownerguid="3c404755-b77f-4de9-842b-d323af1fd1ca"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="c0540d0b-c4bf-4319-9525-a3bdefc5505d" ownerguid="d2981cc1-0ce5-43b9-983a-d2c472277b4e"> -<Form> -<AUni ws="qvm-x-ach">caramëlus</AUni> -<AUni ws="qvm-x-acl">caramëlus</AUni> -<AUni ws="qvm-x-akh">caramëlus</AUni> -<AUni ws="qvm-x-akl">caramëlus</AUni> -<AUni ws="qvm-x-ame">caramëlus</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c0543870-4232-464d-8645-36f15a6cbe90"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">hurra</AUni> -<AUni ws="qvm-x-acl">hurra</AUni> -<AUni ws="qvm-x-akh">hurra</AUni> -<AUni ws="qvm-x-akl">hurra</AUni> -<AUni ws="qvm-x-ame">hurra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hurrar</AUni> -<AUni ws="qvm-x-acl">+hurrar</AUni> -<AUni ws="qvm-x-akh">+hurrar</AUni> -<AUni ws="qvm-x-akl">+hurrar</AUni> -<AUni ws="qvm-x-ame">+hurrar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.782" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="671c8fee-659b-4482-8cff-e5734d3713a6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hurrar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b505f40d-9c51-4cd5-8963-13a6d54df104" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bd17c548-5b6f-4c09-8255-6c618f6bd600" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hurrar 
\entryTyp root 
\gENG cheer 
\gSPN hurrar 
\e +hurrar 
\c V1 
\ach hurra 
\akh hurra 
\acl hurra 
\akl hurra 
\ame hurra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c054ca9f-29c6-4947-b81c-ffdaad9af117" ownerguid="1017cbc3-0dfb-4930-9881-28f96784035c"> -<ExampleWords> -<AUni ws="en">hurry up, speed up, pick up speed, increase your speed, accelerate, acceleration, (its) speed rose, step on it, step it up, snap it up, pick up the pace, give it some gas, look lively, quicken</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to moving more quickly?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="c05bf8c3-78f2-4ec5-b0d7-32d4963a5794" ownerguid="ac9ee84f-f0c7-48b3-8e5a-b4c967112394"> -<Abbreviation> -<AUni ws="en">8.3.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.619" /> -<DateModified val="2022-9-23 16:55:8.619" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that mark the material out of which something has been made.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89Y Substance</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Made of, material</AUni> -</Name> -<Questions> -<objsur guid="9c0fc5ca-81ef-402f-bed3-da887c64235e" t="o" /> -<objsur guid="4f8a829e-3505-44c4-98f4-ab6f1347e22c" t="o" /> -<objsur guid="269c801f-c5a2-4b2c-b0dc-920825a0afb3" t="o" /> -<objsur guid="eaaaaca4-72fd-49ca-9371-e8a32f5d461c" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="e86364ac-6fa1-4aad-a6c1-068d56b6a1f1" t="o" /> -<objsur guid="16ee1e09-27ad-48c5-aa07-6933ecbbc716" t="o" /> -<objsur guid="314c8fea-4bdb-4bc8-ab67-a26a9c5abbd4" t="o" /> -<objsur guid="6c305af5-cff5-4f7f-bd89-040d4c265355" t="o" /> -<objsur guid="47f170eb-5f1d-49a5-85bb-240047f392c0" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="c05d5cc2-957d-435a-a4ff-b82e33f41328" ownerguid="99b5b80a-a2d6-4820-adfc-1da72528c272"> -<ExampleWords> -<AUni ws="en">like-minded, be on the same wavelength, be in tune with, be in harmony</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to thinking the same as someone else?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c05e4d92-5154-4cf9-846b-0af3dde4a279"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lla:vi; lla:vi</AUni> -<AUni ws="qvm-x-acl">lla:vi; lla:vi; lla:ve</AUni> -<AUni ws="qvm-x-akh">lla:vi; lla:vi</AUni> -<AUni ws="qvm-x-akl">lla:vi; lla:vi; lla:ve</AUni> -<AUni ws="qvm-x-ame">lla:vi; lla:vi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+llave</AUni> -<AUni ws="qvm-x-acl">+llave</AUni> -<AUni ws="qvm-x-akh">+llave</AUni> -<AUni ws="qvm-x-akl">+llave</AUni> -<AUni ws="qvm-x-ame">+llave</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.174" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2d50fa31-b6fa-49ce-82b3-520da673b74d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+llave</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="698fdfe5-8c0a-477c-a0bb-41481a5ee224" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="57f84cd9-73d9-4f61-8c79-b09d59bef1a1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +llave 
\entryTyp root 
\gENG key 
\gSPN llave 
\e +llave 
\c N0 
\mp +FinalI 
\ach lla:vi / _# 
\ach lla:vi / ~_# 
\akh lla:vi / _# 
\akh lla:vi / ~_# 
\acl lla:vi / _# 
\acl lla:vi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lla:ve +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lla:vi / _# 
\akl lla:vi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lla:ve +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lla:vi / _# 
\ame lla:vi / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c05ee9de-72d0-432c-99da-9caa6f0d46af" ownerguid="f0e68d2f-f7b3-4722-80a4-8e9c5638b0d4"> -<ExampleWords> -<AUni ws="en">review, revise (British)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to studying something a second time?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c061ea41-ef33-4f4b-ac25-6acc00481989" ownerguid="ef8b5b4a-2152-48f0-9967-e0ca3b5790f5"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c06272d0-863e-4e70-8c54-b7cebc428cf7" ownerguid="cf543d5c-1767-4b55-b55e-37fac2c65f66"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">huge</AUni> -<AUni ws="es">tremendo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="65a3cdf0-0537-449a-9020-16a8be564c5b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c067559d-746e-41df-a6e0-5fbfb7155136" ownerguid="61274b35-6a9f-4a70-b385-36d783abf631"> -<Form> -<AUni ws="qvm-x-ach">wara</AUni> -<AUni ws="qvm-x-acl">wara</AUni> -<AUni ws="qvm-x-akh">wara</AUni> -<AUni ws="qvm-x-akl">wara</AUni> -<AUni ws="qvm-x-ame">wara</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c068cc91-98aa-4eb6-8d0d-061255d89882" ownerguid="d0de0fe3-cb05-4d8b-9809-4ffb92099fdb"> -<Form> -<AUni ws="qvm-x-ach">liperia</AUni> -<AUni ws="qvm-x-acl">liperia</AUni> -<AUni ws="qvm-x-akh">liperia</AUni> -<AUni ws="qvm-x-akl">liperia</AUni> -<AUni ws="qvm-x-ame">liperia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c069c626-85c3-4c8a-9f63-bfeaf1bd9c8f" ownerguid="9b3bba1a-cf29-45b5-9bf3-9478d5180999"> -<Form> -<AUni ws="qvm-x-ach">carä</AUni> -<AUni ws="qvm-x-acl">carä</AUni> -<AUni ws="qvm-x-akh">carä</AUni> -<AUni ws="qvm-x-akl">carä</AUni> -<AUni ws="qvm-x-ame">carä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c06c7749-3b2d-4ffa-8453-adcd5cecc668" ownerguid="6277c1c8-ab85-4faa-af84-2ea34fad2b07"> -<Form> -<AUni ws="qvm-x-ach">noviu; novio</AUni> -<AUni ws="qvm-x-acl">noviu; noviu; novio</AUni> -<AUni ws="qvm-x-akh">noviu; novio</AUni> -<AUni ws="qvm-x-akl">noviu; noviu; novio</AUni> -<AUni ws="qvm-x-ame">noviu; novio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c06db647-3e2f-4385-a3a7-623d87b7a100" ownerguid="b14db9f4-5e1d-4a2b-bec0-0d6bcb5b1a31"> -<ExampleWords> -<AUni ws="en">fall, drop, fall on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to falling?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c06ddaea-279b-4e88-8f6c-ebdc3502ba85" ownerguid="e7caa24f-155d-47cd-946d-cc0d06dfc764"> -<ExampleWords> -<AUni ws="en">love (n), adoration, affection, compassion, concern, devotion, fondness, goodwill, attachment, kindness, solicitude, sympathy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the feeling of love?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c0719f6a-1765-4cc4-815c-ac3bce98acd0" ownerguid="4415f908-b544-436b-a241-784865c36719"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="c071a407-0b36-47a0-bb9b-204c44382e6d" ownerguid="35da8e1e-d22b-422e-a143-2dfd31e96439"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="c0760bba-2f62-4b2a-8c60-06e4313fe7a3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">piti</AUni> -<AUni ws="qvm-x-acl">piti; piti; pite</AUni> -<AUni ws="qvm-x-akh">piti</AUni> -<AUni ws="qvm-x-akl">piti; piti; pite</AUni> -<AUni ws="qvm-x-ame">piti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*piti.n</AUni> -<AUni ws="qvm-x-acl">*piti.n</AUni> -<AUni ws="qvm-x-akh">*piti.n</AUni> -<AUni ws="qvm-x-akl">*piti.n</AUni> -<AUni ws="qvm-x-ame">*piti.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.861" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="79c08e8f-beee-4fb8-8bc8-f94d3078de78" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*piti.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c802cda2-eaec-4768-af67-bd1b815c5da0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="917db51d-74f9-4a3b-8b2b-1389e3c13d6b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *piti.n 
\entryTyp root 
\gENG potato.storage 
\gSPN ? 
\e *piti.n 
\c N0 
\mp +FinalI 
\ach piti 
\akh piti 
\acl piti / _# 
\acl piti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pite +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl piti / _# 
\akl piti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pite +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame piti 
\mcc *piti.n / ~_ PRT2</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="c0768da3-3732-4f0e-841a-1d884e9492fb" ownerguid="fe2136a5-5025-4394-b6d7-29b78f480494"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aru</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aru; aro</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aru</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aru; aro</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aru</Run> -</AStr> -</Form> -<Morph> -<objsur guid="0820878f-b19d-48b7-968b-c27e9c3773df" t="r" /> -</Morph> -<Msa> -<objsur guid="32de04f0-1251-40ea-97c7-b30d30668c9a" t="r" /> -</Msa> -<Sense> -<objsur guid="089069c9-b537-468b-af57-dfcdd574ebbc" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="c07e9464-e8c1-4e36-b357-63361d6afde1" ownerguid="f37f3a4f-e1e2-4ac2-b4b3-9c02223e6dcf"> -<Form> -<AUni ws="qvm-x-ach">serëna</AUni> -<AUni ws="qvm-x-acl">serëna</AUni> -<AUni ws="qvm-x-akh">serëna</AUni> -<AUni ws="qvm-x-akl">serëna</AUni> -<AUni ws="qvm-x-ame">serëna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="c07f11d3-2cf0-4850-95e0-934525bdca4a" ownerguid="44798d07-57ef-4356-a81c-13cb8eb3e40b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ee1f813e-b2c9-44be-a5ee-2e0d54008df1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c08014b2-4262-43da-9dd5-8a4db5deac1e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ca:pa</AUni> -<AUni ws="qvm-x-acl">ca:pa</AUni> -<AUni ws="qvm-x-akh">ca:pa</AUni> -<AUni ws="qvm-x-akl">ca:pa</AUni> -<AUni ws="qvm-x-ame">ca:pa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+capa</AUni> -<AUni ws="qvm-x-acl">+capa</AUni> -<AUni ws="qvm-x-akh">+capa</AUni> -<AUni ws="qvm-x-akl">+capa</AUni> -<AUni ws="qvm-x-ame">+capa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.490" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="efddafa0-1c6d-45e8-8597-54361be1f044" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+capa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="40d3fe94-d6f0-4957-9d5d-19207821c6a9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4c4a9eb0-14ab-45ad-8c1c-cef9d8963279" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +capa 
\entryTyp root 
\gENG cape 
\gSPN capa 
\e +capa 
\c N0 
\ach ca:pa 
\akh ca:pa 
\acl ca:pa 
\akl ca:pa 
\ame ca:pa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c0824732-7426-4b9d-bd26-e83f2ac3ff27" ownerguid="a4958dd9-03cc-4863-ab76-cd0682060cb0"> -<ExampleWords> -<AUni ws="en">praiseworthy, commendable, commendatory, creditable, laudable, laudatory</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that people praise?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c08325fe-9e40-4b8f-a07b-fc9e5201d768" ownerguid="f545e3a3-5c07-42d5-8796-216271c338c5"> -<Form> -<AUni ws="qvm-x-ach">näni</AUni> -<AUni ws="qvm-x-acl">näni; näni; näne</AUni> -<AUni ws="qvm-x-akh">näni</AUni> -<AUni ws="qvm-x-akl">näni; näni; näne</AUni> -<AUni ws="qvm-x-ame">näni</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="c0890e46-90e8-4364-a82a-70f169c97b59" ownerguid="86787a82-377f-445c-b6b1-9b1c136d2242"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9ed53efa-7278-448e-ace4-39f8950dde9e" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">pelican</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="465a437e-b3d8-4d5c-972c-2a490dd45e30" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c08a8910-7e18-45e7-98b6-b463e34ba194" ownerguid="962cb994-0183-4ac5-94b2-82a33f1d64e4"> -<ExampleWords> -<AUni ws="en">lubricate, lubrication, lube, oil (v), anoint, rub, salve, slick, smear, grease (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to putting oil on something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c08cd523-eb7c-485a-9a60-b39faeb9ea21" ownerguid="a40ea667-1d58-4511-8f02-0ce11a010bfa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dye</AUni> -<AUni ws="es">anilina</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e6391ac1-f4f8-4f32-9899-7a0a6048f542" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c08f95ae-06c0-448c-beee-e391713f47a1" ownerguid="cfe9b0c6-238f-495b-8a73-709a6c2e551e"> -<Form> -<AUni ws="qvm-x-ach">toldu; toldo</AUni> -<AUni ws="qvm-x-acl">toldu; toldu; toldo</AUni> -<AUni ws="qvm-x-akh">toldu; toldo</AUni> -<AUni ws="qvm-x-akl">toldu; toldu; toldo</AUni> -<AUni ws="qvm-x-ame">toldu; toldo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c0905a54-4608-40db-931f-a57dead3d197" ownerguid="721e7782-9add-41fa-a7cf-659d5ca33926"> -<ExampleWords> -<AUni ws="en">card game, gambling game, board game</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of games are there?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c0907427-7899-4279-8b98-04a7bfa58ed5" ownerguid="34f2be49-cb77-4299-bb2e-9308d0278797"> -<Form> -<AUni ws="qvm-x-ach">muñä</AUni> -<AUni ws="qvm-x-acl">muñä</AUni> -<AUni ws="qvm-x-akh">muñä</AUni> -<AUni ws="qvm-x-akl">muñä</AUni> -<AUni ws="qvm-x-ame">muñä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c09093f5-da6e-4172-a8e4-d84ff662c3e4" ownerguid="c8a9214e-aa92-441e-9691-0a0e48cacc83"> -<Form> -<AUni ws="qvm-x-ach">ismu</AUni> -<AUni ws="qvm-x-acl">ismu; ismu; ismo</AUni> -<AUni ws="qvm-x-akh">ismu</AUni> -<AUni ws="qvm-x-akl">ismu; ismu; ismo</AUni> -<AUni ws="qvm-x-ame">ismu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c092d1ae-eb91-47c7-98ec-67f28d86c10b" ownerguid="250a52e4-ede0-427d-8382-46a5742d4f96"> -<ExampleWords> -<AUni ws="en">mental hospital, psychiatric hospital, institution, asylum</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a hospital for people who are mentally ill?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c095d4df-2f04-4ac4-a46c-ccb64bb29ca3" ownerguid="4e44f90b-be98-464b-9e06-b89f51b01ec6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">take.out</AUni> -<AUni ws="es">sacar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="711f8147-5335-4634-8b24-62c9a4a069df" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c09875ae-6524-41c5-a718-a3ebce2d0037" ownerguid="82e4394a-2f58-4356-8d9c-1ad9dbe95293"> -<ExampleWords> -<AUni ws="en">shiver, be blue with cold, goose pimples, goosebumps, goose flesh, someone's teeth are chattering, frostbite, frostbitten, freeze to death, die of cold</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What happens to people when they get cold?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c099e592-cf26-491b-b236-fbb55a29481a" ownerguid="f011d811-a0c5-4c64-8527-024a129dfaf7"> -<Form> -<AUni ws="qvm-x-ach">quiptu</AUni> -<AUni ws="qvm-x-acl">quiptu; quipto</AUni> -<AUni ws="qvm-x-akh">kiptu</AUni> -<AUni ws="qvm-x-akl">kiptu; kipto</AUni> -<AUni ws="qvm-x-ame">kiptu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c09a2433-5eae-4752-86cf-064555eeef47" ownerguid="3d10e03a-7902-458d-9c45-938da103d639"> -<ExampleWords> -<AUni ws="en">hollow, cavernous, inflated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is hollow?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="c09cb158-4072-4e36-8139-92305b61d32c" ownerguid="7cc0e682-7a75-4947-af9f-0d512a057ae8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">gueshya</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">gueshya</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qeshya</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qeshya</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qishya</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b15ff554-60d6-4dbd-a7e1-e32052d0ab50" t="r" /> -</Morph> -<Msa> -<objsur guid="841a6afc-47f6-495e-8e85-151fe538d8c2" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="c09d5759-1c89-46af-b5c0-e8b5430cc80f" ownerguid="0ac81210-20ff-4a89-948f-5d154668f05c"> -<ExampleWords> -<AUni ws="en">independent, self-reliant, self-sufficient, individualist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a person who does things without other people's help?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="c09eedd3-c4e1-4cf9-b6d1-a01624c6426a" ownerguid="bbb897b5-f09b-4263-9f81-826ca61084f1"> -<Abbreviation> -<AUni ws="en">5.6.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.337" /> -<DateModified val="2022-9-23 16:55:8.337" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to wiping dirt off of things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Wipe, erase</AUni> -</Name> -<Questions> -<objsur guid="5fecc1f5-7873-48d7-a3e5-3e7a8f24e9ca" t="o" /> -<objsur guid="7dbff6bb-ba05-4ab4-9e83-aa539faf70b7" t="o" /> -<objsur guid="f0bd6ba1-a57a-4aa8-afad-e3961a9e05f9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="c0a0e0ed-7657-44b5-8941-bd317b03737d" ownerguid="2155198b-ec9f-4a49-a77b-daa69776d026"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c0a10393-fa11-42ad-be83-3029235bb776" ownerguid="49c525b3-2163-48e1-b3bd-57e5cdc486a4"> -<ExampleWords> -<AUni ws="en">muscular, firm, flabby, fleshy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe someone's flesh or muscles?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c0a379b8-5709-4ce0-a753-b883e4f007b4" ownerguid="44003c2e-c9c2-42c8-9ac1-8b40c11ba7f4"> -<Form> -<AUni ws="qvm-x-ach">lamu</AUni> -<AUni ws="qvm-x-acl">lamu; lamo</AUni> -<AUni ws="qvm-x-akh">lamu</AUni> -<AUni ws="qvm-x-akl">lamu; lamo</AUni> -<AUni ws="qvm-x-ame">lamu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c0a625c2-70e8-4d96-82f8-445289a50a3c" ownerguid="c8602dc5-5c91-480a-b5ce-1c82fe3da83a"> -<ExampleWords> -<AUni ws="en">tooth, incisor, canine tooth, molar, wisdom tooth, milk tooth, baby tooth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a tooth?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c0a67d43-5d34-4238-90b2-638acc817f11"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lantuy</AUni> -<AUni ws="qvm-x-acl">lantuy</AUni> -<AUni ws="qvm-x-akh">lantuy</AUni> -<AUni ws="qvm-x-akl">lantuy</AUni> -<AUni ws="qvm-x-ame">lantuy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llantuy</AUni> -<AUni ws="qvm-x-acl">*llantuy</AUni> -<AUni ws="qvm-x-akh">*llantuy</AUni> -<AUni ws="qvm-x-akl">*llantuy</AUni> -<AUni ws="qvm-x-ame">*llantuy</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.142" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7c7f1a11-e596-4f84-8eda-ae9126c60e0f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llantuy</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3df65933-9f5e-4015-81e3-c4f9336a0bbd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7534e46b-9c69-4ae3-bb9d-026ef1f875d9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llantuy 
\entryTyp root 
\gENG shade 
\gSPN sombra 
\e *llantuy 
\c N0 
\mp +FinalC 
\ach lantuy 
\akh lantuy 
\acl lantuy 
\akl lantuy 
\ame lantuy</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="c0a8228c-21da-4593-898a-c19aa9f6d2a3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cimientu; cimiento</AUni> -<AUni ws="qvm-x-acl">cimientu; cimientu; cimiento</AUni> -<AUni ws="qvm-x-akh">cimientu; cimiento</AUni> -<AUni ws="qvm-x-akl">cimientu; cimientu; cimiento</AUni> -<AUni ws="qvm-x-ame">cimientu; cimiento</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cimiento.n1</AUni> -<AUni ws="qvm-x-acl">+cimiento.n1</AUni> -<AUni ws="qvm-x-akh">+cimiento.n1</AUni> -<AUni ws="qvm-x-akl">+cimiento.n1</AUni> -<AUni ws="qvm-x-ame">+cimiento.n1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.120" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="039da850-abee-4e81-908d-d356478b999c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cimiento.n1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a8d542c4-32fa-402e-9ca8-4750a288ce32" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2e211d98-c6bb-45b2-9ff6-87ad2d243439" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cimiento.n1 
\entryTyp root 
\gENG foundation 
\gSPN cimiento 
\e +cimiento.n1 
\c N0 
\ach cimientu / ~_# 
\ach cimiento / _# 
\akh cimientu / ~_# 
\akh cimiento / _# 
\acl cimientu / ~_# 
\acl cimientu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cimiento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cimientu / ~_# 
\akl cimientu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cimiento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cimientu / ~_# 
\ame cimiento / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoAffixAllomorph" guid="c0a8d088-78b3-40e6-a4ea-e43393fea3a3" ownerguid="de332ef3-655b-40b5-829c-a551d40dec89"> -<Form> -<AUni ws="qvm-x-ach">shga</AUni> -<AUni ws="qvm-x-acl">shga</AUni> -<AUni ws="qvm-x-akh">shqa</AUni> -<AUni ws="qvm-x-akl">shqa</AUni> -<AUni ws="qvm-x-ame">shqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c0aa8c0b-6c53-4f4e-98d5-ccbee74d3f18" ownerguid="a72ca6f7-e389-408a-8276-fec4d60a3a56"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John <is> our new leader.; This <is> a pine tree.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">is</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something is being identified?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c0ab6e4b-f54e-4425-8c56-a8f1121018ac" ownerguid="872b9ebc-d4c4-4996-8697-733573023c14"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="c0accdbc-109f-4039-a5de-53187245b59d" ownerguid="7b077388-eb2c-422d-9f37-2e74c8f0f05c"> -<Form> -<AUni ws="qvm-x-ach">shansha; shanshä</AUni> -<AUni ws="qvm-x-acl">shansha; shanshä</AUni> -<AUni ws="qvm-x-akh">shansha; shanshä</AUni> -<AUni ws="qvm-x-akl">shansha; shanshä</AUni> -<AUni ws="qvm-x-ame">shansha; shanshä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c0b3bde0-1b06-4993-afe5-b6508eee86af" ownerguid="2855cda6-a031-46aa-bf3f-718d94374d46"> -<ExampleWords> -<AUni ws="en">storm of protest, outcry against, outcry over, public outcry, boycott</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to many people protesting?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c0b4b1cb-1f51-45fd-a133-b7a45929554c" ownerguid="22f423c5-8417-425e-bbf3-c99f5483d53e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">comprender</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="780659d4-93fc-420f-b245-e2be2d65bf1f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="c0b7f354-a75c-41d5-a489-ae2df6364d02" ownerguid="6f01b67c-33a0-4ed3-8205-f868e97a1a3a"> -<Abbreviation> -<AUni ws="en">7.2.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.516" /> -<DateModified val="2022-9-23 16:55:8.516" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to traveling by land.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Travel by land</AUni> -</Name> -<OcmCodes> -<Uni>490 Land Transport; 491 Highways and Bridges; 492 Animal Transport; 493 Vehicles; 494 Highway Transport; 495 Auxiliary Highway Services; 496 Railways; 497 Rail Transport; 498 Terminal Facilities; 499 Highway and Railway Construction</Uni> -</OcmCodes> -<Questions> -<objsur guid="c44bff05-e721-461e-bd7d-ee54181e8aca" t="o" /> -<objsur guid="b30540ee-f2e6-4418-86a8-2f11e786ac15" t="o" /> -<objsur guid="6b44375b-1c7a-4eb9-b45d-5889f7e28d30" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="1e102423-6167-486a-bfef-dad1c9cdf1eb" t="o" /> -<objsur guid="4d1ac5e6-dfe3-4643-b6e5-21649a01cce9" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="c0b7f50c-770f-4aa4-9533-c59c3da81414" ownerguid="03d900be-35b2-4a93-85f5-773b666cefb5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="c0b81647-2e6a-4716-9969-5010e8e43408"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ripi</AUni> -<AUni ws="qvm-x-acl">ripi; ripe</AUni> -<AUni ws="qvm-x-akh">ripi</AUni> -<AUni ws="qvm-x-akl">ripi; ripe</AUni> -<AUni ws="qvm-x-ame">ripi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ripi</AUni> -<AUni ws="qvm-x-acl">*ripi</AUni> -<AUni ws="qvm-x-akh">*ripi</AUni> -<AUni ws="qvm-x-akl">*ripi</AUni> -<AUni ws="qvm-x-ame">*ripi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.368" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="41badfbf-f512-4b98-a145-24e39d29624b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ripi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="419bc00a-43a7-46f5-a596-b8471401be6f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="52d535e0-e244-4d0d-9604-a034a41cd4c3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ripi 
\entryTyp root 
\gENG ring.bell 
\gSPN tocar.campana 
\e *ripi 
\c V2 
\mp +FinalI 
\ach ripi 
\akh ripi 
\acl ripi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ripe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ripi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ripe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ripi</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="c0ba37c6-6e48-4f70-adba-f6dac8f03c6d" ownerguid="fb6840e2-11f3-434c-bb10-e35bbe7d80f1"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="c0ba50a4-bc3b-4644-b48d-fc2e2f2fd233" ownerguid="e0e4dd0f-4743-4439-a6db-6e410ea088ca"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="c0baa614-75ee-47ac-b6c1-61909739c87f" ownerguid="c8424590-5304-4d1c-b5cf-fe919bdad89f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">amaranth</AUni> -<AUni ws="es">quinua</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="477adf0e-0d24-4fef-a863-9c1fb74ac4b6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c0bb993a-602d-4301-9975-0e73540b233a" ownerguid="cee30194-bacc-42d3-af9e-b5f97152781c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">straighten</AUni> -<AUni ws="es">derechar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="82a3ce6b-22e7-479a-802f-b3e073afd707" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiGloss" guid="c0bcfcc1-1d7a-4dd2-8bf4-2447b390d331" ownerguid="fe82422e-d33d-4920-85ea-62e3428e6576"> -<Form> -<AUni ws="en">very</AUni> -<AUni ws="es">mucho</AUni> -</Form> -</rt> -<rt class="LexEntry" guid="c0bdd8e0-ecb8-4016-9bfd-5373e9538f30"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chiccha; chicsha</AUni> -<AUni ws="qvm-x-acl">chiccha; chicsha</AUni> -<AUni ws="qvm-x-akh">chikcha; chiksha</AUni> -<AUni ws="qvm-x-akl">chikcha; chiksha</AUni> -<AUni ws="qvm-x-ame">chikcha; chiksha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*triktra</AUni> -<AUni ws="qvm-x-acl">*triktra</AUni> -<AUni ws="qvm-x-akh">*triktra</AUni> -<AUni ws="qvm-x-akl">*triktra</AUni> -<AUni ws="qvm-x-ame">*triktra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.107" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d63fc89b-62c9-43f5-9efb-1798a550de60" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*triktra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ff69764c-fc37-4a40-8b44-f51cbd61b242" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="881d8531-75f6-4a6f-8601-a06c51f65c7f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *triktra 
\entryTyp root 
\gENG tickle 
\gSPN hacer.cosquilla 
\e *triktra 
\c V2 
\cm *** ch *** 
\ach chiccha 
\ach chicsha 
\cm *** kh *** 
\akh chikcha 
\akh chiksha 
\cm *** cl *** 
\acl chiccha 
\acl chicsha 
\cm *** kl *** 
\akl chikcha 
\akl chiksha 
\cm *** me *** 
\ame chikcha 
\ame chiksha</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="c0beff90-4e3c-408f-bf88-98f0b056ac3b" ownerguid="4fb34e46-4d89-43b1-972b-4522f4e5a0d5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c0c23512-d12f-4fe4-a4d3-70aaef78ea92" ownerguid="c1c1dcb4-8fe5-43ac-9b91-b2b2bc33de5b"> -<ExampleWords> -<AUni ws="en">threat, menace, intimidation, terrorism, blackmail, extortion, warning</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the act of threatening or to what is said?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c0c5882c-ca60-492b-8a2b-6fdbc637e964" ownerguid="2e95bd1e-82f0-461d-8ca6-b5f1ce1fb180"> -<ExampleWords> -<AUni ws="en">elope</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to marrying secretly?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c0c6e239-2718-49e2-9e0e-4bd1a84dc9bb" ownerguid="8da299ce-1c69-47f8-aa99-dac4a6ebf1ed"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ear</AUni> -<AUni ws="es">oreja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c298c3e3-a2a2-4575-bb9a-70a039837cea" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c0c8e1e8-ea1d-4379-9544-08b3638a8684" ownerguid="848cf990-c481-4d0f-aad0-02d71da31ae4"> -<Form> -<AUni ws="qvm-x-ach">marmol</AUni> -<AUni ws="qvm-x-acl">marmol</AUni> -<AUni ws="qvm-x-akh">marmol</AUni> -<AUni ws="qvm-x-akl">marmol</AUni> -<AUni ws="qvm-x-ame">marmol</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c0cdd140-1306-4718-977b-5753756c8ec7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">en</AUni> -<AUni ws="qvm-x-acl">en</AUni> -<AUni ws="qvm-x-akh">en</AUni> -<AUni ws="qvm-x-akl">en</AUni> -<AUni ws="qvm-x-ame">en</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+en</AUni> -<AUni ws="qvm-x-acl">+en</AUni> -<AUni ws="qvm-x-akh">+en</AUni> -<AUni ws="qvm-x-akl">+en</AUni> -<AUni ws="qvm-x-ame">+en</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.457" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3700df16-3a05-4f8d-bbf6-ff0f480ddda2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+en</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="885061dd-355e-4c52-b486-b6c77e5d2eb2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f08f1818-2b42-4b81-a5a4-69da0c56e4c9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +en 
\entryTyp root 
\gENG in 
\gSPN en 
\e +en 
\c NOSUFF 
\ach en 
\akh en 
\acl en 
\akl en 
\ame en</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="c0ce86b5-dd49-41bf-8dfc-3a8ff8b6125c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gra:nu</AUni> -<AUni ws="qvm-x-acl">gra:nu; gra:nu; gra:no</AUni> -<AUni ws="qvm-x-akh">gra:nu</AUni> -<AUni ws="qvm-x-akl">gra:nu; gra:nu; gra:no</AUni> -<AUni ws="qvm-x-ame">gra:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+grano</AUni> -<AUni ws="qvm-x-acl">+grano</AUni> -<AUni ws="qvm-x-akh">+grano</AUni> -<AUni ws="qvm-x-akl">+grano</AUni> -<AUni ws="qvm-x-ame">+grano</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.629" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="864fad78-1210-4174-8b0c-f3e77481a2f9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+grano</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fdb061e7-6c49-4b38-b6bf-5900ecf9184a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fcac2a57-6745-43ea-b709-b275839602a1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +grano 
\entryTyp root 
\gENG bumpy 
\gSPN grano 
\e +grano 
\c N0 
\ach gra:nu 
\akh gra:nu 
\acl gra:nu / _# 
\acl gra:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gra:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl gra:nu / _# 
\akl gra:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl gra:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame gra:nu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="c0d08d72-d213-4b19-81a1-183cf3eab937"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wayna</AUni> -<AUni ws="qvm-x-acl">wayna</AUni> -<AUni ws="qvm-x-akh">wayna</AUni> -<AUni ws="qvm-x-akl">wayna</AUni> -<AUni ws="qvm-x-ame">wayna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wayna</AUni> -<AUni ws="qvm-x-acl">*wayna</AUni> -<AUni ws="qvm-x-akh">*wayna</AUni> -<AUni ws="qvm-x-akl">*wayna</AUni> -<AUni ws="qvm-x-ame">*wayna</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.617" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3e738725-24d9-424e-85aa-6130dd5cf4aa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wayna</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="17d6ce4f-9a6f-402c-92c2-ab3a79d3f8ff" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="766fcb32-d214-435d-a27f-fd45e806c64c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wayna 
\entryTyp root 
\gENG lover 
\gSPN amor 
\e *wayna 
\c N0 
\ach wayna 
\akh wayna 
\acl wayna 
\akl wayna 
\ame wayna</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="c0d227c6-2c25-4d4c-8e39-28f404b711a8" ownerguid="8315264a-c9b7-4b27-93d0-d0446bc78a1c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">needle</AUni> -<AUni ws="es">aguja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b8395b6c-b127-49a8-92be-cd39e3debd65" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c0d2b805-57fe-44f6-bda0-24ad7c780a7b" ownerguid="888e536c-c808-4be9-93af-d820bd655942"> -<Form> -<AUni ws="qvm-x-ach">ogshacasha</AUni> -<AUni ws="qvm-x-acl">ogshacasha</AUni> -<AUni ws="qvm-x-akh">oqshakasha</AUni> -<AUni ws="qvm-x-akl">oqshakasha</AUni> -<AUni ws="qvm-x-ame">uqshakasha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c0d32bc8-c3f3-4ad7-9830-eb1ebd9d3e36" ownerguid="28a68cea-9128-4d5c-8542-8df38c907310"> -<ExampleWords> -<AUni ws="en">free, at liberty, be out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe someone who has been set free?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c0d48291-741a-4542-86ed-0fd1b09e5cdc" ownerguid="66f0ef9a-0dcd-40ec-873a-65512053caf0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="f8e9fa7c-43bb-4aaf-940a-b2c2a5766b09" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="a29f2b2f-cc76-4fd4-9b7d-aa4abab71c51" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c0d68f53-b6a0-4c88-96c5-f467f8a18dfc" ownerguid="00269021-e1c4-474d-9dba-341d296bdac7"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">This child <was> first.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">be</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) In English 'Order' can be expressed by a 'be' clause with the 'Item' in the subject position.</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c0d744db-7744-4ab9-b135-7b2045f39e4f" ownerguid="4275df2e-d4f6-461a-9279-39e0712dc082"> -<ExampleWords> -<AUni ws="en">appearance, look, manifestation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the appearance of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c0d75b10-225b-44a5-8365-63707afb3a16" ownerguid="91f07f78-6bd9-4077-8958-df3a63f853ef"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="26a2f392-94ed-4bdb-bff1-46580070bbd1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c0d8c0ff-3cee-4f62-ba1f-fffdbde9f8b9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">centimu; céntimo</AUni> -<AUni ws="qvm-x-acl">centimu; centimu; centimo</AUni> -<AUni ws="qvm-x-akh">centimu; céntimo</AUni> -<AUni ws="qvm-x-akl">centimu; centimu; centimo</AUni> -<AUni ws="qvm-x-ame">centimu; céntimo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+céntimo</AUni> -<AUni ws="qvm-x-acl">+céntimo</AUni> -<AUni ws="qvm-x-akh">+céntimo</AUni> -<AUni ws="qvm-x-akl">+céntimo</AUni> -<AUni ws="qvm-x-ame">+céntimo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.112" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2a14efdb-10d2-46e8-8bc7-31629abd5f67" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+céntimo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="72f14ebf-2c51-47f7-8b43-1c380fb62d1e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ab0745e3-c71a-4ee2-ba19-cc25b3841b22" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +céntimo 
\entryTyp root 
\gENG 
\gSPN 
\e +céntimo 
\c N0 
\ach centimu / ~_# 
\ach céntimo / _# 
\akh centimu / ~_# 
\akh céntimo / _# 
\acl centimu / ~_# 
\acl centimu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl centimo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl centimu / ~_# 
\akl centimu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl centimo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame centimu / ~_# 
\ame céntimo / _# 
\i LUK 12.6 ¿Manacu pitsga pishgucunata ishcay centimulacho ranticun?</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="c0d903bf-6502-45dd-9dd8-cff7f022c696" ownerguid="c6c772af-7b6b-4393-b0da-5b4a329d3426"> -<Abbreviation> -<AUni ws="en">8.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.559" /> -<DateModified val="2022-9-23 16:55:8.559" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to counting--to say the numbers in order, or to use numbers to find an amount.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Count</AUni> -</Name> -<Questions> -<objsur guid="7de1e143-ae22-4ba7-ac67-e9640206eb0d" t="o" /> -<objsur guid="c7593744-cec4-4abb-b8c7-abd673e2c059" t="o" /> -<objsur guid="63af5f42-5a71-4449-9701-cbaa8561ddf4" t="o" /> -<objsur guid="166a25c9-61cb-4b39-b354-e792ba184d98" t="o" /> -<objsur guid="ed1e68d1-c3eb-43df-87d3-77d7e01b4065" t="o" /> -<objsur guid="19873fff-848b-4c68-8765-91952f6a3fe5" t="o" /> -<objsur guid="0473dcbf-61bb-46da-bb1c-249acf97636d" t="o" /> -<objsur guid="2b09b1f1-c948-4b87-9b90-fb2d67805ca5" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="8bdf4847-903b-4af6-9553-3cfab65de516" t="o" /> -<objsur guid="83899b19-8b39-4bf0-b124-4c6188569ec8" t="o" /> -<objsur guid="7cf6312e-f9f0-49e8-ae60-7677fac86c3f" t="o" /> -<objsur guid="57f07b5f-75bf-4565-b969-ce0adc0b50d4" t="o" /> -<objsur guid="7b17e304-9a3f-463f-8216-cd1e1e119e0e" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="c0e0617d-13f4-44ec-b0fb-15c071d4e57f" ownerguid="753a3f61-c380-483d-8c0a-588acdfbba17"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">oats</AUni> -<AUni ws="es">avena</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="229eb9bd-17e4-482a-aa26-2c12d563440c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c0e232e4-df59-4033-85e4-4c55de8720e1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ama</AUni> -<AUni ws="qvm-x-acl">ama</AUni> -<AUni ws="qvm-x-akh">ama</AUni> -<AUni ws="qvm-x-akl">ama</AUni> -<AUni ws="qvm-x-ame">ama</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ama</AUni> -<AUni ws="qvm-x-acl">*ama</AUni> -<AUni ws="qvm-x-akh">*ama</AUni> -<AUni ws="qvm-x-akl">*ama</AUni> -<AUni ws="qvm-x-ame">*ama</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.747" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e30c47d8-4625-4c21-a45f-58f85a1e8c4c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ama</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="43d1bf5f-8105-4ae5-ac43-5b7649c64552" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e887448e-059f-49a8-af98-33994fc95b54" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ama 
\entryTyp root 
\gENG do.not 
\gSPN ¡no! 
\e *ama 
\c ONSHEV 
\ach ama 
\akh ama 
\acl ama 
\akl ama 
\ame ama 
\mcc *ama / ~_ POL</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c0e57bc4-7435-4d63-a05c-a4183ad9bb28" ownerguid="fba27833-d6f1-4c36-ac39-28902b29261b"> -<ExampleWords> -<AUni ws="en">like, similar, alike, much the same, comparable, parallel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe two things that are similar?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c0e7f19b-2880-4641-a1ce-43287ed6aa1d" ownerguid="1b399fa1-e4f7-4d7b-a33e-3972b8b556e2"> -<ExampleWords> -<AUni ws="en">store, save, leftovers</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to storing food?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c0e8181f-561f-4ee4-998e-2d40e470e10b" ownerguid="eb329059-18b6-435f-a811-34f33f5e9990"> -<Form> -<AUni ws="qvm-x-ach">almidón; almidon</AUni> -<AUni ws="qvm-x-acl">almidón; almidon</AUni> -<AUni ws="qvm-x-akh">almidón; almidon</AUni> -<AUni ws="qvm-x-akl">almidón; almidon</AUni> -<AUni ws="qvm-x-ame">almidón; almidon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="c0ecce91-f94c-421f-8419-8bece4bc3a48" ownerguid="2cb38051-cb13-482b-9ac1-0d4eb2145410"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c0f01f85-c7fe-426e-976d-7a9b12285f3e" ownerguid="abab24dd-3897-4b19-a162-93d5230163a6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">braid</AUni> -<AUni ws="es">trensa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c64c250d-41cc-4558-acc1-12909206b57a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c0f2aa7e-a182-4ac5-ab1e-142872cc08e7" ownerguid="e4517880-aa2d-4977-b55a-dcb0b6d1f533"> -<ExampleWords> -<AUni ws="en">plain, average, ordinary</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe something or someone that is neither beautiful nor ugly?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="c0f4715e-55c9-4379-ab6f-ad561a5e7151" ownerguid="541dfa10-bf97-4713-a534-9cbcc7f66bc9"> -<Abbreviation> -<AUni ws="en">3.2.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.103" /> -<DateModified val="2022-9-23 16:55:8.103" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to believing that something is true.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>31F Believe To Be True; 31J Be a Believer, Christian Faith</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Believe</AUni> -</Name> -<Questions> -<objsur guid="8278ccfc-2bba-4167-8d3a-c9304efd135d" t="o" /> -<objsur guid="c39f483a-2b85-456b-931a-61ec99c1d357" t="o" /> -<objsur guid="2da8c387-06da-4e21-95e1-04a7e530e35b" t="o" /> -<objsur guid="0eb60765-f78f-4216-b94b-b72a65c999fb" t="o" /> -<objsur guid="5e31f7e2-16dd-4756-be1e-2e222a433396" t="o" /> -<objsur guid="e512b944-35ec-4ae0-a022-f63d81c5bb7f" t="o" /> -<objsur guid="3be6393e-5823-46cc-af78-38b5413569d0" t="o" /> -<objsur guid="5f039309-1849-4cc5-87f4-55d695e48c4b" t="o" /> -<objsur guid="2f0935dc-3f29-46d7-a07d-75230de3b17f" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="691bdba3-c216-4b42-877c-674bbdb517a7" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="c0f5223e-386e-40b7-b49c-a9c8f4de9b2a" ownerguid="2dac3ce5-e364-4f46-a877-c29b09e16999"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c0f8253c-7e2b-4d78-8572-5432cefb74de" ownerguid="f0e68d2f-f7b3-4722-80a4-8e9c5638b0d4"> -<ExampleWords> -<AUni ws="en">studious, inquisitive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe someone who likes to study?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c0f9d03f-3008-4aec-9a59-35959607af68" ownerguid="6d888d6e-b0e0-46f3-b77b-3d2adadbc77c"> -<Form> -<AUni ws="qvm-x-ach">chini</AUni> -<AUni ws="qvm-x-acl">chini; chine</AUni> -<AUni ws="qvm-x-akh">chini</AUni> -<AUni ws="qvm-x-akl">chini; chine</AUni> -<AUni ws="qvm-x-ame">chini</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="c0fa3fdd-414f-440c-a85b-014a532c6e3d" ownerguid="b4ef7c71-cc06-4916-a9ba-bd22743582c0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">complete</AUni> -<AUni ws="es">completar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="09cdb01e-a424-46e1-a306-caf3841c6378" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c100a8c8-2c13-4681-ad23-89b7125286dc" ownerguid="f59034ad-345b-4958-b94e-05dd822aee30"> -<Form> -<AUni ws="qvm-x-ach">eströfa</AUni> -<AUni ws="qvm-x-acl">eströfa</AUni> -<AUni ws="qvm-x-akh">eströfa</AUni> -<AUni ws="qvm-x-akl">eströfa</AUni> -<AUni ws="qvm-x-ame">eströfa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c1022ee1-4597-4e66-9021-c98cb2973af7" ownerguid="a2a3e21a-819c-4400-b2e6-e6c1a0a0ded3"> -<ExampleWords> -<AUni ws="en">rebuff (n), slight (n), snub (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something you do that shows you despise someone?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c102de4c-ea8e-45d1-8e11-84c5ce3b2b60"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fayna</AUni> -<AUni ws="qvm-x-acl">fayna</AUni> -<AUni ws="qvm-x-akh">fayna</AUni> -<AUni ws="qvm-x-akl">fayna</AUni> -<AUni ws="qvm-x-ame">fayna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+faena</AUni> -<AUni ws="qvm-x-acl">+faena</AUni> -<AUni ws="qvm-x-akh">+faena</AUni> -<AUni ws="qvm-x-akl">+faena</AUni> -<AUni ws="qvm-x-ame">+faena</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.528" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="60d27f73-7029-4fce-afb9-268cc76d8236" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+faena</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9e0ece3d-aec3-4e3e-b306-8d120b634128" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="95e6189c-873b-4d2d-834d-4fed699e25a6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +faena 
\entryTyp root 
\gENG public.works 
\gSPN faena 
\e +faena 
\c N0 
\ach fayna 
\akh fayna 
\acl fayna 
\akl fayna 
\ame fayna 
\i 1KI 9.15 Rey Salomónga faynatsiypami arutsergan 
\nd Tayta Diospa
\nd* templunta, quiquinpa palaciunta, patac cananpag Milo pergata y Jerusalén marcapa murällanta.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="c103d339-24f2-45c6-8539-d3c445e15c49" ownerguid="f02ae505-d6b7-4b30-9d97-8505d0d1a0c7"> -<Abbreviation> -<AUni ws="en">9.6.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.720" /> -<DateModified val="2022-9-23 16:55:8.720" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that are used to get someone's attention or direct the listener's attention to something. These may use a verb meaning 'look' or 'listen'. Some may be a word specifically referring to attention. Others may be a greeting. Others may be words that refer to non-verbal communication such as clearing your throat.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>91C Prompters of Attention</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Prompters of attention</AUni> -</Name> -<Questions> -<objsur guid="53a2f596-689e-451f-9b8b-9fef906a9540" t="o" /> -<objsur guid="8f2c6946-c11b-403b-9a7c-6ff295d6cb25" t="o" /> -<objsur guid="c6082ee4-b7c3-4c15-bca0-360b61757b2d" t="o" /> -<objsur guid="176e1a36-c999-4ae8-bdf2-26017e186439" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="c10668ac-02e8-491f-8486-aead93af3041" ownerguid="8d5c28b8-91be-40b0-b6c2-4d5adbb495a3"> -<ExampleWords> -<AUni ws="en">disgusted, grossed out, nauseated, revolted, sickened</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels disgusted?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="c10a68a3-5bc7-4c85-8f0c-570a74cec4d9" ownerguid="fe82422e-d33d-4920-85ea-62e3428e6576"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pasaypa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pasaypa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pasaypa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pasaypa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pasaypa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="9ea87731-00f2-4f6e-bf73-2a902395a2e9" t="r" /> -</Morph> -<Msa> -<objsur guid="8b24eda1-6b59-4c7f-9a95-e4d51142a708" t="r" /> -</Msa> -<Sense> -<objsur guid="6d013e5e-7fbc-414e-93a6-86edddc07af6" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="c10ca4bc-e54f-4437-8b33-b783efea5a60" ownerguid="6ab060ca-ecfc-4a46-accb-42b0473998cd"> -<ExampleWords> -<AUni ws="en">be joined (together), be connected</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to two things being linked?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c10e23ee-8ac8-469a-bdeb-67777007ce65" ownerguid="fe962b84-619c-4318-8461-38767daceb3e"> -<Form> -<AUni ws="qvm-x-ach">limi</AUni> -<AUni ws="qvm-x-acl">limi; lime</AUni> -<AUni ws="qvm-x-akh">limi</AUni> -<AUni ws="qvm-x-akl">limi; lime</AUni> -<AUni ws="qvm-x-ame">limi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="c1100596-da52-4162-9e6d-e7c0d02e6097" ownerguid="1ad294b3-e347-4e6e-97a2-a8296e77c929"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="6c197c3f-064c-4823-a8e4-89b47021fb65" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c1106c2b-034f-40e3-a6ec-ed7cfc623030" ownerguid="06905a7e-47f4-4c86-afea-a4175295b566"> -<ExampleWords> -<AUni ws="en">knock down, topple</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to knocking something over so that it falls?</AUni> -</Question> -</rt> -<rt class="MoInflAffixSlot" guid="c1118d19-b22a-4beb-87cf-1c1faf476ece" ownerguid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5"> -<Name> -<AUni ws="en">shade</AUni> -</Name> -<Optional val="True" /> -</rt> -<rt class="CmSemanticDomain" guid="c1144a6e-3fce-4084-93d6-6f305eda8b1f" ownerguid="9bb173c6-cf38-47cd-803f-ebdf964ca2fc"> -<Abbreviation> -<AUni ws="en">4.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.243" /> -<DateModified val="2022-9-23 16:55:8.243" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to prosperity--when good things are happening.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>22G Favorable Circumstances or State</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Prosperity</AUni> -</Name> -<Questions> -<objsur guid="e600063f-1617-422b-b18f-224aefb51f51" t="o" /> -<objsur guid="9c39ecb0-feb9-4aea-acf3-63d081764627" t="o" /> -<objsur guid="2de91341-3cec-4e89-9e12-a0f700f4752f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="c114ea07-250d-4acb-918c-b2916f40f47b" ownerguid="7acde7d5-1a5b-4e16-99c7-5f297d2643f4"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="87663e8f-ef05-490f-9489-09c32610c575" t="o" /> -<objsur guid="67ba1fcd-e590-4ca0-b1d8-b0848e3c8b24" t="o" /> -<objsur guid="dfa08847-2613-4604-8111-cccd45ccd715" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="c11745eb-165d-41c4-af76-558240f734fa" ownerguid="b33da469-fefa-44f3-b35c-d70411bfe7e1"> -<ExampleWords> -<AUni ws="en">salesman, merchant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a person who tries to get people to buy something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c11908a5-b231-4729-bdc1-0672649cb422" ownerguid="ee8a20b7-4202-489a-b8cd-bdebaf770313"> -<ExampleWords> -<AUni ws="en">brew</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to making alcoholic beverages?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c11bbfd9-2e5b-4dcb-bc8a-4adc8ba5dd75" ownerguid="ad56dc48-9c39-43f6-9386-f7df80d93cd4"> -<ExampleWords> -<AUni ws="en">insist, be insistent, at someone's insistence, put your foot down, demand, be adamant, won't take no for an answer, won't hear of, maintain, be resolute</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to insisting that someone do something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c11deb1e-8e7d-441e-a9f6-f4c6a72c5481" ownerguid="5e529363-6111-464f-bb6f-8d3a9f56da6f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c11e11bc-cc76-4e10-80ca-b887f0063fdb" ownerguid="2e97b83d-1152-473f-9cbe-347f0655041a"> -<ExampleWords> -<AUni ws="en">stick out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a person's ears?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c11fc281-f9f0-4920-adf1-bcb549322416" ownerguid="cbcab7c3-6c8f-415b-8245-53e500b14f1d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="c124469a-09f2-45cf-97ad-10fc3dd096d7" ownerguid="5b223347-0605-4a88-9745-f71aa4e1f320"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="c1282d92-1ac3-4b8e-9904-a5429d62332d"> -<Analyses> -<objsur guid="fa4a1ab3-a5a1-4046-bc34-5cb868ada3f2" t="o" /> -</Analyses> -<Checksum val="2123574841" /> -<Form> -<AUni ws="qvm-x-akh">lumtsuynin</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiAnalysis" guid="c12852c1-d8b2-4dbb-953f-59efd81b3972" ownerguid="fc9f2ee6-1f5a-49a4-9786-df15a5a20ef2"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="60ad8af1-8bd6-4dcc-978d-8183bc3bcb05" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="c128622a-6407-4c88-bb52-097ff0b5b0e1" ownerguid="b29e78c9-045a-4a6c-8d87-9586d034b6ef"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="c129027b-a0b4-4fb6-b324-ec6469dfe073"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ángel; angil</AUni> -<AUni ws="qvm-x-acl">ángel; angil; angel</AUni> -<AUni ws="qvm-x-akh">ángel; angil</AUni> -<AUni ws="qvm-x-akl">ángel; angil; angel</AUni> -<AUni ws="qvm-x-ame">ángel; angil</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ángel</AUni> -<AUni ws="qvm-x-acl">+ángel</AUni> -<AUni ws="qvm-x-akh">+ángel</AUni> -<AUni ws="qvm-x-akl">+ángel</AUni> -<AUni ws="qvm-x-ame">+ángel</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.931" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f7b8a9af-54ff-413c-91e6-a0f3a98c66eb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ángel</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d0d53a9c-d226-4bdd-8295-f6a8c2852f35" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="767df14c-79b1-423a-a712-74d690807532" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ángel 
\entryTyp root 
\gENG angel 
\gSPN ángel 
\e +ángel 
\c N0 
\mp +FinalC 
\ach ángel / _# 
\ach angil / ~_# 
\akh ángel / _# 
\akh angil / ~_# 
\acl ángel / _# 
\acl angil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl angel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ángel / _# 
\akl angil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl angel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame ángel / _# 
\ame angil / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c129b7c5-f71e-4bbb-a6cb-b36d028e2298" ownerguid="25bf6690-6ed1-42e9-8a4a-3518f9cf382c"> -<ExampleWords> -<AUni ws="en">doctrine, tenet, dogma, belief</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something you believe about God?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c12b26c3-834f-4858-92c1-e03bb25ee28e" ownerguid="53451bc6-4247-494c-92a9-3b3d6f9be9e0"> -<Form> -<AUni ws="qvm-x-ach">gauyi</AUni> -<AUni ws="qvm-x-acl">gauyi; gauye</AUni> -<AUni ws="qvm-x-akh">qawyi</AUni> -<AUni ws="qvm-x-akl">qawyi; qawye</AUni> -<AUni ws="qvm-x-ame">qawyi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c12b5c51-0859-4ede-b1d7-5b78c21acd9f" ownerguid="e7e5dbf2-6d5b-4869-b357-8a7860c29002"> -<ExampleWords> -<AUni ws="en">concentrate, be concentrated, concentration, thick</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to adding more of a substance to the solution?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="c12d4445-d336-4d3f-8654-42ffc40605ca" ownerguid="db72da84-2cb0-480a-a0d2-0868132d4702"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="c12d6b81-1ca6-4b4f-b5bf-671d81194e9b" ownerguid="de6b15d3-6409-4998-b03d-903133f4ad70"> -<ExampleWords> -<AUni ws="en">singer, vocalist, soloist, minstrel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who sings?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c13019df-58c1-47c2-b624-6d4907930152"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chuspi</AUni> -<AUni ws="qvm-x-acl">chuspi; chuspi; chuspe</AUni> -<AUni ws="qvm-x-akh">chuspi</AUni> -<AUni ws="qvm-x-akl">chuspi; chuspi; chuspe</AUni> -<AUni ws="qvm-x-ame">chuspi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chuspi</AUni> -<AUni ws="qvm-x-acl">*chuspi</AUni> -<AUni ws="qvm-x-akh">*chuspi</AUni> -<AUni ws="qvm-x-akl">*chuspi</AUni> -<AUni ws="qvm-x-ame">*chuspi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.356" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="82ed49d8-1d08-48c1-88ed-6048a0167e12" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chuspi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c95bb75a-d28d-460d-8b92-fd8d21b4bc1a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b72c7f80-0183-4775-9096-22d2f256fdc7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chuspi 
\entryTyp root 
\gENG gnat 
\gSPN mosquito 
\e *chuspi 
\c N0 
\mp +FinalI 
\ach chuspi 
\akh chuspi 
\acl chuspi / _# 
\acl chuspi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chuspe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chuspi / _# 
\akl chuspi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chuspe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chuspi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="c13084f5-f68e-4a48-9fe8-338b875c21b5" ownerguid="3f3d5f08-d5ea-42f1-8ad7-4da9f23ff4ee"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="c132e21a-8bdb-48ca-b4d3-81820e7a74c5" ownerguid="c6b6486e-c1ae-4f85-9aac-421c5fd21f78"> -<Form> -<AUni ws="qvm-x-ach">ingenieru; ingeniero</AUni> -<AUni ws="qvm-x-acl">ingenieru; ingenieru; ingeniero</AUni> -<AUni ws="qvm-x-akh">ingenieru; ingeniero</AUni> -<AUni ws="qvm-x-akl">ingenieru; ingenieru; ingeniero</AUni> -<AUni ws="qvm-x-ame">ingenieru; ingeniero</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c1333294-4a81-4c9f-befa-0a5750c77f1d" ownerguid="83500e3b-e92b-4626-8312-59ffd4a39f6e"> -<Form> -<AUni ws="qvm-x-ach">dëja</AUni> -<AUni ws="qvm-x-acl">dëja</AUni> -<AUni ws="qvm-x-akh">dëja</AUni> -<AUni ws="qvm-x-akl">dëja</AUni> -<AUni ws="qvm-x-ame">dëja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c134b9d3-ff7c-4fe1-88ad-d87528a83057" ownerguid="1cbd3bd0-ca9e-4a65-a993-b73f723448f8"> -<Form> -<AUni ws="qvm-x-ach">sëñas</AUni> -<AUni ws="qvm-x-acl">sëñas</AUni> -<AUni ws="qvm-x-akh">sëñas</AUni> -<AUni ws="qvm-x-akl">sëñas</AUni> -<AUni ws="qvm-x-ame">sëñas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c1362fce-8348-4cc1-bffd-069ff75b1b5c" ownerguid="8eded5c0-fcd1-43c9-87bd-69ab3e302e96"> -<Form> -<AUni ws="qvm-x-ach">asï</AUni> -<AUni ws="qvm-x-acl">asï</AUni> -<AUni ws="qvm-x-akh">asï</AUni> -<AUni ws="qvm-x-akl">asï</AUni> -<AUni ws="qvm-x-ame">asï</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c1373500-be2d-4eef-8eff-bb21b8ad4b4c" ownerguid="ea990893-7941-4ab7-8090-acbaf1b1cf97"> -<Form> -<AUni ws="qvm-x-ach">bastón; baston</AUni> -<AUni ws="qvm-x-acl">bastón; baston</AUni> -<AUni ws="qvm-x-akh">bastón; baston</AUni> -<AUni ws="qvm-x-akl">bastón; baston</AUni> -<AUni ws="qvm-x-ame">bastón; baston</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c137b1b1-3dc5-4d81-9e2b-2fc5f6cc4e4e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lupi</AUni> -<AUni ws="qvm-x-acl">lupi; lupe</AUni> -<AUni ws="qvm-x-akh">lupi</AUni> -<AUni ws="qvm-x-akl">lupi; lupe</AUni> -<AUni ws="qvm-x-ame">lupi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llupi</AUni> -<AUni ws="qvm-x-acl">*llupi</AUni> -<AUni ws="qvm-x-akh">*llupi</AUni> -<AUni ws="qvm-x-akl">*llupi</AUni> -<AUni ws="qvm-x-ame">*llupi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.225" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2078ee66-5396-493d-a8a3-bebd56bf0f3d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llupi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="83ef15ba-190f-48af-b607-f5c873b967f2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3dceeb2a-2b4d-4aae-8dcd-1fd4ab5c2970" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llupi 
\entryTyp root 
\gENG pluck 
\gSPN arrancar 
\e *llupi 
\c V1 
\mp +FinalI 
\ach lupi 
\akh lupi 
\acl lupi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lupe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lupi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lupe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lupi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="c1396c04-8309-428b-8bef-180ea43141da" ownerguid="a1e39ec2-25be-4665-9e71-c431c03e7a20"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c13a66e4-b7cf-449b-8917-750798824be4" ownerguid="771e3882-f672-4e67-8580-edd82d7e5090"> -<ExampleWords> -<AUni ws="en">kindness, benefit (n), blessing, courtesy, charity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something good that someone does for another person?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c13a78f4-35f4-41dd-ad15-90994596a144" ownerguid="b5700ad7-36a1-4608-8789-8f84007244f8"> -<ExampleWords> -<AUni ws="en">tired, exhausted, tired out, worn out, weary, shattered, drained, beat, dead beat, be dead on your feet, be ready to drop, bushed, pooped, tuckered out, knackered, run down, spent, dog-tired, haggard</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is tired?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="c13ca251-6103-4475-85af-933311923f2c" ownerguid="86287a4c-0d64-4f28-9a5c-17fb9df37ab6"> -<Abbreviation> -<AUni ws="en">8.5.1.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.668" /> -<DateModified val="2022-9-23 16:55:8.668" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that express the idea that something is above another thing. The concept 'above' is inherently relational, expressing the relative positions of two things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>83I Above, Below</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Above</AUni> -</Name> -<Questions> -<objsur guid="94e853e1-e17f-41b1-aaca-9148ee43e9db" t="o" /> -<objsur guid="eeeb0122-ee3c-49ed-b11b-23c821cf8f31" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="c144d7c6-0d10-42af-bd79-2432522311f8" ownerguid="472432d6-865c-466c-9972-bcca75f3243e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/R0 R0/R0 V1/R0 V2/R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ADV2</AUni> -<AUni ws="es">ADV2</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="89edf312-823b-4bd1-9b8e-7755813dda71" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c14580f6-afde-473f-a8a9-79d1ec1facfb" ownerguid="ea2d0dc5-2cdb-4686-9f48-abe65ed295a4"> -<ExampleWords> -<AUni ws="en">pass</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to passing someone or something, which is moving in the same direction?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c145c20b-5f42-4b9a-bde5-1d641f910a44" ownerguid="008cecc8-8fcc-439a-88eb-d8bd404d5da9"> -<Gloss> -<AUni ws="en">3P</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5cc9a3bb-103d-4c28-b867-843434b1ecf2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c14639b5-1106-433b-b023-553599313d58" ownerguid="e81031af-2862-4744-b73d-21ace4e11832"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">I</AUni> -<AUni ws="es">yo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e6df1eee-926d-4e16-890a-be63f1161ca0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c1496c4c-e413-4659-87d5-ea6cf3db8209"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">zapatea</AUni> -<AUni ws="qvm-x-acl">zapatea</AUni> -<AUni ws="qvm-x-akh">zapatea</AUni> -<AUni ws="qvm-x-akl">zapatea</AUni> -<AUni ws="qvm-x-ame">zapatea</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+zapatear</AUni> -<AUni ws="qvm-x-acl">+zapatear</AUni> -<AUni ws="qvm-x-akh">+zapatear</AUni> -<AUni ws="qvm-x-akl">+zapatear</AUni> -<AUni ws="qvm-x-ame">+zapatear</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.810" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="72d8b22d-a099-4b7b-8815-a26e80883202" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+zapatear</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d6c9bfa5-c0a4-4ce7-8c5a-6eadfab82104" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6df9a256-eb34-4af3-b551-07173fa18062" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +zapatear 
\entryTyp root 
\gENG 
\gSPN 
\e +zapatear 
\c V1 
\ach zapatea 
\akh zapatea 
\acl zapatea 
\akl zapatea 
\ame zapatea</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="c14c5e0b-e2b6-4207-90a3-c650cee61238"> -<Analyses> -<objsur guid="dc11b1a0-ea79-4abd-812b-d0e3532d5013" t="o" /> -</Analyses> -<Checksum val="-1501881089" /> -<Form> -<AUni ws="qvm-x-akh">noqawan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="c14ff8f6-ff65-4079-b005-09c2cad78b71" ownerguid="0e79435b-f5ff-4061-81ff-49557ba2aed4"> -<ExampleWords> -<AUni ws="en">affiliation, alliance, bonding, relationship, relation, association, comradeship, participation, partnership, interaction, fellowship, interpersonal relationship</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the relationship itself?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c1518ece-cdd4-427b-812e-a5b3965abb15" ownerguid="548e3500-6daa-44a6-8416-e7a3de3da478"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sack</AUni> -<AUni ws="es">costalillo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="beacffed-4143-4f70-b8a5-040720006827" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c152a952-2dcf-49a6-9206-4049fb869a9d" ownerguid="fba27833-d6f1-4c36-ac39-28902b29261b"> -<ExampleWords> -<AUni ws="en">remind someone of, be reminiscent of, echo</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words indicate that someone or something makes you think of another person or thing because they are similar?</AUni> -</Question> -</rt> -<rt class="WfiGloss" guid="c154e7e9-a748-4d55-83ce-a1761338b7da" ownerguid="2b4d3c49-4504-45f8-b165-2b0be2b64398"> -<Form> -<AUni ws="en">nation</AUni> -<AUni ws="es">nación</AUni> -</Form> -</rt> -<rt class="LexSense" guid="c1555bdf-e62e-4543-83bf-42b7d9e1a277" ownerguid="d593023e-15c0-4737-90fa-93b7e025449e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">boat</AUni> -<AUni ws="es">barco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4e9ce948-459c-48e1-a89a-cb8b37f8129a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c155d2ee-a027-47c5-81db-21665012af1d" ownerguid="bbb897b5-f09b-4263-9f81-826ca61084f1"> -<ExampleWords> -<AUni ws="en">clean, scrub, scour, cleanse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to removing dirt from something?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="c1571c31-ae67-4b5f-82f5-517615ded9d0" ownerguid="476dcb11-e058-4b1c-8939-a8c711769f4e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Num 14.36,37 Runacunata desvaloratsishganpitami Moisés cachashgan chunca ricapacogcunata pesti gueshyawan Jehová wanutsergan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="c159bc1a-aaf5-4615-9268-5121e0dfa419"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pula</AUni> -<AUni ws="qvm-x-acl">pula</AUni> -<AUni ws="qvm-x-akh">pula</AUni> -<AUni ws="qvm-x-akl">pula</AUni> -<AUni ws="qvm-x-ame">pula</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pulla.n</AUni> -<AUni ws="qvm-x-acl">*pulla.n</AUni> -<AUni ws="qvm-x-akh">*pulla.n</AUni> -<AUni ws="qvm-x-akl">*pulla.n</AUni> -<AUni ws="qvm-x-ame">*pulla.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.995" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fc78e069-589e-4179-89a2-e316f0f91f3c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pulla.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0c0012ef-a330-4a9d-8fb1-6619cc966142" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3f8d3c1f-0243-46fb-8c87-8af0b9ae40c8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pulla.n 
\entryTyp root 
\gENG half 
\gSPN mitad 
\e *pulla.n 
\c N0 
\ach pula 
\akh pula 
\acl pula 
\akl pula 
\ame pula 
\mcc *pulla.n / ~_ 3P.V</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="c15a43dc-f630-42be-b7bd-31502417397a" ownerguid="c7bfd2f1-41a0-403b-8479-48cd124d1648"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">DAN 7.6 Tsaypitanami ricargä leopardunirag uywata.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="c15a4424-91f4-4a49-ab11-66fe5be5f629" ownerguid="3edb307f-be46-40b6-a6a4-ae075b40258c"> -<ExampleWords> -<AUni ws="en">starting, from, as from, after that</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something starts to happen after a particular time and then continues?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c15c943d-6cdb-4114-9838-09d36af49800" ownerguid="d53b457a-a080-4f9e-9757-70adf465fb77"> -<Form> -<AUni ws="qvm-x-ach">walga</AUni> -<AUni ws="qvm-x-acl">walga</AUni> -<AUni ws="qvm-x-akh">walqa</AUni> -<AUni ws="qvm-x-akl">walqa</AUni> -<AUni ws="qvm-x-ame">walqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c15db955-30f2-4849-a114-b86579a046a5" ownerguid="dd0304a6-1ed3-49c7-9844-a8cf11943bae"> -<Form> -<AUni ws="qvm-x-ach">libru; libro</AUni> -<AUni ws="qvm-x-acl">libru; libru; libro</AUni> -<AUni ws="qvm-x-akh">libru; libro</AUni> -<AUni ws="qvm-x-akl">libru; libru; libro</AUni> -<AUni ws="qvm-x-ame">libru; libro</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c15f7c79-84df-4d7a-804d-ddc93c7b39c9" ownerguid="90a8e1fd-6413-401c-860c-80d0427374a2"> -<Form> -<AUni ws="qvm-x-ach">tumpa</AUni> -<AUni ws="qvm-x-acl">tumpa</AUni> -<AUni ws="qvm-x-akh">tumpa</AUni> -<AUni ws="qvm-x-akl">tumpa</AUni> -<AUni ws="qvm-x-ame">tumpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c161b9bb-9de1-4be3-81e5-29f19a7d4e20" ownerguid="b6b73d41-e23f-4f22-b01e-7e75f4115fce"> -<ExampleWords> -<AUni ws="en">to strive toward a goal, press on, aim for, endeavor, head for, try to accomplish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to trying to reach a goal?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c16228b7-a3e1-49eb-ba62-3a5b56068145" ownerguid="8be94377-a3cc-4187-a6e2-51523e953503"> -<ExampleWords> -<AUni ws="en">butler (house), field hand, farm hand (fields), ranch hand (ranch)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who works in a particular place?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c16267c4-6625-4437-acf4-6912202095bc" ownerguid="888ad11b-6c50-419e-a18e-5bcfbdb5f8fd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7c74a0d6-c560-4683-bf69-909e83745585" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="c16334a0-be29-4a1e-a870-4cb3f1df984d" ownerguid="6045c6eb-efea-4586-95f8-840d32578d66"> -<Abbreviation> -<AUni ws="en">7.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to gathering things into a group. The basic idea of this domain involves a situation in which two or more things are not together, and someone moves them so that they are together.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15M Gather, Cause to Come Together</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Gather</AUni> -</Name> -<Questions> -<objsur guid="26dfc70b-06b7-4c2f-9946-c175abe22e46" t="o" /> -<objsur guid="cc4f113d-eaae-4728-8dff-6ddeb1916b11" t="o" /> -<objsur guid="659703fc-9cf0-42d0-951e-c61d5fa49b8d" t="o" /> -<objsur guid="cba95743-4b61-4aaf-9861-ef90fc42de76" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="7459c0d8-4da1-4944-a95e-bc64cde860f5" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="30b3faa8-747e-465f-833a-a9957a259be2" t="o" /> -<objsur guid="71b19b9e-231c-4196-a7d7-aa56a5079782" t="o" /> -<objsur guid="b7f058af-9ce6-4dd0-b555-00526975300e" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="c1662558-f36d-49d5-b32c-e05da9af9b48"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">tr</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="c16b0c37-c392-47c9-b7f9-719958adfed2" ownerguid="225c48dd-9fc2-4467-944f-16a098b4e518"> -<ExampleWords> -<AUni ws="en">crushing, overwhelmingly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a complete victory?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c16d265b-ae6f-4c3f-a5d9-24aedaffac6e" ownerguid="a01a1900-fc1f-462e-ba3d-ae822711b034"> -<ExampleWords> -<AUni ws="en">mild retardation, severe retardation, vegetable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to partial or total mental disability?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c16d59ab-e122-4154-b197-dc3e89671d30" ownerguid="12781062-ee36-4703-9bc0-cee4ed467ee5"> -<ExampleWords> -<AUni ws="en">article, editorial, column</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to things written in a newspaper?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c171bd2f-42b3-414a-9bb6-e265029f3727" ownerguid="a2f741d9-836f-4bbf-89bd-194ffccab309"> -<Form> -<AUni ws="qvm-x-ach">mechëru</AUni> -<AUni ws="qvm-x-acl">mechëru; mechëru; mechëro</AUni> -<AUni ws="qvm-x-akh">mechëru</AUni> -<AUni ws="qvm-x-akl">mechëru; mechëru; mechëro</AUni> -<AUni ws="qvm-x-ame">mechëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c1722a8f-173e-4169-b0de-2d53df2a428a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shga</AUni> -<AUni ws="qvm-x-acl">shga</AUni> -<AUni ws="qvm-x-akh">shqa</AUni> -<AUni ws="qvm-x-akl">shqa</AUni> -<AUni ws="qvm-x-ame">shqa</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.558" /> -<DateModified val="2022-10-18 13:49:17.484" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="1" /> -<LexemeForm> -<objsur guid="35a89a55-d852-4ca8-8863-4314f180cd91" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">PRF</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="85e3456d-a3a6-4fb2-848b-ab16e0bc1f03" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3ede5194-23d1-435e-b8ad-e5d1b55c6587" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx PRF 
\entryTyp suffix 
\gENG PRF 
\gSPN PRF 
\e PRF 
\c V1/V1 V2/V2 
\o 080 
\mp +foreshortens 
\ach shga 
\akh shqa 
\acl shga 
\akl shqa 
\ame shqa 
\mcc PRF / ~_ 3 
\mcc PRF / ~_ AG 
\mcc PRF / ~_ PRTSPM3</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="c1731704-be1d-456f-a862-ea6a5ccd4dbf" ownerguid="a6341082-8a31-43c6-87d4-0a180914a374"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c1758c3d-7e4e-4e25-9c01-1ad0f6c5d97a" ownerguid="17d5f429-6550-4a3a-a755-5ac3c3d7e04f"> -<ExampleWords> -<AUni ws="en">spawning grounds</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) Where do fish live (other than water, lake, and ocean)?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c1786d33-c3d9-4a10-87b5-6bb938e5e86c" ownerguid="a345d090-14e2-4897-9186-debcb05ab27c"> -<ExampleWords> -<AUni ws="en">next, right afterwards, the day after, then</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that an event happens next?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c17b70a4-fefa-42c9-850b-ebde6e26e9f7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ogti</AUni> -<AUni ws="qvm-x-acl">ogti; ogte</AUni> -<AUni ws="qvm-x-akh">oqti</AUni> -<AUni ws="qvm-x-akl">oqti; oqte</AUni> -<AUni ws="qvm-x-ame">uqti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uqti.v</AUni> -<AUni ws="qvm-x-acl">*uqti.v</AUni> -<AUni ws="qvm-x-akh">*uqti.v</AUni> -<AUni ws="qvm-x-akl">*uqti.v</AUni> -<AUni ws="qvm-x-ame">*uqti.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.269" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d42688ee-8f73-4891-8e1b-fe394268046d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uqti.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9a504072-b48c-4957-af20-e98808b53d1b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dbd447c9-f7a8-4d7b-9057-7172690fae50" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uqti.v 
\entryTyp root 
\gENG dig 
\gSPN escarbar 
\e *uqti.v 
\c V2 
\mp +FinalI 
\ach ogti 
\akh oqti 
\acl ogti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ogte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl oqti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl oqte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame uqti</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c17c6464-1787-4bb4-b5d8-f262fc3862eb" ownerguid="fcd22c85-7ee1-4d31-8633-9dbd32344211"> -<ExampleWords> -<AUni ws="en">approach, move near, come near, move in on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to moving near something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c17db558-f852-4c06-8e6b-2daab5b04eb8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">criyi</AUni> -<AUni ws="qvm-x-acl">criyi; criye</AUni> -<AUni ws="qvm-x-akh">criyi</AUni> -<AUni ws="qvm-x-akl">criyi; criye</AUni> -<AUni ws="qvm-x-ame">criyi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+creer</AUni> -<AUni ws="qvm-x-acl">+creer</AUni> -<AUni ws="qvm-x-akh">+creer</AUni> -<AUni ws="qvm-x-akl">+creer</AUni> -<AUni ws="qvm-x-ame">+creer</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.211" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="58777f5b-c8e6-4235-9038-fa4b0dda2ed0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+creer</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bf4cc450-58d8-4333-96d1-45bc96eddf86" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bf0be5c0-30a3-4c8b-9a5d-6596de5dc801" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +creer 
\entryTyp root 
\gENG believe 
\gSPN creer 
\e +creer 
\c V2 
\mp +FinalI 
\ach criyi 
\akh criyi 
\acl criyi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl criye +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl criyi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl criye +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame criyi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="c17dc40d-3b15-4cb6-9148-8a3b3db6c1cc" ownerguid="49611d51-4f8f-4bee-b195-6ec12990758f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="3f5686f0-43f8-49b1-8b9e-3229d608d67a" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="2361a30e-0c4a-4dc9-ab51-c7c1f02dcd81" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c18108eb-f6f8-470b-bc83-5a1399329832" ownerguid="c61d7145-de24-4455-87d9-718a27d74d09"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8db6a163-c86c-4474-a0be-933b12a87fb4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c1870e14-5161-4955-8284-39fb7bae2274"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">llachi</AUni> -<AUni ws="qvm-x-acl">llachi; llachi; llache</AUni> -<AUni ws="qvm-x-akh">llachi</AUni> -<AUni ws="qvm-x-akl">llachi; llachi; llache</AUni> -<AUni ws="qvm-x-ame">llachi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llachi</AUni> -<AUni ws="qvm-x-acl">*llachi</AUni> -<AUni ws="qvm-x-akh">*llachi</AUni> -<AUni ws="qvm-x-akl">*llachi</AUni> -<AUni ws="qvm-x-ame">*llachi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.124" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e25bf52e-010a-4275-aba0-a6132205812a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llachi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="997c1ed8-d90e-4137-9ea3-ec42e85cfcb7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c0315386-36c1-429a-ad69-a66d97b9f98b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llachi 
\entryTyp root 
\gENG female.kid 
\gSPN chiva 
\e *llachi 
\c N0 
\mp +FinalI 
\ach llachi 
\akh llachi 
\acl llachi / _# 
\acl llachi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl llache +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl llachi / _# 
\akl llachi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl llache +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame llachi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="c1961d6a-7f83-4604-bf88-74f96a187722" ownerguid="93cd89e9-d469-4921-b12e-1e9c6eabd08e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="d7c06865-5bfa-42ac-adaf-00892ecd3b1c" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">diviner</AUni> -<AUni ws="es">adivino</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="56297b2f-bd80-4fa1-8ccc-32e78a355ad7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c198c475-80b3-4f59-977e-70a9806de385" ownerguid="d37e95fa-2e8b-4178-b490-235c0ab4bcab"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c199a953-0f52-4cdf-abcc-415bc329113a" ownerguid="d067b555-e53c-4c16-bb09-5314862d8bae"> -<ExampleWords> -<AUni ws="en">drink, imbibe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to drinking alcohol?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c199c1bd-c1bc-47cd-8363-cab0c3e054be" ownerguid="ec1faadb-40cf-472e-858c-a465addb0df3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bellows</AUni> -<AUni ws="es">fuelle</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="932e1c58-546e-4a62-8ed1-68a948f5a5dd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c19a8ee5-fe9e-455c-8da0-d9c7e197f67d" ownerguid="73308bb8-de11-49da-b4df-fd546cdfad56"> -<Form> -<AUni ws="qvm-x-ach">virgen; virgin</AUni> -<AUni ws="qvm-x-acl">virgen; virgin; virgen</AUni> -<AUni ws="qvm-x-akh">virgen; virgin</AUni> -<AUni ws="qvm-x-akl">virgen; virgin; virgen</AUni> -<AUni ws="qvm-x-ame">virgen; virgin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="c1a63ba2-1db6-410d-a4ed-5f64d1798bc1" ownerguid="50ab3705-a81e-4fcc-b3ae-95c075966f69"> -<Abbreviation> -<AUni ws="en">1.3.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.963" /> -<DateModified val="2022-9-23 16:55:7.963" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the tide.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Tide</AUni> -</Name> -<Questions> -<objsur guid="1886503b-d589-4bfb-8cce-756470082f92" t="o" /> -<objsur guid="090b2863-a9c8-4dda-b683-43ad5e451c57" t="o" /> -<objsur guid="f62dbd68-9bba-4688-838e-bd57f20d30a5" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="c1a67f71-07b1-4565-80b5-a8fc1b19bf8a" ownerguid="cebf1d2d-0fd3-49aa-a071-5dcd881d9a24"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="c1a70060-ba04-4f16-879e-5563492aee02" ownerguid="ff736f67-197b-46b9-bc14-edbeb1fb3d5a"> -<Abbreviation> -<AUni ws="en">6.8.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being rich.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>57C Be Rich, Be Wealthy</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Rich</AUni> -</Name> -<Questions> -<objsur guid="b95b4cfd-2862-436d-9a2b-72bca5a61e90" t="o" /> -<objsur guid="2204621e-254a-403f-89ac-eb82a2d220b4" t="o" /> -<objsur guid="8fecbe36-3d8f-469f-abde-d79d76dea798" t="o" /> -<objsur guid="a4a22f53-c725-434c-ab32-460858d77350" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="c1b0e752-8c17-4c85-ab09-752aa0223186" ownerguid="0fcd1ad2-ac4d-4fc0-b39a-d2a4ce8df5aa"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c1b1ed0c-5cb1-464b-a659-e297feaf1d83" ownerguid="986b31ce-1a07-47f4-93aa-3048f8e0833d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">WOUT</AUni> -<AUni ws="es">SIN</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d2da946d-6a87-4287-bfd1-608f8a9f111e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c1b34e62-4f97-49af-87c0-e312c6503127" ownerguid="cf47477d-c32d-444f-9967-2d0d13393aaf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">burst</AUni> -<AUni ws="es">reventar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3b28774b-cc14-476d-aa61-63015deb6b4a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c1bb19fb-b8e4-4b92-afe3-296a0b05de46"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shimpi</AUni> -<AUni ws="qvm-x-acl">shimpi; shimpe</AUni> -<AUni ws="qvm-x-akh">shimpi</AUni> -<AUni ws="qvm-x-akl">shimpi; shimpe</AUni> -<AUni ws="qvm-x-ame">shimpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shimpi</AUni> -<AUni ws="qvm-x-acl">*shimpi</AUni> -<AUni ws="qvm-x-akh">*shimpi</AUni> -<AUni ws="qvm-x-akl">*shimpi</AUni> -<AUni ws="qvm-x-ame">*shimpi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.589" /> -<DateModified val="2022-10-10 21:18:47.207" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="34056dae-0880-43a3-b79b-4a6322ce5621" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shimpi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="046e2c59-d603-4ba5-a28b-d387444b56db" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ffc42416-55ff-40a9-a36b-f947d7fe3816" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shimpi 
\entryTyp root 
\gENG 
\gSPN 
\e *shimpi 
\c V2 
\mp +FinalI 
\ach shimpi 
\akh shimpi 
\acl shimpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shimpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shimpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shimpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shimpi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c1bb6bd2-e698-42db-b211-bd2ae3b2e004" ownerguid="ffa13b7d-5eaa-43be-8518-51d9aa08f321"> -<ExampleWords> -<AUni ws="en">alone (adv), solo</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that only one person does something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c1bcae72-34d7-4cdd-b40d-cd392591afef" ownerguid="1c1198da-f907-4473-82dd-43598178b496"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c1bd14f5-a2c4-4a87-b4dd-7f8f9cbc40fc" ownerguid="25bf6690-6ed1-42e9-8a4a-3518f9cf382c"> -<ExampleWords> -<AUni ws="en">superstition</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to foolish or ignorant beliefs about religion?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c1c0bf9b-f5bc-4996-ab0d-ad3d4537933a" ownerguid="314c8fea-4bdb-4bc8-ab67-a26a9c5abbd4"> -<ExampleWords> -<AUni ws="en">stiffen, rigidify</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something becoming more stiff?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="c1c1dcb4-8fe5-43ac-9b91-b2b2bc33de5b" ownerguid="5ea9301a-9906-4e81-97cf-48ee95a54c63"> -<Abbreviation> -<AUni ws="en">3.3.3.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.121" /> -<DateModified val="2022-9-23 16:55:8.121" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to threatening someone--to say that you will do something bad to someone if they don't do what you want them to do.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33Z Threaten</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Threaten</AUni> -</Name> -<Questions> -<objsur guid="205f83f1-f67a-4104-8cd7-b426f48a1f44" t="o" /> -<objsur guid="c0c23512-d12f-4fe4-a4d3-70aaef78ea92" t="o" /> -<objsur guid="76830943-8a0d-4ab5-b445-3ac2a75733ec" t="o" /> -<objsur guid="ff0ff20b-c429-4e33-9055-c1bd81c462ca" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="c1c47fb1-a5d0-4b71-bef6-30be506f0dd3" ownerguid="8c5e4907-30dd-498f-aac1-030cb73b410b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c1c6f5f9-7339-4b1c-8a5d-94d7e475eb6e" ownerguid="016e3f5b-b527-446e-9da6-49af34870001"> -<ExampleWords> -<AUni ws="en">testify, expose falsehood, catch in a lie, contradict, enlighten, substantiate, provide evidence, call a liar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to exposing falsehood?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c1cc1fdf-1d1f-4744-b56c-fb6abd34bc78" ownerguid="d100930b-6187-4722-ba21-3ec5de0b434b"> -<Form> -<AUni ws="qvm-x-ach">hondu; hondo</AUni> -<AUni ws="qvm-x-acl">hondu; hondu; hondo</AUni> -<AUni ws="qvm-x-akh">hondu; hondo</AUni> -<AUni ws="qvm-x-akl">hondu; hondu; hondo</AUni> -<AUni ws="qvm-x-ame">hondu; hondo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c1ccbaa5-7adb-4ad1-a826-a014b7ebb2ff"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">miseria</AUni> -<AUni ws="qvm-x-acl">miseria</AUni> -<AUni ws="qvm-x-akh">miseria</AUni> -<AUni ws="qvm-x-akl">miseria</AUni> -<AUni ws="qvm-x-ame">miseria</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+miseria</AUni> -<AUni ws="qvm-x-acl">+miseria</AUni> -<AUni ws="qvm-x-akh">+miseria</AUni> -<AUni ws="qvm-x-akl">+miseria</AUni> -<AUni ws="qvm-x-ame">+miseria</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.446" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="331f3da0-866d-438e-bde2-393f62291b3a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+miseria</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="053cca94-147b-449e-ac90-5b608aad8b13" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="92185f65-93b0-40df-bd42-b7b8f8ee6de7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +miseria 
\entryTyp root 
\gENG 
\gSPN 
\e +miseria 
\c N0 
\ach miseria 
\akh miseria 
\acl miseria 
\akl miseria 
\ame miseria 
\i PSA 44.19 Tsaynog captinpis cachariycamashcanqui miseriamanmi.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="c1ceebe1-1274-40c1-a932-696265d9d412" ownerguid="dc177f3c-d0fd-4232-adf1-a77b339cdbb2"> -<Abbreviation> -<AUni ws="en">6.5.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.458" /> -<DateModified val="2022-9-23 16:55:8.458" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the outside of a house, the area around a house, a barrier separating one house from another, and the entryway to the area around a house.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Yard</AUni> -</Name> -<OcmCodes> -<Uni>351 Grounds</Uni> -</OcmCodes> -<Questions> -<objsur guid="de7048e2-4e3b-4489-82c8-6aeea8a34b7c" t="o" /> -<objsur guid="ac33a404-98f4-4bd9-8a61-556f05ac2905" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="f4829d9d-a93f-4fc5-918c-6d4c501a6573" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="c1d32fbf-c560-47c7-a7bc-f11656a87b0c" ownerguid="c888c7ac-8cf4-49d2-a33e-20d19d84c47b"> -<ExampleWords> -<AUni ws="en">piglet, suckling</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to young pigs?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c1d56d67-1868-4924-8241-94392641c87c" ownerguid="91913920-8a6a-4ba0-9361-d6cc9e1f3639"> -<ExampleWords> -<AUni ws="en">flap, detail, bar, blade, hook, lid, neck, nose, shelf, wheel, longitudinal, projection</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What other words refer to a part of something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c1d85664-c1ee-4500-af75-d826d39fff59"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">iqui</AUni> -<AUni ws="qvm-x-acl">iqui; ique</AUni> -<AUni ws="qvm-x-akh">iki</AUni> -<AUni ws="qvm-x-akl">iki; ike</AUni> -<AUni ws="qvm-x-ame">iki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*iki</AUni> -<AUni ws="qvm-x-acl">*iki</AUni> -<AUni ws="qvm-x-akh">*iki</AUni> -<AUni ws="qvm-x-akl">*iki</AUni> -<AUni ws="qvm-x-ame">*iki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.792" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8231d4ea-867d-495f-a071-7d0e1c254f8f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*iki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7964a0f9-c015-49f9-a82a-10bbbbd1b04f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5113c628-811d-46fe-8cc8-57b1c7bfcdf7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *iki 
\entryTyp root 
\gENG slice 
\gSPN entajar 
\e *iki 
\c V1 
\mp +FinalI 
\ach iqui 
\akh iki 
\acl iqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ique +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl iki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ike +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame iki</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="c1e07b1f-dac4-443e-b98e-48165013d98d" ownerguid="fcfb806d-27a7-4482-9809-12bc5a60d766"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c1e0cbab-3470-4c55-95c3-23fbacaef6a5" ownerguid="3ccc3a21-07c8-4983-a044-e3c74b538135"> -<ExampleWords> -<AUni ws="en">shortness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to how short something is?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c1e4762f-2b45-460e-af5e-e2696934426d" ownerguid="5e04771f-5cab-4734-ad44-ca5b6b7686ca"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c1e4f82e-df16-4995-9c73-f202041e2d80" ownerguid="6b208fda-544c-4cba-b8cc-887b1018837f"> -<ExampleWords> -<AUni ws="en">to photograph, take a picture, to film</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used of taking a picture?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c1e5cb78-e785-4b67-93d2-3245fcc1ff62" ownerguid="f3a8cb6f-cdc8-42b3-a969-08dd7c907079"> -<Form> -<AUni ws="qvm-x-ach">pastor</AUni> -<AUni ws="qvm-x-acl">pastor</AUni> -<AUni ws="qvm-x-akh">pastor</AUni> -<AUni ws="qvm-x-akl">pastor</AUni> -<AUni ws="qvm-x-ame">pastor</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c1eb2557-31b5-4111-8b24-ecb7862def99" ownerguid="44236418-c5d0-44d9-b5c1-94fca40d97ce"> -<Form> -<AUni ws="qvm-x-ach">ishcay</AUni> -<AUni ws="qvm-x-acl">ishcay</AUni> -<AUni ws="qvm-x-akh">ishkay</AUni> -<AUni ws="qvm-x-akl">ishkay</AUni> -<AUni ws="qvm-x-ame">ishkay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c1ece65e-13d8-41b2-996b-f479283173d1" ownerguid="4068488f-59e9-47d1-8884-a1d6dcc10c36"> -<ExampleWords> -<AUni ws="en">cram, crowd, drape, dust, hang, heap, jam, load, mound, pack, pile, scatter, settle, sew, shower, spread, stack, stick, stock, strew, string, stuff, wrap</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to putting lots of things on something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c1ee14c3-60f5-4ff8-8885-84d7fb3aacb3" ownerguid="7af2dfed-a641-43a1-bada-75e7d2240d3d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="c1ee74c5-dd40-4e3f-85d1-b9fb87302aac"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lipta</AUni> -<AUni ws="qvm-x-acl">lipta</AUni> -<AUni ws="qvm-x-akh">lipta</AUni> -<AUni ws="qvm-x-akl">lipta</AUni> -<AUni ws="qvm-x-ame">lipta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llipta.n</AUni> -<AUni ws="qvm-x-acl">*llipta.n</AUni> -<AUni ws="qvm-x-akh">*llipta.n</AUni> -<AUni ws="qvm-x-akl">*llipta.n</AUni> -<AUni ws="qvm-x-ame">*llipta.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.205" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="21f5a554-9670-4bc0-9a91-cab2e2f4522a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llipta.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="916fd2b7-64f6-48f8-99b7-949dc68e80d9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b8442db8-9063-4ebe-a4c5-09b58c558aba" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llipta.n 
\entryTyp root 
\gENG 
\gSPN 
\e *llipta.n 
\c N0 
\ach lipta 
\akh lipta 
\acl lipta 
\akl lipta 
\ame lipta 
\i JDG 15.14 Tsauraga jinan hörami 
\nd Tayta Diospa
\nd* Espïritun yanapaptin Sansónga liyaraycashgan wascatapis rachirergan liptayashga hïlutanogla.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="c1f075e3-de71-487d-96ac-56378bf4a4a5" ownerguid="cbc9a466-67c0-41a2-a6cf-b958119ad3a4"> -<Form> -<AUni ws="qvm-x-ach">candelabru; candelabro</AUni> -<AUni ws="qvm-x-acl">candelabru; candelabru; candelabro</AUni> -<AUni ws="qvm-x-akh">candelabru; candelabro</AUni> -<AUni ws="qvm-x-akl">candelabru; candelabru; candelabro</AUni> -<AUni ws="qvm-x-ame">candelabru; candelabro</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c1f42e84-1855-433a-949e-2d55746188aa" ownerguid="a2ae0c29-df1c-486d-a44b-96fcc4e0aa8c"> -<ExampleWords> -<AUni ws="en">give up, quit, resign, offer to resign, submit your resignation, fire, dismiss, sack</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to stopping work?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c1f7e63b-6045-4490-8df2-e438b2a2247b" ownerguid="a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f"> -<ExampleWords> -<AUni ws="en">blind, astigmatism, clear-eyed, clear-sighted, cross-eyed, eyesight, good eyesight, poor eyesight, farsighted, lynx-eyed, myopia, myopic, nearsighted, purblind, sightless, visionless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe how well a person can see?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c1f909a5-235e-43ca-83d7-a9a886aefc33" ownerguid="4c4fbb9a-2361-4eb0-a23a-6ecbfa3e4a66"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">who</AUni> -<AUni ws="es">quien</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c23d27bc-d350-465a-8a4b-a8059eb83dbc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c1f9db81-7bd9-45ea-b23a-0f499e9a7bb7" ownerguid="28efc1c4-20dd-44f2-9caa-3098b2033b5f"> -<Form> -<AUni ws="qvm-x-ach">upya</AUni> -<AUni ws="qvm-x-acl">upya</AUni> -<AUni ws="qvm-x-akh">upya</AUni> -<AUni ws="qvm-x-akl">upya</AUni> -<AUni ws="qvm-x-ame">upya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="c1faafc7-eb8b-44e8-a247-fe0322799722" ownerguid="d79e6547-9b93-484d-b7bf-c64c2625a319"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c1fb285f-068f-41e7-9296-3795da8e57e7" ownerguid="991357dc-9f56-47ed-8790-85cbd5f9b06f"> -<ExampleWords> -<AUni ws="en">load</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to putting something in a vehicle?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c1fca51a-84dc-4a5f-84ee-71b11e673cc2" ownerguid="d50f3921-fcea-4ac9-b64a-25bf47dc3292"> -<ExampleWords> -<AUni ws="en">cone, cinder cone, core of a volcano, crater, lava flow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the parts of a volcano?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c2000091-843f-4829-b102-4c6bf7b5b7a3" ownerguid="4d52d128-44c8-4574-a625-ecbd5828d87b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="c20173d0-9f53-4504-b735-a8b68f595b7c" ownerguid="ff029102-3adb-440f-a061-2c56e88db807"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="c202eb1b-5ce5-4be4-83c5-9ad24ddd4c18"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chagan</AUni> -<AUni ws="qvm-x-acl">chagan</AUni> -<AUni ws="qvm-x-akh">chaqan</AUni> -<AUni ws="qvm-x-akl">chaqan</AUni> -<AUni ws="qvm-x-ame">chaqan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*traqan</AUni> -<AUni ws="qvm-x-acl">*traqan</AUni> -<AUni ws="qvm-x-akh">*traqan</AUni> -<AUni ws="qvm-x-akl">*traqan</AUni> -<AUni ws="qvm-x-ame">*traqan</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.68" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="57e2b5ad-91d2-4fef-bd24-bdc1a5749df1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*traqan</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5fee2042-db50-421f-97d6-308e60727e3c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5f0d4a6b-04e4-465b-9527-4269d2c2688f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *traqan 
\entryTyp root 
\gENG spleen? 
\gSPN vaso 
\e *traqan 
\c N0 
\mp +FinalC 
\ach chagan 
\akh chaqan 
\acl chagan 
\akl chaqan 
\ame chaqan</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c2068215-ad98-4285-8945-61512c4a72dc" ownerguid="b60bf544-7774-4623-8c67-19b32b53dea2"> -<ExampleWords> -<AUni ws="en">divine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something to do with God?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c2076711-27ed-4c95-902c-e75412b42a68" ownerguid="ba8370ac-4918-42c8-afa0-55ac80bb5f52"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.clothe</AUni> -<AUni ws="es">aropar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b0e3b653-038b-4d0b-b59b-79eb9cf9f453" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c20fc66f-f2b1-43fd-84f8-a0a61cd1cdec" ownerguid="12d73f07-821e-4621-98a7-486b1619e81a"> -<Form> -<AUni ws="qvm-x-ach">añas</AUni> -<AUni ws="qvm-x-acl">añas</AUni> -<AUni ws="qvm-x-akh">añas</AUni> -<AUni ws="qvm-x-akl">añas</AUni> -<AUni ws="qvm-x-ame">añas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c211ffe4-5f25-4d20-be44-7d4eb339232b" ownerguid="54b6dff4-a21d-490d-8279-69f36a179c93"> -<ExampleWords> -<AUni ws="en">meeting, assembly, gathering, convocation, assemblage, congregation, council, caucus, conclave, congress, convention, symposium, panel, posse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a meeting?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="c213c96f-04e1-418a-9ee3-07943e605d10" ownerguid="8b0989f5-aed1-4666-9873-8d3c16a4818e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 40.22 Mayu cuchuncho caycag sauce yöracuna jirururarmi lantupan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="c2156818-8930-4bc7-b69a-219f09295d8d" ownerguid="839b8c6e-eb74-4b98-aee3-5573c8ded9e8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="4ca70d87-e8fc-47cb-84be-30deeb5be9d4" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="c98e17a7-d927-437f-b979-b101bd5a4b10" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c2157d85-3a10-4a0a-8555-ffdee5527cd8" ownerguid="7c234ccc-0dbe-42b0-a377-db99ebd2b51e"> -<ExampleWords> -<AUni ws="en">exterminate, become extinct, extinction, wipe out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words are used of killing all animals?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c216567e-8d42-461e-b3b0-fee91dcfee04" ownerguid="884c283c-c156-459c-80a8-bfdbf902271c"> -<Form> -<AUni ws="qvm-x-ach">shulya</AUni> -<AUni ws="qvm-x-acl">shulya</AUni> -<AUni ws="qvm-x-akh">shulya</AUni> -<AUni ws="qvm-x-akl">shulya</AUni> -<AUni ws="qvm-x-ame">shulya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="c21945d6-75a7-4400-8581-198162054b95" ownerguid="00aac4e4-70d6-424f-b9d8-519e33c5106c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">reed</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4f067440-308a-415a-8431-6ac9449357ef" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c21a8690-c448-4bd1-b6e5-bc5ed0d3cb22" ownerguid="ae1a3325-4d14-4ca5-8e66-00e6007d5a2a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a7573971-b029-49a6-aaa1-6f7c041fa7f1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c21b5bb9-262c-4c84-88b7-27aa810b7daa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pucuta; pucuta:</AUni> -<AUni ws="qvm-x-acl">pucuta; pucuta:</AUni> -<AUni ws="qvm-x-akh">pukuta; pukuta:</AUni> -<AUni ws="qvm-x-akl">pukuta; pukuta:</AUni> -<AUni ws="qvm-x-ame">pukuta; pukuta:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pukuta:</AUni> -<AUni ws="qvm-x-acl">*pukuta:</AUni> -<AUni ws="qvm-x-akh">*pukuta:</AUni> -<AUni ws="qvm-x-akl">*pukuta:</AUni> -<AUni ws="qvm-x-ame">*pukuta:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.987" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="22be628e-6f89-4393-8427-195349f5896f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pukuta:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d5029c1f-9925-44ce-a604-6ce775f592f6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8afd5999-b295-46f3-9b07-826cd586e3ba" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pukuta: 
\entryTyp root 
\gENG be.cloudy 
\gSPN ser.nuboso 
\e *pukuta: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach pucuta foreshortened 
\ach pucuta: 
\akh pukuta foreshortened 
\akh pukuta: 
\acl pucuta foreshortened 
\acl pucuta: 
\akl pukuta foreshortened 
\akl pukuta: 
\ame pukuta foreshortened 
\ame pukuta: 
\mcc *pukuta: / ~_ 2IMP 
\mcc *pukuta: / ~_ INF.noI # 
\mcc *pukuta: / ~_ [y]</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="c21c28e8-9731-4ee0-acbb-32501bf8abd1" ownerguid="ee446395-781b-4651-afef-cad78b71f843"> -<Abbreviation> -<AUni ws="en">1.6.1.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.994" /> -<DateModified val="2022-9-23 16:55:7.994" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to crocodiles.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Crocodile</AUni> -</Name> -<Questions> -<objsur guid="30e5893f-0956-49ed-bb02-68087e7963e9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="c21da79e-1b57-4ce2-8566-3b3ea06f65a5" ownerguid="1c058512-9c4d-47ac-b13a-4d91161d442a"> -<Form> -<AUni ws="qvm-x-ach">aträsu</AUni> -<AUni ws="qvm-x-acl">aträsu; aträsu; aträso</AUni> -<AUni ws="qvm-x-akh">aträsu</AUni> -<AUni ws="qvm-x-akl">aträsu; aträsu; aträso</AUni> -<AUni ws="qvm-x-ame">aträsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c21db54e-3565-425f-bc21-11f8452fd1c1" ownerguid="ffd0547e-e537-4614-ac3f-6d8cd3351f33"> -<ExampleWords> -<AUni ws="en">head, ear, eye, nose, muzzle, maw, snout, trunk (of an elephant), proboscis, mouth, tooth, fang , tusk, tongue, neck, horn, antler, dewlap</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the parts of the head?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c21e1d91-339b-4a7d-8a79-b568c2483409" ownerguid="ca91e41a-81c3-4c96-87e6-f67477fcd686"> -<ExampleWords> -<AUni ws="en">bring up, raise, rear, have custody, parent (v) a child, mother (v) a child, child-rearing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to rearing a child?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c21f0e03-fa31-4688-afdb-35ffb1c721e0" ownerguid="fbfb11f6-a58c-4ef1-9bf9-dd4c439447c5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sandals</AUni> -<AUni ws="es">sand lia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a31b19c5-c713-48c0-b554-df1c35c8d500" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c21f360a-4ea1-4e1a-9fab-b1d5d2d80427"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shulac</AUni> -<AUni ws="qvm-x-acl">shulac</AUni> -<AUni ws="qvm-x-akh">shulak</AUni> -<AUni ws="qvm-x-akl">shulak</AUni> -<AUni ws="qvm-x-ame">shulak</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shullak</AUni> -<AUni ws="qvm-x-acl">*shullak</AUni> -<AUni ws="qvm-x-akh">*shullak</AUni> -<AUni ws="qvm-x-akl">*shullak</AUni> -<AUni ws="qvm-x-ame">*shullak</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.622" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e9b909a6-a2d6-437e-a51e-92147a01fa2f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shullak</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ddbebf46-8020-4e87-a599-00b537302fa7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4f2f018b-067a-4324-8369-074fbdd11c64" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shullak 
\entryTyp root 
\gENG lizard 
\gSPN lagartija 
\e *shullak 
\c N0 
\mp +FinalC 
\ach shulac 
\akh shulak 
\acl shulac 
\akl shulak 
\ame shulak</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="c221b7f9-d102-4dfe-83b0-de944357b91d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tra:ma</AUni> -<AUni ws="qvm-x-acl">tra:ma</AUni> -<AUni ws="qvm-x-akh">tra:ma</AUni> -<AUni ws="qvm-x-akl">tra:ma</AUni> -<AUni ws="qvm-x-ame">tra:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+trama</AUni> -<AUni ws="qvm-x-acl">+trama</AUni> -<AUni ws="qvm-x-akh">+trama</AUni> -<AUni ws="qvm-x-akl">+trama</AUni> -<AUni ws="qvm-x-ame">+trama</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.480" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fcdd0330-49f2-4f45-83e9-4fb56d3225ba" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+trama</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4432a27f-1c8e-44fb-b9cc-d556bbb57851" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="31c08c9b-77f7-4672-ba5d-197c7ef2c1ba" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +trama 
\entryTyp root 
\gENG 
\gSPN 
\e +trama 
\c N0 
\ach tra:ma 
\akh tra:ma 
\acl tra:ma 
\akl tra:ma 
\ame tra:ma 
\i JDG 16.13 Tsaynog niptinmi Dalilaga Sansónta fiyupa punucarcatsir ganchis piltanta trämaman awarcorgan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="c223335b-4803-4f1b-bf4d-f1ee077513cf" ownerguid="d59a84e1-5e12-4cb7-b72b-15c51810ad48"> -<Abbreviation> -<AUni ws="en">4.1.6.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is private--something that only concerns you, and for words describing something that is public--something that concerns many people.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Private, public</AUni> -</Name> -<Questions> -<objsur guid="0097ebd9-c112-4f97-ae83-2590f9c3665e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="c225039a-59fd-4b99-a362-018bc925987d" ownerguid="d52c5e1f-9c59-49a7-833b-ff3aa35e7076"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="c229197b-bc65-4438-bb78-0c1010a38d78" ownerguid="2269aeba-112c-4eab-a1e5-7d4f6aaf6c8d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mu; mo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mu; mo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="45846476-db8b-4639-bef8-780e6651a907" t="r" /> -</Morph> -<Msa> -<objsur guid="84097b64-d9df-441f-a9d3-d11d4b9d9ea0" t="r" /> -</Msa> -<Sense> -<objsur guid="788609d7-ea80-4813-aabb-8837acc21fd4" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="c22b5bbe-c096-42ef-bd83-96ef39291630" ownerguid="f9d020d6-b129-4bb8-9509-3b4a6c27482e"> -<ExampleWords> -<AUni ws="en">interesting, colorful, a character, entertainer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe someone that is interesting?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c22e3404-f80c-4dc6-a56f-4e95f3cb2ff8" ownerguid="339f54a5-125b-435f-bf37-cfc2a2bd26d3"> -<ExampleWords> -<AUni ws="en">make a face, get an expression on your face, have an expression on your face, give someone (an expression)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to making an expression on your face?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="c22f91f5-a672-432c-93f3-8e4ba7ec824a" ownerguid="324a5f0a-bc87-4b54-a8fc-9548a50eaf0a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">NAM 2.8 Reservorio juchucäcuptin yacu bunyaypa bunyar aywagnograg Ninive runacunapis gueshpir aywacärin.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="c2349bd4-7a92-48df-b533-189071a31017" ownerguid="9b0fef63-5935-447d-801a-bb02dd6212bb"> -<ExampleWords> -<AUni ws="en">admire, be an admirer of, accept, approve of, esteem (v), hold in someone in high esteem, look up to, have a high opinion of, hold someone in high regard, respect, respectful, think highly of, think well of, hold in honor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to admiring a person?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c235964c-7af8-4f15-95fc-7d47a850a71f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alista</AUni> -<AUni ws="qvm-x-acl">alista</AUni> -<AUni ws="qvm-x-akh">alista</AUni> -<AUni ws="qvm-x-akl">alista</AUni> -<AUni ws="qvm-x-ame">alista</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+alistar</AUni> -<AUni ws="qvm-x-acl">+alistar</AUni> -<AUni ws="qvm-x-akh">+alistar</AUni> -<AUni ws="qvm-x-akl">+alistar</AUni> -<AUni ws="qvm-x-ame">+alistar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.709" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d9d31255-e2c9-4256-98f0-921587462356" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+alistar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="80b0b813-e6dc-4d83-ad2f-e99de5d3f080" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="97e51834-40c8-4394-ae43-3a3b66ba99c4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +alistar 
\entryTyp root 
\gENG ready 
\gSPN alistar 
\e +alistar 
\c V2 
\ach alista 
\akh alista 
\acl alista 
\akl alista 
\ame alista</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="c23688e5-10a3-4cc6-b3db-a6de090f0e60"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tuclish</AUni> -<AUni ws="qvm-x-acl">tuclish</AUni> -<AUni ws="qvm-x-akh">tuklish</AUni> -<AUni ws="qvm-x-akl">tuklish</AUni> -<AUni ws="qvm-x-ame">tuklish</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tukllish</AUni> -<AUni ws="qvm-x-acl">*tukllish</AUni> -<AUni ws="qvm-x-akh">*tukllish</AUni> -<AUni ws="qvm-x-akl">*tukllish</AUni> -<AUni ws="qvm-x-ame">*tukllish</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.967" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="62022cdd-7f5d-44aa-901a-e9bfe6f1adb2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tukllish</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e2612b97-12f5-4b9e-9496-c4508cf015dc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a7266ff0-7df2-4c2f-b026-6c2239c39ed7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tukllish 
\entryTyp root 
\gENG mushroom 
\gSPN hongo 
\e *tukllish 
\c N0 
\mp +FinalC 
\ach tuclish 
\akh tuklish 
\acl tuclish 
\akl tuklish 
\ame tuklish</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="c2368d8d-9972-4bab-83e1-0a25b98f87d0" ownerguid="8fe88230-944c-4cfe-973d-a79050a56e5e"> -<Form> -<AUni ws="qvm-x-ach">cölis</AUni> -<AUni ws="qvm-x-acl">cölis</AUni> -<AUni ws="qvm-x-akh">cölis</AUni> -<AUni ws="qvm-x-akl">cölis</AUni> -<AUni ws="qvm-x-ame">cölis</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c2379025-b8a7-4cae-80bb-d91a809f38ee" ownerguid="45b9bf61-3138-4206-9478-b4d3f082358b"> -<ExampleWords> -<AUni ws="en">interrupt, talk at the same time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to someone talking at the same time as someone else?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c2398aa9-b531-420f-9c01-0c2136f5b55c" ownerguid="72274e9d-5d3c-4ae7-93ab-db3617cdda1e"> -<ExampleWords> -<AUni ws="en">feeling, sensation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a feeling?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c23d27bc-d350-465a-8a4b-a8059eb83dbc" ownerguid="4c4fbb9a-2361-4eb0-a23a-6ecbfa3e4a66"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c23ed8c7-33e9-4ff2-b184-ed7056bc7597" ownerguid="fd9b8618-1f62-419b-85c3-365a12e85523"> -<ExampleWords> -<AUni ws="en">compromise</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to two people compromising?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c241b918-33d2-4486-bb87-4de8ff2cfa1a" ownerguid="99bc71fb-09e9-4400-9674-8f066e8a4bf7"> -<Form> -<AUni ws="qvm-x-ach">fëcha</AUni> -<AUni ws="qvm-x-acl">fëcha</AUni> -<AUni ws="qvm-x-akh">fëcha</AUni> -<AUni ws="qvm-x-akl">fëcha</AUni> -<AUni ws="qvm-x-ame">fëcha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PunctuationForm" guid="c242a7fb-f8dd-4e8a-b209-bbac19cd80eb"> -<Form> -<Str> -<Run ws="qvm-x-akh">)</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="c24499e8-b786-4b06-9b73-f2d286049323" ownerguid="36123ffe-14d8-4198-b32c-eabd0b23e0dd"> -<ExampleWords> -<AUni ws="en">bargain, negotiate a price, haggle, discount</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to bargaining over a price?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c244b3d9-f044-4c57-aadc-3d49c4064055" ownerguid="f022c550-5762-4552-acd7-2871c850a990"> -<Form> -<AUni ws="qvm-x-ach">yata</AUni> -<AUni ws="qvm-x-acl">yata</AUni> -<AUni ws="qvm-x-akh">yata</AUni> -<AUni ws="qvm-x-akl">yata</AUni> -<AUni ws="qvm-x-ame">yata</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="c245456a-e288-462a-bc49-07c0c60d36b2" ownerguid="2a1d2fa6-cc37-4094-8b69-ad9e4d5423b9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c2468713-f642-4f76-8800-619befc06dfa" ownerguid="583247d7-e105-4555-a7b6-06041564dc4f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">suddenly</AUni> -<AUni ws="es">derepentamente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0c2aad7c-1b35-49bb-9f6d-07280b2b9953" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c24700bc-8235-49e5-84ce-59b8781e7494" ownerguid="eef8c50e-c391-482c-9f60-1bba2d8892b3"> -<ExampleWords> -<AUni ws="en">radio, television</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to different kinds of mass communication?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="c24b8305-24d7-4985-a37a-54438749cdda" ownerguid="933404fc-9865-4f05-ad2a-55d83ac396f9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="82e9c3df-e95c-44d6-998d-f3779aad6808" t="r" /> -</Morph> -<Msa> -<objsur guid="1b3c6562-1662-468e-b5c0-fcf36256167d" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="c24f55f6-4e86-473c-b669-8d911b2307f7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">delica:du</AUni> -<AUni ws="qvm-x-acl">delica:du; delica:du; delica:do</AUni> -<AUni ws="qvm-x-akh">delica:du</AUni> -<AUni ws="qvm-x-akl">delica:du; delica:du; delica:do</AUni> -<AUni ws="qvm-x-ame">delica:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+delicado</AUni> -<AUni ws="qvm-x-acl">+delicado</AUni> -<AUni ws="qvm-x-akh">+delicado</AUni> -<AUni ws="qvm-x-akl">+delicado</AUni> -<AUni ws="qvm-x-ame">+delicado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.376" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="053245f8-5f72-43c5-9b4c-5282109714c6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+delicado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1e661dab-1225-4ad9-b13f-822d656c2862" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cc697a46-bec1-40cc-bd1f-a0518af88344" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +delicado 
\entryTyp root 
\gENG 
\gSPN 
\e +delicado 
\c N0 
\ach delica:du 
\akh delica:du 
\acl delica:du / _# 
\acl delica:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl delica:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl delica:du / _# 
\akl delica:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl delica:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame delica:du</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="c250e6e6-092d-43d7-8a10-fcaebc4e64bd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">awanta</AUni> -<AUni ws="qvm-x-acl">awanta</AUni> -<AUni ws="qvm-x-akh">awanta</AUni> -<AUni ws="qvm-x-akl">awanta</AUni> -<AUni ws="qvm-x-ame">awanta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+aguantar</AUni> -<AUni ws="qvm-x-acl">+aguantar</AUni> -<AUni ws="qvm-x-akh">+aguantar</AUni> -<AUni ws="qvm-x-akl">+aguantar</AUni> -<AUni ws="qvm-x-ame">+aguantar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.918" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="827b4f27-3163-4fd1-84e6-5ee41cc7d9f5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+aguantar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="217b1425-2d48-40ba-ab37-268ec3fecb7b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="976cafa5-ef66-42a8-8c51-93026b5ce9dc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +aguantar 
\entryTyp root 
\gENG endure 
\gSPN aguantar 
\e +aguantar 
\c V2 
\ach awanta 
\akh awanta 
\acl awanta 
\akl awanta 
\ame awanta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="c252cc0f-8b8c-4b9c-93a2-b83b4474c43a" ownerguid="851e4059-edab-45da-aa33-7ee5c994b2f9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">clear</AUni> -<AUni ws="es">claro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0fd32670-7c3c-471b-bf92-e0759c17c48b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="c255e776-102d-4cff-9b46-831ab17244df" ownerguid="e9746b92-864d-4a1e-8553-207d78261999"> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="c2563ea4-c463-45ec-962e-938f8f832519"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuandu; cuando</AUni> -<AUni ws="qvm-x-acl">cuandu; cuandu; cuando</AUni> -<AUni ws="qvm-x-akh">cuandu; cuando</AUni> -<AUni ws="qvm-x-akl">cuandu; cuandu; cuando</AUni> -<AUni ws="qvm-x-ame">cuandu; cuando</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuando</AUni> -<AUni ws="qvm-x-acl">+cuando</AUni> -<AUni ws="qvm-x-akh">+cuando</AUni> -<AUni ws="qvm-x-akl">+cuando</AUni> -<AUni ws="qvm-x-ame">+cuando</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.232" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b24963c1-6752-46a5-b431-339c0d18a462" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuando</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="13e8749b-7e3f-4446-b1e9-27e06d404381" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2755e81a-94e7-4509-8f0c-84dc79a05d5c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuando 
\entryTyp root 
\gENG 
\gSPN 
\e +cuando 
\c N0 
\ach cuandu / ~_# 
\ach cuando / _# 
\akh cuandu / ~_# 
\akh cuando / _# 
\acl cuandu / ~_# 
\acl cuandu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cuando +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cuandu / ~_# 
\akl cuandu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cuando +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cuandu / ~_# 
\ame cuando / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c257b457-d631-4715-b0b5-1c6688fe2d04" ownerguid="313ca832-ce91-44c9-bb35-bd130c39d924"> -<ExampleWords> -<AUni ws="en">sharpen, give an edge to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to making something sharp?</AUni> -</Question> -</rt> -<rt class="Segment" guid="c25e9570-a848-42d0-b8ef-035958e62529" ownerguid="e70a8a4d-d5eb-486b-86c3-41d274a9dc56"> -<Analyses> -<objsur guid="6cdb7ecf-5ac5-46b8-a7f7-45815f6b8e64" t="r" /> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="fa7aeb71-200a-4a5d-9436-13faa1972fea" t="r" /> -<objsur guid="25651c34-3e31-419d-86b5-cda6907f0a4f" t="r" /> -<objsur guid="7a34d709-dd7d-4ac4-94e8-58e444587dd4" t="r" /> -<objsur guid="a85a5670-81ba-47b9-8443-95e8be60ebec" t="r" /> -<objsur guid="bb723df0-2b97-461e-bae3-564d9c1a0cfd" t="r" /> -<objsur guid="4fccec2d-58a4-466f-a087-a79d6bf13b57" t="r" /> -<objsur guid="26ca52f1-b5e7-41e8-aa2e-cf2572524687" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexEntry" guid="c2604a26-003e-4991-9059-b2e1a17e796c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">matanca; matanca:</AUni> -<AUni ws="qvm-x-acl">matanca; matanca:</AUni> -<AUni ws="qvm-x-akh">matanka; matanka:</AUni> -<AUni ws="qvm-x-akl">matanka; matanka:</AUni> -<AUni ws="qvm-x-ame">matanka; matanka:</AUni> -</Custom> -<AlternateForms> -<objsur guid="d65612a6-3cee-4ab9-9590-1ad43b6e360a" t="o" /> -</AlternateForms> -<CitationForm> -<AUni ws="qvm-x-ach">*matanka.v</AUni> -<AUni ws="qvm-x-acl">*matanka.v</AUni> -<AUni ws="qvm-x-akh">*matanka.v</AUni> -<AUni ws="qvm-x-akl">*matanka.v</AUni> -<AUni ws="qvm-x-ame">*matanka.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.364" /> -<DateModified val="2022-10-15 14:15:8.744" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="64572701-fcdf-40a9-b9f9-d98f2f3a735f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*matanka.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bfbeb073-ec0d-4978-97c4-ba6fd2b3cc92" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="21c45bf7-c32e-4c3b-84cf-2d33bc14dbd1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *matanka.v 
\entryTyp root 
\gENG 
\gSPN 
\e *matanka.v 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach matanca foreshortened 
\ach matanca: 
\akh matanka foreshortened 
\akh matanka: 
\acl matanca foreshortened 
\acl matanca: 
\akl matanka foreshortened 
\akl matanka: 
\ame matanka foreshortened 
\ame matanka: 
\i ISA 10.27 Yüguta matankaparkoqnoq nakatsishuptikipis paykunapa makinpita jorqarkamurmi bendicionnëta churamushaq ali kawapäkunaykipaq.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="c2606526-f0a2-4f87-b1ec-1e599941d0ba" ownerguid="03663a32-ea9c-486d-9481-d7535bb4050c"> -<Form> -<AUni ws="qvm-x-ach">manöju</AUni> -<AUni ws="qvm-x-acl">manöju; manöju; manöjo</AUni> -<AUni ws="qvm-x-akh">manöju</AUni> -<AUni ws="qvm-x-akl">manöju; manöju; manöjo</AUni> -<AUni ws="qvm-x-ame">manöju</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c2616b18-174b-4e33-b93b-0dbe097ccd3e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa:chuy</AUni> -<AUni ws="qvm-x-acl">pa:chuy</AUni> -<AUni ws="qvm-x-akh">pa:chuy</AUni> -<AUni ws="qvm-x-akl">pa:chuy</AUni> -<AUni ws="qvm-x-ame">pa:chuy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pa:chuy</AUni> -<AUni ws="qvm-x-acl">*pa:chuy</AUni> -<AUni ws="qvm-x-akh">*pa:chuy</AUni> -<AUni ws="qvm-x-akl">*pa:chuy</AUni> -<AUni ws="qvm-x-ame">*pa:chuy</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.648" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="34ba4ef1-2ded-4424-b628-d4ffcab07d72" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pa:chuy</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e259c942-a8c3-470e-8b78-7aa38ad74b3c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3b125519-8d20-4069-8102-5ea3b6fbe110" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pa:chuy 
\entryTyp root 
\gENG 
\gSPN 
\e *pa:chuy 
\c R0 
\mp +FinalC 
\ach pa:chuy 
\akh pa:chuy 
\acl pa:chuy 
\akl pa:chuy 
\ame pa:chuy</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="c2630384-2f72-4a96-baed-3fff03383362" ownerguid="5bb29704-fe0f-4594-9622-ce0aa42b93c8"> -<Abbreviation> -<AUni ws="en">6.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.428" /> -<DateModified val="2022-9-23 16:55:8.428" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to harvesting crops. If there is an important crop and there are a lot of words that refer to harvesting it, set up a special domain for it, such as 'Harvest rice' or 'Harvest coconuts'. If there is more than one such crop, set up a separate domain for each of them.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Harvest</AUni> -</Name> -<Questions> -<objsur guid="b63fe9f0-15d4-4da5-a5bb-97a0765c583d" t="o" /> -<objsur guid="0d7b45c3-e9ac-42a0-8985-ec96d58aed1e" t="o" /> -<objsur guid="f9557f61-ce25-4d30-b39f-2f54a587bebe" t="o" /> -<objsur guid="0c25be57-2307-4f6a-975b-b0e22f4c86e6" t="o" /> -<objsur guid="2162eb83-d27a-4874-83cb-475f4ac28ff1" t="o" /> -<objsur guid="36372816-1267-4cbe-af02-6d9e4c0ecf5c" t="o" /> -<objsur guid="8ce189cc-c677-4c99-be1b-83dce2f15de6" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="0e5a6bd0-470f-4231-9f57-a73b725807f4" t="o" /> -<objsur guid="35faefb3-7498-4735-9b05-e7035dd368fc" t="o" /> -<objsur guid="a8bfd196-8b54-4084-b11a-fe6e8bc5da4c" t="o" /> -<objsur guid="4bedae6a-1df4-40e5-8a2f-ab0a1f41997e" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="c2631c28-3dc1-4afc-b5a0-5278120d1879" ownerguid="6e7d10f8-6da5-4a8a-a06d-952511194105"> -<ExampleWords> -<AUni ws="en">lightened</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that has been made light?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c264c264-6700-449e-9aba-869d83699a9c" ownerguid="fd33670e-ef16-4566-a62e-aa077e58407b"> -<ExampleWords> -<AUni ws="en">honk, toot, blare, beep</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(22) What words refer to the sound of a car horn?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c267b9eb-b9b7-4551-abb5-65b6c51be24f" ownerguid="df2ee830-0668-43d7-8a32-e2fd3e7b31d8"> -<Question> -<AUni ws="en">(16) narrative time: the use of a form with no other past uses for reporting a past narrative.</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c267fae2-30e4-49ed-bb20-3ad499bddf93" ownerguid="6fbe39fb-a4cb-4fcf-830b-8875fd4324e0"> -<ExampleWords> -<AUni ws="en">force something on, impose, inflict something on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to forcing someone to accept something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c26fdcd4-5ead-4eb0-8bd0-ebf01e06e4e6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cedru; cedro</AUni> -<AUni ws="qvm-x-acl">cedru; cedru; cedro</AUni> -<AUni ws="qvm-x-akh">cedru; cedro</AUni> -<AUni ws="qvm-x-akl">cedru; cedru; cedro</AUni> -<AUni ws="qvm-x-ame">cedru; cedro</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cedro.1</AUni> -<AUni ws="qvm-x-acl">+cedro.1</AUni> -<AUni ws="qvm-x-akh">+cedro.1</AUni> -<AUni ws="qvm-x-akl">+cedro.1</AUni> -<AUni ws="qvm-x-ame">+cedro.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.102" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c04283f0-8fcb-4e0e-82c7-6402dcd361ec" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cedro.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d2178968-475c-458f-9d74-6acd17c52e51" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="77e18ab0-b34a-45a0-8ab7-0e1fb5bdefe7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cedro.1 
\entryTyp root 
\gENG 
\gSPN 
\e +cedro.1 
\c N0 
\ach cedru / ~_# 
\ach cedro / _# 
\akh cedru / ~_# 
\akh cedro / _# 
\acl cedru / ~_# 
\acl cedru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cedro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cedru / ~_# 
\akl cedru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cedro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cedru / ~_# 
\ame cedro / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="c274abbe-1662-467f-a4a7-84355e8c7041" ownerguid="f6c6d931-47ff-499a-8f5c-fe587d46d78d"> -<Form> -<AUni ws="qvm-x-ach">shi</AUni> -<AUni ws="qvm-x-acl">shi</AUni> -<AUni ws="qvm-x-akh">shi</AUni> -<AUni ws="qvm-x-akl">shi</AUni> -<AUni ws="qvm-x-ame">shi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e1-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="8378f21c-cf54-437a-9d41-a303c764b326" t="r" /> -</PhoneEnv> -</rt> -<rt class="MoStemAllomorph" guid="c274d131-772c-4fbd-8540-f481e90f66e2" ownerguid="5be839f1-0799-44e9-b3fc-7bc558cef1eb"> -<Form> -<AUni ws="qvm-x-ach">shuma; shumä</AUni> -<AUni ws="qvm-x-acl">shuma; shumä</AUni> -<AUni ws="qvm-x-akh">shuma; shumä</AUni> -<AUni ws="qvm-x-akl">shuma; shumä</AUni> -<AUni ws="qvm-x-ame">shuma; shumä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c27607b8-4992-4240-82c5-28d56a2715ce" ownerguid="780fbf89-f2ba-404c-b288-f6ca637bbc90"> -<ExampleWords> -<AUni ws="en">continuum</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something that continues?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c27877a4-94f1-4f47-a4d2-05c4fb7fbf20" ownerguid="62c41d98-6222-4129-9b0e-5854f2463531"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bad.person</AUni> -<AUni ws="es">malo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8781e79e-c441-4d2b-96a7-2eb8f817b7bd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c2798de5-f2b1-4545-83ec-9bc463b2466c" ownerguid="45d867c7-8496-4c92-bb41-b7db5db47717"> -<ExampleWords> -<AUni ws="en">dumpy, tubby, stout, stocky, squat, stubby</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who is fat and short?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="c27b87cf-1211-4df2-96b1-12c416edabbe" ownerguid="57225f57-ba51-45d7-b6d2-b22052877ea4"> -<Abbreviation> -<AUni ws="en">4.2.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.217" /> -<DateModified val="2022-9-23 16:55:8.217" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to humor.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25L Laugh, Cry, Groan x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Humor</AUni> -</Name> -<OcmCodes> -<Uni>522 Humor</Uni> -</OcmCodes> -<Questions> -<objsur guid="d25b1f59-98a4-4d65-a7b3-819e5bbe19a2" t="o" /> -<objsur guid="cbb26a29-e43e-4078-a9a8-41030a57fec7" t="o" /> -<objsur guid="c9a90ddb-98a0-4244-a7ea-828d2c240057" t="o" /> -<objsur guid="c005397b-5296-4d80-89dd-2dc522b6b1f6" t="o" /> -<objsur guid="eaa54092-a987-49f7-aafe-19ff369305d9" t="o" /> -<objsur guid="12a67b3b-17c8-4d82-9e33-b1791031eb53" t="o" /> -<objsur guid="25a4ace8-a46e-47bb-9597-d055f72abf62" t="o" /> -<objsur guid="ae9e6604-edde-4d95-a18b-3e871e61ab6f" t="o" /> -<objsur guid="e82bdfd7-8ec0-4469-beb4-8e5858d016b4" t="o" /> -<objsur guid="cf526bd7-effd-4a6c-866a-389ff09086d8" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="cbc0a8f5-9cba-41d2-a7e5-565fbf09c8c4" t="r" /> -<objsur guid="e2d3294b-4463-48bb-95e4-8c9b5238ecec" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="37a08f65-5a79-4e17-8e19-0975d6531d64" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="c27bc227-6861-449b-956c-42c1f33c132a" ownerguid="480ee451-64dd-4bad-bd85-c6811a8eb4cb"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="c280d71d-751b-4cdf-b718-3a77cbabeecb" ownerguid="7518432e-ccf7-4713-b822-fb1c013a6d7c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOL 1.6 Quiruncunapis waguncunapis leonpanogragmi lauchi cashga.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="c2891be6-e7d7-41d5-add0-da25e169a446"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">revelación; revelacion</AUni> -<AUni ws="qvm-x-acl">revelación; revelacion</AUni> -<AUni ws="qvm-x-akh">revelación; revelacion</AUni> -<AUni ws="qvm-x-akl">revelación; revelacion</AUni> -<AUni ws="qvm-x-ame">revelación; revelacion</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+revelación</AUni> -<AUni ws="qvm-x-acl">+revelación</AUni> -<AUni ws="qvm-x-akh">+revelación</AUni> -<AUni ws="qvm-x-akl">+revelación</AUni> -<AUni ws="qvm-x-ame">+revelación</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.348" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2287115c-850a-4910-bd2d-c71276f89471" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+revelación</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="06073e56-0e91-40f7-a363-2cfdf4430e52" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a6fb00fa-b777-4d15-b033-d26d99ed07e7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +revelación 
\entryTyp root 
\gENG 
\gSPN 
\e +revelación 
\c N0 
\mp +FinalC 
\ach revelación / _# 
\ach revelacion / ~_# 
\akh revelación / _# 
\akh revelacion / ~_# 
\acl revelación / _# 
\acl revelacion / ~_# 
\akl revelación / _# 
\akl revelacion / ~_# 
\ame revelación / _# 
\ame revelacion / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="c28bfe3d-38df-47f4-81ac-47db4ce988b5" ownerguid="e135341c-48c4-4a21-bf6f-ecf9dc978202"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c28c46fa-f939-45d1-b32a-67d5ffa7a25f" ownerguid="286ee16c-a218-43d5-bbac-ab15f80c3fcf"> -<ExampleWords> -<AUni ws="en">be enough, do, suffice, cover, last, meet someone's needs, get by, afford to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that there is enough of something for what you need?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c28d9b7e-1a1c-440d-90c4-73f9c0759901" ownerguid="f352a437-58f2-4920-aec3-eda8041f7447"> -<ExampleWords> -<AUni ws="en">be the first to do something, show the way, lead the way, pioneer, break new ground</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to doing something that has never been done before?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c28f493f-a960-40a0-8426-c140366cb02b" ownerguid="b11420cb-ee8d-461a-8f3f-b55fe00a2b5f"> -<Form> -<AUni ws="qvm-x-ach">washa</AUni> -<AUni ws="qvm-x-acl">washa</AUni> -<AUni ws="qvm-x-akh">washa</AUni> -<AUni ws="qvm-x-akl">washa</AUni> -<AUni ws="qvm-x-ame">washa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="c292abfd-776d-49ad-83f1-079ab3875fe2" ownerguid="17703d2d-8933-43b5-9ead-2f46c9ced38e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">steril.land</AUni> -<AUni ws="es">tierra.estéril</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a26ffae3-6efd-4572-9b48-ae2ef2655be7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c292c4b0-114f-416c-9f24-4f3fa3206f63" ownerguid="56f459a1-d5cf-47b3-9749-f4b9c71f58f9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c297f310-b4a2-463b-89cb-6ca960643cc4" ownerguid="c8c74ec6-3f7a-4b45-b0e9-399b97c4a800"> -<ExampleWords> -<AUni ws="en">gain your freedom, gain your liberty, win your freedom</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to becoming free?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c298c3e3-a2a2-4575-bb9a-70a039837cea" ownerguid="8da299ce-1c69-47f8-aa99-dac4a6ebf1ed"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="c29b7b74-c6bd-401b-8c7a-422853a14a83"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tacshi</AUni> -<AUni ws="qvm-x-acl">tacshi; tacshe</AUni> -<AUni ws="qvm-x-akh">takshi</AUni> -<AUni ws="qvm-x-akl">takshi; takshe</AUni> -<AUni ws="qvm-x-ame">takshi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*takshi</AUni> -<AUni ws="qvm-x-acl">*takshi</AUni> -<AUni ws="qvm-x-akh">*takshi</AUni> -<AUni ws="qvm-x-akl">*takshi</AUni> -<AUni ws="qvm-x-ame">*takshi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.774" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="859e9176-f4be-4391-99ca-111e7f20c935" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*takshi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b14f9a07-4b4c-4d74-b681-7228ec43270e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0837226d-2a90-406c-b17d-dcdf0e89d553" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *takshi 
\entryTyp root 
\gENG empty 
\gSPN vaciar 
\e *takshi 
\c V2 
\mp +FinalI 
\ach tacshi 
\akh takshi 
\acl tacshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tacshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl takshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl takshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame takshi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c29f92f9-2781-4fde-9d47-137dbe748191" ownerguid="12f12bf3-f232-4477-bf39-d91b7f55c2c3"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Mary <often> washes the dress.; I have <frequently> lent John money.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">often, frequently, time after time, time and again, repeatedly, many a time, hundreds of times, half the time, at frequent intervals</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate how often something happens?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c2a0e017-4097-41d4-9ca2-c16d8154b3dd" ownerguid="b2bb077a-92c8-4e54-8dfa-c89efd60b82d"> -<ExampleWords> -<AUni ws="en">poultry, chicken, duck, goose, turkey, pigeon, canary, parrot, guinea fowl</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What birds are domesticated?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c2a100ad-9da3-45cb-88f8-12b76fac8d0b" ownerguid="1c00eec6-a852-48f6-aea6-f3b0d73f95b3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="c2a254da-0fb7-4748-ab3d-a4cde4aa5a82"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">masha</AUni> -<AUni ws="qvm-x-acl">masha</AUni> -<AUni ws="qvm-x-akh">masha</AUni> -<AUni ws="qvm-x-akl">masha</AUni> -<AUni ws="qvm-x-ame">masha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*masha.n</AUni> -<AUni ws="qvm-x-acl">*masha.n</AUni> -<AUni ws="qvm-x-akh">*masha.n</AUni> -<AUni ws="qvm-x-akl">*masha.n</AUni> -<AUni ws="qvm-x-ame">*masha.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.354" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eed6426b-6580-4d16-84d9-92578a76c823" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*masha.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="20082b62-9dfd-498a-89a1-f92039b1d410" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3b4ec7ce-4889-4666-a80f-3e709a917893" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *masha.n 
\entryTyp root 
\gENG son.in.law 
\gSPN yerno 
\e *masha.n 
\c N0 
\ach masha 
\akh masha 
\acl masha 
\akl masha 
\ame masha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c2a57bf3-991d-453d-94c8-993e7de9afd2" ownerguid="4cb8b433-4efa-4698-8ebd-0f00f8fc3f66"> -<ExampleWords> -<AUni ws="en">uncommitted, nominal, lukewarm</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who is not devout?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="c2a7c837-c31c-414a-85f0-b37c6b3dc3a6" ownerguid="f85d098c-f4f9-4890-bbc1-02d70546fdd3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mana</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mana</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mana</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mana</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mana</Run> -</AStr> -</Form> -<Morph> -<objsur guid="3908bb21-4c84-48c8-95f9-5530ba8f5299" t="r" /> -</Morph> -<Msa> -<objsur guid="b2b2cafc-4a33-4aaf-bb37-ad49d349f0bb" t="r" /> -</Msa> -<Sense> -<objsur guid="156db732-96a6-48d2-ba6a-889cc6f72853" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="c2aa94ca-7811-49c4-ae78-28b23cdef80d" ownerguid="59a16c9d-9192-494b-8996-26d508ede738"> -<Form> -<AUni ws="qvm-x-ach">sandalia</AUni> -<AUni ws="qvm-x-acl">sandalia</AUni> -<AUni ws="qvm-x-akh">sandalia</AUni> -<AUni ws="qvm-x-akl">sandalia</AUni> -<AUni ws="qvm-x-ame">sandalia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c2b4c8ca-a6e8-4056-ab1f-e0331490ca0c" ownerguid="4f516445-e044-4d9c-ac9b-a3178f72b405"> -<ExampleWords> -<AUni ws="en">go to the movies, watch a movie, go to the cinema, go to the pictures, audience, moviegoer, ticket</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to watching a movie?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c2b5dc83-a330-4c0a-a853-42984087a09c" ownerguid="f7eed06a-3d04-48d3-81a6-a30f69fc03d8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="c2b720f5-1123-446e-9f60-088a3272b889" ownerguid="21167445-f1b1-49b4-b147-bc792616c432"> -<Abbreviation> -<AUni ws="en">8.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.640" /> -<DateModified val="2022-9-23 16:55:8.640" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to taking time to do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>67E Duration of Time without Reference to Points or Units of Time: Time, Spend Time, Always, Eternal, Old, Immediately, Young</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Take time</AUni> -</Name> -<Questions> -<objsur guid="0d6c78c3-0926-48b4-b529-77d16b49e3e8" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="5bb495a5-ab5b-4409-8cd1-e48b56401fad" t="o" /> -<objsur guid="7ea946fb-6469-4f21-a5a4-7963878e6fe2" t="o" /> -<objsur guid="c8185ca6-567a-40ef-939f-ffefdd9a4770" t="o" /> -<objsur guid="f3a26e0a-727f-43ab-9310-88b8cec8f6d7" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="c2ba5e10-54af-43aa-abf1-ff31ad72ed31" ownerguid="b16de6a0-71dd-448c-9ffa-49f6646a5219"> -<ExampleWords> -<AUni ws="en">race, gallop, dash, make a dash, tear (along), streak, double time, sprint, charge, dart, scurry, scuttle, scamper, scoot, stampede, bound, bolt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to running quickly?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c2bb70db-0d0d-4aac-b527-88441f97e2db" ownerguid="08788e9a-93b8-4a2e-ab01-dea177f061e8"> -<ExampleWords> -<AUni ws="en">propose a toast</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What happens at a feast?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c2bc1b5e-ede0-4924-8f14-91fd344932dd" ownerguid="63802f24-056b-41b9-9046-1daf869fa622"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sub.roofing</AUni> -<AUni ws="es">techado.inicial</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="20b29a54-4436-41f8-b4ca-2529651db539" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c2bd856a-cc49-49c4-bc45-4f0987720bbd" ownerguid="38c7bec1-cd8b-4d1c-9d26-a2685955bf94"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c2c005d0-788f-4115-aac6-014ffc3e2a54" ownerguid="8f4c9266-a025-4b7a-bd67-fe0c043bf6f5"> -<ExampleWords> -<AUni ws="en">exact, accurate, faithful, strict, literal, word for word, just</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that is exactly the same as another thing?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c2c30df4-1993-4159-9b00-023271e69b16" ownerguid="c30e4dcd-a9cf-45c8-81ea-e9bd19d61bb7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c2c43aa1-8da1-4bb4-a9c6-6d0a04817b50" ownerguid="4153416a-784d-4f7c-a664-2640f7979a14"> -<ExampleWords> -<AUni ws="en">river, stream, streamlet, creek, brook, brooklet, rill, rivulet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to rivers of different sizes?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c2c44f7a-4add-4907-addd-12cb05044695"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lagtu</AUni> -<AUni ws="qvm-x-acl">lagtu; lagtu; lagto</AUni> -<AUni ws="qvm-x-akh">laqtu</AUni> -<AUni ws="qvm-x-akl">laqtu; laqtu; laqto</AUni> -<AUni ws="qvm-x-ame">laqtu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llaqtu.n</AUni> -<AUni ws="qvm-x-acl">*llaqtu.n</AUni> -<AUni ws="qvm-x-akh">*llaqtu.n</AUni> -<AUni ws="qvm-x-akl">*llaqtu.n</AUni> -<AUni ws="qvm-x-ame">*llaqtu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.164" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5cfd1f2d-3642-4a9e-b03c-64b0fc39c7f5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llaqtu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b012ffc8-9c79-43c1-bfb1-36f3162a3578" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3ab7c4d2-ff23-490c-9c30-e5796131a73c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llaqtu.n 
\entryTyp root 
\gENG dull 
\gSPN gastado 
\e *llaqtu.n 
\c N0 
\ach lagtu 
\akh laqtu 
\acl lagtu / _# 
\acl lagtu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lagto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl laqtu / _# 
\akl laqtu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl laqto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame laqtu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="c2c5b8ff-7941-4a51-9856-8399beac19a3" ownerguid="b089f0be-e6a0-44f5-aa1f-7d9744e63641"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c2c80847-1f60-4670-9234-4e92cb23a0a2" ownerguid="0f66f970-4598-4b80-92f4-1d5fe4f0a8ea"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/NOSUFF V0/NOSUFF ONSHEV/NOSUFF R0/NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">QUERY</AUni> -<AUni ws="es">PRGN</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="22f03c3e-bf6a-4c6c-b02f-eb8bd0398ff6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c2ca53ad-5d00-46e2-b1e3-f8ad6f3ba0b2" ownerguid="a1ce19c4-d12c-46da-a718-6d03949b3db1"> -<ExampleWords> -<AUni ws="en">sharpen</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) How are the weapons cared for?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c2ce9ebf-1618-42bf-804f-972883902db4" ownerguid="98830eda-3997-4f4a-9ba4-664df669e7e2"> -<ExampleWords> -<AUni ws="en">wall, palisade, rampart</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a wall around a fort?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c2d00e99-b167-482d-a358-ac4af16e7097" ownerguid="cfb159f7-82f6-4789-b9b4-8f611820f350"> -<ExampleWords> -<AUni ws="en">spider, arachnid</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to spiders?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c2d52c62-384b-44f4-8ec0-99721eecfa83"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">watya</AUni> -<AUni ws="qvm-x-acl">watya</AUni> -<AUni ws="qvm-x-akh">watya</AUni> -<AUni ws="qvm-x-akl">watya</AUni> -<AUni ws="qvm-x-ame">watya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*watya.n</AUni> -<AUni ws="qvm-x-acl">*watya.n</AUni> -<AUni ws="qvm-x-akh">*watya.n</AUni> -<AUni ws="qvm-x-akl">*watya.n</AUni> -<AUni ws="qvm-x-ame">*watya.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.576" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="db36c814-4276-42c5-a13d-d1e8097fdb5e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*watya.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="13e9f84a-f74e-444a-ade8-0b2c6d780b8b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e430f61b-d137-44f9-ad65-d3367dd50c05" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *watya.n 
\entryTyp root 
\gENG 
\gSPN carne.asado 
\e *watya.n 
\c N0 
\ach watya 
\akh watya 
\acl watya 
\akl watya 
\ame watya</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="c2d6859c-45b7-4aad-bc9d-ef0bfc80fe86" ownerguid="f71abb3b-cb3b-47b1-a381-d9a68f3c2cb7"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 18.17 Contrapartin declaraptinragmi imanog cashgantapis musyan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="c2d94060-79a7-48e4-a9a7-a86b40050a0d" ownerguid="753a3f61-c380-483d-8c0a-588acdfbba17"> -<Form> -<AUni ws="qvm-x-ach">cuaquer</AUni> -<AUni ws="qvm-x-acl">cuaquer</AUni> -<AUni ws="qvm-x-akh">cuaquer</AUni> -<AUni ws="qvm-x-akl">cuaquer</AUni> -<AUni ws="qvm-x-ame">cuaquer</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="c2dbe83a-d638-45ac-a6d5-5f041b9dde71" ownerguid="32bebe7e-bdcc-4e40-8f0a-894cd6b26f25"> -<Abbreviation> -<AUni ws="en">2.5.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.47" /> -<DateModified val="2022-9-23 16:55:8.47" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words for being disabled--to be injured or born with a condition, so that some part of your body does not work.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Disabled</AUni> -</Name> -<OcmCodes> -<Uni>732 Disabilities; Handicapped; 734 Invalidism</Uni> -</OcmCodes> -<Questions> -<objsur guid="4d918726-a553-46fd-b6c9-9ca02c63764a" t="o" /> -<objsur guid="9d498f67-84ff-4309-9477-3615dcb41c79" t="o" /> -<objsur guid="25a7db3b-dc79-4f75-8ecb-95a1cc1cc3a2" t="o" /> -<objsur guid="1f398e75-b03c-4d5e-a315-67f26c2d4414" t="o" /> -<objsur guid="ad79ba7a-b8da-4239-b4e1-43e6a8c5cb23" t="o" /> -<objsur guid="595391d4-e7ee-4756-80ac-b32b2ba54c50" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b602c0e1-5398-4cc9-850b-7cfb5c592d13" t="o" /> -<objsur guid="23fb1571-c04e-4850-b499-f170bc45247f" t="o" /> -<objsur guid="3be7e3fe-89d4-471a-92bd-8c70fcb146bb" t="o" /> -<objsur guid="d2f05cc8-1a3f-4bc2-9a2b-38174bb84091" t="o" /> -<objsur guid="4a5c8fdb-c8a0-49d2-a0d6-342428682d65" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="c2dd3616-fdf8-421d-aee1-c89fa0a78153" ownerguid="30ea3057-753d-4c4c-9b1f-ed30e569feea"> -<ExampleWords> -<AUni ws="en">session, the court is now in session</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the time when the court is in session?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c2dda22f-4f2e-4a59-9e73-212d567eb079" ownerguid="7fe69c4c-2603-4949-afca-f39c010ad24e"> -<ExampleWords> -<AUni ws="en">function</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to the functions of the body?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c2ded748-7ff9-4df9-9870-670c4b747eaa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">firma</AUni> -<AUni ws="qvm-x-acl">firma</AUni> -<AUni ws="qvm-x-akh">firma</AUni> -<AUni ws="qvm-x-akl">firma</AUni> -<AUni ws="qvm-x-ame">firma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+firma</AUni> -<AUni ws="qvm-x-acl">+firma</AUni> -<AUni ws="qvm-x-akh">+firma</AUni> -<AUni ws="qvm-x-akl">+firma</AUni> -<AUni ws="qvm-x-ame">+firma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.558" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b810259d-6f3f-4ae0-9a39-2e036ad66bb0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+firma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e45d74d3-c8ce-4348-9f18-2d616660b59f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="62fcb085-00dd-4c64-9b18-8e543a314a3f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +firma 
\entryTyp root 
\gENG signature 
\gSPN firma 
\e +firma 
\c N0 
\ach firma 
\akh firma 
\acl firma 
\akl firma 
\ame firma</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c2e04ebe-8e21-45a1-b5c7-d0a6f7e02409" ownerguid="d01f1c51-522e-4b35-81b3-00577dbfa3bd"> -<ExampleWords> -<AUni ws="en">livery, tartan, team colors</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to a color or pattern of colors used by a group of people to identify themselves?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c2e2f6dc-5c3c-4d59-a77d-3222c9f42d72" ownerguid="e84c68d7-7b45-45bc-a3ea-6b8676c14233"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="c2e40e1e-4ddf-40ad-b6c8-a89417fc2b7b" ownerguid="cc1d95ae-fc7b-4987-a2b1-fb8113600330"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="c2e5f763-39fa-45d5-a666-f899fe9412af" ownerguid="c978d827-bb9e-4501-b87f-c1eb215435d1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="c2ebfbd0-5e63-4232-86c9-625e47379016"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ri; ra</AUni> -<AUni ws="qvm-x-acl">ri; re; ra</AUni> -<AUni ws="qvm-x-akh">ri; ra</AUni> -<AUni ws="qvm-x-akl">ri; re; ra</AUni> -<AUni ws="qvm-x-ame">ri; ra</AUni> -</Custom> -<AlternateForms> -<objsur guid="32a89aca-7ab0-40b1-a1b6-8d284bda57b6" t="o" /> -<objsur guid="ec6359d2-b25a-466e-b6a0-4a7efa980490" t="o" /> -</AlternateForms> -<DateCreated val="2022-9-23 18:26:20.548" /> -<DateModified val="2022-10-19 20:34:21.844" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="becb3215-9f6d-4086-9380-8988bc895431" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">PNCT1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fd75ba47-7348-4c70-9565-ca4ec1c2b5c2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="525e7867-8f63-47f0-bac2-1277fb0d27f3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx PNCT1 
\entryTyp suffix 
\gENG PNCT1 
\gSPN PNT1 
\e PNCT1 
\c V1/V1 V2/V2 
\o 000 
\mp PMlowered 
\ach ri 
\ach ra morphlowered 
\akh ri 
\akh ra morphlowered 
\acl ri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl re +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ra morphlowered 
\akl ri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl re +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ra morphlowered 
\ame ri 
\ame ra morphlowered 
\mp +FinalI 
\mcc PNCT1 / ~_ IN1 | force SUD 
\mcc PNCT1 / IMPFV1 ~_ 
\mcc PNCT1 / ~_ DUR 
\mcc PNCT1 / ~_ UP CAUS 
\mcc PNCT1 / ~_ PNCT1</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="c2ec9cee-7fe3-44f2-9008-c8b42f6f78dd" ownerguid="7b513a02-c3ae-4243-9410-16854d911258"> -<Abbreviation> -<AUni ws="en">9.7.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.728" /> -<DateModified val="2022-9-23 16:55:8.728" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the proper names of the families that exist within the language community. If your culture does not use family names, just leave this domain empty.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Family names</AUni> -</Name> -<Questions> -<objsur guid="80cb2f95-fb16-45fc-824f-58e387083337" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="c2edbe29-3b61-4be2-b7ed-1452341b3422" ownerguid="9b476afd-58c2-46a2-8294-449ac4aad3a9"> -<ExampleWords> -<AUni ws="en">courtyard, holy place, holy of holies, altar, laver, lamp stand</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the parts of a temple?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c2ef9fc9-2660-4331-bf49-10ab6920bdd0" ownerguid="0cd68f79-9bea-45ed-a980-2a3606b35c22"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">sopa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7560472d-a803-46e7-aac8-b8f90bec1c7e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="c2f01aa8-9f94-43c9-9ada-b1e4a60aba07" ownerguid="c5282457-be5f-4ce9-a802-91140cb0a22b"> -<Abbreviation> -<AUni ws="en">2.1.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the parts of the arm.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Arm</AUni> -</Name> -<Questions> -<objsur guid="e32f8399-0a96-45e6-a0f8-4d97101f784d" t="o" /> -<objsur guid="09b161bb-f4b4-4b51-8839-87fd772747d9" t="o" /> -<objsur guid="5426e421-9bd3-4283-9e44-fe1abe4fc36e" t="o" /> -<objsur guid="bc3a1e67-d4b0-42ff-b653-0b769c179b3d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="c2f143ab-144a-4bff-9646-330c2ffb2ac8" ownerguid="73b58acf-e488-4618-8773-806a170d4e9d"> -<Form> -<AUni ws="qvm-x-ach">parlu</AUni> -<AUni ws="qvm-x-acl">parlu; parlu; parlo</AUni> -<AUni ws="qvm-x-akh">parlu</AUni> -<AUni ws="qvm-x-akl">parlu; parlu; parlo</AUni> -<AUni ws="qvm-x-ame">parlu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="c2f99132-e6ba-4154-8dd4-52c1798b4325" ownerguid="17fb1c0c-9be2-49fd-bad6-b97d9b55d338"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="f66e1459-3efb-45ab-b7c3-ae8ef6f354cc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c2fa4d8a-cf9e-455d-b83a-18479f241b4b" ownerguid="e6ad4d42-6ddc-4d9a-80a8-5c7bd0262160"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c30123b3-f6d0-43b9-800b-f38639fe5a26" ownerguid="f41044c3-dd97-4d74-92ee-890be76e7ad4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="f75570b1-6054-4102-b1e6-fe0688a25944" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c301d2f0-7e9d-468b-90a5-1dc40707604b" ownerguid="b4aa4bbd-8abf-4503-96e4-05c75efd23d5"> -<ExampleWords> -<AUni ws="en">cloud up, deteriorate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe the weather when it is getting worse?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c302d6ca-0dff-45aa-b8f8-b22f10ccaa26" ownerguid="b2830b72-c642-484f-9485-24682aa11ed8"> -<ExampleWords> -<AUni ws="en">clairvoyant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe someone who can divine secrets?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c30c1291-f682-4244-8976-ad2c450c2e2d" ownerguid="801816c5-1843-468e-87ec-429ca2e1df4c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="f89461c7-03dc-4dc1-8963-55fcf3fb8ebf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c30daabe-9a8c-4ad8-988a-d95526f11d80" ownerguid="430d9a4f-ce0e-42ac-b4ef-464c359c5de1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">suck</AUni> -<AUni ws="es">chupar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d0acef7f-85ff-4f95-b112-03d9d858ca22" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c30e4dcd-a9cf-45c8-81ea-e9bd19d61bb7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">artesa:nu</AUni> -<AUni ws="qvm-x-acl">artesa:nu; artesa:nu; artesa:no</AUni> -<AUni ws="qvm-x-akh">artesa:nu</AUni> -<AUni ws="qvm-x-akl">artesa:nu; artesa:nu; artesa:no</AUni> -<AUni ws="qvm-x-ame">artesa:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+artesano</AUni> -<AUni ws="qvm-x-acl">+artesano</AUni> -<AUni ws="qvm-x-akh">+artesano</AUni> -<AUni ws="qvm-x-akl">+artesano</AUni> -<AUni ws="qvm-x-ame">+artesano</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.830" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="372b9136-b494-4155-a638-41b7ebf6e074" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+artesano</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c2c30df4-1993-4159-9b00-023271e69b16" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="89e7c29b-038b-4d2c-9f2e-72665c7e17b1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +artesano 
\entryTyp root 
\gENG 
\gSPN 
\e +artesano 
\c N0 
\ach artesa:nu 
\akh artesa:nu 
\acl artesa:nu / _# 
\acl artesa:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl artesa:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl artesa:nu / _# 
\akl artesa:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl artesa:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame artesa:nu 
\i 2KI 24.14 Tsaynoglami prësu apacärergan capitancunata, alinnin soldäducunata, artesänucunata
\f + 24.14 Artesänucunaga caycan carpintërucuna, suëlapita imatapis ruragcuna, awata awagcuna, mancata ruragcuna y mas imatapis shumag yachag runacunapis.
\f* y herriërucunatapis.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c310cf3e-8c9c-4752-8be0-27bc1948b02e" ownerguid="2f151c35-72e1-4665-bc05-6fc70a3ecff2"> -<ExampleWords> -<AUni ws="en">rude, uncomely, uncouth, ungainly, ungraceful, unseemly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words indicate that something is done in an ugly way?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c3113ad2-8c26-4159-aabf-5a0fff585cb4" ownerguid="7e55326a-5377-4efa-b4e6-427d09c38da8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">magic</AUni> -<AUni ws="es">mática</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aab47664-113f-4a52-8a68-7993877af101" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c31288eb-6b87-487f-95fe-7150060a5d81" ownerguid="e8a70fbc-2b48-46cc-b6cc-b601882c463b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="c3132c71-1223-4235-b5b0-912733e28d26" ownerguid="0b6b305f-f2ef-41f1-aabd-07862c3f4da0"> -<Form> -<AUni ws="qvm-x-ach">achyauca</AUni> -<AUni ws="qvm-x-acl">achyauca</AUni> -<AUni ws="qvm-x-akh">achyawka</AUni> -<AUni ws="qvm-x-akl">achyawka</AUni> -<AUni ws="qvm-x-ame">achyawka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c313c84c-fa1f-41f0-85fb-0362d86e10a1"> -<AlternateForms> -<objsur guid="811f4b3a-fedc-4bc3-ac30-1fbdffa3a430" t="o" /> -</AlternateForms> -<CitationForm> -<AUni ws="qvm-x-ach">*alliyä</AUni> -<AUni ws="qvm-x-acl">*alliyä</AUni> -<AUni ws="qvm-x-akh">*alliyä</AUni> -<AUni ws="qvm-x-akl">*alliyä</AUni> -<AUni ws="qvm-x-ame">*alliyä</AUni> -</CitationForm> -<DateCreated val="2022-10-11 20:52:48.285" /> -<DateModified val="2022-10-13 15:0:23.424" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5ac434a2-ea33-4673-85d8-a2e7d775fd74" t="o" /> -</LexemeForm> -<MorphoSyntaxAnalyses> -<objsur guid="4ca544e3-d0fa-456f-b2ff-07633275ba38" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="74aa2615-fcd3-4b77-a691-4d9ecd488a2b" t="o" /> -</Senses> -</rt> -<rt class="MoStemMsa" guid="c31489c6-af06-4c67-83a0-2f1ecc3339b3" ownerguid="a8858d53-24ec-4a5a-9f96-b0403126e302"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c3149d4e-05ef-4014-8fbc-d7255fcd4683" ownerguid="188ba7c5-49b2-4162-85f2-778797fd5960"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fat</AUni> -<AUni ws="es">gordo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6835b705-bd58-4085-be16-d3ddf2aff737" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c314af13-78cc-475b-a033-fdd27ec7400e" ownerguid="a4446893-4605-42dd-a26f-8902220567a7"> -<Form> -<AUni ws="qvm-x-ach">uca</AUni> -<AUni ws="qvm-x-acl">uca</AUni> -<AUni ws="qvm-x-akh">uka</AUni> -<AUni ws="qvm-x-akl">uka</AUni> -<AUni ws="qvm-x-ame">uka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c3189012-59d1-475d-91cc-e1be9210a8ba" ownerguid="237998a4-2383-4cc1-bddf-1681e0939c01"> -<Form> -<AUni ws="qvm-x-ach">jucpun</AUni> -<AUni ws="qvm-x-acl">jucpun</AUni> -<AUni ws="qvm-x-akh">jukpun</AUni> -<AUni ws="qvm-x-akl">jukpun</AUni> -<AUni ws="qvm-x-ame">hukpun</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c31ea7a4-5706-4a21-b51c-4cc358824082" ownerguid="73affb6b-d7bb-45f5-b1b2-85227505a490"> -<Form> -<AUni ws="qvm-x-ach">cöpa</AUni> -<AUni ws="qvm-x-acl">cöpa</AUni> -<AUni ws="qvm-x-akh">cöpa</AUni> -<AUni ws="qvm-x-akl">cöpa</AUni> -<AUni ws="qvm-x-ame">cöpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c3222284-e0b5-4b35-84d2-2f2716c8aead" ownerguid="962cb994-0183-4ac5-94b2-82a33f1d64e4"> -<ExampleWords> -<AUni ws="en">vegetable oil, cream, lard, fat, wax, tallow, beeswax, soap</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What types of oil are made from plants and animals?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c324d219-743e-4825-b883-b9ce8c4fe883" ownerguid="effc49dd-6322-4302-899c-4cf540f0e2e4"> -<ExampleWords> -<AUni ws="en">dessert, sweet (n), cake, ice cream, pie, cobbler, cookie, cinnamon roll, candy, chocolate, chocolate bar, pudding, lollipop, syrup, treacle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to sweet foods?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c325dfa1-0dba-48b1-9377-33c36724f15a" ownerguid="1b211112-9a9c-4f18-9a73-8609cb590d7b"> -<Form> -<AUni ws="qvm-x-ach">posision</AUni> -<AUni ws="qvm-x-acl">posision</AUni> -<AUni ws="qvm-x-akh">posision</AUni> -<AUni ws="qvm-x-akl">posision</AUni> -<AUni ws="qvm-x-ame">posision</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="c3267f28-3852-42bb-a03c-caad899870e1" ownerguid="93d7ff09-c75b-40a3-b97f-119018f350c1"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c328e2c1-1fc5-41bd-9c48-d7f93153c4a1" ownerguid="d83ebe2c-c1d6-49ec-a4a9-1cdced843387"> -<ExampleWords> -<AUni ws="en">anesthesiologist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a person who deals with loss of consciousness?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c3296c14-6731-418f-a89a-4c3b487d5fb9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chalwa</AUni> -<AUni ws="qvm-x-acl">chalwa</AUni> -<AUni ws="qvm-x-akh">chalwa</AUni> -<AUni ws="qvm-x-akl">chalwa</AUni> -<AUni ws="qvm-x-ame">chalwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trallwa</AUni> -<AUni ws="qvm-x-acl">*trallwa</AUni> -<AUni ws="qvm-x-akh">*trallwa</AUni> -<AUni ws="qvm-x-akl">*trallwa</AUni> -<AUni ws="qvm-x-ame">*trallwa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.48" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e5a4f194-39a2-4914-bec6-720231354854" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trallwa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0d363b2f-a9b2-456d-a06e-0ca813b1381f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="927bcedd-7757-4958-8700-a8f05a1e27c1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trallwa 
\entryTyp root 
\gENG 
\gSPN 
\e *trallwa 
\c N0 
\ach chalwa 
\akh chalwa 
\acl chalwa 
\akl chalwa 
\ame chalwa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c32c0648-fb06-4e35-bf4f-938b9eb79497" ownerguid="bfe8902a-32a7-4092-93b2-9dcf3dce205f"> -<ExampleWords> -<AUni ws="en">agitation, distraction, pressure, trauma, traumatic experience, turbulence, turmoil</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to something that causes someone to feel upset?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c32c603b-1424-4c82-baec-33cd596a83a6" ownerguid="05a7bbdc-7cf5-47d3-830b-84e1591b11cc"> -<ExampleWords> -<AUni ws="en">legislature, legislative branch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What is the name of the governing body that passes laws?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="c32ccd3b-ad79-4308-b78b-373c1d77b9c6" ownerguid="d0a01de3-c88d-4904-91a9-9ea33ab82528"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -<Sense> -<objsur guid="1b926284-5562-4cf3-8ad2-65536a715093" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="c32f378b-9edd-4188-9d97-caf6f605680a" ownerguid="38b24d20-6502-4cdf-98d5-f507d81b632d"> -<Form> -<AUni ws="qvm-x-ach">pica</AUni> -<AUni ws="qvm-x-acl">pica</AUni> -<AUni ws="qvm-x-akh">pica</AUni> -<AUni ws="qvm-x-akl">pica</AUni> -<AUni ws="qvm-x-ame">pica</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="c32f6536-3f9f-4d6e-90fb-4b375d9d195f" ownerguid="22bde921-33c6-40be-8884-c079ac031cc8"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="691d7f43-bb7c-4918-a38a-41c2dd0c6ea7" t="o" /> -<objsur guid="a307edfc-f639-4259-918e-267056c0df25" t="o" /> -<objsur guid="ecffa310-d56f-4ef4-8ad1-b74add85cc0f" t="o" /> -</MorphBundles> -</rt> -<rt class="LexExampleSentence" guid="c32fa63d-4145-491b-be8d-e7b711dcdab1" ownerguid="ba80cc19-a99a-4dc5-9647-41161b0def58"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Mandagniqui rey cananpag churaptëga gamcunapa tsuriquitami soldädo cananpag sorteädu apanga.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="c3304287-ad57-4fed-9e89-c5effc8cb9fd" ownerguid="447f258b-2160-42c7-9431-ffeeb86edcb8"> -<ExampleWords> -<AUni ws="en">fertile, be able to have children, fertility</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to being able to have children?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c33095fb-6ad0-4b2d-bcb5-a54e9ac16ad6" ownerguid="28a4e00c-de72-4c2a-8b2e-ac12e16c4757"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">piece</AUni> -<AUni ws="es">pieza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cd2d05c6-7d57-4bb0-9dc6-a5a01a7312c4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c330b5ee-012b-4039-9a60-16d9fd9ab309" ownerguid="8ac255d3-6b71-4e67-91bf-6c378c12310b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">friendly</AUni> -<AUni ws="es">amigable</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="be612637-21ee-4e61-b956-062e8d4fba4e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c332f2a6-fb3a-4d2d-95c9-2ce84b6bb3c0" ownerguid="2933a9c1-aa62-46fb-a03c-68aed7fae9b7"> -<ExampleWords> -<AUni ws="en">to heat something, to warm something</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to a fire making something hot?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="c333464c-794c-4575-9443-68832fc18571" ownerguid="5a830da2-9156-4792-889c-fe242bd24aff"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuerdayog instrumentu</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="c3362e39-102b-41d8-920f-969b0102cce6" ownerguid="b8d2fdb9-22ea-4040-8abb-aeeff0399f23"> -<ExampleWords> -<AUni ws="en">fatal, killer, mortal, lethal, deadly, poisonous, toxic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words describe something that can kill someone?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c33687dc-229a-4a5c-98f2-642d79a82f29"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">altus; altoos</AUni> -<AUni ws="qvm-x-acl">altus; altoos</AUni> -<AUni ws="qvm-x-akh">altus; altoos</AUni> -<AUni ws="qvm-x-akl">altus; altoos</AUni> -<AUni ws="qvm-x-ame">altus; altoos</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+altos</AUni> -<AUni ws="qvm-x-acl">+altos</AUni> -<AUni ws="qvm-x-akh">+altos</AUni> -<AUni ws="qvm-x-akl">+altos</AUni> -<AUni ws="qvm-x-ame">+altos</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.719" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b83ee7ed-3a1b-4d16-b87b-6107ef09f390" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+altos</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="84e4ae9e-c0c2-4be7-a55f-8c4ef3685756" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9470ae3d-5f93-4f80-a8d0-016e3a6b8af0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +altos 
\entryTyp root 
\gENG attic 
\gSPN altos 
\e +altos 
\c N0 
\mp NeverLowered 
\ach altus / ~_# 
\ach altoos / _# 
\akh altus / ~_# 
\akh altoos / _# 
\acl altus / ~_# 
\acl altoos / _# 
\akl altus / ~_# 
\akl altoos / _# 
\ame altus / ~_# 
\ame altoos / _# 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c3372018-4f6f-49d9-810f-908056cfab39" ownerguid="6f01b67c-33a0-4ed3-8205-f868e97a1a3a"> -<ExampleWords> -<AUni ws="en">explore</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to going to an unknown place in order to discover what is there?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="c339b70e-606e-490f-bec8-00d4a124cf99" ownerguid="fc4b68a0-31cd-4193-9490-0f488f34fcde"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="c33d118d-4ad8-43a0-80a4-934cb8990717" ownerguid="d39b2432-87d5-4f3e-8101-de06001b42d6"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The feeling is <mutual>.; The two countries signed a <reciprocal> trade agreement.; Effective communication is <two-way>.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">mutual, reciprocal, two-way</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that people do to each other?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c33fa5fa-9f0b-4889-a467-aef3271eba75" ownerguid="34dae3f8-e483-4fe5-893e-8838b910ab6a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">poke</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f31f054d-c34c-4a67-a7f8-f8951078fffb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c3426b54-e1cb-4f91-b851-cbe47a8e612f" ownerguid="fa36de8f-9f3a-47e7-8fea-07834ebcecd8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">half</AUni> -<AUni ws="es">media</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="064f4af5-bff4-443e-a3d9-fce796d4eac2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c345d733-07f9-4247-afc2-9a701514d746" ownerguid="d2df3d6b-f9a5-404e-b3ec-b59dac569484"> -<Form> -<AUni ws="qvm-x-ach">pasha</AUni> -<AUni ws="qvm-x-acl">pasha</AUni> -<AUni ws="qvm-x-akh">pasha</AUni> -<AUni ws="qvm-x-akl">pasha</AUni> -<AUni ws="qvm-x-ame">pasha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c345e756-5574-4cdd-b04c-92a32554fe09" ownerguid="d50f3921-fcea-4ac9-b64a-25bf47dc3292"> -<ExampleWords> -<AUni ws="en">erupt, eruption, spew (gas, lava, ash), explode, blow, produce a cloud, cause earthquakes, bury things (under lava, ash), smoke</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What do volcanoes do?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="c345f278-91ff-463d-b9a6-8abac8a267eb" ownerguid="025da6f4-b1b6-423a-8c0f-b324f531a6f1"> -<Abbreviation> -<AUni ws="en">1.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.978" /> -<DateModified val="2022-9-23 16:55:7.978" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for small plants that have roots, stems, flowers, and seeds, but do not have a wooden trunk (Phylum Spermatophyta, Subdivision Angiospermae). Also include the seedless plants, such as ferns (phylum Pteridophyta, class Filicineae), horsetails (phylum Pteridophyta, class Equisetineae), and club mosses (phylum Pteridophyta, class Lycopodineae). Plants of the Pteridophyta phylum have no flowers or seeds. Ferns have large, divided, feather-like leaves, or fronds. Club mosses are small (rarely over one meter) evergreen plants with simple leaves resembling pine or hemlock needles. Sometimes they grow upright, but often trail on the ground, where they propagate by means of runners. Horsetails send up tall, vertical, jointed stalks with branches covered with scale like leaves.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>3C Plants That Are Not Trees</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Grass, herb, vine</AUni> -</Name> -<OcmCodes> -<Uni>137f Grass and Weeds; 137g Herbs, medicinal, fungus</Uni> -</OcmCodes> -<Questions> -<objsur guid="f56200c9-02b6-4096-8a4b-15314c1fb0dc" t="o" /> -<objsur guid="9cda97c5-684a-42d9-8523-4ef6a4fbcada" t="o" /> -<objsur guid="5f65a516-a61f-4130-9802-bd7247855000" t="o" /> -<objsur guid="a08c03a8-e32f-4ee3-a700-30e974b3b90f" t="o" /> -<objsur guid="8ee3f6e0-3fc0-4ad7-beb2-74869019cdbf" t="o" /> -<objsur guid="9b6391e6-9579-46c6-a2bb-475abadfe963" t="o" /> -<objsur guid="83867be1-ee3c-41ed-9c99-8d124ea2b186" t="o" /> -<objsur guid="bb6bc3d4-31f9-48e9-a3ae-7e1acc694fb5" t="o" /> -<objsur guid="714e9799-7f2a-46b2-91f9-2c251ed7b0cb" t="o" /> -<objsur guid="cee7083b-3ce9-4283-a624-195992f32e24" t="o" /> -<objsur guid="e0c9ee8a-f425-4e78-af58-5e93fb2ca906" t="o" /> -<objsur guid="93fec2b2-fe51-4340-896b-adc499d0769a" t="o" /> -<objsur guid="d5fa1abe-7dcc-4393-9aa8-83521ab1334e" t="o" /> -<objsur guid="37283496-d4d0-4f65-a4c3-c440da999c63" t="o" /> -<objsur guid="5625be74-3fd7-4b25-9723-88b373303387" t="o" /> -<objsur guid="45d7089d-9776-4897-86d0-f650778dfa5d" t="o" /> -<objsur guid="6555b0a2-2375-459f-a082-26df4452842e" t="o" /> -<objsur guid="2ecd24b4-965e-4b8a-930b-c3097b2ef3c0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="c3490bbf-39a3-4fef-96ef-7ff51983c0b6" ownerguid="1ffebc95-cdd8-41f9-977d-ed8556048060"> -<Form> -<AUni ws="qvm-x-ach">dañädu</AUni> -<AUni ws="qvm-x-acl">dañädu; dañädu; dañädo</AUni> -<AUni ws="qvm-x-akh">dañädu</AUni> -<AUni ws="qvm-x-akl">dañädu; dañädu; dañädo</AUni> -<AUni ws="qvm-x-ame">dañädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="c34c14cc-9f77-492b-81a2-1e720e832d87" ownerguid="83828d3b-ccb2-4459-9297-8f46d114c618"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="c3500107-bcff-4a7c-ae37-b114a4d51118" ownerguid="d887b868-775f-4179-a8a9-18256256982c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">̈</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">̈</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">̈</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">̈</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">̈</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1b20df13-0cae-48c6-8db3-2cd0a2126e8d" t="r" /> -</Morph> -<Msa> -<objsur guid="13b178aa-cf95-4902-a68b-959ad06fd6f9" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="c353353b-618c-46a1-8309-0799add623a3" ownerguid="f9d020d6-b129-4bb8-9509-3b4a6c27482e"> -<ExampleWords> -<AUni ws="en">hobby, interest, recreation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to something you do because you are interested in it?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c35349e4-0d48-481d-b1a5-8d0b37bf45ef" ownerguid="d2e73238-ff99-4ba3-8ce6-d8ae98721710"> -<ExampleWords> -<AUni ws="en">All right, Yes you can, Sure, Of course, Help yourself, Be my guest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What do people say when they agree to do something?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="c358b041-7a1a-43d6-8e61-26b9507f559f" ownerguid="935da513-126e-4cab-8e07-625458821181"> -<Abbreviation> -<AUni ws="en">4.2.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.206" /> -<DateModified val="2022-9-23 16:55:8.206" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to meeting together.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Meet together</AUni> -</Name> -<Questions> -<objsur guid="b7a6c0a5-8244-4b9b-b0b9-bdb8ff5e9820" t="o" /> -<objsur guid="81a0599e-2713-439f-93c3-d0eb9e0ff735" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="c35cba91-742c-4b98-b848-dfd520d959cf" ownerguid="3b4b947a-f223-4c87-8839-9f6237cda9f6"> -<Abbreviation> -<AUni ws="en">7.3.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.536" /> -<DateModified val="2022-9-23 16:55:8.536" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to touching something with your hand without moving the thing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>24E Touch, Feel</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Touch</AUni> -</Name> -<Questions> -<objsur guid="e2aad841-4b7d-4c3b-b1eb-0ba2f1415019" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="8596f086-ee46-4245-8d45-2171a60e19e4" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="c35d2def-3683-4bc3-8e74-ded0fcd81d5e" ownerguid="5718fcc8-1eba-4b8d-9b6b-0c8349f53f80"> -<ExampleWords> -<AUni ws="en">bull's-eye, dead center</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the center of a target?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="c36131c3-b5e1-4aac-a7b5-7c9cfa1e8f74" ownerguid="8c28c640-db5b-43e2-a1e6-b0e381962129"> -<Abbreviation> -<AUni ws="en">6.3.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to goats.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Goat</AUni> -</Name> -<Questions> -<objsur guid="e4c90fbe-db6b-4593-ae86-ab2b04de6a38" t="o" /> -<objsur guid="5f652454-0ecf-40c6-9352-b18911fa0eaa" t="o" /> -<objsur guid="d324d7a1-5424-444d-a267-242c6250fddc" t="o" /> -<objsur guid="234712e7-8014-4b3f-83ee-8eb22fe2cbc1" t="o" /> -<objsur guid="bbfaf925-c6ec-467a-9b11-1c6f91781ee1" t="o" /> -<objsur guid="baaa8065-14fd-462b-ae36-2fa530a9a16c" t="o" /> -<objsur guid="9d03d712-2c42-4027-9fab-06ff6c2c555e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="c3645b25-53f3-4750-937f-87c376d8dae1" ownerguid="6415b209-5f89-4a7d-b0f1-0e99d4e35422"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c3653a79-028e-4707-8693-bf8f30cf46b8" ownerguid="889de305-82ad-4d1a-9a97-63733ed27bfc"> -<ExampleWords> -<AUni ws="en">unprepared, unready</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a person who has not prepared?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c365d6a5-a1b3-4ae2-a9f6-8b795b58182b" ownerguid="05ded765-2e82-4ad0-a986-c8e5d1d4a941"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="d29f5f35-5a42-48c3-a842-50ebf435c41d" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="d0b93abd-4f3b-449a-a3d6-f96987968d33" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c367287f-385f-43ed-9fe4-42a77896c1b7" ownerguid="a781d57d-174d-47a6-b6a1-ae635a13df84"> -<ExampleWords> -<AUni ws="en">family, domestic, run in the family</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something about your family?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c36b6ae5-ebb0-48b4-a94c-f5847f9f80fb" ownerguid="83f04eb9-bcd2-4636-bc78-5fcc0bcf6c10"> -<Form> -<AUni ws="qvm-x-ach">chirgui</AUni> -<AUni ws="qvm-x-acl">chirgui; chirgue</AUni> -<AUni ws="qvm-x-akh">chirqi</AUni> -<AUni ws="qvm-x-akl">chirqi; chirqe</AUni> -<AUni ws="qvm-x-ame">chirqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c370da05-f9ea-4e85-88ab-55ac2fbac3a3" ownerguid="ed7930df-e7b4-43c9-a11a-b09521276b57"> -<ExampleWords> -<AUni ws="en">smell, odor, scent, whiff, fume, essence, aroma, bouquet, fragrance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the smell of something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c3751205-7636-4e36-b8c1-cedb1e20faf8" ownerguid="9a20fe99-bf9c-4277-9d2e-ad56e04631d0"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="c3787529-45ae-4c61-8256-bc5e5e3658fa" ownerguid="19b3fbee-ef66-47f4-bc63-edb56b02ae91"> -<Form> -<AUni ws="qvm-x-ach">ancu</AUni> -<AUni ws="qvm-x-acl">ancu; ancu; anco</AUni> -<AUni ws="qvm-x-akh">anku</AUni> -<AUni ws="qvm-x-akl">anku; anku; anko</AUni> -<AUni ws="qvm-x-ame">anku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c37d323d-21de-46b9-b3e8-a01d9cfe94fa" ownerguid="1088cc2f-83ae-4911-8018-401a745dcfd5"> -<ExampleWords> -<AUni ws="en">tonight, this night</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to this night?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c3819f35-2ca1-49fa-9d85-94a75c0564d9" ownerguid="196940fa-c47f-4e11-95ef-7d886b3f2d15"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="c382b5fe-81db-4e5f-96ad-98eda5c778f4" ownerguid="c809691f-b1de-4cbe-993f-1ce88530afd4"> -<Form> -<AUni ws="qvm-x-ach">fïja</AUni> -<AUni ws="qvm-x-acl">fïja</AUni> -<AUni ws="qvm-x-akh">fïja</AUni> -<AUni ws="qvm-x-akl">fïja</AUni> -<AUni ws="qvm-x-ame">fïja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c38569e1-858a-43c7-b482-36188effe39a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">setiembri; setiembre</AUni> -<AUni ws="qvm-x-acl">setiembri; setiembri; setiembre</AUni> -<AUni ws="qvm-x-akh">setiembri; setiembre</AUni> -<AUni ws="qvm-x-akl">setiembri; setiembri; setiembre</AUni> -<AUni ws="qvm-x-ame">setiembri; setiembre</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+setiembre</AUni> -<AUni ws="qvm-x-acl">+setiembre</AUni> -<AUni ws="qvm-x-akh">+setiembre</AUni> -<AUni ws="qvm-x-akl">+setiembre</AUni> -<AUni ws="qvm-x-ame">+setiembre</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.510" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3c380b03-5c35-4d94-883d-ad4af821199d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+setiembre</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ea295731-973c-4f6c-a045-a7ba333e84a6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d840e1a8-2171-41ce-a747-ec512b9a2bb3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +setiembre 
\entryTyp root 
\gENG September 
\gSPN setiembre 
\e +setiembre 
\c N0 
\mp +FinalI 
\ach setiembri / ~_# 
\ach setiembre / _# 
\akh setiembri / ~_# 
\akh setiembre / _# 
\acl setiembri / ~_# 
\acl setiembri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl setiembre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl setiembri / ~_# 
\akl setiembri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl setiembre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame setiembri / ~_# 
\ame setiembre / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="c388c171-01b2-4a74-9854-5713e021a75a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rgu; rga</AUni> -<AUni ws="qvm-x-acl">rgu; rgo; rga</AUni> -<AUni ws="qvm-x-akh">rqu; rqa</AUni> -<AUni ws="qvm-x-akl">rqu; rqo; rqa</AUni> -<AUni ws="qvm-x-ame">rqu; rqa</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.546" /> -<DateModified val="2022-10-15 16:6:52.11" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5ad3e440-59dd-48a8-bd98-6f0e694d2cfc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">OUT</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e7902b1b-e25f-4772-8266-6c795146619f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="58ecf885-b987-45a4-aa3b-37725bf381a0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx OUT 
\entryTyp suffix 
\gENG OUT 
\gSPN AFUERA 
\e OUT 
\c V1/V1 V2/V2 
\o 015 
\mp PMlowered +foreshortens 
\ach rgu 
\ach rga morphlowered 
\akh rqu 
\akh rqa morphlowered 
\acl rgu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl rgo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl rga morphlowered 
\akl rqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rqa morphlowered 
\ame rqu 
\ame rqa morphlowered 
\mcc OUT / ~_ CAUS 
\mcc OUT / *yarqu ~_ 
\mcc OUT / ~_ 1 
\mcc OUT / ~_ PRTSPM3</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="c38902c4-05c6-47ac-a117-5acb59b7c707" ownerguid="100c4fd3-744d-4964-a885-00afa91af0c6"> -<Form> -<AUni ws="qvm-x-ach">gochpa</AUni> -<AUni ws="qvm-x-acl">gochpa</AUni> -<AUni ws="qvm-x-akh">qochpa</AUni> -<AUni ws="qvm-x-akl">qochpa</AUni> -<AUni ws="qvm-x-ame">quchpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c3897f25-75fb-4924-aa9f-6a89785db62b" ownerguid="ac4a936e-6c05-4e73-8d40-dfe4223b47fa"> -<ExampleWords> -<AUni ws="en">partners</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What is each side called?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c389898d-eff7-4f4d-85e1-2c53c32d17c4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chisti; chiste</AUni> -<AUni ws="qvm-x-acl">chisti; chisti; chiste</AUni> -<AUni ws="qvm-x-akh">chisti; chiste</AUni> -<AUni ws="qvm-x-akl">chisti; chisti; chiste</AUni> -<AUni ws="qvm-x-ame">chisti; chiste</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+chiste</AUni> -<AUni ws="qvm-x-acl">+chiste</AUni> -<AUni ws="qvm-x-akh">+chiste</AUni> -<AUni ws="qvm-x-akl">+chiste</AUni> -<AUni ws="qvm-x-ame">+chiste</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.325" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="de56cb1b-96cd-4fab-ab98-f27f949bb248" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+chiste</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f2e5ab9e-bcc6-4d48-ab05-3bbe55d653b6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c91cdd5e-0cc2-4533-9bda-d9dc6c9e509e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +chiste 
\entryTyp root 
\gENG joke 
\gSPN chiste 
\e +chiste 
\c N0 
\mp +FinalI 
\ach chisti / ~_# 
\ach chiste / _# 
\akh chisti / ~_# 
\akh chiste / _# 
\acl chisti / ~_# 
\acl chisti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chiste +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chisti / ~_# 
\akl chisti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chiste +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chisti / ~_# 
\ame chiste / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="c38d2594-3369-4a7d-b358-ba7007a053c9" ownerguid="35628a1d-4e2b-48a5-9beb-4466da40eb6f"> -<Form> -<AUni ws="qvm-x-ach">consuëlu</AUni> -<AUni ws="qvm-x-acl">consuëlu; consuëlu; consuëlo</AUni> -<AUni ws="qvm-x-akh">consuëlu</AUni> -<AUni ws="qvm-x-akl">consuëlu; consuëlu; consuëlo</AUni> -<AUni ws="qvm-x-ame">consuëlu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c38fc277-dc69-47b6-b26d-b0ab5925ebb2" ownerguid="fe18b08e-caf3-406c-8a8b-2ce244aaaaee"> -<Form> -<AUni ws="qvm-x-ach">puri</AUni> -<AUni ws="qvm-x-acl">puri; pure</AUni> -<AUni ws="qvm-x-akh">puri</AUni> -<AUni ws="qvm-x-akl">puri; pure</AUni> -<AUni ws="qvm-x-ame">puri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c3928c26-1def-4e50-9da5-16ff1e6fa779"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chuchau</AUni> -<AUni ws="qvm-x-acl">chuchau; chuchau; chuchao</AUni> -<AUni ws="qvm-x-akh">chuchaw</AUni> -<AUni ws="qvm-x-akl">chuchaw; chuchaw; chuchao</AUni> -<AUni ws="qvm-x-ame">chuchaw</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trutraw</AUni> -<AUni ws="qvm-x-acl">*trutraw</AUni> -<AUni ws="qvm-x-akh">*trutraw</AUni> -<AUni ws="qvm-x-akl">*trutraw</AUni> -<AUni ws="qvm-x-ame">*trutraw</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.198" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="72256843-a201-408f-91fc-51bb071d5b1e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trutraw</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1b9675f6-fbdf-4823-b226-3ef2c8e2205e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="56c2e499-39cf-4d5b-8753-a367450d96c1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trutraw 
\entryTyp root 
\gENG stalk 
\gSPN magáy 
\e *trutraw 
\c N0 
\mp +FinalC 
\ach chuchau 
\akh chuchaw 
\acl chuchau / _# 
\acl chuchau +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chuchao +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chuchaw / _# 
\akl chuchaw +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chuchao +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chuchaw</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c3933cf7-a3c9-43b3-8d66-e4641ba640e5" ownerguid="b6ead5e6-dab5-4941-9017-d03452182709"> -<ExampleWords> -<AUni ws="en">expertise, knowledge, expert knowledge, experience, ability, craftsmanship, training, understanding, proficiency</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used to refer to the knowledge or ability of an expert?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c3941ad5-8d10-49bb-9b2c-d6f60816e5d0" ownerguid="2b82df8b-2188-4ae9-a1eb-b3c50f21199e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wheat</AUni> -<AUni ws="es">trigo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f8141324-cefd-49b1-9c6f-cad8066005c6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c395b369-f4a0-4a67-af62-d1db83b2af24" ownerguid="a7712dab-7710-4b07-8582-3086d0c0bcc0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="c3961388-cc50-4ea3-9095-2f023672fccb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">garruti; garrute</AUni> -<AUni ws="qvm-x-acl">garruti; garruti; garrute</AUni> -<AUni ws="qvm-x-akh">garruti; garrute</AUni> -<AUni ws="qvm-x-akl">garruti; garruti; garrute</AUni> -<AUni ws="qvm-x-ame">garruti; garrute</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+garrote.2</AUni> -<AUni ws="qvm-x-acl">+garrote.2</AUni> -<AUni ws="qvm-x-akh">+garrote.2</AUni> -<AUni ws="qvm-x-akl">+garrote.2</AUni> -<AUni ws="qvm-x-ame">+garrote.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.609" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f2f97271-57b1-4025-975d-b9903dc17c93" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+garrote.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="45972961-d407-466e-af83-7592ac7d2516" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e7ceefd0-f566-44c5-ba12-60826274152d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +garrote.2 
\entryTyp root 
\gENG 
\gSPN bastón 
\e +garrote.2 
\c N0 
\mp +FinalI 
\ach garruti / ~_# 
\ach garrute / _# 
\akh garruti / ~_# 
\akh garrute / _# 
\acl garruti / ~_# 
\acl garruti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl garrute +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl garruti / ~_# 
\akl garruti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl garrute +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame garruti / ~_# 
\ame garrute / _# 
\i MAT 10.10 Tsaynoqpis ama apapäkunkitsu mirkapaykita, trukakärinaykipaq röpaykikunata ni garrutikikunatapis.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c396bc57-0ca2-4531-ae40-72ade36c2328" ownerguid="7d8898d6-6296-4d4d-b8dd-2f48c49f9e98"> -<ExampleWords> -<AUni ws="en">heightened, raised</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that has been made high?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c3977675-e63e-4d29-ab45-354328033c3e" ownerguid="22eed30b-9f29-4845-925a-f553fea63fff" /> -<rt class="WfiMorphBundle" guid="c39af9f9-45e4-4b87-a713-3bd114c25ee3" ownerguid="7b39e22d-bdac-4a5e-bee0-1bf549ccdd75"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ma</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ma</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ma</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ma</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ma</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a9ab8772-4ce9-4712-be14-e5897137c5c1" t="r" /> -</Morph> -<Msa> -<objsur guid="554634ac-1f6d-4bfc-8e9c-9d1dfeca4367" t="r" /> -</Msa> -<Sense> -<objsur guid="f442ba09-2469-4cfe-a31e-bcd120dbdec2" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="c39f483a-2b85-456b-931a-61ec99c1d357" ownerguid="c0f4715e-55c9-4379-ab6f-ad561a5e7151"> -<ExampleWords> -<AUni ws="en">believe in, have confidence in, have faith in, put your trust in, take your word for, pin your hopes on, give the benefit of the doubt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to believing that someone is truthful?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c3a08c27-751a-4148-b3d4-74b344478a50" ownerguid="20e7d987-0d55-46d4-ab69-0b0cce2f1e24"> -<ExampleWords> -<AUni ws="en">leave, depart, departure, go away, withdraw, take your leave, scram, skedaddle, beat it, set out, hit the road, quit (a place), absent yourself, slip away, vacate, make yourself scarce</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to leaving a place?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c3a18212-32de-41f8-a2d5-0e87a2991aee" ownerguid="d9b1216f-1802-4aee-b08b-4158c3398bb3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">plumb.line</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b8d28a68-ef19-4ff1-8256-2cd784963408" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c3a2455b-ba7b-4c0b-8d50-42e99e8c8860" ownerguid="36e8f1df-1798-4ae6-904d-600ca6eb4145"> -<ExampleWords> -<AUni ws="en">get away, give someone the slip, throw someone off the scent, slip through someone's fingers, shake off, make a clean getaway, elude, evade, avoid capture, dodge, sidestep, cover your trail/tracks</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to escaping from someone who is chasing you?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c3a267cd-9d7f-47cb-94aa-b0c66a6f7280" ownerguid="28e874fb-b2e7-4afa-a4d7-600306ad2583"> -<ExampleWords> -<AUni ws="en">exercise, get exercise, train, work out, keep fit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to doing something in order to stay healthy and become stronger?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c3a56f53-6647-4a56-b889-4a31408ee82d" ownerguid="a9172057-0e8a-47fa-bae4-84e5f3b214b3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">referee</AUni> -<AUni ws="es">arbitro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4c45c72e-0f8c-4faf-900f-ebf1a022257b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c3a87e45-ac0a-46d1-a928-2e8bc69bf541" ownerguid="30011610-0ca9-4d7d-ba2e-377fc3c76e74"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c3ab5fa0-71a4-463a-b464-8e06c04b32da" ownerguid="6a6f0748-a6e9-4d64-b14e-543bb6ec2ec8"> -<ExampleWords> -<AUni ws="en">strange, odd, funny, peculiar, weird</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is strange?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c3ae3eef-eb79-4c04-8cab-55b5b0e352b3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">puwa</AUni> -<AUni ws="qvm-x-acl">puwa</AUni> -<AUni ws="qvm-x-akh">puwa</AUni> -<AUni ws="qvm-x-akl">puwa</AUni> -<AUni ws="qvm-x-ame">puwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puwa</AUni> -<AUni ws="qvm-x-acl">*puwa</AUni> -<AUni ws="qvm-x-akh">*puwa</AUni> -<AUni ws="qvm-x-akl">*puwa</AUni> -<AUni ws="qvm-x-ame">*puwa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.56" /> -<DateModified val="2022-10-10 21:18:47.197" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="10463703-ae30-4732-8aef-b55e444aa868" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puwa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8df82b69-64cf-4e3d-9122-0568fb2230be" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7f9d22e6-a8f5-4487-978f-d17b9ecf2f37" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puwa 
\entryTyp root 
\gENG 
\gSPN 
\e *puwa 
\c V1 
\ach puwa 
\akh puwa 
\acl puwa 
\akl puwa 
\ame puwa 
\mcc *puwa / ~_ [q]</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="c3af5b31-b9a1-4c03-bf4e-25400b040a03" ownerguid="d926ebb0-3765-43a5-a6b1-8780b146bc09"> -<Form> -<AUni ws="qvm-x-ach">quisha; quishä</AUni> -<AUni ws="qvm-x-acl">quisha; quishä</AUni> -<AUni ws="qvm-x-akh">kisha; kishä</AUni> -<AUni ws="qvm-x-akl">kisha; kishä</AUni> -<AUni ws="qvm-x-ame">kisha; kishä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="c3b808d4-d94e-4c8e-b7b2-87b4f4a83198" ownerguid="8a11e609-e88d-4247-8c5f-224ddb20de10"> -<Abbreviation> -<AUni ws="en">5.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.327" /> -<DateModified val="2022-9-23 16:55:8.327" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to special clothes worn on special occasions. It is necessary to think through all the various special occasions in the culture and think of any special clothes worn on those occasions. Two examples are given below for work and graduation, but there are many others.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Clothes for special occasions</AUni> -</Name> -<OcmCodes> -<Uni>292 Special Garments</Uni> -</OcmCodes> -<Questions> -<objsur guid="15c204b5-2346-4a5b-b94f-887fe6496583" t="o" /> -<objsur guid="661ef931-265e-4c1e-bfce-124f7a2889f1" t="o" /> -<objsur guid="8c67b3c8-1e62-4833-bf8d-4d428076acc8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="c3b91618-02c2-48fe-839d-ff6f274eef8f" ownerguid="3013df2e-80a3-49c0-a77e-991532b8bfeb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">but</AUni> -<AUni ws="es">pero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5eed873a-0db7-4989-b4d8-f190b0c81b03" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c3b951ca-540d-4977-85a6-18dc65203287" ownerguid="74586c4f-768f-4ae6-9864-d30ecee2a801"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="c3be68e0-0833-4fec-8d57-6f4251766bf8" ownerguid="dbf05a52-ffa6-4413-9ee8-c5be0da0e3d0"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="LexSense" guid="c3bf5dba-92a1-4ccf-bd35-4e43c5d074d5" ownerguid="2e3cdcdd-46bc-48c3-8aed-0541a5421c38"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2/V1 V1/V1</Run> -</AStr> -</Custom> -<Definition> -<AStr ws="en"> -<Run ws="en">reciprocal</Run> -</AStr> -</Definition> -<Gloss> -<AUni ws="en">RECIP</AUni> -<AUni ws="es">RECIP</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b82cfe35-39fd-45ff-aeed-524a769cd259" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c3c28b93-90e7-4150-af54-14f4024609aa" ownerguid="6cd59f6c-9bf4-43db-a2df-8eb0ede206e5"> -<Form> -<AUni ws="qvm-x-ach">watu</AUni> -<AUni ws="qvm-x-acl">watu; watu; wato</AUni> -<AUni ws="qvm-x-akh">watu</AUni> -<AUni ws="qvm-x-akl">watu; watu; wato</AUni> -<AUni ws="qvm-x-ame">watu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c3c5beaa-4f0a-46f6-a47b-e5ee022c78bb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sartin</AUni> -<AUni ws="qvm-x-acl">sartin; sartin; sarten</AUni> -<AUni ws="qvm-x-akh">sartin</AUni> -<AUni ws="qvm-x-akl">sartin; sartin; sarten</AUni> -<AUni ws="qvm-x-ame">sartin</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sartén.2</AUni> -<AUni ws="qvm-x-acl">+sartén.2</AUni> -<AUni ws="qvm-x-akh">+sartén.2</AUni> -<AUni ws="qvm-x-akl">+sartén.2</AUni> -<AUni ws="qvm-x-ame">+sartén.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.459" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9358bc35-bac8-4039-a555-57645c91543c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sartén.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f3b4514f-b44a-472a-b103-b8fd943670c3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8686a3d7-edb0-4a9a-a15e-585b26c1f5f0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sartén.2 
\entryTyp root 
\gENG frying.pan 
\gSPN 
\e +sartén.2 
\c N0 
\mp +FinalC 
\ach sartin / ~_# 
\akh sartin / ~_# 
\acl sartin / _# 
\acl sartin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sarten +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sartin / _# 
\akl sartin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sarten +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame sartin / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="c3c716ef-271b-4d8a-a64b-54aa4791ba60" ownerguid="0d9cac6e-369c-41fb-b935-8cad485e925b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Rämancunapis logluypa loglumi winan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="c3cb9d35-11ae-472e-9aaf-76ee075dd5ed" ownerguid="36b96ffe-7a62-4e99-ad99-b59a751ade80"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">throw.down</AUni> -<AUni ws="es">botar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6f03245a-986b-401a-bf0c-1f51c94cbbb8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c3cf4a53-8e7c-4746-b6bd-1a384ff426de" ownerguid="4deb64e2-1dfb-4fc8-8761-6be8107630cd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">plaster</AUni> -<AUni ws="es">yeso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b6bbffa2-1a51-49a5-a7e1-838641ada612" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c3d3c269-a682-4198-867d-37e42b6af96b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pi:su</AUni> -<AUni ws="qvm-x-acl">pi:su; pi:su; pi:so</AUni> -<AUni ws="qvm-x-akh">pi:su</AUni> -<AUni ws="qvm-x-akl">pi:su; pi:su; pi:so</AUni> -<AUni ws="qvm-x-ame">pi:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+piso</AUni> -<AUni ws="qvm-x-acl">+piso</AUni> -<AUni ws="qvm-x-akh">+piso</AUni> -<AUni ws="qvm-x-akl">+piso</AUni> -<AUni ws="qvm-x-ame">+piso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.861" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2e9cc2ae-cde3-4d19-93fc-43fdb657e255" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+piso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b735bca1-4f76-4ab2-ba95-fd986ffefce2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6cda9157-4424-49d6-848f-61ed7a9bfcc1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +piso 
\entryTyp root 
\gENG story 
\gSPN piso 
\e +piso 
\c N0 
\ach pi:su 
\akh pi:su 
\acl pi:su / _# 
\acl pi:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pi:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pi:su / _# 
\akl pi:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pi:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pi:su</Run> -</AStr> -</Custom> -</rt> -<rt class="MoInflAffMsa" guid="c3d4a91d-b03e-4087-92b5-780b4f2da3cf" ownerguid="ac650401-00f0-4159-ae7f-74aa96840e4e"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="257de7fb-dab6-4b87-848b-3fbb8f5c3e04" t="r" /> -</Slots> -</rt> -<rt class="MoStemMsa" guid="c3d55279-02aa-41db-9926-1c3445af95b3" ownerguid="e4bee7f1-8900-4833-bbb9-cf0b65c7216e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="c3d64074-b750-49d2-b569-b70a0d32bb74" ownerguid="607b5d6f-7721-4851-98c2-2c0eda05370e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c3d6488d-a644-4b91-a777-9d83810fe93a" ownerguid="2608bcf8-ed20-4501-8510-4ecacf922dd4"> -<ExampleWords> -<AUni ws="en">wrap, cover, shroud, enclose, put around, wind</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to wrapping something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c3da300a-6c14-4c81-9df2-513fbe798c3a" ownerguid="0ee5b933-f1ab-485f-894a-51fe239cb726"> -<ExampleWords> -<AUni ws="en">bonsai</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What types of trees are used for decoration?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c3da4481-0321-4843-8ca6-04f7457cb9b3" ownerguid="aa64916d-be58-4591-9bd3-97cd0615fd54"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="c3db3c0f-04d2-48f1-8675-40c4f2598f74" ownerguid="5ac3cb4d-76e4-43e0-90e9-e33a3755e800"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="c3ddfc77-e3a6-450e-a853-111f5595df87" ownerguid="61a28bdc-c05c-49d8-b47e-d54a9082156c"> -<Abbreviation> -<AUni ws="en">9.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.700" /> -<DateModified val="2022-9-23 16:55:8.700" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate moods.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Moods</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="965c6a0b-3034-4e2f-a00b-ed2eb3119a5d" t="o" /> -<objsur guid="edeb9458-3bdb-4d14-aaa1-6eb457307b9c" t="o" /> -<objsur guid="6fa33de6-00f4-44d5-b6b3-b3c4a4f671e5" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="c3e0b0eb-cbbf-4474-9297-3db891396586" ownerguid="ab8f5391-ad8b-42dc-a43c-22590a09ce77"> -<ExampleWords> -<AUni ws="en">Islam, Islamic, Muslim, Allah, Mohammad, the Prophet, Koran, Kaaba, mosque, sharia, Ramadan, hajj</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to talk about Islam?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c3e4e9a0-c0b4-4b55-b513-1e6795ee13a2" ownerguid="99b5b80a-a2d6-4820-adfc-1da72528c272"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">This is <the same> man that I saw yesterday.; This isn't <the same> man, it's another man.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">the same, the very same, the self-same, one and the same, common</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the same person or thing, not a different one?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c3e79e81-ce9e-4c47-af56-e1f83f526609" ownerguid="4d2a247e-4925-4750-8c39-e2d78665d33c"> -<ExampleWords> -<AUni ws="en">inside (n), interior, innards, lining, framework</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the inside part of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c3e99a56-db48-4824-ad93-32f78f7a2e52" ownerguid="122ac350-466c-42f3-8aef-687a9d416648"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="be15f818-d144-4745-b6b0-8b2d3623e41e" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="e9ab0c65-8cbe-4761-a409-69a9888c88a6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c3ebe1a8-429f-4a27-9b99-037ca3b9a42c" ownerguid="878a313b-a201-444e-8bdb-67048d60c63e"> -<ExampleWords> -<AUni ws="en">pretend not to notice, pretend not to see, look right through, snub, cut someone dead, shut out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to ignoring someone by rudely pretending not to see them?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c3ec7802-f36e-488d-878d-ed8e53d3b0eb" ownerguid="4d2a67fb-91c8-4436-87f4-f4eab6cb0828"> -<ExampleWords> -<AUni ws="en">spread, turn gangrenous, fester, peel, break</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to an infection becoming worse?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c3ede52a-9445-4903-95d6-6ff458ea58f1" ownerguid="69b0094a-af4b-454b-9cf3-2f1b81ec501f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chaff</AUni> -<AUni ws="es">grancia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7f26b39c-514c-40b1-8f1c-beafdb3d59fd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c3f1d82c-f3c9-4cba-9db5-c730f9c5f852" ownerguid="8bb8e7c0-bb64-428f-8eaa-b67400a29d52"> -<Form> -<AUni ws="qvm-x-ach">melgani</AUni> -<AUni ws="qvm-x-acl">melgani; melgani; melgane</AUni> -<AUni ws="qvm-x-akh">melqani</AUni> -<AUni ws="qvm-x-akl">melqani; melqani; melqane</AUni> -<AUni ws="qvm-x-ame">milqani</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="c3f20ce7-d30e-40fd-af8a-713a65c46cd0" ownerguid="9f3b4cab-dc8a-430e-88f3-d3002df64fb8"> -<Abbreviation> -<AUni ws="en">7.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.498" /> -<DateModified val="2022-9-23 16:55:8.498" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to bowing to someone--to face someone and lower your head or bend at the waist so that your upper body is lowered. The words in this domain should all be symbolic acts, that is, the culture assigns a meaning and significance to the physical action. Some cultures define it as a greeting, as an act of respect, or as an act of submission. For instance in ancient middle eastern culture bowing was an act of submission done in the presence of the king. Failure to bow was an act of rebellion punishable by death. In far eastern culture it is a greeting. In African culture it is an act of respect or done to welcome a visitor. Cultures define how a person is to bow, for instance how they are to hold their hands. A person may bow while standing, or may kneel, or even prostrate himself flat on his face. Whether both people bow is also significant. The depth of the bow can have significance. In Japan the person of lower social rank must bow deeper. In European culture a performer bows to acknowledge applause.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>17E Prostrate as an Act of Reverence or Supplication x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Bow</AUni> -</Name> -<Questions> -<objsur guid="8022f4ff-15da-498e-88ed-57315cc55fed" t="o" /> -<objsur guid="71419281-8f1b-453f-84ca-7517a1d6ddfb" t="o" /> -<objsur guid="d1490c7a-3f4f-44f2-9a70-579b4e63c129" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="c3f8b979-cb52-4470-a48e-d2977e6c3f06" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<ExampleWords> -<AUni ws="en">storekeeper, shopkeeper, trader, merchant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What are the occupations in trading?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c3fc5264-0715-4988-803d-441c6ca13ef6" ownerguid="607457c5-5a36-43ab-8809-5a39b18cc3e8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ay.ay.ay</AUni> -<AUni ws="es">que.miedo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9e2a3596-4ad3-4eb9-a29a-cca0acaafe3e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c3fe0775-f03b-4a1f-ae57-c6c750ad5b39"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cobra</AUni> -<AUni ws="qvm-x-acl">cobra</AUni> -<AUni ws="qvm-x-akh">cobra</AUni> -<AUni ws="qvm-x-akl">cobra</AUni> -<AUni ws="qvm-x-ame">cobra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cobrar</AUni> -<AUni ws="qvm-x-acl">+cobrar</AUni> -<AUni ws="qvm-x-akh">+cobrar</AUni> -<AUni ws="qvm-x-akl">+cobrar</AUni> -<AUni ws="qvm-x-ame">+cobrar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.132" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f919efa5-7054-445d-ac9d-108f63445c6d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cobrar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eabf45f7-2885-41f5-8ae2-9869e1c84189" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1b690414-a751-4900-9f19-60e823e483a1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cobrar 
\entryTyp root 
\gENG charge 
\gSPN cobrar 
\e +cobrar 
\c V2 
\ach cobra 
\akh cobra 
\acl cobra 
\akl cobra 
\ame cobra</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="c3ffb0a1-bf9d-4c36-a542-affc1afe981d" ownerguid="99294b5b-feef-4b5b-ad6e-9482505569bb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aliya</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aliya</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aliya</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aliya</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aliya</Run> -</AStr> -</Form> -<Morph> -<objsur guid="811f4b3a-fedc-4bc3-ac30-1fbdffa3a430" t="r" /> -</Morph> -<Msa> -<objsur guid="4ca544e3-d0fa-456f-b2ff-07633275ba38" t="r" /> -</Msa> -<Sense> -<objsur guid="74aa2615-fcd3-4b77-a691-4d9ecd488a2b" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="c402df97-d8f4-4726-8f99-7c783e837188"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">canti:na</AUni> -<AUni ws="qvm-x-acl">canti:na</AUni> -<AUni ws="qvm-x-akh">canti:na</AUni> -<AUni ws="qvm-x-akl">canti:na</AUni> -<AUni ws="qvm-x-ame">canti:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cantina</AUni> -<AUni ws="qvm-x-acl">+cantina</AUni> -<AUni ws="qvm-x-akh">+cantina</AUni> -<AUni ws="qvm-x-akl">+cantina</AUni> -<AUni ws="qvm-x-ame">+cantina</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.410" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="966af534-c90c-4a3a-8547-a77a7677ea3d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cantina</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d687c26f-0e03-4445-8ae9-1478003a4c90" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="821e9b10-ee6b-43ed-8c2e-2b69aab55434" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cantina 
\entryTyp root 
\gENG tavern 
\gSPN cantina 
\e +cantina 
\c N0 
\ach canti:na 
\akh canti:na 
\acl canti:na 
\akl canti:na 
\ame canti:na</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c402fc29-8ff3-40b3-9f8e-6a9fdab3da2b" ownerguid="effc49dd-6322-4302-899c-4cf540f0e2e4"> -<ExampleWords> -<AUni ws="en">salad, tossed salad, green salad, coleslaw</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What foods are made primarily from leaves and stems?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c403429e-82a7-4282-bb44-0e07f7ffb81e" ownerguid="3d5d93ce-00e0-46ff-b220-553c12c38381"> -<ExampleWords> -<AUni ws="en">menopause</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the time in a woman's life when she stops menstruating?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c404a2e1-8c18-4fbf-a71a-f2652fa78b71" ownerguid="54a14bc8-1822-43c7-9264-7b5bc31ef8fb"> -<Form> -<AUni ws="qvm-x-ach">jaru</AUni> -<AUni ws="qvm-x-acl">jaru; jaro</AUni> -<AUni ws="qvm-x-akh">jaru</AUni> -<AUni ws="qvm-x-akl">jaru; jaro</AUni> -<AUni ws="qvm-x-ame">haru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c4059dba-46be-403f-a555-96e49c3b144f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chiclascu</AUni> -<AUni ws="qvm-x-acl">chiclascu; chiclascu; chiclasco</AUni> -<AUni ws="qvm-x-akh">chiklasku</AUni> -<AUni ws="qvm-x-akl">chiklasku; chiklasku; chiklasko</AUni> -<AUni ws="qvm-x-ame">chiklasku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trikllasku</AUni> -<AUni ws="qvm-x-acl">*trikllasku</AUni> -<AUni ws="qvm-x-akh">*trikllasku</AUni> -<AUni ws="qvm-x-akl">*trikllasku</AUni> -<AUni ws="qvm-x-ame">*trikllasku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.98" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3d6b2408-41cb-4fdc-a0c3-764854db17de" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trikllasku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ee089a00-a6f5-4c59-8fa3-e96a88ed67f5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="69ad5136-8881-4f32-b7db-b9e07fc762e8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trikllasku 
\entryTyp root 
\gENG armpit 
\gSPN sobaco 
\e *trikllasku 
\c N0 
\ach chiclascu 
\akh chiklasku 
\acl chiclascu / _# 
\acl chiclascu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chiclasco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chiklasku / _# 
\akl chiklasku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chiklasko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chiklasku</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="c408ecae-2452-4e1f-b695-28005b286d0d" ownerguid="65dd8e11-aaea-4a2c-b5d5-660be93b7b55"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Gen 22.13 Tsaypita ticraycushgancho Abraham ricargan juc carni shiracacho tsaricashga caycagta.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="c409fd32-108c-4164-8b81-b88547b1ea5f" ownerguid="08c05e00-9660-4491-af2f-a05fab27ef39"> -<ExampleWords> -<AUni ws="en">lose weight, slim, shed (ten) pounds, waste away, get thin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to someone becoming thin?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c40a04d5-e71b-4599-abd3-02d312e00ed7" ownerguid="edde4dae-239f-4cb6-a6ad-fd4e79c06f26"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mean</AUni> -<AUni ws="es">malo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4780accf-3d86-484c-a8d2-c398d837871c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c40a802d-f46a-40e8-a741-7cd8882bf6a3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">onza</AUni> -<AUni ws="qvm-x-acl">onza</AUni> -<AUni ws="qvm-x-akh">onza</AUni> -<AUni ws="qvm-x-akl">onza</AUni> -<AUni ws="qvm-x-ame">onza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+onza</AUni> -<AUni ws="qvm-x-acl">+onza</AUni> -<AUni ws="qvm-x-akh">+onza</AUni> -<AUni ws="qvm-x-akl">+onza</AUni> -<AUni ws="qvm-x-ame">+onza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.628" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f3dc4aef-1317-4ace-9b07-59bcba551d27" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+onza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7be0e33a-3fbf-45de-86c6-ad945b3e7e45" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b0e35336-2062-423b-b0f3-0805d5d056fd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +onza 
\entryTyp root 
\gENG ounce 
\gSPN onza 
\e +onza 
\c N0 
\ach onza 
\akh onza 
\acl onza 
\akl onza 
\ame onza</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c40df845-e32d-4b58-9d9e-d41339ea97a2" ownerguid="6bf7569e-dc79-49da-9ce1-e2e03303828a"> -<ExampleWords> -<AUni ws="en">belt, cane, lash, paddle, rod, stick, strap, switch, whip</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What things are used to punish someone by beating them?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c40e9b00-548c-445a-8316-3d653364527b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">largu; largo</AUni> -<AUni ws="qvm-x-acl">largu; largu; largo</AUni> -<AUni ws="qvm-x-akh">largu; largo</AUni> -<AUni ws="qvm-x-akl">largu; largu; largo</AUni> -<AUni ws="qvm-x-ame">largu; largo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+largo.1</AUni> -<AUni ws="qvm-x-acl">+largo.1</AUni> -<AUni ws="qvm-x-akh">+largo.1</AUni> -<AUni ws="qvm-x-akl">+largo.1</AUni> -<AUni ws="qvm-x-ame">+largo.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.53" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7d041599-721d-470a-a8f8-f166fa302dc6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+largo.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="81916f8e-8809-442a-8d35-37b27c74de58" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bf6e5330-deea-4852-a686-986cf58f4441" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +largo.1 
\entryTyp root 
\gENG length 
\gSPN largo 
\e +largo.1 
\c N0 
\ach largu / ~_# 
\ach largo / _# 
\akh largu / ~_# 
\akh largo / _# 
\acl largu / ~_# 
\acl largu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl largo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl largu / ~_# 
\akl largu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl largo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame largu / ~_# 
\ame largo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c40eb85e-e249-4b6e-9746-c5637327c97c" ownerguid="bafa274e-8bf0-4cf7-8ce7-2c28293db809"> -<ExampleWords> -<AUni ws="en">doorkeeper, doorman, butler, gatekeeper, watchman, guard</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What is a person called who guards the door or gate, and answers when visitors come?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c4133918-247c-46dc-991b-ce9ccd2d2ced"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ntsi</AUni> -<AUni ws="qvm-x-acl">ntsi; ntsi; ntse</AUni> -<AUni ws="qvm-x-akh">ntsi</AUni> -<AUni ws="qvm-x-akl">ntsi; ntsi; ntse</AUni> -<AUni ws="qvm-x-ame">ntsi</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.607" /> -<DateModified val="2022-10-16 14:5:43.87" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="1" /> -<LexemeForm> -<objsur guid="313750f4-cfad-48d3-a7eb-3bae7d9481fb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">12V</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7901bffa-960d-4e26-a36f-49cd9cb87071" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b7a776f3-d742-43ee-9701-1f7172703c9d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx 12V 
\entryTyp suffix 
\gENG 12V 
\gSPN 12V 
\e 12V 
\c V1/V0 
\o 120 
\mp +foreshortens 
\ach ntsi 
\akh ntsi 
\acl ntsi / _# 
\acl ntsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ntse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ntsi / _# 
\akl ntsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ntse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ntsi 
\mp +FinalI</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="c4133e19-8412-4585-afc5-99195f28ac06" ownerguid="fdbdb4cf-b6a0-489f-a7db-d7e5e05a25f6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">cueca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e62511d9-07c1-44c5-be0a-f180760897de" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c413a4a0-7b2c-420b-ab1e-4ff088602dba" ownerguid="088c5a2a-9ab9-4949-83c6-8ac5d0c29808"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="c4165f19-03a5-4c09-a268-7bfa68cbb575" ownerguid="80b2aed8-1a4e-447b-bfc8-c68f2881fd42"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="LexEntry" guid="c416afa2-6841-4e89-a089-0ead03c816e5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">perol</AUni> -<AUni ws="qvm-x-acl">perol</AUni> -<AUni ws="qvm-x-akh">perol</AUni> -<AUni ws="qvm-x-akl">perol</AUni> -<AUni ws="qvm-x-ame">perol</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+perol</AUni> -<AUni ws="qvm-x-acl">+perol</AUni> -<AUni ws="qvm-x-akh">+perol</AUni> -<AUni ws="qvm-x-akl">+perol</AUni> -<AUni ws="qvm-x-ame">+perol</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.800" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d1ae0396-68b1-4b49-a879-bc75174890da" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+perol</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8605a7d3-b164-4332-a7fc-fd4648e31309" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9e11e239-7f97-4e30-bc6a-40bf0c22029c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +perol 
\entryTyp root 
\gENG kettle 
\gSPN peról 
\e +perol 
\c N0 
\mp +FinalC 
\ach perol 
\akh perol 
\acl perol 
\akl perol 
\ame perol</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="c416b076-6d75-4fbf-b028-06cca2f35110" ownerguid="a9a93240-5237-4ad0-911a-152179f78550"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">nina</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">nina</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">nina</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">nina</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nina</Run> -</AStr> -</Form> -<Morph> -<objsur guid="9592ea37-5d72-422b-b578-d3d7cf3eb70c" t="r" /> -</Morph> -<Msa> -<objsur guid="83410c4d-b0ef-4e3f-8f88-7543121065be" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="c419a969-d03b-43aa-8d29-5cd1b465ca29" ownerguid="d7349bac-efc0-41ba-ba60-f23d38e97a36"> -<ExampleWords> -<AUni ws="en">informal justice, mob justice, lynch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to justice that is not given by someone in authority?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c41c4db3-2844-4feb-bdfd-80a282c48fc8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">muyu</AUni> -<AUni ws="qvm-x-acl">muyu; muyo</AUni> -<AUni ws="qvm-x-akh">muyu</AUni> -<AUni ws="qvm-x-akl">muyu; muyo</AUni> -<AUni ws="qvm-x-ame">muyu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*muyu</AUni> -<AUni ws="qvm-x-acl">*muyu</AUni> -<AUni ws="qvm-x-akh">*muyu</AUni> -<AUni ws="qvm-x-akl">*muyu</AUni> -<AUni ws="qvm-x-ame">*muyu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.527" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="afc69365-d08e-4c95-b337-001df32c3991" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*muyu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8d2f364d-7d8a-4223-82a9-b4684985afed" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="484bfee1-4cfe-4890-b211-8e876eae2ab5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *muyu 
\entryTyp root 
\gENG turn.around 
\gSPN voltear 
\e *muyu 
\c V2 
\ach muyu 
\akh muyu 
\acl muyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl muyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl muyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl muyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame muyu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="c41c60cc-83bf-48bb-8ded-b37916944eab" ownerguid="589c760d-b110-4325-934e-2560d627ebba"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c41c66ce-c760-4b34-bc69-0388da0a1f39" ownerguid="362a2bdd-985e-4bc0-a41c-358bd1babb12"> -<ExampleWords> -<AUni ws="en">spy, spy on, spy for, conduct espionage, conduct covert operations, collect information, gather intelligence, betray secrets</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What do spies do?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c41ee02b-e8c5-4044-9170-500ffbcea114" ownerguid="e53d61f7-bdba-4667-a456-09021eca02a7"> -<Form> -<AUni ws="qvm-x-ach">lanzëta</AUni> -<AUni ws="qvm-x-acl">lanzëta</AUni> -<AUni ws="qvm-x-akh">lanzëta</AUni> -<AUni ws="qvm-x-akl">lanzëta</AUni> -<AUni ws="qvm-x-ame">lanzëta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c42048a6-ae61-4814-85d5-cbec8686ad00" ownerguid="20fadd54-6cec-4bb3-a47c-66c29aaff227"> -<ExampleWords> -<AUni ws="en">avoid trouble, avoid adversity, retreat, appease, to run away</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to avoiding trouble?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c42130cb-af12-4012-bd48-62a9ed290ad3" ownerguid="d460d260-0885-4a03-9046-253a46eae929"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ten</AUni> -<AUni ws="es">diez</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5bbbe4d9-5a42-4ace-878c-df57c394c662" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c421fe06-71ef-46d1-a1cb-51f25a0559a8" ownerguid="bbaea43a-2d94-44e0-a2cc-d81fbf5d59cd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 BN/BN R0/R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">LIM1</AUni> -<AUni ws="es">LIM1</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="39d1c8b2-dca3-4184-82dc-a2b4e87e52d7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="c42245c6-88e7-48d8-b5b9-0ef7f4fffcce"> -<Analyses> -<objsur guid="498336e7-b7bd-48ec-bdbd-a5e68d52fbda" t="o" /> -<objsur guid="b4664e30-2a93-4452-844e-27d17344415f" t="o" /> -<objsur guid="fae60727-af59-4ee9-a797-99872e299efc" t="o" /> -</Analyses> -<Checksum val="-919607688" /> -<Form> -<AUni ws="qvm-x-akh">rikaptiki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="c423d8eb-7b1b-4a4c-add7-7662dddd7148" ownerguid="87ed45e4-6cd1-4e9a-91c7-91462cc0663b"> -<Form> -<AUni ws="qvm-x-ach">janansha</AUni> -<AUni ws="qvm-x-acl">janansha</AUni> -<AUni ws="qvm-x-akh">janansha</AUni> -<AUni ws="qvm-x-akl">janansha</AUni> -<AUni ws="qvm-x-ame">hanansha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="c4245745-5410-4a99-b890-9cceeeca1e3e" ownerguid="fa29531c-ac63-4371-8eea-5ecf01abde4e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="c42b6c1b-370e-4de2-8ab0-e60c49d4ab4b" ownerguid="9a9d59f7-defa-49e5-a722-30043de78eab"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="c42d52a8-59f3-4a45-9b3f-12fd27adff57" ownerguid="304b7d5f-51af-480a-af98-77a7578039fa"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c4302d24-ced6-499b-888e-2a6cfadf6b5f" ownerguid="6e6a0b47-d155-4863-b044-52cdd4421783"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">ser.oscuro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e9a67625-6214-44b6-b75d-40faa7f491fd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="c4330001-83ca-485d-8b9b-09f7e1be60cc" ownerguid="c9aee4df-ac3e-4159-bd1a-060db1a5f070"> -<Abbreviation> -<AUni ws="en">3.5.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.182" /> -<DateModified val="2022-9-23 16:55:8.182" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to interpreting something someone says--to try to understand the meaning of something someone says and express it in other words.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33J Interpret, Mean, Explain</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Interpreting messages</AUni> -</Name> -<Questions> -<objsur guid="970c286d-08aa-4f31-aa3c-66dfd8db6dd7" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="d10301f3-573c-4005-ad65-1c73fb80b3b6" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="8894cac9-c82a-4616-856e-0516d2ed1df7" t="o" /> -<objsur guid="edf17f72-7e7a-4f8d-a5ee-f4889492d73a" t="o" /> -<objsur guid="751bd45c-abfb-443f-ac55-aad3472c20de" t="o" /> -<objsur guid="8225de87-35a3-4c7a-b35c-f45b152caebe" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="c4364199-b2a5-4315-985c-81b59117fa89" ownerguid="7ebac9f5-d347-471d-a432-f439a85a054d"> -<Form> -<AUni ws="qvm-x-ach">veloz</AUni> -<AUni ws="qvm-x-acl">veloz</AUni> -<AUni ws="qvm-x-akh">veloz</AUni> -<AUni ws="qvm-x-akl">veloz</AUni> -<AUni ws="qvm-x-ame">veloz</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="c43b7c75-0cd2-432b-aea5-1438c0fde030" ownerguid="50826f66-6321-4219-a56d-825b561dca8c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">broken.wall</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="35497a81-f6d8-4b55-afb9-98de2ded55fe" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c43d1c26-6145-452e-954e-6d209bd8186a" ownerguid="cce98603-ff8f-4213-945a-bd6746716139"> -<ExampleWords> -<AUni ws="en">altitude, sea level</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to how high the land is?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c4402bfe-a757-495a-9609-48f661b03512" ownerguid="4223d3ba-5560-4c30-b013-4e31fee36329"> -<ExampleWords> -<AUni ws="en">White House, Capitol</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the name of a building?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c4459ad0-de38-45e6-845a-098200d5574b" ownerguid="967d4311-3d9f-45dc-bda3-d60f324c7313"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c445aa36-42ed-4a11-beda-e011d0bb414c" ownerguid="31e0fde8-b3ab-47ae-b791-54309e6ed0bd"> -<ExampleWords> -<AUni ws="en">modernize, bring something up to date, update</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to changing something to make it modern?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c447475f-9241-471f-955f-afea24f9b021"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ashi</AUni> -<AUni ws="qvm-x-acl">ashi; ashe</AUni> -<AUni ws="qvm-x-akh">ashi</AUni> -<AUni ws="qvm-x-akl">ashi; ashe</AUni> -<AUni ws="qvm-x-ame">ashi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ashi.v</AUni> -<AUni ws="qvm-x-acl">*ashi.v</AUni> -<AUni ws="qvm-x-akh">*ashi.v</AUni> -<AUni ws="qvm-x-akl">*ashi.v</AUni> -<AUni ws="qvm-x-ame">*ashi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.840" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7538ba8d-8d6b-4faf-b10e-01b7239f54ba" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ashi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8ac44997-e136-4184-85dc-211579fb37a8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a6c9344b-0deb-48db-bcdb-a4b7bc9a75d2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ashi.v 
\entryTyp root 
\gENG search 
\gSPN buscar 
\e *ashi.v 
\c V2 
\mp +FinalI 
\ach ashi 
\akh ashi 
\acl ashi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ashe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ashi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ashe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ashi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="c44acf78-eb37-435e-bd59-961987964dfa" ownerguid="2d9301f3-aeef-49d1-bbd8-9da536dd79af"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Num 1.52 Lapan Israel runacunaga bandëran cashgan cagchömi grüpunpa grüpunpa posädacärenga.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="c44bff05-e721-461e-bd7d-ee54181e8aca" ownerguid="c0b7f354-a75c-41d5-a489-ae2df6364d02"> -<ExampleWords> -<AUni ws="en">travel overland, overland</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving by land?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c44fcbde-c71e-44da-aba4-c575abff4057"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ati</AUni> -<AUni ws="qvm-x-acl">ati; ate</AUni> -<AUni ws="qvm-x-akh">ati</AUni> -<AUni ws="qvm-x-akl">ati; ate</AUni> -<AUni ws="qvm-x-ame">ati</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ati</AUni> -<AUni ws="qvm-x-acl">*ati</AUni> -<AUni ws="qvm-x-akh">*ati</AUni> -<AUni ws="qvm-x-akl">*ati</AUni> -<AUni ws="qvm-x-ame">*ati</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.868" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="51fb320b-fa2d-4472-9fda-8cc50ae192bb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ati</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="187d666d-edb6-4f4a-8b6a-3ef3710dc50c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d6e527cb-63cd-4b1c-8a0b-9eda71cd3ddc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ati 
\entryTyp root 
\gENG to.progress 
\gSPN progresar 
\e *ati 
\c V2 
\mp +FinalI 
\ach ati 
\akh ati 
\acl ati +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ate +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ati +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ate +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ati</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="c44feb5a-93cf-42f8-9065-b1d32cb6c24c" ownerguid="6e56b766-4dfa-4284-abff-db28ea823148"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">boy</AUni> -<AUni ws="es">jovencito</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f9aae074-2fec-4ffb-8801-3179b7dcbaee" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c451f4bb-265f-4d9e-84ee-db6165f33039" ownerguid="ecf4ab85-7d11-460d-9e4e-f50516bd0c07"> -<Form> -<AUni ws="qvm-x-ach">tünil</AUni> -<AUni ws="qvm-x-acl">tünil; tünil; tünel</AUni> -<AUni ws="qvm-x-akh">tünil</AUni> -<AUni ws="qvm-x-akl">tünil; tünil; tünel</AUni> -<AUni ws="qvm-x-ame">tünil</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c4532527-88da-4e60-8770-1b7a52bb0d37" ownerguid="9d216f24-32de-4ff4-821e-4c31294215e1"> -<Form> -<AUni ws="qvm-x-ach">ayapa</AUni> -<AUni ws="qvm-x-acl">ayapa</AUni> -<AUni ws="qvm-x-akh">ayapa</AUni> -<AUni ws="qvm-x-akl">ayapa</AUni> -<AUni ws="qvm-x-ame">ayapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c4590678-1eb9-4e65-8a67-fc9254af4e8f" ownerguid="295dc021-5b50-47b3-8340-1631c6d6fadc"> -<ExampleWords> -<AUni ws="en">comfort, luxury</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something that makes you feel comfortable?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c45cf65c-09c5-405f-9994-f6c72c4b61f9" ownerguid="2f16311f-c325-492c-a958-93c1f5ea057d"> -<Form> -<AUni ws="qvm-x-ach">cutsu</AUni> -<AUni ws="qvm-x-acl">cutsu; cutso</AUni> -<AUni ws="qvm-x-akh">kutsu</AUni> -<AUni ws="qvm-x-akl">kutsu; kutso</AUni> -<AUni ws="qvm-x-ame">kutsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c45e315b-de04-4199-88ac-9a4ac3a59cd7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shagrara; shagrara:</AUni> -<AUni ws="qvm-x-acl">shagrara; shagrara:</AUni> -<AUni ws="qvm-x-akh">shaqrara; shaqrara:</AUni> -<AUni ws="qvm-x-akl">shaqrara; shaqrara:</AUni> -<AUni ws="qvm-x-ame">shaqrara; shaqrara:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shaqrara:</AUni> -<AUni ws="qvm-x-acl">*shaqrara:</AUni> -<AUni ws="qvm-x-akh">*shaqrara:</AUni> -<AUni ws="qvm-x-akl">*shaqrara:</AUni> -<AUni ws="qvm-x-ame">*shaqrara:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.551" /> -<DateModified val="2022-10-10 21:18:47.207" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4b28d640-65d8-44c0-88b4-1bd3f0b56b63" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shaqrara:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="64296845-bcf0-4ef1-9542-5bd7cbfefa82" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7feafcd1-5cfe-4e1a-9511-2ee8c753e621" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shaqrara: 
\entryTyp root 
\gENG 
\gSPN 
\e *shaqrara: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach shagrara foreshortened 
\ach shagrara: 
\akh shaqrara foreshortened 
\akh shaqrara: 
\acl shagrara foreshortened 
\acl shagrara: 
\akl shaqrara foreshortened 
\akl shaqrara: 
\ame shaqrara foreshortened 
\ame shaqrara:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="c45e4a3e-98cb-4d87-a43b-5e4cd5d22333" ownerguid="acb95270-3e2a-42d5-a38a-75449249f6e3"> -<Form> -<AUni ws="qvm-x-ach">corta</AUni> -<AUni ws="qvm-x-acl">corta</AUni> -<AUni ws="qvm-x-akh">corta</AUni> -<AUni ws="qvm-x-akl">corta</AUni> -<AUni ws="qvm-x-ame">corta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c460e5ad-78d8-4a92-b5ac-8c931e36cd90" ownerguid="da582e96-f239-40ee-869f-2230a87abe75"> -<Form> -<AUni ws="qvm-x-ach">granäti; granäti</AUni> -<AUni ws="qvm-x-acl">granäti; granäti; granäte</AUni> -<AUni ws="qvm-x-akh">granäti; granäti</AUni> -<AUni ws="qvm-x-akl">granäti; granäti; granäte</AUni> -<AUni ws="qvm-x-ame">granäti; granäti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c462a82a-3694-42e3-969f-54d04ae70670" ownerguid="984dc2b7-6fdd-4257-abdc-5873abb7bb70"> -<ExampleWords> -<AUni ws="en">less than, lower</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that something is smaller than another thing in degree?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c465f2fd-2efd-4165-b777-fd21e9c5897c" ownerguid="1b6b0c12-9ecd-45cb-bb0e-0dadb435eddf"> -<ExampleWords> -<AUni ws="en">spate of, epidemic, rash of, wave, be a hotbed of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words indicate that many bad things are happening?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c46810ce-f798-4226-8152-c8d4227a6e1c" ownerguid="ca30a86f-dfa7-4d8c-a3a5-0c7981691e17"> -<Form> -<AUni ws="qvm-x-ach">röllu</AUni> -<AUni ws="qvm-x-acl">röllu; röllu; röllo</AUni> -<AUni ws="qvm-x-akh">röllu</AUni> -<AUni ws="qvm-x-akl">röllu; röllu; röllo</AUni> -<AUni ws="qvm-x-ame">röllu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="c4696400-50a3-444c-8c95-c59227cd4693" ownerguid="a77b6825-41c2-4f04-9864-8a99f0ed10b3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">taciturn</AUni> -<AUni ws="es">no. habla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fe33b9e8-f8f8-445e-a955-3a92c1ce2f04" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c4698df6-111a-4e8f-94a2-849d47e72677" ownerguid="b5045b35-adc8-430e-a61a-0db5a8f9b0e6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">toasted.wheat</AUni> -<AUni ws="es">harina.tostada</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="38199f75-31ef-4682-928e-aa7038054ead" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c46a7e33-a7a1-49de-a18b-17c17b3da294" ownerguid="0ff6458d-3bc8-4c59-bc24-edba90fa582d"> -<Form> -<AUni ws="qvm-x-ach">palapa</AUni> -<AUni ws="qvm-x-acl">palapa</AUni> -<AUni ws="qvm-x-akh">palapa</AUni> -<AUni ws="qvm-x-akl">palapa</AUni> -<AUni ws="qvm-x-ame">palapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c46c9f94-d993-4962-9635-3fdec75626ba" ownerguid="80dc5ca1-44ce-4406-add8-2bbe19c122ab"> -<ExampleWords> -<AUni ws="en">play, listen, play back, put on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to playing music?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c46ce743-e121-4191-9a32-effb16364526" ownerguid="33d86ad9-8404-44fa-a89c-e4e01253f304"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="c46eeef1-de30-4ac4-b5aa-2960af6e2a23" ownerguid="c49b8038-b6c9-4a4e-90e4-ae79fe3a8398"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6fe49b5e-093a-457b-9f14-02b68e8cec63" t="r" /> -</Morph> -</rt> -<rt class="MoStemAllomorph" guid="c470f62c-f06b-4393-b051-381d9f597b26" ownerguid="28885090-a609-4e87-8333-a46af61ed256"> -<Form> -<AUni ws="qvm-x-ach">rachi</AUni> -<AUni ws="qvm-x-acl">rachi; rache</AUni> -<AUni ws="qvm-x-akh">rachi</AUni> -<AUni ws="qvm-x-akl">rachi; rache</AUni> -<AUni ws="qvm-x-ame">rachi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="c4746fff-540b-4e14-8a48-1c3289704984" ownerguid="a44c0aa3-323f-48ec-b199-e180c17b3e69"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">capitol</AUni> -<AUni ws="es">capital</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="885b6030-a446-40b0-ac24-407af6f48331" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="c47861c1-328c-4d17-bebe-32295969457b"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">lowered</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="c48047c8-f202-4871-962c-948b4f9ab0dd" ownerguid="b6a40216-fe93-4b0f-b85b-5622327031d0"> -<ExampleWords> -<AUni ws="en">shell, eggshell, yoke, white, membrane, embryo</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the parts of an egg?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c4851340-e53b-4a5a-94e9-6064e5ade492" ownerguid="b5de92e2-0771-4446-b076-19342b7cc6cd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2/V0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">1FUT2</AUni> -<AUni ws="es">1FUT2</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1e4804b7-c62a-422f-b375-30094952accb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c48704fc-d333-48f9-af23-e4e77da3ca85"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cama</AUni> -<AUni ws="qvm-x-acl">cama</AUni> -<AUni ws="qvm-x-akh">kama</AUni> -<AUni ws="qvm-x-akl">kama</AUni> -<AUni ws="qvm-x-ame">kama</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kama.v</AUni> -<AUni ws="qvm-x-acl">*kama.v</AUni> -<AUni ws="qvm-x-akh">*kama.v</AUni> -<AUni ws="qvm-x-akl">*kama.v</AUni> -<AUni ws="qvm-x-ame">*kama.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.920" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="37341404-0d02-4cb4-926c-511c9d9706bc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kama.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="473b2932-8723-47fe-8cf0-5124d9a349fa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cc37ab40-55ba-49c2-b95b-1a0820179cd7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kama.v 
\entryTyp root 
\gENG create 
\gSPN crear 
\e *kama.v 
\c V2 
\ach cama 
\akh kama 
\acl cama 
\akl kama 
\ame kama 
\mcc *kama.v / ~_ PNCT1 
\mcc *kama.v / ~_ INSTL1</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="c488a61e-62e9-41a5-95fe-1735e53c7c90" ownerguid="126e199f-69cc-4e72-bcf1-5417cc9e38fa"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="c48bdc14-49d0-4d54-a303-a354fc4491e8" ownerguid="cd25cd4f-8f3f-4677-9c60-6967bea5fa3d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c48ededc-2f7b-4c72-abec-e62782b7fda9" ownerguid="9d865347-6656-4ab7-8613-bf2e8bc53aa7"> -<ExampleWords> -<AUni ws="en">crippling, serious (injury), minor (injury), bad (accident), deep (wound), bad (sprain), third degree (burn), compound (fracture), critical, critically, fatal, fatally, sore (finger)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words describe the seriousness of an injury?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c49439ec-f4bd-4ed9-b843-5a98da368fb7" ownerguid="82ecb5b3-9128-4b38-b9c5-612857417ceb"> -<ExampleWords> -<AUni ws="en">disliked, bastard, disagreeable, horrible, mean, nasty, nasty piece of work, not very nice, objectionable, obnoxious, odious, off-putting, unpleasant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe someone that people dislike?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c49483fc-e0b0-42f3-8d87-982d59cce3e3" ownerguid="cf337287-c9fa-43d2-93c4-284f45e262c0"> -<ExampleWords> -<AUni ws="en">respiratory disease, tuberculosis, angina, asthma, asthmatic, pneumonia, emphysema, grippe, hay fever, bronchitis</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to a disease of the lungs?</AUni> -</Question> -</rt> -<rt class="StTxtPara" guid="c495e7e1-4786-42de-82e5-fec137178f57" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">rikashqan. </Run> -<Run ws="en">\tr < V2 *rika > REL1 3P</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="2383bfb6-fb9f-4ce6-95fc-d071a64ce57f" t="o" /> -<objsur guid="5da2d5d2-1946-4aaf-935a-0df3e14dd09d" t="o" /> -</Segments> -</rt> -<rt class="LexExampleSentence" guid="c49721aa-6c6e-48a1-a2f7-c2d1e8b0ee7a" ownerguid="2dd417d1-4b48-4333-b18e-ff0592ebb774"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2SA 3.34 Tsaypa trucanga mala muertimi wanushcanqui.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiAnalysis" guid="c49b8038-b6c9-4a4e-90e4-ae79fe3a8398" ownerguid="6ed896a6-bab7-4fdf-a4fd-a5ee49f380d2"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="a4b41da7-4872-4d76-afb1-cbe82365405a" t="o" /> -<objsur guid="9d6f1c37-2f51-4a0e-9c6e-6d0573736272" t="o" /> -<objsur guid="c46eeef1-de30-4ac4-b5aa-2960af6e2a23" t="o" /> -<objsur guid="eceebee3-a371-4408-8619-54402d46273b" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="c49c8651-3a9b-4062-a944-4d0bc39f15b0" ownerguid="5a0dcf35-a145-40da-b4cb-8f8986835a2e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="c49e2343-6be3-464c-9a5c-2fe31ec6de41"> -<Analyses> -<objsur guid="2b65d33b-e7f4-4772-88e2-2ea5722577d6" t="o" /> -</Analyses> -<Checksum val="31217681" /> -<Form> -<AUni ws="qvm-x-akh">runakunami</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="c49ef66e-8080-4f28-b81b-96d733eeeb02" ownerguid="e45b8bac-9623-4f84-a113-9dec13a8db64"> -<ExampleWords> -<AUni ws="en">change topics, switch topics, turn to, get onto</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to starting to talk about a different subject?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c49ff747-0c85-4599-8963-51baf9cb8001" ownerguid="2e998270-a158-4bf6-98fa-000ebd3facee"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">uncle</AUni> -<AUni ws="es">tío</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ab99f8d0-f8c1-46a0-b1e5-61b876e7bfa9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c4a12aca-5c6e-47f1-b54d-0b4cfcbf1a02" ownerguid="8247eaae-05be-44ec-8181-868d3b1dc701"> -<Form> -<AUni ws="qvm-x-ach">fïna</AUni> -<AUni ws="qvm-x-acl">fïna</AUni> -<AUni ws="qvm-x-akh">fïna</AUni> -<AUni ws="qvm-x-akl">fïna</AUni> -<AUni ws="qvm-x-ame">fïna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="c4a23160-6547-4d86-b1ff-91c017f733f0" ownerguid="0049ffed-8bf4-446d-9240-870d3ce7b5c1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="19a66bd9-93e5-43ee-9d8c-ae425f98c17e" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="2aef695f-6d50-444a-b985-2f41c2e76a2f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c4a3e629-9a31-43fd-931c-48d9237c7581" ownerguid="05e9ce30-3079-4519-8928-fb3c81996a28"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">squish</AUni> -<AUni ws="es">aplastar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b339f080-edaa-4b3f-bdf4-c960ee9e7d98" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c4a508f3-379f-4938-b77d-c37de4d1db6a" ownerguid="3b34cf8d-998b-4cb6-bee7-34cdfdfee925"> -<Form> -<AUni ws="qvm-x-ach">chiwin</AUni> -<AUni ws="qvm-x-acl">chiwin; chiwin; chiwen</AUni> -<AUni ws="qvm-x-akh">chiwin</AUni> -<AUni ws="qvm-x-akl">chiwin; chiwin; chiwen</AUni> -<AUni ws="qvm-x-ame">chiwin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c4aceb81-590f-473c-919f-9b6f6dee5616" ownerguid="8d5c28b8-91be-40b0-b6c2-4d5adbb495a3"> -<ExampleWords> -<AUni ws="en">disgusting, abhorrent, abominable, awful, detestable, foul, gross, loathsome, nasty, nauseating, repugnant, repulsive, revolting, sick, sickening</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that causes someone to feel disgusted?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="c4aea3b2-4462-44b4-b371-f037d684c5cb" ownerguid="adb34adc-a53b-4ac5-be7a-6322eace9918"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="c4b110cf-d968-4bc6-ac0c-7e70cbad2756" ownerguid="57225f57-ba51-45d7-b6d2-b22052877ea4"> -<Abbreviation> -<AUni ws="en">4.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.208" /> -<DateModified val="2022-9-23 16:55:8.208" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a social event.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>51 Festivals</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Social event</AUni> -</Name> -<Questions> -<objsur guid="dca8a0f9-3057-4950-bca2-2ae03149815f" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="71cbefc3-e0a5-4b97-9672-fa0cb34c59e4" t="o" /> -<objsur guid="ddc96103-4bc5-44d3-9412-c57569d2a9f5" t="o" /> -<objsur guid="aff720bd-fb3d-4f85-bbc4-41d5fc5b83f8" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="c4b1c515-a01e-4368-bcae-05c277331656" ownerguid="1fba6370-8264-4270-9240-bdd2cea4f16a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c4b44df1-fd1c-4864-bf7b-61d2b180cfa2" ownerguid="6342c8bf-55b5-400f-af7e-63055fe6813b"> -<ExampleWords> -<AUni ws="en">toolbox, tool cabinet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a container for tools?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c4b4677b-9cec-45cd-854e-1a4a88cdfa08" ownerguid="029e0760-3306-41cc-b032-40befb22303e"> -<ExampleWords> -<AUni ws="en">coffee, tea, mate, hookah, chewing gum, beetle nut</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of stimulants are there?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c4b4f877-e3e1-4479-bc1d-4702bc0ceb85" ownerguid="fe4be3a5-3356-413b-8f90-2450a82bf8f5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c4b6ebb7-87b0-4f48-a5b8-8c06776090a3" ownerguid="975d0109-1bba-4b0e-85b8-2c6b51c8e074"> -<ExampleWords> -<AUni ws="en">sit, sit down, be seated, take your seat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to sitting down from a standing position?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c4bb5764-5075-47f4-890e-249aa05f3078" ownerguid="9eaad86a-ba31-4ea5-8601-c90cfe296476"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fall</AUni> -<AUni ws="es">caerse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="114a6f9f-ac38-4525-ae0c-aad56eabafed" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c4bb9a90-b5aa-47ec-9b35-d67d9e10acab" ownerguid="867e7660-1e22-4978-abff-e5a681c93dde"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c4bc2c6a-3402-4b8c-8d22-79f936f10f9e" ownerguid="60a1cf1a-8473-49ae-b409-c824a4ef8eee"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="562e9a3e-706a-4483-baae-bf6f6432465d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="StTxtPara" guid="c4bdf4bb-c922-43b6-8e5f-6a60db876c0b" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<ParseIsCurrent val="True" /> -</rt> -<rt class="CmDomainQ" guid="c4c0b1d2-1228-4d6e-9922-618c98fe4df3" ownerguid="b4dc89dc-3811-4d45-b0ee-0b71e28305cc"> -<ExampleWords> -<AUni ws="en">finish, use up, exhaust, run out of, consume, deplete, drink up, exhaust, sap, swallow, tap, use up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to using up all of something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c4c0bcf5-5794-4344-8fa5-875a4a12b9f2" ownerguid="264dd51d-bbaa-4563-9db6-21c946fdca88"> -<Form> -<AUni ws="qvm-x-ach">llanqui</AUni> -<AUni ws="qvm-x-acl">llanqui; llanque</AUni> -<AUni ws="qvm-x-akh">llanki</AUni> -<AUni ws="qvm-x-akl">llanki; llanke</AUni> -<AUni ws="qvm-x-ame">llanki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c4c3618f-59d9-4e04-8b1a-6445cd01ba73"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cañu; caño</AUni> -<AUni ws="qvm-x-acl">cañu; cañu; caño</AUni> -<AUni ws="qvm-x-akh">cañu; caño</AUni> -<AUni ws="qvm-x-akl">cañu; cañu; caño</AUni> -<AUni ws="qvm-x-ame">cañu; caño</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+caño</AUni> -<AUni ws="qvm-x-acl">+caño</AUni> -<AUni ws="qvm-x-akh">+caño</AUni> -<AUni ws="qvm-x-akl">+caño</AUni> -<AUni ws="qvm-x-ame">+caño</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.41" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e5feefe3-86ba-4ddb-8822-b5ddd46501e7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+caño</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aff070ab-882f-43cd-8afe-551f238918d1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c6a6dc23-73d0-41dc-8236-a9a201724158" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +caño 
\entryTyp root 
\gENG pipe 
\gSPN caño 
\e +caño 
\c N0 
\ach cañu / ~_# 
\ach caño / _# 
\akh cañu / ~_# 
\akh caño / _# 
\acl cañu / ~_# 
\acl cañu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl caño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cañu / ~_# 
\akl cañu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl caño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cañu / ~_# 
\ame caño / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c4ca1d51-0824-4417-8b6a-b1f7132833b2" ownerguid="6045c6eb-efea-4586-95f8-840d32578d66"> -<ExampleWords> -<AUni ws="en">order</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to when everything is arranged?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c4cbd41b-4103-471e-91e0-c31e0e626e4a" ownerguid="f0a3d251-8e38-4a25-8292-29ed6dc06c82"> -<Form> -<AUni ws="qvm-x-ach">aptosia</AUni> -<AUni ws="qvm-x-acl">aptosia</AUni> -<AUni ws="qvm-x-akh">aptosia</AUni> -<AUni ws="qvm-x-akl">aptosia</AUni> -<AUni ws="qvm-x-ame">aptosia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c4ce7f46-f26b-4810-bc51-dcbbc6c369eb" ownerguid="6e7d10f8-6da5-4a8a-a06d-952511194105"> -<ExampleWords> -<AUni ws="en">light, light, lightness, airy, buoyant, ethereal, lightweight, porous, spongy, underweight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is light?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c4d1812b-e3d4-4191-ad65-5443673770c2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">disentería; disenteria</AUni> -<AUni ws="qvm-x-acl">disentería; disenteria</AUni> -<AUni ws="qvm-x-akh">disentería; disenteria</AUni> -<AUni ws="qvm-x-akl">disentería; disenteria</AUni> -<AUni ws="qvm-x-ame">disentería; disenteria</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+disentería</AUni> -<AUni ws="qvm-x-acl">+disentería</AUni> -<AUni ws="qvm-x-akh">+disentería</AUni> -<AUni ws="qvm-x-akl">+disentería</AUni> -<AUni ws="qvm-x-ame">+disentería</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.424" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6f19a074-18c8-405e-8e6b-d61c2a1d8ce5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+disentería</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3eb23dc9-a8d9-440e-8b9c-8bc3b1ec0a88" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f219380c-cabe-4cd0-be00-d1a18aa3fa44" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +disentería 
\entryTyp root 
\gENG 
\gSPN 
\e +disentería 
\c N0 
\ach disentería / _# 
\ach disenteria / ~_# 
\akh disentería / _# 
\akh disenteria / ~_# 
\acl disentería / _# 
\acl disenteria / ~_# 
\akl disentería / _# 
\akl disenteria / ~_# 
\ame disentería / _# 
\ame disenteria / ~_# 
\i ACT 28.8 Tsaychömi Publiupa taytan disenteriawan
\f + 28.8 Disenteriaqa yawarnintin qecha qeshyami kaykan.
\f* y shanapäkuywan cämacho antsa jitaraykarqan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="c4d85afe-d875-4b34-85c2-5cb494e28912" ownerguid="406c0bf1-74ba-4db3-9654-427c72a2db68"> -<Form> -<AUni ws="qvm-x-ach">responsabli; responsable</AUni> -<AUni ws="qvm-x-acl">responsabli; responsabli; responsable</AUni> -<AUni ws="qvm-x-akh">responsabli; responsable</AUni> -<AUni ws="qvm-x-akl">responsabli; responsabli; responsable</AUni> -<AUni ws="qvm-x-ame">responsabli; responsable</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c4da8f3b-b5a7-4088-8666-cf1edc8b742a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">diyawarda</AUni> -<AUni ws="qvm-x-acl">diyawarda</AUni> -<AUni ws="qvm-x-akh">diyawarda</AUni> -<AUni ws="qvm-x-akl">diyawarda</AUni> -<AUni ws="qvm-x-ame">diyawarda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+día_guarda</AUni> -<AUni ws="qvm-x-acl">+día_guarda</AUni> -<AUni ws="qvm-x-akh">+día_guarda</AUni> -<AUni ws="qvm-x-akl">+día_guarda</AUni> -<AUni ws="qvm-x-ame">+día_guarda</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.426" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4ba9c564-6788-4196-ab2d-67fa3722b703" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+día_guarda</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4b30e455-b39a-445a-aab5-834d70d0186a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0faa666a-5e86-4403-8cd0-e40438c8d53d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +día_guarda 
\entryTyp root 
\gENG 
\gSPN feriado 
\e +día_guarda 
\c N0 
\mp +assimilated 
\ach diyawarda 
\akh diyawarda 
\acl diyawarda 
\akl diyawarda 
\ame diyawarda</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c4db3c9c-0930-457c-9247-2f2749bf93bd" ownerguid="ebac5ec8-dc4c-4b2b-a727-3ca82404cdbb"> -<ExampleWords> -<AUni ws="en">demonstrate, show, show how, substantiate, prove, give proof, verify, authenticate, confirm, corroborate, give evidence, establish, make good</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to demonstrating something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c4df2a8a-7fb7-40a1-bba4-d4fb8e50825e" ownerguid="9d865347-6656-4ab7-8613-bf2e8bc53aa7"> -<ExampleWords> -<AUni ws="en">injure, harm, hurt, wound, abuse, violate, electrocute, electrocution, mistreat, mistreatment, inflict injury</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to injuring someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c4e3a323-847f-4fde-bf56-85539bf49fe8" ownerguid="eceef2d1-1b9b-46b5-9aa8-a7aa1dd9b68d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="c4e42b85-4b4c-44b5-8177-5762ead483d2" ownerguid="fecf0558-0467-4946-b2de-b314af921dcd"> -<Form> -<AUni ws="qvm-x-ach">yügu</AUni> -<AUni ws="qvm-x-acl">yügu; yügu; yügo</AUni> -<AUni ws="qvm-x-akh">yügu</AUni> -<AUni ws="qvm-x-akl">yügu; yügu; yügo</AUni> -<AUni ws="qvm-x-ame">yügu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c4e792ca-bda6-4fd5-b453-d61678011858" ownerguid="ac2e424b-6aee-4031-8864-7b3f4a6fb5a3"> -<ExampleWords> -<AUni ws="en">true, truth, accurate, in fact, right, correct</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that a statement agrees with reality?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c4e79b68-3be4-402d-9a8e-5531df13c028" ownerguid="8ef9d508-a95b-41b2-af89-578e65685105"> -<Form> -<AUni ws="qvm-x-ach">auquin</AUni> -<AUni ws="qvm-x-acl">auquin; auquin; auquen</AUni> -<AUni ws="qvm-x-akh">awkin</AUni> -<AUni ws="qvm-x-akl">awkin; awkin; awken</AUni> -<AUni ws="qvm-x-ame">awkin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="c4e93e03-9170-4c9c-9a8c-cf90dfb2353b" ownerguid="16c29555-f3a7-43e0-9e3b-bda546dd3c8e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="c4eab316-c681-4844-b7e7-91756b7ddb4d" ownerguid="4194f836-1472-4329-8411-1220e9a7d06e"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="c4eb60da-938c-4943-9a76-7d6c35b845f3" ownerguid="19439634-92c1-488b-97a5-2b15d95700b9"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c4ede52c-9819-4707-bf52-7b3e80bc800d" ownerguid="758e1195-e56f-4071-a337-81810bf63391"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sausage</AUni> -<AUni ws="es">salchicha</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b4233b02-1bab-4751-9de9-5a8108a1cfcc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c4f2ca09-74fb-443e-bfe4-09c0179f2997" ownerguid="0b12ab7f-f74e-4328-8bb3-958003f74bb2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.important</AUni> -<AUni ws="es">importar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1182cf87-4cbf-40d0-ab5f-535c8fe7e970" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c4f33aa7-b710-4c90-ba5d-481a286fcf2c" ownerguid="e0c32642-7c51-4e23-a776-f63f2f2f936d"> -<ExampleWords> -<AUni ws="en">uncertain, not be certain, not be clear, it's up in the air, there is uncertainty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is uncertain?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c4f37edd-43f4-48a3-ab0a-c6b5c137093f" ownerguid="253a61b8-e47b-4548-ba6f-a9005d516fee"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="c4f5e56b-b871-473b-80fc-575b2e71d68a" ownerguid="4451aa09-44e4-49bc-9a0b-0e897b172173"> -<Form> -<AUni ws="qvm-x-ach">wira</AUni> -<AUni ws="qvm-x-acl">wira</AUni> -<AUni ws="qvm-x-akh">wira</AUni> -<AUni ws="qvm-x-akl">wira</AUni> -<AUni ws="qvm-x-ame">wira</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="c4f6fad5-4115-4ba7-81b1-981ead920c7a" ownerguid="94426d56-c31d-475e-aa54-94fbf738c0c5" /> -<rt class="LexEntry" guid="c4f7bca1-1277-4895-b9ea-0c681e6b8135"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuchcu</AUni> -<AUni ws="qvm-x-acl">cuchcu; cuchco</AUni> -<AUni ws="qvm-x-akh">kuchku</AUni> -<AUni ws="qvm-x-akl">kuchku; kuchko</AUni> -<AUni ws="qvm-x-ame">kuchku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kutrku</AUni> -<AUni ws="qvm-x-acl">*kutrku</AUni> -<AUni ws="qvm-x-akh">*kutrku</AUni> -<AUni ws="qvm-x-akl">*kutrku</AUni> -<AUni ws="qvm-x-ame">*kutrku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.33" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="632cb69e-64b9-42a2-8587-34540789487e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kutrku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aa1074de-6672-4fdd-8445-79cb5b2d4db7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="941a6012-ad76-4e0a-adc2-c17f95054c29" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kutrku 
\entryTyp root 
\gENG nibble 
\gSPN roer 
\e *kutrku 
\c V2 
\ach cuchcu 
\akh kuchku 
\acl cuchcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl cuchco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kuchku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kuchko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kuchku</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="c4fb0d07-2407-47ef-99dd-f3795bcd8c16"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">T</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="c4fcd826-4d0a-43be-926b-9e7ab4897584" ownerguid="8d13a888-2604-473b-a573-c03db670c4ee"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="c4fd105f-2da4-4c48-99f5-84165a31aadc" ownerguid="4373236c-a468-4a20-a536-76605739db6c"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="c4fdb9ce-93cc-405b-b673-4058821bf794" ownerguid="06cb2024-5f7b-467c-b32c-ef4c56030ac0"> -<Abbreviation> -<AUni ws="en">8.4.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.640" /> -<DateModified val="2022-9-23 16:55:8.640" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for machines that indicate what time it is.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Clock, watch</AUni> -</Name> -<Questions> -<objsur guid="340669ac-7888-4e57-b70a-c8a959b37e9e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="c4fe078a-56f5-4c78-973c-cf613d2d7013" ownerguid="5c770098-2c91-4a9c-bfa0-a7ffaa871a7f"> -<ExampleWords> -<AUni ws="en">job, employment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a person's job?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c500022f-35bc-4baa-940a-adf0c8ef58f1" ownerguid="7d8f3442-8298-4a59-b5b0-4a6616bc70d4"> -<Form> -<AUni ws="qvm-x-ach">guencha</AUni> -<AUni ws="qvm-x-acl">guencha</AUni> -<AUni ws="qvm-x-akh">qencha</AUni> -<AUni ws="qvm-x-akl">qencha</AUni> -<AUni ws="qvm-x-ame">qincha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c5005fc0-6ef9-488d-8e0d-75ccbbd1c9a3" ownerguid="6de42a33-35b2-49c6-b2c4-fa9c0c5094f0"> -<ExampleWords> -<AUni ws="en">guzzle, gulp, gulp down, swig, sip, suck, pour down your throat, inhale, to down (something)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe the manner in which a person can drink?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c500df9e-9c92-4bc8-a657-0e5093820516" ownerguid="6268bc24-e119-41df-9101-423023162e9a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="c505edce-1bd8-4201-8f8b-1b6c790bd348" ownerguid="06b70dd3-13cf-4bbd-8e80-557e3ab59ed0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c5061642-539d-48fb-8a4e-25873a6664e8" ownerguid="82a4ae36-8e70-4c0d-8144-ad9fc3c0e04f"> -<ExampleWords> -<AUni ws="en">lay something flat, lay something down, align</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to causing something to be horizontal?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c50a390b-5251-47f5-a760-62293332f5d9" ownerguid="1ff743cb-49e0-483d-8a1d-4603a7d6c395"> -<ExampleWords> -<AUni ws="en">reduce, lower, decrease, cut, slash, roll back, knock down, halve, minimize, abbreviate, abridge, curtail, dilate, drain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to causing something to decrease?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c50af688-c627-4cdd-81b8-622a2ad1216c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waranga</AUni> -<AUni ws="qvm-x-acl">waranga</AUni> -<AUni ws="qvm-x-akh">waranqa</AUni> -<AUni ws="qvm-x-akl">waranqa</AUni> -<AUni ws="qvm-x-ame">waranqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waranqa</AUni> -<AUni ws="qvm-x-acl">*waranqa</AUni> -<AUni ws="qvm-x-akh">*waranqa</AUni> -<AUni ws="qvm-x-akl">*waranqa</AUni> -<AUni ws="qvm-x-ame">*waranqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.515" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7d52043f-7f3f-46d4-a15f-e43d840f9b2c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waranqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="388097a9-b7e6-425b-9a63-189d1c4af774" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="710d9296-9b96-42ed-90d6-6465af230810" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waranqa 
\entryTyp root 
\gENG thousand 
\gSPN mil 
\e *waranqa 
\c N0 
\ach waranga 
\akh waranqa 
\acl waranga 
\akl waranqa 
\ame waranqa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="c5133a0e-dc93-431d-b222-b26d6fe08772" ownerguid="9aaf8588-96ab-49f5-90b0-833e7dd1661d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c5137cc6-9cbb-46d1-b97b-8ac70ea92cbf" ownerguid="167bfba5-0785-4bb5-a083-3ffbefa57897"> -<ExampleWords> -<AUni ws="en">indiscriminate, miscalculate, misjudge, overestimate, uncritical</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to judging wrongly?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c5149aaa-ee9f-4e5d-b1cc-2f5c2d287f58" ownerguid="3d3ee180-caea-48b0-ad1f-ab9b74fb7cc1"> -<Form> -<AUni ws="qvm-x-ach">consula</AUni> -<AUni ws="qvm-x-acl">consula</AUni> -<AUni ws="qvm-x-akh">consula</AUni> -<AUni ws="qvm-x-akl">consula</AUni> -<AUni ws="qvm-x-ame">consula</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="c514d490-871a-41d7-86cd-4b83196be459" ownerguid="aa8c4239-80ed-41ce-9daa-796bc5580685"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">MIC 4.13 Sión runacuna, trïgu punshata gochmogpag jarutsir ushacätsishgannog tsay nacioncunata ushacätsiy.</Run> -</AStr> -</Example> -</rt> -<rt class="MoInflAffMsa" guid="c516d14b-9b18-44a7-8c37-97267a8b8796" ownerguid="a854b6a5-e727-49a7-8123-dad693a9a80c"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="fda4c591-1349-4f9e-ab87-905ae2aa25e1" t="r" /> -</Slots> -</rt> -<rt class="LexSense" guid="c51982d4-20c2-4b09-a166-d9158098fd09" ownerguid="4e5bf9a7-e8b2-4f7d-804e-57f58265befb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fasten</AUni> -<AUni ws="es">asegurar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="10b4ac15-d407-4d11-bb6e-37b367638ab0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c51a8410-b266-493e-bf92-c1f6c8b1059b" ownerguid="64e41545-3a0a-4524-a8d4-8e5e0f0e2391"> -<ExampleWords> -<AUni ws="en">leave the lights on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to not turning off the lights?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c51acfd9-59db-4631-afa9-078ed0ec1c99"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tinta</AUni> -<AUni ws="qvm-x-acl">tinta</AUni> -<AUni ws="qvm-x-akh">tinta</AUni> -<AUni ws="qvm-x-akl">tinta</AUni> -<AUni ws="qvm-x-ame">tinta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tinta</AUni> -<AUni ws="qvm-x-acl">+tinta</AUni> -<AUni ws="qvm-x-akh">+tinta</AUni> -<AUni ws="qvm-x-akl">+tinta</AUni> -<AUni ws="qvm-x-ame">+tinta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.916" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="03f01c23-aa88-4781-93ef-769f41a7b70d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tinta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b0768543-3cca-47ee-ad8a-970207d9cb4b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b4aabb6c-34de-476c-b195-41153ace4122" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tinta 
\entryTyp root 
\gENG ink 
\gSPN tinta 
\e +tinta 
\c N0 
\ach tinta 
\akh tinta 
\acl tinta 
\akl tinta 
\ame tinta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="c51aeec4-2885-4f21-ab98-94779b79190e" ownerguid="312820e2-4738-43c4-a998-c2d48967fc7b"> -<Form> -<AUni ws="qvm-x-ach">äshi</AUni> -<AUni ws="qvm-x-acl">äshi</AUni> -<AUni ws="qvm-x-akh">äshi</AUni> -<AUni ws="qvm-x-akl">äshi</AUni> -<AUni ws="qvm-x-ame">äshi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c51bb041-41a4-4cf9-bac0-683244ff72dd" ownerguid="10a82711-8829-461a-b172-fc8fff3d555c"> -<ExampleWords> -<AUni ws="en">dog, hound, canine, stray, cur, mangy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to dogs?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c5202325-56e5-41c7-b5d1-e7ff1b3e5d48" ownerguid="8bf2e2c1-18ec-4591-81f4-5964530099d3"> -<Form> -<AUni ws="qvm-x-ach">marpu</AUni> -<AUni ws="qvm-x-acl">marpu; marpu; marpo</AUni> -<AUni ws="qvm-x-akh">marpu</AUni> -<AUni ws="qvm-x-akl">marpu; marpu; marpo</AUni> -<AUni ws="qvm-x-ame">marpu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c52079c2-5ebf-4fd5-b9ef-6a21c492700f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">orgullo:su</AUni> -<AUni ws="qvm-x-acl">orgullo:su; orgullo:su; orgullo:so</AUni> -<AUni ws="qvm-x-akh">orgullo:su</AUni> -<AUni ws="qvm-x-akl">orgullo:su; orgullo:su; orgullo:so</AUni> -<AUni ws="qvm-x-ame">orgullo:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+orgulloso</AUni> -<AUni ws="qvm-x-acl">+orgulloso</AUni> -<AUni ws="qvm-x-akh">+orgulloso</AUni> -<AUni ws="qvm-x-akl">+orgulloso</AUni> -<AUni ws="qvm-x-ame">+orgulloso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.638" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="05eff8ab-76c0-4f38-926b-6bdb4011aa14" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+orgulloso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="09f055ce-28a1-4fe8-b2b5-bc8b89258b9d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aeedc96f-9d42-4033-9d52-9289953dd046" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +orgulloso 
\entryTyp root 
\gENG 
\gSPN 
\e +orgulloso 
\c N0 
\ach orgullo:su 
\akh orgullo:su 
\acl orgullo:su / _# 
\acl orgullo:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl orgullo:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl orgullo:su / _# 
\akl orgullo:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl orgullo:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame orgullo:su 
\i Lev 26.19 Mana cäsucog y orgullösu cashgayquipitami tamyatapis mana tamyatsimushagtsu y murushgayquipis mana wayongapagtsu.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="c5282457-be5f-4ce9-a802-91140cb0a22b" ownerguid="1b0270a5-babf-4151-99f5-279ba5a4b044"> -<Abbreviation> -<AUni ws="en">2.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a limb--either an arm or a leg.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Limb</AUni> -</Name> -<Questions> -<objsur guid="f6103e85-a0c4-4ab9-8b59-bca00c8af59d" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c2f01aa8-9f94-43c9-9ada-b1e4a60aba07" t="o" /> -<objsur guid="71f89512-17f0-484c-aca8-ddd226e3c794" t="o" /> -<objsur guid="9cfe4c5a-80d4-4b31-ba89-79b2e3d28a1c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="c52a56a5-e19d-430e-8ebc-ea403d8bfc03" ownerguid="78bf0de0-e54a-446a-9ccd-79dace661e64"> -<Form> -<AUni ws="qvm-x-ach">junag</AUni> -<AUni ws="qvm-x-acl">junag</AUni> -<AUni ws="qvm-x-akh">junaq</AUni> -<AUni ws="qvm-x-akl">junaq</AUni> -<AUni ws="qvm-x-ame">hunaq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="Segment" guid="c52b0aa2-b356-40af-a0e2-9ed054396e42" ownerguid="afaf3c09-e7ae-48ec-84ea-141cd4fe563a"> -<Analyses> -<objsur guid="a1a48737-8d57-4702-9956-891c691d7b96" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexEntry" guid="c52e3809-7b7b-4bd7-88b4-1aa9b36fef05"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">upishya; upishya:</AUni> -<AUni ws="qvm-x-acl">upishya; upishya:</AUni> -<AUni ws="qvm-x-akh">upishya; upishya:</AUni> -<AUni ws="qvm-x-akl">upishya; upishya:</AUni> -<AUni ws="qvm-x-ame">upishya; upishya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*upishya:</AUni> -<AUni ws="qvm-x-acl">*upishya:</AUni> -<AUni ws="qvm-x-akh">*upishya:</AUni> -<AUni ws="qvm-x-akl">*upishya:</AUni> -<AUni ws="qvm-x-ame">*upishya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.249" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0dea2797-ec2f-4760-b2f4-028c2a19257c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*upishya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ef4e0371-17fb-401c-993f-3b808a9a5dff" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a3384417-0862-45b8-8f51-76ce3395d107" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *upishya: 
\entryTyp root 
\gENG 
\gSPN 
\e *upishya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach upishya foreshortened 
\ach upishya: 
\akh upishya foreshortened 
\akh upishya: 
\acl upishya foreshortened 
\acl upishya: 
\akl upishya foreshortened 
\akl upishya: 
\ame upishya foreshortened 
\ame upishya: 
\i DAN 1 .10 Waquin mözucuna weray weray caycagta ricashpan gamcunata upishyashga caycagta ricaycushushpayquega nogatachari wanutsimanga.>></Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="c52f8331-48f0-42dd-a76f-5c6a203b7cc6" ownerguid="f2bc15a0-1373-4ca7-83c4-cd643fc2b570"> -<Form> -<AUni ws="qvm-x-ach">guela</AUni> -<AUni ws="qvm-x-acl">guela</AUni> -<AUni ws="qvm-x-akh">qela</AUni> -<AUni ws="qvm-x-akl">qela</AUni> -<AUni ws="qvm-x-ame">qila</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="c533f197-4448-4a72-87f3-bef95ff4fc6e" ownerguid="21d1998d-dfc2-4151-8d77-3c73f30916f8"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c5341cad-2caa-48e8-80d5-0ed9ac9d5ee9" ownerguid="47e4b48f-7259-4ca7-abb1-f52c974bfc84"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">whisper</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="caf73ad7-2508-4a9b-8213-e355bc381c7d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c5348009-9fb7-4eec-908b-07ac462e77a9" ownerguid="be0b7b6e-c484-4277-b788-c5b434079a2f"> -<Form> -<AUni ws="qvm-x-ach">ronzal</AUni> -<AUni ws="qvm-x-acl">ronzal</AUni> -<AUni ws="qvm-x-akh">ronzal</AUni> -<AUni ws="qvm-x-akl">ronzal</AUni> -<AUni ws="qvm-x-ame">ronzal</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c5395689-4e64-457b-afcd-b7c519919ed8" ownerguid="f2022802-4f43-4fa2-8c58-33a8b9e75895"> -<ExampleWords> -<AUni ws="en">accumulate, build up, pile up, collect, gather, mount up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to increasing slowly?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c539f20f-d67b-4117-bbc0-7589c4f9f88a" ownerguid="9f868391-f1df-4682-bdcb-2c2c799006cf"> -<ExampleWords> -<AUni ws="en">cherish (a memory/thought), treasure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to remembering something good?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c53a2cce-d66c-4531-bba1-518007480df5" ownerguid="e15322ea-b7fc-4b8e-8147-fe9c3313caba"> -<Form> -<AUni ws="qvm-x-ach">mircapa</AUni> -<AUni ws="qvm-x-acl">mircapa</AUni> -<AUni ws="qvm-x-akh">mirkapa</AUni> -<AUni ws="qvm-x-akl">mirkapa</AUni> -<AUni ws="qvm-x-ame">mirkapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="c53becaf-c133-48c3-8e5c-1813b12ffe5b" ownerguid="dbe972e1-d182-4463-bfd9-f1836a052a29"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="963113db-ab9b-4f15-965c-b0adfd227c7b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c5406d9e-3a16-4571-b070-f4c68c4cb389" ownerguid="81b564d9-347e-4ad1-9cc1-bfa7497fe06a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">paralitic</AUni> -<AUni ws="es">paralítico</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="adc33d47-17d7-446d-ae82-5af743c1cb02" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c541232b-edc5-4bd4-bbeb-92beea5020c4" ownerguid="4dc50300-5e81-4a47-a5c5-d0434d75eb81"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">decrepit</AUni> -<AUni ws="es">decrépito</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="daf84e25-fc74-4136-9897-3df23190b13e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c5428ab1-0a9d-4c3e-a909-ff4a5730054d" ownerguid="1f880c05-7c66-439a-867a-50935f5fcb93"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="c5446904-b898-49e7-afc9-90bcbf4ad155"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jatu</AUni> -<AUni ws="qvm-x-acl">jatu; jatu; jato</AUni> -<AUni ws="qvm-x-akh">jatu</AUni> -<AUni ws="qvm-x-akl">jatu; jatu; jato</AUni> -<AUni ws="qvm-x-ame">hatu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hatu</AUni> -<AUni ws="qvm-x-acl">*hatu</AUni> -<AUni ws="qvm-x-akh">*hatu</AUni> -<AUni ws="qvm-x-akl">*hatu</AUni> -<AUni ws="qvm-x-ame">*hatu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.688" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="70c883d4-2a7d-402f-b160-f97a7201efe8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hatu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="06f8ae29-ff0e-479c-ad76-6c91d96b706d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="59033128-a8ca-4004-93ad-51fc8001b6d6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hatu 
\entryTyp root 
\gENG 
\gSPN 
\e *hatu 
\c N1 
\ach jatu 
\akh jatu 
\acl jatu / _# 
\acl jatu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl jato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jatu / _# 
\akl jatu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl jato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hatu 
\mcc *hatu / _ JUST.V / _ SIZE1</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="c545880d-747a-42de-a0cc-43b80752a6c2" ownerguid="fffee68a-200e-453a-a5bf-318e68e52289"> -<Form> -<AUni ws="qvm-x-ach">democracia</AUni> -<AUni ws="qvm-x-acl">democracia</AUni> -<AUni ws="qvm-x-akh">democracia</AUni> -<AUni ws="qvm-x-akl">democracia</AUni> -<AUni ws="qvm-x-ame">democracia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c5493689-4998-4f4c-8ce4-7d173dcb6329" ownerguid="c8595a5f-4dde-4260-b8d8-265d0554ce93"> -<ExampleWords> -<AUni ws="en">narrow victory, close call, hard won</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a difficult victory?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c5498220-6ca7-46f7-93a3-4f18902a6f07" ownerguid="d25f7907-091e-4cf7-bd8c-bdb97278b616"> -<ExampleWords> -<AUni ws="en">(no words in English)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to hitting two things together?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c54ada5e-e56f-4cd6-9367-b9bd5601067c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsaqui</AUni> -<AUni ws="qvm-x-acl">tsaqui; tsaqui; tsaque</AUni> -<AUni ws="qvm-x-akh">tsaki</AUni> -<AUni ws="qvm-x-akl">tsaki; tsaki; tsake</AUni> -<AUni ws="qvm-x-ame">tsaki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chaki.n</AUni> -<AUni ws="qvm-x-acl">*chaki.n</AUni> -<AUni ws="qvm-x-akh">*chaki.n</AUni> -<AUni ws="qvm-x-akl">*chaki.n</AUni> -<AUni ws="qvm-x-ame">*chaki.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.264" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5132a9a2-e65a-4438-8994-12885ef95856" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chaki.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="19c3ab6f-0cf4-44d4-b2e5-9b9d4005f6db" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e7fd7bd0-e199-48ae-9c85-07a849a685e8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chaki.n 
\entryTyp root 
\gENG dry 
\gSPN seco 
\e *chaki.n 
\c N0 
\mp +FinalI 
\ach tsaqui 
\akh tsaki 
\acl tsaqui / _# 
\acl tsaqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tsaque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsaki / _# 
\akl tsaki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tsake +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsaki 
\mcc *chaki.n / ~_ [poss]</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="c54b1279-d408-43cb-a4a8-190ca3bca509" ownerguid="ae19b24e-c503-4897-938a-1529a6600d39"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c54b5d06-20c4-49eb-b90f-879e37b9d7af" ownerguid="7648040b-0aa5-4d9a-8f13-ffd066b81602"> -<ExampleWords> -<AUni ws="en">long, huge, vast</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a long distance?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c54d0575-df62-48d0-9a28-f2ff5c53ab7d" ownerguid="2b6f9af7-04ee-4030-a2cd-87d55959caa8"> -<ExampleWords> -<AUni ws="en">fear (n), fright, alarm, foreboding, horror, panic (n), terror, trepidation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of fear?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c54d2602-67b5-4726-a3ba-2c26f61be95e" ownerguid="0bbe1739-e0b4-442e-b69c-02a0ea20d790"> -<ExampleWords> -<AUni ws="en">run submerged, swim underwater</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to moving while underwater?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c54edc2c-299f-42fe-a722-e14ef303e3f3" ownerguid="725d78eb-8cac-4b2f-b5a4-f0a9adb80f5d"> -<ExampleWords> -<AUni ws="en">impious, irreligious, profane</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe someone who is against God?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c54f1255-5209-4a71-8c07-6d8fed1b4238" ownerguid="a73c9c31-7e39-4c84-8614-4e84257a105a"> -<Form> -<AUni ws="qvm-x-ach">mantiëni</AUni> -<AUni ws="qvm-x-acl">mantiëni; mantiëne</AUni> -<AUni ws="qvm-x-akh">mantiëni</AUni> -<AUni ws="qvm-x-akl">mantiëni; mantiëne</AUni> -<AUni ws="qvm-x-ame">mantiëni</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c54fdce3-53df-401b-b652-4d97417f7836" ownerguid="b8d2fdb9-22ea-4040-8abb-aeeff0399f23"> -<ExampleWords> -<AUni ws="en">massacre, slaughter, exterminate, annihilate, wipe out, bloody</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to killing many people?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c55029f6-188e-4812-a5fd-c28e2dba66e2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">zanja</AUni> -<AUni ws="qvm-x-acl">zanja</AUni> -<AUni ws="qvm-x-akh">zanja</AUni> -<AUni ws="qvm-x-akl">zanja</AUni> -<AUni ws="qvm-x-ame">zanja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+zanjar</AUni> -<AUni ws="qvm-x-acl">+zanjar</AUni> -<AUni ws="qvm-x-akh">+zanjar</AUni> -<AUni ws="qvm-x-akl">+zanjar</AUni> -<AUni ws="qvm-x-ame">+zanjar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.810" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c760259d-1cd1-4558-8d6e-600f93020689" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+zanjar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="13a30676-1c05-4dd8-99cb-b631455ed94c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b56e4ae2-0f53-4541-922f-ab25958e73d6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +zanjar 
\entryTyp root 
\gENG dig.ditch 
\gSPN sanjar 
\e +zanjar 
\c V1 
\ach zanja 
\akh zanja 
\acl zanja 
\akl zanja 
\ame zanja</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="c55093e2-1f66-4207-9ab7-bb2d519bb976" ownerguid="0f631495-e758-444e-9249-d7f384f96f49"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c550db55-f3f7-45cf-a1df-2e13904d419a" ownerguid="df149819-608f-46cd-ba0f-55f1d9d2e8ec"> -<ExampleWords> -<AUni ws="en">speed, velocity, pace</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the speed at which a person acts?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="c551320d-79da-4e74-bad7-fbb5c5b456ce" ownerguid="52068c0e-41e0-4d0b-9224-902e04c927f0"> -<Form> -<AUni ws="qvm-x-ach">ran</AUni> -<AUni ws="qvm-x-acl">ran</AUni> -<AUni ws="qvm-x-akh">ran</AUni> -<AUni ws="qvm-x-akl">ran</AUni> -<AUni ws="qvm-x-ame">ran</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c551af17-52a2-4a9c-8aee-e95a662642de" ownerguid="7efa087f-a344-488d-83e1-40cb415b378f"> -<Form> -<AUni ws="qvm-x-ach">puchca</AUni> -<AUni ws="qvm-x-acl">puchca</AUni> -<AUni ws="qvm-x-akh">puchka</AUni> -<AUni ws="qvm-x-akl">puchka</AUni> -<AUni ws="qvm-x-ame">puchka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="c5524a37-6cf8-4e54-aa51-2a2114ddf17b"> -<Analyses> -<objsur guid="42b3e6b1-7de0-4ff8-8c4e-94696de815c3" t="o" /> -<objsur guid="6cdb7ecf-5ac5-46b8-a7f7-45815f6b8e64" t="o" /> -</Analyses> -<Checksum val="-209654078" /> -<Form> -<AUni ws="qvm-x-akh">rikan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiAnalysis" guid="c552c8a3-e8fc-44e9-81f9-52ad272b6640" ownerguid="306aa768-0c74-4e14-9e38-87df3977d915"> -<Evaluations> -<objsur guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="d460cc70-b497-4df1-ac03-cf5e12f495fd" t="o" /> -<objsur guid="899fdb7b-1961-42ef-949e-0da911bfb6a5" t="o" /> -<objsur guid="c949151d-2f2c-4bb6-b8d4-e76ff276fab0" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="c558e1e9-2fce-4247-8c84-e9941ad2ceea" ownerguid="c6f5b428-95e9-4010-9567-4bd4871d3218"> -<Form> -<AUni ws="qvm-x-ach">civilmenti; civilmente</AUni> -<AUni ws="qvm-x-acl">civilmenti; civilmente</AUni> -<AUni ws="qvm-x-akh">civilmenti; civilmente</AUni> -<AUni ws="qvm-x-akl">civilmenti; civilmente</AUni> -<AUni ws="qvm-x-ame">civilmenti; civilmente</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c55acf67-a2ee-420f-a74b-08236521358f" ownerguid="7d472dd5-636d-4499-bf66-83cf23c0dbe1"> -<ExampleWords> -<AUni ws="en">child (adj), childish, juvenile</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something to do with children?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c55e24ac-17c0-4301-a067-2975eadb7722" ownerguid="1b68b286-0dca-4025-90fa-8fdf4cd2d664"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">worship</AUni> -<AUni ws="es">culto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f8cb90a4-0ec7-4723-ab0f-7982ca43af62" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c55e45c4-5f13-4fbd-9d7f-0fa743d13aeb" ownerguid="4843c8e5-7c5c-4892-8f4c-610054073035"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">measure</AUni> -<AUni ws="es">medida</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="feb11df8-d6a3-4a25-9097-b0b6a5b215fe" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c55f2d06-86e6-4a93-8e56-2f91e5f43f9e" ownerguid="a0d073df-d413-4dfd-9ba1-c3c68f126d90"> -<ExampleWords> -<AUni ws="en">asteroid, moon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What is a small planet called?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c55f651c-d199-49e2-9a8c-5846e6ac6efd" ownerguid="6e52a870-d21a-46e5-a841-75fa74e5070b"> -<Form> -<AUni ws="qvm-x-ach">quirma</AUni> -<AUni ws="qvm-x-acl">quirma</AUni> -<AUni ws="qvm-x-akh">kirma</AUni> -<AUni ws="qvm-x-akl">kirma</AUni> -<AUni ws="qvm-x-ame">kirma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c562dedc-58f7-4d10-94f5-15ca0263b2d7" ownerguid="6335fd7e-0903-4ba6-a248-56d3c7b9471f"> -<Form> -<AUni ws="qvm-x-ach">räta</AUni> -<AUni ws="qvm-x-acl">räta</AUni> -<AUni ws="qvm-x-akh">räta</AUni> -<AUni ws="qvm-x-akl">räta</AUni> -<AUni ws="qvm-x-ame">räta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="c5691449-0c8f-476d-aa99-2cd9936d6a33" ownerguid="0381bed7-c181-4cca-8c00-7c5b9b9fb3ae"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">narrow</AUni> -<AUni ws="es">estrecho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ed09e2cc-75fe-42fb-974e-c2e4a0c3be56" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c56d8483-fd00-43e2-851d-8fb1486798b0" ownerguid="5c348090-12f4-4c83-8331-e10971bbc8d3"> -<ExampleWords> -<AUni ws="en">gristle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to cartilage and other hard parts that are not eaten?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c56f130f-125c-4880-b0cc-f325107a26f2" ownerguid="a1dba1bc-1377-49b9-a4c2-1f3fabda9576"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="72e58eb4-57c2-4e63-8519-e9bfd009317b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c56f4ba7-8ae7-40c9-bdf4-d733649d1b04" ownerguid="d1ad4b21-19ad-4175-979a-832533796120"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">three</AUni> -<AUni ws="es">tres</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="01f2e0f4-4933-4a65-a9cc-e845c315fb2a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c57a40b3-4077-4f20-8d81-98d9b83f55df" ownerguid="e4517880-aa2d-4977-b55a-dcb0b6d1f533"> -<ExampleWords> -<AUni ws="en">beautiful, lovely, pretty, scenic, picturesque, magnificent, beauty spot, spectacular</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe a place that is beautiful?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c57aed3b-2416-4a1c-b7a7-b4410193923d" ownerguid="9b267cc1-983c-407a-98d2-1e27add6292c"> -<ExampleWords> -<AUni ws="en">tie up, bind hand and foot, shackle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to tying up a person?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="c57e0f38-52c7-4c01-8ba8-7e9d1a243575" ownerguid="d1321bbd-f84b-4665-ae4d-b3a935a3e55c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 36.24 Cada marcupa ishcay espïgan captinmi cada marcupa ishcay bäsincuna cargan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="c57f25d8-ca26-4b95-9dce-c918a1f779c0" ownerguid="3335ce6c-d135-4ea8-8a60-0858a3cbf893"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">vaccinate</AUni> -<AUni ws="es">vacunar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="35e00b14-d94b-4030-aea1-3f86511d0ac5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="c57fbd1b-47fc-4b4c-9d1a-0391b6b854aa" ownerguid="a1a48737-8d57-4702-9956-891c691d7b96"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yarga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yarga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yarqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yarqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yarqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="8adec79f-7ef5-4fc4-bb8b-93b1a76cc445" t="r" /> -</Morph> -<Msa> -<objsur guid="1afedd8a-1478-44b0-8828-b5d955ebdf49" t="r" /> -</Msa> -<Sense> -<objsur guid="7917a032-4704-4ecd-bde0-bc0a89612317" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="c584af9f-1475-45ca-83cb-f29151da950e" ownerguid="a0bceaf4-b5bd-43f7-84d8-388fce6a1b01" /> -<rt class="MoStemAllomorph" guid="c585aa52-aad2-4140-8eca-ed186cf69ac0" ownerguid="50511a02-278a-496c-9073-30ea2b59a80c"> -<Form> -<AUni ws="qvm-x-ach">dedicación; dedicacion</AUni> -<AUni ws="qvm-x-acl">dedicación; dedicacion</AUni> -<AUni ws="qvm-x-akh">dedicación; dedicacion</AUni> -<AUni ws="qvm-x-akl">dedicación; dedicacion</AUni> -<AUni ws="qvm-x-ame">dedicación; dedicacion</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="c5896450-e7b7-41af-9e26-707892ae0dc5" ownerguid="a909429a-d459-4e27-b1df-620deb91ab0f"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="c58ac404-360b-48cb-911c-caed8820d915" ownerguid="0fc9c27e-cf5d-49ba-b073-990cfc5ffe6b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">camay</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">camay</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kamay</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kamay</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kamay</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f0b99234-0a2f-44c4-83ae-47801443b6b2" t="r" /> -</Morph> -<Msa> -<objsur guid="1829a081-bc32-4291-9767-5bec080e6a37" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="c58cc80d-3a64-4276-b356-677cc6c986c2" ownerguid="fdaedbb6-8223-4884-86ff-cb2bad0e8175"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">male(animal)</AUni> -<AUni ws="es">macho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4d504c7f-55ba-43a1-b672-bd56bd6f2d04" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c596f09a-e522-47d9-8ddd-098bf29289e3" ownerguid="9ecafa63-d487-4cf6-9a07-48e243b8c1a3"> -<Form> -<AUni ws="qvm-x-ach">intu</AUni> -<AUni ws="qvm-x-acl">intu; into</AUni> -<AUni ws="qvm-x-akh">intu</AUni> -<AUni ws="qvm-x-akl">intu; into</AUni> -<AUni ws="qvm-x-ame">intu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="c5996b7d-0acc-4ac7-bfa0-09b93a0eccbc" ownerguid="34e92ff1-32aa-49c7-b4da-d161bedc5adc"> -<Abbreviation> -<AUni ws="en">6.6.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.468" /> -<DateModified val="2022-9-23 16:55:8.468" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to mining.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Mining</AUni> -</Name> -<OcmCodes> -<Uni>316 Mining and Quarrying; 317 Special Deposits</Uni> -</OcmCodes> -<Questions> -<objsur guid="89508a8d-a0aa-493a-986c-02ca4ac5d3e5" t="o" /> -<objsur guid="48d958c9-74f9-481a-a778-7ce9962ef895" t="o" /> -<objsur guid="2872d7af-27f3-4c1d-b8eb-2540c21f148c" t="o" /> -<objsur guid="b4d76e57-368b-4066-a496-a65ace3227f4" t="o" /> -<objsur guid="d5685124-48d5-402c-8bf4-2bfd0e788ff2" t="o" /> -<objsur guid="e2012293-be49-46d1-b51b-aad40da5c286" t="o" /> -<objsur guid="07c36e9c-52ef-447e-b733-4ae453104927" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="b3be00a9-41a4-42ae-ba51-320b5000a563" t="r" /> -<objsur guid="c5b8c936-1e01-4e86-9145-a2b721ec9e39" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="c59bccb7-e7cd-47a6-b531-b6d1b21cc46b" ownerguid="e5020b79-6fb0-4be4-a359-d4f899da5c7e"> -<ExampleWords> -<AUni ws="en">quarrelsome, contentious, argumentative, combative, pugnacious, faultfinding</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe someone who quarrels often?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c59cf5e5-7169-4323-83f3-5e479f412f43" ownerguid="ffd0547e-e537-4614-ac3f-6d8cd3351f33"> -<ExampleWords> -<AUni ws="en">whale flukes, flipper, blubber, baleen, blow hole</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What are the parts of sea mammals?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c59e5626-faf4-44f5-9e0e-901902a2b34c" ownerguid="f2a599c6-6343-4246-8847-446bb3b0bd21"> -<Form> -<AUni ws="qvm-x-ach">ala; alä</AUni> -<AUni ws="qvm-x-acl">ala; alä</AUni> -<AUni ws="qvm-x-akh">ala; alä</AUni> -<AUni ws="qvm-x-akl">ala; alä</AUni> -<AUni ws="qvm-x-ame">ala; alä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="c59fb6a7-a6eb-4ebe-bfa8-fd18a5089b55" ownerguid="2ba2f762-b6d4-4a4c-9119-aab9e3772316" /> -<rt class="CmDomainQ" guid="c5a0fcdc-5a02-4cb2-bfae-9d7ace0d9f96" ownerguid="03352940-c220-4a32-a9a5-fc08d1d0dc71"> -<ExampleWords> -<AUni ws="en">garbage, rubbish, trash, litter, refuse, junk, waste, wastepaper, scrap</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to garbage?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c5a2c86e-c86d-4157-b4e4-50b622473062" ownerguid="0cc62b4a-d5ff-4f45-83d1-e2b46e5d159a"> -<ExampleWords> -<AUni ws="en">time to get up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to the time when you wake up?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c5a3ca01-8601-4690-931c-90e4f356169f" ownerguid="a72ca6f7-e389-408a-8276-fec4d60a3a56"> -<ExampleWords> -<AUni ws="en">make up, form, constitute, add up to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that a group of things is something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c5a6409e-6600-4226-844c-359479c245f1" ownerguid="fe58ae61-ab0b-43a4-86fb-d9aedd199932"> -<ExampleWords> -<AUni ws="en">mix (n), mixture, admixture, amalgam, assortment, blend (n), brew (n), combination, composite, compound, conglomerate, conglomeration, fusion, hodgepodge, intermixture, jumble, mess, miscellany, mishmash, patchwork, odds and ends, solution, a cross between</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something made by mixing things together?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c5a84f1c-f6b5-4d71-a4fb-cea65bc1c2cd" ownerguid="025da6f4-b1b6-423a-8c0f-b324f531a6f1"> -<ExampleWords> -<AUni ws="en">wild, uncultivated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used to describe plants that grow wild?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c5aada2b-8293-45c2-9d57-1d1db30ecaf3" ownerguid="6f0813fd-b177-49a9-98f3-2ed3b398a85a"> -<Form> -<AUni ws="qvm-x-ach">cata</AUni> -<AUni ws="qvm-x-acl">cata</AUni> -<AUni ws="qvm-x-akh">kata</AUni> -<AUni ws="qvm-x-akl">kata</AUni> -<AUni ws="qvm-x-ame">kata</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="c5ab4678-381a-46cf-ae87-843209cda10c" ownerguid="caf7c146-f61c-4d13-a5bd-c89f537b6682"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="c5b362e8-4329-4ee3-898e-b1090d0c0b7a" ownerguid="b5db7cc5-1f04-4580-aeb6-14f142e2c344"> -<Form> -<AUni ws="qvm-x-ach">golpa</AUni> -<AUni ws="qvm-x-acl">golpa</AUni> -<AUni ws="qvm-x-akh">qolpa</AUni> -<AUni ws="qvm-x-akl">qolpa</AUni> -<AUni ws="qvm-x-ame">qulpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="c5b401ec-cabd-4457-84ba-52fab8df2e46" ownerguid="e5227f34-4f69-49ba-bc45-ca61a482ae17"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1sa 21.13 Tsaymi pasaypa löcutucushpan wayi puncucunacho imaycatapis lutala rascacachar escribergan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="c5b8c936-1e01-4e86-9145-a2b721ec9e39" ownerguid="e5f9c9cf-0b0c-47aa-b7df-8c37f211cd00"> -<Abbreviation> -<AUni ws="en">7.8.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.557" /> -<DateModified val="2022-9-23 16:55:8.557" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to digging in the ground.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>19F Dig</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Dig</AUni> -</Name> -<Questions> -<objsur guid="2a4c0f0a-0566-4a2e-8995-f69bcdcec674" t="o" /> -<objsur guid="5f45c89f-ff41-48dd-b292-88e98e8ac25e" t="o" /> -<objsur guid="da047d2c-6e45-4d78-8904-43437a30086f" t="o" /> -<objsur guid="a6526f4b-a0b4-4692-a1fb-7de94404e405" t="o" /> -<objsur guid="413258ae-7346-4321-b6e5-47bdb1edf23f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="c5ba3eb7-19ae-4bbb-96ff-6cebcdd4c587" ownerguid="b6e45998-9f6a-4b19-9cda-62410a11afa2"> -<ExampleWords> -<AUni ws="en">sorcery, magic (n), witchcraft, black magic, voodoo, voodooism, witchery, wizardry, occult, necromancy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the practice of sorcery?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c5bc0e11-ecfa-4299-b15d-f9262aca245f" ownerguid="084e2568-3f54-4eab-b436-8a87fb466659"> -<ExampleWords> -<AUni ws="en">stone, marble</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What materials does a stonemason work with?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c5c12827-1f84-4f27-931b-268ef4c1b2e3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shag</AUni> -<AUni ws="qvm-x-acl">shag</AUni> -<AUni ws="qvm-x-akh">shaq</AUni> -<AUni ws="qvm-x-akl">shaq</AUni> -<AUni ws="qvm-x-ame">shaq</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.599" /> -<DateModified val="2022-10-16 14:5:26.701" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a855a64d-1bb8-44af-b5f0-302d292c4df2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">1FUT</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dc53e817-8c9f-407c-9e09-cc7f8ae7e19f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="66d4c121-a9f0-496a-9d65-26f5f3dfc1ea" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx 1FUT 
\entryTyp suffix 
\gENG 1FUT 
\gSPN 1FUT 
\e 1FUT 
\c V1/V0 
\o 120 
\mp NeverForeshortened 
\ach shag 
\akh shaq 
\acl shag 
\akl shaq 
\ame shaq 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c5c19c30-d8a5-407d-af64-aca0b2f36d01" ownerguid="ae6f73ab-432d-42e8-aa1a-c848652a13f0"> -<ExampleWords> -<AUni ws="en">mannish, tomboy, tomboyish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe a woman who acts like a man?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c5c24209-9d22-4879-a5ce-138a07530575" ownerguid="a362ede0-5c25-4cc2-8c4d-c5003740c08e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="539e4c13-389e-4a99-8b99-689b17d59a65" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c5c27ef3-adec-40be-b5d7-297c05b23074" ownerguid="7ee92ca4-19aa-4abd-9f88-508766acc39c"> -<ExampleWords> -<AUni ws="en">roll up, scroll, curl</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to rolling something up?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c5c7496f-9232-488d-85e5-f67d01aea1c2" ownerguid="8e88ed6a-000d-400a-8cd8-7b3cc7f1818c"> -<ExampleWords> -<AUni ws="en">traditional medicine, natural medicine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the practice of traditional medicine?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c5c77976-9213-4aa7-ada1-c387fe0f7162" ownerguid="73308bb8-de11-49da-b4df-fd546cdfad56"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="c5d10af2-b4d8-4955-ab33-2631f89f489c" ownerguid="787a91ea-99bb-4965-94f2-fcef144aee12"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c5d5742e-7175-44a8-89c5-57196f9fb428" ownerguid="e545baab-581d-4af8-81f2-5a884e272349"> -<ExampleWords> -<AUni ws="en">stallion, mare</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to male or female horses?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="c5d61444-4d53-4700-a11b-218e33449981" ownerguid="615477f6-f481-447b-9231-15437a295812"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 11.5 Tsaynoglami lapan uywacunapa primer orgu wawancunapis wanur ushacangapag.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="c5d74f25-df12-486a-86bd-3f2167d0425e" ownerguid="8497fb66-8b91-46b9-a0d5-fb9385319561"> -<ExampleWords> -<AUni ws="en">bitter, acrid, astringent, bitter-tasting, caustic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What words describe something that has a bitter taste?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c5d947b3-b950-4af6-9f3c-4b8f487fa92c" ownerguid="e080687b-0900-4dd0-9677-e3aaa3eae641"> -<ExampleWords> -<AUni ws="en">set out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to explaining something completely?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="c5d95746-4a88-4561-8a21-1aef5a951383" ownerguid="9e0e2b44-6732-47a7-b994-f38302c0af95"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">NAM 3.6 Tsaynogpis ismaywan ganratacuycur runa pengacushgannogmi gamcunapis pengacunqui vincishunayquipag contrayquicunata yanapaptë.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="c5da961a-7d78-4ad4-854c-bbfbad18de27"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ichic</AUni> -<AUni ws="qvm-x-acl">ichic</AUni> -<AUni ws="qvm-x-akh">ichik</AUni> -<AUni ws="qvm-x-akl">ichik</AUni> -<AUni ws="qvm-x-ame">ichik</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ichik</AUni> -<AUni ws="qvm-x-acl">*ichik</AUni> -<AUni ws="qvm-x-akh">*ichik</AUni> -<AUni ws="qvm-x-akl">*ichik</AUni> -<AUni ws="qvm-x-ame">*ichik</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.782" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="93079cf7-8e03-4af6-b1d3-b10c8b324c5e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ichik</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d1489a71-419e-48ef-9dba-7242754297db" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a5525b24-d1f6-4b42-820a-c16a66cce39d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ichik 
\entryTyp root 
\gENG small 
\gSPN pequeño 
\e *ichik 
\c N0 
\mp +FinalC 
\ach ichic 
\akh ichik 
\acl ichic 
\akl ichik 
\ame ichik</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c5db2c2b-0cf5-455d-a31c-03db814d605b" ownerguid="af399519-5d7c-4100-9c79-8162cb4641cb"> -<ExampleWords> -<AUni ws="en">excruciatingly slow, move at a snail's pace, gradual, gradually, little by little, bit-by-bit, glacial</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe an action that is done extremely slowly?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c5dee45b-e78e-4cab-b7a3-212ef4d77e13" ownerguid="effc8ca7-1c35-4e4d-9b41-e7db8201be81"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="c5dfc0a3-98ab-4b09-ab50-3300f85df6db"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsicancaray</AUni> -<AUni ws="qvm-x-acl">tsicancaray</AUni> -<AUni ws="qvm-x-akh">tsikankaray</AUni> -<AUni ws="qvm-x-akl">tsikankaray</AUni> -<AUni ws="qvm-x-ame">tsikankaray</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chikankaray</AUni> -<AUni ws="qvm-x-acl">*chikankaray</AUni> -<AUni ws="qvm-x-akh">*chikankaray</AUni> -<AUni ws="qvm-x-akl">*chikankaray</AUni> -<AUni ws="qvm-x-ame">*chikankaray</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.305" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f4e533e6-32bb-4456-b64d-f42ef8a469ad" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chikankaray</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f9acd94d-0ee7-4a74-8899-7c4e814e6193" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="52d7deb2-ae11-469f-8346-4b321f43a2c6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chikankaray 
\entryTyp root 
\gENG huge 
\gSPN enorme 
\e *chikankaray 
\c ONSHEV 
\mp +FinalC 
\ach tsicancaray 
\akh tsikankaray 
\acl tsicancaray 
\akl tsikankaray 
\ame tsikankaray</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="c5e052e7-3eac-4e9c-a3f9-073b1980ed0a" ownerguid="9a0e46a2-ed49-467b-a201-37377c06b1a2"> -<Form> -<AUni ws="qvm-x-ach">apuesta</AUni> -<AUni ws="qvm-x-acl">apuesta</AUni> -<AUni ws="qvm-x-akh">apuesta</AUni> -<AUni ws="qvm-x-akl">apuesta</AUni> -<AUni ws="qvm-x-ame">apuesta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="c5e1cd91-b0cb-4770-8ed9-5f23ffca2276" ownerguid="34f9b8b3-0cef-477d-b7fb-2a1ceec20b95"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">seed</AUni> -<AUni ws="es">semilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="36d26f55-6983-41ba-bf4d-ecc3726ffb56" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c5e508cb-4be1-4e1d-ab39-c66e0056daf4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sawata</AUni> -<AUni ws="qvm-x-acl">sawata</AUni> -<AUni ws="qvm-x-akh">sawata</AUni> -<AUni ws="qvm-x-akl">sawata</AUni> -<AUni ws="qvm-x-ame">sawata</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*sawata</AUni> -<AUni ws="qvm-x-acl">*sawata</AUni> -<AUni ws="qvm-x-akh">*sawata</AUni> -<AUni ws="qvm-x-akl">*sawata</AUni> -<AUni ws="qvm-x-ame">*sawata</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.470" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="90d56522-f967-4157-a75c-c5a05ed1fe65" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*sawata</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0706fae4-582a-47c6-8df7-95d00c132ba9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e250016d-04a2-4d97-902e-a395bccaa737" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *sawata 
\entryTyp root 
\gENG 
\gSPN ropa muy larga que incomoda caminar 
\e *sawata 
\c V1 
\ach sawata 
\akh sawata 
\acl sawata 
\akl sawata 
\ame sawata 
\i Warmi sawatacashga purin.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c5e8573f-2dc9-4c6f-8706-e8d82ef33bc2" ownerguid="b5700ad7-36a1-4608-8789-8f84007244f8"> -<ExampleWords> -<AUni ws="en">sleepy, drowsy, half-asleep, can hardly keep your eyes open</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to being tired and wanting to sleep?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c5f1b2a4-8ed4-405c-83ed-cf06350ca559" ownerguid="2a14b38c-b241-481f-98c5-dd5c28f32e6b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lay.next.to</AUni> -<AUni ws="es">ser.al.lado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8e551e7f-6927-4ee4-95b3-328bbc4b0486" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c5f3ad8c-f7ad-42cc-80b5-7991d87bd2e6" ownerguid="8ad49531-ca06-44d4-9792-1a8730396f58"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">reward</AUni> -<AUni ws="es">recompensa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ca3eb40c-a1c0-461c-90b7-00b57a691b56" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c5f78084-f48c-4610-b101-af68b8ee5bac"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa:sas</AUni> -<AUni ws="qvm-x-acl">pa:sas</AUni> -<AUni ws="qvm-x-akh">pa:sas</AUni> -<AUni ws="qvm-x-akl">pa:sas</AUni> -<AUni ws="qvm-x-ame">pa:sas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pasas</AUni> -<AUni ws="qvm-x-acl">+pasas</AUni> -<AUni ws="qvm-x-akh">+pasas</AUni> -<AUni ws="qvm-x-akl">+pasas</AUni> -<AUni ws="qvm-x-ame">+pasas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.739" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="28564ac1-8b08-47e9-ae8b-6d8ebec2429a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pasas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d198e68d-2f11-4047-b4bd-8cb27caa5a8f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e08a1139-d1dd-4b88-9774-f18d7a01daeb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pasas 
\entryTyp root 
\gENG 
\gSPN 
\e +pasas 
\c N0 
\mp +FinalC 
\ach pa:sas 
\akh pa:sas 
\acl pa:sas 
\akl pa:sas 
\ame pa:sas</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="c5f858b4-ca56-41d2-9bfb-4d31af4ecaac"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">enamura:du</AUni> -<AUni ws="qvm-x-acl">enamura:du; enamura:du; enamura:do</AUni> -<AUni ws="qvm-x-akh">enamura:du</AUni> -<AUni ws="qvm-x-akl">enamura:du; enamura:du; enamura:do</AUni> -<AUni ws="qvm-x-ame">enamura:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+enamorado</AUni> -<AUni ws="qvm-x-acl">+enamorado</AUni> -<AUni ws="qvm-x-akh">+enamorado</AUni> -<AUni ws="qvm-x-akl">+enamorado</AUni> -<AUni ws="qvm-x-ame">+enamorado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.457" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dd607b37-2432-4740-9542-11c3443b85f7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+enamorado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="470f6338-ad88-4079-bbbb-a153011c7edc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b26866bb-29c8-415d-ae12-3bd84c011f5d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +enamorado 
\entryTyp root 
\gENG in.love 
\gSPN enamorado 
\e +enamorado 
\c N0 
\ach enamura:du 
\akh enamura:du 
\acl enamura:du / _# 
\acl enamura:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl enamura:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl enamura:du / _# 
\akl enamura:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl enamura:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame enamura:du</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c5faea0a-488c-42e9-80d7-39c86398c004" ownerguid="80563285-4de7-4040-8080-a5b22208e7d5"> -<ExampleWords> -<AUni ws="en">attack (n), assault, charge (n), onrush, rush (n), strike (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to an attack?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c5fd2320-bc0d-42fa-b741-36d0d40d42f7" ownerguid="ffa13b7d-5eaa-43be-8518-51d9aa08f321"> -<ExampleWords> -<AUni ws="en">trilogy, trinity, triple, triumvirate, triune</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a group of three?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="c5fd67e1-1643-4545-af37-b4729ad8d8a7" ownerguid="7fe7626d-bcfc-490a-981f-61a702901ca5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuya</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuya</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuya</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuya</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuya</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ed8e0c9a-5a44-4448-bc6b-1b766f141f5c" t="r" /> -</Morph> -<Msa> -<objsur guid="6ee88865-51d6-40db-b9fa-4ba30a1cf4e7" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="c5fda729-dae3-4ac7-aae3-ed4210571651"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">goberna</AUni> -<AUni ws="qvm-x-acl">goberna</AUni> -<AUni ws="qvm-x-akh">goberna</AUni> -<AUni ws="qvm-x-akl">goberna</AUni> -<AUni ws="qvm-x-ame">goberna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gobernar</AUni> -<AUni ws="qvm-x-acl">+gobernar</AUni> -<AUni ws="qvm-x-akh">+gobernar</AUni> -<AUni ws="qvm-x-akl">+gobernar</AUni> -<AUni ws="qvm-x-ame">+gobernar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.619" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7a268c05-238e-4c1f-9bc6-badb9c2f35f5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gobernar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="36b032b5-ab75-4b7b-8531-47e9a184fc9b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="11b78a83-0422-49fa-8e2b-42f5e31ece98" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gobernar 
\entryTyp root 
\gENG to.govern 
\gSPN gobernar 
\e +gobernar 
\c V2 
\ach goberna 
\akh goberna 
\acl goberna 
\akl goberna 
\ame goberna</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="c5fea560-fb4c-492d-bf24-2cf74ff46293" ownerguid="eff74619-b3e3-46b4-9afc-06533cc47ddf"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Juc runa chayatsergan goñuñuycagta sebäda rurashgan ishcay chunca tantata.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="c5ffe4fb-9a60-4ac0-b1d4-08c7d02111c6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tirish</AUni> -<AUni ws="qvm-x-acl">tirish</AUni> -<AUni ws="qvm-x-akh">tirish</AUni> -<AUni ws="qvm-x-akl">tirish</AUni> -<AUni ws="qvm-x-ame">tirish</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tirish</AUni> -<AUni ws="qvm-x-acl">*tirish</AUni> -<AUni ws="qvm-x-akh">*tirish</AUni> -<AUni ws="qvm-x-akl">*tirish</AUni> -<AUni ws="qvm-x-ame">*tirish</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.926" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ff3b7b33-b572-4941-a01f-4020b2054567" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tirish</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5ec131f3-bd87-419f-b90c-0b3e8cdb0a1b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6f66c39e-3a94-4600-8cb5-3bc940b61eb0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tirish 
\entryTyp root 
\gENG 
\gSPN 
\e *tirish 
\c N0 
\mp +FinalC 
\ach tirish 
\akh tirish 
\acl tirish 
\akl tirish 
\ame tirish</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c6027fd5-db1a-4fde-bd34-b9f83fd65a84" ownerguid="f9d020d6-b129-4bb8-9509-3b4a6c27482e"> -<ExampleWords> -<AUni ws="en">interesting, be of interest, entertaining, lively, stimulating, stimulation, unusual, have character</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that is interesting?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c6043577-66a6-4a05-9514-21e69d66fb52" ownerguid="e2660eb1-710e-420c-976d-7afccb9b8ea4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ripple</AUni> -<AUni ws="es">ondear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c71720b0-fd01-49d5-ac6d-e617efef3a7f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c6047088-dfa1-409b-a901-2a442c5a94b5" ownerguid="76662e0a-c33f-4ade-8f11-e668d2cd276c"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="c606feb2-920e-4f73-bb06-8a0ab1e0b5ea"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pulpa</AUni> -<AUni ws="qvm-x-acl">pulpa</AUni> -<AUni ws="qvm-x-akh">pulpa</AUni> -<AUni ws="qvm-x-akl">pulpa</AUni> -<AUni ws="qvm-x-ame">pulpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pullpa</AUni> -<AUni ws="qvm-x-acl">*pullpa</AUni> -<AUni ws="qvm-x-akh">*pullpa</AUni> -<AUni ws="qvm-x-akl">*pullpa</AUni> -<AUni ws="qvm-x-ame">*pullpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.998" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4418496c-c969-4a59-ad37-cccf989c0e5f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pullpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fa858c34-507d-4e5a-a134-12f055e694b9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e1378c8f-367f-4f0a-85c2-f7afa84637af" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pullpa 
\entryTyp root 
\gENG ham 
\gSPN jamón 
\e *pullpa 
\c N0 
\ach pulpa 
\akh pulpa 
\acl pulpa 
\akl pulpa 
\ame pulpa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="c6078987-9799-48d2-b883-e3b02bdf7c77" ownerguid="4b1fe9c3-961e-4074-9ea1-ce5cb4dcd415"> -<Form> -<AUni ws="qvm-x-ach">siuya</AUni> -<AUni ws="qvm-x-acl">siuya</AUni> -<AUni ws="qvm-x-akh">siwya</AUni> -<AUni ws="qvm-x-akl">siwya</AUni> -<AUni ws="qvm-x-ame">siwya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="c607cf9e-7bcb-41c5-bc62-a89c99ce1654" ownerguid="102350e7-cac1-4b67-987f-5a0db589495a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 11.13 Tulu shimega \f + 11.13 Waquin runacunaga \it Wilapishtëroga\it* nipäcun.\f* imata mayashgalantapis wilapacurmi purin.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="c6082ee4-b7c3-4c15-bca0-360b61757b2d" ownerguid="c103d339-24f2-45c6-8539-d3c445e15c49"> -<ExampleWords> -<AUni ws="en">watch out, look out, heads up, hit the dirt, get out of the way, here it comes, oh no, (scream)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used to warn someone of danger?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c60b170c-2816-4830-983a-9343422522b7" ownerguid="8894cac9-c82a-4616-856e-0516d2ed1df7"> -<ExampleWords> -<AUni ws="en">mean (something), have the meaning</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) How do you say that something means something?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="c60cf6a1-7868-4536-ac73-387bfa26e04b" ownerguid="b0a9a631-e0dc-47d4-a762-e9a627732218"> -<Abbreviation> -<AUni ws="en">4.5.4.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.256" /> -<DateModified val="2022-9-23 16:55:8.256" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to rebelling against authority.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>39G Rebellion</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Rebel against authority</AUni> -</Name> -<OcmCodes> -<Uni>669 Revolution</Uni> -</OcmCodes> -<Questions> -<objsur guid="70600a78-96fb-4d06-a07e-7755cb589f39" t="o" /> -<objsur guid="c8f5834c-da75-496f-b0e4-40465eee8b40" t="o" /> -<objsur guid="12160682-2829-47eb-89b2-933c376ea594" t="o" /> -<objsur guid="940baead-a62f-4cca-84bd-53b41b215cf9" t="o" /> -<objsur guid="6dbc1bdb-38c0-491d-b22e-af97b5592e42" t="o" /> -<objsur guid="6379f853-14de-48e9-a866-38ebe315dc44" t="o" /> -<objsur guid="c6ffe0b3-caa7-4785-98b6-90bb8900173f" t="o" /> -<objsur guid="22aaf82f-4320-4b39-bc3a-f64055eda0ae" t="o" /> -<objsur guid="38c3e015-f9c6-436a-8940-0ea13a6f8029" t="o" /> -<objsur guid="4b2b120d-ff65-4e92-bf12-0794303277a7" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="c610ac35-b269-4f14-8bdc-88baaa7273f0" ownerguid="bb533f0d-2a18-4637-90ce-86198308d1f8"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Tsay junag mana ayunag cäga pï captinpis Israel runacunapita gargushgami canga. (Margos)</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="c6132280-d2aa-46f8-9e94-b087dbda09cb" ownerguid="985f099d-f38c-4957-907a-769d1a45ca10"> -<Abbreviation> -<AUni ws="en">7.2.1.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that refer to balancing yourself or something--when someone or something is able stand or move without falling.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Balance</AUni> -</Name> -<Questions> -<objsur guid="b364a7bc-adce-4fad-9caf-28e5f27b3a71" t="o" /> -<objsur guid="29f9dc7f-f1a2-4143-a3ec-55aeb9bb3144" t="o" /> -<objsur guid="4ae2f5fe-041b-4f4b-af32-212930a2d101" t="o" /> -<objsur guid="a220fd76-eeff-49b6-b485-ed1da7f841d9" t="o" /> -<objsur guid="e2e56cd2-64d4-4189-bebd-2d5d3cde1e1c" t="o" /> -<objsur guid="458a0fd9-0a16-4533-af31-9c0d4c0f6449" t="o" /> -<objsur guid="bbb45f29-0b40-4c8f-8431-de8a6a6f10a8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="c615f575-4448-414c-b8f4-d2f73bcdb3b1" ownerguid="47fb953c-33ca-4a22-af07-19f5b0a53df4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="9b2d8f39-754d-4c4f-93b2-e55cd1576af6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c618a3d2-1f31-43c3-afca-637fc6747477" ownerguid="b8d2fdb9-22ea-4040-8abb-aeeff0399f23"> -<ExampleWords> -<AUni ws="en">murder weapon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to something used to kill someone?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c61d7145-de24-4455-87d9-718a27d74d09"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gasha</AUni> -<AUni ws="qvm-x-acl">gasha</AUni> -<AUni ws="qvm-x-akh">qasha</AUni> -<AUni ws="qvm-x-akl">qasha</AUni> -<AUni ws="qvm-x-ame">qasha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qasha.n</AUni> -<AUni ws="qvm-x-acl">*qasha.n</AUni> -<AUni ws="qvm-x-akh">*qasha.n</AUni> -<AUni ws="qvm-x-akl">*qasha.n</AUni> -<AUni ws="qvm-x-ame">*qasha.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.132" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="039b8080-a747-48a2-b0b7-ef72b467cc4a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qasha.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8db6a163-c86c-4474-a0be-933b12a87fb4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c18108eb-f6f8-470b-bc83-5a1399329832" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qasha.n 
\entryTyp root 
\gENG 
\gSPN 
\e *qasha.n 
\c N0 
\ach gasha 
\akh qasha 
\acl gasha 
\akl qasha 
\ame qasha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="c61e5fbc-5387-408b-bdbd-1bed3680356f" ownerguid="1e28037c-3909-438b-bece-67a82baddbeb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">always</AUni> -<AUni ws="es">siempre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d3e047d0-23fc-4391-8430-a07f1991bb8e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c61e730a-cdec-421e-a47b-512a69128ad8" ownerguid="c7326724-aed9-4849-99c7-55af02f39f80"> -<Form> -<AUni ws="qvm-x-ach">cörri</AUni> -<AUni ws="qvm-x-acl">cörri; cörre</AUni> -<AUni ws="qvm-x-akh">cörri</AUni> -<AUni ws="qvm-x-akl">cörri; cörre</AUni> -<AUni ws="qvm-x-ame">cörri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c61f3456-deff-4ef6-9af5-6c11e7894bc9" ownerguid="7cb1fe51-099f-4381-a420-115b4c343bf1"> -<Form> -<AUni ws="qvm-x-ach">ushtu</AUni> -<AUni ws="qvm-x-acl">ushtu; ushto</AUni> -<AUni ws="qvm-x-akh">ushtu</AUni> -<AUni ws="qvm-x-akl">ushtu; ushto</AUni> -<AUni ws="qvm-x-ame">ushtu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="c621ef83-6f66-447d-b77c-c28dd7199969" ownerguid="9d9e2273-4ac9-4918-bb0c-8d503ed62821"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">suciedad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8f48ecbc-3dbc-4c33-9027-67c1c61bf41f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c6238cd2-efc4-43f2-8b5b-3f353624e5e2" ownerguid="dd5d3ad7-9163-4276-a348-fecdd895bb37"> -<Form> -<AUni ws="qvm-x-ach">lapsha; llapsha</AUni> -<AUni ws="qvm-x-acl">lapsha; llapsha</AUni> -<AUni ws="qvm-x-akh">lapsha; llapsha</AUni> -<AUni ws="qvm-x-akl">lapsha; llapsha</AUni> -<AUni ws="qvm-x-ame">lapsha; llapsha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c62643e5-18bb-496e-baf4-7ed665d6293a" ownerguid="0b7bfd0a-249c-45b6-9427-2c17ae00bf37"> -<ExampleWords> -<AUni ws="en">unravel, come unraveled, be all unraveled, ravel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something becoming unraveled?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c6278a34-4bfd-421b-a91d-704c140ceb1b" ownerguid="01459db0-bf2a-422b-8d55-0ab505aea2b4"> -<ExampleWords> -<AUni ws="en">be in need, be in pain, be injured, harm, be in distress, suffer persecution, be in danger, social unrest, anarchy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of trouble are there?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c62e246c-30ba-49ed-8885-c673eafdb477"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pishta</AUni> -<AUni ws="qvm-x-acl">pishta</AUni> -<AUni ws="qvm-x-akh">pishta</AUni> -<AUni ws="qvm-x-akl">pishta</AUni> -<AUni ws="qvm-x-ame">pishta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pishta</AUni> -<AUni ws="qvm-x-acl">*pishta</AUni> -<AUni ws="qvm-x-akh">*pishta</AUni> -<AUni ws="qvm-x-akl">*pishta</AUni> -<AUni ws="qvm-x-ame">*pishta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.861" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eab7c788-26f5-44ab-88ca-7dcdc184574b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pishta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fd4b8d8f-0e19-42d7-8e42-9b28fff64ce5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bf3ed4ea-35cd-47bc-987f-e6384074fa4b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pishta 
\entryTyp root 
\gENG slaughter 
\gSPN degollar 
\e *pishta 
\c V2 
\ach pishta 
\akh pishta 
\acl pishta 
\akl pishta 
\ame pishta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="c631712a-9932-4bee-8750-4aaa65f2fa34" ownerguid="5d90ec7a-591b-485f-b788-619e26b87851"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c631e94c-1ef3-4965-8b55-0ffdbd4b2f24" ownerguid="943eb131-2761-4c98-90a0-0bdfb0f8584d"> -<ExampleWords> -<AUni ws="en">sheet, blanket, covers, bedcovers, bedspread, bed curtains, pillow, mosquito net</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What covers are put on a bed?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c6335d5a-772d-4a3c-9f01-f5d0c83096d1" ownerguid="4a64d301-3123-4ede-a86b-e875df072ab3"> -<Form> -<AUni ws="qvm-x-ach">juchu</AUni> -<AUni ws="qvm-x-acl">juchu; jucho</AUni> -<AUni ws="qvm-x-akh">juchu</AUni> -<AUni ws="qvm-x-akl">juchu; jucho</AUni> -<AUni ws="qvm-x-ame">huchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c6340d2f-f792-470d-8005-679200241fec"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">escue:la</AUni> -<AUni ws="qvm-x-acl">escue:la</AUni> -<AUni ws="qvm-x-akh">escue:la</AUni> -<AUni ws="qvm-x-akl">escue:la</AUni> -<AUni ws="qvm-x-ame">escue:la</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+escuela</AUni> -<AUni ws="qvm-x-acl">+escuela</AUni> -<AUni ws="qvm-x-akh">+escuela</AUni> -<AUni ws="qvm-x-akl">+escuela</AUni> -<AUni ws="qvm-x-ame">+escuela</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.487" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b7b1ac4c-1503-4fb5-b052-f22911d37a9d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+escuela</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b0c901b0-b329-4db7-a30e-fa35460ad561" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ea7161dc-baa4-4212-aa21-8e49d1f39649" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +escuela 
\entryTyp root 
\gENG school 
\gSPN escuela 
\e +escuela 
\c N0 
\ach escue:la 
\akh escue:la 
\acl escue:la 
\akl escue:la 
\ame escue:la</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="c6358047-7749-4a6c-a7dc-9ab50f3984fd" ownerguid="f067ae9a-5f5b-44a4-b710-bb1357746fa8"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">LEV 19.29 Warmi tsuriquita prostitüta cananpag ama consientinquitsu.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="c6361356-0b5c-44f1-8fe2-7f3c28d41dbd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mostringu; mostringo</AUni> -<AUni ws="qvm-x-acl">mostringu; mostringu; mostringo</AUni> -<AUni ws="qvm-x-akh">mostringu; mostringo</AUni> -<AUni ws="qvm-x-akl">mostringu; mostringu; mostringo</AUni> -<AUni ws="qvm-x-ame">mostringu; mostringo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mostrenco</AUni> -<AUni ws="qvm-x-acl">+mostrenco</AUni> -<AUni ws="qvm-x-akh">+mostrenco</AUni> -<AUni ws="qvm-x-akl">+mostrenco</AUni> -<AUni ws="qvm-x-ame">+mostrenco</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.485" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ff69b8b8-8f9e-4d76-b3ce-1fd3c3b6d33d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mostrenco</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b0c4436d-04bf-4595-9c89-9cbe4b368697" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="da4b615f-bbdc-49e7-8626-b9874352bb2e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mostrenco 
\entryTyp root 
\gENG nomad 
\gSPN 
\e +mostrenco 
\c N0 
\ach mostringu / ~_# 
\ach mostringo / _# 
\akh mostringu / ~_# 
\akh mostringo / _# 
\acl mostringu / ~_# 
\acl mostringu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mostringo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mostringu / ~_# 
\akl mostringu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mostringo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mostringu / ~_# 
\ame mostringo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="c639dfd0-dc5c-4651-b1ef-25999c7fa9e1" ownerguid="5eeccff3-04b4-4136-a2d4-3a96706ea5b1"> -<Form> -<AUni ws="qvm-x-ach">pogru</AUni> -<AUni ws="qvm-x-acl">pogru; pogro</AUni> -<AUni ws="qvm-x-akh">poqru</AUni> -<AUni ws="qvm-x-akl">poqru; poqro</AUni> -<AUni ws="qvm-x-ame">puqru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c63af925-af2c-41a2-978b-ec111473297c" ownerguid="2d0b3058-d8bb-4110-a54a-e507b0d3a0e4"> -<ExampleWords> -<AUni ws="en">flow, circulate, blood pressure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to blood moving through the veins?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c63ba025-f1f0-4bcf-87ba-d3019a9059f3" ownerguid="c83bbaf2-b0a8-4c89-8d04-89e33130d354"> -<Form> -<AUni ws="qvm-x-ach">suwa</AUni> -<AUni ws="qvm-x-acl">suwa</AUni> -<AUni ws="qvm-x-akh">suwa</AUni> -<AUni ws="qvm-x-akl">suwa</AUni> -<AUni ws="qvm-x-ame">suwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c63f35a0-2718-4406-aebf-404012ab4276"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">reina</AUni> -<AUni ws="qvm-x-acl">reina</AUni> -<AUni ws="qvm-x-akh">reina</AUni> -<AUni ws="qvm-x-akl">reina</AUni> -<AUni ws="qvm-x-ame">reina</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+reina</AUni> -<AUni ws="qvm-x-acl">+reina</AUni> -<AUni ws="qvm-x-akh">+reina</AUni> -<AUni ws="qvm-x-akl">+reina</AUni> -<AUni ws="qvm-x-ame">+reina</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.318" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3eed1726-bb10-45b6-8efc-02b2c7b4e737" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+reina</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9b7210d1-6a6f-43af-b541-f18d3950175e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="95ed9ddc-7c90-414c-b65b-89a33ec35d5a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +reina 
\entryTyp root 
\gENG queen 
\gSPN reina 
\e +reina 
\c N0 
\ach reina 
\akh reina 
\acl reina 
\akl reina 
\ame reina</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c63f5454-d189-40c9-a899-04af1b13212a" ownerguid="e27adda9-0761-4b7f-abbf-24938ce1c01a"> -<ExampleWords> -<AUni ws="en">theater, cinema, stage, set, on location</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to a place where a drama is performed?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="c6443645-9ebe-4848-b86c-3526c3e251be" ownerguid="550e5497-12c3-4602-b2a7-39597a7f73e7"> -<Example> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">Kunkapitami fiërru cadinawan shequrätsirqan.</Run> -</AStr> -</Example> -<Reference> -<Str> -<Run ws="en">PSA 105.18</Run> -</Str> -</Reference> -</rt> -<rt class="WfiMorphBundle" guid="c649a077-abfa-4571-b458-43908d7f3e8c" ownerguid="e9a8359c-c101-4b03-85d3-ff4b9d31426b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">man</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">man</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">man</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">man</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">man</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1acbb55c-ccc7-45f0-b507-b8645ea87900" t="r" /> -</Morph> -<Msa> -<objsur guid="afad3961-fbf7-495d-bda7-b2ceaf12bba1" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="c64c250d-41cc-4558-acc1-12909206b57a" ownerguid="abab24dd-3897-4b19-a162-93d5230163a6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c656e18e-9d5f-4233-9876-347bdee0076a" ownerguid="a4ac260f-3c24-41af-90dc-c88e7a8fe6ff"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="cb60925c-7c27-4ff8-9c15-dc9b2a3ae9bf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c658f0e6-824d-435f-ac87-e717211f6c4e" ownerguid="bee4d6b2-771a-45e8-ab29-847f225a02d1" /> -<rt class="LexEntry" guid="c658f7a8-db8b-45a3-902f-dbb4631b50ed"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">olgu</AUni> -<AUni ws="qvm-x-acl">olgu; olgu; olgo</AUni> -<AUni ws="qvm-x-akh">olqu</AUni> -<AUni ws="qvm-x-akl">olqu; olqu; olqo</AUni> -<AUni ws="qvm-x-ame">ulqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ullqu</AUni> -<AUni ws="qvm-x-acl">*ullqu</AUni> -<AUni ws="qvm-x-akh">*ullqu</AUni> -<AUni ws="qvm-x-akl">*ullqu</AUni> -<AUni ws="qvm-x-ame">*ullqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.220" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fd46c5c7-47cf-49a5-b508-4a0751e7f9df" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ullqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="282270ab-a085-45f8-a4c6-d62fc91e425a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5b61f5ca-50c9-43e9-8dde-68827919c031" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ullqu 
\entryTyp root 
\gENG male 
\gSPN varón 
\e *ullqu 
\c N0 
\ach olgu 
\akh olqu 
\acl olgu / _# 
\acl olgu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl olgo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl olqu / _# 
\akl olqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl olqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ulqu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="c65a5371-6156-4f7b-83cb-3b0005867d7d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">agrade:ci</AUni> -<AUni ws="qvm-x-acl">agrade:ci; agrade:ce</AUni> -<AUni ws="qvm-x-akh">agrade:ci</AUni> -<AUni ws="qvm-x-akl">agrade:ci; agrade:ce</AUni> -<AUni ws="qvm-x-ame">agrade:ci</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+agradecer</AUni> -<AUni ws="qvm-x-acl">+agradecer</AUni> -<AUni ws="qvm-x-akh">+agradecer</AUni> -<AUni ws="qvm-x-akl">+agradecer</AUni> -<AUni ws="qvm-x-ame">+agradecer</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.659" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a5104a30-fd18-4b79-8497-96a0e7c70822" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+agradecer</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b3b08fa8-94fc-48e0-922a-d74b62c206fd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5a5e512f-da2b-4baf-9583-941bbecb0960" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +agradecer 
\entryTyp root 
\gENG thank 
\gSPN agradecer 
\e +agradecer 
\c V2 
\mp +FinalI 
\ach agrade:ci 
\akh agrade:ci 
\acl agrade:ci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl agrade:ce +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl agrade:ci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl agrade:ce +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame agrade:ci</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c65aeffb-3e72-487c-9c0d-c688841d6e69" ownerguid="ba1e8d2b-7d3e-4b65-a9be-ee1a4063c796"> -<ExampleWords> -<AUni ws="en">not worried, unworried, not concerned, unconcerned, unperturbed, not lose sleep over, don't care, without a care in the world, carefree, philosophical</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to not being worried?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c65bcae8-aa4b-45bb-a20f-31421f50bd6e" ownerguid="a19e219a-6cc1-4057-a8d9-18554ae88de1"> -<ExampleWords> -<AUni ws="en">crib, cradle, playpen</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) Where are babies put?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c65dc15a-3116-4e5d-b735-3b78ec53fbb1" ownerguid="af700054-258a-458a-9e38-e90397833e51"> -<ExampleWords> -<AUni ws="en">writing materials, paper, pen, ink, pencil</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the things used to write?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c65e3040-c397-4019-b12e-f4a1e8eab3aa" ownerguid="28b1aca0-8f20-42cc-bb36-9a97cc83c60a"> -<Form> -<AUni ws="qvm-x-ach">malwa</AUni> -<AUni ws="qvm-x-acl">malwa</AUni> -<AUni ws="qvm-x-akh">malwa</AUni> -<AUni ws="qvm-x-akl">malwa</AUni> -<AUni ws="qvm-x-ame">malwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="c65e8453-53ae-4dd3-a65c-693b85536a3b" ownerguid="35da454a-cfbd-4aa4-8290-bf1abf8543d3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c65f23f8-d40d-44e3-9334-1ff8b91362d3" ownerguid="d853597b-f3ed-470b-b6dd-8fe93b8e43eb"> -<ExampleWords> -<AUni ws="en">whisper (v), murmur, mutter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to making a quiet sound?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c66523e5-9cdd-49d4-9a8e-0895ffdc69b4" ownerguid="d1f0e873-9244-49df-aa83-4667f07fb91e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="f794861f-e80b-4ceb-a0e9-e32e7eed02b9" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="e54a0b5d-952e-4d2b-9341-20c3f5e166fa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="c6655400-a044-43b9-a01a-6a2cb01e1580" ownerguid="f2899cde-08e5-4930-9f1b-b4ad575b7411"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="c6667656-9669-4321-86ce-c90b2f1fd59e" ownerguid="ce6a862d-a4bb-4378-b14d-439806870c41"> -<ExampleWords> -<AUni ws="en">unlucky, be bad luck, bring bad luck, a jinx on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that causes bad luck?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c667c42a-4269-46b7-8e4d-d2fe7d254800" ownerguid="12ed3a86-33b0-4327-acac-d1e7279c02fa"> -<Form> -<AUni ws="qvm-x-ach">jita</AUni> -<AUni ws="qvm-x-acl">jita</AUni> -<AUni ws="qvm-x-akh">jita</AUni> -<AUni ws="qvm-x-akl">jita</AUni> -<AUni ws="qvm-x-ame">hita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c667ea4f-2460-4e57-9532-323bc13d4dcc" ownerguid="2b2bedd5-3f9c-4c18-a256-aa65ee19f15c"> -<ExampleWords> -<AUni ws="en">compatible, congruent, congruous, consistent, consonant, suitable, proper, fitting, presentable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe things that are compatible?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c66801f1-af98-4cce-9a77-295c32f3091c" ownerguid="3ca50578-7cab-42f1-aada-779844ac936d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">play</AUni> -<AUni ws="es">tocar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0c879183-7046-4fd1-ae61-bd30cb68711e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="c6688928-6694-4264-8048-a60b665b5793" ownerguid="4098899a-0ad0-4d71-9f9f-b99d5ba2e0d5"> -<Abbreviation> -<AUni ws="en">5.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.325" /> -<DateModified val="2022-9-23 16:55:8.325" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to using tobacco.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Tobacco</AUni> -</Name> -<OcmCodes> -<Uni>277 Tobacco Industry</Uni> -</OcmCodes> -<Questions> -<objsur guid="73808c09-7a3d-4e50-8c1c-3fbf7ce67bd7" t="o" /> -<objsur guid="73296ff4-0ad1-4c9e-a73e-271a4c52a479" t="o" /> -<objsur guid="e4c89c58-9f2a-49c1-90d0-c2a9e91cae69" t="o" /> -<objsur guid="243d4720-99f6-47d8-9bd7-d9008eee5c5e" t="o" /> -<objsur guid="b233ade9-ffa9-4259-8972-eea377b4197f" t="o" /> -<objsur guid="be71ce46-4013-48b3-b604-4d59f77cd8b1" t="o" /> -<objsur guid="d57f7a09-e6e9-44f5-9fc4-8296befd4317" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="c66930e8-2527-48a5-ab9c-665979f29d55" ownerguid="e27adda9-0761-4b7f-abbf-24938ce1c01a"> -<ExampleWords> -<AUni ws="en">star (v), feature, with, be in, appear in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words indicate that a drama has a particular actor in it?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c66aeb13-2604-4097-8f50-c8232255d314" ownerguid="43873b41-c559-435d-ad89-ffab5c2448eb"> -<Form> -<AUni ws="qvm-x-ach">vïnu</AUni> -<AUni ws="qvm-x-acl">vïnu; vïnu; vïno</AUni> -<AUni ws="qvm-x-akh">vïnu</AUni> -<AUni ws="qvm-x-akl">vïnu; vïnu; vïno</AUni> -<AUni ws="qvm-x-ame">vïnu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c671336d-379d-4bab-9c4b-fdbf511364d0" ownerguid="30e6b42c-6bbf-4659-99e7-aa4b8e68c9ce"> -<ExampleWords> -<AUni ws="en">good deed, good behavior</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something someone does that is good?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c6757a5b-f03f-4cc4-bb7b-ecadeac162b3" ownerguid="bd002dfa-e842-47d6-b11b-3c213cbf133a"> -<ExampleWords> -<AUni ws="en">umbilical cord, placenta, placental, sack, fluid, afterbirth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the parts that surround a baby and connect it to its mother's womb?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="c6765c92-52bb-4ec5-9c98-c47d905a975a"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">shuyarankitaqku</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="c677b4bb-efe4-4099-afb2-75c6b35fd953"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mananira; mananira:</AUni> -<AUni ws="qvm-x-acl">mananira; mananira:</AUni> -<AUni ws="qvm-x-akh">mananira; mananira:</AUni> -<AUni ws="qvm-x-akl">mananira; mananira:</AUni> -<AUni ws="qvm-x-ame">mananira; mananira:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mananira:</AUni> -<AUni ws="qvm-x-acl">*mananira:</AUni> -<AUni ws="qvm-x-akh">*mananira:</AUni> -<AUni ws="qvm-x-akl">*mananira:</AUni> -<AUni ws="qvm-x-ame">*mananira:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.305" /> -<DateModified val="2022-10-10 21:19:47.698" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8cb4f0ee-bc5a-4032-97eb-cf1c93b896bd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mananira:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ba012533-980e-48ff-96be-076164ebfda8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f2d99b48-6c24-42e3-9b3f-6606166fe529" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mananira: 
\entryTyp root 
\gENG be.reluctant 
\gSPN 
\e *mananira: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach mananira foreshortened 
\ach mananira: 
\akh mananira foreshortened 
\akh mananira: 
\acl mananira foreshortened 
\acl mananira: 
\akl mananira foreshortened 
\akl mananira: 
\ame mananira foreshortened 
\ame mananira:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="c6793f7f-1b45-4096-a31e-fe080ee0b60b" ownerguid="b7b26d35-9a0e-408d-b39a-aba28f9be3ba"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">olive</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="eb5b7322-12fa-46bc-9ef2-2dcf7307803f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c67ffc13-f8e2-4c3d-a608-b641df851b44" ownerguid="9b0fef63-5935-447d-801a-bb02dd6212bb"> -<ExampleWords> -<AUni ws="en">estimation, opinion, regard</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to what someone thinks of a person, either good or bad?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c68008f7-82e5-4737-8e88-43261b097708" ownerguid="dbd3e164-3f70-4395-9728-1c24c8900da6"> -<ExampleWords> -<AUni ws="en">pot, pan, frying pan, baking pan, casserole dish, cookie sheet, kettle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What containers are used to cook food?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c68286ed-6c8e-45a1-b149-94d0c805a2be" ownerguid="6ab060ca-ecfc-4a46-accb-42b0473998cd"> -<ExampleWords> -<AUni ws="en">join, meet, converge, merge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to two things (such as wires, roads, rivers) joining together?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c6835e27-579b-40f9-b37b-478ac0d170c9" ownerguid="da8c3912-9f3a-478c-832f-132abddf5c03"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="c6848b51-de16-4ee7-ac57-ecbfae85e37f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bo:llu</AUni> -<AUni ws="qvm-x-acl">bo:llu; bo:llu; bo:llo</AUni> -<AUni ws="qvm-x-akh">bo:llu</AUni> -<AUni ws="qvm-x-akl">bo:llu; bo:llu; bo:llo</AUni> -<AUni ws="qvm-x-ame">bo:llu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bolo</AUni> -<AUni ws="qvm-x-acl">+bolo</AUni> -<AUni ws="qvm-x-akh">+bolo</AUni> -<AUni ws="qvm-x-akl">+bolo</AUni> -<AUni ws="qvm-x-ame">+bolo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.971" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8d252558-8c71-43f2-bef4-f55499ef704b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bolo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="adf73237-74cd-407f-b35f-0369fd1269f7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a63d48a3-55db-4792-bfec-aaaff4484eaf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bolo 
\entryTyp root 
\gENG 
\gSPN 
\e +bolo 
\c N0 
\ach bo:llu 
\akh bo:llu 
\acl bo:llu / _# 
\acl bo:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl bo:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl bo:llu / _# 
\akl bo:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl bo:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame bo:llu 
\i Gen 40.17 Janan cag balaychömi tucuynirag böllucuna caycashga Faraón micunanpag. Tsay böllucunatami pishgucuna shamur micucurcushga.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c6860b37-0c63-4056-b7f2-cda8657ccc66" ownerguid="5446b5cf-f05a-4bb2-89eb-ce63e27040f3"> -<ExampleWords> -<AUni ws="en">style, pop, rock, country western, jazz, folk music, classical, longhair, modern, popular, chamber music, march, symphony, opera, ballet, musical, dance number, canned music</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What styles of music are there?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c6868e83-3cfd-4159-bf7f-9c9ff2f26360" ownerguid="de5cd80e-66b4-46e5-b233-ff54fc051820"> -<Form> -<AUni ws="qvm-x-ach">coliseu; coliseo</AUni> -<AUni ws="qvm-x-acl">coliseu; coliseu; coliseo</AUni> -<AUni ws="qvm-x-akh">coliseu; coliseo</AUni> -<AUni ws="qvm-x-akl">coliseu; coliseu; coliseo</AUni> -<AUni ws="qvm-x-ame">coliseu; coliseo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c68b3243-ad9f-443f-a44c-a576a6d9f776" ownerguid="04543543-4c3d-4d71-aa87-53191ef3b7b0"> -<ExampleWords> -<AUni ws="en">immediate, instant, instantaneous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that happens immediately?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c68da57e-5e39-4920-81a2-7e096bb1ae31" ownerguid="83c35895-8809-4e26-92f2-056942c9c007"> -<Form> -<AUni ws="qvm-x-ach">investiga</AUni> -<AUni ws="qvm-x-acl">investiga</AUni> -<AUni ws="qvm-x-akh">investiga</AUni> -<AUni ws="qvm-x-akl">investiga</AUni> -<AUni ws="qvm-x-ame">investiga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="c697fb5f-0b9d-4814-a324-c7fb79124f1e" ownerguid="1cbb30d4-6c4a-4512-b807-1a21559996c8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wanu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wanu; wano</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wanu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wanu; wano</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wanu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="9315bafb-8125-42cb-ac3d-613c760213b3" t="r" /> -</Morph> -<Msa> -<objsur guid="52c4e986-5fd0-4705-87fe-8ddc628aff31" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="c69c0ee4-61b5-4377-8a2d-f0e12303adc8" ownerguid="e4e05724-01ec-4c61-90f0-b8658cc8ca51"> -<ExampleWords> -<AUni ws="en">telescope, binoculars, field glass</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What things do people use to see things far away?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c69c204e-85ae-48cc-95b0-8e716ac96c9e" ownerguid="4daad1d2-6cfb-469d-9288-69602e35b12d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="c69c62e0-4059-4740-891c-eb0a8de5b1e8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gorya</AUni> -<AUni ws="qvm-x-acl">gorya</AUni> -<AUni ws="qvm-x-akh">qorya</AUni> -<AUni ws="qvm-x-akl">qorya</AUni> -<AUni ws="qvm-x-ame">qurya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qurya</AUni> -<AUni ws="qvm-x-acl">*qurya</AUni> -<AUni ws="qvm-x-akh">*qurya</AUni> -<AUni ws="qvm-x-akl">*qurya</AUni> -<AUni ws="qvm-x-ame">*qurya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.880" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5271a791-8e42-4524-865f-693fbc8b243f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qurya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e0b52011-b350-4a3a-b3fe-69ed0689a9fc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="31f9a5da-56ec-4747-a55a-60245ef767b7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qurya 
\entryTyp root 
\gENG snore 
\gSPN roncar 
\e *qurya 
\c V1 
\ach gorya 
\akh qorya 
\acl gorya 
\akl qorya 
\ame qurya</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="c69c6938-e731-426e-bf22-a428907d08ad" ownerguid="628d8675-0a30-46be-a46d-8a584a52ad5b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c69c9a3a-2acd-49e4-bce4-0512e4a6baf1" ownerguid="ac550d1f-ec74-46a8-bf81-7832ace533ee"> -<ExampleWords> -<AUni ws="en">popularize</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to making something popular?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c69c9fc1-2a39-4ef6-b2c1-f06caaf308b9" ownerguid="5ec80646-cf32-41f0-b851-0c57c6275fc5"> -<Form> -<AUni ws="qvm-x-ach">fuminta</AUni> -<AUni ws="qvm-x-acl">fuminta</AUni> -<AUni ws="qvm-x-akh">fuminta</AUni> -<AUni ws="qvm-x-akl">fuminta</AUni> -<AUni ws="qvm-x-ame">fuminta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="c69cfaa5-462e-484e-8c4e-4e2051729321" ownerguid="81ee2959-dd6f-4cb7-8269-89a2ad94ac5d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">adobe</AUni> -<AUni ws="es">adobe</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="719f402e-ab11-4035-b721-575e6bf65a6e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c69faa27-8889-4b76-898b-e2783d89fddc" ownerguid="72da0752-f34e-4282-9738-06bc39ad399f"> -<Form> -<AUni ws="qvm-x-ach">pusanga</AUni> -<AUni ws="qvm-x-acl">pusanga</AUni> -<AUni ws="qvm-x-akh">pusanqa</AUni> -<AUni ws="qvm-x-akl">pusanqa</AUni> -<AUni ws="qvm-x-ame">pusanqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c6a15dec-03a2-4c03-a340-7e63622c48a0" ownerguid="ca91e41a-81c3-4c96-87e6-f67477fcd686"> -<ExampleWords> -<AUni ws="en">discipline, correct</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to disciplining a child?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c6a1f991-1c30-4cc8-a875-90ac4ba08cbf" ownerguid="e10baccf-7e2e-43c3-b5db-4433b589673e" /> -<rt class="CmDomainQ" guid="c6a30190-65b0-4db7-b7a9-63efea6f0e1b" ownerguid="a3e905b8-107b-4311-bb50-0abe151131b3"> -<ExampleWords> -<AUni ws="en">give someone complete freedom, give someone a free hand, give someone carte blanche, give someone the run of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to allowing someone to do whatever they want?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c6a51013-edb6-43c0-983f-2fe2062b8f61" ownerguid="a93c6d7f-1e84-4184-9282-60c150069d8d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dark</AUni> -<AUni ws="es">oscuro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d25d1ccc-8551-4ad4-a4da-626efbfc8799" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c6a55f2d-8c68-4cae-b5d8-f62f45155e2f" ownerguid="d59a84e1-5e12-4cb7-b72b-15c51810ad48"> -<ExampleWords> -<AUni ws="en">divide, sow dissension, set at odds, pit against, part company with, have a falling out, differ, clash, disagree</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to dividing a social group or more than one social group?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c6a618c4-3f9b-4313-89e4-b75669417ca8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">trillado:ra</AUni> -<AUni ws="qvm-x-acl">trillado:ra</AUni> -<AUni ws="qvm-x-akh">trillado:ra</AUni> -<AUni ws="qvm-x-akl">trillado:ra</AUni> -<AUni ws="qvm-x-ame">trillado:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+trilladora</AUni> -<AUni ws="qvm-x-acl">+trilladora</AUni> -<AUni ws="qvm-x-akh">+trilladora</AUni> -<AUni ws="qvm-x-akl">+trilladora</AUni> -<AUni ws="qvm-x-ame">+trilladora</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.109" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cbb7982f-9627-4c18-8355-9d5e59192955" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+trilladora</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="df3f8b1a-072b-462a-a1f1-7ba1ef30fb93" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="04e5087f-49e2-4b77-92e5-dbe52c392d05" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +trilladora 
\entryTyp root 
\gENG 
\gSPN 
\e +trilladora 
\c N0 
\ach trillado:ra 
\akh trillado:ra 
\acl trillado:ra 
\akl trillado:ra 
\ame trillado:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="c6a6dc23-73d0-41dc-8236-a9a201724158" ownerguid="c4c3618f-59d9-4e04-8b1a-6445cd01ba73"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pipe</AUni> -<AUni ws="es">caño</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aff070ab-882f-43cd-8afe-551f238918d1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c6a8541f-dda4-484d-a65e-fdb19b5e7b7d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shiuri</AUni> -<AUni ws="qvm-x-acl">shiuri; shiuri; shiure</AUni> -<AUni ws="qvm-x-akh">shiwri</AUni> -<AUni ws="qvm-x-akl">shiwri; shiwri; shiwre</AUni> -<AUni ws="qvm-x-ame">shiwri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shiwri</AUni> -<AUni ws="qvm-x-acl">*shiwri</AUni> -<AUni ws="qvm-x-akh">*shiwri</AUni> -<AUni ws="qvm-x-akl">*shiwri</AUni> -<AUni ws="qvm-x-ame">*shiwri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.612" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0bee00d4-cdf0-4dd7-9006-4f367035dacf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shiwri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6fc2d834-6727-4d29-8b91-4fbb7e831636" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="90aa6f01-0c7f-4a8d-bb9c-72866ecf65b5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shiwri 
\entryTyp root 
\gENG grub 
\gSPN gorgojo 
\e *shiwri 
\c N0 
\mp +FinalI 
\ach shiuri 
\akh shiwri 
\acl shiuri / _# 
\acl shiuri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shiure +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shiwri / _# 
\akl shiwri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shiwre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shiwri</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="c6aa5f69-1910-4cad-afce-309ac369be77" ownerguid="4bcdb1ab-0f44-4957-8642-860168e0ef79"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tower</AUni> -<AUni ws="es">torre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="95b1687e-5333-4918-ad62-7bf5555d648b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c6ad0473-2bb8-4873-9879-33de36d6fcc7" ownerguid="cb95189c-8c74-465b-af07-48e08dbf7c39"> -<ExampleWords> -<AUni ws="en">hysterical, have hysterics, go to pieces, fall apart, break down, have an emotional breakdown, go berserk, snap, crack, crack up, give in to, get carried away, have a fit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words describe a person whose emotions are so strong that they lose control?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c6b05822-a0e5-4e5e-abdf-44af4a76f727" ownerguid="f7ffe78a-e1c6-41a1-ad6a-d88079d397d4"> -<Form> -<AUni ws="qvm-x-ach">päga</AUni> -<AUni ws="qvm-x-acl">päga</AUni> -<AUni ws="qvm-x-akh">päga</AUni> -<AUni ws="qvm-x-akl">päga</AUni> -<AUni ws="qvm-x-ame">päga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c6b5fdb1-c02f-4bc2-806b-bdea3f7f6b0e" ownerguid="b5045b35-adc8-430e-a61a-0db5a8f9b0e6"> -<Form> -<AUni ws="qvm-x-ach">tsapu</AUni> -<AUni ws="qvm-x-acl">tsapu; tsapu; tsapo</AUni> -<AUni ws="qvm-x-akh">tsapu</AUni> -<AUni ws="qvm-x-akl">tsapu; tsapu; tsapo</AUni> -<AUni ws="qvm-x-ame">tsapu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="c6b62d63-b355-46c9-a8c7-e0a0bf112a9e" ownerguid="cde96694-79e5-44af-8d38-d988d1938e5f"> -<Abbreviation> -<AUni ws="en">6.5.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.458" /> -<DateModified val="2022-9-23 16:55:8.458" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to infrastructure--the big things people make that many people use, such as roads, electric power lines, and water supply systems.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Infrastructure</AUni> -</Name> -<OcmCodes> -<Uni>364 Refuse Disposal and Sanitary Facilities; 365 Public Utilities; 366 Commercial Facilities; 367 Parks; 368 Miscellaneous Facilities</Uni> -</OcmCodes> -<Questions> -<objsur guid="234ffbfa-5c7e-432b-bdef-485eb7bd5bc2" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="31debfe3-91da-4588-b433-21b0e14a101b" t="o" /> -<objsur guid="73adcfbe-8a74-4fda-969f-616964226b9b" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="c6b6486e-c1ae-4f85-9aac-421c5fd21f78"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ingenieru; ingeniero</AUni> -<AUni ws="qvm-x-acl">ingenieru; ingenieru; ingeniero</AUni> -<AUni ws="qvm-x-akh">ingenieru; ingeniero</AUni> -<AUni ws="qvm-x-akl">ingenieru; ingenieru; ingeniero</AUni> -<AUni ws="qvm-x-ame">ingenieru; ingeniero</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ingeniero</AUni> -<AUni ws="qvm-x-acl">+ingeniero</AUni> -<AUni ws="qvm-x-akh">+ingeniero</AUni> -<AUni ws="qvm-x-akl">+ingeniero</AUni> -<AUni ws="qvm-x-ame">+ingeniero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.822" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c132e21a-8bdb-48ca-b4d3-81820e7a74c5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ingeniero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5036e8ec-c327-464b-af61-7922f69851d3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5526d30f-6d66-480f-959b-12d4682e4d7f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ingeniero 
\entryTyp root 
\gENG engineer 
\gSPN ingeniero 
\e +ingeniero 
\c N0 
\ach ingenieru / ~_# 
\ach ingeniero / _# 
\akh ingenieru / ~_# 
\akh ingeniero / _# 
\acl ingenieru / ~_# 
\acl ingenieru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ingeniero +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ingenieru / ~_# 
\akl ingenieru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ingeniero +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ingenieru / ~_# 
\ame ingeniero / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="c6bcfa37-d847-4572-8e0f-d51a53411baf" ownerguid="dfbcadfe-cfd9-444d-8d12-8e4e494eb6f9" /> -<rt class="CmDomainQ" guid="c6bdd555-3438-4680-9b6c-5e812b5c0e7d" ownerguid="5fcadae4-b4a8-4600-8d30-c4f67986d619"> -<ExampleWords> -<AUni ws="en">artificial limb, wooden leg, peg leg, prosthesis</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What things are used by a person who has lost a limb?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c6c07195-164d-402e-9612-adf8d18dc3b2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tolde:ra</AUni> -<AUni ws="qvm-x-acl">tolde:ra</AUni> -<AUni ws="qvm-x-akh">tolde:ra</AUni> -<AUni ws="qvm-x-akl">tolde:ra</AUni> -<AUni ws="qvm-x-ame">tolde:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+toldera</AUni> -<AUni ws="qvm-x-acl">+toldera</AUni> -<AUni ws="qvm-x-akh">+toldera</AUni> -<AUni ws="qvm-x-akl">+toldera</AUni> -<AUni ws="qvm-x-ame">+toldera</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.944" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a3d79707-26e9-48f1-850f-d9b53a8d3bca" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+toldera</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f89a394c-5131-46d9-bd57-a1f15b72ba83" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9202bef8-14f9-41fb-b0bd-cc1939493df2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +toldera 
\entryTyp root 
\gENG tarp 
\gSPN toldera 
\e +toldera 
\c N0 
\ach tolde:ra 
\akh tolde:ra 
\acl tolde:ra 
\akl tolde:ra 
\ame tolde:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c6c0e4ca-5127-4293-b462-cbbea240960f" ownerguid="8225de87-35a3-4c7a-b35c-f45b152caebe"> -<ExampleWords> -<AUni ws="en">be a reflection on, be a comment on, be a symptom of, be symptomatic of, be an indictment of, not say much for, reflect badly on, make a mockery of, sign of the times</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something showing that something has a bad quality?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c6c595e7-384a-4be4-a4ca-166322ca0a39" ownerguid="b044e890-ce30-455c-aede-7e9d5569396e"> -<ExampleWords> -<AUni ws="en">twinkle, wink, glittering, star shaped</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe the appearance of the stars?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="c6c772af-7b6b-4393-b0da-5b4a329d3426" ownerguid="c72985cf-b07f-4ed5-873a-a2209929667e"> -<Abbreviation> -<AUni ws="en">8.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.559" /> -<DateModified val="2022-9-23 16:55:8.559" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to the amount or quantity of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>59 Quantity</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Quantity</AUni> -</Name> -<OcmCodes> -<Uni>800 Numbers and Measures</Uni> -</OcmCodes> -<Questions> -<objsur guid="98a6140c-19ec-4469-a152-71c7f034e747" t="o" /> -<objsur guid="51a3e098-f626-4568-92d7-82e75e239db7" t="o" /> -<objsur guid="da21cb83-d4bf-427f-a118-a2a4e0b5bf30" t="o" /> -<objsur guid="844c4d55-c677-42e5-8c21-37cef6726b6b" t="o" /> -<objsur guid="945ee553-e57f-43f2-9345-a75f92fb8471" t="o" /> -<objsur guid="4a41c6e1-c4ef-490a-ab87-ba39a986f9d6" t="o" /> -<objsur guid="5b46528f-4ec8-430f-babd-c51f4f0144fb" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="fb84538a-17a8-4adc-8d50-e2b66f8e4099" t="o" /> -<objsur guid="c0d903bf-6502-45dd-9dd8-cff7f022c696" t="o" /> -<objsur guid="0ebf9fcc-ee38-4f5f-ab5e-c76e199ef7ae" t="o" /> -<objsur guid="8216627d-9d20-4a5c-8bfd-0709c16e7a08" t="o" /> -<objsur guid="f7960e84-5af9-4999-9028-783058aa8c5c" t="o" /> -<objsur guid="7cfc8b3c-ad67-4928-ae6a-74afd47ced89" t="o" /> -<objsur guid="286ee16c-a218-43d5-bbac-ab15f80c3fcf" t="o" /> -<objsur guid="8a81b9bc-9c66-4d57-a2d1-2e592604c4b1" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="c6cbdb63-b4d9-46f0-81c9-239ec3c93336" ownerguid="38473463-4b92-4681-8fd0-0aca0342e88a"> -<ExampleWords> -<AUni ws="en">arrow worm</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(17) What words refer to arrow worms (phylum Chaetognatha)?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c6cd263a-4db6-42ad-bd4e-848b96fe948c" ownerguid="94ff584a-197a-4ac7-b3ba-cc8538172c6a"> -<Form> -<AUni ws="qvm-x-ach">tëla</AUni> -<AUni ws="qvm-x-acl">tëla</AUni> -<AUni ws="qvm-x-akh">tëla</AUni> -<AUni ws="qvm-x-akl">tëla</AUni> -<AUni ws="qvm-x-ame">tëla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c6d47f08-a842-484f-9eb9-d247ea492c8e" ownerguid="b14db9f4-5e1d-4a2b-bec0-0d6bcb5b1a31"> -<ExampleWords> -<AUni ws="en">sink, fall overboard, plunge into, fall into, plop, plunk</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What words refer to falling into water?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c6d4c02a-a2b4-41e9-8f28-63b4516d3b96"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">raccha</AUni> -<AUni ws="qvm-x-acl">raccha</AUni> -<AUni ws="qvm-x-akh">rakcha</AUni> -<AUni ws="qvm-x-akl">rakcha</AUni> -<AUni ws="qvm-x-ame">rakcha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*raktra</AUni> -<AUni ws="qvm-x-acl">*raktra</AUni> -<AUni ws="qvm-x-akh">*raktra</AUni> -<AUni ws="qvm-x-akl">*raktra</AUni> -<AUni ws="qvm-x-ame">*raktra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.246" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="65cbc02a-4ad7-4a04-b0a3-afe7522c4601" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*raktra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8dcdf13a-f4a1-4d9f-8013-3ccb7fdd7f90" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="38f70ced-afd2-4173-83eb-3a26af82e53a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *raktra 
\entryTyp root 
\gENG filthy 
\gSPN suciedad 
\e *raktra 
\c N0 
\ach raccha 
\akh rakcha 
\acl raccha 
\akl rakcha 
\ame rakcha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="c6d5490c-f64c-4fe7-a651-287175fbc8e7" ownerguid="eeedff8f-4a3f-43f2-a11e-a1d3b1fb93d1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sandy</AUni> -<AUni ws="es">arena</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e9f0d471-7d3f-4eea-ae26-0c7ed80dca0f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c6d58e16-0d01-4f84-8603-075a72c3e718" ownerguid="67e57493-d286-4271-b877-f63f962dddf1"> -<ExampleWords> -<AUni ws="en">area, acreage, size, square footage, extent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to how big an area is?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c6d74413-f956-410a-83a5-2837954e07f9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">co:ru</AUni> -<AUni ws="qvm-x-acl">co:ru; co:ru; co:ro</AUni> -<AUni ws="qvm-x-akh">co:ru</AUni> -<AUni ws="qvm-x-akl">co:ru; co:ru; co:ro</AUni> -<AUni ws="qvm-x-ame">co:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+coro</AUni> -<AUni ws="qvm-x-acl">+coro</AUni> -<AUni ws="qvm-x-akh">+coro</AUni> -<AUni ws="qvm-x-akl">+coro</AUni> -<AUni ws="qvm-x-ame">+coro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.192" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="2" /> -<LexemeForm> -<objsur guid="ff5668f1-914e-49f9-b0c5-9f4e335745da" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+coro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e3be0ea6-7f1e-4ca0-bd98-91f9e37e08dd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d7b55836-da8a-4c73-a1e0-cc442fa90f8f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +coro 
\entryTyp root 
\gENG chorus 
\gSPN coro 
\e +coro 
\c N0 
\ach co:ru 
\akh co:ru 
\acl co:ru / _# 
\acl co:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl co:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl co:ru / _# 
\akl co:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl co:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame co:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="c6dacfc4-075a-498c-850c-0691a429093f" ownerguid="426a871a-86dc-41af-a698-1a77dae28f35"> -<Form> -<AUni ws="qvm-x-ach">cuida</AUni> -<AUni ws="qvm-x-acl">cuida</AUni> -<AUni ws="qvm-x-akh">cuida</AUni> -<AUni ws="qvm-x-akl">cuida</AUni> -<AUni ws="qvm-x-ame">cuida</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c6dd4537-9d9b-4fbb-9d81-8b23c1ac66f2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gargu</AUni> -<AUni ws="qvm-x-acl">gargu; gargo</AUni> -<AUni ws="qvm-x-akh">qarqu</AUni> -<AUni ws="qvm-x-akl">qarqu; qarqo</AUni> -<AUni ws="qvm-x-ame">qarqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qarqu.v1</AUni> -<AUni ws="qvm-x-acl">*qarqu.v1</AUni> -<AUni ws="qvm-x-akh">*qarqu.v1</AUni> -<AUni ws="qvm-x-akl">*qarqu.v1</AUni> -<AUni ws="qvm-x-ame">*qarqu.v1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.124" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2232ab14-ff9d-4403-b432-21884e84369c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qarqu.v1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d2d2bfb6-5ff7-4b48-831a-c27cb6b0f51e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="65dc63a2-df07-4959-9f8a-3ce7b77a87d0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qarqu.v1 
\entryTyp root 
\gENG throw.out 
\gSPN botar 
\e *qarqu.v1 
\c V1 
\ach gargu 
\akh qarqu 
\acl gargu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gargo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qarqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qarqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qarqu 
\mcc *qarqu.v1 / _ CAUS</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="c6dfe0bf-5739-40ce-abeb-b86b7cc61d70" ownerguid="823d9c71-5417-40d9-b10d-fca0ad206f45"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">curse</AUni> -<AUni ws="es">maldicionar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="302d171a-81bd-4e82-aad8-a84e8f4593d9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c6e0a791-62b9-415b-bfc9-16826dd343cc" ownerguid="df4065f0-3967-4b43-bf1a-ab9627c48aed"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/V2</Run> -</AStr> -</Custom> -<Definition> -<AStr ws="en"> -<Run ws="en">verbalizer</Run> -</AStr> -<AStr ws="es"> -<Run ws="es">verbalizador</Run> -</AStr> -</Definition> -<Gloss> -<AUni ws="en">VRBL</AUni> -<AUni ws="es">VRBL</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d1e6468b-d36e-43e5-9c6a-21cf438a65d6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="c6e181fc-c268-4a86-8822-306d3b9e34f6" ownerguid="6ed896a6-bab7-4fdf-a4fd-a5ee49f380d2"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="853a65d1-ec3e-4d5c-9a2b-1ff85ee0218c" t="o" /> -<objsur guid="24780963-f14a-4197-8d5a-c1358ef8c0bc" t="o" /> -<objsur guid="04b79bd7-fa3b-4269-b71a-d483b7210ce8" t="o" /> -<objsur guid="d801d29a-d8f6-427f-8518-af8cdaba7aeb" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="c6e27b1f-787e-41bc-b1df-fc071d5a4e92" ownerguid="1ea9aeb3-3556-47b0-b1c0-adcb9e3589d2"> -<Form> -<AUni ws="qvm-x-ach">maldiciädu</AUni> -<AUni ws="qvm-x-acl">maldiciädu; maldiciädu; maldiciädo</AUni> -<AUni ws="qvm-x-akh">maldiciädu</AUni> -<AUni ws="qvm-x-akl">maldiciädu; maldiciädu; maldiciädo</AUni> -<AUni ws="qvm-x-ame">maldiciädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="c6e365c2-5fd4-4d69-8202-bc20a49fa1d8" ownerguid="fe0e5d58-8870-42b3-9744-bfa0b500641a"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="bc60dc77-07bf-4243-b6a7-a4239c011f20" t="o" /> -<objsur guid="7af38311-7801-43d2-b83f-a2b1745d9c61" t="o" /> -<objsur guid="81ee26b4-e119-45ec-acf6-c35efd69c8e2" t="o" /> -<objsur guid="a315669f-fb8b-481a-9957-2196d75f48d4" t="o" /> -<objsur guid="c894fd84-15a8-446f-91d3-55a64f2efa51" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="c6e3ff24-4cef-47fe-bcec-c87bbc70df38" ownerguid="41dffbd8-76f3-4116-a7b4-4a830f54acdc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">baba</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e176e209-c166-4123-ae86-eae4632ec9c6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c6e504fb-bb7a-4cdc-8745-095bb37e092f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pagasnan</AUni> -<AUni ws="qvm-x-acl">pagasnan</AUni> -<AUni ws="qvm-x-akh">paqasnan</AUni> -<AUni ws="qvm-x-akl">paqasnan</AUni> -<AUni ws="qvm-x-ame">paqasnan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*paqasnan</AUni> -<AUni ws="qvm-x-acl">*paqasnan</AUni> -<AUni ws="qvm-x-akh">*paqasnan</AUni> -<AUni ws="qvm-x-akl">*paqasnan</AUni> -<AUni ws="qvm-x-ame">*paqasnan</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.707" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4faec9c3-37f2-4425-b5c8-0e152d7c98d0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*paqasnan</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="614238b2-ef00-4df7-b48b-c7d7003d4a4b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fcecd5c5-5e04-4be9-84c2-87a12d03aac0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *paqasnan 
\entryTyp root 
\gENG at.night 
\gSPN noche 
\e *paqasnan 
\c N0 
\mp +FinalC 
\ach pagasnan 
\akh paqasnan 
\acl pagasnan 
\akl paqasnan 
\ame paqasnan</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="c6e51ab7-1d41-4f1b-a9dd-b7864c042286" ownerguid="f59034ad-345b-4958-b94e-05dd822aee30"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="1c93d4c6-d971-444b-bb10-d38013d171ca" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="c6e75132-5e90-49b7-9a8e-3ef8604ef28b" ownerguid="3873bad7-bb0b-439e-b358-6a27fc6d8ae4"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">LEV 21.20 curcukuna, takshakuna, nübish nawiyoqkuna, qarachukuna, chupu qeshyawan kaqkuna y runtun däñashkunapis.</Run> -</AStr> -</Example> -</rt> -<rt class="MoInflAffMsa" guid="c6e7792f-f209-4623-b3a0-f732c9368e47" ownerguid="40a41fad-5317-436d-8c3f-e52650865c7f"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="cc7bce64-81a2-4c23-9cb0-ba8f7d274837" t="r" /> -</Slots> -</rt> -<rt class="LexEntry" guid="c6e806f9-600c-4f3f-a41b-959c94fb123c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quechua</AUni> -<AUni ws="qvm-x-acl">quechua</AUni> -<AUni ws="qvm-x-akh">quechua</AUni> -<AUni ws="qvm-x-akl">quechua</AUni> -<AUni ws="qvm-x-ame">quechua</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+quechua</AUni> -<AUni ws="qvm-x-acl">+quechua</AUni> -<AUni ws="qvm-x-akh">+quechua</AUni> -<AUni ws="qvm-x-akl">+quechua</AUni> -<AUni ws="qvm-x-ame">+quechua</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.821" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1b9fc92a-f57e-4e50-bd19-e82ee8023c18" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+quechua</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="42d471b3-57f3-4b62-af67-37707d2e25fd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="961ac469-82a3-45ff-a17d-40963fce559b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +quechua 
\entryTyp root 
\gENG 
\gSPN quechua 
\e +quechua 
\c N0 
\ach quechua 
\akh quechua 
\acl quechua 
\akl quechua 
\ame quechua</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="c6e812df-19dd-4f8f-abfa-5ba01d91c7b6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nu:bish</AUni> -<AUni ws="qvm-x-acl">nu:bish</AUni> -<AUni ws="qvm-x-akh">nu:bish</AUni> -<AUni ws="qvm-x-akl">nu:bish</AUni> -<AUni ws="qvm-x-ame">nu:bish</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+nube.2</AUni> -<AUni ws="qvm-x-acl">+nube.2</AUni> -<AUni ws="qvm-x-akh">+nube.2</AUni> -<AUni ws="qvm-x-akl">+nube.2</AUni> -<AUni ws="qvm-x-ame">+nube.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.578" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="00bf87ad-9593-4094-a3e0-168e693f951c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+nube.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="034f0bde-20cb-4809-845e-d8acc566b201" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3873bad7-bb0b-439e-b358-6a27fc6d8ae4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +nube.2 
\entryTyp root 
\gENG 
\gSPN 
\e +nube.2 
\c N0 
\mp +FinalC 
\ach nu:bish 
\akh nu:bish 
\acl nu:bish 
\akl nu:bish 
\ame nu:bish 
\i LEV 21.20 curcukuna, takshakuna, nübish nawiyoqkuna, qarachukuna, chupu qeshyawan kaqkuna y runtun däñashkunapis.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c6e9b604-57e6-4a5c-9cb3-abf38912f7fe" ownerguid="0b98fb79-222f-418c-8107-5d4e791d329c"> -<ExampleWords> -<AUni ws="en">organization, management, administration, direct, manage, regulate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to managing something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c6ea12be-7f25-45bf-938e-4c9a801b929f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuadru; cuadro</AUni> -<AUni ws="qvm-x-acl">cuadru; cuadru; cuadro</AUni> -<AUni ws="qvm-x-akh">cuadru; cuadro</AUni> -<AUni ws="qvm-x-akl">cuadru; cuadru; cuadro</AUni> -<AUni ws="qvm-x-ame">cuadru; cuadro</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuadro</AUni> -<AUni ws="qvm-x-acl">+cuadro</AUni> -<AUni ws="qvm-x-akh">+cuadro</AUni> -<AUni ws="qvm-x-akl">+cuadro</AUni> -<AUni ws="qvm-x-ame">+cuadro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.223" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="21970e01-db5c-4453-9ffc-84ac99e38d96" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuadro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1bd679b4-f20e-4c85-87a3-1e80f3ebfe2a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a79c6ef2-9586-4b46-981c-9ec1d89ef270" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuadro 
\entryTyp root 
\gENG box 
\gSPN cuadro 
\e +cuadro 
\c N0 
\ach cuadru / ~_# 
\ach cuadro / _# 
\akh cuadru / ~_# 
\akh cuadro / _# 
\acl cuadru / ~_# 
\acl cuadru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cuadro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cuadru / ~_# 
\akl cuadru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cuadro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cuadru / ~_# 
\ame cuadro / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="c6ebf386-d8fa-4e08-9d2b-32569ec1e7dc"> -<Analyses> -<objsur guid="50b57bd6-5f6b-4793-8e74-7124894ad7cb" t="o" /> -<objsur guid="df96455e-7c76-4c28-b068-f6c3fc846d45" t="o" /> -<objsur guid="ec9b5648-d5ee-4710-9610-0a9763e525c2" t="o" /> -</Analyses> -<Checksum val="624308413" /> -<Form> -<AUni ws="qvm-x-akh">rikashqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="c6ef8f11-8d89-4574-b061-1a1c7d466134" ownerguid="ca66291b-0046-4142-a4d4-d7baf284d121"> -<Form> -<AUni ws="qvm-x-ach">cauru</AUni> -<AUni ws="qvm-x-acl">cauru; cauro</AUni> -<AUni ws="qvm-x-akh">kawru</AUni> -<AUni ws="qvm-x-akl">kawru; kawro</AUni> -<AUni ws="qvm-x-ame">kawru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PunctuationForm" guid="c6f013a0-a3e0-46d7-a8be-f26d4457fa97"> -<Form> -<Str> -<Run ws="en">w</Run> -</Str> -</Form> -</rt> -<rt class="LexEntry" guid="c6f0f4c1-8c0d-45b3-815a-0597b4ece2de"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mal</AUni> -<AUni ws="qvm-x-acl">mal</AUni> -<AUni ws="qvm-x-akh">mal</AUni> -<AUni ws="qvm-x-akl">mal</AUni> -<AUni ws="qvm-x-ame">mal</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mal</AUni> -<AUni ws="qvm-x-acl">+mal</AUni> -<AUni ws="qvm-x-akh">+mal</AUni> -<AUni ws="qvm-x-akl">+mal</AUni> -<AUni ws="qvm-x-ame">+mal</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.265" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="762f9c34-75eb-4f96-9071-d61377408b40" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mal</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="804005a3-78dd-42ee-866b-6df049f0346b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ef8e0fe3-d370-4ccb-8006-635222c9e0d0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mal 
\entryTyp root 
\gENG 
\gSPN 
\e +mal 
\c N1 
\mp +FinalC 
\ach mal 
\akh mal 
\acl mal 
\akl mal 
\ame mal</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="c6f19b8a-95b4-4c9c-8c7e-bece7a89066f" ownerguid="1f7366b1-96fb-4d21-9015-f730037e8a34"> -<Form> -<AUni ws="qvm-x-ach">parëju</AUni> -<AUni ws="qvm-x-acl">parëju; parëju; parëjo</AUni> -<AUni ws="qvm-x-akh">parëju</AUni> -<AUni ws="qvm-x-akl">parëju; parëju; parëjo</AUni> -<AUni ws="qvm-x-ame">parëju</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c6f3648e-27e9-4399-b1fa-3bd114454133" ownerguid="c7b0a9cd-3c78-4567-8ac5-aa32e75e1fb3"> -<Form> -<AUni ws="qvm-x-ach">upa</AUni> -<AUni ws="qvm-x-acl">upa</AUni> -<AUni ws="qvm-x-akh">upa</AUni> -<AUni ws="qvm-x-akl">upa</AUni> -<AUni ws="qvm-x-ame">upa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StTxtPara" guid="c6f4df11-a92b-4446-a8d7-dc6bc8cc11a1" ownerguid="2f802856-a864-428c-9f5e-b1de2b6a510e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">kamaraqla.</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="ab05ade7-d1f0-45b4-95b5-698d0e83ec1d" t="o" /> -</Segments> -</rt> -<rt class="MoStemAllomorph" guid="c6f59e22-620a-48eb-bb64-097bd21f658e" ownerguid="ff6b4fe8-6cd5-4d38-a190-509772f96b24"> -<Form> -<AUni ws="qvm-x-ach">shoga</AUni> -<AUni ws="qvm-x-acl">shoga</AUni> -<AUni ws="qvm-x-akh">shoqa</AUni> -<AUni ws="qvm-x-akl">shoqa</AUni> -<AUni ws="qvm-x-ame">shuqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c6f5b428-95e9-4010-9567-4bd4871d3218"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">civilmenti; civilmente</AUni> -<AUni ws="qvm-x-acl">civilmenti; civilmente</AUni> -<AUni ws="qvm-x-akh">civilmenti; civilmente</AUni> -<AUni ws="qvm-x-akl">civilmenti; civilmente</AUni> -<AUni ws="qvm-x-ame">civilmenti; civilmente</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+civilmente</AUni> -<AUni ws="qvm-x-acl">+civilmente</AUni> -<AUni ws="qvm-x-akh">+civilmente</AUni> -<AUni ws="qvm-x-akl">+civilmente</AUni> -<AUni ws="qvm-x-ame">+civilmente</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.130" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c558e1e9-2fce-4247-8c84-e9941ad2ceea" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+civilmente</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="00458814-a824-4d31-89a9-1e87281b7681" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ebfb6280-c282-4f4b-8ad8-c223a8418c2b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +civilmente 
\entryTyp root 
\gENG 
\gSPN 
\e +civilmente 
\c ONSHEV 
\ach civilmenti / ~_# 
\ach civilmente / _# 
\akh civilmenti / ~_# 
\akh civilmente / _# 
\acl civilmenti / ~_# 
\acl civilmente / _# 
\akl civilmenti / ~_# 
\akl civilmente / _# 
\ame civilmenti / ~_# 
\ame civilmente / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="c6f7d995-447c-4834-8e04-18f8f4e08350" ownerguid="8b435128-ed72-4842-a56a-c6305355edb1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="4000f0bd-eb61-4a1b-8e99-0674c7c56be3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c6f89907-45e7-4fd7-ac49-121b692b5e31" ownerguid="95f68a7b-6be5-4b3e-bc40-111230877a64"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">right</AUni> -<AUni ws="es">derecha</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9b2432b6-9f0c-4259-bb68-3eaa02f126b0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c6ffe0b3-caa7-4785-98b6-90bb8900173f" ownerguid="c60cf6a1-7868-4536-ac73-387bfa26e04b"> -<ExampleWords> -<AUni ws="en">violent, peaceful</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe a revolution?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c701b419-90d0-4720-ba29-c4f7dbaa8845" ownerguid="9d11c60d-9f91-4694-a4c6-a0b82a5f3182"> -<Form> -<AUni ws="qvm-x-ach">achyä</AUni> -<AUni ws="qvm-x-acl">achyä</AUni> -<AUni ws="qvm-x-akh">achyä</AUni> -<AUni ws="qvm-x-akl">achyä</AUni> -<AUni ws="qvm-x-ame">achyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="c702ea8d-b409-4f06-88ab-67f320f0d716" ownerguid="d6fad191-1428-450e-98c8-f5523996ed13"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">DEU 22.19 Nircurmi Israel jipashta mala fämaman churar perdicionta rurashganpita pägatsenga pachac (100) yorag guellayta.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="c707c852-a857-4c40-9ad1-1e396327483a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wayga</AUni> -<AUni ws="qvm-x-acl">wayga</AUni> -<AUni ws="qvm-x-akh">wayqa</AUni> -<AUni ws="qvm-x-akl">wayqa</AUni> -<AUni ws="qvm-x-ame">wayqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wayqa</AUni> -<AUni ws="qvm-x-acl">*wayqa</AUni> -<AUni ws="qvm-x-akh">*wayqa</AUni> -<AUni ws="qvm-x-akl">*wayqa</AUni> -<AUni ws="qvm-x-ame">*wayqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.617" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="908a7ffe-e457-4993-8c02-8df999587041" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wayqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="58bbc725-064a-4cc7-a2d8-d9c6d2473230" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="696665b9-5ade-40fd-980a-0fb147b8fa6f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wayqa 
\entryTyp root 
\gENG 
\gSPN saco 
\e *wayqa 
\c N0 
\ach wayga 
\akh wayqa 
\acl wayga 
\akl wayqa 
\ame wayqa</Run> -</AStr> -</Custom> -</rt> -<rt class="PhEnvironment" guid="c70a3593-3901-43b4-b84f-0da2c2ccccda" ownerguid="be765e3e-ea5e-11de-9d42-0013722f8dec"> -<Name> -<AUni ws="en">after length</AUni> -</Name> -<StringRepresentation> -<Str> -<Run underline="none" ws="en">/ </Run> -<Run xml:space="preserve" underline="none" ws="qvm-x-akh"> </Run> -<Run undercolor="red" underline="none" ws="qvm-x-akh">̈</Run> -<Run undercolor="red" underline="none" ws="en">_ </Run> -</Str> -</StringRepresentation> -</rt> -<rt class="LexSense" guid="c70ec5b4-208f-4dde-add7-4f4813371448" ownerguid="275201ba-67a2-4013-b5c6-43496c67b974"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">moment</AUni> -<AUni ws="es">rato</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="06f4f7a5-2404-45e3-9493-717c1527d9d1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c70f67f8-6ef3-41e8-8797-5a0cf9bd2c24" ownerguid="1c0c4951-03b6-49b8-8a8e-724397cfd5a7"> -<ExampleWords> -<AUni ws="en">obsess, captivate, fascinate, intrigue</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to causing someone to feel obsessed?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c70f98d7-ae95-4c44-85fb-7996eefddf95" ownerguid="4a5c8fdb-c8a0-49d2-a0d6-342428682d65"> -<ExampleWords> -<AUni ws="en">(no words in English)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to giving birth to a deformed baby?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c7102aac-4a4b-43d2-8fd2-8e67461ca1c1" ownerguid="275f048d-f5d1-4d7c-81e2-6e45df03773d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c712641b-bd26-4b52-aa7b-d373206b941a" ownerguid="59fd41ae-f85a-4799-892a-679c1c7784df"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">news</AUni> -<AUni ws="es">noticia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="db93516a-d6b6-49fa-97e3-c9cd7aa9574f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c71720b0-fd01-49d5-ac6d-e617efef3a7f" ownerguid="e2660eb1-710e-420c-976d-7afccb9b8ea4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c718be0b-b60c-46aa-a438-296a07b58160" ownerguid="d395edc8-fb58-4ba4-8446-dacf8ea0477a"> -<ExampleWords> -<AUni ws="en">sweaty, drenched with sweat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe a person who has been sweating?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c71a2318-fa02-48fe-92cd-c5897f006603" ownerguid="084c32cc-0a83-45c5-8179-78387c6ca24e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ae0bf2cb-cc4e-4c2d-ae6c-911a6f6f5239" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c71fb1fe-f3b0-47bc-9231-903194c0eabb" ownerguid="4200b8ab-7c89-499c-b218-48b9de70f2e7"> -<Form> -<AUni ws="qvm-x-ach">lawa</AUni> -<AUni ws="qvm-x-acl">lawa</AUni> -<AUni ws="qvm-x-akh">lawa</AUni> -<AUni ws="qvm-x-akl">lawa</AUni> -<AUni ws="qvm-x-ame">lawa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c72160eb-c2ea-4453-b73c-b19f8dc12ac9" ownerguid="2b698a91-88e5-43ec-8368-836fc2bf4376"> -<Form> -<AUni ws="qvm-x-ach">watga</AUni> -<AUni ws="qvm-x-acl">watga</AUni> -<AUni ws="qvm-x-akh">watqa</AUni> -<AUni ws="qvm-x-akl">watqa</AUni> -<AUni ws="qvm-x-ame">watqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c723cf9a-4853-47ab-8829-217eb00a53cb" ownerguid="4db7beac-642c-4eb0-8efa-40b4ce911da5"> -<Form> -<AUni ws="qvm-x-acl">carcel</AUni> -<AUni ws="qvm-x-akl">carcel</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c729781d-d91b-4840-a12e-405211aea6a3" ownerguid="f4e9efa2-2437-49d3-9c01-cf7c7629196d"> -<Form> -<AUni ws="qvm-x-ach">ancash</AUni> -<AUni ws="qvm-x-acl">ancash</AUni> -<AUni ws="qvm-x-akh">ankash</AUni> -<AUni ws="qvm-x-akl">ankash</AUni> -<AUni ws="qvm-x-ame">ankash</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="c72985cf-b07f-4ed5-873a-a2209929667e" ownerguid="b32a39c4-43ff-4522-aed0-b2d5b8ad7157"> -<Abbreviation> -<AUni ws="en">8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.559" /> -<DateModified val="2022-9-23 16:55:8.559" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words refer to the state or condition of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>13A State</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">States</AUni> -</Name> -<Questions> -<objsur guid="31b4c2e1-eb8a-4b2d-b04a-2d9591af4f17" t="o" /> -<objsur guid="e9bf64ad-d00a-4109-9989-6c8d721a1398" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c6c772af-7b6b-4393-b0da-5b4a329d3426" t="o" /> -<objsur guid="8a0c5ed9-0041-4af5-a193-329e6c9f2717" t="o" /> -<objsur guid="ac9ee84f-f0c7-48b3-8e5a-b4c967112394" t="o" /> -<objsur guid="21167445-f1b1-49b4-b147-bc792616c432" t="o" /> -<objsur guid="2dca9338-85cb-4f58-b40d-d2d759e8edd6" t="o" /> -<objsur guid="91913920-8a6a-4ba0-9361-d6cc9e1f3639" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="c72acc96-e74d-41b0-9235-4ff34c1efbdb" ownerguid="84c3b0ad-3fd8-4e4e-a2d1-a2051f61db4b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="c72cf7f4-606c-4dd4-925c-089175dbcf77"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">manya</AUni> -<AUni ws="qvm-x-acl">manya</AUni> -<AUni ws="qvm-x-akh">manya</AUni> -<AUni ws="qvm-x-akl">manya</AUni> -<AUni ws="qvm-x-ame">manya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+manear.1</AUni> -<AUni ws="qvm-x-acl">+manear.1</AUni> -<AUni ws="qvm-x-akh">+manear.1</AUni> -<AUni ws="qvm-x-akl">+manear.1</AUni> -<AUni ws="qvm-x-ame">+manear.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.313" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="583b5043-6559-4c89-bd89-17c73a988e2f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+manear.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="329cad3f-1cda-4f05-a85a-322613c38bec" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="513e902c-403c-4277-8abd-e9d9d97fb074" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +manear.1 
\entryTyp root 
\gENG 
\gSPN 
\e +manear.1 
\c V1 
\mp +assimilated 
\ach manya 
\akh manya 
\acl manya 
\akl manya 
\ame manya 
\i 2SA 3.34 Chaquiquicunapis manami manyarashgatsu cargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="c72f3b5e-c217-41f2-9f53-a9e54683d997" ownerguid="4644ee64-a0db-4cec-97c2-16fcf1688838"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="cf38cd00-c2b2-44f4-8b42-decb8f956289" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c7326724-aed9-4849-99c7-55af02f39f80"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">co:rri</AUni> -<AUni ws="qvm-x-acl">co:rri; co:rre</AUni> -<AUni ws="qvm-x-akh">co:rri</AUni> -<AUni ws="qvm-x-akl">co:rri; co:rre</AUni> -<AUni ws="qvm-x-ame">co:rri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+correr</AUni> -<AUni ws="qvm-x-acl">+correr</AUni> -<AUni ws="qvm-x-akh">+correr</AUni> -<AUni ws="qvm-x-akl">+correr</AUni> -<AUni ws="qvm-x-ame">+correr</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.211" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c61e730a-cdec-421e-a47b-512a69128ad8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+correr</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ae6bf748-b5ea-410f-bbc2-1b1a8259d22e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="77a79223-c194-4c68-aabb-9ba0c51f99f5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +correr 
\entryTyp root 
\gENG run 
\gSPN correr 
\e +correr 
\c V1 
\mp +FinalI 
\ach co:rri 
\akh co:rri 
\acl co:rri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl co:rre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl co:rri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl co:rre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame co:rri</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="c736e4c8-b84f-4647-9b7d-ad7186102181"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">garwanchu</AUni> -<AUni ws="qvm-x-acl">garwanchu; garwancho</AUni> -<AUni ws="qvm-x-akh">qarwanchu</AUni> -<AUni ws="qvm-x-akl">qarwanchu; qarwancho</AUni> -<AUni ws="qvm-x-ame">qarwanchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qarwantru</AUni> -<AUni ws="qvm-x-acl">*qarwantru</AUni> -<AUni ws="qvm-x-akh">*qarwantru</AUni> -<AUni ws="qvm-x-akl">*qarwantru</AUni> -<AUni ws="qvm-x-ame">*qarwantru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.124" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="37d26989-d409-45c9-b1f4-762d77258d94" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qarwantru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="83e4caeb-3024-4ffa-ab1d-9d69f2a7f06e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dc0b4b2d-049c-4cd7-9167-2f7ddcced1ab" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qarwantru 
\entryTyp root 
\gENG tinge? 
\gSPN ? 
\e *qarwantru 
\c V1 
\ach garwanchu 
\akh qarwanchu 
\acl garwanchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl garwancho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qarwanchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qarwancho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qarwanchu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="c736ffb6-a7d1-49aa-8151-dac9a8201b36"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">yarpapäkutsin</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="c739a6b0-ffb1-4b8c-9639-b5647013c277" ownerguid="8bc86416-4dc6-4810-b7e6-e14a4d71e0ac"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c739dd02-bc26-4a90-bc2e-011fc5024f4d" ownerguid="c7c3fcaf-0718-49bf-8b16-ba233835663b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">each</AUni> -<AUni ws="es">cada</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8c27bf74-5086-4ece-a4a7-65dc2329ee6d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c73a8adb-490b-4edb-bd40-b60d5f33c4d3" ownerguid="11f85ff3-8d15-431b-af47-45e271989db6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">partridge</AUni> -<AUni ws="es">perdíz</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b40a5aec-21d4-4c5a-9b21-5b7b5ad0c9a7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c73d00b3-5958-420b-a696-d50e277375cf" ownerguid="8dfbf570-5ea3-4d27-8399-31a3029596cf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tear</AUni> -<AUni ws="es">lágrima</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="873fa0b1-dbe7-4c01-8b7a-d6f9919ce0e4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c73e73fe-bc2a-4d16-bac9-ed8d3121b44a" ownerguid="19b51f5a-9c14-4e64-88fd-f0517de6e817"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0 V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">green</AUni> -<AUni ws="es">verde</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="834cb711-695a-4450-b4a5-7a38b75ef744" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c73ee12f-593b-47bd-9770-09b0ef991119"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ja:ca</AUni> -<AUni ws="qvm-x-acl">ja:ca</AUni> -<AUni ws="qvm-x-akh">ja:ka</AUni> -<AUni ws="qvm-x-akl">ja:ka</AUni> -<AUni ws="qvm-x-ame">ha:ka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ha:ka</AUni> -<AUni ws="qvm-x-acl">*ha:ka</AUni> -<AUni ws="qvm-x-akh">*ha:ka</AUni> -<AUni ws="qvm-x-akl">*ha:ka</AUni> -<AUni ws="qvm-x-ame">*ha:ka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.639" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ab4fd9b3-d50c-4295-809c-9c131b596bf3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ha:ka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e951333a-6319-4fb0-ae10-787fe3ee5aef" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5fc02beb-8cb3-4cd7-8427-9ecc442989f3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ha:ka 
\entryTyp root 
\gENG exhale 
\gSPN exhalar 
\e *ha:ka 
\c V1 
\ach ja:ca 
\akh ja:ka 
\acl ja:ca 
\akl ja:ka 
\ame ha:ka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="c73f868b-a74a-4b28-ac3b-e09ffbe90b67"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsimpa</AUni> -<AUni ws="qvm-x-acl">tsimpa</AUni> -<AUni ws="qvm-x-akh">tsimpa</AUni> -<AUni ws="qvm-x-akl">tsimpa</AUni> -<AUni ws="qvm-x-ame">tsimpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chimpa.v</AUni> -<AUni ws="qvm-x-acl">*chimpa.v</AUni> -<AUni ws="qvm-x-akh">*chimpa.v</AUni> -<AUni ws="qvm-x-akl">*chimpa.v</AUni> -<AUni ws="qvm-x-ame">*chimpa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.305" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="25c7ad48-2052-44fb-8ba6-2b3b7f32254f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chimpa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="56fc3b44-b67a-4c18-b08b-5b3135fa9eb2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7015fa66-09c1-45a8-af36-418ec5aef3cb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chimpa.v 
\entryTyp root 
\gENG cross.over 
\gSPN cruzar 
\e *chimpa.v 
\c V1 
\ach tsimpa 
\akh tsimpa 
\acl tsimpa 
\akl tsimpa 
\ame tsimpa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c744ec67-9f77-4fd2-8cae-0cc2297e8897" ownerguid="d853597b-f3ed-470b-b6dd-8fe93b8e43eb"> -<ExampleWords> -<AUni ws="en">silent, silence, you could hear a pin drop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to there not being any sound?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c747424d-4cf6-4390-8264-b80429c66bdc" ownerguid="3b91ec57-ef8c-43a6-8237-6c7b35aaba32"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chew</AUni> -<AUni ws="es">masticar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="00a08be3-c28b-49cf-af75-372159774a46" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c74805c7-f999-47ed-8e35-9a1d6550a821" ownerguid="bd847e1e-c1e3-4fb4-802c-11118aaf40aa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rabbit</AUni> -<AUni ws="es">conejo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="eb97a5dc-1784-4808-a5ae-699e4c189fd2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c74947ba-c8b8-477d-830a-1a3d358c36d2" ownerguid="225a2892-1bfd-43b4-b192-9398f05fd0f1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c749fde6-3435-4f85-96d1-be60e8de85a8" ownerguid="b0905fa9-2f90-410b-8eb5-7c7944c4f0f9"> -<ExampleWords> -<AUni ws="en">sex maniac, dirty old man, lecherous, nymphomaniac, sex fiend, libertine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to someone who is sexually immoral?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c74b2074-e67c-4832-be7b-fff4e1aa9da8" ownerguid="123c8124-826f-49a8-a1c3-94d155e60220"> -<Form> -<AUni ws="qvm-x-ach">cincuenta</AUni> -<AUni ws="qvm-x-acl">cincuenta</AUni> -<AUni ws="qvm-x-akh">cincuenta</AUni> -<AUni ws="qvm-x-akl">cincuenta</AUni> -<AUni ws="qvm-x-ame">cincuenta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="c74b5057-b070-4d31-9c4b-8cb70339dc76" ownerguid="17c00a73-726d-4981-8444-1e4b0af7baf4"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c74d45e0-3b0b-46c2-8d0c-a1c8d513acb7" ownerguid="b844d2f8-d3ef-4605-b038-8bc0a2cff0af"> -<ExampleWords> -<AUni ws="en">how tall, be (six feet) tall, be (ten meters) high, be (six feet) in height</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words indicate how tall something is?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c74e3474-ed60-448e-a4bd-47afefb77d75" ownerguid="be981b60-ba21-4631-9bea-4e049ffd11d0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.merry</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="61860f78-dc7b-465b-b9ce-c60aaeb0371b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c74e4940-1fae-4ce0-8cdb-f5c15a3adc7c" ownerguid="844f922b-6fb6-49aa-864b-b1c49edaa1ae"> -<ExampleWords> -<AUni ws="en">bedeck, adorn</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to putting on or having on jewelry?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c74f139f-521b-4f45-b2ba-b271c639759b" ownerguid="c01bbcef-7d89-4753-bafd-3a7f23648982"> -<ExampleWords> -<AUni ws="en">practice, doctor (v), be in medicine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to working as a doctor?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c7515ff6-81d0-424d-ba62-556ad2f773b7" ownerguid="ad56e8e3-c46b-4007-9823-7fa7a7a9d5ba"> -<Form> -<AUni ws="qvm-x-ach">wanyay</AUni> -<AUni ws="qvm-x-acl">wanyay</AUni> -<AUni ws="qvm-x-akh">wanyay</AUni> -<AUni ws="qvm-x-akl">wanyay</AUni> -<AUni ws="qvm-x-ame">wanyay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="c7526a70-2a91-45a2-bd23-b4029a9aa928" ownerguid="a84bd6de-0a66-4e92-86cb-a91d9e9ed96e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="c753fc8b-22ae-4e71-807f-56fb3ebd3cdd" ownerguid="50db27b5-89eb-4ffb-af82-566f51c8ec0b"> -<Abbreviation> -<AUni ws="en">2.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.63" /> -<DateModified val="2022-9-23 16:55:8.63" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to sexual relations and having sex. Be careful that your domain label does not use a taboo word.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>23D Sexual Relations</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Sexual relations</AUni> -</Name> -<OcmCodes> -<Uni>830 Sex; 831 Sexuality; 832 Sexual Stimulation; 833 Sexual Intercourse</Uni> -</OcmCodes> -<Questions> -<objsur guid="e8565185-621c-4a83-a90d-86b7845065f8" t="o" /> -<objsur guid="a2aa1245-04a4-4249-9e14-4ae762ecbc49" t="o" /> -<objsur guid="665e43ee-c98d-4d93-b8fc-eeec80deb13e" t="o" /> -<objsur guid="51a97f23-11bf-4769-a8bc-25f24de07f94" t="o" /> -<objsur guid="73ddc0b6-88fd-4cb2-914b-f421cee8fa3f" t="o" /> -<objsur guid="6660cdf8-444a-44d4-b6d5-839483f8517b" t="o" /> -<objsur guid="97c3952f-c41f-4a57-99a9-c837d00a6197" t="o" /> -<objsur guid="8ad6e485-c6f5-4f31-8fa4-cdb6e4d9cfd1" t="o" /> -<objsur guid="13c56253-6a2b-4fe6-a8e0-4bf5a8df33e3" t="o" /> -<objsur guid="89a6a4b5-a61c-4c22-aab7-d98cc3a3dae6" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="9f6754ae-a429-4bba-8f6f-2cd4ea0cbe45" t="o" /> -<objsur guid="23190f9e-2db2-4ef9-8c0e-495dbef05571" t="o" /> -<objsur guid="b0905fa9-2f90-410b-8eb5-7c7944c4f0f9" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="c754ff49-4bcd-40b1-adf8-58c86d4c2176" ownerguid="d1aa6dca-6e86-4575-a555-86fd20218c4f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="57e435ff-f14a-44e1-b595-dff01f37fcc1" t="r" /> -</Morph> -<Msa> -<objsur guid="be6973f5-a2b1-46a6-9dd0-379cd8bb168a" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="c7593744-cec4-4abb-b8c7-abd673e2c059" ownerguid="c0d903bf-6502-45dd-9dd8-cff7f022c696"> -<ExampleWords> -<AUni ws="en">count, count up, at the last count, keep count, keep track, keep a tally of, enumerate, enumeration</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to counting the number of something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c759e8cb-9b5d-4eef-860c-79a8793fb6a2" ownerguid="4386a7fb-da26-446f-a1ef-827ce0f78951"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c75d5069-2530-4a89-a8f7-0554ae1596bd" ownerguid="cbfdb722-1cab-4d70-8a3f-bbaf4c8ff5f0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mend</AUni> -<AUni ws="es">remendar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9d5b5ff9-89cc-4980-96d9-fc62391554a8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c75eea15-9755-4fb9-8f2d-755cdb72706f" ownerguid="f07024f3-83b6-4d32-a6b1-36b0f24328ca"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shove/hurl</AUni> -<AUni ws="es">zampar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="29f1bdb5-0f23-4974-bc8e-6633c6f6d608" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c75f2609-ee69-4231-b2cc-51b064b4c7a2" ownerguid="6bd023f6-730e-44c2-ae8f-78df967e2e18"> -<ExampleWords> -<AUni ws="en">pull something away/from/out/apart, wrench something open/off/away, tear something out/from/away/down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to pulling something with a lot of force so that it comes away from the thing it is connected to?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c75f8eb4-ddc2-4fb2-99c1-664f19977b70" ownerguid="3f4c559f-ab4f-411f-a23b-d2396c977005"> -<ExampleWords> -<AUni ws="en">can see, can make out, catch a glimpse of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being able to see something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c760259d-1cd1-4558-8d6e-600f93020689" ownerguid="c55029f6-188e-4812-a5fd-c28e2dba66e2"> -<Form> -<AUni ws="qvm-x-ach">zanja</AUni> -<AUni ws="qvm-x-acl">zanja</AUni> -<AUni ws="qvm-x-akh">zanja</AUni> -<AUni ws="qvm-x-akl">zanja</AUni> -<AUni ws="qvm-x-ame">zanja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="c76200b4-59d7-4038-9273-da61c40e554a" ownerguid="3f621386-9be4-41ca-9b32-e8a0938bef3a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="c7624372-cecb-4fe4-b8a1-e1450a3e8679" ownerguid="89e5cf73-f8ae-4115-a7f9-c6164a4241d6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c763f2f9-0d9a-40b8-9505-b87323e55496" ownerguid="f0de6c5a-3df6-4483-8c63-2d8fcd6c97be"> -<ExampleWords> -<AUni ws="en">starve, starvation, waste away</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to dying from lack of food?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c7647fb3-2fdb-4ea9-b1ea-7de2fc5bcbe9" ownerguid="e8fe404b-22ae-4e2b-bb69-426a58f2f72f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="0a98fdc2-e713-4f67-87cf-90aea29f99b4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c764e6df-b66a-4691-8d9e-2b3e5e8e13e0" ownerguid="ba685b9f-4cbe-4c3a-be7a-979fd014c56f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="c765917c-68fe-437d-a822-a71ae9ca51df" ownerguid="5c4df70f-4924-4ecf-8411-ed892c0b677e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c76a339f-647a-456e-be19-3481dab66962" ownerguid="5737714d-49e4-4eb4-8e46-03203ee5340b"> -<ExampleWords> -<AUni ws="en">deserve, had it coming, get what you deserve, serve someone right, get your just deserts, get what was coming to you, your punishment fits the crime</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that someone deserves the problems they are having?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c77264e7-ae30-4e28-956c-4eff7c64559b" ownerguid="ee0585b1-627a-4a71-888d-b5d82619431e"> -<ExampleWords> -<AUni ws="en">Netherlands, Germany, France, Spain, Mexico</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the proper names of the neighboring countries?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c77525bd-0be6-4c3b-8b2d-d0590bcddd7c" ownerguid="1d1cb68b-a4d5-43ab-9e13-4c113a5e8cc9"> -<Form> -<AUni ws="qvm-x-ach">ratsac</AUni> -<AUni ws="qvm-x-acl">ratsac</AUni> -<AUni ws="qvm-x-akh">ratsak</AUni> -<AUni ws="qvm-x-akl">ratsak</AUni> -<AUni ws="qvm-x-ame">ratsak</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="c7784bfa-35aa-430b-9af8-a5faac4edc37" ownerguid="f4eedd50-153b-4e11-a513-27e6c45e5cca"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c77fe45f-e21c-4a6f-add5-1ee4617dd809" ownerguid="5956e75c-2394-43eb-be76-21ff3dbf9b68"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="576eaac5-acfb-40a2-9303-4dab1e6d7ad0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c7828841-96ea-4592-97b2-a834b4ece694" ownerguid="cbaf7804-5613-45ab-b7e8-f975ac2ec5b9"> -<Form> -<AUni ws="qvm-x-ach">ganchu; gancho</AUni> -<AUni ws="qvm-x-acl">ganchu; ganchu; gancho</AUni> -<AUni ws="qvm-x-akh">ganchu; gancho</AUni> -<AUni ws="qvm-x-akl">ganchu; ganchu; gancho</AUni> -<AUni ws="qvm-x-ame">ganchu; gancho</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="c78f4d44-a9cc-46b3-931f-fba9aaab7f47" ownerguid="d0658d37-b5fc-4aed-b804-136efb6886cf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">seam</AUni> -<AUni ws="es">costura</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="541d0edc-cc5b-44bb-a61c-217ffc4e589a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c7900c78-6f53-4bfc-8a15-09076a30a14a" ownerguid="6a23a757-18ae-47dc-b62b-6f29edacf38b"> -<Form> -<AUni ws="qvm-x-ach">achcu</AUni> -<AUni ws="qvm-x-acl">achcu; achco</AUni> -<AUni ws="qvm-x-akh">achku</AUni> -<AUni ws="qvm-x-akl">achku; achko</AUni> -<AUni ws="qvm-x-ame">achku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c793b885-6264-40bb-82d8-0251d7239da1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tigri; tigre</AUni> -<AUni ws="qvm-x-acl">tigri; tigri; tigre</AUni> -<AUni ws="qvm-x-akh">tigri; tigre</AUni> -<AUni ws="qvm-x-akl">tigri; tigri; tigre</AUni> -<AUni ws="qvm-x-ame">tigri; tigre</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tigre</AUni> -<AUni ws="qvm-x-acl">+tigre</AUni> -<AUni ws="qvm-x-akh">+tigre</AUni> -<AUni ws="qvm-x-akl">+tigre</AUni> -<AUni ws="qvm-x-ame">+tigre</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.886" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="80d8ed94-899f-4a27-9aa7-b5d375641d43" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tigre</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1f58b0df-f222-416d-b494-c9ec614b0ef2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a7eb250d-09e8-4601-9ce7-732f4d88dd45" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tigre 
\entryTyp root 
\gENG tiger 
\gSPN tigre 
\e +tigre 
\c N0 
\mp +FinalI 
\ach tigri / ~_# 
\ach tigre / _# 
\akh tigri / ~_# 
\akh tigre / _# 
\acl tigri / ~_# 
\acl tigri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tigre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tigri / ~_# 
\akl tigri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tigre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tigri / ~_# 
\ame tigre / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="c7969b84-cb52-45b6-9501-6633e0828711" ownerguid="91187226-bd32-4ed9-9ceb-404f574fb16d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">carry</AUni> -<AUni ws="es">llevar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="16043947-a1ba-4e68-ae47-4110e7def074" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c7971b14-ddb1-4995-bb60-cd8f35ef6d1e" ownerguid="9b267cc1-983c-407a-98d2-1e27add6292c"> -<ExampleWords> -<AUni ws="en">taut, tight, tightly, strain, stretched</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe something that has been tied tightly?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="c7990233-ef2e-4ea6-8d1e-ccf56e540394" ownerguid="5bb29704-fe0f-4594-9622-ce0aa42b93c8"> -<Abbreviation> -<AUni ws="en">6.2.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.446" /> -<DateModified val="2022-9-23 16:55:8.446" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to farmland.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>1O Pastures and Cultivated Lands</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Farmland</AUni> -</Name> -<Questions> -<objsur guid="0831b5e3-5192-4391-92d5-e5cc50ecc823" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="c79c537b-24a1-473a-98e4-e80f9b85ef6c" ownerguid="0fa0be21-2246-40b2-86b1-ca572fe8c16c"> -<ExampleWords> -<AUni ws="en">relieve the boredom</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to trying to find something that is interesting because you are bored?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="c79d49f1-74ec-4dba-a5aa-5e861af63d05" ownerguid="bc9d763c-e4fe-48ab-ad44-87a36f6cc06f"> -<Abbreviation> -<AUni ws="en">3.5.1.8.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.164" /> -<DateModified val="2022-9-23 16:55:8.164" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to blaming someone for something--to say that someone did something, and because of this something bad happened.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Blame</AUni> -</Name> -<Questions> -<objsur guid="8e86abf0-a481-4609-a8ec-bb8fff109473" t="o" /> -<objsur guid="29d7cb44-cc26-484e-9e2f-6bbef1dfb158" t="o" /> -<objsur guid="15479a59-8260-4ba0-8a89-edbfebdf9c5f" t="o" /> -<objsur guid="dde0e318-37ce-40f4-9620-20c10bbd37aa" t="o" /> -<objsur guid="342e7ee2-c751-4b67-9d9b-137d2100c2f6" t="o" /> -<objsur guid="ae766d83-9e66-4c86-b0ce-93ed019fa2cf" t="o" /> -<objsur guid="e50dac0e-4395-42c9-a396-2707422895f0" t="o" /> -<objsur guid="0b309e05-7a6d-454b-9f5a-0520ac38656f" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="8570f05c-a152-4117-9f54-4edfa9c06a32" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="c7a1ab3c-d801-44d1-b5c7-64992091beb7" ownerguid="19cca110-d755-4e05-835c-d10c609d477b"> -<Form> -<AUni ws="qvm-x-ach">rashta</AUni> -<AUni ws="qvm-x-acl">rashta</AUni> -<AUni ws="qvm-x-akh">rashta</AUni> -<AUni ws="qvm-x-akl">rashta</AUni> -<AUni ws="qvm-x-ame">rashta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="c7a204e6-2222-4231-804a-927b824baf52" ownerguid="e027610f-39e8-4f86-a7ba-d7dd744a0e9f" /> -<rt class="CmDomainQ" guid="c7a4647c-a24e-4a5a-bc58-f63200ddb8e2" ownerguid="ea17aba7-6d4e-4dbf-89ea-84a1b1c47647"> -<ExampleWords> -<AUni ws="en">how big, be (ten litres) in volume, hold, be (ten) cubic inches, be two meters long two meters wide and two meters high, be two by two by two</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words indicate how big a container is?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c7a4c654-d408-49c1-be9f-1830ae6c2cf6" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<ExampleWords> -<AUni ws="en">outsized, giant, extra large</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe something that is much bigger than other things of the same type?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c7a4c794-794d-465a-81d6-8004fbbef4b7" ownerguid="88843228-3d25-4192-af4b-b368a7803382"> -<Definition> -<AStr ws="en"> -<Run ws="en">second person possessive</Run> -</AStr> -<AStr ws="es"> -<Run ws="es">segunda persona posesiva</Run> -</AStr> -</Definition> -<Gloss> -<AUni ws="en">2P</AUni> -<AUni ws="es">2P</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2999bb54-aa09-4eed-affb-cf684bd15cf6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c7a5e6ca-f6b1-47c2-ad2b-508f7889e6f7" ownerguid="dcbce83f-4058-4b6e-9cb5-c29c0685f45d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c7a8f9a0-a81f-41c9-82fb-312387dbcdf7" ownerguid="6d8c1d6c-d4a6-4164-ba40-42f5672e1ebe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="202efc2a-dc75-4ed8-8dfc-078a8d54719a" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="d49d14c4-32c9-4613-8dbc-b7dd486df342" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c7a9d034-6346-4213-b2df-f6287f4814c8" ownerguid="17102138-b97a-4f1d-81bc-9be4af90889e"> -<ExampleWords> -<AUni ws="en">defeat, loss, fall</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the defeat?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c7ab5dd4-0a40-48ee-8c72-2e64802eae98" ownerguid="a31c85df-02a9-4dd8-a094-0f07a0afbcca"> -<ExampleWords> -<AUni ws="en">remove, removal, take off, detach, tear off, break off, cut off, cut away</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to removing a part of something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c7b0a9cd-3c78-4567-8ac5-aa32e75e1fb3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">upa</AUni> -<AUni ws="qvm-x-acl">upa</AUni> -<AUni ws="qvm-x-akh">upa</AUni> -<AUni ws="qvm-x-akl">upa</AUni> -<AUni ws="qvm-x-ame">upa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*upa.n</AUni> -<AUni ws="qvm-x-acl">*upa.n</AUni> -<AUni ws="qvm-x-akh">*upa.n</AUni> -<AUni ws="qvm-x-akl">*upa.n</AUni> -<AUni ws="qvm-x-ame">*upa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.241" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c6f3648e-27e9-4399-b1fa-3bd114454133" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*upa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a3f5e076-f088-4c9a-a4fa-3a6664237f32" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e6a3f9e1-3cdc-44f2-b8c0-2a77fb85026a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *upa.n 
\entryTyp root 
\gENG dumb 
\gSPN mudo 
\e *upa.n 
\c N0 
\ach upa 
\akh upa 
\acl upa 
\akl upa 
\ame upa 
\mcc *upa.n / ~_ 1P.V JUST2.C</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="c7b6490c-1c08-430a-8722-e220cde476a2" ownerguid="8fe91a3b-a98c-4e7f-8483-917a91344e86"> -<Form> -<AUni ws="qvm-x-ach">masta</AUni> -<AUni ws="qvm-x-acl">masta</AUni> -<AUni ws="qvm-x-akh">masta</AUni> -<AUni ws="qvm-x-akl">masta</AUni> -<AUni ws="qvm-x-ame">masta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c7b9966f-09fb-4566-8ba2-651c0ff5b6c3" ownerguid="f3dbb078-6265-4861-a6e3-46cc151c5d72"> -<ExampleWords> -<AUni ws="en">complainer, fusspot, grumbler, misery, nag (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to someone who complains?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c7bc43ca-225d-4e04-872d-e8b4d548164b" ownerguid="fa00767d-6df9-4d87-a2aa-a0674182edc1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="e0002e64-1c74-45c6-aa74-5295d91f42e6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c7bc8d62-b808-48b6-a089-fe183cc35fa5" ownerguid="69ad591c-0e9e-452c-aef7-4bde3b6c50cc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="bd988253-1afa-4ee6-80d5-4960e40012f7" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">gather</AUni> -<AUni ws="es">juntar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8a490d3e-7e81-4f52-9258-c177419dd7a0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c7bd463c-adc0-4f02-ba85-3f88899d25b8" ownerguid="57b07c49-f5ff-4cf9-9333-0e10ca873e82"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c7bfd2f1-41a0-403b-8479-48cd124d1648" ownerguid="d9e03373-2058-4d9c-b4cd-7babe75e5d6a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c15a43dc-f630-42be-b7bd-31502417397a" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="22c2834c-988f-4245-97ee-9f08a6f4fc7e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="c7c1c25a-d89d-4720-846c-d6e1dd723a17" ownerguid="36ad58e3-ade7-49b9-9922-de0b5c3f13c3"> -<Abbreviation> -<AUni ws="en">5.2.3.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.317" /> -<DateModified val="2022-9-23 16:55:8.317" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to cooking oil.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Cooking oil</AUni> -</Name> -<Questions> -<objsur guid="67929606-aa2f-4b58-938c-f90654d1538c" t="o" /> -<objsur guid="150cb376-bcdb-426d-8d6d-d8b1ca0736c7" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoAffixAllomorph" guid="c7c24da9-2b97-43d3-a5a1-e0781bbcb1b1" ownerguid="394e2c36-b678-4dd3-863d-46ec784324de"> -<Form> -<AUni ws="qvm-x-ach">cä</AUni> -<AUni ws="qvm-x-acl">cä</AUni> -<AUni ws="qvm-x-akh">kä</AUni> -<AUni ws="qvm-x-akl">kä</AUni> -<AUni ws="qvm-x-ame">kä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="c7c2d82e-d86c-4bf3-81a1-82772e87d709" ownerguid="b8fc54d8-afd2-4ef8-b811-efb8aa7064db"> -<Abbreviation> -<AUni ws="en">8.5.1.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.668" /> -<DateModified val="2022-9-23 16:55:8.668" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that something is between two other things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>83C Among, Between, In, Inside</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Between</AUni> -</Name> -<Questions> -<objsur guid="9ad8d2d1-c023-4787-abed-a91df5e64be3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="c7c3aa7d-a4b5-45af-9a31-a640179e8fa4" ownerguid="5422d4ba-8af4-4767-912e-43b60ef28eab"> -<Abbreviation> -<AUni ws="en">9.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that modify an attribute.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Attribution of an attribute</AUni> -</Name> -<Questions> -<objsur guid="a76859f6-b6fd-4d69-9837-77d30931fde3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="c7c3b8b9-5b7a-4f7f-879a-bcd9384f05d7" ownerguid="62769b5e-9981-40f8-905b-1b94475a6f48"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">oven</AUni> -<AUni ws="es">horno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="50ca9ba5-4305-4804-bf34-9c799332eb6c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c7c3fcaf-0718-49bf-8b16-ba233835663b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cada</AUni> -<AUni ws="qvm-x-acl">cada</AUni> -<AUni ws="qvm-x-akh">cada</AUni> -<AUni ws="qvm-x-akl">cada</AUni> -<AUni ws="qvm-x-ame">cada</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cada</AUni> -<AUni ws="qvm-x-acl">+cada</AUni> -<AUni ws="qvm-x-akh">+cada</AUni> -<AUni ws="qvm-x-akl">+cada</AUni> -<AUni ws="qvm-x-ame">+cada</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.11" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bd439cb3-067a-40a6-a22c-31be04da51e1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cada</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8c27bf74-5086-4ece-a4a7-65dc2329ee6d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c739dd02-bc26-4a90-bc2e-011fc5024f4d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cada 
\entryTyp root 
\gENG each 
\gSPN cada 
\e +cada 
\c ONSHEV 
\ach cada 
\akh cada 
\acl cada 
\akl cada 
\ame cada</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c7c5b39f-48f5-4b19-99d1-730be030e693" ownerguid="20baa5e7-4f02-4782-a292-c6281d7b5f3a"> -<ExampleWords> -<AUni ws="en">shove, give something a shove, jog, jolt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to pushing something quickly or suddenly?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c7c62465-32b9-46a7-b6d3-2ed0284bba7b" ownerguid="4f40d752-0b59-4130-8ebf-13dc74065d16"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">obey</AUni> -<AUni ws="es">obedecer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e87576fd-64f5-467e-bd32-12b4e4ab298c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c7c7a8fe-4065-4e67-b741-e52c211972b0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsapa</AUni> -<AUni ws="qvm-x-acl">tsapa</AUni> -<AUni ws="qvm-x-akh">tsapa</AUni> -<AUni ws="qvm-x-akl">tsapa</AUni> -<AUni ws="qvm-x-ame">tsapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chapa.v</AUni> -<AUni ws="qvm-x-acl">*chapa.v</AUni> -<AUni ws="qvm-x-akh">*chapa.v</AUni> -<AUni ws="qvm-x-akl">*chapa.v</AUni> -<AUni ws="qvm-x-ame">*chapa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.282" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e4221c59-686c-4de3-b94a-c36c4fd2c161" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chapa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ec3019ea-f7ea-4e62-82b0-8dd963403d6f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2bbd43f9-d19a-4cdc-b594-bac1cbbf386a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chapa.v 
\entryTyp root 
\gENG interruption 
\gSPN interrupción 
\e *chapa.v 
\c V2 
\ach tsapa 
\akh tsapa 
\acl tsapa 
\akl tsapa 
\ame tsapa 
\i Gamtapis pipis manami tsapashunquitsu lutanta rurayta munaptiqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="c7c85346-158d-4881-839d-9a6a8e47209b" ownerguid="d60faf11-cc6e-48db-8a13-82f86d78ab00"> -<Abbreviation> -<AUni ws="en">7.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.498" /> -<DateModified val="2022-9-23 16:55:8.498" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for intransitive verbs of movement referring to moving your whole body to a different location. There are many components of meaning involved in verbs of movement. They can include a source location (from), a goal location (to), a path (along), manner (walk, run), speed (race, crawl), direction (forward, back, side, up, down, toward, away from), shape of the path (straight, curve, circle, angle), relationship to some object or objects (on, hang, against, between, across, through, into, out of, onto, off of, around), proximity (near, far), multiple movements (back and forth, return, bounce), inclusion with other objects or parts of objects (join, leave, collect, disperse, unite, separate), volition (go versus drift), intransitive versus transitive (move versus move something). Some verbs of movement do not involve moving from one place to another, but express bodily movement.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15 Linear Movement; 15A Move, Come/Go; 16 Non-Linear Movement</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Move</AUni> -</Name> -<OcmCodes> -<Uni>481 Locomotion</Uni> -</OcmCodes> -<Questions> -<objsur guid="f1bcc5fe-92ba-4491-bde7-6c8457cb788d" t="o" /> -<objsur guid="9ecff319-d83a-437a-b37c-49bf92c9dc58" t="o" /> -<objsur guid="e4bdea8e-efb5-48dc-9556-eb45147a8ac4" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="5cc64831-c14a-4dbe-beba-214e725ad041" t="o" /> -<objsur guid="12fe5f6c-7f98-47ba-936a-bcd1065c2db3" t="o" /> -<objsur guid="fcd22c85-7ee1-4d31-8633-9dbd32344211" t="o" /> -<objsur guid="6f01b67c-33a0-4ed3-8205-f868e97a1a3a" t="o" /> -<objsur guid="196bf7b1-54a1-4a78-8d10-c61585849c63" t="o" /> -<objsur guid="19d54c2f-ae03-4cbc-9b7e-57292f92fbc1" t="o" /> -<objsur guid="6330871b-6008-490e-bfff-e28e17ebce7e" t="o" /> -<objsur guid="38ab2681-fcc7-4a75-bb0b-29c5cd2e3a8f" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="c7cabc9e-0ca4-46f6-aa35-7180c26a202b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">adorna</AUni> -<AUni ws="qvm-x-acl">adorna</AUni> -<AUni ws="qvm-x-akh">adorna</AUni> -<AUni ws="qvm-x-akl">adorna</AUni> -<AUni ws="qvm-x-ame">adorna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+adornar</AUni> -<AUni ws="qvm-x-acl">+adornar</AUni> -<AUni ws="qvm-x-akh">+adornar</AUni> -<AUni ws="qvm-x-akl">+adornar</AUni> -<AUni ws="qvm-x-ame">+adornar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.649" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a12908ef-00ec-4dab-b1c5-171bdfb3db86" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+adornar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="79dd72c1-f45f-4284-a474-17c6d087492a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3cbe2e41-8f1e-4363-897f-6aca373054e4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +adornar 
\entryTyp root 
\gENG decorate 
\gSPN adornar 
\e +adornar 
\c V2 
\ach adorna 
\akh adorna 
\acl adorna 
\akl adorna 
\ame adorna</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="c7ccc5bb-181d-420f-8665-64793fefb37b" ownerguid="83adeb9d-c0be-4073-894d-913014420280"> -<Abbreviation> -<AUni ws="en">8.3.7.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is perfect.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79C' Perfect; 88D Perfect, Perfection</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Perfect</AUni> -</Name> -<Questions> -<objsur guid="abec0d32-d2a4-470e-86c4-ba49ea9fdcef" t="o" /> -<objsur guid="fde6041c-e375-48fd-80a3-a435a728a3b8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="c7d227f5-477c-4f38-863a-741fed5706de" ownerguid="e54cd744-d106-4bcf-bd07-b8783c075c21"> -<ExampleWords> -<AUni ws="en">come into fashion, come in, make a comeback</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something becoming fashionable?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c7da6185-6515-4ca8-861a-2461e65020c6" ownerguid="e1dd83dd-955a-4bc7-a761-fc91555da1f8"> -<ExampleWords> -<AUni ws="en">completely, in every way</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What general words refer to all of something's attributes or manners?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="c7db5260-9bec-4199-b8b4-d0cb9b6b111b" ownerguid="339fc947-a5bc-4e61-b4c0-f87b112eac47"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 65.7 Lamar yacu gaparar pulchagyaycagta gammi chawätsinqui.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="c7dbd50e-0ff5-42af-a7a9-9eaf03671c49" ownerguid="f29dccae-1654-4eb7-8aae-04f7df4fe90c"> -<Abbreviation> -<AUni ws="en">8.3.7.7.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is convenient--a good time to do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Convenient</AUni> -</Name> -<Questions> -<objsur guid="4e209a4a-ad19-4ba7-abe9-b60cb5747bb7" t="o" /> -<objsur guid="4d5f363d-10d6-486c-ab18-69f846295c5d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="c7dbec8d-838d-4a92-a15b-4f3d5b563513" ownerguid="e7f301c7-b8d1-4696-b030-b06755ef28dc"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c7dc72a7-5f20-43b3-ac7a-95a32e749895" ownerguid="bc5d011e-e125-4655-bae4-c775a009b4ef"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="dd409242-352f-4695-9a95-3606a8e89d1f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c7e3e66c-7867-43c2-8153-b04596045bec" ownerguid="d17a8a67-48d5-42e3-ba64-32708483e536"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c7e62900-2323-425f-bdbb-a1ea2fe1a571" ownerguid="38473463-4b92-4681-8fd0-0aca0342e88a"> -<ExampleWords> -<AUni ws="en">roundworm, hookworm, pinworm</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to roundworms (phylum Nematoda)?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c7eb468c-b931-4388-afd4-f315f5eb11d2" ownerguid="80f0945b-9e56-4379-98ce-00c0ef528aec"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">skin</AUni> -<AUni ws="es">piel</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ca448d29-a414-4e20-a8d4-1ab480d87c6a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c7ef1683-6934-4cd5-861a-5dbe053aace4" ownerguid="0fa95a9d-ed47-4b1f-8afe-2eb20a786a66"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="4325b0ba-e7de-4bb9-ba67-64ae03b6db04" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c7eff419-543f-4ccf-9920-30f130b252e2" ownerguid="a452f567-9fdb-43cd-a74c-65e11171d4a1"> -<Form> -<AUni ws="qvm-x-ach">vientu; viento</AUni> -<AUni ws="qvm-x-acl">vientu; vientu; viento</AUni> -<AUni ws="qvm-x-akh">vientu; viento</AUni> -<AUni ws="qvm-x-akl">vientu; vientu; viento</AUni> -<AUni ws="qvm-x-ame">vientu; viento</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c7f350ff-2a07-4fc8-be34-bf651711bcd1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lasdo:si; lasdo:si</AUni> -<AUni ws="qvm-x-acl">lasdo:si; lasdo:si; lasdo:se</AUni> -<AUni ws="qvm-x-akh">lasdo:si; lasdo:si</AUni> -<AUni ws="qvm-x-akl">lasdo:si; lasdo:si; lasdo:se</AUni> -<AUni ws="qvm-x-ame">lasdo:si; lasdo:si</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+las.doce</AUni> -<AUni ws="qvm-x-acl">+las.doce</AUni> -<AUni ws="qvm-x-akh">+las.doce</AUni> -<AUni ws="qvm-x-akl">+las.doce</AUni> -<AUni ws="qvm-x-ame">+las.doce</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.530" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bbf15772-c3e3-44ad-922b-74666dfcbf89" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+las.doce</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="40ff96f5-d1fa-4449-8fab-5f4adc59425c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d1f41895-d9d3-4168-a90e-e0e8639873d6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +las.doce 
\entryTyp root 
\gENG 
\gSPN 
\e +las.doce 
\c N0 
\mp +FinalI 
\ach lasdo:si / _# 
\ach lasdo:si / ~_# 
\akh lasdo:si / _# 
\akh lasdo:si / ~_# 
\acl lasdo:si / _# 
\acl lasdo:si +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lasdo:se +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lasdo:si / _# 
\akl lasdo:si +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lasdo:se +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lasdo:si / _# 
\ame lasdo:si / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c7f5632c-5655-4ec5-836e-09d43f598013" ownerguid="f3dbb078-6265-4861-a6e3-46cc151c5d72"> -<ExampleWords> -<AUni ws="en">complaining, fretful, querulous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe someone who complains?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c7f97c73-200b-4afd-ba63-c1ed6641c6f6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gueshpi</AUni> -<AUni ws="qvm-x-acl">gueshpi; gueshpi; gueshpe</AUni> -<AUni ws="qvm-x-akh">qeshpi</AUni> -<AUni ws="qvm-x-akl">qeshpi; qeshpi; qeshpe</AUni> -<AUni ws="qvm-x-ame">qishpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qishpi.n</AUni> -<AUni ws="qvm-x-acl">*qishpi.n</AUni> -<AUni ws="qvm-x-akh">*qishpi.n</AUni> -<AUni ws="qvm-x-akl">*qishpi.n</AUni> -<AUni ws="qvm-x-ame">*qishpi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.205" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b7d6465e-b276-4988-beff-b6b3bf4817ee" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qishpi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9344af53-713e-4d05-b271-cf652d5f8545" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d33e81cd-14df-4423-9f82-e1d32d654685" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qishpi.n 
\entryTyp root 
\gENG escape 
\gSPN escape 
\e *qishpi.n 
\c N0 
\mp +FinalI 
\ach gueshpi 
\akh qeshpi 
\acl gueshpi / _# 
\acl gueshpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gueshpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qeshpi / _# 
\akl qeshpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qeshpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qishpi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="c7fafad9-42e2-4e9d-a1c5-18b00ef34760" ownerguid="1ba433c0-abc7-46a0-9813-326b76a3fce9"> -<Form> -<AUni ws="qvm-x-ach">sabor</AUni> -<AUni ws="qvm-x-acl">sabor</AUni> -<AUni ws="qvm-x-akh">sabor</AUni> -<AUni ws="qvm-x-akl">sabor</AUni> -<AUni ws="qvm-x-ame">sabor</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="c7fe1e97-234a-47b7-a53f-9a16dc9f710a"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">dm</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiAnalysis" guid="c7fe3fd0-802d-429e-8f1c-9691f371f7bb" ownerguid="5c4a3227-111c-422f-aec2-b6edeee36482"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="476727d5-9c61-446d-b9e8-bedbc744601c" t="o" /> -<objsur guid="e1757a32-b21f-4de4-afdd-e38c96f1a57e" t="o" /> -<objsur guid="f327ad7a-3e86-452e-ade7-e8bcd11bf95b" t="o" /> -<objsur guid="ad01b190-615c-40be-8b60-534c0dd8c056" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="c7ff2590-0a87-42f0-a898-fba285de61a7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">picanti; picante</AUni> -<AUni ws="qvm-x-acl">picanti; picanti; picante</AUni> -<AUni ws="qvm-x-akh">picanti; picante</AUni> -<AUni ws="qvm-x-akl">picanti; picanti; picante</AUni> -<AUni ws="qvm-x-ame">picanti; picante</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+picante</AUni> -<AUni ws="qvm-x-acl">+picante</AUni> -<AUni ws="qvm-x-akh">+picante</AUni> -<AUni ws="qvm-x-akl">+picante</AUni> -<AUni ws="qvm-x-ame">+picante</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.820" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="126cd1e4-744d-4cd4-930a-45b8109abc72" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+picante</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0f0ad2bc-1ce3-43c6-9d79-e5ba477bff9e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ef85a9b9-33af-444b-8f51-82fea5a3b410" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +picante 
\entryTyp root 
\gENG spicy 
\gSPN picante 
\e +picante 
\c N0 
\mp +FinalI 
\ach picanti / ~_# 
\ach picante / _# 
\akh picanti / ~_# 
\akh picante / _# 
\acl picanti / ~_# 
\acl picanti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl picante +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl picanti / ~_# 
\akl picanti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl picante +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame picanti / ~_# 
\ame picante / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="c802cda2-eaec-4768-af67-bd1b815c5da0" ownerguid="c0760bba-2f62-4b2a-8c60-06e4313fe7a3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c803bcbc-2ed0-4f52-a825-be16107df8ef" ownerguid="6cd3e32f-db84-4c8f-9d97-02f8c3fdd8eb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">flock</AUni> -<AUni ws="es">majada</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="25ebdecb-daaa-463f-a406-b4860802239b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c805af85-77a9-46a9-ba60-f33fa7196812"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wasca</AUni> -<AUni ws="qvm-x-acl">wasca</AUni> -<AUni ws="qvm-x-akh">waska</AUni> -<AUni ws="qvm-x-akl">waska</AUni> -<AUni ws="qvm-x-ame">waska</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waska.n</AUni> -<AUni ws="qvm-x-acl">*waska.n</AUni> -<AUni ws="qvm-x-akh">*waska.n</AUni> -<AUni ws="qvm-x-akl">*waska.n</AUni> -<AUni ws="qvm-x-ame">*waska.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.556" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="58f665cf-cb76-4ccf-9e52-8a28867727bc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waska.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c8965bfb-29ac-44f6-8b34-b3a9b187640e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b15a35dd-9450-42f8-8c59-0685ee02ac29" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waska.n 
\entryTyp root 
\gENG rope 
\gSPN soga 
\e *waska.n 
\c N0 
\ach wasca 
\akh waska 
\acl wasca 
\akl waska 
\ame waska</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="c80824ac-02df-4337-a555-cc3e45248d22" ownerguid="5f5083e6-4fbb-4408-ab01-0e2eb8e60c36"> -<Form> -<AUni ws="qvm-x-ach">mushcu; mushcü</AUni> -<AUni ws="qvm-x-acl">mushcö; mushcu; mushco</AUni> -<AUni ws="qvm-x-akh">mushku; mushkü</AUni> -<AUni ws="qvm-x-akl">mushkö; mushku; mushko</AUni> -<AUni ws="qvm-x-ame">mushku; mushkü</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c809691f-b1de-4cbe-993f-1ce88530afd4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fi:ja</AUni> -<AUni ws="qvm-x-acl">fi:ja</AUni> -<AUni ws="qvm-x-akh">fi:ja</AUni> -<AUni ws="qvm-x-akl">fi:ja</AUni> -<AUni ws="qvm-x-ame">fi:ja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fijar</AUni> -<AUni ws="qvm-x-acl">+fijar</AUni> -<AUni ws="qvm-x-akh">+fijar</AUni> -<AUni ws="qvm-x-akl">+fijar</AUni> -<AUni ws="qvm-x-ame">+fijar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.548" /> -<DateModified val="2022-10-10 21:18:47.218" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c382b5fe-81db-4e5f-96ad-98eda5c778f4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fijar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4a4bde3a-3365-46b5-b95a-2e02b603ff0e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9035ce9a-0b67-4578-8f76-1ad29581a2d0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fijar 
\entryTyp root 
\gENG 
\gSPN 
\e +fijar 
\c V1 
\ach fi:ja 
\akh fi:ja 
\acl fi:ja 
\akl fi:ja 
\ame fi:ja</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="c80b3056-5862-486d-9c65-8ecb973b5adf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">torma</AUni> -<AUni ws="qvm-x-acl">torma</AUni> -<AUni ws="qvm-x-akh">torma</AUni> -<AUni ws="qvm-x-akl">torma</AUni> -<AUni ws="qvm-x-ame">torma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+torma</AUni> -<AUni ws="qvm-x-acl">+torma</AUni> -<AUni ws="qvm-x-akh">+torma</AUni> -<AUni ws="qvm-x-akl">+torma</AUni> -<AUni ws="qvm-x-ame">+torma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.957" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3842a6a7-041c-4900-a969-b51d29a7701c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+torma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3621102b-734a-470d-b193-96c9f2a61fb8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e54a6186-1383-45fa-a6a9-05bda2788d47" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +torma 
\entryTyp root 
\gENG 
\gSPN 
\e +torma 
\c N0 
\ach torma 
\akh torma 
\acl torma 
\akl torma 
\ame torma 
\i 1CH 11.23 Lanzanpis cargan telarpa tormannog racumi.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="c80e109f-2311-4596-bf24-13b75968d58c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">watpa; watpa:</AUni> -<AUni ws="qvm-x-acl">watpa; watpa:</AUni> -<AUni ws="qvm-x-akh">watpa; watpa:</AUni> -<AUni ws="qvm-x-akl">watpa; watpa:</AUni> -<AUni ws="qvm-x-ame">watpa; watpa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*watpa:</AUni> -<AUni ws="qvm-x-acl">*watpa:</AUni> -<AUni ws="qvm-x-akh">*watpa:</AUni> -<AUni ws="qvm-x-akl">*watpa:</AUni> -<AUni ws="qvm-x-ame">*watpa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.574" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="54a6e89b-1c99-419e-a39d-9df60ca2e171" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*watpa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="325d03a8-8db4-47ae-ba37-a5473a3937db" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4f260437-af96-4b0e-95c2-5372f6a5842b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *watpa: 
\entryTyp root 
\gENG 
\gSPN 
\e *watpa: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach watpa foreshortened 
\ach watpa: 
\akh watpa foreshortened 
\akh watpa: 
\acl watpa foreshortened 
\acl watpa: 
\akl watpa foreshortened 
\akl watpa: 
\ame watpa foreshortened 
\ame watpa:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="c80ea639-1334-4202-8674-c28daf18ea64" ownerguid="ac79fb7b-f09d-40b4-92ca-34a8c5655349"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7a5758e1-7d76-4d2f-8cb1-f72a0d0a01ab" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="c81004a7-499e-4e05-84c8-3d74a17e97fd" ownerguid="15947464-997a-4f44-9a4b-ac4916e7e19b"> -<Abbreviation> -<AUni ws="en">5.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.327" /> -<DateModified val="2022-9-23 16:55:8.327" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to caring for your teeth.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Care for the teeth</AUni> -</Name> -<Questions> -<objsur guid="6a552446-300f-4c6f-9ab3-b9b4ef9ed8a9" t="o" /> -<objsur guid="20b58e68-7ed6-4ec9-b7f5-b3ceb229442b" t="o" /> -<objsur guid="1e610557-6345-45e3-a0bc-5c86b0eb3578" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="77f0d0dc-61ee-4373-9879-35a7059bd892" t="r" /> -<objsur guid="c8602dc5-5c91-480a-b5ce-1c82fe3da83a" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="c8117f29-e342-48c7-8fa5-f6d14e83cbad" ownerguid="106c2c42-36fd-4b0a-94f7-e998f6eae6f5"> -<ExampleWords> -<AUni ws="en">curse, put/place a curse on, be under a curse, be cursed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to cursing someone?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c8134c1c-e189-414e-b9be-4dcbfb484e29"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsa; tsa:</AUni> -<AUni ws="qvm-x-acl">tsa; tsa:</AUni> -<AUni ws="qvm-x-akh">tsa; tsa:</AUni> -<AUni ws="qvm-x-akl">tsa; tsa:</AUni> -<AUni ws="qvm-x-ame">tsa; tsa:</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.495" /> -<DateModified val="2022-10-16 14:59:11.965" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1f0a4119-c98b-49ab-8f21-3becf5f634d7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">CAUSBE1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2989ee89-b549-478d-b7ff-d90bdc8e6d2f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="05b497cb-bcbd-4a2c-906a-3853273f7879" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx CAUSBE1 
\entryTyp suffix 
\gENG CHA: 
\gSPN CAUSSER1 
\e CAUSBE1 
\c N0/V2 R0/V2 
\o 020 
\mp +FinalC 
\mp +underlong 
\ach tsa foreshortened 
\ach tsa: 
\akh tsa foreshortened 
\akh tsa: 
\acl tsa foreshortened 
\acl tsa: 
\akl tsa foreshortened 
\akl tsa: 
\ame tsa foreshortened 
\ame tsa: 
\mp +FinalLength 
\mcc CAUSBE1 / [TakeCAUSBE1] ..._ 
\mcc CAUSBE1 / ~_ AG 
\mcc CAUSBE1 / ~_ PRMT 
\mcc CAUSBE1 / ~_ PSTN 
\mcc CAUSBE1 / *huk JUST2.C ~_</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="c815a360-c668-4437-ae9d-ec1bfa5b8b58" ownerguid="e9de27b6-abac-46ed-a68c-2c3d314297c6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pti</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pti</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pti</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b2772da-2fbd-4846-99c3-d3f919125916" t="r" /> -</Morph> -</rt> -<rt class="CmSemanticDomain" guid="c817af65-7cc8-4105-a8ed-47067d97b73b" ownerguid="8a11e609-e88d-4247-8c5f-224ddb20de10"> -<Abbreviation> -<AUni ws="en">5.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.327" /> -<DateModified val="2022-9-23 16:55:8.327" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for special clothes worn by special people. It is necessary to think through all the various special types of people in the culture and think of any special clothes worn by them. Several examples are given below, but there are many others.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Clothes for special people</AUni> -</Name> -<Questions> -<objsur guid="57a47948-417b-4e5e-8e4b-c44f68879df1" t="o" /> -<objsur guid="ab439ccf-e894-4c80-b904-7fb2af9b4285" t="o" /> -<objsur guid="4c408d3e-d7e2-465a-8279-45183efaff73" t="o" /> -<objsur guid="48147205-7b82-49d0-b725-f87b1fef5b45" t="o" /> -<objsur guid="131139b9-8fc9-43f3-ac33-4fed3668a22c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="c8185ca6-567a-40ef-939f-ffefdd9a4770" ownerguid="c2b720f5-1123-446e-9f60-088a3272b889"> -<Abbreviation> -<AUni ws="en">8.4.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.640" /> -<DateModified val="2022-9-23 16:55:8.640" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to something happening forever.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Forever</AUni> -</Name> -<Questions> -<objsur guid="9c1bac8c-f944-4bf5-a5a0-bd54f640e95b" t="o" /> -<objsur guid="b7c0e1b7-6691-4340-9d85-a52d9a169b7d" t="o" /> -<objsur guid="69a8a200-2804-404f-aabb-6aa240abfb4e" t="o" /> -<objsur guid="ec8b2173-6328-48ca-a6f6-cde32f287ac4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="c8199b44-19c1-44e6-9798-9264eee1502f" ownerguid="36719ebe-01da-4021-9132-3f5cf745f696"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="c81ae194-358e-47e3-a873-8523e2a1f043"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">vari:lla</AUni> -<AUni ws="qvm-x-acl">vari:lla</AUni> -<AUni ws="qvm-x-akh">vari:lla</AUni> -<AUni ws="qvm-x-akl">vari:lla</AUni> -<AUni ws="qvm-x-ame">vari:lla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+varilla</AUni> -<AUni ws="qvm-x-acl">+varilla</AUni> -<AUni ws="qvm-x-akh">+varilla</AUni> -<AUni ws="qvm-x-akl">+varilla</AUni> -<AUni ws="qvm-x-ame">+varilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.343" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8c4727c4-f8ce-4860-9d1d-f85225f7836d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+varilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4cec8764-a40b-4f74-869e-fe76e17fc2bb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cf9e6ae9-0bdc-448e-b1cb-6625a3b883e4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +varilla 
\entryTyp root 
\gENG 
\gSPN 
\e +varilla 
\c N0 
\ach vari:lla 
\akh vari:lla 
\acl vari:lla 
\akl vari:lla 
\ame vari:lla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="c81d13ce-847a-4380-b055-f368add5dc5c" ownerguid="607b1b5d-fbff-40ed-85f1-72e8a96b3377"> -<Form> -<AUni ws="qvm-x-ach">ay</AUni> -<AUni ws="qvm-x-acl">ay</AUni> -<AUni ws="qvm-x-akh">ay</AUni> -<AUni ws="qvm-x-akl">ay</AUni> -<AUni ws="qvm-x-ame">ay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="8378f21c-cf54-437a-9d41-a303c764b326" t="r" /> -</PhoneEnv> -</rt> -<rt class="MoStemMsa" guid="c81e7b48-eb5b-4eff-bc33-257cb79cb2b5" ownerguid="a34da010-25fd-4e68-9b19-4c09e51be7ec"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c82140a2-eeb2-486e-8471-af634140b1c2" ownerguid="99c59650-b088-4fa2-ab0e-db000d670f1f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">christmas</AUni> -<AUni ws="es">navidad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="75779322-a374-4bbd-a257-1a6b44f4e1c8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="c822708e-1203-4723-8df4-76a00953b6c5" ownerguid="897e8ae7-f339-465e-8628-f5600a2dba27"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 24.8 Tamyarga pasaypa shututuylami ushman.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="c8233a7f-14a5-43b2-b1ff-f3e20c1120a3" ownerguid="a7522f0d-f5fe-4f37-8daf-3ec0db391cb1"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b43ad487-6e73-48ff-9ec0-62d0371aba88" t="r" /> -</Morph> -<Msa> -<objsur guid="b0ee83ce-c1ff-41c7-8aa1-b6e53ae19ebd" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="c82563cc-2d18-4fc0-bdd7-972f66831981" ownerguid="768aed05-dbc9-4caf-9461-76cb3720f908"> -<ExampleWords> -<AUni ws="en">increase, grow, rise</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe pain increasing?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c8289ae0-0b20-451a-a964-c5a3813c0075" ownerguid="1d44baa0-006a-471d-83ad-4a063b38bc16"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">ser.desigual</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ecbed43d-a57d-4c68-9226-f70c1c501099" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c829f99b-e3d6-4bce-bd37-93dd63071d02" ownerguid="4153416a-784d-4f7c-a664-2640f7979a14"> -<ExampleWords> -<AUni ws="en">branch, confluence, fork, tributary</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to two rivers coming together?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="c82a087a-1cc7-4c03-8977-968ab20f87d2" ownerguid="731e8e9a-8685-4698-8b5b-be29d8056c2f"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EXO 10.1 Castiganä cashgami paypata y mandäshegnincunapatapis shongunta chucruyätsishcä.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="c82c2608-3394-4d96-9413-36957983729b" ownerguid="623df4d1-a346-411c-a149-8eddc54b0b9d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">single.woman</AUni> -<AUni ws="es">soltera</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f3aadd6b-7a3c-4124-8316-c14d0882e670" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="c82fa28f-7e26-489e-a244-4d69cea87b94" ownerguid="b32a39c4-43ff-4522-aed0-b2d5b8ad7157"> -<Abbreviation> -<AUni ws="en">6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.344" /> -<DateModified val="2022-9-23 16:55:8.344" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words related to working.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Work and occupation</AUni> -</Name> -<Questions> -<objsur guid="e83fcc47-497c-43fe-9a82-38f0f1406548" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="d68911f6-6507-483a-b015-44726fdf868a" t="o" /> -<objsur guid="5bb29704-fe0f-4594-9622-ce0aa42b93c8" t="o" /> -<objsur guid="79b580ff-64a7-445b-abcb-b49b9093779c" t="o" /> -<objsur guid="9e6d7c69-788c-4d40-8584-32f185e91932" t="o" /> -<objsur guid="cde96694-79e5-44af-8d38-d988d1938e5f" t="o" /> -<objsur guid="9bab95c4-9773-4894-9cb9-d7ad39378b45" t="o" /> -<objsur guid="6342c8bf-55b5-400f-af7e-63055fe6813b" t="o" /> -<objsur guid="2b893d04-3450-4862-b046-7df6f87272f6" t="o" /> -<objsur guid="f726d9bb-ae80-4c01-bdef-b600cb27736e" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="c83511fe-71d8-4b6c-a136-fceb42826cc2" ownerguid="d13e8a9b-3b60-43fa-895c-c1d236b4a45a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c835263b-7916-4621-92e3-886121c6c4fc" ownerguid="a1959b00-9702-4b45-ac46-93f18d3bc5e6"> -<ExampleWords> -<AUni ws="en">breathing, breath, respiration</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the process of breathing?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c83696f4-ee77-429d-91ea-ec6c83fdfae8" ownerguid="8dd50c7c-53e0-4a97-9d2d-c09497e792d3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rather</AUni> -<AUni ws="es">sino</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2f038240-8d35-4fd2-a7d8-d93aaebc6793" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c837daba-ce1a-4069-8f54-8818faf920c9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fiya</AUni> -<AUni ws="qvm-x-acl">fiya</AUni> -<AUni ws="qvm-x-akh">fiya</AUni> -<AUni ws="qvm-x-akl">fiya</AUni> -<AUni ws="qvm-x-ame">fiya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fiar</AUni> -<AUni ws="qvm-x-acl">+fiar</AUni> -<AUni ws="qvm-x-akh">+fiar</AUni> -<AUni ws="qvm-x-akl">+fiar</AUni> -<AUni ws="qvm-x-ame">+fiar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.546" /> -<DateModified val="2022-10-10 21:19:47.698" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8c24e6fb-f9e2-4d80-9a97-55286e89e257" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fiar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1a651e7b-d2fe-40a7-bb43-f85bb5a55e81" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e360f54e-d29a-4d9d-9d58-cee9535dab66" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fiar 
\entryTyp root 
\gENG loan 
\gSPN 
\e +fiar 
\c V2 
\mp +assimilated 
\ach fiya 
\akh fiya 
\acl fiya 
\akl fiya 
\ame fiya</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="c8380d80-c01c-4638-9a43-37df36123ef2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">masbien</AUni> -<AUni ws="qvm-x-acl">masbien</AUni> -<AUni ws="qvm-x-akh">masbien</AUni> -<AUni ws="qvm-x-akl">masbien</AUni> -<AUni ws="qvm-x-ame">masbien</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+más.bien</AUni> -<AUni ws="qvm-x-acl">+más.bien</AUni> -<AUni ws="qvm-x-akh">+más.bien</AUni> -<AUni ws="qvm-x-akl">+más.bien</AUni> -<AUni ws="qvm-x-ame">+más.bien</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.386" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2b76f8ac-f8a1-470d-8cd0-17fb31657cde" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+más.bien</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="57861382-852e-4a6c-a569-b4395e342b18" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8109ab50-abe6-4b18-b31d-fb1de5143b0d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +más.bien 
\entryTyp root 
\gENG 
\gSPN 
\e +más.bien 
\c ONSHEV 
\mp +assimilated 
\ach masbien 
\akh masbien 
\acl masbien 
\akl masbien 
\ame masbien 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="c8396157-305b-44ec-b687-3d6cc80e643c" ownerguid="7e512866-4b27-4ecf-903e-cab043f309e3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuna</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuna</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuna</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuna</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuna</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f236a19a-86ce-4599-91f5-fb178488e065" t="r" /> -</Morph> -<Msa> -<objsur guid="0851fe14-f99e-4e06-befc-3a76b044ea37" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="c83b3510-35f8-4e9b-aca4-409e3d2e923a" ownerguid="a1ce19c4-d12c-46da-a718-6d03949b3db1"> -<ExampleWords> -<AUni ws="en">hunting grounds</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) Where do people hunt?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c83bbaf2-b0a8-4c89-8d04-89e33130d354"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">suwa</AUni> -<AUni ws="qvm-x-acl">suwa</AUni> -<AUni ws="qvm-x-akh">suwa</AUni> -<AUni ws="qvm-x-akl">suwa</AUni> -<AUni ws="qvm-x-ame">suwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*suwa.n</AUni> -<AUni ws="qvm-x-acl">*suwa.n</AUni> -<AUni ws="qvm-x-akh">*suwa.n</AUni> -<AUni ws="qvm-x-akl">*suwa.n</AUni> -<AUni ws="qvm-x-ame">*suwa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.764" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c63ba025-f1f0-4bcf-87ba-d3019a9059f3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*suwa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="babff5e8-4dc8-4b62-9a13-5b5170fbe825" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dda3e10b-fcaf-43ef-8a86-3f94ffb798cf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *suwa.n 
\entryTyp root 
\gENG robber 
\gSPN ratero 
\e *suwa.n 
\c N0 
\ach suwa 
\akh suwa 
\acl suwa 
\akl suwa 
\ame suwa</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="c83c5ef6-bb3d-4293-865b-3f3ad22ab590"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">yarqarimun</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="c83e8b70-45f5-4e5d-8c26-1f48d044f2b7" ownerguid="bfe32ef1-d815-4321-919e-945bc548f05d"> -<Form> -<AUni ws="qvm-x-ach">milïshu</AUni> -<AUni ws="qvm-x-acl">milïshu; milïshu; milïsho</AUni> -<AUni ws="qvm-x-akh">milïshu</AUni> -<AUni ws="qvm-x-akl">milïshu; milïshu; milïsho</AUni> -<AUni ws="qvm-x-ame">milïshu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PunctuationForm" guid="c8403f69-69d0-4e24-870f-29b9e47446f0"> -<Form> -<Str> -<Run ws="qvm-x-akh">.</Run> -</Str> -</Form> -</rt> -<rt class="LexEntry" guid="c8424590-5304-4d1c-b5cf-fe919bdad89f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quinwa</AUni> -<AUni ws="qvm-x-acl">quinwa</AUni> -<AUni ws="qvm-x-akh">quinwa</AUni> -<AUni ws="qvm-x-akl">quinwa</AUni> -<AUni ws="qvm-x-ame">quinwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+quinua</AUni> -<AUni ws="qvm-x-acl">+quinua</AUni> -<AUni ws="qvm-x-akh">+quinua</AUni> -<AUni ws="qvm-x-akl">+quinua</AUni> -<AUni ws="qvm-x-ame">+quinua</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.841" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="73ae181c-bce0-4458-b1f5-baa93c848c93" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+quinua</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="477adf0e-0d24-4fef-a863-9c1fb74ac4b6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c0baa614-75ee-47ac-b6c1-61909739c87f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +quinua 
\entryTyp root 
\gENG amaranth 
\gSPN quinua 
\e +quinua 
\c N0 
\ach quinwa 
\akh quinwa 
\acl quinwa 
\akl quinwa 
\ame quinwa</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="c849a559-cbc7-4b16-b7e7-8b8d19483c69" ownerguid="ab80b556-2c7d-4e75-a58d-f5bb58b2feef"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="4bea552a-1dd1-4a1e-9027-d31cd9ccdcdb" t="o" /> -<objsur guid="856a2f92-2dec-4226-8589-d9301bf336d8" t="o" /> -<objsur guid="c9de20a9-2d8c-43ca-8653-71e2a0df96e2" t="o" /> -<objsur guid="bea27228-a6ac-4e2c-945b-fcb370b6779a" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="c84a629c-2f54-4425-8aac-25d35e4ba6a6" ownerguid="b6354c4e-f9c1-4c5c-846d-43b9722006b5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">medium</AUni> -<AUni ws="es">mediano</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e6adb313-e0e4-49c1-baac-c760571f03a8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c84a66df-60cb-4351-b4c5-9c56e02d8c8e" ownerguid="6b208fda-544c-4cba-b8cc-887b1018837f"> -<ExampleWords> -<AUni ws="en">photograph, photo, picture, shot, mug shot, snap, portrait, landscape</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a photograph?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c84e4eb2-b3b9-4cc3-a74c-2d8aba0f0a79" ownerguid="a730d0b4-b6db-45ac-bf6e-cefc96ae3fbb"> -<ExampleWords> -<AUni ws="en">deceptive, fraudulent, cunning, treacherous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe someone who deceives?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c84e8648-e0e3-43b6-9303-46aae363d4aa" ownerguid="4a1e1292-09bd-49d9-8cbf-2aaec6a39256"> -<Form> -<AUni ws="qvm-x-ach">jacha</AUni> -<AUni ws="qvm-x-acl">jacha</AUni> -<AUni ws="qvm-x-akh">jacha</AUni> -<AUni ws="qvm-x-akl">jacha</AUni> -<AUni ws="qvm-x-ame">hacha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c85162f8-27f3-4a31-a25e-68333e91ee30"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pegla</AUni> -<AUni ws="qvm-x-acl">pegla</AUni> -<AUni ws="qvm-x-akh">peqla</AUni> -<AUni ws="qvm-x-akl">peqla</AUni> -<AUni ws="qvm-x-ame">piqla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*piqlla</AUni> -<AUni ws="qvm-x-acl">*piqlla</AUni> -<AUni ws="qvm-x-akh">*piqlla</AUni> -<AUni ws="qvm-x-akl">*piqlla</AUni> -<AUni ws="qvm-x-ame">*piqlla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.848" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="10c08185-ee0a-4714-9bad-dadf160e7d95" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*piqlla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="262b992b-e981-4368-aae1-f1e5e7df4254" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="53e2b8c9-a801-4a16-bd32-2c6d40532c08" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *piqlla 
\entryTyp root 
\gENG 
\gSPN dejar.descubierto 
\e *piqlla 
\c V1 
\ach pegla 
\akh peqla 
\acl pegla 
\akl peqla 
\ame piqla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="c8547daf-229c-49a3-86c0-634bbd5e3dcd" ownerguid="7ebac9f5-d347-471d-a432-f439a85a054d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c85566a5-6c34-441b-a7a9-a3e1aa310318" ownerguid="34f3f19d-5a4c-4039-8aa2-4f311e7a7fb6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">yellow</AUni> -<AUni ws="es">amarillo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9d6e31cf-4676-421a-8810-fee5263df8e0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c856a609-ced8-47d7-9ca5-83984685d5e1" ownerguid="b3745f13-3632-4f13-b0cc-a74c51f8f2a1"> -<ExampleWords> -<AUni ws="en">earthquake, quake, tremor, temblor, shock, seismic, upheaval</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to earthquakes?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="c8595a5f-4dde-4260-b8d8-265d0554ce93" ownerguid="a3ba10f3-66e3-4ad5-8057-453b8941e497"> -<Abbreviation> -<AUni ws="en">4.8.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.284" /> -<DateModified val="2022-9-23 16:55:8.284" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to winning a victory.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Win</AUni> -</Name> -<Questions> -<objsur guid="3f612cb6-33c4-4ffa-9049-8a9dab86afb3" t="o" /> -<objsur guid="19a55691-cea1-4975-8142-3ee36596d180" t="o" /> -<objsur guid="22964c49-7908-47c3-beb1-8c33e073470b" t="o" /> -<objsur guid="eacae8ca-0fbd-490d-9165-28eafa9430ae" t="o" /> -<objsur guid="eb0d55ae-f806-4587-b8b7-8f2ec7021c4c" t="o" /> -<objsur guid="eb7cd6b4-5a31-46e0-a814-f1850aa5f39e" t="o" /> -<objsur guid="c5493689-4998-4f4c-8ce4-7d173dcb6329" t="o" /> -<objsur guid="8ed82166-667d-40cf-b86e-0ba12248d7a6" t="o" /> -<objsur guid="44fa2a29-171a-4521-8368-333b60c58d95" t="o" /> -<objsur guid="ea8a6f5e-7d3d-4876-acf3-d737572d3db1" t="o" /> -<objsur guid="4e8fc6fa-9e4b-4e06-bd08-c2ec0cbd28df" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="c85d93c4-ddc4-4810-8832-868a72c8a582" ownerguid="71363186-30b5-4e69-a491-b55627ab9548"> -<Form> -<AUni ws="qvm-x-ach">apura</AUni> -<AUni ws="qvm-x-acl">apura</AUni> -<AUni ws="qvm-x-akh">apura</AUni> -<AUni ws="qvm-x-akl">apura</AUni> -<AUni ws="qvm-x-ame">apura</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="c85fad70-7ce9-434a-80e1-9b2b24c0d172" ownerguid="3b8fd99c-a4f7-4f1f-b046-2d0649166611"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a86d8492-2702-4217-8291-bd473dd617f8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="c8602dc5-5c91-480a-b5ce-1c82fe3da83a" ownerguid="d98c1c67-b70e-4a35-89db-2e744bd5197f"> -<Abbreviation> -<AUni ws="en">2.1.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the teeth.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Tooth</AUni> -</Name> -<Questions> -<objsur guid="c0a625c2-70e8-4d96-82f8-445289a50a3c" t="o" /> -<objsur guid="bb56c1ca-8edc-4b9d-a34e-07d413de7c06" t="o" /> -<objsur guid="20de2f4a-6936-49ef-905a-737c961cf9e1" t="o" /> -<objsur guid="0ddcb0cb-02d4-432b-b01f-21468821b699" t="o" /> -<objsur guid="6c158a12-845e-42d0-a8c3-c0ee8e94849b" t="o" /> -<objsur guid="29567dce-9944-4dca-a47d-ae78f497cca1" t="o" /> -<objsur guid="6127b7ea-fbb9-4023-9199-248bb080103a" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="77f0d0dc-61ee-4373-9879-35a7059bd892" t="r" /> -<objsur guid="c81004a7-499e-4e05-84c8-3d74a17e97fd" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="c8617e5d-47b2-41b3-9183-72e524e8c710" ownerguid="8328a243-fc86-4339-9563-c9cbe69d0955"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuti</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuti; cute</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuti</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuti; kute</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuti</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1ea93998-be9c-4ae6-b87a-1279a5c89619" t="r" /> -</Morph> -<Msa> -<objsur guid="35967ee3-872d-4b56-ae00-e643fda7e9f3" t="r" /> -</Msa> -<Sense> -<objsur guid="b02c3472-ad16-42ae-93e7-e30a5d70a6f3" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="c8668604-a266-43a2-97fb-5deb57741e64" ownerguid="57c9a370-0f46-4475-98fd-c7a8b3f5074c"> -<ExampleWords> -<AUni ws="en">unspoiled, unblemished</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe something that has not been spoiled?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c86dbd85-d123-4680-9232-fe1e0fa66b29" ownerguid="6bf7569e-dc79-49da-9ce1-e2e03303828a"> -<ExampleWords> -<AUni ws="en">torture</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to torturing someone?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="c8713e12-805f-4451-8afd-4021ae3247ea" ownerguid="9693e88f-7198-4b43-850e-bf0aa36f12c9"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 19.7 Caruragmi viajanayquipag caycan. Aywaptiqui vëta mana tsarishunayquipag micucurcuy.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiWordform" guid="c8746898-c8cb-4d19-bd2d-508ce344262e"> -<Analyses> -<objsur guid="91a24a4f-487c-4657-b2a4-b2f34e8bf101" t="o" /> -</Analyses> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">wilaptinmi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="c8749481-41bd-4411-8265-e512f23b489a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">taquilla</AUni> -<AUni ws="qvm-x-acl">taquilla</AUni> -<AUni ws="qvm-x-akh">taquilla</AUni> -<AUni ws="qvm-x-akl">taquilla</AUni> -<AUni ws="qvm-x-ame">taquilla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+taquilla</AUni> -<AUni ws="qvm-x-acl">+taquilla</AUni> -<AUni ws="qvm-x-akh">+taquilla</AUni> -<AUni ws="qvm-x-akl">+taquilla</AUni> -<AUni ws="qvm-x-ame">+taquilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.853" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="232dfe67-9480-4a3b-88f1-314b08e468f7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+taquilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="644db15f-85f1-46f4-a632-6d888927a790" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4da72806-de83-4513-8929-d13092774373" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +taquilla 
\entryTyp root 
\gENG shelves 
\gSPN estantes 
\e +taquilla 
\c N0 
\ach taquilla 
\akh taquilla 
\acl taquilla 
\akl taquilla 
\ame taquilla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="c87e198e-b083-4006-ae1a-93d1004e0b2d" ownerguid="8ba297c7-4197-4846-b90f-5915d87763df"> -<Form> -<AUni ws="qvm-x-ach">goylar</AUni> -<AUni ws="qvm-x-acl">goylar</AUni> -<AUni ws="qvm-x-akh">qoylar</AUni> -<AUni ws="qvm-x-akl">qoylar</AUni> -<AUni ws="qvm-x-ame">quylar</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="c87f1998-c67c-4fba-8681-7c243672d8f8" ownerguid="0e88ebaa-ae1c-422f-baed-81b818bc79ed"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="c87f5a66-58f2-404d-9fd9-4bfd598d2009"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cancapish</AUni> -<AUni ws="qvm-x-acl">cancapish</AUni> -<AUni ws="qvm-x-akh">kankapish</AUni> -<AUni ws="qvm-x-akl">kankapish</AUni> -<AUni ws="qvm-x-ame">kankapish</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kankapish</AUni> -<AUni ws="qvm-x-acl">*kankapish</AUni> -<AUni ws="qvm-x-akh">*kankapish</AUni> -<AUni ws="qvm-x-akl">*kankapish</AUni> -<AUni ws="qvm-x-ame">*kankapish</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.922" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a9287cdf-ef40-4d98-81a8-03aaa5017c14" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kankapish</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4617a2d5-7d75-4ce2-9799-d95112f278b6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="73eea21b-538d-4ed8-b62b-a2dc806d62dd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kankapish 
\entryTyp root 
\gENG intestine 
\gSPN intestino 
\e *kankapish 
\c N0 
\mp +FinalC 
\ach cancapish 
\akh kankapish 
\acl cancapish 
\akl kankapish 
\ame kankapish</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="c87fcda1-31ee-4809-b284-da0a392dea87"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">entena:da</AUni> -<AUni ws="qvm-x-acl">entena:da</AUni> -<AUni ws="qvm-x-akh">entena:da</AUni> -<AUni ws="qvm-x-akl">entena:da</AUni> -<AUni ws="qvm-x-ame">entena:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+entenada</AUni> -<AUni ws="qvm-x-acl">+entenada</AUni> -<AUni ws="qvm-x-akh">+entenada</AUni> -<AUni ws="qvm-x-akl">+entenada</AUni> -<AUni ws="qvm-x-ame">+entenada</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.477" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bccd3aa9-4fb8-4836-881c-93c632d40741" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+entenada</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7285ed06-99de-4140-910d-b3a7ff755ba2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7e5bd9ad-d910-4df7-bfcf-5742aa68a0b4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +entenada 
\entryTyp root 
\gENG step.child 
\gSPN entenada 
\e +entenada 
\c N0 
\ach entena:da 
\akh entena:da 
\acl entena:da 
\akl entena:da 
\ame entena:da</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="c880c81f-65dc-4d93-8c39-22920fdbe4c7" ownerguid="79b580ff-64a7-445b-abcb-b49b9093779c"> -<Abbreviation> -<AUni ws="en">6.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to wool production--cutting the hair off of a sheep.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Wool production</AUni> -</Name> -<OcmCodes> -<Uni>236 Wool Production</Uni> -</OcmCodes> -<Questions> -<objsur guid="f33c2d9b-e9b7-4977-8c50-0b23fa8a05d3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="c882dd2e-596f-464a-afca-c30dcd09eee7" ownerguid="478b01f9-5ca7-40c5-905e-22206dde93f1"> -<Form> -<AUni ws="qvm-x-ach">infiernu; infierno</AUni> -<AUni ws="qvm-x-acl">infiernu; infiernu; infierno</AUni> -<AUni ws="qvm-x-akh">infiernu; infierno</AUni> -<AUni ws="qvm-x-akl">infiernu; infiernu; infierno</AUni> -<AUni ws="qvm-x-ame">infiernu; infierno</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c8843eed-7e01-4515-b242-5d5f7dd057e8" ownerguid="af4ac058-d4b3-4c7a-ade8-6af762d0486d"> -<ExampleWords> -<AUni ws="en">decision, choice, plan, course, strategy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to what is decided?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c885b6d1-2658-450e-adfc-dfc481afcf6d" ownerguid="cd207cf2-912f-49b5-b48a-e4b942b8b281"> -<Form> -<AUni ws="qvm-x-ach">anzuëla</AUni> -<AUni ws="qvm-x-acl">anzuëla</AUni> -<AUni ws="qvm-x-akh">anzuëla</AUni> -<AUni ws="qvm-x-akl">anzuëla</AUni> -<AUni ws="qvm-x-ame">anzuëla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c888a770-9ce0-49fe-b7ba-a509fec4f5e6" ownerguid="85e286c1-1d60-4f0a-a2fa-d9c693f7b775"> -<Form> -<AUni ws="qvm-x-ach">diciembri; diciembre</AUni> -<AUni ws="qvm-x-acl">diciembri; diciembri; diciembre</AUni> -<AUni ws="qvm-x-akh">diciembri; diciembre</AUni> -<AUni ws="qvm-x-akl">diciembri; diciembri; diciembre</AUni> -<AUni ws="qvm-x-ame">diciembri; diciembre</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="c888c7ac-8cf4-49d2-a33e-20d19d84c47b" ownerguid="8c28c640-db5b-43e2-a1e6-b0e381962129"> -<Abbreviation> -<AUni ws="en">6.3.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to pigs.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Pig</AUni> -</Name> -<Questions> -<objsur guid="bd11d786-663d-4869-8cd1-496a75e4a1bc" t="o" /> -<objsur guid="b2cc9224-dbb9-48d2-b3fa-ef1f6550831f" t="o" /> -<objsur guid="c1d32fbf-c560-47c7-a7bc-f11656a87b0c" t="o" /> -<objsur guid="a776a035-3dcb-48d3-bd13-2655783e5c19" t="o" /> -<objsur guid="fb84806d-10b9-410c-9c3e-f8a21e4541a1" t="o" /> -<objsur guid="51c5a084-2993-4805-b35d-b54bce502776" t="o" /> -<objsur guid="50584b7e-7e0e-4a61-8036-ece42b653cb0" t="o" /> -<objsur guid="e5d5d9ef-709d-4184-826e-b0ccd4a02d87" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="c88a747c-f8dd-4df1-85dd-58421016af40" ownerguid="611b2472-693c-4554-8fcd-63e5a5083932"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cell</AUni> -<AUni ws="es">calabozo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e6cef013-8730-443d-8a5b-7c639d2e3e47" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c88dad42-adba-4e8b-a21d-ce6479b82727" ownerguid="57d85dc6-8fb4-4b0f-a608-610d7ae1fd1c"> -<Form> -<AUni ws="qvm-x-ach">cancha</AUni> -<AUni ws="qvm-x-acl">cancha</AUni> -<AUni ws="qvm-x-akh">kancha</AUni> -<AUni ws="qvm-x-akl">kancha</AUni> -<AUni ws="qvm-x-ame">kancha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="c8920105-990d-4274-8bd2-912d74496248" ownerguid="b4de1d53-0874-4181-a642-87c7c372f11f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="c893c5cc-d68a-4ad5-935b-941ef797489c" ownerguid="c99e81a5-3a4f-4e0c-802f-985c5188243c"> -<Form> -<AUni ws="qvm-x-ach">pachi</AUni> -<AUni ws="qvm-x-acl">pachi; pache</AUni> -<AUni ws="qvm-x-akh">pachi</AUni> -<AUni ws="qvm-x-akl">pachi; pache</AUni> -<AUni ws="qvm-x-ame">pachi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c894e39d-1f98-4e54-890d-35bf200f6b55" ownerguid="4a5c8fdb-c8a0-49d2-a0d6-342428682d65"> -<ExampleWords> -<AUni ws="en">deformed, abnormal, misshapen</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a deformed baby?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="c894fd84-15a8-446f-91d3-55a64f2efa51" ownerguid="c6e365c2-5fd4-4d69-8202-bc20a49fa1d8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="c8964dc4-2cfd-4eee-9df7-0ce268d0446e" ownerguid="1e1b4c17-9133-4682-8148-dec1f7c897b3"> -<Form> -<AUni ws="qvm-x-ach">gaycu</AUni> -<AUni ws="qvm-x-acl">gaycu; gayco</AUni> -<AUni ws="qvm-x-akh">qayku</AUni> -<AUni ws="qvm-x-akl">qayku; qayko</AUni> -<AUni ws="qvm-x-ame">qayku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="c8965bfb-29ac-44f6-8b34-b3a9b187640e" ownerguid="c805af85-77a9-46a9-ba60-f33fa7196812"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="c89805a2-a4b4-4fb9-8446-cc1467d5a270" ownerguid="2418dd59-fa53-44a5-964d-f9dae2183b5e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">r</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">r</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">r</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">r</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">r</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a96fae79-db91-498f-a3f4-4aaeff3f9499" t="r" /> -</Morph> -<Msa> -<objsur guid="973e08a0-60b3-4ff1-9973-ac70ea0a16bc" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="c8998118-83a5-4fa1-8d10-f7c76a4725bc" ownerguid="a4b03891-c2df-4d72-bbdc-13bc8d4eceba"> -<ExampleWords> -<AUni ws="en">area, region, district, expanse (of land)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to an area?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c89af841-45bf-4559-96c3-f2055a4a6ef7" ownerguid="aebb2f11-8120-46f8-9df3-6a264d9c804f"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c89b68a6-accf-4d9a-b488-b2ee1f53d835" ownerguid="3aec74e5-6cfd-46d2-b26f-503fad761583"> -<ExampleWords> -<AUni ws="en">handle, neck, head, claw</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the parts of a hammer?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c89ba739-f890-4ee2-9073-fc5d664de9fc" ownerguid="49611d51-4f8f-4bee-b195-6ec12990758f"> -<Form> -<AUni ws="qvm-x-ach">amïga</AUni> -<AUni ws="qvm-x-acl">amïga</AUni> -<AUni ws="qvm-x-akh">amïga</AUni> -<AUni ws="qvm-x-akl">amïga</AUni> -<AUni ws="qvm-x-ame">amïga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c89bae7a-5a09-4b77-a661-452acff72fb3" ownerguid="4a4bdea2-89bf-4826-bde0-2bb1ead12835"> -<Form> -<AUni ws="qvm-x-ach">espëju</AUni> -<AUni ws="qvm-x-acl">espëju; espëju; espëjo</AUni> -<AUni ws="qvm-x-akh">espëju</AUni> -<AUni ws="qvm-x-akl">espëju; espëju; espëjo</AUni> -<AUni ws="qvm-x-ame">espëju</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c89e4ce0-5c11-4819-88b6-0b9cdb6bf64e" ownerguid="7337b2dd-b574-4a41-affa-2dfad7f6cdbc"> -<ExampleWords> -<AUni ws="en">deciding who goes first in a game, deciding who dies (e.g. who gets the life preserver), deciding who is guilty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What kind of decisions are made by these methods?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c89e86f1-10fa-4ead-bad1-ce5e09bc89a3" ownerguid="d08b4798-fa0a-45e2-81e5-96ecfd31116c"> -<Form> -<AUni ws="qvm-x-ach">censa</AUni> -<AUni ws="qvm-x-acl">censa</AUni> -<AUni ws="qvm-x-akh">censa</AUni> -<AUni ws="qvm-x-akl">censa</AUni> -<AUni ws="qvm-x-ame">censa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="c89f2bcc-fc36-4b18-8e8a-0bccefa6f373" ownerguid="185d68ff-bf3a-4eec-9e9d-9dd4b781a8ed"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="c8a36a65-c6b6-4062-9c37-1e18d7da75d6" ownerguid="670857e8-048a-4ab7-92a8-ebc28a5f914b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -<Sense> -<objsur guid="db6117c5-121c-433a-a891-e69950f55761" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="c8a4d9b1-8aec-4cb5-8f1c-1e10183bd164" ownerguid="447136bb-7611-4d4f-b7eb-82e985927aec"> -<Form> -<AUni ws="qvm-x-ach">isgun</AUni> -<AUni ws="qvm-x-acl">isgun</AUni> -<AUni ws="qvm-x-akh">isqun</AUni> -<AUni ws="qvm-x-akl">isqun</AUni> -<AUni ws="qvm-x-ame">isqun</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="c8a7eb6f-0be1-441e-9f89-1b1139e85e02" ownerguid="4a6f92f3-923f-4d27-ac96-a396c3d9658b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="c8a9214e-aa92-441e-9691-0a0e48cacc83"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ismu</AUni> -<AUni ws="qvm-x-acl">ismu; ismu; ismo</AUni> -<AUni ws="qvm-x-akh">ismu</AUni> -<AUni ws="qvm-x-akl">ismu; ismu; ismo</AUni> -<AUni ws="qvm-x-ame">ismu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ismu.n</AUni> -<AUni ws="qvm-x-acl">*ismu.n</AUni> -<AUni ws="qvm-x-akh">*ismu.n</AUni> -<AUni ws="qvm-x-akl">*ismu.n</AUni> -<AUni ws="qvm-x-ame">*ismu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.862" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c09093f5-da6e-4172-a8e4-d84ff662c3e4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ismu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f2fc3b45-eaf1-4cc1-9f9c-5b117c05a76c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="01018069-61ca-4a07-8e5f-da7669c47508" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ismu.n 
\entryTyp root 
\gENG podrido 
\gSPN rotten 
\e *ismu.n 
\c N0 
\ach ismu 
\akh ismu 
\acl ismu / _# 
\acl ismu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ismo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ismu / _# 
\akl ismu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ismo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ismu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="c8a94f83-28de-4733-9f2e-e7a7e4b453a6" ownerguid="31debfe3-91da-4588-b433-21b0e14a101b"> -<ExampleWords> -<AUni ws="en">traffic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to people and vehicles traveling on a road?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c8abe9ee-d9b9-4534-84cb-70161ccb093e" ownerguid="25da20bf-f0ad-46d9-9701-645654d31ba9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="fde2a4e4-8771-49b6-9d0e-f4fc7d06f155" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="f6f20032-d75f-4337-b72b-ee6d4b014e77" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c8acadff-590d-4f6a-81c5-39f5804537de" ownerguid="06a85def-ee0a-4d63-bfa8-62a21bcf06b0"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="c8aea8b2-4088-4d20-a0d2-45c2ad974ee1" ownerguid="2621e605-3ecc-4f3d-b28c-f8c92b3c4584"> -<Abbreviation> -<AUni ws="en">8.3.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.609" /> -<DateModified val="2022-9-23 16:55:8.609" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a furrow--a long mark cut into the surface of something, such as the furrow made by a plow, or a long cut made by a knife.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>1H Depressions and Holes</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Furrow</AUni> -</Name> -<Questions> -<objsur guid="7fac9e00-97a0-4e94-9874-6d7d49be5b21" t="o" /> -<objsur guid="06c3cd5e-ec12-4f07-a6e1-110e47c6095f" t="o" /> -<objsur guid="d3442317-de51-4036-8243-cb78d66b449b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="c8b17946-6f91-40d6-a2d2-246b203032ed" ownerguid="0add0775-0ed0-46be-ba4a-76310e63a036"> -<ExampleWords> -<AUni ws="en">uneven, rough, hilly, wavy, lumpy, broken (ground), rugged</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe a surface that is not level?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c8b24dcf-4f72-45b1-a4ec-7e5e47494b17" ownerguid="aef26d30-dcbb-4a8c-b41b-866a8f6fec65"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c8b34ac3-10ff-4116-8cf5-ab958dfa0989" ownerguid="50566b61-7526-4162-8d4f-611e9a8f672f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sling</AUni> -<AUni ws="es">honda</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2ede4825-ac22-4edf-8b87-bb4dedad5e2c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c8b7289d-49b4-4792-9eb6-a4f00ee9d3f8" ownerguid="7d8898d6-6296-4d4d-b8dd-2f48c49f9e98"> -<ExampleWords> -<AUni ws="en">soaring</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is very high?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c8b84334-9841-43e3-95d8-6118bdb9f01b" ownerguid="a99bfdb7-8925-4e05-b354-040ffd14b09d"> -<Form> -<AUni ws="qvm-x-ach">shulu</AUni> -<AUni ws="qvm-x-acl">shulu; shulo</AUni> -<AUni ws="qvm-x-akh">shulu</AUni> -<AUni ws="qvm-x-akl">shulu; shulo</AUni> -<AUni ws="qvm-x-ame">shulu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c8b8f2cd-0fb9-4306-bd78-43eb27dc15fd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tama</AUni> -<AUni ws="qvm-x-acl">tama</AUni> -<AUni ws="qvm-x-akh">tama</AUni> -<AUni ws="qvm-x-akl">tama</AUni> -<AUni ws="qvm-x-ame">tama</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tama</AUni> -<AUni ws="qvm-x-acl">*tama</AUni> -<AUni ws="qvm-x-akh">*tama</AUni> -<AUni ws="qvm-x-akl">*tama</AUni> -<AUni ws="qvm-x-ame">*tama</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.792" /> -<DateModified val="2022-10-10 21:18:47.207" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3ae14c8e-42ad-4bd4-b6d3-0ee6ab4ac3fe" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tama</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2847f8e4-5aaa-4eda-b52f-2049bab47769" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d16b019b-a277-49b2-b477-72f76ccbdf61" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tama 
\entryTyp root 
\gENG 
\gSPN 
\e *tama 
\c V1 
\ach tama 
\akh tama 
\acl tama 
\akl tama 
\ame tama 
\i ISA 24.20 Shinkashqa runa tsankapaykachaykaqnömi
\f + 
\fr 24.20 
\ft Wakin runakunaqa 
\it tamaykachaqnömi
\it* nipäkun.
\f* rikakonqa.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="c8b9229d-2621-4152-b21b-c689a681f83a" ownerguid="13feb252-8ae3-4111-aa7c-aba67b0de3ed"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cane.liquor</AUni> -<AUni ws="es">agua.ardiente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="66de936b-3dc7-44b3-bed3-1e815f6e33a1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c8b9af1d-5f5d-459f-9cf1-4c7254b0e513" ownerguid="5c38879f-8df0-483b-a563-6b6c2de16a5d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">scatter</AUni> -<AUni ws="es">desparramar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6f34f631-ffc3-4e97-8eef-1f54ecbc15de" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c8bc00e2-6b0d-48bd-9022-9c6b13040763" ownerguid="33c8a279-f1c4-41ea-b4ad-75b85e8c2223"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="c8bd517d-479e-464b-99fd-a1f9fe33d330" ownerguid="33d86ad9-8404-44fa-a89c-e4e01253f304"> -<Form> -<AUni ws="qvm-x-ach">crucifica</AUni> -<AUni ws="qvm-x-acl">crucifica</AUni> -<AUni ws="qvm-x-akh">crucifica</AUni> -<AUni ws="qvm-x-akl">crucifica</AUni> -<AUni ws="qvm-x-ame">crucifica</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c8bf76a3-de4b-45c2-aebe-e510caf18b14" ownerguid="afa77a2a-8b0f-4a39-91bc-040e90ffbb3a"> -<ExampleWords> -<AUni ws="en">brighten up, cheer up, perk up, be cheered, be heartened, take heart</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to feeling happy again after feeling sad?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c8c256a8-9e69-4b97-a095-16f6b2426a82" ownerguid="6254b880-b02b-4317-9add-fbae575c6186"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="c8c3d801-d256-4685-a024-9bf574b3fe0d" ownerguid="9d896f02-c26a-49e1-a602-5f97ae3d2bc2"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="CmSemanticDomain" guid="c8c74ec6-3f7a-4b45-b0e9-399b97c4a800" ownerguid="8383b4cb-e14a-4d04-a8c3-9c5276384953"> -<Abbreviation> -<AUni ws="en">3.3.4.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.123" /> -<DateModified val="2022-9-23 16:55:8.123" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to freedom--when you can do the things that you want to do.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>37J Release, Set Free</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Free to do what you want</AUni> -</Name> -<Questions> -<objsur guid="ed928fd8-edf6-48bb-96b7-d60e5ad7ac23" t="o" /> -<objsur guid="9cef9bda-dd99-4d32-a5d3-49a152884651" t="o" /> -<objsur guid="34a7ddc7-2c9b-43ba-b96e-e53c352806e1" t="o" /> -<objsur guid="0974c49f-8a09-4c0c-84a5-24e034477519" t="o" /> -<objsur guid="c297f310-b4a2-463b-89cb-6ca960643cc4" t="o" /> -<objsur guid="0a06c6a4-43d7-4c27-81b9-89b06965d9f7" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="28a68cea-9128-4d5c-8542-8df38c907310" t="r" /> -<objsur guid="6c282031-f1ca-492a-b94c-b48e74e6f25d" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="PhCode" guid="c8c809b9-dbbc-482b-872a-86eb44e88437" ownerguid="93d652a3-4b98-42e3-90f9-ae9ab0ead15b"> -<Representation> -<AUni ws="qvm-x-ach">ï</AUni> -<AUni ws="qvm-x-acl">ï</AUni> -<AUni ws="qvm-x-akh">ï</AUni> -<AUni ws="qvm-x-akl">ï</AUni> -<AUni ws="qvm-x-ame">ii</AUni> -</Representation> -</rt> -<rt class="MoStemAllomorph" guid="c8c841aa-e928-44ca-8a12-0ba8f198e37f" ownerguid="f49b51af-eea9-4258-ac46-79f044dfc46a"> -<Form> -<AUni ws="qvm-x-ach">chalpa</AUni> -<AUni ws="qvm-x-acl">chalpa</AUni> -<AUni ws="qvm-x-akh">chalpa</AUni> -<AUni ws="qvm-x-akl">chalpa</AUni> -<AUni ws="qvm-x-ame">chalpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c8c8655b-bf69-429d-857f-0146004a253a" ownerguid="f0bf0322-8c8d-4f7b-a98a-778236426b21"> -<Form> -<AUni ws="qvm-x-ach">cascu; casco</AUni> -<AUni ws="qvm-x-acl">cascu; cascu; casco</AUni> -<AUni ws="qvm-x-akh">cascu; casco</AUni> -<AUni ws="qvm-x-akl">cascu; cascu; casco</AUni> -<AUni ws="qvm-x-ame">cascu; casco</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="c8c8b1f6-a898-4d5b-a1ce-fa7284915e8f" ownerguid="01459db0-bf2a-422b-8d55-0ab505aea2b4"> -<Abbreviation> -<AUni ws="en">4.4.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a disaster.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Disaster</AUni> -</Name> -<OcmCodes> -<Uni>731 Disasters</Uni> -</OcmCodes> -<Questions> -<objsur guid="a9953815-1132-4a82-bc1e-d53933ba663c" t="o" /> -<objsur guid="ec6186a0-fbc2-4216-920a-e21c4affaa92" t="o" /> -<objsur guid="83991417-24d0-4ba6-859b-986131330534" t="o" /> -<objsur guid="443e261f-a765-4eb8-89bd-173dc332e4dc" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="35faefb3-7498-4735-9b05-e7035dd368fc" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="c8c9f6a1-eefb-4dea-a245-4e825a8e88d1" ownerguid="bc96b3e3-6185-4925-b79e-8f0f9555bfb7"> -<ExampleWords> -<AUni ws="en">terminology, jargon, specialized vocabulary, technical terms</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the language used to talk about a particular subject?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="c8ca01dd-ce1a-44af-8355-b901f80b56c5" ownerguid="e15c3312-6054-44ff-b87e-ebf86f9eb197"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">NEH 2.14 Tsaypitanami pasargä Pucyu jutiyog puncu cag lädupa y Reypa Yacu Estanquin cag lädupapis.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="c8cb8fe8-e9de-4d25-a6bb-68d65e8b6e13" ownerguid="edeb9458-3bdb-4d14-aaa1-6eb457307b9c"> -<ExampleWords> -<AUni ws="en">dutiful, responsible</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe someone who does what he should?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c8cfa001-d9ee-4072-8f16-8ce5e93d7c54" ownerguid="8f2ad124-6c59-43c3-8c46-7092ee10b10e"> -<Form> -<AUni ws="qvm-x-ach">pucshu</AUni> -<AUni ws="qvm-x-acl">pucshu; pucshu; pucsho</AUni> -<AUni ws="qvm-x-akh">pukshu</AUni> -<AUni ws="qvm-x-akl">pukshu; pukshu; puksho</AUni> -<AUni ws="qvm-x-ame">pukshu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c8d3bee0-5a48-4c28-89d3-86d654b3ab68"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wardaespalda</AUni> -<AUni ws="qvm-x-acl">wardaespalda</AUni> -<AUni ws="qvm-x-akh">wardaespalda</AUni> -<AUni ws="qvm-x-akl">wardaespalda</AUni> -<AUni ws="qvm-x-ame">wardaespalda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+guardaespalda</AUni> -<AUni ws="qvm-x-acl">+guardaespalda</AUni> -<AUni ws="qvm-x-akh">+guardaespalda</AUni> -<AUni ws="qvm-x-akl">+guardaespalda</AUni> -<AUni ws="qvm-x-ame">+guardaespalda</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.821" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d5888feb-2a9e-4072-936e-4d15cd27c363" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+guardaespalda</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6b1118fc-3a6f-42f3-b7a9-d0718c3836f5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="50d95603-693f-4ce1-ad38-7d628bead3f6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +guardaespalda 
\entryTyp root 
\gENG body.guard 
\gSPN guarda.espalda 
\e +guardaespalda 
\c N0 
\ach wardaespalda 
\akh wardaespalda 
\acl wardaespalda 
\akl wardaespalda 
\ame wardaespalda</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="c8d5f7ec-7f25-480c-bfaf-c9b48ffec3a7" ownerguid="203d46e3-0d71-4257-aeca-fbab7af0e539"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c8d7d60a-89f5-4a24-bfa8-76b6bed090ca" ownerguid="960643fc-79e9-4e6f-a765-2fefd3d19892"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">neighbor</AUni> -<AUni ws="es">vecino</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="663c466e-ddec-4dc4-85ed-28208fa86481" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="c8d94c8f-db0b-4016-bdd2-e41a2eae4288" ownerguid="7558d071-a885-447b-9aa2-604c29669492"> -<Abbreviation> -<AUni ws="en">4.6.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.264" /> -<DateModified val="2022-9-23 16:55:8.264" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a region--a part of a country, or a part of the earth.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>1K Sociopolitical Areas</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Region</AUni> -</Name> -<OcmCodes> -<Uni>630 Territorial Organization; 631 Territorial Hierarchy; 634 Districts; 635 Provinces; 636 Dependencies</Uni> -</OcmCodes> -<Questions> -<objsur guid="f4cf3eaf-4c46-4994-9b3d-e23348e5fadf" t="o" /> -<objsur guid="4cb3f283-f629-44f3-b487-f6c2092fc9ef" t="o" /> -<objsur guid="b76a5701-3021-4574-9cdd-f7a1cf41982a" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="a7dae83a-dce6-47ea-ab3f-ac8a3af4cce9" t="o" /> -<objsur guid="b536622c-80a3-4b31-9d22-4ed2fb76324d" t="o" /> -<objsur guid="0f983449-1c43-4974-b388-7695b1af4bfa" t="o" /> -<objsur guid="ec998dc6-d509-4832-8434-d2abac34ba70" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="c8daf733-d53b-426c-913d-076a44273684" ownerguid="4bf411b7-2b5b-4673-b116-0e6c31fbd08a"> -<ExampleWords> -<AUni ws="en">daylight, sunlight, moonlight, starlight, firelight, candlelight, electric light, electromagnetic radiation, fluorescence, fluorescent light, incandescent light, infrared, lamplight, luminescence, luminescent, phosphorescence, phosphorescent, photoelectric, ultraviolet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to different kinds of light?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c8de900d-4ef2-4805-b27c-f5bc872b34c9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bojanda</AUni> -<AUni ws="qvm-x-acl">bojanda</AUni> -<AUni ws="qvm-x-akh">bojanda</AUni> -<AUni ws="qvm-x-akl">bojanda</AUni> -<AUni ws="qvm-x-ame">bojanda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bufanda</AUni> -<AUni ws="qvm-x-acl">+bufanda</AUni> -<AUni ws="qvm-x-akh">+bufanda</AUni> -<AUni ws="qvm-x-akl">+bufanda</AUni> -<AUni ws="qvm-x-ame">+bufanda</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.991" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4329f97e-43d4-4f20-a416-a1aff055e5e9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bufanda</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="db3ae090-ae90-4fca-bce0-f424d3e14f75" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f5b9f074-588f-45b6-aef9-3648e9c1b9c8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bufanda 
\entryTyp root 
\gENG scarf 
\gSPN bufanda 
\e +bufanda 
\c N0 
\ach bojanda 
\akh bojanda 
\acl bojanda 
\akl bojanda 
\ame bojanda</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="c8dfc7d1-8420-44e5-b06b-b55cf64536d2" ownerguid="1ae12111-7ec7-48de-9ecd-014df611fc32"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Gammi canqui geshya. - no respteta a su padre ni a su madre.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="c8e2eb72-693e-427a-bb73-98dccb32b979" ownerguid="4231feeb-d7d1-4f48-907e-6cbe21827c29"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="r" /> -</Morph> -</rt> -<rt class="CmSemanticDomain" guid="c8e3c39c-d895-4e42-8e1e-1574137ba016" ownerguid="dc177f3c-d0fd-4232-adf1-a77b339cdbb2"> -<Abbreviation> -<AUni ws="en">6.5.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.458" /> -<DateModified val="2022-9-23 16:55:8.458" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to types of houses.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Types of houses</AUni> -</Name> -<OcmCodes> -<Uni>342 Dwellings; 343 Outbuildings</Uni> -</OcmCodes> -<Questions> -<objsur guid="b5a96042-faba-40ea-9769-b71a25289fa3" t="o" /> -<objsur guid="ce7eb7f8-ad68-4659-8633-bb85fa0de8b6" t="o" /> -<objsur guid="87b27fe2-2ab4-4b50-9740-afe8a625f600" t="o" /> -<objsur guid="e584457c-2d32-457c-bd0f-839ebb55435e" t="o" /> -<objsur guid="1f5d37d1-04f1-4837-8381-324b8a7bcfbb" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="c8e9390d-ebbb-4314-930b-7328101c2510" ownerguid="8fda01cc-e0f5-40fc-a6cd-163788e6b224"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="c8e95c3a-b8e0-444c-94b4-bf0889bb245e" ownerguid="1892095d-b9c5-49df-a950-e43aeba7196a"> -<Form> -<AUni ws="qvm-x-ach">tsolga</AUni> -<AUni ws="qvm-x-acl">tsolga</AUni> -<AUni ws="qvm-x-akh">tsolqa</AUni> -<AUni ws="qvm-x-akl">tsolqa</AUni> -<AUni ws="qvm-x-ame">tsulqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c8ea8130-3308-4dc8-86e7-3e9bbb0691e3" ownerguid="ffe84c4f-8c38-4b84-ac36-e79ffadbd426"> -<ExampleWords> -<AUni ws="en">free, free of charge, cost nothing, complementary, no charge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is free?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="c8eb728c-f0ac-4793-b4f4-bbaa55de99f2" ownerguid="203d46e3-0d71-4257-aeca-fbab7af0e539"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="53fcb1f0-e897-47ce-a162-b4ab9ef148d5" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">case</AUni> -<AUni ws="es">caso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c8d5f7ec-7f25-480c-bfaf-c9b48ffec3a7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c8f316c1-3506-4943-833d-846730bdc5b6" ownerguid="41a0adc2-9949-4de7-afb7-335a653a6ce2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">meat</AUni> -<AUni ws="es">chicharron</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3dec69b4-a1c1-45ad-990f-88956b027333" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c8f5834c-da75-496f-b0e4-40465eee8b40" ownerguid="c60cf6a1-7868-4536-ac73-387bfa26e04b"> -<ExampleWords> -<AUni ws="en">rebellion, revolt, revolution, sedition, insurrection, insurgency, mutiny, civil disobedience, coup, coup d'etat, counterrevolution, putsch, takeover, uprising</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the act of rebellion?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c9001560-e7b2-436c-bce7-81cf7b6578ed" ownerguid="be352131-083c-45b0-8728-e246a01503c0"> -<Form> -<AUni ws="qvm-x-ach">setenta</AUni> -<AUni ws="qvm-x-acl">setenta</AUni> -<AUni ws="qvm-x-akh">setenta</AUni> -<AUni ws="qvm-x-akl">setenta</AUni> -<AUni ws="qvm-x-ame">setenta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="c904019d-ee7e-4035-8c65-3ae9aeb5912a" ownerguid="394e2c36-b678-4dd3-863d-46ec784324de"> -<Form> -<AUni ws="qvm-x-ach">cä</AUni> -<AUni ws="qvm-x-acl">cä</AUni> -<AUni ws="qvm-x-akh">kä</AUni> -<AUni ws="qvm-x-akl">kä</AUni> -<AUni ws="qvm-x-ame">kä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="4d5106b0-9756-4fc2-a2e3-b3bb0373fd9b" t="r" /> -</PhoneEnv> -</rt> -<rt class="LexSense" guid="c90421d6-0323-4820-833e-d4b7a8eec9b2" ownerguid="54153363-ba65-4136-ac54-f489c3976296"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.favor</AUni> -<AUni ws="es">favorecer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d358061d-4091-422f-bae6-0b41fc9ee2e8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c904a11a-20a5-4858-b312-ac5297a4a075" ownerguid="a0d073df-d413-4dfd-9ba1-c3c68f126d90"> -<ExampleWords> -<AUni ws="en">appear, point, fade</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What do comets do?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c9054e8e-8892-4457-870c-f7aecb8e6714" ownerguid="d117aa22-3f18-47c4-9683-51ecf1dc7134"> -<ExampleWords> -<AUni ws="en">root, tuber, tubercle, bulb, taproot, runner, root hairs, rootstock</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the roots?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c90641ea-6b1d-48e6-860e-896889b35614" ownerguid="6de42a33-35b2-49c6-b2c4-fa9c0c5094f0"> -<ExampleWords> -<AUni ws="en">drink, drunk, take a drink</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to drinking?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c907381c-579a-40a2-be9e-43612bb6fbe1" ownerguid="9080bb0a-b965-4da7-84c7-2e87b4088e07"> -<Form> -<AUni ws="qvm-x-ach">gosu</AUni> -<AUni ws="qvm-x-acl">gosu; gosu; goso</AUni> -<AUni ws="qvm-x-akh">qosu</AUni> -<AUni ws="qvm-x-akl">qosu; qosu; qoso</AUni> -<AUni ws="qvm-x-ame">qusu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c9084524-56b4-44e2-84c0-6c4294cbf0ea"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">goshpi</AUni> -<AUni ws="qvm-x-acl">goshpi; goshpe</AUni> -<AUni ws="qvm-x-akh">qoshpi</AUni> -<AUni ws="qvm-x-akl">qoshpi; qoshpe</AUni> -<AUni ws="qvm-x-ame">qushpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qushpi</AUni> -<AUni ws="qvm-x-acl">*qushpi</AUni> -<AUni ws="qvm-x-akh">*qushpi</AUni> -<AUni ws="qvm-x-akl">*qushpi</AUni> -<AUni ws="qvm-x-ame">*qushpi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.882" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="19373fa1-471d-49f6-8dd7-819dcf2199b1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qushpi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b18717c0-6eb0-4c3b-bf66-ffe5127e3d43" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2c729fe3-4104-4b5d-9832-66e1e57aeb60" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qushpi 
\entryTyp root 
\gENG gather 
\gSPN recoger 
\e *qushpi 
\c V2 
\mp +FinalI 
\ach goshpi 
\akh qoshpi 
\acl goshpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl goshpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qoshpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qoshpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qushpi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="c90a608d-7d41-4529-8a84-43b013709f48" ownerguid="89c9becb-c2f1-4fd2-b247-1d887e7937df"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c90a7953-b33f-41f6-878d-d9c0be980bbe" ownerguid="4268dc30-454d-41f8-8187-b430b3e46ec3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="7085a8cd-3b11-4ca9-92e1-f1b0e0d51118" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">brood</AUni> -<AUni ws="es">empollar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6f7278dc-3994-49b7-baab-3a6e0cc01d86" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c90ad49d-685d-4887-9dea-ab1ed2a3a974" ownerguid="2ec766be-79fc-4051-a56d-7bda64f875ee"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cast</AUni> -<AUni ws="es">echar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7b5f8f27-345e-4dea-8978-41a45bb264ed" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c90d88f2-299e-4dc0-b479-5d82db16e7c6" ownerguid="b43fae8e-6b19-42ed-98cd-d363174b9cf8"> -<ExampleWords> -<AUni ws="en">shrunken</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that has been made small?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c9144ba5-abec-4e21-84cb-12e706880f4a" ownerguid="22300e2c-3d7d-4c36-a2b7-e2bbb247f793"> -<ExampleWords> -<AUni ws="en">bean, dry, grind</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to growing coffee?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c918bd2d-f67d-4299-9acc-7629f21e453a" ownerguid="eef8c50e-c391-482c-9f60-1bba2d8892b3"> -<ExampleWords> -<AUni ws="en">reporter, anchorman, disk jockey</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a person who talks on the radio or television?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="c9195472-585e-46e8-ad5e-3cf1c0561f5a" ownerguid="802c371e-6a7a-4929-b99a-dcbcc28b3d01"> -<Form> -<AUni ws="qvm-x-ach">ra</AUni> -<AUni ws="qvm-x-acl">ra</AUni> -<AUni ws="qvm-x-akh">ra</AUni> -<AUni ws="qvm-x-akl">ra</AUni> -<AUni ws="qvm-x-ame">ra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="ae5f3ffd-a9d0-4eaa-9040-50a5a57e64bc" t="r" /> -<objsur guid="b27c54e7-0a24-46d7-b332-e63a45ecffc2" t="r" /> -</PhoneEnv> -</rt> -<rt class="MoStemMsa" guid="c91b3fe8-3da4-4edb-8ac6-4dc5aa1dd0e4" ownerguid="b0c2c50a-effb-45cd-9732-861e34c3ec7f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c91cdd5e-0cc2-4533-9bda-d9dc6c9e509e" ownerguid="c389898d-eff7-4f4d-85e1-2c53c32d17c4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">joke</AUni> -<AUni ws="es">chiste</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f2e5ab9e-bcc6-4d48-ab05-3bbe55d653b6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c91db6e1-8ae6-4ee0-b060-c98432e99449" ownerguid="ebc236df-9c56-400c-8715-c20015701b3b"> -<Form> -<AUni ws="qvm-x-ach">sï</AUni> -<AUni ws="qvm-x-acl">sï</AUni> -<AUni ws="qvm-x-akh">sï</AUni> -<AUni ws="qvm-x-akl">sï</AUni> -<AUni ws="qvm-x-ame">sï</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c91ea7d1-eb8e-49b2-95cf-91a87e723e36" ownerguid="18b3ca02-18fe-4ab5-8709-c20957a0a2fb"> -<ExampleWords> -<AUni ws="en">self-satisfied, smug, pleased with yourself, complacent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to being satisfied with yourself?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c920c85d-f79b-49f8-824c-36c4a6737879" ownerguid="4eda1965-3d19-4af3-a75c-092c45932917"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c922934b-75bc-405b-9744-ff4add68d011" ownerguid="b6006567-8e06-4e00-8a8a-5ed9654be26d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">will</AUni> -<AUni ws="es">voluntad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a9d85485-6e9f-46dc-8709-c6a256eab1a7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c9256e98-8692-452c-b447-26bd4d3a67c6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chinray</AUni> -<AUni ws="qvm-x-acl">chinray</AUni> -<AUni ws="qvm-x-akh">chinray</AUni> -<AUni ws="qvm-x-akl">chinray</AUni> -<AUni ws="qvm-x-ame">chinray</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trinray</AUni> -<AUni ws="qvm-x-acl">*trinray</AUni> -<AUni ws="qvm-x-akh">*trinray</AUni> -<AUni ws="qvm-x-akl">*trinray</AUni> -<AUni ws="qvm-x-ame">*trinray</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.119" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0491868f-2765-4a69-9a5b-3e5e0f6dc9e4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trinray</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="39379449-fae6-48f9-a06f-e6c26329204b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3c4527b4-a029-40a7-9add-09c8eda05dc1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trinray 
\entryTyp root 
\gENG fly 
\gSPN mosca 
\e *trinray 
\c N0 
\mp +FinalC 
\ach chinray 
\akh chinray 
\acl chinray 
\akl chinray 
\ame chinray</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="c926057e-1c0a-4806-bfea-04505812bd6e" ownerguid="6ed5bc68-dcdd-4198-81ad-180451028af9"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="1ecaa461-65c8-43d1-bb98-ae2c4b4f7ef8" t="o" /> -<objsur guid="99c02956-f8de-4b14-be12-e62c7719c91a" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="c928dc84-0741-4173-ad98-eaf81c6c5c0b" ownerguid="32bf055a-d666-4d6e-a3c6-6c984e2c9868"> -<ExampleWords> -<AUni ws="en">hang up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to ending a telephone call?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c9293a49-8f32-4348-840a-9dfc7a94002d" ownerguid="72c734dc-727b-40ac-bfeb-bf6bbb79634a"> -<Form> -<AUni ws="qvm-x-ach">trampösu</AUni> -<AUni ws="qvm-x-acl">trampösu; trampösu; trampöso</AUni> -<AUni ws="qvm-x-akh">trampösu</AUni> -<AUni ws="qvm-x-akl">trampösu; trampösu; trampöso</AUni> -<AUni ws="qvm-x-ame">trampösu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="c92cf85d-6e2d-4550-a504-c5c71703ed79" ownerguid="ad56e8e3-c46b-4007-9823-7fa7a7a9d5ba" /> -<rt class="LexEntry" guid="c92d7e46-5575-42a4-b495-7a5a9f05ca68"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">manza:na</AUni> -<AUni ws="qvm-x-acl">manza:na</AUni> -<AUni ws="qvm-x-akh">manza:na</AUni> -<AUni ws="qvm-x-akl">manza:na</AUni> -<AUni ws="qvm-x-ame">manza:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+manzana</AUni> -<AUni ws="qvm-x-acl">+manzana</AUni> -<AUni ws="qvm-x-akh">+manzana</AUni> -<AUni ws="qvm-x-akl">+manzana</AUni> -<AUni ws="qvm-x-ame">+manzana</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.325" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d15b9ac7-d6a4-45c8-a5d9-88b3272f65a6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+manzana</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="59cfedbf-5db1-4b8f-8ea7-d36cb8a36021" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9f7f1ca8-0fbd-4c24-a56a-9dd7a1e46dbb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +manzana 
\entryTyp root 
\gENG apple 
\gSPN manzana 
\e +manzana 
\c N0 
\ach manza:na 
\akh manza:na 
\acl manza:na 
\akl manza:na 
\ame manza:na</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="c92d88c4-9393-43be-b6f5-c0196a1b5e6b" ownerguid="7a0cfaa7-f048-4a09-8320-52bf4b679ab9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="9a77016a-6e75-4ec5-8fcf-cc615b6f754b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c92de533-1e27-409f-b85c-3a18d0ed0bac" ownerguid="516d3a6d-7ac0-47d4-a64b-f2261cddb44c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.head</AUni> -<AUni ws="es">espigar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d4a0d47d-46df-46ba-b57d-7a19e448fba4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c930b877-43dd-497d-9351-a656605cabfa" ownerguid="ee6febac-1ca5-4c63-af23-ad64bb275b2f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rules</AUni> -<AUni ws="es">reglamento</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d59cb110-4fda-49c2-9f0a-ce0d6cb7832b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c931dded-3f19-41d2-8558-d87ce1db63c9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guecha</AUni> -<AUni ws="qvm-x-acl">guecha</AUni> -<AUni ws="qvm-x-akh">qecha</AUni> -<AUni ws="qvm-x-akl">qecha</AUni> -<AUni ws="qvm-x-ame">qicha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qitra</AUni> -<AUni ws="qvm-x-acl">*qitra</AUni> -<AUni ws="qvm-x-akh">*qitra</AUni> -<AUni ws="qvm-x-akl">*qitra</AUni> -<AUni ws="qvm-x-ame">*qitra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.216" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="249f00ac-0d7a-4490-ad55-8bf72040c910" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qitra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="56752325-45fb-4f78-9f48-beac1620c878" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="deb12555-6873-488f-ba0f-fca6d7cc2b6a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qitra 
\entryTyp root 
\gENG diarrhea 
\gSPN diaréa 
\e *qitra 
\c N0 
\ach guecha 
\akh qecha 
\acl guecha 
\akl qecha 
\ame qicha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="c9322f9e-e90a-4bf3-b7ad-4b8ca2367c08" ownerguid="cdc22bbf-313c-4c46-909b-7d17d29b5e85"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Lev 1.17 Nircurnami älanpita aptarcur ishcayman pulanpa gasharenga.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="c937e0f0-bb5e-4bba-bb73-8472c7ac729a" ownerguid="8d13a888-2604-473b-a573-c03db670c4ee"> -<Form> -<AUni ws="qvm-x-ach">jupay</AUni> -<AUni ws="qvm-x-acl">jupay</AUni> -<AUni ws="qvm-x-akh">jupay</AUni> -<AUni ws="qvm-x-akl">jupay</AUni> -<AUni ws="qvm-x-ame">hupay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c9386fdf-0006-4199-b684-9405298ab1f8" ownerguid="30e6b42c-6bbf-4659-99e7-aa4b8e68c9ce"> -<ExampleWords> -<AUni ws="en">goodness, morality, holiness, purity, righteousness, sanctification, virtue</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the quality of being good?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c93c7617-6e9c-4bfb-9f05-e6d196a6a818" ownerguid="de6b15d3-6409-4998-b03d-903133f4ad70"> -<ExampleWords> -<AUni ws="en">verse, chorus, theme, note, melody, harmony</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a part of a song?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c93cd471-356e-4dff-94ed-93c4c4005da4" ownerguid="955f2d12-877d-4c57-8b27-5a32a4a58ed4"> -<Form> -<AUni ws="qvm-x-ach">real</AUni> -<AUni ws="qvm-x-acl">real</AUni> -<AUni ws="qvm-x-akh">real</AUni> -<AUni ws="qvm-x-akl">real</AUni> -<AUni ws="qvm-x-ame">real</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="c93f4aef-cd1c-4ae5-9a7a-ab643f69ddb6" ownerguid="47feff41-ef58-4fb6-bb10-35d3c5c721fe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">left</AUni> -<AUni ws="es">izquierdo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="72e55588-c305-4179-892d-1e1dcf47151a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="c945146a-76bc-4f4b-baad-3884292eb7bc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lanpa</AUni> -<AUni ws="qvm-x-acl">lanpa</AUni> -<AUni ws="qvm-x-akh">lanpa</AUni> -<AUni ws="qvm-x-akl">lanpa</AUni> -<AUni ws="qvm-x-ame">lanpa</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.477" /> -<DateModified val="2022-10-16 15:16:51.133" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="23954545-f604-47ed-b087-dacdc1814125" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">ADV3</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7a075486-8619-4e92-af0d-d5a8ab8fe18e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2ce1e385-a5c5-418b-9f9f-6d9cc44d0ed6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx ADV3 
\entryTyp suffix 
\gENG ADV3 
\gSPN ADV3 
\e ADV3 
\c N0/R0 
\o 200 
\mp -PMonophthongized 
\ach lanpa 
\akh lanpa 
\acl lanpa 
\akl lanpa 
\ame lanpa 
\mcc ADV3 / PRT2 ~_</Run> -</AStr> -</Custom> -</rt> -<rt class="Segment" guid="c946f243-8a25-4400-9bd2-42227fa096c4" ownerguid="0c701f6a-8edb-4055-a94e-ca7f063c8d97"> -<Analyses> -<objsur guid="1701b5c0-0682-472d-8694-d9e2aa5f051e" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="CmDomainQ" guid="c9475db3-06a2-45ef-afa8-b4c4228a354c" ownerguid="5c091d8d-5bc4-40c3-8a30-2a08fb0794b8"> -<ExampleWords> -<AUni ws="en">hypnotize</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to one person causing another to be in an unusual state of consciousness?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c947e48d-84b1-47d6-8db3-e91abdf9cd6a" ownerguid="6bfb7813-3a7d-47e2-88e1-d54034c07e5d"> -<ExampleWords> -<AUni ws="en">good, wise, bad, bum steer, advisable, helpful, constructive, positive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words describe good or bad advice?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="c949151d-2f2c-4bb6-b8d4-e76ff276fab0" ownerguid="c552c8a3-e8fc-44e9-81f9-52ad272b6640"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="c94b01e7-d8ef-4ec5-8372-c14d19ae9d62"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ylapa</AUni> -<AUni ws="qvm-x-acl">ylapa</AUni> -<AUni ws="qvm-x-akh">ylapa</AUni> -<AUni ws="qvm-x-akl">ylapa</AUni> -<AUni ws="qvm-x-ame">ylapa</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.477" /> -<DateModified val="2022-10-16 15:16:36.32" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="38c9806d-deee-45af-8c6f-32a4531f668e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">ADV5</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3222ac38-9e08-4de2-8c2b-5a0c3db29c50" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="046fd04e-c64a-467b-98e9-bdcd72380f90" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx ADV5 
\entryTyp suffix 
\gENG ADV5 
\gSPN ADV5 
\e ADV5 
\c N0/R0 V1/R0 V2/R0 R0/R0 
\o 210 
\mp -PMonophthongized 
\ach ylapa 
\akh ylapa 
\acl ylapa 
\akl ylapa 
\ame ylapa 
\mp +foreshortens 
\mcc ADV5 / ADV ~_ 
\mcc ADV5 / INF.noI ~_ 
\mcc ADV5 / *kuya ~_</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="c94bb766-193f-41dc-ba56-db412d91c4a3" ownerguid="e9cc5558-3360-46bd-9ef6-89ad90140c0d"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tushulayquipagpis; uchcoglapis</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="c94eaa39-4ca3-4937-9fd8-4a242c9e79e8" ownerguid="2f16311f-c325-492c-a958-93c1f5ea057d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cut</AUni> -<AUni ws="es">cortar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9eb2db55-c39c-4f11-bc8c-525ceb6d1662" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c94f2e64-a270-400b-815b-5aefb359ed99" ownerguid="bb7c2722-353d-4fc1-bf9a-0cefcb5e4ab8"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c94fbdb1-cdb7-4feb-b879-436835116b28" ownerguid="ef860ee3-a4a5-4a42-b810-fdf41e35d151"> -<ExampleWords> -<AUni ws="en">Christian, brother, fellow believer, saint</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What is a person called who believes in the (Christian) religion?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c9564e5d-6fdc-4261-9a4c-3ad629531e5b" ownerguid="ef2aab61-f171-4aa2-bea2-308a8e343338"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="c956a98a-4c85-4c85-868d-f27f44bd6422" ownerguid="5e3bb9e5-fd70-4c5a-95a0-938bc4876a47"> -<Abbreviation> -<AUni ws="en">3.2.7.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to predicting the future--saying what you think will happen.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Predict</AUni> -</Name> -<Questions> -<objsur guid="af925757-3cfd-48ac-bcd9-2c69004d0fa0" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="147c2e58-9ae8-460f-8cab-bf04a668945d" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="c95b69ad-61a1-45e4-8a53-eb211d68e6fb" ownerguid="19439634-92c1-488b-97a5-2b15d95700b9"> -<Form> -<AUni ws="qvm-x-ach">lushwa; lushwä</AUni> -<AUni ws="qvm-x-acl">lushwa; lushwä</AUni> -<AUni ws="qvm-x-akh">lushwa; lushwä</AUni> -<AUni ws="qvm-x-akl">lushwa; lushwä</AUni> -<AUni ws="qvm-x-ame">lushwa; lushwä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="c95bb75a-d28d-460d-8b92-fd8d21b4bc1a" ownerguid="c13019df-58c1-47c2-b624-6d4907930152"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="c9610bc9-b4a4-49c8-bae6-184d4afe53d5" ownerguid="44710b2b-dbd3-4cfd-abe6-cebf7e5605f9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="c961c673-5541-4838-ac08-784562eacd89" ownerguid="ed6efe5f-8b62-419d-a01f-ffb8bf4ceb06"> -<Form> -<AUni ws="qvm-x-ach">aproba</AUni> -<AUni ws="qvm-x-acl">aproba</AUni> -<AUni ws="qvm-x-akh">aproba</AUni> -<AUni ws="qvm-x-akl">aproba</AUni> -<AUni ws="qvm-x-ame">aproba</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c963cab0-6ea6-4935-9c60-2e84fd4292f6" ownerguid="db895b5d-f779-4cbe-aefa-bc2315054920"> -<Form> -<AUni ws="qvm-x-ach">shogshi</AUni> -<AUni ws="qvm-x-acl">shogshi; shogshe</AUni> -<AUni ws="qvm-x-akh">shoqshi</AUni> -<AUni ws="qvm-x-akl">shoqshi; shoqshe</AUni> -<AUni ws="qvm-x-ame">shuqshi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="c964116f-8581-46ed-9c28-42316f94fb38" ownerguid="ef00129c-2860-41ad-bcc6-d36a2adffae5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="b715dec5-d6da-4da3-81d4-2ec11115175d" t="o" /> -<objsur guid="cb73df6d-c3a4-4067-bb3d-ec1df787d3a8" t="o" /> -<objsur guid="be095055-0e23-4e98-882c-3a0017bbd03d" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="02dbd7b1-4e4c-4dea-9d1d-cc496d3e4b59" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c9671ba6-e90a-46eb-8741-9d9030d6ea2c" ownerguid="b82c7ba0-9f4e-44da-bcd0-d30f5b224de5"> -<ExampleWords> -<AUni ws="en">analgesic, antacid, antibiotic, antidote, antihistamine, antiseptic, antitoxin, aspirin, barbiturate, cathartic, chloroquine, drops, eye drops, emetic, iodine, immunization, inoculation, lozenge, painkiller, paregoric, penicillin, prophylactic, purgative, sedative, sleeping pill, stimulant, sulfa, tranquilizer, transfusion, Tylenol, vaccine, wine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the names of particular types of medicine?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="c96ac1eb-12f2-47af-9e96-9d99fce7e8f5" ownerguid="24398eec-edd1-449a-ad36-d609be24a79e"> -<Abbreviation> -<AUni ws="en">7.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to receiving something from someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>57I Receive</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Receive</AUni> -</Name> -<Questions> -<objsur guid="22c84fcb-36ce-4b91-84c1-e01201077c74" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="c96b0b14-13d5-4068-8874-da1a88ac1371" ownerguid="0e590da7-c027-42e0-b580-f65686cee461"> -<ExampleWords> -<AUni ws="en">surprised, amazed, astonished, incredulous, startled, flabbergasted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels surprised?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="c96bfcaa-7b06-427c-8bbd-038dedbf412e" ownerguid="01441207-4935-49a5-a192-16d949f5606c"> -<ExampleWords> -<AUni ws="en">assistant coach, trainer, recruiter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What is the staff of a team called?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c96d8f4a-b4ce-4a37-99c3-165b553673de" ownerguid="de1b176a-89c6-453a-beef-640fe529340a"> -<Form> -<AUni ws="qvm-x-ach">hierbabuëna</AUni> -<AUni ws="qvm-x-acl">hierbabuëna</AUni> -<AUni ws="qvm-x-akh">hierbabuëna</AUni> -<AUni ws="qvm-x-akl">hierbabuëna</AUni> -<AUni ws="qvm-x-ame">hierbabuëna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="c96e7d50-3ac7-4309-803b-88f517ee4227" ownerguid="0ff4cbb1-904f-42fc-aaa7-30e6f45273d5"> -<Form> -<AUni ws="qvm-x-ach">pushcu</AUni> -<AUni ws="qvm-x-acl">pushcu; pushco</AUni> -<AUni ws="qvm-x-akh">pushku</AUni> -<AUni ws="qvm-x-akl">pushku; pushko</AUni> -<AUni ws="qvm-x-ame">pushku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="c9701102-9181-44ad-8b45-03bf0646c311" ownerguid="94253887-8eb0-4704-946f-98a465c513f7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="c97341c5-219d-4458-ad38-384b875d43d4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">achcu</AUni> -<AUni ws="qvm-x-acl">achcu; achco</AUni> -<AUni ws="qvm-x-akh">achku</AUni> -<AUni ws="qvm-x-akl">achku; achko</AUni> -<AUni ws="qvm-x-ame">achku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*atrku.v2</AUni> -<AUni ws="qvm-x-acl">*atrku.v2</AUni> -<AUni ws="qvm-x-akh">*atrku.v2</AUni> -<AUni ws="qvm-x-akl">*atrku.v2</AUni> -<AUni ws="qvm-x-ame">*atrku.v2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.870" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3796e854-8953-44b3-9756-f962c9f332de" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*atrku.v2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="95b11bcc-acc0-40db-ae9a-b51adb17c3ca" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3c57a5cc-61bc-4348-8c32-6dc77c827177" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *atrku.v2 
\entryTyp root 
\gENG grab 
\gSPN agarrar 
\e *atrku.v2 
\c V2 
\ach achcu 
\akh achku 
\acl achcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl achco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl achku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl achko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame achku</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="c973e727-1dd5-4b6b-add2-80da460b12d3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">curunya; curunya:</AUni> -<AUni ws="qvm-x-acl">curunya; curunya:</AUni> -<AUni ws="qvm-x-akh">kurunya; kurunya:</AUni> -<AUni ws="qvm-x-akl">kurunya; kurunya:</AUni> -<AUni ws="qvm-x-ame">kurunya; kurunya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kurunya:</AUni> -<AUni ws="qvm-x-acl">*kurunya:</AUni> -<AUni ws="qvm-x-akh">*kurunya:</AUni> -<AUni ws="qvm-x-akl">*kurunya:</AUni> -<AUni ws="qvm-x-ame">*kurunya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.210" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b5ec6e0e-f87f-4231-9655-8e6aa9043fea" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kurunya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8a7ae5c0-466d-46f8-b5bb-66ff9cc084c4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="24ac0a5d-4080-4bce-b752-c6df26e8891d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kurunya: 
\entryTyp root 
\gENG 
\gSPN 
\e *kurunya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach curunya foreshortened 
\ach curunya: 
\akh kurunya foreshortened 
\akh kurunya: 
\acl curunya foreshortened 
\acl curunya: 
\akl kurunya foreshortened 
\akl kurunya: 
\ame kurunya foreshortened 
\ame kurunya: 
\i NAM 2.10 ¡Runacuna pasaypa mantsacaptinmi shongunpis curun curunyan y gongorninpis sicsicyan!</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="c9741b97-ad50-465c-a4ca-b21d488f45fe" ownerguid="0037693a-ae42-4e5c-85f5-10a05482d4ee"> -<Abbreviation> -<AUni ws="en">9.1.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.680" /> -<DateModified val="2022-9-23 16:55:8.680" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is physical--that you can touch and see, and for words describing something that is non-physical--that you cannot touch or see.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79A Physical, Spiritual; 79B Natural, Spiritual</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Physical, non-physical</AUni> -</Name> -<Questions> -<objsur guid="7132cb2a-6696-40b7-8277-33033978013b" t="o" /> -<objsur guid="aefa687f-ebf0-4bd4-90d6-4e6e30e18cb5" t="o" /> -<objsur guid="634451d5-2979-45f1-a9c4-9c41670421e6" t="o" /> -<objsur guid="f64cb14d-42b0-41e5-b820-f5218ffda65d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="c976ff1b-f0ef-4625-99d8-d5c6dc0221fe" ownerguid="4a4780b0-3faf-4148-8382-3dcc08956c80"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">at.last</AUni> -<AUni ws="es">por.fin</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f6bfb8c0-7a87-462a-913c-843aa6e95181" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c9777f31-7d74-4129-9c1f-371fd36b7319" ownerguid="5d23894f-6fa9-4d32-9376-4445b87e906d"> -<Form> -<AUni ws="qvm-x-ach">yarpa</AUni> -<AUni ws="qvm-x-acl">yarpa</AUni> -<AUni ws="qvm-x-akh">yarpa</AUni> -<AUni ws="qvm-x-akl">yarpa</AUni> -<AUni ws="qvm-x-ame">yarpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="c977fb18-f3c9-46d4-abd9-bdebd90f7d0a"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Noqaqa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="c978d827-bb9e-4501-b87f-c1eb215435d1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tisun</AUni> -<AUni ws="qvm-x-acl">tisun</AUni> -<AUni ws="qvm-x-akh">tisun</AUni> -<AUni ws="qvm-x-akl">tisun</AUni> -<AUni ws="qvm-x-ame">tisun</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tizón</AUni> -<AUni ws="qvm-x-acl">+tizón</AUni> -<AUni ws="qvm-x-akh">+tizón</AUni> -<AUni ws="qvm-x-akl">+tizón</AUni> -<AUni ws="qvm-x-ame">+tizón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.936" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9ffd9617-7676-434c-b399-45da3c0f516f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tizón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c2e5f763-39fa-45d5-a666-f899fe9412af" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="df5bcf26-2a71-4cba-aba0-7c460a52dd86" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tizón 
\entryTyp root 
\gENG 
\gSPN 
\e +tizón 
\mp +assimilated 
\ach tisun 
\akh tisun 
\acl tisun 
\akl tisun 
\ame tisun 
\c N0 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="c97a2623-77b3-4522-a5a2-fbe9de9ddc89" ownerguid="4cefadbd-33c2-4397-bf5a-687d0600043f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">prosecutor</AUni> -<AUni ws="es">fiscal</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5b20a534-6bfd-49fc-867e-40acf541aa98" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="c97e8fe9-8680-4a8d-87cc-2c8dad01bd9c" ownerguid="6c7f0837-ac1e-4d41-8774-f8fc826cfd91"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sting</AUni> -<AUni ws="es">picar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dc806fe8-99c2-46c1-a006-ce70543a6406" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c97ee867-113d-4a81-aa57-1a7cdeff914e" ownerguid="999581c4-1611-4acb-ae1b-5e6c1dfe6f0c"> -<ExampleWords> -<AUni ws="en">blue, clear, black (night), cloudy, cloud filled, brilliant, dark, night sky, foreboding, stormy, dark, star studded</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe the appearance of the sky?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c980eee5-03a4-497e-b191-8fc70f45192b" ownerguid="42023b55-102a-4470-b229-d21ac3c08ec5"> -<Form> -<AUni ws="qvm-x-ach">pläza</AUni> -<AUni ws="qvm-x-acl">pläza</AUni> -<AUni ws="qvm-x-akh">pläza</AUni> -<AUni ws="qvm-x-akl">pläza</AUni> -<AUni ws="qvm-x-ame">pläza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="c982941c-0cff-47aa-9e08-5234a8e0d6e8" ownerguid="7524887a-5cf0-4459-96d1-fd8262bef7d4"> -<Abbreviation> -<AUni ws="en">6.2.1.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.383" /> -<DateModified val="2022-9-23 16:55:8.383" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to growing potatoes.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Growing potatoes</AUni> -</Name> -<Questions> -<objsur guid="a1e0698f-18f2-4778-bc7a-a6e9bcead3cd" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="c98630c7-8b70-4348-bbb2-c35faa58ce50" ownerguid="72a0a663-2f1a-4e3f-a573-ed580dae64e6"> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -<Sense> -<objsur guid="b197f38e-d2fb-4e9a-87df-e50eeb6a4b45" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="c987cbf8-9376-4cc4-94ca-04b0045a998a" ownerguid="81855f47-aa24-435d-a123-7dfe61c80702"> -<ExampleWords> -<AUni ws="en">be unreliable, untrustworthy, irresponsible, unfaithful, disloyal, treacherous, cheat on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a person who cannot be relied on to do what he should?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="c98b301f-0387-4fcd-bc85-12b5ed64803a"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Mahlónpa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="c98c3cc8-760a-42a3-884b-3a683b533bf8" ownerguid="a748588b-1138-4ea5-a007-18ea918f65c7"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="c98e17a7-d927-437f-b979-b101bd5a4b10" ownerguid="839b8c6e-eb74-4b98-aee3-5573c8ded9e8"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="c993a5f3-0ab4-4b7e-b7c0-d9f03d71bd3b" ownerguid="451a3659-8fc4-473e-8a9a-e1691fb4b9f8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c998dae3-45d2-4310-94ba-58e3a966c595" ownerguid="a086be2e-79f6-4ba1-9677-fb6af2a33cdf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">squeeze</AUni> -<AUni ws="es">exprimir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="30b376a1-3d37-4428-8970-8bcf4312a004" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="c99a9889-d250-4b7b-bdf6-b95bb3761d07" ownerguid="6f2499f2-4b04-481d-b053-8fdca016e056"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yarpa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yarpa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yarpa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yarpa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yarpa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="c9777f31-7d74-4129-9c1f-371fd36b7319" t="r" /> -</Morph> -<Msa> -<objsur guid="ec49278f-13c3-4a3f-8610-07ca758fe2a1" t="r" /> -</Msa> -<Sense> -<objsur guid="63d011ce-a69e-4122-9f69-4a3e4750c9c1" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="c99b9d55-4c5e-4b3e-a07b-8480c93d27c8" ownerguid="db227447-6405-47dd-b9a4-4391fcb29b80"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">reed.grass</AUni> -<AUni ws="es">carrizo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="64a99efc-4db2-46c4-aa86-9f1b9bb0d4b5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c99e4d87-d79f-4e12-a5f1-993dc7bc731f" ownerguid="bd31529c-ab67-419b-89a4-949aee8b3b11"> -<ExampleWords> -<AUni ws="en">act harshly, abrasive, abrupt, acrid, acrimonious, brute, bully, caustic, cruel, cruelty, demanding, exacting, forceful, grate, grim, hard, harsh, martial law, pugnacious, rigid, rough, severe, sharp, stern, stiff, stinging, strict, stringent, tough, unfavorable, unfeeling, ungentle, violent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to acting harshly?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="c99e81a5-3a4f-4e0c-802f-985c5188243c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pachi</AUni> -<AUni ws="qvm-x-acl">pachi; pache</AUni> -<AUni ws="qvm-x-akh">pachi</AUni> -<AUni ws="qvm-x-akl">pachi; pache</AUni> -<AUni ws="qvm-x-ame">pachi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*patri</AUni> -<AUni ws="qvm-x-acl">*patri</AUni> -<AUni ws="qvm-x-akh">*patri</AUni> -<AUni ws="qvm-x-akl">*patri</AUni> -<AUni ws="qvm-x-ame">*patri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.759" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c893c5cc-d68a-4ad5-935b-941ef797489c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*patri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fc0cefbc-0724-4354-9e48-ccfece9d7a30" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="887667e5-7384-4350-a148-a69866028185" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *patri 
\entryTyp root 
\gENG plant 
\gSPN sembrar 
\e *patri 
\c V2 
\mp +FinalI 
\ach pachi 
\akh pachi 
\acl pachi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pache +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pachi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pache +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pachi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="c99ecba4-4c1c-4384-b3e0-ce7c2154be91" ownerguid="636d70ed-cf52-4b74-8fa3-eab46fe5bab6"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="c99f92c0-b953-4668-abef-7d2b10f4a455" ownerguid="417346fe-16dc-4fb7-8989-1af5a412a09a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="c9a73f59-9e4a-44cb-957a-78232cc4eda7" ownerguid="4ba2b5d4-9029-49f5-830b-7cc384d5b68b"> -<Form> -<AUni ws="qvm-x-ach">gaushu</AUni> -<AUni ws="qvm-x-acl">gaushu; gausho</AUni> -<AUni ws="qvm-x-akh">qawshu</AUni> -<AUni ws="qvm-x-akl">qawshu; qawsho</AUni> -<AUni ws="qvm-x-ame">qawshu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c9a90ddb-98a0-4244-a7ea-828d2c240057" ownerguid="c27b87cf-1211-4df2-96b1-12c416edabbe"> -<ExampleWords> -<AUni ws="en">joke, pun, play on words, word play, riddle, jest, gag, wisecrack, witticism, pleasantry, banter, badinage, retort, repartee, riposte, ridicule, quip, one-liner, flash of wit, comeback, gag, crack</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something said humorously?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="c9aee4df-ac3e-4159-bd1a-060db1a5f070" ownerguid="f4491f9b-3c5e-42ab-afc0-f22e19d0fff5"> -<Abbreviation> -<AUni ws="en">3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to communication of all kinds.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33 Communication</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Communication</AUni> -</Name> -<OcmCodes> -<Uni>200 Communication</Uni> -</OcmCodes> -<Questions> -<objsur guid="7e7fc1f4-4cb1-45c4-8f0a-8e1604b0bd18" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="9efa7949-de15-499a-b382-4560e06c4fb4" t="o" /> -<objsur guid="05472990-3f51-40b3-bca8-df3cf383328b" t="o" /> -<objsur guid="bc96b3e3-6185-4925-b79e-8f0f9555bfb7" t="o" /> -<objsur guid="3160b7ad-e4e8-4a46-8e2e-d5e601969547" t="o" /> -<objsur guid="f4b77866-c607-43f0-b816-95459c269525" t="o" /> -<objsur guid="767aa167-af3d-4e11-a68b-ec31f9d2ef1a" t="o" /> -<objsur guid="70eac6be-66e8-4827-8f2f-d15427efff60" t="o" /> -<objsur guid="c4330001-83ca-485d-8b9b-09f7e1be60cc" t="o" /> -<objsur guid="cac1d7a8-7382-466e-ba4a-ba2bfe50f13b" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="c9b5f83e-529d-45af-949f-4cc6b0591b66" ownerguid="83adeb9d-c0be-4073-894d-913014420280"> -<Abbreviation> -<AUni ws="en">8.3.7.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to improving something--to make something better.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Improve</AUni> -</Name> -<Questions> -<objsur guid="44b8043f-c0df-4837-a739-9b785204fb05" t="o" /> -<objsur guid="a553a829-c310-45cb-bb95-ecb9a96dd537" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="10b6c417-d020-4318-a44a-ae69ea3eec5a" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="c9b82377-b8e2-4575-a00d-471fd1f0c78e" ownerguid="faa34db3-fb57-4fdc-b8c3-c40f97247910"> -<Form> -<AUni ws="qvm-x-ach">wicsu</AUni> -<AUni ws="qvm-x-acl">wicsu; wicsu; wicso</AUni> -<AUni ws="qvm-x-akh">wiksu</AUni> -<AUni ws="qvm-x-akl">wiksu; wiksu; wikso</AUni> -<AUni ws="qvm-x-ame">wiksu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="c9b8ecc1-a39d-4f42-b9c4-6a968934715b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tupu</AUni> -<AUni ws="qvm-x-acl">tupu; tupo</AUni> -<AUni ws="qvm-x-akh">tupu</AUni> -<AUni ws="qvm-x-akl">tupu; tupo</AUni> -<AUni ws="qvm-x-ame">tupu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tupu.v</AUni> -<AUni ws="qvm-x-acl">*tupu.v</AUni> -<AUni ws="qvm-x-akh">*tupu.v</AUni> -<AUni ws="qvm-x-akl">*tupu.v</AUni> -<AUni ws="qvm-x-ame">*tupu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.7" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2a34e7c1-8d72-4c77-946c-8a8f431bd4b3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tupu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f3dcb349-c1b6-400e-a79f-cd9e2ae00e9b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="41f66ae9-8c1f-4787-a423-7549db98114c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tupu.v 
\entryTyp root 
\gENG measure 
\gSPN medir 
\e *tupu.v 
\c V2 
\ach tupu 
\akh tupu 
\acl tupu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tupo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tupu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tupo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tupu 
\mcc *tupu.v / ~_ 2IMP.1 [just] [evid]</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="c9bccc0f-4508-46b4-932d-9c9e69ed6f26" ownerguid="1ca9c079-445d-44ea-9788-292e84a4fe16"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">disappear</AUni> -<AUni ws="es">desaparecer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="30e848f3-25c6-4a09-922e-4177b8387fef" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="c9bcf862-8dc9-4c35-a7af-cfbbb6fffee5" ownerguid="320dd3d3-c487-4397-8e6e-7af6ccac5723"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c9c1004f-8980-4c91-937d-40f4817d374b" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<ExampleWords> -<AUni ws="en">bigger, biggest, larger, largest, greater, greatest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to being bigger than another thing?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c9c2dbeb-bead-45f7-8061-8bbf73c1c7f3" ownerguid="88829161-f325-46c5-afa1-4c3ad14c987b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="c9c70909-3725-4c29-846d-f7b5b1856037" ownerguid="6c6259f0-eca6-4a30-8662-eedbaf293527"> -<ExampleWords> -<AUni ws="en">change plans, change your mind, rethink, have second thoughts, backtrack, U-turn</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to changing a decision?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c9c91f52-78a4-4012-8222-74d9d2018652" ownerguid="7f73f730-304d-4edf-a19a-ce9797d4545a"> -<Form> -<AUni ws="qvm-x-ach">blanquea</AUni> -<AUni ws="qvm-x-acl">blanquea</AUni> -<AUni ws="qvm-x-akh">blanquea</AUni> -<AUni ws="qvm-x-akl">blanquea</AUni> -<AUni ws="qvm-x-ame">blanquea</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="c9c9d65a-aa7d-4fc5-b17d-f42ac1c4454c" ownerguid="2e2e4992-66b2-4e84-8f9b-84ee7d598ccd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ae68497d-80be-4de6-8c6c-64dceb31409b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="c9d7397f-fcea-4730-8e3c-ba9c8da88939" ownerguid="758e1195-e56f-4071-a337-81810bf63391"> -<Form> -<AUni ws="qvm-x-ach">mushinga</AUni> -<AUni ws="qvm-x-acl">mushinga</AUni> -<AUni ws="qvm-x-akh">mushinga</AUni> -<AUni ws="qvm-x-akl">mushinga</AUni> -<AUni ws="qvm-x-ame">mushinga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="c9da4369-8c6f-47c3-bab4-d59d0de8d022" ownerguid="4bcf81e9-1edc-4872-a8d3-b0f710b56b30"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="5c2439fc-5721-4980-bd50-258243f8c61d" t="o" /> -<objsur guid="53c92514-fda1-4ed1-ab12-26c02259fe9f" t="o" /> -<objsur guid="f0f683a6-3238-4377-bfb8-17c15c20af9d" t="o" /> -<objsur guid="52bcb4ad-0e29-4979-a34e-7e9ac184400c" t="o" /> -<objsur guid="9752ea82-ac5f-421a-bb3e-1cb3d5c7865c" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="c9dae705-667f-42de-bc88-a7799a031e3b" ownerguid="a345d090-14e2-4897-9186-debcb05ab27c"> -<ExampleWords> -<AUni ws="en">follow, come next, be after, be next, succeed, come after, go after, go next, ensue</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to an event happening next after another event?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c9dc3dbf-09af-4ad5-b2f6-dd89c0e8202d" ownerguid="4a094d70-797c-49b3-b118-7267cb273e87"> -<Form> -<AUni ws="qvm-x-ach">ima</AUni> -<AUni ws="qvm-x-acl">ima</AUni> -<AUni ws="qvm-x-akh">ima</AUni> -<AUni ws="qvm-x-akl">ima</AUni> -<AUni ws="qvm-x-ame">ima</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="c9de20a9-2d8c-43ca-8653-71e2a0df96e2" ownerguid="c849a559-cbc7-4b16-b7e7-8b8d19483c69"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="c9df34b1-7f6c-4b20-849f-ec10b8f35cd1" ownerguid="4098899a-0ad0-4d71-9f9f-b99d5ba2e0d5"> -<ExampleWords> -<AUni ws="en">food, sustenance, nourishment, intake, nutrition, nutritional, non-nutritional, diet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to food?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="c9e2a6df-4ba1-4a92-b708-91d2eba961ef" ownerguid="48d7bd4b-8a21-4793-ac0c-2738af616d15"> -<Form> -<AUni ws="qvm-x-ach">concubïna</AUni> -<AUni ws="qvm-x-acl">concubïna</AUni> -<AUni ws="qvm-x-akh">concubïna</AUni> -<AUni ws="qvm-x-akl">concubïna</AUni> -<AUni ws="qvm-x-ame">concubïna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c9e34a39-66f1-47ba-bf11-3e854375bafd" ownerguid="6bfb7813-3a7d-47e2-88e1-d54034c07e5d"> -<ExampleWords> -<AUni ws="en">advise, say someone should do something, give advice, recommend, urge, offer advice, advocate, commend, counsel, present, promote, propose, recommend a course of action, guide, instruct, submit, make a motion, exhort</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to giving someone advice?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="c9e7cdc5-421a-45f1-9622-e41bb95d84a3" ownerguid="89c55461-5ea8-47a5-b345-0f3bc0a98939"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="c9ebb623-b54a-42c5-8b31-eb17c0c5debe" ownerguid="718d0c91-5938-4f5c-a690-f0b8b0c7fb48"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a6e9bfc3-a16f-4a03-abd9-bbd14ebfa411" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="c9f1fad8-d75d-445d-995b-c4a1e124c9c0" ownerguid="8216627d-9d20-4a5c-8bfd-0709c16e7a08"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">We need more food.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">more, extra, another, added, additional, further, supplementary, spare</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to more of something in addition to what is already there?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="c9f610fb-5df7-4962-a4e2-63a53d8a18d5"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">runakunaqa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="Segment" guid="c9f634cd-c4e4-4e36-9972-dd43a1180665" ownerguid="ae306a4b-bfda-4a91-a1a9-018c97a61967"> -<Analyses> -<objsur guid="0af61d82-50f4-4579-8344-e9dced6b8dea" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="c9f6e85c-0709-4984-bb0a-c7d1bb5a2615" ownerguid="fa36de8f-9f3a-47e7-8fea-07834ebcecd8"> -<Form> -<AUni ws="qvm-x-ach">media</AUni> -<AUni ws="qvm-x-acl">media</AUni> -<AUni ws="qvm-x-akh">media</AUni> -<AUni ws="qvm-x-akl">media</AUni> -<AUni ws="qvm-x-ame">media</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="c9f700da-c64f-4d6d-a095-8b0bfe4927bf" ownerguid="0efe342d-4969-4bd1-95be-556f6c62adfc"> -<ExampleWords> -<AUni ws="en">conform</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to conforming to the behavior of others?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="c9fe47df-5dd1-4007-b1f8-e8aebbea094c" ownerguid="5ec4cb19-0127-4e01-8d32-31703728bbcb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="r" /> -</Morph> -</rt> -<rt class="CmDomainQ" guid="ca006a12-95d6-40a4-94fb-435468bba899" ownerguid="7d7bc686-faf5-484b-8519-b2529ac581bf"> -<ExampleWords> -<AUni ws="en">rice paddy, transplant seedling</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to growing rice?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ca033c05-978d-4618-8a90-19b2f08cb45f" ownerguid="aa0cf39b-b6de-4142-902e-fddeaa4771fa"> -<Form> -<AUni ws="qvm-x-ach">días; dïas</AUni> -<AUni ws="qvm-x-acl">días; dïas</AUni> -<AUni ws="qvm-x-akh">días; dïas</AUni> -<AUni ws="qvm-x-akl">días; dïas</AUni> -<AUni ws="qvm-x-ame">días; dïas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="ca03e885-a9cb-498f-8445-9d66aa33c58b" ownerguid="f94d5da3-c02d-4742-98e5-6e7159499780"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cholera</AUni> -<AUni ws="es">colera</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8a5d195a-c9c8-4b98-b9fc-ed431c4260c5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ca03f238-6060-43be-b2a8-aba6f25a6a03" ownerguid="578baf67-d1cb-473e-aa7d-631e069a99a9"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="ca047b5b-2d4b-4304-9300-2d75e3328037" ownerguid="ef04e630-fd6e-4db8-aed8-e744a4b9f144"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="ca07312d-49a1-4d8c-8591-706cb7d5a595" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="ca06cb7d-a71a-411d-ab91-706861609bb5" ownerguid="e0b00a13-8648-4635-afe5-0be3c0b6a05c"> -<ExampleWords> -<AUni ws="en">maybe, perhaps</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that the speaker is not certain about a suggestion, plan, or idea?</AUni> -</Question> -</rt> -<rt class="MoInflAffMsa" guid="ca07312d-49a1-4d8c-8591-706cb7d5a595" ownerguid="1610a4f0-ffe4-41ad-8fa2-90f1615ece63"> -<InflFeats> -<objsur guid="e81d525b-5e61-44a6-887a-ad7da788469c" t="o" /> -</InflFeats> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="77569715-032a-48c9-97d9-e9802fb13f2e" t="r" /> -</Slots> -</rt> -<rt class="LexSense" guid="ca0bef58-cc5e-43db-a6a6-49ee5e4ba788" ownerguid="15648f4a-8566-4153-af3e-ec3cdb0b1a6b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">traveler</AUni> -<AUni ws="es">viajero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b8fec924-fedb-4e03-8a2b-ba60c93e15db" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="ca0cc954-9f14-4afb-bbfc-a2aaddd2875f" ownerguid="1545d615-742e-483c-8304-b07c7694bbcf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">jacket</AUni> -<AUni ws="es">chaleco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6e39c922-9d0f-4a25-9275-69ab40e852d8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="ca0e214f-8d98-4c92-8bed-174abf85a1f0" ownerguid="a1474cc6-bb54-4375-bdbf-aaa35816a8cd"> -<Form> -<AUni ws="qvm-x-ach">prenda</AUni> -<AUni ws="qvm-x-acl">prenda</AUni> -<AUni ws="qvm-x-akh">prenda</AUni> -<AUni ws="qvm-x-akl">prenda</AUni> -<AUni ws="qvm-x-ame">prenda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="ca0f9b9b-31fc-4ae6-9563-abedc4a5af98" ownerguid="116bef13-e80f-4a15-bb0a-bb7b3794ffac"> -<Abbreviation> -<AUni ws="en">9.5.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that mark the beneficiary of the Patient of an activity. The Patient is often expressed as the object of a sentence. In the sentence "John built a house for his parents," the house is the Patient. It is the house that benefits the parents, not the building of the house.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Beneficiary (of a patient)</AUni> -</Name> -<Questions> -<objsur guid="fedd1cbf-d97b-4854-91a5-248e777b4628" t="o" /> -<objsur guid="4beeb62f-004b-4350-98c7-4c2c1fcd2adf" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="ca148449-00ca-4a64-9788-0f06174c39d9" ownerguid="97baae03-212c-446c-9059-214d198cce9d"> -<Form> -<AUni ws="qvm-x-ach">suëru</AUni> -<AUni ws="qvm-x-acl">suëru; suëru; suëro</AUni> -<AUni ws="qvm-x-akh">suëru</AUni> -<AUni ws="qvm-x-akl">suëru; suëru; suëro</AUni> -<AUni ws="qvm-x-ame">suëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ca154ebf-5df1-482b-a0ba-0bd1de8148be" ownerguid="f2d0f288-5bbe-4fa0-9e8f-ddcc74891701"> -<ExampleWords> -<AUni ws="en">bewail, crying, groan, moan, sigh, wail, weep</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What noises do people make to show they are mourning?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ca1611ce-af5e-4e8a-82a4-1582bf483ce5" ownerguid="0ac5e5f9-e7fe-4d37-a631-eab1ceb1f8ae"> -<ExampleWords> -<AUni ws="en">face, mountainside, hillside, slope, shoulder, foothill, saddle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the side of a mountain?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ca17cb83-a264-420c-bb17-51fcda8a0c1a" ownerguid="0aae1951-4d5b-45a0-853c-1839764c9862"> -<ExampleWords> -<AUni ws="en">short, dumpy, dwarfed, low, runty, shrimpy, squat, squatty, stumpy, low</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is short?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ca19e30d-4539-4dd7-b911-5800e49e1f46" ownerguid="b34aa77d-24ec-4ef0-8b35-03070bce69ea"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spirit</AUni> -<AUni ws="es">espíritu</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="71f4fe1b-cd85-4f4d-bcd5-ad02c52458de" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ca1d87b1-26e4-4706-a5d9-3cd9de0fb3c4" ownerguid="76e2d5d6-91af-420a-bd6b-7e6896cc8b4c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ca221679-571b-40dd-be8d-11e19beb6392" ownerguid="7575d654-e528-4fe0-85eb-481b0e6654bb"> -<ExampleWords> -<AUni ws="en">start, turn on, switch on, ignition</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to starting a machine?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ca24321d-7d08-4a88-9a97-398f38f7e0c0" ownerguid="536a2d3e-2303-43bc-bf53-379131eb5730"> -<ExampleWords> -<AUni ws="en">red, beet-red, blood-red, blush, brick-red, cardinal, carmine, carnelian, cherry, Chinese red, claret, coral, crimson, fiery, fire-red, flame-colored, incarnadine, lobster, lobster-colored, madder, pink, puce, roan, rose, rose-colored, roseate, rosy, rouge, ruby-red, ruddy, scarlet, vermilion, wine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the shades of red?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ca268616-0959-400d-9ffc-5788c0479cec" ownerguid="734aa088-a83d-40d3-aadc-4defc1764631"> -<Form> -<AUni ws="qvm-x-ach">chichipa</AUni> -<AUni ws="qvm-x-acl">chichipa</AUni> -<AUni ws="qvm-x-akh">chichipa</AUni> -<AUni ws="qvm-x-akl">chichipa</AUni> -<AUni ws="qvm-x-ame">chichipa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="ca26f1b9-f8cf-4106-a1b2-e3bc5ca10a48" ownerguid="1162ea4b-fa62-482c-93e3-ba6a247c22c9"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">LEV 22.22 uywata apamorqa ama apamutsuntsu qaprata, ... ni qeri ushashtapis.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="ca2a24f3-248a-46dc-aafa-eb6f23f3995f" ownerguid="fa4a1ab3-a5a1-4046-bc34-5cb868ada3f2"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">nin</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">nin</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">nin</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">nin</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nin</Run> -</AStr> -</Form> -<Morph> -<objsur guid="18b86caf-a560-48d6-ab1d-03882ed1fbd7" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="ca2ab56e-37ff-436a-a00b-ec3201f65357" ownerguid="8c5e3582-e7bd-4461-9dad-60c70cebbf75"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="ca2f1e0d-320f-44ce-91d1-6a51fe3bb6c3" ownerguid="127527f1-046d-452b-9a96-918251333a9a"> -<Form> -<AUni ws="qvm-x-ach">jajayla</AUni> -<AUni ws="qvm-x-acl">jajayla</AUni> -<AUni ws="qvm-x-akh">jajayla</AUni> -<AUni ws="qvm-x-akl">jajayla</AUni> -<AUni ws="qvm-x-ame">hahayla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="ca2f88ed-5d2b-4d01-baf7-e6ca8e0b8879" ownerguid="1e2f084c-71ac-42d4-8200-995f1be5d2c4"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="97b2eedd-af8e-4d19-a47a-6d974081935e" t="o" /> -<objsur guid="91a79ec7-fd85-4665-b9bd-5c522c4d6213" t="o" /> -<objsur guid="dbd47d81-a6cb-40c2-b53c-958924d71d2c" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="ca2f8cf3-3b7e-441f-8dc1-9260d3b95fd8" ownerguid="3b28c9b3-6371-4999-a063-46492b02026c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="fe3cb348-3a61-4661-bb7b-16196d128efb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="ca30a86f-dfa7-4d8c-a3a5-0c7981691e17"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ro:llu</AUni> -<AUni ws="qvm-x-acl">ro:llu; ro:llu; ro:llo</AUni> -<AUni ws="qvm-x-akh">ro:llu</AUni> -<AUni ws="qvm-x-akl">ro:llu; ro:llu; ro:llo</AUni> -<AUni ws="qvm-x-ame">ro:llu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rollo</AUni> -<AUni ws="qvm-x-acl">+rollo</AUni> -<AUni ws="qvm-x-akh">+rollo</AUni> -<AUni ws="qvm-x-akl">+rollo</AUni> -<AUni ws="qvm-x-ame">+rollo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.378" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c46810ce-f798-4226-8152-c8d4227a6e1c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rollo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4e5d0c26-4257-4d3b-bc4b-be8f9e0b859e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0e2bf87c-6940-44f3-bd62-fac6718d7c7c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rollo 
\entryTyp root 
\gENG scroll 
\gSPN 
\e +rollo 
\c N0 
\ach ro:llu 
\akh ro:llu 
\acl ro:llu / _# 
\acl ro:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ro:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ro:llu / _# 
\akl ro:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ro:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ro:llu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ca328b05-cfbd-4c55-8463-13e237905f32"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">posta</AUni> -<AUni ws="qvm-x-acl">posta</AUni> -<AUni ws="qvm-x-akh">posta</AUni> -<AUni ws="qvm-x-akl">posta</AUni> -<AUni ws="qvm-x-ame">posta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+posta</AUni> -<AUni ws="qvm-x-acl">+posta</AUni> -<AUni ws="qvm-x-akh">+posta</AUni> -<AUni ws="qvm-x-akl">+posta</AUni> -<AUni ws="qvm-x-ame">+posta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.909" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d3c3c1f0-8ad7-4128-b41a-595984c9880d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+posta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5936219b-0ba3-4e93-a77b-1f444f98eba0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3f154064-ef0c-4aa2-b666-054ea036ad14" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +posta 
\entryTyp root 
\gENG post 
\gSPN posta 
\e +posta 
\c N0 
\ach posta 
\akh posta 
\acl posta 
\akl posta 
\ame posta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ca346c56-dac9-415c-b122-83f536a0ff47" ownerguid="1088cc2f-83ae-4911-8018-401a745dcfd5"> -<ExampleWords> -<AUni ws="en">last night</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the night before this one?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="ca34fbb8-44db-4e14-9a62-e483dd3db481" ownerguid="4bcf81e9-1edc-4872-a8d3-b0f710b56b30"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="52f2ad0a-d733-47d9-b29b-a20c608972e4" t="o" /> -<objsur guid="8267d3f1-078f-4920-aeba-6b3dbc46038c" t="o" /> -<objsur guid="a5dc6db0-b7c0-4f11-a091-34c72060e8b8" t="o" /> -<objsur guid="7c1899f6-6334-4a52-a1dc-987007431128" t="o" /> -<objsur guid="fdca1829-63d1-42f4-93d6-3a279b242068" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="ca350b97-6057-46dc-8649-558ebfbc9d43" ownerguid="f425d6e1-3b81-4a76-98ae-9b14d5590058"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="ca36a099-d6f1-4c77-ae86-57de3c10d9b2" ownerguid="3c951962-45d2-46ac-b797-1042e9081ca0"> -<Form> -<AUni ws="qvm-x-ach">campeonätu</AUni> -<AUni ws="qvm-x-acl">campeonätu; campeonätu; campeonäto</AUni> -<AUni ws="qvm-x-akh">campeonätu</AUni> -<AUni ws="qvm-x-akl">campeonätu; campeonätu; campeonäto</AUni> -<AUni ws="qvm-x-ame">campeonätu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ca3c1975-227e-4625-86e1-240d725c6377" ownerguid="ce6a862d-a4bb-4378-b14d-439806870c41"> -<ExampleWords> -<AUni ws="en">unlucky, with my luck, just my luck, jinxed, born under a bad star, cursed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who always has bad luck?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ca3e11c8-b4c8-4a97-b97e-1eba0c708fa6" ownerguid="32bebe7e-bdcc-4e40-8f0a-894cd6b26f25"> -<ExampleWords> -<AUni ws="en">wholesome, nutritious, nourishing, healthful</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe food that makes you healthy?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ca3e2a0a-23f1-41ff-8267-6f7944da231f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">goshta</AUni> -<AUni ws="qvm-x-acl">goshta</AUni> -<AUni ws="qvm-x-akh">qoshta</AUni> -<AUni ws="qvm-x-akl">qoshta</AUni> -<AUni ws="qvm-x-ame">qushta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qushta.v</AUni> -<AUni ws="qvm-x-acl">*qushta.v</AUni> -<AUni ws="qvm-x-akh">*qushta.v</AUni> -<AUni ws="qvm-x-akl">*qushta.v</AUni> -<AUni ws="qvm-x-ame">*qushta.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.892" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8320dec8-f247-4613-98b9-f13c309c0112" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qushta.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="827b79c4-8606-47f5-b944-18a1dcf50d3d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="05b180cd-a269-45fa-8c67-1d3aa4c6356b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qushta.v 
\entryTyp root 
\gENG to.smoke 
\gSPN ahumar 
\e *qushta.v 
\c V1 
\ach goshta 
\akh qoshta 
\acl goshta 
\akl qoshta 
\ame qushta 
\i NUM 16.40 Tsaynoqpami Aarónpita miraqkunala 
\nd Tayta Diospa 
\nd* nawpancho qoshtatsinanpaq karkaykan. 
\mcc *qushta.v / ~_ [y]</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="ca3eb40c-a1c0-461c-90b7-00b57a691b56" ownerguid="8ad49531-ca06-44d4-9792-1a8730396f58"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="ca43d0e5-7f0b-4a34-b512-ef174cfe5b3d" ownerguid="34a00b5a-dd25-4b0e-96d4-0f7cad0a9ffd"> -<Form> -<AUni ws="qvm-x-ach">salüdu</AUni> -<AUni ws="qvm-x-acl">salüdu; salüdu; salüdo</AUni> -<AUni ws="qvm-x-akh">salüdu</AUni> -<AUni ws="qvm-x-akl">salüdu; salüdu; salüdo</AUni> -<AUni ws="qvm-x-ame">salüdu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="ca443be3-3ee1-42c3-9d91-3f2ea02ecdc1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">trompe:ta</AUni> -<AUni ws="qvm-x-acl">trompe:ta</AUni> -<AUni ws="qvm-x-akh">trompe:ta</AUni> -<AUni ws="qvm-x-akl">trompe:ta</AUni> -<AUni ws="qvm-x-ame">trompe:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+trompeta</AUni> -<AUni ws="qvm-x-acl">+trompeta</AUni> -<AUni ws="qvm-x-akh">+trompeta</AUni> -<AUni ws="qvm-x-akl">+trompeta</AUni> -<AUni ws="qvm-x-ame">+trompeta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.149" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="df73e013-8bbc-4417-a044-63c6d9d1e1dd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+trompeta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="af32730e-4945-45f3-b980-4d93b2a6fcff" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ccb42c18-ed5b-4bbf-901d-ff4a1a1d092b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +trompeta 
\entryTyp root 
\gENG trumpet 
\gSPN trompeta 
\e +trompeta 
\c N0 
\ach trompe:ta 
\akh trompe:ta 
\acl trompe:ta 
\akl trompe:ta 
\ame trompe:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="ca448d29-a414-4e20-a8d4-1ab480d87c6a" ownerguid="80f0945b-9e56-4379-98ce-00c0ef528aec"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoInflAffixSlot" guid="ca45d090-0c3b-4e36-9a40-58963588cdaf" ownerguid="86ff66f6-0774-407a-a0dc-3eeaf873daf7"> -<Name> -<AUni ws="en">pluralizer</AUni> -</Name> -<Optional val="True" /> -</rt> -<rt class="MoInflAffMsa" guid="ca465905-9975-4c86-9a1a-eaedda2e6838" ownerguid="d9d51c58-ecff-4e68-ba88-c5c96083536b"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="257de7fb-dab6-4b87-848b-3fbb8f5c3e04" t="r" /> -</Slots> -</rt> -<rt class="MoStemMsa" guid="ca47964b-09a0-45fb-baa8-9f2e7112641d" ownerguid="a35b7fd1-8427-492e-89f7-500f3e75b449"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="ca48386d-293f-4452-a489-d179042da11c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cushi</AUni> -<AUni ws="qvm-x-acl">cushi; cushi; cushe</AUni> -<AUni ws="qvm-x-akh">kushi</AUni> -<AUni ws="qvm-x-akl">kushi; kushi; kushe</AUni> -<AUni ws="qvm-x-ame">kushi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kushi.r</AUni> -<AUni ws="qvm-x-acl">*kushi.r</AUni> -<AUni ws="qvm-x-akh">*kushi.r</AUni> -<AUni ws="qvm-x-akl">*kushi.r</AUni> -<AUni ws="qvm-x-ame">*kushi.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.23" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="00594ecc-ab6e-444b-bf29-92b11f39b488" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kushi.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b4aa2d66-88f8-4488-b089-26a4c60515bc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b67284eb-3373-4858-a5f5-e2f2589d7f83" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kushi.r 
\entryTyp root 
\gENG happily 
\gSPN con.alegre 
\e *kushi.r 
\c R0 
\mp +FinalI 
\ach cushi 
\akh kushi 
\acl cushi / _# 
\acl cushi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cushe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kushi / _# 
\akl kushi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kushe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kushi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="ca495e57-a8e0-4294-bfe3-7b7995dc96c7" ownerguid="3ea4c495-b837-4310-8741-38d89fa63e0b"> -<Abbreviation> -<AUni ws="en">9.4.4.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.700" /> -<DateModified val="2022-9-23 16:55:8.700" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that you think something is unlikely to be true or to happen.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Don't think so, doubt it</AUni> -</Name> -<Questions> -<objsur guid="72fb62f7-80ac-4a2f-bd47-2d8940089451" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="ca4bd85a-6451-45a6-ba61-9fd7b6c487bf" ownerguid="8bc2c340-00f0-4d24-aa24-1fde6cbe3bdf" /> -<rt class="LexSense" guid="ca4c6b64-966b-43b2-9473-49c2f452fcca" ownerguid="17c00a73-726d-4981-8444-1e4b0af7baf4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">too.much</AUni> -<AUni ws="es">demasiado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c74b5057-b070-4d31-9c4b-8cb70339dc76" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="ca4cf49f-e67c-4c4f-a78b-9979377ad1e8" ownerguid="19a947fb-c6bb-494e-a88d-5bbb9b4965fe"> -<Form> -<AUni ws="qvm-x-ach">pusha</AUni> -<AUni ws="qvm-x-acl">pusha</AUni> -<AUni ws="qvm-x-akh">pusha</AUni> -<AUni ws="qvm-x-akl">pusha</AUni> -<AUni ws="qvm-x-ame">pusha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ca4db0c7-b0b7-4f96-82d1-4f76ee43725d" ownerguid="b844d2f8-d3ef-4605-b038-8bc0a2cff0af"> -<ExampleWords> -<AUni ws="en">taller, tallest, tower over, tower above, dwarf (v), dominate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to being taller than another thing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ca4e7b43-acb1-4908-8f7f-f6a120db7b3a" ownerguid="f0de6c5a-3df6-4483-8c63-2d8fcd6c97be"> -<ExampleWords> -<AUni ws="en">starving, malnourished, anemic, emaciated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who doesn't have enough food?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="ca511a0c-5628-4726-8a6e-aa9fa3b73bfc" ownerguid="85214614-ab45-4805-9014-092750d47511"> -<Abbreviation> -<AUni ws="en">4.7.5.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to testifying in a court of law.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33T Witness, Testify</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Witness, testify</AUni> -</Name> -<Questions> -<objsur guid="f68fd547-b350-44bc-8101-0f15d7f09cc3" t="o" /> -<objsur guid="5335fdc3-484a-4709-a029-ee0b30d7a4ba" t="o" /> -<objsur guid="cf8a6f93-5f2a-4391-ad08-b50115d7dcda" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="ca530a4b-6e85-492b-933b-376c514a98d5" ownerguid="d613ef1c-15ea-47ca-b23d-29b3c1676195"> -<Form> -<AUni ws="qvm-x-ach">gauga</AUni> -<AUni ws="qvm-x-acl">gauga</AUni> -<AUni ws="qvm-x-akh">qawqa</AUni> -<AUni ws="qvm-x-akl">qawqa</AUni> -<AUni ws="qvm-x-ame">qawqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ca560fdc-86c5-4d61-a54c-814903729804" ownerguid="9f4a97e7-74f2-4b23-96c0-40261e2065a3"> -<Form> -<AUni ws="qvm-x-ach">perga</AUni> -<AUni ws="qvm-x-acl">perga</AUni> -<AUni ws="qvm-x-akh">perqa</AUni> -<AUni ws="qvm-x-akl">perqa</AUni> -<AUni ws="qvm-x-ame">pirqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ca57b56e-fabd-4831-bb21-1ca19507bbd5" ownerguid="38c34e04-c76c-4c5e-b3d1-7d98e7fda0ad"> -<Form> -<AUni ws="qvm-x-ach">wancu</AUni> -<AUni ws="qvm-x-acl">wancu; wancu; wanco</AUni> -<AUni ws="qvm-x-akh">wanku</AUni> -<AUni ws="qvm-x-akl">wanku; wanku; wanko</AUni> -<AUni ws="qvm-x-ame">wanku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ca58b143-61b9-4e7f-a7c9-387ecf479bd4" ownerguid="8597827b-12ba-4f7b-a26e-9b72a45af369"> -<Form> -<AUni ws="qvm-x-ach">pichu</AUni> -<AUni ws="qvm-x-acl">pichu; pichu; picho</AUni> -<AUni ws="qvm-x-akh">pichu</AUni> -<AUni ws="qvm-x-akl">pichu; pichu; picho</AUni> -<AUni ws="qvm-x-ame">pichu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiGloss" guid="ca59eacf-a5bd-47b6-9a1d-42fd1ce9fe01" ownerguid="365fdc2e-9999-4aaa-aa02-af53dd9d0e2e"> -<Form> -<AUni ws="en">daughter</AUni> -<AUni ws="es">hija</AUni> -</Form> -</rt> -<rt class="LexExampleSentence" guid="ca5d6401-7fea-4c28-9b28-a33722198ce7" ownerguid="f46b3f6f-33c4-42b1-9b7f-638e446368a7"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 3.21 Tsauraga riccharcamur chuchunäpäga wanushga wamralana oglanëcho caycashga.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="ca5e766a-c3f9-40e4-a0c3-c00275442323" ownerguid="6f01b67c-33a0-4ed3-8205-f868e97a1a3a"> -<ExampleWords> -<AUni ws="en">go abroad, go overseas</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to traveling to another country?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ca61a29f-cf92-4b84-8474-bddc10eb9dde" ownerguid="26b97047-edb1-44e9-8c7b-463de9cfbe78"> -<ExampleWords> -<AUni ws="en">sheep</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to sheep?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ca6248f9-3913-4da0-9764-e1d0684d9071" ownerguid="297f69f1-160e-442f-be7b-efcb44722b9c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a256ddf0-fc9e-43c9-a272-6c32471967f5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="ca66291b-0046-4142-a4d4-d7baf284d121"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cauru</AUni> -<AUni ws="qvm-x-acl">cauru; cauro</AUni> -<AUni ws="qvm-x-akh">kawru</AUni> -<AUni ws="qvm-x-akl">kawru; kawro</AUni> -<AUni ws="qvm-x-ame">kawru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kawru</AUni> -<AUni ws="qvm-x-acl">*kawru</AUni> -<AUni ws="qvm-x-akh">*kawru</AUni> -<AUni ws="qvm-x-akl">*kawru</AUni> -<AUni ws="qvm-x-ame">*kawru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.973" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c6ef8f11-8d89-4574-b061-1a1c7d466134" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kawru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="625441f0-aa9d-44e3-bb4a-903755340990" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="49c26ddb-4bc4-462c-ad14-406d006bbf9c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kawru 
\entryTyp root 
\gENG wet.cold 
\gSPN frio.mojado 
\e *kawru 
\c V1 
\ach cauru 
\akh kawru 
\acl cauru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl cauro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kawru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kawro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kawru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ca68c0d1-26a3-4197-9800-5c98ed55a323" ownerguid="23190f9e-2db2-4ef9-8c0e-495dbef05571"> -<ExampleWords> -<AUni ws="en">sex drive, desire, lust (v), want someone, lustful, libido, horny, randy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to wanting to have sex?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ca6ef283-bc77-4669-8642-5fefc29d739f" ownerguid="66abfbe5-e011-48de-8773-905f1b1ce215"> -<ExampleWords> -<AUni ws="en">workshop, potter's field</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) Where does a potter work?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ca6f505d-6e7a-45b3-8d3d-d18a16ddc207"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pela</AUni> -<AUni ws="qvm-x-acl">pela</AUni> -<AUni ws="qvm-x-akh">pela</AUni> -<AUni ws="qvm-x-akl">pela</AUni> -<AUni ws="qvm-x-ame">pela</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pelar</AUni> -<AUni ws="qvm-x-acl">+pelar</AUni> -<AUni ws="qvm-x-akh">+pelar</AUni> -<AUni ws="qvm-x-akl">+pelar</AUni> -<AUni ws="qvm-x-ame">+pelar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.780" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="473ce1cb-f378-48f6-b67e-888c954a1678" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pelar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9d72d02d-a64f-4a6d-b2ed-27aeff4e3e03" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a56402ad-3fd7-4862-be14-b8f13eab4ab7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pelar 
\entryTyp root 
\gENG peel 
\gSPN pelar 
\e +pelar 
\c V2 
\ach pela 
\akh pela 
\acl pela 
\akl pela 
\ame pela</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ca74d4ad-f7d8-4586-9d66-5efb3d7e976f" ownerguid="3e546c11-bcb6-4024-b2f3-c15be40e257f"> -<ExampleWords> -<AUni ws="en">addict, Epicurean, glutton, pig, prodigal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who does not control himself?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="ca752706-1c9e-43e7-bd17-845c4736ccd8" ownerguid="8f4c9266-a025-4b7a-bd67-fe0c043bf6f5"> -<Abbreviation> -<AUni ws="en">8.1.5.8.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.579" /> -<DateModified val="2022-9-23 16:55:8.579" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that indicate whether a number or amount is approximate.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>78C About, Approximately, Almost, Hardly</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Approximate</AUni> -</Name> -<Questions> -<objsur guid="9f682ea6-5dc0-4b01-8fdf-31ea74531684" t="o" /> -<objsur guid="1e79abd1-6f05-48eb-acd8-79d08f3891ce" t="o" /> -<objsur guid="eb847431-a50f-4ba5-a90e-d00d19c1453c" t="o" /> -<objsur guid="e0880af9-a3d2-4205-87a2-49a5ee2c44e0" t="o" /> -<objsur guid="7e99bfb9-ece6-486e-ba2e-11d6fe5747ce" t="o" /> -<objsur guid="db222150-5220-41c8-9d97-6c6ff0a913ad" t="o" /> -<objsur guid="d0e4efe6-3388-4527-a834-9912a9b263d4" t="o" /> -<objsur guid="3ea27a24-17eb-4823-aff4-cf8fdb13ef54" t="o" /> -<objsur guid="4a1d8f5a-c887-4c85-a8a4-bd6f227db23e" t="o" /> -<objsur guid="6539af1e-f835-4304-9661-dd56b9cf9fe8" t="o" /> -<objsur guid="68d37695-e01c-4bfb-8feb-3925263208c6" t="o" /> -<objsur guid="b36c0268-a83c-499a-b86c-00fc08697269" t="o" /> -<objsur guid="5aff7002-3582-40fa-a76e-db83ecc81e70" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="ca75a3d3-94aa-4a1f-b588-ba21396a7a47" ownerguid="dd235928-9ba3-44d3-b41c-fae0183f9756"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pti</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pti</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pti</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b2772da-2fbd-4846-99c3-d3f919125916" t="r" /> -</Morph> -</rt> -<rt class="MoStemMsa" guid="ca78fb3a-94be-4132-a470-8afb8caec6b4" ownerguid="ff600281-2b8a-4605-972a-1426555b3dcf"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ca86d572-5b96-472e-8d54-f218c6417cd7" ownerguid="ec75263d-1bbd-4bb7-9bd4-515ba6751b5b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">door</AUni> -<AUni ws="es">puerta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e9a7660c-f4f7-4e34-9a92-5fef1d99356d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="ca888b55-65c1-4d59-a662-afc8a367db43"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yapay</AUni> -<AUni ws="qvm-x-acl">yapay</AUni> -<AUni ws="qvm-x-akh">yapay</AUni> -<AUni ws="qvm-x-akl">yapay</AUni> -<AUni ws="qvm-x-ame">yapay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yapay</AUni> -<AUni ws="qvm-x-acl">*yapay</AUni> -<AUni ws="qvm-x-akh">*yapay</AUni> -<AUni ws="qvm-x-akl">*yapay</AUni> -<AUni ws="qvm-x-ame">*yapay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.747" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="307ac57e-97a5-4682-8b22-5262366e068a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yapay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="51ed09e7-8831-4023-b4c7-903675c93f28" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d1c8b687-b59d-4f5b-9387-92c636d94f4f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yapay 
\entryTyp root 
\gENG again 
\gSPN otra.vez 
\e *yapay 
\c N0 
\mp +FinalC 
\ach yapay 
\akh yapay 
\acl yapay 
\akl yapay 
\ame yapay</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ca8ac08b-2701-45a6-a72a-9c63e4609827" ownerguid="28e874fb-b2e7-4afa-a4d7-600306ad2583"> -<ExampleWords> -<AUni ws="en">gymnastics, aerobics, training, exercise (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to activities people do for exercise?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ca8aff24-a0cd-4ff6-b46f-09ed80e9ef85" ownerguid="49471924-2458-4cb0-9430-f38cfc2fb63b"> -<ExampleWords> -<AUni ws="en">bone, horn, shell</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to things made from bones?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ca8cc796-3f7c-42e4-8921-e0e42745e7c0" ownerguid="a9c5103b-3255-4597-bce1-1d4ddfeb3cd4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="ca8cc993-ba6b-47ad-b5ca-57537d040c6b" ownerguid="f07024f3-83b6-4d32-a6b1-36b0f24328ca"> -<Form> -<AUni ws="qvm-x-ach">tsapi</AUni> -<AUni ws="qvm-x-acl">tsapi; tsape</AUni> -<AUni ws="qvm-x-akh">tsapi</AUni> -<AUni ws="qvm-x-akl">tsapi; tsape</AUni> -<AUni ws="qvm-x-ame">tsapi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="ca8d99c4-0eae-4380-a382-03447a4e0f9e" ownerguid="9241cf68-361a-432d-b310-e89b0cda2781"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">viüda</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">viüda</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">viüda</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">viüda</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">viüda</Run> -</AStr> -</Form> -<Morph> -<objsur guid="62201e09-4fb6-4b3f-ad95-d8268b39a3d0" t="r" /> -</Morph> -<Msa> -<objsur guid="79bb539f-1e28-4b65-af45-945ba95b5719" t="r" /> -</Msa> -<Sense> -<objsur guid="44414653-42e8-48ca-80b2-08fa1036dc69" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="ca9192aa-4249-499b-897b-d8534c64e6c9" ownerguid="89883f90-e57f-43f2-8a7e-c5e98770a26d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">soft</AUni> -<AUni ws="es">suave</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2d2a4197-2111-466b-bee6-05c6929d6781" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="ca91e41a-81c3-4c96-87e6-f67477fcd686" ownerguid="7d472dd5-636d-4499-bf66-83cf23c0dbe1"> -<Abbreviation> -<AUni ws="en">2.6.4.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to rearing a child--to take care of someone while they are a child so that their needs are met and they become a good person.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>35F Rear, Bring Up</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Rear a child</AUni> -</Name> -<OcmCodes> -<Uni>855 Child Care; 860 Socialization; 861 Techniques of Inculcation; 862 Weaning and Food Training; 863 Cleanliness Training; 864 Sex Training; 865 Aggression Training; 866 Independence Training; 867 Transmission of Cultural Norms; 868 Transmission of Skills; 869 Transmission of Beliefs</Uni> -</OcmCodes> -<Questions> -<objsur guid="c21e1d91-339b-4a7d-8a79-b568c2483409" t="o" /> -<objsur guid="f55d679e-7191-453e-abf4-00352330770f" t="o" /> -<objsur guid="9d20dc32-0b5a-49e1-862b-ad559f5087de" t="o" /> -<objsur guid="c6a15dec-03a2-4c03-a340-7e63622c48a0" t="o" /> -<objsur guid="0971cc4f-c797-485d-9d43-98c6d121bf91" t="o" /> -<objsur guid="46971561-7e6e-44dd-a1e0-8f4a99aa6cd4" t="o" /> -<objsur guid="7faec31e-7e7b-4eab-ab1a-7f94e8b8d7f0" t="o" /> -<objsur guid="ce0cbcee-0f83-40eb-9a9a-541a1353d4f8" t="o" /> -<objsur guid="94f54b59-6056-4325-bb40-a52894ef9e6b" t="o" /> -<objsur guid="4d097139-9c82-4d94-ba7e-f9f40f6dc5df" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="ca98bd7b-8711-41f6-86d0-5cd07b7bfe0d" ownerguid="f5156cde-9735-4249-920d-597fb0a7a8e3"> -<Abbreviation> -<AUni ws="en">7.9.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.559" /> -<DateModified val="2022-9-23 16:55:8.559" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to destroying something--to damage something so that it is beyond repair and cannot be used.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>20 Violence, Harm, Destroy, Kill; 20C Destroy</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Destroy</AUni> -</Name> -<Questions> -<objsur guid="8ab9f6f5-0c70-46c7-9290-9f390efd19ac" t="o" /> -<objsur guid="bdf1bb80-1094-4dc8-bd6a-0df542fbe978" t="o" /> -<objsur guid="b2cb58eb-3e11-4099-9a3b-cc882354a7c5" t="o" /> -<objsur guid="014ffa21-ed9c-4a38-9d02-f9997bda0b67" t="o" /> -<objsur guid="acf7090a-dfb2-4945-8d61-d620a856bb4a" t="o" /> -<objsur guid="a62b8642-95f2-4ef1-9467-6395a7f3fb59" t="o" /> -<objsur guid="2fd0c8da-9c23-4682-9a19-2efb4a0fda8d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="ca9b46fe-42b1-42b0-9c5e-0a040a32d929" ownerguid="f76c3803-1c7a-4181-9a87-64ae7231a67d"> -<ExampleWords> -<AUni ws="en">over there, elsewhere, yon, yonder</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a place that is not near the speaker or the listener?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ca9ba8f2-93d5-4b02-95ef-5d19575c8aeb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">acachau</AUni> -<AUni ws="qvm-x-acl">acachau</AUni> -<AUni ws="qvm-x-akh">akachaw</AUni> -<AUni ws="qvm-x-akl">akachaw</AUni> -<AUni ws="qvm-x-ame">akachaw</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*akachaw</AUni> -<AUni ws="qvm-x-acl">*akachaw</AUni> -<AUni ws="qvm-x-akh">*akachaw</AUni> -<AUni ws="qvm-x-akl">*akachaw</AUni> -<AUni ws="qvm-x-ame">*akachaw</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.679" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="803921fd-86e3-4690-8ed5-5ac8ace6c57a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*akachaw</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a7d8dca3-ac77-49f5-9165-a7693ba30dfa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7f7552d9-a03d-460b-95d8-577f3bac3c3c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *akachaw 
\entryTyp root 
\gENG ouch! 
\gSPN ay! 
\e *akachaw 
\c NOSUFF 
\ach acachau 
\akh akachaw 
\acl acachau 
\akl akachaw 
\ame akachaw</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="ca9bdf46-7967-4fe3-8371-b6a5615f00bb" ownerguid="7e55326a-5377-4efa-b4e6-427d09c38da8"> -<Form> -<AUni ws="qvm-x-ach">mágica; mägica</AUni> -<AUni ws="qvm-x-acl">mágica; mägica</AUni> -<AUni ws="qvm-x-akh">mágica; mägica</AUni> -<AUni ws="qvm-x-akl">mágica; mägica</AUni> -<AUni ws="qvm-x-ame">mágica; mägica</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="ca9c215a-e568-4d09-b3a9-b5727cd831d6" ownerguid="1c3c8af0-56b9-4617-862e-21f39b388606"> -<Abbreviation> -<AUni ws="en">2.6.6.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to disposing of a dead body. Different cultures have practices other than burying a body in the ground. Include words for all practices used by the culture.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>52 Funerals and Burial</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Bury</AUni> -</Name> -<OcmCodes> -<Uni>766 Special Burial Practices and Funerals; Deviant Mortuary Practices; 767 Mortuary Specialists</Uni> -</OcmCodes> -<Questions> -<objsur guid="b413bc9d-3d0e-4d58-adc5-64897459034c" t="o" /> -<objsur guid="702cad2b-07e8-44fb-9161-7afd04dd938c" t="o" /> -<objsur guid="d0bd10fc-b866-4db3-bceb-c288a260d552" t="o" /> -<objsur guid="58b9e919-cd51-43c2-bda3-2270aab89a04" t="o" /> -<objsur guid="ece02c07-7cc7-4fbe-8fd7-bdeb6cf1c11c" t="o" /> -<objsur guid="ce2cc97a-81a8-4cde-b4e1-4e5489ae2772" t="o" /> -<objsur guid="9e2c2725-abfa-4753-be03-39d1b38c5064" t="o" /> -<objsur guid="0d2c183b-7bc6-45d5-bf52-9a94a0124cc8" t="o" /> -<objsur guid="1b969edb-64ad-489b-a4cf-4065e626e1c0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="ca9c4258-f18c-4833-aa54-4b1ff841d64d" ownerguid="06a44085-cbcf-4217-ae5e-56c51899c99a"> -<ExampleWords> -<AUni ws="en">common, widespread</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is common?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ca9ed54e-e431-4020-b55b-544ef6025da6" ownerguid="e00d6de6-3b0b-448c-b96a-f4b02749e50a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="caa57ec9-f574-4665-bc4d-9d0c9a4af9cc" ownerguid="7fed6281-326a-4a15-8cbf-dc574594da19"> -<ExampleWords> -<AUni ws="en">performance, execution, touch, expression, fingering, keep time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe how a person plays music?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="caa6bbf0-7a46-42ab-9f12-15f790aae7af" ownerguid="bf0bdeeb-564d-407b-8bdf-31221aff7364"> -<ExampleWords> -<AUni ws="en">appoint (someone to a position), appointment, assign (someone to a position), place (someone in authority), designate (someone as), delegate (authority to), give (authority to), entrust (someone) with (something)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to appointing someone to a position of authority?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="caa7ce9d-0d7e-4db9-94b9-9e179853ec58" ownerguid="3361bc64-667f-404a-b96e-c2fedeea1a99"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bite?</AUni> -<AUni ws="es">morder?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6e4e8c4c-4c2c-4373-a087-3f0d9df73afb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="caab9405-4904-4a8a-b426-5fbf33393c84"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ha:bas</AUni> -<AUni ws="qvm-x-acl">ha:bas</AUni> -<AUni ws="qvm-x-akh">ha:bas</AUni> -<AUni ws="qvm-x-akl">ha:bas</AUni> -<AUni ws="qvm-x-ame">ha:bas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+habas</AUni> -<AUni ws="qvm-x-acl">+habas</AUni> -<AUni ws="qvm-x-akh">+habas</AUni> -<AUni ws="qvm-x-akl">+habas</AUni> -<AUni ws="qvm-x-ame">+habas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.637" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0d9e150c-9ddf-4baf-b374-b04efc36ff16" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+habas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="992b1320-0a0e-4f3d-88b1-07000bf3d8a3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1419c11a-c7fe-4fa3-aba5-939255903645" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +habas 
\entryTyp root 
\gENG beans 
\gSPN habas 
\e +habas 
\c N0 
\mp +FinalC 
\ach ha:bas 
\akh ha:bas 
\acl ha:bas 
\akl ha:bas 
\ame ha:bas</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="caabaa05-0c3a-4ed9-9679-d36236d07258" ownerguid="1f0f411b-2502-4c42-a75e-55a09d0d9e08"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cast</AUni> -<AUni ws="es">fundir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bb5bb5ee-66cb-4201-889e-bf7aa26534a3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="cab17b6c-e5b4-4114-80be-bd9cd58169c2" ownerguid="8add7f4d-333b-4b2c-9999-48a14162152b"> -<ExampleWords> -<AUni ws="en">self-controlled, ascetic, austere, careful, conscientious, controlled, disciplined, discreet, moderate, provident, prudent, puritanical, restrained, sober-minded, stoic, tempered, tolerant, unsparing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is self-controlled?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cab6c5b3-599b-46f6-b585-386ffca6c796"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">Perú</AUni> -<AUni ws="qvm-x-acl">Perú</AUni> -<AUni ws="qvm-x-akh">Perú</AUni> -<AUni ws="qvm-x-akl">Perú</AUni> -<AUni ws="qvm-x-ame">Perú</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+Perú</AUni> -<AUni ws="qvm-x-acl">+Perú</AUni> -<AUni ws="qvm-x-akh">+Perú</AUni> -<AUni ws="qvm-x-akl">+Perú</AUni> -<AUni ws="qvm-x-ame">+Perú</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.810" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d654a122-4543-4871-aa58-c9dcccb6d9b2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+Perú</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3d7dc063-5337-4252-8188-25754e276518" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="960d1dbe-8d1a-4328-8817-f3327be326ae" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +Perú 
\entryTyp root 
\gENG Peru 
\gSPN Perú 
\e +Perú 
\c N0 
\mp AlwaysAccented 
\ach Perú 
\akh Perú 
\acl Perú 
\akl Perú 
\ame Perú 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="cab8e9dc-5e4f-4a12-8b3d-4acbb7ad2059" ownerguid="d10301f3-573c-4005-ad65-1c73fb80b3b6"> -<Abbreviation> -<AUni ws="en">3.2.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.103" /> -<DateModified val="2022-9-23 16:55:8.103" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for when a person does not understand a topic or the meaning of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>31B Hold a Wrong View, Be Mistaken</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Misunderstand</AUni> -</Name> -<Questions> -<objsur guid="037f83fe-bfbc-48dd-a3b2-8acce6c62cc4" t="o" /> -<objsur guid="b76092c5-d5da-4185-a034-2901a92e40c4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="cabbb65d-f1ee-408d-847a-814f2a83e682"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sh</AUni> -<AUni ws="qvm-x-acl">sh</AUni> -<AUni ws="qvm-x-akh">sh</AUni> -<AUni ws="qvm-x-akl">sh</AUni> -<AUni ws="qvm-x-ame">sh</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.558" /> -<DateModified val="2022-10-16 13:50:11.957" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cd484225-960e-40fb-867a-6f414a8713c1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">PRT2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5a6f0521-2196-49ef-ac84-f9d082f56194" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1162ea4b-fa62-482c-93e3-ba6a247c22c9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx PRT2 
\entryTyp suffix 
\gENG PRT2 
\gSPN PRT2 
\e PRT2 
\c V1/N0 V2/N0 N0/N0 
\o 120 
\mp +foreshortens 
\ach sh 
\akh sh 
\acl sh 
\akl sh 
\ame sh 
\mp +FinalC 
\mcc PRT2 / _ PLUR / _ OBJ 
\i LEV 22.22 uywata apamorqa ama apamutsuntsu qaprata, ... ni qeri ushashtapis. 
\mcc PRT2 / ~_ TOP 
\mcc PRT2 / ~_ INST 
\mcc PRT2 / ~_ PUR 
\mcc PRT2 / PST ~_ 
\mcc PRT2 / ~_ ADV1 
\mcc PRT2 / [sim] ([lla]) ~_</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="cabd9361-1a9f-4b0f-be2d-48d935479410" ownerguid="b005a4c0-e205-4d9a-b997-6a4067909c5a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="cac1d7a8-7382-466e-ba4a-ba2bfe50f13b" ownerguid="c9aee4df-ac3e-4159-bd1a-060db1a5f070"> -<Abbreviation> -<AUni ws="en">3.5.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.184" /> -<DateModified val="2022-9-23 16:55:8.184" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to radio, television, newspapers, magazines and other forms of mass communication.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Mass communication</AUni> -</Name> -<OcmCodes> -<Uni>2010 Internet Communications; 202 Transmission of Messages; 203 Dissemination of News and Information; 204 Press; 205 Mail; Postal System; 206 Telephone and Telegraph; 207 Radio and Television</Uni> -</OcmCodes> -<Questions> -<objsur guid="eba789ff-a571-4ac2-bcb2-ed458c5143aa" t="o" /> -<objsur guid="445a6a9e-804d-4689-8fc0-06127c9643d9" t="o" /> -<objsur guid="07565b56-18d1-40ea-b210-3c0883df2915" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="eef8c50e-c391-482c-9f60-1bba2d8892b3" t="o" /> -<objsur guid="32bf055a-d666-4d6e-a3c6-6c984e2c9868" t="o" /> -<objsur guid="12781062-ee36-4703-9bc0-cee4ed467ee5" t="o" /> -<objsur guid="4f516445-e044-4d9c-ac9b-a3178f72b405" t="o" /> -<objsur guid="80dc5ca1-44ce-4406-add8-2bbe19c122ab" t="o" /> -<objsur guid="8d266c98-9db3-4d3e-b204-956aa848ffa5" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="cac547d7-0905-4cca-971e-dbcc9c0c692b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shilqui</AUni> -<AUni ws="qvm-x-acl">shilqui; shilqui; shilque</AUni> -<AUni ws="qvm-x-akh">shilki</AUni> -<AUni ws="qvm-x-akl">shilki; shilki; shilke</AUni> -<AUni ws="qvm-x-ame">shilki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shillki.n</AUni> -<AUni ws="qvm-x-acl">*shillki.n</AUni> -<AUni ws="qvm-x-akh">*shillki.n</AUni> -<AUni ws="qvm-x-akl">*shillki.n</AUni> -<AUni ws="qvm-x-ame">*shillki.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.579" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8eb8f2a4-a7d8-40e3-9bf7-e9e55bfc7579" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shillki.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dff89f9a-c9f1-4975-b330-ef01f63e4aa0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cc61aa7d-1654-48f2-b2ec-1bc3799eba78" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shillki.n 
\entryTyp root 
\gENG 
\gSPN abertura 
\e *shillki.n 
\c N0 
\mp +FinalI 
\ach shilqui 
\akh shilki 
\acl shilqui / _# 
\acl shilqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shilque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shilki / _# 
\akl shilki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shilke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shilki</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="cac74bf5-465a-4258-9b67-d3fa577e1d16"> -<Form> -<Str> -<Run ws="en">xt</Run> -</Str> -</Form> -</rt> -<rt class="LexEntry" guid="cac7515e-88d5-4c73-b473-159eef5aa28f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">o</AUni> -<AUni ws="qvm-x-acl">o</AUni> -<AUni ws="qvm-x-akh">o</AUni> -<AUni ws="qvm-x-akl">o</AUni> -<AUni ws="qvm-x-ame">o</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+o</AUni> -<AUni ws="qvm-x-acl">+o</AUni> -<AUni ws="qvm-x-akh">+o</AUni> -<AUni ws="qvm-x-akl">+o</AUni> -<AUni ws="qvm-x-ame">+o</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.608" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9f1cabda-8bb7-4e79-9945-53528f08de97" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+o</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ccf00c50-f512-4af6-9cb0-96314ad3680c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7f66b540-2ef3-428c-b312-c6f6c5dd27f2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +o 
\entryTyp root 
\gENG or 
\gSPN o 
\e +o 
\c NOSUFF 
\mp AlwaysLow 
\ach o 
\akh o 
\acl o 
\akl o 
\ame o</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="cac81820-f8b0-47a1-9cb0-085b42503e55" ownerguid="2855cda6-a031-46aa-bf3f-718d94374d46"> -<ExampleWords> -<AUni ws="en">protest, demonstrate, march, boycott, riot, in protest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to many people protesting in a group?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cac8b767-5456-4e92-ba37-1b8291f3a6ed" ownerguid="5d21b3f1-85d5-4999-af64-c4d0101050c0"> -<ExampleWords> -<AUni ws="en">put yourself down, run yourself down, sell yourself short, underestimate yourself</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to being too humble?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="cac9a59e-9f01-4d26-b981-b932f6adfd1f" ownerguid="800095d2-1ed7-4257-b8e6-4768271a3185"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="caca4cbb-6f32-4508-8550-c05fc2710040" ownerguid="64fa0ba7-73cb-40e9-a8d2-3e61fff146c9"> -<ExampleWords> -<AUni ws="en">to dye, to color, tint, dye</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to dying the hair?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="caccd402-1b37-4527-840c-caf4bbf64f79" ownerguid="96dd6359-9eec-44ef-94bd-9d0273d159b6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="90407dc8-f0dd-42bf-8479-391eedd3267d" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="671a1bca-0da2-4389-80a4-c79f4e1aa866" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="cace9de3-34c4-48fc-8be2-f8bb23cae51b" ownerguid="8cb0145f-33b0-4899-ade3-ca6a98fd48f3"> -<Form> -<AUni ws="qvm-x-ach">mamawächu</AUni> -<AUni ws="qvm-x-acl">mamawächu; mamawächu; mamawächo</AUni> -<AUni ws="qvm-x-akh">mamawächu</AUni> -<AUni ws="qvm-x-akl">mamawächu; mamawächu; mamawächo</AUni> -<AUni ws="qvm-x-ame">mamawächu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="cacf939e-e6c8-4168-88dc-e43154454c95" ownerguid="fa2f39bd-7130-4cea-9eaa-efaad4e9f622"> -<Form> -<AUni ws="qvm-x-ach">gasma</AUni> -<AUni ws="qvm-x-acl">gasma</AUni> -<AUni ws="qvm-x-akh">qasma</AUni> -<AUni ws="qvm-x-akl">qasma</AUni> -<AUni ws="qvm-x-ame">qasma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="cad12a7a-25ce-416c-8ebe-6ad475bf6f4a" ownerguid="9a30755f-46f4-4919-a6a8-11c23c6aff14"> -<Example> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mantsaripäkun, uchkuripäkurqan, roquripäkunki, jorqupäkushkanki</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="cad348c3-306c-4a2c-b61b-63dbe03e9d03" ownerguid="164759d4-ed58-433c-9d8d-c2f9d1847e30"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="b3991454-5320-4505-9e93-268357f18c3e" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">dwarf</AUni> -<AUni ws="es">enano</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="047af8be-5a83-437b-82f7-a93ac46d2b9e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="cad52405-7f17-499a-9aa7-0e5d5aaf4fbe" ownerguid="84eb31d3-b932-4b3b-b945-85884ea856c7"> -<ExampleWords> -<AUni ws="en">probably, likely, probable, it looks as if, it's a fair bet, may well, may easily, as likely as not, I should think</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something is probably true?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="cad56e0b-e952-4e6c-af95-41145bf487a9" ownerguid="3c9dd0d1-805e-4451-87b9-000ebbef9354"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="cad69d15-5d46-473f-ae9e-b0aba18b3141" ownerguid="d1b3d0f0-5319-4a6a-8a70-2179a8e76d22"> -<ExampleWords> -<AUni ws="en">meet a need, satisfy a need, fulfill requirements, meet requirements, meet the demand, fill a need</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to providing something that is needed?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="cad81be9-30b7-465b-ad13-dc4ff41a2571" ownerguid="08203117-dfb9-4e8a-91bc-a3460256a3bc"> -<Form> -<AUni ws="qvm-x-ach">muyti</AUni> -<AUni ws="qvm-x-acl">muyti; muyte</AUni> -<AUni ws="qvm-x-akh">muyti</AUni> -<AUni ws="qvm-x-akl">muyti; muyte</AUni> -<AUni ws="qvm-x-ame">muyti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="cadb5186-5119-4af5-a95a-fc511f5d78bb" ownerguid="4d22a47b-8559-41a4-92dc-ac1591d7e383"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="cadc25fd-fc38-4d3a-be0c-fc96823e9761" ownerguid="38689a9a-475f-4ad8-831b-c847bd6bf295"> -<Form> -<AUni ws="qvm-x-ach">wachpu</AUni> -<AUni ws="qvm-x-acl">wachpu; wachpo</AUni> -<AUni ws="qvm-x-akh">wachpu</AUni> -<AUni ws="qvm-x-akl">wachpu; wachpo</AUni> -<AUni ws="qvm-x-ame">wachpu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="cade535e-5c04-4619-99a3-b30ff6bd9606" ownerguid="d485a138-f778-43e8-b354-23bfbaec6623"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="cadfe0ec-0857-471a-b3a8-0a97f896a7b3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jutu</AUni> -<AUni ws="qvm-x-acl">jutu; jutu; juto</AUni> -<AUni ws="qvm-x-akh">jutu</AUni> -<AUni ws="qvm-x-akl">jutu; jutu; juto</AUni> -<AUni ws="qvm-x-ame">hutu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hutu.n</AUni> -<AUni ws="qvm-x-acl">*hutu.n</AUni> -<AUni ws="qvm-x-akh">*hutu.n</AUni> -<AUni ws="qvm-x-akl">*hutu.n</AUni> -<AUni ws="qvm-x-ame">*hutu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.771" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="837077aa-5f6a-4d94-a1a7-309e7be8d3bf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hutu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="13222a7b-d65a-45c6-aa77-04410c9610c8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9162dd64-e1c5-43b7-a7fe-b95df6df5c27" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hutu.n 
\entryTyp root 
\gENG drip 
\gSPN gota 
\e *hutu.n 
\c N0 
\ach jutu 
\akh jutu 
\acl jutu / _# 
\acl jutu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl juto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jutu / _# 
\akl jutu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl juto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hutu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="cae2e31a-b940-4186-afb3-6e93edd12989" ownerguid="7ba5073c-52e9-4c23-b555-4055ebc5cba2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="cd4a24fb-ba6b-4667-ab62-1cc68de461cc" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="890cb43e-b60d-4286-8377-3a72eec2bf80" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="cae93ed5-32d9-4035-810f-5276400529b8" ownerguid="aec892f4-7a26-443a-b2fb-9f0eade74a94"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="cae9b41e-3cee-40af-b7fd-546398c61918" ownerguid="7a8cb8d3-797d-478d-b7dd-265a1eedc0c1"> -<ExampleWords> -<AUni ws="en">wall, fence, hedge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a fence or wall?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="caef2923-f573-47a5-aba1-c36e621b0abc" ownerguid="134c68a9-ac3f-4b7e-8fca-63642d796a75"> -<ExampleWords> -<AUni ws="en">citizenship, natural born, naturalized</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the status of a citizen?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="caf089d5-ccda-40e0-8c5c-716e6a834fff" ownerguid="a9898fad-e79b-44f2-b06b-7d35f1e05a38"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">forgiveness</AUni> -<AUni ws="es">perdón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e47c3eb4-0b19-443a-a3b9-68fa74aacde0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="caf2115b-eedb-41b5-80df-0c291df27dde"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guegu</AUni> -<AUni ws="qvm-x-acl">guegu; guego</AUni> -<AUni ws="qvm-x-akh">qequ</AUni> -<AUni ws="qvm-x-akl">qequ; qeqo</AUni> -<AUni ws="qvm-x-ame">qiqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qiqu</AUni> -<AUni ws="qvm-x-acl">*qiqu</AUni> -<AUni ws="qvm-x-akh">*qiqu</AUni> -<AUni ws="qvm-x-akl">*qiqu</AUni> -<AUni ws="qvm-x-ame">*qiqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.226" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5780925d-5a60-4240-8915-e0da44cbe1f5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qiqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3b626ac3-8a69-46e3-8df4-a90741567e4e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6b008dde-7a77-404b-b4be-7f3f68d9caeb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qiqu 
\entryTyp root 
\gENG 
\gSPN 
\e *qiqu 
\c V1 
\ach guegu 
\akh qequ 
\acl guegu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl guego +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qequ +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qeqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qiqu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="caf73ad7-2508-4a9b-8213-e355bc381c7d" ownerguid="47e4b48f-7259-4ca7-abb1-f52c974bfc84"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="caf7c146-f61c-4d13-a5bd-c89f537b6682"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shaya</AUni> -<AUni ws="qvm-x-acl">shaya</AUni> -<AUni ws="qvm-x-akh">shaya</AUni> -<AUni ws="qvm-x-akl">shaya</AUni> -<AUni ws="qvm-x-ame">shaya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shaya.1</AUni> -<AUni ws="qvm-x-acl">*shaya.1</AUni> -<AUni ws="qvm-x-akh">*shaya.1</AUni> -<AUni ws="qvm-x-akl">*shaya.1</AUni> -<AUni ws="qvm-x-ame">*shaya.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.561" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9479bd66-b3fa-48de-a925-7c3e4899678a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shaya.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c5ab4678-381a-46cf-ae87-843209cda10c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e01cf142-4c56-470d-84ec-c27f93e0ba0c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shaya.1 
\entryTyp root 
\gENG stand 
\gSPN parar 
\e *shaya.1 
\c V1 
\ach shaya 
\akh shaya 
\acl shaya 
\akl shaya 
\ame shaya 
\mcc *shaya.1 / _... AFAR / _... DUR 
\mcc *shaya.1 / ~_... [y]</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="caf82cfc-6902-462c-961a-329cded10ec9" ownerguid="a2391a6a-c20c-4a14-bb4c-c2e8bbd697a6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b699320c-1182-41cf-a567-d8008edefdda" t="r" /> -</Morph> -</rt> -<rt class="LexEntry" guid="caf960da-cb19-4d47-b0e6-1c07be37025f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tagu</AUni> -<AUni ws="qvm-x-acl">tagu; tago</AUni> -<AUni ws="qvm-x-akh">taqu</AUni> -<AUni ws="qvm-x-akl">taqu; taqo</AUni> -<AUni ws="qvm-x-ame">taqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*taqu</AUni> -<AUni ws="qvm-x-acl">*taqu</AUni> -<AUni ws="qvm-x-akh">*taqu</AUni> -<AUni ws="qvm-x-akl">*taqu</AUni> -<AUni ws="qvm-x-ame">*taqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.845" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6969f6b5-4755-4767-ade8-14708f165e05" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*taqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6fedcfbd-29db-4c01-bd2a-f6e33b2b3175" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ded8b37a-74e4-4a5e-9f7b-632505cf0e93" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *taqu 
\entryTyp root 
\gENG 
\gSPN 
\e *taqu 
\c V1 
\ach tagu 
\akh taqu 
\acl tagu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tago +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl taqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl taqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame taqu 
\i PSA 62.3 Tagucaycag guenchatanogpis cumarcaycämanqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="cafb2ee2-a44d-4344-b29f-d33034cc5304" ownerguid="2c42f822-2079-440c-b3b7-7725b6a8db8b"> -<ExampleWords> -<AUni ws="en">stopping place, station</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) Where do things typically stop?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cafbf19f-b70b-4e07-a90b-447c45bc1996" ownerguid="bfe8902a-32a7-4092-93b2-9dcf3dce205f"> -<ExampleWords> -<AUni ws="en">upsetting, distressing, harrowing, painful, traumatic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe something that causes someone to feel upset?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cb016abb-ad99-4975-87db-9b08aff63e2e" ownerguid="cb783ad9-4650-416e-bf63-88c4ca43fe6a"> -<ExampleWords> -<AUni ws="en">reputable, of repute, prestigious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who has a good reputation?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="cb06018c-b545-443f-b10a-99abc0e5b29d" ownerguid="490e2a18-c880-45c4-8c39-56cd08458164"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">break</AUni> -<AUni ws="es">amollar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="87b2e2dd-a8ce-49cf-822a-b9f4b15c91b9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="cb0c9332-7220-4401-8ffa-916e860cf2c6" ownerguid="e916fa80-99de-497b-b69a-0191102c4e62"> -<Form> -<AUni ws="qvm-x-ach">suma; sumä</AUni> -<AUni ws="qvm-x-acl">suma; sumä</AUni> -<AUni ws="qvm-x-akh">suma; sumä</AUni> -<AUni ws="qvm-x-akl">suma; sumä</AUni> -<AUni ws="qvm-x-ame">suma; sumä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="cb0e8865-afec-4259-839b-5ca760f571ec"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">presidenti; presidente</AUni> -<AUni ws="qvm-x-acl">presidenti; presidenti; presidente</AUni> -<AUni ws="qvm-x-akh">presidenti; presidente</AUni> -<AUni ws="qvm-x-akl">presidenti; presidenti; presidente</AUni> -<AUni ws="qvm-x-ame">presidenti; presidente</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+presidente</AUni> -<AUni ws="qvm-x-acl">+presidente</AUni> -<AUni ws="qvm-x-akh">+presidente</AUni> -<AUni ws="qvm-x-akl">+presidente</AUni> -<AUni ws="qvm-x-ame">+presidente</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.921" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1dea9d66-04e4-48ed-97aa-0e0a76df87c5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+presidente</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="67540106-a01c-47a7-8379-709a22317a13" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9d6a59fd-cf1b-4c66-86bc-9fb7b1bf4158" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +presidente 
\entryTyp root 
\gENG president 
\gSPN presidente 
\e +presidente 
\c N0 
\mp +FinalI 
\ach presidenti / ~_# 
\ach presidente / _# 
\akh presidenti / ~_# 
\akh presidente / _# 
\acl presidenti / ~_# 
\acl presidenti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl presidente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl presidenti / ~_# 
\akl presidenti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl presidente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame presidenti / ~_# 
\ame presidente / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="StStyle" guid="cb0fbdb3-2ca2-473b-97bb-8f505e18010c" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="14" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Dictionary-Contrasting</Uni> -</Name> -<Rules> -<Prop italic="invert"></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<Usage> -<AUni ws="en">Used for items in the entry that need to be distinguished from neighboring items.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="MoAffixAllomorph" guid="cb0fda97-5d64-4a50-89f0-b6c38c582b4c" ownerguid="212914f2-1f1a-4ab4-8aae-7955ec0c4d84"> -<Form> -<AUni ws="qvm-x-ach">yä</AUni> -<AUni ws="qvm-x-acl">yä</AUni> -<AUni ws="qvm-x-akh">yä</AUni> -<AUni ws="qvm-x-akl">yä</AUni> -<AUni ws="qvm-x-ame">yä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="cb131c90-8497-445f-8170-287e0301612f" ownerguid="d8366daf-ae1d-4b2c-a447-478c73580639"> -<ExampleWords> -<AUni ws="en">how, however, somehow, somehow or other</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate the way in which something is done?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="cb139c80-e858-4a71-9fa5-1abe6f355412" ownerguid="ae1a3325-4d14-4ca5-8e66-00e6007d5a2a"> -<Form> -<AUni ws="qvm-x-ach">impuestu; impuesto</AUni> -<AUni ws="qvm-x-acl">impuestu; impuestu; impuesto</AUni> -<AUni ws="qvm-x-akh">impuestu; impuesto</AUni> -<AUni ws="qvm-x-akl">impuestu; impuestu; impuesto</AUni> -<AUni ws="qvm-x-ame">impuestu; impuesto</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="cb1564f6-3ae3-466d-b7da-ade958f875c0" ownerguid="0afc6314-92a7-40c8-ab4f-ce308ac4863d"> -<Form> -<AUni ws="qvm-x-ach">capa</AUni> -<AUni ws="qvm-x-acl">capa</AUni> -<AUni ws="qvm-x-akh">capa</AUni> -<AUni ws="qvm-x-akl">capa</AUni> -<AUni ws="qvm-x-ame">capa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="cb157188-fe41-4b5c-bc0d-df6be2b3a6e0" ownerguid="ed4a2ca6-c03c-4c72-9431-b72fb7294b8f"> -<ExampleWords> -<AUni ws="en">wedding gown, veil</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What special clothes are worn at a wedding?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="cb1c2160-2e1e-468e-b07f-a1e39e130d10" ownerguid="278a0d7b-23fc-4092-a30b-e0525204c698"> -<Form> -<AUni ws="qvm-x-ach">̈shi</AUni> -<AUni ws="qvm-x-acl">̈shi</AUni> -<AUni ws="qvm-x-akh">̈shi</AUni> -<AUni ws="qvm-x-akl">̈shi</AUni> -<AUni ws="qvm-x-ame">̈shi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="cb1ecce3-ca8d-4b27-9438-20478dc6fde4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">upacsa</AUni> -<AUni ws="qvm-x-acl">upacsa</AUni> -<AUni ws="qvm-x-akh">upaksa</AUni> -<AUni ws="qvm-x-akl">upaksa</AUni> -<AUni ws="qvm-x-ame">upaksa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*upaksa</AUni> -<AUni ws="qvm-x-acl">*upaksa</AUni> -<AUni ws="qvm-x-akh">*upaksa</AUni> -<AUni ws="qvm-x-akl">*upaksa</AUni> -<AUni ws="qvm-x-ame">*upaksa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.241" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="17b07eaf-5bbf-4fa0-a95e-8ee86290ee4c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*upaksa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7af7d59d-d376-4197-b67f-ddb1d43466c7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5fd27ffd-f175-4d0c-8632-c1e6fdbea24d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *upaksa 
\entryTyp root 
\gENG 
\gSPN 
\e *upaksa 
\c V1 
\ach upacsa 
\akh upaksa 
\acl upacsa 
\akl upaksa 
\ame upaksa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="cb205164-284c-4422-999d-beac5c7817af" ownerguid="2edd491f-b480-41a0-94aa-92467ade8de3"> -<Form> -<AUni ws="qvm-x-ach">quichqui</AUni> -<AUni ws="qvm-x-acl">quichqui; quichque</AUni> -<AUni ws="qvm-x-akh">kichki</AUni> -<AUni ws="qvm-x-akl">kichki; kichke</AUni> -<AUni ws="qvm-x-ame">kichki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="cb205993-ef8b-42a7-a3f3-810d3c3dc605" ownerguid="2e09535f-f61f-4ff5-8d56-23c2916cbb7f"> -<ExampleWords> -<AUni ws="en">rut, groove, furrow, groove, wrinkle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a rough or uneven part of something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="cb23658e-f435-4589-b4f3-db926749dee7" ownerguid="bcc5be3f-fcee-4504-abba-7d2cb3871412"> -<Form> -<AUni ws="qvm-x-ach">zapatu; zapato</AUni> -<AUni ws="qvm-x-acl">zapatu; zapatu; zapato</AUni> -<AUni ws="qvm-x-akh">zapatu; zapato</AUni> -<AUni ws="qvm-x-akl">zapatu; zapatu; zapato</AUni> -<AUni ws="qvm-x-ame">zapatu; zapato</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="cb237afa-c428-4439-8e70-0dd984e3ef0e" ownerguid="f37f3a4f-e1e2-4ac2-b4b3-9c02223e6dcf"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="cb23ee0b-553a-4368-b003-3e6b01c72ef5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wayra</AUni> -<AUni ws="qvm-x-acl">wayra</AUni> -<AUni ws="qvm-x-akh">wayra</AUni> -<AUni ws="qvm-x-akl">wayra</AUni> -<AUni ws="qvm-x-ame">wayra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wayra.v</AUni> -<AUni ws="qvm-x-acl">*wayra.v</AUni> -<AUni ws="qvm-x-akh">*wayra.v</AUni> -<AUni ws="qvm-x-akl">*wayra.v</AUni> -<AUni ws="qvm-x-ame">*wayra.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.627" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e49a58fe-9a42-41f1-809d-8f6fa0a2102c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wayra.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dba7abef-71c8-4bf6-ac88-6d438790bc86" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="68f92462-9aab-4cf4-b21a-c6c88cf146c3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wayra.v 
\entryTyp root 
\gENG winnow 
\gSPN ventilar 
\e *wayra.v 
\c V1 
\mp NeverMonophthongized 
\ach wayra 
\akh wayra 
\acl wayra 
\akl wayra 
\ame wayra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="cb240e85-78cc-4d93-acad-6fab2419151f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sobrinu; sobrino</AUni> -<AUni ws="qvm-x-acl">sobrinu; sobrinu; sobrino</AUni> -<AUni ws="qvm-x-akh">sobrinu; sobrino</AUni> -<AUni ws="qvm-x-akl">sobrinu; sobrinu; sobrino</AUni> -<AUni ws="qvm-x-ame">sobrinu; sobrino</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sobrino</AUni> -<AUni ws="qvm-x-acl">+sobrino</AUni> -<AUni ws="qvm-x-akh">+sobrino</AUni> -<AUni ws="qvm-x-akl">+sobrino</AUni> -<AUni ws="qvm-x-ame">+sobrino</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.713" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a335ec94-3b9a-45cf-8d96-303996f1ee68" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sobrino</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d3eb87ee-ccdb-42fa-ae8b-502f5f1cec08" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a832f8ff-f2eb-4aee-aa36-07c073a32e14" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sobrino 
\entryTyp root 
\gENG nephew 
\gSPN sobrino 
\e +sobrino 
\c N0 
\ach sobrinu / ~_# 
\ach sobrino / _# 
\akh sobrinu / ~_# 
\akh sobrino / _# 
\acl sobrinu / ~_# 
\acl sobrinu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sobrino +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sobrinu / ~_# 
\akl sobrinu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sobrino +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sobrinu / ~_# 
\ame sobrino / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="cb25c946-dd2e-4c18-bb26-cabf8b4f143c" ownerguid="31777669-e37b-4b77-9cce-0d8c33f6ebb9"> -<ExampleWords> -<AUni ws="en">swamp, swampland, wetland, marsh, marshland, bog, delta, estuary, bayou, morass</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to shallow bodies of standing water with plants growing in them?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cb2677f0-804f-45e9-b1a0-1fbedee1a18e" ownerguid="196bf7b1-54a1-4a78-8d10-c61585849c63"> -<ExampleWords> -<AUni ws="en">convoy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a group of vehicles or ships moving together?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="cb26cdc8-728d-4894-99ec-b32c6aa25910" ownerguid="1fba6370-8264-4270-9240-bdd2cea4f16a"> -<Form> -<AUni ws="qvm-x-ach">palabra</AUni> -<AUni ws="qvm-x-acl">palabra</AUni> -<AUni ws="qvm-x-akh">palabra</AUni> -<AUni ws="qvm-x-akl">palabra</AUni> -<AUni ws="qvm-x-ame">palabra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="cb26cf49-42dc-4379-81ac-dd6c1f9bb6be" ownerguid="f4a143dc-621c-4892-9d82-d385c24fa794"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="cb26e7c4-b30e-4e2b-991d-a73d56fcc29a"> -<Analyses> -<objsur guid="9241cf68-361a-432d-b310-e89b0cda2781" t="o" /> -</Analyses> -<Checksum val="-1641329214" /> -<Form> -<AUni ws="qvm-x-akh">viüda</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="cb283a97-491a-42b6-8d3b-b51e2afabea0" ownerguid="ce6d5e60-7cf6-46ab-bd02-453ec7b04f7a"> -<ExampleWords> -<AUni ws="en">pride, self-esteem, self-respect</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of self-esteem?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="cb2b2761-86bd-40dc-83d0-39de4efbbefe" ownerguid="9de5b3c3-74fa-48dd-8b6a-fcc711a258b5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="cb2b29f5-b06c-43f3-b7c0-c51ec187503f" ownerguid="2155198b-ec9f-4a49-a77b-daa69776d026"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">calmar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c0a0e0ed-7657-44b5-8941-bd317b03737d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="cb2b9eef-29d5-4a07-a692-8c7ec68e31cc" ownerguid="dc1a2c6f-1b32-4631-8823-36dacc8cb7bb"> -<ExampleWords> -<AUni ws="en">sunglasses, shade tree, suntan lotion, awning, sun umbrella, parasol, sunbonnet, hat, visor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What do people use to protect themselves from the sun?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="cb2d3560-2d33-44dd-a383-4dec0c19ac1c" ownerguid="fb6840e2-11f3-434c-bb10-e35bbe7d80f1"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="cb2d461b-e205-4c20-8a53-00abb5b008f8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">achachau</AUni> -<AUni ws="qvm-x-acl">achachau</AUni> -<AUni ws="qvm-x-akh">achachaw</AUni> -<AUni ws="qvm-x-akl">achachaw</AUni> -<AUni ws="qvm-x-ame">achachaw</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*atratraw</AUni> -<AUni ws="qvm-x-acl">*atratraw</AUni> -<AUni ws="qvm-x-akh">*atratraw</AUni> -<AUni ws="qvm-x-akl">*atratraw</AUni> -<AUni ws="qvm-x-ame">*atratraw</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.870" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="84c0f2c5-bde6-41da-b409-6fbd2fd370d4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*atratraw</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9a3b5920-6b21-4989-868a-3f2c64e0c1df" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="512fc899-c9a0-4096-b8b6-c042c4ec6359" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *atratraw 
\entryTyp root 
\gENG 
\gSPN qué.miedo 
\e *atratraw 
\c NOSUFF 
\ach achachau 
\akh achachaw 
\acl achachau 
\akl achachaw 
\ame achachaw</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="cb312439-8279-4f5f-a6a1-81bf5a3b7ecf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shulca</AUni> -<AUni ws="qvm-x-acl">shulca</AUni> -<AUni ws="qvm-x-akh">shulka</AUni> -<AUni ws="qvm-x-akl">shulka</AUni> -<AUni ws="qvm-x-ame">shulka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shullka</AUni> -<AUni ws="qvm-x-acl">*shullka</AUni> -<AUni ws="qvm-x-akh">*shullka</AUni> -<AUni ws="qvm-x-akl">*shullka</AUni> -<AUni ws="qvm-x-ame">*shullka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.630" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0dd97987-8b6f-4db9-85a2-9746414fbadf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shullka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ee270a36-313c-437e-a744-0b4dd0505ccb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bd5fac83-a725-46bb-be20-c72f3fc01ed5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shullka 
\entryTyp root 
\gENG young 
\gSPN joven 
\e *shullka 
\c N0 
\ach shulca 
\akh shulka 
\acl shulca 
\akl shulka 
\ame shulka</Run> -</AStr> -</Custom> -</rt> -<rt class="MoAffixAllomorph" guid="cb323b85-6101-48da-84a2-f857a34a8e5d" ownerguid="f8e88cdc-111b-42e6-a5b7-eaaa0807eae1"> -<Form> -<AUni ws="qvm-x-ach">chä</AUni> -<AUni ws="qvm-x-acl">chä</AUni> -<AUni ws="qvm-x-akh">chä</AUni> -<AUni ws="qvm-x-akl">chä</AUni> -<AUni ws="qvm-x-ame">chä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="cb341ec1-e805-4446-a81d-ed1239a1689f" ownerguid="75a664f1-1c69-4a49-be7b-ad0be56cade0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="cb362fc7-b3aa-46f4-b9a8-0f8c97fb16fe" ownerguid="5bb29704-fe0f-4594-9622-ce0aa42b93c8"> -<Abbreviation> -<AUni ws="en">6.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.382" /> -<DateModified val="2022-9-23 16:55:8.382" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words related to growing crops. If one crop is cultivated extensively and there are many words related to it, set up a separate domain for it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Growing crops</AUni> -</Name> -<OcmCodes> -<Uni>248 Textile Agriculture; 249 Special Crops</Uni> -</OcmCodes> -<Questions> -<objsur guid="d448adcb-08c1-4ed4-8c39-0be5bfd9941b" t="o" /> -<objsur guid="6975351d-3ebb-4c32-9c49-9e7c41130e45" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="36a2c83f-f7aa-41b0-9b17-f801f3720e4f" t="o" /> -<objsur guid="7524887a-5cf0-4459-96d1-fd8262bef7d4" t="o" /> -<objsur guid="2854734e-834a-42cb-8812-d9e7028916dc" t="o" /> -<objsur guid="af5bcf27-56e2-4072-b321-30a31b58af78" t="o" /> -<objsur guid="198436ae-c3c6-4f3c-8fe0-ea10c867f1c6" t="o" /> -<objsur guid="bf1f9360-6dd4-4ee3-b9f8-a5539baeb53b" t="o" /> -<objsur guid="ef5ee2be-8a32-452a-818b-80191edb8e41" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="cb376633-7091-4b37-a386-357fb97be6cf" ownerguid="2810998c-d6cc-47a3-a946-66d0986a2767"> -<ExampleWords> -<AUni ws="en">jerk</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to moving something very quickly?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cb390160-dc52-4aee-a562-ed1230b646d0" ownerguid="780fbf89-f2ba-404c-b288-f6ca637bbc90"> -<ExampleWords> -<AUni ws="en">continuity, continual, continuous, to last (for a long time), endure, enduring, lasting, continuing, remain, perpetual, durable, rest, retain, stand, endless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something is continuing?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="cb3a22ed-b5c0-4a97-8173-c5dc38ab797a" ownerguid="49ee1a30-4e7d-400e-824f-9b2f2c1786e3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d1685fdc-96d8-4baf-9cb8-523863adb67f" t="r" /> -</Morph> -<Msa> -<objsur guid="434f36b9-aa05-46d6-be7e-89240d9e2c4d" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="cb3b9850-292c-4c21-8672-3466f1368c62" ownerguid="a33be084-0288-467a-93e9-447150d1a463"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="cb3c8962-70c3-4fc2-a70b-406c7006cd74" ownerguid="96a40b54-88f0-4740-86a3-140912f24f24"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yqui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yqui</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yki</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1b0fe7f9-c0ed-498b-9263-f8c0d31cc569" t="r" /> -</Morph> -<Msa> -<objsur guid="2999bb54-aa09-4eed-affb-cf684bd15cf6" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="cb3d3461-71c9-49d0-b7ef-1cf036a216cf" ownerguid="647603c2-6f32-48f3-91fa-1f7f0e44b539"> -<ExampleWords> -<AUni ws="en">spill</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to putting water on something accidentally?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="cb41b89b-d7bf-4d05-b346-1f4c68793fd3" ownerguid="2ef1c923-3a98-4b23-a1d1-99cf3fd74919"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">hacer.bajar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4891e48d-bb7c-4014-bb51-657f37725fde" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="cb47b87b-cebe-4f3b-9f44-23d7f93386fe" ownerguid="aa8d812b-7c13-414a-ad02-a4240d2cef68"> -<ExampleWords> -<AUni ws="en">come, come here</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving toward the speaker?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cb48de57-4fef-47d8-8989-397a6bc6377a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lagya</AUni> -<AUni ws="qvm-x-acl">lagya</AUni> -<AUni ws="qvm-x-akh">laqya</AUni> -<AUni ws="qvm-x-akl">laqya</AUni> -<AUni ws="qvm-x-ame">laqya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llaqya.r</AUni> -<AUni ws="qvm-x-acl">*llaqya.r</AUni> -<AUni ws="qvm-x-akh">*llaqya.r</AUni> -<AUni ws="qvm-x-akl">*llaqya.r</AUni> -<AUni ws="qvm-x-ame">*llaqya.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.164" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d852002a-f6bf-43e2-93b7-eef2f4a177b5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llaqya.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7e8761e6-2b75-48b7-9809-94ed790d4e2f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3c0e7568-963b-4d3d-bfc0-392fde95cbff" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llaqya.r 
\entryTyp root 
\gENG slap 
\gSPN sopapear 
\e *llaqya.r 
\c R0 
\ach lagya 
\akh laqya 
\acl lagya 
\akl laqya 
\ame laqya</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="cb4cbcd4-1581-43eb-8abe-ef0bf860ab7f" ownerguid="6339d20b-014e-473a-ac82-e0003bf10b2a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stomach</AUni> -<AUni ws="es">barriga</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1d5e3174-2a13-4ba1-8b9c-1ecb0638ccea" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="cb4dfa4a-4233-4d76-9078-45a7f2151223" ownerguid="7337b2dd-b574-4a41-affa-2dfad7f6cdbc"> -<ExampleWords> -<AUni ws="en">cast lots [in English and many languages there isn't a generic term; 'cast lots' is archaic]</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What is the general term for making a decision by chance?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="cb5124e8-33a4-43cf-bffd-c80153063440"> -<Form> -<Str> -<Run ws="en">BEN1</Run> -</Str> -</Form> -</rt> -<rt class="LexEntry" guid="cb522575-344f-447c-bdf4-32e2ebfea8f5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">melga</AUni> -<AUni ws="qvm-x-acl">melga</AUni> -<AUni ws="qvm-x-akh">melqa</AUni> -<AUni ws="qvm-x-akl">melqa</AUni> -<AUni ws="qvm-x-ame">milqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*millqa.v</AUni> -<AUni ws="qvm-x-acl">*millqa.v</AUni> -<AUni ws="qvm-x-akh">*millqa.v</AUni> -<AUni ws="qvm-x-akl">*millqa.v</AUni> -<AUni ws="qvm-x-ame">*millqa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.436" /> -<DateModified val="2022-10-10 21:18:47.204" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9380d684-751a-4df8-b3b1-b5e5a24bb079" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*millqa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6d3ab4e1-7d8b-4ec2-a2b4-b76eeaef52de" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1f23990c-bafd-49dd-b996-d3280fcabc73" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *millqa.v 
\entryTyp root 
\gENG 
\gSPN 
\e *millqa.v 
\c V1 
\ach melga 
\akh melqa 
\acl melga 
\akl melqa 
\ame milqa 
\i LUK 6.38 Melqayniki juntatami melqapäshunkipaq.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="cb55f90f-9917-42c8-9c81-5a250c8a08b7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">la</AUni> -<AUni ws="qvm-x-acl">la</AUni> -<AUni ws="qvm-x-akh">la</AUni> -<AUni ws="qvm-x-akl">la</AUni> -<AUni ws="qvm-x-ame">la</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+la</AUni> -<AUni ws="qvm-x-acl">+la</AUni> -<AUni ws="qvm-x-akh">+la</AUni> -<AUni ws="qvm-x-akl">+la</AUni> -<AUni ws="qvm-x-ame">+la</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.41" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3285606b-b0fe-44ad-85b1-6df3df31473e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+la</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="146d739e-dae6-4f68-8039-50bc89a5ae6b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5b399ba2-14b0-4c69-a8e0-2df37b88d6e0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +la 
\entryTyp root 
\gENG the 
\gSPN la 
\e +la 
\c NOSUFF 
\ach la 
\akh la 
\acl la 
\akl la 
\ame la</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="cb581b8b-64e4-445d-a2bb-84aa20283f71" ownerguid="f7646515-273f-4390-b7ef-5c424c2c1551"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="cb58440f-0e54-42ee-9fdd-1aa3fc8b7caf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">siusa</AUni> -<AUni ws="qvm-x-acl">siusa</AUni> -<AUni ws="qvm-x-akh">siwsa</AUni> -<AUni ws="qvm-x-akl">siwsa</AUni> -<AUni ws="qvm-x-ame">siwsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*siwsa.v</AUni> -<AUni ws="qvm-x-acl">*siwsa.v</AUni> -<AUni ws="qvm-x-akh">*siwsa.v</AUni> -<AUni ws="qvm-x-akl">*siwsa.v</AUni> -<AUni ws="qvm-x-ame">*siwsa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.703" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b531c81f-c18b-4a93-ac0f-b6da7ca455cb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*siwsa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="971be41f-7e8e-49b6-af37-881e142715b5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="056405e8-3176-42d2-8439-d7d97bcb2c02" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *siwsa.v 
\entryTyp root 
\gENG to.drizzle 
\gSPN lloviznar 
\e *siwsa.v 
\c V1 
\ach siusa 
\akh siwsa 
\acl siusa 
\akl siwsa 
\ame siwsa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="cb584960-1522-4504-a870-1c1a8efdc7b6" ownerguid="23fc63a6-4afc-48b8-88bf-a94a6904f5c7"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 26.4 Tsay ishcay piësashgan tolducunapa cuchuncho azul ojalcunata ruratsinqui.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="cb5a461c-3a0a-472c-83c2-c42ec0492f32" ownerguid="91070bb9-fcac-4748-8f10-2c80428657d1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mash</AUni> -<AUni ws="es">emplastar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="63b0d130-56f6-4f0a-8698-be61f82961be" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="cb5d144c-d1f1-45e7-9ba4-171ceb5539a8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">achu</AUni> -<AUni ws="qvm-x-acl">achu; acho</AUni> -<AUni ws="qvm-x-akh">achu</AUni> -<AUni ws="qvm-x-akl">achu; acho</AUni> -<AUni ws="qvm-x-ame">achu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*atru.v</AUni> -<AUni ws="qvm-x-acl">*atru.v</AUni> -<AUni ws="qvm-x-akh">*atru.v</AUni> -<AUni ws="qvm-x-akl">*atru.v</AUni> -<AUni ws="qvm-x-ame">*atru.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.880" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4754777a-c7e6-4ca7-b275-765ff59dfd6c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*atru.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="75343870-cb8a-408b-b811-95583fb6384c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7fa965df-7037-4a31-8878-a6a742c4b245" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *atru.v 
\entryTyp root 
\gENG cut 
\gSPN cortar 
\e *atru.v 
\c V2 
\ach achu 
\akh achu 
\acl achu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl acho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl achu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl acho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame achu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="cb5dc9b7-3a51-4f1e-953c-74d1cdfef484" ownerguid="bd88e09a-0127-434a-b9e2-28ea6537b797"> -<Form> -<AUni ws="qvm-x-ach">bülla</AUni> -<AUni ws="qvm-x-acl">bülla</AUni> -<AUni ws="qvm-x-akh">bülla</AUni> -<AUni ws="qvm-x-akl">bülla</AUni> -<AUni ws="qvm-x-ame">bülla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="cb60925c-7c27-4ff8-9c15-dc9b2a3ae9bf" ownerguid="a4ac260f-3c24-41af-90dc-c88e7a8fe6ff"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="cb615946-4e77-425e-b8f6-fd1a28c44c8d" ownerguid="d067b555-e53c-4c16-bb09-5314862d8bae"> -<ExampleWords> -<AUni ws="en">hangover</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the aftereffects of being drunk?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="cb64f831-132e-4267-afc5-488eec58994a" ownerguid="50b5aa47-15cf-4ce1-b196-5700b1dc872e"> -<Form> -<AUni ws="qvm-x-ach">capilla</AUni> -<AUni ws="qvm-x-acl">capilla</AUni> -<AUni ws="qvm-x-akh">capilla</AUni> -<AUni ws="qvm-x-akl">capilla</AUni> -<AUni ws="qvm-x-ame">capilla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="cb655848-c91a-4585-af91-478eb961e0ab"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chi</AUni> -<AUni ws="qvm-x-acl">chi; chi; che</AUni> -<AUni ws="qvm-x-akh">chi</AUni> -<AUni ws="qvm-x-akl">chi; chi; che</AUni> -<AUni ws="qvm-x-ame">chi</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.508" /> -<DateModified val="2022-10-16 14:52:17.701" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="61b43ee7-b8a0-4057-918f-92d19160ec57" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">EXCS</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="baa93a03-82fe-4274-944c-006ddad7d6aa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f3544a0c-b902-49af-96ca-a51744c1763f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx EXCS 
\entryTyp suffix 
\gENG EXCS 
\gSPN EXCS 
\e EXCS 
\c V1/N0 V2/N0 
\o 120 
\mp +FinalI 
\ach chi 
\akh chi 
\acl chi / _# 
\acl chi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl che +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chi / _# 
\akl chi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl che +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chi 
\mcc EXCS / [TakeEXCS] _ | jatichi; munachi; parlachi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="cb65fa4c-4205-413e-bbab-a83f3689d3af" ownerguid="31efa8f1-bc4a-4588-aa31-79c4654cf2dc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">corn.cob</AUni> -<AUni ws="es">coronta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d77430d7-f474-429a-b220-e6d33db59f94" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="cb696a15-1e04-4422-997a-58793f73bcc3" ownerguid="51fa1777-8f13-49c3-a309-354ebb1b5a14"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="Segment" guid="cb69a351-0e26-450a-a6cc-c287638d35c8" ownerguid="0bf46a6d-fab1-499d-a6e6-1d74b0149a24"> -<Analyses> -<objsur guid="d8a95e00-f7fc-4291-9bb7-5bb471f17bae" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemMsa" guid="cb6a2694-3459-4451-bd63-24d6fcd694cc" ownerguid="ced66b2b-f9c0-409f-b544-2509b384c45f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="cb6aea05-d97d-42ed-8e58-6a6ab589e63f" ownerguid="a4403790-4d4d-4844-a312-2515f0d17e35"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="cb6d7a60-dba6-43b7-a5e8-c0cad18c84c9" ownerguid="dd5d3ad7-9163-4276-a348-fecdd895bb37"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="cb7091da-8b7d-40c0-9c3e-ed02dda8d869" ownerguid="df2ee830-0668-43d7-8a32-e2fd3e7b31d8"> -<Question> -<AUni ws="en">(12) immediate future: what is about to occur.</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cb7140d4-d89f-4337-b5bb-b823ad4eb1f8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chupu</AUni> -<AUni ws="qvm-x-acl">chupu; chupu; chupo</AUni> -<AUni ws="qvm-x-akh">chupu</AUni> -<AUni ws="qvm-x-akl">chupu; chupu; chupo</AUni> -<AUni ws="qvm-x-ame">chupu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trupu</AUni> -<AUni ws="qvm-x-acl">*trupu</AUni> -<AUni ws="qvm-x-akh">*trupu</AUni> -<AUni ws="qvm-x-akl">*trupu</AUni> -<AUni ws="qvm-x-ame">*trupu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.178" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bc661667-0d83-4ec5-a081-92504492566f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trupu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f27390c1-019f-4917-bbc6-f5150aafcdb3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0cfe9f7c-cb2a-4016-82fc-f841f60d1b7e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trupu 
\entryTyp root 
\gENG boil 
\gSPN herida.infectad 
\e *trupu 
\c N0 
\ach chupu 
\akh chupu 
\acl chupu / _# 
\acl chupu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chupo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chupu / _# 
\akl chupu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chupo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chupu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="cb73df6d-c3a4-4067-bb3d-ec1df787d3a8" ownerguid="c964116f-8581-46ed-9c28-42316f94fb38"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Wachanar warmi culaycan. Manami imatapis rimacunatsu, sinöga sengalanpa wayrata pücan.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="cb76c6b7-1741-4242-a2a2-5d29080783cc" ownerguid="6a70c81a-31ac-4c37-bd61-f1ba2a278341"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yarpa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yarpa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yarpa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yarpa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yarpa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="390d6b92-9796-4636-b528-170a1b6aa62a" t="r" /> -</Morph> -<Msa> -<objsur guid="19ab5cf1-1864-4db0-94a6-3ed04ddf2ef7" t="r" /> -</Msa> -<Sense> -<objsur guid="b76c1d77-e3dc-4a8b-9cf7-6fb696740bed" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="cb7822f4-638d-491e-b2fe-5c2fffc3d8bc" ownerguid="51b16b91-7097-4e98-a371-4c32f2c566e1"> -<Form> -<AUni ws="qvm-x-ach">ucru</AUni> -<AUni ws="qvm-x-acl">ucru; ucru; ucro</AUni> -<AUni ws="qvm-x-akh">ukru</AUni> -<AUni ws="qvm-x-akl">ukru; ukru; ukro</AUni> -<AUni ws="qvm-x-ame">ukru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="cb783ad9-4650-416e-bf63-88c4ca43fe6a" ownerguid="30e6b42c-6bbf-4659-99e7-aa4b8e68c9ce"> -<Abbreviation> -<AUni ws="en">4.3.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.225" /> -<DateModified val="2022-9-23 16:55:8.225" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to having a good reputation--when most people think well of someone because he does good things and doesn't do bad things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Reputation</AUni> -</Name> -<Questions> -<objsur guid="6205d004-d6b0-450d-887d-b19c92b1d770" t="o" /> -<objsur guid="cb016abb-ad99-4975-87db-9b08aff63e2e" t="o" /> -<objsur guid="6714d5bd-4a94-495b-b937-287b0c7b771a" t="o" /> -<objsur guid="e9ffba5e-9576-40e1-bddd-4f97c38e65a0" t="o" /> -<objsur guid="1a422969-fa13-4960-a52e-113d344d0b6f" t="o" /> -<objsur guid="2b047f9d-78e2-4db2-ac04-2e9175d10d46" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="cb7be28a-4d75-44d8-a8e7-7577bbff8623" ownerguid="db2232d9-8b17-4920-936f-2b6249c6f7fa"> -<ExampleWords> -<AUni ws="en">gun, knife, pick, safe cracking tools, skeleton key, mask, gloves, get away car</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What tools are used by robbers?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="cb7c0a50-8fa2-49f2-87b9-96803f3b7cec" ownerguid="998d216b-33ee-495a-8fa3-a58161623411"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="cb7c33f2-148b-44f9-bce6-855453fc253a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gocha</AUni> -<AUni ws="qvm-x-acl">gocha</AUni> -<AUni ws="qvm-x-akh">qocha</AUni> -<AUni ws="qvm-x-akl">qocha</AUni> -<AUni ws="qvm-x-ame">qucha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qutra.v</AUni> -<AUni ws="qvm-x-acl">*qutra.v</AUni> -<AUni ws="qvm-x-akh">*qutra.v</AUni> -<AUni ws="qvm-x-akl">*qutra.v</AUni> -<AUni ws="qvm-x-ame">*qutra.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.902" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2aea920f-b9de-4d07-829c-476d73484c69" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qutra.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bfdb3ba4-a616-4e5f-9187-69e050d94694" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5e6342f5-2c2b-4152-aa0f-e93ce5e29872" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qutra.v 
\entryTyp root 
\gENG 
\gSPN 
\e *qutra.v 
\c V1 
\ach gocha 
\akh qocha 
\acl gocha 
\akl qocha 
\ame qucha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="cb806c3c-2219-474e-8cb7-875357e338dc" ownerguid="2cb38051-cb13-482b-9ac1-0d4eb2145410"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sharp</AUni> -<AUni ws="es">filo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c0ecce91-f94c-421f-8419-8bece4bc3a48" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="cb83441f-eb47-4fba-84b7-3408fb808b98"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">botica</AUni> -<AUni ws="qvm-x-acl">botica</AUni> -<AUni ws="qvm-x-akh">botica</AUni> -<AUni ws="qvm-x-akl">botica</AUni> -<AUni ws="qvm-x-ame">botica</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+botica</AUni> -<AUni ws="qvm-x-acl">+botica</AUni> -<AUni ws="qvm-x-akh">+botica</AUni> -<AUni ws="qvm-x-akl">+botica</AUni> -<AUni ws="qvm-x-ame">+botica</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.971" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="54046f23-352c-4207-b666-0febc4c398dd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+botica</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="23a23d7d-caff-46c7-b7aa-d86a56794770" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dd455536-b9b1-4bfb-be08-b33b87e7a0b4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +botica 
\entryTyp root 
\gENG pharmacy 
\gSPN botica 
\e +botica 
\c N0 
\ach botica 
\akh botica 
\acl botica 
\akl botica 
\ame botica</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="cb867ce7-ff07-4934-aee9-b6bbade71133" ownerguid="02e8fc00-fb8e-49d5-b684-031eb5e10ed4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.hot</AUni> -<AUni ws="es">ser.caliente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9b2e9688-e4ac-4eef-8383-e5b76194f351" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="cb887b08-deb1-4282-8e5c-42b81240edec" ownerguid="9c00b1af-91e4-4840-a1d7-2f6e86dbe9f9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cemetery</AUni> -<AUni ws="es">panteón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8998ea31-13c5-475e-8af1-bbc3601d8d69" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="cb88b4c7-91dc-4a42-aee9-762ffed8db03" ownerguid="3e1121ca-9fe4-4e30-bb6b-46425b3938c0"> -<Form> -<AUni ws="qvm-x-ach">talentu; talento</AUni> -<AUni ws="qvm-x-acl">talentu; talentu; talento</AUni> -<AUni ws="qvm-x-akh">talentu; talento</AUni> -<AUni ws="qvm-x-akl">talentu; talentu; talento</AUni> -<AUni ws="qvm-x-ame">talentu; talento</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="cb88e27c-2e60-4492-ad8a-89e99c8da667" ownerguid="100e62a6-b6f4-4b30-b317-0517d6b102a9"> -<ExampleWords> -<AUni ws="en">inhibiting, intimidating, uncomfortable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that causes someone to feel shy?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cb8b136c-4a59-4e9e-97f9-995d093a9f32" ownerguid="75825d72-695b-4e92-9f33-0f3ab4d7dd11"> -<ExampleWords> -<AUni ws="en">salivate, mouth waters, juices flow, salivation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the production of saliva?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="cb8b1e0e-8308-4752-b019-654377e8dffa" ownerguid="cd994f17-c4c5-441f-8928-619285f963fb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="cb8dac15-14d3-453c-a1d5-47f4768503af" ownerguid="b4aa4bbd-8abf-4503-96e4-05c75efd23d5"> -<ExampleWords> -<AUni ws="en">weather, weather conditions, atmospheric (conditions)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the weather?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cb8ed52c-3286-4f38-9623-4e071cb1b1d8" ownerguid="0a85ee64-e466-4295-8e2c-5b06c8e3054f"> -<ExampleWords> -<AUni ws="en">press, push on, apply pressure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to pressing something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="cb90bc06-170f-4366-8352-9dd0901c214d" ownerguid="35084c69-7be0-4d8b-81e0-e354085c47e6"> -<Form> -<AUni ws="qvm-x-ach">lapta</AUni> -<AUni ws="qvm-x-acl">lapta</AUni> -<AUni ws="qvm-x-akh">lapta</AUni> -<AUni ws="qvm-x-akl">lapta</AUni> -<AUni ws="qvm-x-ame">lapta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="cb95189c-8c74-465b-af07-48e08dbf7c39" ownerguid="f4491f9b-3c5e-42ab-afc0-f22e19d0fff5"> -<Abbreviation> -<AUni ws="en">3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.123" /> -<DateModified val="2022-9-23 16:55:8.123" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words related to feelings and emotions.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25 Attitudes and Emotions</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Emotion</AUni> -</Name> -<OcmCodes> -<Uni>152 Drives and Emotions; 150 Behavior Processes and Personality</Uni> -</OcmCodes> -<Questions> -<objsur guid="9e963c0b-e872-403b-8103-4759b18a3cbe" t="o" /> -<objsur guid="e5083236-b360-4e58-9627-719362a80ada" t="o" /> -<objsur guid="1feb2fbe-35ba-48a6-bfbe-e3f2cc4102d7" t="o" /> -<objsur guid="7b3cd680-a67e-47e7-bc95-9ca3e3ba669c" t="o" /> -<objsur guid="f0a69341-ef87-44ba-a827-aa08ab6fca11" t="o" /> -<objsur guid="fe1feb7c-7702-4e8e-8473-0af23aade88e" t="o" /> -<objsur guid="3f068d6e-b99d-4e75-856f-c2d4472da658" t="o" /> -<objsur guid="ad948eca-922b-4019-8f6d-9085de247bac" t="o" /> -<objsur guid="68fd1ec2-548a-42f2-92f2-edb9d3fba317" t="o" /> -<objsur guid="ada61b4a-d11a-44ad-93b8-06b1f4fffbd9" t="o" /> -<objsur guid="6e2a60ba-d321-4cbe-9c3e-d2d478ea8b99" t="o" /> -<objsur guid="626a4bdf-6b2b-4d5a-a617-3c3d9f4e6758" t="o" /> -<objsur guid="8c4e1bfe-9ef2-442c-9698-fd44044d4492" t="o" /> -<objsur guid="1328fef4-f7fa-4670-b0d9-99d949a07427" t="o" /> -<objsur guid="c6ad0473-2bb8-4873-9879-33de36d6fcc7" t="o" /> -<objsur guid="542b40ae-c96d-4a2f-8a45-f9829db86d57" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="474aa982-8350-47e2-a983-e1e2bce9d928" t="o" /> -<objsur guid="60dc7cf6-0a41-4cd3-99a6-0b7a71488e7e" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="cb9586fd-055e-453d-bec8-7c59e6141963" ownerguid="1f2173bf-8e27-4cb2-a28a-2ec98728541d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="cb98d95c-4b52-49cb-adcf-420fe8a6133d" ownerguid="1ec14648-c92e-4ac1-8649-0e9f54e0136f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="cb9958ec-78f1-408f-8832-0cd3631c1459" ownerguid="fcffd439-c0e1-4e21-a3b3-3f868edee0cd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chief</AUni> -<AUni ws="es">gamonal</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="041446b9-da66-45a8-b5f5-8810bec937ce" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="cb99a086-8c6d-4f90-81db-6afa69ae5455" ownerguid="e76227e8-4a04-4fbd-a16e-5baa3d9e97a9"> -<Abbreviation> -<AUni ws="en">1.6.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the sounds animals make. It is necessary to think through the sounds each type of animal makes, especially the important ones.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Animal sounds</AUni> -</Name> -<OcmCodes> -<Uni>136d Sounds</Uni> -</OcmCodes> -<Questions> -<objsur guid="6f7df74f-6b82-4484-be37-37ca54707eb9" t="o" /> -<objsur guid="455f582b-a09a-4fad-a282-8c078350088b" t="o" /> -<objsur guid="ad15ca92-7243-48be-84a3-88fba0a0e24f" t="o" /> -<objsur guid="e522ee79-7bee-4e31-8e0e-a46006701af0" t="o" /> -<objsur guid="b4a4b649-e2b0-4f95-95a8-8f21981eea89" t="o" /> -<objsur guid="ffa04710-55e8-4483-a84c-3371f0edc7d1" t="o" /> -<objsur guid="59a16e61-08b3-411b-b3f8-57f8b49eb58e" t="o" /> -<objsur guid="8a7df79c-a968-4051-9d08-2e3e9ed4021d" t="o" /> -<objsur guid="35be4deb-c0c5-4227-bb03-65c77932f2a7" t="o" /> -<objsur guid="2d0b59fb-b2a8-4b15-9413-ac41b8af1581" t="o" /> -<objsur guid="8171dec6-6fa5-47fe-9222-675fb4fe4ba9" t="o" /> -<objsur guid="72933e4b-192d-45e1-9df3-cca2aa702685" t="o" /> -<objsur guid="ac3177d5-4d9e-4542-a62e-9afe914fb090" t="o" /> -<objsur guid="a408dd52-a745-4eac-935e-ab5d84e7476a" t="o" /> -<objsur guid="256324eb-cbdd-4ae7-9fdd-a0445c8787d9" t="o" /> -<objsur guid="ef6a4726-6dae-49b4-8c9e-5e85d5aca4cb" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="fd33670e-ef16-4566-a62e-aa077e58407b" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="cb9f3356-5143-4671-bfd5-b97046f03937"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">to:ma</AUni> -<AUni ws="qvm-x-acl">to:ma</AUni> -<AUni ws="qvm-x-akh">to:ma</AUni> -<AUni ws="qvm-x-akl">to:ma</AUni> -<AUni ws="qvm-x-ame">to:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tomar</AUni> -<AUni ws="qvm-x-acl">+tomar</AUni> -<AUni ws="qvm-x-akh">+tomar</AUni> -<AUni ws="qvm-x-akl">+tomar</AUni> -<AUni ws="qvm-x-ame">+tomar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.944" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="38e74415-a978-46ac-b3e5-5006fe052b2d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tomar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="462bb3be-17e7-4830-8bd9-8bf041c6dec2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="527360b6-0108-45b7-894b-278977ad0f35" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tomar 
\entryTyp root 
\gENG 
\gSPN tomar 
\e +tomar 
\c V2 
\ach to:ma 
\akh to:ma 
\acl to:ma 
\akl to:ma 
\ame to:ma 
\i Gen 47.27 Tsaynogpami Jacobpis y paypita miragcunapis Egiptucho cag Gosén partita posesionta tömargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="cba15e5a-705c-453e-b762-a5a0c960b7c4" ownerguid="35dc9c39-dd28-4ab7-85aa-0de42829394a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">play</AUni> -<AUni ws="es">jugar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="82b535a1-2dbe-47e8-80bb-1def69778fec" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="cba1f6cc-58ac-4d09-aa6a-1661f5945787" ownerguid="d10301f3-573c-4005-ad65-1c73fb80b3b6"> -<Abbreviation> -<AUni ws="en">3.2.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.103" /> -<DateModified val="2022-9-23 16:55:8.103" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that describe something that is easy to understand.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Understandable</AUni> -</Name> -<Questions> -<objsur guid="0cf8282b-0541-4060-8909-7657ff7634ad" t="o" /> -<objsur guid="41bbd16f-18f1-456d-ad5e-edb13aa0b421" t="o" /> -<objsur guid="94c404f5-8757-4339-86c4-0dfdd5abb678" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="PunctuationForm" guid="cba2872b-1495-408e-8d6d-34d9bb04e3dc"> -<Form> -<Str> -<Run ws="qvm-x-akh">:</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="cba2de81-e6ac-4c25-981c-cda17b808635" ownerguid="45f7b003-ade3-4efc-8dee-259dcbf80a4a"> -<ExampleWords> -<AUni ws="en">implore, plead, beseech, entreat, importune</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to asking for something when you are desperate to get it?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cba3b774-c8be-441f-ae3f-f3d6c83e5274"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsuri</AUni> -<AUni ws="qvm-x-acl">tsuri; tsuri; tsure</AUni> -<AUni ws="qvm-x-akh">tsuri</AUni> -<AUni ws="qvm-x-akl">tsuri; tsuri; tsure</AUni> -<AUni ws="qvm-x-ame">tsuri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*churi</AUni> -<AUni ws="qvm-x-acl">*churi</AUni> -<AUni ws="qvm-x-akh">*churi</AUni> -<AUni ws="qvm-x-akl">*churi</AUni> -<AUni ws="qvm-x-ame">*churi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.345" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cf9bd705-f17b-4a5e-a9df-1d6074f14622" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*churi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0eb9ad89-62b1-4032-a9a0-66d396ddb503" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a3bd0dd3-aaa0-449b-8fc3-05967b001cb3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *churi 
\entryTyp root 
\gENG son 
\gSPN hijo 
\e *churi 
\c N0 
\mp +FinalI 
\ach tsuri 
\akh tsuri 
\acl tsuri / _# 
\acl tsuri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tsure +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsuri / _# 
\akl tsuri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tsure +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsuri</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="cba6876c-5b48-42f4-ae0a-7fbe9bb971ef" ownerguid="bf9606ec-9a8e-4822-8bfd-d5eebc58c65b"> -<Abbreviation> -<AUni ws="en">8.3.3.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.609" /> -<DateModified val="2022-9-23 16:55:8.609" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a shadow--the area on the ground where the light does not shine because something is in the way. For instance if the sun (or another light) is shining on an object, the area behind the object is in shadow (dark).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Shadow</AUni> -</Name> -<Questions> -<objsur guid="8d000508-5b70-4cc8-87cc-69811b5502e5" t="o" /> -<objsur guid="500b4b3a-5d72-462c-ad99-7cbccad1de16" t="o" /> -<objsur guid="37dc0590-9057-4959-8767-dc29e5c325a8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="cba95743-4b61-4aaf-9861-ef90fc42de76" ownerguid="c16334a0-be29-4a1e-a870-4cb3f1df984d"> -<ExampleWords> -<AUni ws="en">gathering, assemblage, bunch, collection, concentration, group, heap, huddle, mass, pile, stack</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a group of things that have been gathered together?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cbac3e35-e569-426a-a458-6cff4b51dec2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">o:si</AUni> -<AUni ws="qvm-x-acl">o:si; o:si; o:se</AUni> -<AUni ws="qvm-x-akh">o:si</AUni> -<AUni ws="qvm-x-akl">o:si; o:si; o:se</AUni> -<AUni ws="qvm-x-ame">o:si</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hoz</AUni> -<AUni ws="qvm-x-acl">+hoz</AUni> -<AUni ws="qvm-x-akh">+hoz</AUni> -<AUni ws="qvm-x-akl">+hoz</AUni> -<AUni ws="qvm-x-ame">+hoz</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.749" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="38789334-fada-4cfc-9122-077bdfda02b5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hoz</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="782a8746-6760-4b57-bdf4-c7389acfb296" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="17686a2d-5914-4c4c-9d89-5eb941596f70" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hoz 
\entryTyp root 
\gENG adze 
\gSPN hoz 
\e +hoz 
\c N0 
\mp +assimilated 
\ach o:si 
\akh o:si 
\acl o:si / _# 
\acl o:si +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl o:se +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl o:si / _# 
\akl o:si +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl o:se +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame o:si 
\mp +FinalI</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="cbac5ff6-e276-410c-bec4-c79dcc227644" ownerguid="3620d0a2-cf9f-4f8f-8efb-10a74b607d69"> -<Form> -<AUni ws="qvm-x-ach">pucun</AUni> -<AUni ws="qvm-x-acl">pucun</AUni> -<AUni ws="qvm-x-akh">pukun</AUni> -<AUni ws="qvm-x-akl">pukun</AUni> -<AUni ws="qvm-x-ame">pukun</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="cbae6099-cec1-42ce-8a29-ac6fbf9317ac" ownerguid="a730d0b4-b6db-45ac-bf6e-cefc96ae3fbb"> -<ExampleWords> -<AUni ws="en">con man, swindler, snake, cheat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to someone who deceives in order to steal?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cbaf7804-5613-45ab-b7e8-f975ac2ec5b9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ganchu; gancho</AUni> -<AUni ws="qvm-x-acl">ganchu; ganchu; gancho</AUni> -<AUni ws="qvm-x-akh">ganchu; gancho</AUni> -<AUni ws="qvm-x-akl">ganchu; ganchu; gancho</AUni> -<AUni ws="qvm-x-ame">ganchu; gancho</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gancho</AUni> -<AUni ws="qvm-x-acl">+gancho</AUni> -<AUni ws="qvm-x-akh">+gancho</AUni> -<AUni ws="qvm-x-akl">+gancho</AUni> -<AUni ws="qvm-x-ame">+gancho</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.599" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c7828841-96ea-4592-97b2-a834b4ece694" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gancho</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="148e48e6-4231-4d73-8085-e068b97a341a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6aa9f36b-2948-46bd-a6eb-3f59e0abf2be" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gancho 
\entryTyp root 
\gENG pin 
\gSPN gancho 
\e +gancho 
\c N0 
\ach ganchu / ~_# 
\ach gancho / _# 
\akh ganchu / ~_# 
\akh gancho / _# 
\acl ganchu / ~_# 
\acl ganchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gancho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ganchu / ~_# 
\akl ganchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl gancho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ganchu / ~_# 
\ame gancho / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="cbb26a29-e43e-4078-a9a8-41030a57fec7" ownerguid="c27b87cf-1211-4df2-96b1-12c416edabbe"> -<ExampleWords> -<AUni ws="en">sense of humor, (have a real) funny bone, (be/have a great) wit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person's sense of humor (ability to joke)?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="cbb63301-df75-40fc-aa58-267eddc00d80" ownerguid="11e83147-fac8-422d-99dc-be0903a78eb4"> -<Form> -<AUni ws="qvm-x-ach">junta</AUni> -<AUni ws="qvm-x-acl">junta</AUni> -<AUni ws="qvm-x-akh">junta</AUni> -<AUni ws="qvm-x-akl">junta</AUni> -<AUni ws="qvm-x-ame">junta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="cbb63853-32b5-4e8d-bbff-52b922b0f46d" ownerguid="09d452b3-8f58-4d30-bdc8-3fa16032a0c2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="cbb679d3-ae6f-497e-b7d3-16b5a16a0730" ownerguid="fdee8ed6-d450-416a-816e-9a16e82804d8"> -<Category> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</Category> -<Evaluations> -<objsur guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="9bb8052c-9c17-4f4d-ba12-693ed4024e85" t="o" /> -<objsur guid="254b8872-916d-4081-883b-0e879f6bf0fe" t="o" /> -<objsur guid="e320bf63-5820-4661-818f-258491841d43" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="cbb70ec5-0baa-4d99-8979-9ae7bda7602d" ownerguid="b8d2fdb9-22ea-4040-8abb-aeeff0399f23"> -<ExampleWords> -<AUni ws="en">shoot, gun down, blow someone away, stab, stab someone to death, butcher, behead, decapitate, beat someone to death, asphyxiate, choke, garrote, strangle, suffocate, throttle, smother, stifle, crucify, drown, electrocute, hang, hanging, poison, stone, starve</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe the manner of killing someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="cbb7982f-9627-4c18-8355-9d5e59192955" ownerguid="c6a618c4-3f9b-4313-89e4-b75669417ca8"> -<Form> -<AUni ws="qvm-x-ach">trilladöra</AUni> -<AUni ws="qvm-x-acl">trilladöra</AUni> -<AUni ws="qvm-x-akh">trilladöra</AUni> -<AUni ws="qvm-x-akl">trilladöra</AUni> -<AUni ws="qvm-x-ame">trilladöra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PunctuationForm" guid="cbbaeebe-dc46-4350-9e43-aa28e32ab986"> -<Form> -<Str> -<Run ws="qvm-x-akh">;</Run> -</Str> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="cbbd457e-93e0-45ec-bf3c-1fb8644af3b2" ownerguid="97cc9e37-cfac-4c4f-a99b-f302763bac01"> -<Form> -<AUni ws="qvm-x-ach">abril</AUni> -<AUni ws="qvm-x-acl">abril; abril; abrel</AUni> -<AUni ws="qvm-x-akh">abril</AUni> -<AUni ws="qvm-x-akl">abril; abril; abrel</AUni> -<AUni ws="qvm-x-ame">abril</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="cbbfe032-c0f0-47b5-8d57-188489c27050" ownerguid="6646f5bd-fbce-44b4-8f80-3dd989e53d4c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.smoke</AUni> -<AUni ws="es">sahumar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="33fe7a8a-427d-46f8-916d-8c2ab202280b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="cbc0a8f5-9cba-41d2-a7e5-565fbf09c8c4" ownerguid="767aa167-af3d-4e11-a68b-ec31f9d2ef1a"> -<Abbreviation> -<AUni ws="en">3.5.6.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.174" /> -<DateModified val="2022-9-23 16:55:8.174" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the expression of good feelings, including laughing--the sounds a person makes when he is enjoying himself or thinks something is funny.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25L Laugh, Cry, Groan x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Laugh</AUni> -</Name> -<Questions> -<objsur guid="aa59f93b-742d-49b8-a57e-b275a771fe00" t="o" /> -<objsur guid="f2f1ba22-3f71-4373-a043-169cd45c656f" t="o" /> -<objsur guid="9258788b-fd46-41cb-8b26-a45e70551696" t="o" /> -<objsur guid="af46f626-b9e1-4255-b2f8-e9cacf67d7e5" t="o" /> -<objsur guid="fb906d76-ba4d-40a9-894b-b6980d2b74d2" t="o" /> -<objsur guid="17e20b50-8ff5-4461-aa01-1fb2723f1c82" t="o" /> -<objsur guid="d6cd413a-bdd3-45ad-96b8-75932009c0a5" t="o" /> -<objsur guid="28c7b919-7694-4bf1-ad27-2ce0a2487588" t="o" /> -<objsur guid="be6e490c-a324-48ca-88e3-32e53cb6e8cd" t="o" /> -<objsur guid="317105a0-c45c-4b03-9211-f8e8d2e2b50e" t="o" /> -<objsur guid="ff4d5eb2-3071-4706-93be-c3cf84a9b206" t="o" /> -<objsur guid="3e17178d-5dac-41dc-b9e9-6cb8d519a1dd" t="o" /> -<objsur guid="ec4b726a-d098-4686-a6c4-0c80f6e27774" t="o" /> -<objsur guid="16b034f8-8365-4628-9775-8ef1e117a1f8" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="c27b87cf-1211-4df2-96b1-12c416edabbe" t="r" /> -<objsur guid="e2d3294b-4463-48bb-95e4-8c9b5238ecec" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="cbc22dc6-a815-49f8-985f-00001c278817"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fina:du</AUni> -<AUni ws="qvm-x-acl">fina:du; fina:du; fina:do</AUni> -<AUni ws="qvm-x-akh">fina:du</AUni> -<AUni ws="qvm-x-akl">fina:du; fina:du; fina:do</AUni> -<AUni ws="qvm-x-ame">fina:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+finado</AUni> -<AUni ws="qvm-x-acl">+finado</AUni> -<AUni ws="qvm-x-akh">+finado</AUni> -<AUni ws="qvm-x-akl">+finado</AUni> -<AUni ws="qvm-x-ame">+finado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.558" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="20d53906-3a6f-4975-b4a7-db3a5f5861e5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+finado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2533fe71-e6ec-4e7b-855d-63045a6bbeba" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="42378eb9-7411-46c7-8b90-d25ee5da20d6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +finado 
\entryTyp root 
\gENG deceased 
\gSPN finado 
\e +finado 
\c N0 
\ach fina:du 
\akh fina:du 
\acl fina:du / _# 
\acl fina:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl fina:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl fina:du / _# 
\akl fina:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl fina:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame fina:du 
\i 2CH 21.2 Paycuna cargan finädu Josafatpa tsurincunami.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="cbc24a98-1c64-467e-98aa-251a28e4c0b8" ownerguid="7fe69c4c-2603-4949-afca-f39c010ad24e"> -<Abbreviation> -<AUni ws="en">2.2.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to defecation.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Defecate, feces</AUni> -</Name> -<OcmCodes> -<Uni>514 Elimination</Uni> -</OcmCodes> -<Questions> -<objsur guid="d25b28dd-1ed9-4d69-b3b0-1d93ae65913d" t="o" /> -<objsur guid="be170807-40d9-475b-8d63-393984a5ee71" t="o" /> -<objsur guid="a716282c-9ae7-4885-a43f-eb10161ef656" t="o" /> -<objsur guid="303fb9fb-f6f1-46f0-b341-dbf71f00dc2d" t="o" /> -<objsur guid="bb46ea76-daf5-4ac1-aaa4-6b79f02fe710" t="o" /> -<objsur guid="9ac61bf9-3d33-40d9-baa2-357eff07f91f" t="o" /> -<objsur guid="348a9784-be12-457f-8957-952190a70c08" t="o" /> -<objsur guid="1277c4ad-12b1-4f80-b767-b592eecef432" t="o" /> -<objsur guid="e3b96bda-4f64-4c0d-8a0d-2b5cd18ab8c4" t="o" /> -<objsur guid="06886708-a6db-44b9-b322-8cf0087e2e5b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="cbc7166b-1360-4094-8d98-a77a380fdc86"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pani</AUni> -<AUni ws="qvm-x-acl">pani; pani; pane</AUni> -<AUni ws="qvm-x-akh">pani</AUni> -<AUni ws="qvm-x-akl">pani; pani; pane</AUni> -<AUni ws="qvm-x-ame">pani</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pañi</AUni> -<AUni ws="qvm-x-acl">*pañi</AUni> -<AUni ws="qvm-x-akh">*pañi</AUni> -<AUni ws="qvm-x-akl">*pañi</AUni> -<AUni ws="qvm-x-ame">*pañi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.697" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="135f5aaf-e191-4688-9a98-bc76160fb439" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pañi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="311238e6-8918-42d3-aa2d-3e099ed22849" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8b35e887-b76d-4ca4-a5ae-7e653c1c103f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pañi 
\entryTyp root 
\gENG sister 
\gSPN hermana 
\e *pañi 
\c N0 
\mp +FinalI 
\ach pani 
\akh pani 
\acl pani / _# 
\acl pani +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pane +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pani / _# 
\akl pani +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pane +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pani</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="cbc9a466-67c0-41a2-a6cf-b958119ad3a4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">candelabru; candelabro</AUni> -<AUni ws="qvm-x-acl">candelabru; candelabru; candelabro</AUni> -<AUni ws="qvm-x-akh">candelabru; candelabro</AUni> -<AUni ws="qvm-x-akl">candelabru; candelabru; candelabro</AUni> -<AUni ws="qvm-x-ame">candelabru; candelabro</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+candelabro.1</AUni> -<AUni ws="qvm-x-acl">+candelabro.1</AUni> -<AUni ws="qvm-x-akh">+candelabro.1</AUni> -<AUni ws="qvm-x-akl">+candelabro.1</AUni> -<AUni ws="qvm-x-ame">+candelabro.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.41" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c1f075e3-de71-487d-96ac-56378bf4a4a5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+candelabro.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ef915375-b47b-4808-b479-2af3d6c90766" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="62668b36-cdcd-4077-aaf6-b8a81b5b8017" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +candelabro.1 
\entryTyp root 
\gENG candelabra 
\gSPN candelabro 
\e +candelabro.1 
\c N0 
\ach candelabru / ~_# 
\ach candelabro / _# 
\akh candelabru / ~_# 
\akh candelabro / _# 
\acl candelabru / ~_# 
\acl candelabru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl candelabro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl candelabru / ~_# 
\akl candelabru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl candelabro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame candelabru / ~_# 
\ame candelabro / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="cbcab7c3-6c8f-415b-8245-53e500b14f1d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gringu; gringo</AUni> -<AUni ws="qvm-x-acl">gringu; gringu; gringo</AUni> -<AUni ws="qvm-x-akh">gringu; gringo</AUni> -<AUni ws="qvm-x-akl">gringu; gringu; gringo</AUni> -<AUni ws="qvm-x-ame">gringu; gringo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gringo</AUni> -<AUni ws="qvm-x-acl">+gringo</AUni> -<AUni ws="qvm-x-akh">+gringo</AUni> -<AUni ws="qvm-x-akl">+gringo</AUni> -<AUni ws="qvm-x-ame">+gringo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.629" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e27c658b-be2d-4ffa-94ee-5757a4a85694" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gringo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c11fc281-f9f0-4920-adf1-bcb549322416" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a825ef96-397a-4b35-8d68-0ab0b683f27b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gringo 
\entryTyp root 
\gENG gringo 
\gSPN gringo 
\e +gringo 
\c N0 
\ach gringu / ~_# 
\ach gringo / _# 
\akh gringu / ~_# 
\akh gringo / _# 
\acl gringu / ~_# 
\acl gringu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gringo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl gringu / ~_# 
\akl gringu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl gringo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame gringu / ~_# 
\ame gringo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="cbcbee3a-7a4c-4c83-b053-26f793db9765" ownerguid="37ff94b1-1ee9-4850-ae3c-c9477bf6f4e7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">burn</AUni> -<AUni ws="es">quemar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f31f5c35-89e7-4ec4-b634-c88e03d37851" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="cbcc4cc6-7856-4fe7-bf82-25a0a0e90741" ownerguid="ff6f23ca-18c4-4579-8f38-322b606f70c2"> -<Form> -<AUni ws="qvm-x-ach">täsa</AUni> -<AUni ws="qvm-x-acl">täsa</AUni> -<AUni ws="qvm-x-akh">täsa</AUni> -<AUni ws="qvm-x-akl">täsa</AUni> -<AUni ws="qvm-x-ame">täsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="cbcef0e3-6664-4e72-a80d-34012498434f" ownerguid="513e902c-403c-4277-8abd-e9d9d97fb074"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2SA 3.34 Chaquiquicunapis manami manyarashgatsu cargan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="cbcff912-e1c2-4d9b-9938-85d73e7e7265" ownerguid="f7960e84-5af9-4999-9028-783058aa8c5c"> -<Abbreviation> -<AUni ws="en">8.1.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.569" /> -<DateModified val="2022-9-23 16:55:8.569" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to some--a number or amount of things or people when the number is not stated; an indefinite number or amount.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Some</AUni> -</Name> -<Questions> -<objsur guid="b0c4c22b-602e-4abc-82e4-f7c32ee6b0dc" t="o" /> -<objsur guid="034ee870-c7c2-4c44-a410-e781bc9b43dd" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="cbd559f1-8c1a-43f1-9beb-d712229a35ad" ownerguid="4268dc30-454d-41f8-8187-b430b3e46ec3"> -<Form> -<AUni ws="qvm-x-ach">ogla</AUni> -<AUni ws="qvm-x-acl">ogla</AUni> -<AUni ws="qvm-x-akh">oqla</AUni> -<AUni ws="qvm-x-akl">oqla</AUni> -<AUni ws="qvm-x-ame">uqla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="cbdb0a1a-6ed7-4b6d-8c02-0be0b72996c7" ownerguid="8ce6709f-f772-4638-a1aa-c132666f3563"> -<ExampleWords> -<AUni ws="en">annoyance, exasperation, frustration, irritation, nuisance, pain in the neck, pain in the ass, pain in the butt, pest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something that causes someone to feel annoyed?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="cbdbd380-27d7-42ca-822c-ae9443275d26" ownerguid="fe951639-653a-4af7-a1e9-c24a92b94011"> -<Form> -<AUni ws="qvm-x-ach">upäla</AUni> -<AUni ws="qvm-x-acl">upäla</AUni> -<AUni ws="qvm-x-akh">upäla</AUni> -<AUni ws="qvm-x-akl">upäla</AUni> -<AUni ws="qvm-x-ame">upäla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="cbdbe2ef-2af7-431c-ae44-3a99b8072ae8" ownerguid="c029eed8-2ec0-4f6f-aa22-3a066bb23ea6"> -<ExampleWords> -<AUni ws="en">and so on, and so on and so forth, et cetera, etc, and whatever, or whatever, and the like, and suchlike</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that you could add more things to the end of a list?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="cbdbfb74-0f26-4097-b3d0-fa160ed0284a" ownerguid="a8a25f74-cf52-43c2-9bf2-41863f060fa6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="cbe3b7b6-d8b1-40a5-8fea-46369188fc85" ownerguid="00041516-72d1-4e56-9ed8-fe235a9b1a68"> -<ExampleWords> -<AUni ws="en">successive, consecutive, alternating, serial</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe things in a series?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="cbe94dff-a88d-4606-915e-5ff63d796b74" ownerguid="2adb4fb7-4801-4305-abe5-600911718370"> -<Form> -<AUni ws="qvm-x-ach">carta</AUni> -<AUni ws="qvm-x-acl">carta</AUni> -<AUni ws="qvm-x-akh">carta</AUni> -<AUni ws="qvm-x-akl">carta</AUni> -<AUni ws="qvm-x-ame">carta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="cbf19412-bcce-4503-95d2-69300d126448" ownerguid="8602761b-c356-403d-a5cf-8687d677c5c7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="cbf21710-d2f3-4284-ae07-9a3635ccde6b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pincullu</AUni> -<AUni ws="qvm-x-acl">pincullu; pincullu; pincullo</AUni> -<AUni ws="qvm-x-akh">pinkullu</AUni> -<AUni ws="qvm-x-akl">pinkullu; pinkullu; pinkullo</AUni> -<AUni ws="qvm-x-ame">pinkullu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pinkullu</AUni> -<AUni ws="qvm-x-acl">*pinkullu</AUni> -<AUni ws="qvm-x-akh">*pinkullu</AUni> -<AUni ws="qvm-x-akl">*pinkullu</AUni> -<AUni ws="qvm-x-ame">*pinkullu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.840" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b5c489d8-805a-4f94-b500-739491902545" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pinkullu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e029ec88-2772-4fd1-a792-3dd4fe05df28" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3c8e1f29-b3ba-4c9e-b623-3ab1597dde13" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pinkullu 
\entryTyp root 
\gENG flute 
\gSPN flauta 
\e *pinkullu 
\c N0 
\ach pincullu 
\akh pinkullu 
\acl pincullu / _# 
\acl pincullu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pincullo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pinkullu / _# 
\akl pinkullu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pinkullo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pinkullu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="cbf7af6a-c567-4d2b-a46a-80b16ee8f06b" ownerguid="62ac799d-ad65-4fb5-a08f-a2c750b94997"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="cbf9f9b7-1307-435d-9c54-52c14e687f50" ownerguid="dcd450eb-28be-4834-9ab6-ae58b1827137"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">batallion</AUni> -<AUni ws="es">batallon</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5af03c53-f2e9-411b-ad74-f2074ac7e823" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="cbfdb722-1cab-4d70-8a3f-bbaf4c8ff5f0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shilpa</AUni> -<AUni ws="qvm-x-acl">shilpa</AUni> -<AUni ws="qvm-x-akh">shilpa</AUni> -<AUni ws="qvm-x-akl">shilpa</AUni> -<AUni ws="qvm-x-ame">shilpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shillpa</AUni> -<AUni ws="qvm-x-acl">*shillpa</AUni> -<AUni ws="qvm-x-akh">*shillpa</AUni> -<AUni ws="qvm-x-akl">*shillpa</AUni> -<AUni ws="qvm-x-ame">*shillpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.581" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e787cfde-22e3-4565-9f1d-15b96f6b6b2f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shillpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9d5b5ff9-89cc-4980-96d9-fc62391554a8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c75d5069-2530-4a89-a8f7-0554ae1596bd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shillpa 
\entryTyp root 
\gENG mend 
\gSPN remendar 
\e *shillpa 
\c V2 
\ach shilpa 
\akh shilpa 
\acl shilpa 
\akl shilpa 
\ame shilpa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="cc01c0cc-8d28-44d1-96e4-fe947148b72c" ownerguid="73f3bd83-c9a5-4613-aeb1-0c5076d4850e"> -<ExampleWords> -<AUni ws="en">scale, scaly, fin, tail fin, dorsal fin, gill, guts, slime, slimy, fishy smell</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the parts of fish?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cc02c930-5692-4eaa-af3f-2bc5210eda20"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ultraja</AUni> -<AUni ws="qvm-x-acl">ultraja</AUni> -<AUni ws="qvm-x-akh">ultraja</AUni> -<AUni ws="qvm-x-akl">ultraja</AUni> -<AUni ws="qvm-x-ame">ultraja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ultrajar</AUni> -<AUni ws="qvm-x-acl">+ultrajar</AUni> -<AUni ws="qvm-x-akh">+ultrajar</AUni> -<AUni ws="qvm-x-akl">+ultrajar</AUni> -<AUni ws="qvm-x-ame">+ultrajar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.210" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5b9c1b3e-2b71-4beb-a06c-9e3ae396c32f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ultrajar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8a07bf49-cdf2-4a89-9e4f-39e847fdc2d4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="88d7b990-6994-4b57-a35f-0d8ebd7d28de" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ultrajar 
\entryTyp root 
\gENG 
\gSPN 
\e +ultrajar 
\c V2 
\ach ultraja 
\akh ultraja 
\acl ultraja 
\akl ultraja 
\ame ultraja</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="cc05fc77-976f-4496-afc5-92d774ebb7b9" ownerguid="ad012705-24fa-4bf5-adca-5d416dee4250"> -<Form> -<AUni ws="qvm-x-ach">jurquëta</AUni> -<AUni ws="qvm-x-acl">jurquëta</AUni> -<AUni ws="qvm-x-akh">jurquëta</AUni> -<AUni ws="qvm-x-akl">jurquëta</AUni> -<AUni ws="qvm-x-ame">jurquëta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="cc06d120-fce8-4587-a4b7-9bbef3677d3c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">perio:dicu</AUni> -<AUni ws="qvm-x-acl">perio:dicu; perio:dicu; perio:dico</AUni> -<AUni ws="qvm-x-akh">perio:dicu</AUni> -<AUni ws="qvm-x-akl">perio:dicu; perio:dicu; perio:dico</AUni> -<AUni ws="qvm-x-ame">perio:dicu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+periódico</AUni> -<AUni ws="qvm-x-acl">+periódico</AUni> -<AUni ws="qvm-x-akh">+periódico</AUni> -<AUni ws="qvm-x-akl">+periódico</AUni> -<AUni ws="qvm-x-ame">+periódico</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.800" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="90d43c9c-f0ce-4360-b20c-227f0b72454d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+periódico</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="70d7ce49-6335-4c83-a0a8-4f172dc4bdd7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f0897d5c-03f0-4ed0-a554-bd700cb558bc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +periódico 
\entryTyp root 
\gENG newspaper 
\gSPN periódico 
\e +periódico 
\c N0 
\ach perio:dicu 
\akh perio:dicu 
\acl perio:dicu / _# 
\acl perio:dicu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl perio:dico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl perio:dicu / _# 
\akl perio:dicu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl perio:dico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame perio:dicu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="cc086a9a-4167-45cf-b672-bf9e235905fb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">parija</AUni> -<AUni ws="qvm-x-acl">parija</AUni> -<AUni ws="qvm-x-akh">parija</AUni> -<AUni ws="qvm-x-akl">parija</AUni> -<AUni ws="qvm-x-ame">parija</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+parejar</AUni> -<AUni ws="qvm-x-acl">+parejar</AUni> -<AUni ws="qvm-x-akh">+parejar</AUni> -<AUni ws="qvm-x-akl">+parejar</AUni> -<AUni ws="qvm-x-ame">+parejar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.719" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="795b53c6-1cfc-49f0-9e86-e25f78a27891" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+parejar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3dda9c18-5c5c-4006-ad75-e7be86412510" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0b03ce05-a1d6-4b3b-bd89-a01a799aea3e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +parejar 
\entryTyp root 
\gENG make.level 
\gSPN parejar 
\e +parejar 
\c V1 
\ach parija 
\akh parija 
\acl parija 
\akl parija 
\ame parija</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="cc099d1f-80a6-4248-b366-077020a80df6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cu:ña</AUni> -<AUni ws="qvm-x-acl">cu:ña</AUni> -<AUni ws="qvm-x-akh">cu:ña</AUni> -<AUni ws="qvm-x-akl">cu:ña</AUni> -<AUni ws="qvm-x-ame">cu:ña</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuña</AUni> -<AUni ws="qvm-x-acl">+cuña</AUni> -<AUni ws="qvm-x-akh">+cuña</AUni> -<AUni ws="qvm-x-akl">+cuña</AUni> -<AUni ws="qvm-x-ame">+cuña</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.254" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5271e9c5-ef8c-4037-842f-be6dcd0ee88b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuña</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="95f30fe9-eda1-4049-ba4d-ad80bf2703ba" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8ca2e1f1-97b1-41e4-ba14-125f7e454db3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuña 
\entryTyp root 
\gENG prop 
\gSPN cuña 
\e +cuña 
\c N0 
\ach cu:ña 
\akh cu:ña 
\acl cu:ña 
\akl cu:ña 
\ame cu:ña</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="cc09a97f-555a-4d8e-aaef-b9365fffb0c4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mandu</AUni> -<AUni ws="qvm-x-acl">mandu; mandu; mando</AUni> -<AUni ws="qvm-x-akh">mandu</AUni> -<AUni ws="qvm-x-akl">mandu; mandu; mando</AUni> -<AUni ws="qvm-x-ame">mandu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mando</AUni> -<AUni ws="qvm-x-acl">+mando</AUni> -<AUni ws="qvm-x-akh">+mando</AUni> -<AUni ws="qvm-x-akl">+mando</AUni> -<AUni ws="qvm-x-ame">+mando</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.305" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="79483ea6-d27c-42b6-bb78-ccf560ecb773" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mando</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6b7b6d67-3fe2-4930-b1ea-ce760b8b70b1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="442187d0-2263-46be-834b-68d7bca12316" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mando 
\entryTyp root 
\gENG order 
\gSPN mando 
\e +mando 
\c N0 
\mp +assimilated 
\ach mandu 
\akh mandu 
\acl mandu / _# 
\acl mandu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mando +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mandu / _# 
\akl mandu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mando +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mandu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="cc0ae27f-2856-4b9e-87df-811e11abc3ee" ownerguid="4a44ac87-5ad5-44de-8170-9fd88b056010"> -<ExampleWords> -<AUni ws="en">fall down, collapse, in ruins</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a building falling down?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="cc0bb960-d151-44fc-b835-658d9caee13b" ownerguid="a6993674-4df0-418f-a032-ae376db5048b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="9fd448fd-12bf-4d65-92b7-859fb689053c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="cc0bc01c-6905-4218-b606-40c01d19a64e" ownerguid="ba1e8d2b-7d3e-4b65-a9be-ee1a4063c796"> -<ExampleWords> -<AUni ws="en">wring your hands, bite your lip</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(17) What do people do when they are worried?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="cc0f4c72-fa26-4b71-9b93-bab1197ba920" ownerguid="0a8c55d6-1b79-4cfe-aef5-ac180fa65968"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="cc0fbaac-6af7-4c71-98a1-c85c10225719"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ticu</AUni> -<AUni ws="qvm-x-acl">ticu; ticu; tico</AUni> -<AUni ws="qvm-x-akh">tiku</AUni> -<AUni ws="qvm-x-akl">tiku; tiku; tiko</AUni> -<AUni ws="qvm-x-ame">tiku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tiku.n</AUni> -<AUni ws="qvm-x-acl">*tiku.n</AUni> -<AUni ws="qvm-x-akh">*tiku.n</AUni> -<AUni ws="qvm-x-akl">*tiku.n</AUni> -<AUni ws="qvm-x-ame">*tiku.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.896" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3579b94e-f625-42b2-9419-0a18bd636a1f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tiku.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fdd30be9-8be6-43d7-b965-2ba326f216dc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="379e43d7-e74d-4785-adaf-0d4f78e8b7a4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tiku.n 
\entryTyp root 
\gENG 
\gSPN 
\e *tiku.n 
\c N0 
\ach ticu 
\akh tiku 
\acl ticu / _# 
\acl ticu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tiku / _# 
\akl tiku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tiko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tiku</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="cc121082-2d07-484e-8a6f-7382f7d71f39" ownerguid="af4ac058-d4b3-4c7a-ade8-6af762d0486d"> -<Abbreviation> -<AUni ws="en">3.3.1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being stubborn--to be unwilling to change a decision; to be unwilling to do something someone wants you to do; or to do what you want to do, even though other people do not want you to do it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88B' Stubbornness</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Stubborn</AUni> -</Name> -<Questions> -<objsur guid="7e80021a-d685-4f8a-afab-102f1bb6a0c8" t="o" /> -<objsur guid="06e539d2-7368-40f2-9e10-885cf98929af" t="o" /> -<objsur guid="6ed3e343-a984-4dba-81eb-9fd691857043" t="o" /> -<objsur guid="7185906f-537c-4bcb-9afd-2e5da57505c3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="cc12d735-9fca-4430-93b6-a77839d651d6" ownerguid="4083c501-02ef-45ec-8b64-cb09a0c58ca7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pamphlet</AUni> -<AUni ws="es">folleto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a657fb7e-d01b-490b-b7ae-b37f896a3cb2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="cc14340d-725d-400e-8634-b8b5554241e5" ownerguid="bf5175f6-fbe4-4ac6-9041-f8aa78b7ac78"> -<ExampleWords> -<AUni ws="en">execute, behead, hang, crucify, burn at the stake, impale, execution</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to executing someone for a crime?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cc148779-97c3-4ddb-a0c9-15060e3d9456" ownerguid="38473463-4b92-4681-8fd0-0aca0342e88a"> -<ExampleWords> -<AUni ws="en">segmented worm, earthworm, leech</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to segmented worms (phylum Annelida)?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cc1582be-e26f-44c9-9cdb-bb708cb3385b" ownerguid="965c6a0b-3034-4e2f-a00b-ed2eb3119a5d"> -<Question> -<AUni ws="en">(7) polite: a mild or polite form of command.</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cc158d84-88a6-48e2-af45-ba38183630d8" ownerguid="9d865347-6656-4ab7-8613-bf2e8bc53aa7"> -<ExampleWords> -<AUni ws="en">dangerous, harmful</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What words describe something that can injure someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cc18a184-6021-4adb-851f-4b58dcf0baa8" ownerguid="1c3c8af0-56b9-4617-862e-21f39b388606"> -<ExampleWords> -<AUni ws="en">deceased, dead person, goner, dearly departed, casualty, fatality, the dead</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to someone who has died?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="cc18a69b-06f9-420a-859b-cf69fb23f67b" ownerguid="e087f00c-9a8c-415b-ab2c-368083838183"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="cc196134-9852-48b6-a4b1-09f337ef2f27" ownerguid="31e7ed11-6644-4c39-8a2b-18de4fd15760"> -<Form> -<AUni ws="qvm-x-ach">tsucla</AUni> -<AUni ws="qvm-x-acl">tsucla</AUni> -<AUni ws="qvm-x-akh">tsukla</AUni> -<AUni ws="qvm-x-akl">tsukla</AUni> -<AUni ws="qvm-x-ame">tsukla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="cc1ce010-8c44-4184-908e-74ed349ab0c8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">circulu; círculo</AUni> -<AUni ws="qvm-x-acl">circulu; circulu; circulo</AUni> -<AUni ws="qvm-x-akh">circulu; círculo</AUni> -<AUni ws="qvm-x-akl">circulu; circulu; circulo</AUni> -<AUni ws="qvm-x-ame">circulu; círculo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+círculo</AUni> -<AUni ws="qvm-x-acl">+círculo</AUni> -<AUni ws="qvm-x-akh">+círculo</AUni> -<AUni ws="qvm-x-akl">+círculo</AUni> -<AUni ws="qvm-x-ame">+círculo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.130" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7536acf3-60f5-45f6-a0d3-9baa701ece79" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+círculo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4cb6faec-6372-4095-8b5d-67fade334bfc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7f44f714-46ca-4f4b-88c5-cd06d94cd701" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +círculo 
\entryTyp root 
\gENG 
\gSPN 
\e +círculo 
\c N0 
\ach circulu / ~_# 
\ach círculo / _# 
\akh circulu / ~_# 
\akh círculo / _# 
\acl circulu / ~_# 
\acl circulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl circulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl circulu / ~_# 
\akl circulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl circulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame circulu / ~_# 
\ame círculo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="cc1d95ae-fc7b-4987-a2b1-fb8113600330"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">azul</AUni> -<AUni ws="qvm-x-acl">azul</AUni> -<AUni ws="qvm-x-akh">azul</AUni> -<AUni ws="qvm-x-akl">azul</AUni> -<AUni ws="qvm-x-ame">azul</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+azul</AUni> -<AUni ws="qvm-x-acl">+azul</AUni> -<AUni ws="qvm-x-akh">+azul</AUni> -<AUni ws="qvm-x-akl">+azul</AUni> -<AUni ws="qvm-x-ame">+azul</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.910" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ec67a095-c06e-4386-98a2-dc09edf7dc42" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+azul</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c2e40e1e-4ddf-40ad-b6c8-a89417fc2b7b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aad9af47-7ccf-46b9-ad10-79c184dec6e7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +azul 
\entryTyp root 
\gENG blue 
\gSPN azul 
\e +azul 
\c N0 
\mp +FinalC 
\ach azul 
\akh azul 
\acl azul 
\akl azul 
\ame azul</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="cc22ba01-5817-4072-bfcd-940d888c2618" ownerguid="e9515a66-8027-4815-a23c-3614b5c5089a"> -<Form> -<AUni ws="qvm-x-ach">yarga</AUni> -<AUni ws="qvm-x-acl">yarga</AUni> -<AUni ws="qvm-x-akh">yarqa</AUni> -<AUni ws="qvm-x-akl">yarqa</AUni> -<AUni ws="qvm-x-ame">yarqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="ae5f3ffd-a9d0-4eaa-9040-50a5a57e64bc" t="r" /> -<objsur guid="b27c54e7-0a24-46d7-b332-e63a45ecffc2" t="r" /> -</PhoneEnv> -</rt> -<rt class="MoStemAllomorph" guid="cc24bea4-21a9-4039-b7d1-cef9e1c6dee1" ownerguid="f4e558bf-f318-4518-b578-fd54e4db1786"> -<Form> -<AUni ws="qvm-x-ach">cajón; cajon</AUni> -<AUni ws="qvm-x-acl">cajón; cajon</AUni> -<AUni ws="qvm-x-akh">cajón; cajon</AUni> -<AUni ws="qvm-x-akl">cajón; cajon</AUni> -<AUni ws="qvm-x-ame">cajón; cajon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="cc266d6a-f4bc-42a3-983e-af7b63ed0d30" ownerguid="f2b82e93-c70c-4125-a52d-d0fcce2c9ac7"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="54b7396a-9c23-43e1-86a9-f7145669b019" t="o" /> -<objsur guid="8db8b0b6-5958-41ed-9fe2-7b2eea079be8" t="o" /> -<objsur guid="d3ee1484-850d-4c50-8a77-d4d7fb5c1d22" t="o" /> -<objsur guid="6f3fc059-239d-4a50-99c8-38d7159f808e" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="cc278f69-8bf4-40cf-bc6b-06b46d3c402a" ownerguid="e0c705e8-7bf4-4049-a1a7-75766e22826e"> -<Form> -<AUni ws="qvm-x-ach">cestu; cesto</AUni> -<AUni ws="qvm-x-acl">cestu; cestu; cesto</AUni> -<AUni ws="qvm-x-akh">cestu; cesto</AUni> -<AUni ws="qvm-x-akl">cestu; cestu; cesto</AUni> -<AUni ws="qvm-x-ame">cestu; cesto</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="cc29c11b-2d87-49f3-9554-cac090216d7e" ownerguid="38d33d92-63de-42d4-9191-5d16f397a23a"> -<Form> -<AUni ws="qvm-x-ach">wawïta</AUni> -<AUni ws="qvm-x-acl">wawïta</AUni> -<AUni ws="qvm-x-akh">wawïta</AUni> -<AUni ws="qvm-x-akl">wawïta</AUni> -<AUni ws="qvm-x-ame">wawïta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="cc2a8f2f-8561-4bfa-ace8-4f76de24bfb8" ownerguid="a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f"> -<ExampleWords> -<AUni ws="en">observer, beholder, witness, eyewitness, onlooker, spectator, viewer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to someone who sees something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cc2c05c2-168e-4e3d-9771-0484826ea68b" ownerguid="b14db9f4-5e1d-4a2b-bec0-0d6bcb5b1a31"> -<ExampleWords> -<AUni ws="en">fall off, take a fall, tumble, be thrown</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to accidentally falling from a high position?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cc2d083e-85df-4332-8ec5-952bff9bd24e" ownerguid="f6134be5-3f96-4750-a03e-fca381a42db1"> -<ExampleWords> -<AUni ws="en">Animist, pagan</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to someone who believes in Animism?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="cc2e0a65-047f-475d-b53f-9c8108704be4" ownerguid="6ae4a4de-7aeb-4325-9209-7187c858428e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wool</AUni> -<AUni ws="es">lana</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9bf4384a-25fe-46b4-92a9-779ea39d637e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="cc2eb8e3-34d5-4517-b643-ade93e66b8a0" ownerguid="9f1d000c-937f-4832-9502-eb671abfec06"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="cc2fa532-63b6-47b8-a04f-89351d6701a6" ownerguid="4e7a6dfe-3654-4ca1-874d-02424581b774"> -<ExampleWords> -<AUni ws="en">fathom</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to a unit of depth?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cc308441-2f6a-49a5-91b9-3c392e55f57e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">regidor</AUni> -<AUni ws="qvm-x-acl">regidor</AUni> -<AUni ws="qvm-x-akh">regidor</AUni> -<AUni ws="qvm-x-akl">regidor</AUni> -<AUni ws="qvm-x-ame">regidor</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+regidor</AUni> -<AUni ws="qvm-x-acl">+regidor</AUni> -<AUni ws="qvm-x-akh">+regidor</AUni> -<AUni ws="qvm-x-akl">+regidor</AUni> -<AUni ws="qvm-x-ame">+regidor</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.318" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3056e83e-abe2-47cf-b1b3-b65483420155" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+regidor</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="da52b781-d833-4cd6-901b-afe5c04d044f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="02a3adf8-a73b-44f8-84fd-dbc7c38e0866" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +regidor 
\entryTyp root 
\gENG ? 
\gSPN regidor 
\e +regidor 
\c N0 
\mp +FinalC 
\ach regidor 
\akh regidor 
\acl regidor 
\akl regidor 
\ame regidor</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="cc316ccb-1849-4610-8a0b-c99cbc9f2009" ownerguid="1c018516-8c24-49ed-a8f1-f3b71c280a19"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="e2fb1d14-e9ae-4046-b54f-5f0f29eb6a2f" t="o" /> -<objsur guid="0f65f45f-0988-46d5-aa9e-d414a3a091d2" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="cc324d35-38da-474f-983e-5b39f234580f" ownerguid="bfe32ef1-d815-4321-919e-945bc548f05d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">twins</AUni> -<AUni ws="es">mellizo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1fae0f17-23eb-4c1e-a86d-9a564880ec52" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="cc334785-2a77-4aa1-8222-e4ad149f0032" ownerguid="390ad7fc-8360-4eae-8736-3aedc15ae659"> -<ExampleWords> -<AUni ws="en">symbol, legend, contour line, longitude line, latitude line, parallel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the symbols on a map?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cc3626c4-a572-48fb-a822-3a1dc1b4d51b" ownerguid="2e5acfd2-3009-4496-9cc2-58d2a0088994"> -<ExampleWords> -<AUni ws="en">strand</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What word refer to one hair?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cc36af80-42a1-4356-a9d2-2f517b12b3bc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tersu; terso</AUni> -<AUni ws="qvm-x-acl">tersu; tersu; terso</AUni> -<AUni ws="qvm-x-akh">tersu; terso</AUni> -<AUni ws="qvm-x-akl">tersu; tersu; terso</AUni> -<AUni ws="qvm-x-ame">tersu; terso</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tercio</AUni> -<AUni ws="qvm-x-acl">+tercio</AUni> -<AUni ws="qvm-x-akh">+tercio</AUni> -<AUni ws="qvm-x-akl">+tercio</AUni> -<AUni ws="qvm-x-ame">+tercio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.866" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0c71c4a0-c9cf-44d1-bcf4-65588c47aef3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tercio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e86fac69-1362-49c1-82f9-07616daf2bb9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1560ec91-d883-49fa-84e7-63707ad2a581" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tercio 
\entryTyp root 
\gENG 
\gSPN tercio 
\e +tercio 
\c N0 
\ach tersu / ~_# 
\ach terso / _# 
\akh tersu / ~_# 
\akh terso / _# 
\acl tersu / ~_# 
\acl tersu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl terso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tersu / ~_# 
\akl tersu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl terso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tersu / ~_# 
\ame terso / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="cc36b956-310a-452a-a4f3-908466d95089" ownerguid="f9d0dbe3-8a78-4bf6-bab9-8613091e6073"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="cc37ab40-55ba-49c2-b95b-1a0820179cd7" ownerguid="c48704fc-d333-48f9-af23-e4e77da3ca85"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">create</AUni> -<AUni ws="es">crear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="473b2932-8723-47fe-8cf0-5124d9a349fa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="cc38ab3c-e420-4390-9f29-446396a5423a" ownerguid="60dc7cf6-0a41-4cd3-99a6-0b7a71488e7e"> -<ExampleWords> -<AUni ws="en">feel bad</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling bad?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="cc38febd-e1d6-46d2-9d8c-688f47a39481" ownerguid="bc5b25bc-06f4-4569-9e0c-c427dbacdb2e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.counsel</AUni> -<AUni ws="es">dar.consejo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4179e6f2-2c5b-4435-81be-08b02547060b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="cc3abc11-759c-43db-9ec3-905a4029aa57" ownerguid="6187e620-89bd-4b9d-9896-0c0c788e7740"> -<ExampleWords> -<AUni ws="en">coach, to coach a team, captain, to captain a team</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What is the leader of a team called?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="cc3f1dc8-a31e-4459-ba13-f82b45df37b5" ownerguid="05472990-3f51-40b3-bca8-df3cf383328b"> -<Abbreviation> -<AUni ws="en">3.5.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.164" /> -<DateModified val="2022-9-23 16:55:8.164" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to reporting something--to say that something has happened and to tell about it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33O Inform, Announce; 33P Assert, Declare; 33S Preach, Proclaim</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Report</AUni> -</Name> -<Questions> -<objsur guid="4ac28576-19bf-44d9-a5f6-48acc683af38" t="o" /> -<objsur guid="f0268d20-eda8-4ade-b0d3-ed5baded7dd9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="cc43b52c-90f5-42a8-80f8-ff1039edff41" ownerguid="78f8926f-82ad-455c-b171-fb982948c239"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wind</AUni> -<AUni ws="es">viento</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d8514a71-bfb1-44ff-a25c-5896283bd948" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="cc4414ae-b5eb-4f95-80f7-216db6569fd6" ownerguid="848cf990-c481-4d0f-aad0-02d71da31ae4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="cc46b6aa-9772-4bb4-a7f1-33f38a9daf22" ownerguid="7191be07-9702-4a82-ba0b-2fd748164668"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="8cb278d3-8acb-4303-97e0-b805f2220294" t="o" /> -<objsur guid="ac13256c-e0cb-4882-a58c-3c9bd2eb8b43" t="o" /> -<objsur guid="03339d54-a44b-4a6d-9546-8b003f3939cb" t="o" /> -<objsur guid="af46ab02-2787-42e1-a497-30fb49764236" t="o" /> -<objsur guid="a7dc7b74-6a03-454f-97fd-4890519d89c7" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="cc498507-c662-4616-9eb1-6113223c87ff" ownerguid="7af2dfed-a641-43a1-bada-75e7d2240d3d"> -<Form> -<AUni ws="qvm-x-ach">caru</AUni> -<AUni ws="qvm-x-acl">caru; caru; caro</AUni> -<AUni ws="qvm-x-akh">karu</AUni> -<AUni ws="qvm-x-akl">karu; karu; karo</AUni> -<AUni ws="qvm-x-ame">karu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="cc4f113d-eaae-4728-8dff-6ddeb1916b11" ownerguid="c16334a0-be29-4a1e-a870-4cb3f1df984d"> -<ExampleWords> -<AUni ws="en">gather, clump, cluster, collect, congregate, crowd together, flock, form, gang, horde, meet, pile up, swarm, throng</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to things gathering?</AUni> -</Question> -</rt> -<rt class="MoDerivAffMsa" guid="cc4f521e-5e38-4217-aa16-46da99d423ec" ownerguid="4516f994-a4be-439b-b3df-9bc3693701b9"> -<FromPartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</FromPartOfSpeech> -<ToPartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</ToPartOfSpeech> -</rt> -<rt class="LexSense" guid="cc53c147-7fad-4bff-81d7-125cd14a409a" ownerguid="2c561345-a734-4b43-9531-b9d4fe4c280a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="62f4dbb5-05b5-4ab2-8626-13847d75199a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="cc542297-3128-4b48-b670-0b63903910d3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">arcu</AUni> -<AUni ws="qvm-x-acl">arcu; arcu; arco</AUni> -<AUni ws="qvm-x-akh">arku</AUni> -<AUni ws="qvm-x-akl">arku; arku; arko</AUni> -<AUni ws="qvm-x-ame">arku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*arku.n</AUni> -<AUni ws="qvm-x-acl">*arku.n</AUni> -<AUni ws="qvm-x-akh">*arku.n</AUni> -<AUni ws="qvm-x-akl">*arku.n</AUni> -<AUni ws="qvm-x-ame">*arku.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.830" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bcf78e7b-a874-40c4-973d-49a8b071f2bb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*arku.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7cc9a423-ea7f-411f-8817-4eaccdf360fd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4bc9cfae-1d5f-407d-b701-d8bc16350db2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *arku.n 
\entryTyp root 
\gENG pile 
\gSPN ? 
\e *arku.n 
\c N0 
\ach arcu 
\akh arku 
\acl arcu / _# 
\acl arcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl arco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl arku / _# 
\akl arku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl arko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame arku</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="cc5592b2-d053-4f21-868f-e47798949ce1"> -<Form> -<Str> -<Run ws="en">aywa</Run> -</Str> -</Form> -</rt> -<rt class="LexSense" guid="cc57da69-59e0-4e86-bbfc-160460ec9221" ownerguid="fbc0960d-67cd-474f-bb01-3c189f6335f0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="dee4ee20-8c59-47cb-a986-7e2471365c36" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="cc5814bb-37e0-481c-8ff7-aad58c4d463a" ownerguid="84b6239a-3aa8-4a5c-99e6-506cf68a2ad8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fox</AUni> -<AUni ws="es">zorrillo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0f1cd745-0def-4941-84e2-4c035a69f529" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="cc582e77-4cb7-4d8e-bf75-f4873389d5a4" ownerguid="fe6cfaa7-1e0c-4fae-806c-7ae07375ba6c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cough</AUni> -<AUni ws="es">tocer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2adb2d6a-24c7-4f89-8ae6-0c88d270e94b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="cc5cb844-3c4d-4a1d-a299-98d65b241073" ownerguid="0aaacffe-9b6c-49a7-bf68-c0f9ff3e120e"> -<ExampleWords> -<AUni ws="en">the least, minimum, the fewest, the lowest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the smallest amount of something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cc5d8ac6-e824-4bf9-bb31-3595710d892d" ownerguid="4f587b2b-60a6-4ea0-9fe5-89e5a502d380"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John travels to work <by> bus.; He intends to get there <by means of> his wits.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">by, by means of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate the means by which something is done?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="cc5e13a2-c464-494e-abe2-0355d5ce32c2" ownerguid="02bd21d7-b47a-4ce9-91c1-e0ec532a64ef"> -<Form> -<AUni ws="qvm-x-ach">lanza</AUni> -<AUni ws="qvm-x-acl">lanza</AUni> -<AUni ws="qvm-x-akh">lanza</AUni> -<AUni ws="qvm-x-akl">lanza</AUni> -<AUni ws="qvm-x-ame">lanza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="cc61662d-05a0-436f-acce-46f55f62c75f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">abona</AUni> -<AUni ws="qvm-x-acl">abona</AUni> -<AUni ws="qvm-x-akh">abona</AUni> -<AUni ws="qvm-x-akl">abona</AUni> -<AUni ws="qvm-x-ame">abona</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+abonar</AUni> -<AUni ws="qvm-x-acl">+abonar</AUni> -<AUni ws="qvm-x-akh">+abonar</AUni> -<AUni ws="qvm-x-akl">+abonar</AUni> -<AUni ws="qvm-x-ame">+abonar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.619" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f4ed26b6-5462-4397-81c2-e0640c726176" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+abonar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4f71bb08-f5c0-47c2-8b71-442babc5f03a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5385e4cc-3a7f-40d6-9f4e-bc9d439280f2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +abonar 
\entryTyp root 
\gENG fertilize 
\gSPN abonar 
\e +abonar 
\c V2 
\ach abona 
\akh abona 
\acl abona 
\akl abona 
\ame abona</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="cc617c95-e65c-4aeb-9870-08268d5b52c9" ownerguid="cefced48-ae37-4de5-8863-963c0dd026b5"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="cc61aa7d-1654-48f2-b2ec-1bc3799eba78" ownerguid="cac547d7-0905-4cca-971e-dbcc9c0c692b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">abertura</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dff89f9a-c9f1-4975-b330-ef01f63e4aa0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="cc62f353-82fb-455c-93fb-b0846405fe06" ownerguid="f41044c3-dd97-4d74-92ee-890be76e7ad4"> -<Form> -<AUni ws="qvm-x-ach">galwa</AUni> -<AUni ws="qvm-x-acl">galwa</AUni> -<AUni ws="qvm-x-akh">qalwa</AUni> -<AUni ws="qvm-x-akl">qalwa</AUni> -<AUni ws="qvm-x-ame">qalwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="cc648fd2-05fc-49e5-891f-d4f0669b7bca" ownerguid="50eb32a2-6dbb-4b7c-b370-aacdcfeaf5fc"> -<ExampleWords> -<AUni ws="en">enjoyable, fun, good fun, great fun, pleasurable, pleasure, be a delight, the joys of, the delights of, be a blast, be a good laugh, satisfying, amusing, entertaining, treat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that people enjoy doing?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="cc65327e-0bf0-4aec-8af9-8f858dbb7550" ownerguid="1de848f6-a750-4c73-9334-13d36b6d888a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="cc665ba9-fb04-43a2-b812-7bbed2e1b461" ownerguid="d430d08a-9907-4e6d-8268-f17d8009f612"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">net</AUni> -<AUni ws="es">red</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0c5194fd-9f2a-4ced-8fe1-cefc0d457d4a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="cc68db21-902e-468c-a88f-f5c707c0684a" ownerguid="d98c1c67-b70e-4a35-89db-2e744bd5197f"> -<ExampleWords> -<AUni ws="en">head</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the head?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="cc697a46-bec1-40cc-bd1f-a0518af88344" ownerguid="c24f55f6-4e86-473c-b669-8d911b2307f7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="1e661dab-1225-4ad9-b13f-822d656c2862" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="cc6b0d5a-1ac5-4bb7-abd2-d42ac52ff2b8" ownerguid="021a89a4-c0d7-4a50-ace8-1e273f2e0705"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="cc6b9254-bbcf-4cbe-8a25-d2855cd7e115" ownerguid="0b67c9a4-a590-4417-a289-77d963f50a8d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="cc6d78c5-9fa7-40dd-84bf-2ba2375b0d51"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa:ñu</AUni> -<AUni ws="qvm-x-acl">pa:ñu; pa:ñu; pa:ño</AUni> -<AUni ws="qvm-x-akh">pa:ñu</AUni> -<AUni ws="qvm-x-akl">pa:ñu; pa:ñu; pa:ño</AUni> -<AUni ws="qvm-x-ame">pa:ñu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+paño</AUni> -<AUni ws="qvm-x-acl">+paño</AUni> -<AUni ws="qvm-x-akh">+paño</AUni> -<AUni ws="qvm-x-akl">+paño</AUni> -<AUni ws="qvm-x-ame">+paño</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.697" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f863fe06-cfdb-43ca-aab3-2f28e7c1fb6e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+paño</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9af5d937-103f-4d4f-917d-895f94b0643e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="88bac12e-7f63-4860-8948-849e52f38a2a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +paño 
\entryTyp root 
\gENG 
\gSPN 
\e +paño 
\c N0 
\ach pa:ñu 
\akh pa:ñu 
\acl pa:ñu / _# 
\acl pa:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pa:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pa:ñu / _# 
\akl pa:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pa:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pa:ñu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="cc6f100a-5220-4f53-801c-b1fdcc619608" ownerguid="615674ac-8158-4089-ae70-b55472fd279b"> -<Abbreviation> -<AUni ws="en">8.4.6.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something old--a word describing a living thing that has existed for a long time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Old, not young</AUni> -</Name> -<Questions> -<objsur guid="3539c7b2-f30c-41f0-be34-86dd72e3a687" t="o" /> -<objsur guid="01ade598-de33-4a96-a0bc-f33781aed283" t="o" /> -<objsur guid="2919f5a8-40f9-4ff8-aa94-e69f0f72d191" t="o" /> -<objsur guid="696e1169-6b86-4c9c-a95b-fae12bcd4aa0" t="o" /> -<objsur guid="6a865fbf-3c74-4bea-b6a4-0bb5a8d09b66" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="8fff393a-23c2-42bb-8da8-9b151e790904" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="cc703ffc-0160-4c36-be73-6cecef398e95" ownerguid="738a09a5-59df-40f9-8a4e-176e00d03bbf"> -<ExampleWords> -<AUni ws="en">warhead, fuse, fin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What are the parts of a bomb?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cc70d4ce-4cf4-4556-991a-e1b57a7279f4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">liuta</AUni> -<AUni ws="qvm-x-acl">liuta</AUni> -<AUni ws="qvm-x-akh">liwta</AUni> -<AUni ws="qvm-x-akl">liwta</AUni> -<AUni ws="qvm-x-ame">liwta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lliwta.n</AUni> -<AUni ws="qvm-x-acl">*lliwta.n</AUni> -<AUni ws="qvm-x-akh">*lliwta.n</AUni> -<AUni ws="qvm-x-akl">*lliwta.n</AUni> -<AUni ws="qvm-x-ame">*lliwta.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.215" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="98bc0e8a-a3c6-43d1-b717-3165063cda05" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lliwta.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="59274b11-d972-4e82-a0a5-4293b49383c4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b64e472e-2127-4dab-ad5d-3bd423b8bc28" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lliwta.n 
\entryTyp root 
\gENG ? 
\gSPN ? 
\e *lliwta.n 
\c N0 
\ach liuta 
\akh liwta 
\acl liuta 
\akl liwta 
\ame liwta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoInflAffixSlot" guid="cc7bce64-81a2-4c23-9cb0-ba8f7d274837" ownerguid="86ff66f6-0774-407a-a0dc-3eeaf873daf7"> -<Name> -<AUni ws="en">aspect</AUni> -</Name> -<Optional val="True" /> -</rt> -<rt class="LexExampleSentence" guid="cc7de08a-5c5a-4bab-b24d-d6521d803c58" ownerguid="15fb7fc2-8b47-4d43-9dcc-556fa34faf99"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Lev 7.24 Wanushga uywacunapa wiranta o jirca uywacuna catupacushgan uywapa wirantaga ama micutsuntsu. Micunanpa trucan tsay wirataga imalachöpis manijatsun.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="cc7e47d1-615e-4b29-ac63-facc2fec8929" ownerguid="7c7f62d8-0293-45ba-8658-956c38bafc66"> -<ExampleWords> -<AUni ws="en">destiny, fate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something to which a person or thing is destined?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="cc84603a-337e-48e7-92c0-de8ede3bd28d" ownerguid="0daa9e0b-5da2-4c04-808b-3fe1f215d9c5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hawk</AUni> -<AUni ws="es">domínico</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="70467cd6-9dfe-4493-9ad2-4ee2722f256f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="cc8896fc-fb52-48aa-853e-8a145e0ebb6e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">legli</AUni> -<AUni ws="qvm-x-acl">legli; legle</AUni> -<AUni ws="qvm-x-akh">leqli</AUni> -<AUni ws="qvm-x-akl">leqli; leqle</AUni> -<AUni ws="qvm-x-ame">liqli</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lliqlli</AUni> -<AUni ws="qvm-x-acl">*lliqlli</AUni> -<AUni ws="qvm-x-akh">*lliqlli</AUni> -<AUni ws="qvm-x-akl">*lliqlli</AUni> -<AUni ws="qvm-x-ame">*lliqlli</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.205" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2774985c-6fda-4084-9dec-afa01055e39f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lliqlli</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="408ee2fe-d56b-4533-ac0e-1e45efd457b0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ed90c7c1-d603-469c-b845-ee6941396974" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lliqlli 
\entryTyp root 
\gENG have.rash 
\gSPN tnr.escaldadura 
\e *lliqlli 
\c V1 
\mp +FinalI 
\ach legli 
\akh leqli 
\acl legli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl legle +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl leqli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl leqle +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame liqli</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="cc89ab31-93c3-4926-a0a0-c523e541417d" ownerguid="7fcbc15a-3aaf-4d26-83f1-21cb4a55947c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Num 21.27 Tsaypitami poesiata recitagcunapis caynog nin:</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="cc89b37f-c314-48ec-9f1e-b67bc51f5224" ownerguid="57225f57-ba51-45d7-b6d2-b22052877ea4"> -<ExampleWords> -<AUni ws="en">socialize</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to social activities?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="cc8d7002-d7ea-44f2-a435-e2b9170227fe" ownerguid="e2d011ab-5c29-4b6d-a6dd-27260b688021"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="cc8e0de0-cd1b-469e-a329-7f1e521a0b4b" ownerguid="398ffed0-bfa7-452c-8521-7d37b3082dcf"> -<ExampleWords> -<AUni ws="en">work hard, labor at, strive, try hard, give it your best, do your best, push hard, go all out, wear several hats, hard driving, make an effort</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to working hard?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="cc8f42b2-7fff-418d-89f6-a14a89b19774" ownerguid="fa829fcb-40f4-4003-8cca-561074eded13"> -<Form> -<AUni ws="qvm-x-ach">jati</AUni> -<AUni ws="qvm-x-acl">jati; jate</AUni> -<AUni ws="qvm-x-akh">jati</AUni> -<AUni ws="qvm-x-akl">jati; jate</AUni> -<AUni ws="qvm-x-ame">hati</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="cc8fe569-2de7-4e2c-a2f7-129c58a2b2f2" ownerguid="82e4394a-2f58-4356-8d9c-1ad9dbe95293"> -<ExampleWords> -<AUni ws="en">cool</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words describe clothes that make you feel cool?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="cc910b46-65ec-428f-9161-f2daeceba7b2" ownerguid="169c0993-d49f-4b65-995c-20681c85c82b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">towel</AUni> -<AUni ws="es">toalla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d54c380b-5218-49d6-a1e2-540113f7bc15" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="cc9c876b-2094-4af2-8991-198eb7230c84" ownerguid="d8374966-089c-480b-8915-033787b1d8d6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spread</AUni> -<AUni ws="es">ancho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f9f25ad7-61d0-465f-b17b-063daa9b3478" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="cc9e40c1-ecd6-41a1-a614-ade37c7c7f49" ownerguid="06c59373-ac0f-4096-8c61-a86a78a0b2c3"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="cca3cfaa-f753-436f-b5a3-4bf658923cb0" ownerguid="78ae595d-ca38-40e4-89de-ef042b4d8aab"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="d59ec535-3c61-4236-beb6-f092af62cf05" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="cca44b46-437c-42ee-93d7-a8820d61d0c8" ownerguid="30ea3057-753d-4c4c-9b1f-ed30e569feea"> -<Abbreviation> -<AUni ws="en">4.7.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to legal personnel.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>56G Attorney, Lawyer</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Legal personnel</AUni> -</Name> -<Questions> -<objsur guid="60aa2e76-07e2-4380-b8be-eef0fd06e433" t="o" /> -<objsur guid="568b1415-b7dc-4cf4-a32a-5c3e634674cd" t="o" /> -<objsur guid="83718d92-fbd3-44f2-9dd3-02a40a1e00ed" t="o" /> -<objsur guid="d81900f1-5678-41ee-ad5d-051b105d22dd" t="o" /> -<objsur guid="4da677a0-5681-4b69-9e94-5a1673e9fe7e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="cca7c886-444c-4b95-adb9-0a986061c7e9" ownerguid="b790470f-ed4e-42ac-932d-cd15ef701b03"> -<ExampleWords> -<AUni ws="en">impurity, defilement, pollution</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something that causes impurity?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="cca9ca85-2edf-4c17-9ae3-9a46277c7bb8" ownerguid="38702665-019c-4c2f-afa1-5f62aadc81bd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="a4ecd32a-8cb3-41c7-9525-70575ba534b7" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="6a464e42-ff49-4bf3-a10f-964154af8adf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="ccafc533-b57c-4c41-9ddc-d6d907368a88" ownerguid="2051456f-2dc4-4ed8-b481-0c262253089f"> -<Form> -<AUni ws="qvm-x-ach">litpa</AUni> -<AUni ws="qvm-x-acl">litpa</AUni> -<AUni ws="qvm-x-akh">litpa</AUni> -<AUni ws="qvm-x-akl">litpa</AUni> -<AUni ws="qvm-x-ame">litpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ccb0b9d7-a822-4ac0-b933-28eacb7c3134" ownerguid="36c4afbc-dced-457f-b9ac-0127e1718e2e"> -<Form> -<AUni ws="qvm-x-ach">nuëvi; nuëvi</AUni> -<AUni ws="qvm-x-acl">nuëvi; nuëvi; nuëve</AUni> -<AUni ws="qvm-x-akh">nuëvi; nuëvi</AUni> -<AUni ws="qvm-x-akl">nuëvi; nuëvi; nuëve</AUni> -<AUni ws="qvm-x-ame">nuëvi; nuëvi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ccb17d56-8785-42c5-a66b-ba6cff070ac5" ownerguid="fe89a0f4-2155-424b-bf90-c1133dc41c8d"> -<ExampleWords> -<AUni ws="en">cabinet, dresser, chest of drawers, wardrobe, buffet, bookshelf, set of shelves, cupboard, drawer, shelf</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What kinds of cabinets are there?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ccb281dc-6eaf-4de0-b0d8-cadb6efd2b67"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">humildi</AUni> -<AUni ws="qvm-x-acl">humildi; humildi; humilde</AUni> -<AUni ws="qvm-x-akh">humildi</AUni> -<AUni ws="qvm-x-akl">humildi; humildi; humilde</AUni> -<AUni ws="qvm-x-ame">humildi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+humilde</AUni> -<AUni ws="qvm-x-acl">+humilde</AUni> -<AUni ws="qvm-x-akh">+humilde</AUni> -<AUni ws="qvm-x-akl">+humilde</AUni> -<AUni ws="qvm-x-ame">+humilde</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.761" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ebdf6674-b852-4008-832c-3640ff1b0370" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+humilde</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="62e7649b-a1db-4751-a52c-97b4f83dfdd0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d941346f-b3f5-408d-adcd-ab0fa2a56e65" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +humilde 
\entryTyp root 
\gENG humble 
\gSPN humilde 
\e +humilde 
\c N0 
\mp +assimilated 
\ach humildi 
\akh humildi 
\acl humildi / _# 
\acl humildi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl humilde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl humildi / _# 
\akl humildi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl humilde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame humildi 
\mp +FinalI</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ccb42c18-ed5b-4bbf-901d-ff4a1a1d092b" ownerguid="ca443be3-3ee1-42c3-9d91-3f2ea02ecdc1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">trumpet</AUni> -<AUni ws="es">trompeta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="af32730e-4945-45f3-b980-4d93b2a6fcff" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ccb4a6f7-a4f3-444c-a57d-ad5112f7b74a" ownerguid="fd7e03f8-61c9-47e9-afa4-ab8917db03a5"> -<ExampleWords> -<AUni ws="en">bribery, appeasement, pacification</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to this act or practice?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ccb516fc-cb35-4da1-8e83-8a13fc216ef4" ownerguid="2d81ab63-d53f-4d48-ab27-7121eabf5d00"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ccb5ae28-f956-4111-bbde-43a61eee39f0" ownerguid="42133f78-9860-4bb7-8083-5559083f0714"> -<ExampleWords> -<AUni ws="en">gambler, bookie</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a person who gambles?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ccb9972b-156f-466f-aa95-9e93a4a290a5" ownerguid="ef409fc6-bd89-4cc6-ade5-abb882272313"> -<ExampleWords> -<AUni ws="en">unbiased, impartial, impartially, impartiality</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to not unfairly favoring one person over another?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ccba702a-8b01-49e8-b007-0b7a3c3a49f5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">estudia</AUni> -<AUni ws="qvm-x-acl">estudia</AUni> -<AUni ws="qvm-x-akh">estudia</AUni> -<AUni ws="qvm-x-akl">estudia</AUni> -<AUni ws="qvm-x-ame">estudia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+estudiar</AUni> -<AUni ws="qvm-x-acl">+estudiar</AUni> -<AUni ws="qvm-x-akh">+estudiar</AUni> -<AUni ws="qvm-x-akl">+estudiar</AUni> -<AUni ws="qvm-x-ame">+estudiar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.508" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="744c100a-92af-447e-bc41-1589116f04cc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+estudiar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f53ddbca-bc03-4407-99df-3a702c5d64d2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1df531ad-83d7-4c2b-bd48-94fad938e7a8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +estudiar 
\entryTyp root 
\gENG study 
\gSPN estudiar 
\e +estudiar 
\c V1 
\ach estudia 
\akh estudia 
\acl estudia 
\akl estudia 
\ame estudia</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="ccbbd16f-58c5-45c1-bfff-1fba64d9740e" ownerguid="793993ac-20c1-49f0-9716-e4cdc7da4439"> -<Abbreviation> -<AUni ws="en">9.4.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate aspects of dynamic verbs. Aspects describe the temporal contours of a situation. They may be combined with any of the tenses, either in the same morpheme or in combinations of morphemes. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Aspect--dynamic verbs</AUni> -</Name> -<Questions> -<objsur guid="54c0eb03-5495-4096-910d-382832290d4e" t="o" /> -<objsur guid="2eb83d8b-77aa-4599-a28c-03ac08adafc9" t="o" /> -<objsur guid="b92ff732-70a5-4ff7-a033-4902297cfe68" t="o" /> -<objsur guid="6b799c2a-bba7-496c-9076-fbfff54ece9b" t="o" /> -<objsur guid="e195f4ce-b432-40d1-8a28-3756f2fb7ae5" t="o" /> -<objsur guid="bc809580-9747-4572-98aa-8370bdf262c0" t="o" /> -<objsur guid="8cabcf44-98f4-4a27-9f27-f7cc95305dc6" t="o" /> -<objsur guid="63a9cf5a-8b45-45bb-ad92-39e059b53463" t="o" /> -<objsur guid="1b681a0c-c8d0-4b9c-8e81-003ed75c4bfb" t="o" /> -<objsur guid="ec6a512e-9d87-427c-8d83-f65d61e3f49d" t="o" /> -<objsur guid="3cedd17f-f90b-4e20-b989-8737cef9787d" t="o" /> -<objsur guid="e16eef96-5e76-4b22-abcd-03ea6e664d44" t="o" /> -<objsur guid="d1553f1c-dfe1-4576-a16e-9369cb563636" t="o" /> -<objsur guid="117999bf-4c47-4ac1-9417-234c526777a0" t="o" /> -<objsur guid="2387376a-c8d2-40a7-9d9e-3fa362729c4f" t="o" /> -<objsur guid="a2a60d06-b6b2-47f2-9c6f-1ea68491848c" t="o" /> -<objsur guid="a07612d5-3d8c-40f0-bfcc-3b1852154ed7" t="o" /> -<objsur guid="a3a9ce7e-d3df-462d-940d-802ec59b50e6" t="o" /> -<objsur guid="345be257-3301-42e5-aba4-d492c4cfde6a" t="o" /> -<objsur guid="453639f1-c4f8-48b2-8e03-ef8ed6d9bc8e" t="o" /> -<objsur guid="2bcb85a5-37b9-4782-a7c1-cd3778cb9c88" t="o" /> -<objsur guid="11a3107d-9ead-47d3-9fa9-db8831eabaab" t="o" /> -<objsur guid="7f86cc65-e790-4cef-b947-eb038b450a8b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="ccbd4d5c-fe4b-47c4-b2c8-a040c9504206" ownerguid="6eaba0c3-cdfe-435d-8811-7f2ddf6facbd"> -<ExampleWords> -<AUni ws="en">relieve swelling, reduce swelling, go down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to swelling decreasing?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ccbde4ce-97a8-46de-9e3d-dd527daa5874" ownerguid="2d3ea645-0e8c-43b3-bb7e-32daea3d5d64"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="ccbf1b72-f116-4d90-92ca-964aec42546c" ownerguid="70229141-c7cd-4263-959c-9c0b1514b70d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6fe49b5e-093a-457b-9f14-02b68e8cec63" t="r" /> -</Morph> -</rt> -<rt class="MoDerivAffMsa" guid="ccc7375e-4d88-4127-8778-4383b399d945" ownerguid="e19e273c-0aed-49fd-818b-cae0c5228de7"> -<FromPartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</FromPartOfSpeech> -<ToPartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</ToPartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ccc7f00e-510e-4f47-a8ff-fcfb2cc7190c" ownerguid="b6a40216-fe93-4b0f-b85b-5622327031d0"> -<ExampleWords> -<AUni ws="en">nest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) Where do birds lay their eggs?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ccca40dc-068e-466f-a832-7921edb58444" ownerguid="7a24c499-eab8-411b-afd6-2bf83cf1f569"> -<Form> -<AUni ws="qvm-x-ach">confia</AUni> -<AUni ws="qvm-x-acl">confia</AUni> -<AUni ws="qvm-x-akh">confia</AUni> -<AUni ws="qvm-x-akl">confia</AUni> -<AUni ws="qvm-x-ame">confia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="cccd6c40-a7b4-4ee2-867d-d7ce4dbdf2e1" ownerguid="54d15699-88c2-4d94-a67e-ac4dd70013ed"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiGloss" guid="ccd0d19c-d931-4628-8dce-ce3249edbdb3" ownerguid="219cb684-f18b-4821-9b20-a20f642dfbb5" /> -<rt class="CmDomainQ" guid="ccd6fd27-fe47-48f0-81af-96f0554cb3a1" ownerguid="8242fc85-a703-4efa-a78a-0556a84e811e"> -<ExampleWords> -<AUni ws="en">grind your teeth, gnash, clench your teeth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What refer to grinding your teeth together?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ccd9ca57-c179-4862-914c-722239321f8c" ownerguid="8f268cae-46b2-4814-9b40-84d33a686b3e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ccda76e8-b888-4783-96c0-5c16d73088c9" ownerguid="1b0270a5-babf-4151-99f5-279ba5a4b044"> -<ExampleWords> -<AUni ws="en">build, figure, physique</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the shape of a person's body?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="cce1e207-b27e-41c0-880a-5a9a6ef3868a" ownerguid="011ba232-abe5-4cbb-9530-0fc73d59c77b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="cce26981-af34-4f48-8e37-d31deae5cafe" ownerguid="7eabd643-af0e-4d7e-9bdb-79f4e9847c05"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 16.8 Cärä shinticashganta y pasaypa uyutashgätami pïmaypis ricaycäman.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiWordform" guid="cce4e23f-3036-4f14-a9ca-4031d68e7303"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">pushakurkur</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="cce97c2c-eaf5-4719-8fe9-d0f0c14f0acf" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<ExampleWords> -<AUni ws="en">go for a walk, take a walk, go for a stroll, parade, procession, stretch your legs, hike, go hiking, trek, walk around</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(22) What words refer to a time when people walk for fun?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="cce98603-ff8f-4213-945a-bd6746716139" ownerguid="b47d2604-8b23-41e9-9158-01526dd83894"> -<Abbreviation> -<AUni ws="en">1.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.932" /> -<DateModified val="2022-9-23 16:55:7.932" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the ground we stand on, the earth versus the sky.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>1 Geographical Objects and Features; 1F The Earth's Surface</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Land</AUni> -</Name> -<OcmCodes> -<Uni>133 Topography and Geology</Uni> -</OcmCodes> -<Questions> -<objsur guid="1828767b-54c7-4488-ac36-35f3ee5804d6" t="o" /> -<objsur guid="5376c38a-ecbf-4a1e-9763-83f837c4cc23" t="o" /> -<objsur guid="5496fc3f-f361-4fac-ab6b-4008291908e0" t="o" /> -<objsur guid="6cce67b1-2613-47d1-85fd-ca261f6312b6" t="o" /> -<objsur guid="c43d1c26-6145-452e-954e-6d209bd8186a" t="o" /> -<objsur guid="ec6baaca-a2bc-4939-a936-e24af2bc5f50" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="928741b5-bff6-4dd1-be37-ec6e7a4eb6ca" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="0ac5e5f9-e7fe-4d37-a631-eab1ceb1f8ae" t="o" /> -<objsur guid="d50f3921-fcea-4ac9-b64a-25bf47dc3292" t="o" /> -<objsur guid="4fb79b12-3bd1-46ed-8698-7d27052a5dc7" t="o" /> -<objsur guid="cd403434-a5a1-4700-8ad3-b7c9aabd99d9" t="o" /> -<objsur guid="b3be00a9-41a4-42ae-ba51-320b5000a563" t="o" /> -<objsur guid="7988974c-99fd-40dd-9b5e-2d81ec603ddc" t="o" /> -<objsur guid="b3745f13-3632-4f13-b0cc-a74c51f8f2a1" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="ccea91d4-0498-430b-a9d0-6aaa7fb9469a" ownerguid="9e8b331c-da61-4881-b7ed-0bf3f07ce88f"> -<Form> -<AUni ws="qvm-x-ach">ñabaja</AUni> -<AUni ws="qvm-x-acl">ñabaja</AUni> -<AUni ws="qvm-x-akh">ñabaja</AUni> -<AUni ws="qvm-x-akl">ñabaja</AUni> -<AUni ws="qvm-x-ame">ñabaja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ccee1617-c79e-4018-8cec-8337b81ebe67" ownerguid="fcf16495-5226-4192-afdb-e748192efc3a"> -<ExampleWords> -<AUni ws="en">year, this year, last year, next year, the years to come</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a year?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="cceeae63-88a8-4f9e-a9e4-3e345300c452" ownerguid="fb277c1a-3699-4713-b9e1-14dd19d2815d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="cceed7a1-b2d1-4da0-a2a9-d2a98bd5a63e" ownerguid="12cc3933-0bab-4b41-bc88-aea8f068ea8d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="fdf3fdca-2a38-4390-ad4f-417403adf6fd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ccf00c47-4664-44d1-bdb9-1d95cf44f595" ownerguid="7981a8e1-cf0b-44a0-9de4-12160b2f201d"> -<ExampleWords> -<AUni ws="en">real estate agent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a person who sells land?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ccf00c50-f512-4af6-9cb0-96314ad3680c" ownerguid="cac7515e-88d5-4c73-b473-159eef5aa28f" /> -<rt class="WfiMorphBundle" guid="ccf35d13-4127-4183-b6db-b4e704199266" ownerguid="1d11a03e-037b-4e20-b890-2965f8667156"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -<Sense> -<objsur guid="db6117c5-121c-433a-a891-e69950f55761" t="r" /> -</Sense> -</rt> -<rt class="LexExampleSentence" guid="ccf88f94-b943-4a6a-8487-b94c0d21e706" ownerguid="acae6f77-7d40-4690-8e71-33ff2df22af4"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 3.21 Tsauraga riccharcamur chuchunäpäga wanushga wamralana oglanëcho caycashga.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiWordform" guid="ccfb9c3b-2049-4345-8c51-b12d3308741a"> -<Analyses> -<objsur guid="1f4219f4-e1b2-410e-973c-88c97ff00be9" t="o" /> -<objsur guid="2129b102-5acc-4824-ad82-f0663cced42a" t="o" /> -<objsur guid="2fece058-54b0-4d24-8938-4fa894a75434" t="o" /> -<objsur guid="3aad1996-7180-45d0-a76d-6580ea53ab20" t="o" /> -<objsur guid="5fef74b3-10a2-4ee5-9b51-61d80776ff05" t="o" /> -<objsur guid="63ac84a0-40f5-463a-87e3-f9cbb48e16cd" t="o" /> -</Analyses> -<Checksum val="1886474608" /> -<Form> -<AUni ws="qvm-x-akh">mikatsin</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="ccfd7981-9eff-4f0e-8bbe-787513f303d0" ownerguid="08d704f0-706b-4db9-9d6b-b5763469701d"> -<Form> -<AUni ws="qvm-x-ach">perlas</AUni> -<AUni ws="qvm-x-acl">perlas</AUni> -<AUni ws="qvm-x-akh">perlas</AUni> -<AUni ws="qvm-x-akl">perlas</AUni> -<AUni ws="qvm-x-ame">perlas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="ccfe1647-389f-487e-a29f-df4054997c39" ownerguid="3fef0346-9d8c-498b-a942-0266b865dee4"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 32.12 Ushacätsiptiquega Egipto runacuna caynog nenga: <Chunyag jircacho ushacätsinan cashgami cay nacionpita jorgushga.> Tsaynog nir mana jomintaycänanpag ama ushacaycatsilaytsu.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="cd0162de-bb70-4f39-85fa-f9c59ba90886"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">matsi</AUni> -<AUni ws="qvm-x-acl">matsi; matse</AUni> -<AUni ws="qvm-x-akh">matsi</AUni> -<AUni ws="qvm-x-akl">matsi; matse</AUni> -<AUni ws="qvm-x-ame">matsi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*machi</AUni> -<AUni ws="qvm-x-acl">*machi</AUni> -<AUni ws="qvm-x-akh">*machi</AUni> -<AUni ws="qvm-x-akl">*machi</AUni> -<AUni ws="qvm-x-ame">*machi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.255" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f0d79263-3538-4eb5-99eb-aebc9f2c351d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*machi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="79dce89b-da34-49a5-a332-81bc3fae781a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="af730668-21d9-4098-ba9a-3c589d495bcd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *machi 
\entryTyp root 
\gENG scatter 
\gSPN esparcir 
\e *machi 
\c V2 
\mp +FinalI 
\ach matsi 
\akh matsi 
\acl matsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl matse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl matsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl matse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame matsi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="cd01db6c-8aa6-42d1-93ac-05e81a8be523" ownerguid="1fda68d4-5941-4695-b656-090d603a3344"> -<Abbreviation> -<AUni ws="en">5.2.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.306" /> -<DateModified val="2022-9-23 16:55:8.306" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to serving food.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Serve food</AUni> -</Name> -<Questions> -<objsur guid="3354a18d-d5ab-40ca-86d7-0b44f408f0cb" t="o" /> -<objsur guid="722fca0c-b48a-41bc-9927-3e4b70ab8498" t="o" /> -<objsur guid="8254232c-b3eb-4d44-a743-8d71745bedbf" t="o" /> -<objsur guid="ec0b01e9-e9cb-4ccf-9cdf-843f5db9d6a5" t="o" /> -<objsur guid="f51ca22a-74f2-4055-8aaa-b883bf226af1" t="o" /> -<objsur guid="c02e71c2-110f-40e7-b09d-a4f830eab45f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="cd03ae38-94ec-4cf6-ae24-f8648dd9e96c" ownerguid="d244e8e6-c47f-490c-a998-5841eca099ce"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="cd04342d-a4b0-4e3c-8141-dbfb91e6543f" ownerguid="d460d260-0885-4a03-9046-253a46eae929"> -<Form> -<AUni ws="qvm-x-ach">chunquita</AUni> -<AUni ws="qvm-x-acl">chunquita</AUni> -<AUni ws="qvm-x-akh">chunkita</AUni> -<AUni ws="qvm-x-akl">chunkita</AUni> -<AUni ws="qvm-x-ame">chunkita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="cd04850d-1690-460e-9808-8aafe074adcd" ownerguid="56f5cbf7-5cc1-4ad6-9fc5-e8db18cb69d1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cut.down</AUni> -<AUni ws="es">tumbar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="33e82517-2fe3-468a-ab9c-7dba5274318d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="cd05113a-057f-4977-aec0-f899577f1b26" ownerguid="931492cb-c86f-4217-94ec-2cdfa96f960b"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="cd051692-e945-4b38-b8db-272eb54a78ce" ownerguid="34c3edad-a158-44e7-989b-5b74401e6945"> -<ExampleWords> -<AUni ws="en">natural gas, oxygen, carbon dioxide, ozone, hydrogen, nitrogen, helium, neon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of gas are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cd087f93-dada-43d0-a837-31ede7219ef8" ownerguid="716b3e9d-9bb9-42a6-ba56-829b1c018b28"> -<ExampleWords> -<AUni ws="en">maid, butler, valet, domestic servant, house help, household staff</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a household servant?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="cd0ae771-6359-4d5c-965b-50ff9791c916" ownerguid="7d640fdb-6536-43a5-9089-c600d63f70be"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 9.9 Estrellacunata camarmi <Llama> estrellacunata, <Arädu> estrellacunata y <Macëta> estrellacunatapis Tayta Dios camargan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="cd0e0f17-1083-42ad-a01c-08a1d938d9c9" ownerguid="6b921117-47e9-4717-b3b3-4e170d26b6d9"> -<ExampleWords> -<AUni ws="en">John, David, Mary, Elizabeth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the given names used by people in the language group?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="cd0fbe16-177e-4fe0-ab74-cc74ad16483a" ownerguid="8718e1ed-ba2e-41c4-a112-af2a9f137ac9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dill</AUni> -<AUni ws="es">eneldo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9871cf97-df7e-4aa6-ab11-10c0d338c57b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="cd10b786-9db6-4575-a9fe-0b68b9430694" ownerguid="134c68a9-ac3f-4b7e-8fca-63642d796a75"> -<ExampleWords> -<AUni ws="en">citizen, naturalized citizen, native, subject, countryman, inhabitant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a citizen of a country?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="cd10fae7-d7c1-4cce-a713-f53bbc71bdae"> -<Analyses> -<objsur guid="b2e3c568-8a97-4728-88c4-370cd0b0a26a" t="o" /> -</Analyses> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">capital</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="cd122d7e-1bcc-409d-a692-3ccdac0a783f" ownerguid="9a189da3-4e52-4cad-b44b-d58cdadc7192"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">heat</AUni> -<AUni ws="es">calentar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="94626b6f-6a4b-4c45-b7f2-7eab6f173940" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="cd125dcf-b116-46e9-baa8-eafa5b31758a" ownerguid="aeb53f5e-f8ab-4d4a-9e27-bae9d9185057"> -<Form> -<AUni ws="qvm-x-ach">lushpi</AUni> -<AUni ws="qvm-x-acl">lushpi; lushpe</AUni> -<AUni ws="qvm-x-akh">lushpi</AUni> -<AUni ws="qvm-x-akl">lushpi; lushpe</AUni> -<AUni ws="qvm-x-ame">lushpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="cd177332-a2fa-40aa-8913-267944ac56c1" ownerguid="393b5f04-972d-41e2-89b7-d08b3dd3ae70"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.lock</AUni> -<AUni ws="es">echar.llave</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b8ea7b65-4676-49da-814b-7e2fb59de2ee" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="cd180408-3e0d-4359-8f7d-c5a615731f20" ownerguid="bc241f99-65c1-4a28-9abf-c1949935d4b1"> -<Form> -<AUni ws="qvm-x-ach">prostitütu</AUni> -<AUni ws="qvm-x-acl">prostitütu; prostitütu; prostitüto</AUni> -<AUni ws="qvm-x-akh">prostitütu</AUni> -<AUni ws="qvm-x-akl">prostitütu; prostitütu; prostitüto</AUni> -<AUni ws="qvm-x-ame">prostitütu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="cd19bcef-3997-496d-94f8-9af5309b6ec4" ownerguid="99424280-0bd3-41c1-97e9-e557f6493d73"> -<Form> -<AUni ws="qvm-x-ach">chinchan</AUni> -<AUni ws="qvm-x-acl">chinchan</AUni> -<AUni ws="qvm-x-akh">chinchan</AUni> -<AUni ws="qvm-x-akl">chinchan</AUni> -<AUni ws="qvm-x-ame">chinchan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="cd1c4bca-6d47-4204-a85a-dcb409ccc6cf" ownerguid="7831223b-e5ed-4186-a321-94e9ae72a27d"> -<ExampleWords> -<AUni ws="en">chuck, sling, toss, pitch, flick</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to throwing something in a careless way?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cd1d9d5f-5846-45fd-ad21-73bb03f95402"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tinqui</AUni> -<AUni ws="qvm-x-acl">tinqui; tinqui; tinque</AUni> -<AUni ws="qvm-x-akh">tinki</AUni> -<AUni ws="qvm-x-akl">tinki; tinki; tinke</AUni> -<AUni ws="qvm-x-ame">tinki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tinki.n</AUni> -<AUni ws="qvm-x-acl">*tinki.n</AUni> -<AUni ws="qvm-x-akh">*tinki.n</AUni> -<AUni ws="qvm-x-akl">*tinki.n</AUni> -<AUni ws="qvm-x-ame">*tinki.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.906" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d75d6038-0798-45ad-8775-b0f3f41f7a57" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tinki.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="05236550-ff6a-42a6-b266-154744738d63" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e7e8ef30-017f-44d9-9656-cbb52a9ce8f9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tinki.n 
\entryTyp root 
\gENG knot 
\gSPN nudo 
\e *tinki.n 
\c N0 
\mp +FinalI 
\ach tinqui 
\akh tinki 
\acl tinqui / _# 
\acl tinqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tinque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tinki / _# 
\akl tinki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tinke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tinki</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="cd2034bd-26d4-43b9-872f-0139ba4a2531" ownerguid="e94a5cf3-1fd4-4b52-902f-bbf0ad6bac2b"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">He doesn't understand--he's <only> a child.; I don't want anything--I <only> want to help.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">only, just, purely, merely, mere, nothing but</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that something is only what you say it is, and not something more?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cd207cf2-912f-49b5-b48a-e4b942b8b281"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">anzue:la</AUni> -<AUni ws="qvm-x-acl">anzue:la</AUni> -<AUni ws="qvm-x-akh">anzue:la</AUni> -<AUni ws="qvm-x-akl">anzue:la</AUni> -<AUni ws="qvm-x-ame">anzue:la</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+anzuela</AUni> -<AUni ws="qvm-x-acl">+anzuela</AUni> -<AUni ws="qvm-x-akh">+anzuela</AUni> -<AUni ws="qvm-x-akl">+anzuela</AUni> -<AUni ws="qvm-x-ame">+anzuela</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.800" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c885b6d1-2658-450e-adfc-dfc481afcf6d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+anzuela</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="54a95820-8b47-4118-a5df-a79ee515e433" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="23588df6-8312-4935-bafa-c8edaad0f7b5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +anzuela 
\entryTyp root 
\gENG hook 
\gSPN anzuelo 
\e +anzuela 
\c N0 
\ach anzue:la 
\akh anzue:la 
\acl anzue:la 
\akl anzue:la 
\ame anzue:la</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="cd2109bb-a974-4894-b50e-5c1190d954df" ownerguid="56ef3f06-7fb9-462e-a7d0-517f3ce1623f"> -<ExampleWords> -<AUni ws="en">civet cat, mongoose</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What animals are in the civet cat family?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cd228b14-1b52-4cba-8490-b43ede82c598"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">muca</AUni> -<AUni ws="qvm-x-acl">muca</AUni> -<AUni ws="qvm-x-akh">muka</AUni> -<AUni ws="qvm-x-akl">muka</AUni> -<AUni ws="qvm-x-ame">muka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*muka.v</AUni> -<AUni ws="qvm-x-acl">*muka.v</AUni> -<AUni ws="qvm-x-akh">*muka.v</AUni> -<AUni ws="qvm-x-akl">*muka.v</AUni> -<AUni ws="qvm-x-ame">*muka.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.487" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="63b1e6c6-bf42-4ea8-91e5-a47b98422c5f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*muka.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3fe6248d-a235-4bd9-a2df-dd6806387d6a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2d713e08-e6ea-48e8-839d-14708255f5fc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *muka.v 
\entryTyp root 
\gENG smoke 
\gSPN fumar 
\e *muka.v 
\c V1 
\ach muca 
\akh muka 
\acl muca 
\akl muka 
\ame muka</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="cd239706-69ae-46c2-9a9c-05c053f5709e" ownerguid="6bda8a7e-628f-4114-9c86-ba3b42f31d3f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="cd23d4d2-1127-44ba-beb9-1242b1e5e246" ownerguid="54a66603-d266-4e82-89f5-2fae943bc5cd"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="cd25cd4f-8f3f-4677-9c60-6967bea5fa3d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sorte:ja</AUni> -<AUni ws="qvm-x-acl">sorte:ja</AUni> -<AUni ws="qvm-x-akh">sorte:ja</AUni> -<AUni ws="qvm-x-akl">sorte:ja</AUni> -<AUni ws="qvm-x-ame">sorte:ja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sortija</AUni> -<AUni ws="qvm-x-acl">+sortija</AUni> -<AUni ws="qvm-x-akh">+sortija</AUni> -<AUni ws="qvm-x-akl">+sortija</AUni> -<AUni ws="qvm-x-ame">+sortija</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.731" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="787903df-82da-45af-b288-96ebb09e5adc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sortija</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c48bdc14-49d0-4d54-a303-a354fc4491e8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d0e124a1-b01c-46a4-abf7-66fde670b6f7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sortija 
\entryTyp root 
\gENG ring 
\gSPN aro 
\e +sortija 
\c N0 
\ach sorte:ja 
\akh sorte:ja 
\acl sorte:ja 
\akl sorte:ja 
\ame sorte:ja</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="cd265743-390b-4b6c-b803-53941e137bed"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">brujería; brujeria</AUni> -<AUni ws="qvm-x-acl">brujería; brujeria</AUni> -<AUni ws="qvm-x-akh">brujería; brujeria</AUni> -<AUni ws="qvm-x-akl">brujería; brujeria</AUni> -<AUni ws="qvm-x-ame">brujería; brujeria</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+brujería</AUni> -<AUni ws="qvm-x-acl">+brujería</AUni> -<AUni ws="qvm-x-akh">+brujería</AUni> -<AUni ws="qvm-x-akl">+brujería</AUni> -<AUni ws="qvm-x-ame">+brujería</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.991" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f19927df-2968-4e07-832a-a4544ab267d7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+brujería</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a4a8c347-76cd-454b-a7b8-715060881e79" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="eb9a11e6-d364-41a3-8915-539ce0def981" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +brujería 
\entryTyp root 
\gENG 
\gSPN brujería 
\e +brujería 
\c N0 
\ach brujería / _# 
\ach brujeria / ~_# 
\akh brujería / _# 
\akh brujeria / ~_# 
\acl brujería / _# 
\acl brujeria / ~_# 
\akl brujería / _# 
\akl brujeria / ~_# 
\ame brujería / _# 
\ame brujeria / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="cd28c2d9-0754-4389-876a-294c11deb69c" ownerguid="4fa873e3-bd37-4bda-9fa0-6802f4171a45"> -<Form> -<AUni ws="qvm-x-ach">cawallu</AUni> -<AUni ws="qvm-x-acl">cawallu; cawallu; cawallo</AUni> -<AUni ws="qvm-x-akh">cawallu</AUni> -<AUni ws="qvm-x-akl">cawallu; cawallu; cawallo</AUni> -<AUni ws="qvm-x-ame">cawallu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="cd2d05c6-7d57-4bb0-9dc6-a5a01a7312c4" ownerguid="28a4e00c-de72-4c2a-8b2e-ac12e16c4757"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StText" guid="cd2fa409-a581-457a-a957-cb4cdabc7f2d" ownerguid="67e9b8bf-c312-458e-89c3-6e9326e48aa0"> -<DateModified val="2022-9-23 18:26:25.183" /> -<Paragraphs> -<objsur guid="bcddd9ed-6b95-4b39-b443-f314b21bc2fb" t="o" /> -</Paragraphs> -<RightToLeft val="False" /> -</rt> -<rt class="WfiWordform" guid="cd31a106-82d5-448f-b480-91198cb198b7"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">yarpapäkan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="cd34ac8b-07c5-4bb4-ba76-fe9f82073fba" ownerguid="a894d991-d5da-45a6-9c62-009133257f36"> -<ExampleWords> -<AUni ws="en">weak, weakened, feel tired, no energy, debilitate, enervate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to feeling weak?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="cd35f3b7-1ce6-4b01-b929-a8e708ea2f44" ownerguid="173c4bcf-6cb9-4473-bd57-2ee41acc3051"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="cd37094f-e5ca-49bc-a8d3-083de7c4934b" ownerguid="864f3816-41b6-4881-bf14-235e6301e8bb" /> -<rt class="MoStemAllomorph" guid="cd3a434f-b085-40be-88ef-5a518871dc2a" ownerguid="83403b66-d2ec-471e-8259-e7f396caeee9"> -<Form> -<AUni ws="qvm-x-ach">guechipa</AUni> -<AUni ws="qvm-x-acl">guechipa</AUni> -<AUni ws="qvm-x-akh">qechipa</AUni> -<AUni ws="qvm-x-akl">qechipa</AUni> -<AUni ws="qvm-x-ame">qichipa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="cd3c67b1-76b4-429e-9022-7e4f66b59661" ownerguid="67fd8c15-a1fa-4f38-9250-309e869910ca"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="1867689c-a66b-41ba-bcbb-cee8117ef8a9" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">trunk</AUni> -<AUni ws="es">tronco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2061dce1-5afe-4654-af2b-2fbbb9cb6022" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="cd3d3c01-4194-4e0d-acb5-21512cda8376" ownerguid="3005971d-de4d-401f-8400-b25de5e052ad"> -<ExampleWords> -<AUni ws="en">in the middle, at the center</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that something is in the middle of a thing or area?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="cd403434-a5a1-4700-8ad3-b7c9aabd99d9" ownerguid="cce98603-ff8f-4213-945a-bd6746716139"> -<Abbreviation> -<AUni ws="en">1.2.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.947" /> -<DateModified val="2022-9-23 16:55:7.947" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to valleys.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>1H Depressions and Holes</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Valley</AUni> -</Name> -<Questions> -<objsur guid="d2390fa3-180b-4ad1-9e8c-aaf5ee9f29f6" t="o" /> -<objsur guid="6eafb4c4-a951-409d-9d55-0df9985f1485" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="cd4190e5-ccf0-429c-99ab-2cd8f2ef6a08" ownerguid="319b7245-2c99-422b-a23e-d33810811ef9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cachari</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cachari; cachare</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kachari</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kachari; kachare</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kachari</Run> -</AStr> -</Form> -<Morph> -<objsur guid="609f45cf-9df1-4976-b948-69672b584e8f" t="r" /> -</Morph> -<Msa> -<objsur guid="c533f197-4448-4a72-87f3-bef95ff4fc6e" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="cd4300c9-265e-4457-8e33-4e0c9a4d4ba8" ownerguid="83adeb9d-c0be-4073-894d-913014420280"> -<Abbreviation> -<AUni ws="en">8.3.7.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the value of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>65 Value; 65A Valuable, Lacking in Value; 65B Worthy, Not Worthy</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Value</AUni> -</Name> -<Questions> -<objsur guid="fd98f1a1-0e6b-489c-b1e3-2f3cfb1716ef" t="o" /> -<objsur guid="324dda72-6cbf-4162-aa21-fec47e866359" t="o" /> -<objsur guid="894fe9ff-1820-468c-8307-1a788867d609" t="o" /> -<objsur guid="086b0cef-cb29-4f93-a91d-a7f75a43dd30" t="o" /> -<objsur guid="20e7732b-07a9-4377-9b77-a2b3309c25e5" t="o" /> -<objsur guid="f5abf31f-070e-48a8-952d-ed79e4751d43" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="167bfba5-0785-4bb5-a083-3ffbefa57897" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="cd436263-30a3-498c-93f6-3d5682f7f7c0" ownerguid="f726d9bb-ae80-4c01-bdef-b600cb27736e"> -<Abbreviation> -<AUni ws="en">6.9.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.498" /> -<DateModified val="2022-9-23 16:55:8.498" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to commerce--taking something to a place and trying to sell it there.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Commerce</AUni> -</Name> -<OcmCodes> -<Uni>438 Domestic Trade; 439 Foreign Trade</Uni> -</OcmCodes> -<Questions> -<objsur guid="8dbcd117-936d-4827-84d2-375ad730eadf" t="o" /> -<objsur guid="463c78ed-2197-40dd-bc6a-6a11ad382def" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoAffixAllomorph" guid="cd484225-960e-40fb-867a-6f414a8713c1" ownerguid="cabbb65d-f1ee-408d-847a-814f2a83e682"> -<Form> -<AUni ws="qvm-x-ach">sh</AUni> -<AUni ws="qvm-x-acl">sh</AUni> -<AUni ws="qvm-x-akh">sh</AUni> -<AUni ws="qvm-x-akl">sh</AUni> -<AUni ws="qvm-x-ame">sh</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="cd4a24fb-ba6b-4667-ab62-1cc68de461cc" ownerguid="cae2e31a-b940-4186-afb3-6e93edd12989"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2SA 13.4 Tsaypita juc cutichömi Jonadab taporgan Amnónta caynog nir: <<Reypa tsurin caycarga ¿imanirtag waran waran pasaypa ceratacashga puriycanqui? Ima pasaycäshushgayquitapis ¿manacu wilamanquiman?</Run> -</AStr> -</Example> -</rt> -<rt class="LexExampleSentence" guid="cd4a7357-bc42-458e-869b-66be5fcd3883" ownerguid="e4b04a0f-b137-40da-9038-f5655c32e367"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2KI 18.21 Egipto runacunaman yäracuptiquipis paycunaga manami yanapashunquitsu. Shogushman tucnacuptin paquicar maqui paltanman tsalcu yaycognogmi Egipto runacunapis gamcunapag canga.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="cd4d49cb-fc99-40f8-a8cf-73e35d89034f" ownerguid="482fae12-4041-4cf4-a652-9b7e0ed382a7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="cd4dcca5-829a-49ba-8ed7-98a03e7e90c0" ownerguid="fa660c9d-8787-4335-8744-3dbc139b2df1"> -<ExampleWords> -<AUni ws="en">plaintiff</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the person who accuses another person?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cd4e0a03-47f9-4119-a883-ea54123d0817"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mitsi</AUni> -<AUni ws="qvm-x-acl">mitsi; mitse</AUni> -<AUni ws="qvm-x-akh">mitsi</AUni> -<AUni ws="qvm-x-akl">mitsi; mitse</AUni> -<AUni ws="qvm-x-ame">mitsi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*michi</AUni> -<AUni ws="qvm-x-acl">*michi</AUni> -<AUni ws="qvm-x-akh">*michi</AUni> -<AUni ws="qvm-x-akl">*michi</AUni> -<AUni ws="qvm-x-ame">*michi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.426" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fe64ba7f-e676-4a97-8a62-c9b3d39329d3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*michi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9185d474-e0c5-4ac3-ab9d-652d0b9269a1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b78b53ce-690a-458d-81b6-a05dd2fc77db" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *michi 
\entryTyp root 
\gENG pasture 
\gSPN pastar 
\e *michi 
\c V2 
\mp +FinalI 
\ach mitsi 
\akh mitsi 
\acl mitsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl mitse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mitsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mitse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mitsi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="cd4ec60f-d9b3-4b8e-8fc5-155434aae5b7" ownerguid="56f459a1-d5cf-47b3-9749-f4b9c71f58f9"> -<Form> -<AUni ws="qvm-x-ach">linterna</AUni> -<AUni ws="qvm-x-acl">linterna</AUni> -<AUni ws="qvm-x-akh">linterna</AUni> -<AUni ws="qvm-x-akl">linterna</AUni> -<AUni ws="qvm-x-ame">linterna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="cd51c652-4770-4de4-bf2f-527fa28b04e4" ownerguid="fd33670e-ef16-4566-a62e-aa077e58407b"> -<ExampleWords> -<AUni ws="en">bang, boom, roar, rumble</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(20) What words refer to the sound of a gun or bomb?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="cd525f66-028a-4ff9-8b02-6d7423b45414" ownerguid="34cbaedb-160b-467b-8acd-46155d6a2400"> -<Form> -<AUni ws="qvm-x-ach">encanta</AUni> -<AUni ws="qvm-x-acl">encanta</AUni> -<AUni ws="qvm-x-akh">encanta</AUni> -<AUni ws="qvm-x-akl">encanta</AUni> -<AUni ws="qvm-x-ame">encanta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="cd53d883-e143-4737-a1a3-bbaf95748713" ownerguid="9b5ee2f0-29d3-49c8-bb54-e101cd75ee8f" /> -<rt class="CmDomainQ" guid="cd5bbd6a-7439-4a79-b970-a64002cccc3a" ownerguid="1c3c8af0-56b9-4617-862e-21f39b388606"> -<ExampleWords> -<AUni ws="en">die, expire</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to dying?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cd5cb831-79c6-4f0f-8a5c-30a070a183ff"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jega</AUni> -<AUni ws="qvm-x-acl">jega</AUni> -<AUni ws="qvm-x-akh">jeqa</AUni> -<AUni ws="qvm-x-akl">jeqa</AUni> -<AUni ws="qvm-x-ame">hiqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hiqa</AUni> -<AUni ws="qvm-x-acl">*hiqa</AUni> -<AUni ws="qvm-x-akh">*hiqa</AUni> -<AUni ws="qvm-x-akl">*hiqa</AUni> -<AUni ws="qvm-x-ame">*hiqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.721" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="01bea8e6-aeef-42e2-9071-5d8d49d7a635" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hiqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7a45bbd3-d191-4a1d-a34c-df4b7c3c18eb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="69f520c6-ba5d-4da1-8bf8-8cb5bc070398" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hiqa 
\entryTyp root 
\gENG fall 
\gSPN caer 
\e *hiqa 
\c V1 
\ach jega 
\akh jeqa 
\acl jega 
\akl jeqa 
\ame hiqa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="cd5e757c-915e-49f4-8ad6-6481f7fea10d" ownerguid="539051a2-2e15-4ef7-8854-3c07d83ab898"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="cd5ed0db-5b28-4b3e-80bb-16f9eb490cae" ownerguid="a02b67e5-8246-4859-9c7c-99e7c9a116e4"> -<Form> -<AUni ws="qvm-x-ach">cërru</AUni> -<AUni ws="qvm-x-acl">cërru; cërru; cërro</AUni> -<AUni ws="qvm-x-akh">cërru</AUni> -<AUni ws="qvm-x-akl">cërru; cërru; cërro</AUni> -<AUni ws="qvm-x-ame">cërru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="cd60a095-79bd-4477-b647-fbc4e69134b3" ownerguid="6bcaf8ff-3006-4246-847c-9673a999e808"> -<Form> -<AUni ws="qvm-x-ach">böla</AUni> -<AUni ws="qvm-x-acl">böla</AUni> -<AUni ws="qvm-x-akh">böla</AUni> -<AUni ws="qvm-x-akl">böla</AUni> -<AUni ws="qvm-x-ame">böla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="cd61abb3-318e-4fa0-8a9b-602cdf3cffc9" ownerguid="40248a12-1809-4561-b786-e4e274c14d82"> -<ExampleWords> -<AUni ws="en">primate, ape, monkey, anthropoid</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to primates?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="cd620804-1cb6-4263-a9c7-8cc1c90d991d"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Waqaykashqanpitami</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="cd6407c3-45ef-4d06-9269-49922a917779" ownerguid="93b8bd61-137a-4ebc-b12f-52fa5d2b3ea4"> -<ExampleWords> -<AUni ws="en">be blown by the wind, wind blows something, blow away, waft on the breeze, flutter in the breeze, be carried by the wind, be born along on/by the wind, be picked up by the wind</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words describe something being blown by the wind?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="cd659cc5-0b46-4e13-91cb-30685b0f2c54" ownerguid="ab0383f3-2cca-44f3-8b28-631d17f745fb"> -<Form> -<AUni ws="qvm-x-ach">patata</AUni> -<AUni ws="qvm-x-acl">patata</AUni> -<AUni ws="qvm-x-akh">patata</AUni> -<AUni ws="qvm-x-akl">patata</AUni> -<AUni ws="qvm-x-ame">patata</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="cd674ab6-1c89-440f-a23a-9830cd212065" ownerguid="2495d5b2-9623-4b99-9066-04e164c9bb14"> -<Form> -<AUni ws="qvm-x-ach">chacra</AUni> -<AUni ws="qvm-x-acl">chacra</AUni> -<AUni ws="qvm-x-akh">chakra</AUni> -<AUni ws="qvm-x-akl">chakra</AUni> -<AUni ws="qvm-x-ame">chakra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="cd682493-6d1e-437c-bbd8-1115ace13617" ownerguid="1e159a3c-16cf-444d-ade8-cf66c98c1826"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="cd6f1b37-5bdd-4237-8827-b1c947c8e1b4" ownerguid="a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f"> -<Abbreviation> -<AUni ws="en">2.3.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that describe how well you can see through something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79F Transparent</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Transparent</AUni> -</Name> -<Questions> -<objsur guid="f6f8368f-64da-48c9-974a-7e748bb83ad6" t="o" /> -<objsur guid="4424f893-ae9b-4ebc-97b4-eced0072bdd3" t="o" /> -<objsur guid="39a15d2a-03f8-4092-a8af-36c0d3e8dd62" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="cd72a756-12e8-44a9-be31-336d8a58b719" ownerguid="13f62fa1-589c-4a46-9bbc-b0fd1001e21f"> -<ExampleWords> -<AUni ws="en">prisoner, jailbird, captive, felon, convict, inmate, prisoner of war</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What is a person called who is imprisoned?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="cd734efc-6519-423f-8c99-d396f799d99e"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Noemíqa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="cd754236-6c4d-4358-8cc3-82ee3ada8531" ownerguid="5e04771f-5cab-4734-ad44-ca5b6b7686ca"> -<Form> -<AUni ws="qvm-x-ach">agräviu</AUni> -<AUni ws="qvm-x-acl">agräviu; agräviu; agrävio</AUni> -<AUni ws="qvm-x-akh">agräviu</AUni> -<AUni ws="qvm-x-akl">agräviu; agräviu; agrävio</AUni> -<AUni ws="qvm-x-ame">agräviu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="cd7ba896-468f-4f06-a992-14aae0f8241f" ownerguid="1d2097b0-904f-43f2-a510-795fd4650081"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">make.hole</AUni> -<AUni ws="es">hacer.hueco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ada92c0c-a1db-4a81-bcf9-675c47f67688" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="cd7d8265-092b-498c-9bd8-a22a6f33a6e0" ownerguid="ce388b3a-7c80-4cec-96f2-ad558bcaa18a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="cd819d9a-2ab9-45c5-91d5-5f1323941da2" ownerguid="59a95939-44d7-4396-9ef7-3a80c17e9fb1"> -<ExampleWords> -<AUni ws="en">bad language, strong language, swear word, four letter word, curse, obscenities, profanity, swearing, unprintable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to speech that is considered offensive or improper?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="cd842b59-b2da-4cd7-b033-1f8c0109e4c3" ownerguid="50d06ec2-c978-4c12-83dc-c2e2d919f465"> -<Gloss> -<AUni ws="en">LIM2</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="85aa2915-81b5-4a1e-bad6-9bd987827f8f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="cd85fe14-c139-40c7-a148-8659e107755f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">telar</AUni> -<AUni ws="qvm-x-acl">telar</AUni> -<AUni ws="qvm-x-akh">telar</AUni> -<AUni ws="qvm-x-akl">telar</AUni> -<AUni ws="qvm-x-ame">telar</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+telar</AUni> -<AUni ws="qvm-x-acl">+telar</AUni> -<AUni ws="qvm-x-akh">+telar</AUni> -<AUni ws="qvm-x-akl">+telar</AUni> -<AUni ws="qvm-x-ame">+telar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.855" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e32ab331-7394-48d5-92f1-89fc6a92e6c0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+telar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7bb779bf-9405-4df2-8eb0-beb797d23e52" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6755d0cb-11f6-4d9c-a731-336bfd044212" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +telar 
\entryTyp root 
\gENG loom 
\gSPN telar 
\e +telar 
\c N0 
\mp +FinalC 
\ach telar 
\akh telar 
\acl telar 
\akl telar 
\ame telar</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="cd88982c-5532-4c95-ae7a-7d7f804945d2" ownerguid="880f9aff-b7b6-47a8-8b2c-8222b95c4db3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PunctuationForm" guid="cd88c573-22c0-4cb0-a1c7-6fb731e8727b"> -<Form> -<Str> -<Run ws="en">without</Run> -</Str> -</Form> -</rt> -<rt class="MoAffixAllomorph" guid="cd8a6924-7b49-44be-b2ab-849ecf09bb6b" ownerguid="986b31ce-1a07-47f4-93aa-3048f8e0833d"> -<Form> -<AUni ws="qvm-x-ach">ynag</AUni> -<AUni ws="qvm-x-acl">ynag</AUni> -<AUni ws="qvm-x-akh">ynaq</AUni> -<AUni ws="qvm-x-akl">ynaq</AUni> -<AUni ws="qvm-x-ame">ynaq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="cd8b2a8b-687b-42e9-91e7-cfb8812b64ee" ownerguid="8add7f4d-333b-4b2c-9999-48a14162152b"> -<Abbreviation> -<AUni ws="en">4.3.6.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.235" /> -<DateModified val="2022-9-23 16:55:8.235" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to mistakes--something bad that someone does by accident.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Mistake</AUni> -</Name> -<Questions> -<objsur guid="32998b42-bc5e-4b4f-a991-bcf09c4f7540" t="o" /> -<objsur guid="3e068caf-b8cd-4677-934a-a6d100e3a3fe" t="o" /> -<objsur guid="eee6651d-3b61-4e2e-ab45-0560bf256846" t="o" /> -<objsur guid="a861024e-3092-4076-ab04-cb8433203520" t="o" /> -<objsur guid="b69b9f76-2244-4977-bb84-e9fc4e071e3a" t="o" /> -<objsur guid="e110e21e-b3fb-420a-ac3e-e469b9133b08" t="o" /> -<objsur guid="aa982cc0-4905-4c8d-80f3-e094719fdd6f" t="o" /> -<objsur guid="6a128eb5-8757-4bbf-a4dc-34739dff2695" t="o" /> -<objsur guid="0db70b38-e2ad-4b80-a7d4-743cc13eceec" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="87dd09b8-689c-4a56-b3f6-846a849f71b8" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="cd8e182f-8db3-4300-84e4-cadd0d8534ac" ownerguid="b456e020-211a-458d-9d0f-59b89e938b3f"> -<Form> -<AUni ws="qvm-x-ach">honras</AUni> -<AUni ws="qvm-x-acl">honras</AUni> -<AUni ws="qvm-x-akh">honras</AUni> -<AUni ws="qvm-x-akl">honras</AUni> -<AUni ws="qvm-x-ame">honras</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="cd8e698c-879b-4c2c-882d-d06d82e53510" ownerguid="23eda898-b2f4-403e-ae38-fcbd4415229a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">thick</AUni> -<AUni ws="es">grueso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="283414bb-2c9e-4d2d-ae83-04217e49b966" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="cd8fd17e-b7b5-44bd-8a18-623c2be0421c" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<ExampleWords> -<AUni ws="en">hunter, fisherman, honey gatherer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What are the occupations in hunting and fishing?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="cd8ffc1a-8e4c-436f-a88c-2a6139108886" ownerguid="cf8b9a86-96e2-4712-a76d-39f7695a338b"> -<Form> -<AUni ws="qvm-x-ach">referencia</AUni> -<AUni ws="qvm-x-acl">referencia</AUni> -<AUni ws="qvm-x-akh">referencia</AUni> -<AUni ws="qvm-x-akl">referencia</AUni> -<AUni ws="qvm-x-ame">referencia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="cd912015-080f-4d4f-9842-621503b92759" ownerguid="679609f6-c2da-428a-bf49-3cc2b82122ab"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">small</AUni> -<AUni ws="es">pequeño</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="585e53f3-3019-49be-99cc-3b019d4fe295" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="cd96a6dd-6507-4fbf-861a-ec6c7bc99f0c" ownerguid="07577951-6558-4c64-bafb-b0c6f4e28061"> -<Form> -<AUni ws="qvm-x-ach">yarga; yargä</AUni> -<AUni ws="qvm-x-acl">yarga; yargä</AUni> -<AUni ws="qvm-x-akh">yarqa; yarqä</AUni> -<AUni ws="qvm-x-akl">yarqa; yarqä</AUni> -<AUni ws="qvm-x-ame">yarqa; yarqä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="cd982f33-549f-4cdf-9710-745fd7740627" ownerguid="eda80639-3bd1-4f19-90d3-a6701e15e927"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="cd994f17-c4c5-441f-8928-619285f963fb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">inlesia</AUni> -<AUni ws="qvm-x-acl">inlesia</AUni> -<AUni ws="qvm-x-akh">inlesia</AUni> -<AUni ws="qvm-x-akl">inlesia</AUni> -<AUni ws="qvm-x-ame">inlesia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+iglesia.2</AUni> -<AUni ws="qvm-x-acl">+iglesia.2</AUni> -<AUni ws="qvm-x-akh">+iglesia.2</AUni> -<AUni ws="qvm-x-akl">+iglesia.2</AUni> -<AUni ws="qvm-x-ame">+iglesia.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.790" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f18bd364-fa9e-4c9f-a8b4-28fb7dc26dc1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+iglesia.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cb8b1e0e-8308-4752-b019-654377e8dffa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4281f073-e4a1-4b1c-a158-ba3ad0a13d22" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +iglesia.2 
\entryTyp root 
\gENG church 
\gSPN iglesia 
\e +iglesia.2 
\c N0 
\mp +assimilated 
\ach inlesia 
\akh inlesia 
\acl inlesia 
\akl inlesia 
\ame inlesia</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="cd9a92f0-4f0d-4383-a9cd-32ff7d9cefa4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tutuma</AUni> -<AUni ws="qvm-x-acl">tutuma</AUni> -<AUni ws="qvm-x-akh">tutuma</AUni> -<AUni ws="qvm-x-akl">tutuma</AUni> -<AUni ws="qvm-x-ame">tutuma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tutuma</AUni> -<AUni ws="qvm-x-acl">*tutuma</AUni> -<AUni ws="qvm-x-akh">*tutuma</AUni> -<AUni ws="qvm-x-akl">*tutuma</AUni> -<AUni ws="qvm-x-ame">*tutuma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.27" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8f057403-3283-45e0-a1d4-5c3fa7af2450" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tutuma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a6039ee9-59ea-4d2d-a7f2-3449af741b7a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e5712dfe-cd92-4a71-a164-cf385f25499a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tutuma 
\entryTyp root 
\gENG gourd 
\gSPN 
\e *tutuma 
\c N0 
\ach tutuma 
\akh tutuma 
\acl tutuma 
\akl tutuma 
\ame tutuma</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="cd9e91fb-99fd-46af-9844-1e587c92b378" ownerguid="e0e8af5a-04c1-49a1-9955-9a2af7879068"> -<ExampleWords> -<AUni ws="en">well-known, famous, infamous, fame, notorious, public knowledge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something or someone that is known to many people?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="cd9f33e2-7356-4d6c-925b-1a7931c18f90" ownerguid="84812e05-5a4d-4776-abaa-761b9a977ff6"> -<Form> -<AUni ws="qvm-x-ach">golu; golü</AUni> -<AUni ws="qvm-x-acl">golö; golu; golo</AUni> -<AUni ws="qvm-x-akh">qolu; qolü</AUni> -<AUni ws="qvm-x-akl">qolö; qolu; qolo</AUni> -<AUni ws="qvm-x-ame">qulu; qulü</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="cda1a977-5df8-4e0d-89cc-5d0b7f1120e4" ownerguid="21ebc64a-a1b8-45bd-b7f6-143a053f1d31"> -<ExampleWords> -<AUni ws="en">basketball, hoop, net, backboard, uniform, basketball shoes, referee's whistle, clock, scoreboard, bench</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What equipment is used in the game?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="cda3346a-d1a2-41bc-b0b2-148ea8aad6aa"> -<Analyses> -<objsur guid="959db2a6-3d5e-412e-9446-57acca89edd9" t="o" /> -</Analyses> -<Checksum val="-1933979553" /> -<Form> -<AUni ws="qvm-x-akh">juezkuna</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="cda61434-4b44-4743-b75b-e083bc4e013f" ownerguid="6580913f-20ab-4d71-aa82-7e7dab230e09"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="cdac6c08-8a47-4cb3-9e07-09ea5fabff60" ownerguid="eed0654e-45ce-4ef0-b34f-a2e02cf8b94c"> -<Form> -<AUni ws="qvm-x-ach">profetiza</AUni> -<AUni ws="qvm-x-acl">profetiza</AUni> -<AUni ws="qvm-x-akh">profetiza</AUni> -<AUni ws="qvm-x-akl">profetiza</AUni> -<AUni ws="qvm-x-ame">profetiza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="cdacd2fc-4611-457d-b88f-3c9c8bb345b9" ownerguid="6ccefcc7-b00f-47fc-937b-49bd0cb540f3" /> -<rt class="MoStemMsa" guid="cdb0e2d5-c02a-4c81-9529-dc8b5269c0e1" ownerguid="01d8a648-bdc5-4905-aaa2-e0a3ebdc5bf5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="cdb16615-8f9f-4c36-af5c-20cb086348ff" ownerguid="20baa5e7-4f02-4782-a292-c6281d7b5f3a"> -<ExampleWords> -<AUni ws="en">put your shoulder into it</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to pushing something heavy?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cdb8d570-8e78-4458-a259-ab0b3d7640d2" ownerguid="1a8322d7-cda9-41e5-a14b-f41274cb7157"> -<ExampleWords> -<AUni ws="en">left-handed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a person who usually uses his left hand?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cdb9449e-9da2-4e64-997a-563c5586e8ff" ownerguid="7c80f6ee-e76d-4903-aee6-7a33d1da3f75"> -<ExampleWords> -<AUni ws="en">covering, lid, cap</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something used to cover something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="cdb9a17e-efb7-441b-af66-946e0e0f993b" ownerguid="d08be0cd-3aca-4b2f-897a-31716c4de596"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="cdbab3f5-ad93-4965-a9f6-bb03bf2c6dc0" ownerguid="d4389d2b-9d2e-4bb0-af7f-faed9c771fa8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="cdbbd906-fcd8-4031-83b7-5543ed93ac73" ownerguid="98ec2d97-4a2c-4f63-b3f9-32d5083d089e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="cdbd4831-95a6-4c73-95ee-0612aa6e0057" ownerguid="f0b48c79-b15e-4e3f-a722-74947eebd0d2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">noon.meal</AUni> -<AUni ws="es">almuerzo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a283647e-ee95-4a79-82de-f8ec237765ed" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="cdc22bbf-313c-4c46-909b-7d17d29b5e85" ownerguid="80628870-6d6a-4743-a05d-88d1cf1d0bcc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c9322f9e-e90a-4bf3-b7ad-4b8ca2367c08" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="70ffda66-4d65-4872-8489-2e4d01ee584b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="cdc329fe-af04-4169-b3d0-0f1cd55f873b" ownerguid="9f8bbd01-e632-4c24-a40b-e51ddb1716eb"> -<Form> -<AUni ws="qvm-x-ach">tsicla</AUni> -<AUni ws="qvm-x-acl">tsicla</AUni> -<AUni ws="qvm-x-akh">tsikla</AUni> -<AUni ws="qvm-x-akl">tsikla</AUni> -<AUni ws="qvm-x-ame">tsikla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="cdc5453b-0cd3-4158-8992-533ace2bdf85" ownerguid="18232240-b33d-426a-a36c-13158a0a6b58"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="28fe906f-5355-4757-b3e4-a3657d5dc964" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">easy</AUni> -<AUni ws="es">fácil</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4b8aa45e-886e-4cec-b678-abae3ab5ff27" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="cdca785d-c2d2-44fa-aa86-92a705347cc1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">walgui</AUni> -<AUni ws="qvm-x-acl">walgui; walgui; walgue</AUni> -<AUni ws="qvm-x-akh">walqi</AUni> -<AUni ws="qvm-x-akl">walqi; walqi; walqe</AUni> -<AUni ws="qvm-x-ame">walqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wallqi</AUni> -<AUni ws="qvm-x-acl">*wallqi</AUni> -<AUni ws="qvm-x-akh">*wallqi</AUni> -<AUni ws="qvm-x-akl">*wallqi</AUni> -<AUni ws="qvm-x-ame">*wallqi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.465" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4c57e97c-6d6f-4504-9a80-01635a247d57" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wallqi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4cc7a067-3267-443d-a1dd-4cdabde713ec" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f880e303-26b0-41a6-b4df-e21be46dfa26" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wallqi 
\entryTyp root 
\gENG coca.bag 
\gSPN bolsa.para.coca 
\e *wallqi 
\c N0 
\mp +FinalI 
\ach walgui 
\akh walqi 
\acl walgui / _# 
\acl walgui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl walgue +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl walqi / _# 
\akl walqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl walqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame walqi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="cdccd898-2887-4738-9ae9-1e3b0920a8ac"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chiclaushu</AUni> -<AUni ws="qvm-x-acl">chiclaushu; chiclaushu; chiclausho</AUni> -<AUni ws="qvm-x-akh">chiklawshu</AUni> -<AUni ws="qvm-x-akl">chiklawshu; chiklawshu; chiklawsho</AUni> -<AUni ws="qvm-x-ame">chiklawshu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trikllawshu</AUni> -<AUni ws="qvm-x-acl">*trikllawshu</AUni> -<AUni ws="qvm-x-akh">*trikllawshu</AUni> -<AUni ws="qvm-x-akl">*trikllawshu</AUni> -<AUni ws="qvm-x-ame">*trikllawshu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.98" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="22bad4ca-5905-40c3-9b5a-19f48c665a6b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trikllawshu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1597acc2-4968-46e9-98d3-0760d0b4456e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f0e30717-4316-45f4-80c7-54eaa2c1daa0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trikllawshu 
\entryTyp root 
\gENG armpit 
\gSPN sobaco 
\e *trikllawshu 
\c N0 
\ach chiclaushu 
\akh chiklawshu 
\acl chiclaushu / _# 
\acl chiclaushu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chiclausho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chiklawshu / _# 
\akl chiklawshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chiklawsho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chiklawshu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="cdcf225e-ae3f-4c07-8b37-086bb2ca55a7" ownerguid="5f5083e6-4fbb-4408-ab01-0e2eb8e60c36"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">buen.olor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="75dcf6a0-e488-4f7f-8a29-595d91b2a8ef" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="cdd13cc5-881b-46cd-984e-d5ac7c331410" ownerguid="6187e620-89bd-4b9d-9896-0c0c788e7740"> -<ExampleWords> -<AUni ws="en">line, out of bounds</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What are the parts of a playing area?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="cdd2be08-0931-456b-ad7b-3b99fb9cb8fe" ownerguid="91187226-bd32-4ed9-9ceb-404f574fb16d"> -<Form> -<AUni ws="qvm-x-ach">umri</AUni> -<AUni ws="qvm-x-acl">umri; umre</AUni> -<AUni ws="qvm-x-akh">umri</AUni> -<AUni ws="qvm-x-akl">umri; umre</AUni> -<AUni ws="qvm-x-ame">umri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="cdd7dc0e-3011-40cd-b959-3e06d6f17661" ownerguid="04752883-aa3e-42a2-bd42-454e9cd99b11"> -<Question> -<AUni ws="en">(4) sensory evidence: the speaker claims to have physically sensed the situation described. This can be in opposition to one or both of the above senses (i.e. any other sense), or it can indicate sensory evidence that is not further specified (i.e. any sensory evidence).</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cdda7311-c2da-4dce-a68e-2031365bb40f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">dembaldi; dembalde</AUni> -<AUni ws="qvm-x-acl">dembaldi; dembaldi; dembalde</AUni> -<AUni ws="qvm-x-akh">dembaldi; dembalde</AUni> -<AUni ws="qvm-x-akl">dembaldi; dembaldi; dembalde</AUni> -<AUni ws="qvm-x-ame">dembaldi; dembalde</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+de_balde</AUni> -<AUni ws="qvm-x-acl">+de_balde</AUni> -<AUni ws="qvm-x-akh">+de_balde</AUni> -<AUni ws="qvm-x-akl">+de_balde</AUni> -<AUni ws="qvm-x-ame">+de_balde</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.396" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6d28511c-824b-467b-8c5a-a12243ee13de" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+de_balde</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="81ed1053-ae6b-4640-b731-4da8fa11ad65" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b0c00599-7757-44ad-9ba2-27a56486fb67" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +de_balde 
\entryTyp root 
\gENG free 
\gSPN gratis 
\e +de_balde 
\c N0 
\mp +FinalI 
\ach dembaldi / ~_# 
\ach dembalde / _# 
\akh dembaldi / ~_# 
\akh dembalde / _# 
\acl dembaldi / ~_# 
\acl dembaldi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl dembalde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl dembaldi / ~_# 
\akl dembaldi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl dembalde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame dembaldi / ~_# 
\ame dembalde / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="cddc10d4-d68e-4fab-a563-90f5cabda349"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">agtu</AUni> -<AUni ws="qvm-x-acl">agtu; agto</AUni> -<AUni ws="qvm-x-akh">aqtu</AUni> -<AUni ws="qvm-x-akl">aqtu; aqto</AUni> -<AUni ws="qvm-x-ame">aqtu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aqtu</AUni> -<AUni ws="qvm-x-acl">*aqtu</AUni> -<AUni ws="qvm-x-akh">*aqtu</AUni> -<AUni ws="qvm-x-akl">*aqtu</AUni> -<AUni ws="qvm-x-ame">*aqtu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.820" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bf4ff97d-7c3e-4c5a-95e8-1da18c12a971" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aqtu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="785c3e0b-5f5b-4bbe-b32f-ceb8b6b7c2ad" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="47c1ed6e-dbdb-437d-9479-7d5094f5905b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aqtu 
\entryTyp root 
\gENG to.drool 
\gSPN botar.de.boca 
\e *aqtu 
\c V2 
\ach agtu 
\akh aqtu 
\acl agtu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl agto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl aqtu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl aqto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame aqtu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="cddd0564-988b-43eb-b764-c4583e8beddc" ownerguid="756f67e9-2b22-4c43-913c-ceff0e781545"> -<ExampleWords> -<AUni ws="en">put in, put inside, move in, insert, introduce, inject, implant, penetrate, pierce, inset, inlay, pack in, stuff in, load</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to putting something inside something else?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cddde224-2249-4742-b325-3d8b84dc578b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">zanahoria</AUni> -<AUni ws="qvm-x-acl">zanahoria</AUni> -<AUni ws="qvm-x-akh">zanahoria</AUni> -<AUni ws="qvm-x-akl">zanahoria</AUni> -<AUni ws="qvm-x-ame">zanahoria</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+zanahoria</AUni> -<AUni ws="qvm-x-acl">+zanahoria</AUni> -<AUni ws="qvm-x-akh">+zanahoria</AUni> -<AUni ws="qvm-x-akl">+zanahoria</AUni> -<AUni ws="qvm-x-ame">+zanahoria</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.808" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5ca5aaa2-fa1f-4ce3-81d7-e9e9f66cdabd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+zanahoria</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6bf11594-247e-4669-8800-fabeb8b69adf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5eb56e77-4c54-42af-a695-950e38061de5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +zanahoria 
\entryTyp root 
\gENG carrot 
\gSPN zanahoria 
\e +zanahoria 
\c N0 
\ach zanahoria 
\akh zanahoria 
\acl zanahoria 
\akl zanahoria 
\ame zanahoria</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="cde18103-0100-4218-93c5-7edd832dd08b" ownerguid="8fda4a2c-04fb-4935-9830-42964363db35"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">busy</AUni> -<AUni ws="es">ocupado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="af12d262-df7f-4b5f-96ff-3ede02de589d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="cde49e9e-6b81-4727-9d6b-e2f627a190b8" ownerguid="d06dae77-134a-403f-ba88-52ecd66c0522"> -<ExampleWords> -<AUni ws="en">fungus, bacteria, mold, mildew, mushroom</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What general words refer to fungi?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="cde5ad17-4f28-47eb-a4d0-1d67ca67093e" ownerguid="b559dbca-c20e-429c-91d0-4ae42e1612a8"> -<Form> -<AUni ws="qvm-x-ach">altsa</AUni> -<AUni ws="qvm-x-acl">altsa</AUni> -<AUni ws="qvm-x-akh">altsa</AUni> -<AUni ws="qvm-x-akl">altsa</AUni> -<AUni ws="qvm-x-ame">altsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="cde96694-79e5-44af-8d38-d988d1938e5f" ownerguid="c82fa28f-7e26-489e-a244-4d69cea87b94"> -<Abbreviation> -<AUni ws="en">6.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.458" /> -<DateModified val="2022-9-23 16:55:8.458" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to working with buildings.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>45 Building, Constructing; 7 Constructions; 7A Constructions</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Working with buildings</AUni> -</Name> -<OcmCodes> -<Uni>330 Building and Construction; 331 Construction; 334 Structural Steel Work; 338 Miscellaneous Building Trades; 341 Architecture</Uni> -</OcmCodes> -<Questions> -<objsur guid="ce4c0d95-90ae-4534-a281-9d9a064081d1" t="o" /> -<objsur guid="b5f4ac59-72e6-4dec-8668-a2e05d3f4143" t="o" /> -<objsur guid="fa4265ee-4134-4e35-9108-21306ff8695f" t="o" /> -<objsur guid="d840a0ec-4df5-4f0b-8590-09fdf106580e" t="o" /> -<objsur guid="d00f2688-a3c3-4348-880e-db758bab63a0" t="o" /> -<objsur guid="0076aa10-71a5-436e-a685-3f856b9ea063" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="dc177f3c-d0fd-4232-adf1-a77b339cdbb2" t="o" /> -<objsur guid="22acd714-b11e-462a-bd8e-6ff50843c103" t="o" /> -<objsur guid="97e1aba5-2ac1-44a3-8f18-59b2347a54a1" t="o" /> -<objsur guid="c6b62d63-b355-46c9-a8c7-e0a0bf112a9e" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="cdf30dcc-b306-4466-8684-a060f503c6ed"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">togu</AUni> -<AUni ws="qvm-x-acl">togu; togo</AUni> -<AUni ws="qvm-x-akh">toqu</AUni> -<AUni ws="qvm-x-akl">toqu; toqo</AUni> -<AUni ws="qvm-x-ame">tuqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tuqu.v</AUni> -<AUni ws="qvm-x-acl">*tuqu.v</AUni> -<AUni ws="qvm-x-akh">*tuqu.v</AUni> -<AUni ws="qvm-x-akl">*tuqu.v</AUni> -<AUni ws="qvm-x-ame">*tuqu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.27" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2a501715-2d53-4d07-b9c1-2549b6e58c99" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tuqu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f65d20dd-cf35-4e7e-9f73-19afe2495065" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="83a0a4b0-9f0b-42bd-98d7-60787b4021a3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tuqu.v 
\entryTyp root 
\gENG 
\gSPN hacer.hueco 
\e *tuqu.v 
\c V1 
\ach togu 
\akh toqu 
\acl togu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl togo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl toqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl toqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tuqu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="cdf347c9-a28d-4383-b56a-400c0c9c93be" ownerguid="9e1b0f9f-a2f0-4e31-9507-ff06bc4526de"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b699320c-1182-41cf-a567-d8008edefdda" t="r" /> -</Morph> -</rt> -<rt class="MoStemAllomorph" guid="cdf60915-e904-4710-9541-9fb5d748e2b0" ownerguid="61b2f2c1-a659-4a7d-a616-e5f9dc207afb"> -<Form> -<AUni ws="qvm-x-ach">rabya</AUni> -<AUni ws="qvm-x-acl">rabya</AUni> -<AUni ws="qvm-x-akh">rabya</AUni> -<AUni ws="qvm-x-akl">rabya</AUni> -<AUni ws="qvm-x-ame">rabya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="cdf65d07-f019-436e-95e6-4d74aafc147c" ownerguid="7191be07-9702-4a82-ba0b-2fd748164668"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="242e7d1d-ae8e-4f41-b552-a051066904b5" t="o" /> -<objsur guid="12bfdaba-25b4-40a1-96bd-b943cf3b91b9" t="o" /> -<objsur guid="8b4991b6-e01c-4a06-a636-e2b2edf4e98c" t="o" /> -<objsur guid="3278dca8-0985-4176-bb15-3b0c774e3f37" t="o" /> -<objsur guid="5a234a37-31c8-44f4-96c5-507e73ed31e4" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="cdf94156-faa3-4909-82d8-70b8d42cd7bd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ni:chu</AUni> -<AUni ws="qvm-x-acl">ni:chu; ni:chu; ni:cho</AUni> -<AUni ws="qvm-x-akh">ni:chu</AUni> -<AUni ws="qvm-x-akl">ni:chu; ni:chu; ni:cho</AUni> -<AUni ws="qvm-x-ame">ni:chu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+nicho</AUni> -<AUni ws="qvm-x-acl">+nicho</AUni> -<AUni ws="qvm-x-akh">+nicho</AUni> -<AUni ws="qvm-x-akl">+nicho</AUni> -<AUni ws="qvm-x-ame">+nicho</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.558" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a4308bec-981b-4711-880c-d5499b7cf082" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+nicho</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2615ce37-e5df-4fbd-999c-549afcb01b96" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="59f00bf3-3492-4f37-ae85-873fc12adff2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +nicho 
\entryTyp root 
\gENG tomb 
\gSPN nicho 
\e +nicho 
\c N0 
\ach ni:chu 
\akh ni:chu 
\acl ni:chu / _# 
\acl ni:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ni:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ni:chu / _# 
\akl ni:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ni:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ni:chu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="cdfa6417-81ee-49c2-b001-419fd9c3ff25" ownerguid="3d0243da-2738-4254-ba9c-745e0d941af8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">send</AUni> -<AUni ws="es">enviar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7dbc96e8-51a7-4b67-87a5-b4e3880c063c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="cdfa8a3c-5b65-4dc1-a633-65648ab73cca" ownerguid="9f425812-8e7a-4cc4-b427-4cab065d2be6"> -<Form> -<AUni ws="qvm-x-ach">wagshi</AUni> -<AUni ws="qvm-x-acl">wagshi; wagshe</AUni> -<AUni ws="qvm-x-akh">waqshi</AUni> -<AUni ws="qvm-x-akl">waqshi; waqshe</AUni> -<AUni ws="qvm-x-ame">waqshi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="cdfc188f-21e6-470e-8e81-be88ec8f431b"> -<Analyses> -<objsur guid="03d900be-35b2-4a93-85f5-773b666cefb5" t="o" /> -<objsur guid="2c4232f4-aaca-48a0-9037-a28ba6056c1d" t="o" /> -<objsur guid="9dca62a8-2127-46bd-87d1-6057b729c7c6" t="o" /> -<objsur guid="bad07400-ad11-4f98-9a6d-83aeae23913f" t="o" /> -</Analyses> -<Checksum val="850821971" /> -<Form> -<AUni ws="qvm-x-akh">yarpapäkatsin</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="cdfef12e-8649-4414-9857-82ef01ad611e" ownerguid="85b6cc88-e7d7-4968-9b09-aa7b736d60ce"> -<Form> -<AUni ws="qvm-x-ach">löru</AUni> -<AUni ws="qvm-x-acl">löru; löru; löro</AUni> -<AUni ws="qvm-x-akh">löru</AUni> -<AUni ws="qvm-x-akl">löru; löru; löro</AUni> -<AUni ws="qvm-x-ame">löru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ce05611e-8416-4129-b002-79e8d9ca2c28" ownerguid="a85d0ad2-7b36-4e0b-81a7-2eba5f25e335"> -<Form> -<AUni ws="qvm-x-ach">natin</AUni> -<AUni ws="qvm-x-acl">natin; natin; naten</AUni> -<AUni ws="qvm-x-akh">natin</AUni> -<AUni ws="qvm-x-akl">natin; natin; naten</AUni> -<AUni ws="qvm-x-ame">natin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ce0cbcee-0f83-40eb-9a9a-541a1353d4f8" ownerguid="ca91e41a-81c3-4c96-87e6-f67477fcd686"> -<ExampleWords> -<AUni ws="en">look after, mind (a child), keep an eye on, baby-sit, sit, take care of, childcare</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to taking care of a child while their parents are doing something else?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ce10172c-6dcd-4c3e-8b44-6ab7b87c0474" ownerguid="de5c6901-fab3-40ac-9364-bbd2972d1be6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">street</AUni> -<AUni ws="es">calle</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="77e3185f-0853-4545-a8bb-c8b1d3dc3519" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="ce148e50-bef5-4847-bcff-6127fc5f0331" ownerguid="f87650ed-7cfe-4b90-9589-b2d9d26e69cb"> -<Form> -<AUni ws="qvm-x-ach">estruchi; estruche</AUni> -<AUni ws="qvm-x-acl">estruchi; estruchi; estruche</AUni> -<AUni ws="qvm-x-akh">estruchi; estruche</AUni> -<AUni ws="qvm-x-akl">estruchi; estruchi; estruche</AUni> -<AUni ws="qvm-x-ame">estruchi; estruche</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="ce16265a-51a1-4654-9437-b554da60aaf9" ownerguid="bfa4fd0d-3d3f-4b5b-a76b-64e32f2f924d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8f8fe4c3-73ea-43fb-a649-aeb425cefb5c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="ce18ca65-970a-46e9-abf2-75964f7c6196"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tulma</AUni> -<AUni ws="qvm-x-acl">tulma</AUni> -<AUni ws="qvm-x-akh">tulma</AUni> -<AUni ws="qvm-x-akl">tulma</AUni> -<AUni ws="qvm-x-ame">tulma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tullma</AUni> -<AUni ws="qvm-x-acl">*tullma</AUni> -<AUni ws="qvm-x-akh">*tullma</AUni> -<AUni ws="qvm-x-akl">*tullma</AUni> -<AUni ws="qvm-x-ame">*tullma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.985" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b8b05a94-147d-4859-987b-adaa645086b8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tullma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="95391fe2-d166-40bf-8c6c-5844f0f00e0b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ef4ea1dc-50f0-41e4-8a71-f796d7e016f9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tullma 
\entryTyp root 
\gENG strengthen 
\gSPN ? 
\e *tullma 
\c N0 
\ach tulma 
\akh tulma 
\acl tulma 
\akl tulma 
\ame tulma</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ce194a5d-5485-4804-9421-d3804cf31764"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">raqui</AUni> -<AUni ws="qvm-x-acl">raqui; raque</AUni> -<AUni ws="qvm-x-akh">raki</AUni> -<AUni ws="qvm-x-akl">raki; rake</AUni> -<AUni ws="qvm-x-ame">raki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*raki.v</AUni> -<AUni ws="qvm-x-acl">*raki.v</AUni> -<AUni ws="qvm-x-akh">*raki.v</AUni> -<AUni ws="qvm-x-akl">*raki.v</AUni> -<AUni ws="qvm-x-ame">*raki.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.236" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bda1d14c-1046-4136-9304-cb887f2bd442" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*raki.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="262bd36b-2cf5-4c6e-8ce4-d506498ef445" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="892587b4-1e90-4b9b-8d15-43f651235205" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *raki.v 
\entryTyp root 
\gENG separate 
\gSPN separar 
\e *raki.v 
\c V2 
\mp +FinalI 
\ach raqui 
\akh raki 
\acl raqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl raque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl raki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rake +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame raki</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="ce1a149b-d6fb-4994-aa46-9cdb29cc0e7c" ownerguid="e3bde9db-0878-4fac-8b93-64cdc5adf71e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ce231ebf-c3b4-42a2-99e1-27088fa0bb84" ownerguid="2d0b3058-d8bb-4110-a54a-e507b0d3a0e4"> -<ExampleWords> -<AUni ws="en">beat (v), thump, throb</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the heart beating?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="ce257101-1c02-490c-9f71-d5417de1ae6d" ownerguid="4fae2d18-ce15-4289-8572-936463171f29"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">gaycupäcun</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="ce263e51-d5b1-436c-bfd6-d90814c457d3" ownerguid="93de2257-8303-490d-b2fe-6d1d838b08c6"> -<ExampleWords> -<AUni ws="en">paint, polish, nail polish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words are used of painting the nails?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ce26c232-819a-4fcf-b34b-3a30ab85d5bd" ownerguid="d9cb2e69-133d-4525-bca5-50b0f3402cbb"> -<ExampleWords> -<AUni ws="en">call, claim, have dibs, lay claim to, stake a claim</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to claiming something as your own?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="ce27b712-68c3-4813-9428-595a9acd846f" ownerguid="336b3c92-6094-4f42-b9d8-e8abd9a2d37f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aylu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aylu; aylu; aylo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aylu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aylu; aylu; aylo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aylu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b53ec0fe-25f3-4146-b8d1-cb7b52500c75" t="r" /> -</Morph> -<Msa> -<objsur guid="48a44248-5f10-4387-ace6-8143ad224b2e" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="ce28c3b7-b739-4c55-be8f-1a1e86b56dac" ownerguid="45d867c7-8496-4c92-bb41-b7db5db47717"> -<ExampleWords> -<AUni ws="en">obese, obesity, gross</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who is very fat?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ce2cc97a-81a8-4cde-b4e1-4e5489ae2772" ownerguid="ca9c215a-e568-4d09-b3a9-b5727cd831d6"> -<ExampleWords> -<AUni ws="en">pall, bier, hearse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What is used to carry a body?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ce2e8e2a-fa4b-455c-ac2b-f6a1c8039288" ownerguid="025da6f4-b1b6-423a-8c0f-b324f531a6f1"> -<ExampleWords> -<AUni ws="en">cultivated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to cultivated plants?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ce2fe6b2-c7b7-4f22-8eb2-5022be45f40d" ownerguid="b4fe4698-54a2-4bcd-9490-e07ee1ee97af"> -<ExampleWords> -<AUni ws="en">make someone cry, reduce someone to tears, bring tears to someone's eyes, tearful, tearjerker</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to making someone cry?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ce30d2f0-34d7-4cf9-a52e-d612a2767679" ownerguid="9bb6f1ed-7170-4caa-a14c-747fd95ca30e"> -<ExampleWords> -<AUni ws="en">sweeten, sprinkle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to putting sugar in food?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="ce30eb9c-8260-476b-878c-0a078d596955" ownerguid="9f868391-f1df-4682-bdcb-2c2c799006cf"> -<Abbreviation> -<AUni ws="en">3.2.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.111" /> -<DateModified val="2022-9-23 16:55:8.111" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to forgetting something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>29C Not Remembering, Forgetting</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Forget</AUni> -</Name> -<Questions> -<objsur guid="68b488c9-0def-4ea9-afba-e0f7a3f22879" t="o" /> -<objsur guid="f1044d9b-f0b1-4878-9379-18f89b1e0199" t="o" /> -<objsur guid="88e5be84-3535-4d5c-91a6-a8d8f27b1a28" t="o" /> -<objsur guid="5717a8ce-7d3f-4224-be86-1dd06111a967" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="ce32834e-9036-471e-be33-dff3ae5aefcc" ownerguid="e08e252a-9227-42e4-bcb8-b803d25071b6"> -<ExampleWords> -<AUni ws="en">embarrassed, self-conscious, uncomfortable, awkward, sheepish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels embarrassed?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ce32c5be-b887-4d36-893f-2f4a68dc97f5" ownerguid="2c2d5805-2762-4a00-845d-bdc330d69918"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">many</AUni> -<AUni ws="es">mucho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e44f3378-2517-48f9-a7a0-17d97b0cb2d6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ce34b146-f766-49b5-a41e-6ef0d44fdd47" ownerguid="67e57493-d286-4271-b877-f63f962dddf1"> -<ExampleWords> -<AUni ws="en">expanse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to an area that is big?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ce366a45-3cff-409f-89a4-a36282c2d535" ownerguid="ee6e993c-5551-42ae-b35e-26bc6aeeb3a4"> -<ExampleWords> -<AUni ws="en">shirt, pants, trousers, short pants, sock, stocking, shoe, boot, belt, hat, cap, underclothes, underwear, tie, suit, vest, coat, gloves, robe, pajamas, overcoat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to pieces of men's clothing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ce377419-0c9c-4752-a8df-075488ffb643" ownerguid="514974a2-c2fd-4b25-a24d-2ff52fa3d798"> -<ExampleWords> -<AUni ws="en">fire engine, fire truck, fire extinguisher</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What equipment is used to stop a fire?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="ce37dc57-b456-4ff1-91f6-969f7f6bed34" ownerguid="e872d9c3-c204-4fd3-98b2-693771df04a6"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">DAN 1.8 Danielmi inmundu cayta mana munar yarpachacorgan mandag reypa micuyninta mana micunanpag y vïnuntapis mana upunanpag.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="ce386d36-77fa-4b94-9186-b971bfe42107"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">atrevi</AUni> -<AUni ws="qvm-x-acl">atrevi; atreve</AUni> -<AUni ws="qvm-x-akh">atrevi</AUni> -<AUni ws="qvm-x-akl">atrevi; atreve</AUni> -<AUni ws="qvm-x-ame">atrevi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+atrever</AUni> -<AUni ws="qvm-x-acl">+atrever</AUni> -<AUni ws="qvm-x-akh">+atrever</AUni> -<AUni ws="qvm-x-akl">+atrever</AUni> -<AUni ws="qvm-x-ame">+atrever</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.870" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="50c71b0b-12fd-4b10-a69b-2b1bdb6c525f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+atrever</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0bc6ab6c-1ca6-442c-92ed-dbd9ddd332c0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="51e1097d-03cb-4b00-b805-c6e760e60cb4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +atrever 
\entryTyp root 
\gENG dare 
\gSPN atrever 
\e +atrever 
\c V2 
\mp +FinalI 
\ach atrevi 
\akh atrevi 
\acl atrevi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl atreve +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl atrevi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl atreve +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame atrevi 
\i JHN 7.44 Waquincuna prësu tsariyta munarpis manami atribergantsu prësu tsariyta.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ce388b3a-7c80-4cec-96f2-ad558bcaa18a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">me:sa</AUni> -<AUni ws="qvm-x-acl">me:sa</AUni> -<AUni ws="qvm-x-akh">me:sa</AUni> -<AUni ws="qvm-x-akl">me:sa</AUni> -<AUni ws="qvm-x-ame">me:sa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mesa</AUni> -<AUni ws="qvm-x-acl">+mesa</AUni> -<AUni ws="qvm-x-akh">+mesa</AUni> -<AUni ws="qvm-x-akl">+mesa</AUni> -<AUni ws="qvm-x-ame">+mesa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.416" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eaae3c10-1dd0-4644-9a2e-4fc5b8a810ce" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mesa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cd7d8265-092b-498c-9bd8-a22a6f33a6e0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8459b346-9178-4522-b9f8-ef54d9abf45e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mesa 
\entryTyp root 
\gENG table 
\gSPN mesa 
\e +mesa 
\c N0 
\ach me:sa 
\akh me:sa 
\acl me:sa 
\akl me:sa 
\ame me:sa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="ce38e7a8-b04d-47f5-8106-658c879d89ff" ownerguid="0f66f970-4598-4b80-92f4-1d5fe4f0a8ea"> -<Form> -<AUni ws="qvm-x-ach">cush</AUni> -<AUni ws="qvm-x-acl">cush</AUni> -<AUni ws="qvm-x-akh">kush</AUni> -<AUni ws="qvm-x-akl">kush</AUni> -<AUni ws="qvm-x-ame">kush</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e1-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="8378f21c-cf54-437a-9d41-a303c764b326" t="r" /> -</PhoneEnv> -</rt> -<rt class="MoStemMsa" guid="ce38fa9a-19eb-42d5-919f-4f02e63dcb9e" ownerguid="a8d704bc-32f3-4309-9f9b-8a9d76b4e925"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ce3a6f22-cda8-4e8d-8053-bc305c160bc8" ownerguid="ab8f12fb-57b0-4d61-8ae0-50d7cbc412df"> -<ExampleWords> -<AUni ws="en">glacier, snowcap, snowfield, avalanche</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to snow on a mountain?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ce3af8af-8227-4901-8891-7f5cc41520d9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shu:pi</AUni> -<AUni ws="qvm-x-acl">shu:pi; shu:pi; shu:pe</AUni> -<AUni ws="qvm-x-akh">shu:pi</AUni> -<AUni ws="qvm-x-akl">shu:pi; shu:pi; shu:pe</AUni> -<AUni ws="qvm-x-ame">shu:pi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shu:pi</AUni> -<AUni ws="qvm-x-acl">*shu:pi</AUni> -<AUni ws="qvm-x-akh">*shu:pi</AUni> -<AUni ws="qvm-x-akl">*shu:pi</AUni> -<AUni ws="qvm-x-ame">*shu:pi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.642" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e5b8a132-9607-4eaf-80e8-51532452dd76" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shu:pi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d8f87f74-990e-40d0-af5b-fcb2a13fded9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="748edc49-54f8-4e52-ba37-ad097a05a8d6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shu:pi 
\entryTyp root 
\gENG 
\gSPN 
\e *shu:pi 
\c N0 
\mp +FinalI 
\ach shu:pi 
\akh shu:pi 
\acl shu:pi / _# 
\acl shu:pi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shu:pe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shu:pi / _# 
\akl shu:pi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shu:pe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shu:pi 
\i Tsay ïdulucunaga caycan melón
\f + 10.5 Melonga shüpinirag frütami caycan.
\f* chacracho pishgu mantsacunanpag ichitsishgan muñëcanog mana parlagmi.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ce3f9a94-8d75-46fe-b64b-78886566b9c7" ownerguid="18b3ca02-18fe-4ab5-8709-c20957a0a2fb"> -<ExampleWords> -<AUni ws="en">look down on, look down your nose at, be beneath you, think you're too good for</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to behaving in a proud way toward other people?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ce4246f6-d65c-4482-a414-6003382dd33b" ownerguid="fc41b0e3-a152-4c00-aeb0-2d848cd8862f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ce42fe15-c396-499a-820e-d46412203dc1" ownerguid="d80360f9-7319-40a7-a2bc-fd8718711ba4"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John took a bath <before> eating dinner.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">before (conj), prior to, on the eve of, pre-</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something happens before a particular event?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ce45428b-71c5-45f6-bee1-10ea13e5985a" ownerguid="fc193988-26ca-49e9-849a-b12456d98792"> -<ExampleWords> -<AUni ws="en">craziness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the quality of being crazy?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ce45d7c1-1511-47d0-810b-f18aac3de105" ownerguid="44dc42e4-e9c7-4aa9-ac9b-1008385244b1"> -<ExampleWords> -<AUni ws="en">mother, mom, mum, ma, mama</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to your mother?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ce499998-ef67-40df-bdce-53ec0a1e0875"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tselgui</AUni> -<AUni ws="qvm-x-acl">tselgui; tselgue</AUni> -<AUni ws="qvm-x-akh">tselqi</AUni> -<AUni ws="qvm-x-akl">tselqi; tselqe</AUni> -<AUni ws="qvm-x-ame">tsilqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chillqi</AUni> -<AUni ws="qvm-x-acl">*chillqi</AUni> -<AUni ws="qvm-x-akh">*chillqi</AUni> -<AUni ws="qvm-x-akl">*chillqi</AUni> -<AUni ws="qvm-x-ame">*chillqi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.305" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ed75facd-0a89-4658-9f32-ec87ca8e440a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chillqi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3e7b8318-ca3f-4722-89a2-a2745aede60e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="260b9a66-30e1-4d98-b9da-1fc9e3f1b5c0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chillqi 
\entryTyp root 
\gENG 
\gSPN crecer 
\e *chillqi 
\c V1 
\mp +FinalI 
\ach tselgui 
\akh tselqi 
\acl tselgui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tselgue +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tselqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tselqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsilqi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ce4c0d95-90ae-4534-a281-9d9a064081d1" ownerguid="cde96694-79e5-44af-8d38-d988d1938e5f"> -<ExampleWords> -<AUni ws="en">build, construct</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to making a building?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ce4dcdba-4918-4b85-9731-22a0fbd00fd1" ownerguid="d5319800-c4ad-4a6f-957e-3b4b993e7b7f"> -<Form> -<AUni ws="qvm-x-ach">atatalay</AUni> -<AUni ws="qvm-x-acl">atatalay</AUni> -<AUni ws="qvm-x-akh">atatalay</AUni> -<AUni ws="qvm-x-akl">atatalay</AUni> -<AUni ws="qvm-x-ame">atatalay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="ce4f5865-bb4c-4e7f-be18-e39b3cd91e3f" ownerguid="34e47811-7b0a-4cb8-994b-139fbb213c7c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">GEN 24.16 Rebecaga cuyaylapag y virginlarag jipashmi cargan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="ce541ccc-6035-4a49-8396-93beb4f3a36f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shuructa</AUni> -<AUni ws="qvm-x-acl">shuructa</AUni> -<AUni ws="qvm-x-akh">shurukta</AUni> -<AUni ws="qvm-x-akl">shurukta</AUni> -<AUni ws="qvm-x-ame">shurukta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shurukta</AUni> -<AUni ws="qvm-x-acl">*shurukta</AUni> -<AUni ws="qvm-x-akh">*shurukta</AUni> -<AUni ws="qvm-x-akl">*shurukta</AUni> -<AUni ws="qvm-x-ame">*shurukta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.660" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="36960ddc-c114-4c47-b4c6-8c8a04b6249d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shurukta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="92eddf75-d323-4c4a-8fa3-2f471dbe7aea" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="96e83b12-e492-4346-9c4d-a709843358e7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shurukta 
\entryTyp root 
\gENG potato.fruit 
\gSPN fruta.de.papa 
\e *shurukta 
\c N0 
\ach shuructa 
\akh shurukta 
\acl shuructa 
\akl shurukta 
\ame shurukta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ce57e345-29d6-44f3-9f2d-20bba01ef541" ownerguid="541dfa10-bf97-4713-a534-9cbcc7f66bc9"> -<ExampleWords> -<AUni ws="en">hold/have an opinion, hold a view, have a perspective</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to holding an opinion toward a question or issue?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ce582558-e453-4b84-88cd-371495f02195" ownerguid="3793a7b7-a136-4c99-9830-65dffd7ccc6c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ce59d930-b2c2-4c9a-8f41-102cc8c64a33" ownerguid="eb821083-3fb0-441a-9f1d-ad2a9ed918d8"> -<ExampleWords> -<AUni ws="en">support, hold up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to keeping something from falling?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ce59ddff-d85b-45e8-9422-f4a6f6f2f0b9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">weray</AUni> -<AUni ws="qvm-x-acl">weray</AUni> -<AUni ws="qvm-x-akh">weray</AUni> -<AUni ws="qvm-x-akl">weray</AUni> -<AUni ws="qvm-x-ame">wiray</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*weray</AUni> -<AUni ws="qvm-x-acl">*weray</AUni> -<AUni ws="qvm-x-akh">*weray</AUni> -<AUni ws="qvm-x-akl">*weray</AUni> -<AUni ws="qvm-x-ame">*weray</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.637" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4ddd44c6-b807-44da-982d-f4517b448594" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*weray</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0861afd8-2c5b-4a12-804e-347e519aff29" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8e55db99-d6b2-4b72-b8c2-7f18929d0c8a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *weray 
\entryTyp root 
\gENG fat 
\gSPN gordo 
\e *weray 
\c N0 
\mp +FinalC 
\ach weray 
\akh weray 
\acl weray 
\akl weray 
\ame wiray</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="ce5be3b7-adf8-4d95-b0f4-948cc09d5653" ownerguid="5d238526-6d17-40c2-8a6a-5c681c7469de"> -<Form> -<AUni ws="qvm-x-ach">borda</AUni> -<AUni ws="qvm-x-acl">borda</AUni> -<AUni ws="qvm-x-akh">borda</AUni> -<AUni ws="qvm-x-akl">borda</AUni> -<AUni ws="qvm-x-ame">borda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="ce665b46-d6e9-471c-8399-319fc346f025" ownerguid="f54f3a89-9f34-4c3f-80c9-92a1bec8f032"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="d725a844-541a-48f8-ab79-886e9d8bba53" t="o" /> -<objsur guid="ac359263-edd7-47b9-8832-d710bceec51a" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="ce66e128-5234-4055-9922-dd4f35be26c6" ownerguid="b09205d4-fbb4-4bcd-94ef-f8d83e298462"> -<ExampleWords> -<AUni ws="en">slow moving, sluggish, smooth stretch, gentle stretch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe the flow of a river when it is slow?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="ce68937b-de97-4335-a96d-e0158093a2a5" ownerguid="43848228-1b74-4d32-a279-c6826f9190fd"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d1685fdc-96d8-4baf-9cb8-523863adb67f" t="r" /> -</Morph> -<Msa> -<objsur guid="434f36b9-aa05-46d6-be7e-89240d9e2c4d" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="ce69677b-1de7-4e7e-bd55-3dd4ad2a1dcb" ownerguid="4872c571-5518-4b38-8579-b26952b20ee3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">toasted.corn</AUni> -<AUni ws="es">cancha</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dc8f23ee-46e0-4da4-93d2-8f91f1764fa0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="ce6a862d-a4bb-4378-b14d-439806870c41" ownerguid="b5499348-b8ca-4fae-8486-b23863560ae5"> -<Abbreviation> -<AUni ws="en">4.4.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being unlucky.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Unlucky</AUni> -</Name> -<Questions> -<objsur guid="f2af57f1-6a4c-4f64-94d1-33ada84e11ba" t="o" /> -<objsur guid="ca3c1975-227e-4625-86e1-240d725c6377" t="o" /> -<objsur guid="abcfe90d-3831-4d16-9085-52e4c5463932" t="o" /> -<objsur guid="c6667656-9669-4321-86ce-c90b2f1fd59e" t="o" /> -<objsur guid="e810cc7a-c8cb-4127-81fc-5c083421cc0a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="ce6d5e60-7cf6-46ab-bd02-453ec7b04f7a" ownerguid="d030f0c7-31a3-47da-be35-46f1eba63ae9"> -<Abbreviation> -<AUni ws="en">3.4.1.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.123" /> -<DateModified val="2022-9-23 16:55:8.123" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling good about yourself.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25S Pride</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Self-esteem</AUni> -</Name> -<Questions> -<objsur guid="2dc156d6-6103-4499-8039-7f57afe620fd" t="o" /> -<objsur guid="cb283a97-491a-42b6-8d3b-b51e2afabea0" t="o" /> -<objsur guid="55b65032-0fef-498b-930d-9a082366c766" t="o" /> -<objsur guid="9f0d0611-8f2e-4013-ac07-5ad5fb1ed8e8" t="o" /> -<objsur guid="4ae61c2e-2d02-4882-aa3f-fcc9ccaf9143" t="o" /> -<objsur guid="be851ff3-c4ba-4a2c-a87e-1a42d6a1b5c3" t="o" /> -<objsur guid="090da349-5b2b-48c6-be13-c534e1e5cb38" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="ce6e9ee8-f9d4-404a-ac69-c73107af66b0" ownerguid="4524fc30-b933-4841-ade3-a8482a897244"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8a58bb94-5b98-4047-9397-3e9c040f8f41" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ce7e2a9e-24d3-4e5d-8d8c-bd5d0e41553c" ownerguid="559d371f-80cf-49ba-a55b-c636d110f091"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ce7eb7f8-ad68-4659-8633-bb85fa0de8b6" ownerguid="c8e3c39c-d895-4e42-8e1e-1574137ba016"> -<ExampleWords> -<AUni ws="en">palace, mansion, sprawling (place)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What is a very good house called?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="ce7f6422-3800-4c67-b1e6-1a864b4204e1" ownerguid="d0a01de3-c88d-4904-91a9-9ea33ab82528"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</Msa> -<Sense> -<objsur guid="80f44d0c-72fe-4b3c-b505-6b06de3ee220" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="ce80d231-26a2-4156-8409-fb6f94993c67" ownerguid="776de0c6-fdd7-46df-b33f-b1e4af6ee099"> -<ExampleWords> -<AUni ws="en">sometimes, occasionally, every so often, once in a while, at times, now and again, now and then, from time to time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that an event happens sometimes?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ce80e12a-cfde-4be3-91ab-069fb2324f3b" ownerguid="1886ffc9-0a18-41ea-b2f6-c17c297f1681"> -<ExampleWords> -<AUni ws="en">physics, chemistry, natural science, physical science</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the study of the physical universe?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ce822d22-c821-4fde-ab0c-3c8ca0253fd8" ownerguid="5c31bdf6-901f-4f14-ab64-7a99524710fc"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">What the hell! So what? Who cares? I don't care. I could care less. See if I care. I don't give a care. I don't give a damn. I'm indifferent. What difference does it make? What's the difference? It makes no difference to me. It's all the same to me. Never mind! It doesn't matter (to me). Close enough.</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(8) What expressions do people use when they don't care?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ce8324b7-468b-4437-9b0f-95b8029c7348" ownerguid="33037a4d-3454-4c59-9a61-c5fb747f107a"> -<ExampleWords> -<AUni ws="en">mason, bricklayer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who works with bricks?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ce87759f-60bb-4b20-8878-e01aea918b53" ownerguid="96d55d8f-8542-4f56-8e5e-bce28f7ceb19"> -<Form> -<AUni ws="qvm-x-ach">wishtu</AUni> -<AUni ws="qvm-x-acl">wishtu; wishtu; wishto</AUni> -<AUni ws="qvm-x-akh">wishtu</AUni> -<AUni ws="qvm-x-akl">wishtu; wishtu; wishto</AUni> -<AUni ws="qvm-x-ame">wishtu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ce88960e-27de-4f64-8977-5a22b2b93a2b" ownerguid="2351f52a-8822-46ad-99c4-7ef526e94a6f"> -<ExampleWords> -<AUni ws="en">retake, resit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to taking an examination again?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ce8f960f-fbd0-4367-8020-bfeadf921f48" ownerguid="9bb173c6-cf38-47cd-803f-ebdf964ca2fc"> -<ExampleWords> -<AUni ws="en">prosperity and trouble, good and evil, yin and yang</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to prosperity and trouble?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ce9019f3-7d02-41cb-aea5-e4371688b104" ownerguid="a122b79d-c2ec-40b0-ab0e-26c238dd06d2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ce98d503-1f42-4d27-aa07-ff7654ed26bc" ownerguid="2e30f02d-d1e6-489c-a1fb-8b9fb6ecd819"> -<ExampleWords> -<AUni ws="en">crushed, bitterly disappointed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to feeling very disappointed?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ce99e4ce-2e96-462c-8cc9-f628652b9190" ownerguid="dfc4cb14-2772-48c2-9c28-ca6af49cd78e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="ce9e4d05-79c0-434e-9590-1908e84e746b" ownerguid="9346f0b2-661a-413d-aa1c-c078ce41350f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="cea03b1a-4991-41c7-ba14-8c995af3b627" ownerguid="99d7ae3c-10df-4a64-9711-e9d3cf65f3bb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="cea09e60-40ad-49ec-b1e5-bfde3c1022c7" ownerguid="e0c3b4ec-ae80-44db-a2a6-9f4b3289e003"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="cea10777-21fd-40e1-a24e-3fddd242b424" ownerguid="6fbe39fb-a4cb-4fcf-830b-8875fd4324e0"> -<ExampleWords> -<AUni ws="en">compel, blackmail, browbeat, bully (v), coerce, constrain, drive, force someone to do something, use force, force something on, insist, impel, impose your will on, make someone do something, oblige, press, pressure, put pressure on, push, use strong-arm tactics, use strong-arm methods, under duress, be breathing down someone's neck</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to forcing someone to do something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cea19805-cd90-46a2-af59-41b16c7fa561" ownerguid="0296465a-25de-4af6-a122-376956b4b452"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">This is <my> house.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">my, your, his, her, its, our, your, their</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What pronouns are used in a possessive phrase?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="cea1a25e-1b2a-405b-9600-72f82007034a" ownerguid="f74b3e92-fdc5-47c0-a223-16dc0f80387b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">direction</AUni> -<AUni ws="es">dirección</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="795d694f-a01b-458b-b463-b36d5de3419a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="cea50d62-e66c-4790-94fb-3354b178d73f" ownerguid="1d8633e0-4279-4ddc-826e-16aa08a977e5"> -<ExampleWords> -<AUni ws="en">skeleton, skeletal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the entire set of bones?</AUni> -</Question> -</rt> -<rt class="StTxtPara" guid="cea561d7-e88a-4d47-90d5-af8e3ac2914b" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">mikatsin</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="f3715770-dddd-48b9-aa39-fd4052b353ed" t="o" /> -</Segments> -</rt> -<rt class="MoStemAllomorph" guid="ceacf42c-2844-4f63-837d-e59dc64a66cb" ownerguid="18e64269-5afa-4579-8789-72ad4940a2de"> -<Form> -<AUni ws="qvm-x-ach">adora</AUni> -<AUni ws="qvm-x-acl">adora</AUni> -<AUni ws="qvm-x-akh">adora</AUni> -<AUni ws="qvm-x-akl">adora</AUni> -<AUni ws="qvm-x-ame">adora</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="ceadcecc-fbf2-4c11-9122-54b7202bcacb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsagu</AUni> -<AUni ws="qvm-x-acl">tsagu; tsagu; tsago</AUni> -<AUni ws="qvm-x-akh">tsaqu</AUni> -<AUni ws="qvm-x-akl">tsaqu; tsaqu; tsaqo</AUni> -<AUni ws="qvm-x-ame">tsaqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chaqu.n</AUni> -<AUni ws="qvm-x-acl">*chaqu.n</AUni> -<AUni ws="qvm-x-akh">*chaqu.n</AUni> -<AUni ws="qvm-x-akl">*chaqu.n</AUni> -<AUni ws="qvm-x-ame">*chaqu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.295" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ea0a6ba2-60ef-4e35-86bc-9ca4186f3fd3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chaqu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dd502690-9c38-478a-a5d8-5ef5595437e2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="131668a4-5e2f-47fa-95c5-9fb8e4e3a4e1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chaqu.n 
\entryTyp root 
\gENG new.field 
\gSPN chacra.nueva 
\e *chaqu.n 
\c N0 
\ach tsagu 
\akh tsaqu 
\acl tsagu / _# 
\acl tsagu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tsago +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsaqu / _# 
\akl tsaqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tsaqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsaqu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ceae8c05-8844-4b9a-8f46-9b9a470267be" ownerguid="7f576a15-fb83-4c35-a708-7d10404522ba"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="e90f63fe-8dda-40cd-9e90-18dd139bb726" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ceb02834-5534-4019-ac97-4a79515c3789" ownerguid="f369fcea-d729-419d-9ca0-da8246776b35"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ceb028e1-beef-4fd0-a817-2c322c46d848" ownerguid="a158029e-b425-4e6f-92fa-3be549a0715c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">piled</AUni> -<AUni ws="es">montón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="44a1c433-826b-4c16-ad2a-710911431d7c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ceb226a1-2c25-4757-9ba2-e6a1f7ab226e" ownerguid="26b97047-edb1-44e9-8c7b-463de9cfbe78"> -<ExampleWords> -<AUni ws="en">wether</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a castrated sheep?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="ceb6ed65-188e-46d7-ad10-076cba0d49db" ownerguid="6ed896a6-bab7-4fdf-a4fd-a5ee49f380d2"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="fe99b743-faa9-4dc0-80b3-96bfc2102196" t="o" /> -<objsur guid="56ba1463-fabe-4fee-b0f6-4287d507214e" t="o" /> -<objsur guid="b20e8cef-5d0e-4f24-b6a2-46c381144d36" t="o" /> -<objsur guid="8aef7f09-356a-406e-bb29-4c7f35f7bb7f" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="cebb1f46-eae3-46f3-809d-d8e9e641e817" ownerguid="a497fb49-8d8d-4cf1-821f-67470b8e8098"> -<Form> -<AUni ws="qvm-x-ach">cordel; cordil</AUni> -<AUni ws="qvm-x-acl">cordel; cordil; cordel</AUni> -<AUni ws="qvm-x-akh">cordel; cordil</AUni> -<AUni ws="qvm-x-akl">cordel; cordil; cordel</AUni> -<AUni ws="qvm-x-ame">cordel; cordil</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="cebe0a6b-c8c8-437b-9161-3baea03cf510" ownerguid="b82c7ba0-9f4e-44da-bcd0-d30f5b224de5"> -<ExampleWords> -<AUni ws="en">medicine, medication, medicinal, drug, narcotic, antidote, elixir, remedy, herb</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to medicine?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cebf1d2d-0fd3-49aa-a071-5dcd881d9a24"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">traspu</AUni> -<AUni ws="qvm-x-acl">traspu; traspo</AUni> -<AUni ws="qvm-x-akh">traspu</AUni> -<AUni ws="qvm-x-akl">traspu; traspo</AUni> -<AUni ws="qvm-x-ame">traspu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*traspu</AUni> -<AUni ws="qvm-x-acl">*traspu</AUni> -<AUni ws="qvm-x-akh">*traspu</AUni> -<AUni ws="qvm-x-akl">*traspu</AUni> -<AUni ws="qvm-x-ame">*traspu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.78" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="59a5fe0f-e53f-4938-99b2-4acca9a12fa8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*traspu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c1a67f71-07b1-4565-80b5-a8fc1b19bf8a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7b4d537d-00d3-4521-af1c-0e6d06b22aaf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *traspu 
\entryTyp root 
\gENG vomit 
\gSPN vomitar 
\e *traspu 
\c V1 
\ach traspu 
\akh traspu 
\acl traspu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl traspo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl traspu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl traspo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame traspu</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="cec18b8a-54be-4aa3-9109-8d928ca2cc29"> -<Form> -<Str> -<Run ws="en">transitive</Run> -</Str> -</Form> -</rt> -<rt class="LexSense" guid="cec1d274-3bc6-4f72-b0d9-d5666d629096" ownerguid="353e3c5f-6f7a-46b5-9159-faa255c44d2e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">top</AUni> -<AUni ws="es">trompo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8afd1975-e14d-4cc0-ab40-5ddcc721323b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="cec423e1-6244-454f-9d05-f7df94e5e10f" ownerguid="b32757c5-6fad-4203-a70c-015e7b5bd4d0"> -<Form> -<AUni ws="qvm-x-ach">jagta</AUni> -<AUni ws="qvm-x-acl">jagta</AUni> -<AUni ws="qvm-x-akh">jaqta</AUni> -<AUni ws="qvm-x-akl">jaqta</AUni> -<AUni ws="qvm-x-ame">haqta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="cec4a61e-8b09-4f45-8265-ffcb3621a811"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">contenta</AUni> -<AUni ws="qvm-x-acl">contenta</AUni> -<AUni ws="qvm-x-akh">contenta</AUni> -<AUni ws="qvm-x-akl">contenta</AUni> -<AUni ws="qvm-x-ame">contenta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+contentar</AUni> -<AUni ws="qvm-x-acl">+contentar</AUni> -<AUni ws="qvm-x-akh">+contentar</AUni> -<AUni ws="qvm-x-akl">+contentar</AUni> -<AUni ws="qvm-x-ame">+contentar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.172" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ebca25f1-87d3-44d1-9934-c6a6dd619744" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+contentar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0b42ba43-f970-4c9b-99ed-36b0555c85b6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="639575ba-776f-4a98-831b-d3e553020d02" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +contentar 
\entryTyp root 
\gENG content 
\gSPN contentarse 
\e +contentar 
\c V1 
\ach contenta 
\akh contenta 
\acl contenta 
\akl contenta 
\ame contenta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="cec711bb-a8a8-4f4e-9365-e76128c39b75" ownerguid="530849d4-bd70-4741-9f10-08584d3d2736"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wheelbarrow</AUni> -<AUni ws="es">carretilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="30def189-c8e4-4f8b-9364-87930a74102b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="cece6750-bb2f-46ae-8d44-52f2f9f3cdb2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cushuru</AUni> -<AUni ws="qvm-x-acl">cushuru; cushuru; cushuro</AUni> -<AUni ws="qvm-x-akh">kushuru</AUni> -<AUni ws="qvm-x-akl">kushuru; kushuru; kushuro</AUni> -<AUni ws="qvm-x-ame">kushuru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kushuru</AUni> -<AUni ws="qvm-x-acl">*kushuru</AUni> -<AUni ws="qvm-x-akh">*kushuru</AUni> -<AUni ws="qvm-x-akl">*kushuru</AUni> -<AUni ws="qvm-x-ame">*kushuru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.23" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="973b4eff-562a-4ea5-942f-f4022bbd0409" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kushuru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fa9023e0-a7b7-4141-8c10-7edf16514b40" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1a628a35-d450-4a2b-9f6b-a2a824562c69" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kushuru 
\entryTyp root 
\gENG 
\gSPN 
\e *kushuru 
\c N0 
\ach cushuru 
\akh kushuru 
\acl cushuru / _# 
\acl cushuru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cushuro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kushuru / _# 
\akl kushuru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kushuro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kushuru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="cecfc489-94aa-4cdc-aecf-afb6646f28f2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">va:ya</AUni> -<AUni ws="qvm-x-acl">va:ya</AUni> -<AUni ws="qvm-x-akh">va:ya</AUni> -<AUni ws="qvm-x-akl">va:ya</AUni> -<AUni ws="qvm-x-ame">va:ya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vaya</AUni> -<AUni ws="qvm-x-acl">+vaya</AUni> -<AUni ws="qvm-x-akh">+vaya</AUni> -<AUni ws="qvm-x-akl">+vaya</AUni> -<AUni ws="qvm-x-ame">+vaya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.351" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="df62aa77-690e-41bc-b069-094aea6479c5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vaya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="67e02100-c4c2-4dd1-9a4b-e6497021eac2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="766a1fec-ebf9-49b9-9a6e-1ef992f7ccc0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vaya 
\entryTyp root 
\gENG go.on 
\gSPN vaya 
\e +vaya 
\c NOSUFF 
\ach va:ya 
\akh va:ya 
\acl va:ya 
\akl va:ya 
\ame va:ya</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="ced0d7f9-0480-4981-98cf-7184fd08b9fb" ownerguid="b645a4a8-dc6d-47b1-9a35-f876a5bb6fc0"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 41.30 Pachancho escämanpis tëja paquipanogragmi capri capri caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="ced18ca2-31eb-42ab-afd4-7f98bf0f2db7" ownerguid="a0546f85-2590-4dc9-ae94-6512b1116b01"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">load</AUni> -<AUni ws="es">cargo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1c71c899-6622-4c8c-8568-433b15e7f844" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ced43338-92d0-453e-a11c-ddc5ecec5a90" ownerguid="92ff5d9a-21a8-440b-b10d-d98675987524"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="ced66b2b-f9c0-409f-b544-2509b384c45f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ambicio:su</AUni> -<AUni ws="qvm-x-acl">ambicio:su; ambicio:su; ambicio:so</AUni> -<AUni ws="qvm-x-akh">ambicio:su</AUni> -<AUni ws="qvm-x-akl">ambicio:su; ambicio:su; ambicio:so</AUni> -<AUni ws="qvm-x-ame">ambicio:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ambicioso</AUni> -<AUni ws="qvm-x-acl">+ambicioso</AUni> -<AUni ws="qvm-x-akh">+ambicioso</AUni> -<AUni ws="qvm-x-akl">+ambicioso</AUni> -<AUni ws="qvm-x-ame">+ambicioso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.749" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b02ae2bf-8a43-494a-b4b5-f1be12829243" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ambicioso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cb6a2694-3459-4451-bd63-24d6fcd694cc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="96938ce5-8593-4c37-8ad1-1a6a312c016e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ambicioso 
\entryTyp root 
\gENG greedy 
\gSPN ambicioso 
\e +ambicioso 
\c N0 
\ach ambicio:su 
\akh ambicio:su 
\acl ambicio:su / _# 
\acl ambicio:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ambicio:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ambicio:su / _# 
\akl ambicio:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ambicio:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ambicio:su</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ced78aec-9778-4d94-af31-ec867a755cd4" ownerguid="8f7c9d7d-9b2a-40f3-9314-8f16f0aa31ef"> -<ExampleWords> -<AUni ws="en">folded, creased, dog-eared</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is folded?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="ced7ee5d-fc9f-473b-9477-4779df6c64b0" ownerguid="f30563f9-3a8b-4ca3-a632-77354009248b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="r" /> -</Morph> -</rt> -<rt class="LexSense" guid="ced82449-19d7-49d1-a0d8-05762f22e014" ownerguid="5390cf06-ee70-4098-bffd-b7a6b3446bbd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="307fe0c8-c631-4e03-af0d-b99a7e6278d9" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="549a31d6-f7fb-4f2a-9c85-6efa70fc07df" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ced904df-9991-421c-9280-295b0ce22664" ownerguid="2e97b83d-1152-473f-9cbe-347f0655041a"> -<ExampleWords> -<AUni ws="en">Q-tip</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What do people use to clean their ears?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cedad80d-f390-4994-89d4-d9ee8f38f989" ownerguid="aaf9d375-f0a0-4c7b-bbf8-3c7ffd4f5a52"> -<ExampleWords> -<AUni ws="en">degree, extent, level, thus</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the degree of something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="cede80ac-8204-450f-84a8-c755bb5e20e5" ownerguid="999c8aee-88d8-4f27-8d57-ccfd45acb830"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="cee1ec81-f8d7-4d5f-9530-3de5d91e99e5" ownerguid="80b83200-a7bd-4277-a948-9f7204df9caf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9f19741a-c25c-479a-8c00-bf0668de3ca4" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">distance</AUni> -<AUni ws="es">distancia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2a7dc487-ab9b-4c1e-8e95-7c68aaa05b6c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="cee30194-bacc-42d3-af9e-b5f97152781c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">derecha</AUni> -<AUni ws="qvm-x-acl">derecha</AUni> -<AUni ws="qvm-x-akh">derecha</AUni> -<AUni ws="qvm-x-akl">derecha</AUni> -<AUni ws="qvm-x-ame">derecha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+derechar</AUni> -<AUni ws="qvm-x-acl">+derechar</AUni> -<AUni ws="qvm-x-akh">+derechar</AUni> -<AUni ws="qvm-x-akl">+derechar</AUni> -<AUni ws="qvm-x-ame">+derechar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.376" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="061a2768-3539-4e25-8241-585473ea92a3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+derechar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="82a3ce6b-22e7-479a-802f-b3e073afd707" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c0bb993a-602d-4301-9975-0e73540b233a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +derechar 
\entryTyp root 
\gENG straighten 
\gSPN derechar 
\e +derechar 
\c V2 
\ach derecha 
\akh derecha 
\acl derecha 
\akl derecha 
\ame derecha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="cee40abd-eed9-4cc2-b343-9e15e488df40"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">warmi:shu</AUni> -<AUni ws="qvm-x-acl">warmi:shu; warmi:shu; warmi:sho</AUni> -<AUni ws="qvm-x-akh">warmi:shu</AUni> -<AUni ws="qvm-x-akl">warmi:shu; warmi:shu; warmi:sho</AUni> -<AUni ws="qvm-x-ame">warmi:shu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*warmi:shu</AUni> -<AUni ws="qvm-x-acl">*warmi:shu</AUni> -<AUni ws="qvm-x-akh">*warmi:shu</AUni> -<AUni ws="qvm-x-akl">*warmi:shu</AUni> -<AUni ws="qvm-x-ame">*warmi:shu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.536" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9e5b1380-4864-41e4-ab95-69bd5929faf3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*warmi:shu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b6a09064-d5d2-432d-8509-6ec40d64987f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="58583978-a4d6-4e42-9a14-2dc0a27e7b2c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *warmi:shu 
\entryTyp root 
\gENG 
\gSPN 
\e *warmi:shu 
\c N0 
\ach warmi:shu 
\akh warmi:shu 
\acl warmi:shu / _# 
\acl warmi:shu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl warmi:sho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl warmi:shu / _# 
\akl warmi:shu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl warmi:sho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame warmi:shu 
\i NAM 3.13 Soldäduyquicunapis pasaypa warmïshumi canga.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="cee7083b-3ce9-4283-a624-195992f32e24" ownerguid="c345f278-91ff-463d-b9a6-8abac8a267eb"> -<ExampleWords> -<AUni ws="en">grape, pineapple</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What plants have fruit?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="cee89495-f092-4a92-a02b-3ba29ca2c285" ownerguid="1fbb9f10-4371-4b1f-8b2b-f1ec9600913c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">na</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">na</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">na</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">na</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">na</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38151a50-9c63-4a70-8bbb-e5cfc5339ad5" t="r" /> -</Morph> -<Msa> -<objsur guid="3afae7ea-b6f9-4990-9b80-c355228ee832" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="cee8d3f1-f4fd-4797-aaae-780bb88160a3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">posti; poste</AUni> -<AUni ws="qvm-x-acl">posti; posti; poste</AUni> -<AUni ws="qvm-x-akh">posti; poste</AUni> -<AUni ws="qvm-x-akl">posti; posti; poste</AUni> -<AUni ws="qvm-x-ame">posti; poste</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+poste</AUni> -<AUni ws="qvm-x-acl">+poste</AUni> -<AUni ws="qvm-x-akh">+poste</AUni> -<AUni ws="qvm-x-akl">+poste</AUni> -<AUni ws="qvm-x-ame">+poste</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.911" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9f63f6b4-5c42-4a12-a6a7-942e87216f8e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+poste</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d123e210-bd7e-4c99-9cf8-f4cd595d24fa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e5915472-4035-4940-b2ac-db058d2013fe" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +poste 
\entryTyp root 
\gENG post 
\gSPN 
\e +poste 
\c N0 
\mp +FinalI 
\ach posti / ~_# 
\ach poste / _# 
\akh posti / ~_# 
\akh poste / _# 
\acl posti / ~_# 
\acl posti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl poste +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl posti / ~_# 
\akl posti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl poste +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame posti / ~_# 
\ame poste / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="ceedce41-cdef-4766-9c5e-8ff5608c5464" ownerguid="8080c7ed-e69a-4a8a-bd8d-bf3447b13630"> -<Abbreviation> -<AUni ws="en">6.2.6.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.428" /> -<DateModified val="2022-9-23 16:55:8.428" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to storing the harvest.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Store the harvest</AUni> -</Name> -<OcmCodes> -<Uni>253 Meat Packing Industry; 254 Refrigeration Industry; 255 Canning Industry; 256 Cereal Industry; 257 Confectionery Industries; 258 Miscellaneous Food Processing and Packing Industries</Uni> -</OcmCodes> -<Questions> -<objsur guid="405a8b33-cbc5-466d-905c-36eb59e40a57" t="o" /> -<objsur guid="5a9598fe-f168-482a-9205-39c1e7793435" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="cef09dd1-3488-4a86-91a3-325e2419ebad"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chuya; chuya:</AUni> -<AUni ws="qvm-x-acl">chuya; chuya:</AUni> -<AUni ws="qvm-x-akh">chuya; chuya:</AUni> -<AUni ws="qvm-x-akl">chuya; chuya:</AUni> -<AUni ws="qvm-x-ame">chuya; chuya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chuya:</AUni> -<AUni ws="qvm-x-acl">*chuya:</AUni> -<AUni ws="qvm-x-akh">*chuya:</AUni> -<AUni ws="qvm-x-akl">*chuya:</AUni> -<AUni ws="qvm-x-ame">*chuya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.356" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a19c156b-bc66-44c0-92ea-1ce7ad785dd3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chuya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="580abe7b-a896-45f1-a61f-fa27d7a71074" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6bacc52a-54d3-476e-8c1a-b16967bb893e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chuya: 
\entryTyp root 
\gENG 
\gSPN 
\e *chuya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach chuya foreshortened 
\ach chuya: 
\akh chuya foreshortened 
\akh chuya: 
\acl chuya foreshortened 
\acl chuya: 
\akl chuya foreshortened 
\akl chuya: 
\ame chuya foreshortened 
\ame chuya:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="cef3c761-8456-4d28-bdd9-91de093116ed" ownerguid="13f62fa1-589c-4a46-9bbc-b0fd1001e21f"> -<ExampleWords> -<AUni ws="en">restraints, handcuffs, chains, bonds, stocks, gag</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What means are used to restrain prisoners?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="cef44998-a3c4-44b0-b014-3e28a576a9ab" ownerguid="f2453181-5627-4c4b-a4d5-2c67b0039807"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="cef4e479-ed16-45a9-ab32-1da63f0b63ae"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">oficina</AUni> -<AUni ws="qvm-x-acl">oficina</AUni> -<AUni ws="qvm-x-akh">oficina</AUni> -<AUni ws="qvm-x-akl">oficina</AUni> -<AUni ws="qvm-x-ame">oficina</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+oficina</AUni> -<AUni ws="qvm-x-acl">+oficina</AUni> -<AUni ws="qvm-x-akh">+oficina</AUni> -<AUni ws="qvm-x-akl">+oficina</AUni> -<AUni ws="qvm-x-ame">+oficina</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.618" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="353e7fe5-ef78-4cdb-b28a-d0bcf7053e8d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+oficina</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4d296be1-9f70-4e48-ac7c-4667be0543cc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3d00e84c-9991-4a2b-a5e8-ed881ffdf872" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +oficina 
\entryTyp root 
\gENG office 
\gSPN oficina 
\e +oficina 
\c N0 
\ach oficina 
\akh oficina 
\acl oficina 
\akl oficina 
\ame oficina</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="cef6644c-6a2c-47ac-aa2c-82463d4e5208"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chila</AUni> -<AUni ws="qvm-x-acl">chila</AUni> -<AUni ws="qvm-x-akh">chila</AUni> -<AUni ws="qvm-x-akl">chila</AUni> -<AUni ws="qvm-x-ame">chila</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chilla</AUni> -<AUni ws="qvm-x-acl">*chilla</AUni> -<AUni ws="qvm-x-akh">*chilla</AUni> -<AUni ws="qvm-x-akl">*chilla</AUni> -<AUni ws="qvm-x-ame">*chilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.305" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4e1599bd-ae84-4d1d-a2dd-c253f5dcac90" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a84a5dea-25af-4a21-8699-82d197cd1c1f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="464d5acc-577c-40e3-9d8e-b792fb1e3758" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chilla 
\entryTyp root 
\gENG new? 
\gSPN nuevo? 
\e *chilla 
\c N0 
\ach chila 
\akh chila 
\acl chila 
\akl chila 
\ame chila</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="cef713b0-c87a-4118-be17-50cd0e304659" ownerguid="541e8471-d944-4f8d-86d4-176b78b0bdc4" /> -<rt class="LexEntry" guid="cefced48-ae37-4de5-8863-963c0dd026b5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cha; cha:</AUni> -<AUni ws="qvm-x-acl">cha; cha:</AUni> -<AUni ws="qvm-x-akh">cha; cha:</AUni> -<AUni ws="qvm-x-akl">cha; cha:</AUni> -<AUni ws="qvm-x-ame">cha; cha:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*traya.2</AUni> -<AUni ws="qvm-x-acl">*traya.2</AUni> -<AUni ws="qvm-x-akh">*traya.2</AUni> -<AUni ws="qvm-x-akl">*traya.2</AUni> -<AUni ws="qvm-x-ame">*traya.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.880" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="96809a9f-5538-463c-9cbc-1102747f5833" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*traya.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cc617c95-e65c-4aeb-9870-08268d5b52c9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9b53c2b7-d09e-42de-9306-ae741cefcd03" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *traya.2 
\entryTyp root 
\gENG arrive 
\gSPN llegar 
\e *traya.2 
\c V2 
\mp +underlong 
\ach cha foreshortened 
\ach cha: 
\akh cha foreshortened 
\akh cha: 
\acl cha foreshortened 
\acl cha: 
\akl cha foreshortened 
\akl cha: 
\ame cha foreshortened 
\ame cha: 
\mp +FinalLength 
\mcc *traya.2 / _... AFAR / _ DWN 
\mcc *traya.2 / ~_ DES</Run> -</AStr> -</Custom> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="cefe96d1-cda2-4d8a-8188-b610f8721520" ownerguid="88f84df5-8e9a-4b0a-8efc-563d5b35858c" /> -<rt class="WfiAnalysis" guid="ceff0bcd-a262-4e41-bf0c-920b446951be" ownerguid="5c20ad67-87b6-4d9f-8fd7-5fd9f1ef7f77"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="1b7d216c-179b-4658-b0c1-ed7bc4e874b1" t="o" /> -<objsur guid="bc0565a2-4c4b-4c52-9d91-c1f4e01de3ba" t="o" /> -<objsur guid="19f4dc48-4179-47ef-be4f-753185d6336f" t="o" /> -<objsur guid="019c5c36-b96b-4dd1-b5d3-7950130119b7" t="o" /> -<objsur guid="28eb8d70-5882-4384-82f1-8bb8b8e73692" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="cf04c48c-d5a1-4fb6-9312-52f92d517b98" ownerguid="2d57ebec-b9cc-48f8-bf5e-165cfa6739e9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">palace</AUni> -<AUni ws="es">palacio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7196b245-d526-403c-b8b4-a51bd1e58b47" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="cf05cc4c-2ad9-4593-a05d-5a5b78d01854" ownerguid="0cdbf190-fcde-4096-a453-4f07568551fd"> -<Form> -<AUni ws="qvm-x-ach">Faraón</AUni> -<AUni ws="qvm-x-acl">Faraón</AUni> -<AUni ws="qvm-x-akh">Faraón</AUni> -<AUni ws="qvm-x-akl">Faraón</AUni> -<AUni ws="qvm-x-ame">Faraón</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="cf06279f-4e13-4bf8-8ec6-d893e70938b3" ownerguid="b7f058af-9ce6-4dd0-b555-00526975300e"> -<ExampleWords> -<AUni ws="en">special, different, unique</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is special?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cf079329-b4c0-4dfd-acb9-dd2e6dee6338"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">despa:chu</AUni> -<AUni ws="qvm-x-acl">despa:chu; despa:chu; despa:cho</AUni> -<AUni ws="qvm-x-akh">despa:chu</AUni> -<AUni ws="qvm-x-akl">despa:chu; despa:chu; despa:cho</AUni> -<AUni ws="qvm-x-ame">despa:chu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+despacho</AUni> -<AUni ws="qvm-x-acl">+despacho</AUni> -<AUni ws="qvm-x-akh">+despacho</AUni> -<AUni ws="qvm-x-akl">+despacho</AUni> -<AUni ws="qvm-x-ame">+despacho</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.396" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b96b7016-e46b-4a6b-9bab-ae3e07c9ee74" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+despacho</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5d50e7a6-5442-4d69-8d21-01c8870dd078" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1de8527f-c14a-469e-a701-61bf941eac4a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +despacho 
\entryTyp root 
\gENG office 
\gSPN despacho 
\e +despacho 
\c N0 
\ach despa:chu 
\akh despa:chu 
\acl despa:chu / _# 
\acl despa:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl despa:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl despa:chu / _# 
\akl despa:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl despa:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame despa:chu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="cf08e9d2-47ca-4f79-b1d6-d4d06df53f48" ownerguid="8841af5e-74e6-4c5d-a313-ba9aa7fdb78b"> -<ExampleWords> -<AUni ws="en">stand, stand up, rise (to your feet), get up, get to your feet, jump to your feet, leap up, leap out of the chair, pick yourself up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to standing up from a sitting or lying position?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cf0ac4da-df0e-47ff-bb56-2d20ec9e5f87"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">Dios; Dioos</AUni> -<AUni ws="qvm-x-acl">Dios; Dioos</AUni> -<AUni ws="qvm-x-akh">Dios; Dioos</AUni> -<AUni ws="qvm-x-akl">Dios; Dioos</AUni> -<AUni ws="qvm-x-ame">Dios; Dioos</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+Dios</AUni> -<AUni ws="qvm-x-acl">+Dios</AUni> -<AUni ws="qvm-x-akh">+Dios</AUni> -<AUni ws="qvm-x-akl">+Dios</AUni> -<AUni ws="qvm-x-ame">+Dios</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.414" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e67463b3-9b30-4099-b2cc-3be0331358e1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+Dios</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ba646443-df49-4855-826c-b3d58f83799f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1ef13f4d-cef0-44eb-94c8-2969c6700aa6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +Dios 
\entryTyp root 
\gENG God 
\gSPN Dios 
\e +Dios 
\c N0 
\mp AlwaysLow 
\ach Dios / ~_# 
\ach Dioos / _# 
\akh Dios / ~_# 
\akh Dioos / _# 
\acl Dios / ~_# 
\acl Dioos / _# 
\akl Dios / ~_# 
\akl Dioos / _# 
\ame Dios / ~_# 
\ame Dioos / _# 
\mp +FinalC 
\mcc +Dios / ~_ [with]</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="cf0d8c48-137b-4105-96e2-11fdf5682eea"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Queliónpa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="cf0df956-82e4-4c7a-bdb0-b320d98dea6d" ownerguid="bfa3be74-0390-4e2e-bdb7-ed41eb67e4f1"> -<ExampleWords> -<AUni ws="en">rain (v), fall, pelt, splatter, drench, water (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What does the rain do?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="cf0f5056-0fc8-445e-bf69-e5eb38071d6e" ownerguid="80ee826e-1a27-421d-968b-80e0a6e177f0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="1d4a49be-b24d-498b-bda4-5a845e1c14d0" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="821227c1-f5d1-496d-baca-b0104881b465" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="cf0fade7-3f3a-425f-b082-282c8d32913e" ownerguid="ef9cab13-702b-495f-8238-5a15e69b0bd4"> -<Form> -<AUni ws="qvm-x-ach">shauya</AUni> -<AUni ws="qvm-x-acl">shauya</AUni> -<AUni ws="qvm-x-akh">shawya</AUni> -<AUni ws="qvm-x-akl">shawya</AUni> -<AUni ws="qvm-x-ame">shawya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="cf0fbea4-38ff-4002-aa3d-464e23547b7f" ownerguid="7d111356-e04e-4891-960c-2f35147eba82"> -<ExampleWords> -<AUni ws="en">what's its name, thingy, thingamajig, whatchamacallit, whatsit, such and such</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used to refer to something when you can't remember what it is called?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="cf0fd6d2-9b6e-41b1-b59e-4bcdb4113864" ownerguid="7495b59c-dcdc-4b45-80fb-049428e04995"> -<Form> -<AUni ws="qvm-x-ach">mañösu</AUni> -<AUni ws="qvm-x-acl">mañösu; mañösu; mañöso</AUni> -<AUni ws="qvm-x-akh">mañösu</AUni> -<AUni ws="qvm-x-akl">mañösu; mañösu; mañöso</AUni> -<AUni ws="qvm-x-ame">mañösu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="cf11a988-d5a8-4fe2-95e0-7e11f1eb6941" ownerguid="bd8a4e42-c7bb-4281-8118-ff644562b54e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="cf15ff4c-effd-4807-bbc2-dee9eef7d588"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yawa</AUni> -<AUni ws="qvm-x-acl">yawa</AUni> -<AUni ws="qvm-x-akh">yawa</AUni> -<AUni ws="qvm-x-akl">yawa</AUni> -<AUni ws="qvm-x-ame">yawa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yawa.v1</AUni> -<AUni ws="qvm-x-acl">*yawa.v1</AUni> -<AUni ws="qvm-x-akh">*yawa.v1</AUni> -<AUni ws="qvm-x-akl">*yawa.v1</AUni> -<AUni ws="qvm-x-ame">*yawa.v1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.770" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="01141d9c-c12d-49e8-a1a6-6d1761d87245" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yawa.v1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bece9cf8-4432-4d90-b1c3-c13f59c40557" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bfe6811f-a48e-44f3-a0b7-cb0b4f25c23a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yawa.v1 
\entryTyp root 
\gENG taste 
\gSPN saborear 
\e *yawa.v1 
\c V1 
\ach yawa 
\akh yawa 
\acl yawa 
\akl yawa 
\ame yawa 
\mcc *yawa.v1 / ~_ [advss] 3P.C [case] 
\mcc *yawa.v1 / ~_ [advss] SIM1.2 
\mcc *yawa.v1 / ~_ [advss] JUST2.C</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="cf183480-cd4e-4e6a-9459-2a4fdc4e677d" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<ExampleWords> -<AUni ws="en">pace off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words refer to measuring the length of something by counting your steps?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="cf185089-9aaf-4de4-9a29-02a43f1e01ab" ownerguid="abc378a7-42f5-4a04-aa74-d4b15ba502d6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="cf1914a5-dd75-4708-9baa-b70e40cf3fca" ownerguid="3421189c-0b52-4d4e-aac3-252bcac4544b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="cf19b822-ff00-472e-b9d8-0f958d54a02e" ownerguid="a90e47fb-667c-46f7-beab-5ec4e9e6edb5"> -<ExampleWords> -<AUni ws="en">incautious, rash, impetuous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a person who is not cautious?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cf1bc6f3-d623-4664-90d1-e85aaca9318e" ownerguid="18595df7-1c69-40db-a7c1-74d490115c0c"> -<ExampleWords> -<AUni ws="en">seal, airtight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to keeping air out of something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cf1dd9e1-cc9d-4c43-8c3a-6056d7424d29" ownerguid="180a2220-942c-4e17-96ee-cd4f63a4c715"> -<ExampleWords> -<AUni ws="en">clod, clump, lump (of clay), grain of sand</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a piece of dirt?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cf21bb99-7006-449d-afb9-e63e844d4440"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wa:ca</AUni> -<AUni ws="qvm-x-acl">wa:ca</AUni> -<AUni ws="qvm-x-akh">wa:ka</AUni> -<AUni ws="qvm-x-akl">wa:ka</AUni> -<AUni ws="qvm-x-ame">wa:ka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vaca.v</AUni> -<AUni ws="qvm-x-acl">+vaca.v</AUni> -<AUni ws="qvm-x-akh">+vaca.v</AUni> -<AUni ws="qvm-x-akl">+vaca.v</AUni> -<AUni ws="qvm-x-ame">+vaca.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.332" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ad658b78-a68c-4c67-9c32-e2db16bd2a78" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vaca.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1b289788-7af5-41a4-a0fc-9409b93e0f05" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="806d7650-b25a-4135-92bb-482b9c6d849c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vaca.v 
\entryTyp root 
\gENG hands.and.knees 
\gSPN caminar.como.vaca 
\e +vaca.v 
\c V1 
\mp KQWchange 
\ach wa:ca 
\akh wa:ka 
\acl wa:ca 
\akl wa:ka 
\ame wa:ka 
\mp +assimilated 
\mcc +vaca.v / ~_ [ref] NMN 
\mcc +vaca.v / ~_ 3</Run> -</AStr> -</Custom> -</rt> -<rt class="MoAffixAllomorph" guid="cf240770-dbb1-4b58-a8d0-fe6647e0779d" ownerguid="f1092161-733a-4873-8885-7df06f52421f"> -<Form> -<AUni ws="qvm-x-ach">chö</AUni> -<AUni ws="qvm-x-acl">chö</AUni> -<AUni ws="qvm-x-akh">chö</AUni> -<AUni ws="qvm-x-akl">chö</AUni> -<AUni ws="qvm-x-ame">chaw</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="Segment" guid="cf27175f-4efc-4537-8030-90e793a239b0" ownerguid="0a6ddf7d-44ad-4742-b444-7e394e248d2a"> -<Analyses> -<objsur guid="5462984b-c85e-4747-b64d-cc6b59db8f0d" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="cf28da09-74cc-44f8-9f26-6ccb8db1b7da" ownerguid="b8301711-721e-4841-8193-efcc546dea16"> -<Form> -<AUni ws="qvm-x-ach">racu</AUni> -<AUni ws="qvm-x-acl">racu; racu; raco</AUni> -<AUni ws="qvm-x-akh">raku</AUni> -<AUni ws="qvm-x-akl">raku; raku; rako</AUni> -<AUni ws="qvm-x-ame">raku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="cf29232f-7d7a-4a27-a5fb-13c9ce8cddc9" ownerguid="fa49c235-7864-49a0-9e77-233506bffb53"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="cf2aabe2-d168-4acc-a85e-ddfffbc33a40" ownerguid="9b4b60f0-473f-4340-a4c1-6c6f92ad9786"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sandal</AUni> -<AUni ws="es">ojota</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4358ad59-6b5b-4432-b752-145a27be9a26" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="cf2b2480-2a5a-4e81-83bc-cc1feb5664c2" ownerguid="2536e011-ff02-45d9-8e1d-ee8b4e6fc60c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">flip</AUni> -<AUni ws="es">voltear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="71b199db-39ec-48c3-af5a-404eeae29f8c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="cf2c82fe-d191-4d89-a6bb-2df56c80385e" ownerguid="1ff9ed87-0b97-4333-81d3-e5d6ecf23449"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ant</AUni> -<AUni ws="es">hormiga</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6e39d19c-8967-4dbf-9ce5-d0c71919bf17" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="cf316705-9f92-4c21-937d-06f312223af1" ownerguid="609cc365-f052-4fe9-b16c-5b5eda586d28"> -<Form> -<AUni ws="qvm-x-ach">gansu; ganso</AUni> -<AUni ws="qvm-x-acl">gansu; gansu; ganso</AUni> -<AUni ws="qvm-x-akh">gansu; ganso</AUni> -<AUni ws="qvm-x-akl">gansu; gansu; ganso</AUni> -<AUni ws="qvm-x-ame">gansu; ganso</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="cf337287-c9fa-43d2-93c4-284f45e262c0" ownerguid="32bebe7e-bdcc-4e40-8f0a-894cd6b26f25"> -<Abbreviation> -<AUni ws="en">2.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.32" /> -<DateModified val="2022-9-23 16:55:8.32" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words for disease and for words referring to specific diseases.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>23I Sickness, Disease, Weakness</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Disease</AUni> -</Name> -<OcmCodes> -<Uni>750 Sickness</Uni> -</OcmCodes> -<Questions> -<objsur guid="b5a82d34-b9b3-44fd-85fe-931fb4eed2dd" t="o" /> -<objsur guid="87095b98-5ef6-45c2-abe7-47baa7629287" t="o" /> -<objsur guid="45f069f0-baf9-4baa-a728-f1e8179ac856" t="o" /> -<objsur guid="4b38aa1b-943d-480c-8b1f-7ee9ccba62a8" t="o" /> -<objsur guid="3e942749-5d23-4820-90ae-6131bc6962c1" t="o" /> -<objsur guid="53aafbfa-eef3-4505-8998-af6bbefe8f2c" t="o" /> -<objsur guid="8df95b1c-edf5-491e-88cd-349e96f359f8" t="o" /> -<objsur guid="ddb403c3-fd5a-4015-913a-62cf1789cd53" t="o" /> -<objsur guid="670440fa-caac-4523-9c2b-6ef4a0d32f29" t="o" /> -<objsur guid="b05418f3-bc4c-49f9-9452-b4ea2c329f14" t="o" /> -<objsur guid="e68748b0-377e-4337-9a5c-a1c5694406de" t="o" /> -<objsur guid="c49483fc-e0b0-42f3-8d87-982d59cce3e3" t="o" /> -<objsur guid="98460973-0eec-4fde-8b88-8793bd8a3fc7" t="o" /> -<objsur guid="166174fd-1bf2-4914-94b8-06392b136d20" t="o" /> -<objsur guid="85c8ff69-ae04-4e58-98e2-9848c382a17b" t="o" /> -<objsur guid="b4631b18-7815-482a-9d63-be77928d9a10" t="o" /> -<objsur guid="36da6b7d-22c3-4de3-8a6e-979ec842e55a" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="acddd447-bf8a-4d74-8501-7defb0525cc0" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="f0de6c5a-3df6-4483-8c63-2d8fcd6c97be" t="o" /> -<objsur guid="4d2a67fb-91c8-4436-87f4-f4eab6cb0828" t="o" /> -<objsur guid="39dcb6b9-94df-45be-a128-c14c7a9dcdbd" t="o" /> -<objsur guid="77f0d0dc-61ee-4373-9879-35a7059bd892" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoAffixAllomorph" guid="cf33a2dd-5fee-4a2f-9449-0844825a04bb" ownerguid="fbe87bb5-f2d1-4e5b-9b9f-5151c88ed3ec"> -<Form> -<AUni ws="qvm-x-ach">tsurag</AUni> -<AUni ws="qvm-x-acl">tsurag</AUni> -<AUni ws="qvm-x-akh">tsuraq</AUni> -<AUni ws="qvm-x-akl">tsuraq</AUni> -<AUni ws="qvm-x-ame">tsuraq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="8378f21c-cf54-437a-9d41-a303c764b326" t="r" /> -</PhoneEnv> -</rt> -<rt class="MoStemAllomorph" guid="cf33f853-b036-42de-a722-b0089fa088e4" ownerguid="0ba86b69-2a31-49c2-8922-d0c366d0b11c"> -<Form> -<AUni ws="qvm-x-ach">shipi</AUni> -<AUni ws="qvm-x-acl">shipi; shipe</AUni> -<AUni ws="qvm-x-akh">shipi</AUni> -<AUni ws="qvm-x-akl">shipi; shipe</AUni> -<AUni ws="qvm-x-ame">shipi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="cf34118b-fb39-4ea0-8ba6-0e641ebb5011" ownerguid="49f0742b-349b-471e-b23c-9af2fb502541"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="cf343a0f-5eb7-4dbf-bf22-0a831a2437c9" ownerguid="b2e3c568-8a97-4728-88c4-370cd0b0a26a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">capital</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">capital</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">capital</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">capital</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">capital</Run> -</AStr> -</Form> -<Morph> -<objsur guid="90190a7e-f457-4f53-ad53-552af873dcac" t="r" /> -</Morph> -<Msa> -<objsur guid="885b6030-a446-40b0-ac24-407af6f48331" t="r" /> -</Msa> -<Sense> -<objsur guid="c4746fff-540b-4e14-8a48-1c3289704984" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="cf3738eb-518b-42ad-a1ad-807b56afa1e5" ownerguid="2a2af155-9db9-41c5-860a-fe0a3a09d6de"> -<ExampleWords> -<AUni ws="en">drop (a line of thought), distract, distraction, take your mind off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to stopping thinking about something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="cf38cd00-c2b2-44f4-8b42-decb8f956289" ownerguid="4644ee64-a0db-4cec-97c2-16fcf1688838"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="cf38d9ba-f7bc-4b2b-90f3-46510c07ddfb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gonchi</AUni> -<AUni ws="qvm-x-acl">gonchi; gonchi; gonche</AUni> -<AUni ws="qvm-x-akh">qonchi</AUni> -<AUni ws="qvm-x-akl">qonchi; qonchi; qonche</AUni> -<AUni ws="qvm-x-ame">qunchi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*quntri</AUni> -<AUni ws="qvm-x-acl">*quntri</AUni> -<AUni ws="qvm-x-akh">*quntri</AUni> -<AUni ws="qvm-x-akl">*quntri</AUni> -<AUni ws="qvm-x-ame">*quntri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.859" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8f34ae54-9cf2-467a-a590-75b8f32ee269" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*quntri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5180f0ac-8182-42df-bdd6-b3e3ca876996" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fcbeed97-51d1-4719-8567-2d6764305549" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *quntri 
\entryTyp root 
\gENG pea-body 
\gSPN orina 
\e *quntri 
\c N0 
\mp +FinalI 
\ach gonchi 
\akh qonchi 
\acl gonchi / _# 
\acl gonchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gonche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qonchi / _# 
\akl qonchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qonche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qunchi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="cf3becc9-da30-4937-9364-80ccd4edc0fb" ownerguid="e6e956f1-7d3c-4e11-9ff5-f5703a052e88"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">greeting</AUni> -<AUni ws="es">saludos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ed63513d-e815-439d-be53-b0798ef2f888" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="cf404cba-2013-45f2-b2af-f89c121582b3"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">3P</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="cf41eab5-df71-4347-9f2b-bceafcee1178" ownerguid="191ca5a5-0a67-426e-adfc-6fdf7c2aaa2c"> -<ExampleWords> -<AUni ws="en">address</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a description of the location of a house?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cf47477d-c32d-444f-9967-2d0d13393aaf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pashta</AUni> -<AUni ws="qvm-x-acl">pashta</AUni> -<AUni ws="qvm-x-akh">pashta</AUni> -<AUni ws="qvm-x-akl">pashta</AUni> -<AUni ws="qvm-x-ame">pashta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pashta</AUni> -<AUni ws="qvm-x-acl">*pashta</AUni> -<AUni ws="qvm-x-akh">*pashta</AUni> -<AUni ws="qvm-x-akl">*pashta</AUni> -<AUni ws="qvm-x-ame">*pashta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.747" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="33868b43-9269-47a8-b523-b37453950044" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pashta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3b28774b-cc14-476d-aa61-63015deb6b4a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c1b34e62-4f97-49af-87c0-e312c6503127" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pashta 
\entryTyp root 
\gENG burst 
\gSPN reventar 
\e *pashta 
\c V1 
\ach pashta 
\akh pashta 
\acl pashta 
\akl pashta 
\ame pashta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="cf4862c0-1792-48e3-9385-fd47ccf1ccc5" ownerguid="96de28a0-4d3a-4927-b22c-c3602d4b97e3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">man</AUni> -<AUni ws="es">hombre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="735a29e0-40d3-4d25-9e9a-e8181d173c29" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="cf497a89-d190-4d57-a79b-d6ff6d622750" ownerguid="2dc5d8ae-4078-434f-91dc-3970cac11d02"> -<Form> -<AUni ws="qvm-x-ach">pullera</AUni> -<AUni ws="qvm-x-acl">pullera</AUni> -<AUni ws="qvm-x-akh">pullera</AUni> -<AUni ws="qvm-x-akl">pullera</AUni> -<AUni ws="qvm-x-ame">pullera</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="cf4d4d84-b7b7-4f0b-93e1-8484e851d6eb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shicshi</AUni> -<AUni ws="qvm-x-acl">shicshi; shicshe</AUni> -<AUni ws="qvm-x-akh">shikshi</AUni> -<AUni ws="qvm-x-akl">shikshi; shikshe</AUni> -<AUni ws="qvm-x-ame">shikshi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shikshi</AUni> -<AUni ws="qvm-x-acl">*shikshi</AUni> -<AUni ws="qvm-x-akh">*shikshi</AUni> -<AUni ws="qvm-x-akl">*shikshi</AUni> -<AUni ws="qvm-x-ame">*shikshi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.571" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bc844a71-108d-461f-9f62-cd79740e130e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shikshi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eaa91e8e-4949-49b0-b781-09414caa52b4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="53a2d01b-5485-4200-9c71-cf835191195c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shikshi 
\entryTyp root 
\gENG tassle 
\gSPN espigar 
\e *shikshi 
\c V1 
\mp +FinalI 
\ach shicshi 
\akh shikshi 
\acl shicshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shicshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shikshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shikshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shikshi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="cf4d9fd0-ed52-4fc1-8b0f-ecb8f30b64c9" ownerguid="101c16f8-ec76-4ec7-895a-fd814fef51dd"> -<ExampleWords> -<AUni ws="en">cure (n), remedy, antidote, curative</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to something that cures someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cf526bd7-effd-4a6c-866a-389ff09086d8" ownerguid="c27b87cf-1211-4df2-96b1-12c416edabbe"> -<ExampleWords> -<AUni ws="en">humorously, jokingly, jestingly, in jest, in sport, in play, in fun, not seriously</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words indicate the joking manner in which a person acts or speaks?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cf543d5c-1767-4b55-b55e-37fac2c65f66"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jatuncaray</AUni> -<AUni ws="qvm-x-acl">jatuncaray</AUni> -<AUni ws="qvm-x-akh">jatunkaray</AUni> -<AUni ws="qvm-x-akl">jatunkaray</AUni> -<AUni ws="qvm-x-ame">hatunkaray</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hatunkaray</AUni> -<AUni ws="qvm-x-acl">*hatunkaray</AUni> -<AUni ws="qvm-x-akh">*hatunkaray</AUni> -<AUni ws="qvm-x-akl">*hatunkaray</AUni> -<AUni ws="qvm-x-ame">*hatunkaray</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.690" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="deda6839-ba86-4e1d-9dc8-7d655cb056f9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hatunkaray</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="65a3cdf0-0537-449a-9020-16a8be564c5b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c06272d0-863e-4e70-8c54-b7cebc428cf7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hatunkaray 
\entryTyp root 
\gENG huge 
\gSPN tremendo 
\e *hatunkaray 
\c N0 
\mp +FinalC 
\ach jatuncaray 
\akh jatunkaray 
\acl jatuncaray 
\akl jatunkaray 
\ame hatunkaray</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="cf54e0e7-8eaf-459c-b547-14488785c454" ownerguid="f0c7d305-01bc-4a03-b2dc-6cfda627fc03"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="cf55ee93-6d44-421a-ad9c-a644973f1b1d" ownerguid="f6567cc1-f3d8-46f1-b133-030b6b9a9417"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="cf570bf3-6d6f-4d8b-a876-d6610aa74830" ownerguid="1d72c590-a3c3-470f-b0a5-ac4926b7b13b"> -<Form> -<AUni ws="qvm-x-ach">auli</AUni> -<AUni ws="qvm-x-acl">auli; aule</AUni> -<AUni ws="qvm-x-akh">awli</AUni> -<AUni ws="qvm-x-akl">awli; awle</AUni> -<AUni ws="qvm-x-ame">awli</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="cf57b621-6b75-4635-ac90-38511cfa7b90" ownerguid="b594278c-c938-48ea-a157-49ff67244ef5"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="cf5c67a8-59c4-4f24-9ffb-85cb04e39d9c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">salteador</AUni> -<AUni ws="qvm-x-acl">salteador</AUni> -<AUni ws="qvm-x-akh">salteador</AUni> -<AUni ws="qvm-x-akl">salteador</AUni> -<AUni ws="qvm-x-ame">salteador</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+salteador</AUni> -<AUni ws="qvm-x-acl">+salteador</AUni> -<AUni ws="qvm-x-akh">+salteador</AUni> -<AUni ws="qvm-x-akl">+salteador</AUni> -<AUni ws="qvm-x-ame">+salteador</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.429" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b810bbab-5e04-4a80-98ce-d6f5e9ba378d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+salteador</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6a8e9cba-6426-472a-8ba0-a559b686e56b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d6ec7e4e-2ace-4658-8e62-ab7c8e14b52e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +salteador 
\entryTyp root 
\gENG 
\gSPN 
\e +salteador 
\c N0 
\mp +FinalC 
\ach salteador 
\akh salteador 
\acl salteador 
\akl salteador 
\ame salteador</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="cf5f83be-2c19-4cf8-8cc5-53bd32b50530" ownerguid="04752883-aa3e-42a2-bd42-454e9cd99b11"> -<Abbreviation> -<AUni ws="en">9.4.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.708" /> -<DateModified val="2022-9-23 16:55:8.708" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating who is evaluating the proposition.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Evaluator</AUni> -</Name> -<Questions> -<objsur guid="39288e58-4b48-499a-84ea-39fb8a295a95" t="o" /> -<objsur guid="a8822992-8c9c-456d-9ec5-5ecdd13656ed" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="cf5fc70a-170c-44a6-bbb4-96ee6746a5dd" ownerguid="96c25ee0-7d29-4ae0-b36d-8cf9b0458e14"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">in.front</AUni> -<AUni ws="es">adelante</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7bd7fd79-d782-4077-9b4b-e5cda0781fff" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="cf615c1d-89a6-4101-ba37-62b0155ba83d" ownerguid="2e4ce5bf-f891-48a2-acf7-498be8718921"> -<Form> -<AUni ws="qvm-x-ach">jatun</AUni> -<AUni ws="qvm-x-acl">jatun</AUni> -<AUni ws="qvm-x-akh">jatun</AUni> -<AUni ws="qvm-x-akl">jatun</AUni> -<AUni ws="qvm-x-ame">hatun</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="cf61a339-9892-4f47-9500-1a2506706780" ownerguid="975d0109-1bba-4b0e-85b8-2c6b51c8e074"> -<ExampleWords> -<AUni ws="en">squat (down), sit on your haunches, sit back on your heels</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to squatting?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="cf6264a9-fd56-4235-b6b8-c5cb94d0b1f5" ownerguid="3c63967b-a6aa-4150-86ca-17f016d2dffe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mother.in.law</AUni> -<AUni ws="es">suegra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aecaad50-2be5-4df2-9882-5fdc32055323" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="cf6494a0-7632-4819-bf64-1c07935ebd61" ownerguid="6c36a680-4ff4-43b9-a7c2-9037ceb0d3f6"> -<ExampleWords> -<AUni ws="en">round, circular, spherical, globular, ball shaped, ring</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is round?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="cf65afad-a98e-4603-9c12-bd5acca13972" ownerguid="eb1dad61-59a2-49b1-ac77-4054ebf01b7a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="cf6729fc-716f-43c2-8a2a-ffd0b0c7ed0f" ownerguid="f4f87192-4abf-42a0-842d-900b74cb6684"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="cf67547c-f52d-4e13-a4c3-efa72d680421" ownerguid="5bb29704-fe0f-4594-9622-ce0aa42b93c8"> -<ExampleWords> -<AUni ws="en">agriculture, farming</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to working with plants?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cf6772c9-ca14-4421-8bb4-fa49d0f5a50c" ownerguid="76a06e45-99f7-446f-a2e8-e23edf6064bd"> -<ExampleWords> -<AUni ws="en">decay (n), rot (n), canker, caries, carrion, dry rot</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a place on something where it is decaying?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="cf67c582-1e9d-4bba-9c2c-db0af346a53d" ownerguid="a9ad35b9-7190-4589-8381-51f72ee80b56"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.oar</AUni> -<AUni ws="es">remar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7882ca8e-4665-4fa1-95e2-aee4752aff63" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="cf686b15-80dc-4908-b6d4-755ab6fba460" ownerguid="2a0b8f7c-503a-4860-8a12-afd38f6b768b"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="cf6cd55c-da46-4c3c-83b3-e7c328a50f43" ownerguid="edbfc928-049c-4cb7-8c88-8e8af38287c7"> -<ExampleWords> -<AUni ws="en">date, go out with, see someone, ask out, ask someone for a date</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to doing something with someone you love?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="cf6dd4ba-cfdb-4638-89b2-e64c06509e1b" ownerguid="374f8454-403f-40b1-8cc0-b3aa4b65080c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">drop</AUni> -<AUni ws="es">caer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7a9e482f-8c1a-4704-aff8-7c72655ec640" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="cf6e9acf-c9a9-468d-a4fe-9ea18e167e94" ownerguid="d55c32ac-bc49-4310-a943-ac4085d04815"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="cf6ed71e-399a-41a1-bffe-ce5bfda0fe14" ownerguid="080bf07b-e58b-4a75-bb97-84d980a143f0"> -<ExampleWords> -<AUni ws="en">irregular, jagged</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to an irregular shape?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cf705274-c0dd-4563-b7c0-25c59108776d" ownerguid="80415fac-b3d8-4e3c-bdb8-dc92f3c6dad8"> -<ExampleWords> -<AUni ws="en">boast (n), claim (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to what is said when boasting?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cf728419-ef0e-4351-865c-7b76d404a9d5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fi:nu</AUni> -<AUni ws="qvm-x-acl">fi:nu; fi:nu; fi:no</AUni> -<AUni ws="qvm-x-akh">fi:nu</AUni> -<AUni ws="qvm-x-akl">fi:nu; fi:nu; fi:no</AUni> -<AUni ws="qvm-x-ame">fi:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fino</AUni> -<AUni ws="qvm-x-acl">+fino</AUni> -<AUni ws="qvm-x-akh">+fino</AUni> -<AUni ws="qvm-x-akl">+fino</AUni> -<AUni ws="qvm-x-ame">+fino</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.558" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="85365bee-34c2-4e5a-b7fc-07ebd7f4d439" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fino</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3e00c600-24bb-4ca4-a3f7-5d9038485963" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="23fab0d7-991a-4947-9768-eb530774280b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fino 
\entryTyp root 
\gENG fine 
\gSPN fino 
\e +fino 
\c N0 
\ach fi:nu 
\akh fi:nu 
\acl fi:nu / _# 
\acl fi:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl fi:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl fi:nu / _# 
\akl fi:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl fi:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame fi:nu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="cf76c68f-e23d-42fa-bba9-d01471616e8b" ownerguid="492a0270-bfec-4627-9625-12dc2197a851"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Deu 33.29 Ali chölu tucuycagtami ushanquipag.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="cf7877da-0cc6-4662-9921-abc314ae8d53" ownerguid="91a24a4f-487c-4657-b2a4-b2f34e8bf101"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="eb4bc344-be42-4c27-95e2-7abd4a6c2b27" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -<Sense> -<objsur guid="51cc5088-f15f-43ad-802d-b00dfa615a64" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="cf79b2f6-aa13-46e8-82c1-5a9c82a5826f" ownerguid="0a1377a6-73a7-42e6-a810-97c3f51d3761"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">knife</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7bbc3e04-50a9-474b-bd24-45041683e6d4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="cf7b3f5c-0a6d-44bc-bb12-888dc51e7a23" ownerguid="9e775794-3dda-4942-b6af-087ffd57f342"> -<ExampleWords> -<AUni ws="en">side</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to an area that is on one side of a border or wall</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="cf7b779b-f209-4218-ac07-f4056871b99f" ownerguid="468965f6-d3df-4f2a-aebd-67d3a371a775"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="cf7bf33f-a2ab-425d-a2a2-578183755c8d" ownerguid="67fd8c15-a1fa-4f38-9250-309e869910ca"> -<Form> -<AUni ws="qvm-x-ach">tumpu</AUni> -<AUni ws="qvm-x-acl">tumpu; tumpu; tumpo</AUni> -<AUni ws="qvm-x-akh">tumpu</AUni> -<AUni ws="qvm-x-akl">tumpu; tumpu; tumpo</AUni> -<AUni ws="qvm-x-ame">tumpu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="cf7e878f-6cd2-4752-b7ee-f26d517687e1" ownerguid="e7ef1518-74a7-498a-b2de-0721f589a565"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="cf83d28a-1ecb-4f47-acfc-9d2df864d88f" ownerguid="be89e0ba-4c6a-4986-ac0d-859a901b89a1"> -<ExampleWords> -<AUni ws="en">creative genius, dreamer, visionary</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a person who imagines?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cf8422c5-7a99-42c4-8ecb-441c99e1ea7c" ownerguid="7bf05f4e-909f-40ca-b742-9be21eba9fbb"> -<ExampleWords> -<AUni ws="en">gonna, going to, intend to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) intention: the agent intends to carry out the action of the main verb: 'Sam's gonna take Sanskrit next semester'.</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="cf847d0d-2b41-4fa3-8f82-f82398579305" ownerguid="08d704f0-706b-4db9-9d6b-b5763469701d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="cf87f617-2e89-4d86-8442-945268c5f7cd" ownerguid="f86dc09d-23e8-4ccd-81be-ab2213aa9339"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="cf8a6f93-5f2a-4391-ad08-b50115d7dcda" ownerguid="ca511a0c-5628-4726-8a6e-aa9fa3b73bfc"> -<ExampleWords> -<AUni ws="en">false testimony, perjury</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a witness lying?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="cf8ae81b-db43-44e6-b6da-7e04e4b79e2f" ownerguid="16ed4be7-55ee-44ba-af48-75991b621fa3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">barely</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b64463c6-448c-4167-a39e-3a541663f8a5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="cf8b4f36-8583-4340-b9c7-84e90484dea5" ownerguid="183dc976-34ef-4c1a-aaf4-03531a320304"> -<Form> -<AUni ws="qvm-x-ach">verbëna</AUni> -<AUni ws="qvm-x-acl">verbëna</AUni> -<AUni ws="qvm-x-akh">verbëna</AUni> -<AUni ws="qvm-x-akl">verbëna</AUni> -<AUni ws="qvm-x-ame">verbëna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="cf8b4f9b-80f2-4e89-904b-ac2695436625" ownerguid="1438c623-c4ce-4559-b71b-cfb86a71e6d7"> -<ExampleWords> -<AUni ws="en">match, matchstick, matchbox, flint and steel, cigarette lighter, lighter fluid, tinderbox</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What things are used to start fires?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cf8b9a86-96e2-4712-a76d-39f7695a338b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">referencia</AUni> -<AUni ws="qvm-x-acl">referencia</AUni> -<AUni ws="qvm-x-akh">referencia</AUni> -<AUni ws="qvm-x-akl">referencia</AUni> -<AUni ws="qvm-x-ame">referencia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+referencia</AUni> -<AUni ws="qvm-x-acl">+referencia</AUni> -<AUni ws="qvm-x-akh">+referencia</AUni> -<AUni ws="qvm-x-akl">+referencia</AUni> -<AUni ws="qvm-x-ame">+referencia</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.318" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cd8ffc1a-8e4c-436f-a88c-2a6139108886" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+referencia</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8b550145-e8f8-477d-a094-571f9bcd7943" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fe492f6e-51ea-4777-bcbe-ddd0153a8a44" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +referencia 
\entryTyp root 
\gENG reference 
\gSPN referencia 
\e +referencia 
\c N0 
\ach referencia 
\akh referencia 
\acl referencia 
\akl referencia 
\ame referencia</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="cf8ca969-08b6-4ee3-9390-3fdd98faea7a" ownerguid="0d63adce-41dd-4873-b0bf-331d0205e65d"> -<ExampleWords> -<AUni ws="en">remain, persist, persistence, survive, survival, survivor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to continuing to exist?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="cf8dab44-8dea-42f0-89b9-b75c060ac155" ownerguid="8bc86416-4dc6-4810-b7e6-e14a4d71e0ac"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">six</AUni> -<AUni ws="es">seis</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c739a6b0-ffb1-4b8c-9639-b5647013c277" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="cf8e187e-fe29-40c5-be11-fe50ecc7ac47" ownerguid="68dec44d-7c5b-4e12-9f6e-0aa0b8dec042"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">board</AUni> -<AUni ws="es">tabla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="22c50a6a-9f84-46c5-9230-f58fe9c5acda" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="cf8f2677-0335-47b1-acd4-cb366efb9b1e" ownerguid="8f799eec-e143-4cf8-bce8-78ffc7c44fa5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">punishment</AUni> -<AUni ws="es">castigo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6b33e92c-30c0-4522-b72a-9903d7fd5259" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="cf9189f3-1536-4baa-86dd-ef9adb6c9d67" ownerguid="6f026670-a028-4d76-925c-cdb77eab585b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="cf93b8e0-9f28-4485-b9d6-22293ccd73ce" ownerguid="6f01b67c-33a0-4ed3-8205-f868e97a1a3a"> -<Abbreviation> -<AUni ws="en">7.2.4.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.518" /> -<DateModified val="2022-9-23 16:55:8.518" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to losing your way.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Lose your way</AUni> -</Name> -<Questions> -<objsur guid="94999104-664c-4847-9ec9-dc53e5a84fae" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="cf93d82f-6a9f-4292-a3bb-f28bbb38e6a5" ownerguid="99dd735d-a030-454c-9873-d8cac25e0cc3"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="cf947f57-1ad3-431e-be09-b4be4b9ecd9f" ownerguid="91aee6e3-5c77-4b16-b448-1f719bcdaea9"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PunctuationForm" guid="cf96252b-cf08-4261-85fb-f63c9a184009"> -<Form> -<Str> -<Run ws="en">mikats</Run> -</Str> -</Form> -</rt> -<rt class="MoStemMsa" guid="cf9950e3-899b-4e55-bf26-4d51ec8ddbb6" ownerguid="dd8e05ab-db1d-4bda-8764-099c15889a64"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="cf9a69b3-ca1b-476e-8968-8bfbb0b68873" ownerguid="aea88426-5f10-4b18-9364-eee04437c4ee"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="cf9ba2c9-cd2b-4718-9de7-d6c170c6e2af" ownerguid="06cb2024-5f7b-467c-b32c-ef4c56030ac0"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">It is now five <o'clock>.; It is five <a.m.>; It is five <p.m.>; It is noon <time>.; ten minutes <after> five.; <half> <past> five.; a <quarter> <to> five.; at ten <of> six.; a <quarter> <of> an hour.; in <half> an hour.; ten minutes <past> <the hour>.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">(In written English we use a semicolon to separate the hour from the minute: 5:00.)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate a particular time?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="cf9bd705-f17b-4a5e-a9df-1d6074f14622" ownerguid="cba3b774-c8be-441f-ae3f-f3d6c83e5274"> -<Form> -<AUni ws="qvm-x-ach">tsuri</AUni> -<AUni ws="qvm-x-acl">tsuri; tsuri; tsure</AUni> -<AUni ws="qvm-x-akh">tsuri</AUni> -<AUni ws="qvm-x-akl">tsuri; tsuri; tsure</AUni> -<AUni ws="qvm-x-ame">tsuri</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="cf9e53e1-6d76-4dc6-bcc8-78cabc189b2d" ownerguid="a94b99e6-d195-405f-9919-77405d1ae217"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="cf9e6ae9-0bdc-448e-b1cb-6625a3b883e4" ownerguid="c81ae194-358e-47e3-a873-8523e2a1f043"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="4cec8764-a40b-4f74-869e-fe76e17fc2bb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="cfa23dd0-8a20-40b2-8e0e-5d67b7d5828e" ownerguid="8fbed974-7d25-44c3-80cb-7d02e4069007"> -<ExampleWords> -<AUni ws="en">have, of, -'s, contain, hold</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something contains something?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="cfa5e99d-7451-45f0-b467-c66c6e65c50e" ownerguid="56cb7acc-108f-44ab-a7dc-d995bf6db8c5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yqui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yqui</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yki</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1b0fe7f9-c0ed-498b-9263-f8c0d31cc569" t="r" /> -</Morph> -<Msa> -<objsur guid="2999bb54-aa09-4eed-affb-cf684bd15cf6" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="cfa72fa4-c17c-4c62-80f5-b9b347e94ba1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cansari</AUni> -<AUni ws="qvm-x-acl">cansari; cansari; cansare</AUni> -<AUni ws="qvm-x-akh">kansari</AUni> -<AUni ws="qvm-x-akl">kansari; kansari; kansare</AUni> -<AUni ws="qvm-x-ame">kansari</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ranciar</AUni> -<AUni ws="qvm-x-acl">+ranciar</AUni> -<AUni ws="qvm-x-akh">+ranciar</AUni> -<AUni ws="qvm-x-akl">+ranciar</AUni> -<AUni ws="qvm-x-ame">+ranciar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.256" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4b659bd4-9256-4c9a-83ae-36549879c809" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ranciar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e95a1edc-d88b-4172-b9a6-ccda111cf8be" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="22743cd1-08fc-4b78-bd4b-7ce6d6923ba9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ranciar 
\entryTyp root 
\gENG go.rancid 
\gSPN ranciar 
\e +ranciar 
\c V1 
\mp +assimilated KQWchange 
\ach cansari 
\akh kansari 
\acl cansari / _# 
\acl cansari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl cansare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kansari / _# 
\akl kansari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kansare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kansari 
\mp +FinalI</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="cfa7cd1c-8673-4ff0-a931-5b80455f4b4b" ownerguid="f9935962-9a14-485d-9bef-bd4a52dd92c1"> -<ExampleWords> -<AUni ws="en">governing body, congress, parliament, legislature, court, cabinet, council, ministry, department</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a governing body?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="cfaa4b99-ed0a-4d70-9c5b-bddda14f3196" ownerguid="5818445e-fd27-4f3a-865c-e9266daa2dd4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">do.business</AUni> -<AUni ws="es">negociar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1ac84c43-3d90-4e7a-8479-7201d28c920a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="cfaaca22-036a-4d40-a836-4add17e1c926" ownerguid="b98d1ecc-60c8-45c5-b939-f45f5d404b01"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="cfb159f7-82f6-4789-b9b4-8f611820f350" ownerguid="73499b8b-76fc-4121-8bfa-1bdebe537259"> -<Abbreviation> -<AUni ws="en">1.6.1.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.994" /> -<DateModified val="2022-9-23 16:55:7.994" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for spiders (phylum Arthropoda, class Arachnida). Note that insects have six legs and spiders have eight legs. However some languages may not distinguish insects from spiders and may use other characteristics to sub-divide the Arthropods.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Spider</AUni> -</Name> -<Questions> -<objsur guid="c2d00e99-b167-482d-a358-ac4af16e7097" t="o" /> -<objsur guid="fbf9a5c7-4edd-4865-8ca3-ff63b2253b51" t="o" /> -<objsur guid="fc54957a-46ec-43f0-9800-33e931037d53" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="cfb17601-16c2-45da-a20c-8a279f397448" ownerguid="fcf5c4f1-5b12-47f7-bb95-43d6ac18df26"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">why</AUni> -<AUni ws="es">por.qué</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="04536ce2-458b-412d-8565-b30ce00ee659" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="cfb70732-dffd-4fa2-b7fd-062b1e1450a8" ownerguid="7c616aef-75fd-43c8-90a5-87ca7fdbcbab"> -<Form> -<AUni ws="qvm-x-ach">siuta</AUni> -<AUni ws="qvm-x-acl">siuta</AUni> -<AUni ws="qvm-x-akh">siwta</AUni> -<AUni ws="qvm-x-akl">siwta</AUni> -<AUni ws="qvm-x-ame">siwta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="cfba3a86-1109-4780-aa5f-ce223fb9735f" ownerguid="38c7bec1-cd8b-4d1c-9d26-a2685955bf94"> -<Form> -<AUni ws="qvm-x-ach">desprecia</AUni> -<AUni ws="qvm-x-acl">desprecia</AUni> -<AUni ws="qvm-x-akh">desprecia</AUni> -<AUni ws="qvm-x-akl">desprecia</AUni> -<AUni ws="qvm-x-ame">desprecia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="cfbbb86a-b988-46d3-aff9-4a13557ebe01"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waraca</AUni> -<AUni ws="qvm-x-acl">waraca</AUni> -<AUni ws="qvm-x-akh">waraka</AUni> -<AUni ws="qvm-x-akl">waraka</AUni> -<AUni ws="qvm-x-ame">waraka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waraka.v</AUni> -<AUni ws="qvm-x-acl">*waraka.v</AUni> -<AUni ws="qvm-x-akh">*waraka.v</AUni> -<AUni ws="qvm-x-akl">*waraka.v</AUni> -<AUni ws="qvm-x-ame">*waraka.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.515" /> -<DateModified val="2022-10-10 21:19:47.693" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ea625a82-27ac-4b52-b0ec-a0674b45ed70" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waraka.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="221804de-7738-4075-bf74-fe378a981b4e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="59128eab-d6e1-4726-9531-ec0eb4ba2b14" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waraka.v 
\entryTyp root 
\gENG sling 
\gSPN 
\e *waraka.v 
\c V2 
\ach waraca 
\akh waraka 
\acl waraca 
\akl waraka 
\ame waraka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="cfbd6379-8a04-4f51-ac78-ccbc155cf3c9" ownerguid="3e1713b2-17fd-41cb-8114-67d15657ebe7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">frolic</AUni> -<AUni ws="es">correr</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="903e74b4-2a51-4678-91f9-b3b1f74e584c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="cfbdcee7-ca83-423e-97c2-4eb7267e6dec"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">linde:ru</AUni> -<AUni ws="qvm-x-acl">linde:ru; linde:ru; linde:ro</AUni> -<AUni ws="qvm-x-akh">linde:ru</AUni> -<AUni ws="qvm-x-akl">linde:ru; linde:ru; linde:ro</AUni> -<AUni ws="qvm-x-ame">linde:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lindero</AUni> -<AUni ws="qvm-x-acl">+lindero</AUni> -<AUni ws="qvm-x-akh">+lindero</AUni> -<AUni ws="qvm-x-akl">+lindero</AUni> -<AUni ws="qvm-x-ame">+lindero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.940" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="78711cfe-9f16-4bbe-aad7-c10e9158ad67" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lindero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7b81da16-463c-4b0e-aa36-bf2b943f173b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="48feeb49-a7f0-4f16-b067-99b822e82ca0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lindero 
\entryTyp root 
\gENG border 
\gSPN lindero 
\e +lindero 
\c N0 
\ach linde:ru 
\akh linde:ru 
\acl linde:ru / _# 
\acl linde:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl linde:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl linde:ru / _# 
\akl linde:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl linde:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame linde:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="cfc33dbe-edb0-403a-8e96-7116428a9396" ownerguid="ad67443c-99ff-474d-9bcb-ddf3d7d8a639"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cake</AUni> -<AUni ws="es">torta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a47d60d0-f727-47a2-8815-f9cf26e51894" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="cfc46645-a4cc-4c4e-86af-b2644599f28a" ownerguid="af6fe2d6-576d-473f-8a32-583779d95d1d"> -<ExampleWords> -<AUni ws="en">convince</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to making someone sure about something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="cfc64b23-684a-4b1c-a89f-61fe3ccbdbae" ownerguid="5ec50c96-f6e8-4a5e-baf7-a70fb47280ee"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="cfcd574e-d9af-4501-8d99-690a0c2c5d61"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">escu:du</AUni> -<AUni ws="qvm-x-acl">escu:du; escu:du; escu:do</AUni> -<AUni ws="qvm-x-akh">escu:du</AUni> -<AUni ws="qvm-x-akl">escu:du; escu:du; escu:do</AUni> -<AUni ws="qvm-x-ame">escu:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+escudo</AUni> -<AUni ws="qvm-x-acl">+escudo</AUni> -<AUni ws="qvm-x-akh">+escudo</AUni> -<AUni ws="qvm-x-akl">+escudo</AUni> -<AUni ws="qvm-x-ame">+escudo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.487" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="183cca06-d629-47c4-8406-bd20aa1012d5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+escudo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8083687f-c059-4661-9c06-30479b8c2b24" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bb4a2c8f-e8f6-4023-a0bf-626b8edf3af8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +escudo 
\entryTyp root 
\gENG shield 
\gSPN escudo 
\e +escudo 
\c N0 
\ach escu:du 
\akh escu:du 
\acl escu:du / _# 
\acl escu:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl escu:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl escu:du / _# 
\akl escu:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl escu:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame escu:du</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="cfd2c49b-786e-40bd-80dc-ed41e7f95625" ownerguid="3aad1996-7180-45d0-a76d-6580ea53ab20"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a654a1f1-4e67-4c58-a03e-bbbdd88d7bff" t="r" /> -</Morph> -<Msa> -<objsur guid="44aa6f68-7289-4246-8bc4-0e6ec4046fb2" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="cfd51236-7258-4292-ac51-a3de33ff28ea" ownerguid="f786a75d-c48a-4863-ba03-36ed17df57bb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">totter</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="90a16ab4-09de-4d2a-b450-357f9d83c943" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="cfd7bb61-262b-4212-85b0-698ad7c2a51f" ownerguid="3428d24a-3bf7-40ad-84c4-5d5372be9647"> -<Form> -<AUni ws="qvm-x-ach">tagcu</AUni> -<AUni ws="qvm-x-acl">tagcu</AUni> -<AUni ws="qvm-x-akh">taqku</AUni> -<AUni ws="qvm-x-akl">taqku</AUni> -<AUni ws="qvm-x-ame">taqku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e1-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="8378f21c-cf54-437a-9d41-a303c764b326" t="r" /> -</PhoneEnv> -</rt> -<rt class="WfiMorphBundle" guid="cfda0e77-354d-4ad4-a059-2c46d51830e2" ownerguid="bbfd32d9-d744-46a2-addd-823f246ed04f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d1685fdc-96d8-4baf-9cb8-523863adb67f" t="r" /> -</Morph> -<Msa> -<objsur guid="434f36b9-aa05-46d6-be7e-89240d9e2c4d" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="cfda2dd1-184c-4b49-b95a-a412bdf5b542"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ruyru</AUni> -<AUni ws="qvm-x-acl">ruyru; ruyru; ruyro</AUni> -<AUni ws="qvm-x-akh">ruyru</AUni> -<AUni ws="qvm-x-akl">ruyru; ruyru; ruyro</AUni> -<AUni ws="qvm-x-ame">ruyru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ruyru</AUni> -<AUni ws="qvm-x-acl">*ruyru</AUni> -<AUni ws="qvm-x-akh">*ruyru</AUni> -<AUni ws="qvm-x-akl">*ruyru</AUni> -<AUni ws="qvm-x-ame">*ruyru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.409" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4d498227-0038-4097-879e-8fea2b1f51b4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ruyru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aa8dfd98-df13-4168-a30a-7fe16c13c30e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e02e298e-ad6b-444b-a842-4674cb0d1668" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ruyru 
\entryTyp root 
\gENG round 
\gSPN redondo 
\e *ruyru 
\c N0 
\ach ruyru 
\akh ruyru 
\acl ruyru / _# 
\acl ruyru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ruyro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ruyru / _# 
\akl ruyru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ruyro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ruyru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="cfdbf5cb-4a4f-4fd1-a930-1e2664b46eef" ownerguid="4e23b037-0547-4650-89c3-2b259b637fb6"> -<ExampleWords> -<AUni ws="en">monthly, every month, each month</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used to indicate that something happens every month?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="cfdcb880-661d-4357-9edc-a2e0020abc3e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">libros</AUni> -<AUni ws="qvm-x-acl">libros</AUni> -<AUni ws="qvm-x-akh">libros</AUni> -<AUni ws="qvm-x-akl">libros</AUni> -<AUni ws="qvm-x-ame">libros</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+libros</AUni> -<AUni ws="qvm-x-acl">+libros</AUni> -<AUni ws="qvm-x-akh">+libros</AUni> -<AUni ws="qvm-x-akl">+libros</AUni> -<AUni ws="qvm-x-ame">+libros</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.92" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d743d5a2-3181-46b7-9e63-c0f6ad7c7691" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+libros</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bd0fbcbe-e809-4713-9a9a-ac3b0b5195e3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="91374a73-60a2-4ccb-b228-0cfb53d7b7a4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +libros 
\entryTyp root 
\gENG books 
\gSPN libros 
\e +libros 
\c NOSUFF 
\ach libros 
\akh libros 
\acl libros 
\akl libros 
\ame libros</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="cfdf9c6c-156a-4a17-b3aa-0fa620edd3e7" ownerguid="27048124-c204-4585-9997-c51728f085d6"> -<ExampleWords> -<AUni ws="en">thanks, thank you, thankfulness, thanksgiving, acknowledgement</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the act of expressing thanks?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="cfe23220-9fde-40af-8e12-8b961bfcb921"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">2</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="cfe55c81-b450-41e1-90c8-1f3b9bb5d7b6" ownerguid="aa8d812b-7c13-414a-ad02-a4240d2cef68"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Come here!; Get over here!</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(2) What do people say when they want someone to come?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="cfe6168a-1d66-4236-82a6-e60eafbccf22" ownerguid="3ce6009b-a7b6-411d-9f94-90312fe5f7d7"> -<Form> -<AUni ws="qvm-x-ach">wegru</AUni> -<AUni ws="qvm-x-acl">wegru; wegru; wegro</AUni> -<AUni ws="qvm-x-akh">weqru</AUni> -<AUni ws="qvm-x-akl">weqru; weqru; weqro</AUni> -<AUni ws="qvm-x-ame">wiqru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="cfe78aef-0fa3-4f9d-ad61-0a3461874c36" ownerguid="d2d0a2a0-517b-4cdd-b099-473e45565348"> -<Form> -<AUni ws="qvm-x-ach">huelga</AUni> -<AUni ws="qvm-x-acl">huelga</AUni> -<AUni ws="qvm-x-akh">huelga</AUni> -<AUni ws="qvm-x-akl">huelga</AUni> -<AUni ws="qvm-x-ame">huelga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="cfe980aa-c398-4271-9793-bdcee7d853f7" ownerguid="28c8e92f-eb09-47be-a59e-0d376240bfb2"> -<Form> -<AUni ws="qvm-x-ach">wawayshu</AUni> -<AUni ws="qvm-x-acl">wawayshu; wawayshu; wawaysho</AUni> -<AUni ws="qvm-x-akh">wawayshu</AUni> -<AUni ws="qvm-x-akl">wawayshu; wawayshu; wawaysho</AUni> -<AUni ws="qvm-x-ame">wawayshu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="cfe9b0c6-238f-495b-8a73-709a6c2e551e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">toldu; toldo</AUni> -<AUni ws="qvm-x-acl">toldu; toldu; toldo</AUni> -<AUni ws="qvm-x-akh">toldu; toldo</AUni> -<AUni ws="qvm-x-akl">toldu; toldu; toldo</AUni> -<AUni ws="qvm-x-ame">toldu; toldo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+toldo.n</AUni> -<AUni ws="qvm-x-acl">+toldo.n</AUni> -<AUni ws="qvm-x-akh">+toldo.n</AUni> -<AUni ws="qvm-x-akl">+toldo.n</AUni> -<AUni ws="qvm-x-ame">+toldo.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.944" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c08f95ae-06c0-448c-beee-e391713f47a1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+toldo.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="142b80f3-fdf2-4197-803b-a5f1ff3fdaa9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5b317f6e-ffb9-4f59-a8ee-45b1984b4f30" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +toldo.n 
\entryTyp root 
\gENG tent 
\gSPN 
\e +toldo.n 
\c N0 
\ach toldu / ~_# 
\ach toldo / _# 
\akh toldu / ~_# 
\akh toldo / _# 
\acl toldu / ~_# 
\acl toldu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl toldo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl toldu / ~_# 
\akl toldu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl toldo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame toldu / ~_# 
\ame toldo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="cfedbad1-b307-49ca-935e-d3b04126c17b" ownerguid="91ddf495-a28b-4a32-90dc-6f997d0cd069"> -<ExampleWords> -<AUni ws="en">stringed instrument, strings, piano, harp, guitar, banjo, violin, fiddle, viola, cello, bass fiddle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the types of instruments that have strings that you pluck?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="cff1e330-3d57-47e3-91b0-c77a4b9058fe" ownerguid="b8bc2a9f-5839-4462-a733-aa02d69fdc19"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">nape</AUni> -<AUni ws="es">nuca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f0a3f9d6-62b8-477a-8c17-67f7304c7da8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="cff80d8f-009a-439e-81f2-43648b150cfb" ownerguid="0644f4da-c9fe-4239-bbe5-6efc85f98968"> -<ExampleWords> -<AUni ws="en">dig, plow, grade, level</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to moving dirt?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="cff86258-86e1-4642-9a1c-c6c512044967" ownerguid="eb00b4c2-5b87-4ef8-9548-800fc5c9b524"> -<ExampleWords> -<AUni ws="en">vulnerable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words describe something that can be damaged easily?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="cffd12d0-f19a-4b7e-ad95-1be48a8e9b25" ownerguid="20ff7b21-2af8-4d28-ac7c-78ddafcec7ba"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">trap</AUni> -<AUni ws="es">trampa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6698511c-2a1a-4cfd-a3d4-2ef8b20f2c70" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d002f798-6e8a-4ba3-acda-96fa93df5f59" ownerguid="9ed42115-8532-4f99-b0c0-36abfe9db652"> -<ExampleWords> -<AUni ws="en">low status, low estate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to low status?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d004b129-770a-4ed6-a286-d2920d1fced7" ownerguid="29a8ebbe-ebc4-4295-b6af-84331d019361"> -<ExampleWords> -<AUni ws="en">spelling, spell, misspell</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the way a word should be written?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="d0071fec-3ab9-48bd-821c-97c547076efe" ownerguid="0289cf5c-a8e9-47a6-b3d2-6bf64efce469"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 19.8 Yachacushgannog cawag runaga imalapagpis ütil car cushishgami cawan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="d0095682-23aa-4829-b3a6-32c7f76868f0" ownerguid="56984b2b-3417-49b4-a082-1a383551a9e9"> -<ExampleWords> -<AUni ws="en">labor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to the process leading up to birth?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d00a0361-c095-4245-8dfa-6ba3eea9f462" ownerguid="abb362dd-be9e-4508-a818-32afb7b9acd1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d00b53b4-6827-4f3a-83e5-6fbb10cba07f" ownerguid="fc82fcec-d03c-4fb0-bf62-714c71754402"> -<ExampleWords> -<AUni ws="en">adulthood, maturity, prime, adult life, midlife crisis, over the hill, middle age, middle-aged</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to time periods of adulthood?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d00b78de-ddc9-460e-be71-5924646843ce" ownerguid="3aab9c42-b696-4440-8e28-8380f5d25199"> -<ExampleWords> -<AUni ws="en">extreme, hard-line, far-left, far-right, idealistic, out in left field</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe strong opinions and beliefs, which most people regard as extreme?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d00bdac4-098c-4a8c-9e91-cabdfd6a2205"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wanwanya; wanwanya:</AUni> -<AUni ws="qvm-x-acl">wanwanya; wanwanya:</AUni> -<AUni ws="qvm-x-akh">wanwanya; wanwanya:</AUni> -<AUni ws="qvm-x-akl">wanwanya; wanwanya:</AUni> -<AUni ws="qvm-x-ame">wanwanya; wanwanya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wanwanya:</AUni> -<AUni ws="qvm-x-acl">*wanwanya:</AUni> -<AUni ws="qvm-x-akh">*wanwanya:</AUni> -<AUni ws="qvm-x-akl">*wanwanya:</AUni> -<AUni ws="qvm-x-ame">*wanwanya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.485" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="20e3ec5c-0a75-4d9b-8c95-a1666082acab" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wanwanya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="11c1b1cd-08a6-446f-95e5-24fd20b36b4d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7ca87077-8bc8-4986-b9f0-b79b71a36b62" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wanwanya: 
\entryTyp root 
\gENG be.dark 
\gSPN ser.oscuro 
\e *wanwanya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach wanwanya foreshortened 
\ach wanwanya: 
\akh wanwanya foreshortened 
\akh wanwanya: 
\acl wanwanya foreshortened 
\acl wanwanya: 
\akl wanwanya foreshortened 
\akl wanwanya: 
\ame wanwanya foreshortened 
\ame wanwanya:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d00f2688-a3c3-4348-880e-db758bab63a0" ownerguid="cde96694-79e5-44af-8d38-d988d1938e5f"> -<ExampleWords> -<AUni ws="en">frame, erect a wall, put up siding, plaster, mud and wattle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to constructing a wall?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="d011f655-b788-4d50-be95-f22f645e9459"> -<Analyses> -<objsur guid="53939045-85a6-421c-a7a9-ac39f48bb604" t="o" /> -</Analyses> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Kananpita</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="d01220e8-ecc6-4618-a932-18075db50dfb" ownerguid="f2d823a1-804a-4388-b911-3bcb871b29c8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yarpä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yarpä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yarpä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yarpä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yarpaa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a7f21528-35d2-49ec-9070-a385dd45427e" t="r" /> -</Morph> -<Msa> -<objsur guid="19ab5cf1-1864-4db0-94a6-3ed04ddf2ef7" t="r" /> -</Msa> -<Sense> -<objsur guid="b76c1d77-e3dc-4a8b-9cf7-6fb696740bed" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="d0131ae8-e30a-4628-b07c-808ccc852cc7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">musqui</AUni> -<AUni ws="qvm-x-acl">musqui; musque</AUni> -<AUni ws="qvm-x-akh">muski</AUni> -<AUni ws="qvm-x-akl">muski; muske</AUni> -<AUni ws="qvm-x-ame">muski</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*muski</AUni> -<AUni ws="qvm-x-acl">*muski</AUni> -<AUni ws="qvm-x-akh">*muski</AUni> -<AUni ws="qvm-x-akl">*muski</AUni> -<AUni ws="qvm-x-ame">*muski</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.517" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="86adba0e-55d6-4f8a-bbc1-da6ea235c05d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*muski</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e182e5b4-3bf1-4d09-9dc6-67078af831ee" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7159013a-7083-4732-836a-84831613a8ed" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *muski 
\entryTyp root 
\gENG sniff 
\gSPN oler 
\e *muski 
\c V2 
\mp +FinalI 
\ach musqui 
\akh muski 
\acl musqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl musque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl muski +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl muske +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame muski</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d014a4fa-c994-4fc4-ae4d-cbb9039aae7f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">marzu; marzo</AUni> -<AUni ws="qvm-x-acl">marzu; marzu; marzo</AUni> -<AUni ws="qvm-x-akh">marzu; marzo</AUni> -<AUni ws="qvm-x-akl">marzu; marzu; marzo</AUni> -<AUni ws="qvm-x-ame">marzu; marzo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+marzo</AUni> -<AUni ws="qvm-x-acl">+marzo</AUni> -<AUni ws="qvm-x-akh">+marzo</AUni> -<AUni ws="qvm-x-akl">+marzo</AUni> -<AUni ws="qvm-x-ame">+marzo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.346" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="15315290-06f5-4bad-8f8d-3a37eee014ea" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+marzo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4e07933c-158b-49c9-9671-f2b2e9894b3a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="96251bde-c567-4e99-a388-c537792414f2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +marzo 
\entryTyp root 
\gENG March 
\gSPN marzo 
\e +marzo 
\c N0 
\ach marzu / ~_# 
\ach marzo / _# 
\akh marzu / ~_# 
\akh marzo / _# 
\acl marzu / ~_# 
\acl marzu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl marzo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl marzu / ~_# 
\akl marzu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl marzo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame marzu / ~_# 
\ame marzo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d017730f-2c07-48dc-924a-9b3eaf09ea8a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">acta</AUni> -<AUni ws="qvm-x-acl">acta</AUni> -<AUni ws="qvm-x-akh">acta</AUni> -<AUni ws="qvm-x-akl">acta</AUni> -<AUni ws="qvm-x-ame">acta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+acta</AUni> -<AUni ws="qvm-x-acl">+acta</AUni> -<AUni ws="qvm-x-akh">+acta</AUni> -<AUni ws="qvm-x-akl">+acta</AUni> -<AUni ws="qvm-x-ame">+acta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.629" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="883e3b07-eff3-4bda-b80e-f34355d19271" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+acta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e4e79d36-23fb-4d5b-bdf6-7e6e4598fbd3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e674d62b-82e3-486d-be8d-b1e72168bd62" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +acta 
\entryTyp root 
\gENG act 
\gSPN acta 
\e +acta 
\c N0 
\ach acta 
\akh acta 
\acl acta 
\akl acta 
\ame acta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="d01a1904-29be-4278-8b38-7da94c528d9c" ownerguid="98e38521-8531-427b-b04e-65db6679710e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">go.up</AUni> -<AUni ws="es">subir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d8234bfc-9f87-41ed-8c78-92a562643369" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d01b2bad-e0c9-486f-a9a2-b7c30cf9b3c8" ownerguid="390ad7fc-8360-4eae-8736-3aedc15ae659"> -<ExampleWords> -<AUni ws="en">globe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What is a model of the earth called?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d01e5464-daf3-4fa8-b38f-5bf1d1d2ae6d" ownerguid="a80f12aa-c30d-4892-978a-b076985742d5"> -<ExampleWords> -<AUni ws="en">shoulder, chest, breast, bust, nipple, teat, bosom, stomach, belly, tummy, navel, belly button, back, lower back, rear end, buttock, bottom, behind, side, waist, middle, hip, girdle, groin, hollow part of hip, anus, lumbar, midriff, pectoral, pubis, thorax, thoracic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the parts of the torso?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="d01f1c51-522e-4b35-81b3-00577dbfa3bd" ownerguid="4bf411b7-2b5b-4673-b116-0e6c31fbd08a"> -<Abbreviation> -<AUni ws="en">8.3.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.609" /> -<DateModified val="2022-9-23 16:55:8.609" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to color.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79G Color</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Color</AUni> -</Name> -<Questions> -<objsur guid="35f7b36d-56e7-44ef-a104-261f7dd385e7" t="o" /> -<objsur guid="dc6d7dca-0b31-48fc-a2c9-a5cf4fc9e0c5" t="o" /> -<objsur guid="9c8fc636-f926-41cc-a098-bf31d9ce1912" t="o" /> -<objsur guid="b7ce223c-f52a-4198-acb7-59d8713864d6" t="o" /> -<objsur guid="0e70c432-b774-4109-b1b8-579916da2c32" t="o" /> -<objsur guid="84c910de-b5d6-4e23-84ff-2c8b703ae5a9" t="o" /> -<objsur guid="ecaf3710-8379-4284-9c49-2fd0c5dfebff" t="o" /> -<objsur guid="524872ef-52f2-42ec-86d0-61acaaff8fda" t="o" /> -<objsur guid="79ecb7f5-b192-4573-ae03-e92690e7b57c" t="o" /> -<objsur guid="f0f8ce00-9998-42f3-a1e6-d7395f6c667e" t="o" /> -<objsur guid="6e27bf53-0fe0-438a-98de-d0ba6588c518" t="o" /> -<objsur guid="6967f639-1996-402e-884e-b9e987c7e219" t="o" /> -<objsur guid="2c50cc83-b690-47f7-84a7-5a205a4f1293" t="o" /> -<objsur guid="c2e04ebe-8e21-45a1-b5c7-d0a6f7e02409" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="7adf468c-b93a-4b04-8af6-4c691122a4eb" t="o" /> -<objsur guid="ff73fb69-7dac-43e2-876b-0ead264c3f2d" t="o" /> -<objsur guid="538a4c20-01d7-40b9-b462-ae279ff3dc27" t="o" /> -<objsur guid="536a2d3e-2303-43bc-bf53-379131eb5730" t="o" /> -<objsur guid="16de6eab-afab-4ba4-a279-cf0ba4d7c9e6" t="o" /> -<objsur guid="a8b3fa0c-077e-4c0d-b4cc-36dcfbdcb4d4" t="o" /> -<objsur guid="97ed5af8-29ca-428d-8ac5-c61b61a963fd" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="d01f7c06-a94f-4168-a933-bc2ed34f095c" ownerguid="4725c8d5-b4bc-4f6c-8ca9-75e970281f74"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">employee</AUni> -<AUni ws="es">peón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bd513100-5896-4232-a933-a4bb8acdbf55" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d0203de4-d368-475c-8e2a-8936e8987ee5" ownerguid="83ad737f-5596-41a1-8eec-010df8debc33"> -<Form> -<AUni ws="qvm-x-ach">mönu</AUni> -<AUni ws="qvm-x-acl">mönu; mönu; möno</AUni> -<AUni ws="qvm-x-akh">mönu</AUni> -<AUni ws="qvm-x-akl">mönu; mönu; möno</AUni> -<AUni ws="qvm-x-ame">mönu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d0232c48-944c-44e3-b933-321acc754bf4" ownerguid="afa77a2a-8b0f-4a39-91bc-040e90ffbb3a"> -<ExampleWords> -<AUni ws="en">happy, cheerful, contented, jolly, jovial, have a happy/cheerful/sunny disposition</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe a person who usually feels happy?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d024e342-8501-467b-89a8-cc86173c0060"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pagta</AUni> -<AUni ws="qvm-x-acl">pagta</AUni> -<AUni ws="qvm-x-akh">paqta</AUni> -<AUni ws="qvm-x-akl">paqta</AUni> -<AUni ws="qvm-x-ame">paqta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*paqta.r</AUni> -<AUni ws="qvm-x-acl">*paqta.r</AUni> -<AUni ws="qvm-x-akh">*paqta.r</AUni> -<AUni ws="qvm-x-akl">*paqta.r</AUni> -<AUni ws="qvm-x-ame">*paqta.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.709" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aef00236-946f-4474-b7ba-4b05fbc57e42" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*paqta.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7e5fb9ac-e1b1-43a3-838b-fa9812e11eb3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="05e1979f-40c1-444a-95ac-97e29d20c0a4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *paqta.r 
\entryTyp root 
\gENG let's.see/careful 
\gSPN a.ver/cuidado 
\e *paqta.r 
\c R0 
\ach pagta 
\akh paqta 
\acl pagta 
\akl paqta 
\ame paqta 
\mcc *paqta.r / ~_ 3P.V</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="d0279dfd-667e-41e3-b6ec-9b96e9770ba9" ownerguid="ae782d96-cc83-495f-8500-2d483d9a060f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d028f101-246a-4c77-affc-8450c3ece571" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<ExampleWords> -<AUni ws="en">it's a pity, it's a shame, too bad, unfortunately, sadly, regrettably, it's unfortunate, it's sad, more's the pity, unhappily, I'm sorry, sorry to hear, sorry (that), wish that ... not (something hadn't happened), tragically, feel sorry for someone</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What do people say when something bad happens and they want to say they are sad about it?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d02a2605-f17a-4468-b495-570e1ec3872e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sema:na</AUni> -<AUni ws="qvm-x-acl">sema:na</AUni> -<AUni ws="qvm-x-akh">sema:na</AUni> -<AUni ws="qvm-x-akl">sema:na</AUni> -<AUni ws="qvm-x-ame">sema:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+semana</AUni> -<AUni ws="qvm-x-acl">+semana</AUni> -<AUni ws="qvm-x-akh">+semana</AUni> -<AUni ws="qvm-x-akl">+semana</AUni> -<AUni ws="qvm-x-ame">+semana</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.490" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="05ceaabb-68bd-4867-94cb-52e5224e28e2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+semana</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1e1df59e-ea51-46bc-8b93-9746ce198201" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6d326694-1ee9-4a96-9ad5-c9d9b1d8add8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +semana 
\entryTyp root 
\gENG week 
\gSPN semana 
\e +semana 
\c N0 
\ach sema:na 
\akh sema:na 
\acl sema:na 
\akl sema:na 
\ame sema:na</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="d02b34ef-98cd-4db1-8097-921725ce12ed" ownerguid="409c6739-bef4-4237-b7d7-883aabaaf0ce"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ivory</AUni> -<AUni ws="es">marfil</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7f11aea2-0583-4947-8d46-12878fccc34b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d02eccd7-7f71-4a20-abd2-921242c76dad" ownerguid="7bf05f4e-909f-40ca-b742-9be21eba9fbb"> -<ExampleWords> -<AUni ws="en">can</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) ability, physical: English: 'Hortense can swim the English Channel'.</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="d030f0c7-31a3-47da-be35-46f1eba63ae9" ownerguid="474aa982-8350-47e2-a983-e1e2bce9d928"> -<Abbreviation> -<AUni ws="en">3.4.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.123" /> -<DateModified val="2022-9-23 16:55:8.123" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to liking something or someone, or liking to do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Like, love</AUni> -</Name> -<Questions> -<objsur guid="fe2b7e93-b128-431f-8993-75152e998231" t="o" /> -<objsur guid="bc3a951a-fbae-4cb6-819a-0478e76ec0c2" t="o" /> -<objsur guid="ba4fd4b7-bc9c-4de2-b98d-90b454d48b74" t="o" /> -<objsur guid="f0182dea-a03b-4a36-b752-d711baa7a8bd" t="o" /> -<objsur guid="ea779270-6dee-47fc-a1c6-fb049ba810dd" t="o" /> -<objsur guid="010d2f68-985e-449e-8b44-f3b48064a916" t="o" /> -<objsur guid="8c92643c-307f-4416-a088-d1be838ac2b9" t="o" /> -<objsur guid="dd500a60-9e6a-4fdb-940c-d306da444cc6" t="o" /> -<objsur guid="7c0d4203-4f3a-492c-92f6-d544eedb89d5" t="o" /> -<objsur guid="740c4bdb-79eb-49ee-acc2-4aa2c87624bd" t="o" /> -<objsur guid="386951ce-4ba2-49ea-93b9-77d39d642f49" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="50eb32a2-6dbb-4b7c-b370-aacdcfeaf5fc" t="o" /> -<objsur guid="ce6d5e60-7cf6-46ab-bd02-453ec7b04f7a" t="o" /> -<objsur guid="ef409fc6-bd89-4cc6-ade5-abb882272313" t="o" /> -<objsur guid="ac550d1f-ec74-46a8-bf81-7832ace533ee" t="o" /> -<objsur guid="e54cd744-d106-4bcf-bd07-b8783c075c21" t="o" /> -<objsur guid="f0fdbdfa-094e-4bec-ae19-af23d2c02ed6" t="o" /> -<objsur guid="4aedd6d3-8f4b-4986-8d51-b0ace0137bf0" t="o" /> -<objsur guid="46b13a77-fe12-49fb-afbe-826480ec97f4" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="d0333bc7-dafd-4e11-a002-541dc10caab4" ownerguid="6ee14639-c536-42c1-b392-f94736f9575a"> -<Form> -<AUni ws="qvm-x-ach">mala</AUni> -<AUni ws="qvm-x-acl">mala</AUni> -<AUni ws="qvm-x-akh">mala</AUni> -<AUni ws="qvm-x-akl">mala</AUni> -<AUni ws="qvm-x-ame">mala</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d0368df7-dfd5-437a-967a-944cf3a8983b" ownerguid="b158fe11-5af2-4467-bbc0-cc1aee766592"> -<ExampleWords> -<AUni ws="en">event, experience, affair, occurrence, phenomenon, occasion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something that has happened?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d0377a5a-3c8d-49c0-a983-d707b2c6f393" ownerguid="50c1a392-2928-407a-8306-3c70141e375e"> -<ExampleWords> -<AUni ws="en">future (n), soon, in the near future, in the distant future, in our children's time, will (be/do/happen), shall, would</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to refer to the future?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d03790bf-72fb-40c9-ae8a-72897e4d6724" ownerguid="5c38879f-8df0-483b-a563-6b6c2de16a5d"> -<Form> -<AUni ws="qvm-x-ach">malu</AUni> -<AUni ws="qvm-x-acl">malu; malo</AUni> -<AUni ws="qvm-x-akh">malu</AUni> -<AUni ws="qvm-x-akl">malu; malo</AUni> -<AUni ws="qvm-x-ame">malu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="d039a31f-f48a-4bbc-af01-7725654283d6" ownerguid="a49b127c-31dc-438c-bf17-90b0912f7583"> -<Form> -<AUni ws="qvm-x-ach">esti; este</AUni> -<AUni ws="qvm-x-acl">esti; esti; este</AUni> -<AUni ws="qvm-x-akh">esti; este</AUni> -<AUni ws="qvm-x-akl">esti; esti; este</AUni> -<AUni ws="qvm-x-ame">esti; este</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d039c5f7-4519-40d7-ae28-2dbbd3822be0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">garacha; garacha:</AUni> -<AUni ws="qvm-x-acl">garacha; garacha:</AUni> -<AUni ws="qvm-x-akh">qaracha; qaracha:</AUni> -<AUni ws="qvm-x-akl">qaracha; qaracha:</AUni> -<AUni ws="qvm-x-ame">qaracha; qaracha:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qaratra:</AUni> -<AUni ws="qvm-x-acl">*qaratra:</AUni> -<AUni ws="qvm-x-akh">*qaratra:</AUni> -<AUni ws="qvm-x-akl">*qaratra:</AUni> -<AUni ws="qvm-x-ame">*qaratra:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.104" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b7ea7c44-e15e-4771-addc-03166af8cfe4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qaratra:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ae811a67-f7f2-4697-be8e-b5574bbd196e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aeb1401c-7ad6-466e-b6bc-816665d786bb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qaratra: 
\entryTyp root 
\gENG drag 
\gSPN arrastrar 
\e *qaratra: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach garacha foreshortened 
\ach garacha: 
\akh qaracha foreshortened 
\akh qaracha: 
\acl garacha foreshortened 
\acl garacha: 
\akl qaracha foreshortened 
\akl qaracha: 
\ame qaracha foreshortened 
\ame qaracha: 
\i JHN 21.11 Tsaynog niptinmi Simón Pedro büquiman witsarcur redta garachämorgan pescäducunata shuntananpag. 
\mcc *qaratra: / ~_ INF GEN</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="d03bae5b-d166-4baa-b2fc-ded1ef9ca9d1" ownerguid="1583f96b-9e4b-4f0d-af86-7189ced2a282"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">12CND</AUni> -<AUni ws="es">12COND</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="568dffe2-a0c1-4161-9f29-3dd1b06dbb2c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d03c4ea7-fbee-43e4-bec5-5658f1a76329" ownerguid="6262e304-a954-41ac-bac6-3e066313f85c"> -<Form> -<AUni ws="qvm-x-ach">arrepenti</AUni> -<AUni ws="qvm-x-acl">arrepenti; arrepente</AUni> -<AUni ws="qvm-x-akh">arrepenti</AUni> -<AUni ws="qvm-x-akl">arrepenti; arrepente</AUni> -<AUni ws="qvm-x-ame">arrepenti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d03caffa-ab1d-485b-87dc-e51d9b81c8f0" ownerguid="4e7a6dfe-3654-4ca1-874d-02424581b774"> -<ExampleWords> -<AUni ws="en">bottomless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is very deep?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d03e0238-8dd1-4b6c-af7f-65093517b71e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maja</AUni> -<AUni ws="qvm-x-acl">maja</AUni> -<AUni ws="qvm-x-akh">maja</AUni> -<AUni ws="qvm-x-akl">maja</AUni> -<AUni ws="qvm-x-ame">maha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*masa.n</AUni> -<AUni ws="qvm-x-acl">*masa.n</AUni> -<AUni ws="qvm-x-akh">*masa.n</AUni> -<AUni ws="qvm-x-akl">*masa.n</AUni> -<AUni ws="qvm-x-ame">*masa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.346" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f0721e7b-5943-42ee-ac2b-12df687fa1a2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*masa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e9c0ead2-6591-4da3-9f59-1b2746179c38" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5579819b-8c37-476d-8d0a-5115fb9005cb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *masa.n 
\entryTyp root 
\gENG spouse 
\gSPN esposo/a 
\e *masa.n 
\c N0 
\ach maja 
\akh maja 
\acl maja 
\akl maja 
\ame maha</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="d03ec8bb-381c-4612-9ae3-8285e0cc8548" ownerguid="dcf6e4ac-e0d3-4b91-b4ee-7971012bbd4b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PhCode" guid="d040a217-6f57-4e7b-9be6-f99bb82ab98f" ownerguid="f5ae79dc-30ed-408a-9961-8c213feee29b"> -<Representation> -<AUni ws="qvm-x-ach">ü</AUni> -<AUni ws="qvm-x-acl">ü</AUni> -<AUni ws="qvm-x-akh">ü</AUni> -<AUni ws="qvm-x-akl">ü</AUni> -<AUni ws="qvm-x-ame">uu</AUni> -</Representation> -</rt> -<rt class="LexEntry" guid="d04169af-b4d1-49fd-9c68-d5f6722d6f74"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">camtsa</AUni> -<AUni ws="qvm-x-acl">camtsa</AUni> -<AUni ws="qvm-x-akh">kamtsa</AUni> -<AUni ws="qvm-x-akl">kamtsa</AUni> -<AUni ws="qvm-x-ame">kamtsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kamcha.v</AUni> -<AUni ws="qvm-x-acl">*kamcha.v</AUni> -<AUni ws="qvm-x-akh">*kamcha.v</AUni> -<AUni ws="qvm-x-akl">*kamcha.v</AUni> -<AUni ws="qvm-x-ame">*kamcha.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.922" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f667c73d-e166-4ecc-bf1c-7f41b54dcdfa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kamcha.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8421f9e9-0ff1-4e1b-8770-71ebba71aba4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="105c2861-2aef-4470-ba1b-bd98fd37c850" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kamcha.v 
\entryTyp root 
\gENG 
\gSPN morir 
\e *kamcha.v 
\c V1 
\ach camtsa 
\akh kamtsa 
\acl camtsa 
\akl kamtsa 
\ame kamtsa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="d0434166-0a0e-4a19-ad39-cc134cbb79e6" ownerguid="f144e812-3c2f-49e5-a07a-54be78e9dec4"> -<Form> -<AUni ws="qvm-x-ach">acapa</AUni> -<AUni ws="qvm-x-acl">acapa</AUni> -<AUni ws="qvm-x-akh">akapa</AUni> -<AUni ws="qvm-x-akl">akapa</AUni> -<AUni ws="qvm-x-ame">akapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="d0437b7e-1c83-43a3-9722-177cb38c67a3" ownerguid="90f57cb3-1a42-4c45-808d-e9909d9396bd"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="d0472fb7-ea5c-4e9a-81d4-f29dfad29d0e" ownerguid="6e83c471-0fe8-4641-8ecf-68b63df29ab7"> -<ExampleWords> -<AUni ws="en">shell, skin, pare, peel, husk</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to removing the shell or skin from food?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d04923f6-42c4-40cd-b2b4-0b9f79447650" ownerguid="33664c68-9d1b-4feb-a0fc-1d42b54914f5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="582c5a50-972f-431e-be12-c2a4efd47b54" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">food</AUni> -<AUni ws="es">alimento</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="db0214b2-f988-4d05-ac84-289569445868" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="d04d074f-2666-4972-b215-c67ea46daffb" ownerguid="bc144b7d-c87d-4f36-a662-01a632e3e592"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">respectul</AUni> -<AUni ws="es">respitoso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aad1bd84-9f36-4cc3-a61b-1536175597d4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d04e78e4-b792-4930-a70e-36208d3b0b67" ownerguid="9ba9f3ff-0c6e-466d-ad92-67c97b96fcb1"> -<Form> -<AUni ws="qvm-x-ach">mediu</AUni> -<AUni ws="qvm-x-acl">mediu; mediu; medio</AUni> -<AUni ws="qvm-x-akh">mediu</AUni> -<AUni ws="qvm-x-akl">mediu; mediu; medio</AUni> -<AUni ws="qvm-x-ame">mediu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d05ad2b6-0a5d-413a-9328-74d7cd42e359" ownerguid="7bfd1ead-4cef-47a4-84f3-9fab023d7423"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">feather</AUni> -<AUni ws="es">pluma</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bbd17567-fd7a-4999-b920-ea247e8cf787" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="d05f0f83-ded7-4f84-aa9d-291eb899ed0a" ownerguid="e6934a73-27f6-4bc8-a08d-4c5a2d3b330c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">special</AUni> -<AUni ws="es">especial</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8fde22ee-01be-4f30-b096-98427742ab0c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="d060e7e7-cb18-4c8a-9031-1ce238a683bc" ownerguid="26d1a0d6-e385-4db2-9ea4-a08f41abe679"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="d0658d37-b5fc-4aed-b804-136efb6886cf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">costu:ra</AUni> -<AUni ws="qvm-x-acl">costu:ra</AUni> -<AUni ws="qvm-x-akh">costu:ra</AUni> -<AUni ws="qvm-x-akl">costu:ra</AUni> -<AUni ws="qvm-x-ame">costu:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+costura</AUni> -<AUni ws="qvm-x-acl">+costura</AUni> -<AUni ws="qvm-x-akh">+costura</AUni> -<AUni ws="qvm-x-akl">+costura</AUni> -<AUni ws="qvm-x-ame">+costura</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.208" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="50697138-b662-402d-b87e-82af5a4feaf2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+costura</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="541d0edc-cc5b-44bb-a61c-217ffc4e589a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c78f4d44-a9cc-46b3-931f-fba9aaab7f47" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +costura 
\entryTyp root 
\gENG seam 
\gSPN costura 
\e +costura 
\c N0 
\ach costu:ra 
\akh costu:ra 
\acl costu:ra 
\akl costu:ra 
\ame costu:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d06628e5-7cc3-40db-b99a-459eec99e731"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">significa</AUni> -<AUni ws="qvm-x-acl">significa</AUni> -<AUni ws="qvm-x-akh">significa</AUni> -<AUni ws="qvm-x-akl">significa</AUni> -<AUni ws="qvm-x-ame">significa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+significar</AUni> -<AUni ws="qvm-x-acl">+significar</AUni> -<AUni ws="qvm-x-akh">+significar</AUni> -<AUni ws="qvm-x-akl">+significar</AUni> -<AUni ws="qvm-x-ame">+significar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.673" /> -<DateModified val="2022-10-10 21:19:47.693" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="388b9bb6-3bf7-42af-bc88-4320b453a853" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+significar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dbe94214-cb97-4092-8918-dc822dbb04ed" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d06b999b-527c-4a9d-8684-a6b065a54768" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +significar 
\entryTyp root 
\gENG meaning 
\gSPN 
\e +significar 
\c V1 
\ach significa 
\akh significa 
\acl significa 
\akl significa 
\ame significa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="d067b555-e53c-4c16-bb09-5314862d8bae" ownerguid="2d894eca-8f6c-4b63-b265-0914a65d9be9"> -<Abbreviation> -<AUni ws="en">5.2.3.7.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.325" /> -<DateModified val="2022-9-23 16:55:8.325" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to drinking alcohol and the effect it has on a person.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88K' Drunkenness</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Drunk</AUni> -</Name> -<OcmCodes> -<Uni>275 Drinking Establishment</Uni> -</OcmCodes> -<Questions> -<objsur guid="c199a953-0f52-4cdf-abcc-415bc329113a" t="o" /> -<objsur guid="13cbfb60-7fe0-406b-8095-d4abc8dfdd43" t="o" /> -<objsur guid="09692e17-d3d3-409f-aa95-cf7dc61ca290" t="o" /> -<objsur guid="cb615946-4e77-425e-b8f6-fd1a28c44c8d" t="o" /> -<objsur guid="7c6c7704-4bb8-4f07-80da-c19b85b4958d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="d06ac658-1f35-4a2c-bf41-f2ae021c335e" ownerguid="5d3fb59c-adce-48cd-adfc-84c905d503df"> -<Form> -<AUni ws="qvm-x-ach">shawanta</AUni> -<AUni ws="qvm-x-acl">shawanta</AUni> -<AUni ws="qvm-x-akh">shawanta</AUni> -<AUni ws="qvm-x-akl">shawanta</AUni> -<AUni ws="qvm-x-ame">shawanta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d06b999b-527c-4a9d-8684-a6b065a54768" ownerguid="d06628e5-7cc3-40db-b99a-459eec99e731"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">meaning</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dbe94214-cb97-4092-8918-dc822dbb04ed" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="d06cdf08-eb4e-482c-be6f-60bedc8b7093" ownerguid="952af6bb-942a-4e2d-b6fc-4e105a1e6369"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">little</AUni> -<AUni ws="es">chico</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ebaf5c56-75e2-4aab-9a21-25b72cc10485" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="d06d1192-bc80-46f4-8532-b282ebb13dae" ownerguid="d35769c5-bbb0-4773-98a6-14b11b576665"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="4eb54260-41ed-4d35-9035-9cf7ce7908ab" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="d06dae77-134a-403f-ba88-52ecd66c0522" ownerguid="025da6f4-b1b6-423a-8c0f-b324f531a6f1"> -<Abbreviation> -<AUni ws="en">1.5.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.978" /> -<DateModified val="2022-9-23 16:55:7.978" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for mosses (phylum Bryophyta, class Musci), liverworts (phylum Bryophyta, class Hepaticae), fungi (phylum Thallophyta, subdivision Fungi), algae (phylum Thallophyta, subdivision Algae), and lichens. These plants do not have true roots, stems, or leaves. The mosses are small, green, flowerless plants that grow in moist environments and look like velvety or feathery growths carpeting the ground, tree trunks, and rocks. The liverworts are similar to the mosses with a flat and branching growth pattern. The algae possess green chlorophyll. They vary from one-celled organisms, which sometimes live in colonies such as pond scum, to complex organisms such as seaweed. The fungi do not possess chlorophyll and feed off of other organic material. Lichens consist of a fungus and an algae growing together. They commonly grow on trunks of trees and rocks. Some are flat and leafy, and some are moss like.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>3C Plants That Are Not Trees</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Moss, fungus, algae</AUni> -</Name> -<Questions> -<objsur guid="392559c1-f8e1-4bfd-8404-887e035b3f43" t="o" /> -<objsur guid="3036bc79-3cf7-48d1-b5ca-1c3efc586b50" t="o" /> -<objsur guid="52826d43-b286-4c7f-be28-15cc815e0b00" t="o" /> -<objsur guid="8999bb69-2235-4cb3-a5a7-8cf7d67e12d9" t="o" /> -<objsur guid="296059c7-01de-4864-8c15-305b6dff7923" t="o" /> -<objsur guid="4ece555c-3d5c-404a-87ae-91e00b6fd29d" t="o" /> -<objsur guid="f5ed097d-7f75-4cd6-b680-40b8dcdba732" t="o" /> -<objsur guid="cde49e9e-6b81-4727-9d6b-e2f627a190b8" t="o" /> -<objsur guid="74dd5ebe-d1a9-4b55-a351-1c31080abaee" t="o" /> -<objsur guid="26955bce-9ce3-40a6-88cd-57200cd3c2ec" t="o" /> -<objsur guid="356bd76c-7c38-4758-83c8-3eab983f0898" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="d06df899-104d-461a-917c-fa33fb84ff79" ownerguid="ffad98ad-9af2-43bf-99e3-d54f0b9222e5"> -<Form> -<AUni ws="qvm-x-ach">säbila</AUni> -<AUni ws="qvm-x-acl">säbila</AUni> -<AUni ws="qvm-x-akh">säbila</AUni> -<AUni ws="qvm-x-akl">säbila</AUni> -<AUni ws="qvm-x-ame">säbila</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="d06ed832-bbfb-40b9-aa3a-8c5b8b01621a" ownerguid="6ed896a6-bab7-4fdf-a4fd-a5ee49f380d2"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="0f48f555-3037-4237-b56c-e8ecbb845cb7" t="o" /> -<objsur guid="6b3662f2-c7c6-4ad0-bba4-c4e5326d4ff2" t="o" /> -<objsur guid="090cfc59-101d-44c5-bc33-b27920cee655" t="o" /> -<objsur guid="f0129920-65ef-4508-abdc-ce8e1adccf8e" t="o" /> -</MorphBundles> -</rt> -<rt class="LexExampleSentence" guid="d07015f6-03c4-44c3-a0c5-4c87adc9daee" ownerguid="a8d71b5e-6c79-4f47-9c72-ec53ace5a0c0"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">NUM 6.19 Nircurnami rutucushga nazareo runata cüra macyanga calduypa yanushga carnipa paltacshinta.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiWordform" guid="d070a291-a5bd-4c5f-ada7-91290ba05e4a"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">BEN1</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="d070e6bd-2f20-453e-8d67-4f848302a1b0" ownerguid="f352a437-58f2-4920-aec3-eda8041f7447"> -<ExampleWords> -<AUni ws="en">firstly, first of all, to start with, to begin with, in the first place</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that something is the first in a list of things that you will talk about?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d079b5fb-6a6e-45ff-913e-4546e2d6d882" ownerguid="134c68a9-ac3f-4b7e-8fca-63642d796a75"> -<ExampleWords> -<AUni ws="en">inhabitant, resident</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a person who lives in a country?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d07a546e-f42c-4856-86b7-9b2079a896f8" ownerguid="536a2d3e-2303-43bc-bf53-379131eb5730"> -<ExampleWords> -<AUni ws="en">purple, violet, amethyst, crocus, hyacinth, lavender, lilac, liver-colored, magenta, maroon, mauve, mulberry, plum, plum-colored, royal purple</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What are the shades of purple?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d07bd6be-07d3-4cc2-a857-4f53d1cc88f7" ownerguid="1f608e18-958e-4bb3-a977-04879fb5acd5"> -<ExampleWords> -<AUni ws="en">honey</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to honey and other insect products that can be eaten?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d07fcf81-1e03-4f38-b034-735c8e9f10c0" ownerguid="85912845-21b0-41eb-8b8c-1f5c3d53df08"> -<ExampleWords> -<AUni ws="en">fan</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to someone who is enthusiastic about something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d08344dc-26ec-4b3b-b2e2-60638e3d5b29" ownerguid="9392e71c-31e4-4066-a9a5-7768e63c921f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="82904b81-4f67-4c25-99a7-588bb5803ed1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="d086c2ad-2d11-4250-a25a-dc6538439db6" ownerguid="b6686c7c-39de-40b5-adee-67fc7dc54374"> -<Abbreviation> -<AUni ws="en">8.1.1.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.559" /> -<DateModified val="2022-9-23 16:55:8.559" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the number two.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Two</AUni> -</Name> -<Questions> -<objsur guid="f6767d57-6fb1-4e4a-b876-7143f3ee912f" t="o" /> -<objsur guid="9efb950b-4bbe-4301-b51a-707fb07f36d8" t="o" /> -<objsur guid="4c522192-b97b-4890-b2bb-c9b87321c958" t="o" /> -<objsur guid="ab7c520a-678e-4e5e-8ae5-48344b2a64a0" t="o" /> -<objsur guid="35db829b-819b-4f9c-bc9a-338558213919" t="o" /> -<objsur guid="09f941b4-cac7-4e72-90a3-364a758c22dc" t="o" /> -<objsur guid="9f32bfae-97ed-4ccc-bcc2-e1b81d4493e6" t="o" /> -<objsur guid="4f85f343-3920-42c9-9138-fee739c3d7f4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="d086d43a-9db6-4f58-8a05-b04f0e3e77c0" ownerguid="457b9098-4e4c-41cf-9a91-c2cf5be1e867"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="d087488c-deb0-4781-a603-a10d233a5afa" ownerguid="0b6da2c6-cc71-47ea-bcc2-1deccf6901ef"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="d08a5ea7-67af-4f0e-8966-3b41b5c928ce" ownerguid="6ea3e2ec-6988-49b0-9520-2ed73fbad920"> -<Form> -<AUni ws="qvm-x-ach">machöra</AUni> -<AUni ws="qvm-x-acl">machöra</AUni> -<AUni ws="qvm-x-akh">machöra</AUni> -<AUni ws="qvm-x-akl">machöra</AUni> -<AUni ws="qvm-x-ame">machöra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d08af051-c1c1-4335-90bf-6c169e19eec2" ownerguid="98f9ceff-e8a2-4e24-abc4-561b80bb5889"> -<ExampleWords> -<AUni ws="en">bottle, can, cure, dry, embalm, freeze, mummify, pickle, refrigerate, salt, smoke, tan</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a method of preserving something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d08b4798-fa0a-45e2-81e5-96ecfd31116c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">censa</AUni> -<AUni ws="qvm-x-acl">censa</AUni> -<AUni ws="qvm-x-akh">censa</AUni> -<AUni ws="qvm-x-akl">censa</AUni> -<AUni ws="qvm-x-ame">censa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+censar</AUni> -<AUni ws="qvm-x-acl">+censar</AUni> -<AUni ws="qvm-x-akh">+censar</AUni> -<AUni ws="qvm-x-akl">+censar</AUni> -<AUni ws="qvm-x-ame">+censar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.102" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c89e86f1-10fa-4ead-bad1-ce5e09bc89a3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+censar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="607f16fb-a4b0-4506-be48-4dcdf204489d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f11ef170-0e6c-477a-9df6-7b553e25e271" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +censar 
\entryTyp root 
\gENG take.a.census 
\gSPN censar 
\e +censar 
\c V1 
\ach censa 
\akh censa 
\acl censa 
\akl censa 
\ame censa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d08be0cd-3aca-4b2f-897a-31716c4de596"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">liuta</AUni> -<AUni ws="qvm-x-acl">liuta</AUni> -<AUni ws="qvm-x-akh">liwta</AUni> -<AUni ws="qvm-x-akl">liwta</AUni> -<AUni ws="qvm-x-ame">liwta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lliwta.v</AUni> -<AUni ws="qvm-x-acl">*lliwta.v</AUni> -<AUni ws="qvm-x-akh">*lliwta.v</AUni> -<AUni ws="qvm-x-akl">*lliwta.v</AUni> -<AUni ws="qvm-x-ame">*lliwta.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.215" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3ef49824-0a6d-4a95-9dd8-7fcdfd39bc7c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lliwta.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cdb9a17e-efb7-441b-af66-946e0e0f993b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fae4193b-dc54-4b7d-a49d-47474ddbd0c4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lliwta.v 
\entryTyp root 
\gENG ? 
\gSPN ? 
\e *lliwta.v 
\c V1 
\ach liuta 
\akh liwta 
\acl liuta 
\akl liwta 
\ame liwta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d08e2699-4da3-4a71-ae1b-2d472667e03a" ownerguid="f56a2511-10cc-4829-940d-49051429bfba"> -<ExampleWords> -<AUni ws="en">skim</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to removing the thick part on top?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d09017e9-ba73-4b85-97a3-d9697c3b8619" ownerguid="210fcfec-1ee9-494c-96be-72730127f7f2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d0907f7b-00dc-4c71-8dc7-2d2236515634" ownerguid="79b580ff-64a7-445b-abcb-b49b9093779c"> -<ExampleWords> -<AUni ws="en">beehive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) Where do people keep insects?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d0922dbd-37de-4144-8335-0e3531d8c93e" ownerguid="fccc2973-d590-4fc7-ba38-b9870732c9bf"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d092bbe6-57db-4c40-8b0d-02d9a45bf992" ownerguid="dfbb1135-3552-4f84-8e4a-5f2ee2144bf3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.sad</AUni> -<AUni ws="es">tener.pena</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="57500890-a25b-4c8a-9287-eb4de22868d7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="d0959394-18a5-4fbf-a6b5-173495682fd3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuerpu; cuerpo</AUni> -<AUni ws="qvm-x-acl">cuerpu; cuerpu; cuerpo</AUni> -<AUni ws="qvm-x-akh">cuerpu; cuerpo</AUni> -<AUni ws="qvm-x-akl">cuerpu; cuerpu; cuerpo</AUni> -<AUni ws="qvm-x-ame">cuerpu; cuerpo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuerpo</AUni> -<AUni ws="qvm-x-acl">+cuerpo</AUni> -<AUni ws="qvm-x-akh">+cuerpo</AUni> -<AUni ws="qvm-x-akl">+cuerpo</AUni> -<AUni ws="qvm-x-ame">+cuerpo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.244" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2f4b584d-4d3a-4959-9246-bf8329215dab" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuerpo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e91bb53d-8656-4d06-bd98-1ac8cae36bb9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="115b8eaa-9743-4f66-a020-2f243d5f651b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuerpo 
\entryTyp root 
\gENG body 
\gSPN cuerpo 
\e +cuerpo 
\c N0 
\ach cuerpu / ~_# 
\ach cuerpo / _# 
\akh cuerpu / ~_# 
\akh cuerpo / _# 
\acl cuerpu / ~_# 
\acl cuerpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cuerpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cuerpu / ~_# 
\akl cuerpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cuerpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cuerpu / ~_# 
\ame cuerpo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="d098182d-c7bc-4f9b-ba3a-39815aa09611" ownerguid="dfec780e-c856-47f1-b21a-56c77a902ab4"> -<Form> -<AUni ws="qvm-x-ach">söpa</AUni> -<AUni ws="qvm-x-acl">söpa</AUni> -<AUni ws="qvm-x-akh">söpa</AUni> -<AUni ws="qvm-x-akl">söpa</AUni> -<AUni ws="qvm-x-ame">söpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d09b08ad-4097-4fb9-a6ba-90c1f42141a1" ownerguid="3f37bb6f-cd32-4430-aa35-700acabbee15"> -<ExampleWords> -<AUni ws="en">start, start up, open, set up, establish, found, inception</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to starting an organization?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="d0a01de3-c88d-4904-91a9-9ea33ab82528" ownerguid="1b2023ab-99fe-46af-9c82-b9d0c5eaf316"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="c32ccd3b-ad79-4308-b78b-373c1d77b9c6" t="o" /> -<objsur guid="ce7f6422-3800-4c67-b1e6-1a864b4204e1" t="o" /> -<objsur guid="4dd0dee1-1ccc-4bef-881b-e33b71c49a54" t="o" /> -<objsur guid="3c88d8fb-6d25-4ca0-acbb-a01a893dcfbb" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="d0a482e6-a43c-4735-8889-0dcc323d3251" ownerguid="a24e45df-fa39-498b-8e65-482c9071135a"> -<Form> -<AUni ws="qvm-x-ach">cuwäju</AUni> -<AUni ws="qvm-x-acl">cuwäju; cuwäju; cuwäjo</AUni> -<AUni ws="qvm-x-akh">cuwäju</AUni> -<AUni ws="qvm-x-akl">cuwäju; cuwäju; cuwäjo</AUni> -<AUni ws="qvm-x-ame">cuwäju</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="d0a52214-0f44-4bd8-afa2-376ea2bd2078" ownerguid="bd02e853-2252-4134-ae55-3629fc6d5e3e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="d0a8a408-34ac-401c-8c72-12fb554dec28" ownerguid="db17f6fd-68f7-4756-8166-2629a0407c75"> -<Form> -<AUni ws="qvm-x-ach">proveeduría; proveeduria</AUni> -<AUni ws="qvm-x-acl">proveeduría; proveeduria</AUni> -<AUni ws="qvm-x-akh">proveeduría; proveeduria</AUni> -<AUni ws="qvm-x-akl">proveeduría; proveeduria</AUni> -<AUni ws="qvm-x-ame">proveeduría; proveeduria</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="d0acef7f-85ff-4f95-b112-03d9d858ca22" ownerguid="430d9a4f-ce0e-42ac-b4ef-464c359c5de1"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="d0b14231-1471-41b3-aeb5-69199acaaefb" ownerguid="bb8ddf5f-707d-46c0-aff4-45683d26fd68"> -<Abbreviation> -<AUni ws="en">9.5.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating the way or manner in which something is done.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89N Manner</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Way, manner</AUni> -</Name> -<Questions> -<objsur guid="d5e74745-143b-4911-bf3e-36c82c6e9468" t="o" /> -<objsur guid="e2cfd6d1-6800-4eeb-aa7d-b2529ab77f34" t="o" /> -<objsur guid="92396ef0-1534-423a-89a9-651726c353d4" t="o" /> -<objsur guid="e00feb2a-424b-4f87-8a9a-cadfbf393bf8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="d0b284ff-eb1c-4578-9e7a-a1f1436c892b" ownerguid="f5e2ad18-5ad4-4186-9572-b1542096759e"> -<ExampleWords> -<AUni ws="en">soldier, combatant, warrior, volunteer, conscript</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a soldier?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d0b79c8a-5035-453c-8953-5ae964008daa" ownerguid="13e67cc9-055b-4f9b-9217-a16b18db0329"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">"Is X true?" "<I think so>."; X is true, <as far as I know>.; <To the best of my knowledge>, X is true.; <As far as I'm aware>, X is true.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">I think so, I guess so, as far as I know, to the best of my knowledge, as far as I'm aware</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What do you say when you think something is true, but you are not sure?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d0b9361c-d3bd-431d-a28e-bcd1420e0fa9" ownerguid="91053954-86ef-4146-a674-747249228584"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="d0b93abd-4f3b-449a-a3d6-f96987968d33" ownerguid="05ded765-2e82-4ad0-a986-c8e5d1d4a941"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="d0bb470a-296b-4afe-bd0a-5671c955c37a" ownerguid="639d387e-fed9-4ef5-9fe8-8788d1347c72"> -<Form> -<AUni ws="qvm-x-ach">chacwan</AUni> -<AUni ws="qvm-x-acl">chacwan</AUni> -<AUni ws="qvm-x-akh">chakwan</AUni> -<AUni ws="qvm-x-akl">chakwan</AUni> -<AUni ws="qvm-x-ame">chakwan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d0bd10fc-b866-4db3-bceb-c288a260d552" ownerguid="ca9c215a-e568-4d09-b3a9-b5727cd831d6"> -<ExampleWords> -<AUni ws="en">embalmer, undertaker, mortician, gravedigger, funeral director</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who prepares a body for burial?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d0c4fdf1-d489-41c5-a5f1-35bbfd91f04d" ownerguid="956eaac9-bc62-4c3f-b9c2-ed4971e8b2b5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="f9d95d96-682e-4c52-bd5c-35ea76540a52" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">platform</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="970dbf65-f491-4cb3-b665-eeba23463c95" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d0c74192-031a-42de-bb14-4c4da66b08c3" ownerguid="41988a9a-f8b3-4817-aeeb-9409cce668e3"> -<Form> -<AUni ws="qvm-x-ach">wiru</AUni> -<AUni ws="qvm-x-acl">wiru; wiru; wiro</AUni> -<AUni ws="qvm-x-akh">wiru</AUni> -<AUni ws="qvm-x-akl">wiru; wiru; wiro</AUni> -<AUni ws="qvm-x-ame">wiru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d0c77401-82cb-409e-8878-e967b9b5c593" ownerguid="e27adda9-0761-4b7f-abbf-24938ce1c01a"> -<ExampleWords> -<AUni ws="en">play a part, portray, role, part</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to performing as a particular character?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d0d03d31-db63-43b0-8fcb-ee62be1ea3b9" ownerguid="1c3c8af0-56b9-4617-862e-21f39b388606"> -<ExampleWords> -<AUni ws="en">die young, be cut off in your prime, untimely death</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to dying when you are still young?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d0d2eaeb-8e4a-4753-8d97-d42aff2cd132" ownerguid="72274e9d-5d3c-4ae7-93ab-db3617cdda1e"> -<ExampleWords> -<AUni ws="en">be numb, have no feeling, can't feel anything, be insensitive (to pain), go to sleep, go dead, go numb, lose feeling</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(19) What words refer to not being able to feel anything?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d0d50f6c-4c59-4bcf-887b-dc09a836bbe5" ownerguid="3e546c11-bcb6-4024-b2f3-c15be40e257f"> -<ExampleWords> -<AUni ws="en">lack self-control, indulge, overdo, permit, do something to excess, lose control, get carried away, break down, give in to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a lack of self-control?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d0d53a9c-d226-4bdd-8295-f6a8c2852f35" ownerguid="c129027b-a0b4-4fb6-b324-ec6469dfe073"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d0d57170-597a-4c46-b407-05ae6a330505" ownerguid="aaf4227a-cfb7-4470-b67d-0c41f8f232d7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">toast</AUni> -<AUni ws="es">tostar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="558f6059-024a-4c7c-95c4-ebcfad4272c1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="d0d64b02-d054-4461-9eab-3d6680f179eb" ownerguid="7fe7626d-bcfc-490a-981f-61a702901ca5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="d0da5e32-afe7-41bc-99b7-dd66083d71b9" ownerguid="65d840b4-2631-4232-8b18-8f48ed193507"> -<Form> -<AUni ws="qvm-x-ach">proverbiu; proverbio</AUni> -<AUni ws="qvm-x-acl">proverbiu; proverbiu; proverbio</AUni> -<AUni ws="qvm-x-akh">proverbiu; proverbio</AUni> -<AUni ws="qvm-x-akl">proverbiu; proverbiu; proverbio</AUni> -<AUni ws="qvm-x-ame">proverbiu; proverbio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d0de0fe3-cb05-4d8b-9809-4ffb92099fdb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">liperia</AUni> -<AUni ws="qvm-x-acl">liperia</AUni> -<AUni ws="qvm-x-akh">liperia</AUni> -<AUni ws="qvm-x-akl">liperia</AUni> -<AUni ws="qvm-x-ame">liperia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+liperia</AUni> -<AUni ws="qvm-x-acl">+liperia</AUni> -<AUni ws="qvm-x-akh">+liperia</AUni> -<AUni ws="qvm-x-akl">+liperia</AUni> -<AUni ws="qvm-x-ame">+liperia</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.102" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c068cc91-98aa-4eb6-8d0d-061255d89882" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+liperia</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3c9327ae-645a-408d-a5b0-e25edc3617b7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="be51c63d-a6e9-4edb-872d-300a5e3b0e32" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +liperia 
\entryTyp root 
\gENG 
\gSPN 
\e +liperia 
\c N0 
\ach liperia 
\akh liperia 
\acl liperia 
\akl liperia 
\ame liperia</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="d0de9307-7ea4-4e06-a27f-6f9e0805ca5d" ownerguid="8f3b45f3-3d18-41ba-b593-022f361d002a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="d0dee676-f3ae-43cc-96f1-7e3bb65870f5" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<Abbreviation> -<AUni ws="en">8.2.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.597" /> -<DateModified val="2022-9-23 16:55:8.597" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to something fitting--when something is not too big or too small, but just right.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Fit, size</AUni> -</Name> -<Questions> -<objsur guid="30a3c0f1-4ba1-407e-94bf-1715fd67e80f" t="o" /> -<objsur guid="0e3531a6-e0a0-4ccc-aee6-48c95c52c866" t="o" /> -<objsur guid="9a902c1b-e3a0-4e76-86c8-e7e7ee27f119" t="o" /> -<objsur guid="90e8f25b-62e8-4ea2-a386-2dfd2029a4e8" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="4d61f524-7213-4c2c-8c14-f8eff3aed813" t="o" /> -<objsur guid="7162885d-1d35-4baf-97d6-7368fff7c723" t="o" /> -<objsur guid="a3fb18fd-befb-493f-8a19-760883ed9697" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="d0e124a1-b01c-46a4-abf7-66fde670b6f7" ownerguid="cd25cd4f-8f3f-4677-9c60-6967bea5fa3d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ring</AUni> -<AUni ws="es">aro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c48bdc14-49d0-4d54-a303-a354fc4491e8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="d0e2aa4a-5be8-4098-9325-1cc87b5a6c92" ownerguid="63d7756e-2388-447c-8e80-bcfead5b05df"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="Segment" guid="d0e3738f-bfdb-43ec-9130-9da29badafe8" ownerguid="e8ad725e-f35c-4639-be1a-ef5eab3b500e"> -<Analyses> -<objsur guid="e4b870ea-223c-4f67-be24-ebfdf975f0a5" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="CmDomainQ" guid="d0e4efe6-3388-4527-a834-9912a9b263d4" ownerguid="ca752706-1c9e-43e7-bd17-845c4736ccd8"> -<ExampleWords> -<AUni ws="en">rounded to the nearest ten/hundred/thousand, round up, round down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to estimating a number to the nearest ten, hundred, thousand, etc?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d0eaafd6-3871-46e7-a880-611141a9c149" ownerguid="d2f516f4-df1c-44f6-8704-76dd52201317"> -<ExampleWords> -<AUni ws="en">stranger</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person you don't know?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d0ec7fa7-a6e2-4987-8501-0e04d061a790" ownerguid="dbd3e164-3f70-4395-9728-1c24c8900da6"> -<ExampleWords> -<AUni ws="en">hot pad, oven mitt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What utensils are used to handle hot pans?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d0f7c423-fcfa-40fd-97bf-00cdfce68706" ownerguid="80563285-4de7-4040-8080-a5b22208e7d5"> -<ExampleWords> -<AUni ws="en">attacker, attacking force, aggressor, assailant, invader, invasion force</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a person or group that attacks?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d0f847c9-44de-43a8-bdb6-cc46bb666a4a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">elgu; elgu:</AUni> -<AUni ws="qvm-x-acl">elgo:; elgu; elgo</AUni> -<AUni ws="qvm-x-akh">elqu; elqu:</AUni> -<AUni ws="qvm-x-akl">elqo:; elqu; elqo</AUni> -<AUni ws="qvm-x-ame">ilqu; ilqu:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*illaqu:</AUni> -<AUni ws="qvm-x-acl">*illaqu:</AUni> -<AUni ws="qvm-x-akh">*illaqu:</AUni> -<AUni ws="qvm-x-akl">*illaqu:</AUni> -<AUni ws="qvm-x-ame">*illaqu:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.800" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1641bc9a-4081-4706-865d-7eee94fa3d58" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*illaqu:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6711efaf-1399-4feb-82b5-4f4913c092df" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9bd85d2c-68a8-4fb7-817d-bf15496a642a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *illaqu: 
\entryTyp root 
\gENG sheet.lightning 
\gSPN relampaguear 
\e *illaqu: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach elgu foreshortened 
\ach elgu: 
\akh elqu foreshortened 
\akh elqu: 
\mp +underlong 
\acl elgo: 
\acl elgu foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl elgo foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\mp +underlong 
\akl elqo: 
\akl elqu foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl elqo foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ilqu foreshortened 
\ame ilqu: 
\mcc *illaqu: / ~_ 2IMP.1</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="d0faa1b4-6402-4e5a-a624-4c7eb835c688" ownerguid="a0112e1c-367d-4035-8894-35cff90e4d3b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d0fe0098-f6a7-429a-910d-73aea8034c22" ownerguid="6f01b67c-33a0-4ed3-8205-f868e97a1a3a"> -<ExampleWords> -<AUni ws="en">move away, leave forever, emigrate, immigrate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to going somewhere without intending to return?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d100930b-6187-4722-ba21-3ec5de0b434b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">hondu; hondo</AUni> -<AUni ws="qvm-x-acl">hondu; hondu; hondo</AUni> -<AUni ws="qvm-x-akh">hondu; hondo</AUni> -<AUni ws="qvm-x-akl">hondu; hondu; hondo</AUni> -<AUni ws="qvm-x-ame">hondu; hondo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hondo.1</AUni> -<AUni ws="qvm-x-acl">+hondo.1</AUni> -<AUni ws="qvm-x-akh">+hondo.1</AUni> -<AUni ws="qvm-x-akl">+hondo.1</AUni> -<AUni ws="qvm-x-ame">+hondo.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.741" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c1cc1fdf-1d1f-4744-b56c-fb6abd34bc78" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hondo.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6822b24c-d18c-4fc8-9a1e-a63dcccfc408" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="eef93054-f33c-4267-a477-d3b94b723a89" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hondo.1 
\entryTyp root 
\gENG depth 
\gSPN fondo 
\e +hondo.1 
\c N0 
\ach hondu / ~_# 
\ach hondo / _# 
\akh hondu / ~_# 
\akh hondo / _# 
\acl hondu / ~_# 
\acl hondu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl hondo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl hondu / ~_# 
\akl hondu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl hondo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hondu / ~_# 
\ame hondo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="d100a60e-40fa-45d4-8643-92375fc3d00c" ownerguid="2ab52bfe-a1f6-483a-bd7b-f4524a6b0c16"> -<Form> -<AUni ws="qvm-x-ach">waga</AUni> -<AUni ws="qvm-x-acl">waga</AUni> -<AUni ws="qvm-x-akh">waqa</AUni> -<AUni ws="qvm-x-akl">waqa</AUni> -<AUni ws="qvm-x-ame">waqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="d1015f38-14e7-4cf2-b932-7dda2001f0db" ownerguid="a24111ff-bfee-4afa-838f-3af407f0bde8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="d1017d87-48a1-4925-8e68-cf7244ce143d" ownerguid="6e480c94-c45a-442e-a8fd-e63511df6b3a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="d10301f3-573c-4005-ad65-1c73fb80b3b6" ownerguid="df9ee372-e92e-4f73-aac5-d36908497698"> -<Abbreviation> -<AUni ws="en">3.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.103" /> -<DateModified val="2022-9-23 16:55:8.103" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to understanding a topic or the meaning of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>32 Understand; 32A Understand; 32B Come To Understand; 32C Ease or Difficulty in Understand</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Understand</AUni> -</Name> -<Questions> -<objsur guid="1c3415bd-d22d-4ae3-8002-deb9baa1c08e" t="o" /> -<objsur guid="b3d9c774-faf7-4833-baec-96d0b16e5851" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="c4330001-83ca-485d-8b9b-09f7e1be60cc" t="r" /> -<objsur guid="e080687b-0900-4dd0-9677-e3aaa3eae641" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="cab8e9dc-5e4f-4a12-8b3d-4acbb7ad2059" t="o" /> -<objsur guid="cba1f6cc-58ac-4d09-aa6a-1661f5945787" t="o" /> -<objsur guid="6ea13b69-b2a8-41f9-b0bc-14316ebc5118" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="d106ac7b-fd48-4879-9752-37038b3b39e0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">convie:ni</AUni> -<AUni ws="qvm-x-acl">convie:ni; convie:ne</AUni> -<AUni ws="qvm-x-akh">convie:ni</AUni> -<AUni ws="qvm-x-akl">convie:ni; convie:ne</AUni> -<AUni ws="qvm-x-ame">convie:ni</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+convenir</AUni> -<AUni ws="qvm-x-acl">+convenir</AUni> -<AUni ws="qvm-x-akh">+convenir</AUni> -<AUni ws="qvm-x-akl">+convenir</AUni> -<AUni ws="qvm-x-ame">+convenir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.182" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6d066f66-a4d6-4d91-810f-d5156269ff09" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+convenir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="497fe439-65a1-4ad0-bcf1-6b20c5011da9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="24af2113-f8f0-44b7-ab4b-fd2a96341e62" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +convenir 
\entryTyp root 
\gENG be.worthwhile 
\gSPN convenir 
\e +convenir 
\c V2 
\mp +FinalI 
\ach convie:ni 
\akh convie:ni 
\acl convie:ni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl convie:ne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl convie:ni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl convie:ne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame convie:ni</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="d107f0d8-68ec-420b-831f-43675872174d" ownerguid="1e57be76-81b2-4f82-ad26-e1a853a85acc"> -<Form> -<AUni ws="qvm-x-ach">iusanqui</AUni> -<AUni ws="qvm-x-acl">iusanqui; iusanqui; iusanque</AUni> -<AUni ws="qvm-x-akh">iwsanki</AUni> -<AUni ws="qvm-x-akl">iwsanki; iwsanki; iwsanke</AUni> -<AUni ws="qvm-x-ame">iwsanki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="d10dfb82-f169-4e5b-b834-c45a82ea65fa" ownerguid="43c44a23-e71b-4ff3-b208-f72d89c5b577"> -<Form> -<AUni ws="qvm-x-ach">conciencia</AUni> -<AUni ws="qvm-x-acl">conciencia</AUni> -<AUni ws="qvm-x-akh">conciencia</AUni> -<AUni ws="qvm-x-akl">conciencia</AUni> -<AUni ws="qvm-x-ame">conciencia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d10f43af-760e-4303-a1fa-96faff56e327" ownerguid="f5e2ad18-5ad4-4186-9572-b1542096759e"> -<ExampleWords> -<AUni ws="en">rank, enlisted man, non-commissioned officer, commissioned officer, officer, commanding officer, commander, commandant, rank and file</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the military ranks?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d111f23b-66f5-493d-bbe6-482a17a9e66a" ownerguid="d8631167-08bd-4571-bc7c-57a4407da51c"> -<ExampleWords> -<AUni ws="en">member, card-carrying, Democrat, Republican, Communist, Nazi, Fascist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a member of a political party?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d11205e0-a6de-4b44-9527-720ee936a78e" ownerguid="180a2220-942c-4e17-96ee-cd4f63a4c715"> -<ExampleWords> -<AUni ws="en">splatter, splash, stick, squish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What does mud do?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d1149a94-eb11-405e-88c3-e03a10a2c8d5" ownerguid="1b6b0c12-9ecd-45cb-bb0e-0dadb435eddf"> -<ExampleWords> -<AUni ws="en">a lot, a good deal, a great deal, quite a bit, plenty, heavy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words indicate that someone does something a lot?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="d117aa22-3f18-47c4-9683-51ecf1dc7134" ownerguid="025da6f4-b1b6-423a-8c0f-b324f531a6f1"> -<Abbreviation> -<AUni ws="en">1.5.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.978" /> -<DateModified val="2022-9-23 16:55:7.978" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that refer to parts of a plant. Start with general words that all plants have. Then think through each major type of plant. Finish by thinking of specific plants that are well known (usually cultivated crops) and that have words for specific parts (e.g. tassel on a corn/maize cob).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>3D Fruit Parts of Plants; 3E Non-Fruit Parts of Plants</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Parts of a plant</AUni> -</Name> -<OcmCodes> -<Uni>137a Plant Parts</Uni> -</OcmCodes> -<Questions> -<objsur guid="b99d6301-2104-4436-a533-ce1d34d843a5" t="o" /> -<objsur guid="c9054e8e-8892-4457-870c-f7aecb8e6714" t="o" /> -<objsur guid="da5870fc-97b1-4cee-b2c3-f8928f448819" t="o" /> -<objsur guid="5fdd9e17-709c-4854-84f9-d9a58e373ada" t="o" /> -<objsur guid="0e086ad5-8319-41ff-bb22-dd24927636b3" t="o" /> -<objsur guid="550007a0-3720-47c9-9748-17eba060898c" t="o" /> -<objsur guid="404250b1-f312-43cb-b09d-a7fe7121fdc7" t="o" /> -<objsur guid="6c53ad49-78da-4d25-8df2-8be6b3008af1" t="o" /> -<objsur guid="b73cd84d-6a35-4e55-97a1-4d1f77f3f93d" t="o" /> -<objsur guid="e11b677d-d0ff-4eb3-bf67-08a7445a8273" t="o" /> -<objsur guid="4bd504e4-79c9-41b9-b95f-b45d70e158b8" t="o" /> -<objsur guid="489d2ded-4c2c-46dd-8f93-cb007829e20c" t="o" /> -<objsur guid="ac135dd0-3090-48c5-ace5-62df68a0af31" t="o" /> -<objsur guid="2a5dd56d-0048-467d-bd83-7cfde6c3316c" t="o" /> -<objsur guid="e4d81a62-9c02-4c24-90d4-f1089d17436a" t="o" /> -<objsur guid="99e3f156-9607-4160-ac95-668c82b8095f" t="o" /> -<objsur guid="3a124f13-9ec0-4333-bbfc-d11d82b216d1" t="o" /> -<objsur guid="8efa9c7b-413d-4c7d-b34b-fc4565c65b3a" t="o" /> -<objsur guid="7acea74f-381d-43be-a13f-9dd90418eed4" t="o" /> -<objsur guid="46b04644-d6ba-425e-874d-58e1064fe017" t="o" /> -<objsur guid="9c93bf5c-9f42-4c39-9f5d-b175f8286777" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="d119825a-a748-4ad9-bcd8-eaa0fe53092f" ownerguid="321d0a74-705f-40bf-8d24-809f65bee895"> -<ExampleWords> -<AUni ws="en">turn</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) state changes: (self-explanatory).</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d11bbd1e-c4c5-4207-aa3c-486bf7bba543" ownerguid="b38bc4a9-c22f-41a2-9c9b-5d48f8c15954"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="d9b92d8b-091c-46db-ba9c-174e8f561145" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="a9c69eee-967c-4813-bd7e-5fc322444f92" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d11f29cc-b4ab-469a-a5f1-20118548690f" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<ExampleWords> -<AUni ws="en">travel by foot, foot it, hoof it, leg it, tramp, strike off on foot</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to traveling someplace on foot?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d1200e73-8444-46f8-b339-b37f3925d89d" ownerguid="0656cd5e-641f-46f3-bcad-6f643727a344"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">It <just> happened.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">just, only just, a moment ago, a minute ago, just this minute, barely, scarcely, hardly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that an event happened a very short time ago?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d123e210-bd7e-4c99-9cf8-f4cd595d24fa" ownerguid="cee8d3f1-f4fd-4797-aaae-780bb88160a3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="d125240e-5990-4bf3-b99d-9b645cc79f08"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guela</AUni> -<AUni ws="qvm-x-acl">guela</AUni> -<AUni ws="qvm-x-akh">qela</AUni> -<AUni ws="qvm-x-akl">qela</AUni> -<AUni ws="qvm-x-ame">qila</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qilla.v</AUni> -<AUni ws="qvm-x-acl">*qilla.v</AUni> -<AUni ws="qvm-x-akh">*qilla.v</AUni> -<AUni ws="qvm-x-akl">*qilla.v</AUni> -<AUni ws="qvm-x-ame">*qilla.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.175" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6bc20dc7-f065-4eb9-bf71-f550c2b556ae" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qilla.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="37dd219d-d88b-44cf-b625-0f64f80db488" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4c27deb5-a71f-4a42-9c92-e1f189784f7b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qilla.v 
\entryTyp root 
\gENG to.laze 
\gSPN flojearse 
\e *qilla.v 
\c V1 
\ach guela 
\akh qela 
\acl guela 
\akl qela 
\ame qila 
\mcc *qilla.v / ~_ [y] 
\mcc *qilla.v / ~_ [y]</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d128c232-6dcb-4a21-bc9d-728f28e27005"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gue:rra</AUni> -<AUni ws="qvm-x-acl">gue:rra</AUni> -<AUni ws="qvm-x-akh">gue:rra</AUni> -<AUni ws="qvm-x-akl">gue:rra</AUni> -<AUni ws="qvm-x-ame">gue:rra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+guerra</AUni> -<AUni ws="qvm-x-acl">+guerra</AUni> -<AUni ws="qvm-x-akh">+guerra</AUni> -<AUni ws="qvm-x-akl">+guerra</AUni> -<AUni ws="qvm-x-ame">+guerra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.831" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="20e28482-4108-4a2d-88b7-5e31d37d91d3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+guerra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="922e30f8-0c0b-4133-bdb4-8740dc964432" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8fdb404c-19e1-4295-b192-a0b51e6dc39f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +guerra 
\entryTyp root 
\gENG war 
\gSPN guerra 
\e +guerra 
\c N0 
\ach gue:rra 
\akh gue:rra 
\acl gue:rra 
\akl gue:rra 
\ame gue:rra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d1292db9-72eb-4227-9b8e-4d2473625e80"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wasa</AUni> -<AUni ws="qvm-x-acl">wasa</AUni> -<AUni ws="qvm-x-akh">wasa</AUni> -<AUni ws="qvm-x-akl">wasa</AUni> -<AUni ws="qvm-x-ame">wasa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wasa</AUni> -<AUni ws="qvm-x-acl">*wasa</AUni> -<AUni ws="qvm-x-akh">*wasa</AUni> -<AUni ws="qvm-x-akl">*wasa</AUni> -<AUni ws="qvm-x-ame">*wasa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.544" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="772d61df-7355-48fc-8b7b-e4d95143a2f1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wasa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="110d4412-6bf1-4f10-8351-8b0528200017" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f4352fbe-968b-42cc-a2e0-3ab7fcb0edeb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wasa 
\entryTyp root 
\gENG slander 
\gSPN rinsilla 
\e *wasa 
\c N0 
\ach wasa 
\akh wasa 
\acl wasa 
\akl wasa 
\ame wasa 
\i PSA 109.20 Tayta Dios tsaynog castigatsun conträcunata y wasä rimagcunata.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="d129eba4-bd60-49d5-b69c-42ccce4296af" ownerguid="4ba46aa1-6411-4444-8d1b-99b98b352011"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d12cc98f-e241-4168-968b-d41e3f7f51d0" ownerguid="af26d96c-bc85-4162-8468-9b71b5c64de6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">scale</AUni> -<AUni ws="es">balanza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bd6423ea-bf34-4119-b898-060105539bec" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d12de03b-4917-4bb0-9bae-afa8c2153594" ownerguid="db2232d9-8b17-4920-936f-2b6249c6f7fa"> -<ExampleWords> -<AUni ws="en">pilfer, snitch, swipe, petty larceny</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to stealing something that is not very valuable?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d12eb24a-def8-4395-addf-03fa45e4d8b0" ownerguid="34d60dc3-c587-48dc-8401-d64a0ec1304c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="d12ee35f-d5fc-4610-bc20-aa10d3260d62" ownerguid="6415b209-5f89-4a7d-b0f1-0e99d4e35422"> -<Form> -<AUni ws="qvm-x-ach">liuqui</AUni> -<AUni ws="qvm-x-acl">liuqui; liuque</AUni> -<AUni ws="qvm-x-akh">liwki</AUni> -<AUni ws="qvm-x-akl">liwki; liwke</AUni> -<AUni ws="qvm-x-ame">liwki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d12febac-c814-417e-ac19-282d5f816d6a" ownerguid="7a0745e5-e58a-41b8-806a-e7176ba3a4ef"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">insult</AUni> -<AUni ws="es">insultar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0354861c-ab93-4432-a1dc-02365125e08b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d130a5b7-422e-4218-ae9f-0c87a2401da5" ownerguid="f56a2511-10cc-4829-940d-49051429bfba"> -<ExampleWords> -<AUni ws="en">liquid, fluid, moisture</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to liquid?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d1321bbd-f84b-4665-ae4d-b3a935a3e55c" ownerguid="2d3ea645-0e8c-43b3-bb7e-32daea3d5d64"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c57e0f38-52c7-4c01-8ba8-7e9d1a243575" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">peg/pin</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ccbde4ce-97a8-46de-9e3d-dd527daa5874" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d139b4f1-c6a8-4585-9733-dd88cd786fa8" ownerguid="4fc734f2-a91d-4693-8caf-e7fe51a2df8a"> -<ExampleWords> -<AUni ws="en">chair, armchair, highchair, seat, stool, couch, sofa, swing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What kinds of chairs are there?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d13b8519-30f5-4c02-b62d-e5287fbe5084" ownerguid="0169a639-f66b-44c6-8af6-f5ef5270c953"> -<Form> -<AUni ws="qvm-x-ach">inaura</AUni> -<AUni ws="qvm-x-acl">inaura</AUni> -<AUni ws="qvm-x-akh">inaura</AUni> -<AUni ws="qvm-x-akl">inaura</AUni> -<AUni ws="qvm-x-ame">inaura</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d13d36c5-14d3-4c79-804a-596be541f397" ownerguid="d90c0174-8858-4304-90ed-b0719171d998"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">white-tailed deer</AUni> -<AUni ws="es">venado gris</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="61409d86-0843-40fa-a5a8-59181f0b9c31" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d13e7d44-5e09-4b99-b971-974e7c5d44e6" ownerguid="bf44ef9b-c9e9-4653-8f59-965fdee8ce61"> -<Form> -<AUni ws="qvm-x-ach">predica</AUni> -<AUni ws="qvm-x-acl">predica</AUni> -<AUni ws="qvm-x-akh">predica</AUni> -<AUni ws="qvm-x-akl">predica</AUni> -<AUni ws="qvm-x-ame">predica</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d13e8a9b-3b60-43fa-895c-c1d236b4a45a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">exámen; exa:min</AUni> -<AUni ws="qvm-x-acl">exámen; exa:min; exa:men</AUni> -<AUni ws="qvm-x-akh">exámen; exa:min</AUni> -<AUni ws="qvm-x-akl">exámen; exa:min; exa:men</AUni> -<AUni ws="qvm-x-ame">exámen; exa:min</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+exámen</AUni> -<AUni ws="qvm-x-acl">+exámen</AUni> -<AUni ws="qvm-x-akh">+exámen</AUni> -<AUni ws="qvm-x-akl">+exámen</AUni> -<AUni ws="qvm-x-ame">+exámen</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.518" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d15075f7-0a09-48d9-b2a3-112056748964" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+exámen</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c83511fe-71d8-4b6c-a136-fceb42826cc2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d4ba989d-d054-4f80-aeb5-8a3bccadf9b3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +exámen 
\entryTyp root 
\gENG test 
\gSPN exámen 
\e +exámen 
\c N0 
\mp +FinalC 
\ach exámen / _# 
\ach exa:min / ~_# 
\akh exámen / _# 
\akh exa:min / ~_# 
\acl exámen / _# 
\acl exa:min +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl exa:men +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl exámen / _# 
\akl exa:min +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl exa:men +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame exámen / _# 
\ame exa:min / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="d1401d06-ca1a-4df6-ae5e-b283707d5120" ownerguid="57f3b56c-d223-4571-9ca3-0591f9f9022c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="332475d0-28ef-4611-9572-01666bf79fc8" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="469118f2-9ae8-44d6-8b20-16e05e235860" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="d1402a63-5d21-4fdc-97c2-3312dbc62bf6" ownerguid="2b8329ee-2a8c-4f1d-84a3-e58a079d2a91"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="d14157fc-5db3-4e06-8b45-04a2318c5f00"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">paya</AUni> -<AUni ws="qvm-x-acl">paya</AUni> -<AUni ws="qvm-x-akh">paya</AUni> -<AUni ws="qvm-x-akl">paya</AUni> -<AUni ws="qvm-x-ame">paya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*paya</AUni> -<AUni ws="qvm-x-acl">*paya</AUni> -<AUni ws="qvm-x-akh">*paya</AUni> -<AUni ws="qvm-x-akl">*paya</AUni> -<AUni ws="qvm-x-ame">*paya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.769" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fed58112-0fbc-415d-8358-f9e152e85d16" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*paya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ff091e3d-b37a-40ff-b5ea-cabc997901d9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f4109a21-76da-4ff7-b6e8-eeb27738920f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *paya 
\entryTyp root 
\gENG dance 
\gSPN danzar 
\e *paya 
\c V1 
\ach paya 
\akh paya 
\acl paya 
\akl paya 
\ame paya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d141e63d-20b4-4e08-9cba-a7e69a765324" ownerguid="a7824686-a3f3-4c8a-907e-5d841cf846c8"> -<ExampleWords> -<AUni ws="en">luminous, fluorescent, glow in the dark, glimmer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that shines dimly in the dark?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d1434c69-4140-42a4-ad16-b876a0937774" ownerguid="f234e40b-4277-4970-872f-0654f19fdced"> -<Form> -<AUni ws="qvm-x-ach">pushpu</AUni> -<AUni ws="qvm-x-acl">pushpu; pushpu; pushpo</AUni> -<AUni ws="qvm-x-akh">pushpu</AUni> -<AUni ws="qvm-x-akl">pushpu; pushpu; pushpo</AUni> -<AUni ws="qvm-x-ame">pushpu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d1439ea3-485d-4176-bfdc-932083f3b54a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uysha</AUni> -<AUni ws="qvm-x-acl">uysha</AUni> -<AUni ws="qvm-x-akh">uysha</AUni> -<AUni ws="qvm-x-akl">uysha</AUni> -<AUni ws="qvm-x-ame">uysha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+oveja</AUni> -<AUni ws="qvm-x-acl">+oveja</AUni> -<AUni ws="qvm-x-akh">+oveja</AUni> -<AUni ws="qvm-x-akl">+oveja</AUni> -<AUni ws="qvm-x-ame">+oveja</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.638" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="65bc1310-c6a3-45f2-a2b9-b6d9bb2cc616" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+oveja</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="649e1d7f-f742-430a-a617-e880a4e7367b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b2c243d8-98db-44b2-ac1a-de6c49cc5479" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +oveja 
\entryTyp root 
\gENG sheep 
\gSPN oveja 
\e +oveja 
\c N0 
\ach uysha 
\akh uysha 
\acl uysha 
\akl uysha 
\ame uysha</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="d1463c82-0070-41fd-ad75-19e0042cf633" ownerguid="6e3a26d3-0e2a-4271-b3ae-0c9bf1e6d4a7"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d147de1b-1f4c-426f-a65b-f26ff946039b" ownerguid="f4a143dc-621c-4892-9d82-d385c24fa794"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="8a5b7dbb-5811-4575-ab55-a796f9fd394b" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">add.flour</AUni> -<AUni ws="es">echar.harina</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cb26cf49-42dc-4379-81ac-dd6c1f9bb6be" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="d1489a71-419e-48ef-9dba-7242754297db" ownerguid="c5da961a-7d78-4ad4-854c-bbfbad18de27"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d1490c7a-3f4f-44f2-9a70-579b4e63c129" ownerguid="c3f20ce7-d30e-40fd-af8a-713a65c46cd0"> -<ExampleWords> -<AUni ws="en">obeisance, worship, bow in submission/reverence/greeting</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate the significance of the bow?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d14af1ba-04d0-4edf-ad39-35c80a3748c1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">riccha</AUni> -<AUni ws="qvm-x-acl">riccha</AUni> -<AUni ws="qvm-x-akh">rikcha</AUni> -<AUni ws="qvm-x-akl">rikcha</AUni> -<AUni ws="qvm-x-ame">rikcha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*riktra</AUni> -<AUni ws="qvm-x-acl">*riktra</AUni> -<AUni ws="qvm-x-akh">*riktra</AUni> -<AUni ws="qvm-x-akl">*riktra</AUni> -<AUni ws="qvm-x-ame">*riktra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.358" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="071e816e-40ad-4277-87d2-454d46437525" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*riktra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4823269d-2b7b-4393-9f35-4c7dbe7fa94a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f4cdc4a0-bb70-4404-8c01-79b0ac4b765d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *riktra 
\entryTyp root 
\gENG be.awake 
\gSPN ser.despierto 
\e *riktra 
\c V1 
\ach riccha 
\akh rikcha 
\acl riccha 
\akl rikcha 
\ame rikcha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="d15034c3-4e4f-4ae1-b602-bcf1f90c08c6" ownerguid="88a69e5d-91fd-43ce-9650-43b561a4eb63"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">enter</AUni> -<AUni ws="es">entrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fc58244c-1c92-498b-a756-e0b9f52b909a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d15075f7-0a09-48d9-b2a3-112056748964" ownerguid="d13e8a9b-3b60-43fa-895c-c1d236b4a45a"> -<Form> -<AUni ws="qvm-x-ach">exámen; exämin</AUni> -<AUni ws="qvm-x-acl">exámen; exämin; exämen</AUni> -<AUni ws="qvm-x-akh">exámen; exämin</AUni> -<AUni ws="qvm-x-akl">exámen; exämin; exämen</AUni> -<AUni ws="qvm-x-ame">exámen; exämin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d1553f1c-dfe1-4576-a16e-9369cb563636" ownerguid="ccbbd16f-58c5-45c1-bfff-1fba64d9740e"> -<Question> -<AUni ws="en">(13) delimited: action is performed only a little.</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d1556eab-d462-419b-9163-23d1758450ad" ownerguid="68ed3e51-ddc4-4cec-89ff-605259ac9fcf"> -<ExampleWords> -<AUni ws="en">hold your nose, pierce (the septum), put a ring in (the nose)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What do people do to their nose?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d1558c2e-f169-448d-9c42-f7cbfa0a8068" ownerguid="8b52a9d6-a07e-4ac8-8f84-6eb5ba578d97"> -<ExampleWords> -<AUni ws="en">cough, cough (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to coughing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d158557f-4ef1-412f-bd13-763af44ac8d0" ownerguid="7b513a02-c3ae-4243-9410-16854d911258"> -<ExampleWords> -<AUni ws="en">sign (your name), signature</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to writing your name?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d158f682-1c52-4151-8da7-1518fc08c78a" ownerguid="9d865347-6656-4ab7-8613-bf2e8bc53aa7"> -<ExampleWords> -<AUni ws="en">hit, bash, batter, beat up, belt, black eye, bludgeon, bruise, crush, concussion, cudgel, cuff, hammer, horsewhip, kick, knee, knock, lash, pelt, pummel, punch, slap, smack, smash, squash, stone, strike, thwack, whip</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to being injured by being hit?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d15b9ac7-d6a4-45c8-a5d9-88b3272f65a6" ownerguid="c92d7e46-5575-42a4-b495-7a5a9f05ca68"> -<Form> -<AUni ws="qvm-x-ach">manzäna</AUni> -<AUni ws="qvm-x-acl">manzäna</AUni> -<AUni ws="qvm-x-akh">manzäna</AUni> -<AUni ws="qvm-x-akl">manzäna</AUni> -<AUni ws="qvm-x-ame">manzäna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d15bd178-12fd-47bf-a828-74e4b352f4a3" ownerguid="64ce1000-d0fc-4b9e-bc84-5af9ae9d98c1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hind.end</AUni> -<AUni ws="es">trasero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8a671564-2517-4177-b2ad-f1aee4217620" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="d15e9dbf-b9bc-40cc-a322-d7b556b3fe14" ownerguid="3b34cf8d-998b-4cb6-bee7-34cdfdfee925"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="d15f3626-d48f-4367-a3eb-d82e9d046295" ownerguid="1773715e-7b2f-41dc-88eb-99d2c7ea3f66"> -<Form> -<AUni ws="qvm-x-ach">shataca</AUni> -<AUni ws="qvm-x-acl">shataca</AUni> -<AUni ws="qvm-x-akh">shataka</AUni> -<AUni ws="qvm-x-akl">shataka</AUni> -<AUni ws="qvm-x-ame">shataka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d1635e6a-1ae1-43d0-9dc6-fb528d5aef47" ownerguid="9f0bcab1-8256-47a1-853c-408f025e04e7"> -<ExampleWords> -<AUni ws="en">liar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to someone who lies?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d167c58f-7de0-4dbf-b896-e563f37268b0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wachwachayla</AUni> -<AUni ws="qvm-x-acl">wachwachayla</AUni> -<AUni ws="qvm-x-akh">wachwachayla</AUni> -<AUni ws="qvm-x-akl">wachwachayla</AUni> -<AUni ws="qvm-x-ame">wachwachayla</AUni> -</Custom> -<AlternateForms> -<objsur guid="efbfe17c-254e-4f64-a3b5-bc1dd4c8572a" t="o" /> -</AlternateForms> -<CitationForm> -<AUni ws="qvm-x-ach">*wachwachayla</AUni> -<AUni ws="qvm-x-acl">*wachwachayla</AUni> -<AUni ws="qvm-x-akh">*wachwachayla</AUni> -<AUni ws="qvm-x-akl">*wachwachayla</AUni> -<AUni ws="qvm-x-ame">*wachwachayla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.434" /> -<DateModified val="2022-10-15 14:16:50.600" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9c1e1d9f-c771-43f2-9505-1b369fe64d4a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wachwachayla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4550d788-8508-4457-abaf-d44bc35be0d4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5cab6cf5-c190-4fcb-ad67-c9f24a68d3ba" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wachwachayla 
\entryTyp root 
\gENG 
\gSPN en.fila 
\e *wachwachayla 
\c R0 
\ach wachwachayla 
\akh wachwachayla 
\acl wachwachayla 
\akl wachwachayla 
\ame wachwachayla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoAffixAllomorph" guid="d1685fdc-96d8-4baf-9cb8-523863adb67f" ownerguid="394e2c36-b678-4dd3-863d-46ec784324de"> -<Form> -<AUni ws="qvm-x-ach">ca</AUni> -<AUni ws="qvm-x-acl">ca</AUni> -<AUni ws="qvm-x-akh">ka</AUni> -<AUni ws="qvm-x-akl">ka</AUni> -<AUni ws="qvm-x-ame">ka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="b27c54e7-0a24-46d7-b332-e63a45ecffc2" t="r" /> -</PhoneEnv> -</rt> -<rt class="CmSemanticDomain" guid="d1687857-0f1d-4098-affb-b283a6677b6b" ownerguid="f7960e84-5af9-4999-9028-783058aa8c5c"> -<Abbreviation> -<AUni ws="en">8.1.5.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.569" /> -<DateModified val="2022-9-23 16:55:8.569" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to most--more than half and less than all of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Most, almost all</AUni> -</Name> -<Questions> -<objsur guid="7ca396a2-70a1-41d0-ae32-c6b4aee1bd15" t="o" /> -<objsur guid="9eb5ff90-654d-4d5a-863c-ce655e84a049" t="o" /> -<objsur guid="e6fa8e06-996e-4b6a-b444-6bf711273679" t="o" /> -<objsur guid="2c16d4ab-fd37-4f02-9ee8-ec73ac01d8f2" t="o" /> -<objsur guid="8b369173-06c3-449c-88b1-afc959fe6b9a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="d168bfa9-6065-4d2f-8c52-a34d175f6a56"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tishgu</AUni> -<AUni ws="qvm-x-acl">tishgu; tishgu; tishgo</AUni> -<AUni ws="qvm-x-akh">tishqu</AUni> -<AUni ws="qvm-x-akl">tishqu; tishqu; tishqo</AUni> -<AUni ws="qvm-x-ame">tishqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tishqu</AUni> -<AUni ws="qvm-x-acl">*tishqu</AUni> -<AUni ws="qvm-x-akh">*tishqu</AUni> -<AUni ws="qvm-x-akl">*tishqu</AUni> -<AUni ws="qvm-x-ame">*tishqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.926" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="909337b3-eb9d-480c-850c-d76020c7c86b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tishqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5a07149e-b119-4595-a484-df18b571c0f0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="002e86bb-1b81-4566-828f-dc0d4c8cec44" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tishqu 
\entryTyp root 
\gENG sand 
\gSPN arena 
\e *tishqu 
\c N0 
\ach tishgu 
\akh tishqu 
\acl tishgu / _# 
\acl tishgu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tishgo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tishqu / _# 
\akl tishqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tishqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tishqu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d16a9494-ec55-4ad0-ad2d-6aaa191c1992" ownerguid="29a8ebbe-ebc4-4295-b6af-84331d019361"> -<ExampleWords> -<AUni ws="en">abbreviation, abbreviate, be short for, for short, stand for, contraction</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to a short form of a word?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d16b019b-a277-49b2-b477-72f76ccbdf61" ownerguid="c8b8f2cd-0fb9-4306-bd78-43eb27dc15fd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="75b37a8e-3eb6-45d8-b362-7a51793c6831" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="2847f8e4-5aaa-4eda-b52f-2049bab47769" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="d16e4de3-696d-4414-82cf-fec2568fefeb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">arci:lla</AUni> -<AUni ws="qvm-x-acl">arci:lla</AUni> -<AUni ws="qvm-x-akh">arci:lla</AUni> -<AUni ws="qvm-x-akl">arci:lla</AUni> -<AUni ws="qvm-x-ame">arci:lla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+arcilla</AUni> -<AUni ws="qvm-x-acl">+arcilla</AUni> -<AUni ws="qvm-x-akh">+arcilla</AUni> -<AUni ws="qvm-x-akl">+arcilla</AUni> -<AUni ws="qvm-x-ame">+arcilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.820" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e0900cc4-690e-472e-ba05-fd08aa980c15" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+arcilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2c80b148-d950-42f3-bd9f-c2202aefc0be" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="85146c09-6e4c-4e92-a8f4-0f1643ce6407" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +arcilla 
\entryTyp root 
\gENG 
\gSPN 
\e +arcilla 
\c N0 
\ach arci:lla 
\akh arci:lla 
\acl arci:lla 
\akl arci:lla 
\ame arci:lla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="d1710c8d-8621-4f36-892d-68d0fff07b9b" ownerguid="ff3bf4e5-9c82-4318-8e96-a83c87d83a2e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">separate</AUni> -<AUni ws="es">apartado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d52ba5f4-5019-480b-ae41-7d0cbb91fe7b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d171842e-dbe9-4f72-9e2f-c2c5273b2123" ownerguid="c01bbcef-7d89-4753-bafd-3a7f23648982"> -<ExampleWords> -<AUni ws="en">medic, corpsman, ambulance driver, paramedic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to someone who give emergency treatment to someone who has been injured?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d175aeb4-7377-4326-b8ec-c3a567061eb4" ownerguid="1ee7bae5-1414-4f2e-ac5e-ce5178a628ec"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">almohada</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3fd1ffe4-4890-44ba-97a7-68712a2d7b50" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="d178c175-c562-43e2-82d6-f3f28329a09d" ownerguid="1f49a130-d4e0-4090-b0f3-6d778c4e1ce1"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d17a3958-c7b9-4388-a63e-699319706a85" ownerguid="ed6efe5f-8b62-419d-a01f-ffb8bf4ceb06"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">approve</AUni> -<AUni ws="es">aprobar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4d978dd9-f495-4571-80cc-a142b61cc06a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="d17a8a67-48d5-42e3-ba64-32708483e536"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shulala; shulala:</AUni> -<AUni ws="qvm-x-acl">shulala; shulala:</AUni> -<AUni ws="qvm-x-akh">shulala; shulala:</AUni> -<AUni ws="qvm-x-akl">shulala; shulala:</AUni> -<AUni ws="qvm-x-ame">shulala; shulala:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shullalla:</AUni> -<AUni ws="qvm-x-acl">*shullalla:</AUni> -<AUni ws="qvm-x-akh">*shullalla:</AUni> -<AUni ws="qvm-x-akl">*shullalla:</AUni> -<AUni ws="qvm-x-ame">*shullalla:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.622" /> -<DateModified val="2022-10-10 21:19:47.693" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7454aef5-19dd-496b-a08b-5b3d9915d9bf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shullalla:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c7e3e66c-7867-43c2-8153-b04596045bec" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2c427245-e60b-4eb8-aacc-3c8dc257c98a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shullalla: 
\entryTyp root 
\gENG slide/fall 
\gSPN 
\e *shullalla: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach shulala foreshortened 
\ach shulala: 
\akh shulala foreshortened 
\akh shulala: 
\acl shulala foreshortened 
\acl shulala: 
\akl shulala foreshortened 
\akl shulala: 
\ame shulala foreshortened 
\ame shulala:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="d17f0e31-8a2c-4875-b414-c9a0e924dd29" ownerguid="38994546-69ff-4f92-9219-4ba104de87be"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d17fbea8-e17f-49d0-9517-7651915f831e" ownerguid="134c68a9-ac3f-4b7e-8fca-63642d796a75"> -<ExampleWords> -<AUni ws="en">people, populace, citizenry, nation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to all the citizens of a country?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d182dfeb-2032-42dc-ae71-531e123ec886" ownerguid="4d040b38-4fb4-4bf7-8372-0ca7819dc383"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mate</AUni> -<AUni ws="es">aparear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b8251526-eed2-4ed2-a998-519ce7ca15ce" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="d18515b2-75c1-48d1-81e8-f22be8396300" ownerguid="b0e526a5-cbfa-4e7d-a32b-e7084459b1eb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="405f1654-370d-4749-8c59-bd6252af4f62" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="4e8fee2b-f341-4ad4-972f-c9f859b80bea" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d18b2c93-6143-44f1-9410-105c1537d8b1" ownerguid="f7eed06a-3d04-48d3-81a6-a30f69fc03d8"> -<Form> -<AUni ws="qvm-x-ach">gogu</AUni> -<AUni ws="qvm-x-acl">gogu; gogu; gogo</AUni> -<AUni ws="qvm-x-akh">qoqu</AUni> -<AUni ws="qvm-x-akl">qoqu; qoqu; qoqo</AUni> -<AUni ws="qvm-x-ame">ququ</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d198d9e9-593d-4bb7-bd30-df8a09de7638" ownerguid="73499b8b-76fc-4121-8bfa-1bdebe537259"> -<ExampleWords> -<AUni ws="en">wild (animal), untamed, feral, wildlife, beast</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to wild animals?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d198e68d-2f11-4047-b4bd-8cb27caa5a8f" ownerguid="c5f78084-f48c-4610-b101-af68b8ee5bac"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="d19a6359-3c4d-4a3a-94ec-91c32304f1d8"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">suffix</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="d19ad677-80b0-4721-9cdc-df90ece96a4a" ownerguid="d83402b0-6631-4925-9300-54aa3b751e9b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d19af970-c671-4d6c-868f-63acb94ef733" ownerguid="b6e9b9c9-632b-48e7-99f7-fa53ebcb3bc5"> -<ExampleWords> -<AUni ws="en">needle, pattern</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What things are used to knit?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d1a19ad3-2c14-4e72-9030-d68c0368e978" ownerguid="bba30b56-6cd8-4542-81ab-f983cf1354bd"> -<ExampleWords> -<AUni ws="en">distant, remote, faraway, out of the way, long-distance, far-flung</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is far?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d1a4062f-5ba1-4a16-bae0-c26e9b265816" ownerguid="623c8efb-3af4-455e-a528-26ce16f10dc0"> -<Form> -<AUni ws="qvm-x-ach">nunush</AUni> -<AUni ws="qvm-x-acl">nunush</AUni> -<AUni ws="qvm-x-akh">nunush</AUni> -<AUni ws="qvm-x-akl">nunush</AUni> -<AUni ws="qvm-x-ame">nunush</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d1a4fa83-7568-4d27-acfc-600aaf6541d9" ownerguid="6c305af5-cff5-4f7f-bd89-040d4c265355"> -<ExampleWords> -<AUni ws="en">thin, porous, spongy, hollow, tenuous, rare</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is not dense?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d1a7361f-4753-40d4-8f5e-fc92f8befaed" ownerguid="8252dad9-1a9d-4ba2-bcde-204a1032a566"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d1a7a9f4-9623-4612-92f8-96c0fa5e3c47" ownerguid="32fc19fd-a04e-4b69-9442-f7d57348ec55"> -<ExampleWords> -<AUni ws="en">cow pasture, cattle range, cow barn, cowshed, stall</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) Where are cows kept?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="d1aa6dca-6e86-4575-a555-86fd20218c4f" ownerguid="f157da5b-c6a3-4ff9-9bdb-d54dcf17fb19"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="4b66d075-8f64-4be3-96f1-106afe03d3bc" t="o" /> -<objsur guid="0213bf68-c152-4ff5-a2d6-50af8388da94" t="o" /> -<objsur guid="c754ff49-4bcd-40b1-adf8-58c86d4c2176" t="o" /> -<objsur guid="8e530858-6327-4bda-8aee-e29bc66479d1" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="d1abb23e-f2a2-4c75-90ae-d950f54ae53a" ownerguid="1d138c73-f30e-4fc3-8c5a-e2f53084d956"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="d1ad1ae8-6ac0-4a83-bf10-504c050a02eb" ownerguid="247643e1-281d-409c-9b29-ea9f202672c1"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="d1ad4b21-19ad-4175-979a-832533796120"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quimsa</AUni> -<AUni ws="qvm-x-acl">quimsa</AUni> -<AUni ws="qvm-x-akh">kimsa</AUni> -<AUni ws="qvm-x-akl">kimsa</AUni> -<AUni ws="qvm-x-ame">kimsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kimsa</AUni> -<AUni ws="qvm-x-acl">*kimsa</AUni> -<AUni ws="qvm-x-akh">*kimsa</AUni> -<AUni ws="qvm-x-akl">*kimsa</AUni> -<AUni ws="qvm-x-ame">*kimsa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.983" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="41109bdc-0212-42a2-9d55-1a7251e60e21" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kimsa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="01f2e0f4-4933-4a65-a9cc-e845c315fb2a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c56f4ba7-8ae7-40c9-bdf4-d733649d1b04" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kimsa 
\entryTyp root 
\gENG three 
\gSPN tres 
\e *kimsa 
\c N0 
\ach quimsa 
\akh kimsa 
\acl quimsa 
\akl kimsa 
\ame kimsa</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="d1adf5cc-74a6-4d54-9198-d70564ddbd6e" ownerguid="658631d0-f29a-4ed0-925e-04fa323762f9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="d1ae0396-68b1-4b49-a879-bc75174890da" ownerguid="c416afa2-6841-4e89-a089-0ead03c816e5"> -<Form> -<AUni ws="qvm-x-ach">perol</AUni> -<AUni ws="qvm-x-acl">perol</AUni> -<AUni ws="qvm-x-akh">perol</AUni> -<AUni ws="qvm-x-akl">perol</AUni> -<AUni ws="qvm-x-ame">perol</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="d1aecdba-3938-4b0c-a2e6-7dc3b7cc5cde" ownerguid="4f22ebdb-01db-432a-9d7a-41cd44010265"> -<Abbreviation> -<AUni ws="en">6.8.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.486" /> -<DateModified val="2022-9-23 16:55:8.486" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to producing wealth.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Produce wealth</AUni> -</Name> -<Questions> -<objsur guid="79097bf2-8519-4e4a-840a-84ec29c7ca1e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="d1af163b-a334-459f-b504-5ecdcb362666" ownerguid="611aa361-4ddd-450b-a152-94984a274575"> -<ExampleWords> -<AUni ws="en">ghost town, abandoned field, abandoned homestead</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a place that has been abandoned?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d1b1020e-de14-4f11-aaa2-890d12c4425f" ownerguid="7fa7e166-5942-436b-8d3f-13d56519233b"> -<Form> -<AUni ws="qvm-x-ach">alma</AUni> -<AUni ws="qvm-x-acl">alma</AUni> -<AUni ws="qvm-x-akh">alma</AUni> -<AUni ws="qvm-x-akl">alma</AUni> -<AUni ws="qvm-x-ame">alma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="d1b37519-fe28-4857-af64-d58fd0f4f579" ownerguid="3dddcd57-36f8-4d5a-8ad6-0cee0517cec4"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="d1b3d0f0-5319-4a6a-8a70-2179a8e76d22" ownerguid="286ee16c-a218-43d5-bbac-ab15f80c3fcf"> -<Abbreviation> -<AUni ws="en">8.1.7.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.579" /> -<DateModified val="2022-9-23 16:55:8.579" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to needing something for some purpose.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>57E Need, Lack</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Need</AUni> -</Name> -<Questions> -<objsur guid="e62751e9-a753-4b10-a21f-75f1ca90dc25" t="o" /> -<objsur guid="777488c6-841c-4ffb-821e-8e8dbe9c9ed9" t="o" /> -<objsur guid="32b5b89d-f706-4dcd-84ef-20bfad9f31c7" t="o" /> -<objsur guid="e458633f-a7bc-45f0-b18a-fc78379d0dfe" t="o" /> -<objsur guid="ebef0ce5-64ff-42ca-bac5-b17d725bfc65" t="o" /> -<objsur guid="738b6abd-4e63-4383-b0e4-7961af11176b" t="o" /> -<objsur guid="e5246f4f-581c-4a25-8183-d5c8f118d0a9" t="o" /> -<objsur guid="4c4a0963-119d-4461-ba10-369b9c7a9f3c" t="o" /> -<objsur guid="cad69d15-5d46-473f-ae9e-b0aba18b3141" t="o" /> -<objsur guid="7938bbc8-b6c3-4463-baf6-a5e802c23a15" t="o" /> -<objsur guid="81633ead-4fa8-4c3b-b7df-704ef1f2ef7b" t="o" /> -<objsur guid="485716ca-5d9c-42e0-a87b-35740e8f67ad" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="d1b97313-ed82-4c6f-9720-e4120e5d9f7d" ownerguid="2155198b-ec9f-4a49-a77b-daa69776d026"> -<Form> -<AUni ws="qvm-x-ach">amayna</AUni> -<AUni ws="qvm-x-acl">amayna</AUni> -<AUni ws="qvm-x-akh">amayna</AUni> -<AUni ws="qvm-x-akl">amayna</AUni> -<AUni ws="qvm-x-ame">amayna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d1c27acd-f745-4224-b3c6-a06f906c32f4" ownerguid="da038c26-ac03-418d-92ef-2820686c3b30"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">través</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a8f9fa65-385f-4596-93d8-642306b99ddf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d1c5d45c-4b8b-42b1-ab42-36b9d3432042" ownerguid="21ebc64a-a1b8-45bd-b7f6-143a053f1d31"> -<ExampleWords> -<AUni ws="en">half-court, full-court, pick up game</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the types of games?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d1c8b687-b59d-4f5b-9387-92c636d94f4f" ownerguid="ca888b55-65c1-4d59-a662-afc8a367db43"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">again</AUni> -<AUni ws="es">otra.vez</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="51ed09e7-8831-4023-b4c7-903675c93f28" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="d1c92d10-e1bb-4942-a69f-b7236c5848a6" ownerguid="48517c0a-a671-4332-9835-ba8f05f79470"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d1ceff21-54e7-4594-978c-3e8d1f89ccad" ownerguid="99327483-571e-48ae-9194-e7f224067ffe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pot</AUni> -<AUni ws="es">tenaja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="858e82f3-cc40-4dee-8adf-0dd3c5d16e67" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d1d01c5d-d0f2-4d29-a668-3be9b2244a5e" ownerguid="eb81c747-0ebf-451c-8969-8474a94a4d47"> -<Form> -<AUni ws="qvm-x-ach">tari</AUni> -<AUni ws="qvm-x-acl">tari; tare</AUni> -<AUni ws="qvm-x-akh">tari</AUni> -<AUni ws="qvm-x-akl">tari; tare</AUni> -<AUni ws="qvm-x-ame">tari</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d1d02e46-4d98-4b89-b9b5-535068c0832a" ownerguid="a336e26e-c41e-4a12-bd4a-b62ca78865eb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">slippery.spot</AUni> -<AUni ws="es">lugar.resbalozo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="75d3140e-0023-46a7-809e-f9106bf27e78" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d1d182d0-0c28-40e2-b2ec-48c71fd52db8" ownerguid="095e25b2-3b28-4ff9-a32a-ff660cd188df"> -<Form> -<AUni ws="qvm-x-ach">shillu</AUni> -<AUni ws="qvm-x-acl">shillu; shillu; shillo</AUni> -<AUni ws="qvm-x-akh">shillu</AUni> -<AUni ws="qvm-x-akl">shillu; shillu; shillo</AUni> -<AUni ws="qvm-x-ame">shillu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="d1d1f4ac-c434-4c28-a599-53f795b97815" ownerguid="ff877ccd-2f16-4d3d-8b3d-ee7a0968f239"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">SNG 2.3 Munti rurincho manzäna wayuraycagnogmi gamga lapan mözupitapis mas cuyaylapag caycanqui, papïto.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="d1d364b6-495d-4b03-b0e1-ff765aa11d56" ownerguid="b3779c87-0f69-469c-8014-943e0338f9bc"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="d1d3c5d6-fcbf-4136-b669-48753fa1881c" ownerguid="0f8fce3e-7aeb-49f5-ab43-fb6dd8e148e1"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="d1d58e9c-b862-495c-87f6-5e987f6a88c6" ownerguid="ebe57d1f-9413-4d4a-960c-8585fd7aa2d7"> -<Form> -<AUni ws="qvm-x-ach">gagla</AUni> -<AUni ws="qvm-x-acl">gagla</AUni> -<AUni ws="qvm-x-akh">qaqla</AUni> -<AUni ws="qvm-x-akl">qaqla</AUni> -<AUni ws="qvm-x-ame">qaqla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d1d5d388-5a3d-4600-95ef-032566914525" ownerguid="68a0cab6-a726-4cb8-9fcd-bdfdc2b010ff"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gentle</AUni> -<AUni ws="es">manso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b395cbfb-505e-4b96-b0af-cae1f921a6b4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d1d69c36-8728-46e3-9954-163d9ba58ebc" ownerguid="6ea9bfc6-723c-466f-9efc-0992879ae47d"> -<ExampleWords> -<AUni ws="en">tattoo (v), get a tattoo</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to making the scar?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d1d93ff9-d61d-4a8d-9845-1b7fe943e6dc" ownerguid="ed4a2ca6-c03c-4c72-9431-b72fb7294b8f"> -<ExampleWords> -<AUni ws="en">wedding anniversary</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to the day of a wedding which is celebrated every year?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d1d983c7-abaa-4170-8b64-2e744f110d44"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">secundaria</AUni> -<AUni ws="qvm-x-acl">secundaria</AUni> -<AUni ws="qvm-x-akh">secundaria</AUni> -<AUni ws="qvm-x-akl">secundaria</AUni> -<AUni ws="qvm-x-ame">secundaria</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+secundaria</AUni> -<AUni ws="qvm-x-acl">+secundaria</AUni> -<AUni ws="qvm-x-akh">+secundaria</AUni> -<AUni ws="qvm-x-akl">+secundaria</AUni> -<AUni ws="qvm-x-ame">+secundaria</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.480" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d43daf47-cc6b-46a1-a590-79e32d8de45e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+secundaria</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="471c929e-ab44-40c7-b400-6ebe90c0ab3e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6c0ca01b-4c30-4d9f-828f-4fe98adeb3ca" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +secundaria 
\entryTyp root 
\gENG 
\gSPN 
\e +secundaria 
\c N0 
\ach secundaria 
\akh secundaria 
\acl secundaria 
\akl secundaria 
\ame secundaria</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="d1da1c3c-4ac3-4657-a120-d379c8d1d7b9" ownerguid="08f53049-0abc-43c7-89fa-c6907fab1eae"> -<Form> -<AUni ws="qvm-x-ach">shegshi; shegshï</AUni> -<AUni ws="qvm-x-acl">shegshë; shegshi; shegshe</AUni> -<AUni ws="qvm-x-akh">sheqshi; sheqshï</AUni> -<AUni ws="qvm-x-akl">sheqshë; sheqshi; sheqshe</AUni> -<AUni ws="qvm-x-ame">shiqshi; shiqshï</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d1dca22b-5ec2-44c8-84e1-dac0acfb62a2" ownerguid="22bf031c-cd0a-4ae5-8e49-a569cad42ab1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pudding</AUni> -<AUni ws="es">mazamorra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8e7b0bea-ee2b-46a5-8967-46a8c6b451bc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="d1dca488-8c14-4ff4-b2af-8b90b42f9392" ownerguid="0a12aec9-c600-46d1-b4fa-7ce4c8229bfd"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d1decea2-1a06-4243-9276-72840666fb88" ownerguid="dc71598d-21a2-4598-9c12-13978796d2c9"> -<ExampleWords> -<AUni ws="en">broom, dustpan, mop, scrub brush, rake, brush</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What tools are used?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d1e0665e-50b8-4602-b873-4a30bd259dff" ownerguid="2725259a-7ebf-44fc-8107-3c320e583cef"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d1e0e11d-1844-4650-979c-089e24159435" ownerguid="ed21ddba-be9e-45f5-914b-27d46ee0e2a7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">vocal</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="97d88a1b-8834-4df0-a69e-c0457ad7f2a0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d1e0edff-bb92-4997-ba48-5defe05f030b" ownerguid="9edd1d74-f08a-4f5e-a196-3478c9a9d111"> -<Form> -<AUni ws="qvm-x-ach">träza</AUni> -<AUni ws="qvm-x-acl">träza</AUni> -<AUni ws="qvm-x-akh">träza</AUni> -<AUni ws="qvm-x-akl">träza</AUni> -<AUni ws="qvm-x-ame">träza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="d1e58469-52e3-4b50-b0de-00bf9f09f8d4" ownerguid="529140d1-6e8e-44fe-99f0-95289e933607"> -<Abbreviation> -<AUni ws="en">4.1.9.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to grandparents and ancestors.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Grandfather, grandmother</AUni> -</Name> -<OcmCodes> -<Uni>603 Grandparents and Grandchildren</Uni> -</OcmCodes> -<Questions> -<objsur guid="e2b840eb-4e1d-4b55-9ab3-4e8fc61569cc" t="o" /> -<objsur guid="93fae065-83bd-4ac7-8b88-25ebd5e6083c" t="o" /> -<objsur guid="af03bf45-2ad8-408d-a3c7-a9019b3396be" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoDerivAffMsa" guid="d1e6468b-d36e-43e5-9c6a-21cf438a65d6" ownerguid="df4065f0-3967-4b43-bf1a-ab9627c48aed"> -<FromPartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</FromPartOfSpeech> -<ToPartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</ToPartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="d1e69c96-4361-411a-8b80-5776a41496c2" ownerguid="d5071ea4-711e-489c-b97f-e4cee62229ca"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="d1e7efd0-1a2d-4164-826d-2333b8ee649b" ownerguid="f0337a78-045c-4000-a0a9-ff541aff9a38"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="8bcb23a0-c7a2-4040-80b0-1098e5b3b128" t="o" /> -<objsur guid="7e926de2-f5f9-4163-9b9f-3df4fa985150" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="d1f005cd-4f3e-4578-bb1f-60923a05a977"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">impu:ru</AUni> -<AUni ws="qvm-x-acl">impu:ru; impu:ru; impu:ro</AUni> -<AUni ws="qvm-x-akh">impu:ru</AUni> -<AUni ws="qvm-x-akl">impu:ru; impu:ru; impu:ro</AUni> -<AUni ws="qvm-x-ame">impu:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+impuro</AUni> -<AUni ws="qvm-x-acl">+impuro</AUni> -<AUni ws="qvm-x-akh">+impuro</AUni> -<AUni ws="qvm-x-akl">+impuro</AUni> -<AUni ws="qvm-x-ame">+impuro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.812" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a6c61264-d1f6-431b-aaac-f043a77ed9c5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+impuro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8af3e5df-7f86-499d-85ad-4440cfd07fa2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="435df14c-be24-43b4-8184-6d09fd9d8037" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +impuro 
\entryTyp root 
\gENG 
\gSPN 
\e +impuro 
\c N0 
\ach impu:ru 
\akh impu:ru 
\acl impu:ru / _# 
\acl impu:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl impu:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl impu:ru / _# 
\akl impu:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl impu:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame impu:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d1f0df8d-1556-42e8-864d-5e39b3eb5cae"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pay</AUni> -<AUni ws="qvm-x-acl">pay</AUni> -<AUni ws="qvm-x-akh">pay</AUni> -<AUni ws="qvm-x-akl">pay</AUni> -<AUni ws="qvm-x-ame">pay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pay</AUni> -<AUni ws="qvm-x-acl">*pay</AUni> -<AUni ws="qvm-x-akh">*pay</AUni> -<AUni ws="qvm-x-akl">*pay</AUni> -<AUni ws="qvm-x-ame">*pay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.769" /> -<DateModified val="2022-10-16 14:40:19.172" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6d4121d0-f0ed-4233-81e4-f54d239a5704" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d9219b0e-14bd-4167-bd13-182acfa0647f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="53335ab1-5458-404e-a028-2cab470f48bc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pay 
\entryTyp root 
\gENG s/he 
\gSPN él(la) 
\e *pay 
\c N0 
\mp +FinalC 
\ach pay 
\akh pay 
\acl pay 
\akl pay 
\ame pay</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d1f0e873-9244-49df-aa83-4667f07fb91e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cho:ca</AUni> -<AUni ws="qvm-x-acl">cho:ca</AUni> -<AUni ws="qvm-x-akh">cho:ca</AUni> -<AUni ws="qvm-x-akl">cho:ca</AUni> -<AUni ws="qvm-x-ame">cho:ca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+chocar</AUni> -<AUni ws="qvm-x-acl">+chocar</AUni> -<AUni ws="qvm-x-akh">+chocar</AUni> -<AUni ws="qvm-x-akl">+chocar</AUni> -<AUni ws="qvm-x-ame">+chocar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.325" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="96690d3f-afc7-4fd7-8a8d-566821134d97" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+chocar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e54a0b5d-952e-4d2b-9341-20c3f5e166fa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c66523e5-9cdd-49d4-9a8e-0895ffdc69b4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +chocar 
\entryTyp root 
\gENG 
\gSPN 
\e +chocar 
\c V2 
\ach cho:ca 
\akh cho:ca 
\acl cho:ca 
\akl cho:ca 
\ame cho:ca 
\i DAN 7.2 Tsaynog pulchagyaycargan cay patsacho chuscun lädupita wayracuna quiquinpura chöcaptinmi.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d1f3a40b-a749-4f8c-b118-2643f66a4edc" ownerguid="6e7d10f8-6da5-4a8a-a06d-952511194105"> -<ExampleWords> -<AUni ws="en">make something lighter, lighten</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to making something light?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d1f41895-d9d3-4168-a90e-e0e8639873d6" ownerguid="c7f350ff-2a07-4fc8-be34-bf651711bcd1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="40ff96f5-d1fa-4449-8fab-5f4adc59425c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d1f57d8b-3aca-4291-9d12-5aafcc70344e" ownerguid="2933a9c1-aa62-46fb-a03c-68aed7fae9b7"> -<ExampleWords> -<AUni ws="en">flare up, flame up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a fire that starts to burn again after having died down?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d1fa5a96-43b1-4974-9134-dd49a6603053"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">na</AUni> -<AUni ws="qvm-x-acl">na</AUni> -<AUni ws="qvm-x-akh">na</AUni> -<AUni ws="qvm-x-akl">na</AUni> -<AUni ws="qvm-x-ame">na</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.538" /> -<DateModified val="2022-10-15 16:7:30.762" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="2" /> -<LexemeForm> -<objsur guid="7a9a0db9-5eb5-414c-9dd3-907a54abc86b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">NMN</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a91771ad-8785-4e3e-b6f8-793820e3a8bd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="288deac0-6a0a-4593-80f3-852573e035fc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx NMN 
\entryTyp suffix 
\gENG NMN 
\gSPN NMN 
\e NMN 
\c V1/N0 
\o 080 
\mp +foreshortens 
\ach na 
\akh na 
\acl na 
\akl na 
\ame na 
\mcc NMN / ~_ [pur] 
\mcc NMN / [NoTakeNMNPers] ~_ [poss] [case] 
\mcc NMN / ~_ ... [pur] 
\mcc NMN / ~_ [pur] 
\mcc NMN / PRF ~_ 
\mcc NMN / ~_ [poss] [lim] 
\co mcc NMN / ~[Obj] _ 
\co tdhm wanusiyämänanta. 
\tr *wañu.v CAUS PL 1O NOM 3P.V OBJ. 
\mcc NMN / ~_ [poss] POL 
\mcc NMN / ~_ [poss] JUST2.C 1P.V 
\co mcc NMN / [ref] ~_ [case] | NO: PN tucsicunawanmi < V2 *tuksi > REF NMN INST DIR.C 
\co tdnc ratakunatapis. 
\tr < N0 *rata.n > PLUR OBJ EVEN1. 
\co %4%< V2 *rata.v > REFDIR NMN OBJ EVEN1%< V2 *rata.v > REF NMN OBJ EVEN1%< N0 *rata.n > PLUR OBJ EVEN1%< V1 *rata: > REFDIR NMN OBJ EVEN1%</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d1ff1a11-57fc-4395-8586-0906194e8319" ownerguid="726923d4-b25c-46eb-8ab0-427207177ae3"> -<ExampleWords> -<AUni ws="en">gather ingredients, add ingredients, pour into dish, dilute, thicken, concentrated, dissolve, sweeten</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the steps in preparing food?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d1ffe734-0f20-4b85-81d7-feda360df240"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rucsu</AUni> -<AUni ws="qvm-x-acl">rucsu; rucsu; rucso</AUni> -<AUni ws="qvm-x-akh">ruksu</AUni> -<AUni ws="qvm-x-akl">ruksu; ruksu; rukso</AUni> -<AUni ws="qvm-x-ame">ruksu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ruksu</AUni> -<AUni ws="qvm-x-acl">*ruksu</AUni> -<AUni ws="qvm-x-akh">*ruksu</AUni> -<AUni ws="qvm-x-akl">*ruksu</AUni> -<AUni ws="qvm-x-ame">*ruksu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.388" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="70fb1d80-ebe2-4f8e-b926-dbe1a5d1ec19" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ruksu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f9b87870-7b39-41a5-8cb3-e991b17cf5ff" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8fafb28d-6170-40ea-a565-f6415372ebce" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ruksu 
\entryTyp root 
\gENG 
\gSPN 
\e *ruksu 
\c N0 
\ach rucsu 
\akh ruksu 
\acl rucsu / _# 
\acl rucsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl rucso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ruksu / _# 
\akl ruksu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl rukso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ruksu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="d2001c9c-3c37-4910-8b8a-adcffc6fbf26" ownerguid="f76c3803-1c7a-4181-9a87-64ae7231a67d"> -<Abbreviation> -<AUni ws="en">8.5.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that refer to a place on another side of something from the reference point. 'Across' involves three things--the object, the reference point, and something else in between the two.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>83G Opposite, Over Against, Across From, Offshore From; 83J Beyond, On the Other Side Of</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Across</AUni> -</Name> -<Questions> -<objsur guid="9d88bd46-3f5b-4260-9bc6-79a76ddf5230" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="d2016811-b963-456b-b802-8d0afd3f9e92" ownerguid="f711d703-1eac-4059-b0da-24d34bd8df5e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 R0/R0 BN/BN</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">SIM1</AUni> -<AUni ws="es">SIM1</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dbacef16-50cb-4f71-a590-54ec4684dfe4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="d2062b0e-eb1d-4620-8c9d-33ceb10f1874" ownerguid="48ca8966-6a2f-4197-9d87-6c3fa2f3f8b4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="d2064bed-8fc1-4149-a02d-cc2c1c741531" ownerguid="20ef979b-dc82-4bf3-a4c4-bc02c73ee4b3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="d206ff77-02b6-4dd2-8d85-8c24ce095d72" ownerguid="325cc876-f8a2-4609-b9e9-548f9b47c9b4"> -<Form> -<AUni ws="qvm-x-ach">tincu</AUni> -<AUni ws="qvm-x-acl">tincu; tincu; tinco</AUni> -<AUni ws="qvm-x-akh">tinku</AUni> -<AUni ws="qvm-x-akl">tinku; tinku; tinko</AUni> -<AUni ws="qvm-x-ame">tinku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d20a7f46-1849-488e-8262-93a0167d4210"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuadernu; cuaderno</AUni> -<AUni ws="qvm-x-acl">cuadernu; cuadernu; cuaderno</AUni> -<AUni ws="qvm-x-akh">cuadernu; cuaderno</AUni> -<AUni ws="qvm-x-akl">cuadernu; cuadernu; cuaderno</AUni> -<AUni ws="qvm-x-ame">cuadernu; cuaderno</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuaderno</AUni> -<AUni ws="qvm-x-acl">+cuaderno</AUni> -<AUni ws="qvm-x-akh">+cuaderno</AUni> -<AUni ws="qvm-x-akl">+cuaderno</AUni> -<AUni ws="qvm-x-ame">+cuaderno</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.223" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="15a94be4-ecb1-4277-b2da-d2446f537170" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuaderno</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="457916a6-5350-4431-960d-1b12208239f1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a9098bd2-9a52-4226-a033-701f67c7a05e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuaderno 
\entryTyp root 
\gENG notebook 
\gSPN cuaderno 
\e +cuaderno 
\c N0 
\ach cuadernu / ~_# 
\ach cuaderno / _# 
\akh cuadernu / ~_# 
\akh cuaderno / _# 
\acl cuadernu / ~_# 
\acl cuadernu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cuaderno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cuadernu / ~_# 
\akl cuadernu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cuaderno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cuadernu / ~_# 
\ame cuaderno / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmBaseAnnotation" guid="d20e73e6-f549-4382-b190-dcf89f2e8123" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BeginObject> -<objsur guid="ecc38dfe-17e1-43c0-a97d-424b6daa6ea3" t="r" /> -</BeginObject> -<BeginOffset val="0" /> -<BeginRef val="0" /> -<CompDetails> -<Uni><phonEnv status="segment" pos="1">/~_#</phonEnv></Uni> -</CompDetails> -<DateCreated val="2022-10-13 20:17:36.850" /> -<DateModified val="2022-10-13 20:17:36.850" /> -<EndOffset val="0" /> -<EndRef val="0" /> -<Flid val="5097008" /> -<Source> -<objsur guid="1257a971-fcef-4f06-a5e2-c289de5aaf72" t="r" /> -</Source> -<Text> -<objsur guid="4542fe53-014b-4a89-8aab-b1714d601956" t="o" /> -</Text> -<WsSelector val="0" /> -</rt> -<rt class="CmDomainQ" guid="d210072f-6411-4b6f-bf65-4989e00b27f1" ownerguid="df2ee830-0668-43d7-8a32-e2fd3e7b31d8"> -<Question> -<AUni ws="en">(10) remote: combines with other tense labels to indicate a situation occurring temporally distant from the moment of speech.</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d210b04b-657d-4f72-8777-045e404e9bbd" ownerguid="79140357-b082-48e9-8d25-b34ee0a5ff5a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="d212adf8-f182-4cab-9708-eb7ea2535c02"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uru</AUni> -<AUni ws="qvm-x-acl">uru; uru; uro</AUni> -<AUni ws="qvm-x-akh">uru</AUni> -<AUni ws="qvm-x-akl">uru; uru; uro</AUni> -<AUni ws="qvm-x-ame">uru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uru</AUni> -<AUni ws="qvm-x-acl">*uru</AUni> -<AUni ws="qvm-x-akh">*uru</AUni> -<AUni ws="qvm-x-akl">*uru</AUni> -<AUni ws="qvm-x-ame">*uru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.271" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0f48e6d9-a451-4796-a269-093e624f904c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2c2cd814-0957-4477-901e-e9a2749a48a4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0517c2a7-c190-4312-879d-54fc5d402a1a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uru 
\entryTyp root 
\gENG tick 
\gSPN garrapata 
\e *uru 
\c N0 
\ach uru 
\akh uru 
\acl uru / _# 
\acl uru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl uro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl uru / _# 
\akl uru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl uro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame uru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d216a2e9-775a-4c3b-9a29-22b91ff11797" ownerguid="d83ebe2c-c1d6-49ec-a4a9-1cdced843387"> -<ExampleWords> -<AUni ws="en">be conscious, consciousness, awake</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being conscious?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d2178968-475c-458f-9d74-6acd17c52e51" ownerguid="c26fdcd4-5ead-4eb0-8bd0-ebf01e06e4e6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d218f297-a4ad-4326-9f06-0fe102780a4b" ownerguid="5901caae-f6c4-4d6d-8ce4-d5ba35a3fd96"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="6ea47161-0ab6-41be-b096-9dcf3b44aec5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="d219ca82-8616-423d-a266-758f621759e6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shilpi</AUni> -<AUni ws="qvm-x-acl">shilpi; shilpi; shilpe</AUni> -<AUni ws="qvm-x-akh">shilpi</AUni> -<AUni ws="qvm-x-akl">shilpi; shilpi; shilpe</AUni> -<AUni ws="qvm-x-ame">shilpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shillpi</AUni> -<AUni ws="qvm-x-acl">*shillpi</AUni> -<AUni ws="qvm-x-akh">*shillpi</AUni> -<AUni ws="qvm-x-akl">*shillpi</AUni> -<AUni ws="qvm-x-ame">*shillpi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.581" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="35891df2-2701-4710-bb17-b6677a410c44" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shillpi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f0c716cb-9e80-4b47-9d3c-c1f4f345dd1e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fea1cc45-51ee-498c-ba28-eef1955c862f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shillpi 
\entryTyp root 
\gENG tassle 
\gSPN borla 
\e *shillpi 
\c N0 
\mp +FinalI 
\ach shilpi 
\akh shilpi 
\acl shilpi / _# 
\acl shilpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shilpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shilpi / _# 
\akl shilpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shilpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shilpi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="d21d7be5-1473-423f-b3e6-b09e84ad2deb" ownerguid="b080162c-9578-4fdc-bd39-d5f25cb3c473"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">come.on</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ec514334-4500-4375-8c2b-5f77b5185c56" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="d21db541-4122-465f-9db5-4c76f5e84426" ownerguid="4f22ebdb-01db-432a-9d7a-41cd44010265"> -<Abbreviation> -<AUni ws="en">6.8.2.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to earning money for work that you do.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>57P Earn, Gain, Do Business x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Earn</AUni> -</Name> -<Questions> -<objsur guid="09fd268a-cf7e-46ed-9c16-3a66643bee37" t="o" /> -<objsur guid="f8dd9ba0-f561-401d-8c56-63e08b1a65eb" t="o" /> -<objsur guid="dcf17844-b87d-4f50-b6a6-144d1f482eff" t="o" /> -<objsur guid="578a186d-d68d-411c-8ec0-5479c87301aa" t="o" /> -<objsur guid="f6a36f33-513f-4dba-b5ce-717b6ec7413f" t="o" /> -<objsur guid="3e94fc79-2484-4848-ae0c-be7362858a27" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="d21efeba-d19a-4abf-8f77-83f418ada3dd" ownerguid="2db23146-37ba-415e-9270-9571ebbfac63"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="d2226181-a021-43f7-9746-bb41ba9601ea"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">paqui</AUni> -<AUni ws="qvm-x-acl">paqui; paque</AUni> -<AUni ws="qvm-x-akh">paki</AUni> -<AUni ws="qvm-x-akl">paki; pake</AUni> -<AUni ws="qvm-x-ame">paki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*paki.v</AUni> -<AUni ws="qvm-x-acl">*paki.v</AUni> -<AUni ws="qvm-x-akh">*paki.v</AUni> -<AUni ws="qvm-x-akl">*paki.v</AUni> -<AUni ws="qvm-x-ame">*paki.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.658" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="984c6171-0696-40a2-91a6-b8e6453923d7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*paki.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b2d5076b-4e0b-498d-8d70-5020c0711429" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3734c2bf-2df5-4da2-a997-099ca1cfde8c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *paki.v 
\entryTyp root 
\gENG break 
\gSPN romper 
\e *paki.v 
\c V2 
\mp +FinalI 
\ach paqui 
\akh paki 
\acl paqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl paque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl paki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pake +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame paki</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d22374e3-2142-4b74-880d-b9bd505da29c" ownerguid="3160b7ad-e4e8-4a46-8e2e-d5e601969547"> -<ExampleWords> -<AUni ws="en">tell a story, relate, narrate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to telling a story?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d22b41bd-20ca-4e70-b7ed-90f4460a44dc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tamra</AUni> -<AUni ws="qvm-x-acl">tamra</AUni> -<AUni ws="qvm-x-akh">tamra</AUni> -<AUni ws="qvm-x-akl">tamra</AUni> -<AUni ws="qvm-x-ame">tamra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tamra</AUni> -<AUni ws="qvm-x-acl">*tamra</AUni> -<AUni ws="qvm-x-akh">*tamra</AUni> -<AUni ws="qvm-x-akl">*tamra</AUni> -<AUni ws="qvm-x-ame">*tamra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.794" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1152e254-d194-485d-9361-cd9f1588a56c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tamra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="25473cff-26f2-435b-a571-f0d79fbf9108" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f763a3ad-63b0-4a0e-a133-3c71d79d27b1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tamra 
\entryTyp root 
\gENG 
\gSPN 
\e *tamra 
\c NOSUFF 
\ach tamra 
\akh tamra 
\acl tamra 
\akl tamra 
\ame tamra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="d22d6842-42e8-4d45-988e-3f06f9ef1e66" ownerguid="8fab00a3-f851-4d10-852c-6cc38f263cb5"> -<Form> -<AUni ws="qvm-x-ach">jirca</AUni> -<AUni ws="qvm-x-acl">jirca</AUni> -<AUni ws="qvm-x-akh">jirka</AUni> -<AUni ws="qvm-x-akl">jirka</AUni> -<AUni ws="qvm-x-ame">hirka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d230190c-ac58-4cb6-87f3-192dbc9be083" ownerguid="8562b03a-de13-4fed-bbd7-ee05d82cb818"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">baptize</AUni> -<AUni ws="es">bautizar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a6dab780-88fb-436e-99b9-6ad61822ca90" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="d231519b-e4fd-4164-af42-46d9efaf9e1b" ownerguid="5f8a09d0-ca6d-4317-ae0a-7d7ae858808b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="d231c461-b7d2-477b-b126-da4ab6f4e2a5" ownerguid="4613da0f-fc0f-4807-9538-227bd9c2a42e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d2336d12-f4f4-4048-946c-7c9c843bbabf" ownerguid="34a00b5a-dd25-4b0e-96d4-0f7cad0a9ffd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">greeting</AUni> -<AUni ws="es">saludos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8f60c7e1-b7c1-4867-8972-b11d3a663867" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="d2379fe0-fa72-42e6-ab52-ecdd06f352a7" ownerguid="d8211484-4d08-4317-915d-61911e1334cb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="69ac8eda-af1a-4321-abc4-686657b969fd" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="d7647790-870b-42fa-a17e-005088fbbf7e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d23896ae-a90f-44ff-b394-d27fa77fa1e4" ownerguid="5f0f5899-03f5-4d31-9b11-4a84db13c35d"> -<Form> -<AUni ws="qvm-x-ach">acu</AUni> -<AUni ws="qvm-x-acl">acu</AUni> -<AUni ws="qvm-x-akh">aku</AUni> -<AUni ws="qvm-x-akl">aku</AUni> -<AUni ws="qvm-x-ame">aku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d2390fa3-180b-4ad1-9e8c-aaf5ee9f29f6" ownerguid="cd403434-a5a1-4700-8ad3-b7c9aabd99d9"> -<ExampleWords> -<AUni ws="en">valley, ravine, gully, canyon, gulch, course, basin, channel, gorge, rift, wadi, depression</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What types of valleys are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d239ef2a-53f6-40ee-8319-af1e6963ac2d" ownerguid="0d63adce-41dd-4873-b0bf-331d0205e65d"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en"><There is> a man....; <There was> a man....; <There exists> evidence....; Evidence <exists>....; God <exists>.; I think, therefore I <am>.; Once upon a time <there lived> a man....</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">exist, existence, there is, there exists, there lives, be, be found, occur, be in existence, be in operation, real</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to indicate that something exists?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d23a1035-2888-4c25-aa03-301220d84242" ownerguid="7f91aa6d-f342-4fb9-9448-69d694cda9c5"> -<ExampleWords> -<AUni ws="en">large, great, major, considerable, large scale, huge, enormous, immense, tremendous, high, advanced, rich</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate a large degree?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d23bcebe-d424-4838-b7a5-fe5e3cbcc765" ownerguid="665713cd-47da-4b35-b524-c6c14c17f467"> -<Form> -<AUni ws="qvm-x-ach">lapsha; llapsha</AUni> -<AUni ws="qvm-x-acl">lapsha; llapsha</AUni> -<AUni ws="qvm-x-akh">lapsha; llapsha</AUni> -<AUni ws="qvm-x-akl">lapsha; llapsha</AUni> -<AUni ws="qvm-x-ame">lapsha; llapsha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PunctuationForm" guid="d23c6145-e8ed-4135-937d-316fbae59807"> -<Form> -<Str> -<Run ws="en">mika</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="d23fa144-bf0c-4974-aed6-58c334379772" ownerguid="d2f05cc8-1a3f-4bc2-9a2b-38174bb84091"> -<ExampleWords> -<AUni ws="en">sign language, gestures, writing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What things are used by the person who cannot speak?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d240b424-9a8c-48f7-a4d9-55b041ecd2ba" ownerguid="d3cf7b43-a9fb-42db-b04b-cab625212f51"> -<Form> -<AUni ws="qvm-x-ach">pävu</AUni> -<AUni ws="qvm-x-acl">pävu; pävu; pävo</AUni> -<AUni ws="qvm-x-akh">pävu</AUni> -<AUni ws="qvm-x-akl">pävu; pävu; pävo</AUni> -<AUni ws="qvm-x-ame">pävu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d2412e4c-71e9-40bc-a38d-81eccede3762" ownerguid="b96cbdd1-ed70-471e-9836-5dea7202c88d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1 N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">soot</AUni> -<AUni ws="es">tizne</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f43dbfd2-dcbc-4dbc-9ffb-82918049f0de" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="d2416bf1-91bb-4ef9-8140-6ee6d40e74fa" ownerguid="a1542519-a9ed-40af-8acb-f33efaed31ec"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="73576fc4-7a05-4270-9137-a90b97f2131d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d243b4d7-68c1-4d3a-b465-7d3a815c58df" ownerguid="eea7c79b-6150-4aba-8105-a94b7e6aeab7"> -<ExampleWords> -<AUni ws="en">faithful, loyal, devoted, staunch, true, unswerving</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is faithful?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d244e8e6-c47f-490c-a998-5841eca099ce"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">redondu; redondo</AUni> -<AUni ws="qvm-x-acl">redondu; redondu; redondo</AUni> -<AUni ws="qvm-x-akh">redondu; redondo</AUni> -<AUni ws="qvm-x-akl">redondu; redondu; redondo</AUni> -<AUni ws="qvm-x-ame">redondu; redondo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+redondo</AUni> -<AUni ws="qvm-x-acl">+redondo</AUni> -<AUni ws="qvm-x-akh">+redondo</AUni> -<AUni ws="qvm-x-akl">+redondo</AUni> -<AUni ws="qvm-x-ame">+redondo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.316" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d3c04461-c189-4af2-9b59-66719ac29dcb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+redondo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cd03ae38-94ec-4cf6-ae24-f8648dd9e96c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a5ccd859-5c9e-4481-9805-9c8f82d27d63" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +redondo 
\entryTyp root 
\gENG round 
\gSPN redondo 
\e +redondo 
\c N0 
\ach redondu / ~_# 
\ach redondo / _# 
\akh redondu / ~_# 
\akh redondo / _# 
\acl redondu / ~_# 
\acl redondu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl redondo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl redondu / ~_# 
\akl redondu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl redondo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame redondu / ~_# 
\ame redondo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="d24843c9-c1d2-4893-8e2b-c9953f90ef94" ownerguid="ea232446-d3a3-42a1-b505-58f570ba3846"> -<Form> -<AUni ws="qvm-x-ach">iwal</AUni> -<AUni ws="qvm-x-acl">iwal</AUni> -<AUni ws="qvm-x-akh">iwal</AUni> -<AUni ws="qvm-x-akl">iwal</AUni> -<AUni ws="qvm-x-ame">iwal</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d24aa192-1698-41f5-afeb-6f3ac6fe2506" ownerguid="1017cbc3-0dfb-4930-9881-28f96784035c"> -<ExampleWords> -<AUni ws="en">jerk, twitch, start, spasm, jump, snap, nip in, shoot, spurt, dash</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to moving quickly for a short time?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d24d241c-8e02-4855-bdfa-10d44443e014" ownerguid="707433b2-1fff-4a83-87fe-5dbe0c48c2fd"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d24df519-2b6b-405d-8044-576dfa3ba6db" ownerguid="42133f78-9860-4bb7-8083-5559083f0714"> -<ExampleWords> -<AUni ws="en">cards, dice, lottery, roulette</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of gambling games are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d2546406-bc16-4eb4-afb9-e58e6d958e2d" ownerguid="615674ac-8158-4089-ae70-b55472fd279b"> -<ExampleWords> -<AUni ws="en">the same age</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that is the same age as something else?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d256f60d-0027-4ecf-87f0-8d0cd1279ab0" ownerguid="0ae80364-83fa-419b-82e7-26243d63fe3d"> -<Form> -<AUni ws="qvm-x-ach">tsula</AUni> -<AUni ws="qvm-x-acl">tsula</AUni> -<AUni ws="qvm-x-akh">tsula</AUni> -<AUni ws="qvm-x-akl">tsula</AUni> -<AUni ws="qvm-x-ame">tsula</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d25b1f59-98a4-4d65-a7b3-819e5bbe19a2" ownerguid="c27b87cf-1211-4df2-96b1-12c416edabbe"> -<ExampleWords> -<AUni ws="en">humor, comedy, comic relief, fun, caprice, fooling, kidding, joshing, wittiness, salt, whim, drollery, jocularity, levity, mirth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to humor in general?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d25b28dd-1ed9-4d69-b3b0-1d93ae65913d" ownerguid="cbc24a98-1c64-467e-98aa-251a28e4c0b8"> -<ExampleWords> -<AUni ws="en">defecate, go to the bathroom, have a bowel movement, void, excrete, poop, take a crap, evacuate your bowels, purge your bowels, void</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to defecating?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="d25b462e-bf66-4141-9857-bc0d445f54b6" ownerguid="84367e7d-d279-4e1c-81b4-86492bd6380f"> -<Form> -<AUni ws="qvm-x-ach">ca</AUni> -<AUni ws="qvm-x-acl">ca</AUni> -<AUni ws="qvm-x-akh">ka</AUni> -<AUni ws="qvm-x-akl">ka</AUni> -<AUni ws="qvm-x-ame">ka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="d25d1ccc-8551-4ad4-a4da-626efbfc8799" ownerguid="a93c6d7f-1e84-4184-9282-60c150069d8d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="d25f7907-091e-4cf7-bd8c-bdb97278b616" ownerguid="66d8b546-92f5-4e94-b992-08be81c3d30c"> -<Abbreviation> -<AUni ws="en">7.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.549" /> -<DateModified val="2022-9-23 16:55:8.549" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to hitting something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>19A Hit, Strike</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Hit</AUni> -</Name> -<Questions> -<objsur guid="81d2e3f1-acb3-4920-b5b3-e5ef1f7f9561" t="o" /> -<objsur guid="f66aed80-699d-46ef-9c91-3b8a15a65720" t="o" /> -<objsur guid="171f7244-1965-487f-8479-28433c1e6c6a" t="o" /> -<objsur guid="a93a5d4a-1ded-46c0-a54a-d38375b736a2" t="o" /> -<objsur guid="125b531c-efab-44f9-aa93-270f74c998b3" t="o" /> -<objsur guid="c5498220-6ca7-46f7-93a3-4f18902a6f07" t="o" /> -<objsur guid="a4c664f0-93fa-483f-a60a-4a0a79299349" t="o" /> -<objsur guid="baa16b53-f46e-4456-93c2-7908056870a4" t="o" /> -<objsur guid="847ac9e2-e4f7-46df-88f0-45f7f70fe0e6" t="o" /> -<objsur guid="efd116a5-e1b5-4438-ac7d-b6427e064460" t="o" /> -<objsur guid="9c97e309-1ba5-43cf-85ef-27c6aba6f306" t="o" /> -<objsur guid="03f1073a-bde2-4a2d-b8e8-19b4d15681ed" t="o" /> -<objsur guid="38d4d060-21dc-450b-b9f1-6973edeb3e46" t="o" /> -<objsur guid="f12fba15-66fc-4d5a-a3d7-bcc66ba27454" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="8596f086-ee46-4245-8d45-2171a60e19e4" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="d260f0ce-9a86-468e-83c4-6238f06cdd46" ownerguid="9d6126d3-6083-4451-8b5c-a28b09dfcad2"> -<Form> -<AUni ws="qvm-x-ach">tucari</AUni> -<AUni ws="qvm-x-acl">tucari; tucare</AUni> -<AUni ws="qvm-x-akh">tucari</AUni> -<AUni ws="qvm-x-akl">tucari; tucare</AUni> -<AUni ws="qvm-x-ame">tucari</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d26273e8-5c52-4cd7-9013-321a1a0c0ba9" ownerguid="1030cc2f-0c38-4df8-b6f6-87f4e2091742"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">yeast</AUni> -<AUni ws="es">levadura</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aedcfa71-f71d-4c6d-b985-36ede7482891" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="d2683ae4-dbbb-4bf4-8e22-483b78bd560a" ownerguid="6ed896a6-bab7-4fdf-a4fd-a5ee49f380d2"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="968a4bf0-1707-4613-ad30-a69f1db2bda6" t="o" /> -<objsur guid="5291a31d-b158-478c-a8be-7564c64a31b8" t="o" /> -<objsur guid="4e3929f0-37fb-44ac-bc13-c1a320792490" t="o" /> -<objsur guid="0ad7d2ff-2d11-49e6-a27b-eeb6de322a73" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="d270c913-eae6-4719-9281-9c0b0ab28611" ownerguid="902537c9-36c5-4e5f-a7b1-68f0a27408fb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="d2757881-27a0-48d9-af8e-f6842c1aec99" ownerguid="ee9eede3-1b1e-4290-bae4-cc5739488bd7"> -<Form> -<AUni ws="qvm-x-ach">wayruru</AUni> -<AUni ws="qvm-x-acl">wayruru; wayruru; wayruro</AUni> -<AUni ws="qvm-x-akh">wayruru</AUni> -<AUni ws="qvm-x-akl">wayruru; wayruru; wayruro</AUni> -<AUni ws="qvm-x-ame">wayruru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="d275d71e-a360-4ef0-b3fe-bfdbcd789013" ownerguid="54d15699-88c2-4d94-a67e-ac4dd70013ed"> -<Form> -<AUni ws="qvm-x-ach">revoqui; revoque</AUni> -<AUni ws="qvm-x-acl">revoqui; revoqui; revoque</AUni> -<AUni ws="qvm-x-akh">revoqui; revoque</AUni> -<AUni ws="qvm-x-akl">revoqui; revoqui; revoque</AUni> -<AUni ws="qvm-x-ame">revoqui; revoque</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="d276f579-4756-4773-bc87-b9dfbc89b8cd" ownerguid="5bd88b18-f7b2-48d8-b98f-a2db116373f6"> -<Form> -<AUni ws="qvm-x-ach">capu; capa</AUni> -<AUni ws="qvm-x-acl">capu; capo; capa</AUni> -<AUni ws="qvm-x-akh">kapu; kapa</AUni> -<AUni ws="qvm-x-akl">kapu; kapo; kapa</AUni> -<AUni ws="qvm-x-ame">kapu; kapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="d278f691-d823-4954-b508-62eaae8b2795" ownerguid="76e1a0be-4631-4515-8f6e-b74bf40859b9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="d27912e6-7603-402f-a263-47fd53b70934" ownerguid="a81b4f8f-2c46-4c9a-9640-8b7bad9360f1"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a4d42f6f-d626-4469-8166-21d6f4e69d6d" t="r" /> -</Morph> -<Msa> -<objsur guid="72dc7bab-4d12-4cdb-a144-3c853f889fb5" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="d27a5602-ece1-452e-9ed6-7261082dc8b8" ownerguid="50c1a392-2928-407a-8306-3c70141e375e"> -<Abbreviation> -<AUni ws="en">8.4.6.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to something happening soon.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Soon</AUni> -</Name> -<Questions> -<objsur guid="4590bde1-a076-4e24-bed0-92e5109352d3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="d27c8398-b119-46d2-b35b-4757d36e3fed" ownerguid="309585b0-add3-4d8e-bc2b-67e0f6b53343"> -<Form> -<AUni ws="qvm-x-ach">balanza</AUni> -<AUni ws="qvm-x-acl">balanza</AUni> -<AUni ws="qvm-x-akh">balanza</AUni> -<AUni ws="qvm-x-akl">balanza</AUni> -<AUni ws="qvm-x-ame">balanza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d27db482-9b02-4441-9078-cccc914c7d99"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">merca:du</AUni> -<AUni ws="qvm-x-acl">merca:du; merca:du; merca:do</AUni> -<AUni ws="qvm-x-akh">merca:du</AUni> -<AUni ws="qvm-x-akl">merca:du; merca:du; merca:do</AUni> -<AUni ws="qvm-x-ame">merca:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mercado</AUni> -<AUni ws="qvm-x-acl">+mercado</AUni> -<AUni ws="qvm-x-akh">+mercado</AUni> -<AUni ws="qvm-x-akl">+mercado</AUni> -<AUni ws="qvm-x-ame">+mercado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.414" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="94a87e52-b74b-4299-885c-011c83541b9e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mercado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="87e42540-8dd6-49e9-b866-f958781af29e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="09a36a3b-e2d2-4576-8e1c-cfa444caecea" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mercado 
\entryTyp root 
\gENG market 
\gSPN mercado 
\e +mercado 
\c N0 
\ach merca:du 
\akh merca:du 
\acl merca:du / _# 
\acl merca:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl merca:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl merca:du / _# 
\akl merca:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl merca:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame merca:du</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d280d9bd-bef4-47bd-8a04-4e06899e81ce" ownerguid="daefd275-98e3-4534-a991-c7d396b54c69"> -<ExampleWords> -<AUni ws="en">postpone, put off, delay, reschedule, be put back, defer, table (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to postponing something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d2813fb1-22ca-4641-8463-6dc5023c693e" ownerguid="3566012f-e7af-4199-9074-59fb67ed2279"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="d2822176-5d7e-4574-b0d0-21ad3d676a98" ownerguid="4e17c054-ad76-4dac-8a4c-2127f5eb317b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="d2822a2f-3338-46d4-bf35-0917358ce611" ownerguid="7acde7d5-1a5b-4e16-99c7-5f297d2643f4"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="96e3907c-165d-4524-b713-bce1852436bc" t="o" /> -<objsur guid="259a52eb-c1fd-499b-b4c4-e838f0eb5391" t="o" /> -<objsur guid="0b0e7f98-47d1-47b8-b761-d9cc2b4a055e" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="d282e7c6-3673-4cc4-859f-59230b38c8ae" ownerguid="45e2aadb-03d3-439a-bb60-04de139cd53f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="d283f59e-3908-481b-9bdc-4528d13de309" ownerguid="0a91423d-4b5e-46b7-a4d4-9f40479f6ef8"> -<Form> -<AUni ws="qvm-x-ach">wayantsa</AUni> -<AUni ws="qvm-x-acl">wayantsa</AUni> -<AUni ws="qvm-x-akh">wayantsa</AUni> -<AUni ws="qvm-x-akl">wayantsa</AUni> -<AUni ws="qvm-x-ame">wayantsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d28ec940-cce9-45b5-baf9-8328415d952b" ownerguid="386a1ffc-4c9b-4b9c-aefd-fa6fa089967e"> -<Gloss> -<AUni ws="en">GEN</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9e717853-bae2-43ea-877b-f3cc67789d3b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d291b04b-43e1-42dd-beb2-f42592a2d895" ownerguid="2b6f9af7-04ee-4030-a2cd-87d55959caa8"> -<ExampleWords> -<AUni ws="en">scare (n), terror, horror, alarmist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to something that causes someone to feel afraid?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d292ee46-dfd3-4674-bde4-f56f7d4d2aab" ownerguid="edd1834a-85cd-4ee9-a8f6-d2cc2c536a30"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d292eea0-973b-4c49-9eab-dc1b4a29b0d6" ownerguid="b6622d50-6ec5-4748-ba7d-ad36a758ee7c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a1745322-1f67-4f58-8269-fe3d4b6a5cd3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d294848e-1992-45f1-9d5b-befc07aa4b6a" ownerguid="c038b0f7-8d34-4f13-9d9f-fff06ac936a4"> -<Form> -<AUni ws="qvm-x-ach">laquësa</AUni> -<AUni ws="qvm-x-acl">laquësa</AUni> -<AUni ws="qvm-x-akh">laquësa</AUni> -<AUni ws="qvm-x-akl">laquësa</AUni> -<AUni ws="qvm-x-ame">laquësa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="d2958f56-27b4-4a35-b7ce-3d3c356d32e7" ownerguid="3ae6cbf1-ef25-48a4-a022-50b77bf5b510"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d29699a9-a885-4772-969f-ee0a4f6e9f5a" ownerguid="bc9d763c-e4fe-48ab-ad44-87a36f6cc06f"> -<ExampleWords> -<AUni ws="en">critical (remark/essay), belittling, deprecatory, disparaging, scathing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something someone says when criticizing?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d2981cc1-0ce5-43b9-983a-d2c472277b4e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">carame:lus</AUni> -<AUni ws="qvm-x-acl">carame:lus</AUni> -<AUni ws="qvm-x-akh">carame:lus</AUni> -<AUni ws="qvm-x-akl">carame:lus</AUni> -<AUni ws="qvm-x-ame">carame:lus</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+caramelos</AUni> -<AUni ws="qvm-x-acl">+caramelos</AUni> -<AUni ws="qvm-x-akh">+caramelos</AUni> -<AUni ws="qvm-x-akl">+caramelos</AUni> -<AUni ws="qvm-x-ame">+caramelos</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.620" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c0540d0b-c4bf-4319-9525-a3bdefc5505d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+caramelos</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="82fb6886-5f72-4588-9465-ab5017b06cf2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="357552ba-e18b-4cce-b517-67ab944a961f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +caramelos 
\entryTyp root 
\gENG candy 
\gSPN caramelos 
\e +caramelos 
\c N0 
\mp +FinalC 
\ach carame:lus 
\akh carame:lus 
\acl carame:lus 
\akl carame:lus 
\ame carame:lus</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d299e78b-b4e5-4b52-8dc2-54b91154382d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ucya</AUni> -<AUni ws="qvm-x-acl">ucya</AUni> -<AUni ws="qvm-x-akh">ukya</AUni> -<AUni ws="qvm-x-akl">ukya</AUni> -<AUni ws="qvm-x-ame">ukya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ukya</AUni> -<AUni ws="qvm-x-acl">*ukya</AUni> -<AUni ws="qvm-x-akh">*ukya</AUni> -<AUni ws="qvm-x-akl">*ukya</AUni> -<AUni ws="qvm-x-ame">*ukya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.210" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a51db7c8-83f8-48d1-8308-fd980ca8d846" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ukya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="decda8c0-e869-4864-843a-b29c2d91675f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3b20e9e1-8152-4182-a4d5-980609809c68" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ukya 
\entryTyp root 
\gENG 
\gSPN 
\e *ukya 
\c V2 
\ach ucya 
\akh ukya 
\acl ucya 
\akl ukya 
\ame ukya</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="d29a542d-aa1f-49fe-a81f-33ab6eb8dc7b" ownerguid="fb3fab20-330d-4956-b545-4da82564918b"> -<Form> -<AUni ws="qvm-x-ach">ashli</AUni> -<AUni ws="qvm-x-acl">ashli; ashle</AUni> -<AUni ws="qvm-x-akh">ashli</AUni> -<AUni ws="qvm-x-akl">ashli; ashle</AUni> -<AUni ws="qvm-x-ame">ashli</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d29f2c50-a011-4471-a730-5045de1ae4fe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tiranti; tirante</AUni> -<AUni ws="qvm-x-acl">tiranti; tiranti; tirante</AUni> -<AUni ws="qvm-x-akh">tiranti; tirante</AUni> -<AUni ws="qvm-x-akl">tiranti; tiranti; tirante</AUni> -<AUni ws="qvm-x-ame">tiranti; tirante</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tirante</AUni> -<AUni ws="qvm-x-acl">+tirante</AUni> -<AUni ws="qvm-x-akh">+tirante</AUni> -<AUni ws="qvm-x-akl">+tirante</AUni> -<AUni ws="qvm-x-ame">+tirante</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.926" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="99a3f2fe-d5ce-4558-b2cd-40a6cf3e275d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tirante</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="09e2d804-6b64-4d69-93ba-1882012368c8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0a66230c-6cd1-4080-a647-2aa8dd2897df" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tirante 
\entryTyp root 
\gENG suspenders 
\gSPN 
\e +tirante 
\c N0 
\mp +FinalI 
\ach tiranti / ~_# 
\ach tirante / _# 
\akh tiranti / ~_# 
\akh tirante / _# 
\acl tiranti / ~_# 
\acl tiranti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tirante +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tiranti / ~_# 
\akl tiranti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tirante +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tiranti / ~_# 
\ame tirante / _# 
\i Exo 28.7 Tsaynogpis efodpa ishcan cuchunpag tiranticuna canga umrunman shawananpag.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="d29f5f35-5a42-48c3-a842-50ebf435c41d" ownerguid="c365d6a5-a1b3-4ae2-a9f6-8b795b58182b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">NUM 6.19 Nircunami calduypa yanushga carnipa palitillanta, canastapita levadüraynag juc tantata y levadüraynag lapsha tantatapis cüraga macyanga rutucushga nazareo runata.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="d2a6a431-3a04-43dc-993a-089cf99184f0" ownerguid="8b7bef47-9b6d-47c0-8558-22d442db06a4"> -<Form> -<AUni ws="qvm-x-ach">pagla</AUni> -<AUni ws="qvm-x-acl">pagla</AUni> -<AUni ws="qvm-x-akh">paqla</AUni> -<AUni ws="qvm-x-akl">paqla</AUni> -<AUni ws="qvm-x-ame">paqla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="d2ab5dbe-b0ca-4635-bdf5-d7d85b0b457e" ownerguid="6a8ba01b-0f1b-4a43-8990-ab78eda673fc"> -<Form> -<AUni ws="qvm-x-ach">bunruru</AUni> -<AUni ws="qvm-x-acl">bunruru; bunruro</AUni> -<AUni ws="qvm-x-akh">bunruru</AUni> -<AUni ws="qvm-x-akl">bunruru; bunruro</AUni> -<AUni ws="qvm-x-ame">bunruru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d2acbb37-3e6b-4121-b9cd-d630a6924c6f" ownerguid="71b19b9e-231c-4196-a7d7-aa56a5079782"> -<ExampleWords> -<AUni ws="en">include, incorporate, involve, integrate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to including something in a group?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d2adf6c6-1447-4289-897c-bc057ed3c203"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">potre:ru</AUni> -<AUni ws="qvm-x-acl">potre:ru; potre:ru; potre:ro</AUni> -<AUni ws="qvm-x-akh">potre:ru</AUni> -<AUni ws="qvm-x-akl">potre:ru; potre:ru; potre:ro</AUni> -<AUni ws="qvm-x-ame">potre:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+potrero</AUni> -<AUni ws="qvm-x-acl">+potrero</AUni> -<AUni ws="qvm-x-akh">+potrero</AUni> -<AUni ws="qvm-x-akl">+potrero</AUni> -<AUni ws="qvm-x-ame">+potrero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.911" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4eb57fad-7bc5-4be4-9502-d95d0d4e147c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+potrero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9cda4ca7-7648-4fa7-910b-f5290d0346e0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6af96fb2-bd5d-434c-8ec8-2acf7cb58b41" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +potrero 
\entryTyp root 
\gENG 
\gSPN 
\e +potrero 
\c N0 
\ach potre:ru 
\akh potre:ru 
\acl potre:ru / _# 
\acl potre:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl potre:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl potre:ru / _# 
\akl potre:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl potre:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame potre:ru 
\i PSA 95.7 Potrërucho caycag uyshannogmi caycantsi.</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="d2b4ddb1-662f-4be5-9451-013523b963c3"> -<Form> -<Str> -<Run ws="en">12</Run> -</Str> -</Form> -</rt> -<rt class="CmSemanticDomain" guid="d2b61570-af54-44f3-846e-6d7ec9d3737f" ownerguid="22acd714-b11e-462a-bd8e-6ff50843c103"> -<Abbreviation> -<AUni ws="en">6.5.2.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.458" /> -<DateModified val="2022-9-23 16:55:8.458" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the rooms of a building.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Room</AUni> -</Name> -<Questions> -<objsur guid="6580d904-9d36-48c8-8530-5b92fc3e6ce5" t="o" /> -<objsur guid="8e8b0be6-66ad-46fb-aae0-339d596613d6" t="o" /> -<objsur guid="a86dc3e3-c9d1-419f-ab5c-6f4662a53d75" t="o" /> -<objsur guid="87a35be5-bf40-4c83-8187-2f2b7c05b9db" t="o" /> -<objsur guid="fa8d437f-e240-4e48-8607-138a4862f528" t="o" /> -<objsur guid="b881fa31-3d60-4455-bb33-36a84e5bb79d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="d2b6626c-163c-41c9-966d-0f0a1e83f064" ownerguid="4b2c725c-3642-46d5-9098-77ad8dc47222"> -<Form> -<AUni ws="qvm-x-ach">jichca</AUni> -<AUni ws="qvm-x-acl">jichca</AUni> -<AUni ws="qvm-x-akh">jichka</AUni> -<AUni ws="qvm-x-akl">jichka</AUni> -<AUni ws="qvm-x-ame">hichka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d2b9a972-f2de-4535-adbf-152b679769a0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">supi</AUni> -<AUni ws="qvm-x-acl">supi; supe</AUni> -<AUni ws="qvm-x-akh">supi</AUni> -<AUni ws="qvm-x-akl">supi; supe</AUni> -<AUni ws="qvm-x-ame">supi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*supi.v</AUni> -<AUni ws="qvm-x-acl">*supi.v</AUni> -<AUni ws="qvm-x-akh">*supi.v</AUni> -<AUni ws="qvm-x-akl">*supi.v</AUni> -<AUni ws="qvm-x-ame">*supi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.754" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="577cda4d-887c-497f-abc7-a57c3ec159ae" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*supi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b744f052-2f52-4f41-8773-2fa08727db5c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4a14e09c-9b06-4eab-a8df-a24440453c9d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *supi.v 
\entryTyp root 
\gENG 
\gSPN 
\e *supi.v 
\c V1 
\mp +FinalI 
\ach supi 
\akh supi 
\acl supi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl supe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl supi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl supe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame supi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="d2b9d482-6e3b-4b4e-8993-0466b57f79b5" ownerguid="f919dc5e-b3ed-41a8-8422-6fc1df2aef0f"> -<Form> -<AUni ws="qvm-x-ach">witsa</AUni> -<AUni ws="qvm-x-acl">witsa</AUni> -<AUni ws="qvm-x-akh">witsa</AUni> -<AUni ws="qvm-x-akl">witsa</AUni> -<AUni ws="qvm-x-ame">witsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d2bc312b-a40f-49b5-93b8-e1666c9f21cd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shegui</AUni> -<AUni ws="qvm-x-acl">shegui; shegui; shegue</AUni> -<AUni ws="qvm-x-akh">sheqi</AUni> -<AUni ws="qvm-x-akl">sheqi; sheqi; sheqe</AUni> -<AUni ws="qvm-x-ame">shiqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shiqi.n</AUni> -<AUni ws="qvm-x-acl">*shiqi.n</AUni> -<AUni ws="qvm-x-akh">*shiqi.n</AUni> -<AUni ws="qvm-x-akl">*shiqi.n</AUni> -<AUni ws="qvm-x-ame">*shiqi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.602" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0c56cb7c-adf5-426a-ba8c-8ee706be3a3b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shiqi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="80724ec9-ad4a-4407-bdf6-37a1a67d9abe" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="078d3b66-d501-4f57-849b-e0c4925ce416" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shiqi.n 
\entryTyp root 
\gENG 
\gSPN 
\e *shiqi.n 
\c N0 
\mp +FinalI 
\ach shegui 
\akh sheqi 
\acl shegui / _# 
\acl shegui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shegue +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sheqi / _# 
\akl sheqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sheqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shiqi 
\i Shegilatami cafëta upuycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d2bd3a20-d9ce-4406-b3af-bf37e824083e" ownerguid="e27adda9-0761-4b7f-abbf-24938ce1c01a"> -<ExampleWords> -<AUni ws="en">drama, play, skit, comedy, tragedy, musical, melodrama, parody, suspense, film, movie, cinema, show</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a type of drama?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d2bdd16d-a0ce-4534-a13c-9232e859de64" ownerguid="df805cee-9cd6-4733-a2d9-eb97a6f4a199"> -<Form> -<AUni ws="qvm-x-ach">quëju</AUni> -<AUni ws="qvm-x-acl">quëju; quëju; quëjo</AUni> -<AUni ws="qvm-x-akh">quëju</AUni> -<AUni ws="qvm-x-akl">quëju; quëju; quëjo</AUni> -<AUni ws="qvm-x-ame">quëju</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="d2bf4e44-4613-4a75-a53f-cae886bbc598" ownerguid="79c40493-932f-4b5b-a443-412e11af8537"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d2c0b87f-a1f1-462d-8bb7-fab77159159c" ownerguid="4cb8b433-4efa-4698-8ebd-0f00f8fc3f66"> -<ExampleWords> -<AUni ws="en">devout, devoted, devotion, committed, pious, religious, zealous, saintly, holy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who practices his religion with devotion?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d2c0de49-eaa3-4b97-b23a-c9a1487a5af9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ya:ra</AUni> -<AUni ws="qvm-x-acl">ya:ra</AUni> -<AUni ws="qvm-x-akh">ya:ra</AUni> -<AUni ws="qvm-x-akl">ya:ra</AUni> -<AUni ws="qvm-x-ame">ya:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ya:ra</AUni> -<AUni ws="qvm-x-acl">*ya:ra</AUni> -<AUni ws="qvm-x-akh">*ya:ra</AUni> -<AUni ws="qvm-x-akl">*ya:ra</AUni> -<AUni ws="qvm-x-ame">*ya:ra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.749" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2107e683-bc9d-4917-ba4c-a8ab0d42c820" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ya:ra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e3519008-76e4-4566-93d8-5d4d03802a79" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5058d187-daa5-4afb-b3c9-e53774b9f2a0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ya:ra 
\entryTyp root 
\gENG trust 
\gSPN confiar 
\e *ya:ra 
\c V2 
\ach ya:ra 
\akh ya:ra 
\acl ya:ra 
\akl ya:ra 
\ame ya:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d2c2c6b5-e330-4bf1-a80e-012fa4287cda" ownerguid="6804db44-b71b-4452-98b1-b726bc7cf022"> -<ExampleWords> -<AUni ws="en">noise, racket, roar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a loud sound?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d2c3e217-1064-4164-9f55-240a8d7cfdf9" ownerguid="acf5e294-d169-45c1-a9d3-960536e018cc"> -<ExampleWords> -<AUni ws="en">become audible, reach the ear, be heard, fall on the ear</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a sound becoming loud enough so that it can be heard?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d2c45354-b434-4cfb-a9bb-a75f12e257aa" ownerguid="91c945df-0807-4021-9512-d969a53ca273"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.stone</AUni> -<AUni ws="es">apedrear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dd230635-6161-4114-ab88-4573d5bc0cff" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="d2c54b09-ad0e-4660-9902-c9c80c3c64f4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">roma:nu</AUni> -<AUni ws="qvm-x-acl">roma:nu; roma:nu; roma:no</AUni> -<AUni ws="qvm-x-akh">roma:nu</AUni> -<AUni ws="qvm-x-akl">roma:nu; roma:nu; roma:no</AUni> -<AUni ws="qvm-x-ame">roma:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+romano</AUni> -<AUni ws="qvm-x-acl">+romano</AUni> -<AUni ws="qvm-x-akh">+romano</AUni> -<AUni ws="qvm-x-akl">+romano</AUni> -<AUni ws="qvm-x-ame">+romano</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.378" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a10129e5-4e7b-4364-9aa7-304f4e55dffd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+romano</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="212efd8b-49b9-416e-b06d-69e405e9298f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a958fd0d-2af1-44c3-a719-80fd8884d31c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +romano 
\entryTyp root 
\gENG Roman 
\gSPN romano 
\e +romano 
\c N0 
\ach roma:nu 
\akh roma:nu 
\acl roma:nu / _# 
\acl roma:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl roma:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl roma:nu / _# 
\akl roma:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl roma:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame roma:nu</Run> -</AStr> -</Custom> -</rt> -<rt class="Segment" guid="d2c54f7d-0cab-4c46-bd25-c073e0dfcc74" ownerguid="80ba0bb2-721e-4f64-9a7e-6cdb72125cf0"> -<Analyses> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="fa7aeb71-200a-4a5d-9436-13faa1972fea" t="r" /> -<objsur guid="25651c34-3e31-419d-86b5-cda6907f0a4f" t="r" /> -<objsur guid="7beb2bdf-1e77-4955-99ec-39f893293020" t="r" /> -<objsur guid="a85a5670-81ba-47b9-8443-95e8be60ebec" t="r" /> -<objsur guid="cc5592b2-d053-4f21-868f-e47798949ce1" t="r" /> -<objsur guid="4fccec2d-58a4-466f-a087-a79d6bf13b57" t="r" /> -<objsur guid="7d6d4776-71f6-4c31-b03a-97a0bcdd28dc" t="r" /> -<objsur guid="d3da10af-d6fb-4b58-9133-b9d5c3ec090c" t="r" /> -</Analyses> -<BeginOffset val="11" /> -</rt> -<rt class="LexEntry" guid="d2c60050-78fc-44f0-bb3b-0da859df0a03"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mensa:ji; mensa:ji</AUni> -<AUni ws="qvm-x-acl">mensa:ji; mensa:ji; mensa:je</AUni> -<AUni ws="qvm-x-akh">mensa:ji; mensa:ji</AUni> -<AUni ws="qvm-x-akl">mensa:ji; mensa:ji; mensa:je</AUni> -<AUni ws="qvm-x-ame">mensa:ji; mensa:ji</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mensaje</AUni> -<AUni ws="qvm-x-acl">+mensaje</AUni> -<AUni ws="qvm-x-akh">+mensaje</AUni> -<AUni ws="qvm-x-akl">+mensaje</AUni> -<AUni ws="qvm-x-ame">+mensaje</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.406" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="784194be-87c3-4411-88e6-ad9729eae40e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mensaje</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ed090485-1fae-44c3-97d7-8973101a206a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e834460f-6592-4e5f-97e3-43583a6eca73" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mensaje 
\entryTyp root 
\gENG message 
\gSPN mensaje 
\e +mensaje 
\c N0 
\mp +FinalI 
\ach mensa:ji / _# 
\ach mensa:ji / ~_# 
\akh mensa:ji / _# 
\akh mensa:ji / ~_# 
\acl mensa:ji / _# 
\acl mensa:ji +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mensa:je +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mensa:ji / _# 
\akl mensa:ji +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mensa:je +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mensa:ji / _# 
\ame mensa:ji / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="d2c65011-42fd-4294-90c6-5bac6dcdb5c8" ownerguid="4fa873e3-bd37-4bda-9fa0-6802f4171a45"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">horse</AUni> -<AUni ws="es">caballo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bc5f355f-97e4-4d5b-b26e-1a07eca6e394" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="d2c7f746-a2fd-4e12-bff5-84c612e376bd" ownerguid="044eef17-ef15-46c5-9ff5-83b31c637421"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="a6c92048-d824-4f74-b1fd-5fb505f8e73d" t="o" /> -<objsur guid="57394f91-5eb2-44a6-8089-a18d67c219ea" t="o" /> -<objsur guid="44a2a3d8-1b7c-47f6-b344-2681025123ef" t="o" /> -<objsur guid="96c56420-a22e-4504-a031-727ec95e5493" t="o" /> -<objsur guid="00c1df90-d02e-4f6a-8171-453f487131ae" t="o" /> -<objsur guid="1135e661-d6a7-4f0b-9ea6-71e46f545596" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="d2c98f99-4c58-4c0e-a350-000398c45d2f" ownerguid="6c305af5-cff5-4f7f-bd89-040d4c265355"> -<ExampleWords> -<AUni ws="en">compress, consolidate, consolidation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to making something more dense?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="d2ca3194-e393-480e-ae1d-dd67bed55227" ownerguid="025da6f4-b1b6-423a-8c0f-b324f531a6f1"> -<Abbreviation> -<AUni ws="en">1.5.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.978" /> -<DateModified val="2022-9-23 16:55:7.978" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the growth of plants.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>23K Grow, Growth; 23L Ripen, Produce Fruit, Bear Seed</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Growth of plants</AUni> -</Name> -<OcmCodes> -<Uni>137b Growth Stages</Uni> -</OcmCodes> -<Questions> -<objsur guid="11ec192e-7ec6-405b-af8c-647a26ee1e09" t="o" /> -<objsur guid="d630db5b-4158-4121-9795-c8ff6add3282" t="o" /> -<objsur guid="0508e38c-10b3-4305-af52-5441d02b90a4" t="o" /> -<objsur guid="be422a88-8bd5-4ddc-a08a-684e34ac8f65" t="o" /> -<objsur guid="b5820972-cc4d-4f15-93d5-c1504098fd5f" t="o" /> -<objsur guid="ddd2e67a-01e2-4b00-9638-f0738fdcbbc7" t="o" /> -<objsur guid="a8b01ddb-87ba-4dfe-b93b-3984443d4934" t="o" /> -<objsur guid="422ca569-c2b1-4b5f-a044-87776085d080" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="d2cb8764-33d4-457a-a0d4-8b353dcb6848" ownerguid="7a1667f6-38e8-47e9-885b-2857554b5e60"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="d2cb95c8-b492-4521-a818-e942ba2ae499" ownerguid="7f81453a-b307-40b1-a888-e3c335057fab"> -<Form> -<AUni ws="qvm-x-ach">goñu; goñü</AUni> -<AUni ws="qvm-x-acl">goñö; goñu; goño</AUni> -<AUni ws="qvm-x-akh">qoñu; qoñü</AUni> -<AUni ws="qvm-x-akl">qoñö; qoñu; qoño</AUni> -<AUni ws="qvm-x-ame">quñu; quñü</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d2ce7dd5-d5dd-4b16-b8c6-7ff7c7e1a0b7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shimpa</AUni> -<AUni ws="qvm-x-acl">shimpa</AUni> -<AUni ws="qvm-x-akh">shimpa</AUni> -<AUni ws="qvm-x-akl">shimpa</AUni> -<AUni ws="qvm-x-ame">shimpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shimpa.v1</AUni> -<AUni ws="qvm-x-acl">*shimpa.v1</AUni> -<AUni ws="qvm-x-akh">*shimpa.v1</AUni> -<AUni ws="qvm-x-akl">*shimpa.v1</AUni> -<AUni ws="qvm-x-ame">*shimpa.v1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.581" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1e75b86c-70d9-4e54-a587-da8b591d5247" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shimpa.v1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e7d7ac68-f231-474c-b7c2-93719211a3b6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="13c82f6d-e11a-4daa-b7c0-885528227788" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shimpa.v1 
\entryTyp root 
\gENG ache 
\gSPN doler 
\e *shimpa.v1 
\c V1 
\ach shimpa 
\akh shimpa 
\acl shimpa 
\akl shimpa 
\ame shimpa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d2cfe679-fd93-47b8-be66-ab526b6a12ce" ownerguid="ef409fc6-bd89-4cc6-ade5-abb882272313"> -<ExampleWords> -<AUni ws="en">favoritism, bias, biased</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to unfairly favoring one person over another?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d2d0a2a0-517b-4cdd-b099-473e45565348"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">huelga</AUni> -<AUni ws="qvm-x-acl">huelga</AUni> -<AUni ws="qvm-x-akh">huelga</AUni> -<AUni ws="qvm-x-akl">huelga</AUni> -<AUni ws="qvm-x-ame">huelga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+huelga</AUni> -<AUni ws="qvm-x-acl">+huelga</AUni> -<AUni ws="qvm-x-akh">+huelga</AUni> -<AUni ws="qvm-x-akl">+huelga</AUni> -<AUni ws="qvm-x-ame">+huelga</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.751" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cfe78aef-0fa3-4f9d-ad61-0a3461874c36" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+huelga</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5bd909dd-cccc-4027-ada3-cbb135395c81" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d8470b4b-00da-4c92-b46f-1bbc3ff345e6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +huelga 
\entryTyp root 
\gENG strike 
\gSPN huelga 
\e +huelga 
\c N0 
\ach huelga 
\akh huelga 
\acl huelga 
\akl huelga 
\ame huelga</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="d2d2bfb6-5ff7-4b48-831a-c27cb6b0f51e" ownerguid="c6dd4537-9d9b-4fbb-9d81-8b23c1ac66f2"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="d2d635f7-82c2-4253-84b3-cfb449802e6d" ownerguid="70452de9-2140-4d6d-99ae-4f141a2b507f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="ca07312d-49a1-4d8c-8591-706cb7d5a595" t="r" /> -</Msa> -<Sense> -<objsur guid="a1eaf593-3379-47ea-bee4-15cbbda9775f" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="d2d78088-0f8c-4d66-8163-0297c91a817e" ownerguid="80415fac-b3d8-4e3c-bdb8-dc92f3c6dad8"> -<ExampleWords> -<AUni ws="en">boasting, bragging, name-dropping</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the act of boasting?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d2d7e3e5-e5c8-4c9a-beba-843fbef0f0a2" ownerguid="246299ea-c8d9-4523-a9fb-f2f670654862"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">expensive</AUni> -<AUni ws="es">costoso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="59001859-1748-4387-9e36-b60f8e474bc2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d2d8d727-969a-4228-9e48-4f41e212f4f8" ownerguid="f79585cc-02e5-4d3c-adf8-b215e91c87d4"> -<Form> -<AUni ws="qvm-x-ach">manta</AUni> -<AUni ws="qvm-x-acl">manta</AUni> -<AUni ws="qvm-x-akh">manta</AUni> -<AUni ws="qvm-x-akl">manta</AUni> -<AUni ws="qvm-x-ame">manta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d2d9ea9f-405f-4538-b3a8-5df7dfd107c4" ownerguid="375a906d-ce35-4c69-939c-a263cf448a31"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="e7956ca5-d415-47d0-b88e-f84339f0b9d6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoInflAffMsa" guid="d2da946d-6a87-4287-bfd1-608f8a9f111e" ownerguid="986b31ce-1a07-47f4-93aa-3048f8e0833d"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d2db09a1-0734-46f7-8978-8472fd182d86" ownerguid="026eb7e6-397b-4769-951e-608bcd733725"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rinse.mouth</AUni> -<AUni ws="es">enjuagar.boca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="966b581e-e507-45a7-a5c8-4cf84a60f3f0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d2de80dc-25f8-436f-8752-0d1dd8e9b8bc" ownerguid="3366df1f-d70e-4052-8d39-7159e5b24c0b"> -<Form> -<AUni ws="qvm-x-ach">wayu</AUni> -<AUni ws="qvm-x-acl">wayu; wayo</AUni> -<AUni ws="qvm-x-akh">wayu</AUni> -<AUni ws="qvm-x-akl">wayu; wayo</AUni> -<AUni ws="qvm-x-ame">wayu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d2df3d6b-f9a5-404e-b3ec-b59dac569484"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pasha</AUni> -<AUni ws="qvm-x-acl">pasha</AUni> -<AUni ws="qvm-x-akh">pasha</AUni> -<AUni ws="qvm-x-akl">pasha</AUni> -<AUni ws="qvm-x-ame">pasha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pasha.v</AUni> -<AUni ws="qvm-x-acl">*pasha.v</AUni> -<AUni ws="qvm-x-akh">*pasha.v</AUni> -<AUni ws="qvm-x-akl">*pasha.v</AUni> -<AUni ws="qvm-x-ame">*pasha.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.739" /> -<DateModified val="2022-10-10 21:18:47.204" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c345d733-07f9-4247-afc2-9a701514d746" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pasha.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="26d7b3ef-f288-4664-9179-0ea2360bf9ec" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="201059fb-5838-4f7f-ba7b-5c5ba2102e9c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pasha.v 
\entryTyp root 
\gENG 
\gSPN 
\e *pasha.v 
\c V1 
\ach pasha 
\akh pasha 
\acl pasha 
\akl pasha 
\ame pasha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d2e4e6aa-e699-41b4-8bb3-55e4793bd14b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chaquipalta</AUni> -<AUni ws="qvm-x-acl">chaquipalta</AUni> -<AUni ws="qvm-x-akh">chakipalta</AUni> -<AUni ws="qvm-x-akl">chakipalta</AUni> -<AUni ws="qvm-x-ame">chakipalta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trakipallta</AUni> -<AUni ws="qvm-x-acl">*trakipallta</AUni> -<AUni ws="qvm-x-akh">*trakipallta</AUni> -<AUni ws="qvm-x-akl">*trakipallta</AUni> -<AUni ws="qvm-x-ame">*trakipallta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.48" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="19c5fda7-aff4-4812-b841-afd1953b9e75" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trakipallta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0211f2ab-4819-4bb5-8d71-f7e9694dae65" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5640f188-d40c-463e-b023-c828e91a093f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trakipallta 
\entryTyp root 
\gENG sole.of.foot 
\gSPN 
\e *trakipallta 
\c N0 
\ach chaquipalta 
\akh chakipalta 
\acl chaquipalta 
\akl chakipalta 
\ame chakipalta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="d2e73238-ff99-4ba3-8ce6-d8ae98721710" ownerguid="45f7b003-ade3-4efc-8dee-259dcbf80a4a"> -<Abbreviation> -<AUni ws="en">3.3.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to agreeing to do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Agree to do something</AUni> -</Name> -<Questions> -<objsur guid="01a39112-b7cd-4238-910b-266f109b17dd" t="o" /> -<objsur guid="448ddc0f-4710-4d8e-9467-ae0af08cbf48" t="o" /> -<objsur guid="c35349e4-0d48-481d-b1a5-8d0b37bf45ef" t="o" /> -<objsur guid="08064eb9-a879-4702-ac16-c5a920f44f3f" t="o" /> -<objsur guid="b8f86f45-f96a-4740-b4c0-677171981cb8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="d2eb4ea7-b5aa-4ab9-aa4f-d4a0fe03a28c" ownerguid="eec72226-106c-4825-b245-6e18110ee917"> -<ExampleWords> -<AUni ws="en">attic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What is the area called formed by the sides of the roof?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d2ed201c-ab17-400b-8025-bf55fe898661" ownerguid="0d1d15dc-d2d2-44dd-938a-816344e4a078"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sting</AUni> -<AUni ws="es">picar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="93bc71dc-3954-4667-bece-23e2d61b0793" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="d2ee6f03-4e98-4abb-869d-e5580b70541e" ownerguid="0d9ffa56-e984-41e3-95cf-34d29af2d8db"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="77a2a524-38ae-4a84-98f1-a338059508c0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="d2efc36d-1244-40da-9cbe-8d78072f8c53" ownerguid="8d316e54-e6e9-4db9-9975-f6039564242c"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="d2f0343a-fa2f-4582-bca5-0c0c5860787d" ownerguid="1ecdd7ca-47cf-4594-91fa-23b6f68e18a9"> -<Form> -<AUni ws="qvm-x-ach">calambri; calambre</AUni> -<AUni ws="qvm-x-acl">calambri; calambri; calambre</AUni> -<AUni ws="qvm-x-akh">calambri; calambre</AUni> -<AUni ws="qvm-x-akl">calambri; calambri; calambre</AUni> -<AUni ws="qvm-x-ame">calambri; calambre</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="d2f05cc8-1a3f-4bc2-9a2b-38174bb84091" ownerguid="c2dbe83a-d638-45ac-a6d5-5f041b9dde71"> -<Abbreviation> -<AUni ws="en">2.5.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.47" /> -<DateModified val="2022-9-23 16:55:8.47" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being mute--unable to speak (usually because of being unable to hear).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Mute</AUni> -</Name> -<Questions> -<objsur guid="75e89fcb-60f1-416b-9804-d910d47b2bbb" t="o" /> -<objsur guid="e02dbbc7-c829-4f7c-8efb-cc23aac803ed" t="o" /> -<objsur guid="d23fa144-bf0c-4974-aed6-58c334379772" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="d2f09eb1-031e-4e31-9d75-8311d04218d6" ownerguid="469b0a30-3c26-4cfd-b948-7bb952eeff41"> -<ExampleWords> -<AUni ws="en">know someone</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to knowing someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d2f1e620-8add-4111-9a75-42fd07223055" ownerguid="375d1eae-35ea-43eb-8d24-67023afed5d1"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d2f2c5f1-c7a8-4acb-8960-28e7dd625868" ownerguid="ade48fbd-6348-4cc9-b18b-04ed20ddf78c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">signal</AUni> -<AUni ws="es">señal</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7eb9e4a2-eecb-4bcd-8fe1-e2e0bc2e8ec7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="d2f3aed7-a012-414b-8269-a9170db0555d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shalshalya</AUni> -<AUni ws="qvm-x-acl">shalshalya</AUni> -<AUni ws="qvm-x-akh">shalshalya</AUni> -<AUni ws="qvm-x-akl">shalshalya</AUni> -<AUni ws="qvm-x-ame">shalshalya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shallshallya</AUni> -<AUni ws="qvm-x-acl">*shallshallya</AUni> -<AUni ws="qvm-x-akh">*shallshallya</AUni> -<AUni ws="qvm-x-akl">*shallshallya</AUni> -<AUni ws="qvm-x-ame">*shallshallya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.531" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="13167df9-db41-473c-9569-f3c948e4f477" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shallshallya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="79d39d98-cf6c-4fca-906e-bc4027ba0fdb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5325a313-c82c-4327-ae51-ade7f344f724" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shallshallya 
\entryTyp root 
\gENG 
\gSPN 
\e *shallshallya 
\c N0 
\ach shalshalya 
\akh shalshalya 
\acl shalshalya 
\akl shalshalya 
\ame shalshalya 
\i PSA 150.5 Shalshalyacunata tucapalanpa alabashun.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="d2f516f4-df1c-44f6-8704-76dd52201317" ownerguid="134c68a9-ac3f-4b7e-8fca-63642d796a75"> -<Abbreviation> -<AUni ws="en">4.6.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.256" /> -<DateModified val="2022-9-23 16:55:8.256" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a foreigner--a person who visits or lives in a country but is not a citizen.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Foreigner</AUni> -</Name> -<Questions> -<objsur guid="f941947a-249d-4494-8ba5-ee40cfc3d58a" t="o" /> -<objsur guid="d0eaafd6-3871-46e7-a880-611141a9c149" t="o" /> -<objsur guid="2c320ff6-9728-432a-b83f-be2dbf8e9fb5" t="o" /> -<objsur guid="6d0d3357-de52-4ff7-a605-ef9c6fdca009" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="5771f3a1-fda3-4111-9abc-7a0d76c60a79" t="r" /> -<objsur guid="6cbdaf94-8e2c-4b26-936a-d2f86d158250" t="r" /> -<objsur guid="ee0585b1-627a-4a71-888d-b5d82619431e" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="d2f861df-ce83-4e62-9ac2-97482afb6fec" ownerguid="9b267cc1-983c-407a-98d2-1e27add6292c"> -<ExampleWords> -<AUni ws="en">knot, braid, lashing, hitch, square knot, slip knot, two half hitches</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a knot or a particular kind of knot?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d2fbac5f-56d8-44be-844c-ad2acc3db7ca"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">repuestu; repuesto</AUni> -<AUni ws="qvm-x-acl">repuestu; repuestu; repuesto</AUni> -<AUni ws="qvm-x-akh">repuestu; repuesto</AUni> -<AUni ws="qvm-x-akl">repuestu; repuestu; repuesto</AUni> -<AUni ws="qvm-x-ame">repuestu; repuesto</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+repuesto</AUni> -<AUni ws="qvm-x-acl">+repuesto</AUni> -<AUni ws="qvm-x-akh">+repuesto</AUni> -<AUni ws="qvm-x-akl">+repuesto</AUni> -<AUni ws="qvm-x-ame">+repuesto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.336" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="96c24d5b-8a5b-4358-811e-95c97634317a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+repuesto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="18d70325-cb68-4127-b695-3c18f7d79468" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d9f2f721-7110-4760-9ecc-67682da8a3b4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +repuesto 
\entryTyp root 
\gENG replacement 
\gSPN repuesto 
\e +repuesto 
\c N0 
\ach repuestu / ~_# 
\ach repuesto / _# 
\akh repuestu / ~_# 
\akh repuesto / _# 
\acl repuestu / ~_# 
\acl repuestu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl repuesto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl repuestu / ~_# 
\akl repuestu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl repuesto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame repuestu / ~_# 
\ame repuesto / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="d2fdd55a-2c22-4778-b65b-47f2cec4871f" ownerguid="48ca8966-6a2f-4197-9d87-6c3fa2f3f8b4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ka</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ka</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="22806abf-f462-448a-bb3e-39bbf5d75aea" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="d3090f31-8b3f-4427-af97-bd3e35845a2a" ownerguid="e949f393-2a5b-4792-af8f-75138322ceee"> -<ExampleWords> -<AUni ws="en">strong man, he-man, athlete</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to a person who is strong?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d3109011-4182-44f1-883e-69d7e8e176eb" ownerguid="321d0a74-705f-40bf-8d24-809f65bee895"> -<ExampleWords> -<AUni ws="en">becoming</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) state commences: beginning of a state of "becoming." Often called Inceptive or Inchoative. If there is a morpheme specifically for this meaning, it is usually derivational and restricted to stative words. However, it is also possible for "Perfects" or "Perfectives" to have this as their use with stative words.</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d313731d-1b92-49d7-ae79-3c5cd07d5300" ownerguid="250baab9-5a31-493c-95ea-9fee8baf9fd5"> -<ExampleWords> -<AUni ws="en">grace, gracefulness, poise, elegance, coordination</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer graceful movement?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="d313b48c-75fd-4ab8-96c9-bb5bdec538ab" ownerguid="1f2173bf-8e27-4cb2-a28a-2ec98728541d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a4d42f6f-d626-4469-8166-21d6f4e69d6d" t="r" /> -</Morph> -<Msa> -<objsur guid="72dc7bab-4d12-4cdb-a144-3c853f889fb5" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="d31442aa-54be-4be2-851b-0135f5c1de72" ownerguid="122cbd7c-9136-4d5d-873c-c07e6e85a151"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="d314c687-145c-4ecd-a7a0-14278a56d704" ownerguid="fccc2973-d590-4fc7-ba38-b9870732c9bf"> -<Form> -<AUni ws="qvm-x-ach">tsuri; tsurï</AUni> -<AUni ws="qvm-x-acl">tsurë; tsuri; tsure</AUni> -<AUni ws="qvm-x-akh">tsuri; tsurï</AUni> -<AUni ws="qvm-x-akl">tsurë; tsuri; tsure</AUni> -<AUni ws="qvm-x-ame">tsuri; tsurï</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d31534a5-2b42-4ca4-94c0-b9fe2c689586"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">salud</AUni> -<AUni ws="qvm-x-acl">salud</AUni> -<AUni ws="qvm-x-akh">salud</AUni> -<AUni ws="qvm-x-akl">salud</AUni> -<AUni ws="qvm-x-ame">salud</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+salud</AUni> -<AUni ws="qvm-x-acl">+salud</AUni> -<AUni ws="qvm-x-akh">+salud</AUni> -<AUni ws="qvm-x-akl">+salud</AUni> -<AUni ws="qvm-x-ame">+salud</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.429" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e4cda44d-2471-4155-bf91-3f38de8dda97" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+salud</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="061fa6a9-e854-40a5-874a-e90ccd7dea8f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="83fe4ab2-cacb-44b2-9293-4a8a8341ad1b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +salud 
\entryTyp root 
\gENG health 
\gSPN salud 
\e +salud 
\c N0 
\mp +FinalC 
\ach salud 
\akh salud 
\acl salud 
\akl salud 
\ame salud</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d3162cd0-794b-49b6-bbe1-31087e3058ab" ownerguid="4fb79b12-3bd1-46ed-8698-7d27052a5dc7"> -<ExampleWords> -<AUni ws="en">plain, plateau, prairie, steppe, savanna, tundra, heath, mesa, field, meadow, pasture, flatland, tableland, bottomland, lowland, level ground, lowlands</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to land that is flat?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d3165f4a-7507-4cef-926d-46277db88a22" ownerguid="e949f393-2a5b-4792-af8f-75138322ceee"> -<ExampleWords> -<AUni ws="en">stocky, burly, brawny, beefy, hefty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who is strong and fat?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="d3167437-4b57-4a9b-a5a6-a4403e4449cf" ownerguid="f39d9f45-6c4b-4e2f-9e86-6e1766545a1d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yarpä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yarpä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yarpä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yarpä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yarpä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="15f7b62a-a17b-41ac-b56e-85186914954c" t="r" /> -</Morph> -<Msa> -<objsur guid="7440cecd-7493-4b9e-86fd-dbf27ad2bfed" t="r" /> -</Msa> -<Sense> -<objsur guid="447e4c18-5a93-41fa-8398-831d8db8431e" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="d3173625-f95f-430a-b4b6-aaaafbac7d74" ownerguid="dc9c4196-9030-4e82-872c-4c1464ba758f"> -<Form> -<AUni ws="qvm-x-ach">shagsha</AUni> -<AUni ws="qvm-x-acl">shagsha</AUni> -<AUni ws="qvm-x-akh">shaqsha</AUni> -<AUni ws="qvm-x-akl">shaqsha</AUni> -<AUni ws="qvm-x-ame">shaqsha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d31b12a5-7b2e-4204-9994-9297d104f22c" ownerguid="31debfe3-91da-4588-b433-21b0e14a101b"> -<ExampleWords> -<AUni ws="en">road, street, lane, path, footpath, way, avenue, boulevard, highway, freeway, thoroughfare, divided highway, paved road, dirt road, improved road, unimproved road</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What types of roads are there?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d31b2492-5ec8-4a57-8fc5-47c1f8b6491e" ownerguid="18e64269-5afa-4579-8789-72ad4940a2de"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">worship</AUni> -<AUni ws="es">adorar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3bc89f1d-dedb-410c-92d2-6d3aa2c30ea4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d31e1e1c-1ff8-4126-9066-ca6969a866eb" ownerguid="1ec7e01b-c1fb-4401-ad08-f4c31304e863"> -<Form> -<AUni ws="qvm-x-ach">wasarima</AUni> -<AUni ws="qvm-x-acl">wasarima</AUni> -<AUni ws="qvm-x-akh">wasarima</AUni> -<AUni ws="qvm-x-akl">wasarima</AUni> -<AUni ws="qvm-x-ame">wasarima</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="d31f58c4-8f8c-4459-8e8a-8aa2b3482816" ownerguid="a359970c-b836-4bda-b58a-f7bb09e31825"> -<Form> -<AUni ws="qvm-x-ach">chogpa</AUni> -<AUni ws="qvm-x-acl">chogpa</AUni> -<AUni ws="qvm-x-akh">choqpa</AUni> -<AUni ws="qvm-x-akl">choqpa</AUni> -<AUni ws="qvm-x-ame">chuqpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d31f904d-9b12-4251-ab62-f78d712fd7a6" ownerguid="052bc995-c41e-4b2c-bed1-49b921bdce25"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">beans</AUni> -<AUni ws="es">chochos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9fec2b3e-1983-40bd-85a9-4f182fde1db0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="d32131fc-fd15-4162-8310-5223a1c65c20"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa:cu; pa:ca</AUni> -<AUni ws="qvm-x-acl">pa:cu; pa:co; pa:ca</AUni> -<AUni ws="qvm-x-akh">pa:ku; pa:ka</AUni> -<AUni ws="qvm-x-akl">pa:ku; pa:ko; pa:ka</AUni> -<AUni ws="qvm-x-ame">pa:ku; pa:ka</AUni> -</Custom> -<Comment> -<AStr ws="en"> -<Run ws="en">foreshortens</Run> -</AStr> -</Comment> -<DateCreated val="2022-9-23 18:26:20.548" /> -<DateModified val="2022-10-21 16:40:38.56" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="2" /> -<LexemeForm> -<objsur guid="48430ea7-83e0-4c18-b63f-8aac6673f507" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">PLALLF</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="11ffd77d-802d-41f0-86af-94f639eca49d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e91b9c15-7ab1-4a6e-b5e3-4c2c6efa637a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx PLALLF 
\entryTyp suffix 
\gENG PLALLF 
\gSPN PLTODF 
\e PLALLF 
\c V1/V1 V2/V2 
\o 060 
\mp +foreshortens +mlowers PMlowered 
\ach pa:cu 
\ach pa:ca morphlowered 
\akh pa:ku 
\akh pa:ka morphlowered 
\acl pa:cu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pa:co +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pa:ca morphlowered 
\akl pa:ku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pa:ko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pa:ka morphlowered 
\ame pa:ku 
\ame pa:ka morphlowered 
\mcc PLALLF / [TakePLALLF] ... _ 
\mcc PLALLF / [TakePLALLF] ... _</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="d323219f-b22a-4001-abcd-e39fa0a68fcb" ownerguid="ece72519-f223-4968-b92e-80b654ded50e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d324d7a1-5424-444d-a267-242c6250fddc" ownerguid="c36131c3-b5e1-4aac-a7b5-7c9cfa1e8f74"> -<ExampleWords> -<AUni ws="en">kid</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to young goats?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d32ca6af-90ad-4ff2-a472-d46b038b419e" ownerguid="e196bb08-55f4-47dd-ae9e-75da0efaee04"> -<Form> -<AUni ws="qvm-x-ach">calpa</AUni> -<AUni ws="qvm-x-acl">calpa</AUni> -<AUni ws="qvm-x-akh">kalpa</AUni> -<AUni ws="qvm-x-akl">kalpa</AUni> -<AUni ws="qvm-x-ame">kalpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PartOfSpeech" guid="d32dff62-4117-4762-a887-96478406769b" ownerguid="ecf8c677-320a-452c-85c0-1f0df87b5be5"> -<Abbreviation> -<AUni ws="en">interj</AUni> -<AUni ws="es">interj</AUni> -</Abbreviation> -<BackColor val="0" /> -<CatalogSourceId> -<Uni>Interjection</Uni> -</CatalogSourceId> -<DateCreated val="2022-10-14 23:47:54.543" /> -<DateModified val="2022-12-07 19:00:27.196" /> -<Description> -<AStr ws="en"> -<Run ws="en">An interjection is a part of speech, typically brief in form, such as one syllable or word, whose members are used most often as exclamations or parts of an exclamation. An interjection, typically expressing an emotional reaction, often with respect to an accompanying sentence, is not syntactically related to other accompanying expressions, and may include a combination of sounds not otherwise found in the language.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Interjection</AUni> -<AUni ws="es">Interjección</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="d32fda34-6a18-4483-bba0-61fde014f904"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">canca</AUni> -<AUni ws="qvm-x-acl">canca</AUni> -<AUni ws="qvm-x-akh">kanka</AUni> -<AUni ws="qvm-x-akl">kanka</AUni> -<AUni ws="qvm-x-ame">kanka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kanka.n</AUni> -<AUni ws="qvm-x-acl">*kanka.n</AUni> -<AUni ws="qvm-x-akh">*kanka.n</AUni> -<AUni ws="qvm-x-akl">*kanka.n</AUni> -<AUni ws="qvm-x-ame">*kanka.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.922" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="29f6b1c2-cb37-4bc9-83e8-78d361c9e1af" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kanka.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f7c383bb-cd17-4b23-a680-5466ecf8a469" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e3d9d02a-832e-4f51-bbe7-fcb63efdfcdd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kanka.n 
\entryTyp root 
\gENG barbecued.meat 
\gSPN carne.asado 
\e *kanka.n 
\c N0 
\ach canca 
\akh kanka 
\acl canca 
\akl kanka 
\ame kanka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d33042a7-36e6-496e-b2b5-69a668175a46"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">provincia</AUni> -<AUni ws="qvm-x-acl">provincia</AUni> -<AUni ws="qvm-x-akh">provincia</AUni> -<AUni ws="qvm-x-akl">provincia</AUni> -<AUni ws="qvm-x-ame">provincia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+provincia</AUni> -<AUni ws="qvm-x-acl">+provincia</AUni> -<AUni ws="qvm-x-akh">+provincia</AUni> -<AUni ws="qvm-x-akl">+provincia</AUni> -<AUni ws="qvm-x-ame">+provincia</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.962" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="31ddaae3-07ce-4f7b-b05c-aa4e9bb93ea0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+provincia</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a4599e92-8109-4054-b2d0-31fd8e1dac7b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0e229bbb-a0d4-4016-8af6-c51fe397f287" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +provincia 
\entryTyp root 
\gENG province 
\gSPN provincia 
\e +provincia 
\c N0 
\ach provincia 
\akh provincia 
\acl provincia 
\akl provincia 
\ame provincia</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d3315d4b-c39c-479e-ab46-b8875a90f675"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wasgui</AUni> -<AUni ws="qvm-x-acl">wasgui; wasgue</AUni> -<AUni ws="qvm-x-akh">wasqi</AUni> -<AUni ws="qvm-x-akl">wasqi; wasqe</AUni> -<AUni ws="qvm-x-ame">wasqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wasqi</AUni> -<AUni ws="qvm-x-acl">*wasqi</AUni> -<AUni ws="qvm-x-akh">*wasqi</AUni> -<AUni ws="qvm-x-akl">*wasqi</AUni> -<AUni ws="qvm-x-ame">*wasqi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.564" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a2a01b11-008e-4a3c-a128-5cae6d6bbe73" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wasqi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="37a7cae3-e023-417c-a065-5f5a982e4094" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5c79e7d4-eb5a-433c-8398-36f9aa3dd4ac" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wasqi 
\entryTyp root 
\gENG wean 
\gSPN destetar 
\e *wasqi 
\c V2 
\mp +FinalI 
\ach wasgui 
\akh wasqi 
\acl wasgui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wasgue +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wasqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wasqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wasqi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d333614a-4e75-4f5f-9024-59dd71e3ae42"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">suma</AUni> -<AUni ws="qvm-x-acl">suma</AUni> -<AUni ws="qvm-x-akh">suma</AUni> -<AUni ws="qvm-x-akl">suma</AUni> -<AUni ws="qvm-x-ame">suma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sumar</AUni> -<AUni ws="qvm-x-acl">+sumar</AUni> -<AUni ws="qvm-x-akh">+sumar</AUni> -<AUni ws="qvm-x-akl">+sumar</AUni> -<AUni ws="qvm-x-ame">+sumar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.744" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4e183c6e-088f-47d5-b124-23faa7e0232f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sumar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2dc374ee-517f-4755-9ea6-9d464c7be65b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="91268d82-5f81-4ddf-9d70-36c6a2f1ee73" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sumar 
\entryTyp root 
\gENG add 
\gSPN sumar 
\e +sumar 
\c V2 
\ach suma 
\akh suma 
\acl suma 
\akl suma 
\ame suma 
\mcc +sumar / ~_[q] 
\mcc +sumar / ~_1 TOP</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d333ac00-bcbd-496f-8dd8-6a6b27275b19" ownerguid="bd9de99f-6a92-47ee-b6bc-e9877ea21202"> -<ExampleWords> -<AUni ws="en">come upon, discover, discovery, ferret out, find, learn, learn the whereabouts, strike</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to learning the location of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d33492d6-5457-4822-b734-5f43da1aab5a" ownerguid="758bba23-3976-4c2c-a1da-7b0849b7dd2a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">adolescent.girl</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3dfdcdd9-ed5e-4c77-9758-241c66975336" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="d334b12c-0091-4a5b-a11d-fb4c653f0ed9" ownerguid="17272c18-18d4-48d7-a687-57408725336b"> -<Form> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">José</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b4d9dc0d-0e36-466a-bf68-0d3fd58b4ce2" t="r" /> -</Morph> -<Msa> -<objsur guid="afc4e56f-141a-4135-8c3e-b01f980d7aac" t="r" /> -</Msa> -<Sense> -<objsur guid="58f0daef-6491-42b5-9dd2-db887424527d" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="d33e81cd-14df-4423-9f82-e1d32d654685" ownerguid="c7f97c73-200b-4afd-ba63-c1ed6641c6f6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">escape</AUni> -<AUni ws="es">escape</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9344af53-713e-4d05-b271-cf652d5f8545" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d3442317-de51-4036-8243-cb78d66b449b" ownerguid="c8aea8b2-4088-4d20-a0d2-45c2ad974ee1"> -<ExampleWords> -<AUni ws="en">furrowed, ribbed, striated, fluted, corduroy, corrugated, rippled, washboard, wrinkled</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something with many furrows?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d3449f95-5dee-4a1c-b94d-de03b0c395dc" ownerguid="b285bc3b-ba9f-4160-8e79-81dd43dfdbaa"> -<ExampleWords> -<AUni ws="en">unemployed, not working, out of work, idle, jobless, looking for work</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to not having a job?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="d345142f-d51e-4023-a25a-2a4c0f1fbcbf" ownerguid="5bb29704-fe0f-4594-9622-ce0aa42b93c8"> -<Abbreviation> -<AUni ws="en">6.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.397" /> -<DateModified val="2022-9-23 16:55:8.397" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to preparing land for planting crops.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Land preparation</AUni> -</Name> -<OcmCodes> -<Uni>241 Tillage</Uni> -</OcmCodes> -<Questions> -<objsur guid="a5dc36c2-02e0-410c-a46b-95dae49c215b" t="o" /> -<objsur guid="007a29ea-1c25-4c6c-8e2c-c4ea4f630afb" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="685d474d-3b84-4339-98c6-2aac28b9870c" t="o" /> -<objsur guid="62030451-c0f2-4e80-8085-05c6400fc914" t="o" /> -<objsur guid="58de3766-8729-48e2-97fe-937a441eb722" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="d34719d1-5b68-4e5d-9cca-0cee49394de5" ownerguid="079abd3f-dfa3-49e0-9654-674d1816c0a8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pray</AUni> -<AUni ws="es">orar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8a510d5c-8768-4c07-9099-3b60d334faff" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="d34bf917-b729-484d-add3-dbad3eff722a" ownerguid="8863ed55-e31f-4eae-8b56-5c020f073658"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="d34e0a48-653e-4a2f-b230-fe9e61129a6c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quipu</AUni> -<AUni ws="qvm-x-acl">quipu; quipu; quipo</AUni> -<AUni ws="qvm-x-akh">kipu</AUni> -<AUni ws="qvm-x-akl">kipu; kipu; kipo</AUni> -<AUni ws="qvm-x-ame">kipu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kipu</AUni> -<AUni ws="qvm-x-acl">*kipu</AUni> -<AUni ws="qvm-x-akh">*kipu</AUni> -<AUni ws="qvm-x-akl">*kipu</AUni> -<AUni ws="qvm-x-ame">*kipu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.993" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eaf45ee7-178d-4470-924d-74b3fddc2ca8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kipu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dca151da-8bff-4207-83ce-7df5c7ab65a2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="14500748-3d9a-4d15-9e2f-4b6a7e4c3eba" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kipu 
\entryTyp root 
\gENG knot 
\gSPN nudo 
\e *kipu 
\c N0 
\ach quipu 
\akh kipu 
\acl quipu / _# 
\acl quipu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl quipo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kipu / _# 
\akl kipu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kipo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kipu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="d354133c-9b19-49bf-a6dd-10a4e147894d"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Kananqa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="d355aacd-e5ef-47bd-9ecf-13f0e20ee8b7" ownerguid="627995c6-072c-4b73-9405-dfc39686ac3c"> -<Form> -<AUni ws="qvm-x-ach">yancu</AUni> -<AUni ws="qvm-x-acl">yancu; yancu; yanco</AUni> -<AUni ws="qvm-x-akh">yanku</AUni> -<AUni ws="qvm-x-akl">yanku; yanku; yanko</AUni> -<AUni ws="qvm-x-ame">yanku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d35769c5-bbb0-4773-98a6-14b11b576665"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jangu</AUni> -<AUni ws="qvm-x-acl">jangu; jangu; jango</AUni> -<AUni ws="qvm-x-akh">janqu</AUni> -<AUni ws="qvm-x-akl">janqu; janqu; janqo</AUni> -<AUni ws="qvm-x-ame">hanqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hanqu</AUni> -<AUni ws="qvm-x-acl">*hanqu</AUni> -<AUni ws="qvm-x-akh">*hanqu</AUni> -<AUni ws="qvm-x-akl">*hanqu</AUni> -<AUni ws="qvm-x-ame">*hanqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.670" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2b114c76-e85b-4b49-aef5-68ac9eb76215" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hanqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4eb54260-41ed-4d35-9035-9cf7ce7908ab" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d06d1192-bc80-46f4-8532-b282ebb13dae" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hanqu 
\entryTyp root 
\gENG 
\gSPN 
\e *hanqu 
\c N0 
\ach jangu 
\akh janqu 
\acl jangu / _# 
\acl jangu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl jango +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl janqu / _# 
\akl janqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl janqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hanqu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="d358061d-4091-422f-bae6-0b41fc9ee2e8" ownerguid="54153363-ba65-4136-ac54-f489c3976296"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="d35dbac0-6fa9-4e50-bf19-4ed41f6051f1" ownerguid="0b33e2e3-ea5c-42b5-9c9c-904b89913aeb"> -<Form> -<AUni ws="qvm-x-ach">mula</AUni> -<AUni ws="qvm-x-acl">mula</AUni> -<AUni ws="qvm-x-akh">mula</AUni> -<AUni ws="qvm-x-akl">mula</AUni> -<AUni ws="qvm-x-ame">mula</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="d35ddad3-f496-4dd1-a6c1-351f8fee9898" ownerguid="5d654943-5ce0-4ae5-a598-9b99cfdf380b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="d362ffb4-61ff-4224-8764-68b45b44b5b9" ownerguid="155510e7-ca58-418a-8c5c-8b044d67cebd"> -<Form> -<AUni ws="qvm-x-ach">wichya</AUni> -<AUni ws="qvm-x-acl">wichya</AUni> -<AUni ws="qvm-x-akh">wichya</AUni> -<AUni ws="qvm-x-akl">wichya</AUni> -<AUni ws="qvm-x-ame">wichya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d36725fa-a951-4289-8cdb-9c4a6b3dafb3" ownerguid="35a9da32-53ee-44fa-9c65-5a15f88ad283"> -<ExampleWords> -<AUni ws="en">King's Highway, Highway 66, Main Street, Piccadilly Square, Oregon Trail</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the names of the streets in the language area?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d36a4266-ee51-439f-af08-13160b3ee002" ownerguid="d68b09ee-846d-45ef-b0d7-392425fef18e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sleet</AUni> -<AUni ws="es">granizo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ea98d011-d801-4aee-84c9-b3d1f8f606cb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="d36b17c4-4719-4dda-8bc8-b2763104c642" ownerguid="9886f609-95e4-4b61-8d4b-07bf0eb003de"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">full</AUni> -<AUni ws="es">lleno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3f19bd62-99b6-4524-a081-45f4014ccf08" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d36c5ea5-aabc-4469-9108-d60eac859c5e" ownerguid="df7d8024-acee-4188-a227-c4943575aad3"> -<Form> -<AUni ws="qvm-x-ach">comedïdu</AUni> -<AUni ws="qvm-x-acl">comedïdu; comedïdu; comedïdo</AUni> -<AUni ws="qvm-x-akh">comedïdu</AUni> -<AUni ws="qvm-x-akl">comedïdu; comedïdu; comedïdo</AUni> -<AUni ws="qvm-x-ame">comedïdu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d36ece25-d0f4-4990-8edb-2467bbed42c5" ownerguid="388c9942-b41e-41ad-8f88-be1c6ce83740"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ball</AUni> -<AUni ws="es">bola</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8835d427-d665-4aec-ba62-e86226c00103" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="d36f1b80-e776-4297-a624-19a5128bf084" ownerguid="5064da75-9e00-49bc-88af-d092af810018"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dictionary</AUni> -<AUni ws="es">diccionario</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3aa87a2c-bff5-48a1-bf63-ec25adab8437" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="d36fe3cc-600e-4b0b-b096-19f79253321f" ownerguid="77882bc5-c87d-44ad-985b-0a15ef40f13f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">na</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">na</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">na</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">na</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">na</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38151a50-9c63-4a70-8bbb-e5cfc5339ad5" t="r" /> -</Morph> -<Msa> -<objsur guid="3afae7ea-b6f9-4990-9b80-c355228ee832" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="d3703371-0919-4eaf-858f-4e564724ba17" ownerguid="1773715e-7b2f-41dc-88eb-99d2c7ea3f66"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">devil</AUni> -<AUni ws="es">diablo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bb045497-8a03-4ab4-a3a3-5ef36b7bcac5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="d3761502-9118-4066-b51b-5bbd23c21020"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pobrisa</AUni> -<AUni ws="qvm-x-acl">pobrisa</AUni> -<AUni ws="qvm-x-akh">pobrisa</AUni> -<AUni ws="qvm-x-akl">pobrisa</AUni> -<AUni ws="qvm-x-ame">pobrisa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pobreza.v</AUni> -<AUni ws="qvm-x-acl">+pobreza.v</AUni> -<AUni ws="qvm-x-akh">+pobreza.v</AUni> -<AUni ws="qvm-x-akl">+pobreza.v</AUni> -<AUni ws="qvm-x-ame">+pobreza.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.889" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0b564ef2-2b23-49b7-bebd-1c860c6e4080" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pobreza.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="763add5c-d336-40c4-908b-c3574f9cbc62" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4b40ca7a-6a98-4281-bcf7-1f1bfa5d27e3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pobreza.v 
\entryTyp root 
\gENG make.poor 
\gSPN hacer.pobre 
\e +pobreza.v 
\c V2 
\ach pobrisa 
\akh pobrisa 
\acl pobrisa 
\akl pobrisa 
\ame pobrisa 
\i Gen 31.7 Tsaynog arupaycaptëpis payga engañamashgami. Atsca cutimi mana cumplishgatsu pägamänanpag parlacushgänog. Tsaynog ruraycämaptinpis Tayta Dios manami cachapashgatsu pobrisamänanpag.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d378771a-8157-4194-91c8-c775576b6373" ownerguid="bca1af45-7621-43c0-9152-fac0018e5319"> -<ExampleWords> -<AUni ws="en">drive, force, goad, prod, propel, ride, spur</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to causing someone to move with you?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d379acc2-3633-4b13-af2f-5f545180feca" ownerguid="eb7d0129-e073-421c-bcd7-43bef6f3bf54"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">final</AUni> -<AUni ws="es">final</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="25bff852-eb02-44d5-9869-68aa20f2266a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d37a701d-e0dd-46ac-8b8b-5256fe507ec0" ownerguid="33037a4d-3454-4c59-9a61-c5fb747f107a"> -<ExampleWords> -<AUni ws="en">brickwork, lay bricks</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to working with bricks?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d37c8b02-36f7-4ffe-bfbb-fc3f9800d88b" ownerguid="6681f03b-06c4-4509-9253-e4739c9c1614"> -<ExampleWords> -<AUni ws="en">alms, contribution, charity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something someone gives to a beggar?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d37e95fa-2e8b-4178-b490-235c0ab4bcab"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wayta</AUni> -<AUni ws="qvm-x-acl">wayta</AUni> -<AUni ws="qvm-x-akh">wayta</AUni> -<AUni ws="qvm-x-akl">wayta</AUni> -<AUni ws="qvm-x-ame">wayta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wayta.n</AUni> -<AUni ws="qvm-x-acl">*wayta.n</AUni> -<AUni ws="qvm-x-akh">*wayta.n</AUni> -<AUni ws="qvm-x-akl">*wayta.n</AUni> -<AUni ws="qvm-x-ame">*wayta.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.627" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="70c8cd2d-f90f-45ff-a376-67afebda4a11" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wayta.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c198c475-80b3-4f59-977e-70a9806de385" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7737524a-ca79-4d1a-a41f-b0e8c1a52d43" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wayta.n 
\entryTyp root 
\gENG flower 
\gSPN flor 
\e *wayta.n 
\c N0 
\ach wayta 
\akh wayta 
\acl wayta 
\akl wayta 
\ame wayta</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="d3822147-5713-4cf0-bbc7-5278307c9640" ownerguid="3c1d829d-0ad2-4b50-9886-df081a7bfe33"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="d3835f8a-caeb-4418-a3c8-11469c9e43dc" ownerguid="b275f58d-9a5d-411f-a811-7a8347a8a4e1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">driver</AUni> -<AUni ws="es">chaufer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1c75221c-77ff-4c61-81f4-eeef1b7305e0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d38a5bec-8c94-4a56-be8d-2c6ed6984503" ownerguid="d4e8f608-e7f8-4a9f-9299-c3f17e267bd5"> -<Form> -<AUni ws="qvm-x-ach">salta</AUni> -<AUni ws="qvm-x-acl">salta</AUni> -<AUni ws="qvm-x-akh">salta</AUni> -<AUni ws="qvm-x-akl">salta</AUni> -<AUni ws="qvm-x-ame">salta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d38c92e2-6409-4b6b-842e-013486e407ee"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mayna</AUni> -<AUni ws="qvm-x-acl">mayna</AUni> -<AUni ws="qvm-x-akh">mayna</AUni> -<AUni ws="qvm-x-akl">mayna</AUni> -<AUni ws="qvm-x-ame">mayna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mayna</AUni> -<AUni ws="qvm-x-acl">*mayna</AUni> -<AUni ws="qvm-x-akh">*mayna</AUni> -<AUni ws="qvm-x-akl">*mayna</AUni> -<AUni ws="qvm-x-ame">*mayna</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.376" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7ed38a2b-1142-453c-85b7-6e3754f8942d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mayna</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8190ca13-8e01-4b81-9571-1d8fa988326f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2bcf7499-0d6b-42c6-a871-2d4d1115ae06" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mayna 
\entryTyp root 
\gENG already 
\gSPN ya 
\e *mayna 
\c R0 
\ach mayna 
\akh mayna 
\acl mayna 
\akl mayna 
\ame mayna</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="d38cf70b-e65e-4dcc-a8a6-3e72b1af17a6" ownerguid="a284a49b-86a0-4549-a04a-2513678be7b0"> -<Form> -<AUni ws="qvm-x-ach">willu</AUni> -<AUni ws="qvm-x-acl">willu; willo</AUni> -<AUni ws="qvm-x-akh">willu</AUni> -<AUni ws="qvm-x-akl">willu; willo</AUni> -<AUni ws="qvm-x-ame">willu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d38e45ba-509e-4283-aef5-ee4528164d38" ownerguid="0ede51d2-69bd-411e-97f9-da0d5118bbff"> -<ExampleWords> -<AUni ws="en">judgment, verdict, sentence, conviction, condemnation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the judgment?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d38e8d64-0e7d-47b1-8cea-a10046d670b0" ownerguid="243d8a57-d5ed-4d7f-bd5e-f2605634f0fc"> -<ExampleWords> -<AUni ws="en">fortify, entrench, dig in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a place easier to defend?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d38f76c5-5c31-4a0a-bfab-e68eba44609c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pati</AUni> -<AUni ws="qvm-x-acl">pati; pate</AUni> -<AUni ws="qvm-x-akh">pati</AUni> -<AUni ws="qvm-x-akl">pati; pate</AUni> -<AUni ws="qvm-x-ame">pati</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pati</AUni> -<AUni ws="qvm-x-acl">*pati</AUni> -<AUni ws="qvm-x-akh">*pati</AUni> -<AUni ws="qvm-x-akl">*pati</AUni> -<AUni ws="qvm-x-ame">*pati</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.757" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bc30dac9-aba9-4827-b21e-e7cc8ddee01c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pati</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e129ec8e-3ec8-4358-83f1-71a097782487" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="48a09231-23d3-42b6-9ac8-055e4107d04c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pati 
\entryTyp root 
\gENG fold 
\gSPN doblar 
\e *pati 
\c V1 
\mp +FinalI 
\ach pati 
\akh pati 
\acl pati +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pate +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pati +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pate +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pati</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d3901f41-8f4d-40cf-8810-4ba72f81f7b6" ownerguid="5e3bb9e5-fd70-4c5a-95a0-938bc4876a47"> -<ExampleWords> -<AUni ws="en">not come true, fail to materialize</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to an expectation not happening?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d391410c-4496-4c32-b855-37924a1bfb78" ownerguid="05e20a72-9496-4bba-8097-5605692e83a1"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">He is rich <in> land.; He is a leader, <specifically in regard to> strategy.; <In the case of> a disagreement we will seek arbitration.; What does that have to do <with> me?; There might be a problem <between> our decision <and> his.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">specify, specified, specification, specifically in regard to, with regard to, in the case of, concerning, in the area of, in, with, between...and, as touching, particular, particularly, more especially</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate the specific area or topic that is being talked about?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d39144bf-97a3-4a07-9419-970dbfd3ea27" ownerguid="bd4a2527-f66c-4f48-922e-8b180bba8ef6"> -<ExampleWords> -<AUni ws="en">heater, furnace, air-conditioning</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What kinds of things are used to heat or cool a house?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d3918eef-4d01-4e8a-ab12-f9531a8b4bca" ownerguid="28a68cea-9128-4d5c-8542-8df38c907310"> -<ExampleWords> -<AUni ws="en">freedom, autonomy, independence, liberty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the state of being free?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d391acc9-171d-4176-a95d-d8a6ed2847ff" ownerguid="8fbed974-7d25-44c3-80cb-7d02e4069007"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">a cup <of> milk</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(4) In English 'Containership' can be expressed by a noun phrase with the 'Container' as the head and the 'Content' marked by 'of'.</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d392363e-6966-406d-aba8-23e42586aa0e" ownerguid="5bcd08a6-cb46-41bb-a732-0d690b5ea596"> -<ExampleWords> -<AUni ws="en">edible, inedible</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe whether something can be eaten or not?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d395ebd6-1b9c-498d-b53a-e93fa0c66bfc" ownerguid="be468e11-6620-492e-8a6a-2e6173759ef7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">glass</AUni> -<AUni ws="es">luna</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1ba01f07-3b6e-4a73-b12b-f28f85af73e0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="d395edc8-fb58-4ba4-8446-dacf8ea0477a" ownerguid="7fe69c4c-2603-4949-afca-f39c010ad24e"> -<Abbreviation> -<AUni ws="en">2.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to sweating.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Sweat</AUni> -</Name> -<Questions> -<objsur guid="a2dd8b5c-ec8e-48bc-a803-1672cf804b84" t="o" /> -<objsur guid="68bc19c5-abf4-4bd2-8eab-43127407d15a" t="o" /> -<objsur guid="1db3ee11-91b0-41e9-91c6-5593466d44c0" t="o" /> -<objsur guid="eacac819-278f-408f-8b19-a1b75d2bb9d7" t="o" /> -<objsur guid="78b0bd2a-0d52-4b44-8b50-b1f37520a2bb" t="o" /> -<objsur guid="c718be0b-b60c-46aa-a438-296a07b58160" t="o" /> -<objsur guid="1d5be594-4e8a-4b6e-b6d2-9c950170383f" t="o" /> -<objsur guid="2bd52d0b-e49e-429d-af2d-d51712f79020" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="d395fafa-09df-4f86-8cab-032c85eba415" ownerguid="080bf07b-e58b-4a75-bb97-84d980a143f0"> -<ExampleWords> -<AUni ws="en">shapeless, formless, amorphous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to having no clear shape?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="d39b2432-87d5-4f3e-8101-de06001b42d6" ownerguid="0eefa07a-e0a3-49e3-aeb4-62f1eafd8e23"> -<Abbreviation> -<AUni ws="en">9.5.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that two or more people do something to each other.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Each other</AUni> -</Name> -<Questions> -<objsur guid="59ee222a-c706-4c40-be92-980ea19e435d" t="o" /> -<objsur guid="c33d118d-4ad8-43a0-80a4-934cb8990717" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="d39c8243-5f4b-41af-9e8d-486ff7746a3b" ownerguid="33d86ad9-8404-44fa-a89c-e4e01253f304"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">crucify</AUni> -<AUni ws="es">crucificar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c46ce743-e121-4191-9a32-effb16364526" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d3a042aa-549c-43e3-b550-2470a285e4be" ownerguid="2722cd46-a725-4464-a19d-09a5b9783d95"> -<Form> -<AUni ws="qvm-x-ach">cristiänu</AUni> -<AUni ws="qvm-x-acl">cristiänu; cristiänu; cristiäno</AUni> -<AUni ws="qvm-x-akh">cristiänu</AUni> -<AUni ws="qvm-x-akl">cristiänu; cristiänu; cristiäno</AUni> -<AUni ws="qvm-x-ame">cristiänu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d3a382fc-1ed4-45ea-ae66-3388fb9fca90" ownerguid="72c734dc-727b-40ac-bfeb-bf6bbb79634a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">tramposo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8fc87ed3-39b7-4ab7-bd04-a78b29d056ba" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d3a5186a-87db-4e15-9d90-adcddfe47a51" ownerguid="999581c4-1611-4acb-ae1b-5e6c1dfe6f0c"> -<ExampleWords> -<AUni ws="en">air, atmosphere, airspace, stratosphere, ozone layer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the air around the earth?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d3a9e73a-0d96-44ae-a831-588c74fe2c0f" ownerguid="873ef4a1-6694-485e-b894-7cf311fa11d5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cover</AUni> -<AUni ws="es">cubierto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6563bd31-5e43-47b0-9481-32e598a21b39" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="d3b00c1b-d3e3-43fd-a46d-9da5221817ef"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">apa; apa:</AUni> -<AUni ws="qvm-x-acl">apa; apa:</AUni> -<AUni ws="qvm-x-akh">apa; apa:</AUni> -<AUni ws="qvm-x-akl">apa; apa:</AUni> -<AUni ws="qvm-x-ame">apa; apa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*apa:</AUni> -<AUni ws="qvm-x-acl">*apa:</AUni> -<AUni ws="qvm-x-akh">*apa:</AUni> -<AUni ws="qvm-x-akl">*apa:</AUni> -<AUni ws="qvm-x-ame">*apa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.800" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="68672ab9-d5a9-4201-bc98-875668d67667" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*apa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4ed60a3b-a1ba-4ff0-9cb1-ee556f6e47d7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="97c57bde-2ea4-48c6-8192-461b3ff0af72" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *apa: 
\entryTyp root 
\gENG banter 
\gSPN tener.controversia 
\e *apa: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach apa foreshortened 
\ach apa: 
\akh apa foreshortened 
\akh apa: 
\acl apa foreshortened 
\acl apa: 
\akl apa foreshortened 
\akl apa: 
\ame apa foreshortened 
\ame apa: 
\mcc *apa: / _ RECIP</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d3b21664-5fdf-4052-915a-40b87cafcf65"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">canseri</AUni> -<AUni ws="qvm-x-acl">canseri; canseri; cansere</AUni> -<AUni ws="qvm-x-akh">kanseri</AUni> -<AUni ws="qvm-x-akl">kanseri; kanseri; kansere</AUni> -<AUni ws="qvm-x-ame">kansiri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cáncer.v</AUni> -<AUni ws="qvm-x-acl">+cáncer.v</AUni> -<AUni ws="qvm-x-akh">+cáncer.v</AUni> -<AUni ws="qvm-x-akl">+cáncer.v</AUni> -<AUni ws="qvm-x-ame">+cáncer.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.92" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a685a458-e397-4c7d-bbec-3bc996c35639" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cáncer.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b5349e80-ba2e-4f9f-b235-f062c0b8fa3c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1ce1d540-78fe-4f3b-8321-ca19e38a0902" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cáncer.v 
\entryTyp root 
\gENG 
\gSPN 
\e +cáncer.v 
\c V1 
\mp +assimilated KQWchange 
\ach canseri 
\akh kanseri 
\acl canseri / _# 
\acl canseri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl cansere +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kanseri / _# 
\akl kanseri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kansere +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kansiri 
\mp +FinalI 
\i 2SA 3.29 Tsaynog rurashganpita lapan castancuna y castancunapita miragcunapis imayyagpis nacapäcutsun canserishga gueriwan carpis o leprawan carpis.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="d3b5839a-9f79-4b2d-96b3-8cee7717866b" ownerguid="2d82a268-ad4b-4c6f-b1f2-0d79d4daa4f8"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="d3b5bd39-2c5a-41e1-b845-eae6a9f3cdb4" ownerguid="fafe2d9f-e8c3-48b4-9aa9-d05ab9460952"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d3c023e0-10f2-444e-9bff-ebe4bd58fcf5" ownerguid="3ed1ace6-903f-4928-b934-05fbce2441e0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="35095efa-b9e7-4797-83f3-35e637a7475a" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">pad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1c74880e-16da-4da1-93a4-8b1d32f083e4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d3c04461-c189-4af2-9b59-66719ac29dcb" ownerguid="d244e8e6-c47f-490c-a998-5841eca099ce"> -<Form> -<AUni ws="qvm-x-ach">redondu; redondo</AUni> -<AUni ws="qvm-x-acl">redondu; redondu; redondo</AUni> -<AUni ws="qvm-x-akh">redondu; redondo</AUni> -<AUni ws="qvm-x-akl">redondu; redondu; redondo</AUni> -<AUni ws="qvm-x-ame">redondu; redondo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d3c04d2f-bce5-46a3-bd0f-fd7aa7c877dc" ownerguid="87c55aea-2c3f-44ce-81ec-18a153c5deb2"> -<ExampleWords> -<AUni ws="en">send, sent with, have someone take, have something delivered</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to sending something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d3c36cb8-1031-48d7-9399-00aa3986fccf" ownerguid="8c41d2d1-6da6-4ab8-8b29-7e226192d64e"> -<ExampleWords> -<AUni ws="en">to bleed, nosebleed, flow (from a wound), ooze, hemorrhage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to bleeding?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d3c3c1f0-8ad7-4128-b41a-595984c9880d" ownerguid="ca328b05-cfbd-4c55-8463-13e237905f32"> -<Form> -<AUni ws="qvm-x-ach">posta</AUni> -<AUni ws="qvm-x-acl">posta</AUni> -<AUni ws="qvm-x-akh">posta</AUni> -<AUni ws="qvm-x-akl">posta</AUni> -<AUni ws="qvm-x-ame">posta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="d3c43efa-be26-464d-9f63-153e507538b5" ownerguid="aa8ae4da-326c-4446-8d1c-635794db05f5"> -<Form> -<AUni ws="qvm-x-ach">chagcha</AUni> -<AUni ws="qvm-x-acl">chagcha</AUni> -<AUni ws="qvm-x-akh">chaqcha</AUni> -<AUni ws="qvm-x-akl">chaqcha</AUni> -<AUni ws="qvm-x-ame">chaqcha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StTxtPara" guid="d3c455db-ef72-49c6-902d-0c916d2beeca" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">qarqatsin</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="b55e487c-64cd-484c-935a-da99610f33e0" t="o" /> -</Segments> -</rt> -<rt class="LexSense" guid="d3c9de15-258e-4df6-85df-dba494323f27" ownerguid="da582e96-f239-40ee-869f-2230a87abe75"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="09d2356e-f6f4-4dd3-bde7-578b8302e025" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="d3cf7b43-a9fb-42db-b04b-cab625212f51"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa:vu</AUni> -<AUni ws="qvm-x-acl">pa:vu; pa:vu; pa:vo</AUni> -<AUni ws="qvm-x-akh">pa:vu</AUni> -<AUni ws="qvm-x-akl">pa:vu; pa:vu; pa:vo</AUni> -<AUni ws="qvm-x-ame">pa:vu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pavo</AUni> -<AUni ws="qvm-x-acl">+pavo</AUni> -<AUni ws="qvm-x-akh">+pavo</AUni> -<AUni ws="qvm-x-akl">+pavo</AUni> -<AUni ws="qvm-x-ame">+pavo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.769" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d240b424-9a8c-48f7-a4d9-55b041ecd2ba" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pavo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="807e481f-40a1-4083-b257-2a6a22462ad7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4bb98342-bd92-41e4-8d2d-7944d22f6049" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pavo 
\entryTyp root 
\gENG turkey 
\gSPN pavo 
\e +pavo 
\c N0 
\ach pa:vu 
\akh pa:vu 
\acl pa:vu / _# 
\acl pa:vu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pa:vo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pa:vu / _# 
\akl pa:vu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pa:vo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pa:vu 
\i 1KI 4.23 Tsaynogpis shuntapäcog tarushcunata, luychucunata, corzo nishgan luychucunata y wera walpacunata, pätucunata y pavo realtapis.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="d3d0a945-6e9b-41ea-bce2-8938d4b9b9d8" ownerguid="1dc9e33a-91ce-4c64-9bad-197ef3f4a6dd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d3d474dd-e1e8-4cb4-8a97-3a20aedf50c9" ownerguid="962941b2-66bd-437f-aadc-b1921bcae5b4"> -<ExampleWords> -<AUni ws="en">food poisoning, arsenic, cyanide</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What types of poison are eaten or drunk?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d3d4b9cd-2f51-4b9e-aabe-0e91e6a030e5" ownerguid="8b180827-a748-445b-9a01-fbe77fb19c65"> -<Form> -<AUni ws="qvm-x-ach">uraga</AUni> -<AUni ws="qvm-x-acl">uraga</AUni> -<AUni ws="qvm-x-akh">uraqa</AUni> -<AUni ws="qvm-x-akl">uraqa</AUni> -<AUni ws="qvm-x-ame">uraqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d3d54c06-8c6c-4743-bfad-39d346ed986c" ownerguid="21ebc64a-a1b8-45bd-b7f6-143a053f1d31"> -<ExampleWords> -<AUni ws="en">play basketball, shoot, shoot a free throw, score a basket, three point play, assist, block a shot, dribble, pass the ball, catch, screen, set up a play, run a play, jump, rebound, hit the boards, tip in, stuff, double dribble, walk, step out of bounds, throw out of bounds, foul, technical foul, charge, steal the ball, fast break, guard, play defense, play offense, substitute, huddle up, throw the ball in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What do the players do?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d3d6193b-68f7-42bd-89b6-db3ba5647b28" ownerguid="a4957c98-c53d-40c3-8412-03c4ae81c1b3"> -<Form> -<AUni ws="qvm-x-ach">tïtulu</AUni> -<AUni ws="qvm-x-acl">tïtulu; tïtulu; tïtulo</AUni> -<AUni ws="qvm-x-akh">tïtulu</AUni> -<AUni ws="qvm-x-akl">tïtulu; tïtulu; tïtulo</AUni> -<AUni ws="qvm-x-ame">tïtulu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d3d6dc89-c2d8-477d-a330-96231c3869ee" ownerguid="1c3c8af0-56b9-4617-862e-21f39b388606"> -<ExampleWords> -<AUni ws="en">be killed, accidental death, death by misadventure, violent death, lose your life, perish, suffer heavy losses</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to dying as a result of an accident or violence?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d3d6f6df-222d-4b2d-be44-c38e2de1fe9b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">las</AUni> -<AUni ws="qvm-x-acl">las</AUni> -<AUni ws="qvm-x-akh">las</AUni> -<AUni ws="qvm-x-akl">las</AUni> -<AUni ws="qvm-x-ame">las</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+las</AUni> -<AUni ws="qvm-x-acl">+las</AUni> -<AUni ws="qvm-x-akh">+las</AUni> -<AUni ws="qvm-x-akl">+las</AUni> -<AUni ws="qvm-x-ame">+las</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.53" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="26fec227-ced2-4320-b29e-c9a76dd5d9d7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+las</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7552fba1-71f5-4237-8ab7-c99237edafe8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6720bb3e-96c5-4876-b82a-570b3b8e65bf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +las 
\entryTyp root 
\gENG the 
\gSPN las 
\e +las 
\c NOSUFF 
\ach las 
\akh las 
\acl las 
\akl las 
\ame las</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d3d880cc-6e10-4afa-930e-73c62f5daf61"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mircapa</AUni> -<AUni ws="qvm-x-acl">mircapa</AUni> -<AUni ws="qvm-x-akh">mirkapa</AUni> -<AUni ws="qvm-x-akl">mirkapa</AUni> -<AUni ws="qvm-x-ame">mirkapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mirkapa.n</AUni> -<AUni ws="qvm-x-acl">*mirkapa.n</AUni> -<AUni ws="qvm-x-akh">*mirkapa.n</AUni> -<AUni ws="qvm-x-akl">*mirkapa.n</AUni> -<AUni ws="qvm-x-ame">*mirkapa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.446" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fc3fdc1c-709a-4711-8003-1229db74a509" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mirkapa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b43143cc-58fa-4943-b70d-4f3020d8f921" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7b39d1b8-466f-4cc1-b054-4fb0909fd435" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mirkapa.n 
\entryTyp root 
\gENG trail.food 
\gSPN comida 
\e *mirkapa.n 
\c N0 
\ach mircapa 
\akh mirkapa 
\acl mircapa 
\akl mirkapa 
\ame mirkapa</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="d3da10af-d6fb-4b58-9133-b9d5c3ec090c"> -<Form> -<Str> -<Run ws="en">2P</Run> -</Str> -</Form> -</rt> -<rt class="LexSense" guid="d3dc46a5-aba8-4b7c-a5e9-856debd9c38f" ownerguid="1488107d-c1b4-4aa1-a407-7ea1497d22e0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7374a61a-2f3e-45e6-bd10-9c2f5e6866cf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d3dc74b2-68aa-4f5a-966a-2f20efb025f4" ownerguid="42be1634-72ca-4a20-80a1-ba726e5cd1d2"> -<ExampleWords> -<AUni ws="en">cut</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to cutting something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d3e047d0-23fc-4391-8430-a07f1991bb8e" ownerguid="1e28037c-3909-438b-bece-67a82baddbeb"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="d3e1d2fb-6f42-4dcf-98a5-ec702ddf64a1" ownerguid="90b541db-e0f1-4c0a-91e3-ff4962410eb7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d3e3ffd4-aed5-40f3-8610-9cffa36ced8a" ownerguid="401bbbe4-a33a-4a1e-b26a-18a756e002c4"> -<ExampleWords> -<AUni ws="en">lose your nerve, get cold feet, not dare, chicken out, not have the guts, not have the nerve</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to becoming cowardly?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d3ead23b-0cd4-43ec-bbd3-4c248da91253" ownerguid="2f151c35-72e1-4665-bc05-6fc70a3ecff2"> -<ExampleWords> -<AUni ws="en">ugly, hideous, repulsive, grotesque, unsightly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who is very ugly?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d3eb87ee-ccdb-42fa-ae8b-502f5f1cec08" ownerguid="cb240e85-78cc-4d93-acad-6fab2419151f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="d3ee1484-850d-4c50-8a77-d4d7fb5c1d22" ownerguid="cc266d6a-f4bc-42a3-983e-af7b63ed0d30"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -<Sense> -<objsur guid="7cd134ea-89c1-4a60-8992-dcac673bd263" t="r" /> -</Sense> -</rt> -<rt class="WfiWordform" guid="d3ef66c2-6e34-4a5a-bfc6-0a241f479f27"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">rikakatsipäkun</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="d3efb3f9-b7ee-4320-a18a-e27942f048b1" ownerguid="d4ebf50d-7ab1-4481-9933-a887cd2a2af7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">day</AUni> -<AUni ws="es">día</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b72d5f23-5ae8-4283-b354-82217d5b931c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="d3fa4aff-33ac-4e06-9c7b-4ee2ae81a901"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">hospital</AUni> -<AUni ws="qvm-x-acl">hospital</AUni> -<AUni ws="qvm-x-akh">hospital</AUni> -<AUni ws="qvm-x-akl">hospital</AUni> -<AUni ws="qvm-x-ame">hospital</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hospital</AUni> -<AUni ws="qvm-x-acl">+hospital</AUni> -<AUni ws="qvm-x-akh">+hospital</AUni> -<AUni ws="qvm-x-akl">+hospital</AUni> -<AUni ws="qvm-x-ame">+hospital</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.749" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e95d2d5f-762e-4873-986a-05c703f6cf26" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hospital</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fd84a774-18e6-44a8-a733-670d1ba93ff1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="47c36371-e6d9-4672-8a4e-299e8afbba89" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hospital 
\entryTyp root 
\gENG hospital 
\gSPN hospital 
\e +hospital 
\c N0 
\mp +FinalC 
\ach hospital 
\akh hospital 
\acl hospital 
\akl hospital 
\ame hospital</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="d3fe43f6-a19a-42d7-b043-ddcfd97c3b6a" ownerguid="f1b1ee7f-67e4-4471-b37b-34a4186bfbf4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.yellow</AUni> -<AUni ws="es">ser.amarillo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0f2c7488-6e5e-41f8-874e-97a31e81a69e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d400f1af-84bd-449c-aa58-8e356cad2fc9" ownerguid="8be94377-a3cc-4187-a6e2-51523e953503"> -<ExampleWords> -<AUni ws="en">day laborer, temporary help, casual worker</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a person who works for a day or a few days?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d402a99b-296e-4f60-9438-de77cdd465e3" ownerguid="8c70c2ce-1b0c-4832-b025-2833afc56423"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="d405a3d4-b41e-4c60-8841-321e5b37759d" ownerguid="99634d88-2bb3-4817-abbc-a0dd18ef1c7b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="7d6df0f4-f0a5-4725-aeb1-7ba8b491ebb6" t="o" /> -<objsur guid="ba1f8da8-9d02-48ea-a638-e2ddea30ddaa" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="d40750c2-d610-4c80-93d0-a7fe7e37cdfd" ownerguid="e080687b-0900-4dd0-9677-e3aaa3eae641"> -<ExampleWords> -<AUni ws="en">simplify, demystify</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to explaining something difficult using simple language?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d408cfeb-9ec5-4a44-836a-868da21dbc2a" ownerguid="61f40376-729d-4d99-894f-06c5689a06ac"> -<ExampleWords> -<AUni ws="en">plane, sheet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something flat?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="d409cdf4-1243-45fc-abb9-6fda5d6179b8" ownerguid="6de6ebb0-8896-4615-8718-e7ce8f9da605"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">waga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">waga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">waqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">waqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">waqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d100a60e-40fa-45d4-8643-92375fc3d00c" t="r" /> -</Morph> -<Msa> -<objsur guid="dae1adcc-bc09-4a2e-8fca-8dd1fcb23810" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="d40b2b57-e14a-407c-9a20-58234c04cdbe" ownerguid="55d75f66-810f-4a08-8eb0-fa7078873979"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -<Sense> -<objsur guid="ed102c60-ed6d-498f-b2c4-a195d53a84e2" t="r" /> -</Sense> -</rt> -<rt class="WfiMorphBundle" guid="d41284f9-d7c6-4080-b48b-8e8b47a73a03" ownerguid="273ef9cc-651e-4fdb-8f65-39e117325c50"> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="d412e13d-5923-4c7e-997d-eee5b8283a9a" ownerguid="ff2767a2-d657-4719-a16a-a746592af088"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">touch.toes</AUni> -<AUni ws="es">tocar.pies</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="640c18a6-8c6b-47f5-a4ca-c2d3a00fc320" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d4140cbc-11c8-477a-8263-54826b97fead" ownerguid="30fff450-1aa5-4993-9c14-c8019a5f072e"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Something seems to be true, <but> isn't true.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">but, however</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something seems to be true, but is not true?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d415d95e-4de5-4dc2-8ab9-9aff5652b607" ownerguid="b8df8589-d03c-4e6d-bbeb-4f24fbf6a1dc"> -<ExampleWords> -<AUni ws="en">upside down, inverted, upended</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe when the top of something is on the bottom?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d416569c-bf7d-4f2a-b979-e1e63356ffcb" ownerguid="e7766633-cdbd-4a60-a8d7-c4de9089f605"> -<Form> -<AUni ws="qvm-x-ach">pula</AUni> -<AUni ws="qvm-x-acl">pula</AUni> -<AUni ws="qvm-x-akh">pula</AUni> -<AUni ws="qvm-x-akl">pula</AUni> -<AUni ws="qvm-x-ame">pula</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="d4179f3d-cc19-4d3f-abd2-d2c7ef2bc609" ownerguid="4200b8ab-7c89-499c-b218-48b9de70f2e7"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="d4182dfa-488f-4ef2-beae-b4cde64fdbaa" ownerguid="858188d8-a065-4935-be65-2786d510e503"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d418f346-d0a9-4dc3-aef0-eedafc076e9f" ownerguid="d59c604b-59d7-4f2c-a2c0-3e3961802abb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="0258aa2a-109e-4706-ba17-10eb12b712a6" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">convex</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9cb6b515-d2ae-4da3-8f14-ff90bdeb3710" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="d41a5acd-6c92-4109-8756-4fa1137c392c" ownerguid="dbdbccf2-3e63-4265-a6ff-265057f2a553"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="d41c16d7-0ab0-49ce-bbea-b2440595bc8a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pochgogya; pochgugya:</AUni> -<AUni ws="qvm-x-acl">pochgogya; pochgogya:</AUni> -<AUni ws="qvm-x-akh">pochqoqya; pochquqya:</AUni> -<AUni ws="qvm-x-akl">pochqoqya; pochqoqya:</AUni> -<AUni ws="qvm-x-ame">puchquqya; puchquqya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puchquqya:</AUni> -<AUni ws="qvm-x-acl">*puchquqya:</AUni> -<AUni ws="qvm-x-akh">*puchquqya:</AUni> -<AUni ws="qvm-x-akl">*puchquqya:</AUni> -<AUni ws="qvm-x-ame">*puchquqya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.972" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="582cdb53-fd31-4b92-b8f0-9436aa5ff5d0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puchquqya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ab3e3003-0087-493d-b61c-b3c5249a4ab9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2b46b048-cc76-4dff-97fd-1b297c989481" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puchquqya: 
\entryTyp root 
\gENG make.salty 
\gSPN hacer.salado 
\e *puchquqya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach pochgogya foreshortened 
\ach pochgugya: 
\akh pochqoqya foreshortened 
\akh pochquqya: 
\acl pochgogya foreshortened 
\acl pochgogya: 
\akl pochqoqya foreshortened 
\akl pochqoqya: 
\ame puchquqya foreshortened 
\ame puchquqya:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d423fa22-1c1c-42d6-bf14-5740641c0f00" ownerguid="627280f0-4f98-4b31-ad23-eabe37b002ad"> -<ExampleWords> -<AUni ws="en">taper</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to making something thin?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d4245c60-59bd-43ed-8d67-e8444eb33111" ownerguid="51ba6159-f1fc-4fce-a281-3ba5f1a248c0"> -<Form> -<AUni ws="qvm-x-ach">arcu; arco</AUni> -<AUni ws="qvm-x-acl">arcu; arcu; arco</AUni> -<AUni ws="qvm-x-akh">arcu; arco</AUni> -<AUni ws="qvm-x-akl">arcu; arcu; arco</AUni> -<AUni ws="qvm-x-ame">arcu; arco</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d425fff6-9ef3-4e55-9dc4-591b47aabb80" ownerguid="b0905fa9-2f90-410b-8eb5-7c7944c4f0f9"> -<ExampleWords> -<AUni ws="en">seduce, get someone into bed, seductive, seduction, make advances, make a pass at, sexual harassment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to tempting someone to have sex outside of marriage?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d42688ee-8f73-4891-8e1b-fe394268046d" ownerguid="c17b70a4-fefa-42c9-850b-ebde6e26e9f7"> -<Form> -<AUni ws="qvm-x-ach">ogti</AUni> -<AUni ws="qvm-x-acl">ogti; ogte</AUni> -<AUni ws="qvm-x-akh">oqti</AUni> -<AUni ws="qvm-x-akl">oqti; oqte</AUni> -<AUni ws="qvm-x-ame">uqti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d42cd542-13ad-45ae-b8fb-5a75fe1fc58c" ownerguid="0b1ed66f-f00d-4fd7-844f-91400e4a2bf4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8dd564f7-b9b0-45a6-8097-6af0220563c3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d42f9739-acd3-4e8b-8252-6a12413a8d87" ownerguid="3e3b63b0-ea86-4749-beba-e287e25462ed"> -<Form> -<AUni ws="qvm-x-ach">cuta</AUni> -<AUni ws="qvm-x-acl">cuta</AUni> -<AUni ws="qvm-x-akh">kuta</AUni> -<AUni ws="qvm-x-akl">kuta</AUni> -<AUni ws="qvm-x-ame">kuta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d4301f16-66b2-4adc-89c2-6b3e1b9f002c" ownerguid="8b52a9d6-a07e-4ac8-8f84-6eb5ba578d97"> -<ExampleWords> -<AUni ws="en">hiccup (v), hiccup (n), have the hiccups</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to hiccupping?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d430d08a-9907-4e6d-8268-f17d8009f612"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tarra:fa</AUni> -<AUni ws="qvm-x-acl">tarra:fa</AUni> -<AUni ws="qvm-x-akh">tarra:fa</AUni> -<AUni ws="qvm-x-akl">tarra:fa</AUni> -<AUni ws="qvm-x-ame">tarra:fa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tarrafa</AUni> -<AUni ws="qvm-x-acl">+tarrafa</AUni> -<AUni ws="qvm-x-akh">+tarrafa</AUni> -<AUni ws="qvm-x-akl">+tarrafa</AUni> -<AUni ws="qvm-x-ame">+tarrafa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.845" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="87b2272a-1d47-4216-bc78-5144dcf89ca2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tarrafa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0c5194fd-9f2a-4ced-8fe1-cefc0d457d4a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cc665ba9-fb04-43a2-b812-7bbed2e1b461" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tarrafa 
\entryTyp root 
\gENG net 
\gSPN red 
\e +tarrafa 
\c N0 
\ach tarra:fa 
\akh tarra:fa 
\acl tarra:fa 
\akl tarra:fa 
\ame tarra:fa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d4321205-e522-49b2-b9b0-014d63801cbf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pichu</AUni> -<AUni ws="qvm-x-acl">pichu; picho</AUni> -<AUni ws="qvm-x-akh">pichu</AUni> -<AUni ws="qvm-x-akl">pichu; picho</AUni> -<AUni ws="qvm-x-ame">pichu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pitru.v</AUni> -<AUni ws="qvm-x-acl">*pitru.v</AUni> -<AUni ws="qvm-x-akh">*pitru.v</AUni> -<AUni ws="qvm-x-akl">*pitru.v</AUni> -<AUni ws="qvm-x-ame">*pitru.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.871" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e2296085-c633-4bf3-82de-2dfb744e7710" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pitru.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="529e5878-c156-4a12-ab71-ab8e9c80cd1a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0906d121-8f46-49b9-bfb8-e95132a0919c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pitru.v 
\entryTyp root 
\gENG stir 
\gSPN batir 
\e *pitru.v 
\c V2 
\ach pichu 
\akh pichu 
\acl pichu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl picho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pichu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl picho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pichu 
\mcc *pitru.v / ~_ 3</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d4382eee-1db3-41ac-86c9-1bb5d52db95d" ownerguid="a1959b00-9702-4b45-ac46-93f18d3bc5e6"> -<ExampleWords> -<AUni ws="en">can't breathe, choke, suffocate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to being unable to breathe?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d4389d2b-9d2e-4bb0-af7f-faed9c771fa8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cho:lu</AUni> -<AUni ws="qvm-x-acl">cho:lu; cho:lu; cho:lo</AUni> -<AUni ws="qvm-x-akh">cho:lu</AUni> -<AUni ws="qvm-x-akl">cho:lu; cho:lu; cho:lo</AUni> -<AUni ws="qvm-x-ame">cho:lu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cholo</AUni> -<AUni ws="qvm-x-acl">+cholo</AUni> -<AUni ws="qvm-x-akh">+cholo</AUni> -<AUni ws="qvm-x-akl">+cholo</AUni> -<AUni ws="qvm-x-ame">+cholo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.325" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fc773736-d8b7-46c9-bb16-9d7eca63aafa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cholo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cdbab3f5-ad93-4965-a9f6-bb03bf2c6dc0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d8a87d38-a8b0-4752-86f6-4f65d22e24d7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cholo 
\entryTyp root 
\gENG tough guy 
\gSPN serrano 
\e +cholo 
\c N0 
\ach cho:lu 
\akh cho:lu 
\acl cho:lu / _# 
\acl cho:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cho:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cho:lu / _# 
\akl cho:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cho:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cho:lu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d4392a18-f265-4304-92a9-5a0512ac9271" ownerguid="457231c8-4eb6-4460-aa45-3e9f2c4e8975"> -<ExampleWords> -<AUni ws="en">once, one time, on one occasion, at one stage, at one point, one day</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that an event has happened once?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d43daf47-cc6b-46a1-a590-79e32d8de45e" ownerguid="d1d983c7-abaa-4170-8b64-2e744f110d44"> -<Form> -<AUni ws="qvm-x-ach">secundaria</AUni> -<AUni ws="qvm-x-acl">secundaria</AUni> -<AUni ws="qvm-x-akh">secundaria</AUni> -<AUni ws="qvm-x-akl">secundaria</AUni> -<AUni ws="qvm-x-ame">secundaria</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="d445455b-b2e3-49f9-b061-64e5949a9a69" ownerguid="21cac048-07c3-4c63-8e32-c2163b5fee6e"> -<Form> -<AUni ws="qvm-x-ach">fäma</AUni> -<AUni ws="qvm-x-acl">fäma</AUni> -<AUni ws="qvm-x-akh">fäma</AUni> -<AUni ws="qvm-x-akl">fäma</AUni> -<AUni ws="qvm-x-ame">fäma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="d4461753-e842-4052-b48b-00d666519c45" ownerguid="b8b2c795-ce1b-4f04-84f5-7402f3b7244d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="Segment" guid="d44681b4-4022-4435-9f4d-7f96b0c84f3b" ownerguid="3f22f35c-3cd7-4dbe-ab01-9ce2bdf60ddc"> -<Analyses> -<objsur guid="481d05f1-82d3-4ef6-931f-52182fab0eb5" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="CmDomainQ" guid="d4477c94-032f-408c-a9a9-048e83c7f2ab" ownerguid="080bf07b-e58b-4a75-bb97-84d980a143f0"> -<ExampleWords> -<AUni ws="en">forked, bifurcate, bifurcated, fork, branch, a Y in the road</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe something like a branch or road that divides into two parts?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d448adcb-08c1-4ed4-8c39-0be5bfd9941b" ownerguid="cb362fc7-b3aa-46f4-b9a8-0f8c97fb16fe"> -<ExampleWords> -<AUni ws="en">grow, cultivate, raise, farm (v), garden (v), produce</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to growing crops?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d44bc031-da57-4cc3-a939-680bf02bf01a" ownerguid="d7b74d48-e849-4473-ac00-a9d79616cab4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d44c4572-c843-40e9-a138-2657f6bede4a" ownerguid="e0a8e1d9-c43e-4092-a8dc-476a3417924e"> -<ExampleWords> -<AUni ws="en">confident, assured, self-assured, assertive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels confident?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d44d4a73-32c0-4273-96d8-7630c327454a" ownerguid="b6844f38-bbf3-40cb-8a4c-118cc4d502b8" /> -<rt class="CmSemanticDomain" guid="d4521b0f-0703-48cc-94a0-f42ccc09959c" ownerguid="0296465a-25de-4af6-a122-376956b4b452"> -<Abbreviation> -<AUni ws="en">9.2.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for pronouns that do not refer to a definite person or thing, but can refer to anyone or anything. Some languages will not have all the sets of pronouns described below. Add each set you find in your language to the pronoun chart.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Indefinite pronouns</AUni> -</Name> -<Questions> -<objsur guid="87e65917-ee59-4f81-9082-de2e15af4a70" t="o" /> -<objsur guid="ee835c90-16b6-433d-a4a5-5a76374b8b99" t="o" /> -<objsur guid="4a6bd840-5886-4c11-b4aa-1afb80a1348e" t="o" /> -<objsur guid="87d83f83-2894-426e-94ea-e18155fe1b7a" t="o" /> -<objsur guid="592af172-bd77-4834-b77f-9e5937f0fc90" t="o" /> -<objsur guid="392663c8-5ebe-4dd2-936a-87859a399d1d" t="o" /> -<objsur guid="557976c5-80be-4267-bba8-ac7eba7b714f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="d45483b7-7927-4e61-acf8-137469d4bfe6" ownerguid="f70de4ff-24a1-4678-a339-a1f2f8145aba"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="d45ba243-7133-44b7-8d00-528de48ab378" ownerguid="ab08a47b-f171-4fef-a21b-97d2ece0654f"> -<Form> -<AUni ws="qvm-x-ach">complëtu</AUni> -<AUni ws="qvm-x-acl">complëtu; complëtu; complëto</AUni> -<AUni ws="qvm-x-akh">complëtu</AUni> -<AUni ws="qvm-x-akl">complëtu; complëtu; complëto</AUni> -<AUni ws="qvm-x-ame">complëtu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="d45ba2f2-6b2d-4f58-992a-b76c0edb392e" ownerguid="27e2cc8b-8f5f-4090-8b41-da5f2d9d4f6f"> -<Form> -<AUni ws="qvm-x-ach">derëchu</AUni> -<AUni ws="qvm-x-acl">derëchu; derëchu; derëcho</AUni> -<AUni ws="qvm-x-akh">derëchu</AUni> -<AUni ws="qvm-x-akl">derëchu; derëchu; derëcho</AUni> -<AUni ws="qvm-x-ame">derëchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d45c976a-56d0-476a-bdc0-b78cee1db402"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">me:nus</AUni> -<AUni ws="qvm-x-acl">me:nus</AUni> -<AUni ws="qvm-x-akh">me:nus</AUni> -<AUni ws="qvm-x-akl">me:nus</AUni> -<AUni ws="qvm-x-ame">me:nus</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+menos</AUni> -<AUni ws="qvm-x-acl">+menos</AUni> -<AUni ws="qvm-x-akh">+menos</AUni> -<AUni ws="qvm-x-akl">+menos</AUni> -<AUni ws="qvm-x-ame">+menos</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.406" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ad08c875-73da-498a-852d-ca7564ebf9ba" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+menos</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7be453a5-6f7e-4238-9cd6-deea877e4d5c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bfcfbe88-19c5-4683-964b-3c509c1c60ce" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +menos 
\entryTyp root 
\gENG less 
\gSPN menos 
\e +menos 
\c N0 
\mp +assimilated 
\ach me:nus 
\akh me:nus 
\acl me:nus 
\akl me:nus 
\ame me:nus 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d45fe6ce-93aa-45ae-88da-ea15fc9922b8" ownerguid="380b0d15-77a1-49ba-ad83-a508e7ffb83d"> -<ExampleWords> -<AUni ws="en">storm, be stormy, stormy weather</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to a storm?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="d460cc70-b497-4df1-ac03-cf5e12f495fd" ownerguid="c552c8a3-e8fc-44e9-81f9-52ad272b6640"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="82ec99ca-9338-40ee-9942-ada2577c84da" t="r" /> -</Morph> -<Msa> -<objsur guid="79c4feb2-9da0-423f-b92a-3f308074069c" t="r" /> -</Msa> -<Sense> -<objsur guid="f0ec74d9-5426-4638-8aea-4146f49eb678" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="d460d260-0885-4a03-9046-253a46eae929"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chunquita</AUni> -<AUni ws="qvm-x-acl">chunquita</AUni> -<AUni ws="qvm-x-akh">chunkita</AUni> -<AUni ws="qvm-x-akl">chunkita</AUni> -<AUni ws="qvm-x-ame">chunkita</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trunkita</AUni> -<AUni ws="qvm-x-acl">*trunkita</AUni> -<AUni ws="qvm-x-akh">*trunkita</AUni> -<AUni ws="qvm-x-akl">*trunkita</AUni> -<AUni ws="qvm-x-ame">*trunkita</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.170" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cd04342d-a4b0-4e3c-8141-dbfb91e6543f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trunkita</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5bbbe4d9-5a42-4ace-878c-df57c394c662" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c42130cb-af12-4012-bd48-62a9ed290ad3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trunkita 
\entryTyp root 
\gENG ten 
\gSPN diez 
\e *trunkita 
\c ONSHEV 
\ach chunquita 
\akh chunkita 
\acl chunquita 
\akl chunkita 
\ame chunkita</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="d46126e4-7343-4b9b-8e1a-28d5509652c7" ownerguid="75ee8281-5299-4cd3-a5b8-cd1100883e97"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">nail</AUni> -<AUni ws="es">clavo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b8dcf1ca-9c88-4195-8c2c-779205ee9aca" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoAffixAllomorph" guid="d461bd39-dcdb-4b92-b683-c6749822c8b1" ownerguid="a50162fb-f652-4f20-a9b9-e9b75a422af5"> -<Form> -<AUni ws="qvm-x-ach">ma</AUni> -<AUni ws="qvm-x-acl">ma</AUni> -<AUni ws="qvm-x-akh">ma</AUni> -<AUni ws="qvm-x-akl">ma</AUni> -<AUni ws="qvm-x-ame">ma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="ae5f3ffd-a9d0-4eaa-9040-50a5a57e64bc" t="r" /> -<objsur guid="b27c54e7-0a24-46d7-b332-e63a45ecffc2" t="r" /> -</PhoneEnv> -</rt> -<rt class="LexSense" guid="d463c080-f0e6-4f3b-9911-256cf40331fc" ownerguid="a457eed9-12b7-48e6-8732-dcab5f23521e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">one.eyed</AUni> -<AUni ws="es">tuerto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="87841988-9f0c-4fad-a0c9-621b3bc0e742" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d463e7da-1efd-41f0-8246-a63f3285cae6" ownerguid="390ad7fc-8360-4eae-8736-3aedc15ae659"> -<ExampleWords> -<AUni ws="en">read a map, look for something on the map, find something on the map, trace a route</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to using a map?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d467d9de-44fc-4817-8ed0-f80bc7c00154" ownerguid="1f3f3064-6df3-4816-8964-16423bb8cbce"> -<Form> -<AUni ws="qvm-x-ach">calendariu; calendario</AUni> -<AUni ws="qvm-x-acl">calendariu; calendariu; calendario</AUni> -<AUni ws="qvm-x-akh">calendariu; calendario</AUni> -<AUni ws="qvm-x-akl">calendariu; calendariu; calendario</AUni> -<AUni ws="qvm-x-ame">calendariu; calendario</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d46a7805-4882-4098-8b36-754cfe05fa61" ownerguid="803911f4-d3d8-4771-8d51-fa2bda3d5978"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gray</AUni> -<AUni ws="es">gris</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e3926e79-0dc7-483e-84c8-04bd72176b17" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d46ac843-e6a9-41fe-85b8-c62d4b830e72" ownerguid="74cd7314-5ef6-4505-a35a-81468b5a3f3a"> -<ExampleWords> -<AUni ws="en">situation, circumstances, position, case, plight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the situation a person is in?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="d4730e27-70aa-43ac-a07b-497eefe7a826" ownerguid="49ee1a30-4e7d-400e-824f-9b2f2c1786e3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="d4769748-7c4e-4359-9da5-2ea64d5948d9" ownerguid="1f608e18-958e-4bb3-a977-04879fb5acd5"> -<Abbreviation> -<AUni ws="en">5.2.3.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.317" /> -<DateModified val="2022-9-23 16:55:8.317" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to milk products.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Milk products</AUni> -</Name> -<Questions> -<objsur guid="85c4be2d-bc13-4233-b296-60e3939f60ac" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoAffixAllomorph" guid="d47785a7-bced-4085-a334-1ed6f848c530" ownerguid="a9c20a59-9f8d-4543-8717-0774299aedc4"> -<Form> -<AUni ws="qvm-x-ach">ycu</AUni> -<AUni ws="qvm-x-acl">ycu</AUni> -<AUni ws="qvm-x-akh">yku</AUni> -<AUni ws="qvm-x-akl">yku</AUni> -<AUni ws="qvm-x-ame">yku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d47a79d3-f893-4883-91a2-945fda565990"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">divulga</AUni> -<AUni ws="qvm-x-acl">divulga</AUni> -<AUni ws="qvm-x-akh">divulga</AUni> -<AUni ws="qvm-x-akl">divulga</AUni> -<AUni ws="qvm-x-ame">divulga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+divulgar</AUni> -<AUni ws="qvm-x-acl">+divulgar</AUni> -<AUni ws="qvm-x-akh">+divulgar</AUni> -<AUni ws="qvm-x-akl">+divulgar</AUni> -<AUni ws="qvm-x-ame">+divulgar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.426" /> -<DateModified val="2022-10-10 21:18:47.218" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7fd6f9cf-129d-4587-ae30-6b05c7b80de9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+divulgar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="548c9396-abfc-4095-9351-b2f86cf095e7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7062c6c9-1cc9-4176-abd5-b6bd233872fc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +divulgar 
\entryTyp root 
\gENG 
\gSPN 
\e +divulgar 
\c V2 
\ach divulga 
\akh divulga 
\acl divulga 
\akl divulga 
\ame divulga</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="d47b69e0-ab4a-4111-aec3-2c889a4e70b3" ownerguid="e28f3f79-d4a5-402c-8a70-196856791078"> -<Abbreviation> -<AUni ws="en">9.1.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.680" /> -<DateModified val="2022-9-23 16:55:8.680" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to creating something--causing something to be that did not exist before.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>42C Make, Create</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Create</AUni> -</Name> -<Questions> -<objsur guid="1f555d1b-a79c-44dd-9af9-4ff84a484808" t="o" /> -<objsur guid="a1495767-9d00-48f3-9806-e5134ecabe28" t="o" /> -<objsur guid="6cdd66db-cdc5-4d5e-b261-99a79a92e008" t="o" /> -<objsur guid="49bf78e0-7f04-4556-9b36-43912b5d3493" t="o" /> -<objsur guid="530bb87e-4a3f-481e-b8e4-48bbe526e5ef" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="3f37bb6f-cd32-4430-aa35-700acabbee15" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="d47faa1a-c65b-4e3c-9ae3-5d0d197e311f" ownerguid="3e476adb-695e-48c3-a9b6-9a07934eac7a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">a.sickness</AUni> -<AUni ws="es">una.enfermedad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="64c7443d-becc-4b6c-b0e1-48c8033c1aef" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="d485a138-f778-43e8-b354-23bfbaec6623"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa:si; pa:si</AUni> -<AUni ws="qvm-x-acl">pa:si; pa:si; pa:se</AUni> -<AUni ws="qvm-x-akh">pa:si; pa:si</AUni> -<AUni ws="qvm-x-akl">pa:si; pa:si; pa:se</AUni> -<AUni ws="qvm-x-ame">pa:si; pa:si</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pase</AUni> -<AUni ws="qvm-x-acl">+pase</AUni> -<AUni ws="qvm-x-akh">+pase</AUni> -<AUni ws="qvm-x-akl">+pase</AUni> -<AUni ws="qvm-x-ame">+pase</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.739" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dad4846d-ca18-4bf5-8562-278f0cce709f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pase</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cade535e-5c04-4619-99a3-b30ff6bd9606" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e994b00b-bf2c-4ea3-babe-5705276e0420" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pase 
\entryTyp root 
\gENG passage 
\gSPN pase 
\e +pase 
\c N0 
\mp +FinalI 
\ach pa:si / _# 
\ach pa:si / ~_# 
\akh pa:si / _# 
\akh pa:si / ~_# 
\acl pa:si / _# 
\acl pa:si +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pa:se +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pa:si / _# 
\akl pa:si +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pa:se +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pa:si / _# 
\ame pa:si / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d486bc02-7057-4f3c-bb2c-b9ea30fb8d1c" ownerguid="85912845-21b0-41eb-8b8c-1f5c3d53df08"> -<ExampleWords> -<AUni ws="en">enthusiastic, enthused, animated, ardent, avid, eager, fervent, hot, motivated, zealous, have purpose, keen, mad about</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels enthusiastic?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d48899ec-a6b4-4750-9c89-fe15e96c3e44"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">declara</AUni> -<AUni ws="qvm-x-acl">declara</AUni> -<AUni ws="qvm-x-akh">declara</AUni> -<AUni ws="qvm-x-akl">declara</AUni> -<AUni ws="qvm-x-ame">declara</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+declarar</AUni> -<AUni ws="qvm-x-acl">+declarar</AUni> -<AUni ws="qvm-x-akh">+declarar</AUni> -<AUni ws="qvm-x-akl">+declarar</AUni> -<AUni ws="qvm-x-ame">+declarar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.366" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f1d852af-01a1-41ca-a022-5c73c4664c29" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+declarar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="81927101-320c-4071-83e1-e68d25b441c4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f71abb3b-cb3b-47b1-a381-d9a68f3c2cb7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +declarar 
\entryTyp root 
\gENG declare 
\gSPN declarar 
\e +declarar 
\c V1 
\ach declara 
\akh declara 
\acl declara 
\akl declara 
\ame declara 
\i PRO 18.17 Contrapartin declaraptinragmi imanog cashgantapis musyan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d489c4ae-5b64-49de-9def-ac19ecfca98f" ownerguid="4e7a6dfe-3654-4ca1-874d-02424581b774"> -<ExampleWords> -<AUni ws="en">knee-deep, waist-deep, over your head, out of your depth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe how deep something is for a person?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d48b8483-c8e7-4fdb-8b67-5f4c3a293b03" ownerguid="4ccdcc51-e278-4495-b1e3-ea17ff1544e5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">small.drum</AUni> -<AUni ws="es">tambor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e81d35a9-089b-43db-90ec-3774940fd3f4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d48c24a3-88d9-4162-a4d8-18f9936c543e" ownerguid="275f048d-f5d1-4d7c-81e2-6e45df03773d"> -<Form> -<AUni ws="qvm-x-ach">pagas</AUni> -<AUni ws="qvm-x-acl">pagas</AUni> -<AUni ws="qvm-x-akh">paqas</AUni> -<AUni ws="qvm-x-akl">paqas</AUni> -<AUni ws="qvm-x-ame">paqas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d491de81-3939-4285-9b98-4b774e987559" ownerguid="ed7930df-e7b4-43c9-a11a-b09521276b57"> -<ExampleWords> -<AUni ws="en">lose its smell</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(18) What words refer to something not smelling any longer?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="d49ab472-dc77-4c33-9aad-84812d811567" ownerguid="d52a0cc9-7aa4-4a2a-a8a0-406da6d392d4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="d49b7212-7fe0-4bc5-85fa-5103dc71e533" ownerguid="e10b9449-08a3-4c13-aff2-31486749b62f"> -<ExampleWords> -<AUni ws="en">investigation, inquiry, inquest, inquiries, probe, inquisition, post-mortem, autopsy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the process of investigation?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d49d14c4-32c9-4613-8dbc-b7dd486df342" ownerguid="6d8c1d6c-d4a6-4164-ba40-42f5672e1ebe"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="d49f2c9d-1b4a-4370-b107-71f9b9fbdc8e" ownerguid="0e79435b-f5ff-4061-81ff-49557ba2aed4"> -<Abbreviation> -<AUni ws="en">4.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.192" /> -<DateModified val="2022-9-23 16:55:8.192" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a neighbor--someone who lives nearby.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Neighbor</AUni> -</Name> -<Questions> -<objsur guid="bab149f3-948a-4fd3-a583-511c7282b943" t="o" /> -<objsur guid="039cfa86-3c4b-4a27-a917-e60f3581b38b" t="o" /> -<objsur guid="9dfb3d5c-98d5-4b5f-9e8f-4e74fc4bc790" t="o" /> -<objsur guid="2a2a3d16-1e0d-4173-87bf-63c1ac5708d1" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="2dca9338-85cb-4f58-b40d-d2d759e8edd6" t="r" /> -<objsur guid="a4b03891-c2df-4d72-bbdc-13bc8d4eceba" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="aec8c246-0ef7-414a-94a6-b9fdd6812a7c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="d4a0d47d-46df-46ba-b57d-7a19e448fba4" ownerguid="516d3a6d-7ac0-47d4-a64b-f2261cddb44c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d4a15f61-4228-4ec3-bfd7-8154c8819fa0" ownerguid="b62b5fc7-1b20-4f63-8459-8eb4991839ee"> -<ExampleWords> -<AUni ws="en">crack, split, fissure, crevasse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a crack?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d4a78550-b02b-4479-bcf3-ad40880667db"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">niti</AUni> -<AUni ws="qvm-x-acl">niti; nite</AUni> -<AUni ws="qvm-x-akh">niti</AUni> -<AUni ws="qvm-x-akl">niti; nite</AUni> -<AUni ws="qvm-x-ame">niti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñiti</AUni> -<AUni ws="qvm-x-acl">*ñiti</AUni> -<AUni ws="qvm-x-akh">*ñiti</AUni> -<AUni ws="qvm-x-akl">*ñiti</AUni> -<AUni ws="qvm-x-ame">*ñiti</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.598" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ae5ffae5-e06d-4f27-8f9c-df2589fe2e3a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñiti</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2de351b5-b927-4cbb-8ee2-65779b408c55" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ab1baaa2-4c4c-4ed4-bc81-d55dbfbc3b01" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñiti 
\entryTyp root 
\gENG crush 
\gSPN aplastar 
\e *ñiti 
\c V2 
\mp +FinalI 
\ach niti 
\akh niti 
\acl niti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl nite +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl niti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl nite +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame niti 
\mcc *ñiti / ~_... 1 | avoid mispelling niptëmi for niptëmi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d4a8d2fd-b493-4467-941a-677883b2281e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">dignu; digno</AUni> -<AUni ws="qvm-x-acl">dignu; dignu; digno</AUni> -<AUni ws="qvm-x-akh">dignu; digno</AUni> -<AUni ws="qvm-x-akl">dignu; dignu; digno</AUni> -<AUni ws="qvm-x-ame">dignu; digno</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+digno</AUni> -<AUni ws="qvm-x-acl">+digno</AUni> -<AUni ws="qvm-x-akh">+digno</AUni> -<AUni ws="qvm-x-akl">+digno</AUni> -<AUni ws="qvm-x-ame">+digno</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.406" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="91f0a77a-79f1-4ce9-a23d-aaac5c91c7fd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+digno</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2b355337-42b8-47ac-ab54-c3ff633e6faf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f61b7ca8-5d28-4600-b4cc-c28ed701b7e7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +digno 
\entryTyp root 
\gENG worthy 
\gSPN digno 
\e +digno 
\c N0 
\ach dignu / ~_# 
\ach digno / _# 
\akh dignu / ~_# 
\akh digno / _# 
\acl dignu / ~_# 
\acl dignu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl digno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl dignu / ~_# 
\akl dignu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl digno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame dignu / ~_# 
\ame digno / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="d4a9ff4a-5fab-43f3-acee-967d8b289fca" ownerguid="04207506-5a9f-49eb-adae-80ab00bd5510"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a4d42f6f-d626-4469-8166-21d6f4e69d6d" t="r" /> -</Morph> -<Msa> -<objsur guid="72dc7bab-4d12-4cdb-a144-3c853f889fb5" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="d4ad203b-91e3-41e5-8ae5-e5e792f870f9" ownerguid="3a0dc521-f028-4c17-945c-b121e2d3dc0b"> -<ExampleWords> -<AUni ws="en">today, yesterday, the day before yesterday, three days ago, tomorrow, the day after tomorrow, three days from now, the day before, the day after</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to one day in relation to the days before and after it?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d4aec8b3-b477-4f8b-aefd-2c7c91a23d02" ownerguid="f3a8cb6f-cdc8-42b3-a969-08dd7c907079"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="d4afb324-638b-4d2b-a646-71adf03c4f61" ownerguid="f67cee84-0f14-4dbc-9618-2305c4d5f0b2"> -<Form> -<AUni ws="qvm-x-ach">videu; video</AUni> -<AUni ws="qvm-x-acl">videu; videu; video</AUni> -<AUni ws="qvm-x-akh">videu; video</AUni> -<AUni ws="qvm-x-akl">videu; videu; video</AUni> -<AUni ws="qvm-x-ame">videu; video</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d4b161e3-382e-43ca-839b-8d3b8dcab40b" ownerguid="2a62f8e4-7da3-4f37-bf44-e24033c99c00"> -<ExampleWords> -<AUni ws="en">inoffensive, harmless, innocuous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words describe something that is unlikely to cause someone to feel angry?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d4b268d7-200d-49db-84da-5491c0664453" ownerguid="527aa1ab-a791-4671-80e6-388296e34537"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="d4b2c1de-1c10-4bcc-95f7-2838748fc7f0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">águila; a:guila</AUni> -<AUni ws="qvm-x-acl">águila; a:guila</AUni> -<AUni ws="qvm-x-akh">águila; a:guila</AUni> -<AUni ws="qvm-x-akl">águila; a:guila</AUni> -<AUni ws="qvm-x-ame">águila; a:guila</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+águila</AUni> -<AUni ws="qvm-x-acl">+águila</AUni> -<AUni ws="qvm-x-akh">+águila</AUni> -<AUni ws="qvm-x-akl">+águila</AUni> -<AUni ws="qvm-x-ame">+águila</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.931" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e6d4febe-6297-47d9-9784-116560e58fbc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+águila</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="41e93460-14a1-4f9d-b5f4-438a08fab7f1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a8cd16d9-1567-4ba1-bda3-5d1d40b935bd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +águila 
\entryTyp root 
\gENG 
\gSPN 
\e +águila 
\c N0 
\ach águila / _# 
\ach a:guila / ~_# 
\akh águila / _# 
\akh a:guila / ~_# 
\acl águila / _# 
\acl a:guila / ~_# 
\akl águila / _# 
\akl a:guila / ~_# 
\ame águila / _# 
\ame a:guila / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d4b7d522-4733-4ad1-a496-1ef6862f502b" ownerguid="64e6c0db-6dd6-4b80-bbe9-c96bb161674b"> -<ExampleWords> -<AUni ws="en">halve, quarter (v), bisect, trisect, (divide/cut/fold) in half, in two</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to dividing something into a fraction of the whole?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="d4b7f226-339f-4dab-867e-4706500b36b2" ownerguid="670857e8-048a-4ab7-92a8-ebc28a5f914b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</Msa> -<Sense> -<objsur guid="2801e582-fd5f-46da-b446-4dd5882c9bda" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="d4ba989d-d054-4f80-aeb5-8a3bccadf9b3" ownerguid="d13e8a9b-3b60-43fa-895c-c1d236b4a45a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">test</AUni> -<AUni ws="es">exámen</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c83511fe-71d8-4b6c-a136-fceb42826cc2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="d4bdfde8-d7e6-4721-abeb-143fd81e838b" ownerguid="1d11a03e-037b-4e20-b890-2965f8667156"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pti</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pti</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pti</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b2772da-2fbd-4846-99c3-d3f919125916" t="r" /> -</Morph> -<Msa> -<objsur guid="6a97cf20-558d-4866-ba04-48c4807bc533" t="r" /> -</Msa> -<Sense> -<objsur guid="5c9f1fed-2e6d-4ad2-b804-9d3f09a277d3" t="r" /> -</Sense> -</rt> -<rt class="WfiWordform" guid="d4bf25b7-2212-443c-8c6b-444ec472e6f5"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Imata</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="d4c4f9e7-1ca3-4d3a-b191-675331583089" ownerguid="a84a5ffc-006c-4d29-b71f-5215cc40a5a8"> -<ExampleWords> -<AUni ws="en">discipline, train, drill, prepare, train, control, strict, severe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to disciplining someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d4c51294-891d-4511-a434-45407870ec70" ownerguid="6198b228-3ad2-4749-912a-ac147241398f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d4c7f537-c8ca-463c-84a9-d8c938949433" ownerguid="5c2ab0ee-7d29-4139-b537-600c3860d782"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cactus</AUni> -<AUni ws="es">espina</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e9f1ff45-2691-492a-98c6-ed1e48f5a924" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="d4c8b8fd-93fe-4c19-9f59-616f4eca18bd" ownerguid="35628a1d-4e2b-48a5-9beb-4466da40eb6f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="e2bce012-8afd-4024-b0d6-353c0bd56f48" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d4cb53f1-59f3-46e7-bfc4-fef5b83a9aa2" ownerguid="58de3766-8729-48e2-97fe-937a441eb722"> -<ExampleWords> -<AUni ws="en">fertilize, add fertilizer, fertilizer, fertile, manure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to fertilizing a field?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="d4d0cb33-da34-4584-94be-edc056f96059" ownerguid="81734053-8676-402e-8871-4ee306608383"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="d4d262f5-9176-43f4-b1a0-d7ef397acbb3" ownerguid="fa660c9d-8787-4335-8744-3dbc139b2df1"> -<ExampleWords> -<AUni ws="en">the accused, the defendant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the person who has been accused of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d4d335cb-6e0a-47fc-8186-5c725401d033" ownerguid="75a50c67-1bed-4d31-a32a-698fabf50724"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="6a8278f2-0196-4b28-aa73-dd39c22a5346" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="d4d7d75f-f9b1-498f-b2d8-55fb72e04044"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yarcu</AUni> -<AUni ws="qvm-x-acl">yarcu; yarco</AUni> -<AUni ws="qvm-x-akh">yarku</AUni> -<AUni ws="qvm-x-akl">yarku; yarko</AUni> -<AUni ws="qvm-x-ame">yarku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yarku</AUni> -<AUni ws="qvm-x-acl">*yarku</AUni> -<AUni ws="qvm-x-akh">*yarku</AUni> -<AUni ws="qvm-x-akl">*yarku</AUni> -<AUni ws="qvm-x-ame">*yarku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.749" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0ca42d60-9e9b-46fb-ac9c-dc2c2c05338b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yarku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9c788538-1f0a-4f5b-a13f-2d0d9e53bd69" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="89698051-b3d7-4b62-b7e3-2ff4682c0c7c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yarku 
\entryTyp root 
\gENG go.up 
\gSPN subir 
\e *yarku 
\c V1 
\ach yarcu 
\akh yarku 
\acl yarcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl yarco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yarku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yarko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame yarku 
\mcc *yarku / _... PLDIR</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="d4dd2629-07f7-4e51-8412-a2bde54b77f2" ownerguid="8c0b7413-3060-42cd-a005-318de8789f86"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sink</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="653b20f6-31ee-4902-a7c1-f263e2f28fcf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="d4df797c-5b5f-4f3a-90fd-b637476ea439" ownerguid="e0817e35-4d79-4bdf-907e-0d1d3e5464be"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 41.18 Wishgacuptenga elguyragmi senganpa yargamun.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="d4e08994-9974-4b72-88ff-65cce0aa718c" ownerguid="eec72226-106c-4825-b245-6e18110ee917"> -<ExampleWords> -<AUni ws="en">rafter, truss, center pole, ridgepole, eaves, rain gutter, peak, corner, dormer window, chimney</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the parts of a roof?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="d4e67c71-cc73-47e8-89d2-c53a44cd088e" ownerguid="ba0a3fc5-861e-42bd-ab09-f549603f3e63"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="8cd665e4-07e9-40f1-8728-9c60259d4153" t="r" /> -</Morph> -<Msa> -<objsur guid="9efa2471-64c9-4ad8-9364-f76c35da3769" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="d4e73f6f-8a8f-47c7-8c51-fa2f62a215b3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pi:</AUni> -<AUni ws="qvm-x-acl">pi:</AUni> -<AUni ws="qvm-x-akh">pi:</AUni> -<AUni ws="qvm-x-akl">pi:</AUni> -<AUni ws="qvm-x-ame">pi:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pi:</AUni> -<AUni ws="qvm-x-acl">*pi:</AUni> -<AUni ws="qvm-x-akh">*pi:</AUni> -<AUni ws="qvm-x-akl">*pi:</AUni> -<AUni ws="qvm-x-ame">*pi:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.818" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="236df946-3daf-46a8-bcea-eadff484f064" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pi:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f3b235f4-af22-4c37-a01e-40f8c5a1428f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0995fdaf-d340-4f41-873c-6e700af4d76a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pi: 
\entryTyp root 
\gENG who 
\gSPN quien 
\e *pi: 
\c N0 
\mp NeverChanged 
\ach pi: 
\akh pi: 
\acl pi: 
\akl pi: 
\ame pi: 
\mp +FinalC 
\mp +FinalLength 
\mcc *pi: / _# / _ [poss] / _ PLUR / _ [loc] / _ OBJ / _ [sim] / _ JUST2.C / _ DIST2 / _ WOUT1.C</Run> -</AStr> -</Custom> -</rt> -<rt class="CmBaseAnnotation" guid="d4e76b58-c50a-4329-aac7-404797114889" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BeginOffset val="0" /> -<BeginRef val="0" /> -<CompDetails> -<Uni><phonEnv status="syntax" pos="1" syntaxErrType="unknown"></phonEnv></Uni> -</CompDetails> -<DateCreated val="2022-10-11 15:53:32.691" /> -<DateModified val="2022-10-11 15:53:37.323" /> -<EndOffset val="0" /> -<EndRef val="0" /> -<Flid val="5097008" /> -<Source> -<objsur guid="1257a971-fcef-4f06-a5e2-c289de5aaf72" t="r" /> -</Source> -<Text> -<objsur guid="06e5b434-26a2-4f38-9e9c-adb5afdaafa1" t="o" /> -</Text> -<WsSelector val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="d4e85a4f-721e-4f61-aec4-3c47740127c0" ownerguid="302ab46f-eda4-4df3-b4c3-6b11bc645c32"> -<Form> -<AUni ws="qvm-x-ach">planta</AUni> -<AUni ws="qvm-x-acl">planta</AUni> -<AUni ws="qvm-x-akh">planta</AUni> -<AUni ws="qvm-x-akl">planta</AUni> -<AUni ws="qvm-x-ame">planta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d4e8f608-e7f8-4a9f-9299-c3f17e267bd5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">salta</AUni> -<AUni ws="qvm-x-acl">salta</AUni> -<AUni ws="qvm-x-akh">salta</AUni> -<AUni ws="qvm-x-akl">salta</AUni> -<AUni ws="qvm-x-ame">salta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+salta</AUni> -<AUni ws="qvm-x-acl">+salta</AUni> -<AUni ws="qvm-x-akh">+salta</AUni> -<AUni ws="qvm-x-akl">+salta</AUni> -<AUni ws="qvm-x-ame">+salta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.429" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d38a5bec-8c94-4a56-be8d-2c6ed6984503" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+salta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6aed89a5-91a3-4873-aaec-aaef8d361b32" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="38cd9d10-9d38-4428-bb21-a43b64dbcd55" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +salta 
\entryTyp root 
\gENG pop.out 
\gSPN sobresale 
\e +salta 
\c N0 
\ach salta 
\akh salta 
\acl salta 
\akl salta 
\ame salta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d4ebf50d-7ab1-4481-9933-a887cd2a2af7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">patsa</AUni> -<AUni ws="qvm-x-acl">patsa</AUni> -<AUni ws="qvm-x-akh">patsa</AUni> -<AUni ws="qvm-x-akl">patsa</AUni> -<AUni ws="qvm-x-ame">patsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pacha.n</AUni> -<AUni ws="qvm-x-acl">*pacha.n</AUni> -<AUni ws="qvm-x-akh">*pacha.n</AUni> -<AUni ws="qvm-x-akl">*pacha.n</AUni> -<AUni ws="qvm-x-ame">*pacha.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.646" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="56373248-d1e0-47c0-82a0-412b8775ca60" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pacha.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b72d5f23-5ae8-4283-b354-82217d5b931c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d3efb3f9-b7ee-4320-a18a-e27942f048b1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pacha.n 
\entryTyp root 
\gENG day 
\gSPN día 
\e *pacha.n 
\c N0 
\ach patsa 
\akh patsa 
\acl patsa 
\akl patsa 
\ame patsa 
\mcc *pacha.n / ~_ ADV2</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d4ed1f0a-8b37-41ba-91fe-25ebbb6967c8" ownerguid="6eafbb5a-26ba-44b5-a0d5-21b9e7750ece"> -<ExampleWords> -<AUni ws="en">rebuke, chew out, reprimand, scold, reprove, excoriate, censor, verbal abuse, yell at, lecture, call on the carpet, lay out, tell off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to someone telling another that he has done wrong?</AUni> -</Question> -</rt> -<rt class="StText" guid="d4ed5890-b92b-427f-9a42-baa58d122ca9" ownerguid="af26d792-ea5e-11de-8f7e-0013722f8dec"> -<DateModified val="2022-9-23 18:26:25.183" /> -<Paragraphs> -<objsur guid="7e6d564f-7a0c-459f-b195-783c2c496826" t="o" /> -</Paragraphs> -<RightToLeft val="False" /> -</rt> -<rt class="MoStemMsa" guid="d4ee1d67-cff2-47f6-9296-acdd67853f96" ownerguid="139c9830-e453-4fed-8fad-8a3f19e2324f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="d4ee6de7-17d2-4cc9-a48a-ac17ca68eed1" ownerguid="ab0383f3-2cca-44f3-8b28-631d17f745fb"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="d4ef7912-3b33-4ccd-ad37-23ad4b6814d6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">hechor</AUni> -<AUni ws="qvm-x-acl">hechor</AUni> -<AUni ws="qvm-x-akh">hechor</AUni> -<AUni ws="qvm-x-akl">hechor</AUni> -<AUni ws="qvm-x-ame">hechor</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hechor</AUni> -<AUni ws="qvm-x-acl">+hechor</AUni> -<AUni ws="qvm-x-akh">+hechor</AUni> -<AUni ws="qvm-x-akl">+hechor</AUni> -<AUni ws="qvm-x-ame">+hechor</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.700" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d8580d98-b3ea-4694-b154-280853a5e54d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hechor</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dd02b4b5-7a53-410b-b0cc-b82105738df6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e3bc5d44-2f4e-4c4f-b16a-0ff1c8d3a993" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hechor 
\entryTyp root 
\gENG stud.donkey 
\gSPN asno o caballo semental 
\e +hechor 
\c N0 
\mp +FinalC 
\ach hechor 
\akh hechor 
\acl hechor 
\akl hechor 
\ame hechor</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d4f02d3b-ea18-4e47-90e2-1b67355b061a" ownerguid="eb00b4c2-5b87-4ef8-9548-800fc5c9b524"> -<ExampleWords> -<AUni ws="en">damage, do damage, cause damage, break, bust, chip, corrode, corrupt, deface, dent, erode, harm, do harm, hurt, impair, injure, maltreat, mar, mess up, nick, sabotage, score, scratch, spoil, vandalize</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to damaging something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d4f0635d-0f97-4912-ab54-1017cc9ee614" ownerguid="1c1e1fc5-5e41-4df4-bd34-2f3e20dd0bbc"> -<Form> -<AUni ws="qvm-x-ach">tanga</AUni> -<AUni ws="qvm-x-acl">tanga</AUni> -<AUni ws="qvm-x-akh">tanqa</AUni> -<AUni ws="qvm-x-akl">tanqa</AUni> -<AUni ws="qvm-x-ame">tanqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d4f06890-9bcf-43f3-9c09-fdb3e51f50a0" ownerguid="52b04e15-7062-4fb2-9eaa-4fe8726f302a"> -<ExampleWords> -<AUni ws="en">greet warmly, warm greeting, cool reception, enthusiastic greeting</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a greeting?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d4f1f463-b30e-4e01-955c-65d7b2f671c5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">timón; timon</AUni> -<AUni ws="qvm-x-acl">timón; timon</AUni> -<AUni ws="qvm-x-akh">timón; timon</AUni> -<AUni ws="qvm-x-akl">timón; timon</AUni> -<AUni ws="qvm-x-ame">timón; timon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+timón</AUni> -<AUni ws="qvm-x-acl">+timón</AUni> -<AUni ws="qvm-x-akh">+timón</AUni> -<AUni ws="qvm-x-akl">+timón</AUni> -<AUni ws="qvm-x-ame">+timón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.904" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="891c1224-5a58-4434-a366-e0cfd1206d16" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+timón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="66489338-8403-4bd2-8178-c8cee40d3eb5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b308d004-be9f-4a79-bddc-e808285fedcb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +timón 
\entryTyp root 
\gENG steering.wheel 
\gSPN timón 
\e +timón 
\c N0 
\mp +FinalC 
\ach timón / _# 
\ach timon / ~_# 
\akh timón / _# 
\akh timon / ~_# 
\acl timón / _# 
\acl timon / ~_# 
\akl timón / _# 
\akl timon / ~_# 
\ame timón / _# 
\ame timon / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d4f4780d-0752-4135-8582-d3c1e1b060a7" ownerguid="6ea13b69-b2a8-41f9-b0bc-14316ebc5118"> -<ExampleWords> -<AUni ws="en">vague, oblique, unclear, not well worded, cryptic, hard to understand, difficult to understand, puzzle, puzzling, riddle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is difficult to understand?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d4f96d1e-54eb-4b33-945f-d0826d481205" ownerguid="fd33670e-ef16-4566-a62e-aa077e58407b"> -<ExampleWords> -<AUni ws="en">tone</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the quality of a sound?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="d4fca9fe-870a-4110-99bb-10a29c29b2e6" ownerguid="0162121f-fea0-47af-bd06-d2b5a0609cab"> -<Evaluations> -<objsur guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="fa8f91a4-0c7b-445e-b47e-dc75bdd5e8b6" t="o" /> -<objsur guid="bd568a41-0d74-4d9b-8756-73b7af65d9f7" t="o" /> -<objsur guid="1f97b0bb-2669-4f1a-8d16-7f0af8a4d4eb" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="d500c90c-1331-46e4-a9e7-56fccf0a3c0e" ownerguid="7d2443b6-1253-4345-9816-3ad34b736d7a"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="d502512c-966b-4752-8636-716fb29facfe" ownerguid="0f883eb0-00a1-44cc-b719-97fb6ec145d4"> -<Abbreviation> -<AUni ws="en">5.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.337" /> -<DateModified val="2022-9-23 16:55:8.337" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to sleeping.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>23E Sleep, Waking x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Sleep</AUni> -</Name> -<OcmCodes> -<Uni>513 Sleeping</Uni> -</OcmCodes> -<Questions> -<objsur guid="40d44a7b-defb-4dd7-85f4-e486e14423f3" t="o" /> -<objsur guid="e082b650-7c27-487d-bde3-ced826ef84e5" t="o" /> -<objsur guid="19de2180-3774-486a-8c23-01235b168eda" t="o" /> -<objsur guid="854ec648-1c06-4b98-99ac-09fa6205879b" t="o" /> -<objsur guid="564daebd-4c3e-4384-82e1-f53a51161eb3" t="o" /> -<objsur guid="77f5e776-aeb6-4256-95de-c43a32e49d01" t="o" /> -<objsur guid="5609ccf8-2d72-42ab-947d-c311954f75b2" t="o" /> -<objsur guid="39e14d41-1f37-4510-9f7b-8182d8177dde" t="o" /> -<objsur guid="a0b4c971-2aa1-4a2e-a329-fd6cf926f849" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="2c401e7f-6ce9-470f-b6b6-fadf7a798536" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="a3fe0ca2-64fe-44db-ac3f-14513385bc25" t="o" /> -<objsur guid="6736dafe-2916-40f6-b6b7-b6300100933b" t="o" /> -<objsur guid="2158eb7d-eb59-4740-9628-9080d7f51a97" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="d5029c1f-9925-44ce-a604-6ce775f592f6" ownerguid="c21b5bb9-262c-4c84-88b7-27aa810b7daa"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d5042dc2-b7c5-4041-8c8b-070006c5092f" ownerguid="86928d3c-0e55-488a-b86e-de28805c963a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="42c56d72-f21c-4e54-ae10-db73d06e9e67" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d505454b-a7af-4b61-93a7-28c858e2ae3d" ownerguid="1ff743cb-49e0-483d-8a1d-4603a7d6c395"> -<ExampleWords> -<AUni ws="en">reduce, lower, turn down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to decreasing what a machine is doing?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d5071ea4-711e-489c-b97f-e4cee62229ca"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">muralla</AUni> -<AUni ws="qvm-x-acl">muralla</AUni> -<AUni ws="qvm-x-akh">muralla</AUni> -<AUni ws="qvm-x-akl">muralla</AUni> -<AUni ws="qvm-x-ame">muralla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hacer.muralla</AUni> -<AUni ws="qvm-x-acl">+hacer.muralla</AUni> -<AUni ws="qvm-x-akh">+hacer.muralla</AUni> -<AUni ws="qvm-x-akl">+hacer.muralla</AUni> -<AUni ws="qvm-x-ame">+hacer.muralla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.639" /> -<DateModified val="2022-10-10 21:18:47.203" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="28e0ecb3-3619-4b58-b7cd-9aa6ad4965a8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hacer.muralla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d1e69c96-4361-411a-8b80-5776a41496c2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4ec80bb7-f103-40b9-be3c-cd1ac1459d3c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hacer.muralla 
\entryTyp root 
\gENG 
\gSPN 
\e +hacer.muralla 
\c V1 
\ach muralla 
\akh muralla 
\acl muralla 
\akl muralla 
\ame muralla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="d5074bc9-3ed1-4c3c-8c23-4f8af5904c04" ownerguid="626c8435-776f-4da6-97d9-2c85484b6b7a"> -<Form> -<AUni ws="qvm-x-ach">chïna; chïnä</AUni> -<AUni ws="qvm-x-acl">chïna; chïnä</AUni> -<AUni ws="qvm-x-akh">chïna; chïnä</AUni> -<AUni ws="qvm-x-akl">chïna; chïnä</AUni> -<AUni ws="qvm-x-ame">chïna; chïnä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d507ebb9-6fd7-4598-82c0-4f947d1e637e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">almiti</AUni> -<AUni ws="qvm-x-acl">almiti; almite</AUni> -<AUni ws="qvm-x-akh">almiti</AUni> -<AUni ws="qvm-x-akl">almiti; almite</AUni> -<AUni ws="qvm-x-ame">almiti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+admitir</AUni> -<AUni ws="qvm-x-acl">+admitir</AUni> -<AUni ws="qvm-x-akh">+admitir</AUni> -<AUni ws="qvm-x-akl">+admitir</AUni> -<AUni ws="qvm-x-ame">+admitir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.649" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="01d5e06d-82e3-426a-b51e-028f45ea8cd7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+admitir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1bcc5f9c-0461-46e6-9e52-6c69941edbb3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2ccb2c45-7b0c-466e-8390-7e99425b78bc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +admitir 
\entryTyp root 
\gENG dare 
\gSPN desafiar 
\e +admitir 
\c V2 
\mp +FinalI 
\ach almiti 
\akh almiti 
\acl almiti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl almite +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl almiti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl almite +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame almiti 
\i RUT 4.6 Tsaynog captenga manami rantiyta almitëtsu.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="d50956c6-ca32-4b05-9fc7-5473955b1800" ownerguid="126651f9-33d5-4757-a1f9-aab7e48b906b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d50b2ceb-8fd5-4932-8e91-4f741b2ff5bb" ownerguid="a2a3e21a-819c-4400-b2e6-e6c1a0a0ded3"> -<ExampleWords> -<AUni ws="en">contemptuous, disdainful, disrespectful, haughty, scornful, snobbish, superior</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who despises someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d50c949c-b84a-447b-96f9-9f9392094191" ownerguid="4d19f09f-035b-477e-862c-a4157acdfe81"> -<ExampleWords> -<AUni ws="en">to clean up, to filter, filter, filtered, strain, to boil, boiled water, let settle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words are used of cleaning water?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d50cb9bb-2be3-4082-9843-697ad730838b" ownerguid="4afcc531-720a-4f12-ab49-a7e94869ef0b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="d50d4a34-da2d-465f-9aac-2109d1530e2a" ownerguid="f9c5db2a-3d3f-45e2-8f41-9f7d95d2f33c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 6.30 Ladruntapis yarganar suwacuptenga cuyapashwanragmi.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="d50e7740-5969-488a-b885-ebec37c755ca" ownerguid="41b91fdb-5a11-4ba1-a570-3d9fbdfd1a56"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">atajar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="07611917-3fef-4141-aa18-98c5fe83db88" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="d50ed764-16d3-4e44-aaf3-1e26171fcb1f" ownerguid="392b8fe3-5a0b-46c2-a595-f13d84c3bd06"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="d50f3921-fcea-4ac9-b64a-25bf47dc3292" ownerguid="cce98603-ff8f-4213-945a-bd6746716139"> -<Abbreviation> -<AUni ws="en">1.2.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.947" /> -<DateModified val="2022-9-23 16:55:7.947" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to volcanoes.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Volcano</AUni> -</Name> -<Questions> -<objsur guid="01ed22ec-1f2b-4572-970c-10ab8e5e7ae1" t="o" /> -<objsur guid="c1fca51a-84dc-4a5f-84ee-71b11e673cc2" t="o" /> -<objsur guid="c345e756-5574-4cdd-b04c-92a32554fe09" t="o" /> -<objsur guid="4a9c62dc-c97f-4ec2-b301-7b98138367bd" t="o" /> -<objsur guid="55c8383c-9a1c-406e-ab44-eac951562b89" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="d50f8665-0a19-42dc-ac01-c71468be8454" ownerguid="6e3a26d3-0e2a-4271-b3ae-0c9bf1e6d4a7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">defecate</AUni> -<AUni ws="es">defecar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d1463c82-0070-41fd-ad75-19e0042cf633" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d512c79e-f4b4-4089-bddf-039ce4c34899" ownerguid="3fbe3ea6-3ad3-430f-ab67-2d9c9f852c61"> -<ExampleWords> -<AUni ws="en">now, right now, nowadays, at this time, at the present time, currently, already</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that a situation exists now?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d5146a70-6b2c-402c-842c-67c0be740af2" ownerguid="9a189da3-4e52-4cad-b44b-d58cdadc7192"> -<Form> -<AUni ws="qvm-x-ach">calinta</AUni> -<AUni ws="qvm-x-acl">calinta</AUni> -<AUni ws="qvm-x-akh">calinta</AUni> -<AUni ws="qvm-x-akl">calinta</AUni> -<AUni ws="qvm-x-ame">calinta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d517d956-fa5b-49e6-97db-962d208a6a99" ownerguid="907c3cf2-76ef-47fd-b3ee-777ca3050cd7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">poor</AUni> -<AUni ws="es">pobre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3daa071a-2bfd-4a5e-804a-01802953ebfc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d51f2962-6d73-4e12-b1c6-423891d83969" ownerguid="169c0993-d49f-4b65-995c-20681c85c82b"> -<Form> -<AUni ws="qvm-x-ach">toälla</AUni> -<AUni ws="qvm-x-acl">toälla</AUni> -<AUni ws="qvm-x-akh">toälla</AUni> -<AUni ws="qvm-x-akl">toälla</AUni> -<AUni ws="qvm-x-ame">toälla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="Segment" guid="d5229460-5535-4f65-bff4-f067d46f872b" ownerguid="a30d2287-d368-4ac8-839e-634193ad6567"> -<Analyses> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="fa7aeb71-200a-4a5d-9436-13faa1972fea" t="r" /> -<objsur guid="25651c34-3e31-419d-86b5-cda6907f0a4f" t="r" /> -<objsur guid="7beb2bdf-1e77-4955-99ec-39f893293020" t="r" /> -<objsur guid="a85a5670-81ba-47b9-8443-95e8be60ebec" t="r" /> -<objsur guid="a634fa54-71cd-440e-8d33-b886ebea1acf" t="r" /> -<objsur guid="4fccec2d-58a4-466f-a087-a79d6bf13b57" t="r" /> -<objsur guid="6c3a760e-8f5b-495f-9b92-a80aa2b4e8f8" t="r" /> -<objsur guid="26ca52f1-b5e7-41e8-aa2e-cf2572524687" t="r" /> -</Analyses> -<BeginOffset val="12" /> -</rt> -<rt class="MoStemAllomorph" guid="d52434e4-cd7a-4b89-90b0-fe521d3e3f78" ownerguid="4a4392f2-adfd-4a53-ad99-27246f8e7f60"> -<Form> -<AUni ws="qvm-x-ach">funda</AUni> -<AUni ws="qvm-x-acl">funda</AUni> -<AUni ws="qvm-x-akh">funda</AUni> -<AUni ws="qvm-x-akl">funda</AUni> -<AUni ws="qvm-x-ame">funda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d5290279-d991-46cf-a8a7-2b5390d11181" ownerguid="38689a9a-475f-4ad8-831b-c847bd6bf295"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tie.up</AUni> -<AUni ws="es">atar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="68947563-8667-4e92-be1f-cc1e2e438a23" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="d52a0cc9-7aa4-4a2a-a8a0-406da6d392d4" ownerguid="ab80b556-2c7d-4e75-a58d-f5bb58b2feef"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="ae1f45fb-8247-4b1b-a3ae-fdb1b73c3f1a" t="o" /> -<objsur guid="d49ab472-dc77-4c33-9aad-84812d811567" t="o" /> -<objsur guid="41f841da-ad90-43ad-8090-f05946d0b665" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="d52ba5f4-5019-480b-ae41-7d0cbb91fe7b" ownerguid="ff3bf4e5-9c82-4318-8e96-a83c87d83a2e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="d52c5e1f-9c59-49a7-833b-ff3aa35e7076"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">purgación; purgacion</AUni> -<AUni ws="qvm-x-acl">purgación; purgacion</AUni> -<AUni ws="qvm-x-akh">purgación; purgacion</AUni> -<AUni ws="qvm-x-akl">purgación; purgacion</AUni> -<AUni ws="qvm-x-ame">purgación; purgacion</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+purgación</AUni> -<AUni ws="qvm-x-acl">+purgación</AUni> -<AUni ws="qvm-x-akh">+purgación</AUni> -<AUni ws="qvm-x-akl">+purgación</AUni> -<AUni ws="qvm-x-ame">+purgación</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.12" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="95d65ae4-518a-47a1-b8ea-8a758bdce50e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+purgación</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c225039a-59fd-4b99-a362-018bc925987d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dd6d578a-7fb1-45e1-a484-073eab706675" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +purgación 
\entryTyp root 
\gENG 
\gSPN 
\e +purgación 
\c N0 
\mp +FinalC 
\ach purgación / _# 
\ach purgacion / ~_# 
\akh purgación / _# 
\akh purgacion / ~_# 
\acl purgación / _# 
\acl purgacion / ~_# 
\akl purgación / _# 
\akl purgacion / ~_# 
\ame purgación / _# 
\ame purgacion / ~_# 
\i Lev 15.2 Gamcuna Israel runacunata caynog tantyatsinqui: Pï runatapis purgación
\f + 15.1 Runata purgación tsarishganta nintsi chiulacunan antsar yorag yacu yarguptinmi.
\f* tsariptin impürumi canga.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d52fd88d-9fda-4915-9cab-f82c0e044534"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">taclla</AUni> -<AUni ws="qvm-x-acl">taclla</AUni> -<AUni ws="qvm-x-akh">taklla</AUni> -<AUni ws="qvm-x-akl">taklla</AUni> -<AUni ws="qvm-x-ame">taklla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*taklla.n</AUni> -<AUni ws="qvm-x-acl">*taklla.n</AUni> -<AUni ws="qvm-x-akh">*taklla.n</AUni> -<AUni ws="qvm-x-akl">*taklla.n</AUni> -<AUni ws="qvm-x-ame">*taklla.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.774" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3d08ce45-5945-47a6-bf21-027c38081590" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*taklla.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="088c3b35-a2e0-4913-93cf-94aa3b3dcacc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b18d63fa-f6b9-4440-8bfd-ea55504a62dc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *taklla.n 
\entryTyp root 
\gENG plow 
\gSPN arado 
\e *taklla.n 
\c N0 
\ach taclla 
\akh taklla 
\acl taclla 
\akl taklla 
\ame taklla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d5319800-c4ad-4a6f-957e-3b4b993e7b7f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">atatalay</AUni> -<AUni ws="qvm-x-acl">atatalay</AUni> -<AUni ws="qvm-x-akh">atatalay</AUni> -<AUni ws="qvm-x-akl">atatalay</AUni> -<AUni ws="qvm-x-ame">atatalay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*atatallay</AUni> -<AUni ws="qvm-x-acl">*atatallay</AUni> -<AUni ws="qvm-x-akh">*atatallay</AUni> -<AUni ws="qvm-x-akl">*atatallay</AUni> -<AUni ws="qvm-x-ame">*atatallay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.860" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ce4dcdba-4918-4b85-9731-22a0fbd00fd1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*atatallay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a5b42144-371c-4767-a26f-bafed0c81b90" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="20eb022d-a563-4148-9068-a2d6bd1e16c4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *atatallay 
\entryTyp root 
\gENG dirty! 
\gSPN sucio! 
\e *atatallay 
\c NOSUFF 
\ach atatalay 
\akh atatalay 
\acl atatalay 
\akl atatalay 
\ame atatalay 
\i LAM 2.15 ¡Atatalay! ¿Tagaychi may marcapitapis mas cuyaylapag cargan?</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="d5350fac-e42d-42fc-8e40-cf12c91596a6" ownerguid="8a36cea6-a15e-4086-8781-2e8d159afe61"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d53569d1-aa47-4ee6-a5f8-ce4bc6583391" ownerguid="8256da64-9b2b-4f9f-becc-c03cc73c1de7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="be978201-e93a-4d9b-b523-12764e27a4c7" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">cords</AUni> -<AUni ws="es">cuerdas</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4c2bee75-e668-4daf-9385-5eb87bf68185" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d5368103-b81e-49a1-a75f-75341b6545b7" ownerguid="dd564be9-1c41-4a62-bbb4-ef3a01483155"> -<Form> -<AUni ws="qvm-x-ach">sëlla</AUni> -<AUni ws="qvm-x-acl">sëlla</AUni> -<AUni ws="qvm-x-akh">sëlla</AUni> -<AUni ws="qvm-x-akl">sëlla</AUni> -<AUni ws="qvm-x-ame">sëlla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d5368649-32f0-4ce2-970c-cfac70f94f07"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">desti:nu</AUni> -<AUni ws="qvm-x-acl">desti:nu; desti:nu; desti:no</AUni> -<AUni ws="qvm-x-akh">desti:nu</AUni> -<AUni ws="qvm-x-akl">desti:nu; desti:nu; desti:no</AUni> -<AUni ws="qvm-x-ame">desti:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+destino</AUni> -<AUni ws="qvm-x-acl">+destino</AUni> -<AUni ws="qvm-x-akh">+destino</AUni> -<AUni ws="qvm-x-akl">+destino</AUni> -<AUni ws="qvm-x-ame">+destino</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.396" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eeb83c20-60f8-4400-b299-7134b2a75ad9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+destino</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="17035e0f-bad8-4ee4-8f92-caa345042e18" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e1418158-823a-4040-9387-350b2d378ed9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +destino 
\entryTyp root 
\gENG destiny 
\gSPN destino 
\e +destino 
\c N0 
\ach desti:nu 
\akh desti:nu 
\acl desti:nu / _# 
\acl desti:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl desti:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl desti:nu / _# 
\akl desti:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl desti:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame desti:nu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="d5375983-c269-4cdb-8925-500cc9a50ccd" ownerguid="ba339cf2-8191-4519-9289-a9d996eb059c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="2e569721-7d70-4723-a945-dd4aaf460e86" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="d53b457a-a080-4f9e-9757-70adf465fb77"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">walga</AUni> -<AUni ws="qvm-x-acl">walga</AUni> -<AUni ws="qvm-x-akh">walqa</AUni> -<AUni ws="qvm-x-akl">walqa</AUni> -<AUni ws="qvm-x-ame">walqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wallqa.v</AUni> -<AUni ws="qvm-x-acl">*wallqa.v</AUni> -<AUni ws="qvm-x-akh">*wallqa.v</AUni> -<AUni ws="qvm-x-akl">*wallqa.v</AUni> -<AUni ws="qvm-x-ame">*wallqa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.465" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c15c943d-6cdb-4114-9838-09d36af49800" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wallqa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2fdc30cd-57ab-469a-924a-84b3a4f0b171" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5574e733-743b-4fd2-a98d-79c597a3342c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wallqa.v 
\entryTyp root 
\gENG hang.from.neck 
\gSPN colgar 
\e *wallqa.v 
\c V1 
\ach walga 
\akh walqa 
\acl walga 
\akl walqa 
\ame walqa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="d53fbd44-4efa-4783-a752-10d387d64c24" ownerguid="05d1c5bb-1f81-4979-acfa-1931d5d237e7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="d54278de-960e-424b-ad6b-f3c968d338d3" ownerguid="65a3d052-ab43-4056-b273-5672b4332e6d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d542f0e9-6248-4ae4-b729-17ea37af86a5" ownerguid="8fff393a-23c2-42bb-8da8-9b151e790904"> -<ExampleWords> -<AUni ws="en">elder care, retirement center, old folks home, nursing home</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to caring for an old person?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="d5438b4f-1d2d-4cb2-953b-9186841f12f4"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">CAUS</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="d549bdc9-1920-441d-a931-50810d13d645" ownerguid="0537f54e-67e6-421d-9ab0-28ecccef1723"> -<Form> -<AUni ws="qvm-x-ach">brüju</AUni> -<AUni ws="qvm-x-acl">brüju; brüjo</AUni> -<AUni ws="qvm-x-akh">brüju</AUni> -<AUni ws="qvm-x-akl">brüju; brüjo</AUni> -<AUni ws="qvm-x-ame">brüju</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d54a756c-bcac-4b45-9dae-26db5783ac7d" ownerguid="92ef1096-bae2-4bc5-b4b8-c16f429c4867"> -<ExampleWords> -<AUni ws="en">belong to a group, be a member, belong in something, be on something</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to belonging to a group?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d54aeb07-8480-4cef-9d70-2f717dc9079b" ownerguid="dd3e872a-fb50-4204-9646-7a24c644013b"> -<ExampleWords> -<AUni ws="en">English, Gaelic, Irish, Welsh, Dutch, German, French, Spanish, Pidgin English</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the names of the languages spoken in the area?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d54c380b-5218-49d6-a1e2-540113f7bc15" ownerguid="169c0993-d49f-4b65-995c-20681c85c82b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d54d07d6-be72-4309-91d5-c49f172e22da" ownerguid="a39f772c-3e5b-48b6-b7bc-e8b00c6208ac"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">doll</AUni> -<AUni ws="es">muñeca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e897efaa-f4e5-4bb3-82b5-53d7a443aafd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d54e001f-2f33-43d5-9f6c-324e1880a323" ownerguid="49aa89f2-2022-4213-845e-dbbb4b53476c"> -<ExampleWords> -<AUni ws="en">be last, come last, finish last, bring up the rear, straggler, be the last straw</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that a person or thing is the last in a list or line or group?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d55192bb-7d8a-4535-a1ca-5f48b707a814"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ta:pa</AUni> -<AUni ws="qvm-x-acl">ta:pa</AUni> -<AUni ws="qvm-x-akh">ta:pa</AUni> -<AUni ws="qvm-x-akl">ta:pa</AUni> -<AUni ws="qvm-x-ame">ta:pa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ta:pa</AUni> -<AUni ws="qvm-x-acl">*ta:pa</AUni> -<AUni ws="qvm-x-akh">*ta:pa</AUni> -<AUni ws="qvm-x-akl">*ta:pa</AUni> -<AUni ws="qvm-x-ame">*ta:pa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.805" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="df860fac-a5bc-4597-86e0-e0a1975b580a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ta:pa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ba8af5d2-4037-4fa9-af9b-dc4cdde18ddf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fbabc490-b39f-40ea-abcd-012d5092af4a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ta:pa 
\entryTyp root 
\gENG guard 
\gSPN cuidar 
\e *ta:pa 
\c V2 
\ach ta:pa 
\akh ta:pa 
\acl ta:pa 
\akl ta:pa 
\ame ta:pa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="d55563fa-34ad-49ae-bbc8-698b76b7ec51" ownerguid="7bc9bc23-8a4e-49de-993a-0d2acd7282c3"> -<Form> -<AUni ws="qvm-x-ach">chawa</AUni> -<AUni ws="qvm-x-acl">chawa</AUni> -<AUni ws="qvm-x-akh">chawa</AUni> -<AUni ws="qvm-x-akl">chawa</AUni> -<AUni ws="qvm-x-ame">chawa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="d5569f11-6620-4f09-9c10-9c53d0fe4719" ownerguid="581f0bd9-485e-4fb8-9c41-fabc63f33d43"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="d557d038-6a15-444b-a9cd-794db7acd4fa" ownerguid="82cb0881-5c23-4df2-b22c-45aa078032c1" /> -<rt class="CmDomainQ" guid="d55a5ee1-611b-46d2-b943-4828c4dc8d00" ownerguid="71a2cc77-f968-4341-84c1-6c16d007a093"> -<ExampleWords> -<AUni ws="en">slaughterhouse, butchery</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a place where animals are butchered?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d55c32ac-bc49-4310-a943-ac4085d04815"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">estrella</AUni> -<AUni ws="qvm-x-acl">estrella</AUni> -<AUni ws="qvm-x-akh">estrella</AUni> -<AUni ws="qvm-x-akl">estrella</AUni> -<AUni ws="qvm-x-ame">estrella</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+estrella</AUni> -<AUni ws="qvm-x-acl">+estrella</AUni> -<AUni ws="qvm-x-akh">+estrella</AUni> -<AUni ws="qvm-x-akl">+estrella</AUni> -<AUni ws="qvm-x-ame">+estrella</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.516" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="932087d9-d765-42df-bf4d-bec334e6c91b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+estrella</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cf6e9acf-c9a9-468d-a4fe-9ea18e167e94" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a4186755-9079-4d66-82b1-abf0acf3086b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +estrella 
\entryTyp root 
\gENG star 
\gSPN estrella 
\e +estrella 
\c N0 
\ach estrella 
\akh estrella 
\acl estrella 
\akl estrella 
\ame estrella</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d55cb5c3-a2bd-43f7-9c2e-70a4d5f8a0cc" ownerguid="f472b2d2-b4d3-4852-914d-71b66bdb6f26"> -<ExampleWords> -<AUni ws="en">dangle, hanging</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that has been hung?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d55ee3a0-d342-4f9c-861a-bb135f18cb8a" ownerguid="fc41b0e3-a152-4c00-aeb0-2d848cd8862f"> -<Form> -<AUni ws="qvm-x-ach">cotëju</AUni> -<AUni ws="qvm-x-acl">cotëju; cotëju; cotëjo</AUni> -<AUni ws="qvm-x-akh">cotëju</AUni> -<AUni ws="qvm-x-akl">cotëju; cotëju; cotëjo</AUni> -<AUni ws="qvm-x-ame">cotëju</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d55feeef-8433-42e4-b3b1-35ac0fa1c807" ownerguid="e916fa80-99de-497b-b69a-0191102c4e62"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">alagar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="68617e0d-8f16-4922-87e0-6316bf21e76a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d5685124-48d5-402c-8bf4-2bfd0e788ff2" ownerguid="c5996b7d-0acc-4ac7-bfa0-09b93a0eccbc"> -<ExampleWords> -<AUni ws="en">eureka, strike it rich</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to finding minerals?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d56a5d54-9e54-49a6-9473-da133f47c02a" ownerguid="fbc9c7c9-f6df-478c-86ae-d96ae0ef8021"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="6e1d133b-87d7-4895-8dc8-4982bde5756b" t="o" /> -<objsur guid="f726936c-02f0-4ca7-8c8f-dc44fde4948d" t="o" /> -<objsur guid="49505ca9-ab99-4ff9-bc76-7cd394c59637" t="o" /> -<objsur guid="b05348e1-d90c-4a2b-a2dc-2a69ad99e2fc" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">escape</AUni> -<AUni ws="es">escaparse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="136bcd61-c5da-464f-8c9a-81f6f992504e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d56f6500-13a1-4e96-b954-937b3c804567" ownerguid="01441207-4935-49a5-a192-16d949f5606c"> -<ExampleWords> -<AUni ws="en">win, lose, tie, defeat, become champion, win the prize, finish the race, finish well, winner, loser</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words are used of the outcome of a game?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="d574c970-6834-4566-ae37-f42c7e95483b" ownerguid="aba3f7f1-9e13-4b48-acbb-3bf6d6bfa0e8"> -<Abbreviation> -<AUni ws="en">8.2.9.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.599" /> -<DateModified val="2022-9-23 16:55:8.599" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being heavy.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>86A Heavy, Light</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Heavy</AUni> -</Name> -<Questions> -<objsur guid="185acfbd-c888-4bb7-a66e-9d33c7d841d5" t="o" /> -<objsur guid="817ce678-1a0b-421e-9945-265cb8607713" t="o" /> -<objsur guid="48f7a7a5-6ded-40c8-9843-c4e439ee80f3" t="o" /> -<objsur guid="03a71a1f-ed21-4c4b-9cb5-5869e8843a0e" t="o" /> -<objsur guid="0c8a521f-dfb1-44a4-a054-88713b3c555c" t="o" /> -<objsur guid="3f6aacd1-69ee-4100-a7d7-0785904ae8a6" t="o" /> -<objsur guid="e7f9ef3c-6a88-4410-9bac-4ddc5d276cb5" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="d575fcb0-5db0-4d71-94bf-95e652147dba" ownerguid="01cbdf1d-9732-4b93-a14c-f0837ecc797e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="d576bd3a-a7a4-4652-b599-d9eb601fd7c2" ownerguid="e70966e8-1b07-4370-bf66-3d32468305c0"> -<Form> -<AUni ws="qvm-x-ach">lätigu</AUni> -<AUni ws="qvm-x-acl">lätigu; lätigo</AUni> -<AUni ws="qvm-x-akh">lätigu</AUni> -<AUni ws="qvm-x-akl">lätigu; lätigo</AUni> -<AUni ws="qvm-x-ame">lätigu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d5777843-50c5-499a-b5ad-8e8deac08546" ownerguid="13f62fa1-589c-4a46-9bbc-b0fd1001e21f"> -<ExampleWords> -<AUni ws="en">cell, cellblock, bars, stocks, death row, solitary confinement, cooler</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What are the parts of a prison?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d57b2794-76ef-4537-b7a2-0b70c80c9c64" ownerguid="e6c9fe4c-199e-4934-b622-739a85b0830d"> -<ExampleWords> -<AUni ws="en">organized, methodical, neat, together</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe a person who organizes things well?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d57bb71d-2eb0-48bd-988c-bac219b10929" ownerguid="7a656e80-04f9-4fc6-8b2c-f32144812ecb"> -<Form> -<AUni ws="qvm-x-ach">sillëta</AUni> -<AUni ws="qvm-x-acl">sillëta</AUni> -<AUni ws="qvm-x-akh">sillëta</AUni> -<AUni ws="qvm-x-akl">sillëta</AUni> -<AUni ws="qvm-x-ame">sillëta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="d57d397f-8b32-4f7e-8fde-35432f26128a" ownerguid="26458e29-e274-4c71-a303-5d4957110fbf"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d57dbad6-a42c-437d-9d4b-3bae398e18d7" ownerguid="f4580c19-ba9e-4f71-a46a-6f3c4b19c36c"> -<ExampleWords> -<AUni ws="en">disembark</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to getting out of a boat?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d57f7a09-e6e9-44f5-9fc4-8296befd4317" ownerguid="c6688928-6694-4264-8048-a60b665b5793"> -<ExampleWords> -<AUni ws="en">nicotine, tar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What does tobacco contain?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d5820d0b-ee0a-408f-aa44-8aad8982d57a" ownerguid="e0462bde-bb52-4cd0-a8d1-4db77a752426"> -<Form> -<AUni ws="qvm-x-ach">para</AUni> -<AUni ws="qvm-x-acl">para</AUni> -<AUni ws="qvm-x-akh">para</AUni> -<AUni ws="qvm-x-akl">para</AUni> -<AUni ws="qvm-x-ame">para</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d582c9e0-d92d-4759-bd7d-43acfb10b46e" ownerguid="eec72226-106c-4825-b245-6e18110ee917"> -<ExampleWords> -<AUni ws="en">roof, ceiling</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the top of a house?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d585e706-3cf6-472f-9ede-de024a7d488f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">watgu</AUni> -<AUni ws="qvm-x-acl">watgu; watgo</AUni> -<AUni ws="qvm-x-akh">watqu</AUni> -<AUni ws="qvm-x-akl">watqu; watqo</AUni> -<AUni ws="qvm-x-ame">watqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*watqu</AUni> -<AUni ws="qvm-x-acl">*watqu</AUni> -<AUni ws="qvm-x-akh">*watqu</AUni> -<AUni ws="qvm-x-akl">*watqu</AUni> -<AUni ws="qvm-x-ame">*watqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.576" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="36aac3d4-8466-43b9-a047-8d636b0b6ee4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*watqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="25890ad1-d967-438f-ae4d-36f3adf63e94" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="33b7f772-bf9a-4a16-b3dd-3f64f4e7ee58" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *watqu 
\entryTyp root 
\gENG protrude 
\gSPN salir 
\e *watqu 
\c V1 
\ach watgu 
\akh watqu 
\acl watgu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl watgo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl watqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl watqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame watqu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="d586a164-ac8f-4356-8aa8-07721c2b5e09" ownerguid="70eac6be-66e8-4827-8f2f-d15427efff60"> -<Abbreviation> -<AUni ws="en">3.5.7.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.182" /> -<DateModified val="2022-9-23 16:55:8.182" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to letter--a written message that is sent to someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Letter</AUni> -</Name> -<Questions> -<objsur guid="0a917381-a6f8-4ad8-aa69-4bccb8852391" t="o" /> -<objsur guid="7f17ed3b-4fca-4112-b0a0-20272acdd919" t="o" /> -<objsur guid="27124f91-aa81-4673-a885-7bc28ecd91f5" t="o" /> -<objsur guid="90f41246-a220-49ab-a8e1-873d966edaab" t="o" /> -<objsur guid="f94fcb56-4a91-4449-81d2-b27cf622639d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="d586e71d-5114-4575-9481-0d78a7ec6389" ownerguid="8b47e9e5-c935-48c5-a93e-8291e58d2778"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stretch</AUni> -<AUni ws="es">estirar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5003921c-01bc-4d8d-8895-e572421d605c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="d588235f-f9ce-4acc-bb75-dd2d919a94f8" ownerguid="122956b3-570b-4668-a8b2-2988f9d8ec14"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="bbd6666e-257b-40e7-89f0-bdb42f17edec" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d5888feb-2a9e-4072-936e-4d15cd27c363" ownerguid="c8d3bee0-5a48-4c28-89d3-86d654b3ab68"> -<Form> -<AUni ws="qvm-x-ach">wardaespalda</AUni> -<AUni ws="qvm-x-acl">wardaespalda</AUni> -<AUni ws="qvm-x-akh">wardaespalda</AUni> -<AUni ws="qvm-x-akl">wardaespalda</AUni> -<AUni ws="qvm-x-ame">wardaespalda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d58c8553-3e5a-47f4-9368-ba389d724a1d" ownerguid="81e03df2-33a8-4735-aa23-80ef1c63679e"> -<ExampleWords> -<AUni ws="en">think clearly, be clear headed, be sharp (mentally)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a person's mind is working well?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="d590103a-fbc1-4455-b9de-c6cbba25c713" ownerguid="440cd9c8-e4b2-4352-abcd-d754f138dd56"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">NAM 3.2 ...mayapäcunquipag...cärrucuna tagrarayla aywarcaycagta.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="d590769c-bfa7-4ece-bed6-5a6296d8318a" ownerguid="f4f87192-4abf-42a0-842d-900b74cb6684"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">astutely</AUni> -<AUni ws="es">con.astucia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cf6729fc-716f-43c2-8a2a-ffd0b0c7ed0f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d5918545-7c5b-4e3b-9a2f-8a06fa5a1536" ownerguid="b08ae47a-1125-4f6f-8a6f-37b5c96397da"> -<Form> -<AUni ws="qvm-x-ach">mantsa</AUni> -<AUni ws="qvm-x-acl">mantsa</AUni> -<AUni ws="qvm-x-akh">mantsa</AUni> -<AUni ws="qvm-x-akl">mantsa</AUni> -<AUni ws="qvm-x-ame">mantsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d5920ef2-29e0-4969-960d-48866dcae841"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuna</AUni> -<AUni ws="qvm-x-acl">cuna</AUni> -<AUni ws="qvm-x-akh">kuna</AUni> -<AUni ws="qvm-x-akl">kuna</AUni> -<AUni ws="qvm-x-ame">kuna</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.548" /> -<DateModified val="2022-10-16 14:52:47.457" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f236a19a-86ce-4599-91f5-fb178488e065" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">PLUR</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0851fe14-f99e-4e06-befc-3a76b044ea37" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="095b05e6-a91e-476d-a042-0b5674bba0ec" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx PLUR 
\entryTyp suffix 
\gENG PLUR 
\gSPN PLUR 
\e PLUR 
\c N0/N0 BN/N0 
\ach cuna 
\akh kuna 
\acl cuna 
\akl kuna 
\ame kuna 
\o 160, 240 
\mcc PLUR / ~_ PLUR 
\mcc PLUR / NOW ~_</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d593023e-15c0-4737-90fa-93b7e025449e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">canoa</AUni> -<AUni ws="qvm-x-acl">canoa</AUni> -<AUni ws="qvm-x-akh">canoa</AUni> -<AUni ws="qvm-x-akl">canoa</AUni> -<AUni ws="qvm-x-ame">canoa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+canoa</AUni> -<AUni ws="qvm-x-acl">+canoa</AUni> -<AUni ws="qvm-x-akh">+canoa</AUni> -<AUni ws="qvm-x-akl">+canoa</AUni> -<AUni ws="qvm-x-ame">+canoa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.41" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6b061a7d-3c6e-4861-80ca-7d854837bdf8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+canoa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4e9ce948-459c-48e1-a89a-cb8b37f8129a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c1555bdf-e62e-4543-83bf-42b7d9e1a277" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +canoa 
\entryTyp root 
\gENG boat 
\gSPN barco 
\e +canoa 
\c N0 
\ach canoa 
\akh canoa 
\acl canoa 
\akl canoa 
\ame canoa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d594201b-7335-41ed-8c44-ecd4de15bea5" ownerguid="2eba12c6-7817-4dfd-9e7c-94c8b8b389ef"> -<ExampleWords> -<AUni ws="en">kosher</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe food that is not prohibited?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d594ff81-c709-41a0-9446-7b41e8745023" ownerguid="4f09c9f4-82da-40a5-a53a-75b4ada04121"> -<Form> -<AUni ws="qvm-x-ach">shili</AUni> -<AUni ws="qvm-x-acl">shili; shili; shile</AUni> -<AUni ws="qvm-x-akh">shili</AUni> -<AUni ws="qvm-x-akl">shili; shili; shile</AUni> -<AUni ws="qvm-x-ame">shili</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="d5960b48-e838-4323-bd74-a4dc95a6d77c" ownerguid="7cc0e682-7a75-4947-af9f-0d512a057ae8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">g</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">g</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">q</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">q</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">q</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7feef4b7-a285-4201-a3a4-057f77618b78" t="r" /> -</Morph> -<Msa> -<objsur guid="964f8962-17d5-4738-8902-97236137c419" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="d5977802-c777-44ea-86c9-1657ecb61e28" ownerguid="196bf7b1-54a1-4a78-8d10-c61585849c63"> -<ExampleWords> -<AUni ws="en">go with, come with, come along, accompany, escort (v), travel with, journey together</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving with someone?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="d59a84e1-5e12-4cb7-b72b-15c51810ad48" ownerguid="0e79435b-f5ff-4061-81ff-49557ba2aed4"> -<Abbreviation> -<AUni ws="en">4.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to disunity--when a group of people do not agree with each other and are fighting.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>39A Opposition, Hostility; 39B Division</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Disunity</AUni> -</Name> -<Questions> -<objsur guid="6002b82b-6538-46f6-968d-01d303fc7ac1" t="o" /> -<objsur guid="c6a55f2d-8c68-4cae-b5d8-f62f45155e2f" t="o" /> -<objsur guid="332d8dcc-88c6-4b76-be5c-755e065d9016" t="o" /> -<objsur guid="3633e03f-a6ed-400a-beb5-320010ec3684" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="eaed8c63-9f97-4116-927c-19f364a99e72" t="o" /> -<objsur guid="a8b2abb3-d09f-4ff1-89ce-6ae99f16401c" t="o" /> -<objsur guid="4651aef1-e18f-481e-9c3e-d9dfff4a6b51" t="o" /> -<objsur guid="0ac81210-20ff-4a89-948f-5d154668f05c" t="o" /> -<objsur guid="c223335b-4803-4f1b-bf4d-f1ee077513cf" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="d59affa1-8aeb-4005-b720-97ce31812489" ownerguid="42b520b9-536e-40ec-b03b-8903f4fc43d3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d59b9111-5c9e-49ad-98c0-6140e9748ad6" ownerguid="efef45bd-26be-46f8-b85b-424be55bcdac"> -<ExampleWords> -<AUni ws="en">new, newfangled, avant-garde, contemporary, forward-looking, fresh, futuristic, go-ahead, be in its infancy, innovative, inventive, modern, ultra-modern, move with the times, novel, original, originality, pioneering, present-day, progressive, revolutionary, up-to-date, up-to-the-minute, ahead of your time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe a new idea or way of doing something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d59c604b-59d7-4f2c-a2c0-3e3961802abb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ucpa</AUni> -<AUni ws="qvm-x-acl">ucpa</AUni> -<AUni ws="qvm-x-akh">ukpa</AUni> -<AUni ws="qvm-x-akl">ukpa</AUni> -<AUni ws="qvm-x-ame">ukpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ukpa</AUni> -<AUni ws="qvm-x-acl">*ukpa</AUni> -<AUni ws="qvm-x-akh">*ukpa</AUni> -<AUni ws="qvm-x-akl">*ukpa</AUni> -<AUni ws="qvm-x-ame">*ukpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.200" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7295eadd-b61a-4779-a15d-77e012a07fba" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ukpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9cb6b515-d2ae-4da3-8f14-ff90bdeb3710" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d418f346-d0a9-4dc3-aef0-eedafc076e9f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ukpa 
\entryTyp root 
\gENG convex 
\gSPN ? 
\e *ukpa 
\c V1 
\ach ucpa 
\akh ukpa 
\acl ucpa 
\akl ukpa 
\ame ukpa 
\i 2KI 21.13 Ganra plätu mojusyashga captin ucparcur shumag limpiashgannogmi Jerusalén marcatapis limpiashag.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="d59cb110-4fda-49c2-9f0a-ce0d6cb7832b" ownerguid="ee6febac-1ca5-4c63-af23-ad64bb275b2f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d59e7f7f-45a1-46b9-80a8-2a2fd9ce58b7" ownerguid="9b3bba1a-cf29-45b5-9bf3-9478d5180999"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">exclamation</AUni> -<AUni ws="es">exclamación</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ea67acab-8445-4134-9205-8778a609e882" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="d59ec535-3c61-4236-beb6-f092af62cf05" ownerguid="78ae595d-ca38-40e4-89de-ef042b4d8aab"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="d5a03a9e-11be-4a1a-973e-1bd82e25999b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">copia</AUni> -<AUni ws="qvm-x-acl">copia</AUni> -<AUni ws="qvm-x-akh">copia</AUni> -<AUni ws="qvm-x-akl">copia</AUni> -<AUni ws="qvm-x-ame">copia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+copia</AUni> -<AUni ws="qvm-x-acl">+copia</AUni> -<AUni ws="qvm-x-akh">+copia</AUni> -<AUni ws="qvm-x-akl">+copia</AUni> -<AUni ws="qvm-x-ame">+copia</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.182" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d7952fe4-d5fd-4edb-9abc-d08b4a304f0d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+copia</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a584604e-aa2d-4d91-803b-9276879b59ca" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7cd016c1-a972-405c-a2f5-c19f3ddef7ba" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +copia 
\entryTyp root 
\gENG copy 
\gSPN copia 
\e +copia 
\c N0 
\ach copia 
\akh copia 
\acl copia 
\akl copia 
\ame copia</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="d5a088d8-5bbf-47e0-b9c0-b00e19038621" ownerguid="3ef36790-ba95-4f35-b689-79eb7fe3edba"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="d5a0d5ca-90e4-4617-bf2e-25ef8b6c692d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">resila</AUni> -<AUni ws="qvm-x-acl">resila</AUni> -<AUni ws="qvm-x-akh">resila</AUni> -<AUni ws="qvm-x-akl">resila</AUni> -<AUni ws="qvm-x-ame">resila</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+recelar</AUni> -<AUni ws="qvm-x-acl">+recelar</AUni> -<AUni ws="qvm-x-akh">+recelar</AUni> -<AUni ws="qvm-x-akl">+recelar</AUni> -<AUni ws="qvm-x-ame">+recelar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.307" /> -<DateModified val="2022-10-10 21:18:47.203" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dc9f58e5-a5db-4a27-9a59-5c391c6f751f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+recelar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ffa3586c-8480-4497-ab7d-1eeac6275f15" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="985916ce-1bab-403a-82e1-40b25a638194" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +recelar 
\entryTyp root 
\gENG 
\gSPN 
\e +recelar 
\c V2 
\ach resila 
\akh resila 
\acl resila 
\akl resila 
\ame resila 
\i Jueces 11.20 Tsaynog niptinpis Sehón resilashpan mana munargantsu Israel runacuna nacionninpa pasananta.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d5a3c1a4-9d76-4345-b770-fcac415da7fb" ownerguid="f8863b67-b911-4334-a1b6-6eb913bd14af"> -<ExampleWords> -<AUni ws="en">make something wider, widen, broaden</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to making something wide?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d5a73288-f9c5-4977-b797-6b304151c77d" ownerguid="51c2e2e4-438c-414b-bd15-773b664dd289"> -<ExampleWords> -<AUni ws="en">pitiable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe someone who needs mercy?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d5a9fa63-cddc-4009-bc17-3af37d8fecc3" ownerguid="390ad7fc-8360-4eae-8736-3aedc15ae659"> -<ExampleWords> -<AUni ws="en">map, chart, atlas</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a map?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d5ab0e17-63f2-447f-93b4-973ec9a36eaa" ownerguid="541f332b-82d8-4579-acff-e9d7fb8cadb8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tilt</AUni> -<AUni ws="es">inclinar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b2e2bd75-13a0-4cb4-8377-5ceee9ba3be4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d5acc91e-36a4-40e9-a81c-76934512f30c" ownerguid="bd6846e7-173b-418b-8860-56a43c5d4387"> -<Form> -<AUni ws="qvm-x-ach">penga</AUni> -<AUni ws="qvm-x-acl">penga</AUni> -<AUni ws="qvm-x-akh">penqa</AUni> -<AUni ws="qvm-x-akl">penqa</AUni> -<AUni ws="qvm-x-ame">pinqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d5ada2cd-e35e-4778-92dd-ffe0b887914b" ownerguid="2c04fa05-eebf-4331-b392-23f795c32382"> -<ExampleWords> -<AUni ws="en">one by one, singly, individually</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to people doing something one by one?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d5af0fb1-ad51-46f0-98e7-3bfec691a413" ownerguid="962941b2-66bd-437f-aadc-b1921bcae5b4"> -<ExampleWords> -<AUni ws="en">treat for (snakebite), snakebite treatment, cut vein, suck poison out, snakebite kit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to treating snakebite?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d5b5ab36-aab1-4d71-8fdd-ea09a3d23523" ownerguid="38b24d20-6502-4cdf-98d5-f507d81b632d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="d5bbf112-aefe-4f21-aeb0-befed3980dcf" ownerguid="ffc8ed53-dc2e-430f-84b7-30a0910bfb61"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="d5bc0c02-5527-4bcf-947b-7eaa1b385cf7" ownerguid="f40c36aa-65a5-4d32-9f81-eb51ae3b88de"> -<Form> -<AUni ws="qvm-x-ach">gobiernu; gobierno</AUni> -<AUni ws="qvm-x-acl">gobiernu; gobiernu; gobierno</AUni> -<AUni ws="qvm-x-akh">gobiernu; gobierno</AUni> -<AUni ws="qvm-x-akl">gobiernu; gobiernu; gobierno</AUni> -<AUni ws="qvm-x-ame">gobiernu; gobierno</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d5bda083-681b-4048-80f7-d2347cf1e050"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fuga</AUni> -<AUni ws="qvm-x-acl">fuga</AUni> -<AUni ws="qvm-x-akh">fuga</AUni> -<AUni ws="qvm-x-akl">fuga</AUni> -<AUni ws="qvm-x-ame">fuga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fuga</AUni> -<AUni ws="qvm-x-acl">+fuga</AUni> -<AUni ws="qvm-x-akh">+fuga</AUni> -<AUni ws="qvm-x-akl">+fuga</AUni> -<AUni ws="qvm-x-ame">+fuga</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.589" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ae372657-899c-43ac-9e6a-6fbf7c2eac1f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fuga</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ad169013-1395-405b-95d1-7191c0988114" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e1086046-9d68-4c26-b75a-a0b87337142f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fuga 
\entryTyp root 
\gENG 
\gSPN 
\e +fuga 
\c N0 
\ach fuga 
\akh fuga 
\acl fuga 
\akl fuga 
\ame fuga</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d5c12a8b-109d-4f0e-8167-f881484d021a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">entrega</AUni> -<AUni ws="qvm-x-acl">entrega</AUni> -<AUni ws="qvm-x-akh">entrega</AUni> -<AUni ws="qvm-x-akl">entrega</AUni> -<AUni ws="qvm-x-ame">entrega</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+entregar</AUni> -<AUni ws="qvm-x-acl">+entregar</AUni> -<AUni ws="qvm-x-akh">+entregar</AUni> -<AUni ws="qvm-x-akl">+entregar</AUni> -<AUni ws="qvm-x-ame">+entregar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.477" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fe863be5-c690-483a-a99a-2ef76852d580" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+entregar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fe9b8e02-b4fe-4369-b100-965f69b8a580" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b84a72ea-8527-4043-9548-c0904d3eaea4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +entregar 
\entryTyp root 
\gENG hand.over 
\gSPN entregar 
\e +entregar 
\c V2 
\ach entrega 
\akh entrega 
\acl entrega 
\akl entrega 
\ame entrega</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d5c59f3d-5ec4-4ccb-b2c8-a4ee009ee479"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ismu</AUni> -<AUni ws="qvm-x-acl">ismu; ismo</AUni> -<AUni ws="qvm-x-akh">ismu</AUni> -<AUni ws="qvm-x-akl">ismu; ismo</AUni> -<AUni ws="qvm-x-ame">ismu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ismu.v</AUni> -<AUni ws="qvm-x-acl">*ismu.v</AUni> -<AUni ws="qvm-x-akh">*ismu.v</AUni> -<AUni ws="qvm-x-akl">*ismu.v</AUni> -<AUni ws="qvm-x-ame">*ismu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.862" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2b535569-a059-40cd-93b8-2361dc417390" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ismu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1c0191e6-c3d7-4ad0-9a72-22b4fcf5843c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ea6c6c82-37c8-4638-9cfe-74b39b626c32" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ismu.v 
\entryTyp root 
\gENG rot 
\gSPN pudrir 
\e *ismu.v 
\c V1 
\ach ismu 
\akh ismu 
\acl ismu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ismo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ismu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ismo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ismu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d5c61719-6b48-4ead-830d-e058b0202731" ownerguid="349937e3-a2fd-41f8-b7c4-bd6fa106add4"> -<ExampleWords> -<AUni ws="en">floodplain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to an area that is often flooded by a river?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d5c78827-c5db-4e4c-8423-b67a425a7944" ownerguid="50db27b5-89eb-4ffb-af82-566f51c8ec0b"> -<ExampleWords> -<AUni ws="en">living, alive, animate (adj)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who is alive?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d5cb678c-7676-4c5f-9cd7-64cc57170b86"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">togpi</AUni> -<AUni ws="qvm-x-acl">togpi; togpe</AUni> -<AUni ws="qvm-x-akh">toqpi</AUni> -<AUni ws="qvm-x-akl">toqpi; toqpe</AUni> -<AUni ws="qvm-x-ame">tuqpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tuqpi.v</AUni> -<AUni ws="qvm-x-acl">*tuqpi.v</AUni> -<AUni ws="qvm-x-akh">*tuqpi.v</AUni> -<AUni ws="qvm-x-akl">*tuqpi.v</AUni> -<AUni ws="qvm-x-ame">*tuqpi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.7" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bcc21d50-55da-431b-91dd-15e98d269e98" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tuqpi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="db7b23af-3f58-489d-b243-1a3dae4d2449" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4b905f18-1e44-4f10-bf07-a95a94c43d75" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tuqpi.v 
\entryTyp root 
\gENG 
\gSPN desordenar 
\e *tuqpi.v 
\c V1 
\mp +FinalI 
\ach togpi 
\akh toqpi 
\acl togpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl togpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl toqpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl toqpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tuqpi</Run> -</AStr> -</Custom> -</rt> -<rt class="Segment" guid="d5d04ef9-4b4f-424b-ba26-c9234878594d" ownerguid="0e881f39-54e3-497e-994d-c82f65194c55"> -<Analyses> -<objsur guid="fbd0e618-7c83-4afb-8800-0effa3a16a9b" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="d5d06fa9-96ce-414b-8ac6-b67d7106e24c" ownerguid="f3da1994-1f68-4e16-bc17-4074208f8143"> -<Form> -<AUni ws="qvm-x-ach">uma</AUni> -<AUni ws="qvm-x-acl">uma</AUni> -<AUni ws="qvm-x-akh">uma</AUni> -<AUni ws="qvm-x-akl">uma</AUni> -<AUni ws="qvm-x-ame">uma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d5d0d386-30f7-4ece-a7f6-de2de22a4609"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">po:ru</AUni> -<AUni ws="qvm-x-acl">po:ru; po:ru; po:ro</AUni> -<AUni ws="qvm-x-akh">po:ru</AUni> -<AUni ws="qvm-x-akl">po:ru; po:ru; po:ro</AUni> -<AUni ws="qvm-x-ame">po:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+porro</AUni> -<AUni ws="qvm-x-acl">+porro</AUni> -<AUni ws="qvm-x-akh">+porro</AUni> -<AUni ws="qvm-x-akl">+porro</AUni> -<AUni ws="qvm-x-ame">+porro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.911" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0e71c499-1000-4089-9ba6-1c1e8341657c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+porro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="792d7024-5f31-4a07-8dce-07a5f28051a6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="36a38094-b3a9-4925-ab81-97995a903219" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +porro 
\entryTyp root 
\gENG 
\gSPN 
\e +porro 
\c N0 
\ach po:ru 
\akh po:ru 
\acl po:ru / _# 
\acl po:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl po:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl po:ru / _# 
\akl po:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl po:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame po:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d5d235a5-b338-4137-9b7e-9c05f35a3cb1" ownerguid="611aa361-4ddd-450b-a152-94984a274575"> -<ExampleWords> -<AUni ws="en">leave, leave (somewhere) never to return</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to abandoning a place?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d5d26b4e-f0b1-4a32-a1e2-505673db02bd" ownerguid="38473463-4b92-4681-8fd0-0aca0342e88a"> -<ExampleWords> -<AUni ws="en">echinoderm, sea cucumber, sea urchin, sand dollar, sea star, starfish, brittle star</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What words refer to animals with spiny skins (phylum Echinodermata)?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d5d6ce68-24e3-427c-a989-744cdd293d67" ownerguid="a9c67c41-699d-4857-9dbb-ec3ab8a5a28b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">take.advantage</AUni> -<AUni ws="es">aprovechar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0ef67223-735f-4593-bee5-1aacd8a1383e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="d5dcbcac-53f8-44f7-a348-99c8bf504174" ownerguid="9f845bde-606d-4abd-b5e5-dc788512c578"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">loma</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2711fff1-dd66-4632-a407-308db9cbc672" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d5de697a-14f4-4424-895b-cb16d273f99b" ownerguid="9b267cc1-983c-407a-98d2-1e27add6292c"> -<ExampleWords> -<AUni ws="en">retie</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to tying something a second time after it has come untied?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d5e05238-c0b2-4be8-b870-b637ee043526" ownerguid="5f98069e-f3f5-48b9-a105-3e244deb8c71"> -<Form> -<AUni ws="qvm-x-ach">watpa; watpä</AUni> -<AUni ws="qvm-x-acl">watpa; watpä</AUni> -<AUni ws="qvm-x-akh">watpa; watpä</AUni> -<AUni ws="qvm-x-akl">watpa; watpä</AUni> -<AUni ws="qvm-x-ame">watpa; watpä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d5e0f5e9-4f44-4704-b072-0df489e3a0bc" ownerguid="ed7930df-e7b4-43c9-a11a-b09521276b57"> -<ExampleWords> -<AUni ws="en">smell bad, smell, stink, reek, stink the place up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to smelling bad?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d5e16822-3fec-4d8d-b2cb-baec268f95e3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">vientucida; vientucida:</AUni> -<AUni ws="qvm-x-acl">vientucida; vientucida:</AUni> -<AUni ws="qvm-x-akh">vientucida; vientucida:</AUni> -<AUni ws="qvm-x-akl">vientucida; vientucida:</AUni> -<AUni ws="qvm-x-ame">vientucida; vientucida:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vientucidad</AUni> -<AUni ws="qvm-x-acl">+vientucidad</AUni> -<AUni ws="qvm-x-akh">+vientucidad</AUni> -<AUni ws="qvm-x-akl">+vientucidad</AUni> -<AUni ws="qvm-x-ame">+vientucidad</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.394" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ee270229-089d-4cdb-9f4b-cf49170edc94" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vientucidad</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5b7487ce-7d91-4b8a-a1df-4bac7a860b71" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6a618dc4-0529-4ed7-a3c8-27b470e7c5a3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vientucidad 
\entryTyp root 
\gENG 
\gSPN 
\e +vientucidad 
\c N0 
\mp +FinalC 
\mp +underlong 
\ach vientucida foreshortened 
\ach vientucida: 
\mp +underlong 
\akh vientucida foreshortened 
\akh vientucida: 
\acl vientucida foreshortened 
\acl vientucida: 
\akl vientucida foreshortened 
\akl vientucida: 
\mp +underlong 
\ame vientucida foreshortened 
\ame vientucida: 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d5e74745-143b-4911-bf3e-36c82c6e9468" ownerguid="d0b14231-1471-41b3-aeb5-69199acaaefb"> -<ExampleWords> -<AUni ws="en">way, manner, style, fashion, how, thus, mode</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate the way you do something or the way something is done?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d5e7e674-ffb9-44db-98db-5e3d12b85b80" ownerguid="90785272-00d8-4377-82bd-2803fd4027ce"> -<Form> -<AUni ws="qvm-x-ach">rätuni; rätuni</AUni> -<AUni ws="qvm-x-acl">rätuni; rätuni; rätune</AUni> -<AUni ws="qvm-x-akh">rätuni; rätuni</AUni> -<AUni ws="qvm-x-akl">rätuni; rätuni; rätune</AUni> -<AUni ws="qvm-x-ame">rätuni; rätuni</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="d5eb2790-6516-428c-871f-253ce453aa11" ownerguid="46d13b18-d016-4b11-9f95-d5b99061469f"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d5ecebfc-aee2-4882-bf09-e45d9bc4ecfc" ownerguid="535ffc87-3819-4bc0-85c5-5dcf5376bbd9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">a.bird</AUni> -<AUni ws="es">un.ave</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9abea1f0-6ada-4d61-861f-a9c44afc7195" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="d5ee69c1-5d9d-4818-9c8c-413e3e02f841" ownerguid="3296ecd0-8c71-4de0-9d66-2156bc32712f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="d5f424b1-914b-477c-bc0b-e2b22ddecc4a" ownerguid="140f9770-8631-49fe-9438-d11576c75ffc"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="d5f5c1a7-6abf-44bf-afba-a8c9ece04a18" ownerguid="a22c41ff-78f7-4ea6-a3a2-bb235e0c18e3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="d5f5faf3-d944-4b05-b49c-42fe18154f4b" ownerguid="76ad9048-8462-46f3-9de2-61b1a32bc35f" /> -<rt class="WfiMorphBundle" guid="d5f7a2d3-d9cf-4de8-975e-d11fcd58a63a" ownerguid="f3a3c98c-a0bc-4db7-9836-e2bfe57f50fa"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="d5fa1abe-7dcc-4393-9aa8-83521ab1334e" ownerguid="c345f278-91ff-463d-b9a6-8abac8a267eb"> -<ExampleWords> -<AUni ws="en">potato, carrot, sweet potato, cassava, cocoyam, taro, yam, beets, ginger</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What types of plants have edible roots?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d5fbfbff-8081-4b2f-94fa-73586a8726a1" ownerguid="f15c69e4-f623-4269-a3b7-ab4f609221a2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="f2dc52a6-a421-4319-b350-f7dc6e242b10" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="d5fc6c66-f011-4cf8-9cc3-a8015e200eb5" ownerguid="df51e17a-2d75-4c49-b2d1-c22e16898414"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">trough</AUni> -<AUni ws="es">bateya</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="30474a47-7437-4d90-9c71-963a226ac221" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="d603df77-080f-4d08-aa5f-dfd75afb576b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wawatibiu; wawatibio</AUni> -<AUni ws="qvm-x-acl">wawatibiu; wawatibiu; wawatibio</AUni> -<AUni ws="qvm-x-akh">wawatibiu; wawatibio</AUni> -<AUni ws="qvm-x-akl">wawatibiu; wawatibiu; wawatibio</AUni> -<AUni ws="qvm-x-ame">wawatibiu; wawatibio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+agua.tibio</AUni> -<AUni ws="qvm-x-acl">+agua.tibio</AUni> -<AUni ws="qvm-x-akh">+agua.tibio</AUni> -<AUni ws="qvm-x-akl">+agua.tibio</AUni> -<AUni ws="qvm-x-ame">+agua.tibio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.918" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="09a613ad-d3fb-41f4-8ce3-16b89e19c544" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+agua.tibio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fee3c2c9-f14f-4d61-a069-f7f7c5e5df4f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7d892177-c215-4cc8-b247-b354a311ea56" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +agua.tibio 
\entryTyp root 
\gENG 
\gSPN 
\e +agua.tibio 
\c N0 
\ach wawatibiu / ~_# 
\ach wawatibio / _# 
\akh wawatibiu / ~_# 
\akh wawatibio / _# 
\acl wawatibiu / ~_# 
\acl wawatibiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wawatibio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wawatibiu / ~_# 
\akl wawatibiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl wawatibio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wawatibiu / ~_# 
\ame wawatibio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="d604c7da-ac2b-4d9f-876d-5e7049f58747" ownerguid="d69de8d4-386a-4dae-9c54-2ff558df2117"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 46.10 Ama turwapäcuytsu.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="d60b3c3d-6e63-4258-9fe8-05b0f03d8a99" ownerguid="adf6ad2b-7af9-4bd8-a7b4-f864b9dad86d"> -<ExampleWords> -<AUni ws="en">coming of age</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the time when a child is initiated?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d60eb785-6b10-4814-a1a2-dfb90a4ac7b0" ownerguid="8fed77b0-d483-4c2b-bfec-7c5bfbf3881b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="d60f831a-d0d8-44dc-a441-a1ca7544990d" ownerguid="983054b6-230a-43b7-aeeb-9025e4467f10"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="d60faf11-cc6e-48db-8a13-82f86d78ab00" ownerguid="b32a39c4-43ff-4522-aed0-b2d5b8ad7157"> -<Abbreviation> -<AUni ws="en">7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.498" /> -<DateModified val="2022-9-23 16:55:8.498" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words for physical actions--moving yourself, moving things, and changing things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Physical actions</AUni> -</Name> -<Questions> -<objsur guid="4d98cd09-06be-43f9-8510-d10636a2292a" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="9f3b4cab-dc8a-430e-88f3-d3002df64fb8" t="o" /> -<objsur guid="c7c85346-158d-4881-839d-9a6a8e47209b" t="o" /> -<objsur guid="2810998c-d6cc-47a3-a946-66d0986a2767" t="o" /> -<objsur guid="24398eec-edd1-449a-ad36-d609be24a79e" t="o" /> -<objsur guid="6045c6eb-efea-4586-95f8-840d32578d66" t="o" /> -<objsur guid="043d12ac-c76d-4b4c-813b-4ef7758c8085" t="o" /> -<objsur guid="66d8b546-92f5-4e94-b992-08be81c3d30c" t="o" /> -<objsur guid="e5f9c9cf-0b0c-47aa-b7df-8c37f211cd00" t="o" /> -<objsur guid="f5156cde-9735-4249-920d-597fb0a7a8e3" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="d613ef1c-15ea-47ca-b23d-29b3c1676195"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gauga</AUni> -<AUni ws="qvm-x-acl">gauga</AUni> -<AUni ws="qvm-x-akh">qawqa</AUni> -<AUni ws="qvm-x-akl">qawqa</AUni> -<AUni ws="qvm-x-ame">qawqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qawqa</AUni> -<AUni ws="qvm-x-acl">*qawqa</AUni> -<AUni ws="qvm-x-akh">*qawqa</AUni> -<AUni ws="qvm-x-akl">*qawqa</AUni> -<AUni ws="qvm-x-ame">*qawqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.155" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ca530a4b-6e85-492b-933b-376c514a98d5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qawqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="de0affd8-1314-4b9f-b8ff-d1b5f8049a70" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7b5cb6a9-ad1d-4d55-8593-589bb4eda322" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qawqa 
\entryTyp root 
\gENG 
\gSPN 
\e *qawqa 
\c V1 
\ach gauga 
\akh qawqa 
\acl gauga 
\akl qawqa 
\ame qawqa 
\i AMO 1.2 Parlamuptinmi jircacho guewacunapis elagpita gaugan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d6177214-2f19-4747-a57d-65196403d35c" ownerguid="0f7c4d2f-ed94-49ba-a91c-fba36193f35a"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">How much does this cost?</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(3) What words do people use when they ask the price of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d617d980-94f1-49f4-8d56-a8ae9fd62d6b" ownerguid="e919878e-bdaf-423b-9db9-1d129ecc495d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">goalee</AUni> -<AUni ws="es">arquero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ee99e480-3bdf-4d53-90a5-05a56cadcb38" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d61847ca-8773-4679-8f9f-97c9dd300faf" ownerguid="afdd8b8e-9502-4d06-94ee-e79815b65750"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">He is almost 100 years old.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">almost, nearly, close to, close on, approaching, nearing, not quite, be pushing, pretty well</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is almost a particular number or amount?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d6192190-39af-4cf5-a45d-69fafeeadb9b" ownerguid="70164474-a65b-4506-9953-f26afb6b497a"> -<ExampleWords> -<AUni ws="en">hearth, flue, grate, fireguard, screen, chimney, mantle, fender, hob, trivet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the parts of a fireplace?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d619a002-d8a2-4e1a-a838-d79a145c6687" ownerguid="f13e62d1-1680-4113-a74f-f665bfccae7e"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="d61afcd0-aac8-42cb-b01a-12c6d4d5e48d" ownerguid="efe242bb-d9d5-4120-8404-399fea031fe0" /> -<rt class="MoStemAllomorph" guid="d61d5180-4f13-433b-b22d-1751177a7c6e" ownerguid="880f9aff-b7b6-47a8-8b2c-8222b95c4db3"> -<Form> -<AUni ws="qvm-x-ach">garbanzu; garbanzo</AUni> -<AUni ws="qvm-x-acl">garbanzu; garbanzu; garbanzo</AUni> -<AUni ws="qvm-x-akh">garbanzu; garbanzo</AUni> -<AUni ws="qvm-x-akl">garbanzu; garbanzu; garbanzo</AUni> -<AUni ws="qvm-x-ame">garbanzu; garbanzo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d62222e9-d3d9-4082-bf5d-b08dd4ba8d4a" ownerguid="80a863d0-38d7-4454-bf8a-fa3d622c5f12"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="5c41e283-77f3-436c-adbf-e311d582bc38" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">back.of.head</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e65de796-2226-4478-8585-183f455e633f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="d623a7c6-2f25-42e0-b25a-1e5a53c5533a" ownerguid="7e812386-09ea-4275-9e28-fdeec6b107f1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="6c221ffd-32f0-4d16-84b6-d2c488c9f7fc" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="90dcb1ac-788d-4b35-ac83-bc4826470cd2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d6252007-5d27-4651-a4a7-2e3bca7fa8cd" ownerguid="e90cf8e1-2e25-49dd-97cd-c749b5392667"> -<Form> -<AUni ws="qvm-x-ach">muna</AUni> -<AUni ws="qvm-x-acl">muna</AUni> -<AUni ws="qvm-x-akh">muna</AUni> -<AUni ws="qvm-x-akl">muna</AUni> -<AUni ws="qvm-x-ame">muna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="d62eb6f3-2ac0-44b4-873e-a0dad2a6a9e8" ownerguid="51f5f243-692c-4f29-af5b-3a386fd5215c"> -<Form> -<AUni ws="qvm-x-ach">marga</AUni> -<AUni ws="qvm-x-acl">marga</AUni> -<AUni ws="qvm-x-akh">marqa</AUni> -<AUni ws="qvm-x-akl">marqa</AUni> -<AUni ws="qvm-x-ame">marqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d62ef952-cd0a-40d6-b7f3-9116699323b8" ownerguid="42b21a6e-e2f3-4468-9e92-49ee4de6909a"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John and David went to town <separately>.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">separately</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that some people do something separately?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d62f09d6-ba14-4c0b-aba2-93e279e33470" ownerguid="90a8e1fd-6413-401c-860c-80d0427374a2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">motive</AUni> -<AUni ws="es">motivo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5834796b-fe01-4f9c-9faa-a0d600c85137" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="d62ff45d-6ed7-407d-a343-72c809fe16d9" ownerguid="8e3606ad-ee49-417d-8e25-d156e7ddf406"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">separate</AUni> -<AUni ws="es">separar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ef866d19-5a1c-4276-8c3b-f35ffc486dc5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="d6302d1d-79b2-4c6b-b620-ab8a46bd9288" ownerguid="0014fb37-c5f9-4f23-9203-b7d9208e8401"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Gen 39.6b Joséga buen mözu car cuyaylapagmi cargan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="d630d3be-559a-4592-b287-3ba2086a0a1f" ownerguid="f5156cde-9735-4249-920d-597fb0a7a8e3"> -<ExampleWords> -<AUni ws="en">used, well used, worn, well worn, is past its prime, second hand</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that is worn?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d630db5b-4158-4121-9795-c8ff6add3282" ownerguid="d2ca3194-e393-480e-ae1d-dd67bed55227"> -<ExampleWords> -<AUni ws="en">germinate, sprout, spring up, seedling</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a seed beginning to grow?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d6327369-3265-4ea2-8fe7-4f83a4737faf" ownerguid="079baa9c-b3ac-4881-bca2-7baf6825906d"> -<Form> -<AUni ws="qvm-x-ach">achaquëru</AUni> -<AUni ws="qvm-x-acl">achaquëru; achaquëru; achaquëro</AUni> -<AUni ws="qvm-x-akh">achaquëru</AUni> -<AUni ws="qvm-x-akl">achaquëru; achaquëru; achaquëro</AUni> -<AUni ws="qvm-x-ame">achaquëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d6334316-8fc1-40f5-ae49-faece188c167"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shongu</AUni> -<AUni ws="qvm-x-acl">shongu; shongu; shongo</AUni> -<AUni ws="qvm-x-akh">shonqu</AUni> -<AUni ws="qvm-x-akl">shonqu; shonqu; shonqo</AUni> -<AUni ws="qvm-x-ame">shunqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shunqu</AUni> -<AUni ws="qvm-x-acl">*shunqu</AUni> -<AUni ws="qvm-x-akh">*shunqu</AUni> -<AUni ws="qvm-x-akl">*shunqu</AUni> -<AUni ws="qvm-x-ame">*shunqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.642" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eb08fc75-00d1-4f7a-8cb0-90d9d148faf8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shunqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3884c740-550e-46bd-ab97-8a61f3f9eef2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6ef2360c-be12-4308-8fbb-ec24933d7a7c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shunqu 
\entryTyp root 
\gENG lung 
\gSPN pulmón 
\e *shunqu 
\c N0 
\ach shongu 
\akh shonqu 
\acl shongu / _# 
\acl shongu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shongo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shonqu / _# 
\akl shonqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shonqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shunqu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="d6338cd1-7059-4742-a5d8-164d1a6eb4f3" ownerguid="dfdb5f68-ba99-439d-a245-b57b84d41a1a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d63a2df0-3f40-4284-94d7-cbb1b0e01e77" ownerguid="d9874aa6-a28e-4351-b79c-3ab3d257072e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">aroma</AUni> -<AUni ws="es">aroma</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="93e68721-97d6-4778-8b51-21516c530257" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="d63c5f73-85d8-4a05-bb72-8a88e2ef624a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shinca</AUni> -<AUni ws="qvm-x-acl">shinca</AUni> -<AUni ws="qvm-x-akh">shinka</AUni> -<AUni ws="qvm-x-akl">shinka</AUni> -<AUni ws="qvm-x-ame">shinka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shinka.n</AUni> -<AUni ws="qvm-x-acl">*shinka.n</AUni> -<AUni ws="qvm-x-akh">*shinka.n</AUni> -<AUni ws="qvm-x-akl">*shinka.n</AUni> -<AUni ws="qvm-x-ame">*shinka.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.591" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2638b6ed-5379-4aec-9c90-3d2c349c02db" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shinka.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b72e1c00-8514-424e-9d56-8161690f2f3f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="825bf4f7-5d97-4507-a4fe-732182692472" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shinka.n 
\entryTyp root 
\gENG drunk 
\gSPN borracho 
\e *shinka.n 
\c N0 
\ach shinca 
\akh shinka 
\acl shinca 
\akl shinka 
\ame shinka 
\mcc *shinka.n / ~_ 3P</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="d63fc89b-62c9-43f5-9efb-1798a550de60" ownerguid="c0bdd8e0-ecb8-4016-9bfd-5373e9538f30"> -<Form> -<AUni ws="qvm-x-ach">chiccha; chicsha</AUni> -<AUni ws="qvm-x-acl">chiccha; chicsha</AUni> -<AUni ws="qvm-x-akh">chikcha; chiksha</AUni> -<AUni ws="qvm-x-akl">chikcha; chiksha</AUni> -<AUni ws="qvm-x-ame">chikcha; chiksha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d6496561-7c95-4c05-82b2-8ef7c66967da" ownerguid="63c69d11-1101-4870-aeb8-43ee364381b0"> -<ExampleWords> -<AUni ws="en">lightning rod</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What do people use to protect themselves from lightning?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d64bf434-ed96-421c-bba2-300182b3dbf9" ownerguid="5537653f-05e8-4263-bac6-9dbcce4dfd5a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d64cf1b2-b017-45b8-abe3-103556f08b4f" ownerguid="b11420cb-ee8d-461a-8f3f-b55fe00a2b5f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">level</AUni> -<AUni ws="es">a.nivel</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9a7ec0c1-5d35-4bf9-aac4-bb5f4c7ce951" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d64efcbf-e299-44a5-b5f2-5390a220f6f2" ownerguid="1088cc2f-83ae-4911-8018-401a745dcfd5"> -<ExampleWords> -<AUni ws="en">nightly, every night, each night</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words are used to indicate that something happens every night?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d651a356-38f3-4951-a5df-b7665b99e55c" ownerguid="457b9098-4e4c-41cf-9a91-c2cf5be1e867"> -<Form> -<AUni ws="qvm-x-ach">gayash</AUni> -<AUni ws="qvm-x-acl">gayash</AUni> -<AUni ws="qvm-x-akh">qayash</AUni> -<AUni ws="qvm-x-akl">qayash</AUni> -<AUni ws="qvm-x-ame">qayash</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="d654a122-4543-4871-aa58-c9dcccb6d9b2" ownerguid="cab6c5b3-599b-46f6-b585-386ffca6c796"> -<Form> -<AUni ws="qvm-x-ach">Perú</AUni> -<AUni ws="qvm-x-acl">Perú</AUni> -<AUni ws="qvm-x-akh">Perú</AUni> -<AUni ws="qvm-x-akl">Perú</AUni> -<AUni ws="qvm-x-ame">Perú</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="d6560153-7766-4790-b466-58be10f3dc20" ownerguid="59a533ee-6a5c-439e-8be5-28a4f5e55172"> -<Form> -<AUni ws="qvm-x-ach">novia</AUni> -<AUni ws="qvm-x-acl">novia</AUni> -<AUni ws="qvm-x-akh">novia</AUni> -<AUni ws="qvm-x-akl">novia</AUni> -<AUni ws="qvm-x-ame">novia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="d65612a6-3cee-4ab9-9590-1ad43b6e360a" ownerguid="c2604a26-003e-4991-9059-b2e1a17e796c"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d658f481-939b-4618-b47d-87d043a2b51c" ownerguid="9cef4229-fa1e-4cbc-92e7-f047d6e696a1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cripple</AUni> -<AUni ws="es">manco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a39484ac-b623-4d7e-9496-d7c97004a00d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d65ffa88-00f1-4361-a889-f8770bf1c9a9" ownerguid="9a9d59f7-defa-49e5-a722-30043de78eab"> -<Form> -<AUni ws="qvm-x-ach">rämapa; rämapä</AUni> -<AUni ws="qvm-x-acl">rämapa; rämapä</AUni> -<AUni ws="qvm-x-akh">rämapa; rämapä</AUni> -<AUni ws="qvm-x-akl">rämapa; rämapä</AUni> -<AUni ws="qvm-x-ame">rämapa; rämapä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d6619043-31cd-48da-9965-952ff5f7f4f4" ownerguid="659ccabf-f978-4852-a1a6-c225f1d76b97"> -<ExampleWords> -<AUni ws="en">weekday(s) (Monday through Friday), workday, workweek</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used for the days when a person works?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d661c6a6-ccb2-46a1-a848-4dcfb42d6969"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gusta</AUni> -<AUni ws="qvm-x-acl">gusta</AUni> -<AUni ws="qvm-x-akh">gusta</AUni> -<AUni ws="qvm-x-akl">gusta</AUni> -<AUni ws="qvm-x-ame">gusta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gustar</AUni> -<AUni ws="qvm-x-acl">+gustar</AUni> -<AUni ws="qvm-x-akh">+gustar</AUni> -<AUni ws="qvm-x-akl">+gustar</AUni> -<AUni ws="qvm-x-ame">+gustar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.892" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bd3f01f7-1fb8-46a1-a743-e89bc047b040" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gustar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bf1b7fe6-7bf0-4bd1-b4ff-52545af034cb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="29d16530-b453-498a-8710-72249df022d5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gustar 
\entryTyp root 
\gENG be.pleasing 
\gSPN gustar 
\e +gustar 
\c V2 
\ach gusta 
\akh gusta 
\acl gusta 
\akl gusta 
\ame gusta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d66246e1-4c51-47ea-bc72-4cffa280aecb" ownerguid="f74f28d1-8742-4c9f-95dc-d08336e91249"> -<ExampleWords> -<AUni ws="en">puberty, childbearing age, become sexually active</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to when a child becomes sexually active?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d6625930-9a70-4aa1-9d3b-14e1fadeca7a" ownerguid="5b5e6818-ede9-4980-bb47-6cb17453f7dc"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="d664b1eb-1815-4314-a4b1-93b251315cae" ownerguid="a41bc2dd-1cae-4c9d-b160-1cef755c581e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="d6653890-8f34-4609-9089-c180d7e0e699" ownerguid="1e94e6a4-6fb3-4ade-9e3b-a34c77921726"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="d6666db3-af56-416a-b89f-5752f6ad2422"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsagu</AUni> -<AUni ws="qvm-x-acl">tsagu; tsago</AUni> -<AUni ws="qvm-x-akh">tsaqu</AUni> -<AUni ws="qvm-x-akl">tsaqu; tsaqo</AUni> -<AUni ws="qvm-x-ame">tsaqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chaqu.v</AUni> -<AUni ws="qvm-x-acl">*chaqu.v</AUni> -<AUni ws="qvm-x-akh">*chaqu.v</AUni> -<AUni ws="qvm-x-akl">*chaqu.v</AUni> -<AUni ws="qvm-x-ame">*chaqu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.303" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="06c3e572-9b9f-4032-b763-1d21703e1c89" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chaqu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="66f50eed-5da9-4c3d-8c23-652259cc6674" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9ed282bc-5c69-4057-8e8a-389b0e6e9c96" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chaqu.v 
\entryTyp root 
\gENG cut.bushes 
\gSPN cortar.arbusto 
\e *chaqu.v 
\c V1 
\ach tsagu 
\akh tsaqu 
\acl tsagu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tsago +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsaqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsaqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsaqu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d66a286d-698f-4879-a57f-6674a9e685a6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">enlaja</AUni> -<AUni ws="qvm-x-acl">enlaja</AUni> -<AUni ws="qvm-x-akh">enlaja</AUni> -<AUni ws="qvm-x-akl">enlaja</AUni> -<AUni ws="qvm-x-ame">enlaja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+enlajar</AUni> -<AUni ws="qvm-x-acl">+enlajar</AUni> -<AUni ws="qvm-x-akh">+enlajar</AUni> -<AUni ws="qvm-x-akl">+enlajar</AUni> -<AUni ws="qvm-x-ame">+enlajar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.467" /> -<DateModified val="2022-10-10 21:19:47.699" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="346330ef-c52e-496b-ab7d-cbf55e7928b1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+enlajar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7c43e663-8320-433f-b3ae-fca7842a9f37" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b44ed97c-28cd-49ce-93e2-186b3706b109" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +enlajar 
\entryTyp root 
\gENG pave 
\gSPN 
\e +enlajar 
\c V1 
\ach enlaja 
\akh enlaja 
\acl enlaja 
\akl enlaja 
\ame enlaja</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="d66affed-bee2-4d41-93e6-ec8f358ca2ec" ownerguid="9750735a-736d-4aeb-afdb-74a893e08b89"> -<Form> -<AUni ws="qvm-x-ach">urcu</AUni> -<AUni ws="qvm-x-acl">urcu; urcu; urco</AUni> -<AUni ws="qvm-x-akh">urku</AUni> -<AUni ws="qvm-x-akl">urku; urku; urko</AUni> -<AUni ws="qvm-x-ame">urku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d66b4ad5-7141-4283-a6f7-f1fd9431f949" ownerguid="97e1aba5-2ac1-44a3-8f18-59b2347a54a1"> -<ExampleWords> -<AUni ws="en">paint, varnish, lacquer, whitewash</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What materials are used to paint a house?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d672da34-1edb-43c4-94f7-d0ca53479019" ownerguid="b2830b72-c642-484f-9485-24682aa11ed8"> -<ExampleWords> -<AUni ws="en">supernatural knowledge, foreknowledge, supernatural insight, ability to interpret dreams</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to supernatural knowledge?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d675741c-26d1-45e4-b541-5943d8e4a482" ownerguid="f0c40d10-00bf-49bb-a9a3-9070edaa4759"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="d675d0d4-f65b-4696-8bb0-3d1865646a0d" ownerguid="e6d92ed9-8276-4ed3-83b3-3a5b0832a826"> -<Form> -<AUni ws="qvm-x-ach">atentu; atento</AUni> -<AUni ws="qvm-x-acl">atentu; atento; atentu</AUni> -<AUni ws="qvm-x-akh">atentu; atento</AUni> -<AUni ws="qvm-x-akl">atentu; atento; atentu</AUni> -<AUni ws="qvm-x-ame">atentu; atento</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="d6762b0d-9a61-4741-ab9b-a8aafed309a8" ownerguid="3e4b180b-3153-498d-859a-9cca21027d26"> -<Form> -<AUni ws="qvm-x-ach">entrena</AUni> -<AUni ws="qvm-x-acl">entrena</AUni> -<AUni ws="qvm-x-akh">entrena</AUni> -<AUni ws="qvm-x-akl">entrena</AUni> -<AUni ws="qvm-x-ame">entrena</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d6767a80-9e95-470a-905f-356a96dbf8d0" ownerguid="626c8435-776f-4da6-97d9-2c85484b6b7a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lust</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b14ec571-568e-4469-aeda-2044bba7da40" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d67771d9-9287-49b9-9662-e1d7d4644abd" ownerguid="ea9c8d4b-29b3-4fe8-a081-86b1c98e644e"> -<Form> -<AUni ws="qvm-x-ach">fabrica</AUni> -<AUni ws="qvm-x-acl">fabrica</AUni> -<AUni ws="qvm-x-akh">fabrica</AUni> -<AUni ws="qvm-x-akl">fabrica</AUni> -<AUni ws="qvm-x-ame">fabrica</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="d67e9dd9-2218-4cf5-b458-0eec71916029" ownerguid="74fbe52e-51af-456b-9c1a-ffc99db626bf"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d6808cf5-6b5c-4f73-b45e-2379ad9895f5" ownerguid="b1688009-474d-4e2e-a137-acc1e32a435f"> -<ExampleWords> -<AUni ws="en">thicken</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making something thick?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d684b91c-95cc-4ace-a36a-574b5d809998"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">afecta</AUni> -<AUni ws="qvm-x-acl">afecta</AUni> -<AUni ws="qvm-x-akh">afecta</AUni> -<AUni ws="qvm-x-akl">afecta</AUni> -<AUni ws="qvm-x-ame">afecta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+afectar</AUni> -<AUni ws="qvm-x-acl">+afectar</AUni> -<AUni ws="qvm-x-akh">+afectar</AUni> -<AUni ws="qvm-x-akl">+afectar</AUni> -<AUni ws="qvm-x-ame">+afectar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.659" /> -<DateModified val="2022-10-10 21:18:47.210" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a92f8505-07c3-4c92-a965-41dcd07d1329" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+afectar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7a463e0d-9c0f-48c8-b9cb-0d8e6ee427fe" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="76a5d03b-1eba-4618-a2d4-34e1c1766c06" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +afectar 
\entryTyp root 
\gENG 
\gSPN 
\e +afectar 
\c V2 
\ach afecta 
\akh afecta 
\acl afecta 
\akl afecta 
\ame afecta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="d6870f03-3de7-4c10-b505-0ae24fcc9705" ownerguid="4d0f1fda-47b6-47cb-850d-00b97a145ce2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="d687c26f-0e03-4445-8ae9-1478003a4c90" ownerguid="c402df97-d8f4-4726-8f99-7c783e837188"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="d688e396-2ba5-45d8-ab00-7ffb0aa1e72c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fayna</AUni> -<AUni ws="qvm-x-acl">fayna</AUni> -<AUni ws="qvm-x-akh">fayna</AUni> -<AUni ws="qvm-x-akl">fayna</AUni> -<AUni ws="qvm-x-ame">fayna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+faenar</AUni> -<AUni ws="qvm-x-acl">+faenar</AUni> -<AUni ws="qvm-x-akh">+faenar</AUni> -<AUni ws="qvm-x-akl">+faenar</AUni> -<AUni ws="qvm-x-ame">+faenar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.528" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7b5e3bee-646a-4d82-a74c-6331f7f2e21c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+faenar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8ea66d70-8498-40ac-adf0-a48a0da76814" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b98108d2-5eb7-48ee-bb64-f64d547ef436" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +faenar 
\entryTyp root 
\gENG to.do.public.work 
\gSPN faenar 
\e +faenar 
\c V1 
\mp +assimilated 
\ach fayna 
\akh fayna 
\acl fayna 
\akl fayna 
\ame fayna 
\i 1KI 9.15 Rey Salomón faynatsiypami arutsergan 
\nd Tayta Diospa
\nd* templunta, quiquinpa palaciunta, patac cananpag Milo pergata y Jerusalén marcapa murällanta.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="d68911f6-6507-483a-b015-44726fdf868a" ownerguid="c82fa28f-7e26-489e-a244-4d69cea87b94"> -<Abbreviation> -<AUni ws="en">6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.344" /> -<DateModified val="2022-9-23 16:55:8.344" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to working.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>42D Work, Toil</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Work</AUni> -</Name> -<Questions> -<objsur guid="1d5ae8aa-a40b-4ebe-b498-99238b9e94c1" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="8be94377-a3cc-4187-a6e2-51523e953503" t="o" /> -<objsur guid="d8366daf-ae1d-4b2c-a447-478c73580639" t="o" /> -<objsur guid="31ccb9e3-d434-4430-ac84-486cc5a1c53d" t="o" /> -<objsur guid="2e9f06f3-c986-43da-a035-e3cc9aef13d4" t="o" /> -<objsur guid="b285bc3b-ba9f-4160-8e79-81dd43dfdbaa" t="o" /> -<objsur guid="67247ab3-7b3a-4035-a0d0-a05c8e615c71" t="o" /> -<objsur guid="97f40359-f4e8-4545-9ba5-980b47487540" t="o" /> -<objsur guid="5d92b4a7-baf7-495e-bb43-4f733cc55935" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="d68b09ee-846d-45ef-b0d7-392425fef18e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chicchacsu</AUni> -<AUni ws="qvm-x-acl">chicchacsu; chicchacsu; chicchacso</AUni> -<AUni ws="qvm-x-akh">chikchaksu</AUni> -<AUni ws="qvm-x-akl">chikchaksu; chikchaksu; chikchakso</AUni> -<AUni ws="qvm-x-ame">chikchaksu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*triktraksu</AUni> -<AUni ws="qvm-x-acl">*triktraksu</AUni> -<AUni ws="qvm-x-akh">*triktraksu</AUni> -<AUni ws="qvm-x-akl">*triktraksu</AUni> -<AUni ws="qvm-x-ame">*triktraksu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.107" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e102cd3d-373a-4a60-9344-1e8ced273e0d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*triktraksu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ea98d011-d801-4aee-84c9-b3d1f8f606cb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d36a4266-ee51-439f-af08-13160b3ee002" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *triktraksu 
\entryTyp root 
\gENG sleet 
\gSPN granizo 
\e *triktraksu 
\c N0 
\ach chicchacsu 
\akh chikchaksu 
\acl chicchacsu / _# 
\acl chicchacsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chicchacso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chikchaksu / _# 
\akl chikchaksu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chikchakso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chikchaksu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="d68c825c-c5fc-4d13-996f-44fd8fd827ba" ownerguid="77f9a83b-8317-4bdd-8578-a21c75214278"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="d68e547d-fd2c-4fa4-b93d-38161ab934c0" ownerguid="5d8ce688-9e5a-4dea-b62e-e59cb0ec3922"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsacarag gueru. Chavinillo dice tsacrarag gueru, con /r/. Pero, dice patsa tsacaycan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="d68fbfd3-9d56-4d8c-93e5-11fb6acd4f65" ownerguid="8f68d85f-70f8-4662-9b4b-1dd2900a002a"> -<ExampleWords> -<AUni ws="en">graze, feed, chew the cud</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) How do mammals eat?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d68ff392-9595-4af1-adc5-e138c7ffd2c7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">plate:ru</AUni> -<AUni ws="qvm-x-acl">plate:ru; plate:ru; plate:ro</AUni> -<AUni ws="qvm-x-akh">plate:ru</AUni> -<AUni ws="qvm-x-akl">plate:ru; plate:ru; plate:ro</AUni> -<AUni ws="qvm-x-ame">plate:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+platero</AUni> -<AUni ws="qvm-x-acl">+platero</AUni> -<AUni ws="qvm-x-akh">+platero</AUni> -<AUni ws="qvm-x-akl">+platero</AUni> -<AUni ws="qvm-x-ame">+platero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.879" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3a713bf4-8be8-4a94-a0d0-8a2523b9dcf4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+platero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2d65fa03-6f0e-4834-94da-fd6e667f380e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ba80ab56-d073-4c97-898e-416362d3cfea" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +platero 
\entryTyp root 
\gENG silversmith 
\gSPN platero 
\e +platero 
\c N0 
\ach plate:ru 
\akh plate:ru 
\acl plate:ru / _# 
\acl plate:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl plate:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl plate:ru / _# 
\akl plate:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl plate:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame plate:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d69107bc-dfd4-49fb-af8f-41fe4e0765a4" ownerguid="8f68d85f-70f8-4662-9b4b-1dd2900a002a"> -<ExampleWords> -<AUni ws="en">swallow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) How do snakes eat?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d6918f9b-be9f-4049-bf76-21a1597e24db" ownerguid="a9c20a59-9f8d-4543-8717-0774299aedc4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1 V2/V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">IN</AUni> -<AUni ws="es">AF</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="382e9c39-4806-4765-a8a2-5ecb5ad0e3bd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="d694458a-a59b-4ed7-a237-68d44f896647" ownerguid="541e8471-d944-4f8d-86d4-176b78b0bdc4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">and</AUni> -<AUni ws="es">y</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cef713b0-c87a-4118-be17-50cd0e304659" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d6991688-cb0e-4ea3-abe7-bc47fd346e66" ownerguid="ba685b9f-4cbe-4c3a-be7a-979fd014c56f"> -<Form> -<AUni ws="qvm-x-ach">pütsa</AUni> -<AUni ws="qvm-x-acl">pütsa</AUni> -<AUni ws="qvm-x-akh">pütsa</AUni> -<AUni ws="qvm-x-akl">pütsa</AUni> -<AUni ws="qvm-x-ame">pütsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d69a1c2f-1e1a-455e-bdf0-3d3a4099719c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">panque:qui; panque:qui</AUni> -<AUni ws="qvm-x-acl">panque:qui; panque:qui; panque:que</AUni> -<AUni ws="qvm-x-akh">panque:qui; panque:qui</AUni> -<AUni ws="qvm-x-akl">panque:qui; panque:qui; panque:que</AUni> -<AUni ws="qvm-x-ame">panque:qui; panque:qui</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+panqueque</AUni> -<AUni ws="qvm-x-acl">+panqueque</AUni> -<AUni ws="qvm-x-akh">+panqueque</AUni> -<AUni ws="qvm-x-akl">+panqueque</AUni> -<AUni ws="qvm-x-ame">+panqueque</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.689" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="170a43c5-7927-471b-922a-7e7f3c3df393" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+panqueque</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d7c13da8-4f46-406c-becb-decd50f0c7fc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f78df27e-8a4c-4be1-8696-ba8a287ce2e4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +panqueque 
\entryTyp root 
\gENG 
\gSPN 
\e +panqueque 
\c N0 
\mp +FinalI 
\ach panque:qui / _# 
\ach panque:qui / ~_# 
\akh panque:qui / _# 
\akh panque:qui / ~_# 
\acl panque:qui / _# 
\acl panque:qui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl panque:que +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl panque:qui / _# 
\akl panque:qui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl panque:que +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame panque:qui / _# 
\ame panque:qui / ~_# 
\i EXO 12.39 Tsaymi jamapashgancho levadüraynag mäsa apashgalanpita panquëquita rurapäcorgan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d69caa77-a8de-4fc5-b76c-34f080dcfc94"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tuyri</AUni> -<AUni ws="qvm-x-acl">tuyri; tuyre</AUni> -<AUni ws="qvm-x-akh">tuyri</AUni> -<AUni ws="qvm-x-akl">tuyri; tuyre</AUni> -<AUni ws="qvm-x-ame">tuyri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tuyri</AUni> -<AUni ws="qvm-x-acl">*tuyri</AUni> -<AUni ws="qvm-x-akh">*tuyri</AUni> -<AUni ws="qvm-x-akl">*tuyri</AUni> -<AUni ws="qvm-x-ame">*tuyri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.27" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aebe3e25-301a-496b-acd5-6f7116bcafba" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tuyri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="182c3e39-7f77-4f98-91c7-0cb1a4cc368a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6789c8b8-7371-4db4-bb0f-2ebd952171da" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tuyri 
\entryTyp root 
\gENG 
\gSPN 
\e *tuyri 
\c V1 
\mp +FinalI 
\ach tuyri 
\akh tuyri 
\acl tuyri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tuyre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tuyri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tuyre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tuyri 
\i Tsaynogpami Amánta y tsurincunata wanurcatsir gueruman tuyritsergan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="d69de8d4-386a-4dae-9c54-2ff558df2117" ownerguid="a3ac2a2f-d5b9-48ae-a3aa-85bdfab73473"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="d604c7da-ac2b-4d9f-876d-5e7049f58747" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">worry</AUni> -<AUni ws="es">preocuparse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7b0aa329-eb59-418d-ace0-c0a5a2874941" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d69e75f2-368c-4d4b-a965-063eb187bd04" ownerguid="7fe69c4c-2603-4949-afca-f39c010ad24e"> -<ExampleWords> -<AUni ws="en">bile, gall (fluid from the liver stored in the gall bladder)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to bile?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d6a05361-eae2-49b4-a24d-bd114303e20f" ownerguid="eb7d0a78-573e-4536-8e86-1193f9b526a1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="d6a1cbb1-5770-4b64-bbf1-5255b7f78b9e" ownerguid="0a75e517-fa73-453b-b77e-dc73f12fb569"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="d6a758c5-e49c-4c9d-ac75-d11e175c44fd" ownerguid="91a24a4f-487c-4657-b2a4-b2f34e8bf101"> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -<Sense> -<objsur guid="b197f38e-d2fb-4e9a-87df-e50eeb6a4b45" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="d6aa7ce3-2aba-4f1d-b7e7-2f960d2a7e4c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">goplu</AUni> -<AUni ws="qvm-x-acl">goplu; goplu; goplo</AUni> -<AUni ws="qvm-x-akh">qoplu</AUni> -<AUni ws="qvm-x-akl">qoplu; qoplu; qoplo</AUni> -<AUni ws="qvm-x-ame">quplu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qupllu.n</AUni> -<AUni ws="qvm-x-acl">*qupllu.n</AUni> -<AUni ws="qvm-x-akh">*qupllu.n</AUni> -<AUni ws="qvm-x-akl">*qupllu.n</AUni> -<AUni ws="qvm-x-ame">*qupllu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.869" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="13daf2bf-e6ac-498e-b499-83776e67026c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qupllu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6a1ab751-e3cc-4f11-ad1b-d8125f904b04" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="98acdf37-9e71-4f7b-92a4-6d759de4cccc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qupllu.n 
\entryTyp root 
\gENG crumb 
\gSPN pedazo.chico 
\e *qupllu.n 
\c N0 
\ach goplu 
\akh qoplu 
\acl goplu / _# 
\acl goplu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl goplo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qoplu / _# 
\akl qoplu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qoplo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame quplu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="d6aac5f6-5b79-45cb-ba68-43c0a238d407" ownerguid="3b78aaca-f43b-47a2-9683-cd2b204e0987"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="d6ab6dcb-962c-4bc2-b22a-079b621045fa" ownerguid="8f59cd3a-6443-4abb-9505-cfcb0682d9f7"> -<Form> -<AUni ws="qvm-x-ach">vinci</AUni> -<AUni ws="qvm-x-acl">vinci; vince</AUni> -<AUni ws="qvm-x-akh">vinci</AUni> -<AUni ws="qvm-x-akl">vinci; vince</AUni> -<AUni ws="qvm-x-ame">vinci</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d6ab90a1-24c7-4fc5-a1ae-92c8f826f2b3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ancala</AUni> -<AUni ws="qvm-x-acl">ancala</AUni> -<AUni ws="qvm-x-akh">ankala</AUni> -<AUni ws="qvm-x-akl">ankala</AUni> -<AUni ws="qvm-x-ame">ankala</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ankalla</AUni> -<AUni ws="qvm-x-acl">*ankalla</AUni> -<AUni ws="qvm-x-akh">*ankalla</AUni> -<AUni ws="qvm-x-akl">*ankalla</AUni> -<AUni ws="qvm-x-ame">*ankalla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.780" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b42be7f7-7ac5-4e80-a218-d9c9fb5d1598" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ankalla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a5aa95aa-738a-45b1-9b07-243dada56361" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3ddfef1a-5831-458c-88bb-75978d6a42e1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ankalla 
\entryTyp root 
\gENG fall/be.on.back 
\gSPN caer/estar.por.espalda 
\e *ankalla 
\c V1 
\ach ancala 
\akh ankala 
\acl ancala 
\akl ankala 
\ame ankala</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d6ae5750-f0ad-41fe-83f6-53f8a03121cc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pacu; paca</AUni> -<AUni ws="qvm-x-acl">pacu; paco; paca</AUni> -<AUni ws="qvm-x-akh">paku; paka</AUni> -<AUni ws="qvm-x-akl">paku; pako; paka</AUni> -<AUni ws="qvm-x-ame">paku; paka</AUni> -</Custom> -<Comment> -<AStr ws="en"> -<Run ws="en">the reason we need INST is because it morphlowers, and BEN2 REF does not</Run> -</AStr> -</Comment> -<DateCreated val="2022-9-23 18:26:20.518" /> -<DateModified val="2022-10-15 16:9:5.655" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="19ad4375-5aab-4047-a750-a3f6cb513d6c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">INSTL1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="89aaf2da-e71b-4b1f-a70d-31fce5e0eaa2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e690c337-275a-4dd2-8448-99bf36b086eb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx INSTL1 
\entryTyp suffix 
\gENG INSTL1 
\gSPN DIF1 
\e INSTL1 
\c V1/V1 V2/V2 
\o 040 
\mp +mlowers PMlowered 
\ach pacu 
\ach paca morphlowered 
\akh paku 
\akh paka morphlowered 
\acl pacu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl paco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl paca morphlowered 
\akl paku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pako +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl paka morphlowered 
\ame paku 
\ame paka morphlowered 
\mcc INSTL1 / [TakeINSTL1] _</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="d6afa699-5b0d-4cf3-819e-6b16a3730ad8" ownerguid="15be9a65-e841-4091-a9d9-c8890e78b3c5"> -<Form> -<AUni ws="qvm-x-ach">diluviu; diluvio</AUni> -<AUni ws="qvm-x-acl">diluviu; diluviu; diluvio</AUni> -<AUni ws="qvm-x-akh">diluviu; diluvio</AUni> -<AUni ws="qvm-x-akl">diluviu; diluviu; diluvio</AUni> -<AUni ws="qvm-x-ame">diluviu; diluvio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="d6b0dfe1-8cb8-465f-bf15-c6dc6ff93d65" ownerguid="bf3a3da9-66df-43ae-aad4-5d1e5176a4fb"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="9e185af2-d65e-4253-bd20-7121b5b43d4a" t="o" /> -<objsur guid="90f5a8a7-ff57-4e6c-83e7-e1dfa368cbe8" t="o" /> -<objsur guid="804acc68-a26d-4398-bbd6-274f3c43686f" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="d6b38863-d29a-4045-ba27-9f8a982928ed" ownerguid="b8d2fdb9-22ea-4040-8abb-aeeff0399f23"> -<ExampleWords> -<AUni ws="en">attempted murder, attempt on someone's life</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to trying to kill someone?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d6b4e906-3493-4744-88fa-837171596ea8" ownerguid="1325df44-76cf-4c95-a918-304f22d502a2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="498b6873-9f2b-4eef-a6e6-6638124d27c1" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">rent</AUni> -<AUni ws="es">fletar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2b679f9a-f190-4923-bc0a-136b4949d162" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="d6b60c16-42dc-40ec-a465-537d0be60d9e" ownerguid="a228d3b1-a6b5-4dd7-9c77-ff4a2df3cf52"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wac</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wac</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wak</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wak</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wak</Run> -</AStr> -</Form> -<Morph> -<objsur guid="9877608f-5900-43c7-b321-63addb34dad5" t="r" /> -</Morph> -<Msa> -<objsur guid="55cec91f-07f2-4291-948a-3f7383c9c918" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="d6bd9f96-9d92-4651-b1e6-b4211c758955"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rgayqui</AUni> -<AUni ws="qvm-x-acl">rgayqui; rgayqui; rgayque</AUni> -<AUni ws="qvm-x-akh">rqayki</AUni> -<AUni ws="qvm-x-akl">rqayki; rqayki; rqayke</AUni> -<AUni ws="qvm-x-ame">rqayki</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.609" /> -<DateModified val="2022-10-16 15:21:15.870" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a09df5ed-2fa9-43b2-b132-389c6f56b96e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">2PST</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="74499479-7102-4eab-9ef7-4d5a1bfa4a8d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="888494ff-655d-4849-aabc-f742e43db0ef" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx 2PST 
\entryTyp suffix 
\gENG 2PST 
\gSPN 2PSD 
\e 2PST 
\c V1/V0 
\o 120 
\mp +foreshortens 
\ach rgayqui 
\akh rqayki 
\acl rgayqui / _# 
\acl rgayqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl rgayque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rqayki / _# 
\akl rqayki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rqayke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame rqayki 
\mp +FinalI</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="d6be796d-e74f-43db-9a12-cc2bd101c1b4" ownerguid="a5543b3c-5e6c-4731-ad29-1d1954a46f1a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/V2 N0/V2 V1/V1 V2/V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">CAUSBE3</AUni> -<AUni ws="es">CAUSER3</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f9bf2f95-2c02-4382-b1c8-ec171a061f5e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d6bf0db2-11ff-432f-bd33-d9ab088be302" ownerguid="b8e633f7-ca67-40cb-84e7-8b42887d161b"> -<ExampleWords> -<AUni ws="en">philosopher, sage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who attempts to define a set of beliefs?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d6c09475-0556-4fd5-be49-aa1ca0d454bd" ownerguid="bf9606ec-9a8e-4822-8bfd-d5eebc58c65b"> -<ExampleWords> -<AUni ws="en">dark, dismal, shadowed, shaded, pitch-dark</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a place where there is no light?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="d6c29733-beeb-4fc9-975f-5e78a8acc273" ownerguid="d8366daf-ae1d-4b2c-a447-478c73580639"> -<Abbreviation> -<AUni ws="en">6.1.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.350" /> -<DateModified val="2022-9-23 16:55:8.350" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to working well.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>75 Adequate, Qualified; 68F Do Intensely or Extensively</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Work well</AUni> -</Name> -<OcmCodes> -<Uni>555 Talent Mobility</Uni> -</OcmCodes> -<Questions> -<objsur guid="9e4ee679-cea5-4aac-b5c8-f69514e048ff" t="o" /> -<objsur guid="dcbd238b-cf06-4e27-a348-315211530182" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="5b3c7b4d-d5bb-488e-8f3f-fe8206fb0e55" t="o" /> -<objsur guid="398ffed0-bfa7-452c-8521-7d37b3082dcf" t="o" /> -<objsur guid="0d935e77-e437-426f-acff-dccfb516ec8c" t="o" /> -<objsur guid="303539ba-7253-4590-b8c4-7751caa52c65" t="o" /> -<objsur guid="80f26fbc-ca89-4789-996d-4c09547f2504" t="o" /> -<objsur guid="5f63805f-1c8e-440a-a13c-222c5d81eb9c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="d6c36bbe-a6b6-4c25-9ea3-e2289212431f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jaga</AUni> -<AUni ws="qvm-x-acl">jaga</AUni> -<AUni ws="qvm-x-akh">jaqa</AUni> -<AUni ws="qvm-x-akl">jaqa</AUni> -<AUni ws="qvm-x-ame">haqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*haqa</AUni> -<AUni ws="qvm-x-acl">*haqa</AUni> -<AUni ws="qvm-x-akh">*haqa</AUni> -<AUni ws="qvm-x-akl">*haqa</AUni> -<AUni ws="qvm-x-ame">*haqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.670" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="50ff0119-8015-4c9e-bce2-0df05b9c3080" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*haqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5db4959f-074b-455e-bc6d-c86ab785a88a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2297c530-50b7-4b44-80fc-1fabc227aff5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *haqa 
\entryTyp root 
\gENG debtor 
\gSPN deudor 
\e *haqa 
\c N0 
\ach jaga 
\akh jaqa 
\acl jaga 
\akl jaqa 
\ame haqa 
\mcc *haqa / ~_ BEC 
\mcc *haqa / ~_ LIM1</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d6c40630-7a3d-4bd5-b954-4db8ef97d4bd" ownerguid="683f570a-0bfe-4a97-b55d-4319b328508b"> -<ExampleWords> -<AUni ws="en">canal, water-way, navigation channel, lock, dock</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used of a system of water transportation?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d6c4dce8-4270-4374-ab49-4ffb962a93f2" ownerguid="d73ede92-ab9a-4110-8b6a-615cc1a33853"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d6c5bf0f-e5a8-415a-9e99-3f2a48dc77e8" ownerguid="57f1ffbf-6812-4906-83f7-4e3cc61ebdb6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.like.pot</AUni> -<AUni ws="es">ser.como.holla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4b5980ff-5ac3-46cc-8cb7-ddda5090cdf8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="d6c9bfa5-c0a4-4ce7-8c5a-6eadfab82104" ownerguid="c1496c4c-e413-4659-87d5-ea6cf3db8209"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d6cd413a-bdd3-45ad-96b8-75932009c0a5" ownerguid="cbc0a8f5-9cba-41d2-a7e5-565fbf09c8c4"> -<ExampleWords> -<AUni ws="en">start laughing, burst out laughing, burst of laughter, dissolve into laughter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to beginning to laugh?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d6ce6b98-ff16-4be0-b3ef-9919e275f39e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">juknasya; juknasya:</AUni> -<AUni ws="qvm-x-acl">juknasya; juknasya:</AUni> -<AUni ws="qvm-x-akh">juknasya; juknasya:</AUni> -<AUni ws="qvm-x-akl">juknasya; juknasya:</AUni> -<AUni ws="qvm-x-ame">huknasya; huknasya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*huknasya:</AUni> -<AUni ws="qvm-x-acl">*huknasya:</AUni> -<AUni ws="qvm-x-akh">*huknasya:</AUni> -<AUni ws="qvm-x-akl">*huknasya:</AUni> -<AUni ws="qvm-x-ame">*huknasya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.751" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8e962832-fc86-43e9-9118-e0b26f14c800" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*huknasya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2aabc847-934a-44fc-a44e-ab680d2fdd28" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="54a8929b-4853-4f2f-839f-50b25f7975f1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *huknasya: 
\entryTyp root 
\gENG 
\gSPN 
\e *huknasya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach juknasya foreshortened 
\ach juknasya: 
\akh juknasya foreshortened 
\akh juknasya: 
\acl juknasya foreshortened 
\acl juknasya: 
\akl juknasya foreshortened 
\akl juknasya: 
\ame huknasya foreshortened 
\ame huknasya: 
\i Tsaymi Caín pasaypa rabyaptin cäranpis jukaqyarqan
\f + 
\fr 4.5 
\ft Wakinkunaqa 
\it juknasyarqan
\it* nipäkun.
\f*.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="d6d804c7-1a2d-492a-bb2a-d2b647eda6e4" ownerguid="dc11b1a0-ea79-4abd-812b-d0e3532d5013"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">noga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">noga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">noqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">noqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nuqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="de5c3d10-074c-49d9-8785-6267d1e823c5" t="r" /> -</Morph> -<Msa> -<objsur guid="e6df1eee-926d-4e16-890a-be63f1161ca0" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="d6dd13d3-4c2e-47d3-9267-2f3a4f79dc7d" ownerguid="4ce22ed0-6fe3-47ae-83e4-e7c7310cb1d4"> -<ExampleWords> -<AUni ws="en">Hinduism, Hindu, New Age, Vishnu, Vedic, guru, reincarnation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to talk about Hinduism?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d6e1f988-e0f3-4b4f-a633-3eeba8017843" ownerguid="37cad029-9bef-45b4-9f98-d9d34c78e295"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">February</AUni> -<AUni ws="es">febrero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="66568c65-f5ba-4be1-a63f-3ee88b301aff" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoInflAffMsa" guid="d6e21f0e-f17e-413e-b186-416974e463f1" ownerguid="f1092161-733a-4873-8885-7df06f52421f"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="fda4c591-1349-4f9e-ab87-905ae2aa25e1" t="r" /> -</Slots> -</rt> -<rt class="LexSense" guid="d6e527cb-63cd-4b1c-8a0b-9eda71cd3ddc" ownerguid="c44fcbde-c71e-44da-aba4-c575abff4057"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.progress</AUni> -<AUni ws="es">progresar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="187d666d-edb6-4f4a-8b6a-3ef3710dc50c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="d6e9a81e-b216-4727-ab25-20bc3d73665b" ownerguid="21adcdce-d6a7-46ac-925e-7202981a1736"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="d6e9e2b5-155f-4e7b-b841-f5589e1b5c89"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rucupu</AUni> -<AUni ws="qvm-x-acl">rucupu; rucupo</AUni> -<AUni ws="qvm-x-akh">rukupu</AUni> -<AUni ws="qvm-x-akl">rukupu; rukupo</AUni> -<AUni ws="qvm-x-ame">rukupu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rukupu</AUni> -<AUni ws="qvm-x-acl">*rukupu</AUni> -<AUni ws="qvm-x-akh">*rukupu</AUni> -<AUni ws="qvm-x-akl">*rukupu</AUni> -<AUni ws="qvm-x-ame">*rukupu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.388" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="38f93e68-365b-467a-b4a0-9cd70ed2b678" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rukupu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="74ba6466-8984-4a7c-a28e-effea5e84ab4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="247c210a-8582-4cd2-93bd-7ca6eb692537" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rukupu 
\entryTyp root 
\gENG dance 
\gSPN bailar 
\e *rukupu 
\c V1 
\ach rucupu 
\akh rukupu 
\acl rucupu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl rucupo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rukupu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rukupo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame rukupu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d6ebf816-af03-4de9-9234-9919b51303af" ownerguid="1da9c4f4-8ae2-47d9-8068-ff65fa3848a9"> -<ExampleWords> -<AUni ws="en">repay, return, restore (to rightful owner)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to repaying a debt?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d6ec7e4e-2ace-4658-8e62-ab7c8e14b52e" ownerguid="cf5c67a8-59c4-4f24-9ffb-85cb04e39d9c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="6a8e9cba-6426-472a-8ba0-a559b686e56b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="d6ef54ce-9dce-43b1-a617-e4e5bbb47286" ownerguid="4d8a2aae-c80c-4007-84b5-5255881a284c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="d6ef8f3b-09d5-45f3-bc52-2529a8accf1c" ownerguid="bea55eef-1d76-4242-99be-668309cb5884"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="b005214a-3da2-4b59-9ad8-b4a7e7f5e6a7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d6f124d3-1d5a-4a1e-aeb2-f62eede2a58d" ownerguid="fa789ec1-b4d9-42cf-9adb-375c52d9ebc4"> -<Form> -<AUni ws="qvm-x-ach">pescador</AUni> -<AUni ws="qvm-x-acl">pescador</AUni> -<AUni ws="qvm-x-akh">pescador</AUni> -<AUni ws="qvm-x-akl">pescador</AUni> -<AUni ws="qvm-x-ame">pescador</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="d6f41b28-db63-4f51-a45f-dfe5f5136de1" ownerguid="593e6a82-63c8-49d4-b54e-8299fea67f83"> -<Form> -<AUni ws="qvm-x-ach">curcu</AUni> -<AUni ws="qvm-x-acl">curcu; curcu; curco</AUni> -<AUni ws="qvm-x-akh">kurku</AUni> -<AUni ws="qvm-x-akl">kurku; kurku; kurko</AUni> -<AUni ws="qvm-x-ame">kurku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="d6f61afd-8d02-4f90-8dfe-94d9a3062ab2" ownerguid="fa243cc0-3b47-4be3-991b-909e90538fba"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="82e9c3df-e95c-44d6-998d-f3779aad6808" t="r" /> -</Morph> -<Msa> -<objsur guid="1b3c6562-1662-468e-b5c0-fcf36256167d" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="d6fad191-1428-450e-98c8-f5523996ed13" ownerguid="ab51c84c-2279-4a97-bee9-8b13c254637d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c702ea8d-b409-4f06-88ab-67f320f0d716" t="o" /> -<objsur guid="aea268ae-4eb3-445a-ba69-96df7a7d249f" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="e090c1bc-03ec-4c35-b095-b6bcaf4090a6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d6fca4a5-a1b9-485b-bd96-61bbbbec0bf1" ownerguid="4db7beac-642c-4eb0-8efa-40b4ce911da5"> -<Form> -<AUni ws="qvm-x-ach">cárcel</AUni> -<AUni ws="qvm-x-acl">cárcel</AUni> -<AUni ws="qvm-x-akh">cárcel; </AUni> -<AUni ws="qvm-x-akl">cárcel</AUni> -<AUni ws="qvm-x-ame">cárcel; </AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d6fd27db-68de-4c22-9bef-1ebe8053648a" ownerguid="225c48dd-9fc2-4467-944f-16a098b4e518"> -<ExampleWords> -<AUni ws="en">rout, thrash, skunk, smash, slaughter, clobber, hammer, lick, trounce</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to defeating someone easily?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d6ff47e6-435b-47a3-ba95-c26a2619fd55"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsegpa</AUni> -<AUni ws="qvm-x-acl">tsegpa</AUni> -<AUni ws="qvm-x-akh">tseqpa</AUni> -<AUni ws="qvm-x-akl">tseqpa</AUni> -<AUni ws="qvm-x-ame">tsiqpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chiqpa</AUni> -<AUni ws="qvm-x-acl">*chiqpa</AUni> -<AUni ws="qvm-x-akh">*chiqpa</AUni> -<AUni ws="qvm-x-akl">*chiqpa</AUni> -<AUni ws="qvm-x-ame">*chiqpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.315" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5adfc74e-5901-4c39-900d-9fabf01cc8bf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chiqpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="12983417-f165-43af-bf17-49971e9614f6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e6a87116-0f78-4d58-8d94-f4b08864644a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chiqpa 
\entryTyp root 
\gENG knee-high.pants 
\gSPN 
\e *chiqpa 
\c N0 
\ach tsegpa 
\akh tseqpa 
\acl tsegpa 
\akl tseqpa 
\ame tsiqpa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="d6ff778d-fd6e-49b9-8881-a5bb6475251b" ownerguid="9554a768-c252-4032-ab95-6d3f4229275f"> -<Form> -<AUni ws="qvm-x-ach">cotencia</AUni> -<AUni ws="qvm-x-acl">cotencia</AUni> -<AUni ws="qvm-x-akh">cotencia</AUni> -<AUni ws="qvm-x-akl">cotencia</AUni> -<AUni ws="qvm-x-ame">cotencia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="d7007555-794e-4746-9288-1e163a2f615e" ownerguid="74261e57-5f50-4201-b7e9-270bc186ffe3"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="d7033906-9e45-4196-8c16-a194d2ed4942" ownerguid="bbfcbaec-e266-4522-80b2-16f41ac25603"> -<Form> -<AUni ws="qvm-x-ach">aguza</AUni> -<AUni ws="qvm-x-acl">aguza</AUni> -<AUni ws="qvm-x-akh">aguza</AUni> -<AUni ws="qvm-x-akl">aguza</AUni> -<AUni ws="qvm-x-ame">aguza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d7042f12-7d43-4ec9-ac0c-9173c2fbb1dc" ownerguid="067a0610-1b9c-404c-9ed3-3ed4e773891a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="4dac5201-dc6a-4ac4-8e9e-3988c537e7e4" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">gain</AUni> -<AUni ws="es">gana</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b155b1db-19d3-4f06-af74-841c9dd46edf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="d708d1b3-2997-41df-96f1-2697a88c432b"> -<Analyses> -<objsur guid="7f1b2fc4-6bac-4581-a920-44c514817783" t="o" /> -</Analyses> -<Checksum val="1717947962" /> -<Form> -<AUni ws="qvm-x-akh">suedranta</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="d70d4430-c39a-4875-89da-0d058d410c7a" ownerguid="6198b228-3ad2-4749-912a-ac147241398f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="d4c51294-891d-4511-a434-45407870ec70" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="d70d7909-280f-4d53-b583-28c7cff5cb70" ownerguid="29f83ace-d0c4-49c3-b753-3866a64e87b4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">draw</AUni> -<AUni ws="es">dibujar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7d189c63-8094-46e9-8e0c-4e74252781a9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d7101189-1549-41cd-8470-05d200204605" ownerguid="2b846476-00cf-4d82-97a1-26e1eda880ca"> -<ExampleWords> -<AUni ws="en">baby</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to an immature person?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="d7121abe-19e7-4aab-9978-d52ed8d50639" ownerguid="f39d9f45-6c4b-4e2f-9e86-6e1766545a1d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="CmSemanticDomain" guid="d7140538-fb99-4af9-8398-8c31a1b79fb5" ownerguid="19d54c2f-ae03-4cbc-9b7e-57292f92fbc1"> -<Abbreviation> -<AUni ws="en">7.2.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.518" /> -<DateModified val="2022-9-23 16:55:8.518" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to preventing someone or something from moving.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>37A Control, Restrain</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Prevent from moving</AUni> -</Name> -<Questions> -<objsur guid="90c3990b-fe11-47bb-8265-b38946315adb" t="o" /> -<objsur guid="79a77da8-4f6c-42ea-b04c-dd4e7f3c42a2" t="o" /> -<objsur guid="864acd3a-8099-4634-8400-6778159572a5" t="o" /> -<objsur guid="b22ea8d8-e929-43d7-ab66-e40feb611b69" t="o" /> -<objsur guid="a729613e-052b-425c-af4d-a7b412095911" t="o" /> -<objsur guid="93799031-cd89-4f79-82e9-08be045e6b9b" t="o" /> -<objsur guid="e9b2f8ac-93d1-4dab-91d4-b7619e7b6d18" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="d714e7b6-6383-4094-9092-b5b607fd6e69" ownerguid="87522279-e6b4-493b-8870-ad78ef9d30f2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">plow</AUni> -<AUni ws="es">arar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6892ebb3-30f2-4f77-a4f8-87fcad35770c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="d71587af-17bc-4550-add9-b2199ada7ef3" ownerguid="8bb975a0-a459-4684-ad1d-60df82586d49"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cultivate</AUni> -<AUni ws="es">cultivar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="02a03330-d3c6-47a2-80d2-58686e5578fb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="d71826d3-83ba-4fd5-ad37-499370411f03"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">achachay</AUni> -<AUni ws="qvm-x-acl">achachay</AUni> -<AUni ws="qvm-x-akh">achachay</AUni> -<AUni ws="qvm-x-akl">achachay</AUni> -<AUni ws="qvm-x-ame">achachay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*achachay</AUni> -<AUni ws="qvm-x-acl">*achachay</AUni> -<AUni ws="qvm-x-akh">*achachay</AUni> -<AUni ws="qvm-x-akl">*achachay</AUni> -<AUni ws="qvm-x-ame">*achachay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.629" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4dbbb352-e452-454a-a9af-b023ed5555ed" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*achachay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3d800574-d4ef-47b8-a1ff-60c90b533455" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="118f16b7-97fb-4529-9bd4-59681124b167" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *achachay 
\entryTyp root 
\gENG yikes! 
\gSPN ay! 
\e *atratray 
\c ONSHEV 
\mp +FinalC 
\ach achachay 
\akh achachay 
\acl achachay 
\akl achachay 
\ame achachay</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d7188b72-3088-4d94-b5cb-2b17dcf54bff" ownerguid="83899b19-8b39-4bf0-b124-4c6188569ec8"> -<ExampleWords> -<AUni ws="en">makes</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate the answer in an equation?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d71996c9-f5bb-4972-91c0-afc35e8ca040" ownerguid="b8df8589-d03c-4e6d-bbeb-4f24fbf6a1dc"> -<ExampleWords> -<AUni ws="en">vertical, upright, up-and-down, plumb, erect, upraised, perpendicular, at right angles, square, standing, true, straight, straight up, bolt upright</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something in a vertical position?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d71a1da3-1b60-4aa4-aa91-53818990ed5d" ownerguid="f3dbb078-6265-4861-a6e3-46cc151c5d72"> -<ExampleWords> -<AUni ws="en">plaintive, whiny</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something someone says when complaining?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d71c3011-e4cf-443a-b2c8-f39662c0370a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quiciu; quicio</AUni> -<AUni ws="qvm-x-acl">quiciu; quiciu; quicio</AUni> -<AUni ws="qvm-x-akh">quiciu; quicio</AUni> -<AUni ws="qvm-x-akl">quiciu; quiciu; quicio</AUni> -<AUni ws="qvm-x-ame">quiciu; quicio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+quicio</AUni> -<AUni ws="qvm-x-acl">+quicio</AUni> -<AUni ws="qvm-x-akh">+quicio</AUni> -<AUni ws="qvm-x-akl">+quicio</AUni> -<AUni ws="qvm-x-ame">+quicio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.831" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5d3a3d66-f245-4558-8152-0eb3a421bc0e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+quicio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="de9d5f3b-a72b-4d99-83c0-97baa9e314b6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2d97b72e-9a0b-4f23-8512-8eb630fcefa2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +quicio 
\entryTyp root 
\gENG frame 
\gSPN quicio 
\e +quicio 
\c N0 
\ach quiciu / ~_# 
\ach quicio / _# 
\akh quiciu / ~_# 
\akh quicio / _# 
\acl quiciu / ~_# 
\acl quiciu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl quicio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl quiciu / ~_# 
\akl quiciu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl quicio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame quiciu / ~_# 
\ame quicio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d71d0e76-5cd5-48cd-b6ce-a1456eb1d24b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">anca</AUni> -<AUni ws="qvm-x-acl">anca</AUni> -<AUni ws="qvm-x-akh">anka</AUni> -<AUni ws="qvm-x-akl">anka</AUni> -<AUni ws="qvm-x-ame">anka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*anka.v</AUni> -<AUni ws="qvm-x-acl">*anka.v</AUni> -<AUni ws="qvm-x-akh">*anka.v</AUni> -<AUni ws="qvm-x-akl">*anka.v</AUni> -<AUni ws="qvm-x-ame">*anka.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.780" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="377d7d68-e119-4097-955b-8dc9406fbce3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*anka.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="77ea1384-9cd4-4224-b704-b9be784f48bb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7f7bac63-3bef-4c44-a598-0ea33e3674c6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *anka.v 
\entryTyp root 
\gENG fry 
\gSPN freir 
\e *anka.v 
\c V2 
\ach anca 
\akh anka 
\acl anca 
\akl anka 
\ame anka 
\mcc *anka.v / ~_ JUST.V SKI</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d71e7e1b-99d2-4bbb-a133-a6c7a5d7bd93" ownerguid="82e4394a-2f58-4356-8d9c-1ad9dbe95293"> -<ExampleWords> -<AUni ws="en">cold, the cold, frosty, wintry, cold spell, cold snap, frigid, bleak</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a time or place that is cold?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d724c60c-ec75-4d47-9415-a36823bfd255" ownerguid="57e30013-110b-4dd7-b837-6d28f81d0ee1"> -<Form> -<AUni ws="qvm-x-ach">consëju</AUni> -<AUni ws="qvm-x-acl">consëju; consëju; consëjo</AUni> -<AUni ws="qvm-x-akh">consëju</AUni> -<AUni ws="qvm-x-akl">consëju; consëju; consëjo</AUni> -<AUni ws="qvm-x-ame">consëju</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="d725a844-541a-48f8-ab79-886e9d8bba53" ownerguid="ce665b46-d6e9-471c-8399-319fc346f025"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="dfa23fa8-eb1d-4e88-a78e-eaea3bf16966" t="r" /> -</Morph> -<Msa> -<objsur guid="af874bf2-8d9e-4b36-ba5f-6fbb3e3f8473" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="d7265649-2ff4-42a2-9a6a-cee722622164" ownerguid="ac6eac01-7c0f-46a0-baef-f7dccd33cc07"> -<Form> -<AUni ws="qvm-x-ach">shatu</AUni> -<AUni ws="qvm-x-acl">shatu; shato</AUni> -<AUni ws="qvm-x-akh">shatu</AUni> -<AUni ws="qvm-x-akl">shatu; shato</AUni> -<AUni ws="qvm-x-ame">shatu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d7286faa-6473-4a57-b661-1e89f467c449" ownerguid="6137239a-b469-46be-b7cb-b9ac22fcc195"> -<ExampleWords> -<AUni ws="en">pupil, student</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who is taught?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d72971a3-484c-431e-a2b9-9f1eba996c20"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuerda</AUni> -<AUni ws="qvm-x-acl">cuerda</AUni> -<AUni ws="qvm-x-akh">cuerda</AUni> -<AUni ws="qvm-x-akl">cuerda</AUni> -<AUni ws="qvm-x-ame">cuerda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuerda</AUni> -<AUni ws="qvm-x-acl">+cuerda</AUni> -<AUni ws="qvm-x-akh">+cuerda</AUni> -<AUni ws="qvm-x-akl">+cuerda</AUni> -<AUni ws="qvm-x-ame">+cuerda</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.244" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eea66709-56bb-4bb3-835c-6e9257b859fa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuerda</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a420f780-a434-40e5-a6a0-bd50aeed0fc5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5a830da2-9156-4792-889c-fe242bd24aff" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuerda 
\entryTyp root 
\gENG wind 
\gSPN cuerda 
\e +cuerda 
\c N0 
\ach cuerda 
\akh cuerda 
\acl cuerda 
\akl cuerda 
\ame cuerda 
\i cuerdayog instrumentu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="d7326976-57e1-43c9-9027-1a20d5fd448f" ownerguid="31b453ae-00c4-453f-8aa3-de4485764ddb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="1cf0a6d6-4da8-41a0-9bea-38908fa4b0d8" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">scrub.potatoe</AUni> -<AUni ws="es">lavar.papa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e54fa2bb-1fc6-4b9c-8c1c-3b34096666a0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="d7349bac-efc0-41ba-ba60-f23d38e97a36" ownerguid="16d2c60a-52d7-4ec5-a5b1-c559dc078bf3"> -<Abbreviation> -<AUni ws="en">4.6.6.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.256" /> -<DateModified val="2022-9-23 16:55:8.256" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to informal justice--punishing someone when you are not in a position of authority, as when a mob catches and kills a criminal.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Informal justice</AUni> -</Name> -<OcmCodes> -<Uni>627 Informal In-group Justice</Uni> -</OcmCodes> -<Questions> -<objsur guid="c419a969-d03b-43aa-8d29-5cd1b465ca29" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="d737317c-6eae-4f8a-82ff-3eb7b5b000b6" ownerguid="1ef4f624-13c2-4b63-b151-4e74f4ec307c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d73b228d-e5fc-4f9e-923d-8b842fd1d581" ownerguid="a03663ca-0c66-4570-be2d-b40105cc4400"> -<ExampleWords> -<AUni ws="en">affirm, affirmation, confirm, concur, agree, agreement</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used to refer to the action of affirming the truth of something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d73ede92-ab9a-4110-8b6a-615cc1a33853"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">weran</AUni> -<AUni ws="qvm-x-acl">weran</AUni> -<AUni ws="qvm-x-akh">weran</AUni> -<AUni ws="qvm-x-akl">weran</AUni> -<AUni ws="qvm-x-ame">wiran</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wiran</AUni> -<AUni ws="qvm-x-acl">*wiran</AUni> -<AUni ws="qvm-x-akh">*wiran</AUni> -<AUni ws="qvm-x-akl">*wiran</AUni> -<AUni ws="qvm-x-ame">*wiran</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.676" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="50aeb8ba-a4a2-4837-81d8-22ee9ff30a80" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wiran</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d6c4dce8-4270-4374-ab49-4ffb962a93f2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="07c7a2d3-fdae-4f12-a914-d3d4e0ae1835" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wiran 
\entryTyp root 
\gENG 
\gSPN 
\e *wiran 
\c N0 
\mcc *wiran / _ JUST2.C 3P.V OBJ 
\mp +FinalC 
\ach weran 
\akh weran 
\acl weran 
\akl weran 
\ame wiran 
\i ZEC 11.16 Tsay mitsikuqqa shumaq mitsinanpa trukanqa wera weranlanta mikurmi shillulantana jitarinqa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="d7412d49-d2b6-498a-a47f-9a3ec14ff51c" ownerguid="eaf69e79-17ff-48c0-97c3-22b972a0e94e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">weave</AUni> -<AUni ws="es">tejer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9bb84783-72a2-4572-a6ca-aeeec15101f6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d743d5a2-3181-46b7-9e63-c0f6ad7c7691" ownerguid="cfdcb880-661d-4357-9edc-a2e0020abc3e"> -<Form> -<AUni ws="qvm-x-ach">libros</AUni> -<AUni ws="qvm-x-acl">libros</AUni> -<AUni ws="qvm-x-akh">libros</AUni> -<AUni ws="qvm-x-akl">libros</AUni> -<AUni ws="qvm-x-ame">libros</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d743fafa-abb2-41e8-ac7c-748db39e07bd" ownerguid="5ea72913-a220-4d8c-aa5a-15eb9dc0d4c5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cactus</AUni> -<AUni ws="es">tuna</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="301a6161-cc8e-4a60-93c5-94f8ca51cdc2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="d7455e4a-a06d-483c-9810-623aba9b634a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chinchi</AUni> -<AUni ws="qvm-x-acl">chinchi; chinchi; chinche</AUni> -<AUni ws="qvm-x-akh">chinchi</AUni> -<AUni ws="qvm-x-akl">chinchi; chinchi; chinche</AUni> -<AUni ws="qvm-x-ame">chinchi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trintri.n</AUni> -<AUni ws="qvm-x-acl">*trintri.n</AUni> -<AUni ws="qvm-x-akh">*trintri.n</AUni> -<AUni ws="qvm-x-akl">*trintri.n</AUni> -<AUni ws="qvm-x-ame">*trintri.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.119" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="52b4ef67-8a02-4fc5-bb0b-f6f7883667bc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trintri.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3f9e53d3-f836-4ee3-8953-24000f6acf9e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="25617a8f-7b8a-49c0-8fa9-fd7e83bb5efb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trintri.n 
\entryTyp root 
\gENG 
\gSPN 
\e *trintri.n 
\c N0 
\mp +FinalI 
\ach chinchi 
\akh chinchi 
\acl chinchi / _# 
\acl chinchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chinche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chinchi / _# 
\akl chinchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chinche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chinchi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d74796ad-cbf0-41b1-9ad5-9cba87f0cb85" ownerguid="3f6dc9af-0c50-44d5-99f0-4aa67c668186"> -<ExampleWords> -<AUni ws="en">refine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to refining oil?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="d74914e7-e329-49d4-8513-ec8d850241e4" ownerguid="5422d4ba-8af4-4767-912e-43b60ef28eab"> -<Abbreviation> -<AUni ws="en">9.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a complete degree--when something is done, happens, is thought, is felt, etc completely and in every way.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Partly</AUni> -</Name> -<Questions> -<objsur guid="f167c89d-f646-4098-8f51-a57bb013aaa1" t="o" /> -<objsur guid="93e6ed4d-6147-44ba-8e25-e4621eba7b90" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="d749f1ab-e8ff-4eea-bb6b-0549a12958c2" ownerguid="90e8d874-2c41-475c-94dd-e1ae6c78812a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="b05c9787-94bb-484c-a7d4-156777a66134" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="d74b741c-0f77-49f1-81b2-2e9f9c18f48c" ownerguid="2b4d3c49-4504-45f8-b165-2b0be2b64398"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">nación</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">nación</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">nación</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">nación</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nación</Run> -</AStr> -</Form> -<Morph> -<objsur guid="154fff07-52a0-4e5d-8c7a-3b1a88d44b84" t="r" /> -</Morph> -<Msa> -<objsur guid="182070a8-884a-46d8-8e14-86d75686fe1f" t="r" /> -</Msa> -<Sense> -<objsur guid="23fcb6ab-bfac-42a7-a643-edf7ca90864e" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="d74c5e55-de67-4192-bd3e-41d243d6604c" ownerguid="b6622d50-6ec5-4748-ba7d-ad36a758ee7c"> -<Form> -<AUni ws="qvm-x-ach">yuca</AUni> -<AUni ws="qvm-x-acl">yuca</AUni> -<AUni ws="qvm-x-akh">yuca</AUni> -<AUni ws="qvm-x-akl">yuca</AUni> -<AUni ws="qvm-x-ame">yuca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="d74e2c89-306d-42b3-8aac-6cc1027947a6" ownerguid="892f4033-1332-4426-9fca-14d126677c5f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -<Sense> -<objsur guid="db6117c5-121c-433a-a891-e69950f55761" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="d74f70b2-d286-473a-8d89-933a142093e9" ownerguid="ba608290-4c3c-4144-8b70-10aa77bc0243"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="25955a98-54ba-42ea-b749-4c31733fcb37" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">purify</AUni> -<AUni ws="es">purificarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="552a3444-6065-4aab-abcc-3f848c339134" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="d752d3b9-53d0-4652-8f74-af8611d3834c" ownerguid="1f7366b1-96fb-4d21-9015-f730037e8a34"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">together</AUni> -<AUni ws="es">juntos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="422f9a53-8138-4bcc-80b2-205748f6c709" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d75693e4-21b6-4d15-8397-add81b3042ed" ownerguid="2c5ce276-75ea-4fcd-9224-0796162d675e"> -<Form> -<AUni ws="qvm-x-ach">alwasir</AUni> -<AUni ws="qvm-x-acl">alwasir</AUni> -<AUni ws="qvm-x-akh">alwasir</AUni> -<AUni ws="qvm-x-akl">alwasir</AUni> -<AUni ws="qvm-x-ame">alwasir</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d756b99f-e275-4bbd-91ab-dc98c9b7c831"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">janac</AUni> -<AUni ws="qvm-x-acl">janac</AUni> -<AUni ws="qvm-x-akh">janak</AUni> -<AUni ws="qvm-x-akl">janak</AUni> -<AUni ws="qvm-x-ame">hanak</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hanak</AUni> -<AUni ws="qvm-x-acl">*hanak</AUni> -<AUni ws="qvm-x-akh">*hanak</AUni> -<AUni ws="qvm-x-akl">*hanak</AUni> -<AUni ws="qvm-x-ame">*hanak</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.660" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7f22c17b-a158-4ee8-95f1-b005ba1ff8e4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hanak</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="10937211-160e-43c8-9133-0b3b6b2fea73" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="db0b0649-d748-4b51-9e8a-03fdf9b156b4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hanak 
\entryTyp root 
\gENG 
\gSPN 
\e *hanak 
\c N0 
\mp +FinalC 
\ach janac 
\akh janak 
\acl janac 
\akl janak 
\ame hanak 
\i Sueñuynëchömi quimsa tacsha balaycunawan janac janac umächo yorag tantacunata püriycätsishcä.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d7593829-9385-46ec-a907-376948c85774" ownerguid="541dfa10-bf97-4713-a534-9cbcc7f66bc9"> -<ExampleWords> -<AUni ws="en">take a position, lean toward, regard</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to taking a position toward a question or issue?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d7595222-ceb3-4cd7-b45c-b3320e555a79" ownerguid="18836c56-2f51-46ba-85b6-479df30fd057"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d75a09a7-09ce-469c-8542-03452701855c" ownerguid="38473463-4b92-4681-8fd0-0aca0342e88a"> -<ExampleWords> -<AUni ws="en">brachiopod, lamp shell</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words refer to brachiopods--animals with two shells and two arms (phylum Brachiopoda)?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d75a9b0f-04b2-4b80-a89a-0272865bf9a7" ownerguid="5cb4d92c-638b-4dbe-8c93-310693768c36"> -<Form> -<AUni ws="qvm-x-ach">shalla</AUni> -<AUni ws="qvm-x-acl">shalla</AUni> -<AUni ws="qvm-x-akh">shalla</AUni> -<AUni ws="qvm-x-akl">shalla</AUni> -<AUni ws="qvm-x-ame">shalla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="d75d6038-0798-45ad-8775-b0f3f41f7a57" ownerguid="cd1d9d5f-5846-45fd-ad21-73bb03f95402"> -<Form> -<AUni ws="qvm-x-ach">tinqui</AUni> -<AUni ws="qvm-x-acl">tinqui; tinqui; tinque</AUni> -<AUni ws="qvm-x-akh">tinki</AUni> -<AUni ws="qvm-x-akl">tinki; tinki; tinke</AUni> -<AUni ws="qvm-x-ame">tinki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="d761a7f0-8bb2-450a-adfd-4759c91ef19e" ownerguid="72791192-a596-4669-ab01-8235a0cc3b43"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">chacwan</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">chacwan</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">chakwan</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">chakwan</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">chakwan</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d0bb470a-296b-4afe-bd0a-5671c955c37a" t="r" /> -</Morph> -<Msa> -<objsur guid="280a78e7-b556-4d01-8c02-63e10b85e34a" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="d76223d6-d12b-472a-b718-a18064b046dc" ownerguid="04752883-aa3e-42a2-bd42-454e9cd99b11"> -<Question> -<AUni ws="en">(10) inferred evidence: the speaker infers the event/action, but does not specify whether the inference is based on observable results or on a purely mental process.</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d7647790-870b-42fa-a17e-005088fbbf7e" ownerguid="d8211484-4d08-4317-915d-61911e1334cb"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d76a72a4-2db3-4efb-9cda-27830327757c" ownerguid="97e1aba5-2ac1-44a3-8f18-59b2347a54a1"> -<ExampleWords> -<AUni ws="en">rafter, pole, center pole, horizontal pole, pillar, roofing, tin sheet, thatch, leaf roof, shingle, brick, iron rod, mud, reed, wattle, paint, board, beam</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What materials are used to make a building?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d76d0838-3519-49cd-9217-68372b606a7a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">landri:jas</AUni> -<AUni ws="qvm-x-acl">landri:jas</AUni> -<AUni ws="qvm-x-akh">landri:jas</AUni> -<AUni ws="qvm-x-akl">landri:jas</AUni> -<AUni ws="qvm-x-ame">landri:jas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lentejas.2</AUni> -<AUni ws="qvm-x-acl">+lentejas.2</AUni> -<AUni ws="qvm-x-akh">+lentejas.2</AUni> -<AUni ws="qvm-x-akl">+lentejas.2</AUni> -<AUni ws="qvm-x-ame">+lentejas.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.740" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fca85b21-5336-4320-9f16-629391b37aaa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lentejas.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="73028f7d-82d3-4e8c-88b0-271e59ee5694" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6f55a078-75ef-4ac7-8ead-9e27bf0d2c87" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lentejas.2 
\entryTyp root 
\gENG lentils 
\gSPN lentejas 
\e +lentejas.2 
\c N0 
\mp +FinalC 
\ach landri:jas 
\akh landri:jas 
\acl landri:jas 
\akl landri:jas 
\ame landri:jas</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="d76d94b0-66c8-4598-b16e-aa9d1928c407" ownerguid="472b38d5-6085-4720-b614-071ff85d56a3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mix</AUni> -<AUni ws="es">mezclar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8ca2498d-e889-4de0-b9f8-8ce6e8b8ec53" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="d7707ab1-ec80-4226-a6a8-9e9333232ac1" ownerguid="10d5870a-afb3-45d9-b12a-c7d1eb907007"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="d7740902-abdb-495f-9ea5-9b0a031144d3" ownerguid="9f486af7-3fe6-4405-850c-5dff8b0542a5"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="44559b2b-48e0-4820-827c-0014c76e1158" t="o" /> -<objsur guid="fc2f7a29-afef-431a-b3f5-d176a58fb929" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="d77430d7-f474-429a-b220-e6d33db59f94" ownerguid="31efa8f1-bc4a-4588-aa31-79c4654cf2dc"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="d779f2b2-c363-4e6e-a859-a9922448bca6" ownerguid="2cb96ed7-f686-4749-b7a5-028396b96019"> -<Form> -<AUni ws="qvm-x-ach">lámpara; lampara</AUni> -<AUni ws="qvm-x-acl">lámpara; lampara</AUni> -<AUni ws="qvm-x-akh">lámpara; lampara</AUni> -<AUni ws="qvm-x-akl">lámpara; lampara</AUni> -<AUni ws="qvm-x-ame">lámpara; lampara</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d77c0ba1-cf8d-4b95-852c-2b58b63677ec" ownerguid="d8366daf-ae1d-4b2c-a447-478c73580639"> -<ExampleWords> -<AUni ws="en">how, however</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What question words ask for the way in which something is done?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d782fbdd-0c3d-4dc9-9221-a52989b95167" ownerguid="099c91ea-b3b2-4e99-8f1e-14ad8b395370"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="5c2e5a51-7b7a-4730-9cf4-aaa16ae58ad5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="d784902f-42ba-4f29-af47-1c305076bb36" ownerguid="94253887-8eb0-4704-946f-98a465c513f7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="d784906b-d6a4-4d5b-99fe-1f380f50da27" ownerguid="59f5c685-49e8-4e49-8c94-d98f301fa758"> -<Form> -<AUni ws="qvm-x-ach">anzuëlu</AUni> -<AUni ws="qvm-x-acl">anzuëlu; anzuëlu; anzuëlo</AUni> -<AUni ws="qvm-x-akh">anzuëlu</AUni> -<AUni ws="qvm-x-akl">anzuëlu; anzuëlu; anzuëlo</AUni> -<AUni ws="qvm-x-ame">anzuëlu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="d7861def-70c1-470f-bca6-8230cbbaa3e9" ownerguid="a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f"> -<Abbreviation> -<AUni ws="en">2.3.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that refer to looking at someone or something--to see something because you want to.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Look</AUni> -</Name> -<Questions> -<objsur guid="573d0569-0866-400d-b8b5-e35c1a33c13b" t="o" /> -<objsur guid="23a693f1-587e-41cd-a895-f02805668193" t="o" /> -<objsur guid="dcc7fc19-4d75-40d4-8a59-0b053cade6af" t="o" /> -<objsur guid="df62c986-022d-4a99-aa93-a833ce24ae4a" t="o" /> -<objsur guid="6e9ba16f-dbca-4421-b672-ab1c60d50685" t="o" /> -<objsur guid="1295b013-d620-40ab-a1e4-b55fcd82868c" t="o" /> -<objsur guid="747c3089-1356-4531-9394-57de67bd1cbb" t="o" /> -<objsur guid="12c6d243-402d-4371-a12b-744e9fb0b6aa" t="o" /> -<objsur guid="95ff5b17-6b93-4db2-af08-868a42987e65" t="o" /> -<objsur guid="a9cb94e6-fa83-471e-9217-9169e48bfbe2" t="o" /> -<objsur guid="4ac15d72-2b7e-4235-aef6-9f3678376437" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="0ce61f27-9de8-49b2-9189-6f6efe488f6d" t="r" /> -<objsur guid="f0e68d2f-f7b3-4722-80a4-8e9c5638b0d4" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="d7876ba0-c87d-41f8-a840-c9ee6daba75c" ownerguid="50ab3705-a81e-4fcc-b3ae-95c075966f69"> -<ExampleWords> -<AUni ws="en">spray, bleed, blow, burst, discharge, drain, gush, issue, jet, pour, pouring, run, spew, spout, dribble, drip, effusion, erupt, exude, ooze, outflow, percolate, seep, spout, squirt, sweat, vomit, tap</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to water coming out of something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d78d2ce1-e00a-4ea8-af12-4562ee37099e" ownerguid="8d47c9ec-80c4-4309-9848-c453dcd71182"> -<ExampleWords> -<AUni ws="en">tissue, cell, membrane, DNA, gene, protoplasm</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What general words refer to the parts of all living things?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d78da944-00a5-4ec2-9436-e566201d2878" ownerguid="b559dbca-c20e-429c-91d0-4ae42e1612a8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fix</AUni> -<AUni ws="es">arreglar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6272ac00-e9a9-462b-b6d3-85a1413daa4d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="d78ebab4-8887-4f8f-93e5-76f7ac4c139d" ownerguid="22f943d1-3a95-4b3b-bf1b-e9fcb94255c3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="d7952fe4-d5fd-4edb-9abc-d08b4a304f0d" ownerguid="d5a03a9e-11be-4a1a-973e-1bd82e25999b"> -<Form> -<AUni ws="qvm-x-ach">copia</AUni> -<AUni ws="qvm-x-acl">copia</AUni> -<AUni ws="qvm-x-akh">copia</AUni> -<AUni ws="qvm-x-akl">copia</AUni> -<AUni ws="qvm-x-ame">copia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="d795e162-f3b6-4420-ac89-fd1a27861600" ownerguid="6ff37bc8-20e8-4616-acb1-795443250355"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">runa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">runa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">runa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">runa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">runa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="dbbd8356-c9df-482b-a128-55aaaa8ad47f" t="r" /> -</Morph> -<Msa> -<objsur guid="735a29e0-40d3-4d25-9e9a-e8181d173c29" t="r" /> -</Msa> -</rt> -<rt class="WfiWordform" guid="d79684c4-bbd0-43ca-804c-c68798e8986d"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">bendicionninta</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="d799c20f-e9bb-40f5-a017-b85fbe93afb0" ownerguid="623df4d1-a346-411c-a149-8eddc54b0b9d"> -<Form> -<AUni ws="qvm-x-ach">soltëra</AUni> -<AUni ws="qvm-x-acl">soltëra</AUni> -<AUni ws="qvm-x-akh">soltëra</AUni> -<AUni ws="qvm-x-akl">soltëra</AUni> -<AUni ws="qvm-x-ame">soltëra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d79e6547-9b93-484d-b7bf-c64c2625a319"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chunas</AUni> -<AUni ws="qvm-x-acl">chunas</AUni> -<AUni ws="qvm-x-akh">chunas</AUni> -<AUni ws="qvm-x-akl">chunas</AUni> -<AUni ws="qvm-x-ame">chunas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trunas</AUni> -<AUni ws="qvm-x-acl">*trunas</AUni> -<AUni ws="qvm-x-akh">*trunas</AUni> -<AUni ws="qvm-x-akl">*trunas</AUni> -<AUni ws="qvm-x-ame">*trunas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.170" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="45582df7-06af-4412-bf37-73245f03a8d0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trunas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c1faafc7-eb8b-44e8-a247-fe0322799722" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="278bc00f-d42a-4e99-8433-5a06acfca7f9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trunas 
\entryTyp root 
\gENG grated.potato 
\gSPN papa.rellada 
\e *trunas 
\c N0 
\mp +FinalC 
\ach chunas 
\akh chunas 
\acl chunas 
\akl chunas 
\ame chunas</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="d79f92af-1ec8-4915-b822-578ac0139a0f" ownerguid="2ed708d3-26f9-4502-9653-b628e93e8506"> -<Form> -<AUni ws="qvm-x-ach">mucyu</AUni> -<AUni ws="qvm-x-acl">mucyu; mucyu; mucyo</AUni> -<AUni ws="qvm-x-akh">mukyu</AUni> -<AUni ws="qvm-x-akl">mukyu; mukyu; mukyo</AUni> -<AUni ws="qvm-x-ame">mukyu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="d7a52586-e3cb-47a4-bb0f-95c98b351afd" ownerguid="bf5352cf-3507-441b-9a6e-9a9ae2d4bf97"> -<Form> -<AUni ws="qvm-x-ach">mika</AUni> -<AUni ws="qvm-x-acl">mica</AUni> -<AUni ws="qvm-x-akh">mika</AUni> -<AUni ws="qvm-x-akl">mika</AUni> -<AUni ws="qvm-x-ame">mika</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<StemName> -<objsur guid="a177c679-0e2b-4632-9f01-6391c5a4a352" t="r" /> -</StemName> -</rt> -<rt class="LexSense" guid="d7a6b395-560c-4a45-ad32-71c48b111599" ownerguid="555ce911-c73f-440b-9d70-144df6b1491e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fly</AUni> -<AUni ws="es">mosca azul</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f00a40ad-57f6-4ebb-9896-c738cf8435d1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="d7a7c02b-d75c-4b00-a9a6-942ee64e8c57"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chaya</AUni> -<AUni ws="qvm-x-acl">chaya</AUni> -<AUni ws="qvm-x-akh">chaya</AUni> -<AUni ws="qvm-x-akl">chaya</AUni> -<AUni ws="qvm-x-ame">chaya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*traya.1</AUni> -<AUni ws="qvm-x-acl">*traya.1</AUni> -<AUni ws="qvm-x-akh">*traya.1</AUni> -<AUni ws="qvm-x-akl">*traya.1</AUni> -<AUni ws="qvm-x-ame">*traya.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.88" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e869925b-126f-494c-b59b-39dc4a0e04ed" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*traya.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a25ee531-622d-4a1e-bef2-feee1c1de264" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="41b6a87e-e270-402d-99ba-80cd8c2558da" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *traya.1 
\entryTyp root 
\gENG arrive 
\gSPN llegar 
\e *traya.1 
\c V2 
\ach chaya 
\akh chaya 
\acl chaya 
\akl chaya 
\ame chaya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d7ac1e55-8c99-4a63-82cd-d7b5f00c4eef" ownerguid="6ffe33fe-b49c-45c8-a50b-cd0065c0c869"> -<ExampleWords> -<AUni ws="en">point, dot, polka dot, spot, pinpoint, speck, mote, jot, iota, fleck, period</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a point?</AUni> -</Question> -</rt> -<rt class="Segment" guid="d7adca64-02e0-4963-9e73-ab438baedad4" ownerguid="346e0eef-6251-4263-895b-0457fc7c3c96"> -<Analyses> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="fa7aeb71-200a-4a5d-9436-13faa1972fea" t="r" /> -<objsur guid="25651c34-3e31-419d-86b5-cda6907f0a4f" t="r" /> -<objsur guid="7a34d709-dd7d-4ac4-94e8-58e444587dd4" t="r" /> -<objsur guid="a85a5670-81ba-47b9-8443-95e8be60ebec" t="r" /> -<objsur guid="bb723df0-2b97-461e-bae3-564d9c1a0cfd" t="r" /> -<objsur guid="4fccec2d-58a4-466f-a087-a79d6bf13b57" t="r" /> -<objsur guid="7d6d4776-71f6-4c31-b03a-97a0bcdd28dc" t="r" /> -<objsur guid="d3da10af-d6fb-4b58-9133-b9d5c3ec090c" t="r" /> -</Analyses> -<BeginOffset val="11" /> -</rt> -<rt class="CmSemanticDomain" guid="d7ae7208-7869-46e3-90c1-676342c3d7af" ownerguid="63b18261-faf3-4ab2-bcb4-7c3ac4d6d6ba"> -<Abbreviation> -<AUni ws="en">6.8.9.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to cheating someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88S Exploit</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Cheat</AUni> -</Name> -<Questions> -<objsur guid="514e35e5-92ed-4a6a-a196-61b9daa85c46" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="d7af271d-e56a-451a-8117-fa238e467fee" ownerguid="b518bbc3-0930-4e22-8f2f-a9e62ae79e89"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d7b16903-0d08-4931-9feb-a4dbcc6ade0a" ownerguid="00364f0c-9a3a-4910-a82e-1ffbc4d4137f"> -<ExampleWords> -<AUni ws="en">thrill, adventure, excitement</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe an exciting experience?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d7b4c528-beff-433a-b5ed-72e1e12d4020" ownerguid="59aa8630-2777-4443-b02c-d6b48271f9e1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">condemn</AUni> -<AUni ws="es">condenar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="18974132-2c3a-4ab0-8e63-945620bb58a9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="d7b55836-da8a-4c73-a1e0-cc442fa90f8f" ownerguid="c6d74413-f956-410a-83a5-2837954e07f9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chorus</AUni> -<AUni ws="es">coro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e3be0ea6-7f1e-4ca0-bd98-91f9e37e08dd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d7b703b2-ece1-4fea-bf74-92b572c8ebaf" ownerguid="3785d9f3-0922-4d79-a0fa-b97c4a26fe17"> -<ExampleWords> -<AUni ws="en">somewhere else, elsewhere</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that a situation happened at a different place as another situation?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d7b74d48-e849-4473-ac00-a9d79616cab4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shacsha</AUni> -<AUni ws="qvm-x-acl">shacsha</AUni> -<AUni ws="qvm-x-akh">shaksha</AUni> -<AUni ws="qvm-x-akl">shaksha</AUni> -<AUni ws="qvm-x-ame">shaksha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shaksha.v</AUni> -<AUni ws="qvm-x-acl">*shaksha.v</AUni> -<AUni ws="qvm-x-akh">*shaksha.v</AUni> -<AUni ws="qvm-x-akl">*shaksha.v</AUni> -<AUni ws="qvm-x-ame">*shaksha.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.529" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ae2144b6-7111-42f2-9eab-8e854af561ee" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shaksha.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d44bc031-da57-4cc3-a939-680bf02bf01a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d8e9d36f-7784-48ce-880f-82919057966a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shaksha.v 
\entryTyp root 
\gENG grown 
\gSPN crecer 
\e *shaksha.v 
\c V1 
\ach shacsha 
\akh shaksha 
\acl shacsha 
\akl shaksha 
\ame shaksha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d7ba3de4-ad9f-4c16-9ec2-156c6befeaf3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">laju</AUni> -<AUni ws="qvm-x-acl">laju; lajo</AUni> -<AUni ws="qvm-x-akh">laju</AUni> -<AUni ws="qvm-x-akl">laju; lajo</AUni> -<AUni ws="qvm-x-ame">lahu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llaju</AUni> -<AUni ws="qvm-x-acl">*llaju</AUni> -<AUni ws="qvm-x-akh">*llaju</AUni> -<AUni ws="qvm-x-akl">*llaju</AUni> -<AUni ws="qvm-x-ame">*llaju</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.124" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="55a1a18f-fd33-46c8-ac22-c9840bbcbb71" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llaju</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9b407431-6405-41ab-9791-a4c69efdc5ed" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e3e3f8de-514a-47b6-a280-234eb2da0d4d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llaju 
\entryTyp root 
\gENG smash 
\gSPN machucar 
\e *llaju.v 
\c V1 
\ach laju 
\akh laju 
\acl laju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lajo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl laju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lajo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lahu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="d7bc4c3f-aae7-4d3f-b390-3b008fc4918c" ownerguid="0b6da2c6-cc71-47ea-bcc2-1deccf6901ef"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="d7bd74b8-6bcb-4323-831e-fcca388223f3" ownerguid="d90e71bf-2898-4501-9d09-c518999f83e2"> -<ExampleWords> -<AUni ws="en">Rocky Mountains, Sierras, Appalachian Mountains</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the names of the mountain ranges in the language area?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d7bef3bc-af80-40d3-8e75-d6c394875772" ownerguid="b09205d4-fbb4-4bcd-94ef-f8d83e298462"> -<ExampleWords> -<AUni ws="en">fast-flowing, white-water (rapids), raging rapids, rough water</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe the flow of a river when it is fast?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d7bf361a-28ec-4092-962c-3c4b97b4090b" ownerguid="e22d860a-d207-4649-8ab5-4592b838febb"> -<ExampleWords> -<AUni ws="en">seal, walrus, sea lion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What species of seals are there?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="d7c06865-5bfa-42ac-adaf-00892ecd3b1c" ownerguid="c1961d6a-7f83-4604-bf88-74f96a187722"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Gen 44.15 ¿Manacu musyapäcushcanqui adivïnu car imatapis musyashgäta?>></Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="d7c13da8-4f46-406c-becb-decd50f0c7fc" ownerguid="d69a1c2f-1e1a-455e-bdf0-3d3a4099719c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d7c5e8fc-35ba-4e4c-bb07-8abf29dccc42" ownerguid="00dde3be-e53d-42c3-b3ff-717e25cbffb6"> -<ExampleWords> -<AUni ws="en">bow your head, kneel, fold your hands</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What actions or postures symbolize prayer?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d7ca4ad0-f0b0-4c32-8b0b-00fb69ab6c48" ownerguid="652dc246-20c6-4aec-bab1-bae6ff4eb4ce"> -<Form> -<AUni ws="qvm-x-ach">sheqi</AUni> -<AUni ws="qvm-x-acl">sheqi; sheqi; sheqe</AUni> -<AUni ws="qvm-x-akh">sheqi</AUni> -<AUni ws="qvm-x-akl">sheqi; sheqi; sheqe</AUni> -<AUni ws="qvm-x-ame">shiqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d7ca7972-220f-4f74-a0dd-cfd436b042b3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">monji; monje</AUni> -<AUni ws="qvm-x-acl">monji; monji; monje</AUni> -<AUni ws="qvm-x-akh">monji; monje</AUni> -<AUni ws="qvm-x-akl">monji; monji; monje</AUni> -<AUni ws="qvm-x-ame">monji; monje</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+monje</AUni> -<AUni ws="qvm-x-acl">+monje</AUni> -<AUni ws="qvm-x-akh">+monje</AUni> -<AUni ws="qvm-x-akl">+monje</AUni> -<AUni ws="qvm-x-ame">+monje</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.467" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="281456c0-3c60-461d-8dba-68bf7474783c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+monje</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8a9f8f94-11c5-4551-98b0-b911a06286ae" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5bcfe98d-cc64-4958-a03c-4a8f99c060e2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +monje 
\entryTyp root 
\gENG 
\gSPN 
\e +monje 
\c N0 
\mp +FinalI 
\ach monji / ~_# 
\ach monje / _# 
\akh monji / ~_# 
\akh monje / _# 
\acl monji / ~_# 
\acl monji +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl monje +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl monji / ~_# 
\akl monji +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl monje +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame monji / ~_# 
\ame monje / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d7ccdba9-f958-4e1e-898c-2ce86fe09f59" ownerguid="d7e4bf3e-e539-43bc-bb43-3ae0980ffb86"> -<ExampleWords> -<AUni ws="en">shut, closed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is shut?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="d7cd6668-9bae-4d42-bca4-f870f4885424" ownerguid="551834a7-bfa0-472c-af5e-5a1ea8a61fe0"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="5b76f273-a20a-4961-92b5-0472392eb23b" t="o" /> -<objsur guid="f011cb8f-002d-48bb-93d6-cd27235f7c7f" t="o" /> -<objsur guid="16a24ba6-e316-40f3-944b-91f6a7bdf3ea" t="o" /> -<objsur guid="790e5033-2eb7-4180-bf70-c8b84fedcd3a" t="o" /> -<objsur guid="96dfc4b5-3a56-4ba9-ab49-83f61c067e7e" t="o" /> -<objsur guid="7f887893-abdb-462a-91bb-79195a7c19ea" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="d7cdc81e-858f-4f27-be59-e12db8307818"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yega; yega:</AUni> -<AUni ws="qvm-x-acl">yega; yega:</AUni> -<AUni ws="qvm-x-akh">yeqa; yeqa:</AUni> -<AUni ws="qvm-x-akl">yeqa; yeqa:</AUni> -<AUni ws="qvm-x-ame">yiqa; yiqa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yaqa:</AUni> -<AUni ws="qvm-x-acl">*yaqa:</AUni> -<AUni ws="qvm-x-akh">*yaqa:</AUni> -<AUni ws="qvm-x-akl">*yaqa:</AUni> -<AUni ws="qvm-x-ame">*yaqa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.749" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="92a8d6cd-4cfd-4cfd-9e26-27325a250073" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yaqa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b3c9c6ea-a441-4d01-be67-abfbe4307aa3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="54f2d7fc-fc6e-42f2-af8c-536f78bc7a64" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yaqa: 
\entryTyp root 
\gENG 
\gSPN desviar 
\e *yaqa: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach yega foreshortened 
\ach yega: 
\akh yeqa foreshortened 
\akh yeqa: 
\acl yega foreshortened 
\acl yega: 
\akl yeqa foreshortened 
\akl yeqa: 
\ame yiqa foreshortened 
\ame yiqa:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d7d0ab6d-4b75-4800-8bc8-77eb50f6bc66"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sepra</AUni> -<AUni ws="qvm-x-acl">sepra</AUni> -<AUni ws="qvm-x-akh">sepra</AUni> -<AUni ws="qvm-x-akl">sepra</AUni> -<AUni ws="qvm-x-ame">sipra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*sipra.v</AUni> -<AUni ws="qvm-x-acl">*sipra.v</AUni> -<AUni ws="qvm-x-akh">*sipra.v</AUni> -<AUni ws="qvm-x-akl">*sipra.v</AUni> -<AUni ws="qvm-x-ame">*sipra.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.701" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4d36dfce-e558-4f9b-88f0-94ae5ccebf9a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*sipra.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3418c7c9-f27e-4dc9-91bf-30c36b2bbddf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="849de1d9-5de1-47b2-809d-5b63790f86a1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *sipra.v 
\entryTyp root 
\gENG peel 
\gSPN pelear 
\e *sipra.v 
\c V1 
\ach sepra 
\akh sepra 
\acl sepra 
\akl sepra 
\ame sipra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d7d39e2b-5ca5-4783-b4f2-f4e315d0ab9c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsuctsu</AUni> -<AUni ws="qvm-x-acl">tsuctsu; tsuctso</AUni> -<AUni ws="qvm-x-akh">tsuktsu</AUni> -<AUni ws="qvm-x-akl">tsuktsu; tsuktso</AUni> -<AUni ws="qvm-x-ame">tsuktsu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chukchu.v</AUni> -<AUni ws="qvm-x-acl">*chukchu.v</AUni> -<AUni ws="qvm-x-akh">*chukchu.v</AUni> -<AUni ws="qvm-x-akl">*chukchu.v</AUni> -<AUni ws="qvm-x-ame">*chukchu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.335" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f84df556-5c49-41bb-a5af-dde889686fba" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chukchu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e0604945-661e-4424-bcc4-dcd5acb454d4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a6ef15fa-0184-44d0-8ba0-cbef74808d57" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chukchu.v 
\entryTyp root 
\gENG to.tremble 
\gSPN temblar 
\e *chukchu.v 
\c V1 
\ach tsuctsu 
\akh tsuktsu 
\acl tsuctsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tsuctso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsuktsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsuktso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsuktsu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="d7d5b49d-fb79-460f-ad77-f5d6fbd5283b" ownerguid="448675cc-a73a-4a52-9228-bd56c7378c89"> -<Form> -<AUni ws="qvm-x-ach">cupchu</AUni> -<AUni ws="qvm-x-acl">cupchu; cupcho</AUni> -<AUni ws="qvm-x-akh">kupchu</AUni> -<AUni ws="qvm-x-akl">kupchu; kupcho</AUni> -<AUni ws="qvm-x-ame">kupchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d7d783c3-090f-43d5-9d5d-18216be9c65b" ownerguid="30ea3057-753d-4c4c-9b1f-ed30e569feea"> -<ExampleWords> -<AUni ws="en">jury bench, witness stand, witness box, judge's bench, lawyers table, bar, dock</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What are the parts of a courtroom?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="d7da5318-dccf-477f-967d-1e3f6a421860" ownerguid="b2bb077a-92c8-4e54-8dfa-c89efd60b82d"> -<Abbreviation> -<AUni ws="en">6.3.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to chickens.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Chicken</AUni> -</Name> -<Questions> -<objsur guid="45a58c8c-c677-4b61-ae5c-0ff94001e441" t="o" /> -<objsur guid="f4907f4c-ef9b-4fde-a2ff-c6b4ebc1334b" t="o" /> -<objsur guid="9dee6129-d521-4050-9c83-7e0f5627fd25" t="o" /> -<objsur guid="adfd807a-e4b8-4e1e-bc5e-698ea83802e3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="d7da9456-eeb3-46ae-b770-5df295192918" ownerguid="8e7a5d46-e122-49f5-a7a9-27320725b014"> -<Form> -<AUni ws="qvm-x-ach">tawi</AUni> -<AUni ws="qvm-x-acl">tawi; tawe</AUni> -<AUni ws="qvm-x-akh">tawi</AUni> -<AUni ws="qvm-x-akl">tawi; tawe</AUni> -<AUni ws="qvm-x-ame">tawi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="d7dd0cad-db63-49e6-b49e-6f22f9a7d7b9" ownerguid="57d85dc6-8fb4-4b0f-a608-610d7ae1fd1c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="d7e0ed88-6d5a-44cc-a0fe-070a5aab3e60" ownerguid="ea46de30-a1a9-4828-84a8-9165f61f8b20"> -<Abbreviation> -<AUni ws="en">6.4.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to fishing with a hook and line.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Fish with hooks</AUni> -</Name> -<Questions> -<objsur guid="09791e96-8c81-4707-883a-7f4dae35afa3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="d7e4142b-ddc2-4378-b5d9-f7a074c3f771" ownerguid="16c29555-f3a7-43e0-9e3b-bda546dd3c8e"> -<Form> -<AUni ws="qvm-x-ach">nawish</AUni> -<AUni ws="qvm-x-acl">nawish</AUni> -<AUni ws="qvm-x-akh">nawish</AUni> -<AUni ws="qvm-x-akl">nawish</AUni> -<AUni ws="qvm-x-ame">nawish</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="d7e4bf3e-e539-43bc-bb43-3ae0980ffb86" ownerguid="8b9f23f4-a147-4ea8-a13a-c5b1edc7f5e4"> -<Abbreviation> -<AUni ws="en">7.3.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to shutting something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Shut, close</AUni> -</Name> -<Questions> -<objsur guid="83201146-1dc3-4114-955e-fc6177a73559" t="o" /> -<objsur guid="d7ccdba9-f958-4e1e-898c-2ce86fe09f59" t="o" /> -<objsur guid="ac028b18-0311-434f-aefb-1cf4d1469ab0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="d7e4e538-039f-47bb-aa42-a2cf455668cc" ownerguid="36a2c83f-f7aa-41b0-9b17-f801f3720e4f"> -<Abbreviation> -<AUni ws="en">6.2.1.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.382" /> -<DateModified val="2022-9-23 16:55:8.382" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to growing wheat.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Growing wheat</AUni> -</Name> -<Questions> -<objsur guid="7f687b12-8404-4ab9-857c-522f12e8cf8f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="d7e5132a-f504-4765-a8f0-59fe78338a66" ownerguid="5c563fa9-c1ca-4d86-9b45-ccae7dea5028"> -<Form> -<AUni ws="qvm-x-ach">pïnu</AUni> -<AUni ws="qvm-x-acl">pïnu; pïnu; pïno</AUni> -<AUni ws="qvm-x-akh">pïnu</AUni> -<AUni ws="qvm-x-akl">pïnu; pïnu; pïno</AUni> -<AUni ws="qvm-x-ame">pïnu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="d7e65030-c437-462c-92d9-39db813a93c0" ownerguid="ea796eb8-9dc0-4db0-9518-722cdfc8dc6e"> -<Form> -<AUni ws="qvm-x-ach">naväja</AUni> -<AUni ws="qvm-x-acl">naväja</AUni> -<AUni ws="qvm-x-akh">naväja</AUni> -<AUni ws="qvm-x-akl">naväja</AUni> -<AUni ws="qvm-x-ame">naväja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d7ea67ee-3659-414d-b0d0-df9b0d1f071a" ownerguid="66e2806d-3e16-4fb2-a158-7f3b4dd5d9af"> -<ExampleWords> -<AUni ws="en">home town</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the place where a person is from?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d7ed759b-e014-4cef-9c65-fe9aebf06cd7" ownerguid="fcc24831-313b-462b-8333-73ca813d4f36"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="ff1f2216-b861-4380-92fd-56df1054a531" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="0ce8c743-2e16-45a9-abce-04c2a684e489" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="d7f01bbd-09ae-4932-a637-221169892209" ownerguid="fbd564c4-4cb4-4360-bf66-baaa725a70fe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">back</AUni> -<AUni ws="es">espalda</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6fc0417c-ad9c-4e98-b79c-b5324e445cad" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="d7f4e734-b9e8-4640-b99d-b90e0f977a0b" ownerguid="fc4b68a0-31cd-4193-9490-0f488f34fcde"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="d7f5c406-6c56-4a61-b81a-2e480b02a079" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<ExampleWords> -<AUni ws="en">steal along, walk stealthily, sneak, pad, stalk, creep</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to walking quietly or secretly?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d7f7a5ed-d093-43ac-91a8-0a3bafc0fb1e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">diezmu; diezmo</AUni> -<AUni ws="qvm-x-acl">diezmu; diezmu; diezmo</AUni> -<AUni ws="qvm-x-akh">diezmu; diezmo</AUni> -<AUni ws="qvm-x-akl">diezmu; diezmu; diezmo</AUni> -<AUni ws="qvm-x-ame">diezmu; diezmo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+diezmo</AUni> -<AUni ws="qvm-x-acl">+diezmo</AUni> -<AUni ws="qvm-x-akh">+diezmo</AUni> -<AUni ws="qvm-x-akl">+diezmo</AUni> -<AUni ws="qvm-x-ame">+diezmo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.406" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7a124e97-f716-4415-b805-22c1d17152eb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+diezmo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="54a29776-6089-4d2e-9b6d-7cbb615345bd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f7288a5e-3137-4dfb-a488-4470c71a6199" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +diezmo 
\entryTyp root 
\gENG tithe 
\gSPN diezmo 
\e +diezmo 
\c N0 
\ach diezmu / ~_# 
\ach diezmo / _# 
\akh diezmu / ~_# 
\akh diezmo / _# 
\acl diezmu / ~_# 
\acl diezmu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl diezmo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl diezmu / ~_# 
\akl diezmu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl diezmo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame diezmu / ~_# 
\ame diezmo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d7fe403b-7c29-44e4-a79b-da8fef4a387e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wintu</AUni> -<AUni ws="qvm-x-acl">wintu; winto</AUni> -<AUni ws="qvm-x-akh">wintu</AUni> -<AUni ws="qvm-x-akl">wintu; winto</AUni> -<AUni ws="qvm-x-ame">wintu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wintu</AUni> -<AUni ws="qvm-x-acl">*wintu</AUni> -<AUni ws="qvm-x-akh">*wintu</AUni> -<AUni ws="qvm-x-akl">*wintu</AUni> -<AUni ws="qvm-x-ame">*wintu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.658" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7ba45dcc-dad3-4803-94fc-75a92efa28f8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wintu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ddf8ac43-5725-4fec-a456-92f8d1873862" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="65c06f15-a334-41d8-8a22-cf849d181513" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wintu 
\entryTyp root 
\gENG carry 
\gSPN llevar 
\e *wintu 
\c V1 
\ach wintu 
\akh wintu 
\acl wintu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl winto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wintu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl winto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wintu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="d80115be-59d1-4ffb-8a5d-4289e3966442" ownerguid="60fb6b73-00c7-4adf-817c-7e61783b3a66"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ta</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ta</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ta</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ta</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ta</Run> -</AStr> -</Form> -<Morph> -<objsur guid="4f3f1430-f126-405a-98a8-5d0b732eb948" t="r" /> -</Morph> -<Msa> -<objsur guid="eac932ef-fd79-454b-b2f7-95e85dbb829a" t="r" /> -</Msa> -<Sense> -<objsur guid="043eec5a-5d9b-4292-877e-68d1d35e7f30" t="r" /> -</Sense> -</rt> -<rt class="WfiMorphBundle" guid="d801d29a-d8f6-427f-8518-af8cdaba7aeb" ownerguid="c6e181fc-c268-4a86-8822-306d3b9e34f6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">g</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">g</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">q</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">q</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">q</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2077e726-cf37-4913-b54c-2d034d4883b4" t="r" /> -</Morph> -<Msa> -<objsur guid="cc4f521e-5e38-4217-aa16-46da99d423ec" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="d80360f9-7319-40a7-a2bc-fd8718711ba4" ownerguid="1f4efae7-1029-4b66-80ee-802459a7baf5"> -<Abbreviation> -<AUni ws="en">8.4.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.640" /> -<DateModified val="2022-9-23 16:55:8.640" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to one event happening before another.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15O Come/Go Prior To</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Before</AUni> -</Name> -<Questions> -<objsur guid="ce42fe15-c396-499a-820e-d46412203dc1" t="o" /> -<objsur guid="83ca0932-8dc6-4e78-8d7c-d95e608cd091" t="o" /> -<objsur guid="7acaaffb-2ba3-4f2e-9b82-567459674b03" t="o" /> -<objsur guid="181b40d7-648b-4099-a472-142bd4d84753" t="o" /> -<objsur guid="f4d3192e-4a60-4c6d-83f7-29630ebc07b7" t="o" /> -<objsur guid="4cd4ca14-feaf-409c-8843-99843a62b266" t="o" /> -<objsur guid="11a1d285-620e-445e-80f3-385f308ab194" t="o" /> -<objsur guid="fcbd2646-0044-44fc-a641-5ffdf68d7b17" t="o" /> -<objsur guid="da113b4f-f826-4f47-ad44-3a47244dbfc1" t="o" /> -<objsur guid="03cb59ff-bc1e-4d76-b746-bbafc9f61c4c" t="o" /> -<objsur guid="314bb7f6-079f-49aa-ac78-4e3130fe7c77" t="o" /> -<objsur guid="be35ba78-2ef2-4209-85b9-85b3fa62569d" t="o" /> -<objsur guid="778e8c74-a72b-4888-82b4-82d5d6b41d85" t="o" /> -<objsur guid="f592681b-7e0f-45c7-b4a3-93c86d75c380" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="bdaecf2f-d0fa-49f7-891e-bcb0a31ae630" t="o" /> -<objsur guid="9f8b8c01-f790-469f-bc37-dece6227e276" t="o" /> -<objsur guid="69d039e6-f669-4d54-8b67-89b19ff0a19c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="d8070d34-09ce-43d5-bd3a-dc1b52086ddd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">poesía</AUni> -<AUni ws="qvm-x-acl">poesía</AUni> -<AUni ws="qvm-x-akh">poesía</AUni> -<AUni ws="qvm-x-akl">poesía</AUni> -<AUni ws="qvm-x-ame">poesía</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+poesía</AUni> -<AUni ws="qvm-x-acl">+poesía</AUni> -<AUni ws="qvm-x-akh">+poesía</AUni> -<AUni ws="qvm-x-akl">+poesía</AUni> -<AUni ws="qvm-x-ame">+poesía</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.891" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2452a189-8b55-4ea6-b602-7a9d0cfa0ca0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+poesía</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="08b80c21-f68d-4e50-ac96-f34e47fb48a9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="17b5b77a-87b2-4244-8f01-2a966bf6913a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +poesía 
\entryTyp root 
\gENG poetry 
\gSPN poesía 
\e +poesía 
\c N0 
\mp NeverChanged 
\ach poesía 
\akh poesía 
\acl poesía 
\akl poesía 
\ame poesía 
\i Num 21.27 Tsaypitami poesiata recitagcunapis caynog nin:</Run> -</AStr> -</Custom> -</rt> -<rt class="StStyle" guid="d80764cc-4d86-4e14-b217-d1b0a4dc3379" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="14" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Dictionary-Vernacular</Uni> -</Name> -<Rules> -<Prop italic="invert"></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<Usage> -<AUni ws="en">Used for items in the entry that contain vernacular text.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="MoStemAllomorph" guid="d807beb4-ac39-4565-bafb-e82801003479" ownerguid="31084b3e-4348-489e-ba40-6f8847ef46c5"> -<Form> -<AUni ws="qvm-x-ach">shucuy</AUni> -<AUni ws="qvm-x-acl">shucuy</AUni> -<AUni ws="qvm-x-akh">shukuy</AUni> -<AUni ws="qvm-x-akl">shukuy</AUni> -<AUni ws="qvm-x-ame">shukuy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d808e4e8-4991-47f5-8539-3492ae82eaef" ownerguid="8b9f23f4-a147-4ea8-a13a-c5b1edc7f5e4"> -<ExampleWords> -<AUni ws="en">open, ajar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is open?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="d80a4c94-ad6c-4ebb-a1dd-af0dd338a5fc"> -<Form> -<Str> -<Run ws="qvm-x-akh">):</Run> -</Str> -</Form> -</rt> -<rt class="LexSense" guid="d80ae4c7-67e5-4fee-a04f-36f02ef4af07" ownerguid="eb57d1a6-d1d0-46bd-9fa3-bc8859d668e9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="85963a22-3941-46ed-a876-7c6979e11576" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d80d3fee-4043-4a77-883f-9dc2c25958f0" ownerguid="68a0cab6-a726-4cb8-9fcd-bdfdc2b010ff"> -<Form> -<AUni ws="qvm-x-ach">manshu</AUni> -<AUni ws="qvm-x-acl">manshu; manshu; mansho</AUni> -<AUni ws="qvm-x-akh">manshu</AUni> -<AUni ws="qvm-x-akl">manshu; manshu; mansho</AUni> -<AUni ws="qvm-x-ame">manshu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="d80eed43-f599-44bf-8256-1cda94aac2ee"> -<Analyses> -<objsur guid="2d0f45f3-2471-4d69-9429-76c51a12e2a8" t="o" /> -</Analyses> -<Checksum val="-239971007" /> -<Form> -<AUni ws="qvm-x-akh">rikakamuptiki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="d80f6a75-f4f8-434a-828d-717e5419db37" ownerguid="1debc71f-e27c-4fe7-bb7b-b308608c09d9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="d80fccdc-cdc5-4f13-add3-00dfb865a042"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">numbral</AUni> -<AUni ws="qvm-x-acl">numbral</AUni> -<AUni ws="qvm-x-akh">numbral</AUni> -<AUni ws="qvm-x-akl">numbral</AUni> -<AUni ws="qvm-x-ame">numbral</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+umbral</AUni> -<AUni ws="qvm-x-acl">+umbral</AUni> -<AUni ws="qvm-x-akh">+umbral</AUni> -<AUni ws="qvm-x-akl">+umbral</AUni> -<AUni ws="qvm-x-ame">+umbral</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.220" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f5e747eb-6944-4c70-adea-f5dda7645824" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+umbral</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5fb33633-9a56-4fb7-b04a-73b99dc0496b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7c8f93d8-9420-4893-88b2-f5096b8e7ad6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +umbral 
\entryTyp root 
\gENG 
\gSPN 
\e +umbral 
\c N0 
\mp +FinalC 
\ach numbral 
\akh numbral 
\acl numbral 
\akl numbral 
\ame numbral</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="d817caf8-4b20-4f3c-90d3-03fca96655d6" ownerguid="8b6ddb1f-0335-4f1a-bd7a-3a505a1a6a7c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bull</AUni> -<AUni ws="es">toro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3635f85e-cda9-4e17-a148-a437b072cea2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d81900f1-5678-41ee-ad5d-051b105d22dd" ownerguid="cca44b46-437c-42ee-93d7-a8820d61d0c8"> -<ExampleWords> -<AUni ws="en">defense attorney, counsel for the defense</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What is a lawyer called who defends the accused person?</AUni> -</Question> -</rt> -<rt class="Segment" guid="d819c07f-2c74-43f6-96c8-5b00bee18afd" ownerguid="63ad3139-0285-4f68-850d-ff478279f673"> -<Analyses> -<objsur guid="f6f4f01e-d87f-419d-942a-37cdbbb0b92a" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="CmDomainQ" guid="d81a31a1-2318-4746-8024-791a1e020f71" ownerguid="b8d2fdb9-22ea-4040-8abb-aeeff0399f23"> -<ExampleWords> -<AUni ws="en">risk your life</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What words refer to doing something that might result in your death?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d81b6655-eda2-4945-a6f4-965104769770"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">amala:</AUni> -<AUni ws="qvm-x-acl">amala:</AUni> -<AUni ws="qvm-x-akh">amala:</AUni> -<AUni ws="qvm-x-akl">amala:</AUni> -<AUni ws="qvm-x-ame">amala:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*amalla:</AUni> -<AUni ws="qvm-x-acl">*amalla:</AUni> -<AUni ws="qvm-x-akh">*amalla:</AUni> -<AUni ws="qvm-x-akl">*amalla:</AUni> -<AUni ws="qvm-x-ame">*amalla:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.747" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8df2ff73-1da1-48ea-ab95-2b772a932821" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*amalla:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="335a98a3-c342-422e-9ca4-75d31f326324" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3d16309a-47af-4bc5-b7e7-99782d966ad0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *amalla: 
\entryTyp root 
\gENG wish 
\gSPN deseo 
\e *amalla: 
\c NOSUFF 
\mp +FinalLength 
\ach amala: 
\akh amala: 
\acl amala: 
\akl amala: 
\ame amala:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d81cc1e0-0f36-4c6d-9940-15199788ef31" ownerguid="b4fe4698-54a2-4bcd-9490-e07ee1ee97af"> -<ExampleWords> -<AUni ws="en">tear, teardrop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to a tear?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d82084f4-e63e-4c0b-bfd9-4a4d6cf04329" ownerguid="0ca05184-08b9-4dc7-a4c7-ff762380b111"> -<ExampleWords> -<AUni ws="en">pay, payment, remunerate, remuneration</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to paying money for something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d8211484-4d08-4317-915d-61911e1334cb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">convenci</AUni> -<AUni ws="qvm-x-acl">convenci; convence</AUni> -<AUni ws="qvm-x-akh">convenci</AUni> -<AUni ws="qvm-x-akl">convenci; convence</AUni> -<AUni ws="qvm-x-ame">convenci</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+convencer</AUni> -<AUni ws="qvm-x-acl">+convencer</AUni> -<AUni ws="qvm-x-akh">+convencer</AUni> -<AUni ws="qvm-x-akl">+convencer</AUni> -<AUni ws="qvm-x-ame">+convencer</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.182" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fdbe40d3-1192-4068-9cd3-7c39e57d5ec5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+convencer</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d7647790-870b-42fa-a17e-005088fbbf7e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d2379fe0-fa72-42e6-ab52-ecdd06f352a7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +convencer 
\entryTyp root 
\gENG 
\gSPN 
\e +convencer 
\c V2 
\mp +FinalI 
\ach convenci 
\akh convenci 
\acl convenci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl convence +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl convenci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl convence +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame convenci 
\i PRO 25.15 Shacya shacyala parlagcunaga contrantapis convenciratsinmi.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="d821e11e-934c-442b-a663-01b49f64e548" ownerguid="7613c931-7378-47de-a1f0-8a7b40a0bac6"> -<Form> -<AUni ws="qvm-x-ach">fïla</AUni> -<AUni ws="qvm-x-acl">fïla</AUni> -<AUni ws="qvm-x-akh">fïla</AUni> -<AUni ws="qvm-x-akl">fïla</AUni> -<AUni ws="qvm-x-ame">fïla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="d8234bfc-9f87-41ed-8c78-92a562643369" ownerguid="98e38521-8531-427b-b04e-65db6679710e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d82504b2-6c34-4f2d-ac79-4113ad39d9f8" ownerguid="d85d0838-a9e4-4787-8fce-7d0466bc24b9"> -<ExampleWords> -<AUni ws="en">two-time, three-time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that has happened a particular number of times?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d8283e1f-1d92-45cf-a874-29f42d8b9896" ownerguid="191c6030-6e33-4380-9a14-aa0ad4db4643"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="aa9771e8-28e3-4325-a656-e3c67beea6be" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d8284e5f-f544-4ef9-b3b3-cd1b2b8af4f3" ownerguid="2855cda6-a031-46aa-bf3f-718d94374d46"> -<ExampleWords> -<AUni ws="en">protest (n), objection, remonstrance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something someone protests about?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d82d5b71-1dfe-4512-b7de-bc7bedb77434" ownerguid="43b31821-3238-491f-aa7c-651e534d9c47"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="d83402b0-6631-4925-9300-54aa3b751e9b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lula</AUni> -<AUni ws="qvm-x-acl">lula</AUni> -<AUni ws="qvm-x-akh">lula</AUni> -<AUni ws="qvm-x-akl">lula</AUni> -<AUni ws="qvm-x-ame">lula</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llulla.n</AUni> -<AUni ws="qvm-x-acl">*llulla.n</AUni> -<AUni ws="qvm-x-akh">*llulla.n</AUni> -<AUni ws="qvm-x-akl">*llulla.n</AUni> -<AUni ws="qvm-x-ame">*llulla.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.225" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bc389b96-274f-448e-9825-09929a97231a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llulla.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d19ad677-80b0-4721-9cdc-df90ece96a4a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f66dee68-b1da-4601-be57-85edccdf8e5b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llulla.n 
\entryTyp root 
\gENG 
\gSPN mentiroso 
\e *llulla.n 
\c N0 
\ach lula 
\akh lula 
\acl lula 
\akl lula 
\ame lula 
\mcc *llulla.n / ~_ ADV2</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="d8366daf-ae1d-4b2c-a447-478c73580639" ownerguid="d68911f6-6507-483a-b015-44726fdf868a"> -<Abbreviation> -<AUni ws="en">6.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.346" /> -<DateModified val="2022-9-23 16:55:8.346" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the method of doing something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Method</AUni> -</Name> -<OcmCodes> -<Uni>120 Research Methods; Methodology</Uni> -</OcmCodes> -<Questions> -<objsur guid="a808d11d-0e55-4026-a1e3-c3fa141d6df5" t="o" /> -<objsur guid="d77c0ba1-cf8d-4b95-852c-2b58b63677ec" t="o" /> -<objsur guid="cb131c90-8497-445f-8170-287e0301612f" t="o" /> -<objsur guid="3cd9b95d-4b55-464b-aa96-c5d8517f6e8e" t="o" /> -<objsur guid="f735995e-26b3-418e-9721-85afd86cccaf" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="3393b3b2-b324-408d-9c59-057a0de9c3bd" t="o" /> -<objsur guid="64493789-1c2c-4b24-a7e6-f00ff9be923e" t="o" /> -<objsur guid="d6c29733-beeb-4fc9-975f-5e78a8acc273" t="o" /> -<objsur guid="b760a3a7-ea7f-4a4b-a4b5-81752f2ca158" t="o" /> -<objsur guid="53ba3b61-4f4e-4749-8a7f-0d2b327a113d" t="o" /> -<objsur guid="889de305-82ad-4d1a-9a97-63733ed27bfc" t="o" /> -<objsur guid="6eb2ef50-7e6b-41b8-a82e-6eb307c908ca" t="o" /> -<objsur guid="6dd16e6e-fbdb-4df1-9730-4877651e68f3" t="o" /> -<objsur guid="a7568031-43e3-4cf9-b162-ac2fe74125f1" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="d8374966-089c-480b-8915-033787b1d8d6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pargash</AUni> -<AUni ws="qvm-x-acl">pargash</AUni> -<AUni ws="qvm-x-akh">parqash</AUni> -<AUni ws="qvm-x-akl">parqash</AUni> -<AUni ws="qvm-x-ame">parqash</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*parqash</AUni> -<AUni ws="qvm-x-acl">*parqash</AUni> -<AUni ws="qvm-x-akh">*parqash</AUni> -<AUni ws="qvm-x-akl">*parqash</AUni> -<AUni ws="qvm-x-ame">*parqash</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.727" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1b9638a9-7d74-48e9-8ec4-74fd66f07d9b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*parqash</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f9f25ad7-61d0-465f-b17b-063daa9b3478" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cc9c876b-2094-4af2-8991-198eb7230c84" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *parqash 
\entryTyp root 
\gENG spread 
\gSPN ancho 
\e *parqash 
\c N0 
\mp +FinalC 
\ach pargash 
\akh parqash 
\acl pargash 
\akl parqash 
\ame parqash</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="d8389a63-8b39-4e23-8528-cd756dae2f5c" ownerguid="adde4a66-9040-47a9-91ab-327934a2e97e"> -<Abbreviation> -<AUni ws="en">6.6.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.468" /> -<DateModified val="2022-9-23 16:55:8.468" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to paper.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Working with paper</AUni> -</Name> -<OcmCodes> -<Uni>289 Paper Industry</Uni> -</OcmCodes> -<Questions> -<objsur guid="4763b01e-e104-498b-aff1-b7a47d66567f" t="o" /> -<objsur guid="38ceef18-e1b8-48b0-8c9c-d610e67061d0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="d839f4ef-784f-4f94-bd37-31039eb5e3fe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maldisi</AUni> -<AUni ws="qvm-x-acl">maldisi; maldise</AUni> -<AUni ws="qvm-x-akh">maldisi</AUni> -<AUni ws="qvm-x-akl">maldisi; maldise</AUni> -<AUni ws="qvm-x-ame">maldisi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+maldecir.1</AUni> -<AUni ws="qvm-x-acl">+maldecir.1</AUni> -<AUni ws="qvm-x-akh">+maldecir.1</AUni> -<AUni ws="qvm-x-akl">+maldecir.1</AUni> -<AUni ws="qvm-x-ame">+maldecir.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.275" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="578d985a-8c5a-41b3-8d4a-0465e57b145a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+maldecir.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="12d13dd6-a862-41d5-81a3-9e19dfdd2a08" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="beb120fa-f3a7-4162-9121-2263a82b92b6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +maldecir.1 
\entryTyp root 
\gENG 
\gSPN 
\e +maldecir.1 
\c V2 
\mp +FinalI 
\ach maldisi 
\akh maldisi 
\acl maldisi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl maldise +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl maldisi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl maldise +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame maldisi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d83a1fec-6b16-4327-ab5d-328aa4f6a678"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quicha</AUni> -<AUni ws="qvm-x-acl">quicha</AUni> -<AUni ws="qvm-x-akh">kicha</AUni> -<AUni ws="qvm-x-akl">kicha</AUni> -<AUni ws="qvm-x-ame">kicha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kitra</AUni> -<AUni ws="qvm-x-acl">*kitra</AUni> -<AUni ws="qvm-x-akh">*kitra</AUni> -<AUni ws="qvm-x-akl">*kitra</AUni> -<AUni ws="qvm-x-ame">*kitra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.993" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0ea58439-6086-4aa3-b751-c0aedd15097b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kitra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2762fb71-b8ac-48e9-9929-98ebbd9d11de" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="08d22e7b-4b1a-4719-ba1e-1877554dc01a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kitra 
\entryTyp root 
\gENG open 
\gSPN abrir 
\e *kitra 
\c V2 
\ach quicha 
\akh kicha 
\acl quicha 
\akl kicha 
\ame kicha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d83a9587-16c0-4244-a4e2-5333517cdbab" ownerguid="944cf5af-469e-4b03-878f-a05d34b0d9f6"> -<ExampleWords> -<AUni ws="en">animal, fauna, creature, critter, organism, wildlife</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to all animals?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d83b70ea-1ceb-412e-a01d-4faad5d77ea0" ownerguid="b6ead5e6-dab5-4941-9017-d03452182709"> -<ExampleWords> -<AUni ws="en">student, apprentice, trainee, novice, jack-of-all-trades, greenhorn, beginner, new recruit, plebe, freshman</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words are used to refer to someone who is not an expert?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="d83ebe2c-c1d6-49ec-a4a9-1cdced843387" ownerguid="a894d991-d5da-45a6-9c62-009133257f36"> -<Abbreviation> -<AUni ws="en">2.5.6.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.47" /> -<DateModified val="2022-9-23 16:55:8.47" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to losing consciousness, including fainting, being knocked out, and anesthesia.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Lose consciousness</AUni> -</Name> -<Questions> -<objsur guid="d216a2e9-775a-4c3b-9a29-22b91ff11797" t="o" /> -<objsur guid="733b0373-fa8a-4501-8b07-1264c77566ac" t="o" /> -<objsur guid="08c6d1a9-4578-49d5-a7b9-2ba7a1baebbc" t="o" /> -<objsur guid="d84b2049-53dc-4feb-98e5-f6f520c2e48c" t="o" /> -<objsur guid="5ce69ce9-e37b-4465-960b-da3ee4a3e3d6" t="o" /> -<objsur guid="9692d73a-10c5-43af-8938-641e4f7a6529" t="o" /> -<objsur guid="c328e2c1-1fc5-41bd-9c48-d7f93153c4a1" t="o" /> -<objsur guid="6ee52c83-113f-4fd0-987a-37f41dfdef64" t="o" /> -<objsur guid="e3401ca4-5d23-45a4-9a48-534abbc5d46b" t="o" /> -<objsur guid="f76d990f-6d91-4342-8e57-fa966b41118d" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="5c091d8d-5bc4-40c3-8a30-2a08fb0794b8" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="d84032c0-de38-4cfb-acae-585b3f46c4e1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jagaya; jagaya:</AUni> -<AUni ws="qvm-x-acl">jagaya; jagaya:</AUni> -<AUni ws="qvm-x-akh">jaqaya; jaqaya:</AUni> -<AUni ws="qvm-x-akl">jaqaya; jaqaya:</AUni> -<AUni ws="qvm-x-ame">haqaya; haqaya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*haqaya:</AUni> -<AUni ws="qvm-x-acl">*haqaya:</AUni> -<AUni ws="qvm-x-akh">*haqaya:</AUni> -<AUni ws="qvm-x-akl">*haqaya:</AUni> -<AUni ws="qvm-x-ame">*haqaya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.670" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="38c6663d-af87-4f6e-a4d1-d4baaf603d40" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*haqaya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="50add7d0-d1b0-48a7-8328-a00215f40b7c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dd908226-644d-445b-bf2f-7aadef892165" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *haqaya: 
\entryTyp root 
\gENG demoralize 
\gSPN desmoralizar 
\e *haqaya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach jagaya foreshortened 
\ach jagaya: 
\akh jaqaya foreshortened 
\akh jaqaya: 
\acl jagaya foreshortened 
\acl jagaya: 
\akl jaqaya foreshortened 
\akl jaqaya: 
\ame haqaya foreshortened 
\ame haqaya: 
\mcc *haqaya: / ~_ INF NEG</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d840a0ec-4df5-4f0b-8590-09fdf106580e" ownerguid="cde96694-79e5-44af-8d38-d988d1938e5f"> -<ExampleWords> -<AUni ws="en">scaffolding</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What special equipment is used to build a building?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d840e1a8-2171-41ce-a747-ec512b9a2bb3" ownerguid="c38569e1-858a-43c7-b482-36188effe39a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">September</AUni> -<AUni ws="es">setiembre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ea295731-973c-4f6c-a045-a7ba333e84a6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d842689f-9696-410e-a976-6d244fc066db" ownerguid="691e7d9a-5191-4f78-ae21-b5de1e013a6f"> -<Form> -<AUni ws="qvm-x-ach">aula</AUni> -<AUni ws="qvm-x-acl">aula</AUni> -<AUni ws="qvm-x-akh">aula</AUni> -<AUni ws="qvm-x-akl">aula</AUni> -<AUni ws="qvm-x-ame">aula</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="Segment" guid="d844d554-c919-45e7-8e69-c5e145c6523f" ownerguid="93b57985-30c0-418e-9c80-840fd48e720a"> -<Analyses> -<objsur guid="c83c5ef6-bb3d-4293-865b-3f3ad22ab590" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexSense" guid="d8470b4b-00da-4c92-b46f-1bbc3ff345e6" ownerguid="d2d0a2a0-517b-4cdd-b099-473e45565348"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">strike</AUni> -<AUni ws="es">huelga</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5bd909dd-cccc-4027-ada3-cbb135395c81" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d8489f2e-aed2-4d74-9931-3e88282dca9b" ownerguid="4f40d752-0b59-4130-8ebf-13dc74065d16"> -<Form> -<AUni ws="qvm-x-ach">obedëci</AUni> -<AUni ws="qvm-x-acl">obedëci; obedëce</AUni> -<AUni ws="qvm-x-akh">obedëci</AUni> -<AUni ws="qvm-x-akl">obedëci; obedëce</AUni> -<AUni ws="qvm-x-ame">obedëci</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="d8494c16-5e5c-4aea-9220-1f7d7a58540c"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Qamkuna</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="d84a8ebf-5d11-412c-b9fb-792208ffabff" ownerguid="739d590b-35a9-4209-a7e9-3b6681652d61"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gizzard</AUni> -<AUni ws="es">buche</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2ddf128e-b25f-488a-a54b-c16369a7e1e6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d84b2049-53dc-4feb-98e5-f6f520c2e48c" ownerguid="d83ebe2c-c1d6-49ec-a4a9-1cdced843387"> -<ExampleWords> -<AUni ws="en">knock out, put out, put under (anesthesia), stupefy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something causing someone to lose consciousness?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d84b48a2-666d-4bb5-b9a4-3f4501c6110b" ownerguid="19a947fb-c6bb-494e-a88d-5bbb9b4965fe"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d84c4f61-5374-4d94-97ba-770b29bb6107" ownerguid="36e8f1df-1798-4ae6-904d-600ca6eb4145"> -<ExampleWords> -<AUni ws="en">escaped, be on the loose, be at large, be on the run, elusive, free</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe someone who has escaped?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d84da4a1-0eb7-45b8-850b-0c215137a585"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nicni</AUni> -<AUni ws="qvm-x-acl">nicni; nicni; nicne</AUni> -<AUni ws="qvm-x-akh">nikni</AUni> -<AUni ws="qvm-x-akl">nikni; nikni; nikne</AUni> -<AUni ws="qvm-x-ame">nikni</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*nikni</AUni> -<AUni ws="qvm-x-acl">*nikni</AUni> -<AUni ws="qvm-x-akh">*nikni</AUni> -<AUni ws="qvm-x-akl">*nikni</AUni> -<AUni ws="qvm-x-ame">*nikni</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.558" /> -<DateModified val="2022-10-10 21:18:47.204" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="717b6b9d-8762-4bec-970d-663235929956" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*nikni</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="abf64472-55b0-407b-9c06-202ef7d1d6fc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="64fe56d1-54de-47c0-992b-a8bedb2fe71c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *nikni 
\entryTyp root 
\gENG 
\gSPN 
\e *nikni 
\c V1 N0 
\mp +FinalI 
\ach nicni 
\akh nikni 
\acl nicni / _# 
\acl nicni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl nicne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl nikni / _# 
\akl nikni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl nikne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame nikni 
\i 2SA 17.29 Tsaynöpis apapäkurqan abëjapa mishkinta, niknita, uyshata, cabrata y wäkakunapa lëchinpita rurashqa quësuta.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d84f0723-55d8-48c9-abd7-d9ad479fe99d" ownerguid="1c3c8af0-56b9-4617-862e-21f39b388606"> -<ExampleWords> -<AUni ws="en">fatal, terminal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words describe an illness or wound that will cause the person to die?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d8514a71-bfb1-44ff-a25c-5896283bd948" ownerguid="78f8926f-82ad-455c-b171-fb982948c239"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="d852002a-f6bf-43e2-93b7-eef2f4a177b5" ownerguid="cb48de57-4fef-47d8-8989-397a6bc6377a"> -<Form> -<AUni ws="qvm-x-ach">lagya</AUni> -<AUni ws="qvm-x-acl">lagya</AUni> -<AUni ws="qvm-x-akh">laqya</AUni> -<AUni ws="qvm-x-akl">laqya</AUni> -<AUni ws="qvm-x-ame">laqya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="d8533a2a-c69a-4530-be89-8c8ff295762f" ownerguid="a49b127c-31dc-438c-bf17-90b0912f7583"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="d853597b-f3ed-470b-b6dd-8fe93b8e43eb" ownerguid="8503660c-03af-49ee-86b6-525aab4da828"> -<Abbreviation> -<AUni ws="en">2.3.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.32" /> -<DateModified val="2022-9-23 16:55:8.32" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that describe quiet sounds.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Quiet</AUni> -</Name> -<Questions> -<objsur guid="efe1c3e4-1150-48b2-b91f-b432f8cbccb8" t="o" /> -<objsur guid="f0267461-a137-4f72-aa2f-c83d6ec92038" t="o" /> -<objsur guid="566452e7-4d73-4728-80a1-61be4a6c403c" t="o" /> -<objsur guid="b8587522-f7e7-4031-b389-5c59c32b62af" t="o" /> -<objsur guid="25fe4b71-1d9f-41a1-905f-67e217815534" t="o" /> -<objsur guid="c65f23f8-d40d-44e3-9334-1ff8b91362d3" t="o" /> -<objsur guid="2008199a-5d1d-4842-8af9-95e9ed27a154" t="o" /> -<objsur guid="1c3dce5e-48f5-4a00-85d5-86d16d65c18f" t="o" /> -<objsur guid="f95620d5-5e3a-4ecc-8ca2-3af2aff8b4c1" t="o" /> -<objsur guid="c744ec67-9f77-4fd2-8cae-0cc2297e8897" t="o" /> -<objsur guid="939c15c6-6223-4976-a488-8a63f9c22a07" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="f5642647-9b9c-499b-a66e-349593c863f1" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="d85391fa-680a-4715-81ac-c0835acac8c5" ownerguid="79b580ff-64a7-445b-abcb-b49b9093779c"> -<Abbreviation> -<AUni ws="en">6.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to milking an animal.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Milk</AUni> -</Name> -<OcmCodes> -<Uni>234 Dairying</Uni> -</OcmCodes> -<Questions> -<objsur guid="dc7fab50-334d-4830-abed-ea56d2936883" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="d8580d98-b3ea-4694-b154-280853a5e54d" ownerguid="d4ef7912-3b33-4ccd-ad37-23ad4b6814d6"> -<Form> -<AUni ws="qvm-x-ach">hechor</AUni> -<AUni ws="qvm-x-acl">hechor</AUni> -<AUni ws="qvm-x-akh">hechor</AUni> -<AUni ws="qvm-x-akl">hechor</AUni> -<AUni ws="qvm-x-ame">hechor</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="d85d0838-a9e4-4787-8fce-7d0466bc24b9" ownerguid="fb84538a-17a8-4adc-8d50-e2b66f8e4099"> -<Abbreviation> -<AUni ws="en">8.1.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.559" /> -<DateModified val="2022-9-23 16:55:8.559" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for numbers that refer to the number of times something happens or is done. These numbers may be adverbs as in English (twice) or in some languages they may be verbs (to do something two times).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>60E Once, Twice, Three Times, Etc. x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Number of times</AUni> -</Name> -<Questions> -<objsur guid="27d0a3ff-6769-49d3-a8f5-f98a9eb3b196" t="o" /> -<objsur guid="d82504b2-6c34-4f2d-ac79-4113ad39d9f8" t="o" /> -<objsur guid="ffeace85-38eb-4c5b-a21a-47bedb7a2571" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="12f12bf3-f232-4477-bf39-d91b7f55c2c3" t="r" /> -<objsur guid="457231c8-4eb6-4460-aa45-3e9f2c4e8975" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="d85d1009-3e22-48c7-a860-f0a0475c658d" ownerguid="a3114026-3243-493e-b04d-4cd401fb8d7b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">reference</AUni> -<AUni ws="es">cita</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="318dc442-ba4c-4a79-afdb-3a9d3cf54fa6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d85dd225-c792-4dd2-b968-dbf081004470" ownerguid="32bf055a-d666-4d6e-a3c6-6c984e2c9868"> -<ExampleWords> -<AUni ws="en">call (up), ring, phone (v), dial</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to beginning a telephone call?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d8622ab2-f5ea-4691-8ad4-a44ec670f935"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chushu</AUni> -<AUni ws="qvm-x-acl">chushu; chushu; chusho</AUni> -<AUni ws="qvm-x-akh">chushu</AUni> -<AUni ws="qvm-x-akl">chushu; chushu; chusho</AUni> -<AUni ws="qvm-x-ame">chushu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trushu</AUni> -<AUni ws="qvm-x-acl">*trushu</AUni> -<AUni ws="qvm-x-akh">*trushu</AUni> -<AUni ws="qvm-x-akl">*trushu</AUni> -<AUni ws="qvm-x-ame">*trushu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.190" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="82062048-302a-48e5-8e52-ddab3694e660" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trushu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="51ba7e55-ad51-4cc2-9739-7d667c0d2e20" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="466a8502-0d5b-4d2c-a67e-c6415e4f4a3d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trushu 
\entryTyp root 
\gENG 
\gSPN 
\e *trushu 
\c N0 
\ach chushu 
\akh chushu 
\acl chushu / _# 
\acl chushu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chusho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chushu / _# 
\akl chushu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chusho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chushu 
\i AMO 9.9 <<Trïguta maylar shuyshushgayquinogmi gamcunatapis limpiashayqui jutsata rurashgayquipita. Chushu cagcuna yarguptinpis gränu cagcunaga manami juclaylapis yargongatsu.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="d8631167-08bd-4571-bc7c-57a4407da51c" ownerguid="5e7a5899-df78-4aa7-bec9-b354acfe087f"> -<Abbreviation> -<AUni ws="en">4.6.6.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.264" /> -<DateModified val="2022-9-23 16:55:8.264" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to politics--the activities of politicians and political parties.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>11C Socio-Political</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Politics</AUni> -</Name> -<OcmCodes> -<Uni>660 Political Behavior; 661 Exploitation; 662 Political Intrigue; 663 Public Service; 664 Pressure Politics; 665 Political Parties; 667 Political Machines; 668 Political Movements</Uni> -</OcmCodes> -<Questions> -<objsur guid="493f53a5-329d-4a2f-9fb4-d6331f203adf" t="o" /> -<objsur guid="d111f23b-66f5-493d-bbe6-482a17a9e66a" t="o" /> -<objsur guid="044fc54f-0f42-491a-a37a-d1fc7960e708" t="o" /> -<objsur guid="2834b99c-5335-4d5f-9ee6-1c9277b0134f" t="o" /> -<objsur guid="1066cbdc-e7be-4ba0-a986-df7f3073809f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="d86911e5-f1f7-4e76-8773-24efabb95924" ownerguid="7ea946fb-6469-4f21-a5a4-7963878e6fe2"> -<ExampleWords> -<AUni ws="en">take a long time, be for a long time, go long, go over the time allotted, take forever, last a long time, went on forever, kept going and going, lengthy, enduring</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something happens for a long time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d86ef6f9-32cb-4d68-8a9b-b3cf197db203" ownerguid="0cc62b4a-d5ff-4f45-83d1-e2b46e5d159a"> -<ExampleWords> -<AUni ws="en">time, hour, watch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a time of the day?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d8721052-6f5e-4eab-abc8-e81c680ff030" ownerguid="0aae0254-dc06-4906-8ecf-2d8450fb83f1"> -<ExampleWords> -<AUni ws="en">lay someone (down/somewhere)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to causing someone to lie down?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d8740dc2-d496-4bc6-af42-4f01b3174d27" ownerguid="a74c97f9-27c1-43a4-a735-eeae29947bb7"> -<Form> -<AUni ws="qvm-x-ach">lápiz; läpiz</AUni> -<AUni ws="qvm-x-acl">lápiz; läpiz</AUni> -<AUni ws="qvm-x-akh">lápiz; läpiz</AUni> -<AUni ws="qvm-x-akl">lápiz; läpiz</AUni> -<AUni ws="qvm-x-ame">lápiz; läpiz</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="d87638fc-b211-4724-8c0f-9dff7790c02d" ownerguid="8efb07c6-ea3b-4bc6-a72d-fccbfe0091f5"> -<Form> -<AUni ws="qvm-x-ach">utsu</AUni> -<AUni ws="qvm-x-acl">utsu; utsu; utso</AUni> -<AUni ws="qvm-x-akh">utsu</AUni> -<AUni ws="qvm-x-akl">utsu; utsu; utso</AUni> -<AUni ws="qvm-x-ame">utsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d877768c-b50a-4dff-bf99-b7fad9224092" ownerguid="29a8ebbe-ebc4-4295-b6af-84331d019361"> -<ExampleWords> -<AUni ws="en">pronunciation, pronounce, stress, tone, vocalization</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the way a word should be said?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d878844a-1f13-4549-89a4-9285bdfb4033" ownerguid="e4316953-e75a-41a4-96a3-fd2ca43906d9"> -<Form> -<AUni ws="qvm-x-ach">órden; ordin</AUni> -<AUni ws="qvm-x-acl">órden; ordin; orden</AUni> -<AUni ws="qvm-x-akh">órden; ordin</AUni> -<AUni ws="qvm-x-akl">órden; ordin; orden</AUni> -<AUni ws="qvm-x-ame">órden; ordin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d8798d3b-dfd0-46fe-a0a6-5e36d691e474" ownerguid="00364f0c-9a3a-4910-a82e-1ffbc4d4137f"> -<ExampleWords> -<AUni ws="en">exciting, thrilling, sensational, sensation, exhilarating, heady, dramatic, nail biting, action-packed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe something that causes someone to feel excited?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d87b8075-b417-425d-b925-df423a5246e4" ownerguid="579659d9-7f03-465d-a59b-647c5a6b29bb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d87bb7f2-2494-4045-b476-4658474c4a77" ownerguid="83899b19-8b39-4bf0-b124-4c6188569ec8"> -<ExampleWords> -<AUni ws="en">altogether, in total, in all, all told</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words indicate that a particular number is the total?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d87fa806-0117-4f37-89a8-9e2411e7df60" ownerguid="57f81c17-57cb-4d5e-afca-6197ecfdf443"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">purposely</AUni> -<AUni ws="es">a.propósito</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="15416d6d-b78d-40d3-b0bc-ddc2405dae91" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d8809567-4656-4869-8835-38009b3e6a34" ownerguid="14891149-e35b-4634-a181-ffe0967abaf9"> -<Form> -<AUni ws="qvm-x-ach">metru; metro</AUni> -<AUni ws="qvm-x-acl">metru; metru; metro</AUni> -<AUni ws="qvm-x-akh">metru; metro</AUni> -<AUni ws="qvm-x-akl">metru; metru; metro</AUni> -<AUni ws="qvm-x-ame">metru; metro</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="d885a08b-0711-46a9-8426-da9ab1b98c38" ownerguid="a9172057-0e8a-47fa-bae4-84e5f3b214b3"> -<Form> -<AUni ws="qvm-x-ach">arbitru; arbitro</AUni> -<AUni ws="qvm-x-acl">arbitru; arbitru; arbitro</AUni> -<AUni ws="qvm-x-akh">arbitru; arbitro</AUni> -<AUni ws="qvm-x-akl">arbitru; arbitru; arbitro</AUni> -<AUni ws="qvm-x-ame">arbitru; arbitro</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="d887b868-775f-4179-a8a9-18256256982c" ownerguid="99f6d9c4-83ff-4104-9041-41b9bd9ef927"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="547b5e88-7466-433b-86cb-1324800bad57" t="o" /> -<objsur guid="c3500107-bcff-4a7c-ae37-b114a4d51118" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="d88894be-86d5-4504-87b3-bfc97e27d50e" ownerguid="805612cb-6296-434b-8ca1-14ff9ed0a2a1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mosquito</AUni> -<AUni ws="es">zancudo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3477e27b-8396-42eb-ade4-2c1c2423e05c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d8895cf5-3c27-42eb-aaed-240b9f7f1fcf" ownerguid="60595d09-4a15-4499-b6e1-d36a704bcbe9"> -<ExampleWords> -<AUni ws="en">flow, run, stream, current, rise, fall, flood, overflow, to wind, meander, erode, split, merge, roil, surge, torrent, trickle, effluence, spread, permeate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to water moving over a surface?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="d88d862c-01d4-4b43-9fbe-59208922e022" ownerguid="6330871b-6008-490e-bfff-e28e17ebce7e"> -<Abbreviation> -<AUni ws="en">7.2.7.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.526" /> -<DateModified val="2022-9-23 16:55:8.526" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to waiting in a place, waiting to do something, or waiting for something to happen. The basic idea of waiting is for someone to not do anything for a period of time, because he expects something to happen that will cause him to do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Wait</AUni> -</Name> -<Questions> -<objsur guid="10ab143a-ab11-4ca9-a9b7-92a16a2778e7" t="o" /> -<objsur guid="7c66643f-85a5-477c-96b1-f82f3767cec0" t="o" /> -<objsur guid="e0b60d18-bc98-442c-96b1-d5d1bd5150ca" t="o" /> -<objsur guid="325ef214-57a6-4ed0-8f69-2f83ea8df8df" t="o" /> -<objsur guid="22369c6c-16f9-4bc7-9c49-980030f7fba6" t="o" /> -<objsur guid="e4ebe8be-9f8f-4468-9a83-9fb8b74831a8" t="o" /> -<objsur guid="0ea40fc0-d382-4022-b11e-c29b73987c41" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="d88f62ce-1375-4ddb-a635-ff73b844d650" ownerguid="7acde7d5-1a5b-4e16-99c7-5f297d2643f4"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="9d6002dc-5501-4053-b5fd-d04f1e71726e" t="o" /> -<objsur guid="48888c1a-2110-45f5-8e51-b1e14b8c2f42" t="o" /> -<objsur guid="32f7444b-091a-4d21-a765-68476baeb878" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="d8916a6c-5215-462e-97c8-4a72dbcea145" ownerguid="8043d3ee-dc8d-4e02-b14b-2c6916bcc67d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d894b7d0-20f6-4cfe-b5a7-15612c799f36" ownerguid="2517e8ce-94e1-4de9-8605-d63cabe2c9f3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="71b761b1-f785-4a70-8268-c289cf7ff281" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d8966f15-08f9-4bee-aca7-f03eea4419f0" ownerguid="7bf05f4e-909f-40ca-b742-9be21eba9fbb"> -<ExampleWords> -<AUni ws="en">have to, must</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) obligation, strong: it is absolutely incumbent upon the agent to complete the action of the main verb: 'I have to mail this letter today'.</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d898a7bd-f81c-402c-92d3-ee9c92e922fb" ownerguid="70361b53-d379-4601-96b7-39d0c39de125"> -<Form> -<AUni ws="qvm-x-ach">tuna</AUni> -<AUni ws="qvm-x-acl">tuna</AUni> -<AUni ws="qvm-x-akh">tuna</AUni> -<AUni ws="qvm-x-akl">tuna</AUni> -<AUni ws="qvm-x-ame">tuna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="d8a5ab62-4847-4d85-8c1f-50af05630f2b" ownerguid="a50162fb-f652-4f20-a9b9-e9b75a422af5"> -<Form> -<AUni ws="qvm-x-ach">mä</AUni> -<AUni ws="qvm-x-acl">mä</AUni> -<AUni ws="qvm-x-akh">mä</AUni> -<AUni ws="qvm-x-akl">mä</AUni> -<AUni ws="qvm-x-ame">mä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="d8a6ec64-b222-4ca9-9a47-5779e31a5932" ownerguid="e0880b58-248f-4071-b5b8-bca868871a72"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pis</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pis</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pis</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pis</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pis</Run> -</AStr> -</Form> -<Morph> -<objsur guid="18466f68-8c21-4054-acf2-869c4074b430" t="r" /> -</Morph> -<Msa> -<objsur guid="8b7a32d0-6744-4c78-9071-7cf96938c9b3" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="d8a86089-0abe-423f-a4b2-9416edf33be2" ownerguid="849dcf1c-51e1-4c63-9308-504bfb1c3cd0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="64bf654b-c49e-463a-9d77-203fd95ed1d7" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="b73a78f0-1f2d-43c4-afe0-84b5755ae17f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="d8a87d38-a8b0-4752-86f6-4f65d22e24d7" ownerguid="d4389d2b-9d2e-4bb0-af7f-faed9c771fa8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tough guy</AUni> -<AUni ws="es">serrano</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cdbab3f5-ad93-4965-a9f6-bb03bf2c6dc0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiGloss" guid="d8a95e00-f7fc-4291-9bb7-5bb471f17bae" ownerguid="5ff16f03-4466-4c06-ae98-9c5ba4fa6aca"> -<Form> -<AUni ws="en">they are doing</AUni> -</Form> -</rt> -<rt class="Segment" guid="d8abae3e-c8c6-4f8b-a30e-39b6e7d4d178" ownerguid="2672eed3-c1ce-4367-bad4-a4ee4904abc6"> -<Analyses> -<objsur guid="a0a15b5c-38bc-425c-b0cb-2f3c5da36787" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexEntry" guid="d8af8890-8c77-4bbb-920f-4af130da85c8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">máquina; ma:quina</AUni> -<AUni ws="qvm-x-acl">máquina; ma:quina</AUni> -<AUni ws="qvm-x-akh">máquina; ma:quina</AUni> -<AUni ws="qvm-x-akl">máquina; ma:quina</AUni> -<AUni ws="qvm-x-ame">máquina; ma:quina</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+máquina</AUni> -<AUni ws="qvm-x-acl">+máquina</AUni> -<AUni ws="qvm-x-akh">+máquina</AUni> -<AUni ws="qvm-x-akl">+máquina</AUni> -<AUni ws="qvm-x-ame">+máquina</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.386" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="95b53634-9ce1-4f9e-bb29-2693776afd3b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+máquina</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7f126665-ffc6-4695-86da-712c72e4577a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2c668e7d-116b-4ce6-aa68-9ec0f9bef9bf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +máquina 
\entryTyp root 
\gENG machine 
\gSPN máquina 
\e +máquina 
\c N0 
\ach máquina / _# 
\ach ma:quina / ~_# 
\akh máquina / _# 
\akh ma:quina / ~_# 
\acl máquina / _# 
\acl ma:quina / ~_# 
\akl máquina / _# 
\akl ma:quina / ~_# 
\ame máquina / _# 
\ame ma:quina / ~_# 
\i 2CH 26.15 Tsay mäquinacunawanmi jatusag rumicunata y flëchacunata palancaypa jitatsipäcog.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="d8b1a547-3592-41b4-b2dd-a7994b7357f4" ownerguid="89e74a22-861c-4358-9402-d95b9b33a18f"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="5008db6e-4463-402c-989e-5a056395ebec" t="o" /> -<objsur guid="91a024b5-f068-4953-bc16-07125848d849" t="o" /> -<objsur guid="1b339fa0-ab47-45ab-b56d-b94372e89816" t="o" /> -<objsur guid="c020ab95-454f-412a-b628-067dd431caa6" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="d8b8e53b-0351-43c6-afc4-723f49302116" ownerguid="205124a1-d3ff-4b0c-8c67-42149b6b23ca"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="d8c59993-98f8-4ad6-8271-c68324b5a7ce" ownerguid="a24e45df-fa39-498b-8e65-482c9071135a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d8c70517-ab34-4b75-b388-31c106052b02" ownerguid="da39c0d9-a5c1-4f10-bd3b-4e988abcab5a"> -<ExampleWords> -<AUni ws="en">feel sorry, be sorry, regret, feel remorse, feel convicted, conscience stricken, feel guilty, lament, rue, rue the day, ruefully, wish you hadn't done something, kick yourself, repent, be ashamed, feel ashamed, have a bad conscience, have a guilty conscience, be on your conscience, feel bad about</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling sorry?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d8c76a43-baa9-4f29-a2fb-a0c71f0c0d00" ownerguid="703b72ec-ce56-460e-af9e-6175bf998908"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">3IMP</AUni> -<AUni ws="es">3IMP</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ab22b78d-96a6-42ee-ac4a-3910bcc0ce72" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d8c84c77-1e1a-4421-ad21-60c051368cdf" ownerguid="12f12bf3-f232-4477-bf39-d91b7f55c2c3"> -<ExampleWords> -<AUni ws="en">rare, infrequent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that does not happen often?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d8c8bf11-5058-4acf-a336-39141311488e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">canan</AUni> -<AUni ws="qvm-x-acl">canan</AUni> -<AUni ws="qvm-x-akh">kanan</AUni> -<AUni ws="qvm-x-akl">kanan</AUni> -<AUni ws="qvm-x-ame">kanan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kanan.1</AUni> -<AUni ws="qvm-x-acl">*kanan.1</AUni> -<AUni ws="qvm-x-akh">*kanan.1</AUni> -<AUni ws="qvm-x-akl">*kanan.1</AUni> -<AUni ws="qvm-x-ame">*kanan.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.922" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="618fcea2-5859-40ed-90c8-97444250e1e9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kanan.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5bfc2be8-960a-49fc-952c-7e1540f31d7d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5e558833-b760-4fc9-a586-306032ad7659" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kanan.1 
\entryTyp root 
\gENG today 
\gSPN hoy 
\e *kanan.1 
\c R0 
\mp +FinalC 
\ach canan 
\akh kanan 
\acl canan 
\akl kanan 
\ame kanan 
\mcc *kanan.1 / ~_ BEC [q]</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="d8c9a9f2-cd74-4277-8c64-d5f168770bad" ownerguid="abbadf39-6727-4a3e-b6cd-c0fa98520d10"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">palm.tree</AUni> -<AUni ws="es">palmera</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2c0e4f54-fb2b-455d-84c0-c0b9ed42926f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d8cab0cf-d561-43a4-8e5d-22ae57076642" ownerguid="85b9908f-4f57-4baa-9ed2-bc4705b12e72"> -<ExampleWords> -<AUni ws="en">straight posture, stand at attention, stand/sit stiffly, erect</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is in a straight posture?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="d8d85000-411c-437c-9a7b-5f80458674e7" ownerguid="1b01bd53-1817-48a3-bf44-3db102aa08d3"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Abraham, Isaac y Jacob respitashgan |Tayta Dios| promitishgannog bendicionta goyculäshunqui canan caycashgayquipita waranga cuti masman mirapäcunayquipag.</Run> -</AStr> -</Example> -</rt> -<rt class="LexExampleSentence" guid="d8d8d91f-f856-48c8-a341-8fae38e4de67" ownerguid="5d3be5a6-3867-4e50-b050-9d3a0d55484b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ZEC 5.8 Tsayno nircushpanmi warmita ruriman tsumur plömu tsapanawan yapay tsaparcorgan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="d8db3d52-ca2a-438d-a513-9c45281fa106" ownerguid="ffcc57f8-6c6d-4bf4-85be-9220ca7c739d"> -<ExampleWords> -<AUni ws="en">couple, husband, wife, spouse, partner, mate, matron, matronly, consort</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to people who are married?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d8dd9aea-ceb9-44e3-8758-97d435c730c3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">contra:tu</AUni> -<AUni ws="qvm-x-acl">contra:tu; contra:tu; contra:to</AUni> -<AUni ws="qvm-x-akh">contra:tu</AUni> -<AUni ws="qvm-x-akl">contra:tu; contra:tu; contra:to</AUni> -<AUni ws="qvm-x-ame">contra:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+contrato</AUni> -<AUni ws="qvm-x-acl">+contrato</AUni> -<AUni ws="qvm-x-akh">+contrato</AUni> -<AUni ws="qvm-x-akl">+contrato</AUni> -<AUni ws="qvm-x-ame">+contrato</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.182" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9eadd071-a8c9-47e4-ab54-8d1758ba6459" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+contrato</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="253e0282-d9bd-447b-ad0d-8195f9f9fa08" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="70f7e3c6-17db-4176-9cdf-10e72a87a7cb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +contrato 
\entryTyp root 
\gENG contract 
\gSPN contrato 
\e +contrato 
\c N0 
\ach contra:tu 
\akh contra:tu 
\acl contra:tu / _# 
\acl contra:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl contra:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl contra:tu / _# 
\akl contra:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl contra:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame contra:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d8df9868-b5d7-43a5-9a7d-193892e377a5" ownerguid="f950b7cc-fb85-4dbb-b8ca-934d38cae7fc"> -<ExampleWords> -<AUni ws="en">and, or, but</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What conjunctions are in your language?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="d8dfa6fc-84ea-4178-b4f5-95e0c113140a" ownerguid="265f5645-94cb-485c-8bf9-0a3ab2354f63"> -<Abbreviation> -<AUni ws="en">9.6.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.718" /> -<DateModified val="2022-9-23 16:55:8.718" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating a dissociation relation between two things or propositions.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89U Dissociation</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Dissociation</AUni> -</Name> -<Questions> -<objsur guid="6d988c52-2a95-4985-8b35-f233397f8f53" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="d8e1a4a5-f1bd-4b2f-9aed-13944bae58f5" ownerguid="a39fec65-5ada-4bf8-b219-93ba7d47ff87" /> -<rt class="CmDomainQ" guid="d8e39ca6-3e8a-4a4c-83e3-98fdf21733da" ownerguid="7b17e304-9a3f-463f-8216-cd1e1e119e0e"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Four <divided by> two is two.; Two <into> four equals two.; Two <goes into> four two times.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">divided by, into, go into</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used for division equations?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d8e4d75f-5294-4e30-b32f-75b7b0f58f76" ownerguid="5718fcc8-1eba-4b8d-9b6b-0c8349f53f80"> -<ExampleWords> -<AUni ws="en">miss, fall short, overshoot, off center, wild shot</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to missing a target?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d8e9d36f-7784-48ce-880f-82919057966a" ownerguid="d7b74d48-e849-4473-ac00-a9d79616cab4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">grown</AUni> -<AUni ws="es">crecer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d44bc031-da57-4cc3-a939-680bf02bf01a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="d8ea1902-5fa6-4fda-b7b2-1f9c301cdc5f" ownerguid="0ebf9fcc-ee38-4f5f-ab5e-c76e199ef7ae"> -<Abbreviation> -<AUni ws="en">8.1.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.569" /> -<DateModified val="2022-9-23 16:55:8.569" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that refer to a group of things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Group of things</AUni> -</Name> -<Questions> -<objsur guid="4f86a885-3471-4f8b-924f-0a5132ac9c4b" t="o" /> -<objsur guid="88d6216b-eb46-4e87-93eb-9f2d190af992" t="o" /> -<objsur guid="0be21bb0-d652-4144-9b11-019590394cfa" t="o" /> -<objsur guid="b6234b67-5981-48c3-9ba6-f3995950461b" t="o" /> -<objsur guid="0919e8b3-1be4-4069-8e9b-6978219384d9" t="o" /> -<objsur guid="268e58a9-38ac-485c-a39c-7c84122d35dc" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="87eb572c-bae2-45d8-a36a-919561b55d0d" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="d8ee23d8-9eb3-4dbf-b605-44cf67cf672a" ownerguid="15aba1a6-ac19-4f00-ab5e-97c44e55b43e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="d8efbe75-255b-4a50-b5d6-edde747da301"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">codicio:su</AUni> -<AUni ws="qvm-x-acl">codicio:su; codicio:su; codicio:so</AUni> -<AUni ws="qvm-x-akh">codicio:su</AUni> -<AUni ws="qvm-x-akl">codicio:su; codicio:su; codicio:so</AUni> -<AUni ws="qvm-x-ame">codicio:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+codicioso</AUni> -<AUni ws="qvm-x-acl">+codicioso</AUni> -<AUni ws="qvm-x-akh">+codicioso</AUni> -<AUni ws="qvm-x-akl">+codicioso</AUni> -<AUni ws="qvm-x-ame">+codicioso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.142" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4c90db74-5c8c-4be6-b136-fd083ce6a8fd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+codicioso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="be8bcc8c-9d81-411a-8417-1b0ba335bdd6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="593ad379-23dd-4291-901f-a3d31590a4c1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +codicioso 
\entryTyp root 
\gENG greedy 
\gSPN codicioso 
\e +codicioso 
\c N0 
\ach codicio:su 
\akh codicio:su 
\acl codicio:su / _# 
\acl codicio:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl codicio:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl codicio:su / _# 
\akl codicio:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl codicio:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame codicio:su</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d8f1622b-b805-475a-beee-cc410ab67989" ownerguid="bc8d0ad4-6ebf-4fa0-bc7e-60e8ec9c43db"> -<ExampleWords> -<AUni ws="en">optic, retinal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe something to do with the eyes?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d8f2f873-fa4c-411b-a91e-7ccbcc7a33ce"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ogti</AUni> -<AUni ws="qvm-x-acl">ogti; ogte</AUni> -<AUni ws="qvm-x-akh">oqti</AUni> -<AUni ws="qvm-x-akl">oqti; oqte</AUni> -<AUni ws="qvm-x-ame">uqti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uquti.1</AUni> -<AUni ws="qvm-x-acl">*uquti.1</AUni> -<AUni ws="qvm-x-akh">*uquti.1</AUni> -<AUni ws="qvm-x-akl">*uquti.1</AUni> -<AUni ws="qvm-x-ame">*uquti.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.322" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="84e892b9-f53c-4c3c-a3e0-b7b8adefb0e2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uquti.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f0f784fe-838a-4beb-b56a-b502b4015766" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2d1fcf19-f24b-435d-89d0-3cbe1bb231e9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uquti.1 
\entryTyp root 
\gENG dig 
\gSPN escarbar 
\e *uquti.1 
\c V2 
\mp +FinalI 
\ach ogti 
\akh oqti 
\acl ogti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ogte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl oqti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl oqte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame uqti</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="d8f7ebe0-f28e-40c1-923e-f3c9f22f7bbc" ownerguid="30011610-0ca9-4d7d-ba2e-377fc3c76e74"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tie</AUni> -<AUni ws="es">amarrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c3a87e45-ac0a-46d1-a928-2e8bc69bf541" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="d8f876c1-67cc-4df3-8588-b71dc631e405" ownerguid="52a7b4cb-3ebe-4c1f-8e5c-4d86e1d7d10b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ruwa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ruwa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ruwa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ruwa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ruwa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="03079ecd-68dd-4753-98e3-dfa772e69e31" t="r" /> -</Morph> -<Msa> -<objsur guid="455ea5bc-a67d-401b-afc0-73e79bdf6555" t="r" /> -</Msa> -<Sense> -<objsur guid="36763352-1e59-4529-94c0-3e37f6ef0f0a" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="d8f87f74-990e-40d0-af5b-fcb2a13fded9" ownerguid="ce3af8af-8227-4901-8891-7f5cc41520d9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d9003f53-b2a2-49a0-803b-bb098b407e4a" ownerguid="8c3afdce-2305-4cb6-8cb9-ea32c0e77e68"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">heaven</AUni> -<AUni ws="es">cielo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bda8f065-dd51-4d09-88d9-0f638a3b547a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="d90a5bb0-7fcd-4c2f-9d73-2609b77c9e3b" ownerguid="1a79a88c-eaab-46ea-8f23-d6a3d560136c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="d90afb31-9666-4b79-8caf-ce4f4f248172"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yuga:da</AUni> -<AUni ws="qvm-x-acl">yuga:da</AUni> -<AUni ws="qvm-x-akh">yuga:da</AUni> -<AUni ws="qvm-x-akl">yuga:da</AUni> -<AUni ws="qvm-x-ame">yuga:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+yugada</AUni> -<AUni ws="qvm-x-acl">+yugada</AUni> -<AUni ws="qvm-x-akh">+yugada</AUni> -<AUni ws="qvm-x-akl">+yugada</AUni> -<AUni ws="qvm-x-ame">+yugada</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.788" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="543914c7-b56c-4f1b-af36-69ffd59f8ba6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+yugada</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7a08230c-8da6-41d1-af56-af81f7f45874" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="afb500a6-84c7-45e7-813b-98b2445db30b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +yugada 
\entryTyp root 
\gENG one.day.plow.area 
\gSPN 
\e +yugada 
\c N0 
\ach yuga:da 
\akh yuga:da 
\acl yuga:da 
\akl yuga:da 
\ame yuga:da</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d90c0174-8858-4304-90ed-b0719171d998"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">luychu</AUni> -<AUni ws="qvm-x-acl">luychu; luychu; luycho</AUni> -<AUni ws="qvm-x-akh">luychu</AUni> -<AUni ws="qvm-x-akl">luychu; luychu; luycho</AUni> -<AUni ws="qvm-x-ame">luychu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lluychu</AUni> -<AUni ws="qvm-x-acl">*lluychu</AUni> -<AUni ws="qvm-x-akh">*lluychu</AUni> -<AUni ws="qvm-x-akl">*lluychu</AUni> -<AUni ws="qvm-x-ame">*lluychu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.245" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="451e2239-c5b7-44a2-89c0-41a02a687db1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lluychu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="61409d86-0843-40fa-a5a8-59181f0b9c31" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d13d36c5-14d3-4c79-804a-596be541f397" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lluychu 
\entryTyp root 
\gENG white-tailed deer 
\gSPN venado gris 
\e *lluychu 
\c N0 
\mp NeverMonophthongized 
\ach luychu 
\akh luychu 
\acl luychu / _# 
\acl luychu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl luycho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl luychu / _# 
\akl luychu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl luycho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame luychu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="d90db6d4-6c78-4ac8-9764-0cafa79b8b31" ownerguid="f595deab-1838-4ddb-9ebe-55fb3007b309"> -<Abbreviation> -<AUni ws="en">4.8.3.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.286" /> -<DateModified val="2022-9-23 16:55:8.286" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the army.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>55C Army</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Army</AUni> -</Name> -<OcmCodes> -<Uni>704 Ground Combat Forces</Uni> -</OcmCodes> -<Questions> -<objsur guid="59da782c-d9fa-4db4-9557-b3f55190d64b" t="o" /> -<objsur guid="38e8fe8a-29f2-43de-a5a5-c86e812d6763" t="o" /> -<objsur guid="6b15ae41-34df-4ef8-9b3a-718f312c00a3" t="o" /> -<objsur guid="ec40fe6e-994d-4ee9-b6a3-ef1b26b14381" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="d90e71bf-2898-4501-9d09-c518999f83e2" ownerguid="69541573-f845-4e77-91f6-1e3551fc6c82"> -<Abbreviation> -<AUni ws="en">9.7.2.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.731" /> -<DateModified val="2022-9-23 16:55:8.731" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the proper names of the mountains in the language area. Only include the names of mountains outside the language area if your language has borrowed or adapted the name and you talk about them in your language.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Names of mountains</AUni> -</Name> -<Questions> -<objsur guid="0ccaecf9-3baa-4617-8d57-93acf3a1fde1" t="o" /> -<objsur guid="d7bd74b8-6bcb-4323-831e-fcca388223f3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="d90eb449-7f3c-4bcc-a1c8-264eeadcf89f" ownerguid="ab8f12fb-57b0-4d61-8ae0-50d7cbc412df"> -<ExampleWords> -<AUni ws="en">shovel, plow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What do people do with snow?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d90fb20f-f918-4c7b-b2b0-1e3baba033c6" ownerguid="f2d39dc3-b2ae-405e-9d4b-e1724b283049"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="d9104a31-4975-481b-adbd-ad89adcdc0e8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">regor</AUni> -<AUni ws="qvm-x-acl">regor</AUni> -<AUni ws="qvm-x-akh">regor</AUni> -<AUni ws="qvm-x-akl">regor</AUni> -<AUni ws="qvm-x-ame">regor</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rigor</AUni> -<AUni ws="qvm-x-acl">+rigor</AUni> -<AUni ws="qvm-x-akh">+rigor</AUni> -<AUni ws="qvm-x-akl">+rigor</AUni> -<AUni ws="qvm-x-ame">+rigor</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.356" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2d88bcf2-f2ea-4dc1-8806-ddf925e2e4e6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rigor</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dca61780-18f2-4701-a30b-659b05534cce" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e81d30bd-ca69-46ad-b6c6-087150c68d7b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rigor 
\entryTyp root 
\gENG strict 
\gSPN rigor 
\e +rigor 
\c N0 
\mp +FinalC 
\ach regor 
\akh regor 
\acl regor 
\akl regor 
\ame regor</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="d9112501-cbc3-497d-b3ea-bd02d38409db" ownerguid="7dede9cd-0af7-4eff-90ed-d0a47a5e9cdc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">descend</AUni> -<AUni ws="es">bajar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="799d92fa-91ff-4e0a-93f5-570408c4dc99" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d9119089-5ec4-43bb-8a63-b1589a555116" ownerguid="8ea4e0d4-71a2-4583-a1fe-f1a941af8478"> -<ExampleWords> -<AUni ws="en">suggest, recommend, nominate, propose, put someone's name forward</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to suggesting someone for a job?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d912f561-4504-41c4-92ac-60364c1f5029" ownerguid="0bfe8214-7b49-44d2-8ff6-72ae448a67bb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shelf</AUni> -<AUni ws="es">taquillero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0d160219-7d51-4a60-9941-61748a9711b2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="d91d60f1-994e-4fe9-8310-19fc7cb158b3" ownerguid="92590b7e-55ca-4c96-8288-78f14e25a2a8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="d9207266-0160-4639-9189-24cf2c826fbd" ownerguid="f4e34394-ff52-4675-aa7b-feeaca45934e"> -<Form> -<AUni ws="qvm-x-ach">vidriu; vidrio</AUni> -<AUni ws="qvm-x-acl">vidriu; vidriu; vidrio</AUni> -<AUni ws="qvm-x-akh">vidriu; vidrio</AUni> -<AUni ws="qvm-x-akl">vidriu; vidriu; vidrio</AUni> -<AUni ws="qvm-x-ame">vidriu; vidrio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="d9219b0e-14bd-4167-bd13-182acfa0647f" ownerguid="d1f0df8d-1556-42e8-864d-5e39b3eb5cae"> -<PartOfSpeech> -<objsur guid="a3274cfd-225f-45fd-8851-a7b1a1e1037a" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d924bf5d-c297-43d7-af6d-968147145acb" ownerguid="acf5e294-d169-45c1-a9d3-960536e018cc"> -<ExampleWords> -<AUni ws="en">make a sound, make noise, emit, go (bang/boom), go off, sound (v), let out, articulate, articulation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something or someone making a sound?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d9256aa4-556d-4225-b533-1414b403a2ce"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chi</AUni> -<AUni ws="qvm-x-acl">chi; chi; che</AUni> -<AUni ws="qvm-x-akh">chi</AUni> -<AUni ws="qvm-x-akl">chi; chi; che</AUni> -<AUni ws="qvm-x-ame">chi</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.497" /> -<DateModified val="2022-10-16 14:55:0.184" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2e39c0b9-5ee7-492e-a885-cb18fe521023" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">CONJ.C</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="01325653-3e96-4d98-bdc0-c568db07e754" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="01586552-5dc2-4067-a18b-8864a32198e3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx CONJ.C 
\entryTyp suffix 
\gENG CONJ.C 
\gSPN CONJ.C 
\e CONJ.C 
\c N0/N0 V0/V0 R0/R0 ONSHEV/ONSHEV BN/BN 
\o 200 260 
\mp +FinalI 
\ach chi 
\akh chi 
\acl chi / _# 
\acl chi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl che +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chi / _# 
\akl chi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl che +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d9265e71-d330-4b0d-b78a-2129d2764da8" ownerguid="2330813b-7413-41a8-8eb2-ae138511c953"> -<ExampleWords> -<AUni ws="en">blazing, brilliant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a light that is very bright?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d926ebb0-3765-43a5-a6b1-8780b146bc09"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quisha; quisha:</AUni> -<AUni ws="qvm-x-acl">quisha; quisha:</AUni> -<AUni ws="qvm-x-akh">kisha; kisha:</AUni> -<AUni ws="qvm-x-akl">kisha; kisha:</AUni> -<AUni ws="qvm-x-ame">kisha; kisha:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kisha:</AUni> -<AUni ws="qvm-x-acl">*kisha:</AUni> -<AUni ws="qvm-x-akh">*kisha:</AUni> -<AUni ws="qvm-x-akl">*kisha:</AUni> -<AUni ws="qvm-x-ame">*kisha:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.993" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c3af5b31-b9a1-4c03-bf4e-25400b040a03" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kisha:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="92b1f045-a587-4ad6-904e-ae981acf3394" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="61881ac6-bcee-4636-be06-1a177558ab6c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kisha: 
\entryTyp root 
\gENG ? 
\gSPN ? 
\e *kisha: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach quisha foreshortened 
\ach quisha: 
\akh kisha foreshortened 
\akh kisha: 
\acl quisha foreshortened 
\acl quisha: 
\akl kisha foreshortened 
\akl kisha: 
\ame kisha foreshortened 
\ame kisha:</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="d92b9f97-110c-4e3a-9aec-90c55b96dc01" ownerguid="6cea20b9-67a9-4e43-81b5-ac54e38743d6"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="b13e0045-78f5-4d21-8edc-800c2b6376ec" t="o" /> -<objsur guid="17e8706c-fae0-43af-81f3-ef73697442d5" t="o" /> -<objsur guid="978aae92-3c54-4a28-9565-28ecec93b8f5" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="d92baa67-e73e-41af-b2ab-dc573716349d" ownerguid="5122f8b8-3894-457a-be2a-3e3d7463ba1a"> -<Form> -<AUni ws="qvm-x-ach">chancäca</AUni> -<AUni ws="qvm-x-acl">chancäca</AUni> -<AUni ws="qvm-x-akh">chancäca</AUni> -<AUni ws="qvm-x-akl">chancäca</AUni> -<AUni ws="qvm-x-ame">chancäca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d9340949-d9f6-4138-ad2a-ec17a29f34b1" ownerguid="638679c7-1c7c-41da-ab60-0ac7e98fcd72"> -<ExampleWords> -<AUni ws="en">and, then, but, now, it happened that, it came to pass that, one day, my next topic is, my next point is, now about</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to join two clauses or sentences without specifying the relationship between them?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d9359824-5dfb-47d3-b09c-89ce8446c231" ownerguid="2bac24a3-b9c6-42ea-befd-2faf99940fb0"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d9390d47-4a5a-4a6c-bbc9-7e475ffe54d5" ownerguid="286ee16c-a218-43d5-bbac-ab15f80c3fcf"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John <has> the money to buy a bicycle.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">have the time/money, can afford, can spare, run to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to having enough of something to do what you want?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d939743d-e325-476f-b702-47c50bed6247" ownerguid="e26ff2a3-725d-40a6-aa9c-541653a88d9a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="d93a3aef-6104-4ae3-a0f5-bbf2b7061420" ownerguid="2cc059e7-dc71-49e5-a67d-a417245ae4e5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="d93aaf42-09e2-4d80-b7c7-3ad03993f210"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">patiu; patio</AUni> -<AUni ws="qvm-x-acl">patiu; patiu; patio</AUni> -<AUni ws="qvm-x-akh">patiu; patio</AUni> -<AUni ws="qvm-x-akl">patiu; patiu; patio</AUni> -<AUni ws="qvm-x-ame">patiu; patio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+patio</AUni> -<AUni ws="qvm-x-acl">+patio</AUni> -<AUni ws="qvm-x-akh">+patio</AUni> -<AUni ws="qvm-x-akl">+patio</AUni> -<AUni ws="qvm-x-ame">+patio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.757" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7fc491ca-add8-471f-b661-d7e7a0d5775d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+patio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e6783c90-bbbb-4bc1-8d48-852abaff1fd5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fbe42b59-55e8-4ede-a2a9-40a170b75f8f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +patio 
\entryTyp root 
\gENG patio 
\gSPN patio 
\e +patio 
\c N0 
\ach patiu / ~_# 
\ach patio / _# 
\akh patiu / ~_# 
\akh patio / _# 
\acl patiu / ~_# 
\acl patiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl patio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl patiu / ~_# 
\akl patiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl patio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame patiu / ~_# 
\ame patio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d93bac06-fdd0-4cc8-b309-7defaa7a3511"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">walcush</AUni> -<AUni ws="qvm-x-acl">walcush</AUni> -<AUni ws="qvm-x-akh">walkush</AUni> -<AUni ws="qvm-x-akl">walkush</AUni> -<AUni ws="qvm-x-ame">walkush</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wallkush</AUni> -<AUni ws="qvm-x-acl">*wallkush</AUni> -<AUni ws="qvm-x-akh">*wallkush</AUni> -<AUni ws="qvm-x-akl">*wallkush</AUni> -<AUni ws="qvm-x-ame">*wallkush</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.455" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8271f7f6-a94e-4368-b723-a7ab83a0f560" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wallkush</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8b798583-6f5f-4d46-9aa2-c268648abf03" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="219c0659-bd6f-4d35-80c9-2af4da065ebd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wallkush 
\entryTyp root 
\gENG 
\gSPN 
\e *wallkush 
\c N0 
\mp +FinalC 
\ach walcush 
\akh walkush 
\acl walcush 
\akl walkush 
\ame walkush</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="d93ec668-2b33-4e36-919a-3750bca90f42" ownerguid="6baae70c-2f63-458f-9757-3bfa45f953f1"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="d93eecf7-6db3-40b9-851f-ccc8b74552fc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa:gu</AUni> -<AUni ws="qvm-x-acl">pa:gu; pa:gu; pa:go</AUni> -<AUni ws="qvm-x-akh">pa:gu</AUni> -<AUni ws="qvm-x-akl">pa:gu; pa:gu; pa:go</AUni> -<AUni ws="qvm-x-ame">pa:gu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pago</AUni> -<AUni ws="qvm-x-acl">+pago</AUni> -<AUni ws="qvm-x-akh">+pago</AUni> -<AUni ws="qvm-x-akl">+pago</AUni> -<AUni ws="qvm-x-ame">+pago</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.648" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b6b4e0cb-ad2c-4a85-b459-ca712d270efa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pago</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="360332db-226c-4218-a03f-b523f44fdcb1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="81ea9899-17f9-46f8-841b-784aed29f897" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pago 
\entryTyp root 
\gENG payment 
\gSPN pago 
\e +pago 
\c N0 
\ach pa:gu 
\akh pa:gu 
\acl pa:gu / _# 
\acl pa:gu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pa:go +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pa:gu / _# 
\akl pa:gu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pa:go +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pa:gu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="d941346f-b3f5-408d-adcd-ab0fa2a56e65" ownerguid="ccb281dc-6eaf-4de0-b0d8-cadb6efd2b67"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">humble</AUni> -<AUni ws="es">humilde</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="62e7649b-a1db-4751-a52c-97b4f83dfdd0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d943a72b-f8c4-4de4-bdd7-dab105a7cff3" ownerguid="b044e890-ce30-455c-aede-7e9d5569396e"> -<ExampleWords> -<AUni ws="en">starlight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the light of the stars?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d9457ad0-7406-4420-ae7e-2fe824ab0c8e" ownerguid="dd1d7a67-9c2a-4283-a3e0-bbe6e1d96bda"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cup</AUni> -<AUni ws="es">pocillo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9095828c-4f33-46c3-862c-c156d6851e33" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="d946a8c7-fb2b-4d8f-a5ab-a62dd1b161f8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maylanta</AUni> -<AUni ws="qvm-x-acl">maylanta</AUni> -<AUni ws="qvm-x-akh">maylanta</AUni> -<AUni ws="qvm-x-akl">maylanta</AUni> -<AUni ws="qvm-x-ame">maylanta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mayllanta</AUni> -<AUni ws="qvm-x-acl">*mayllanta</AUni> -<AUni ws="qvm-x-akh">*mayllanta</AUni> -<AUni ws="qvm-x-akl">*mayllanta</AUni> -<AUni ws="qvm-x-ame">*mayllanta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.376" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="76daa0a3-edfe-4963-8c18-0920ab382121" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mayllanta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ae3abb6f-e710-43d8-b6bd-3da10d5dcc33" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b5fed8a3-9573-48a2-b903-397c618be814" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mayllanta 
\entryTyp root 
\gENG later 
\gSPN más.rato 
\e *mayllanta 
\c ONSHEV 
\ach maylanta 
\akh maylanta 
\acl maylanta 
\akl maylanta 
\ame maylanta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d9479cda-68d1-43c6-be65-6f437aa600be" ownerguid="01441207-4935-49a5-a192-16d949f5606c"> -<ExampleWords> -<AUni ws="en">starting bell/buzzer, first quarter, second quarter, first half, half time, final bell/buzzer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What are the parts of a sports events?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d95579f6-8b1c-4d90-935f-83c64d93ca9c" ownerguid="11de0591-7d54-479b-84b2-0b48471a8e11"> -<Form> -<AUni ws="qvm-x-ach">pïmay</AUni> -<AUni ws="qvm-x-acl">pïmay</AUni> -<AUni ws="qvm-x-akh">pïmay</AUni> -<AUni ws="qvm-x-akl">pïmay</AUni> -<AUni ws="qvm-x-ame">pïmay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="FsSymFeatVal" guid="d955a1e1-2da8-486d-8f53-3509c47b67fc" ownerguid="e13ebd7a-824d-4405-8c23-e5a30f3d53a6"> -<Abbreviation> -<AUni ws="en">-</AUni> -<AUni ws="es">-</AUni> -</Abbreviation> -<Description> -<AStr ws="en"> -<Run ws="en">-</Run> -</AStr> -<AStr ws="es"> -<Run ws="es">-</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">-</AUni> -<AUni ws="es">-</AUni> -</Name> -<ShowInGloss val="True" /> -</rt> -<rt class="CmDomainQ" guid="d9560ce0-e5e1-47d4-95c2-cbed926fab27" ownerguid="1e102423-6167-486a-bfef-dad1c9cdf1eb"> -<ExampleWords> -<AUni ws="en">tricycle, scooter, skateboard, roller-skates, roller blades, ice-skates</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What kinds of vehicles are used by children or for play?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d95e2193-0a48-448e-bbe7-f3e8c9a7b253" ownerguid="afa77a2a-8b0f-4a39-91bc-040e90ffbb3a"> -<ExampleWords> -<AUni ws="en">feel happy for, rejoice with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe how a person feels when something good happens to someone else?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="d95ed463-ac64-4004-9c3b-0fce2f7639be" ownerguid="88269184-d033-454e-b750-559d5f53287c"> -<Abbreviation> -<AUni ws="en">7.2.3.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to moving out of something, such as a house or area.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Move out</AUni> -</Name> -<Questions> -<objsur guid="0162cbf5-9940-4745-84b0-296221682375" t="o" /> -<objsur guid="72c19243-f4d0-4732-a5bb-49a528f058a7" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="d9603697-aa77-4b97-9753-5c0582e4bb65" ownerguid="82e4394a-2f58-4356-8d9c-1ad9dbe95293"> -<ExampleWords> -<AUni ws="en">cold, cool, chilled, ice-cold, stone-cold</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe food that is cold?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d9623ade-d8f3-468e-b8e5-da86de118287"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">marcha</AUni> -<AUni ws="qvm-x-acl">marcha</AUni> -<AUni ws="qvm-x-akh">marcha</AUni> -<AUni ws="qvm-x-akl">marcha</AUni> -<AUni ws="qvm-x-ame">marcha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+marchar</AUni> -<AUni ws="qvm-x-acl">+marchar</AUni> -<AUni ws="qvm-x-akh">+marchar</AUni> -<AUni ws="qvm-x-akl">+marchar</AUni> -<AUni ws="qvm-x-ame">+marchar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.344" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5a4b5d7b-2fe6-48b6-9222-a2237a1da894" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+marchar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="037af6e5-b47e-46cc-ace2-ab08e59c0604" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="78817312-bcf4-4af2-b77b-9f3bb767c3f9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +marchar 
\entryTyp root 
\gENG 
\gSPN 
\e +marchar 
\c V1 
\ach marcha 
\akh marcha 
\acl marcha 
\akl marcha 
\ame marcha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d96a45b7-af4c-4b69-8f23-2fe63fb14ec8" ownerguid="4f516445-e044-4d9c-ac9b-a3178f72b405"> -<ExampleWords> -<AUni ws="en">theater, cinema, movie house, movie theater, drive-in, box office, ticket office, auditorium, aisle, screen, projector</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a place where movies are shown?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d96c6b50-60ba-4636-8cbe-f3e88a623c69" ownerguid="a312b997-99c7-4b9c-bc3c-3022f4b11091"> -<Form> -<AUni ws="qvm-x-ach">trenza</AUni> -<AUni ws="qvm-x-acl">trenza</AUni> -<AUni ws="qvm-x-akh">trenza</AUni> -<AUni ws="qvm-x-akl">trenza</AUni> -<AUni ws="qvm-x-ame">trenza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="d9706437-e094-4fe8-b14f-01ea8dfdec23" ownerguid="b7ad601f-b474-4bb3-94cb-2fdee7e3f23f"> -<Form> -<AUni ws="qvm-x-ach">päcu</AUni> -<AUni ws="qvm-x-acl">päcu</AUni> -<AUni ws="qvm-x-akh">päku</AUni> -<AUni ws="qvm-x-akl">päku</AUni> -<AUni ws="qvm-x-ame">päku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="d97145da-a2e6-47ae-aad3-e9347850cb69" ownerguid="431f7d00-5a75-4537-9824-fcb14e98657b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d9728eb3-7e1c-47fb-9bfe-3c36509b70a4" ownerguid="04370e1f-25aa-4d9e-97c5-de9b59156666"> -<ExampleWords> -<AUni ws="en">bereaved</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to someone who has a relative who has died?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d974afac-8da9-4e3d-840e-412a093ad72d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mishqui</AUni> -<AUni ws="qvm-x-acl">mishqui; mishqui; mishque</AUni> -<AUni ws="qvm-x-akh">mishki</AUni> -<AUni ws="qvm-x-akl">mishki; mishki; mishke</AUni> -<AUni ws="qvm-x-ame">mishki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mishki.n</AUni> -<AUni ws="qvm-x-acl">*mishki.n</AUni> -<AUni ws="qvm-x-akh">*mishki.n</AUni> -<AUni ws="qvm-x-akl">*mishki.n</AUni> -<AUni ws="qvm-x-ame">*mishki.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.457" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="35bd4f3a-30ed-4f96-9f2c-b0fce2865820" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mishki.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a306bbf3-adec-47c6-b3a5-2c80e0d3298c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="809af787-f17d-48b3-b04c-2587717ea2aa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mishki.n 
\entryTyp root 
\gENG sweet 
\gSPN dulce 
\e *mishki.n 
\c N0 
\mp +FinalI 
\ach mishqui 
\akh mishki 
\acl mishqui / _# 
\acl mishqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mishque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mishki / _# 
\akl mishki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mishke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mishki</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="d975a233-1e48-4313-8bed-aada7460487e" ownerguid="d9f336cf-0682-4702-ab94-5ade755ddc64"> -<Abbreviation> -<AUni ws="en">7.3.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.528" /> -<DateModified val="2022-9-23 16:55:8.528" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to putting something to the side of you.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Put aside</AUni> -</Name> -<Questions> -<objsur guid="bcd6e7b5-0f8e-4cfa-9663-ba0a83561d5f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="d978baea-da66-4787-a304-7962b3d6ba35"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">moldi</AUni> -<AUni ws="qvm-x-acl">moldi</AUni> -<AUni ws="qvm-x-akh">moldi</AUni> -<AUni ws="qvm-x-akl">moldi</AUni> -<AUni ws="qvm-x-ame">moldi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+molde</AUni> -<AUni ws="qvm-x-acl">+molde</AUni> -<AUni ws="qvm-x-akh">+molde</AUni> -<AUni ws="qvm-x-akl">+molde</AUni> -<AUni ws="qvm-x-ame">+molde</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.467" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bae4649f-3571-4ea2-aa65-ebc0f4834290" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+molde</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0b0b820d-5d65-47c4-a199-ad10c0978a52" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="23afcdfb-44b7-4bc6-8923-000adace9a03" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +molde 
\entryTyp root 
\gENG mold 
\gSPN 
\e +molde 
\c N0 
\mp NeverChanged 
\ach moldi 
\akh moldi 
\acl moldi 
\akl moldi 
\ame moldi 
\mp +FinalI</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d9790a23-4b88-4445-91d7-e52de9171c11" ownerguid="867f515b-ed0f-431e-a84a-6c562e1bdbb7"> -<ExampleWords> -<AUni ws="en">to smooth, even out, polish, buff, shine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to making something smooth?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d97cef24-bda8-4649-8b12-aca3ff8174e0" ownerguid="31d441c5-02eb-4d40-be94-b48e37b59652"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ogawshu</AUni> -<AUni ws="es">ogaushu</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="742cc876-9824-4739-82b0-be7e02ec4c0f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="d97cf16c-9cd0-41fc-a93f-a62cd45cce9b" ownerguid="2adb4fb7-4801-4305-abe5-600911718370"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d97fd403-8841-4104-9d8b-64830c06e555" ownerguid="593073d6-9893-4670-98fb-c485406a950b"> -<ExampleWords> -<AUni ws="en">intercede, intercession, intercessory, intervene on behalf of, interpose, mediate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to requesting that someone do something for someone else?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d980feed-3ace-4467-a3d4-6022e9c7e125" ownerguid="9a456463-3c71-4f9a-8117-dc2fcb087bd3"> -<ExampleWords> -<AUni ws="en">bank a fire</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to keeping a fire from going out, such as covering a fire with ashes to keep it from going out during the night?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d9835d5e-77c3-410d-a6d4-db3675a2357e" ownerguid="55d7b154-9174-454e-845c-9b732d791907"> -<Form> -<AUni ws="qvm-x-ach">bancu; banco</AUni> -<AUni ws="qvm-x-acl">bancu; bancu; banco</AUni> -<AUni ws="qvm-x-akh">bancu; banco</AUni> -<AUni ws="qvm-x-akl">bancu; bancu; banco</AUni> -<AUni ws="qvm-x-ame">bancu; banco</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d983c9fa-5bb7-4f7a-a5b4-50c730f6c2ac"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ricra</AUni> -<AUni ws="qvm-x-acl">ricra</AUni> -<AUni ws="qvm-x-akh">rikra</AUni> -<AUni ws="qvm-x-akl">rikra</AUni> -<AUni ws="qvm-x-ame">rikra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rikra</AUni> -<AUni ws="qvm-x-acl">*rikra</AUni> -<AUni ws="qvm-x-akh">*rikra</AUni> -<AUni ws="qvm-x-akl">*rikra</AUni> -<AUni ws="qvm-x-ame">*rikra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.358" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e82c991a-d37a-4231-b54c-be4bdfdddb55" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rikra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fcaf189b-d02a-40d1-bf07-fd49f8411531" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="557b8be6-96a3-4928-bbe7-a000d6aca045" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rikra 
\entryTyp root 
\gENG 
\gSPN 
\e *rikra 
\c N0 
\ach ricra 
\akh rikra 
\acl ricra 
\akl rikra 
\ame rikra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="d98491fe-8843-4b52-834c-b854e839a29a" ownerguid="11b0dd4c-ae64-45a3-8210-dc7ae6f420b4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">blind</AUni> -<AUni ws="es">ciego</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="53b976d9-3142-483f-a72b-e21f5fdc07f8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="d9850acb-9dca-431a-8bd7-e5ec4bcffaa7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">taytitu</AUni> -<AUni ws="qvm-x-acl">taytitu; taytitu; taytito</AUni> -<AUni ws="qvm-x-akh">taytitu</AUni> -<AUni ws="qvm-x-akl">taytitu; taytitu; taytito</AUni> -<AUni ws="qvm-x-ame">taytitu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*taytitu</AUni> -<AUni ws="qvm-x-acl">*taytitu</AUni> -<AUni ws="qvm-x-akh">*taytitu</AUni> -<AUni ws="qvm-x-akl">*taytitu</AUni> -<AUni ws="qvm-x-ame">*taytitu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.845" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="936b00b1-9071-4eea-9800-faef1e319126" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*taytitu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a32aaa94-a452-4cc7-bfea-3314fb389f11" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5120f5f0-671b-4d56-96d6-a4076d5923e8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *taytitu 
\entryTyp root 
\gENG 
\gSPN 
\e *taytitu 
\c N0 
\ach taytitu 
\akh taytitu 
\acl taytitu / _# 
\acl taytitu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl taytito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl taytitu / _# 
\akl taytitu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl taytito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame taytitu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="d98546de-386a-43ef-9c62-2d8d7355ec58" ownerguid="e4fb2d9a-9684-4a9b-934d-8d9727b8d132"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">booth</AUni> -<AUni ws="es">estanque</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ee4eb662-a511-478d-bf89-36010a5ed14c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d985c7d6-c671-4885-864e-aefd412bafea" ownerguid="5446b5cf-f05a-4bb2-89eb-ce63e27040f3"> -<ExampleWords> -<AUni ws="en">solo</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a piece of music meant to be played or sung by one person?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d9874aa6-a28e-4351-b79c-3ab3d257072e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jo:mu</AUni> -<AUni ws="qvm-x-acl">jo:mu; jo:mo</AUni> -<AUni ws="qvm-x-akh">jo:mu</AUni> -<AUni ws="qvm-x-akl">jo:mu; jo:mo</AUni> -<AUni ws="qvm-x-ame">hu:mu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ho:mu</AUni> -<AUni ws="qvm-x-acl">*ho:mu</AUni> -<AUni ws="qvm-x-akh">*ho:mu</AUni> -<AUni ws="qvm-x-akl">*ho:mu</AUni> -<AUni ws="qvm-x-ame">*ho:mu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.741" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b133e52b-0e5a-4c40-85da-f098db38d05e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ho:mu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="93e68721-97d6-4778-8b51-21516c530257" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d63a2df0-3f40-4284-94d7-cbb1b0e01e77" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ho:mu 
\entryTyp root 
\gENG aroma 
\gSPN aroma 
\e *ho:mu 
\c V1 
\ach jo:mu 
\akh jo:mu 
\acl jo:mu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl jo:mo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jo:mu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jo:mo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hu:mu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="d987c15d-a131-4127-8b9b-31f0334989c4" ownerguid="04fd75ce-6570-43d3-991f-e501f53f322f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d9887788-8464-437b-a18e-c60a606a2c5f" ownerguid="3fb94643-163e-4454-8d2e-3b638a5cf32b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.eat</AUni> -<AUni ws="es">comer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3ef71921-8840-4e39-996a-69ae077b5f05" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d98941d6-7b05-492c-bf73-a3965dabd225" ownerguid="6dd16e6e-fbdb-4df1-9730-4877651e68f3"> -<ExampleWords> -<AUni ws="en">efficient, productive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a way of working that is efficient?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d98a28af-b6de-45e6-8acc-aeff0c9dc204" ownerguid="0c98ec07-f83d-48f2-8d40-8776b65371c3"> -<Form> -<AUni ws="qvm-x-ach">camionëru</AUni> -<AUni ws="qvm-x-acl">camionëru; camionëru; camionëro</AUni> -<AUni ws="qvm-x-akh">camionëru</AUni> -<AUni ws="qvm-x-akl">camionëru; camionëru; camionëro</AUni> -<AUni ws="qvm-x-ame">camionëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d98b42a5-c304-4a98-a18a-8b1470a9e382" ownerguid="2ea38f3e-8291-447b-9649-27cabde45c12"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="506cdae5-e78b-4374-b539-666db13e389f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="d98c1c67-b70e-4a35-89db-2e744bd5197f" ownerguid="1b0270a5-babf-4151-99f5-279ba5a4b044"> -<Abbreviation> -<AUni ws="en">2.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the parts of the head.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Head</AUni> -</Name> -<Questions> -<objsur guid="cc68db21-902e-468c-a88f-f5c707c0684a" t="o" /> -<objsur guid="e02d0557-dc7f-4b23-973f-c6279fcb6035" t="o" /> -<objsur guid="37cbc188-8068-4c32-9bc5-569af50de4fa" t="o" /> -<objsur guid="1c4d559e-88b9-4449-bd92-33ea3a5666c3" t="o" /> -<objsur guid="90b79156-edc7-4c63-b3c5-f163393ebb5b" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="1d8633e0-4279-4ddc-826e-16aa08a977e5" t="r" /> -<objsur guid="ffd0547e-e537-4614-ac3f-6d8cd3351f33" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="bc8d0ad4-6ebf-4fa0-bc7e-60e8ec9c43db" t="o" /> -<objsur guid="2e97b83d-1152-473f-9cbe-347f0655041a" t="o" /> -<objsur guid="68ed3e51-ddc4-4cec-89ff-605259ac9fcf" t="o" /> -<objsur guid="e626c65e-eb79-4230-b07a-a6d975d3fe3d" t="o" /> -<objsur guid="c8602dc5-5c91-480a-b5ce-1c82fe3da83a" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="d992814a-4297-4289-85c3-2c0316f918fa" ownerguid="0a27d9d1-0f1f-475a-92a2-bbccf5b15f41"> -<ExampleWords> -<AUni ws="en">thirsty, thirst, dying of thirst, parched</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to being thirsty?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d99b0e5a-35b1-4f22-83aa-78afc1cbc489" ownerguid="a8430b52-643e-44c7-beab-2e571e3adcc5"> -<Form> -<AUni ws="qvm-x-ach">tacu</AUni> -<AUni ws="qvm-x-acl">tacu; taco</AUni> -<AUni ws="qvm-x-akh">taku</AUni> -<AUni ws="qvm-x-akl">taku; tako</AUni> -<AUni ws="qvm-x-ame">taku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="d99b8d90-bd5e-4cf7-a752-22afe438355e" ownerguid="74c519e5-e149-41c3-b085-3188895e1efd"> -<Form> -<AUni ws="qvm-x-ach">gueshta</AUni> -<AUni ws="qvm-x-acl">gueshta</AUni> -<AUni ws="qvm-x-akh">qeshta</AUni> -<AUni ws="qvm-x-akl">qeshta</AUni> -<AUni ws="qvm-x-ame">qishta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="d99d6dee-aebd-4da7-b6de-d2b6a099ead1" ownerguid="100e62a6-b6f4-4b30-b317-0517d6b102a9"> -<ExampleWords> -<AUni ws="en">bring someone out of their shell, bring someone out, put someone at ease</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to helping someone to not be shy?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d99e2f5f-ba24-4508-9426-8250954d861b" ownerguid="5238fe9c-4bbe-444c-b5f6-18f946b3d6aa"> -<ExampleWords> -<AUni ws="en">fall, break</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a fever decreasing?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d9a21a92-a57e-4893-8eac-e5bab46d6c5c" ownerguid="153b30a4-afac-4e88-9720-619551126cc0"> -<Form> -<AUni ws="qvm-x-ach">wiyas</AUni> -<AUni ws="qvm-x-acl">wiyas</AUni> -<AUni ws="qvm-x-akh">wiyas</AUni> -<AUni ws="qvm-x-akl">wiyas</AUni> -<AUni ws="qvm-x-ame">wiyas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PunctuationForm" guid="d9a45b7e-b90b-4715-888d-86083d2f30d1"> -<Form> -<Str> -<Run ws="en">transiti</Run> -</Str> -</Form> -</rt> -<rt class="WfiAnalysis" guid="d9a499aa-805c-45f0-b43f-2c394ceff053" ownerguid="6b836eab-0b1e-425c-9f13-3e53a0b6f06b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="7fc48ea4-e863-4e6b-9fb5-b3b3b483590a" t="o" /> -<objsur guid="e6a36c58-c1c9-4eb4-9907-c1abc321bde3" t="o" /> -<objsur guid="ea4cef47-8eca-4b02-9021-d347c651d85f" t="o" /> -<objsur guid="6efd43bb-eafa-4a19-bab3-bb3333c0192f" t="o" /> -<objsur guid="544f6158-38a9-40db-b4f4-39da0176f8c4" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="d9a55050-165c-4189-98f6-122c9dd474ab" ownerguid="f4f1c5ec-b343-411d-be17-7e099adbc5f4"> -<Form> -<AUni ws="qvm-x-ach">cervëza</AUni> -<AUni ws="qvm-x-acl">cervëza</AUni> -<AUni ws="qvm-x-akh">cervëza</AUni> -<AUni ws="qvm-x-akl">cervëza</AUni> -<AUni ws="qvm-x-ame">cervëza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="d9a8c4f8-535b-45c8-ba3e-3ab6f9ed2771" ownerguid="53628a13-3087-4200-bb25-13995732318e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">class</AUni> -<AUni ws="es">clase</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3abc31f5-5e24-4548-aae7-df036c23df0d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="d9ad060b-2236-465e-a6db-2a45c90c49cb" ownerguid="a97ff68c-ac58-405a-a366-6e8a3df23715"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Cärru cumariptin uma tulunta shaptushga.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="d9af1cb4-a20d-4891-8893-5d4e6effea28" ownerguid="2594fe01-4d20-4a20-b093-2df70bced18f"> -<ExampleWords> -<AUni ws="en">inelastic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that cannot be stretched?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="d9b1216f-1802-4aee-b08b-4158c3398bb3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ploma:da</AUni> -<AUni ws="qvm-x-acl">ploma:da</AUni> -<AUni ws="qvm-x-akh">ploma:da</AUni> -<AUni ws="qvm-x-akl">ploma:da</AUni> -<AUni ws="qvm-x-ame">ploma:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+plomada</AUni> -<AUni ws="qvm-x-acl">+plomada</AUni> -<AUni ws="qvm-x-akh">+plomada</AUni> -<AUni ws="qvm-x-akl">+plomada</AUni> -<AUni ws="qvm-x-ame">+plomada</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.881" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2cf279c1-3d44-4888-a902-59ab340a39df" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+plomada</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b8d28a68-ef19-4ff1-8256-2cd784963408" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c3a18212-32de-41f8-a2d5-0e87a2991aee" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +plomada 
\entryTyp root 
\gENG plumb.line 
\gSPN 
\e +plomada 
\c N0 
\ach ploma:da 
\akh ploma:da 
\acl ploma:da 
\akl ploma:da 
\ame ploma:da</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="d9b61cb2-0a0b-411e-9d05-581e91ba0d1c" ownerguid="b9e273b2-9d83-41e3-bc22-7f5b76fc17ae"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.blister</AUni> -<AUni ws="es">ampollar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e5ba30aa-7d56-4d5a-a2b6-d50709b73d5d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="d9b8e86f-9ede-4206-b3da-b8a3c5e106c8" ownerguid="ab127348-7f98-43e5-801d-01241ecdb517"> -<ExampleWords> -<AUni ws="en">lower, lower away, move (something) down, drop it down a peg</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving something down?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="d9b92d8b-091c-46db-ba9c-174e8f561145" ownerguid="d11bbd1e-c4c5-4207-aa3c-486bf7bba543"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 20.14 Rantinan cashgalami imatapis baratyan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="d9b9db39-d87e-4d04-8298-1f1b969dbda1" ownerguid="3a2c0773-6b3e-4f8b-909d-c8f84d66d4f4"> -<Abbreviation> -<AUni ws="en">9.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.680" /> -<DateModified val="2022-9-23 16:55:8.680" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general adverbs that can replace or stand for other adverbs.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">General adverbs</AUni> -</Name> -<Questions> -<objsur guid="88df88ab-fbf6-4d25-9bd5-e8fa749ae9eb" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="d9ba9bd1-5d23-4a08-8b8d-95816a7eba0b" ownerguid="1229dd8f-5cfc-4644-93c3-d256fc34d054"> -<ExampleWords> -<AUni ws="en">Christian, Christianity, Jesus Christ, the Virgin Mary, the Trinity, the Father, the Son of God, the Holy Spirit, Lord, cross, crucify, crucifixion, resurrection, Bible, Biblical, Scripture, Old Testament, New Testament, Gospel, apostle, church, chapel, churchgoer, priest, vicar, minister, pastor, service, Communion, Mass, sacrament, baptize, baptism, christen, christening, Christian name, confession, Christmas, Good Friday, Easter, crucifix, make the sign of the cross, saint, patron saint, Roman Catholic, Catholic, Pope, papal, Orthodox Church, Reformation, Protestant Church, Protestant, Anglican, Baptist, Methodist, Lutheran, Presbyterian</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to talk about Christianity?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d9bb5ea8-6921-44fb-885c-ace03ce37871" ownerguid="9d897083-b92e-4a74-99c9-536ddbd56329"> -<Form> -<AUni ws="qvm-x-ach">lepra</AUni> -<AUni ws="qvm-x-acl">lepra</AUni> -<AUni ws="qvm-x-akh">lepra</AUni> -<AUni ws="qvm-x-akl">lepra</AUni> -<AUni ws="qvm-x-ame">lepra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="d9c24ac6-d5b4-4ed7-87b8-98506b679c30" ownerguid="2b1bbad5-319c-4be7-b46a-1de7fd49b381"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="d9c288d9-54c0-42ab-a3e0-70d8a1951a74"> -<Analyses> -<objsur guid="2b9ce81a-0194-423a-8be4-098b909b0e64" t="o" /> -<objsur guid="5c382242-9d84-408a-a5b9-e6cc2320c640" t="o" /> -<objsur guid="99c45d69-8aae-4e74-84e2-8757c91e1d07" t="o" /> -</Analyses> -<Checksum val="194946995" /> -<Form> -<AUni ws="qvm-x-akh">amana</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="d9c2e604-bbf7-4382-8732-88500e441a0e" ownerguid="a7ecefe2-bb1a-45db-ba70-38a81182c855"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="212ab151-2641-42d6-9c3c-ec85178d1a33" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">recruitment</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2f7a41e6-ea19-4e47-bfb1-9a642e3a0182" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="d9cb2e69-133d-4525-bca5-50b0f3402cbb" ownerguid="ff736f67-197b-46b9-bc14-edbeb1fb3d5a"> -<Abbreviation> -<AUni ws="en">6.8.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to owning something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Own, possess</AUni> -</Name> -<OcmCodes> -<Uni>421 Property System</Uni> -</OcmCodes> -<Questions> -<objsur guid="be1b9e87-3a82-4ad0-a4b9-8faf74ee2516" t="o" /> -<objsur guid="af0084eb-1b87-4fdb-aaa7-7544cba465a1" t="o" /> -<objsur guid="ce26c232-819a-4fcf-b34b-3a30ab85d5bd" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="d9cff43e-4df9-480e-bc8f-4b80984a2818" ownerguid="a9db2851-6ec1-43c5-89df-c27ea6f2b7a6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="d9d05e45-0a86-4881-b763-fc823156bcd5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sentencia</AUni> -<AUni ws="qvm-x-acl">sentencia</AUni> -<AUni ws="qvm-x-akh">sentencia</AUni> -<AUni ws="qvm-x-akl">sentencia</AUni> -<AUni ws="qvm-x-ame">sentencia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sentenciar</AUni> -<AUni ws="qvm-x-acl">+sentenciar</AUni> -<AUni ws="qvm-x-akh">+sentenciar</AUni> -<AUni ws="qvm-x-akl">+sentenciar</AUni> -<AUni ws="qvm-x-ame">+sentenciar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.498" /> -<DateModified val="2022-10-10 21:18:47.203" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1426e403-cbb5-479c-9ca3-9433e51e7174" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sentenciar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bef2781e-c09d-47b9-a084-81503e450ba9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a860a3ca-c29e-40c2-97cd-30d988b9bf9f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sentenciar 
\entryTyp root 
\gENG 
\gSPN 
\e +sentenciar 
\c V2 
\ach sentencia 
\akh sentencia 
\acl sentencia 
\akl sentencia 
\ame sentencia</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="d9d09b53-b951-4552-9639-20a9bce75091"> -<Analyses> -<objsur guid="3b9d2d42-89df-48d6-96d3-5451f1bcf6df" t="o" /> -</Analyses> -<Checksum val="1976807006" /> -<Form> -<AUni ws="qvm-x-akh">carcilpita</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="d9d0f699-a3a6-451f-82df-19402359e627" ownerguid="8a81b9bc-9c66-4d57-a2d1-2e592604c4b1"> -<ExampleWords> -<AUni ws="en">be full of, be filled with, be crammed with, be stuffed with, be packed with, be packed full of, be crammed full of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something being full of something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="d9d31255-e2c9-4256-98f0-921587462356" ownerguid="c235964c-7af8-4f15-95fc-7d47a850a71f"> -<Form> -<AUni ws="qvm-x-ach">alista</AUni> -<AUni ws="qvm-x-acl">alista</AUni> -<AUni ws="qvm-x-akh">alista</AUni> -<AUni ws="qvm-x-akl">alista</AUni> -<AUni ws="qvm-x-ame">alista</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="d9d42662-44ef-4de0-b927-e359fe5a7223" ownerguid="7ca45f0e-9923-4f81-878d-da1b20f82bf6"> -<Form> -<AUni ws="qvm-x-ach">atacshu</AUni> -<AUni ws="qvm-x-acl">atacshu; atacshu; atacsho</AUni> -<AUni ws="qvm-x-akh">atakshu</AUni> -<AUni ws="qvm-x-akl">atakshu; atakshu; ataksho</AUni> -<AUni ws="qvm-x-ame">atakshu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d9d51c58-ecff-4e68-ba88-c5c96083536b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">n</AUni> -<AUni ws="qvm-x-acl">n</AUni> -<AUni ws="qvm-x-akh">n</AUni> -<AUni ws="qvm-x-akl">n</AUni> -<AUni ws="qvm-x-ame">n</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.609" /> -<DateModified val="2022-10-16 15:38:54.245" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="2" /> -<LexemeForm> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">3</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx 3 
\entryTyp suffix 
\gENG 3 
\gSPN 3 
\e 3 
\c V1/V0 V2/V0 
\o 140 
\mp +foreshortens 
\ach n 
\akh n 
\acl n 
\akl n 
\ame n 
\mp +FinalC 
\mcc 3 / ~_ TOP</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="d9dacf66-561b-49f6-b9f8-8d3ffdc1cd49" ownerguid="2b06d979-7ca1-4a50-8a53-64413a1fec7c"> -<Form> -<AUni ws="qvm-x-ach">ruru</AUni> -<AUni ws="qvm-x-acl">ruru; ruru; ruro</AUni> -<AUni ws="qvm-x-akh">ruru</AUni> -<AUni ws="qvm-x-akl">ruru; ruru; ruro</AUni> -<AUni ws="qvm-x-ame">ruru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="d9dadfef-c280-4de9-9268-c77b80fb2e83" ownerguid="624cc5cd-3751-4de6-a202-0d029ab8a53f"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="d9dd063e-f77a-4a1a-9315-6e23a1e84ab1" ownerguid="0a4d2b93-e0ea-48d5-83db-57831794a8df"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">loose.rocks</AUni> -<AUni ws="es">piedras.sueltas</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b3d4de0d-7d4d-475c-af97-bcf24045f927" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="d9dffc78-c547-41ce-88d9-3766db05e2de" ownerguid="764f7789-e255-46d3-82dd-4e20f7e4c6a2"> -<Form> -<AUni ws="qvm-x-ach">chicharru</AUni> -<AUni ws="qvm-x-acl">chicharru; chicharru; chicharro</AUni> -<AUni ws="qvm-x-akh">chicharru</AUni> -<AUni ws="qvm-x-akl">chicharru; chicharru; chicharro</AUni> -<AUni ws="qvm-x-ame">chicharru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="d9e03373-2058-4d9c-b4cd-7babe75e5d6a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">leopardu; leopardo</AUni> -<AUni ws="qvm-x-acl">leopardu; leopardu; leopardo</AUni> -<AUni ws="qvm-x-akh">leopardu; leopardo</AUni> -<AUni ws="qvm-x-akl">leopardu; leopardu; leopardo</AUni> -<AUni ws="qvm-x-ame">leopardu; leopardo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+leopardo</AUni> -<AUni ws="qvm-x-acl">+leopardo</AUni> -<AUni ws="qvm-x-akh">+leopardo</AUni> -<AUni ws="qvm-x-akl">+leopardo</AUni> -<AUni ws="qvm-x-ame">+leopardo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.74" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7a42e45b-f7a8-433c-b1df-5f1b74a39b9b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+leopardo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="22c2834c-988f-4245-97ee-9f08a6f4fc7e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c7bfd2f1-41a0-403b-8479-48cd124d1648" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +leopardo 
\entryTyp root 
\gENG 
\gSPN 
\e +leopardo 
\c N0 
\ach leopardu / ~_# 
\ach leopardo / _# 
\akh leopardu / ~_# 
\akh leopardo / _# 
\acl leopardu / ~_# 
\acl leopardu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl leopardo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl leopardu / ~_# 
\akl leopardu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl leopardo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame leopardu / ~_# 
\ame leopardo / _# 
\i DAN 7.6 Tsaypitanami ricargä leopardunirag uywata.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d9e1aab9-e791-4298-939c-64470f630fdd" ownerguid="768aed05-dbc9-4caf-9461-76cb3720f908"> -<ExampleWords> -<AUni ws="en">writhe in pain, double up, contorted with pain, convulse, convulsion, cramp, cramps, wince</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What words refer to moving because you are in pain?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d9e4f9ee-1416-4602-8a37-ed6c7013720f" ownerguid="49aa89f2-2022-4213-845e-dbbb4b53476c"> -<ExampleWords> -<AUni ws="en">come last, end with, finish with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to an event happening last?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d9e90fbf-5f23-4cc4-9336-0fc72900f5dc" ownerguid="1de2cef5-3a2d-45c1-8cb6-06b2ac087907"> -<Question> -<AUni ws="en">(9) complement to words of obligation</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="d9e93536-69a7-4568-8d91-e7c7edb82012" ownerguid="dbd168ad-e64a-44b5-af1a-e9f5f7e57d4c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="d9ecb047-a06e-4e30-8f01-7fdb5914e435" ownerguid="56c9c38c-728a-42fe-b93c-6ca67fdf2a9a"> -<ExampleWords> -<AUni ws="en">mineralize, calcify, petrify, vitrify</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the formation of minerals?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="d9edf27f-d0cb-41a8-8ed8-19c012be0cdc" ownerguid="339f54a5-125b-435f-bf37-cfc2a2bd26d3"> -<ExampleWords> -<AUni ws="en">smile, grin, beam, be all smiles, force a smile, smirk, leer, sneer, wide grin, big smile, half smile, slight smile</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to smiling?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="d9f29128-4558-403c-a9e8-335508c9ad87" ownerguid="fa49c235-7864-49a0-9e77-233506bffb53"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">hacienda</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cf29232f-7d7a-4a27-a5fb-13c9ce8cddc9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="d9f2c5cf-2a6a-4543-88b5-293548bbbd15" ownerguid="a7bbb255-5b0a-4002-ae08-64f896cfacb5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">prize</AUni> -<AUni ws="es">premio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8b533a79-919e-4f5f-bab5-03d48e749ee3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="d9f2f721-7110-4760-9ecc-67682da8a3b4" ownerguid="d2fbac5f-56d8-44be-844c-ad2acc3db7ca"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">replacement</AUni> -<AUni ws="es">repuesto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="18d70325-cb68-4127-b695-3c18f7d79468" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="d9f336cf-0682-4702-ab94-5ade755ddc64" ownerguid="2810998c-d6cc-47a3-a946-66d0986a2767"> -<Abbreviation> -<AUni ws="en">7.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.528" /> -<DateModified val="2022-9-23 16:55:8.528" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words related to moving something in a direction.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Move something in a direction</AUni> -</Name> -<Questions> -<objsur guid="10929711-6b9b-433f-a41f-be3a9613128e" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="ddef260e-b183-47f7-837e-165ffbd1af2c" t="o" /> -<objsur guid="b035dcf9-1dd0-4fb3-bd04-7c8945e92cdf" t="o" /> -<objsur guid="d975a233-1e48-4313-8bed-aada7460487e" t="o" /> -<objsur guid="7c7fc1b6-3775-4881-bbe0-9d0ce50e42a9" t="o" /> -<objsur guid="ab127348-7f98-43e5-801d-01241ecdb517" t="o" /> -<objsur guid="756f67e9-2b22-4c43-913c-ceff0e781545" t="o" /> -<objsur guid="5a39edae-1ace-4889-b636-1dfd2a1bcc3c" t="o" /> -<objsur guid="6bd023f6-730e-44c2-ae8f-78df967e2e18" t="o" /> -<objsur guid="20baa5e7-4f02-4782-a292-c6281d7b5f3a" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="d9f9ca3f-2dbf-4114-a8bc-050f578493a5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa:ga</AUni> -<AUni ws="qvm-x-acl">pa:ga</AUni> -<AUni ws="qvm-x-akh">pa:qa</AUni> -<AUni ws="qvm-x-akl">pa:qa</AUni> -<AUni ws="qvm-x-ame">pa:qa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*payqa</AUni> -<AUni ws="qvm-x-acl">*payqa</AUni> -<AUni ws="qvm-x-akh">*payqa</AUni> -<AUni ws="qvm-x-akl">*payqa</AUni> -<AUni ws="qvm-x-ame">*payqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.769" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ede44352-6805-4979-9ef1-fabb06f149ee" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*payqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bd9500ca-2e58-4802-acec-13d45e3c1c69" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0b0dc0ee-8583-4148-9283-4af5b7696561" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *payqa 
\entryTyp root 
\gENG he.she 
\gSPN él(la) 
\e *payqa 
\c NOSUFF 
\ach pa:ga 
\akh pa:qa 
\acl pa:ga 
\akl pa:qa 
\ame pa:qa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="d9fa5136-2134-4c33-9d60-36c3b92641cf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">porque</AUni> -<AUni ws="qvm-x-acl">porque</AUni> -<AUni ws="qvm-x-akh">porque</AUni> -<AUni ws="qvm-x-akl">porque</AUni> -<AUni ws="qvm-x-ame">porque</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+porque</AUni> -<AUni ws="qvm-x-acl">+porque</AUni> -<AUni ws="qvm-x-akh">+porque</AUni> -<AUni ws="qvm-x-akl">+porque</AUni> -<AUni ws="qvm-x-ame">+porque</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.901" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e0d42f2c-23f7-4659-8531-c47f7e63da35" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+porque</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0666433e-035d-4dcf-a868-90dbfa536f08" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4ccfa646-addf-46e1-acd4-efd21caa050a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +porque 
\entryTyp root 
\gENG because 
\gSPN porque 
\e +porque 
\c NOSUFF 
\ach porque 
\akh porque 
\acl porque 
\akl porque 
\ame porque</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="d9ff4b39-4302-42a0-972b-4940f98c9f3c" ownerguid="91ddf495-a28b-4a32-90dc-6f997d0cd069"> -<ExampleWords> -<AUni ws="en">instrumentalist, player, pianist, violinist, drummer, trumpeter, flutist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a person who plays a musical instrument?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="da038c26-ac03-418d-92ef-2820686c3b30"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">travis</AUni> -<AUni ws="qvm-x-acl">travis</AUni> -<AUni ws="qvm-x-akh">travis</AUni> -<AUni ws="qvm-x-akl">travis</AUni> -<AUni ws="qvm-x-ame">travis</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+través</AUni> -<AUni ws="qvm-x-acl">+través</AUni> -<AUni ws="qvm-x-akh">+través</AUni> -<AUni ws="qvm-x-akl">+través</AUni> -<AUni ws="qvm-x-ame">+través</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.78" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b70edf0c-a56b-4be9-97ed-10847f1e3477" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+través</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a8f9fa65-385f-4596-93d8-642306b99ddf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d1c27acd-f745-4224-b3c6-a06f906c32f4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +través 
\entryTyp root 
\gENG 
\gSPN través 
\e +través 
\c N0 
\mp +assimilated 
\ach travis 
\akh travis 
\acl travis 
\akl travis 
\ame travis 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="da047d2c-6e45-4d78-8904-43437a30086f" ownerguid="c5b8c936-1e01-4e86-9145-a2b721ec9e39"> -<ExampleWords> -<AUni ws="en">shovel, spade, hoe, pickaxe, steam shovel, bulldozer, backhoe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What tools and machines are used to dig?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="da066ca6-9a83-4438-bb50-f98f0d18e877"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shulwa; shulwa:</AUni> -<AUni ws="qvm-x-acl">shulwa; shulwa:</AUni> -<AUni ws="qvm-x-akh">shulwa; shulwa:</AUni> -<AUni ws="qvm-x-akl">shulwa; shulwa:</AUni> -<AUni ws="qvm-x-ame">shulwa; shulwa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shullwa:</AUni> -<AUni ws="qvm-x-acl">*shullwa:</AUni> -<AUni ws="qvm-x-akh">*shullwa:</AUni> -<AUni ws="qvm-x-akl">*shullwa:</AUni> -<AUni ws="qvm-x-ame">*shullwa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.632" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e8513273-ae19-456a-a9de-ef51bacedaf3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shullwa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="117ddddb-ba3f-4c6c-92cb-0a361448a812" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="06d33ca4-f278-4b52-b0fb-2895927a4880" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shullwa: 
\entryTyp root 
\gENG slip 
\gSPN resbalar 
\e *shullwa: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach shulwa foreshortened 
\ach shulwa: 
\akh shulwa foreshortened 
\akh shulwa: 
\acl shulwa foreshortened 
\acl shulwa: 
\akl shulwa foreshortened 
\akl shulwa: 
\ame shulwa foreshortened 
\ame shulwa:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="da0704b5-b6ba-4df2-abbc-fb9e4e535e69" ownerguid="593e6a82-63c8-49d4-b54e-8299fea67f83"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="da077628-f737-408c-a90d-b9e204483681" ownerguid="7dede9cd-0af7-4eff-90ed-d0a47a5e9cdc"> -<Form> -<AUni ws="qvm-x-ach">ura; urä</AUni> -<AUni ws="qvm-x-acl">ura; urä</AUni> -<AUni ws="qvm-x-akh">ura; urä</AUni> -<AUni ws="qvm-x-akl">ura; urä</AUni> -<AUni ws="qvm-x-ame">ura; urä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="da0987ff-e40c-48e3-94ae-5960ebf72dde" ownerguid="6804db44-b71b-4452-98b1-b726bc7cf022"> -<ExampleWords> -<AUni ws="en">resounding, rumble, booming</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe a sound that is loud and low?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="da0a33da-5e4a-49f2-ac73-dc9457f51e3d" ownerguid="b16de6a0-71dd-448c-9ffa-49f6646a5219"> -<ExampleWords> -<AUni ws="en">race, dash, marathon, long/short distance race, racecourse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a race?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="da0b9346-2680-4d86-a685-cbe4073aa805" ownerguid="fcfc5d75-a155-4c4f-b607-fac923566087"> -<Form> -<AUni ws="qvm-x-ach">ruywa</AUni> -<AUni ws="qvm-x-acl">ruywa</AUni> -<AUni ws="qvm-x-akh">ruywa</AUni> -<AUni ws="qvm-x-akl">ruywa</AUni> -<AUni ws="qvm-x-ame">ruywa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="da0cf84f-283a-4456-96d0-25c5194810a5" ownerguid="82d03809-1149-4ba4-9e71-5a2342de8675"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mixed.breed</AUni> -<AUni ws="es">ordinario</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="90945373-3d86-479f-a5ec-af0d8f66a438" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="da0dac76-6614-4c95-9dcb-5bee9ca0ad1c" ownerguid="738a09a5-59df-40f9-8a4e-176e00d03bbf"> -<ExampleWords> -<AUni ws="en">gun, firearm, rifle, pistol, revolver, repeater, shotgun, six-gun, six-shooter, smoothbore, machine gun</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What types of guns are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="da113b4f-f826-4f47-ad44-3a47244dbfc1" ownerguid="d80360f9-7319-40a7-a2bc-fd8718711ba4"> -<ExampleWords> -<AUni ws="en">previous, preceding, earlier, the one before</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe something that comes before another in a series?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="da137de8-4c59-43fb-b117-7e2d3a9e37a7" ownerguid="0aae1951-4d5b-45a0-853c-1839764c9862"> -<ExampleWords> -<AUni ws="en">midget, squirt, dwarf, runt, shrimp</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a short person?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="da137f95-6c7c-4027-bf4e-7bc27365a6e6" ownerguid="a7a204aa-c7e2-40c9-9734-bf83a5e9b1a8"> -<Form> -<AUni ws="qvm-x-ach">ishqui</AUni> -<AUni ws="qvm-x-acl">ishqui; ishque</AUni> -<AUni ws="qvm-x-akh">ishki</AUni> -<AUni ws="qvm-x-akl">ishki; ishke</AUni> -<AUni ws="qvm-x-ame">ishki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="da15f3ef-54e7-4f4f-baf0-51817eda4f16" ownerguid="18a6684f-d324-45ee-855c-44d473916b14"> -<ExampleWords> -<AUni ws="en">phase, aspect</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to part of a longer time period?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="da15ff44-522b-4be6-bbfe-95b39d8e10c1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">respita</AUni> -<AUni ws="qvm-x-acl">respita</AUni> -<AUni ws="qvm-x-akh">respita</AUni> -<AUni ws="qvm-x-akl">respita</AUni> -<AUni ws="qvm-x-ame">respita</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+respetar</AUni> -<AUni ws="qvm-x-acl">+respetar</AUni> -<AUni ws="qvm-x-akh">+respetar</AUni> -<AUni ws="qvm-x-akl">+respetar</AUni> -<AUni ws="qvm-x-ame">+respetar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.338" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3a53d330-6339-4dbe-8586-6564d5c6f4ed" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+respetar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a410bb95-5ab1-4266-82dc-47a44aa7a92c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f179a259-5480-43e9-83b9-5fc10cfede70" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +respetar 
\entryTyp root 
\gENG respect 
\gSPN respetar 
\e +respetar 
\c V2 
\ach respita 
\akh respita 
\acl respita 
\akl respita 
\ame respita</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="da1a2528-eb3d-4989-ba14-4e083754643b" ownerguid="b5179c37-f18c-473d-bf8d-b96f23503f3c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="CmDomainQ" guid="da1d2c1f-2758-46a7-8fba-cf176602d7b9" ownerguid="a9fbc056-3134-41af-baf4-9f63fa5bd5ae"> -<ExampleWords> -<AUni ws="en">dripping (of water), steady drip, drip-drip (of water)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What is a steady dripping called?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="da1df3f0-8d1d-4a12-8b7a-1a9e7cd6a8b7" ownerguid="713aea02-c693-434b-93fe-fdb801f02965"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/R0 V0/R0 V1/R0 V2/R0 R0/R0 BN/BN</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ADV</AUni> -<AUni ws="es">ADV</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="46fee199-b257-4f02-bbda-f340d9d79eff" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="da1e9a52-aa02-4d81-919f-d2845c483e3d" ownerguid="269b22ac-0aaa-4add-afc5-a67150dbb5af"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gossiper</AUni> -<AUni ws="es">chismoso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0c536643-88a9-4b37-8be8-7f5ebb634c4c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="da1f898d-e45a-4d1f-a53e-50703871eb10" ownerguid="dae490b0-c4a6-48a5-bcd0-7c9b25bf7554"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="da1fec31-048a-423a-ab67-9148322cbc70" ownerguid="9a7604b4-d42f-44b7-9aef-47847dc93f0b"> -<ExampleWords> -<AUni ws="en">agonizing, distressing, hard, hurtful, painful, tormenting, torturing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that causes someone to suffer?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="da203891-90a2-48f0-955a-8a80b6c62af9" ownerguid="53ba3b61-4f4e-4749-8a7f-0d2b327a113d"> -<Abbreviation> -<AUni ws="en">6.1.2.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.350" /> -<DateModified val="2022-9-23 16:55:8.350" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to arranging an event, such as a meeting.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Arrange an event</AUni> -</Name> -<Questions> -<objsur guid="9259107c-8ff9-48bf-8918-598247a39272" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="2e95bd1e-82f0-461d-8ca6-b5f1ce1fb180" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="da21cb83-d4bf-427f-a118-a2a4e0b5bf30" ownerguid="c6c772af-7b6b-4393-b0da-5b4a329d3426"> -<ExampleWords> -<AUni ws="en">portion, helping, serving, intake, ration, measure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the amount of food that someone is given?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="da22329f-8b3c-4a18-9a43-2fa23eac7790"> -<Analyses> -<objsur guid="13e46dd8-1461-40f7-b310-5516268147fb" t="o" /> -<objsur guid="77de6f3c-0fc3-4f16-97e9-f96726c0a9e6" t="o" /> -</Analyses> -<Checksum val="882792681" /> -<Form> -<AUni ws="qvm-x-akh">ali</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="da2363a6-978d-404c-bf9c-674e724b64a5" ownerguid="31e0fde8-b3ab-47ae-b791-54309e6ed0bd"> -<ExampleWords> -<AUni ws="en">progressive, innovative, forward-looking, move with the times, go-ahead</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a modern person or organization?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="da2697a9-eb2e-4383-b727-b4ba4f3b8c76" ownerguid="5cb7a702-6c8d-4bc7-b4a4-8eab7fe68ede"> -<Form> -<AUni ws="qvm-x-ach">macëta</AUni> -<AUni ws="qvm-x-acl">macëta</AUni> -<AUni ws="qvm-x-akh">macëta</AUni> -<AUni ws="qvm-x-akl">macëta</AUni> -<AUni ws="qvm-x-ame">macëta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="da297384-5c99-4d4f-9946-eda10138117a" ownerguid="e10b9449-08a3-4c13-aff2-31486749b62f"> -<ExampleWords> -<AUni ws="en">investigator, private investigator, detective, private detective, inquisitor, private eye</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a person who investigates a crime?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="da2abd01-01f7-4eaf-adac-7ad84be99862" ownerguid="4ba2b5d4-9029-49f5-830b-7cc384d5b68b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="da32de86-4116-4d61-9853-25ca71d1c90f" ownerguid="70c6dcab-db0d-45f4-aa98-712513bffa4a"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="da39c0d9-a5c1-4f10-bd3b-4e988abcab5a" ownerguid="60dc7cf6-0a41-4cd3-99a6-0b7a71488e7e"> -<Abbreviation> -<AUni ws="en">3.4.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.143" /> -<DateModified val="2022-9-23 16:55:8.143" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling sorry--to feel bad about something bad that you did.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25W Sorrow, Regret</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Sorry</AUni> -</Name> -<Questions> -<objsur guid="d8c70517-ab34-4b75-b388-31c106052b02" t="o" /> -<objsur guid="bbc7bddc-b618-4460-85a8-210c42480f64" t="o" /> -<objsur guid="ace273a0-b780-4a31-94ea-33fc0e937168" t="o" /> -<objsur guid="0ce136f1-41c0-49c7-b47e-03affc1193de" t="o" /> -<objsur guid="348c332c-e095-4f8f-8cf3-626b68acb5e9" t="o" /> -<objsur guid="bde134cb-6414-453d-9241-c52a5cef9df1" t="o" /> -<objsur guid="8eddd3fe-6307-4d67-89fe-c445cfab128a" t="o" /> -<objsur guid="7aef1599-dbbe-4929-8c52-eb28af1784d1" t="o" /> -<objsur guid="e0986e12-335c-4cf0-80a2-c639e2737ff6" t="o" /> -<objsur guid="75c15447-2568-43e4-8f68-7b4aa585a60a" t="o" /> -<objsur guid="8d0beef8-e1a2-4dd8-8869-6b5aea7ad14b" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="43cb3488-711b-4d9d-9d0e-03d0c1f6eb8b" t="o" /> -<objsur guid="e08e252a-9227-42e4-bcb8-b803d25071b6" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="da3c18df-1023-4ef1-8a28-3b7549604028"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lucli</AUni> -<AUni ws="qvm-x-acl">lucli; lucle</AUni> -<AUni ws="qvm-x-akh">lukli</AUni> -<AUni ws="qvm-x-akl">lukli; lukle</AUni> -<AUni ws="qvm-x-ame">lukli</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lluklli</AUni> -<AUni ws="qvm-x-acl">*lluklli</AUni> -<AUni ws="qvm-x-akh">*lluklli</AUni> -<AUni ws="qvm-x-akl">*lluklli</AUni> -<AUni ws="qvm-x-ame">*lluklli</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.223" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b48262b5-a121-4bc2-82bb-3633646e68aa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lluklli</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7a6331fc-4eae-42a7-9da0-de5e49481187" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="276765c8-1f3e-4a89-9b71-337c760a013a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lluklli 
\entryTyp root 
\gENG pick 
\gSPN coger 
\e *lluklli 
\c V2 
\mp +FinalI 
\ach lucli 
\akh lukli 
\acl lucli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lucle +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lukli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lukle +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lukli</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="da3cbefa-53b2-488a-9973-500ce70108e4" ownerguid="8b98c27e-351e-4953-ba13-d4d1e282ea33"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="da3dd0be-24b7-437b-835b-26c3e93ceae1" ownerguid="76a4a286-1c8a-4c4a-9eaf-dca040be574a"> -<ExampleWords> -<AUni ws="en">courageous, brave, bold, adventurous, assured, audacious, confident, cool under fire, daring, dauntless, doughty, fearless, gallant, gutsy, heroic, intrepid, never-say-die, plucky, spunky, stout, stouthearted, undaunted, valiant, valorous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who is brave?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="da41ea1f-dd09-421d-a1a5-174ff43f4eff" ownerguid="a7b32d1b-1be7-43ec-94a1-fc7bdd826168"> -<Abbreviation> -<AUni ws="en">9.2.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain to list all classifiers.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Classifiers</AUni> -</Name> -<Questions> -<objsur guid="04e7b038-affb-45ab-9c9a-27b2837ad9c3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="da421589-6183-4e82-ab9c-5cbe747ec0a0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">umaca</AUni> -<AUni ws="qvm-x-acl">umaca</AUni> -<AUni ws="qvm-x-akh">umaka</AUni> -<AUni ws="qvm-x-akl">umaka</AUni> -<AUni ws="qvm-x-ame">umaka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*umaka</AUni> -<AUni ws="qvm-x-acl">*umaka</AUni> -<AUni ws="qvm-x-akh">*umaka</AUni> -<AUni ws="qvm-x-akl">*umaka</AUni> -<AUni ws="qvm-x-ame">*umaka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.220" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b916ab61-6f02-4352-bac1-f2ca5aac0785" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*umaka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1c2916d7-62d5-49c7-a301-729d5fd36811" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1b6d6972-3466-4dd8-a93e-16d5131e3353" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *umaka 
\entryTyp root 
\gENG headstrap 
\gSPN ? 
\e *umaka 
\c N0 
\ach umaca 
\akh umaka 
\acl umaca 
\akl umaka 
\ame umaka</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="da421f47-13c2-4959-90ca-3011adf5aae9" ownerguid="8da190db-383a-43d3-aed7-ecd832665c19"> -<Form> -<AUni ws="qvm-x-ach">cincel; cincil</AUni> -<AUni ws="qvm-x-acl">cincel; cincil; cincel</AUni> -<AUni ws="qvm-x-akh">cincel; cincil</AUni> -<AUni ws="qvm-x-akl">cincel; cincil; cincel</AUni> -<AUni ws="qvm-x-ame">cincel; cincil</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="da487a88-9085-4c30-af73-6520961ceb6c" ownerguid="531ef61d-ea5e-427d-8eba-cb6d4dee392b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chisel</AUni> -<AUni ws="es">escoplo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6feab5e5-9c85-430f-9751-8c46e75da77d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="da492d5b-a48a-4f5e-a7e4-fbaa17b825a6" ownerguid="76a4a286-1c8a-4c4a-9eaf-dca040be574a"> -<ExampleWords> -<AUni ws="en">be brave enough to do something, dare, have the guts to do something, have the nerve to do something, pluck up the courage to do something, have the courage of your convictions</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to being brave enough to do something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="da4b1c8f-1d4e-44bc-a075-360d1525d581" ownerguid="e4316953-e75a-41a4-96a3-fd2ca43906d9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="da4b615f-bbdc-49e7-8626-b9874352bb2e" ownerguid="c6361356-0b5c-44f1-8fe2-7f3c28d41dbd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">nomad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b0c4436d-04bf-4595-9c89-9cbe4b368697" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="da4e8f5c-b088-4c21-93a5-c820f5f919ff"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mochgu</AUni> -<AUni ws="qvm-x-acl">mochgu; mochgo</AUni> -<AUni ws="qvm-x-akh">mochqu</AUni> -<AUni ws="qvm-x-akl">mochqu; mochqo</AUni> -<AUni ws="qvm-x-ame">muchqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mutrqu</AUni> -<AUni ws="qvm-x-acl">*mutrqu</AUni> -<AUni ws="qvm-x-akh">*mutrqu</AUni> -<AUni ws="qvm-x-akl">*mutrqu</AUni> -<AUni ws="qvm-x-ame">*mutrqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.525" /> -<DateModified val="2022-10-10 21:18:47.204" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="71832a7d-e942-49c6-adaf-6cbe7b4e70a4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mutrqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1bb9cd29-f501-4877-ac4a-4ab344c24475" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="03a569b4-6acb-4358-a3a3-48d42e22bc05" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mutrqu 
\entryTyp root 
\gENG 
\gSPN 
\e *mutrqu 
\c V1 
\ach mochgu 
\akh mochqu 
\acl mochgu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl mochgo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mochqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mochqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame muchqu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="da52b781-d833-4cd6-901b-afe5c04d044f" ownerguid="cc308441-2f6a-49a5-91b9-3c392e55f57e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="da582e96-f239-40ee-869f-2230a87abe75"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">grana:ti; grana:ti</AUni> -<AUni ws="qvm-x-acl">grana:ti; grana:ti; grana:te</AUni> -<AUni ws="qvm-x-akh">grana:ti; grana:ti</AUni> -<AUni ws="qvm-x-akl">grana:ti; grana:ti; grana:te</AUni> -<AUni ws="qvm-x-ame">grana:ti; grana:ti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+granate</AUni> -<AUni ws="qvm-x-acl">+granate</AUni> -<AUni ws="qvm-x-akh">+granate</AUni> -<AUni ws="qvm-x-akl">+granate</AUni> -<AUni ws="qvm-x-ame">+granate</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.629" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c460e5ad-78d8-4a92-b5ac-8c931e36cd90" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+granate</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="09d2356e-f6f4-4dd3-bde7-578b8302e025" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d3c9de15-258e-4df6-85df-dba494323f27" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +granate 
\entryTyp root 
\gENG 
\gSPN 
\e +granate 
\c N0 
\mp +FinalI 
\ach grana:ti / _# 
\ach grana:ti / ~_# 
\akh grana:ti / _# 
\akh grana:ti / ~_# 
\acl grana:ti / _# 
\acl grana:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl grana:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl grana:ti / _# 
\akl grana:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl grana:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame grana:ti / _# 
\ame grana:ti / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="da5870fc-97b1-4cee-b2c3-f8928f448819" ownerguid="d117aa22-3f18-47c4-9683-51ecf1dc7134"> -<ExampleWords> -<AUni ws="en">trunk, stalk, reed, bole, woody, base</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the trunk?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="da5a7af0-15f2-4b44-a68a-32e070651cfb" ownerguid="5fdf3946-7e47-4fd2-906f-4da7ce5fa490"> -<ExampleWords> -<AUni ws="en">snappy comeback, retort, repartee</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a humorous answer?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="da5bbc87-883e-4a96-aec6-68feb30814a6" ownerguid="5ec50c96-f6e8-4a5e-baf7-a70fb47280ee"> -<Form> -<AUni ws="qvm-x-ach">molca</AUni> -<AUni ws="qvm-x-acl">molca</AUni> -<AUni ws="qvm-x-akh">molka</AUni> -<AUni ws="qvm-x-akl">molka</AUni> -<AUni ws="qvm-x-ame">mulka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="da5c8ca5-f594-4b6f-9add-493f6d1d5a80" ownerguid="99327483-571e-48ae-9194-e7f224067ffe"> -<Form> -<AUni ws="qvm-x-ach">tinäja</AUni> -<AUni ws="qvm-x-acl">tinäja</AUni> -<AUni ws="qvm-x-akh">tinäja</AUni> -<AUni ws="qvm-x-akl">tinäja</AUni> -<AUni ws="qvm-x-ame">tinäja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="da5d1da5-80c8-491a-8318-384102eecb21" ownerguid="b9342936-0ace-412f-996d-a521b341ce02"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dry</AUni> -<AUni ws="es">secar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="093e8dbf-7fcd-430e-95d5-a96d0c35930b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="da5d4619-2ec3-4a29-8cbc-59ff4a487adf" ownerguid="50ac28ab-7385-408f-b5eb-3e27b191fcf4"> -<ExampleWords> -<AUni ws="en">edit, draft, proofread, proofreader</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to getting a book ready to publish?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="da5f4013-13ec-41d5-bc39-06deefd5444f" ownerguid="672982f9-90f7-4d71-85da-a54578f61abe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">porch</AUni> -<AUni ws="es">alar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bf8909d7-2e92-4299-b5f1-dbcd06c8097d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="da5f6e7a-00a9-43b6-a53c-71427fa3c855" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<ExampleWords> -<AUni ws="en">expert, skilled worker, master craftsman, leader in his field, specialist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(17) What is a person called who is very good at his job?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="da5fbaa9-0c8d-4d61-bd4d-07d089433f2c" ownerguid="1621aac3-4ea9-4373-bf1b-40fce0ca7b5e"> -<ExampleWords> -<AUni ws="en">lack, suffer lack, be lacking in, have insufficient, be insufficient, don't have enough, ill-furnished, ill-provided, deficient</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to not having enough?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="da60d6ed-addf-497f-ae68-2156e61681e3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chullu</AUni> -<AUni ws="qvm-x-acl">chullu; chullu; chullo</AUni> -<AUni ws="qvm-x-akh">chullu</AUni> -<AUni ws="qvm-x-akl">chullu; chullu; chullo</AUni> -<AUni ws="qvm-x-ame">chullu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trullu</AUni> -<AUni ws="qvm-x-acl">*trullu</AUni> -<AUni ws="qvm-x-akh">*trullu</AUni> -<AUni ws="qvm-x-akl">*trullu</AUni> -<AUni ws="qvm-x-ame">*trullu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.168" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a1793224-db54-43d1-bce7-077e52f62435" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trullu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eba682f2-a2ba-4eff-b5d5-5faa630536a9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="52db7b1e-61d7-4ee7-b949-a3ae2096ba04" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trullu 
\entryTyp root 
\gENG knit.cap 
\gSPN gorro 
\e *trullu 
\c N0 
\ach chullu 
\akh chullu 
\acl chullu / _# 
\acl chullu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chullo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chullu / _# 
\akl chullu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chullo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chullu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="da68346f-b388-4496-8eea-e77eee152689" ownerguid="ea6b1251-e6e4-4b9e-ab76-65207eb88364"> -<Form> -<AUni ws="qvm-x-ach">anïllu</AUni> -<AUni ws="qvm-x-acl">anïllu; anïllu; anïllo</AUni> -<AUni ws="qvm-x-akh">anïllu</AUni> -<AUni ws="qvm-x-akl">anïllu; anïllu; anïllo</AUni> -<AUni ws="qvm-x-ame">anïllu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="da687ea7-0be3-4f7b-98c8-5734ebdebe8a" ownerguid="76d4c718-a84d-4b7b-9767-1c350c3bc124"> -<ExampleWords> -<AUni ws="en">interval, space things out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the time period between events?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="da6a6a8e-711c-4aa3-8147-c9448ef58a1c" ownerguid="67c0feb8-3f09-44d7-b596-a15b2b2c7cd2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">present</AUni> -<AUni ws="es">presentar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6459965d-6f3e-4ffe-8400-f8433f4bc6b9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="da6bd03e-cae8-40e1-b8c0-0dc0fe506ce8" ownerguid="5a9d3cff-60f4-4bdc-8fec-318a4ffbd92c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="002f7048-80df-4e85-931a-cae888fbcec9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="da6eda11-3ae0-494b-8412-2d70734781aa" ownerguid="03d900be-35b2-4a93-85f5-773b666cefb5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yarpa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yarpa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yarpa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yarpa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yarpa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="887ae17a-ced7-4093-8e19-bf260b43d5a9" t="r" /> -</Morph> -<Msa> -<objsur guid="7440cecd-7493-4b9e-86fd-dbf27ad2bfed" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="da70131e-1c62-4fe5-85cf-9a9d63a0e962" ownerguid="7212ba9e-1753-4aa3-aea0-80ff1d798502" /> -<rt class="MoStemMsa" guid="da70be73-7e29-4353-8694-b3bc175e185e" ownerguid="86c02f45-e087-4593-9a66-898dcfe8d2d2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="da72651d-c463-4e5c-817a-c745bbf75987" ownerguid="5cc64831-c14a-4dbe-beba-214e725ad041"> -<ExampleWords> -<AUni ws="en">gait</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to the way in which a person moves?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="da72aae5-7ee2-492d-8128-71ea76c386cd" ownerguid="354c761d-03d5-4445-89e1-4f7c9673ab11"> -<Form> -<AUni ws="qvm-x-ach">fuerti; fuerte</AUni> -<AUni ws="qvm-x-acl">fuerti; fuerti; fuerte</AUni> -<AUni ws="qvm-x-akh">fuerti; fuerte</AUni> -<AUni ws="qvm-x-akl">fuerti; fuerti; fuerte</AUni> -<AUni ws="qvm-x-ame">fuerti; fuerte</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="da7474e4-1a36-4be6-b573-9d0c6272bceb" ownerguid="4200b8ab-7c89-499c-b218-48b9de70f2e7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cut</AUni> -<AUni ws="es">cortar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d4179f3d-cc19-4d3f-abd2-d2c7ef2bc609" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="da761f1d-9909-4bfb-89e4-dcb2115791aa" ownerguid="f3d537af-e4e7-4c76-a160-570bbcd4557f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">branch</AUni> -<AUni ws="es">rama</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5e14ff85-6ba9-45f6-a4bf-6a44da2c1f44" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="da7866e6-1f15-4693-991d-5b5234334976"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gapchuchuy</AUni> -<AUni ws="qvm-x-acl">gapchuchuy</AUni> -<AUni ws="qvm-x-akh">qapchuchuy</AUni> -<AUni ws="qvm-x-akl">qapchuchuy</AUni> -<AUni ws="qvm-x-ame">qapchuchuy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qaptrutruy</AUni> -<AUni ws="qvm-x-acl">*qaptrutruy</AUni> -<AUni ws="qvm-x-akh">*qaptrutruy</AUni> -<AUni ws="qvm-x-akl">*qaptrutruy</AUni> -<AUni ws="qvm-x-ame">*qaptrutruy</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.94" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3f83d875-013c-4097-beea-0a9c60752631" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qaptrutruy</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a326cbfa-99c4-4e80-b440-e90026ce9427" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a78674fd-f244-4f17-acc4-46a668c84d17" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qaptrutruy 
\entryTyp root 
\gENG 
\gSPN 
\e *qaptrutruy 
\c N0 
\mp +FinalC 
\ach gapchuchuy 
\akh qapchuchuy 
\acl gapchuchuy 
\akl qapchuchuy 
\ame qapchuchuy 
\i DAN 6.24 Manaragpis pampaman paycuna chayaptinmi leoncunaga micunanpag achcupacorgan. Tsay runacunapataga tuluncunatapis chipyagmi gapchuchuyla ushargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="da7a7c51-7ddf-443d-8edc-53099d057c3b"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">qarqakan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="da81ccc2-dbe7-4080-9b46-b1d823e936da" ownerguid="0a39c484-07ea-454b-9cfa-511197ca8380"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">thrush</AUni> -<AUni ws="es">zorzal</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ed6e332d-89cd-40ec-be56-2e0d6e61bb22" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="da8294d5-b3bb-4f4b-8dc9-7754aba476f5"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">V2</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="da857507-5bf5-4c57-8812-6ab790ec8e2c" ownerguid="09c10f22-64d6-4d20-ba2b-488ab8a46b67"> -<Form> -<AUni ws="qvm-x-ach">trinchi; trinche</AUni> -<AUni ws="qvm-x-acl">trinchi; trinchi; trinche</AUni> -<AUni ws="qvm-x-akh">trinchi; trinche</AUni> -<AUni ws="qvm-x-akl">trinchi; trinchi; trinche</AUni> -<AUni ws="qvm-x-ame">trinchi; trinche</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="da85daeb-a128-416a-99b7-a83da6cac144" ownerguid="75e7846d-d21f-4ea3-94ce-80b724644bb4"> -<Form> -<AUni ws="qvm-x-ach">pruëba</AUni> -<AUni ws="qvm-x-acl">pruëba</AUni> -<AUni ws="qvm-x-akh">pruëba</AUni> -<AUni ws="qvm-x-akl">pruëba</AUni> -<AUni ws="qvm-x-ame">pruëba</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="da86bc0e-bfaa-4803-8219-4a95f5dfdcdc" ownerguid="7c6ba6e5-d81e-4a50-a111-c946a0793378"> -<ExampleWords> -<AUni ws="en">advantages and disadvantages, pros and cons, pluses and minuses</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the advantages and disadvantages of something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="da88093e-ec43-41f7-b5c6-b48d739dd75a" ownerguid="80a8c5c5-4444-4d6f-a26c-8d9d681d52a7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="da8adef7-3d6a-41e4-8839-616be733a362" ownerguid="87c499b3-5fab-45e0-9999-9c4fcbba1e2b"> -<ExampleWords> -<AUni ws="en">children, family, issue, brood</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to all your children?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="da8c3912-9f3a-478c-832f-132abddf5c03"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">machca</AUni> -<AUni ws="qvm-x-acl">machca</AUni> -<AUni ws="qvm-x-akh">machka</AUni> -<AUni ws="qvm-x-akl">machka</AUni> -<AUni ws="qvm-x-ame">machka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*matrka</AUni> -<AUni ws="qvm-x-acl">*matrka</AUni> -<AUni ws="qvm-x-akh">*matrka</AUni> -<AUni ws="qvm-x-akl">*matrka</AUni> -<AUni ws="qvm-x-ame">*matrka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.366" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="496dcd70-0a6f-4d20-87c4-26d122168eb1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*matrka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c6835e27-579b-40f9-b37b-478ac0d170c9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="42bbdab0-7c09-4852-9ca7-d5939f54539c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *matrka 
\entryTyp root 
\gENG toasted.flour 
\gSPN harina.tostada 
\e *matrka 
\c N0 
\ach machca 
\akh machka 
\acl machca 
\akl machka 
\ame machka</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="da95fd3d-e540-41db-89f8-55ce705942e9" ownerguid="6804db44-b71b-4452-98b1-b726bc7cf022"> -<ExampleWords> -<AUni ws="en">deafening, drown out, be deafened by</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a sound that is so loud that you can't hear anything else?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="da988f73-fc9d-4a23-b70d-22299a7c6097" ownerguid="a72ca6f7-e389-408a-8276-fec4d60a3a56"> -<Abbreviation> -<AUni ws="en">9.1.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.680" /> -<DateModified val="2022-9-23 16:55:8.680" /> -<Description> -<AStr ws="en"> -<Run ws="en">Many languages have several general words that are used to indicate a variety of relationships between two things. There are three such words in English: "have," "of," and the possessive suffix "-'s." The basic meaning of these words in English is 'to own', but they can mean many other things too. For instance they can mean that I am related to someone (I have a brother), something has a part (birds have wings), and many other ideas. There is also a set of pronouns in English that are like nouns ending in -'s (my/mine, your/yours, his, her/hers, its, our/ours, their/theirs, whose). Use this domain for these general words.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Have, of</AUni> -</Name> -<Questions> -<objsur guid="e79416d1-0f33-4a8c-803b-5751a45b5d13" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="d9cb2e69-133d-4525-bca5-50b0f3402cbb" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="da998650-e325-4dc3-a2da-9079e7ae4256" ownerguid="86c60f77-6ff9-4df2-9e54-3f6e108402af"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="54dea8e0-dbfd-4264-b47d-0143cc30e302" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="da9b2b7d-88bc-46b8-8331-52b06dc1bd75" ownerguid="8b22ef54-ea90-403c-92c1-ae0cc04c051c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lick</AUni> -<AUni ws="es">lamer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a97ab288-dd40-41df-b8f6-cb66666d131a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="da9f99f7-881c-4d34-936e-0176ec6abcf2" ownerguid="b6b956bf-e624-4338-8e09-0d8a80dd2ba1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">accompany</AUni> -<AUni ws="es">acompañar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="34c3fb58-228e-43e9-a720-a1f75e6ffdaf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="daa2c8fc-f74d-4e14-a229-6d341aaa4aaa" ownerguid="126e199f-69cc-4e72-bcf1-5417cc9e38fa"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yqui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yqui</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yki</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1b0fe7f9-c0ed-498b-9263-f8c0d31cc569" t="r" /> -</Morph> -<Msa> -<objsur guid="2999bb54-aa09-4eed-affb-cf684bd15cf6" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="daa31a45-012f-45c6-9f8c-29bcccec67fe" ownerguid="1ce1cf74-4502-483d-8c16-22a4dd7d5724"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yarpä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yarpä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yarpä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yarpä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yarpä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="15f7b62a-a17b-41ac-b56e-85186914954c" t="r" /> -</Morph> -<Msa> -<objsur guid="7440cecd-7493-4b9e-86fd-dbf27ad2bfed" t="r" /> -</Msa> -<Sense> -<objsur guid="447e4c18-5a93-41fa-8398-831d8db8431e" t="r" /> -</Sense> -</rt> -<rt class="WfiWordform" guid="daa45f3e-7201-4a05-a744-87eea5194a04"> -<Analyses> -<objsur guid="474eb21f-72f2-45a5-91eb-d95776dfaf73" t="o" /> -</Analyses> -<Checksum val="-887294954" /> -<Form> -<AUni ws="qvm-x-akh">lumtsuyninkunata</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="daa4f6d9-6e9b-41c2-a25c-c56cac7da633" ownerguid="fc0afb69-a4d4-439a-91cd-ed0ce67677b5"> -<ExampleWords> -<AUni ws="en">boil, fry, scramble, poach, bake</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What ways can you cook an egg?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="daa56d9c-c4a4-4bc1-96b9-40815f8decf3" ownerguid="834a5ed2-d9b6-493e-9c8c-0edfc1175db8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7b08c7bd-7cc4-4f02-bc39-1eb78f40c333" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="daa757e0-caec-4950-ad89-af24571a53c1" ownerguid="f858278a-2727-4403-9cf0-565cdececb1e"> -<Question> -<AUni ws="en">(3) reality condition: a conditional relation between two propositions referring to the so-called real world: 'If you see my sister, you will know that she is pregnant'.</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="daab5de5-b671-4eb0-ae65-34a6df595309"> -<Analyses> -<objsur guid="4acb340d-ab6c-4717-a5f4-d95749e9f2f9" t="o" /> -</Analyses> -<Checksum val="1161591304" /> -<Form> -<AUni ws="qvm-x-akh">iktsurmi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="daae936a-89c8-40a5-be46-415bd848e37b" ownerguid="1bd5d8d9-c816-45aa-8269-98fa423cb451"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">foundation</AUni> -<AUni ws="es">simiento</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b8deea93-c45e-4ae0-bcc7-bd45c904fba8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="dab3cf63-5acc-4fd5-bfdc-8f6fbbc11199" ownerguid="71f89512-17f0-484c-aca8-ddd226e3c794"> -<ExampleWords> -<AUni ws="en">lap</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a part of a leg when it is in a particular position?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="dab5c66f-fa1f-4271-856a-af21ba2b700e" ownerguid="5fef74b3-10a2-4ee5-9b51-61d80776ff05"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="dab7521f-f67e-4aca-9092-01aef7fde9e3" ownerguid="7648040b-0aa5-4d9a-8f13-ffd066b81602"> -<ExampleWords> -<AUni ws="en">a length of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something that is long?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="dab86329-9eae-4506-adb8-7f6a779f13aa" ownerguid="70164474-a65b-4506-9953-f26afb6b497a"> -<ExampleWords> -<AUni ws="en">candlestick, wax, wick</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What are the parts of a candle?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="dab9b625-f5d1-44f6-852d-f0e47df56c2e" ownerguid="99b40843-54bf-4c59-ae1d-d7146cebec48"> -<ExampleWords> -<AUni ws="en">lucky, fortunate, some people have all the luck, lead a charmed life, not know you're born, it's all right for some</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to being lucky all the time?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="daba7235-e459-4b49-9d15-1a9191c44cd2" ownerguid="2fece058-54b0-4d24-8938-4fa894a75434"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="dabb9a6c-1f51-4b06-bb47-eb5eeed8e99e" ownerguid="f2f973f2-acde-4ac7-a693-49c0ab861c5d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuti</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuti; cute</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuti</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuti; kute</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuti</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1ea93998-be9c-4ae6-b87a-1279a5c89619" t="r" /> -</Morph> -<Msa> -<objsur guid="35967ee3-872d-4b56-ae00-e643fda7e9f3" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="dabdac85-2f1f-4f47-9c19-900070424646" ownerguid="56b1d8b1-5514-4661-8073-f0ed9ba0ca2f"> -<Form> -<AUni ws="qvm-x-ach">octubri; octubre</AUni> -<AUni ws="qvm-x-acl">octubri; octubri; octubre</AUni> -<AUni ws="qvm-x-akh">octubri; octubre</AUni> -<AUni ws="qvm-x-akl">octubri; octubri; octubre</AUni> -<AUni ws="qvm-x-ame">octubri; octubre</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="dac188be-8ba3-442e-9dad-06bc25f7424e" ownerguid="89347737-7095-483c-b34b-5000a279161b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 12.13 Fiyu runaga shimilanpitami ima enrëdumanpis jatican.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="dac3b1ff-b03c-4393-a261-1767ca83c9dd" ownerguid="849dcf1c-51e1-4c63-9308-504bfb1c3cd0"> -<Form> -<AUni ws="qvm-x-ach">testimoniu; testimonio</AUni> -<AUni ws="qvm-x-acl">testimoniu; testimoniu; testimonio</AUni> -<AUni ws="qvm-x-akh">testimoniu; testimonio</AUni> -<AUni ws="qvm-x-akl">testimoniu; testimoniu; testimonio</AUni> -<AUni ws="qvm-x-ame">testimoniu; testimonio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="dac3d089-ebf0-447f-bf0c-85d316cebb42" ownerguid="5553bfb2-778b-4379-8e1c-b080581c9bbc"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="dac46f4d-f30a-43f3-8883-b7174da13404" ownerguid="8ff44913-ceae-4308-8c47-aa036f19422b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">poor.thing</AUni> -<AUni ws="es">pobrecito</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0478b5aa-eb7b-4f1d-9e51-ef065cb1b33c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="dac6537a-5a97-4c35-8c40-7ea8ff36cdb4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">apóstol; apostol</AUni> -<AUni ws="qvm-x-acl">apóstol; apostol</AUni> -<AUni ws="qvm-x-akh">apóstol; apostol</AUni> -<AUni ws="qvm-x-akl">apóstol; apostol</AUni> -<AUni ws="qvm-x-ame">apóstol; apostol</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+apóstol</AUni> -<AUni ws="qvm-x-acl">+apóstol</AUni> -<AUni ws="qvm-x-akh">+apóstol</AUni> -<AUni ws="qvm-x-akl">+apóstol</AUni> -<AUni ws="qvm-x-ame">+apóstol</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.810" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="07d686d0-dec3-4f58-8579-7d5bdcd36bb5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+apóstol</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e1da583e-b5cc-42ea-b244-f78341b59579" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0be12cdc-c0e5-415e-b47d-e761d37f6c93" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +apóstol 
\entryTyp root 
\gENG apostle 
\gSPN apostol 
\e +apóstol 
\c N0 
\mp +FinalC 
\ach apóstol / _# 
\ach apostol / ~_# 
\akh apóstol / _# 
\akh apostol / ~_# 
\acl apóstol / _# 
\acl apostol / ~_# 
\akl apóstol / _# 
\akl apostol / ~_# 
\ame apóstol / _# 
\ame apostol / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="dac89bb4-898b-49cb-8057-04ff7f391c78" ownerguid="a3f849e7-c6c0-4af8-99f4-7b4493cafee9"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 45.9 Palaciuyquichöga princesacunapis atscami carcaycan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="dace36d2-c5b0-4cab-b117-d108def0b77e" ownerguid="e3bde9db-0878-4fac-8b93-64cdc5adf71e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="45f353c5-a14f-4e8b-98b8-3bb716e9ff50" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="ce1a149b-d6fb-4994-aa46-9cdb29cc0e7c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="dacf6cb6-2a83-4eb5-a736-3924dbc8aa2a" ownerguid="b1688009-474d-4e2e-a137-acc1e32a435f"> -<ExampleWords> -<AUni ws="en">thickness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to how thick something is?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="dad17c90-c508-4d6b-9d10-d567079b57f4" ownerguid="1faa4b42-bd79-4797-aa30-587d4773ce4e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="r" /> -</Morph> -<Msa> -<objsur guid="0dcd7049-8472-4f62-ab4f-e3cdb41b8742" t="r" /> -</Msa> -<Sense> -<objsur guid="e8b60316-f643-448b-9a60-60bffc9ea560" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="dad2f12f-a02d-44a5-9ee6-a1db5fa1e55c" ownerguid="b16de6a0-71dd-448c-9ffa-49f6646a5219"> -<ExampleWords> -<AUni ws="en">pace</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to how fast you are running?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="dad4846d-ca18-4bf5-8562-278f0cce709f" ownerguid="d485a138-f778-43e8-b354-23bfbaec6623"> -<Form> -<AUni ws="qvm-x-ach">päsi; päsi</AUni> -<AUni ws="qvm-x-acl">päsi; päsi; päse</AUni> -<AUni ws="qvm-x-akh">päsi; päsi</AUni> -<AUni ws="qvm-x-akl">päsi; päsi; päse</AUni> -<AUni ws="qvm-x-ame">päsi; päsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="dad53ed2-34f7-42a1-a9db-6ed5cd728a57" ownerguid="5ea4f6af-0125-4cdd-8a90-8a2d9089df5f"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="af71c610-8842-43fb-8c1b-47ef4ab3edad" t="o" /> -<objsur guid="570bdd90-183a-4598-b422-3e7055547022" t="o" /> -<objsur guid="e47fc607-79f7-4b21-ad58-50394d1eb5ec" t="o" /> -</MorphBundles> -</rt> -<rt class="LexExampleSentence" guid="dad7302b-0088-433f-82bb-49104e355fbb" ownerguid="bd638e6c-76fa-4b7b-b87e-ef3814f6b4a6"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Lev 13.41 Urculanpa agtsan ushacaptin pagla ricacurpis pürumi caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="dad84084-cee6-465a-8030-99858078aa4d" ownerguid="72c2f394-3231-48e4-b597-205971b0c731"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">friend</AUni> -<AUni ws="es">amigo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6ed7cbd8-2bdd-431b-ad49-d5ac1d381377" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="dad86efa-f57a-4ccd-9f98-168eb16978da" ownerguid="21bcc306-13cb-4162-98b3-2ba319ba14ea"> -<ExampleWords> -<AUni ws="en">jewel, precious stone, birthstone, crystal, gem, gemstone</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to jewels?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="dad95428-a496-41db-ac59-83d62f7afbaa" ownerguid="5d4412cb-1df4-41a9-a573-eb7e279bce3b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="711f3cd6-b458-47c3-bdce-bfc169fb523f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="dadc1577-9f42-429e-b7a8-fd1ea036932f" ownerguid="798ec463-abb7-40ce-b5b7-98bc2358a6c7"> -<Form> -<AUni ws="qvm-x-ach">dobla</AUni> -<AUni ws="qvm-x-acl">dobla</AUni> -<AUni ws="qvm-x-akh">dobla</AUni> -<AUni ws="qvm-x-akl">dobla</AUni> -<AUni ws="qvm-x-ame">dobla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="dae1adcc-bc09-4a2e-8fca-8dd1fcb23810" ownerguid="2ab52bfe-a1f6-483a-bd7b-f4524a6b0c16"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="dae2c0a0-3f0a-4df5-a9eb-00e4e0aaebe9" ownerguid="13129ec3-872e-4183-8b6d-190a317ab0f4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">many</AUni> -<AUni ws="es">mucho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bf695009-b899-4e09-9659-5e682af50b4c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="dae490b0-c4a6-48a5-bcd0-7c9b25bf7554"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">marcu</AUni> -<AUni ws="qvm-x-acl">marcu; marcu; marco</AUni> -<AUni ws="qvm-x-akh">marcu</AUni> -<AUni ws="qvm-x-akl">marcu; marcu; marco</AUni> -<AUni ws="qvm-x-ame">marcu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+marco</AUni> -<AUni ws="qvm-x-acl">+marco</AUni> -<AUni ws="qvm-x-akh">+marco</AUni> -<AUni ws="qvm-x-akl">+marco</AUni> -<AUni ws="qvm-x-ame">+marco</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.336" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="349a9fdb-707c-4030-8511-514d65f01d89" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+marco</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="da1f898d-e45a-4d1f-a53e-50703871eb10" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="19dcb73c-85a2-4e66-9817-7d807eaf829c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +marco 
\entryTyp root 
\gENG frame 
\gSPN marco 
\e +marco 
\c N0 
\mp +assimilated 
\ach marcu 
\akh marcu 
\acl marcu / _# 
\acl marcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl marco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl marcu / _# 
\akl marcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl marco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame marcu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="dae5a6f9-9810-4a71-841d-1d76b2f4697f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">soles; solis</AUni> -<AUni ws="qvm-x-acl">soles; solis</AUni> -<AUni ws="qvm-x-akh">soles; solis</AUni> -<AUni ws="qvm-x-akl">soles; solis</AUni> -<AUni ws="qvm-x-ame">soles; solis</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+soles</AUni> -<AUni ws="qvm-x-acl">+soles</AUni> -<AUni ws="qvm-x-akh">+soles</AUni> -<AUni ws="qvm-x-akl">+soles</AUni> -<AUni ws="qvm-x-ame">+soles</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.723" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6797bc00-1780-41ab-a1cf-5a7b53db8713" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+soles</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="184191ad-3fa8-4637-b32b-d0295bffbc65" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8705376d-e298-463d-ae61-cf225ca918ce" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +soles 
\entryTyp root 
\gENG soles 
\gSPN soles 
\e +soles 
\c N0 
\mp +FinalC 
\ach soles / _# 
\ach solis / ~_# 
\akh soles / _# 
\akh solis / ~_# 
\acl soles / _# 
\acl solis / ~_# 
\akl soles / _# 
\akl solis / ~_# 
\ame soles / _# 
\ame solis / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="dae63106-7228-4475-b374-e34e97b2d942" ownerguid="dd89c520-a4bf-43fb-82b6-279504c7ca57"> -<Form> -<AUni ws="qvm-x-ach">upya</AUni> -<AUni ws="qvm-x-acl">upya</AUni> -<AUni ws="qvm-x-akh">upya</AUni> -<AUni ws="qvm-x-akl">upya</AUni> -<AUni ws="qvm-x-ame">upya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="dae6488c-7fea-4fa3-84c9-b611d017b6a5" ownerguid="bbb897b5-f09b-4263-9f81-826ca61084f1"> -<Abbreviation> -<AUni ws="en">5.6.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.337" /> -<DateModified val="2022-9-23 16:55:8.337" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to washing clothes.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Wash clothes</AUni> -</Name> -<OcmCodes> -<Uni>296 Garment Care</Uni> -</OcmCodes> -<Questions> -<objsur guid="3048ceda-619b-49ca-a32a-9c3a08dd05b7" t="o" /> -<objsur guid="35288e7a-efd4-430f-bfba-1d3a4940fe35" t="o" /> -<objsur guid="10c85314-931e-424b-82df-6ac843a47f75" t="o" /> -<objsur guid="bcd24108-1541-448b-b723-c28dcc57880a" t="o" /> -<objsur guid="79c7e138-930b-4bcf-82b4-8e3e5fcdf6c7" t="o" /> -<objsur guid="2de02543-4a87-4354-89bb-42e1d3c2c1ce" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="dae6fdd4-9793-40dc-9b8d-49b17adbdf4a" ownerguid="64e3d6b1-1d61-454c-97ab-e1d7cb0a8917"> -<ExampleWords> -<AUni ws="en">agitated, be a bundle of nerves, excited, have the jitters, be jittery, jumpy, nervous wreck, panicky, be in a state</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to feeling very nervous?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="daeae38c-e9b2-4d12-b11b-606c9d6885c4" ownerguid="f79585cc-02e5-4d3c-adf8-b215e91c87d4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="daef0593-bc20-4965-816c-bc6bd17b7e19" ownerguid="ade9b029-59be-454d-a8ee-389eb1be8202"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuna</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuna</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuna</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuna</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuna</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f236a19a-86ce-4599-91f5-fb178488e065" t="r" /> -</Morph> -<Msa> -<objsur guid="0851fe14-f99e-4e06-befc-3a76b044ea37" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="daefd275-98e3-4534-a991-c7d396b54c69" ownerguid="6bf8ce57-1970-4efb-a7d7-b0bf8be6fb6b"> -<Abbreviation> -<AUni ws="en">8.4.5.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to postponing something--to decide to do something later.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Postpone</AUni> -</Name> -<Questions> -<objsur guid="d280d9bd-bef4-47bd-8a04-4e06899e81ce" t="o" /> -<objsur guid="e0dd1e77-beea-4cf8-90e5-15b0ec5d7c8f" t="o" /> -<objsur guid="16aafcd5-aacc-436e-9ff9-7e51d7a29d6a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="daf2c50c-6184-49e7-b751-4bc9c05bd821" ownerguid="8f68d85f-70f8-4662-9b4b-1dd2900a002a"> -<ExampleWords> -<AUni ws="en">devour, gorge, tear (prey)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) How do carnivores eat?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="daf38169-5ea0-4bb6-897c-40a223e0d130" ownerguid="41551b37-e74e-4fbf-8411-290dbb18b302"> -<Form> -<AUni ws="qvm-x-ach">nuspa</AUni> -<AUni ws="qvm-x-acl">nuspa</AUni> -<AUni ws="qvm-x-akh">nuspa</AUni> -<AUni ws="qvm-x-akl">nuspa</AUni> -<AUni ws="qvm-x-ame">nuspa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="daf59bcb-9f22-4b62-ad3c-bd2482023a0f" ownerguid="8ed1a8ca-f15a-4ed6-bad9-703aa85775ba"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">elbow</AUni> -<AUni ws="es">codo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="571dbac2-46fa-493c-bcc4-4d6e9755a641" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="daf6d919-ab98-44a5-b79a-fd1221ab65ca" ownerguid="1e102423-6167-486a-bfef-dad1c9cdf1eb"> -<ExampleWords> -<AUni ws="en">handle bars, kick stand, bike bell, tire pump</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What are the parts of a bicycle?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="daf84e25-fc74-4136-9897-3df23190b13e" ownerguid="4dc50300-5e81-4a47-a5c5-d0434d75eb81"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="dafa6072-e167-487f-9d64-5de75056ea6b" ownerguid="3f621386-9be4-41ca-9b32-e8a0938bef3a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="c76200b4-59d7-4038-9273-da61c40e554a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="dafbc9bf-eb13-4dcf-b7e5-c6f8cc2d0dde" ownerguid="f2453181-5627-4c4b-a4d5-2c67b0039807"> -<Form> -<AUni ws="qvm-x-ach">guelga</AUni> -<AUni ws="qvm-x-acl">guelga</AUni> -<AUni ws="qvm-x-akh">qelqa</AUni> -<AUni ws="qvm-x-akl">qelqa</AUni> -<AUni ws="qvm-x-ame">qilqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="dafbee4c-fb98-4562-87b4-9f5986cee961" ownerguid="26e0a6b0-efe2-4a36-91a5-612b8fc61247"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2CO 4.2 Manami pitapis engañaykätsu ni Tayta Diospa wilakuyninman ituykatsilar kikëkunapa yarpaynëkunata yapapäkötsu.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="dafc4b97-2b70-4986-b2b4-c05eb060786d" ownerguid="7c9c6263-9f7d-472c-a4c9-1767015d41fe"> -<Abbreviation> -<AUni ws="en">3.3.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.123" /> -<DateModified val="2022-9-23 16:55:8.123" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to accepting something such as an offer, invitation, or request.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Accept</AUni> -</Name> -<Questions> -<objsur guid="8717faf8-97d9-48dc-80b6-dc76cabf7028" t="o" /> -<objsur guid="e1851f3d-f1f5-4a39-b3e6-282dd4c7c7d9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="dafda84e-19f2-457c-b1dd-b9a92fdf240f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">luta</AUni> -<AUni ws="qvm-x-acl">luta</AUni> -<AUni ws="qvm-x-akh">luta</AUni> -<AUni ws="qvm-x-akl">luta</AUni> -<AUni ws="qvm-x-ame">luta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lluta.n</AUni> -<AUni ws="qvm-x-acl">*lluta.n</AUni> -<AUni ws="qvm-x-akh">*lluta.n</AUni> -<AUni ws="qvm-x-akl">*lluta.n</AUni> -<AUni ws="qvm-x-ame">*lluta.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.245" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="27cd1da3-50b6-4fbe-aaf4-0b4745d3ee36" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lluta.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5a2f3909-14ee-49b0-b769-2939754b2bb6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4ed33c44-a2bf-49f1-abf7-e3ad5150709d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lluta.n 
\entryTyp root 
\gENG wrong 
\gSPN incorrecto 
\e *lluta.n 
\c N0 
\ach luta 
\akh luta 
\acl luta 
\akl luta 
\ame luta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="daff5c30-443e-40a4-a6ac-6c9519faf076" ownerguid="4317e079-ae91-404e-baaa-ab8c97e0da7d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">abusive</AUni> -<AUni ws="es">abusivo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="210424c0-cabd-4ec9-bcb4-f2d34073f95c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="db020c9f-38ba-4032-8ae7-3e0ca64dcfef" ownerguid="8ffcef92-94d7-468e-9737-fad8567dce13"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d1685fdc-96d8-4baf-9cb8-523863adb67f" t="r" /> -</Morph> -<Msa> -<objsur guid="434f36b9-aa05-46d6-be7e-89240d9e2c4d" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="db0214b2-f988-4d05-ac84-289569445868" ownerguid="33664c68-9d1b-4feb-a0fc-1d42b54914f5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="db0669e6-87ac-4bee-b77f-d791afddfca1" ownerguid="4173d390-b298-46bd-8342-992b71970408"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Gen 31.8 Tsaynogpis: <Alga cag yuregcunata pägashayqui> nimaptenga lapan malwacunapis algalantagmi yureg.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="db0b0649-d748-4b51-9e8a-03fdf9b156b4" ownerguid="d756b99f-e275-4bbd-91ab-dc98c9b7c831"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="fd33071c-0e88-4be1-b226-6f31dce65f1a" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="10937211-160e-43c8-9133-0b3b6b2fea73" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="db0ce23d-6ae6-4b32-a257-0547443bb8cf" ownerguid="a9c8abf8-38d6-4ba5-b924-4852424261f0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.in.shade</AUni> -<AUni ws="es">estar.en.sombra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f05e0b54-7c1c-4e13-a144-b7aaaf7cb178" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="db10079f-a2d1-42e4-abb7-4b96ce8e6b55" ownerguid="ea17aba7-6d4e-4dbf-89ea-84a1b1c47647"> -<ExampleWords> -<AUni ws="en">tank, tub</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a container that is big?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="db12b518-5db1-42c7-8891-7d8ae784b16e" ownerguid="4405e74c-f64c-4609-8f7b-99ba563d659a"> -<ExampleWords> -<AUni ws="en">adoptive father, adoptive mother, foster parent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the parent of an adopted child?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="db12ca59-48ff-452b-8e8a-c71ba37c15bb" ownerguid="605bb0c9-2a37-431c-8b35-6abb7d5a59e4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="db1666d0-28b9-4c60-b9d2-b3c4cdb4d130" ownerguid="24168b67-792d-4cc3-8242-e3a3382e90e2"> -<Form> -<AUni ws="qvm-x-ach">quiqui</AUni> -<AUni ws="qvm-x-acl">quiqui; quiqui; quique</AUni> -<AUni ws="qvm-x-akh">kiki</AUni> -<AUni ws="qvm-x-akl">kiki; kiki; kike</AUni> -<AUni ws="qvm-x-ame">kiki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="db177d67-0d9e-41b2-96a6-5462a36dd7fa" ownerguid="9296e185-b820-4d67-9741-fa7bbdbc9291"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stampede</AUni> -<AUni ws="es">estampida</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7f6c0a2c-80ac-4812-acf5-a5fbf3b0fa58" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="db17f6fd-68f7-4756-8166-2629a0407c75"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">proveeduría; proveeduria</AUni> -<AUni ws="qvm-x-acl">proveeduría; proveeduria</AUni> -<AUni ws="qvm-x-akh">proveeduría; proveeduria</AUni> -<AUni ws="qvm-x-akl">proveeduría; proveeduria</AUni> -<AUni ws="qvm-x-ame">proveeduría; proveeduria</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+proveeduría</AUni> -<AUni ws="qvm-x-acl">+proveeduría</AUni> -<AUni ws="qvm-x-akh">+proveeduría</AUni> -<AUni ws="qvm-x-akl">+proveeduría</AUni> -<AUni ws="qvm-x-ame">+proveeduría</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.950" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d0a8a408-34ac-401c-8c72-12fb554dec28" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+proveeduría</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="365e1e94-9db7-4ef1-a1cb-28583eebcfd8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0084969c-3a18-4cba-b18f-86976fab3627" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +proveeduría 
\entryTyp root 
\gENG 
\gSPN 
\e +proveeduría 
\c N0 
\ach proveeduría / _# 
\ach proveeduria / ~_# 
\akh proveeduría / _# 
\akh proveeduria / ~_# 
\acl proveeduría / _# 
\acl proveeduria / ~_# 
\akl proveeduría / _# 
\akl proveeduria / ~_# 
\ame proveeduría / _# 
\ame proveeduria / ~_# 
\i 1SA 17.22 Davidga chayaycushpan guepinta paytacorgan proveduriaman.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="db1921e9-dd6c-4477-ab3d-27218a5c6b70"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">avión; avion</AUni> -<AUni ws="qvm-x-acl">avión; avion</AUni> -<AUni ws="qvm-x-akh">avión; avion</AUni> -<AUni ws="qvm-x-akl">avión; avion</AUni> -<AUni ws="qvm-x-ame">avión; avion</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+avión.1</AUni> -<AUni ws="qvm-x-acl">+avión.1</AUni> -<AUni ws="qvm-x-akh">+avión.1</AUni> -<AUni ws="qvm-x-akl">+avión.1</AUni> -<AUni ws="qvm-x-ame">+avión.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.880" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b7d5f1fb-2cef-4ead-9fe2-a39509d228ac" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+avión.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="27cac4ef-4886-4de9-96ee-8ecd838cf6a4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8a5c839c-a407-492c-b20d-bafca595dd6b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +avión.1 
\entryTyp root 
\gENG airplane 
\gSPN avión 
\e +avión.1 
\c N0 
\mp +FinalC 
\ach avión / _# 
\ach avion / ~_# 
\akh avión / _# 
\akh avion / ~_# 
\acl avión / _# 
\acl avion / ~_# 
\akl avión / _# 
\akl avion / ~_# 
\ame avión / _# 
\ame avion / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="db1d5e87-9ba3-4e61-9614-9df2e3e02df8" ownerguid="2bdfe506-0a28-45bd-81e1-44dcedcc262a"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="db1d8ed1-185f-43b2-9a00-686b2f8db897" ownerguid="8be94377-a3cc-4187-a6e2-51523e953503"> -<ExampleWords> -<AUni ws="en">hired hand, employee, servant, hireling, slave</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who works for someone else?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="db222150-5220-41c8-9d97-6c6ff0a913ad" ownerguid="ca752706-1c9e-43e7-bd17-845c4736ccd8"> -<ExampleWords> -<AUni ws="en">approximate (v), estimate (v), overestimate, underestimate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to determining the approximate number of amount of something?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="db2232d9-8b17-4920-936f-2b6249c6f7fa" ownerguid="63b18261-faf3-4ab2-bcb4-7c3ac4d6d6ba"> -<Abbreviation> -<AUni ws="en">6.8.9.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to stealing something--to take something that does not belong to you.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>57U Steal, Rob</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Steal</AUni> -</Name> -<Questions> -<objsur guid="ab8c4921-2745-4ae6-9c38-cb494dc24844" t="o" /> -<objsur guid="d12de03b-4917-4bb0-9bae-afa8c2153594" t="o" /> -<objsur guid="4780d512-9690-4c10-b9c5-5bbee5e7fb22" t="o" /> -<objsur guid="5801e60e-e15a-4df2-b5f9-665c996557cd" t="o" /> -<objsur guid="0e0e9391-927b-46b5-b8a6-9cd16ab5ac5a" t="o" /> -<objsur guid="bdec1b52-b38a-4c24-a5bf-f5e4d41642aa" t="o" /> -<objsur guid="95819f97-e876-485f-9fd3-91a301e8d642" t="o" /> -<objsur guid="2ac8a48b-fbb6-46ce-9e6a-c9174abe277c" t="o" /> -<objsur guid="746aa9db-a45e-4d57-bce8-71b007523c4c" t="o" /> -<objsur guid="e9604fba-ba6c-41c1-a3df-73bd68e61ca0" t="o" /> -<objsur guid="76455399-6fff-4d3f-843c-cf9a6806524c" t="o" /> -<objsur guid="ba665af0-0a86-4fd2-8e9d-e43376d6a7a3" t="o" /> -<objsur guid="33c10bc2-7d76-4176-a477-e17b6ed5996d" t="o" /> -<objsur guid="74cad011-0d9c-47a6-9de0-3599620afaa5" t="o" /> -<objsur guid="cb7be28a-4d75-44d8-a8e7-7577bbff8623" t="o" /> -<objsur guid="7b108d20-1693-4e0d-8872-b51f17839132" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="db227447-6405-47dd-b9a4-4391fcb29b80"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">carri:zu</AUni> -<AUni ws="qvm-x-acl">carri:zu; carri:zu; carri:zo</AUni> -<AUni ws="qvm-x-akh">carri:zu</AUni> -<AUni ws="qvm-x-akl">carri:zu; carri:zu; carri:zo</AUni> -<AUni ws="qvm-x-ame">carri:zu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+carrizo</AUni> -<AUni ws="qvm-x-acl">+carrizo</AUni> -<AUni ws="qvm-x-akh">+carrizo</AUni> -<AUni ws="qvm-x-akl">+carrizo</AUni> -<AUni ws="qvm-x-ame">+carrizo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.920" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5c5cb69f-9a79-479d-bc4f-3903d69b283a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+carrizo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="64a99efc-4db2-46c4-aa86-9f1b9bb0d4b5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c99b9d55-4c5e-4b3e-a07b-8480c93d27c8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +carrizo 
\entryTyp root 
\gENG reed.grass 
\gSPN carrizo 
\e +carrizo 
\c N0 
\ach carri:zu 
\akh carri:zu 
\acl carri:zu / _# 
\acl carri:zu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl carri:zo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl carri:zu / _# 
\akl carri:zu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl carri:zo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame carri:zu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="db25ad9a-1ea9-420d-9ec4-8091d3836976" ownerguid="0a920e88-dd41-41cc-839c-0b44aa1d33b2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="db263f84-c392-4fa9-9302-d66e578ab4ba" ownerguid="a250e19e-4ad2-46e2-91d2-e3d573358e31"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shyster.lawyer</AUni> -<AUni ws="es">tinterillo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7a51404d-3b1c-4d0e-a51d-2d1406885ba1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="db2a1542-c324-4022-b410-260e31df2063" ownerguid="7c03827f-0d7e-42d3-b2ae-23374e37dc6e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="49b641ec-65f1-449e-928c-0e8f8b696637" t="o" /> -</Examples> -<Gloss> -<AUni ws="es">coposo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b80a8896-26f0-4277-acfa-6b80362ccf2a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="db2c15df-25ad-42a7-9c04-9c05f3f4119f" ownerguid="4bf670d1-e204-4627-9847-583083bd6a0c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="db2d8b6d-d711-4b5b-a3a9-6d48580a9275" ownerguid="97219600-e2ec-4d68-972c-9745588cf2f7"> -<Form> -<AUni ws="qvm-x-ach">gollush</AUni> -<AUni ws="qvm-x-acl">gollush</AUni> -<AUni ws="qvm-x-akh">qollush</AUni> -<AUni ws="qvm-x-akl">qollush</AUni> -<AUni ws="qvm-x-ame">qullush</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="db3331fa-ee85-4d53-a13b-ff7c00f91305" ownerguid="06a89652-70e0-40ac-b929-ed42f011c9fc"> -<ExampleWords> -<AUni ws="en">dinosaur, fossil, extinct</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to plants and animals that do not exist today?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="db35c2c9-3a64-48f7-9397-611744057d31" ownerguid="1d11e1ba-14e8-421f-a31c-8e3cd9957639"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">anchor</AUni> -<AUni ws="es">ancla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6d2fbdc9-de83-4548-b8d2-c7aaca931fcf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="db35d426-efad-4e51-929f-7abd9c72ace1" ownerguid="66d91dc1-b4a4-4d05-a65b-d747dad3b1f7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">finger</AUni> -<AUni ws="es">dedo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="70c293f1-7800-408d-9749-070deebd36a1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="db36b26b-0cec-48dc-a72f-c590170f5dc0" ownerguid="051507dc-10db-4dfc-aebc-8dd80180d730"> -<Form> -<AUni ws="qvm-x-ach">consienti</AUni> -<AUni ws="qvm-x-acl">consienti; consiente</AUni> -<AUni ws="qvm-x-akh">consienti</AUni> -<AUni ws="qvm-x-akl">consienti; consiente</AUni> -<AUni ws="qvm-x-ame">consienti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="db36c814-4276-42c5-a13d-d1e8097fdb5e" ownerguid="c2d52c62-384b-44f4-8ec0-99721eecfa83"> -<Form> -<AUni ws="qvm-x-ach">watya</AUni> -<AUni ws="qvm-x-acl">watya</AUni> -<AUni ws="qvm-x-akh">watya</AUni> -<AUni ws="qvm-x-akl">watya</AUni> -<AUni ws="qvm-x-ame">watya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="db3ae090-ae90-4fca-bce0-f424d3e14f75" ownerguid="c8de900d-4ef2-4805-b27c-f5bc872b34c9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="db3f665d-2cbb-428e-84cd-02fea65742cd" ownerguid="ac7de73d-0059-4f35-9317-462a1813edba"> -<ExampleWords> -<AUni ws="en">flour, wheat flour, corn flour, millet flour</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the flour after it is ground?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="db4634b6-8944-48b6-8c01-1f7bbcad69c6" ownerguid="ea17aba7-6d4e-4dbf-89ea-84a1b1c47647"> -<ExampleWords> -<AUni ws="en">measuring cup, measuring spoon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What instruments are used to measure volume?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="db475bf9-5eb5-4864-ac17-f9cb0c823407"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pagpa</AUni> -<AUni ws="qvm-x-acl">pagpa</AUni> -<AUni ws="qvm-x-akh">paqpa</AUni> -<AUni ws="qvm-x-akl">paqpa</AUni> -<AUni ws="qvm-x-ame">paqpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*paqpa</AUni> -<AUni ws="qvm-x-acl">*paqpa</AUni> -<AUni ws="qvm-x-akh">*paqpa</AUni> -<AUni ws="qvm-x-akl">*paqpa</AUni> -<AUni ws="qvm-x-ame">*paqpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.709" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="799e2789-0fa9-4c8b-b3f8-8d3522d69838" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*paqpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="027749ee-85fe-47e0-98ec-68c885eff943" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4e4fa15c-d491-4b44-88da-e0ff2c3f6edf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *paqpa 
\entryTyp root 
\gENG 
\gSPN 
\e *paqpa 
\c V2 
\ach pagpa 
\akh paqpa 
\acl pagpa 
\akl paqpa 
\ame paqpa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="db4bbf55-558f-4088-b02f-83e8942631a5" ownerguid="0f1d6478-3f28-47b4-99a5-3e7270b454ad"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cloak</AUni> -<AUni ws="es">manto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ba95a7ad-90d5-443a-b60f-87b4a8ef5de6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="db4d08c6-10bb-4f11-91c0-6b4949c9c7ea"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">usa</AUni> -<AUni ws="qvm-x-acl">usa</AUni> -<AUni ws="qvm-x-akh">usa</AUni> -<AUni ws="qvm-x-akl">usa</AUni> -<AUni ws="qvm-x-ame">usa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*usa.v</AUni> -<AUni ws="qvm-x-acl">*usa.v</AUni> -<AUni ws="qvm-x-akh">*usa.v</AUni> -<AUni ws="qvm-x-akl">*usa.v</AUni> -<AUni ws="qvm-x-ame">*usa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.282" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f7933943-17ba-4dab-9f1e-37b66d0537d4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*usa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3bc98df1-f7ae-40e7-acab-ffed89ca63ef" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="74aafb5a-6f5d-4607-9810-0b1b380467d9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *usa.v 
\entryTyp root 
\gENG delouse 
\gSPN despiojar 
\e *usa.v 
\c V2 
\ach usa 
\akh usa 
\acl usa 
\akl usa 
\ame usa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="db55446f-54b3-4d2c-83ce-8987e37c4184" ownerguid="b60bf544-7774-4623-8c67-19b32b53dea2"> -<ExampleWords> -<AUni ws="en">theology, monotheism, polytheism, pantheism, atheism</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to what people believe about God?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="db59b61c-fdd1-4dc4-9fd0-f2eb008ccd41" ownerguid="3ae3a1be-cfb5-4953-b65b-68f0c51b1d40"> -<ExampleWords> -<AUni ws="en">carver, sculptor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who carves something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="db5c48df-4562-47e3-8962-4fa94cf7ea8a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ma:</AUni> -<AUni ws="qvm-x-acl">ma:</AUni> -<AUni ws="qvm-x-akh">ma:</AUni> -<AUni ws="qvm-x-akl">ma:</AUni> -<AUni ws="qvm-x-ame">ma:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ma:</AUni> -<AUni ws="qvm-x-acl">*ma:</AUni> -<AUni ws="qvm-x-akh">*ma:</AUni> -<AUni ws="qvm-x-akl">*ma:</AUni> -<AUni ws="qvm-x-ame">*ma:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.245" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="300fa660-8b07-461f-b069-01791191ecfd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ma:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ea66b5e2-d298-413e-9633-f0cb41751b75" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="22b1f683-802b-4d48-bbf7-ca642cf3f5ac" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ma: 
\entryTyp root 
\gENG lets.see 
\gSPN a.ver 
\e *ma: 
\c NOSUFF 
\mp +FinalLength 
\ach ma: 
\akh ma: 
\acl ma: 
\akl ma: 
\ame ma:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="db5e32ee-d295-4972-aad5-411abe4f2648" ownerguid="78406cc5-ce24-49a4-a8a6-cd91cfdc02fe"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="db605116-a469-474f-bc0f-e770291ef87d" ownerguid="a13a84d6-c9c5-467a-bbb6-08a85e1e01c9"> -<Form> -<AUni ws="qvm-x-ach">paga</AUni> -<AUni ws="qvm-x-acl">paga</AUni> -<AUni ws="qvm-x-akh">paqa</AUni> -<AUni ws="qvm-x-akl">paqa</AUni> -<AUni ws="qvm-x-ame">paqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="db6117c5-121c-433a-a891-e69950f55761" ownerguid="1610a4f0-ffe4-41ad-8fa2-90f1615ece63"> -<Gloss> -<AUni ws="en">TRSml+</AUni> -<AUni ws="es">TRSml+</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="db6381d1-a13c-4d13-8142-d75aa44e273b" ownerguid="227fb664-a77f-41ed-8ccc-1daafc834d73"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">type.potato</AUni> -<AUni ws="es">clase.papa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b9f8e4f3-7411-4695-9fb9-b914f8829314" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="db68aba5-9675-4de1-9557-5c8b3eef2377"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sur</AUni> -<AUni ws="qvm-x-acl">sur</AUni> -<AUni ws="qvm-x-akh">sur</AUni> -<AUni ws="qvm-x-akl">sur</AUni> -<AUni ws="qvm-x-ame">sur</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sur</AUni> -<AUni ws="qvm-x-acl">+sur</AUni> -<AUni ws="qvm-x-akh">+sur</AUni> -<AUni ws="qvm-x-akl">+sur</AUni> -<AUni ws="qvm-x-ame">+sur</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.754" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="23b394ba-7dfd-4613-be9b-cfd46b9be60c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sur</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="faae6ed0-28ce-4f77-b109-4b213c211a3e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="05d40150-a2da-4ae3-82fc-9d36db3823af" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sur 
\entryTyp root 
\gENG south 
\gSPN sur 
\e +sur 
\c N0 
\mp +FinalC 
\ach sur 
\akh sur 
\acl sur 
\akl sur 
\ame sur</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="db68c3dc-4cca-4b6a-858c-6af247af4da6" ownerguid="00733fca-c4d6-4ec1-b1bf-1587621b3b96"> -<Form> -<AUni ws="qvm-x-ach">muqui</AUni> -<AUni ws="qvm-x-acl">muqui; muqui; muque</AUni> -<AUni ws="qvm-x-akh">muki</AUni> -<AUni ws="qvm-x-akl">muki; muki; muke</AUni> -<AUni ws="qvm-x-ame">muki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="db6bb851-b6cf-41b3-9905-e56ea5b50686"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mierda</AUni> -<AUni ws="qvm-x-acl">mierda</AUni> -<AUni ws="qvm-x-akh">mierda</AUni> -<AUni ws="qvm-x-akl">mierda</AUni> -<AUni ws="qvm-x-ame">mierda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mierda</AUni> -<AUni ws="qvm-x-acl">+mierda</AUni> -<AUni ws="qvm-x-akh">+mierda</AUni> -<AUni ws="qvm-x-akl">+mierda</AUni> -<AUni ws="qvm-x-ame">+mierda</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.426" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9122d376-1021-4fe3-850d-da17fc00c64f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mierda</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3f637c7c-e845-49fa-8af5-6b9a1dab62da" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1682cb76-5016-41c5-96fd-4719d16d7929" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mierda 
\entryTyp root 
\gENG shit 
\gSPN mierda 
\e +mierda 
\c N0 
\ach mierda 
\akh mierda 
\acl mierda 
\akl mierda 
\ame mierda</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="db6bf919-88a2-4bd2-9145-54ac03028d96" ownerguid="e98ddf1c-3983-48cf-9741-902e978c8dfe"> -<Form> -<AUni ws="qvm-x-ach">carea</AUni> -<AUni ws="qvm-x-acl">carea</AUni> -<AUni ws="qvm-x-akh">carea</AUni> -<AUni ws="qvm-x-akl">carea</AUni> -<AUni ws="qvm-x-ame">carea</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="db6e6a48-670d-4b5a-8bb5-953a2710014c" ownerguid="9d865347-6656-4ab7-8613-bf2e8bc53aa7"> -<ExampleWords> -<AUni ws="en">injure, damage, hurt, impair</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to injuring a part of your body?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="db71cf3c-a98a-4675-a2f5-2ed343a92423" ownerguid="dcc3e45e-f093-4fda-955b-fd3579ddc9a7"> -<Form> -<AUni ws="qvm-x-ach">rurun</AUni> -<AUni ws="qvm-x-acl">rurun</AUni> -<AUni ws="qvm-x-akh">rurun</AUni> -<AUni ws="qvm-x-akl">rurun</AUni> -<AUni ws="qvm-x-ame">rurun</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="db72da84-2cb0-480a-a0d2-0868132d4702" ownerguid="2d8d437c-6f6a-464b-bf44-b54b7c97eaf4"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="c12d4445-d336-4d3f-8654-42ffc40605ca" t="o" /> -<objsur guid="50db7496-1422-4491-874f-a1c18867488b" t="o" /> -<objsur guid="1d915b17-524a-4314-a7f1-dc046f59d4f2" t="o" /> -<objsur guid="f26580d1-4b67-4c94-a236-ecf98421e730" t="o" /> -<objsur guid="169d446b-d94b-42ca-bfd9-c0c9ef4823ba" t="o" /> -<objsur guid="af1f6a54-59b6-4966-9437-c1f639c2c937" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="db76365c-1a68-4afe-9248-dc19d0f2bbf6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">hacenda:du</AUni> -<AUni ws="qvm-x-acl">hacenda:du; hacenda:du; hacenda:do</AUni> -<AUni ws="qvm-x-akh">hacenda:du</AUni> -<AUni ws="qvm-x-akl">hacenda:du; hacenda:du; hacenda:do</AUni> -<AUni ws="qvm-x-ame">hacenda:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hacendado</AUni> -<AUni ws="qvm-x-acl">+hacendado</AUni> -<AUni ws="qvm-x-akh">+hacendado</AUni> -<AUni ws="qvm-x-akl">+hacendado</AUni> -<AUni ws="qvm-x-ame">+hacendado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.639" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="08c0cbf5-2eb7-4e61-b0ac-a640850cda37" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hacendado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8f0555af-a3a2-4d5a-bf9e-069769615648" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e6b5b87f-17e7-4f7c-82fe-dfe21dd4d09d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hacendado 
\entryTyp root 
\gENG 
\gSPN hacendado 
\e +hacendado 
\c N0 
\ach hacenda:du 
\akh hacenda:du 
\acl hacenda:du / _# 
\acl hacenda:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl hacenda:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl hacenda:du / _# 
\akl hacenda:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl hacenda:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hacenda:du</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="db7b23af-3f58-489d-b243-1a3dae4d2449" ownerguid="d5cb678c-7676-4c5f-9cd7-64cc57170b86"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="db7dde18-9c83-46cd-bc20-de26b4f14818" ownerguid="0a3585ec-0b89-4307-bf04-aa0a7038b6b3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rag</AUni> -<AUni ws="es">trapo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a374c677-3d81-423f-928f-57d2eab6f9d4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="db7f6b19-c9e3-4477-8c80-9fb882891f3e" ownerguid="e94d79a8-691a-44d2-bcc7-6d4e10cf612b"> -<Form> -<AUni ws="qvm-x-ach">bautismu; bautismo</AUni> -<AUni ws="qvm-x-acl">bautismu; bautismu; bautismo</AUni> -<AUni ws="qvm-x-akh">bautismu; bautismo</AUni> -<AUni ws="qvm-x-akl">bautismu; bautismu; bautismo</AUni> -<AUni ws="qvm-x-ame">bautismu; bautismo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="db7fe3a0-7a13-4809-acde-13be0a41414c" ownerguid="3445e61b-61a3-4ede-93f5-402ebe9ca51c"> -<ExampleWords> -<AUni ws="en">warn, forewarn, admonish, advise against, discourage someone from doing something, dissuade</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to warning someone?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="db85926f-7111-45b8-ae79-9a77456f8582"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tapra</AUni> -<AUni ws="qvm-x-acl">tapra</AUni> -<AUni ws="qvm-x-akh">tapra</AUni> -<AUni ws="qvm-x-akl">tapra</AUni> -<AUni ws="qvm-x-ame">tapra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tapra</AUni> -<AUni ws="qvm-x-acl">*tapra</AUni> -<AUni ws="qvm-x-akh">*tapra</AUni> -<AUni ws="qvm-x-akl">*tapra</AUni> -<AUni ws="qvm-x-ame">*tapra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.813" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="146ddd49-bf8b-463e-b5a9-9f11381b32ea" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tapra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a6945cd6-84ae-47d5-afc2-5481f6e5fc87" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="08a02680-6ca4-4839-8242-b61649070a01" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tapra 
\entryTyp root 
\gENG stumbling 
\gSPN tropezando 
\e *tapra 
\c V1 
\ach tapra 
\akh tapra 
\acl tapra 
\akl tapra 
\ame tapra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="db86135b-faf9-4772-804e-e6db4eb2c546"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gra:mu</AUni> -<AUni ws="qvm-x-acl">gra:mu; gra:mu; gra:mo</AUni> -<AUni ws="qvm-x-akh">gra:mu</AUni> -<AUni ws="qvm-x-akl">gra:mu; gra:mu; gra:mo</AUni> -<AUni ws="qvm-x-ame">gra:mu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gramo</AUni> -<AUni ws="qvm-x-acl">+gramo</AUni> -<AUni ws="qvm-x-akh">+gramo</AUni> -<AUni ws="qvm-x-akl">+gramo</AUni> -<AUni ws="qvm-x-ame">+gramo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.629" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="09c937a9-5d3e-47e8-a034-db3a5f946853" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gramo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5e9b9676-dd94-4f68-8eac-d75773b79a6b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1b885ad3-995a-4f30-987a-c9b534b52d92" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gramo 
\entryTyp root 
\gENG gram 
\gSPN gramo 
\e +gramo 
\c N0 
\ach gra:mu 
\akh gra:mu 
\acl gra:mu / _# 
\acl gra:mu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gra:mo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl gra:mu / _# 
\akl gra:mu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl gra:mo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame gra:mu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="db895b5d-f779-4cbe-aefa-bc2315054920"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shogshi</AUni> -<AUni ws="qvm-x-acl">shogshi; shogshe</AUni> -<AUni ws="qvm-x-akh">shoqshi</AUni> -<AUni ws="qvm-x-akl">shoqshi; shoqshe</AUni> -<AUni ws="qvm-x-ame">shuqshi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shuqshi</AUni> -<AUni ws="qvm-x-acl">*shuqshi</AUni> -<AUni ws="qvm-x-akh">*shuqshi</AUni> -<AUni ws="qvm-x-akl">*shuqshi</AUni> -<AUni ws="qvm-x-ame">*shuqshi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.652" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c963cab0-6ea6-4935-9c60-2e84fd4292f6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shuqshi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="18350afb-db97-4998-a86a-777099b7af70" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="77ba2e7e-00e7-418e-89fd-69335aa5f8a9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shuqshi 
\entryTyp root 
\gENG 
\gSPN sacudir 
\e *shuqshi 
\c V1 
\mp +FinalI 
\ach shogshi 
\akh shoqshi 
\acl shogshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shogshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shoqshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shoqshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shuqshi</Run> -</AStr> -</Custom> -</rt> -<rt class="StTxtPara" guid="db8ad285-94ab-4e51-90e8-caba4d919ddf" ownerguid="5cdae613-91b6-4225-b689-679c9cc4247e"> -<ParseIsCurrent val="False" /> -</rt> -<rt class="LexEntry" guid="db8e775d-498e-4d81-a4bc-892e50922bf9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sa:pu</AUni> -<AUni ws="qvm-x-acl">sa:pu; sa:pu; sa:po</AUni> -<AUni ws="qvm-x-akh">sa:pu</AUni> -<AUni ws="qvm-x-akl">sa:pu; sa:pu; sa:po</AUni> -<AUni ws="qvm-x-ame">sa:pu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sapo</AUni> -<AUni ws="qvm-x-acl">+sapo</AUni> -<AUni ws="qvm-x-akh">+sapo</AUni> -<AUni ws="qvm-x-akl">+sapo</AUni> -<AUni ws="qvm-x-ame">+sapo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.449" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3bf0b3c4-5ce6-4ff9-b632-a53722625a70" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sapo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="246c3bdf-44d3-484b-8f92-4db257f7e134" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="45b96660-bae6-4f6c-9f8e-94e59822f0da" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sapo 
\entryTyp root 
\gENG frog 
\gSPN sapo 
\e +sapo 
\c N0 
\ach sa:pu 
\akh sa:pu 
\acl sa:pu / _# 
\acl sa:pu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sa:po +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sa:pu / _# 
\akl sa:pu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sa:po +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sa:pu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="db9232ce-c277-4163-ab53-727b356d2f33" ownerguid="75eb23c7-28b5-4c98-937a-1d8f371b24cf"> -<ExampleWords> -<AUni ws="en">travel by air, fly, aviation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to traveling by air?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="db93516a-d6b6-49fa-97e3-c9cd7aa9574f" ownerguid="59fd41ae-f85a-4799-892a-679c1c7784df"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="db93fc79-58d1-4d3d-8fe1-f5cce38ef679"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">reloj</AUni> -<AUni ws="qvm-x-acl">reloj</AUni> -<AUni ws="qvm-x-akh">reloj</AUni> -<AUni ws="qvm-x-akl">reloj</AUni> -<AUni ws="qvm-x-ame">reloj</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+reloj</AUni> -<AUni ws="qvm-x-acl">+reloj</AUni> -<AUni ws="qvm-x-akh">+reloj</AUni> -<AUni ws="qvm-x-akl">+reloj</AUni> -<AUni ws="qvm-x-ame">+reloj</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.328" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="898f759a-0d0f-4d6c-8747-bc8d765859c0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+reloj</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8b092bc0-61c9-4d00-b963-b84e022b4d1d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f7b1a38e-245d-4070-930a-8651aed1610b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +reloj 
\entryTyp root 
\gENG watch 
\gSPN reloj 
\e +reloj 
\c N0 
\mp +FinalC 
\ach reloj 
\akh reloj 
\acl reloj 
\akl reloj 
\ame reloj</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="db9782fb-8693-4775-915b-5fe1cc2836d4" ownerguid="fb227763-b05d-4b53-9a50-69a8e8376bb3"> -<Form> -<AUni ws="qvm-x-ach">pitsa</AUni> -<AUni ws="qvm-x-acl">pitsa</AUni> -<AUni ws="qvm-x-akh">pitsa</AUni> -<AUni ws="qvm-x-akl">pitsa</AUni> -<AUni ws="qvm-x-ame">pitsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="db983b66-fc09-426a-8b67-3510483d9f6b" ownerguid="3b8fd99c-a4f7-4f1f-b046-2d0649166611"> -<Form> -<AUni ws="qvm-x-ach">acagya; acagyä</AUni> -<AUni ws="qvm-x-acl">acagya; acagyä</AUni> -<AUni ws="qvm-x-akh">akaqya; akaqyä</AUni> -<AUni ws="qvm-x-akl">akaqya; akaqyä</AUni> -<AUni ws="qvm-x-ame">akaqya; akaqyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="dba1edc8-8f02-4abb-b380-8bf0eec2e97a" ownerguid="f1373316-7917-4dca-9d33-c6b520bd4034"> -<ExampleWords> -<AUni ws="en">manufacturing, operate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to working with machines?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="dba26d7c-3acb-4697-a781-9b0b2d83b788" ownerguid="3a24aece-a859-435c-bad6-99ac68e3414d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">beach</AUni> -<AUni ws="es">playa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8423b913-c4da-4018-98a8-0e8e504f6e9c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="dba28f23-7b9d-433a-a7ab-888b76ea6efa" ownerguid="7347726c-b71e-41d8-8009-b78892706447"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">earth</AUni> -<AUni ws="es">tierra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6871e5a7-6dc6-4b24-bfc9-9057daa06a15" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="dba68fef-65de-45d1-b87c-0aaaeb23bb02" ownerguid="6e3a26d3-0e2a-4271-b3ae-0c9bf1e6d4a7"> -<Form> -<AUni ws="qvm-x-ach">isma</AUni> -<AUni ws="qvm-x-acl">isma</AUni> -<AUni ws="qvm-x-akh">isma</AUni> -<AUni ws="qvm-x-akl">isma</AUni> -<AUni ws="qvm-x-ame">isma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="dba7abef-71c8-4bf6-ac88-6d438790bc86" ownerguid="cb23ee0b-553a-4368-b003-3e6b01c72ef5"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="dba81bfd-7662-4a9c-9d2a-f1d4b83b649a" ownerguid="ed976bbe-4fb2-4365-b136-d2fce077a73f"> -<ExampleWords> -<AUni ws="en">back (n), rear, hind end</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the back of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="dbab8aa7-070b-425b-9112-2c91dff8333e" ownerguid="741bda94-b886-4289-ba08-bb02b5a14d38"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">almost</AUni> -<AUni ws="es">casi</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b34e0f00-b562-4e2b-83be-dff2d39993ac" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoInflAffMsa" guid="dbacef16-50cb-4f71-a590-54ec4684dfe4" ownerguid="f711d703-1eac-4059-b0da-24d34bd8df5e"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="fda4c591-1349-4f9e-ab87-905ae2aa25e1" t="r" /> -</Slots> -</rt> -<rt class="MoStemMsa" guid="dbb1f37d-1321-41ee-8778-57de02b33b2d" ownerguid="79cf4ef2-3ec7-463a-843e-a7b1bfcb0639"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="dbb527ae-736a-449c-9bfa-53d86d25fead"> -<Analyses> -<objsur guid="6eaa1fec-1b02-4a75-96a8-f6bc2b26a327" t="o" /> -<objsur guid="ecc37619-47f9-4658-a598-192b91a84d15" t="o" /> -</Analyses> -<Checksum val="-1372556004" /> -<Form> -<AUni ws="qvm-x-akh">ishkay</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="dbbc964c-d7dd-4ed5-995f-fa3c7c8c9f29"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">via:ji; via:ji</AUni> -<AUni ws="qvm-x-acl">via:ji; via:ji; via:je</AUni> -<AUni ws="qvm-x-akh">via:ji; via:ji</AUni> -<AUni ws="qvm-x-akl">via:ji; via:ji; via:je</AUni> -<AUni ws="qvm-x-ame">via:ji; via:ji</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+viaje</AUni> -<AUni ws="qvm-x-acl">+viaje</AUni> -<AUni ws="qvm-x-akh">+viaje</AUni> -<AUni ws="qvm-x-akl">+viaje</AUni> -<AUni ws="qvm-x-ame">+viaje</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.383" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="16b057a9-e796-4f0e-acce-026cbcb59bdf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+viaje</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6280efea-c8cd-4db8-84c6-ac172d9608f7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="110fe2c8-1b56-4c0e-b951-5711efb3eece" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +viaje 
\entryTyp root 
\gENG 
\gSPN viaje 
\e +viaje 
\c N0 
\mp +FinalI 
\ach via:ji / _# 
\ach via:ji / ~_# 
\akh via:ji / _# 
\akh via:ji / ~_# 
\acl via:ji / _# 
\acl via:ji +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl via:je +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl via:ji / _# 
\akl via:ji +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl via:je +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame via:ji / _# 
\ame via:ji / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="dbbd8356-c9df-482b-a128-55aaaa8ad47f" ownerguid="96de28a0-4d3a-4927-b22c-c3602d4b97e3"> -<Form> -<AUni ws="qvm-x-ach">runa</AUni> -<AUni ws="qvm-x-acl">runa</AUni> -<AUni ws="qvm-x-akh">runa</AUni> -<AUni ws="qvm-x-akl">runa</AUni> -<AUni ws="qvm-x-ame">runa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="dbbea1c5-74ff-4906-b89f-747215209c35" ownerguid="32fbefe6-f63d-495d-a054-258d6ecf131d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="857e29f0-e73c-452d-9a08-a780593da810" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="dbc05de0-1fce-4f2f-bcd6-bb71d99ce838" ownerguid="30c95fc4-e60c-4da2-8c39-943116563a62"> -<Form> -<AUni ws="qvm-x-ach">tinsha</AUni> -<AUni ws="qvm-x-acl">tinsha</AUni> -<AUni ws="qvm-x-akh">tinsha</AUni> -<AUni ws="qvm-x-akl">tinsha</AUni> -<AUni ws="qvm-x-ame">tinsha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="dbc116ec-b6b4-4111-ad78-9ba8f5c10a31" ownerguid="1ca26512-75f6-4a7a-a7cc-07d08aa799d9"> -<ExampleWords> -<AUni ws="en">apologize, apology, apologetic, ask forgiveness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a request for forgiveness?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="dbc24270-ada5-48a5-87b7-447a0dd63e61"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">podero:su</AUni> -<AUni ws="qvm-x-acl">podero:su; podero:su; podero:so</AUni> -<AUni ws="qvm-x-akh">podero:su</AUni> -<AUni ws="qvm-x-akl">podero:su; podero:su; podero:so</AUni> -<AUni ws="qvm-x-ame">podero:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+poderoso</AUni> -<AUni ws="qvm-x-acl">+poderoso</AUni> -<AUni ws="qvm-x-akh">+poderoso</AUni> -<AUni ws="qvm-x-akl">+poderoso</AUni> -<AUni ws="qvm-x-ame">+poderoso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.891" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="01138787-44fa-4fd3-a250-4191dcd5b2d8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+poderoso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="90632c05-91c8-4e78-9df2-148679c227a7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f66470bc-270c-4f31-b73c-bc08d307cb1e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +poderoso 
\entryTyp root 
\gENG powerful 
\gSPN poderoso 
\e +poderoso 
\c N0 
\ach podero:su 
\akh podero:su 
\acl podero:su / _# 
\acl podero:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl podero:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl podero:su / _# 
\akl podero:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl podero:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame podero:su</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="dbc56caa-2c70-4567-bb35-7ac59849b3de" ownerguid="2b846476-00cf-4d82-97a1-26e1eda880ca"> -<ExampleWords> -<AUni ws="en">immaturity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the quality of being immature?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="dbc771fd-6584-41ea-ac7b-bbe333cd6986" ownerguid="f2088079-3650-4044-b6bc-3e3b04c09a8a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">you</AUni> -<AUni ws="es">tú</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b56d9572-6ab1-4223-8377-b7274c562325" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="dbc7c02c-45ec-49ae-b76b-ac0c42a91ad1" ownerguid="27d2d722-894d-4847-8657-3e81d4ab8abb"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="dbc7c37f-6aa3-4757-9732-53938ddf43f7" ownerguid="df2ee830-0668-43d7-8a32-e2fd3e7b31d8"> -<Question> -<AUni ws="en">(13) immediate past: occurring immediately before the moment of speech. Also called the Recent Past. Do not use this label if there is any sense of current relevance--use anterior for that.</AUni> -</Question> -</rt> -<rt class="LexSense" guid="dbcdaf0f-f881-4e36-a594-cd315b5d81bb" ownerguid="3dddcd57-36f8-4d5a-8ad6-0cee0517cec4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">entreat</AUni> -<AUni ws="es">pedir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d1b37519-fe28-4857-af64-d58fd0f4f579" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="dbce0d0f-16d0-4098-bc1b-5e1b90faaaad" ownerguid="71cbefc3-e0a5-4b97-9672-fa0cb34c59e4"> -<ExampleWords> -<AUni ws="en">solemn</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a ceremony?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="dbce349c-fac9-4c3f-9144-d3aa10ddd9d5" ownerguid="6bed5062-0d3c-4c4b-9f2d-cba6a7f19a23"> -<Form> -<AUni ws="qvm-x-ach">presta</AUni> -<AUni ws="qvm-x-acl">presta</AUni> -<AUni ws="qvm-x-akh">presta</AUni> -<AUni ws="qvm-x-akl">presta</AUni> -<AUni ws="qvm-x-ame">presta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="dbcf751a-eec0-4096-ac3c-d3ae3b8ba7f1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">costa</AUni> -<AUni ws="qvm-x-acl">costa</AUni> -<AUni ws="qvm-x-akh">costa</AUni> -<AUni ws="qvm-x-akl">costa</AUni> -<AUni ws="qvm-x-ame">costa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+costa</AUni> -<AUni ws="qvm-x-acl">+costa</AUni> -<AUni ws="qvm-x-akh">+costa</AUni> -<AUni ws="qvm-x-akl">+costa</AUni> -<AUni ws="qvm-x-ame">+costa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.203" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8cc2b8b9-08a0-40d7-ae67-ff489944503b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+costa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e92b2777-97f9-4ca2-813c-cd185507f0e1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b85d785c-e1d2-440e-a940-da6a62139777" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +costa 
\entryTyp root 
\gENG coast 
\gSPN costa 
\e +costa 
\c N0 
\ach costa 
\akh costa 
\acl costa 
\akl costa 
\ame costa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="dbd168ad-e64a-44b5-af1a-e9f5f7e57d4c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maqui</AUni> -<AUni ws="qvm-x-acl">maqui; maqui; maque</AUni> -<AUni ws="qvm-x-akh">maki</AUni> -<AUni ws="qvm-x-akl">maki; maki; make</AUni> -<AUni ws="qvm-x-ame">maki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*maki</AUni> -<AUni ws="qvm-x-acl">*maki</AUni> -<AUni ws="qvm-x-akh">*maki</AUni> -<AUni ws="qvm-x-akl">*maki</AUni> -<AUni ws="qvm-x-ame">*maki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.263" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f801bbb1-3d27-4717-a709-489f6b8efcd0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*maki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d9e93536-69a7-4568-8d91-e7c7edb82012" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e6bc4b1e-c379-4f5e-b4e2-a51f2d302456" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *maki 
\entryTyp root 
\gENG hand 
\gSPN mano 
\e *maki 
\c N0 
\mp +FinalI 
\ach maqui 
\akh maki 
\acl maqui / _# 
\acl maqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl maque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl maki / _# 
\akl maki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl make +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame maki</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="dbd2182c-e8c0-4bcd-b318-6b2a59502b76" ownerguid="a455de28-b812-4bf4-a9f3-fc318aa77d4f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">step-mother</AUni> -<AUni ws="es">madrastra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7e479885-2522-47a4-9739-d8c90734a956" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="dbd3a64f-907d-44ec-a029-dcaf357a841d" ownerguid="a3ba10f3-66e3-4ad5-8057-453b8941e497"> -<ExampleWords> -<AUni ws="en">warlike</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe a person or country that wants to fight a war?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="dbd3b2d3-24d3-46e7-a679-337e100eee76" ownerguid="ef3dae4d-47a9-4631-bd3f-c25d309a6732"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="dbd3e164-3f70-4395-9728-1c24c8900da6" ownerguid="1fda68d4-5941-4695-b656-090d603a3344"> -<Abbreviation> -<AUni ws="en">5.2.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.306" /> -<DateModified val="2022-9-23 16:55:8.306" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to cooking utensils.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Cooking utensil</AUni> -</Name> -<OcmCodes> -<Uni>415 Utensils</Uni> -</OcmCodes> -<Questions> -<objsur guid="12a8878d-80dc-4d44-a323-e4788349cbab" t="o" /> -<objsur guid="7622e959-f759-4127-bba6-acbd6f250968" t="o" /> -<objsur guid="bf516db0-ff37-4fed-985e-bdb48ace550f" t="o" /> -<objsur guid="b382dc7c-b175-489c-977f-0500482cc555" t="o" /> -<objsur guid="76f420b2-8e51-4caf-8d10-c10f22891afc" t="o" /> -<objsur guid="4fb181ba-8a8a-45a2-8e9f-528aca65cf51" t="o" /> -<objsur guid="d0ec7fa7-a6e2-4987-8501-0e04d061a790" t="o" /> -<objsur guid="c68008f7-82e5-4737-8e88-43261b097708" t="o" /> -<objsur guid="0385eaec-5a92-4541-8675-502e0c3d1d05" t="o" /> -<objsur guid="3b9dc8c6-3071-4da2-8677-e35c19a1f2bf" t="o" /> -<objsur guid="8181e6ba-8028-4adf-91f8-3e928cc4af86" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="dbd447c9-f7a8-4d7b-9057-7172690fae50" ownerguid="c17b70a4-fefa-42c9-850b-ebde6e26e9f7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dig</AUni> -<AUni ws="es">escarbar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9a504072-b48c-4957-af20-e98808b53d1b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="dbd47d81-a6cb-40c2-b53c-958924d71d2c" ownerguid="ca2f88ed-5d2b-4d01-baf7-e6ca8e0b8879"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="5cc9a3bb-103d-4c28-b867-843434b1ecf2" t="r" /> -</Msa> -</rt> -<rt class="WfiWordform" guid="dbd9486d-02ba-4bc8-a086-f3bcc14d43ba"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">rikakumun</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="dbdba393-677c-4ed5-95f6-cea4c2a71e69"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">invita</AUni> -<AUni ws="qvm-x-acl">invita</AUni> -<AUni ws="qvm-x-akh">invita</AUni> -<AUni ws="qvm-x-akl">invita</AUni> -<AUni ws="qvm-x-ame">invita</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+invitar</AUni> -<AUni ws="qvm-x-acl">+invitar</AUni> -<AUni ws="qvm-x-akh">+invitar</AUni> -<AUni ws="qvm-x-akl">+invitar</AUni> -<AUni ws="qvm-x-ame">+invitar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.840" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0df8f483-c5fb-432f-b9f1-0bcca06bb89a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+invitar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5c6f35eb-ef0f-4a2c-8331-740b90919423" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2af59f6f-6068-45d9-adbb-87df6df1efaf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +invitar 
\entryTyp root 
\gENG invite 
\gSPN invitar 
\e +invitar 
\c V2 
\ach invita 
\akh invita 
\acl invita 
\akl invita 
\ame invita</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="dbdbccf2-3e63-4265-a6ff-265057f2a553"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ayauchacu; ayauchaca</AUni> -<AUni ws="qvm-x-acl">ayauchacu; ayauchaco; ayauchaca</AUni> -<AUni ws="qvm-x-akh">ayawchaku; ayawchaka</AUni> -<AUni ws="qvm-x-akl">ayawchaku; ayawchako; ayawchaka</AUni> -<AUni ws="qvm-x-ame">ayawchaku; ayawchaka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ayawtrakU</AUni> -<AUni ws="qvm-x-acl">*ayawtrakU</AUni> -<AUni ws="qvm-x-akh">*ayawtrakU</AUni> -<AUni ws="qvm-x-akl">*ayawtrakU</AUni> -<AUni ws="qvm-x-ame">*ayawtrakU</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.900" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a6462f9f-8844-4a58-89f4-80edb61b7324" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ayawtrakU</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d41a5acd-6c92-4109-8756-4fa1137c392c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="63e257b6-95e3-49a8-8a20-af9e06ea152a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ayawtrakU 
\entryTyp root 
\gENG yawn 
\gSPN bostezar 
\e *ayawtrakU 
\c V1 
\mp PMlowered 
\ach ayauchacu 
\ach ayauchaca morphlowered 
\akh ayawchaku 
\akh ayawchaka morphlowered 
\acl ayauchacu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ayauchaco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ayauchaca morphlowered 
\akl ayawchaku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ayawchako +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ayawchaka morphlowered 
\ame ayawchaku 
\ame ayawchaka morphlowered</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="dbde99bf-dc7a-40ec-b83c-8ad705f1458f" ownerguid="71708d92-1d5b-4b5a-af2f-ba11a0941d11"> -<Form> -<AUni ws="qvm-x-ach">go</AUni> -<AUni ws="qvm-x-acl">go</AUni> -<AUni ws="qvm-x-akh">qo</AUni> -<AUni ws="qvm-x-akl">qo</AUni> -<AUni ws="qvm-x-ame">qu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="dbe5e26f-1b55-4b7b-8057-983cb49841f4" ownerguid="f20d736d-a3a6-4b0a-923c-ffaf9d1cd199"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">man</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">man</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">man</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">man</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">man</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1acbb55c-ccc7-45f0-b507-b8645ea87900" t="r" /> -</Morph> -<Msa> -<objsur guid="afad3961-fbf7-495d-bda7-b2ceaf12bba1" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="dbe617d7-4dee-4597-adb5-ce08a0e18938" ownerguid="50b62b28-0676-4968-ba55-4e94964bb0ab"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">occasion</AUni> -<AUni ws="es">ocasión</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="50ccffa6-4c46-497e-854c-58ddad7cd9d2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="dbe8fc84-5d62-4696-a30b-b1dc3818c594" ownerguid="dcc3e45e-f093-4fda-955b-fd3579ddc9a7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">kidneys</AUni> -<AUni ws="es">riñón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ddd97b52-f267-4553-9c53-3e2554f9d733" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="dbe94214-cb97-4092-8918-dc822dbb04ed" ownerguid="d06628e5-7cc3-40db-b99a-459eec99e731"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="dbe972e1-d182-4463-bfd9-f1836a052a29"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jamutsi</AUni> -<AUni ws="qvm-x-acl">jamutsi; jamutse</AUni> -<AUni ws="qvm-x-akh">jamutsi</AUni> -<AUni ws="qvm-x-akl">jamutsi; jamutse</AUni> -<AUni ws="qvm-x-ame">hamutsi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hamuchi</AUni> -<AUni ws="qvm-x-acl">*hamuchi</AUni> -<AUni ws="qvm-x-akh">*hamuchi</AUni> -<AUni ws="qvm-x-akl">*hamuchi</AUni> -<AUni ws="qvm-x-ame">*hamuchi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.658" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="53060bbd-08c7-422f-b685-507c9083f3e5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hamuchi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="963113db-ab9b-4f15-965c-b0adfd227c7b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c53becaf-c133-48c3-8e5c-1813b12ffe5b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hamuchi 
\entryTyp root 
\gENG 
\gSPN 
\e *hamuchi 
\c V1 
\mp +FinalI 
\ach jamutsi 
\akh jamutsi 
\acl jamutsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl jamutse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jamutsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jamutse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hamutsi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="dbea4d7b-79e1-4490-9f0e-4399341d39c1" ownerguid="76e2d5d6-91af-420a-bd6b-7e6896cc8b4c"> -<Form> -<AUni ws="qvm-x-ach">wachquïlla</AUni> -<AUni ws="qvm-x-acl">wachquïlla</AUni> -<AUni ws="qvm-x-akh">wachkïlla</AUni> -<AUni ws="qvm-x-akl">wachkïlla</AUni> -<AUni ws="qvm-x-ame">wachkïlla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="dbeb532d-1d4e-4d6d-80bd-e0c80d87e629" ownerguid="5bcd08a6-cb46-41bb-a732-0d690b5ea596"> -<ExampleWords> -<AUni ws="en">cereal, staple, meat, fruit, vegetable, salad, raw food, cooked food, condiment, main dish, side dish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to major types of food?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="dbebc3bd-2d01-4d62-a009-866c18ee3527" ownerguid="35e61ec4-0542-4583-b5da-0aa5e31a35aa"> -<Abbreviation> -<AUni ws="en">2.6.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the prevention or termination of a pregnancy, and for words related to killing babies.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Miscarriage</AUni> -</Name> -<OcmCodes> -<Uni>847 Abortion and Infanticide; 168 Population Policy</Uni> -</OcmCodes> -<Questions> -<objsur guid="98cf23ff-cda5-44e0-948f-b2850f0c7fc1" t="o" /> -<objsur guid="8705fff8-ee7b-4f8c-be9c-63663f2b04cd" t="o" /> -<objsur guid="67f0478f-bce9-4232-a9df-50b7443a74f4" t="o" /> -<objsur guid="1f1fdd6c-16b5-4b75-8ff5-0083cbc26fe8" t="o" /> -<objsur guid="57a01fde-da7a-48e8-8aca-d51728007ae4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="dbf05a52-ffa6-4413-9ee8-c5be0da0e3d0" ownerguid="6ed896a6-bab7-4fdf-a4fd-a5ee49f380d2"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="285e9809-dcea-4140-9282-e6a842d2d1a9" t="o" /> -<objsur guid="84ac4212-e3b7-499c-9eb7-cbd19a096ac6" t="o" /> -<objsur guid="c3be68e0-0833-4fec-8d57-6f4251766bf8" t="o" /> -<objsur guid="06504b46-803f-4975-94f5-13ee474b0eef" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="dbf1c817-98bb-42bb-850d-7465281a68a0" ownerguid="86265c7f-9c96-4206-8647-9a6a670816bd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="dbf1d8b9-e72f-47ae-a8f8-668abee90062"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pampa</AUni> -<AUni ws="qvm-x-acl">pampa</AUni> -<AUni ws="qvm-x-akh">pampa</AUni> -<AUni ws="qvm-x-akl">pampa</AUni> -<AUni ws="qvm-x-ame">pampa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pampa.n</AUni> -<AUni ws="qvm-x-acl">*pampa.n</AUni> -<AUni ws="qvm-x-akh">*pampa.n</AUni> -<AUni ws="qvm-x-akl">*pampa.n</AUni> -<AUni ws="qvm-x-ame">*pampa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.679" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="14e05166-8977-459f-8efc-7f747f00b408" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pampa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8da0f92a-148f-42c2-a860-7ef0d899db60" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ad6d4e1b-0e48-4ee8-9442-df2ef894e715" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pampa.n 
\entryTyp root 
\gENG ground 
\gSPN suelo 
\e *pampa.n 
\c N0 
\ach pampa 
\akh pampa 
\acl pampa 
\akl pampa 
\ame pampa</Run> -</AStr> -</Custom> -</rt> -<rt class="StStyle" guid="dbf212fe-a9ef-4cc8-a41f-7cad28a99bd3" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="10" /> -<Function val="4" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Chapter Number</Uni> -</Name> -<Rules> -<Prop spellcheck="doNotCheck"></Prop> -</Rules> -<Structure val="2" /> -<Type val="1" /> -<Usage> -<AUni ws="en">Chapter Number identifies the start of a chapter.</AUni> -</Usage> -<UserLevel val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="dbf74ceb-8bc9-4c37-abca-63df71523534" ownerguid="ef77bbf7-0f69-4358-ac9c-9d888b8969bd"> -<Form> -<AUni ws="qvm-x-ach">wilapishtëru</AUni> -<AUni ws="qvm-x-acl">wilapishtëru</AUni> -<AUni ws="qvm-x-akh">wilapishtëru</AUni> -<AUni ws="qvm-x-akl">wilapishtëru</AUni> -<AUni ws="qvm-x-ame">wilapishtïru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="dbf76fbc-822f-47aa-a7d7-174a1eb3a042" ownerguid="3d3ee180-caea-48b0-ad1f-ab9b74fb7cc1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">comfort</AUni> -<AUni ws="es">consolar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5d0280d7-b338-4e4b-8b33-ab41f9e85d4c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="dbfb1cce-ad3a-4b20-9404-f3c4266e376a" ownerguid="b45ea8c7-35ba-464c-98c1-b2a711140dbf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">push</AUni> -<AUni ws="es">empujar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2d56fc06-c1e6-4517-a6b0-f6a34819c089" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="dbff50c6-5341-4b62-aaf8-e9d6867ea467" ownerguid="ea67b3b5-f3d6-407b-9222-ea54265ab382"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="dbff9885-08d7-48f0-b058-a753011df984" ownerguid="bb2a112f-af6f-4a54-bbf0-ba7b8289e58b"> -<ExampleWords> -<AUni ws="en">attract, tempt, seduce, pull, draw, bring in, lure, appeal to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to something attracting someone's interest?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="dc00d67a-ea89-4d8e-a1ff-33d88111a258" ownerguid="88843228-3d25-4192-af4b-b368a7803382"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 R1/R0 N1/N0</Run> -</AStr> -</Custom> -<Definition> -<AStr ws="en"> -<Run ws="en">second person possessive</Run> -</AStr> -<AStr ws="es"> -<Run ws="es">segunda persona posesiva</Run> -</AStr> -</Definition> -<Gloss> -<AUni ws="en">2P</AUni> -<AUni ws="es">2P</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a40909fa-461f-42f5-8d0b-c089ff6c7753" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="dc00e2bb-a4fd-4f96-b3ba-924f9bf234b3" ownerguid="ffd43dde-bdae-409a-9cf5-2b5ade3b7a57"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="dc0217a3-8758-4480-8ddf-37945eaf342a" ownerguid="32fbefe6-f63d-495d-a054-258d6ecf131d"> -<Form> -<AUni ws="qvm-x-ach">lanchon</AUni> -<AUni ws="qvm-x-acl">lanchon</AUni> -<AUni ws="qvm-x-akh">lanchon</AUni> -<AUni ws="qvm-x-akl">lanchon</AUni> -<AUni ws="qvm-x-ame">lanchon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="dc021866-01d1-4632-b0bf-78e53e5d3099" ownerguid="061749a8-e28a-461c-bf2d-052ab3e157d5"> -<ExampleWords> -<AUni ws="en">at regular intervals, every meter, evenly spaced</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that things are arranged with regular spaces in between?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="dc042595-d013-4a45-a2e6-2895af9cbb24" ownerguid="4cc16a45-f4d9-42e2-9c96-ca2a16bcfa4e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ladder</AUni> -<AUni ws="es">escalera</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="58471c4f-4ab2-4ff3-90fd-4b5e378ad53c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="dc0a84c0-a16d-490a-bf52-1f539844011b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">malama:ña</AUni> -<AUni ws="qvm-x-acl">malama:ña</AUni> -<AUni ws="qvm-x-akh">malama:ña</AUni> -<AUni ws="qvm-x-akl">malama:ña</AUni> -<AUni ws="qvm-x-ame">malama:ña</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mala.ma:ña</AUni> -<AUni ws="qvm-x-acl">+mala.ma:ña</AUni> -<AUni ws="qvm-x-akh">+mala.ma:ña</AUni> -<AUni ws="qvm-x-akl">+mala.ma:ña</AUni> -<AUni ws="qvm-x-ame">+mala.ma:ña</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.275" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2161034a-eedb-4eef-81fb-b7541055f354" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mala.ma:ña</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2d906540-9a74-440c-b519-d2bc6e87a111" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="635b3ff6-8bb8-4f6b-af24-69fbe749f746" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mala.ma:ña 
\entryTyp root 
\gENG bad.life 
\gSPN mala maña 
\e +mala.ma:ña 
\c N0 
\ach malama:ña 
\akh malama:ña 
\acl malama:ña 
\akl malama:ña 
\ame malama:ña</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="dc0b4b2d-049c-4cd7-9167-2f7ddcced1ab" ownerguid="c736e4c8-b84f-4647-9b7d-ad7186102181"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tinge?</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="83e4caeb-3024-4ffa-ab1d-9d69f2a7f06e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="PunctuationForm" guid="dc0cbbf0-8c64-4b02-9e49-7cebf5088656"> -<Form> -<Str> -<Run ws="qvm-x-akh">¿</Run> -</Str> -</Form> -</rt> -<rt class="WfiMorphBundle" guid="dc0d289e-54f6-4002-9219-71829cffdbfe" ownerguid="12080e89-3e7a-4d80-8a3f-7ad3a8dc05b7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="dc1055aa-98c7-4ecd-845c-e5e3a51529b9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sasa</AUni> -<AUni ws="qvm-x-acl">sasa</AUni> -<AUni ws="qvm-x-akh">sasa</AUni> -<AUni ws="qvm-x-akl">sasa</AUni> -<AUni ws="qvm-x-ame">sasa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*sasa</AUni> -<AUni ws="qvm-x-acl">*sasa</AUni> -<AUni ws="qvm-x-akh">*sasa</AUni> -<AUni ws="qvm-x-akl">*sasa</AUni> -<AUni ws="qvm-x-ame">*sasa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.468" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="505dfcbf-173a-4a69-8496-3289643082d8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*sasa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2ab976b6-c090-4455-ba9a-7467509b11af" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9a392b60-de1d-4e87-b6ff-6d1af029cd3e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *sasa 
\entryTyp root 
\gENG difficult 
\gSPN diffcil 
\e *sasa 
\c N0 
\ach sasa 
\akh sasa 
\acl sasa 
\akl sasa 
\ame sasa</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="dc11b1a0-ea79-4abd-812b-d0e3532d5013" ownerguid="c14c5e0b-e2b6-4207-90a3-c650cee61238"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="d6d804c7-1a2d-492a-bb2a-d2b647eda6e4" t="o" /> -<objsur guid="8c052f44-58fa-4e86-85ac-1cc53d21ddf2" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="dc11f8c6-ae04-4674-ad9b-fedd42b5c97e" ownerguid="6601b6a4-645a-47fb-8275-bfe335210009"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="dc126d7a-aada-413b-ab35-f225d548f096" ownerguid="5455ef1a-b9b5-4ab0-9d8f-2aa16c3a68db"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="dc14a336-91bb-4ffb-b308-a7a1348a52cd" ownerguid="737471bd-1c3e-4fa6-8dae-ed89ed2a7336"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">kilometer</AUni> -<AUni ws="es">kilómetro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="13b9bbd5-adce-4a25-bcfe-97d9bdd93a94" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="dc177f3c-d0fd-4232-adf1-a77b339cdbb2" ownerguid="cde96694-79e5-44af-8d38-d988d1938e5f"> -<Abbreviation> -<AUni ws="en">6.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.458" /> -<DateModified val="2022-9-23 16:55:8.458" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to buildings and other large structures that people build.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>7B Buildings; 7D Open Constructions</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Building</AUni> -</Name> -<OcmCodes> -<Uni>340 Structures; 344 Public Structures; 345 Recreational Structures; 346 Religious and Educational Structures; 347 Business Structures; 348 Industrial Structures; 349 Miscellaneous Structures</Uni> -</OcmCodes> -<Questions> -<objsur guid="b0f2993e-9b2d-47d1-9a40-984fb10187ea" t="o" /> -<objsur guid="30526819-6ff3-41b2-ba71-c9d7a8fe5f21" t="o" /> -<objsur guid="5d517513-09c0-489c-8956-2de162386b7d" t="o" /> -<objsur guid="f8dcb90d-7021-4a1c-9bde-b134577a7558" t="o" /> -<objsur guid="dd844d99-cd29-4a46-8ffa-97d29706b425" t="o" /> -<objsur guid="f5ba6b8a-a8bc-4c7b-b6bf-f4c143f6833d" t="o" /> -<objsur guid="e05ce40f-0ac9-4a14-b72f-81048d691d44" t="o" /> -<objsur guid="3050cbfe-3beb-49e3-9df6-2a344dd631c2" t="o" /> -<objsur guid="10da67ed-648c-4431-b050-60f8967b16cb" t="o" /> -<objsur guid="b7b96393-b219-4790-a6d6-948f0466c24a" t="o" /> -<objsur guid="5205f81a-17eb-4390-9824-d0da130eeb79" t="o" /> -<objsur guid="4eb0eb18-3c3e-407a-9d52-6aedf8edb249" t="o" /> -<objsur guid="7cc7ceb4-1ece-4a26-bfd8-0c51226c8e5c" t="o" /> -<objsur guid="e72e3064-2196-43b0-a3fa-6a4ff17c5007" t="o" /> -<objsur guid="57b97ff5-9594-45d1-9ae4-69ecefa197ac" t="o" /> -<objsur guid="90e9cd4b-384b-49e9-a200-8c27f2b69d51" t="o" /> -<objsur guid="ed2a5384-dbd3-4595-a62f-8139ae05daab" t="o" /> -<objsur guid="a9616cdc-f462-4be2-b478-d8c1b4796aca" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="191ca5a5-0a67-426e-adfc-6fdf7c2aaa2c" t="o" /> -<objsur guid="c8e3c39c-d895-4e42-8e1e-1574137ba016" t="o" /> -<objsur guid="7981a8e1-cf0b-44a0-9de4-12160b2f201d" t="o" /> -<objsur guid="c1ceebe1-1274-40c1-a932-696265d9d412" t="o" /> -<objsur guid="7a8cb8d3-797d-478d-b7dd-265a1eedc0c1" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="dc180f8c-f3aa-4292-b5ef-96866c012e6d" ownerguid="8d59263b-19c2-4281-bf59-8448128f2326"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">know</AUni> -<AUni ws="es">saber</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2fabf27e-a3b4-49d4-a178-ac4e862de439" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="dc18ce61-6e2a-4762-bb04-88dbd18a0323" ownerguid="f74b3e92-fdc5-47c0-a223-16dc0f80387b"> -<Form> -<AUni ws="qvm-x-ach">dirección; direccion</AUni> -<AUni ws="qvm-x-acl">dirección; direccion</AUni> -<AUni ws="qvm-x-akh">dirección; direccion</AUni> -<AUni ws="qvm-x-akl">dirección; direccion</AUni> -<AUni ws="qvm-x-ame">dirección; direccion</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="dc1a2c6f-1b32-4631-8823-36dacc8cb7bb" ownerguid="999581c4-1611-4acb-ae1b-5e6c1dfe6f0c"> -<Abbreviation> -<AUni ws="en">1.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.916" /> -<DateModified val="2022-9-23 16:55:7.916" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the sun. The sun does three basic things. It moves, it gives light, and it gives heat. These three actions are involved in the meanings of most of the words in this domain. Since the sun moves below the horizon, many words refer to it setting or rising. Since the sun is above the clouds, many words refer to it moving behind the clouds and the clouds blocking its light. The sun's light and heat also produce secondary effects. The sun causes plants to grow, and it causes damage to things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>1D Heavenly Bodies</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Sun</AUni> -</Name> -<Questions> -<objsur guid="dd5dbded-bd5b-4429-b34e-512aee12ca10" t="o" /> -<objsur guid="302e9117-4224-43d7-918a-e0d550745f85" t="o" /> -<objsur guid="9d1bf999-3505-4ca3-ad94-fabaf1bd2ca8" t="o" /> -<objsur guid="4c57a2d9-e525-4e1d-922d-d1c309f30ede" t="o" /> -<objsur guid="0d260a4e-c26f-46e3-8895-48b09ec51709" t="o" /> -<objsur guid="55b61686-8857-4660-9365-890080683746" t="o" /> -<objsur guid="1b802715-9ea9-4583-a090-32bf4ddd887b" t="o" /> -<objsur guid="13ffe585-602b-4b2b-b1bc-092de56d04d9" t="o" /> -<objsur guid="a15ada42-940b-4ec7-8d38-640a964aa061" t="o" /> -<objsur guid="77a6d926-0999-42a3-bbc5-70556e880b2c" t="o" /> -<objsur guid="84d403bb-9d58-4555-9a64-29f284a5a45f" t="o" /> -<objsur guid="1665ac30-2ad5-4ac8-89cf-cf95617a1337" t="o" /> -<objsur guid="9b2d08f6-d7d7-4f86-9e41-9aacd1d747fe" t="o" /> -<objsur guid="50cef1ad-aabb-4295-9156-6a48915d3968" t="o" /> -<objsur guid="cb2b9eef-29d5-4a07-a692-8c7ec68e31cc" t="o" /> -<objsur guid="476e010e-0e54-4a81-ac11-fbb0349f970e" t="o" /> -<objsur guid="223a7ed4-5dde-4141-8dd4-bd2e4e05e105" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="0cc62b4a-d5ff-4f45-83d1-e2b46e5d159a" t="r" /> -<objsur guid="4bf411b7-2b5b-4673-b116-0e6c31fbd08a" t="r" /> -<objsur guid="cba6876c-5b48-42f4-ae0a-7fbe9bb971ef" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="1bd42665-0610-4442-8d8d-7c666fee3a6d" t="o" /> -<objsur guid="b044e890-ce30-455c-aede-7e9d5569396e" t="o" /> -<objsur guid="a0d073df-d413-4dfd-9ba1-c3c68f126d90" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="dc1ab28c-3e1e-474c-8359-2548b7ad5595" ownerguid="e45b8bac-9623-4f84-a113-9dec13a8db64"> -<Abbreviation> -<AUni ws="en">3.5.1.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to describing something--to say some things about something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Describe</AUni> -</Name> -<OcmCodes> -<Uni>105 Cultural Summary</Uni> -</OcmCodes> -<Questions> -<objsur guid="59cd4650-fa2b-4d77-bbd9-c0d9757ee088" t="o" /> -<objsur guid="b645c0b2-e9f6-4b96-9dc3-d1ec2940eeb2" t="o" /> -<objsur guid="25368b49-057d-43fb-b5e3-a611cc378e39" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="728bbc7c-e5b3-47d8-8532-72239e5c88bb" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="dc1d57df-d7f3-4bf9-8d32-e9648a1fe934" ownerguid="917d28d2-72b6-4191-bb4a-2366eb4d209c"> -<Form> -<AUni ws="qvm-x-ach">prostitüta</AUni> -<AUni ws="qvm-x-acl">prostitüta</AUni> -<AUni ws="qvm-x-akh">prostitüta</AUni> -<AUni ws="qvm-x-akl">prostitüta</AUni> -<AUni ws="qvm-x-ame">prostitüta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="dc1e1177-ca1b-4de5-9d4d-0f742c51c849" ownerguid="1f608e18-958e-4bb3-a977-04879fb5acd5"> -<ExampleWords> -<AUni ws="en">carnivore, carnivorous, meat eating</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a person (or animal) who only eats meat?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="dc1f2ee7-4bf7-4190-8264-cc56ddcfddcc" ownerguid="2d992d65-6708-43a7-8afa-7da2d77cb470"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="dc1fc0f8-a88e-426e-b520-3409d76a4cd1" ownerguid="6f7aed1c-c4a2-4815-aec1-707d6d85def1"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ari</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ari</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ari</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ari</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ari</Run> -</AStr> -</Form> -<Morph> -<objsur guid="65e25109-70b6-44e6-9ba3-814c12356781" t="r" /> -</Morph> -<Msa> -<objsur guid="51645e12-78fc-4d24-ad6a-f9e3d5337daf" t="r" /> -</Msa> -<Sense> -<objsur guid="15800544-8230-498c-84bf-700812ae5317" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="dc2058d2-ab6b-4d1e-9937-6e7b1842e4e4" ownerguid="547f1151-5816-4d89-b0bc-ece2a86c92eb"> -<ExampleWords> -<AUni ws="en">emigrate, immigrate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to moving to a new country?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="dc2246b8-4cfb-4f7c-9a73-3a211b6bf4d4" ownerguid="8e59041e-660b-4f3e-9a11-83217417209e"> -<ExampleWords> -<AUni ws="en">move forward, advance, move ahead, go ahead</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving forward?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="dc227b28-ca99-4aef-96e9-0d1a4805597b" ownerguid="acb95270-3e2a-42d5-a38a-75449249f6e3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="dc23f7a0-c9d7-4fb2-86d1-2243a0db42a0" ownerguid="091ee60b-b9e7-4205-8690-bce5f4efcfb0"> -<Form> -<AUni ws="qvm-x-ach">wari</AUni> -<AUni ws="qvm-x-acl">wari; wari; ware</AUni> -<AUni ws="qvm-x-akh">wari</AUni> -<AUni ws="qvm-x-akl">wari; wari; ware</AUni> -<AUni ws="qvm-x-ame">wari</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="dc272623-2cd5-481f-aade-19182a3b0eb1" ownerguid="0fa0be21-2246-40b2-86b1-ca572fe8c16c"> -<ExampleWords> -<AUni ws="en">the novelty wears off, lose interest, get tired of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to something becoming uninteresting?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="dc2b58e0-3d0a-4d5c-b423-45e33c3b0be4" ownerguid="fbacf4d9-6603-49ff-9cbb-4e5bc203e5ed"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cousin</AUni> -<AUni ws="es">prima</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3a1c0164-d08e-4e96-97b3-d05b6b0ad410" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="dc35b02a-bcf5-44f4-b8a1-87736b0e2332" ownerguid="b10a00a2-8632-4084-94d2-5824dc36a059"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cousin</AUni> -<AUni ws="es">primo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bcefa51d-b681-4c27-8254-c648611b3a26" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="dc36e187-ee13-463a-a403-d505508e1b4e" ownerguid="a93654fd-99a8-47cc-a86d-1cb2e6c8df68"> -<Form> -<AUni ws="qvm-x-ach">tacya</AUni> -<AUni ws="qvm-x-acl">tacya</AUni> -<AUni ws="qvm-x-akh">takya</AUni> -<AUni ws="qvm-x-akl">takya</AUni> -<AUni ws="qvm-x-ame">takya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="dc3c8134-2b88-4dc8-9835-2827765cd77d" ownerguid="ab0745e3-c71a-4ee2-ba19-cc25b3841b22"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">LUK 12.6 ¿Manacu pitsga pishgucunata ishcay centimulacho ranticun?</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="dc3f007f-0663-4a73-9a21-274f90cee9e6" ownerguid="0f983449-1c43-4974-b388-7695b1af4bfa"> -<ExampleWords> -<AUni ws="en">boondocks, boonies, country, countryside, desert, field, outback, outland, outskirts, rural, sticks, upcountry, wasteland, wilderness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the countryside?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="dc3f5d4d-9957-41cb-9d77-49cd17091fbb" ownerguid="27e765af-1968-4778-96d2-2b0101f69d4c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">thick</AUni> -<AUni ws="es">grueso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="32a4629d-1358-4e31-b3f3-d31119bd6e7a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="dc3fe924-a45d-4082-82ef-422282b54685" ownerguid="481d05f1-82d3-4ef6-931f-52182fab0eb5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ma</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ma</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ma</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ma</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ma</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d461bd39-dcdb-4b92-b683-c6749822c8b1" t="r" /> -</Morph> -<Msa> -<objsur guid="554634ac-1f6d-4bfc-8e9c-9d1dfeca4367" t="r" /> -</Msa> -<Sense> -<objsur guid="f442ba09-2469-4cfe-a31e-bcd120dbdec2" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="dc43feaa-d4f9-4e3b-9378-bfe9323941e3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">liqui</AUni> -<AUni ws="qvm-x-acl">liqui; lique</AUni> -<AUni ws="qvm-x-akh">liki</AUni> -<AUni ws="qvm-x-akl">liki; like</AUni> -<AUni ws="qvm-x-ame">liki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lliki.v</AUni> -<AUni ws="qvm-x-acl">*lliki.v</AUni> -<AUni ws="qvm-x-akh">*lliki.v</AUni> -<AUni ws="qvm-x-akl">*lliki.v</AUni> -<AUni ws="qvm-x-ame">*lliki.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.194" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="afd69f89-69a9-42df-ac48-fdd88913db69" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lliki.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9187c095-8ac2-4fd3-b6c0-499740d7ad15" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f68fa43a-24ae-491e-b142-374c3f0b750e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lliki.v 
\entryTyp root 
\gENG crack.skin 
\gSPN partirse 
\e *lliki.v 
\c V1 
\mp +FinalI 
\ach liqui 
\akh liki 
\acl liqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lique +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl liki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl like +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame liki</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="dc44bbf5-d5ba-479f-bda2-4ef0b4e0c492" ownerguid="6bd023f6-730e-44c2-ae8f-78df967e2e18"> -<ExampleWords> -<AUni ws="en">heave, lug, haul</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to pulling something heavy?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="dc46d8c6-e76a-4926-b4c9-4f950462cf7b" ownerguid="f595deab-1838-4ddb-9ebe-55fb3007b309"> -<ExampleWords> -<AUni ws="en">the military, the armed forces</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to all of the soldiers of a country?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="dc492961-8e9e-40d4-91a9-c3d1191c9399" ownerguid="582fe42e-9eb0-4deb-b681-ef835b7747f3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -<Sense> -<objsur guid="ed102c60-ed6d-498f-b2c4-a195d53a84e2" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="dc4a5eae-77f4-4bfb-a929-102d7c3c2f58" ownerguid="2bdfe506-0a28-45bd-81e1-44dcedcc262a"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="dc4a7ab3-fafc-401f-ba0c-3aef0e579899" ownerguid="0357224d-e682-4974-a261-d07c3e59771b"> -<Form> -<AUni ws="qvm-x-ach">capitán; capitan</AUni> -<AUni ws="qvm-x-acl">capitán; capitan</AUni> -<AUni ws="qvm-x-akh">capitán; capitan</AUni> -<AUni ws="qvm-x-akl">capitán; capitan</AUni> -<AUni ws="qvm-x-ame">capitán; capitan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="dc4a84b4-86b9-434f-bc0c-264670551081" ownerguid="30b3faa8-747e-465f-833a-a9957a259be2"> -<ExampleWords> -<AUni ws="en">be scattered, thrown apart, resettled, thinly spread, spread out, far flung, flung, dispersed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe things that have been scattered?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="dc4eb14c-9144-4961-8f7e-27e8217c516b" ownerguid="9346f0b2-661a-413d-aa1c-c078ce41350f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wing</AUni> -<AUni ws="es">ala</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ce9e4d05-79c0-434e-9590-1908e84e746b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="dc52902d-860a-4eee-86d4-7271f54d4006" ownerguid="85d61f31-0156-44c3-b973-95ccd8e777bf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">that</AUni> -<AUni ws="es">ese</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="17c53e1a-f12c-41bc-9038-3134419c51bb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoInflAffMsa" guid="dc53e817-8c9f-407c-9e09-cc7f8ae7e19f" ownerguid="c5c12827-1f84-4f27-931b-268ef4c1b2e3"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="257de7fb-dab6-4b87-848b-3fbb8f5c3e04" t="r" /> -</Slots> -</rt> -<rt class="MoStemAllomorph" guid="dc546f80-b56c-48e8-8cee-6380e4848e0f" ownerguid="4c0771eb-671e-435b-8b2a-39b929c24388"> -<Form> -<AUni ws="qvm-x-ach">üvas</AUni> -<AUni ws="qvm-x-acl">üvas</AUni> -<AUni ws="qvm-x-akh">üvas</AUni> -<AUni ws="qvm-x-akl">üvas</AUni> -<AUni ws="qvm-x-ame">üvas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="dc597a5b-37c8-4e1e-a71c-9bc1da75655b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guema</AUni> -<AUni ws="qvm-x-acl">guema</AUni> -<AUni ws="qvm-x-akh">qema</AUni> -<AUni ws="qvm-x-akl">qema</AUni> -<AUni ws="qvm-x-ame">qima</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qima</AUni> -<AUni ws="qvm-x-acl">*qima</AUni> -<AUni ws="qvm-x-akh">*qima</AUni> -<AUni ws="qvm-x-akl">*qima</AUni> -<AUni ws="qvm-x-ame">*qima</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.175" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="96fce07e-3b5e-4249-b23e-92e302930019" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qima</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5df5581e-1f50-47ab-85d1-13117f46bc1e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1bdf4e7b-4771-464b-99c6-c765114dcfeb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qima 
\entryTyp root 
\gENG drain 
\gSPN escurrir 
\e *qima 
\c V1 
\ach guema 
\akh qema 
\acl guema 
\akl qema 
\ame qima</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="dc5d4aad-09ff-4e9f-ae66-7cdeee4c72b4" ownerguid="ddef260e-b183-47f7-837e-165ffbd1af2c"> -<ExampleWords> -<AUni ws="en">put in front, place in front, advance something</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to putting something in front?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="dc5efcfb-dc41-4af4-9357-5eb7c6578708"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nana; nana:</AUni> -<AUni ws="qvm-x-acl">nana; nana:</AUni> -<AUni ws="qvm-x-akh">nana; nana:</AUni> -<AUni ws="qvm-x-akl">nana; nana:</AUni> -<AUni ws="qvm-x-ame">nana; nana:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*nana:</AUni> -<AUni ws="qvm-x-acl">*nana:</AUni> -<AUni ws="qvm-x-akh">*nana:</AUni> -<AUni ws="qvm-x-akl">*nana:</AUni> -<AUni ws="qvm-x-ame">*nana:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.537" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2cda2a08-8c83-440b-83ee-41590737da66" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*nana:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="11c918f1-ab12-4cc7-8a78-32c972895b51" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b1fd58f0-f98a-4c9e-b75b-a2034e4d25f8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *nana: 
\entryTyp root 
\gENG hurt 
\gSPN doler 
\e *nana: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach nana foreshortened 
\ach nana: 
\akh nana foreshortened 
\akh nana: 
\acl nana foreshortened 
\acl nana: 
\akl nana foreshortened 
\akl nana: 
\ame nana foreshortened 
\ame nana: 
\mcc *nana: / ~_ [ben] DUR</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="dc60204d-7c7f-4b73-8aa2-df87ae226f1f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waysha</AUni> -<AUni ws="qvm-x-acl">waysha</AUni> -<AUni ws="qvm-x-akh">waysha</AUni> -<AUni ws="qvm-x-akl">waysha</AUni> -<AUni ws="qvm-x-ame">waysha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waysha</AUni> -<AUni ws="qvm-x-acl">*waysha</AUni> -<AUni ws="qvm-x-akh">*waysha</AUni> -<AUni ws="qvm-x-akl">*waysha</AUni> -<AUni ws="qvm-x-ame">*waysha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.627" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ff6c4cc4-d4ea-4e99-aba9-9d7ea1944cbb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waysha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="725b64c9-9618-4654-9a42-7fe2a9ab3456" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="62513e81-49a3-496c-83d1-5c8a9bd946f1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waysha 
\entryTyp root 
\gENG winnow 
\gSPN aventar 
\e *waysha 
\c V1 
\ach waysha 
\akh waysha 
\acl waysha 
\akl waysha 
\ame waysha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="dc65c5b9-7fd6-4ea0-a134-7254ea48f2c2" ownerguid="23b1a6b4-8d91-425c-b8c2-52d06b1c1d23"> -<ExampleWords> -<AUni ws="en">snap, crack, pop, boom, crash</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What sounds do things make when they break?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="dc669177-286e-433f-a2d6-509118f2a7a0" ownerguid="01441207-4935-49a5-a192-16d949f5606c"> -<ExampleWords> -<AUni ws="en">football, soccer, basketball, tennis, track, track and field, ping pong, badminton, baseball, hockey, ice hockey, boxing, wrestling, running, cricket, golf, gymnastics, race</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to specific sports?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="dc697acc-5643-4ecd-bf3f-0ee5d3604a38" ownerguid="ab65fb70-328e-4285-af71-5db817087dc3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="dc6aaeea-3e66-4825-b5e7-3cacde22cd58" ownerguid="4f19ab95-428a-4a0b-a069-ca8be6b72b08"> -<ExampleWords> -<AUni ws="en">host, hostess</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the person visited?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="dc6be838-61c3-438c-bc9e-75d60d761c86" ownerguid="3bc961d1-9f4f-4f1b-ada7-b1e9a2928ea4"> -<ExampleWords> -<AUni ws="en">forthright, blunt, outspoken, bald, speak your mind, not beat about the bush, make no bones about, not mince your words, call a spade a spade, pull no punches</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to telling the truth without caring how other people feel?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="dc6ce149-cc29-4a03-a5b5-08b3eed14e11" ownerguid="684fe2fa-e37f-4ae7-b114-169ff276c1ed"> -<Form> -<AUni ws="qvm-x-ach">cunruru</AUni> -<AUni ws="qvm-x-acl">cunruru; cunruru; cunruro</AUni> -<AUni ws="qvm-x-akh">kunruru</AUni> -<AUni ws="qvm-x-akl">kunruru; kunruru; kunruro</AUni> -<AUni ws="qvm-x-ame">kunruru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="dc6d7dca-0b31-48fc-a2c9-a5cf4fc9e0c5" ownerguid="d01f1c51-522e-4b35-81b3-00577dbfa3bd"> -<ExampleWords> -<AUni ws="en">be red/green, be a red/reddish color, colored, tinted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something is a particular color?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="dc6e0d2d-7fae-4330-9334-15de85a2f115"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chapiri</AUni> -<AUni ws="qvm-x-acl">chapiri; chapire</AUni> -<AUni ws="qvm-x-akh">chapiri</AUni> -<AUni ws="qvm-x-akl">chapiri; chapire</AUni> -<AUni ws="qvm-x-ame">chapiri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trapiri</AUni> -<AUni ws="qvm-x-acl">*trapiri</AUni> -<AUni ws="qvm-x-akh">*trapiri</AUni> -<AUni ws="qvm-x-akl">*trapiri</AUni> -<AUni ws="qvm-x-ame">*trapiri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.68" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1c2c973a-6465-451f-aa07-f06d1c08b8d9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trapiri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="530be12f-602e-4d07-821a-4eb727cef400" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f7c11fd3-aae3-478b-979c-69c0e6e3b94f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trapiri 
\entryTyp root 
\gENG 
\gSPN 
\e *trapiri 
\c V1 
\mp +FinalI 
\ach chapiri 
\akh chapiri 
\acl chapiri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl chapire +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chapiri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chapire +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chapiri</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="dc6f5737-3830-4a75-842d-57a76127af32" ownerguid="e5d556fc-50ac-43fb-a2dd-5d462c9a861e" /> -<rt class="CmSemanticDomain" guid="dc71598d-21a2-4598-9c12-13978796d2c9" ownerguid="bbb897b5-f09b-4263-9f81-826ca61084f1"> -<Abbreviation> -<AUni ws="en">5.6.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.337" /> -<DateModified val="2022-9-23 16:55:8.337" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to cleaning the floor or ground.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Sweep, rake</AUni> -</Name> -<Questions> -<objsur guid="b07ce49b-13b7-4af7-99fc-2f407077da0e" t="o" /> -<objsur guid="d1decea2-1a06-4243-9276-72840666fb88" t="o" /> -<objsur guid="e1763582-b3f3-4acc-943b-c3ffd6f7fea8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="dc766309-957b-4c29-b674-c99a2bde4da0" ownerguid="a1959b00-9702-4b45-ac46-93f18d3bc5e6"> -<ExampleWords> -<AUni ws="en">gasp, wheeze, short of breath</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to breathing with difficulty?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="dc76b15c-9f76-4767-89af-5ea560347387"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tra:pu</AUni> -<AUni ws="qvm-x-acl">tra:pu; tra:pu; tra:po</AUni> -<AUni ws="qvm-x-akh">tra:pu</AUni> -<AUni ws="qvm-x-akl">tra:pu; tra:pu; tra:po</AUni> -<AUni ws="qvm-x-ame">tra:pu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+trapo</AUni> -<AUni ws="qvm-x-acl">+trapo</AUni> -<AUni ws="qvm-x-akh">+trapo</AUni> -<AUni ws="qvm-x-akl">+trapo</AUni> -<AUni ws="qvm-x-ame">+trapo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.680" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ff99fb36-82fd-4bf5-b5e8-b2e62b37745a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+trapo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eff00dfa-177c-415c-b84c-ae533808e022" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="47dcd836-f4e3-4b51-b2a2-9cfd13176ea3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +trapo 
\entryTyp root 
\gENG rag 
\gSPN trapo 
\e +trapo 
\c N0 
\ach tra:pu 
\akh tra:pu 
\acl tra:pu / _# 
\acl tra:pu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tra:po +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tra:pu / _# 
\akl tra:pu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tra:po +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tra:pu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="dc76c958-7930-4460-b00f-e9871eb07f75" ownerguid="a05e906f-289d-4ad8-b3b5-30a840c4c99d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="576fc9d2-fdcb-4a04-98e2-eab2155cb680" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="dc77b359-1f29-42ba-b89d-9fefc586f4a3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">recono:ci</AUni> -<AUni ws="qvm-x-acl">recono:ci; recono:ce</AUni> -<AUni ws="qvm-x-akh">recono:ci</AUni> -<AUni ws="qvm-x-akl">recono:ci; recono:ce</AUni> -<AUni ws="qvm-x-ame">recono:ci</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+reconocer</AUni> -<AUni ws="qvm-x-acl">+reconocer</AUni> -<AUni ws="qvm-x-akh">+reconocer</AUni> -<AUni ws="qvm-x-akl">+reconocer</AUni> -<AUni ws="qvm-x-ame">+reconocer</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.307" /> -<DateModified val="2022-10-10 21:18:47.203" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8ba5d7f7-d8e5-437c-bc37-fde4b3becd85" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+reconocer</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e7b4deb5-b4fa-4626-b20f-614ad3699c4c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="233c23bd-a3cb-4582-b5ea-b0a8cba9e5b3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +reconocer 
\entryTyp root 
\gENG 
\gSPN 
\e +reconocer 
\c V1 
\mp +FinalI 
\ach recono:ci 
\akh recono:ci 
\acl recono:ci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl recono:ce +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl recono:ci +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl recono:ce +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame recono:ci 
\i Gen 44.16 nota: Josépa väsunta mana suwashga carpis Judá reconociycan wauguinta unay ranticushganpita jutsayog cashganta.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="dc780376-5df0-4bcd-a629-35261d3dd23c" ownerguid="147c2e58-9ae8-460f-8cab-bf04a668945d"> -<ExampleWords> -<AUni ws="en">prophetic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something said in prophecy?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="dc780b44-39f1-4424-971e-9189e4902ba7" ownerguid="480b21f9-059d-4da4-abb9-7a51b2d19095"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">animal.de.carga</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0b1c2101-5aeb-4d9b-955c-5f1f6af6881b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="dc789335-b55b-4253-88bb-4cd35b15ee90" ownerguid="9db00bb9-0443-4017-9185-2a6e3f43e556"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" t="r" /> -</Morph> -<Msa> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="dc79296a-a2ce-475c-846f-a6f15f685b74" ownerguid="aa23f4a2-4f66-458c-8ac9-e19fa0b0b6d3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">brother</AUni> -<AUni ws="es">hermano</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fd699cc6-27fd-4838-ae7c-e1a0e888dc2b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="dc7adfea-e6bd-4b32-8bfb-32f8746e158e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">piric</AUni> -<AUni ws="qvm-x-acl">piric</AUni> -<AUni ws="qvm-x-akh">pirik</AUni> -<AUni ws="qvm-x-akl">pirik</AUni> -<AUni ws="qvm-x-ame">pirik</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pirik</AUni> -<AUni ws="qvm-x-acl">*pirik</AUni> -<AUni ws="qvm-x-akh">*pirik</AUni> -<AUni ws="qvm-x-akl">*pirik</AUni> -<AUni ws="qvm-x-ame">*pirik</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.850" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ef789617-a0d2-4943-9233-f66e397adf75" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pirik</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="82a9f772-93a4-472c-988a-c95cc8aac465" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="99d2d532-7c4e-49ec-ba16-ae3fa480e2fe" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pirik 
\entryTyp root 
\gENG I slept the night in fits and starts. 
\gSPN asustado 
\e *pirik 
\c R0 
\mp +FinalC 
\ach piric 
\akh pirik 
\acl piric 
\akl pirik 
\ame pirik</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="dc7b9a6f-71b8-4b09-b3fa-49de5428e2eb" ownerguid="59ef732b-1fd4-48ac-a9d1-504f16919adb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="b28c1db0-7908-4151-98a3-5a55be83f59e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="dc7fab50-334d-4830-abed-ea56d2936883" ownerguid="d85391fa-680a-4715-81ac-c0835acac8c5"> -<ExampleWords> -<AUni ws="en">milk (v), milk (n), milk jug, bucket, dairy, dairy cow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to milking an animal?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="dc806fe8-99c2-46c1-a006-ce70543a6406" ownerguid="6c7f0837-ac1e-4d41-8774-f8fc826cfd91"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="dc80a4c5-3a1c-4fae-a3f8-f4ffa9fd06d6" ownerguid="818e33ff-590e-4d0e-b84e-67771324a545"> -<Question> -<AUni ws="en">(2) What words are used to describe the actions done with these tools?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="dc852959-b589-4bab-ba1e-e0eefb793305" ownerguid="3b69f6b6-d64a-43aa-99dc-05e34f81e07f"> -<ExampleWords> -<AUni ws="en">tenant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to someone who rents a house?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="dc8ba09b-1dd8-46f9-8c88-df18840c8d52" ownerguid="32974828-df2f-4a0d-ba0d-e3499f9a1659"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="dc8ca704-e714-4bb5-9ae7-b9dab779a25d" ownerguid="ff5edd31-5d75-47cf-97de-7bca50eb11e1"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">OBA 1.6 Ali alinnin cagcunataga pacaraycätsiptiquipis ashi ashircurmi apacongapag.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="dc8df45a-dc9a-4c89-b25b-7c5fb93815e5" ownerguid="7bf05f4e-909f-40ca-b742-9be21eba9fbb"> -<ExampleWords> -<AUni ws="en">may</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) permission: the agent is allowed to complete the action of the main verb: 'The students may check books out for two weeks'.</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="dc8eb01c-8a25-40aa-bc7c-833f034ab4a8" ownerguid="dd564be9-1c41-4a62-bbb4-ef3a01483155"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="dc8f23ee-46e0-4da4-93d2-8f91f1764fa0" ownerguid="4872c571-5518-4b38-8579-b26952b20ee3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="dc8f8265-445d-492c-ba4c-c2c66d06879a" ownerguid="e7e5dbf2-6d5b-4869-b357-8a7860c29002"> -<ExampleWords> -<AUni ws="en">leach</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to water flowing through something and dissolving something in it?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="dc94635b-d56c-42e5-ab54-54b4a0f85166"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guellay</AUni> -<AUni ws="qvm-x-acl">guellay</AUni> -<AUni ws="qvm-x-akh">qellay</AUni> -<AUni ws="qvm-x-akl">qellay</AUni> -<AUni ws="qvm-x-ame">qillay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qillay</AUni> -<AUni ws="qvm-x-acl">*qillay</AUni> -<AUni ws="qvm-x-akh">*qillay</AUni> -<AUni ws="qvm-x-akl">*qillay</AUni> -<AUni ws="qvm-x-ame">*qillay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.173" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="443a703b-ceb6-4e43-a6a6-62918e46293d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qillay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c003b52c-ad4b-4349-a365-357b4655a667" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="414b6364-f210-454e-8e20-440fd5831f49" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qillay 
\entryTyp root 
\gENG money 
\gSPN dinero 
\e *qillay 
\c N0 
\mp NeverForeshortened 
\ach guellay 
\akh qellay 
\acl guellay 
\akl qellay 
\ame qillay 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="dc96b85c-8e35-4121-b35d-3af865c0c8cd" ownerguid="bf25931d-4760-4c66-abe8-c05a6dc5adbe"> -<ExampleWords> -<AUni ws="en">be in water</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being in water?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="dc9703bc-cf70-43c7-a685-350bc0c7aaf0" ownerguid="3acb05ff-c56a-4e53-8d6b-a92ef79d7cbd"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">NUM 15.38 Israel runacunata niy röpancunapa cuchunman morädu hïlupita sagsan rurapäcunanpag.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="dc980556-b952-45f1-acb0-7557122fb558" ownerguid="400b9b99-a217-428e-a1a0-7766bbb3d2c2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V0 V2/V0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">PSTNAR</AUni> -<AUni ws="es">PSNR</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="081dad20-ad96-439a-9979-59d56223a8a9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="dc9815e7-c06b-4517-aeb8-1cc5d9d04be1" ownerguid="0e2004b5-4971-44ef-8270-38efac8e7461"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">port</AUni> -<AUni ws="es">puerto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2d2bbffa-0608-4a75-8960-141fe384d508" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="FsClosedValue" guid="dc9973d5-5836-4832-92bc-53cba5b5402b" ownerguid="9ee92136-3d1e-4002-9a6f-53790d1f5855"> -<Feature> -<objsur guid="e13ebd7a-824d-4405-8c23-e5a30f3d53a6" t="r" /> -</Feature> -<RefNumber val="0" /> -<Value> -<objsur guid="7fd2e9b4-402c-427c-a3e3-bbf386d652da" t="r" /> -</Value> -<ValueState val="0" /> -</rt> -<rt class="LexEntry" guid="dc9c4196-9030-4e82-872c-4c1464ba758f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shagsha</AUni> -<AUni ws="qvm-x-acl">shagsha</AUni> -<AUni ws="qvm-x-akh">shaqsha</AUni> -<AUni ws="qvm-x-akl">shaqsha</AUni> -<AUni ws="qvm-x-ame">shaqsha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shaqsha</AUni> -<AUni ws="qvm-x-acl">*shaqsha</AUni> -<AUni ws="qvm-x-akh">*shaqsha</AUni> -<AUni ws="qvm-x-akl">*shaqsha</AUni> -<AUni ws="qvm-x-ame">*shaqsha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.551" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d3173625-f95f-430a-b4b6-aaaafbac7d74" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shaqsha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0e041d2a-4dd3-4308-9ea0-4dce3130282a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7fd0d27f-96fc-4fa2-b46b-cfb232ae33dc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shaqsha 
\entryTyp root 
\gENG 
\gSPN 
\e *shaqsha 
\c N0 
\ach shagsha 
\akh shaqsha 
\acl shagsha 
\akl shaqsha 
\ame shaqsha 
\i Gen 30.32 Uysha cunchaman yaycuycur canan acramushag shagsha uyshacunata, muru muru uyshacunata y yana uysha malwacunatapis.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="dc9f58e5-a5db-4a27-9a59-5c391c6f751f" ownerguid="d5a0d5ca-90e4-4617-bf2e-25ef8b6c692d"> -<Form> -<AUni ws="qvm-x-ach">resila</AUni> -<AUni ws="qvm-x-acl">resila</AUni> -<AUni ws="qvm-x-akh">resila</AUni> -<AUni ws="qvm-x-akl">resila</AUni> -<AUni ws="qvm-x-ame">resila</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="dca151da-8bff-4207-83ce-7df5c7ab65a2" ownerguid="d34e0a48-653e-4a2f-b230-fe9e61129a6c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="dca1b413-6e7f-48cf-9282-193aa2ef7e22" ownerguid="f13e62d1-1680-4113-a74f-f665bfccae7e"> -<Form> -<AUni ws="qvm-x-ach">caupu</AUni> -<AUni ws="qvm-x-acl">caupu; caupo</AUni> -<AUni ws="qvm-x-akh">kawpu</AUni> -<AUni ws="qvm-x-akl">kawpu; kawpo</AUni> -<AUni ws="qvm-x-ame">kawpu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="dca558a5-909c-4b45-96e9-3978ded13259" ownerguid="834c0976-f985-4355-a1be-b39d31579892"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="dca61780-18f2-4701-a30b-659b05534cce" ownerguid="d9104a31-4975-481b-adbd-ad89adcdc0e8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="dca6306d-5755-4bc8-b507-2431a5df887d" ownerguid="7c616aef-75fd-43c8-90a5-87ca7fdbcbab"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">peel</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2d3efb5a-72c3-48e5-ad04-99bbcefeed94" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="dca8a0f9-3057-4950-bca2-2ae03149815f" ownerguid="c4b110cf-d968-4bc6-ac0c-7e70cbad2756"> -<ExampleWords> -<AUni ws="en">event, show, special day, gathering, meal, observance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to a social event?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="dca9a740-68f3-415b-8261-b1809e2abc4d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">catri; catre</AUni> -<AUni ws="qvm-x-acl">catri; catri; catre</AUni> -<AUni ws="qvm-x-akh">catri; catre</AUni> -<AUni ws="qvm-x-akl">catri; catri; catre</AUni> -<AUni ws="qvm-x-ame">catri; catre</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+catre</AUni> -<AUni ws="qvm-x-acl">+catre</AUni> -<AUni ws="qvm-x-akh">+catre</AUni> -<AUni ws="qvm-x-akl">+catre</AUni> -<AUni ws="qvm-x-ame">+catre</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.90" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="51c8664e-f0bf-4d6d-8b28-fdb28a1f5713" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+catre</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eb208ace-c734-49b6-9c33-d4d2adbbd29a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a0b1bca1-75ce-4cf0-aa54-08aa1746eb57" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +catre 
\entryTyp root 
\gENG bed 
\gSPN catre 
\e +catre 
\c N0 
\mp +FinalI 
\ach catri / ~_# 
\ach catre / _# 
\akh catri / ~_# 
\akh catre / _# 
\acl catri / ~_# 
\acl catri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl catre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl catri / ~_# 
\akl catri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl catre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame catri / ~_# 
\ame catre / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="dcabf959-e9ee-4cc4-8e95-3434f6be3512" ownerguid="75bb6504-5ee0-465d-9ec6-d585b47d3a87"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="4f002e9e-b77d-4817-9565-df53c1e29865" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="dcac62df-052d-4e51-878f-59e51fde112d" ownerguid="4eb41e40-4115-435a-934a-5d91022a29dc"> -<ExampleWords> -<AUni ws="en">owe, be in debt, have a debt, heavily in debt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to owing money?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="dcac899f-8ba4-45c2-8edf-58f7bb09f26d" ownerguid="61c8829c-027a-422d-857a-a656684a8a1b"> -<Form> -<AUni ws="qvm-x-ach">señor</AUni> -<AUni ws="qvm-x-acl">señor</AUni> -<AUni ws="qvm-x-akh">señor</AUni> -<AUni ws="qvm-x-akl">señor</AUni> -<AUni ws="qvm-x-ame">señor</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="dcaecd56-8018-451d-badc-d3f4cfb98b69" ownerguid="f3364eb3-dbb7-406a-a270-0d39b87a28fd"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="dcb12394-7f54-4a33-9719-7bd1cfca94a8" ownerguid="75a664f1-1c69-4a49-be7b-ad0be56cade0"> -<Form> -<AUni ws="qvm-x-ach">jaca</AUni> -<AUni ws="qvm-x-acl">jaca</AUni> -<AUni ws="qvm-x-akh">jaka</AUni> -<AUni ws="qvm-x-akl">jaka</AUni> -<AUni ws="qvm-x-ame">haka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="dcb2d421-7283-487a-808d-ea5822d44dbc" ownerguid="8b6da228-9ec4-4e13-b6d6-0e3bb8257f7c"> -<Form> -<AUni ws="qvm-x-ach">yügu</AUni> -<AUni ws="qvm-x-acl">yügu; yügo</AUni> -<AUni ws="qvm-x-akh">yügu</AUni> -<AUni ws="qvm-x-akl">yügu; yügo</AUni> -<AUni ws="qvm-x-ame">yügu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="dcbce83f-4058-4b6e-9cb5-c29c0685f45d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shatu</AUni> -<AUni ws="qvm-x-acl">shatu; shatu; shato</AUni> -<AUni ws="qvm-x-akh">shatu</AUni> -<AUni ws="qvm-x-akl">shatu; shatu; shato</AUni> -<AUni ws="qvm-x-ame">shatu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shatu.n</AUni> -<AUni ws="qvm-x-acl">*shatu.n</AUni> -<AUni ws="qvm-x-akh">*shatu.n</AUni> -<AUni ws="qvm-x-akl">*shatu.n</AUni> -<AUni ws="qvm-x-ame">*shatu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.559" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="83f9bd39-aa8a-409c-9342-0848355e9307" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shatu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c7a5e6ca-f6b1-47c2-ad2b-508f7889e6f7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="73efc5bd-44c4-40c3-a2ed-1f4aff7e9024" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shatu.n 
\entryTyp root 
\gENG corn.pastry 
\gSPN humita 
\e *shatu.n 
\c N0 
\ach shatu 
\akh shatu 
\acl shatu / _# 
\acl shatu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shatu / _# 
\akl shatu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shatu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="dcbd238b-cf06-4e27-a348-315211530182" ownerguid="d6c29733-beeb-4fc9-975f-5e78a8acc273"> -<ExampleWords> -<AUni ws="en">proficient, businesslike, practical, thorough</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who works well?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="dcbf90cd-6028-46f8-927c-3d2d053d60ca" ownerguid="94519d8a-0ad6-4acd-8413-84cb6e9928c7"> -<Form> -<AUni ws="qvm-x-ach">siniga</AUni> -<AUni ws="qvm-x-acl">siniga</AUni> -<AUni ws="qvm-x-akh">siniga</AUni> -<AUni ws="qvm-x-akl">siniga</AUni> -<AUni ws="qvm-x-ame">siniga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="dcbfb374-33ae-4520-99d4-233644bd7eb4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chogchu</AUni> -<AUni ws="qvm-x-acl">chogchu; chogcho</AUni> -<AUni ws="qvm-x-akh">choqchu</AUni> -<AUni ws="qvm-x-akl">choqchu; choqcho</AUni> -<AUni ws="qvm-x-ame">chuqchu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*truqtru</AUni> -<AUni ws="qvm-x-acl">*truqtru</AUni> -<AUni ws="qvm-x-akh">*truqtru</AUni> -<AUni ws="qvm-x-akl">*truqtru</AUni> -<AUni ws="qvm-x-ame">*truqtru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.180" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7bbe94cb-fb50-4c90-b223-43708696ae36" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*truqtru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="43b3a433-9f89-442a-8d9e-15013afb1e5b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5e4bdfed-88f7-429a-b4df-c613b378c340" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *truqtru 
\entryTyp root 
\gENG cramp 
\gSPN entumecer 
\e *truqtru 
\c V1 
\ach chogchu 
\akh choqchu 
\acl chogchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl chogcho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl choqchu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl choqcho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chuqchu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="dcc0d00a-e4e8-499f-b897-6f839874b226" ownerguid="b32757c5-6fad-4203-a70c-015e7b5bd4d0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">jerk.head</AUni> -<AUni ws="es">arrojar.cabeza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0f3891fb-e612-4c8d-b266-7a36a7307b7c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="dcc276da-db5c-46fe-9d64-da7e34f8c562"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pla:nu</AUni> -<AUni ws="qvm-x-acl">pla:nu; pla:nu; pla:no</AUni> -<AUni ws="qvm-x-akh">pla:nu</AUni> -<AUni ws="qvm-x-akl">pla:nu; pla:nu; pla:no</AUni> -<AUni ws="qvm-x-ame">pla:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+plano</AUni> -<AUni ws="qvm-x-acl">+plano</AUni> -<AUni ws="qvm-x-akh">+plano</AUni> -<AUni ws="qvm-x-akl">+plano</AUni> -<AUni ws="qvm-x-ame">+plano</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.871" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="448f8188-4d18-4b17-a0bb-b7845c6f2a7f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+plano</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f697b0f8-e86c-408d-97c9-e5f035fa188d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5de3cda1-5a10-45ac-8543-5d67ae9e0759" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +plano 
\entryTyp root 
\gENG 
\gSPN 
\e +plano 
\c N0 
\ach pla:nu 
\akh pla:nu 
\acl pla:nu / _# 
\acl pla:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pla:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pla:nu / _# 
\akl pla:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pla:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pla:nu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="dcc3e45e-f093-4fda-955b-fd3579ddc9a7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rurun</AUni> -<AUni ws="qvm-x-acl">rurun</AUni> -<AUni ws="qvm-x-akh">rurun</AUni> -<AUni ws="qvm-x-akl">rurun</AUni> -<AUni ws="qvm-x-ame">rurun</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rurun</AUni> -<AUni ws="qvm-x-acl">*rurun</AUni> -<AUni ws="qvm-x-akh">*rurun</AUni> -<AUni ws="qvm-x-akl">*rurun</AUni> -<AUni ws="qvm-x-ame">*rurun</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.399" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="db71cf3c-a98a-4675-a2f5-2ed343a92423" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rurun</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ddd97b52-f267-4553-9c53-3e2554f9d733" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dbe8fc84-5d62-4696-a30b-b1dc3818c594" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rurun 
\entryTyp root 
\gENG kidneys 
\gSPN riñón 
\e *rurun 
\c N0 
\mp +FinalC 
\ach rurun 
\akh rurun 
\acl rurun 
\akl rurun 
\ame rurun</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="dcc7fc19-4d75-40d4-8a59-0b053cade6af" ownerguid="d7861def-70c1-470f-bca6-8230cbbaa3e9"> -<ExampleWords> -<AUni ws="en">glance, cursory glance, look at briefly, (eyes) flicker over, take a quick look</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to looking at something for a short time?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="dccb55f6-9e2b-4963-a6d5-640d118909e1"> -<Analyses> -<objsur guid="01cbdf1d-9732-4b93-a14c-f0837ecc797e" t="o" /> -<objsur guid="658631d0-f29a-4ed0-925e-04fa323762f9" t="o" /> -<objsur guid="714c19ca-fc12-4630-b529-468429ec083d" t="o" /> -<objsur guid="867f98c7-5ab3-4c00-b3dc-774415ad068f" t="o" /> -<objsur guid="a2417520-5648-492d-b8c5-c2dc258604ef" t="o" /> -<objsur guid="fcded7cb-9a9e-4079-904f-11712573f564" t="o" /> -</Analyses> -<Checksum val="-1782239368" /> -<Form> -<AUni ws="qvm-x-akh">wayinpa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="dcd3c940-a90b-47a2-bd25-38103aefae7e" ownerguid="13e67cc9-055b-4f9b-9217-a16b18db0329"> -<ExampleWords> -<AUni ws="en">think, think it is possible, believe, bet, would gamble, would wager, guess, reckon, speculate, surmise, suspect, get the impression, have the impression, be under the impression, get the idea, feel, have the feeling, get the feeling</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that you think something is true, but you are not completely sure about it?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="dcd3f0fa-4ffa-4953-a567-48b72debd84c" ownerguid="3445e61b-61a3-4ede-93f5-402ebe9ca51c"> -<ExampleWords> -<AUni ws="en">inadvisable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that should not be done?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="dcd450eb-28be-4834-9ab6-ae58b1827137"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">batallón; batallon</AUni> -<AUni ws="qvm-x-acl">batallón; batallon</AUni> -<AUni ws="qvm-x-akh">batallón; batallon</AUni> -<AUni ws="qvm-x-akl">batallón; batallon</AUni> -<AUni ws="qvm-x-ame">batallón; batallon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+batallón</AUni> -<AUni ws="qvm-x-acl">+batallón</AUni> -<AUni ws="qvm-x-akh">+batallón</AUni> -<AUni ws="qvm-x-akl">+batallón</AUni> -<AUni ws="qvm-x-ame">+batallón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.949" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e07263d6-417e-4bd5-b767-0668907a5b2e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+batallón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5af03c53-f2e9-411b-ad74-f2074ac7e823" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cbf9f9b7-1307-435d-9c54-52c14e687f50" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +batallón 
\entryTyp root 
\gENG batallion 
\gSPN batallon 
\e +batallón 
\c N0 
\mp +FinalC 
\ach batallón / _# 
\ach batallon / ~_# 
\akh batallón / _# 
\akh batallon / ~_# 
\acl batallón / _# 
\acl batallon / ~_# 
\akl batallón / _# 
\akl batallon / ~_# 
\ame batallón / _# 
\ame batallon / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="dcd58f4f-4c5f-4032-bec9-14a5543b3db9" ownerguid="5073927d-d871-4d59-9c5b-960f332559e3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="dcd5cb8f-b263-491d-be14-f0981beae5ab" ownerguid="bc011a6a-46e2-492e-b923-6dc6e03dcea4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chilwar</AUni> -<AUni ws="es">chilhuar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7c7fdfe1-16ef-4193-addd-07e3a5c5a490" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="dcd75e81-78f2-4944-a323-dd33d31698d3" ownerguid="93909cd8-593e-42bd-9c04-20e4d34a62e5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="dcdd35f7-cede-4fb2-a401-9853cf79d402" ownerguid="71a01bb8-b47c-449b-ad18-573402973638"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="dcdd6b3b-5de9-4b0a-92cf-5ac303827b62" ownerguid="98f9ceff-e8a2-4e24-abc4-561b80bb5889"> -<ExampleWords> -<AUni ws="en">stay fresh, keep well, retain its flavor/appearance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something continuing to be in a good condition?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="dce0afd6-eb7b-4a2f-853a-c9b50ce9bb53" ownerguid="e9947962-a243-4a44-a94d-64d68718d88c"> -<ExampleWords> -<AUni ws="en">independent, sovereign, self-governing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a country that is independent?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="dce2793a-ad69-48dc-ac05-338ff26586ce" ownerguid="97885cab-cd96-4d34-a62a-3e3daac0c165"> -<ExampleWords> -<AUni ws="en">be separate, alone, lonely, isolated, hermit, recluse, cloistered, sanctified, singular, bachelor, old maid, orphan, be by yourself, cut off from people, marooned, remote, distant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being alone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="dce301e8-507b-4a2d-8039-018ebeb92a3b" ownerguid="93de2257-8303-490d-b2fe-6d1d838b08c6"> -<ExampleWords> -<AUni ws="en">clippers, scissors, file</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What tools are used to care for the nails?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="dce62a82-68fd-43d5-8f67-b011bd487a74" ownerguid="dedf9bc3-21a0-4eee-827f-f11c03b1e934"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="dcf17844-b87d-4f50-b6a6-144d1f482eff" ownerguid="d21db541-4122-465f-9db5-4c76f5e84426"> -<ExampleWords> -<AUni ws="en">earn a living, make a living, support yourself, earn your keep</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to earning enough to pay for what you need?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="dcf6e4ac-e0d3-4b91-b4ee-7971012bbd4b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ro:pa</AUni> -<AUni ws="qvm-x-acl">ro:pa</AUni> -<AUni ws="qvm-x-akh">ro:pa</AUni> -<AUni ws="qvm-x-akl">ro:pa</AUni> -<AUni ws="qvm-x-ame">ro:pa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ropa.v</AUni> -<AUni ws="qvm-x-acl">+ropa.v</AUni> -<AUni ws="qvm-x-akh">+ropa.v</AUni> -<AUni ws="qvm-x-akl">+ropa.v</AUni> -<AUni ws="qvm-x-ame">+ropa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.378" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f3ae08f2-e9b4-4487-af7e-4c3260a1bd0a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ropa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d03ec8bb-381c-4612-9ae3-8285e0cc8548" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="65425168-65c9-4512-afae-d738f9024a3a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ropa.v 
\entryTyp root 
\gENG clothes 
\gSPN ropa 
\e +ropa.v 
\c V1 
\ach ro:pa 
\akh ro:pa 
\acl ro:pa 
\akl ro:pa 
\ame ro:pa 
\mcc +ropa.v / _ (PNCT) [prt]</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="dd02b4b5-7a53-410b-b0cc-b82105738df6" ownerguid="d4ef7912-3b33-4ccd-ad37-23ad4b6814d6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="dd02cd4b-7391-4e95-ab67-a86148fe9ef3" ownerguid="884c283c-c156-459c-80a8-bfdbf902271c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dew</AUni> -<AUni ws="es">rocía</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1a78a53e-2625-4fff-9da6-de5e867684f1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="dd0304a6-1ed3-49c7-9844-a8cf11943bae"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">libru; libro</AUni> -<AUni ws="qvm-x-acl">libru; libru; libro</AUni> -<AUni ws="qvm-x-akh">libru; libro</AUni> -<AUni ws="qvm-x-akl">libru; libru; libro</AUni> -<AUni ws="qvm-x-ame">libru; libro</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+libro</AUni> -<AUni ws="qvm-x-acl">+libro</AUni> -<AUni ws="qvm-x-akh">+libro</AUni> -<AUni ws="qvm-x-akl">+libro</AUni> -<AUni ws="qvm-x-ame">+libro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.84" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c15db955-30f2-4849-a114-b86579a046a5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+libro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="99572c11-c663-466e-b856-d1da3e20ea5c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6881f5fe-5269-4b76-a379-5cbbc907f77d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +libro 
\entryTyp root 
\gENG book 
\gSPN libro 
\e +libro 
\c N0 
\ach libru / ~_# 
\ach libro / _# 
\akh libru / ~_# 
\akh libro / _# 
\acl libru / ~_# 
\acl libru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl libro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl libru / ~_# 
\akl libru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl libro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame libru / ~_# 
\ame libro / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="dd0319a5-570d-4b71-b447-96222bda08db" ownerguid="9bf21458-0acc-4d8d-ba9a-7b9fb6b8ee0b"> -<ExampleWords> -<AUni ws="en">be a hypocrite, act hypocritically, hypocrisy, pretend, pretense</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to saying one thing but doing something else?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="dd06cfae-5428-49b9-921e-935ceb6e6c21"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lauma</AUni> -<AUni ws="qvm-x-acl">lauma</AUni> -<AUni ws="qvm-x-akh">lawma</AUni> -<AUni ws="qvm-x-akl">lawma</AUni> -<AUni ws="qvm-x-ame">lawma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llawma</AUni> -<AUni ws="qvm-x-acl">*llawma</AUni> -<AUni ws="qvm-x-akh">*llawma</AUni> -<AUni ws="qvm-x-akl">*llawma</AUni> -<AUni ws="qvm-x-ame">*llawma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.182" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6382154a-ce1c-4943-8430-98dc540f4f7b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llawma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6fd6d4c9-7203-47bd-8ee6-40fc67a3821b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="96221942-834f-40f3-9b8f-5c199bcf7ea1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llawma 
\entryTyp root 
\gENG ? 
\gSPN desramar 
\e *llawma 
\c V1 
\ach lauma 
\akh lawma 
\acl lauma 
\akl lawma 
\ame lawma</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="dd0b39f3-c51c-46ce-b9e2-cee67a9d9fd0" ownerguid="ba608290-4c3c-4144-8b70-10aa77bc0243"> -<Form> -<AUni ws="qvm-x-ach">purifica</AUni> -<AUni ws="qvm-x-acl">purifica</AUni> -<AUni ws="qvm-x-akh">purifica</AUni> -<AUni ws="qvm-x-akl">purifica</AUni> -<AUni ws="qvm-x-ame">purifica</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="dd0cabca-7bce-4fe1-9d4a-d0d1ab3dd9de" ownerguid="5fdf3946-7e47-4fd2-906f-4da7ce5fa490"> -<ExampleWords> -<AUni ws="en">answer, response, reply, acknowledgment, rebuttal, rejoinder, return, echo, feedback, immediate response, answer by return mail</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to what is said in answer?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="dd0dc6f7-f157-4b97-a1a4-7cebfba9b3b9" ownerguid="e3652e40-520f-4331-b510-861e207e6c0b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">caracól</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="74b6f7ca-b63e-467a-9b9a-44a96ec279b4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="dd0ff52f-9597-4a5c-99d4-a6104436b85c" ownerguid="a894d991-d5da-45a6-9c62-009133257f36"> -<ExampleWords> -<AUni ws="en">itch, have an itch, scratch, be irritated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to itching when the skin is irritated?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="dd10cec0-5c8c-4f67-8fc2-cb855eb0c511" ownerguid="acf5e294-d169-45c1-a9d3-960536e018cc"> -<ExampleWords> -<AUni ws="en">sound, noise, voice</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to something that is heard?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="dd117cf9-622d-4a6d-b1d8-cd767df7feda" ownerguid="6712385a-6740-4f28-8bbe-8615ea17116b"> -<ExampleWords> -<AUni ws="en">intermittently, intermittent, on and off, off and on, in fits and starts, sporadic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something happens sometimes but not regularly?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="dd12ac0f-55cc-4c79-a50c-d23cc7ea60b3" ownerguid="bbb897b5-f09b-4263-9f81-826ca61084f1"> -<Abbreviation> -<AUni ws="en">5.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.337" /> -<DateModified val="2022-9-23 16:55:8.337" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to bathing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Bathe</AUni> -</Name> -<OcmCodes> -<Uni>515 Personal Hygiene</Uni> -</OcmCodes> -<Questions> -<objsur guid="05f63c6f-16b8-43c8-bd2b-bcb8b1196503" t="o" /> -<objsur guid="5769ffc7-ed71-4657-b052-1964d8982947" t="o" /> -<objsur guid="7e623005-4c9c-4eed-a87e-ceb6c569f9f2" t="o" /> -<objsur guid="21d4b633-4abf-4485-b242-3060aab7b1c9" t="o" /> -<objsur guid="0d9d58e1-3fdc-45d8-82b9-c9f627dde438" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="dd1313fa-e38b-4687-a369-20c30c56fcea" ownerguid="8ee56c80-4f6b-4d4e-b1f6-6989b08d0f46"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">injure</AUni> -<AUni ws="es">lesionar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1896578b-8a80-4536-93b9-f91d80fccc66" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="dd13b98a-1219-4893-9e41-a5e82bd65d7c" ownerguid="b47bc921-a46e-4e6c-a236-7f91faa3dda7"> -<Form> -<AUni ws="qvm-x-ach">pagla</AUni> -<AUni ws="qvm-x-acl">pagla</AUni> -<AUni ws="qvm-x-akh">paqla</AUni> -<AUni ws="qvm-x-akl">paqla</AUni> -<AUni ws="qvm-x-ame">paqla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="dd16592c-f279-4db1-bec5-34c1d3ed2fcf" ownerguid="1cb9266c-c5a6-4b25-8fa3-dbad81a53cd3"> -<Form> -<AUni ws="qvm-x-ach">micu</AUni> -<AUni ws="qvm-x-acl">micu</AUni> -<AUni ws="qvm-x-akh">miku</AUni> -<AUni ws="qvm-x-akl">miku</AUni> -<AUni ws="qvm-x-ame">miku</AUni> -</Form> -<IsAbstract val="True" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="dd17a34f-452d-4d99-971d-9eb6c20c7e99" ownerguid="72a0a663-2f1a-4e3f-a573-ed580dae64e6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">junag</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">junag</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">junaq</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">junaq</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">hunaq</Run> -</AStr> -</Form> -<Morph> -<objsur guid="c52a56a5-e19d-430e-8ebc-ea403d8bfc03" t="r" /> -</Morph> -<Msa> -<objsur guid="2a41474f-1dff-4f68-a787-65d99d7936a2" t="r" /> -</Msa> -<Sense> -<objsur guid="9ba89bb6-2261-43bf-a292-242d714b0170" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="dd1d1514-30ff-4c03-928f-550073886727" ownerguid="a93654fd-99a8-47cc-a86d-1cb2e6c8df68"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.established</AUni> -<AUni ws="es">establecerse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2663958f-2dfe-4db0-848c-0fafa554226b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="dd1d7a67-9c2a-4283-a3e0-bbe6e1d96bda"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pucillu; pucillo</AUni> -<AUni ws="qvm-x-acl">pucillu; pucillu; pucillo</AUni> -<AUni ws="qvm-x-akh">pucillu; pucillo</AUni> -<AUni ws="qvm-x-akl">pucillu; pucillu; pucillo</AUni> -<AUni ws="qvm-x-ame">pucillu; pucillo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pocillo</AUni> -<AUni ws="qvm-x-acl">+pocillo</AUni> -<AUni ws="qvm-x-akh">+pocillo</AUni> -<AUni ws="qvm-x-akl">+pocillo</AUni> -<AUni ws="qvm-x-ame">+pocillo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.891" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a7a661cf-38dc-4139-8ae2-b869a6baa34b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pocillo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9095828c-4f33-46c3-862c-c156d6851e33" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d9457ad0-7406-4420-ae7e-2fe824ab0c8e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pocillo 
\entryTyp root 
\gENG cup 
\gSPN pocillo 
\e +pocillo 
\c N0 
\ach pucillu / ~_# 
\ach pucillo / _# 
\akh pucillu / ~_# 
\akh pucillo / _# 
\acl pucillu / ~_# 
\acl pucillu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pucillo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pucillu / ~_# 
\akl pucillu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pucillo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pucillu / ~_# 
\ame pucillo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="dd1e424f-aa21-4cc0-8c39-07241c4c4cb3" ownerguid="fc6d1000-b760-4d53-8983-62c5d20e6a0d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="dd219e2c-5f99-4118-be9d-413293cb6012" ownerguid="ecce310f-de4b-43f0-8ed6-c18b70575b7a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ya</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ya</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ya</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ya</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ya</Run> -</AStr> -</Form> -<Morph> -<objsur guid="0266a2a0-8dee-41c8-9584-efdc790cb2f2" t="r" /> -</Morph> -</rt> -<rt class="MoStemMsa" guid="dd230635-6161-4114-ab88-4573d5bc0cff" ownerguid="91c945df-0807-4021-9512-d969a53ca273"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="dd235928-9ba3-44d3-b41c-fae0183f9756" ownerguid="baedbf9f-c8db-4803-abc1-d30e7d364282"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="b6fa9304-bd53-4da7-98b2-5fad70e0cc17" t="o" /> -<objsur guid="ca75a3d3-94aa-4a1f-b588-ba21396a7a47" t="o" /> -<objsur guid="a9daa13e-716e-40fc-ac27-eaccfa7f70c7" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="dd242bc6-127d-4fbc-8103-d4e093b6f021" ownerguid="863e5dc0-1b6b-486e-b6b4-2dbef9ed05ec"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="dd24c859-f935-4de1-9925-c92b8c6944c3" ownerguid="965c6a0b-3034-4e2f-a00b-ed2eb3119a5d"> -<Question> -<AUni ws="en">(5) admonitive: the command constitutes a warning: 'you had better not...'.</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="dd251b8b-03d0-4b66-a5db-fedbb763a792" ownerguid="5f420ecd-d3b2-4f25-91d2-f314662820c9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="dd2867a8-116c-43c4-bcc7-b8fae7f6adfa" ownerguid="268bd992-240d-4e26-a831-9a4b03ee5d1b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="dd2acf5a-f941-41a6-9f46-909b779a31d1" ownerguid="1bd6b7a5-bf54-4161-bd0f-224286974fef"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ee117845-dcab-40d3-aee8-8988cf531702" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="dd2cf479-7bed-42a4-81fc-5a05662f7cc2" ownerguid="77748469-fcf1-4cde-a3f6-47432eac5b6e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="ca07312d-49a1-4d8c-8591-706cb7d5a595" t="r" /> -</Msa> -<Sense> -<objsur guid="a1eaf593-3379-47ea-bee4-15cbbda9775f" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="dd3021f7-38a6-44ce-ba30-fd69c6f43b7a" ownerguid="f99ca948-e6f8-40bd-a120-c10cfe309159"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">olvidar</AUni> -<AUni ws="es">forget</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2ba174b3-7441-4ba8-a159-1961ba55ff01" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="dd31246e-9402-48f1-ae98-07d340f56f8f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa:ra</AUni> -<AUni ws="qvm-x-acl">pa:ra</AUni> -<AUni ws="qvm-x-akh">pa:ra</AUni> -<AUni ws="qvm-x-akl">pa:ra</AUni> -<AUni ws="qvm-x-ame">pa:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+parar</AUni> -<AUni ws="qvm-x-acl">+parar</AUni> -<AUni ws="qvm-x-akh">+parar</AUni> -<AUni ws="qvm-x-akl">+parar</AUni> -<AUni ws="qvm-x-ame">+parar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.719" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="66caddd9-fc84-4e9f-8952-9476d9ac85c0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+parar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1e1928c5-6ef0-457f-889d-aee4d016ac62" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ac1b748f-ad65-4d94-8878-23327428271e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +parar 
\entryTyp root 
\gENG stop 
\gSPN parar 
\e +parar 
\c V1 
\ach pa:ra 
\akh pa:ra 
\acl pa:ra 
\akl pa:ra 
\ame pa:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="dd322afd-d716-46fc-8b2f-9ca38401936c" ownerguid="afdd8b8e-9502-4d06-94ee-e79815b65750"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">That dog is <almost> human.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">almost, practically, virtually</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words indicate that something is so similar to something that it is almost the same thing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="dd35bcb4-86d0-4df4-9535-c7f2b0211a94" ownerguid="646dab64-5c2f-4f45-8e28-4d13437639d4"> -<ExampleWords> -<AUni ws="en">be friends with, going together, going out, going steady</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used to refer to the state of being friends?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="dd37df36-2539-44e7-93b5-b3d500512f7b" ownerguid="f595deab-1838-4ddb-9ebe-55fb3007b309"> -<ExampleWords> -<AUni ws="en">military organization, branch of the military, the services</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a military organization?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="dd397548-119f-4bb0-b534-b57889d62fe2" ownerguid="63e7e607-7ad1-4cb5-89cf-de362007b4bb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="dd3a6b8a-7812-47cf-b3ce-a29b9139c7c0" ownerguid="28c8e92f-eb09-47be-a59e-0d376240bfb2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="dd3c5289-58d2-4550-8e39-5571d4d5291d" ownerguid="7b340feb-3b8f-47be-98fd-66617a160dca"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sometimes</AUni> -<AUni ws="es">aveces</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e92cdbc1-ab51-4992-9e6a-048b5c6ef352" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="dd3d1090-d908-474d-bad0-bec9bacfe4a5" ownerguid="3f1b8895-cd2c-4f80-9171-148a99536b61"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="dd3de3af-6b7e-4cc7-a3da-9eef5a197844" ownerguid="7c35bb94-49c7-464a-b533-2255bc261138"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">saw</AUni> -<AUni ws="es">serrucho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="674f7009-814d-46c2-8766-e167ce5b7ad8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="dd3e14a7-61c5-4fa4-a4a2-fd44c5b1f891" ownerguid="4cf28853-34b3-417b-8eee-8d5edcba2660"> -<Form> -<AUni ws="qvm-x-ach">rupya</AUni> -<AUni ws="qvm-x-acl">rupya</AUni> -<AUni ws="qvm-x-akh">rupya</AUni> -<AUni ws="qvm-x-akl">rupya</AUni> -<AUni ws="qvm-x-ame">rupya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="dd3e872a-fb50-4204-9646-7a24c644013b" ownerguid="7b513a02-c3ae-4243-9410-16854d911258"> -<Abbreviation> -<AUni ws="en">9.7.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.728" /> -<DateModified val="2022-9-23 16:55:8.728" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the proper names of the languages that are spoken in the area around the language community, including the name of your own language. These language names may or may not correspond with the names of countries. Do not try to include every language name in the world, only the neighboring and important ones. For instance you might want to include the languages that border your own and the national language. Give the form that you use. For instance the German people call their language 'Deutsch', but in English we call it 'German'.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Names of languages</AUni> -</Name> -<OcmCodes> -<Uni>101 Identification</Uni> -</OcmCodes> -<Questions> -<objsur guid="d54aeb07-8480-4cef-9d70-2f717dc9079b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="dd3f680d-05ef-400e-bb4f-9cf66074bb0a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sapiri</AUni> -<AUni ws="qvm-x-acl">sapiri; sapire</AUni> -<AUni ws="qvm-x-akh">sapiri</AUni> -<AUni ws="qvm-x-akl">sapiri; sapire</AUni> -<AUni ws="qvm-x-ame">sapiri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*sapiri</AUni> -<AUni ws="qvm-x-acl">*sapiri</AUni> -<AUni ws="qvm-x-akh">*sapiri</AUni> -<AUni ws="qvm-x-akl">*sapiri</AUni> -<AUni ws="qvm-x-ame">*sapiri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.449" /> -<DateModified val="2022-10-10 21:18:47.203" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="258b076d-f0ff-47e4-9eea-4ed827393955" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*sapiri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="19fd8017-d396-4d1f-a1dc-bb989afc9099" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a8992eca-aaca-4f79-b594-454b6f1c26f0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *sapiri 
\entryTyp root 
\gENG 
\gSPN 
\e *sapiri 
\c V2 
\mp +FinalI 
\ach sapiri 
\akh sapiri 
\acl sapiri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl sapire +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sapiri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sapire +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sapiri</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="dd40920f-9363-49cb-bbb1-bc3e3a575c77" ownerguid="2e95bd1e-82f0-461d-8ca6-b5f1ce1fb180"> -<ExampleWords> -<AUni ws="en">wedding announcement, announce your engagement, banns</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to an announcement of a proposed marriage?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="dd409242-352f-4695-9a95-3606a8e89d1f" ownerguid="bc5d011e-e125-4655-bae4-c775a009b4ef"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="dd453137-8a41-465a-8b9b-c2ad69db59a9" ownerguid="30954ee0-f9e2-430e-b754-e6dc8e3d855a"> -<Form> -<AUni ws="qvm-x-ach">alfombra</AUni> -<AUni ws="qvm-x-acl">alfombra</AUni> -<AUni ws="qvm-x-akh">alfombra</AUni> -<AUni ws="qvm-x-akl">alfombra</AUni> -<AUni ws="qvm-x-ame">alfombra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="dd454846-9122-45ab-b258-1b1f599abe97" ownerguid="62030451-c0f2-4e80-8085-05c6400fc914"> -<ExampleWords> -<AUni ws="en">plow, cultivate, dig, hoe, harrow, make a row, plow a furrow, break up soil</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to plowing a field?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="dd455536-b9b1-4bfb-be08-b33b87e7a0b4" ownerguid="cb83441f-eb47-4fba-84b7-3408fb808b98"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pharmacy</AUni> -<AUni ws="es">botica</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="23a23d7d-caff-46c7-b7aa-d86a56794770" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="dd47c70e-1ec6-4d88-b5f1-75794046e9a8" ownerguid="5cb4d92c-638b-4dbe-8c93-310693768c36"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dry</AUni> -<AUni ws="es">seco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="033c52d1-0aa3-4aff-ba42-d88b12c825cd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="dd4942be-0087-43f5-9ef2-2dd32f951b5c" ownerguid="f202430b-f713-47a0-bf4d-d30e4bee12cb"> -<Form> -<AUni ws="qvm-x-ach">jamu</AUni> -<AUni ws="qvm-x-acl">jamu; jamo</AUni> -<AUni ws="qvm-x-akh">jamu</AUni> -<AUni ws="qvm-x-akl">jamu; jamo</AUni> -<AUni ws="qvm-x-ame">hamu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="dd498a10-7360-4af7-b77f-c7a73f281e16" ownerguid="14954a0f-5c8a-4680-90b0-53398bd3a2a7"> -<ExampleWords> -<AUni ws="en">acquaint, bare, demonstrate, disclose, discover, divulge, exhibit, explain, expose, indicate, present, make public, publicize, reveal, show, uncover, unfold, unmask, unveil</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making something known?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="dd4bb809-e717-4330-9901-b28401e9d3e3" ownerguid="50eb32a2-6dbb-4b7c-b370-aacdcfeaf5fc"> -<ExampleWords> -<AUni ws="en">recreation, leisure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to something you do to enjoy yourself?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="dd4d8f22-2c30-4e2e-a548-6f22752ba2b3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shacya</AUni> -<AUni ws="qvm-x-acl">shacya</AUni> -<AUni ws="qvm-x-akh">shakya</AUni> -<AUni ws="qvm-x-akl">shakya</AUni> -<AUni ws="qvm-x-ame">shakya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shakya</AUni> -<AUni ws="qvm-x-acl">*shakya</AUni> -<AUni ws="qvm-x-akh">*shakya</AUni> -<AUni ws="qvm-x-akl">*shakya</AUni> -<AUni ws="qvm-x-ame">*shakya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.531" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e6224e1f-8cc3-4643-b7fb-d7d35e241a06" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shakya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7cf74dda-a329-4046-9380-848d17d0def4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4605225a-e36b-4bc6-a068-48fe8b6f0e68" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shakya 
\entryTyp root 
\gENG friendly 
\gSPN amigable 
\e *shakya 
\c N0 
\ach shacya 
\akh shakya 
\acl shacya 
\akl shakya 
\ame shakya</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="dd4e0802-222a-4a24-8d8e-54c5f3e7b529" ownerguid="9554a768-c252-4032-ab95-6d3f4229275f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="dd4e30ee-8070-41cd-9b11-421816d11cd4" ownerguid="a5bfa564-0cad-4014-8007-7372a7def937"> -<Form> -<AUni ws="qvm-x-ach">bronci; bronce</AUni> -<AUni ws="qvm-x-acl">bronci; bronci; bronce</AUni> -<AUni ws="qvm-x-akh">bronci; bronce</AUni> -<AUni ws="qvm-x-akl">bronci; bronci; bronce</AUni> -<AUni ws="qvm-x-ame">bronci; bronce</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="dd500a60-9e6a-4fdb-940c-d306da444cc6" ownerguid="d030f0c7-31a3-47da-be35-46f1eba63ae9"> -<ExampleWords> -<AUni ws="en">aspire, hanker for, have a hankering for, long for, relish (n), relish (v), covet, crave, desire (v), desire (n), fancy (v), pine for, want (v), yearn</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to liking something and wanting to have it?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="dd502690-9c38-478a-a5d8-5ef5595437e2" ownerguid="ceadcecc-fbf2-4c11-9122-54b7202bcacb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="dd5375bd-733f-4b62-8276-9efaa171d84a" ownerguid="fa32115e-e389-47bd-91e1-61779172ccf2"> -<ExampleWords> -<AUni ws="en">diagnose</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to finding the cause of a disease?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="dd55819d-2311-4bdc-b5e8-5f9881f13f1a" ownerguid="a459dfd1-54ee-4b03-845f-35041413b1aa"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="dd564be9-1c41-4a62-bbb4-ef3a01483155"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">se:lla</AUni> -<AUni ws="qvm-x-acl">se:lla</AUni> -<AUni ws="qvm-x-akh">se:lla</AUni> -<AUni ws="qvm-x-akl">se:lla</AUni> -<AUni ws="qvm-x-ame">se:lla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sellar</AUni> -<AUni ws="qvm-x-acl">+sellar</AUni> -<AUni ws="qvm-x-akh">+sellar</AUni> -<AUni ws="qvm-x-akl">+sellar</AUni> -<AUni ws="qvm-x-ame">+sellar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.490" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d5368103-b81e-49a1-a75f-75341b6545b7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sellar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dc8eb01c-8a25-40aa-bc7c-833f034ab4a8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="89767eba-df2d-49c8-9f72-3f81c58e6969" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sellar 
\entryTyp root 
\gENG seal 
\gSPN sellar 
\e +sellar 
\c V2 
\ach se:lla 
\akh se:lla 
\acl se:lla 
\akl se:lla 
\ame se:lla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="dd58aab8-2f8b-4e23-8756-2a647584a83c" ownerguid="43eb9bce-ca1f-4781-ba36-6f59bb7012e8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="dd5a7ca5-61c6-48f7-a548-cec87d1a0aa0" ownerguid="279acfc5-580e-4524-8634-ed61c121e50e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">HOS 2.3 Yurishgantanog mamauächulatami cacharishag.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="dd5cf783-1656-4511-885d-748d751315a1" ownerguid="bf9606ec-9a8e-4822-8bfd-d5eebc58c65b"> -<ExampleWords> -<AUni ws="en">get dark, darken, the light fades, dim (v), fall, go dark, be plunged into darkness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a place becoming dark?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="dd5d3ad7-9163-4276-a348-fecdd895bb37"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lapsha; llapsha</AUni> -<AUni ws="qvm-x-acl">lapsha; llapsha</AUni> -<AUni ws="qvm-x-akh">lapsha; llapsha</AUni> -<AUni ws="qvm-x-akl">lapsha; llapsha</AUni> -<AUni ws="qvm-x-ame">lapsha; llapsha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llapsha.v</AUni> -<AUni ws="qvm-x-acl">*llapsha.v</AUni> -<AUni ws="qvm-x-akh">*llapsha.v</AUni> -<AUni ws="qvm-x-akl">*llapsha.v</AUni> -<AUni ws="qvm-x-ame">*llapsha.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.144" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c6238cd2-efc4-43f2-8b5b-3f353624e5e2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llapsha.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cb6d7a60-dba6-43b7-a5e8-c0cad18c84c9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="33f7b618-5308-408d-81be-fcb26473cd75" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llapsha.v 
\entryTyp root 
\gENG thin 
\gSPN delgado 
\e *llapsha.v 
\c V1 
\cm *** ch *** 
\ach lapsha 
\ach llapsha 
\cm *** kh *** 
\akh lapsha 
\akh llapsha 
\cm *** cl *** 
\acl lapsha 
\acl llapsha 
\cm *** kl *** 
\akl lapsha 
\akl llapsha 
\cm *** me *** 
\ame lapsha 
\ame llapsha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="dd5dbded-bd5b-4429-b34e-512aee12ca10" ownerguid="dc1a2c6f-1b32-4631-8823-36dacc8cb7bb"> -<ExampleWords> -<AUni ws="en">sun, solar, sol, daystar, our star</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the sun?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="dd607b37-2432-4740-9542-11c3443b85f7" ownerguid="c5f858b4-ca56-41d2-9bfb-4d31af4ecaac"> -<Form> -<AUni ws="qvm-x-ach">enamurädu</AUni> -<AUni ws="qvm-x-acl">enamurädu; enamurädu; enamurädo</AUni> -<AUni ws="qvm-x-akh">enamurädu</AUni> -<AUni ws="qvm-x-akl">enamurädu; enamurädu; enamurädo</AUni> -<AUni ws="qvm-x-ame">enamurädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="dd6907ae-1870-4b5d-8ef2-49a0fc088807" ownerguid="9a0e46a2-ed49-467b-a201-37377c06b1a2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">race</AUni> -<AUni ws="es">apuesta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="71955fa6-e0db-4f37-917f-b11f22a76976" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="dd6a0b15-4064-4300-8adb-76a89c29e7c9" ownerguid="e3284653-244a-4f45-99ed-8ce887c5d606"> -<Form> -<AUni ws="qvm-x-ach">danza</AUni> -<AUni ws="qvm-x-acl">danza</AUni> -<AUni ws="qvm-x-akh">danza</AUni> -<AUni ws="qvm-x-akl">danza</AUni> -<AUni ws="qvm-x-ame">danza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="dd6d578a-7fb1-45e1-a484-073eab706675" ownerguid="d52c5e1f-9c59-49a7-833b-ff3aa35e7076"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="fe5759d2-d197-4ae9-99ab-480851891860" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="c225039a-59fd-4b99-a362-018bc925987d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="dd6ec3c5-db08-4296-b588-1d348099d74e" ownerguid="e53a6ea9-00a7-4253-8347-c3cc89602ec4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="dd70fad2-722e-46d8-a601-fce968a39d3c" ownerguid="16dbd62c-f60d-4530-ba4e-0e74221e4681"> -<ExampleWords> -<AUni ws="en">cover, front, smokescreen, blind</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something that is used to hide something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="dd71f950-17e9-46eb-95a3-6045a2136f2b" ownerguid="4177b91c-dc7b-4bcc-b8a1-32889406924e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="dd731dda-c819-431f-b0a2-a19459f6df33" ownerguid="5db1b502-7c36-44fb-a7b4-50744e9ec286"> -<ExampleWords> -<AUni ws="en">scratch, scratch hard, itch, massage, rub</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving your hand over something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="dd74762b-7c24-472c-adea-f1fd904a38ed" ownerguid="07476166-c5e5-4701-97d3-d97de8b5be6f"> -<ExampleWords> -<AUni ws="en">knowable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe something that can be known?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="dd761d15-b7f3-4023-8b68-dbc8e0a533ed"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">COND</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="dd7793d5-bb5e-41cf-bb0f-8a25cc707179" ownerguid="45ecdf38-a66d-4ed7-a47c-0757359db0c3"> -<Form> -<AUni ws="qvm-x-ach">riya</AUni> -<AUni ws="qvm-x-acl">riya</AUni> -<AUni ws="qvm-x-akh">riya</AUni> -<AUni ws="qvm-x-akl">riya</AUni> -<AUni ws="qvm-x-ame">riya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="dd7b5a7a-7384-40d6-a65f-ed05639a61eb" ownerguid="00364f0c-9a3a-4910-a82e-1ffbc4d4137f"> -<ExampleWords> -<AUni ws="en">excitement, thrill, exhilaration, hysteria, suspense</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of excitement?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="dd7ee9e8-19a1-44c3-a0d4-19e6bc47893c"> -<Analyses> -<objsur guid="bafcff46-fb61-4d1e-b08f-1ea0177d7902" t="o" /> -</Analyses> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">palapatapis</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="dd7efcf7-7a5c-4b56-a1d4-f9f8671b4520" ownerguid="57ed66ee-f82b-4e80-955f-7492d85372b0"> -<ExampleWords> -<AUni ws="en">represent, act for</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to representing someone?</AUni> -</Question> -</rt> -<rt class="StStyle" guid="dd807cae-4b18-4354-934d-99632b663f9e" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<BasedOn> -<objsur guid="7a194e30-4c8c-4934-83ad-b12ecc47a768" t="r" /> -</BasedOn> -<Context val="5" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Dictionary-LetterHeading</Uni> -</Name> -<Next> -<objsur guid="7a194e30-4c8c-4934-83ad-b12ecc47a768" t="r" /> -</Next> -<Rules> -<Prop align="center" bold="invert" fontsize="14000" fontsizeUnit="mpt" spaceAfter="3000" spaceBefore="12000"></Prop> -</Rules> -<Structure val="0" /> -<Type val="0" /> -<Usage> -<AUni ws="en">Letter headings in the dictionary and reversal indexes.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="CmSemanticDomain" guid="dd830047-d7f5-4010-a8ea-ae20468a0cbf" ownerguid="4f22ebdb-01db-432a-9d7a-41cd44010265"> -<Abbreviation> -<AUni ws="en">6.8.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being greedy.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Greedy</AUni> -</Name> -<Questions> -<objsur guid="b7d26886-df3e-4f1a-acf1-9dbce2fad498" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="dd83a5d0-3291-4e88-8c90-3e8517ec91ed" ownerguid="143aced3-f3a9-42f9-b618-3eb034c93fed"> -<Form> -<AUni ws="qvm-x-ach">puntu; punto</AUni> -<AUni ws="qvm-x-acl">puntu; puntu; punto</AUni> -<AUni ws="qvm-x-akh">puntu; punto</AUni> -<AUni ws="qvm-x-akl">puntu; puntu; punto</AUni> -<AUni ws="qvm-x-ame">puntu; punto</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="dd83cd7e-f069-4cbe-896e-fbf26a4c940f" ownerguid="00bbedc3-7d9d-42e4-a331-13882d44a401"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="dd844d99-cd29-4a46-8ffa-97d29706b425" ownerguid="dc177f3c-d0fd-4232-adf1-a77b339cdbb2"> -<ExampleWords> -<AUni ws="en">store, shop, shopping center, mall, kiosk, supermarket</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What kinds of buildings are used to sell things?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="dd8525b5-41f9-44e1-a37f-5af084a2e26b" ownerguid="1d8633e0-4279-4ddc-826e-16aa08a977e5"> -<ExampleWords> -<AUni ws="en">bone, bony</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to a bone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="dd87e268-0724-4645-8e21-e925831e9393" ownerguid="f7055198-136a-4ef8-9faa-9b1d0bfced5a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="dd89a2f6-ff7f-455f-b99a-95d5380702e5" ownerguid="0fcd1ad2-ac4d-4fc0-b39a-d2a4ce8df5aa"> -<Form> -<AUni ws="qvm-x-ach">tsula</AUni> -<AUni ws="qvm-x-acl">tsula</AUni> -<AUni ws="qvm-x-akh">tsula</AUni> -<AUni ws="qvm-x-akl">tsula</AUni> -<AUni ws="qvm-x-ame">tsula</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="dd89c520-a4bf-43fb-82b6-279504c7ca57"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">upya</AUni> -<AUni ws="qvm-x-acl">upya</AUni> -<AUni ws="qvm-x-akh">upya</AUni> -<AUni ws="qvm-x-akl">upya</AUni> -<AUni ws="qvm-x-ame">upya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*upya.n</AUni> -<AUni ws="qvm-x-acl">*upya.n</AUni> -<AUni ws="qvm-x-akh">*upya.n</AUni> -<AUni ws="qvm-x-akl">*upya.n</AUni> -<AUni ws="qvm-x-ame">*upya.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.251" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dae63106-7228-4475-b374-e34e97b2d942" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*upya.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="686f77b1-be8b-433c-a5a9-6046ffc2f85f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="355ee7ce-8c6e-45c8-9d11-694fd89c9d08" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *upya.n 
\entryTyp root 
\gENG drink 
\gSPN tomar 
\e *upya.n 
\c N0 
\ach upya 
\akh upya 
\acl upya 
\akl upya 
\ame upya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="dd8adfd8-095c-4127-bc2f-da32369fd51f" ownerguid="5bb495a5-ab5b-4409-8cd1-e48b56401fad"> -<ExampleWords> -<AUni ws="en">be brief, don't take long, get it over with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What do people say when they want someone to do something in a short time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="dd8bd836-9492-4dbe-9188-2a40456fd774" ownerguid="774cdff1-8cba-4f94-a519-c66abd3b5f49"> -<ExampleWords> -<AUni ws="en">Hatfields, McCoys, Bear Clan</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the proper names of the clans?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="dd8e05ab-db1d-4bda-8764-099c15889a64"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cursu; curso</AUni> -<AUni ws="qvm-x-acl">cursu; cursu; curso</AUni> -<AUni ws="qvm-x-akh">cursu; curso</AUni> -<AUni ws="qvm-x-akl">cursu; cursu; curso</AUni> -<AUni ws="qvm-x-ame">cursu; curso</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+curso</AUni> -<AUni ws="qvm-x-acl">+curso</AUni> -<AUni ws="qvm-x-akh">+curso</AUni> -<AUni ws="qvm-x-akl">+curso</AUni> -<AUni ws="qvm-x-ame">+curso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.254" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="421816fd-6f4f-4541-b143-6b4a914fd370" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+curso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cf9950e3-899b-4e55-bf26-4d51ec8ddbb6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e734f69b-55e2-41f0-bf79-37eb1bebe857" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +curso 
\entryTyp root 
\gENG 
\gSPN 
\e +curso 
\c N0 
\ach cursu / ~_# 
\ach curso / _# 
\akh cursu / ~_# 
\akh curso / _# 
\acl cursu / ~_# 
\acl cursu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl curso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cursu / ~_# 
\akl cursu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl curso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cursu / ~_# 
\ame curso / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="dd8fe16b-4d31-470b-96e3-4b043128490d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">vi:da</AUni> -<AUni ws="qvm-x-acl">vi:da</AUni> -<AUni ws="qvm-x-akh">vi:da</AUni> -<AUni ws="qvm-x-akl">vi:da</AUni> -<AUni ws="qvm-x-ame">vi:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vida</AUni> -<AUni ws="qvm-x-acl">+vida</AUni> -<AUni ws="qvm-x-akh">+vida</AUni> -<AUni ws="qvm-x-akl">+vida</AUni> -<AUni ws="qvm-x-ame">+vida</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.383" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a70c1059-3132-4c43-9bcf-55d479865318" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vida</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3fa1c127-9b36-48a1-bb26-f13d5864ce67" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="078e693c-6beb-471a-9705-7c930452a4d7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vida 
\entryTyp root 
\gENG life 
\gSPN vida 
\e +vida 
\c N0 
\ach vi:da 
\akh vi:da 
\acl vi:da 
\akl vi:da 
\ame vi:da 
\i mala vïda. 
\i PSA 11.5 Wanutsicogcunata y atacagcunataga alma y vïdami chiquin.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="dd8fe30c-4c12-4fa0-bef2-c82270ef9624" ownerguid="e033ca92-ee8c-4ab9-9368-5f6f4e942987"> -<ExampleWords> -<AUni ws="en">lose touch, lose contact</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to no longer communicating with someone?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="dd908226-644d-445b-bf2f-7aadef892165" ownerguid="d84032c0-de38-4cfb-acae-585b3f46c4e1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">demoralize</AUni> -<AUni ws="es">desmoralizar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="50add7d0-d1b0-48a7-8328-a00215f40b7c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="dd94f79c-59a2-494e-a056-52e326dafc39"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">laqla</AUni> -<AUni ws="qvm-x-acl">laqla</AUni> -<AUni ws="qvm-x-akh">laqla</AUni> -<AUni ws="qvm-x-akl">laqla</AUni> -<AUni ws="qvm-x-ame">laqla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llaqlla.n</AUni> -<AUni ws="qvm-x-acl">*llaqlla.n</AUni> -<AUni ws="qvm-x-akh">*llaqlla.n</AUni> -<AUni ws="qvm-x-akl">*llaqlla.n</AUni> -<AUni ws="qvm-x-ame">*llaqlla.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.154" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="02f37839-2db5-4f5b-a6bb-8ce2617e8b3a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llaqlla.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1ae9aade-fecc-400a-bf1a-fa66355225e5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3c56470e-48bb-4dfa-8d35-f7b53a85e53e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llaqlla.n 
\entryTyp root 
\gENG proud 
\gSPN orgulloso 
\e *llaqlla.n 
\c N0 
\ach laqla 
\akh laqla 
\acl laqla 
\akl laqla 
\ame laqla</Run> -</AStr> -</Custom> -</rt> -<rt class="StText" guid="dd975191-a41c-461a-9340-3cf71ab48eae" ownerguid="5093d7d7-4f18-4aad-8c86-88389476df15"> -<DateModified val="2022-9-23 18:26:25.183" /> -<Paragraphs> -<objsur guid="3cc175be-e3d5-4a68-911f-9a15f7242cf9" t="o" /> -</Paragraphs> -<RightToLeft val="False" /> -</rt> -<rt class="MoStemMsa" guid="dd9e0450-d3db-4b6b-867c-953c57e90fbf" ownerguid="2ed507df-d454-4a95-8c6a-3db0c525e8bc"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="dda3c38e-45a0-44b2-bd02-9243b7f0a442" ownerguid="4373236c-a468-4a20-a536-76605739db6c"> -<Form> -<AUni ws="qvm-x-ach">lamtsa</AUni> -<AUni ws="qvm-x-acl">lamtsa</AUni> -<AUni ws="qvm-x-akh">lamtsa</AUni> -<AUni ws="qvm-x-akl">lamtsa</AUni> -<AUni ws="qvm-x-ame">lamtsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="dda3e10b-fcaf-43ef-8a86-3f94ffb798cf" ownerguid="c83bbaf2-b0a8-4c89-8d04-89e33130d354"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">robber</AUni> -<AUni ws="es">ratero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="babff5e8-4dc8-4b62-9a13-5b5170fbe825" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="dda465bc-32fd-400f-bbb8-d0b38881ba3e"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">v2</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="dda93e12-90a4-400e-bd63-a5f7c26efcb5" ownerguid="50903b35-5606-4727-8474-01c06bf588da"> -<ExampleWords> -<AUni ws="en">wall, side of the house</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the side of a house?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ddab8953-1941-4143-a782-de0e4879e4c6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuchpa</AUni> -<AUni ws="qvm-x-acl">cuchpa</AUni> -<AUni ws="qvm-x-akh">kuchpa</AUni> -<AUni ws="qvm-x-akl">kuchpa</AUni> -<AUni ws="qvm-x-ame">kuchpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kutrpa.v</AUni> -<AUni ws="qvm-x-acl">*kutrpa.v</AUni> -<AUni ws="qvm-x-akh">*kutrpa.v</AUni> -<AUni ws="qvm-x-akl">*kutrpa.v</AUni> -<AUni ws="qvm-x-ame">*kutrpa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.33" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4b7bc1c2-f730-4341-93eb-8c9227dff5f1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kutrpa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8d0049e6-e855-441c-9e4b-f139198cee71" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5be4a43e-0c5f-41fb-a34b-5e06cb0b6dfb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kutrpa.v 
\entryTyp root 
\gENG tumble 
\gSPN rodar 
\e *kutrpa.v 
\c V2 
\ach cuchpa 
\akh kuchpa 
\acl cuchpa 
\akl kuchpa 
\ame kuchpa 
\i JOB 14.18 gagacunata partir cuchpatsishgayquinog,</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ddb22912-1b91-442e-bbad-75c6dc1f3825" ownerguid="03352940-c220-4a32-a9a5-fc08d1d0dc71"> -<ExampleWords> -<AUni ws="en">pollution, pollute, pollutant, smog, acid rain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to bad things that people allow to go into water or air?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ddb403c3-fd5a-4015-913a-62cf1789cd53" ownerguid="cf337287-c9fa-43d2-93c4-284f45e262c0"> -<ExampleWords> -<AUni ws="en">Alzheimer's, amnesia, stroke, depression, schizophrenia, shock, stress</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a disease of the brain or mind?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="ddb427dd-e4da-4cfc-9063-515e1f48c9b8" ownerguid="18c1f944-eaf0-4e7e-8799-463da831e6f0"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="83338005-464f-4e8e-96d2-2a799942a33d" t="r" /> -</Morph> -<Msa> -<objsur guid="715c8af0-d7ab-448b-a2fa-f8b36822dac0" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="ddb65797-a268-4bf5-b422-902be12bb472" ownerguid="be300735-7062-4abf-8154-4ab725f5798c"> -<Form> -<AUni ws="qvm-x-ach">esgui</AUni> -<AUni ws="qvm-x-acl">esgui; esgui; esgue</AUni> -<AUni ws="qvm-x-akh">esqi</AUni> -<AUni ws="qvm-x-akl">esqi; esqi; esqe</AUni> -<AUni ws="qvm-x-ame">isqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="ddb7dde0-4b6b-4c36-8461-8fcdad18f09b" ownerguid="25ac70e7-7886-4b90-81f7-79e087d01899"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">sacudir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8ebf7180-b50c-4891-a1c1-c04f0779eabb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ddbbe17a-9eb0-4840-8bb9-4f771596a34b" ownerguid="de6d1645-af53-4181-87bf-f3ae86ff3ad0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ddbe011a-d12b-417c-97e5-44d99e981bd4" ownerguid="2a62f8e4-7da3-4f37-bf44-e24033c99c00"> -<ExampleWords> -<AUni ws="en">be angry, feel angry, bristle, miffed, take offense, resent, be in a temper, pissed off, pissed, be worked up, be up in arms, in a huff, be disgusted, take something personally, take exception to, be put out, feel put out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling angry?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ddbebf46-8020-4e87-a599-00b537302fa7" ownerguid="c21f360a-4ea1-4e1a-9fab-b1d5d2d80427"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ddc0092c-e8e7-4a14-8d72-fd3eaca40ef5" ownerguid="744d1402-05f5-4491-9c15-a5af03595edb"> -<ExampleWords> -<AUni ws="en">seedy, sleazy, haunt, den of iniquity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe a place where bad people often go?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ddc021a2-0b34-4128-92c7-d832377c026b" ownerguid="afa77a2a-8b0f-4a39-91bc-040e90ffbb3a"> -<ExampleWords> -<AUni ws="en">rejoice, feel good, be in a good mood</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling happy?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="ddc96103-4bc5-44d3-9412-c57569d2a9f5" ownerguid="c4b110cf-d968-4bc6-ac0c-7e70cbad2756"> -<Abbreviation> -<AUni ws="en">4.2.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.208" /> -<DateModified val="2022-9-23 16:55:8.208" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a festival or show--a large social event during which some people entertain other people.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>51 Festivals</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Festival, show</AUni> -</Name> -<Questions> -<objsur guid="5b79c964-4200-434b-bbd8-04be401aadfd" t="o" /> -<objsur guid="eefa979c-507b-4b84-a49f-89f6dae2be41" t="o" /> -<objsur guid="63c5c110-c2f8-444d-a573-90b8b3bc6109" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="ddcbedc0-96ed-4052-8d52-fd713580733a" ownerguid="90b36b2c-0d77-4a8d-81be-bb538ed9a48c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">uncultivated</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bead3837-71db-48c9-8783-12e73d1bf969" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="ddcfa1b9-fb63-46d7-9874-9fdf89c6077f"> -<Analyses> -<objsur guid="7b39e22d-bdac-4a5e-bee0-1bf549ccdd75" t="o" /> -</Analyses> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">yarparkalämanki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="ddd2e67a-01e2-4b00-9638-f0738fdcbbc7" ownerguid="d2ca3194-e393-480e-ae1d-dd67bed55227"> -<ExampleWords> -<AUni ws="en">spread, run (of vines), entwine, cling, trail</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe how plants grow?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ddd3e705-5bba-4f44-becf-19569e809a96" ownerguid="f99ca948-e6f8-40bd-a120-c10cfe309159"> -<Form> -<AUni ws="qvm-x-ach">gonga</AUni> -<AUni ws="qvm-x-acl">gonga</AUni> -<AUni ws="qvm-x-akh">qonqa</AUni> -<AUni ws="qvm-x-akl">qonqa</AUni> -<AUni ws="qvm-x-ame">qunqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ddd5cc0d-a0fe-491b-b231-e56786fe011e" ownerguid="0066f0f7-02dd-4f8e-afa5-59b8cb5a434a"> -<ExampleWords> -<AUni ws="en">treasonous (action), subversive (activity)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something someone does when betraying someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ddd97b52-f267-4553-9c53-3e2554f9d733" ownerguid="dcc3e45e-f093-4fda-955b-fd3579ddc9a7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ddda2ff1-39f3-4741-9190-acfc93033351" ownerguid="6bd023f6-730e-44c2-ae8f-78df967e2e18"> -<ExampleWords> -<AUni ws="en">tug of war</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to two or more people pulling on both ends of something?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="dddd1ad2-b977-4cbc-add5-0d8543cadc30" ownerguid="0a696070-42b8-4b5f-b7cc-31b69f2f2d25"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EZK 23.34 Gontsuntintami chipyag upunquipag. Nircurmi tsay cöpata paquirir chuchuyquitapis pishtaypa pishtar ushanquipag.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="dddd980b-c564-4735-9ce6-76a7abba3d02" ownerguid="62979c5a-891c-4a40-ba05-023b70013c5e"> -<Form> -<AUni ws="qvm-x-ach">tälla</AUni> -<AUni ws="qvm-x-acl">tälla</AUni> -<AUni ws="qvm-x-akh">tälla</AUni> -<AUni ws="qvm-x-akl">tälla</AUni> -<AUni ws="qvm-x-ame">tälla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="dde07022-9c79-47bb-be00-673b3e769eb6" ownerguid="ea0c6f73-ae4d-44c8-93c6-91e7f5a6a50e"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="dde0e318-37ce-40f4-9620-20c10bbd37aa" ownerguid="c79d49f1-74ec-4dba-a5aa-5e861af63d05"> -<ExampleWords> -<AUni ws="en">scapegoat, fall guy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to someone who is unfairly blamed for something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="dde1507d-bfff-4add-8efe-1b525e93e462" ownerguid="203d46e3-0d71-4257-aeca-fbab7af0e539"> -<Form> -<AUni ws="qvm-x-ach">cäsu</AUni> -<AUni ws="qvm-x-acl">cäsu; cäsu; cäso</AUni> -<AUni ws="qvm-x-akh">cäsu</AUni> -<AUni ws="qvm-x-akl">cäsu; cäsu; cäso</AUni> -<AUni ws="qvm-x-ame">cäsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="dde88c6f-c4da-4e44-ad41-bcee753f95c0" ownerguid="2855cda6-a031-46aa-bf3f-718d94374d46"> -<ExampleWords> -<AUni ws="en">protest (v), object to, remonstrate, speak out against</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to protesting?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="dde9a536-33a0-4880-b13a-066c3e99797c" ownerguid="514974a2-c2fd-4b25-a24d-2ff52fa3d798"> -<ExampleWords> -<AUni ws="en">blow out (a candle)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words are used of stopping a fire by blowing on it?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="dde9e168-217c-46ed-8b5d-ddf4139a3872"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">agu</AUni> -<AUni ws="qvm-x-acl">agu; ago</AUni> -<AUni ws="qvm-x-akh">aqu</AUni> -<AUni ws="qvm-x-akl">aqu; aqo</AUni> -<AUni ws="qvm-x-ame">aqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aqu.v</AUni> -<AUni ws="qvm-x-acl">*aqu.v</AUni> -<AUni ws="qvm-x-akh">*aqu.v</AUni> -<AUni ws="qvm-x-akl">*aqu.v</AUni> -<AUni ws="qvm-x-ame">*aqu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.931" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="96ec836c-4602-498b-8b56-31f7accbb793" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aqu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="52db2b7d-0411-477a-b0f5-f4f320dbf5f6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fd730834-d18a-41ea-aab9-ba42939421d4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aqu.v 
\entryTyp root 
\gENG sandy 
\gSPN arena 
\e *aqu.v 
\c V1 
\ach agu 
\akh aqu 
\acl agu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ago +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl aqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl aqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame aqu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ddea0833-7497-489f-9768-111b39f8a72b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shagu</AUni> -<AUni ws="qvm-x-acl">shagu; shago</AUni> -<AUni ws="qvm-x-akh">shaqu</AUni> -<AUni ws="qvm-x-akl">shaqu; shaqo</AUni> -<AUni ws="qvm-x-ame">shaqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shaqu</AUni> -<AUni ws="qvm-x-acl">*shaqu</AUni> -<AUni ws="qvm-x-akh">*shaqu</AUni> -<AUni ws="qvm-x-akl">*shaqu</AUni> -<AUni ws="qvm-x-ame">*shaqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.569" /> -<DateModified val="2022-10-10 21:18:47.207" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="541594c4-0601-410d-9a12-bdedbde119e2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shaqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0e7cce3e-992a-4152-b1e1-c94136f40bcd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2671e4a5-5017-49a8-a018-7a8b14beb3e0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shaqu 
\entryTyp root 
\gENG 
\gSPN 
\e *shaqu 
\c V1 
\ach shagu 
\akh shaqu 
\acl shagu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shago +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shaqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shaqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shaqu 
\i JOB 28.9 Niycälarmi puntacunatapis shaguylana ushan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="ddef260e-b183-47f7-837e-165ffbd1af2c" ownerguid="d9f336cf-0682-4702-ab94-5ade755ddc64"> -<Abbreviation> -<AUni ws="en">7.3.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.528" /> -<DateModified val="2022-9-23 16:55:8.528" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to putting something in front of you or in front of something else.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Put in front</AUni> -</Name> -<Questions> -<objsur guid="dc5d4aad-09ff-4e9f-ae66-7cdeee4c72b4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="ddef7299-818b-42bf-8cd5-443fbb90eae4" ownerguid="70ec2363-c91b-4fd0-ab07-367a1439cbdf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="3535c5d6-9a8b-4b47-9392-228dd5ffde12" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="ad0157b8-1d6b-4725-aebe-d6c4a8f3f5ac" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="ddf5674f-4460-44fe-bdb0-80f33e9c2229" ownerguid="394abd8a-b1b8-4743-8414-c2eb5f1b8bb1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="aa81ff59-3351-44cf-a9b4-5c778ff37067" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">goat</AUni> -<AUni ws="es">cabra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e9ee99ea-6336-433e-8fc9-12d6adbf9128" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="ddf5b3ec-6ef7-4a2a-b160-365cb7d372df" ownerguid="9b8c6188-540c-4015-8c83-7d19c9f61da3"> -<Form> -<AUni ws="qvm-x-ach">warmi</AUni> -<AUni ws="qvm-x-acl">warmi; warmi; warme</AUni> -<AUni ws="qvm-x-akh">warmi</AUni> -<AUni ws="qvm-x-akl">warmi; warmi; warme</AUni> -<AUni ws="qvm-x-ame">warmi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="ddf8ac43-5725-4fec-a456-92f8d1873862" ownerguid="d7fe403b-7c29-44e4-a79b-da8fef4a387e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="ddfc88e2-78b2-4b4e-8975-481d6ce4b7db" ownerguid="91ef6c77-bb2f-479a-890e-5cd6aa8694df"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -<Sense> -<objsur guid="07ddeffe-9ec0-437a-a413-6bb07751c896" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="ddfcbbd8-07f6-4fb6-a08d-b61ac2827cfc" ownerguid="addd8440-9588-4bf2-8989-582cf651bcae"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="ea67ee9d-29a4-4623-8e48-95005c9602a8" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">breathe</AUni> -<AUni ws="es">respirar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6888d1a4-5bb6-442c-be1e-fb1891754248" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="ddfd5465-72db-4690-a44d-ce338517274b"> -<Analyses> -<objsur guid="4d80670f-7cea-4381-bd29-2a1d7fdb295a" t="o" /> -<objsur guid="b64933e3-fd57-4090-848e-2af0cc6d8e88" t="o" /> -</Analyses> -<Checksum val="1866004558" /> -<Form> -<AUni ws="qvm-x-akh">qarqakutsin</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="ddffd771-6aaa-4e86-9583-55844aae4378" ownerguid="48ac206f-2706-4500-bb63-2e499b790259"> -<ExampleWords> -<AUni ws="en">wise, sagacious, prudent, sensible, good sense, sound judgment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe someone who makes good decisions?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="de007181-35c5-4b77-8ebc-c18754eff5f0" ownerguid="b9342936-0ace-412f-996d-a521b341ce02"> -<Form> -<AUni ws="qvm-x-ach">panu</AUni> -<AUni ws="qvm-x-acl">panu; pano</AUni> -<AUni ws="qvm-x-akh">panu</AUni> -<AUni ws="qvm-x-akl">panu; pano</AUni> -<AUni ws="qvm-x-ame">panu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="de02b899-a714-4036-8176-ef5d14a23843" ownerguid="e1de9a36-08e7-43a7-94de-7ac6139417e4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8fde3700-f71e-41b4-bf59-e5f182935722" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="de04834f-f3b3-44af-8f5a-3cba0e1a3696" ownerguid="80b2aed8-1a4e-447b-bfc8-c68f2881fd42"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">fiyu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">fiyu; fiyu; fiyo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">fiyu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">fiyu; fiyu; fiyo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">fiyu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="8af51d38-7b5d-4a73-89f8-f39e115e8e55" t="r" /> -</Morph> -<Msa> -<objsur guid="4780accf-3d86-484c-a8d2-c398d837871c" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="de056be0-6e8f-4e31-ad6b-2fcdff0ad874" ownerguid="3baa9487-8ce5-4a20-bf39-eca59eea5dc9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="69f61779-9849-476f-830e-51fc0c69cba9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="de0affd8-1314-4b9f-b8ff-d1b5f8049a70" ownerguid="d613ef1c-15ea-47ca-b23d-29b3c1676195"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="de0fc899-d3f6-4f4d-9b70-56210ed0d0fb" ownerguid="df864d59-5705-445e-9e26-d328c5c1d6b1"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="de0feae2-d308-4a69-94f0-51a07814366a" ownerguid="7831223b-e5ed-4186-a321-94e9ae72a27d"> -<ExampleWords> -<AUni ws="en">hurl, fling, heave, fire</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to throwing something with force?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="de160b31-15e9-43ce-8a2d-0d7a458c8ade"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">caballitu; caballito</AUni> -<AUni ws="qvm-x-acl">caballitu; caballitu; caballito</AUni> -<AUni ws="qvm-x-akh">caballitu; caballito</AUni> -<AUni ws="qvm-x-akl">caballitu; caballitu; caballito</AUni> -<AUni ws="qvm-x-ame">caballitu; caballito</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+caballito</AUni> -<AUni ws="qvm-x-acl">+caballito</AUni> -<AUni ws="qvm-x-akh">+caballito</AUni> -<AUni ws="qvm-x-akl">+caballito</AUni> -<AUni ws="qvm-x-ame">+caballito</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.1" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b9c5a909-4ae2-4c03-b2d3-15dabfd34519" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+caballito</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bb148a78-876d-40dc-88ab-a1dc064dfd2c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9855ce7f-2803-411a-8966-26fb4b0d339d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +caballito 
\entryTyp root 
\gENG ? 
\gSPN ? 
\e +caballito 
\c N0 
\ach caballitu / ~_# 
\ach caballito / _# 
\akh caballitu / ~_# 
\akh caballito / _# 
\acl caballitu / ~_# 
\acl caballitu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl caballito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl caballitu / ~_# 
\akl caballitu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl caballito +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame caballitu / ~_# 
\ame caballito / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="de1b176a-89c6-453a-beef-640fe529340a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">hierbabue:na</AUni> -<AUni ws="qvm-x-acl">hierbabue:na</AUni> -<AUni ws="qvm-x-akh">hierbabue:na</AUni> -<AUni ws="qvm-x-akl">hierbabue:na</AUni> -<AUni ws="qvm-x-ame">hierbabue:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hierbabuena</AUni> -<AUni ws="qvm-x-acl">+hierbabuena</AUni> -<AUni ws="qvm-x-akh">+hierbabuena</AUni> -<AUni ws="qvm-x-akl">+hierbabuena</AUni> -<AUni ws="qvm-x-ame">+hierbabuena</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.710" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c96d8f4a-b4ce-4a37-99c3-165b553673de" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hierbabuena</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6fb7e6ce-53d8-498e-9ba3-b690d2e60c7d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5f9a77e8-36a4-4400-869b-5cbc91577a91" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hierbabuena 
\entryTyp root 
\gENG 
\gSPN hierba.buena 
\e +hierbabuena 
\c N0 
\ach hierbabue:na 
\akh hierbabue:na 
\acl hierbabue:na 
\akl hierbabue:na 
\ame hierbabue:na</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="de1b2cbc-ed69-41b1-a037-10ae0c2c9aad" ownerguid="0bc2029e-1a6f-4f6d-b034-82524355271e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="de1ffd73-af3b-47a2-8e98-ac1659a84cac" ownerguid="4260e110-7b04-4d40-9391-486a57aa3031"> -<Abbreviation> -<AUni ws="en">4.3.1.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.225" /> -<DateModified val="2022-9-23 16:55:8.225" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being sensible--to think about what you do.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88L Sensible Behavior, Senseless Behavior</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Sensible</AUni> -</Name> -<Questions> -<objsur guid="eb6cca14-97e2-4d18-8f01-ee2916286fe1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="de208aec-880e-4d50-b6e1-787ca33486af"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">wayuykashqanta</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="de219060-4166-4105-a12a-5c9f6d5a36b9" ownerguid="4c862416-f7c4-4a3c-82ac-fe81e1efb879"> -<ExampleWords> -<AUni ws="en">organ, internal organ, gut, gland, system, systemic, vascular system, vas, cortex, sac</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to the internal organs?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="de21a7f3-f5b2-4fc3-a759-bbcb78b4fb99" ownerguid="0a350627-948b-483b-800b-bc18ff6a28fe"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="de22a3e5-c6c1-4a60-851b-43b544fb2420" ownerguid="8f7c9d7d-9b2a-40f3-9314-8f16f0aa31ef"> -<ExampleWords> -<AUni ws="en">fold, fold up, crease, turn down, double over, crimp, dog-ear</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to folding something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="de2459a8-4218-4d20-847c-841dea8a456a" ownerguid="93de2257-8303-490d-b2fe-6d1d838b08c6"> -<ExampleWords> -<AUni ws="en">manicure, clean, cut, clip, trim, shape, sharpen</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to describe the process of caring for the nails?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="de252762-824d-48d2-a213-e089864ddd79" ownerguid="f1d5a303-a423-48b0-ad63-276c3f9e16b0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="de2888bf-7980-4a80-a111-f62fbd2b3260"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chicu</AUni> -<AUni ws="qvm-x-acl">chicu; chico</AUni> -<AUni ws="qvm-x-akh">chiku</AUni> -<AUni ws="qvm-x-akl">chiku; chiko</AUni> -<AUni ws="qvm-x-ame">chiku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*triku.v</AUni> -<AUni ws="qvm-x-acl">*triku.v</AUni> -<AUni ws="qvm-x-akh">*triku.v</AUni> -<AUni ws="qvm-x-akl">*triku.v</AUni> -<AUni ws="qvm-x-ame">*triku.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.109" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9bee7f92-3186-4693-8c7e-e75f0894ffa3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*triku.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a6ece11b-4058-4d50-bf9d-aba44343ef1c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="552853d3-9ae3-497f-b3f0-6fa813b00659" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *triku.v 
\entryTyp root 
\gENG to.corral 
\gSPN separar.becerro 
\e *triku.v 
\c V1 
\ach chicu 
\akh chiku 
\acl chicu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl chico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chiku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chiko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chiku</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="de289f6a-91fe-4661-99b7-3a71c03927f1" ownerguid="5ff16f03-4466-4c06-ae98-9c5ba4fa6aca"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rcayca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rcayca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rkayka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rkayka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rkayka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="8150a0ee-00d2-4be1-a8be-c798339dcc68" t="r" /> -</Morph> -<Msa> -<objsur guid="fa42621c-0397-4bd6-a862-5548780fa809" t="r" /> -</Msa> -<Sense> -<objsur guid="0a876e85-8442-4b81-a3de-5e0efb0f297f" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="de2b3307-d9e6-480f-87f4-fcad615bc3de"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">calapa</AUni> -<AUni ws="qvm-x-acl">calapa</AUni> -<AUni ws="qvm-x-akh">kalapa</AUni> -<AUni ws="qvm-x-akl">kalapa</AUni> -<AUni ws="qvm-x-ame">kalapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kallapa</AUni> -<AUni ws="qvm-x-acl">*kallapa</AUni> -<AUni ws="qvm-x-akh">*kallapa</AUni> -<AUni ws="qvm-x-akl">*kallapa</AUni> -<AUni ws="qvm-x-ame">*kallapa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.910" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8e08e3c6-581a-46f0-82d5-60028a312194" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kallapa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="50bfd2d4-94fd-41c6-a647-ce9dcbb36825" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="84e070ab-1fb1-42d7-a65d-e9cd91381e9b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kallapa 
\entryTyp root 
\gENG crook 
\gSPN gancho 
\e *kallapa 
\c N0 
\ach calapa 
\akh kalapa 
\acl calapa 
\akl kalapa 
\ame kalapa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="de2b5010-6fa5-41f6-8916-c6808283acec"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">algu</AUni> -<AUni ws="qvm-x-acl">algu; algu; algo</AUni> -<AUni ws="qvm-x-akh">alqu</AUni> -<AUni ws="qvm-x-akl">alqu; alqu; alqo</AUni> -<AUni ws="qvm-x-ame">alqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*allqu</AUni> -<AUni ws="qvm-x-acl">*allqu</AUni> -<AUni ws="qvm-x-akh">*allqu</AUni> -<AUni ws="qvm-x-akl">*allqu</AUni> -<AUni ws="qvm-x-ame">*allqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.747" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="48ca514c-760f-4462-b576-bf521f38ce6f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*allqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a5a96727-b9ab-4fec-8afa-12701c6c1be4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2ad93bd3-fb74-4909-84c5-898be7a4a6d0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *allqu 
\entryTyp root 
\gENG dog 
\gSPN perro 
\e *allqu 
\c N0 
\ach algu 
\akh alqu 
\acl algu / _# 
\acl algu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl algo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl alqu / _# 
\akl alqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl alqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame alqu 
\mcc *allqu / ~_ CAUSBE3 PASS</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="de2cc438-a144-47ff-8d73-ebed2a62839e" ownerguid="e91f8610-c6b2-4c1c-a650-a9e008cbed83"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="de2dab57-b870-491d-b6d2-bd5169aa88c7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ley</AUni> -<AUni ws="qvm-x-acl">ley</AUni> -<AUni ws="qvm-x-akh">ley</AUni> -<AUni ws="qvm-x-akl">ley</AUni> -<AUni ws="qvm-x-ame">ley</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ley</AUni> -<AUni ws="qvm-x-acl">+ley</AUni> -<AUni ws="qvm-x-akh">+ley</AUni> -<AUni ws="qvm-x-akl">+ley</AUni> -<AUni ws="qvm-x-ame">+ley</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.84" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9f717bd7-41d6-40b2-b7c2-71632aba1169" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ley</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="820131b8-5f87-482f-b4c7-c2e0efbed595" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4ddea36b-aa61-47aa-b47f-31dc4d65a357" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ley 
\entryTyp root 
\gENG law 
\gSPN ley 
\e +ley 
\c N0 
\mp +FinalC 
\ach ley 
\akh ley 
\acl ley 
\akl ley 
\ame ley</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="de2eca96-7cbe-453d-93fe-b47fc18ab0a9" ownerguid="50b90252-4409-42aa-984e-199d773474d2"> -<Form> -<AUni ws="qvm-x-ach">plömu</AUni> -<AUni ws="qvm-x-acl">plömu; plömu; plömo</AUni> -<AUni ws="qvm-x-akh">plömu</AUni> -<AUni ws="qvm-x-akl">plömu; plömu; plömo</AUni> -<AUni ws="qvm-x-ame">plömu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="de2fdb34-51cf-4661-9914-23bd7bed3e55" ownerguid="986e2ed8-9085-4f9d-ab90-8e5ceb24a48c"> -<Form> -<AUni ws="qvm-x-ach">elagpita</AUni> -<AUni ws="qvm-x-acl">elagpita</AUni> -<AUni ws="qvm-x-akh">elaqpita</AUni> -<AUni ws="qvm-x-akl">elaqpita</AUni> -<AUni ws="qvm-x-ame">ilaqpita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="de332ef3-655b-40b5-829c-a551d40dec89"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shga</AUni> -<AUni ws="qvm-x-acl">shga</AUni> -<AUni ws="qvm-x-akh">shqa</AUni> -<AUni ws="qvm-x-akl">shqa</AUni> -<AUni ws="qvm-x-ame">shqa</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.558" /> -<DateModified val="2022-10-16 13:49:42.981" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="3" /> -<LexemeForm> -<objsur guid="c0a8d088-78b3-40e6-a4ea-e43393fea3a3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">PRT1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3503ea2c-6d6a-40bd-ab49-d2f29a6d368a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3c12ad51-8643-4ba6-bac4-36f356f2393f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx PRT1 
\entryTyp suffix 
\gENG PRT1 
\gSPN PRT1 
\e PRT1 
\c V1/N0 V2/N0 N0/N0 
\o 120 
\mp +foreshortens 
\ach shga 
\akh shqa 
\acl shga 
\akl shqa 
\ame shqa 
\mcc PRT1 / *ni ~_ SIM1 
\mcc PRT1 / ~_ (JUST.V) [poss] 
\mcc PRT1 / ~_ HUMAN 
\mcc PRT1 / ~_ [with]</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="de3354f3-5a50-4057-a51d-350c63719f2f" ownerguid="eaacfc93-b8dc-4f0f-ab2f-524b6590e911"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="de3356ca-0da3-4969-9eb1-196eda0ce1f0" ownerguid="99b5b80a-a2d6-4820-adfc-1da72528c272"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">This is <the same> as that.; The twins are <the same> in every way.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">same, identical, indistinguishable, can't tell the difference, can't tell them apart, be no different from, match, be a carbon copy, word for word, be synonymous with, be no better than, be nothing more than</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe two things that are the same?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="de33820d-6d04-4271-99c6-746c4843f2dd" ownerguid="565be8d0-02ff-43a0-8d85-383c047534cb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">brillar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a4e065f6-28ba-4f1d-9c78-bd1c33bf793d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="de342a1f-1002-4c22-b361-2fe0e5e91614"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gueusa</AUni> -<AUni ws="qvm-x-acl">gueusa</AUni> -<AUni ws="qvm-x-akh">qewsa</AUni> -<AUni ws="qvm-x-akl">qewsa</AUni> -<AUni ws="qvm-x-ame">qiwsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qiwsa</AUni> -<AUni ws="qvm-x-acl">*qiwsa</AUni> -<AUni ws="qvm-x-akh">*qiwsa</AUni> -<AUni ws="qvm-x-akl">*qiwsa</AUni> -<AUni ws="qvm-x-ame">*qiwsa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.226" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="98fe8145-f963-4983-a1c0-ac06e8d6caa4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qiwsa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="38287ee5-dee2-4483-9862-42efb30f678f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="eb7d0b58-4347-4719-a078-2ae4bbcb6b74" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qiwsa 
\entryTyp root 
\gENG 
\gSPN 
\e *qiwsa 
\c V1 
\ach gueusa 
\akh qewsa 
\acl gueusa 
\akl qewsa 
\ame qiwsa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="de34592e-e150-4aae-ab04-5019aa2afb92" ownerguid="514974a2-c2fd-4b25-a24d-2ff52fa3d798"> -<ExampleWords> -<AUni ws="en">douse (a fire), quench (a fire)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used of stopping a fire with water?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="de34f4a0-934f-499d-a078-120ee44a7d43" ownerguid="bba9ce21-4953-4ee9-8a3b-99d7cd10fcd4"> -<Form> -<AUni ws="qvm-x-ach">sima</AUni> -<AUni ws="qvm-x-acl">sima</AUni> -<AUni ws="qvm-x-akh">sima</AUni> -<AUni ws="qvm-x-akl">sima</AUni> -<AUni ws="qvm-x-ame">sima</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="de366db9-864e-4d32-a7c5-f0acf9e6bf0b"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">qalaykuykaptinmi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="PunctuationForm" guid="de369af6-fdd1-47a2-b9dd-e082c16b091c"> -<Form> -<Str> -<Run ws="en">object</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="de37157c-8e4b-4a65-a257-576fc9c51138" ownerguid="7f7fc197-5064-43c0-af51-2919fb7355c9"> -<ExampleWords> -<AUni ws="en">irrelevant, be beside the point, have nothing to do with, be nothing to do with, be neither here nor there, doesn't come into it, be a red herring</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words indicate that something someone says has no connection with the topic being discussed?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="de37f16a-09ef-4bdf-a299-e07ee8140e99"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">churamaptinqa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="de3ea264-13f1-43e7-ae6a-d31b5516fa61" ownerguid="9533d698-55a5-4edd-9f05-e850c77a64f6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">päcu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">päcu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">päku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">päku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">päku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d9706437-e094-4fe8-b14f-01ea8dfdec23" t="r" /> -</Morph> -<Msa> -<objsur guid="f32a5a50-f426-45b8-ae08-eba8e0a53b74" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="de3fa208-9b95-4ac3-b094-7c3a39aa1a35" ownerguid="bbc3f307-133c-47b5-97ac-d59e966ff060"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="de3ff35c-8296-45cd-b0be-d8f6141ecffa" ownerguid="06ad8615-b0d1-4f3e-897b-e73e058104e1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">grass</AUni> -<AUni ws="es">cortadera</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="22b1b7aa-2451-4ca8-bedd-bea3a6ba93d4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="de404a9b-347a-40c6-a997-19844af81c43" ownerguid="e6ea429d-8e0a-49b1-b7f6-d35e342c53c2"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="de430e53-7ea3-4031-adb4-50ccc4320a1d" ownerguid="a42aa891-e4fd-489e-b573-b9d20dfc5c2a"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">coming <and> going; me <and> you; men <and> women; <both> this <and> that; <either> good <or> bad; <neither> good <nor> bad; quickly <but> not carelessly</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">and, both...and, or, either...or, neither...nor, but</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What conjunctions join two words within a phrase?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="de45e86b-9f26-4947-8240-82d9fbd22a39" ownerguid="22a0ca9f-7947-4ac8-a411-9e74b9c2642d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="de493ec6-1957-40c4-b7ec-4c9eed48b445" ownerguid="a2c827eb-49d8-43e8-9d8d-9a2e5f4df97b"> -<Form> -<AUni ws="qvm-x-ach">ausilia</AUni> -<AUni ws="qvm-x-acl">ausilia</AUni> -<AUni ws="qvm-x-akh">ausilia</AUni> -<AUni ws="qvm-x-akl">ausilia</AUni> -<AUni ws="qvm-x-ame">ausilia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="de49aef7-c3de-4490-b89a-a279b594b155" ownerguid="7121e47b-b621-4b68-b454-e7ee95c17e44"> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="b944437c-7d5b-4ba1-aa3e-2aa6761b30c0" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="3226fbd3-0c57-4f7b-a5d9-c02b1fada477" t="o" /> -</MorphBundles> -</rt> -<rt class="MoInflAffixTemplate" guid="de4b3b91-adf2-45b7-ae7d-203954a69062" ownerguid="54712931-442f-42d5-8634-f12bd2e310ce"> -<Disabled val="False" /> -<Final val="False" /> -<Name> -<AUni ws="en">vt which is then derived further</AUni> -</Name> -<SuffixSlots> -<objsur guid="0eb1d65f-6889-40e2-a5ee-818feedf259c" t="r" /> -<objsur guid="cc7bce64-81a2-4c23-9cb0-ba8f7d274837" t="r" /> -<objsur guid="4241ff27-a983-4a4f-b554-ba2444cca308" t="r" /> -<objsur guid="ca45d090-0c3b-4e36-9a40-58963588cdaf" t="r" /> -<objsur guid="b31b892c-cb26-4efd-b65c-29374c5e75b6" t="r" /> -<objsur guid="5d7569d5-d194-43a3-8975-abfbf7ee2b2f" t="r" /> -<objsur guid="34426d22-8e6e-44f9-9308-73fe011a7617" t="r" /> -<objsur guid="77569715-032a-48c9-97d9-e9802fb13f2e" t="r" /> -</SuffixSlots> -</rt> -<rt class="LexSense" guid="de4bc75e-bd64-45cc-bc02-b97657521c8d" ownerguid="fdad4d50-d88d-490e-bb93-9d6283b035ff"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">middle</AUni> -<AUni ws="es">medio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6ef28bb7-96e0-462d-8ddc-662e57da2b38" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="de4f843e-85c8-4e4a-b9ea-1ffe28b9b135" ownerguid="311b5dab-0433-4cba-9928-2d0b656c696d"> -<Form> -<AUni ws="qvm-x-ach">corona</AUni> -<AUni ws="qvm-x-acl">corona</AUni> -<AUni ws="qvm-x-akh">corona</AUni> -<AUni ws="qvm-x-akl">corona</AUni> -<AUni ws="qvm-x-ame">corona</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="de544ebd-9f94-4831-8887-944c3bbbc254" ownerguid="b21ace5f-9307-4bdc-b103-9fdf14a5655e"> -<Abbreviation> -<AUni ws="en">8.4.1.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.638" /> -<DateModified val="2022-9-23 16:55:8.638" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the days of the week.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Days of the week</AUni> -</Name> -<Questions> -<objsur guid="2405d0c3-2b96-4792-bcf3-8815992adb68" t="o" /> -<objsur guid="b8916b28-a75a-4ded-a4c3-ca82092a614f" t="o" /> -<objsur guid="8be23dea-0eac-488c-8598-2dae1e4e8500" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="de56cb1b-96cd-4fab-ab98-f27f949bb248" ownerguid="c389898d-eff7-4f4d-85e1-2c53c32d17c4"> -<Form> -<AUni ws="qvm-x-ach">chisti; chiste</AUni> -<AUni ws="qvm-x-acl">chisti; chisti; chiste</AUni> -<AUni ws="qvm-x-akh">chisti; chiste</AUni> -<AUni ws="qvm-x-akl">chisti; chisti; chiste</AUni> -<AUni ws="qvm-x-ame">chisti; chiste</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="de580a2b-4703-406b-b0b4-1108ff0021d7" ownerguid="fbcfd1a3-b1f3-4e35-a413-43038de002c5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">trunk</AUni> -<AUni ws="es">tronco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2a3cc80b-f4bd-43f6-a20c-eaed80723653" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="de59438f-7254-44c5-83d4-89953799fc65" ownerguid="a01a1900-fc1f-462e-ba3d-ae822711b034"> -<ExampleWords> -<AUni ws="en">insane asylum</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to a hospital for mentally ill people?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="de5ab4e2-acca-421b-9b26-043b257e4dad" ownerguid="a3e905b8-107b-4311-bb50-0abe151131b3"> -<ExampleWords> -<AUni ws="en">bend the rules, make an exception, concession, excuse, exempt, waive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to giving someone permission to do something that is not usually allowed?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="de5c3d10-074c-49d9-8785-6267d1e823c5" ownerguid="e81031af-2862-4744-b73d-21ace4e11832"> -<Form> -<AUni ws="qvm-x-ach">noga</AUni> -<AUni ws="qvm-x-acl">noga</AUni> -<AUni ws="qvm-x-akh">noqa</AUni> -<AUni ws="qvm-x-akl">noqa</AUni> -<AUni ws="qvm-x-ame">nuqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="de5c6901-fab3-40ac-9364-bbd2972d1be6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ca:lli; ca:lli</AUni> -<AUni ws="qvm-x-acl">ca:lli; ca:lli; ca:lle</AUni> -<AUni ws="qvm-x-akh">ca:lli; ca:lli</AUni> -<AUni ws="qvm-x-akl">ca:lli; ca:lli; ca:lle</AUni> -<AUni ws="qvm-x-ame">ca:lli; ca:lli</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+calle</AUni> -<AUni ws="qvm-x-acl">+calle</AUni> -<AUni ws="qvm-x-akh">+calle</AUni> -<AUni ws="qvm-x-akl">+calle</AUni> -<AUni ws="qvm-x-ame">+calle</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.290" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="88de992a-2ef3-4f6b-b2f4-2eadf796a8c6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+calle</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="77e3185f-0853-4545-a8bb-c8b1d3dc3519" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ce10172c-6dcd-4c3e-8b44-6ab7b87c0474" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +calle 
\entryTyp root 
\gENG street 
\gSPN calle 
\e +calle 
\c N0 
\mp +FinalI 
\ach ca:lli / _# 
\ach ca:lli / ~_# 
\akh ca:lli / _# 
\akh ca:lli / ~_# 
\acl ca:lli / _# 
\acl ca:lli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ca:lle +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ca:lli / _# 
\akl ca:lli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ca:lle +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ca:lli / _# 
\ame ca:lli / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="de5cd80e-66b4-46e5-b233-ff54fc051820"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">coliseu; coliseo</AUni> -<AUni ws="qvm-x-acl">coliseu; coliseu; coliseo</AUni> -<AUni ws="qvm-x-akh">coliseu; coliseo</AUni> -<AUni ws="qvm-x-akl">coliseu; coliseu; coliseo</AUni> -<AUni ws="qvm-x-ame">coliseu; coliseo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+coliseo</AUni> -<AUni ws="qvm-x-acl">+coliseo</AUni> -<AUni ws="qvm-x-akh">+coliseo</AUni> -<AUni ws="qvm-x-akl">+coliseo</AUni> -<AUni ws="qvm-x-ame">+coliseo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.142" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c6868e83-3cfd-4159-bf7f-9c9ff2f26360" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+coliseo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8c57a9e5-bca4-4deb-9fa0-eeebb10798cb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="793b8db3-edcc-40c6-91a8-40b18baa8695" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +coliseo 
\entryTyp root 
\gENG coliseum 
\gSPN coliseo 
\e +coliseo 
\c N0 
\ach coliseu / ~_# 
\ach coliseo / _# 
\akh coliseu / ~_# 
\akh coliseo / _# 
\acl coliseu / ~_# 
\acl coliseu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl coliseo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl coliseu / ~_# 
\akl coliseu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl coliseo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame coliseu / ~_# 
\ame coliseo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="de63ea57-117f-480e-b02f-94c8f81e7b2a" ownerguid="4c823e93-3966-461f-bd64-3a9303966338"> -<ExampleWords> -<AUni ws="en">solve, resolve, figure out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to solving a problem?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="de68df2e-bebb-4911-b90b-f763b4e7b814" ownerguid="7dbd7f43-4291-47f8-a392-6fdf3c98d522"> -<ExampleWords> -<AUni ws="en">swell, enlarge, erect, erection, ejaculate, ejaculation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What do the male organs do?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="de6b15d3-6409-4998-b03d-903133f4ad70" ownerguid="5446b5cf-f05a-4bb2-89eb-ce63e27040f3"> -<Abbreviation> -<AUni ws="en">4.2.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.212" /> -<DateModified val="2022-9-23 16:55:8.212" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to singing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33G Sing, Lament</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Sing</AUni> -</Name> -<Questions> -<objsur guid="3f2e1f53-f349-4cd2-8b28-5cebe4316ffe" t="o" /> -<objsur guid="29a00ab3-32a7-4267-a095-43932216bb71" t="o" /> -<objsur guid="c12d6b81-1ca6-4b4f-b5bf-671d81194e9b" t="o" /> -<objsur guid="8c7863fd-3046-48a3-9102-3e1925dbe611" t="o" /> -<objsur guid="718d4298-3aa6-4697-b6f6-e2a554ec7377" t="o" /> -<objsur guid="23abe54b-ee2e-40b1-beec-b504c2bcdf29" t="o" /> -<objsur guid="c93c7617-6e9c-4bfb-9f05-e6d196a6a818" t="o" /> -<objsur guid="e6f4817a-0ef5-4fff-8a5a-51766207f0df" t="o" /> -<objsur guid="ba7dd796-dded-409a-8a21-190f169dff97" t="o" /> -<objsur guid="9c2b73a0-07c1-4b43-9fac-4d2227604738" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="de6c022f-6ed0-483c-bfda-25b96598daad"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nawi</AUni> -<AUni ws="qvm-x-acl">nawi; nawi; nawe</AUni> -<AUni ws="qvm-x-akh">nawi</AUni> -<AUni ws="qvm-x-akl">nawi; nawi; nawe</AUni> -<AUni ws="qvm-x-ame">nawi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñawi</AUni> -<AUni ws="qvm-x-acl">*ñawi</AUni> -<AUni ws="qvm-x-akh">*ñawi</AUni> -<AUni ws="qvm-x-akl">*ñawi</AUni> -<AUni ws="qvm-x-ame">*ñawi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.596" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a3246aa7-468a-4ee4-af5d-09e36aa4afe1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñawi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="12297b7a-ac10-49e0-9e01-9646f9dc6d20" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="74a2d309-656c-4146-ba8c-92a1c808875c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñawi 
\entryTyp root 
\gENG eye 
\gSPN ojo 
\e *ñawi 
\c N0 
\mp +FinalI 
\ach nawi 
\akh nawi 
\acl nawi / _# 
\acl nawi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl nawe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl nawi / _# 
\akl nawi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl nawe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame nawi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="de6d1645-af53-4181-87bf-f3ae86ff3ad0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cachca</AUni> -<AUni ws="qvm-x-acl">cachca</AUni> -<AUni ws="qvm-x-akh">kachka</AUni> -<AUni ws="qvm-x-akl">kachka</AUni> -<AUni ws="qvm-x-ame">kachka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*katrka.n</AUni> -<AUni ws="qvm-x-acl">*katrka.n</AUni> -<AUni ws="qvm-x-akh">*katrka.n</AUni> -<AUni ws="qvm-x-akl">*katrka.n</AUni> -<AUni ws="qvm-x-ame">*katrka.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.963" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2b835d64-901b-4d4f-9ed8-cac3bed4a3ad" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*katrka.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ddbbe17a-9eb0-4840-8bb9-4f771596a34b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0fb2ed81-d815-4200-9b0f-1563edefa192" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *katrka.n 
\entryTyp root 
\gENG 
\gSPN 
\e *katrka.n 
\c N0 
\ach cachca 
\akh kachka 
\acl cachca 
\akl kachka 
\ame kachka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="de6dce89-f1d7-4bba-8c9f-4067f9cacc1d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">serina</AUni> -<AUni ws="qvm-x-acl">serina</AUni> -<AUni ws="qvm-x-akh">serina</AUni> -<AUni ws="qvm-x-akl">serina</AUni> -<AUni ws="qvm-x-ame">serina</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+serenar</AUni> -<AUni ws="qvm-x-acl">+serenar</AUni> -<AUni ws="qvm-x-akh">+serenar</AUni> -<AUni ws="qvm-x-akl">+serenar</AUni> -<AUni ws="qvm-x-ame">+serenar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.510" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2ce74186-9494-40b5-a150-3b8066da4c12" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+serenar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f864ad80-66b7-481c-b880-0bcac8ab7b85" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1546a0a9-dfaf-4800-ba48-d29225b4aec7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +serenar 
\entryTyp root 
\gENG 
\gSPN 
\e +serenar 
\c V2 
\ach serina 
\akh serina 
\acl serina 
\akl serina 
\ame serina</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="de6f243f-e55f-4077-a95b-20376a9e63ff" ownerguid="061749a8-e28a-461c-bf2d-052ab3e157d5"> -<ExampleWords> -<AUni ws="en">space out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to arranging things with spaces between them?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="de7048e2-4e3b-4489-82c8-6aeea8a34b7c" ownerguid="c1ceebe1-1274-40c1-a932-696265d9d412"> -<ExampleWords> -<AUni ws="en">premises, grounds, compound</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the area around a building?</AUni> -</Question> -</rt> -<rt class="StTxtPara" guid="de70f278-66f4-49b6-9526-fffa3c4d8cd0" ownerguid="7d78db90-a316-4649-84b0-32db353e8633"> -<ParseIsCurrent val="True" /> -</rt> -<rt class="CmDomainQ" guid="de76daf0-585b-42b4-9af5-f1d2070faf59" ownerguid="8d8a7656-8f8e-467e-b72e-535db6a17c6a"> -<ExampleWords> -<AUni ws="en">tadpole</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a baby amphibian?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="de7a9f49-482c-45a6-82a7-b222fda78b7c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alacrán; alacran</AUni> -<AUni ws="qvm-x-acl">alacrán; alacran</AUni> -<AUni ws="qvm-x-akh">alacrán; alacran</AUni> -<AUni ws="qvm-x-akl">alacrán; alacran</AUni> -<AUni ws="qvm-x-ame">alacrán; alacran</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+alacrán</AUni> -<AUni ws="qvm-x-acl">+alacrán</AUni> -<AUni ws="qvm-x-akh">+alacrán</AUni> -<AUni ws="qvm-x-akl">+alacrán</AUni> -<AUni ws="qvm-x-ame">+alacrán</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.689" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1e452b8b-fdf6-4ebd-ba25-ef78070fc359" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+alacrán</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="37f99b50-3a99-4441-8d9f-20091de8ed43" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="97c578b1-e37b-49f7-acf7-76d8620e979b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +alacrán 
\entryTyp root 
\gENG scorpion 
\gSPN alacrán 
\e +alacrán 
\c N0 
\mp +FinalC 
\ach alacrán / _# 
\ach alacran / ~_# 
\akh alacrán / _# 
\akh alacran / ~_# 
\acl alacrán / _# 
\acl alacran / ~_# 
\akl alacrán / _# 
\akl alacran / ~_# 
\ame alacrán / _# 
\ame alacran / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="de7b8df5-83a7-4456-a63a-1075ff17dbaf" ownerguid="76a06e45-99f7-446f-a2e8-e23edf6064bd"> -<Abbreviation> -<AUni ws="en">8.3.7.8.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a blemish--something small and bad on the skin of a person or the surface of something, but not something serious, especially something wrong that does not affect how something works.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79L Blemished, Unblemished</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Blemish</AUni> -</Name> -<Questions> -<objsur guid="370b0948-68d8-4c45-9ae8-c4abbf690724" t="o" /> -<objsur guid="3e669818-6f4c-4423-b65c-1f4503b67cc3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="de7c4d60-858b-45f8-bcd0-3cd54f05915c" ownerguid="5c69b52c-85cf-49fc-9976-95b5f8f7c104"> -<Form> -<AUni ws="qvm-x-ach">tira</AUni> -<AUni ws="qvm-x-acl">tira</AUni> -<AUni ws="qvm-x-akh">tira</AUni> -<AUni ws="qvm-x-akl">tira</AUni> -<AUni ws="qvm-x-ame">tira</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="de7e47b4-fff4-478d-921d-6edee584e280" ownerguid="741c417a-11e9-460c-9ab3-51b8220df016"> -<ExampleWords> -<AUni ws="en">crash, roar, thunder, thunderous roar, slap</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What sounds do waves make?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="de80ae9e-0b34-4d6b-8ad2-29e3702790f5" ownerguid="0169a639-f66b-44c6-8af6-f5ef5270c953"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="f9605e5f-491d-4bd8-ba73-f471f06a8f6f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="de80ca65-70c7-44a3-b550-aaf6f7ce4533" ownerguid="08d3cb03-43fa-48d7-ad6b-05be6a953946"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="de83ecb6-4150-42a1-ac25-d619357a83c7" ownerguid="444d93a7-d896-4c50-871b-cbb18d3f7bb9"> -<Form> -<AUni ws="qvm-x-ach">grüpu</AUni> -<AUni ws="qvm-x-acl">grüpu; grüpu; grüpo</AUni> -<AUni ws="qvm-x-akh">grüpu</AUni> -<AUni ws="qvm-x-akl">grüpu; grüpu; grüpo</AUni> -<AUni ws="qvm-x-ame">grüpu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="de84244f-f4ff-41d7-ad4b-6e86ff888661" ownerguid="768aed05-dbc9-4caf-9461-76cb3720f908"> -<ExampleWords> -<AUni ws="en">subside, go away, fade</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe pain decreasing?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="de8a0885-39a4-494f-bf8f-736e609222eb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsururo; tsururu:</AUni> -<AUni ws="qvm-x-acl">tsururo; tsururo:</AUni> -<AUni ws="qvm-x-akh">tsururo; tsururu:</AUni> -<AUni ws="qvm-x-akl">tsururo; tsururo:</AUni> -<AUni ws="qvm-x-ame">tsururu; tsururu:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chururu.v</AUni> -<AUni ws="qvm-x-acl">*chururu.v</AUni> -<AUni ws="qvm-x-akh">*chururu.v</AUni> -<AUni ws="qvm-x-akl">*chururu.v</AUni> -<AUni ws="qvm-x-ame">*chururu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.354" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="44ccd0fe-509a-48f9-bdbd-b7a0eaf81096" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chururu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="85514a36-a370-40c3-b181-080b6c2e41cc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f99af8a2-0082-4adc-9fff-47ba21d7ef83" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chururu.v 
\entryTyp root 
\gENG freeze 
\gSPN congelar 
\e *chururu.v 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach tsururo foreshortened 
\ach tsururu: 
\akh tsururo foreshortened 
\akh tsururu: 
\acl tsururo foreshortened 
\acl tsururo: 
\akl tsururo foreshortened 
\akl tsururo: 
\ame tsururu foreshortened 
\ame tsururu: 
\i JOB 38.30 ¿Pitag lamar yacuta tsururötsin?</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="de8b956b-0159-45d1-a494-21d406273df9" ownerguid="078dc3f7-2aac-4ecb-808d-ec65a50932ed"> -<Form> -<AUni ws="qvm-x-ach">wapu</AUni> -<AUni ws="qvm-x-acl">wapu; wapo</AUni> -<AUni ws="qvm-x-akh">wapu</AUni> -<AUni ws="qvm-x-akl">wapu; wapo</AUni> -<AUni ws="qvm-x-ame">wapu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="de8cc82b-a6bb-411d-8ec6-da92f915f422"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">vez</AUni> -<AUni ws="qvm-x-acl">vez</AUni> -<AUni ws="qvm-x-akh">vez</AUni> -<AUni ws="qvm-x-akl">vez</AUni> -<AUni ws="qvm-x-ame">vez</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vez</AUni> -<AUni ws="qvm-x-acl">+vez</AUni> -<AUni ws="qvm-x-akh">+vez</AUni> -<AUni ws="qvm-x-akl">+vez</AUni> -<AUni ws="qvm-x-ame">+vez</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.383" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="633c921f-0455-4efd-a16f-7443b9da64b1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vez</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="41e55d2f-8bd9-46c1-be7e-da5445d49184" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b5cd99b5-1a6e-4820-8d92-459f6944a478" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vez 
\entryTyp root 
\gENG 
\gSPN 
\e +vez 
\c ONSHEV 
\mp +FinalC 
\ach vez 
\akh vez 
\acl vez 
\akl vez 
\ame vez</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="de8eb297-2bd6-4bb8-b1e1-e86f5dc78c15" ownerguid="07e97f87-68ca-4d18-9f86-a326e0400947"> -<ExampleWords> -<AUni ws="en">parallel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe two lines that go in the same direction?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="de917b61-5157-4309-b0b5-dfee703d61f3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bene:chu</AUni> -<AUni ws="qvm-x-acl">bene:chu; bene:chu; bene:cho</AUni> -<AUni ws="qvm-x-akh">bene:chu</AUni> -<AUni ws="qvm-x-akl">bene:chu; bene:chu; bene:cho</AUni> -<AUni ws="qvm-x-ame">bene:chu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+venecho</AUni> -<AUni ws="qvm-x-acl">+venecho</AUni> -<AUni ws="qvm-x-akh">+venecho</AUni> -<AUni ws="qvm-x-akl">+venecho</AUni> -<AUni ws="qvm-x-ame">+venecho</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.363" /> -<DateModified val="2022-10-10 21:19:47.697" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1de7e3f8-1f6e-4ba0-a741-b0f5b25211e8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+venecho</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="729af403-1977-4ee5-97e4-f3263e2dd378" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7d26ed02-ed44-4956-98f0-1adf25844f4d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +venecho 
\entryTyp root 
\gENG big.deal 
\gSPN 
\e +venecho 
\c R0 
\ach bene:chu 
\akh bene:chu 
\acl bene:chu / _# 
\acl bene:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl bene:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl bene:chu / _# 
\akl bene:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl bene:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame bene:chu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="de927fe2-6c0f-4797-829e-2bcf46aa3c71" ownerguid="424bda37-67d4-4ec3-a39a-7bba0c9f3b97"> -<Form> -<AUni ws="qvm-x-ach">nuqui</AUni> -<AUni ws="qvm-x-acl">nuqui; nuque</AUni> -<AUni ws="qvm-x-akh">nuki</AUni> -<AUni ws="qvm-x-akl">nuki; nuke</AUni> -<AUni ws="qvm-x-ame">nuki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="de929a9d-f366-4fc8-ac1a-2d69767b70b3" ownerguid="bd8ec5d0-ba23-4a90-a75c-e7ff3c5718ca"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="de940ab2-7bee-4eb7-9684-be3b826f485d" ownerguid="4c2996fe-c80e-49aa-8b03-eadc2298f7b5"> -<Form> -<AUni ws="qvm-x-ach">débil; dëbil</AUni> -<AUni ws="qvm-x-acl">débil; dëbil; dëbel</AUni> -<AUni ws="qvm-x-akh">débil; dëbil</AUni> -<AUni ws="qvm-x-akl">débil; dëbil; dëbel</AUni> -<AUni ws="qvm-x-ame">débil; dëbil</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="de94f006-ecc6-4347-b505-28b1f6735f59"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sacrificiu; sacrificio</AUni> -<AUni ws="qvm-x-acl">sacrificiu; sacrificiu; sacrificio</AUni> -<AUni ws="qvm-x-akh">sacrificiu; sacrificio</AUni> -<AUni ws="qvm-x-akl">sacrificiu; sacrificiu; sacrificio</AUni> -<AUni ws="qvm-x-ame">sacrificiu; sacrificio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sacrificio</AUni> -<AUni ws="qvm-x-acl">+sacrificio</AUni> -<AUni ws="qvm-x-akh">+sacrificio</AUni> -<AUni ws="qvm-x-akl">+sacrificio</AUni> -<AUni ws="qvm-x-ame">+sacrificio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.419" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="85c13b56-6ea9-4f49-b3d4-1caa15925941" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sacrificio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9d9be965-d87f-46b7-b779-2846b978a008" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="69acad6e-c594-491f-b282-33f65245761c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sacrificio 
\entryTyp root 
\gENG sacrifice 
\gSPN sacrificio 
\e +sacrificio 
\c N0 
\ach sacrificiu / ~_# 
\ach sacrificio / _# 
\akh sacrificiu / ~_# 
\akh sacrificio / _# 
\acl sacrificiu / ~_# 
\acl sacrificiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sacrificio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sacrificiu / ~_# 
\akl sacrificiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sacrificio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sacrificiu / ~_# 
\ame sacrificio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="FsClosedValue" guid="de96a398-8dd1-4a4c-a1cc-0e5326a6a5e7" ownerguid="561bebab-a99f-46ca-a2ba-21b1abff8715"> -<Feature> -<objsur guid="e13ebd7a-824d-4405-8c23-e5a30f3d53a6" t="r" /> -</Feature> -<RefNumber val="0" /> -<Value> -<objsur guid="7fd2e9b4-402c-427c-a3e3-bbf386d652da" t="r" /> -</Value> -<ValueState val="0" /> -</rt> -<rt class="WfiAnalysis" guid="de972142-b8c4-4d5f-8fa2-f1ab61d4b33e" ownerguid="6545d219-5055-445e-b141-9a57907a923b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="83b55195-cb2f-4c1c-a416-08d1b7b405c9" t="o" /> -<objsur guid="9eb48f8c-ef4f-4a20-9dd7-77c0d572c4ee" t="o" /> -<objsur guid="353951ea-d333-4799-a447-22c5f539a121" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="de979969-cac5-4a80-994c-dd26fe2b657b" ownerguid="9693dca0-263a-48c2-b98c-21948c2c3608"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="de9d5f3b-a72b-4d99-83c0-97baa9e314b6" ownerguid="d71c3011-e4cf-443a-b2c8-f39662c0370a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="dea1804a-9b6f-43b6-9fc7-6879d04aaa7d" ownerguid="4b82a47e-6a4c-43b6-8897-8a44bf15a9c9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">patalear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2295c217-db8e-4b3e-a5b8-45f105cfe599" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="dea4ea4a-f0e4-45b0-b374-b9b928582357" ownerguid="9d865347-6656-4ab7-8613-bf2e8bc53aa7"> -<ExampleWords> -<AUni ws="en">unharmed, unhurt, unscathed, come to no harm, no harm done, without a scratch, in one piece, walk away from</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What words describe someone who is not injured?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="dea84abb-62c1-4174-a342-303fdf4468a4" ownerguid="7a1a3d41-5cf2-4654-8553-c770820eb213"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="deb12555-6873-488f-ba0f-fca6d7cc2b6a" ownerguid="c931dded-3f19-41d2-8558-d87ce1db63c9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">diarrhea</AUni> -<AUni ws="es">diaréa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="56752325-45fb-4f78-9f48-beac1620c878" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="deb791f4-c893-4c12-9823-85473b69c8a0" ownerguid="734b34e7-9c46-4c9a-9b89-7b5555f499ee"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="deb9d500-b153-4522-a148-ec8e29d13057" ownerguid="515f9b40-0637-4ce3-b343-2d99de3f723b"> -<ExampleWords> -<AUni ws="en">plumbing, pipes</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a system of pipes?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="deba4a79-3398-4dfa-b692-461f181f2ebb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsoglu</AUni> -<AUni ws="qvm-x-acl">tsoglu; tsoglu; tsoglo</AUni> -<AUni ws="qvm-x-akh">tsoqlu</AUni> -<AUni ws="qvm-x-akl">tsoqlu; tsoqlu; tsoqlo</AUni> -<AUni ws="qvm-x-ame">tsuqlu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chuqllu</AUni> -<AUni ws="qvm-x-acl">*chuqllu</AUni> -<AUni ws="qvm-x-akh">*chuqllu</AUni> -<AUni ws="qvm-x-akl">*chuqllu</AUni> -<AUni ws="qvm-x-ame">*chuqllu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.345" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3a4a4b49-79b0-4aac-8e18-83fff0fb571a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chuqllu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="603b460e-2f19-48f6-9b5a-ff8df3f19c09" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bb1a467d-89a9-4b71-96e3-e5af8c5d74e6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chuqllu 
\entryTyp root 
\gENG corn.on.cob 
\gSPN choclo 
\e *chuqllu 
\c N0 
\ach tsoglu 
\akh tsoqlu 
\acl tsoglu / _# 
\acl tsoglu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tsoglo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsoqlu / _# 
\akl tsoqlu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tsoqlo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsuqlu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="deba586a-9a21-43c6-ac01-b4712a632422" ownerguid="e9ee1317-ef25-4d57-a213-5ab6fec6e2c6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="debda89b-6547-4a90-859d-7280e9928d9d" ownerguid="333abfbb-ad21-48b0-9baa-6527d28efdb1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">whip</AUni> -<AUni ws="es">azotar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6cb6c821-fb9d-4642-9eef-6ca3a9304b61" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="debe9765-c399-43b6-a014-31c213dade8a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">don</AUni> -<AUni ws="qvm-x-acl">don</AUni> -<AUni ws="qvm-x-akh">don</AUni> -<AUni ws="qvm-x-akl">don</AUni> -<AUni ws="qvm-x-ame">don</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+don</AUni> -<AUni ws="qvm-x-acl">+don</AUni> -<AUni ws="qvm-x-akh">+don</AUni> -<AUni ws="qvm-x-akl">+don</AUni> -<AUni ws="qvm-x-ame">+don</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.437" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="103512a3-4d88-41fe-a573-f51e2113517b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+don</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e2d3fd28-f74c-49b8-a85c-a8d98bd5a6e4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="779b16d4-29ab-4fcf-af5a-0331119167ba" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +don 
\entryTyp root 
\gENG Mr. 
\gSPN Don 
\e +don 
\c NOSUFF 
\ach don 
\akh don 
\acl don 
\akl don 
\ame don</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="debea567-cf04-4f7c-8491-c018d0298e37" ownerguid="5ce6f0d8-3b4b-4723-9526-88451429b850"> -<Form> -<AUni ws="qvm-x-ach">nagtsa</AUni> -<AUni ws="qvm-x-acl">nagtsa</AUni> -<AUni ws="qvm-x-akh">naqtsa</AUni> -<AUni ws="qvm-x-akl">naqtsa</AUni> -<AUni ws="qvm-x-ame">naqtsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="debf9e9e-d3d6-48a6-b0eb-b2a5c19c5231" ownerguid="a099bda7-0779-49fd-a156-66b6d3e2c1d1"> -<Form> -<AUni ws="qvm-x-ach">barbicha</AUni> -<AUni ws="qvm-x-acl">barbicha</AUni> -<AUni ws="qvm-x-akh">barbicha</AUni> -<AUni ws="qvm-x-akl">barbicha</AUni> -<AUni ws="qvm-x-ame">barbicha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="debfe87c-6fbf-4663-b4b1-c9b69b20ddd4" ownerguid="61f40376-729d-4d99-894f-06c5689a06ac"> -<ExampleWords> -<AUni ws="en">flatten, even (v), even out, smooth, level, roll something flat, press, squish, squash, smash, mash, spread thin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to making something flat?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="dec21f8a-a0e5-4350-adf5-012f70e13b28" ownerguid="36934fab-c0ed-4f25-a387-e1cca26b2401"> -<ExampleWords> -<AUni ws="en">very few</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that there are a very small number of things or people?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="dec7d625-a603-46f9-affd-d5527f758eac" ownerguid="6c6e3f3f-22a2-41c3-87b9-5a2191c5b35d"> -<Form> -<AUni ws="qvm-x-ach">abraza</AUni> -<AUni ws="qvm-x-acl">abraza</AUni> -<AUni ws="qvm-x-akh">abraza</AUni> -<AUni ws="qvm-x-akl">abraza</AUni> -<AUni ws="qvm-x-ame">abraza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="dec805df-458c-4c17-9cf7-ee4949691fb1" ownerguid="f838a849-ffc9-4530-93f0-db41ad4218c6"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="decbb379-4754-4271-9988-f61ef722a83d" ownerguid="6bc902d0-7e1b-4af5-a8bb-4d7362eaa96c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="decbc48d-8a12-41a0-8181-eaeafb8d62fa" ownerguid="afa77a2a-8b0f-4a39-91bc-040e90ffbb3a"> -<ExampleWords> -<AUni ws="en">exult, delight in, ecstasy, be on top of the world, be over the moon, rapture</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to feeling very happy?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="decda8c0-e869-4864-843a-b29c2d91675f" ownerguid="d299e78b-b4e5-4b52-8dc2-54b91154382d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="decf29d8-35f7-480d-8f80-d8ac56ad7ccb" ownerguid="62ed8254-e53a-4781-935e-79869619e40a"> -<ExampleWords> -<AUni ws="en">desecrate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to improperly using something that has been dedicated?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="ded0e58d-8ad7-4909-b0f1-b9ab9c10bb0d" ownerguid="7ddbd56f-e458-4a72-a9bc-9b7db6bde75a"> -<Abbreviation> -<AUni ws="en">4.6.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.256" /> -<DateModified val="2022-9-23 16:55:8.256" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the king's family.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">King's family</AUni> -</Name> -<Questions> -<objsur guid="51e04331-5913-4583-ab8f-c33952f4bc25" t="o" /> -<objsur guid="1d9bf168-771b-4bd4-be65-789156c422d8" t="o" /> -<objsur guid="e7524a77-4df5-4df4-8765-09656e482895" t="o" /> -<objsur guid="fa6cd8e9-d50b-4a3b-a061-da41941a4cda" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="ded254d3-e07a-4788-8ba1-6e2ae6fa083b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tu:bu</AUni> -<AUni ws="qvm-x-acl">tu:bu; tu:bu; tu:bo</AUni> -<AUni ws="qvm-x-akh">tu:bu</AUni> -<AUni ws="qvm-x-akl">tu:bu; tu:bu; tu:bo</AUni> -<AUni ws="qvm-x-ame">tu:bu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tubo</AUni> -<AUni ws="qvm-x-acl">+tubo</AUni> -<AUni ws="qvm-x-akh">+tubo</AUni> -<AUni ws="qvm-x-akl">+tubo</AUni> -<AUni ws="qvm-x-ame">+tubo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.967" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4e8d835b-d7d1-4f81-9927-a6978d4d61dc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tubo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="82cd51c9-d07c-4486-8540-aaf67a4af40a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6573baa4-eaac-42e8-81d5-d33ad254f77c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tubo 
\entryTyp root 
\gENG tube 
\gSPN tubo 
\e +tubo 
\c N0 
\ach tu:bu 
\akh tu:bu 
\acl tu:bu / _# 
\acl tu:bu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tu:bo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tu:bu / _# 
\akl tu:bu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tu:bo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tu:bu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ded2feb5-71a3-4661-9f20-28dae5b143cf" ownerguid="9d4bc93a-7272-4956-b4de-028551f6563b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">defend</AUni> -<AUni ws="es">defender</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6d5114fc-a740-4a54-a028-5b5d64b95da2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ded34405-7bdc-4af4-a902-101db97edbb0" ownerguid="eb3bc41a-8c2f-4fdf-bd56-d2f42cfe9090"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ded43b73-f389-41bc-ac4b-043d6edacd61" ownerguid="8cb6d833-7472-498e-bee6-eade3b53547b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">small</AUni> -<AUni ws="es">chico</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="66c32475-099f-4aef-acf1-f71f02820bd1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ded4dfbf-8f08-4fcc-8e1b-2dfbf520a3e4" ownerguid="39dcb6b9-94df-45be-a128-c14c7a9dcdbd"> -<ExampleWords> -<AUni ws="en">be sick, throw up, vomit, puke, barf, bring up, regurgitate, spew</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to vomiting?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ded4e3b9-2990-40da-8a45-c94737702790" ownerguid="439ee5a8-4246-479e-8d14-10cff381797a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="93006b52-1d87-461d-a8d2-f7e4ef8e7cd8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="ded5c3be-18d2-4d2b-afd2-1a4802d3180d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shacya; shacya:</AUni> -<AUni ws="qvm-x-acl">shacya; shacya:</AUni> -<AUni ws="qvm-x-akh">shakya; shakya:</AUni> -<AUni ws="qvm-x-akl">shakya; shakya:</AUni> -<AUni ws="qvm-x-ame">shakya; shakya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shakya:</AUni> -<AUni ws="qvm-x-acl">*shakya:</AUni> -<AUni ws="qvm-x-akh">*shakya:</AUni> -<AUni ws="qvm-x-akl">*shakya:</AUni> -<AUni ws="qvm-x-ame">*shakya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.529" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f13835b9-af8b-4a55-ae53-208a4a6b641b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shakya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fe1a42b7-d265-4b48-88f2-5a4e967ed3df" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f5a71da6-2ece-48ec-98a6-9f02333a9944" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shakya: 
\entryTyp root 
\gENG encourage 
\gSPN animar 
\e *shakya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach shacya foreshortened 
\ach shacya: 
\akh shakya foreshortened 
\akh shakya: 
\acl shacya foreshortened 
\acl shacya: 
\akl shakya foreshortened 
\akl shakya: 
\ame shakya foreshortened 
\ame shakya:</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="ded65b4a-f47c-491b-95f3-1080151b43f1" ownerguid="592c0a6f-2e24-4d4b-80e7-bace75879ff3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="ded8b37a-74e4-4a5e-9f7b-632505cf0e93" ownerguid="caf960da-cb19-4d47-b0e6-1c07be37025f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="7d761bd8-156f-4c2d-972f-f1a56cc38854" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="6fedcfbd-29db-4c01-bd2a-f6e33b2b3175" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="deda6839-ba86-4e1d-9dc8-7d655cb056f9" ownerguid="cf543d5c-1767-4b55-b55e-37fac2c65f66"> -<Form> -<AUni ws="qvm-x-ach">jatuncaray</AUni> -<AUni ws="qvm-x-acl">jatuncaray</AUni> -<AUni ws="qvm-x-akh">jatunkaray</AUni> -<AUni ws="qvm-x-akl">jatunkaray</AUni> -<AUni ws="qvm-x-ame">hatunkaray</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="dedf9bc3-21a0-4eee-827f-f11c03b1e934"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tardi; tarde</AUni> -<AUni ws="qvm-x-acl">tardi; tardi; tarde</AUni> -<AUni ws="qvm-x-akh">tardi; tarde</AUni> -<AUni ws="qvm-x-akl">tardi; tardi; tarde</AUni> -<AUni ws="qvm-x-ame">tardi; tarde</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tarde</AUni> -<AUni ws="qvm-x-acl">+tarde</AUni> -<AUni ws="qvm-x-akh">+tarde</AUni> -<AUni ws="qvm-x-akl">+tarde</AUni> -<AUni ws="qvm-x-ame">+tarde</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.825" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2e88eec3-7bb5-4dc7-85de-d2bf1d4690ec" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tarde</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dce62a82-68fd-43d5-8f67-b011bd487a74" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="607d90fc-a987-426d-8760-1c0c6f239ea1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tarde 
\entryTyp root 
\gENG afternoon 
\gSPN tarde 
\e +tarde 
\c N0 
\mp +FinalI 
\ach tardi / ~_# 
\ach tarde / _# 
\akh tardi / ~_# 
\akh tarde / _# 
\acl tardi / ~_# 
\acl tardi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tarde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tardi / ~_# 
\akl tardi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tarde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tardi / ~_# 
\ame tarde / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="dee448f2-5ef5-485a-87f8-b82e3b286bc7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">taugui</AUni> -<AUni ws="qvm-x-acl">taugui; taugue</AUni> -<AUni ws="qvm-x-akh">tawqi</AUni> -<AUni ws="qvm-x-akl">tawqi; tawqe</AUni> -<AUni ws="qvm-x-ame">tawqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tawqi</AUni> -<AUni ws="qvm-x-acl">*tawqi</AUni> -<AUni ws="qvm-x-akh">*tawqi</AUni> -<AUni ws="qvm-x-akl">*tawqi</AUni> -<AUni ws="qvm-x-ame">*tawqi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.843" /> -<DateModified val="2022-10-10 21:18:47.207" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="701d7cde-dff4-432a-8fc7-71486be83e89" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tawqi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f0d29703-cf1f-4712-8bdc-c5d4b3bed49a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9f2a2d08-f39f-4cf3-940a-bab3966c1bea" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tawqi 
\entryTyp root 
\gENG 
\gSPN 
\e *tawqi 
\c V1 
\mp +FinalI 
\ach taugui 
\akh tawqi 
\acl taugui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl taugue +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tawqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tawqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tawqi 
\i Runa laquicur taugiraycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="dee4ee20-8c59-47cb-a986-7e2471365c36" ownerguid="fbc0960d-67cd-474f-bb01-3c189f6335f0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="dee567cb-6264-47d9-a17c-d3ac632d3334" ownerguid="2e5a80f9-35ae-4850-9627-be530832a781"> -<ExampleWords> -<AUni ws="en">sorry, excuse me, I beg your pardon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words are used in apologies to show respect?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="dee94ada-a104-4f24-ba86-77a894d50534" ownerguid="3180b6aa-3ad9-4bd3-96f7-ae72264406fb"> -<ExampleWords> -<AUni ws="en">replace, put back, return (something), return to its place, restore to owner</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to putting something back in its place?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="deef10e2-a871-4288-82fa-580dc17ca4a4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">piqui</AUni> -<AUni ws="qvm-x-acl">piqui; piqui; pique</AUni> -<AUni ws="qvm-x-akh">piki</AUni> -<AUni ws="qvm-x-akl">piki; piki; pike</AUni> -<AUni ws="qvm-x-ame">piki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*piki</AUni> -<AUni ws="qvm-x-acl">*piki</AUni> -<AUni ws="qvm-x-akh">*piki</AUni> -<AUni ws="qvm-x-akl">*piki</AUni> -<AUni ws="qvm-x-ame">*piki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.830" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7fdf00b4-3d4b-4e59-a222-10596cb800ea" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*piki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e554f2e8-9462-464d-aef7-4a74f841e793" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="edeb0ccc-d2fa-482a-b3f9-1ace8a02a10b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *piki 
\entryTyp root 
\gENG flea 
\gSPN pulga 
\e *piki 
\c N0 
\mp +FinalI 
\ach piqui 
\akh piki 
\acl piqui / _# 
\acl piqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pique +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl piki / _# 
\akl piki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pike +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame piki</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="def66cb9-f521-45ad-b853-36df2dd62d77" ownerguid="70361b53-d379-4601-96b7-39d0c39de125"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="defbe920-aa69-4033-b0d9-f0194c13fe90"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">descontentu; descontento</AUni> -<AUni ws="qvm-x-acl">descontentu; descontentu; descontento</AUni> -<AUni ws="qvm-x-akh">descontentu; descontento</AUni> -<AUni ws="qvm-x-akl">descontentu; descontentu; descontento</AUni> -<AUni ws="qvm-x-ame">descontentu; descontento</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+descontento</AUni> -<AUni ws="qvm-x-acl">+descontento</AUni> -<AUni ws="qvm-x-akh">+descontento</AUni> -<AUni ws="qvm-x-akl">+descontento</AUni> -<AUni ws="qvm-x-ame">+descontento</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.386" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0b4896ba-dc95-45d9-83da-92a8a047b273" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+descontento</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b9e5f7d4-7799-4116-b176-ae685aebdc0c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="268f17ab-9a58-435f-baff-a4d9fd29aa49" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +descontento 
\entryTyp root 
\gENG unhappy 
\gSPN descontento 
\e +descontento 
\c N0 
\ach descontentu / ~_# 
\ach descontento / _# 
\akh descontentu / ~_# 
\akh descontento / _# 
\acl descontentu / ~_# 
\acl descontentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl descontento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl descontentu / ~_# 
\akl descontentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl descontento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame descontentu / ~_# 
\ame descontento / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="defbfc55-ccbd-4ce9-8ca9-a9c4d8f9c093" ownerguid="8b0ba7f9-ce29-4d56-93f2-7df1378ca60e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rich</AUni> -<AUni ws="es">rico</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fa054a8f-4213-4d14-bf7a-d998210e2fc9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="defc50e1-9be8-4384-b161-66b3b6a47a7a" ownerguid="aee2b530-dd69-4b57-8158-840f451bf33f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">corn</AUni> -<AUni ws="es">maíz</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e49f3be4-84ad-41fa-9c86-66468cba0549" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="deff977c-a664-4456-9d44-a5127dd2a7d1" ownerguid="5cc64831-c14a-4dbe-beba-214e725ad041"> -<Abbreviation> -<AUni ws="en">7.2.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.506" /> -<DateModified val="2022-9-23 16:55:8.506" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to wandering--to move slowly without any purpose or goal.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Wander</AUni> -</Name> -<Questions> -<objsur guid="b03260e1-1fa6-4ac6-861b-f58bc53ec8ba" t="o" /> -<objsur guid="5703bcc8-4944-4b48-a01f-530517c0eb34" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="df0185e3-4bcf-4108-95bf-ef8f65260080" ownerguid="ab51c84c-2279-4a97-bee9-8b13c254637d"> -<Form> -<AUni ws="qvm-x-ach">perdición; perdicion</AUni> -<AUni ws="qvm-x-acl">perdición; perdicion</AUni> -<AUni ws="qvm-x-akh">perdición; perdicion</AUni> -<AUni ws="qvm-x-akl">perdición; perdicion</AUni> -<AUni ws="qvm-x-ame">perdición; perdicion</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="df0631f8-415c-4442-98e2-0cc64363b539" ownerguid="08ecb774-7406-44b7-8447-894102b78ec9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rat.in.hair</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="15b0c3b3-f6d4-40dd-8198-c21e580aa565" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="df07b355-d6c3-483f-9e5a-0c9b43c4ede1" ownerguid="7d9aad89-daf4-42b3-9495-1c64d90b075a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="df092f30-28ba-420c-bb67-d2eb55aa173e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">astilla</AUni> -<AUni ws="qvm-x-acl">astilla</AUni> -<AUni ws="qvm-x-akh">astilla</AUni> -<AUni ws="qvm-x-akl">astilla</AUni> -<AUni ws="qvm-x-ame">astilla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+astilla</AUni> -<AUni ws="qvm-x-acl">+astilla</AUni> -<AUni ws="qvm-x-akh">+astilla</AUni> -<AUni ws="qvm-x-akl">+astilla</AUni> -<AUni ws="qvm-x-ame">+astilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.850" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a6c070ed-f0e8-4c51-ae37-711230667e79" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+astilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0c674953-9fd3-49e8-a24a-68efb59d2b72" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1a8d1d13-3708-4bc2-a709-c245a7fd405e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +astilla 
\entryTyp root 
\gENG chip 
\gSPN astilla 
\e +astilla 
\c N0 
\ach astilla 
\akh astilla 
\acl astilla 
\akl astilla 
\ame astilla 
\i EZK 30.21 Tsay paquishgä ricranta manami pipis jampipashgatsu ni astillawanpis watapashgatsu.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="df0af4e7-7ba7-48f2-b1cf-5f8991ac97ce"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">goshpu</AUni> -<AUni ws="qvm-x-acl">goshpu; goshpu; goshpo</AUni> -<AUni ws="qvm-x-akh">qoshpu</AUni> -<AUni ws="qvm-x-akl">qoshpu; qoshpu; qoshpo</AUni> -<AUni ws="qvm-x-ame">qushpu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qushpu</AUni> -<AUni ws="qvm-x-acl">*qushpu</AUni> -<AUni ws="qvm-x-akh">*qushpu</AUni> -<AUni ws="qvm-x-akl">*qushpu</AUni> -<AUni ws="qvm-x-ame">*qushpu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.882" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="24ce6eaa-ec54-4fc2-a256-5d1989a5f450" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qushpu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e2e50769-b260-40c3-bbcf-44b7f4803044" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3b3536a8-9ef3-4927-9fe0-7de812cfc504" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qushpu 
\entryTyp root 
\gENG 
\gSPN pelo.crespo 
\e *qushpu 
\c N0 
\ach goshpu 
\akh qoshpu 
\acl goshpu / _# 
\acl goshpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl goshpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qoshpu / _# 
\akl qoshpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qoshpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qushpu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="df0bf86c-7fb5-4cca-b106-7cf0d90e6ed9" ownerguid="a1c7568b-4114-4103-89b1-7dbef4419f84"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="df0d48c3-fb09-48ea-8fbd-1a51f16c0ced" ownerguid="1b0270a5-babf-4151-99f5-279ba5a4b044"> -<ExampleWords> -<AUni ws="en">body</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the body?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="df0ef415-1bcb-47cd-b7de-2a034debe967" ownerguid="85dfc6a3-6c70-41f2-a869-32e2fb3c40ee"> -<ExampleWords> -<AUni ws="en">straighten up, rear up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to straightening up?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="df149819-608f-46cd-ba0f-55f1d9d2e8ec" ownerguid="21167445-f1b1-49b4-b147-bc792616c432"> -<Abbreviation> -<AUni ws="en">8.4.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.660" /> -<DateModified val="2022-9-23 16:55:8.660" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the speed at which a person acts or the speed at which something happens.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>68G Rapidity, Suddenness</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Speed</AUni> -</Name> -<Questions> -<objsur guid="c550db55-f3f7-45cf-a1df-2e13904d419a" t="o" /> -<objsur guid="fe8846be-2361-4236-9700-6c1840bc816d" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="2fc69f71-e9f1-45f9-b88e-bdaf97457fc3" t="o" /> -<objsur guid="af399519-5d7c-4100-9c79-8162cb4641cb" t="o" /> -<objsur guid="4c31ac6a-3197-4762-9937-2fdea90784b7" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="df14a75d-d776-4cfc-a19e-82076f6c8de2" ownerguid="136b4d64-de79-48b9-8014-8bf9ac7b6d41"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="df14ca37-6aa9-4c31-87f6-70087069e64f" ownerguid="f80c6f32-48c4-4d25-97cf-d1a665635b12"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="fb278b89-ee55-4b0f-bf6a-709931a56d82" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">scrape</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="347f4844-5b46-4edf-885f-2c2b73dfffd1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="df17c748-7c4b-457f-8415-fc6638e354ed"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lau</AUni> -<AUni ws="qvm-x-acl">lau</AUni> -<AUni ws="qvm-x-akh">law</AUni> -<AUni ws="qvm-x-akl">law</AUni> -<AUni ws="qvm-x-ame">law</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.508" /> -<DateModified val="2022-10-16 14:41:15.187" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="73948436-67ee-4e5e-8d3c-beac6f3920c7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">EXCL1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="af255979-788b-4a1f-a319-52bbd3287aa2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="28166177-6e50-4f57-97cd-3a79d8864049" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx EXCL1 
\entryTyp suffix 
\gENG EXCL1 
\gSPN ADM1 
\e EXCL1 
\c V1/NOSUFF V2/NOSUFF N0/NOSUFF BN/NOSUFF 
\o 220 
\mp +foreshortens +mlowers 
\ach lau 
\akh law 
\acl lau 
\akl law 
\ame law 
\mp NeverLowered 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="df18d488-2d3c-425d-9bb3-f1be9b032368" ownerguid="2c42f822-2079-440c-b3b7-7725b6a8db8b"> -<ExampleWords> -<AUni ws="en">cease, finish, stop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words indicate that some state has ended?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="df1a99e3-f701-4fe2-9fad-9d6ac8661c7b"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Belén</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="df1b214f-62e0-4f0b-a3f1-0dc6b450c891" ownerguid="e1bfbabf-6076-4702-8013-05c093abd868"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="17e669db-8dd4-4453-8f06-74b46306369a" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">caprice</AUni> -<AUni ws="es">capricho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8bb20465-4e03-40af-8fd0-65b7a22d214e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="df262c74-64d0-4b14-8833-4d86ebd3e248" ownerguid="8a838205-6ecf-497c-9a69-2fbfec0ffed9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">BN</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8d7322c0-fd51-4dec-aa0e-3ee53f0a2741" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="df2640fd-7c5e-400e-846b-9650563fb7ec" ownerguid="75ee8281-5299-4cd3-a5b8-cd1100883e97"> -<Form> -<AUni ws="qvm-x-ach">clävu</AUni> -<AUni ws="qvm-x-acl">clävu; clävu; clävo</AUni> -<AUni ws="qvm-x-akh">clävu</AUni> -<AUni ws="qvm-x-akl">clävu; clävu; clävo</AUni> -<AUni ws="qvm-x-ame">clävu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="df26775c-4ddf-4546-a7ec-071e470fa012" ownerguid="ecc46ea7-1bf5-4f94-a7f0-ec8d77500814"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="df2a1f95-f8e8-4991-bd04-18eda8f38d73" ownerguid="2f58bd8d-98ba-43a6-a143-441d8a630f7d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="df2b9d7a-9b90-4704-8bc3-11dcffe985f4" ownerguid="1b0270a5-babf-4151-99f5-279ba5a4b044"> -<Abbreviation> -<AUni ws="en">2.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the skin.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Skin</AUni> -</Name> -<Questions> -<objsur guid="afe2e158-aec7-40ca-97e9-efe7e5348699" t="o" /> -<objsur guid="1f991099-1fbd-426e-9a2e-dc611fb4bea3" t="o" /> -<objsur guid="84f114a6-c863-4c4b-a49a-28601c22f9c5" t="o" /> -<objsur guid="4e461e5b-9501-4345-8f0c-64dc6f3b4ed2" t="o" /> -<objsur guid="7e6df7b1-2995-4871-a318-278573cb7dd0" t="o" /> -<objsur guid="a14f6567-6b89-4968-9f19-9509d9e48f3f" t="o" /> -<objsur guid="32bafc47-f221-41c7-9f39-9b2d410f419f" t="o" /> -<objsur guid="5c708019-8ba0-41c6-9625-34e8fcbbec6a" t="o" /> -<objsur guid="0dede822-77de-497e-88a3-5f1fd2f128a6" t="o" /> -<objsur guid="f6275bae-41a9-4521-91aa-c868638bf786" t="o" /> -<objsur guid="43af89b4-ad83-4e01-95c7-1b36080739c7" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="df2ee830-0668-43d7-8a32-e2fd3e7b31d8" ownerguid="793993ac-20c1-49f0-9716-e4cdc7da4439"> -<Abbreviation> -<AUni ws="en">9.4.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for verbal auxiliaries, affixes, adverbs, and particles that indicate tense (also known as temporal deixis)--the time of a situation (event, activity, or state) in relation to a reference point, which is usually the time of utterance. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Tense</AUni> -</Name> -<Questions> -<objsur guid="edb697d9-670c-49c5-9bf6-9e6cc7006132" t="o" /> -<objsur guid="b8ab9814-b085-4695-99e6-f21035cbc856" t="o" /> -<objsur guid="3a737ff0-a0ca-4ffa-af6f-5431dce4be43" t="o" /> -<objsur guid="971ff426-5621-4d4a-a028-5b67d1d8c5a7" t="o" /> -<objsur guid="2f87af16-3fdc-4261-a570-a22600c1ed09" t="o" /> -<objsur guid="0ba468e6-b4ec-4c28-81c1-aed8be22bf25" t="o" /> -<objsur guid="6489f0bf-b978-499f-a3b1-0f525324f2c6" t="o" /> -<objsur guid="9ad7c0df-01bc-44bb-bc5f-229786ef18a1" t="o" /> -<objsur guid="0d423b14-75fd-4dba-8c23-6efa6f28a3e0" t="o" /> -<objsur guid="d210072f-6411-4b6f-bf65-4989e00b27f1" t="o" /> -<objsur guid="61f3b21f-bec7-481e-91bf-0c99b0a5fd24" t="o" /> -<objsur guid="cb7091da-8b7d-40c0-9c3e-ed02dda8d869" t="o" /> -<objsur guid="dbc7c37f-6aa3-4757-9732-53938ddf43f7" t="o" /> -<objsur guid="223eafd0-082e-4d69-847c-0df8e906b91a" t="o" /> -<objsur guid="1fac0565-e4bc-405a-bac5-48e764913a81" t="o" /> -<objsur guid="c267b9eb-b9b7-4551-abb5-65b6c51be24f" t="o" /> -<objsur guid="f2d27cb5-68c4-4fb6-abda-05dd8cf26aa7" t="o" /> -<objsur guid="acf7bdb8-a0f1-46a1-868f-55d68b9b1216" t="o" /> -<objsur guid="ae769269-33d6-40c1-8a3f-c0af5de428d2" t="o" /> -<objsur guid="f0d70ff8-f9e3-4430-8db6-a4cb637202ef" t="o" /> -<objsur guid="f62a1df8-d774-4e4a-8010-185eae5d9891" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="df3151f8-731b-46b3-89d8-fe1de67b8577" ownerguid="3aec74e5-6cfd-46d2-b26f-503fad761583"> -<ExampleWords> -<AUni ws="en">handle, hilt, guard, blade, edge, tip, back, flat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the parts of a knife?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="df34173c-d851-4357-a3a5-d4f3d0546333" ownerguid="290f0994-ce8e-4922-975f-fa091f566823"> -<ExampleWords> -<AUni ws="en">relieve someone's suffering, bring relief, give relief, allay, alleviate, assuage, ease someone's load, lighten someone's load, mitigate, bring respite, soften the blow, soothe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to relieving someone?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="df361917-97dd-4a8b-b98b-fdfa4563617d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsuta</AUni> -<AUni ws="qvm-x-acl">tsuta</AUni> -<AUni ws="qvm-x-akh">tsuta</AUni> -<AUni ws="qvm-x-akl">tsuta</AUni> -<AUni ws="qvm-x-ame">tsuta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chuta</AUni> -<AUni ws="qvm-x-acl">*chuta</AUni> -<AUni ws="qvm-x-akh">*chuta</AUni> -<AUni ws="qvm-x-akl">*chuta</AUni> -<AUni ws="qvm-x-ame">*chuta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.356" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="997e4ecd-e14a-4543-ac15-ec6322c26501" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chuta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="89411065-3bc1-4389-ba1c-9274549d75a2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7ac2a0f2-0f68-4cf5-a808-d0acd361d929" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chuta 
\entryTyp root 
\gENG pull 
\gSPN jalar 
\e *chuta 
\c V2 
\ach tsuta 
\akh tsuta 
\acl tsuta 
\akl tsuta 
\ame tsuta 
\i Tsatacachärishun. 
\i Tsutapacushun.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="df393d3e-5d16-454f-88d3-835e9b77d6be" ownerguid="9e775794-3dda-4942-b6af-087ffd57f342"> -<ExampleWords> -<AUni ws="en">side (adj), lateral</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is on the side?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="df3f8b1a-072b-462a-a1f1-7ba1ef30fb93" ownerguid="c6a618c4-3f9b-4313-89e4-b75669417ca8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="df4065f0-3967-4b43-bf1a-ab9627c48aed"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa; pa:</AUni> -<AUni ws="qvm-x-acl">pa; pa:</AUni> -<AUni ws="qvm-x-akh">pa; pa:</AUni> -<AUni ws="qvm-x-akl">pa; pa:</AUni> -<AUni ws="qvm-x-ame">pa; pa:</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.589" /> -<DateModified val="2022-10-16 16:7:11.391" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="2" /> -<LexemeForm> -<objsur guid="8816dbda-35a6-48c1-96ad-269ff48d1c1c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">VRBL1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d1e6468b-d36e-43e5-9c6a-21cf438a65d6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c6e0a791-62b9-415b-bfc9-16826dd343cc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx VRBL1 
\entryTyp suffix 
\gENG VRBL1 
\gSPN VRBL1 
\e VRBL1 
\c N0/V2 
\o 020 
\mp +FinalC 
\mp +underlong 
\ach pa foreshortened 
\ach pa: 
\akh pa foreshortened 
\akh pa: 
\acl pa foreshortened 
\acl pa: 
\akl pa foreshortened 
\akl pa: 
\ame pa foreshortened 
\ame pa: 
\mp +FinalLength 
\mcc VRBL1 / [TakeVRBL] _ 
\mcc VRBL1 / ~_ REF</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="df409837-6c89-4ab5-ae91-402cb9d57051" ownerguid="03352940-c220-4a32-a9a5-fc08d1d0dc71"> -<ExampleWords> -<AUni ws="en">garbage can, trashcan, waste-basket, wastepaper basket, bin, dustbin, wastebin, garbage bag</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a container where people put garbage?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="df455c4b-a9f3-476e-9a6b-5ab2e06c2bf9" ownerguid="2a2af155-9db9-41c5-860a-fe0a3a09d6de"> -<ExampleWords> -<AUni ws="en">attitude, logic, outlook, perspective, thoughtful, view</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to the way a person thinks about something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="df458bef-5c75-4f8b-9343-17300ad922f8" ownerguid="4de25240-867b-4e2a-845c-14f2bc956e0d"> -<Form> -<AUni ws="qvm-x-ach">pläga</AUni> -<AUni ws="qvm-x-acl">pläga</AUni> -<AUni ws="qvm-x-akh">pläga</AUni> -<AUni ws="qvm-x-akl">pläga</AUni> -<AUni ws="qvm-x-ame">pläga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="df45abe8-d148-4729-afff-c7a0c4608128"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ara:du</AUni> -<AUni ws="qvm-x-acl">ara:du; ara:du; ara:do</AUni> -<AUni ws="qvm-x-akh">ara:du</AUni> -<AUni ws="qvm-x-akl">ara:du; ara:du; ara:do</AUni> -<AUni ws="qvm-x-ame">ara:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+arado</AUni> -<AUni ws="qvm-x-acl">+arado</AUni> -<AUni ws="qvm-x-akh">+arado</AUni> -<AUni ws="qvm-x-akl">+arado</AUni> -<AUni ws="qvm-x-ame">+arado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.820" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a36143ee-b7cd-43c2-be54-61bcbeb9218d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+arado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1c1ca5bf-75b8-48e8-a459-22b6ef7c5efc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7050b964-4476-4828-9abe-45e05ce374b7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +arado 
\entryTyp root 
\gENG 
\gSPN 
\e +arado 
\c N0 
\ach ara:du 
\akh ara:du 
\acl ara:du / _# 
\acl ara:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ara:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ara:du / _# 
\akl ara:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ara:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ara:du</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="df45e95e-67c5-496c-9ae5-18a97b29743c" ownerguid="9e53f396-f9ed-4f40-a999-e3e9d36e4f69"> -<Form> -<AUni ws="qvm-x-ach">maya</AUni> -<AUni ws="qvm-x-acl">maya</AUni> -<AUni ws="qvm-x-akh">maya</AUni> -<AUni ws="qvm-x-akl">maya</AUni> -<AUni ws="qvm-x-ame">maya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="df47134e-510d-48fc-b2fe-3fa3f66dd017" ownerguid="4e7a6dfe-3654-4ca1-874d-02424581b774"> -<ExampleWords> -<AUni ws="en">shallow, not deep, skin-deep, superficial, surface</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words describe something that is shallow?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="df47f55d-b15d-4261-881e-3c4b0dc6d9be" ownerguid="3b4b947a-f223-4c87-8839-9f6237cda9f6"> -<Abbreviation> -<AUni ws="en">7.3.4.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.536" /> -<DateModified val="2022-9-23 16:55:8.536" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to extending something--to move something so that it covers a greater distance or area.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>16 Non-Linear Movement; 84 Spatial Extensions; 84A Extension From a Source; 84B Extension To a Goal; 84C Extension Along a Path</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Extend</AUni> -</Name> -<Questions> -<objsur guid="e563e95d-0ebe-4d97-a0a5-7ff1d518431b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="df4914ae-01e8-4865-b7eb-5c6ee5935eb5" ownerguid="dfa0c0ca-ecb3-41a6-a1fc-5a3cfecee9d9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">visit</AUni> -<AUni ws="es">visitar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="78ea359d-642b-4596-a342-305385c26caf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="df5080b8-aa7b-4df5-b2f1-b3557c606634" ownerguid="0bd56d70-3a1c-41ae-a4d9-a79675ec55f9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="95e63ddd-b3fb-406b-abc3-35069fee0065" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">fine</AUni> -<AUni ws="es">fino</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9d7f2384-48bd-4993-a929-28ef2f70658b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoInflAffMsa" guid="df50dc20-76ec-48c3-a0d2-a55e1cd253ab" ownerguid="a97be5dd-69dc-49bf-bcf1-a4da50b64eaa"> -<PartOfSpeech> -<objsur guid="a4fc78d6-7591-4fb3-8edd-82f10ae3739d" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="f9e1228b-4c5b-4e23-bd04-d513eddcbaea" t="r" /> -</Slots> -</rt> -<rt class="LexSense" guid="df51ab41-d40c-4d77-9372-0343746283bb" ownerguid="22eed30b-9f29-4845-925a-f553fea63fff"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">scat</AUni> -<AUni ws="es">zape</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c3977675-e63e-4d29-ab45-354328033c3e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="df51e17a-2d75-4c49-b2d1-c22e16898414"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">batya</AUni> -<AUni ws="qvm-x-acl">batya</AUni> -<AUni ws="qvm-x-akh">batya</AUni> -<AUni ws="qvm-x-akl">batya</AUni> -<AUni ws="qvm-x-ame">batya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bateya</AUni> -<AUni ws="qvm-x-acl">+bateya</AUni> -<AUni ws="qvm-x-akh">+bateya</AUni> -<AUni ws="qvm-x-akl">+bateya</AUni> -<AUni ws="qvm-x-ame">+bateya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.949" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2ba62955-1df9-459e-b7d6-eb24b0d72c3a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bateya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="30474a47-7437-4d90-9c71-963a226ac221" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d5fc6c66-f011-4cf8-9cc3-a8015e200eb5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bateya 
\entryTyp root 
\gENG trough 
\gSPN bateya 
\e +bateya 
\c N0 
\ach batya 
\akh batya 
\acl batya 
\akl batya 
\ame batya</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="df5bcf26-2a71-4cba-aba0-7c460a52dd86" ownerguid="c978d827-bb9e-4501-b87f-c1eb215435d1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="c2e5f763-39fa-45d5-a666-f899fe9412af" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="df62aa77-690e-41bc-b069-094aea6479c5" ownerguid="cecfc489-94aa-4cdc-aecf-afb6646f28f2"> -<Form> -<AUni ws="qvm-x-ach">väya</AUni> -<AUni ws="qvm-x-acl">väya</AUni> -<AUni ws="qvm-x-akh">väya</AUni> -<AUni ws="qvm-x-akl">väya</AUni> -<AUni ws="qvm-x-ame">väya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="df62c986-022d-4a99-aa93-a833ce24ae4a" ownerguid="d7861def-70c1-470f-bca6-8230cbbaa3e9"> -<ExampleWords> -<AUni ws="en">scan, survey, reconnaissance, reconnoiter, look over, eyeball, perusal, peruse, scout, skim, sweep</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to looking quickly at many things or a large area?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="df6302ad-0d24-4317-ad63-b99c6039aaab"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">puywan; puyway</AUni> -<AUni ws="qvm-x-acl">puywan; puyway</AUni> -<AUni ws="qvm-x-akh">puywan; puyway</AUni> -<AUni ws="qvm-x-akl">puywan; puyway</AUni> -<AUni ws="qvm-x-ame">puywan; puyway</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puywan</AUni> -<AUni ws="qvm-x-acl">*puywan</AUni> -<AUni ws="qvm-x-akh">*puywan</AUni> -<AUni ws="qvm-x-akl">*puywan</AUni> -<AUni ws="qvm-x-ame">*puywan</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.62" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3dbbd658-7e8c-43b5-9acd-fd1770c0d1ad" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puywan</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2fb7213e-0e9b-4f92-bb67-d0acb24f26e8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b550442e-7f07-41fb-a54c-9f456d5b171d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puywan 
\entryTyp root 
\gENG heart 
\gSPN corazon 
\e *puywan 
\c N0 
\mp NeverMonophthongized 
\cm *** ch *** 
\ach puywan +/ ~_ 3P ADV1 
\ach puyway +/ _ 3P ADV1 
\cm *** kh *** 
\akh puywan +/ ~_ 3P ADV1 
\akh puyway +/ _ 3P ADV1 
\cm *** cl *** 
\acl puywan +/ ~_ 3P ADV1 
\acl puyway +/ _ 3P ADV1 
\cm *** kl *** 
\akl puywan +/ ~_ 3P ADV1 
\akl puyway +/ _ 3P ADV1 
\cm *** me *** 
\ame puywan +/ ~_ 3P ADV1 
\ame puyway +/ _ 3P ADV1 
\mp +FinalC 
\i 2ki 9.24 Tsaypitana Jehúga flëchanta aptarcur Joramta flechaycorgan. Tsaymi wagtanpa yaycur puywayninpa pasargan. Tsaynogpami Joram cärrulancho wanorgan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="df647b1a-ed79-4a8e-b781-56ed25fe4405" ownerguid="2470ad05-636e-4c85-96ab-cd880da58741"> -<Abbreviation> -<AUni ws="en">4.9.7.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.304" /> -<DateModified val="2022-9-23 16:55:8.304" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words used in Buddhism.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Buddhism</AUni> -</Name> -<Questions> -<objsur guid="3d5d34bd-d7f8-4aab-854d-6c4298bb7261" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="df687f25-5ed2-43c1-a2c9-78c1db3b4381"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lista</AUni> -<AUni ws="qvm-x-acl">lista</AUni> -<AUni ws="qvm-x-akh">lista</AUni> -<AUni ws="qvm-x-akl">lista</AUni> -<AUni ws="qvm-x-ame">lista</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lista</AUni> -<AUni ws="qvm-x-acl">+lista</AUni> -<AUni ws="qvm-x-akh">+lista</AUni> -<AUni ws="qvm-x-akl">+lista</AUni> -<AUni ws="qvm-x-ame">+lista</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.104" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0d97bf70-8f5c-4b8f-a7ea-7a828769f0db" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lista</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1919b709-5d41-4594-9259-9a64b46a125f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a5019bfe-c2db-4218-9778-0865bc4abc83" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lista 
\entryTyp root 
\gENG list 
\gSPN lista 
\e +lista 
\c N0 
\ach lista 
\akh lista 
\acl lista 
\akl lista 
\ame lista</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="df6a9d18-7fa0-4e47-a5fd-1a490c0777d8" ownerguid="94ae196f-4dc0-4168-98c2-f14467cbda96"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lively</AUni> -<AUni ws="es">ágil</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="19636687-6b9e-4e70-9a81-27e59be353de" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="df6abe45-e71a-4eb8-8fd1-67efa058438a" ownerguid="a1ce19c4-d12c-46da-a718-6d03949b3db1"> -<ExampleWords> -<AUni ws="en">spear, hunting bow, arrow, poison for arrow, quiver, hunting net, club, gun</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What weapons are used to hunt animals?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="df6f5f11-83c4-4813-adee-b10e31d260ce" ownerguid="0343ba4e-abae-4c8f-ac32-6e0d40e3a540"> -<Form> -<AUni ws="qvm-x-ach">pututuy</AUni> -<AUni ws="qvm-x-acl">pututuy</AUni> -<AUni ws="qvm-x-akh">pututuy</AUni> -<AUni ws="qvm-x-akl">pututuy</AUni> -<AUni ws="qvm-x-ame">pututuy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="df70ea38-b5b5-42fa-b796-244eb1202e4f" ownerguid="3196b963-90b0-44ec-99ac-7ea5ba3a41a4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">anniversary</AUni> -<AUni ws="es">aniversario</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7f9bde25-211e-46c9-bb54-2705591c11a9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="df73e013-8bbc-4417-a044-63c6d9d1e1dd" ownerguid="ca443be3-3ee1-42c3-9d91-3f2ea02ecdc1"> -<Form> -<AUni ws="qvm-x-ach">trompëta</AUni> -<AUni ws="qvm-x-acl">trompëta</AUni> -<AUni ws="qvm-x-akh">trompëta</AUni> -<AUni ws="qvm-x-akl">trompëta</AUni> -<AUni ws="qvm-x-ame">trompëta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="df747b83-4b1e-4658-89b4-a65608c737a7" ownerguid="35858020-0102-4fe3-a239-fa4df7199979"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">know</AUni> -<AUni ws="es">conocer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="669363a9-6784-4258-afcb-e8579533eaf6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="df78116d-f38a-4cba-bed5-b8fd4cb4879c" ownerguid="0150ade5-3f84-412b-95fb-ba7b54ecbbce"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="0ec3ff25-451c-4a32-b57c-14e2282b9c87" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="df7ccd8c-3186-482f-8672-93f0614cedf2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chanca</AUni> -<AUni ws="qvm-x-acl">chanca</AUni> -<AUni ws="qvm-x-akh">chanka</AUni> -<AUni ws="qvm-x-akl">chanka</AUni> -<AUni ws="qvm-x-ame">chanka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tranka.n</AUni> -<AUni ws="qvm-x-acl">*tranka.n</AUni> -<AUni ws="qvm-x-akh">*tranka.n</AUni> -<AUni ws="qvm-x-akl">*tranka.n</AUni> -<AUni ws="qvm-x-ame">*tranka.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.58" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a4e9911b-ed31-4edc-88a2-e6d2873f83da" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tranka.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9f021d93-fa71-4776-adfe-40212c6105f1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ba2cb1da-d87d-4301-b2fe-550b5b3a01a3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tranka.n 
\entryTyp root 
\gENG leg 
\gSPN pierna 
\e *tranka.n 
\c N0 
\ach chanca 
\akh chanka 
\acl chanca 
\akl chanka 
\ame chanka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="df7d8024-acee-4188-a227-c4943575aad3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">comedi:du</AUni> -<AUni ws="qvm-x-acl">comedi:du; comedi:du; comedi:do</AUni> -<AUni ws="qvm-x-akh">comedi:du</AUni> -<AUni ws="qvm-x-akl">comedi:du; comedi:du; comedi:do</AUni> -<AUni ws="qvm-x-ame">comedi:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+comedido</AUni> -<AUni ws="qvm-x-acl">+comedido</AUni> -<AUni ws="qvm-x-akh">+comedido</AUni> -<AUni ws="qvm-x-akl">+comedido</AUni> -<AUni ws="qvm-x-ame">+comedido</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.152" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d36c5ea5-aabc-4469-9108-d60eac859c5e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+comedido</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fa73b50b-1d06-4c8a-b80c-2edaafa6139e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="96ea5712-6e0c-4282-89d5-f4bde408f12a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +comedido 
\entryTyp root 
\gENG 
\gSPN ayudador 
\e +comedido 
\c N0 
\ach comedi:du 
\akh comedi:du 
\acl comedi:du / _# 
\acl comedi:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl comedi:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl comedi:du / _# 
\akl comedi:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl comedi:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame comedi:du 
\i PRO 12.14 Tsaynoglami comedïducunaga imatapis tarin.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="df7ebbba-1fdd-4871-afc6-36bd7ad3539f" ownerguid="fd33670e-ef16-4566-a62e-aa077e58407b"> -<ExampleWords> -<AUni ws="en">splash, squelch, gurgle, plop, bubble, plunk, ripple, babble, burble, plash</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to the sound of water?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="df805cee-9cd6-4733-a2d9-eb97a6f4a199"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">que:ju</AUni> -<AUni ws="qvm-x-acl">que:ju; que:ju; que:jo</AUni> -<AUni ws="qvm-x-akh">que:ju</AUni> -<AUni ws="qvm-x-akl">que:ju; que:ju; que:jo</AUni> -<AUni ws="qvm-x-ame">que:ju</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+quejo</AUni> -<AUni ws="qvm-x-acl">+quejo</AUni> -<AUni ws="qvm-x-akh">+quejo</AUni> -<AUni ws="qvm-x-akl">+quejo</AUni> -<AUni ws="qvm-x-ame">+quejo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.831" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d2bdd16d-a0ce-4534-a13c-9232e859de64" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+quejo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b5930488-6ffc-4922-b6d3-99272a079fb7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="491c317a-86d1-45a9-af37-96adcd5694cd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +quejo 
\entryTyp root 
\gENG complaint 
\gSPN queja 
\e +quejo 
\c N0 
\ach que:ju 
\akh que:ju 
\acl que:ju / _# 
\acl que:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl que:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl que:ju / _# 
\akl que:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl que:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame que:ju</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="df815d5f-5e79-4e81-94b3-fb1a1c9ee3a2" ownerguid="3b19fe3b-741e-4c50-9fab-a12fdf4ca3c7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="df81ebe4-6185-45f1-ae43-03a4ef6e96d5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">:ni</AUni> -<AUni ws="qvm-x-acl">:ni; :ni; :ne</AUni> -<AUni ws="qvm-x-akh">:ni</AUni> -<AUni ws="qvm-x-akl">:ni; :ni; :ne</AUni> -<AUni ws="qvm-x-ame">:ni</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.589" /> -<DateModified val="2022-10-16 13:50:2.920" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="61f84034-baaa-4be6-a3a0-13d7eee97b8c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">UNDONE</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0e48721b-df9d-4704-8442-6a66ca1bdbc2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9f0f8ccb-3a9f-48cb-93a5-6fa5b1e38ec1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx UNDONE 
\entryTyp suffix 
\gENG UNDONE 
\gSPN SINHAC 
\e UNDONE 
\c V1/N0 
\o 120 
\mp +foreshortens 
\ach :ni 
\akh :ni 
\acl :ni / _# 
\acl :ni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl :ne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl :ni / _# 
\akl :ni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl :ne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame :ni 
\mp +FinalI 
\mcc UNDONE / ~_ 3P.V</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="df83bcee-9977-4b4e-a4f3-1ce12c16308d" ownerguid="f74f28d1-8742-4c9f-95dc-d08336e91249"> -<ExampleWords> -<AUni ws="en">youth, teenager, adolescent, minor, young man, young woman, young people, damsel, the young, the youth of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a youth (between puberty and adulthood)?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="df85bbe4-b620-4388-a81b-86b42f6d803c" ownerguid="87ecf1cf-9c1f-49c9-9f0e-a3d1d9710922"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="df860fac-a5bc-4597-86e0-e0a1975b580a" ownerguid="d55192bb-7d8a-4535-a1ca-5f48b707a814"> -<Form> -<AUni ws="qvm-x-ach">täpa</AUni> -<AUni ws="qvm-x-acl">täpa</AUni> -<AUni ws="qvm-x-akh">täpa</AUni> -<AUni ws="qvm-x-akl">täpa</AUni> -<AUni ws="qvm-x-ame">täpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="df864d59-5705-445e-9e26-d328c5c1d6b1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chilapya; chilapya:</AUni> -<AUni ws="qvm-x-acl">chilapya; chilapya:</AUni> -<AUni ws="qvm-x-akh">chilapya; chilapya:</AUni> -<AUni ws="qvm-x-akl">chilapya; chilapya:</AUni> -<AUni ws="qvm-x-ame">chilapya; chilapya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trillapya:</AUni> -<AUni ws="qvm-x-acl">*trillapya:</AUni> -<AUni ws="qvm-x-akh">*trillapya:</AUni> -<AUni ws="qvm-x-akl">*trillapya:</AUni> -<AUni ws="qvm-x-ame">*trillapya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.109" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f3894e8d-2e78-4617-9e41-1dac2daaebaf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trillapya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="de0fc899-d3f6-4f4d-9b70-56210ed0d0fb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ff91a142-b0cb-4115-be46-accb363edee8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trillapya: 
\entryTyp root 
\gENG 
\gSPN brillar 
\e *trillapya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach chilapya foreshortened 
\ach chilapya: 
\akh chilapya foreshortened 
\akh chilapya: 
\acl chilapya foreshortened 
\acl chilapya: 
\akl chilapya foreshortened 
\akl chilapya: 
\ame chilapya foreshortened 
\ame chilapya:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="df874c71-cbc9-49da-ba23-65a6b7de01d3" ownerguid="4093bfe8-54b3-4ffc-bfe3-3999279840b5"> -<ExampleWords> -<AUni ws="en">show, demonstrate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to showing how something works or how something is done?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="df8e3ae5-0e4e-4b0a-b0c4-58da088d30ff" ownerguid="3ac14d51-6820-4ca5-9551-bde7ff823cec"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="df8f6702-80bd-4171-888e-6a3e0a72171e" ownerguid="598349be-08f2-40ab-9a47-ba0ce2e95f1f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hole</AUni> -<AUni ws="es">hueco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="92a00216-534a-45cd-9931-b2fd2e7b99a0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="df909fe4-95f4-4007-b6cc-a2a16f2bfd28" ownerguid="f8026a5b-8134-4f56-bb77-4257c8f8c8a7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="df910fde-fd16-4ccb-a44d-a15cad6fb54c" ownerguid="0f323bee-0d8a-4564-9691-87880f55d910"> -<ExampleWords> -<AUni ws="en">provide for, support, furnish, supply</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to providing someone with what they need?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="df96455e-7c76-4c28-b068-f6c3fc846d45" ownerguid="c6ebf386-d8fa-4e08-9d2b-32569ec1e7dc"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="9379f382-afbe-42af-bb5c-7a53c0f36cab" t="o" /> -<objsur guid="5aeba428-b0ee-4f74-9156-8f176def59d1" t="o" /> -<objsur guid="18eb3939-0c02-4362-b9da-116fd8041522" t="o" /> -<objsur guid="09338826-bbff-4832-91b1-9ffbd8d18955" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="df9884f7-e430-4333-a677-b05b35c69786" ownerguid="5abd1270-261a-4980-93e5-e10eacea99ad"> -<ExampleWords> -<AUni ws="en">skipping rope, trampoline, pogo stick, springboard, parachute</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What things are used to help people jump?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="df9b5414-15bc-4c53-b583-b87c8e658f3f" ownerguid="14be4ae5-cbf8-4462-8c01-b5a9b761ada7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">helper</AUni> -<AUni ws="es">ayudante</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e8932e52-ada4-4dd5-947e-091637d10051" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="StTxtPara" guid="df9cae37-4752-488c-b43e-fe4523b780ef" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">rikakatsin</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="4552ab85-2f6b-48e3-bd6c-eb2cedd0b9f7" t="o" /> -</Segments> -</rt> -<rt class="CmSemanticDomain" guid="df9ee372-e92e-4f73-aac5-d36908497698" ownerguid="f4491f9b-3c5e-42ab-afc0-f22e19d0fff5"> -<Abbreviation> -<AUni ws="en">3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.94" /> -<DateModified val="2022-9-23 16:55:8.94" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to thinking, thought processes, and kinds of thinking.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>30 Think; 30A To Think, Thought</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Think</AUni> -</Name> -<Questions> -<objsur guid="0f36682e-f5ae-4bc8-be93-b578c74f25d0" t="o" /> -<objsur guid="0aaaff87-9b42-4417-8be6-9b4512b806df" t="o" /> -<objsur guid="ba0a8b3c-a0f5-4463-b43b-26b82c1e9fd2" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="7185bd93-5281-46de-80af-767f0ec40ff6" t="o" /> -<objsur guid="a42db5b4-6317-4d3f-beff-cb92dbaca914" t="o" /> -<objsur guid="07476166-c5e5-4701-97d3-d97de8b5be6f" t="o" /> -<objsur guid="d10301f3-573c-4005-ad65-1c73fb80b3b6" t="o" /> -<objsur guid="541dfa10-bf97-4713-a534-9cbcc7f66bc9" t="o" /> -<objsur guid="9f868391-f1df-4682-bdcb-2c2c799006cf" t="o" /> -<objsur guid="5e3bb9e5-fd70-4c5a-95a0-938bc4876a47" t="o" /> -<objsur guid="05f95abb-163a-4927-83c5-8c81ef7b769c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="dfa08847-2613-4604-8111-cccd45ccd715" ownerguid="c114ea07-250d-4acb-918c-b2916f40f47b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="dfa0c0ca-ecb3-41a6-a1fc-5a3cfecee9d9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">visita</AUni> -<AUni ws="qvm-x-acl">visita</AUni> -<AUni ws="qvm-x-akh">visita</AUni> -<AUni ws="qvm-x-akl">visita</AUni> -<AUni ws="qvm-x-ame">visita</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+visitar</AUni> -<AUni ws="qvm-x-acl">+visitar</AUni> -<AUni ws="qvm-x-akh">+visitar</AUni> -<AUni ws="qvm-x-akl">+visitar</AUni> -<AUni ws="qvm-x-ame">+visitar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.412" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6e246787-ea9a-4260-a27b-264866c23ac2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+visitar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="78ea359d-642b-4596-a342-305385c26caf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="df4914ae-01e8-4865-b7eb-5c6ee5935eb5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +visitar 
\entryTyp root 
\gENG visit 
\gSPN visitar 
\e +visitar 
\c V2 
\ach visita 
\akh visita 
\acl visita 
\akl visita 
\ame visita</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="dfa23fa8-eb1d-4e88-a78e-eaea3bf16966" ownerguid="6b36eca1-0b5d-4a4a-8756-dafc44e18693"> -<Form> -<AUni ws="qvm-x-ach">mica</AUni> -<AUni ws="qvm-x-acl">mica</AUni> -<AUni ws="qvm-x-akh">mika</AUni> -<AUni ws="qvm-x-akl">mika</AUni> -<AUni ws="qvm-x-ame">mika</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="dfa32846-3f73-49cb-8953-22183587ad51"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">rikakatsipkun</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="dfa329b4-14bf-4f2d-a344-2927c638a951" ownerguid="bd8ec5d0-ba23-4a90-a75c-e7ff3c5718ca"> -<Form> -<AUni ws="qvm-x-ach">canta</AUni> -<AUni ws="qvm-x-acl">canta</AUni> -<AUni ws="qvm-x-akh">canta</AUni> -<AUni ws="qvm-x-akl">canta</AUni> -<AUni ws="qvm-x-ame">canta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="dfa3aab3-f8c5-420e-831b-dcd976926404" ownerguid="09d7ef9b-596d-4a68-b91d-e67fdaffa371"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cent</AUni> -<AUni ws="es">centavo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="11417b76-1ed9-42bb-88d9-e42b937a33df" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="dfa653d2-d36a-43bc-8bf8-86aa83aa42c6" ownerguid="f352a437-58f2-4920-aec3-eda8041f7447"> -<ExampleWords> -<AUni ws="en">first, the first time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words indicate that something happens or is done for the first time?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="dfa736a2-8ee9-4a12-b276-8f5cf6de2dd8"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">karqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="dfa8a832-cecf-40ee-adf0-52fca4ef2343" ownerguid="7fb6d72a-958e-4289-ab6d-e1e5a2a9c52e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chigoe</AUni> -<AUni ws="es">nigua</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="04b8c3f3-e3ae-4f78-a822-083575c91c39" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="dfa8e981-4df3-44c5-80f7-85999a9a66da" ownerguid="b5700ad7-36a1-4608-8789-8f84007244f8"> -<ExampleWords> -<AUni ws="en">get tired, tire, flag, run out of steam, burn out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to becoming tired?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="dfb0c136-def6-4f27-a95a-34cb45a37460" ownerguid="eaa2018f-d92a-440b-b5d7-9ac949f75f99"> -<Form> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">Faraón</Run> -</AStr> -</Form> -<Morph> -<objsur guid="cf05cc4c-2ad9-4593-a05d-5a5b78d01854" t="r" /> -</Morph> -<Msa> -<objsur guid="544259c0-a889-419a-8a2e-c0080a6f0496" t="r" /> -</Msa> -<Sense> -<objsur guid="a4a7e843-bc65-4bf6-99d6-d15a9abc8950" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="dfb4604b-ff50-4c33-bd39-623015506149" ownerguid="2c42f822-2079-440c-b3b7-7725b6a8db8b"> -<ExampleWords> -<AUni ws="en">brake, catch, skid</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What things are used to stop things?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="dfb96c36-e470-4ab7-b72c-75ea9c18d7c7" ownerguid="9cfb58a8-8ccb-4ad7-8ffe-8318781beeb9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pile</AUni> -<AUni ws="es">amontonar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="283ac82f-bbf3-4efd-a0bb-f45ab895903f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="dfba3cc2-724a-4d09-a5d2-87f565b35695" ownerguid="fe58ae61-ab0b-43a4-86fb-d9aedd199932"> -<ExampleWords> -<AUni ws="en">amalgamate, blend, combine, commingle, fuse, intermix, meld, merge, merger, unite</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to things mixing together?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="dfbae33d-76f4-4040-b7fc-484160957112" ownerguid="3022c764-ba88-41d0-94db-393312214f4e"> -<ExampleWords> -<AUni ws="en">property, wealth, riches, belongings, real estate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the things you own?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="dfbb1135-3552-4f84-8e4a-5f2ee2144bf3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mala:ya</AUni> -<AUni ws="qvm-x-acl">mala:ya</AUni> -<AUni ws="qvm-x-akh">mala:ya</AUni> -<AUni ws="qvm-x-akl">mala:ya</AUni> -<AUni ws="qvm-x-ame">mala:ya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*malla:ya</AUni> -<AUni ws="qvm-x-acl">*malla:ya</AUni> -<AUni ws="qvm-x-akh">*malla:ya</AUni> -<AUni ws="qvm-x-akl">*malla:ya</AUni> -<AUni ws="qvm-x-ame">*malla:ya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.285" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2828d9f1-32c1-4c69-8099-cba8f8e74ed8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*malla:ya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="57500890-a25b-4c8a-9287-eb4de22868d7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d092bbe6-57db-4c40-8b0d-02d9a45bf992" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *malla:ya 
\entryTyp root 
\gENG be.sad 
\gSPN tener.pena 
\e *malla:ya 
\c V1 
\ach mala:ya 
\akh mala:ya 
\acl mala:ya 
\akl mala:ya 
\ame mala:ya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="dfbc41a5-0023-4dd6-afec-860069cc40ac" ownerguid="2b6f9af7-04ee-4030-a2cd-87d55959caa8"> -<ExampleWords> -<AUni ws="en">phobia, have a phobia about, live in fear, dread (n), dread (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to feeling afraid for a long time?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="dfbcadfe-cfd9-444d-8d12-8e4e494eb6f9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nagatan</AUni> -<AUni ws="qvm-x-acl">nagatan</AUni> -<AUni ws="qvm-x-akh">naqatan</AUni> -<AUni ws="qvm-x-akl">naqatan</AUni> -<AUni ws="qvm-x-ame">naqatan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*naqatan</AUni> -<AUni ws="qvm-x-acl">*naqatan</AUni> -<AUni ws="qvm-x-akh">*naqatan</AUni> -<AUni ws="qvm-x-akl">*naqatan</AUni> -<AUni ws="qvm-x-ame">*naqatan</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.545" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="35191f11-7f54-4b5f-aa82-3ea5d0c9fcaf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*naqatan</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c6bcfa37-d847-4572-8e0f-d51a53411baf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="126e911d-4fb6-4d0e-bed7-003f4fc2200e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *naqatan 
\entryTyp root 
\gENG but 
\gSPN pero 
\e *naqatan 
\c NOSUFF 
\ach nagatan 
\akh naqatan 
\acl nagatan 
\akl naqatan 
\ame naqatan</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="dfbe4709-a405-40d4-b9d2-696318f82fb8" ownerguid="6f1b95a1-cd4a-4bb0-8335-c7abe824c37d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="dfbe68a6-2aab-466a-a09e-3a65ffc80d5c" ownerguid="e5a2589b-82cf-440a-a7f9-f546198f169b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ache</AUni> -<AUni ws="es">doler</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9c6f7f95-28ea-413e-b424-01bb57be222a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="dfc262ce-0c61-4e02-9ee7-6ce348c924de" ownerguid="42023b55-102a-4470-b229-d21ac3c08ec5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="dfc4cb14-2772-48c2-9c28-ca6af49cd78e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">taberna:culu</AUni> -<AUni ws="qvm-x-acl">taberna:culu; taberna:culu; taberna:culo</AUni> -<AUni ws="qvm-x-akh">taberna:culu</AUni> -<AUni ws="qvm-x-akl">taberna:culu; taberna:culu; taberna:culo</AUni> -<AUni ws="qvm-x-ame">taberna:culu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tabernáculo</AUni> -<AUni ws="qvm-x-acl">+tabernáculo</AUni> -<AUni ws="qvm-x-akh">+tabernáculo</AUni> -<AUni ws="qvm-x-akl">+tabernáculo</AUni> -<AUni ws="qvm-x-ame">+tabernáculo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.764" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7f6407b5-096f-4757-8ba9-1ffd8b6042c9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tabernáculo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ce99e4ce-2e96-462c-8cc9-f628652b9190" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="38d04e53-f4b8-4118-96bc-4f668ae65591" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tabernáculo 
\entryTyp root 
\gENG 
\gSPN 
\e +tabernáculo 
\c N0 
\ach taberna:culu 
\akh taberna:culu 
\acl taberna:culu / _# 
\acl taberna:culu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl taberna:culo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl taberna:culu / _# 
\akl taberna:culu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl taberna:culo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame taberna:culu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="dfc60eba-cdad-45f7-b17f-91dea6bc7dec" ownerguid="469846b5-c4d6-4062-996b-2ec2cbfc73dd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="dfc81541-5e5c-4762-8866-df778aa99da6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">miwa</AUni> -<AUni ws="qvm-x-acl">miwa</AUni> -<AUni ws="qvm-x-akh">miwa</AUni> -<AUni ws="qvm-x-akl">miwa</AUni> -<AUni ws="qvm-x-ame">miwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*miwa</AUni> -<AUni ws="qvm-x-acl">*miwa</AUni> -<AUni ws="qvm-x-akh">*miwa</AUni> -<AUni ws="qvm-x-akl">*miwa</AUni> -<AUni ws="qvm-x-ame">*miwa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.457" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4b4c8d58-1f10-4785-9ded-c5e863c77836" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*miwa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fafacfea-10ca-4ca7-b328-b05d0d1b8732" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="897b2047-8353-4040-8b19-e2d95b3c4506" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *miwa 
\entryTyp root 
\gENG seep 
\gSPN filtrar 
\e *miwa 
\c V1 
\ach miwa 
\akh miwa 
\acl miwa 
\akl miwa 
\ame miwa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="dfcbdc8c-5063-4617-b36a-58997e723ffa" ownerguid="4d798f5d-c10b-49ec-82fa-1669b68b2d93"> -<Form> -<AUni ws="qvm-x-ach">namura</AUni> -<AUni ws="qvm-x-acl">namura</AUni> -<AUni ws="qvm-x-akh">namura</AUni> -<AUni ws="qvm-x-akl">namura</AUni> -<AUni ws="qvm-x-ame">namura</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="dfcc41c6-a408-458f-97b5-9302e0e690aa" ownerguid="05472990-3f51-40b3-bca8-df3cf383328b"> -<ExampleWords> -<AUni ws="en">oratory, homiletics</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to knowing or learning how to give a good speech?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="dfce98a5-c7da-4cd4-b86f-fc6b163b929b" ownerguid="82e1df69-8c52-4ae1-ab94-efaf11bc9086"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="dfd21a22-9661-4d43-a474-44ba78dddaee" ownerguid="5e9f361d-17dc-4ada-a312-8da269d22a64"> -<ExampleWords> -<AUni ws="en">mammal, mammalian, animal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to mammals?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="dfd5223e-4ee7-43e2-a2e8-d6ea5dd49a9c" ownerguid="a3f1d702-8ca1-457a-a569-eb6fdf696bbe"> -<ExampleWords> -<AUni ws="en">be all for, be all in favor of, be a great believer in, be an advocate of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to approving of something very much?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="dfdb5f68-ba99-439d-a245-b57b84d41a1a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">abe:ja</AUni> -<AUni ws="qvm-x-acl">abe:ja</AUni> -<AUni ws="qvm-x-akh">abe:ja</AUni> -<AUni ws="qvm-x-akl">abe:ja</AUni> -<AUni ws="qvm-x-ame">abe:ja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+abeja</AUni> -<AUni ws="qvm-x-acl">+abeja</AUni> -<AUni ws="qvm-x-akh">+abeja</AUni> -<AUni ws="qvm-x-akl">+abeja</AUni> -<AUni ws="qvm-x-ame">+abeja</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.617" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="179cb963-6c60-4e9e-b72f-0da7aee01909" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+abeja</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d6338cd1-7059-4742-a5d8-164d1a6eb4f3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f7351359-f388-49d3-aeb3-bede91061a8f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +abeja 
\entryTyp root 
\gENG bee 
\gSPN abeja 
\e +abeja 
\c N0 
\ach abe:ja 
\akh abe:ja 
\acl abe:ja 
\akl abe:ja 
\ame abe:ja</Run> -</AStr> -</Custom> -</rt> -<rt class="Segment" guid="dfdce1cf-74e9-4e2e-9a59-93198ec6195e" ownerguid="b0b46a35-65fa-4b8d-9da6-7e95179ac2de"> -<Analyses> -<objsur guid="06186903-b34b-4504-b65b-c33af551cdab" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexSense" guid="dfdcec0f-ae95-4b61-9b07-007972752aa7" ownerguid="9d11c60d-9f91-4694-a4c6-a0b82a5f3182"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">indeed</AUni> -<AUni ws="es">claro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7e9ccad5-c72e-4755-928f-a401329470a4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="dfdcfa24-b013-4566-af4a-28ef1dfd4742" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<Abbreviation> -<AUni ws="en">8.2.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.599" /> -<DateModified val="2022-9-23 16:55:8.599" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to measuring something--to find out the size, length, weight, or amount of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>81 Spatial Dimensions; 81A Measure, To Measure; 6V Instruments for Measuring</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Measure</AUni> -</Name> -<OcmCodes> -<Uni>804 Weights and Measures</Uni> -</OcmCodes> -<Questions> -<objsur guid="2b0df007-f3b2-498b-8bf3-69e2a97d9ad6" t="o" /> -<objsur guid="b93ad229-dcef-4f70-8dc9-11183fbf8916" t="o" /> -<objsur guid="7ef6ec6b-08c1-41ec-a70f-898c569791d8" t="o" /> -<objsur guid="b96bd8fb-9640-4ce4-b35f-16b61e8898da" t="o" /> -<objsur guid="7f2a122c-5e42-490a-88ce-4476b566f0ca" t="o" /> -<objsur guid="e9b0e019-80c5-4d02-b6b5-d0aa6c9206e7" t="o" /> -<objsur guid="208266d2-32ea-40d4-9a2f-33f8ecd35555" t="o" /> -<objsur guid="98dff5f0-acd9-44a3-94f2-7a93970680f1" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="06cb2024-5f7b-467c-b32c-ef4c56030ac0" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="dfe007a4-f2c3-49c4-a95e-aec20dd84db1" ownerguid="2f196632-8bc5-4e81-b006-65e570981414"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="dfe3e2d6-4817-4180-8ce0-d5c64d902ca1" ownerguid="f3627c41-5daf-4f73-ac42-8a0522035e0b"> -<ExampleWords> -<AUni ws="en">poppy, pyrethrum, quinine, aloe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What plants are used as medicine?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="dfe59469-d1bf-4ed2-9faa-6d5af52eefdd" ownerguid="3fae9066-eb66-444e-bd41-818b9f7b3bae"> -<Abbreviation> -<AUni ws="en">7.5.9.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.549" /> -<DateModified val="2022-9-23 16:55:8.549" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to filling a container or covering an area with something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Fill, cover</AUni> -</Name> -<Questions> -<objsur guid="25860479-cf94-4e82-a8e9-6e27a33ff16a" t="o" /> -<objsur guid="af9d7430-c198-496d-9a80-c942040bb920" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="dfe694ec-fb1c-4c9e-889e-6312c7fdd54b" ownerguid="3a9da652-d75f-40dc-8b95-e314d9e38437"> -<Form> -<AUni ws="qvm-x-ach">carta</AUni> -<AUni ws="qvm-x-acl">carta</AUni> -<AUni ws="qvm-x-akh">carta</AUni> -<AUni ws="qvm-x-akl">carta</AUni> -<AUni ws="qvm-x-ame">carta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="dfeba437-d2d5-471f-b481-b4f48c973969" ownerguid="3ca10d5c-77d8-4b6c-8dad-a24807659aa6"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="dfec780e-c856-47f1-b21a-56c77a902ab4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">so:pa</AUni> -<AUni ws="qvm-x-acl">so:pa</AUni> -<AUni ws="qvm-x-akh">so:pa</AUni> -<AUni ws="qvm-x-akl">so:pa</AUni> -<AUni ws="qvm-x-ame">so:pa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sopa</AUni> -<AUni ws="qvm-x-acl">+sopa</AUni> -<AUni ws="qvm-x-akh">+sopa</AUni> -<AUni ws="qvm-x-akl">+sopa</AUni> -<AUni ws="qvm-x-ame">+sopa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.723" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d098182d-c7bc-4f9b-ba3a-39815aa09611" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sopa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a4fbee4d-e000-4601-ba8c-3cb120b03858" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f26df187-86ba-4632-93be-29bf7fe406df" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sopa 
\entryTyp root 
\gENG soup 
\gSPN sopa 
\e +sopa 
\c N0 
\ach so:pa 
\akh so:pa 
\acl so:pa 
\akl so:pa 
\ame so:pa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="dfed3b35-ed0d-4011-ae1f-42f06888ce4b" ownerguid="50903b35-5606-4727-8474-01c06bf588da"> -<ExampleWords> -<AUni ws="en">frame, siding, insulation, arch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the parts of a wall?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="dff03b86-9d10-486f-a7b0-b56d5a31840a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waja</AUni> -<AUni ws="qvm-x-acl">waja</AUni> -<AUni ws="qvm-x-akh">waja</AUni> -<AUni ws="qvm-x-akl">waja</AUni> -<AUni ws="qvm-x-ame">waha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waha</AUni> -<AUni ws="qvm-x-acl">*waha</AUni> -<AUni ws="qvm-x-akh">*waha</AUni> -<AUni ws="qvm-x-akl">*waha</AUni> -<AUni ws="qvm-x-ame">*waha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.434" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3a378bb9-9772-4735-ba41-77fba8f2d53b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="614cdcda-2683-4984-86f9-2c297a3110fd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7e064426-9e70-4ae8-8f95-2245e17cfafa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waha 
\entryTyp root 
\gENG shoo 
\gSPN echar? 
\e *waha 
\c V2 
\ach waja 
\akh waja 
\acl waja 
\akl waja 
\ame waha</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="dff22876-50cc-417e-a7a5-87687e0aedbc"> -<Analyses> -<objsur guid="6e240b2c-56a6-4f86-878d-b4d39954184d" t="o" /> -</Analyses> -<Checksum val="1483043315" /> -<Form> -<AUni ws="qvm-x-akh">witsanmi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="dff2a4b5-e1da-4259-86c4-9c7f988f8db5" ownerguid="6745c89d-1fcd-44b8-be4b-9fd9d62f64e7"> -<ExampleWords> -<AUni ws="en">recreational activity, amusement, competition, recreation, leisure, play, hobby, distraction, diversion, entertainment, frolic, fun, merriment, pastime, revelry, romp, shindig</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to things people do for fun?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="dff5de25-2157-4449-9c71-38bdc9ac5cd3"> -<Form> -<Str> -<Run ws="en">13</Run> -</Str> -</Form> -</rt> -<rt class="MoStemMsa" guid="dff89f9a-c9f1-4975-b330-ef01f63e4aa0" ownerguid="cac547d7-0905-4cca-971e-dbcc9c0c692b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="dffa4b73-8401-407b-bb50-61ccc2b04a6d" ownerguid="e637a0ba-c46e-4229-b210-cfadf389a162"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">become.late</AUni> -<AUni ws="es">ser.atrasado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="841208c8-ce30-4629-9964-7990f30a2c9f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="e0002e64-1c74-45c6-aa74-5295d91f42e6" ownerguid="fa00767d-6df9-4d87-a2aa-a0674182edc1"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e00a9b1b-6e21-4d02-b2c1-46ae0bac62b1" ownerguid="f3364eb3-dbb7-406a-a270-0d39b87a28fd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="dcaecd56-8018-451d-badc-d3f4cfb98b69" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e00c030f-496e-4934-9d12-5def7f9d3eea" ownerguid="fba27833-d6f1-4c36-ac39-28902b29261b"> -<ExampleWords> -<AUni ws="en">look-alike, double</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to someone who looks like another person?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e00d6de6-3b0b-448c-b96a-f4b02749e50a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shaywa</AUni> -<AUni ws="qvm-x-acl">shaywa</AUni> -<AUni ws="qvm-x-akh">shaywa</AUni> -<AUni ws="qvm-x-akl">shaywa</AUni> -<AUni ws="qvm-x-ame">shaywa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shaywa</AUni> -<AUni ws="qvm-x-acl">*shaywa</AUni> -<AUni ws="qvm-x-akh">*shaywa</AUni> -<AUni ws="qvm-x-akl">*shaywa</AUni> -<AUni ws="qvm-x-ame">*shaywa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.561" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="103805a1-7b25-4108-b654-3ade86ba6f26" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shaywa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ca9ed54e-e431-4020-b55b-544ef6025da6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="55a73fd6-d5db-44de-9582-f5ba41cf0acb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shaywa 
\entryTyp root 
\gENG long.rock 
\gSPN roca.larga 
\e *shaywa 
\c N0 
\ach shaywa 
\akh shaywa 
\acl shaywa 
\akl shaywa 
\ame shaywa</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="e00ed7a5-6a96-419a-9e13-2e7d2477eb8b"> -<Analyses> -<objsur guid="85d0d551-4d20-4930-86d7-84fe189fcc96" t="o" /> -</Analyses> -<Checksum val="1089574381" /> -<Form> -<AUni ws="qvm-x-akh">wawankunami</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="e00feb2a-424b-4f87-8a9a-cadfbf393bf8" ownerguid="d0b14231-1471-41b3-aeb5-69199acaaefb"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John recovered the use of his leg <in> stages.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate the way in which something happened?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="e00ffcd7-c6bc-463c-8116-9da90e825e34"> -<Analyses> -<objsur guid="4222d48d-05d3-4c82-91ef-90561c9d2a83" t="o" /> -<objsur guid="98d8ed5b-9b34-4d7c-abba-0303dc28b6d5" t="o" /> -</Analyses> -<Checksum val="-1192325151" /> -<Form> -<AUni ws="qvm-x-akh">tsakay</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="e0182458-be17-4bc7-8316-38ab7b7aa4e7" ownerguid="b133daae-24b4-4145-9783-83d68c46c023"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">break.in</AUni> -<AUni ws="es">probar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="80c4c8bb-9a15-4256-a0a0-82127467a2dd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e01c0c10-922b-4c10-90d2-1d69bb38dc40" ownerguid="fd33670e-ef16-4566-a62e-aa077e58407b"> -<ExampleWords> -<AUni ws="en">buzz, hum, whirr, whine, bleep, roar, tick</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(21) What words refer to the sound of a machine?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e01cf142-4c56-470d-84ec-c27f93e0ba0c" ownerguid="caf7c146-f61c-4d13-a5bd-c89f537b6682"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stand</AUni> -<AUni ws="es">parar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c5ab4678-381a-46cf-ae87-843209cda10c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e01ef169-72e2-4610-8935-af448a252c41" ownerguid="f899802d-bd32-427f-a101-c84219f7e14e"> -<ExampleWords> -<AUni ws="en">chemistry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the study of matter?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e021830e-b644-4e1b-a723-40d3f643ba66"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gorma; gorma:</AUni> -<AUni ws="qvm-x-acl">gorma; gorma:</AUni> -<AUni ws="qvm-x-akh">qorma; qorma:</AUni> -<AUni ws="qvm-x-akl">qorma; qorma:</AUni> -<AUni ws="qvm-x-ame">qurma; qurma:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qurma:</AUni> -<AUni ws="qvm-x-acl">*qurma:</AUni> -<AUni ws="qvm-x-akh">*qurma:</AUni> -<AUni ws="qvm-x-akl">*qurma:</AUni> -<AUni ws="qvm-x-ame">*qurma:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.871" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fd4f6f27-289b-435c-a4cb-b08f10c99136" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qurma:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bec05bbc-48b0-4d8d-99c5-5d5f59af9369" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4e5c51a2-d42f-4af1-91bd-ab75fc29b6f7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qurma: 
\entryTyp root 
\gENG 
\gSPN 
\e *qurma: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach gorma foreshortened 
\ach gorma: 
\akh qorma foreshortened 
\akh qorma: 
\acl gorma foreshortened 
\acl gorma: 
\akl qorma foreshortened 
\akl qorma: 
\ame qurma foreshortened 
\ame qurma:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e021c594-94b7-4b44-8de7-8577d9997dcd" ownerguid="be89e0ba-4c6a-4986-ac0d-859a901b89a1"> -<ExampleWords> -<AUni ws="en">image, conception, conceptualization, creation, daydream (n), dream, fancy, flight of fancy, fantasy, fiction, figment of your imagination, hallucination, hypothesis, invention, make believe, picture, unreality, vision, visualization</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to something that someone imagines?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e02318e6-e2dd-4c67-9e48-2eba4002f466" ownerguid="22acd714-b11e-462a-bd8e-6ff50843c103"> -<ExampleWords> -<AUni ws="en">structure, section, part, wing, rotunda, pillar, column, arch, archway, tower, foundation, floor, roof, room, wall, door, window, entrance, exit, passage, hall, corridor, courtyard</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the parts of a building?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e027610f-39e8-4f86-a7ba-d7dd744a0e9f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rama</AUni> -<AUni ws="qvm-x-acl">rama</AUni> -<AUni ws="qvm-x-akh">rama</AUni> -<AUni ws="qvm-x-akl">rama</AUni> -<AUni ws="qvm-x-ame">rama</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rama</AUni> -<AUni ws="qvm-x-acl">*rama</AUni> -<AUni ws="qvm-x-akh">*rama</AUni> -<AUni ws="qvm-x-akl">*rama</AUni> -<AUni ws="qvm-x-ame">*rama</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.246" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="03988d46-4ea9-46e0-bf11-9aed80b2613e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rama</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c7a204e6-2222-4231-804a-927b824baf52" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="754103bd-8d98-44ac-915e-97e40e796ce3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rama 
\entryTyp root 
\gENG ? 
\gSPN ? 
\e *rama 
\c ONSHEV 
\ach rama 
\akh rama 
\acl rama 
\akl rama 
\ame rama 
\i SAN MARCOS 8.24 Tsauraga gapra rama ramala ricar nergan: <<Au, ricänami rama ramalaga runacunata yöracunanog caycagta. Itsanga purircaycanmi.>></Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="e029ec88-2772-4fd1-a792-3dd4fe05df28" ownerguid="cbf21710-d2f3-4284-ae07-9a3635ccde6b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e02ae925-29c3-4689-a87c-4a244065395f" ownerguid="96acc3dd-e9c4-41a5-a3f2-a111271bfe84"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ball</AUni> -<AUni ws="es">pelota</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ec54e917-bade-4172-89b6-0145874da5dd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="e02c868f-bdeb-48ac-8e95-edd2272d46f2" ownerguid="fb9fb454-1893-41f8-97ef-095928c402b4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e02d0557-dc7f-4b23-973f-c6279fcb6035" ownerguid="d98c1c67-b70e-4a35-89db-2e744bd5197f"> -<ExampleWords> -<AUni ws="en">feature, scalp, back of the head, chin, temple, poll, skull, brain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the parts of the head?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e02dbbc7-c829-4f7c-8efb-cc23aac803ed" ownerguid="d2f05cc8-1a3f-4bc2-9a2b-38174bb84091"> -<ExampleWords> -<AUni ws="en">mute, dumb person</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who cannot speak?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e02e298e-ad6b-444b-a842-4674cb0d1668" ownerguid="cfda2dd1-184c-4b49-b95a-a412bdf5b542"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">round</AUni> -<AUni ws="es">redondo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aa8dfd98-df13-4168-a30a-7fe16c13c30e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e02e7419-3e92-4a91-931a-9a02be601ad3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tranca</AUni> -<AUni ws="qvm-x-acl">tranca</AUni> -<AUni ws="qvm-x-akh">tranca</AUni> -<AUni ws="qvm-x-akl">tranca</AUni> -<AUni ws="qvm-x-ame">tranca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tranca</AUni> -<AUni ws="qvm-x-acl">+tranca</AUni> -<AUni ws="qvm-x-akh">+tranca</AUni> -<AUni ws="qvm-x-akl">+tranca</AUni> -<AUni ws="qvm-x-ame">+tranca</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.58" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e53bdc2a-4ca0-4c36-9535-5f7805e885ce" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tranca</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fc27c166-2481-4d66-8dcb-b6af9c8de391" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a970105b-3d86-4977-9ab9-355bea8b8a67" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tranca 
\entryTyp root 
\gENG 
\gSPN 
\e +tranca 
\c N0 
\ach tranca 
\akh tranca 
\acl tranca 
\akl tranca 
\ame tranca</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e03186a2-7e77-4563-8af7-bed9d17170c5" ownerguid="93757be7-a56b-401d-a711-9fec677293d2"> -<Form> -<AUni ws="qvm-x-ach">patsa</AUni> -<AUni ws="qvm-x-acl">patsa</AUni> -<AUni ws="qvm-x-akh">patsa</AUni> -<AUni ws="qvm-x-akl">patsa</AUni> -<AUni ws="qvm-x-ame">patsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="e031f069-255a-47c4-b038-8e644dee0221" ownerguid="246e3ff5-6b51-4366-b84b-138037e2e923"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="e03360d9-6efa-4ad6-a429-01c4ba13c696" ownerguid="38af7490-8810-4d18-9761-ca6266fe5b9d"> -<Form> -<AUni ws="qvm-x-ach">walga</AUni> -<AUni ws="qvm-x-acl">walga</AUni> -<AUni ws="qvm-x-akh">walqa</AUni> -<AUni ws="qvm-x-akl">walqa</AUni> -<AUni ws="qvm-x-ame">walqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="e033ca92-ee8c-4ab9-9368-5f6f4e942987" ownerguid="ec1bcace-fc10-45df-8e1f-29bce1ef786a"> -<Abbreviation> -<AUni ws="en">3.5.1.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.162" /> -<DateModified val="2022-9-23 16:55:8.162" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to contacting someone--to communicate with someone who is far away from you using some communication device such as a telephone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33C' Call</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Contact</AUni> -</Name> -<Questions> -<objsur guid="e0863f44-2a4d-40f1-aec7-cc5f6b489a70" t="o" /> -<objsur guid="b6a2403e-5b9e-4d1b-9c31-7dc42531ffd1" t="o" /> -<objsur guid="799567d6-daa8-44d7-a576-8078f23aadd2" t="o" /> -<objsur guid="25fda56f-f556-498e-929e-82f255c12692" t="o" /> -<objsur guid="dd8fe30c-4c12-4fa0-bef2-c82270ef9624" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="e0362ccd-f1ef-49c5-9619-859b378dcf77" ownerguid="a58ea2af-a2aa-47ee-b94b-3716e9bb76d0"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e037dbd3-9da7-42b2-b9ef-78fd57fdb3eb" ownerguid="40590157-9412-4558-b0f7-311867b649cc"> -<ExampleWords> -<AUni ws="en">wind, coil, curl, loop, roll, spin, twirl, twist, whirl</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to winding something around another thing?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e03998cf-0b4d-49ea-b9a8-15a3e3ca2c81"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">peor</AUni> -<AUni ws="qvm-x-acl">peor</AUni> -<AUni ws="qvm-x-akh">peor</AUni> -<AUni ws="qvm-x-akl">peor</AUni> -<AUni ws="qvm-x-ame">peor</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+peor</AUni> -<AUni ws="qvm-x-acl">+peor</AUni> -<AUni ws="qvm-x-akh">+peor</AUni> -<AUni ws="qvm-x-akl">+peor</AUni> -<AUni ws="qvm-x-ame">+peor</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.790" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bf12cbfa-a6bf-476e-bf3a-ca38e159a523" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+peor</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b1bdfbba-bc97-4a7b-93c3-2dd9ae94b147" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e1ba9857-3841-4b31-9233-f4fbc38df1bb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +peor 
\entryTyp root 
\gENG worse 
\gSPN peor 
\e +peor 
\c N0 
\mp +FinalC 
\ach peor 
\akh peor 
\acl peor 
\akl peor 
\ame peor</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="e03ac9db-6156-4002-888a-6f359a2e34e2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cadina</AUni> -<AUni ws="qvm-x-acl">cadina</AUni> -<AUni ws="qvm-x-akh">cadina</AUni> -<AUni ws="qvm-x-akl">cadina</AUni> -<AUni ws="qvm-x-ame">cadina</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cadena</AUni> -<AUni ws="qvm-x-acl">+cadena</AUni> -<AUni ws="qvm-x-akh">+cadena</AUni> -<AUni ws="qvm-x-akl">+cadena</AUni> -<AUni ws="qvm-x-ame">+cadena</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.11" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fdc0fd56-75aa-40d1-b6f6-76c646db72e8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cadena</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4727f364-e9f6-468c-8d13-625a7b94a928" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="888bad11-6725-4c8f-989e-3b365cd8b6cd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cadena 
\entryTyp root 
\gENG chain 
\gSPN cadena 
\e +cadena 
\c N0 
\ach cadina 
\akh cadina 
\acl cadina 
\akl cadina 
\ame cadina 
\mcc +cadena / ~_ PRT1</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e03c2955-2853-4f61-aba8-b026890814f3" ownerguid="b14db9f4-5e1d-4a2b-bec0-0d6bcb5b1a31"> -<ExampleWords> -<AUni ws="en">knock over, upset, tip over, overturn</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to causing something to fall?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e03c4c2c-05b2-4781-b433-4e74db37d242" ownerguid="32bebe7e-bdcc-4e40-8f0a-894cd6b26f25"> -<ExampleWords> -<AUni ws="en">glowing, be the picture of health, healthy-looking</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who looks healthy?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="e03c889b-8368-4d9f-aac6-5cd3a43b01ca" ownerguid="0431f1b3-286b-4786-94f5-a19c2cd86c17"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="41d604dc-7c66-458c-a6fe-deff9c5db5d3" t="o" /> -<objsur guid="e4a83566-d686-427a-9e47-bcff4dea7cb4" t="o" /> -<objsur guid="aa7d566d-d0eb-4741-95e5-2658bb778e08" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="e03e32e1-edc9-4e21-824a-7c223f80133e" ownerguid="2c42f822-2079-440c-b3b7-7725b6a8db8b"> -<ExampleWords> -<AUni ws="en">stop, come to rest, halt, come to a screeching halt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words (intransitive verbs) indicate that something has ended?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e03feeec-b703-4450-a9cc-12a571e2cfad" ownerguid="1b6b0c12-9ecd-45cb-bb0e-0dadb435eddf"> -<ExampleWords> -<AUni ws="en">hundreds of, thousands of, millions of, a great many, countless, innumerable, overwhelming, myriad</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that there are a very large number of things or people?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e040d7b7-1fec-44ef-ae8e-0ae3f219bc2a" ownerguid="87eb572c-bae2-45d8-a36a-919561b55d0d"> -<ExampleWords> -<AUni ws="en">huge, large, crowded</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a crowd?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e04433ab-790a-4358-85f4-284024c8e8b7" ownerguid="6aa8133a-2578-4617-bd9c-6428e897a4f1"> -<ExampleWords> -<AUni ws="en">break a contract, nullify</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to breaking a contract?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e0462bde-bb52-4cd0-a8d1-4db77a752426"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">para</AUni> -<AUni ws="qvm-x-acl">para</AUni> -<AUni ws="qvm-x-akh">para</AUni> -<AUni ws="qvm-x-akl">para</AUni> -<AUni ws="qvm-x-ame">para</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+para</AUni> -<AUni ws="qvm-x-acl">+para</AUni> -<AUni ws="qvm-x-akh">+para</AUni> -<AUni ws="qvm-x-akl">+para</AUni> -<AUni ws="qvm-x-ame">+para</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.709" /> -<DateModified val="2022-10-10 21:19:47.692" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d5820d0b-ee0a-408f-aa44-8aad8982d57a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+para</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e19812eb-e4a3-4ac7-9ac0-5bd0d2ef3828" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e68d3525-8a81-435d-9a9d-96cd4f923b97" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +para 
\entryTyp root 
\gENG for 
\gSPN 
\e +para 
\c NOSUFF 
\ach para 
\akh para 
\acl para 
\akl para 
\ame para</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e04b00b6-2125-4e2f-8bf7-703abbcfba85" ownerguid="6709cc78-cb0b-493e-b3e6-8590a2f20c95"> -<ExampleWords> -<AUni ws="en">encounter, meet, run into, run across, cross paths, happen to see</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to meeting someone when you did not intend to?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e04b105d-9953-440d-8bc8-dca94eec22df"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">campeador</AUni> -<AUni ws="qvm-x-acl">campeador</AUni> -<AUni ws="qvm-x-akh">campeador</AUni> -<AUni ws="qvm-x-akl">campeador</AUni> -<AUni ws="qvm-x-ame">campeador</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+campeador</AUni> -<AUni ws="qvm-x-acl">+campeador</AUni> -<AUni ws="qvm-x-akh">+campeador</AUni> -<AUni ws="qvm-x-akl">+campeador</AUni> -<AUni ws="qvm-x-ame">+campeador</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.31" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="77bbd757-41b3-4119-9dd9-1b07c5c135b3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+campeador</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5b0843d6-bd2e-400c-ae0a-9e277a95ba9e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="45d0ff9b-a112-4b0b-bfe1-865035b32cbb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +campeador 
\entryTyp root 
\gENG warrior 
\gSPN campeador 
\e +campeador 
\c N0 
\mp +FinalC 
\ach campeador 
\akh campeador 
\acl campeador 
\akl campeador 
\ame campeador</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e04fc905-996e-476c-aa1f-6d287ea9bf21" ownerguid="4d92f3ec-8a5d-4468-84c0-01ae89ab3ca9"> -<Form> -<AUni ws="qvm-x-ach">rogu</AUni> -<AUni ws="qvm-x-acl">rogu; rogo</AUni> -<AUni ws="qvm-x-akh">roqu</AUni> -<AUni ws="qvm-x-akl">roqu; roqo</AUni> -<AUni ws="qvm-x-ame">ruqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="e0524f38-9dee-4a59-8772-fdcf4b0956e6" ownerguid="1a8c6355-0d9f-49a3-80f0-ce26cc0b204e"> -<Form> -<AUni ws="qvm-x-ach">churcu</AUni> -<AUni ws="qvm-x-acl">churcu; churco</AUni> -<AUni ws="qvm-x-akh">churku</AUni> -<AUni ws="qvm-x-akl">churku; churko</AUni> -<AUni ws="qvm-x-ame">churku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e055c461-eff7-4732-93f9-ccb3ce04e0c9" ownerguid="b33da469-fefa-44f3-b35c-d70411bfe7e1"> -<ExampleWords> -<AUni ws="en">guild, trade association, chamber of commerce</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to an organization of sellers?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e05c7ce2-a4b7-4911-9b51-d7c8c1c16ebd" ownerguid="662cbcbc-a71e-4251-aca6-0cb1db47de9d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.same</AUni> -<AUni ws="es">igualar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="34e5a15c-2ba6-45ca-8f54-d35db9d3c3a8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e05ce40f-0ac9-4a14-b72f-81048d691d44" ownerguid="dc177f3c-d0fd-4232-adf1-a77b339cdbb2"> -<ExampleWords> -<AUni ws="en">police station, jail, prison, jailhouse, cell</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What kinds of buildings are used by the police?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e0604945-661e-4424-bcc4-dcd5acb454d4" ownerguid="d7d39e2b-5ca5-4783-b4f2-f4e315d0ab9c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e0657c44-7fed-4604-8196-6f3aa01eee03" ownerguid="2d82a268-ad4b-4c6f-b1f2-0d79d4daa4f8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be</AUni> -<AUni ws="es">ser</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d3b5839a-9f79-4b2d-96b3-8cee7717866b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e069bd62-eb39-49ff-b97a-8a16048c560b" ownerguid="14e5a753-b44a-4eda-bef6-da47add5e658"> -<Form> -<AUni ws="qvm-x-ach">shasha</AUni> -<AUni ws="qvm-x-acl">shasha</AUni> -<AUni ws="qvm-x-akh">shasha</AUni> -<AUni ws="qvm-x-akl">shasha</AUni> -<AUni ws="qvm-x-ame">shasha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e06bb1df-e8ab-4281-a996-7cf6986afc4c" ownerguid="5dd8f103-f04d-46be-903a-68f6d728e511"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sliver</AUni> -<AUni ws="es">espina</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bd10aab8-649d-4a40-aea3-ecf9feefc336" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e07263d6-417e-4bd5-b767-0668907a5b2e" ownerguid="dcd450eb-28be-4834-9ab6-ae58b1827137"> -<Form> -<AUni ws="qvm-x-ach">batallón; batallon</AUni> -<AUni ws="qvm-x-acl">batallón; batallon</AUni> -<AUni ws="qvm-x-akh">batallón; batallon</AUni> -<AUni ws="qvm-x-akl">batallón; batallon</AUni> -<AUni ws="qvm-x-ame">batallón; batallon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="e072bd42-eb0f-48c8-97fd-ae9ca8bc3a75" ownerguid="55201761-fe2e-40d5-a2a7-8079e00a2c32"> -<Abbreviation> -<AUni ws="en">4.8.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.276" /> -<DateModified val="2022-9-23 16:55:8.276" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to fighting for something good.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Fight for something good</AUni> -</Name> -<Questions> -<objsur guid="f1e30172-5720-47d4-a2a3-a8d07f1ccce9" t="o" /> -<objsur guid="be27fc7d-94e6-489a-a2d4-327375ee095d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="e07600af-29a4-40e9-b045-93e294291d25" ownerguid="01d33cfd-73ef-49be-9d53-afbe43b0d724"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="39f97d87-a106-4037-a51d-4e089d34ece4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e07b7eb8-92ea-4eb1-80f4-18c842018041" ownerguid="bc402db4-d50d-4462-8b6b-c4ef65c780a8"> -<Form> -<AUni ws="qvm-x-ach">agenti; agente</AUni> -<AUni ws="qvm-x-acl">agenti; agenti; agente</AUni> -<AUni ws="qvm-x-akh">agenti; agente</AUni> -<AUni ws="qvm-x-akl">agenti; agenti; agente</AUni> -<AUni ws="qvm-x-ame">agenti; agente</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e0805071-b345-4f88-975e-71d2e1f582bd" ownerguid="20baa5e7-4f02-4782-a292-c6281d7b5f3a"> -<ExampleWords> -<AUni ws="en">push aside, push out of the way</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to pushing something in some direction?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="e080687b-0900-4dd0-9677-e3aaa3eae641" ownerguid="e45b8bac-9623-4f84-a113-9dec13a8db64"> -<Abbreviation> -<AUni ws="en">3.5.1.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to explaining something--to help someone to understand something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Explain</AUni> -</Name> -<Questions> -<objsur guid="42dae6b6-3cee-497c-89b1-fece3a248d38" t="o" /> -<objsur guid="ab5c3d34-5052-4f6c-b937-25823f19b4d0" t="o" /> -<objsur guid="9e8e260a-7391-460a-97f8-653b1540d576" t="o" /> -<objsur guid="d40750c2-d610-4c80-93d0-a7fe7e37cdfd" t="o" /> -<objsur guid="c5d947b3-b950-4af6-9f3c-4b8f487fa92c" t="o" /> -<objsur guid="f4a99aec-0ddc-440a-a88b-c19d2f74334b" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="6137239a-b469-46be-b7cb-b9ac22fcc195" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="e0817e35-4d79-4bdf-907e-0d1d3e5464be" ownerguid="3f5a2f9c-b293-482d-9d11-2f316b553459"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="d4df797c-5b5f-4f3a-90fd-b637476ea439" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">cold</AUni> -<AUni ws="es">gripe</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a8f0dcf9-f674-426e-9f78-f626cd137032" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e082b650-7c27-487d-bde3-ced826ef84e5" ownerguid="d502512c-966b-4752-8636-716fb29facfe"> -<ExampleWords> -<AUni ws="en">sleep well, sleep peacefully</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used of a good sleep?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e084c12e-7e1d-4e94-b199-1ab7f69a62c9" ownerguid="eed8d3b5-ed51-4f52-9080-e3c7b4a39222"> -<Form> -<AUni ws="qvm-x-ach">turwata; turwatä</AUni> -<AUni ws="qvm-x-acl">turwata; turwatä</AUni> -<AUni ws="qvm-x-akh">turwata; turwatä</AUni> -<AUni ws="qvm-x-akl">turwata; turwatä</AUni> -<AUni ws="qvm-x-ame">turwata; turwatä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e0863f44-2a4d-40f1-aec7-cc5f6b489a70" ownerguid="e033ca92-ee8c-4ab9-9368-5f6f4e942987"> -<ExampleWords> -<AUni ws="en">get in touch with, contact, make contact with, approach, get onto</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to contacting someone?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e086ff1a-7212-4c35-b8fd-daf2d211ef0a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">prohibi</AUni> -<AUni ws="qvm-x-acl">prohibi; prohibe</AUni> -<AUni ws="qvm-x-akh">prohibi</AUni> -<AUni ws="qvm-x-akl">prohibi; prohibe</AUni> -<AUni ws="qvm-x-ame">prohibi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+prohibir</AUni> -<AUni ws="qvm-x-acl">+prohibir</AUni> -<AUni ws="qvm-x-akh">+prohibir</AUni> -<AUni ws="qvm-x-akl">+prohibir</AUni> -<AUni ws="qvm-x-ame">+prohibir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.945" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="85e94845-359e-4f06-a8ea-4a15699c34b4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+prohibir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="42d34e5b-96b3-4745-a9a1-f8fef237f0c2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7b1a11c2-1602-4fa1-9736-4ec140646a5e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +prohibir 
\entryTyp root 
\gENG prohibit 
\gSPN prohibir 
\e +prohibir 
\c V2 
\mp +FinalI 
\ach prohibi 
\akh prohibi 
\acl prohibi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl prohibe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl prohibi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl prohibe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame prohibi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="e087f00c-9a8c-415b-ab2c-368083838183"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">galsa</AUni> -<AUni ws="qvm-x-acl">galsa</AUni> -<AUni ws="qvm-x-akh">qalsa</AUni> -<AUni ws="qvm-x-akl">qalsa</AUni> -<AUni ws="qvm-x-ame">qalsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qallsa</AUni> -<AUni ws="qvm-x-acl">*qallsa</AUni> -<AUni ws="qvm-x-akh">*qallsa</AUni> -<AUni ws="qvm-x-akl">*qallsa</AUni> -<AUni ws="qvm-x-ame">*qallsa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.74" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9437be78-c933-416a-9330-923ff45aa0dc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qallsa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cc18a69b-06f9-420a-859b-cf69fb23f67b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="45900a7b-693d-4dd4-b12a-43061759f432" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qallsa 
\entryTyp root 
\gENG blade 
\gSPN hoja 
\e *qallsa 
\c N0 
\ach galsa 
\akh qalsa 
\acl galsa 
\akl qalsa 
\ame qalsa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e0880af9-a3d2-4205-87a2-49a5ee2c44e0" ownerguid="ca752706-1c9e-43e7-bd17-845c4736ccd8"> -<ExampleWords> -<AUni ws="en">or so, odd, or more, at least, and maybe more, barely, hardly, little more than, scarcely</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate an approximate number when the actual number is possibly more?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="e0880b58-248f-4071-b5b8-bca868871a72" ownerguid="0162121f-fea0-47af-bd06-d2b5a0609cab"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="faa8313a-9a4a-401f-8b97-4154b3b1ee61" t="o" /> -<objsur guid="6df253f0-803f-4744-a228-9e37f4ef81f1" t="o" /> -<objsur guid="d8a6ec64-b222-4ca9-9a47-5779e31a5932" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="e08a1139-d1dd-4b88-9774-f18d7a01daeb" ownerguid="c5f78084-f48c-4610-b101-af68b8ee5bac"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="d198e68d-2f11-4047-b4bd-8cb27caa5a8f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="e08a40b6-834b-448b-8103-5a8ab8af65c4" ownerguid="4a0669d9-38b7-4482-95ce-8b4a229bab19"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="e08e252a-9227-42e4-bcb8-b803d25071b6" ownerguid="da39c0d9-a5c1-4f10-bd3b-4e988abcab5a"> -<Abbreviation> -<AUni ws="en">3.4.2.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.143" /> -<DateModified val="2022-9-23 16:55:8.143" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling embarrassed--to feel bad in front of other people because you did or said something that makes you seem stupid.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Embarrassed</AUni> -</Name> -<Questions> -<objsur guid="40899de2-ccdc-4e66-a358-5a9a54743ff4" t="o" /> -<objsur guid="8d84d7bb-d81a-4989-8e40-453a59d0c0eb" t="o" /> -<objsur guid="ce32834e-9036-471e-be33-dff3ae5aefcc" t="o" /> -<objsur guid="43169400-179f-482c-bda2-b2c3b28273f0" t="o" /> -<objsur guid="7c077333-c951-4ee8-b5d5-fc51a9b153b4" t="o" /> -<objsur guid="5d7831a8-a970-4e8d-bebf-256ed17a7edd" t="o" /> -<objsur guid="6d0401c9-f87b-4920-8d28-8b8ab78fb1c6" t="o" /> -<objsur guid="717ceb4b-4d02-4965-9358-047583f156e1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="e08e3a59-849d-4fcd-bfb6-39857aef7497" ownerguid="6430b89c-7077-418a-a558-51f0e3f2c1a6"> -<ExampleWords> -<AUni ws="en">load, burden, armful</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something that is carried?</AUni> -</Question> -</rt> -<rt class="MoInflAffMsa" guid="e08edebb-ad33-475b-bbae-8a45668c8c12" ownerguid="6f011005-9763-4284-9571-90529febecf7"> -<PartOfSpeech> -<objsur guid="85ffb381-0567-4202-8640-53cbaec77e45" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="769c8d34-7ae5-450b-9e9b-f62d75e5f18a" t="r" /> -</Slots> -</rt> -<rt class="MoStemAllomorph" guid="e0900cc4-690e-472e-ba05-fd08aa980c15" ownerguid="d16e4de3-696d-4414-82cf-fec2568fefeb"> -<Form> -<AUni ws="qvm-x-ach">arcïlla</AUni> -<AUni ws="qvm-x-acl">arcïlla</AUni> -<AUni ws="qvm-x-akh">arcïlla</AUni> -<AUni ws="qvm-x-akl">arcïlla</AUni> -<AUni ws="qvm-x-ame">arcïlla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="e090c1bc-03ec-4c35-b095-b6bcaf4090a6" ownerguid="ab51c84c-2279-4a97-bee9-8b13c254637d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e094e28b-1468-49dd-a341-880222abec52"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">su:da</AUni> -<AUni ws="qvm-x-acl">su:da</AUni> -<AUni ws="qvm-x-akh">su:da</AUni> -<AUni ws="qvm-x-akl">su:da</AUni> -<AUni ws="qvm-x-ame">su:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sudar</AUni> -<AUni ws="qvm-x-acl">+sudar</AUni> -<AUni ws="qvm-x-akh">+sudar</AUni> -<AUni ws="qvm-x-akl">+sudar</AUni> -<AUni ws="qvm-x-ame">+sudar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.733" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b92101c0-f16f-4696-8d2f-62d2fd85f198" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sudar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="93225ae4-699c-4c03-89ef-d98110f53364" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="485f8193-6d38-4430-8724-b9c74317cd99" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sudar 
\entryTyp root 
\gENG to.sweat 
\gSPN sudar 
\e +sudar 
\c V1 
\ach su:da 
\akh su:da 
\acl su:da 
\akl su:da 
\ame su:da</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="e0959576-1ac4-4900-8cec-cbf47580cd59"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">agostu; agosto</AUni> -<AUni ws="qvm-x-acl">agostu; agostu; agosto</AUni> -<AUni ws="qvm-x-akh">agostu; agosto</AUni> -<AUni ws="qvm-x-akl">agostu; agostu; agosto</AUni> -<AUni ws="qvm-x-ame">agostu; agosto</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+agosto</AUni> -<AUni ws="qvm-x-acl">+agosto</AUni> -<AUni ws="qvm-x-akh">+agosto</AUni> -<AUni ws="qvm-x-akl">+agosto</AUni> -<AUni ws="qvm-x-ame">+agosto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.659" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aea7518d-e26a-4325-8aef-f08e1da18ad0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+agosto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="276b5d68-0839-45da-93fa-b8d604b80136" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="86953b18-a9c8-4c24-a9dd-d03bface5c24" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +agosto 
\entryTyp root 
\gENG August 
\gSPN agosto 
\e +agosto 
\c N0 
\ach agostu / ~_# 
\ach agosto / _# 
\akh agostu / ~_# 
\akh agosto / _# 
\acl agostu / ~_# 
\acl agostu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl agosto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl agostu / ~_# 
\akl agostu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl agosto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame agostu / ~_# 
\ame agosto / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e09628e7-5462-46b3-a665-2158031c429c" ownerguid="36e8f1df-1798-4ae6-904d-600ca6eb4145"> -<ExampleWords> -<AUni ws="en">extricate yourself, talk your way out of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to escaping from a difficult situation?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e0986e12-335c-4cf0-80a2-c639e2737ff6" ownerguid="da39c0d9-a5c1-4f10-bd3b-4e988abcab5a"> -<ExampleWords> -<AUni ws="en">why did I, why didn't I, I could have kicked myself</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What do people say when they feel sorry?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e098780d-fdbb-4d95-a4b5-83ab68ef97fb" ownerguid="b553e989-2b2a-4b1e-a987-ae75f3862501"> -<ExampleWords> -<AUni ws="en">uncaring, unconcerned, unfeeling, apathetic, indifferent, unmoved, blasé</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is uncaring?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e09b73a3-eac9-4e27-ad56-be9b0a0b182c" ownerguid="87c499b3-5fab-45e0-9999-9c4fcbba1e2b"> -<ExampleWords> -<AUni ws="en">child, son, daughter, heir, scion, kid</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to your children?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e09e5712-8837-4587-b766-483eee947e15"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pe:su</AUni> -<AUni ws="qvm-x-acl">pe:su; pe:su; pe:so</AUni> -<AUni ws="qvm-x-akh">pe:su</AUni> -<AUni ws="qvm-x-akl">pe:su; pe:su; pe:so</AUni> -<AUni ws="qvm-x-ame">pe:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+peso</AUni> -<AUni ws="qvm-x-acl">+peso</AUni> -<AUni ws="qvm-x-akh">+peso</AUni> -<AUni ws="qvm-x-akl">+peso</AUni> -<AUni ws="qvm-x-ame">+peso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.810" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fbb359f2-a588-4f82-9488-08f016a4124e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+peso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fce7a8d4-3760-44e7-9679-2b96155569fe" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="93361529-b6e9-4db7-95ce-e16b4c5c13c0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +peso 
\entryTyp root 
\gENG weight 
\gSPN peso 
\e +peso 
\c N0 
\ach pe:su 
\akh pe:su 
\acl pe:su / _# 
\acl pe:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pe:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pe:su / _# 
\akl pe:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pe:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pe:su</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e09e7d9b-2f94-4663-aaa5-edf76a1c5e12" ownerguid="e6822331-6cb7-467a-8c58-32cfefc2f332"> -<Form> -<AUni ws="qvm-x-ach">shunshuta; shunshutä</AUni> -<AUni ws="qvm-x-acl">shunshuta; shunshutä</AUni> -<AUni ws="qvm-x-akh">shunshuta; shunshutä</AUni> -<AUni ws="qvm-x-akl">shunshuta; shunshutä</AUni> -<AUni ws="qvm-x-ame">shunshuta; shunshutä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="e09f3c49-a275-4ce6-9b70-263b1487bcca" ownerguid="1250b0bf-4a27-4d46-92e9-e54af38e5a83"> -<Form> -<AUni ws="qvm-x-ach">goshtay</AUni> -<AUni ws="qvm-x-acl">goshtay</AUni> -<AUni ws="qvm-x-akh">qoshtay</AUni> -<AUni ws="qvm-x-akl">qoshtay</AUni> -<AUni ws="qvm-x-ame">qushtay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="e0a4817e-b383-4c10-9a6d-d074c81840e7" ownerguid="2899cfd7-a7b3-4907-84a1-ce94cdd76a5b"> -<Form> -<AUni ws="qvm-x-ach">venda</AUni> -<AUni ws="qvm-x-acl">venda</AUni> -<AUni ws="qvm-x-akh">venda</AUni> -<AUni ws="qvm-x-akl">venda</AUni> -<AUni ws="qvm-x-ame">venda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="e0a8e1d9-c43e-4092-a8dc-476a3417924e" ownerguid="474aa982-8350-47e2-a983-e1e2bce9d928"> -<Abbreviation> -<AUni ws="en">3.4.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.133" /> -<DateModified val="2022-9-23 16:55:8.133" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling confident--to feel sure that you can do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Confident</AUni> -</Name> -<Questions> -<objsur guid="7e20e64e-8ccf-4cc4-8e9c-2a63e49335c5" t="o" /> -<objsur guid="14f7c821-0599-4b48-a71a-421145dd4c8f" t="o" /> -<objsur guid="d44c4572-c843-40e9-a138-2657f6bede4a" t="o" /> -<objsur guid="ab5f7f01-e7b0-4c4c-b4b0-86895b05f940" t="o" /> -<objsur guid="4b2ddba8-6be3-45d7-b64b-87cf72516943" t="o" /> -<objsur guid="4cc2e138-d304-480e-8bc7-c897cb358039" t="o" /> -<objsur guid="1d48574e-35ac-442b-962f-aba9fd06ec76" t="o" /> -<objsur guid="9c492694-11e0-4915-aca7-f921357b70c6" t="o" /> -<objsur guid="166e3e47-9a53-483f-9ea3-c6bea963d724" t="o" /> -<objsur guid="15efdc05-7001-4527-a185-9e05ab0fbadc" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="e0a98173-161f-4736-9c4d-6cd40ae12f05"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">patgo; patgu:</AUni> -<AUni ws="qvm-x-acl">patgo; patgo:</AUni> -<AUni ws="qvm-x-akh">patqo; patqu:</AUni> -<AUni ws="qvm-x-akl">patqo; patqo:</AUni> -<AUni ws="qvm-x-ame">patqu; patqu:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*patqu:.v1</AUni> -<AUni ws="qvm-x-acl">*patqu:.v1</AUni> -<AUni ws="qvm-x-akh">*patqu:.v1</AUni> -<AUni ws="qvm-x-akl">*patqu:.v1</AUni> -<AUni ws="qvm-x-ame">*patqu:.v1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.759" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="61ed7a77-8eae-45bf-b254-e5a1c3bf6a7b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*patqu:.v1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="acc5d82d-8b98-4681-bdb2-5092551bf329" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="63a1be45-7660-4be7-83dd-a5863da2e6e0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *patqu:.v1 
\entryTyp root 
\gENG to.numb 
\gSPN entumecer 
\e *patqu:.v1 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach patgo foreshortened 
\ach patgu: 
\akh patqo foreshortened 
\akh patqu: 
\acl patgo foreshortened 
\acl patgo: 
\akl patqo foreshortened 
\akl patqo: 
\ame patqu foreshortened 
\ame patqu:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e0a988f8-c276-42fc-9db2-7b1837b15a35" ownerguid="4ba46aa1-6411-4444-8d1b-99b98b352011"> -<Form> -<AUni ws="qvm-x-ach">geniu; genio</AUni> -<AUni ws="qvm-x-acl">geniu; geniu; genio</AUni> -<AUni ws="qvm-x-akh">geniu; genio</AUni> -<AUni ws="qvm-x-akl">geniu; geniu; genio</AUni> -<AUni ws="qvm-x-ame">geniu; genio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="e0aa777a-116a-4037-bcef-829034857dfb" ownerguid="75c5fdb0-35ec-40ce-bae2-5da2d4eee5d2"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1SA 18.11 Saúlga elagpita Davidta lanzaycorgan wanutsiyta munashpan. Cada lanzaynin David quisquitaptinmi ishcay cuti lanzarpis mana chayatsergantsu.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiAnalysis" guid="e0ac46b6-6746-4953-8c6d-840a8ba10b37" ownerguid="449a0aab-9d4f-43d4-a522-26276769db74"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="4f0d16d9-c740-4c98-832d-3d1da3c66cf0" t="o" /> -<objsur guid="9fe037c5-dc65-4c94-b7c5-efa4f58d76fd" t="o" /> -</MorphBundles> -</rt> -<rt class="CmSemanticDomain" guid="e0ad6bb1-d422-408a-83f8-f1a7661ed225" ownerguid="4f485a60-e3ba-42e6-9d59-185305c5d1f2"> -<Abbreviation> -<AUni ws="en">8.5.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the direction up.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Up</AUni> -</Name> -<Questions> -<objsur guid="46dcfa5c-3fd4-483c-af41-06d318d848f1" t="o" /> -<objsur guid="980198db-ecf6-4b5a-98bc-c12d4286df77" t="o" /> -<objsur guid="987d88e1-7773-464e-86fe-d22cebbf315f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="e0addaae-3fda-4617-ac22-54c21d2ffd93" ownerguid="573bf23a-3fde-4552-9263-62b7c71cad02"> -<ExampleWords> -<AUni ws="en">fishnet, net</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What equipment is used to fish with a net?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="e0b00a13-8648-4635-afe5-0be3c0b6a05c" ownerguid="1a635032-6e13-4a56-aa03-6c6a015c502e"> -<Abbreviation> -<AUni ws="en">9.4.4.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.700" /> -<DateModified val="2022-9-23 16:55:8.700" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that a speaker uses to indicate that he thinks it is possible that something may happen or be true, but he isn't certain.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Maybe</AUni> -</Name> -<Questions> -<objsur guid="4d30e1dd-4dee-4b5d-b570-6f05328fcba6" t="o" /> -<objsur guid="300615a4-4b24-48c5-990b-1d9daf616b29" t="o" /> -<objsur guid="ca06cb7d-a71a-411d-ab91-706861609bb5" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="31ccb9e3-d434-4430-ac84-486cc5a1c53d" t="r" /> -<objsur guid="77bcdcab-e9fd-48ba-8dcd-63f425367735" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="e0b14cd0-d7cc-4d70-be7d-e48d27c5d99f" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<ExampleWords> -<AUni ws="en">carpenter, bricklayer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What are the occupations in building?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e0b50e1e-5e50-46d7-ad3e-ec7b45d54acb" ownerguid="38bbb33a-90bf-4a2c-a0e5-4bde7e134bd9"> -<ExampleWords> -<AUni ws="en">unperceived, imperceptible, unnoticeable, undetectable, undetected, indistinguishable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that cannot be sensed?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e0b52011-b350-4a3a-b3fe-69ed0689a9fc" ownerguid="c69c62e0-4059-4740-891c-eb0a8de5b1e8"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="e0b5b3dc-377a-4367-a1c3-67612803e32b" ownerguid="960240a0-3d88-49cc-b42b-6dd7e4b9e0ae"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e0b60d18-bc98-442c-96b1-d5d1bd5150ca" ownerguid="d88d862c-01d4-4b43-9fbe-59208922e022"> -<ExampleWords> -<AUni ws="en">line up, queue, stand in line, cut in line</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to waiting in a line of people?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e0b7215a-a9df-424a-bf1b-2ef4adc01bb1" ownerguid="4fb79b12-3bd1-46ed-8698-7d27052a5dc7"> -<ExampleWords> -<AUni ws="en">uneven, dip, depression, basin, rut, rutted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words a place that is not very flat?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e0bb119e-850f-4a9e-88c9-16874082db70" ownerguid="f7b7eb3c-b784-4ba5-8dac-a68fd27ce0ea"> -<ExampleWords> -<AUni ws="en">drop fruit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to plants dropping their fruit?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e0bc5d5d-e32a-42f5-8d87-ecdbcce39cff" ownerguid="f4f1c5ec-b343-411d-be17-7e099adbc5f4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="e0c32642-7c51-4e23-a776-f63f2f2f936d" ownerguid="3ea4c495-b837-4310-8741-38d89fa63e0b"> -<Abbreviation> -<AUni ws="en">9.4.4.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.700" /> -<DateModified val="2022-9-23 16:55:8.700" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that indicate that no one is certain that something is true, or when it is impossible to be certain that something is true.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>71C Certain, Uncertain</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Uncertain</AUni> -</Name> -<Questions> -<objsur guid="c4f33aa7-b710-4c90-ba5d-481a286fcf2c" t="o" /> -<objsur guid="e1e8269c-2ea9-4046-9d6c-1549060c6f63" t="o" /> -<objsur guid="949dd43e-7023-4177-8dfb-d29c3153f4e3" t="o" /> -<objsur guid="63127e0e-6b99-4634-aeb6-4692be0664f4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="e0c3b4ec-ae80-44db-a2a6-9f4b3289e003"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tucna</AUni> -<AUni ws="qvm-x-acl">tucna</AUni> -<AUni ws="qvm-x-akh">tukna</AUni> -<AUni ws="qvm-x-akl">tukna</AUni> -<AUni ws="qvm-x-ame">tukna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tukna</AUni> -<AUni ws="qvm-x-acl">*tukna</AUni> -<AUni ws="qvm-x-akh">*tukna</AUni> -<AUni ws="qvm-x-akl">*tukna</AUni> -<AUni ws="qvm-x-ame">*tukna</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.975" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3fdcf634-ea65-47c1-8a3d-c25a64defa2b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tukna</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cea09e60-40ad-49ec-b1e5-bfde3c1022c7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="898ef565-ea48-40df-a8c8-3609c41b633d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tukna 
\entryTyp root 
\gENG lean 
\gSPN ? 
\e *tukna 
\c V2 
\ach tucna 
\akh tukna 
\acl tucna 
\akl tukna 
\ame tukna</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e0c48d16-9c93-46fd-bc01-5b854e912b2c" ownerguid="bf0b24d2-4bd6-4e9c-8775-a623ace8db56"> -<ExampleWords> -<AUni ws="en">spice, flavoring, seasoning</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to spice?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e0c705e8-7bf4-4049-a1a7-75766e22826e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cestu; cesto</AUni> -<AUni ws="qvm-x-acl">cestu; cestu; cesto</AUni> -<AUni ws="qvm-x-akh">cestu; cesto</AUni> -<AUni ws="qvm-x-akl">cestu; cestu; cesto</AUni> -<AUni ws="qvm-x-ame">cestu; cesto</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cesto</AUni> -<AUni ws="qvm-x-acl">+cesto</AUni> -<AUni ws="qvm-x-akh">+cesto</AUni> -<AUni ws="qvm-x-akl">+cesto</AUni> -<AUni ws="qvm-x-ame">+cesto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.112" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cc278f69-8bf4-40cf-bc6b-06b46d3c402a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cesto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6aa0085b-a5ad-4d87-a25a-2604b00f0fa3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ff49233f-cdff-4fcb-a40e-6302e00187c0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cesto 
\entryTyp root 
\gENG large.basket 
\gSPN cesto 
\e +cesto 
\c N0 
\ach cestu / ~_# 
\ach cesto / _# 
\akh cestu / ~_# 
\akh cesto / _# 
\acl cestu / ~_# 
\acl cestu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cesto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cestu / ~_# 
\akl cestu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cesto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cestu / ~_# 
\ame cesto / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e0c9ee8a-f425-4e78-af58-5e93fb2ca906" ownerguid="c345f278-91ff-463d-b9a6-8abac8a267eb"> -<ExampleWords> -<AUni ws="en">berry, strawberry, raspberry, cranberry, blueberry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What types of berries are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e0cc987b-c649-441a-a527-79c2d47678b5" ownerguid="f6e416b3-50b1-4e48-8a39-2998725b1c79"> -<ExampleWords> -<AUni ws="en">divorced, estranged</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe someone who has been divorced?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e0cd4a33-d8bb-45df-86f1-222d52ec9e4c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuenta</AUni> -<AUni ws="qvm-x-acl">cuenta</AUni> -<AUni ws="qvm-x-akh">cuenta</AUni> -<AUni ws="qvm-x-akl">cuenta</AUni> -<AUni ws="qvm-x-ame">cuenta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+contar</AUni> -<AUni ws="qvm-x-acl">+contar</AUni> -<AUni ws="qvm-x-akh">+contar</AUni> -<AUni ws="qvm-x-akl">+contar</AUni> -<AUni ws="qvm-x-ame">+contar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.172" /> -<DateModified val="2022-10-10 21:19:47.694" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9a039ca3-c371-4e0e-9e8c-482838e42356" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+contar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e1929f77-7a20-4e4a-94e6-da125c17cc51" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7fbbd4ab-a249-4c64-ab2f-5b03455a7a2b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +contar 
\entryTyp root 
\gENG esteem 
\gSPN 
\e +contar 
\c V2 
\ach cuenta 
\akh cuenta 
\acl cuenta 
\akl cuenta 
\ame cuenta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e0d07ed2-fe3c-452c-a2f5-68744809c7fe" ownerguid="a80f12aa-c30d-4892-978a-b076985742d5"> -<ExampleWords> -<AUni ws="en">body, trunk, torso, abdomen, abdominal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the torso?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="e0d0ceb6-d9b2-44d5-bbcf-8ee58c446cc7" ownerguid="81622280-13ae-4f67-bf16-618e0d13abad"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsay</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsay</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsay</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsay</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsay</Run> -</AStr> -</Form> -<Morph> -<objsur guid="feef9276-2243-43d4-b44a-5a725a0be56c" t="r" /> -</Morph> -<Msa> -<objsur guid="17c53e1a-f12c-41bc-9038-3134419c51bb" t="r" /> -</Msa> -<Sense> -<objsur guid="dc52902d-860a-4eee-86d4-7271f54d4006" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="e0d10625-c887-49bd-9ef9-9ccb13bc4852"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sirvienti; sirviente</AUni> -<AUni ws="qvm-x-acl">sirvienti; sirvienti; sirviente</AUni> -<AUni ws="qvm-x-akh">sirvienti; sirviente</AUni> -<AUni ws="qvm-x-akl">sirvienti; sirvienti; sirviente</AUni> -<AUni ws="qvm-x-ame">sirvienti; sirviente</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sirviente</AUni> -<AUni ws="qvm-x-acl">+sirviente</AUni> -<AUni ws="qvm-x-akh">+sirviente</AUni> -<AUni ws="qvm-x-akl">+sirviente</AUni> -<AUni ws="qvm-x-ame">+sirviente</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.703" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="63a76598-24c8-4a7d-a9e3-aedf517f174c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sirviente</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f89457c7-5c45-47c0-bcaa-b056939a620b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b5f8dd14-b195-4a03-ad4e-bda82b79642f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sirviente 
\entryTyp root 
\gENG servant 
\gSPN serviente 
\e +sirviente 
\c N0 
\mp +FinalI 
\ach sirvienti / ~_# 
\ach sirviente / _# 
\akh sirvienti / ~_# 
\akh sirviente / _# 
\acl sirvienti / ~_# 
\acl sirvienti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sirviente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sirvienti / ~_# 
\akl sirvienti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sirviente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sirvienti / ~_# 
\ame sirviente / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e0d42f2c-23f7-4659-8531-c47f7e63da35" ownerguid="d9fa5136-2134-4c33-9d60-36c3b92641cf"> -<Form> -<AUni ws="qvm-x-ach">porque</AUni> -<AUni ws="qvm-x-acl">porque</AUni> -<AUni ws="qvm-x-akh">porque</AUni> -<AUni ws="qvm-x-akl">porque</AUni> -<AUni ws="qvm-x-ame">porque</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="e0dc68e0-5490-4c50-a18a-a58f0240c54c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jauca</AUni> -<AUni ws="qvm-x-acl">jauca</AUni> -<AUni ws="qvm-x-akh">jawka</AUni> -<AUni ws="qvm-x-akl">jawka</AUni> -<AUni ws="qvm-x-ame">hawka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hawka</AUni> -<AUni ws="qvm-x-acl">*hawka</AUni> -<AUni ws="qvm-x-akh">*hawka</AUni> -<AUni ws="qvm-x-akl">*hawka</AUni> -<AUni ws="qvm-x-ame">*hawka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.698" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7d3cb657-3299-4ce2-af1c-b139b33c4a71" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hawka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a2c7d7fb-170b-4155-93eb-5d56fbdc4280" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="398438a1-57ec-4250-ad26-c9e8e9691507" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hawka 
\entryTyp root 
\gENG contented 
\gSPN tranquilo 
\e *hawka 
\c N0 
\ach jauca 
\akh jawka 
\acl jauca 
\akl jawka 
\ame hawka</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e0dd1e77-beea-4cf8-90e5-15b0ec5d7c8f" ownerguid="daefd275-98e3-4534-a991-c7d396b54c69"> -<ExampleWords> -<AUni ws="en">put off, procrastinate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to postponing something because you are lazy?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e0def57b-c217-4a4f-a0bc-df98a1923603" ownerguid="237588e0-0c25-4490-8a91-7da45950d3f2"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="e0defc46-3cf3-4cc6-83a4-18cbd873f587" ownerguid="be878acc-7985-40ed-99ce-0f8f857ce5a4"> -<Form> -<AUni ws="qvm-x-ach">ñuchgu</AUni> -<AUni ws="qvm-x-acl">ñuchgu; ñuchgo</AUni> -<AUni ws="qvm-x-akh">ñuchqu</AUni> -<AUni ws="qvm-x-akl">ñuchqu; ñuchqo</AUni> -<AUni ws="qvm-x-ame">ñuchqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e0e08d62-fb08-41bf-b695-7f6e5705997d" ownerguid="36e5b459-8650-4dd8-ba2a-4be624af35af"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="03e2adbd-0a07-43d6-abd6-1a7408829d41" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">sharp</AUni> -<AUni ws="es">filo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f4580a74-cca5-4267-afe0-668660d9754c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e0e090ee-793b-4f23-8972-97a044353c72" ownerguid="8ff44913-ceae-4308-8c47-aa036f19422b"> -<Form> -<AUni ws="qvm-x-ach">wawïtu</AUni> -<AUni ws="qvm-x-acl">wawïtu</AUni> -<AUni ws="qvm-x-akh">wawïtu</AUni> -<AUni ws="qvm-x-akl">wawïtu</AUni> -<AUni ws="qvm-x-ame">wawïtu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e0e2e7fe-6d0e-4ea6-a517-6c567ddb68de" ownerguid="527aa1ab-a791-4671-80e6-388296e34537"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cultivation</AUni> -<AUni ws="es">cultivacion</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d4b268d7-200d-49db-84da-5491c0664453" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="e0e4dd0f-4743-4439-a6db-6e410ea088ca" ownerguid="a2989907-310a-4a71-8768-cfa71e66caa6"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="ab83eb45-ee8a-4937-a26f-9781f74bc2f0" t="o" /> -<objsur guid="24a2abc7-5b93-4b7f-84bb-aee810fd18d5" t="o" /> -<objsur guid="f1955b84-0799-47a8-9a76-a0d79adb687a" t="o" /> -<objsur guid="c0ba50a4-bc3b-4644-b48d-fc2e2f2fd233" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="e0e51fc9-abb3-4256-875e-87a616907883" ownerguid="70eac6be-66e8-4827-8f2f-d15427efff60"> -<ExampleWords> -<AUni ws="en">reading and writing, literacy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to reading and writing?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e0e67b9d-8a5d-4e38-9a41-8ffa1480d455" ownerguid="957e5b95-cd8d-4059-9447-97ad174673f9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tree</AUni> -<AUni ws="es">árbol</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="18c582a9-0303-4d08-949f-91719501988a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e0e73765-db21-4e44-89a2-0304612bfd35" ownerguid="7558d071-a885-447b-9aa2-604c29669492"> -<ExampleWords> -<AUni ws="en">governmental, official</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something having to do with the government?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e0e7c201-20d6-4edb-86c8-9bb7af15c9cc" ownerguid="2a62f8e4-7da3-4f37-bf44-e24033c99c00"> -<ExampleWords> -<AUni ws="en">affront, aggravation, bitter pill to swallow, insult (n), offense, outrage, provocation, vexation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to something that causes someone to feel angry?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="e0e83cc9-b876-47f6-8e66-60c9c505b927" ownerguid="01459db0-bf2a-422b-8d55-0ab505aea2b4"> -<Abbreviation> -<AUni ws="en">4.4.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to danger--things and events that threaten to inflict damage, pain, or death.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>21 Danger, Risk, Safe, Save; 21A Danger</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Danger</AUni> -</Name> -<Questions> -<objsur guid="fc6ab346-13ae-4977-b095-dd53b2c7dbd5" t="o" /> -<objsur guid="2972a24e-a1f8-457e-b937-ad1753eab063" t="o" /> -<objsur guid="6c256094-2752-4a59-a2f6-2bec499b7159" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="0eda983b-633e-4b11-b5c8-28be60067782" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="e0e8af5a-04c1-49a1-9955-9a2af7879068" ownerguid="07476166-c5e5-4701-97d3-d97de8b5be6f"> -<Abbreviation> -<AUni ws="en">3.2.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.103" /> -<DateModified val="2022-9-23 16:55:8.103" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that describe whether or not something is known.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>28E Not Able To Be Known, Secret</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Secret</AUni> -</Name> -<Questions> -<objsur guid="70ffada5-2169-493a-b201-9312ad4eb712" t="o" /> -<objsur guid="cd9e91fb-99fd-46af-9844-1e587c92b378" t="o" /> -<objsur guid="48427202-ac88-4c3e-8d52-a17ec5472384" t="o" /> -<objsur guid="0b66963f-185c-475c-9565-3eb2e7435bdd" t="o" /> -<objsur guid="eb8b917c-719a-45ab-b171-a2273a285210" t="o" /> -<objsur guid="40550f62-de29-404e-826d-875f91fd9cb0" t="o" /> -<objsur guid="87c8dbb2-39ed-41bc-90c8-73ce77f8a6fd" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="e0e93482-646f-4fcb-a967-b57b54ca6a8e" ownerguid="24dcd977-5e52-4c2b-858d-58b7d5209f56"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="e0ee6ed5-ea65-46ec-975e-e54684b58735" ownerguid="e99c5aba-e736-4972-9889-99ff7c3d0af2"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e0f148f9-5f13-4e9b-b026-7e0f50af1f48" ownerguid="a03663ca-0c66-4570-be2d-b40105cc4400"> -<ExampleWords> -<AUni ws="en">yes, yeah, yea, indeed, true, that's true, it is true, verily, agreed, certainly, of course, that's right, I guess so, that is so, a-huh, nod your head, affirmative, positive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to affirm the truth of something?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="e0f22827-8c89-4294-9bdd-8fc47ac00a92" ownerguid="91a24a4f-487c-4657-b2a4-b2f34e8bf101"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pti</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pti</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pti; pti; pte</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pti</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b2772da-2fbd-4846-99c3-d3f919125916" t="r" /> -</Morph> -<Msa> -<objsur guid="6a97cf20-558d-4866-ba04-48c4807bc533" t="r" /> -</Msa> -<Sense> -<objsur guid="5c9f1fed-2e6d-4ad2-b804-9d3f09a277d3" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="e0fa0c46-5a72-4acd-b825-df9f5c2ce9d6" ownerguid="00675854-6a77-4451-b4a7-b85eb1b743a3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">parsley</AUni> -<AUni ws="es">perjil</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="004d6044-8b70-4dff-a709-61557ab665f6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e0fa4ef0-3a13-43d6-a7f6-f642614709d8" ownerguid="1c8da3aa-3c74-4188-8949-5ab82fc1f99c"> -<ExampleWords> -<AUni ws="en">always, habitually</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something always happens?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e0ff8e39-e119-4348-a929-820abe96d3d1" ownerguid="65d1072a-2120-4518-a2d8-e9fcf31ce3c3"> -<Form> -<AUni ws="qvm-x-ach">wirpa</AUni> -<AUni ws="qvm-x-acl">wirpa</AUni> -<AUni ws="qvm-x-akh">wirpa</AUni> -<AUni ws="qvm-x-akl">wirpa</AUni> -<AUni ws="qvm-x-ame">wirpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e100daec-a35a-48e1-8a47-09a7648dcd91" ownerguid="82ecb5b3-9128-4b38-b9c5-612857417ceb"> -<ExampleWords> -<AUni ws="en">displease, offend, repel, trouble, upset, put someone off, turn someone against</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to causing someone to dislike something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e1014fd4-d0f7-488e-89a6-d5effcea44c3" ownerguid="f7833042-cd10-42c1-9507-945e3c043f96"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cord</AUni> -<AUni ws="es">soga</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="74bfc3ea-c9ee-4941-8ad8-7ce0d2253fc6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="e101d260-74d9-4556-9cb1-fe0ccd69e15f" ownerguid="734aa088-a83d-40d3-aadc-4defc1764631"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="e102cd3d-373a-4a60-9344-1e8ced273e0d" ownerguid="d68b09ee-846d-45ef-b0d7-392425fef18e"> -<Form> -<AUni ws="qvm-x-ach">chicchacsu</AUni> -<AUni ws="qvm-x-acl">chicchacsu; chicchacsu; chicchacso</AUni> -<AUni ws="qvm-x-akh">chikchaksu</AUni> -<AUni ws="qvm-x-akl">chikchaksu; chikchaksu; chikchakso</AUni> -<AUni ws="qvm-x-ame">chikchaksu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e103b13b-1bd5-4c84-aa47-fef96c309a00" ownerguid="b4fe4698-54a2-4bcd-9490-e07ee1ee97af"> -<ExampleWords> -<AUni ws="en">sob, bawl, howl, wail</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to crying in a noisy way?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e10672e8-a003-4e34-8a87-0d86eca06262" ownerguid="1431abed-afa5-49b5-8037-39547186176b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e1086046-9d68-4c26-b75a-a0b87337142f" ownerguid="d5bda083-681b-4048-80f7-d2347cf1e050"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ad169013-1395-405b-95d1-7191c0988114" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e10b3231-2b38-40bd-b94d-d7e6b1b77e16" ownerguid="0a1ad4c9-8bf3-448b-a27f-611813b305de"> -<ExampleWords> -<AUni ws="en">below, beneath, sunken, lower</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something is in a lower position or on a lower level?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e10b7e21-1eeb-4488-9376-c98c851ea293" ownerguid="60a5fa58-45b1-41ae-9430-5200e8bfbcb8"> -<ExampleWords> -<AUni ws="en">turn, change direction/course, deviate, go off at an angle, swerve</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to turning?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="e10b9449-08a3-4c13-aff2-31486749b62f" ownerguid="85214614-ab45-4805-9014-092750d47511"> -<Abbreviation> -<AUni ws="en">4.7.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to investigating a crime, accident, or criminal--to try to learn something about something bad that has happened because you want to know who did it, or to try to learn something about someone because you think they did something bad.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>27C Learn Something Against Someone</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Investigate a crime</AUni> -</Name> -<Questions> -<objsur guid="8c2694c4-7f8a-485d-9db5-66e476ef5791" t="o" /> -<objsur guid="eb05a093-7487-40b7-98b0-dc4a14173270" t="o" /> -<objsur guid="d49b7212-7fe0-4bc5-85fa-5103dc71e533" t="o" /> -<objsur guid="8f9ec85c-3250-45ea-8785-9d3bc7a64444" t="o" /> -<objsur guid="6cabb039-f3d7-407c-a44d-2f861d4a99a9" t="o" /> -<objsur guid="da297384-5c99-4d4f-9946-eda10138117a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="e10baccf-7e2e-43c3-b5db-4433b589673e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">según</AUni> -<AUni ws="qvm-x-acl">según</AUni> -<AUni ws="qvm-x-akh">según</AUni> -<AUni ws="qvm-x-akl">según</AUni> -<AUni ws="qvm-x-ame">según</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+según</AUni> -<AUni ws="qvm-x-acl">+según</AUni> -<AUni ws="qvm-x-akh">+según</AUni> -<AUni ws="qvm-x-akl">+según</AUni> -<AUni ws="qvm-x-ame">+según</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.480" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b24000d9-a34a-4c7f-8bf3-793538c2b741" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+según</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c6a1f991-1c30-4cc8-a875-90ac4ba08cbf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="85e5e831-60be-4d34-844b-59689820be75" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +según 
\entryTyp root 
\gENG according.to 
\gSPN según 
\e +según 
\c NOSUFF 
\ach según 
\akh según 
\acl según 
\akl según 
\ame según</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e10bb1b8-68c7-4206-87ca-21fec6a3c8d3" ownerguid="f2022802-4f43-4fa2-8c58-33a8b9e75895"> -<ExampleWords> -<AUni ws="en">shoot up, soar, rocket, go through the roof, spiral, take off, jump</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to increasing very quickly?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e110e21e-b3fb-420a-ac3e-e469b9133b08" ownerguid="cd8b2a8b-687b-42e9-91e7-cfb8812b64ee"> -<ExampleWords> -<AUni ws="en">by mistake, mistaken, mistakenly, in error, erroneously</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something done by mistake?</AUni> -</Question> -</rt> -<rt class="MoInflAffMsa" guid="e118995f-d03c-4537-8b1a-0955253a34a0" ownerguid="0bce7afa-8c12-4b94-8603-ddbae7206c70"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="5d7569d5-d194-43a3-8975-abfbf7ee2b2f" t="r" /> -</Slots> -</rt> -<rt class="CmDomainQ" guid="e11b3e15-1e8a-4a1d-ae39-6fb0bf901957" ownerguid="7988974c-99fd-40dd-9b5e-2d81ec603ddc"> -<ExampleWords> -<AUni ws="en">meadow, clearing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a place in a forest where there are no trees?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e11b677d-d0ff-4eb3-bf67-08a7445a8273" ownerguid="d117aa22-3f18-47c4-9683-51ecf1dc7134"> -<ExampleWords> -<AUni ws="en">fruit, peel, peeling, juice, pulp, pulpy, flesh, fleshy, core, skin, stem, seed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to the fruit?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e11b6e55-ed8e-46ca-b7e9-8cc7d0a11531"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tapra</AUni> -<AUni ws="qvm-x-acl">tapra</AUni> -<AUni ws="qvm-x-akh">tapra</AUni> -<AUni ws="qvm-x-akl">tapra</AUni> -<AUni ws="qvm-x-ame">tapra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tapra.r</AUni> -<AUni ws="qvm-x-acl">*tapra.r</AUni> -<AUni ws="qvm-x-akh">*tapra.r</AUni> -<AUni ws="qvm-x-akl">*tapra.r</AUni> -<AUni ws="qvm-x-ame">*tapra.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.813" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="98cf8109-a3c4-4baa-9a30-0b874deb8925" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tapra.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="448cff36-7250-45b7-a8a0-71779304cb1f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="52d4ef5e-f6a6-4e90-8f82-83e1cd24fbba" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tapra.r 
\entryTyp root 
\gENG 
\gSPN 
\e *tapra.r 
\c R0 
\ach tapra 
\akh tapra 
\acl tapra 
\akl tapra 
\ame tapra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="e11d6360-6fa9-45a9-a23e-2252a301cf86" ownerguid="36ad58e3-ade7-49b9-9922-de0b5c3f13c3"> -<Abbreviation> -<AUni ws="en">5.2.3.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.317" /> -<DateModified val="2022-9-23 16:55:8.317" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for leaven--things that are added to food to make them ferment.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Leaven</AUni> -</Name> -<Questions> -<objsur guid="9ceaf87e-8fd3-403b-a00d-923c2c9801d2" t="o" /> -<objsur guid="b9d77efa-c8ee-462c-81dc-0fb40c48ba5f" t="o" /> -<objsur guid="7180f9ff-9b63-44ba-b8db-64277868b078" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="e129ec8e-3ec8-4358-83f1-71a097782487" ownerguid="d38f76c5-5c31-4a0a-bfab-e68eba44609c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e12d6a15-7304-4b78-a533-bd30adf21101" ownerguid="5b4b7618-83ad-4adb-88bf-d6580c9de3be"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">split</AUni> -<AUni ws="es">quebrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fc3bec91-0d75-4951-880d-ba139fa7d063" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e12ffc1e-5ca4-404b-a022-19bce47cd0ef" ownerguid="741c417a-11e9-460c-9ab3-51b8220df016"> -<ExampleWords> -<AUni ws="en">surge, move, come roaring down on, race before the wind, wave pattern, violence of the waves, undertow, toss</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe the movement of a wave?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e13193d5-81f5-4614-96bb-447d899d89db" ownerguid="0205145d-23b6-4c3c-bf2d-bf866bb010e7"> -<ExampleWords> -<AUni ws="en">aqueduct, canal, culvert</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used for transporting clean water?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="e1338e78-5257-440d-bf6f-d59e7da1a286" ownerguid="a8197bd1-918e-45e4-b312-be565f0c1f52"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06d46bf0-084f-4876-8329-a11eab40b171" t="r" /> -</Morph> -<Msa> -<objsur guid="49886695-7a83-4ac8-8f88-7deec4238172" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="e135341c-48c4-4a21-bf6f-ecf9dc978202"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yargu</AUni> -<AUni ws="qvm-x-acl">yargu; yargo</AUni> -<AUni ws="qvm-x-akh">yarqu</AUni> -<AUni ws="qvm-x-akl">yarqu; yarqo</AUni> -<AUni ws="qvm-x-ame">yarqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yarqu</AUni> -<AUni ws="qvm-x-acl">*yarqu</AUni> -<AUni ws="qvm-x-akh">*yarqu</AUni> -<AUni ws="qvm-x-akl">*yarqu</AUni> -<AUni ws="qvm-x-ame">*yarqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.760" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7c95fb99-2d6d-47b6-9f44-63117f03e73c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yarqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c28bfe3d-38df-47f4-81ac-47db4ce988b5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="71154986-5a20-4495-9ca6-833684d399a1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yarqu 
\entryTyp root 
\gENG go.out 
\gSPN salir 
\e *yarqu 
\c V2 
\ach yargu 
\akh yarqu 
\acl yargu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl yargo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yarqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yarqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame yarqu</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="e1355332-39a8-47cf-b0fa-df8caf8cc4e7"> -<Form> -<Str> -<Run ws="en">4</Run> -</Str> -</Form> -</rt> -<rt class="LexSense" guid="e1378c8f-367f-4f0a-85c2-f7afa84637af" ownerguid="c606feb2-920e-4f73-bb06-8a0ab1e0b5ea"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ham</AUni> -<AUni ws="es">jamón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fa858c34-507d-4e5a-a134-12f055e694b9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="e13adfd9-6a87-4765-b067-82ccf814a8af" ownerguid="ff79e15f-55f4-496a-83f3-0ff39fbd5963"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e13c7cf2-57d7-402a-8e4d-49e84e14f446" ownerguid="f5e2ad18-5ad4-4186-9572-b1542096759e"> -<ExampleWords> -<AUni ws="en">military police, cavalryman, horseman, spearman, legionnaire, centurion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What kinds of special soldiers are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e13d71e8-27d9-4f9a-a02a-4dc08bef876e" ownerguid="675eccbb-9858-4cd4-8405-5f0d0faa792c"> -<ExampleWords> -<AUni ws="en">negotiation, discussion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the process two people trying to reach an agreement?</AUni> -</Question> -</rt> -<rt class="FsClosedFeature" guid="e13ebd7a-824d-4405-8c23-e5a30f3d53a6" ownerguid="d6d5a99e-ea5e-11de-994c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">ml</AUni> -</Abbreviation> -<Description> -<AStr ws="en"> -<Run ws="en">undergoes morphophonemic lowering</Run> -</AStr> -</Description> -<DisplayToRightOfValues val="False" /> -<Name> -<AUni ws="en">morphlowered</AUni> -</Name> -<ShowInGloss val="False" /> -<Values> -<objsur guid="7fd2e9b4-402c-427c-a3e3-bbf386d652da" t="o" /> -<objsur guid="d955a1e1-2da8-486d-8f53-3509c47b67fc" t="o" /> -</Values> -</rt> -<rt class="LexSense" guid="e1418158-823a-4040-9387-350b2d378ed9" ownerguid="d5368649-32f0-4ce2-970c-cfac70f94f07"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">destiny</AUni> -<AUni ws="es">destino</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="17035e0f-bad8-4ee4-8f92-caa345042e18" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="e14233c2-4026-4d5a-bfd0-2d9b309ff66f" ownerguid="1e8c10a6-7869-4986-aa40-203151ad0582"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">harvest</AUni> -<AUni ws="es">cosecha</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3ddb10b2-71e4-415f-80fb-d9b26cd474e1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="e147424b-1a5d-4071-9258-dd7624e8a2c9" ownerguid="2b0fbd58-ad45-48b6-b06f-72760f2d92ee"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.be.able</AUni> -<AUni ws="es">poder.hacer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="66d7140f-e1ff-4e38-b18a-f27df1a96745" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="e1496046-5e39-485e-aff3-a5ac888e3f7f" ownerguid="f6df56d5-05df-40f4-9c66-8042b406f68d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -<Sense> -<objsur guid="98d1c6b4-6ec3-4d69-9169-c8e2a400e327" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="e14e71db-5663-4e0a-8616-ad6b07e6ecd4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ruripa</AUni> -<AUni ws="qvm-x-acl">ruripa</AUni> -<AUni ws="qvm-x-akh">ruripa</AUni> -<AUni ws="qvm-x-akl">ruripa</AUni> -<AUni ws="qvm-x-ame">ruripa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ruripa</AUni> -<AUni ws="qvm-x-acl">*ruripa</AUni> -<AUni ws="qvm-x-akh">*ruripa</AUni> -<AUni ws="qvm-x-akl">*ruripa</AUni> -<AUni ws="qvm-x-ame">*ruripa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.399" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6c78b456-3930-4a45-bd77-e64fa047f53d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ruripa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="693f0029-7235-47f1-91ad-c3a562fe87fc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f1c5f8bd-3cba-40b3-b732-c49dba0b6b62" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ruripa 
\entryTyp root 
\gENG slip 
\gSPN justan 
\e *ruripa 
\c N0 
\ach ruripa 
\akh ruripa 
\acl ruripa 
\akl ruripa 
\ame ruripa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e14efd53-bd53-4a0a-be51-65eddb748766" ownerguid="6fa27e89-d7a9-4d52-9c08-feb552baf170"> -<Form> -<AUni ws="qvm-x-ach">astütu</AUni> -<AUni ws="qvm-x-acl">astütu; astütu; astüto</AUni> -<AUni ws="qvm-x-akh">astütu</AUni> -<AUni ws="qvm-x-akl">astütu; astütu; astüto</AUni> -<AUni ws="qvm-x-ame">astütu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e14ff0d1-190b-40a2-9190-3bb37901cfd0" ownerguid="2c04fa05-eebf-4331-b392-23f795c32382"> -<ExampleWords> -<AUni ws="en">one, first, individual, single, only, the one, one apiece, one each</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to one?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e15322ea-b7fc-4b8e-8147-fe9c3313caba"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mircapa</AUni> -<AUni ws="qvm-x-acl">mircapa</AUni> -<AUni ws="qvm-x-akh">mirkapa</AUni> -<AUni ws="qvm-x-akl">mirkapa</AUni> -<AUni ws="qvm-x-ame">mirkapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mirkapa.v</AUni> -<AUni ws="qvm-x-acl">*mirkapa.v</AUni> -<AUni ws="qvm-x-akh">*mirkapa.v</AUni> -<AUni ws="qvm-x-akl">*mirkapa.v</AUni> -<AUni ws="qvm-x-ame">*mirkapa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.446" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c53a2cce-d66c-4531-bba1-518007480df5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mirkapa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="19c53a65-3ef2-4bdb-b453-18ca5acc888a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b04f9e58-c070-4a07-bf21-d497df47abc5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mirkapa.v 
\entryTyp root 
\gENG take.snack 
\gSPN llevar.fiambre 
\e *mirkapa.v 
\c V2 
\ach mircapa 
\akh mirkapa 
\acl mircapa 
\akl mirkapa 
\ame mirkapa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="e1537466-2604-4df0-a3d8-6821c2d14da4" ownerguid="1b450e43-b1f0-4ad2-a286-2688ed9fdde9"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="e154398f-1ab2-4442-9ed5-151b7d4bb8c0" ownerguid="0080f1e6-54aa-45d6-9505-da5a488bc282"> -<Form> -<AUni ws="qvm-x-ach">palma</AUni> -<AUni ws="qvm-x-acl">palma</AUni> -<AUni ws="qvm-x-akh">palma</AUni> -<AUni ws="qvm-x-akl">palma</AUni> -<AUni ws="qvm-x-ame">palma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e154b572-c987-4eca-a8d4-8eb92be44b0e" ownerguid="a6b042b8-9ab8-4f14-87f9-b6562a5a82de"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="11dafa01-3970-4db3-936c-63f269dc1275" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">dust</AUni> -<AUni ws="es">polvo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f6ea043a-2049-4f16-ad39-4c2a68e40c12" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e15669a7-52a8-43aa-920c-e4fdcf18d325" ownerguid="afdd8b8e-9502-4d06-94ee-e79815b65750"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The clothes are <almost> dry.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">almost, nearly, very nearly, just about, practically, virtually, all but, as good as, to all intents and purposes, nearing, approaching, near to, close to, verging on, bordering on, more or less, pretty much, not quite</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that something has almost reached a particular state?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e1594ad1-dc88-4c1d-9ef8-458a7c3dd817" ownerguid="18836c56-2f51-46ba-85b6-479df30fd057"> -<Form> -<AUni ws="qvm-x-ach">sitiu; sitio</AUni> -<AUni ws="qvm-x-acl">sitiu; sitiu; sitio</AUni> -<AUni ws="qvm-x-akh">sitiu; sitio</AUni> -<AUni ws="qvm-x-akl">sitiu; sitiu; sitio</AUni> -<AUni ws="qvm-x-ame">sitiu; sitio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="e15962c5-aac1-48c6-bcca-ba9c245cb146"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gusta; gusta:</AUni> -<AUni ws="qvm-x-acl">gusta; gusta:</AUni> -<AUni ws="qvm-x-akh">gusta; gusta:</AUni> -<AUni ws="qvm-x-akl">gusta; gusta:</AUni> -<AUni ws="qvm-x-ame">gusta; gusta:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gustar.2</AUni> -<AUni ws="qvm-x-acl">+gustar.2</AUni> -<AUni ws="qvm-x-akh">+gustar.2</AUni> -<AUni ws="qvm-x-akl">+gustar.2</AUni> -<AUni ws="qvm-x-ame">+gustar.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.892" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a216732e-745e-4748-b429-35c34466968e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gustar.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0d83a12a-561e-4e02-a94b-618b09a062d9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9ae0321d-23e0-45f2-9bb7-0d7a7d326a49" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gustar.2 
\entryTyp root 
\gENG be.pleasing 
\gSPN gustar 
\e +gustar.2 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach gusta foreshortened 
\ach gusta: 
\mp +underlong 
\akh gusta foreshortened 
\akh gusta: 
\acl gusta foreshortened 
\acl gusta: 
\akl gusta foreshortened 
\akl gusta: 
\mp +underlong 
\ame gusta foreshortened 
\ame gusta:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e15c3312-6054-44ff-b87e-ebf86f9eb197" ownerguid="a628f348-9748-4529-ae27-218e7281cf64"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c8ca01dd-ce1a-44af-8355-b901f80b56c5" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="7de7703d-3780-4a7e-9afc-2573db33870e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e163d719-b67e-46d3-a501-02f49f6aa791" ownerguid="30c95b70-d638-488a-8356-8f06cdc1ecce"> -<Form> -<AUni ws="qvm-x-ach">cëja</AUni> -<AUni ws="qvm-x-acl">cëja</AUni> -<AUni ws="qvm-x-akh">cëja</AUni> -<AUni ws="qvm-x-akl">cëja</AUni> -<AUni ws="qvm-x-ame">cëja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e165ab81-3063-47e5-a126-c9fcc62b1a62" ownerguid="7337c37d-13e2-40b0-a5d2-b31be4b66423"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">glitter</AUni> -<AUni ws="es">brillar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e725584e-6526-43cc-b6b7-24fbfb1bf157" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e165e8f6-e7c4-4b1c-add5-019cf44e3c00" ownerguid="ebb5f3e5-bfe5-4a40-986a-938c1bdb9c76"> -<ExampleWords> -<AUni ws="en">sweetheart, honey, dear</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the terms of endearment?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e1678579-c8fb-48d6-87bd-c572534507e6" ownerguid="1688280e-27c4-47a8-87b7-8fe31b174ab8"> -<ExampleWords> -<AUni ws="en">grade, mark</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a teacher grading a test?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e169a9f0-e8fb-46d0-a08e-6bc8021b5fa1" ownerguid="868ef7d2-d980-4024-81dc-9b20c8ee9201"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e16d034d-dcfa-42eb-b4fb-f5a97037f1b4" ownerguid="ee9eede3-1b1e-4290-bae4-cc5739488bd7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">amulet</AUni> -<AUni ws="es">amuleta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f7be9cda-c7e3-43e1-b8e7-34d700958d5a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e16d034f-b31e-4a4d-827f-13f9ff0420c2" ownerguid="339f54a5-125b-435f-bf37-cfc2a2bd26d3"> -<ExampleWords> -<AUni ws="en">cheerful, solemn, horrified, pained, wry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe an expression that shows a particular feeling?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e16e5134-bc4a-4386-99e8-ef22dfcd6c66" ownerguid="0fa95a9d-ed47-4b1f-8afe-2eb20a786a66"> -<Form> -<AUni ws="qvm-x-ach">sëña</AUni> -<AUni ws="qvm-x-acl">sëña</AUni> -<AUni ws="qvm-x-akh">sëña</AUni> -<AUni ws="qvm-x-akl">sëña</AUni> -<AUni ws="qvm-x-ame">sëña</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e16eef96-5e76-4b22-abcd-03ea6e664d44" ownerguid="ccbbd16f-58c5-45c1-bfff-1fba64d9740e"> -<Question> -<AUni ws="en">(12) inceptive: the action or event begins. We are distinguishing this from the beginning of a state.</AUni> -</Question> -</rt> -<rt class="Segment" guid="e16f0302-f37e-4bf2-a547-1a0ae6237f0f" ownerguid="6ccf151f-a5cd-4991-a640-ac1db1d350af"> -<Analyses> -<objsur guid="2d771682-d394-4860-82e0-fe7d2d0416f9" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexExampleSentence" guid="e172f2cc-d1a0-48e6-b2cc-928f49b1b477" ownerguid="b899274c-ff53-4c85-b5d0-d7bfd17db946"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 22.11 Gracialanwan parlag runaga paypa amïgunmi caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="e1738984-2bec-4474-b2b1-8d06f734355d" ownerguid="e43ddd35-7194-446f-b467-f49d3c985ab9"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="e173ea34-c216-4702-aa24-ca9ab40d48dd" ownerguid="23bc906d-c15a-4368-b0ca-7443d5e37b83"> -<Abbreviation> -<AUni ws="en">9.6.2.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.720" /> -<DateModified val="2022-9-23 16:55:8.720" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that reason why someone does something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89G Cause and/or Reason</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Reason</AUni> -</Name> -<Questions> -<objsur guid="043efa5f-afff-4f23-b6bd-8abb5d6c9ed5" t="o" /> -<objsur guid="0ce54763-fc57-44a2-911b-1468d4f7ac28" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="e173eb34-6ea3-4a0e-ba9a-d3b3db8a0819" ownerguid="75555a9c-c36f-4491-bd2f-f63391bd339f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="e173f481-ec57-4d1c-b517-be38ccb038f5" ownerguid="86f90eff-158b-4f6d-82e9-fab136dfd141"> -<Abbreviation> -<AUni ws="en">4.2.1.8.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.208" /> -<DateModified val="2022-9-23 16:55:8.208" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to leaving an organization.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Leave an organization</AUni> -</Name> -<Questions> -<objsur guid="70fe6c31-3d40-4d86-b6e7-2d80593e0ca8" t="o" /> -<objsur guid="57a490bd-854d-427d-854b-9437340bb578" t="o" /> -<objsur guid="ff641728-c77a-42ad-abd3-fcd27733061b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="e17407bc-5642-45ce-8f14-5d49ea3d89ad"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pesti; peste</AUni> -<AUni ws="qvm-x-acl">pesti; pesti; peste</AUni> -<AUni ws="qvm-x-akh">pesti; peste</AUni> -<AUni ws="qvm-x-akl">pesti; pesti; peste</AUni> -<AUni ws="qvm-x-ame">pesti; peste</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+peste</AUni> -<AUni ws="qvm-x-acl">+peste</AUni> -<AUni ws="qvm-x-akh">+peste</AUni> -<AUni ws="qvm-x-akl">+peste</AUni> -<AUni ws="qvm-x-ame">+peste</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.818" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0f964442-16b9-42f2-9cbc-87015ad3d076" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+peste</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a350a2f2-eb17-48e2-8edb-19833c2c5502" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="66ea2298-9570-44dd-b4fe-16cbdc8f34d2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +peste 
\entryTyp root 
\gENG pestilence 
\gSPN peste 
\e +peste 
\c N0 
\mp +FinalI 
\ach pesti / ~_# 
\ach peste / _# 
\akh pesti / ~_# 
\akh peste / _# 
\acl pesti / ~_# 
\acl pesti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl peste +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pesti / ~_# 
\akl pesti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl peste +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pesti / ~_# 
\ame peste / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="e1757a32-b21f-4de4-afdd-e38c96f1a57e" ownerguid="c7fe3fd0-802d-429e-8f1c-9691f371f7bb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">päcu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">päcu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">päku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">päku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">päku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="4466969e-c86b-4570-931c-b36377271a06" t="r" /> -</Morph> -<Msa> -<objsur guid="68618445-e00f-461f-b5f0-47431ba947f9" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="e1763582-b3f3-4acc-943b-c3ffd6f7fea8" ownerguid="dc71598d-21a2-4598-9c12-13978796d2c9"> -<ExampleWords> -<AUni ws="en">sweepings, leaves</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the things that are removed?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e176e209-c166-4123-ae86-eae4632ec9c6" ownerguid="41dffbd8-76f3-4116-a7b4-4a830f54acdc"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="e17789ad-a590-41c9-8d4e-57376dfd46a3" ownerguid="fe2136a5-5025-4394-b6d7-29b78f480494"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -<Sense> -<objsur guid="7cd134ea-89c1-4a60-8992-dcac673bd263" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="e17a414d-23dc-4bb8-b04d-da4be0a577b0" ownerguid="6045c6eb-efea-4586-95f8-840d32578d66"> -<ExampleWords> -<AUni ws="en">rearrange, rearrangement, reorder, reordering, reform, reformation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to arranging things a second time, or arranging things after they have been mixed up?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e17b0c5a-2b85-4ec8-ada6-c370564c33c6" ownerguid="8c9196cf-be2a-4df9-8737-0b903ea07ccd"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e17bf8da-45f5-43de-bd6a-1c28d8611e02"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fie:rru</AUni> -<AUni ws="qvm-x-acl">fie:rru; fie:rru; fie:rro</AUni> -<AUni ws="qvm-x-akh">fie:rru</AUni> -<AUni ws="qvm-x-akl">fie:rru; fie:rru; fie:rro</AUni> -<AUni ws="qvm-x-ame">fie:rru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fierro</AUni> -<AUni ws="qvm-x-acl">+fierro</AUni> -<AUni ws="qvm-x-akh">+fierro</AUni> -<AUni ws="qvm-x-akl">+fierro</AUni> -<AUni ws="qvm-x-ame">+fierro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.548" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="07e6c671-3101-4bd9-976b-fe72c89a8698" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fierro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b0d99526-708a-426c-9e7c-447b9f48b23b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5cc30430-db05-474e-acf8-3306438b52aa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fierro 
\entryTyp root 
\gENG iron 
\gSPN fierro 
\e +fierro 
\c N0 
\ach fie:rru 
\akh fie:rru 
\acl fie:rru / _# 
\acl fie:rru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl fie:rro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl fie:rru / _# 
\akl fie:rru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl fie:rro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame fie:rru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="e180e046-1dd0-4f30-85ab-aada2c945041"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">acsa</AUni> -<AUni ws="qvm-x-acl">acsa</AUni> -<AUni ws="qvm-x-akh">aksa</AUni> -<AUni ws="qvm-x-akl">aksa</AUni> -<AUni ws="qvm-x-ame">aksa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aksa</AUni> -<AUni ws="qvm-x-acl">*aksa</AUni> -<AUni ws="qvm-x-akh">*aksa</AUni> -<AUni ws="qvm-x-akl">*aksa</AUni> -<AUni ws="qvm-x-ame">*aksa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.689" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="22b147b4-6edd-4338-ba8d-ade0f608d941" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aksa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="352913ff-b78b-4d11-bbdf-a36e15fba68f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="71ac2a0a-d174-4d0c-b155-d642f8fb7d1e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aksa 
\entryTyp root 
\gENG 
\gSPN respirar.débil 
\e *aksa 
\c V1 
\ach acsa 
\akh aksa 
\acl acsa 
\akl aksa 
\ame aksa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="e182e5b4-3bf1-4d09-9dc6-67078af831ee" ownerguid="d0131ae8-e30a-4628-b07c-808ccc852cc7"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e1848b28-0b1f-4ecc-b7d7-ea1f6aa6351a" ownerguid="2bea0d64-fca6-4864-a4d9-30eeb68fc280"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">cuerpo.grasoso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9c695b1e-953b-4888-9410-414a87138011" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e1851f3d-f1f5-4a39-b3e6-282dd4c7c7d9" ownerguid="dafc4b97-2b70-4986-b2b4-c05eb060786d"> -<ExampleWords> -<AUni ws="en">acceptance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the act of accepting an offer?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e185e099-8bcd-4073-a808-c2d23e4e273f" ownerguid="748f375c-4619-4601-bf58-56f51e624dbc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">flip.over</AUni> -<AUni ws="es">volcar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8cacaa62-0724-4cb3-9c62-1f9d6373771e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e18b169e-552c-4904-ad58-db7efe755c1e" ownerguid="173c4bcf-6cb9-4473-bd57-2ee41acc3051"> -<Form> -<AUni ws="qvm-x-ach">tsulu</AUni> -<AUni ws="qvm-x-acl">tsulu; tsulo</AUni> -<AUni ws="qvm-x-akh">tsulu</AUni> -<AUni ws="qvm-x-akl">tsulu; tsulo</AUni> -<AUni ws="qvm-x-ame">tsulu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e18d66ed-cc6c-4a28-9623-c40a915066b8" ownerguid="0ea972e6-0904-41bb-977b-7ee45ab4b91b"> -<Gloss> -<AUni ws="en">SIM4</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2790cea0-6fc1-4d02-ae0a-c73ee8e5d03e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="e18f1f89-c637-4733-9f17-982a52e6beed" ownerguid="186814de-424b-46de-99e9-78bad588c44c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.weed</AUni> -<AUni ws="es">deshierbar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a185a816-aa61-4ad1-bc23-336e55f6d452" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e18f36e9-f8ea-4b01-9867-d8bb7630f211" ownerguid="e603497a-50e2-4fb3-8100-893e6c13757e"> -<Form> -<AUni ws="qvm-x-ach">almendru; almendro</AUni> -<AUni ws="qvm-x-acl">almendru; almendru; almendro</AUni> -<AUni ws="qvm-x-akh">almendru; almendro</AUni> -<AUni ws="qvm-x-akl">almendru; almendru; almendro</AUni> -<AUni ws="qvm-x-ame">almendru; almendro</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="e18fdcdf-fda5-47cc-a9d8-58b6c8a3877d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bumbu; bumbo</AUni> -<AUni ws="qvm-x-acl">bumbu; bumbu; bumbo</AUni> -<AUni ws="qvm-x-akh">bumbu; bumbo</AUni> -<AUni ws="qvm-x-akl">bumbu; bumbu; bumbo</AUni> -<AUni ws="qvm-x-ame">bumbu; bumbo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bombo</AUni> -<AUni ws="qvm-x-acl">+bombo</AUni> -<AUni ws="qvm-x-akh">+bombo</AUni> -<AUni ws="qvm-x-akl">+bombo</AUni> -<AUni ws="qvm-x-ame">+bombo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.971" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="47c9d6b0-01d6-448e-b01f-af92835efc58" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bombo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5972b613-ebb5-4e87-9e5d-4fe9d1a2b6f9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="34da294c-ccb5-4306-bed7-bc4a795fa364" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bombo 
\entryTyp root 
\gENG drum 
\gSPN bombo 
\e +bombo 
\c N0 
\ach bumbu / ~_# 
\ach bumbo / _# 
\akh bumbu / ~_# 
\akh bumbo / _# 
\acl bumbu / ~_# 
\acl bumbu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl bumbo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl bumbu / ~_# 
\akl bumbu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl bumbo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame bumbu / ~_# 
\ame bumbo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="e19110d1-1b5f-4f64-b90c-2a0eab006612" ownerguid="63be33e7-9ca2-468d-9ff8-a1b813aacb74"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="e1929f77-7a20-4e4a-94e6-da125c17cc51" ownerguid="e0cd4a33-d8bb-45df-86f1-222d52ec9e4c"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="e194b0aa-a608-44fa-a0a6-3f8a73039116" ownerguid="e1de9a36-08e7-43a7-94de-7ac6139417e4"> -<Form> -<AUni ws="qvm-x-ach">tagä</AUni> -<AUni ws="qvm-x-acl">tagä</AUni> -<AUni ws="qvm-x-akh">taqä</AUni> -<AUni ws="qvm-x-akl">taqä</AUni> -<AUni ws="qvm-x-ame">taqä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e195f4ce-b432-40d1-8a28-3756f2fb7ae5" ownerguid="ccbbd16f-58c5-45c1-bfff-1fba64d9740e"> -<Question> -<AUni ws="en">(5) excessive duration: action is extended over a long period of time, longer than normal for that action.</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e196bb08-55f4-47dd-ae9e-75da0efaee04"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">calpa</AUni> -<AUni ws="qvm-x-acl">calpa</AUni> -<AUni ws="qvm-x-akh">kalpa</AUni> -<AUni ws="qvm-x-akl">kalpa</AUni> -<AUni ws="qvm-x-ame">kalpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kallpa.v</AUni> -<AUni ws="qvm-x-acl">*kallpa.v</AUni> -<AUni ws="qvm-x-akh">*kallpa.v</AUni> -<AUni ws="qvm-x-akl">*kallpa.v</AUni> -<AUni ws="qvm-x-ame">*kallpa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.912" /> -<DateModified val="2022-10-10 21:18:47.215" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d32ca6af-90ad-4ff2-a472-d46b038b419e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kallpa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9ce94725-4ae2-4e86-84bc-620acdacb4bd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="58d48b6c-ab24-4e15-993b-71f65ecf8042" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kallpa.v 
\entryTyp root 
\gENG 
\gSPN 
\e *kallpa.v 
\c V1 
\ach calpa 
\akh kalpa 
\acl calpa 
\akl kalpa 
\ame kalpa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e197531f-b06b-44ae-80f9-4e9d982685d1" ownerguid="0296465a-25de-4af6-a122-376956b4b452"> -<ExampleWords> -<AUni ws="en">you, your, yours</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What pronouns refer to the audience?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e19812eb-e4a3-4ac7-9ac0-5bd0d2ef3828" ownerguid="e0462bde-bb52-4cd0-a8d1-4db77a752426" /> -<rt class="LexSense" guid="e19a84a1-bac6-436e-9626-5b19cda83bd4" ownerguid="e45f9991-f49f-4c37-8646-11fced900bb0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="3bbe3015-fa1c-49f3-9eeb-096fa0d66e1e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e19cbe30-6499-4465-a837-19d739166956" ownerguid="2e2a17ba-9d81-4a3d-8af5-96c8f0e39e7e"> -<ExampleWords> -<AUni ws="en">wealth, savings, investments</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What is stored wealth called?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e19e273c-0aed-49fd-818b-cae0c5228de7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nyalcu</AUni> -<AUni ws="qvm-x-acl">nyalcu; nyalcu; nyalco</AUni> -<AUni ws="qvm-x-akh">nyalku</AUni> -<AUni ws="qvm-x-akl">nyalku; nyalku; nyalko</AUni> -<AUni ws="qvm-x-ame">nyalku</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.536" /> -<DateModified val="2022-10-15 16:8:1.105" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0f136428-301e-4da4-8e05-0ff3a6d5ee94" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">MOST</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ccc7375e-4d88-4127-8778-4383b399d945" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="50f1f32b-3b9c-4f46-a101-3c6a9283694b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx MOST 
\entryTyp suffix 
\gENG MOSTLY 
\gSPN MAYOR 
\e MOST 
\c N0/N0 
\o 180 
\mp +foreshortens 
\ach nyalcu 
\akh nyalku 
\acl nyalcu / _# 
\acl nyalcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl nyalco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl nyalku / _# 
\akl nyalku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl nyalko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame nyalku 
\i Trïgu agunyalcula caycan. 
\i Cabra yurishga murunyalcula. 
\i Jaca acapanyalcula caycan. Pishtarcunäpagnöga manami cantsu.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e1a381ab-210b-4d7c-ada4-80c80984ecc1" ownerguid="0d38c343-9c51-47fe-a367-ffadfc92c507"> -<ExampleWords> -<AUni ws="en">green, immature, young</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a plant that is young?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="e1a431ea-cae6-4d17-b2ff-4fdadf59c1b3" ownerguid="5c4a3227-111c-422f-aec2-b6edeee36482"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="a3c6d426-590f-405d-9033-9458cb60faee" t="o" /> -<objsur guid="55f1620a-ea70-4e8a-bb25-a227193ce37f" t="o" /> -<objsur guid="939b19ab-0243-4be5-9108-1f77bab4e84d" t="o" /> -<objsur guid="92b09e81-6822-44a9-a57e-7e09e4f52900" t="o" /> -<objsur guid="f2375078-658a-4dfd-a016-20bd96db29e2" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="e1a655e6-6fb7-4fdc-8a0d-e8978fe1af54" ownerguid="44dc42e4-e9c7-4aa9-ac9b-1008385244b1"> -<ExampleWords> -<AUni ws="en">stepfather</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) If your father dies and your mother remarries, what do you call your mother's second husband?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="e1ac83c2-352f-4a2e-9612-99e66d6d3d0c" ownerguid="b0a9a631-e0dc-47d4-a762-e9a627732218"> -<Abbreviation> -<AUni ws="en">4.5.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.253" /> -<DateModified val="2022-9-23 16:55:8.253" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a slave--a person owned by another and obligated to work without wages.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>87E Slave, Free</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Slave</AUni> -</Name> -<Questions> -<objsur guid="1e288b05-6bd4-4749-bf60-83eb074b3c0d" t="o" /> -<objsur guid="3e683400-6cb1-4e00-9ff7-c671a05d7916" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="e1ae61c6-6985-4d26-8fbf-7add9450c76c" ownerguid="798ec463-abb7-40ce-b5b7-98bc2358a6c7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fold</AUni> -<AUni ws="es">doblar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3d1b3cc4-1505-4078-b66f-43cacd1cff64" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e1af4d84-e538-481c-a258-28e25803b990" ownerguid="1c3f8996-362e-4ee0-af02-0dd02887f6aa"> -<ExampleWords> -<AUni ws="en">celestial, heavenly, hellish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something belonging to heaven or hell?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e1ba9857-3841-4b31-9233-f4fbc38df1bb" ownerguid="e03998cf-0b4d-49ea-b9a8-15a3e3ca2c81"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">worse</AUni> -<AUni ws="es">peor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b1bdfbba-bc97-4a7b-93c3-2dd9ae94b147" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e1bcd8ac-cd84-4bc6-a199-f1c1e0c0c16a" ownerguid="ff736f67-197b-46b9-bc14-edbeb1fb3d5a"> -<ExampleWords> -<AUni ws="en">possessions, property</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the things a person owns?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e1bd36d4-6be2-449f-9980-8cc8828a6f2c" ownerguid="0623a5c0-d0dd-4c0c-8f61-fe7192aa08b0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7da8bbf0-483c-49b3-9b14-b611d143fe91" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="PhPhoneme" guid="e1bd5b84-48dc-4df5-8cb0-de15793f00f6" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="1aee27e9-b931-4605-896c-bb6cac6a605d" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">alveolar affricate</Run> -</AStr> -</Description> -<Name> -<AUni ws="qvm-x-ach">ts</AUni> -<AUni ws="qvm-x-acl">ts</AUni> -<AUni ws="qvm-x-akh">ts</AUni> -<AUni ws="qvm-x-akl">ts</AUni> -<AUni ws="qvm-x-ame">ts</AUni> -</Name> -</rt> -<rt class="WfiWordform" guid="e1be90ea-ee50-452b-9263-c4fa0814de6a"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">ruwakuykulä</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="e1beba85-e228-460d-bdb2-b879335882be" ownerguid="28ba8f5c-5baa-4500-a6f5-be292caa673f"> -<ExampleWords> -<AUni ws="en">disobey, break the law, refuse to submit, rebel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being disobedient?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e1bfbabf-6076-4702-8013-05c093abd868"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">capri:chu</AUni> -<AUni ws="qvm-x-acl">capri:chu; capri:chu; capri:cho</AUni> -<AUni ws="qvm-x-akh">capri:chu</AUni> -<AUni ws="qvm-x-akl">capri:chu; capri:chu; capri:cho</AUni> -<AUni ws="qvm-x-ame">capri:chu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+capricho</AUni> -<AUni ws="qvm-x-acl">+capricho</AUni> -<AUni ws="qvm-x-akh">+capricho</AUni> -<AUni ws="qvm-x-akl">+capricho</AUni> -<AUni ws="qvm-x-ame">+capricho</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.520" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="36da1c5b-cbaa-4959-bafa-8d3533c94527" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+capricho</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8bb20465-4e03-40af-8fd0-65b7a22d214e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="df1b214f-62e0-4f0b-a3f1-0dc6b450c891" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +capricho 
\entryTyp root 
\gENG caprice 
\gSPN capricho 
\e +capricho 
\c N0 
\ach capri:chu 
\akh capri:chu 
\acl capri:chu / _# 
\acl capri:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl capri:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl capri:chu / _# 
\akl capri:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl capri:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame capri:chu 
\i PRO 7.11 Tsay warmega caprïchunta rurar wayinchöpis manami tranquïlu täcuntsu.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="e1c10240-238a-4290-a8f3-160305db3782" ownerguid="774e2882-45a1-4b81-a561-ac76b27554d3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e1c1757b-2bcc-4e64-a30e-875fd0e99871" ownerguid="00593c1d-59f7-4aab-a228-ab1ab60e420d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bury</AUni> -<AUni ws="es">enterrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b50fda60-e10d-46a2-8b5e-1d9c6a5f1e19" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e1c40888-f755-4237-a63f-2b1e50e4551b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wachcu</AUni> -<AUni ws="qvm-x-acl">wachcu; wachcu; wachco</AUni> -<AUni ws="qvm-x-akh">wachku</AUni> -<AUni ws="qvm-x-akl">wachku; wachku; wachko</AUni> -<AUni ws="qvm-x-ame">wachku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*watruku</AUni> -<AUni ws="qvm-x-acl">*watruku</AUni> -<AUni ws="qvm-x-akh">*watruku</AUni> -<AUni ws="qvm-x-akl">*watruku</AUni> -<AUni ws="qvm-x-ame">*watruku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.586" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="969b6e24-4ed4-4317-8c6d-6679d68aed61" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*watruku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="28be415f-632d-4854-bd45-702fbe39108b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="699a8ed0-23b7-46f4-8341-5cc861e7b564" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *watruku 
\entryTyp root 
\gENG cloth.belt 
\gSPN faja.tejida 
\e *watruku 
\c N0 
\ach wachcu 
\akh wachku 
\acl wachcu / _# 
\acl wachcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wachco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wachku / _# 
\akl wachku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl wachko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wachku</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e1cb0e14-ce31-43c5-9d28-03672d9718e3" ownerguid="7988974c-99fd-40dd-9b5e-2d81ec603ddc"> -<ExampleWords> -<AUni ws="en">lush, dense, thick, overgrown</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to land where many plants grow?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e1cd0726-02f0-424c-a325-3c38a433d2ca" ownerguid="45b9bf61-3138-4206-9478-b4d3f082358b"> -<ExampleWords> -<AUni ws="en">speak in unison, speak at once, congregational reading</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to many people speaking in unison?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e1d0e4ff-3db9-4b7c-bbfe-39688b7e61e0" ownerguid="8570f05c-a152-4117-9f54-4edfa9c06a32"> -<ExampleWords> -<AUni ws="en">fault, blame, responsible, be to blame for, be guilty of, be responsible for, guilt, responsibility, guilty, blameless, innocent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to who is responsible for something bad?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e1da583e-b5cc-42ea-b244-f78341b59579" ownerguid="dac6537a-5a97-4c35-8c40-7ea8ff36cdb4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="e1dd83dd-955a-4bc7-a761-fc91555da1f8" ownerguid="5422d4ba-8af4-4767-912e-43b60ef28eab"> -<Abbreviation> -<AUni ws="en">9.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a complete degree--when something is done, happens, is thought, is felt, etc completely and in every way.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>78D Completely, Enough</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Completely</AUni> -</Name> -<Questions> -<objsur guid="7ba762be-6824-4f62-bc42-8cd492f0e378" t="o" /> -<objsur guid="c7da6185-6515-4ca8-861a-2461e65020c6" t="o" /> -<objsur guid="2d4b5141-d1aa-4d85-b06d-380cd64268fc" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="e1de9a36-08e7-43a7-94de-7ac6139417e4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">taga:</AUni> -<AUni ws="qvm-x-acl">taga:</AUni> -<AUni ws="qvm-x-akh">taqa:</AUni> -<AUni ws="qvm-x-akl">taqa:</AUni> -<AUni ws="qvm-x-ame">taqa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*taqay.2</AUni> -<AUni ws="qvm-x-acl">*taqay.2</AUni> -<AUni ws="qvm-x-akh">*taqay.2</AUni> -<AUni ws="qvm-x-akl">*taqay.2</AUni> -<AUni ws="qvm-x-ame">*taqay.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.815" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e194b0aa-a608-44fa-a0a6-3f8a73039116" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*taqay.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8fde3700-f71e-41b4-bf59-e5f182935722" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="de02b899-a714-4036-8176-ef5d14a23843" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *taqay.2 
\entryTyp root 
\gENG 
\gSPN 
\e *taqay.2 
\c NOSUFF 
\mp +FinalLength 
\ach taga: 
\akh taqa: 
\acl taga: 
\akl taqa: 
\ame taqa:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="e1e0b800-85ad-4886-abe5-9f67c022a5ed" ownerguid="91913920-8a6a-4ba0-9361-d6cc9e1f3639"> -<Abbreviation> -<AUni ws="en">8.6.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.678" /> -<DateModified val="2022-9-23 16:55:8.678" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the end of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">End, point</AUni> -</Name> -<Questions> -<objsur guid="93c08fb3-93ea-4519-903f-2158a3cff501" t="o" /> -<objsur guid="9f4c768a-655a-44cd-ab95-b16e182ac20d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="e1e8267e-3fcc-45f0-8fff-f4af7c74a675" ownerguid="82ae1b44-f12c-4cad-8c3b-55ad2c64abd4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e1e8269c-2ea9-4046-9d6c-1549060c6f63" ownerguid="e0c32642-7c51-4e23-a776-f63f2f2f936d"> -<ExampleWords> -<AUni ws="en">uncertain, doubtful, be in doubt, there is doubt about, it's touch and go, hang in the balance, iffy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something is uncertain, but it is likely that something bad will happen?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e1e8e65b-30a9-4c76-b6a7-86ae5ab5d2ac" ownerguid="1d8633e0-4279-4ddc-826e-16aa08a977e5"> -<ExampleWords> -<AUni ws="en">cartilage, tendon, fluid sack, socket, ball</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What are the parts of a joint?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e1eaff48-f1f7-4835-8ef7-33a23ca79067" ownerguid="1e94e6a4-6fb3-4ade-9e3b-a34c77921726"> -<Form> -<AUni ws="qvm-x-ach">uyshëru</AUni> -<AUni ws="qvm-x-acl">uyshëru; uyshëru; uyshëro</AUni> -<AUni ws="qvm-x-akh">uyshëru</AUni> -<AUni ws="qvm-x-akl">uyshëru; uyshëru; uyshëro</AUni> -<AUni ws="qvm-x-ame">uyshëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="e1ee6346-0067-4309-b0af-c87b126e793d" ownerguid="95e6189c-873b-4d2d-834d-4fed699e25a6"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 9.15 Rey Salomónga faynatsiypami arutsergan \nd Tayta Diospa\nd* templunta, quiquinpa palaciunta, patac cananpag Milo pergata y Jerusalén marcapa murällanta.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="e1eea6d8-ebb6-40f7-9935-0a270472ac15" ownerguid="c01bbcef-7d89-4753-bafd-3a7f23648982"> -<ExampleWords> -<AUni ws="en">quack</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a person who pretends to be a doctor?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e1efcec2-0474-4efb-8c6a-8c9595a17f09"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">manija</AUni> -<AUni ws="qvm-x-acl">manija</AUni> -<AUni ws="qvm-x-akh">manija</AUni> -<AUni ws="qvm-x-akl">manija</AUni> -<AUni ws="qvm-x-ame">manija</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+manejar</AUni> -<AUni ws="qvm-x-acl">+manejar</AUni> -<AUni ws="qvm-x-akh">+manejar</AUni> -<AUni ws="qvm-x-akl">+manejar</AUni> -<AUni ws="qvm-x-ame">+manejar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.313" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a35355be-ec71-4967-ac56-a576c15e2b2e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+manejar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5cd9bc08-d884-4115-ad17-67fbaae186db" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5c188148-bfff-4b1e-b897-67976d13da64" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +manejar 
\entryTyp root 
\gENG operate 
\gSPN manejar 
\e +manejar 
\c V2 
\ach manija 
\akh manija 
\acl manija 
\akl manija 
\ame manija</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="e1f27b2d-8d02-4438-baba-e1eb8df6c64b" ownerguid="f30563f9-3a8b-4ca3-a632-77354009248b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" t="r" /> -</Morph> -<Msa> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="e1f35bca-2f42-4f8b-8bb2-70d6c74f1eb0" ownerguid="9a456463-3c71-4f9a-8117-dc2fcb087bd3"> -<ExampleWords> -<AUni ws="en">preserver of the fire</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to a person who is responsible to make sure the fire does not go out?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e1f515b4-cdb7-4aec-aa7d-7a3a00716b56" ownerguid="6bf7ceaa-d5fb-45fa-bfde-a66a8e8d0d33"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="2d30e329-9f67-442f-bf9b-20015ff4bb82" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">muster.courage</AUni> -<AUni ws="es">valorar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1f274cd5-6d8a-4e22-b22d-93d08989aaef" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e1f5490e-19bd-4861-8039-962cd46de12e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">reservoriu; reservorio</AUni> -<AUni ws="qvm-x-acl">reservoriu; reservoriu; reservorio</AUni> -<AUni ws="qvm-x-akh">reservoriu; reservorio</AUni> -<AUni ws="qvm-x-akl">reservoriu; reservoriu; reservorio</AUni> -<AUni ws="qvm-x-ame">reservoriu; reservorio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+reservorio</AUni> -<AUni ws="qvm-x-acl">+reservorio</AUni> -<AUni ws="qvm-x-akh">+reservorio</AUni> -<AUni ws="qvm-x-akl">+reservorio</AUni> -<AUni ws="qvm-x-ame">+reservorio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.336" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b980ea65-ce70-445c-84d3-b672ecc246b5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+reservorio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="31c09272-cb7e-4724-a494-17bf0e109065" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="324a5f0a-bc87-4b54-a8fc-9548a50eaf0a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +reservorio 
\entryTyp root 
\gENG 
\gSPN 
\e +reservorio 
\c N0 
\ach reservoriu / ~_# 
\ach reservorio / _# 
\akh reservoriu / ~_# 
\akh reservorio / _# 
\acl reservoriu / ~_# 
\acl reservoriu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl reservorio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl reservoriu / ~_# 
\akl reservoriu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl reservorio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame reservoriu / ~_# 
\ame reservorio / _# 
\i NAM 2.8 Reservorio juchucäcuptin yacu bunyaypa bunyar aywagnograg Ninive runacunapis gueshpir aywacärin.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="e1f7ead9-c410-48c1-9daa-11da857c79a3" ownerguid="f67cee84-0f14-4dbc-9618-2305c4d5f0b2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e1fbb9d1-56eb-4a40-af91-9d31f6c475fb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">director</AUni> -<AUni ws="qvm-x-acl">director</AUni> -<AUni ws="qvm-x-akh">director</AUni> -<AUni ws="qvm-x-akl">director</AUni> -<AUni ws="qvm-x-ame">director</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+director</AUni> -<AUni ws="qvm-x-acl">+director</AUni> -<AUni ws="qvm-x-akh">+director</AUni> -<AUni ws="qvm-x-akl">+director</AUni> -<AUni ws="qvm-x-ame">+director</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.416" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="56477f6f-9dac-4cac-90ba-594ba88579a2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+director</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b423f042-e2e0-4737-98d8-a45205e5e634" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b8403064-c76e-43cf-956d-d9681db3bfbd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +director 
\entryTyp root 
\gENG principal 
\gSPN director 
\e +director 
\c N0 
\mp +FinalC 
\ach director 
\akh director 
\acl director 
\akl director 
\ame director</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e2012293-be49-46d1-b51b-aad40da5c286" ownerguid="c5996b7d-0acc-4ac7-bfa0-09b93a0eccbc"> -<ExampleWords> -<AUni ws="en">miner, prospector</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a person who mines?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e20220bc-b282-4d34-b629-4a60ed7d2dd6" ownerguid="2aabd548-5ee2-4962-8f10-84d1b0427c41"> -<ExampleWords> -<AUni ws="en">endure, stand, bear, put up with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to enduring a problem?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e20487dd-65cf-4afd-a413-3e123f8036b2" ownerguid="6e41c546-4be4-41a5-8eb9-ff6ea23d2737"> -<Form> -<AUni ws="qvm-x-ach">manda</AUni> -<AUni ws="qvm-x-acl">manda</AUni> -<AUni ws="qvm-x-akh">manda</AUni> -<AUni ws="qvm-x-akl">manda</AUni> -<AUni ws="qvm-x-ame">manda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="e20a5a33-9803-47fb-abb1-15d48931c335" ownerguid="3056981e-aa4f-4c3b-8e39-609913a69a60"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e20e3ebe-56d5-457b-b5c5-eda348481a24" ownerguid="f352a437-58f2-4920-aec3-eda8041f7447"> -<ExampleWords> -<AUni ws="en">first, original, initial, earliest, inaugural, prime</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is first in order or time?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="e20f83b8-bfb2-4709-80f8-2e039fed9b4e"> -<Analyses> -<objsur guid="623a4526-0041-4dc5-b1d9-716b40e3d02a" t="o" /> -<objsur guid="7a386228-f92e-436c-9fd1-c3f3abab6906" t="o" /> -</Analyses> -<Checksum val="-1832192368" /> -<Form> -<AUni ws="qvm-x-akh">trukanqa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="e2143cef-5297-4799-a37e-7b298a8d56d3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ru:da</AUni> -<AUni ws="qvm-x-acl">ru:da</AUni> -<AUni ws="qvm-x-akh">ru:da</AUni> -<AUni ws="qvm-x-akl">ru:da</AUni> -<AUni ws="qvm-x-ame">ru:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ruda</AUni> -<AUni ws="qvm-x-acl">+ruda</AUni> -<AUni ws="qvm-x-akh">+ruda</AUni> -<AUni ws="qvm-x-akl">+ruda</AUni> -<AUni ws="qvm-x-ame">+ruda</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.386" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b85aa310-0382-4674-9e65-5b189fcb3cf9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ruda</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="79c4dcf9-71da-44b3-8bc5-97c4974e746a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ec760cf3-ec3e-449d-9072-db082f0ea10f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ruda 
\entryTyp root 
\gENG 
\gSPN ruda 
\e +ruda 
\c N0 
\ach ru:da 
\akh ru:da 
\acl ru:da 
\akl ru:da 
\ame ru:da</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e215e2c1-94d8-46fb-a9bb-856044dffb2f" ownerguid="bea4961a-06b3-41b3-8042-db16d18b34fc"> -<Form> -<AUni ws="qvm-x-ach">asyari</AUni> -<AUni ws="qvm-x-acl">asyari; asyare</AUni> -<AUni ws="qvm-x-akh">asyari</AUni> -<AUni ws="qvm-x-akl">asyari; asyare</AUni> -<AUni ws="qvm-x-ame">asyari</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="e21b5dbf-bc02-481c-a3b2-eccd7fbb21e8" ownerguid="309ef96d-4cdb-4c3c-b386-8078d6f83fda"> -<Form> -<AUni ws="qvm-x-ach">santu; santo</AUni> -<AUni ws="qvm-x-acl">santu; santu; santo</AUni> -<AUni ws="qvm-x-akh">santu; santo</AUni> -<AUni ws="qvm-x-akl">santu; santu; santo</AUni> -<AUni ws="qvm-x-ame">santu; santo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="e22343c1-7f13-4dbd-aa61-16784ec9c367"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">legpa</AUni> -<AUni ws="qvm-x-acl">legpa</AUni> -<AUni ws="qvm-x-akh">leqpa</AUni> -<AUni ws="qvm-x-akl">leqpa</AUni> -<AUni ws="qvm-x-ame">liqpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lliqpa</AUni> -<AUni ws="qvm-x-acl">*lliqpa</AUni> -<AUni ws="qvm-x-akh">*lliqpa</AUni> -<AUni ws="qvm-x-akl">*lliqpa</AUni> -<AUni ws="qvm-x-ame">*lliqpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.205" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ee33071b-34d0-428b-a181-3aac392d4b85" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lliqpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3d7ca89d-06ac-4b06-95a5-89dff3378911" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1c1bda00-c53e-4cde-b9db-ed8baa2b84d0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lliqpa 
\entryTyp root 
\gENG peel.skin 
\gSPN pelar.piel 
\e *lliqpa 
\c V2 
\ach legpa 
\akh leqpa 
\acl legpa 
\akl leqpa 
\ame liqpa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e223500b-5703-4495-afc7-df439fe60c86" ownerguid="7337b2dd-b574-4a41-affa-2dfad7f6cdbc"> -<ExampleWords> -<AUni ws="en">roll a die, flip a coin, draw straws, pick names out of a hat, rock-paper-scissors, pick a card (out of a deck), count off, decide who goes first</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What methods are used for making a decision by chance?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="e22444ea-92b3-4abc-a341-69f01dfab3a4" ownerguid="403f06ff-a982-4447-8bc7-c3f71237999e"> -<Category> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</Category> -<Evaluations> -<objsur guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="5462984b-c85e-4747-b64d-cc6b59db8f0d" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="9d5b0469-8604-4eb3-8202-c7484bfae021" t="o" /> -<objsur guid="f237215e-b460-47d0-8bf9-fcbe0fd00645" t="o" /> -<objsur guid="bc084959-493b-48ca-ba96-33a2cddc7fce" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="e2246243-cfba-4cf0-ab09-0066cb082b62"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">civil</AUni> -<AUni ws="qvm-x-acl">civil</AUni> -<AUni ws="qvm-x-akh">civil</AUni> -<AUni ws="qvm-x-akl">civil</AUni> -<AUni ws="qvm-x-ame">civil</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+civil</AUni> -<AUni ws="qvm-x-acl">+civil</AUni> -<AUni ws="qvm-x-akh">+civil</AUni> -<AUni ws="qvm-x-akl">+civil</AUni> -<AUni ws="qvm-x-ame">+civil</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.122" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f83fcc10-31b1-4c36-ae1a-c5d9c5fb61cb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+civil</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bd96fe45-5971-43c1-aae3-f1d65862d52a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b15c3a9d-ab6c-4850-b28a-46af4d2483e1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +civil 
\entryTyp root 
\gENG 
\gSPN 
\e +civil 
\c N0 
\mp NeverLowered 
\ach civil 
\akh civil 
\acl civil 
\akl civil 
\ame civil 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e2246a0d-5348-4ef4-8504-db5f254d3737" ownerguid="e9620da0-4016-47ee-a991-fd7d13b8469e"> -<Form> -<AUni ws="qvm-x-ach">estäca</AUni> -<AUni ws="qvm-x-acl">estäca</AUni> -<AUni ws="qvm-x-akh">estäca</AUni> -<AUni ws="qvm-x-akl">estäca</AUni> -<AUni ws="qvm-x-ame">estäca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="e2296085-c633-4bf3-82de-2dfb744e7710" ownerguid="d4321205-e522-49b2-b9b0-014d63801cbf"> -<Form> -<AUni ws="qvm-x-ach">pichu</AUni> -<AUni ws="qvm-x-acl">pichu; picho</AUni> -<AUni ws="qvm-x-akh">pichu</AUni> -<AUni ws="qvm-x-akl">pichu; picho</AUni> -<AUni ws="qvm-x-ame">pichu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="e22aa72d-8119-410c-871e-cf23ff2aa36e" ownerguid="6545d219-5055-445e-b141-9a57907a923b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="7d8e7047-8de6-43a4-a0b5-5e69076a1f3c" t="o" /> -<objsur guid="e47ee761-f004-4355-ae77-1f3402b7e408" t="o" /> -<objsur guid="15be7783-0dda-4182-928d-aa347c890394" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="e22c47e0-5249-4e0b-9cdc-f5ce9429a983" ownerguid="91cb814b-266a-4472-a280-d29d8032a4f5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7ca7a5b0-e671-4e3a-9980-fbf79f26de30" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="e22d860a-d207-4649-8ab5-4592b838febb" ownerguid="5e9f361d-17dc-4ada-a312-8da269d22a64"> -<Abbreviation> -<AUni ws="en">1.6.1.1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.978" /> -<DateModified val="2022-9-23 16:55:7.978" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for mammals that live in the sea--whales and dolphins (phylum Chordata, class Mammalia, order Cetacea), seals (phylum Chordata, class Mammalia, order Pinnipedia), and sea cows (phylum Chordata, class Mammalia, order Sirenia).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Sea mammal</AUni> -</Name> -<Questions> -<objsur guid="05352866-6e35-431b-ab3e-373e7389cf9b" t="o" /> -<objsur guid="1e432fa6-e050-4192-87c1-8b98eb18ac65" t="o" /> -<objsur guid="d7bf361a-28ec-4092-962c-3c4b97b4090b" t="o" /> -<objsur guid="097b2eba-86c7-4e51-897f-e3c38e914ce9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="e232df53-715e-4b6c-b9b0-fc55797ec5d1" ownerguid="aab82dc7-de9f-44b3-845e-0c926f47cfb6"> -<ExampleWords> -<AUni ws="en">case, declension</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to refer to case?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e2336a67-ebf2-435e-a129-2680f09a99df" ownerguid="801b1d49-7007-46e0-94b7-c61e7b8afdf2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="e233f98c-7064-4101-a273-271196278937" ownerguid="78a977cb-31d3-4a4a-b2a5-8cbbd69a7c6a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e234ba41-daa0-43fa-ae0f-fc3e53f8a18f" ownerguid="71fef8c1-59e0-413a-9742-0fb1a9c09d01"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="f926bd01-36eb-434f-88ad-057cc9e5cbda" t="o" /> -</Examples> -<Gloss> -<AUni ws="es">sarna</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9c459cd2-2eb2-4a18-bdde-eeaaae6be022" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="e2391443-cfdf-485e-abed-b5b528c4f11c" ownerguid="92dd22f1-1c76-4735-aa3f-98fc742469ab"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e239aef4-3c7d-4d3d-a4b1-4ea865985857" ownerguid="bd81aa47-8112-4aab-b293-fdd2fc71869d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">verb</AUni> -<AUni ws="es">verbo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b206df6d-1231-4c73-bd6c-1c5a95114fab" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="e23fec76-9998-4f60-ba18-22267672b78b" ownerguid="7b7f948a-733c-4245-a403-1e7e35bb5c9a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsuri</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsuri; tsuri; tsure</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsuri</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsuri; tsuri; tsure</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsuri</Run> -</AStr> -</Form> -<Morph> -<objsur guid="cf9bd705-f17b-4a5e-a9df-1d6074f14622" t="r" /> -</Morph> -<Msa> -<objsur guid="0eb9ad89-62b1-4032-a9a0-66d396ddb503" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="e2495a6a-6d6c-419d-b533-66e1837f4950" ownerguid="2191d0e8-c885-415a-843c-9b3c36383f91"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">brace</AUni> -<AUni ws="es">berbiquí</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="673f0fb3-f04f-488d-9a31-c54b8833f4e6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="e24c3b1b-b94e-4e04-b390-4184d00a0871" ownerguid="57e30013-110b-4dd7-b837-6d28f81d0ee1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">council</AUni> -<AUni ws="es">consejo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e7a8fe92-7e46-4f56-b6ae-42d1edd99ce4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e24d12d1-5e14-441a-b765-f5bc57874b08" ownerguid="21ebc64a-a1b8-45bd-b7f6-143a053f1d31"> -<ExampleWords> -<AUni ws="en">coach, to coach a team, captain, to captain a team</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What is the leader of a team called?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="e24e36e4-ea4b-40e3-b4ea-23040287a5b7" ownerguid="2eb242e5-f0f1-4411-bd0c-f1d9d7371fc4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">no</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">no</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">no</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">no</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">no</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1c2afedd-b532-41e4-8eb0-9b00c2d75090" t="r" /> -</Morph> -<Msa> -<objsur guid="dbacef16-50cb-4f71-a590-54ec4684dfe4" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="e24ee12a-3599-40ac-81b6-707481152dff" ownerguid="2d57ebec-b9cc-48f8-bf5e-165cfa6739e9"> -<Form> -<AUni ws="qvm-x-ach">palaciu; palacio</AUni> -<AUni ws="qvm-x-acl">palaciu; palaciu; palacio</AUni> -<AUni ws="qvm-x-akh">palaciu; palacio</AUni> -<AUni ws="qvm-x-akl">palaciu; palaciu; palacio</AUni> -<AUni ws="qvm-x-ame">palaciu; palacio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e250016d-04a2-4d97-902e-a395bccaa737" ownerguid="c5e508cb-4be1-4e1d-ab39-c66e0056daf4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="8479dab1-7fa4-45aa-b89a-6632cf28525f" t="o" /> -</Examples> -<Gloss> -<AUni ws="es">ropa muy larga que incomoda caminar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0706fae4-582a-47c6-8df7-95d00c132ba9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="e255010c-5abb-43fb-a3ff-e04807ae9631" ownerguid="6fd38eb4-21e9-4b1e-8538-ae2461b28912"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 V0/V0 R0/R0 ONSHEV/ONSHEV BN/BN</Run> -</AStr> -</Custom> -<Definition> -<AStr ws="en"> -<Run ws="en">yes-no question</Run> -</AStr> -<AStr ws="es"> -<Run ws="es">pregunta afirmativa negativa</Run> -</AStr> -</Definition> -<Gloss> -<AUni ws="en">YN?</AUni> -<AUni ws="es">?AN</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="499e6c5a-93d8-4e8b-8ff1-07f40fc23fee" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e2565f5b-ed3f-487f-97cb-b6786f567cfc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chismo:sa</AUni> -<AUni ws="qvm-x-acl">chismo:sa</AUni> -<AUni ws="qvm-x-akh">chismo:sa</AUni> -<AUni ws="qvm-x-akl">chismo:sa</AUni> -<AUni ws="qvm-x-ame">chismo:sa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+chismosa</AUni> -<AUni ws="qvm-x-acl">+chismosa</AUni> -<AUni ws="qvm-x-akh">+chismosa</AUni> -<AUni ws="qvm-x-akl">+chismosa</AUni> -<AUni ws="qvm-x-ame">+chismosa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.325" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9830deb9-7085-4427-8eda-1e5a937e0859" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+chismosa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="41b8c45d-d329-4d73-bfc4-b1de4ed1272a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9b1aa350-0d18-4b46-8cd7-f3cc4fe6b661" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +chismosa 
\entryTyp root 
\gENG 
\gSPN 
\e +chismosa 
\c N0 
\ach chismo:sa 
\akh chismo:sa 
\acl chismo:sa 
\akl chismo:sa 
\ame chismo:sa 
\i PRO 9.13 Mana tantyacog cayga chismösa, upa y togshun tsaquishga warminogmi caycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e256835b-c4a0-4ca5-ab13-c32036ea234a" ownerguid="b4aa4bbd-8abf-4503-96e4-05c75efd23d5"> -<ExampleWords> -<AUni ws="en">clear, clear up, sun comes out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe the weather when it is getting better?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e258eee9-5bc3-4ede-a5b1-7086af736d64"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shuca</AUni> -<AUni ws="qvm-x-acl">shuca</AUni> -<AUni ws="qvm-x-akh">shuka</AUni> -<AUni ws="qvm-x-akl">shuka</AUni> -<AUni ws="qvm-x-ame">shuka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shuka.v</AUni> -<AUni ws="qvm-x-acl">*shuka.v</AUni> -<AUni ws="qvm-x-akh">*shuka.v</AUni> -<AUni ws="qvm-x-akl">*shuka.v</AUni> -<AUni ws="qvm-x-ame">*shuka.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.612" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="601dc8dd-4578-4553-9435-ed0f3da16f2f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shuka.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9e8e98d6-7eb4-4b6c-a1c0-a5b47bcbd8c3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="92d3a47c-c3c1-40f5-9451-e07ce94b5a64" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shuka.v 
\entryTyp root 
\gENG whistle 
\gSPN silbar 
\e *shuka.v 
\c V1 
\ach shuca 
\akh shuka 
\acl shuca 
\akl shuka 
\ame shuka</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="e259c942-a8c3-470e-8b78-7aa38ad74b3c" ownerguid="c2616b18-174b-4e33-b93b-0dbe097ccd3e"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="e259e069-393e-4d5a-b631-4c12ca722533"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Judá</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="e25a6752-9f9c-48d5-8e84-5f0588955357" ownerguid="07d7a531-1248-4891-a2df-9c1139acf28d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="0c49f21b-4024-40bb-befa-3719a00bebe9" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">look</AUni> -<AUni ws="es">mirar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b66ee6d4-9da4-43be-af91-8c27868e750f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e25a8c59-0430-4ee3-833b-870c429be803" ownerguid="e626c65e-eb79-4230-b07a-a6d975d3fe3d"> -<ExampleWords> -<AUni ws="en">lick, lick your lips, stick your tongue out, click your tongue, bite your tongue</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What do people do with their tongue?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e25bf52e-010a-4275-aba0-a6132205812a" ownerguid="c1870e14-5161-4955-8284-39fb7bae2274"> -<Form> -<AUni ws="qvm-x-ach">llachi</AUni> -<AUni ws="qvm-x-acl">llachi; llachi; llache</AUni> -<AUni ws="qvm-x-akh">llachi</AUni> -<AUni ws="qvm-x-akl">llachi; llachi; llache</AUni> -<AUni ws="qvm-x-ame">llachi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="e2612b97-12f5-4b9e-9496-c4508cf015dc" ownerguid="c23688e5-10a3-4cc6-b3db-a6de090f0e60"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e261d36c-41f6-4230-a392-8ca69af7c2bf" ownerguid="47288b53-a9c0-42d0-bf20-63419b4132bf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.branch</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f50a5d07-69d2-4dd3-b57d-031a29974285" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e263a4ae-76b1-4fd9-b269-b394047f90fe" ownerguid="2fc69f71-e9f1-45f9-b88e-bdaf97457fc3"> -<ExampleWords> -<AUni ws="en">at light speed, faster than a speeding bullet, just a blur</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe an action that is done extremely quickly?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e2660eb1-710e-420c-976d-7afccb9b8ea4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">malmalya; malmalya:</AUni> -<AUni ws="qvm-x-acl">malmalya; malmalya:</AUni> -<AUni ws="qvm-x-akh">malmalya; malmalya:</AUni> -<AUni ws="qvm-x-akl">malmalya; malmalya:</AUni> -<AUni ws="qvm-x-ame">malmalya; malmalya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mallmallya:</AUni> -<AUni ws="qvm-x-acl">*mallmallya:</AUni> -<AUni ws="qvm-x-akh">*mallmallya:</AUni> -<AUni ws="qvm-x-akl">*mallmallya:</AUni> -<AUni ws="qvm-x-ame">*mallmallya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.285" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8bb84cb0-f726-4fda-8b03-1b5a22191441" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mallmallya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c71720b0-fd01-49d5-ac6d-e617efef3a7f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c6043577-66a6-4a05-9514-21e69d66fb52" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mallmallya: 
\entryTyp root 
\gENG ripple 
\gSPN ondear 
\e *mallmallya: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach malmalya foreshortened 
\ach malmalya: 
\akh malmalya foreshortened 
\akh malmalya: 
\acl malmalya foreshortened 
\acl malmalya: 
\akl malmalya foreshortened 
\akl malmalya: 
\ame malmalya foreshortened 
\ame malmalya:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoMorphAdhocProhib" guid="e2672873-8979-4934-b280-64698c06f546" ownerguid="777f4eca-a64c-4ed7-8367-4e3ebdb5cd1f"> -<Adjacency val="4" /> -<Disabled val="True" /> -<FirstMorpheme> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</FirstMorpheme> -<RestOfMorphs> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</RestOfMorphs> -</rt> -<rt class="WfiMorphBundle" guid="e26dd4b0-a4d7-41c2-b083-20a1260f8860" ownerguid="8602761b-c356-403d-a5cf-8687d677c5c7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yqui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yqui</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yki</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1b0fe7f9-c0ed-498b-9263-f8c0d31cc569" t="r" /> -</Morph> -<Msa> -<objsur guid="2999bb54-aa09-4eed-affb-cf684bd15cf6" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="e26e8d00-4d41-428e-8a3e-d99df857a01e" ownerguid="70164474-a65b-4506-9953-f26afb6b497a"> -<ExampleWords> -<AUni ws="en">oven, burner, grill</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the parts of a stove?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e26ff2a3-725d-40a6-aa9c-541653a88d9a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pre:sa</AUni> -<AUni ws="qvm-x-acl">pre:sa</AUni> -<AUni ws="qvm-x-akh">pre:sa</AUni> -<AUni ws="qvm-x-akl">pre:sa</AUni> -<AUni ws="qvm-x-ame">pre:sa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+presa</AUni> -<AUni ws="qvm-x-acl">+presa</AUni> -<AUni ws="qvm-x-akh">+presa</AUni> -<AUni ws="qvm-x-akl">+presa</AUni> -<AUni ws="qvm-x-ame">+presa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.919" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5caed896-98c0-418e-bca6-06170607a22c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+presa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d939743d-e325-476f-b702-47c50bed6247" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6b55612c-fe96-41c9-ad35-80257cac4ab2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +presa 
\entryTyp root 
\gENG 
\gSPN 
\e +presa 
\c N0 
\ach pre:sa 
\akh pre:sa 
\acl pre:sa 
\akl pre:sa 
\ame pre:sa 
\i 1SA 9.23 Jamaycäriptinnami yanucogta Samuel caynog nergan: <<Alinnin cag prësata yanunayquipag camaripashgäta apamuy.>></Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e271305f-65eb-4b48-82ce-bbc2b82b2298" ownerguid="1b6b0c12-9ecd-45cb-bb0e-0dadb435eddf"> -<ExampleWords> -<AUni ws="en">high in, rich in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe something that contains a lot of a particular substance?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="e272a671-6282-4121-85d3-edaeab64cd2c" ownerguid="90f57cb3-1a42-4c45-808d-e9909d9396bd"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ka</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ka</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="22806abf-f462-448a-bb3e-39bbf5d75aea" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="e27adda9-0761-4b7f-abbf-24938ce1c01a" ownerguid="57225f57-ba51-45d7-b6d2-b22052877ea4"> -<Abbreviation> -<AUni ws="en">4.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.214" /> -<DateModified val="2022-9-23 16:55:8.214" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to drama.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Drama</AUni> -</Name> -<OcmCodes> -<Uni>536 Drama; 545 Musical and Theatrical Productions</Uni> -</OcmCodes> -<Questions> -<objsur guid="d2bd3a20-d9ce-4406-b3af-bf37e824083e" t="o" /> -<objsur guid="61e1aa5e-8f76-4297-aa70-e4ba196abeeb" t="o" /> -<objsur guid="d0c77401-82cb-409e-8878-e967b9b5c593" t="o" /> -<objsur guid="30510ce6-f449-461e-b108-e13db4aacb92" t="o" /> -<objsur guid="f6e3cab2-21c6-41d2-b3a2-66755f78a166" t="o" /> -<objsur guid="35c44c66-c5cf-4491-a5cf-f93f1c130932" t="o" /> -<objsur guid="c66930e8-2527-48a5-ab9c-665979f29d55" t="o" /> -<objsur guid="414e3366-7b0f-4498-9b8d-d99ab5a882f7" t="o" /> -<objsur guid="13a91a11-9233-4f71-a8a6-99da0cc296bf" t="o" /> -<objsur guid="c63f5454-d189-40c9-a899-04af1b13212a" t="o" /> -<objsur guid="f90ba99f-e868-4239-baf9-12db0743f606" t="o" /> -<objsur guid="73426c7f-2ecc-42d8-9f96-2612729778c0" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="4f516445-e044-4d9c-ac9b-a3178f72b405" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="e27b1567-14cc-4822-a19e-f5a02c67b2a3" ownerguid="a46546ee-4adb-46bc-b3fd-20a014278659"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="eecc6742-6d5c-441b-9114-0daa3d79096b" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">chew</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="41f780ae-5543-4ce9-88d7-ad58d8d85d26" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e27b45b3-4b86-4b05-8182-9e191d4b81f8" ownerguid="ffcc57f8-6c6d-4bf4-85be-9220ca7c739d"> -<ExampleWords> -<AUni ws="en">bigamy, bigamist, bigamous, concubinage, concubine, harem, polygamist, polygamous, polygamy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to marrying more than one person?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e27c658b-be2d-4ffa-94ee-5757a4a85694" ownerguid="cbcab7c3-6c8f-415b-8245-53e500b14f1d"> -<Form> -<AUni ws="qvm-x-ach">gringu; gringo</AUni> -<AUni ws="qvm-x-acl">gringu; gringu; gringo</AUni> -<AUni ws="qvm-x-akh">gringu; gringo</AUni> -<AUni ws="qvm-x-akl">gringu; gringu; gringo</AUni> -<AUni ws="qvm-x-ame">gringu; gringo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="e2806bed-b450-4469-900a-1afa7ded2224" ownerguid="4d2a247e-4925-4750-8c39-e2d78665d33c"> -<Abbreviation> -<AUni ws="en">8.6.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.678" /> -<DateModified val="2022-9-23 16:55:8.678" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the outside or surface part of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Outer part</AUni> -</Name> -<Questions> -<objsur guid="0f0cb1bb-04ab-4643-83ba-b931cbecc8a2" t="o" /> -<objsur guid="1dcdc877-6f3f-4a61-9a4c-e6629bf79fd6" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="f4829d9d-a93f-4fc5-918c-6d4c501a6573" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="e2807d6d-8578-415a-a7ed-bb5f231d0f6d" ownerguid="679609f6-c2da-428a-bf49-3cc2b82122ab"> -<Form> -<AUni ws="qvm-x-ach">tacsha</AUni> -<AUni ws="qvm-x-acl">tacsha</AUni> -<AUni ws="qvm-x-akh">taksha</AUni> -<AUni ws="qvm-x-akl">taksha</AUni> -<AUni ws="qvm-x-ame">taksha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e280b04b-b35a-4226-bf97-965331fbc695" ownerguid="2d096be9-3dc8-4622-81fc-9cd439494f6f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">buy</AUni> -<AUni ws="es">comprar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0962b890-97ef-4c05-af34-6e94ee0c1224" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e28228bc-647f-47e4-a342-39fb00cdb918"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">paqui</AUni> -<AUni ws="qvm-x-acl">paqui; paqui; paque</AUni> -<AUni ws="qvm-x-akh">paki</AUni> -<AUni ws="qvm-x-akl">paki; paki; pake</AUni> -<AUni ws="qvm-x-ame">paki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*paki.n</AUni> -<AUni ws="qvm-x-acl">*paki.n</AUni> -<AUni ws="qvm-x-akh">*paki.n</AUni> -<AUni ws="qvm-x-akl">*paki.n</AUni> -<AUni ws="qvm-x-ame">*paki.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.658" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9907c381-2270-4175-8947-91dc64e16eb8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*paki.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f88f11fa-0243-48a8-9b24-8d3d7d8fb087" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="28d8b867-07ee-4534-83b6-b380f16cdb41" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *paki.n 
\entryTyp root 
\gENG stick 
\gSPN palo 
\e *paki.n 
\c N0 
\mp +FinalI 
\ach paqui 
\akh paki 
\acl paqui / _# 
\acl paqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl paque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl paki / _# 
\akl paki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pake +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame paki</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e28357e0-5821-4905-9624-17b027083bcd" ownerguid="6eaba0c3-cdfe-435d-8811-7f2ddf6facbd"> -<ExampleWords> -<AUni ws="en">swell up, get swollen</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to swelling increasing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e283b961-412c-4539-906b-32d50c4774a0" ownerguid="f4580c19-ba9e-4f71-a46a-6f3c4b19c36c"> -<ExampleWords> -<AUni ws="en">land, make land, landfall</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to arriving in a boat?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="e28915f3-f893-463f-be4e-120a06f28be4" ownerguid="374811b2-b918-47ad-b4b6-20a055c01a26"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -<Morph> -<objsur guid="635b642e-de6e-4f4e-bf3d-fc66fcad0089" t="r" /> -</Morph> -</rt> -<rt class="LexEntry" guid="e28a8997-c1de-489b-9e34-d81a2349a530"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">eri:zu</AUni> -<AUni ws="qvm-x-acl">eri:zu; eri:zu; eri:zo</AUni> -<AUni ws="qvm-x-akh">eri:zu</AUni> -<AUni ws="qvm-x-akl">eri:zu; eri:zu; eri:zo</AUni> -<AUni ws="qvm-x-ame">eri:zu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+erizo</AUni> -<AUni ws="qvm-x-acl">+erizo</AUni> -<AUni ws="qvm-x-akh">+erizo</AUni> -<AUni ws="qvm-x-akl">+erizo</AUni> -<AUni ws="qvm-x-ame">+erizo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.485" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a3e22a57-4e32-4284-b70e-67e2c5acbbac" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+erizo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="946235f4-08ce-4e7f-bbd4-724022de7e8b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="16588cd3-ead4-49f3-b019-60c35f3543a0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +erizo 
\entryTyp root 
\gENG hedgehog 
\gSPN erizo 
\e +erizo 
\c N0 
\ach eri:zu 
\akh eri:zu 
\acl eri:zu / _# 
\acl eri:zu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl eri:zo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl eri:zu / _# 
\akl eri:zu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl eri:zo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame eri:zu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="e28f3f79-d4a5-402c-8a70-196856791078" ownerguid="3a2c0773-6b3e-4f8b-909d-c8f84d66d4f4"> -<Abbreviation> -<AUni ws="en">9.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.680" /> -<DateModified val="2022-9-23 16:55:8.680" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general verbs with a volitional subject (agent).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>42 Perform, Do; 42A Function; 42B Do, Perform</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Do</AUni> -</Name> -<Questions> -<objsur guid="f106b63d-2dcb-447d-b2a6-24fde50eb34b" t="o" /> -<objsur guid="f717e33e-fff8-4d62-b1cb-bb860e2e69dd" t="o" /> -<objsur guid="930fb269-6e42-434e-9953-33b03304733b" t="o" /> -<objsur guid="102385fb-5e9d-4f56-bb89-855cd0a5b6ca" t="o" /> -<objsur guid="13302bbd-3400-4297-b5c3-f9a5aef9f238" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b158fe11-5af2-4467-bbc0-cc1aee766592" t="o" /> -<objsur guid="12a028d1-d910-4011-ab9d-59be69daaf65" t="o" /> -<objsur guid="d47b69e0-ab4a-4111-aec3-2c889a4e70b3" t="o" /> -<objsur guid="ecaff061-6a12-4ad6-b818-9b140a9a3e11" t="o" /> -<objsur guid="2d5d634e-75b5-4921-922e-573a809a49f8" t="o" /> -<objsur guid="10b6c417-d020-4318-a44a-ae69ea3eec5a" t="o" /> -<objsur guid="754ac437-2841-48c3-bbb0-7d6dff52605e" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="e290cc90-ad18-417f-9c0f-c8cef2c26b07" ownerguid="937576c5-65b5-4f33-a5e0-6e04bcce4c1b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">campaign</AUni> -<AUni ws="es">+campaña</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="42dbc7f5-de12-4261-adbe-8a34f267e29b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e2911902-9b87-475a-b072-87d65b4c2e5e" ownerguid="48ac206f-2706-4500-bb63-2e499b790259"> -<ExampleWords> -<AUni ws="en">intelligent, brainy, bright, brilliant, capable, clever, crafty, discerning, educated, ingenious, insightful, keen, knowledgeable, learned, literate, perceptive, philosophical, profound, rational, scholarly, sharp, shrewd, sly, smart, sophisticated, sound, wily, have a lot of sense, have a high IQ</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who thinks well?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e2997c31-f32a-4c83-91f9-65c8c2fdcd9b" ownerguid="5d72af95-facd-4be2-80e9-37528f0f34b5"> -<ExampleWords> -<AUni ws="en">tentacle, sucker, appendage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the parts of an octopus or squid?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e29a9c5d-521d-4fc4-ad9b-a788469175c2" ownerguid="f654fd6f-7805-4f0e-bd1e-be4ace5e7fd0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">despeinada</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8658dff3-91a5-41d0-9669-adc1b6805d9b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e29cdd1c-7388-4260-90a3-a4c42813fb8c" ownerguid="00675854-6a77-4451-b4a7-b85eb1b743a3"> -<Form> -<AUni ws="qvm-x-ach">perjil</AUni> -<AUni ws="qvm-x-acl">perjil; perjil; perjel</AUni> -<AUni ws="qvm-x-akh">perjil</AUni> -<AUni ws="qvm-x-akl">perjil; perjil; perjel</AUni> -<AUni ws="qvm-x-ame">perjil</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e29ce926-a2d6-485a-b53d-5de40aede5e5" ownerguid="aed6c1ec-abbe-47e3-a6cc-a99ecff3b825"> -<ExampleWords> -<AUni ws="en">shiny, glossy, polished, glassy, gleaming, sleek, silky, shining</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is shiny?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e29cef12-4b53-42b3-b899-a300fce20ceb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cu:bu</AUni> -<AUni ws="qvm-x-acl">cu:bu; cu:bu; cu:bo</AUni> -<AUni ws="qvm-x-akh">cu:bu</AUni> -<AUni ws="qvm-x-akl">cu:bu; cu:bu; cu:bo</AUni> -<AUni ws="qvm-x-ame">cu:bu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cubo</AUni> -<AUni ws="qvm-x-acl">+cubo</AUni> -<AUni ws="qvm-x-akh">+cubo</AUni> -<AUni ws="qvm-x-akl">+cubo</AUni> -<AUni ws="qvm-x-ame">+cubo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.234" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ec339ffb-a03c-46a1-8010-eae8ffef018d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cubo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6aea2af4-de9f-44a4-a185-3fa6230f57bb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ff8b2636-71b3-40eb-bf61-469cdae68776" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cubo 
\entryTyp root 
\gENG 
\gSPN 
\e +cubo 
\c N0 
\ach cu:bu 
\akh cu:bu 
\acl cu:bu / _# 
\acl cu:bu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cu:bo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cu:bu / _# 
\akl cu:bu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cu:bo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cu:bu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="e29f56b2-9f1e-4998-b3d7-f79d03d23f8c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">profi; profe</AUni> -<AUni ws="qvm-x-acl">profi; profi; profe</AUni> -<AUni ws="qvm-x-akh">profi; profe</AUni> -<AUni ws="qvm-x-akl">profi; profi; profe</AUni> -<AUni ws="qvm-x-ame">profi; profe</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+profe</AUni> -<AUni ws="qvm-x-acl">+profe</AUni> -<AUni ws="qvm-x-akh">+profe</AUni> -<AUni ws="qvm-x-akl">+profe</AUni> -<AUni ws="qvm-x-ame">+profe</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.931" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="02a41852-f7ef-4a30-870b-63d11d841a7b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+profe</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8c961c92-b27e-4b7c-8cc4-fe3d3c1c634b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f70e8b22-925e-4242-9ec0-4ae07aaf53cd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +profe 
\entryTyp root 
\gENG teach(er) 
\gSPN profe(sor) 
\e +profe 
\c N0 
\mp +FinalI 
\ach profi / ~_# 
\ach profe / _# 
\akh profi / ~_# 
\akh profe / _# 
\acl profi / ~_# 
\acl profi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl profe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl profi / ~_# 
\akl profi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl profe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame profi / ~_# 
\ame profe / _# 
\mcc +profe / ~_ [poss]</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="e2a1632b-0456-4488-bbad-5a1db5115bde"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">deporti; deporte</AUni> -<AUni ws="qvm-x-acl">deporti; deporti; deporte</AUni> -<AUni ws="qvm-x-akh">deporti; deporte</AUni> -<AUni ws="qvm-x-akl">deporti; deporti; deporte</AUni> -<AUni ws="qvm-x-ame">deporti; deporte</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+deporte</AUni> -<AUni ws="qvm-x-acl">+deporte</AUni> -<AUni ws="qvm-x-akh">+deporte</AUni> -<AUni ws="qvm-x-akl">+deporte</AUni> -<AUni ws="qvm-x-ame">+deporte</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.376" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="abbc19d7-fe02-4b69-852c-c48181c7eebd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+deporte</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bd5f097f-76d1-46b0-95cd-006dbd0ea161" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6e64de3d-2c5b-4fe3-9b2a-beb14bdb26f7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +deporte 
\entryTyp root 
\gENG sport 
\gSPN deporte 
\e +deporte 
\c N0 
\mp +FinalI 
\ach deporti / ~_# 
\ach deporte / _# 
\akh deporti / ~_# 
\akh deporte / _# 
\acl deporti / ~_# 
\acl deporti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl deporte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl deporti / ~_# 
\akl deporti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl deporte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame deporti / ~_# 
\ame deporte / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e2a5f67f-188c-41fc-8cf7-d19add717a8a" ownerguid="01441207-4935-49a5-a192-16d949f5606c"> -<ExampleWords> -<AUni ws="en">league, conference, association</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What is a group of teams called?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e2a74cc1-03ee-4ca1-adcd-92b9fe2501de"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gora</AUni> -<AUni ws="qvm-x-acl">gora</AUni> -<AUni ws="qvm-x-akh">qora</AUni> -<AUni ws="qvm-x-akl">qora</AUni> -<AUni ws="qvm-x-ame">qura</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qura</AUni> -<AUni ws="qvm-x-acl">*qura</AUni> -<AUni ws="qvm-x-akh">*qura</AUni> -<AUni ws="qvm-x-akl">*qura</AUni> -<AUni ws="qvm-x-ame">*qura</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.871" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1911a7ae-ad67-4130-8b4e-51e22108cfde" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qura</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4493b95b-4c01-42db-8f77-9dcd2f97ae71" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="93a3ee85-752f-404c-897c-9242ef77a337" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qura 
\entryTyp root 
\gENG weed 
\gSPN hierba 
\e *qura 
\c N0 
\ach gora 
\akh qora 
\acl gora 
\akl qora 
\ame qura</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e2a8dda6-d93b-49a0-bef9-1690ac69ed88" ownerguid="4415aff1-4d74-463e-a25d-9832c7477329"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John hit the dog <with> a stick.; John caught the rat <using> a trap he built.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">with, using</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words mark the instrument used to do something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e2aad841-4b7d-4c3b-b1eb-0ba2f1415019" ownerguid="c35cba91-742c-4b98-b848-dfd520d959cf"> -<ExampleWords> -<AUni ws="en">touch, feel, run your hand over, brush, caress, contact, feel, finger, fondle, glance, graze, handle, handling, kiss, lick, massage, nuzzle, palm, palpate, paw, rub, scrape, sense, skim, stroke, sweep, thumb, tickle, tickling</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to touching something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e2abd211-d102-4a15-8e11-19b60df72262" ownerguid="51e29e8e-e7e3-4064-8813-1415766701a1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gospel</AUni> -<AUni ws="es">evangélio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f427df0e-3241-42d8-813e-ec08f2fd6b54" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e2aefdcf-a047-49df-a42c-2a2447a7ad94" ownerguid="e45b8bac-9623-4f84-a113-9dec13a8db64"> -<ExampleWords> -<AUni ws="en">bring up, raise, broach, introduce, launch into</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to starting to talk about something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e2b18b40-1865-4896-a622-a8ce1f0e62f9" ownerguid="02eef9b2-805e-434f-acb3-6824423884b2"> -<Form> -<AUni ws="qvm-x-ach">cascabel; cascabil</AUni> -<AUni ws="qvm-x-acl">cascabel; cascabil; cascabel</AUni> -<AUni ws="qvm-x-akh">cascabel; cascabil</AUni> -<AUni ws="qvm-x-akl">cascabel; cascabil; cascabel</AUni> -<AUni ws="qvm-x-ame">cascabel; cascabil</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="e2b4e1cc-397e-48f9-9c8f-7fa3c9e78c5d" ownerguid="598e009b-59a9-4571-80b5-ce5162587668"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6fe49b5e-093a-457b-9f14-02b68e8cec63" t="r" /> -</Morph> -</rt> -<rt class="MoStemAllomorph" guid="e2b6e9cb-4279-4c03-8fb6-bd1c616d149e" ownerguid="26dae1cf-1c92-4d82-a045-9bc8b3ea3647"> -<Form> -<AUni ws="qvm-x-ach">carga</AUni> -<AUni ws="qvm-x-acl">carga</AUni> -<AUni ws="qvm-x-akh">carga</AUni> -<AUni ws="qvm-x-akl">carga</AUni> -<AUni ws="qvm-x-ame">carga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e2b73d6a-99b1-4f6d-9ede-5770864b89a4" ownerguid="2f28f1ab-476e-4317-8787-124d95d6b9d2"> -<ExampleWords> -<AUni ws="en">concession, although, though, even though, and yet, even if, nevertheless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that the speaker is conceding a point?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e2b840eb-4e1d-4b55-9ab3-4e8fc61569cc" ownerguid="d1e58469-52e3-4b50-b0de-00bf9f09f8d4"> -<ExampleWords> -<AUni ws="en">grandparent, grandfather, grandmother</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the parents of your parents?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e2bc4a8a-c960-4f00-b3e0-f5afa89e9875" ownerguid="e3ee97a4-fdb0-4a10-a43a-214a74f1f7f8"> -<Form> -<AUni ws="qvm-x-ach">evangelios</AUni> -<AUni ws="qvm-x-acl">evangelios</AUni> -<AUni ws="qvm-x-akh">evangelios</AUni> -<AUni ws="qvm-x-akl">evangelios</AUni> -<AUni ws="qvm-x-ame">evangelios</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e2bc6d18-392a-42f0-9a1f-94d3ba593514" ownerguid="88cc9efc-129d-4378-b3c7-5100abf6e9f7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pay</AUni> -<AUni ws="es">pago</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f28f0861-0818-452f-b2c3-99bcdbdd895a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="e2bce012-8afd-4024-b0d6-353c0bd56f48" ownerguid="35628a1d-4e2b-48a5-9beb-4466da40eb6f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="e2c07440-dab7-4a6e-83c0-13f6b89cf75f" ownerguid="1de848f6-a750-4c73-9334-13d36b6d888a"> -<Form> -<AUni ws="qvm-x-ach">sirvi</AUni> -<AUni ws="qvm-x-acl">sirvi; sirve</AUni> -<AUni ws="qvm-x-akh">sirvi</AUni> -<AUni ws="qvm-x-akl">sirvi; sirve</AUni> -<AUni ws="qvm-x-ame">sirvi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="e2c0a4e1-a58f-4d43-ba2e-d0d3113d1f81" ownerguid="156f3065-28b0-4549-96f8-63532853dbf5"> -<Form> -<AUni ws="qvm-x-ach">ösu</AUni> -<AUni ws="qvm-x-acl">ösu; ösu; öso</AUni> -<AUni ws="qvm-x-akh">ösu</AUni> -<AUni ws="qvm-x-akl">ösu; ösu; öso</AUni> -<AUni ws="qvm-x-ame">ösu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="e2c25688-b41f-4220-9f3f-ef7adfa4ad3f" ownerguid="8ed1a8ca-f15a-4ed6-bad9-703aa85775ba"> -<Form> -<AUni ws="qvm-x-ach">wichusca</AUni> -<AUni ws="qvm-x-acl">wichusca</AUni> -<AUni ws="qvm-x-akh">wichuska</AUni> -<AUni ws="qvm-x-akl">wichuska</AUni> -<AUni ws="qvm-x-ame">wichuska</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e2c3aab7-2a7d-4608-aafc-2ff5dc948e5a" ownerguid="8ea4e0d4-71a2-4583-a1fe-f1a941af8478"> -<ExampleWords> -<AUni ws="en">propose, recommend, put forward, put something before someone, submit, present</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to formally suggesting something to a person in authority?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e2c42ed2-4abf-4126-bba0-9a52200a3a7a" ownerguid="98830eda-3997-4f4a-9ba4-664df669e7e2"> -<ExampleWords> -<AUni ws="en">tower, barracks, dungeon, keep, moat, gatehouse, turret, blockhouse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the parts of a fort?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e2c4612f-1a69-422b-a85d-c3acb5c68b41" ownerguid="7d2443b6-1253-4345-9816-3ad34b736d7a"> -<Form> -<AUni ws="qvm-x-ach">camari</AUni> -<AUni ws="qvm-x-acl">camari; camare</AUni> -<AUni ws="qvm-x-akh">kamari</AUni> -<AUni ws="qvm-x-akl">kamari; kamare</AUni> -<AUni ws="qvm-x-ame">kamari</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="e2c5a96f-10fb-4770-9411-8ba744f3722b" ownerguid="65af4e52-850e-4fbd-97c9-f89a7b307e86"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e2cae91c-86f4-4a5a-87c5-058211ec9e35"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cacha</AUni> -<AUni ws="qvm-x-acl">cacha</AUni> -<AUni ws="qvm-x-akh">kacha</AUni> -<AUni ws="qvm-x-akl">kacha</AUni> -<AUni ws="qvm-x-ame">kacha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*katra.n</AUni> -<AUni ws="qvm-x-acl">*katra.n</AUni> -<AUni ws="qvm-x-akh">*katra.n</AUni> -<AUni ws="qvm-x-akl">*katra.n</AUni> -<AUni ws="qvm-x-ame">*katra.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.963" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="68e6acab-93bf-4401-92e0-feaa96999da4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*katra.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4e71353b-9b5c-4eb3-beeb-0528e8b7f12f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="06a6500b-ddf6-4a47-9ea5-81023530ff26" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *katra.n 
\entryTyp root 
\gENG sent.one 
\gSPN mensejero 
\e *katra.n 
\c N0 
\ach cacha 
\akh kacha 
\acl cacha 
\akl kacha 
\ame kacha 
\mcc *katra.n / ~_ ADV2 | use *katra.v 
\mcc *katra.n / ~_ YET2 
\mcc *katra.n / ~_ BEC 
\mcc *katra.n / ~_ LIM1</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e2cd1753-d710-48a3-acb9-6ddb8dc9655a" ownerguid="978b67de-3568-4965-a5e2-3e50cf8fa622"> -<Form> -<AUni ws="qvm-x-ach">gastu; gasto</AUni> -<AUni ws="qvm-x-acl">gastu; gastu; gasto</AUni> -<AUni ws="qvm-x-akh">gastu; gasto</AUni> -<AUni ws="qvm-x-akl">gastu; gastu; gasto</AUni> -<AUni ws="qvm-x-ame">gastu; gasto</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e2ce359b-92fd-4109-93cd-670dbdaa4020" ownerguid="2c401e7f-6ce9-470f-b6b6-fadf7a798536"> -<ExampleWords> -<AUni ws="en">restful, relaxing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe a situation that helps someone rest?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e2cfd6d1-6800-4eeb-aa7d-b2529ab77f34" ownerguid="d0b14231-1471-41b3-aeb5-69199acaaefb"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en"><How> does he talk? (quietly, slowly)</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">how</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What question words ask for the manner in which something is done?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e2d011ab-5c29-4b6d-a6dd-27260b688021"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">empacha; empacha:</AUni> -<AUni ws="qvm-x-acl">empacha; empacha:</AUni> -<AUni ws="qvm-x-akh">empacha; empacha:</AUni> -<AUni ws="qvm-x-akl">empacha; empacha:</AUni> -<AUni ws="qvm-x-ame">empacha; empacha:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+empachar</AUni> -<AUni ws="qvm-x-acl">+empachar</AUni> -<AUni ws="qvm-x-akh">+empachar</AUni> -<AUni ws="qvm-x-akl">+empachar</AUni> -<AUni ws="qvm-x-ame">+empachar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.447" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="62e1e094-85c3-4b72-81de-80ef22eb7149" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+empachar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cc8d7002-d7ea-44f2-a435-e2b9170227fe" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="06ff5e8a-eb5a-4a3d-8687-a6682d35472b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +empachar 
\entryTyp root 
\gENG cause.indigestion 
\gSPN ahitar 
\e +empachar 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach empacha foreshortened 
\ach empacha: 
\mp +underlong 
\akh empacha foreshortened 
\akh empacha: 
\acl empacha foreshortened 
\acl empacha: 
\akl empacha foreshortened 
\akl empacha: 
\mp +underlong 
\ame empacha foreshortened 
\ame empacha:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e2d019ae-d96c-47a0-a673-682094c24551" ownerguid="7d2ac7e1-87be-4379-aabb-a7e61519ba1d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">slice</AUni> -<AUni ws="es">rebanar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="125b28d9-8ae1-429d-b012-8cb499c7a161" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoAffixAllomorph" guid="e2d14199-f3c0-4b1a-9114-320c7722ef6b" ownerguid="1ae6e023-810b-43f5-8de7-cbb3346890ef"> -<Form> -<AUni ws="qvm-x-ach">nalapag</AUni> -<AUni ws="qvm-x-acl">nalapag</AUni> -<AUni ws="qvm-x-akh">nalapaq</AUni> -<AUni ws="qvm-x-akl">nalapaq</AUni> -<AUni ws="qvm-x-ame">nalapaq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="e2d1467c-2610-4296-870b-873d92cc8f19"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shama</AUni> -<AUni ws="qvm-x-acl">shama</AUni> -<AUni ws="qvm-x-akh">shama</AUni> -<AUni ws="qvm-x-akl">shama</AUni> -<AUni ws="qvm-x-ame">shama</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shama</AUni> -<AUni ws="qvm-x-acl">*shama</AUni> -<AUni ws="qvm-x-akh">*shama</AUni> -<AUni ws="qvm-x-akl">*shama</AUni> -<AUni ws="qvm-x-ame">*shama</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.531" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="255ee357-81e5-4816-ad43-e4bc1cf3725b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shama</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bdb5b2aa-e34d-4a0a-a983-2df595815b30" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fac5bbbd-f52b-48e7-9629-acf1f11776da" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shama 
\entryTyp root 
\gENG scurvy 
\gSPN escorbuto 
\e *shama 
\c N0 
\ach shama 
\akh shama 
\acl shama 
\akl shama 
\ame shama</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="e2d3294b-4463-48bb-95e4-8c9b5238ecec" ownerguid="bc9d763c-e4fe-48ab-ad44-87a36f6cc06f"> -<Abbreviation> -<AUni ws="en">3.5.1.8.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.164" /> -<DateModified val="2022-9-23 16:55:8.164" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to mocking someone--doing or saying something to make people laugh at someone because you don't like them.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Mock</AUni> -</Name> -<Questions> -<objsur guid="7c1e8de2-e161-436a-a3f1-5c4721bd5f29" t="o" /> -<objsur guid="087a04de-41c3-4071-9c49-fa7bcff03c9f" t="o" /> -<objsur guid="e4daab81-a1aa-4e46-8973-1bd4a7a5e5a2" t="o" /> -<objsur guid="2f3aa923-0f00-4789-b8e3-fd04945c740e" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="c27b87cf-1211-4df2-96b1-12c416edabbe" t="r" /> -<objsur guid="cbc0a8f5-9cba-41d2-a7e5-565fbf09c8c4" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="e2d3fd28-f74c-49b8-a85c-a8d98bd5a6e4" ownerguid="debe9765-c399-43b6-a014-31c213dade8a" /> -<rt class="CmDomainQ" guid="e2d56ccd-7247-4df3-a43d-c043318441fd" ownerguid="93b8bd61-137a-4ebc-b12f-52fa5d2b3ea4"> -<ExampleWords> -<AUni ws="en">drop, die down, calm, still</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe when the wind stops?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e2d5c93a-dd73-4f55-a0d9-40572a1c2341" ownerguid="f5156cde-9735-4249-920d-597fb0a7a8e3"> -<ExampleWords> -<AUni ws="en">break, bust, give out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to something breaking?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e2d654b5-1570-423b-b60d-889426975c59" ownerguid="48517c0a-a671-4332-9835-ba8f05f79470"> -<Form> -<AUni ws="qvm-x-ach">pururucu</AUni> -<AUni ws="qvm-x-acl">pururucu; pururucu; pururuco</AUni> -<AUni ws="qvm-x-akh">pururuku</AUni> -<AUni ws="qvm-x-akl">pururuku; pururuku; pururuko</AUni> -<AUni ws="qvm-x-ame">pururuku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e2d6bcd7-1556-4b3d-8912-700cf7fcee19" ownerguid="2d5d634e-75b5-4921-922e-573a809a49f8"> -<ExampleWords> -<AUni ws="en">make, build, construct, create, fabricate, fashion, form, generate, manufacture, prepare, produce, shape, bring into being</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to making something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e2d971fd-a0d2-41aa-a5d0-a44f38c2906b" ownerguid="349f0278-7998-422a-9c3b-6053989cbb20"> -<ExampleWords> -<AUni ws="en">inflect, inflection, case, decline, declension, conjugate, conjugation, parse, paradigm, rule, singular, plural</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words are used to talk about grammar?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e2d9f1b3-97b2-4661-b80c-0b9dc2ef3ee5" ownerguid="1428d897-2755-4fc4-981c-bc4fb7cc2e06"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="e2da5be3-30a6-46d7-a10a-8372245ada06" ownerguid="f869a6c6-446c-4389-9e44-426ec5a3b530"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="7be2985a-ec2f-44bd-8aa6-ff8d6ad5e8f1" t="o" /> -<objsur guid="8ac36734-ab41-457a-901b-3104989cdfe7" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="e2dac1f7-8868-49b4-b849-2f5e6f942e34"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">religio:sa</AUni> -<AUni ws="qvm-x-acl">religio:sa</AUni> -<AUni ws="qvm-x-akh">religio:sa</AUni> -<AUni ws="qvm-x-akl">religio:sa</AUni> -<AUni ws="qvm-x-ame">religio:sa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+religiosa</AUni> -<AUni ws="qvm-x-acl">+religiosa</AUni> -<AUni ws="qvm-x-akh">+religiosa</AUni> -<AUni ws="qvm-x-akl">+religiosa</AUni> -<AUni ws="qvm-x-ame">+religiosa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.328" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5cd0727b-c088-4aaa-8021-2f32807c770e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+religiosa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="48c70236-559f-4a30-a8ed-58c5d6c143be" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fbf7faf7-323b-41cc-ab45-1e58f3a30a6a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +religiosa 
\entryTyp root 
\gENG religious 
\gSPN religiosa 
\e +religiosa 
\c N0 
\ach religio:sa 
\akh religio:sa 
\acl religio:sa 
\akl religio:sa 
\ame religio:sa 
\i 1CH 19.11 Ley religiösata
\f + 19.11a Ley religiösaga parlargan Tayta Diosta imanog adorananpag y juc dioscunata ni ïdulucunata mana adorananpagmi.
\f* mana cäsucogcunataga mandag cüra Amaríasmi arreglanga.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e2dc0525-f1d9-4824-a3b9-3ba341e2573b" ownerguid="899aa4b6-2bae-452f-827c-54dba0135c6c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="bffac9e2-9c25-4489-a7bb-b0731ceb63c6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e2dc2403-1222-4fb6-8053-7b210bfe527d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">luylu</AUni> -<AUni ws="qvm-x-acl">luylu; luylo</AUni> -<AUni ws="qvm-x-akh">luylu</AUni> -<AUni ws="qvm-x-akl">luylu; luylo</AUni> -<AUni ws="qvm-x-ame">luylu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lluyllu</AUni> -<AUni ws="qvm-x-acl">*lluyllu</AUni> -<AUni ws="qvm-x-akh">*lluyllu</AUni> -<AUni ws="qvm-x-akl">*lluyllu</AUni> -<AUni ws="qvm-x-ame">*lluyllu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.245" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0b718083-6946-4564-b778-245c0e4e8673" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lluyllu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5b647078-a690-4c7b-9825-4ee3c6f6724f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="baa19786-02f6-4582-ab56-88bd51c77369" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lluyllu 
\entryTyp root 
\gENG curled 
\gSPN encojido 
\e *lluyllu 
\c V1 
\ach luylu 
\akh luylu 
\acl luylu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl luylo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl luylu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl luylo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame luylu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e2de2442-84d2-4c6d-bad0-f6bd66cf2b1c" ownerguid="943eb131-2761-4c98-90a0-0bdfb0f8584d"> -<ExampleWords> -<AUni ws="en">make the bed, make up the bed, pull up the covers, throw off the covers, arrange the covers, sleep, lie down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What do people do with beds?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e2de3ed5-b892-4c3b-a180-cfb73793997a" ownerguid="3fd34185-19a1-44bd-8555-bc76e2847bee"> -<ExampleWords> -<AUni ws="en">instinct, instinctive, intuition, intuitive, sixth sense, gut feeling, just seem to know</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a natural ability to know what to do?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e2e0315e-f97c-45f8-9699-39442f71675b" ownerguid="f550e0f1-b56f-42ed-9740-fe5c12020dd1"> -<Form> -<AUni ws="qvm-x-ach">pescädu</AUni> -<AUni ws="qvm-x-acl">pescädu; pescädu; pescädo</AUni> -<AUni ws="qvm-x-akh">pescädu</AUni> -<AUni ws="qvm-x-akl">pescädu; pescädu; pescädo</AUni> -<AUni ws="qvm-x-ame">pescädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e2e3fe7f-3a8d-4fea-ad5f-7cd60c952c4a" ownerguid="2d92e248-1512-4e89-b886-425814c6dd32"> -<ExampleWords> -<AUni ws="en">chess match</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What is one game called?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e2e50769-b260-40c3-bbcf-44b7f4803044" ownerguid="df0af4e7-7ba7-48f2-b1cf-5f8991ac97ce"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e2e56cd2-64d4-4189-bebd-2d5d3cde1e1c" ownerguid="c6132280-d2aa-46f8-9e94-b087dbda09cb"> -<ExampleWords> -<AUni ws="en">steady, poised</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that is balanced?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e2e7dcdd-2cb8-4a79-9e82-3f6902590e8f" ownerguid="95466053-500c-4505-8bce-f085aa4664a3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">photo</AUni> -<AUni ws="es">foto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8f7c43b0-84ef-4a40-b0d0-b6115dc9398d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e2e83604-4006-4507-a4a7-87b6b6872418" ownerguid="bea703ce-56bf-4c6e-84f7-5fecfe7553c9"> -<Form> -<AUni ws="qvm-x-ach">mari</AUni> -<AUni ws="qvm-x-acl">mari</AUni> -<AUni ws="qvm-x-akh">mari</AUni> -<AUni ws="qvm-x-akl">mari</AUni> -<AUni ws="qvm-x-ame">mari</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e1-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="e2f2ab18-7e62-4a56-925c-341175ce5b76" ownerguid="ea232446-d3a3-42a1-b505-58f570ba3846"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e2f3437a-57e1-4776-9db9-06220d307f3d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">himnu; himno</AUni> -<AUni ws="qvm-x-acl">himnu; himnu; himno</AUni> -<AUni ws="qvm-x-akh">himnu; himno</AUni> -<AUni ws="qvm-x-akl">himnu; himnu; himno</AUni> -<AUni ws="qvm-x-ame">himnu; himno</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+himno</AUni> -<AUni ws="qvm-x-acl">+himno</AUni> -<AUni ws="qvm-x-akh">+himno</AUni> -<AUni ws="qvm-x-akl">+himno</AUni> -<AUni ws="qvm-x-ame">+himno</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.719" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="63a9b390-5693-4dbc-b71f-cb3ffee752c2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+himno</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a440fce5-36f2-4bb3-a487-684ec5845ef0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="81318d0e-f3f7-4ea9-a163-ea6c4058ba0b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +himno 
\entryTyp root 
\gENG hymn 
\gSPN himno 
\e +himno 
\c N0 
\ach himnu / ~_# 
\ach himno / _# 
\akh himnu / ~_# 
\akh himno / _# 
\acl himnu / ~_# 
\acl himnu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl himno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl himnu / ~_# 
\akl himnu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl himno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame himnu / ~_# 
\ame himno / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="e2f9a74c-6560-423c-a6bc-a9ad17626e9e" ownerguid="10a65da6-bb6b-4379-b64f-b831c4fc64da"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="e2fb1d14-e9ae-4046-b54f-5f0f29eb6a2f" ownerguid="cc316ccb-1849-4610-8a0b-c99cbc9f2009"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ishca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ishca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ishka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ishka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ishka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="aa36a766-7a7a-4163-b9d4-c4fd68aa4701" t="r" /> -</Morph> -<Msa> -<objsur guid="4e228724-d1ea-4b5f-9796-1b3e5b946486" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="e2fe312e-1b45-405d-84d8-06edf73d2e56" ownerguid="3c703265-d19c-409a-aaa5-998654e5b1df"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e2fe33f8-bee4-47a3-9e2b-d1c9487e4f7d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tag</AUni> -<AUni ws="qvm-x-acl">tag</AUni> -<AUni ws="qvm-x-akh">taq</AUni> -<AUni ws="qvm-x-akl">taq</AUni> -<AUni ws="qvm-x-ame">taq</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.568" /> -<DateModified val="2022-10-16 14:50:55.401" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b011cad0-7342-49cd-888c-201c1c231c5c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">QUES1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="918019fc-e2a4-494b-af9f-eed9eecf9407" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1102e705-1d48-4055-8af7-42f62f2f0732" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx QUES1 
\entryTyp suffix 
\gENG QUES 
\gSPN ?CN 
\e QUES1 
\c N0/N0 V0/V0 R0/R0 BN/BN 
\o 220 
\mp NeverForeshortened 
\ach tag 
\akh taq 
\acl tag 
\akl taq 
\ame taq 
\mp +FinalC 
\mcc QUES1 / ~_ DIR 
\mcc QUES1 / *ima.v ADVSS1.1 ~_ 
\mcc QUES1 / JUST.V 3P.V ~_ 
\mcc QUES1 / ~_ YN? 
\mcc QUES1 / +cuidar PRTSPM ~_ 
\mcc QUES1 / ~_ BEC 
\mcc QUES1 / ~_ DIR.C</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="e2ff4713-8e38-4e1d-add3-8c942382c27a" ownerguid="30c95fc4-e60c-4da2-8c39-943116563a62"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e3015f05-b105-4367-9d50-0e4ddef8ce6c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">que:na</AUni> -<AUni ws="qvm-x-acl">que:na</AUni> -<AUni ws="qvm-x-akh">ke:na</AUni> -<AUni ws="qvm-x-akl">ke:na</AUni> -<AUni ws="qvm-x-ame">ki:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+quena</AUni> -<AUni ws="qvm-x-acl">+quena</AUni> -<AUni ws="qvm-x-akh">+quena</AUni> -<AUni ws="qvm-x-akl">+quena</AUni> -<AUni ws="qvm-x-ame">+quena</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.831" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4ae74353-d7df-4052-9ea1-1b0e93dd092a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+quena</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5bab65d1-8748-470e-83dc-aaf7dde77c14" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="04e40ce5-42aa-4015-ae12-01f77229160e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +quena 
\entryTyp root 
\gENG 
\gSPN quena 
\e +quena 
\c N0 
\mp KQWchange 
\ach que:na 
\akh ke:na 
\acl que:na 
\akl ke:na 
\ame ki:na</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e303419a-7916-465a-a412-94cb4bb0e53e" ownerguid="880f9aff-b7b6-47a8-8b2c-8222b95c4db3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="cd88982c-5532-4c95-ae7a-7d7f804945d2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e3083ac7-43fe-472e-aecd-f40969a6436a" ownerguid="5c35c2f8-d17c-42a3-aa12-a4c29b6603e8"> -<ExampleWords> -<AUni ws="en">bent, arched, bowed, crinkled, curved, curving, curled, devious, gnarled, gnarly, hooked, indirect, jagged, kinked, knotted, knotty, knurled, knurly, turning, twirled, twisted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is bent?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e30c47d8-4625-4c21-a45f-58f85a1e8c4c" ownerguid="c0e232e4-df59-4033-85e4-4c55de8720e1"> -<Form> -<AUni ws="qvm-x-ach">ama</AUni> -<AUni ws="qvm-x-acl">ama</AUni> -<AUni ws="qvm-x-akh">ama</AUni> -<AUni ws="qvm-x-akl">ama</AUni> -<AUni ws="qvm-x-ame">ama</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="e30ff684-cbdd-4c4d-9c2a-be1bd765f960" ownerguid="1882ccaf-04c8-4ff5-bb6f-738e384a0600"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e310ab13-7e92-4345-b1d6-3840cecb88ec" ownerguid="52068c0e-41e0-4d0b-9224-902e04c927f0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 V0/V0 R0/R0 ONSHEV/ONSHEV BN/BN</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">YET2</AUni> -<AUni ws="es">TDV2</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3ebd5f60-74ad-4165-b305-1627b85d8d55" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="e3110c40-3958-4203-a194-b6a95bd8e1bb" ownerguid="8bcfa8b0-7265-4e49-b903-bb06e5e74bc0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2 | HM muchöshunqui; DM muchöshun pero no muchöshunqui</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.famished</AUni> -<AUni ws="es">hambrear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="56946af8-5f8f-4e94-bb10-1ff9b1e059cc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="e311cc3a-a387-449e-a05a-07ed9678411d" ownerguid="7556a257-3703-40d3-91d3-c891fb250947"> -<Abbreviation> -<AUni ws="en">4.9.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.304" /> -<DateModified val="2022-9-23 16:55:8.304" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a religious object.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Religious things</AUni> -</Name> -<OcmCodes> -<Uni>778 Sacred Objects and Places</Uni> -</OcmCodes> -<Questions> -<objsur guid="71884d6c-58e0-4296-83a8-2deb780ae901" t="o" /> -<objsur guid="4bece10b-6622-41b4-ad7b-a6052e8b0927" t="o" /> -<objsur guid="14925a1b-7c2e-445b-8adc-fb592f7450b2" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b97531df-8256-4796-8335-f69753a8f2e3" t="o" /> -<objsur guid="9b476afd-58c2-46a2-8294-449ac4aad3a9" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="e313682c-54c1-4cd8-aae9-a409a7a906d7" ownerguid="52972973-4858-4e2b-8ddb-097b56612c1d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="e31441ef-9aec-48a1-ac7a-d796e1f69a9f" ownerguid="65981f78-f621-4b2f-9fd7-af97dda527c5"> -<Form> -<AUni ws="qvm-x-ach">punta</AUni> -<AUni ws="qvm-x-acl">punta</AUni> -<AUni ws="qvm-x-akh">punta</AUni> -<AUni ws="qvm-x-akl">punta</AUni> -<AUni ws="qvm-x-ame">punta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="e31665b5-014a-4dc8-aebb-86b9a05d0ae9" ownerguid="42882481-3390-4c4b-b98d-a50cd21c60d7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="e316ac5f-501c-414b-a148-95e579cc3a8b" ownerguid="32cf3835-bced-4ea1-9c7a-f7ff653e59fe"> -<ExampleWords> -<AUni ws="en">grave, tomb, burial plot, sepulcher, vault, crypt, barrow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the place where a body is placed?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e31a67a7-e843-42d0-8e73-dd411734ee1f" ownerguid="4f697a2b-72eb-4744-8885-872a72301403"> -<Form> -<AUni ws="qvm-x-ach">isla</AUni> -<AUni ws="qvm-x-acl">isla</AUni> -<AUni ws="qvm-x-akh">isla</AUni> -<AUni ws="qvm-x-akl">isla</AUni> -<AUni ws="qvm-x-ame">isla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="e31d3adb-175e-4bab-861e-a43ad1b9f2b1" ownerguid="728ef786-3d8f-474b-9cbc-f299e971b56b"> -<Form> -<AUni ws="qvm-x-ach">shelgu</AUni> -<AUni ws="qvm-x-acl">shelgu; shelgo</AUni> -<AUni ws="qvm-x-akh">shelqu</AUni> -<AUni ws="qvm-x-akl">shelqu; shelqo</AUni> -<AUni ws="qvm-x-ame">shilqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e31f62a6-da74-40ed-9737-555664be90fd" ownerguid="1a3ad94a-4efd-4c07-ab05-f11b0827a0f6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mat</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="54feea30-58d6-4ec8-9d7b-1fa30c0d5777" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="e320bf63-5820-4661-818f-258491841d43" ownerguid="cbb679d3-ae6f-497e-b7d3-16b5a16a0730"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mi</Run> -</AStr> -</Form> -</rt> -<rt class="CmDomainQ" guid="e3233be5-c3d4-43ac-98c0-393b389000fc" ownerguid="225c48dd-9fc2-4467-944f-16a098b4e518"> -<ExampleWords> -<AUni ws="en">defeat, annihilate, beat, conquer, crush, humble, kayo, lick, master, nip, outmaneuver, overcome, overpower, overwhelm, prevail over, rebuff, reduce, rout, seize, subdue, subject, subjugate, thrash, trample, tread, triumph, vanquish, whip, bring someone to his knees, scatter, gain ground, give someone a beating</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to defeating an army or enemy in war?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e325e956-0b4f-4b8a-9858-f5ba78e46079" ownerguid="8503660c-03af-49ee-86b6-525aab4da828"> -<ExampleWords> -<AUni ws="en">hearing aid, bug, stethoscope</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to things people use to help them hear better?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e3269b3b-ed73-4aa4-8a2d-94fb498af043" ownerguid="94af09fa-ff23-433b-a881-ceaca87d9d18"> -<ExampleWords> -<AUni ws="en">weak, puny, weedy, impotent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is weak?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e3284653-244a-4f45-99ed-8ce887c5d606"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">danza</AUni> -<AUni ws="qvm-x-acl">danza</AUni> -<AUni ws="qvm-x-akh">danza</AUni> -<AUni ws="qvm-x-akl">danza</AUni> -<AUni ws="qvm-x-ame">danza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+danzar</AUni> -<AUni ws="qvm-x-acl">+danzar</AUni> -<AUni ws="qvm-x-akh">+danzar</AUni> -<AUni ws="qvm-x-akl">+danzar</AUni> -<AUni ws="qvm-x-ame">+danzar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.356" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dd6a0b15-4064-4300-8adb-76a89c29e7c9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+danzar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="49d3dd07-74ae-4c9b-8693-1a0489aa9e3d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="31ca1296-d254-495e-b1e5-c6ee7b33e33e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +danzar 
\entryTyp root 
\gENG dance 
\gSPN danzar 
\e +danzar 
\c V1 
\ach danza 
\akh danza 
\acl danza 
\akl danza 
\ame danza</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e328d0ff-260e-4a0a-82c7-af8f22917984" ownerguid="9c5d5f3a-51c2-4945-b1c5-d59421434b75"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="fc842ad1-1d03-457c-92e8-01d235e3f5ff" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="eab6d87d-add6-4e60-a42a-e37d71d5fcf1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e32ab331-7394-48d5-92f1-89fc6a92e6c0" ownerguid="cd85fe14-c139-40c7-a148-8659e107755f"> -<Form> -<AUni ws="qvm-x-ach">telar</AUni> -<AUni ws="qvm-x-acl">telar</AUni> -<AUni ws="qvm-x-akh">telar</AUni> -<AUni ws="qvm-x-akl">telar</AUni> -<AUni ws="qvm-x-ame">telar</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e32f8399-0a96-45e6-a0f8-4d97101f784d" ownerguid="c2f01aa8-9f94-43c9-9ada-b1e4a60aba07"> -<ExampleWords> -<AUni ws="en">arm</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the arm?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="e3300171-d7b2-4fb4-a103-e8fdcf3ff2ed" ownerguid="07476166-c5e5-4701-97d3-d97de8b5be6f"> -<Abbreviation> -<AUni ws="en">3.2.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.103" /> -<DateModified val="2022-9-23 16:55:8.103" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to an area of knowledge.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Area of knowledge</AUni> -</Name> -<Questions> -<objsur guid="f8e8e5ea-d7ca-458c-a7fc-e154d4524ce7" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="e3308f2b-31de-40db-a516-8b0eddcd50ee" ownerguid="a4403790-4d4d-4844-a312-2515f0d17e35"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">split</AUni> -<AUni ws="es">partir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cb6aea05-d97d-42ed-8e58-6a6ab589e63f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e330e100-457e-485e-abe5-f022a91e2f45" ownerguid="725d78eb-8cac-4b2f-b5a4-f0a9adb80f5d"> -<ExampleWords> -<AUni ws="en">sin, impiety, ungodly, godlessness, desecrate, sacrilege</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to acting against God?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e332093c-a484-44b5-9b49-b48a74a726d1" ownerguid="18561033-3136-46f7-aabd-3efff1a05172"> -<Form> -<AUni ws="qvm-x-ach">sartén</AUni> -<AUni ws="qvm-x-acl">sartén</AUni> -<AUni ws="qvm-x-akh">sartén</AUni> -<AUni ws="qvm-x-akl">sartén</AUni> -<AUni ws="qvm-x-ame">sartén</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="e33bd5b0-9b34-43ef-bb02-dfed84fc43e8" ownerguid="3c684436-fa67-470d-97b4-d9e7c8ab0a3c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="83338005-464f-4e8e-96d2-2a799942a33d" t="r" /> -</Morph> -<Msa> -<objsur guid="715c8af0-d7ab-448b-a2fa-f8b36822dac0" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="e33d3f41-fb38-46e4-84ce-be9ee8dd9e9c" ownerguid="02175330-15dc-4689-a4d4-9b2ce882ab82"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="CmDomainQ" guid="e33da164-d776-4982-b827-2204b2e9e82d" ownerguid="05a7bbdc-7cf5-47d3-830b-84e1591b11cc"> -<ExampleWords> -<AUni ws="en">issue an order, publish a law, proclaim, proclamation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to telling people about a law?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e3401ca4-5d23-45a4-9a48-534abbc5d46b" ownerguid="d83ebe2c-c1d6-49ec-a4a9-1cdced843387"> -<ExampleWords> -<AUni ws="en">feel faint, feel dizzy, stagger, become incoherent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What happens or what symptoms occur when someone begins to lose consciousness?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e341bb15-8339-4c72-86bf-5cb9fd2b935e" ownerguid="edbfc928-049c-4cb7-8c88-8e8af38287c7"> -<ExampleWords> -<AUni ws="en">passionate, romantic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something someone says or does when they love someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e34386f2-643e-4439-b88b-9f4cdfaa6319" ownerguid="34c9408c-c3f7-49db-8bce-de7fa7da03d7"> -<ExampleWords> -<AUni ws="en">catch, catch up with, capture, get, corner, hunt down, nab, seize, seizure, trap</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to catching someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e343a03b-ba8a-4633-a899-8268a271e346" ownerguid="776de0c6-fdd7-46df-b33f-b1e4af6ee099"> -<ExampleWords> -<AUni ws="en">occasional, the odd, periodic, intermittent, casual</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that happens sometimes?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e3447274-2d76-4d2d-bc29-2000cc94760a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cashu</AUni> -<AUni ws="qvm-x-acl">cashu; cashu; casho</AUni> -<AUni ws="qvm-x-akh">kashu</AUni> -<AUni ws="qvm-x-akl">kashu; kashu; kasho</AUni> -<AUni ws="qvm-x-ame">kashu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kashu</AUni> -<AUni ws="qvm-x-acl">*kashu</AUni> -<AUni ws="qvm-x-akh">*kashu</AUni> -<AUni ws="qvm-x-akl">*kashu</AUni> -<AUni ws="qvm-x-ame">*kashu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.953" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3bad396c-96e2-4fb7-a07f-c81731474e03" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kashu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7921806f-b6b6-46db-9d99-76bbdc52f64c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4fd3996c-8b6e-4a47-97be-07d86ae15198" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kashu 
\entryTyp root 
\gENG tool 
\gSPN herramienta 
\e *kashu 
\c N0 
\ach cashu 
\akh kashu 
\acl cashu / _# 
\acl cashu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl casho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kashu / _# 
\akl kashu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kasho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kashu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e345540e-1922-4bf2-bf1d-7ee3965c7c94" ownerguid="f2d0f288-5bbe-4fa0-9e8f-ddcc74891701"> -<ExampleWords> -<AUni ws="en">mourner</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to someone who is mourning?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e346edff-5a5d-478e-96e3-dac08d23537c" ownerguid="f56a2511-10cc-4829-940d-49051429bfba"> -<ExampleWords> -<AUni ws="en">bubble (n), bubble (v), bubbly, suds, foam</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to bubbles in or on a liquid?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e34cec8e-4248-4f91-b06b-4d25c823eacc" ownerguid="52289137-40ed-4623-b5e6-af2e2f89588d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">omen</AUni> -<AUni ws="es">malagüero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="868abcc4-d3e6-4a85-bc44-7db8e82d1fd7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="e34e1a48-6dfd-4dbc-98c4-ca39ac55f199" ownerguid="1b8e0af2-0a62-4b0c-b9af-59af6da8b0f1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="bcfddc5b-a16f-474e-b7ec-3a65bebc525d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e34f5455-940e-4f44-a59d-383c16acddf2" ownerguid="231907bb-fc6c-4d03-8aa4-eb3621e3230d"> -<Form> -<AUni ws="qvm-x-ach">ticpi</AUni> -<AUni ws="qvm-x-acl">ticpi; ticpe</AUni> -<AUni ws="qvm-x-akh">tikpi</AUni> -<AUni ws="qvm-x-akl">tikpi; tikpe</AUni> -<AUni ws="qvm-x-ame">tikpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="e3519008-76e4-4566-93d8-5d4d03802a79" ownerguid="d2c0de49-eaa3-4b97-b23a-c9a1487a5af9"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e355387c-bb22-482b-9d37-69811d4009b3" ownerguid="579659d9-7f03-465d-a59b-647c5a6b29bb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ma'am</AUni> -<AUni ws="es">mamita</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d87b8075-b417-425d-b925-df423a5246e4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e3572cd4-53d7-4b07-a3a7-8d7a89882791" ownerguid="1debc71f-e27c-4fe7-bb7b-b308608c09d9"> -<Form> -<AUni ws="qvm-x-ach">jircan</AUni> -<AUni ws="qvm-x-acl">jircan</AUni> -<AUni ws="qvm-x-akh">jirkan</AUni> -<AUni ws="qvm-x-akl">jirkan</AUni> -<AUni ws="qvm-x-ame">hirkan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="e35d18bf-2e3d-4cb3-bb2b-850f29f0b2bd" ownerguid="431dd85c-daef-4948-9280-6a8d43b9b335"> -<Form> -<AUni ws="qvm-x-ach">llicullicu</AUni> -<AUni ws="qvm-x-acl">llicullicu; llicullicu; llicullico</AUni> -<AUni ws="qvm-x-akh">llikulliku</AUni> -<AUni ws="qvm-x-akl">llikulliku; llikulliku; llikulliko</AUni> -<AUni ws="qvm-x-ame">llikulliku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e35d417f-f866-4637-aefe-b749b5effc72" ownerguid="8bdf4847-903b-4af6-9553-3cfab65de516"> -<ExampleWords> -<AUni ws="en">calculator, computer, abacus, slide rule</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What instruments are used to do mathematics?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e360f54e-d29a-4d9d-9d58-cee9535dab66" ownerguid="c837daba-ce1a-4069-8f54-8818faf920c9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">loan</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1a651e7b-d2fe-40a7-bb43-f85bb5a55e81" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e360f576-424c-4083-ad52-ef73d5aaec7a" ownerguid="a764174f-ccb7-48b1-add7-158bc89a5e81"> -<ExampleWords> -<AUni ws="en">fail, unsuccessful, not make it</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to failing to do a task?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e363d890-bfc3-45db-a3ad-8458f2df7ca1" ownerguid="b0b161b2-e773-4b04-99eb-23778fd2aa80"> -<ExampleWords> -<AUni ws="en">tear, rip, shred</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to tearing something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e363fc6f-65ec-4d2e-948b-e6dc231a1675" ownerguid="7cf4f041-38f3-4f45-8dd1-0c2641702518"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e3652e40-520f-4331-b510-861e207e6c0b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ragui</AUni> -<AUni ws="qvm-x-acl">ragui; ragui; rague</AUni> -<AUni ws="qvm-x-akh">raqi</AUni> -<AUni ws="qvm-x-akl">raqi; raqi; raqe</AUni> -<AUni ws="qvm-x-ame">raqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*raqi</AUni> -<AUni ws="qvm-x-acl">*raqi</AUni> -<AUni ws="qvm-x-akh">*raqi</AUni> -<AUni ws="qvm-x-akl">*raqi</AUni> -<AUni ws="qvm-x-ame">*raqi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.275" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a10b5056-336b-4a88-93d1-d2bed4b53043" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*raqi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="74b6f7ca-b63e-467a-9b9a-44a96ec279b4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dd0dc6f7-f157-4b97-a1a4-7cebfba9b3b9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *raqi 
\entryTyp root 
\gENG 
\gSPN caracól 
\e *raqi 
\c N0 
\mp +FinalI 
\ach ragui 
\akh raqi 
\acl ragui / _# 
\acl ragui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl rague +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl raqi / _# 
\akl raqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl raqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame raqi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="e369a394-97cf-492b-974f-50349b5be319"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pu:sa</AUni> -<AUni ws="qvm-x-acl">pu:sa</AUni> -<AUni ws="qvm-x-akh">pu:sa</AUni> -<AUni ws="qvm-x-akl">pu:sa</AUni> -<AUni ws="qvm-x-ame">pu:sa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pu:sa</AUni> -<AUni ws="qvm-x-acl">*pu:sa</AUni> -<AUni ws="qvm-x-akh">*pu:sa</AUni> -<AUni ws="qvm-x-akl">*pu:sa</AUni> -<AUni ws="qvm-x-ame">*pu:sa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.310" /> -<DateModified val="2022-10-10 21:18:47.197" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1ac022bb-34dc-417f-8290-59472d36225d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pu:sa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f06aaa44-28c9-46f4-b0c4-7c68acd6c03f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aabbaf80-1c6b-4613-86a6-c6cf76d5a56c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pu:sa 
\entryTyp root 
\gENG 
\gSPN 
\e *pu:sa 
\c V1 
\ach pu:sa 
\akh pu:sa 
\acl pu:sa 
\akl pu:sa 
\ame pu:sa 
\i JER 1.13 Norti kaq läducho manka timpur puwaykaqtami rikaykä. NOTA: Wakin runakunaqa püsaykaqtami nipäkun.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="e36a2ebf-7195-431a-8f9f-1f7943754de6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">exigi</AUni> -<AUni ws="qvm-x-acl">exigi; exige</AUni> -<AUni ws="qvm-x-akh">exigi</AUni> -<AUni ws="qvm-x-akl">exigi; exige</AUni> -<AUni ws="qvm-x-ame">exigi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+exigir</AUni> -<AUni ws="qvm-x-acl">+exigir</AUni> -<AUni ws="qvm-x-akh">+exigir</AUni> -<AUni ws="qvm-x-akl">+exigir</AUni> -<AUni ws="qvm-x-ame">+exigir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.526" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6d9ec4ca-7262-4031-9041-5892eb4d091d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+exigir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a7386bf2-380c-4e8c-b049-d454231f8e3c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="58985b11-00da-4477-aaa4-14436356f2f3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +exigir 
\entryTyp root 
\gENG insist 
\gSPN exegir 
\e +exigir 
\c V2 
\mp +FinalI 
\ach exigi 
\akh exigi 
\acl exigi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl exige +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl exigi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl exige +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame exigi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="e36a397f-4069-442e-8148-703abdd4e179"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sin</AUni> -<AUni ws="qvm-x-acl">sin</AUni> -<AUni ws="qvm-x-akh">sin</AUni> -<AUni ws="qvm-x-akl">sin</AUni> -<AUni ws="qvm-x-ame">sin</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sin</AUni> -<AUni ws="qvm-x-acl">+sin</AUni> -<AUni ws="qvm-x-akh">+sin</AUni> -<AUni ws="qvm-x-akl">+sin</AUni> -<AUni ws="qvm-x-ame">+sin</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.683" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="72b375c9-1af6-4475-ae45-81262e1f09ad" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sin</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5cbeeb3d-ffa8-4a86-8c9e-78026021247e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="526788d1-b373-41b9-98ab-39cc8b6a39e6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sin 
\entryTyp root 
\gENG without 
\gSPN sin 
\e +sin 
\c NOSUFF 
\ach sin 
\akh sin 
\acl sin 
\akl sin 
\ame sin 
\i Gen 33.18 Tsaynogpami Padan-Arampita cutimur sin novedä Canaán partiman chayargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e36d0eb6-aee8-460b-8579-e1d2e1f6596e" ownerguid="73726931-ef12-4d39-a76e-7742f4b7c9cd"> -<ExampleWords> -<AUni ws="en">economics</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the study of money and wealth?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="e36fba56-c007-477e-b0f7-2877e972bc8b" ownerguid="42fc2fe1-46eb-4646-b011-d351d39083e2"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pasa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pasa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pasa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pasa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pasa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="883ada6f-0bf2-4887-9c50-61a9cb250b4c" t="r" /> -</Morph> -<Msa> -<objsur guid="b7f64f45-98d1-4eac-9cd3-956bf92b1494" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="e37152be-61f5-4f1c-8b3c-3ab0ae48666d" ownerguid="a31c85df-02a9-4dd8-a094-0f07a0afbcca"> -<ExampleWords> -<AUni ws="en">removal, extraction</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the act of removing something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e3735bab-69a6-43b1-99e0-4a08e88df940"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ce:pu</AUni> -<AUni ws="qvm-x-acl">ce:pu; ce:pu; ce:po</AUni> -<AUni ws="qvm-x-akh">ce:pu</AUni> -<AUni ws="qvm-x-akl">ce:pu; ce:pu; ce:po</AUni> -<AUni ws="qvm-x-ame">ce:pu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cepo</AUni> -<AUni ws="qvm-x-acl">+cepo</AUni> -<AUni ws="qvm-x-akh">+cepo</AUni> -<AUni ws="qvm-x-akl">+cepo</AUni> -<AUni ws="qvm-x-ame">+cepo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.110" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f398ee75-b2ea-4fa6-9460-e612999ef574" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cepo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="315c65d4-e7a6-402a-a35d-156a7f966589" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="654fb466-a04a-46ca-8a56-ed1ee1cdbda1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cepo 
\entryTyp root 
\gENG stocks 
\gSPN cepo 
\e +cepo 
\c N0 
\ach ce:pu 
\akh ce:pu 
\acl ce:pu / _# 
\acl ce:pu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ce:po +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ce:pu / _# 
\akl ce:pu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ce:po +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ce:pu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e3736ded-909c-4a75-a4fe-759e2477e88d" ownerguid="60db66f9-b4de-4f20-bb9d-715b6caa2164"> -<Form> -<AUni ws="qvm-x-ach">pichiuchanca</AUni> -<AUni ws="qvm-x-acl">pichiuchanca</AUni> -<AUni ws="qvm-x-akh">pichiwchanka</AUni> -<AUni ws="qvm-x-akl">pichiwchanka</AUni> -<AUni ws="qvm-x-ame">pichiwchanka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="e3752df5-e568-4b31-8192-25d9ef6bd537" ownerguid="03134252-5f94-470e-93ff-675fc44a5fbf"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e3759ffa-590f-42a6-a67b-07731f65ce42" ownerguid="3160b7ad-e4e8-4a46-8e2e-d5e601969547"> -<ExampleWords> -<AUni ws="en">my/your/his story, tell about yourself, biography, biographical, biographer, autobiography, autobiographical</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a story about a person's life?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e37c7492-0a8d-4762-ab47-1ca841a7ab90" ownerguid="0e24efb5-6410-4331-b5c4-4681cc476873"> -<Form> -<AUni ws="qvm-x-ach">läta</AUni> -<AUni ws="qvm-x-acl">läta</AUni> -<AUni ws="qvm-x-akh">läta</AUni> -<AUni ws="qvm-x-akl">läta</AUni> -<AUni ws="qvm-x-ame">läta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="e37d56f3-eb67-42ee-919f-e1556b1ed320" ownerguid="469846b5-c4d6-4062-996b-2ec2cbfc73dd"> -<Form> -<AUni ws="qvm-x-ach">católica; catölica</AUni> -<AUni ws="qvm-x-acl">católica; catölica</AUni> -<AUni ws="qvm-x-akh">católica; catölica</AUni> -<AUni ws="qvm-x-akl">católica; catölica</AUni> -<AUni ws="qvm-x-ame">católica; catölica</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PhEnvironment" guid="e381191f-e778-41d7-9369-2559954d06ce" ownerguid="be765e3e-ea5e-11de-9d42-0013722f8dec"> -<Name> -<AUni ws="en">before -rä which foreshortens</AUni> -</Name> -<StringRepresentation> -<Str> -<Run underline="none" ws="qvm-x-akh">/_ra</Run> -</Str> -</StringRepresentation> -</rt> -<rt class="MoStemMsa" guid="e3836d5d-d8d7-462d-9dee-0e8e695a55cd" ownerguid="01184d2a-7488-4439-927e-6d306d383f48"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="e384640d-300f-4451-bf4e-81b59510a94c" ownerguid="8fe88230-944c-4cfe-973d-a79050a56e5e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e386c569-e9be-46ec-a099-d970dc2a38a4" ownerguid="29a8ebbe-ebc4-4295-b6af-84331d019361"> -<ExampleWords> -<AUni ws="en">acronym, anagram</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to special words?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e38a1cca-1e5b-4ddd-818b-8f8e7e715bfb" ownerguid="863e5dc0-1b6b-486e-b6b4-2dbef9ed05ec"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">taste</AUni> -<AUni ws="es">saborear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dd242bc6-127d-4fbc-8103-d4e093b6f021" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e390bbbd-25d2-4130-9ded-7b8dbebb398f" ownerguid="9a7cc768-f4a3-42ae-8b0b-838ca88538f8"> -<Form> -<AUni ws="qvm-x-ach">tapla</AUni> -<AUni ws="qvm-x-acl">tapla</AUni> -<AUni ws="qvm-x-akh">tapla</AUni> -<AUni ws="qvm-x-akl">tapla</AUni> -<AUni ws="qvm-x-ame">tapla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="e3926e79-0dc7-483e-84c8-04bd72176b17" ownerguid="803911f4-d3d8-4771-8d51-fa2bda3d5978"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="e392fb6f-a130-4c0f-87e1-77159fed4f70" ownerguid="ffc8ed53-dc2e-430f-84b7-30a0910bfb61"> -<Form> -<AUni ws="qvm-x-ach">liriu; lirio</AUni> -<AUni ws="qvm-x-acl">liriu; liriu; lirio</AUni> -<AUni ws="qvm-x-akh">liriu; lirio</AUni> -<AUni ws="qvm-x-akl">liriu; liriu; lirio</AUni> -<AUni ws="qvm-x-ame">liriu; lirio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="e3935eec-43c6-49f3-a6ce-18a0de673428"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cucurutsi</AUni> -<AUni ws="qvm-x-acl">cucurutsi; cucurutsi; cucurutse</AUni> -<AUni ws="qvm-x-akh">kukurutsi</AUni> -<AUni ws="qvm-x-akl">kukurutsi; kukurutsi; kukurutse</AUni> -<AUni ws="qvm-x-ame">kukurutsi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kukuruchi.n</AUni> -<AUni ws="qvm-x-acl">*kukuruchi.n</AUni> -<AUni ws="qvm-x-akh">*kukuruchi.n</AUni> -<AUni ws="qvm-x-akl">*kukuruchi.n</AUni> -<AUni ws="qvm-x-ame">*kukuruchi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.3" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="08d738d3-c70c-4c19-a775-8568b0cf7ea5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kukuruchi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3b8ff450-1ff2-4a1d-9e57-660fac19a719" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3729461a-ec98-4159-b87c-917ed4b738bd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kukuruchi.n 
\entryTyp root 
\gENG 
\gSPN 
\e *kukuruchi.n 
\c N0 
\mp +FinalI 
\ach cucurutsi 
\akh kukurutsi 
\acl cucurutsi / _# 
\acl cucurutsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cucurutse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kukurutsi / _# 
\akl kukurutsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kukurutse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kukurutsi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e394dd21-5ac0-4a4b-a942-1ded0d1486f4" ownerguid="3e24f147-d901-4552-b7cf-a8dac2cb30b7"> -<Form> -<AUni ws="qvm-x-ach">ticlampa</AUni> -<AUni ws="qvm-x-acl">ticlampa</AUni> -<AUni ws="qvm-x-akh">tiklampa</AUni> -<AUni ws="qvm-x-akl">tiklampa</AUni> -<AUni ws="qvm-x-ame">tiklampa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e39659d6-cd3e-4f63-976f-14eafc6749e9" ownerguid="e96f6860-0914-4324-9c49-48f24a0ff7f1"> -<ExampleWords> -<AUni ws="en">speak well, be eloquent, be a good speaker, be an excellent speaker, be fluent, speak clearly, articulate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to speaking well?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e3982578-26ca-4dd8-8b44-63792e7c2cd3" ownerguid="6e52a870-d21a-46e5-a841-75fa74e5070b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="e39b3d31-c19a-46ac-9f96-7a942f9cd1fc" ownerguid="fa243cc0-3b47-4be3-991b-909e90538fba"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="e39c50eb-60cd-4f36-a2e0-23dd104c0b57" ownerguid="1e4daec2-7641-4a60-b0e0-25b4f250ba5f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="e39fc040-3dc7-4333-948c-e84db953afde" ownerguid="ef4eea1e-40e5-4c5b-bd23-433833dbd81b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e3a00836-9e04-42c7-8047-fb190c78a83e" ownerguid="2b846476-00cf-4d82-97a1-26e1eda880ca"> -<ExampleWords> -<AUni ws="en">naughty, badly-behaved, mischievous, spoiled</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe a bad child?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e3a02452-a1c3-4ead-b0b0-d2060220f29f" ownerguid="f45f9c23-b6ae-4026-aa41-de4b6eab4ddc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chalk</AUni> -<AUni ws="es">tiza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f529db3f-e740-4e0d-ab44-62d5fb4e1f43" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="e3a2cc24-863b-4868-84d0-bbe3d9120340" ownerguid="40ffe791-d9ca-4135-a1df-e308e27feedb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e3a38e75-429f-471f-97f3-4def54d57e2a" ownerguid="01441207-4935-49a5-a192-16d949f5606c"> -<ExampleWords> -<AUni ws="en">sports event, sporting event, game, match, bout</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a sports event?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e3a4cbcf-c434-41bb-91fa-eaf8b4fbf24e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pre:su</AUni> -<AUni ws="qvm-x-acl">pre:su; pre:so</AUni> -<AUni ws="qvm-x-akh">pre:su</AUni> -<AUni ws="qvm-x-akl">pre:su; pre:so</AUni> -<AUni ws="qvm-x-ame">pre:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+aprisionar</AUni> -<AUni ws="qvm-x-acl">+aprisionar</AUni> -<AUni ws="qvm-x-akh">+aprisionar</AUni> -<AUni ws="qvm-x-akl">+aprisionar</AUni> -<AUni ws="qvm-x-ame">+aprisionar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.810" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f0695ec9-e454-4783-9ffc-970234d18301" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+aprisionar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="acaf56f5-6c7a-498a-8905-165a5ceff7ea" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8bf2c4c8-0cee-4777-9404-eb14fee06811" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +aprisionar 
\entryTyp root 
\gENG imprison 
\gSPN aprisionar 
\e +aprisionar 
\c V2 
\ach pre:su 
\akh pre:su 
\acl pre:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pre:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pre:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pre:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pre:su</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e3a4e19d-8302-4c06-b941-3623fd864fcb" ownerguid="3f535689-944a-4e9c-8f64-ec6395b7c8d7"> -<ExampleWords> -<AUni ws="en">slippery</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a surface that something can easily slip on?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e3a677a0-5bc3-42d8-8dee-efaa6179e4ec"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">almorza</AUni> -<AUni ws="qvm-x-acl">almorza</AUni> -<AUni ws="qvm-x-akh">almorza</AUni> -<AUni ws="qvm-x-akl">almorza</AUni> -<AUni ws="qvm-x-ame">almorza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+almorzar</AUni> -<AUni ws="qvm-x-acl">+almorzar</AUni> -<AUni ws="qvm-x-akh">+almorzar</AUni> -<AUni ws="qvm-x-akl">+almorzar</AUni> -<AUni ws="qvm-x-ame">+almorzar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.717" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4eb0c93d-855f-4c3e-921f-2b4aeeee1659" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+almorzar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1a08eaaa-2857-47af-adb8-ccfa14e5d377" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="19ec349b-160f-4499-8721-6fd383b96f8e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +almorzar 
\entryTyp root 
\gENG eat.lunch 
\gSPN almorzar 
\e +almorzar 
\c V1 
\ach almorza 
\akh almorza 
\acl almorza 
\akl almorza 
\ame almorza</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="e3a6f918-4b0f-4515-bd6c-4f3370bcbf67" ownerguid="86f90eff-158b-4f6d-82e9-fab136dfd141"> -<Abbreviation> -<AUni ws="en">4.2.1.8.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.208" /> -<DateModified val="2022-9-23 16:55:8.208" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to joining an organization.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>34B Join, Begin To Associate</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Join an organization</AUni> -</Name> -<Questions> -<objsur guid="71fc3be0-d93d-4f79-817d-301c595d1a30" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="e3a7e5a3-b0d1-4795-b320-8a08c35ed1b0" ownerguid="60dc7cf6-0a41-4cd3-99a6-0b7a71488e7e"> -<ExampleWords> -<AUni ws="en">bad attitude, be in a bad mood</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to feeling bad for a long time?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e3ac167a-3a6d-4b0d-bbc2-f97c51a26183" ownerguid="b83e66f0-f907-42ff-b43b-34d85214708d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">completar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="86cf087d-6033-42a6-bb97-6a97b822438d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e3aed75d-a5cb-47b4-8cc5-435f811ced39" ownerguid="aadefee4-ed14-4753-952e-e945f2972e37"> -<ExampleWords> -<AUni ws="en">stage, phase, round</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the parts of a process?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e3b02c76-d7ad-4d40-8fba-486bb3dcb1e2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">dispara:ti; dispara:ti</AUni> -<AUni ws="qvm-x-acl">dispara:ti; dispara:ti; dispara:te</AUni> -<AUni ws="qvm-x-akh">dispara:ti; dispara:ti</AUni> -<AUni ws="qvm-x-akl">dispara:ti; dispara:ti; dispara:te</AUni> -<AUni ws="qvm-x-ame">dispara:ti; dispara:ti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+disparate</AUni> -<AUni ws="qvm-x-acl">+disparate</AUni> -<AUni ws="qvm-x-akh">+disparate</AUni> -<AUni ws="qvm-x-akl">+disparate</AUni> -<AUni ws="qvm-x-ame">+disparate</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.426" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3eb04e00-fd28-40fb-887b-7d4480a0d0f1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+disparate</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="57835ac2-acce-4654-a32c-8672106a2aee" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="18797252-68a4-4235-8672-9c5f12ef5e42" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +disparate 
\entryTyp root 
\gENG bad.word 
\gSPN disparate 
\e +disparate 
\c N0 
\mp +FinalI 
\ach dispara:ti / _# 
\ach dispara:ti / ~_# 
\akh dispara:ti / _# 
\akh dispara:ti / ~_# 
\acl dispara:ti / _# 
\acl dispara:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl dispara:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl dispara:ti / _# 
\akl dispara:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl dispara:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame dispara:ti / _# 
\ame dispara:ti / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e3b02edd-a96b-4e0e-a468-21b1313e756c" ownerguid="99861dcb-c6ca-4e50-a19a-efadbb10c2cf"> -<ExampleWords> -<AUni ws="en">antique, classical, time-honored, vintage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that is old and good?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="e3b4235e-cb4e-4cae-8309-a98d7b63344f" ownerguid="31a7512b-6b46-4d0d-a71b-69a4b837f3ff"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="e3b78a5f-5d6a-4f82-9032-8865c3bd57fa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shalama</AUni> -<AUni ws="qvm-x-acl">shalama</AUni> -<AUni ws="qvm-x-akh">shalama</AUni> -<AUni ws="qvm-x-akl">shalama</AUni> -<AUni ws="qvm-x-ame">shalama</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shallama</AUni> -<AUni ws="qvm-x-acl">*shallama</AUni> -<AUni ws="qvm-x-akh">*shallama</AUni> -<AUni ws="qvm-x-akl">*shallama</AUni> -<AUni ws="qvm-x-ame">*shallama</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.531" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="668f6187-498b-4c11-b09a-29942a7b7cfa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shallama</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6a8fe39c-0731-44fa-94ca-6e1b2513ca96" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a8ee8b6b-52dc-4c4e-98c8-f02648255d00" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shallama 
\entryTyp root 
\gENG amallor 
\gSPN crush 
\e *shallama 
\c V1 
\ach shalama 
\akh shalama 
\acl shalama 
\akl shalama 
\ame shalama</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e3b96bda-4f64-4c0d-8a0d-2b5cd18ab8c4" ownerguid="cbc24a98-1c64-467e-98aa-251a28e4c0b8"> -<ExampleWords> -<AUni ws="en">fetid, malodorous, putrid</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to the smell of feces?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="e3b98f99-6dc2-4dd5-84df-47e65e52a052"> -<Form> -<Str> -<Run ws="en">mi</Run> -</Str> -</Form> -</rt> -<rt class="LexSense" guid="e3bc5d44-2f4e-4c4f-b16a-0ff1c8d3a993" ownerguid="d4ef7912-3b33-4ccd-ad37-23ad4b6814d6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stud.donkey</AUni> -<AUni ws="es">asno o caballo semental</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dd02b4b5-7a53-410b-b0cc-b82105738df6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="e3bdb875-58ec-481d-99fd-dbeb2b9dec5a" ownerguid="51f5f243-692c-4f29-af5b-3a386fd5215c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">carry</AUni> -<AUni ws="es">llevar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="37839bcb-67be-4626-832b-03e5901c7dea" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e3bde9db-0878-4fac-8b93-64cdc5adf71e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">segru</AUni> -<AUni ws="qvm-x-acl">segru; segru; segro</AUni> -<AUni ws="qvm-x-akh">seqru</AUni> -<AUni ws="qvm-x-akl">seqru; seqru; seqro</AUni> -<AUni ws="qvm-x-ame">siqru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*siqru</AUni> -<AUni ws="qvm-x-acl">*siqru</AUni> -<AUni ws="qvm-x-akh">*siqru</AUni> -<AUni ws="qvm-x-akl">*siqru</AUni> -<AUni ws="qvm-x-ame">*siqru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.703" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a1e1132d-aee9-476a-9a30-ac809fd2c543" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*siqru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ce1a149b-d6fb-4994-aa46-9cdb29cc0e7c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dace36d2-c5b0-4cab-b117-d108def0b77e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *siqru 
\entryTyp root 
\gENG 
\gSPN 
\e *siqru 
\c N0 
\ach segru 
\akh seqru 
\acl segru / _# 
\acl segru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl segro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl seqru / _# 
\akl seqru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl seqro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame siqru 
\i Lev 21.18 Tsauraga mandag cüra cananpag manami yaycunmantsu gapracuna, wegrucuna, segru cäracuna, macllucuna,</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="e3be0ea6-7f1e-4ca0-bd98-91f9e37e08dd" ownerguid="c6d74413-f956-410a-83a5-2837954e07f9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="e3c353c3-6e2f-409e-b685-b6f198317334" ownerguid="a703376d-780e-4b30-b993-836a22b7ffd3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="e3c4220d-e30e-4186-9ec7-1bb2c7cddcb7" ownerguid="b6006567-8e06-4e00-8a8a-5ed9654be26d"> -<Form> -<AUni ws="qvm-x-ach">voluntä</AUni> -<AUni ws="qvm-x-acl">voluntä</AUni> -<AUni ws="qvm-x-akh">voluntä</AUni> -<AUni ws="qvm-x-akl">voluntä</AUni> -<AUni ws="qvm-x-ame">voluntä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StTxtPara" guid="e3c46986-6476-4ac9-ac5b-d64afde389cd" ownerguid="bf3f1d61-0fb7-4d38-ad7b-0e74c2659ac5"> -<Contents> -<Str> -<Run ws="qvm-x-akh">Tayta Faraónta ruwakuykulanki kaypita jorqamänanpaq.</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="61eaaf25-626a-415b-8f03-e51c9c1e7734" t="o" /> -</Segments> -</rt> -<rt class="CmDomainQ" guid="e3c65ef0-b110-4211-b45e-bc590b84644a" ownerguid="a3fb18fd-befb-493f-8a19-760883ed9697"> -<ExampleWords> -<AUni ws="en">wedged in, stuck</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is stuck?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e3c6dfe3-6e2d-484a-bbda-b8a94ce2f2b2" ownerguid="9d6cbe74-93d6-41fb-b7e2-cc30adb28187"> -<ExampleWords> -<AUni ws="en">rise, ascend, gain height</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to moving up through the air?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e3c8ced8-95d3-4253-b251-b5bbd1750a46" ownerguid="717fc03c-3d1e-47c0-914f-d78cf37926e7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="2c8b8807-759f-455f-b8dd-7f48f1723da0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="e3cbb5ca-4bda-4e7b-9342-f1c01c9e5519" ownerguid="09af8950-d4d6-4a5c-bcce-1ea4585553ad"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 68.8 Tamyapis palchachayrag tamyamorgan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="e3cd5b39-11a4-4a3b-bcfa-9fa214288d91" ownerguid="1e0a6241-fd13-49e2-8b30-6fc80983e28a"> -<Form> -<AUni ws="qvm-x-ach">atsikya</AUni> -<AUni ws="qvm-x-acl">atsikya</AUni> -<AUni ws="qvm-x-akh">atsikya</AUni> -<AUni ws="qvm-x-akl">atsikya</AUni> -<AUni ws="qvm-x-ame">atsikya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="e3d18da9-e689-4d16-a8f6-2cda34bfee50"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rutu</AUni> -<AUni ws="qvm-x-acl">rutu; ruto</AUni> -<AUni ws="qvm-x-akh">rutu</AUni> -<AUni ws="qvm-x-akl">rutu; ruto</AUni> -<AUni ws="qvm-x-ame">rutu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rutu</AUni> -<AUni ws="qvm-x-acl">*rutu</AUni> -<AUni ws="qvm-x-akh">*rutu</AUni> -<AUni ws="qvm-x-akl">*rutu</AUni> -<AUni ws="qvm-x-ame">*rutu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.407" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ea0490ef-012a-4fd3-9121-88bba593ef7e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rutu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="08f51dbd-8d01-4508-93be-db28909b3581" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9448df08-fbd7-42c5-8139-26429353d9e3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rutu 
\entryTyp root 
\gENG cut 
\gSPN cortar 
\e *rutu 
\c V2 
\ach rutu 
\akh rutu 
\acl rutu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ruto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rutu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ruto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame rutu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="e3d23dcf-2c2c-4094-b8ed-d1381de5b36f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lanza</AUni> -<AUni ws="qvm-x-acl">lanza</AUni> -<AUni ws="qvm-x-akh">lanza</AUni> -<AUni ws="qvm-x-akl">lanza</AUni> -<AUni ws="qvm-x-ame">lanza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lanzar</AUni> -<AUni ws="qvm-x-acl">+lanzar</AUni> -<AUni ws="qvm-x-akh">+lanzar</AUni> -<AUni ws="qvm-x-akl">+lanzar</AUni> -<AUni ws="qvm-x-ame">+lanzar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.53" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="acd7a2a0-ae2e-432d-9776-891d7795b64f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lanzar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="201ad1fc-fc85-4e8e-a617-ab87abc5028d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="62bc32a2-34d4-4022-a0b1-e5dd93ac551c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lanzar 
\entryTyp root 
\gENG 
\gSPN 
\e +lanzar 
\c V2 
\ach lanza 
\akh lanza 
\acl lanza 
\akl lanza 
\ame lanza</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e3d8cb44-f58e-4907-92bc-68056996ca43" ownerguid="9296e185-b820-4d67-9741-fa7bbdbc9291"> -<Form> -<AUni ws="qvm-x-ach">bururuy</AUni> -<AUni ws="qvm-x-acl">bururuy</AUni> -<AUni ws="qvm-x-akh">bururuy</AUni> -<AUni ws="qvm-x-akl">bururuy</AUni> -<AUni ws="qvm-x-ame">bururuy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e3d9d02a-832e-4f51-bbe7-fcb63efdfcdd" ownerguid="d32fda34-6a18-4483-bba0-61fde014f904"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">barbecued.meat</AUni> -<AUni ws="es">carne.asado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f7c383bb-cd17-4b23-a680-5466ecf8a469" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiGloss" guid="e3dd56ca-7f1d-4da0-ba6d-620ca860f5fe" ownerguid="eaa2018f-d92a-440b-b5d7-9ac949f75f99"> -<Form> -<AUni ws="en">Pharoah</AUni> -<AUni ws="es">Faraón</AUni> -</Form> -</rt> -<rt class="WfiMorphBundle" guid="e3e122f3-f9f8-4b15-8c42-6bb06045aeda" ownerguid="5fef74b3-10a2-4ee5-9b51-61d80776ff05"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="e3e3f8de-514a-47b6-a280-234eb2da0d4d" ownerguid="d7ba3de4-ad9f-4c16-9ec2-156c6befeaf3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">smash</AUni> -<AUni ws="es">machucar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9b407431-6405-41ab-9791-a4c69efdc5ed" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e3e5abc0-ad89-4eb2-ae91-1b26ff2dc6a6" ownerguid="1ee7bae5-1414-4f2e-ac5e-ce5178a628ec"> -<Form> -<AUni ws="qvm-x-ach">jauna</AUni> -<AUni ws="qvm-x-acl">jauna</AUni> -<AUni ws="qvm-x-akh">jawna</AUni> -<AUni ws="qvm-x-akl">jawna</AUni> -<AUni ws="qvm-x-ame">hawna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="e3e68e2d-8fbf-4e9e-a781-3ce55c374792"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">viola</AUni> -<AUni ws="qvm-x-acl">viola</AUni> -<AUni ws="qvm-x-akh">viola</AUni> -<AUni ws="qvm-x-akl">viola</AUni> -<AUni ws="qvm-x-ame">viola</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+violar</AUni> -<AUni ws="qvm-x-acl">+violar</AUni> -<AUni ws="qvm-x-akh">+violar</AUni> -<AUni ws="qvm-x-akl">+violar</AUni> -<AUni ws="qvm-x-ame">+violar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.404" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6f0b5a8c-4dca-421b-8d1b-00ec34d181f6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+violar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4f51ed1d-e49d-4ca0-b737-c67262ccdcc7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fdf970b5-9c49-461a-ae38-3728be79eacb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +violar 
\entryTyp root 
\gENG 
\gSPN 
\e +violar 
\c V2 
\ach viola 
\akh viola 
\acl viola 
\akl viola 
\ame viola</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="e3e71352-0500-4792-9401-ca1bb77c1833"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lla:ma</AUni> -<AUni ws="qvm-x-acl">lla:ma</AUni> -<AUni ws="qvm-x-akh">lla:ma</AUni> -<AUni ws="qvm-x-akl">lla:ma</AUni> -<AUni ws="qvm-x-ame">lla:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+llamar</AUni> -<AUni ws="qvm-x-acl">+llamar</AUni> -<AUni ws="qvm-x-akh">+llamar</AUni> -<AUni ws="qvm-x-akl">+llamar</AUni> -<AUni ws="qvm-x-ame">+llamar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.134" /> -<DateModified val="2022-10-10 21:18:47.218" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8d2df995-3765-4766-bf0a-ae8484986d31" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+llamar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="21d53d94-ff64-4346-901b-9a2664021e9e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="73b238ad-c164-4057-99f5-d94b404c1abe" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +llamar 
\entryTyp root 
\gENG 
\gSPN 
\e +llamar 
\c V1 
\ach lla:ma 
\akh lla:ma 
\acl lla:ma 
\akl lla:ma 
\ame lla:ma</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e3ea4940-a2e9-46ad-9952-9aaba6fbb326" ownerguid="07a04735-d4f4-446d-b749-741a3a0b4259"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="bf285485-be0c-449d-990e-43368461f60d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="e3eae260-1b3b-47ad-a07e-2afa7a53d18f"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">tashqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="e3edb30c-066d-4017-9caa-50fd241de1e8" ownerguid="99c45d69-8aae-4e74-84e2-8757c91e1d07"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">na</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">na</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">na</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">na</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">na</Run> -</AStr> -</Form> -<Morph> -<objsur guid="99b46deb-a91d-4222-a9fc-6c1a15fed4be" t="r" /> -</Morph> -<Msa> -<objsur guid="a5b30965-e5c8-452a-9057-ed02c784d19b" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="e3ee97a4-fdb0-4a10-a43a-214a74f1f7f8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">evangelios</AUni> -<AUni ws="qvm-x-acl">evangelios</AUni> -<AUni ws="qvm-x-akh">evangelios</AUni> -<AUni ws="qvm-x-akl">evangelios</AUni> -<AUni ws="qvm-x-ame">evangelios</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+evangelios</AUni> -<AUni ws="qvm-x-acl">+evangelios</AUni> -<AUni ws="qvm-x-akh">+evangelios</AUni> -<AUni ws="qvm-x-akl">+evangelios</AUni> -<AUni ws="qvm-x-ame">+evangelios</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.518" /> -<DateModified val="2022-10-10 21:18:47.218" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e2bc4a8a-c960-4f00-b3e0-f5afa89e9875" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+evangelios</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2c71c1e6-bbad-42c2-9fc6-4d2378380667" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="376f5ccc-bcdf-4ce2-94fe-ee83826095fa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +evangelios 
\entryTyp root 
\gENG 
\gSPN 
\e +evangelios 
\c NOSUFF 
\ach evangelios 
\akh evangelios 
\acl evangelios 
\akl evangelios 
\ame evangelios</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e3ee9929-1eef-44c4-886b-0c0aae9587db" ownerguid="339f54a5-125b-435f-bf37-cfc2a2bd26d3"> -<ExampleWords> -<AUni ws="en">expressive, animated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe a face that shows a lot of feeling?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e3ef35b7-abc6-41f0-bc90-2d5bee99160e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">llamu</AUni> -<AUni ws="qvm-x-acl">llamu; llamo</AUni> -<AUni ws="qvm-x-akh">llamu</AUni> -<AUni ws="qvm-x-akl">llamu; llamo</AUni> -<AUni ws="qvm-x-ame">llamu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llamu.2</AUni> -<AUni ws="qvm-x-acl">*llamu.2</AUni> -<AUni ws="qvm-x-akh">*llamu.2</AUni> -<AUni ws="qvm-x-akl">*llamu.2</AUni> -<AUni ws="qvm-x-ame">*llamu.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.134" /> -<DateModified val="2022-10-10 21:18:47.218" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="409c1010-c797-4c0f-88b3-b2897f52feb3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llamu.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="36bb9636-ba59-4721-8c18-f1f55bf290a4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="45b4467f-ad4b-4f30-aec6-97c476a4c673" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llamu.2 
\entryTyp root 
\gENG 
\gSPN 
\e *llamu.2 
\c V1 
\ach llamu 
\akh llamu 
\acl llamu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl llamo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl llamu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl llamo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame llamu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e3f19b92-a6a3-413c-9615-79d07e8ed24c" ownerguid="06a85def-ee0a-4d63-bfa8-62a21bcf06b0"> -<Form> -<AUni ws="qvm-x-ach">shawa</AUni> -<AUni ws="qvm-x-acl">shawa</AUni> -<AUni ws="qvm-x-akh">shawa</AUni> -<AUni ws="qvm-x-akl">shawa</AUni> -<AUni ws="qvm-x-ame">shawa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e3f76e1b-7b73-45da-94c9-8bf3fc21469f" ownerguid="f0fdbdfa-094e-4bec-ae19-af23d2c02ed6"> -<ExampleWords> -<AUni ws="en">discontent, discontented, dissatisfied, dissatisfaction, discontent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe when a person feels bad about his conditions or situation?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e400a806-3577-4130-884b-d782cea7b4aa" ownerguid="75905f34-76c6-486b-b24c-1c1a472cf614"> -<Form> -<AUni ws="qvm-x-ach">waray</AUni> -<AUni ws="qvm-x-acl">waray</AUni> -<AUni ws="qvm-x-akh">waray</AUni> -<AUni ws="qvm-x-akl">waray</AUni> -<AUni ws="qvm-x-ame">waray</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e403f3b4-6d0f-4073-9387-1eae91532b2a" ownerguid="4d1ac5e6-dfe3-4643-b6e5-21649a01cce9"> -<ExampleWords> -<AUni ws="en">engineer, conductor, station master</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a person who operates a train?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e40571e5-ebc2-499f-9992-4ed0e1c7aed5" ownerguid="57f07b5f-75bf-4565-b969-ce0adc0b50d4"> -<ExampleWords> -<AUni ws="en">multiply, multiplication, multiples of (a number)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to multiplying one number times another?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e40c8484-4541-4ce8-aa78-6007811164c4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">estuchi; estuche</AUni> -<AUni ws="qvm-x-acl">estuchi; estuchi; estuche</AUni> -<AUni ws="qvm-x-akh">estuchi; estuche</AUni> -<AUni ws="qvm-x-akl">estuchi; estuchi; estuche</AUni> -<AUni ws="qvm-x-ame">estuchi; estuche</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+estuche</AUni> -<AUni ws="qvm-x-acl">+estuche</AUni> -<AUni ws="qvm-x-akh">+estuche</AUni> -<AUni ws="qvm-x-akl">+estuche</AUni> -<AUni ws="qvm-x-ame">+estuche</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.508" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1dacfd24-11d1-45f7-92e3-2a9e9ac6f96a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+estuche</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1e28460f-5633-4435-ac51-8bebd4cceb27" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8e78e073-7f8a-405d-b852-011da09c8f35" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +estuche 
\entryTyp root 
\gENG case 
\gSPN estuche 
\e +estuche.1 
\c N0 
\mp +FinalI 
\ach estuchi / ~_# 
\ach estuche / _# 
\akh estuchi / ~_# 
\akh estuche / _# 
\acl estuchi / ~_# 
\acl estuchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl estuche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl estuchi / ~_# 
\akl estuchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl estuche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame estuchi / ~_# 
\ame estuche / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="e4111081-4f61-4fef-b14a-b6f497e3cf70"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shumag</AUni> -<AUni ws="qvm-x-acl">shumag</AUni> -<AUni ws="qvm-x-akh">shumaq</AUni> -<AUni ws="qvm-x-akl">shumaq</AUni> -<AUni ws="qvm-x-ame">shumaq</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*sumaq</AUni> -<AUni ws="qvm-x-acl">*sumaq</AUni> -<AUni ws="qvm-x-akh">*sumaq</AUni> -<AUni ws="qvm-x-akl">*sumaq</AUni> -<AUni ws="qvm-x-ame">*sumaq</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.744" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bbc3b166-44e5-4891-9298-5420daf7d3d4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*sumaq</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b7eac2da-784b-4603-8b77-50a7c0ac4646" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9b7305d6-61ea-46b3-93be-61618f7dc812" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *sumaq 
\entryTyp root 
\gENG well 
\gSPN bien 
\e *sumaq 
\c N0 
\mp +FinalC 
\ach shumag 
\akh shumaq 
\acl shumag 
\akl shumaq 
\ame shumaq</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e414ab84-36b4-4fa7-a034-4c9316ee88d5" ownerguid="596ab399-e442-4afe-8796-633a49de65a7"> -<ExampleWords> -<AUni ws="en">justice, fairness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to justice?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e414c58c-943d-4c9b-91f2-c6ea5c87b68a" ownerguid="b1e3461b-4ea1-4329-9015-56044a1882f1"> -<PartOfSpeech> -<objsur guid="30d07580-5052-4d91-bc24-469b8b2d7df9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e417eb94-7e74-469c-ad77-01d101eeae03" ownerguid="7f118a71-1c41-47fc-8e2a-ae45e885ff0b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rib</AUni> -<AUni ws="es">costilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="869eff25-acef-4c58-8949-cd27fcdd5eee" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e41d69ef-521c-4bb2-876e-e562a3e2b857"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">última; ultima</AUni> -<AUni ws="qvm-x-acl">última; ultima</AUni> -<AUni ws="qvm-x-akh">última; ultima</AUni> -<AUni ws="qvm-x-akl">última; ultima</AUni> -<AUni ws="qvm-x-ame">última; ultima</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+última</AUni> -<AUni ws="qvm-x-acl">+última</AUni> -<AUni ws="qvm-x-akh">+última</AUni> -<AUni ws="qvm-x-akl">+última</AUni> -<AUni ws="qvm-x-ame">+última</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.322" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="91a9fcc2-49ed-42af-926d-fc4db2bfa2d4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+última</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="932e46b9-5c05-44f6-856e-14eadeb9023b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="087cf060-df49-4b7f-a051-53c4e577d88d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +última 
\entryTyp root 
\gENG last 
\gSPN última 
\e +última 
\c N0 
\ach última / _# 
\ach ultima / ~_# 
\akh última / _# 
\akh ultima / ~_# 
\acl última / _# 
\acl ultima / ~_# 
\akl última / _# 
\akl ultima / ~_# 
\ame última / _# 
\ame ultima / ~_# 
\i Exo 23.16 Tsaypita yapay fiestata ruranqui puntacag cosëchata shuntarcur. Nircur fiestata yapay ruranqui ultima cosëchata shuntayta usharcur.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e4221c59-686c-4de3-b94a-c36c4fd2c161" ownerguid="c7c7a8fe-4065-4e67-b741-e52c211972b0"> -<Form> -<AUni ws="qvm-x-ach">tsapa</AUni> -<AUni ws="qvm-x-acl">tsapa</AUni> -<AUni ws="qvm-x-akh">tsapa</AUni> -<AUni ws="qvm-x-akl">tsapa</AUni> -<AUni ws="qvm-x-ame">tsapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="e423053e-2656-445d-a054-99dc5eeda03b" ownerguid="233c23bd-a3cb-4582-b5ea-b0a8cba9e5b3"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Gen 44.16 nota: Josépa väsunta mana suwashga carpis Judá reconociycan wauguinta unay ranticushganpita jutsayog cashganta.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="e424b3eb-b291-4ef2-bdd6-b047f7b3caf9" ownerguid="7d8898d6-6296-4d4d-b8dd-2f48c49f9e98"> -<ExampleWords> -<AUni ws="en">higher, highest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to being higher than another thing?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e42c8edc-9652-4701-ac07-13c5e831282c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waman</AUni> -<AUni ws="qvm-x-acl">waman</AUni> -<AUni ws="qvm-x-akh">waman</AUni> -<AUni ws="qvm-x-akl">waman</AUni> -<AUni ws="qvm-x-ame">waman</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waman</AUni> -<AUni ws="qvm-x-acl">*waman</AUni> -<AUni ws="qvm-x-akh">*waman</AUni> -<AUni ws="qvm-x-akl">*waman</AUni> -<AUni ws="qvm-x-ame">*waman</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.465" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="39dc871c-d3de-4867-a85d-d4ceea143340" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waman</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3c75ec22-f1b9-4110-addf-c9606a0be82b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7563184a-2ed7-4812-b143-2afa03e7f839" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waman 
\entryTyp root 
\gENG 
\gSPN El que habla mal 
\e *waman 
\c N0 
\mp +FinalC 
\ach waman 
\akh waman 
\acl waman 
\akl waman 
\ame waman</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e430f61b-d137-44f9-ad65-d3367dd50c05" ownerguid="c2d52c62-384b-44f4-8ec0-99721eecfa83"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">carne.asado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="13e9f84a-f74e-444a-ade8-0b2c6d780b8b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e4316953-e75a-41a4-96a3-fd2ca43906d9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">órden; ordin</AUni> -<AUni ws="qvm-x-acl">órden; ordin; orden</AUni> -<AUni ws="qvm-x-akh">órden; ordin</AUni> -<AUni ws="qvm-x-akl">órden; ordin; orden</AUni> -<AUni ws="qvm-x-ame">órden; ordin</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+órden</AUni> -<AUni ws="qvm-x-acl">+órden</AUni> -<AUni ws="qvm-x-akh">+órden</AUni> -<AUni ws="qvm-x-akl">+órden</AUni> -<AUni ws="qvm-x-ame">+órden</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.638" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d878844a-1f13-4549-89a4-9285bdfb4033" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+órden</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="da4b1c8f-1d4e-44bc-a075-360d1525d581" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="33d461b9-896e-428f-a281-85052303463e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +órden 
\entryTyp root 
\gENG order 
\gSPN órden 
\e +órden 
\c N0 
\mp +FinalC 
\ach órden / _# 
\ach ordin / ~_# 
\akh órden / _# 
\akh ordin / ~_# 
\acl órden / _# 
\acl ordin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl orden +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl órden / _# 
\akl ordin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl orden +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame órden / _# 
\ame ordin / ~_# 
\i EST 3.12 Ordin nishganta cumplinanpagmi rey Asuerupa jutinta firmapäcorgan y sëllunwanpis sëllapäcorgan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="e4324343-6d51-45f9-aafc-9558223fdbd5" ownerguid="f92657c7-1914-40e6-a86c-17e728b8c21c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="e43c9905-ae67-4627-8b10-bd7a453828b4" ownerguid="08239f53-daa5-47a6-9f39-29a9064b0c27"> -<Abbreviation> -<AUni ws="en">7.5.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to two or more things cohering or sticking together.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Stick together</AUni> -</Name> -<Questions> -<objsur guid="0e3859c4-2e47-4759-a9ae-f6e971ca405e" t="o" /> -<objsur guid="e622154c-2a15-4b1c-8fe9-2d3d92202517" t="o" /> -<objsur guid="7c0278a3-dd9e-42af-80e6-e50f05331939" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="e43ddd35-7194-446f-b467-f49d3c985ab9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guewa</AUni> -<AUni ws="qvm-x-acl">guewa</AUni> -<AUni ws="qvm-x-akh">qewa</AUni> -<AUni ws="qvm-x-akl">qewa</AUni> -<AUni ws="qvm-x-ame">qiwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qiwa.v</AUni> -<AUni ws="qvm-x-acl">*qiwa.v</AUni> -<AUni ws="qvm-x-akh">*qiwa.v</AUni> -<AUni ws="qvm-x-akl">*qiwa.v</AUni> -<AUni ws="qvm-x-ame">*qiwa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.216" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f117fa3c-4bbd-466a-ac71-e65881d03a5a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qiwa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e1738984-2bec-4474-b2b1-8d06f734355d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6d2efdce-493b-4194-ab7b-39523b715da6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qiwa.v 
\entryTyp root 
\gENG grass 
\gSPN hierba 
\e *qiwa.v 
\c V1 
\ach guewa 
\akh qewa 
\acl guewa 
\akl qewa 
\ame qiwa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e43e79ff-8e39-486f-9567-4302a67c9bc5" ownerguid="7ee96f62-7c8e-4c27-a373-d7a534844612"> -<ExampleWords> -<AUni ws="en">work with skins, tan leather, cure skins, taxidermy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to working with leather?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e4421429-b849-4375-abc8-fade61bc4f5f" ownerguid="995751ef-d71b-429c-a4ee-032f5b309bd7"> -<ExampleWords> -<AUni ws="en">yellow, brown, Asian, black, African, white, Caucasian, red, American Indian, Indian</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to people of different races?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="e442afe1-e7cd-4ab2-b456-963e2e041a1e" ownerguid="1017cbc3-0dfb-4930-9881-28f96784035c"> -<Abbreviation> -<AUni ws="en">7.2.1.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.506" /> -<DateModified val="2022-9-23 16:55:8.506" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to moving slowly.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Move slowly</AUni> -</Name> -<Questions> -<objsur guid="9ee92215-f0da-46e8-b6ef-875d006e922e" t="o" /> -<objsur guid="40e83808-2c11-4e9f-bec7-e96820e4363a" t="o" /> -<objsur guid="73c717dd-18d8-4d51-965e-3122702f6c8f" t="o" /> -<objsur guid="65038315-6464-4527-815b-d7088f7ee41e" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="af399519-5d7c-4100-9c79-8162cb4641cb" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="e443f8e9-f15c-4d2c-b2b6-110a512b49f4" ownerguid="40ff5cee-31d8-4c89-a212-877347212a0e"> -<ExampleWords> -<AUni ws="en">filling, heavy, stodgy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe food that makes you feel full?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e44796ff-313b-4b14-ad26-3bcc81057166" ownerguid="12bae6de-0592-4443-8c8a-b8eb4bfafdab"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">suffer</AUni> -<AUni ws="es">sufrir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="88b0c178-4035-43e1-a858-5f18a6dfb137" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e4498a24-096e-47e6-ab99-d60a5cb19826"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pogu</AUni> -<AUni ws="qvm-x-acl">pogu; pogu; pogo</AUni> -<AUni ws="qvm-x-akh">poqu</AUni> -<AUni ws="qvm-x-akl">poqu; poqu; poqo</AUni> -<AUni ws="qvm-x-ame">puqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puqu.n</AUni> -<AUni ws="qvm-x-acl">*puqu.n</AUni> -<AUni ws="qvm-x-akh">*puqu.n</AUni> -<AUni ws="qvm-x-akl">*puqu.n</AUni> -<AUni ws="qvm-x-ame">*puqu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.65" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9986016c-dfda-4f67-8b96-04aede9ac45d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puqu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="96dcaf59-afc7-49ae-89fc-87ea94015583" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5bba45fd-f643-4406-b833-c54b0be3d87c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puqu.n 
\entryTyp root 
\gENG ripen 
\gSPN madurar 
\e *puqu.n 
\c N0 
\ach pogu 
\akh poqu 
\acl pogu / _# 
\acl pogu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pogo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl poqu / _# 
\akl poqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl poqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame puqu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="e44c182e-34ee-4712-9db8-cd2fbaf0ec26" ownerguid="6cea20b9-67a9-4e43-81b5-ac54e38743d6"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="2114eaf4-5a4e-4844-90ec-1fa4fc6f90bb" t="o" /> -<objsur guid="46b4c58d-9971-41e3-9845-404b3f4663de" t="o" /> -<objsur guid="2f934c7c-77e6-4458-a39d-336433d1daee" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="e44c8272-42e6-481c-9efe-e99c6b24eecf" ownerguid="ee068077-bfcc-4b91-a7c0-9e3ef24dee13"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="6138ad05-ade2-4f3f-974c-d504be841a5e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="e44f3378-2517-48f9-a7a0-17d97b0cb2d6" ownerguid="2c2d5805-2762-4a00-845d-bdc330d69918"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e450c835-bcdd-420a-b23c-89f2d13bf04f" ownerguid="321d0a74-705f-40bf-8d24-809f65bee895"> -<ExampleWords> -<AUni ws="en">still</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) state continues: state is continuing a reference time.</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="e4517880-aa2d-4977-b55a-dcb0b6d1f533" ownerguid="4275df2e-d4f6-461a-9279-39e0712dc082"> -<Abbreviation> -<AUni ws="en">2.3.1.8.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing someone or something that is beautiful--pleasing in appearance,.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79D Beautiful, Ugly</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Beautiful</AUni> -</Name> -<Questions> -<objsur guid="ebb0dee9-2ab5-4612-9c05-a45fcff7354e" t="o" /> -<objsur guid="f72cb1b4-928f-4c14-aa2b-35d7c20daca7" t="o" /> -<objsur guid="a60b8239-b45b-4128-9068-de7762cc5f5b" t="o" /> -<objsur guid="43ded3bb-1a22-4585-bf11-0b66d2228911" t="o" /> -<objsur guid="c57a40b3-4077-4f20-8d81-98d9b83f55df" t="o" /> -<objsur guid="30ff9da4-98e4-4fc6-8df5-174414a63fa0" t="o" /> -<objsur guid="42be9b41-13db-44c9-9108-61a04d740d94" t="o" /> -<objsur guid="3b341551-0b8b-4b96-87af-3130b92f8451" t="o" /> -<objsur guid="c0f2aa7e-a182-4ac5-ab1e-142872cc08e7" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="e4525f03-ced5-4d08-9f4d-8430553efdef" ownerguid="6da91360-4cf5-44e6-a474-97972221ea79"> -<Form> -<AUni ws="qvm-x-ach">armäda</AUni> -<AUni ws="qvm-x-acl">armäda</AUni> -<AUni ws="qvm-x-akh">armäda</AUni> -<AUni ws="qvm-x-akl">armäda</AUni> -<AUni ws="qvm-x-ame">armäda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="e455e36c-0e67-411f-8936-187818705443" ownerguid="ec6db741-9d23-451c-9dc7-d1fe9513dfb8"> -<Form> -<AUni ws="qvm-x-ach">utcu</AUni> -<AUni ws="qvm-x-acl">utcu; utcu; utco</AUni> -<AUni ws="qvm-x-akh">utku</AUni> -<AUni ws="qvm-x-akl">utku; utku; utko</AUni> -<AUni ws="qvm-x-ame">utku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="e456a69e-cdca-4c90-b782-93bb8070651f" ownerguid="5663238a-9f7f-4218-aed2-a8cc9be6887e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ku</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ku</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b952a19-fce6-44e5-ab25-c091ef27f843" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -<Sense> -<objsur guid="909cfa11-00e3-4787-b51b-dfac729061be" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="e4582d00-a49b-4f42-be7f-d56cc462a064"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">turnu; turno</AUni> -<AUni ws="qvm-x-acl">turnu; turnu; turno</AUni> -<AUni ws="qvm-x-akh">turnu; turno</AUni> -<AUni ws="qvm-x-akl">turnu; turnu; turno</AUni> -<AUni ws="qvm-x-ame">turnu; turno</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+turno</AUni> -<AUni ws="qvm-x-acl">+turno</AUni> -<AUni ws="qvm-x-akh">+turno</AUni> -<AUni ws="qvm-x-akl">+turno</AUni> -<AUni ws="qvm-x-ame">+turno</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.17" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="236bb9b2-bc2f-4378-be7c-bb4d205d45ac" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+turno</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a985323b-eff9-47db-a7e0-71b8f282354d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6cb670cc-3501-41be-a6df-bd20344e95fc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +turno 
\entryTyp root 
\gENG turn 
\gSPN torno 
\e +turno 
\c N0 
\ach turnu / ~_# 
\ach turno / _# 
\akh turnu / ~_# 
\akh turno / _# 
\acl turnu / ~_# 
\acl turnu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl turno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl turnu / ~_# 
\akl turnu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl turno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame turnu / ~_# 
\ame turno / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e458633f-a7bc-45f0-b18a-fc78379d0dfe" ownerguid="d1b3d0f0-5319-4a6a-8a70-2179a8e76d22"> -<ExampleWords> -<AUni ws="en">necessary, essential, vital, indispensable, be a necessity, be a must, requisite, prerequisite, required</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that is needed?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e45a91f5-f056-4d32-b0f0-5dac3fab53ec" ownerguid="f3261176-07d9-4d8f-872d-bbd6fa91c924"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">devil</AUni> -<AUni ws="es">diablo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0542b90a-48bf-4cb4-b312-4bc7cf78e4cd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="e45b8bac-9623-4f84-a113-9dec13a8db64" ownerguid="9efa7949-de15-499a-b382-4560e06c4fb4"> -<Abbreviation> -<AUni ws="en">3.5.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to talking about a subject.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Talk about a subject</AUni> -</Name> -<Questions> -<objsur guid="bb51269b-add0-4117-ad28-acb8f964c773" t="o" /> -<objsur guid="67d77bfc-525b-487b-94f7-a08ea1d8c88f" t="o" /> -<objsur guid="a3595d27-1036-4a99-85c4-12d22d1462a5" t="o" /> -<objsur guid="e2aefdcf-a047-49df-a42c-2a2447a7ad94" t="o" /> -<objsur guid="c49ef66e-8080-4f28-b81b-96d733eeeb02" t="o" /> -<objsur guid="1a01fb89-a5ef-4e2a-9b5f-7c507be1c556" t="o" /> -<objsur guid="69df6ed0-bcab-45f3-b39c-46b89f031add" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="06b23bcd-69df-471a-b5a5-4ca8cab7f0d9" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="1148684a-0f44-4b5a-9e3e-3823163cd4a1" t="o" /> -<objsur guid="dc1ab28c-3e1e-474c-8359-2548b7ad5595" t="o" /> -<objsur guid="e080687b-0900-4dd0-9677-e3aaa3eae641" t="o" /> -<objsur guid="7ad54364-ca8c-4b7c-9748-f83efb44d0ea" t="o" /> -<objsur guid="67d282f8-151d-429b-8183-6a7d2f5ac98d" t="o" /> -<objsur guid="0539de86-f407-4b3d-b1b8-028822fb9f26" t="o" /> -<objsur guid="728bbc7c-e5b3-47d8-8532-72239e5c88bb" t="o" /> -<objsur guid="49cd2c20-098a-46d9-9e47-6bf109308793" t="o" /> -<objsur guid="06b23bcd-69df-471a-b5a5-4ca8cab7f0d9" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="e45d74d3-c8ce-4348-9f18-2d616660b59f" ownerguid="c2ded748-7ff9-4df9-9870-670c4b747eaa"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e45f9991-f49f-4c37-8646-11fced900bb0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">viva</AUni> -<AUni ws="qvm-x-acl">viva</AUni> -<AUni ws="qvm-x-akh">viva</AUni> -<AUni ws="qvm-x-akl">viva</AUni> -<AUni ws="qvm-x-ame">viva</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vivar</AUni> -<AUni ws="qvm-x-acl">+vivar</AUni> -<AUni ws="qvm-x-akh">+vivar</AUni> -<AUni ws="qvm-x-akl">+vivar</AUni> -<AUni ws="qvm-x-ame">+vivar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.414" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="36412d07-fc63-4df2-9821-69f37daf5064" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vivar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3bbe3015-fa1c-49f3-9eeb-096fa0d66e1e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e19a84a1-bac6-436e-9626-5b19cda83bd4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vivar 
\entryTyp root 
\gENG 
\gSPN 
\e +vivar 
\c V2 
\ach viva 
\akh viva 
\acl viva 
\akl viva 
\ame viva</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e462a9e2-9630-4b56-b107-5fa033511c8d" ownerguid="3b19fe3b-741e-4c50-9fab-a12fdf4ca3c7"> -<Form> -<AUni ws="qvm-x-ach">guechpa</AUni> -<AUni ws="qvm-x-acl">guechpa</AUni> -<AUni ws="qvm-x-akh">qechpa</AUni> -<AUni ws="qvm-x-akl">qechpa</AUni> -<AUni ws="qvm-x-ame">qichpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e46568a4-8498-4bd9-a99b-19234519f79a" ownerguid="60595d09-4a15-4499-b6e1-d36a704bcbe9"> -<ExampleWords> -<AUni ws="en">flow, current, whirlpool</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to water moving in a river?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e46b708a-4bb7-4921-bd7d-04b514d9f894" ownerguid="1bd42665-0610-4442-8d8d-7c666fee3a6d"> -<ExampleWords> -<AUni ws="en">man in the moon, harvest moon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe the appearance of the moon?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e46c2386-aa46-4df7-9469-07704e2c80ad" ownerguid="ebeb90e5-7f43-4363-9474-8590442058d3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0 V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fever</AUni> -<AUni ws="es">fiebre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0fe2866e-bbad-43af-8785-dd0e2aca3496" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="e46fc010-0bf1-47f5-a344-a514ef2dea82"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">different</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="e470ad6b-6e80-4df8-b4b9-f558890c9c4d" ownerguid="a49b127c-31dc-438c-bf17-90b0912f7583"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="eea54028-6c5e-4129-b971-8a7abd57f9ad" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">east</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d8533a2a-c69a-4530-be89-8c8ff295762f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e470b421-b019-46c8-9357-c374bbff7acb" ownerguid="4b2815e4-adec-488b-996b-45df6bdadc33"> -<Form> -<AUni ws="qvm-x-ach">arca</AUni> -<AUni ws="qvm-x-acl">arca</AUni> -<AUni ws="qvm-x-akh">arca</AUni> -<AUni ws="qvm-x-akl">arca</AUni> -<AUni ws="qvm-x-ame">arca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e47166b7-2594-4148-9e2c-2d49c1ed675e" ownerguid="7bf05f4e-909f-40ca-b742-9be21eba9fbb"> -<ExampleWords> -<AUni ws="en">go to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) andative: agent moves away from the deictic center in order to do something, literally 'be going to do something'. Of course such forms are often related to the verb 'to go' and also may have uses of intention and future.</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e47c3eb4-0b19-443a-a3b9-68fa74aacde0" ownerguid="a9898fad-e79b-44f2-b06b-7d35f1e05a38"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="e47ee761-f004-4355-ae77-1f3402b7e408" ownerguid="e22aa72d-8119-410c-871e-cf23ff2aa36e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="e47fc607-79f7-4b21-ad58-50394d1eb5ec" ownerguid="dad53ed2-34f7-42a1-a9db-6ed5cd728a57"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ypa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ypa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ypa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ypa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ypa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ed76c6da-f04a-47ec-9d43-af432768f6a0" t="r" /> -</Morph> -<Msa> -<objsur guid="89edf312-823b-4bd1-9b8e-7755813dda71" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="e482bb5a-5a32-4bc5-a0de-32cbe0aa7908" ownerguid="1e9a0881-f715-4057-9af8-251cb8eec9da"> -<Abbreviation> -<AUni ws="en">3.5.1.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing the way a person talks in a particular social situation.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33D Language Levels</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Speech style</AUni> -</Name> -<OcmCodes> -<Uni>195 Sociolinguistics; Stylistic</Uni> -</OcmCodes> -<Questions> -<objsur guid="aed269ac-1d44-453a-9a7d-39f2b692363b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="e4857004-10c6-4ab5-b585-49c01d19f163" ownerguid="7f118a71-1c41-47fc-8e2a-ae45e885ff0b"> -<Form> -<AUni ws="qvm-x-ach">custilla</AUni> -<AUni ws="qvm-x-acl">custilla</AUni> -<AUni ws="qvm-x-akh">custilla</AUni> -<AUni ws="qvm-x-akl">custilla</AUni> -<AUni ws="qvm-x-ame">custilla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e48e84b3-3f67-4b76-a0ff-5062559ba572" ownerguid="9e587127-4f2c-4796-9c67-d37332b57303"> -<ExampleWords> -<AUni ws="en">mate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words do you use when you talk to someone in your peer group?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="e496a6d3-a00c-470e-81c3-314f3f97840e" ownerguid="32125c5f-d69a-442f-ba66-6277ec0a3b15"> -<Abbreviation> -<AUni ws="en">5.2.3.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.317" /> -<DateModified val="2022-9-23 16:55:8.317" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to food from leaves and stems.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Food from leaves</AUni> -</Name> -<Questions> -<objsur guid="8f98f745-950e-4444-951e-75fbe2784aa9" t="o" /> -<objsur guid="223f55e2-d046-4d41-a3c4-87baf62135df" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="e49a1b88-5374-4924-bd40-f3bdca89eb9f" ownerguid="354216f5-0435-4252-8ac9-55c718c2c6a9"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e49a55f1-9ec5-4181-8fe9-3b611e3b4d8d" ownerguid="3fdba5e5-eb24-4b2f-a6fc-d1ed7397c39c"> -<ExampleWords> -<AUni ws="en">textbook, desk, chair, blackboard, chalk, eraser, rubber, uniform, school-bag, exercise book</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What equipment is used in a school?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e49a58fe-9a42-41f1-809d-8f6fa0a2102c" ownerguid="cb23ee0b-553a-4368-b003-3e6b01c72ef5"> -<Form> -<AUni ws="qvm-x-ach">wayra</AUni> -<AUni ws="qvm-x-acl">wayra</AUni> -<AUni ws="qvm-x-akh">wayra</AUni> -<AUni ws="qvm-x-akl">wayra</AUni> -<AUni ws="qvm-x-ame">wayra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="e49a5aee-f347-46b0-a22a-19b7204057ab" ownerguid="3388ec9f-d179-46d1-87e4-8a2ddb25375f"> -<Form> -<AUni ws="qvm-x-ach">cuptu</AUni> -<AUni ws="qvm-x-acl">cuptu; cupto</AUni> -<AUni ws="qvm-x-akh">kuptu</AUni> -<AUni ws="qvm-x-akl">kuptu; kupto</AUni> -<AUni ws="qvm-x-ame">kuptu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e49b0b2e-fb4d-4041-9c5f-c44b6f71678e" ownerguid="af5804b9-5f0a-4603-92d7-e382b51f21e6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">cebadilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f2f25c83-8de8-4f6f-bdad-c5f950b64844" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e49b82f5-cd22-46a3-9158-fe4a67fb7afe" ownerguid="7ee3ccb5-e6cb-4028-9af5-62ae782967b5"> -<ExampleWords> -<AUni ws="en">metal work, jewelry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What does a blacksmith make?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e49ba708-bee3-4cdf-b7d9-a42642ea1039" ownerguid="05a7bbdc-7cf5-47d3-830b-84e1591b11cc"> -<ExampleWords> -<AUni ws="en">legislator, congressman, senator, member of parliament (MP), lawgiver</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) Who passes laws?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="e49d5e90-0245-442d-83c3-9789c1a06b80" ownerguid="3e77b243-a1ee-4695-a362-3eecd5c3bfd6"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 23.29,30 Imaycanirag shincatsicogcunata talu talurcur upogcunaga imaypis nanatsicular y rimanacushganpita laquinar purenga.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="e49f3be4-84ad-41fa-9c86-66468cba0549" ownerguid="aee2b530-dd69-4b57-8158-840f451bf33f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e49f4e94-6050-40c3-978e-a688d0a45b4d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tupa; tupa:</AUni> -<AUni ws="qvm-x-acl">tupa; tupa:</AUni> -<AUni ws="qvm-x-akh">tupa; tupa:</AUni> -<AUni ws="qvm-x-akl">tupa; tupa:</AUni> -<AUni ws="qvm-x-ame">tupa; tupa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tupa:</AUni> -<AUni ws="qvm-x-acl">*tupa:</AUni> -<AUni ws="qvm-x-akh">*tupa:</AUni> -<AUni ws="qvm-x-akl">*tupa:</AUni> -<AUni ws="qvm-x-ame">*tupa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.997" /> -<DateModified val="2022-10-10 21:19:47.692" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2b644c06-4b57-49c8-ada7-7166d7ad4821" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tupa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="78f4db70-92b5-4cbf-ad47-43a8d1868a6a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1cd48173-729e-488e-9c81-5a51f7d7ad98" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tupa: 
\entryTyp root 
\gENG meet 
\gSPN 
\e *tupa: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach tupa foreshortened 
\ach tupa: 
\akh tupa foreshortened 
\akh tupa: 
\acl tupa foreshortened 
\acl tupa: 
\akl tupa foreshortened 
\akl tupa: 
\ame tupa foreshortened 
\ame tupa: 
\i 2PE 2.3 Gellaypag wanushpanmi ali tupaylapa sacyapäcushunqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e49fe08b-0adf-495d-b099-eff923dc8d7a" ownerguid="65db711e-86aa-492d-ae2a-4b34e6d308b5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">swim</AUni> -<AUni ws="es">nadar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a4d56bda-dbe1-4eea-abd6-64f3bf41e9bf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e4a36f53-8f3a-48d9-b0c2-deb2eb67f00b" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<ExampleWords> -<AUni ws="en">sadden, aggrieve, disappoint, depress, discourage, distress, grieve, hurt, sober (v), sting, torment, make someone sad, make someone unhappy, get someone down, break someone's heart, drive someone to despair</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to causing someone to feel sad?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e4a461ee-b128-458a-9ca8-056b1603e6ab" ownerguid="7eb75846-e4f3-4427-90ec-e4808da9c8c2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">example</AUni> -<AUni ws="es">ejemplo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="21c252cc-f418-437a-8a57-a6b1b9818c91" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="e4a486b0-e6b9-479f-abfb-1fa76c4fba0b" ownerguid="981d8935-6612-4c78-b11e-7d39ad4ea75a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tayta</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tayta</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tayta</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tayta</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tayta</Run> -</AStr> -</Form> -<Morph> -<objsur guid="71ba1110-16bd-452a-a0d0-b01562159b18" t="r" /> -</Morph> -<Msa> -<objsur guid="9434cf79-4760-4a13-a2cc-e97e30895fb6" t="r" /> -</Msa> -<Sense> -<objsur guid="3ce3ede3-91ad-40e5-ae8f-39f4466993b3" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="e4a5be10-a274-4e9a-b2e6-40ea7358d842" ownerguid="22a800c3-f5dc-4b2b-9f1f-10b2333c333c"> -<PartOfSpeech> -<objsur guid="85ffb381-0567-4202-8640-53cbaec77e45" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="e4a83566-d686-427a-9e47-bcff4dea7cb4" ownerguid="e03c889b-8368-4d9f-aac6-5cd3a43b01ca"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</Msa> -<Sense> -<objsur guid="2801e582-fd5f-46da-b446-4dd5882c9bda" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="e4a9e5cf-c393-4c7d-b48b-18970fd4c023" ownerguid="18232240-b33d-426a-a36c-13158a0a6b58"> -<Form> -<AUni ws="qvm-x-ach">fácil; fäcil</AUni> -<AUni ws="qvm-x-acl">fácil; fäcil; fäcel</AUni> -<AUni ws="qvm-x-akh">fácil; fäcil</AUni> -<AUni ws="qvm-x-akl">fácil; fäcil; fäcel</AUni> -<AUni ws="qvm-x-ame">fácil; fäcil</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="e4aba5f2-dde4-4d3a-9253-c46a81eb7c46" ownerguid="2dc5d8ae-4078-434f-91dc-3970cac11d02"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="e4ae0858-0f1e-433d-b618-4c746a50a74a" ownerguid="9cac0b96-e71a-4150-a499-a2d8428ea667"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 105.30 Intëru nacionman ränacunami juntargan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="e4b04a0f-b137-40da-9038-f5655c32e367" ownerguid="9b5ee2f0-29d3-49c8-bb54-e101cd75ee8f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0 V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="cd4a7357-bc42-458e-869b-66be5fcd3883" t="o" /> -<objsur guid="42380902-6254-4462-8cab-6cd81562795c" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="cd53d883-e143-4737-a1a3-bbaf95748713" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e4b6d614-7abb-412e-8607-55d3610da60e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">raju</AUni> -<AUni ws="qvm-x-acl">raju; rajo</AUni> -<AUni ws="qvm-x-akh">raju</AUni> -<AUni ws="qvm-x-akl">raju; rajo</AUni> -<AUni ws="qvm-x-ame">rahu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rahu.v</AUni> -<AUni ws="qvm-x-acl">*rahu.v</AUni> -<AUni ws="qvm-x-akh">*rahu.v</AUni> -<AUni ws="qvm-x-akl">*rahu.v</AUni> -<AUni ws="qvm-x-ame">*rahu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.236" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="02568b01-7167-4c43-b5e8-ca768dfa2fcb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rahu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="19b31aec-44f2-4b47-aded-5cb900185a04" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="24519976-4c39-4849-b4b5-02a36d994170" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rahu.v 
\entryTyp root 
\gENG to.snow 
\gSPN nevar 
\e *rahu.v 
\c V1 
\ach raju 
\akh raju 
\acl raju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl rajo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl raju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rajo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame rahu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="e4b870ea-223c-4f67-be24-ebfdf975f0a5"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">qarqukutsin</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="e4b9e862-57c6-430f-b843-99d19d7357ae" ownerguid="9c5b2be3-4ac4-4981-aa97-eae8592e85e2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bother</AUni> -<AUni ws="es">fastidiar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8f922a1a-0c7c-4a6b-bd36-04a88aeaceeb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="e4bacc52-dcaa-4e68-b736-f0b5d9aeca41" ownerguid="6137239a-b469-46be-b7cb-b9ac22fcc195"> -<Abbreviation> -<AUni ws="en">3.6.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.184" /> -<DateModified val="2022-9-23 16:55:8.184" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a class--the period of time when a subject is taught.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Class, lesson</AUni> -</Name> -<Questions> -<objsur guid="833cde29-754a-4f6e-a7c7-baca2b7de6bf" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="e4baeb50-99ac-4edf-85b2-91881e6787e4" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<ExampleWords> -<AUni ws="en">homemaker, children's caretaker, nursery worker, nurse (for children), nanny</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What are the occupations in childcare?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e4bc6887-c4cd-4655-acf6-295a170f3dbb" ownerguid="fe9253f4-d063-4d63-91af-85273d61337f"> -<ExampleWords> -<AUni ws="en">compare, comparison, contrast, than, comparable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to comparing one thing with another?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="e4bdb821-7bc5-4d38-b0f9-5e9b43e9af12"> -<Form> -<Str> -<Run ws="qvm-x-akh">¡</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="e4bdea8e-efb5-48dc-9556-eb45147a8ac4" ownerguid="c7c85346-158d-4881-839d-9a6a8e47209b"> -<ExampleWords> -<AUni ws="en">moving, be in motion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is moving?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e4be87b8-bdb9-4748-b5d0-a3df839a381d" ownerguid="061749a8-e28a-461c-bf2d-052ab3e157d5"> -<ExampleWords> -<AUni ws="en">spaced, apart, be spaced out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that things have spaces between them?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e4bee7f1-8900-4833-bbb9-cf0b65c7216e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pichi</AUni> -<AUni ws="qvm-x-acl">pichi; piche</AUni> -<AUni ws="qvm-x-akh">pichi</AUni> -<AUni ws="qvm-x-akl">pichi; piche</AUni> -<AUni ws="qvm-x-ame">pichi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pitri</AUni> -<AUni ws="qvm-x-acl">*pitri</AUni> -<AUni ws="qvm-x-akh">*pitri</AUni> -<AUni ws="qvm-x-akl">*pitri</AUni> -<AUni ws="qvm-x-ame">*pitri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.871" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b4f7bb65-cefb-4eda-a895-09cb34af2f6d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pitri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c3d55279-02aa-41db-9926-1c3445af95b3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="66eed190-3975-403f-be9e-80657ef60c22" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pitri 
\entryTyp root 
\gENG pee 
\gSPN orinar 
\e *pitri 
\c V1 
\mp +FinalI 
\ach pichi 
\akh pichi 
\acl pichi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl piche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pichi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl piche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pichi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e4c13723-327f-430f-a17c-34f2a0494019" ownerguid="3212d12a-a8dc-469e-811b-f685550609cc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fire</AUni> -<AUni ws="es">disparar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0d57b7bb-9cbe-4e69-83aa-d29aaf800468" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e4c5fa06-8ec8-423b-913f-a1dcc9b89f5e" ownerguid="7bca1201-31f8-4f65-8da9-af0eff36b388"> -<ExampleWords> -<AUni ws="en">gossip, talk about someone behind their back, bitch about, slag off, bad-mouth, start a whispering campaign, tattle, stab in the back, tell tales, start a rumor, spread rumors, spread an evil report, slander</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to gossiping?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="e4c86bd8-d4d7-4210-a097-1e49678d5633" ownerguid="1f4219f4-e1b2-410e-973c-88c97ff00be9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="e4c89c58-9f2a-49c1-90d0-c2a9e91cae69" ownerguid="c6688928-6694-4264-8048-a60b665b5793"> -<ExampleWords> -<AUni ws="en">filter, pipe cleaner, ashtray, spittoon</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What tools are used to smoke or chew tobacco?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e4c90fbe-db6b-4593-ae86-ab2b04de6a38" ownerguid="c36131c3-b5e1-4aac-a7b5-7c9cfa1e8f74"> -<ExampleWords> -<AUni ws="en">goat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to goats?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e4cda44d-2471-4155-bf91-3f38de8dda97" ownerguid="d31534a5-2b42-4ca4-94c0-b9fe2c689586"> -<Form> -<AUni ws="qvm-x-ach">salud</AUni> -<AUni ws="qvm-x-acl">salud</AUni> -<AUni ws="qvm-x-akh">salud</AUni> -<AUni ws="qvm-x-akl">salud</AUni> -<AUni ws="qvm-x-ame">salud</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="e4d01123-4e1c-4a7e-bd59-34ac88aae6fa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">capo:ti; capo:ti</AUni> -<AUni ws="qvm-x-acl">capo:ti; capo:ti; capo:te</AUni> -<AUni ws="qvm-x-akh">capo:ti; capo:ti</AUni> -<AUni ws="qvm-x-akl">capo:ti; capo:ti; capo:te</AUni> -<AUni ws="qvm-x-ame">capo:ti; capo:ti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+capote</AUni> -<AUni ws="qvm-x-acl">+capote</AUni> -<AUni ws="qvm-x-akh">+capote</AUni> -<AUni ws="qvm-x-akl">+capote</AUni> -<AUni ws="qvm-x-ame">+capote</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.520" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7ae00c11-7dc2-4492-92a2-f21fe9e53e03" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+capote</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="08347449-2a49-4ec2-bdbc-8855d7f3231a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2d5149c2-0c75-4cbf-81bf-0679b21db1fc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +capote 
\entryTyp root 
\gENG coat 
\gSPN capote 
\e +capote 
\c N0 
\mp +FinalI 
\ach capo:ti / _# 
\ach capo:ti / ~_# 
\akh capo:ti / _# 
\akh capo:ti / ~_# 
\acl capo:ti / _# 
\acl capo:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl capo:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl capo:ti / _# 
\akl capo:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl capo:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame capo:ti / _# 
\ame capo:ti / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e4d027d1-9a05-4ae5-b473-a528829f763d" ownerguid="8d8a7656-8f8e-467e-b72e-535db6a17c6a"> -<ExampleWords> -<AUni ws="en">bullfrog, tree frog, horned toad, mud puppy, newt, salamander, eft</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What species of amphibians are there?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e4d5e1bd-204f-457a-a9db-2fbf91027c01" ownerguid="094d58e6-80eb-4bfc-a63f-a848e53f6622"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e4d81a62-9c02-4c24-90d4-f1089d17436a" ownerguid="d117aa22-3f18-47c4-9683-51ecf1dc7134"> -<ExampleWords> -<AUni ws="en">stalk, leaf, flower, bunch, hand, finger</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What are the parts of a banana plant?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e4d897c9-c658-4388-bcae-b9ed9a5a6b5c" ownerguid="82ecb5b3-9128-4b38-b9c5-612857417ceb"> -<ExampleWords> -<AUni ws="en">dislike (n), disliking, antipathy, aversion, displeasure, distaste, prejudice</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of dislike?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e4d9a327-d7b8-4ee6-bfa7-e08b16409bf2" ownerguid="05d1c5bb-1f81-4979-acfa-1931d5d237e7"> -<Form> -<AUni ws="qvm-x-ach">tamya</AUni> -<AUni ws="qvm-x-acl">tamya</AUni> -<AUni ws="qvm-x-akh">tamya</AUni> -<AUni ws="qvm-x-akl">tamya</AUni> -<AUni ws="qvm-x-ame">tamya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e4daab81-a1aa-4e46-8973-1bd4a7a5e5a2" ownerguid="e2d3294b-4463-48bb-95e4-8c9b5238ecec"> -<ExampleWords> -<AUni ws="en">laughingstock, fool, target, butt, buffoon, fall guy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to someone who is being mocked?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e4ddd746-7958-4bee-8174-2c31eb9f4770"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shanca; shanca:</AUni> -<AUni ws="qvm-x-acl">shanca; shanca:</AUni> -<AUni ws="qvm-x-akh">shanka; shanka:</AUni> -<AUni ws="qvm-x-akl">shanka; shanka:</AUni> -<AUni ws="qvm-x-ame">shanka; shanka:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shanka:</AUni> -<AUni ws="qvm-x-acl">*shanka:</AUni> -<AUni ws="qvm-x-akh">*shanka:</AUni> -<AUni ws="qvm-x-akl">*shanka:</AUni> -<AUni ws="qvm-x-ame">*shanka:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.539" /> -<DateModified val="2022-10-10 21:18:47.207" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0511209f-8ea9-494b-8392-13ed934d9639" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shanka:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0dbaa4f6-c99b-424c-b9ea-3530caf201c8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="50c99d7d-44fd-4079-ae92-d19b008af6ba" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shanka: 
\entryTyp root 
\gENG 
\gSPN 
\e *shanka: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach shanca foreshortened 
\ach shanca: 
\akh shanka foreshortened 
\akh shanka: 
\acl shanca foreshortened 
\acl shanca: 
\akl shanka foreshortened 
\akl shanka: 
\ame shanka foreshortened 
\ame shanka:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="e4e05724-01ec-4c61-90f0-b8658cc8ca51" ownerguid="a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f"> -<Abbreviation> -<AUni ws="en">2.3.1.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.32" /> -<DateModified val="2022-9-23 16:55:8.32" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to glasses and other things people use to help them see.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Something used to see</AUni> -</Name> -<Questions> -<objsur guid="b01dbfdb-14d6-4dfe-b0c1-3cc71a3c2c39" t="o" /> -<objsur guid="9355579a-4538-4e12-855e-14572189b294" t="o" /> -<objsur guid="5a3b00fa-fc3b-4bb2-b784-f605d8d82a18" t="o" /> -<objsur guid="c69c0ee4-61b5-4377-8a2d-f0e12303adc8" t="o" /> -<objsur guid="7b1f08b2-fe61-440c-ac98-045ffaddd956" t="o" /> -<objsur guid="47e049bb-b93e-43b7-a1fd-8bc1321e817a" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="23fb1571-c04e-4850-b499-f170bc45247f" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="StTxtPara" guid="e4e27c37-cdac-46fc-bf90-2698cd8a774a" ownerguid="bf3f1d61-0fb7-4d38-ad7b-0e74c2659ac5"> -<Contents> -<Str> -<Run ws="en">\v 13</Run> -<Run ws="qvm-x-akh"> Kananpita kimsa junaqtami kay carcilpita Faraón jorqushushpayki puntata arushqaykiman kutitsishunkipaq.</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="06e4cfc8-0265-4aed-8ae7-a2f275e4187f" t="o" /> -</Segments> -</rt> -<rt class="PunctuationForm" guid="e4e385de-4e49-46b3-88ab-76892a760c90"> -<Form> -<Str> -<Run ws="en">PRF</Run> -</Str> -</Form> -</rt> -<rt class="MoStemMsa" guid="e4e3c7d7-fdaf-455e-84f5-4ef63c04f98c" ownerguid="65aae10b-bc67-4198-9942-e150e7f50f7c"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e4e3f9c9-6a19-4ecf-bf64-0a16a12470cb" ownerguid="f56a2511-10cc-4829-940d-49051429bfba"> -<ExampleWords> -<AUni ws="en">fluid, watery, thin, runny, diluted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe a liquid that is very fluid?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e4e79d36-23fb-4d5b-bdf6-7e6e4598fbd3" ownerguid="d017730f-2c07-48dc-924a-9b3eaf09ea8a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e4ebe8be-9f8f-4468-9a83-9fb8b74831a8" ownerguid="d88d862c-01d4-4b43-9fbe-59208922e022"> -<ExampleWords> -<AUni ws="en">wait (n), delay (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a period of time when you have to wait?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e4f0ee97-8b53-4158-b1ce-fc53340718e5" ownerguid="646dab64-5c2f-4f45-8e28-4d13437639d4"> -<ExampleWords> -<AUni ws="en">build a friendship, become friends, befriend, be friendly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to describe the formation of a friendship?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e4f29a0a-d2c6-405e-8b27-366ea5568317" ownerguid="8894cac9-c82a-4616-856e-0516d2ed1df7"> -<ExampleWords> -<AUni ws="en">meaning, definition, semantics, sense, interpretation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the meaning of something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e4f4a6e0-e5f6-4f76-b5b5-8981edb6e04a" ownerguid="ea943ba9-ac0f-406f-adeb-b2e5540461dd"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="e4f52f46-46a4-4fba-92a8-ec503403afb9" ownerguid="08f53049-0abc-43c7-89fa-c6907fab1eae"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e4f7e4a9-d74f-4cc4-bfea-71b0a868fb46" ownerguid="adfc2bcd-6b8e-486c-b105-29b286b61cc0"> -<ExampleWords> -<AUni ws="en">get, acquire, gain, obtain, pick up, secure, take</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to getting something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e4f9347c-a334-446f-9cbd-ea9568240754" ownerguid="3d10e03a-7902-458d-9c45-938da103d639"> -<ExampleWords> -<AUni ws="en">solid</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something that is not hollow?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e4fb2d9a-9684-4a9b-934d-8d9727b8d132"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gatu</AUni> -<AUni ws="qvm-x-acl">gatu; gatu; gato</AUni> -<AUni ws="qvm-x-akh">qatu</AUni> -<AUni ws="qvm-x-akl">qatu; qatu; qato</AUni> -<AUni ws="qvm-x-ame">qatu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qatu.n</AUni> -<AUni ws="qvm-x-acl">*qatu.n</AUni> -<AUni ws="qvm-x-akh">*qatu.n</AUni> -<AUni ws="qvm-x-akl">*qatu.n</AUni> -<AUni ws="qvm-x-ame">*qatu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.144" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4021b5e9-e556-45e2-b1a8-0416c51ba93c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qatu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ee4eb662-a511-478d-bf89-36010a5ed14c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d98546de-386a-43ef-9c62-2d8d7355ec58" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qatu.n 
\entryTyp root 
\gENG booth 
\gSPN estanque 
\e *qatu.n 
\c N0 
\ach gatu 
\akh qatu 
\acl gatu / _# 
\acl gatu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qatu / _# 
\akl qatu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qatu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoInflAffixTemplate" guid="e4fcc681-0430-4a8f-8c20-accc2f56264a" ownerguid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7"> -<Disabled val="False" /> -<Final val="False" /> -<Name> -<AUni ws="en">vi which is then derived further</AUni> -</Name> -<SuffixSlots> -<objsur guid="0eb1d65f-6889-40e2-a5ee-818feedf259c" t="r" /> -<objsur guid="cc7bce64-81a2-4c23-9cb0-ba8f7d274837" t="r" /> -<objsur guid="ca45d090-0c3b-4e36-9a40-58963588cdaf" t="r" /> -<objsur guid="b31b892c-cb26-4efd-b65c-29374c5e75b6" t="r" /> -<objsur guid="5d7569d5-d194-43a3-8975-abfbf7ee2b2f" t="r" /> -<objsur guid="77569715-032a-48c9-97d9-e9802fb13f2e" t="r" /> -</SuffixSlots> -</rt> -<rt class="WfiMorphBundle" guid="e5002146-8b66-45ad-bf0b-dfef91c9c3f1" ownerguid="474eb21f-72f2-45a5-91eb-d95776dfaf73"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">nin</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">nin</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">nin</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">nin</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nin</Run> -</AStr> -</Form> -<Morph> -<objsur guid="18b86caf-a560-48d6-ab1d-03882ed1fbd7" t="r" /> -</Morph> -<Msa> -<objsur guid="40f4b0e8-28eb-4ebf-b332-3ad8e994984f" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="e5015dc8-4c4d-4709-9e0e-167f61edc4a9" ownerguid="2d81ab63-d53f-4d48-ab27-7121eabf5d00"> -<Form> -<AUni ws="qvm-x-ach">lagshu</AUni> -<AUni ws="qvm-x-acl">lagshu; lagsho</AUni> -<AUni ws="qvm-x-akh">laqshu</AUni> -<AUni ws="qvm-x-akl">laqshu; laqsho</AUni> -<AUni ws="qvm-x-ame">laqshu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="e5020b79-6fb0-4be4-a359-d4f899da5c7e" ownerguid="eafdea8e-521e-4614-8fd5-e8446adf9203"> -<Abbreviation> -<AUni ws="en">3.5.1.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.164" /> -<DateModified val="2022-9-23 16:55:8.164" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to quarreling--to fight with words.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33Y' Argue, Quarrel</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Quarrel</AUni> -</Name> -<Questions> -<objsur guid="257f2775-e170-4f95-a13f-39e9030c500f" t="o" /> -<objsur guid="f5af0190-3ba0-4d6b-b64d-ffaf2ae16e5a" t="o" /> -<objsur guid="29cc52d1-a143-4b59-9683-3f86876054ab" t="o" /> -<objsur guid="1c807222-7eda-4b2c-8df9-7a828d739774" t="o" /> -<objsur guid="c59bccb7-e7cd-47a6-b531-b6d1b21cc46b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="e505dad0-991f-4779-920b-76febdee649a" ownerguid="ec643327-35cd-4846-a51c-be1e023e9e6b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e506113a-a4ab-426b-9a13-77edb16286ee" ownerguid="7b513a02-c3ae-4243-9410-16854d911258"> -<ExampleWords> -<AUni ws="en">name, proper name, proper noun, first name, given name, personal name, middle name, last name, family name, father's name, surname, maiden name, initial, title, identity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the name of a person?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e506f949-29b6-46b8-b310-eb3fc54d7d11" ownerguid="ea796eb8-9dc0-4db0-9518-722cdfc8dc6e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">razor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a11ae4f0-3abb-4d03-90c9-e20c189edda8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e5083236-b360-4e58-9627-719362a80ada" ownerguid="cb95189c-8c74-465b-af07-48e08dbf7c39"> -<ExampleWords> -<AUni ws="en">feelings, emotions, heart</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the part of a person that enables him to feel emotions?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e50ab2b1-5337-4b6c-ab4c-ea2cee2e8838"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsururu</AUni> -<AUni ws="qvm-x-acl">tsururu; tsururu; tsururo</AUni> -<AUni ws="qvm-x-akh">tsururu</AUni> -<AUni ws="qvm-x-akl">tsururu; tsururu; tsururo</AUni> -<AUni ws="qvm-x-ame">tsururu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chururu.n</AUni> -<AUni ws="qvm-x-acl">*chururu.n</AUni> -<AUni ws="qvm-x-akh">*chururu.n</AUni> -<AUni ws="qvm-x-akl">*chururu.n</AUni> -<AUni ws="qvm-x-ame">*chururu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.354" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="943c6996-5045-454a-a4e5-715e7d7dfd18" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chururu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f3201198-d465-45ad-b928-b5330e0849e7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7524953f-f378-4aa8-ba3f-fc73e3158347" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chururu.n 
\entryTyp root 
\gENG ice 
\gSPN hielo 
\e *chururu.n 
\c N0 
\ach tsururu 
\akh tsururu 
\acl tsururu / _# 
\acl tsururu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tsururo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsururu / _# 
\akl tsururu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tsururo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsururu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="e50bdd2e-e70a-4e63-85a8-ed558400bad2" ownerguid="5dfd85c4-18ab-4790-bba6-a791f3e77cc6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e50c6662-039e-42db-8b7d-3108ba0563d2" ownerguid="aa2b547c-2c82-4ce0-a1b3-35fa809d666c"> -<ExampleWords> -<AUni ws="en">narrow (v), taper, thin (v), constrict</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making something narrow?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e50dac0e-4395-42c9-a396-2707422895f0" ownerguid="c79d49f1-74ec-4dba-a5aa-5e861af63d05"> -<ExampleWords> -<AUni ws="en">recriminations</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to people blaming each other for something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e50e32ab-7c08-4040-9bca-2aaf3f242e2c" ownerguid="99bc71fb-09e9-4400-9674-8f066e8a4bf7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">date</AUni> -<AUni ws="es">fecha</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6f8af73b-9df1-4f74-87cf-ed4907cdb84e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e50e869a-8621-4eab-9d1f-995a05f1d190" ownerguid="01441207-4935-49a5-a192-16d949f5606c"> -<ExampleWords> -<AUni ws="en">team, club</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What is a group of players called?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e50f3d14-61be-4feb-8ecd-34f183264859" ownerguid="f2088079-3650-4044-b6bc-3e3b04c09a8a"> -<Form> -<AUni ws="qvm-x-ach">gam</AUni> -<AUni ws="qvm-x-acl">gam</AUni> -<AUni ws="qvm-x-akh">qam</AUni> -<AUni ws="qvm-x-akl">qam</AUni> -<AUni ws="qvm-x-ame">qam</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="e511cd8a-a7b7-4ca3-85d1-a6d86c9bfa71" ownerguid="95f76778-3484-4cbf-a51d-e6acb79bd884"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -</rt> -<rt class="WfiWordform" guid="e511d118-24e5-4a47-922c-ee7ed71515c6"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">before</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="e512b944-35ec-4ae0-a022-f63d81c5bb7f" ownerguid="c0f4715e-55c9-4379-ab6f-ad561a5e7151"> -<ExampleWords> -<AUni ws="en">illusion, fallacy, myth, delusion, mistaken belief, misconception, live in a fantasy world, swallow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to believing something that is not true?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e51383ed-486d-44f4-a006-017b7f39990c" ownerguid="2082b248-6be6-4b73-8a24-262f56e13969"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e519d730-f528-44f5-8241-b0fe815c79f6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">untu</AUni> -<AUni ws="qvm-x-acl">untu; untu; unto</AUni> -<AUni ws="qvm-x-akh">untu</AUni> -<AUni ws="qvm-x-akl">untu; untu; unto</AUni> -<AUni ws="qvm-x-ame">untu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*untu</AUni> -<AUni ws="qvm-x-acl">*untu</AUni> -<AUni ws="qvm-x-akh">*untu</AUni> -<AUni ws="qvm-x-akl">*untu</AUni> -<AUni ws="qvm-x-ame">*untu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.231" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="003e3604-559c-42a1-bd6e-d67118e64007" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*untu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="87eacfb9-5de7-4438-ae3b-a4d06b446aa9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6e680ba2-6143-4a03-a992-a5dfd4eefd60" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *untu 
\entryTyp root 
\gENG fat 
\gSPN ? 
\e *untu 
\c N0 
\ach untu 
\akh untu 
\acl untu / _# 
\acl untu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl unto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl untu / _# 
\akl untu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl unto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame untu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="e51a5e5a-51a7-4f53-8187-96bd645f22bb" ownerguid="bf40fe7b-ea11-4548-9b7b-613f2bdef890"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e5226cc4-ccdd-484a-8761-6bdfa79ce3f1" ownerguid="1b73b2bf-9582-4f8a-822a-e0d020272c7c"> -<ExampleWords> -<AUni ws="en">follow at a distance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to following someone at a distance?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e5227f34-4f69-49ba-bc45-ca61a482ae17" ownerguid="638a5fec-c76f-4f8c-b395-4d8be3400239"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c5b401ec-cabd-4457-84ba-52fab8df2e46" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">scratch</AUni> -<AUni ws="es">rascar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ba38bd6a-cb0d-4a47-9551-3f14a6835e96" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e522ee79-7bee-4e31-8e0e-a46006701af0" ownerguid="cb99a086-8c6d-4f90-81db-6afa69ae5455"> -<ExampleWords> -<AUni ws="en">baa, bleat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What sounds do sheep make?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e5246c0e-798c-439d-8749-30ef44e4521f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pu; pa</AUni> -<AUni ws="qvm-x-acl">pu; po; pa</AUni> -<AUni ws="qvm-x-akh">pu; pa</AUni> -<AUni ws="qvm-x-akl">pu; po; pa</AUni> -<AUni ws="qvm-x-ame">pu; pa</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.487" /> -<DateModified val="2022-10-16 15:2:40.185" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="afe4f1db-7cab-4e71-8041-12b983377a3c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">BEN6</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3e0cb08e-f924-4737-a489-3b32295615ca" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="18faa5e6-42ef-4a6d-ba8f-ab0276a93aee" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx BEN6 
\entryTyp suffix 
\gENG BEN6 
\gSPN BEN6 
\e BEN6 
\c V1/V2 
\o 50 70 
\mp PMlowered +mlowers 
\ach pu 
\ach pa morphlowered 
\akh pu 
\akh pa morphlowered 
\acl pu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl po +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pa morphlowered 
\akl pu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl po +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pa morphlowered 
\ame pu 
\ame pa morphlowered 
\mcc BEN6 / *tinku.v _ 
\mcc BEN6 / ~_ REF | INSTL4 
\mcc BEN6 / ~_ IMPFV1 1O 
\mcc BEN6 / ~_ PNCT1 
\mcc BEN6 / ~_ AFAR 
\mcc BEN6 / ~_... 1O</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e5246f4f-581c-4a25-8183-d5c8f118d0a9" ownerguid="d1b3d0f0-5319-4a6a-8a70-2179a8e76d22"> -<ExampleWords> -<AUni ws="en">need, be in need of, could do with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to something needing something done to it?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e526cc35-4d6d-4f4a-8ec1-a7acbe37e479" ownerguid="913347dd-d78a-42eb-8d0a-4c8ecb22f28b"> -<Form> -<AUni ws="qvm-x-ach">wishi</AUni> -<AUni ws="qvm-x-acl">wishi; wishe</AUni> -<AUni ws="qvm-x-akh">wishi</AUni> -<AUni ws="qvm-x-akl">wishi; wishe</AUni> -<AUni ws="qvm-x-ame">wishi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e52aaec3-3d36-4d01-bb48-148a20c3474e" ownerguid="e7cf3778-387d-4c79-b64b-d9e4fafb07c0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stab</AUni> -<AUni ws="es">picar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="837349b6-548a-47a8-ac69-a295b76802ea" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="e52b958b-2a80-4434-b987-fad301e2bcba" ownerguid="8ef9d508-a95b-41b2-af89-578e65685105"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">old.man</AUni> -<AUni ws="es">anciano</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8692fe8c-2d45-4ca2-af74-830f2650555f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="StTxtPara" guid="e52ccacf-d570-4d24-93ae-8fec9d866965" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">yarpapäkan</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="9166e95f-e5b7-42dc-9528-e65699b34a3f" t="o" /> -</Segments> -</rt> -<rt class="MoStemAllomorph" guid="e52e6f18-de42-4dde-8ffe-01a8cc96e29e" ownerguid="728dc1a1-1574-4824-b1d9-b3fdde6ff6b3"> -<Form> -<AUni ws="qvm-x-ach">lütu</AUni> -<AUni ws="qvm-x-acl">lütu; lüto</AUni> -<AUni ws="qvm-x-akh">lütu</AUni> -<AUni ws="qvm-x-akl">lütu; lüto</AUni> -<AUni ws="qvm-x-ame">lütu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="e52f57b2-6065-43b3-9e0e-842dd65173a3" ownerguid="94253887-8eb0-4704-946f-98a465c513f7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="e5302ec9-2971-4df2-9ba1-0e4fe2ff7caf" ownerguid="f2d39dc3-b2ae-405e-9d4b-e1724b283049"> -<Form> -<AUni ws="qvm-x-ach">shila</AUni> -<AUni ws="qvm-x-acl">shila</AUni> -<AUni ws="qvm-x-akh">shila</AUni> -<AUni ws="qvm-x-akl">shila</AUni> -<AUni ws="qvm-x-ame">shila</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="e532a7b2-64ba-4c62-98c0-36fa41a10a4f" ownerguid="5d238526-6d17-40c2-8a6a-5c681c7469de"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e533682e-3059-471e-a3e8-9542c3f6d84b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sogu</AUni> -<AUni ws="qvm-x-acl">sogu; sogu; sogo</AUni> -<AUni ws="qvm-x-akh">soqu</AUni> -<AUni ws="qvm-x-akl">soqu; soqu; soqo</AUni> -<AUni ws="qvm-x-ame">suqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*suqu</AUni> -<AUni ws="qvm-x-acl">*suqu</AUni> -<AUni ws="qvm-x-akh">*suqu</AUni> -<AUni ws="qvm-x-akl">*suqu</AUni> -<AUni ws="qvm-x-ame">*suqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.764" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="98cc03df-5ee5-461f-8bde-028e38e8aae0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*suqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bf05e96a-bef1-44b4-ad38-173d88bf25d4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9c8de31e-254a-4d62-bbe9-63ccdc1ed424" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *suqu 
\entryTyp root 
\gENG white.haired 
\gSPN pelo.blanco 
\e *suqu 
\c N0 
\ach sogu 
\akh soqu 
\acl sogu / _# 
\acl sogu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sogo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl soqu / _# 
\akl soqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl soqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame suqu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="e53693cb-a2fe-4752-a0d1-b2ffcfcdb7ac"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maestra</AUni> -<AUni ws="qvm-x-acl">maestra</AUni> -<AUni ws="qvm-x-akh">maestra</AUni> -<AUni ws="qvm-x-akl">maestra</AUni> -<AUni ws="qvm-x-ame">maestra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+maestra</AUni> -<AUni ws="qvm-x-acl">+maestra</AUni> -<AUni ws="qvm-x-akh">+maestra</AUni> -<AUni ws="qvm-x-akl">+maestra</AUni> -<AUni ws="qvm-x-ame">+maestra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.255" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9f887e44-23dc-4c39-9663-86968062cf8d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+maestra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8b83027f-647a-47ce-969e-3ed23a3adf6b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e77fe19b-ca93-477d-b5f6-2441faceabaa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +maestra 
\entryTyp root 
\gENG master 
\gSPN maestra 
\e +maestra 
\c N0 
\ach maestra 
\akh maestra 
\acl maestra 
\akl maestra 
\ame maestra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="e53a6ea9-00a7-4253-8347-c3cc89602ec4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pishga</AUni> -<AUni ws="qvm-x-acl">pishga</AUni> -<AUni ws="qvm-x-akh">pishqa</AUni> -<AUni ws="qvm-x-akl">pishqa</AUni> -<AUni ws="qvm-x-ame">pishqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pishqa</AUni> -<AUni ws="qvm-x-acl">*pishqa</AUni> -<AUni ws="qvm-x-akh">*pishqa</AUni> -<AUni ws="qvm-x-akl">*pishqa</AUni> -<AUni ws="qvm-x-ame">*pishqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.861" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7bc3de4b-7eb4-45bb-aae2-4b8f3e3dca9f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pishqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dd6ec3c5-db08-4296-b588-1d348099d74e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="16dddcf2-2423-4096-a2d9-7ecf88d75b6f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pishqa 
\entryTyp root 
\gENG 
\gSPN 
\e *pishqa 
\c N0 
\ach pishga 
\akh pishqa 
\acl pishga 
\akl pishqa 
\ame pishqa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e53bdc2a-4ca0-4c36-9535-5f7805e885ce" ownerguid="e02e7419-3e92-4a91-931a-9a02be601ad3"> -<Form> -<AUni ws="qvm-x-ach">tranca</AUni> -<AUni ws="qvm-x-acl">tranca</AUni> -<AUni ws="qvm-x-akh">tranca</AUni> -<AUni ws="qvm-x-akl">tranca</AUni> -<AUni ws="qvm-x-ame">tranca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="e53c913f-91f1-4228-a845-7bfdfc80a1a8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">martillu; martillo</AUni> -<AUni ws="qvm-x-acl">martillu; martillu; martillo</AUni> -<AUni ws="qvm-x-akh">martillu; martillo</AUni> -<AUni ws="qvm-x-akl">martillu; martillu; martillo</AUni> -<AUni ws="qvm-x-ame">martillu; martillo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+martillo.1</AUni> -<AUni ws="qvm-x-acl">+martillo.1</AUni> -<AUni ws="qvm-x-akh">+martillo.1</AUni> -<AUni ws="qvm-x-akl">+martillo.1</AUni> -<AUni ws="qvm-x-ame">+martillo.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.346" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="47651ff4-8b1c-4156-ac97-3215a967b6cb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+martillo.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1676b69a-9f83-499e-9707-8af5c395508d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a5ecb812-1f4b-4db6-b422-9cf7aea9182d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +martillo.1 
\entryTyp root 
\gENG hammer 
\gSPN martillo 
\e +martillo.1 
\c N0 
\ach martillu / ~_# 
\ach martillo / _# 
\akh martillu / ~_# 
\akh martillo / _# 
\acl martillu / ~_# 
\acl martillu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl martillo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl martillu / ~_# 
\akl martillu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl martillo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame martillu / ~_# 
\ame martillo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="e53d61f7-bdba-4667-a456-09021eca02a7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lanze:ta</AUni> -<AUni ws="qvm-x-acl">lanze:ta</AUni> -<AUni ws="qvm-x-akh">lanze:ta</AUni> -<AUni ws="qvm-x-akl">lanze:ta</AUni> -<AUni ws="qvm-x-ame">lanze:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lanzeta</AUni> -<AUni ws="qvm-x-acl">+lanzeta</AUni> -<AUni ws="qvm-x-akh">+lanzeta</AUni> -<AUni ws="qvm-x-akl">+lanzeta</AUni> -<AUni ws="qvm-x-ame">+lanzeta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.530" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c41ee02b-e8c5-4044-9170-500ffbcea114" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lanzeta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5a3e8b34-c7e7-4267-95df-8fa92428b6ce" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fc359d0b-f567-42de-83b0-5bbee020375e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lanzeta 
\entryTyp root 
\gENG 
\gSPN 
\e +lanzeta 
\c N0 
\ach lanze:ta 
\akh lanze:ta 
\acl lanze:ta 
\akl lanze:ta 
\ame lanze:ta 
\i PSA 140.3 Paycunapa shimenga culebrapa lanzëtannogragmi caycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e53e7c85-eecc-4720-956c-022def3cec70" ownerguid="b541715e-a327-4ee0-91ba-c7a83d22314a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="ffba3a49-3ca4-4b71-8e80-40c5f868e32d" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">crazy</AUni> -<AUni ws="es">loco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="18254021-1c97-400e-85ed-1a3be561cdbf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="e545baab-581d-4af8-81f2-5a884e272349" ownerguid="8c28c640-db5b-43e2-a1e6-b0e381962129"> -<Abbreviation> -<AUni ws="en">6.3.1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to animals that are used as a beast of burden--either to ride, to carry loads, or to pull vehicles. The questions refer to horses, but can be applied to any animal.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Beast of burden</AUni> -</Name> -<Questions> -<objsur guid="b3070dfc-6f4d-4c6e-ad0f-3739b344e62d" t="o" /> -<objsur guid="c5d5742e-7175-44a8-89c5-57196f9fb428" t="o" /> -<objsur guid="f9c821e1-1988-410c-b0c1-7e2c7f9377fe" t="o" /> -<objsur guid="b6f3ea40-5c47-4c64-bc14-5f44ebab96d4" t="o" /> -<objsur guid="974e5f23-f543-46e4-9b99-24c4845e741d" t="o" /> -<objsur guid="81f37ed7-5464-44ac-9673-6cc23b52aba0" t="o" /> -<objsur guid="40cbfd35-4d6f-4c60-96a4-3f885c3c8acd" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="e54a0b5d-952e-4d2b-9341-20c3f5e166fa" ownerguid="d1f0e873-9244-49df-aa83-4667f07fb91e"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e54a6186-1383-45fa-a6a9-05bda2788d47" ownerguid="c80b3056-5862-486d-9c65-8ecb973b5adf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="5d14a817-c4b4-40a5-a365-5bb5693df44d" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="3621102b-734a-470d-b193-96c9f2a61fb8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="e54cc8e6-789f-4144-930c-b4a55cb048d9" ownerguid="8fe91a3b-a98c-4e7f-8483-917a91344e86"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rub.in</AUni> -<AUni ws="es">echar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aca90f6a-3314-42c8-8f70-b066edb93375" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="e54cd744-d106-4bcf-bd07-b8783c075c21" ownerguid="d030f0c7-31a3-47da-be35-46f1eba63ae9"> -<Abbreviation> -<AUni ws="en">3.4.1.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.131" /> -<DateModified val="2022-9-23 16:55:8.131" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that many people like.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Fashionable</AUni> -</Name> -<Questions> -<objsur guid="3de0ec93-5f6c-4102-b3fc-45d35c591c01" t="o" /> -<objsur guid="33c873b3-faf8-465c-b4e8-6e43f42f0c4a" t="o" /> -<objsur guid="c7d227f5-477c-4f38-863a-741fed5706de" t="o" /> -<objsur guid="214eaa5a-e3ec-422e-aa9b-f78f85cd8c2a" t="o" /> -<objsur guid="79bb994d-f9c3-44eb-8c07-160f1d6adebe" t="o" /> -<objsur guid="ae99c354-533a-4b2f-9e3f-06a7fbb3f3bd" t="o" /> -<objsur guid="7a4a40b7-0969-46a2-9171-d70c69ebfc76" t="o" /> -<objsur guid="7c0a33b7-2ae4-4a49-bf89-5a0a0c0c19f3" t="o" /> -<objsur guid="4795767c-f2e3-4d22-aa78-dbcffb4ff6c6" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="e54f6ad6-aec7-4132-8c48-33922bcdde05"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">raña</AUni> -<AUni ws="qvm-x-acl">raña</AUni> -<AUni ws="qvm-x-akh">raña</AUni> -<AUni ws="qvm-x-akl">raña</AUni> -<AUni ws="qvm-x-ame">raña</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rañar</AUni> -<AUni ws="qvm-x-acl">+rañar</AUni> -<AUni ws="qvm-x-akh">+rañar</AUni> -<AUni ws="qvm-x-akl">+rañar</AUni> -<AUni ws="qvm-x-ame">+rañar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.266" /> -<DateModified val="2022-10-10 21:18:47.203" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="462e1c6c-24b8-4820-a0a5-0a259b1fd2a2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rañar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9ea337af-73db-494f-bd9b-9dfd112d252a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="48087cf4-d67f-4cb8-84d2-f73cab726514" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rañar 
\entryTyp root 
\gENG 
\gSPN 
\e +rañar 
\c V1 
\ach raña 
\akh raña 
\acl raña 
\akl raña 
\ame raña</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="e54fa2bb-1fc6-4b9c-8c1c-3b34096666a0" ownerguid="31b453ae-00c4-453f-8aa3-de4485764ddb"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="e5517529-c23c-4603-8e86-bbb305c972ee" ownerguid="092b9b79-4ebd-4dfd-9f00-3e1690042122"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e5530ea3-cb92-4776-b6e2-3c4aefbcca52" ownerguid="fe8d133a-6bcd-4f0a-94ac-b45f272aa226"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tail</AUni> -<AUni ws="es">cola</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ba2c65d8-855f-4365-a907-e877a449342c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="e554f2e8-9462-464d-aef7-4a74f841e793" ownerguid="deef10e2-a871-4288-82fa-580dc17ca4a4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e55525b9-7448-4fbf-a4af-3fe112ec757b" ownerguid="44870512-7cb2-469c-9b20-e15d3ce62655"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">swindler</AUni> -<AUni ws="es">saqueador</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="710c9113-6bfc-4f4f-87e3-4bea3c014b94" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e555f57f-a3da-4ead-9fc2-fd8b3c40af39" ownerguid="71f89512-17f0-484c-aca8-ddd226e3c794"> -<ExampleWords> -<AUni ws="en">leg</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to the entire leg?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e556f881-fe4b-45da-b528-1c1adf38662e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">goya; goya:</AUni> -<AUni ws="qvm-x-acl">goya; goya:</AUni> -<AUni ws="qvm-x-akh">qoya; qoya:</AUni> -<AUni ws="qvm-x-akl">qoya; qoya:</AUni> -<AUni ws="qvm-x-ame">quya; quya:</AUni> -</Custom> -<AlternateForms> -<objsur guid="5ca37529-6345-41d7-8961-d3e58c7304df" t="o" /> -</AlternateForms> -<CitationForm> -<AUni ws="qvm-x-ach">*quya:</AUni> -<AUni ws="qvm-x-acl">*quya:</AUni> -<AUni ws="qvm-x-akh">*quya:</AUni> -<AUni ws="qvm-x-akl">*quya:</AUni> -<AUni ws="qvm-x-ame">*quya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.912" /> -<DateModified val="2022-10-10 21:58:8.951" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="62438a57-524f-4317-b438-a84051d551af" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*quya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3761057c-5f59-4c0c-9b43-76d6d984cba8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="49ecbfc7-b3a4-4b3c-82ec-cb67ebdcfc4c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *quya: 
\entryTyp root 
\gENG pass.day 
\gSPN pasar.día 
\e *quya: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach goya foreshortened 
\ach goya: 
\akh qoya foreshortened 
\akh qoya: 
\acl goya foreshortened 
\acl goya: 
\akl qoya foreshortened 
\akl qoya: 
\ame quya foreshortened 
\ame quya:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e5576475-fd44-47bf-a530-df368639f508" ownerguid="099c91ea-b3b2-4e99-8f1e-14ad8b395370"> -<Form> -<AUni ws="qvm-x-ach">anota</AUni> -<AUni ws="qvm-x-acl">anota</AUni> -<AUni ws="qvm-x-akh">anota</AUni> -<AUni ws="qvm-x-akl">anota</AUni> -<AUni ws="qvm-x-ame">anota</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e5577a02-a1e0-4220-bf18-683a96010a80" ownerguid="00269021-e1c4-474d-9dba-341d296bdac7"> -<ExampleWords> -<AUni ws="en">in order, take turns</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to doing things in order?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e55b9c5f-0d3d-44bd-aeb5-1849f9f15109" ownerguid="2c6bcf05-4f1d-4e8a-af5a-0a6792e378fe"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="e55c6c4e-6318-4e43-beba-6c2a00094f96" ownerguid="98d7a4a9-4b27-4241-b2f6-6ca4f4b2181d"> -<Form> -<AUni ws="qvm-x-ach">yullag</AUni> -<AUni ws="qvm-x-acl">yullag</AUni> -<AUni ws="qvm-x-akh">yullaq</AUni> -<AUni ws="qvm-x-akl">yullaq</AUni> -<AUni ws="qvm-x-ame">yullaq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="e55ec875-33e0-4e71-b2b3-dfa2c131782f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tierra</AUni> -<AUni ws="qvm-x-acl">tierra</AUni> -<AUni ws="qvm-x-akh">tierra</AUni> -<AUni ws="qvm-x-akl">tierra</AUni> -<AUni ws="qvm-x-ame">tierra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tierra</AUni> -<AUni ws="qvm-x-acl">+tierra</AUni> -<AUni ws="qvm-x-akh">+tierra</AUni> -<AUni ws="qvm-x-akl">+tierra</AUni> -<AUni ws="qvm-x-ame">+tierra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.886" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="67ebbf85-1d47-41b7-9cfb-6bb6002ab73b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tierra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e7ec9b3c-51fa-4556-b124-7eb09dc11e2b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ad613495-f4d0-468e-bd2b-5480e800d154" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tierra 
\entryTyp root 
\gENG earth 
\gSPN tierra 
\e +tierra 
\c NOSUFF 
\ach tierra 
\akh tierra 
\acl tierra 
\akl tierra 
\ame tierra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e5600418-c7fb-47f6-9718-644212c356b9" ownerguid="10a82711-8829-461a-b172-fc8fff3d555c"> -<ExampleWords> -<AUni ws="en">bitch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to male or female dogs?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e563e95d-0ebe-4d97-a0a5-7ff1d518431b" ownerguid="df47f55d-b15d-4261-881e-3c4b0dc6d9be"> -<ExampleWords> -<AUni ws="en">extend, expand, grow, reach</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to extending something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e564aa9b-f5b7-4e41-8a5e-d976126e0b49" ownerguid="54565093-6c68-42e0-9b85-bfc6cbcde72c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="85014e53-df38-4691-8905-8ef355d481f8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e565b9f2-104b-43d4-8374-52d441702b68" ownerguid="ff600281-2b8a-4605-972a-1426555b3dcf"> -<Form> -<AUni ws="qvm-x-ach">nätas</AUni> -<AUni ws="qvm-x-acl">nätas</AUni> -<AUni ws="qvm-x-akh">nätas</AUni> -<AUni ws="qvm-x-akl">nätas</AUni> -<AUni ws="qvm-x-ame">nätas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="e56911ae-b405-425c-a51e-9118da8456da" ownerguid="43eb9bce-ca1f-4781-ba36-6f59bb7012e8"> -<Form> -<AUni ws="qvm-x-ach">caräju</AUni> -<AUni ws="qvm-x-acl">caräju; caräju; caräjo</AUni> -<AUni ws="qvm-x-akh">caräju</AUni> -<AUni ws="qvm-x-akl">caräju; caräju; caräjo</AUni> -<AUni ws="qvm-x-ame">caräju</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="e5699be9-4b51-4496-9ac1-1f275082d17e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pulsu; pulso</AUni> -<AUni ws="qvm-x-acl">pulsu; pulsu; pulso</AUni> -<AUni ws="qvm-x-akh">pulsu; pulso</AUni> -<AUni ws="qvm-x-akl">pulsu; pulsu; pulso</AUni> -<AUni ws="qvm-x-ame">pulsu; pulso</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pulso</AUni> -<AUni ws="qvm-x-acl">+pulso</AUni> -<AUni ws="qvm-x-akh">+pulso</AUni> -<AUni ws="qvm-x-akl">+pulso</AUni> -<AUni ws="qvm-x-ame">+pulso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.993" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5401ed29-d610-4d08-81a6-959a8abf392b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pulso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="061e877e-e4a7-43c0-bc94-8066d0ab054c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b3255388-4f7a-45f4-b13c-6a54eea20ed0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pulso 
\entryTyp root 
\gENG 
\gSPN 
\e +pulso 
\c N0 
\ach pulsu / ~_# 
\ach pulso / _# 
\akh pulsu / ~_# 
\akh pulso / _# 
\acl pulsu / ~_# 
\acl pulsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pulso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pulsu / ~_# 
\akl pulsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pulso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pulsu / ~_# 
\ame pulso / _# 
\i Deu 20.8 Maygayquipis jaca shongu y mishi pulsu carga waquin cagta mana mantsarëtsinayquipag wayiquiman cuticuy.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e56b6fd4-d783-448e-b65d-7fff2810cf62" ownerguid="9e87dc31-103d-49fd-97bd-d459c7c4f0c5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="a194b668-6cb3-404c-8620-e32e692ad02c" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="2951f40e-8323-46f8-8a16-9a02c5b8ed18" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="e5712dfe-cd92-4a71-a164-cf385f25499a" ownerguid="cd9a92f0-4f0d-4383-a9cd-32ff7d9cefa4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gourd</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a6039ee9-59ea-4d2d-a7f2-3449af741b7a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e5716ab9-1ea7-40c7-b376-1a7f46cb74d4" ownerguid="4d2a67fb-91c8-4436-87f4-f4eab6cb0828"> -<ExampleWords> -<AUni ws="en">pimple, acne, zit, whitehead, blackhead</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a small sore in the skin?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e5737795-8b11-4b14-9a8b-de97730f1079" ownerguid="93b8bd61-137a-4ebc-b12f-52fa5d2b3ea4"> -<ExampleWords> -<AUni ws="en">light wind, gentle wind, draft, draught, breeze, breezy, zephyr</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe a light wind?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e57494ae-1e25-4c22-8be7-ee811a760c5d" ownerguid="9df994ea-c5be-4e4a-b9c8-717049721d0c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dress</AUni> -<AUni ws="es">vestir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6abbd74f-3b78-4de5-8ed2-7ac408e5329a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e5753e53-fb22-4adb-8e65-709f727cd3cb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">domina</AUni> -<AUni ws="qvm-x-acl">domina</AUni> -<AUni ws="qvm-x-akh">domina</AUni> -<AUni ws="qvm-x-akl">domina</AUni> -<AUni ws="qvm-x-ame">domina</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+dominar</AUni> -<AUni ws="qvm-x-acl">+dominar</AUni> -<AUni ws="qvm-x-akh">+dominar</AUni> -<AUni ws="qvm-x-akl">+dominar</AUni> -<AUni ws="qvm-x-ame">+dominar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.437" /> -<DateModified val="2022-10-10 21:18:47.218" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7a8d12e7-570a-4312-87d1-22ba61e67999" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+dominar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a8ddfff2-768a-4010-9f31-5e5f67196766" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="edd78554-ee36-4bed-8d02-1ecc5cb3d594" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +dominar 
\entryTyp root 
\gENG 
\gSPN 
\e +dominar 
\c V2 
\ach domina 
\akh domina 
\acl domina 
\akl domina 
\ame domina</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e57e8fc6-3b7b-4313-93e7-ecea623c62ef" ownerguid="b14db9f4-5e1d-4a2b-bec0-0d6bcb5b1a31"> -<ExampleWords> -<AUni ws="en">knock down, push over, trip, knock someone to the ground, bring down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to causing someone to fall?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e580b8ca-8e51-47a3-8fcc-c42567ac1e16" ownerguid="9ce5e945-6932-4709-a90f-4c8e414b3214"> -<Form> -<AUni ws="qvm-x-ach">shata</AUni> -<AUni ws="qvm-x-acl">shata</AUni> -<AUni ws="qvm-x-akh">shata</AUni> -<AUni ws="qvm-x-akl">shata</AUni> -<AUni ws="qvm-x-ame">shata</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="e5826633-e6f0-48eb-a23c-b0b4785f0959" ownerguid="50f1f32b-3b9c-4f46-a101-3c6a9283694b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Trïgu agunyalcula caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="e5836cb4-d000-4350-a33b-97817ab62ed5" ownerguid="8c02c3d0-0d71-4afe-931c-ad450e023271"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e5839fbf-58f3-4fee-b803-48fffd6fcf7e" ownerguid="70963c34-dd34-40c2-bb21-e9cea73c7923"> -<ExampleWords> -<AUni ws="en">drop charges, decide not to press charges</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to dropping legal charges?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e584457c-2d32-457c-bd0f-839ebb55435e" ownerguid="c8e3c39c-d895-4e42-8e1e-1574137ba016"> -<ExampleWords> -<AUni ws="en">tent, shelter, hut, camp</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What is a temporary house called?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e5868556-ad77-45c9-9397-d29b0fb61f29" ownerguid="9483f1c8-e35e-444e-954d-347735049bd3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="e5895fbd-8c38-4ddb-9220-0b2ff1b94cb8"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">ajayanki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="e58ea191-7fda-4528-9296-0e6d9b424e48" ownerguid="5200b698-99c0-41ab-9e53-9026dedabd15"> -<Form> -<AUni ws="qvm-x-ach">alhäja</AUni> -<AUni ws="qvm-x-acl">alhäja</AUni> -<AUni ws="qvm-x-akh">alhäja</AUni> -<AUni ws="qvm-x-akl">alhäja</AUni> -<AUni ws="qvm-x-ame">alhäja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e58f15f3-420e-4a80-976d-55ae023316be" ownerguid="1c1198da-f907-4473-82dd-43598178b496"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">breakfast</AUni> -<AUni ws="es">desayuno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c1bcae72-34d7-4cdd-b40d-cd392591afef" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e590ab77-3d23-4304-94c8-db20572a9ab7" ownerguid="2e998270-a158-4bf6-98fa-000ebd3facee"> -<Form> -<AUni ws="qvm-x-ach">tío; tiyu</AUni> -<AUni ws="qvm-x-acl">tïu; tiyu; tiyo</AUni> -<AUni ws="qvm-x-akh">tío; tiyu</AUni> -<AUni ws="qvm-x-akl">tïu; tiyu; tiyo</AUni> -<AUni ws="qvm-x-ame">tío; tiyu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e5915472-4035-4940-b2ac-db058d2013fe" ownerguid="cee8d3f1-f4fd-4797-aaae-780bb88160a3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">post</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d123e210-bd7e-4c99-9cf8-f4cd595d24fa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e59164ec-de0e-4bb6-9e78-261f5e198cf7" ownerguid="577a9f51-263a-4c80-a439-84ce45b9c7cc"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en"><O> king, live forever.; Excuse me, <sir>.; Pardon me, <ma'am>.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">O, sir, ma'am, ladies and gentlemen, men and brothers, (look) you, (listen) all of you</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used when you start talking to someone?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e5929d5d-6cdf-4179-835f-1d412bf0cc3c" ownerguid="e7acb7d5-f605-4f9b-bd5b-72eb2d495936"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7f45130a-cd24-4ac3-9870-200b4c2515c9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e59516f6-7c1c-46f7-8de7-6c8e4917fc04" ownerguid="bb2a112f-af6f-4a54-bbf0-ba7b8289e58b"> -<ExampleWords> -<AUni ws="en">appeal (n), the lure of, charm, pull (n), draw (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the quality of something that is attractive?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e59597ea-26f1-4a4e-8543-118893eb383e" ownerguid="5e46fc16-b4dd-4c3e-8da3-978013893f5a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="baa27026-3eb5-4e1a-b49f-b0c27b7b86c7" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">split</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3080b9e6-14ed-4e96-b737-c2004cdaeb34" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e599a63c-041d-49be-9ef1-4fe6f7235401" ownerguid="6f6f27a4-8095-405a-a15a-a22794bfb9c1"> -<Form> -<AUni ws="qvm-x-ach">mil</AUni> -<AUni ws="qvm-x-acl">mil; mil; mel</AUni> -<AUni ws="qvm-x-akh">mil</AUni> -<AUni ws="qvm-x-akl">mil; mil; mel</AUni> -<AUni ws="qvm-x-ame">mil</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="e599cd84-214c-4f5b-92a9-218ef85e4080" ownerguid="0d9ffa56-e984-41e3-95cf-34d29af2d8db"> -<Form> -<AUni ws="qvm-x-ach">hierba</AUni> -<AUni ws="qvm-x-acl">hierba</AUni> -<AUni ws="qvm-x-akh">hierba</AUni> -<AUni ws="qvm-x-akl">hierba</AUni> -<AUni ws="qvm-x-ame">hierba</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="e59c5a6f-960d-407b-b6b7-42e84e71b59e" ownerguid="70452de9-2140-4d6d-99ae-4f141a2b507f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ku</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ku</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b952a19-fce6-44e5-ab25-c091ef27f843" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -<Sense> -<objsur guid="909cfa11-00e3-4787-b51b-dfac729061be" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="e59cf10f-2d4a-4dfd-94f0-58d6c7831165" ownerguid="38473463-4b92-4681-8fd0-0aca0342e88a"> -<ExampleWords> -<AUni ws="en">velvet worm, walking worm</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to walking worms (phylum Onychophora)?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e5a2589b-82cf-440a-a7f9-f546198f169b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shimpa; shimpa:</AUni> -<AUni ws="qvm-x-acl">shimpa; shimpa:</AUni> -<AUni ws="qvm-x-akh">shimpa; shimpa:</AUni> -<AUni ws="qvm-x-akl">shimpa; shimpa:</AUni> -<AUni ws="qvm-x-ame">shimpa; shimpa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shimpa.v2</AUni> -<AUni ws="qvm-x-acl">*shimpa.v2</AUni> -<AUni ws="qvm-x-akh">*shimpa.v2</AUni> -<AUni ws="qvm-x-akl">*shimpa.v2</AUni> -<AUni ws="qvm-x-ame">*shimpa.v2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.589" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aaeb31c3-effb-49c2-b07a-3385fbbc5748" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shimpa.v2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9c6f7f95-28ea-413e-b424-01bb57be222a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dfbe68a6-2aab-466a-a09e-3a65ffc80d5c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shimpa.v2 
\entryTyp root 
\gENG ache 
\gSPN doler 
\e *shimpa.v2 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach shimpa foreshortened 
\ach shimpa: 
\akh shimpa foreshortened 
\akh shimpa: 
\acl shimpa foreshortened 
\acl shimpa: 
\akl shimpa foreshortened 
\akl shimpa: 
\ame shimpa foreshortened 
\ame shimpa:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e5a4f194-39a2-4914-bec6-720231354854" ownerguid="c3296c14-6731-418f-a89a-4c3b487d5fb9"> -<Form> -<AUni ws="qvm-x-ach">chalwa</AUni> -<AUni ws="qvm-x-acl">chalwa</AUni> -<AUni ws="qvm-x-akh">chalwa</AUni> -<AUni ws="qvm-x-akl">chalwa</AUni> -<AUni ws="qvm-x-ame">chalwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="e5a83d8b-9b46-426d-b9a6-85992dfd0fcd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cupa</AUni> -<AUni ws="qvm-x-acl">cupa</AUni> -<AUni ws="qvm-x-akh">kupa</AUni> -<AUni ws="qvm-x-akl">kupa</AUni> -<AUni ws="qvm-x-ame">kupa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kupa</AUni> -<AUni ws="qvm-x-acl">*kupa</AUni> -<AUni ws="qvm-x-akh">*kupa</AUni> -<AUni ws="qvm-x-akl">*kupa</AUni> -<AUni ws="qvm-x-ame">*kupa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.13" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4cce2cfd-4a24-43b7-963c-f21ecea6a36c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kupa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5b96e063-203f-40d1-a34e-6a641a4ddfbb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="049c3692-9941-4c96-9a48-3f1bfd70b62e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kupa 
\entryTyp root 
\gENG rub 
\gSPN sobar 
\e *kupa 
\c V2 R0 
\ach cupa 
\akh kupa 
\acl cupa 
\akl kupa 
\ame kupa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e5ab3866-9673-45a8-8174-2dacabd98c92" ownerguid="b8fc7997-5daa-4c03-bcce-30f7295dfe62"> -<Form> -<AUni ws="qvm-x-ach">garwa</AUni> -<AUni ws="qvm-x-acl">garwa</AUni> -<AUni ws="qvm-x-akh">qarwa</AUni> -<AUni ws="qvm-x-akl">qarwa</AUni> -<AUni ws="qvm-x-ame">qarwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PunctuationForm" guid="e5b50880-a66f-4776-8edf-5350aef0f6dc"> -<Form> -<Str> -<Run ws="en">transitiv</Run> -</Str> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="e5b8a132-9607-4eaf-80e8-51532452dd76" ownerguid="ce3af8af-8227-4901-8891-7f5cc41520d9"> -<Form> -<AUni ws="qvm-x-ach">shüpi</AUni> -<AUni ws="qvm-x-acl">shüpi; shüpi; shüpe</AUni> -<AUni ws="qvm-x-akh">shüpi</AUni> -<AUni ws="qvm-x-akl">shüpi; shüpi; shüpe</AUni> -<AUni ws="qvm-x-ame">shüpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="e5ba30aa-7d56-4d5a-a2b6-d50709b73d5d" ownerguid="b9e273b2-9d83-41e3-bc22-7f5b76fc17ae"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="e5bb5cac-ce9b-4bc3-863d-7ca471ff4651"> -<Analyses> -<objsur guid="273ef9cc-651e-4fdb-8f65-39e117325c50" t="o" /> -<objsur guid="275e8994-3b50-4690-b349-12e6f1b359a8" t="o" /> -</Analyses> -<Checksum val="1706143124" /> -<Form> -<AUni ws="qvm-x-akh">chayaykurmi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="e5bc1e80-227d-4b3b-afb1-d80524746ac5" ownerguid="bd7d0c9c-791e-4c34-b9ed-ebddad8f9724"> -<ExampleWords> -<AUni ws="en">judgment, verdict, ruling</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the judgment?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e5bc3a6f-9f19-460f-9453-754fbc3ea0a6" ownerguid="6c54f0b0-b056-4090-b3f0-d5ec6710d4ab"> -<ExampleWords> -<AUni ws="en">fall</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to becoming low?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e5be6e0e-dc97-4f22-b748-c4678de7cf60" ownerguid="1b211112-9a9c-4f18-9a73-8609cb590d7b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e5c0bf84-62e6-4df1-aa4e-2e8ed8ea944e" ownerguid="26a61321-a9d8-44e3-81c3-a83c85e1158e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">carpenter</AUni> -<AUni ws="es">carpentero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3dbb9695-02d1-43d0-9e77-bc3a2754fc96" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="e5c56d41-213f-42c2-a89c-4b09e3687aca" ownerguid="8275c745-d129-4661-a70b-44c7799187ff"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">kick</AUni> -<AUni ws="es">patear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a984b5c2-45bf-4dea-bf42-3e61815e0b2d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="e5c7e10c-24b9-430d-a528-1df3a2384dc6" ownerguid="42092895-8c78-4420-9c69-c0174c79142f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e5cbae69-deda-4875-a0da-edec1b462d60"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">escarpín; escarpin</AUni> -<AUni ws="qvm-x-acl">escarpín; escarpin</AUni> -<AUni ws="qvm-x-akh">escarpín; escarpin</AUni> -<AUni ws="qvm-x-akl">escarpín; escarpin</AUni> -<AUni ws="qvm-x-ame">escarpín; escarpin</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+escarpín</AUni> -<AUni ws="qvm-x-acl">+escarpín</AUni> -<AUni ws="qvm-x-akh">+escarpín</AUni> -<AUni ws="qvm-x-akl">+escarpín</AUni> -<AUni ws="qvm-x-ame">+escarpín</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.487" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a70cc6f3-be35-4553-b0f8-f534589ccfa0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+escarpín</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8c7e8946-4159-442f-a1ed-fe561a389089" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="142638e0-4211-4e00-94fc-55d7844c5c65" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +escarpín 
\entryTyp root 
\gENG greaves 
\gSPN 
\e +escarpín 
\c N0 
\mp +FinalC 
\ach escarpín / _# 
\ach escarpin / ~_# 
\akh escarpín / _# 
\akh escarpin / ~_# 
\acl escarpín / _# 
\acl escarpin / ~_# 
\akl escarpín / _# 
\akl escarpin / ~_# 
\ame escarpín / _# 
\ame escarpin / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="e5ccc991-1171-408f-8862-e3f8d73d59f6" ownerguid="84d9cff2-830f-4383-a3eb-42f5c29bd281"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="8c9b1238-c746-4a13-a024-39c828637a84" t="o" /> -<objsur guid="bf4c028e-353e-4bcf-a0b0-e96ea754bff8" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="e5d454b3-019a-4379-8b13-35881032f622" ownerguid="89fb9e9a-1c52-4d3a-99aa-5fdd061f778f"> -<Gloss> -<AUni ws="en">12P</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2d74ad57-78d8-4748-98d2-3aacf2799c2f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e5d556fc-50ac-43fb-a2dd-5d462c9a861e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bolsitas</AUni> -<AUni ws="qvm-x-acl">bolsitas</AUni> -<AUni ws="qvm-x-akh">bolsitas</AUni> -<AUni ws="qvm-x-akl">bolsitas</AUni> -<AUni ws="qvm-x-ame">bolsitas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bolsitas</AUni> -<AUni ws="qvm-x-acl">+bolsitas</AUni> -<AUni ws="qvm-x-akh">+bolsitas</AUni> -<AUni ws="qvm-x-akl">+bolsitas</AUni> -<AUni ws="qvm-x-ame">+bolsitas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.971" /> -<DateModified val="2022-10-10 21:18:47.215" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8bed80a4-b858-4970-8f44-5aad92d1f6c3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bolsitas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dc6f5737-3830-4a75-842d-57a76127af32" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="410b65e2-879d-44b7-9634-e224564d36ee" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bolsitas 
\entryTyp root 
\gENG 
\gSPN 
\e +bolsitas 
\c NOSUFF 
\ach bolsitas 
\akh bolsitas 
\acl bolsitas 
\akl bolsitas 
\ame bolsitas</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e5d5d9ef-709d-4184-826e-b0ccd4a02d87" ownerguid="c888c7ac-8cf4-49d2-a33e-20d19d84c47b"> -<ExampleWords> -<AUni ws="en">pigsty, sty, pigpen, barn, shed, stall</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) Where are pigs kept?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e5dc2a6b-4139-4762-a925-0d0ea22588ea"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wagli</AUni> -<AUni ws="qvm-x-acl">wagli; wagli; wagle</AUni> -<AUni ws="qvm-x-akh">waqli</AUni> -<AUni ws="qvm-x-akl">waqli; waqli; waqle</AUni> -<AUni ws="qvm-x-ame">waqli</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waqlli.n</AUni> -<AUni ws="qvm-x-acl">*waqlli.n</AUni> -<AUni ws="qvm-x-akh">*waqlli.n</AUni> -<AUni ws="qvm-x-akl">*waqlli.n</AUni> -<AUni ws="qvm-x-ame">*waqlli.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.495" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="95b735cf-a7d8-4d54-806e-5514ef9cc743" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waqlli.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0e138b3b-71eb-4c5c-89b9-b9547279207b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="260ed8be-5ad1-4916-81fe-1d67a91e0584" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waqlli.n 
\entryTyp root 
\gENG tilted 
\gSPN ladeado 
\e *waqlli.n 
\c N0 
\mp +FinalI 
\ach wagli 
\akh waqli 
\acl wagli / _# 
\acl wagli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wagle +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl waqli / _# 
\akl waqli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl waqle +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame waqli</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e5dd00cf-6fb9-4478-b0a4-66a89386c869" ownerguid="f325a53d-f583-4762-b7b0-afee1815106e"> -<Form> -<AUni ws="qvm-x-ach">troncu; tronco</AUni> -<AUni ws="qvm-x-acl">troncu; troncu; tronco</AUni> -<AUni ws="qvm-x-akh">troncu; tronco</AUni> -<AUni ws="qvm-x-akl">troncu; troncu; tronco</AUni> -<AUni ws="qvm-x-ame">troncu; tronco</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e5de53da-42bb-4d6f-960d-b1157e741284" ownerguid="42023b55-102a-4470-b229-d21ac3c08ec5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">market</AUni> -<AUni ws="es">mercado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dfc262ce-0c61-4e02-9ee7-6ce348c924de" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="e5dfdcc5-aa49-444a-86bf-a8398d1c0282" ownerguid="8b7e5a38-1d5d-44ee-bc7c-ff787a79da7f"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="e5e00df6-7244-414e-b8d2-ea6d015610b9" ownerguid="66cbd546-2f10-413e-8d0c-4952c1cfaa1e"> -<Form> -<AUni ws="qvm-x-ach">hisöpu</AUni> -<AUni ws="qvm-x-acl">hisöpu; hisöpu; hisöpo</AUni> -<AUni ws="qvm-x-akh">hisöpu</AUni> -<AUni ws="qvm-x-akl">hisöpu; hisöpu; hisöpo</AUni> -<AUni ws="qvm-x-ame">hisöpu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="e5e445b4-6ae8-4ffb-a6ac-f404325de4d0"> -<Analyses> -<objsur guid="7b7f948a-733c-4245-a403-1e7e35bb5c9a" t="o" /> -</Analyses> -<Checksum val="-1775272845" /> -<Form> -<AUni ws="qvm-x-akh">tsurinkunata</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="e5e78c78-5fbd-40e0-95f2-6156f0dd17e8" ownerguid="18b3ca02-18fe-4ab5-8709-c20957a0a2fb"> -<ExampleWords> -<AUni ws="en">snobbish, snobby, haughty, snooty, snotty, superior, stuck-up, class-conscious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to thinking you are better than other people?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e5e7bc77-dad6-4fc0-a8bb-e5dba7c84116" ownerguid="3d707fe4-c5ec-49df-9d5e-b3aeee36384f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">godfather</AUni> -<AUni ws="es">compadre</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="817b4da2-c804-4692-bc7e-1d575d60e158" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e5ef2439-e7c3-4204-a8f7-86e943738211" ownerguid="eb00b4c2-5b87-4ef8-9548-800fc5c9b524"> -<ExampleWords> -<AUni ws="en">spoiled, broken, busted, messed up, damaged, crumbling, moth-eaten</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe something that has been damaged?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e5f5f754-7bc8-48a5-9158-e116008ac976" ownerguid="2b27b8ca-188e-44ad-aa86-ffa1f99106e3"> -<ExampleWords> -<AUni ws="en">addition, additive, supplement, extra, adjunct, annex</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something that has been added?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="e5f9c9cf-0b0c-47aa-b7df-8c37f211cd00" ownerguid="d60faf11-cc6e-48db-8a13-82f86d78ab00"> -<Abbreviation> -<AUni ws="en">7.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.549" /> -<DateModified val="2022-9-23 16:55:8.549" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to dividing something into parts or pieces, perhaps with the added idea of using care, or into a certain number of parts.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>63F Divide</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Divide into pieces</AUni> -</Name> -<Questions> -<objsur guid="ae306250-7535-494f-b49e-4949dd9a9c16" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="91913920-8a6a-4ba0-9361-d6cc9e1f3639" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="23b1a6b4-8d91-425c-b8c2-52d06b1c1d23" t="o" /> -<objsur guid="b62b5fc7-1b20-4f63-8459-8eb4991839ee" t="o" /> -<objsur guid="42be1634-72ca-4a20-80a1-ba726e5cd1d2" t="o" /> -<objsur guid="b0b161b2-e773-4b04-99eb-23778fd2aa80" t="o" /> -<objsur guid="313a65bf-450f-48da-8903-a43247f1a5f8" t="o" /> -<objsur guid="c5b8c936-1e01-4e86-9145-a2b721ec9e39" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="e5feefe3-86ba-4ddb-8822-b5ddd46501e7" ownerguid="c4c3618f-59d9-4e04-8b1a-6445cd01ba73"> -<Form> -<AUni ws="qvm-x-ach">cañu; caño</AUni> -<AUni ws="qvm-x-acl">cañu; cañu; caño</AUni> -<AUni ws="qvm-x-akh">cañu; caño</AUni> -<AUni ws="qvm-x-akl">cañu; cañu; caño</AUni> -<AUni ws="qvm-x-ame">cañu; caño</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e600063f-1617-422b-b18f-224aefb51f51" ownerguid="c1144a6e-3fce-4084-93d6-6f305eda8b1f"> -<ExampleWords> -<AUni ws="en">be fortunate, be blessed, have it easy, have a good life, prosper, be prosperous, everything is going well, have a good time, have plenty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to life going well?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e601c19f-4834-4a44-8328-f075d8a3aa14" ownerguid="f07757e2-d57f-4014-bff9-fdbc5007a02a"> -<Form> -<AUni ws="qvm-x-ach">cabecea</AUni> -<AUni ws="qvm-x-acl">cabecea</AUni> -<AUni ws="qvm-x-akh">cabecea</AUni> -<AUni ws="qvm-x-akl">cabecea</AUni> -<AUni ws="qvm-x-ame">cabecea</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="e6024719-1f42-4555-8805-cb26f53e56f7" ownerguid="28b3fe11-1c56-46d9-85f8-24e6867e5452"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e602da0d-9311-4834-accf-1ea20c4298f7" ownerguid="9d428e57-e125-4575-b165-9bc6fd4ec507"> -<ExampleWords> -<AUni ws="en">advocate, promote, persuade, convince, encourage, encouragement, urge, sway</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to trying to persuade someone to change his thinking or decision?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e603497a-50e2-4fb3-8100-893e6c13757e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">almendru; almendro</AUni> -<AUni ws="qvm-x-acl">almendru; almendru; almendro</AUni> -<AUni ws="qvm-x-akh">almendru; almendro</AUni> -<AUni ws="qvm-x-akl">almendru; almendru; almendro</AUni> -<AUni ws="qvm-x-ame">almendru; almendro</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+almendro</AUni> -<AUni ws="qvm-x-acl">+almendro</AUni> -<AUni ws="qvm-x-akh">+almendro</AUni> -<AUni ws="qvm-x-akl">+almendro</AUni> -<AUni ws="qvm-x-ame">+almendro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.709" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e18f36e9-f8ea-4b01-9867-d8bb7630f211" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+almendro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a02239f8-4f1d-40f8-bf86-86e4f80a459f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b3511a1c-ec05-4a6f-94de-4ceb714a365f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +almendro 
\entryTyp root 
\gENG almond.tree 
\gSPN almendro 
\e +almendro 
\c N0 
\ach almendru / ~_# 
\ach almendro / _# 
\akh almendru / ~_# 
\akh almendro / _# 
\acl almendru / ~_# 
\acl almendru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl almendro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl almendru / ~_# 
\akl almendru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl almendro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame almendru / ~_# 
\ame almendro / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e6042ad2-43a7-48a5-8715-e824c414863b" ownerguid="4d19f09f-035b-477e-862c-a4157acdfe81"> -<ExampleWords> -<AUni ws="en">freshwater, saltwater, seawater, saline solution, brackish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe salt water versus fresh water?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e6049c07-418d-4d57-afa7-754207018596" ownerguid="f518e5fa-7656-4b9f-9442-fdbcf72c5482"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e6058f5d-0076-43da-8329-08082bfaa0a2" ownerguid="099d9539-baa5-4a7a-86b1-ebc30409efd7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bell</AUni> -<AUni ws="es">campanilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2553a4c6-6557-4000-835e-6f721ac16c8d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e606b422-671c-4b9e-a1c8-36155d8172da" ownerguid="00979c11-b4f8-4c50-8df9-2b2073d4b7a6"> -<Form> -<AUni ws="qvm-x-ach">tulpa</AUni> -<AUni ws="qvm-x-acl">tulpa</AUni> -<AUni ws="qvm-x-akh">tulpa</AUni> -<AUni ws="qvm-x-akl">tulpa</AUni> -<AUni ws="qvm-x-ame">tulpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="e6086777-9787-4aff-a1ab-852108e27180" ownerguid="432acf5a-1d31-4f9c-8b2d-674b5dcec0b4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">juti</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">juti; jute</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">juti</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">juti; jute</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">huti</Run> -</AStr> -</Form> -<Morph> -<objsur guid="77983496-bf92-4919-8186-ec174718f85e" t="r" /> -</Morph> -<Msa> -<objsur guid="19418d3e-9360-4259-84ea-c01ec8fa2272" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="e608de22-6253-461a-adf8-044d329802c4" ownerguid="559d371f-80cf-49ba-a55b-c636d110f091"> -<Form> -<AUni ws="qvm-x-ach">töchi</AUni> -<AUni ws="qvm-x-acl">töchi; töchi; töche</AUni> -<AUni ws="qvm-x-akh">töchi</AUni> -<AUni ws="qvm-x-akl">töchi; töchi; töche</AUni> -<AUni ws="qvm-x-ame">tüchi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e608f148-0dca-49e6-a6e2-9cc4e61b73fb" ownerguid="8bdf4847-903b-4af6-9553-3cfab65de516"> -<ExampleWords> -<AUni ws="en">answer, solution</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the answer to a mathematical problem?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e60f42e5-c6fc-451e-bfff-41d7d4b49d00" ownerguid="822c9440-9d4e-4aba-9fd7-5c0365dab711"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="87a3a562-6971-4ad9-88b5-3fd1e2f98675" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e611bf07-5562-4552-a448-1fd518a24477" ownerguid="47673f92-486c-422e-b979-7f35a6b3adde"> -<Form> -<AUni ws="qvm-x-ach">melana; melanä</AUni> -<AUni ws="qvm-x-acl">melana; melanä</AUni> -<AUni ws="qvm-x-akh">melana; melanä</AUni> -<AUni ws="qvm-x-akl">melana; melanä</AUni> -<AUni ws="qvm-x-ame">melana; melanä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="e6132df9-8fc6-4d1d-8d11-2ebc9e7f7669"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ogsha</AUni> -<AUni ws="qvm-x-acl">ogsha</AUni> -<AUni ws="qvm-x-akh">oqsha</AUni> -<AUni ws="qvm-x-akl">oqsha</AUni> -<AUni ws="qvm-x-ame">uqsha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uqsha.n</AUni> -<AUni ws="qvm-x-acl">*uqsha.n</AUni> -<AUni ws="qvm-x-akh">*uqsha.n</AUni> -<AUni ws="qvm-x-akl">*uqsha.n</AUni> -<AUni ws="qvm-x-ame">*uqsha.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.261" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e9c65813-a98b-487d-988a-0fa9c90816f5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uqsha.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9730239c-9efe-49c9-b2cb-b2ee75558583" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9d65bd85-877d-4efb-a896-2638c68b9fbd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uqsha.n 
\entryTyp root 
\gENG straw 
\gSPN icho 
\e *uqsha.n 
\c N0 
\ach ogsha 
\akh oqsha 
\acl ogsha 
\akl oqsha 
\ame uqsha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e616f8ae-a973-493a-be36-4c16d89da58b" ownerguid="9d865347-6656-4ab7-8613-bf2e8bc53aa7"> -<ExampleWords> -<AUni ws="en">be injured, sustain an injury, be bleeding, be hurt, get hurt, be wounded, suffer harm</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to being injured?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e6171c0b-61c6-41a2-9b19-684869a736c3" ownerguid="85329c54-de67-4ec9-8ba8-7bd4c66a5c96"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bamboo</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6e6b9c11-02b8-4141-be34-746030e737f5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e618cba2-a754-4c03-aa2f-a09b6cbc5442" ownerguid="6fe11b6a-8d01-4a0b-bdeb-e4e6f420340a"> -<ExampleWords> -<AUni ws="en">introvert, extrovert, outgoing, shy, quiet, sociable, talkative, vivacious, intense, easy-going, down-to-earth, homespun, melancholic, phlegmatic, choleric, sanguine, logical, emotional, unemotional, impulsive, cool-headed, even keeled, flamboyant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe personality traits?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e61a81ff-00d9-49d1-93e5-dbdfa1e7defc" ownerguid="b5b36c31-c56d-44b9-933c-fe0e62d80c25"> -<ExampleWords> -<AUni ws="en">share, share with, contribute toward, give to, be generous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to sharing with others?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e61b348e-44b8-4960-80e7-18b52292f013" ownerguid="eb3bc41a-8c2f-4fdf-bd56-d2f42cfe9090"> -<Form> -<AUni ws="qvm-x-ach">ïdulu</AUni> -<AUni ws="qvm-x-acl">ïdulu; ïdulu; ïdulo</AUni> -<AUni ws="qvm-x-akh">ïdulu</AUni> -<AUni ws="qvm-x-akl">ïdulu; ïdulu; ïdulo</AUni> -<AUni ws="qvm-x-ame">ïdulu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e61b956a-27e9-4196-98f3-37ef07b8e8b2" ownerguid="7c6ba6e5-d81e-4a50-a111-c946a0793378"> -<ExampleWords> -<AUni ws="en">have a disadvantage, be at a disadvantage, be handicapped, the odds are stacked against you, disadvantaged</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to having a disadvantage compared with other people?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e61cce51-001e-45d4-9fb3-28d48f9e5a4b" ownerguid="936d53eb-31ce-419c-af43-618117739fa4"> -<Form> -<AUni ws="qvm-x-ach">nübi; nübi</AUni> -<AUni ws="qvm-x-acl">nübi; nübi; nübe</AUni> -<AUni ws="qvm-x-akh">nübi; nübi</AUni> -<AUni ws="qvm-x-akl">nübi; nübi; nübe</AUni> -<AUni ws="qvm-x-ame">nübi; nübi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="e61dd088-2f71-4c91-83eb-c4d110170511"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">laqchi</AUni> -<AUni ws="qvm-x-acl">laqchi; laqche</AUni> -<AUni ws="qvm-x-akh">laqchi</AUni> -<AUni ws="qvm-x-akl">laqchi; laqche</AUni> -<AUni ws="qvm-x-ame">laqchi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llaqchi</AUni> -<AUni ws="qvm-x-acl">*llaqchi</AUni> -<AUni ws="qvm-x-akh">*llaqchi</AUni> -<AUni ws="qvm-x-akl">*llaqchi</AUni> -<AUni ws="qvm-x-ame">*llaqchi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.154" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="526c654f-9194-4975-b1b7-6846b89b3140" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llaqchi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b09fb115-da7b-492d-89f6-d6d3cf23e981" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="35fd7788-3a6f-4923-bbda-feacda095234" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llaqchi 
\entryTyp root 
\gENG 
\gSPN 
\e *llaqchi 
\c V1 
\mp +FinalI 
\ach laqchi 
\akh laqchi 
\acl laqchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl laqche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl laqchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl laqche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame laqchi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e61f0e47-f8da-46eb-9f25-d0e87e1ae968" ownerguid="745147a3-157d-472b-a4cb-e71da4669788"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">seven</AUni> -<AUni ws="es">siete</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3f5b3228-d768-47e6-881e-9e77cc9b6fc0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e622154c-2a15-4b1c-8fe9-2d3d92202517" ownerguid="e43c9905-ae67-4627-8b10-bd7a453828b4"> -<ExampleWords> -<AUni ws="en">stick, stick together, adhere, cake, cling, cohere, grip, lump</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to two or more things sticking together?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="e6221c7a-4608-4114-ba9f-532a3b943113" ownerguid="ffd0547e-e537-4614-ac3f-6d8cd3351f33"> -<Abbreviation> -<AUni ws="en">1.6.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the parts of a bird, but not general parts that belong to all animals.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Parts of a bird</AUni> -</Name> -<Questions> -<objsur guid="2b7ede55-fd63-4f2b-b6e3-8bc0c2b01e9d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="e6224e1f-8cc3-4643-b7fb-d7d35e241a06" ownerguid="dd4d8f22-2c30-4e2e-a548-6f22752ba2b3"> -<Form> -<AUni ws="qvm-x-ach">shacya</AUni> -<AUni ws="qvm-x-acl">shacya</AUni> -<AUni ws="qvm-x-akh">shakya</AUni> -<AUni ws="qvm-x-akl">shakya</AUni> -<AUni ws="qvm-x-ame">shakya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="e62511d9-07c1-44c5-be0a-f180760897de" ownerguid="fdbdb4cf-b6a0-489f-a7db-d7e5e05a25f6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e6258e27-a753-4f33-94ca-73e0267188d8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jogari</AUni> -<AUni ws="qvm-x-acl">jogari; jogare</AUni> -<AUni ws="qvm-x-akh">joqari</AUni> -<AUni ws="qvm-x-akl">joqari; joqare</AUni> -<AUni ws="qvm-x-ame">huqari</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*huqari</AUni> -<AUni ws="qvm-x-acl">*huqari</AUni> -<AUni ws="qvm-x-akh">*huqari</AUni> -<AUni ws="qvm-x-akl">*huqari</AUni> -<AUni ws="qvm-x-ame">*huqari</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.761" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4967b28d-c079-45ae-8aed-3683cf5a4ef1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*huqari</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="79e0af96-4bd3-4a79-9a13-9df4566e2b60" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8aa38d31-0c4f-43fc-bb05-12cbb84aaf6e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *huqari 
\entryTyp root 
\gENG 
\gSPN 
\e *huqari 
\c V2 
\mp +FinalI 
\ach jogari 
\akh joqari 
\acl jogari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl jogare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl joqari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl joqare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame huqari</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="e626c65e-eb79-4230-b07a-a6d975d3fe3d" ownerguid="d98c1c67-b70e-4a35-89db-2e744bd5197f"> -<Abbreviation> -<AUni ws="en">2.1.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the mouth. Do not use this domain for words referring to eating, drinking, or speaking.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>23B Processes Involving the Mouth, Other Than Eating and Drinking x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Mouth</AUni> -</Name> -<Questions> -<objsur guid="6df441b7-0b61-432e-9384-130c610a988f" t="o" /> -<objsur guid="3543763a-2b35-46cd-a4fe-2d8ed8677acf" t="o" /> -<objsur guid="2125110b-c026-48c4-89ba-2753c1f738a8" t="o" /> -<objsur guid="6cbafc8c-3960-41fd-bb36-5b054515cb8a" t="o" /> -<objsur guid="67d85ec5-55d5-4f87-9d62-67ead4207ffe" t="o" /> -<objsur guid="6e330b7d-0c11-46fc-af3b-1d387ad17879" t="o" /> -<objsur guid="a71fac2e-1b03-4b9f-8559-41d25ec832f5" t="o" /> -<objsur guid="e25a8c59-0430-4ee3-833b-870c429be803" t="o" /> -<objsur guid="2f343e25-995d-4d51-8c67-d9f235961de0" t="o" /> -<objsur guid="edad2fba-c4bd-4ea8-8840-e51d9236548b" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="0f568473-880d-43bd-b5ce-590100fdcaf6" t="r" /> -<objsur guid="339f54a5-125b-435f-bf37-cfc2a2bd26d3" t="r" /> -<objsur guid="8497fb66-8b91-46b9-a0d5-fb9385319561" t="r" /> -<objsur guid="fd33670e-ef16-4566-a62e-aa077e58407b" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="e62751e9-a753-4b10-a21f-75f1ca90dc25" ownerguid="d1b3d0f0-5319-4a6a-8a70-2179a8e76d22"> -<ExampleWords> -<AUni ws="en">need, be in need of, require, be a need for, could do with, have a need, be in a pinch, be in want</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to needing something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e62844f5-7c25-4693-85e3-e25a27bfd924" ownerguid="29a8ebbe-ebc4-4295-b6af-84331d019361"> -<ExampleWords> -<AUni ws="en">phrase, clause, sentence, utterance, discourse, formation, locution</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to a section of speech?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e62b8120-7707-4e27-8414-bba2083f2fde" ownerguid="b50f39cb-3152-4d56-9ddc-4b98f763e76a"> -<ExampleWords> -<AUni ws="en">want to, wish you could, aspire to, feel like, hope you can, interested in, raring to, have an urge to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to wanting to do something?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="e62cb8cf-ade7-4857-afaa-fbc786b9eb33" ownerguid="3c010d2f-d6a9-4f68-8347-20040e4a7966"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Shegilatami cafëta upuycan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="e62f7401-545f-4620-a538-ebc9fada156e" ownerguid="0add0775-0ed0-46be-ba4a-76310e63a036"> -<ExampleWords> -<AUni ws="en">slope (n), ramp, ascent, rise, bank, incline (n), grade</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a surface that is sloping?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="e63044c4-6043-4706-ae26-f26b788c2435" ownerguid="2ae33e10-d42f-492c-9429-f486fb613a7d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wawa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wawa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wawa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wawa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wawa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="947ece62-6ca2-4ac8-a84c-d2baa509eb59" t="r" /> -</Morph> -<Msa> -<objsur guid="2d28f9c9-ff25-4f47-a9dc-c545ea868393" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="e6316909-1328-4434-a8ab-a69259df8b87" ownerguid="f07f867d-808f-4750-92ca-859aea59e58c"> -<ExampleWords> -<AUni ws="en">homebody</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe someone who likes to stay at home?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e637a0ba-c46e-4229-b210-cfadf389a162"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">junaga; junaga:</AUni> -<AUni ws="qvm-x-acl">junaga; junaga:</AUni> -<AUni ws="qvm-x-akh">junaqa; junaqa:</AUni> -<AUni ws="qvm-x-akl">junaqa; junaqa:</AUni> -<AUni ws="qvm-x-ame">hunaqa; hunaqa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hunaqa:</AUni> -<AUni ws="qvm-x-acl">*hunaqa:</AUni> -<AUni ws="qvm-x-akh">*hunaqa:</AUni> -<AUni ws="qvm-x-akl">*hunaqa:</AUni> -<AUni ws="qvm-x-ame">*hunaqa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.761" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="01c1afaa-4f34-4b9f-b749-693c751f6d29" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hunaqa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="841208c8-ce30-4629-9964-7990f30a2c9f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dffa4b73-8401-407b-bb50-61ccc2b04a6d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hunaqa: 
\entryTyp root 
\gENG become.late 
\gSPN ser.atrasado 
\e *hunaqa: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach junaga foreshortened 
\ach junaga: 
\akh junaqa foreshortened 
\akh junaqa: 
\acl junaga foreshortened 
\acl junaga: 
\akl junaqa foreshortened 
\akl junaqa: 
\ame hunaqa foreshortened 
\ame hunaqa:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e637c477-9a16-404b-aaee-817e8e97c474" ownerguid="bbb897b5-f09b-4263-9f81-826ca61084f1"> -<ExampleWords> -<AUni ws="en">wash</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What general words refer to using water to remove dirt?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e6391ac1-f4f8-4f32-9899-7a0a6048f542" ownerguid="a40ea667-1d58-4511-8f02-0ce11a010bfa"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="e6399c0e-55bd-453c-98ed-882a9d160a8c" ownerguid="b8fc7997-5daa-4c03-bcce-30f7295dfe62"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e63ae5a6-beaf-4d84-86b1-b882db667ea4" ownerguid="2cb96ed7-f686-4749-b7a5-028396b96019"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lamp</AUni> -<AUni ws="es">lámpara</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1344baaf-71cf-4b7e-af83-727e7bb88373" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e63dc412-96f4-4aa9-a53d-137fbe5d24b0" ownerguid="afa77a2a-8b0f-4a39-91bc-040e90ffbb3a"> -<ExampleWords> -<AUni ws="en">happiness, bliss, cheerfulness, contentment, delight, elation, euphoria, gladness, good feelings, joy, mirth, pleasure, satisfaction</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of happiness?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="e6410dba-fc7e-4fd7-bb86-2ad226971f73"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">1</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="e6453faa-2e2a-41e2-a412-7c536f0ff983" ownerguid="431e87e3-4b90-4fd1-b110-1b36d06f34d4"> -<Form> -<AUni ws="qvm-x-ach">gäna</AUni> -<AUni ws="qvm-x-acl">gäna</AUni> -<AUni ws="qvm-x-akh">gäna</AUni> -<AUni ws="qvm-x-akl">gäna</AUni> -<AUni ws="qvm-x-ame">gäna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e6462f47-6573-4486-8059-658b28d0464c" ownerguid="85912845-21b0-41eb-8b8c-1f5c3d53df08"> -<ExampleWords> -<AUni ws="en">be into something, be excited about, be raring to go, eagerly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling enthusiastic?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="e646b923-0e79-4a46-a065-b5396cb895fb" ownerguid="44a31c2a-c0ef-4cb6-b7c3-fc202ecdff8b"> -<Form> -<AUni ws="qvm-x-ach">lä</AUni> -<AUni ws="qvm-x-acl">lä</AUni> -<AUni ws="qvm-x-akh">lä</AUni> -<AUni ws="qvm-x-akl">lä</AUni> -<AUni ws="qvm-x-ame">laa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="e64a3b56-3e9f-4574-9550-a68725e5a9ed"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wachquillu</AUni> -<AUni ws="qvm-x-acl">wachquillu; wachquillu; wachquillo</AUni> -<AUni ws="qvm-x-akh">wachkillu</AUni> -<AUni ws="qvm-x-akl">wachkillu; wachkillu; wachkillo</AUni> -<AUni ws="qvm-x-ame">wachkillu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*watrkillu</AUni> -<AUni ws="qvm-x-acl">*watrkillu</AUni> -<AUni ws="qvm-x-akh">*watrkillu</AUni> -<AUni ws="qvm-x-akl">*watrkillu</AUni> -<AUni ws="qvm-x-ame">*watrkillu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.586" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a88fe160-29f4-493c-9a62-1cdc53d93a7c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*watrkillu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="42409077-f232-4859-93cf-e1f95979450d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4b82eb32-44fd-4c13-84ba-e20b1f3c811f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *watrkillu 
\entryTyp root 
\gENG 
\gSPN 
\e *watrkillu 
\c N0 
\ach wachquillu 
\akh wachkillu 
\acl wachquillu / _# 
\acl wachquillu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wachquillo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wachkillu / _# 
\akl wachkillu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl wachkillo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wachkillu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e64b1ceb-08db-4407-8f97-2022ce97fb11" ownerguid="3ec43596-23e7-43fa-8853-9c69b6683451"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sleep</AUni> -<AUni ws="es">dormir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9da0fb89-0053-4a69-95bf-8b732fe8d281" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="e64e647e-a5fb-463c-8eef-44879e2e70b2" ownerguid="a03663ca-0c66-4570-be2d-b40105cc4400"> -<Abbreviation> -<AUni ws="en">9.4.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.708" /> -<DateModified val="2022-9-23 16:55:8.708" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that a negative answer is expected to a question.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>69E Markers for an Negative Response to Questions</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Markers expecting a negative answer</AUni> -</Name> -<Questions> -<objsur guid="5de7e5de-2f1c-4113-b71b-82e9956ab3b3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="e65503e9-1b9c-400c-b26d-c4fa38957220" ownerguid="feb45ae0-0c1b-48a4-a258-c4edf4159d39"> -<Form> -<AUni ws="qvm-x-ach">fuera</AUni> -<AUni ws="qvm-x-acl">fuera</AUni> -<AUni ws="qvm-x-akh">fuera</AUni> -<AUni ws="qvm-x-akl">fuera</AUni> -<AUni ws="qvm-x-ame">fuera</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="e65de796-2226-4478-8585-183f455e633f" ownerguid="80a863d0-38d7-4454-bf8a-fa3d622c5f12"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e65e65d9-ca80-45de-9c0b-468c63be1477" ownerguid="7575d654-e528-4fe0-85eb-481b0e6654bb"> -<ExampleWords> -<AUni ws="en">be on, run, operate, work</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to when a machine is working?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e66729dc-529c-4f62-8cd9-d4a198cdf0cb" ownerguid="aec8c246-0ef7-414a-94a6-b9fdd6812a7c"> -<ExampleWords> -<AUni ws="en">class, caste, background, status, social standing, strata</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to social class?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e66c9cb1-376d-4b82-8763-1b5b7fcb3401"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">banque:ti; banque:ti</AUni> -<AUni ws="qvm-x-acl">banque:ti; banque:ti; banque:te</AUni> -<AUni ws="qvm-x-akh">banque:ti; banque:ti</AUni> -<AUni ws="qvm-x-akl">banque:ti; banque:ti; banque:te</AUni> -<AUni ws="qvm-x-ame">banque:ti; banque:ti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+banquete</AUni> -<AUni ws="qvm-x-acl">+banquete</AUni> -<AUni ws="qvm-x-akh">+banquete</AUni> -<AUni ws="qvm-x-akl">+banquete</AUni> -<AUni ws="qvm-x-ame">+banquete</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.941" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ed87774b-6275-4ec9-9475-aaca804a2ffc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+banquete</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b1015e0e-410c-4213-8a2b-7791c4e8ad12" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="874fda98-24fc-420c-8c10-ce056f41f23e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +banquete 
\entryTyp root 
\gENG 
\gSPN 
\e +banquete 
\c N0 
\mp +FinalI 
\ach banque:ti / _# 
\ach banque:ti / ~_# 
\akh banque:ti / _# 
\akh banque:ti / ~_# 
\acl banque:ti / _# 
\acl banque:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl banque:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl banque:ti / _# 
\akl banque:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl banque:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame banque:ti / _# 
\ame banque:ti / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="e66cdbae-052e-47e0-8477-5ce74dce986b" ownerguid="a13c2ff6-9c41-47ff-be93-775adc41e4a0"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 11.5 Wanutsicogcunata y atacagcunataga alma y vïdami chiquin.\q</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="e66e3e59-2fb4-4ade-a864-eefb80f6df90" ownerguid="7459c0d8-4da1-4944-a95e-bc64cde860f5"> -<ExampleWords> -<AUni ws="en">invitation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to what is said or written when inviting someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e66e8cc7-f620-4174-8bc7-f23345dbdbda" ownerguid="01441207-4935-49a5-a192-16d949f5606c"> -<ExampleWords> -<AUni ws="en">series, Olympics, tournament, tourney, meet, double-header, triple-header, season</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a group of sports events?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e66fb1f7-3530-44ce-ac4b-b6157f0d3319" ownerguid="4f206556-90aa-444c-ac3d-27800ff88da9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">weight</AUni> -<AUni ws="es">tortero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ab6af991-6bad-4b14-a89a-1844bdcad783" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e66ff615-20cc-4db8-88d1-7632e4644782"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rapi</AUni> -<AUni ws="qvm-x-acl">rapi; rapi; rape</AUni> -<AUni ws="qvm-x-akh">rapi</AUni> -<AUni ws="qvm-x-akl">rapi; rapi; rape</AUni> -<AUni ws="qvm-x-ame">rapi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rapi</AUni> -<AUni ws="qvm-x-acl">*rapi</AUni> -<AUni ws="qvm-x-akh">*rapi</AUni> -<AUni ws="qvm-x-akl">*rapi</AUni> -<AUni ws="qvm-x-ame">*rapi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.269" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4247d4f4-c3f2-47ad-a3f1-8377c732f6ea" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rapi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f74e312d-cafc-41d3-a8e9-76eaa8c9bbd4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="600bc993-04f5-42c6-821d-be2d547750f9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rapi 
\entryTyp root 
\gENG side 
\gSPN side 
\e *rapi 
\c N0 
\mp +FinalI 
\ach rapi 
\akh rapi 
\acl rapi / _# 
\acl rapi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl rape +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rapi / _# 
\akl rapi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl rape +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame rapi 
\i ROM 6.12 Shonguntsi jutsa ruraypag rapita rapiptinpis jutsata ama rurashuntsu. 
\mcc *rapi / ~_ ADV2</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e6743663-5f88-4abb-843a-c420d485f68c" ownerguid="94ad2e38-b17f-439d-a2ea-f9d344586d4f"> -<Form> -<AUni ws="qvm-x-ach">racta</AUni> -<AUni ws="qvm-x-acl">racta</AUni> -<AUni ws="qvm-x-akh">rakta</AUni> -<AUni ws="qvm-x-akl">rakta</AUni> -<AUni ws="qvm-x-ame">rakta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="e67463b3-9b30-4099-b2cc-3be0331358e1" ownerguid="cf0ac4da-df0e-47ff-bb56-2d20ec9e5f87"> -<Form> -<AUni ws="qvm-x-ach">Dios; Dioos</AUni> -<AUni ws="qvm-x-acl">Dios; Dioos</AUni> -<AUni ws="qvm-x-akh">Dios; Dioos</AUni> -<AUni ws="qvm-x-akl">Dios; Dioos</AUni> -<AUni ws="qvm-x-ame">Dios; Dioos</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e674d62b-82e3-486d-be8d-b1e72168bd62" ownerguid="d017730f-2c07-48dc-924a-9b3eaf09ea8a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">act</AUni> -<AUni ws="es">acta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e4e79d36-23fb-4d5b-bdf6-7e6e4598fbd3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e67562d2-59c9-4d2e-87e5-aa994c3b7d30"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pasadi:su</AUni> -<AUni ws="qvm-x-acl">pasadi:su; pasadi:su; pasadi:so</AUni> -<AUni ws="qvm-x-akh">pasadi:su</AUni> -<AUni ws="qvm-x-akl">pasadi:su; pasadi:su; pasadi:so</AUni> -<AUni ws="qvm-x-ame">pasadi:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pasadiso</AUni> -<AUni ws="qvm-x-acl">+pasadiso</AUni> -<AUni ws="qvm-x-akh">+pasadiso</AUni> -<AUni ws="qvm-x-akl">+pasadiso</AUni> -<AUni ws="qvm-x-ame">+pasadiso</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.729" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bbcc6674-775f-46d7-883f-c1d61aea7a43" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pasadiso</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7f11b059-1f9e-417c-a490-686c64284d4e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="06c35e12-3c8f-4db7-8f59-30d283a856e8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pasadiso 
\entryTyp root 
\gENG 
\gSPN 
\e +pasadiso 
\c N0 
\ach pasadi:su 
\akh pasadi:su 
\acl pasadi:su / _# 
\acl pasadi:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pasadi:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pasadi:su / _# 
\akl pasadi:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pasadi:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pasadi:su</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e676ce03-d44b-4b9e-9f46-a96ae6732112" ownerguid="86787a82-377f-445c-b6b1-9b1c136d2242"> -<Form> -<AUni ws="qvm-x-ach">pelïcanu</AUni> -<AUni ws="qvm-x-acl">pelïcanu; pelïcanu; pelïcano</AUni> -<AUni ws="qvm-x-akh">pelïcanu</AUni> -<AUni ws="qvm-x-akl">pelïcanu; pelïcanu; pelïcano</AUni> -<AUni ws="qvm-x-ame">pelïcanu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="e6783c90-bbbb-4bc1-8d48-852abaff1fd5" ownerguid="d93aaf42-09e2-4d80-b7c7-3ad03993f210"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="e67a473e-c6cf-4ab8-a900-cc47b6ff4aa7" ownerguid="a987fb7e-c326-4431-ac4c-5f01ccfc3767"> -<Form> -<AUni ws="qvm-x-ach">textu; texto</AUni> -<AUni ws="qvm-x-acl">textu; textu; texto</AUni> -<AUni ws="qvm-x-akh">textu; texto</AUni> -<AUni ws="qvm-x-akl">textu; textu; texto</AUni> -<AUni ws="qvm-x-ame">textu; texto</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e67b66d7-99e5-4de4-bfc5-7cba57bb508c" ownerguid="82602177-e119-4dc8-a754-4130f46ff764"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="61f13725-dc84-4bd0-9661-786219e744e9" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">to.marry</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a5963716-b67a-449e-ae09-2888a927abd8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e67d77e6-7e2d-4852-ac49-a6b543933c23"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pasaje:ru</AUni> -<AUni ws="qvm-x-acl">pasaje:ru; pasaje:ru; pasaje:ro</AUni> -<AUni ws="qvm-x-akh">pasaje:ru</AUni> -<AUni ws="qvm-x-akl">pasaje:ru; pasaje:ru; pasaje:ro</AUni> -<AUni ws="qvm-x-ame">pasaje:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pasajero</AUni> -<AUni ws="qvm-x-acl">+pasajero</AUni> -<AUni ws="qvm-x-akh">+pasajero</AUni> -<AUni ws="qvm-x-akl">+pasajero</AUni> -<AUni ws="qvm-x-ame">+pasajero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.729" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5dbf4736-1437-499e-b9a6-1f2ad3032a28" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pasajero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0c0da763-f88e-4a42-b1e1-2d0f02dd35a6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="79abc819-5660-42df-ae30-945b6243e5c8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pasajero 
\entryTyp root 
\gENG traveller 
\gSPN viajero 
\e +pasajero 
\c N0 
\ach pasaje:ru 
\akh pasaje:ru 
\acl pasaje:ru / _# 
\acl pasaje:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pasaje:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pasaje:ru / _# 
\akl pasaje:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pasaje:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pasaje:ru 
\i Jdg 19.17 Pläzacho jamaraycagta ricarmi pasajëruta auquenga caynog nergan: <<¿Maypitatag shamuycanqui? ¿Maypatag aywaycanqui?>></Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="e67f4c6c-1636-4a04-a14a-8dfb1f375003"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">partu; parto</AUni> -<AUni ws="qvm-x-acl">partu; partu; parto</AUni> -<AUni ws="qvm-x-akh">partu; parto</AUni> -<AUni ws="qvm-x-akl">partu; partu; parto</AUni> -<AUni ws="qvm-x-ame">partu; parto</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+parto</AUni> -<AUni ws="qvm-x-acl">+parto</AUni> -<AUni ws="qvm-x-akh">+parto</AUni> -<AUni ws="qvm-x-akl">+parto</AUni> -<AUni ws="qvm-x-ame">+parto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.729" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7d59c735-2cfd-4ba9-94ba-2ab1bc6c7bb8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+parto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="39a72fc6-9fd8-47e6-ae8b-0c78bca4b392" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="00fecaea-daef-4906-b4d6-65daf9008591" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +parto 
\entryTyp root 
\gENG 
\gSPN 
\e +parto 
\c N0 
\ach partu / ~_# 
\ach parto / _# 
\akh partu / ~_# 
\akh parto / _# 
\acl partu / ~_# 
\acl partu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl parto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl partu / ~_# 
\akl partu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl parto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame partu / ~_# 
\ame parto / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e681a2aa-c8b2-45f5-b99a-de6849b6ec8e" ownerguid="2725259a-7ebf-44fc-8107-3c320e583cef"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">commander</AUni> -<AUni ws="es">comandante</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d1e0665e-50b8-4602-b873-4a30bd259dff" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e681db8f-446a-4abe-8e5a-3ec17e9fcea2" ownerguid="f0e68d2f-f7b3-4722-80a4-8e9c5638b0d4"> -<ExampleWords> -<AUni ws="en">evaluation, examination, experiment (n), investigation, inquiry, quest, study, search</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the process of trying to learn something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e6822331-6cb7-467a-8c58-32cfefc2f332"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shunshuta; shunshuta:</AUni> -<AUni ws="qvm-x-acl">shunshuta; shunshuta:</AUni> -<AUni ws="qvm-x-akh">shunshuta; shunshuta:</AUni> -<AUni ws="qvm-x-akl">shunshuta; shunshuta:</AUni> -<AUni ws="qvm-x-ame">shunshuta; shunshuta:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shunshuta:</AUni> -<AUni ws="qvm-x-acl">*shunshuta:</AUni> -<AUni ws="qvm-x-akh">*shunshuta:</AUni> -<AUni ws="qvm-x-akl">*shunshuta:</AUni> -<AUni ws="qvm-x-ame">*shunshuta:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.640" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e09e7d9b-2f94-4663-aaa5-edf76a1c5e12" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shunshuta:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b022fa1f-2aa2-4ecb-ba5e-bde17ff37ffd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f000b9e2-833c-446e-ac1d-59db48ee23ec" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shunshuta: 
\entryTyp root 
\gENG 
\gSPN 
\e *shunshuta: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach shunshuta foreshortened 
\ach shunshuta: 
\akh shunshuta foreshortened 
\akh shunshuta: 
\acl shunshuta foreshortened 
\acl shunshuta: 
\akl shunshuta foreshortened 
\akl shunshuta: 
\ame shunshuta foreshortened 
\ame shunshuta: 
\i PSA 38.3 Lapan tulöcunapis shunshutaycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e682b8c3-d6f5-4cb4-8a6d-c4f4e339b7d1" ownerguid="e7c58c11-2911-446a-96b0-2113247f3792"> -<ExampleWords> -<AUni ws="en">generation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a single generation?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e684ee46-ed21-4806-9fd7-f7a9eea45c41" ownerguid="8ce6709f-f772-4638-a1aa-c132666f3563"> -<ExampleWords> -<AUni ws="en">annoying, exasperating, frustrating, irritating, galling, nettlesome, stupid, bloody, be a drag</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that causes someone to feel annoyed?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e68529ed-bb50-40d0-8e96-ab04367d37a0" ownerguid="3bc961d1-9f4f-4f1b-ada7-b1e9a2928ea4"> -<ExampleWords> -<AUni ws="en">honesty, integrity, truthfulness, scruples</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the quality of telling the truth?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e685b0b0-8885-484b-b289-cc521ded291d" ownerguid="783cd8b8-8d25-4a62-ac42-eae420ee850f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="5f4fb9ac-7ebb-466c-871d-2b500d0b6c4d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e68748b0-377e-4337-9a5c-a1c5694406de" ownerguid="cf337287-c9fa-43d2-93c4-284f45e262c0"> -<ExampleWords> -<AUni ws="en">cough, whooping cough, cold, sore throat, influenza, flu, chill</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to a disease of the nose and throat?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e6876a35-244c-474e-b8a5-be830e7ed5c3" ownerguid="fc0afb69-a4d4-439a-91cd-ed0ce67677b5"> -<ExampleWords> -<AUni ws="en">sizzle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that is being cooked?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e6886b9f-ffbb-4092-a2ed-a92e29e0b57a" ownerguid="ff505092-6d88-4b5e-8095-04e471d7ad4c"> -<ExampleWords> -<AUni ws="en">reincarnation, reincarnated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to reincarnation?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e68b7a2b-c4c5-4e91-8943-c43386983707" ownerguid="46b13a77-fe12-49fb-afbe-826480ec97f4"> -<ExampleWords> -<AUni ws="en">be pleased with, happy with, satisfied with, approve of, delight in, be favorable toward, impressed with, thrilled with, tickled with, respect</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being pleased with someone?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e68d3525-8a81-435d-9a9d-96cd4f923b97" ownerguid="e0462bde-bb52-4cd0-a8d1-4db77a752426"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">for</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e19812eb-e4a3-4ac7-9ac0-5bd0d2ef3828" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="e690c337-275a-4dd2-8448-99bf36b086eb" ownerguid="d6ae5750-f0ad-41fe-83f6-53f8a03121cc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1 V2/V2</Run> -</AStr> -</Custom> -<Definition> -<AStr ws="en"> -<Run ws="en">institutional</Run> -</AStr> -<AStr ws="es"> -<Run ws="es">institucional</Run> -</AStr> -</Definition> -<Gloss> -<AUni ws="en">INSTL</AUni> -<AUni ws="es">DIF</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="89aaf2da-e71b-4b1f-a70d-31fce5e0eaa2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e6915103-26eb-4fd6-8cac-441f3526cfcc" ownerguid="84afa73b-f1cd-471b-ae3b-7f3887fd4589"> -<Form> -<AUni ws="qvm-x-ach">listón; liston</AUni> -<AUni ws="qvm-x-acl">listón; liston</AUni> -<AUni ws="qvm-x-akh">listón; liston</AUni> -<AUni ws="qvm-x-akl">listón; liston</AUni> -<AUni ws="qvm-x-ame">listón; liston</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="e6934a73-27f6-4bc8-a08d-4c5a2d3b330c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">especial</AUni> -<AUni ws="qvm-x-acl">especial</AUni> -<AUni ws="qvm-x-akh">especial</AUni> -<AUni ws="qvm-x-akl">especial</AUni> -<AUni ws="qvm-x-ame">especial</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+especial</AUni> -<AUni ws="qvm-x-acl">+especial</AUni> -<AUni ws="qvm-x-akh">+especial</AUni> -<AUni ws="qvm-x-akl">+especial</AUni> -<AUni ws="qvm-x-ame">+especial</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.498" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="13b1520c-d4f0-4328-8b8c-e090132a842f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+especial</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8fde22ee-01be-4f30-b096-98427742ab0c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d05f0f83-ded7-4f84-aa9d-291eb899ed0a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +especial 
\entryTyp root 
\gENG special 
\gSPN especial 
\e +especial 
\c N0 
\mp +FinalC 
\ach especial 
\akh especial 
\acl especial 
\akl especial 
\ame especial</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e6942e7f-88b6-48cf-af33-b92d9908c614" ownerguid="5f1fb292-66d5-4344-a395-a1ba2dff6bc8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">poison</AUni> -<AUni ws="es">veneno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="48c4fc92-5238-44b1-a11c-c8d74575ebcf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="PhPhoneme" guid="e6951d31-60a0-43e9-bebb-7d2ed36c19eb" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="5810fe81-67b7-4d3e-a17e-8e2a0485c138" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">lengthened mid back rounded vowel</Run> -</AStr> -</Description> -<Name> -<AUni ws="qvm-x-ach">ö</AUni> -<AUni ws="qvm-x-acl">ö</AUni> -<AUni ws="qvm-x-akh">ö</AUni> -<AUni ws="qvm-x-akl">ö</AUni> -<AUni ws="qvm-x-ame">oo</AUni> -</Name> -</rt> -<rt class="CmDomainQ" guid="e69610ea-1788-4540-9212-4e771d467985" ownerguid="2f151c35-72e1-4665-bc05-6fc70a3ecff2"> -<ExampleWords> -<AUni ws="en">contort, deface, disfigure, distort, mar, misshape</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to making something ugly?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e6976fe6-dca8-4095-bc0b-07a2abd5a2d7" ownerguid="89944377-8694-4394-bced-153cc22a0e30"> -<ExampleWords> -<AUni ws="en">only child</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the only child of its parents?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="e69d1075-b969-447b-96e0-3f3283003073" ownerguid="862aa851-6b1d-491a-bd03-40e8723e4d33"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -</rt> -<rt class="LexSense" guid="e69d71de-e681-4df5-bba1-1e3b002df013" ownerguid="6c9e1060-2c61-44e1-9e2f-272dcfa04ebf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">envy</AUni> -<AUni ws="es">envidiar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0654c2f3-65f7-45be-a163-dc3d387efe07" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e6a1fd5a-4265-4282-adb2-f470faa5206e" ownerguid="19d54c2f-ae03-4cbc-9b7e-57292f92fbc1"> -<ExampleWords> -<AUni ws="en">pursuer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to someone who is pursuing someone?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="e6a36c58-c1c9-4eb4-9907-c1abc321bde3" ownerguid="d9a499aa-805c-45f0-b43f-2c394ceff053"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ka</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ka</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="22806abf-f462-448a-bb3e-39bbf5d75aea" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="e6a3f9e1-3cdc-44f2-b8c0-2a77fb85026a" ownerguid="c7b0a9cd-3c78-4567-8ac5-aa32e75e1fb3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dumb</AUni> -<AUni ws="es">mudo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a3f5e076-f088-4c9a-a4fa-3a6664237f32" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="e6a43c28-e946-4f01-a76e-62b0c9b2e87f" ownerguid="4493f427-1c13-4246-bd62-08b5f53b6df5"> -<PartOfSpeech> -<objsur guid="85ffb381-0567-4202-8640-53cbaec77e45" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e6a46dc4-558a-4184-b179-ae668e0fd077" ownerguid="056cea8c-3d46-4127-8242-d87318f8ac81"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">serve</AUni> -<AUni ws="es">servir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4efa8c7e-4daa-48e4-adb7-37ad9a48f12c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e6a5ccc3-d144-41a0-90bf-92cc95e79e90" ownerguid="227fb664-a77f-41ed-8ccc-1daafc834d73"> -<Form> -<AUni ws="qvm-x-ach">chiwi</AUni> -<AUni ws="qvm-x-acl">chiwi; chiwi; chiwe</AUni> -<AUni ws="qvm-x-akh">chiwi</AUni> -<AUni ws="qvm-x-akl">chiwi; chiwi; chiwe</AUni> -<AUni ws="qvm-x-ame">chiwi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e6a87116-0f78-4d58-8d94-f4b08864644a" ownerguid="d6ff47e6-435b-47a3-ba95-c26a2619fd55"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">knee-high.pants</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="12983417-f165-43af-bf17-49971e9614f6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e6aa6017-8436-4543-8f58-aaf2a4cce424" ownerguid="b03a6eb8-b916-4c9d-a0e2-15bc77dca511"> -<Form> -<AUni ws="qvm-x-ach">wiya</AUni> -<AUni ws="qvm-x-acl">wiya</AUni> -<AUni ws="qvm-x-akh">wiya</AUni> -<AUni ws="qvm-x-akl">wiya</AUni> -<AUni ws="qvm-x-ame">wiya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e6ac4535-9775-4dab-a41b-5d4837310a15" ownerguid="45993c48-3893-4d9e-96a3-b6b1ad160538"> -<ExampleWords> -<AUni ws="en">poor person, tramp, bum, hobo, beggar, homeless person</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What is a poor person called?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e6ad4d42-6ddc-4d9a-80a8-5c7bd0262160"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fru:ta</AUni> -<AUni ws="qvm-x-acl">fru:ta</AUni> -<AUni ws="qvm-x-akh">fru:ta</AUni> -<AUni ws="qvm-x-akl">fru:ta</AUni> -<AUni ws="qvm-x-ame">fru:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fruta</AUni> -<AUni ws="qvm-x-acl">+fruta</AUni> -<AUni ws="qvm-x-akh">+fruta</AUni> -<AUni ws="qvm-x-akl">+fruta</AUni> -<AUni ws="qvm-x-ame">+fruta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.589" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4e831115-75c5-4a99-8473-117b79275710" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fruta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c2fa4d8a-cf9e-455d-b83a-18479f241b4b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="08cf57b1-2695-4331-8783-25e68516d917" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fruta 
\entryTyp root 
\gENG fruit 
\gSPN fruta 
\e +fruta 
\c N0 
\ach fru:ta 
\akh fru:ta 
\acl fru:ta 
\akl fru:ta 
\ame fru:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="e6adb313-e0e4-49c1-baac-c760571f03a8" ownerguid="b6354c4e-f9c1-4c5c-846d-43b9722006b5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="e6aff480-c777-400d-9388-cb171ec09073" ownerguid="13feb252-8ae3-4111-aa7c-aba67b0de3ed"> -<Form> -<AUni ws="qvm-x-ach">awardienti</AUni> -<AUni ws="qvm-x-acl">awardienti; awardienti; awardiente</AUni> -<AUni ws="qvm-x-akh">awardienti</AUni> -<AUni ws="qvm-x-akl">awardienti; awardienti; awardiente</AUni> -<AUni ws="qvm-x-ame">awardienti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e6b207f8-da86-4cc3-97ba-e8154aa0e819" ownerguid="0d914eb7-cb13-42b1-9ee9-2de995ef3707"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="101b2ea3-9d64-4573-98f7-989cd7e9e180" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="06e8a865-3058-4de2-9f35-0a891b42101f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="e6b21531-b7d0-4e37-b01b-3ca49a285168" ownerguid="b4aa4bbd-8abf-4503-96e4-05c75efd23d5"> -<Abbreviation> -<AUni ws="en">1.1.3.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.932" /> -<DateModified val="2022-9-23 16:55:7.932" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to drought.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Drought</AUni> -</Name> -<Questions> -<objsur guid="92e62563-85f5-42e8-8020-dc1d37c011ab" t="o" /> -<objsur guid="820afc3a-0595-4dc6-9bd3-091f7eb8b55e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="e6b476da-71f1-48bd-a1cb-88b106dec2a5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nanapara; nanapara:</AUni> -<AUni ws="qvm-x-acl">nanapara; nanapara:</AUni> -<AUni ws="qvm-x-akh">nanapara; nanapara:</AUni> -<AUni ws="qvm-x-akl">nanapara; nanapara:</AUni> -<AUni ws="qvm-x-ame">nanapara; nanapara:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*nanapara:</AUni> -<AUni ws="qvm-x-acl">*nanapara:</AUni> -<AUni ws="qvm-x-akh">*nanapara:</AUni> -<AUni ws="qvm-x-akl">*nanapara:</AUni> -<AUni ws="qvm-x-ame">*nanapara:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.537" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2f0698bd-fed6-47e9-b689-2fe12c1b5ab6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*nanapara:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2f02df4e-5f69-4e5d-a001-dcb57c769f0a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2b895c6b-117b-4b60-9a71-1caf7a6dd597" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *nanapara: 
\entryTyp root 
\gENG be.unforgiving 
\gSPN guardar.rincor 
\e *nanapara: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach nanapara foreshortened 
\ach nanapara: 
\akh nanapara foreshortened 
\akh nanapara: 
\acl nanapara foreshortened 
\acl nanapara: 
\akl nanapara foreshortened 
\akl nanapara: 
\ame nanapara foreshortened 
\ame nanapara:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e6b5b87f-17e7-4f7c-82fe-dfe21dd4d09d" ownerguid="db76365c-1a68-4afe-9248-dc19d0f2bbf6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">hacendado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8f0555af-a3a2-4d5a-bf9e-069769615648" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e6b85745-3cb4-41de-9555-22420f808b07" ownerguid="5390cf06-ee70-4098-bffd-b7a6b3446bbd"> -<Form> -<AUni ws="qvm-x-ach">contratista</AUni> -<AUni ws="qvm-x-acl">contratista</AUni> -<AUni ws="qvm-x-akh">contratista</AUni> -<AUni ws="qvm-x-akl">contratista</AUni> -<AUni ws="qvm-x-ame">contratista</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e6bc4b1e-c379-4f5e-b4e2-a51f2d302456" ownerguid="dbd168ad-e64a-44b5-af1a-e9f5f7e57d4c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hand</AUni> -<AUni ws="es">mano</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d9e93536-69a7-4568-8d91-e7c7edb82012" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="e6bc9f48-b268-46cf-820b-47dcc428530c" ownerguid="15aba1a6-ac19-4f00-ab5e-97c44e55b43e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="96cf7c49-a156-42d1-ad97-1afb030384f3" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">more</AUni> -<AUni ws="es">más</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d8ee23d8-9eb3-4dbf-b605-44cf67cf672a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e6bcf776-ce9b-4b9b-a93f-98aa34dd673a" ownerguid="2d0b3058-d8bb-4110-a54a-e507b0d3a0e4"> -<ExampleWords> -<AUni ws="en">circulatory system, blood vessel, aorta, vein, venous, artery, arterial, capillary, jugular, pericardium, pericardial</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the parts of the blood vessels?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e6be8b63-19b2-4957-8d17-caaf37f23a4f" ownerguid="a6329e15-8524-40df-93b7-5832720bb0b8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e6bf2082-e98f-4a98-9da0-12009a0ca93f" ownerguid="654dfe8f-2d53-418e-bb5a-4f080ecc6413"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stink</AUni> -<AUni ws="es">hedor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="29058ca7-0752-4993-9a46-aa6902af7c24" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e6c3cbd8-954d-407a-8884-ee960ae6b58a" ownerguid="f9d020d6-b129-4bb8-9509-3b4a6c27482e"> -<ExampleWords> -<AUni ws="en">make something more interesting, liven up, jazz up, add variety</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to making something more interesting?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e6c4e4dd-2b22-4615-835c-d5c886d1f0cd" ownerguid="b7662b2b-e57c-400b-8ef6-6fb612f5ee9f"> -<ExampleWords> -<AUni ws="en">banana, stalk, flower, finger, hand, bunch, pulp, prune, leaf, leaf stem, stem</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to growing bananas?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e6c8d9e8-b666-47ee-8809-cc9f5e6b20ed" ownerguid="0ac5e5f9-e7fe-4d37-a631-eab1ceb1f8ae"> -<ExampleWords> -<AUni ws="en">snowcap, glacier</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to snow on a mountain?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e6c9da09-3b80-4226-a26e-4364af4b24f0" ownerguid="3c951962-45d2-46ac-b797-1042e9081ca0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">championship</AUni> -<AUni ws="es">campeonato</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fb742c26-5a90-4bf6-add1-f80add8157bb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="e6c9fe4c-199e-4934-b622-739a85b0830d" ownerguid="6045c6eb-efea-4586-95f8-840d32578d66"> -<Abbreviation> -<AUni ws="en">7.5.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.549" /> -<DateModified val="2022-9-23 16:55:8.549" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to organizing things, people, events, and ideas--to think about and decide on the pattern a group of things should be arranged in, and then doing whatever is necessary to arrange them so that they can be used for some purpose. This domain is like the domain 'Arrange' except that 'Arrange' emphasizes physically moving the things, and the domain 'Organize' emphasizes the logical system. 'Organize' does not require that the things be moved, only that the logical pattern is specified.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>62B Organize</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Organize</AUni> -</Name> -<Questions> -<objsur guid="443c9bfa-87ea-4f13-b932-936c55ac306a" t="o" /> -<objsur guid="f397fe86-cc95-4aae-86da-a361aceadf70" t="o" /> -<objsur guid="4f4aa7ea-8799-4a81-9551-b55e7417ab56" t="o" /> -<objsur guid="b414dbf8-6426-403b-8adf-1c1902d389d8" t="o" /> -<objsur guid="898dca8a-8aeb-4327-a7a4-fa653ace2f0f" t="o" /> -<objsur guid="d57b2794-76ef-4537-b7a2-0b70c80c9c64" t="o" /> -<objsur guid="fe84b9fe-6792-428a-bc52-d686a97b7b18" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="583c98ff-1cc8-4b05-9086-974d13a78894" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="e6cb051b-48e9-4064-bc02-f73151dc0b7c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cruz</AUni> -<AUni ws="qvm-x-acl">cruz</AUni> -<AUni ws="qvm-x-akh">cruz</AUni> -<AUni ws="qvm-x-akl">cruz</AUni> -<AUni ws="qvm-x-ame">cruz</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cruz</AUni> -<AUni ws="qvm-x-acl">+cruz</AUni> -<AUni ws="qvm-x-akh">+cruz</AUni> -<AUni ws="qvm-x-akl">+cruz</AUni> -<AUni ws="qvm-x-ame">+cruz</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.223" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a12018a8-694b-440b-a22e-da3e58a4586a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cruz</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6b4664cd-d1b7-429e-9f31-0f07cc264168" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3ba50b69-1e06-4f92-b29c-845aeccfc0db" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cruz 
\entryTyp root 
\gENG cross 
\gSPN cruz 
\e +cruz 
\c N0 
\mp +FinalC 
\ach cruz 
\akh cruz 
\acl cruz 
\akl cruz 
\ame cruz</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="e6cb397d-7141-41d6-9806-dcf744236415" ownerguid="7ea9d3b4-c10a-4231-b569-2e7aa53951c6"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e6cce7f5-6441-4d6e-8d80-af1b477342ac"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">case:ru</AUni> -<AUni ws="qvm-x-acl">case:ru; case:ru; case:ro</AUni> -<AUni ws="qvm-x-akh">case:ru</AUni> -<AUni ws="qvm-x-akl">case:ru; case:ru; case:ro</AUni> -<AUni ws="qvm-x-ame">case:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+casero</AUni> -<AUni ws="qvm-x-acl">+casero</AUni> -<AUni ws="qvm-x-akh">+casero</AUni> -<AUni ws="qvm-x-akl">+casero</AUni> -<AUni ws="qvm-x-ame">+casero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.720" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3e9bfdc6-507f-4ef1-b30f-07d4f631417f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+casero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9a413a24-c54a-46a9-ada0-50f15ddaad42" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="18af19b2-868a-45e4-b761-e0414d8debc1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +casero 
\entryTyp root 
\gENG 
\gSPN 
\e +casero 
\c N0 
\ach case:ru 
\akh case:ru 
\acl case:ru / _# 
\acl case:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl case:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl case:ru / _# 
\akl case:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl case:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame case:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="e6cef013-8730-443d-8a5b-7c639d2e3e47" ownerguid="611b2472-693c-4554-8fcd-63e5a5083932"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="e6cf2c28-7630-41d7-835d-bd171ab67378" ownerguid="771e3882-f672-4e67-8580-edd82d7e5090"> -<Abbreviation> -<AUni ws="en">4.3.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.233" /> -<DateModified val="2022-9-23 16:55:8.233" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing a person who acts in an altruistic, selfless manner--to act out of concern for the welfare of others without concern for your own welfare.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Altruistic, selfless</AUni> -</Name> -<Questions> -<objsur guid="2e623e64-ea95-46ea-83b8-77e435233824" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="5dcf3ce8-aa00-4478-b00e-691549fa29e8" t="o" /> -<objsur guid="a7e4f8a8-3fe3-4c86-85df-059f8983df26" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="e6cfeb82-0239-4376-a74e-a8b8dd0cd5a0" ownerguid="474eb21f-72f2-45a5-91eb-d95776dfaf73"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuna</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuna</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuna</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuna</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuna</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f236a19a-86ce-4599-91f5-fb178488e065" t="r" /> -</Morph> -<Msa> -<objsur guid="0851fe14-f99e-4e06-befc-3a76b044ea37" t="r" /> -</Msa> -</rt> -<rt class="WfiWordform" guid="e6d0e3bc-3167-4b29-a29d-e2b006cbbe6c"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">verb</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="e6d1dfe9-c5e6-4195-b607-23294dd5ab27" ownerguid="6bd023f6-730e-44c2-ae8f-78df967e2e18"> -<ExampleWords> -<AUni ws="en">drag</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to pulling something along the ground?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e6d367c1-2e72-41e6-8890-4f721c58c136" ownerguid="f14c3188-4beb-4d1d-9299-6f5c3dfd9585"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e6d39486-e4e8-4acc-9d09-5f44f05f7d83" ownerguid="79f3b53a-eb56-4188-87f8-48317f76e7ce"> -<ExampleWords> -<AUni ws="en">fast, deny (oneself)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to not eating for a period of time?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e6d4febe-6297-47d9-9784-116560e58fbc" ownerguid="d4b2c1de-1c10-4bcc-95f7-2838748fc7f0"> -<Form> -<AUni ws="qvm-x-ach">águila; äguila</AUni> -<AUni ws="qvm-x-acl">águila; äguila</AUni> -<AUni ws="qvm-x-akh">águila; äguila</AUni> -<AUni ws="qvm-x-akl">águila; äguila</AUni> -<AUni ws="qvm-x-ame">águila; äguila</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e6d71ee8-5dbe-4ef2-819b-56296812f94d" ownerguid="edaf912c-12f2-463d-b1e3-9a2702f05927"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="ab2c40b6-fe9d-47b8-bd35-f88c8365892c" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">broth</AUni> -<AUni ws="es">caldo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="59394a5b-2054-4c67-baec-282175ee1530" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e6d92ed9-8276-4ed3-83b3-3a5b0832a826"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">atentu; atento</AUni> -<AUni ws="qvm-x-acl">atentu; atento; atentu</AUni> -<AUni ws="qvm-x-akh">atentu; atento</AUni> -<AUni ws="qvm-x-akl">atentu; atento; atentu</AUni> -<AUni ws="qvm-x-ame">atentu; atento</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+atento</AUni> -<AUni ws="qvm-x-acl">+atento</AUni> -<AUni ws="qvm-x-akh">+atento</AUni> -<AUni ws="qvm-x-akl">+atento</AUni> -<AUni ws="qvm-x-ame">+atento</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.860" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d675d0d4-f65b-4696-8bb0-3d1865646a0d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+atento</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ef53b202-adf9-480a-9d95-872e8a8d183e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="edbc9a1b-e37d-46ca-b519-81f8f65431e9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +atento 
\entryTyp root 
\gENG attentive 
\gSPN atento 
\e +atento 
\c R0 
\ach atentu / ~_# 
\ach atento / _# 
\akh atentu / ~_# 
\akh atento / _# 
\acl atentu / _# 
\acl atento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl atentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl atentu / _# 
\akl atento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl atentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame atentu / ~_# 
\ame atento / _# 
\i NEH 8.3 Leycuna escribiraycashgan rölluta liyipaptinmi lapan runacuna atento mayapäcorgan.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="e6da67fe-1112-4161-a37e-7004e5632e5e" ownerguid="eee88182-8ede-4ded-b091-1ae920852d13"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="7adf488a-3369-4982-a853-1cb252de755c" t="o" /> -<objsur guid="0cf8f401-fcbe-4cb7-935e-d18b4ffb2b67" t="o" /> -<objsur guid="14a6614d-e9a4-42ea-912a-a1e83319927f" t="o" /> -<objsur guid="699d9bc8-4407-49b8-95b1-d63d1dfbf403" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="e6dcd6c6-0e04-4367-aa20-cb9a023ceeba" ownerguid="ad61acd7-a41f-450c-89ff-6a1a758546d3"> -<Form> -<AUni ws="qvm-x-ach">lasa; lasä</AUni> -<AUni ws="qvm-x-acl">lasa; lasä</AUni> -<AUni ws="qvm-x-akh">lasa; lasä</AUni> -<AUni ws="qvm-x-akl">lasa; lasä</AUni> -<AUni ws="qvm-x-ame">lasa; lasä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="e6df1eee-926d-4e16-890a-be63f1161ca0" ownerguid="e81031af-2862-4744-b73d-21ace4e11832"> -<PartOfSpeech> -<objsur guid="a3274cfd-225f-45fd-8851-a7b1a1e1037a" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="e6e2b106-ad23-48cf-a638-86ac303b6f46" ownerguid="687a2807-8d9f-4fca-8ef0-4621e25827c8"> -<Form> -<AUni ws="qvm-x-ach">jita</AUni> -<AUni ws="qvm-x-acl">jita</AUni> -<AUni ws="qvm-x-akh">jita</AUni> -<AUni ws="qvm-x-akl">jita</AUni> -<AUni ws="qvm-x-ame">hita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="e6e3adc7-b678-4f54-933d-2839455c2ff6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chiqui</AUni> -<AUni ws="qvm-x-acl">chiqui; chique</AUni> -<AUni ws="qvm-x-akh">chiki</AUni> -<AUni ws="qvm-x-akl">chiki; chike</AUni> -<AUni ws="qvm-x-ame">chiki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*triki.v</AUni> -<AUni ws="qvm-x-acl">*triki.v</AUni> -<AUni ws="qvm-x-akh">*triki.v</AUni> -<AUni ws="qvm-x-akl">*triki.v</AUni> -<AUni ws="qvm-x-ame">*triki.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.98" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="24a29d62-81ba-4794-8cd9-ee0494f73629" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*triki.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="266aa733-c29e-4308-8e68-b72d34b811d3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="99755823-e723-4329-b6c4-8a4dfc9c0381" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *triki.v 
\entryTyp root 
\gENG hate 
\gSPN odiar 
\e *triki.v 
\c V2 
\mp +FinalI 
\ach chiqui 
\akh chiki 
\acl chiqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl chique +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chiki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chike +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chiki</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="e6e50926-4e2d-4b5e-bf33-fed1a832f5da" ownerguid="2f11a76b-9af1-4544-b0f0-f5749959c73c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e6e548c7-8e3f-46b1-846c-e75c9314e75b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">atsqui</AUni> -<AUni ws="qvm-x-acl">atsqui; atsque</AUni> -<AUni ws="qvm-x-akh">atski</AUni> -<AUni ws="qvm-x-akl">atski; atske</AUni> -<AUni ws="qvm-x-ame">atski</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*achki.v</AUni> -<AUni ws="qvm-x-acl">*achki.v</AUni> -<AUni ws="qvm-x-akh">*achki.v</AUni> -<AUni ws="qvm-x-akl">*achki.v</AUni> -<AUni ws="qvm-x-ame">*achki.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.639" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6131b593-0afa-4ecc-8199-959af7e12533" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*achki.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aceb5e66-75a7-4c7d-82cd-57425ed7705a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b505e4c1-0c1a-4303-95a8-d8af6e413491" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *achki.v 
\entryTyp root 
\gENG to.light 
\gSPN alumbrar 
\e *achki.v 
\c V2 
\mp +FinalI 
\ach atsqui 
\akh atski 
\acl atsqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl atsque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl atski +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl atske +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame atski 
\mcc *achki.v / ~_ 1O 3</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e6e71133-2294-4c4c-9511-7ef4cce5a7b2" ownerguid="77c8ee61-3a38-4a42-9514-7aa13cfb324b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">penis</AUni> -<AUni ws="es">pene</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="457efa3a-da3c-48bf-bcc3-8d86de546a07" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="e6e95295-d2a8-4ab3-a84d-dbf2a967d257" ownerguid="6a0efdb4-785f-45d1-94d1-1da42723b28f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">novelty</AUni> -<AUni ws="es">novedad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fbcef679-9021-4530-9797-1c6d2d92d0cd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e6e956f1-7d3c-4e11-9ff5-f5703a052e88"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">salu:dus</AUni> -<AUni ws="qvm-x-acl">salu:dus</AUni> -<AUni ws="qvm-x-akh">salu:dus</AUni> -<AUni ws="qvm-x-akl">salu:dus</AUni> -<AUni ws="qvm-x-ame">salu:dus</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+saludos</AUni> -<AUni ws="qvm-x-acl">+saludos</AUni> -<AUni ws="qvm-x-akh">+saludos</AUni> -<AUni ws="qvm-x-akl">+saludos</AUni> -<AUni ws="qvm-x-ame">+saludos</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.437" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5424edcb-0e8d-4451-bfb0-2856e4929098" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+saludos</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ed63513d-e815-439d-be53-b0798ef2f888" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cf3becc9-da30-4937-9364-80ccd4edc0fb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +saludos 
\entryTyp root 
\gENG greeting 
\gSPN saludos 
\e +saludos 
\c N0 
\mp +FinalC 
\ach salu:dus 
\akh salu:dus 
\acl salu:dus 
\akl salu:dus 
\ame salu:dus</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="e6ea429d-8e0a-49b1-b7f6-d35e342c53c2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">inticsharcu; inticsharca</AUni> -<AUni ws="qvm-x-acl">inticsharcu; inticsharco; inticsharca</AUni> -<AUni ws="qvm-x-akh">intiksharku; intiksharka</AUni> -<AUni ws="qvm-x-akl">intiksharku; intiksharko; intiksharka</AUni> -<AUni ws="qvm-x-ame">intiksharku; intiksharka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*intiksharkU</AUni> -<AUni ws="qvm-x-acl">*intiksharkU</AUni> -<AUni ws="qvm-x-akh">*intiksharkU</AUni> -<AUni ws="qvm-x-akl">*intiksharkU</AUni> -<AUni ws="qvm-x-ame">*intiksharkU</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.832" /> -<DateModified val="2022-10-10 21:18:47.216" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="428fc5ea-71a4-4a6c-aa5b-d06ef9ff6346" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*intiksharkU</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="de404a9b-347a-40c6-a997-19844af81c43" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0de617df-d9f5-4da8-af67-c5b6232de49e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *intiksharkU 
\entryTyp root 
\gENG 
\gSPN 
\e *intiksharkU 
\c V1 
\mp PMlowered 
\ach inticsharcu 
\ach inticsharca morphlowered 
\akh intiksharku 
\akh intiksharka morphlowered 
\acl inticsharcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl inticsharco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl inticsharca morphlowered 
\akl intiksharku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl intiksharko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl intiksharka morphlowered 
\ame intiksharku 
\ame intiksharka morphlowered</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e6eabb72-750c-4925-baa5-dfdfb5ec1bd9" ownerguid="8affe94d-a396-4404-a0d7-c65046e617e6"> -<ExampleWords> -<AUni ws="en">absentee, truant, missing person, no-show</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who is absent?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e6ebcbfa-9055-4f69-9a6f-d49647b1243a" ownerguid="efef45bd-26be-46f8-b85b-424be55bcdac"> -<ExampleWords> -<AUni ws="en">new, newcomer, new arrival, be new to, fresh, green, stranger</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe someone who has recently arrived in a place or just started a new job?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="e6ec43ef-0100-4cf4-a047-c575ee8613b4" ownerguid="5ea9301a-9906-4e81-97cf-48ee95a54c63"> -<Abbreviation> -<AUni ws="en">3.3.3.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.121" /> -<DateModified val="2022-9-23 16:55:8.121" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to controlling someone--to force someone to do what you want them to do by ordering them to do it, or by doing something so that they have no choice. Also use this domain for words related to controlling something, for instance to control a machine, so that it does what you want it to do.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Control</AUni> -</Name> -<Questions> -<objsur guid="44a3e749-4bd9-49c3-ace5-44b274662125" t="o" /> -<objsur guid="81410dbf-9ab2-4a32-b455-2edf4bc6f927" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoInflAffMsa" guid="e6ef0b6b-7228-4d8a-807d-1c0bb88cc1e7" ownerguid="6a0d81eb-93c1-406d-8b29-04f710ef5eed"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="fda4c591-1349-4f9e-ab87-905ae2aa25e1" t="r" /> -</Slots> -</rt> -<rt class="CmDomainQ" guid="e6f27d78-2179-4a6d-ada1-f179fb8c979d" ownerguid="3c9fe647-2647-4f43-8bac-7facc054f7ff"> -<ExampleWords> -<AUni ws="en">shake, shiver, wiggle, wriggle, squirm, writhe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to shaking oneself?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e6f2dce9-e515-45aa-aa4a-e6647828efa8" ownerguid="4443080b-3ed8-4acc-bc77-35377eb52294"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/N0 V2/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">PRTSPM</AUni> -<AUni ws="es">PRTESM</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f4b810ee-56db-4358-ad11-92d7676bd9e4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="e6f45b72-7b57-43fa-a30e-7f7195fe88a7" ownerguid="aa66edd0-122b-489e-80ff-b6bca2de96ce"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e6f4817a-0ef5-4fff-8a5a-51766207f0df" ownerguid="de6b15d3-6409-4998-b03d-903133f4ad70"> -<ExampleWords> -<AUni ws="en">beautiful singing voice, can't carry a tune in a bucket, sing on/off key</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe how well a person sings?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="e6f768cb-f517-43e7-9887-e5c7f9cb3e45" ownerguid="6cdb7ecf-5ac5-46b8-a7f7-45815f6b8e64"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -<Sense> -<objsur guid="1b926284-5562-4cf3-8ad2-65536a715093" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="e6f7c1d4-f57b-461b-a3bb-9a4c2d3022ba" ownerguid="2855cda6-a031-46aa-bf3f-718d94374d46"> -<ExampleWords> -<AUni ws="en">protest (adj)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something done in protest?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e6fa4e25-b865-485d-82ce-bf025c41bd4d" ownerguid="5b7de51a-a16a-459e-8d2f-876f761ee7e0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">roof.of.mouth</AUni> -<AUni ws="es">paladar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4d4fbcca-5265-46f4-bd3c-514a35d95aee" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e6fa6045-881e-4f52-85c9-b9d7540eeffb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shpa</AUni> -<AUni ws="qvm-x-acl">shpa</AUni> -<AUni ws="qvm-x-akh">shpa</AUni> -<AUni ws="qvm-x-akl">shpa</AUni> -<AUni ws="qvm-x-ame">shpa</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.477" /> -<DateModified val="2022-10-16 15:16:21.397" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1cec07b9-c736-451d-aeb8-e27d82256aa0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">ADVSS2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="210b55d0-3031-4731-891b-77f3eaa2a10a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f182d795-6420-4969-8b07-cba3d7601ed4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx ADVSS2 
\entryTyp suffix 
\gENG ADVSS2 
\gSPN ASI2 
\e ADVSS2 
\c V1/R1 
\o 80 160 
\mp -PMonophthongized 
\ach shpa 
\akh shpa 
\acl shpa 
\akl shpa 
\ame shpa 
\mp +foreshortens</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e6fa8e06-996e-4b6a-b444-6bf711273679" ownerguid="d1687857-0f1d-4098-affb-b283a6677b6b"> -<ExampleWords> -<AUni ws="en">mostly, mainly, largely, predominantly, predominate, be in the majority, a preponderance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that most of a group is of one kind.</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e6fc6233-14d0-45b0-ab9b-2b93fd4903e5" ownerguid="111a4d91-df11-4523-89f2-822b92fd73b7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pus</AUni> -<AUni ws="es">pus</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2c7433dd-ff3f-45cd-888b-2b1a71d99024" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e6fce2dd-1848-483c-8c0b-12535167fc3f" ownerguid="2b2bedd5-3f9c-4c18-a256-aa65ee19f15c"> -<ExampleWords> -<AUni ws="en">compatible</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe people that are compatible?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e6ff7084-b532-472e-a5b1-b2f9a8712b05"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tipla</AUni> -<AUni ws="qvm-x-acl">tipla</AUni> -<AUni ws="qvm-x-akh">tipla</AUni> -<AUni ws="qvm-x-akl">tipla</AUni> -<AUni ws="qvm-x-ame">tipla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tiplla</AUni> -<AUni ws="qvm-x-acl">*tiplla</AUni> -<AUni ws="qvm-x-akh">*tiplla</AUni> -<AUni ws="qvm-x-akl">*tiplla</AUni> -<AUni ws="qvm-x-ame">*tiplla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.916" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="22477931-f3e4-4b35-88cd-1b284d6d22c8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tiplla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="904bc3f3-39f7-4bb2-b29c-04a273876c4f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="493fa483-a3fe-4a00-bb4e-0b8b7e577447" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tiplla 
\entryTyp root 
\gENG pick 
\gSPN coger 
\e *tiplla 
\c V2 
\ach tipla 
\akh tipla 
\acl tipla 
\akl tipla 
\ame tipla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="e704c2e1-c9af-456e-aa2a-12b51a5d4814"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gueri</AUni> -<AUni ws="qvm-x-acl">gueri; gueri; guere</AUni> -<AUni ws="qvm-x-akh">qeri</AUni> -<AUni ws="qvm-x-akl">qeri; qeri; qere</AUni> -<AUni ws="qvm-x-ame">qiri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qiri</AUni> -<AUni ws="qvm-x-acl">*qiri</AUni> -<AUni ws="qvm-x-akh">*qiri</AUni> -<AUni ws="qvm-x-akl">*qiri</AUni> -<AUni ws="qvm-x-ame">*qiri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.202" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4eaab87f-7292-479f-b4c9-f00047f086fd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qiri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1ff9b53b-68ca-40d1-8cf0-f7fab9e91cb4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a3be9ea1-c49a-4983-b0c4-80d8dc879aec" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qiri 
\entryTyp root 
\gENG 
\gSPN enferm.de.piel 
\e *qiri 
\c N0 
\mp +FinalI 
\ach gueri 
\akh qeri 
\acl gueri / _# 
\acl gueri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl guere +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qeri / _# 
\akl qeri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qere +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qiri</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="e7069ec3-3b82-4ba9-9507-ceafb1720d9b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">formón; formon</AUni> -<AUni ws="qvm-x-acl">formón; formon</AUni> -<AUni ws="qvm-x-akh">formón; formon</AUni> -<AUni ws="qvm-x-akl">formón; formon</AUni> -<AUni ws="qvm-x-ame">formón; formon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+formón</AUni> -<AUni ws="qvm-x-acl">+formón</AUni> -<AUni ws="qvm-x-akh">+formón</AUni> -<AUni ws="qvm-x-akl">+formón</AUni> -<AUni ws="qvm-x-ame">+formón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.578" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a6f52f7b-e431-4a6e-b794-c45ecd708f4f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+formón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="afc7dc97-419a-48b2-8398-4144a1f33493" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a20650ed-e702-4bab-a1a7-78531d909a45" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +formón 
\entryTyp root 
\gENG 
\gSPN 
\e +formón 
\c N0 
\mp +FinalC 
\ach formón / _# 
\ach formon / ~_# 
\akh formón / _# 
\akh formon / ~_# 
\acl formón / _# 
\acl formon / ~_# 
\akl formón / _# 
\akl formon / ~_# 
\ame formón / _# 
\ame formon / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="e70966e8-1b07-4370-bf66-3d32468305c0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">la:tigu</AUni> -<AUni ws="qvm-x-acl">la:tigu; la:tigo</AUni> -<AUni ws="qvm-x-akh">la:tigu</AUni> -<AUni ws="qvm-x-akl">la:tigu; la:tigo</AUni> -<AUni ws="qvm-x-ame">la:tigu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+dar.látigo</AUni> -<AUni ws="qvm-x-acl">+dar.látigo</AUni> -<AUni ws="qvm-x-akh">+dar.látigo</AUni> -<AUni ws="qvm-x-akl">+dar.látigo</AUni> -<AUni ws="qvm-x-ame">+dar.látigo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.366" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d576bd3a-a7a4-4652-b599-d9eb601fd7c2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+dar.látigo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="87bfbe47-2a25-4617-a26b-95682d9a7288" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ed44ce21-7322-46d2-97dc-2d698b496681" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +dar.látigo 
\entryTyp root 
\gENG whip 
\gSPN car.látigo 
\e +dar.látigo 
\c V1 
\mp +assimilated 
\ach la:tigu 
\akh la:tigu 
\acl la:tigu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl la:tigo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl la:tigu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl la:tigo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame la:tigu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e709dab6-0787-4e46-b077-de61b0d3af91" ownerguid="3be7e3fe-89d4-471a-92bd-8c70fcb146bb"> -<ExampleWords> -<AUni ws="en">go deaf, become deaf, lose your hearing, deafen</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to becoming deaf?</AUni> -</Question> -</rt> -<rt class="StTxtPara" guid="e70a8a4d-d5eb-486b-86c3-41d274a9dc56" ownerguid="2d6ba9d8-83cd-4b85-a381-fe3c9f187365"> -<Contents> -<Str> -<Run ws="qvm-x-akh">rikan</Run> -<Run ws="en"> \tr < V2 *rika > 3</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="c25e9570-a848-42d0-b8ef-035958e62529" t="o" /> -</Segments> -</rt> -<rt class="CmDomainQ" guid="e70e1641-9ddb-4339-99a9-0f3a878697cc" ownerguid="2b2bedd5-3f9c-4c18-a256-aa65ee19f15c"> -<ExampleWords> -<AUni ws="en">accord, agree, clash, cohere, complement, comport, dovetail, go together, go with, harmonize, jibe, rhyme, square</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to things being compatible?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e710b1eb-41f4-47a8-b78e-2512ec2e0263" ownerguid="442bfc0c-557f-4857-8f9b-2f3321c9fd06"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spindle</AUni> -<AUni ws="es">huso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5433cac9-0eaf-4789-863b-fda377b7d0b9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="e7119442-3063-422a-a03e-d02e570ccd0f" ownerguid="24398eec-edd1-449a-ad36-d609be24a79e"> -<Abbreviation> -<AUni ws="en">7.4.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.538" /> -<DateModified val="2022-9-23 16:55:8.538" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to having something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>57E Need, Lack</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Not have</AUni> -</Name> -<Questions> -<objsur guid="8db5e77f-5e47-4974-912c-842817acf29a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="e71260c6-42fa-4f36-9d09-763963779551" ownerguid="ae6f73ab-432d-42e8-aa1a-c848652a13f0"> -<ExampleWords> -<AUni ws="en">female, feminine, women's</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something to do with women?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e7141fd4-5124-4ea4-a88f-ffc702ac4937" ownerguid="879e66bc-af29-4fe4-86e0-0047973a57d6"> -<ExampleWords> -<AUni ws="en">stagger, weave back and forth, reel, lurch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to staggering?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e714a01c-1970-4da0-aee9-ce9661f9cf39" ownerguid="119fefff-529d-43be-8a41-6f011df057a1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="eec7eeb9-8922-43fc-81da-46d32095e6c2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="e71b6efb-183c-4225-97aa-9a21b21e3744" ownerguid="394e2c36-b678-4dd3-863d-46ec784324de"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1 V2/V2</Run> -</AStr> -</Custom> -<Definition> -<AStr ws="en"> -<Run ws="en">passive</Run> -</AStr> -<AStr ws="es"> -<Run ws="es">pasivo</Run> -</AStr> -</Definition> -<Gloss> -<AUni ws="en">PASS</AUni> -<AUni ws="es">PSV</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="434f36b9-aa05-46d6-be7e-89240d9e2c4d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e724e4ad-602d-41a0-9d7d-5a18975bdf49" ownerguid="ba2cc424-08aa-49b5-9fac-9d0ee5df9a2e"> -<Form> -<AUni ws="qvm-x-ach">seguïdu</AUni> -<AUni ws="qvm-x-acl">seguïdu; seguïdu; seguïdo</AUni> -<AUni ws="qvm-x-akh">seguïdu</AUni> -<AUni ws="qvm-x-akl">seguïdu; seguïdu; seguïdo</AUni> -<AUni ws="qvm-x-ame">seguïdu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="e725584e-6526-43cc-b6b7-24fbfb1bf157" ownerguid="7337c37d-13e2-40b0-a5d2-b31be4b66423"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e72a5e86-c5c6-4541-b355-e1b9375c357c" ownerguid="a8b3fa0c-077e-4c0d-b4cc-36dcfbdcb4d4"> -<ExampleWords> -<AUni ws="en">change color, lose its color, blush, turn pale, pale, blanch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used of something changing color?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e72bafba-a297-438d-be8e-a4b9cd090a7e" ownerguid="49aa89f2-2022-4213-845e-dbbb4b53476c"> -<ExampleWords> -<AUni ws="en">last (adj), final, closing, concluding</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that happens last?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e72c03a1-6675-440c-aa29-43abf870e520" ownerguid="b8df8589-d03c-4e6d-bbeb-4f24fbf6a1dc"> -<ExampleWords> -<AUni ws="en">sheer, drop (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a surface that is vertical?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e72e3064-2196-43b0-a3fa-6a4ff17c5007" ownerguid="dc177f3c-d0fd-4232-adf1-a77b339cdbb2"> -<ExampleWords> -<AUni ws="en">theater, cinema, stadium, amphitheater, arena, ballpark, bullring, coliseum, racetrack, hippodrome</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What kinds of buildings are used for watching games and shows?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e72edce6-6d03-454f-a2b0-fe5aaa632063"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">dra:ma</AUni> -<AUni ws="qvm-x-acl">dra:ma</AUni> -<AUni ws="qvm-x-akh">dra:ma</AUni> -<AUni ws="qvm-x-akl">dra:ma</AUni> -<AUni ws="qvm-x-ame">dra:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+drama</AUni> -<AUni ws="qvm-x-acl">+drama</AUni> -<AUni ws="qvm-x-akh">+drama</AUni> -<AUni ws="qvm-x-akl">+drama</AUni> -<AUni ws="qvm-x-ame">+drama</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.437" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eb006752-37a5-41c5-8abe-6f98ee11a3c3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+drama</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7c355919-725a-404c-9083-1dddbf25bd98" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7d080d6d-c2c1-492c-91cf-6164f776a39d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +drama 
\entryTyp root 
\gENG skit 
\gSPN drama 
\e +drama 
\c N0 
\ach dra:ma 
\akh dra:ma 
\acl dra:ma 
\akl dra:ma 
\ame dra:ma</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="e7306af4-785d-4f5e-9239-d1df2bf73051" ownerguid="3159b288-5a51-4a70-814b-2e866f61e4a8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="e7320579-d56e-44ee-a033-49dad4688c85" ownerguid="196f81d0-6a1a-4cc0-936a-367423ff485c"> -<ExampleWords> -<AUni ws="en">escape</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to escaping from a trap?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e734f69b-55e2-41f0-bf79-37eb1bebe857" ownerguid="dd8e05ab-db1d-4bda-8764-099c15889a64"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="cf9950e3-899b-4e55-bf26-4d51ec8ddbb6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e7397bb0-5fdc-4c02-b27c-3fd576eee7e5" ownerguid="b6844f38-bbf3-40cb-8a4c-118cc4d502b8"> -<Form> -<AUni ws="qvm-x-ach">quevä</AUni> -<AUni ws="qvm-x-acl">quevä</AUni> -<AUni ws="qvm-x-akh">quevä</AUni> -<AUni ws="qvm-x-akl">quevä</AUni> -<AUni ws="qvm-x-ame">quevä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e739e85b-831f-4506-9dcb-a46709f51b43" ownerguid="ba4f9b46-0704-4a5f-a6fe-0e30f88b3b8d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">afterbirth</AUni> -<AUni ws="es">pares</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ad9ba918-a713-499c-99d2-5a9f603eb978" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e74788a9-dbe1-4c9e-8f2e-edf04571a3f3" ownerguid="6e28dcd4-683f-4705-813f-2e52513c6aab"> -<Form> -<AUni ws="qvm-x-ach">cushma</AUni> -<AUni ws="qvm-x-acl">cushma</AUni> -<AUni ws="qvm-x-akh">kushma</AUni> -<AUni ws="qvm-x-akl">kushma</AUni> -<AUni ws="qvm-x-ame">kushma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="e7491cfc-e074-49fd-b438-72d5379ac362" ownerguid="b2ba130f-bc3c-4d19-b108-08ff1bc8e9ac"> -<Form> -<AUni ws="qvm-x-ach">lupu</AUni> -<AUni ws="qvm-x-acl">lupu; lupo</AUni> -<AUni ws="qvm-x-akh">lupu</AUni> -<AUni ws="qvm-x-akl">lupu; lupo</AUni> -<AUni ws="qvm-x-ame">lupu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="e7491e9b-bbe5-4825-b887-47552bbb7642" ownerguid="23389cf4-61da-4fd6-b578-a02cad68bc89"> -<Form> -<AUni ws="qvm-x-ach">jerga</AUni> -<AUni ws="qvm-x-acl">jerga</AUni> -<AUni ws="qvm-x-akh">jerga</AUni> -<AUni ws="qvm-x-akl">jerga</AUni> -<AUni ws="qvm-x-ame">jerga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e7499a97-3ad8-49cb-97ac-214ab5c703c4" ownerguid="00364f0c-9a3a-4910-a82e-1ffbc4d4137f"> -<ExampleWords> -<AUni ws="en">get excited, excitement rose, go mad, go wild, go crazy, reach a climax, reach a fever pitch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to becoming more excited?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="e74c8f82-47ce-478b-8ac4-f60f84dd18d2" ownerguid="2269aeba-112c-4eab-a1e5-7d4f6aaf6c8d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -<Sense> -<objsur guid="ed102c60-ed6d-498f-b2c4-a195d53a84e2" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="e74d0d95-ce52-46f8-9f6d-67c48695bd1f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">barriu; barrio</AUni> -<AUni ws="qvm-x-acl">barriu; barriu; barrio</AUni> -<AUni ws="qvm-x-akh">barriu; barrio</AUni> -<AUni ws="qvm-x-akl">barriu; barriu; barrio</AUni> -<AUni ws="qvm-x-ame">barriu; barrio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+barrio</AUni> -<AUni ws="qvm-x-acl">+barrio</AUni> -<AUni ws="qvm-x-akh">+barrio</AUni> -<AUni ws="qvm-x-akl">+barrio</AUni> -<AUni ws="qvm-x-ame">+barrio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.961" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5b7bc810-8ce2-4cf3-b304-d5b77c7b6b84" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+barrio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="65f54332-10cf-4ec1-aa4d-dce6fc89e63a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3e46bb5e-d14e-4712-a3df-84c347f726bf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +barrio 
\entryTyp root 
\gENG 
\gSPN 
\e +barrio 
\c N0 
\ach barriu / ~_# 
\ach barrio / _# 
\akh barriu / ~_# 
\akh barrio / _# 
\acl barriu / ~_# 
\acl barriu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl barrio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl barriu / ~_# 
\akl barriu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl barrio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame barriu / ~_# 
\ame barrio / _# 
\i 2KI 22.14 Huldaga runanwan targan Jerusalén marca cuchun mushog barriuchömi.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="e7503bee-c801-4288-a9a2-244831f55274" ownerguid="b98108d2-5eb7-48ee-bb64-f64d547ef436"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 9.15 Rey Salomón faynatsiypami arutsergan \nd Tayta Diospa\nd* templunta, quiquinpa palaciunta, patac cananpag Milo pergata y Jerusalén marcapa murällanta.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="e7524a77-4df5-4df4-8765-09656e482895" ownerguid="ded0e58d-8ad7-4909-b0f1-b9ab9c10bb0d"> -<ExampleWords> -<AUni ws="en">the next king, heir apparent, successor to the throne, Prince of Wales</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What is the person called who has been designated as the next king?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e753b1dc-ead6-42fd-acc3-fce90dabae97" ownerguid="3ae3a1be-cfb5-4953-b65b-68f0c51b1d40"> -<ExampleWords> -<AUni ws="en">carve, sculpt, carve a sculpture, mold a figurine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to carving something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e753fc6d-65dc-4d03-b9de-10f51de496de" ownerguid="3ba7b5a4-38b1-4107-a05e-b7d62e560880"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">reccomendation</AUni> -<AUni ws="es">recomendación</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="679249a1-9dd9-44dd-b74c-52e401eba1fa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e7559027-d38e-4d56-b294-12126dad1d18" ownerguid="e86364ac-6fa1-4aad-a6c1-068d56b6a1f1"> -<ExampleWords> -<AUni ws="en">brittle, weak, weakness, breakable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is easily broken?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e755f95d-ab3b-4749-ab4a-3a84ffcdd708" ownerguid="592b6dec-d349-4752-b154-8a6af343cb93"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="e75f5079-d24a-4be2-a3ef-7d90c733469e" ownerguid="7f96b8bb-5ff4-4be1-ae43-b3c7e32b9a71"> -<Form> -<AUni ws="qvm-x-ach">tishna</AUni> -<AUni ws="qvm-x-acl">tishna</AUni> -<AUni ws="qvm-x-akh">tishna</AUni> -<AUni ws="qvm-x-akl">tishna</AUni> -<AUni ws="qvm-x-ame">tishna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="e7600c3a-e9e5-4232-a6b8-ccb36e03c0c7" ownerguid="73dfe06b-5660-4e22-8064-6a0dead8e3de"> -<Form> -<AUni ws="qvm-x-ach">primëru</AUni> -<AUni ws="qvm-x-acl">primëru; primëru; primëro</AUni> -<AUni ws="qvm-x-akh">primëru</AUni> -<AUni ws="qvm-x-akl">primëru; primëru; primëro</AUni> -<AUni ws="qvm-x-ame">primëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e7607961-9e75-4817-a595-42bf52a620e5" ownerguid="1ec85151-eba0-48f4-b56d-4f8040602a4b"> -<ExampleWords> -<AUni ws="en">leave, bequeath, will (v), hand down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to giving something to someone in your will?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="e76227e8-4a04-4fbd-a16e-5baa3d9e97a9" ownerguid="944cf5af-469e-4b03-878f-a05d34b0d9f6"> -<Abbreviation> -<AUni ws="en">1.6.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for actions of animals.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Animal actions</AUni> -</Name> -<Questions> -<objsur guid="e821100e-6bf0-4e60-988f-a662c5a2fee9" t="o" /> -<objsur guid="6a9620ee-a56c-4d47-9156-ce306dfeb511" t="o" /> -<objsur guid="5f54efe9-0937-4980-9531-ebd128bea393" t="o" /> -<objsur guid="2d5104b7-0ca0-4026-8888-5e5d8a325390" t="o" /> -<objsur guid="b1cc65e7-e769-4f0d-93d4-eb15878f989e" t="o" /> -<objsur guid="a7d5f397-e88d-4ebc-9829-91ff76342680" t="o" /> -<objsur guid="b8edd564-2e8f-4fff-ad6b-888b05b26904" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="284433df-7b37-4e63-a614-78520c483213" t="o" /> -<objsur guid="8f68d85f-70f8-4662-9b4b-1dd2900a002a" t="o" /> -<objsur guid="cb99a086-8c6d-4f90-81db-6afa69ae5455" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="e76241d9-175a-484c-8e45-d3d8d4b54914" ownerguid="8684b125-b27f-4710-a39c-dde870d8fe34"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">punish</AUni> -<AUni ws="es">castigar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="28197508-fbb5-4f3d-999e-6de0a1b2cc74" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e7645251-5ece-4b62-8405-24512a10bd6f" ownerguid="21461d78-02f9-4be6-80e3-6a4498ce8f4c"> -<ExampleWords> -<AUni ws="en">capture, take captive, captured</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to being captured?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e768fe73-f2bc-494e-b4e1-e512fa86ae98" ownerguid="9f4cd8bd-f001-400f-b50a-e177f432aea8"> -<Form> -<AUni ws="qvm-x-ach">venga</AUni> -<AUni ws="qvm-x-acl">venga</AUni> -<AUni ws="qvm-x-akh">venga</AUni> -<AUni ws="qvm-x-akl">venga</AUni> -<AUni ws="qvm-x-ame">venga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="Segment" guid="e76bb2b9-ca83-4289-9060-bfb2b995e873" ownerguid="782b0946-7ede-4b42-b2f1-dc0e5e1a7342"> -<Analyses> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="fa7aeb71-200a-4a5d-9436-13faa1972fea" t="r" /> -<objsur guid="25651c34-3e31-419d-86b5-cda6907f0a4f" t="r" /> -<objsur guid="7beb2bdf-1e77-4955-99ec-39f893293020" t="r" /> -<objsur guid="a85a5670-81ba-47b9-8443-95e8be60ebec" t="r" /> -<objsur guid="cc5592b2-d053-4f21-868f-e47798949ce1" t="r" /> -<objsur guid="4fccec2d-58a4-466f-a087-a79d6bf13b57" t="r" /> -<objsur guid="153ebcc9-8ac0-4a9b-aae9-7640c4180df3" t="r" /> -<objsur guid="4bd33b73-ca58-4fbb-9575-41275fd181b3" t="r" /> -<objsur guid="7d6d4776-71f6-4c31-b03a-97a0bcdd28dc" t="r" /> -<objsur guid="d3da10af-d6fb-4b58-9133-b9d5c3ec090c" t="r" /> -</Analyses> -<BeginOffset val="15" /> -</rt> -<rt class="LexEntry" guid="e76da56d-55db-4081-a496-0566316f8466"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">zarci:llu</AUni> -<AUni ws="qvm-x-acl">zarci:llu; zarci:llu; zarci:llo</AUni> -<AUni ws="qvm-x-akh">zarci:llu</AUni> -<AUni ws="qvm-x-akl">zarci:llu; zarci:llu; zarci:llo</AUni> -<AUni ws="qvm-x-ame">zarci:llu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+zarcillo</AUni> -<AUni ws="qvm-x-acl">+zarcillo</AUni> -<AUni ws="qvm-x-akh">+zarcillo</AUni> -<AUni ws="qvm-x-akl">+zarcillo</AUni> -<AUni ws="qvm-x-ame">+zarcillo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.810" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f434f2c0-6147-4da3-8828-13a8471708f4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+zarcillo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="56c24278-e4f5-46bc-95ac-d7025655ee5c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0edcbdb0-4a65-47f0-8dd5-28cdab2eb0be" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +zarcillo 
\entryTyp root 
\gENG earring 
\gSPN arete 
\e +zarcillo 
\c N0 
\ach zarci:llu 
\akh zarci:llu 
\acl zarci:llu / _# 
\acl zarci:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl zarci:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl zarci:llu / _# 
\akl zarci:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl zarci:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame zarci:llu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="e76fb4fe-f105-420c-9054-bb1e7246cd53"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">are:ti; are:ti</AUni> -<AUni ws="qvm-x-acl">are:ti; are:ti; are:te</AUni> -<AUni ws="qvm-x-akh">are:ti; are:ti</AUni> -<AUni ws="qvm-x-akl">are:ti; are:ti; are:te</AUni> -<AUni ws="qvm-x-ame">are:ti; are:ti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+arete.1</AUni> -<AUni ws="qvm-x-acl">+arete.1</AUni> -<AUni ws="qvm-x-akh">+arete.1</AUni> -<AUni ws="qvm-x-akl">+arete.1</AUni> -<AUni ws="qvm-x-ame">+arete.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.820" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2147bbb5-ceb3-49c4-ac4c-fdb48901be61" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+arete.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6790b7f1-0cda-4ba3-8d54-8a27e66d8c56" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="54cd5b04-d2d3-4fd1-b731-da3f10fcef20" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +arete.1 
\entryTyp root 
\gENG earring 
\gSPN arete 
\e +arete.1 
\c N0 V1 
\mp +FinalI 
\ach are:ti / _# 
\ach are:ti / ~_# 
\akh are:ti / _# 
\akh are:ti / ~_# 
\acl are:ti / _# 
\acl are:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl are:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl are:ti / _# 
\akl are:ti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl are:te +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame are:ti / _# 
\ame are:ti / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e7717740-588f-4135-9758-01795896fdee" ownerguid="7ecca79a-71bc-4055-a00a-bc3541e10e2b"> -<Form> -<AUni ws="qvm-x-ach">arpa</AUni> -<AUni ws="qvm-x-acl">arpa</AUni> -<AUni ws="qvm-x-akh">arpa</AUni> -<AUni ws="qvm-x-akl">arpa</AUni> -<AUni ws="qvm-x-ame">arpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="e7766633-cdbd-4a60-a8d7-c4de9089f605"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pula</AUni> -<AUni ws="qvm-x-acl">pula</AUni> -<AUni ws="qvm-x-akh">pula</AUni> -<AUni ws="qvm-x-akl">pula</AUni> -<AUni ws="qvm-x-ame">pula</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pulla.v</AUni> -<AUni ws="qvm-x-acl">*pulla.v</AUni> -<AUni ws="qvm-x-akh">*pulla.v</AUni> -<AUni ws="qvm-x-akl">*pulla.v</AUni> -<AUni ws="qvm-x-ame">*pulla.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.996" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d416569c-bf7d-4f2a-b979-e1e63356ffcb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pulla.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5071c920-b3ca-43dc-be62-39129f73a247" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2cc6c5da-9460-424c-924a-29c538c4be00" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pulla.v 
\entryTyp root 
\gENG do.half 
\gSPN hacer.mitad 
\e *pulla.v 
\c V1 
\ach pula 
\akh pula 
\acl pula 
\akl pula 
\ame pula 
\mcc *pulla.v / ~_ 3</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="e776ea6c-3687-495c-981d-188298228af8" ownerguid="87260e06-f99e-40f4-aaa8-7404dfc80216"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="e77c6490-9fb5-4828-82b0-ab2fae5fb197" ownerguid="520f02c3-e611-4308-a406-8691483dc4a1"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="e77d9ff3-38d8-4085-913b-531df06f7bcb" ownerguid="a6d9751e-ae7b-4f5b-a1de-1939dd6db198"> -<Form> -<AUni ws="qvm-x-ach">alicäti; alicäti</AUni> -<AUni ws="qvm-x-acl">alicäti; alicäti; alicäte</AUni> -<AUni ws="qvm-x-akh">alicäti; alicäti</AUni> -<AUni ws="qvm-x-akl">alicäti; alicäti; alicäte</AUni> -<AUni ws="qvm-x-ame">alicäti; alicäti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="e77dc0f6-a090-4220-b557-b93910b63f75"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yanapa</AUni> -<AUni ws="qvm-x-acl">yanapa</AUni> -<AUni ws="qvm-x-akh">yanapa</AUni> -<AUni ws="qvm-x-akl">yanapa</AUni> -<AUni ws="qvm-x-ame">yanapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yanapa</AUni> -<AUni ws="qvm-x-acl">*yanapa</AUni> -<AUni ws="qvm-x-akh">*yanapa</AUni> -<AUni ws="qvm-x-akl">*yanapa</AUni> -<AUni ws="qvm-x-ame">*yanapa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.729" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b220166f-5b5e-40a0-a39c-7dc4822d9780" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yanapa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9f33c312-5ef5-4da5-9f36-753d13d3fbe9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a4e4b3a0-f74c-4e82-a0be-3e61109ff98c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yanapa 
\entryTyp root 
\gENG help 
\gSPN ayudar 
\e *yanapa 
\c V2 
\ach yanapa 
\akh yanapa 
\acl yanapa 
\akl yanapa 
\ame yanapa 
\mcc *yanapa / ~_ BEN2</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e77fe19b-ca93-477d-b5f6-2441faceabaa" ownerguid="e53693cb-a2fe-4752-a0d1-b2ffcfcdb7ac"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">master</AUni> -<AUni ws="es">maestra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8b83027f-647a-47ce-969e-3ed23a3adf6b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e7809139-a6fa-4813-ac79-188aee1ff003" ownerguid="7d8898d6-6296-4d4d-b8dd-2f48c49f9e98"> -<ExampleWords> -<AUni ws="en">fear of heights, vertigo</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to being afraid of being in a high place?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="e783a562-417d-48ed-b321-d4245089318c" ownerguid="ec9b5648-d5ee-4710-9610-0a9763e525c2"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -<Sense> -<objsur guid="1b926284-5562-4cf3-8ad2-65536a715093" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="e78689f4-b843-4985-a1b8-ab5671df2fd2" ownerguid="8f7c9d7d-9b2a-40f3-9314-8f16f0aa31ef"> -<ExampleWords> -<AUni ws="en">crumple, gather, pleat, rumple, tuck, wrinkle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making many folds in something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e787cfde-22e3-4565-9f1d-15b96f6b6b2f" ownerguid="cbfdb722-1cab-4d70-8a3f-bbaf4c8ff5f0"> -<Form> -<AUni ws="qvm-x-ach">shilpa</AUni> -<AUni ws="qvm-x-acl">shilpa</AUni> -<AUni ws="qvm-x-akh">shilpa</AUni> -<AUni ws="qvm-x-akl">shilpa</AUni> -<AUni ws="qvm-x-ame">shilpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="e78c718b-6c58-4e53-a172-a006152082fa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">zapatillu; zapatillo</AUni> -<AUni ws="qvm-x-acl">zapatillu; zapatillu; zapatillo</AUni> -<AUni ws="qvm-x-akh">zapatillu; zapatillo</AUni> -<AUni ws="qvm-x-akl">zapatillu; zapatillu; zapatillo</AUni> -<AUni ws="qvm-x-ame">zapatillu; zapatillo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+zapatillo</AUni> -<AUni ws="qvm-x-acl">+zapatillo</AUni> -<AUni ws="qvm-x-akh">+zapatillo</AUni> -<AUni ws="qvm-x-akl">+zapatillo</AUni> -<AUni ws="qvm-x-ame">+zapatillo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.810" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="89431309-856f-4b4b-9a9c-6e8c4404d60e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+zapatillo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5642d641-c6b5-4b18-9d8a-4a4dfc7039c6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="209d8df7-471b-4016-9498-83f3d8cabd45" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +zapatillo 
\entryTyp root 
\gENG tennis.shoe 
\gSPN zapatillo 
\e +zapatillo 
\c N0 
\ach zapatillu / ~_# 
\ach zapatillo / _# 
\akh zapatillu / ~_# 
\akh zapatillo / _# 
\acl zapatillu / ~_# 
\acl zapatillu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl zapatillo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl zapatillu / ~_# 
\akl zapatillu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl zapatillo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame zapatillu / ~_# 
\ame zapatillo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="e78d3b49-1db5-47a8-95bd-ade74523a4fd" ownerguid="f5cd1354-93b8-47c7-97d3-9aadaa900381"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e78f1047-fdd8-43ed-9b4b-14e4674a22a0" ownerguid="ef5ee2be-8a32-452a-818b-80191edb8e41"> -<ExampleWords> -<AUni ws="en">prune, seedling, graft</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to growing trees?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e78fdb1a-ba01-4255-8ca7-68405fa1fa8d" ownerguid="20a84a72-9241-4026-a818-120f1baec986"> -<Form> -<AUni ws="qvm-x-ach">chanca</AUni> -<AUni ws="qvm-x-acl">chanca</AUni> -<AUni ws="qvm-x-akh">chanka</AUni> -<AUni ws="qvm-x-akl">chanka</AUni> -<AUni ws="qvm-x-ame">chanka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoInflAffMsa" guid="e7902b1b-e25f-4772-8266-6c795146619f" ownerguid="c388c171-01b2-4a74-9854-5713e021a75a"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="cc7bce64-81a2-4c23-9cb0-ba8f7d274837" t="r" /> -</Slots> -</rt> -<rt class="CmSemanticDomain" guid="e791df50-8880-4080-a5ee-d4e58bb7b8ca" ownerguid="4e791773-94c8-4667-93f8-92dc0100ddfe"> -<Abbreviation> -<AUni ws="en">4.2.9.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.217" /> -<DateModified val="2022-9-23 16:55:8.217" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a holiday.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Free time</AUni> -</Name> -<Questions> -<objsur guid="3a70547f-fc1b-4938-b69f-39e16bc50fbc" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="e793f653-ec88-4eab-ba06-5c0f05394e05" ownerguid="043a481a-83ab-44a6-a3eb-15aefa03f77b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="af71c7b9-fcb8-41a0-a5a8-ffa1ee60ddbd" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">shut</AUni> -<AUni ws="es">cerrar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1ff3d16a-3452-4eb9-9b83-73cbbd05c78a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e79416d1-0f33-4a8c-803b-5751a45b5d13" ownerguid="da988f73-fc9d-4a23-b70d-22299a7c6097"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Own: John <has> a house (to sell), the house <of> John, John<'s> house, hi<s> house, who<se> house (is this?), the house is hi<s>; Kinship: John <has> a brother, the brother <of> John, John<'s>brother, hi<s> brother; Relationship: John <has> a friend, the friend <of> John, John<'s> friend, a friend of hi<s>; Member: The school <has> (a hundred) students, the students <of> the school, the school<'s> students; Part: Trees <have> leaves, the leaves <of> the tree, the tree<'s> leaves, it<s> leaves; Name: John <has> three names, the three names <of> John, John<'s> three names, hi<s> names; Know: John <has> the answer, John<'s> answer, hi<s> answer; Hold: John <has> the key (in his pocket), John<'s> key, hi<s> key; Feel: John <has> anger, the anger <of> John, John's anger, hi<s> anger; Sickness: John <has> cancer, John<'s> cancer, hi<s> cancer; Located on: The yard <has> a fence, the yard<'s> fence; Be pictured in: the photo <of> John, John<'s> photo, hi<s> photo; Quality: John <has> status, the status <of> John, John<'s> status, hi<s> status; Use: The secretary <has> a computer, the computer <of> the secretary, the secretary<'s> computer, the computer is her<s>; Event: the arrival <of> John, John<'s> arrival, hi<s> arrival</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">have, of, -'s</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words relate two nouns?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e7956ca5-d415-47d0-b88e-f84339f0b9d6" ownerguid="375a906d-ce35-4c69-939c-a263cf448a31"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e798454c-b818-4360-a83c-82b72bb44da8" ownerguid="06ac577a-4d61-4898-ac9d-e3f18b7504af"> -<ExampleWords> -<AUni ws="en">salvation, rescue (n), defense, deliverance, extrication, recovery</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the act of saving someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e79966d0-0b70-4881-b217-93098c52f9f8" ownerguid="02d404d7-f3d7-492c-92a0-c6c9ff1a1908"> -<ExampleWords> -<AUni ws="en">picnic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a meal eaten outside?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e79fd027-dcdf-4c12-8cbb-2fcc32dfe610" ownerguid="b0905fa9-2f90-410b-8eb5-7c7944c4f0f9"> -<ExampleWords> -<AUni ws="en">abuse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to sexual offenses within a marriage?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e7a232a3-a236-4cec-a634-9a423ea58322" ownerguid="13aff896-082c-4ec7-ac96-f512a692d943"> -<Form> -<AUni ws="qvm-x-ach">garcu; garca</AUni> -<AUni ws="qvm-x-acl">garcu; garco; garca</AUni> -<AUni ws="qvm-x-akh">qarku; qarka</AUni> -<AUni ws="qvm-x-akl">qarku; qarko; qarka</AUni> -<AUni ws="qvm-x-ame">qarku; qarka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="e7a28d43-086f-4efb-9acc-51178ddc0c42" ownerguid="ee407532-ebd4-4026-906d-08229667cbee"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="e7a4ff40-8363-448c-9165-4d9117d2f0bf" ownerguid="bf521591-5c65-4164-afc3-c4ea62eef33a"> -<Form> -<AUni ws="qvm-x-ach">odri; odre</AUni> -<AUni ws="qvm-x-acl">odri; odri; odre</AUni> -<AUni ws="qvm-x-akh">odri; odre</AUni> -<AUni ws="qvm-x-akl">odri; odri; odre</AUni> -<AUni ws="qvm-x-ame">odri; odre</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e7a55cdd-5138-41ad-90e5-f9d38765bce7" ownerguid="5238fe9c-4bbe-444c-b5f6-18f946b3d6aa"> -<ExampleWords> -<AUni ws="en">thermometer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What instruments are used for measuring a fever?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e7a79aeb-4a15-4c38-a8d2-088150408033" ownerguid="77f0d0dc-61ee-4373-9879-35a7059bd892"> -<ExampleWords> -<AUni ws="en">extract a tooth, pull a tooth, have a tooth out, extraction</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to removing a tooth?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e7a8fe92-7e46-4f56-b6ae-42d1edd99ce4" ownerguid="57e30013-110b-4dd7-b837-6d28f81d0ee1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e7a941e6-e657-4e8e-b25b-5c2549631e93"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alala; alala:</AUni> -<AUni ws="qvm-x-acl">alala; alala:</AUni> -<AUni ws="qvm-x-akh">alala; alala:</AUni> -<AUni ws="qvm-x-akl">alala; alala:</AUni> -<AUni ws="qvm-x-ame">alala; alala:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*allalla:</AUni> -<AUni ws="qvm-x-acl">*allalla:</AUni> -<AUni ws="qvm-x-akh">*allalla:</AUni> -<AUni ws="qvm-x-akl">*allalla:</AUni> -<AUni ws="qvm-x-ame">*allalla:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.737" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2466a226-1733-4816-b3a3-ec3fa317f8d3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*allalla:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1548b3fd-394a-4efa-82b0-58303feca843" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8db7a037-cc22-4ce9-a770-7195dba0d69d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *allalla: 
\entryTyp root 
\gENG be.cold 
\gSPN hacer.frio 
\e *allalla: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach alala foreshortened 
\ach alala: 
\akh alala foreshortened 
\akh alala: 
\acl alala foreshortened 
\acl alala: 
\akl alala foreshortened 
\akl alala: 
\ame alala foreshortened 
\ame alala:</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="e7aa0f52-88bf-4080-aa96-91d8a978002f" ownerguid="9dc7a6ed-842d-4e73-a731-451ab2ba1b4a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">runa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">runa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">runa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">runa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">runa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="dbbd8356-c9df-482b-a128-55aaaa8ad47f" t="r" /> -</Morph> -<Msa> -<objsur guid="735a29e0-40d3-4d25-9e9a-e8181d173c29" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="e7aaf41c-250e-48c2-8d2f-e6f97cd16237" ownerguid="a5bfa564-0cad-4014-8007-7372a7def937"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bronze</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3264c6e5-5450-4ffd-8415-99ddac21d62b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e7ac34c0-06af-4bad-bf9c-d2718ce0b4dc" ownerguid="0aaacffe-9b6c-49a7-bf68-c0f9ff3e120e"> -<ExampleWords> -<AUni ws="en">maximum, most</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the largest amount of something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e7acb7d5-f605-4f9b-bd5b-72eb2d495936"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">compás; compas</AUni> -<AUni ws="qvm-x-acl">compás; compas</AUni> -<AUni ws="qvm-x-akh">compás; compas</AUni> -<AUni ws="qvm-x-akl">compás; compas</AUni> -<AUni ws="qvm-x-ame">compás; compas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+compás</AUni> -<AUni ws="qvm-x-acl">+compás</AUni> -<AUni ws="qvm-x-akh">+compás</AUni> -<AUni ws="qvm-x-akl">+compás</AUni> -<AUni ws="qvm-x-ame">+compás</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.152" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8180176d-32cd-4972-9746-b31d68807b78" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+compás</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7f45130a-cd24-4ac3-9870-200b4c2515c9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e5929d5d-6cdf-4179-835f-1d412bf0cc3c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +compás 
\entryTyp root 
\gENG 
\gSPN 
\e +compás 
\c N0 
\mp +FinalC 
\ach compás / _# 
\ach compas / ~_# 
\akh compás / _# 
\akh compas / ~_# 
\acl compás / _# 
\acl compas / ~_# 
\akl compás / _# 
\akl compas / ~_# 
\ame compás / _# 
\ame compas / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e7acde6f-c742-4589-a849-d034eeb5c32f" ownerguid="b0905fa9-2f90-410b-8eb5-7c7944c4f0f9"> -<ExampleWords> -<AUni ws="en">abuse, sexual abuse, molest, molestation, pedophile, pederast, pederasty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(19) What words refer to having sex with a child?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e7ae5b8b-5915-449c-8435-3adc199e82f7" ownerguid="ac20049d-d2e8-4dd5-9642-672edecad64f"> -<Form> -<AUni ws="qvm-x-ach">urya</AUni> -<AUni ws="qvm-x-acl">urya</AUni> -<AUni ws="qvm-x-akh">urya</AUni> -<AUni ws="qvm-x-akl">urya</AUni> -<AUni ws="qvm-x-ame">urya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="e7b229cb-037f-4f90-9be8-406afc73735d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">la:ja</AUni> -<AUni ws="qvm-x-acl">la:ja</AUni> -<AUni ws="qvm-x-akh">la:ja</AUni> -<AUni ws="qvm-x-akl">la:ja</AUni> -<AUni ws="qvm-x-ame">la:ha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lla:ja</AUni> -<AUni ws="qvm-x-acl">*lla:ja</AUni> -<AUni ws="qvm-x-akh">*lla:ja</AUni> -<AUni ws="qvm-x-akl">*lla:ja</AUni> -<AUni ws="qvm-x-ame">*lla:ja</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.124" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8f49aecf-bcf7-4d75-8615-0cf4b0c455d3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lla:ja</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="35b11855-77fb-4ad7-8299-c546b2df8ac2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="508c92dd-0f05-4f09-96bd-2367e3e50b28" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lla:ja 
\entryTyp root 
\gENG peel 
\gSPN mondar 
\e *lla:ja 
\c V1 
\ach la:ja 
\akh la:ja 
\acl la:ja 
\akl la:ja 
\ame la:ha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="e7b26d27-483f-45a4-b2f4-c7507e92e2ed" ownerguid="7520d9db-fd24-4e98-96d7-6c9ca6021008"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Gen 32.32 Jacobpa mama chanca mogunta tsay tsacay saltacäsishga captinmi Israel runacunaga uywata pishtar cananyagpis mana micuntsu tseglanman tincog ancu ancunta.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="e7b31579-292f-41c1-b8b8-d44ce680c995" ownerguid="38af7490-8810-4d18-9761-ca6266fe5b9d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">necklace</AUni> -<AUni ws="es">collar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b908a012-504a-45b6-8eb5-e9ec55ed6be0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="e7b4af3e-2acf-4506-8be3-40d8432a7923" ownerguid="03663a32-ea9c-486d-9481-d7535bb4050c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">monojo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5bd26fd4-5aee-4647-ba37-5ad99b278820" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="e7b4deb5-b4fa-4626-b20f-614ad3699c4c" ownerguid="dc77b359-1f29-42ba-b89d-9fefc586f4a3"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e7beeba7-a2b3-45c8-95af-1d5fd6daa027" ownerguid="31debfe3-91da-4588-b433-21b0e14a101b"> -<ExampleWords> -<AUni ws="en">bridge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a bridge?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e7c1521c-60de-4787-9046-6842754b08cb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ja:pa</AUni> -<AUni ws="qvm-x-acl">ja:pa</AUni> -<AUni ws="qvm-x-akh">ja:pa</AUni> -<AUni ws="qvm-x-akl">ja:pa</AUni> -<AUni ws="qvm-x-ame">ha:pa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ha:pa</AUni> -<AUni ws="qvm-x-acl">*ha:pa</AUni> -<AUni ws="qvm-x-akh">*ha:pa</AUni> -<AUni ws="qvm-x-akl">*ha:pa</AUni> -<AUni ws="qvm-x-ame">*ha:pa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.670" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9cc5a0f7-7bf7-4b9b-be0d-a579e9e741fe" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ha:pa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f9b51f60-2e09-49e0-b019-7e0de16ccf31" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1c576b3e-0910-4700-8bb9-89a1d9304ef3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ha:pa 
\entryTyp root 
\gENG foreign 
\gSPN extranjero 
\e *ha:pa 
\c N0 
\ach ja:pa 
\akh ja:pa 
\acl ja:pa 
\akl ja:pa 
\ame ha:pa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e7c33ec4-2f36-44e1-ba36-00b257f22190" ownerguid="a8d704bc-32f3-4309-9f9b-8a9d76b4e925"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ce38fa9a-19eb-42d5-919f-4f02e63dcb9e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="e7c58c11-2911-446a-96b0-2113247f3792" ownerguid="0e79435b-f5ff-4061-81ff-49557ba2aed4"> -<Abbreviation> -<AUni ws="en">4.1.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words for family relationships, not for specific terms.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>10 Kinship Terms</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Kinship</AUni> -</Name> -<OcmCodes> -<Uni>600 Kinship; 601 Kinship Terminology</Uni> -</OcmCodes> -<Questions> -<objsur guid="2d84518c-df95-4cfc-a5e2-671e373c7019" t="o" /> -<objsur guid="95d994b4-a759-4cb6-a0c7-b4c4ebe0e77d" t="o" /> -<objsur guid="7a19c46e-ca5b-4353-a497-0b1662039ac9" t="o" /> -<objsur guid="b303db48-66c5-462e-b282-863c49401bcc" t="o" /> -<objsur guid="e682b8c3-d6f5-4cb4-8a6d-c4f4e339b7d1" t="o" /> -<objsur guid="feb78ecf-a633-4609-92d9-26a2b65e6e28" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="0e79435b-f5ff-4061-81ff-49557ba2aed4" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="529140d1-6e8e-44fe-99f0-95289e933607" t="o" /> -<objsur guid="49bc0d75-4f07-44b4-a50f-bc9a557dc15e" t="o" /> -<objsur guid="04370e1f-25aa-4d9e-97c5-de9b59156666" t="o" /> -<objsur guid="57237095-23cf-43ba-aa6c-89cecdd35ff8" t="o" /> -<objsur guid="0656f6a7-9a88-4c03-a8ab-ace8c0f52ebf" t="o" /> -<objsur guid="4405e74c-f64c-4609-8f7b-99ba563d659a" t="o" /> -<objsur guid="fa41dbc5-adbb-4ad0-9fd2-0278d4689a28" t="o" /> -<objsur guid="a781d57d-174d-47a6-b6a1-ae635a13df84" t="o" /> -<objsur guid="6cbdaf94-8e2c-4b26-936a-d2f86d158250" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="e7c732eb-cb03-435a-ae49-cb4300acfaee" ownerguid="743e17c6-9b80-4372-b41e-33ee07b82981"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="e7c7c1ea-79b7-4d41-8a28-ea6ac1ae17ac" ownerguid="3388ec9f-d179-46d1-87e4-8a2ddb25375f"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e7c81c37-8866-4daa-b063-3b13d9ffcd16" ownerguid="7ea946fb-6469-4f21-a5a4-7963878e6fe2"> -<ExampleWords> -<AUni ws="en">take your time, make it last, we want this to last a long time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What do people say when they want someone to do something for a long time?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e7c88a2b-06b2-4454-b9ca-bca4fe43b1a6" ownerguid="68d7d08b-efb3-4fc1-87d6-ad37562e920d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="b669331e-510f-49e9-84ae-05930cf7a7cf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e7c8c42f-0e98-496f-a246-fd4a35bfab99"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">obra</AUni> -<AUni ws="qvm-x-acl">obra</AUni> -<AUni ws="qvm-x-akh">obra</AUni> -<AUni ws="qvm-x-akl">obra</AUni> -<AUni ws="qvm-x-ame">obra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+obra</AUni> -<AUni ws="qvm-x-acl">+obra</AUni> -<AUni ws="qvm-x-akh">+obra</AUni> -<AUni ws="qvm-x-akl">+obra</AUni> -<AUni ws="qvm-x-ame">+obra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.616" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2c2e661f-c1b5-4b27-b05e-a5aa44864cc5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+obra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="56126bb4-4d6f-4306-a25c-f10a349e1832" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="96530c84-41d3-4e05-b422-f8d5d669b8d5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +obra 
\entryTyp root 
\gENG work 
\gSPN obra 
\e +obra 
\c N0 
\ach obra 
\akh obra 
\acl obra 
\akl obra 
\ame obra 
\i ECC 2.4 Tsaynogpis imayca obratami ruratsishcä. Palaciucunatapis arutsishcä. Üvatapis atscatami plantatsishcä.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e7c8dbce-0356-46a1-992f-56985c646c42" ownerguid="4d19f09f-035b-477e-862c-a4157acdfe81"> -<ExampleWords> -<AUni ws="en">clean, clear, pure, crystal clear</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe clean water?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e7ca6466-4a9a-4580-b69a-e4bdaccfc45d" ownerguid="67d7ac91-96a3-4979-b55b-101280d95144"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="80bd323e-ec9e-4ff6-b690-e09f5f1bd617" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="e7caa24f-155d-47cd-946d-cc0d06dfc764" ownerguid="8e11dd10-459b-4fb3-b876-7d80ec5f8a4d"> -<Abbreviation> -<AUni ws="en">4.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.225" /> -<DateModified val="2022-9-23 16:55:8.225" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to loving someone--to feel good about someone, want good things to happen to them, and want to do good things for them.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25C Love, Affection, Compassion</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Love</AUni> -</Name> -<Questions> -<objsur guid="94b08f1d-5796-48a5-879a-c4d6fbf8a7b2" t="o" /> -<objsur guid="2fa0fcad-b5f6-41b4-89c2-25d4bf1ca64a" t="o" /> -<objsur guid="c06ddaea-279b-4e88-8f6c-ebdc3502ba85" t="o" /> -<objsur guid="61b8fd64-181e-40cf-a05d-e35f36392b40" t="o" /> -<objsur guid="4db1ebc5-e467-499c-b0e7-ac802596c70b" t="o" /> -<objsur guid="26452ebb-d7d8-434e-8b72-bc29db8a242b" t="o" /> -<objsur guid="46938df8-aa60-4cd9-bc0e-34d59c880363" t="o" /> -<objsur guid="e92ed2b7-5f70-4b08-8040-ca4ad2572baa" t="o" /> -<objsur guid="6c75289f-eb74-46f3-80c9-d12859ab4905" t="o" /> -<objsur guid="717e0c7f-e113-4bf6-8528-1cc16c55ae69" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="642ff468-e6c8-4fd0-8f52-262efa8f7774" t="o" /> -<objsur guid="b553e989-2b2a-4b1e-a987-ae75f3862501" t="o" /> -<objsur guid="611aa361-4ddd-450b-a152-94984a274575" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="e7ceefd0-f566-44c5-ba12-60826274152d" ownerguid="c3961388-cc50-4ea3-9095-2f023672fccb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="00e70d5b-6590-42c3-a259-f9b519c97191" t="o" /> -</Examples> -<Gloss> -<AUni ws="es">bastón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="45972961-d407-466e-af83-7592ac7d2516" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e7cf3778-387d-4c79-b64b-d9e4fafb07c0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tucshi</AUni> -<AUni ws="qvm-x-acl">tucshi; tucshe</AUni> -<AUni ws="qvm-x-akh">tukshi</AUni> -<AUni ws="qvm-x-akl">tukshi; tukshe</AUni> -<AUni ws="qvm-x-ame">tukshi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tukshi</AUni> -<AUni ws="qvm-x-acl">*tukshi</AUni> -<AUni ws="qvm-x-akh">*tukshi</AUni> -<AUni ws="qvm-x-akl">*tukshi</AUni> -<AUni ws="qvm-x-ame">*tukshi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.977" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="60511114-d4a3-4e15-accb-bfa8dba274f5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tukshi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="837349b6-548a-47a8-ac69-a295b76802ea" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e52aaec3-3d36-4d01-bb48-148a20c3474e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tukshi 
\entryTyp root 
\gENG stab 
\gSPN picar 
\e *tukshi 
\c V2 
\mp +FinalI 
\ach tucshi 
\akh tukshi 
\acl tucshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tucshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tukshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tukshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tukshi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e7d34aa9-87ef-403f-8512-b9bc0a59d89d" ownerguid="ef409fc6-bd89-4cc6-ade5-abb882272313"> -<ExampleWords> -<AUni ws="en">prefer, preferably, in preference to, favor, like something better, like this more than that, have a preference, give me something any day!, be partial to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to preferring something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e7d7ac68-f231-474c-b7c2-93719211a3b6" ownerguid="d2ce7dd5-d5dd-4b16-b8c6-7ff7c7e1a0b7"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="e7e0bac7-7445-403f-97bd-cd2662d6da0a" ownerguid="8247eaae-05be-44ec-8181-868d3b1dc701"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e7e21d3a-6a13-48ce-b4b2-42247af50648" ownerguid="30fff450-1aa5-4993-9c14-c8019a5f072e"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Something is true of this person, <but> not true of that person.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">but, however, whereas, while, by contrast, conversely</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words indicate that something is true of one person or thing, but not true of another?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="e7e255f8-0401-48f0-8b80-45fce4ba359d" ownerguid="12080e89-3e7a-4d80-8a3f-7ad3a8dc05b7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="fd15242a-e3ff-45fb-beda-e2ef4bd199ff" t="r" /> -</Morph> -<Msa> -<objsur guid="4867346d-ecb1-40e9-a091-3bc5d299d8a0" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="e7e26130-4e6e-4fad-883b-b52250eb87ed" ownerguid="2c439f03-3a12-4d6e-9035-ccea75da048b"> -<Form> -<AUni ws="qvm-x-ach">propiu; propio</AUni> -<AUni ws="qvm-x-acl">propiu; propiu; propio</AUni> -<AUni ws="qvm-x-akh">propiu; propio</AUni> -<AUni ws="qvm-x-akl">propiu; propiu; propio</AUni> -<AUni ws="qvm-x-ame">propiu; propio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="e7e3f7b1-7877-460a-bd43-77cef40811dc" ownerguid="431e87e3-4b90-4fd1-b110-1b36d06f34d4"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e7e454db-ed18-4ee1-bd4b-fe30bd25df68" ownerguid="81b62078-984c-4e82-94c4-39fa44dd3e56"> -<ExampleWords> -<AUni ws="en">insult (v), insult (n), offend, offense, rebuke, criticize, curse, speak evil of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to insulting someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e7e5be59-ae77-4fb7-9963-3cd8a892f252" ownerguid="4b0dc35a-01b7-4df6-a7ab-d26afc3abebe"> -<Form> -<AUni ws="qvm-x-ach">rogru</AUni> -<AUni ws="qvm-x-acl">rogru; rogru; rogro</AUni> -<AUni ws="qvm-x-akh">roqru</AUni> -<AUni ws="qvm-x-akl">roqru; roqru; roqro</AUni> -<AUni ws="qvm-x-ame">ruqru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="e7e5dbf2-6d5b-4869-b357-8a7860c29002" ownerguid="60364974-a005-4567-82e9-7aaeff894ab0"> -<Abbreviation> -<AUni ws="en">1.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.963" /> -<DateModified val="2022-9-23 16:55:7.963" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a mixture of water and a substance (such as salt or sugar) that dissolves in water.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Solutions of water</AUni> -</Name> -<Questions> -<objsur guid="544e8435-2c0b-4e5f-b0c9-3008bb2aba02" t="o" /> -<objsur guid="8fa5bf7d-2b09-47f7-bee5-cb289f910e7a" t="o" /> -<objsur guid="858d9bbd-814b-4c16-84db-2eaac3fda140" t="o" /> -<objsur guid="c12b5c51-0859-4ede-b1d7-5b78c21acd9f" t="o" /> -<objsur guid="797b80df-2238-409a-a224-879b258784d3" t="o" /> -<objsur guid="dc8f8265-445d-492c-ba4c-c2c66d06879a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="e7e7ead5-a5f0-48f1-ae83-bfbd0d68e95b" ownerguid="1d8633e0-4279-4ddc-826e-16aa08a977e5"> -<ExampleWords> -<AUni ws="en">joint, knuckle (of finger), elbow, knee, hip, coronal suture</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a joint between two bones?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="e7e81169-540a-4884-be5e-2f1a4301f338" ownerguid="754103bd-8d98-44ac-915e-97e40e796ce3"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">SAN MARCOS 8.24 Tsauraga gapra rama ramala ricar nergan: <<Au, ricänami rama ramalaga runacunata yöracunanog caycagta. Itsanga purircaycanmi.>></Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="e7e8ef30-017f-44d9-9656-cbb52a9ce8f9" ownerguid="cd1d9d5f-5846-45fd-ad21-73bb03f95402"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">knot</AUni> -<AUni ws="es">nudo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="05236550-ff6a-42a6-b266-154744738d63" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e7ea0adc-fb92-4c25-ac01-34c98b005c6c" ownerguid="70708d98-c14f-4796-98db-50672b023e91"> -<Form> -<AUni ws="qvm-x-ach">jarru; jarro</AUni> -<AUni ws="qvm-x-acl">jarru; jarru; jarro</AUni> -<AUni ws="qvm-x-akh">jarru; jarro</AUni> -<AUni ws="qvm-x-akl">jarru; jarru; jarro</AUni> -<AUni ws="qvm-x-ame">jarru; jarro</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="e7ec9b3c-51fa-4556-b124-7eb09dc11e2b" ownerguid="e55ec875-33e0-4e71-b2b3-dfa2c131782f" /> -<rt class="MoStemAllomorph" guid="e7ed02ad-b083-4614-b55c-1487c7914e97" ownerguid="1681e7df-f802-4cc2-88ad-61118ef035aa"> -<Form> -<AUni ws="qvm-x-ach">gosgutay</AUni> -<AUni ws="qvm-x-acl">gosgutay</AUni> -<AUni ws="qvm-x-akh">qosqutay</AUni> -<AUni ws="qvm-x-akl">qosqutay</AUni> -<AUni ws="qvm-x-ame">qusqutay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="e7ef1518-74a7-498a-b2de-0721f589a565"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">juicio:su</AUni> -<AUni ws="qvm-x-acl">juicio:su; juicio:su; juicio:so</AUni> -<AUni ws="qvm-x-akh">juicio:su</AUni> -<AUni ws="qvm-x-akl">juicio:su; juicio:su; juicio:so</AUni> -<AUni ws="qvm-x-ame">juicio:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+juicioso.1</AUni> -<AUni ws="qvm-x-acl">+juicioso.1</AUni> -<AUni ws="qvm-x-akh">+juicioso.1</AUni> -<AUni ws="qvm-x-akl">+juicioso.1</AUni> -<AUni ws="qvm-x-ame">+juicioso.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.892" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4d730c5d-7516-43cf-985a-dc3e37575b0f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+juicioso.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cf7e878f-6cd2-4752-b7ee-f26d517687e1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6ab528ff-4300-4849-aad0-9dbfc979c802" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +juicioso.1 
\entryTyp root 
\gENG ability 
\gSPN ? 
\e +juicioso.1 
\c N0 
\ach juicio:su 
\akh juicio:su 
\acl juicio:su / _# 
\acl juicio:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl juicio:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl juicio:su / _# 
\akl juicio:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl juicio:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame juicio:su</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="e7f20475-e3f4-42e6-a6c7-16aae48900e8" ownerguid="31ec0cbc-4079-4c6c-873a-d0c406383db2"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">na</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">na</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">na</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">na</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">na</Run> -</AStr> -</Form> -<Morph> -<objsur guid="99b46deb-a91d-4222-a9fc-6c1a15fed4be" t="r" /> -</Morph> -<Msa> -<objsur guid="a5b30965-e5c8-452a-9057-ed02c784d19b" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="e7f29de5-6eaf-4403-adb7-bfb18aaadb73" ownerguid="804bed79-da20-4383-b1f1-b842eda4c6e9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e7f301c7-b8d1-4696-b030-b06755ef28dc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gargu; garga</AUni> -<AUni ws="qvm-x-acl">gargu; gargo; garga</AUni> -<AUni ws="qvm-x-akh">qarqu; qarqa</AUni> -<AUni ws="qvm-x-akl">qarqu; qarqo; qarqa</AUni> -<AUni ws="qvm-x-ame">qarqu; qarqa</AUni> -</Custom> -<AlternateForms> -<objsur guid="e9154280-f82e-445f-8700-b610d772df34" t="o" /> -</AlternateForms> -<CitationForm> -<AUni ws="qvm-x-ach">*qarqU.v2</AUni> -<AUni ws="qvm-x-acl">*qarqU.v2</AUni> -<AUni ws="qvm-x-akh">*qarqU.v2</AUni> -<AUni ws="qvm-x-akl">*qarqU.v2</AUni> -<AUni ws="qvm-x-ame">*qarqU.v2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.122" /> -<DateModified val="2022-10-19 17:19:5.726" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3fd65fc8-17a4-49fe-89ac-3f1c84143c12" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qarqU.v2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c7dbec8d-838d-4a92-a15b-4f3d5b563513" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="85c9f7db-4fd1-4d3d-80fd-9e0c1d3b8a91" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qarqU.v2 
\entryTyp root 
\gENG throw.out 
\gSPN botar 
\e *qarqU.v2 
\c V2 
\mp PMlowered 
\ach gargu 
\ach garga morphlowered 
\akh qarqu 
\akh qarqa morphlowered 
\acl gargu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gargo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl garga morphlowered 
\akl qarqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qarqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qarqa morphlowered 
\ame qarqu 
\ame qarqa morphlowered 
\mcc *qarqU.v2 / _... [trans]</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e7f4bc4e-8a8c-4563-afb7-692744abd2f5" ownerguid="65db711e-86aa-492d-ae2a-4b34e6d308b5"> -<Form> -<AUni ws="qvm-x-ach">nadya</AUni> -<AUni ws="qvm-x-acl">nadya</AUni> -<AUni ws="qvm-x-akh">nadya</AUni> -<AUni ws="qvm-x-akl">nadya</AUni> -<AUni ws="qvm-x-ame">nadya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="e7f64350-9a20-4093-934a-c781dd0539e8" ownerguid="adc91699-7e9d-410e-a513-5f24cff284bd"> -<Form> -<AUni ws="qvm-x-ach">mishi</AUni> -<AUni ws="qvm-x-acl">mishi; mishi; mishe</AUni> -<AUni ws="qvm-x-akh">mishi</AUni> -<AUni ws="qvm-x-akl">mishi; mishi; mishe</AUni> -<AUni ws="qvm-x-ame">mishi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="e7f6ce41-496c-4aaa-b50e-62aabd089772" ownerguid="652897eb-4e36-4649-b3a2-2b590f5375ef"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">SNG 1.9 Cuyaynë, faraónpa carrëtanta garachag fïna yëwanogmi cuyaylapag caycanqui.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="e7f76d88-364d-47af-82df-6da7c9da264d" ownerguid="993b8955-52db-4b2a-8e9a-405a155e7b60"> -<ExampleWords> -<AUni ws="en">slag, slagheap, dross</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the material left over after metal has been taken out of rocks?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e7f89f86-d4c2-45b9-b70e-a9c7784ffc6e" ownerguid="62efa729-0920-4933-93f3-b6a48519a5c7"> -<ExampleWords> -<AUni ws="en">atonement, expiation, reparation, redress</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the act of atoning for a sin?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="e7f94aea-ba50-481d-b640-d5cd8bdedc72" ownerguid="7fe69c4c-2603-4949-afca-f39c010ad24e"> -<Abbreviation> -<AUni ws="en">2.2.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to urination.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Urinate, urine</AUni> -</Name> -<Questions> -<objsur guid="3f311b41-5b8e-4380-b10a-667d071acb82" t="o" /> -<objsur guid="ecfa6f48-1e8c-4117-87b9-e595d28561fb" t="o" /> -<objsur guid="4926cc03-ea96-4e84-8ab2-b12d4efc8eb8" t="o" /> -<objsur guid="32588373-668c-4995-a836-c3864c4f6c35" t="o" /> -<objsur guid="1e9e75c2-f4dd-445c-b0c8-5ecd45c4423e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="e7f9ef3c-6a88-4410-9bac-4ddc5d276cb5" ownerguid="d574c970-6834-4566-ae37-f42c7e95483b"> -<ExampleWords> -<AUni ws="en">heavier, heaviest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to being heavier than another thing?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e7fc8721-985a-49e9-842a-e5ab64c8a678" ownerguid="bb538686-64b5-4a7a-a1b7-835a7843e7cd"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e7fd7bd0-e199-48ae-9c85-07a849a685e8" ownerguid="c54ada5e-e56f-4cd6-9367-b9bd5601067c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dry</AUni> -<AUni ws="es">seco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="19c3ab6f-0cf4-44d4-b2e5-9b9d4005f6db" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e7fe4352-5ab3-41a1-9400-9745d203fbd7" ownerguid="962941b2-66bd-437f-aadc-b1921bcae5b4"> -<ExampleWords> -<AUni ws="en">snakebite, bee sting, venom</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of animal poisons are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e7ff6cb3-e04a-43bb-986c-2aecbca6d77e" ownerguid="738a09a5-59df-40f9-8a4e-176e00d03bbf"> -<ExampleWords> -<AUni ws="en">holster, trigger, muzzle, chamber, barrel, stock, bolt, bayonet, bore, breech, bullet, butt, hammer, musket, safety, sight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What are the parts of a gun?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e7ff9dda-0f02-47ec-b8a5-0e32bf6b9924" ownerguid="5c2ab0ee-7d29-4139-b537-600c3860d782"> -<Form> -<AUni ws="qvm-x-ach">alumsu</AUni> -<AUni ws="qvm-x-acl">alumsu; alumsu; alumso</AUni> -<AUni ws="qvm-x-akh">alumsu</AUni> -<AUni ws="qvm-x-akl">alumsu; alumsu; alumso</AUni> -<AUni ws="qvm-x-ame">alumsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e802474e-6d28-4b4e-b44a-9d5e4bfe28f8" ownerguid="b6a40216-fe93-4b0f-b85b-5622327031d0"> -<ExampleWords> -<AUni ws="en">hatch, peck its way out of the egg</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) How do baby birds get out of their egg?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e8024867-a7f0-4e6b-80f3-f5ee7f882a87" ownerguid="bd4879c9-fb7c-4db4-a024-b70f237789a6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fallen.house</AUni> -<AUni ws="es">casa.tumbada</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6fcee042-25ba-4fd9-9035-4e07bbfb5ef0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e802c36b-06f1-4d0b-a448-5c16ad4b6f1d" ownerguid="754ac437-2841-48c3-bbb0-7d6dff52605e"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">A bark<ing> dog (kept me awake last night).; The dog<'s> bark<ing> (woke me up).; The bark<ing> <of> a dog (woke me up).; (John told me) <to> wake him up at 6 a.m.; I want <to> do something.; He started do<ing> something.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">-ing, -'s...-ing, -ing...of, to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate an event?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e804c942-cc17-42fc-b2f7-f8f06af39479"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">togri</AUni> -<AUni ws="qvm-x-acl">togri; togre</AUni> -<AUni ws="qvm-x-akh">toqri</AUni> -<AUni ws="qvm-x-akl">toqri; toqre</AUni> -<AUni ws="qvm-x-ame">tuqri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tuqri</AUni> -<AUni ws="qvm-x-acl">*tuqri</AUni> -<AUni ws="qvm-x-akh">*tuqri</AUni> -<AUni ws="qvm-x-akl">*tuqri</AUni> -<AUni ws="qvm-x-ame">*tuqri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.7" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0653d35f-2f5a-47dc-9436-405ac57cd6b0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tuqri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="23beda3b-bd80-4764-86b5-98817310e5b9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="02795080-2d35-41bc-9e13-bd2efc581396" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tuqri 
\entryTyp root 
\gENG point 
\gSPN señalar 
\e *tuqri 
\c V2 
\mp +FinalI 
\ach togri 
\akh toqri 
\acl togri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl togre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl toqri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl toqre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tuqri</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e805aa4f-3a58-4867-87fb-92f9f71f66cf" ownerguid="7299a7c6-da78-4672-8cee-fb30d5475ecc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stove</AUni> -<AUni ws="es">cocina</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ecb715ad-6332-4bad-a6c5-219f7a109473" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e80a94f0-dfa2-421b-a204-1d158579f225"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">suwa</AUni> -<AUni ws="qvm-x-acl">suwa</AUni> -<AUni ws="qvm-x-akh">suwa</AUni> -<AUni ws="qvm-x-akl">suwa</AUni> -<AUni ws="qvm-x-ame">suwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*suwa.v</AUni> -<AUni ws="qvm-x-acl">*suwa.v</AUni> -<AUni ws="qvm-x-akh">*suwa.v</AUni> -<AUni ws="qvm-x-akl">*suwa.v</AUni> -<AUni ws="qvm-x-ame">*suwa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.764" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="32007d71-135e-425a-9145-f3e1eb63e695" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*suwa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f8d58f78-a4ed-40ae-a458-86ddf3a1b735" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7e4d8e14-3ace-4cb7-a8f8-2eef85ec4d1f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *suwa.v 
\entryTyp root 
\gENG steal 
\gSPN robar 
\e *suwa.v 
\c V2 
\ach suwa 
\akh suwa 
\acl suwa 
\akl suwa 
\ame suwa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e80c0c12-e6ac-42a9-80c5-87075a603489" ownerguid="57e2ae32-37b4-401f-b7a6-dc59a51e6d4a"> -<Form> -<AUni ws="qvm-x-ach">pitu</AUni> -<AUni ws="qvm-x-acl">pitu; pito</AUni> -<AUni ws="qvm-x-akh">pitu</AUni> -<AUni ws="qvm-x-akl">pitu; pito</AUni> -<AUni ws="qvm-x-ame">pitu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e80d952c-2d9b-43de-aaa9-8de32a2f9efa" ownerguid="7dbd7f43-4291-47f8-a392-6fdf3c98d522"> -<ExampleWords> -<AUni ws="en">reproductive, genital, sexual</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something to do with the male organs?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e80e64d6-e0da-4aab-98f4-eb623c865cbd" ownerguid="5cccfc11-4c8b-461f-bab8-e6e5ac587f6e"> -<Form> -<AUni ws="qvm-x-ach">tsawa</AUni> -<AUni ws="qvm-x-acl">tsawa</AUni> -<AUni ws="qvm-x-akh">tsawa</AUni> -<AUni ws="qvm-x-akl">tsawa</AUni> -<AUni ws="qvm-x-ame">tsawa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="StTxtPara" guid="e80ec74c-11ba-4966-8e9e-c0e6bcd508db" ownerguid="bf3f1d61-0fb7-4d38-ad7b-0e74c2659ac5"> -<Contents> -<Str> -<Run ws="en">\v 14</Run> -<Run ws="qvm-x-akh"> Nishqänöla arushqaykiman kutiykur noqatapis yarparkalämanki ari.</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="038bcccc-b4b2-42c0-9608-636741d271a7" t="o" /> -</Segments> -</rt> -<rt class="LexEntry" guid="e81031af-2862-4744-b73d-21ace4e11832"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">noga</AUni> -<AUni ws="qvm-x-acl">noga</AUni> -<AUni ws="qvm-x-akh">noqa</AUni> -<AUni ws="qvm-x-akl">noqa</AUni> -<AUni ws="qvm-x-ame">nuqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñuqa</AUni> -<AUni ws="qvm-x-acl">*ñuqa</AUni> -<AUni ws="qvm-x-akh">*ñuqa</AUni> -<AUni ws="qvm-x-akl">*ñuqa</AUni> -<AUni ws="qvm-x-ame">*ñuqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.598" /> -<DateModified val="2022-10-16 14:40:43.700" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="de5c3d10-074c-49d9-8785-6267d1e823c5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñuqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e6df1eee-926d-4e16-890a-be63f1161ca0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c14639b5-1106-433b-b023-553599313d58" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñuqa 
\entryTyp root 
\gENG I 
\gSPN yo 
\e *ñuqa 
\c N0 
\ach noga 
\akh noqa 
\acl noga 
\akl noqa 
\ame nuqa 
\mcc *ñuqa / ~_ JUST 1P 
\mcc *ñuqa / ~_ 1P.V</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e810cc7a-c8cb-4127-81fc-5c083421cc0a" ownerguid="ce6a862d-a4bb-4378-b14d-439806870c41"> -<ExampleWords> -<AUni ws="en">bad luck, misfortune, bit of bad luck, hard luck</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to bad luck?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="e8123769-0039-4951-b983-504b3cbecc1b" ownerguid="396801b2-f5a3-4dcc-b518-42cae634003b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">DAN 6.6 Tsaynog nirmi ministrucuna y nación mandäshegcuna comisionta churargan mandag reywan parlag aywananpag.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="e8148227-e044-40c4-af03-9bdd8cf2f7f8" ownerguid="01441207-4935-49a5-a192-16d949f5606c"> -<ExampleWords> -<AUni ws="en">athletic, acrobatic, competitive, star</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe a player?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e81554e0-3a11-4576-a318-08a3141579bd" ownerguid="0656cd5e-641f-46f3-bcad-6f643727a344"> -<ExampleWords> -<AUni ws="en">recently, not long ago, a short time ago, newly, freshly, a little while back, a short while ago, a little while ago</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that an event happened a short time ago?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e81747d2-5be4-4c68-bf39-1c7ae6d17274" ownerguid="f5e4e66f-0445-4434-a143-c60c5390be39"> -<Form> -<AUni ws="qvm-x-ach">racra</AUni> -<AUni ws="qvm-x-acl">racra</AUni> -<AUni ws="qvm-x-akh">rakra</AUni> -<AUni ws="qvm-x-akl">rakra</AUni> -<AUni ws="qvm-x-ame">rakra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e81d30bd-ca69-46ad-b6c6-087150c68d7b" ownerguid="d9104a31-4975-481b-adbd-ad89adcdc0e8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">strict</AUni> -<AUni ws="es">rigor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dca61780-18f2-4701-a30b-659b05534cce" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="e81d35a9-089b-43db-90ec-3774940fd3f4" ownerguid="4ccdcc51-e278-4495-b1e3-ea17ff1544e5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="FsFeatStruc" guid="e81d525b-5e61-44a6-887a-ad7da788469c" ownerguid="ca07312d-49a1-4d8c-8591-706cb7d5a595"> -<FeatureSpecs> -<objsur guid="46a1c428-2c4e-44e0-af37-5a8fc370f36b" t="o" /> -</FeatureSpecs> -<Type> -<objsur guid="efc7ecdf-44ed-4b11-9eef-41aaa905ca65" t="r" /> -</Type> -</rt> -<rt class="MoStemAllomorph" guid="e81d6858-797f-4410-a1dd-418b47ae7a2d" ownerguid="0f8fce3e-7aeb-49f5-ab43-fb6dd8e148e1"> -<Form> -<AUni ws="qvm-x-ach">shenga</AUni> -<AUni ws="qvm-x-acl">shenga</AUni> -<AUni ws="qvm-x-akh">shenqa</AUni> -<AUni ws="qvm-x-akl">shenqa</AUni> -<AUni ws="qvm-x-ame">shinqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="e81eeda2-53fc-4950-bef8-d304449a125c" ownerguid="1e666e23-1269-4e27-95dd-06d44939b03a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e8204323-0906-4533-a3ce-32bb20540db2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pucu</AUni> -<AUni ws="qvm-x-acl">pucu; pucu; puco</AUni> -<AUni ws="qvm-x-akh">puku</AUni> -<AUni ws="qvm-x-akl">puku; puku; puko</AUni> -<AUni ws="qvm-x-ame">puku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puku</AUni> -<AUni ws="qvm-x-acl">*puku</AUni> -<AUni ws="qvm-x-akh">*puku</AUni> -<AUni ws="qvm-x-akl">*puku</AUni> -<AUni ws="qvm-x-ame">*puku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.982" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="84c1f200-c8bd-4446-8c2c-96e23a8e5fa5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="00c0e93e-8653-42eb-b1f2-62606bccb830" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1cb585a4-a603-461c-bc6f-528a0c3751a2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puku 
\entryTyp root 
\gENG wash.basin 
\gSPN lavatorio 
\e *puku 
\c N0 
\ach pucu 
\akh puku 
\acl pucu / _# 
\acl pucu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl puco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl puku / _# 
\akl puku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl puko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame puku 
\mcc *puku / ~_ BCM1 
\mcc *puku / ~_ ALL.1 1P.V</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e821100e-6bf0-4e60-988f-a662c5a2fee9" ownerguid="e76227e8-4a04-4fbd-a16e-5baa3d9e97a9"> -<ExampleWords> -<AUni ws="en">instinct, instinctive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the ability of an animal to do something without learning it?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e822351a-02df-4a2f-9b65-2ed792f3f463" ownerguid="7158c621-c46e-4173-80c1-188f514a920f"> -<ExampleWords> -<AUni ws="en">admit, confess, acknowledge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to admitting something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e823a2bb-e8dd-4710-93ae-36eecb504aa9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">calabo:zu</AUni> -<AUni ws="qvm-x-acl">calabo:zu; calabo:zu; calabo:zo</AUni> -<AUni ws="qvm-x-akh">calabo:zu</AUni> -<AUni ws="qvm-x-akl">calabo:zu; calabo:zu; calabo:zo</AUni> -<AUni ws="qvm-x-ame">calabo:zu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+calabozo.2</AUni> -<AUni ws="qvm-x-acl">+calabozo.2</AUni> -<AUni ws="qvm-x-akh">+calabozo.2</AUni> -<AUni ws="qvm-x-akl">+calabozo.2</AUni> -<AUni ws="qvm-x-ame">+calabozo.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.210" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="542bace9-15b8-4ef6-9fac-d920c351c8ab" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+calabozo.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b8eca66c-1520-426e-9395-8b5bf2bd1d43" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a81c2dc4-fcc3-4c0a-a631-bd50363b5547" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +calabozo.2 
\entryTyp root 
\gENG jail 
\gSPN calabozo 
\e +calabozo.2 
\c N0 
\ach calabo:zu 
\akh calabo:zu 
\acl calabo:zu / _# 
\acl calabo:zu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl calabo:zo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl calabo:zu / _# 
\akl calabo:zu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl calabo:zo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame calabo:zu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e8258bde-846d-4886-8ebb-f11b014e0dfa" ownerguid="768aed05-dbc9-4caf-9461-76cb3720f908"> -<ExampleWords> -<AUni ws="en">hurt, inflict pain, torture, afflict, torment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to causing pain?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e828986c-b6ce-489f-a93d-0a827a8b7e4c" ownerguid="207d3ddc-dee9-43db-be01-56ed6a5e161f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="7b007874-6c16-48ff-8c48-28b9653406a8" t="o" /> -<objsur guid="7cd2cca1-4b0d-4219-ab71-12fdd0be285a" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">level</AUni> -<AUni ws="es">a.nivel</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="273f2f47-a9b3-495b-b3a0-a73b0d367efc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="e82ab449-4e0e-4b5f-a1b6-3ab3013cd8b3" ownerguid="20a84a72-9241-4026-a818-120f1baec986"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="8250878b-2826-4ab0-8b38-5de175792ae4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e82bdfd7-8ec0-4469-beb4-8e5858d016b4" ownerguid="c27b87cf-1211-4df2-96b1-12c416edabbe"> -<ExampleWords> -<AUni ws="en">witty, quick-witted, smart, jocular, droll, funny, waggish, facetious, whimsical, humorous, comic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe a person who jokes?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e82c991a-d37a-4231-b54c-be4bdfdddb55" ownerguid="d983c9fa-5bb7-4f7a-a5b4-50c730f6c2ac"> -<Form> -<AUni ws="qvm-x-ach">ricra</AUni> -<AUni ws="qvm-x-acl">ricra</AUni> -<AUni ws="qvm-x-akh">rikra</AUni> -<AUni ws="qvm-x-akl">rikra</AUni> -<AUni ws="qvm-x-ame">rikra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="e832d969-21f5-4576-b3ed-3d8dc3d0e226" ownerguid="a9befe97-e7a8-4ceb-ba86-54cccacd9322"> -<Form> -<AUni ws="qvm-x-ach">abogädu</AUni> -<AUni ws="qvm-x-acl">abogädu; abogädu; abogädo</AUni> -<AUni ws="qvm-x-akh">abogädu</AUni> -<AUni ws="qvm-x-akl">abogädu; abogädu; abogädo</AUni> -<AUni ws="qvm-x-ame">abogädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e8337e5f-0a6c-4528-a16a-3f3966e24fa8" ownerguid="84f51fe0-8945-43fc-b837-167eecb147d2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">escuchar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9b8c273a-4c6b-481a-929b-f808852f515b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="e834460f-6592-4e5f-97e3-43583a6eca73" ownerguid="d2c60050-78fc-44f0-bb3b-0da859df0a03"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">message</AUni> -<AUni ws="es">mensaje</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ed090485-1fae-44c3-97d7-8973101a206a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e835155c-8c66-43d8-b109-188a02dfa990"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pucsu</AUni> -<AUni ws="qvm-x-acl">pucsu; pucsu; pucso</AUni> -<AUni ws="qvm-x-akh">puksu</AUni> -<AUni ws="qvm-x-akl">puksu; puksu; pukso</AUni> -<AUni ws="qvm-x-ame">puksu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puksu</AUni> -<AUni ws="qvm-x-acl">*puksu</AUni> -<AUni ws="qvm-x-akh">*puksu</AUni> -<AUni ws="qvm-x-akl">*puksu</AUni> -<AUni ws="qvm-x-ame">*puksu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.982" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2862d41b-cc80-4c63-8e60-755a72e501b0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puksu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="57fd583d-878e-4e7c-85d8-956d9cd8df93" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="06275a05-9e2b-47e2-a3f2-3e5c67393660" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puksu 
\entryTyp root 
\gENG hole 
\gSPN poso 
\e *puksu 
\c N0 
\ach pucsu 
\akh puksu 
\acl pucsu / _# 
\acl pucsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pucso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl puksu / _# 
\akl puksu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pukso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame puksu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="e83586c6-8d8e-4a23-bdda-a1731a5ece22" ownerguid="85214614-ab45-4805-9014-092750d47511"> -<Abbreviation> -<AUni ws="en">4.7.5.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to defending someone who has been accused of breaking a law.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33W' Defend, Excuse</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Defend against accusation</AUni> -</Name> -<Questions> -<objsur guid="373e4115-9c10-4839-bac6-dd388713efd6" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="243d8a57-d5ed-4d7f-bd5e-f2605634f0fc" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="e83698b6-a3be-42b4-881f-10382f4514c6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">upacuru</AUni> -<AUni ws="qvm-x-acl">upacuru; upacuru; upacuro</AUni> -<AUni ws="qvm-x-akh">upakuru</AUni> -<AUni ws="qvm-x-akl">upakuru; upakuru; upakuro</AUni> -<AUni ws="qvm-x-ame">upakuru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*upakuru</AUni> -<AUni ws="qvm-x-acl">*upakuru</AUni> -<AUni ws="qvm-x-akh">*upakuru</AUni> -<AUni ws="qvm-x-akl">*upakuru</AUni> -<AUni ws="qvm-x-ame">*upakuru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.241" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7b7dc0a9-e18f-4d53-a9b0-58bb805fbebe" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*upakuru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4d6cb4ec-ddb6-4208-9809-9a5caf9a8c24" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6e10f3df-c617-439d-9b98-e16ad2ed9471" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *upakuru 
\entryTyp root 
\gENG 
\gSPN 
\e *upakuru 
\c N0 
\ach upacuru 
\akh upakuru 
\acl upacuru / _# 
\acl upacuru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl upacuro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl upakuru / _# 
\akl upakuru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl upakuro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame upakuru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="e836b01b-6c1a-4d41-b90a-ea5f349f88d4" ownerguid="999581c4-1611-4acb-ae1b-5e6c1dfe6f0c"> -<Abbreviation> -<AUni ws="en">1.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.916" /> -<DateModified val="2022-9-23 16:55:7.916" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the air around us, including the air we breathe and the atmosphere around the earth.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>2B Air</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Air</AUni> -</Name> -<Questions> -<objsur guid="4f6e5099-57d8-412e-adea-8c0bd816941a" t="o" /> -<objsur guid="7c96c872-3a70-46ad-9c74-7dc660b0d4c6" t="o" /> -<objsur guid="5849ac09-f0f1-44b9-8450-532a8d70e449" t="o" /> -<objsur guid="b0dd78ca-033a-4ae3-aa00-1f5ca3070072" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="34c3edad-a158-44e7-989b-5b74401e6945" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="18595df7-1c69-40db-a7c1-74d490115c0c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="e8376733-8ed4-4af1-ac28-8eb6bf2a5461" ownerguid="31e0fde8-b3ab-47ae-b791-54309e6ed0bd"> -<ExampleWords> -<AUni ws="en">modern, up-to-date, advanced, sophisticated, high-tech, state-of-the-art, be ahead of its time, at the leading edge of, at the cutting edge of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a modern machine or system?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e8380635-6b97-44b4-a56f-531821ce4743" ownerguid="6804db44-b71b-4452-98b1-b726bc7cf022"> -<ExampleWords> -<AUni ws="en">get louder, sound grows, raise your voice, speak up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to becoming louder?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e83d3498-3ef2-4aba-a01b-3cbfa0eac18a" ownerguid="1985220b-1adf-45db-b8af-6d7bf464d86e"> -<Form> -<AUni ws="qvm-x-ach">arroz</AUni> -<AUni ws="qvm-x-acl">arroz</AUni> -<AUni ws="qvm-x-akh">arroz</AUni> -<AUni ws="qvm-x-akl">arroz</AUni> -<AUni ws="qvm-x-ame">arroz</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e83fcc47-497c-43fe-9a82-38f0f1406548" ownerguid="c82fa28f-7e26-489e-a244-4d69cea87b94"> -<ExampleWords> -<AUni ws="en">work, labor, toil</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to work?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e840e586-63af-4585-b0c7-d514f390769f" ownerguid="bf930956-33c5-4d06-b6b4-59a555607478"> -<Form> -<AUni ws="qvm-x-ach">empaña</AUni> -<AUni ws="qvm-x-acl">empaña</AUni> -<AUni ws="qvm-x-akh">empaña</AUni> -<AUni ws="qvm-x-akl">empaña</AUni> -<AUni ws="qvm-x-ame">empaña</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e846c82b-d0d2-4fd7-a203-b06f351dace1" ownerguid="16d2c60a-52d7-4ec5-a5b1-c559dc078bf3"> -<ExampleWords> -<AUni ws="en">police station, precinct, beat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) Where do the police work?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e846f55c-b090-40eb-b10b-fefcc038768c" ownerguid="f94e9041-49b0-4d25-aa54-9446c5ab45f4"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">I couldn't do that, so I did this <instead>.; I did this <instead of> that.; I want this <rather than> that.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">instead, rather than, in place of, in preference to, in favor of, in lieu</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is true of one thing instead of another thing?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="e848aa10-3dc3-49df-9447-17855e8391e1"> -<Analyses> -<objsur guid="f85d098c-f4f9-4890-bbc1-02d70546fdd3" t="o" /> -</Analyses> -<Checksum val="-284768579" /> -<Form> -<AUni ws="qvm-x-akh">mana</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="e84c68d7-7b45-45bc-a3ea-6b8676c14233"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pachga</AUni> -<AUni ws="qvm-x-acl">pachga</AUni> -<AUni ws="qvm-x-akh">pachqa</AUni> -<AUni ws="qvm-x-akl">pachqa</AUni> -<AUni ws="qvm-x-ame">pachqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*patrqa</AUni> -<AUni ws="qvm-x-acl">*patrqa</AUni> -<AUni ws="qvm-x-akh">*patrqa</AUni> -<AUni ws="qvm-x-akl">*patrqa</AUni> -<AUni ws="qvm-x-ame">*patrqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.769" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8b97c15c-a905-4c5e-a79b-766358f7dedb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*patrqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c2e2f6dc-5c3c-4d59-a77d-3222c9f42d72" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3b01e95a-ca9c-4922-ab0b-66872acc6c51" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *patrqa 
\entryTyp root 
\gENG shell.beans 
\gSPN pelar.habas 
\e *patrqa 
\c V2 
\ach pachga 
\akh pachqa 
\acl pachga 
\akl pachqa 
\ame pachqa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="e84f26c6-fd3f-457c-9d99-d73b881025c4" ownerguid="1f8c5066-62ff-4727-b478-52c4e4bcbc3a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Deu 18.11 Majiquërupis ni chagchapacogpis ama capäcunquitsu.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="e85086f7-9336-4b01-bee3-4ff962fdb64a" ownerguid="42471d90-8ba5-45c1-b7bb-d1006b88911e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">four</AUni> -<AUni ws="es">cuatro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="507a1cdf-5a27-49e6-94c6-b2742d033113" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="e8513273-ae19-456a-a9de-ef51bacedaf3" ownerguid="da066ca6-9a83-4438-bb50-f98f0d18e877"> -<Form> -<AUni ws="qvm-x-ach">shulwa; shulwä</AUni> -<AUni ws="qvm-x-acl">shulwa; shulwä</AUni> -<AUni ws="qvm-x-akh">shulwa; shulwä</AUni> -<AUni ws="qvm-x-akl">shulwa; shulwä</AUni> -<AUni ws="qvm-x-ame">shulwa; shulwä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e8565185-621c-4a83-a90d-86b7845065f8" ownerguid="c753fc8b-22ae-4e71-807f-56fb3ebd3cdd"> -<ExampleWords> -<AUni ws="en">sex, intercourse, sexual relations, conjugal rights, marital rights, union</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to sexual relations?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e857f049-bf35-472e-87b8-ebd2a462a0af" ownerguid="0a1ad4c9-8bf3-448b-a27f-611813b305de"> -<ExampleWords> -<AUni ws="en">underlying, nether</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that is under another thing?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e8586039-5b46-4c5c-9c1b-0b7685121aea"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uyti</AUni> -<AUni ws="qvm-x-acl">uyti; uyti; uyte</AUni> -<AUni ws="qvm-x-akh">uyti</AUni> -<AUni ws="qvm-x-akl">uyti; uyti; uyte</AUni> -<AUni ws="qvm-x-ame">uyti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uyti.n</AUni> -<AUni ws="qvm-x-acl">*uyti.n</AUni> -<AUni ws="qvm-x-akh">*uyti.n</AUni> -<AUni ws="qvm-x-akl">*uyti.n</AUni> -<AUni ws="qvm-x-ame">*uyti.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.312" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5df043bc-f2d9-474c-891f-84437cb1950c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uyti.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bd5658dc-eed9-452f-9cd8-b367946c207e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1d166d63-d57a-4bd5-a5a1-9e4ff9a3c1de" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uyti.n 
\entryTyp root 
\gENG 
\gSPN 
\e *uyti.n 
\c N0 
\mp +FinalI 
\ach uyti 
\akh uyti 
\acl uyti / _# 
\acl uyti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl uyte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl uyti / _# 
\akl uyti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl uyte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame uyti 
\i 2Sa 3.22 Davidwan parlashganpita Abner yarguriptilannami Davidpa soldäduncunawan Joab chayargan guërracho guechumushgancunata uytila guepin aprishga.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e8589085-b03f-4853-8ad8-f96e58ec6a7f" ownerguid="1a8322d7-cda9-41e5-a14b-f41274cb7157"> -<ExampleWords> -<AUni ws="en">right</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the right side?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e85c5d67-daf6-4058-b7b4-646853777ed9" ownerguid="84a817f1-0231-4d9e-8427-162a9b850f17"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sword</AUni> -<AUni ws="es">espada</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4f172998-8a1e-4621-b88f-8e847b092a4b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e8615c64-73c9-4153-b874-3b214e6a6bc2" ownerguid="9ec62ffe-69be-4b9b-944c-29a0f4f133db"> -<ExampleWords> -<AUni ws="en">accident, crash, wreck, pile-up, collision</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to an accident involving vehicles?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="e86364ac-6fa1-4aad-a6c1-068d56b6a1f1" ownerguid="c05bf8c3-78f2-4ec5-b0d7-32d4963a5794"> -<Abbreviation> -<AUni ws="en">8.3.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.619" /> -<DateModified val="2022-9-23 16:55:8.619" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that describe something that is strong--not easily broken.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79M Strong, Weak</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Strong, brittle</AUni> -</Name> -<Questions> -<objsur guid="843ccd30-f487-4d74-a937-8698416a4fa4" t="o" /> -<objsur guid="e7559027-d38e-4d56-b294-12126dad1d18" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="e869925b-126f-494c-b59b-39dc4a0e04ed" ownerguid="d7a7c02b-d75c-4b00-a9a6-942ee64e8c57"> -<Form> -<AUni ws="qvm-x-ach">chaya</AUni> -<AUni ws="qvm-x-acl">chaya</AUni> -<AUni ws="qvm-x-akh">chaya</AUni> -<AUni ws="qvm-x-akl">chaya</AUni> -<AUni ws="qvm-x-ame">chaya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="e86a1160-ecf9-45d0-b55f-8ae9b418048e" ownerguid="89d7c6a6-8be7-4bfe-910b-56a1132456cc"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" t="r" /> -</Morph> -<Msa> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="e86b3745-4b6c-4a5f-86dc-c71b10268ec8" ownerguid="156f3065-28b0-4549-96f8-63532853dbf5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e86f611f-0437-4112-bed2-e65762d799ea" ownerguid="8497fb66-8b91-46b9-a0d5-fb9385319561"> -<ExampleWords> -<AUni ws="en">taste like, taste of, taste (good/bad), have a (good/bad) taste, (good/bad) tasting, flavored</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words indicate that something tastes like another thing or tastes a particular way?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e86fac69-1362-49c1-82f9-07616daf2bb9" ownerguid="cc36af80-42a1-4356-a9d2-2f517b12b3bc"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e872023d-4047-41cd-a5bf-cdfef4ac2fff"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wina</AUni> -<AUni ws="qvm-x-acl">wina</AUni> -<AUni ws="qvm-x-akh">wina</AUni> -<AUni ws="qvm-x-akl">wina</AUni> -<AUni ws="qvm-x-ame">wina</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wiña</AUni> -<AUni ws="qvm-x-acl">*wiña</AUni> -<AUni ws="qvm-x-akh">*wiña</AUni> -<AUni ws="qvm-x-akl">*wiña</AUni> -<AUni ws="qvm-x-ame">*wiña</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.668" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="12bf3607-e1f1-409f-900a-f24a7e37a187" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wiña</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="99110d35-7714-4daf-b5be-3585aef89f9b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4e9ad6cc-9a7f-458a-b894-ed2f4dd24a40" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wiña 
\entryTyp root 
\gENG add 
\gSPN echar 
\e *wiña 
\c V2 
\ach wina 
\akh wina 
\acl wina 
\akl wina 
\ame wina</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e872d9c3-c204-4fd3-98b2-693771df04a6" ownerguid="92ff5d9a-21a8-440b-b10d-d98675987524"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="ce37dc57-b456-4ff1-91f6-969f7f6bed34" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="ced43338-92d0-453e-a11c-ddc5ecec5a90" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e872f8b8-5faa-4e48-9f86-8c749ed91f05" ownerguid="1017cbc3-0dfb-4930-9881-28f96784035c"> -<ExampleWords> -<AUni ws="en">speed, pace, rate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to how fast something is moving?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e873108d-6afa-42bb-b649-a81390e866c8" ownerguid="1c166923-c2c1-404e-9b84-fc6c96816fc7"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e873873c-1f6f-41d9-8496-fce43cb14de6" ownerguid="4613da0f-fc0f-4807-9538-227bd9c2a42e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">grandfather</AUni> -<AUni ws="es">abuelo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d231c461-b7d2-477b-b126-da4ab6f4e2a5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="e87576fd-64f5-467e-bd32-12b4e4ab298c" ownerguid="4f40d752-0b59-4130-8ebf-13dc74065d16"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e8763279-178f-422b-8fbd-88bd095206fa" ownerguid="99861dcb-c6ca-4e50-a19a-efadbb10c2cf"> -<ExampleWords> -<AUni ws="en">outgrow, outlive, outwear</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to something being older than other things like it?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e879b38d-6580-4f3e-a26b-1be95db5e1fa" ownerguid="7cf4f041-38f3-4f45-8dd1-0c2641702518"> -<Form> -<AUni ws="qvm-x-ach">malag</AUni> -<AUni ws="qvm-x-acl">malag</AUni> -<AUni ws="qvm-x-akh">malaq</AUni> -<AUni ws="qvm-x-akl">malaq</AUni> -<AUni ws="qvm-x-ame">malaq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="e87b0d47-6e52-42a5-9c14-6b35e317ebd2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsimpa</AUni> -<AUni ws="qvm-x-acl">tsimpa</AUni> -<AUni ws="qvm-x-akh">tsimpa</AUni> -<AUni ws="qvm-x-akl">tsimpa</AUni> -<AUni ws="qvm-x-ame">tsimpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chimpa.n</AUni> -<AUni ws="qvm-x-acl">*chimpa.n</AUni> -<AUni ws="qvm-x-akh">*chimpa.n</AUni> -<AUni ws="qvm-x-akl">*chimpa.n</AUni> -<AUni ws="qvm-x-ame">*chimpa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.305" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="93ec5d47-19ad-4971-94ea-185d0c70ce59" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chimpa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="41773ee3-d7b5-4ae9-a0ff-cb164979b5b7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6cbbedaa-0614-4c67-aa96-3680df45b24f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chimpa.n 
\entryTyp root 
\gENG other.side 
\gSPN banda 
\e *chimpa.n 
\c N0 
\ach tsimpa 
\akh tsimpa 
\acl tsimpa 
\akl tsimpa 
\ame tsimpa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e87daeff-112f-47b4-8b55-bbe9940bcf21" ownerguid="10629560-8228-47ed-a541-6fd1dc3c7369"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gossip</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="91e4b4d0-9b18-4d98-8b26-bf260a01d8ab" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e87e4180-6340-4abf-8ff0-b5f19ec0ea71" ownerguid="8b76f4a2-9926-4c76-8d4f-563371683219"> -<ExampleWords> -<AUni ws="en">acid, base, alkali, biochemical, organic, inorganic, synthetic, plastic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What types of chemicals are there?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="e87e81b2-43cb-490a-96b6-336fdc89e5c6" ownerguid="4231feeb-d7d1-4f48-907e-6cbe21827c29"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ku</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ku</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2b952a19-fce6-44e5-ab25-c091ef27f843" t="r" /> -</Morph> -<Msa> -<objsur guid="61404706-fdaf-4a0b-9fb5-b44857e620d2" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="e887448e-059f-49a8-af98-33994fc95b54" ownerguid="c0e232e4-df59-4033-85e4-4c55de8720e1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">do.not</AUni> -<AUni ws="es">¡no!</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="43d1bf5f-8105-4ae5-ac43-5b7649c64552" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e8885d48-8f1a-4d0d-a9b2-658ec47db913" ownerguid="83899b19-8b39-4bf0-b124-4c6188569ec8"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Two <plus> two is four.; Two <and> two makes four.; Two <added to> two equals four.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">plus, and, added to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words are used for addition equations?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e88bdf5a-590d-43c9-b964-845f8ef04beb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">la:tigu</AUni> -<AUni ws="qvm-x-acl">la:tigu; la:tigu; la:tigo</AUni> -<AUni ws="qvm-x-akh">la:tigu</AUni> -<AUni ws="qvm-x-akl">la:tigu; la:tigu; la:tigo</AUni> -<AUni ws="qvm-x-ame">la:tigu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+látigo</AUni> -<AUni ws="qvm-x-acl">+látigo</AUni> -<AUni ws="qvm-x-akh">+látigo</AUni> -<AUni ws="qvm-x-akl">+látigo</AUni> -<AUni ws="qvm-x-ame">+látigo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.630" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="64866e37-4f5c-48ca-b2a3-3cb4fff32ae1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+látigo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="193f6362-cc2d-4723-9949-afc0692c28be" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="81190b38-dbe3-4965-b8c4-8efc2859eec6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +látigo 
\entryTyp root 
\gENG 
\gSPN 
\e +látigo 
\c N0 
\ach la:tigu 
\akh la:tigu 
\acl la:tigu / _# 
\acl la:tigu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl la:tigo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl la:tigu / _# 
\akl la:tigu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl la:tigo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame la:tigu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="e88d17e1-259f-4b13-a633-f0195dc17e29"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">dicta</AUni> -<AUni ws="qvm-x-acl">dicta</AUni> -<AUni ws="qvm-x-akh">dicta</AUni> -<AUni ws="qvm-x-akl">dicta</AUni> -<AUni ws="qvm-x-ame">dicta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+dictar</AUni> -<AUni ws="qvm-x-acl">+dictar</AUni> -<AUni ws="qvm-x-akh">+dictar</AUni> -<AUni ws="qvm-x-akl">+dictar</AUni> -<AUni ws="qvm-x-ame">+dictar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.406" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="19e2dbf8-2a8c-4b95-8b91-2ae488cef46c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+dictar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="177a8506-aa3c-4f8a-8c44-1b3ea5edef5e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="48b6c56f-fd21-422f-80da-676d7c47160c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +dictar 
\entryTyp root 
\gENG dictate 
\gSPN dictar 
\e +dictar 
\c V2 
\ach dicta 
\akh dicta 
\acl dicta 
\akl dicta 
\ame dicta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="e88d2480-6a87-45e4-ba93-59bdbea8b708"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">dios</AUni> -<AUni ws="qvm-x-acl">dios</AUni> -<AUni ws="qvm-x-akh">dios</AUni> -<AUni ws="qvm-x-akl">dios</AUni> -<AUni ws="qvm-x-ame">dios</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+dios</AUni> -<AUni ws="qvm-x-acl">+dios</AUni> -<AUni ws="qvm-x-akh">+dios</AUni> -<AUni ws="qvm-x-akl">+dios</AUni> -<AUni ws="qvm-x-ame">+dios</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.416" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b60ebd41-bbaa-4160-a99b-4fd1389c0eac" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+dios</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bf834835-602d-48e8-9f71-2316670e4fef" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0441441d-bb87-410b-818c-01fc54f95256" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +dios 
\entryTyp root 
\gENG God 
\gSPN Dios 
\e +dios 
\c N0 
\mp NeverChanged 
\ach dios 
\akh dios 
\acl dios 
\akl dios 
\ame dios 
\mp +FinalC 
\mcc +dios / ~_ [with]</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e88e5494-0f60-43fc-bcd2-5f1c3902a7da" ownerguid="8411fa09-b1a5-4b62-aa47-f28bee9f6616"> -<ExampleWords> -<AUni ws="en">invaluable, indispensable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is very useful?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e8932e52-ada4-4dd5-947e-091637d10051" ownerguid="14be4ae5-cbf8-4462-8c01-b5a9b761ada7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="e897efaa-f4e5-4bb3-82b5-53d7a443aafd" ownerguid="a39f772c-3e5b-48b6-b7bc-e8b00c6208ac"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e899f2b9-0495-4e34-b3e6-2a909b32b866"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maletín; maletin</AUni> -<AUni ws="qvm-x-acl">maletín; maletin</AUni> -<AUni ws="qvm-x-akh">maletín; maletin</AUni> -<AUni ws="qvm-x-akl">maletín; maletin</AUni> -<AUni ws="qvm-x-ame">maletín; maletin</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+maletín</AUni> -<AUni ws="qvm-x-acl">+maletín</AUni> -<AUni ws="qvm-x-akh">+maletín</AUni> -<AUni ws="qvm-x-akl">+maletín</AUni> -<AUni ws="qvm-x-ame">+maletín</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.283" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bbd46563-242d-4d18-9757-b52a0d68bad4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+maletín</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="49613aee-242c-4bba-9a59-86a3d4c8c47c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a597d8f2-868c-4450-9a8f-421b8426c381" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +maletín 
\entryTyp root 
\gENG suitcase 
\gSPN maletín 
\e +maletín 
\c N0 
\mp +FinalC 
\ach maletín / _# 
\ach maletin / ~_# 
\akh maletín / _# 
\akh maletin / ~_# 
\acl maletín / _# 
\acl maletin / ~_# 
\akl maletín / _# 
\akl maletin / ~_# 
\ame maletín / _# 
\ame maletin / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e89b6b90-2b1b-42b7-970b-fe3f749020c3" ownerguid="024ec8bc-fd9f-4f71-8e86-b4e1a027da53"> -<Form> -<AUni ws="qvm-x-ach">shiraca</AUni> -<AUni ws="qvm-x-acl">shiraca</AUni> -<AUni ws="qvm-x-akh">shiraka</AUni> -<AUni ws="qvm-x-akl">shiraka</AUni> -<AUni ws="qvm-x-ame">shiraka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e89d4046-1648-443b-a647-45c427f3ab88" ownerguid="66338f06-ea72-40e7-b1f4-276337f98641"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">once</AUni> -<AUni ws="es">antes</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e9ba62e4-8e91-40e2-83ae-0d7626648273" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoAffixAllomorph" guid="e89f4461-706d-4840-bf9f-bfa3b395d737" ownerguid="b7ad601f-b474-4bb3-94cb-2fdee7e3f23f"> -<Form> -<AUni ws="qvm-x-ach">päca</AUni> -<AUni ws="qvm-x-acl">päca</AUni> -<AUni ws="qvm-x-akh">päka</AUni> -<AUni ws="qvm-x-akl">päka</AUni> -<AUni ws="qvm-x-ame">päku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<MsEnvFeatures> -<objsur guid="90843854-fb29-42f2-90fa-2889ef8022b0" t="o" /> -</MsEnvFeatures> -</rt> -<rt class="WfiWordform" guid="e8a23135-d95e-4d2c-ae3c-0243fae06117"> -<Analyses> -<objsur guid="5151d545-a147-4c16-b63f-7a8bfeb75c3c" t="o" /> -</Analyses> -<Checksum val="73009871" /> -<Form> -<AUni ws="qvm-x-akh">yarparaykan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="e8a34518-90d5-4c31-a23f-892669f6ac30" ownerguid="bbd3c3f1-7387-4ec6-a75d-66c1355a94ef"> -<ExampleWords> -<AUni ws="en">horse, donkey, zebra, tapir, rhinoceros, elephant, pachyderm, onager</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What species of odd-toed hoofed animals are there?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e8a43b8e-2b95-4bc7-8d87-b6f726f809ba" ownerguid="2bdfe506-0a28-45bd-81e1-44dcedcc262a"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="e8a70fbc-2b48-46cc-b6cc-b601882c463b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guepa</AUni> -<AUni ws="qvm-x-acl">guepa</AUni> -<AUni ws="qvm-x-akh">qepa</AUni> -<AUni ws="qvm-x-akl">qepa</AUni> -<AUni ws="qvm-x-ame">qipa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qipa</AUni> -<AUni ws="qvm-x-acl">*qipa</AUni> -<AUni ws="qvm-x-akh">*qipa</AUni> -<AUni ws="qvm-x-akl">*qipa</AUni> -<AUni ws="qvm-x-ame">*qipa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.195" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7da5872c-527d-4ca1-a704-87665a230bff" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qipa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c31288eb-6b87-487f-95fe-7150060a5d81" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7308b92d-a9b7-4166-8fa6-4dcac061dbc2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qipa 
\entryTyp root 
\gENG behind 
\gSPN atrás 
\e *qipa 
\c N0 
\ach guepa 
\akh qepa 
\acl guepa 
\akl qepa 
\ame qipa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e8a90c71-c88f-45ca-9fae-41bf9d0d5474" ownerguid="5238fe9c-4bbe-444c-b5f6-18f946b3d6aa"> -<ExampleWords> -<AUni ws="en">take someone's temperature</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to measuring someone's fever?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e8a9ea69-c72b-4253-82bb-9e41e1e815ef" ownerguid="295dc021-5b50-47b3-8340-1631c6d6fadc"> -<ExampleWords> -<AUni ws="en">uncomfortable, discomfort</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to not feeling comfortable?</AUni> -</Question> -</rt> -<rt class="StTxtPara" guid="e8ad725e-f35c-4639-be1a-ef5eab3b500e" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">qarqukutsin</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="d0e3738f-bfdb-43ec-9130-9da29badafe8" t="o" /> -</Segments> -</rt> -<rt class="CmDomainQ" guid="e8aeb8d1-3a78-4b51-bb82-3939b6487df3" ownerguid="7cf6312e-f9f0-49e8-ae60-7677fac86c3f"> -<ExampleWords> -<AUni ws="en">remainder, difference</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the answer?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e8afd4dd-752e-4a64-8ddc-32b92248f1e6" ownerguid="ab8f12fb-57b0-4d61-8ae0-50d7cbc412df"> -<ExampleWords> -<AUni ws="en">frost</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to frost (frozen dew)?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e8b60316-f643-448b-9a60-60bffc9ea560" ownerguid="29f0d6e7-da4c-4fde-85f2-28b642df1d6f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V2 V2/V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="a02d7edb-9233-4f10-a27c-4516ec05b0db" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">BEN1</AUni> -<AUni ws="es">BEN1</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0dcd7049-8472-4f62-ab4f-e3cdb41b8742" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="e8b72fe0-a1f1-4a66-a486-e391e497b6fe" ownerguid="1cb3c52e-5952-4aaf-82af-91b8d2c2b199"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="e8b765be-2769-4145-855b-1bf2286e6e14" ownerguid="7ac829d3-c7e9-4566-b15e-0ba29ecadba2" /> -<rt class="StTxtPara" guid="e8b77d6a-f431-4f37-a995-b784cf18be2a" ownerguid="bf3f1d61-0fb7-4d38-ad7b-0e74c2659ac5"> -<Contents> -<Str> -<Run ws="qvm-x-akh">Tsaymi väsuwan vïnuta yapay sirvinkipaq.</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="02305051-3ebf-4f56-a38c-5655bf12b76c" t="o" /> -</Segments> -</rt> -<rt class="WfiMorphBundle" guid="e8b844d0-61d1-4178-bd8d-39f0143b9963" ownerguid="a81b4f8f-2c46-4c9a-9640-8b7bad9360f1"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" t="r" /> -</Morph> -<Msa> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="e8c77991-dcd9-4ce9-b3dc-1b14f41a4bd5" ownerguid="be3559d9-d69f-4e06-8184-071c35aa2e10"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The door opened <by itself>.; Goodness <is its own reason>.</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(3) What words indicate that something is self-caused?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e8cd344e-17ae-475f-a09b-6525f60bb5f6" ownerguid="aa3f7eae-01c2-4fb6-85b1-bf00f119ae38"> -<Form> -<AUni ws="qvm-x-ach">alish</AUni> -<AUni ws="qvm-x-acl">alish</AUni> -<AUni ws="qvm-x-akh">alish</AUni> -<AUni ws="qvm-x-akl">alish</AUni> -<AUni ws="qvm-x-ame">alish</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="e8cde0de-df27-4d67-b752-096b19449948" ownerguid="99c59650-b088-4fa2-ab0e-db000d670f1f"> -<Form> -<AUni ws="qvm-x-ach">navida; navidä</AUni> -<AUni ws="qvm-x-acl">navida; navidä</AUni> -<AUni ws="qvm-x-akh">navida; navidä</AUni> -<AUni ws="qvm-x-akl">navida; navidä</AUni> -<AUni ws="qvm-x-ame">navida; navidä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="e8d2a27f-1f55-479d-82f8-0ee1974ddef7" ownerguid="b45ea8c7-35ba-464c-98c1-b2a711140dbf"> -<Form> -<AUni ws="qvm-x-ach">tanga</AUni> -<AUni ws="qvm-x-acl">tanga</AUni> -<AUni ws="qvm-x-akh">tanqa</AUni> -<AUni ws="qvm-x-akl">tanqa</AUni> -<AUni ws="qvm-x-ame">tanqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="e8d7775a-6b80-4740-ab32-93878969fdb2" ownerguid="2ef711fc-a58a-4ceb-b48a-7e1fc71ec429"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pag</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pag</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">paq</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">paq</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">paq</Run> -</AStr> -</Form> -<Morph> -<objsur guid="388870a0-cbff-40e3-86fa-e65b7a346d7f" t="r" /> -</Morph> -<Msa> -<objsur guid="aafa5d02-399a-4048-b045-4c82d08978e0" t="r" /> -</Msa> -<Sense> -<objsur guid="fd354ec3-02ac-484c-9214-5d64e394463b" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="e8d8e6d1-cb6a-43b4-ae0e-5eb49d4ddd90" ownerguid="51b16b91-7097-4e98-a371-4c32f2c566e1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="e8d97506-c52e-4dd0-9558-fdf342244b2a" ownerguid="a4c64fcf-79d7-4fdc-a32c-b86d1be35568"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e8e32301-c5c7-457c-bf5c-1a8bff8fc179" ownerguid="269a8ca0-f9ef-4958-8aaf-b1443a7357fb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="f19245c4-aced-48cc-bbe7-2afce1d5451e" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="7fb549a8-ad90-4405-b1cb-bbec85bf82f9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e8e449b7-3311-46e3-979a-78fbc8cf1748" ownerguid="57f07b5f-75bf-4565-b969-ce0adc0b50d4"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Two <multiplied by> two equals four.; Two <times> two makes four.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">multiplied by, times</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used for multiplication equations?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="e8e5317a-1edd-4bf3-a3bb-924249dd0717"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">Test</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="e8e7599a-df43-4ab5-b59a-7fcebcb94a7a" ownerguid="9a456463-3c71-4f9a-8117-dc2fcb087bd3"> -<ExampleWords> -<AUni ws="en">fan a fire, fan into flames, blow on a fire, bellows, pump bellows</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to blowing on a fire to make it bigger?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e8ea88cb-a60b-44ef-83dc-2fc612645bda" ownerguid="b47d2604-8b23-41e9-9158-01526dd83894"> -<ExampleWords> -<AUni ws="en">the whole world, the entire earth, all over the world, round the world</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words are used to talk about the whole world, all the countries, or all the people?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="e8ec3885-c692-4b90-a5b3-4c86da642666" ownerguid="69541573-f845-4e77-91f6-1e3551fc6c82"> -<Abbreviation> -<AUni ws="en">9.7.2.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.731" /> -<DateModified val="2022-9-23 16:55:8.731" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the proper names of the rivers in the language area. Only include the names of rivers outside the language area if your language has borrowed or adapted the name and you talk about them in your language.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Names of rivers</AUni> -</Name> -<Questions> -<objsur guid="7b2b2e08-9cbc-4c57-9297-171c2a2e40dc" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="e8eda55b-41e2-4c8a-8f2f-d9a883752a7c" ownerguid="2c322d8b-d762-43ce-b905-aab41f9c7bbb"> -<ExampleWords> -<AUni ws="en">fruit bat, vampire bat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of bats are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e8f091e9-5291-4fc9-a4a9-5da4f012b309" ownerguid="b015f460-faeb-4aa5-b453-9e5e9ae061fe"> -<ExampleWords> -<AUni ws="en">be on the way out, fall into disuse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something becoming old fashioned?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e8f1e247-34af-4444-ba4b-5d46a074e4be" ownerguid="aec8c246-0ef7-414a-94a6-b9fdd6812a7c"> -<ExampleWords> -<AUni ws="en">working class, lower class, the masses, blue-collar, humble, popular, underclass, your inferiors, poor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a person belonging to a lower class?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e8f51b29-7476-40b5-ae1f-9e3f897cffb9" ownerguid="962941b2-66bd-437f-aadc-b1921bcae5b4"> -<ExampleWords> -<AUni ws="en">toxic substance, insecticide</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What types of poison affect the skin?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e8f5f1cc-327f-4205-98f5-89dfdee9fad4" ownerguid="ebc236df-9c56-400c-8715-c20015701b3b" /> -<rt class="LexSense" guid="e8fa9212-48ba-4989-8941-8bf692a062e5" ownerguid="65f09e08-0ad8-4540-a584-a3723218b553"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="63faaa79-3c79-45ef-a968-888145d328f6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="Segment" guid="e8fbdae7-f182-48be-810d-8bc55dc312c6" ownerguid="270c1729-7810-46f0-8bc7-9ed215380f89"> -<Analyses> -<objsur guid="3c9a1f95-f07d-4163-8149-ab0f7452262b" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexEntry" guid="e8fe404b-22ae-4e2b-bb69-426a58f2f72f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shucucuy</AUni> -<AUni ws="qvm-x-acl">shucucuy</AUni> -<AUni ws="qvm-x-akh">shukukuy</AUni> -<AUni ws="qvm-x-akl">shukukuy</AUni> -<AUni ws="qvm-x-ame">shukukuy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shukukuy</AUni> -<AUni ws="qvm-x-acl">*shukukuy</AUni> -<AUni ws="qvm-x-akh">*shukukuy</AUni> -<AUni ws="qvm-x-akl">*shukukuy</AUni> -<AUni ws="qvm-x-ame">*shukukuy</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.622" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8ed15e03-c5ee-480b-ad4a-d5f185af3a0f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shukukuy</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0a98fdc2-e713-4f67-87cf-90aea29f99b4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c7647fb3-2fdb-4ea9-b1ea-7de2fc5bcbe9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shukukuy 
\entryTyp root 
\gENG 
\gSPN 
\e *shukukuy 
\c N0 
\mp +FinalC 
\ach shucucuy 
\akh shukukuy 
\acl shucucuy 
\akl shukukuy 
\ame shukukuy</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e8fe45e4-1d3b-4419-b6c3-a471377f2baf" ownerguid="20baa5e7-4f02-4782-a292-c6281d7b5f3a"> -<ExampleWords> -<AUni ws="en">pressure, put pressure on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What words refer to how hard you push?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e8fe8ec5-3a62-433e-9196-002681ccd441" ownerguid="4d92f3ec-8a5d-4468-84c0-01ae89ab3ca9"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e9048c15-09b9-4140-8df6-91a72f1f4a36" ownerguid="9b476afd-58c2-46a2-8294-449ac4aad3a9"> -<ExampleWords> -<AUni ws="en">god shelf, shrine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) Where are idols placed?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e9062ad5-194c-4a19-8a5a-7d96b1ce0653" ownerguid="899c0ce1-dd5f-4e39-8e71-ab2acec295b9"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e90cf8e1-2e25-49dd-97cd-c749b5392667"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">muna</AUni> -<AUni ws="qvm-x-acl">muna</AUni> -<AUni ws="qvm-x-akh">muna</AUni> -<AUni ws="qvm-x-akl">muna</AUni> -<AUni ws="qvm-x-ame">muna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*muna</AUni> -<AUni ws="qvm-x-acl">*muna</AUni> -<AUni ws="qvm-x-akh">*muna</AUni> -<AUni ws="qvm-x-akl">*muna</AUni> -<AUni ws="qvm-x-ame">*muna</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.497" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d6252007-5d27-4651-a4a7-2e3bca7fa8cd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*muna</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e9be37cd-de45-4bfb-bd28-63cbb1e95bd2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="88667a80-5f1c-4291-9d85-7a2f25a0b56a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *muna 
\entryTyp root 
\gENG want 
\gSPN querer 
\e *muna 
\c V2 
\ach muna 
\akh muna 
\acl muna 
\akl muna 
\ame muna</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="e90dcf43-9981-40d3-a399-5cc67d56a0d8" ownerguid="3aad1996-7180-45d0-a76d-6580ea53ab20"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="e90eb1d3-6647-4bd0-b55f-4b5a989058f8" ownerguid="66abfbe5-e011-48de-8773-905f1b1ce215"> -<ExampleWords> -<AUni ws="en">ceramics, pottery, clay pot, clay pipe, clay idol, brick, tile</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What things are made out of clay?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e90f63fe-8dda-40cd-9e90-18dd139bb726" ownerguid="7f576a15-fb83-4c35-a708-7d10404522ba"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e9136a3a-1564-4822-99ae-e70c050441d7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tayta</AUni> -<AUni ws="qvm-x-acl">tayta</AUni> -<AUni ws="qvm-x-akh">tayta</AUni> -<AUni ws="qvm-x-akl">tayta</AUni> -<AUni ws="qvm-x-ame">tayta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tayta.1</AUni> -<AUni ws="qvm-x-acl">*tayta.1</AUni> -<AUni ws="qvm-x-akh">*tayta.1</AUni> -<AUni ws="qvm-x-akl">*tayta.1</AUni> -<AUni ws="qvm-x-ame">*tayta.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.845" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="71ba1110-16bd-452a-a0d0-b01562159b18" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tayta.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9434cf79-4760-4a13-a2cc-e97e30895fb6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3ce3ede3-91ad-40e5-ae8f-39f4466993b3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tayta.1 
\entryTyp root 
\gENG sir 
\gSPN señor 
\e +taita.1 
\c N0 
\mp +assimilated 
\ach tayta 
\akh tayta 
\acl tayta 
\akl tayta 
\ame tayta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e9154280-f82e-445f-8700-b610d772df34" ownerguid="e7f301c7-b8d1-4696-b030-b06755ef28dc"> -<Form> -<AUni ws="qvm-x-ach">garga</AUni> -<AUni ws="qvm-x-acl">garga</AUni> -<AUni ws="qvm-x-akh">qarqa</AUni> -<AUni ws="qvm-x-akl">qarqa</AUni> -<AUni ws="qvm-x-ame">qarqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<StemName> -<objsur guid="a177c679-0e2b-4632-9f01-6391c5a4a352" t="r" /> -</StemName> -</rt> -<rt class="MoStemMsa" guid="e91575ef-4968-475a-9852-f0cf1448145d" ownerguid="381f5b16-0dd9-402b-bd55-1fc5f5d3e8e6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e916fa72-0848-4f7c-b412-8dfcfd814b0f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cumplimientu; cumplimiento</AUni> -<AUni ws="qvm-x-acl">cumplimientu; cumplimientu; cumplimiento</AUni> -<AUni ws="qvm-x-akh">cumplimientu; cumplimiento</AUni> -<AUni ws="qvm-x-akl">cumplimientu; cumplimientu; cumplimiento</AUni> -<AUni ws="qvm-x-ame">cumplimientu; cumplimiento</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cumplimiento</AUni> -<AUni ws="qvm-x-acl">+cumplimiento</AUni> -<AUni ws="qvm-x-akh">+cumplimiento</AUni> -<AUni ws="qvm-x-akl">+cumplimiento</AUni> -<AUni ws="qvm-x-ame">+cumplimiento</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.244" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4f4b55ca-f567-412e-a6a0-cd9d738f5997" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cumplimiento</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8f193636-44cf-44c2-ab9c-bd799bce875d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2997c7e0-7852-4b1e-86bc-d078ee533eba" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cumplimiento 
\entryTyp root 
\gENG obligation 
\gSPN cumplimiento 
\e +cumplimiento 
\c N0 
\ach cumplimientu / ~_# 
\ach cumplimiento / _# 
\akh cumplimientu / ~_# 
\akh cumplimiento / _# 
\acl cumplimientu / ~_# 
\acl cumplimientu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cumplimiento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cumplimientu / ~_# 
\akl cumplimientu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cumplimiento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cumplimientu / ~_# 
\ame cumplimiento / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="e916fa80-99de-497b-b69a-0191102c4e62"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">suma; suma:</AUni> -<AUni ws="qvm-x-acl">suma; suma:</AUni> -<AUni ws="qvm-x-akh">suma; suma:</AUni> -<AUni ws="qvm-x-akl">suma; suma:</AUni> -<AUni ws="qvm-x-ame">suma; suma:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*suma:.v1</AUni> -<AUni ws="qvm-x-acl">*suma:.v1</AUni> -<AUni ws="qvm-x-akh">*suma:.v1</AUni> -<AUni ws="qvm-x-akl">*suma:.v1</AUni> -<AUni ws="qvm-x-ame">*suma:.v1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.744" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cb0c9332-7220-4401-8ffa-916e860cf2c6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*suma:.v1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="68617e0d-8f16-4922-87e0-6316bf21e76a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d55feeef-8433-42e4-b3b1-35ac0fa1c807" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *suma:.v1 
\entryTyp root 
\gENG 
\gSPN alagar 
\e *suma:.v1 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach suma foreshortened 
\ach suma: 
\akh suma foreshortened 
\akh suma: 
\acl suma foreshortened 
\acl suma: 
\akl suma foreshortened 
\akl suma: 
\ame suma foreshortened 
\ame suma: 
\mcc *suma:.v1 / ~_[q] 
\mcc *suma:.v1 / ~_ 1 TOP</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e9171333-0e3f-45b2-a402-beed423bdd77" ownerguid="8778e450-62bd-4f38-b2f2-1b74cb9e63ac"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">goddess</AUni> -<AUni ws="es">diosa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5a1b239d-3149-47d9-bd73-23e39acade88" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e919878e-bdaf-423b-9db9-1d129ecc495d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">arque:ru</AUni> -<AUni ws="qvm-x-acl">arque:ru; arque:ru; arque:ro</AUni> -<AUni ws="qvm-x-akh">arque:ru</AUni> -<AUni ws="qvm-x-akl">arque:ru; arque:ru; arque:ro</AUni> -<AUni ws="qvm-x-ame">arque:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+arquero</AUni> -<AUni ws="qvm-x-acl">+arquero</AUni> -<AUni ws="qvm-x-akh">+arquero</AUni> -<AUni ws="qvm-x-akl">+arquero</AUni> -<AUni ws="qvm-x-ame">+arquero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.840" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0f5ba75e-b892-43ac-b336-126cda21c78c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+arquero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ee99e480-3bdf-4d53-90a5-05a56cadcb38" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d617d980-94f1-49f4-8d56-a8ae9fd62d6b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +arquero 
\entryTyp root 
\gENG goalee 
\gSPN arquero 
\e +arquero 
\c N0 
\ach arque:ru 
\akh arque:ru 
\acl arque:ru / _# 
\acl arque:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl arque:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl arque:ru / _# 
\akl arque:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl arque:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame arque:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="e91b01d8-fa1e-40c2-bc21-3ad7dd7a6e57"> -<Form> -<Str> -<Run ws="en">ABL</Run> -</Str> -</Form> -</rt> -<rt class="LexSense" guid="e91b9c15-7ab1-4a6e-b5e3-4c2c6efa637a" ownerguid="d32131fc-fd15-4162-8310-5223a1c65c20"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1 V2/V2</Run> -</AStr> -</Custom> -<Definition> -<AStr ws="en"> -<Run ws="en">verbal pluralizer - foreshortens</Run> -</AStr> -</Definition> -<Examples> -<objsur guid="26d5730c-a7fa-4d6e-9e00-b90dd8aba2a6" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">PLALLF</AUni> -<AUni ws="es">PLTODF</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="11ffd77d-802d-41f0-86af-94f639eca49d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="e91bb53d-8656-4d06-bd98-1ac8cae36bb9" ownerguid="d0959394-18a5-4fbf-a6b5-173495682fd3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e91c5e15-c4b1-4604-bb27-efc070e56d53" ownerguid="0cc62b4a-d5ff-4f45-83d1-e2b46e5d159a"> -<ExampleWords> -<AUni ws="en">evening, early evening, late in the evening, tonight, eventide, vesper, late night</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the time between sunset and when you go to sleep?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e91f8610-c6b2-4c1c-a650-a9e008cbed83"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">muerti; muerte</AUni> -<AUni ws="qvm-x-acl">muerti; muerti; muerte</AUni> -<AUni ws="qvm-x-akh">muerti; muerte</AUni> -<AUni ws="qvm-x-akl">muerti; muerti; muerte</AUni> -<AUni ws="qvm-x-ame">muerti; muerte</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+muerte</AUni> -<AUni ws="qvm-x-acl">+muerte</AUni> -<AUni ws="qvm-x-akh">+muerte</AUni> -<AUni ws="qvm-x-akl">+muerte</AUni> -<AUni ws="qvm-x-ame">+muerte</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.487" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="343e1439-f709-4633-86fa-1b6dd2c90bb4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+muerte</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="de2cc438-a144-47ff-8d73-ebed2a62839e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2dd417d1-4b48-4333-b18e-ff0592ebb774" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +muerte 
\entryTyp root 
\gENG 
\gSPN 
\e +muerte 
\c N0 
\mp +FinalI 
\ach muerti / ~_# 
\ach muerte / _# 
\akh muerti / ~_# 
\akh muerte / _# 
\acl muerti / ~_# 
\acl muerti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl muerte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl muerti / ~_# 
\akl muerti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl muerte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame muerti / ~_# 
\ame muerte / _# 
\i 2SA 3.34 Tsaypa trucanga mala muertimi wanushcanqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e91feace-976e-40a1-be7e-89ce33490795" ownerguid="eeee02e1-157e-4786-ab92-80c92e5023b8"> -<ExampleWords> -<AUni ws="en">open, close, look out, view</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What do people do to a window?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e9206e48-c0a0-4229-9014-81820ca35725" ownerguid="703c755a-40d2-4991-a863-a51d073505ed"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">pelar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aee0f1f5-401c-4217-a542-06a80d4e363b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="e9207993-6d2a-4a53-ba0a-f19d95fb0ef9" ownerguid="f6f38651-63fc-41f0-99ae-2d0711c5b18d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="e923f41c-fb04-4d06-b423-0298a3470519" ownerguid="97393a8a-b288-4380-8644-4a6530a874df"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoAffixAllomorph" guid="e923ff73-545c-4526-86e7-58a4c95762c6" ownerguid="88843228-3d25-4192-af4b-b368a7803382"> -<Form> -<AUni ws="qvm-x-ach">yqui</AUni> -<AUni ws="qvm-x-acl">yqui</AUni> -<AUni ws="qvm-x-akh">yki</AUni> -<AUni ws="qvm-x-akl">yki</AUni> -<AUni ws="qvm-x-ame">yki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="e92b2777-97f9-4ca2-813c-cd185507f0e1" ownerguid="dbcf751a-eec0-4096-ac3c-d3ae3b8ba7f1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="e92c9a5a-7106-42f8-8315-ade711d2607b" ownerguid="6e71a43a-5fdf-4607-adde-4aec7a9c5871"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="e92cdbc1-ab51-4992-9e6a-048b5c6ef352" ownerguid="7b340feb-3b8f-47be-98fd-66617a160dca" /> -<rt class="CmDomainQ" guid="e92ed2b7-5f70-4b08-8040-ca4ad2572baa" ownerguid="e7caa24f-155d-47cd-946d-cc0d06dfc764"> -<ExampleWords> -<AUni ws="en">act of love, act of kindness, favor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to something someone does that is loving?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e931b6be-3b1d-45f1-ae66-dbb01417f6a4" ownerguid="2b27b8ca-188e-44ad-aa86-ffa1f99106e3"> -<ExampleWords> -<AUni ws="en">tack on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to adding to what has been said?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="e931da8a-efc1-46cb-836a-72fba4a1eb4f" ownerguid="2810998c-d6cc-47a3-a946-66d0986a2767"> -<Abbreviation> -<AUni ws="en">7.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.528" /> -<DateModified val="2022-9-23 16:55:8.528" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to taking something or someone somewhere.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15W Lead, Bring, Take</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Take somewhere</AUni> -</Name> -<Questions> -<objsur guid="2f1e4b2b-ea1b-4dc9-ab4a-7748d7f25360" t="o" /> -<objsur guid="6026fb3e-7736-4e23-8550-99a3de6e8c5a" t="o" /> -<objsur guid="10cfc365-623c-4fc7-b383-1b60acca0682" t="o" /> -<objsur guid="faddf456-490b-4e55-986d-edc6b44d8b53" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="11cf45ec-f9d6-4c99-8782-738e26a342c8" t="o" /> -<objsur guid="3180b6aa-3ad9-4bd3-96f7-ae72264406fb" t="o" /> -<objsur guid="87c55aea-2c3f-44ce-81ec-18a153c5deb2" t="o" /> -<objsur guid="b79f8775-d8d0-4aa5-b4ab-917f6f3d6c13" t="o" /> -<objsur guid="bca1af45-7621-43c0-9152-fac0018e5319" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="e93271cd-d5c3-44bb-b91f-d88151999010" ownerguid="adb5072a-99a3-4f4e-8a2d-5b24cae783d9"> -<Form> -<AUni ws="qvm-x-ach">topuyiyu</AUni> -<AUni ws="qvm-x-acl">topuyiyu; topuyiyu; topuyiyo</AUni> -<AUni ws="qvm-x-akh">topuyiyu</AUni> -<AUni ws="qvm-x-akl">topuyiyu; topuyiyu; topuyiyo</AUni> -<AUni ws="qvm-x-ame">tupuyiyu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e9363c16-4108-4d74-9917-8924cb24f7f8" ownerguid="a755eaba-fce9-4a8b-b9cf-b3970a49f464"> -<ExampleWords> -<AUni ws="en">expensive, high, dear, costly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a price that seems high?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e937661f-00e1-40e8-bc04-3e5d5550e810" ownerguid="4d2a67fb-91c8-4436-87f4-f4eab6cb0828"> -<ExampleWords> -<AUni ws="en">pus, pustule</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to pus?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e937875d-d929-4351-bbce-721022183ca8" ownerguid="b6e59b23-222b-4009-b08c-1d0a4c8a3ed5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e93daac7-6c45-41e3-b69d-4a1ac5cdf95a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shushu</AUni> -<AUni ws="qvm-x-acl">shushu; shusho</AUni> -<AUni ws="qvm-x-akh">shushu</AUni> -<AUni ws="qvm-x-akl">shushu; shusho</AUni> -<AUni ws="qvm-x-ame">shushu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shushu.v</AUni> -<AUni ws="qvm-x-acl">*shushu.v</AUni> -<AUni ws="qvm-x-akh">*shushu.v</AUni> -<AUni ws="qvm-x-akl">*shushu.v</AUni> -<AUni ws="qvm-x-ame">*shushu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.662" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="be8b7fab-b686-4ff0-8152-1d37a88b75b6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shushu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1ae86248-1f04-4ffc-8c72-cc4225cf4004" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ed607611-3453-4cac-974d-d0a80d9892a6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shushu.v 
\entryTyp root 
\gENG fall 
\gSPN caer 
\e *shushu.v 
\c V1 
\ach shushu 
\akh shushu 
\acl shushu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shusho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shushu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shusho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shushu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="e942950e-192c-413c-8419-785063365e02" ownerguid="307bd120-e876-4218-b489-8c794914b8c6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63e241cb-3471-43ad-8545-4d005f632d4d" t="r" /> -</Morph> -<Msa> -<objsur guid="d3b5839a-9f79-4b2d-96b3-8cee7717866b" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="e949f393-2a5b-4792-af8f-75138322ceee" ownerguid="f7706644-542f-4fcb-b8e1-e91d04c8032a"> -<Abbreviation> -<AUni ws="en">2.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.32" /> -<DateModified val="2022-9-23 16:55:8.32" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that related to being strong, such as being able to lift a heavy object or being able to work hard.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79M Strong, Weak</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Strong</AUni> -</Name> -<Questions> -<objsur guid="34c0f342-861b-437a-ae74-cacd84542924" t="o" /> -<objsur guid="d3165f4a-7507-4cef-926d-46277db88a22" t="o" /> -<objsur guid="5b080935-73ca-4dc2-9389-510dba94be60" t="o" /> -<objsur guid="0967683d-7fb1-4a66-904c-d55715dcf9a4" t="o" /> -<objsur guid="68eb8596-6879-4627-9323-bd86024f268e" t="o" /> -<objsur guid="4393f7ba-66ed-4ab4-8c03-246ce56ea6ea" t="o" /> -<objsur guid="8ba27218-425e-415c-aa08-70ed94e95c07" t="o" /> -<objsur guid="8e9c9699-b142-4975-9b33-82399a33ead7" t="o" /> -<objsur guid="d3090f31-8b3f-4427-af97-bd3e35845a2a" t="o" /> -<objsur guid="330a7b77-43e3-41d9-98b2-9e16c5d6022f" t="o" /> -<objsur guid="eb240f60-8845-449b-8b4b-fb7b488a5030" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="e94a5cf3-1fd4-4b52-902f-bbf0ad6bac2b" ownerguid="f7960e84-5af9-4999-9028-783058aa8c5c"> -<Abbreviation> -<AUni ws="en">8.1.5.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.569" /> -<DateModified val="2022-9-23 16:55:8.569" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to only a particular number or amount of people or things--no more than one, or no more than a particular number or amount.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Only</AUni> -</Name> -<Questions> -<objsur guid="46c7f4e0-8c46-494a-9c38-6304be59818e" t="o" /> -<objsur guid="9a027801-3de2-469b-9c91-033a6ebab97b" t="o" /> -<objsur guid="377c95d8-9aa1-4a59-99a3-5debf0fd9ee2" t="o" /> -<objsur guid="cd2034bd-26d4-43b9-872f-0139ba4a2531" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="Segment" guid="e94c46fe-4b79-42d6-978d-b7bdcb474966" ownerguid="39565473-a6e6-4353-b6cd-75e2ddd6eca4"> -<Analyses> -<objsur guid="fa7aeb71-200a-4a5d-9436-13faa1972fea" t="r" /> -<objsur guid="25651c34-3e31-419d-86b5-cda6907f0a4f" t="r" /> -<objsur guid="7beb2bdf-1e77-4955-99ec-39f893293020" t="r" /> -<objsur guid="a85a5670-81ba-47b9-8443-95e8be60ebec" t="r" /> -<objsur guid="cc5592b2-d053-4f21-868f-e47798949ce1" t="r" /> -<objsur guid="4fccec2d-58a4-466f-a087-a79d6bf13b57" t="r" /> -<objsur guid="26ca52f1-b5e7-41e8-aa2e-cf2572524687" t="r" /> -</Analyses> -<BeginOffset val="7" /> -</rt> -<rt class="LexSense" guid="e94cea93-c208-470b-82cd-10de608721fc" ownerguid="a722be4c-b8d6-4e26-8f1b-82eef46249e1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">crack</AUni> -<AUni ws="es">rajar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="53d39c6f-508a-463b-82b8-ffd8969bdab4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e94d79a8-691a-44d2-bcc7-6d4e10cf612b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bautismu; bautismo</AUni> -<AUni ws="qvm-x-acl">bautismu; bautismu; bautismo</AUni> -<AUni ws="qvm-x-akh">bautismu; bautismo</AUni> -<AUni ws="qvm-x-akl">bautismu; bautismu; bautismo</AUni> -<AUni ws="qvm-x-ame">bautismu; bautismo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bautismo</AUni> -<AUni ws="qvm-x-acl">+bautismo</AUni> -<AUni ws="qvm-x-akh">+bautismo</AUni> -<AUni ws="qvm-x-akl">+bautismo</AUni> -<AUni ws="qvm-x-ame">+bautismo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.949" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="db7f6b19-c9e3-4477-8c80-9fb882891f3e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bautismo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6ef23143-180a-4f6f-8181-1b7fae8f863b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5ffdec45-65f3-438c-bf43-65ab99aee674" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bautismo 
\entryTyp root 
\gENG baptism 
\gSPN bautismo 
\e +bautismo 
\c N0 
\ach bautismu / ~_# 
\ach bautismo / _# 
\akh bautismu / ~_# 
\akh bautismo / _# 
\acl bautismu / ~_# 
\acl bautismu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl bautismo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl bautismu / ~_# 
\akl bautismu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl bautismo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame bautismu / ~_# 
\ame bautismo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e94d8369-f3cf-4d81-a417-d04caf3ca731" ownerguid="bf40fe7b-ea11-4548-9b7b-613f2bdef890"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="e51a5e5a-51a7-4f53-8187-96bd645f22bb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e94f52c8-63dc-4341-81f6-42c1458e3f87" ownerguid="94f50cb8-9a59-42cc-9891-247cc3de7428"> -<ExampleWords> -<AUni ws="en">corrode, eat away, eat through</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to making metal rust?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e951333a-6319-4fb0-ae10-787fe3ee5aef" ownerguid="c73ee12f-593b-47bd-9770-09b0ef991119"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e9515a66-8027-4815-a23c-3614b5c5089a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yarga; yarga:</AUni> -<AUni ws="qvm-x-acl">yarga; yarga:</AUni> -<AUni ws="qvm-x-akh">yarqa; yarqa:</AUni> -<AUni ws="qvm-x-akl">yarqa; yarqa:</AUni> -<AUni ws="qvm-x-ame">yarqa; yarqa:</AUni> -</Custom> -<AlternateForms> -<objsur guid="cc22ba01-5817-4072-bfcd-940d888c2618" t="o" /> -</AlternateForms> -<CitationForm> -<AUni ws="qvm-x-ach">*yarqa:.v1</AUni> -<AUni ws="qvm-x-acl">*yarqa:.v1</AUni> -<AUni ws="qvm-x-akh">*yarqa:.v1</AUni> -<AUni ws="qvm-x-akl">*yarqa:.v1</AUni> -<AUni ws="qvm-x-ame">*yarqa:.v1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.760" /> -<DateModified val="2022-10-19 18:57:17.748" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="27021fa2-34d7-44d6-b173-f90d227ca1f1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yarqa:.v1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f0aaf32c-78ce-437b-a2ba-10bb748068a9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2284b653-aacd-4424-a012-df7d429e10ec" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yarqa:.v1 
\entryTyp root 
\gENG be.hungry 
\gSPN tener.hambre 
\e *yarqa:.v1 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach yarga foreshortened 
\ach yarga: 
\akh yarqa foreshortened 
\akh yarqa: 
\acl yarga foreshortened 
\acl yarga: 
\akl yarqa foreshortened 
\akl yarqa: 
\ame yarqa foreshortened 
\ame yarqa: 
\mcc *yarqa:.v1 / ~_ PLALL 
\mcc *yarqa:.v1 / ~_... AFAR</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="e951b677-b96b-4a79-9e58-11433f5c6a26" ownerguid="7a83fccc-3e3e-4659-846c-84d38e5e418a"> -<Form> -<AUni ws="qvm-x-ach">rupa</AUni> -<AUni ws="qvm-x-acl">rupa</AUni> -<AUni ws="qvm-x-akh">rupa</AUni> -<AUni ws="qvm-x-akl">rupa</AUni> -<AUni ws="qvm-x-ame">rupa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e953e615-6c87-4035-95e4-005e73692dd5" ownerguid="fda0c1ac-5728-4ba2-9f8e-827f161b5bb1"> -<ExampleWords> -<AUni ws="en">not take your eyes off, stand over</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to watching something continuously?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e95a1edc-d88b-4172-b9a6-ccda111cf8be" ownerguid="cfa72fa4-c17c-4c62-80f5-b9b347e94ba1"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="e95d2d5f-762e-4873-986a-05c703f6cf26" ownerguid="d3fa4aff-33ac-4e06-9c7b-4ee2ae81a901"> -<Form> -<AUni ws="qvm-x-ach">hospital</AUni> -<AUni ws="qvm-x-acl">hospital</AUni> -<AUni ws="qvm-x-akh">hospital</AUni> -<AUni ws="qvm-x-akl">hospital</AUni> -<AUni ws="qvm-x-ame">hospital</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e95ecf16-81c4-4df5-b698-6b8c4ad0358b" ownerguid="0efe342d-4969-4bd1-95be-556f6c62adfc"> -<ExampleWords> -<AUni ws="en">conventional</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who behaves like most other people?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e95ee749-2b3d-4185-bfdf-4e599cba8992" ownerguid="83f04eb9-bcd2-4636-bc78-5fcc0bcf6c10"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">twist</AUni> -<AUni ws="es">torcer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="25c44b44-468a-41e6-ade6-47c9a978a21f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="e95fa9aa-1d95-4c5c-bc01-626d6f92f556" ownerguid="bcfd5ef2-c048-4c84-88dc-0b954c735490"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="e9601ea4-a9e0-45cb-8eb0-9c65c867895e" ownerguid="ecc46ea7-1bf5-4f94-a7f0-ec8d77500814"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="6ccf1803-5327-4ae5-a0dc-19393cd124f5" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="df26775c-4ddf-4546-a7ec-071e470fa012" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e9604fba-ba6c-41c1-a3df-73bd68e61ca0" ownerguid="db2232d9-8b17-4920-936f-2b6249c6f7fa"> -<ExampleWords> -<AUni ws="en">bandit, burglar, cutpurse, embezzler, gangster, highwayman, hijacker, kleptomaniac, mugger, pickpocket, pilferer, pirate, plunderer, purse-snatcher, robber, bank robber, train robber, shoplifter, stealer, thief, jewel thief</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to a person who steals?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e960ec6b-5e40-4910-b91e-9e696b13f8c6" ownerguid="7c6cad26-79c3-403a-a3aa-59babdfcd46f"> -<ExampleWords> -<AUni ws="en">get sick, become ill, fall ill, be taken ill, sicken, become sick, catch (a disease), come down with, contract</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to becoming sick?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e9620da0-4016-47ee-a991-fd7d13b8469e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">esta:ca</AUni> -<AUni ws="qvm-x-acl">esta:ca</AUni> -<AUni ws="qvm-x-akh">esta:ca</AUni> -<AUni ws="qvm-x-akl">esta:ca</AUni> -<AUni ws="qvm-x-ame">esta:ca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+estaca</AUni> -<AUni ws="qvm-x-acl">+estaca</AUni> -<AUni ws="qvm-x-akh">+estaca</AUni> -<AUni ws="qvm-x-akl">+estaca</AUni> -<AUni ws="qvm-x-ame">+estaca</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.498" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e2246a0d-5348-4ef4-8504-db5f254d3737" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+estaca</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7c1aeb94-0c5b-4a81-9578-d0be1e287548" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="664c473e-bf79-48c1-aac9-ca02aaa245f1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +estaca 
\entryTyp root 
\gENG stake 
\gSPN estaca 
\e +estaca 
\c N0 
\ach esta:ca 
\akh esta:ca 
\acl esta:ca 
\akl esta:ca 
\ame esta:ca</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e965382b-755e-4b07-80fa-a6059438c14c" ownerguid="3271c8e7-0541-4342-b230-3613446785e7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sand</AUni> -<AUni ws="es">arena</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bf02a27c-7eb0-4701-a37b-722d84a80e1c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e9671dff-0c60-45ee-9998-bfe0697ceb57" ownerguid="b602c0e1-5398-4cc9-850b-7cfb5c592d13"> -<ExampleWords> -<AUni ws="en">lose your sight, go blind, struck blind</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to becoming blind?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e96c28a1-d86e-4bb7-95ab-04dc20fc8948" ownerguid="a8a9b7c4-9c60-4a67-a3d6-8aa6d18d86c8"> -<Form> -<AUni ws="qvm-x-ach">pala</AUni> -<AUni ws="qvm-x-acl">pala</AUni> -<AUni ws="qvm-x-akh">pala</AUni> -<AUni ws="qvm-x-akl">pala</AUni> -<AUni ws="qvm-x-ame">pala</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e96e8385-578a-4cb0-a709-9af99c15103f" ownerguid="0b7bfd0a-249c-45b6-9427-2c17ae00bf37"> -<ExampleWords> -<AUni ws="en">cordage, knot, lashing, macramé</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to working with cords and ropes?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="e96f6860-0914-4324-9c49-48f24a0ff7f1" ownerguid="1e9a0881-f715-4057-9af8-251cb8eec9da"> -<Abbreviation> -<AUni ws="en">3.5.1.1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to speaking well.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Speak well</AUni> -</Name> -<Questions> -<objsur guid="e39659d6-cd3e-4f63-976f-14eafc6749e9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="e970cb94-ce60-4f30-b13a-d44b563e97a2" ownerguid="5ec4c46f-784d-4e6e-a3ab-e8e8e603c376"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="e9746b92-864d-4a1e-8553-207d78261999" ownerguid="5a9048b6-0b6a-464f-a6f2-ac7462e00633"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="28be3894-9309-46a2-9409-aaead04534ec" t="o" /> -<objsur guid="67f4263f-77d4-45c8-9669-d06e2d96d425" t="o" /> -<objsur guid="c255e776-102d-4cff-9b46-831ab17244df" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="e975f49e-455e-41f4-8410-e3cb486570c4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shupu</AUni> -<AUni ws="qvm-x-acl">shupu; shupu; shupo</AUni> -<AUni ws="qvm-x-akh">shupu</AUni> -<AUni ws="qvm-x-akl">shupu; shupu; shupo</AUni> -<AUni ws="qvm-x-ame">shupu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shupu.n</AUni> -<AUni ws="qvm-x-acl">*shupu.n</AUni> -<AUni ws="qvm-x-akh">*shupu.n</AUni> -<AUni ws="qvm-x-akl">*shupu.n</AUni> -<AUni ws="qvm-x-ame">*shupu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.642" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9f8a06ff-42da-4c72-9562-d2fb7b17ba15" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shupu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3761b773-0444-4655-8caf-44a83885a188" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="22c5e587-7344-48d8-84d4-f02869ee72db" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shupu.n 
\entryTyp root 
\gENG 
\gSPN 
\e *shupu.n 
\c N0 
\ach shupu 
\akh shupu 
\acl shupu / _# 
\acl shupu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shupo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shupu / _# 
\akl shupu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shupo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shupu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="e978ce0a-1aef-4bb8-9e2c-88cc517732b2" ownerguid="273ed438-255c-4fec-83dd-089b21984d46"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e98005c3-f911-4b41-b3e8-44e37b429d2c" ownerguid="445f3084-f250-40fa-87ba-ebd233f9018f"> -<ExampleWords> -<AUni ws="en">aardvark</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the aardvark?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e9803a65-4743-4ab5-8055-530b5c357435" ownerguid="297324d9-93ac-487c-bbf6-74aa3dd017f8"> -<Form> -<AUni ws="qvm-x-ach">höja</AUni> -<AUni ws="qvm-x-acl">höja</AUni> -<AUni ws="qvm-x-akh">höja</AUni> -<AUni ws="qvm-x-akl">höja</AUni> -<AUni ws="qvm-x-ame">höja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e986127c-1a4e-4356-a1d2-2aeba5214a03" ownerguid="41a310e7-a4bf-471a-984d-4b266b99fb60"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">brand</AUni> -<AUni ws="es">fierro.marcar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6d559cb4-edd4-4e99-9a6d-7116f71f55e6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e98b5577-d933-43ef-ac00-29b821edd2ae" ownerguid="b1688009-474d-4e2e-a137-acc1e32a435f"> -<ExampleWords> -<AUni ws="en">thickening</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe a part of something that is thick?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e98d97a3-f65f-40a4-ab72-ecd5eaaaf834" ownerguid="4991fecb-53b3-4a06-a9b3-2046645cfdc8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e98ddf1c-3983-48cf-9741-902e978c8dfe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">carea</AUni> -<AUni ws="qvm-x-acl">carea</AUni> -<AUni ws="qvm-x-akh">carea</AUni> -<AUni ws="qvm-x-akl">carea</AUni> -<AUni ws="qvm-x-ame">carea</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+carear.1</AUni> -<AUni ws="qvm-x-acl">+carear.1</AUni> -<AUni ws="qvm-x-akh">+carear.1</AUni> -<AUni ws="qvm-x-akl">+carear.1</AUni> -<AUni ws="qvm-x-ame">+carear.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.62" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="db6bf919-88a2-4bd2-9145-54ac03028d96" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+carear.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="05afacd9-c11a-4430-875a-9917a75b28d0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2f033328-b19b-4bd9-9f5a-17e0c24ba219" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +carear.1 
\entryTyp root 
\gENG to.face 
\gSPN carear 
\e +carear.1 
\c V2 
\ach carea 
\akh carea 
\acl carea 
\akl carea 
\ame carea</Run> -</AStr> -</Custom> -</rt> -<rt class="PunctuationForm" guid="e98fc615-dfaf-41fe-aad0-32fb7a99c978"> -<Form> -<Str> -<Run ws="en">wit</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="e991f2a4-8214-4873-9497-a5ac2818c6a1" ownerguid="b4fe4698-54a2-4bcd-9490-e07ee1ee97af"> -<ExampleWords> -<AUni ws="en">start to cry, start crying, burst into tears, break down, turn on the waterworks, get teary</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to starting to cry?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="e9947962-a243-4a44-a94d-64d68718d88c" ownerguid="b0a9a631-e0dc-47d4-a762-e9a627732218"> -<Abbreviation> -<AUni ws="en">4.5.4.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.256" /> -<DateModified val="2022-9-23 16:55:8.256" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being independent.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Independent</AUni> -</Name> -<Questions> -<objsur guid="dce0afd6-eb7b-4a2f-853a-c9b50ce9bb53" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="e994b00b-bf2c-4ea3-babe-5705276e0420" ownerguid="d485a138-f778-43e8-b354-23bfbaec6623"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">passage</AUni> -<AUni ws="es">pase</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cade535e-5c04-4619-99a3-b30ff6bd9606" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e99ba5d2-8815-404c-983e-3ed8a4f5a09c" ownerguid="94f50cb8-9a59-42cc-9891-247cc3de7428"> -<ExampleWords> -<AUni ws="en">rust, tarnish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to rust?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="e99c5aba-e736-4972-9889-99ff7c3d0af2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maga</AUni> -<AUni ws="qvm-x-acl">maga</AUni> -<AUni ws="qvm-x-akh">maqa</AUni> -<AUni ws="qvm-x-akl">maqa</AUni> -<AUni ws="qvm-x-ame">maqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*maqa.r</AUni> -<AUni ws="qvm-x-acl">*maqa.r</AUni> -<AUni ws="qvm-x-akh">*maqa.r</AUni> -<AUni ws="qvm-x-akl">*maqa.r</AUni> -<AUni ws="qvm-x-ame">*maqa.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.336" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="620bf194-3802-47e4-ab03-b901e341877b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*maqa.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e0ee6ed5-ea65-46ec-975e-e54684b58735" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="adc8ccff-d2f9-46a7-8f01-72012aad7bff" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *maqa.r 
\entryTyp root 
\gENG hit 
\gSPN pegar 
\e *maqa.r 
\c R0 
\ach maga 
\akh maqa 
\acl maga 
\akl maqa 
\ame maqa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="e99d9228-91c7-4d33-bda2-a6d949ec436e" ownerguid="bb79da61-088b-4bee-bbd3-72d8686b8878"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">disappear</AUni> -<AUni ws="es">desaparecer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a405c6ab-c3aa-4227-b5c1-968e8b16f9e0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="e9a661d2-f167-4471-8c49-1f8e27e5cd60"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wariwamra</AUni> -<AUni ws="qvm-x-acl">wariwamra</AUni> -<AUni ws="qvm-x-akh">wariwamra</AUni> -<AUni ws="qvm-x-akl">wariwamra</AUni> -<AUni ws="qvm-x-ame">wariwamra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wariwamra</AUni> -<AUni ws="qvm-x-acl">*wariwamra</AUni> -<AUni ws="qvm-x-akh">*wariwamra</AUni> -<AUni ws="qvm-x-akl">*wariwamra</AUni> -<AUni ws="qvm-x-ame">*wariwamra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.526" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="060a1762-8e0a-427b-9559-3a8a1e3ebe10" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wariwamra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="21941ca6-61ff-4a6a-b58a-2f28c234665a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b13cf498-4103-42c6-8021-524b209e56be" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wariwamra 
\entryTyp root 
\gENG girl 
\gSPN niña 
\e *wariwamra 
\c N0 
\ach wariwamra 
\akh wariwamra 
\acl wariwamra 
\akl wariwamra 
\ame wariwamra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="e9a66725-f92b-4ed2-93b9-acb510d182fd" ownerguid="9b0fef63-5935-447d-801a-bb02dd6212bb"> -<ExampleWords> -<AUni ws="en">idol, hero, heroine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a person who is admired?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e9a67625-6214-44b6-b75d-40faa7f491fd" ownerguid="6e6a0b47-d155-4863-b044-52cdd4421783"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="e9a6dfc8-d0c0-4c27-8b27-526a4387e38d" ownerguid="b28406f8-eee1-4263-8a78-47b432a9efe8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="e9a71e35-9780-4d40-9961-4125d9513bb0" ownerguid="9c6f35e0-4a16-4a5e-8b0e-c165146b2d5b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="e9a7660c-f4f7-4e34-9a92-5fef1d99356d" ownerguid="ec75263d-1bbd-4bb7-9bd4-515ba6751b5b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="e9a8359c-c101-4b03-85d3-ff4b9d31426b" ownerguid="9af21dcc-1ab3-45ca-9faa-13c5552af760"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="f2e1893b-8a20-483c-a2bd-051d5c5c6ce2" t="o" /> -<objsur guid="93f8f119-76d2-49c5-886e-f1f90b97b52c" t="o" /> -<objsur guid="c649a077-abfa-4571-b458-43908d7f3e8c" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="e9ab0c65-8cbe-4761-a409-69a9888c88a6" ownerguid="122ac350-466c-42f3-8aef-687a9d416648"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e9afe5b1-c748-4e28-9cca-bdc79a4578cd" ownerguid="bb4e0a69-db20-4757-beff-5dcb1c5e0f92"> -<ExampleWords> -<AUni ws="en">oppress, bully, harass, hound, persecute, repress, tyrannize</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to oppressing someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e9b0e019-80c5-4d02-b6b5-d0aa6c9206e7" ownerguid="dfdcfa24-b013-4566-af4a-28ef1dfd4742"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">two kilos <of> sugar</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">is, measure (v), weigh, how big, of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words indicate that something is a particular size or amount?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e9b24bba-df96-4cab-9188-f2d5500d19a2" ownerguid="7613c931-7378-47de-a1f0-8a7b40a0bac6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">file</AUni> -<AUni ws="es">filar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="75f25953-c010-4b69-a3b2-deacb08670e9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="e9b2f8ac-93d1-4dab-91d4-b7619e7b6d18" ownerguid="d7140538-fb99-4af9-8398-8c31a1b79fb5"> -<ExampleWords> -<AUni ws="en">be under restraint, bound, captive, in confinement, held, limited, restricted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe someone who is being prevented from moving?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e9b4472b-d5fe-4579-8803-967c65da223b" ownerguid="14ad95ad-50fc-450f-b44d-4273df0b1e8b"> -<ExampleWords> -<AUni ws="en">point, moment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a point in time?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e9b909a6-a2d6-437e-a51e-92147a01fa2f" ownerguid="c21f360a-4ea1-4e1a-9fab-b1d5d2d80427"> -<Form> -<AUni ws="qvm-x-ach">shulac</AUni> -<AUni ws="qvm-x-acl">shulac</AUni> -<AUni ws="qvm-x-akh">shulak</AUni> -<AUni ws="qvm-x-akl">shulak</AUni> -<AUni ws="qvm-x-ame">shulak</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="e9ba62e4-8e91-40e2-83ae-0d7626648273" ownerguid="66338f06-ea72-40e7-b1f4-276337f98641"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="e9bd6581-4e65-4ae0-8355-931d6bf21956" ownerguid="f202430b-f713-47a0-bf4d-d30e4bee12cb"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="e9be37cd-de45-4bfb-bd28-63cbb1e95bd2" ownerguid="e90cf8e1-2e25-49dd-97cd-c749b5392667"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e9bf64ad-d00a-4109-9989-6c8d721a1398" ownerguid="c72985cf-b07f-4ed5-873a-a2209929667e"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">How are you <faring>?; How do things <stand> at work?</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">be, fare, stand</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate the state that something is in?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="e9bfd986-a581-4c89-a418-eb1debbf69c6" ownerguid="5e0c6d02-ba15-46fe-866d-4025533c9bc2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">nest</AUni> -<AUni ws="es">nido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="afb63cae-c892-4003-9a30-8334c1503473" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="e9c0a858-09cc-4534-b71a-fafeb7cb46e3" ownerguid="8e381793-573b-4e96-b532-33c89092d3bf"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="e9c0ead2-6591-4da3-9f59-1b2746179c38" ownerguid="d03e0238-8dd1-4b6c-af7f-65093517b71e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e9c2322f-4e48-4e9c-b8e9-a224442e2f00" ownerguid="8596f086-ee46-4245-8d45-2171a60e19e4"> -<ExampleWords> -<AUni ws="en">abutting, adjoining, contiguous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is touching another?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e9c31633-57ca-4860-9a38-4c480a50b1a3" ownerguid="a6eb0ea6-9e43-4baa-8fb5-5ea379d74241"> -<Form> -<AUni ws="qvm-x-ach">wishti</AUni> -<AUni ws="qvm-x-acl">wishti; wishte</AUni> -<AUni ws="qvm-x-akh">wishti</AUni> -<AUni ws="qvm-x-akl">wishti; wishte</AUni> -<AUni ws="qvm-x-ame">wishti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e9c3d0a2-0c94-4595-9587-3b413f834673" ownerguid="91e95825-677a-4221-9e55-78a73bbac6ee"> -<ExampleWords> -<AUni ws="en">simple, plain, bare</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is simple and does not have a lot of decorations?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e9c62780-0c0a-446b-bfda-f371b8a36458" ownerguid="ffdce87f-8f49-4afd-a98f-5a056b832fea"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="e9c65813-a98b-487d-988a-0fa9c90816f5" ownerguid="e6132df9-8fc6-4d1d-8d11-2ebc9e7f7669"> -<Form> -<AUni ws="qvm-x-ach">ogsha</AUni> -<AUni ws="qvm-x-acl">ogsha</AUni> -<AUni ws="qvm-x-akh">oqsha</AUni> -<AUni ws="qvm-x-akl">oqsha</AUni> -<AUni ws="qvm-x-ame">uqsha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="e9cafabe-f0f7-4142-a6f6-d1c94bdc4b5c" ownerguid="8a81b9bc-9c66-4d57-a2d1-2e592604c4b1"> -<Abbreviation> -<AUni ws="en">8.1.8.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.579" /> -<DateModified val="2022-9-23 16:55:8.579" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to being empty.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>59D Full, Empty</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Empty</AUni> -</Name> -<Questions> -<objsur guid="fe1980c2-10ce-4d34-96db-bb61e152c772" t="o" /> -<objsur guid="707688ae-ab06-409e-92b5-dc91a4716aea" t="o" /> -<objsur guid="6471c585-9d3d-459b-9895-1f720cc1c182" t="o" /> -<objsur guid="8bc0e4cb-2984-4be7-9fae-6b15817c77e0" t="o" /> -<objsur guid="90582c69-d0c8-4369-9e56-3b8de3a2f21e" t="o" /> -<objsur guid="671cd74d-da0e-40cb-be90-c94449a59df3" t="o" /> -<objsur guid="9c9b4dfa-be79-44f1-969e-8bba8e202da1" t="o" /> -<objsur guid="0778fd1c-bd91-46e8-9107-914b5f385ddb" t="o" /> -<objsur guid="796eff2b-0551-4ef9-9d13-9ffda5316314" t="o" /> -<objsur guid="45787b08-5cfa-4fc6-9e83-35e2c2b509df" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="8affe94d-a396-4404-a0d7-c65046e617e6" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="e9cc5558-3360-46bd-9ef6-89ad90140c0d" ownerguid="0fc074ae-9373-4ab7-b894-701b76f65e66"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c94bb766-193f-41dc-ba56-db412d91c4a3" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">dance</AUni> -<AUni ws="es">danza</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f31453ca-f9d0-4a98-a485-5bf4430d66e3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="e9cf3f1a-76d4-42e5-bc33-f562f8bc75b3" ownerguid="32a771fb-3657-4ff5-8add-839d2155f876" /> -<rt class="MoStemAllomorph" guid="e9d0ed89-1752-49f2-9ab3-232665408714" ownerguid="8354e445-3a62-4414-ae9b-bd55bd281728"> -<Form> -<AUni ws="qvm-x-ach">jututu</AUni> -<AUni ws="qvm-x-acl">jututu; jututu; jututo</AUni> -<AUni ws="qvm-x-akh">jututu</AUni> -<AUni ws="qvm-x-akl">jututu; jututu; jututo</AUni> -<AUni ws="qvm-x-ame">hututu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="e9d20f84-4577-494d-9944-bc8875c64585" ownerguid="97393c87-07e2-4633-88f9-c8bf4d9b935c"> -<ExampleWords> -<AUni ws="en">hateful, abominable, deplorable, despicable, detestable, execrable, reprehensible</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that causes someone to feel hateful?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="e9d6062d-ebf6-4ae8-a623-9462384039f5" ownerguid="13a3d6a8-b958-4761-9529-5348cbddce64"> -<Form> -<AUni ws="qvm-x-ach">näga</AUni> -<AUni ws="qvm-x-acl">näga</AUni> -<AUni ws="qvm-x-akh">näqa</AUni> -<AUni ws="qvm-x-akl">näqa</AUni> -<AUni ws="qvm-x-ame">näqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="e9d6b91b-de0f-4134-9682-da9c1df64b00" ownerguid="b0a0b9f0-8b7d-456a-8eac-5bf835934d4f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9ad8cf32-80b4-401e-9ef3-fd327106d6c5" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="23e98c4c-7dde-4e40-b6e1-4691eb71d535" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="e9db18bb-4ba0-4ab4-ac5c-3cb4419d7025" ownerguid="14e6ffd2-75db-4fce-84df-725aac9f55fb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">nqui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">nqui; nqui; nque</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">nki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">nki; nki; nke</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="eefb29ad-f416-4367-b09c-bb45b5e9cf21" t="r" /> -</Morph> -<Msa> -<objsur guid="0d90ca1d-7b60-41a3-a022-dba460606a1c" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="e9db4b15-4976-437a-a79e-987d748d6864" ownerguid="0de28f92-c851-413c-bb6c-3ad21f5e267f"> -<ExampleWords> -<AUni ws="en">listen in, eavesdrop, bug, tap, monitor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to listen to someone when they don't know you are listening?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="e9de27b6-abac-46ed-a68c-2c3d314297c6" ownerguid="baedbf9f-c8db-4803-abc1-d30e7d364282"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="4714a7c4-58be-4781-b33e-fa46ed7f0ded" t="o" /> -<objsur guid="c815a360-c668-4437-ae9d-ec1bfa5b8b58" t="o" /> -<objsur guid="8659d069-b25d-43fb-9cc0-0b45c4091236" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="e9ded309-bf0b-4bdd-8ba0-12a17634ba56" ownerguid="b0feb82b-7981-49f0-8611-bf674064ec33"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e9df03b5-83cc-46cc-85c2-077dff45373e" ownerguid="5b41c1ed-95bb-4cca-8cff-87361acb5683"> -<ExampleWords> -<AUni ws="en">top hat, cravat, bustle, turban, headdress</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to different kinds of traditional clothing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="e9e52efe-6444-4f59-ba30-c3f83c206ebd" ownerguid="f595deab-1838-4ddb-9ebe-55fb3007b309"> -<ExampleWords> -<AUni ws="en">troops, force, unit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a group of soldiers?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e9ece695-28de-48a2-aff1-266bce7d2a60" ownerguid="9b8c6188-540c-4015-8c83-7d19c9f61da3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="e9ed45b8-fe32-4e0f-9e2a-0ba977e6c26d" ownerguid="663a98df-b6a2-4dfb-b651-0e3c99e86bde"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e9ee1317-ef25-4d57-a213-5ab6fec6e2c6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mantica</AUni> -<AUni ws="qvm-x-acl">mantica</AUni> -<AUni ws="qvm-x-akh">mantica</AUni> -<AUni ws="qvm-x-akl">mantica</AUni> -<AUni ws="qvm-x-ame">mantica</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+manteca</AUni> -<AUni ws="qvm-x-acl">+manteca</AUni> -<AUni ws="qvm-x-akh">+manteca</AUni> -<AUni ws="qvm-x-akl">+manteca</AUni> -<AUni ws="qvm-x-ame">+manteca</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.323" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="64fc34f8-63a8-4c6f-b602-ff2395b388e9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+manteca</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="deba586a-9a21-43c6-ac01-b4712a632422" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ad24053d-5ab6-4a84-8a32-2411dc9b18c0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +manteca 
\entryTyp root 
\gENG lard 
\gSPN manteca 
\e +manteca 
\c N0 
\ach mantica 
\akh mantica 
\acl mantica 
\akl mantica 
\ame mantica</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="e9ee99ea-6336-433e-8fc9-12d6adbf9128" ownerguid="394abd8a-b1b8-4743-8414-c2eb5f1b8bb1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="e9ef98d9-8844-4804-88a5-614493d150f5" ownerguid="a2508183-7ea5-434e-a773-00d53087d27b"> -<Abbreviation> -<AUni ws="en">3.1.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.94" /> -<DateModified val="2022-9-23 16:55:8.94" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a mental state when the mind is working hard.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>27F Be Ready To Learn, Pay Attention</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Alert</AUni> -</Name> -<Questions> -<objsur guid="9f2dfac8-9b97-412c-9167-4d7df48e8251" t="o" /> -<objsur guid="3353c4e6-59ab-46f1-a12e-cac7d6a22749" t="o" /> -<objsur guid="ff8eb582-0f8a-4b45-8e80-979fcd4a1076" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="878a313b-a201-444e-8bdb-67048d60c63e" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="e9f0d471-7d3f-4eea-ae26-0c7ed80dca0f" ownerguid="eeedff8f-4a3f-43f2-a11e-a1d3b1fb93d1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="e9f1ef3a-fda5-4b3f-9101-a4b7c421a607"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rebuca</AUni> -<AUni ws="qvm-x-acl">rebuca</AUni> -<AUni ws="qvm-x-akh">rebuca</AUni> -<AUni ws="qvm-x-akl">rebuca</AUni> -<AUni ws="qvm-x-ame">rebuca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rebocar</AUni> -<AUni ws="qvm-x-acl">+rebocar</AUni> -<AUni ws="qvm-x-akh">+rebocar</AUni> -<AUni ws="qvm-x-akl">+rebocar</AUni> -<AUni ws="qvm-x-ame">+rebocar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.305" /> -<DateModified val="2022-10-10 21:18:47.203" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0e8e960e-bd7b-4319-bf37-b4ac357c9443" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rebocar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5dabd351-7655-4bee-8719-ccda4522241e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="11a4f0f5-2d43-48c2-8805-882d27d0e04b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rebocar 
\entryTyp root 
\gENG 
\gSPN 
\e +rebocar 
\c V2 
\ach rebuca 
\akh rebuca 
\acl rebuca 
\akl rebuca 
\ame rebuca</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="e9f1ff45-2691-492a-98c6-ed1e48f5a924" ownerguid="5c2ab0ee-7d29-4139-b537-600c3860d782"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="e9f327bb-dc68-45ae-8fcc-8306da36e5e5" ownerguid="b044e890-ce30-455c-aede-7e9d5569396e"> -<ExampleWords> -<AUni ws="en">bright, brilliant, dim, luminous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe the brightness of the stars?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="e9f72211-b309-4773-815a-410e80fc6939"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">mikU</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="e9f94d6a-b8d1-4dad-ab5d-ec13e265485e" ownerguid="104d40c9-2a4f-4696-ad99-5cf0eb86ab2e"> -<ExampleWords> -<AUni ws="en">be better, be well, be fully recovered, be cured, be over something, be back on your feet, be up and about, be fit, be healed, be well again, be fine, be back to normal, be restored to health, be whole again</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to being healthy after being sick?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="e9fa2291-fe53-4eee-a66f-ddcddea02ca8" ownerguid="f32012c3-bf5d-469d-8d57-55d3be0df90f"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="e9fdc131-addb-4db6-8f79-ae0044e1eb81" ownerguid="25bf6690-6ed1-42e9-8a4a-3518f9cf382c"> -<Abbreviation> -<AUni ws="en">4.9.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.294" /> -<DateModified val="2022-9-23 16:55:8.294" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to sacred writings. Examples are only given for the Christian sacred writings. However you should include words referring to the holy books of all religions .</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Sacred writings</AUni> -</Name> -<Questions> -<objsur guid="997fd62a-2f60-4ad5-9f2f-5cdc3880dfd0" t="o" /> -<objsur guid="a3429319-55d4-4504-ab54-f76b1a1b4881" t="o" /> -<objsur guid="fd6f933e-94e4-47f4-8781-e7dbfff48d33" t="o" /> -<objsur guid="1699803e-fe90-44ed-8fe1-c227e384fc19" t="o" /> -<objsur guid="1b72f289-6849-44b1-85d3-27c3c3345923" t="o" /> -<objsur guid="2d6dc434-92a9-4191-b9ab-f5eaea455f19" t="o" /> -<objsur guid="eb65af02-b128-44b6-958a-300d44d5585e" t="o" /> -<objsur guid="19be2723-ceca-4dec-8459-ad887b8a83ef" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="e9ffba5e-9576-40e1-bddd-4f97c38e65a0" ownerguid="cb783ad9-4650-416e-bf63-88c4ca43fe6a"> -<ExampleWords> -<AUni ws="en">good reputation, prestige, stature</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a good reputation?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ea02bf34-a997-4b37-bb22-dd88f8e4e6b1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">salón; salon</AUni> -<AUni ws="qvm-x-acl">salón; salon</AUni> -<AUni ws="qvm-x-akh">salón; salon</AUni> -<AUni ws="qvm-x-akl">salón; salon</AUni> -<AUni ws="qvm-x-ame">salón; salon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+salón</AUni> -<AUni ws="qvm-x-acl">+salón</AUni> -<AUni ws="qvm-x-akh">+salón</AUni> -<AUni ws="qvm-x-akl">+salón</AUni> -<AUni ws="qvm-x-ame">+salón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.429" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f54fe8fe-92c6-4845-99ef-480a29db16c5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+salón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="717a94b7-0182-4acd-9611-342c23e4dab8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="146b015e-27f5-48bd-a4e4-91bdd0bca9b0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +salón 
\entryTyp root 
\gENG classroom 
\gSPN salón 
\e +salón 
\c N0 
\mp +FinalC 
\ach salón / _# 
\ach salon / ~_# 
\akh salón / _# 
\akh salon / ~_# 
\acl salón / _# 
\acl salon / ~_# 
\akl salón / _# 
\akl salon / ~_# 
\ame salón / _# 
\ame salon / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ea040675-8fd1-4659-a1d7-2f1bbf055353" ownerguid="2f151c35-72e1-4665-bc05-6fc70a3ecff2"> -<ExampleWords> -<AUni ws="en">ugliness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the quality of being ugly?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ea0490ef-012a-4fd3-9121-88bba593ef7e" ownerguid="e3d18da9-e689-4d16-a8f6-2cda34bfee50"> -<Form> -<AUni ws="qvm-x-ach">rutu</AUni> -<AUni ws="qvm-x-acl">rutu; ruto</AUni> -<AUni ws="qvm-x-akh">rutu</AUni> -<AUni ws="qvm-x-akl">rutu; ruto</AUni> -<AUni ws="qvm-x-ame">rutu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ea057e6b-f128-4eea-898b-5ef0036c2de1" ownerguid="4f206556-90aa-444c-ac3d-27800ff88da9"> -<Form> -<AUni ws="qvm-x-ach">piruru</AUni> -<AUni ws="qvm-x-acl">piruru; piruru; piruro</AUni> -<AUni ws="qvm-x-akh">piruru</AUni> -<AUni ws="qvm-x-akl">piruru; piruru; piruro</AUni> -<AUni ws="qvm-x-ame">piruru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ea0623f6-eade-4175-948e-f9e4120d5df1" ownerguid="104d40c9-2a4f-4696-ad99-5cf0eb86ab2e"> -<ExampleWords> -<AUni ws="en">recover from, get over, shake off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to recovering from a disease?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ea093fdf-0a74-4a15-812a-67a9863f71af" ownerguid="ae780708-c312-493a-b30d-21c76be756a7"> -<Form> -<AUni ws="qvm-x-ach">fusburu</AUni> -<AUni ws="qvm-x-acl">fusburu; fusburu; fusburo</AUni> -<AUni ws="qvm-x-akh">fusburu</AUni> -<AUni ws="qvm-x-akl">fusburu; fusburu; fusburo</AUni> -<AUni ws="qvm-x-ame">fusburu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ea09c7f6-1e1e-455f-88cd-7d88e06e61cd" ownerguid="02d404d7-f3d7-492c-92a0-c6c9ff1a1908"> -<ExampleWords> -<AUni ws="en">dinner</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the main meal of the day?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ea0a6ba2-60ef-4e35-86bc-9ca4186f3fd3" ownerguid="ceadcecc-fbf2-4c11-9122-54b7202bcacb"> -<Form> -<AUni ws="qvm-x-ach">tsagu</AUni> -<AUni ws="qvm-x-acl">tsagu; tsagu; tsago</AUni> -<AUni ws="qvm-x-akh">tsaqu</AUni> -<AUni ws="qvm-x-akl">tsaqu; tsaqu; tsaqo</AUni> -<AUni ws="qvm-x-ame">tsaqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="ea0b9c60-5989-4b63-b28a-c6f713f84d7d" ownerguid="9c741043-0a48-40d1-8ba3-bb9c57d036a5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spindle</AUni> -<AUni ws="es">huso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="445d2d3f-807f-4be1-8657-65e9869df12c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="ea0c6f73-ae4d-44c8-93c6-91e7f5a6a50e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tucapalanpa</AUni> -<AUni ws="qvm-x-acl">tucapalanpa</AUni> -<AUni ws="qvm-x-akh">tukapalanpa</AUni> -<AUni ws="qvm-x-akl">tukapalanpa</AUni> -<AUni ws="qvm-x-ame">tukapalanpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tocar.adv</AUni> -<AUni ws="qvm-x-acl">+tocar.adv</AUni> -<AUni ws="qvm-x-akh">+tocar.adv</AUni> -<AUni ws="qvm-x-akl">+tocar.adv</AUni> -<AUni ws="qvm-x-ame">+tocar.adv</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.936" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ace55897-1102-490c-927a-4a3451cd2885" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tocar.adv</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dde07022-9c79-47bb-be00-673b3e769eb6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="09bfc719-6673-4a3b-b8b6-c26332e80413" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tocar.adv 
\entryTyp root 
\gENG 
\gSPN 
\e +tocar.adv 
\c R0 
\mp +assimilated KQWchange 
\ach tucapalanpa 
\akh tukapalanpa 
\acl tucapalanpa 
\akl tukapalanpa 
\ame tukapalanpa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ea0f3bf0-2843-479b-9b9b-ec30cdf45936"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waran</AUni> -<AUni ws="qvm-x-acl">waran</AUni> -<AUni ws="qvm-x-akh">waran</AUni> -<AUni ws="qvm-x-akl">waran</AUni> -<AUni ws="qvm-x-ame">waran</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waran</AUni> -<AUni ws="qvm-x-acl">*waran</AUni> -<AUni ws="qvm-x-akh">*waran</AUni> -<AUni ws="qvm-x-akl">*waran</AUni> -<AUni ws="qvm-x-ame">*waran</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.515" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="36ab813b-4e8f-4fdd-bdf1-c315d8a03fef" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waran</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f5edd8da-f385-4f6b-ba31-a6586dc5a982" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a9be5cf7-9146-4f7f-b07a-cd6d14133460" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waran 
\entryTyp root 
\gENG daily 
\gSPN cada.día 
\e *waran 
\c R0 
\mp +FinalC 
\ach waran 
\akh waran 
\acl waran 
\akl waran 
\ame waran</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ea11db0e-0833-4cf6-bfd0-608fdbb0e159" ownerguid="1d8633e0-4279-4ddc-826e-16aa08a977e5"> -<ExampleWords> -<AUni ws="en">marrow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What are the parts of a bone?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="ea17aba7-6d4e-4dbf-89ea-84a1b1c47647" ownerguid="67e57493-d286-4271-b877-f63f962dddf1"> -<Abbreviation> -<AUni ws="en">8.2.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.589" /> -<DateModified val="2022-9-23 16:55:8.589" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the volume of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>81E Specific Measures of Volume</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Big container, volume</AUni> -</Name> -<Questions> -<objsur guid="36a1d06f-d975-409f-8bef-91253549b69d" t="o" /> -<objsur guid="93fcab94-33c1-4cbe-a786-53fcf2cccc1b" t="o" /> -<objsur guid="db10079f-a2d1-42e4-abb7-4b96ce8e6b55" t="o" /> -<objsur guid="f74c2855-4bb5-4935-896e-f5b8de269337" t="o" /> -<objsur guid="8a04e605-90fb-4f07-93fb-c83cd8230b3b" t="o" /> -<objsur guid="1e46ed08-e1f4-4320-bf0e-41cd5804d94c" t="o" /> -<objsur guid="72794cd1-cfa4-489c-adf6-c9d4770aeb66" t="o" /> -<objsur guid="034d335d-efb3-49a4-a3eb-209b615e3688" t="o" /> -<objsur guid="c7a4647c-a24e-4a5a-bc58-f63200ddb8e2" t="o" /> -<objsur guid="49638219-65d6-48c7-8e16-128c6e556191" t="o" /> -<objsur guid="63b5700c-c184-4584-b4dc-0b619f3cdbd2" t="o" /> -<objsur guid="db4634b6-8944-48b6-8c01-1f7bbcad69c6" t="o" /> -<objsur guid="fefea843-406a-45af-a424-6eea9e71591f" t="o" /> -<objsur guid="6ee5a255-3658-4485-bb52-3d3d06da9946" t="o" /> -<objsur guid="2ee8ce4e-8cf7-4e7e-8ed9-64c1ee346585" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="ea17aee2-ff10-44a0-86a4-957ec2af2bd8" ownerguid="c038b0f7-8d34-4f13-9d9f-fff06ac936a4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="Segment" guid="ea1b56b2-7326-4221-8fad-057bf311e7b4" ownerguid="8fd02b5b-ff2f-4b79-82a5-49b68248014e"> -<Analyses> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="fa7aeb71-200a-4a5d-9436-13faa1972fea" t="r" /> -<objsur guid="118b4c35-9cd6-403e-8b8c-95610a267af2" t="r" /> -<objsur guid="a45d1a98-21be-467c-b7c5-26fae43480ec" t="r" /> -<objsur guid="8b7d244e-9b86-436d-a941-a357e0a8ac32" t="r" /> -<objsur guid="7a34d709-dd7d-4ac4-94e8-58e444587dd4" t="r" /> -<objsur guid="a85a5670-81ba-47b9-8443-95e8be60ebec" t="r" /> -<objsur guid="bb723df0-2b97-461e-bae3-564d9c1a0cfd" t="r" /> -<objsur guid="4fccec2d-58a4-466f-a087-a79d6bf13b57" t="r" /> -<objsur guid="cb5124e8-33a4-43cf-bffd-c80153063440" t="r" /> -<objsur guid="f69934b2-1374-4eec-8857-8cde011be648" t="r" /> -<objsur guid="26ca52f1-b5e7-41e8-aa2e-cf2572524687" t="r" /> -<objsur guid="8b7d244e-9b86-436d-a941-a357e0a8ac32" t="r" /> -<objsur guid="7a34d709-dd7d-4ac4-94e8-58e444587dd4" t="r" /> -<objsur guid="a85a5670-81ba-47b9-8443-95e8be60ebec" t="r" /> -<objsur guid="bb723df0-2b97-461e-bae3-564d9c1a0cfd" t="r" /> -<objsur guid="4fccec2d-58a4-466f-a087-a79d6bf13b57" t="r" /> -<objsur guid="cb5124e8-33a4-43cf-bffd-c80153063440" t="r" /> -<objsur guid="a333d7b9-14a8-4362-ac54-328ea0bba033" t="r" /> -<objsur guid="46164d9b-b934-4f5d-bab3-148eb47213e5" t="r" /> -</Analyses> -<BeginOffset val="12" /> -</rt> -<rt class="LexSense" guid="ea1e56b2-d19f-420a-b401-deea19be213f" ownerguid="2804261d-b8d1-4e39-aef4-b34ddaff6990"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">mazamorra.seca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2c7a7290-619e-4703-82cf-b829b9825e3b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ea22ee89-598f-4bc3-a4b1-8485b0f004b9" ownerguid="aa2b547c-2c82-4ce0-a1b3-35fa809d666c"> -<ExampleWords> -<AUni ws="en">narrows, narrowing, waist, neck</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a place where something is narrow?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ea232446-d3a3-42a1-b505-58f570ba3846"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">iwal</AUni> -<AUni ws="qvm-x-acl">iwal</AUni> -<AUni ws="qvm-x-akh">iwal</AUni> -<AUni ws="qvm-x-akl">iwal</AUni> -<AUni ws="qvm-x-ame">iwal</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+igual</AUni> -<AUni ws="qvm-x-acl">+igual</AUni> -<AUni ws="qvm-x-akh">+igual</AUni> -<AUni ws="qvm-x-akl">+igual</AUni> -<AUni ws="qvm-x-ame">+igual</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.872" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d24843c9-c1d2-4893-8e2b-c9953f90ef94" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+igual</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e2f2ab18-7e62-4a56-925c-341175ce5b76" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fe706607-4429-48fa-9908-f50db2083ec8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +igual 
\entryTyp root 
\gENG together 
\gSPN junto 
\e +igual 
\c N0 
\mp +FinalC 
\ach iwal 
\akh iwal 
\acl iwal 
\akl iwal 
\ame iwal</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="ea273e20-5284-47f1-aa52-a570157ae264" ownerguid="6a70d393-1181-48e5-ac69-114d61dd348b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="68d0f031-23a3-49dc-b5b4-c34d0c87b2f4" t="o" /> -<objsur guid="5dfbda44-bffa-448f-8abd-45bffa40b43f" t="o" /> -<objsur guid="7746a9e8-2cee-4185-b4c6-03ca01921932" t="o" /> -<objsur guid="95920faa-c94a-405c-b638-489abd89337b" t="o" /> -<objsur guid="57b336b6-bb9a-48d2-a39a-c1bcd2d8ca23" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="ea295731-973c-4f6c-a045-a7ba333e84a6" ownerguid="c38569e1-858a-43c7-b482-36188effe39a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="ea2d0dc5-2cdb-4686-9f48-abe65ed295a4" ownerguid="fcd22c85-7ee1-4d31-8633-9dbd32344211"> -<Abbreviation> -<AUni ws="en">7.2.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to moving past, over, or through something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15C Pass, Cross Over, Go Through, Go Around</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Move past, over, through</AUni> -</Name> -<Questions> -<objsur guid="4980f1b2-c7ed-47ff-bb1a-3d0ef8f925f8" t="o" /> -<objsur guid="c14580f6-afde-473f-a8a9-79d1ec1facfb" t="o" /> -<objsur guid="aef53121-94c9-4c57-be0e-f5958045cfc8" t="o" /> -<objsur guid="2d707bb2-a093-498f-b188-f3ee9d6623e0" t="o" /> -<objsur guid="0e2e0206-9fb5-4d75-a1ca-b5050b62cbde" t="o" /> -<objsur guid="6dd27cca-fe6f-4ac2-a49d-1002a53fcb34" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="ea2deae4-3e00-4449-9a01-44be8da2c945" ownerguid="4dc63b4c-d62e-46a3-9257-a888174bbff8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ea2ffb68-00d4-4cd6-a994-903257c7bd2c" ownerguid="68f6d2c8-8f83-42f8-aa7e-40cf1c067186"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="4eb20132-666a-41fd-bdd6-d60b3d6d8861" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="ea3039aa-d0f2-48b9-b56d-5239ba4fdf19" ownerguid="6626ad39-4ceb-454c-b21f-7058b164c30a"> -<Form> -<AUni ws="qvm-x-ach">quiru</AUni> -<AUni ws="qvm-x-acl">quiru; quiru; quiro</AUni> -<AUni ws="qvm-x-akh">kiru</AUni> -<AUni ws="qvm-x-akl">kiru; kiru; kiro</AUni> -<AUni ws="qvm-x-ame">kiru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ea33d6b5-094f-4036-952f-a7aea0683aa5" ownerguid="86078fa5-1d4e-4420-867e-8e76a1b6e3bf"> -<Form> -<AUni ws="qvm-x-ach">caruna</AUni> -<AUni ws="qvm-x-acl">caruna</AUni> -<AUni ws="qvm-x-akh">karuna</AUni> -<AUni ws="qvm-x-akl">karuna</AUni> -<AUni ws="qvm-x-ame">karuna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="ea371548-8ead-4869-8842-6cf05ea77301" ownerguid="19413b9f-423f-45db-848d-1908f92c9f33"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">smoke</AUni> -<AUni ws="es">humo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="73b13cea-6630-479a-9b53-214284e276ba" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ea3b0f5a-182c-4b79-ad7e-80f1fa7205da" ownerguid="fe22e7b6-af7f-4f65-a525-753701a40aaf"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ea3f3326-6049-4e87-8751-391ccd7a89ff" ownerguid="26f480c4-9335-4524-b2ed-47859a10568b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hurt</AUni> -<AUni ws="es">doler</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5e06be76-ef7a-443b-a77a-f743505739ea" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ea3f475b-b869-46b0-81c1-ff55807fe513" ownerguid="2e5acfd2-3009-4496-9cc2-58d2a0088994"> -<ExampleWords> -<AUni ws="en">blond, red, auburn, chestnut, fair, dark, grizzled, mousy, ginger, sandy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe the color of hair?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ea3fc528-cc9f-47c6-aa97-c50376d2ab68" ownerguid="5fac2c48-919a-4523-9c99-5352908f50d9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wood</AUni> -<AUni ws="es">madera</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8972dcdb-6d83-4cf2-b87d-e5dcde694eeb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoAffixAllomorph" guid="ea450a1a-d611-49b9-867c-b9388fbb0b9a" ownerguid="30ec66cd-df0e-475b-a614-7a91c8210db7"> -<Form> -<AUni ws="qvm-x-ach">yumpay</AUni> -<AUni ws="qvm-x-acl">yumpay</AUni> -<AUni ws="qvm-x-akh">yumpay</AUni> -<AUni ws="qvm-x-akl">yumpay</AUni> -<AUni ws="qvm-x-ame">yumpay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="ea45500a-0223-4990-87b2-5e062708645c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pasaypa</AUni> -<AUni ws="qvm-x-acl">pasaypa</AUni> -<AUni ws="qvm-x-akh">pasaypa</AUni> -<AUni ws="qvm-x-akl">pasaypa</AUni> -<AUni ws="qvm-x-ame">pasaypa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pasar.r</AUni> -<AUni ws="qvm-x-acl">+pasar.r</AUni> -<AUni ws="qvm-x-akh">+pasar.r</AUni> -<AUni ws="qvm-x-akl">+pasar.r</AUni> -<AUni ws="qvm-x-ame">+pasar.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.729" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9ea87731-00f2-4f6e-bf73-2a902395a2e9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pasar.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8b24eda1-6b59-4c7f-9a95-e4d51142a708" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6d013e5e-7fbc-414e-93a6-86edddc07af6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pasar.r 
\entryTyp root 
\gENG very 
\gSPN mucho 
\e +pasar.r 
\c R0 
\ach pasaypa 
\akh pasaypa 
\acl pasaypa 
\akl pasaypa 
\ame pasaypa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ea45cdbd-7684-410c-b107-2a5b343f6a9a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shoga</AUni> -<AUni ws="qvm-x-acl">shoga</AUni> -<AUni ws="qvm-x-akh">shoqa</AUni> -<AUni ws="qvm-x-akl">shoqa</AUni> -<AUni ws="qvm-x-ame">shuqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shuqa.v</AUni> -<AUni ws="qvm-x-acl">*shuqa.v</AUni> -<AUni ws="qvm-x-akh">*shuqa.v</AUni> -<AUni ws="qvm-x-akl">*shuqa.v</AUni> -<AUni ws="qvm-x-ame">*shuqa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.652" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="480f02fe-2b20-42bb-9ff2-7c53284034b4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shuqa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2eba746a-e6bd-4fdf-8c4b-bb9fb76e30f7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="154e7a2c-70ac-4ba7-9853-2e6f7431dcf6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shuqa.v 
\entryTyp root 
\gENG console 
\gSPN consolar 
\e *shuqa.v 
\c V2 
\ach shoga 
\akh shoqa 
\acl shoga 
\akl shoqa 
\ame shuqa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="ea465097-7f31-47a9-adbc-75b413a84e69" ownerguid="997eba85-9a15-48c2-8906-40ea725e8fa5"> -<Form> -<AUni ws="qvm-x-ach">catequista</AUni> -<AUni ws="qvm-x-acl">catequista</AUni> -<AUni ws="qvm-x-akh">catequista</AUni> -<AUni ws="qvm-x-akl">catequista</AUni> -<AUni ws="qvm-x-ame">catequista</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="ea46de30-a1a9-4828-84a8-9165f61f8b20" ownerguid="9e6d7c69-788c-4d40-8584-32f185e91932"> -<Abbreviation> -<AUni ws="en">6.4.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.448" /> -<DateModified val="2022-9-23 16:55:8.448" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to catching fish.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Fishing</AUni> -</Name> -<OcmCodes> -<Uni>226 Fishing; 225 Marine Hunting</Uni> -</OcmCodes> -<Questions> -<objsur guid="8aa945fb-7639-4af5-96d6-ac5f5398567b" t="o" /> -<objsur guid="7c137b93-23b3-4936-b4e7-0827d791b9ac" t="o" /> -<objsur guid="b1c6288b-7296-4820-ab40-1d13b6284205" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="573bf23a-3fde-4552-9263-62b7c71cad02" t="o" /> -<objsur guid="d7e0ed88-6d5a-44cc-a0fe-070a5aab3e60" t="o" /> -<objsur guid="eb07e333-38d2-4ddb-9bc9-5990403600b4" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="ea4b316e-d0af-42b7-9f43-0e48ea67d17e" ownerguid="fbd0e618-7c83-4afb-8800-0effa3a16a9b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ma</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ma</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ma</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ma</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ma</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d461bd39-dcdb-4b92-b683-c6749822c8b1" t="r" /> -</Morph> -<Msa> -<objsur guid="554634ac-1f6d-4bfc-8e9c-9d1dfeca4367" t="r" /> -</Msa> -<Sense> -<objsur guid="f442ba09-2469-4cfe-a31e-bcd120dbdec2" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="ea4cb563-ce0b-4f1c-b2c2-4666260171c2" ownerguid="127527f1-046d-452b-9a96-918251333a9a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ffcafdc9-153b-4151-8195-fec594a0b004" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="ea4cef47-8eca-4b02-9021-d347c651d85f" ownerguid="d9a499aa-805c-45f0-b43f-2c394ceff053"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="ea4e2880-127a-4b3c-b521-fcd4aa3fd5f8" ownerguid="319b7245-2c99-422b-a23e-d33810811ef9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="82e9c3df-e95c-44d6-998d-f3779aad6808" t="r" /> -</Morph> -<Msa> -<objsur guid="1b3c6562-1662-468e-b5c0-fcf36256167d" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="ea4e34f5-f2fe-445a-88ff-eb9bb60c1288" ownerguid="b4aa4bbd-8abf-4503-96e4-05c75efd23d5"> -<ExampleWords> -<AUni ws="en">(cold/warm/storm) front</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe the weather when it changes?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ea51f192-39b6-4c6a-b7f9-70f8a5e71ce4" ownerguid="be878acc-7985-40ed-99ce-0f8f857ce5a4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ea523a85-650b-4752-b1c2-f11e5856d5e9" ownerguid="b5e5984d-25f9-4b5d-a2eb-fc47a411c2ea"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sepulcher</AUni> -<AUni ws="es">sepulcro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="090cbdfb-0947-4548-bfce-a1438908f76d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ea580de1-bd7f-4b71-af8e-11a223088095" ownerguid="00de8f35-a79f-44fa-834e-55d786c8f87b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ea591d46-8408-4710-9af8-9189cf839046" ownerguid="b82c7ba0-9f4e-44da-bcd0-d30f5b224de5"> -<ExampleWords> -<AUni ws="en">take something for, drink, swallow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to taking medicine?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ea5a9e26-8b98-4de1-b08b-24609e0c15bf" ownerguid="30e6b42c-6bbf-4659-99e7-aa4b8e68c9ce"> -<ExampleWords> -<AUni ws="en">do good, be good, behave, behave yourself, be on your best behavior</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to doing something good?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ea5c562c-9956-4650-b9ab-5a5b56788676" ownerguid="286ee16c-a218-43d5-bbac-ab15f80c3fcf"> -<ExampleWords> -<AUni ws="en">have enough, be OK for, be all right for, be well off for, have sufficient</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to having enough of something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ea5d47dd-5f7e-4328-b96a-7d34ba819930" ownerguid="ef409fc6-bd89-4cc6-ade5-abb882272313"> -<ExampleWords> -<AUni ws="en">prefer to do something, prefer doing something, would prefer to do something, would rather do something, would sooner do something, be in favor of doing something</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to preferring to do something?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="ea608820-ccad-47fd-950b-b1b8e9c041f7" ownerguid="50f1f32b-3b9c-4f46-a101-3c6a9283694b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Jaca acapanyalcula caycan. Pishtarcunäpagnöga manami cantsu.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="ea6167ee-2562-4d71-bd39-bd7bbd72ec47" ownerguid="743b003a-0fc5-4822-bd7b-36ea4a7a74a5"> -<Form> -<AUni ws="qvm-x-ach">jorga</AUni> -<AUni ws="qvm-x-acl">jorga</AUni> -<AUni ws="qvm-x-akh">jorqa</AUni> -<AUni ws="qvm-x-akl">jorqa</AUni> -<AUni ws="qvm-x-ame">hurqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ea625a82-27ac-4b52-b0ec-a0674b45ed70" ownerguid="cfbbb86a-b988-46d3-aff9-4a13557ebe01"> -<Form> -<AUni ws="qvm-x-ach">waraca</AUni> -<AUni ws="qvm-x-acl">waraca</AUni> -<AUni ws="qvm-x-akh">waraka</AUni> -<AUni ws="qvm-x-akl">waraka</AUni> -<AUni ws="qvm-x-ame">waraka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ea63745c-b230-4a50-ad39-a7cb79abc7fe" ownerguid="6eabd924-d1b0-4c2b-95a0-dbfddb3552f9"> -<Form> -<AUni ws="qvm-x-ach">riquëza</AUni> -<AUni ws="qvm-x-acl">riquëza</AUni> -<AUni ws="qvm-x-akh">riquëza</AUni> -<AUni ws="qvm-x-akl">riquëza</AUni> -<AUni ws="qvm-x-ame">riquëza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="ea649ede-f6af-42e5-af0c-7008bc3f6b42" ownerguid="90785272-00d8-4377-82bd-2803fd4027ce"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="ea66b5e2-d298-413e-9633-f0cb41751b75" ownerguid="db5c48df-4562-47e3-8962-4fa94cf7ea8a" /> -<rt class="MoStemMsa" guid="ea67acab-8445-4134-9205-8778a609e882" ownerguid="9b3bba1a-cf29-45b5-9bf3-9478d5180999" /> -<rt class="LexEntry" guid="ea67b3b5-f3d6-407b-9222-ea54265ab382"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shinca</AUni> -<AUni ws="qvm-x-acl">shinca</AUni> -<AUni ws="qvm-x-akh">shinka</AUni> -<AUni ws="qvm-x-akl">shinka</AUni> -<AUni ws="qvm-x-ame">shinka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shinka.v</AUni> -<AUni ws="qvm-x-acl">*shinka.v</AUni> -<AUni ws="qvm-x-akh">*shinka.v</AUni> -<AUni ws="qvm-x-akl">*shinka.v</AUni> -<AUni ws="qvm-x-ame">*shinka.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.591" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9e8d3ff5-82b6-4294-9be4-7bdb7191f516" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shinka.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dbff50c6-5341-4b62-aaf8-e9d6867ea467" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="44965070-4e6a-4e0f-9602-43a9b269b495" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shinka.v 
\entryTyp root 
\gENG enebriate 
\gSPN emborracharse 
\e *shinka.v 
\c V1 
\ach shinca 
\akh shinka 
\acl shinca 
\akl shinka 
\ame shinka</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="ea67ee9d-29a4-4623-8e48-95005c9602a8" ownerguid="ddfcbbd8-07f6-4fb6-a08d-b61ac2827cfc"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">jämaytapis manami cachantsu - está enojado</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="ea68a8d9-9cea-4870-9107-52e50530e6e9" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<ExampleWords> -<AUni ws="en">ruler, tape measure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(15) What instruments are used to measure the size of something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ea6b1251-e6e4-4b9e-ab76-65207eb88364"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ani:llu</AUni> -<AUni ws="qvm-x-acl">ani:llu; ani:llu; ani:llo</AUni> -<AUni ws="qvm-x-akh">ani:llu</AUni> -<AUni ws="qvm-x-akl">ani:llu; ani:llu; ani:llo</AUni> -<AUni ws="qvm-x-ame">ani:llu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+anillo</AUni> -<AUni ws="qvm-x-acl">+anillo</AUni> -<AUni ws="qvm-x-akh">+anillo</AUni> -<AUni ws="qvm-x-akl">+anillo</AUni> -<AUni ws="qvm-x-ame">+anillo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.769" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="da68346f-b388-4496-8eea-e77eee152689" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+anillo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="52488270-328c-457d-8fd7-13d55ba0887c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="67bb0d19-e520-461c-8d73-76b5caa1240e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +anillo 
\entryTyp root 
\gENG ring 
\gSPN anillo 
\e +anillo 
\c N0 
\ach ani:llu 
\akh ani:llu 
\acl ani:llu / _# 
\acl ani:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ani:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ani:llu / _# 
\akl ani:llu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ani:llo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ani:llu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ea6b53be-c0c4-499c-b920-8d88b0e7c6e8" ownerguid="345e019f-87d2-415d-ba37-9fb85460f7e1"> -<ExampleWords> -<AUni ws="en">saw, ax, logging truck</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What tools are used in lumbering?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ea6bafd9-a140-4861-8808-1d69707d3138" ownerguid="1f507886-7b6c-47eb-8754-90c4f94828ea"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">liter</AUni> -<AUni ws="es">litro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="303f451b-7431-4a9e-aca2-1e5f9549ffbe" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="ea6c6c82-37c8-4638-9cfe-74b39b626c32" ownerguid="d5c59f3d-5ec4-4ccb-b2c8-a4ee009ee479"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rot</AUni> -<AUni ws="es">pudrir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1c0191e6-c3d7-4ad0-9a72-22b4fcf5843c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="ea6f5950-2fcd-4eba-aaa7-351e8abba758" ownerguid="65a3d052-ab43-4056-b273-5672b4332e6d"> -<Form> -<AUni ws="qvm-x-ach">pësa</AUni> -<AUni ws="qvm-x-acl">pësa</AUni> -<AUni ws="qvm-x-akh">pësa</AUni> -<AUni ws="qvm-x-akl">pësa</AUni> -<AUni ws="qvm-x-ame">pësa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="ea7161dc-baa4-4212-aa21-8e49d1f39649" ownerguid="c6340d2f-f792-470d-8005-679200241fec"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">school</AUni> -<AUni ws="es">escuela</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b0c901b0-b329-4db7-a30e-fa35460ad561" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="ea75c415-1cdf-4e67-8942-e8be5b569c91"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chisca</AUni> -<AUni ws="qvm-x-acl">chisca</AUni> -<AUni ws="qvm-x-akh">chiska</AUni> -<AUni ws="qvm-x-akl">chiska</AUni> -<AUni ws="qvm-x-ame">chiska</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*triska</AUni> -<AUni ws="qvm-x-acl">*triska</AUni> -<AUni ws="qvm-x-akh">*triska</AUni> -<AUni ws="qvm-x-akl">*triska</AUni> -<AUni ws="qvm-x-ame">*triska</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.129" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7125b4ae-cf8f-4648-924a-5305be83f207" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*triska</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="af80ae07-faac-4d0c-8fa0-538cf1cd0a0c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="573e8242-bb98-4fe2-b30a-59dfc793f8aa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *triska 
\entryTyp root 
\gENG flirt 
\gSPN coqueta 
\e *triska 
\c N0 
\ach chisca 
\akh chiska 
\acl chisca 
\akl chiska 
\ame chiska</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ea75f0f7-7a82-42e5-97e0-44f241c59f5c" ownerguid="3b18fd9f-1361-47fd-ae1c-dbafc879fefd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rough</AUni> -<AUni ws="es">tosco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9592006a-4da4-4c05-bf2f-fe4a1b8c8f98" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="ea7727e3-3738-4dd3-b53c-12050f85a6de" ownerguid="bf930956-33c5-4d06-b6b4-59a555607478"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gleam</AUni> -<AUni ws="es">empañar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a9ee4824-4937-4ae7-8764-72f24517ee26" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ea779270-6dee-47fc-a1c6-fb049ba810dd" ownerguid="d030f0c7-31a3-47da-be35-46f1eba63ae9"> -<ExampleWords> -<AUni ws="en">likable, lovable, lovely, tasteful, admirable, delightful, charming, endearing, engaging, pleasing, pleasurable, enjoyable, nice, likes and dislikes, love of your life, passion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that is liked?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ea78bea9-b6fd-43a4-a54a-214e2b95d919" ownerguid="10ebefab-eeaa-4ce5-962b-75e039facd05"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="ea796eb8-9dc0-4db0-9518-722cdfc8dc6e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nava:ja</AUni> -<AUni ws="qvm-x-acl">nava:ja</AUni> -<AUni ws="qvm-x-akh">nava:ja</AUni> -<AUni ws="qvm-x-akl">nava:ja</AUni> -<AUni ws="qvm-x-ame">nava:ja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+navaja</AUni> -<AUni ws="qvm-x-acl">+navaja</AUni> -<AUni ws="qvm-x-akh">+navaja</AUni> -<AUni ws="qvm-x-akl">+navaja</AUni> -<AUni ws="qvm-x-ame">+navaja</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.547" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d7e65030-c437-462c-92d9-39db813a93c0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+navaja</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a11ae4f0-3abb-4d03-90c9-e20c189edda8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e506f949-29b6-46b8-b310-eb3fc54d7d11" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +navaja 
\entryTyp root 
\gENG razor 
\gSPN 
\e +navaja 
\c N0 
\ach nava:ja 
\akh nava:ja 
\acl nava:ja 
\akl nava:ja 
\ame nava:ja</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="ea7c06d0-5e33-4702-b6a0-51582b216fe8" ownerguid="265f5645-94cb-485c-8bf9-0a3ab2354f63"> -<Abbreviation> -<AUni ws="en">9.6.1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.718" /> -<DateModified val="2022-9-23 16:55:8.718" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that an event is distributed throughout a group, area, or time span.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89P Distribution</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Distribution</AUni> -</Name> -<Questions> -<objsur guid="6ec96d0d-72be-4da4-b1f4-982178ce9a4a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="ea7c6a99-dc9d-44b2-ba38-9743322907f4" ownerguid="4b23658b-471f-4b76-9438-8d46f96107d0"> -<Form> -<AUni ws="qvm-x-ach">autoridä</AUni> -<AUni ws="qvm-x-acl">autoridä</AUni> -<AUni ws="qvm-x-akh">autoridä</AUni> -<AUni ws="qvm-x-akl">autoridä</AUni> -<AUni ws="qvm-x-ame">autoridä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ea7d40eb-d500-4f5f-ae00-c1398ecffdb9" ownerguid="3b18fd9f-1361-47fd-ae1c-dbafc879fefd"> -<Form> -<AUni ws="qvm-x-ach">toscu; tosco</AUni> -<AUni ws="qvm-x-acl">toscu; toscu; tosco</AUni> -<AUni ws="qvm-x-akh">toscu; tosco</AUni> -<AUni ws="qvm-x-akl">toscu; toscu; tosco</AUni> -<AUni ws="qvm-x-ame">toscu; tosco</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ea7e7545-f1a1-4a57-978a-d8cf9077bbae" ownerguid="9119c29d-ddb5-4613-8f36-f8cd48a9b751"> -<Form> -<AUni ws="qvm-x-ach">tica</AUni> -<AUni ws="qvm-x-acl">tica</AUni> -<AUni ws="qvm-x-akh">tika</AUni> -<AUni ws="qvm-x-akl">tika</AUni> -<AUni ws="qvm-x-ame">tika</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ea80a2b1-ee67-4eb4-bd51-c592be994261" ownerguid="a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f"> -<ExampleWords> -<AUni ws="en">spot, sight, observe</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to seeing something that you have been looking for?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="ea80ed01-aed6-44b4-acfc-98ea7bb0f7e7" ownerguid="79436830-092b-4d13-a715-f392d7e33708"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">garga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">garga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qarqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qarqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qarqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e9154280-f82e-445f-8700-b610d772df34" t="r" /> -</Morph> -<Msa> -<objsur guid="c7dbec8d-838d-4a92-a15b-4f3d5b563513" t="r" /> -</Msa> -<Sense> -<objsur guid="85c9f7db-4fd1-4d3d-80fd-9e0c1d3b8a91" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="ea831884-f042-4232-bec5-5a477848b2f1" ownerguid="98bdde46-83fb-41d6-b44a-10d5d0b56867"> -<Form> -<AUni ws="qvm-x-ach">cincu; cinco</AUni> -<AUni ws="qvm-x-acl">cincu; cincu; cinco</AUni> -<AUni ws="qvm-x-akh">cincu; cinco</AUni> -<AUni ws="qvm-x-akl">cincu; cincu; cinco</AUni> -<AUni ws="qvm-x-ame">cincu; cinco</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="ea839451-f89e-4432-b361-3086ca4f13fd" ownerguid="5d92b4a7-baf7-495e-bb43-4f733cc55935"> -<Abbreviation> -<AUni ws="en">6.1.8.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.381" /> -<DateModified val="2022-9-23 16:55:8.381" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being accustomed to something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Accustomed to</AUni> -</Name> -<Questions> -<objsur guid="3d94317b-7eb0-4ac1-92e4-5c66af0698e8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="ea83c0ea-709f-403e-8669-178a4436e627" ownerguid="952bdaa1-8cb6-4bb2-9645-582195db4c19"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">attic</AUni> -<AUni ws="es">altos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ebb644b3-c6cd-4cad-8d38-8274f2fd1824" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ea83effc-73f4-49bc-80f6-e6b61997e4be" ownerguid="bc8d0ad4-6ebf-4fa0-bc7e-60e8ec9c43db"> -<ExampleWords> -<AUni ws="en">look cross-eyed, roll, flicker, raise, lower, glaze</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the eyes moving?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ea859d68-b19e-46e4-aaed-6e441ff9ff85" ownerguid="3edb307f-be46-40b6-a6a4-ae075b40258c"> -<ExampleWords> -<AUni ws="en">from now on, from this time forward, starting now, starting from now, effective immediately, henceforth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that something starts to happen now and will continue?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ea85ea43-2d9d-4a5f-b7c6-df64009a67fe" ownerguid="1168d136-6344-4f8f-b717-9d921e1e8cf9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">playing.field</AUni> -<AUni ws="es">campo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="91710373-7c97-4416-af9e-871245876b9b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="ea877276-bcf1-418b-94c7-7596add1ae8a" ownerguid="14a21d83-1aef-4f79-8088-7595e01cea86"> -<Form> -<AUni ws="qvm-x-ach">wäca</AUni> -<AUni ws="qvm-x-acl">wäca</AUni> -<AUni ws="qvm-x-akh">wäka</AUni> -<AUni ws="qvm-x-akl">wäka</AUni> -<AUni ws="qvm-x-ame">wäka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="ea88f1df-6b20-478b-8385-15ab693bbec7" ownerguid="b179244b-7f64-4aa2-bc77-417eaf8c17c7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="a2240ea8-a0ba-475b-8608-c7fca97beb2b" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="202132cd-96da-4c43-9319-57cb8c97955b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ea8a6f5e-7d3d-4876-acf3-d737572d3db1" ownerguid="c8595a5f-4dde-4260-b8d8-265d0554ce93"> -<ExampleWords> -<AUni ws="en">be winning, lead, be ahead, be in the lead, be out in front</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to a situation during a fight or game when it looks like you will win?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ea8efa6f-3058-4008-9cc2-afa4bb11ab53"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nushi</AUni> -<AUni ws="qvm-x-acl">nushi; nushe</AUni> -<AUni ws="qvm-x-akh">nushi</AUni> -<AUni ws="qvm-x-akl">nushi; nushe</AUni> -<AUni ws="qvm-x-ame">nushi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñushi.v</AUni> -<AUni ws="qvm-x-acl">*ñushi.v</AUni> -<AUni ws="qvm-x-akh">*ñushi.v</AUni> -<AUni ws="qvm-x-akl">*ñushi.v</AUni> -<AUni ws="qvm-x-ame">*ñushi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.606" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8da440ab-c388-431c-b6c4-ccd2c04f1290" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñushi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5e484986-7738-48d5-8b55-e5902f8d69d7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="43ffda30-6aac-4c20-8ef6-61d9c0246950" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñushi.v 
\entryTyp root 
\gENG 
\gSPN sucio 
\e *ñushi.v 
\c V1 
\mp +FinalI 
\ach nushi 
\akh nushi 
\acl nushi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl nushe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl nushi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl nushe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame nushi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ea901d8f-df94-45d8-9eda-9280a65e1942" ownerguid="807f9ed0-73a9-441f-9dfc-e30507ed5501"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">horn</AUni> -<AUni ws="es">cuerno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="909a4416-f4e0-42f7-a70f-97846f451de7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="ea943ba9-ac0f-406f-adeb-b2e5540461dd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rima</AUni> -<AUni ws="qvm-x-acl">rima</AUni> -<AUni ws="qvm-x-akh">rima</AUni> -<AUni ws="qvm-x-akl">rima</AUni> -<AUni ws="qvm-x-ame">rima</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rima</AUni> -<AUni ws="qvm-x-acl">*rima</AUni> -<AUni ws="qvm-x-akh">*rima</AUni> -<AUni ws="qvm-x-akl">*rima</AUni> -<AUni ws="qvm-x-ame">*rima</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.366" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6ba6b5ee-a3a9-415e-91f5-5322ef602e1a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rima</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e4f4a6e0-e5f6-4f76-b5b5-8981edb6e04a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bdd669c6-5d67-4a35-b66d-0b641893dbe4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rima 
\entryTyp root 
\gENG talk 
\gSPN hablar 
\e *rima 
\c V2 
\ach rima 
\akh rima 
\acl rima 
\akl rima 
\ame rima</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ea95f953-6458-49a2-9561-8bee63cd7938" ownerguid="84a8d541-9571-4ce9-abea-bd9cccb8dbf0"> -<ExampleWords> -<AUni ws="en">stair, step, rung (of a ladder), staircase, stairway, stairwell, stairs, flight of stairs, elevator, lift, escalator, fire escape, ladder, banister, handrail, landing, ramp</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to stairs and other ways of climbing to a higher level?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ea98d011-d801-4aee-84c9-b3d1f8f606cb" ownerguid="d68b09ee-846d-45ef-b0d7-392425fef18e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="ea990893-7941-4ab7-8090-acbaf1b1cf97"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bastón; baston</AUni> -<AUni ws="qvm-x-acl">bastón; baston</AUni> -<AUni ws="qvm-x-akh">bastón; baston</AUni> -<AUni ws="qvm-x-akl">bastón; baston</AUni> -<AUni ws="qvm-x-ame">bastón; baston</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+bastón</AUni> -<AUni ws="qvm-x-acl">+bastón</AUni> -<AUni ws="qvm-x-akh">+bastón</AUni> -<AUni ws="qvm-x-akl">+bastón</AUni> -<AUni ws="qvm-x-ame">+bastón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.949" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c1373500-be2d-4eef-8eff-bb21b8ad4b4c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+bastón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b0c00e92-defc-4b18-b7ea-8b7870e556e6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="334f2b59-a28d-44a2-b17b-e9ccd9a94901" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +bastón 
\entryTyp root 
\gENG staff 
\gSPN bastón 
\e +bastón 
\c N0 
\mp +FinalC 
\ach bastón / _# 
\ach baston / ~_# 
\akh bastón / _# 
\akh baston / ~_# 
\acl bastón / _# 
\acl baston / ~_# 
\akl bastón / _# 
\akl baston / ~_# 
\ame bastón / _# 
\ame baston / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ea9c8d4b-29b3-4fe8-a081-86b1c98e644e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fabrica</AUni> -<AUni ws="qvm-x-acl">fabrica</AUni> -<AUni ws="qvm-x-akh">fabrica</AUni> -<AUni ws="qvm-x-akl">fabrica</AUni> -<AUni ws="qvm-x-ame">fabrica</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fabricar</AUni> -<AUni ws="qvm-x-acl">+fabricar</AUni> -<AUni ws="qvm-x-akh">+fabricar</AUni> -<AUni ws="qvm-x-akl">+fabricar</AUni> -<AUni ws="qvm-x-ame">+fabricar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.528" /> -<DateModified val="2022-10-10 21:18:47.218" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d67771d9-9287-49b9-9662-e1d7d4644abd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fabricar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2eab4a9a-efe6-4af7-9c91-64ed6114cf08" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7497711e-b5b6-454e-bb40-9c26a21e3353" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fabricar 
\entryTyp root 
\gENG 
\gSPN 
\e +fabricar 
\c V1 
\ach fabrica 
\akh fabrica 
\acl fabrica 
\akl fabrica 
\ame fabrica</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="eaa05374-3d41-4f01-90a7-2261aa6056bd" ownerguid="0f219efd-e161-4827-b87b-7c4774247fce"> -<Form> -<AUni ws="qvm-x-ach">grätis</AUni> -<AUni ws="qvm-x-acl">grätis</AUni> -<AUni ws="qvm-x-akh">grätis</AUni> -<AUni ws="qvm-x-akl">grätis</AUni> -<AUni ws="qvm-x-ame">grätis</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="eaa0ef36-41e5-4bd4-b4d7-f39db5da6870" ownerguid="f7eda99e-fde7-4f3f-ab22-a034e7f3c3b2"> -<Form> -<AUni ws="qvm-x-ach">rpa</AUni> -<AUni ws="qvm-x-acl">rpa</AUni> -<AUni ws="qvm-x-akh">rpa</AUni> -<AUni ws="qvm-x-akl">rpa</AUni> -<AUni ws="qvm-x-ame">rpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="b27c54e7-0a24-46d7-b332-e63a45ecffc2" t="r" /> -</PhoneEnv> -</rt> -<rt class="WfiAnalysis" guid="eaa2018f-d92a-440b-b5d7-9ac949f75f99" ownerguid="9ad0be7a-f9b6-4a92-b396-392f53e09ecf"> -<Category> -<objsur guid="38b17640-aa0a-406d-bc99-a54197290945" t="r" /> -</Category> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="e3dd56ca-7f1d-4da0-ba6d-620ca860f5fe" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="dfb0c136-def6-4f27-a95a-34cb45a37460" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="eaa54092-a987-49f7-aafe-19ff369305d9" ownerguid="c27b87cf-1211-4df2-96b1-12c416edabbe"> -<ExampleWords> -<AUni ws="en">humorous, funny, hilarious, hysterical, silly, comical, ludicrous, amusing, comic, absurd, facetious, droll, laughable, zany</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that is humorous?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="eaa8aa46-b632-48a0-a7fb-b8ef4b7dcc4e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">u:na</AUni> -<AUni ws="qvm-x-acl">u:na</AUni> -<AUni ws="qvm-x-akh">u:na</AUni> -<AUni ws="qvm-x-akl">u:na</AUni> -<AUni ws="qvm-x-ame">u:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+una</AUni> -<AUni ws="qvm-x-acl">+una</AUni> -<AUni ws="qvm-x-akh">+una</AUni> -<AUni ws="qvm-x-akl">+una</AUni> -<AUni ws="qvm-x-ame">+una</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.231" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a98a43d4-200c-4f6c-9ee2-a7fa90614137" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+una</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="42f241ab-188e-4562-abac-21bd54714ba5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5b887804-7d27-4127-95cd-bb4d7e1132fb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +una 
\entryTyp root 
\gENG one 
\gSPN una 
\e +una 
\c N0 
\ach u:na 
\akh u:na 
\acl u:na 
\akl u:na 
\ame u:na</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="eaa91e8e-4949-49b0-b781-09414caa52b4" ownerguid="cf4d4d84-b7b7-4f0b-93e1-8484e851d6eb"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="eaaaaca4-72fd-49ca-9371-e8a32f5d461c" ownerguid="c05bf8c3-78f2-4ec5-b0d7-32d4963a5794"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John built his house <out of> cement blocks.; This picture was done <with> oil paints.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">out of, with, from, of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate the material that something is made of?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="eaaadc31-b3c1-498e-80b9-2d7cf02ad3a9" ownerguid="5471fd91-b13a-44e5-a336-5603b5f1cc39"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">gam</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">gam</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qam</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qam</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qam</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e50f3d14-61be-4feb-8ecd-34f183264859" t="r" /> -</Morph> -<Msa> -<objsur guid="b56d9572-6ab1-4223-8377-b7274c562325" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="eaac98ae-738f-4c03-8c8f-2f5007b4e00a" ownerguid="ef99137c-3c5c-4b69-9370-03ffac8c5e6e"> -<Form> -<AUni ws="qvm-x-ach">läta</AUni> -<AUni ws="qvm-x-acl">läta</AUni> -<AUni ws="qvm-x-akh">läta</AUni> -<AUni ws="qvm-x-akl">läta</AUni> -<AUni ws="qvm-x-ame">läta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="eaacfc93-b8dc-4f0f-ab2f-524b6590e911"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sego; segu:</AUni> -<AUni ws="qvm-x-acl">sego; sego:</AUni> -<AUni ws="qvm-x-akh">seqo; sequ:</AUni> -<AUni ws="qvm-x-akl">seqo; seqo:</AUni> -<AUni ws="qvm-x-ame">siqu; siqu:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*siqu:</AUni> -<AUni ws="qvm-x-acl">*siqu:</AUni> -<AUni ws="qvm-x-akh">*siqu:</AUni> -<AUni ws="qvm-x-akl">*siqu:</AUni> -<AUni ws="qvm-x-ame">*siqu:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.713" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="34e1ead6-ad50-46a6-937e-6d9ab362a326" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*siqu:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="de3354f3-5a50-4057-a51d-350c63719f2f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="97adeb63-959a-45c9-81b7-9c63cabe6409" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *siqu: 
\entryTyp root 
\gENG 
\gSPN vengar 
\e *siqu: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach sego foreshortened 
\ach segu: 
\akh seqo foreshortened 
\akh sequ: 
\acl sego foreshortened 
\acl sego: 
\akl seqo foreshortened 
\akl seqo: 
\ame siqu foreshortened 
\ame siqu: 
\mcc *siqu: / ~_ DUR</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="eaae3768-2c91-45b7-a6db-7a0c5083de7a" ownerguid="a9274aef-d301-40d6-a5fd-b5ff5878e0b4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ta</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ta</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ta</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ta</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ta</Run> -</AStr> -</Form> -<Morph> -<objsur guid="4f3f1430-f126-405a-98a8-5d0b732eb948" t="r" /> -</Morph> -<Msa> -<objsur guid="eac932ef-fd79-454b-b2f7-95e85dbb829a" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="eaae3c10-1dd0-4644-9a2e-4fc5b8a810ce" ownerguid="ce388b3a-7c80-4cec-96f2-ad558bcaa18a"> -<Form> -<AUni ws="qvm-x-ach">mësa</AUni> -<AUni ws="qvm-x-acl">mësa</AUni> -<AUni ws="qvm-x-akh">mësa</AUni> -<AUni ws="qvm-x-akl">mësa</AUni> -<AUni ws="qvm-x-ame">mësa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="eaae4f48-7a09-4f3d-9a75-183b00625e04" ownerguid="20baa5e7-4f02-4782-a292-c6281d7b5f3a"> -<ExampleWords> -<AUni ws="en">push, shove, press, force your way, jostle, elbow, barge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to pushing people in a crowd?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="eaaf66fa-a6b2-46a1-aca4-97d997736d99" ownerguid="eac75aca-e508-480f-9b86-36cb0c904578"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="eaaf6f47-ef7e-41ec-abd6-1980077664af"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">coro</AUni> -<AUni ws="qvm-x-acl">coro</AUni> -<AUni ws="qvm-x-akh">coro</AUni> -<AUni ws="qvm-x-akl">coro</AUni> -<AUni ws="qvm-x-ame">coro</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+coro</AUni> -<AUni ws="qvm-x-acl">+coro</AUni> -<AUni ws="qvm-x-akh">+coro</AUni> -<AUni ws="qvm-x-akl">+coro</AUni> -<AUni ws="qvm-x-ame">+coro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.192" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="1" /> -<LexemeForm> -<objsur guid="bae5de78-76e7-40d1-8c03-7d6618f63b00" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+coro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="509c51b8-95ee-4dd0-8fdd-3628a6f1b401" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9466bf17-560e-46b6-998c-8d6d7cdebc77" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +coro 
\entryTyp root 
\gENG 
\gSPN 
\e +coro 
\c NOSUFF 
\ach coro 
\akh coro 
\acl coro 
\akl coro 
\ame coro</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="eab5c907-1629-46e8-bd7f-e1e7b289be8b" ownerguid="b6e59b23-222b-4009-b08c-1d0a4c8a3ed5"> -<Form> -<AUni ws="qvm-x-ach">asamblea</AUni> -<AUni ws="qvm-x-acl">asamblea</AUni> -<AUni ws="qvm-x-akh">asamblea</AUni> -<AUni ws="qvm-x-akl">asamblea</AUni> -<AUni ws="qvm-x-ame">asamblea</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="eab6bda3-ac17-4283-be61-5ced283c637b" ownerguid="8d13a888-2604-473b-a573-c03db670c4ee"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">evil.spirit</AUni> -<AUni ws="es">espíritu.malo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c4fcd826-4d0a-43be-926b-9e7ab4897584" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="eab6d87d-add6-4e60-a42a-e37d71d5fcf1" ownerguid="9c5d5f3a-51c2-4945-b1c5-d59421434b75"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="eab7c788-26f5-44ab-88ca-7dcdc184574b" ownerguid="c62e246c-30ba-49ed-8885-c673eafdb477"> -<Form> -<AUni ws="qvm-x-ach">pishta</AUni> -<AUni ws="qvm-x-acl">pishta</AUni> -<AUni ws="qvm-x-akh">pishta</AUni> -<AUni ws="qvm-x-akl">pishta</AUni> -<AUni ws="qvm-x-ame">pishta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="eabbeb61-3400-4ccd-81d3-cedeaa73fef7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tiuya</AUni> -<AUni ws="qvm-x-acl">tiuya</AUni> -<AUni ws="qvm-x-akh">tiwya</AUni> -<AUni ws="qvm-x-akl">tiwya</AUni> -<AUni ws="qvm-x-ame">tiwya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tiwya</AUni> -<AUni ws="qvm-x-acl">*tiwya</AUni> -<AUni ws="qvm-x-akh">*tiwya</AUni> -<AUni ws="qvm-x-akl">*tiwya</AUni> -<AUni ws="qvm-x-ame">*tiwya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.934" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a89a3321-c8e0-45b0-84fc-cf1e23feb71a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tiwya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="83bb5171-23aa-4286-b829-00c4272f87e5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="525bff6e-3129-475d-ae58-38a89496f146" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tiwya 
\entryTyp root 
\gENG 
\gSPN caer 
\e *tiwya 
\c V1 
\ach tiuya 
\akh tiwya 
\acl tiuya 
\akl tiwya 
\ame tiwya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="eabea05a-41f9-4248-a88f-65c8ee86da23" ownerguid="2e5a80f9-35ae-4850-9627-be530832a781"> -<ExampleWords> -<AUni ws="en">(none in English)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What affixes are used to show respect?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="eabf45f7-2885-41f5-8ae2-9869e1c84189" ownerguid="c3fe0775-f03b-4a1f-ae57-c6c750ad5b39"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="eac04665-21b1-4078-9e10-62a6d958d08b" ownerguid="af74046a-6667-48a1-a068-ed96ca9d8fb2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="eac18773-637d-4460-8ab0-40fa371ee4df" ownerguid="a7dae83a-dce6-47ea-ab3f-ac8a3af4cce9"> -<ExampleWords> -<AUni ws="en">national</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that has to do with a country?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="eac35f04-27d5-47d9-b6bf-db6cd435875a" ownerguid="7678a0e6-fc24-4695-b9d7-196c8f74c3c1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="eac4a464-7d9c-459d-802a-5e69a7888f3d" ownerguid="04272a3a-e644-4701-8b40-5b50e4775dde"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="eac4b58e-1fd7-4ce1-9a68-c7516470e876" ownerguid="a42db5b4-6317-4d3f-beff-cb92dbaca914"> -<Abbreviation> -<AUni ws="en">3.2.2.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.103" /> -<DateModified val="2022-9-23 16:55:8.103" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to realizing something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Realize</AUni> -</Name> -<Questions> -<objsur guid="63a9008f-01cc-4c60-a541-e5178bf41dd6" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="eac644a2-8901-4156-88f2-968b7f0b693b" ownerguid="8225de87-35a3-4c7a-b35c-f45b152caebe"> -<ExampleWords> -<AUni ws="en">be a tribute to, say a lot for, reflect well on, be a testimony to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to something showing that something has a good quality?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="eac75aca-e508-480f-9b86-36cb0c904578"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cato:licu</AUni> -<AUni ws="qvm-x-acl">cato:licu; cato:licu; cato:lico</AUni> -<AUni ws="qvm-x-akh">cato:licu</AUni> -<AUni ws="qvm-x-akl">cato:licu; cato:licu; cato:lico</AUni> -<AUni ws="qvm-x-ame">cato:licu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+católico</AUni> -<AUni ws="qvm-x-acl">+católico</AUni> -<AUni ws="qvm-x-akh">+católico</AUni> -<AUni ws="qvm-x-akl">+católico</AUni> -<AUni ws="qvm-x-ame">+católico</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.820" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="56d53d0f-3d10-49f5-b70b-73b19ead0caa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+católico</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eaaf66fa-a6b2-46a1-aca4-97d997736d99" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7894549a-9068-4dfa-94e0-f5b6ffe1eacd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +católico 
\entryTyp root 
\gENG catholic 
\gSPN católico 
\e +católico 
\c N0 
\ach cato:licu 
\akh cato:licu 
\acl cato:licu / _# 
\acl cato:licu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cato:lico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cato:licu / _# 
\akl cato:licu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cato:lico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cato:licu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoMorphAdhocProhib" guid="eac79359-e5cd-42f1-82bc-0b913916548e" ownerguid="b80228bc-ea5e-11de-9d24-0013722f8dec"> -<Adjacency val="4" /> -<Disabled val="False" /> -<FirstMorpheme> -<objsur guid="85e3456d-a3a6-4fb2-848b-ab16e0bc1f03" t="r" /> -</FirstMorpheme> -<RestOfMorphs> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</RestOfMorphs> -</rt> -<rt class="MoInflAffMsa" guid="eac932ef-fd79-454b-b2f7-95e85dbb829a" ownerguid="8fac2a47-5fa9-494e-9bae-2efc1f6bd9d6"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="fda4c591-1349-4f9e-ab87-905ae2aa25e1" t="r" /> -</Slots> -</rt> -<rt class="CmDomainQ" guid="eacac819-278f-408f-8b19-a1b75d2bb9d7" ownerguid="d395edc8-fb58-4ba4-8446-dacf8ea0477a"> -<ExampleWords> -<AUni ws="en">dry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What happens to sweat?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="eacae8ca-0fbd-490d-9165-28eafa9430ae" ownerguid="c8595a5f-4dde-4260-b8d8-265d0554ce93"> -<ExampleWords> -<AUni ws="en">win by a narrow margin, scrape home, scrape by, squeak by, be a close-run thing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to almost losing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="eacb9cf9-1013-4317-a1ad-4a95551bf77e" ownerguid="b4aa4bbd-8abf-4503-96e4-05c75efd23d5"> -<ExampleWords> -<AUni ws="en">rain or shine, all weather, in all weathers</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words are used to describe any kind of weather?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="eacc5410-6e8b-491c-9a9e-fcad1a60297b"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">itsanqa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="eacf02d4-dce5-4ed6-9fc3-f951398ba3b4" ownerguid="fba27833-d6f1-4c36-ac39-28902b29261b"> -<ExampleWords> -<AUni ws="en">similarity, parallel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to the way in which two things are similar?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="eacf722f-ee09-45ab-8963-b80cfa67342f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sienti</AUni> -<AUni ws="qvm-x-acl">sienti; siente</AUni> -<AUni ws="qvm-x-akh">sienti</AUni> -<AUni ws="qvm-x-akl">sienti; siente</AUni> -<AUni ws="qvm-x-ame">sienti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sentir.v2</AUni> -<AUni ws="qvm-x-acl">+sentir.v2</AUni> -<AUni ws="qvm-x-akh">+sentir.v2</AUni> -<AUni ws="qvm-x-akl">+sentir.v2</AUni> -<AUni ws="qvm-x-ame">+sentir.v2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.500" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5cb7dd59-f824-42e0-8438-66317b2631bb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sentir.v2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="37d9836f-4730-4ebf-a5a3-35608eacf17f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ae8805cc-5c4d-4e23-bd3b-bf5a2039fc75" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sentir.v2 
\entryTyp root 
\gENG feel 
\gSPN sentir 
\e +sentir.v2 
\c V2 
\mp +FinalI 
\ach sienti 
\akh sienti 
\acl sienti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl siente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sienti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl siente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sienti</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="ead02163-707b-44cf-9a47-367305c1689f" ownerguid="31a7512b-6b46-4d0d-a71b-69a4b837f3ff"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aywa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aywa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aywa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aywa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aywa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="38bd0c13-fd25-45c3-a42c-d0328cb11117" t="r" /> -</Morph> -<Msa> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</Msa> -</rt> -<rt class="WfiWordform" guid="ead0e16c-504a-48f0-bb39-40212f0f86df"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Orfa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="ead213fe-e219-4d2c-b2fc-81956df79a68" ownerguid="fb0abeda-0de3-4220-9907-01539104d9dd"> -<Form> -<AUni ws="qvm-x-ach">sacristán; sacristan</AUni> -<AUni ws="qvm-x-acl">sacristán; sacristan</AUni> -<AUni ws="qvm-x-akh">sacristán; sacristan</AUni> -<AUni ws="qvm-x-akl">sacristán; sacristan</AUni> -<AUni ws="qvm-x-ame">sacristán; sacristan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ead2b0e5-3187-45be-ad5a-73873b6c7ccf" ownerguid="26fb2e94-b8fe-4216-9057-ca17a71df83b"> -<ExampleWords> -<AUni ws="en">relaxation, comfort</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of relaxation?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ead53cdb-d7ae-4c4a-88ae-46aec7f942dc" ownerguid="23b1a6b4-8d91-425c-b8c2-52d06b1c1d23"> -<ExampleWords> -<AUni ws="en">break, bust, fracture</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to breaking something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ead54c85-6f26-486e-aa3a-5e4e957b2055" ownerguid="b24fbd33-a2aa-4274-8198-d6eef8f0345f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="ead8a9a3-59b0-459b-94e0-7ceb4453d62a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ni:ñu</AUni> -<AUni ws="qvm-x-acl">ni:ñu; ni:ñu; ni:ño</AUni> -<AUni ws="qvm-x-akh">ni:ñu</AUni> -<AUni ws="qvm-x-akl">ni:ñu; ni:ñu; ni:ño</AUni> -<AUni ws="qvm-x-ame">ni:ñu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+niño.1</AUni> -<AUni ws="qvm-x-acl">+niño.1</AUni> -<AUni ws="qvm-x-akh">+niño.1</AUni> -<AUni ws="qvm-x-akl">+niño.1</AUni> -<AUni ws="qvm-x-ame">+niño.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.558" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2099a9ba-3095-45a9-a0b1-66fdce11bb71" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+niño.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4ef7f74f-4f7a-4d1b-b5a4-4eefd0da9f96" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3ffba1ec-748c-494e-be11-17cf33f85cc2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +niño.1 
\entryTyp root 
\gENG 
\gSPN 
\e +niño.1 
\c N0 
\ach ni:ñu 
\akh ni:ñu 
\acl ni:ñu / _# 
\acl ni:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ni:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ni:ñu / _# 
\akl ni:ñu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ni:ño +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ni:ñu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="eada1aa7-4ef8-4968-b0ab-a663612a8b5c" ownerguid="326f2174-eef5-4ed4-987d-021d9e7946a1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">throw.out</AUni> -<AUni ws="es">botar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="436c4159-c8a9-406d-bd73-c603b9bc2d42" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="eadc40b4-38f1-465d-8191-70f8aa5e7f95" ownerguid="1c166923-c2c1-404e-9b84-fc6c96816fc7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">grow.stiff</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e873108d-6afa-42bb-b649-a81390e866c8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="eadd1f8e-eb69-4ae3-8f37-95099587d223" ownerguid="32e85ff9-9b83-4501-9b53-0a7b5fce9e56"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="eae816d0-d76c-4dc1-a5fc-a16e621ad0ee" ownerguid="eb8d7a3b-ad1a-46d4-8cb6-9a54961b3f6a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">subtly</AUni> -<AUni ws="es">con.sagacidad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ac3234a0-3b4a-4cbb-a508-6298550ec31a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="eaeba543-9d97-4569-845d-d723bc8ce241" ownerguid="7c234ccc-0dbe-42b0-a377-db99ebd2b51e"> -<ExampleWords> -<AUni ws="en">bird call</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to calling to an animal?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="eaed8c63-9f97-4116-927c-19f364a99e72" ownerguid="d59a84e1-5e12-4cb7-b72b-15c51810ad48"> -<Abbreviation> -<AUni ws="en">4.1.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being antisocial--when someone does not want to talk to other people or be friends with them.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Unfriendly</AUni> -</Name> -<Questions> -<objsur guid="50153e79-5bc1-446f-9aa2-4a564170d16b" t="o" /> -<objsur guid="ef66f7a9-d5e3-43be-bac2-7632bf632ebe" t="o" /> -<objsur guid="227c59db-601d-422b-8842-470cd7540560" t="o" /> -<objsur guid="ffb4dc8f-5cf6-4d86-bff0-7f1168311452" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="189f8c29-f0ff-44b6-a0db-5b287c412a75" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="eaefb05d-bbba-4e1e-b01f-be9d72d24329" ownerguid="f0c40d10-00bf-49bb-a9a3-9070edaa4759"> -<Form> -<AUni ws="qvm-x-ach">familia</AUni> -<AUni ws="qvm-x-acl">familia</AUni> -<AUni ws="qvm-x-akh">familia</AUni> -<AUni ws="qvm-x-akl">familia</AUni> -<AUni ws="qvm-x-ame">familia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="eaf45ee7-178d-4470-924d-74b3fddc2ca8" ownerguid="d34e0a48-653e-4a2f-b230-fe9e61129a6c"> -<Form> -<AUni ws="qvm-x-ach">quipu</AUni> -<AUni ws="qvm-x-acl">quipu; quipu; quipo</AUni> -<AUni ws="qvm-x-akh">kipu</AUni> -<AUni ws="qvm-x-akl">kipu; kipu; kipo</AUni> -<AUni ws="qvm-x-ame">kipu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="eaf64740-492d-4cee-a9ef-3644a40442f0" ownerguid="fa9b59c0-3c29-4678-afc7-a013692f307d"> -<Form> -<AUni ws="qvm-x-ach">talama</AUni> -<AUni ws="qvm-x-acl">talama</AUni> -<AUni ws="qvm-x-akh">talama</AUni> -<AUni ws="qvm-x-akl">talama</AUni> -<AUni ws="qvm-x-ame">talama</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="eaf69e79-17ff-48c0-97c3-22b972a0e94e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">awa</AUni> -<AUni ws="qvm-x-acl">awa</AUni> -<AUni ws="qvm-x-akh">awa</AUni> -<AUni ws="qvm-x-akl">awa</AUni> -<AUni ws="qvm-x-ame">awa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*awa.v</AUni> -<AUni ws="qvm-x-acl">*awa.v</AUni> -<AUni ws="qvm-x-akh">*awa.v</AUni> -<AUni ws="qvm-x-akl">*awa.v</AUni> -<AUni ws="qvm-x-ame">*awa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.890" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="593d34ef-91ed-4dc3-8fcf-179e4148bf67" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*awa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9bb84783-72a2-4572-a6ca-aeeec15101f6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d7412d49-d2b6-498a-a47f-9a3ec14ff51c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *awa.v 
\entryTyp root 
\gENG weave 
\gSPN tejer 
\e *awa.v 
\c V2 
\ach awa 
\akh awa 
\acl awa 
\akl awa 
\ame awa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="eaf8be65-d924-4ad1-af81-c7b66c87584c" ownerguid="0eeea224-1e76-4482-b357-08b14ac65edb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">brother.in.law</AUni> -<AUni ws="es">cuñado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aad50ac8-9851-4cd8-8e90-61ec5f7a323c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="eafdea8e-521e-4614-8fd5-e8446adf9203" ownerguid="9efa7949-de15-499a-b382-4560e06c4fb4"> -<Abbreviation> -<AUni ws="en">3.5.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.164" /> -<DateModified val="2022-9-23 16:55:8.164" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to debating--for two or more people to discuss some issue and try to persuade the other person to accept one's view.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33X' Dispute, Debate</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Debate</AUni> -</Name> -<Questions> -<objsur guid="f8a583f3-fe07-4c0a-a7be-e0586d4aa6c1" t="o" /> -<objsur guid="65680af5-a849-4a6c-8d7c-2376d8dea886" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="ebac5ec8-dc4c-4b2b-a727-3ca82404cdbb" t="o" /> -<objsur guid="e5020b79-6fb0-4be4-a359-d4f899da5c7e" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="eaff21bd-4aae-4974-9528-aabc25b74cbf" ownerguid="627280f0-4f98-4b31-ad23-eabe37b002ad"> -<ExampleWords> -<AUni ws="en">thinner, thinnest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to being thinner than another thing?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="eb006752-37a5-41c5-8abe-6f98ee11a3c3" ownerguid="e72edce6-6d03-454f-a2b0-fe5aaa632063"> -<Form> -<AUni ws="qvm-x-ach">dräma</AUni> -<AUni ws="qvm-x-acl">dräma</AUni> -<AUni ws="qvm-x-akh">dräma</AUni> -<AUni ws="qvm-x-akl">dräma</AUni> -<AUni ws="qvm-x-ame">dräma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="eb00b4c2-5b87-4ef8-9548-800fc5c9b524" ownerguid="f5156cde-9735-4249-920d-597fb0a7a8e3"> -<Abbreviation> -<AUni ws="en">7.9.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.557" /> -<DateModified val="2022-9-23 16:55:8.557" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to damaging something--to do something bad to something, but not completely ruin it so that it can't be used any more.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>20 Violence, Harm, Destroy, Kill; 20B Harm, wound</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Damage</AUni> -</Name> -<Questions> -<objsur guid="d4f02d3b-ea18-4e47-90e2-1b67355b061a" t="o" /> -<objsur guid="50a5d816-6961-4162-b2ff-57b275ab687f" t="o" /> -<objsur guid="87a497cb-dfe9-4b5a-8ad9-74d5216850e3" t="o" /> -<objsur guid="3c5d80ea-1524-4062-a90b-d1cd1cbe067d" t="o" /> -<objsur guid="125ce0ac-96ce-46ab-ad40-a51a80fd36d0" t="o" /> -<objsur guid="09956d61-8a4e-4607-ae79-24530d9ef362" t="o" /> -<objsur guid="9e1dfb99-7223-4111-9dec-b04439a098bb" t="o" /> -<objsur guid="2acfd0a0-1caf-407e-87ca-81f8053e4a39" t="o" /> -<objsur guid="7317d396-1a4b-4028-81dc-bfd304c40bb8" t="o" /> -<objsur guid="05f0dac1-18c6-4624-9528-acaced60211a" t="o" /> -<objsur guid="e5ef2439-e7c3-4204-a8f7-86e943738211" t="o" /> -<objsur guid="cff86258-86e1-4642-9a1c-c6c512044967" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="9d865347-6656-4ab7-8613-bf2e8bc53aa7" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="eb0275e7-9a4d-4f9b-94bf-873e1e4d61c3" ownerguid="29282c30-0be7-4a11-8742-bb1ff919cfa6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">make.naked</AUni> -<AUni ws="es">desnudar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="35dc9de6-4b48-4512-8154-96deaaa5ebf3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="eb039eba-90eb-4a4f-a881-d7cbac65be78" ownerguid="923eefa6-f5ae-473b-a17f-fd8045a20502"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="eb05a093-7487-40b7-98b0-dc4a14173270" ownerguid="e10b9449-08a3-4c13-aff2-31486749b62f"> -<ExampleWords> -<AUni ws="en">obtain evidence, poke around, snoop, surprise, try, question</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to investigating someone to know if they have done something wrong?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="eb065fc0-a104-47a1-9cac-0374c7836e54" ownerguid="5455ef1a-b9b5-4ab0-9d8f-2aa16c3a68db"> -<Form> -<AUni ws="qvm-x-ach">controla</AUni> -<AUni ws="qvm-x-acl">controla</AUni> -<AUni ws="qvm-x-akh">controla</AUni> -<AUni ws="qvm-x-akl">controla</AUni> -<AUni ws="qvm-x-ame">controla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="eb07e333-38d2-4ddb-9bc9-5990403600b4" ownerguid="ea46de30-a1a9-4828-84a8-9165f61f8b20"> -<Abbreviation> -<AUni ws="en">6.4.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.456" /> -<DateModified val="2022-9-23 16:55:8.456" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to fishing equipment.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>6C Instruments used in Fishing</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Fishing equipment</AUni> -</Name> -<OcmCodes> -<Uni>227 Fishing Gear</Uni> -</OcmCodes> -<Questions> -<objsur guid="bfd20358-1867-42dd-ae9b-9cb4e3ab3ba3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="eb08e346-776b-44a0-8763-7b1d78563ed2" ownerguid="7988974c-99fd-40dd-9b5e-2d81ec603ddc"> -<ExampleWords> -<AUni ws="en">forest canopy, forest floor, underbrush, undergrowth, edge (of the forest), deep in the forest, backwoods, timberland</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the parts of a forest?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="eb08fc75-00d1-4f7a-8cb0-90d9d148faf8" ownerguid="d6334316-8fc1-40f5-ae49-faece188c167"> -<Form> -<AUni ws="qvm-x-ach">shongu</AUni> -<AUni ws="qvm-x-acl">shongu; shongu; shongo</AUni> -<AUni ws="qvm-x-akh">shonqu</AUni> -<AUni ws="qvm-x-akl">shonqu; shonqu; shonqo</AUni> -<AUni ws="qvm-x-ame">shunqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="eb095bbc-f633-42c4-ae8b-ed265d12263c" ownerguid="f726d9bb-ae80-4c01-bdef-b600cb27736e"> -<ExampleWords> -<AUni ws="en">office, department</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to part of a business?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="eb0b0629-b461-46d3-936d-a9311f98ce8c" ownerguid="50b5aa47-15cf-4ce1-b196-5700b1dc872e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="eb0c9e02-e4c1-4e5e-84b6-be63aaf439d5" ownerguid="529140d1-6e8e-44fe-99f0-95289e933607"> -<Abbreviation> -<AUni ws="en">4.1.9.1.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to your nephews and nieces.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Nephew, niece</AUni> -</Name> -<Questions> -<objsur guid="2d4f1ae9-7019-4503-90b4-bcb58396a0b3" t="o" /> -<objsur guid="86b7a5d3-437a-4c52-a58b-feebd7acc02f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="eb0d55ae-f806-4587-b8b7-8f2ec7021c4c" ownerguid="c8595a5f-4dde-4260-b8d8-265d0554ce93"> -<ExampleWords> -<AUni ws="en">victory, win, triumph, success, conquest</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a victory?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="eb0d97c1-eb45-4503-a156-d699c3a544d4" ownerguid="5b08e461-b967-4802-bc2e-c5cd7ce6b5f5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="eb167d2e-19c4-4edc-ba7a-8b772f95ec76" ownerguid="47b7d210-055d-4652-a536-648f0af21fd9"> -<Form> -<AUni ws="qvm-x-ach">secya</AUni> -<AUni ws="qvm-x-acl">secya</AUni> -<AUni ws="qvm-x-akh">sekya</AUni> -<AUni ws="qvm-x-akl">sekya</AUni> -<AUni ws="qvm-x-ame">sikya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="eb16bfb7-a132-42a3-9578-41e973c28d81" ownerguid="b672e8ab-cdcc-41e4-8d33-c919ac9a068e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">knot</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a50856b4-6fa7-4064-84cd-df419cf1836a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="eb17a916-b104-43ec-bd5b-7380da738e8f" ownerguid="236b8042-6086-4bed-a156-aaef077d1721"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="eb1dad61-59a2-49b1-ac77-4054ebf01b7a" ownerguid="7191be07-9702-4a82-ba0b-2fd748164668"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="91bd94fc-00d1-4ffc-9e0b-02508c4232c9" t="o" /> -<objsur guid="fb0de6c5-a635-452d-9059-52de8f62ebd5" t="o" /> -<objsur guid="5133b821-32c6-46b9-bc73-65861ddd2755" t="o" /> -<objsur guid="cf65afad-a98e-4603-9c12-bd5acca13972" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="eb208ace-c734-49b6-9c33-d4d2adbbd29a" ownerguid="dca9a740-68f3-415b-8261-b1809e2abc4d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="eb230267-bcb2-4051-8c13-a468d10f569b" ownerguid="4dbb45e7-bea8-497b-a74f-e63b716db622"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 30.13 Tabernäculucho pësacuna chunca grämu captinmi pitsga grämoga pulalan caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="eb23d5d0-f4fb-422f-b09c-756304adb140" ownerguid="af3dcbd8-3747-402e-a23a-a5e1de1c6e99"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="eb240f60-8845-449b-8b4b-fb7b488a5030" ownerguid="e949f393-2a5b-4792-af8f-75138322ceee"> -<ExampleWords> -<AUni ws="en">energetic, full of energy, have lots of energy, active, vigorous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe someone who does many things quickly?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="eb2a9cda-d00c-4469-ae91-7f6557abcb63" ownerguid="a1474cc6-bb54-4375-bdbf-aaa35816a8cd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pledge</AUni> -<AUni ws="es">prenda</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ef01ee77-99e9-4aba-8d68-13862f54416b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="eb2aadef-3d3c-40a5-b1e7-76f24f7c0f94" ownerguid="4d0f1fda-47b6-47cb-850d-00b97a145ce2"> -<Form> -<AUni ws="qvm-x-ach">manya</AUni> -<AUni ws="qvm-x-acl">manya</AUni> -<AUni ws="qvm-x-akh">manya</AUni> -<AUni ws="qvm-x-akl">manya</AUni> -<AUni ws="qvm-x-ame">manya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="eb329059-18b6-435f-a811-34f33f5e9990"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">almidón; almidon</AUni> -<AUni ws="qvm-x-acl">almidón; almidon</AUni> -<AUni ws="qvm-x-akh">almidón; almidon</AUni> -<AUni ws="qvm-x-akl">almidón; almidon</AUni> -<AUni ws="qvm-x-ame">almidón; almidon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+almidón</AUni> -<AUni ws="qvm-x-acl">+almidón</AUni> -<AUni ws="qvm-x-akh">+almidón</AUni> -<AUni ws="qvm-x-akl">+almidón</AUni> -<AUni ws="qvm-x-ame">+almidón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.709" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c0e8181f-561f-4ee4-998e-2d40e470e10b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+almidón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ebaecfa6-d652-49f7-ac81-b08944db0aae" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a907c5fe-bca9-4847-bd2c-0e9b4846552c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +almidón 
\entryTyp root 
\gENG grated.potatoes 
\gSPN almidón 
\e +almidón 
\c N0 
\mp +FinalC 
\ach almidón / _# 
\ach almidon / ~_# 
\akh almidón / _# 
\akh almidon / ~_# 
\acl almidón / _# 
\acl almidon / ~_# 
\akl almidón / _# 
\akl almidon / ~_# 
\ame almidón / _# 
\ame almidon / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="eb33ee15-1cee-4acc-bfac-2ab7fe200353" ownerguid="64e41545-3a0a-4524-a8d4-8e5e0f0e2391"> -<ExampleWords> -<AUni ws="en">turn on, light (a candle), switch on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to making a light start working?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="eb3466b3-8a09-48a6-99f7-12f849769cdd" ownerguid="aed6c1ec-abbe-47e3-a6cc-a99ecff3b825"> -<ExampleWords> -<AUni ws="en">shine, sheen, gloss, luster</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the shiny appearance of something?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="eb3585b5-cb6c-4061-8aff-feb66ba09add" ownerguid="a2989907-310a-4a71-8768-cfa71e66caa6"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="0033cd9b-47b4-4a9e-90f2-82eb5c492641" t="o" /> -<objsur guid="f362c439-c9ee-4355-8f9d-b0edfda3537f" t="o" /> -<objsur guid="67d4c1fd-92d6-4ffc-9012-90ea5d625c9a" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="eb389295-d36d-4267-982a-d4bbae30031b" ownerguid="19fea936-30d1-482f-a103-1c5549b19745"> -<ExampleWords> -<AUni ws="en">twisted, winding, entwined, coiled, wrung out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that has been twisted?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="eb3bc41a-8c2f-4fdf-bd56-d2f42cfe9090"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">i:dulu</AUni> -<AUni ws="qvm-x-acl">i:dulu; i:dulu; i:dulo</AUni> -<AUni ws="qvm-x-akh">i:dulu</AUni> -<AUni ws="qvm-x-akl">i:dulu; i:dulu; i:dulo</AUni> -<AUni ws="qvm-x-ame">i:dulu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ídolo</AUni> -<AUni ws="qvm-x-acl">+ídolo</AUni> -<AUni ws="qvm-x-akh">+ídolo</AUni> -<AUni ws="qvm-x-akl">+ídolo</AUni> -<AUni ws="qvm-x-ame">+ídolo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.872" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e61b348e-44b8-4960-80e7-18b52292f013" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ídolo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ded34405-7bdc-4af4-a902-101db97edbb0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aca77273-6f6b-4d4c-9b3f-3be08be28353" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ídolo 
\entryTyp root 
\gENG idol 
\gSPN ídolo 
\e +ídolo 
\c N0 
\mp +assimilated 
\ach i:dulu 
\akh i:dulu 
\acl i:dulu / _# 
\acl i:dulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl i:dulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl i:dulu / _# 
\akl i:dulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl i:dulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame i:dulu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="eb43336a-94d8-4837-acbe-7e704b9efd14" ownerguid="4c5fb2b1-f8e1-4aa6-b49c-ee13dfc9154e"> -<Form> -<AUni ws="qvm-x-ach">wapsu</AUni> -<AUni ws="qvm-x-acl">wapsu; wapso</AUni> -<AUni ws="qvm-x-akh">wapsu</AUni> -<AUni ws="qvm-x-akl">wapsu; wapso</AUni> -<AUni ws="qvm-x-ame">wapsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="eb48ca6d-bddb-46cc-a2e0-67c8b7bd3fcd" ownerguid="8a7fdd75-01dc-4d40-84ff-fa0484da3abb"> -<ExampleWords> -<AUni ws="en">fierce, vicious, savage, ferocious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe an animal that is violent?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="eb49d6e7-bbef-492a-a6c4-efa226938de6" ownerguid="8e92b134-6846-44f9-84d6-7971044c38f2"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="eb4bb984-737b-444e-8977-ea52a41f4621" ownerguid="f1e95399-7004-4d1a-9a3e-ffbadb5e2c42"> -<Form> -<AUni ws="qvm-x-ach">porta</AUni> -<AUni ws="qvm-x-acl">porta</AUni> -<AUni ws="qvm-x-akh">porta</AUni> -<AUni ws="qvm-x-akl">porta</AUni> -<AUni ws="qvm-x-ame">porta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="eb4bc344-be42-4c27-95e2-7abd4a6c2b27" ownerguid="008cecc8-8fcc-439a-88eb-d8bd404d5da9"> -<Form> -<AUni ws="qvm-x-ach">n</AUni> -<AUni ws="qvm-x-acl">n</AUni> -<AUni ws="qvm-x-akh">n</AUni> -<AUni ws="qvm-x-akl">n</AUni> -<AUni ws="qvm-x-ame">n</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="eb55ed0e-f488-44c8-a15f-b1bc3b011985" ownerguid="441f9368-35e9-496a-b4f4-e475db4f5d38"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="eb57d1a6-d1d0-46bd-9fa3-bc8859d668e9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">morta:ja</AUni> -<AUni ws="qvm-x-acl">morta:ja</AUni> -<AUni ws="qvm-x-akh">morta:ja</AUni> -<AUni ws="qvm-x-akl">morta:ja</AUni> -<AUni ws="qvm-x-ame">morta:ja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mortaja</AUni> -<AUni ws="qvm-x-acl">+mortaja</AUni> -<AUni ws="qvm-x-akh">+mortaja</AUni> -<AUni ws="qvm-x-akl">+mortaja</AUni> -<AUni ws="qvm-x-ame">+mortaja</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.477" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="08f0cf54-1664-4864-b07e-1716b3f4f229" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mortaja</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="85963a22-3941-46ed-a876-7c6979e11576" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d80ae4c7-67e5-4fee-a04f-36f02ef4af07" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mortaja 
\entryTyp root 
\gENG 
\gSPN 
\e +mortaja 
\c N0 
\ach morta:ja 
\akh morta:ja 
\acl morta:ja 
\akl morta:ja 
\ame morta:ja</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="eb5b7322-12fa-46bc-9ef2-2dcf7307803f" ownerguid="b7b26d35-9a0e-408d-b39a-aba28f9be3ba"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="eb608a01-56be-4361-9493-c02a63de73aa" ownerguid="47ed6c39-b728-4ae7-be7c-c45c714c3153"> -<ExampleWords> -<AUni ws="en">thresh, beat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to threshing grain?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="eb62d54b-9bc5-4074-b544-2053ff0b73c0" ownerguid="1e102423-6167-486a-bfef-dad1c9cdf1eb"> -<ExampleWords> -<AUni ws="en">chassis, body, engine, brake, gas pedal, brakes, gear, steering wheel, windshield, windshield wiper, horn</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What are the parts of a vehicle?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="eb65af02-b128-44b6-958a-300d44d5585e" ownerguid="e9fdc131-addb-4db6-8f79-ae0044e1eb81"> -<ExampleWords> -<AUni ws="en">interpretation, exegesis</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the interpretation of sacred writings?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="eb65c1a9-c43a-45ec-865f-f306f012911a" ownerguid="1e9a0881-f715-4057-9af8-251cb8eec9da"> -<ExampleWords> -<AUni ws="en">voice</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a person's voice?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="eb662979-604c-455e-a2c6-a84b03a2ee3a" ownerguid="6bf8ce57-1970-4efb-a7d7-b0bf8be6fb6b"> -<Abbreviation> -<AUni ws="en">8.4.5.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that indicate that something happens early--before the expected time, before the usual time, or before the time that was agreed on. Some words may include the idea that it is good that the event happened early. Other words may include the idea that it is bad that the event happened early.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Early</AUni> -</Name> -<Questions> -<objsur guid="7587a7cb-0a5d-4bf0-a746-01b10a044fe1" t="o" /> -<objsur guid="67599885-2197-4aca-9591-9e2e2262b9f7" t="o" /> -<objsur guid="5937c2ac-3b0d-4bd4-9f10-4f6462571f06" t="o" /> -<objsur guid="6bf19106-bf3c-4507-9752-658a89fbf847" t="o" /> -<objsur guid="2b602364-16c3-492a-81cf-87ece9d0ed46" t="o" /> -<objsur guid="7a031cae-6aee-43a7-9772-f7ca0e85e7bd" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="eb6c2b90-0655-403f-b167-c299d353e4ac" ownerguid="5122f8b8-3894-457a-be2a-3e3d7463ba1a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="eb6cca14-97e2-4d18-8f01-ee2916286fe1" ownerguid="de1ffd73-af3b-47a2-8e98-ac1659a84cac"> -<ExampleWords> -<AUni ws="en">sensible, thoughtful, astute, calculating, cautious, circumspect, discreet, discriminating, foresighted, judicious, logical, practical, pragmatic, prudent, rational, realistic, reasonable, sagacious, sane, sensible, sensibly, sensitive, sound, thoughtful, wholesome</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is sensible?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="eb745629-7018-401c-b7e5-de0f6456c81a" ownerguid="93258a11-9af6-40b2-add5-ea720068462c"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="eb74ad95-c7a2-4273-a3ac-20a66ce1f3c8" ownerguid="ece42d2d-cced-443b-83cd-22d573670894"> -<Form> -<AUni ws="qvm-x-ach">mogtsi</AUni> -<AUni ws="qvm-x-acl">mogtsi; mogtse</AUni> -<AUni ws="qvm-x-akh">moqtsi</AUni> -<AUni ws="qvm-x-akl">moqtsi; moqtse</AUni> -<AUni ws="qvm-x-ame">muqtsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="eb764e29-2b8c-41a4-9ea7-bbe6b0c024e0" ownerguid="8d47c9ec-80c4-4309-9848-c453dcd71182"> -<ExampleWords> -<AUni ws="en">living, alive, animate, organic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that is living?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="eb79da94-2758-4f78-9eab-f3864fc9ad44" ownerguid="8bd0a688-3bea-4dd3-8b46-f759216604b0"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="eb7cd6b4-5a31-46e0-a814-f1850aa5f39e" ownerguid="c8595a5f-4dde-4260-b8d8-265d0554ce93"> -<ExampleWords> -<AUni ws="en">easy win, walkover, landslide</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to an easy victory?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="eb7d0129-e073-421c-bcd7-43bef6f3bf54"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">final</AUni> -<AUni ws="qvm-x-acl">final</AUni> -<AUni ws="qvm-x-akh">final</AUni> -<AUni ws="qvm-x-akl">final</AUni> -<AUni ws="qvm-x-ame">final</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+final</AUni> -<AUni ws="qvm-x-acl">+final</AUni> -<AUni ws="qvm-x-akh">+final</AUni> -<AUni ws="qvm-x-akl">+final</AUni> -<AUni ws="qvm-x-ame">+final</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.558" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="645540f1-1d32-4073-aa19-2391294d9594" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+final</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="25bff852-eb02-44d5-9869-68aa20f2266a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d379acc2-3633-4b13-af2f-5f545180feca" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +final 
\entryTyp root 
\gENG final 
\gSPN final 
\e +final 
\c N0 
\mp +FinalC 
\ach final 
\akh final 
\acl final 
\akl final 
\ame final</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="eb7d0a78-573e-4536-8e86-1193f9b526a1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sapu</AUni> -<AUni ws="qvm-x-acl">sapu; sapu; sapo</AUni> -<AUni ws="qvm-x-akh">sapu</AUni> -<AUni ws="qvm-x-akl">sapu; sapu; sapo</AUni> -<AUni ws="qvm-x-ame">sapu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*sapu</AUni> -<AUni ws="qvm-x-acl">*sapu</AUni> -<AUni ws="qvm-x-akh">*sapu</AUni> -<AUni ws="qvm-x-akl">*sapu</AUni> -<AUni ws="qvm-x-ame">*sapu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.449" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="892ed044-f488-4a8b-8b1b-7e50837714c7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*sapu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d6a05361-eae2-49b4-a24d-bd114303e20f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="724c311d-4412-4eb5-af12-944b2f111f03" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *sapu 
\entryTyp root 
\gENG small 
\gSPN chico 
\e *sapu 
\c N0 
\ach sapu 
\akh sapu 
\acl sapu / _# 
\acl sapu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sapo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sapu / _# 
\akl sapu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sapo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sapu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="eb7d0b58-4347-4719-a078-2ae4bbcb6b74" ownerguid="de342a1f-1002-4c22-b361-2fe0e5e91614"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="38287ee5-dee2-4483-9862-42efb30f678f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="eb81c747-0ebf-451c-8969-8474a94a4d47"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tari</AUni> -<AUni ws="qvm-x-acl">tari; tare</AUni> -<AUni ws="qvm-x-akh">tari</AUni> -<AUni ws="qvm-x-akl">tari; tare</AUni> -<AUni ws="qvm-x-ame">tari</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tari</AUni> -<AUni ws="qvm-x-acl">*tari</AUni> -<AUni ws="qvm-x-akh">*tari</AUni> -<AUni ws="qvm-x-akl">*tari</AUni> -<AUni ws="qvm-x-ame">*tari</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.825" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d1d01c5d-d0f2-4d29-a668-3be9b2244a5e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tari</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a9dd4f2d-6697-44ce-b819-cccf7e979272" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3c790b4e-377d-44f5-848b-3497b8083ab8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tari 
\entryTyp root 
\gENG find 
\gSPN encontrar 
\e *tari 
\c V2 
\mp +FinalI 
\ach tari 
\akh tari 
\acl tari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tari +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tare +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tari</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="eb821083-3fb0-441a-9f1d-ad2a9ed918d8" ownerguid="3b4b947a-f223-4c87-8839-9f6237cda9f6"> -<Abbreviation> -<AUni ws="en">7.3.4.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.536" /> -<DateModified val="2022-9-23 16:55:8.536" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to keeping something from falling.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Support</AUni> -</Name> -<Questions> -<objsur guid="ce59d930-b2c2-4c9a-8f41-102cc8c64a33" t="o" /> -<objsur guid="0264d539-5654-48bb-96dd-3857735c2a27" t="o" /> -<objsur guid="721fd7de-d361-4323-880d-ffa83ba0ff1e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="eb842dc1-ad9c-4c1a-9eb2-a48b7f3092be" ownerguid="f595deab-1838-4ddb-9ebe-55fb3007b309"> -<Abbreviation> -<AUni ws="en">4.8.3.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.286" /> -<DateModified val="2022-9-23 16:55:8.286" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the air force.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Air force</AUni> -</Name> -<OcmCodes> -<Uni>707 Air Forces</Uni> -</OcmCodes> -<Questions> -<objsur guid="2f9d1d60-88a0-4795-a849-c7adae2cf46b" t="o" /> -<objsur guid="fab36700-a38f-4f88-b2f5-a5a79f979ac8" t="o" /> -<objsur guid="4db1c199-a65c-45dc-a3fb-c0557b6f8375" t="o" /> -<objsur guid="39c5d0b7-8e76-4926-96aa-36b4d5166502" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="eb847431-a50f-4ba5-a90e-d00d19c1453c" ownerguid="ca752706-1c9e-43e7-bd17-845c4736ccd8"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">It weighs <about> four kilos.; John walks <approximately> two miles a day.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">about, approximately, roughly, give or take, at a guess, somewhere in the region of, an estimated, some, something like, in round numbers, close to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that a particular number or amount is approximate?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="eb8573b6-d21b-46b8-bf9a-ce35796021cd" ownerguid="53cc0f4a-dba1-4fd5-8feb-dad7bb4abfd7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="eb85f2e7-706b-4ed7-a959-fc13e38c72c2" ownerguid="f325a53d-f583-4762-b7b0-afee1815106e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="eb8b917c-719a-45ab-b171-a2273a285210" ownerguid="e0e8af5a-04c1-49a1-9955-9a2af7879068"> -<ExampleWords> -<AUni ws="en">acquaint, bare, demonstrate, disclose, discover, divulge, exhibit, explain, expose, indicate, present, make public, publicize, reveal, show, uncover, unfold, unmask, unveil</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making something known?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="eb8bc4e2-2296-4b95-9d07-65cc96680707" ownerguid="f3306815-e47c-4345-9ccd-b85729375237"> -<Form> -<AUni ws="qvm-x-ach">hächa</AUni> -<AUni ws="qvm-x-acl">hächa</AUni> -<AUni ws="qvm-x-akh">hächa</AUni> -<AUni ws="qvm-x-akl">hächa</AUni> -<AUni ws="qvm-x-ame">hächa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="eb8bf74b-5d9f-4042-87ea-98728f4dfd45" ownerguid="b015f460-faeb-4aa5-b453-9e5e9ae061fe"> -<ExampleWords> -<AUni ws="en">medieval, out of the ark, dinosaur, anachronism, archaic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that is so old fashioned that people think it is stupid?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="eb8d57a6-ab7d-49c0-b0e6-4ea11056ef08" ownerguid="f5ff1715-8282-408b-92f6-6ac96194bb5d"> -<PartOfSpeech> -<objsur guid="f3ea5225-9cc3-474e-b548-7bda3376fce1" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="eb8d7a3b-ad1a-46d4-8cb6-9a54961b3f6a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sagacida; sagacida:; sacasida; sacasida:</AUni> -<AUni ws="qvm-x-acl">sagacida; sagacida:; sacasida; sacasida:</AUni> -<AUni ws="qvm-x-akh">sagacida; sagacida:; sacasida; sacasida:</AUni> -<AUni ws="qvm-x-akl">sagacida; sagacida:; sacasida; sacasida:</AUni> -<AUni ws="qvm-x-ame">sagacida; sagacida:; sacasida; sacasida:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sagacidad</AUni> -<AUni ws="qvm-x-acl">+sagacidad</AUni> -<AUni ws="qvm-x-akh">+sagacidad</AUni> -<AUni ws="qvm-x-akl">+sagacidad</AUni> -<AUni ws="qvm-x-ame">+sagacidad</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.419" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="24a4ef77-2799-407b-a17f-240b9e18b92e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sagacidad</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ac3234a0-3b4a-4cbb-a508-6298550ec31a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="eae816d0-d76c-4dc1-a5fc-a16e621ad0ee" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sagacidad 
\entryTyp root 
\gENG subtly 
\gSPN con.sagacidad 
\e +sagacidad 
\c N0 
\mp +FinalC 
\cm *** ch *** 
\mp +underlong 
\ach sagacida foreshortened 
\ach sagacida: 
\ach sacasida foreshortened 
\ach sacasida: 
\cm *** kh *** 
\mp +underlong 
\akh sagacida foreshortened 
\akh sagacida: 
\akh sacasida foreshortened 
\akh sacasida: 
\cm *** cl *** 
\acl sagacida foreshortened 
\acl sagacida: 
\acl sacasida foreshortened 
\acl sacasida: 
\cm *** kl *** 
\akl sagacida foreshortened 
\akl sagacida: 
\akl sacasida foreshortened 
\akl sacasida: 
\cm *** me *** 
\mp +underlong 
\ame sagacida foreshortened 
\ame sagacida: 
\ame sacasida foreshortened 
\ame sacasida: 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="eb8f8d9b-8bad-4d09-b05a-fefe5d99a410" ownerguid="273f4956-f79f-4b1e-b552-466280a65e60"> -<ExampleWords> -<AUni ws="en">show, let someone see, let someone have a look, present, produce, flash</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to showing something to someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="eb910171-bc74-4285-a65a-5f9e8911464f" ownerguid="3a9d62dc-08c7-4fc4-b628-97763eea9fce"> -<Form> -<AUni ws="qvm-x-ach">chicchi</AUni> -<AUni ws="qvm-x-acl">chicchi; chicchi; chicche</AUni> -<AUni ws="qvm-x-akh">chikchi</AUni> -<AUni ws="qvm-x-akl">chikchi; chikchi; chikche</AUni> -<AUni ws="qvm-x-ame">chikchi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="eb934804-9628-4560-ba6d-b89454e41883" ownerguid="8a337ef9-c767-4521-a209-d5a6f9a76e90"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="eb94ffcd-a478-4065-9050-e8b9f7f88dc1" ownerguid="1e419f7a-7363-46bc-8044-157ed0b40ccd"> -<ExampleWords> -<AUni ws="en">hold tightly, grip</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to holding something tightly?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="eb97a5dc-1784-4808-a5ae-699e4c189fd2" ownerguid="bd847e1e-c1e3-4fb4-802c-11118aaf40aa"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="eb98a5a4-8e4b-47b3-b354-5272c74ab47f" ownerguid="92185f65-93b0-40df-bd42-b7b8f8ee6de7"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 44.19 Tsaynog captinpis cachariycamashcanqui miseriamanmi.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="eb9a11e6-d364-41a3-8915-539ce0def981" ownerguid="cd265743-390b-4b6c-b803-53941e137bed"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">brujería</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a4a8c347-76cd-454b-a7b8-715060881e79" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="eb9c7edd-be37-4abc-91a9-2a7563306328" ownerguid="2b7e0483-15d8-4b3b-9bdc-6072fc0f49a9"> -<Form> -<AUni ws="qvm-x-ach">almira</AUni> -<AUni ws="qvm-x-acl">almira</AUni> -<AUni ws="qvm-x-akh">almira</AUni> -<AUni ws="qvm-x-akl">almira</AUni> -<AUni ws="qvm-x-ame">almira</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="eb9e8656-9536-4791-82dd-4633617c45ae" ownerguid="39dcb6b9-94df-45be-a128-c14c7a9dcdbd"> -<ExampleWords> -<AUni ws="en">have an upset stomach, have a stomach-ache, tummy-ache, be sick to your stomach</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being sick in your stomach?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="eba08f04-c13d-4b74-ad3e-75d23160d6d9" ownerguid="4613da0f-fc0f-4807-9538-227bd9c2a42e"> -<Form> -<AUni ws="qvm-x-ach">auquilu</AUni> -<AUni ws="qvm-x-acl">auquilu; auquilu; auquilo</AUni> -<AUni ws="qvm-x-akh">awkilu</AUni> -<AUni ws="qvm-x-akl">awkilu; awkilu; awkilo</AUni> -<AUni ws="qvm-x-ame">awkilu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="eba15b58-b8ca-4123-9d5e-ae4f24a0db78" ownerguid="a51b6146-e484-47bd-9cc9-7a1535bcb501"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="101b9c81-d8b5-4b12-98ac-237603f78887" t="o" /> -<objsur guid="8f40f64c-5cc6-4f56-a2b4-6b4f60fa1fdd" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="eba344a3-060a-49be-8854-c61cddfb6efd" ownerguid="83899b19-8b39-4bf0-b124-4c6188569ec8"> -<ExampleWords> -<AUni ws="en">come to, amount to, total (v), reach, add up to, make, bring the number to, bring the total to, number (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words indicate that the number of a group of things reaches a particular total?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="eba49772-fb81-41c4-b8bb-281a74b0e16c" ownerguid="0e453182-6d1a-486e-abab-c7d4f35fc417"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="eba682f2-a2ba-4eff-b5d5-5faa630536a9" ownerguid="da60d6ed-addf-497f-ae68-2156e61681e3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="eba789ff-a571-4ac2-bcb2-ed458c5143aa" ownerguid="cac1d7a8-7382-466e-ba4a-ba2bfe50f13b"> -<ExampleWords> -<AUni ws="en">radio, television, newspaper, magazine</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to different kinds of mass communication?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ebab59fe-e0e9-42a2-97f3-460d8d71b4fd" ownerguid="1ae89c4d-b129-47b5-a0d1-e550104d9457"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">deceive</AUni> -<AUni ws="es">engañar.1</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aca24133-47fc-43af-88ed-b5dc34919f1d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="ebabacad-9971-45c3-bdc2-63226a99732d" ownerguid="f14c3188-4beb-4d1d-9299-6f5c3dfd9585"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ancient.house</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e6d367c1-2e72-41e6-8890-4f721c58c136" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="ebac5ec8-dc4c-4b2b-a727-3ca82404cdbb" ownerguid="eafdea8e-521e-4614-8fd5-e8446adf9203"> -<Abbreviation> -<AUni ws="en">3.5.1.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.164" /> -<DateModified val="2022-9-23 16:55:8.164" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to demonstrating something--to do something that shows the truth of a statement, or shows how to do something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Demonstrate</AUni> -</Name> -<Questions> -<objsur guid="c4db3c9c-0930-457c-9247-2f2749bf93bd" t="o" /> -<objsur guid="5a6a4cfb-096d-4959-a5b2-d8738530d6b1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoMorphAdhocProhib" guid="ebae20ad-67c4-4dda-bc21-513e1fe7bbb4" ownerguid="b80228bc-ea5e-11de-9d24-0013722f8dec"> -<Adjacency val="4" /> -<Disabled val="True" /> -<FirstMorpheme> -<objsur guid="ca07312d-49a1-4d8c-8591-706cb7d5a595" t="r" /> -</FirstMorpheme> -<RestOfMorphs> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</RestOfMorphs> -</rt> -<rt class="MoStemMsa" guid="ebaecfa6-d652-49f7-ac81-b08944db0aae" ownerguid="eb329059-18b6-435f-a811-34f33f5e9990"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="ebaf5c56-75e2-4aab-9a21-25b72cc10485" ownerguid="952af6bb-942a-4e2d-b6fc-4e105a1e6369"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ebb0dee9-2ab5-4612-9c05-a45fcff7354e" ownerguid="e4517880-aa2d-4977-b55a-dcb0b6d1f533"> -<ExampleWords> -<AUni ws="en">beautiful, good-looking, pretty, attractive, striking, handsome, lovely, gorgeous, stunning, ravishing, of great beauty, elegant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a woman who is beautiful?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ebb3a689-bed1-43a0-bd14-e189fd63c395" ownerguid="5b5bcd42-09bb-4c2f-a2da-569cfa69b6ac"> -<ExampleWords> -<AUni ws="en">get attention, attract attention, draw attention to yourself</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to making someone pay attention to you?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="ebb5e6b4-68ae-4ef4-abfa-4fd511cff11d" ownerguid="0bd1ff14-0f91-4144-8ccc-ae374620d493"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cuya</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cuya</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kuya</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kuya</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kuya</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ed8e0c9a-5a44-4448-bc6b-1b766f141f5c" t="r" /> -</Morph> -<Msa> -<objsur guid="6ee88865-51d6-40db-b9fa-4ba30a1cf4e7" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="ebb5f3e5-bfe5-4a40-986a-938c1bdb9c76" ownerguid="7b513a02-c3ae-4243-9410-16854d911258"> -<Abbreviation> -<AUni ws="en">9.7.1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.728" /> -<DateModified val="2022-9-23 16:55:8.728" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for terms of endearment--a name used by lovers or spouses to express love or intimacy. Some languages may have special names used by close friends.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Terms of endearment</AUni> -</Name> -<Questions> -<objsur guid="e165e8f6-e7c4-4b1c-add5-019cf44e3c00" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="ebb644b3-c6cd-4cad-8d38-8274f2fd1824" ownerguid="952bdaa1-8cb6-4bb2-9645-582195db4c19"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="ebb6d6be-48cd-4f4d-b8b4-beb118dfd125"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">when</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="ebba10d4-6f8c-4edb-8237-af3eaa634a9f" ownerguid="9f4a97e7-74f2-4b23-96c0-40261e2065a3"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ebbb13cc-bb9b-4073-9f6e-2b2ac1633003" ownerguid="f4ec8f2e-f89e-40c1-ae50-900927d20af6"> -<ExampleWords> -<AUni ws="en">rude, impolite, ill-mannered, discourteous, unpleasant, offensive, loutish, churlish, impudent, cheeky, impertinent, insolent, disrespectful, sassy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is impolite?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="ebbb956c-b015-40c0-9656-e4c077c4f8e6" ownerguid="bf3a3da9-66df-43ae-aad4-5d1e5176a4fb"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="94efc769-1ab7-4782-a034-0513296983ab" t="o" /> -<objsur guid="8b25bae2-6363-4c43-ba51-6621e51c06de" t="o" /> -<objsur guid="b08b8ce6-bbf1-40e2-ab98-df488856f760" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="ebbcbb7c-a749-48af-b93c-0fb9b122af6c" ownerguid="a284a49b-86a0-4549-a04a-2513678be7b0"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="ebbd0de5-beeb-4bfc-b395-9953e7f1fbc1" ownerguid="952af6bb-942a-4e2d-b6fc-4e105a1e6369"> -<Form> -<AUni ws="qvm-x-ach">uchunayla</AUni> -<AUni ws="qvm-x-acl">uchunayla</AUni> -<AUni ws="qvm-x-akh">uchunayla</AUni> -<AUni ws="qvm-x-akl">uchunayla</AUni> -<AUni ws="qvm-x-ame">uchunayla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ebbfb2af-c92b-4867-a6e2-e31a0673aab5" ownerguid="36934fab-c0ed-4f25-a387-e1cca26b2401"> -<ExampleWords> -<AUni ws="en">dab (v), spoon out, frugal, parsimonious, scrimp, be sparing, stingy, stint</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to using or giving a little of something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ebc01ac5-90a2-44d1-92b4-25843a6bf967" ownerguid="1886ffc9-0a18-41ea-b2f6-c17c297f1681"> -<ExampleWords> -<AUni ws="en">science</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to science?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ebc236df-9c56-400c-8715-c20015701b3b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">si:</AUni> -<AUni ws="qvm-x-acl">si:</AUni> -<AUni ws="qvm-x-akh">si:</AUni> -<AUni ws="qvm-x-akl">si:</AUni> -<AUni ws="qvm-x-ame">si:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sí</AUni> -<AUni ws="qvm-x-acl">+sí</AUni> -<AUni ws="qvm-x-akh">+sí</AUni> -<AUni ws="qvm-x-akl">+sí</AUni> -<AUni ws="qvm-x-ame">+sí</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.713" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c91db6e1-8ae6-4ee0-b060-c98432e99449" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sí</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e8f5f1cc-327f-4205-98f5-89dfdee9fad4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b9e1de21-95c0-4fae-8b71-172dd61e3f4b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sí 
\entryTyp root 
\gENG yes 
\gSPN sí 
\e +sí 
\c ONSHEV 
\mp +assimilated 
\ach si: 
\akh si: 
\acl si: 
\akl si: 
\ame si: 
\mp +FinalC 
\mp +FinalLength 
\i LUK 16.4 ¡Kananmi sï, imata ruranäpaqpis musyä! 
\mp NeverForeshortened</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ebc4c0a5-ff01-46f3-8422-299c099160b9" ownerguid="54519ee6-6c8b-491a-946e-2eab149adefb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">glorify</AUni> -<AUni ws="es">glorificar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="66fb9a2a-13d6-4277-92c4-4011d8215780" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ebc60fe7-4758-4ca1-8fe4-fbbbc573329e" ownerguid="33037a4d-3454-4c59-9a61-c5fb747f107a"> -<ExampleWords> -<AUni ws="en">cement, mortar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What materials does a bricklayer work with?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ebca25f1-87d3-44d1-9934-c6a6dd619744" ownerguid="cec4a61e-8b09-4f45-8265-ffcb3621a811"> -<Form> -<AUni ws="qvm-x-ach">contenta</AUni> -<AUni ws="qvm-x-acl">contenta</AUni> -<AUni ws="qvm-x-akh">contenta</AUni> -<AUni ws="qvm-x-akl">contenta</AUni> -<AUni ws="qvm-x-ame">contenta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ebcbaa3a-d402-4916-8638-67f01d888400" ownerguid="9b48dcd0-cc99-4bc8-8368-17e5452a078b"> -<Form> -<AUni ws="qvm-x-ach">tucu; tuca</AUni> -<AUni ws="qvm-x-acl">tucu; tuco; tuca</AUni> -<AUni ws="qvm-x-akh">tuku; tuka</AUni> -<AUni ws="qvm-x-akl">tuku; tuko; tuka</AUni> -<AUni ws="qvm-x-ame">tuku; tuka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="ebccb87f-8554-4b1e-b829-d964c9d9cb9b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">balsa</AUni> -<AUni ws="qvm-x-acl">balsa</AUni> -<AUni ws="qvm-x-akh">balsa</AUni> -<AUni ws="qvm-x-akl">balsa</AUni> -<AUni ws="qvm-x-ame">balsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+balsa</AUni> -<AUni ws="qvm-x-acl">+balsa</AUni> -<AUni ws="qvm-x-akh">+balsa</AUni> -<AUni ws="qvm-x-akl">+balsa</AUni> -<AUni ws="qvm-x-ame">+balsa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.941" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fd784cf2-73e9-4418-88c8-74670b1890e4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+balsa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="15ea98c8-b0b3-409a-9160-904f3644757b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="99e6dfb0-c924-4029-ba21-7817a89c3f2a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +balsa 
\entryTyp root 
\gENG 
\gSPN 
\e +balsa 
\c N0 
\ach balsa 
\akh balsa 
\acl balsa 
\akl balsa 
\ame balsa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoAffixAllomorph" guid="ebd07537-e2a5-4690-947c-2a1622098650" ownerguid="0ea972e6-0904-41bb-977b-7ee45ab4b91b"> -<Form> -<AUni ws="qvm-x-ach">japuy</AUni> -<AUni ws="qvm-x-acl">japuy</AUni> -<AUni ws="qvm-x-akh">japuy</AUni> -<AUni ws="qvm-x-akl">japuy</AUni> -<AUni ws="qvm-x-ame">hapuy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="ebd37f6f-573c-4328-a021-71b197bb0b85"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">atatau</AUni> -<AUni ws="qvm-x-acl">atatau</AUni> -<AUni ws="qvm-x-akh">atataw</AUni> -<AUni ws="qvm-x-akl">atataw</AUni> -<AUni ws="qvm-x-ame">atataw</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*atataw</AUni> -<AUni ws="qvm-x-acl">*atataw</AUni> -<AUni ws="qvm-x-akh">*atataw</AUni> -<AUni ws="qvm-x-akl">*atataw</AUni> -<AUni ws="qvm-x-ame">*atataw</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.860" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8173365a-4aa0-4048-888e-d0b5379e1093" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*atataw</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="96cc86f0-f5f3-4dec-980b-46557778a88f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="700e2f53-62a4-4ac6-8f6f-1d592d86a233" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *atataw 
\entryTyp root 
\gENG disgust 
\gSPN disgusto 
\e *atataw 
\c NOSUFF 
\ach atatau 
\akh atataw 
\acl atatau 
\akl atataw 
\ame atataw</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ebd49e85-ce16-41d4-a556-2cf2dbbd693f" ownerguid="6bd023f6-730e-44c2-ae8f-78df967e2e18"> -<ExampleWords> -<AUni ws="en">(no words in English)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to pulling something with a rope or chain?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ebd82102-b922-4ed6-8c2e-b7e2784fd808" ownerguid="80672cf3-91e0-456b-9f7a-a503002fd4d6"> -<Form> -<AUni ws="qvm-x-ach">desanima</AUni> -<AUni ws="qvm-x-acl">desanima</AUni> -<AUni ws="qvm-x-akh">desanima</AUni> -<AUni ws="qvm-x-akl">desanima</AUni> -<AUni ws="qvm-x-ame">desanima</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ebd8974d-03a4-4fa4-af19-f15e6a6b6035" ownerguid="41dffbd8-76f3-4116-a7b4-4a830f54acdc"> -<Form> -<AUni ws="qvm-x-ach">lausa</AUni> -<AUni ws="qvm-x-acl">lausa</AUni> -<AUni ws="qvm-x-akh">lawsa</AUni> -<AUni ws="qvm-x-akl">lawsa</AUni> -<AUni ws="qvm-x-ame">lawsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="ebd96303-5122-40dd-ae06-544e86de4303" ownerguid="752d8412-ab63-4488-b252-a831a7f70b6c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="ebdc194c-14c7-4d0b-9ee9-1d0dfaec489d" ownerguid="0c94e084-d9f3-4880-9c97-c8e7d2ff5653"> -<Form> -<AUni ws="qvm-x-ach">wachca</AUni> -<AUni ws="qvm-x-acl">wachca</AUni> -<AUni ws="qvm-x-akh">wachka</AUni> -<AUni ws="qvm-x-akl">wachka</AUni> -<AUni ws="qvm-x-ame">wachka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ebdf3940-7a76-44e0-9671-57cd532c6ea9" ownerguid="89bdb96f-aab6-474d-a015-11960f9c1a33"> -<Form> -<AUni ws="qvm-x-ach">letra</AUni> -<AUni ws="qvm-x-acl">letra</AUni> -<AUni ws="qvm-x-akh">letra</AUni> -<AUni ws="qvm-x-akl">letra</AUni> -<AUni ws="qvm-x-ame">letra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ebdf6674-b852-4008-832c-3640ff1b0370" ownerguid="ccb281dc-6eaf-4de0-b0d8-cadb6efd2b67"> -<Form> -<AUni ws="qvm-x-ach">humildi</AUni> -<AUni ws="qvm-x-acl">humildi; humildi; humilde</AUni> -<AUni ws="qvm-x-akh">humildi</AUni> -<AUni ws="qvm-x-akl">humildi; humildi; humilde</AUni> -<AUni ws="qvm-x-ame">humildi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="ebe57d1f-9413-4d4a-960c-8585fd7aa2d7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gagla</AUni> -<AUni ws="qvm-x-acl">gagla</AUni> -<AUni ws="qvm-x-akh">qaqla</AUni> -<AUni ws="qvm-x-akl">qaqla</AUni> -<AUni ws="qvm-x-ame">qaqla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qaqlla</AUni> -<AUni ws="qvm-x-acl">*qaqlla</AUni> -<AUni ws="qvm-x-akh">*qaqlla</AUni> -<AUni ws="qvm-x-akl">*qaqlla</AUni> -<AUni ws="qvm-x-ame">*qaqlla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.102" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d1d58e9c-b862-495c-87f6-5e987f6a88c6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qaqlla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="615db137-5675-41b9-9929-d262f3aca437" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="765d689d-734c-41ac-acd8-78a311fa3bdd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qaqlla 
\entryTyp root 
\gENG cheek 
\gSPN mejilla 
\e *qaqlla 
\c N0 
\ach gagla 
\akh qaqla 
\acl gagla 
\akl qaqla 
\ame qaqla</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="ebe62b35-2d8c-40b8-9c4e-13cfa414d18c" ownerguid="2d1ea615-677d-4f84-963f-84f43f5bb154"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="ebe651d9-2313-486c-8252-140e2a613ffa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">domingu</AUni> -<AUni ws="qvm-x-acl">domingu; domingu; domingo</AUni> -<AUni ws="qvm-x-akh">domingu</AUni> -<AUni ws="qvm-x-akl">domingu; domingu; domingo</AUni> -<AUni ws="qvm-x-ame">domingu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+domingo</AUni> -<AUni ws="qvm-x-acl">+domingo</AUni> -<AUni ws="qvm-x-akh">+domingo</AUni> -<AUni ws="qvm-x-akl">+domingo</AUni> -<AUni ws="qvm-x-ame">+domingo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.437" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2748d3bf-7ad4-47d0-8df4-a3f956ccb088" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+domingo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="58709edc-15dc-4599-9abc-4f3d4c8444f7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="547f4e05-1c64-4083-9835-555544674d17" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +domingo 
\entryTyp root 
\gENG sunday 
\gSPN domingo 
\e +domingo 
\c N0 
\mp +assimilated 
\ach domingu 
\akh domingu 
\acl domingu / _# 
\acl domingu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl domingo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl domingu / _# 
\akl domingu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl domingo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame domingu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ebea474e-8edc-4abb-8b2d-3310793b835a" ownerguid="5cd2f365-2d84-451e-9f2d-bc2561eff909"> -<ExampleWords> -<AUni ws="en">adhesive, band, belt, binder, binding, bolt, bond, brace, bracket, brad, buckle, button, cable, cement, chain, cinch, clamp, clasp, clip, clothespin, cord, cotter, coupler, dowel, fastener, fastening, fetter, glue, gum, guy, handcuff, hasp, hemp, hinge, hitch, hook, knot, lace, lacing, lariat, lashing, lasso, latch, line, linkage, lock, loop, manacle, mooring, nail, nut, padlock, paste, peg, pin, safety pin, straight pin, plaster, putty, rivet, rope, screw, shackle, shoelace, shoestring, snap, solder, staple, stay, stitch, stocks, strap, string, tack, tape, thong, thread, thumbtack, truss, twine, wedge, wire, wrap, wrapping, yarn, zipper</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to something used to join things together?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ebeb90e5-7f43-4363-9474-8590442058d3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fiebri; fiebre</AUni> -<AUni ws="qvm-x-acl">fiebri; fiebri; fiebre</AUni> -<AUni ws="qvm-x-akh">fiebri; fiebre</AUni> -<AUni ws="qvm-x-akl">fiebri; fiebri; fiebre</AUni> -<AUni ws="qvm-x-ame">fiebri; fiebre</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fiebre</AUni> -<AUni ws="qvm-x-acl">+fiebre</AUni> -<AUni ws="qvm-x-akh">+fiebre</AUni> -<AUni ws="qvm-x-akl">+fiebre</AUni> -<AUni ws="qvm-x-ame">+fiebre</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.546" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ad827ada-b1a4-42f8-ba9d-1d76e14d03dd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fiebre</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0fe2866e-bbad-43af-8785-dd0e2aca3496" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e46c2386-aa46-4df7-9469-07704e2c80ad" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fiebre 
\entryTyp root 
\gENG fever 
\gSPN fiebre 
\e +fiebre 
\c N0 V1 
\mp +FinalI 
\ach fiebri / ~_# 
\ach fiebre / _# 
\akh fiebri / ~_# 
\akh fiebre / _# 
\acl fiebri / ~_# 
\acl fiebri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl fiebre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl fiebri / ~_# 
\akl fiebri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl fiebre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame fiebri / ~_# 
\ame fiebre / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ebec6059-9348-43ea-9db7-452b981dc33e" ownerguid="179a56b9-6eff-4b57-8682-da3c2a5f1e41"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">puppy</AUni> -<AUni ws="es">cachorro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2da79a5e-b2ef-4f20-b0aa-c2cdd002d8bc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ebef0ce5-64ff-42ca-bac5-b17d725bfc65" ownerguid="d1b3d0f0-5319-4a6a-8a70-2179a8e76d22"> -<ExampleWords> -<AUni ws="en">need (n), time of need, dependence, reliance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a situation in which someone needs something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ebf8e5f1-1a28-4216-a1d5-6b12e9d8347c" ownerguid="ffa9ada0-ed30-4646-9042-f1596d41eb9d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="5998c628-1f46-4b9f-b5f2-24369b7be3a0" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="57810bbe-14e0-41c3-8186-888a0be882c4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="ebfa4a88-c1c3-4db3-b25a-888b836bb7ce" ownerguid="6bed5062-0d3c-4c4b-9f2d-cba6a7f19a23"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">loan</AUni> -<AUni ws="es">prestar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="75ca7d64-e275-4d72-945a-578fc85ff45c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="ebfb6280-c282-4f4b-8ad8-c223a8418c2b" ownerguid="c6f5b428-95e9-4010-9567-4bd4871d3218"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="00458814-a824-4d31-89a9-1e87281b7681" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ebfdde54-fb55-41b9-a4f0-a915355cf576" ownerguid="2d92e248-1512-4e89-b886-425814c6dd32"> -<ExampleWords> -<AUni ws="en">chess player, grand master</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What is a player called?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ec015fe2-b371-4d99-a68e-7fecb65c2187" ownerguid="203f46d2-f0d0-4dda-8d1a-ddc15065b005"> -<ExampleWords> -<AUni ws="en">venom, venomous, poison, poisonous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a snake's poison?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ec0455d5-4578-45c7-bd7d-8aa6b3a8da42"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yanta</AUni> -<AUni ws="qvm-x-acl">yanta</AUni> -<AUni ws="qvm-x-akh">yanta</AUni> -<AUni ws="qvm-x-akl">yanta</AUni> -<AUni ws="qvm-x-ame">yanta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yanta</AUni> -<AUni ws="qvm-x-acl">*yanta</AUni> -<AUni ws="qvm-x-akh">*yanta</AUni> -<AUni ws="qvm-x-akl">*yanta</AUni> -<AUni ws="qvm-x-ame">*yanta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.739" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2cf2cabf-0598-4763-8036-ec6b2c0b99be" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yanta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9c22513d-fe7c-4f24-8290-cf20d83c82e0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="596812da-44d6-4522-960f-a3992f9a7562" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yanta 
\entryTyp root 
\gENG fire.wood 
\gSPN leña 
\e *yanta 
\c N0 
\ach yanta 
\akh yanta 
\acl yanta 
\akl yanta 
\ame yanta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ec0846d0-9424-4aa2-96b7-e3ea446be8ae"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsacay</AUni> -<AUni ws="qvm-x-acl">tsacay</AUni> -<AUni ws="qvm-x-akh">tsakay</AUni> -<AUni ws="qvm-x-akl">tsakay</AUni> -<AUni ws="qvm-x-ame">tsakay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chakay</AUni> -<AUni ws="qvm-x-acl">*chakay</AUni> -<AUni ws="qvm-x-akh">*chakay</AUni> -<AUni ws="qvm-x-akl">*chakay</AUni> -<AUni ws="qvm-x-ame">*chakay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.264" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fc18a25a-3527-4810-a9de-a01cdc61792c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chakay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1af62928-3bed-4511-8fa4-f359bc07ca98" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bb480917-c2dd-41af-a26a-5eb288a15565" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chakay 
\entryTyp root 
\gENG night 
\gSPN noche 
\e *chakay 
\c N0 
\mp +FinalC 
\ach tsacay 
\akh tsakay 
\acl tsacay 
\akl tsakay 
\ame tsakay</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ec0b01e9-e9cb-4ccf-9cdf-843f5db9d6a5" ownerguid="cd01db6c-8aa6-42d1-93ac-05e81a8be523"> -<ExampleWords> -<AUni ws="en">delicacy, best piece</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What is the best piece called?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="ec0d9a2b-1621-419a-acb0-c54996ace973" ownerguid="f50ba0f7-1847-42cf-85a4-65393a3d6131"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">runa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">runa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">runa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">runa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">runa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="dbbd8356-c9df-482b-a128-55aaaa8ad47f" t="r" /> -</Morph> -<Msa> -<objsur guid="735a29e0-40d3-4d25-9e9a-e8181d173c29" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="ec118a28-fd23-48b3-8819-bfe1329f028d" ownerguid="a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f"> -<Abbreviation> -<AUni ws="en">2.3.1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to reflecting light.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Reflect, mirror</AUni> -</Name> -<Questions> -<objsur guid="eefa4e95-028d-4f05-bceb-f2a328dedf02" t="o" /> -<objsur guid="021804aa-747e-425e-b366-b36301da6a44" t="o" /> -<objsur guid="f4315eb2-8411-48ea-9df7-84e2157bed0d" t="o" /> -<objsur guid="f843a728-a00b-494a-a984-76818853a9e8" t="o" /> -<objsur guid="a663caf7-f93a-436d-b68c-bda973131a18" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="ec134919-c362-49eb-bb7e-7752098698d9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wagya</AUni> -<AUni ws="qvm-x-acl">wagya</AUni> -<AUni ws="qvm-x-akh">waqya</AUni> -<AUni ws="qvm-x-akl">waqya</AUni> -<AUni ws="qvm-x-ame">waqya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waqya.n</AUni> -<AUni ws="qvm-x-acl">*waqya.n</AUni> -<AUni ws="qvm-x-akh">*waqya.n</AUni> -<AUni ws="qvm-x-akl">*waqya.n</AUni> -<AUni ws="qvm-x-ame">*waqya.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.515" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a23c5868-0c56-4cc0-8349-e51de57fb2f5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waqya.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7dd9db06-bbb3-433f-b733-67d849fa69dc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ac5ee669-f5d9-47a0-b27a-486259369e93" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waqya.n 
\entryTyp root 
\gENG 
\gSPN 
\e *waqya.n 
\c N0 
\ach wagya 
\akh waqya 
\acl wagya 
\akl waqya 
\ame waqya</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ec15cb49-5df0-465f-b720-9dbc7f427283" ownerguid="59bd1a58-be99-4685-acf7-9f17bac9c430"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="0cf9b74f-adbe-41ef-acd3-dc1c5b260f7a" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">warn</AUni> -<AUni ws="es">advertir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="43d1e2f6-9b07-4f12-bdba-17aecac82d49" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="ec1bcace-fc10-45df-8e1f-29bce1ef786a" ownerguid="9efa7949-de15-499a-b382-4560e06c4fb4"> -<Abbreviation> -<AUni ws="en">3.5.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.162" /> -<DateModified val="2022-9-23 16:55:8.162" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to carrying on a conversation with other people.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33K Converse, Discuss</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Speak with others</AUni> -</Name> -<OcmCodes> -<Uni>521 Conversation</Uni> -</OcmCodes> -<Questions> -<objsur guid="6c3d2b09-af63-48ed-8c97-2df8c2cb2796" t="o" /> -<objsur guid="8f2d035b-dca7-48b3-bfd3-4be728ff3e9d" t="o" /> -<objsur guid="01b8b67f-cc68-49c1-9215-f05520fa1522" t="o" /> -<objsur guid="9bbff1ae-467c-4801-a51e-0884e9eaaff2" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="14a32765-81b0-411e-89fa-91e092a70818" t="o" /> -<objsur guid="e033ca92-ee8c-4ab9-9368-5f6f4e942987" t="o" /> -<objsur guid="52b04e15-7062-4fb2-9eaa-4fe8726f302a" t="o" /> -<objsur guid="a9625460-7162-447c-b400-84fbc5744f1b" t="o" /> -<objsur guid="45b9bf61-3138-4206-9478-b4d3f082358b" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="ec1d625f-b118-4481-94ae-039f279e1292" ownerguid="7a71a573-5118-4d2a-b39a-69518acc17ea"> -<Form> -<AUni ws="qvm-x-ach">juru</AUni> -<AUni ws="qvm-x-acl">juru; juro</AUni> -<AUni ws="qvm-x-akh">juru</AUni> -<AUni ws="qvm-x-akl">juru; juro</AUni> -<AUni ws="qvm-x-ame">huru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="ec1faadb-40cf-472e-858c-a465addb0df3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fue:lli; fue:lli</AUni> -<AUni ws="qvm-x-acl">fue:lli; fue:lli; fue:lle</AUni> -<AUni ws="qvm-x-akh">fue:lli; fue:lli</AUni> -<AUni ws="qvm-x-akl">fue:lli; fue:lli; fue:lle</AUni> -<AUni ws="qvm-x-ame">fue:lli; fue:lli</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fuelle.1</AUni> -<AUni ws="qvm-x-acl">+fuelle.1</AUni> -<AUni ws="qvm-x-akh">+fuelle.1</AUni> -<AUni ws="qvm-x-akl">+fuelle.1</AUni> -<AUni ws="qvm-x-ame">+fuelle.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.589" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="885607d2-ecb9-4af4-819a-1a4da7f30210" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fuelle.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="932e1c58-546e-4a62-8ed1-68a948f5a5dd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c199c1bd-c1bc-47cd-8363-cab0c3e054be" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fuelle.1 
\entryTyp root 
\gENG bellows 
\gSPN fuelle 
\e +fuelle.1 
\c N0 
\mp +FinalI 
\ach fue:lli / _# 
\ach fue:lli / ~_# 
\akh fue:lli / _# 
\akh fue:lli / ~_# 
\acl fue:lli / _# 
\acl fue:lli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl fue:lle +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl fue:lli / _# 
\akl fue:lli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl fue:lle +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame fue:lli / _# 
\ame fue:lli / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ec20864a-95ca-44c3-8b18-02fb445f60cd" ownerguid="9d79be9a-f21e-4189-be39-779db79da027"> -<ExampleWords> -<AUni ws="en">dishpan, pan, dish rack, dishtowel, dishcloth, sponge, dishwater, dishwasher, kitchen sink</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What tools are used to wash dishes?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ec20ae18-4b60-42e5-ae29-508ab2f25902" ownerguid="0296465a-25de-4af6-a122-376956b4b452"> -<ExampleWords> -<AUni ws="en">he, him, his, she, her, hers, it, its, they, them, their, theirs</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What pronouns refer to the people or things being spoken about?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ec2454bf-a83d-4606-a759-00c0e1176a52" ownerguid="fed2b7bd-2315-4085-b0a7-2ced988120f3"> -<ExampleWords> -<AUni ws="en">alternative, option, selection, candidate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the things that could be chosen?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ec266c79-865d-436e-a476-6f4e30d85a84"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">carcila</AUni> -<AUni ws="qvm-x-acl">carcila</AUni> -<AUni ws="qvm-x-akh">carcila</AUni> -<AUni ws="qvm-x-akl">carcila</AUni> -<AUni ws="qvm-x-ame">carcila</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+encarcelar</AUni> -<AUni ws="qvm-x-acl">+encarcelar</AUni> -<AUni ws="qvm-x-akh">+encarcelar</AUni> -<AUni ws="qvm-x-akl">+encarcelar</AUni> -<AUni ws="qvm-x-ame">+encarcelar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.465" /> -<DateModified val="2022-10-10 21:19:47.694" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="54f78726-75ce-4813-95db-ced459463cc3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+encarcelar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8e85a4ce-6359-4da2-aa5c-12dcf0b9b94d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="43031b44-eb30-4e57-9f70-64f1a0570687" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +encarcelar 
\entryTyp root 
\gENG to.imprison 
\gSPN 
\e +encarcelar 
\c V2 
\ach carcila 
\akh carcila 
\acl carcila 
\akl carcila 
\ame carcila</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="ec2e3090-62cc-40fd-8e5a-84aadfb5fab4" ownerguid="7e355660-7017-42be-b82a-dda68d9248ef"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ec2ee089-c20b-462e-b1b5-7c9b9107b51b" ownerguid="467dd680-ac64-4dc4-8a17-1cfe297d3392"> -<ExampleWords> -<AUni ws="en">complex, complicated, one to many</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe a complex connection between two things?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ec2fb55e-473b-48ce-b61a-102366aeeb4a" ownerguid="8bce78d1-5783-4ceb-b63d-faaf55ca4876"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="ec3019ea-f7ea-4e62-82b0-8dd963403d6f" ownerguid="c7c7a8fe-4065-4e67-b741-e52c211972b0"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="ec3093b8-e694-4c3a-bea2-88d9f102c1ad" ownerguid="f2d823a1-804a-4388-b911-3bcb871b29c8"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="ec339ffb-a03c-46a1-8010-eae8ffef018d" ownerguid="e29cef12-4b53-42b3-b899-a300fce20ceb"> -<Form> -<AUni ws="qvm-x-ach">cübu</AUni> -<AUni ws="qvm-x-acl">cübu; cübu; cübo</AUni> -<AUni ws="qvm-x-akh">cübu</AUni> -<AUni ws="qvm-x-akl">cübu; cübu; cübo</AUni> -<AUni ws="qvm-x-ame">cübu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ec368641-1e05-4529-8101-9a49b5157984" ownerguid="bf25931d-4760-4c66-abe8-c05a6dc5adbe"> -<ExampleWords> -<AUni ws="en">splash, plop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What sound does something make when it falls into water?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ec37d4e8-b24a-4b03-a3ef-8cc8a506fa18" ownerguid="ab8f12fb-57b0-4d61-8ae0-50d7cbc412df"> -<ExampleWords> -<AUni ws="en">melt, melt water, thaw, slush, turn to slush</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to snow and ice turning into water?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ec3a7db4-af42-4144-bac1-a8b0465cdeaf" ownerguid="59db2324-e961-4a97-a9ad-38791a07dc23"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="ec3db861-a8b0-47b5-a12b-ef9a8a37dfaf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">profesional</AUni> -<AUni ws="qvm-x-acl">profesional</AUni> -<AUni ws="qvm-x-akh">profesional</AUni> -<AUni ws="qvm-x-akl">profesional</AUni> -<AUni ws="qvm-x-ame">profesional</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+profesional</AUni> -<AUni ws="qvm-x-acl">+profesional</AUni> -<AUni ws="qvm-x-akh">+profesional</AUni> -<AUni ws="qvm-x-akl">+profesional</AUni> -<AUni ws="qvm-x-ame">+profesional</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.931" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1ef67c9d-bc95-4723-ab8d-8f88aff8d453" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+profesional</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a32ab2c8-34e0-4b1b-8552-35b8223e2aed" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ba56249f-3986-4cfd-b754-c7be8132001c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +profesional 
\entryTyp root 
\gENG professional 
\gSPN profesional 
\e +profesional 
\c N0 
\mp +FinalC 
\ach profesional 
\akh profesional 
\acl profesional 
\akl profesional 
\ame profesional</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ec3e8cba-764f-41d8-8fa7-97d1d8067fb1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">malawe:ru</AUni> -<AUni ws="qvm-x-acl">malawe:ru; malawe:ru; malawe:ro</AUni> -<AUni ws="qvm-x-akh">malawe:ru</AUni> -<AUni ws="qvm-x-akl">malawe:ru; malawe:ru; malawe:ro</AUni> -<AUni ws="qvm-x-ame">malawe:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mal.agüero</AUni> -<AUni ws="qvm-x-acl">+mal.agüero</AUni> -<AUni ws="qvm-x-akh">+mal.agüero</AUni> -<AUni ws="qvm-x-akl">+mal.agüero</AUni> -<AUni ws="qvm-x-ame">+mal.agüero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.285" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0b63054b-1f0c-49d3-8871-b6bf46ac9a5a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mal.agüero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2b8f4e5e-6713-40ce-9f0a-13ec663dd12b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bfac2ced-98c2-4c95-99fb-83bc53ac7bac" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mal.agüero 
\entryTyp root 
\gENG evil.omen 
\gSPN mala.agnero 
\e +mal.agüero 
\c N0 
\ach malawe:ru 
\akh malawe:ru 
\acl malawe:ru / _# 
\acl malawe:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl malawe:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl malawe:ru / _# 
\akl malawe:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl malawe:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame malawe:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ec40fe6e-994d-4ee9-b6a3-ef1b26b14381" ownerguid="d90db6d4-6c78-4ac8-9764-0cafa79b8b31"> -<ExampleWords> -<AUni ws="en">army</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something belonging to the army?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ec41a1b0-b617-49f1-9c31-facd067a0b8e" ownerguid="89e2435c-fb17-439b-b3b8-609262c3b02c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">godson</AUni> -<AUni ws="es">ahijado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5103f59a-d8f6-43fe-aa1c-bbf648febf6a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ec472a9c-7ab2-4d47-b71e-3d39eef0f88c" ownerguid="3d4d2a28-ed45-4fc1-85ae-a16b964d7054"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="ec49278f-13c3-4a3f-8610-07ca758fe2a1" ownerguid="5d23894f-6fa9-4d32-9376-4445b87e906d"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ec4b726a-d098-4686-a6c4-0c80f6e27774" ownerguid="cbc0a8f5-9cba-41d2-a7e5-565fbf09c8c4"> -<ExampleWords> -<AUni ws="en">clap, applaud, applause, cheer, jump up and down, jump for joy, dance for joy, shout for joy, make merry, revel, weep for joy, ululate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What other ways do people show they feel good?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ec514334-4500-4375-8c2b-5f77b5185c56" ownerguid="b080162c-9578-4fdc-bd39-d5f25cb3c473" /> -<rt class="MoStemMsa" guid="ec54e917-bade-4172-89b6-0145874da5dd" ownerguid="96acc3dd-e9c4-41a5-a3f2-a111271bfe84"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="Segment" guid="ec55e08b-a450-4109-ab92-2ed19b54e20a" ownerguid="aec38955-64b7-4fe6-942e-4c2ae08e2fd3"> -<Analyses> -<objsur guid="cc266d6a-f4bc-42a3-983e-af7b63ed0d30" t="r" /> -<objsur guid="c8403f69-69d0-4e24-870f-29b9e47446f0" t="r" /> -</Analyses> -<BeginOffset val="0" /> -<FreeTranslation> -<AStr ws="en"> -<Run ws="en">.</Run> -</AStr> -</FreeTranslation> -</rt> -<rt class="CmDomainQ" guid="ec5ee2d5-3cff-434f-85b8-01c562afe757" ownerguid="00269021-e1c4-474d-9dba-341d296bdac7"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">the second <of> the winners</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) In English 'Order' can be expressed by a noun phrase with the 'Item' marked by 'of'.</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ec5fb8b3-9551-4cc6-b886-4e7233e0ca45" ownerguid="f5fd90f4-fdc6-44a8-88bd-730cdbf5bd4b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ec6186a0-fbc2-4216-920a-e21c4affaa92" ownerguid="c8c8b1f6-a898-4d5b-a1ce-fa7284915e8f"> -<ExampleWords> -<AUni ws="en">natural disaster, 'act of God'</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a natural disaster?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ec62a826-2ffb-4744-b559-9395e865be15" ownerguid="2082b248-6be6-4b73-8a24-262f56e13969"> -<Form> -<AUni ws="qvm-x-ach">borrächa</AUni> -<AUni ws="qvm-x-acl">borrächa</AUni> -<AUni ws="qvm-x-akh">borrächa</AUni> -<AUni ws="qvm-x-akl">borrächa</AUni> -<AUni ws="qvm-x-ame">borrächa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="ec6359d2-b25a-466e-b6a0-4a7efa980490" ownerguid="c2ebfbd0-5e63-4232-86c9-625e47379016"> -<Form> -<AUni ws="qvm-x-ach">ra</AUni> -<AUni ws="qvm-x-acl">ra</AUni> -<AUni ws="qvm-x-akh">ra</AUni> -<AUni ws="qvm-x-akl">ra</AUni> -<AUni ws="qvm-x-ame">ra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<MsEnvFeatures> -<objsur guid="99a7fe78-3a01-46ad-9a7c-6f3018f19e7c" t="o" /> -</MsEnvFeatures> -</rt> -<rt class="LexEntry" guid="ec643327-35cd-4846-a51c-be1e023e9e6b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">santa</AUni> -<AUni ws="qvm-x-acl">santa</AUni> -<AUni ws="qvm-x-akh">santa</AUni> -<AUni ws="qvm-x-akl">santa</AUni> -<AUni ws="qvm-x-ame">santa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+santa</AUni> -<AUni ws="qvm-x-acl">+santa</AUni> -<AUni ws="qvm-x-akh">+santa</AUni> -<AUni ws="qvm-x-akl">+santa</AUni> -<AUni ws="qvm-x-ame">+santa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.439" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f11512bf-5e86-415a-992a-68fd5aeb885e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+santa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e505dad0-991f-4779-920b-76febdee649a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6f3d7ef2-54f8-483b-951f-ff758bfffedd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +santa 
\entryTyp root 
\gENG saint 
\gSPN santa 
\e +santa 
\c N0 
\ach santa 
\akh santa 
\acl santa 
\akl santa 
\ame santa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="ec65567c-b797-4b3a-b07e-28a1b2367631" ownerguid="a29ebbfa-efa5-4143-b430-9bc2c4151c25"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ec67552a-57e3-436d-a83d-8914b718bbfd" ownerguid="2ae0c81d-02f5-4f28-80ab-843c7e7ebda0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="51e76297-1669-47a3-b37d-c7f1f3eff120" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="ec67a095-c06e-4386-98a2-dc09edf7dc42" ownerguid="cc1d95ae-fc7b-4987-a2b1-fb8113600330"> -<Form> -<AUni ws="qvm-x-ach">azul</AUni> -<AUni ws="qvm-x-acl">azul</AUni> -<AUni ws="qvm-x-akh">azul</AUni> -<AUni ws="qvm-x-akl">azul</AUni> -<AUni ws="qvm-x-ame">azul</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ec6a512e-9d87-427c-8d83-f65d61e3f49d" ownerguid="ccbbd16f-58c5-45c1-bfff-1fba64d9740e"> -<Question> -<AUni ws="en">(10) perfective: the situation is viewed as bounded temporally. It cannot be simultaneous with the moment of speech; in the non-past it is sometimes interpreted as future.</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ec6baaca-a2bc-4939-a936-e24af2bc5f50" ownerguid="cce98603-ff8f-4213-945a-bd6746716139"> -<ExampleWords> -<AUni ws="en">surface, crust, lithosphere</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the surface of the earth?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ec6db741-9d23-451c-9dc7-d1fe9513dfb8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">utcu</AUni> -<AUni ws="qvm-x-acl">utcu; utcu; utco</AUni> -<AUni ws="qvm-x-akh">utku</AUni> -<AUni ws="qvm-x-akl">utku; utku; utko</AUni> -<AUni ws="qvm-x-ame">utku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*utku</AUni> -<AUni ws="qvm-x-acl">*utku</AUni> -<AUni ws="qvm-x-akh">*utku</AUni> -<AUni ws="qvm-x-akl">*utku</AUni> -<AUni ws="qvm-x-ame">*utku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.302" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e455e36c-0e67-411f-8936-187818705443" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*utku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ba8da67e-03d1-4afd-aeac-2a2998eca376" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="043d7a02-301e-4e50-963a-594186d5cfca" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *utku 
\entryTyp root 
\gENG 
\gSPN 
\e *utku 
\c N0 
\ach utcu 
\akh utku 
\acl utcu / _# 
\acl utcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl utco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl utku / _# 
\akl utku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl utko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame utku</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="ec6f626c-e7a0-4ec7-a541-d683f20c9271" ownerguid="a4b03891-c2df-4d72-bbdc-13bc8d4eceba"> -<Abbreviation> -<AUni ws="en">8.5.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a vicinity--an area around something else.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>80A Space, Place</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Vicinity</AUni> -</Name> -<Questions> -<objsur guid="1c08525c-db8f-446b-b5ea-8bf25fd5be8c" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="6bc8e911-36f2-4d45-b237-2bdb6c03cc11" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="ec75263d-1bbd-4bb7-9bd4-515ba6751b5b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">puncu</AUni> -<AUni ws="qvm-x-acl">puncu; puncu; punco</AUni> -<AUni ws="qvm-x-akh">punku</AUni> -<AUni ws="qvm-x-akl">punku; punku; punko</AUni> -<AUni ws="qvm-x-ame">punku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*punku</AUni> -<AUni ws="qvm-x-acl">*punku</AUni> -<AUni ws="qvm-x-akh">*punku</AUni> -<AUni ws="qvm-x-akl">*punku</AUni> -<AUni ws="qvm-x-ame">*punku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.2" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0068d0dd-399f-4c8e-86e7-1021a80c20f5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*punku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e9a7660c-f4f7-4e34-9a92-5fef1d99356d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ca86d572-5b96-472e-8d54-f218c6417cd7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *punku 
\entryTyp root 
\gENG door 
\gSPN puerta 
\e *punku 
\c N0 
\ach puncu 
\akh punku 
\acl puncu / _# 
\acl puncu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl punco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl punku / _# 
\akl punku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl punko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame punku</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ec760cf3-ec3e-449d-9072-db082f0ea10f" ownerguid="e2143cef-5297-4799-a37e-7b298a8d56d3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">ruda</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="79c4dcf9-71da-44b3-8bc5-97c4974e746a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="ec79e90e-ecd3-497f-bc14-ac64181f53d7" ownerguid="771e3882-f672-4e67-8580-edd82d7e5090"> -<Abbreviation> -<AUni ws="en">4.3.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.225" /> -<DateModified val="2022-9-23 16:55:8.225" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to doing evil to someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88P Treat Badly</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Do evil to</AUni> -</Name> -<Questions> -<objsur guid="0bfb6cc3-a6eb-417d-915a-97f8d4b94b06" t="o" /> -<objsur guid="586e1d65-af70-4517-a59f-0fab87b6fadf" t="o" /> -<objsur guid="01153fbf-4022-4d30-9d15-c12f05feb63d" t="o" /> -<objsur guid="fa298c9b-bcef-4c98-be23-61b468636195" t="o" /> -<objsur guid="574755a9-b542-42de-85bc-0a4e562e0f78" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="9d865347-6656-4ab7-8613-bf2e8bc53aa7" t="r" /> -<objsur guid="eb00b4c2-5b87-4ef8-9548-800fc5c9b524" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="ec7d775b-ef00-4022-8e92-a65ea8412ab7" ownerguid="19a947fb-c6bb-494e-a88d-5bbb9b4965fe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lead</AUni> -<AUni ws="es">encaminar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d84b48a2-666d-4bb5-b9a4-3f4501c6110b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ec8a632e-9de1-499d-805e-3fc55c7b3726" ownerguid="3160b7ad-e4e8-4a46-8e2e-d5e601969547"> -<ExampleWords> -<AUni ws="en">storyteller, narrator</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to someone who tells a story?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ec8b2173-6328-48ca-a6f6-cde32f287ac4" ownerguid="c8185ca6-567a-40ef-939f-ffefdd9a4770"> -<ExampleWords> -<AUni ws="en">eternity, infinity, all times</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words are used to refer to all time or a time that will never end?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ec8b49c5-c7fb-4cb2-8cb1-72c686ae009e" ownerguid="acc16676-b30c-4c4c-aa94-20869e1bafdd"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="ec8e1481-827c-4554-bf50-0d3f592f3702" ownerguid="71430132-f2ea-40fe-b3f5-b6775741cc56"> -<Abbreviation> -<AUni ws="en">6.6.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.468" /> -<DateModified val="2022-9-23 16:55:8.468" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to cloth.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Cloth</AUni> -</Name> -<Questions> -<objsur guid="bbdc0e42-28dc-4a9f-99a1-d225946cdd4b" t="o" /> -<objsur guid="7fdd4cd9-f9e4-4433-88ca-4dbb1066afba" t="o" /> -<objsur guid="3742de40-560d-4f39-9a5c-cc3afc413016" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="ec8e15c6-57d1-4a43-b91a-11d285aeafec" ownerguid="75fce016-3aa7-4e73-9003-db242c2f8c86"> -<Form> -<AUni ws="qvm-x-ach">cuentestëru</AUni> -<AUni ws="qvm-x-acl">cuentestëru; cuentestëru; cuentestëro</AUni> -<AUni ws="qvm-x-akh">cuentestëru</AUni> -<AUni ws="qvm-x-akl">cuentestëru; cuentestëru; cuentestëro</AUni> -<AUni ws="qvm-x-ame">cuentestëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="ec8e7abd-3b3a-4d99-b1d0-21ccd3983b1b" ownerguid="202c2c38-e8aa-4b82-a567-e7111fb3f511"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="ec8f85f7-0c45-4350-a18d-4b595462fea3" ownerguid="61b33cf4-d32b-4d55-aa97-b4d4bd68e25b"> -<Category> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</Category> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="9da49e0e-0736-4cc1-bcfa-66932f3d040e" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="8536beab-56bb-4a82-8da7-ba29db3f3204" t="o" /> -</MorphBundles> -</rt> -<rt class="CmSemanticDomain" guid="ec90e061-e6a0-435f-8784-7269a24c670a" ownerguid="49ee84ff-eb2b-4ba3-b193-3018d34599c2"> -<Abbreviation> -<AUni ws="en">6.8.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to giving a pledge to replay a loan.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Give pledge, bond</AUni> -</Name> -<Questions> -<objsur guid="9db6902f-b85f-4cc9-971c-78d02164964b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="ec932bf0-42e2-407c-b719-27fefd21f67d" ownerguid="8a5f50bf-1ae3-4b7c-bf73-ec15acd20e61"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ec967513-1ea1-41aa-9bfb-7aec4949b70a" ownerguid="fa972d1b-4e6a-4e70-8f2a-388f86594be6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 V0/V0 R0/R0 ONSHEV/ONSHEV BN/BN</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="5ddefe9a-df34-4e37-a6fd-e7de5717141d" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">SUR</AUni> -<AUni ws="es">CRT</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6e795ba4-a421-4a00-adb7-5481af3b09bf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="ec97ede4-0162-478e-be56-0e3f4b1f975a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">taugui</AUni> -<AUni ws="qvm-x-acl">taugui; taugui; taugue</AUni> -<AUni ws="qvm-x-akh">tawqi</AUni> -<AUni ws="qvm-x-akl">tawqi; tawqi; tawqe</AUni> -<AUni ws="qvm-x-ame">tawqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tawqi</AUni> -<AUni ws="qvm-x-acl">*tawqi</AUni> -<AUni ws="qvm-x-akh">*tawqi</AUni> -<AUni ws="qvm-x-akl">*tawqi</AUni> -<AUni ws="qvm-x-ame">*tawqi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.835" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="06cbebfe-f64c-4a75-91e8-842d2992d272" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tawqi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="70bd2050-520d-45ba-b701-edd7740a18bb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="974fcfa5-eb5a-4e41-9909-e971a0b6bd9c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tawqi 
\entryTyp root 
\gENG gift 
\gSPN regalo 
\e *tawqi 
\c N0 
\mp +FinalI 
\ach taugui 
\akh tawqi 
\acl taugui / _# 
\acl taugui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl taugue +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tawqi / _# 
\akl tawqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tawqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tawqi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="ec998dc6-d509-4832-8434-d2abac34ba70" ownerguid="c8d94c8f-db0b-4016-bdd2-e41a2eae4288"> -<Abbreviation> -<AUni ws="en">4.6.7.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.264" /> -<DateModified val="2022-9-23 16:55:8.264" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a community.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Community</AUni> -</Name> -<OcmCodes> -<Uni>620 Community</Uni> -</OcmCodes> -<Questions> -<objsur guid="bb5ccd1f-2aaa-42ed-bdf4-e1ff150aebb2" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="ec9b5648-d5ee-4710-9610-0a9763e525c2" ownerguid="c6ebf386-d8fa-4e08-9d2b-32569ec1e7dc"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="e783a562-417d-48ed-b321-d4245089318c" t="o" /> -<objsur guid="4704343f-679c-4ea0-bb0a-a7d690c3e69c" t="o" /> -<objsur guid="9025c9d6-3bfd-4dff-a896-68356b9e1fc7" t="o" /> -<objsur guid="fcbead11-b102-4d4a-9901-73c40cf19baf" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="ec9d9e23-bcba-41c8-b29b-7b3e2291064d" ownerguid="f0404b23-db91-46c7-87e1-9f1be0712980"> -<ExampleWords> -<AUni ws="en">fable, myth, tale, fairytale, tall tale, legend, fiction, folklore, lore, parable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to fables?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="eca09c70-f7d0-43fc-847f-d3e59bb699e6" ownerguid="26ddd68b-9112-4344-95ac-203ca466fc62"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bend</AUni> -<AUni ws="es">doblar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5a6c3085-e731-45da-be51-a78f32c6e302" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="eca147b6-fc3d-4f35-b3db-325652e862ec"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">partición; particion</AUni> -<AUni ws="qvm-x-acl">partición; particion</AUni> -<AUni ws="qvm-x-akh">partición; particion</AUni> -<AUni ws="qvm-x-akl">partición; particion</AUni> -<AUni ws="qvm-x-ame">partición; particion</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+partición.1</AUni> -<AUni ws="qvm-x-acl">+partición.1</AUni> -<AUni ws="qvm-x-akh">+partición.1</AUni> -<AUni ws="qvm-x-akl">+partición.1</AUni> -<AUni ws="qvm-x-ame">+partición.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.729" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="05b3c5cc-9c57-4d9e-9bfd-dbe11e2774fc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+partición.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a6d78f9d-79a6-4bce-8e71-4c23bdd5cb00" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2a78ff49-3a86-4120-ae06-95f7864e5851" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +partición.1 
\entryTyp root 
\gENG inheritance 
\gSPN herencia 
\e +partición.1 
\c N0 
\mp +FinalC 
\ach partición / _# 
\ach particion / ~_# 
\akh partición / _# 
\akh particion / ~_# 
\acl partición / _# 
\acl particion / ~_# 
\akl partición / _# 
\akl particion / ~_# 
\ame partición / _# 
\ame particion / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="eca302e4-7c0b-4691-bddb-85d7ac4946c1" ownerguid="eeb38cbb-7102-424d-8e2d-7acabf83f477"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="b1cfa593-301a-42db-b1f0-ba847d6cb571" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="eca46133-c350-4573-a349-9b7ce11b6fa8" ownerguid="6342c8bf-55b5-400f-af7e-63055fe6813b"> -<Abbreviation> -<AUni ws="en">6.7.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to containers.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>6P Containers</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Container</AUni> -</Name> -<Questions> -<objsur guid="23e75c8e-3abb-4ce9-8ad8-848738442a0e" t="o" /> -<objsur guid="52cfb002-0d31-4189-a9f5-71f3caafaaf4" t="o" /> -<objsur guid="026bb513-6246-48e1-a72b-9fc5c1225c79" t="o" /> -<objsur guid="93a1eff9-ad2d-44f5-9e70-3b573f385f36" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="8fbed974-7d25-44c3-80cb-7d02e4069007" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="4d3412e3-85a0-4f81-9dad-efd6101b4945" t="o" /> -<objsur guid="3acf5e20-b626-4f0a-a582-d386a0e30792" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="eca7f251-3b73-4ef7-b854-3cf2a903e4bd" ownerguid="1a1247aa-8b89-4258-8aba-d5fd36f52574"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chaff</AUni> -<AUni ws="es">granzas</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="266f13aa-1cb4-450f-8566-7aea02c63a5e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ecaafbfe-b78a-45b0-bbdb-5abf0f8db2a1" ownerguid="56a3860b-d54f-46cb-988f-d664127ccdb4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ecab90dc-fe3e-408c-89e0-94d7e765a353" ownerguid="8e88ed6a-000d-400a-8cd8-7b3cc7f1818c"> -<ExampleWords> -<AUni ws="en">medicine man, herbalist, shaman</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who practices traditional medicine?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ecad5118-6654-450a-91e7-6dfb51157aeb" ownerguid="b553e989-2b2a-4b1e-a987-ae75f3862501"> -<ExampleWords> -<AUni ws="en">not mind, not be fussy, it doesn't matter to me, it doesn't bother me, I'm easy, suit yourself, have no objection</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What do people say when they don't care what happens, because they would be happy with whatever happens?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="ecad7219-bf1e-4b0d-8c51-5066d4b2d0c0" ownerguid="66eea5ae-7a9a-4cda-9c78-59a943cec536"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="ecae4d8a-3613-44ec-899b-500f57c2818f" ownerguid="7299a7c6-da78-4672-8cee-fb30d5475ecc"> -<Form> -<AUni ws="qvm-x-ach">cusina</AUni> -<AUni ws="qvm-x-acl">cusina</AUni> -<AUni ws="qvm-x-akh">kusina</AUni> -<AUni ws="qvm-x-akl">kusina</AUni> -<AUni ws="qvm-x-ame">kusina</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ecaf3710-8379-4284-9c49-2fd0c5dfebff" ownerguid="d01f1c51-522e-4b35-81b3-00577dbfa3bd"> -<ExampleWords> -<AUni ws="en">color (photograph), in color</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something, such as a photograph, that has been made with color?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ecaf8ff7-f033-4919-9171-3811efa82e8f" ownerguid="316f27aa-ed6d-4bc3-9d14-840946a6f4e9"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">We all admire <such> a man. (a generous man); We all admire <that kind of> a man.; We all admire <that sort of> a man.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">such, that kind of, that sort of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words can replace an adjective?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="ecaff061-6a12-4ad6-b818-9b140a9a3e11" ownerguid="e28f3f79-d4a5-402c-8a70-196856791078"> -<Abbreviation> -<AUni ws="en">9.1.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.680" /> -<DateModified val="2022-9-23 16:55:8.680" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to designing something--to decide and plan how something new will look and work.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Design</AUni> -</Name> -<Questions> -<objsur guid="88c2a257-21f2-4fdf-b04b-6a9bd0316a8f" t="o" /> -<objsur guid="34196164-98c9-4762-b40e-2786a0ce33c3" t="o" /> -<objsur guid="79433655-affd-4a42-821a-0f4587428737" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="ecb19ae1-cb8b-46fc-9283-42ab801879c3" ownerguid="141fbda8-9ce8-4160-a9cf-82436828ed8a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="ecb1a77c-a6f0-48b4-af45-8671a868f0d4" ownerguid="00733fca-c4d6-4ec1-b1bf-1587621b3b96"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="ecb3318a-caf6-45ae-a87e-814e1b1cdba1" ownerguid="9346f0b2-661a-413d-aa1c-c078ce41350f"> -<Form> -<AUni ws="qvm-x-ach">ripra</AUni> -<AUni ws="qvm-x-acl">ripra</AUni> -<AUni ws="qvm-x-akh">ripra</AUni> -<AUni ws="qvm-x-akl">ripra</AUni> -<AUni ws="qvm-x-ame">ripra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="ecb715ad-6332-4bad-a6c5-219f7a109473" ownerguid="7299a7c6-da78-4672-8cee-fb30d5475ecc"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ecbb0414-5ac1-4af5-8418-b52bf437b005" ownerguid="aaf9d375-f0a0-4c7b-bbf8-3c7ffd4f5a52"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Ambassador Stevenson is a very <high> level official.; <Low> priority tasks should be placed later in the list.; The musician gave a <first> rate performance.; Finding a suitable place to live was of <primary> importance.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">high, low, greater, lesser, first, primary, secondary</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate a degree on a scale?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ecbc2581-772a-415b-bf79-7863f20fb6e2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lactsi</AUni> -<AUni ws="qvm-x-acl">lactsi; lactse</AUni> -<AUni ws="qvm-x-akh">laktsi</AUni> -<AUni ws="qvm-x-akl">laktsi; laktse</AUni> -<AUni ws="qvm-x-ame">laktsi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llakchi</AUni> -<AUni ws="qvm-x-acl">*llakchi</AUni> -<AUni ws="qvm-x-akh">*llakchi</AUni> -<AUni ws="qvm-x-akl">*llakchi</AUni> -<AUni ws="qvm-x-ame">*llakchi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.124" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3036e5b6-1db5-4b85-8ac4-a0f59688ec95" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llakchi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9896c6e8-2e7c-48d0-9f05-134f0a77332d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0605f9ca-1e3b-42ad-91ba-afe046d38630" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llakchi 
\entryTyp root 
\gENG split 
\gSPN rajar 
\e *llakchi 
\c V1 
\mp +FinalI 
\ach lactsi 
\akh laktsi 
\acl lactsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lactse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl laktsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl laktse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame laktsi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="ecbdf1c5-9d7f-4446-b6a1-644a379a480b" ownerguid="0f7c4d2f-ed94-49ba-a91c-fba36193f35a"> -<Abbreviation> -<AUni ws="en">6.8.4.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a cheap price.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Cheap</AUni> -</Name> -<Questions> -<objsur guid="94657cc8-5002-4c4e-ae23-de9bb99d0f48" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="ecbe0559-6ca2-4827-80e9-e4326bc9060e" ownerguid="9cef4229-fa1e-4cbc-92e7-f047d6e696a1"> -<Form> -<AUni ws="qvm-x-ach">macllu</AUni> -<AUni ws="qvm-x-acl">macllu; macllu; macllo</AUni> -<AUni ws="qvm-x-akh">makllu</AUni> -<AUni ws="qvm-x-akl">makllu; makllu; makllo</AUni> -<AUni ws="qvm-x-ame">makllu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="ecbed43d-a57d-4c68-9226-f70c1c501099" ownerguid="1d44baa0-006a-471d-83ad-4a063b38bc16"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoAffixAllomorph" guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" ownerguid="d9d51c58-ecff-4e68-ba88-c5c96083536b"> -<Form> -<AUni ws="qvm-x-ach">n</AUni> -<AUni ws="qvm-x-acl">n</AUni> -<AUni ws="qvm-x-akh">n</AUni> -<AUni ws="qvm-x-akl">n</AUni> -<AUni ws="qvm-x-ame">n</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="ecc36992-d2e5-45eb-a545-c1b7535c8438" ownerguid="a4ee4ddc-91d6-4e31-8f8d-361a2b83430d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="ecc37619-47f9-4658-a598-192b91a84d15" ownerguid="dbb527ae-736a-449c-9bfa-53d86d25fead"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="494ac8c4-d6d5-4a63-af85-f00560535df3" t="o" /> -<objsur guid="66ebda09-5cd5-4303-a63d-ba513ead74f8" t="o" /> -</MorphBundles> -</rt> -<rt class="PhEnvironment" guid="ecc38dfe-17e1-43c0-a97d-424b6daa6ea3" ownerguid="be765e3e-ea5e-11de-9d42-0013722f8dec"> -<Name> -<AUni ws="en">not word final</AUni> -</Name> -<StringRepresentation> -<Str> -<Run ws="qvm-x-akh">/</Run> -<Run undercolor="red" underline="squiggle" ws="qvm-x-akh">~_#</Run> -</Str> -</StringRepresentation> -</rt> -<rt class="CmSemanticDomain" guid="ecc39bc2-6336-48ca-be46-cf5e49a3c267" ownerguid="73499b8b-76fc-4121-8bfa-1bdebe537259"> -<Abbreviation> -<AUni ws="en">1.6.1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.994" /> -<DateModified val="2022-9-23 16:55:7.994" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the names of insect species (phylum Arthropoda, class Insecta). Note that insects have six legs and spiders have eight legs. However some languages may not distinguish insects from spiders and may use other characteristics to sub-divide the Arthropods.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>4C Insects</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Insect</AUni> -</Name> -<OcmCodes> -<Uni>136k Insect</Uni> -</OcmCodes> -<Questions> -<objsur guid="5b86ec50-08cd-49ac-afa7-3fee921fbb4f" t="o" /> -<objsur guid="7a271c6d-bd57-4d17-ae2f-01495cf2c51e" t="o" /> -<objsur guid="4bf9496f-1c02-4013-ad80-f68f5cb80423" t="o" /> -<objsur guid="5e95ddf0-522b-4cee-9f88-8fc7bae1a0e9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="ecc46ea7-1bf5-4f94-a7f0-ec8d77500814"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">compañe:ru</AUni> -<AUni ws="qvm-x-acl">compañe:ru; compañe:ru; compañe:ro</AUni> -<AUni ws="qvm-x-akh">compañe:ru</AUni> -<AUni ws="qvm-x-akl">compañe:ru; compañe:ru; compañe:ro</AUni> -<AUni ws="qvm-x-ame">compañe:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+compañero</AUni> -<AUni ws="qvm-x-acl">+compañero</AUni> -<AUni ws="qvm-x-akh">+compañero</AUni> -<AUni ws="qvm-x-akl">+compañero</AUni> -<AUni ws="qvm-x-ame">+compañero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.152" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fd85d396-20b2-4fee-90fc-6a14f14ac480" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+compañero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="df26775c-4ddf-4546-a7ec-071e470fa012" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e9601ea4-a9e0-45cb-8eb0-9c65c867895e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +compañero 
\entryTyp root 
\gENG 
\gSPN 
\e +compañero 
\c N0 
\ach compañe:ru 
\akh compañe:ru 
\acl compañe:ru / _# 
\acl compañe:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl compañe:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl compañe:ru / _# 
\akl compañe:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl compañe:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame compañe:ru 
\i DAN 2.13 Tsaymi Danielta y compañëruncunatapis ashitsergan wanutsishga cananpag.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ecc8923b-0f94-43c2-829c-8bc213d2666c" ownerguid="3421189c-0b52-4d4e-aac3-252bcac4544b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="6e063484-6af7-4b88-973f-c9db28d373b5" t="o" /> -</Examples> -<Gloss> -<AUni ws="es">aplastar.con.pie</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cf1914a5-dd75-4708-9baa-b70e40cf3fca" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="ecc972e2-fd45-4364-be97-09555bc9e8d0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ras</AUni> -<AUni ws="qvm-x-acl">ras</AUni> -<AUni ws="qvm-x-akh">ras</AUni> -<AUni ws="qvm-x-akl">ras</AUni> -<AUni ws="qvm-x-ame">ras</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ras</AUni> -<AUni ws="qvm-x-acl">+ras</AUni> -<AUni ws="qvm-x-akh">+ras</AUni> -<AUni ws="qvm-x-akl">+ras</AUni> -<AUni ws="qvm-x-ame">+ras</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.275" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="30d58c31-b27d-4842-bb70-0d0656328606" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ras</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="794ff46d-92c8-42ee-9318-579036797a35" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a3193716-c0af-4692-9040-9360b6d86b2e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ras 
\entryTyp root 
\gENG quickly 
\gSPN rápidamente 
\e +ras 
\c R0 
\mp +FinalC 
\ach ras 
\akh ras 
\acl ras 
\akl ras 
\ame ras</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ecc97a76-a01b-4aed-aa03-8ed4bddfe0c5" ownerguid="82ecb5b3-9128-4b38-b9c5-612857417ceb"> -<ExampleWords> -<AUni ws="en">unpleasant, not very nice, nasty, unappetizing, unpalatable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe a taste or smell that people dislike?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="eccc17c5-4427-4716-bfa3-3dfe6f33bc2c" ownerguid="39dcb6b9-94df-45be-a128-c14c7a9dcdbd"> -<ExampleWords> -<AUni ws="en">nauseate, give you an upset stomach, make you sick to your stomach</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to something making your stomach feel sick?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="eccc2460-5836-479b-bf58-ad2e7f9e3e2a" ownerguid="2158eb7d-eb59-4740-9628-9080d7f51a97"> -<ExampleWords> -<AUni ws="en">wake up, come to, awaken, come out of a deep sleep, be startled out of sleep</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to waking up?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="eccd38a6-6793-49f1-8508-cf1de6b7baf9" ownerguid="077fe92a-afbc-4183-bec3-bfa8d83a2ba2"> -<Form> -<AUni ws="qvm-x-ach">gustu; gusto</AUni> -<AUni ws="qvm-x-acl">gustu; gustu; gusto</AUni> -<AUni ws="qvm-x-akh">gustu; gusto</AUni> -<AUni ws="qvm-x-akl">gustu; gustu; gusto</AUni> -<AUni ws="qvm-x-ame">gustu; gusto</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="ecce310f-de4b-43f0-8ed6-c18b70575b7a" ownerguid="7acde7d5-1a5b-4e16-99c7-5f297d2643f4"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="dd219e2c-5f99-4118-be9d-413293cb6012" t="o" /> -<objsur guid="ab783f79-d67e-45b3-80af-c947cd47cd51" t="o" /> -<objsur guid="05e80eb1-4b86-4dc4-86b7-9ec01d336626" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="eccfc022-d889-412e-b2bb-e00840d5df3e" ownerguid="a6c89bc7-61f1-4cc8-9504-236978f03534"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="eccffe3a-171d-4bde-b9ce-3996b092b5db" ownerguid="6d16734e-2d7e-4d98-93bd-ee2fac9eaddb"> -<Form> -<AUni ws="qvm-x-ach">ñacacha</AUni> -<AUni ws="qvm-x-acl">ñacacha</AUni> -<AUni ws="qvm-x-akh">ñakacha</AUni> -<AUni ws="qvm-x-akl">ñakacha</AUni> -<AUni ws="qvm-x-ame">ñakacha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="ecd2b70f-45ba-4aca-916b-de61189b4293" ownerguid="b3255388-4f7a-45f4-b13c-6a54eea20ed0"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Deu 20.8 Maygayquipis jaca shongu y mishi pulsu carga waquin cagta mana mantsarëtsinayquipag wayiquiman cuticuy.</Run> -</AStr> -</Example> -</rt> -<rt class="MoAffixAllomorph" guid="ecd3fb10-7edc-41bd-a74e-24d356b3fec3" ownerguid="89fb9e9a-1c52-4d3a-99aa-5fdd061f778f"> -<Form> -<AUni ws="qvm-x-ach">ntsi</AUni> -<AUni ws="qvm-x-acl">ntsi</AUni> -<AUni ws="qvm-x-akh">ntsi</AUni> -<AUni ws="qvm-x-akl">ntsi</AUni> -<AUni ws="qvm-x-ame">ntsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ecd76000-da6c-4b2d-9dc4-e57b8fc6deef" ownerguid="627280f0-4f98-4b31-ad23-eabe37b002ad"> -<ExampleWords> -<AUni ws="en">thin, paper-thin, wafer-thin, slim</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that is thin and flat?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ecda1c2a-137b-4f01-9ea9-bade83408174" ownerguid="094ad767-9400-4ac2-a94d-ea6531715f91"> -<Form> -<AUni ws="qvm-x-ach">purash</AUni> -<AUni ws="qvm-x-acl">purash</AUni> -<AUni ws="qvm-x-akh">purash</AUni> -<AUni ws="qvm-x-akl">purash</AUni> -<AUni ws="qvm-x-ame">purash</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ecdb2635-f3d3-4274-a74c-058ab34aad23" ownerguid="57c9a370-0f46-4475-98fd-c7a8b3f5074c"> -<ExampleWords> -<AUni ws="en">ruin, destroy, wreck, screw up, spoil everything</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to completely spoiling something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ecdcef1c-160e-4f28-adca-9685ca9dd2f2" ownerguid="a3ee2e46-9e30-4650-9371-e7327940ec7e"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ece02c07-7cc7-4fbe-8fd7-bdeb6cf1c11c" ownerguid="ca9c215a-e568-4d09-b3a9-b5727cd831d6"> -<ExampleWords> -<AUni ws="en">grave clothes, shroud, coffin, casket, sarcophagus, urn</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What is used to protect a body?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ece276b9-988c-4c97-a3c0-ab9a7e8e57da" ownerguid="0134f6fe-9b56-4d4e-ae56-f1fd5e58493f"> -<Form> -<AUni ws="qvm-x-ach">perteneci</AUni> -<AUni ws="qvm-x-acl">perteneci; pertenece</AUni> -<AUni ws="qvm-x-akh">perteneci</AUni> -<AUni ws="qvm-x-akl">perteneci; pertenece</AUni> -<AUni ws="qvm-x-ame">perteneci</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="ece42d2d-cced-443b-83cd-22d573670894"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mogtsi</AUni> -<AUni ws="qvm-x-acl">mogtsi; mogtse</AUni> -<AUni ws="qvm-x-akh">moqtsi</AUni> -<AUni ws="qvm-x-akl">moqtsi; moqtse</AUni> -<AUni ws="qvm-x-ame">muqtsi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*muqchi</AUni> -<AUni ws="qvm-x-acl">*muqchi</AUni> -<AUni ws="qvm-x-akh">*muqchi</AUni> -<AUni ws="qvm-x-akl">*muqchi</AUni> -<AUni ws="qvm-x-ame">*muqchi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.507" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eb74ad95-c7a2-4273-a3ac-20a66ce1f3c8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*muqchi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bb10227b-09f8-4cd0-8b46-3b36c3073257" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="42fb01f0-1c33-4a97-b077-19c557c3705b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *muqchi 
\entryTyp root 
\gENG 
\gSPN escupir 
\e *muqchi 
\c V1 
\mp +FinalI 
\ach mogtsi 
\akh moqtsi 
\acl mogtsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl mogtse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl moqtsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl moqtse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame muqtsi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ece72519-f223-4968-b92e-80b654ded50e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">manacag</AUni> -<AUni ws="qvm-x-acl">manacag</AUni> -<AUni ws="qvm-x-akh">manakaq</AUni> -<AUni ws="qvm-x-akl">manakaq</AUni> -<AUni ws="qvm-x-ame">manakaq</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*manakaq</AUni> -<AUni ws="qvm-x-acl">*manakaq</AUni> -<AUni ws="qvm-x-akh">*manakaq</AUni> -<AUni ws="qvm-x-akl">*manakaq</AUni> -<AUni ws="qvm-x-ame">*manakaq</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.303" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2331bdf1-b0bf-41e3-9152-6289a37a4eb5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*manakaq</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d323219f-b22a-4001-abcd-e39fa0a68fcb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aba20795-58e7-4dcd-b428-2a3b5e6a0777" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *manakaq 
\entryTyp root 
\gENG what.is.vain 
\gSPN lo.que.es.nada 
\e *manakaq 
\c N0 
\mp +FinalC 
\ach manacag 
\akh manakaq 
\acl manacag 
\akl manakaq 
\ame manakaq</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ecea6f00-1dae-4a99-b099-b49cf877f0bc" ownerguid="31dc3d15-c6f8-4405-a33b-8f3a52f8671a"> -<ExampleWords> -<AUni ws="en">water, milk, juice, tea, coffee, soda, soda pop, coke, milkshake, malt, chocolate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of drinks are there?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="eceabbcd-16ce-4e73-9977-ec1ad2661946" ownerguid="783a316a-c748-4435-9e6a-77d316274fa4"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="ecec1147-7f73-4335-a9cc-9e6b98a863eb" ownerguid="f068e266-e8ea-4671-934f-17929e749315"> -<Form> -<AUni ws="qvm-x-ach">vëlu</AUni> -<AUni ws="qvm-x-acl">vëlu; vëlu; vëlo</AUni> -<AUni ws="qvm-x-akh">vëlu</AUni> -<AUni ws="qvm-x-akl">vëlu; vëlu; vëlo</AUni> -<AUni ws="qvm-x-ame">vëlu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="eceebee3-a371-4408-8619-54402d46273b" ownerguid="c49b8038-b6c9-4a4e-90e4-ae79fe3a8398"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">g</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">g</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">q</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">q</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">q</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2077e726-cf37-4913-b54c-2d034d4883b4" t="r" /> -</Morph> -<Msa> -<objsur guid="cc4f521e-5e38-4217-aa16-46da99d423ec" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="eceef2d1-1b9b-46b5-9aa8-a7aa1dd9b68d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jirish</AUni> -<AUni ws="qvm-x-acl">jirish</AUni> -<AUni ws="qvm-x-akh">jirish</AUni> -<AUni ws="qvm-x-akl">jirish</AUni> -<AUni ws="qvm-x-ame">hirish</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hirish</AUni> -<AUni ws="qvm-x-acl">*hirish</AUni> -<AUni ws="qvm-x-akh">*hirish</AUni> -<AUni ws="qvm-x-akl">*hirish</AUni> -<AUni ws="qvm-x-ame">*hirish</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.729" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7f81b0c4-140d-43aa-bb5b-86707ab3ea3d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hirish</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c4e3a323-847f-4fde-bf56-85539bf49fe8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="948b4c75-b16a-4c32-8d6b-e4d42a4fc889" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hirish 
\entryTyp root 
\gENG hummingbird 
\gSPN picaflor 
\e *hirish 
\c N0 
\mp +FinalC 
\ach jirish 
\akh jirish 
\acl jirish 
\akl jirish 
\ame hirish</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="ecf1cce7-ed58-44bf-870a-e8579b309c54" ownerguid="265f5645-94cb-485c-8bf9-0a3ab2354f63"> -<Abbreviation> -<AUni ws="en">9.6.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating a combinative relation between two things.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89V Combinative Relation</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Combinative relation</AUni> -</Name> -<Questions> -<objsur guid="426adc6b-ccc4-4818-801f-bab9e8c606d0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="ecf44772-a5ae-47e3-bd85-65a4333c3178" ownerguid="9d6cbe74-93d6-41fb-b7e2-cc30adb28187"> -<ExampleWords> -<AUni ws="en">climber, mountaineer, mountain climber, rock-climber</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to someone who moves up?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ecf4ab85-7d11-460d-9e4e-f50516bd0c07"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tu:nil</AUni> -<AUni ws="qvm-x-acl">tu:nil; tu:nil; tu:nel</AUni> -<AUni ws="qvm-x-akh">tu:nil</AUni> -<AUni ws="qvm-x-akl">tu:nil; tu:nil; tu:nel</AUni> -<AUni ws="qvm-x-ame">tu:nil</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+túnel</AUni> -<AUni ws="qvm-x-acl">+túnel</AUni> -<AUni ws="qvm-x-akh">+túnel</AUni> -<AUni ws="qvm-x-akl">+túnel</AUni> -<AUni ws="qvm-x-ame">+túnel</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.360" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c451f4bb-265f-4d9e-84ee-db6165f33039" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+túnel</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a7d43f94-ed2e-4dc9-9166-e7498006c4e7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="96afc413-77b1-4ac2-a157-60435c816db5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +túnel 
\entryTyp root 
\gENG 
\gSPN 
\e +túnel 
\c N0 
\mp +assimilated 
\ach tu:nil 
\akh tu:nil 
\acl tu:nil / _# 
\acl tu:nil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tu:nel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tu:nil / _# 
\akl tu:nil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tu:nel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame tu:nil 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ecf532a7-038b-4f31-8c1c-f36f85314222"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maga</AUni> -<AUni ws="qvm-x-acl">maga</AUni> -<AUni ws="qvm-x-akh">maqa</AUni> -<AUni ws="qvm-x-akl">maqa</AUni> -<AUni ws="qvm-x-ame">maqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*maqa.v</AUni> -<AUni ws="qvm-x-acl">*maqa.v</AUni> -<AUni ws="qvm-x-akh">*maqa.v</AUni> -<AUni ws="qvm-x-akl">*maqa.v</AUni> -<AUni ws="qvm-x-ame">*maqa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.336" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4e393674-1614-4c3b-ab55-cd0c57293ba2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*maqa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a302dc69-ec72-4e07-9934-73bd9491e140" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ae8486f0-e553-4077-af99-428a2bff0920" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *maqa.v 
\entryTyp root 
\gENG hit 
\gSPN pegar 
\e *maqa.v 
\c V2 
\ach maga 
\akh maqa 
\acl maga 
\akl maqa 
\ame maqa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmPossibilityList" guid="ecf8c677-320a-452c-85c0-1f0df87b5be5" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Abbreviation> -<AUni ws="en">Pos</AUni> -</Abbreviation> -<DateCreated val="2022-9-23 16:55:8.741" /> -<DateModified val="2022-10-15 15:40:51.147" /> -<Depth val="127" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="True" /> -<IsVernacular val="False" /> -<ItemClsid val="5049" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Parts Of Speech</AUni> -</Name> -<Possibilities> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="o" /> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="o" /> -<objsur guid="a4fc78d6-7591-4fb3-8edd-82f10ae3739d" t="o" /> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="o" /> -<objsur guid="38b17640-aa0a-406d-bc99-a54197290945" t="o" /> -<objsur guid="07455e91-118a-4d7d-848c-39bedd355a3d" t="o" /> -<objsur guid="d32dff62-4117-4762-a887-96478406769b" t="o" /> -<objsur guid="30d07580-5052-4d91-bc24-469b8b2d7df9" t="o" /> -<objsur guid="75ac4332-a445-4ce8-918e-b27b04073745" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="True" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="True" /> -<WsSelector val="-3" /> -</rt> -<rt class="CmSemanticDomain" guid="ecf9ebd7-f991-41df-98cd-bcf1254d5d0b" ownerguid="196bf7b1-54a1-4a78-8d10-c61585849c63"> -<Abbreviation> -<AUni ws="en">7.2.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.518" /> -<DateModified val="2022-9-23 16:55:8.518" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to going first or going ahead of someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15O Come/Go Prior To; 15P Come/Go In Front Of</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Go first</AUni> -</Name> -<Questions> -<objsur guid="6244c23b-1281-4ecd-80e2-96e9f25bde1f" t="o" /> -<objsur guid="480e2f6d-e5e7-4cb9-8e23-49379eda417d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="ecfa6f48-1e8c-4117-87b9-e595d28561fb" ownerguid="e7f94aea-ba50-481d-b640-d5cd8bdedc72"> -<ExampleWords> -<AUni ws="en">urine, pee</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to urine?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ecfe6f10-4bfb-460e-acd2-bdd29aae15e9" ownerguid="ba8d18bd-2556-47a0-aa33-3ebef3e90814"> -<ExampleWords> -<AUni ws="en">record, keep a record, put on record, chart, document, register</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to making a record?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ecfe8ac4-900e-47d3-9068-bdc8c2414449" ownerguid="62098d79-e663-46ea-b4f4-4cd3df401157"> -<Form> -<AUni ws="qvm-x-ach">chirapa</AUni> -<AUni ws="qvm-x-acl">chirapa</AUni> -<AUni ws="qvm-x-akh">chirapa</AUni> -<AUni ws="qvm-x-akl">chirapa</AUni> -<AUni ws="qvm-x-ame">chirapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="ecffa310-d56f-4ef4-8ad1-b74add85cc0f" ownerguid="c32f6536-3f9f-4d6e-90fb-4b375d9d195f"> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="ecffce63-6a38-4d7c-8f93-3066c447f642" ownerguid="26118801-f6b1-45e1-98ce-63ba59372032"> -<Form> -<AUni ws="qvm-x-ach">calzoncïllu</AUni> -<AUni ws="qvm-x-acl">calzoncïllu; calzoncïllu; calzoncïllo</AUni> -<AUni ws="qvm-x-akh">calzoncïllu</AUni> -<AUni ws="qvm-x-akl">calzoncïllu; calzoncïllu; calzoncïllo</AUni> -<AUni ws="qvm-x-ame">calzoncïllu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="ecffd965-8b83-4958-93d4-327927c43313" ownerguid="3ba9b660-33eb-4ab2-81b2-1ea05bfbdd91"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">high.jungle</AUni> -<AUni ws="es">monta¤a</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="11d4dac7-0c21-4935-845f-aaacf54cd830" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ed040e5a-dff3-4620-bf6c-789bb1de931c" ownerguid="20baa5e7-4f02-4782-a292-c6281d7b5f3a"> -<ExampleWords> -<AUni ws="en">shove, hustle, bundle, manhandle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to pushing someone roughly?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ed044ccd-2252-429c-b4fe-632531dc4592" ownerguid="f5a9cc88-908b-46e5-9941-72989ed7736a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">faint</AUni> -<AUni ws="es">desmayo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a18fc16a-7e60-4c54-8a53-b6deaa16940e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="ed0639e8-45e6-49ea-8ca3-5356ae0ee128" ownerguid="1d166d63-d57a-4bd5-a5a1-9e4ff9a3c1de"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2Sa 3.22 Davidwan parlashganpita Abner yarguriptilannami Davidpa soldäduncunawan Joab chayargan guërracho guechumushgancunata uytila guepin aprishga.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="ed07be41-2ee3-4411-a5de-ff45da632441" ownerguid="fa71ac96-3ee7-421a-9cb9-98ab936fb18d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">corral</AUni> -<AUni ws="es">cerco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="64ab8980-52df-4b71-b4f7-e1e13356c8a3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ed090485-1fae-44c3-97d7-8973101a206a" ownerguid="d2c60050-78fc-44f0-bb3b-0da859df0a03"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="ed09e2cc-75fe-42fb-974e-c2e4a0c3be56" ownerguid="0381bed7-c181-4cca-8c00-7c5b9b9fb3ae"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ed102c60-ed6d-498f-b2c4-a195d53a84e2" ownerguid="340a633c-324e-43af-a843-c6032a28d697"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.go</AUni> -<AUni ws="es">ir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9b08bdca-0352-4215-a76a-02b2625fcc87" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ed1213f9-d75c-4dd6-808c-de1b1bf1cbb3" ownerguid="53d34f16-2f94-4afa-9530-7ac75e05b8d4"> -<ExampleWords> -<AUni ws="en">flatter, ingratiate, adulate, blandish, cajole</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to flattering someone?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ed13ae66-a32e-436c-836e-6cfa5b19f6dc" ownerguid="77f9a83b-8317-4bdd-8578-a21c75214278"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">orphan</AUni> -<AUni ws="es">huérfano</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d68c825c-c5fc-4d13-996f-44fd8fd827ba" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ed193ed9-8f1a-422c-b137-6a993ad840bd" ownerguid="55201761-fe2e-40d5-a2a7-8079e00a2c32"> -<ExampleWords> -<AUni ws="en">stalemate, standoff</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a fight that neither side can win?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ed1a42c5-9d0b-49a6-8bca-8b89af5731be" ownerguid="b844d2f8-d3ef-4605-b038-8bc0a2cff0af"> -<ExampleWords> -<AUni ws="en">soaring, towering</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is very tall?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ed1b39ef-b38d-4862-8803-20c2aa78ec1e" ownerguid="902ae190-e3c0-4d02-ba71-2045aadeb331"> -<Form> -<AUni ws="qvm-x-ach">capchu</AUni> -<AUni ws="qvm-x-acl">capchu; capcho</AUni> -<AUni ws="qvm-x-akh">kapchu</AUni> -<AUni ws="qvm-x-akl">kapchu; kapcho</AUni> -<AUni ws="qvm-x-ame">kapchu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ed1e68d1-c3eb-43df-87d3-77d7e01b4065" ownerguid="c0d903bf-6502-45dd-9dd8-cff7f022c696"> -<ExampleWords> -<AUni ws="en">miscalculate, miscount, lose count</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making a mistake when you count?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ed1eec03-c3fe-48fb-b245-10fc29872a59" ownerguid="07476166-c5e5-4701-97d3-d97de8b5be6f"> -<ExampleWords> -<AUni ws="en">know, understand, have information</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to knowing something?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="ed2113c8-1784-4808-ab1a-fd269f86fa99" ownerguid="2b893d04-3450-4862-b046-7df6f87272f6"> -<Abbreviation> -<AUni ws="en">6.8.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to accounting--to keep records of money.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>57T Keep Records</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Accounting</AUni> -</Name> -<OcmCodes> -<Uni>451 Accounting</Uni> -</OcmCodes> -<Questions> -<objsur guid="6c587661-4923-4cdc-807d-1516a8557a9d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="ed21ddba-be9e-45f5-914b-27d46ee0e2a7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">vocal</AUni> -<AUni ws="qvm-x-acl">vocal</AUni> -<AUni ws="qvm-x-akh">vocal</AUni> -<AUni ws="qvm-x-akl">vocal</AUni> -<AUni ws="qvm-x-ame">vocal</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vocal</AUni> -<AUni ws="qvm-x-acl">+vocal</AUni> -<AUni ws="qvm-x-akh">+vocal</AUni> -<AUni ws="qvm-x-akl">+vocal</AUni> -<AUni ws="qvm-x-ame">+vocal</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.414" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4732a488-8948-46b2-acad-c2f88c394153" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vocal</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="97d88a1b-8834-4df0-a69e-c0457ad7f2a0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d1e0e11d-1844-4650-979c-089e24159435" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vocal 
\entryTyp root 
\gENG 
\gSPN vocal 
\e +vocal 
\c N0 
\mp +FinalC 
\ach vocal 
\akh vocal 
\acl vocal 
\akl vocal 
\ame vocal</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ed238399-cf2a-4342-8b03-cbbdc9137c7a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">musca</AUni> -<AUni ws="qvm-x-acl">musca</AUni> -<AUni ws="qvm-x-akh">muska</AUni> -<AUni ws="qvm-x-akl">muska</AUni> -<AUni ws="qvm-x-ame">muska</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*muska</AUni> -<AUni ws="qvm-x-acl">*muska</AUni> -<AUni ws="qvm-x-akh">*muska</AUni> -<AUni ws="qvm-x-akl">*muska</AUni> -<AUni ws="qvm-x-ame">*muska</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.517" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="88a6cd62-774d-4648-b3fb-eb2d57dd18dc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*muska</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="23105142-5e16-4e92-8a57-a99a21696fec" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bf62d4e6-41a0-4bb0-a452-fe85f2c31116" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *muska 
\entryTyp root 
\gENG 
\gSPN ? 
\e *muska 
\c N0 
\ach musca 
\akh muska 
\acl musca 
\akl muska 
\ame muska</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ed269fb7-fd3c-467a-907e-d485731d9068"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">funccioneru; funccionero</AUni> -<AUni ws="qvm-x-acl">funccioneru; funccioneru; funccionero</AUni> -<AUni ws="qvm-x-akh">funccioneru; funccionero</AUni> -<AUni ws="qvm-x-akl">funccioneru; funccioneru; funccionero</AUni> -<AUni ws="qvm-x-ame">funccioneru; funccionero</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+funcionario</AUni> -<AUni ws="qvm-x-acl">+funcionario</AUni> -<AUni ws="qvm-x-akh">+funcionario</AUni> -<AUni ws="qvm-x-akl">+funcionario</AUni> -<AUni ws="qvm-x-ame">+funcionario</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.589" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="193ad8a1-bbf8-4ddc-8cf3-ab7a6278ed09" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+funcionario</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="162003e9-aa58-40a6-83eb-5657220f82d4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="374683e3-8955-42ab-98a1-2125ed1882bb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +funcionario 
\entryTyp root 
\gENG host 
\gSPN funccionero 
\e +funcionario 
\c N0 
\ach funccioneru / ~_# 
\ach funccionero / _# 
\akh funccioneru / ~_# 
\akh funccionero / _# 
\acl funccioneru / ~_# 
\acl funccioneru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl funccionero +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl funccioneru / ~_# 
\akl funccioneru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl funccionero +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame funccioneru / ~_# 
\ame funccionero / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ed27d037-cec5-4a3a-9aef-08d9ed59f16a" ownerguid="744d1402-05f5-4491-9c15-a5af03595edb"> -<ExampleWords> -<AUni ws="en">monster, pervert</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to someone who is very bad?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ed28b419-7c75-4574-9cf3-d7cf423ef35b" ownerguid="99ee1558-34b2-4a1b-bfd2-eb4ccbfe7728"> -<ExampleWords> -<AUni ws="en">integrity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the quality of being reliable?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ed29e7ab-79c9-44da-ba36-c906998ec471" ownerguid="27a7baa4-5df5-4f24-b958-9f45303f4cd8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ed2a5384-dbd3-4595-a62f-8139ae05daab" ownerguid="dc177f3c-d0fd-4232-adf1-a77b339cdbb2"> -<ExampleWords> -<AUni ws="en">monument, megalith, mound, obelisk, ziggurat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(17) What kinds of buildings are made to remind people of something or someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ed2ce96f-e1b7-4a40-aad0-84405f0cebe7" ownerguid="c00f899a-5989-4e41-a8c1-2385ec8e5851"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="ed2e2203-73f6-4ce9-8546-3ca2104dbc5b" ownerguid="fc749e89-9938-4e14-951c-31a922a7a572"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ed300049-c986-4008-99a8-93ba81637700" ownerguid="906743a7-bf46-485d-9915-0d474a4de46e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="6f650151-4342-4b3b-90a9-464b6af1131f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ed35a22b-29ca-41f0-88bb-87833b8484b6" ownerguid="64e41545-3a0a-4524-a8d4-8e5e0f0e2391"> -<ExampleWords> -<AUni ws="en">come on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a light starting to work?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ed3c007d-72e3-4a0d-88be-a2205f510b17" ownerguid="f9d020d6-b129-4bb8-9509-3b4a6c27482e"> -<ExampleWords> -<AUni ws="en">get interested, become interested, get into</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to becoming more interested in something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ed4298a7-e36c-419b-bcd1-ce9c11e011ae" ownerguid="6fe11b6a-8d01-4a0b-bdeb-e4e6f420340a"> -<ExampleWords> -<AUni ws="en">personality, manner, character</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to a person's personality?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ed44ce21-7322-46d2-97dc-2d698b496681" ownerguid="e70966e8-1b07-4370-bf66-3d32468305c0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">whip</AUni> -<AUni ws="es">car.látigo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="87bfbe47-2a25-4617-a26b-95682d9a7288" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ed49d819-de27-41bd-8652-6cc1dd701e9c" ownerguid="aec8c246-0ef7-414a-94a6-b9fdd6812a7c"> -<ExampleWords> -<AUni ws="en">peer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a person belonging to the same class as you?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="ed4a2ca6-c03c-4c72-9431-b72fb7294b8f" ownerguid="ffcc57f8-6c6d-4bf4-85be-9220ca7c739d"> -<Abbreviation> -<AUni ws="en">2.6.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.63" /> -<DateModified val="2022-9-23 16:55:8.63" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the wedding ceremony.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Wedding</AUni> -</Name> -<OcmCodes> -<Uni>585 Nuptials</Uni> -</OcmCodes> -<Questions> -<objsur guid="123bd458-84f8-4748-a6db-b9bdc17331d7" t="o" /> -<objsur guid="680617e9-b3f3-4ccd-9f0e-89d13686f4bb" t="o" /> -<objsur guid="a53da84f-5430-4cbb-96f9-a62e334f281d" t="o" /> -<objsur guid="a50fd996-1695-46f8-9daf-578be385ba8c" t="o" /> -<objsur guid="b2b22db9-fec8-4986-bf35-88f9f8d668ea" t="o" /> -<objsur guid="4d9ea94b-52c8-43f1-8c8b-f50993f82aeb" t="o" /> -<objsur guid="68cdedb4-8153-40a2-9e5d-c2d3e2d1be97" t="o" /> -<objsur guid="cb157188-fe41-4b5c-bc0d-df6be2b3a6e0" t="o" /> -<objsur guid="f81172fc-53ff-44bf-85f7-6ef469b1708b" t="o" /> -<objsur guid="edc91cb2-31c6-49df-9d50-7a957c20c003" t="o" /> -<objsur guid="b272cfe4-e8d9-48d1-a823-d319691d82e3" t="o" /> -<objsur guid="d1d93ff9-d61d-4a8d-9845-1b7fe943e6dc" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="ed4c3722-4021-4d93-8366-c2b186904243" ownerguid="8f098359-ae2f-4935-8558-4911baa64932"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ed4ca532-affa-46ea-98e7-c5cd7a545846" ownerguid="0aae1951-4d5b-45a0-853c-1839764c9862"> -<ExampleWords> -<AUni ws="en">shrink</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to becoming short?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ed52f7ab-7ca5-4a14-a4b3-13141065b41d" ownerguid="aecf2aad-b7a4-444f-9b13-64bc534126d2"> -<ExampleWords> -<AUni ws="en">bad, no good, lousy, unpleasant, cheap, severe, terrible, abject, mean, low, base, infamous, ignoble, irregular</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is bad in quality?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ed558093-8e3e-4d7b-8451-4130fc21da16" ownerguid="a202382c-5965-4ebf-aa6f-dabc11f01599"> -<Form> -<AUni ws="qvm-x-ach">tïna</AUni> -<AUni ws="qvm-x-acl">tïna</AUni> -<AUni ws="qvm-x-akh">tïna</AUni> -<AUni ws="qvm-x-akl">tïna</AUni> -<AUni ws="qvm-x-ame">tïna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="ed5f696c-960d-4675-b476-b847310836a5" ownerguid="25a4ea55-4f95-4595-842c-6e4b093ce1c3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stadium</AUni> -<AUni ws="es">estadio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="44b6a572-4c4b-46ba-9c2d-29436f49b55c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="ed607611-3453-4cac-974d-d0a80d9892a6" ownerguid="e93daac7-6c45-41e3-b69d-4a1ac5cdf95a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fall</AUni> -<AUni ws="es">caer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1ae86248-1f04-4ffc-8c72-cc4225cf4004" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="ed616c83-7e84-417f-9fae-85ecda72faf0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">atug</AUni> -<AUni ws="qvm-x-acl">atog</AUni> -<AUni ws="qvm-x-akh">atuq</AUni> -<AUni ws="qvm-x-akl">atoq</AUni> -<AUni ws="qvm-x-ame">atuq</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*atuq</AUni> -<AUni ws="qvm-x-acl">*atuq</AUni> -<AUni ws="qvm-x-akh">*atuq</AUni> -<AUni ws="qvm-x-akl">*atuq</AUni> -<AUni ws="qvm-x-ame">*atuq</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.868" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="63b79f0d-17b8-49be-b703-6b434606139b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*atuq</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4f38f5cc-d3e6-4773-8eda-ccc831a14c8d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5adcc189-594b-4165-8965-0ddcf9408484" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *atuq 
\entryTyp root 
\gENG andean fox 
\gSPN zorro andino 
\e *atuq 
\c N0 
\mp +FinalC 
\ach atug 
\akh atuq 
\acl atog 
\akl atoq 
\ame atuq</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ed618d7f-5959-49fb-96c1-6457cef4a166" ownerguid="5771f3a1-fda3-4111-9abc-7a0d76c60a79"> -<ExampleWords> -<AUni ws="en">Saxons, Scots, Welsh, Picts, Irish, Normans, Vikings, Brits, Americans, Aussies, Kiwis, Sioux, Cherokee</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the proper names of the neighboring tribes?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ed634c8c-6c4b-45f9-a8bb-ecd84aaf95de" ownerguid="ac4b7b10-975d-4504-8cad-8c3b1b593e09"> -<Form> -<AUni ws="qvm-x-ach">manual</AUni> -<AUni ws="qvm-x-acl">manual</AUni> -<AUni ws="qvm-x-akh">manual</AUni> -<AUni ws="qvm-x-akl">manual</AUni> -<AUni ws="qvm-x-ame">manual</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="ed63513d-e815-439d-be53-b0798ef2f888" ownerguid="e6e956f1-7d3c-4e11-9ff5-f5703a052e88"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ed635bd3-5cea-4936-9683-57da9e709440" ownerguid="738a09a5-59df-40f9-8a4e-176e00d03bbf"> -<ExampleWords> -<AUni ws="en">spear, dart, javelin, pike</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What types of spears are there?</AUni> -</Question> -</rt> -<rt class="CmPossibilityList" guid="ed6b2dcc-e82f-4631-b61a-6b630de332d0" ownerguid="af26d792-ea5e-11de-8f7e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">ExtNoteTyp</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:6.269" /> -<DateModified val="2018-8-2 16:32:6.269" /> -<Depth val="1" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="True" /> -<IsVernacular val="False" /> -<ItemClsid val="7" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Extended Note Types</AUni> -</Name> -<Possibilities> -<objsur guid="2f06d436-b1e0-47ae-a42e-1f7b893c5fc2" t="o" /> -<objsur guid="7ad06e7d-15d1-42b0-ae19-9c05b7c0b181" t="o" /> -<objsur guid="d3d28628-60c9-4917-8185-ba64c59f20c3" t="o" /> -<objsur guid="30115b33-608a-4506-9f9c-2457cab4f4a8" t="o" /> -<objsur guid="5dd29371-fdb0-497a-a2fb-7ca69b00ad4f" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="True" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="CmPossibility" guid="2f06d436-b1e0-47ae-a42e-1f7b893c5fc2" ownerguid="ed6b2dcc-e82f-4631-b61a-6b630de332d0"> -<Abbreviation> -<AUni ws="en">Coll.</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Collocation</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="7ad06e7d-15d1-42b0-ae19-9c05b7c0b181" ownerguid="ed6b2dcc-e82f-4631-b61a-6b630de332d0"> -<Abbreviation> -<AUni ws="en">Cult.</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Cultural</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="d3d28628-60c9-4917-8185-ba64c59f20c3" ownerguid="ed6b2dcc-e82f-4631-b61a-6b630de332d0"> -<Abbreviation> -<AUni ws="en">Disc.</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Discourse</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="30115b33-608a-4506-9f9c-2457cab4f4a8" ownerguid="ed6b2dcc-e82f-4631-b61a-6b630de332d0"> -<Abbreviation> -<AUni ws="en">Gram.</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Grammar</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="5dd29371-fdb0-497a-a2fb-7ca69b00ad4f" ownerguid="ed6b2dcc-e82f-4631-b61a-6b630de332d0"> -<Abbreviation> -<AUni ws="en">Sem.</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Semantic</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibilityList" guid="af542404-ea5e-11de-8bde-0013722f8dec" ownerguid="af26d792-ea5e-11de-8f7e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Use</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:6.267" /> -<DateModified val="2018-8-2 16:32:6.267" /> -<Depth val="127" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="True" /> -<IsVernacular val="False" /> -<ItemClsid val="7" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Usages</AUni> -</Name> -<Possibilities> -<objsur guid="af600fb2-ea5e-11de-82b5-0013722f8dec" t="o" /> -<objsur guid="af699910-ea5e-11de-8d20-0013722f8dec" t="o" /> -<objsur guid="af7584c8-ea5e-11de-82a4-0013722f8dec" t="o" /> -<objsur guid="af817076-ea5e-11de-9a46-0013722f8dec" t="o" /> -<objsur guid="af8af9d4-ea5e-11de-932a-0013722f8dec" t="o" /> -<objsur guid="af96e582-ea5e-11de-910f-0013722f8dec" t="o" /> -<objsur guid="afa2d13a-ea5e-11de-94da-0013722f8dec" t="o" /> -<objsur guid="afaebce8-ea5e-11de-97b5-0013722f8dec" t="o" /> -<objsur guid="afb84646-ea5e-11de-94e6-0013722f8dec" t="o" /> -<objsur guid="afc431fe-ea5e-11de-8921-0013722f8dec" t="o" /> -<objsur guid="afd01dac-ea5e-11de-9787-0013722f8dec" t="o" /> -<objsur guid="b006f37c-ea5e-11de-8cd8-0013722f8dec" t="o" /> -<objsur guid="b06b15c8-ea5e-11de-8d8b-0013722f8dec" t="o" /> -<objsur guid="b0770176-ea5e-11de-88f6-0013722f8dec" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="CmPossibility" guid="af600fb2-ea5e-11de-82b5-0013722f8dec" ownerguid="af542404-ea5e-11de-8bde-0013722f8dec"> -<Abbreviation> -<AUni ws="en">arch</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">archaic</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoMorphType" guid="af6537b0-7175-4387-ba6a-36547d37fb13" ownerguid="d7f713d8-e8cf-11d3-9764-00c04f186933"> -<Abbreviation> -<AUni ws="en">pfxnfx</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-10-19 18:54:52.795" /> -<Description> -<AStr ws="en"> -<Run ws="en">A prefixing interfix is a prefix that can occur between two roots or stems.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">prefixing interfix</AUni> -</Name> -<SecondaryOrder val="0" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="af699910-ea5e-11de-8d20-0013722f8dec" ownerguid="af542404-ea5e-11de-8bde-0013722f8dec"> -<Abbreviation> -<AUni ws="en">col</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">colloquial</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="af7584c8-ea5e-11de-82a4-0013722f8dec" ownerguid="af542404-ea5e-11de-8bde-0013722f8dec"> -<Abbreviation> -<AUni ws="en">form</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">formal</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="af817076-ea5e-11de-9a46-0013722f8dec" ownerguid="af542404-ea5e-11de-8bde-0013722f8dec"> -<Abbreviation> -<AUni ws="en">hist</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">historical</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="af8af9d4-ea5e-11de-932a-0013722f8dec" ownerguid="af542404-ea5e-11de-8bde-0013722f8dec"> -<Abbreviation> -<AUni ws="en">hon</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">honorific</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="af96e582-ea5e-11de-910f-0013722f8dec" ownerguid="af542404-ea5e-11de-8bde-0013722f8dec"> -<Abbreviation> -<AUni ws="en">inform</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">informal</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="afa2d13a-ea5e-11de-94da-0013722f8dec" ownerguid="af542404-ea5e-11de-8bde-0013722f8dec"> -<Abbreviation> -<AUni ws="en">non std</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">non-standard</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="afaebce8-ea5e-11de-97b5-0013722f8dec" ownerguid="af542404-ea5e-11de-8bde-0013722f8dec"> -<Abbreviation> -<AUni ws="en">obso</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">obsolete</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="afb84646-ea5e-11de-94e6-0013722f8dec" ownerguid="af542404-ea5e-11de-8bde-0013722f8dec"> -<Abbreviation> -<AUni ws="en">oldfash</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">old-fashioned</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="afc431fe-ea5e-11de-8921-0013722f8dec" ownerguid="af542404-ea5e-11de-8bde-0013722f8dec"> -<Abbreviation> -<AUni ws="en">rare</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">rare</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="afd01dac-ea5e-11de-9787-0013722f8dec" ownerguid="af542404-ea5e-11de-8bde-0013722f8dec"> -<Abbreviation> -<AUni ws="en">reg</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">register</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="afd9a70a-ea5e-11de-9e37-0013722f8dec" t="o" /> -<objsur guid="afe592c2-ea5e-11de-9d77-0013722f8dec" t="o" /> -<objsur guid="aff17e70-ea5e-11de-94be-0013722f8dec" t="o" /> -<objsur guid="affb07ce-ea5e-11de-997d-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="afd9a70a-ea5e-11de-9e37-0013722f8dec" ownerguid="afd01dac-ea5e-11de-9787-0013722f8dec"> -<Abbreviation> -<AUni ws="en">bas reg</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">basic</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="afe592c2-ea5e-11de-9d77-0013722f8dec" ownerguid="afd01dac-ea5e-11de-9787-0013722f8dec"> -<Abbreviation> -<AUni ws="en">hi reg</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">high</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="aff17e70-ea5e-11de-94be-0013722f8dec" ownerguid="afd01dac-ea5e-11de-9787-0013722f8dec"> -<Abbreviation> -<AUni ws="en">low reg</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">low</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="affb07ce-ea5e-11de-997d-0013722f8dec" ownerguid="afd01dac-ea5e-11de-9787-0013722f8dec"> -<Abbreviation> -<AUni ws="en">mid reg</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">mid</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b006f37c-ea5e-11de-8cd8-0013722f8dec" ownerguid="af542404-ea5e-11de-8bde-0013722f8dec"> -<Abbreviation> -<AUni ws="en">rest</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">restrictive</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b012df34-ea5e-11de-833e-0013722f8dec" t="o" /> -<objsur guid="b01c6892-ea5e-11de-9e52-0013722f8dec" t="o" /> -<objsur guid="b049b504-ea5e-11de-9bb7-0013722f8dec" t="o" /> -<objsur guid="b055a0b2-ea5e-11de-9b16-0013722f8dec" t="o" /> -<objsur guid="b05f2a10-ea5e-11de-8593-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b012df34-ea5e-11de-833e-0013722f8dec" ownerguid="b006f37c-ea5e-11de-8cd8-0013722f8dec"> -<Abbreviation> -<AUni ws="en">anml</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">animal</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b01c6892-ea5e-11de-9e52-0013722f8dec" ownerguid="b006f37c-ea5e-11de-8cd8-0013722f8dec"> -<Abbreviation> -<AUni ws="en">hum</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">human</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b0285440-ea5e-11de-894b-0013722f8dec" t="o" /> -<objsur guid="b0343ff8-ea5e-11de-9132-0013722f8dec" t="o" /> -<objsur guid="b03dc94c-ea5e-11de-87b4-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b0285440-ea5e-11de-894b-0013722f8dec" ownerguid="b01c6892-ea5e-11de-9e52-0013722f8dec"> -<Abbreviation> -<AUni ws="en">f</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">female</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b0343ff8-ea5e-11de-9132-0013722f8dec" ownerguid="b01c6892-ea5e-11de-9e52-0013722f8dec"> -<Abbreviation> -<AUni ws="en">m</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">male</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b03dc94c-ea5e-11de-87b4-0013722f8dec" ownerguid="b01c6892-ea5e-11de-9e52-0013722f8dec"> -<Abbreviation> -<AUni ws="en">sib</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">same sex sibling</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b049b504-ea5e-11de-9bb7-0013722f8dec" ownerguid="b006f37c-ea5e-11de-8cd8-0013722f8dec"> -<Abbreviation> -<AUni ws="en">obsc</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">obscene</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b055a0b2-ea5e-11de-9b16-0013722f8dec" ownerguid="b006f37c-ea5e-11de-8cd8-0013722f8dec"> -<Abbreviation> -<AUni ws="en">off</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">offensive</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b05f2a10-ea5e-11de-8593-0013722f8dec" ownerguid="b006f37c-ea5e-11de-8cd8-0013722f8dec"> -<Abbreviation> -<AUni ws="en">tab</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">taboo</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b06b15c8-ea5e-11de-8d8b-0013722f8dec" ownerguid="af542404-ea5e-11de-8bde-0013722f8dec"> -<Abbreviation> -<AUni ws="en">slg</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">slang</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b0770176-ea5e-11de-88f6-0013722f8dec" ownerguid="af542404-ea5e-11de-8bde-0013722f8dec"> -<Abbreviation> -<AUni ws="en">trad</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">traditional</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b098623a-ea5e-11de-8126-0013722f8dec" ownerguid="d86632ba-ea5e-11de-8a58-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Tent</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Tentative</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibilityList" guid="b0a1eb98-ea5e-11de-888e-0013722f8dec" ownerguid="af26d792-ea5e-11de-8f7e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">AcDom</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:6.267" /> -<DateModified val="2018-8-2 16:32:6.267" /> -<Depth val="127" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="True" /> -<IsVernacular val="False" /> -<ItemClsid val="7" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Academic Domains</AUni> -</Name> -<Possibilities> -<objsur guid="b0add746-ea5e-11de-8c5c-0013722f8dec" t="o" /> -<objsur guid="b0b9c2fe-ea5e-11de-8fed-0013722f8dec" t="o" /> -<objsur guid="b0db23c2-ea5e-11de-9597-0013722f8dec" t="o" /> -<objsur guid="b0e70f70-ea5e-11de-9907-0013722f8dec" t="o" /> -<objsur guid="b0f098ce-ea5e-11de-84f4-0013722f8dec" t="o" /> -<objsur guid="b0fc847c-ea5e-11de-85e8-0013722f8dec" t="o" /> -<objsur guid="b1087034-ea5e-11de-940d-0013722f8dec" t="o" /> -<objsur guid="b111f992-ea5e-11de-98c0-0013722f8dec" t="o" /> -<objsur guid="b11de540-ea5e-11de-885c-0013722f8dec" t="o" /> -<objsur guid="b21f61f8-ea5e-11de-907d-0013722f8dec" t="o" /> -<objsur guid="b234d704-ea5e-11de-9211-0013722f8dec" t="o" /> -<objsur guid="b2622376-ea5e-11de-8274-0013722f8dec" t="o" /> -<objsur guid="b26bacd4-ea5e-11de-8beb-0013722f8dec" t="o" /> -<objsur guid="b277988c-ea5e-11de-957d-0013722f8dec" t="o" /> -<objsur guid="b283843a-ea5e-11de-9232-0013722f8dec" t="o" /> -<objsur guid="b28d0d98-ea5e-11de-8bcb-0013722f8dec" t="o" /> -<objsur guid="b298f950-ea5e-11de-8179-0013722f8dec" t="o" /> -<objsur guid="b2a4e4fe-ea5e-11de-96a2-0013722f8dec" t="o" /> -<objsur guid="b2b0d0b6-ea5e-11de-8b58-0013722f8dec" t="o" /> -<objsur guid="b2c645c2-ea5e-11de-8a97-0013722f8dec" t="o" /> -<objsur guid="b2fd1b92-ea5e-11de-8fa9-0013722f8dec" t="o" /> -<objsur guid="b3090740-ea5e-11de-901c-0013722f8dec" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="CmPossibility" guid="b0add746-ea5e-11de-8c5c-0013722f8dec" ownerguid="b0a1eb98-ea5e-11de-888e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Anat</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">anatomy</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b0b9c2fe-ea5e-11de-8fed-0013722f8dec" ownerguid="b0a1eb98-ea5e-11de-888e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Anthro</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">anthropology</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b0c5aeac-ea5e-11de-9463-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b0c5aeac-ea5e-11de-9463-0013722f8dec" ownerguid="b0b9c2fe-ea5e-11de-8fed-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Cult anthro</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">cultural anthropology</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b0cf380a-ea5e-11de-898a-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b0cf380a-ea5e-11de-898a-0013722f8dec" ownerguid="b0c5aeac-ea5e-11de-9463-0013722f8dec"> -<Abbreviation> -<AUni ws="en">crclt adapt</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">cross cultural adaptation</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b0db23c2-ea5e-11de-9597-0013722f8dec" ownerguid="b0a1eb98-ea5e-11de-888e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Artintel</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">artificial intelligence</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b0e70f70-ea5e-11de-9907-0013722f8dec" ownerguid="b0a1eb98-ea5e-11de-888e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Comp sci</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">computer science</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b0f098ce-ea5e-11de-84f4-0013722f8dec" ownerguid="b0a1eb98-ea5e-11de-888e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Ed</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">education</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b0fc847c-ea5e-11de-85e8-0013722f8dec" ownerguid="b0a1eb98-ea5e-11de-888e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Graph</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">graphology</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b1087034-ea5e-11de-940d-0013722f8dec" ownerguid="b0a1eb98-ea5e-11de-888e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">lang lrn</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">language learning</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b111f992-ea5e-11de-98c0-0013722f8dec" ownerguid="b0a1eb98-ea5e-11de-888e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Leg</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">legal</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b11de540-ea5e-11de-885c-0013722f8dec" ownerguid="b0a1eb98-ea5e-11de-888e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Ling</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">linguistics</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b129d0f8-ea5e-11de-89f6-0013722f8dec" t="o" /> -<objsur guid="b1335a56-ea5e-11de-89ea-0013722f8dec" t="o" /> -<objsur guid="b13f4604-ea5e-11de-8579-0013722f8dec" t="o" /> -<objsur guid="b16c9276-ea5e-11de-9805-0013722f8dec" t="o" /> -<objsur guid="b1787e2e-ea5e-11de-89d9-0013722f8dec" t="o" /> -<objsur guid="b182078c-ea5e-11de-990d-0013722f8dec" t="o" /> -<objsur guid="b18df33a-ea5e-11de-94f0-0013722f8dec" t="o" /> -<objsur guid="b1af53fe-ea5e-11de-8ec4-0013722f8dec" t="o" /> -<objsur guid="b1fe0134-ea5e-11de-8756-0013722f8dec" t="o" /> -<objsur guid="b2078a92-ea5e-11de-9a1a-0013722f8dec" t="o" /> -<objsur guid="b2137640-ea5e-11de-8742-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b129d0f8-ea5e-11de-89f6-0013722f8dec" ownerguid="b11de540-ea5e-11de-885c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">App ling</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">applied linguistics</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b1335a56-ea5e-11de-89ea-0013722f8dec" ownerguid="b11de540-ea5e-11de-885c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Comp ling</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">comparative linguistics</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b13f4604-ea5e-11de-8579-0013722f8dec" ownerguid="b11de540-ea5e-11de-885c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Gramm</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">grammar</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b14b31bc-ea5e-11de-8e9e-0013722f8dec" t="o" /> -<objsur guid="b154bb10-ea5e-11de-8787-0013722f8dec" t="o" /> -<objsur guid="b160a6c8-ea5e-11de-96ff-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b14b31bc-ea5e-11de-8e9e-0013722f8dec" ownerguid="b13f4604-ea5e-11de-8579-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Disc</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">discourse</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b154bb10-ea5e-11de-8787-0013722f8dec" ownerguid="b13f4604-ea5e-11de-8579-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Morph</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">morphology</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b160a6c8-ea5e-11de-96ff-0013722f8dec" ownerguid="b13f4604-ea5e-11de-8579-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Synt</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">syntax</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b16c9276-ea5e-11de-9805-0013722f8dec" ownerguid="b11de540-ea5e-11de-885c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Hist ling</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">historical linguistics</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b1787e2e-ea5e-11de-89d9-0013722f8dec" ownerguid="b11de540-ea5e-11de-885c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Lexicog</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">lexicography</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b182078c-ea5e-11de-990d-0013722f8dec" ownerguid="b11de540-ea5e-11de-885c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Lexicol</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">lexicology</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b18df33a-ea5e-11de-94f0-0013722f8dec" ownerguid="b11de540-ea5e-11de-885c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Phon</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">phonetics</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b199def2-ea5e-11de-8f70-0013722f8dec" t="o" /> -<objsur guid="b1a36846-ea5e-11de-9137-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b199def2-ea5e-11de-8f70-0013722f8dec" ownerguid="b18df33a-ea5e-11de-94f0-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Acous phon</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">acoustic phonetics</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b1a36846-ea5e-11de-9137-0013722f8dec" ownerguid="b18df33a-ea5e-11de-94f0-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Art phon</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">articulatory phonetics</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b1af53fe-ea5e-11de-8ec4-0013722f8dec" ownerguid="b11de540-ea5e-11de-885c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Phono</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">phonology</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b1bb3fac-ea5e-11de-81e4-0013722f8dec" t="o" /> -<objsur guid="b1c4c90a-ea5e-11de-902c-0013722f8dec" t="o" /> -<objsur guid="b1d0b4c2-ea5e-11de-862b-0013722f8dec" t="o" /> -<objsur guid="b1dca070-ea5e-11de-8613-0013722f8dec" t="o" /> -<objsur guid="b1e629ce-ea5e-11de-8550-0013722f8dec" t="o" /> -<objsur guid="b1f21586-ea5e-11de-8120-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b1bb3fac-ea5e-11de-81e4-0013722f8dec" ownerguid="b1af53fe-ea5e-11de-8ec4-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Autoseg phono</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">autosegmental phonology</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b1c4c90a-ea5e-11de-902c-0013722f8dec" ownerguid="b1af53fe-ea5e-11de-8ec4-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Gen phono</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">generative phonology</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b1d0b4c2-ea5e-11de-862b-0013722f8dec" ownerguid="b1af53fe-ea5e-11de-8ec4-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Lex phono</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">lexical phonology</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b1dca070-ea5e-11de-8613-0013722f8dec" ownerguid="b1af53fe-ea5e-11de-8ec4-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Met phono</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">metrical phonology</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b1e629ce-ea5e-11de-8550-0013722f8dec" ownerguid="b1af53fe-ea5e-11de-8ec4-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Non-lin phono</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">non-linear phonology</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b1f21586-ea5e-11de-8120-0013722f8dec" ownerguid="b1af53fe-ea5e-11de-8ec4-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Phonm</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">phonemics</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b1fe0134-ea5e-11de-8756-0013722f8dec" ownerguid="b11de540-ea5e-11de-885c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Prag</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">pragmatics</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b2078a92-ea5e-11de-9a1a-0013722f8dec" ownerguid="b11de540-ea5e-11de-885c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Sem</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">semantics</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b2137640-ea5e-11de-8742-0013722f8dec" ownerguid="b11de540-ea5e-11de-885c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Semiot</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">semiotics</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b21f61f8-ea5e-11de-907d-0013722f8dec" ownerguid="b0a1eb98-ea5e-11de-888e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Lit</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">literacy</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b228eb56-ea5e-11de-9e54-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntryType" guid="b2276dec-b1a6-4d82-b121-fd114c009c59" ownerguid="1ee09905-63dd-4c7a-a9bd-1d496743ccd6"> -<Abbreviation> -<AUni ws="en">id.</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">A multi-word expression that is recognized as a semantic unit.</Run> -</AStr> -</Description> -<Discussion> -<objsur guid="b4d2c886-ea5e-11de-9720-0013722f8dec" t="o" /> -</Discussion> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Idiom</AUni> -</Name> -<ReverseAbbr> -<AUni ws="en">id. of</AUni> -</ReverseAbbr> -<ReverseName> -<AUni ws="en">Idiom of</AUni> -</ReverseName> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="ed6e332d-89cd-40ec-be56-2e0d6e61bb22" ownerguid="0a39c484-07ea-454b-9cfa-511197ca8380"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="ed6ec499-23ce-456b-bf15-d3bcd4ef9b4f" ownerguid="16835a46-c7fb-4cbf-9a93-3b5488e0d42a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">nga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">nga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">nqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">nqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="5dcad267-89ba-4258-b423-e84c57ba90ed" t="r" /> -</Morph> -<Msa> -<objsur guid="cdacd2fc-4611-457d-b88f-3c9c8bb345b9" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="ed6efe5f-8b62-419d-a01f-ffb8bf4ceb06"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aproba</AUni> -<AUni ws="qvm-x-acl">aproba</AUni> -<AUni ws="qvm-x-akh">aproba</AUni> -<AUni ws="qvm-x-akl">aproba</AUni> -<AUni ws="qvm-x-ame">aproba</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+aprobar</AUni> -<AUni ws="qvm-x-acl">+aprobar</AUni> -<AUni ws="qvm-x-akh">+aprobar</AUni> -<AUni ws="qvm-x-akl">+aprobar</AUni> -<AUni ws="qvm-x-ame">+aprobar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.810" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c961c673-5541-4838-ac08-784562eacd89" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+aprobar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4d978dd9-f495-4571-80cc-a142b61cc06a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d17a3958-c7b9-4388-a63e-699319706a85" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +aprobar 
\entryTyp root 
\gENG approve 
\gSPN aprobar 
\e +aprobar 
\c V2 
\ach aproba 
\akh aproba 
\acl aproba 
\akl aproba 
\ame aproba</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="ed743f9d-97cd-4e6c-80dc-f5c1de2d836f" ownerguid="0f1509b1-36b3-402f-a947-c31d57738759"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="9cfc613a-248f-4ad2-bd57-93cad7f6c9ad" t="o" /> -<objsur guid="ede45d8c-33bd-4855-9f48-005b22c7b80c" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="ed75facd-0a89-4658-9f32-ec87ca8e440a" ownerguid="ce499998-ef67-40df-bdce-53ec0a1e0875"> -<Form> -<AUni ws="qvm-x-ach">tselgui</AUni> -<AUni ws="qvm-x-acl">tselgui; tselgue</AUni> -<AUni ws="qvm-x-akh">tselqi</AUni> -<AUni ws="qvm-x-akl">tselqi; tselqe</AUni> -<AUni ws="qvm-x-ame">tsilqi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="ed76c6da-f04a-47ec-9d43-af432768f6a0" ownerguid="472432d6-865c-466c-9972-bcca75f3243e"> -<Form> -<AUni ws="qvm-x-ach">ypa</AUni> -<AUni ws="qvm-x-acl">ypa</AUni> -<AUni ws="qvm-x-akh">ypa</AUni> -<AUni ws="qvm-x-akl">ypa</AUni> -<AUni ws="qvm-x-ame">ypa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ed76cebf-2a09-4d6a-bb47-ebf7be17eae6" ownerguid="0add0775-0ed0-46be-ba4a-76310e63a036"> -<ExampleWords> -<AUni ws="en">angle, slope (n), inclination, pitch, grade, gradient, steep, precipitous, gradual (rise)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to how much something is leaning or sloping?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="ed7930df-e7b4-43c9-a11a-b09521276b57" ownerguid="38bbb33a-90bf-4a2c-a0e5-4bde7e134bd9"> -<Abbreviation> -<AUni ws="en">2.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.32" /> -<DateModified val="2022-9-23 16:55:8.32" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to smelling something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>24C Smell; 79I Fragrance, Odor</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Smell</AUni> -</Name> -<Questions> -<objsur guid="13b155dc-bd4e-4538-a384-c0aa23bfecd3" t="o" /> -<objsur guid="1f447adf-66a8-4a5c-abf7-cfa371682434" t="o" /> -<objsur guid="37e72fb3-140e-441a-a0a1-9edd11dbc066" t="o" /> -<objsur guid="714c640a-fad7-4688-bac8-332133f60c4e" t="o" /> -<objsur guid="c370da05-f9ea-4e85-88ab-55ac2fbac3a3" t="o" /> -<objsur guid="862b9f6b-f1f9-4621-9168-370b29443393" t="o" /> -<objsur guid="a2269f62-e181-4fce-87e9-d6846b8d118e" t="o" /> -<objsur guid="d5e0f5e9-4f44-4704-b072-0df489e3a0bc" t="o" /> -<objsur guid="1a8bb959-7690-4ab1-bab1-da8ba5164309" t="o" /> -<objsur guid="9a06d38d-d4e0-4e84-9da0-0922b5b07671" t="o" /> -<objsur guid="7c5a076d-8f77-4585-bd0f-f2c10306e054" t="o" /> -<objsur guid="b0aba2a6-9bb1-44de-92f0-bb20ce8befe4" t="o" /> -<objsur guid="7c157f0b-c86a-43ca-aded-4dcaf01aff5e" t="o" /> -<objsur guid="26443451-b2c9-4d4d-9932-9393ae184a9d" t="o" /> -<objsur guid="35fadd19-b681-4242-a2c8-78ee933d78c5" t="o" /> -<objsur guid="3c4070a4-5950-4cfb-b3c3-d61cfec1fc20" t="o" /> -<objsur guid="89ecfa8a-83d3-4085-bd6c-3d028266f9a0" t="o" /> -<objsur guid="d491de81-3939-4285-9b98-4b774e987559" t="o" /> -<objsur guid="77c2a51b-2037-4a65-8b1a-93270261f2f6" t="o" /> -<objsur guid="29a8d1fc-7c36-4813-b53d-23e1aaf5ff92" t="o" /> -<objsur guid="3e396766-08b6-4c09-bc46-1053946f872a" t="o" /> -<objsur guid="37703c7d-1c22-48df-85c3-63b0e7cccd0f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="ed80933a-bb13-4542-ae55-ae81fbefbccd" ownerguid="aed6c1ec-abbe-47e3-a6cc-a99ecff3b825"> -<ExampleWords> -<AUni ws="en">shine (in the light), gleam, glint, glisten, glister, glitter, glow, shimmer, sparkle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something being shiny when light shines on it?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ed845aaa-5d93-4fec-a226-2371ceec3a89" ownerguid="4a8c6c2e-7a8f-4dd6-97d3-20a35d7d10e9"> -<ExampleWords> -<AUni ws="en">show respect, respectful, honor, glorify, praise, magnify, lift up, worship</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to honoring someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ed87774b-6275-4ec9-9475-aaca804a2ffc" ownerguid="e66c9cb1-376d-4b82-8763-1b5b7fcb3401"> -<Form> -<AUni ws="qvm-x-ach">banquëti; banquëti</AUni> -<AUni ws="qvm-x-acl">banquëti; banquëti; banquëte</AUni> -<AUni ws="qvm-x-akh">banquëti; banquëti</AUni> -<AUni ws="qvm-x-akl">banquëti; banquëti; banquëte</AUni> -<AUni ws="qvm-x-ame">banquëti; banquëti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ed893a72-8c15-4628-8e65-138804484782" ownerguid="8d4a5548-7a6a-48bd-b2a7-58d3fb0cf1cb"> -<Form> -<AUni ws="qvm-x-ach">sobra</AUni> -<AUni ws="qvm-x-acl">sobra</AUni> -<AUni ws="qvm-x-akh">sobra</AUni> -<AUni ws="qvm-x-akl">sobra</AUni> -<AUni ws="qvm-x-ame">sobra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="ed898eea-b9c2-4cbe-aa72-abf64b226f4e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">región; region</AUni> -<AUni ws="qvm-x-acl">región; region</AUni> -<AUni ws="qvm-x-akh">región; region</AUni> -<AUni ws="qvm-x-akl">región; region</AUni> -<AUni ws="qvm-x-ame">región; region</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+región</AUni> -<AUni ws="qvm-x-acl">+región</AUni> -<AUni ws="qvm-x-akh">+región</AUni> -<AUni ws="qvm-x-akl">+región</AUni> -<AUni ws="qvm-x-ame">+región</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.318" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f550a622-ced4-48ed-8e9c-3f73ade14cbd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+región</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ba378090-694c-4cea-a020-bf91f5670129" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="12728c3e-d736-4322-8105-59d3a401e52a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +región 
\entryTyp root 
\gENG 
\gSPN 
\e +región 
\c N0 
\mp +FinalC 
\ach región / _# 
\ach region / ~_# 
\akh región / _# 
\akh region / ~_# 
\acl región / _# 
\acl region / ~_# 
\akl región / _# 
\akl region / ~_# 
\ame región / _# 
\ame region / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="ed8e0c9a-5a44-4448-bc6b-1b766f141f5c" ownerguid="fc54a9d3-a717-47c2-a271-e57aceaf8529"> -<Form> -<AUni ws="qvm-x-ach">cuya</AUni> -<AUni ws="qvm-x-acl">cuya</AUni> -<AUni ws="qvm-x-akh">kuya</AUni> -<AUni ws="qvm-x-akl">kuya</AUni> -<AUni ws="qvm-x-ame">kuya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="ed90c7c1-d603-469c-b845-ee6941396974" ownerguid="cc8896fc-fb52-48aa-853e-8a145e0ebb6e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">have.rash</AUni> -<AUni ws="es">tnr.escaldadura</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="408ee2fe-d56b-4533-ac0e-1e45efd457b0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ed90c9b4-3309-465d-90c4-8ce1b9ab7656" ownerguid="917dd571-2df9-4c5c-b438-3785933f9c42"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="ed924ca7-df89-4a47-a80d-c6f46736b9b8" ownerguid="a97909b2-5498-436d-80c4-549e1fcfd365"> -<Form> -<AUni ws="qvm-x-ach">cadina</AUni> -<AUni ws="qvm-x-acl">cadina</AUni> -<AUni ws="qvm-x-akh">cadina</AUni> -<AUni ws="qvm-x-akl">cadina</AUni> -<AUni ws="qvm-x-ame">cadina</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ed928fd8-edf6-48bb-96b7-d60e5ad7ac23" ownerguid="c8c74ec6-3f7a-4b45-b0e9-399b97c4a800"> -<ExampleWords> -<AUni ws="en">free, freely, be at liberty to do something</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being free to do something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ed93a1cb-0747-4033-9933-4cd78badd2ae" ownerguid="268bd992-240d-4e26-a831-9a4b03ee5d1b"> -<Form> -<AUni ws="qvm-x-ach">cerröju</AUni> -<AUni ws="qvm-x-acl">cerröju; cerröju; cerröjo</AUni> -<AUni ws="qvm-x-akh">cerröju</AUni> -<AUni ws="qvm-x-akl">cerröju; cerröju; cerröjo</AUni> -<AUni ws="qvm-x-ame">cerröju</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="ed9401e1-eff1-48e2-a5f0-1d776002cdcb" ownerguid="3e4b180b-3153-498d-859a-9cca21027d26"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">train</AUni> -<AUni ws="es">entrenar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="607cd1d2-ad55-46c0-bfb4-8563f5fed94d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="ed959d96-44b5-4d1a-9b5c-5694599fa203" ownerguid="5db3e0e5-c02d-4c1d-a9c0-b6419adf76d6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">both</AUni> -<AUni ws="es">dos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4e228724-d1ea-4b5f-9796-1b3e5b946486" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="ed976bbe-4fb2-4365-b136-d2fce077a73f" ownerguid="bddc70ea-d46f-4e4b-83a1-a47bea858dd6"> -<Abbreviation> -<AUni ws="en">8.6.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the back part of something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Back</AUni> -</Name> -<Questions> -<objsur guid="dba81bfd-7662-4a9c-9d2a-f1d4b83b649a" t="o" /> -<objsur guid="8c78e1bc-e4c9-4b06-9e1a-05512c8f9f87" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="ed98a1d6-1a2b-4e64-b4f8-fe95dd08d26d" ownerguid="68ed3e51-ddc4-4cec-89ff-605259ac9fcf"> -<ExampleWords> -<AUni ws="en">pointed, flat, turned-up, snub-nosed, stubby, wide, long, upturned, hooked, aquiline</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a person's nose?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ed9b5ebe-45da-46a2-8e80-f61044825747" ownerguid="2b06d979-7ca1-4a50-8a53-64413a1fec7c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7150ec1a-3500-41bf-aa26-33b97e51a1e4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ed9cc75e-082f-40a9-8108-03c2d26f7eb9" ownerguid="7cb1fe51-099f-4381-a420-115b4c343bf1"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="ed9e9280-bebd-4e76-b664-01fbd1aeb23d" ownerguid="41e903cf-de45-49e2-8faa-0ced648a61ea"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="eda3d122-46a0-40df-8a40-dd2666bf5ae2" ownerguid="8c9196cf-be2a-4df9-8737-0b903ea07ccd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="4aba5c70-42bd-42bb-8bae-a20ad78c350b" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">bend</AUni> -<AUni ws="es">fleccionar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e17b0c5a-2b85-4ec8-ada6-c370564c33c6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="eda4465e-8c17-4ea5-a306-018b881ef3bd" ownerguid="5e525daa-c389-4e5a-a584-ecc8b7d621d3"> -<Form> -<AUni ws="qvm-x-ach">guechu</AUni> -<AUni ws="qvm-x-acl">guechu; guecho</AUni> -<AUni ws="qvm-x-akh">qechu</AUni> -<AUni ws="qvm-x-akl">qechu; qecho</AUni> -<AUni ws="qvm-x-ame">qichu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="eda72205-0375-4c7f-a2d4-c7487bfa6281" ownerguid="1ca9c079-445d-44ea-9788-292e84a4fe16"> -<Form> -<AUni ws="qvm-x-ach">elga; elgä</AUni> -<AUni ws="qvm-x-acl">elga; elgä</AUni> -<AUni ws="qvm-x-akh">elqa; elqä</AUni> -<AUni ws="qvm-x-akl">elqa; elqä</AUni> -<AUni ws="qvm-x-ame">ilqa; ilqä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="eda80639-3bd1-4f19-90d3-a6701e15e927"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nisida; nisida:</AUni> -<AUni ws="qvm-x-acl">nisida; nisida:</AUni> -<AUni ws="qvm-x-akh">nisida; nisida:</AUni> -<AUni ws="qvm-x-akl">nisida; nisida:</AUni> -<AUni ws="qvm-x-ame">nisida; nisida:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+necesidad</AUni> -<AUni ws="qvm-x-acl">+necesidad</AUni> -<AUni ws="qvm-x-akh">+necesidad</AUni> -<AUni ws="qvm-x-akl">+necesidad</AUni> -<AUni ws="qvm-x-ame">+necesidad</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.547" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="94e84289-507e-4e50-a762-f74a6d40b45f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+necesidad</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cd982f33-549f-4cdf-9710-745fd7740627" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7825d113-d9b4-47cc-b96d-09b334532e1a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +necesidad 
\entryTyp root 
\gENG necessity 
\gSPN necesidad 
\e +necesidad 
\c N0 
\mp +FinalC 
\mp +underlong 
\ach nisida foreshortened 
\ach nisida: 
\mp +underlong 
\akh nisida foreshortened 
\akh nisida: 
\acl nisida foreshortened 
\acl nisida: 
\akl nisida foreshortened 
\akl nisida: 
\mp +underlong 
\ame nisida foreshortened 
\ame nisida: 
\mp +FinalLength 
\i PRO 11.26 Nisidächo cagcunata ranticuptinmi itsanga agradëcicun.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="edac14ad-a39d-4f78-aa57-32fc16348769" ownerguid="84eb31d3-b932-4b3b-b945-85884ea856c7"> -<ExampleWords> -<AUni ws="en">little chance, little hope, little prospect, have little chance, stand little chance, outside chance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words indicate that someone or something will probably not be successful?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="edace079-16c6-43dc-8720-aa93d07456fa" ownerguid="0c059134-b542-479c-95b4-c07f3c26fc0c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">last</AUni> -<AUni ws="es">ultimo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="56a80ac5-e000-403b-aa38-4ea0758c7f5c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="edad2fba-c4bd-4ea8-8840-e51d9236548b" ownerguid="e626c65e-eb79-4230-b07a-a6d975d3fe3d"> -<ExampleWords> -<AUni ws="en">oral, orally, labial, palatal, velar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe something to do with the mouth?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="edad73db-5e68-4627-8acc-da3badc0adde" ownerguid="0c5445b7-c733-40af-91dc-9fef0a52262c"> -<Form> -<AUni ws="qvm-x-ach">multa</AUni> -<AUni ws="qvm-x-acl">multa</AUni> -<AUni ws="qvm-x-akh">multa</AUni> -<AUni ws="qvm-x-akl">multa</AUni> -<AUni ws="qvm-x-ame">multa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="edaf912c-12f2-463d-b1e3-9a2702f05927"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">caldu</AUni> -<AUni ws="qvm-x-acl">caldu; caldo</AUni> -<AUni ws="qvm-x-akh">caldu</AUni> -<AUni ws="qvm-x-akl">caldu; caldo</AUni> -<AUni ws="qvm-x-ame">caldu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+caldo.v</AUni> -<AUni ws="qvm-x-acl">+caldo.v</AUni> -<AUni ws="qvm-x-akh">+caldo.v</AUni> -<AUni ws="qvm-x-akl">+caldo.v</AUni> -<AUni ws="qvm-x-ame">+caldo.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.21" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="25f6e4b7-d0ff-46a3-ba0e-899ea9e9cf90" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+caldo.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="59394a5b-2054-4c67-baec-282175ee1530" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e6d71ee8-5dbe-4ef2-819b-56296812f94d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +caldo.v 
\entryTyp root 
\gENG broth 
\gSPN caldo 
\e +caldo.v 
\c V1 
\ach caldu 
\akh caldu 
\acl caldu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl caldo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl caldu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl caldo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame caldu 
\i MIC 3.3 Calducunanpag aytsanta cutsognogmi carcaycanqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoAffixAllomorph" guid="edb14f46-62c7-4f1d-a3da-c62c8d887e9c" ownerguid="40a41fad-5317-436d-8c3f-e52650865c7f"> -<Form> -<AUni ws="qvm-x-ach">rcU</AUni> -<AUni ws="qvm-x-acl">rcU</AUni> -<AUni ws="qvm-x-akh">rkU</AUni> -<AUni ws="qvm-x-akl">rkU</AUni> -<AUni ws="qvm-x-ame">rkU</AUni> -</Form> -<IsAbstract val="True" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="edb697d9-670c-49c5-9bf6-9e6cc7006132" ownerguid="df2ee830-0668-43d7-8a32-e2fd3e7b31d8"> -<Question> -<AUni ws="en">(1) present: the situation occurs simultaneously with the moment of speech.</AUni> -</Question> -</rt> -<rt class="LexSense" guid="edb8ce11-8052-4356-a9d2-f73bf1fb60d2" ownerguid="8a23ef82-2e94-4aa0-8fae-de0c62cebdbc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="1c5e1aa8-7b9d-47e2-a1d1-f67e2b998e09" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="4886a1a1-5046-4d27-82c7-70a1323335bf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="edb9e7db-ef05-4326-8701-d4388c60eaa6" ownerguid="3e1bf327-fc33-4051-afe1-f210b4b2592f"> -<Form> -<AUni ws="qvm-x-ach">carca</AUni> -<AUni ws="qvm-x-acl">carca</AUni> -<AUni ws="qvm-x-akh">karka</AUni> -<AUni ws="qvm-x-akl">karka</AUni> -<AUni ws="qvm-x-ame">karka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="edbc24cd-33ff-44d6-90b3-d4e601cf162e" ownerguid="ba5c0547-c470-496f-a206-4109f1333f3c"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="edbc28df-38f9-4fc9-9d36-c674cd2c874c" ownerguid="5eeccff3-04b4-4136-a2d4-3a96706ea5b1"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="edbc9a1b-e37d-46ca-b519-81f8f65431e9" ownerguid="e6d92ed9-8276-4ed3-83b3-3a5b0832a826"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9dfb06db-f884-4db8-b10b-8fe1b58373af" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">attentive</AUni> -<AUni ws="es">atento</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ef53b202-adf9-480a-9d95-872e8a8d183e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="edbfc928-049c-4cb7-8c88-8e8af38287c7" ownerguid="ffcc57f8-6c6d-4bf4-85be-9220ca7c739d"> -<Abbreviation> -<AUni ws="en">2.6.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.63" /> -<DateModified val="2022-9-23 16:55:8.63" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to romantic love.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Romantic love</AUni> -</Name> -<Questions> -<objsur guid="bd5572eb-108f-45f9-a0ab-a3419794ff8a" t="o" /> -<objsur guid="4453906e-ca8f-4c8c-9075-cf3be601957f" t="o" /> -<objsur guid="94b22b4c-1618-490a-ad38-d6fecd1881b1" t="o" /> -<objsur guid="3a53aa48-6c6e-4f55-9e32-915914a420b5" t="o" /> -<objsur guid="e341bb15-8339-4c72-86bf-5cb9fd2b935e" t="o" /> -<objsur guid="a9911ac4-1f7b-4e60-8714-bdd80f4ac20f" t="o" /> -<objsur guid="cf6cd55c-da46-4c3c-83b3-e7c328a50f43" t="o" /> -<objsur guid="fe80b590-0a9a-4152-9ab7-e17f3b21d124" t="o" /> -<objsur guid="3e79a18d-425d-4551-b8a3-771aa7beed10" t="o" /> -<objsur guid="29bdd268-f0af-48cb-a718-2e654b204c59" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="edc1eb64-4cca-44a5-bc65-29c6803b00c2" ownerguid="6bda8a7e-628f-4114-9c86-ba3b42f31d3f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ta</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ta</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ta</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ta</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ta</Run> -</AStr> -</Form> -<Morph> -<objsur guid="4f3f1430-f126-405a-98a8-5d0b732eb948" t="r" /> -</Morph> -<Msa> -<objsur guid="eac932ef-fd79-454b-b2f7-95e85dbb829a" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="edc2c502-a452-425a-89e7-15c18d080f50"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">maldición; maldicion</AUni> -<AUni ws="qvm-x-acl">maldición; maldicion</AUni> -<AUni ws="qvm-x-akh">maldición; maldicion</AUni> -<AUni ws="qvm-x-akl">maldición; maldicion</AUni> -<AUni ws="qvm-x-ame">maldición; maldicion</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+maldición</AUni> -<AUni ws="qvm-x-acl">+maldición</AUni> -<AUni ws="qvm-x-akh">+maldición</AUni> -<AUni ws="qvm-x-akl">+maldición</AUni> -<AUni ws="qvm-x-ame">+maldición</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.275" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3c817644-55ca-4408-b143-dd56459c49d0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+maldición</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a23fb110-59cf-43ab-a7ea-f177877c7e8d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6adf3a2b-0c1d-451d-8419-8622d607a83c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +maldición 
\entryTyp root 
\gENG curse 
\gSPN maldición 
\e +maldición 
\c N0 
\mp +FinalC 
\ach maldición / _# 
\ach maldicion / ~_# 
\akh maldición / _# 
\akh maldicion / ~_# 
\acl maldición / _# 
\acl maldicion / ~_# 
\akl maldición / _# 
\akl maldicion / ~_# 
\ame maldición / _# 
\ame maldicion / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="edc77aca-5004-4e3f-b776-00bb23167292" ownerguid="4e44f90b-be98-464b-9e06-b89f51b01ec6"> -<Form> -<AUni ws="qvm-x-ach">jorgu; jorga</AUni> -<AUni ws="qvm-x-acl">jorgu; jorgo; jorga</AUni> -<AUni ws="qvm-x-akh">jorqu; jorqa</AUni> -<AUni ws="qvm-x-akl">jorqu; jorqo; jorqa</AUni> -<AUni ws="qvm-x-ame">hurqu; hurqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="edc91cb2-31c6-49df-9d50-7a957c20c003" ownerguid="ed4a2ca6-c03c-4c72-9431-b72fb7294b8f"> -<ExampleWords> -<AUni ws="en">honeymoon, wedding night, consummation (of the marriage)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to the time immediately after the wedding?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="edcc4da1-29fc-42d9-a162-c0012cd98fec" ownerguid="a894d991-d5da-45a6-9c62-009133257f36"> -<ExampleWords> -<AUni ws="en">shock, delirious, numb</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of symptoms are there?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="edce8526-bf43-4e8f-a407-35f139f68eb1" ownerguid="a455de28-b812-4bf4-a9f3-fc318aa77d4f"> -<Form> -<AUni ws="qvm-x-ach">mädista</AUni> -<AUni ws="qvm-x-acl">mädista</AUni> -<AUni ws="qvm-x-akh">mädista</AUni> -<AUni ws="qvm-x-akl">mädista</AUni> -<AUni ws="qvm-x-ame">mädista</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="edcf3420-728e-46a7-a688-ba8e9e2efcbc" ownerguid="b4f8d2c6-f44f-4bf1-a0b7-5f65328545d3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">nga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">nga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">nqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">nqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="5dcad267-89ba-4258-b423-e84c57ba90ed" t="r" /> -</Morph> -<Msa> -<objsur guid="cdacd2fc-4611-457d-b88f-3c9c8bb345b9" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="edd1834a-85cd-4ee9-a8f6-d2cc2c536a30"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">traductor</AUni> -<AUni ws="qvm-x-acl">traductor</AUni> -<AUni ws="qvm-x-akh">traductor</AUni> -<AUni ws="qvm-x-akl">traductor</AUni> -<AUni ws="qvm-x-ame">traductor</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+traductor</AUni> -<AUni ws="qvm-x-acl">+traductor</AUni> -<AUni ws="qvm-x-akh">+traductor</AUni> -<AUni ws="qvm-x-akl">+traductor</AUni> -<AUni ws="qvm-x-ame">+traductor</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.38" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a65daf8c-9927-4019-bd3b-ac7cbb683d2c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+traductor</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d292ee46-dfd3-4674-bde4-f56f7d4d2aab" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="23108c32-555b-48da-aedb-2837d7b7e9d5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +traductor 
\entryTyp root 
\gENG translator 
\gSPN traductor 
\e +traductor 
\c N0 
\mp +FinalC 
\ach traductor 
\akh traductor 
\acl traductor 
\akl traductor 
\ame traductor</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="edd200ca-50f3-4898-8da0-53d8b59bb007" ownerguid="97832dfb-d490-40d0-ade8-a5074e868a76"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="edd78554-ee36-4bed-8d02-1ecc5cb3d594" ownerguid="e5753e53-fb22-4adb-8e65-709f727cd3cb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a8ddfff2-768a-4010-9f31-5e5f67196766" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="edde2c28-08d9-4d6d-bbfe-5aec1fbe95d6" ownerguid="77722ca5-841e-46ee-8f24-d6e594fccea8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="edde4dae-239f-4cb6-a6ad-fd4e79c06f26"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fiyu</AUni> -<AUni ws="qvm-x-acl">fiyu; fiyu; fiyo</AUni> -<AUni ws="qvm-x-akh">fiyu</AUni> -<AUni ws="qvm-x-akl">fiyu; fiyu; fiyo</AUni> -<AUni ws="qvm-x-ame">fiyu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+feo</AUni> -<AUni ws="qvm-x-acl">+feo</AUni> -<AUni ws="qvm-x-akh">+feo</AUni> -<AUni ws="qvm-x-akl">+feo</AUni> -<AUni ws="qvm-x-ame">+feo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.538" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8af51d38-7b5d-4a73-89f8-f39e115e8e55" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+feo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4780accf-3d86-484c-a8d2-c398d837871c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c40a04d5-e71b-4599-abd3-02d312e00ed7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +feo 
\entryTyp root 
\gENG mean 
\gSPN malo 
\e +feo 
\c N0 
\mp +assimilated 
\ach fiyu 
\akh fiyu 
\acl fiyu / _# 
\acl fiyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl fiyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl fiyu / _# 
\akl fiyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl fiyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame fiyu 
\mcc +feo / ~_ [pa]</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="eddfebbd-7e9b-411a-b5d7-478fda696ff2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tentación; tentacion</AUni> -<AUni ws="qvm-x-acl">tentación; tentacion</AUni> -<AUni ws="qvm-x-akh">tentación; tentacion</AUni> -<AUni ws="qvm-x-akl">tentación; tentacion</AUni> -<AUni ws="qvm-x-ame">tentación; tentacion</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tentación</AUni> -<AUni ws="qvm-x-acl">+tentación</AUni> -<AUni ws="qvm-x-akh">+tentación</AUni> -<AUni ws="qvm-x-akl">+tentación</AUni> -<AUni ws="qvm-x-ame">+tentación</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.866" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="febaf09c-b116-4262-a607-94293b8fde79" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tentación</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3e9895f5-b1e8-4244-9ef7-acfcbe1306ec" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="010ff7cd-59b8-4fe8-889f-be2ced1b042e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tentación 
\entryTyp root 
\gENG temptation 
\gSPN tentación 
\e +tentación 
\c N0 
\mp +FinalC 
\ach tentación / _# 
\ach tentacion / ~_# 
\akh tentación / _# 
\akh tentacion / ~_# 
\acl tentación / _# 
\acl tentacion / ~_# 
\akl tentación / _# 
\akl tentacion / ~_# 
\ame tentación / _# 
\ame tentacion / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="ede3ce0b-7e5b-49b3-bcac-545ed2cab075" ownerguid="084f02d5-82b0-449e-aca9-210c3711fe0a"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="ede44352-6805-4979-9ef1-fabb06f149ee" ownerguid="d9f9ca3f-2dbf-4114-a8bc-050f578493a5"> -<Form> -<AUni ws="qvm-x-ach">päga</AUni> -<AUni ws="qvm-x-acl">päga</AUni> -<AUni ws="qvm-x-akh">päqa</AUni> -<AUni ws="qvm-x-akl">päqa</AUni> -<AUni ws="qvm-x-ame">päqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="ede45d8c-33bd-4855-9f48-005b22c7b80c" ownerguid="ed743f9d-97cd-4e6c-80dc-f5c1de2d836f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wan</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wan</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wan</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wan</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wan</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b441a287-959f-4845-be39-c8c9c2b00da1" t="r" /> -</Morph> -<Msa> -<objsur guid="6a3c64a4-aa9f-4fcb-93ea-93a8b6c7edcc" t="r" /> -</Msa> -<Sense> -<objsur guid="38b30d56-1554-40fb-a1ea-c1cf17eadf84" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="ede50616-b51e-4716-ac79-aa7f469c8a1c" ownerguid="17d5f429-6550-4a3a-a755-5ac3c3d7e04f"> -<ExampleWords> -<AUni ws="en">nest, birds nest, perch, range</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) Where do birds live?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ede73ac3-76ed-4404-8522-1e500d781e51" ownerguid="70bf4aaa-4f1d-457a-9739-51dfdfc500a0"> -<Form> -<AUni ws="qvm-x-ach">flauta</AUni> -<AUni ws="qvm-x-acl">flauta</AUni> -<AUni ws="qvm-x-akh">flauta</AUni> -<AUni ws="qvm-x-akl">flauta</AUni> -<AUni ws="qvm-x-ame">flauta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="edeb0ccc-d2fa-482a-b3f9-1ace8a02a10b" ownerguid="deef10e2-a871-4288-82fa-580dc17ca4a4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">flea</AUni> -<AUni ws="es">pulga</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e554f2e8-9462-464d-aef7-4a74f841e793" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="edeb9458-3bdb-4d14-aaa1-6eb457307b9c" ownerguid="c3ddfc77-e3a6-450e-a853-111f5595df87"> -<Abbreviation> -<AUni ws="en">9.4.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.700" /> -<DateModified val="2022-9-23 16:55:8.700" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for ways of saying that someone should do something. If I say someone should do something, I think it is good that he does it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>71D Should, Ought</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Hortative</AUni> -</Name> -<Questions> -<objsur guid="3a287d78-7868-4732-8bff-70b4135a36bd" t="o" /> -<objsur guid="4c486fe5-06ce-4c4d-b945-4c13df330759" t="o" /> -<objsur guid="410e2b69-5e57-424c-b804-5da8de93c2cf" t="o" /> -<objsur guid="9c7809d7-018a-4b71-9843-3481fd7267be" t="o" /> -<objsur guid="81daa551-20d0-44ea-afcc-03aa7914f265" t="o" /> -<objsur guid="c8cb8fe8-e9de-4d25-a6bb-68d65e8b6e13" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="eded6cce-5a4d-4d0b-8639-1550489a2a8a" ownerguid="bdaecf2f-d0fa-49f7-891e-bcb0a31ae630"> -<ExampleWords> -<AUni ws="en">follow, come after, ensue, follow-up, be after</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something happening after something else?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="edf0d122-83e3-4508-8627-99ea861a4cf5" ownerguid="a202382c-5965-4ebf-aa6f-dabc11f01599"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="edf17f72-7e7a-4f8d-a5ee-f4889492d73a" ownerguid="c4330001-83ca-485d-8b9b-09f7e1be60cc"> -<Abbreviation> -<AUni ws="en">3.5.8.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.182" /> -<DateModified val="2022-9-23 16:55:8.182" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is meaningless--something someone says that doesn't mean anything.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Meaningless</AUni> -</Name> -<Questions> -<objsur guid="86604e93-1f4e-4f95-94bc-07d60f015bab" t="o" /> -<objsur guid="f239f4da-3c51-4c40-bc37-31151e4a8254" t="o" /> -<objsur guid="812d3560-1ecc-4feb-97e4-294ee3853f85" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="edf4a65b-3f3f-4cec-9511-08730f7100b5" ownerguid="9904f8ef-fca6-4020-815d-14f3fb6eae0f"> -<Form> -<AUni ws="qvm-x-ach">rey</AUni> -<AUni ws="qvm-x-acl">rey</AUni> -<AUni ws="qvm-x-akh">rey</AUni> -<AUni ws="qvm-x-akl">rey</AUni> -<AUni ws="qvm-x-ame">rey</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="edf65977-38ea-42f8-8119-0618c0f2342c" ownerguid="813545f6-6213-482d-919e-86244fad47e8"> -<Form> -<AUni ws="qvm-x-ach">yama</AUni> -<AUni ws="qvm-x-acl">yama</AUni> -<AUni ws="qvm-x-akh">yama</AUni> -<AUni ws="qvm-x-akl">yama</AUni> -<AUni ws="qvm-x-ame">yama</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="edf73653-1bda-41f0-ac7e-1c07853d6d95" ownerguid="90f57cb3-1a42-4c45-808d-e9909d9396bd"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="edff9f47-ac59-4a01-acc7-7fef452146d2" ownerguid="ba339cf2-8191-4519-9289-a9d996eb059c"> -<Form> -<AUni ws="qvm-x-ach">justán; justan</AUni> -<AUni ws="qvm-x-acl">justán; justan</AUni> -<AUni ws="qvm-x-akh">justán; justan</AUni> -<AUni ws="qvm-x-akl">justán; justan</AUni> -<AUni ws="qvm-x-ame">justán; justan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="ee0585b1-627a-4a71-888d-b5d82619431e" ownerguid="69541573-f845-4e77-91f6-1e3551fc6c82"> -<Abbreviation> -<AUni ws="en">9.7.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.728" /> -<DateModified val="2022-9-23 16:55:8.728" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the proper names of the countries that exist around the language community, especially those countries where your language is spoken. Include the name of your own country. Do not list every country in the world, unless your language has developed special names or pronunciations for those countries. Include any country that you refer to in your language, especially those names whose pronunciation you have adapted to fit your language. Give the form of the name that you use, rather than the official spelling. For instance the Japanese refer to their country as 'Nihon', but in English will call it 'Japan'. So 'Japan' is an English word and should go into an English dictionary. But 'Nihon' is not an English word and should not go in the dictionary.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Names of countries</AUni> -</Name> -<Questions> -<objsur guid="0aa1d6a2-d80e-4316-809e-18b67b0cf744" t="o" /> -<objsur guid="c77264e7-ae30-4e28-956c-4eff7c64559b" t="o" /> -<objsur guid="26a44825-7012-4a4a-be23-3e6c7c865af7" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="ee068077-bfcc-4b91-a7c0-9e3ef24dee13"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">paracsha</AUni> -<AUni ws="qvm-x-acl">paracsha</AUni> -<AUni ws="qvm-x-akh">paraksha</AUni> -<AUni ws="qvm-x-akl">paraksha</AUni> -<AUni ws="qvm-x-ame">paraksha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*paraksha</AUni> -<AUni ws="qvm-x-acl">*paraksha</AUni> -<AUni ws="qvm-x-akh">*paraksha</AUni> -<AUni ws="qvm-x-akl">*paraksha</AUni> -<AUni ws="qvm-x-ame">*paraksha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.717" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6bb0d74b-e848-48c4-aa84-221aeb32f62b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*paraksha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6138ad05-ade2-4f3f-974c-d504be841a5e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e44c8272-42e6-481c-9efe-e99c6b24eecf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *paraksha 
\entryTyp root 
\gENG 
\gSPN 
\e *paraksha 
\c N0 
\ach paracsha 
\akh paraksha 
\acl paracsha 
\akl paraksha 
\ame paraksha</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="ee089a00-a6f5-4c59-8fa3-e96a88ed67f5" ownerguid="c4059dba-46be-403f-a555-96e49c3b144f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="ee110d82-0bed-49b6-b1f3-21d84176c75f" ownerguid="384f7ec4-3100-4734-9e25-17740dcbc68c"> -<Form> -<AUni ws="qvm-x-ach">jëmi</AUni> -<AUni ws="qvm-x-acl">jëmi; jëmi; jëme</AUni> -<AUni ws="qvm-x-akh">jëmi</AUni> -<AUni ws="qvm-x-akl">jëmi; jëmi; jëme</AUni> -<AUni ws="qvm-x-ame">hïmi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="ee117845-dcab-40d3-aee8-8988cf531702" ownerguid="1bd6b7a5-bf54-4161-bd0f-224286974fef"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemName" guid="ee11e7e3-3838-48c4-88ec-3815091bab33" ownerguid="86ff66f6-0774-407a-a0dc-3eeaf873daf7"> -<Abbreviation> -<AUni ws="en">-ml</AUni> -</Abbreviation> -<Name> -<AUni ws="en">no morphlowering</AUni> -</Name> -<Regions> -<objsur guid="4cd146cd-b869-48a4-a075-4226ca327a72" t="o" /> -</Regions> -</rt> -<rt class="CmDomainQ" guid="ee11eceb-09ce-4eb5-8b6f-1ac14b2f6074" ownerguid="93489181-ad8c-4a18-8dbc-fd7a9c871126"> -<ExampleWords> -<AUni ws="en">short-tempered, quick-tempered, have a short fuse, temper</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe someone who gets angry easily?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ee12497d-e01d-4d19-9f31-51c818c894a3" ownerguid="b5259e80-7522-4e4c-9784-1b427333ab56"> -<Form> -<AUni ws="qvm-x-ach">ïla; ïlä</AUni> -<AUni ws="qvm-x-acl">ïla; ïlä</AUni> -<AUni ws="qvm-x-akh">ïla; ïlä</AUni> -<AUni ws="qvm-x-akl">ïla; ïlä</AUni> -<AUni ws="qvm-x-ame">ïla; ïlä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="ee13bb79-617c-4323-aa95-10df07479931" ownerguid="652dc246-20c6-4aec-bab1-bae6ff4eb4ce"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="ee1f813e-b2c9-44be-a5ee-2e0d54008df1" ownerguid="44798d07-57ef-4356-a81c-13cb8eb3e40b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ee206fe7-563e-4fe9-9a6a-3dd874681aa0" ownerguid="90c316f9-862b-42ea-a75d-da093ae9e33c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">Adam's.apple</AUni> -<AUni ws="es">manz.de.Adán</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f11568ff-4665-4430-bf52-1f6407e08191" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="ee270229-089d-4cdb-9f4b-cf49170edc94" ownerguid="d5e16822-3fec-4d8d-b2cb-baec268f95e3"> -<Form> -<AUni ws="qvm-x-ach">vientucida; vientucidä</AUni> -<AUni ws="qvm-x-acl">vientucida; vientucidä</AUni> -<AUni ws="qvm-x-akh">vientucida; vientucidä</AUni> -<AUni ws="qvm-x-akl">vientucida; vientucidä</AUni> -<AUni ws="qvm-x-ame">vientucida; vientucidä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="ee270a36-313c-437e-a744-0b4dd0505ccb" ownerguid="cb312439-8279-4f5f-a6a1-81bf5a3b7ecf"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="ee282470-00e2-43ad-bc40-f29bb41a37ad"> -<Analyses> -<objsur guid="874f8415-fca2-49ce-923f-ff1d4a2b94d9" t="o" /> -</Analyses> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">jorqushushpayki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="ee292d37-91a5-4dfa-85dd-5434ea93c0a7" ownerguid="3787b076-8bcc-4676-b78b-feef69c28bdc"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ee298e81-06aa-4185-a410-76732a85c3bb" ownerguid="2f151c35-72e1-4665-bc05-6fc70a3ecff2"> -<ExampleWords> -<AUni ws="en">ugly, hideous, revolting, unattractive, unsightly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is ugly?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ee2bbc7f-a8a8-4493-a25a-d27ea9ce9612" ownerguid="965b0558-10fc-4cf4-8832-f82614fb4098"> -<Form> -<AUni ws="qvm-x-ach">corrïda</AUni> -<AUni ws="qvm-x-acl">corrïda</AUni> -<AUni ws="qvm-x-akh">corrïda</AUni> -<AUni ws="qvm-x-akl">corrïda</AUni> -<AUni ws="qvm-x-ame">corrïda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ee2fc8a6-336a-469e-9daf-2a51e21dc104" ownerguid="f0c7d305-01bc-4a03-b2dc-6cfda627fc03"> -<Form> -<AUni ws="qvm-x-ach">carretëra</AUni> -<AUni ws="qvm-x-acl">carretëra</AUni> -<AUni ws="qvm-x-akh">carretëra</AUni> -<AUni ws="qvm-x-akl">carretëra</AUni> -<AUni ws="qvm-x-ame">carretëra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="ee300291-73bd-4b4b-937d-4f10be778e08"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">3</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="ee301b3a-8a2a-4070-87dd-5eb9ea5a8b04" ownerguid="b5cad18b-f00e-4673-aa09-ea2eb36bed24"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="9775b87e-4bf7-48ba-9786-8432e4e6c6eb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="ee32fee2-047f-4c5a-841c-9069e8f757cd" ownerguid="6334b0e6-6de2-4f5c-94b6-caae5357ddb4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0 V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sandal</AUni> -<AUni ws="es">ojota</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a1536b3b-aba3-4042-9180-c4640d58a86c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="ee33071b-34d0-428b-a181-3aac392d4b85" ownerguid="e22343c1-7f13-4dbd-aa61-16784ec9c367"> -<Form> -<AUni ws="qvm-x-ach">legpa</AUni> -<AUni ws="qvm-x-acl">legpa</AUni> -<AUni ws="qvm-x-akh">leqpa</AUni> -<AUni ws="qvm-x-akl">leqpa</AUni> -<AUni ws="qvm-x-ame">liqpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="ee3384b7-7618-4f17-a607-1e25b68dd238" ownerguid="466a8502-0d5b-4d2c-a67e-c6415e4f4a3d"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">AMO 9.9 <<Trïguta maylar shuyshushgayquinogmi gamcunatapis limpiashayqui jutsata rurashgayquipita. Chushu cagcuna yarguptinpis gränu cagcunaga manami juclaylapis yargongatsu.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="ee33afc3-b9f8-4163-8fc1-307391e4706f" ownerguid="6b1eeebd-2433-4f39-9e67-7ac4dd0fe20a"> -<ExampleWords> -<AUni ws="en">northerner, southerner, easterner, westerner</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe a person who is from a part of the country that is north, south, east, or west?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ee342bb9-fe2c-4e3e-8418-d443a32fc8d5" ownerguid="088df936-aef2-4b1a-a175-dad436753e97"> -<Form> -<AUni ws="qvm-x-ach">churyas</AUni> -<AUni ws="qvm-x-acl">churyas</AUni> -<AUni ws="qvm-x-akh">churyas</AUni> -<AUni ws="qvm-x-akl">churyas</AUni> -<AUni ws="qvm-x-ame">churyas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="ee3738e5-05c3-43a0-97ab-2b59325dcfe8" ownerguid="3fc01e2a-ab32-4c45-a94e-6ee82f3f1496"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">throw.out</AUni> -<AUni ws="es">botar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="51a3b8ae-cb8b-41de-9feb-1e71f83763e0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="ee38eff6-f7e0-4615-8da8-86216c9f9497" ownerguid="96e6430e-2e16-401f-a96c-15d3ab24f6b7"> -<Form> -<AUni ws="qvm-x-ach">shapra</AUni> -<AUni ws="qvm-x-acl">shapra</AUni> -<AUni ws="qvm-x-akh">shapra</AUni> -<AUni ws="qvm-x-akl">shapra</AUni> -<AUni ws="qvm-x-ame">shapra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="ee395576-086e-410d-8ec6-dcfc602613ae" ownerguid="ba2cc424-08aa-49b5-9fac-9d0ee5df9a2e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9f9e7900-132a-4c1b-a3f7-c45e4006d095" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="9695a660-1296-45ad-87d2-479635346293" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ee397f50-b8fb-432a-ae42-0ead2a7609f6" ownerguid="bccdcdc6-081c-4475-bcc8-cf3719d6bd51"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="ee3a3fc0-ccc5-4431-9b63-04a84df8511e" ownerguid="406c0bf1-74ba-4db3-9654-427c72a2db68"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="ee3aa0d9-7924-4c5b-adad-b0fae6c60a01" ownerguid="376e9662-39a0-4b0d-a746-195ddf737241"> -<Form> -<AUni ws="qvm-x-ach">cöta</AUni> -<AUni ws="qvm-x-acl">cöta</AUni> -<AUni ws="qvm-x-akh">cöta</AUni> -<AUni ws="qvm-x-akl">cöta</AUni> -<AUni ws="qvm-x-ame">cöta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="ee407532-ebd4-4026-906d-08229667cbee"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">viruta</AUni> -<AUni ws="qvm-x-acl">viruta</AUni> -<AUni ws="qvm-x-akh">viruta</AUni> -<AUni ws="qvm-x-akl">viruta</AUni> -<AUni ws="qvm-x-ame">viruta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+viruta</AUni> -<AUni ws="qvm-x-acl">+viruta</AUni> -<AUni ws="qvm-x-akh">+viruta</AUni> -<AUni ws="qvm-x-akl">+viruta</AUni> -<AUni ws="qvm-x-ame">+viruta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.412" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a43bb4e3-1dde-4b49-81eb-d6edc3b3de87" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+viruta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e7a28d43-086f-4efb-9acc-51178ddc0c42" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="92d46caf-f079-416b-908f-371e6f25bc8b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +viruta 
\entryTyp root 
\gENG wood.shaving 
\gSPN viruta 
\e +viruta 
\c N0 
\ach viruta 
\akh viruta 
\acl viruta 
\akl viruta 
\ame viruta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="ee446395-781b-4651-afef-cad78b71f843" ownerguid="73499b8b-76fc-4121-8bfa-1bdebe537259"> -<Abbreviation> -<AUni ws="en">1.6.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.994" /> -<DateModified val="2022-9-23 16:55:7.994" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to reptiles (phylum Chordata, class Reptilia).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>4D Reptiles and Other 'Creeping Things'</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Reptile</AUni> -</Name> -<OcmCodes> -<Uni>136h Reptile</Uni> -</OcmCodes> -<Questions> -<objsur guid="6de1ac34-09e3-48f1-9718-319476adf3cb" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="7d472317-b5e8-4cae-a03f-913ecdaf4c29" t="o" /> -<objsur guid="36b3cfb6-0fea-4628-aa8d-f9b7af48f436" t="o" /> -<objsur guid="faf0ae24-6584-4766-a93b-389c1cb06d8d" t="o" /> -<objsur guid="c21c28e8-9731-4ee0-acbb-32501bf8abd1" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="ee451cee-ab4c-4a1f-bbd8-82e3ad7bddd0" ownerguid="b68d23ac-107c-4f83-ad4c-0eb39bde54ee" /> -<rt class="WfiMorphBundle" guid="ee46eaab-b622-4bef-8cb6-3594014db673" ownerguid="70103b13-f5f0-48d4-8d4e-d6e0268967aa"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="3f2628c2-c996-47dc-b083-d75626ba04eb" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="ee4eb662-a511-478d-bf89-36010a5ed14c" ownerguid="e4fb2d9a-9684-4a9b-934d-8d9727b8d132"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ee53cdfe-d296-479d-9dc3-b5ff7aa6cce4" ownerguid="9e61a509-b7fd-422e-bd51-42e6be23fd60"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="3965539f-3ced-4670-8d64-0a2b5215ed2b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="ee54069f-0234-4db0-a227-e7fa5470c4f5" ownerguid="ee5e6978-e6ad-482e-9f3b-f9bb58d52c3b"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="f863c69c-0204-4514-b755-42b05b909aa9" t="o" /> -<objsur guid="0d7fa6c2-0a6a-4bc5-a992-e43e747566cc" t="o" /> -<objsur guid="7079b575-fbc0-4617-8252-2500fc0229e4" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="ee55271e-3725-4f8a-9b82-0104f799322d" ownerguid="5073927d-d871-4d59-9c5b-960f332559e3"> -<Form> -<AUni ws="qvm-x-ach">chicu</AUni> -<AUni ws="qvm-x-acl">chicu; chicu; chico</AUni> -<AUni ws="qvm-x-akh">chiku</AUni> -<AUni ws="qvm-x-akl">chiku; chiku; chiko</AUni> -<AUni ws="qvm-x-ame">chiku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ee58dabf-27d4-4c09-9a1d-3b5887629626" ownerguid="04e7a4bd-d63e-4aaa-adcc-8cccf4cac9ae"> -<Form> -<AUni ws="qvm-x-ach">yanasa</AUni> -<AUni ws="qvm-x-acl">yanasa</AUni> -<AUni ws="qvm-x-akh">yanasa</AUni> -<AUni ws="qvm-x-akl">yanasa</AUni> -<AUni ws="qvm-x-ame">yanasa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="ee5e6978-e6ad-482e-9f3b-f9bb58d52c3b"> -<Analyses> -<objsur guid="ee54069f-0234-4db0-a227-e7fa5470c4f5" t="o" /> -</Analyses> -<Checksum val="-1773094622" /> -<Form> -<AUni ws="qvm-x-akh">rämakunata</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="ee612614-1a3f-465a-993a-bbd51cbf02ba" ownerguid="a81b4f8f-2c46-4c9a-9640-8b7bad9360f1"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="ee619566-3c90-4489-9659-d73e7c3f110e" ownerguid="b97531df-8256-4796-8335-f69753a8f2e3"> -<ExampleWords> -<AUni ws="en">idolatry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the practice of making and worshiping idols?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ee6371b0-ca33-47ac-9a9c-bf49aa5dbd95" ownerguid="202c2c38-e8aa-4b82-a567-e7111fb3f511"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">staff</AUni> -<AUni ws="es">palo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ec8e7abd-3b3a-4d99-b1d0-21ccd3983b1b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ee664cd2-5a47-4406-855b-725d3b74f674" ownerguid="5c31bdf6-901f-4f14-ab64-7a99524710fc"> -<ExampleWords> -<AUni ws="en">not give a damn, couldn't care less, be past caring, for all I care</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to feeling very indifferent?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ee665e2f-ce2e-45a4-bb4a-9c1c4db5fc54" ownerguid="019c50f8-47d4-4b5c-bf01-cc1259de969c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="2251c592-8d30-40a7-9e40-e33830adb1be" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="ee67ff14-09b8-4706-93fa-2765b0e949bd" ownerguid="49f92595-529f-4fac-9eb3-f251a917e38a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 19.19 Cutirmi Eliseuta tarergan chunca ishcay (12) par yuntacunawan melgapänacuypa aruycagta.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="ee6a1ab9-356f-4019-9109-74acd44c2c06" ownerguid="08203117-dfb9-4e8a-91bc-a3460256a3bc"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="ee6cab1c-08ed-45e3-abc8-e72015ab930a" ownerguid="a0da53a2-5caf-444d-aeb4-5c0799f72939"> -<PartOfSpeech> -<objsur guid="85ffb381-0567-4202-8640-53cbaec77e45" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="ee6e993c-5551-42ae-b35e-26bc6aeeb3a4" ownerguid="8a11e609-e88d-4247-8c5f-224ddb20de10"> -<Abbreviation> -<AUni ws="en">5.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.325" /> -<DateModified val="2022-9-23 16:55:8.325" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to men's clothing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Men's clothing</AUni> -</Name> -<Questions> -<objsur guid="ce366a45-3cff-409f-89a4-a36282c2d535" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="ee6febac-1ca5-4c63-af23-ad64bb275b2f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">reglamentu; reglamento</AUni> -<AUni ws="qvm-x-acl">reglamentu; reglamentu; reglamento</AUni> -<AUni ws="qvm-x-akh">reglamentu; reglamento</AUni> -<AUni ws="qvm-x-akl">reglamentu; reglamentu; reglamento</AUni> -<AUni ws="qvm-x-ame">reglamentu; reglamento</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+reglamento</AUni> -<AUni ws="qvm-x-acl">+reglamento</AUni> -<AUni ws="qvm-x-akh">+reglamento</AUni> -<AUni ws="qvm-x-akl">+reglamento</AUni> -<AUni ws="qvm-x-ame">+reglamento</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.318" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="027b88d1-5eff-4785-8ba2-4a78704fbd3c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+reglamento</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d59cb110-4fda-49c2-9f0a-ce0d6cb7832b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c930b877-43dd-497d-9351-a656605cabfa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +reglamento 
\entryTyp root 
\gENG rules 
\gSPN reglamento 
\e +reglamento 
\c N0 
\ach reglamentu / ~_# 
\ach reglamento / _# 
\akh reglamentu / ~_# 
\akh reglamento / _# 
\acl reglamentu / ~_# 
\acl reglamentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl reglamento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl reglamentu / ~_# 
\akl reglamentu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl reglamento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame reglamentu / ~_# 
\ame reglamento / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="ee74a3f7-80b0-4e22-b9f2-d8e746cea35f" ownerguid="0bd1ff14-0f91-4144-8ccc-ae374620d493"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="LexSense" guid="ee74eb83-1de8-4b98-a86c-8680dd663c87" ownerguid="bcc5be3f-fcee-4504-abba-7d2cb3871412"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shoe</AUni> -<AUni ws="es">zapato</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b20bcab4-45ab-4aca-915c-df0a8a08666a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="ee7b7615-c7b9-49b6-b7b3-92eeb0df41a9" ownerguid="3ed1ace6-903f-4928-b934-05fbce2441e0"> -<Form> -<AUni ws="qvm-x-ach">colcha</AUni> -<AUni ws="qvm-x-acl">colcha</AUni> -<AUni ws="qvm-x-akh">colcha</AUni> -<AUni ws="qvm-x-akl">colcha</AUni> -<AUni ws="qvm-x-ame">colcha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="ee81b957-535a-41b4-86fd-61f7c66b4e4b" ownerguid="70452de9-2140-4d6d-99ae-4f141a2b507f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -<Sense> -<objsur guid="7cd134ea-89c1-4a60-8992-dcac673bd263" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="ee835c90-16b6-433d-a4a5-5a76374b8b99" ownerguid="d4521b0f-0703-48cc-94a0-f42ccc09959c"> -<ExampleWords> -<AUni ws="en">thing, what, something, anything, everything, nothing, each thing, whatever, whichever</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What pronouns express indefinite reference of a thing?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ee853949-a6a2-4735-97ca-ebeb2aa7ddaf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tuclumpa</AUni> -<AUni ws="qvm-x-acl">tuclumpa</AUni> -<AUni ws="qvm-x-akh">tuklumpa</AUni> -<AUni ws="qvm-x-akl">tuklumpa</AUni> -<AUni ws="qvm-x-ame">tuklumpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tukllumpa</AUni> -<AUni ws="qvm-x-acl">*tukllumpa</AUni> -<AUni ws="qvm-x-akh">*tukllumpa</AUni> -<AUni ws="qvm-x-akl">*tukllumpa</AUni> -<AUni ws="qvm-x-ame">*tukllumpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.967" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5ab7ea61-1562-49a9-80eb-407109270952" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tukllumpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f40744a7-7d96-4267-891e-93958e3dc0b3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="41e1e4ae-4444-4926-95ed-224375ca69fa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tukllumpa 
\entryTyp root 
\gENG 
\gSPN caerse 
\e *tukllumpa 
\c V1 
\ach tuclumpa 
\akh tuklumpa 
\acl tuclumpa 
\akl tuklumpa 
\ame tuklumpa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ee87e542-8e50-4eac-b96e-91056fb95dee" ownerguid="6fb1d03c-b0fe-49b7-a473-168f12a54a36"> -<ExampleWords> -<AUni ws="en">last thing at night, in the middle of the night, the early hours, till all hours</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words indicate that something happens late at night?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ee88e96f-456f-425b-a5eb-02297be642f7" ownerguid="ef2e866b-c871-4672-b8d4-54895820a060"> -<Form> -<AUni ws="qvm-x-ach">wilapishtëra</AUni> -<AUni ws="qvm-x-acl">wilapishtëra</AUni> -<AUni ws="qvm-x-akh">wilapishtëra</AUni> -<AUni ws="qvm-x-akl">wilapishtëra</AUni> -<AUni ws="qvm-x-ame">wilapishtïra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="ee8a20b7-4202-489a-b8cd-bdebaf770313" ownerguid="2d894eca-8f6c-4b63-b265-0914a65d9be9"> -<Abbreviation> -<AUni ws="en">5.2.3.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.317" /> -<DateModified val="2022-9-23 16:55:8.317" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to making alcoholic beverages.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Alcohol preparation</AUni> -</Name> -<OcmCodes> -<Uni>274 Beverage Industries</Uni> -</OcmCodes> -<Questions> -<objsur guid="c11908a5-b231-4729-bdc1-0672649cb422" t="o" /> -<objsur guid="57f66bc6-593b-4ec7-8285-fbdba4da5111" t="o" /> -<objsur guid="76097e10-4c0d-4618-b908-e8f3130d0def" t="o" /> -<objsur guid="b4e42fd5-e183-43e9-b63d-8de8b9b0abaa" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="ee8fef09-1ba5-499f-a736-f2f0081b6cce"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sa:badu</AUni> -<AUni ws="qvm-x-acl">sa:badu; sa:badu; sa:bado</AUni> -<AUni ws="qvm-x-akh">sa:badu</AUni> -<AUni ws="qvm-x-akl">sa:badu; sa:badu; sa:bado</AUni> -<AUni ws="qvm-x-ame">sa:badu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sábado</AUni> -<AUni ws="qvm-x-acl">+sábado</AUni> -<AUni ws="qvm-x-akh">+sábado</AUni> -<AUni ws="qvm-x-akl">+sábado</AUni> -<AUni ws="qvm-x-ame">+sábado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.478" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2d64b8ea-232e-488a-aee0-46d5bf4bc12a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sábado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4b858c9d-5fb3-4fa4-817e-06452c516d5e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="96be0686-a1d5-438a-8994-106b42cbc6da" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sábado 
\entryTyp root 
\gENG saturday 
\gSPN sabado 
\e +sábado 
\c N0 
\ach sa:badu 
\akh sa:badu 
\acl sa:badu / _# 
\acl sa:badu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sa:bado +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sa:badu / _# 
\akl sa:badu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sa:bado +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sa:badu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ee909350-1120-4dcc-9e0b-ee45d7ffcd77" ownerguid="f5642647-9b9c-499b-a66e-349593c863f1"> -<ExampleWords> -<AUni ws="en">gag, hush, muffle, silence (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to stopping someone from talking?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ee950a97-85b1-48ab-ac62-9ea9eb0f2890" ownerguid="b4fe4698-54a2-4bcd-9490-e07ee1ee97af"> -<ExampleWords> -<AUni ws="en">cry, weep, be in tears, tearful, have tears in your eyes, weeping, weepy, squall</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to crying?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="ee9896de-c435-4c3b-8c67-6faa9aebe2cb" ownerguid="a4f6fc2a-b7cb-44a6-9f09-4a635cb6057d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">warmi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">warmi; warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">warmi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">warmi; warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">warmi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ddf5b3ec-6ef7-4a2a-b160-365cb7d372df" t="r" /> -</Morph> -<Msa> -<objsur guid="e9ece695-28de-48a2-aff1-266bce7d2a60" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="ee99b043-6317-44be-a084-da318d970d9f" ownerguid="4b36e29e-c7e0-4b62-8b9f-1564aff4be75"> -<Form> -<AUni ws="qvm-x-ach">yanga</AUni> -<AUni ws="qvm-x-acl">yanga</AUni> -<AUni ws="qvm-x-akh">yanqa</AUni> -<AUni ws="qvm-x-akl">yanqa</AUni> -<AUni ws="qvm-x-ame">yanqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="ee99e480-3bdf-4d53-90a5-05a56cadcb38" ownerguid="e919878e-bdaf-423b-9db9-1d129ecc495d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="ee9b5445-e27f-4ee3-8b9e-e2480469ec61" ownerguid="f5cde8b9-571a-448a-b7d0-6aa6259dd481"> -<Form> -<AUni ws="qvm-x-ach">jina</AUni> -<AUni ws="qvm-x-acl">jina</AUni> -<AUni ws="qvm-x-akh">jina</AUni> -<AUni ws="qvm-x-akl">jina</AUni> -<AUni ws="qvm-x-ame">hina</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="ee9eede3-1b1e-4290-bae4-cc5739488bd7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wayruru</AUni> -<AUni ws="qvm-x-acl">wayruru; wayruru; wayruro</AUni> -<AUni ws="qvm-x-akh">wayruru</AUni> -<AUni ws="qvm-x-akl">wayruru; wayruru; wayruro</AUni> -<AUni ws="qvm-x-ame">wayruru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wayruru</AUni> -<AUni ws="qvm-x-acl">*wayruru</AUni> -<AUni ws="qvm-x-akh">*wayruru</AUni> -<AUni ws="qvm-x-akl">*wayruru</AUni> -<AUni ws="qvm-x-ame">*wayruru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.627" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d2757881-27a0-48d9-af8e-f6842c1aec99" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wayruru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f7be9cda-c7e3-43e1-b8e7-34d700958d5a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e16d034d-dcfa-42eb-b4fb-f5a97037f1b4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wayruru 
\entryTyp root 
\gENG amulet 
\gSPN amuleta 
\e *wayruru 
\c N0 
\mp NeverMonophthongized 
\ach wayruru 
\akh wayruru 
\acl wayruru / _# 
\acl wayruru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wayruro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wayruru / _# 
\akl wayruru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl wayruro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wayruru</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="eea47775-9c96-4f35-b6c1-e80de498fa7b" ownerguid="b8e633f7-ca67-40cb-84e7-8b42887d161b"> -<ExampleWords> -<AUni ws="en">philosophy, orientation, frame of reference, worldview</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a set of beliefs about truth?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="eea54028-6c5e-4129-b971-8a7abd57f9ad" ownerguid="e470ad6b-6e80-4df8-b4b9-f558890c9c4d"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Jdg 8.11 Tsay caminoga pasargan Nobapita y Jogbehapita este cag lädupami.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="eea66709-56bb-4bb3-835c-6e9257b859fa" ownerguid="d72971a3-484c-431e-a2b9-9f1eba996c20"> -<Form> -<AUni ws="qvm-x-ach">cuerda</AUni> -<AUni ws="qvm-x-acl">cuerda</AUni> -<AUni ws="qvm-x-akh">cuerda</AUni> -<AUni ws="qvm-x-akl">cuerda</AUni> -<AUni ws="qvm-x-ame">cuerda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="eea7c79b-6150-4aba-8105-a94b7e6aeab7" ownerguid="7d54d3dd-5fb2-4640-9bcf-c234696af894"> -<Abbreviation> -<AUni ws="en">4.3.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.235" /> -<DateModified val="2022-9-23 16:55:8.235" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being faithful--to continue to love and do good to someone so that they can always trust you.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Faithful</AUni> -</Name> -<Questions> -<objsur guid="d243b4d7-68c1-4d3a-b465-7d3a815c58df" t="o" /> -<objsur guid="51e3b004-58cd-402d-9231-e3a6380c94e8" t="o" /> -<objsur guid="17a2677a-c3cd-4762-8ce4-78a01bf211f2" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="eeafbde1-35bf-484b-bb5b-465e755b2d59" ownerguid="2cc059e7-dc71-49e5-a67d-a417245ae4e5"> -<Form> -<AUni ws="qvm-x-ach">guemapa</AUni> -<AUni ws="qvm-x-acl">guemapa</AUni> -<AUni ws="qvm-x-akh">qemapa</AUni> -<AUni ws="qvm-x-akl">qemapa</AUni> -<AUni ws="qvm-x-ame">qimapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="eeafd87b-f7ee-4ef4-9562-98887a44177a" ownerguid="21f21658-a69a-491c-a37b-156a8f4ad3fb"> -<ExampleWords> -<AUni ws="en">unsuitable, not suitable, not be cut out for, wrong, ill-suited to, not suited to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to someone being unsuitable for a job?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="eeb02a53-fa5f-4d29-885d-6df1b02c4927" ownerguid="1debc71f-e27c-4fe7-bb7b-b308608c09d9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="73f49eba-0c1e-427e-b107-5d48267df817" t="o" /> -</Examples> -<Gloss> -<AUni ws="es">colina</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d80f6a75-f4f8-434a-828d-717e5419db37" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="eeb38cbb-7102-424d-8e2d-7acabf83f477"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wansa</AUni> -<AUni ws="qvm-x-acl">wansa</AUni> -<AUni ws="qvm-x-akh">wansa</AUni> -<AUni ws="qvm-x-akl">wansa</AUni> -<AUni ws="qvm-x-ame">wansa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wansa</AUni> -<AUni ws="qvm-x-acl">*wansa</AUni> -<AUni ws="qvm-x-akh">*wansa</AUni> -<AUni ws="qvm-x-akl">*wansa</AUni> -<AUni ws="qvm-x-ame">*wansa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.483" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="76ed2c72-4dae-4af3-b051-f48eeeaf82d4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wansa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b1cfa593-301a-42db-b1f0-ba847d6cb571" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="eca302e4-7c0b-4691-bddb-85d7ac4946c1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wansa 
\entryTyp root 
\gENG 
\gSPN 
\e *wansa 
\c N0 
\ach wansa 
\akh wansa 
\acl wansa 
\akl wansa 
\ame wansa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="eeb54df3-910b-47f1-bda8-299879ef8502" ownerguid="6bd023f6-730e-44c2-ae8f-78df967e2e18"> -<ExampleWords> -<AUni ws="en">in tow, trailing, trailer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to something being pulled along behind?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="eeb617bc-720f-4434-ad8f-6106ca19f99e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ganyantin</AUni> -<AUni ws="qvm-x-acl">ganyantin; ganyantin; ganyanten</AUni> -<AUni ws="qvm-x-akh">qanyantin</AUni> -<AUni ws="qvm-x-akl">qanyantin; qanyantin; qanyanten</AUni> -<AUni ws="qvm-x-ame">qanyantin</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qanyantin</AUni> -<AUni ws="qvm-x-acl">*qanyantin</AUni> -<AUni ws="qvm-x-akh">*qanyantin</AUni> -<AUni ws="qvm-x-akl">*qanyantin</AUni> -<AUni ws="qvm-x-ame">*qanyantin</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.84" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7c49d037-773f-4a8a-a29d-e716692389e2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qanyantin</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="69965c17-d852-46e3-8a2d-158baba5bb53" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1add5ab4-6950-4327-bff5-139a3ce7e3f4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qanyantin 
\entryTyp root 
\gENG 
\gSPN anteayer 
\e *qanyantin 
\c N0 
\mp +FinalC 
\ach ganyantin 
\akh qanyantin 
\acl ganyantin / _# 
\acl ganyantin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ganyanten +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qanyantin / _# 
\akl qanyantin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qanyanten +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame qanyantin</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="eeb80d1c-73bc-44d4-9633-e8a3faf62966" ownerguid="1a76e7ee-eaed-4535-ae7d-b1f6d6e5a07d"> -<Form> -<AUni ws="qvm-x-ach">chacausha</AUni> -<AUni ws="qvm-x-acl">chacausha</AUni> -<AUni ws="qvm-x-akh">chakawsha</AUni> -<AUni ws="qvm-x-akl">chakawsha</AUni> -<AUni ws="qvm-x-ame">chakawsha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="eeb83c20-60f8-4400-b299-7134b2a75ad9" ownerguid="d5368649-32f0-4ce2-970c-cfac70f94f07"> -<Form> -<AUni ws="qvm-x-ach">destïnu</AUni> -<AUni ws="qvm-x-acl">destïnu; destïnu; destïno</AUni> -<AUni ws="qvm-x-akh">destïnu</AUni> -<AUni ws="qvm-x-akl">destïnu; destïnu; destïno</AUni> -<AUni ws="qvm-x-ame">destïnu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="eebb217e-ec6b-47de-8d94-a52fb242ed0c" ownerguid="738a09a5-59df-40f9-8a4e-176e00d03bbf"> -<ExampleWords> -<AUni ws="en">sword, knife, bayonet, dagger, bolo, machete, rapier, saber, scimitar, stiletto</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What types of swords are there?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="eec72226-106c-4825-b245-6e18110ee917" ownerguid="22acd714-b11e-462a-bd8e-6ff50843c103"> -<Abbreviation> -<AUni ws="en">6.5.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.458" /> -<DateModified val="2022-9-23 16:55:8.458" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a roof.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Roof</AUni> -</Name> -<Questions> -<objsur guid="d582c9e0-d92d-4759-bd7d-43acfb10b46e" t="o" /> -<objsur guid="d4e08994-9974-4b72-88ff-65cce0aa718c" t="o" /> -<objsur guid="d2eb4ea7-b5aa-4ab9-aa4f-d4a0fe03a28c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="eec7eeb9-8922-43fc-81da-46d32095e6c2" ownerguid="119fefff-529d-43be-8a41-6f011df057a1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="eecc6742-6d5c-441b-9114-0daa3d79096b" ownerguid="e27b1567-14cc-4822-a19e-f5a02c67b2a3"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 16.9 Cachcachyayparagmi rabyaycun.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="eecdbddf-5ddb-49c6-8c39-c6e24b7030ed" ownerguid="60a8b5bc-b30f-42c3-9bb1-6c68928d1aaa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7cae4727-229f-4e7e-80e0-3ec4573abc4e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="eed0654e-45ce-4ef0-b34f-a2e02cf8b94c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">profetiza</AUni> -<AUni ws="qvm-x-acl">profetiza</AUni> -<AUni ws="qvm-x-akh">profetiza</AUni> -<AUni ws="qvm-x-akl">profetiza</AUni> -<AUni ws="qvm-x-ame">profetiza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+profetizar</AUni> -<AUni ws="qvm-x-acl">+profetizar</AUni> -<AUni ws="qvm-x-akh">+profetizar</AUni> -<AUni ws="qvm-x-akl">+profetizar</AUni> -<AUni ws="qvm-x-ame">+profetizar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.941" /> -<DateModified val="2022-10-10 21:19:47.691" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cdac6c08-8a47-4cb3-9e07-09ea5fabff60" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+profetizar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="065b0866-4871-4d85-b736-a0e657acca01" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="74461226-babd-4ce9-a921-8a7ed8cc39c4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +profetizar 
\entryTyp root 
\gENG prophesy 
\gSPN 
\e +profetizar 
\c V1 
\ach profetiza 
\akh profetiza 
\acl profetiza 
\akl profetiza 
\ame profetiza 
\i NUM 23.8 Tsayno nimaptinpis Tayta Dios mana munaykaptenqa ¿imanöpataq maldicionäman?</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="eed3064f-530f-46fc-9115-3f94ac70c46a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cushpi</AUni> -<AUni ws="qvm-x-acl">cushpi; cushpi; cushpe</AUni> -<AUni ws="qvm-x-akh">kushpi</AUni> -<AUni ws="qvm-x-akl">kushpi; kushpi; kushpe</AUni> -<AUni ws="qvm-x-ame">kushpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kushpi</AUni> -<AUni ws="qvm-x-acl">*kushpi</AUni> -<AUni ws="qvm-x-akh">*kushpi</AUni> -<AUni ws="qvm-x-akl">*kushpi</AUni> -<AUni ws="qvm-x-ame">*kushpi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.23" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="247e448a-dc88-4a1b-917d-5d4e4addbc0d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kushpi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a08f1569-36b9-4cb7-8187-00d9cbeae32a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="220d90fe-0082-4c5c-93e1-20c527d3762b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kushpi 
\entryTyp root 
\gENG 
\gSPN 
\e *kushpi 
\c N0 
\mp +FinalI 
\ach cushpi 
\akh kushpi 
\acl cushpi / _# 
\acl cushpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cushpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kushpi / _# 
\akl kushpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kushpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kushpi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="eed6426b-6580-4d16-84d9-92578a76c823" ownerguid="c2a254da-0fb7-4748-ab3d-a4cde4aa5a82"> -<Form> -<AUni ws="qvm-x-ach">masha</AUni> -<AUni ws="qvm-x-acl">masha</AUni> -<AUni ws="qvm-x-akh">masha</AUni> -<AUni ws="qvm-x-akl">masha</AUni> -<AUni ws="qvm-x-ame">masha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="eed67b10-0e1d-4e45-b54f-aca3439c311a" ownerguid="a7712dab-7710-4b07-8582-3086d0c0bcc0"> -<Form> -<AUni ws="qvm-x-ach">chaucha</AUni> -<AUni ws="qvm-x-acl">chaucha</AUni> -<AUni ws="qvm-x-akh">chawcha</AUni> -<AUni ws="qvm-x-akl">chawcha</AUni> -<AUni ws="qvm-x-ame">chawcha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="eed8d3b5-ed51-4f52-9080-e3c7b4a39222"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">turwata; turwata:</AUni> -<AUni ws="qvm-x-acl">turwata; turwata:</AUni> -<AUni ws="qvm-x-akh">turwata; turwata:</AUni> -<AUni ws="qvm-x-akl">turwata; turwata:</AUni> -<AUni ws="qvm-x-ame">turwata; turwata:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+turbarse.1</AUni> -<AUni ws="qvm-x-acl">+turbarse.1</AUni> -<AUni ws="qvm-x-akh">+turbarse.1</AUni> -<AUni ws="qvm-x-akl">+turbarse.1</AUni> -<AUni ws="qvm-x-ame">+turbarse.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.170" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e084c12e-7e1d-4e94-b199-1ab7f69a62c9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+turbarse.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f3090677-b6da-4321-8a18-7f3690123561" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0c267548-f59f-4017-a2dc-5858faf90d88" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +turbarse.1 
\entryTyp root 
\gENG worry 
\gSPN preocuparse 
\e +turbarse.1 
\c V1 
\mp +assimilated 
\mp +underlong 
\ach turwata foreshortened 
\ach turwata: 
\mp +underlong 
\akh turwata foreshortened 
\akh turwata: 
\acl turwata foreshortened 
\acl turwata: 
\akl turwata foreshortened 
\akl turwata: 
\mp +underlong 
\ame turwata foreshortened 
\ame turwata: 
\mp +FinalLength</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="eedc2a51-d37d-45e5-bd73-9db221660bcb" ownerguid="f0603e9a-c085-453b-b8bf-3663358ee837"> -<Form> -<AUni ws="qvm-x-ach">itsan</AUni> -<AUni ws="qvm-x-acl">itsan</AUni> -<AUni ws="qvm-x-akh">itsan</AUni> -<AUni ws="qvm-x-akl">itsan</AUni> -<AUni ws="qvm-x-ame">itsan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="eee6651d-3b61-4e2e-ab45-0560bf256846" ownerguid="cd8b2a8b-687b-42e9-91e7-cfb8812b64ee"> -<ExampleWords> -<AUni ws="en">mistake, miscalculation, misjudgment, error of judgment, be a bad move, blunder, bad tactics, muddle, confusion, mess something up, make a mess of something</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a serious mistake in judgment or planning?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="eee88182-8ede-4ded-b091-1ae920852d13"> -<Analyses> -<objsur guid="e6da67fe-1112-4161-a37e-7004e5632e5e" t="o" /> -</Analyses> -<Checksum val="1485821062" /> -<Form> -<AUni ws="qvm-x-akh">rikakamun</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="eee8e4d0-4d7a-4daf-a613-fddc45d2f397" ownerguid="a6616a09-df51-4ca6-850f-733ee73c8750"> -<ExampleWords> -<AUni ws="en">growing seaweed, scuba diving, pearl diving, offshore drilling, fishpond</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What other work is done in the sea?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="eeea96cb-1268-4a35-9667-fa435e500f01" ownerguid="81a61411-2402-4397-bc49-30683b850ce6"> -<Form> -<AUni ws="qvm-x-ach">cachä</AUni> -<AUni ws="qvm-x-acl">cachä</AUni> -<AUni ws="qvm-x-akh">kachä</AUni> -<AUni ws="qvm-x-akl">kachä</AUni> -<AUni ws="qvm-x-ame">kachä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="eeeaa65f-bafe-4ef5-b5fb-cb5348d4e042" ownerguid="526e88aa-02ae-4e04-aace-c7501fcd57d7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">make.racket</AUni> -<AUni ws="es">hacer.bulla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7354cc54-fabd-433e-9d3f-c15e4554621d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="eeeab716-7f5c-4254-bbd3-297c796233bd" ownerguid="29d131d2-5e52-49e3-83b1-c872d331cf03"> -<ExampleWords> -<AUni ws="en">useless, be of no use, be no use, be no good, unhelpful, be of no help, be no help</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is useless?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="eeeb0122-ee3c-49ed-b11b-23c821cf8f31" ownerguid="c13ca251-6103-4475-85af-933311923f2c"> -<ExampleWords> -<AUni ws="en">aloft, overhanging, overhead, upper</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is above something else?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="eeedff8f-4a3f-43f2-a11e-a1d3b1fb93d1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">agu</AUni> -<AUni ws="qvm-x-acl">agu; agu; ago</AUni> -<AUni ws="qvm-x-akh">aqu</AUni> -<AUni ws="qvm-x-akl">aqu; aqu; aqo</AUni> -<AUni ws="qvm-x-ame">aqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aqu.n</AUni> -<AUni ws="qvm-x-acl">*aqu.n</AUni> -<AUni ws="qvm-x-akh">*aqu.n</AUni> -<AUni ws="qvm-x-akl">*aqu.n</AUni> -<AUni ws="qvm-x-ame">*aqu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.931" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="23d49622-1677-4c9d-bc20-fa5c13735557" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aqu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e9f0d471-7d3f-4eea-ae26-0c7ed80dca0f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c6d5490c-f64c-4fe7-a651-287175fbc8e7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aqu.n 
\entryTyp root 
\gENG sandy 
\gSPN arena 
\e *aqu.n 
\c N0 
\ach agu 
\akh aqu 
\acl agu / _# 
\acl agu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ago +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl aqu / _# 
\akl aqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl aqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame aqu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="eeee02e1-157e-4786-ab92-80c92e5023b8" ownerguid="22acd714-b11e-462a-bd8e-6ff50843c103"> -<Abbreviation> -<AUni ws="en">6.5.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.458" /> -<DateModified val="2022-9-23 16:55:8.458" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a window.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Window</AUni> -</Name> -<Questions> -<objsur guid="0df301b1-6ed0-42ca-85be-d9ff267a9ffb" t="o" /> -<objsur guid="839e961d-65af-46f6-a3a3-e9bd0689a31a" t="o" /> -<objsur guid="e91feace-976e-40a1-be7e-89ce33490795" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="eef8c50e-c391-482c-9f60-1bba2d8892b3" ownerguid="cac1d7a8-7382-466e-ba4a-ba2bfe50f13b"> -<Abbreviation> -<AUni ws="en">3.5.9.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.184" /> -<DateModified val="2022-9-23 16:55:8.184" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to radio and television.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Radio, television</AUni> -</Name> -<OcmCodes> -<Uni>207 Radio and Television</Uni> -</OcmCodes> -<Questions> -<objsur guid="c24700bc-8235-49e5-84ce-59b8781e7494" t="o" /> -<objsur guid="13a99198-c3f6-4c25-89c3-d0669455c542" t="o" /> -<objsur guid="25b1d7fe-8d8a-4651-bab0-f285a39c87b4" t="o" /> -<objsur guid="c918bd2d-f67d-4299-9acc-7629f21e453a" t="o" /> -<objsur guid="1b5dd084-8a94-4a98-9a43-1fcd284a5bef" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="eef93054-f33c-4267-a477-d3b94b723a89" ownerguid="d100930b-6187-4722-ba21-3ec5de0b434b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">depth</AUni> -<AUni ws="es">fondo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6822b24c-d18c-4fc8-9a1e-a63dcccfc408" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="eefa4e95-028d-4f05-bceb-f2a328dedf02" ownerguid="ec118a28-fd23-48b3-8819-bfe1329f028d"> -<ExampleWords> -<AUni ws="en">reflect, mirror (v)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to reflecting light?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="eefa979c-507b-4b84-a49f-89f6dae2be41" ownerguid="ddc96103-4bc5-44d3-9412-c57569d2a9f5"> -<ExampleWords> -<AUni ws="en">carnival, fair, circus, parade, county fair, state fair</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of festivals are there?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="eefb29ad-f416-4367-b09c-bb45b5e9cf21" ownerguid="3c257201-65a4-4e60-85dd-9fe11b052aaa"> -<Form> -<AUni ws="qvm-x-ach">nqui</AUni> -<AUni ws="qvm-x-acl">nqui</AUni> -<AUni ws="qvm-x-akh">nki</AUni> -<AUni ws="qvm-x-akl">nki</AUni> -<AUni ws="qvm-x-ame">nki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="eefea3f5-b182-4719-8a3e-e0a60840c7ad" ownerguid="92dd22f1-1c76-4735-aa3f-98fc742469ab"> -<Form> -<AUni ws="qvm-x-ach">mautsa</AUni> -<AUni ws="qvm-x-acl">mautsa</AUni> -<AUni ws="qvm-x-akh">mawtsa</AUni> -<AUni ws="qvm-x-akl">mawtsa</AUni> -<AUni ws="qvm-x-ame">mawtsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="ef00129c-2860-41ad-bcc6-d36a2adffae5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cula</AUni> -<AUni ws="qvm-x-acl">cula</AUni> -<AUni ws="qvm-x-akh">kula</AUni> -<AUni ws="qvm-x-akl">kula</AUni> -<AUni ws="qvm-x-ame">kula</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kulla</AUni> -<AUni ws="qvm-x-acl">*kulla</AUni> -<AUni ws="qvm-x-akh">*kulla</AUni> -<AUni ws="qvm-x-akl">*kulla</AUni> -<AUni ws="qvm-x-ame">*kulla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.3" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5925a09a-3724-4718-85f9-d7f2c6c2e1bd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kulla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="02dbd7b1-4e4c-4dea-9d1d-cc496d3e4b59" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c964116f-8581-46ed-9c28-42316f94fb38" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kulla 
\entryTyp root 
\gENG 
\gSPN 
\e *kulla 
\c V1 
\ach cula 
\akh kula 
\acl cula 
\akl kula 
\ame kula 
\i Tagay wamra rabyashga car culayla culaycan. Manami imatapis rimantsu. Jämaylatami cachaycan. 
\i Wachanar warmi culaycan. Manami imatapis rimacunatsu, sinöga sengalanpa wayrata pücan. 
\i Wäcapis wachar culaycan. Nnnnfff, nnnnfff, nin.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="ef01bcc8-8978-4dd5-8c63-79c4a1729998" ownerguid="206a3c27-7631-461e-9efe-2fa790455c7c"> -<Form> -<AUni ws="qvm-x-ach">pesca</AUni> -<AUni ws="qvm-x-acl">pesca</AUni> -<AUni ws="qvm-x-akh">pesca</AUni> -<AUni ws="qvm-x-akl">pesca</AUni> -<AUni ws="qvm-x-ame">pesca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="ef01ee77-99e9-4aba-8d68-13862f54416b" ownerguid="a1474cc6-bb54-4375-bdbf-aaa35816a8cd"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="ef025cd9-dd92-442b-a8f9-fe7ac944ccec" ownerguid="6430b89c-7077-418a-a558-51f0e3f2c1a6"> -<Abbreviation> -<AUni ws="en">7.3.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.528" /> -<DateModified val="2022-9-23 16:55:8.528" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for verbs for catching something that is thrown or dropped</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Catch</AUni> -</Name> -<Questions> -<objsur guid="a5818c97-176d-4b69-abc6-62c7565c8a41" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="ef0284d8-9699-42e8-927e-d0484a27678f" ownerguid="a7522f0d-f5fe-4f37-8daf-3ec0db391cb1"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="WfiAnalysis" guid="ef04e630-fd6e-4db8-aed8-e744a4b9f144" ownerguid="6ba29643-fcc4-49a7-974e-40b10ac2bac0"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="be5ac108-4166-435e-8b86-069a2a0dc6e3" t="o" /> -<objsur guid="8d31fe3a-1c4b-4a7e-a9f8-94e29079930b" t="o" /> -<objsur guid="ca047b5b-2d4b-4304-9300-2d75e3328037" t="o" /> -<objsur guid="0668aafc-54f0-4bba-8d71-238b984655df" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="ef052d68-aae4-4d12-9c65-1467aeae2e17" ownerguid="ac876e5b-d93a-4188-b511-c928871446cd"> -<Form> -<AUni ws="qvm-x-ach">lïnu</AUni> -<AUni ws="qvm-x-acl">lïnu; lïnu; lïno</AUni> -<AUni ws="qvm-x-akh">lïnu</AUni> -<AUni ws="qvm-x-akl">lïnu; lïnu; lïno</AUni> -<AUni ws="qvm-x-ame">lïnu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ef0ca465-d08a-4c2c-a5aa-06fe90ea86f8" ownerguid="b7801f6e-683b-4d5d-9bab-57f6e593db8c"> -<ExampleWords> -<AUni ws="en">table of contents, index</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a list of things in a book?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ef1154e6-b822-44d9-a5dd-96c5dba4249d" ownerguid="2fc69f71-e9f1-45f9-b88e-bdaf97457fc3"> -<ExampleWords> -<AUni ws="en">hurry (someone), rush (someone)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to causing someone to do something quickly?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ef11db14-6ffb-4c54-9f82-c2a431e85bf4" ownerguid="afe7cc92-e0ad-40d9-be56-aa12d2693a3f"> -<ExampleWords> -<AUni ws="en">someday, one day, a certain day, the other day, some day in the future, one day long ago</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to an indefinite day?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="ef18b9d4-362b-45e4-929a-763a3918e23e" ownerguid="efe35dbf-ae76-4d63-b9ee-47f06f007351"> -<Form> -<AUni ws="qvm-x-ach">nila</AUni> -<AUni ws="qvm-x-acl">nila</AUni> -<AUni ws="qvm-x-akh">nila</AUni> -<AUni ws="qvm-x-akl">nila</AUni> -<AUni ws="qvm-x-ame">nila</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="35058c7a-447a-4ee8-89bd-323da24bf7c5" t="r" /> -</PhoneEnv> -</rt> -<rt class="LexEntry" guid="ef1b0b81-1213-422f-9566-fa24e5513ec2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">vo:ta</AUni> -<AUni ws="qvm-x-acl">vo:ta</AUni> -<AUni ws="qvm-x-akh">vo:ta</AUni> -<AUni ws="qvm-x-akl">vo:ta</AUni> -<AUni ws="qvm-x-ame">vo:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+votar</AUni> -<AUni ws="qvm-x-acl">+votar</AUni> -<AUni ws="qvm-x-akh">+votar</AUni> -<AUni ws="qvm-x-akl">+votar</AUni> -<AUni ws="qvm-x-ame">+votar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.424" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bba46356-8a69-4073-bfff-fe2ca4bd180e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+votar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8b433f50-feb1-41e4-ade6-17da1fd1a2be" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3883358c-f83c-40c3-9693-f37bbbe3d9e0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +votar 
\entryTyp root 
\gENG 
\gSPN 
\e +votar 
\c V1 
\ach vo:ta 
\akh vo:ta 
\acl vo:ta 
\akl vo:ta 
\ame vo:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ef1bb5ad-73ae-423e-8872-bde596910811" ownerguid="30fff450-1aa5-4993-9c14-c8019a5f072e"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">This is true, <but> that is also true.; This is true, <although> that is also true.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">but, yet, still, nevertheless, even so, anyway, all the same, in spite of this, despite this, for all that, though, although</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that something is true in spite of facts or problems that make it seem unlikely?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ef21c62d-2402-4913-8641-36cff59e83c5" ownerguid="5728b699-9a17-4021-9579-76f5d762a090"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sift</AUni> -<AUni ws="es">cerner</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="679ebc93-4eef-4dc0-97ae-527f57230a22" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ef225a57-c513-474c-83a5-48954e5c3777" ownerguid="985f099d-f38c-4957-907a-769d1a45ca10"> -<ExampleWords> -<AUni ws="en">movable, mobile, mobility, portable, loose, fluid, free</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that can move?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ef228aa5-a462-4e2d-a38e-1ae66955d561" ownerguid="608e5f22-68da-4f3d-a99e-c74c454d6fa5"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="ef23f2ca-359a-452d-8168-f55f91c6ef60"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">wawäkunapis</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="ef29b436-621b-49a9-8637-71081f21fa30" ownerguid="80dc5ca1-44ce-4406-add8-2bbe19c122ab"> -<ExampleWords> -<AUni ws="en">turntable, tape recorder, tape deck, tape player, CD player, juke box, music system, hi-fi, stereo, amplifier, speaker, boom box, walkman</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to machines that play music?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ef2aab61-f171-4aa2-bea2-308a8e343338"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ciprés; cipres</AUni> -<AUni ws="qvm-x-acl">ciprés; cipres</AUni> -<AUni ws="qvm-x-akh">ciprés; cipres</AUni> -<AUni ws="qvm-x-akl">ciprés; cipres</AUni> -<AUni ws="qvm-x-ame">ciprés; cipres</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ciprés</AUni> -<AUni ws="qvm-x-acl">+ciprés</AUni> -<AUni ws="qvm-x-akh">+ciprés</AUni> -<AUni ws="qvm-x-akl">+ciprés</AUni> -<AUni ws="qvm-x-ame">+ciprés</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.122" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="be96c99e-8305-4423-ab6c-d357c69f3559" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ciprés</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c9564e5d-6fdc-4261-9a4c-3ad629531e5b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1338098c-7713-4820-a9ac-8a92509c8395" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ciprés 
\entryTyp root 
\gENG 
\gSPN 
\e +ciprés 
\c N0 
\mp +FinalC 
\ach ciprés / _# 
\ach cipres / ~_# 
\akh ciprés / _# 
\akh cipres / ~_# 
\acl ciprés / _# 
\acl cipres / ~_# 
\akl ciprés / _# 
\akl cipres / ~_# 
\ame ciprés / _# 
\ame cipres / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ef2e866b-c871-4672-b8d4-54895820a060"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wilapishte:ra</AUni> -<AUni ws="qvm-x-acl">wilapishte:ra</AUni> -<AUni ws="qvm-x-akh">wilapishte:ra</AUni> -<AUni ws="qvm-x-akl">wilapishte:ra</AUni> -<AUni ws="qvm-x-ame">wilapishti:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*willapistera</AUni> -<AUni ws="qvm-x-acl">*willapistera</AUni> -<AUni ws="qvm-x-akh">*willapistera</AUni> -<AUni ws="qvm-x-akl">*willapistera</AUni> -<AUni ws="qvm-x-ame">*willapistera</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.658" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ee88e96f-456f-425b-a5eb-02297be642f7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*willapistera</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f1ad1267-570d-4f4c-b5de-176d25e862dc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4e0bb4dd-424e-4625-8b65-075352697b81" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *willapistera 
\entryTyp root 
\gENG gossiper 
\gSPN chismoso 
\e *willapistera 
\c N0 
\mp NeverChanged 
\ach wilapishte:ra 
\akh wilapishte:ra 
\acl wilapishte:ra 
\akl wilapishte:ra 
\ame wilapishti:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="ef32036b-a4a7-4a5c-9438-9ba6fc48ae98" ownerguid="9df994ea-c5be-4e4a-b9c8-717049721d0c"> -<Form> -<AUni ws="qvm-x-ach">bisti</AUni> -<AUni ws="qvm-x-acl">bisti; biste</AUni> -<AUni ws="qvm-x-akh">bisti</AUni> -<AUni ws="qvm-x-akl">bisti; biste</AUni> -<AUni ws="qvm-x-ame">bisti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ef349351-024a-4355-9be1-6843903f6165" ownerguid="49bc0d75-4f07-44b4-a50f-bc9a557dc15e"> -<ExampleWords> -<AUni ws="en">related by marriage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being related by marriage?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ef37bb3d-acb9-4963-a22f-0b51b324242d" ownerguid="77d1610f-4757-46de-b5f8-e127dc270dfd"> -<ExampleWords> -<AUni ws="en">shuttle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What are the parts of a loom?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ef3814fe-5002-4b10-8e1d-a61a85a97628" ownerguid="1689ac96-1159-4575-bf5f-d16345f9496c"> -<ExampleWords> -<AUni ws="en">era, age, epoch, the times, generation, this age, the age to come</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to an era?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ef38d3bc-71ac-47cd-bf74-7d3b414ec9bc" ownerguid="5e640c5a-aa6a-4cf0-9ad2-45e88a91c052"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">bozalar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="31364db4-f44f-4375-954c-ccc088d48e96" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ef3b607f-25d2-4721-a8df-e722fe26658c" ownerguid="6bfb7813-3a7d-47e2-88e1-d54034c07e5d"> -<ExampleWords> -<AUni ws="en">advice, tip, recommendation, guidance, counseling, counsel, instructions, idea, proposal, charge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the advice that a person gives?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ef3ba8cd-edf2-4c8a-876c-214aef8eec91" ownerguid="16e5b397-d4d6-4e01-acc9-95780d96ac5f"> -<Form> -<AUni ws="qvm-x-ach">sagrädu</AUni> -<AUni ws="qvm-x-acl">sagrädu; sagrädu; sagrädo</AUni> -<AUni ws="qvm-x-akh">sagrädu</AUni> -<AUni ws="qvm-x-akl">sagrädu; sagrädu; sagrädo</AUni> -<AUni ws="qvm-x-ame">sagrädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="ef3dae4d-47a9-4631-bd3f-c25d309a6732"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ta; ta:</AUni> -<AUni ws="qvm-x-acl">ta; ta:</AUni> -<AUni ws="qvm-x-akh">ta; ta:</AUni> -<AUni ws="qvm-x-akl">ta; ta:</AUni> -<AUni ws="qvm-x-ame">ta; ta:</AUni> -</Custom> -<AlternateForms> -<objsur guid="50ea2908-5098-4d63-810c-ee9231fcdd1d" t="o" /> -<objsur guid="dbd3b2d3-24d3-46e7-a679-337e100eee76" t="o" /> -</AlternateForms> -<CitationForm> -<AUni ws="qvm-x-ach">*tiya</AUni> -<AUni ws="qvm-x-acl">*tiya</AUni> -<AUni ws="qvm-x-akh">*tiya</AUni> -<AUni ws="qvm-x-akl">*tiya</AUni> -<AUni ws="qvm-x-ame">*tiya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.934" /> -<DateModified val="2022-10-16 15:25:40.826" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="06d46bf0-084f-4876-8329-a11eab40b171" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tiya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="49886695-7a83-4ac8-8f88-7deec4238172" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="26c7a8f4-8a4f-41a2-ba15-26f5154c1931" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tiya 
\entryTyp root 
\gENG reside 
\gSPN residir 
\e *tiya 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach ta foreshortened 
\ach ta: 
\akh ta foreshortened 
\akh ta: 
\acl ta foreshortened 
\acl ta: 
\akl ta foreshortened 
\akl ta: 
\ame ta foreshortened 
\ame ta: 
\mcc *tiya / ~_ INF OBJ JUST.V 1P.V 
\mcc *tiya / ~_ INF SIM1.4 
\mcc *tiya / ~_ [ben] 
\mcc *tiya / ~_ INSTL1 
\mcc *tiya / ~_ INF OBJ JUST 1P 
\mcc *tiya / ~_ PASS 
\mcc *tiya / ~_ SUD 
\mcc *tayta / ~_ SIDE2 
\mcc *tiya / ~_ INF OBJ [with] 
\mcc *tiya / ~_ INF [ques] 
\mcc *tiya / ~_ [y] # 
\mcc *tiya / ~_ REFDIR 
\mcc *tiya / ~_ INF PLUR 
\mcc *tiya / ~_ IN1 NMN 
\mcc *tiya / ~_ INF BCM1.1 1</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="ef409fc6-bd89-4cc6-ade5-abb882272313" ownerguid="d030f0c7-31a3-47da-be35-46f1eba63ae9"> -<Abbreviation> -<AUni ws="en">3.4.1.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.123" /> -<DateModified val="2022-9-23 16:55:8.123" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to preferring one thing over another--to like something more than something else.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Prefer</AUni> -</Name> -<Questions> -<objsur guid="e7d34aa9-87ef-403f-8512-b9bc0a59d89d" t="o" /> -<objsur guid="ea5d47dd-5f7e-4328-b96a-7d34ba819930" t="o" /> -<objsur guid="018b16c4-439f-4498-b9b6-7772a289a768" t="o" /> -<objsur guid="199bd4f1-add4-464c-912d-70d515559655" t="o" /> -<objsur guid="1e2f7cf8-0647-4962-99d3-56de7c57a6e5" t="o" /> -<objsur guid="fcea4fa2-8ed8-4c08-a0e5-899c2a889c5f" t="o" /> -<objsur guid="d2cfe679-fd93-47b8-be66-ab526b6a12ce" t="o" /> -<objsur guid="ccb9972b-156f-466f-aa95-9e93a4a290a5" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="ef42ad47-5143-4668-a2c5-a4542d3c0dce" ownerguid="5eb6d0d0-79d3-41e5-b4bc-576076f05dc2"> -<Form> -<AUni ws="qvm-x-ach">rashca</AUni> -<AUni ws="qvm-x-acl">rashca</AUni> -<AUni ws="qvm-x-akh">rashka</AUni> -<AUni ws="qvm-x-akl">rashka</AUni> -<AUni ws="qvm-x-ame">rashka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ef45d4cc-73c0-4e8c-9487-6524d3f46c41" ownerguid="f3dbb078-6265-4861-a6e3-46cc151c5d72"> -<ExampleWords> -<AUni ws="en">complaint, complaining, grumbling, protest, whining</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something someone says when complaining?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ef4e0371-17fb-401c-993f-3b808a9a5dff" ownerguid="c52e3809-7b7b-4bd7-88b4-1aa9b36fef05"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ef4ea1dc-50f0-41e4-8a71-f796d7e016f9" ownerguid="ce18ca65-970a-46e9-abf2-75964f7c6196"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">strengthen</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="95391fe2-d166-40bf-8c6c-5844f0f00e0b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="ef4eea1e-40e5-4c5b-bd23-433833dbd81b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">juiciu</AUni> -<AUni ws="qvm-x-acl">juiciu</AUni> -<AUni ws="qvm-x-akh">juiciu</AUni> -<AUni ws="qvm-x-akl">juiciu</AUni> -<AUni ws="qvm-x-ame">juiciu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+juicio.n</AUni> -<AUni ws="qvm-x-acl">+juicio.n</AUni> -<AUni ws="qvm-x-akh">+juicio.n</AUni> -<AUni ws="qvm-x-akl">+juicio.n</AUni> -<AUni ws="qvm-x-ame">+juicio.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.892" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6b293225-2305-4e4c-9471-5cc8d3723d60" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+juicio.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e39fc040-3dc7-4333-948c-e84db953afde" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f44a7a72-baf2-4454-9d09-9b108f0965c6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +juicio.n 
\entryTyp root 
\gENG judgment 
\gSPN juicio 
\e +juicio.n 
\c N0 
\mp NeverChanged 
\ach juiciu 
\akh juiciu 
\acl juiciu 
\akl juiciu 
\ame juiciu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ef4f583a-c847-427e-815f-b87844aa3c99" ownerguid="fd9b8618-1f62-419b-85c3-365a12e85523"> -<ExampleWords> -<AUni ws="en">agree, agreement, concur, accede, think the same, think alike, hold the same view, be of the same mind, be of like mind, like-minded, be in accord, be of one accord, be united, be in the same place, be together on something, be with someone, coincide in our thinking</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to when two people agree?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ef508f17-ff6d-4e79-bbc6-22d192324c20" ownerguid="5217e73d-ccd3-418e-a0bd-50c70f3bb20c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ef5205dc-186f-4a79-8e31-f183e8f7775f" ownerguid="2e5a80f9-35ae-4850-9627-be530832a781"> -<ExampleWords> -<AUni ws="en">thou (archaic), you (archaic)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What pronouns are used to show respect or a lack of respect?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ef53b202-adf9-480a-9d95-872e8a8d183e" ownerguid="e6d92ed9-8276-4ed3-83b3-3a5b0832a826"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ef5943fe-54f2-48e2-9268-877d9d608759" ownerguid="80563285-4de7-4040-8080-a5b22208e7d5"> -<ExampleWords> -<AUni ws="en">attack (n), assault (n), foray, invasion, incursion, strike (n), push, raid (n), offense, offensive, onset, onslaught, aggression, ambush (n), sally, siege, sortie, penetration</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to an attack in war?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ef5b6218-4ae5-4de2-81df-1e7d73e8532b" ownerguid="18595df7-1c69-40db-a7c1-74d490115c0c"> -<ExampleWords> -<AUni ws="en">air out, ventilate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to letting air blow through something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ef5e1d9d-47a1-430d-addb-f03cad39a6fb" ownerguid="31ccb9e3-d434-4430-ac84-486cc5a1c53d"> -<ExampleWords> -<AUni ws="en">difficult, hard, challenging, tough, not easy, arduous, demanding</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a difficult task?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="ef5ee2be-8a32-452a-818b-80191edb8e41" ownerguid="cb362fc7-b3aa-46f4-b9a8-0f8c97fb16fe"> -<Abbreviation> -<AUni ws="en">6.2.1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.397" /> -<DateModified val="2022-9-23 16:55:8.397" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to growing trees. If one crop is cultivated extensively and there are many words related to it, set up a separate domain for it. This has already been done for coconuts and coffee, since they are so common around the world.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Growing trees</AUni> -</Name> -<OcmCodes> -<Uni>245 Arboriculture</Uni> -</OcmCodes> -<Questions> -<objsur guid="e78f1047-fdd8-43ed-9b4b-14e4674a22a0" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="18043b8c-3ff0-46a5-87cc-626f62f967cc" t="o" /> -<objsur guid="22300e2c-3d7d-4c36-a2b7-e2bbb247f793" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="ef619691-c8e2-4182-a27b-24d521ef7291" ownerguid="b948f9df-1600-45d4-9c5a-c0b5fe70f01a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="ef61ca6a-e07d-4903-a158-a57daf18dac6" ownerguid="9c5b2be3-4ac4-4981-aa97-eae8592e85e2"> -<Form> -<AUni ws="qvm-x-ach">fastidia</AUni> -<AUni ws="qvm-x-acl">fastidia</AUni> -<AUni ws="qvm-x-akh">fastidia</AUni> -<AUni ws="qvm-x-akl">fastidia</AUni> -<AUni ws="qvm-x-ame">fastidia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ef632957-0863-4481-987c-e017810c8aad" ownerguid="25382909-4325-49d2-8295-22e02f377ddc"> -<Form> -<AUni ws="qvm-x-ach">togushyacu; togushyaca</AUni> -<AUni ws="qvm-x-acl">togushyacu; togushyaco; togushyaca</AUni> -<AUni ws="qvm-x-akh">toqushyaku; toqushyaka</AUni> -<AUni ws="qvm-x-akl">toqushyaku; toqushyako; toqushyaka</AUni> -<AUni ws="qvm-x-ame">tuqushyaku; tuqushyaka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ef66f7a9-d5e3-43be-bac2-7632bf632ebe" ownerguid="eaed8c63-9f97-4116-927c-19f364a99e72"> -<ExampleWords> -<AUni ws="en">antisocial, standoffish, distant, aloof, dour, reserved</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who does not like to be friendly and wants to be alone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ef6a4726-6dae-49b4-8c9e-5e85d5aca4cb" ownerguid="cb99a086-8c6d-4f90-81db-6afa69ae5455"> -<ExampleWords> -<AUni ws="en">buzz, chirp, chirr, drone, whine, gnaw</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What sounds do insects make?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="ef6d136e-ac1d-48b9-819d-252485534557" ownerguid="87bd0d45-8a94-41cb-9864-90d53a11a4b9"> -<Abbreviation> -<AUni ws="en">4.7.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a legal contract.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Legal contract</AUni> -</Name> -<OcmCodes> -<Uni>675 Contracts</Uni> -</OcmCodes> -<Questions> -<objsur guid="a7cc5d7e-d6ee-425a-8da6-68b7e838906e" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="69455770-fca7-4f41-9e7d-236e8f094ce6" t="o" /> -<objsur guid="6aa8133a-2578-4617-bd9c-6428e897a4f1" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="ef6fa65e-8d91-4c8c-a309-8ce52881e00a" ownerguid="a5466829-4cee-4a52-9a72-cd3eb880da81"> -<Form> -<AUni ws="qvm-x-ach">montüra</AUni> -<AUni ws="qvm-x-acl">montüra</AUni> -<AUni ws="qvm-x-akh">montüra</AUni> -<AUni ws="qvm-x-akl">montüra</AUni> -<AUni ws="qvm-x-ame">montüra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="ef753713-c8f6-4a3d-8dae-d8f867fa005e" ownerguid="2c4232f4-aaca-48a0-9037-a28ba6056c1d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -<Sense> -<objsur guid="483c4235-d996-4230-a3d5-388c1e1be5b9" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="ef77bbf7-0f69-4358-ac9c-9d888b8969bd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wilapishte:ru</AUni> -<AUni ws="qvm-x-acl">wilapishte:ru</AUni> -<AUni ws="qvm-x-akh">wilapishte:ru</AUni> -<AUni ws="qvm-x-akl">wilapishte:ru</AUni> -<AUni ws="qvm-x-ame">wilapishti:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*willapistero</AUni> -<AUni ws="qvm-x-acl">*willapistero</AUni> -<AUni ws="qvm-x-akh">*willapistero</AUni> -<AUni ws="qvm-x-akl">*willapistero</AUni> -<AUni ws="qvm-x-ame">*willapistero</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.658" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dbf74ceb-8bc9-4c37-abca-63df71523534" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*willapistero</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6b7222cb-9123-4fe0-80d9-37705acb6f32" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="102350e7-cac1-4b67-987f-5a0db589495a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *willapistero 
\entryTyp root 
\gENG gossiper 
\gSPN chismoso 
\e *willapistero 
\c N0 
\mp NeverChanged 
\ach wilapishte:ru 
\akh wilapishte:ru 
\acl wilapishte:ru 
\akl wilapishte:ru 
\ame wilapishti:ru 
\i PRO 11.13 Tulu shimega 
\f + 11.13 Waquin runacunaga 
\it Wilapishtëroga
\it* nipäcun.
\f* imata mayashgalantapis wilapacurmi purin.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="ef789617-a0d2-4943-9233-f66e397adf75" ownerguid="dc7adfea-e6bd-4b32-8bfb-32f8746e158e"> -<Form> -<AUni ws="qvm-x-ach">piric</AUni> -<AUni ws="qvm-x-acl">piric</AUni> -<AUni ws="qvm-x-akh">pirik</AUni> -<AUni ws="qvm-x-akl">pirik</AUni> -<AUni ws="qvm-x-ame">pirik</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="ef7a7869-4267-49c6-9901-fb41306a551e" ownerguid="776300df-bc16-4f81-a296-a5cb15251ccc"> -<Form> -<AUni ws="qvm-x-ach">tinti</AUni> -<AUni ws="qvm-x-acl">tinti; tinte</AUni> -<AUni ws="qvm-x-akh">tinti</AUni> -<AUni ws="qvm-x-akl">tinti; tinte</AUni> -<AUni ws="qvm-x-ame">tinti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ef7c4402-a1bb-43db-a1ac-68a5991607cc" ownerguid="8f4c9266-a025-4b7a-bd67-fe0c043bf6f5"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John begins at <exactly> 6 a.m.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">exactly, precisely, on the dot, sharp</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that something happens at an exact time?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="ef81e8c3-e8c7-4bf5-9fdb-ebd4284a70bd" ownerguid="a854b6a5-e727-49a7-8123-dad693a9a80c"> -<Form> -<AUni ws="qvm-x-ach">pita</AUni> -<AUni ws="qvm-x-acl">pita</AUni> -<AUni ws="qvm-x-akh">pita</AUni> -<AUni ws="qvm-x-akl">pita</AUni> -<AUni ws="qvm-x-ame">pita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="ef85a9b9-33af-444b-8f51-82fea5a3b410" ownerguid="c7ff2590-0a87-42f0-a898-fba285de61a7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spicy</AUni> -<AUni ws="es">picante</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0f0ad2bc-1ce3-43c6-9d79-e5ba477bff9e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="ef860ee3-a4a5-4a42-b810-fdf41e35d151" ownerguid="2470ad05-636e-4c85-96ab-cd880da58741"> -<Abbreviation> -<AUni ws="en">4.9.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.296" /> -<DateModified val="2022-9-23 16:55:8.296" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to religious practitioners--people who practice a religion, who are members of the religion, believe in the religion, leaders of the religion, and followers of the religion. Each religion has its own terms for religious practitioners. List these terms separately for each religion. The examples given below are for the Christian religion.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>31J Be a Believer, Christian Faith; 53I Roles and Functions</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Religious person</AUni> -</Name> -<OcmCodes> -<Uni>791 Magicians and Diviners; 792 Prophets and Ascetics; Holy Men; 793 Priesthood</Uni> -</OcmCodes> -<Questions> -<objsur guid="bdf6b9b8-189a-4ff8-a593-c9ecf6009b6e" t="o" /> -<objsur guid="c94fbdb1-cdb7-4feb-b879-436835116b28" t="o" /> -<objsur guid="37e173d5-5cc3-4e00-bd94-4007816343b7" t="o" /> -<objsur guid="a71fd5b0-02bf-4caf-a9db-415148b6e474" t="o" /> -<objsur guid="22d3ead5-1fa4-41ab-8bed-b217e18d8e13" t="o" /> -<objsur guid="f0494d54-8e73-41fe-a259-2cae9dd4a68a" t="o" /> -<objsur guid="23dc1f19-b584-4be8-acb2-15498877ce1e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="ef866d19-5a1c-4276-8c3b-f35ffc486dc5" ownerguid="8e3606ad-ee49-417d-8e25-d156e7ddf406"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="ef876104-eb3e-420d-9c7b-124538a7b2a6" ownerguid="767aa167-af3d-4e11-a68b-ec31f9d2ef1a"> -<Abbreviation> -<AUni ws="en">3.5.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.174" /> -<DateModified val="2022-9-23 16:55:8.174" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to pointing at something--to move a part of your body toward something so that people will look at it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Point at</AUni> -</Name> -<Questions> -<objsur guid="5524c811-b59b-4e49-bc67-939a10190097" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="ef8a6651-0213-45c2-a4ab-ced25803fdf1" ownerguid="ff36330d-8479-46d8-a6a5-dd86e292aee0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">card</AUni> -<AUni ws="es">tarjeta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a7dad0bc-2ae4-469c-9d19-64baebf3a2ed" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoAffixAllomorph" guid="ef8aa2fa-1fcd-42c5-b5e9-7103eb66cd96" ownerguid="84c0d211-d8b5-43db-89ba-207123efad9e"> -<Form> -<AUni ws="qvm-x-ach">paypa</AUni> -<AUni ws="qvm-x-acl">paypa</AUni> -<AUni ws="qvm-x-akh">paypa</AUni> -<AUni ws="qvm-x-akl">paypa</AUni> -<AUni ws="qvm-x-ame">paypa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="ef8b5b4a-2152-48f0-9967-e0ca3b5790f5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tucsi</AUni> -<AUni ws="qvm-x-acl">tucsi; tucse</AUni> -<AUni ws="qvm-x-akh">tuksi</AUni> -<AUni ws="qvm-x-akl">tuksi; tukse</AUni> -<AUni ws="qvm-x-ame">tuksi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tuksi</AUni> -<AUni ws="qvm-x-acl">*tuksi</AUni> -<AUni ws="qvm-x-akh">*tuksi</AUni> -<AUni ws="qvm-x-akl">*tuksi</AUni> -<AUni ws="qvm-x-ame">*tuksi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.977" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4eb578a0-78fa-4b7b-8a69-70ae42058d63" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tuksi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c061ea41-ef33-4f4b-ac25-6acc00481989" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f8dc357b-391b-4ecb-af8a-5e783cfd3bb4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tuksi 
\entryTyp root 
\gENG stab 
\gSPN picar 
\e *tuksi 
\c V2 
\mp +FinalI 
\ach tucsi 
\akh tuksi 
\acl tucsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tucse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tuksi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tukse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tuksi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ef8bd3cf-24d7-4370-ba5f-d4851854b46a" ownerguid="50eb32a2-6dbb-4b7c-b370-aacdcfeaf5fc"> -<ExampleWords> -<AUni ws="en">amuse, entertain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to causing someone to enjoy himself?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ef8e0fe3-d370-4ccb-8006-635222c9e0d0" ownerguid="c6f0f4c1-8c0d-45b3-815a-0597b4ece2de"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="804005a3-78dd-42ee-866b-6df049f0346b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ef901047-9ceb-4083-ac73-91f80168d5dd" ownerguid="f99317b2-0139-4c4b-8b6d-1eac4f3770be"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="ef9134b4-0205-4a92-b95d-96fcc27f8e47"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">hincha</AUni> -<AUni ws="qvm-x-acl">hincha</AUni> -<AUni ws="qvm-x-akh">hincha</AUni> -<AUni ws="qvm-x-akl">hincha</AUni> -<AUni ws="qvm-x-ame">hincha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hincha</AUni> -<AUni ws="qvm-x-acl">+hincha</AUni> -<AUni ws="qvm-x-akh">+hincha</AUni> -<AUni ws="qvm-x-akl">+hincha</AUni> -<AUni ws="qvm-x-ame">+hincha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.721" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a7db782a-78c1-4d8c-a2ce-9691167af5a4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hincha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="826b77bd-112e-40d3-8f55-5eba590f5dd2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="479719fa-0dad-49cc-bc28-b801cb39acdb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hincha 
\entryTyp root 
\gENG fan 
\gSPN hincha 
\e +hincha 
\c N0 
\ach hincha 
\akh hincha 
\acl hincha 
\akl hincha 
\ame hincha</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="ef915375-b47b-4808-b479-2af3d6c90766" ownerguid="cbc9a466-67c0-41a2-a6cf-b958119ad3a4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="ef943f35-c22e-4bac-8925-5e3eb9c5a286"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bo:tas</AUni> -<AUni ws="qvm-x-acl">bo:tas</AUni> -<AUni ws="qvm-x-akh">bo:tas</AUni> -<AUni ws="qvm-x-akl">bo:tas</AUni> -<AUni ws="qvm-x-ame">bo:tas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+botas</AUni> -<AUni ws="qvm-x-acl">+botas</AUni> -<AUni ws="qvm-x-akh">+botas</AUni> -<AUni ws="qvm-x-akl">+botas</AUni> -<AUni ws="qvm-x-ame">+botas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.971" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3f0e629e-93e6-4a6a-a57a-d3b3ea845954" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+botas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ff0de241-b514-4d47-9963-4d842419b117" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="16289511-0f25-4448-a08a-b8eff09ce3a2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +botas 
\entryTyp root 
\gENG boots 
\gSPN botas 
\e +botas 
\c N0 
\mp +FinalC 
\ach bo:tas 
\akh bo:tas 
\acl bo:tas 
\akl bo:tas 
\ame bo:tas</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ef94e0f3-bb37-4cc3-8fcd-aef859192d91" ownerguid="a3fe0ca2-64fe-44db-ac3f-14513385bc25"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">(I'm) fading fast. (I'm really) tired. (I think I'll) go to bed. (I'm not going to) last much longer. (I can't) stay awake.</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(6) What do you say when you are beginning to go to sleep?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ef9556ea-6211-4c47-8fe6-45315845cbcd" ownerguid="a987fb7e-c326-4431-ac4c-5f01ccfc3767"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ef96b857-ccea-4f81-882b-1c5e2fbf1e08" ownerguid="bc940e64-ee30-44ef-8270-c80c599161e1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bench</AUni> -<AUni ws="es">banca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f1ce0df9-8d5f-4a61-85c0-91b13d8c17e5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="ef99137c-3c5c-4b69-9370-03ffac8c5e6e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">la:ta</AUni> -<AUni ws="qvm-x-acl">la:ta</AUni> -<AUni ws="qvm-x-akh">la:ta</AUni> -<AUni ws="qvm-x-akl">la:ta</AUni> -<AUni ws="qvm-x-ame">la:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lla:ta</AUni> -<AUni ws="qvm-x-acl">*lla:ta</AUni> -<AUni ws="qvm-x-akh">*lla:ta</AUni> -<AUni ws="qvm-x-akl">*lla:ta</AUni> -<AUni ws="qvm-x-ame">*lla:ta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.172" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eaac98ae-738f-4c03-8c8f-2f5007b4e00a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lla:ta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="469c297a-18d2-4775-affa-530c1cbd8b72" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="39e08f69-88c4-4893-b931-736121c439aa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lla:ta 
\entryTyp root 
\gENG prostrate 
\gSPN prostarse 
\e *lla:ta 
\c V1 
\ach la:ta 
\akh la:ta 
\acl la:ta 
\akl la:ta 
\ame la:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ef9adcdb-0ca7-48d1-ba00-efb14a3dc879"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">de:bi</AUni> -<AUni ws="qvm-x-acl">de:bi; de:be</AUni> -<AUni ws="qvm-x-akh">de:bi</AUni> -<AUni ws="qvm-x-akl">de:bi; de:be</AUni> -<AUni ws="qvm-x-ame">de:bi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+deber</AUni> -<AUni ws="qvm-x-acl">+deber</AUni> -<AUni ws="qvm-x-akh">+deber</AUni> -<AUni ws="qvm-x-akl">+deber</AUni> -<AUni ws="qvm-x-ame">+deber</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.366" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fe945d57-2e61-4faf-a8ff-4470ec9df241" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+deber</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="535ecff8-9225-47c0-8066-07c5a828706f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="87897c58-8a06-4788-913c-350e70903fd6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +deber 
\entryTyp root 
\gENG owe 
\gSPN deber 
\e +deber 
\c V2 
\mp +FinalI 
\ach de:bi 
\akh de:bi 
\acl de:bi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl de:be +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl de:bi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl de:be +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame de:bi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ef9cab13-702b-495f-8238-5a15e69b0bd4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shauya</AUni> -<AUni ws="qvm-x-acl">shauya</AUni> -<AUni ws="qvm-x-akh">shawya</AUni> -<AUni ws="qvm-x-akl">shawya</AUni> -<AUni ws="qvm-x-ame">shawya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shawya</AUni> -<AUni ws="qvm-x-acl">*shawya</AUni> -<AUni ws="qvm-x-akh">*shawya</AUni> -<AUni ws="qvm-x-akl">*shawya</AUni> -<AUni ws="qvm-x-ame">*shawya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.561" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cf0fade7-3f3a-425f-b082-282c8d32913e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shawya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3cba6442-a533-450e-89ca-da92c7240ad0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="09a6d500-cb22-4e36-b4db-2bb391014465" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shawya 
\entryTyp root 
\gENG soft 
\gSPN suave 
\e *shawya 
\c N0 
\ach shauya 
\akh shawya 
\acl shauya 
\akl shawya 
\ame shawya</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="efa53d25-7889-421a-997d-0c8f2c34c3f3" ownerguid="27b5a149-05a9-4663-bb4a-2592abb862ab"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="efa6ce38-2156-4fff-a014-903513da978b" ownerguid="bba9ce21-4953-4ee9-8a3b-99d7cd10fcd4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="efa87dee-281c-4f4d-812f-8b5cb8b5bcf8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuña</AUni> -<AUni ws="qvm-x-acl">cuña</AUni> -<AUni ws="qvm-x-akh">cuña</AUni> -<AUni ws="qvm-x-akl">cuña</AUni> -<AUni ws="qvm-x-ame">cuña</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuña.v</AUni> -<AUni ws="qvm-x-acl">+cuña.v</AUni> -<AUni ws="qvm-x-akh">+cuña.v</AUni> -<AUni ws="qvm-x-akl">+cuña.v</AUni> -<AUni ws="qvm-x-ame">+cuña.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.254" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="99bc5213-69fe-47e0-a7ce-b83b5405172a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuña.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="adbbaefc-f8a4-4143-8822-bc10a07db717" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="31aa6591-3c3e-4ff9-aaaf-3447f584eaa1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuña.v 
\entryTyp root 
\gENG 
\gSPN 
\e +cuña.v 
\c V1 
\ach cuña 
\akh cuña 
\acl cuña 
\akl cuña 
\ame cuña 
\mcc +cuña.v / ~_ PRTSPF1 
\mcc +cuña.v / ~_ PRTSPM1</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="efab1cda-0c15-4d7a-8c99-aeab9b2f391f" ownerguid="163f451f-0ca9-4a43-98b6-c9aa884a6bb7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="efac1102-cd92-4199-a1f6-2044c6bf064b" ownerguid="3fb987e8-0bfb-4092-976c-eb2433d2ff6c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bump</AUni> -<AUni ws="es">dar.sacudidas</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5c664afa-3670-4b92-a72b-f8ece5ec3c75" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="efadf4a6-799b-4c0d-82ab-f1abfff5a0b1" ownerguid="3aab9c42-b696-4440-8e28-8380f5d25199"> -<ExampleWords> -<AUni ws="en">extremist, hardliner, leftist, idealist, fanatic, zealot</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who holds extreme beliefs?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="efae3e29-c498-4035-89ac-ab37cebae25d" ownerguid="bce337e0-118c-4bda-990e-fb91e0d27f4b"> -<Form> -<AUni ws="qvm-x-ach">acuerdu; acuerdo</AUni> -<AUni ws="qvm-x-acl">acuerdu; acuerdu; acuerdo</AUni> -<AUni ws="qvm-x-akh">acuerdu; acuerdo</AUni> -<AUni ws="qvm-x-akl">acuerdu; acuerdu; acuerdo</AUni> -<AUni ws="qvm-x-ame">acuerdu; acuerdo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="efaf29f3-4933-4168-a649-b49496a944b8" ownerguid="931f5198-a4ff-472d-8f70-cf8806ec3ec7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="815e839f-fd4c-42bf-ad00-39e49714a2d5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="efafc853-df06-4cda-88b3-ffe5f22db079" ownerguid="3dd684e6-75d9-41f4-aaa3-fb0cb3c7d400"> -<ExampleWords> -<AUni ws="en">response, help, aid</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the response of a person who sees someone in trouble?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="efaff767-d6db-45ec-8ec0-666b57a06435" ownerguid="95f05398-93c8-4a32-a29a-ee455bdc3217"> -<Form> -<AUni ws="qvm-x-ach">marca</AUni> -<AUni ws="qvm-x-acl">marca</AUni> -<AUni ws="qvm-x-akh">marka</AUni> -<AUni ws="qvm-x-akl">marka</AUni> -<AUni ws="qvm-x-ame">marka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="efb2eedb-2ca6-416a-a786-701bf024220a" ownerguid="ffc38b37-1639-4ff4-bf8d-df362978691e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">flaco</AUni> -<AUni ws="es">skinny</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="77d1a3a6-f0e5-41de-b95b-8058c9d78412" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="StTxtPara" guid="efb7c36b-bc62-4298-a014-31142e6bc71e" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">yarpäran</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="657efb65-4a54-4fa5-9263-3e10a6e2d034" t="o" /> -</Segments> -</rt> -<rt class="CmDomainQ" guid="efb8c649-9398-4fe0-b844-75eba333699c" ownerguid="b09205d4-fbb4-4bcd-94ef-f8d83e298462"> -<ExampleWords> -<AUni ws="en">rough (seas), storm-tossed (sea), raging (sea), seethe, choppy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe the surface of the water when it is rough?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="efb8e028-ccd4-45a1-80f6-d4ce3805acea" ownerguid="9cd50dc7-a476-410c-b06c-3978b1b21176"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="f8bcd07b-ceb9-4cc3-9a11-10cbb396c091" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="8c9180c8-d2df-48c3-aa2c-da33986ce5a4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="efbdc60d-47a8-4dbb-9da5-cc7a4894e935"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yali</AUni> -<AUni ws="qvm-x-acl">yali; yale</AUni> -<AUni ws="qvm-x-akh">yali</AUni> -<AUni ws="qvm-x-akl">yali; yale</AUni> -<AUni ws="qvm-x-ame">yali</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yalli</AUni> -<AUni ws="qvm-x-acl">*yalli</AUni> -<AUni ws="qvm-x-akh">*yalli</AUni> -<AUni ws="qvm-x-akl">*yalli</AUni> -<AUni ws="qvm-x-ame">*yalli</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.719" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="43e2f1e5-0bad-44d8-a79e-9e1044176d43" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yalli</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="33ff6f42-16ee-49ee-ba6e-95eedb5b1d67" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9b315b20-b38b-49b5-8539-fa56ef5d5d37" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yalli 
\entryTyp root 
\gENG compete 
\gSPN competer 
\e *yalli 
\c V2 
\mp +FinalI 
\ach yali 
\akh yali 
\acl yali +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl yale +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yali +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yale +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame yali</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="efbfdfe1-d5e0-4db2-8744-196c0ed0f6ba" ownerguid="a370aa5c-290b-4b03-a827-7a5f707fc846"> -<Form> -<AUni ws="qvm-x-ach">temblor</AUni> -<AUni ws="qvm-x-acl">temblor</AUni> -<AUni ws="qvm-x-akh">temblor</AUni> -<AUni ws="qvm-x-akl">temblor</AUni> -<AUni ws="qvm-x-ame">temblor</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="efbfe17c-254e-4f64-a3b5-bc1dd4c8572a" ownerguid="d167c58f-7de0-4dbf-b896-e563f37268b0"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="efbff3ea-7c7e-4be1-8397-3915c02280f7" ownerguid="f37d803c-37b1-4641-8b10-6b566461d9f9"> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="efc4ecf6-f71a-47c6-9b9c-d5c59dab61f2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pe:sa</AUni> -<AUni ws="qvm-x-acl">pe:sa</AUni> -<AUni ws="qvm-x-akh">pe:sa</AUni> -<AUni ws="qvm-x-akl">pe:sa</AUni> -<AUni ws="qvm-x-ame">pe:sa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pesa</AUni> -<AUni ws="qvm-x-acl">+pesa</AUni> -<AUni ws="qvm-x-akh">+pesa</AUni> -<AUni ws="qvm-x-akl">+pesa</AUni> -<AUni ws="qvm-x-ame">+pesa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.810" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bc296d2e-da61-4fd2-a495-61030d0a0421" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pesa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="09b28265-dff7-4171-a8f9-dba380f80d49" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4dbb45e7-bea8-497b-a74f-e63b716db622" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pesa 
\entryTyp root 
\gENG weight 
\gSPN peso 
\e +pesa 
\c N0 
\ach pe:sa 
\akh pe:sa 
\acl pe:sa 
\akl pe:sa 
\ame pe:sa 
\i Exo 30.13 Tabernäculucho pësacuna chunca grämu captinmi pitsga grämoga pulalan caycan. 
\mcc +pesa / ~_ DO1</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="efc5a081-3912-4e9a-b3d3-df9e4e2310aa" ownerguid="94f50cb8-9a59-42cc-9891-247cc3de7428"> -<ExampleWords> -<AUni ws="en">corrosive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that makes metal rust?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="efc668bc-6e64-498d-8e03-c8c829fe229c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">leo:na</AUni> -<AUni ws="qvm-x-acl">leo:na</AUni> -<AUni ws="qvm-x-akh">leo:na</AUni> -<AUni ws="qvm-x-akl">leo:na</AUni> -<AUni ws="qvm-x-ame">leo:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+leona</AUni> -<AUni ws="qvm-x-acl">+leona</AUni> -<AUni ws="qvm-x-akh">+leona</AUni> -<AUni ws="qvm-x-akl">+leona</AUni> -<AUni ws="qvm-x-ame">+leona</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.740" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b9e6a7bb-0e8a-4329-a231-8613403ff87d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+leona</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0bae4e83-01e9-4dcb-a5d1-c1a1cdaed487" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1c009ce6-c4d3-4be7-bd27-02d93e8f9ef8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +leona 
\entryTyp root 
\gENG lioness 
\gSPN leona 
\e +leona 
\c N0 
\ach leo:na 
\akh leo:na 
\acl leo:na 
\akl leo:na 
\ame leo:na</Run> -</AStr> -</Custom> -</rt> -<rt class="FsFeatStrucType" guid="efc7ecdf-44ed-4b11-9eef-41aaa905ca65" ownerguid="d6d5a99e-ea5e-11de-994c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Infl</AUni> -<AUni ws="es">Infl</AUni> -</Abbreviation> -<CatalogSourceId> -<Uni>Infl</Uni> -</CatalogSourceId> -<Features> -<objsur guid="e13ebd7a-824d-4405-8c23-e5a30f3d53a6" t="r" /> -</Features> -<Name> -<AUni ws="en">Infl</AUni> -<AUni ws="es">Infl</AUni> -</Name> -</rt> -<rt class="MoStemMsa" guid="efc8bcf0-03e8-4e56-9bd9-fe33aa39a17b" ownerguid="7a24c499-eab8-411b-afd6-2bf83cf1f569"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="efcb6b84-43e7-44fc-ab08-2256230c48b2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">awila</AUni> -<AUni ws="qvm-x-acl">awila</AUni> -<AUni ws="qvm-x-akh">awila</AUni> -<AUni ws="qvm-x-akl">awila</AUni> -<AUni ws="qvm-x-ame">awila</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+abuela</AUni> -<AUni ws="qvm-x-acl">+abuela</AUni> -<AUni ws="qvm-x-akh">+abuela</AUni> -<AUni ws="qvm-x-akl">+abuela</AUni> -<AUni ws="qvm-x-ame">+abuela</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.619" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="520d9bca-1d03-497d-b897-455a58675694" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+abuela</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="823dc29c-ccbc-499f-84e8-30e43efc3ec3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="26d91e4f-2b30-42db-a7d7-a3cc25b1cfe6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +abuela 
\entryTyp root 
\gENG grandmother 
\gSPN abuela 
\e +abuela 
\c N0 
\mp KQWchange 
\ach awila 
\akh awila 
\acl awila 
\akl awila 
\ame awila 
\mp +assimilated</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="efccec2f-eedc-4a97-b5c7-58d550b508e3" ownerguid="f6e416b3-50b1-4e48-8a39-2998725b1c79"> -<ExampleWords> -<AUni ws="en">certificate of divorce, writ of divorce, divorce papers, divorce court</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the legal process of divorcing your wife or husband?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="efcd1dd1-92aa-4945-92c8-2d7cfc9c3f39" ownerguid="a01a1900-fc1f-462e-ba3d-ae822711b034"> -<ExampleWords> -<AUni ws="en">mental illness, madness, insanity, dementia, demon possession, fixation, hypochondria, lunacy, mania, melancholia, neurosis, obsession, paranoia, psychosis, schizophrenia, senility</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to mental illness?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="efd03c89-bf8b-4d46-a921-06cc06f28356" ownerguid="935da513-126e-4cab-8e07-625458821181"> -<Abbreviation> -<AUni ws="en">4.2.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.208" /> -<DateModified val="2022-9-23 16:55:8.208" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to participating in a group--to do things with a group.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Participate</AUni> -</Name> -<Questions> -<objsur guid="ab69ddd9-488b-4b37-9208-651a1bc80725" t="o" /> -<objsur guid="272ab810-6dd3-42ed-9852-05de5058c80c" t="o" /> -<objsur guid="15a238a9-eb54-4f43-a61a-f45218a4e362" t="o" /> -<objsur guid="29b93ff7-8707-444b-8f7f-f7391ed7aed4" t="o" /> -<objsur guid="38e8e977-3248-4f69-9e18-bdf86ff2a714" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="efd116a5-e1b5-4438-ac7d-b6427e064460" ownerguid="d25f7907-091e-4cf7-bd8c-bdb97278b616"> -<ExampleWords> -<AUni ws="en">force, impact</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to the speed or force with which something is hit?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="efd13c3d-dbbc-4e73-9674-a9b9858a9d43" ownerguid="5ff33204-fa18-4008-9b22-56647edb534b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="efd2df79-e52f-4f5a-b991-45b48ca667f7" ownerguid="2b370eb5-3a3e-42fc-8753-fd2ad3dafa09"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V0/V0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">COND</AUni> -<AUni ws="es">COND</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f4d20bdf-75f8-4c69-afe3-f6617be92a6e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="efd4c90f-0015-4661-bef8-bb12213c4975" ownerguid="9b0fef63-5935-447d-801a-bb02dd6212bb"> -<ExampleWords> -<AUni ws="en">admiration, adulation, esteem (n), respect</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the thought or feeling that someone is good?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="efd81008-6515-489e-a118-ac1df7af5995" ownerguid="b4f8d2c6-f44f-4bf1-a0b7-5f65328545d3"> -<Morph> -<objsur guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" t="r" /> -</Morph> -<Msa> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="efd81596-62a6-4422-878c-60723e129395" ownerguid="0fa0be21-2246-40b2-86b1-ca572fe8c16c"> -<ExampleWords> -<AUni ws="en">not be interested, lack interest, be bored (with), be fed up with, be tired of, don't care (about), can't be bothered, your heart's not in it, be cool towards, show no interest, express no interest, leave someone cold</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling uninterested in something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="efd85e94-ea33-45d8-b169-397a34acd71d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gaululu</AUni> -<AUni ws="qvm-x-acl">gaululu; gaululo</AUni> -<AUni ws="qvm-x-akh">qawlulu</AUni> -<AUni ws="qvm-x-akl">qawlulu; qawlulo</AUni> -<AUni ws="qvm-x-ame">qawlulu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qawllullu</AUni> -<AUni ws="qvm-x-acl">*qawllullu</AUni> -<AUni ws="qvm-x-akh">*qawllullu</AUni> -<AUni ws="qvm-x-akl">*qawllullu</AUni> -<AUni ws="qvm-x-ame">*qawllullu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.155" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="662945fc-718d-4f7a-b08d-d9d4ba6d3795" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qawllullu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ff29ca11-5122-447f-aa00-031d3cbfadc8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="99f35726-13f9-48d4-aac2-e2bde5c296eb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qawllullu 
\entryTyp root 
\gENG 
\gSPN 
\e *qawllullu 
\c V1 
\ach gaululu 
\akh qawlulu 
\acl gaululu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gaululo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qawlulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qawlulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qawlulu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="efda1ecd-8ea3-4d0d-b148-3d80b92d1220" ownerguid="8ce6709f-f772-4638-a1aa-c132666f3563"> -<ExampleWords> -<AUni ws="en">annoyed, frustrated, hacked off, irritated, jaded, ticked off</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who feels annoyed?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="efdad723-c9ba-4729-aac5-1febb547bce8" ownerguid="21c84cdb-cb9f-452e-a14a-9be78dcd285b"> -<Form> -<AUni ws="qvm-x-ach">hïlu</AUni> -<AUni ws="qvm-x-acl">hïlu; hïlu; hïlo</AUni> -<AUni ws="qvm-x-akh">hïlu</AUni> -<AUni ws="qvm-x-akl">hïlu; hïlu; hïlo</AUni> -<AUni ws="qvm-x-ame">hïlu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="efddafa0-1c6d-45e8-8597-54361be1f044" ownerguid="c08014b2-4262-43da-9dd5-8a4db5deac1e"> -<Form> -<AUni ws="qvm-x-ach">cäpa</AUni> -<AUni ws="qvm-x-acl">cäpa</AUni> -<AUni ws="qvm-x-akh">cäpa</AUni> -<AUni ws="qvm-x-akl">cäpa</AUni> -<AUni ws="qvm-x-ame">cäpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="efe10ed4-193a-475e-8879-b36d36306f60" ownerguid="7f6c81fb-02a4-415f-a363-fb11cc6b9254"> -<ExampleWords> -<AUni ws="en">supernatural being, spirit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to supernatural beings?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="efe1c3e4-1150-48b2-b91f-b432f8cbccb8" ownerguid="d853597b-f3ed-470b-b6dd-8fe93b8e43eb"> -<ExampleWords> -<AUni ws="en">quiet, low, soft, muffled, faint, muted, weak</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a quiet sound?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="efe242bb-d9d5-4120-8404-399fea031fe0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chacu; chaca</AUni> -<AUni ws="qvm-x-acl">chacu; chaco; chaca</AUni> -<AUni ws="qvm-x-akh">chaku; chaka</AUni> -<AUni ws="qvm-x-akl">chaku; chako; chaka</AUni> -<AUni ws="qvm-x-ame">chaku; chaka</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.497" /> -<DateModified val="2022-10-16 14:54:5.346" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="12e92c7e-ad96-4912-9dc9-840773c8d8af" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">DELIB</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d61afcd0-aac8-42cb-b01a-12c6d4d5e48d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b3a69b66-e793-49f2-8a39-82dba9431ec3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx DELIB 
\entryTyp suffix 
\gENG DELIB 
\gSPN DELIB 
\e DELIB 
\c V1/V1 V2/V2 
\o 020 
\mp PMlowered +foreshortens 
\ach chacu 
\ach chaca morphlowered 
\akh chaku 
\akh chaka morphlowered 
\acl chacu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl chaco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl chaca morphlowered 
\akl chaku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chako +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chaka morphlowered 
\ame chaku 
\ame chaka morphlowered 
\mcc DELIB / *qu ~_ NMN 
\mcc DELIB / ~_ [ref]</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="efe35dbf-ae76-4d63-b9ee-47f06f007351"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">la</AUni> -<AUni ws="qvm-x-acl">la</AUni> -<AUni ws="qvm-x-akh">la</AUni> -<AUni ws="qvm-x-akl">la</AUni> -<AUni ws="qvm-x-ame">la</AUni> -</Custom> -<AlternateForms> -<objsur guid="ef18b9d4-362b-45e4-929a-763a3918e23e" t="o" /> -<objsur guid="7e3a2a21-331d-4db9-8026-9cb6ee2cd414" t="o" /> -</AlternateForms> -<DateCreated val="2022-9-23 18:26:20.528" /> -<DateModified val="2022-10-16 14:43:44.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="1" /> -<LexemeForm> -<objsur guid="2dfe7d41-6e63-49b3-9934-a7ca2fa9fd74" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">JUST.V</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5a4d9e40-3b93-4303-947b-5d6ee7f02108" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f9308afb-73bc-4444-a6bd-1a762dd98cdd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx JUST.V 
\entryTyp suffix 
\gENG JUST.V 
\gSPN SOL1.V 
\e JUST.V 
\c N0/N0 V0/V0 V1/V1 V2/V2 ONSHEV/ONSHEV R0/R0 N1/N1 R1/R1 BN/BN 
\ach la 
\akh la 
\acl la 
\akl la 
\ame la 
\o 000 
\mcc JUST.V / {+FinalC} ~_ 
\mcc JUST.V / +taita.1 ~_ 1P.V # 
\i MRK 13.32 Tsaytaqa Taytalämi musyaykan. 
\i 1PE 3.6 Tsaynömi Sarapis runan Abrahamta cäsukushpan <<taytalä>> nir shumaq respëtuwan rikarqan. 
\mcc JUST.V / NOW ~_ | not +rabiar NOM 1P NOW JUST 2P PUR DIR 
\mcc JUST.V / INF.noI ~_ 3P ADV1 
\mcc JUST.V / INF.noI ~_ 3P GEN 
\mcc JUST.V / ~_ DO1 
\mcc JUST.V / ~_ NMN 
\mcc JUST.V / ~_ PLALL 
\mcc JUST.V / ~_ 1P.V GOAL ADV1 
\mcc JUST.V / 12P.C ~_ 1P 
\i GEN 20.12 Panë kaytaqa panëmi kaykan. Itsanqa papänëpa tsuripakuyninmi. Kananqa warmënami kaykan. 
\i 1KI 22.27 Paycunata wilanqui carcilman wichgaycur caway tsararaglanpag yacutapis micuytapis garananpag. 
\i AMO 7.2 Mana perdonamaptiquega Jacobpita miragcuna walcala caglanpis lapanchari ushacanga. 
\mcc JUST.V / IN1 ~_ 2IMP.1 
\mcc JUST.V / IN1 ~_ 2</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="efe73907-3bcd-4630-82a3-fe850ed10bfc" ownerguid="2e95bd1e-82f0-461d-8ca6-b5f1ce1fb180"> -<ExampleWords> -<AUni ws="en">engagement ring, bride price, dowry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to a gift or payment given to your future spouse or their family?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="efe7b1e6-1ac3-4fba-bec1-7a75ac3fe65a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pichi</AUni> -<AUni ws="qvm-x-acl">pichi; pichi; piche</AUni> -<AUni ws="qvm-x-akh">pichi</AUni> -<AUni ws="qvm-x-akl">pichi; pichi; piche</AUni> -<AUni ws="qvm-x-ame">pichi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pichi</AUni> -<AUni ws="qvm-x-acl">*pichi</AUni> -<AUni ws="qvm-x-akh">*pichi</AUni> -<AUni ws="qvm-x-akl">*pichi</AUni> -<AUni ws="qvm-x-ame">*pichi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.820" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="50a9f6a1-76cb-4c49-9f22-0733efc95bc0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pichi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9c2ab099-51fd-4ced-94cb-e2a27f461d22" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6374215d-3a97-402a-b78f-f12c7c1796e0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pichi 
\entryTyp root 
\gENG 
\gSPN perrito 
\e *pichi 
\c N0 
\mp +FinalI 
\ach pichi 
\akh pichi 
\acl pichi / _# 
\acl pichi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl piche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pichi / _# 
\akl pichi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl piche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pichi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="efe8e7b5-e008-4a3a-b3e1-23ae03a0083e" ownerguid="6342c8bf-55b5-400f-af7e-63055fe6813b"> -<Abbreviation> -<AUni ws="en">6.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to cutting tools.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Cutting tool</AUni> -</Name> -<Questions> -<objsur guid="90b6f757-1d04-411c-a5d5-26f9c359caea" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="a3bc1fbd-9f2f-4a9d-ae6e-7b02da8a05b4" t="o" /> -<objsur guid="818e33ff-590e-4d0e-b84e-67771324a545" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="efeb5948-30ca-4c62-8084-c54928a85ae4" ownerguid="f518e5fa-7656-4b9f-9442-fdbcf72c5482"> -<Form> -<AUni ws="qvm-x-ach">töca</AUni> -<AUni ws="qvm-x-acl">töca</AUni> -<AUni ws="qvm-x-akh">töca</AUni> -<AUni ws="qvm-x-akl">töca</AUni> -<AUni ws="qvm-x-ame">töca</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="efef45bd-26be-46f8-b85b-424be55bcdac" ownerguid="615674ac-8158-4089-ae70-b55472fd279b"> -<Abbreviation> -<AUni ws="en">8.4.6.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.650" /> -<DateModified val="2022-9-23 16:55:8.650" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something new--a word describing something that has only existed for a short time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>58K New, Old</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">New</AUni> -</Name> -<Questions> -<objsur guid="b07c8d46-e1a8-4958-8863-bd403640cc23" t="o" /> -<objsur guid="701e0606-b55e-442b-a403-054e495510c2" t="o" /> -<objsur guid="1fef910c-2d59-405a-a680-882f96b8158b" t="o" /> -<objsur guid="25afd740-7b76-43bb-b42b-586e35f0a334" t="o" /> -<objsur guid="634336d9-8441-46d2-9b0f-628e8024620a" t="o" /> -<objsur guid="f75d287a-e4b0-47b9-959f-28e7a075edc3" t="o" /> -<objsur guid="25b987bd-0116-4a0a-83e7-aeee603226ab" t="o" /> -<objsur guid="d59b9111-5c9e-49ad-98c0-6140e9748ad6" t="o" /> -<objsur guid="e6ebcbfa-9055-4f69-9a6f-d49647b1243a" t="o" /> -<objsur guid="67a71dc6-adb6-4b86-a4cc-00e36657d899" t="o" /> -<objsur guid="b124ee10-493f-43dd-8909-367d6c056ee0" t="o" /> -<objsur guid="0d539023-d48e-47f8-8d65-9a8c5ef9c6c3" t="o" /> -<objsur guid="1a7ec24f-0253-4b20-bc0b-edcc85836672" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="efefadd4-0419-4705-a08e-cb3298edb4f0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsica</AUni> -<AUni ws="qvm-x-acl">tsica</AUni> -<AUni ws="qvm-x-akh">tsika</AUni> -<AUni ws="qvm-x-akl">tsika</AUni> -<AUni ws="qvm-x-ame">tsika</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chika</AUni> -<AUni ws="qvm-x-acl">*chika</AUni> -<AUni ws="qvm-x-akh">*chika</AUni> -<AUni ws="qvm-x-akl">*chika</AUni> -<AUni ws="qvm-x-ame">*chika</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.305" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="86010afd-d8f3-4ff1-9906-d9ea501b47b8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chika</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2b84ebd8-2c6a-4acf-896f-754bf9d8c3aa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b770c97b-d9a9-4dfd-b276-66bfdea4f19c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chika 
\entryTyp root 
\gENG later 
\gSPN tarde 
\e *chika 
\c N0 
\ach tsica 
\akh tsika 
\acl tsica 
\akl tsika 
\ame tsika 
\mcc *chika / ~_ CHA:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="eff00dfa-177c-415c-b84c-ae533808e022" ownerguid="dc76b15c-9f76-4767-89af-5ea560347387"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="eff2ac25-4a52-4c53-9ddc-d1d962d060d1" ownerguid="725d78eb-8cac-4b2f-b5a4-f0a9adb80f5d"> -<ExampleWords> -<AUni ws="en">hypocrisy, hypocrite</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to pretending to be religious?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="eff6d1a9-e2a1-4c0b-89ed-7b3e03367363" ownerguid="0b91e3b3-bce9-4c66-97bd-3da15eddad7a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.eat</AUni> -<AUni ws="es">comer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f8d97fe3-82cf-41ad-9120-76d2b02d68e8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="eff71fbb-f3bb-45b7-8b19-d32f4157be1b" ownerguid="b1e3461b-4ea1-4329-9015-56044a1882f1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">good</AUni> -<AUni ws="es">bueno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="373d0f40-8d63-45ed-a36c-6d34f5970b90" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="eff74619-b3e3-46b4-9afc-06533cc47ddf" ownerguid="ae0e8b72-9c32-4f10-8b32-90c75893cb33"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c5fea560-fb4c-492d-bf24-2cf74ff46293" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="4986d37e-9bc1-422a-af3e-b773d89a709e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="eff9043a-9416-400d-998b-6d9ee6367104" ownerguid="5537653f-05e8-4263-bac6-9dbcce4dfd5a"> -<Form> -<AUni ws="qvm-x-ach">salva</AUni> -<AUni ws="qvm-x-acl">salva</AUni> -<AUni ws="qvm-x-akh">salva</AUni> -<AUni ws="qvm-x-akl">salva</AUni> -<AUni ws="qvm-x-ame">salva</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="effa8182-479a-4f3d-bf04-c1f6f0271ae8" ownerguid="28ec5f29-2535-4cf7-959b-1578521614bd"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="CmSemanticDomain" guid="effc49dd-6322-4302-899c-4cf540f0e2e4" ownerguid="5bcd08a6-cb46-41bb-a732-0d690b5ea596"> -<Abbreviation> -<AUni ws="en">5.2.3.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.317" /> -<DateModified val="2022-9-23 16:55:8.317" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to prepared food. Cultures vary widely in the number and types of foods they prepare, and in how they classify them. For instance the English distinction between main dish and side dish is not found in the classification system of other languages. If your language has well-recognized subcategories, you can set up a separate subdomain for each. The questions below are based on the main ingredient in the dish.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>5B Condiments</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Prepared food</AUni> -</Name> -<OcmCodes> -<Uni>263 Condiments</Uni> -</OcmCodes> -<Questions> -<objsur guid="2e43c08e-1c89-4520-870d-3a708b616eee" t="o" /> -<objsur guid="34a64d1e-26fd-450d-9bc3-3921f3666e21" t="o" /> -<objsur guid="78aa144c-033b-4b1f-9805-a42f11cfcae8" t="o" /> -<objsur guid="381f901c-28f8-4dec-b2f0-0a77c4771012" t="o" /> -<objsur guid="6c66f2fb-1cb6-4d4d-9fdb-b7f95c04158a" t="o" /> -<objsur guid="37f1c36f-35ca-4550-bdbc-99d971c28eb5" t="o" /> -<objsur guid="669cc12f-ee57-4b39-9698-4691e313ebfe" t="o" /> -<objsur guid="bd743d4a-a9cb-43fc-bfd9-af8525985297" t="o" /> -<objsur guid="c402fc29-8ff3-40b3-9f8e-6a9fdab3da2b" t="o" /> -<objsur guid="15668eec-fab7-43ca-bfde-e3e5e1115d66" t="o" /> -<objsur guid="1c9262c4-86e8-4950-a40a-cb0b9d3029cd" t="o" /> -<objsur guid="c324d219-743e-4825-b883-b9ce8c4fe883" t="o" /> -<objsur guid="a3f5a51d-403d-48e9-9891-dbe3eb2ff776" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="effc8ca7-1c35-4e4d-9b41-e7db8201be81"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">miju; mijo</AUni> -<AUni ws="qvm-x-acl">miju; miju; mijo</AUni> -<AUni ws="qvm-x-akh">miju; mijo</AUni> -<AUni ws="qvm-x-akl">miju; miju; mijo</AUni> -<AUni ws="qvm-x-ame">miju; mijo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mijo</AUni> -<AUni ws="qvm-x-acl">+mijo</AUni> -<AUni ws="qvm-x-akh">+mijo</AUni> -<AUni ws="qvm-x-akl">+mijo</AUni> -<AUni ws="qvm-x-ame">+mijo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.426" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3b1479b0-32c2-4428-a9db-a734bac71a78" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mijo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c5dee45b-e78e-4cab-b7a3-212ef4d77e13" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="88e73b10-baf8-4b1a-ba2b-99f5d0b0c001" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mijo 
\entryTyp root 
\gENG millet 
\gSPN 
\e +mijo 
\c N0 
\ach miju / ~_# 
\ach mijo / _# 
\akh miju / ~_# 
\akh mijo / _# 
\acl miju / ~_# 
\acl miju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mijo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl miju / ~_# 
\akl miju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mijo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame miju / ~_# 
\ame mijo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="efff2c89-5b8b-4d04-828c-473a992cd40f" ownerguid="309585b0-add3-4d8e-bc2b-67e0f6b53343"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="efff3030-ecb0-48d7-8a01-03b29db7ba54" ownerguid="6a8c49d2-93e4-4cb2-bee1-ed30a244d188"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">write</AUni> -<AUni ws="es">escribir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b7e24860-a37c-42ab-bc19-fa27d7c4f082" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="f000b9e2-833c-446e-ac1d-59db48ee23ec" ownerguid="e6822331-6cb7-467a-8c58-32cfefc2f332"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="8bcddaa8-7f62-4251-831f-9b9fcb546677" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="b022fa1f-2aa2-4ecb-ba5e-bde17ff37ffd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="f000ca49-d72f-4705-94dc-acb414fb99e2" ownerguid="271a0f17-545d-4a19-92df-2a7d9970fb92"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">chew</AUni> -<AUni ws="es">masticar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="056a4349-b378-4c20-aef3-3b25cfcffbda" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f000e3de-c81c-4268-b1a7-05614573869b" ownerguid="c00f899a-5989-4e41-a8c1-2385ec8e5851"> -<Form> -<AUni ws="qvm-x-ach">calcetín; calcetin</AUni> -<AUni ws="qvm-x-acl">calcetín; calcetin</AUni> -<AUni ws="qvm-x-akh">calcetín; calcetin</AUni> -<AUni ws="qvm-x-akl">calcetín; calcetin</AUni> -<AUni ws="qvm-x-ame">calcetín; calcetin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f007227f-4b6e-4149-827f-9a48526b38d3" ownerguid="1a4ff06b-76db-4abb-b7ba-f5d21c619a6f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="f0072558-7846-4a7e-8c13-420ae02f0788" ownerguid="f03b8344-0771-4c0b-9127-cfbcbd7a9cd7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.warm</AUni> -<AUni ws="es">calentar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="74b70b79-fbfa-40f5-a68a-d62068eb5d64" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="f00a40ad-57f6-4ebb-9896-c738cf8435d1" ownerguid="555ce911-c73f-440b-9d70-144df6b1491e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f00ba64d-733a-4c2a-8cd8-09b2acfadc2e" ownerguid="4e7a6dfe-3654-4ca1-874d-02424581b774"> -<ExampleWords> -<AUni ws="en">deepen, dredge, dig out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to making something deep?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="f011cb8f-002d-48bb-93d6-cd27235f7c7f" ownerguid="d7cd6668-9bae-4d42-bca4-f870f4885424"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ra</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ra</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ra</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ra</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ra</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ec6359d2-b25a-466e-b6a0-4a7efa980490" t="r" /> -</Morph> -<Msa> -<objsur guid="fd75ba47-7348-4c70-9565-ca4ec1c2b5c2" t="r" /> -</Msa> -<Sense> -<objsur guid="525e7867-8f63-47f0-bac2-1277fb0d27f3" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="f011d811-a0c5-4c64-8527-024a129dfaf7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quiptu</AUni> -<AUni ws="qvm-x-acl">quiptu; quipto</AUni> -<AUni ws="qvm-x-akh">kiptu</AUni> -<AUni ws="qvm-x-akl">kiptu; kipto</AUni> -<AUni ws="qvm-x-ame">kiptu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kiptu</AUni> -<AUni ws="qvm-x-acl">*kiptu</AUni> -<AUni ws="qvm-x-akh">*kiptu</AUni> -<AUni ws="qvm-x-akl">*kiptu</AUni> -<AUni ws="qvm-x-ame">*kiptu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.993" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c099e592-cf26-491b-b236-fbb55a29481a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kiptu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f2ae492b-090a-4f9e-8320-553d23b84691" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a18c4bf8-2cba-4a47-9b03-8b67e49872e1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kiptu 
\entryTyp root 
\gENG detach 
\gSPN desprender 
\e *kiptu 
\c V1 
\ach quiptu 
\akh kiptu 
\acl quiptu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl quipto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kiptu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kipto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kiptu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="f0129920-65ef-4508-abdc-ce8e1adccf8e" ownerguid="d06ed832-bbfb-40b9-aa3a-8c5b8b01621a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">g</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">g</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">q</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">q</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">q</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2077e726-cf37-4913-b54c-2d034d4883b4" t="r" /> -</Morph> -<Msa> -<objsur guid="cc4f521e-5e38-4217-aa16-46da99d423ec" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="f014b991-e07e-40f5-8878-4e489bd4efd0" ownerguid="5a585789-2ef6-42c5-9c5a-34ff716059b7"> -<ExampleWords> -<AUni ws="en">blow, mold, shape, form, anneal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What does the potter do with the glass?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f0182dea-a03b-4a36-b752-d711baa7a8bd" ownerguid="d030f0c7-31a3-47da-be35-46f1eba63ae9"> -<ExampleWords> -<AUni ws="en">love, adore, delight, enthusiastic about, enthusiasm for, be mad about, be crazy about, be attached to, have a passion for</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to liking something very much?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f0186080-e861-4b07-9a0a-3944b41073d9" ownerguid="a462dc51-7847-46f3-90ba-a2781972b9d0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="f0191755-03e5-434f-87d3-67e1b86f83af" ownerguid="2722cd46-a725-4464-a19d-09a5b9783d95"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="f01936f7-208d-4e98-8a04-df07cb6c8135" ownerguid="90c316f9-862b-42ea-a75d-da093ae9e33c"> -<Form> -<AUni ws="qvm-x-ach">purugshu</AUni> -<AUni ws="qvm-x-acl">purogshu; purogshu; purogsho</AUni> -<AUni ws="qvm-x-akh">puruqshu</AUni> -<AUni ws="qvm-x-akl">puroqshu; puroqshu; puroqsho</AUni> -<AUni ws="qvm-x-ame">puruqshu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="f01ee4e5-3ed6-484b-99d3-04bd3f100f3f" ownerguid="862aa851-6b1d-491a-bd03-40e8723e4d33"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="f022c550-5762-4552-acd7-2871c850a990"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yata</AUni> -<AUni ws="qvm-x-acl">yata</AUni> -<AUni ws="qvm-x-akh">yata</AUni> -<AUni ws="qvm-x-akl">yata</AUni> -<AUni ws="qvm-x-ame">yata</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yata</AUni> -<AUni ws="qvm-x-acl">*yata</AUni> -<AUni ws="qvm-x-akh">*yata</AUni> -<AUni ws="qvm-x-akl">*yata</AUni> -<AUni ws="qvm-x-ame">*yata</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.768" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c244b3d9-f044-4c57-aadc-3d49c4064055" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yata</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aed65dc5-d9b9-4aa8-8ff9-d05eeee810c7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="18192f4e-6c42-4652-b9ba-795227adca37" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yata 
\entryTyp root 
\gENG touch 
\gSPN tocar 
\e *yata 
\c V2 
\ach yata 
\akh yata 
\acl yata 
\akl yata 
\ame yata</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f0267461-a137-4f72-aa2f-c83d6ec92038" ownerguid="d853597b-f3ed-470b-b6dd-8fe93b8e43eb"> -<ExampleWords> -<AUni ws="en">quiet, silent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something or someone that is quiet?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f0268d20-eda8-4ade-b0d3-ed5baded7dd9" ownerguid="cc3f1dc8-a31e-4459-ba13-f82b45df37b5"> -<ExampleWords> -<AUni ws="en">report, account</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the message that is reported?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="f02ae505-d6b7-4b30-9d97-8505d0d1a0c7" ownerguid="7f7fc197-5064-43c0-af51-2919fb7355c9"> -<Abbreviation> -<AUni ws="en">9.6.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.720" /> -<DateModified val="2022-9-23 16:55:8.720" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for conjunctions and particles that function on the discourse level, and whose meaning and function is uncertain.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>91 Discourse Markers</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Discourse markers</AUni> -</Name> -<Questions> -<objsur guid="5abb66bc-824c-485d-b49c-180f281235af" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="638679c7-1c7c-41da-ab60-0ac7e98fcd72" t="o" /> -<objsur guid="7c1c3730-3b35-4150-b54e-bf6d344546b3" t="o" /> -<objsur guid="c103d339-24f2-45c6-8539-d3c445e15c49" t="o" /> -<objsur guid="577a9f51-263a-4c80-a439-84ce45b9c7cc" t="o" /> -<objsur guid="fbf40f2e-e743-479d-80b2-63325407d5d1" t="o" /> -<objsur guid="15e0b54b-bb7c-4900-b048-20b718d05f79" t="o" /> -<objsur guid="41837400-bdc5-4cbc-a1dc-d793f713f883" t="o" /> -<objsur guid="2e5a80f9-35ae-4850-9627-be530832a781" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="f02b26b0-10d2-4c7c-8ca8-0c145e1bd9fe" ownerguid="8aceebe4-58c3-4926-a7a0-0264f83b8357"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="f02dff51-ab5b-4426-8547-916f86b6e390" ownerguid="ffe6d90a-c302-4d64-a075-c6efdb2caacd"> -<Form> -<AUni ws="qvm-x-ach">vädu</AUni> -<AUni ws="qvm-x-acl">vädu; vädu; vädo</AUni> -<AUni ws="qvm-x-akh">vädu</AUni> -<AUni ws="qvm-x-akl">vädu; vädu; vädo</AUni> -<AUni ws="qvm-x-ame">vädu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f0306842-35a9-4b48-82ca-be753b28d92d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shalu</AUni> -<AUni ws="qvm-x-acl">shalu; shalo</AUni> -<AUni ws="qvm-x-akh">shalu</AUni> -<AUni ws="qvm-x-akl">shalu; shalo</AUni> -<AUni ws="qvm-x-ame">shalu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shallu.v</AUni> -<AUni ws="qvm-x-acl">*shallu.v</AUni> -<AUni ws="qvm-x-akh">*shallu.v</AUni> -<AUni ws="qvm-x-akl">*shallu.v</AUni> -<AUni ws="qvm-x-ame">*shallu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.531" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="342fb76c-fcd7-4975-af0b-eb6c0950bbf3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shallu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="849d2677-46e4-4248-8dd4-b3f515dbcefa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4ada7597-6dec-4e13-a1f4-e23692afbaca" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shallu.v 
\entryTyp root 
\gENG break 
\gSPN romper 
\e *shallu.v 
\c V1 
\ach shalu 
\akh shalu 
\acl shalu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shalo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shalu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shalo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shalu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="f0337a78-045c-4000-a0a9-ff541aff9a38"> -<Analyses> -<objsur guid="d1e7efd0-1a2d-4164-826d-2333b8ee649b" t="o" /> -</Analyses> -<Checksum val="691067944" /> -<Form> -<AUni ws="qvm-x-akh">punur</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="f034a9af-11cb-4f5b-b67c-da6f6cf372cc" ownerguid="37a08f65-5a79-4e17-8e19-0975d6531d64"> -<ExampleWords> -<AUni ws="en">serious, earnest, sober, solemn, somber, stodgy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being serious?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f03633e0-feef-4a6c-b3e0-37a5abd85bf2" ownerguid="29dea368-293d-41ea-8542-38798f802b19"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f036c423-db57-42a5-bf98-6fc824c187f1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">comisión; comision</AUni> -<AUni ws="qvm-x-acl">comisión; comision</AUni> -<AUni ws="qvm-x-akh">comisión; comision</AUni> -<AUni ws="qvm-x-akl">comisión; comision</AUni> -<AUni ws="qvm-x-ame">comisión; comision</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+comisión</AUni> -<AUni ws="qvm-x-acl">+comisión</AUni> -<AUni ws="qvm-x-akh">+comisión</AUni> -<AUni ws="qvm-x-akl">+comisión</AUni> -<AUni ws="qvm-x-ame">+comisión</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.152" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2db0eb22-0c74-4545-91f1-f4f84d761976" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+comisión</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="02316144-3a6a-4a06-9d75-92abdeea0d8c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="396801b2-f5a3-4dcc-b518-42cae634003b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +comisión 
\entryTyp root 
\gENG comission 
\gSPN comisión 
\e +comisión 
\c N0 
\mp +FinalC 
\ach comisión / _# 
\ach comision / ~_# 
\akh comisión / _# 
\akh comision / ~_# 
\acl comisión / _# 
\acl comision / ~_# 
\akl comisión / _# 
\akl comision / ~_# 
\ame comisión / _# 
\ame comision / ~_# 
\i DAN 6.6 Tsaynog nirmi ministrucuna y nación mandäshegcuna comisionta churargan mandag reywan parlag aywananpag.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f0381c4b-881e-4e9f-a5a9-6e081cde914f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cementu; cemento</AUni> -<AUni ws="qvm-x-acl">cementu; cementu; cemento</AUni> -<AUni ws="qvm-x-akh">cementu; cemento</AUni> -<AUni ws="qvm-x-akl">cementu; cementu; cemento</AUni> -<AUni ws="qvm-x-ame">cementu; cemento</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cemento</AUni> -<AUni ws="qvm-x-acl">+cemento</AUni> -<AUni ws="qvm-x-akh">+cemento</AUni> -<AUni ws="qvm-x-akl">+cemento</AUni> -<AUni ws="qvm-x-ame">+cemento</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.102" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b1c068f6-0929-4233-b752-560893ad840b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cemento</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7950edf7-b00e-40ea-977e-1474aa41f7be" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="47c92285-85af-45a7-bdfd-ebd163ce4609" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cemento 
\entryTyp root 
\gENG cement? 
\gSPN 
\e +cemento 
\c N0 
\ach cementu / ~_# 
\ach cemento / _# 
\akh cementu / ~_# 
\akh cemento / _# 
\acl cementu / ~_# 
\acl cementu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cemento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cementu / ~_# 
\akl cementu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cemento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cementu / ~_# 
\ame cemento / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f03b07e0-70c5-45e7-805f-35a0d5b59009"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ripiu; ripio</AUni> -<AUni ws="qvm-x-acl">ripiu; ripiu; ripio</AUni> -<AUni ws="qvm-x-akh">ripiu; ripio</AUni> -<AUni ws="qvm-x-akl">ripiu; ripiu; ripio</AUni> -<AUni ws="qvm-x-ame">ripiu; ripio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ripio</AUni> -<AUni ws="qvm-x-acl">+ripio</AUni> -<AUni ws="qvm-x-akh">+ripio</AUni> -<AUni ws="qvm-x-akl">+ripio</AUni> -<AUni ws="qvm-x-ame">+ripio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.368" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2b2bf002-7515-4a95-a6a6-e9b2046ecbe5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ripio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6bccfbde-5387-4104-ad3f-518143a1ed01" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f68489c5-12a5-4388-b936-e3eb5c002aaf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ripio 
\entryTyp root 
\gENG gravel 
\gSPN ripio 
\e +ripio 
\c N0 
\ach ripiu / ~_# 
\ach ripio / _# 
\akh ripiu / ~_# 
\akh ripio / _# 
\acl ripiu / ~_# 
\acl ripiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ripio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ripiu / ~_# 
\akl ripiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ripio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ripiu / ~_# 
\ame ripio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f03b8344-0771-4c0b-9127-cfbcbd7a9cd7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">masha</AUni> -<AUni ws="qvm-x-acl">masha</AUni> -<AUni ws="qvm-x-akh">masha</AUni> -<AUni ws="qvm-x-akl">masha</AUni> -<AUni ws="qvm-x-ame">masha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*masha.v</AUni> -<AUni ws="qvm-x-acl">*masha.v</AUni> -<AUni ws="qvm-x-akh">*masha.v</AUni> -<AUni ws="qvm-x-akl">*masha.v</AUni> -<AUni ws="qvm-x-ame">*masha.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.356" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8e434b1f-d8af-4294-a455-c6b2fda5d476" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*masha.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="74b70b79-fbfa-40f5-a68a-d62068eb5d64" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f0072558-7846-4a7e-8c13-420ae02f0788" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *masha.v 
\entryTyp root 
\gENG to.warm 
\gSPN calentar 
\e *masha.v 
\c V1 
\ach masha 
\akh masha 
\acl masha 
\akl masha 
\ame masha</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="f03beeae-3f27-45e0-bc7f-09c556b6ec71" ownerguid="5d90ec7a-591b-485f-b788-619e26b87851"> -<Form> -<AUni ws="qvm-x-ach">shala</AUni> -<AUni ws="qvm-x-acl">shala</AUni> -<AUni ws="qvm-x-akh">shala</AUni> -<AUni ws="qvm-x-akl">shala</AUni> -<AUni ws="qvm-x-ame">shala</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f03fdc3a-e0f2-4ae8-bb23-b8e488562d9b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jiuya</AUni> -<AUni ws="qvm-x-acl">jiuya</AUni> -<AUni ws="qvm-x-akh">jiwya</AUni> -<AUni ws="qvm-x-akl">jiwya</AUni> -<AUni ws="qvm-x-ame">hiwya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hiwya</AUni> -<AUni ws="qvm-x-acl">*hiwya</AUni> -<AUni ws="qvm-x-akh">*hiwya</AUni> -<AUni ws="qvm-x-akl">*hiwya</AUni> -<AUni ws="qvm-x-ame">*hiwya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.739" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1de6c3b5-7f6c-4220-833b-3109f9c923dd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hiwya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="752e53ff-e2e1-43b2-ad98-83c7fd4cd264" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="47f4d00c-8e73-4913-b8f4-a51a0ab01433" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hiwya 
\entryTyp root 
\gENG be.steep 
\gSPN ser.pendiente 
\e *hiwya 
\c V1 
\ach jiuya 
\akh jiwya 
\acl jiuya 
\akl jiwya 
\ame hiwya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="f0404b23-db91-46c7-87e1-9f1be0712980" ownerguid="3160b7ad-e4e8-4a46-8e2e-d5e601969547"> -<Abbreviation> -<AUni ws="en">3.5.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.174" /> -<DateModified val="2022-9-23 16:55:8.174" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a fable or myth--a story that people tell that is not true.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Fable, myth</AUni> -</Name> -<OcmCodes> -<Uni>118 Fiction</Uni> -</OcmCodes> -<Questions> -<objsur guid="ec9d9e23-bcba-41c8-b29b-7b3e2291064d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="f0407899-daf1-4c11-bdd4-db5dcc756946" ownerguid="591fd489-36e6-4ffd-a976-58876d851829"> -<ExampleWords> -<AUni ws="en">run, runny nose, be stuffed up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words express how mucus drains from the nose?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f0472a32-1715-43c1-82e1-f901ee87bf68" ownerguid="0f219efd-e161-4827-b87b-7c4774247fce"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="f54b1ec2-c35a-42de-bc8d-86f6f60fe0af" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">free</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7f002f17-579d-45c3-a051-df01702e3705" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f0482b3a-b085-4848-a5f5-7611baf83eb7" ownerguid="1088cc2f-83ae-4911-8018-401a745dcfd5"> -<ExampleWords> -<AUni ws="en">tomorrow night</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the night after this one?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f0494d54-8e73-41fe-a259-2cae9dd4a68a" ownerguid="ef860ee3-a4a5-4a42-b810-fdf41e35d151"> -<ExampleWords> -<AUni ws="en">clergy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refers to all religious leaders?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f04d256e-3708-4eab-9662-1d20fd02b561" ownerguid="a19e219a-6cc1-4057-a8d9-18554ae88de1"> -<ExampleWords> -<AUni ws="en">amulet, evil eye</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to protecting a baby?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f04f6a01-5da7-4f4e-a0d8-622eab6be571"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wagu</AUni> -<AUni ws="qvm-x-acl">wagu; wagu; wago</AUni> -<AUni ws="qvm-x-akh">waqu</AUni> -<AUni ws="qvm-x-akl">waqu; waqu; waqo</AUni> -<AUni ws="qvm-x-ame">waqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waqu.n</AUni> -<AUni ws="qvm-x-acl">*waqu.n</AUni> -<AUni ws="qvm-x-akh">*waqu.n</AUni> -<AUni ws="qvm-x-akl">*waqu.n</AUni> -<AUni ws="qvm-x-ame">*waqu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.637" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8bbd53fc-5a6e-4939-81eb-dcfd80c1ebfe" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waqu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b4c40a22-26c2-47a5-9b2e-e13f85958126" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7518432e-ccf7-4713-b822-fb1c013a6d7c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waqu.n 
\entryTyp root 
\gENG molar 
\gSPN ? 
\e *waqu.n 
\c N0 
\ach wagu 
\akh waqu 
\acl wagu / _# 
\acl wagu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wago +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl waqu / _# 
\akl waqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl waqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame waqu 
\i JOL 1.6 Quiruncunapis waguncunapis leonpanogragmi lauchi cashga.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="f05157d9-4295-410f-8ad5-8d0d0b753068" ownerguid="bad07400-ad11-4f98-9a6d-83aeae23913f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" t="r" /> -</Morph> -<Msa> -<objsur guid="9db6c688-9950-447c-a2c8-0c17d03c5c8e" t="r" /> -</Msa> -<Sense> -<objsur guid="2801e582-fd5f-46da-b446-4dd5882c9bda" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="f05377d2-916a-492c-a204-eb319d506e91" ownerguid="5737714d-49e4-4eb4-8e46-03203ee5340b"> -<ExampleWords> -<AUni ws="en">well-deserved, well-earned, fitting, appropriate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that someone deserves?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f053aee4-2685-495f-bec4-8f64065cf855"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">noviembri; noviembre</AUni> -<AUni ws="qvm-x-acl">noviembri; noviembri; noviembre</AUni> -<AUni ws="qvm-x-akh">noviembri; noviembre</AUni> -<AUni ws="qvm-x-akl">noviembri; noviembri; noviembre</AUni> -<AUni ws="qvm-x-ame">noviembri; noviembre</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+noviembre</AUni> -<AUni ws="qvm-x-acl">+noviembre</AUni> -<AUni ws="qvm-x-akh">+noviembre</AUni> -<AUni ws="qvm-x-akl">+noviembre</AUni> -<AUni ws="qvm-x-ame">+noviembre</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.568" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4409214d-5c17-4b64-85e0-744035864253" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+noviembre</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4a6cdb51-d8e2-47a8-9184-57591551965d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6971b20f-f0e2-4467-b6fe-8b026fd30acc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +noviembre 
\entryTyp root 
\gENG November 
\gSPN noviembre 
\e +noviembre 
\c N0 
\mp +FinalI 
\ach noviembri / ~_# 
\ach noviembre / _# 
\akh noviembri / ~_# 
\akh noviembre / _# 
\acl noviembri / ~_# 
\acl noviembri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl noviembre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl noviembri / ~_# 
\akl noviembri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl noviembre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame noviembri / ~_# 
\ame noviembre / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="f054c3a4-731f-41e5-9df0-eefe478d748b"> -<Analyses> -<objsur guid="501dcdfc-ed38-44ad-a8bf-00e1d93b23ff" t="o" /> -<objsur guid="980de7db-380d-4612-a4bc-761a35ec3953" t="o" /> -</Analyses> -<Checksum val="-547271129" /> -<Form> -<AUni ws="qvm-x-akh">wanuptinmi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="f055291f-d636-4432-a812-8a667b8d2115"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">caldu; caldo</AUni> -<AUni ws="qvm-x-acl">caldu; caldu; caldo</AUni> -<AUni ws="qvm-x-akh">caldu; caldo</AUni> -<AUni ws="qvm-x-akl">caldu; caldu; caldo</AUni> -<AUni ws="qvm-x-ame">caldu; caldo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+caldo</AUni> -<AUni ws="qvm-x-acl">+caldo</AUni> -<AUni ws="qvm-x-akh">+caldo</AUni> -<AUni ws="qvm-x-akl">+caldo</AUni> -<AUni ws="qvm-x-ame">+caldo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.21" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="897ca421-c327-42dd-8fef-64baf368ba20" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+caldo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="96fcfbfe-c6a1-440d-86b3-3aff97ee6c84" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aea29c93-89cd-4632-9ca6-d1a608a3099f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +caldo 
\entryTyp root 
\gENG broth 
\gSPN caldo 
\e +caldo.n 
\c N0 
\ach caldu / ~_# 
\ach caldo / _# 
\akh caldu / ~_# 
\akh caldo / _# 
\acl caldu / ~_# 
\acl caldu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl caldo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl caldu / ~_# 
\akl caldu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl caldo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame caldu / ~_# 
\ame caldo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="f055a648-a469-4d15-8d0c-6fc07f45c74f" ownerguid="2a57fa30-ee20-4db8-89d8-92b821b131eb"> -<Form> -<AUni ws="qvm-x-ach">putsi</AUni> -<AUni ws="qvm-x-acl">putsi; putse</AUni> -<AUni ws="qvm-x-akh">putsi</AUni> -<AUni ws="qvm-x-akl">putsi; putse</AUni> -<AUni ws="qvm-x-ame">putsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="f05d2689-d40a-4cab-800f-e6de6134e60c" ownerguid="141fbda8-9ce8-4160-a9cf-82436828ed8a"> -<Form> -<AUni ws="qvm-x-ach">pata</AUni> -<AUni ws="qvm-x-acl">pata</AUni> -<AUni ws="qvm-x-akh">pata</AUni> -<AUni ws="qvm-x-akl">pata</AUni> -<AUni ws="qvm-x-ame">pata</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f05d62de-8ecc-4472-a6ee-bb4f55f1a637" ownerguid="fd33670e-ef16-4566-a62e-aa077e58407b"> -<ExampleWords> -<AUni ws="en">crackle, sizzle, roar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(16) What words refer to the sound of fire?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f05e0b54-7c1c-4e13-a144-b7aaaf7cb178" ownerguid="a9c8abf8-38d6-4ba5-b924-4852424261f0"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f05fd2fe-08e4-46ad-bba3-e09cb79b2f62"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">a:ru</AUni> -<AUni ws="qvm-x-acl">a:ru; a:ru; a:ro</AUni> -<AUni ws="qvm-x-akh">a:ru</AUni> -<AUni ws="qvm-x-akl">a:ru; a:ru; a:ro</AUni> -<AUni ws="qvm-x-ame">a:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+aro</AUni> -<AUni ws="qvm-x-acl">+aro</AUni> -<AUni ws="qvm-x-akh">+aro</AUni> -<AUni ws="qvm-x-akl">+aro</AUni> -<AUni ws="qvm-x-ame">+aro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.830" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f236f834-2956-4108-b9f6-86a4493f6371" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+aro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3f881eba-2add-4a23-9753-3e58f869cbbc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6633ba8a-2fb9-4684-9aff-dfbd095ffefb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +aro 
\entryTyp root 
\gENG ring 
\gSPN aro 
\e +aro 
\c N0 
\ach a:ru 
\akh a:ru 
\acl a:ru / _# 
\acl a:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl a:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl a:ru / _# 
\akl a:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl a:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame a:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f0603e9a-c085-453b-b8bf-3663358ee837"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">itsan</AUni> -<AUni ws="qvm-x-acl">itsan</AUni> -<AUni ws="qvm-x-akh">itsan</AUni> -<AUni ws="qvm-x-akl">itsan</AUni> -<AUni ws="qvm-x-ame">itsan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ichan</AUni> -<AUni ws="qvm-x-acl">*ichan</AUni> -<AUni ws="qvm-x-akh">*ichan</AUni> -<AUni ws="qvm-x-akl">*ichan</AUni> -<AUni ws="qvm-x-ame">*ichan</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.782" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eedc2a51-d37d-45e5-bd73-9db221660bcb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ichan</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9c387d89-ec59-44b3-a5ef-fb34472a5b83" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="92c0a925-284f-4bb1-bf05-9dededed361d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ichan 
\entryTyp root 
\gENG indeed 
\gSPN de.veras 
\e *ichan 
\c N0 
\mp +FinalC 
\ach itsan 
\akh itsan 
\acl itsan 
\akl itsan 
\ame itsan 
\mcc *ichan / ~_ OBJ | to catch mispelling of itsanga</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f0606490-47ad-41fa-9fa3-14c915d3373b" ownerguid="2495d5b2-9623-4b99-9066-04e164c9bb14"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">field</AUni> -<AUni ws="es">terreno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9febae43-db52-489f-8ef8-a9492c454aea" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="f067ae9a-5f5b-44a4-b710-bb1357746fa8" ownerguid="051507dc-10db-4dfc-aebc-8dd80180d730"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c6358047-7749-4a6c-a7dc-9ab50f3984fd" t="o" /> -<objsur guid="44e04722-1abc-40b1-9ac3-213a81a8e21f" t="o" /> -<objsur guid="a58332db-c18b-4c45-897c-cad02133464f" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="601446ed-9a05-462e-b177-01756e9b0fab" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="f068e266-e8ea-4671-934f-17929e749315"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ve:lu</AUni> -<AUni ws="qvm-x-acl">ve:lu; ve:lu; ve:lo</AUni> -<AUni ws="qvm-x-akh">ve:lu</AUni> -<AUni ws="qvm-x-akl">ve:lu; ve:lu; ve:lo</AUni> -<AUni ws="qvm-x-ame">ve:lu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+velo</AUni> -<AUni ws="qvm-x-acl">+velo</AUni> -<AUni ws="qvm-x-akh">+velo</AUni> -<AUni ws="qvm-x-akl">+velo</AUni> -<AUni ws="qvm-x-ame">+velo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.353" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ecec1147-7f73-4335-a9cc-9e6b98a863eb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+velo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a3428ad4-e052-4bdf-93a8-30329ec06ade" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3bf16545-84d5-4261-aa5e-c9c915f156bf" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +velo 
\entryTyp root 
\gENG 
\gSPN 
\e +velo 
\c N0 
\ach ve:lu 
\akh ve:lu 
\acl ve:lu / _# 
\acl ve:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ve:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ve:lu / _# 
\akl ve:lu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ve:lo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ve:lu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="f0695ec9-e454-4783-9ffc-970234d18301" ownerguid="e3a4cbcf-c434-41bb-91fa-eaf8b4fbf24e"> -<Form> -<AUni ws="qvm-x-ach">prësu</AUni> -<AUni ws="qvm-x-acl">prësu; prëso</AUni> -<AUni ws="qvm-x-akh">prësu</AUni> -<AUni ws="qvm-x-akl">prësu; prëso</AUni> -<AUni ws="qvm-x-ame">prësu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f06aaa44-28c9-46f4-b0c4-7c68acd6c03f" ownerguid="e369a394-97cf-492b-974f-50349b5be319"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="f06b3187-fa1f-4047-a4ca-61050c3e5b56" ownerguid="320d945e-ab48-4e21-a2da-db2f131c956c"> -<Form> -<AUni ws="qvm-x-ach">truca</AUni> -<AUni ws="qvm-x-acl">truca</AUni> -<AUni ws="qvm-x-akh">truka</AUni> -<AUni ws="qvm-x-akl">truka</AUni> -<AUni ws="qvm-x-ame">truka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f07024f3-83b6-4d32-a6b1-36b0f24328ca"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsapi</AUni> -<AUni ws="qvm-x-acl">tsapi; tsape</AUni> -<AUni ws="qvm-x-akh">tsapi</AUni> -<AUni ws="qvm-x-akl">tsapi; tsape</AUni> -<AUni ws="qvm-x-ame">tsapi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chapi.1</AUni> -<AUni ws="qvm-x-acl">*chapi.1</AUni> -<AUni ws="qvm-x-akh">*chapi.1</AUni> -<AUni ws="qvm-x-akl">*chapi.1</AUni> -<AUni ws="qvm-x-ame">*chapi.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.284" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ca8cc993-ba6b-47ad-b5ca-57537d040c6b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chapi.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="29f1bdb5-0f23-4974-bc8e-6633c6f6d608" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c75eea15-9755-4fb9-8f2d-755cdb72706f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chapi.1 
\entryTyp root 
\gENG shove/hurl 
\gSPN zampar 
\e *chapi.1 
\c V2 
\mp +FinalI 
\ach tsapi 
\akh tsapi 
\acl tsapi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tsape +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsapi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsape +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsapi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f07082ba-9a14-4d5d-b895-70c53871eb6e" ownerguid="1e2b3ba4-8568-43e3-b010-1ed75a2982f9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="f0721e7b-5943-42ee-ac2b-12df687fa1a2" ownerguid="d03e0238-8dd1-4b6c-af7f-65093517b71e"> -<Form> -<AUni ws="qvm-x-ach">maja</AUni> -<AUni ws="qvm-x-acl">maja</AUni> -<AUni ws="qvm-x-akh">maja</AUni> -<AUni ws="qvm-x-akl">maja</AUni> -<AUni ws="qvm-x-ame">maha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f073f174-01a4-468b-a34c-058cd1613ddc" ownerguid="f7da1907-e6c5-4d21-a8e8-81376f3467df"> -<ExampleWords> -<AUni ws="en">conflict, strife</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to conflict between people?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f07757e2-d57f-4014-bff9-fdbc5007a02a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cabecea</AUni> -<AUni ws="qvm-x-acl">cabecea</AUni> -<AUni ws="qvm-x-akh">cabecea</AUni> -<AUni ws="qvm-x-akl">cabecea</AUni> -<AUni ws="qvm-x-ame">cabecea</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cabecear</AUni> -<AUni ws="qvm-x-acl">+cabecear</AUni> -<AUni ws="qvm-x-akh">+cabecear</AUni> -<AUni ws="qvm-x-akl">+cabecear</AUni> -<AUni ws="qvm-x-ame">+cabecear</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.1" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e601c19f-4834-4a44-8328-f075d8a3aa14" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cabecear</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fee5329e-c84d-48aa-855a-c04a90305ab2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="530fdc6d-6b00-4ef4-bb54-0e93a0088d0b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cabecear 
\entryTyp root 
\gENG to.head 
\gSPN cabecear 
\e +cabecear 
\c V2 
\ach cabecea 
\akh cabecea 
\acl cabecea 
\akl cabecea 
\ame cabecea</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f07c6be8-28e7-4c51-a22f-18a88b5ce2be" ownerguid="642ff468-e6c8-4fd0-8f52-262efa8f7774"> -<ExampleWords> -<AUni ws="en">hated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a person who is hated?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="f07f867d-808f-4750-92ca-859aea59e58c" ownerguid="0f883eb0-00a1-44cc-b719-97fb6ec145d4"> -<Abbreviation> -<AUni ws="en">5.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.344" /> -<DateModified val="2022-9-23 16:55:8.344" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to living in a place.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>85E Dwell, Reside</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Live, stay</AUni> -</Name> -<Questions> -<objsur guid="72ec515d-2dcb-479d-a563-23187aad3fb9" t="o" /> -<objsur guid="8d32e0d6-d8a7-4ec9-97e8-c81b7e22449d" t="o" /> -<objsur guid="843a74b8-c2e7-4cc4-8d78-cfb9480aabcb" t="o" /> -<objsur guid="e6316909-1328-4434-a8ab-a69259df8b87" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="f08079cf-88ea-4dce-b541-aa50579628b1" ownerguid="87ecf1cf-9c1f-49c9-9f0e-a3d1d9710922"> -<Form> -<AUni ws="qvm-x-ach">guewi</AUni> -<AUni ws="qvm-x-acl">guewi; guewe</AUni> -<AUni ws="qvm-x-akh">qewi</AUni> -<AUni ws="qvm-x-akl">qewi; qewe</AUni> -<AUni ws="qvm-x-ame">qiwi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f081f71e-0bfa-46cb-a42c-6d675b245216"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">humilla</AUni> -<AUni ws="qvm-x-acl">humilla</AUni> -<AUni ws="qvm-x-akh">humilla</AUni> -<AUni ws="qvm-x-akl">humilla</AUni> -<AUni ws="qvm-x-ame">humilla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+humillar</AUni> -<AUni ws="qvm-x-acl">+humillar</AUni> -<AUni ws="qvm-x-akh">+humillar</AUni> -<AUni ws="qvm-x-akl">+humillar</AUni> -<AUni ws="qvm-x-ame">+humillar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.761" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="845471df-9765-4f6c-b8d9-e56011291cb0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+humillar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="81bd9573-b1ba-4592-bf79-986ee4b4445b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0f994bcb-43f3-4ce3-8645-36b1f8f9a9ed" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +humillar 
\entryTyp root 
\gENG humble 
\gSPN humillar 
\e +humillar 
\c V1 
\ach humilla 
\akh humilla 
\acl humilla 
\akl humilla 
\ame humilla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f0897d5c-03f0-4ed0-a554-bd700cb558bc" ownerguid="cc06d120-fce8-4587-a4b7-9bbef3677d3c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">newspaper</AUni> -<AUni ws="es">periódico</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="70d7ce49-6335-4c83-a0a8-4f172dc4bdd7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="PunctuationForm" guid="f08b4b42-bce8-4176-b53a-e5dda7a121ef"> -<Form> -<Str> -<Run ws="en">21</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="f08e4f19-d18c-40e3-8a80-c0b3fd891314" ownerguid="47f170eb-5f1d-49a5-85bb-240047f392c0"> -<ExampleWords> -<AUni ws="en">soft, flimsy, easily broken, tender</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is soft?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f08f1818-2b42-4b81-a5a4-69da0c56e4c9" ownerguid="c0cdd140-1306-4718-977b-5753756c8ec7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">in</AUni> -<AUni ws="es">en</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="885061dd-355e-4c52-b486-b6c77e5d2eb2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="f08fdf77-9feb-4462-a6ea-032408846cc5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bro:ma</AUni> -<AUni ws="qvm-x-acl">bro:ma</AUni> -<AUni ws="qvm-x-akh">bro:ma</AUni> -<AUni ws="qvm-x-akl">bro:ma</AUni> -<AUni ws="qvm-x-ame">bro:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+broma</AUni> -<AUni ws="qvm-x-acl">+broma</AUni> -<AUni ws="qvm-x-akh">+broma</AUni> -<AUni ws="qvm-x-akl">+broma</AUni> -<AUni ws="qvm-x-ame">+broma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.981" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f3c99012-686e-4951-91b0-304e174ae716" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+broma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f90a4c3c-4423-4a99-97bc-0cd3623b0620" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="af7afc6c-24e3-435a-b8a2-217d4576055a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +broma 
\entryTyp root 
\gENG 
\gSPN 
\e +broma 
\c N0 
\ach bro:ma 
\akh bro:ma 
\acl bro:ma 
\akl bro:ma 
\ame bro:ma</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f0913050-5157-4ebd-96ab-d792f9dc1ce3" ownerguid="f5127d84-1119-44cb-b66a-9c44e6c370c6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="f09796c7-fc3b-4252-b096-4a5370c0671f" ownerguid="3ab01c1e-439b-44a6-95d0-6c680f6f46d3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">talented</AUni> -<AUni ws="es">habiloso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bc706e2a-1dc0-438f-989c-69a733d67e31" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f097a189-4724-496e-b823-9b68223a9a3d" ownerguid="6ea9bfc6-723c-466f-9efc-0992879ae47d"> -<ExampleWords> -<AUni ws="en">pigment</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What instruments and materials are used?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="f09a5282-40ee-4c52-b439-f0df0d545043"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">runätapis</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="f0a3d251-8e38-4a25-8292-29ed6dc06c82"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aptosia</AUni> -<AUni ws="qvm-x-acl">aptosia</AUni> -<AUni ws="qvm-x-akh">aptosia</AUni> -<AUni ws="qvm-x-akl">aptosia</AUni> -<AUni ws="qvm-x-ame">aptosia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+autopsia</AUni> -<AUni ws="qvm-x-acl">+autopsia</AUni> -<AUni ws="qvm-x-akh">+autopsia</AUni> -<AUni ws="qvm-x-akl">+autopsia</AUni> -<AUni ws="qvm-x-ame">+autopsia</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.880" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c4cbd41b-4103-471e-91e0-c31e0e626e4a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+autopsia</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="18c4b5d8-10e8-48d0-ae10-254baf852348" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a9f045ea-e8db-448d-bb16-fa4fe27e3e9e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +autopsia 
\entryTyp root 
\gENG autopsy 
\gSPN 
\e +autopsia 
\c N0 
\mp +assimilated 
\ach aptosia 
\akh aptosia 
\acl aptosia 
\akl aptosia 
\ame aptosia</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f0a3f9d6-62b8-477a-8c17-67f7304c7da8" ownerguid="b8bc2a9f-5839-4462-a733-aa02d69fdc19"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f0a69341-ef87-44ba-a827-aa08ab6fca11" ownerguid="cb95189c-8c74-465b-af07-48e08dbf7c39"> -<ExampleWords> -<AUni ws="en">be gripped by</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to feeling something very strongly?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f0aab5ce-22a0-497a-a0e1-6c600d8ebee4" ownerguid="84812e05-5a4d-4776-abaa-761b9a977ff6"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="f0aaf32c-78ce-437b-a2ba-10bb748068a9" ownerguid="e9515a66-8027-4815-a23c-3614b5c5089a"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f0b48c79-b15e-4e3f-a722-74947eebd0d2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">almuerzu; almuerzo</AUni> -<AUni ws="qvm-x-acl">almuerzu; almuerzu; almuerzo</AUni> -<AUni ws="qvm-x-akh">almuerzu; almuerzo</AUni> -<AUni ws="qvm-x-akl">almuerzu; almuerzu; almuerzo</AUni> -<AUni ws="qvm-x-ame">almuerzu; almuerzo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+almuerzo</AUni> -<AUni ws="qvm-x-acl">+almuerzo</AUni> -<AUni ws="qvm-x-akh">+almuerzo</AUni> -<AUni ws="qvm-x-akl">+almuerzo</AUni> -<AUni ws="qvm-x-ame">+almuerzo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.719" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="94d56eac-fc40-4ff5-9fc9-ef81c7d43de8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+almuerzo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a283647e-ee95-4a79-82de-f8ec237765ed" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cdbd4831-95a6-4c73-95ee-0612aa6e0057" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +almuerzo 
\entryTyp root 
\gENG noon.meal 
\gSPN almuerzo 
\e +almuerzo 
\c N0 
\ach almuerzu / ~_# 
\ach almuerzo / _# 
\akh almuerzu / ~_# 
\akh almuerzo / _# 
\acl almuerzu / ~_# 
\acl almuerzu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl almuerzo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl almuerzu / ~_# 
\akl almuerzu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl almuerzo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame almuerzu / ~_# 
\ame almuerzo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f0b73104-37bb-4f78-937f-4d55e8e1b3e5" ownerguid="1ec85151-eba0-48f4-b56d-4f8040602a4b"> -<ExampleWords> -<AUni ws="en">birthright</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to the right to inherit something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f0b972c3-0cee-4e3f-bf17-f3f28710c848" ownerguid="b02a4a9c-cfca-4e01-8be5-5ccfbf32400b"> -<Form> -<AUni ws="qvm-x-ach">lapla</AUni> -<AUni ws="qvm-x-acl">lapla</AUni> -<AUni ws="qvm-x-akh">lapla</AUni> -<AUni ws="qvm-x-akl">lapla</AUni> -<AUni ws="qvm-x-ame">lapla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="f0b99234-0a2f-44c4-83ae-47801443b6b2" ownerguid="32493268-8f3b-4c37-90fe-b4ba87c4c7e1"> -<Form> -<AUni ws="qvm-x-ach">camay</AUni> -<AUni ws="qvm-x-acl">camay</AUni> -<AUni ws="qvm-x-akh">kamay</AUni> -<AUni ws="qvm-x-akl">kamay</AUni> -<AUni ws="qvm-x-ame">kamay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f0bd6ba1-a57a-4aa8-afad-e3961a9e05f9" ownerguid="c09eedd3-c4e1-4cf9-b6d1-a01624c6426a"> -<ExampleWords> -<AUni ws="en">dust</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the dirt that is removed?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f0bf0322-8c8d-4f7b-a98a-778236426b21"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cascu; casco</AUni> -<AUni ws="qvm-x-acl">cascu; cascu; casco</AUni> -<AUni ws="qvm-x-akh">cascu; casco</AUni> -<AUni ws="qvm-x-akl">cascu; cascu; casco</AUni> -<AUni ws="qvm-x-ame">cascu; casco</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+casco</AUni> -<AUni ws="qvm-x-acl">+casco</AUni> -<AUni ws="qvm-x-akh">+casco</AUni> -<AUni ws="qvm-x-akl">+casco</AUni> -<AUni ws="qvm-x-ame">+casco</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.72" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c8c8655b-bf69-429d-857f-0146004a253a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+casco</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="34c2eb75-4aa2-47ab-8d67-4555a82f6f5d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="156e416a-5570-40c3-981b-0927f7ec0d3a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +casco 
\entryTyp root 
\gENG skull 
\gSPN casco 
\e +casco 
\c N0 V1 
\ach cascu / ~_# 
\ach casco / _# 
\akh cascu / ~_# 
\akh casco / _# 
\acl cascu / ~_# 
\acl cascu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl casco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cascu / ~_# 
\akl cascu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl casco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cascu / ~_# 
\ame casco / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f0c40d10-00bf-49bb-a9a3-9070edaa4759"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">familia</AUni> -<AUni ws="qvm-x-acl">familia</AUni> -<AUni ws="qvm-x-akh">familia</AUni> -<AUni ws="qvm-x-akl">familia</AUni> -<AUni ws="qvm-x-ame">familia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+familia</AUni> -<AUni ws="qvm-x-acl">+familia</AUni> -<AUni ws="qvm-x-akh">+familia</AUni> -<AUni ws="qvm-x-akl">+familia</AUni> -<AUni ws="qvm-x-ame">+familia</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.536" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eaefb05d-bbba-4e1e-b01f-be9d72d24329" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+familia</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d675741c-26d1-45e4-b541-5943d8e4a482" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4c3d3ca2-ad5b-4fc4-a7d4-a2f4ba98e6ce" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +familia 
\entryTyp root 
\gENG family 
\gSPN familia 
\e +familia 
\c N0 
\ach familia 
\akh familia 
\acl familia 
\akl familia 
\ame familia</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="f0c6820c-5fce-4a6a-9339-3d76fea58a6f" ownerguid="91a24a4f-487c-4657-b2a4-b2f34e8bf101"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">wila</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">wila</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">wila</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">wila</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">wila</Run> -</AStr> -</Form> -<Morph> -<objsur guid="0928b47a-a09c-4844-9607-34804a03c1e4" t="r" /> -</Morph> -<Msa> -<objsur guid="bb302077-07af-4981-ad5e-c91b9bb5f054" t="r" /> -</Msa> -<Sense> -<objsur guid="7f5f15da-d22c-4aa0-af9e-60d6f27e7fa5" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="f0c716cb-9e80-4b47-9d3c-c1f4f345dd1e" ownerguid="d219ca82-8616-423d-a266-758f621759e6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f0c7d305-01bc-4a03-b2dc-6cfda627fc03"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">carrete:ra</AUni> -<AUni ws="qvm-x-acl">carrete:ra</AUni> -<AUni ws="qvm-x-akh">carrete:ra</AUni> -<AUni ws="qvm-x-akl">carrete:ra</AUni> -<AUni ws="qvm-x-ame">carrete:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+carretera</AUni> -<AUni ws="qvm-x-acl">+carretera</AUni> -<AUni ws="qvm-x-akh">+carretera</AUni> -<AUni ws="qvm-x-akl">+carretera</AUni> -<AUni ws="qvm-x-ame">+carretera</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.920" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ee2fc8a6-336a-469e-9daf-2a51e21dc104" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+carretera</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cf54e0e7-8eaf-459c-b547-14488785c454" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8620c65e-327e-49d6-a5a1-bc44f4470f7a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +carretera 
\entryTyp root 
\gENG road 
\gSPN carretera 
\e +carretera 
\c N0 
\ach carrete:ra 
\akh carrete:ra 
\acl carrete:ra 
\akl carrete:ra 
\ame carrete:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f0c9f0dd-583e-4373-bb7f-6da776a95aaf" ownerguid="2cb7f63b-dd59-43f6-a8cc-f4aff09d3eec"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f0cc3aff-40a7-4ee9-9518-7ee2971599b1" ownerguid="7337b2dd-b574-4a41-affa-2dfad7f6cdbc"> -<ExampleWords> -<AUni ws="en">X team has won the toss. OK, John goes first. I win. The Lord's will be done. It is the will of the gods. The gods have spoken.</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What do people say when a decision has been made?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f0cd4fd9-cd3b-4e13-97e2-a22bf13d3e72" ownerguid="265c55d2-9185-4f1f-a9e8-91618f9bd549"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">white.patch</AUni> -<AUni ws="es">pelo.blanco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="308371bb-74f4-46d9-ae09-bac3de818ed5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f0cecd6d-6848-4863-b024-774f646dbf2a" ownerguid="b7c2be93-5cfe-44fa-a38d-447679d5f359"> -<Form> -<AUni ws="qvm-x-ach">müsicu</AUni> -<AUni ws="qvm-x-acl">müsicu; müsicu; müsico</AUni> -<AUni ws="qvm-x-akh">müsicu</AUni> -<AUni ws="qvm-x-akl">müsicu; müsicu; müsico</AUni> -<AUni ws="qvm-x-ame">müsicu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f0cf5124-c39a-4862-bc26-762741ae43d4" ownerguid="16d2c60a-52d7-4ec5-a5b1-c559dc078bf3"> -<ExampleWords> -<AUni ws="en">enforce the law, investigate crime, patrol, set up roadblocks, file reports</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What do police do?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f0d0631c-1dcd-4e76-9609-74889b562141"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pu:ca</AUni> -<AUni ws="qvm-x-acl">pu:ca</AUni> -<AUni ws="qvm-x-akh">pu:ka</AUni> -<AUni ws="qvm-x-akl">pu:ka</AUni> -<AUni ws="qvm-x-ame">pu:ka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pu:ka.v</AUni> -<AUni ws="qvm-x-acl">*pu:ka.v</AUni> -<AUni ws="qvm-x-akh">*pu:ka.v</AUni> -<AUni ws="qvm-x-akl">*pu:ka.v</AUni> -<AUni ws="qvm-x-ame">*pu:ka.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.972" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0ac506e0-2e01-4066-a195-09229d87e2c5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pu:ka.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b43c0e15-25e5-4009-8fd8-345049e018a0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8a927b7a-3329-424c-a57b-3843ce6d8766" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pu:ka.v 
\entryTyp root 
\gENG blow 
\gSPN soplar 
\e *pu:ka.v 
\c V2 
\ach pu:ca 
\akh pu:ka 
\acl pu:ca 
\akl pu:ka 
\ame pu:ka</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f0d1d042-8257-4314-9c5a-3d2f8e269a1e" ownerguid="70164474-a65b-4506-9953-f26afb6b497a"> -<ExampleWords> -<AUni ws="en">lamp stand, oil, wick</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What are the parts of a lamp?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f0d22468-8e75-46b4-8034-bd8a8c1c873e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">buyi; buyi</AUni> -<AUni ws="qvm-x-acl">buyi; buyi; buye</AUni> -<AUni ws="qvm-x-akh">buyi; buyi</AUni> -<AUni ws="qvm-x-akl">buyi; buyi; buye</AUni> -<AUni ws="qvm-x-ame">buyi; buyi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+buey</AUni> -<AUni ws="qvm-x-acl">+buey</AUni> -<AUni ws="qvm-x-akh">+buey</AUni> -<AUni ws="qvm-x-akl">+buey</AUni> -<AUni ws="qvm-x-ame">+buey</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.991" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6bb1cfc1-6205-461a-94c7-502146a78d37" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+buey</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4375d9f7-09eb-4ad1-8104-c3d74c93ce8f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8cd3d5a0-cbda-4ef0-a68c-ceb1f52a5612" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +buey 
\entryTyp root 
\gENG 
\gSPN 
\e +buey 
\c N0 
\mp +FinalI 
\ach buyi / _# 
\ach buyi / ~_# 
\akh buyi / _# 
\akh buyi / ~_# 
\acl buyi / _# 
\acl buyi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl buye +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl buyi / _# 
\akl buyi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl buye +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame buyi / _# 
\ame buyi / ~_# 
\i JOB 24.3 Viüdapa buyintapis prenda tsaricurcun.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f0d25b3e-3e36-43d6-b59c-1c02ee16348a" ownerguid="14fef832-59de-4167-8508-ababf7d5abf1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="f0d29703-cf1f-4712-8bdc-c5d4b3bed49a" ownerguid="dee448f2-5ef5-485a-87f8-b82e3b286bc7"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f0d3a423-d692-4c82-9ad6-57839f464066" ownerguid="fbf40f2e-e743-479d-80b2-63325407d5d1"> -<ExampleWords> -<AUni ws="en">let me just insert, as an aside, this is off the subject, oh by the way</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words mark a digression?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f0d59d06-7dd4-473b-9b42-86d47f5c07f5" ownerguid="13568de9-7fd1-4997-a27d-bef1989b5a47"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f0d70ff8-f9e3-4430-8db6-a4cb637202ef" ownerguid="df2ee830-0668-43d7-8a32-e2fd3e7b31d8"> -<ExampleWords> -<AUni ws="en">-ed, (in English vowel replacement is also used to indicate past tense, e.g. run, ran)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(20) What words are used to indicate the past tense?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f0d79263-3538-4eb5-99eb-aebc9f2c351d" ownerguid="cd0162de-bb70-4f39-85fa-f9c59ba90886"> -<Form> -<AUni ws="qvm-x-ach">matsi</AUni> -<AUni ws="qvm-x-acl">matsi; matse</AUni> -<AUni ws="qvm-x-akh">matsi</AUni> -<AUni ws="qvm-x-akl">matsi; matse</AUni> -<AUni ws="qvm-x-ame">matsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f0d85714-7e60-44f0-bf85-92a09f645599" ownerguid="362a2bdd-985e-4bc0-a41c-358bd1babb12"> -<ExampleWords> -<AUni ws="en">spy ring, intelligence agency, intelligence community</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What is a group of spies called?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f0d88b43-6bb2-443f-928c-2c24e7e603a9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wayta</AUni> -<AUni ws="qvm-x-acl">wayta</AUni> -<AUni ws="qvm-x-akh">wayta</AUni> -<AUni ws="qvm-x-akl">wayta</AUni> -<AUni ws="qvm-x-ame">wayta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wayta.v</AUni> -<AUni ws="qvm-x-acl">*wayta.v</AUni> -<AUni ws="qvm-x-akh">*wayta.v</AUni> -<AUni ws="qvm-x-akl">*wayta.v</AUni> -<AUni ws="qvm-x-ame">*wayta.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.627" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="69af1fc6-5463-4da5-8e00-d4797f703306" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wayta.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="939db891-2745-4a71-b64b-da13b874ff26" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5a755e20-9d38-425f-924e-baf0eb876df5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wayta.v 
\entryTyp root 
\gENG enflower 
\gSPN florear 
\e *wayta.v 
\c V1 
\ach wayta 
\akh wayta 
\acl wayta 
\akl wayta 
\ame wayta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="f0de6c5a-3df6-4483-8c63-2d8fcd6c97be" ownerguid="cf337287-c9fa-43d2-93c4-284f45e262c0"> -<Abbreviation> -<AUni ws="en">2.5.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.47" /> -<DateModified val="2022-9-23 16:55:8.47" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to not having enough food.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Malnutrition, starvation</AUni> -</Name> -<Questions> -<objsur guid="112b9de2-85e9-449f-8df8-2bc74f5b9f95" t="o" /> -<objsur guid="c763f2f9-0d9a-40b8-9505-b87323e55496" t="o" /> -<objsur guid="ca4e7b43-acb1-4908-8f7f-f6a120db7b3a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="f0de8b69-43ef-4a89-8186-033da98e0f15" ownerguid="12a028d1-d910-4011-ab9d-59be69daaf65"> -<ExampleWords> -<AUni ws="en">overreact</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to reacting too strongly?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="f0df0104-75b5-4b95-9a9d-16207c1bee66"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">despidikur</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="f0e30717-4316-45f4-80c7-54eaa2c1daa0" ownerguid="cdccd898-2887-4738-9ae9-1e3b0920a8ac"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">armpit</AUni> -<AUni ws="es">sobaco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1597acc2-4968-46e9-98d3-0760d0b4456e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="f0e5986a-2fc0-4ac1-a51a-203f0563478b" ownerguid="b719f652-e058-44c5-aa33-0c3ae28ceac7"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">GEN 4.5 Tsaynog mana chasquiptinmi Caínpaga cäranpis rabyawan jucagyacäcorgan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="f0e68d2f-f7b3-4722-80a4-8e9c5638b0d4" ownerguid="a42db5b4-6317-4d3f-beff-cb92dbaca914"> -<Abbreviation> -<AUni ws="en">3.2.2.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.101" /> -<DateModified val="2022-9-23 16:55:8.101" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to studying--to try to learn something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>27D Try To Learn</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Study</AUni> -</Name> -<OcmCodes> -<Uni>120 Research Methods; Methodology; 121 Theoretical Orientation in Research and Its Results; 122 Practical Preparations in Conducting Fieldwork; 123 Observational Role in Research; 124 Interviewing in Research; 125 Tests and Schedules Administered In the Field; 126 Recording and Collecting In the Field; 127 Historical and Archival Research; 128 Organization and Analysis of Results of Research</Uni> -</OcmCodes> -<Questions> -<objsur guid="6e509992-f9d8-4959-b255-38a85c1d09c6" t="o" /> -<objsur guid="e681db8f-446a-4abe-8e5a-3ec17e9fcea2" t="o" /> -<objsur guid="17763c82-85e9-4612-a820-f92416bd0ad0" t="o" /> -<objsur guid="c05ee9de-72d0-432c-99da-9caa6f0d46af" t="o" /> -<objsur guid="08928908-1926-4293-9071-eb57b6e11ef0" t="o" /> -<objsur guid="c0f8253c-7e2b-4d78-8572-5432cefb74de" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="f0e7441a-9288-44bc-affb-354562072824" ownerguid="a42bd414-d390-4ccf-8200-6cd05a2c6243"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">skirt</AUni> -<AUni ws="es">falda</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="875d274d-c259-4a3e-89ae-3bb28c79c633" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f0e8418f-5457-4d52-b497-1db14dcd25df" ownerguid="82ecb5b3-9128-4b38-b9c5-612857417ceb"> -<ExampleWords> -<AUni ws="en">sneer, boo</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What do people do to show they dislike something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f0ec74d9-5426-4638-8aea-4146f49eb678" ownerguid="40019add-d835-4b79-a1fd-2419f598973d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">nor</AUni> -<AUni ws="es">ni</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="79c4feb2-9da0-423f-b92a-3f308074069c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="f0f108f9-e329-4770-98ea-c95abeced081" ownerguid="a228d3b1-a6b5-4dd7-9c77-ff4a2df3cf52"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="71365c2a-e254-43af-89b3-e3974a992188" t="r" /> -</Morph> -<Msa> -<objsur guid="6c33f89d-3f7a-4bad-b071-ac31d875398c" t="r" /> -</Msa> -</rt> -<rt class="CmSemanticDomain" guid="f0f3c371-166e-4a66-849f-60d6fa7ad889" ownerguid="3160b7ad-e4e8-4a46-8e2e-d5e601969547"> -<Abbreviation> -<AUni ws="en">3.5.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.174" /> -<DateModified val="2022-9-23 16:55:8.174" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to poetry.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Poetry</AUni> -</Name> -<OcmCodes> -<Uni>5310 Verbal Arts</Uni> -</OcmCodes> -<Questions> -<objsur guid="fb213fef-34e7-4a23-8be8-e2b4f032df7a" t="o" /> -<objsur guid="19afe330-8f44-46ea-8969-b293893a1aa7" t="o" /> -<objsur guid="099d024c-1c58-4239-951a-892e0ff979b0" t="o" /> -<objsur guid="b8984590-fc3e-43d8-9ee4-65db06a58880" t="o" /> -<objsur guid="ade36d57-b360-4679-a822-a17bd312db9a" t="o" /> -<objsur guid="828a478d-598d-4a67-bf5f-721a358057f2" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="f0f683a6-3238-4377-bfb8-17c15c20af9d" ownerguid="c9da4369-8c6f-47c3-bab4-d59d0de8d022"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a4d42f6f-d626-4469-8166-21d6f4e69d6d" t="r" /> -</Morph> -<Msa> -<objsur guid="72dc7bab-4d12-4cdb-a144-3c853f889fb5" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="f0f784fe-838a-4beb-b56a-b502b4015766" ownerguid="d8f2f873-fa4c-411b-a91e-7ccbcc7a33ce"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f0f8ce00-9998-42f3-a1e6-d7395f6c667e" ownerguid="d01f1c51-522e-4b35-81b3-00577dbfa3bd"> -<ExampleWords> -<AUni ws="en">pure, mixed, tinge, primary color, secondary color, tertiary color</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to pure or mixed colors?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f0fa94d2-410b-4437-9250-35adfeb0fdfc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lanzamientu; lanzamiento</AUni> -<AUni ws="qvm-x-acl">lanzamientu; lanzamientu; lanzamiento</AUni> -<AUni ws="qvm-x-akh">lanzamientu; lanzamiento</AUni> -<AUni ws="qvm-x-akl">lanzamientu; lanzamientu; lanzamiento</AUni> -<AUni ws="qvm-x-ame">lanzamientu; lanzamiento</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lanzamiento</AUni> -<AUni ws="qvm-x-acl">+lanzamiento</AUni> -<AUni ws="qvm-x-akh">+lanzamiento</AUni> -<AUni ws="qvm-x-akl">+lanzamiento</AUni> -<AUni ws="qvm-x-ame">+lanzamiento</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.51" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a096bbac-f9f5-417b-b1b6-11034f062f2b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lanzamiento</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="363d94ce-52bd-4c68-ba70-a1682b76ada7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="aa27707c-8397-46f1-8c3f-e0958db547b2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lanzamiento 
\entryTyp root 
\gENG launch 
\gSPN lanzamiento 
\e +lanzamiento 
\c N0 
\ach lanzamientu / ~_# 
\ach lanzamiento / _# 
\akh lanzamientu / ~_# 
\akh lanzamiento / _# 
\acl lanzamientu / ~_# 
\acl lanzamientu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lanzamiento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lanzamientu / ~_# 
\akl lanzamientu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lanzamiento +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lanzamientu / ~_# 
\ame lanzamiento / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f0fb7da6-1307-40cf-910d-2a7a279934ed"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shenga</AUni> -<AUni ws="qvm-x-acl">shenga</AUni> -<AUni ws="qvm-x-akh">shenqa</AUni> -<AUni ws="qvm-x-akl">shenqa</AUni> -<AUni ws="qvm-x-ame">shinqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shinqa.n</AUni> -<AUni ws="qvm-x-acl">*shinqa.n</AUni> -<AUni ws="qvm-x-akh">*shinqa.n</AUni> -<AUni ws="qvm-x-akl">*shinqa.n</AUni> -<AUni ws="qvm-x-ame">*shinqa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.591" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="05fa9ba7-2814-49ee-a6eb-f1d664cba455" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shinqa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a1534f8f-3582-41b9-b3c1-2e3f04b1b66a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3ba98a3c-cb94-4470-a6c3-c1a455a038de" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shinqa.n 
\entryTyp root 
\gENG muzzle 
\gSPN 
\e *shinqa.n 
\c N0 
\ach shenga 
\akh shenqa 
\acl shenga 
\akl shenqa 
\ame shinqa 
\mcc *shinqa.n / ~_ ADV2</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f0fd4572-67b7-42b3-81d0-38ed7db7b9e1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wishga</AUni> -<AUni ws="qvm-x-acl">wishga</AUni> -<AUni ws="qvm-x-akh">wishqa</AUni> -<AUni ws="qvm-x-akl">wishqa</AUni> -<AUni ws="qvm-x-ame">wishqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wishqa</AUni> -<AUni ws="qvm-x-acl">*wishqa</AUni> -<AUni ws="qvm-x-akh">*wishqa</AUni> -<AUni ws="qvm-x-akl">*wishqa</AUni> -<AUni ws="qvm-x-ame">*wishqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.688" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0e7a8107-72c6-465a-8060-ae8ce8a80ece" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wishqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8acc7331-8061-4851-ad9c-1bfd9f32758d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a5e4126e-bc63-47f6-8399-25d080e4aad1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wishqa 
\entryTyp root 
\gENG cold 
\gSPN gripe 
\e *wishqa 
\c N0 
\ach wishga 
\akh wishqa 
\acl wishga 
\akl wishqa 
\ame wishqa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="f0fdbdfa-094e-4bec-ae19-af23d2c02ed6" ownerguid="d030f0c7-31a3-47da-be35-46f1eba63ae9"> -<Abbreviation> -<AUni ws="en">3.4.1.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.133" /> -<DateModified val="2022-9-23 16:55:8.133" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling contented.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25G Content, Satisfied</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Contentment</AUni> -</Name> -<Questions> -<objsur guid="f57b5809-dd8b-4a07-beba-a8013db4a9f8" t="o" /> -<objsur guid="e3f76e1b-7b73-45da-94c9-8bf3fc21469f" t="o" /> -<objsur guid="662ea93d-1884-4d7e-8faa-1eea6662a8e9" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="f3dbb078-6265-4861-a6e3-46cc151c5d72" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="f10079d5-2c4c-498f-855e-383e29a3401e" ownerguid="a42db5b4-6317-4d3f-beff-cb92dbaca914"> -<ExampleWords> -<AUni ws="en">graduate, teacher, scholar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to someone who has learned?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="f1007f31-9acf-4cf0-b595-6bb968e74c17"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Manami</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="f10442d0-b8c3-4c16-873a-3694c9a159ac" ownerguid="26458e29-e274-4c71-a303-5d4957110fbf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">interruption</AUni> -<AUni ws="es">interrupción</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d57d397f-8b32-4f7e-8fde-35432f26128a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f1044d9b-f0b1-4878-9379-18f89b1e0199" ownerguid="ce30eb9c-8260-476b-878c-0a078d596955"> -<ExampleWords> -<AUni ws="en">neglect, omit, let something pass, slip, unmindful, miss</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to failing to remember to do something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f105ef43-eb86-4db3-bcf0-c052243341b3" ownerguid="7ddbd56f-e458-4a72-a9bc-9b7db6bde75a"> -<ExampleWords> -<AUni ws="en">take the throne, crown (v), swear in, take the oath of office</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to when a ruler begins to rule?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f106b63d-2dcb-447d-b2a6-24fde50eb34b" ownerguid="e28f3f79-d4a5-402c-8a70-196856791078"> -<ExampleWords> -<AUni ws="en">do, act, actuate, behave, accomplish, achieve, attain, conduct, effectuate, engage in, execute, exercise, exert, function, give, go about, dabble in, implement, manage, perform, practice, progress, undertake, up to, use, utilize, work, operate, be involved in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to someone doing something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f1092161-733a-4873-8885-7df06f52421f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cho</AUni> -<AUni ws="qvm-x-acl">cho</AUni> -<AUni ws="qvm-x-akh">cho</AUni> -<AUni ws="qvm-x-akl">cho</AUni> -<AUni ws="qvm-x-ame">chaw</AUni> -</Custom> -<AlternateForms> -<objsur guid="873a2cfb-bb33-4cb8-976f-1e2e5fe65323" t="o" /> -<objsur guid="c03b522c-63ca-40a9-8286-d70f0806d805" t="o" /> -</AlternateForms> -<DateCreated val="2022-9-23 18:26:20.528" /> -<DateModified val="2022-10-16 15:27:47.114" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cf240770-dbb1-4b58-a8d0-fe6647e0779d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">LOC1.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="67d4d16b-3fe8-47b5-b211-66dac0610398" t="o" /> -<objsur guid="d6e21f0e-f17e-413e-b186-416974e463f1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="873fcd0a-0703-4e25-874d-dce7e2f7cdb7" t="o" /> -<objsur guid="37b4fb1f-5fb7-42cf-8e1a-e9d68e90473c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx LOC1.2 
\entryTyp suffix 
\gENG LOC 
\gSPN LOC 
\e LOC1.2 
\c N0/N0 BN/N0 R0/R0 
\o 180 
\mp NeverChanged 
\ach cho / _# 
\akh cho / _# 
\acl cho / _# 
\akl cho / _# 
\ame chaw / _# 
\mcc LOC1.2 / ~_ [loc] | final chöchöga</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f10944fa-5e6d-42e6-81ed-6a2a08118773"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shuyu</AUni> -<AUni ws="qvm-x-acl">shuyu; shuyo</AUni> -<AUni ws="qvm-x-akh">shuyu</AUni> -<AUni ws="qvm-x-akl">shuyu; shuyo</AUni> -<AUni ws="qvm-x-ame">shuyu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shuyu</AUni> -<AUni ws="qvm-x-acl">*shuyu</AUni> -<AUni ws="qvm-x-akh">*shuyu</AUni> -<AUni ws="qvm-x-akl">*shuyu</AUni> -<AUni ws="qvm-x-ame">*shuyu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.671" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0a7cd241-9c33-48fc-be78-227c6caf0313" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shuyu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6301dfa1-b048-4db0-a681-974a058e0fc9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7c8c8fac-4d8c-41a0-8f5b-1c2afe9751f3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shuyu 
\entryTyp root 
\gENG race 
\gSPN hacer.competencia 
\e *shuyu 
\c V2 
\ach shuyu 
\akh shuyu 
\acl shuyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shuyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shuyu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shuyo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shuyu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f109a3dc-7ba8-4575-8afa-20ef7d8c2a73" ownerguid="26bab2b5-98cd-499a-8628-93bf684bc5e7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 V0/V0 R0/R0 ONSHEV/ONSHEV BN/BN</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">EVEN1</AUni> -<AUni ws="es">TAMB1</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="12ccc54c-91e7-41aa-abf7-76699e3503e4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f10f4328-79c4-458d-83bf-397007032594" ownerguid="0205145d-23b6-4c3c-bf2d-bf866bb010e7"> -<ExampleWords> -<AUni ws="en">windmill, pump, pump house, pumping station, lock</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What means are used to raise water?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f112e361-8e17-4727-aac5-6f4af2cea24b" ownerguid="5d3fb59c-adce-48cd-adfc-84c905d503df"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f1132ab7-5dd4-44a0-a2a9-e4090b2f54a7" ownerguid="2c42f822-2079-440c-b3b7-7725b6a8db8b"> -<ExampleWords> -<AUni ws="en">fade away, wear off, go away, die away</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to something stopping gradually?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f113f3e5-bc64-4275-8e95-6006006e01e8" ownerguid="6f83e7f5-39be-4055-ac5c-757782d049e3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">forget</AUni> -<AUni ws="es">olvidar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0b449029-0a80-49a7-94f5-8f76a8df8c82" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f11512bf-5e86-415a-992a-68fd5aeb885e" ownerguid="ec643327-35cd-4846-a51c-be1e023e9e6b"> -<Form> -<AUni ws="qvm-x-ach">santa</AUni> -<AUni ws="qvm-x-acl">santa</AUni> -<AUni ws="qvm-x-akh">santa</AUni> -<AUni ws="qvm-x-akl">santa</AUni> -<AUni ws="qvm-x-ame">santa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="f115542d-9401-48f0-8ee7-ecc1509c4f7d" ownerguid="fa9fba9b-536a-4054-9957-ffd3e6165b3f"> -<Form> -<AUni ws="qvm-x-ach">curcu</AUni> -<AUni ws="qvm-x-acl">curcu; curcu; curco</AUni> -<AUni ws="qvm-x-akh">kurku</AUni> -<AUni ws="qvm-x-akl">kurku; kurku; kurko</AUni> -<AUni ws="qvm-x-ame">kurku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f11568ff-4665-4430-bf52-1f6407e08191" ownerguid="90c316f9-862b-42ea-a75d-da093ae9e33c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="f117fa3c-4bbd-466a-ac71-e65881d03a5a" ownerguid="e43ddd35-7194-446f-b467-f49d3c985ab9"> -<Form> -<AUni ws="qvm-x-ach">guewa</AUni> -<AUni ws="qvm-x-acl">guewa</AUni> -<AUni ws="qvm-x-akh">qewa</AUni> -<AUni ws="qvm-x-akl">qewa</AUni> -<AUni ws="qvm-x-ame">qiwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f11a5331-89f2-4fae-905b-f2ee2ac8c7e5" ownerguid="4f485a60-e3ba-42e6-9d59-185305c5d1f2"> -<ExampleWords> -<AUni ws="en">sense of direction</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person's ability to know what direction he is going in?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f11be6f7-2d7c-4e70-a319-c0e2114c7fbb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">togshu</AUni> -<AUni ws="qvm-x-acl">togshu; togshu; togsho</AUni> -<AUni ws="qvm-x-akh">toqshu</AUni> -<AUni ws="qvm-x-akl">toqshu; toqshu; toqsho</AUni> -<AUni ws="qvm-x-ame">tuqshu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tuqshu</AUni> -<AUni ws="qvm-x-acl">*tuqshu</AUni> -<AUni ws="qvm-x-akh">*tuqshu</AUni> -<AUni ws="qvm-x-akl">*tuqshu</AUni> -<AUni ws="qvm-x-ame">*tuqshu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.15" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="88dba467-bba5-4180-aabe-0ed08cc24fe3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tuqshu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1346aba1-8d16-4d86-8f50-d6de8aecf4f2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="35ec485f-9c2f-4672-aa8f-55fd6b85be3e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tuqshu 
\entryTyp root 
\gENG brain 
\gSPN cerebro 
\e *tuqshu 
\c N0 
\ach togshu 
\akh toqshu 
\acl togshu / _# 
\acl togshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl togsho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl toqshu / _# 
\akl toqshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl toqsho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tuqshu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f11c31fd-bb67-44e9-a85a-0d3b366b6a50" ownerguid="4e795972-eb00-48c5-8084-a264092d0851"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0 V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="563614ee-3f4e-459e-94ef-cb9cde7c2cd6" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">crooked</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="348aec66-32c6-488c-b9cb-d23010b43ee3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f11c9a97-1761-430e-a8d3-1d8efd2a6aff" ownerguid="38bbb33a-90bf-4a2c-a0e5-4bde7e134bd9"> -<ExampleWords> -<AUni ws="en">sense, perception</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the ability to sense something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f11ef170-0e6c-477a-9df6-7b553e25e271" ownerguid="d08b4798-fa0a-45e2-81e5-96ecfd31116c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">take.a.census</AUni> -<AUni ws="es">censar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="607f16fb-a4b0-4506-be48-4dcdf204489d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f11f536d-ea8b-43cf-8b59-c5d130a8b8cf" ownerguid="71cbefc3-e0a5-4b97-9672-fa0cb34c59e4"> -<ExampleWords> -<AUni ws="en">Christmas, New Years, Thanksgiving, Easter, Good Friday, Independence Day, Memorial Day, Labor Day, Washington's Birthday, Valentine's Day, Mothers Day</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to specific holidays?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f123486f-6358-4498-a7ee-cac9e5bc0365" ownerguid="84084e67-b321-4b6a-a436-29ead0bee586"> -<ExampleWords> -<AUni ws="en">down, downwards, downhill</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the direction down?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f123d8bd-2051-49f3-9c7b-221c283e005d" ownerguid="91053954-86ef-4146-a674-747249228584"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">fine</AUni> -<AUni ws="es">multa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d0b9361c-d3bd-431d-a28e-bcd1420e0fa9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="f124a350-c42e-4830-802c-3d3e504eb958"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">icsu</AUni> -<AUni ws="qvm-x-acl">icsu; icso</AUni> -<AUni ws="qvm-x-akh">iksu</AUni> -<AUni ws="qvm-x-akl">iksu; ikso</AUni> -<AUni ws="qvm-x-ame">iksu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*iksu</AUni> -<AUni ws="qvm-x-acl">*iksu</AUni> -<AUni ws="qvm-x-akh">*iksu</AUni> -<AUni ws="qvm-x-akl">*iksu</AUni> -<AUni ws="qvm-x-ame">*iksu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.792" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="96fa9319-14f3-4410-a3f7-af5e3bdcdfcb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*iksu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f5b788f0-d468-40fd-8d4f-30bdf106fc81" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2f8a2a0b-1dc6-432c-bf9b-3211cefbfb81" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *iksu 
\entryTyp root 
\gENG sob 
\gSPN sollozar 
\e *iksu 
\c V1 
\ach icsu 
\akh iksu 
\acl icsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl icso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl iksu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ikso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame iksu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f127f5e0-9daa-498a-b04f-4edde9b5fcd3" ownerguid="71f89512-17f0-484c-aca8-ddd226e3c794"> -<ExampleWords> -<AUni ws="en">upper leg, groin, thigh, knee, kneecap, lower leg, calf, shin, ankle, 'wing', foot, heel, sole, ball of foot, the outside part of foot, instep, arch, shank</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the parts of the leg?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f12b8990-96e0-4f38-8395-52d4c360d4c7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">warmi</AUni> -<AUni ws="qvm-x-acl">warmi; warme</AUni> -<AUni ws="qvm-x-akh">warmi</AUni> -<AUni ws="qvm-x-akl">warmi; warme</AUni> -<AUni ws="qvm-x-ame">warmi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*warmi.v</AUni> -<AUni ws="qvm-x-acl">*warmi.v</AUni> -<AUni ws="qvm-x-akh">*warmi.v</AUni> -<AUni ws="qvm-x-akl">*warmi.v</AUni> -<AUni ws="qvm-x-ame">*warmi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.536" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f527da1e-d074-47e5-ab55-35d9106f617d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*warmi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="86b5e60e-c55d-4797-a0a2-e6891fff7ec3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1fb0a0fb-ece3-4b8c-a26d-e34f11f3da8c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *warmi.v 
\entryTyp root 
\gENG get.wife 
\gSPN tener.esposa 
\e *warmi.v 
\c V1 
\mp +FinalI 
\ach warmi 
\akh warmi 
\acl warmi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl warme +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl warmi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl warme +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame warmi 
\mcc *warmi.v / _ PRT1 / _ DES / _ REF 
\mcc *warmi.v / ~_ REF NOM12PUR</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="f12d250b-02a1-4315-8047-48e2acdc4845" ownerguid="8616e673-bb26-4140-8890-e15f45735529"> -<Form> -<AUni ws="qvm-x-ach">señala</AUni> -<AUni ws="qvm-x-acl">señala</AUni> -<AUni ws="qvm-x-akh">señala</AUni> -<AUni ws="qvm-x-akl">señala</AUni> -<AUni ws="qvm-x-ame">señala</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="f12f6228-d736-4b98-a31d-6b1bfe51b93e" ownerguid="5b9e7504-0b50-4041-b4f2-c46c0f9fd854"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pag</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pag</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">paq</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">paq</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">paq</Run> -</AStr> -</Form> -<Morph> -<objsur guid="aa748aa0-d1af-450e-92e1-cac14bcd12da" t="r" /> -</Morph> -<Msa> -<objsur guid="01f553e1-5eb4-4a63-9066-6708cdc08588" t="r" /> -</Msa> -<Sense> -<objsur guid="acb15b44-5d4d-4b55-ae65-993eb193f477" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="f12fba15-66fc-4d5a-a3d7-bcc66ba27454" ownerguid="d25f7907-091e-4cf7-bd8c-bdb97278b616"> -<ExampleWords> -<AUni ws="en">bounce, rebound, glance off, ricochet, recoil</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to something hitting and then bouncing?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f1310417-4cb4-4488-ba1d-99a992793169" ownerguid="3fb324dc-7e19-43b2-802a-b37e3d88671f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">subject</AUni> -<AUni ws="es">dominar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1ba42194-6f8b-48b7-83a2-4d64218ea6b8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="f13415ab-c806-49f9-bda7-d8609bb6e407" ownerguid="a9aac848-a15e-49a2-bf4c-4952f0ddb9ad"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f13432f6-42c8-4c0b-8bce-72ba1d8f7922"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">putsu; putsu:</AUni> -<AUni ws="qvm-x-acl">putso:; putsu; putso</AUni> -<AUni ws="qvm-x-akh">putsu; putsu:</AUni> -<AUni ws="qvm-x-akl">putso:; putsu; putso</AUni> -<AUni ws="qvm-x-ame">putsu; putsu:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puchu:</AUni> -<AUni ws="qvm-x-acl">*puchu:</AUni> -<AUni ws="qvm-x-akh">*puchu:</AUni> -<AUni ws="qvm-x-akl">*puchu:</AUni> -<AUni ws="qvm-x-ame">*puchu:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.970" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="46893314-937d-4d81-9356-54781ae0b43b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puchu:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a06951ab-d085-4ae1-9eb2-23300aba7ee7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="00ee6cd2-c855-4121-8ddc-f21fcd970bf0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puchu: 
\entryTyp root 
\gENG have.left.over 
\gSPN sobrar 
\e *puchu: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach putsu foreshortened 
\ach putsu: 
\akh putsu foreshortened 
\akh putsu: 
\mp +underlong 
\acl putso: 
\acl putsu foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl putso foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\mp +underlong 
\akl putso: 
\akl putsu foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl putso foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame putsu foreshortened 
\ame putsu:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f134eabe-ecd2-4f0a-8566-00a9086e0307"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">se:da</AUni> -<AUni ws="qvm-x-acl">se:da</AUni> -<AUni ws="qvm-x-akh">se:da</AUni> -<AUni ws="qvm-x-akl">se:da</AUni> -<AUni ws="qvm-x-ame">se:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+seda</AUni> -<AUni ws="qvm-x-acl">+seda</AUni> -<AUni ws="qvm-x-akh">+seda</AUni> -<AUni ws="qvm-x-akl">+seda</AUni> -<AUni ws="qvm-x-ame">+seda</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.480" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2dd34b75-13c0-4b3c-94a2-ff0281420538" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+seda</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="561b0508-05a6-4437-a173-2f63d012da5e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3d50155a-58a1-4fa3-967f-ddfd9e765f35" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +seda 
\entryTyp root 
\gENG silk 
\gSPN seda 
\e +seda 
\c N0 
\ach se:da 
\akh se:da 
\acl se:da 
\akl se:da 
\ame se:da</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="f1373316-7917-4dca-9d33-c6b520bd4034" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<Abbreviation> -<AUni ws="en">6.6.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to working with machines.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Working with machines</AUni> -</Name> -<OcmCodes> -<Uni>390 Capital Goods Industry; 391 Hardware Manufacture; 392 Machine Industries; 393 Electrical Supplies Industry; 394 Manufacture of Heating and Lighting Appliances; 395 Manufacture of Optical and Photographic Equipment; 396 Shipbuilding; 397 Railway Equipment Industry; 398 Manufacture of Vehicles; 399 Aircraft Industry; 719 Munitions Industries</Uni> -</OcmCodes> -<Questions> -<objsur guid="dba1edc8-8f02-4abb-b380-8bf0eec2e97a" t="o" /> -<objsur guid="1fbf5d05-bf65-43ec-a932-33d32bb74e71" t="o" /> -<objsur guid="2c0b8817-5517-445e-85d1-1b8fdf1ab789" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b917ffec-ab7e-496a-bfe4-35c567fa0785" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="f137718a-e566-4b7a-8c08-4d7638934783" ownerguid="6d03f062-73ce-459f-9bd0-a73b46616627"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">revenge</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="754b5521-62f1-44ed-a9d6-2a2f2bebe2a3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f13835b9-af8b-4a55-ae53-208a4a6b641b" ownerguid="ded5c3be-18d2-4d2b-afd2-1a4802d3180d"> -<Form> -<AUni ws="qvm-x-ach">shacya; shacyä</AUni> -<AUni ws="qvm-x-acl">shacya; shacyä</AUni> -<AUni ws="qvm-x-akh">shakya; shakyä</AUni> -<AUni ws="qvm-x-akl">shakya; shakyä</AUni> -<AUni ws="qvm-x-ame">shakya; shakyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="f1385df9-3547-4145-9f0b-3dd5e1390f44" ownerguid="a9069cca-dc28-485f-976f-faa06b34a5a5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">hot</AUni> -<AUni ws="es">hacer.calor</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8b75a58d-c3d6-4646-a99d-c437d60e41bb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f13ad6a3-fbd4-4755-9610-a1ab6078fd20" ownerguid="b4c1e05f-f741-45cc-8d13-a1f60f474325"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">You are going, <aren't you>? (The expected answer in English is, 'Yes, I am going'.); He's going, <isn't he>? (Yes, he is.); Are<n't> you going? (Yes, I am.); Did<n't> he go? (Yes, he did).</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">n't</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to indicate that an affirmative answer is expected to a question?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f13e62d1-1680-4113-a74f-f665bfccae7e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">caupu</AUni> -<AUni ws="qvm-x-acl">caupu; caupo</AUni> -<AUni ws="qvm-x-akh">kawpu</AUni> -<AUni ws="qvm-x-akl">kawpu; kawpo</AUni> -<AUni ws="qvm-x-ame">kawpu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kawpu.v</AUni> -<AUni ws="qvm-x-acl">*kawpu.v</AUni> -<AUni ws="qvm-x-akh">*kawpu.v</AUni> -<AUni ws="qvm-x-akl">*kawpu.v</AUni> -<AUni ws="qvm-x-ame">*kawpu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.973" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dca1b413-6e7f-48cf-9282-193aa2ef7e22" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kawpu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d619a002-d8a2-4e1a-a838-d79a145c6687" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a29591b8-2a5a-49b4-b89b-2833ed12e65c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kawpu.v 
\entryTyp root 
\gENG twine 
\gSPN torcilar 
\e *kawpu.v 
\c V2 
\ach caupu 
\akh kawpu 
\acl caupu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl caupo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kawpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kawpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kawpu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="f13ebff4-963b-4b22-ad0e-45591508023c"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">kutikuy</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="f13ed73c-8b8d-4f97-a172-09f8f88d124f" ownerguid="40a41fad-5317-436d-8c3f-e52650865c7f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1 V2/V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="758874db-594c-4980-8762-eb51aa8bffde" t="o" /> -<objsur guid="94195813-65a4-4af9-ac35-b3ab714a6e38" t="o" /> -<objsur guid="444a01a0-f8a3-4e84-8aea-c9accfe7f0a0" t="o" /> -<objsur guid="7a26a686-0489-4378-9a04-66f49d401141" t="o" /> -<objsur guid="3d3d05ea-adf1-42d9-a873-aa80ee2864a9" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">UP</AUni> -<AUni ws="es">ARR</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c6e7792f-f209-4623-b3a0-f732c9368e47" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f13f587b-896d-4b9f-beaa-d9f32562b3b4" ownerguid="80f26fbc-ca89-4789-996d-4c09547f2504"> -<ExampleWords> -<AUni ws="en">complete, finish, finish up, accomplish, succeed, wrap up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to completing a task?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f144e812-3c2f-49e5-a07a-54be78e9dec4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">acapa</AUni> -<AUni ws="qvm-x-acl">acapa</AUni> -<AUni ws="qvm-x-akh">akapa</AUni> -<AUni ws="qvm-x-akl">akapa</AUni> -<AUni ws="qvm-x-ame">akapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*akapa</AUni> -<AUni ws="qvm-x-acl">*akapa</AUni> -<AUni ws="qvm-x-akh">*akapa</AUni> -<AUni ws="qvm-x-akl">*akapa</AUni> -<AUni ws="qvm-x-ame">*akapa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.679" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d0434166-0a0e-4a19-ad39-cc134cbb79e6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*akapa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a3ccb9f6-445e-4ec2-8cb5-f9708a07b500" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9a02935b-f2e2-4719-a703-676ead141a22" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *akapa 
\entryTyp root 
\gENG small.ones 
\gSPN chicos 
\e *akapa 
\c N0 
\ach acapa 
\akh akapa 
\acl acapa 
\akl akapa 
\ame akapa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f146c4f0-5fc9-4c42-af82-64e3e8327833" ownerguid="a09c7bc2-692c-4e60-8683-65b84eff22cd"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f1488c80-cf16-4f1d-af6d-aad304199966"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">limpiu; limpio</AUni> -<AUni ws="qvm-x-acl">limpiu; limpiu; limpio</AUni> -<AUni ws="qvm-x-akh">limpiu; limpio</AUni> -<AUni ws="qvm-x-akl">limpiu; limpiu; limpio</AUni> -<AUni ws="qvm-x-ame">limpiu; limpio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+limpio.1</AUni> -<AUni ws="qvm-x-acl">+limpio.1</AUni> -<AUni ws="qvm-x-akh">+limpio.1</AUni> -<AUni ws="qvm-x-akl">+limpio.1</AUni> -<AUni ws="qvm-x-ame">+limpio.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.94" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bdbf3074-aec7-4152-9e17-becfaa4a9256" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+limpio.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6ebe8bee-d50f-48c1-97bf-48b2c7013d50" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="849d3a04-80e3-4b03-ba9c-73c59896098c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +limpio.1 
\entryTyp root 
\gENG clean 
\gSPN limpio 
\e +limpio.1 
\c N0 
\ach limpiu / ~_# 
\ach limpio / _# 
\akh limpiu / ~_# 
\akh limpio / _# 
\acl limpiu / ~_# 
\acl limpiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl limpio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl limpiu / ~_# 
\akl limpiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl limpio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame limpiu / ~_# 
\ame limpio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f148b85a-9639-46ba-a0d4-b9f5f8fe1634" ownerguid="1de2cef5-3a2d-45c1-8cb6-06b2ac087907"> -<Question> -<AUni ws="en">(5) complement to words of saying</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f14c3188-4beb-4d1d-9299-6f5c3dfd9585"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ushnu</AUni> -<AUni ws="qvm-x-acl">ushnu; ushnu; ushno</AUni> -<AUni ws="qvm-x-akh">ushnu</AUni> -<AUni ws="qvm-x-akl">ushnu; ushnu; ushno</AUni> -<AUni ws="qvm-x-ame">ushnu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ushnu</AUni> -<AUni ws="qvm-x-acl">*ushnu</AUni> -<AUni ws="qvm-x-akh">*ushnu</AUni> -<AUni ws="qvm-x-akl">*ushnu</AUni> -<AUni ws="qvm-x-ame">*ushnu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.290" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="96b6e497-24e8-4de2-9178-74cf49212e78" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ushnu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e6d367c1-2e72-41e6-8890-4f721c58c136" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ebabacad-9971-45c3-bdc2-63226a99732d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ushnu 
\entryTyp root 
\gENG ancient.house 
\gSPN ? 
\e *ushnu 
\c N0 
\ach ushnu 
\akh ushnu 
\acl ushnu / _# 
\acl ushnu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ushno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ushnu / _# 
\akl ushnu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ushno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ushnu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="f151d46c-7a3d-45a1-b5d8-5e59a77174b7" ownerguid="03d900be-35b2-4a93-85f5-773b666cefb5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="f1543491-e30b-449e-9c10-f66fe86c959b" ownerguid="3e8606b7-a314-4aea-a161-41cfd4009c80"> -<Form> -<AUni ws="qvm-x-ach">mímica; mïmica</AUni> -<AUni ws="qvm-x-acl">mímica; mïmica</AUni> -<AUni ws="qvm-x-akh">mímica; mïmica</AUni> -<AUni ws="qvm-x-akl">mímica; mïmica</AUni> -<AUni ws="qvm-x-ame">mímica; mïmica</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f15501a5-bcb5-4146-8bf0-17bdd0924155" ownerguid="70953222-5bc5-4fa2-a85a-01827f7bc537"> -<ExampleWords> -<AUni ws="en">shortcut</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a short way of getting somewhere?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="f157da5b-c6a3-4ff9-9bdb-d54dcf17fb19"> -<Analyses> -<objsur guid="d1aa6dca-6e86-4575-a555-86fd20218c4f" t="o" /> -</Analyses> -<Checksum val="-242633018" /> -<Form> -<AUni ws="qvm-x-akh">kushikurqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="f1587688-f9c5-406a-84d4-4c91d3ffb918" ownerguid="5c63cb3d-9c24-4f8c-9075-03b9b05b5aa0"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="f15b1a71-5edf-4b3f-957f-2c9e9696d34b" ownerguid="1dd1abbb-5a5c-481b-af96-5fe94d86ce49"> -<Form> -<AUni ws="qvm-x-ach">crusïla</AUni> -<AUni ws="qvm-x-acl">crusïla</AUni> -<AUni ws="qvm-x-akh">crusïla</AUni> -<AUni ws="qvm-x-akl">crusïla</AUni> -<AUni ws="qvm-x-ame">crusïla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f15c69e4-f623-4269-a3b7-ab4f609221a2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wacu:cuy</AUni> -<AUni ws="qvm-x-acl">waco:cuy</AUni> -<AUni ws="qvm-x-akh">waku:kuy</AUni> -<AUni ws="qvm-x-akl">wako:kuy</AUni> -<AUni ws="qvm-x-ame">waku:kuy</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waco:cuy</AUni> -<AUni ws="qvm-x-acl">*waco:cuy</AUni> -<AUni ws="qvm-x-akh">*waco:cuy</AUni> -<AUni ws="qvm-x-akl">*waco:cuy</AUni> -<AUni ws="qvm-x-ame">*waco:cuy</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.432" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="26b3b70e-a1e4-43a9-93ee-137b9605632c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waco:cuy</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f2dc52a6-a421-4319-b350-f7dc6e242b10" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d5fbfbff-8081-4b2f-94fa-73586a8726a1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waco:cuy 
\entryTyp root 
\gENG 
\gSPN 
\e *waco:cuy 
\c N0 
\mp +FinalC 
\ach wacu:cuy 
\akh waku:kuy 
\acl waco:cuy 
\akl wako:kuy 
\ame waku:kuy</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f15d7055-db7a-499a-932b-aafa1f228965"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pasya</AUni> -<AUni ws="qvm-x-acl">pasya</AUni> -<AUni ws="qvm-x-akh">pasya</AUni> -<AUni ws="qvm-x-akl">pasya</AUni> -<AUni ws="qvm-x-ame">pasya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pasear</AUni> -<AUni ws="qvm-x-acl">+pasear</AUni> -<AUni ws="qvm-x-akh">+pasear</AUni> -<AUni ws="qvm-x-akl">+pasear</AUni> -<AUni ws="qvm-x-ame">+pasear</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.739" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9cfbb165-ae1f-427d-9412-8573117545f0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pasear</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4975ed48-d35b-41bb-9304-f949d48ec245" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3fbd8961-af70-4968-a11f-3b29cc4a0962" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pasear 
\entryTyp root 
\gENG take.a.walk 
\gSPN pasear 
\e +pasear 
\c V1 
\mp +assimilated 
\ach pasya 
\akh pasya 
\acl pasya 
\akl pasya 
\ame pasya</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f167559b-ff48-44ac-8289-1e0e3641738c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">achpita</AUni> -<AUni ws="qvm-x-acl">achpita</AUni> -<AUni ws="qvm-x-akh">achpita</AUni> -<AUni ws="qvm-x-akl">achpita</AUni> -<AUni ws="qvm-x-ame">achpita</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*atrpita</AUni> -<AUni ws="qvm-x-acl">*atrpita</AUni> -<AUni ws="qvm-x-akh">*atrpita</AUni> -<AUni ws="qvm-x-akl">*atrpita</AUni> -<AUni ws="qvm-x-ame">*atrpita</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.878" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="40f3b605-aab8-4820-8643-9b30fabc412d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*atrpita</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="81dc3b39-3d90-494a-b512-d5980720a05a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="353d5ac5-8fe4-4ec0-b962-faf432ab5820" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *atrpita 
\entryTyp root 
\gENG eager 
\gSPN ansioso 
\e *atrpita 
\c V1 
\ach achpita 
\akh achpita 
\acl achpita 
\akl achpita 
\ame achpita 
\i 1KI 8.17 <<Papänë Davidga yäracushgantsi 
\nd Tayta Diospag
\nd* achpitayparagmi templuta ruratsiyta munargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f167c89d-f646-4098-8f51-a57bb013aaa1" ownerguid="d74914e7-e329-49d4-8513-ec8d850241e4"> -<ExampleWords> -<AUni ws="en">partly, partially, to some extent, to a certain extent, to a degree, to some degree, up to a point, in part, sort of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is done partly?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f169bdbf-2a18-45d2-8eb6-173acbedcad3" ownerguid="430d9a4f-ce0e-42ac-b4ef-464c359c5de1"> -<Form> -<AUni ws="qvm-x-ach">shogu</AUni> -<AUni ws="qvm-x-acl">shogu; shogo</AUni> -<AUni ws="qvm-x-akh">shoqu</AUni> -<AUni ws="qvm-x-akl">shoqu; shoqo</AUni> -<AUni ws="qvm-x-ame">shuqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="f169e882-f030-4308-8b29-8c2e99b5804d" ownerguid="50566b61-7526-4162-8d4f-611e9a8f672f"> -<Form> -<AUni ws="qvm-x-ach">waraca</AUni> -<AUni ws="qvm-x-acl">waraca</AUni> -<AUni ws="qvm-x-akh">waraka</AUni> -<AUni ws="qvm-x-akl">waraka</AUni> -<AUni ws="qvm-x-ame">waraka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f1759321-1be2-4af8-b00e-e2981eb96ddd" ownerguid="4651aef1-e18f-481e-9c3e-d9dfff4a6b51"> -<ExampleWords> -<AUni ws="en">all by yourself, single-handed, solo, in isolation, self-made</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to doing something alone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f1769037-e4a7-4e7f-bf6f-deaa59b54a47" ownerguid="34fe8676-7bda-493d-a012-bc5748e87823"> -<ExampleWords> -<AUni ws="en">to point, give a point to, sharpen to a point</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to making something pointed?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f179a259-5480-43e9-83b9-5fc10cfede70" ownerguid="da15ff44-522b-4be6-bbfe-95b39d8e10c1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">respect</AUni> -<AUni ws="es">respetar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a410bb95-5ab1-4266-82dc-47a44aa7a92c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="f17a53aa-4777-4503-90f8-a446963c2acf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">taclla</AUni> -<AUni ws="qvm-x-acl">taclla</AUni> -<AUni ws="qvm-x-akh">taklla</AUni> -<AUni ws="qvm-x-akl">taklla</AUni> -<AUni ws="qvm-x-ame">taklla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*taklla.v</AUni> -<AUni ws="qvm-x-acl">*taklla.v</AUni> -<AUni ws="qvm-x-akh">*taklla.v</AUni> -<AUni ws="qvm-x-akl">*taklla.v</AUni> -<AUni ws="qvm-x-ame">*taklla.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.774" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7eeba6c0-a594-4abd-972e-5899ea493410" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*taklla.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="abdac764-9edb-46c8-b650-08a309a28764" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6c495290-8d8f-4c29-982d-cbad51aa3dc3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *taklla.v 
\entryTyp root 
\gENG prepare 
\gSPN preparar 
\e *taklla.v 
\c V2 
\ach taclla 
\akh taklla 
\acl taclla 
\akl taklla 
\ame taklla</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f17b6037-c11d-4583-8ed5-77c1526cd65a" ownerguid="8161e1a7-6274-4d78-950c-2004c4164816"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="f17d2c33-0915-4cdb-b4b7-3873c7270385" ownerguid="9533d698-55a5-4edd-9f05-e850c77a64f6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="f1810c37-e979-4461-8d8d-1b1f150095c9" ownerguid="a42bd414-d390-4ccf-8200-6cd05a2c6243"> -<Form> -<AUni ws="qvm-x-ach">falda</AUni> -<AUni ws="qvm-x-acl">falda</AUni> -<AUni ws="qvm-x-akh">falda</AUni> -<AUni ws="qvm-x-akl">falda</AUni> -<AUni ws="qvm-x-ame">falda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f1826d6b-1b0b-45b1-a707-7ba2f7a2acb0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">corba:ta</AUni> -<AUni ws="qvm-x-acl">corba:ta</AUni> -<AUni ws="qvm-x-akh">corba:ta</AUni> -<AUni ws="qvm-x-akl">corba:ta</AUni> -<AUni ws="qvm-x-ame">corba:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+corbata</AUni> -<AUni ws="qvm-x-acl">+corbata</AUni> -<AUni ws="qvm-x-akh">+corbata</AUni> -<AUni ws="qvm-x-akl">+corbata</AUni> -<AUni ws="qvm-x-ame">+corbata</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.182" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="47362b95-569c-409d-8103-0e318db92599" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+corbata</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4f0a27ff-6fef-43c9-8bd8-e9de12434fca" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="01ad8f29-9c68-44cb-9f62-a5ec476c41e0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +corbata 
\entryTyp root 
\gENG tie 
\gSPN corbata 
\e +corbata 
\c N0 
\ach corba:ta 
\akh corba:ta 
\acl corba:ta 
\akl corba:ta 
\ame corba:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f182d795-6420-4969-8b07-cba3d7601ed4" ownerguid="e6fa6045-881e-4f52-85c9-b9d7540eeffb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/R1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ADVSS2</AUni> -<AUni ws="es">ASI2</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="210b55d0-3031-4731-891b-77f3eaa2a10a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f18442d1-d973-466e-96b0-91a8d3ee7fe9" ownerguid="bc96b3e3-6185-4925-b79e-8f0f9555bfb7"> -<ExampleWords> -<AUni ws="en">first language, mother-tongue, native speaker</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the first language you learned as a child?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f18bd364-fa9e-4c9f-a8b4-28fb7dc26dc1" ownerguid="cd994f17-c4c5-441f-8928-619285f963fb"> -<Form> -<AUni ws="qvm-x-ach">inlesia</AUni> -<AUni ws="qvm-x-acl">inlesia</AUni> -<AUni ws="qvm-x-akh">inlesia</AUni> -<AUni ws="qvm-x-akl">inlesia</AUni> -<AUni ws="qvm-x-ame">inlesia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f18edfcc-2b59-4850-8d5f-59839a573fcf" ownerguid="b59e3268-374b-4ff0-a0fc-8a7d53de996a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="f19245c4-aced-48cc-bbe7-2afce1d5451e" ownerguid="e8e32301-c5c7-457c-bf5c-1a8bff8fc179"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Tsaymi wara tuta tsaca tsacala bürrunta Abraham sillacorgan.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiMorphBundle" guid="f1928273-8161-4c30-8ea1-4689fd155181" ownerguid="6ccb8155-1954-4380-8bec-ca5e56533210"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="57e435ff-f14a-44e1-b595-dff01f37fcc1" t="r" /> -</Morph> -<Msa> -<objsur guid="be6973f5-a2b1-46a6-9dd0-379cd8bb168a" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="f1954678-ed60-4039-a99b-45b9d4b722d0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">radiu; radio</AUni> -<AUni ws="qvm-x-acl">radiu; radiu; radio</AUni> -<AUni ws="qvm-x-akh">radiu; radio</AUni> -<AUni ws="qvm-x-akl">radiu; radiu; radio</AUni> -<AUni ws="qvm-x-ame">radiu; radio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+radio</AUni> -<AUni ws="qvm-x-acl">+radio</AUni> -<AUni ws="qvm-x-akh">+radio</AUni> -<AUni ws="qvm-x-akl">+radio</AUni> -<AUni ws="qvm-x-ame">+radio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.236" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="67bd4d31-38fd-44de-8a3b-384d8fc9a66d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+radio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="10df8fd3-2076-40f1-995e-96afe1cd2796" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5a57d254-e9a8-4387-8906-300b132b1319" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +radio 
\entryTyp root 
\gENG radio 
\gSPN radio 
\e +radio 
\c N0 
\ach radiu / ~_# 
\ach radio / _# 
\akh radiu / ~_# 
\akh radio / _# 
\acl radiu / ~_# 
\acl radiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl radio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl radiu / ~_# 
\akl radiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl radio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame radiu / ~_# 
\ame radio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="f1955b84-0799-47a8-9a76-a0d79adb687a" ownerguid="e0e4dd0f-4743-4439-a6db-6e410ea088ca"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a4d42f6f-d626-4469-8166-21d6f4e69d6d" t="r" /> -</Morph> -<Msa> -<objsur guid="72dc7bab-4d12-4cdb-a144-3c853f889fb5" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="f197eebe-d067-4c99-b641-60825638ff53" ownerguid="84a071b1-0505-4bc1-b0b5-1a10d3e02bd3"> -<Form> -<AUni ws="qvm-x-ach">zampöña</AUni> -<AUni ws="qvm-x-acl">zampöña</AUni> -<AUni ws="qvm-x-akh">zampöña</AUni> -<AUni ws="qvm-x-akl">zampöña</AUni> -<AUni ws="qvm-x-ame">zampöña</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="f19927df-2968-4e07-832a-a4544ab267d7" ownerguid="cd265743-390b-4b6c-b803-53941e137bed"> -<Form> -<AUni ws="qvm-x-ach">brujería; brujeria</AUni> -<AUni ws="qvm-x-acl">brujería; brujeria</AUni> -<AUni ws="qvm-x-akh">brujería; brujeria</AUni> -<AUni ws="qvm-x-akl">brujería; brujeria</AUni> -<AUni ws="qvm-x-ame">brujería; brujeria</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f19a3ae1-d35c-4f8c-88d8-57701c86caa1" ownerguid="4d3a794a-7043-4afc-a89e-904971076668"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoInflAffMsa" guid="f1ab7fd4-3eac-4764-b321-b4d8af63f381" ownerguid="89fb9e9a-1c52-4d3a-99aa-5fdd061f778f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="6c1a55b7-decb-4da3-86ca-e0b8dc1a89c0" t="r" /> -</Slots> -</rt> -<rt class="MoStemMsa" guid="f1ad1267-570d-4f4c-b5de-176d25e862dc" ownerguid="ef2e866b-c871-4672-b8d4-54895820a060"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="f1ad1b4d-60a3-42b7-be30-71b5c794ce68" ownerguid="aec892f4-7a26-443a-b2fb-9f0eade74a94"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9920c20a-5840-4b77-b21c-47d40fd7f5f8" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="cae93ed5-32d9-4035-810f-5276400529b8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="f1adaaa1-8062-442b-8348-0ae6ce19207a" ownerguid="76de6e68-dc9a-4cd6-9641-2eba2d9a92c3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">potato</AUni> -<AUni ws="es">papa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ad9dc86b-32a6-4f79-8f22-dc0e8cdf6325" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="f1af3f4c-6e0e-4cfa-adcf-9dcddf05feab" ownerguid="a42db5b4-6317-4d3f-beff-cb92dbaca914"> -<Abbreviation> -<AUni ws="en">3.2.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.101" /> -<DateModified val="2022-9-23 16:55:8.101" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to answering a question when one is unsure of the answer.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Guess</AUni> -</Name> -<Questions> -<objsur guid="fb25abf0-7cc8-4147-ac82-08d61a0020ce" t="o" /> -<objsur guid="0331b601-f062-4d7b-ab21-eaacf41bb80a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="f1af6769-e7aa-454b-be47-ce9fae936258" ownerguid="1c3f8996-362e-4ee0-af02-0dd02887f6aa"> -<ExampleWords> -<AUni ws="en">pass on, go to heaven, go to hell</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to going to heaven or hell?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f1af688c-a922-493e-84a4-3769a7f72c9a" ownerguid="5984bfb8-afdf-4ca5-86e0-a65633961f5a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f1b1ee7f-67e4-4471-b37b-34a4186bfbf4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">garwa</AUni> -<AUni ws="qvm-x-acl">garwa</AUni> -<AUni ws="qvm-x-akh">qarwa</AUni> -<AUni ws="qvm-x-akl">qarwa</AUni> -<AUni ws="qvm-x-ame">qarwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qarwa.v</AUni> -<AUni ws="qvm-x-acl">*qarwa.v</AUni> -<AUni ws="qvm-x-akh">*qarwa.v</AUni> -<AUni ws="qvm-x-akl">*qarwa.v</AUni> -<AUni ws="qvm-x-ame">*qarwa.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.124" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a5523b0a-40c9-4d87-b572-4014f5e7ae2a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qarwa.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0f2c7488-6e5e-41f8-874e-97a31e81a69e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d3fe43f6-a19a-42d7-b043-ddcfd97c3b6a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qarwa.v 
\entryTyp root 
\gENG be.yellow 
\gSPN ser.amarillo 
\e *qarwa.v 
\c V1 
\ach garwa 
\akh qarwa 
\acl garwa 
\akl qarwa 
\ame qarwa 
\mcc *qarwa.v / ~_ PRT2</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f1b77a61-dd1b-4b4e-885d-aa6267e5f34b" ownerguid="1de2cef5-3a2d-45c1-8cb6-06b2ac087907"> -<Question> -<AUni ws="en">(12) subordinator: marker indicates that the verb is in a subordinate clause. </AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="f1bc86b8-03ea-46be-b586-9bcb57a20442" ownerguid="791571c3-597f-4895-82ed-0f630fa869f6"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Manualta ruranantsipag nistantsi putsupa taksha tëlakunata.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="f1bcc5fe-92ba-4491-bde7-6c8457cb788d" ownerguid="c7c85346-158d-4881-839d-9a6a8e47209b"> -<ExampleWords> -<AUni ws="en">move, movement, change position, maneuver, jockey for position, budge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to moving your body to a different location?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f1c5f8bd-3cba-40b3-b732-c49dba0b6b62" ownerguid="e14e71db-5663-4e0a-8616-ad6b07e6ecd4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">slip</AUni> -<AUni ws="es">justan</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="693f0029-7235-47f1-91ad-c3a562fe87fc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f1cac99f-e12e-40ae-b57c-ae98bc937142" ownerguid="12781062-ee36-4703-9bc0-cee4ed467ee5"> -<ExampleWords> -<AUni ws="en">issue, edition</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to an issue of a newspaper?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f1cddb60-310f-40be-bb22-1ce76eb80cc9" ownerguid="b77bf6a2-75ec-47e5-a218-d00a3a2fc6e7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="762009bd-4942-46ea-9cf3-825ca880070b" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">sake</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f3c5d264-2db6-4e27-842a-115f65ef3b69" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="f1ce0df9-8d5f-4a61-85c0-91b13d8c17e5" ownerguid="bc940e64-ee30-44ef-8270-c80c599161e1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="StTxtPara" guid="f1d2414e-d75e-418d-81c7-a3fc303a3739" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">mikutsin</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="0848765b-d9e2-4f45-83d1-8b9da75a3a03" t="o" /> -</Segments> -</rt> -<rt class="MoStemMsa" guid="f1d30dca-f7be-4116-98e4-8131ee20fb62" ownerguid="14f882ff-a03c-4081-a4aa-a29988822757"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f1d413a7-c6f0-4c31-939b-7fdda99a520a" ownerguid="161cae07-d1cb-467c-920f-62ba9039584c"> -<ExampleWords> -<AUni ws="en">space travel, voyage, orbit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to traveling in space?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f1d5a303-a423-48b0-ad63-276c3f9e16b0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">raca</AUni> -<AUni ws="qvm-x-acl">raca</AUni> -<AUni ws="qvm-x-akh">raka</AUni> -<AUni ws="qvm-x-akl">raka</AUni> -<AUni ws="qvm-x-ame">raka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*raka</AUni> -<AUni ws="qvm-x-acl">*raka</AUni> -<AUni ws="qvm-x-akh">*raka</AUni> -<AUni ws="qvm-x-akl">*raka</AUni> -<AUni ws="qvm-x-ame">*raka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.236" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9b2e3df7-8d1f-43c0-b65d-60c6bd79406b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*raka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="de252762-824d-48d2-a213-e089864ddd79" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="76563144-028e-47b5-8929-9ff0ced3ed64" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *raka 
\entryTyp root 
\gENG vagina 
\gSPN vagina 
\e *raka 
\c N0 
\ach raca 
\akh raka 
\acl raca 
\akl raka 
\ame raka</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f1d64617-5b1f-4c91-b80a-40c62c039cea" ownerguid="ac35d320-d6b3-4e66-ad88-c5c16a70aaca"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="f1d69395-7cea-4f1b-9201-14477e0dc3de" ownerguid="7580bc6a-c865-4237-b279-3220dfb95753"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Chuncarag gongaycunquiman. - Cuidä gongaycunquiman.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="f1d7fcc8-3755-42a1-ad99-da5de6329293" ownerguid="642ff468-e6c8-4fd0-8f52-262efa8f7774"> -<ExampleWords> -<AUni ws="en">hate, hatred, animosity, antagonism, antipathy, enmity, hostility, ill will, malevolence, malice, spite</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the wish that something bad would happen to someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f1d852af-01a1-41ca-a022-5c73c4664c29" ownerguid="d48899ec-a6b4-4750-9c89-fe15e96c3e44"> -<Form> -<AUni ws="qvm-x-ach">declara</AUni> -<AUni ws="qvm-x-acl">declara</AUni> -<AUni ws="qvm-x-akh">declara</AUni> -<AUni ws="qvm-x-akl">declara</AUni> -<AUni ws="qvm-x-ame">declara</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f1e10e64-f180-4fcf-b771-f3b59e056007" ownerguid="962941b2-66bd-437f-aadc-b1921bcae5b4"> -<ExampleWords> -<AUni ws="en">bite, sting, inject</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to an animal putting poison into a person?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f1e24ca6-65b6-4a1c-a023-c3458d0456b4" ownerguid="b93bdfa4-486c-44a0-8266-557ccdc78b31"> -<ExampleWords> -<AUni ws="en">soot</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to the material that is left on things near a fire?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f1e30172-5720-47d4-a2a3-a8d07f1ccce9" ownerguid="e072bd42-eb0f-48c8-97fd-ae9ca8bc3a75"> -<ExampleWords> -<AUni ws="en">fight for, work for, campaign, champion, be a champion of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to fighting for something good?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f1e7c689-72f6-4766-8c94-0330e54bbb14"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chegri</AUni> -<AUni ws="qvm-x-acl">chegri; chegri; chegre</AUni> -<AUni ws="qvm-x-akh">cheqri</AUni> -<AUni ws="qvm-x-akl">cheqri; cheqri; cheqre</AUni> -<AUni ws="qvm-x-ame">chiqri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*triqri</AUni> -<AUni ws="qvm-x-acl">*triqri</AUni> -<AUni ws="qvm-x-akh">*triqri</AUni> -<AUni ws="qvm-x-akl">*triqri</AUni> -<AUni ws="qvm-x-ame">*triqri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.129" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2f60136d-3e81-4fd9-8321-d0deff74d2be" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*triqri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a4c65c90-930a-4dbc-98e2-af0d655c7225" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0df71ccc-6c36-4ea1-ab04-5ed12535646e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *triqri 
\entryTyp root 
\gENG twisted 
\gSPN torcido 
\e *triqri 
\c N0 
\mp +FinalI 
\ach chegri 
\akh cheqri 
\acl chegri / _# 
\acl chegri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chegre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cheqri / _# 
\akl cheqri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cheqre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chiqri</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f1e95399-7004-4d1a-9a3e-ffbadb5e2c42"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">porta</AUni> -<AUni ws="qvm-x-acl">porta</AUni> -<AUni ws="qvm-x-akh">porta</AUni> -<AUni ws="qvm-x-akl">porta</AUni> -<AUni ws="qvm-x-ame">porta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+portar</AUni> -<AUni ws="qvm-x-acl">+portar</AUni> -<AUni ws="qvm-x-akh">+portar</AUni> -<AUni ws="qvm-x-akl">+portar</AUni> -<AUni ws="qvm-x-ame">+portar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.901" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eb4bb984-737b-444e-8977-ea52a41f4621" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+portar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8d32777e-0905-475f-ac36-f440c7f66b7c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0b22475f-59f8-4128-ab3e-ed67492262f2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +portar 
\entryTyp root 
\gENG behave 
\gSPN portar 
\e +portar 
\c V1 
\ach porta 
\akh porta 
\acl porta 
\akl porta 
\ame porta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f1e9951b-0d19-42dd-81dd-7220b6e3e400" ownerguid="76a06e45-99f7-446f-a2e8-e23edf6064bd"> -<ExampleWords> -<AUni ws="en">rotten, bad, stale, moldy, sour, rancid, off, tainted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe food that is decaying?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f1eaedb7-cc06-4d24-899c-5ac0869d0838" ownerguid="559d371f-80cf-49ba-a55b-c636d110f091"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="9cfdab9f-29ec-4bf5-9da6-adc0caa22f9b" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="ce7e2a9e-24d3-4e5d-8d8c-bd5d0e41553c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="f1ec9c67-d992-44ff-8e6c-01e39846a814"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">letter</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="f1ef17bb-2975-4545-a49c-4fe2b0706163" ownerguid="1b7e0a68-9332-4eca-b813-922f5a88445d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f1f00037-3c43-49cf-a126-77c967327355" ownerguid="6c54f0b0-b056-4090-b3f0-d5ec6710d4ab"> -<ExampleWords> -<AUni ws="en">hugging the ground, down low, way down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is very low?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="f1f1e473-14cf-4b08-af30-b8b8cda04efd"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">yanapaykuläshunki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="f1f2faa5-c331-4d44-97fe-5b214e235366" ownerguid="4e32f374-714c-4048-8e20-f3a986e31ab4"> -<Form> -<AUni ws="qvm-x-ach">malgeniu; malgenio</AUni> -<AUni ws="qvm-x-acl">malgeniu; malgeniu; malgenio</AUni> -<AUni ws="qvm-x-akh">malgeniu; malgenio</AUni> -<AUni ws="qvm-x-akl">malgeniu; malgeniu; malgenio</AUni> -<AUni ws="qvm-x-ame">malgeniu; malgenio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f1fb2725-ed48-485c-ade6-1965497cd16e" ownerguid="11df3c07-d2cc-4a61-b12b-d83002e90e2d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f2000cd0-a5fe-4b39-8412-193d6897760d" ownerguid="869d0c7b-d792-45ab-bf31-fd9f6fea3107"> -<ExampleWords> -<AUni ws="en">marketplace, market (n), stall, booth, store, salesroom</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a place where things are sold?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f2002fd3-7adc-4d75-b7f6-076931bc4f37" ownerguid="8fff393a-23c2-42bb-8da8-9b151e790904"> -<ExampleWords> -<AUni ws="en">going strong</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to being old but still able to do things?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f2004057-6704-4981-a9a1-5bf68fb2eca2" ownerguid="f25efa89-4563-455b-b79c-4a684f17e2c0"> -<Form> -<AUni ws="qvm-x-ach">gäshu</AUni> -<AUni ws="qvm-x-acl">gäshu; gäshu; gäsho</AUni> -<AUni ws="qvm-x-akh">qäshu</AUni> -<AUni ws="qvm-x-akl">qäshu; qäshu; qäsho</AUni> -<AUni ws="qvm-x-ame">qäshu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f201f3c2-f32d-4706-937c-5a6ee2bbee55" ownerguid="f51bcafa-e624-4555-b8f1-b5726d74734d"> -<ExampleWords> -<AUni ws="en">constitution</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the laws that set up a government?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="f2022802-4f43-4fa2-8c58-33a8b9e75895" ownerguid="8216627d-9d20-4a5c-8bfd-0709c16e7a08"> -<Abbreviation> -<AUni ws="en">8.1.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.569" /> -<DateModified val="2022-9-23 16:55:8.569" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to something increasing in number or amount--to be more than before.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>59G Increase, Decrease</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Increase</AUni> -</Name> -<Questions> -<objsur guid="0a362905-4504-4c62-9f84-89d9c7002e38" t="o" /> -<objsur guid="8deb8e24-c518-4e96-b180-26647d00fe04" t="o" /> -<objsur guid="8ec4b994-b56c-4877-bf40-9e4c847f421d" t="o" /> -<objsur guid="e10bb1b8-68c7-4206-87ca-21fec6a3c8d3" t="o" /> -<objsur guid="c5395689-4e64-457b-afcd-b7c519919ed8" t="o" /> -<objsur guid="a47c4979-6a03-4266-a4f8-972471888b75" t="o" /> -<objsur guid="b894f610-ef89-4f76-a906-4718d51d4c59" t="o" /> -<objsur guid="3c988773-bfcb-4142-b28f-b26ebcd30cf2" t="o" /> -<objsur guid="624cbccf-4a86-4302-8f93-3470c4d87ea0" t="o" /> -<objsur guid="a940b2e4-ba69-4a2c-bbe3-8b2aa2d59d38" t="o" /> -<objsur guid="50d48629-c168-4468-aa39-c9381396de22" t="o" /> -<objsur guid="48c17398-a0be-4ef1-bbde-09d0d742041f" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="f202430b-f713-47a0-bf4d-d30e4bee12cb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jamu</AUni> -<AUni ws="qvm-x-acl">jamu; jamo</AUni> -<AUni ws="qvm-x-akh">jamu</AUni> -<AUni ws="qvm-x-akl">jamu; jamo</AUni> -<AUni ws="qvm-x-ame">hamu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hamu</AUni> -<AUni ws="qvm-x-acl">*hamu</AUni> -<AUni ws="qvm-x-akh">*hamu</AUni> -<AUni ws="qvm-x-akl">*hamu</AUni> -<AUni ws="qvm-x-ame">*hamu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.650" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dd4942be-0087-43f5-9ef2-2dd32f951b5c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hamu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e9bd6581-4e65-4ae0-8355-931d6bf21956" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="694ffcae-df84-4023-9fc1-a10d0f8ff256" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hamu 
\entryTyp root 
\gENG complain 
\gSPN murmurar 
\e *hamu 
\c V2 
\ach jamu 
\akh jamu 
\acl jamu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl jamo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jamu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jamo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hamu 
\mcc *hamu / ~_ PLST 
\mcc *hamu / ~_ PNCT1 BEN1</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f2027748-f208-4392-a6e6-e34020699ecd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chulcu</AUni> -<AUni ws="qvm-x-acl">chulcu; chulcu; chulco</AUni> -<AUni ws="qvm-x-akh">chulku</AUni> -<AUni ws="qvm-x-akl">chulku; chulku; chulko</AUni> -<AUni ws="qvm-x-ame">chulku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trullku</AUni> -<AUni ws="qvm-x-acl">*trullku</AUni> -<AUni ws="qvm-x-akh">*trullku</AUni> -<AUni ws="qvm-x-akl">*trullku</AUni> -<AUni ws="qvm-x-ame">*trullku</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.160" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ae501d85-aa3b-4a31-aeae-2856898be841" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trullku</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9ed9b96f-9e6c-41b4-af61-b323e4586764" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="17ec79c9-aa3d-4bea-93c9-a9d7259a2f11" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trullku 
\entryTyp root 
\gENG chulku 
\gSPN chulcu 
\e *trullku 
\c N0 
\ach chulcu 
\akh chulku 
\acl chulcu / _# 
\acl chulcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chulco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chulku / _# 
\akl chulku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chulko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chulku</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f205bf4a-bf4c-4fe5-af00-d711bc807af7" ownerguid="a7a927f4-baae-4fbe-a00f-4b058ea834b9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sneeze</AUni> -<AUni ws="es">estornudar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="896fe4cc-b9a9-49ec-b314-68562a2c86ee" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="f2088079-3650-4044-b6bc-3e3b04c09a8a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gam</AUni> -<AUni ws="qvm-x-acl">gam</AUni> -<AUni ws="qvm-x-akh">qam</AUni> -<AUni ws="qvm-x-akl">qam</AUni> -<AUni ws="qvm-x-ame">qam</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qam</AUni> -<AUni ws="qvm-x-acl">*qam</AUni> -<AUni ws="qvm-x-akh">*qam</AUni> -<AUni ws="qvm-x-akl">*qam</AUni> -<AUni ws="qvm-x-ame">*qam</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.74" /> -<DateModified val="2022-10-16 14:40:31.985" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e50f3d14-61be-4feb-8ecd-34f183264859" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qam</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b56d9572-6ab1-4223-8377-b7274c562325" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dbc771fd-6584-41ea-ac7b-bbe333cd6986" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qam 
\entryTyp root 
\gENG you 
\gSPN tú 
\e *qam 
\c N0 
\mp +FinalC 
\ach gam 
\akh qam 
\acl gam 
\akl qam 
\ame qam</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f208ce76-0daa-41fe-a026-a31bd6452e4c" ownerguid="a934fe16-268d-4675-9a89-3a31a4adedbd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dispatch</AUni> -<AUni ws="es">despachar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7b27ad71-175e-4e8a-a429-d6e6f4d5dfb3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="f20a5bcf-cfa8-4d2f-b4b0-b4dc06e6ef7b"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">kacharishaykitsu</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="f20ab82e-0875-441f-94db-fe01f8b527cb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsumi</AUni> -<AUni ws="qvm-x-acl">tsumi; tsumi; tsume</AUni> -<AUni ws="qvm-x-akh">tsumi</AUni> -<AUni ws="qvm-x-akl">tsumi; tsumi; tsume</AUni> -<AUni ws="qvm-x-ame">tsumi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chumi.n</AUni> -<AUni ws="qvm-x-acl">*chumi.n</AUni> -<AUni ws="qvm-x-akh">*chumi.n</AUni> -<AUni ws="qvm-x-akl">*chumi.n</AUni> -<AUni ws="qvm-x-ame">*chumi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.345" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bc479751-fb7b-4d42-9852-7f4af560e491" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chumi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a43d5aed-cadf-4a82-9634-d6f26099fc92" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="55ceba22-4e86-4053-97d3-6d84582b4d39" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chumi.n 
\entryTyp root 
\gENG 
\gSPN 
\e *chumi.n 
\c N0 
\mp +FinalI 
\ach tsumi 
\akh tsumi 
\acl tsumi / _# 
\acl tsumi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tsume +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsumi / _# 
\akl tsumi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tsume +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsumi</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="f20d736d-a3a6-4b0a-923c-ffaf9d1cd199" ownerguid="9af21dcc-1ab3-45ca-9faa-13c5552af760"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="ae738b2b-e0a8-4035-a6d5-a0e38a0517c7" t="o" /> -<objsur guid="6d3f4811-a1f1-49f7-ab0f-592e7a76fed6" t="o" /> -<objsur guid="dbe5e26f-1b55-4b7b-8057-983cb49841f4" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiMorphBundle" guid="f20fe326-bfd9-42fd-8cae-f792a7b5695f" ownerguid="a228d3b1-a6b5-4dd7-9c77-ff4a2df3cf52"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="c0a8d088-78b3-40e6-a4ea-e43393fea3a3" t="r" /> -</Morph> -<Msa> -<objsur guid="3503ea2c-6d6a-40bd-ab49-d2f29a6d368a" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="f211de02-1d76-4edd-b61a-d6b65f027782"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ticwa</AUni> -<AUni ws="qvm-x-acl">ticwa</AUni> -<AUni ws="qvm-x-akh">tikwa</AUni> -<AUni ws="qvm-x-akl">tikwa</AUni> -<AUni ws="qvm-x-ame">tikwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tikwa</AUni> -<AUni ws="qvm-x-acl">*tikwa</AUni> -<AUni ws="qvm-x-akh">*tikwa</AUni> -<AUni ws="qvm-x-akl">*tikwa</AUni> -<AUni ws="qvm-x-ame">*tikwa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.904" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6a22fefa-b184-4af4-97ee-fa0699f9e8fc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tikwa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4dfa41a7-997b-49db-a7d6-bd18d7388edf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3d80ddcb-329f-4d45-b03c-cd2a8dfe0d87" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tikwa 
\entryTyp root 
\gENG turn 
\gSPN voltear 
\e *tikwa 
\c V1 
\ach ticwa 
\akh tikwa 
\acl ticwa 
\akl tikwa 
\ame tikwa 
\i Gen 31.37 Lapan imaycätapis ticwaypa ticwarmi ashishcanqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="f211defe-d80f-4e40-9842-af19cb0719e7" ownerguid="2470ad05-636e-4c85-96ab-cd880da58741"> -<Abbreviation> -<AUni ws="en">4.9.7.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.304" /> -<DateModified val="2022-9-23 16:55:8.304" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words used in Judaism.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Judaism</AUni> -</Name> -<Questions> -<objsur guid="a5142cbb-77a6-43c3-a2a0-f9831f7f611b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="f2125749-f2a0-4b12-b39f-9f1ffc353663" ownerguid="47af2df4-42de-4e25-b774-e33f69426626"> -<Form> -<AUni ws="qvm-x-ach">upäla</AUni> -<AUni ws="qvm-x-acl">upäla</AUni> -<AUni ws="qvm-x-akh">upäla</AUni> -<AUni ws="qvm-x-akl">upäla</AUni> -<AUni ws="qvm-x-ame">upäla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f2129bdc-43d2-4a75-b18f-881065f8a9f6" ownerguid="a13a84d6-c9c5-467a-bbb6-08a85e1e01c9"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f214ebde-6528-42e2-a431-8a0f03a31653" ownerguid="b7801f6e-683b-4d5d-9bab-57f6e593db8c"> -<ExampleWords> -<AUni ws="en">register, roll, roster</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a list of people?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f21666ba-62fa-4442-9d0e-95eee76d100f" ownerguid="203f46d2-f0d0-4dda-8d1a-ddc15065b005"> -<ExampleWords> -<AUni ws="en">shell</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the parts of a turtle?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f219380c-cabe-4cd0-be00-d1a18aa3fa44" ownerguid="c4d1812b-e3d4-4191-ad65-5443673770c2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="62fd31da-c242-455c-9f2d-24809159967c" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="3eb23dc9-a8d9-440e-8b9c-8bc3b1ec0a88" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="f21b4bf3-ca19-4ede-b764-70f250f29ad3" ownerguid="6e44405a-b655-4226-afc6-5507a4a42b67"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="f2206d56-b1d3-4156-8ed3-42d7ce8da72e" ownerguid="a2ec6d72-c5cb-43d7-abbc-7e46b7f877c4"> -<Form> -<AUni ws="qvm-x-ach">granäda</AUni> -<AUni ws="qvm-x-acl">granäda</AUni> -<AUni ws="qvm-x-akh">granäda</AUni> -<AUni ws="qvm-x-akl">granäda</AUni> -<AUni ws="qvm-x-ame">granäda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f2207e17-36cf-49cb-bf93-4187ea1e2151" ownerguid="f943628b-a409-4384-bb7b-66c8ec485202"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="f220d145-47f8-4190-8345-04fffbe2a7ce" ownerguid="f919dc5e-b3ed-41a8-8422-6fc1df2aef0f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">up</AUni> -<AUni ws="es">arriba</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a459cdbc-485c-4d4a-baf9-64b148a1346e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="f222b79b-8aef-4764-9aad-6e61aee73e71" ownerguid="4222d48d-05d3-4c82-91ef-90561c9d2a83"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsacay</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsacay</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsakay</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsakay</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsakay</Run> -</AStr> -</Form> -<Morph> -<objsur guid="fc18a25a-3527-4810-a9de-a01cdc61792c" t="r" /> -</Morph> -<Msa> -<objsur guid="1af62928-3bed-4511-8fa4-f359bc07ca98" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="f2248909-4b44-44c8-9f80-6b397b5b0522"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tro:su</AUni> -<AUni ws="qvm-x-acl">tro:su; tro:su; tro:so</AUni> -<AUni ws="qvm-x-akh">tro:su</AUni> -<AUni ws="qvm-x-akl">tro:su; tro:su; tro:so</AUni> -<AUni ws="qvm-x-ame">tro:su</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+trozo</AUni> -<AUni ws="qvm-x-acl">+trozo</AUni> -<AUni ws="qvm-x-akh">+trozo</AUni> -<AUni ws="qvm-x-akl">+trozo</AUni> -<AUni ws="qvm-x-ame">+trozo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.160" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7dae2974-bf01-4691-9e14-2093e646d6a8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+trozo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="03945173-b8d5-4b9f-9752-3fd4c33d23d2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="73bf5614-9aba-4e8c-b98c-5fc6b1017ed8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +trozo 
\entryTyp root 
\gENG 
\gSPN 
\e +trozo 
\c N0 
\ach tro:su 
\akh tro:su 
\acl tro:su / _# 
\acl tro:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tro:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tro:su / _# 
\akl tro:su +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tro:so +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tro:su</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="f2261938-60de-4777-8fc3-676b1e83630f" ownerguid="1b3c60f3-541a-4e64-9ff0-c4d6a7882a40"> -<Form> -<AUni ws="qvm-x-ach">recompensa</AUni> -<AUni ws="qvm-x-acl">recompensa</AUni> -<AUni ws="qvm-x-akh">recompensa</AUni> -<AUni ws="qvm-x-akl">recompensa</AUni> -<AUni ws="qvm-x-ame">recompensa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="f2342d42-bdc4-449c-9891-58f90318b9f1" ownerguid="05472990-3f51-40b3-bca8-df3cf383328b"> -<Abbreviation> -<AUni ws="en">3.5.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.172" /> -<DateModified val="2022-9-23 16:55:8.172" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to something someone says, which relays information from someone else, or about something someone has done.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">News, message</AUni> -</Name> -<Questions> -<objsur guid="2a306f37-b8e0-4305-aa57-454dcffd6818" t="o" /> -<objsur guid="8b614ca7-5c22-40dc-a2b1-531645013a23" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="f234e40b-4277-4970-872f-0654f19fdced"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pushpu</AUni> -<AUni ws="qvm-x-acl">pushpu; pushpu; pushpo</AUni> -<AUni ws="qvm-x-akh">pushpu</AUni> -<AUni ws="qvm-x-akl">pushpu; pushpu; pushpo</AUni> -<AUni ws="qvm-x-ame">pushpu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*pushpu</AUni> -<AUni ws="qvm-x-acl">*pushpu</AUni> -<AUni ws="qvm-x-akh">*pushpu</AUni> -<AUni ws="qvm-x-akl">*pushpu</AUni> -<AUni ws="qvm-x-ame">*pushpu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.39" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d1434c69-4140-42a4-ad16-b876a0937774" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*pushpu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7d8084d8-98db-407b-8ce2-f57522f7f362" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2c187ab3-c435-4e5b-bf4f-d097f3e549b1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *pushpu 
\entryTyp root 
\gENG bean 
\gSPN frijól 
\e *pushpu 
\c N0 
\ach pushpu 
\akh pushpu 
\acl pushpu / _# 
\acl pushpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pushpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pushpu / _# 
\akl pushpu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pushpo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pushpu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="f2356040-70dd-43ca-a741-b211428c1d6d" ownerguid="9c6f35e0-4a16-4a5e-8b0e-c165146b2d5b"> -<Form> -<AUni ws="qvm-x-ach">crëma</AUni> -<AUni ws="qvm-x-acl">crëma</AUni> -<AUni ws="qvm-x-akh">crëma</AUni> -<AUni ws="qvm-x-akl">crëma</AUni> -<AUni ws="qvm-x-ame">crëma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="f23583e5-529e-448c-a477-ed312c7e41e8" ownerguid="b59e3268-374b-4ff0-a0fc-8a7d53de996a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">loop</AUni> -<AUni ws="es">lazo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f18edfcc-2b59-4850-8d5f-59839a573fcf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f2363171-724b-46b1-a10b-668c98b24cdf" ownerguid="2e61b40e-2fdb-47c4-a2d0-cd77f8b9adee"> -<Form> -<AUni ws="qvm-x-ach">maja</AUni> -<AUni ws="qvm-x-acl">maja</AUni> -<AUni ws="qvm-x-akh">maja</AUni> -<AUni ws="qvm-x-akl">maja</AUni> -<AUni ws="qvm-x-ame">maha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="f236a19a-86ce-4599-91f5-fb178488e065" ownerguid="d5920ef2-29e0-4969-960d-48866dcae841"> -<Form> -<AUni ws="qvm-x-ach">cuna</AUni> -<AUni ws="qvm-x-acl">cuna</AUni> -<AUni ws="qvm-x-akh">kuna</AUni> -<AUni ws="qvm-x-akl">kuna</AUni> -<AUni ws="qvm-x-ame">kuna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="f236a72a-47d2-4e37-9b3f-40104bf2b6ba" ownerguid="731a76a3-6d71-4541-bff3-269ed7ce49c8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/N0 V2/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">AG</AUni> -<AUni ws="es">AG</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="964f8962-17d5-4738-8902-97236137c419" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f236f834-2956-4108-b9f6-86a4493f6371" ownerguid="f05fd2fe-08e4-46ad-bba3-e09cb79b2f62"> -<Form> -<AUni ws="qvm-x-ach">äru</AUni> -<AUni ws="qvm-x-acl">äru; äru; äro</AUni> -<AUni ws="qvm-x-akh">äru</AUni> -<AUni ws="qvm-x-akl">äru; äru; äro</AUni> -<AUni ws="qvm-x-ame">äru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="f237215e-b460-47d0-8bf9-fcbe0fd00645" ownerguid="e22444ea-92b3-4abc-a341-69f01dfab3a4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">päcu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">päcu</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">päku</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">päku</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">päku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="bf549c71-b400-447d-b3b0-fdf056dadf6d" t="r" /> -</Morph> -<Msa> -<objsur guid="f32a5a50-f426-45b8-ae08-eba8e0a53b74" t="r" /> -</Msa> -<Sense> -<objsur guid="f9fa41d4-dd29-40f1-be9f-24911a0fb7bb" t="r" /> -</Sense> -</rt> -<rt class="WfiMorphBundle" guid="f2375078-658a-4dfd-a016-20bd96db29e2" ownerguid="e1a431ea-cae6-4d17-b2ff-4fdadf59c1b3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="f239f4da-3c51-4c40-bc37-31151e4a8254" ownerguid="edf17f72-7e7a-4f8d-a5ee-f4889492d73a"> -<ExampleWords> -<AUni ws="en">jabber, babble</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to saying something that has no meaning?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f2451661-c698-4525-a6a1-7081a1ff050f" ownerguid="965c6a0b-3034-4e2f-a00b-ed2eb3119a5d"> -<Question> -<AUni ws="en">(8) delayed: the action of the command is to be carried out in the future rather than immediately.</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f2453181-5627-4c4b-a4d5-2c67b0039807"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guelga</AUni> -<AUni ws="qvm-x-acl">guelga</AUni> -<AUni ws="qvm-x-akh">qelqa</AUni> -<AUni ws="qvm-x-akl">qelqa</AUni> -<AUni ws="qvm-x-ame">qilqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qillqa</AUni> -<AUni ws="qvm-x-acl">*qillqa</AUni> -<AUni ws="qvm-x-akh">*qillqa</AUni> -<AUni ws="qvm-x-akl">*qillqa</AUni> -<AUni ws="qvm-x-ame">*qillqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.175" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dafbc9bf-eb13-4dcf-b7e5-c6f8cc2d0dde" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qillqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cef44998-a3c4-44b0-b014-3e28a576a9ab" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4c11d353-dda9-4a23-92f0-f0b875d3a944" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qillqa 
\entryTyp root 
\gENG write 
\gSPN escribir 
\e *qillqa 
\c V2 
\ach guelga 
\akh qelqa 
\acl guelga 
\akl qelqa 
\ame qilqa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="f24879ae-d091-4655-85aa-c2d1054567e7" ownerguid="018cd6f2-4772-47b7-a059-d64dc4cee2f6"> -<Form> -<AUni ws="qvm-x-ach">rata</AUni> -<AUni ws="qvm-x-acl">rata</AUni> -<AUni ws="qvm-x-akh">rata</AUni> -<AUni ws="qvm-x-akl">rata</AUni> -<AUni ws="qvm-x-ame">rata</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f24f02d9-4251-4932-b4c7-a4d2508e3090" ownerguid="0afc6314-92a7-40c8-ab4f-ce308ac4863d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f2543afb-e4d0-44ec-883f-8744db660677"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ogu</AUni> -<AUni ws="qvm-x-acl">ogu; ogu; ogo</AUni> -<AUni ws="qvm-x-akh">oqu</AUni> -<AUni ws="qvm-x-akl">oqu; oqu; oqo</AUni> -<AUni ws="qvm-x-ame">uqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uqu.n</AUni> -<AUni ws="qvm-x-acl">*uqu.n</AUni> -<AUni ws="qvm-x-akh">*uqu.n</AUni> -<AUni ws="qvm-x-akl">*uqu.n</AUni> -<AUni ws="qvm-x-ame">*uqu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.322" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0360a769-bd83-469c-b005-39b7e72ca8a6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uqu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="97cfd793-7aae-41df-ab67-df8ed8c1eb7b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ade5f0bc-6fde-40f1-add1-e3300ab8ba07" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uqu.n 
\entryTyp root 
\gENG wet.spot 
\gSPN oconal 
\e *uqu.n 
\c N0 
\ach ogu 
\akh oqu 
\acl ogu / _# 
\acl ogu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ogo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl oqu / _# 
\akl oqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl oqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame uqu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f256218b-0f3d-4121-bc09-5852949c9cef" ownerguid="1de2cef5-3a2d-45c1-8cb6-06b2ac087907"> -<Question> -<AUni ws="en">(10) complement to words of admonition</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f256c945-43fc-49e9-bfcc-09a712246ebb" ownerguid="f3d537af-e4e7-4c76-a160-570bbcd4557f"> -<Form> -<AUni ws="qvm-x-ach">räma</AUni> -<AUni ws="qvm-x-acl">räma</AUni> -<AUni ws="qvm-x-akh">räma</AUni> -<AUni ws="qvm-x-akl">räma</AUni> -<AUni ws="qvm-x-ame">räma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="f25bd3a9-bfc3-4993-9567-b0acf2ca1315" ownerguid="baa72d83-f62b-499e-af40-5d41c39a9499"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">come.out</AUni> -<AUni ws="es">salir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3bf739c7-a3e8-4617-a150-022fe7633fb5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f25ca94d-a1ab-491c-a795-bc53091f12d3" ownerguid="f7e625a6-53e3-4f9b-8764-119e3906f5cf"> -<ExampleWords> -<AUni ws="en">bachelor, bachelorhood</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a man who is unmarried?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f25efa89-4563-455b-b79c-4a684f17e2c0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ga:shu</AUni> -<AUni ws="qvm-x-acl">ga:shu; ga:shu; ga:sho</AUni> -<AUni ws="qvm-x-akh">qa:shu</AUni> -<AUni ws="qvm-x-akl">qa:shu; qa:shu; qa:sho</AUni> -<AUni ws="qvm-x-ame">qa:shu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qashu</AUni> -<AUni ws="qvm-x-acl">*qashu</AUni> -<AUni ws="qvm-x-akh">*qashu</AUni> -<AUni ws="qvm-x-akl">*qashu</AUni> -<AUni ws="qvm-x-ame">*qashu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.134" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f2004057-6704-4981-a9a1-5bf68fb2eca2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qashu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="39d21c58-d9de-4376-b0e3-36c2e716e7d5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="18e00566-096a-420f-a41e-aaaffcb9027e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qashu 
\entryTyp root 
\gENG cleft.palat 
\gSPN labio leporino? 
\e *qashu 
\c N0 
\ach ga:shu 
\akh qa:shu 
\acl ga:shu / _# 
\acl ga:shu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ga:sho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qa:shu / _# 
\akl qa:shu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qa:sho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qa:shu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f2600b8d-7da2-4d5f-9bf2-6178601d07ea" ownerguid="36934fab-c0ed-4f25-a387-e1cca26b2401"> -<ExampleWords> -<AUni ws="en">few, a small number of, one or two, a handful of, sparse, not many, a couple of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that there are a small number of things or people?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f261fe84-8558-4bf7-9688-a49852f3fee0" ownerguid="0e590da7-c027-42e0-b580-f65686cee461"> -<ExampleWords> -<AUni ws="en">Wow!</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What do you say when you are surprised?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f2646733-1cdb-4c11-8c7c-221bab794942"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">picanti</AUni> -<AUni ws="qvm-x-acl">picanti; picante</AUni> -<AUni ws="qvm-x-akh">picanti</AUni> -<AUni ws="qvm-x-akl">picanti; picante</AUni> -<AUni ws="qvm-x-ame">picanti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+picantear</AUni> -<AUni ws="qvm-x-acl">+picantear</AUni> -<AUni ws="qvm-x-akh">+picantear</AUni> -<AUni ws="qvm-x-akl">+picantear</AUni> -<AUni ws="qvm-x-ame">+picantear</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.820" /> -<DateModified val="2022-10-10 21:18:47.197" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="48f52b59-8d5f-4b44-a832-8b392b656432" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+picantear</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9446991f-d7bf-4579-8651-ac262ddc0c8a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="86b9a71b-ca76-4d73-97a5-3cf7adc6128f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +picantear 
\entryTyp root 
\gENG 
\gSPN 
\e +picantear 
\c V1 
\mp +assimilated 
\ach picanti 
\akh picanti 
\acl picanti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl picante +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl picanti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl picante +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame picanti 
\mp +FinalI 
\i 2ki 6.29 Tsaynog nimaptinmi wawäta picantircur micapäcushcä. Tsaypitanami parlapäcushgänogla warantin junag nergä paypa wawantana micapäcunäpag.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="f26569bd-3ae8-417d-ab83-c82a8a2884f2" ownerguid="294fa03b-6fed-4d89-ac5e-66c562948895"> -<Form> -<AUni ws="qvm-x-ach">regälu</AUni> -<AUni ws="qvm-x-acl">regälu; regälu; regälo</AUni> -<AUni ws="qvm-x-akh">regälu</AUni> -<AUni ws="qvm-x-akl">regälu; regälu; regälo</AUni> -<AUni ws="qvm-x-ame">regälu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="f26580d1-4b67-4c94-a236-ecf98421e730" ownerguid="db72da84-2cb0-480a-a0d2-0868132d4702"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="LexExampleSentence" guid="f26bcc4c-470e-4005-bbcf-d690cb6122e0" ownerguid="ada4a7e0-3e0b-48b7-aaca-be5b25b155ed"> -<Example> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">Tsayno niykaqtami noqa shamur jatun anzuëluwan shimipita shequmushayki.</Run> -</AStr> -</Example> -<Reference> -<Str> -<Run ws="en">EZK 29.4</Run> -</Str> -</Reference> -</rt> -<rt class="CmDomainQ" guid="f26c77fb-37b4-4494-a79c-95deda3d24d8" ownerguid="73726931-ef12-4d39-a76e-7742f4b7c9cd"> -<ExampleWords> -<AUni ws="en">gross national product</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to how much money a country has?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f26df187-86ba-4632-93be-29bf7fe406df" ownerguid="dfec780e-c856-47f1-b21a-56c77a902ab4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">soup</AUni> -<AUni ws="es">sopa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a4fbee4d-e000-4601-ba8c-3cb120b03858" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="f27390c1-019f-4917-bbc6-f5150aafcdb3" ownerguid="cb7140d4-d89f-4337-b5bb-b823ad4eb1f8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f27800e6-fa9d-4106-aa53-163f6e857161" ownerguid="50ab3705-a81e-4fcc-b3ae-95c075966f69"> -<ExampleWords> -<AUni ws="en">splash, spray</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to water breaking into drops?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f27bb0c7-8209-4386-9e90-31f97b60e83f" ownerguid="06be473e-c2f3-45fe-8522-3a0c033b5067"> -<ExampleWords> -<AUni ws="en">mark, stain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to making a mark on something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f282c5f0-c2ee-4c9d-ab38-7192923a714d" ownerguid="6798703b-c2c6-4f9d-8a2e-26b03ef04064"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f2840096-a3a4-46bc-a78a-c913a18e53ce" ownerguid="345e019f-87d2-415d-ba37-9fb85460f7e1"> -<ExampleWords> -<AUni ws="en">lumberjack, woodcutter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person involved in lumbering?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f2854765-2bac-4f5c-b34b-77e69b52290a" ownerguid="b3be00a9-41a4-42ae-ba51-320b5000a563"> -<ExampleWords> -<AUni ws="en">hole, cave, cavern, grotto, opening, crack, depression, hollow, cavity, channel, chasm, cleft, cranny, crater, crevasse, crevice, depression, dip, mud hole, pit, sinkhole, mouth of a cave</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to natural holes in the ground?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="f2870775-4ac7-43d6-a97b-dc7a7b2de0b3" ownerguid="7665da24-217d-4ae3-8ad4-aa20300a4799"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ZEC 8.2 Tsaymi Hadracpa colindancho caycag Hamat runcuna, Tiro runacuna y Sidón runacunapis paypami caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiAnalysis" guid="f2899cde-08e5-4930-9f1b-b4ad575b7411" ownerguid="ab80b556-2c7d-4e75-a58d-f5bb58b2feef"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="f2fe3f23-48ca-430c-a11c-92ca13eeb5fa" t="o" /> -<objsur guid="819a1d50-5821-446d-87b1-f2ab3220f014" t="o" /> -<objsur guid="c6655400-a044-43b9-a01a-6a2cb01e1580" t="o" /> -<objsur guid="921991f5-7b35-4e68-80c3-c87466143186" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="f28ba5fd-5ad0-4d41-8418-fc647831bbf2" ownerguid="28b0587f-f28f-4fcf-a367-028c6c4dacf8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f28e0fa2-ebd4-4c79-84e4-375192755ac1" ownerguid="3fdba5e5-eb24-4b2f-a6fc-d1ed7397c39c"> -<ExampleWords> -<AUni ws="en">leave, graduate, drop out, dropout</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to leaving school?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f28f0861-0818-452f-b2c3-99bcdbdd895a" ownerguid="88cc9efc-129d-4378-b3c7-5100abf6e9f7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f291a51a-c679-463a-9ec5-8617b7763fc6" ownerguid="5c35c2f8-d17c-42a3-aa12-a4c29b6603e8"> -<ExampleWords> -<AUni ws="en">bend, buckle, curl, sag, warp</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something bending?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f2937426-8167-4568-a2bf-d9dde370f2af" ownerguid="bcbc4135-9e93-4f0a-9206-ef842cbe35c8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7759092f-444a-4389-90f7-382e7bcba085" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f299158c-809d-488c-9c81-1724ce2d7866" ownerguid="f937313f-ec38-4f1b-86dc-cb78edd33ca2"> -<Form> -<AUni ws="qvm-x-ach">ica</AUni> -<AUni ws="qvm-x-acl">ica</AUni> -<AUni ws="qvm-x-akh">ika</AUni> -<AUni ws="qvm-x-akl">ika</AUni> -<AUni ws="qvm-x-ame">ika</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f29af144-ac0c-4b92-9626-5b0449fff3b9" ownerguid="82ecb5b3-9128-4b38-b9c5-612857417ceb"> -<ExampleWords> -<AUni ws="en">harsh, grating, rasping</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words describe a sound that people dislike?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f29b984a-54a5-4722-90af-8d6921826ddb" ownerguid="b65ac656-1613-43f7-9951-76488a84892e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="f29c2ac0-8fb6-4074-8001-dd8ccb3b4610" ownerguid="8f4c15fa-54f9-41fc-8de3-2657d57e81f2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.drip</AUni> -<AUni ws="es">gotear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f7f59c28-26c0-49cc-9438-76091be6adb1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f29d859a-0d1b-4d26-baeb-e5c7edffd101" ownerguid="251c58e5-af8f-4480-9d5a-0011018f3f00"> -<Form> -<AUni ws="qvm-x-ach">ordena</AUni> -<AUni ws="qvm-x-acl">ordena</AUni> -<AUni ws="qvm-x-akh">ordena</AUni> -<AUni ws="qvm-x-akl">ordena</AUni> -<AUni ws="qvm-x-ame">ordena</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="f29dccae-1654-4eb7-8aae-04f7df4fe90c" ownerguid="83adeb9d-c0be-4073-894d-913014420280"> -<Abbreviation> -<AUni ws="en">8.3.7.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something, such as a tool or way of doing something, that is proper for a particular time, place, purpose, or job. The words in this domain involve a comparison between two things, an item and a setting. An evaluation is made as to how good the item is in the setting. The words may be used only of certain types of items, certain types of settings, or certain types of usefulness.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>66 Proper, Improper</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Right, proper</AUni> -</Name> -<Questions> -<objsur guid="3489f816-80dd-4c46-a8d0-f343152d522c" t="o" /> -<objsur guid="528408fb-5590-498c-8f6f-3f0dce502b4d" t="o" /> -<objsur guid="a1c52b94-f1bf-4da0-9f33-61a78707a0fc" t="o" /> -<objsur guid="787e6b7a-9155-4797-a705-41781e412298" t="o" /> -<objsur guid="a91dc659-45a8-4c0a-beb1-a4485393377d" t="o" /> -<objsur guid="9c4c30f8-dd70-4d87-84b1-8e9c58eda616" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="21f21658-a69a-491c-a37b-156a8f4ad3fb" t="o" /> -<objsur guid="c7dbd50e-0ff5-42af-a7a9-9eaf03671c49" t="o" /> -<objsur guid="2b2bedd5-3f9c-4c18-a256-aa65ee19f15c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="f2a54f64-3831-4455-80f4-5f44272661e5" ownerguid="14e9339a-47f0-480e-84c9-14ada79da311"> -<Form> -<AUni ws="qvm-x-ach">cushi</AUni> -<AUni ws="qvm-x-acl">cushi; cushe</AUni> -<AUni ws="qvm-x-akh">kushi</AUni> -<AUni ws="qvm-x-akl">kushi; kushe</AUni> -<AUni ws="qvm-x-ame">kushi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f2a599c6-6343-4246-8847-446bb3b0bd21"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ala; ala:</AUni> -<AUni ws="qvm-x-acl">ala; ala:</AUni> -<AUni ws="qvm-x-akh">ala; ala:</AUni> -<AUni ws="qvm-x-akl">ala; ala:</AUni> -<AUni ws="qvm-x-ame">ala; ala:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ala:</AUni> -<AUni ws="qvm-x-acl">*ala:</AUni> -<AUni ws="qvm-x-akh">*ala:</AUni> -<AUni ws="qvm-x-akl">*ala:</AUni> -<AUni ws="qvm-x-ame">*ala:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.689" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c59e5626-faf4-44f5-9e0e-901902a2b34c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ala:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3c2fe35e-5777-48a5-aad5-681cf561d9c8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b8f8f184-c683-4f8a-a93c-12f2db326955" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ala: 
\entryTyp root 
\gENG be.cold 
\gSPN hacer.frio 
\e *ala: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach ala foreshortened 
\ach ala: 
\akh ala foreshortened 
\akh ala: 
\acl ala foreshortened 
\acl ala: 
\akl ala foreshortened 
\akl ala: 
\ame ala foreshortened 
\ame ala: 
\mcc *ala: / ~_ BEN1 DIR3 
\mcc *ala: / ~_ ADVSS1.2 3P.C GEN 
\mcc *ala: / ~_ ADVSS1.2 3P.C ADV1 
\mcc *ala: / ~_ ADV1 
\mcc *ala: / ~_ 1 ADV1</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="f2a641bc-8f69-48f4-8b49-c58e39d9f9e7" ownerguid="2643f75d-e7dc-4b5c-ba8e-e47d48d89d42"> -<Form> -<AUni ws="qvm-x-ach">ciuda; ciudä</AUni> -<AUni ws="qvm-x-acl">ciuda; ciudä</AUni> -<AUni ws="qvm-x-akh">ciuda; ciudä</AUni> -<AUni ws="qvm-x-akl">ciuda; ciudä</AUni> -<AUni ws="qvm-x-ame">ciuda; ciudä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="f2a81cdd-8483-4d03-8ef1-ba4e85140c23" ownerguid="52de16bd-6e72-403c-a187-0c5178ce44b5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ya</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ya</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ya</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ya</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ya</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6fbee6c7-3e01-4108-b3fd-e300077d0160" t="r" /> -</Morph> -<Msa> -<objsur guid="a65486e9-3066-4a42-8c90-7aadcf10ae12" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="f2ade1ed-3f7c-4440-93b7-2d2c7256da78" ownerguid="70f47508-b668-4214-8811-d90c6ff8c133"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">cama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">cama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">kama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">kama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">kama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b43ad487-6e73-48ff-9ec0-62d0371aba88" t="r" /> -</Morph> -<Msa> -<objsur guid="b0ee83ce-c1ff-41c7-8aa1-b6e53ae19ebd" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="f2ae492b-090a-4f9e-8320-553d23b84691" ownerguid="f011d811-a0c5-4c64-8527-024a129dfaf7"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f2af57f1-6a4c-4f64-94d1-33ada84e11ba" ownerguid="ce6a862d-a4bb-4378-b14d-439806870c41"> -<ExampleWords> -<AUni ws="en">unlucky, unfortunate, have the misfortune to do something, have bad luck, be out of luck, a run of bad luck, it's one of those days, it's not my day</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being unlucky on a particular occasion?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f2b016d8-6538-4f8c-b4dc-338d66daa19a" ownerguid="2f33bc13-61ef-4192-9634-72d503c0e1ba"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f2b0d936-da1a-4871-b734-24e101878b58"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wayunca</AUni> -<AUni ws="qvm-x-acl">wayunca</AUni> -<AUni ws="qvm-x-akh">wayunka</AUni> -<AUni ws="qvm-x-akl">wayunka</AUni> -<AUni ws="qvm-x-ame">wayunka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wayunka</AUni> -<AUni ws="qvm-x-acl">*wayunka</AUni> -<AUni ws="qvm-x-akh">*wayunka</AUni> -<AUni ws="qvm-x-akl">*wayunka</AUni> -<AUni ws="qvm-x-ame">*wayunka</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.637" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ad808fc5-c58c-42ae-b8ff-9bdbb06937e5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wayunka</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5d708102-1321-4961-b63d-af02ae2ec512" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="328a1d9a-5792-4c37-9bdd-23841e9013ec" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wayunka 
\entryTyp root 
\gENG 
\gSPN 
\e *wayunka 
\c N0 
\ach wayunca 
\akh wayunka 
\acl wayunca 
\akl wayunka 
\ame wayunka</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f2b656ef-6d5b-49fe-9c71-1c476bd9e5ab" ownerguid="935eb0aa-26cf-402a-8f3c-eed9a0425185"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="f2b721dd-85af-4851-8b83-d68b2825942d" ownerguid="9bd77b3f-9931-4150-891b-403c318907b2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="1cd9f962-4366-4984-9435-d00768416411" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">burn.hair</AUni> -<AUni ws="es">quemar.pelo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bb0ac467-2909-4998-848d-bf8729dd51e1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="f2b82e93-c70c-4125-a52d-d0fcce2c9ac7"> -<Analyses> -<objsur guid="77fd8e17-97e1-4435-aa2a-a788b66b6441" t="o" /> -<objsur guid="81531d1a-04b9-44ca-92cb-be8555727f04" t="o" /> -<objsur guid="cc266d6a-f4bc-42a3-983e-af7b63ed0d30" t="o" /> -</Analyses> -<Checksum val="1175552379" /> -<Form> -<AUni ws="qvm-x-akh">aywashqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="f2b87b15-c670-4156-8f7d-3cc96eedd9d2" ownerguid="60db66f9-b4de-4f20-bb9d-715b6caa2164"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sparrow</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a84a4f28-fef9-41bb-a316-8e86f4943181" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="f2b94c3d-b681-4909-900a-083e287ef045"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gaululu; gaululu:</AUni> -<AUni ws="qvm-x-acl">gaululo:; gaululu; gaululo</AUni> -<AUni ws="qvm-x-akh">qawlulu; qawlulu:</AUni> -<AUni ws="qvm-x-akl">qawlulo:; qawlulu; qawlulo</AUni> -<AUni ws="qvm-x-ame">qawlulu; qawlulu:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qawlulu:</AUni> -<AUni ws="qvm-x-acl">*qawlulu:</AUni> -<AUni ws="qvm-x-akh">*qawlulu:</AUni> -<AUni ws="qvm-x-akl">*qawlulu:</AUni> -<AUni ws="qvm-x-ame">*qawlulu:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.155" /> -<DateModified val="2022-10-10 21:19:47.700" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="75cd9a4c-aa2a-442f-9eba-61c160aa238a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qawlulu:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="29b081c1-f41b-4355-be45-de4bff6cd4fc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="11e20d5e-801e-4971-8906-04cea1e96137" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qawlulu: 
\entryTyp root 
\gENG stomach.growl 
\gSPN 
\e *qawlulu: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach gaululu foreshortened 
\ach gaululu: 
\akh qawlulu foreshortened 
\akh qawlulu: 
\mp +underlong 
\acl gaululo: 
\acl gaululu foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gaululo foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\mp +underlong 
\akl qawlulo: 
\akl qawlulu foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qawlulo foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qawlulu foreshortened 
\ame qawlulu: 
\i PRO 16.26 Pachan gaululönanta mana munarmi arucun.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f2baf473-faa4-4b2e-a208-31b69acb5f48" ownerguid="3b0e81b6-a586-492d-8757-d84495a5631d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">left.overs</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b828fb35-8b6d-402b-853b-a1cc5222e0ca" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="f2bc15a0-1373-4ca7-83c4-cd643fc2b570"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guela</AUni> -<AUni ws="qvm-x-acl">guela</AUni> -<AUni ws="qvm-x-akh">qela</AUni> -<AUni ws="qvm-x-akl">qela</AUni> -<AUni ws="qvm-x-ame">qila</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qilla.n</AUni> -<AUni ws="qvm-x-acl">*qilla.n</AUni> -<AUni ws="qvm-x-akh">*qilla.n</AUni> -<AUni ws="qvm-x-akl">*qilla.n</AUni> -<AUni ws="qvm-x-ame">*qilla.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.175" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c52f8331-48f0-42dd-a76f-5c6a203b7cc6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qilla.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="93a09728-06fc-44a4-baa9-b56bc04ea5d5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="45557282-a7b3-42be-a2a9-bb28ac8b7088" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qilla.n 
\entryTyp root 
\gENG sloth 
\gSPN perezoso 
\e *qilla.n 
\c N0 
\ach guela 
\akh qela 
\acl guela 
\akl qela 
\ame qila</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="f2bf808a-4678-4ed7-b3f2-d2e350793ce9" ownerguid="33664c68-9d1b-4feb-a0fc-1d42b54914f5"> -<Form> -<AUni ws="qvm-x-ach">almentu; almento</AUni> -<AUni ws="qvm-x-acl">almentu; almentu; almento</AUni> -<AUni ws="qvm-x-akh">almentu; almento</AUni> -<AUni ws="qvm-x-akl">almentu; almentu; almento</AUni> -<AUni ws="qvm-x-ame">almentu; almento</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f2c017ab-bed1-4971-9b72-f303449257b1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">acacha</AUni> -<AUni ws="qvm-x-acl">acacha</AUni> -<AUni ws="qvm-x-akh">akacha</AUni> -<AUni ws="qvm-x-akl">akacha</AUni> -<AUni ws="qvm-x-ame">akacha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*akacha</AUni> -<AUni ws="qvm-x-acl">*akacha</AUni> -<AUni ws="qvm-x-akh">*akacha</AUni> -<AUni ws="qvm-x-akl">*akacha</AUni> -<AUni ws="qvm-x-ame">*akacha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.679" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5a0b1a5e-1a64-4cb1-b0f1-840601907308" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*akacha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="369dc270-7df7-4aa7-af3c-2a8792edeca0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0adb4c60-6f05-4478-9ef4-47925d8a6c73" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *akacha 
\entryTyp root 
\gENG be.hot 
\gSPN ser.caliente 
\e *akacha 
\c V1 
\ach acacha 
\akh akacha 
\acl acacha 
\akl akacha 
\ame akacha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f2c32894-64b5-436c-ab8f-b5045fa2a753"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">figura</AUni> -<AUni ws="qvm-x-acl">figura</AUni> -<AUni ws="qvm-x-akh">figura</AUni> -<AUni ws="qvm-x-akl">figura</AUni> -<AUni ws="qvm-x-ame">figura</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+figurar</AUni> -<AUni ws="qvm-x-acl">+figurar</AUni> -<AUni ws="qvm-x-akh">+figurar</AUni> -<AUni ws="qvm-x-akl">+figurar</AUni> -<AUni ws="qvm-x-ame">+figurar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.566" /> -<DateModified val="2022-10-10 21:18:47.218" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="136ee2aa-9a25-45e2-ade0-0336e5210ff7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+figurar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f38bd8d8-def5-4c52-90d7-c189a435d80b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="97a42fae-1b45-48be-9c0a-90d144534689" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +figurar 
\entryTyp root 
\gENG 
\gSPN 
\e +figurar 
\c V1 
\ach figura 
\akh figura 
\acl figura 
\akl figura 
\ame figura</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f2c3e627-9f69-4bb0-9540-403ee5a3106c" ownerguid="a37448c3-7461-486b-b16e-55acdf55f3c2"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f2c723cb-6f41-4472-a402-3477466bb5a8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">padrastu; padrasto</AUni> -<AUni ws="qvm-x-acl">padrastu; padrastu; padrasto</AUni> -<AUni ws="qvm-x-akh">padrastu; padrasto</AUni> -<AUni ws="qvm-x-akl">padrastu; padrastu; padrasto</AUni> -<AUni ws="qvm-x-ame">padrastu; padrasto</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+padrastro</AUni> -<AUni ws="qvm-x-acl">+padrastro</AUni> -<AUni ws="qvm-x-akh">+padrastro</AUni> -<AUni ws="qvm-x-akl">+padrastro</AUni> -<AUni ws="qvm-x-ame">+padrastro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.648" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="54d6612e-87c9-4fe3-bb39-642786ecd522" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+padrastro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="238e17cd-1e4e-4204-a258-30d5f96ca987" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="56b70d9c-81c0-4d0a-95a6-0bf2844832d8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +padrastro 
\entryTyp root 
\gENG step-father 
\gSPN padrastro 
\e +padrastro 
\c N0 
\ach padrastu / ~_# 
\ach padrasto / _# 
\akh padrastu / ~_# 
\akh padrasto / _# 
\acl padrastu / ~_# 
\acl padrastu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl padrasto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl padrastu / ~_# 
\akl padrastu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl padrasto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame padrastu / ~_# 
\ame padrasto / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoAffixAllomorph" guid="f2cd801c-f2a9-4469-b5dc-7916f95ab35b" ownerguid="b3cc49bd-6bca-4168-95d2-5e2a15da45e1"> -<Form> -<AUni ws="qvm-x-ach">ntin</AUni> -<AUni ws="qvm-x-acl">ntin</AUni> -<AUni ws="qvm-x-akh">ntin</AUni> -<AUni ws="qvm-x-akl">ntin</AUni> -<AUni ws="qvm-x-ame">ntin</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="f2d0f288-5bbe-4fa0-9e8f-ddcc74891701" ownerguid="1c3c8af0-56b9-4617-862e-21f39b388606"> -<Abbreviation> -<AUni ws="en">2.6.6.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to mourning a death--to feel bad because someone died and to show this feeling in various ways. Include whatever cultural practices are used.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>25L Laugh, Cry, Groan x</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Mourn</AUni> -</Name> -<OcmCodes> -<Uni>765 Mourning; 768 Social Readjustments to Death; 769 Cult of the Dead</Uni> -</OcmCodes> -<Questions> -<objsur guid="f2d73e2b-8bf8-4c18-afb3-30646f6bfd46" t="o" /> -<objsur guid="ca154ebf-5df1-482b-a0ba-0bd1de8148be" t="o" /> -<objsur guid="26bb96b2-cde5-4038-b59a-cca3d9c311c2" t="o" /> -<objsur guid="e345540e-1922-4bf2-bf1d-7ee3965c7c94" t="o" /> -<objsur guid="6efa637e-b41a-4e83-84b7-20a94fb1a9a8" t="o" /> -<objsur guid="8ce5f6d1-0f9d-4152-9e19-8393d6176651" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="f2d0fcc5-d521-4181-97e1-ce31ad81fdc5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waylapa</AUni> -<AUni ws="qvm-x-acl">waylapa</AUni> -<AUni ws="qvm-x-akh">waylapa</AUni> -<AUni ws="qvm-x-akl">waylapa</AUni> -<AUni ws="qvm-x-ame">waylapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wayllapa</AUni> -<AUni ws="qvm-x-acl">*wayllapa</AUni> -<AUni ws="qvm-x-akh">*wayllapa</AUni> -<AUni ws="qvm-x-akl">*wayllapa</AUni> -<AUni ws="qvm-x-ame">*wayllapa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.607" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="945f4af2-29c8-449e-a782-067994a2b367" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wayllapa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="95bc97b4-d877-4f2c-9422-3c94bb46c647" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="69676f9b-dadc-4bbf-95cf-c68fe278c50b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wayllapa 
\entryTyp root 
\gENG 
\gSPN paja.delgada 
\e *wayllapa 
\c N0 
\ach waylapa 
\akh waylapa 
\acl waylapa 
\akl waylapa 
\ame waylapa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f2d1b80b-acd3-456c-8d6a-402f192af5c4" ownerguid="5c6cdea6-6fd5-4cc0-b744-d1a278ce3802"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">both</AUni> -<AUni ws="es">dos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4af8c46d-f891-4378-830f-4a65fdc9f221" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f2d27cb5-68c4-4fb6-abda-05dd8cf26aa7" ownerguid="df2ee830-0668-43d7-8a32-e2fd3e7b31d8"> -<Question> -<AUni ws="en">(17) gnomic present: the situation described in the proposition is generic; the predicate has held, holds, and will hold for the class of entities named by the subject, such as 'Elephants have trunks'. </AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f2d372e0-8d38-4299-979f-ff2ef096e894" ownerguid="2d9523b0-11e3-4051-824f-fe31e3b7ca29"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f2d39dc3-b2ae-405e-9d4b-e1724b283049"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shila</AUni> -<AUni ws="qvm-x-acl">shila</AUni> -<AUni ws="qvm-x-akh">shila</AUni> -<AUni ws="qvm-x-akl">shila</AUni> -<AUni ws="qvm-x-ame">shila</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shilla</AUni> -<AUni ws="qvm-x-acl">*shilla</AUni> -<AUni ws="qvm-x-akh">*shilla</AUni> -<AUni ws="qvm-x-akl">*shilla</AUni> -<AUni ws="qvm-x-ame">*shilla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.571" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e5302ec9-2971-4df2-9ba1-0e4fe2ff7caf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shilla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d90fb20f-f918-4c7b-b2b0-1e3baba033c6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8bb00e2a-cb32-4c76-846a-b3732a9ddd53" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shilla 
\entryTyp root 
\gENG spread 
\gSPN entreverarse 
\e *shilla 
\c V1 
\ach shila 
\akh shila 
\acl shila 
\akl shila 
\ame shila</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f2d738a6-7e07-4d3f-815c-75fb7ba1f557" ownerguid="b6686c7c-39de-40b5-adee-67fc7dc54374"> -<ExampleWords> -<AUni ws="en">infinity, infinite, boundless, endless, limitless</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to an unlimited number?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f2d73e2b-8bf8-4c18-afb3-30646f6bfd46" ownerguid="f2d0f288-5bbe-4fa0-9e8f-ddcc74891701"> -<ExampleWords> -<AUni ws="en">grieve, be in mourning, mourn, lament, bemoan, mourning, lamentation, grief, sorrow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to mourning a death?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="f2d823a1-804a-4388-b911-3bcb871b29c8" ownerguid="1e2f084c-71ac-42d4-8200-995f1be5d2c4"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="d01220e8-ecc6-4618-a932-18075db50dfb" t="o" /> -<objsur guid="af9f0774-1825-40b5-b8d6-7516efec916a" t="o" /> -<objsur guid="ec3093b8-e694-4c3a-bea2-88d9f102c1ad" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="f2d99b48-6c24-42e3-9b3f-6606166fe529" ownerguid="c677b4bb-efe4-4099-afb2-75c6b35fd953"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.reluctant</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ba012533-980e-48ff-96be-076164ebfda8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="f2da9513-3f4d-41f8-8474-4f3730af2cde" ownerguid="14902456-1bff-433f-aaac-93b3ba1b7c84"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">sacrificio de paz</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="f2daa9d7-9a96-435f-9239-0a8102f7e380" ownerguid="7a4e422f-faef-4f0d-b434-400d1e224a87"> -<Form> -<AUni ws="qvm-x-ach">yayan</AUni> -<AUni ws="qvm-x-acl">yayan</AUni> -<AUni ws="qvm-x-akh">yayan</AUni> -<AUni ws="qvm-x-akl">yayan</AUni> -<AUni ws="qvm-x-ame">yayan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="f2db9088-e30b-4b9e-9fc6-3c62edd24296" ownerguid="a93c6d7f-1e84-4184-9282-60c150069d8d"> -<Form> -<AUni ws="qvm-x-ach">yana</AUni> -<AUni ws="qvm-x-acl">yana</AUni> -<AUni ws="qvm-x-akh">yana</AUni> -<AUni ws="qvm-x-akl">yana</AUni> -<AUni ws="qvm-x-ame">yana</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f2dc52a6-a421-4319-b350-f7dc6e242b10" ownerguid="f15c69e4-f623-4269-a3b7-ab4f609221a2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="f2e1893b-8a20-483c-a2bd-051d5c5c6ce2" ownerguid="e9a8359c-c101-4b03-85d3-ff4b9d31426b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63e241cb-3471-43ad-8545-4d005f632d4d" t="r" /> -</Morph> -<Msa> -<objsur guid="d3b5839a-9f79-4b2d-96b3-8cee7717866b" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="f2e5ab9e-bcc6-4d48-ab05-3bbe55d653b6" ownerguid="c389898d-eff7-4f4d-85e1-2c53c32d17c4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f2e8a389-42ea-486f-92ee-9065a9d9e6f5" ownerguid="77bcdcab-e9fd-48ba-8dcd-63f425367735"> -<ExampleWords> -<AUni ws="en">be possible, not too hard, can do it, no problem, doable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something can be done?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f2eda85d-012f-4dc7-b978-038d940c01c8" ownerguid="2c439f03-3a12-4d6e-9035-ccea75da048b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7a359b70-1cef-48cf-a4d7-3ef77727adce" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f2f1ba22-3f71-4373-a043-169cd45c656f" ownerguid="cbc0a8f5-9cba-41d2-a7e5-565fbf09c8c4"> -<ExampleWords> -<AUni ws="en">laugh aloud, laugh out loud, chortle, heehaw, guffaw, cackle, yuck it up, squeal with laughter, canned laughter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe the way a person laughs?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f2f25c83-8de8-4f6f-bdad-c5f950b64844" ownerguid="af5804b9-5f0a-4603-92d7-e382b51f21e6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="f2f54edd-fabe-41c7-bc1c-18188b950db7" ownerguid="554b3b38-c53e-46c2-9a7a-ed9cade4673a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">paper</AUni> -<AUni ws="es">papél</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b2d9dfb0-69c7-416b-a2bb-e353fa6f562b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f2f77cd4-473e-411f-a559-96899cc27dd0" ownerguid="13f62fa1-589c-4a46-9bbc-b0fd1001e21f"> -<ExampleWords> -<AUni ws="en">restrain, control, to handcuff, tie up, put in chains, to bind, put in the stocks, to gag</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the action of restraining a prisoner?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="f2f8bcc7-f671-4815-abd0-18c5da969b83" ownerguid="f7eda99e-fde7-4f3f-ab22-a034e7f3c3b2"> -<Form> -<AUni ws="qvm-x-ach">rpä</AUni> -<AUni ws="qvm-x-acl">rpä</AUni> -<AUni ws="qvm-x-akh">rpä</AUni> -<AUni ws="qvm-x-akl">rpä</AUni> -<AUni ws="qvm-x-ame">rpä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="f2f97271-57b1-4025-975d-b9903dc17c93" ownerguid="c3961388-cc50-4ea3-9095-2f023672fccb"> -<Form> -<AUni ws="qvm-x-ach">garruti; garrute</AUni> -<AUni ws="qvm-x-acl">garruti; garruti; garrute</AUni> -<AUni ws="qvm-x-akh">garruti; garrute</AUni> -<AUni ws="qvm-x-akl">garruti; garruti; garrute</AUni> -<AUni ws="qvm-x-ame">garruti; garrute</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="f2f973f2-acde-4ac7-a693-49c0ab861c5d" ownerguid="1ff89b31-8226-40a6-81e0-f03d8ede0e9f"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="dabb9a6c-1f51-4b06-bb47-eb5eeed8e99e" t="o" /> -<objsur guid="62b96821-3cf5-4a09-be0a-cfe12a921cf4" t="o" /> -<objsur guid="0d6cd5d1-c045-48f2-a755-d9de2691d3b1" t="o" /> -<objsur guid="2e1207e4-99ab-4bf2-8bab-61482f0c25f5" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="f2fc3b45-eaf1-4cc1-9f9c-5b117c05a76c" ownerguid="c8a9214e-aa92-441e-9691-0a0e48cacc83"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f2fd216f-425c-43c5-a44f-c6cae0c28d0b" ownerguid="744d1402-05f5-4491-9c15-a5af03595edb"> -<ExampleWords> -<AUni ws="en">twisted, sick, perverted, depraved, terrible</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe someone who is very bad?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="f2fe3f23-48ca-430c-a11c-92ca13eeb5fa" ownerguid="f2899cde-08e5-4930-9f1b-b4ad575b7411"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">gargu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">gargu; gargo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qarqu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qarqu; qarqo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qarqu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2232ab14-ff9d-4403-b432-21884e84369c" t="r" /> -</Morph> -<Msa> -<objsur guid="d2d2bfb6-5ff7-4b48-831a-c27cb6b0f51e" t="r" /> -</Msa> -</rt> -<rt class="WfiAnalysis" guid="f30563f9-3a8b-4ca3-a632-77354009248b" ownerguid="044eef17-ef15-46c5-9ff5-83b31c637421"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="69602af4-f758-4396-aa1e-89f31bc63bff" t="o" /> -<objsur guid="ced7ee5d-fc9f-473b-9477-4779df6c64b0" t="o" /> -<objsur guid="8edf715c-06db-46cf-b9d5-5d36b6e2b8b3" t="o" /> -<objsur guid="326f098a-9bac-4e2e-9b0b-3b6e7a7bf952" t="o" /> -<objsur guid="27f57b6f-49c4-4fa5-9ac0-fe85be2e566e" t="o" /> -<objsur guid="e1f27b2d-8d02-4438-baba-e1eb8df6c64b" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiMorphBundle" guid="f3069301-32fb-4a78-851a-c9b99c4b0c44" ownerguid="b2d00b9e-8ea4-4fc0-8452-02e9a67d7fe0"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">g</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">g</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">q</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">q</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">q</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2077e726-cf37-4913-b54c-2d034d4883b4" t="r" /> -</Morph> -<Msa> -<objsur guid="cc4f521e-5e38-4217-aa16-46da99d423ec" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="f307b374-f04d-4a6e-a7ee-34f084b2a376" ownerguid="b58ab18c-6ecb-420d-b1a2-2269f99dd788"> -<Form> -<AUni ws="qvm-x-ach">pashpa</AUni> -<AUni ws="qvm-x-acl">pashpa</AUni> -<AUni ws="qvm-x-akh">pashpa</AUni> -<AUni ws="qvm-x-akl">pashpa</AUni> -<AUni ws="qvm-x-ame">pashpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f3090677-b6da-4321-8a18-7f3690123561" ownerguid="eed8d3b5-ed51-4f52-9080-e3c7b4a39222"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PunctuationForm" guid="f309f313-7b5e-4471-8c64-c1e5dce529be"> -<Form> -<Str> -<Run ws="en">15</Run> -</Str> -</Form> -</rt> -<rt class="MoStemMsa" guid="f30a9c57-c993-4160-88ed-dd3ceb114e9c" ownerguid="30bf17f3-f3e8-477b-8bce-67e647db6f8c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="f3133bc5-1725-47c3-86b9-1e76b2d6824d" ownerguid="a1fe830b-7192-4115-a731-f34ad046181a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">three</AUni> -<AUni ws="es">tres</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="766e9573-a089-422d-9f8b-6eb78e8017d5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f313ff63-b4a8-45cc-87bf-b64d44ef33e0" ownerguid="17707401-b191-4d55-b924-9001ed074b53"> -<Form> -<AUni ws="qvm-x-ach">faculta</AUni> -<AUni ws="qvm-x-acl">faculta</AUni> -<AUni ws="qvm-x-akh">faculta</AUni> -<AUni ws="qvm-x-akl">faculta</AUni> -<AUni ws="qvm-x-ame">faculta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f31453ca-f9d0-4a98-a485-5bf4430d66e3" ownerguid="0fc074ae-9373-4ab7-b894-701b76f65e66"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoAffixAllomorph" guid="f316619d-8160-40c4-a224-4ab66a6572ca" ownerguid="94426d56-c31d-475e-aa54-94fbf738c0c5"> -<Form> -<AUni ws="qvm-x-ach">lantag</AUni> -<AUni ws="qvm-x-acl">lantag</AUni> -<AUni ws="qvm-x-akh">lantaq</AUni> -<AUni ws="qvm-x-akl">lantaq</AUni> -<AUni ws="qvm-x-ame">lantaq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="f3197c5c-1512-4368-9dbf-2914c30d8abf" ownerguid="fea79ddc-1303-4d58-af28-2a49ca9549d4"> -<Form> -<AUni ws="qvm-x-ach">chirimöya</AUni> -<AUni ws="qvm-x-acl">chirimöya</AUni> -<AUni ws="qvm-x-akh">chirimöya</AUni> -<AUni ws="qvm-x-akl">chirimöya</AUni> -<AUni ws="qvm-x-ame">chirimöya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f31ac378-0967-4325-90f5-b239340f8bb2" ownerguid="afdd8b8e-9502-4d06-94ee-e79815b65750"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en"><Almost> everyone is sick.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">almost, nearly, practically, virtually, pretty well, more or less, just about</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words indicate that something is true of or has happened to almost all of something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f31f054d-c34c-4a67-a7f8-f8951078fffb" ownerguid="34dae3f8-e483-4fe5-893e-8838b910ab6a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="f31f5c35-89e7-4ec4-b634-c88e03d37851" ownerguid="37ff94b1-1ee9-4850-ae3c-c9477bf6f4e7"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="f3201198-d465-45ad-b928-b5330e0849e7" ownerguid="e50ab2b1-5337-4b6c-ab4c-ea2cee2e8838"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f32012c3-bf5d-469d-8d57-55d3be0df90f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pelya</AUni> -<AUni ws="qvm-x-acl">pelya</AUni> -<AUni ws="qvm-x-akh">pelya</AUni> -<AUni ws="qvm-x-akl">pelya</AUni> -<AUni ws="qvm-x-ame">pelya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pelear.1</AUni> -<AUni ws="qvm-x-acl">+pelear.1</AUni> -<AUni ws="qvm-x-akh">+pelear.1</AUni> -<AUni ws="qvm-x-akl">+pelear.1</AUni> -<AUni ws="qvm-x-ame">+pelear.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.788" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="16185290-b267-4829-9810-13d067f7f69a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pelear.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e9fa2291-fe53-4eee-a66f-ddcddea02ca8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="75a2fb92-f5e0-415f-8a2a-09ec386e04d9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pelear.1 
\entryTyp root 
\gENG fight 
\gSPN pelear 
\e +pelear.1 
\c V2 
\mp +assimilated 
\ach pelya 
\akh pelya 
\acl pelya 
\akl pelya 
\ame pelya 
\mcc +pelear.1 / ~_ 1O 3</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f32052bd-e342-4359-9f80-21a9f28ae274" ownerguid="10ebefab-eeaa-4ce5-962b-75e039facd05"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="ea78bea9-b6fd-43a4-a54a-214e2b95d919" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f321ed43-dd01-4d73-bd69-67120972ae96" ownerguid="6f1b95a1-cd4a-4bb0-8335-c7abe824c37d"> -<Form> -<AUni ws="qvm-x-ach">mogru</AUni> -<AUni ws="qvm-x-acl">mogru; mogro</AUni> -<AUni ws="qvm-x-akh">moqru</AUni> -<AUni ws="qvm-x-akl">moqru; moqro</AUni> -<AUni ws="qvm-x-ame">muqru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="f322082b-4c89-46e8-8fd3-363195132c47" ownerguid="520cb0dd-0b70-49ec-ab70-d15efdf0c390"> -<Form> -<AUni ws="qvm-x-ach">au</AUni> -<AUni ws="qvm-x-acl">au</AUni> -<AUni ws="qvm-x-akh">aw</AUni> -<AUni ws="qvm-x-akl">aw</AUni> -<AUni ws="qvm-x-ame">aw</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="f32289fb-43a1-454f-977d-b9109d715065" ownerguid="b9395be6-f646-44d2-abbd-45b51e743f04"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">berry</AUni> -<AUni ws="es">uva</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="26221a7a-19fb-4e4e-a2c9-8c0dc9ae4281" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="f3231f43-90e3-42b2-ab13-04792f782b7d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lapa</AUni> -<AUni ws="qvm-x-acl">lapa</AUni> -<AUni ws="qvm-x-akh">lapa</AUni> -<AUni ws="qvm-x-akl">lapa</AUni> -<AUni ws="qvm-x-ame">lapa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llapa</AUni> -<AUni ws="qvm-x-acl">*llapa</AUni> -<AUni ws="qvm-x-akh">*llapa</AUni> -<AUni ws="qvm-x-akl">*llapa</AUni> -<AUni ws="qvm-x-ame">*llapa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.144" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0655d4c4-dcff-4fca-931a-8964415a96b4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llapa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b16d0818-05dc-49f7-8cdf-889b0be5517e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8a3909dd-a970-4c78-b654-788efaefdca4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llapa 
\entryTyp root 
\gENG all 
\gSPN todos 
\e *llapa 
\c N1 
\ach lapa 
\akh lapa 
\acl lapa 
\akl lapa 
\ame lapa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f325a53d-f583-4762-b7b0-afee1815106e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">troncu; tronco</AUni> -<AUni ws="qvm-x-acl">troncu; troncu; tronco</AUni> -<AUni ws="qvm-x-akh">troncu; tronco</AUni> -<AUni ws="qvm-x-akl">troncu; troncu; tronco</AUni> -<AUni ws="qvm-x-ame">troncu; tronco</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tronco</AUni> -<AUni ws="qvm-x-acl">+tronco</AUni> -<AUni ws="qvm-x-akh">+tronco</AUni> -<AUni ws="qvm-x-akl">+tronco</AUni> -<AUni ws="qvm-x-ame">+tronco</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.149" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e5dd00cf-6fb9-4478-b0a4-66a89386c869" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tronco</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eb85f2e7-706b-4ed7-a959-fc13e38c72c2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="42fb38d6-fed2-4007-86f5-b75134136924" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tronco 
\entryTyp root 
\gENG trunk 
\gSPN tronco 
\e +tronco 
\c N0 
\ach troncu / ~_# 
\ach tronco / _# 
\akh troncu / ~_# 
\akh tronco / _# 
\acl troncu / ~_# 
\acl troncu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tronco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl troncu / ~_# 
\akl troncu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tronco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame troncu / ~_# 
\ame tronco / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f325f76e-2beb-49d1-be9b-8a2ee1e3d1f0" ownerguid="5b12ea7b-790f-4f3e-8d07-893fc267773e"> -<ExampleWords> -<AUni ws="en">cloudy, cloud up, cloud cover, be clouded over, overcast, partly cloudy, scattered clouds, gray, dull, foggy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe how many clouds are in the sky?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f3261176-07d9-4d8f-872d-bbd6fa91c924"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">diablu; diablo</AUni> -<AUni ws="qvm-x-acl">diablu; diablu; diablo</AUni> -<AUni ws="qvm-x-akh">diablu; diablo</AUni> -<AUni ws="qvm-x-akl">diablu; diablu; diablo</AUni> -<AUni ws="qvm-x-ame">diablu; diablo</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+diablo.1</AUni> -<AUni ws="qvm-x-acl">+diablo.1</AUni> -<AUni ws="qvm-x-akh">+diablo.1</AUni> -<AUni ws="qvm-x-akl">+diablo.1</AUni> -<AUni ws="qvm-x-ame">+diablo.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.404" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="78ccbe71-5d7a-4d2b-bdff-619fdbd9949d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+diablo.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0542b90a-48bf-4cb4-b312-4bc7cf78e4cd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e45a91f5-f056-4d32-b0f0-5dac3fab53ec" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +diablo.1 
\entryTyp root 
\gENG devil 
\gSPN diablo 
\e +diablo.1 
\c N0 
\ach diablu / ~_# 
\ach diablo / _# 
\akh diablu / ~_# 
\akh diablo / _# 
\acl diablu / ~_# 
\acl diablu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl diablo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl diablu / ~_# 
\akl diablu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl diablo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame diablu / ~_# 
\ame diablo / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="f327ad7a-3e86-452e-ade7-e8bcd11bf95b" ownerguid="c7fe3fd0-802d-429e-8f1c-9691f371f7bb"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="57e435ff-f14a-44e1-b595-dff01f37fcc1" t="r" /> -</Morph> -<Msa> -<objsur guid="be6973f5-a2b1-46a6-9dd0-379cd8bb168a" t="r" /> -</Msa> -</rt> -<rt class="MoInflAffMsa" guid="f32a5a50-f426-45b8-ae08-eba8e0a53b74" ownerguid="b7ad601f-b474-4bb3-94cb-2fdee7e3f23f"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="ca45d090-0c3b-4e36-9a40-58963588cdaf" t="r" /> -</Slots> -</rt> -<rt class="CmDomainQ" guid="f32a8c9b-d16a-4ce7-8fe6-e40ee6141db4" ownerguid="b6e45998-9f6a-4b19-9cda-62410a11afa2"> -<ExampleWords> -<AUni ws="en">sorcerer, magician, witch, wizard, shaman, witchdoctor, conjurer, necromancer, warlock, charmer, medicine man, alchemist, medium</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What is a person called who practices sorcery?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f3306815-e47c-4345-9ccd-b85729375237"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ha:cha</AUni> -<AUni ws="qvm-x-acl">ha:cha</AUni> -<AUni ws="qvm-x-akh">ha:cha</AUni> -<AUni ws="qvm-x-akl">ha:cha</AUni> -<AUni ws="qvm-x-ame">ha:cha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hacha</AUni> -<AUni ws="qvm-x-acl">+hacha</AUni> -<AUni ws="qvm-x-akh">+hacha</AUni> -<AUni ws="qvm-x-akl">+hacha</AUni> -<AUni ws="qvm-x-ame">+hacha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.639" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eb8bc4e2-2296-4b95-9d07-65cc96680707" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hacha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="96a32bc8-2d08-4819-b53c-11452cca5f5f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3c3b383d-2e6d-40de-8d0e-5bf2cbab3a98" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hacha 
\entryTyp root 
\gENG axe 
\gSPN hacha 
\e +hacha 
\c N0 
\mp +assimilated 
\ach ha:cha 
\akh ha:cha 
\acl ha:cha 
\akl ha:cha 
\ame ha:cha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f330e25a-f37e-4a8b-afc8-27a074d968c7" ownerguid="751f726b-b7cd-470e-a9fd-f2f1b460dd0d"> -<ExampleWords> -<AUni ws="en">un-, a-, self-, super-, -ment, -hood, -ous, -ly, -fy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What derivational affixes are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f3338db9-c9ca-4585-b5f1-a6ac122903ce" ownerguid="6bfb7813-3a7d-47e2-88e1-d54034c07e5d"> -<ExampleWords> -<AUni ws="en">ask someone's advice, seek advice, consult, ask for advice, request advice, turn to for advice</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to asking for advice?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f3364eb3-dbb7-406a-a270-0d39b87a28fd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">padruna</AUni> -<AUni ws="qvm-x-acl">padruna</AUni> -<AUni ws="qvm-x-akh">padruna</AUni> -<AUni ws="qvm-x-akl">padruna</AUni> -<AUni ws="qvm-x-ame">padruna</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+empadronar</AUni> -<AUni ws="qvm-x-acl">+empadronar</AUni> -<AUni ws="qvm-x-akh">+empadronar</AUni> -<AUni ws="qvm-x-akl">+empadronar</AUni> -<AUni ws="qvm-x-ame">+empadronar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.447" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bd73360b-b027-4dc8-b82d-863b1233a61f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+empadronar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dcaecd56-8018-451d-badc-d3f4cfb98b69" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e00a9b1b-6e21-4d02-b2c1-46ae0bac62b1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +empadronar 
\entryTyp root 
\gENG 
\gSPN 
\e +empadronar 
\c V1 
\mp +assimilated 
\ach padruna 
\akh padruna 
\acl padruna 
\akl padruna 
\ame padruna</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f3397a75-01d9-4eeb-a8bc-f150211d3072" ownerguid="04582a28-b94a-4e7f-8cc4-5cdefa8a39f0"> -<ExampleWords> -<AUni ws="en">boy, lad, youth, young man, schoolboy, little shaver</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a young man?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f33bae47-56e7-403f-9e82-aedda45d5c2e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cashpi</AUni> -<AUni ws="qvm-x-acl">cashpi; cashpi; cashpe</AUni> -<AUni ws="qvm-x-akh">kashpi</AUni> -<AUni ws="qvm-x-akl">kashpi; kashpi; kashpe</AUni> -<AUni ws="qvm-x-ame">kashpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kashpi</AUni> -<AUni ws="qvm-x-acl">*kashpi</AUni> -<AUni ws="qvm-x-akh">*kashpi</AUni> -<AUni ws="qvm-x-akl">*kashpi</AUni> -<AUni ws="qvm-x-ame">*kashpi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.953" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fbc6cecc-0d5d-4c44-a656-1d9cc1ea42fa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kashpi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7c351984-773a-494f-9de0-dbab5c516c7c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="741249b1-8133-4bee-886a-4a67c254435b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kashpi 
\entryTyp root 
\gENG 
\gSPN 
\e *kashpi 
\c N0 
\mp +FinalI 
\ach cashpi 
\akh kashpi 
\acl cashpi / _# 
\acl cashpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cashpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kashpi / _# 
\akl kashpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kashpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kashpi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f33c2d9b-e9b7-4977-8c50-0b23fa8a05d3" ownerguid="c880c81f-65dc-4d93-8c39-22920fdbe4c7"> -<ExampleWords> -<AUni ws="en">wool, shear, fleece</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to cutting the hair off of a sheep?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f33f0c85-cdbd-4856-990b-bc920c536cf6" ownerguid="8b7bef47-9b6d-47c0-8558-22d442db06a4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f340abab-4ffd-41e5-97b7-42a3a04671a9" ownerguid="3393b3b2-b324-408d-9c59-057a0de9c3bd"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John is <striving> to earn enough money to buy a bicycle.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">do your best, try your best, put your mind to it, make an effort, be at pains to do something, strive, to the best of your ability, do the best you can, as best you can, give something your best</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to trying hard to do something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f3434500-83df-4a55-99d8-a4ece17d4d38" ownerguid="4a4392f2-adfd-4a53-ad99-27246f8e7f60"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f346af80-ca9c-49df-9f74-b4dbb0ebde7a" ownerguid="6bd023f6-730e-44c2-ae8f-78df967e2e18"> -<ExampleWords> -<AUni ws="en">pull on, pull over, pull something over on top of you</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to pulling something onto you?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f34be637-8a31-4410-9a0f-c718ca4ffae9" ownerguid="6bc902d0-7e1b-4af5-a8bb-4d7362eaa96c"> -<Form> -<AUni ws="qvm-x-ach">logyu</AUni> -<AUni ws="qvm-x-acl">logyu; logyo</AUni> -<AUni ws="qvm-x-akh">loqyu</AUni> -<AUni ws="qvm-x-akl">loqyu; loqyo</AUni> -<AUni ws="qvm-x-ame">luqyu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="f34ee595-2e4b-482f-81a5-e577e424f2f6" ownerguid="5984bfb8-afdf-4ca5-86e0-a65633961f5a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">salt</AUni> -<AUni ws="es">sal</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f1af688c-a922-493e-84a4-3769a7f72c9a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f350637e-824a-4de7-a46e-a3f8104d8823" ownerguid="2933a9c1-aa62-46fb-a03c-68aed7fae9b7"> -<ExampleWords> -<AUni ws="en">burnt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe something that has been burned?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f350805b-9fc6-4598-8c82-75c9f8b8656c" ownerguid="09a91a89-1936-4bc3-bca0-5206a35f67cd"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="f3514abb-723c-4fab-99f2-1fdbf786322b" ownerguid="275e8994-3b50-4690-b349-12e6f1b359a8"> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="f3523458-a28e-431d-9592-82a0db735e87" ownerguid="1cd96bb9-acf2-4050-8c18-b9d3196a0623"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">thanks</AUni> -<AUni ws="es">gracias</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="84d06ef9-78e4-4107-a6b3-e86fbdb73d59" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="f352a437-58f2-4920-aec3-eda8041f7447" ownerguid="00269021-e1c4-474d-9dba-341d296bdac7"> -<Abbreviation> -<AUni ws="en">8.4.5.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.640" /> -<DateModified val="2022-9-23 16:55:8.640" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to something happening first--to be before all other things in order or time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">First</AUni> -</Name> -<Questions> -<objsur guid="e20e3ebe-56d5-457b-b5c5-eda348481a24" t="o" /> -<objsur guid="18761d0f-a6b2-4181-8be6-6f839f5f2e2c" t="o" /> -<objsur guid="55cec1d9-272f-4f32-b377-270ce61485fd" t="o" /> -<objsur guid="d070e6bd-2f20-453e-8d67-4f848302a1b0" t="o" /> -<objsur guid="dfa653d2-d36a-43bc-8bf8-86aa83aa42c6" t="o" /> -<objsur guid="1658315f-18e2-4b9e-a5fc-e1f37f8f7c62" t="o" /> -<objsur guid="8b25607c-4086-4b63-9b5d-d4dfc6059dd9" t="o" /> -<objsur guid="c28d9b7e-1a1c-440d-90c4-73f9c0759901" t="o" /> -<objsur guid="56ada5de-67f6-4535-a5b7-65cb1dbf108d" t="o" /> -<objsur guid="4a581967-f9d6-4389-8c2d-a5bdbbdc9414" t="o" /> -<objsur guid="749ce679-9e81-43d1-a46c-26ed32824066" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="f353730d-7edf-4897-84d6-fe485761e8bb" ownerguid="7b2702a5-9ab0-4c7e-b7b0-d665d3e60668"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f3540c55-95d5-446a-8af7-002fea59c41f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lucsu</AUni> -<AUni ws="qvm-x-acl">lucsu; lucsu; lucso</AUni> -<AUni ws="qvm-x-akh">luksu</AUni> -<AUni ws="qvm-x-akl">luksu; luksu; lukso</AUni> -<AUni ws="qvm-x-ame">luksu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lluksu</AUni> -<AUni ws="qvm-x-acl">*lluksu</AUni> -<AUni ws="qvm-x-akh">*lluksu</AUni> -<AUni ws="qvm-x-akl">*lluksu</AUni> -<AUni ws="qvm-x-ame">*lluksu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.225" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="92812b88-4009-4f71-b3d9-b231a7469de9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lluksu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="969db3b1-1c62-4f6c-9b75-665aeb8498e4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1790a6e3-4fd2-4787-b235-8f1d54af8dfc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lluksu 
\entryTyp root 
\gENG testicle 
\gSPN testfculo 
\e *lluksu 
\c N0 
\ach lucsu 
\akh luksu 
\acl lucsu / _# 
\acl lucsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lucso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl luksu / _# 
\akl luksu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lukso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame luksu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f3544a0c-b902-49af-96ca-a51744c1763f" ownerguid="cb655848-c91a-4585-af91-478eb961e0ab"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/N0 V2/N0</Run> -</AStr> -</Custom> -<Definition> -<AStr ws="en"> -<Run ws="en">do in excess</Run> -</AStr> -<AStr ws="es"> -<Run ws="es">hacer en exceso</Run> -</AStr> -</Definition> -<Examples> -<objsur guid="134bc233-8657-44c7-806f-7a8327bccd5a" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">EXCS</AUni> -<AUni ws="es">EXCS</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="baa93a03-82fe-4274-944c-006ddad7d6aa" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="f35699a2-c7c6-49fb-8764-d408558bf3d3" ownerguid="1985220b-1adf-45db-b8af-6d7bf464d86e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rice</AUni> -<AUni ws="es">arroz</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="541c9205-a7be-4795-82ef-0f0cb0375dc6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f356f74d-17c4-4f6f-afa4-c1fb04a8369d" ownerguid="b3a85cd7-97fd-4306-830d-714801492498"> -<Form> -<AUni ws="qvm-x-ach">warcu</AUni> -<AUni ws="qvm-x-acl">warcu; warco</AUni> -<AUni ws="qvm-x-akh">warku</AUni> -<AUni ws="qvm-x-akl">warku; warko</AUni> -<AUni ws="qvm-x-ame">warku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f35c3a4e-8eca-49c2-9f4b-b91fd8cb69a0" ownerguid="7575d654-e528-4fe0-85eb-481b0e6654bb"> -<ExampleWords> -<AUni ws="en">appliance, refrigerator, stove, oven</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to machines used in homes?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f35fc040-18bc-457c-9e08-97c61267e626" ownerguid="89ad4e41-bf08-4d93-a4f3-f72e8cc62bed"> -<ExampleWords> -<AUni ws="en">in-law, father-in-law, mother-in-law, brother-in-law, sister-in-law, son-in-law, daughter-in-law</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to people who are related to you by marriage?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f361047b-b57e-48e3-8c00-1775a87dfe3d" ownerguid="0f4113c9-0759-4a57-80c0-640b82663ffa"> -<Form> -<AUni ws="qvm-x-ach">calcula</AUni> -<AUni ws="qvm-x-acl">calcula</AUni> -<AUni ws="qvm-x-akh">calcula</AUni> -<AUni ws="qvm-x-akl">calcula</AUni> -<AUni ws="qvm-x-ame">calcula</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="f3627c41-5daf-4f73-ac42-8a0522035e0b" ownerguid="101c16f8-ec76-4ec7-895a-fd814fef51dd"> -<Abbreviation> -<AUni ws="en">2.5.7.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.63" /> -<DateModified val="2022-9-23 16:55:8.63" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for plants that are used for medicine.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Medicinal plants</AUni> -</Name> -<Questions> -<objsur guid="2e99584d-fe82-4e7d-b25f-bbd09d050818" t="o" /> -<objsur guid="dfe3e2d6-4817-4180-8ce0-d5c64d902ca1" t="o" /> -<objsur guid="04a07fd7-882f-4a11-8f89-c1f0a8f4d59f" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="025da6f4-b1b6-423a-8c0f-b324f531a6f1" t="r" /> -<objsur guid="c345f278-91ff-463d-b9a6-8abac8a267eb" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="f362c439-c9ee-4355-8f9d-b0edfda3537f" ownerguid="eb3585b5-cb6c-4061-8aff-feb66ba09add"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="f364c7ea-a0ac-4db6-b294-cd34d4049775" ownerguid="f462a53b-3eab-4149-983c-3f5ded91bc68"> -<Form> -<AUni ws="qvm-x-ach">yëwa</AUni> -<AUni ws="qvm-x-acl">yëwa</AUni> -<AUni ws="qvm-x-akh">yëwa</AUni> -<AUni ws="qvm-x-akl">yëwa</AUni> -<AUni ws="qvm-x-ame">yëwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="f3654a7f-d16e-4870-9ef0-4b4268faeffb" ownerguid="6142c173-161a-47d5-bdec-c827518fd67c"> -<Abbreviation> -<AUni ws="en">3.4.2.1.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.143" /> -<DateModified val="2022-9-23 16:55:8.143" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling discontent.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Discontent</AUni> -</Name> -<Questions> -<objsur guid="9b8f992a-d343-4929-9f35-aed33dbdb301" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="f3664d77-0ccd-4a12-8d35-047113bb9ef9" ownerguid="3787b076-8bcc-4676-b78b-feef69c28bdc"> -<Form> -<AUni ws="qvm-x-ach">par</AUni> -<AUni ws="qvm-x-acl">par</AUni> -<AUni ws="qvm-x-akh">par</AUni> -<AUni ws="qvm-x-akl">par</AUni> -<AUni ws="qvm-x-ame">par</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f369fcea-d729-419d-9ca0-da8246776b35"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pasca</AUni> -<AUni ws="qvm-x-acl">pasca</AUni> -<AUni ws="qvm-x-akh">paska</AUni> -<AUni ws="qvm-x-akl">paska</AUni> -<AUni ws="qvm-x-ame">paska</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*paska</AUni> -<AUni ws="qvm-x-acl">*paska</AUni> -<AUni ws="qvm-x-akh">*paska</AUni> -<AUni ws="qvm-x-akl">*paska</AUni> -<AUni ws="qvm-x-ame">*paska</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.747" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="96373a25-7049-48b6-9830-aa1c791de2f1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*paska</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ceb02834-5534-4019-ac97-4a79515c3789" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3200eee1-7757-4a17-8c3c-74e75699722c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *paska 
\entryTyp root 
\gENG untie 
\gSPN desatar 
\e *paska 
\c V2 
\ach pasca 
\akh paska 
\acl pasca 
\akl paska 
\ame paska</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f36b2671-0158-4cd9-b9bb-f6e105020dbf" ownerguid="0f07adb7-4387-4723-9800-8362e825ad45"> -<ExampleWords> -<AUni ws="en">granite, sedimentary, igneous, metamorphic, pumice, shale, quartz, flint, marble, slate, chalk, sandstone</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What types of rocks are there?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="f36ba4ad-1fa1-4d12-b3cd-d125f4f89d4f" ownerguid="9dca62a8-2127-46bd-87d1-6057b729c7c6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="f36c20da-30f6-4a22-94ca-68e46a281daf" ownerguid="26bd3710-7a3b-4893-ab06-24fa95faefa6"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="f36df56b-7299-441f-87c1-1f8376d15fb7" ownerguid="1af9c8bf-e343-406c-a610-9604cb7056bb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bible</AUni> -<AUni ws="es">biblia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="41f6a2be-b0d6-4d69-8311-bc45fece219c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="f37092b8-b83a-4afd-8867-191810d4234c" ownerguid="795f21b4-7318-4cf0-8afd-1f7283dc6b40"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mad</AUni> -<AUni ws="es">bravo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="36802e93-5dba-4068-8831-81ce1f7ce4e8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="Segment" guid="f3715770-dddd-48b9-aa39-fd4052b353ed" ownerguid="cea561d7-e88a-4d47-90d5-af8e3ac2914b"> -<Analyses> -<objsur guid="ccfb9c3b-2049-4345-8c51-b12d3308741a" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="f3799255-6397-48ac-996a-ab1b5eb8c4aa" ownerguid="4c4894d5-6bbc-46cb-91f9-fbcfcd3931e7"> -<Form> -<AUni ws="qvm-x-ach">gachgas</AUni> -<AUni ws="qvm-x-acl">gachgas</AUni> -<AUni ws="qvm-x-akh">qachqas</AUni> -<AUni ws="qvm-x-akl">qachqas</AUni> -<AUni ws="qvm-x-ame">qachqas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="f37d803c-37b1-4641-8b10-6b566461d9f9" ownerguid="ff8716a1-3ade-4505-b965-2dd3be3ac940"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="f511f5c1-7ce9-4ad5-a753-6f6902d7aca9" t="o" /> -<objsur guid="b3a6e73f-1850-4b6a-b2de-c3c13e10df36" t="o" /> -<objsur guid="91033bf9-3d13-451b-97db-6f0c310e89df" t="o" /> -<objsur guid="efbff3ea-7c7e-4be1-8397-3915c02280f7" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="f37f3a4f-e1e2-4ac2-b4b3-9c02223e6dcf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sere:na</AUni> -<AUni ws="qvm-x-acl">sere:na</AUni> -<AUni ws="qvm-x-akh">sere:na</AUni> -<AUni ws="qvm-x-akl">sere:na</AUni> -<AUni ws="qvm-x-ame">sere:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+serena</AUni> -<AUni ws="qvm-x-acl">+serena</AUni> -<AUni ws="qvm-x-akh">+serena</AUni> -<AUni ws="qvm-x-akl">+serena</AUni> -<AUni ws="qvm-x-ame">+serena</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.510" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c07e9464-e8c1-4e36-b357-63361d6afde1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+serena</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cb237afa-c428-4439-8e70-0dd984e3ef0e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="21043c41-eb08-4830-9cce-3f639bb9bd31" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +serena 
\entryTyp root 
\gENG 
\gSPN 
\e +serena 
\c N0 
\ach sere:na 
\akh sere:na 
\acl sere:na 
\akl sere:na 
\ame sere:na</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f381c4fe-41dd-4dcc-903b-3d603cac2da8" ownerguid="5238fe9c-4bbe-444c-b5f6-18f946b3d6aa"> -<ExampleWords> -<AUni ws="en">fever, feverish, temperature, have a fever/temperature, run a temperature, be hot, be burning up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to having a fever?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f382655d-cde8-44f5-924d-61b9332cecab" ownerguid="2b0fbd58-ad45-48b6-b06f-72760f2d92ee"> -<Form> -<AUni ws="qvm-x-ach">camä</AUni> -<AUni ws="qvm-x-acl">camä</AUni> -<AUni ws="qvm-x-akh">kamä</AUni> -<AUni ws="qvm-x-akl">kamä</AUni> -<AUni ws="qvm-x-ame">kamä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f38500ad-6902-4c75-8dc3-a2e4e77001bf" ownerguid="1e102423-6167-486a-bfef-dad1c9cdf1eb"> -<ExampleWords> -<AUni ws="en">wheel, tire, rim, spokes, hub, axle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What are the parts of a wheel?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f386fb86-e724-4fdb-be1a-a896c2aff489" ownerguid="41837400-bdc5-4cbc-a1dc-d793f713f883"> -<ExampleWords> -<AUni ws="en">um, uh, er, hmm, yeah, let's see, hold on a minute, let me see, let me think</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used when a speaker hesitates or pauses to think?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f388ddf9-c41d-4d4e-be40-063bec82a996" ownerguid="7fe748c4-4ee6-45f7-b8e5-7c68966171d6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="f3894e8d-2e78-4617-9e41-1dac2daaebaf" ownerguid="df864d59-5705-445e-9e26-d328c5c1d6b1"> -<Form> -<AUni ws="qvm-x-ach">chilapya; chilapyä</AUni> -<AUni ws="qvm-x-acl">chilapya; chilapyä</AUni> -<AUni ws="qvm-x-akh">chilapya; chilapyä</AUni> -<AUni ws="qvm-x-akl">chilapya; chilapyä</AUni> -<AUni ws="qvm-x-ame">chilapya; chilapyä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f38bd8d8-def5-4c52-90d7-c189a435d80b" ownerguid="f2c32894-64b5-436c-ab8f-b5045fa2a753"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f38f267d-c55d-4927-9ac7-7a61e42d49ff"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">no:ta</AUni> -<AUni ws="qvm-x-acl">no:ta</AUni> -<AUni ws="qvm-x-akh">no:ta</AUni> -<AUni ws="qvm-x-akl">no:ta</AUni> -<AUni ws="qvm-x-ame">no:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+nota</AUni> -<AUni ws="qvm-x-acl">+nota</AUni> -<AUni ws="qvm-x-akh">+nota</AUni> -<AUni ws="qvm-x-akl">+nota</AUni> -<AUni ws="qvm-x-ame">+nota</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.568" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4c184f09-c1c2-4778-9810-867df88dd078" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+nota</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5a686695-633f-457c-95eb-b6fc8608a19b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9c1e5ef0-0c5b-405b-a2a6-3c982e89e4c0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +nota 
\entryTyp root 
\gENG note 
\gSPN nota 
\e +nota 
\c N0 
\ach no:ta 
\akh no:ta 
\acl no:ta 
\akl no:ta 
\ame no:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="f38f8344-838f-44ba-b103-22289c2d2793" ownerguid="60364974-a005-4567-82e9-7aaeff894ab0"> -<Abbreviation> -<AUni ws="en">1.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.963" /> -<DateModified val="2022-9-23 16:55:7.963" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to when something has water on it or water has soaked into it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>47C Application and Removal of Liquids or Masses; 79O Wet, Dry</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Wet</AUni> -</Name> -<Questions> -<objsur guid="9c28c915-a534-435a-8875-eff562c3e69e" t="o" /> -<objsur guid="f9384b7b-f22b-432a-aa38-bb99b6f0c4bb" t="o" /> -<objsur guid="8932cfc5-ff0a-4994-bf7b-1c49ff677e61" t="o" /> -<objsur guid="11659f73-c18d-4e6b-b451-56ef9e75ae47" t="o" /> -<objsur guid="318a5c41-2943-415b-a5c7-1a0eb5bef481" t="o" /> -<objsur guid="3d037389-f0c4-4130-af4f-ed8d689220c2" t="o" /> -<objsur guid="84018a11-c99c-47b0-88ad-81b910a4031d" t="o" /> -<objsur guid="23917db0-b81a-432f-91d4-8950ffdc5e83" t="o" /> -<objsur guid="70686339-dc70-4cf6-8493-b62910818049" t="o" /> -<objsur guid="2b14600c-29c1-4322-8c50-9083cebeebe5" t="o" /> -<objsur guid="6b0b074d-1b5f-40e6-adeb-44228ad0a882" t="o" /> -<objsur guid="2a11bf8c-e1dd-4738-add4-85a914c05ea8" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="0b0801a3-8a0c-40ea-bf41-07df80bd0d5f" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="f393501c-4b2c-4320-86f1-e7521775d019" ownerguid="3ae6cbf1-ef25-48a4-a022-50b77bf5b510"> -<Form> -<AUni ws="qvm-x-ach">alcaldi; alcalde</AUni> -<AUni ws="qvm-x-acl">alcaldi; alcaldi; alcalde</AUni> -<AUni ws="qvm-x-akh">alcaldi; alcalde</AUni> -<AUni ws="qvm-x-akl">alcaldi; alcaldi; alcalde</AUni> -<AUni ws="qvm-x-ame">alcaldi; alcalde</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f393da23-9bd4-4170-b36f-5557ce209a9c" ownerguid="64493789-1c2c-4b24-a7e6-f00ff9be923e"> -<ExampleWords> -<AUni ws="en">use, employ (something), make use of, handle, manipulate, wield</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to using something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f397fe86-cc95-4aae-86da-a361aceadf70" ownerguid="e6c9fe4c-199e-4934-b622-739a85b0830d"> -<ExampleWords> -<AUni ws="en">organization, ad hoc, alignment, apparatus, cycle, framework, hierarchy, mechanism, network, order, ordering, pattern, row, sequence, set-up, structure, system</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the pattern in which things are organized?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f398ee75-b2ea-4fa6-9460-e612999ef574" ownerguid="e3735bab-69a6-43b1-99e0-4a08e88df940"> -<Form> -<AUni ws="qvm-x-ach">cëpu</AUni> -<AUni ws="qvm-x-acl">cëpu; cëpu; cëpo</AUni> -<AUni ws="qvm-x-akh">cëpu</AUni> -<AUni ws="qvm-x-akl">cëpu; cëpu; cëpo</AUni> -<AUni ws="qvm-x-ame">cëpu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="f39b14c4-52cf-4afa-956c-f0f5815ef6ac" ownerguid="a42db5b4-6317-4d3f-beff-cb92dbaca914"> -<Abbreviation> -<AUni ws="en">3.2.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.101" /> -<DateModified val="2022-9-23 16:55:8.101" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to checking something--when you think something is true or correct, but you aren't sure, you do something to find out if it is true or correct.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Check</AUni> -</Name> -<Questions> -<objsur guid="37c8e54c-d943-48db-bf9f-b48eb28b333c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="f39c6451-ad82-437c-900b-18947d5ffbb6" ownerguid="a19e219a-6cc1-4057-a8d9-18554ae88de1"> -<ExampleWords> -<AUni ws="en">care for, watch, baby-sit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to caring for a baby?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="f39d9f45-6c4b-4e2f-9e86-6e1766545a1d" ownerguid="1e2f084c-71ac-42d4-8200-995f1be5d2c4"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="d3167437-4b57-4a9b-a5a6-a4403e4449cf" t="o" /> -<objsur guid="8ed41ef6-0d96-4828-ad4b-93742baabd7b" t="o" /> -<objsur guid="d7121abe-19e7-4aab-9978-d52ed8d50639" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="f3a111fe-b72e-4bec-91cf-3b133787e47f" ownerguid="8c33d2c7-3043-4943-945f-37a6b4e8bd7b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">to.corral</AUni> -<AUni ws="es">corralar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="79f41d56-eb0a-4afd-90bd-0ef1923b0124" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="f3a26e0a-727f-43ab-9310-88b8cec8f6d7" ownerguid="c2b720f5-1123-446e-9f60-088a3272b889"> -<Abbreviation> -<AUni ws="en">8.4.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.640" /> -<DateModified val="2022-9-23 16:55:8.640" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to something being temporary.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Temporary</AUni> -</Name> -<Questions> -<objsur guid="935c86eb-982b-4d05-bd90-4bf5d1b69a65" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="f3a3c98c-a0bc-4db7-9836-e2bfe57f50fa" ownerguid="a104adb9-9e74-4130-aee8-072da2a9ac22"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="991ba8ca-d43d-4d68-8d55-62c18e406db5" t="o" /> -<objsur guid="1f92e10b-3419-45f2-b720-412cf83c44bf" t="o" /> -<objsur guid="d5f7a2d3-d9cf-4de8-975e-d11fcd58a63a" t="o" /> -<objsur guid="801aeb24-6c00-445f-8e83-1fbe30ae698a" t="o" /> -<objsur guid="37aa41d5-742b-4a63-959d-1afb9bde53b0" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="f3a8cb6f-cdc8-42b3-a969-08dd7c907079"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pastor</AUni> -<AUni ws="qvm-x-acl">pastor</AUni> -<AUni ws="qvm-x-akh">pastor</AUni> -<AUni ws="qvm-x-akl">pastor</AUni> -<AUni ws="qvm-x-ame">pastor</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pastor</AUni> -<AUni ws="qvm-x-acl">+pastor</AUni> -<AUni ws="qvm-x-akh">+pastor</AUni> -<AUni ws="qvm-x-akl">+pastor</AUni> -<AUni ws="qvm-x-ame">+pastor</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.749" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c1e5cb78-e785-4b67-93d2-3245fcc1ff62" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pastor</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d4aec8b3-b477-4f8b-aefd-2c7c91a23d02" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="353b1f99-9ff0-40ae-a5d8-2569f676acc8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pastor 
\entryTyp root 
\gENG pastor 
\gSPN pastor 
\e +pastor 
\c N0 
\mp +FinalC 
\ach pastor 
\akh pastor 
\acl pastor 
\akl pastor 
\ame pastor</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f3aa5ec5-b872-43f1-ac23-42d9a371442b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ashash</AUni> -<AUni ws="qvm-x-acl">ashash</AUni> -<AUni ws="qvm-x-akh">ashash</AUni> -<AUni ws="qvm-x-akl">ashash</AUni> -<AUni ws="qvm-x-ame">ashash</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ashash</AUni> -<AUni ws="qvm-x-acl">*ashash</AUni> -<AUni ws="qvm-x-akh">*ashash</AUni> -<AUni ws="qvm-x-akl">*ashash</AUni> -<AUni ws="qvm-x-ame">*ashash</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.840" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="98189584-19e6-4889-8bbf-92bd6972c3a8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ashash</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9c32556a-b736-4697-921b-508a3ab14578" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3a9cec98-f941-4869-bc2b-454a48254b21" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ashash 
\entryTyp root 
\gENG 
\gSPN suciedad 
\e *ashash 
\c N0 
\mp +FinalC 
\ach ashash 
\akh ashash 
\acl ashash 
\akl ashash 
\ame ashash 
\i Exo 29.14 Aytsanta, garanta y ashashnincunataga campamentupita juc läduman jorgurcur rupatsinqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f3aadd6b-7a3c-4124-8316-c14d0882e670" ownerguid="623df4d1-a346-411c-a149-8eddc54b0b9d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="f3ab0c8e-eef7-4850-9260-b35a5b58667a" ownerguid="5c382242-9d84-408a-a5b9-e6cc2320c640"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ama</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ama</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ama</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ama</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ama</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e30c47d8-4625-4c21-a45f-58f85a1e8c4c" t="r" /> -</Morph> -<Msa> -<objsur guid="43d1bf5f-8105-4ae5-ac43-5b7649c64552" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="f3ae08f2-e9b4-4487-af7e-4c3260a1bd0a" ownerguid="dcf6e4ac-e0d3-4b91-b4ee-7971012bbd4b"> -<Form> -<AUni ws="qvm-x-ach">röpa</AUni> -<AUni ws="qvm-x-acl">röpa</AUni> -<AUni ws="qvm-x-akh">röpa</AUni> -<AUni ws="qvm-x-akl">röpa</AUni> -<AUni ws="qvm-x-ame">röpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="f3af1288-cf5a-474d-be20-d188b6d00061" ownerguid="a76b6e1f-4453-41f6-9237-7a5e2ff7612f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">confusion</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0d03f176-f1fa-4065-a19b-07db66f9c6ca" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="f3b235f4-af22-4c37-a01e-40f8c5a1428f" ownerguid="d4e73f6f-8a8f-47c7-8c51-fa2f62a215b3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="f3b3a2e5-fdbe-4b45-a014-cd8acd3557bf" ownerguid="8652a3b2-1bcd-4c6b-a0b5-89f621dbdb6d"> -<Form> -<AUni ws="qvm-x-ach">burla</AUni> -<AUni ws="qvm-x-acl">burla</AUni> -<AUni ws="qvm-x-akh">burla</AUni> -<AUni ws="qvm-x-akl">burla</AUni> -<AUni ws="qvm-x-ame">burla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f3b4514f-b44a-472a-b103-b8fd943670c3" ownerguid="c3c5beaa-4f0a-46f6-a47b-e5ee022c78bb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f3b8a60f-b8b0-4d50-9112-13f94f573bb1" ownerguid="4526b41d-6f3c-494f-93a2-ea3e9705269d"> -<ExampleWords> -<AUni ws="en">delay (n), hold-up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to an instance of delaying something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f3bd1057-00f7-466c-a895-fd7a577d3f87" ownerguid="9330f5a7-4e79-485e-a656-e76a3e6eda86"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">half</AUni> -<AUni ws="es">la.mitad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3d4c940f-3a94-451d-8493-dddd7539cef5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f3bd21c2-349b-43e8-bc69-c864f1d35118" ownerguid="a3fe0ca2-64fe-44db-ac3f-14513385bc25"> -<ExampleWords> -<AUni ws="en">bedtime, nighttime, time to go to sleep</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words are used of the time when you go to sleep?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f3bd3a06-b6ff-4683-aca7-140038927e22"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ucumarya</AUni> -<AUni ws="qvm-x-acl">ucumarya</AUni> -<AUni ws="qvm-x-akh">ukumarya</AUni> -<AUni ws="qvm-x-akl">ukumarya</AUni> -<AUni ws="qvm-x-ame">ukumarya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ukumarya</AUni> -<AUni ws="qvm-x-acl">*ukumarya</AUni> -<AUni ws="qvm-x-akh">*ukumarya</AUni> -<AUni ws="qvm-x-akl">*ukumarya</AUni> -<AUni ws="qvm-x-ame">*ukumarya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.210" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b3515424-181a-4eb2-89a3-b63bb4903fca" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ukumarya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="31c103f8-ada7-4eab-9995-b790e53da76a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="614cd0e5-7955-408d-95b2-319dadb5910e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ukumarya 
\entryTyp root 
\gENG 
\gSPN 
\e *ukumarya 
\c N0 
\ach ucumarya 
\akh ukumarya 
\acl ucumarya 
\akl ukumarya 
\ame ukumarya</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="f3bdae1e-e0dd-470e-ab00-f9f9db23de31"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Dios</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="f3be4764-0471-4a6d-a7d2-ff3695ca40e5" ownerguid="4526b41d-6f3c-494f-93a2-ea3e9705269d"> -<ExampleWords> -<AUni ws="en">stall, play for time, delaying tactics</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to deliberately delaying someone in order to accomplish something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f3c1c116-780d-458e-9621-49fd2b1b6288" ownerguid="825477a7-22cb-4e39-b1ba-830ceb56818e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="f3c5d264-2db6-4e27-842a-115f65ef3b69" ownerguid="b77bf6a2-75ec-47e5-a218-d00a3a2fc6e7"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="f3c67570-9ea5-44e7-b769-eea677b93525" ownerguid="3770ee03-dd32-4f7e-9ef2-98699bc413e5"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="f3c8b875-3b2c-447c-95d7-6e79afc1353f" ownerguid="0a920e88-dd41-41cc-839c-0b44aa1d33b2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">age</AUni> -<AUni ws="es">edad</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="db25ad9a-1ea9-420d-9ec4-8091d3836976" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f3c99012-686e-4951-91b0-304e174ae716" ownerguid="f08fdf77-9feb-4462-a6ea-032408846cc5"> -<Form> -<AUni ws="qvm-x-ach">bröma</AUni> -<AUni ws="qvm-x-acl">bröma</AUni> -<AUni ws="qvm-x-akh">bröma</AUni> -<AUni ws="qvm-x-akl">bröma</AUni> -<AUni ws="qvm-x-ame">bröma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f3cd8114-c8da-4c42-a04d-6adf7b87f15e" ownerguid="f858278a-2727-4403-9cf0-565cdececb1e"> -<Question> -<AUni ws="en">(12) This indicates that a morpheme meaning 'if' obligatorily occurs in the protasis. If no such morpheme is necessary, then there will be no co-occurrence restriction.</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f3ce324f-1ca3-49ef-a9cb-93c18ee5dbe7" ownerguid="923eefa6-f5ae-473b-a17f-fd8045a20502"> -<Form> -<AUni ws="qvm-x-ach">püru</AUni> -<AUni ws="qvm-x-acl">püru; püru; püro</AUni> -<AUni ws="qvm-x-akh">püru</AUni> -<AUni ws="qvm-x-akl">püru; püru; püro</AUni> -<AUni ws="qvm-x-ame">püru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="f3d162d7-da79-4ce4-9610-040f03b57d9d" ownerguid="35e61ec4-0542-4583-b5da-0aa5e31a35aa"> -<Abbreviation> -<AUni ws="en">2.6.3.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to an unusual birth.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Unusual birth</AUni> -</Name> -<OcmCodes> -<Uni>845 Difficult and Unusual Births</Uni> -</OcmCodes> -<Questions> -<objsur guid="258cdec3-1c28-4451-8fac-7b2332849291" t="o" /> -<objsur guid="7a0d4e19-b6a3-4231-a3a2-3cbd7f7426b1" t="o" /> -<objsur guid="b63d775f-3b38-4ddc-b5b4-5b4c1d6b60f7" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="4a5c8fdb-c8a0-49d2-a0d6-342428682d65" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="f3d32daf-5a81-4f1e-bb97-47c409ac61f3" ownerguid="6ab060ca-ecfc-4a46-accb-42b0473998cd"> -<ExampleWords> -<AUni ws="en">link, link up, connect, join, network</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to linking things together?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f3d40c71-525b-48a8-b789-f6a7d8af1fdb" ownerguid="4eda1965-3d19-4af3-a75c-092c45932917"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="49cedb42-6a63-4b8d-9893-21689ea78859" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="c920c85d-f79b-49f8-824c-36c4a6737879" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="f3d537af-e4e7-4c76-a160-570bbcd4557f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ra:ma</AUni> -<AUni ws="qvm-x-acl">ra:ma</AUni> -<AUni ws="qvm-x-akh">ra:ma</AUni> -<AUni ws="qvm-x-akl">ra:ma</AUni> -<AUni ws="qvm-x-ame">ra:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rama</AUni> -<AUni ws="qvm-x-acl">+rama</AUni> -<AUni ws="qvm-x-akh">+rama</AUni> -<AUni ws="qvm-x-akl">+rama</AUni> -<AUni ws="qvm-x-ame">+rama</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.246" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f256c945-43fc-49e9-bfcc-09a712246ebb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rama</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5e14ff85-6ba9-45f6-a4bf-6a44da2c1f44" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="da761f1d-9909-4bfb-89e4-dcb2115791aa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rama 
\entryTyp root 
\gENG branch 
\gSPN rama 
\e +rama 
\c N0 
\ach ra:ma 
\akh ra:ma 
\acl ra:ma 
\akl ra:ma 
\ame ra:ma</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f3da1994-1f68-4e16-bc17-4074208f8143"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uma</AUni> -<AUni ws="qvm-x-acl">uma</AUni> -<AUni ws="qvm-x-akh">uma</AUni> -<AUni ws="qvm-x-akl">uma</AUni> -<AUni ws="qvm-x-ame">uma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uma.n</AUni> -<AUni ws="qvm-x-acl">*uma.n</AUni> -<AUni ws="qvm-x-akh">*uma.n</AUni> -<AUni ws="qvm-x-akl">*uma.n</AUni> -<AUni ws="qvm-x-ame">*uma.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.220" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d5d06fa9-96ce-414b-8ac6-b67d7106e24c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uma.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0cd06721-3e41-4f90-9b92-8d912e3a5966" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0c05796f-e1bb-4771-826c-102032d9f4d0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uma.n 
\entryTyp root 
\gENG head 
\gSPN cabeza 
\e *uma.n 
\c N0 
\ach uma 
\akh uma 
\acl uma 
\akl uma 
\ame uma</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="f3dbb078-6265-4861-a6e3-46cc151c5d72" ownerguid="bc9d763c-e4fe-48ab-ad44-87a36f6cc06f"> -<Abbreviation> -<AUni ws="en">3.5.1.8.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.164" /> -<DateModified val="2022-9-23 16:55:8.164" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to complaining--to say that you don't like something.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33O' Complain</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Complain</AUni> -</Name> -<Questions> -<objsur guid="f9b14cc5-228e-4a3b-8633-049fb7f39b82" t="o" /> -<objsur guid="64b7caf8-7dd2-4dca-99db-b28b95b78fac" t="o" /> -<objsur guid="c7b9966f-09fb-4566-8ba2-651c0ff5b6c3" t="o" /> -<objsur guid="c7f5632c-5655-4ec5-836e-09d43f598013" t="o" /> -<objsur guid="ef45d4cc-73c0-4e8c-9487-6524d3f46c41" t="o" /> -<objsur guid="317ca901-c4a3-4bdd-bcf2-bd4fd93a6c73" t="o" /> -<objsur guid="d71a1da3-1b60-4aa4-aa91-53818990ed5d" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="2855cda6-a031-46aa-bf3f-718d94374d46" t="r" /> -<objsur guid="f0fdbdfa-094e-4bec-ae19-af23d2c02ed6" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="f3dc4aef-1317-4ace-9b07-59bcba551d27" ownerguid="c40a802d-f46a-40e8-a741-7cd8882bf6a3"> -<Form> -<AUni ws="qvm-x-ach">onza</AUni> -<AUni ws="qvm-x-acl">onza</AUni> -<AUni ws="qvm-x-akh">onza</AUni> -<AUni ws="qvm-x-akl">onza</AUni> -<AUni ws="qvm-x-ame">onza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f3dcb349-c1b6-400e-a79f-cd9e2ae00e9b" ownerguid="c9b8ecc1-a39d-4f42-b9c4-6a968934715b"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="f3e236e9-93d0-4dca-9400-ebc2466206dc" ownerguid="b6e59b23-222b-4009-b08c-1d0a4c8a3ed5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">assembly</AUni> -<AUni ws="es">asamblea</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e937875d-d929-4351-bbce-721022183ca8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="f3e7d33c-bdbe-4924-9ae2-57054a70966f" ownerguid="323ce24a-4adf-4efd-9eb6-8a3de1b7afa7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="f3e8f1e8-ae05-4140-afc5-ab3dad3778f2" ownerguid="5c94eafa-7b5b-4403-a6eb-4b5708878384"> -<Form> -<AUni ws="qvm-x-ach">llampu</AUni> -<AUni ws="qvm-x-acl">llampu; llampu; llampo</AUni> -<AUni ws="qvm-x-akh">llampu</AUni> -<AUni ws="qvm-x-akl">llampu; llampu; llampo</AUni> -<AUni ws="qvm-x-ame">llampu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PartOfSpeech" guid="f3ea5225-9cc3-474e-b548-7bda3376fce1" ownerguid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5"> -<Abbreviation> -<AUni ws="en">nx</AUni> -<AUni ws="es">nx</AUni> -</Abbreviation> -<AffixTemplates> -<objsur guid="995d4180-72d6-45f7-8862-ae462a3288af" t="o" /> -</AffixTemplates> -<BackColor val="0" /> -<DateCreated val="2022-10-14 23:52:57.512" /> -<DateModified val="2022-10-14 23:55:32.410" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Noun never possessed</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="f3ebe514-a789-4761-8c60-60b748669159" ownerguid="04053f4c-0b2c-4d26-8e8c-2c816e350985"> -<Form> -<AUni ws="qvm-x-ach">cientu; ciento</AUni> -<AUni ws="qvm-x-acl">cientu; cientu; ciento</AUni> -<AUni ws="qvm-x-akh">cientu; ciento</AUni> -<AUni ws="qvm-x-akl">cientu; cientu; ciento</AUni> -<AUni ws="qvm-x-ame">cientu; ciento</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="f3ec4a25-59eb-4f41-9abe-8228d50a90fb" ownerguid="4afcc531-720a-4f12-ab49-a7e94869ef0b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">wings</AUni> -<AUni ws="es">alas</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d50cb9bb-2be3-4082-9843-697ad730838b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f3ed745c-32f8-4836-9f27-b44e7a7d1d18" ownerguid="fb1e64ab-fced-4693-8ffe-9e8f0b9c35a3"> -<Form> -<AUni ws="qvm-x-ach">halaga</AUni> -<AUni ws="qvm-x-acl">halaga</AUni> -<AUni ws="qvm-x-akh">halaga</AUni> -<AUni ws="qvm-x-akl">halaga</AUni> -<AUni ws="qvm-x-ame">halaga</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="f3edbaef-78dc-483c-82d2-f46f9ce1996d" ownerguid="9e1b0f9f-a2f0-4e31-9507-ff06bc4526de"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">warmi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">warmi; warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">warmi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">warmi; warmi; warme</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">warmi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ddf5b3ec-6ef7-4a2a-b160-365cb7d372df" t="r" /> -</Morph> -<Msa> -<objsur guid="e9ece695-28de-48a2-aff1-266bce7d2a60" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="f3ef7f97-8da7-40e1-ab23-9006d63561bd" ownerguid="72274e9d-5d3c-4ae7-93ab-db3617cdda1e"> -<ExampleWords> -<AUni ws="en">tactile</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that has to do with feeling?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f3f2ed8b-f953-4bf9-a444-daf2ff9a2d4e" ownerguid="8e7a5d46-e122-49f5-a7a9-27320725b014"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="f3f36382-d934-42ae-b249-b63285c40de3" ownerguid="8c7382be-3bbb-4ec7-923a-38a343e9c4fb"> -<Form> -<AUni ws="qvm-x-ach">fiyupa</AUni> -<AUni ws="qvm-x-acl">fiyupa</AUni> -<AUni ws="qvm-x-akh">fiyupa</AUni> -<AUni ws="qvm-x-akl">fiyupa</AUni> -<AUni ws="qvm-x-ame">fiyupa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="f3f56778-ce43-4451-9709-ddded595322f" ownerguid="08dc3991-7d1d-4666-af5c-df84b79de3ec"> -<Form> -<AUni ws="qvm-x-ach">cucharita</AUni> -<AUni ws="qvm-x-acl">cucharita</AUni> -<AUni ws="qvm-x-akh">cucharita</AUni> -<AUni ws="qvm-x-akl">cucharita</AUni> -<AUni ws="qvm-x-ame">cucharita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f3f71fc7-8ee0-43eb-a6bb-4cf66bf47808" ownerguid="b9c50a96-de75-4eb5-8348-639372c6e2ad"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f3fa8080-c9e1-460c-bcd0-7ff404979d06"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">me:dicu</AUni> -<AUni ws="qvm-x-acl">me:dicu; me:dicu; me:dico</AUni> -<AUni ws="qvm-x-akh">me:dicu</AUni> -<AUni ws="qvm-x-akl">me:dicu; me:dicu; me:dico</AUni> -<AUni ws="qvm-x-ame">me:dicu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+médico</AUni> -<AUni ws="qvm-x-acl">+médico</AUni> -<AUni ws="qvm-x-akh">+médico</AUni> -<AUni ws="qvm-x-akl">+médico</AUni> -<AUni ws="qvm-x-ame">+médico</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.424" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="45f77f51-85cc-44ec-a2b3-25faf7b4db44" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+médico</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="09a7efa6-460e-40d5-bad5-f752f6f0bdfe" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="80a0315e-404b-420c-852d-a277147e2805" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +médico 
\entryTyp root 
\gENG doctor 
\gSPN médico 
\e +médico 
\c N0 
\ach me:dicu 
\akh me:dicu 
\acl me:dicu / _# 
\acl me:dicu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl me:dico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl me:dicu / _# 
\akl me:dicu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl me:dico +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame me:dicu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="f3fe43cd-7e8b-4a8b-819a-d7393896a9b6"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">20b</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="f3fe6e94-7a66-482f-b802-975b0a29fea4" ownerguid="14da8c3c-5e96-49b0-9459-c7dfa54e82e9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ruin</AUni> -<AUni ws="es">ruina</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="26fa0230-5ec3-41a2-a846-b4a8e5b828fc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f3feb5b2-2813-4c0b-94c8-ad0f5219e058" ownerguid="b044e890-ce30-455c-aede-7e9d5569396e"> -<ExampleWords> -<AUni ws="en">constellation, galaxy, nebula</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What is a group of stars called?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f4004ebb-5819-43e4-878b-f87e01a0b155" ownerguid="35da454a-cfbd-4aa4-8290-bf1abf8543d3"> -<Form> -<AUni ws="qvm-x-ach">ushu</AUni> -<AUni ws="qvm-x-acl">ushu; ushu; usho</AUni> -<AUni ws="qvm-x-akh">ushu</AUni> -<AUni ws="qvm-x-akl">ushu; ushu; usho</AUni> -<AUni ws="qvm-x-ame">ushu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="f403bc9f-df31-4379-a15d-2dfabdcfc152" ownerguid="fa243cc0-3b47-4be3-991b-909e90538fba"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pä</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pä</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pä</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pä</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pä</Run> -</AStr> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="f40462d1-9d12-45fe-a3bb-f11ab0c5cfaf" ownerguid="983054b6-230a-43b7-aeeb-9025e4467f10"> -<Form> -<AUni ws="qvm-x-ach">ganyan</AUni> -<AUni ws="qvm-x-acl">ganyan</AUni> -<AUni ws="qvm-x-akh">qanyan</AUni> -<AUni ws="qvm-x-akl">qanyan</AUni> -<AUni ws="qvm-x-ame">qanyan</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="f4054e98-dffe-4530-a09e-64cd0ec8b9b4" ownerguid="a934fe16-268d-4675-9a89-3a31a4adedbd"> -<Form> -<AUni ws="qvm-x-ach">despacha</AUni> -<AUni ws="qvm-x-acl">despacha</AUni> -<AUni ws="qvm-x-akh">despacha</AUni> -<AUni ws="qvm-x-akl">despacha</AUni> -<AUni ws="qvm-x-ame">despacha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f40744a7-7d96-4267-891e-93958e3dc0b3" ownerguid="ee853949-a6a2-4735-97ca-ebeb2aa7ddaf"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f40c36aa-65a5-4d32-9f81-eb51ae3b88de"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gobiernu; gobierno</AUni> -<AUni ws="qvm-x-acl">gobiernu; gobiernu; gobierno</AUni> -<AUni ws="qvm-x-akh">gobiernu; gobierno</AUni> -<AUni ws="qvm-x-akl">gobiernu; gobiernu; gobierno</AUni> -<AUni ws="qvm-x-ame">gobiernu; gobierno</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gobierno</AUni> -<AUni ws="qvm-x-acl">+gobierno</AUni> -<AUni ws="qvm-x-akh">+gobierno</AUni> -<AUni ws="qvm-x-akl">+gobierno</AUni> -<AUni ws="qvm-x-ame">+gobierno</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.619" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d5bc0c02-5527-4bcf-947b-7eaa1b385cf7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gobierno</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="81703408-d7fa-43fb-a1d1-386fdc14a22a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="57a30488-f824-498d-8602-5ce6b8949664" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gobierno 
\entryTyp root 
\gENG government 
\gSPN gobierno 
\e +gobierno 
\c N0 
\ach gobiernu / ~_# 
\ach gobierno / _# 
\akh gobiernu / ~_# 
\akh gobierno / _# 
\acl gobiernu / ~_# 
\acl gobiernu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gobierno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl gobiernu / ~_# 
\akl gobiernu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl gobierno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame gobiernu / ~_# 
\ame gobierno / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f40dbc33-e2a7-41b2-9a64-043db5d3cd66" ownerguid="23389cf4-61da-4fd6-b578-a02cad68bc89"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cloth</AUni> -<AUni ws="es">tela</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4273db56-92ed-4003-8dc6-38ebf6cdfeed" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="f41044c3-dd97-4d74-92ee-890be76e7ad4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">galwa</AUni> -<AUni ws="qvm-x-acl">galwa</AUni> -<AUni ws="qvm-x-akh">qalwa</AUni> -<AUni ws="qvm-x-akl">qalwa</AUni> -<AUni ws="qvm-x-ame">qalwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qallwa</AUni> -<AUni ws="qvm-x-acl">*qallwa</AUni> -<AUni ws="qvm-x-akh">*qallwa</AUni> -<AUni ws="qvm-x-akl">*qallwa</AUni> -<AUni ws="qvm-x-ame">*qallwa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.74" /> -<DateModified val="2022-10-10 21:18:47.218" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cc62f353-82fb-455c-93fb-b0846405fe06" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qallwa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f75570b1-6054-4102-b1e6-fe0688a25944" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c30123b3-f6d0-43b9-800b-f38639fe5a26" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qallwa 
\entryTyp root 
\gENG 
\gSPN 
\e *qallwa 
\c V1 
\ach galwa 
\akh qalwa 
\acl galwa 
\akl qalwa 
\ame qalwa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f4109a21-76da-4ff7-b6e8-eeb27738920f" ownerguid="d14157fc-5db3-4e06-8b45-04a2318c5f00"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dance</AUni> -<AUni ws="es">danzar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ff091e3d-b37a-40ff-b5ea-cabc997901d9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f413d73a-4de4-4725-86eb-7b552a0ca356" ownerguid="97f40359-f4e8-4545-9ba5-980b47487540"> -<ExampleWords> -<AUni ws="en">artificial, synthetic, man-made, processed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something made by people?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="f4145842-d8e6-461a-b92e-a70d4b4c8cd2" ownerguid="0b6da2c6-cc71-47ea-bcc2-1deccf6901ef"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">päca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">päca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">päka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">päka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">päku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e89f4461-706d-4840-bf9f-bfa3b395d737" t="r" /> -</Morph> -<Msa> -<objsur guid="f32a5a50-f426-45b8-ae08-eba8e0a53b74" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="f4150ec6-8772-48e3-a6c6-cd77282e5707" ownerguid="4a673080-646f-4b1b-99a2-3e59e432b836"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">salty</AUni> -<AUni ws="es">salado</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="39b9fcb5-f2bb-41c7-b536-3ffc4af3ea7e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f418a639-50cb-49b3-b80f-fe13e2c839b8" ownerguid="b4aa4bbd-8abf-4503-96e4-05c75efd23d5"> -<ExampleWords> -<AUni ws="en">humid, humidity, damp, sultry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe the weather when there is a lot of water in the air?</AUni> -</Question> -</rt> -<rt class="StStyle" guid="f41be047-a4ee-402b-bcfe-9458e502e682" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="14" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Dictionary-POS</Uni> -</Name> -<Rules> -<Prop italic="invert"></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<Usage> -<AUni ws="en">Used for Grammatical Category and other strings that need to be formatted similarly.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="LexExampleSentence" guid="f41da6ef-2e01-4f99-a03d-40853f15f36d" ownerguid="527bd2ae-dc82-494f-934f-dc32c9fa85e4"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 10.2 Suwacuypa rïcuyagcunataga manaragpis provichaptinmi wanutsipäconga.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="f422a5b8-2f47-42d7-9641-0808908da9cf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cama</AUni> -<AUni ws="qvm-x-acl">cama</AUni> -<AUni ws="qvm-x-akh">kama</AUni> -<AUni ws="qvm-x-akl">kama</AUni> -<AUni ws="qvm-x-ame">kama</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kama</AUni> -<AUni ws="qvm-x-acl">*kama</AUni> -<AUni ws="qvm-x-akh">*kama</AUni> -<AUni ws="qvm-x-akl">*kama</AUni> -<AUni ws="qvm-x-ame">*kama</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.912" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ff15ca90-26da-4bec-a64d-72d33a910873" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kama</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="35fd92de-528a-4cbd-973f-3682599dab63" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="593f8912-967c-4bc5-8eac-b681cf9a5f2f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kama 
\entryTyp root 
\gENG 
\gSPN 
\e *kama 
\c N0 
\ach cama 
\akh kama 
\acl cama 
\akl kama 
\ame kama 
\i ishcay camata 
\mcc *kama / ~_ YET1a</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f423f43c-fb2e-4e4f-87f6-d0dd561c5e8f" ownerguid="917d28d2-72b6-4191-bb4a-2366eb4d209c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">prostitute</AUni> -<AUni ws="es">prostituta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="03d940bb-f445-4642-814a-681eb4768165" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="f42416f1-2bb8-4790-a812-2cdc678e76f3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aparti; aparte</AUni> -<AUni ws="qvm-x-acl">aparti; aparti; aparte</AUni> -<AUni ws="qvm-x-akh">aparti; aparte</AUni> -<AUni ws="qvm-x-akl">aparti; aparti; aparte</AUni> -<AUni ws="qvm-x-ame">aparti; aparte</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+aparte</AUni> -<AUni ws="qvm-x-acl">+aparte</AUni> -<AUni ws="qvm-x-akh">+aparte</AUni> -<AUni ws="qvm-x-akl">+aparte</AUni> -<AUni ws="qvm-x-ame">+aparte</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.800" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fce88221-027d-45ee-9d28-2eead154638d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+aparte</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="26b344ca-5de5-4040-bd1d-a2153442bc87" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9ce75616-4876-4061-b3ac-bd68b9f3fe66" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +aparte 
\entryTyp root 
\gENG separate 
\gSPN aparte 
\e +aparte 
\c N0 
\mp +FinalI 
\ach aparti / ~_# 
\ach aparte / _# 
\akh aparti / ~_# 
\akh aparte / _# 
\acl aparti / ~_# 
\acl aparti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl aparte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl aparti / ~_# 
\akl aparti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl aparte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame aparti / ~_# 
\ame aparte / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f425d6e1-3b81-4a76-98ae-9b14d5590058"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shintica; shintica:</AUni> -<AUni ws="qvm-x-acl">shintica; shintica:</AUni> -<AUni ws="qvm-x-akh">shintika; shintika:</AUni> -<AUni ws="qvm-x-akl">shintika; shintika:</AUni> -<AUni ws="qvm-x-ame">shintika; shintika:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shintika:</AUni> -<AUni ws="qvm-x-acl">*shintika:</AUni> -<AUni ws="qvm-x-akh">*shintika:</AUni> -<AUni ws="qvm-x-akl">*shintika:</AUni> -<AUni ws="qvm-x-ame">*shintika:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.600" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="30d9af93-8db6-4f1a-87d8-59b1a1954eb0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shintika:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ca350b97-6057-46dc-8649-558ebfbc9d43" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7eabd643-af0e-4d7e-9bdb-79f4e9847c05" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shintika: 
\entryTyp root 
\gENG wrinkle 
\gSPN arrugar 
\e *shintika: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach shintica foreshortened 
\ach shintica: 
\akh shintika foreshortened 
\akh shintika: 
\acl shintica foreshortened 
\acl shintica: 
\akl shintika foreshortened 
\akl shintika: 
\ame shintika foreshortened 
\ame shintika: 
\i JOB 16.8 Cärä shinticashganta y pasaypa uyutashgätami pïmaypis ricaycäman.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f42682aa-bfaf-4278-b6ca-da33d96ce20d" ownerguid="a748588b-1138-4ea5-a007-18ea918f65c7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">go.ahead</AUni> -<AUni ws="es">adelantarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c98c3cc8-760a-42a3-884b-3a683b533bf8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f427b988-e330-4f86-bc3a-b0e4b8248196" ownerguid="36f4aca3-8c9a-41e4-85fe-4e3ef8d95849"> -<Form> -<AUni ws="qvm-x-ach">permïsu</AUni> -<AUni ws="qvm-x-acl">permïsu; permïsu; permïso</AUni> -<AUni ws="qvm-x-akh">permïsu</AUni> -<AUni ws="qvm-x-akl">permïsu; permïsu; permïso</AUni> -<AUni ws="qvm-x-ame">permïsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f427df0e-3241-42d8-813e-ec08f2fd6b54" ownerguid="51e29e8e-e7e3-4064-8813-1415766701a1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f4288fb9-191e-4e77-b185-0b97b3bb1e4f" ownerguid="b14db9f4-5e1d-4a2b-bec0-0d6bcb5b1a31"> -<ExampleWords> -<AUni ws="en">fall (n), avalanche</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the act of falling?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f4315eb2-8411-48ea-9df7-84e2157bed0d" ownerguid="ec118a28-fd23-48b3-8819-bfe1329f028d"> -<ExampleWords> -<AUni ws="en">reflection, mirror image</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the image that is reflected?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f434f2c0-6147-4da3-8828-13a8471708f4" ownerguid="e76da56d-55db-4081-a496-0566316f8466"> -<Form> -<AUni ws="qvm-x-ach">zarcïllu</AUni> -<AUni ws="qvm-x-acl">zarcïllu; zarcïllu; zarcïllo</AUni> -<AUni ws="qvm-x-akh">zarcïllu</AUni> -<AUni ws="qvm-x-akl">zarcïllu; zarcïllu; zarcïllo</AUni> -<AUni ws="qvm-x-ame">zarcïllu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="f4352fbe-968b-42cc-a2e0-3ab7fcb0edeb" ownerguid="d1292db9-72eb-4227-9b8e-4d2473625e80"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="34fceb87-d95a-4e6b-8e82-6b8a0170467b" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">slander</AUni> -<AUni ws="es">rinsilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="110d4412-6bf1-4f10-8351-8b0528200017" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="f437516b-d213-4f2a-82ac-4f502fe52e9e" ownerguid="6a4ac57f-5256-4dca-a331-d54b1d122d6f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="f43ac5da-0c55-4efe-9d59-4c377a76f426" ownerguid="8a9a46db-4b68-4a68-ab33-057314c49af4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="f43b9caa-13fc-4fc5-8c73-1778cf213f68" ownerguid="3ef84bc3-3210-4f61-b8dd-c509821e7984"> -<Form> -<AUni ws="qvm-x-ach">chïvu</AUni> -<AUni ws="qvm-x-acl">chïvu; chïvu; chïvo</AUni> -<AUni ws="qvm-x-akh">chïvu</AUni> -<AUni ws="qvm-x-akl">chïvu; chïvu; chïvo</AUni> -<AUni ws="qvm-x-ame">chïvu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f43beffe-842a-48a8-93e8-b5e74f9b3b5d" ownerguid="4f516445-e044-4d9c-ac9b-a3178f72b405"> -<ExampleWords> -<AUni ws="en">director, producer, camera crew</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a person who makes movies?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f43dbfd2-dcbc-4dbc-9ffb-82918049f0de" ownerguid="b96cbdd1-ed70-471e-9836-5dea7202c88d" /> -<rt class="LexEntry" guid="f43ea635-fc56-4aae-8450-ad5ff77cec24"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ishpa</AUni> -<AUni ws="qvm-x-acl">ishpa</AUni> -<AUni ws="qvm-x-akh">ishpa</AUni> -<AUni ws="qvm-x-akl">ishpa</AUni> -<AUni ws="qvm-x-ame">ishpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ishpa</AUni> -<AUni ws="qvm-x-acl">*ishpa</AUni> -<AUni ws="qvm-x-akh">*ishpa</AUni> -<AUni ws="qvm-x-akl">*ishpa</AUni> -<AUni ws="qvm-x-ame">*ishpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.852" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b51bb3ab-0a52-4fd1-82aa-6b6b774b15f3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ishpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="35b3e539-e823-4c12-8991-18397c27b643" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6b000f85-e41f-4329-9bd0-bd27aeea9f54" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ishpa 
\entryTyp root 
\gENG defecate 
\gSPN defecar 
\e *ishpa 
\c V1 
\ach ishpa 
\akh ishpa 
\acl ishpa 
\akl ishpa 
\ame ishpa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f4402a20-b1dc-4c3f-8d51-52968c80fc77" ownerguid="849db14f-7aec-4e44-a9c9-d98772cb3144"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="f440b36d-dae0-4082-8d00-5b814ef4c416" ownerguid="7f2018f7-bef3-4c46-8bbd-dbcc563f7d66"> -<Evaluations> -<objsur guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="81c1d30e-66fd-49de-9a43-ad5ff7f442f6" t="o" /> -<objsur guid="7aaf25bf-768f-4e25-9ebf-f7bad073679f" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="f442ba09-2469-4cfe-a31e-bcd120dbdec2" ownerguid="a50162fb-f652-4f20-a9b9-e9b75a422af5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2/V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="59ced0bd-ba42-4a6d-a818-549b877b0ab1" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">1O</AUni> -<AUni ws="es">1O</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="554634ac-1f6d-4bfc-8e9c-9d1dfeca4367" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="f4459097-0cc6-4455-aaf7-726a9420e2ca" ownerguid="8cce4003-fb3c-43a1-a1d6-9c91a5d67cd5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">truck</AUni> -<AUni ws="es">camión</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="24780e0b-20c2-48ec-9cf4-b2bbf19dc5ef" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="f4491f9b-3c5e-42ab-afc0-f22e19d0fff5" ownerguid="b32a39c4-43ff-4522-aed0-b2d5b8ad7157"> -<Abbreviation> -<AUni ws="en">3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.94" /> -<DateModified val="2022-9-23 16:55:8.94" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to mental and verbal activity. This domain is primarily for grouping many related domains. Therefore there may be no general word in a language to cover such a broad area of meaning.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Language and thought</AUni> -</Name> -<Questions> -<objsur guid="07e8053c-de46-4975-baea-58e22a563940" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="1cb79293-d4f7-4990-9f50-3bb595744f61" t="o" /> -<objsur guid="df9ee372-e92e-4f73-aac5-d36908497698" t="o" /> -<objsur guid="b50f39cb-3152-4d56-9ddc-4b98f763e76a" t="o" /> -<objsur guid="cb95189c-8c74-465b-af07-48e08dbf7c39" t="o" /> -<objsur guid="c9aee4df-ac3e-4159-bd1a-060db1a5f070" t="o" /> -<objsur guid="6137239a-b469-46be-b7cb-b9ac22fcc195" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="f44a7a72-baf2-4454-9d09-9b108f0965c6" ownerguid="ef4eea1e-40e5-4c5b-bd23-433833dbd81b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">judgment</AUni> -<AUni ws="es">juicio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e39fc040-3dc7-4333-948c-e84db953afde" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f44d755e-fe00-4a91-9747-7b3d50a99cfe" ownerguid="bd4a2527-f66c-4f48-922e-8b180bba8ef6"> -<ExampleWords> -<AUni ws="en">bag, garbage pail, mirror</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What other kinds of things are commonly found in a house?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f44f329a-a5b8-4478-b95a-b7cf366aa701" ownerguid="a6e5baf2-4823-4627-a09f-4c503514006a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.absent</AUni> -<AUni ws="es">ausentarse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="69d003a7-cff5-41c2-be5a-771139f3ac1c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f44f95a4-c45f-47da-9d8b-f3c8e0a750e9" ownerguid="26458e29-e274-4c71-a303-5d4957110fbf"> -<Form> -<AUni ws="qvm-x-ach">tsapa</AUni> -<AUni ws="qvm-x-acl">tsapa</AUni> -<AUni ws="qvm-x-akh">tsapa</AUni> -<AUni ws="qvm-x-akl">tsapa</AUni> -<AUni ws="qvm-x-ame">tsapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="f4506220-25cd-4312-b67d-2f96cce5d215" ownerguid="06ece095-9d9c-405a-819a-f98198ea8192"> -<Form> -<AUni ws="qvm-x-ach">muchmu</AUni> -<AUni ws="qvm-x-acl">muchmu; muchmo</AUni> -<AUni ws="qvm-x-akh">muchmu</AUni> -<AUni ws="qvm-x-akl">muchmu; muchmo</AUni> -<AUni ws="qvm-x-ame">muchmu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="f45213a1-90ea-4b2f-9b65-0ade47bfdf0a" ownerguid="055b2e6f-cacc-4740-a7f8-4ee42b6f73a3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="9bd642f1-72f7-442c-8df5-f7f8223953b9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f453102d-3166-49ff-bba1-9bab8162724d" ownerguid="61a14b92-7c6c-4337-a573-6653df85525d"> -<Form> -<AUni ws="qvm-x-ach">trotila</AUni> -<AUni ws="qvm-x-acl">trotila</AUni> -<AUni ws="qvm-x-akh">trotila</AUni> -<AUni ws="qvm-x-akl">trotila</AUni> -<AUni ws="qvm-x-ame">trotila</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="f45467b1-cd1f-481d-902e-70e18601c495" ownerguid="00d638ab-1ac8-4359-9f4c-707afe84e413"> -<Form> -<AUni ws="qvm-x-ach">desgracia</AUni> -<AUni ws="qvm-x-acl">desgracia</AUni> -<AUni ws="qvm-x-akh">desgracia</AUni> -<AUni ws="qvm-x-akl">desgracia</AUni> -<AUni ws="qvm-x-ame">desgracia</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="f456ed53-6a8f-46a8-b0c7-60cb00ead410"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">chay</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="f4580a74-cca5-4267-afe0-668660d9754c" ownerguid="36e5b459-8650-4dd8-ba2a-4be624af35af"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="f4580c19-ba9e-4f71-a46a-6f3c4b19c36c" ownerguid="6f01b67c-33a0-4ed3-8205-f868e97a1a3a"> -<Abbreviation> -<AUni ws="en">7.2.4.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.516" /> -<DateModified val="2022-9-23 16:55:8.516" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to traveling by water.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>54 Maritime Activities</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Travel by water</AUni> -</Name> -<OcmCodes> -<Uni>500 Water and Air Transport; 501 Boats; 502 Navigation; 503 Waterways Improvements; 504 Port Facilities; 505 Water Transport</Uni> -</OcmCodes> -<Questions> -<objsur guid="1ca95ac8-0e45-4c25-a190-9d46e692c248" t="o" /> -<objsur guid="32bce531-833b-4f99-be43-4614eaa871ff" t="o" /> -<objsur guid="2132d9a2-9242-4a24-8d0f-6065a95cf30b" t="o" /> -<objsur guid="e283b961-412c-4539-906b-32d50c4774a0" t="o" /> -<objsur guid="d57dbad6-a42c-437d-9d4b-3bae398e18d7" t="o" /> -<objsur guid="4acd75a8-bacb-4fce-9f58-025cc857198d" t="o" /> -<objsur guid="f6bf36ae-c80d-4815-bc6b-a82fd7048ced" t="o" /> -<objsur guid="95f43cc9-a2dd-4f34-97ee-6bd2e0136a08" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="4bfe53d2-fb85-4397-98a8-97d59b907064" t="o" /> -<objsur guid="fffa74fb-5b5c-453f-9120-94686033d894" t="o" /> -<objsur guid="0bbe1739-e0b4-442e-b69c-02a0ea20d790" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="f45a456e-8e23-4364-8842-047cc73f529b" ownerguid="a4b03891-c2df-4d72-bbdc-13bc8d4eceba"> -<Abbreviation> -<AUni ws="en">8.5.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.670" /> -<DateModified val="2022-9-23 16:55:8.670" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the amount of empty space that is available to be used.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Space, room</AUni> -</Name> -<Questions> -<objsur guid="6ea5acf6-afbe-4052-95ac-92a6ad09c86b" t="o" /> -<objsur guid="fc80b131-d1c1-4e42-9573-9f238627b162" t="o" /> -<objsur guid="03894ae6-63ee-4429-accd-576861a4e208" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="f45c557f-f8a6-470d-adba-712934d36471" ownerguid="fc82fcec-d03c-4fb0-bf62-714c71754402"> -<ExampleWords> -<AUni ws="en">come of age, grow up, mature (v), reach majority, settle down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to becoming an adult?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f45e6c7d-cda8-41c1-86e3-c5c184630688" ownerguid="83403b66-d2ec-471e-8259-e7f396caeee9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f45f9c23-b6ae-4026-aa41-de4b6eab4ddc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ti:za</AUni> -<AUni ws="qvm-x-acl">ti:za</AUni> -<AUni ws="qvm-x-akh">ti:za</AUni> -<AUni ws="qvm-x-akl">ti:za</AUni> -<AUni ws="qvm-x-ame">ti:za</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tiza</AUni> -<AUni ws="qvm-x-acl">+tiza</AUni> -<AUni ws="qvm-x-akh">+tiza</AUni> -<AUni ws="qvm-x-akl">+tiza</AUni> -<AUni ws="qvm-x-ame">+tiza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.936" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2361c4c1-b81b-4714-8387-6e2bd407bdce" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tiza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f529db3f-e740-4e0d-ab44-62d5fb4e1f43" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e3a02452-a1c3-4ead-b0b0-d2060220f29f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tiza 
\entryTyp root 
\gENG chalk 
\gSPN tiza 
\e +tiza 
\c N0 
\ach ti:za 
\akh ti:za 
\acl ti:za 
\akl ti:za 
\ame ti:za</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f4604b17-a39b-406f-9ff8-cb0edeb0f5a5" ownerguid="5b1b076d-b710-454f-a3f0-87466a70bd0d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="f4610d78-0699-4ad9-9e12-689c959b179f" ownerguid="03e02aa1-46e1-4b39-b303-9f7d729d4b1e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="f462a53b-3eab-4149-983c-3f5ded91bc68"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ye:wa</AUni> -<AUni ws="qvm-x-acl">ye:wa</AUni> -<AUni ws="qvm-x-akh">ye:wa</AUni> -<AUni ws="qvm-x-akl">ye:wa</AUni> -<AUni ws="qvm-x-ame">ye:wa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+yegua</AUni> -<AUni ws="qvm-x-acl">+yegua</AUni> -<AUni ws="qvm-x-akh">+yegua</AUni> -<AUni ws="qvm-x-akl">+yegua</AUni> -<AUni ws="qvm-x-ame">+yegua</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.780" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f364c7ea-a0ac-4db6-b294-cd34d4049775" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+yegua</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="108d83e4-355c-41ad-ac35-0ab3b12e3236" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bf1815c0-3c1a-420f-b59e-f592b5751ea4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +yegua 
\entryTyp root 
\gENG mare 
\gSPN yegua 
\e +yegua 
\c N0 
\ach ye:wa 
\akh ye:wa 
\acl ye:wa 
\akl ye:wa 
\ame ye:wa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f464db53-f719-4235-a831-a1a934650d04" ownerguid="bf292d0e-f15c-4083-aebb-0673efe33125"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="9e909f03-59d3-4560-a61b-efa3b583ed3d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f467abed-5a03-49bd-b204-e03acfdb4a2e" ownerguid="9d6cbe74-93d6-41fb-b7e2-cc30adb28187"> -<ExampleWords> -<AUni ws="en">come up, rise</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the sun or moon moving up in the sky?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="f4690f3f-8ae3-41eb-a46c-33957cb75b7b"> -<Analyses> -<objsur guid="72791192-a596-4669-ab01-8235a0cc3b43" t="o" /> -</Analyses> -<Checksum val="-470021817" /> -<Form> -<AUni ws="qvm-x-akh">chakwannami</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="f46b3f6f-33c4-42b1-9b7f-638e446368a7" ownerguid="5457a514-dce1-40bb-942a-92f3d1bf86fb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="ca5d6401-7fea-4c28-9b28-a33722198ce7" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">brood</AUni> -<AUni ws="es">empollar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6594e458-900e-44d3-8af5-09061506310c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f46f2666-8acf-46df-a7ab-31765fcc7c29" ownerguid="b5e5984d-25f9-4b5d-a2eb-fc47a411c2ea"> -<Form> -<AUni ws="qvm-x-ach">sepulcru; sepulcro</AUni> -<AUni ws="qvm-x-acl">sepulcru; sepulcru; sepulcro</AUni> -<AUni ws="qvm-x-akh">sepulcru; sepulcro</AUni> -<AUni ws="qvm-x-akl">sepulcru; sepulcru; sepulcro</AUni> -<AUni ws="qvm-x-ame">sepulcru; sepulcro</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f471efde-5fc9-44b2-a3ca-935eb53ea2d8" ownerguid="3366df1f-d70e-4052-8d39-7159e5b24c0b"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="f472b2d2-b4d3-4852-914d-71b66bdb6f26" ownerguid="7c7fc1b6-3775-4881-bbe0-9d0ce50e42a9"> -<Abbreviation> -<AUni ws="en">7.3.2.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.528" /> -<DateModified val="2022-9-23 16:55:8.528" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to hanging something, and for words describing something that has been hung.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>18B Fasten, Stick To</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Hang</AUni> -</Name> -<Questions> -<objsur guid="b931718c-3517-4bfa-9c63-4551f54b0bf2" t="o" /> -<objsur guid="d55cb5c3-a2bd-43f7-9c2e-70a4d5f8a0cc" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="f473af43-9dc7-4b42-bc18-47e428fbc918" ownerguid="77d1610f-4757-46de-b5f8-e127dc270dfd"> -<ExampleWords> -<AUni ws="en">weave</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to weaving?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f4795234-7a12-4711-9f70-5b9a82c678df" ownerguid="0f323bee-0d8a-4564-9691-87880f55d910"> -<ExampleWords> -<AUni ws="en">provisions, support (n), supply (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to what is provided?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f47b07d9-eac9-402b-9988-5d450c8aac88" ownerguid="8bf2e2c1-18ec-4591-81f4-5964530099d3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="09bb619c-6164-482b-8140-b281b1b69523" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">marsh</AUni> -<AUni ws="es">pantano</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1b23d298-3aaa-41bd-8537-01fd73a8b505" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="f47d681b-4f0d-43ca-a465-2e1724825752" ownerguid="529140d1-6e8e-44fe-99f0-95289e933607"> -<Abbreviation> -<AUni ws="en">4.1.9.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to your grandchildren.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Grandson, granddaughter</AUni> -</Name> -<OcmCodes> -<Uni>603 Grandparents and Grandchildren</Uni> -</OcmCodes> -<Questions> -<objsur guid="569a4f92-1d62-4fcb-936b-6e448213df12" t="o" /> -<objsur guid="78e87d50-fc3c-465f-977f-4aed813a47c0" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="f47e971c-6c4f-4043-9748-90e387f2cc3e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cerca</AUni> -<AUni ws="qvm-x-acl">cerca</AUni> -<AUni ws="qvm-x-akh">cerca</AUni> -<AUni ws="qvm-x-akl">cerca</AUni> -<AUni ws="qvm-x-ame">cerca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cerca</AUni> -<AUni ws="qvm-x-acl">+cerca</AUni> -<AUni ws="qvm-x-akh">+cerca</AUni> -<AUni ws="qvm-x-akl">+cerca</AUni> -<AUni ws="qvm-x-ame">+cerca</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.112" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3586c15a-a93d-44f2-b62a-61e82852e84e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cerca</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="13636163-1442-4711-9290-acdfc2d7fd39" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="21333e29-eec4-4f7c-9235-5fd3fef531a2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cerca 
\entryTyp root 
\gENG close 
\gSPN cerca 
\e +cerca 
\c N0 
\ach cerca 
\akh cerca 
\acl cerca 
\akl cerca 
\ame cerca</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f481807a-ccb4-4d63-997f-0c72be24f4ab" ownerguid="a139558a-8df9-4fc9-bd3e-816a1408ba7f"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">You don't need to do anything. I will take care of it <personally>.; Instead of sending a representative, he is coming <in person>.; You can talk to him <direct>.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">personally, in person, direct</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to indicate that you do something yourself, rather than through someone else?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="f4829d9d-a93f-4fc5-918c-6d4c501a6573" ownerguid="2265a4bd-379d-4a9d-80d5-2318e6c8c683"> -<Abbreviation> -<AUni ws="en">8.5.1.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.668" /> -<DateModified val="2022-9-23 16:55:8.668" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that something is outside of another thing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>83D Around, About, Outside</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Out, outside</AUni> -</Name> -<Questions> -<objsur guid="048f1b53-d033-41fc-a02e-dd4f5b7d15d0" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="e2806bed-b450-4469-900a-1afa7ded2224" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="f48346c2-1c61-4bbd-a867-8d84532bc816"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yarpa; yarpa:</AUni> -<AUni ws="qvm-x-acl">yarpa; yarpa:</AUni> -<AUni ws="qvm-x-akh">yarpa; yarpa:</AUni> -<AUni ws="qvm-x-akl">yarpa; yarpa:</AUni> -<AUni ws="qvm-x-ame">yarpa; yarpa:</AUni> -</Custom> -<AlternateForms> -<objsur guid="390d6b92-9796-4636-b528-170a1b6aa62a" t="o" /> -</AlternateForms> -<CitationForm> -<AUni ws="qvm-x-ach">*yarpa:.v1</AUni> -<AUni ws="qvm-x-acl">*yarpa:.v1</AUni> -<AUni ws="qvm-x-akh">*yarpa:.v1</AUni> -<AUni ws="qvm-x-akl">*yarpa:.v1</AUni> -<AUni ws="qvm-x-ame">*yarpa:.v1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.757" /> -<DateModified val="2022-11-7 18:10:6.211" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a7f21528-35d2-49ec-9070-a385dd45427e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yarpa:.v1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="19ab5cf1-1864-4db0-94a6-3ed04ddf2ef7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b76c1d77-e3dc-4a8b-9cf7-6fb696740bed" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yarpa:.v1 
\entryTyp root 
\gENG remember 
\gSPN recordar 
\e *yarpa:.v1 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach yarpa foreshortened 
\ach yarpa: 
\akh yarpa foreshortened 
\akh yarpa: 
\acl yarpa foreshortened 
\acl yarpa: 
\akl yarpa foreshortened 
\akl yarpa: 
\ame yarpa foreshortened 
\ame yarpa:</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f48e6338-dde3-4d6a-85d1-90bc470293f2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ticra:ri; ticra:ra</AUni> -<AUni ws="qvm-x-acl">ticra:ri; ticra:re; ticra:ra</AUni> -<AUni ws="qvm-x-akh">tikra:ri; tikra:ra</AUni> -<AUni ws="qvm-x-akl">tikra:ri; tikra:re; tikra:ra</AUni> -<AUni ws="qvm-x-ame">tikra:ri; tikra:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tikra:rI</AUni> -<AUni ws="qvm-x-acl">*tikra:rI</AUni> -<AUni ws="qvm-x-akh">*tikra:rI</AUni> -<AUni ws="qvm-x-akl">*tikra:rI</AUni> -<AUni ws="qvm-x-ame">*tikra:rI</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.896" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0e6669bc-cd97-43df-b078-0c28632602b2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tikra:rI</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6e12d4b0-0920-41a8-8fc4-9f2d6644387c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="10fdd681-b6ff-4fbb-9ac1-a00ca5f3c278" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tikra:rI 
\entryTyp root 
\gENG 
\gSPN 
\e *tikra:rI 
\c V1 
\mp PMlowered 
\ach ticra:ri 
\ach ticra:ra morphlowered 
\akh tikra:ri 
\akh tikra:ra morphlowered 
\acl ticra:ri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ticra:re +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ticra:ra morphlowered 
\akl tikra:ri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tikra:re +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tikra:ra morphlowered 
\ame tikra:ri 
\ame tikra:ra morphlowered 
\mp +FinalI</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="f48f27dd-0d49-4206-9f38-853d48273806" ownerguid="01d33cfd-73ef-49be-9d53-afbe43b0d724"> -<Form> -<AUni ws="qvm-x-ach">rëjas</AUni> -<AUni ws="qvm-x-acl">rëjas</AUni> -<AUni ws="qvm-x-akh">rëjas</AUni> -<AUni ws="qvm-x-akl">rëjas</AUni> -<AUni ws="qvm-x-ame">rëjas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f4907f4c-ef9b-4fde-a2ff-c6b4ebc1334b" ownerguid="d7da5318-dccf-477f-967d-1e3f6a421860"> -<ExampleWords> -<AUni ws="en">chicken coop, coop, henhouse, roost</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) Where are chickens kept?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f491233f-fae4-49dc-a79d-2cb29e71afad"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">adulteriu; adulterio</AUni> -<AUni ws="qvm-x-acl">adulteriu; adulteriu; adulterio</AUni> -<AUni ws="qvm-x-akh">adulteriu; adulterio</AUni> -<AUni ws="qvm-x-akl">adulteriu; adulteriu; adulterio</AUni> -<AUni ws="qvm-x-ame">adulteriu; adulterio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+adulterio</AUni> -<AUni ws="qvm-x-acl">+adulterio</AUni> -<AUni ws="qvm-x-akh">+adulterio</AUni> -<AUni ws="qvm-x-akl">+adulterio</AUni> -<AUni ws="qvm-x-ame">+adulterio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.649" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="10af319e-d38a-4443-869a-c3280dc0c456" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+adulterio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="62bf28ed-dafe-4fc1-875c-6759345bc10a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="07ecbe41-829f-4986-8ab0-7d060ffd327f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +adulterio 
\entryTyp root 
\gENG adultery 
\gSPN adulterio 
\e +adulterio 
\c N0 
\ach adulteriu / ~_# 
\ach adulterio / _# 
\akh adulteriu / ~_# 
\akh adulterio / _# 
\acl adulteriu / ~_# 
\acl adulteriu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl adulterio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl adulteriu / ~_# 
\akl adulteriu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl adulterio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame adulteriu / ~_# 
\ame adulterio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f49a886b-6e00-4d39-bbdb-a8597049d9a8" ownerguid="560b3b04-316e-4326-b298-621a7b0a5fe9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="f49a88a1-2500-44ea-84e6-91cee021dfad" ownerguid="a6329e15-8524-40df-93b7-5832720bb0b8"> -<Form> -<AUni ws="qvm-x-ach">cáncer; cancer</AUni> -<AUni ws="qvm-x-acl">cáncer; cancer</AUni> -<AUni ws="qvm-x-akh">cáncer; cancer</AUni> -<AUni ws="qvm-x-akl">cáncer; cancer</AUni> -<AUni ws="qvm-x-ame">cáncer; cancer</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f49b51af-eea9-4258-ac46-79f044dfc46a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chalpa</AUni> -<AUni ws="qvm-x-acl">chalpa</AUni> -<AUni ws="qvm-x-akh">chalpa</AUni> -<AUni ws="qvm-x-akl">chalpa</AUni> -<AUni ws="qvm-x-ame">chalpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*challpa</AUni> -<AUni ws="qvm-x-acl">*challpa</AUni> -<AUni ws="qvm-x-akh">*challpa</AUni> -<AUni ws="qvm-x-akl">*challpa</AUni> -<AUni ws="qvm-x-ame">*challpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.274" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c8c841aa-e928-44ca-8a12-0ba8f198e37f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*challpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9dd0c5ca-6e76-4b1e-bc23-2fe7acce695f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="baa9b98b-7c7c-44b5-9c31-cb2e1413919c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *challpa 
\entryTyp root 
\gENG 
\gSPN alfombra? 
\e *challpa 
\c N0 
\ach chalpa 
\akh chalpa 
\acl chalpa 
\akl chalpa 
\ame chalpa 
\i EZK 27.20 Dedánpita shamogcunanami silla jananman churananpag cuyaylapag chalpata ranticushog canqui.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f49b582e-e616-4541-924b-8f90b8ba608e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">incha</AUni> -<AUni ws="qvm-x-acl">incha</AUni> -<AUni ws="qvm-x-akh">incha</AUni> -<AUni ws="qvm-x-akl">incha</AUni> -<AUni ws="qvm-x-ame">incha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*intra.v</AUni> -<AUni ws="qvm-x-acl">*intra.v</AUni> -<AUni ws="qvm-x-akh">*intra.v</AUni> -<AUni ws="qvm-x-akl">*intra.v</AUni> -<AUni ws="qvm-x-ame">*intra.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.832" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="55f37333-0feb-4cb2-af63-45fbbcd7d275" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*intra.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="45088671-2128-4751-9522-a37a31dc5c63" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4ec8917b-9195-4a01-b7e2-b0f5633080ca" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *intra.v 
\entryTyp root 
\gENG be.diapered 
\gSPN tener.pañales 
\e *intra.v 
\c V2 
\ach incha 
\akh incha 
\acl incha 
\akl incha 
\ame incha</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f49f41e7-6d19-4288-a7a7-6da95f152630" ownerguid="3cbc6885-f099-454f-a0c3-ebbb708e04f6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="a7fb657f-bc40-40e9-b16b-e8c0d01b1c1d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="f4a143dc-621c-4892-9d82-d385c24fa794"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsapu</AUni> -<AUni ws="qvm-x-acl">tsapu; tsapo</AUni> -<AUni ws="qvm-x-akh">tsapu</AUni> -<AUni ws="qvm-x-akl">tsapu; tsapo</AUni> -<AUni ws="qvm-x-ame">tsapu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chapu.v1</AUni> -<AUni ws="qvm-x-acl">*chapu.v1</AUni> -<AUni ws="qvm-x-akh">*chapu.v1</AUni> -<AUni ws="qvm-x-akl">*chapu.v1</AUni> -<AUni ws="qvm-x-ame">*chapu.v1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.284" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="59452e6d-8f35-45a0-aa1a-8fb072d63cc5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chapu.v1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cb26cf49-42dc-4379-81ac-dd6c1f9bb6be" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d147de1b-1f4c-426f-a65b-f26ff946039b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chapu.v1 
\entryTyp root 
\gENG add.flour 
\gSPN echar.harina 
\e *chapu.v1 
\c V1 
\ach tsapu 
\akh tsapu 
\acl tsapu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tsapo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsapu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsapo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsapu 
\i Gen 18.6 Ishcay chunca (20) kïluta mas alinnin harinatapita jucla tsapurcur tantata ruramuy.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f4a55c88-3300-46d1-89be-0ef20996c836" ownerguid="9451e323-1237-45b4-8277-6f7089e5a0ec"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="f4a6a548-9b7e-4a73-9522-5c4b6adaeecc" ownerguid="396e6652-60e2-4582-b570-59c624dfcf6e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Lev 7.13,14 Ama micapäcunquitsu tucuy casta ancacunata, tucuy casta wisculcunata, tucuy casta halconcunata y quilicsatapis,</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="f4a86270-dde1-4f65-9e21-7130e8b6b46e" ownerguid="96b1e8c9-fa1d-4704-bfdc-6c9f79b24241"> -<Form> -<AUni ws="qvm-x-ach">micha; michä</AUni> -<AUni ws="qvm-x-acl">micha; michä</AUni> -<AUni ws="qvm-x-akh">micha; michä</AUni> -<AUni ws="qvm-x-akl">micha; michä</AUni> -<AUni ws="qvm-x-ame">micha; michä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f4a99aec-0ddc-440a-a88b-c19d2f74334b" ownerguid="e080687b-0900-4dd0-9677-e3aaa3eae641"> -<ExampleWords> -<AUni ws="en">explanation, account, instructions, directions</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to what you say when you explain something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f4aa9013-6ff2-43af-8b86-98fb80591271"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">nunca</AUni> -<AUni ws="qvm-x-acl">nunca</AUni> -<AUni ws="qvm-x-akh">nunca</AUni> -<AUni ws="qvm-x-akl">nunca</AUni> -<AUni ws="qvm-x-ame">nunca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+nunca.1</AUni> -<AUni ws="qvm-x-acl">+nunca.1</AUni> -<AUni ws="qvm-x-akh">+nunca.1</AUni> -<AUni ws="qvm-x-akl">+nunca.1</AUni> -<AUni ws="qvm-x-ame">+nunca.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.578" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a42e883f-d50c-4b90-80b2-579c4f395d7d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+nunca.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9e64b1e7-927f-4ba6-99a3-c53fb9e88806" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4c29f337-f7d8-4ea5-abdb-b2c449ec651e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +nunca.1 
\entryTyp root 
\gENG never 
\gSPN nunca 
\e +nunca.1 
\c R0 
\ach nunca 
\akh nunca 
\acl nunca 
\akl nunca 
\ame nunca</Run> -</AStr> -</Custom> -</rt> -<rt class="MoInflAffMsa" guid="f4af2584-9c15-43e4-b912-5e626cdaa68c" ownerguid="4dd9e1f0-4609-4c62-b4df-b82a35e5594e"> -<PartOfSpeech> -<objsur guid="a4fc78d6-7591-4fb3-8edd-82f10ae3739d" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="f9e1228b-4c5b-4e23-bd04-d513eddcbaea" t="r" /> -</Slots> -</rt> -<rt class="CmSemanticDomain" guid="f4b18e9c-b465-4763-ba79-d7eed2cebcfa" ownerguid="12fe5f6c-7f98-47ba-936a-bcd1065c2db3"> -<Abbreviation> -<AUni ws="en">7.2.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to moving in a sideways direction--the person is facing one direction, but moving toward their side.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Move sideways</AUni> -</Name> -<Questions> -<objsur guid="9d3e057c-b83d-45a4-b242-4fbbf9b9d80c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiWordform" guid="f4b43a4b-dfc0-4733-893c-4fb449d24074"> -<Analyses> -<objsur guid="1b8adb92-b5e5-4408-bf9c-2ff8c6454755" t="o" /> -</Analyses> -<Checksum val="663375155" /> -<Form> -<AUni ws="qvm-x-akh">kutikurqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="f4b61227-94a4-4290-acf3-8fbb83123933" ownerguid="684f9b1f-2d09-4caf-b20a-da64cd10841c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="2d1a69ec-e6bd-45d4-a43f-95cf01ced86d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f4b6763f-643b-40e5-b007-69e69e89010e" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<ExampleWords> -<AUni ws="en">step, footstep, pace</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to a single step?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="f4b77866-c607-43f0-b816-95459c269525" ownerguid="c9aee4df-ac3e-4159-bd1a-060db1a5f070"> -<Abbreviation> -<AUni ws="en">3.5.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.174" /> -<DateModified val="2022-9-23 16:55:8.174" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to foolish talk--something someone says that other people think is silly or stupid.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33N' Foolish Talk</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Foolish talk</AUni> -</Name> -<Questions> -<objsur guid="fc423853-ec2e-4c06-8039-5daefdae7166" t="o" /> -<objsur guid="81cec056-0c32-474e-bd7e-ac141cdba4ec" t="o" /> -<objsur guid="0e41c96b-c9b8-48ef-aa1f-b0ca83f5d2f1" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="59a95939-44d7-4396-9ef7-3a80c17e9fb1" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoDerivAffMsa" guid="f4b810ee-56db-4358-ad11-92d7676bd9e4" ownerguid="4443080b-3ed8-4acc-bc77-35377eb52294"> -<FromPartOfSpeech> -<objsur guid="07455e91-118a-4d7d-848c-39bedd355a3d" t="r" /> -</FromPartOfSpeech> -<ToPartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</ToPartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="f4ba5fd3-6c34-4a57-b691-18ef2517887a" ownerguid="5b7de51a-a16a-459e-8d2f-876f761ee7e0"> -<Form> -<AUni ws="qvm-x-ach">jagru</AUni> -<AUni ws="qvm-x-acl">jagru; jagru; jagro</AUni> -<AUni ws="qvm-x-akh">jaqru</AUni> -<AUni ws="qvm-x-akl">jaqru; jaqru; jaqro</AUni> -<AUni ws="qvm-x-ame">haqru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f4bab397-7d89-4721-9f9f-0c835eaae968" ownerguid="37dda99b-483f-41dc-aa75-fd02c28bdb9d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="f4c119e0-3463-4ddc-9c00-251c5f579c78" ownerguid="97b72009-1a4d-44d7-ab89-419600c00f19"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="f4c212d6-5c99-4916-9e2c-ad885b73e473" ownerguid="78ee36f3-ec9d-454d-ae94-067fc167287d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f4c22f8c-83e4-487a-8d87-1dbb7fc09d77" ownerguid="bdaecf2f-d0fa-49f7-891e-bcb0a31ae630"> -<ExampleWords> -<AUni ws="en">sequel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a book or film that comes after another one?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f4c498a4-40d2-4d71-b802-79f10b52792f" ownerguid="a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f"> -<ExampleWords> -<AUni ws="en">seeing, optic, optical, visual</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe something that has to do with seeing?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f4c535ac-999c-41f3-832f-60cbae54910b" ownerguid="aa8203e4-ecff-4f6d-b9b6-eda8c10f968b"> -<Form> -<AUni ws="qvm-x-ach">yorag</AUni> -<AUni ws="qvm-x-acl">yorag</AUni> -<AUni ws="qvm-x-akh">yoraq</AUni> -<AUni ws="qvm-x-akl">yoraq</AUni> -<AUni ws="qvm-x-ame">yuraq</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f4c5396e-c11b-4820-a424-d640706c1cac" ownerguid="77b4d6c1-87bf-4839-b4be-6a45119b700a"> -<ExampleWords> -<AUni ws="en">question, inquiry, interrogation, interview</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to what is said?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f4c6ae83-a0aa-4c67-acae-52e490a2384a" ownerguid="b43fae8e-6b19-42ed-98cd-d363174b9cf8"> -<ExampleWords> -<AUni ws="en">shrink, stunt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making something small?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f4cc478b-3a8d-4581-b432-708d00f79374" ownerguid="86c8bff0-cf2e-4823-a850-9fde7ac0b5d1"> -<Form> -<AUni ws="qvm-x-ach">anchu; ancho</AUni> -<AUni ws="qvm-x-acl">anchu; anchu; ancho</AUni> -<AUni ws="qvm-x-akh">anchu; ancho</AUni> -<AUni ws="qvm-x-akl">anchu; anchu; ancho</AUni> -<AUni ws="qvm-x-ame">anchu; ancho</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f4ccbe7d-dbcb-409c-beee-1a3e9648fb7f" ownerguid="206a3c27-7631-461e-9efe-2fa790455c7c"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="f4cdc4a0-bb70-4404-8c01-79b0ac4b765d" ownerguid="d14af1ba-04d0-4edf-ad39-35c80a3748c1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.awake</AUni> -<AUni ws="es">ser.despierto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4823269d-2b7b-4393-9f35-4c7dbe7fa94a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f4cf3eaf-4c46-4994-9b3d-e23348e5fadf" ownerguid="c8d94c8f-db0b-4016-bdd2-e41a2eae4288"> -<ExampleWords> -<AUni ws="en">region, land, territory, territorial</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a region or a country?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f4d1b0e7-0b9d-4a34-b19d-48efe3aa5c47" ownerguid="077fe92a-afbc-4183-bec3-bfa8d83a2ba2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoInflAffMsa" guid="f4d20bdf-75f8-4c69-afe3-f6617be92a6e" ownerguid="2b370eb5-3a3e-42fc-8753-fd2ad3dafa09"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="6b5fd694-545b-4dac-8fa7-cbce40f8838e" t="r" /> -</Slots> -</rt> -<rt class="CmDomainQ" guid="f4d3192e-4a60-4c6d-83f7-29630ebc07b7" ownerguid="d80360f9-7319-40a7-a2bc-fd8718711ba4"> -<ExampleWords> -<AUni ws="en">antecedent, precedent, precedence, the one before</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to something that happened before?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f4da626c-2e02-4044-958a-1488e7408cb6" ownerguid="3393b3b2-b324-408d-9c59-057a0de9c3bd"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John <tried> to bake bread.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">try, attempt, make an attempt, experiment, test, make a stab at it, give it a go, try it out, see if it works, make an effort, aim to do something, assay, endeavor, essay, seek to do something, strain, struggle, undertake, venture, give it a whirl, have a try, try and do something, see if you can do something</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to trying to do something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f4dd3e1b-dbb7-4634-9f42-c612e1872b28"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">religión; religion</AUni> -<AUni ws="qvm-x-acl">religión; religion</AUni> -<AUni ws="qvm-x-akh">religión; religion</AUni> -<AUni ws="qvm-x-akl">religión; religion</AUni> -<AUni ws="qvm-x-ame">religión; religion</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+religión</AUni> -<AUni ws="qvm-x-acl">+religión</AUni> -<AUni ws="qvm-x-akh">+religión</AUni> -<AUni ws="qvm-x-akl">+religión</AUni> -<AUni ws="qvm-x-ame">+religión</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.328" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="107c5bbf-edd5-4d1b-a8d1-4c65d9ca0d3c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+religión</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="430c4788-00a9-4d2f-ac2a-2e3793462851" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="76140434-5d1b-406b-8a71-0559ad2577b2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +religión 
\entryTyp root 
\gENG religion 
\gSPN religion 
\e +religión 
\c N0 
\mp +FinalC 
\ach religión / _# 
\ach religion / ~_# 
\akh religión / _# 
\akh religion / ~_# 
\acl religión / _# 
\acl religion / ~_# 
\akl religión / _# 
\akl religion / ~_# 
\ame religión / _# 
\ame religion / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="f4e0760a-ce75-461f-8de3-08dc167c70ff" ownerguid="592c0a6f-2e24-4d4b-80e7-bace75879ff3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">g</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">g</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">q</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">q</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">q</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7feef4b7-a285-4201-a3a4-057f77618b78" t="r" /> -</Morph> -<Msa> -<objsur guid="964f8962-17d5-4738-8902-97236137c419" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="f4e125fc-9c1d-4936-a2fd-4f6f7b1f41bd" ownerguid="1f608e18-958e-4bb3-a977-04879fb5acd5"> -<ExampleWords> -<AUni ws="en">chicken, turkey</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What types of birds are eaten?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f4e1d6a8-00dc-42c9-8886-bf5ac736547e" ownerguid="76a4a286-1c8a-4c4a-9eaf-dca040be574a"> -<ExampleWords> -<AUni ws="en">hero, heroine, daredevil</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a person who has courage?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f4e2eac1-1357-4967-8e94-b7a7807daae6" ownerguid="0fef044a-c822-450d-b54a-eac8621e50c2"> -<ExampleWords> -<AUni ws="en">wooden</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something made of wood?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f4e34394-ff52-4675-aa7b-feeaca45934e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">vidriu; vidrio</AUni> -<AUni ws="qvm-x-acl">vidriu; vidriu; vidrio</AUni> -<AUni ws="qvm-x-akh">vidriu; vidrio</AUni> -<AUni ws="qvm-x-akl">vidriu; vidriu; vidrio</AUni> -<AUni ws="qvm-x-ame">vidriu; vidrio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vidrio</AUni> -<AUni ws="qvm-x-acl">+vidrio</AUni> -<AUni ws="qvm-x-akh">+vidrio</AUni> -<AUni ws="qvm-x-akl">+vidrio</AUni> -<AUni ws="qvm-x-ame">+vidrio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.394" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d9207266-0160-4639-9189-24cf2c826fbd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vidrio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b802bd6d-b05a-4c74-b73c-36370b14a854" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5e867d46-1499-4a2e-a6d0-be4e561e632d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vidrio 
\entryTyp root 
\gENG glass 
\gSPN vidrio 
\e +vidrio 
\c N0 
\ach vidriu / ~_# 
\ach vidrio / _# 
\akh vidriu / ~_# 
\akh vidrio / _# 
\acl vidriu / ~_# 
\acl vidriu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl vidrio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl vidriu / ~_# 
\akl vidriu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl vidrio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame vidriu / ~_# 
\ame vidrio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="f4e533e6-32bb-4456-b64d-f42ef8a469ad" ownerguid="c5dfc0a3-98ab-4b09-ab50-3300f85df6db"> -<Form> -<AUni ws="qvm-x-ach">tsicancaray</AUni> -<AUni ws="qvm-x-acl">tsicancaray</AUni> -<AUni ws="qvm-x-akh">tsikankaray</AUni> -<AUni ws="qvm-x-akl">tsikankaray</AUni> -<AUni ws="qvm-x-ame">tsikankaray</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f4e558bf-f318-4518-b578-fd54e4db1786"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cajón; cajon</AUni> -<AUni ws="qvm-x-acl">cajón; cajon</AUni> -<AUni ws="qvm-x-akh">cajón; cajon</AUni> -<AUni ws="qvm-x-akl">cajón; cajon</AUni> -<AUni ws="qvm-x-ame">cajón; cajon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cajón</AUni> -<AUni ws="qvm-x-acl">+cajón</AUni> -<AUni ws="qvm-x-akh">+cajón</AUni> -<AUni ws="qvm-x-akl">+cajón</AUni> -<AUni ws="qvm-x-ame">+cajón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.11" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cc24bea4-21a9-4039-b7d1-cef9e1c6dee1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cajón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f652a77a-de85-4db4-81ad-b091ad641817" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5628b39a-362b-422c-84d0-3367d559df0a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cajón 
\entryTyp root 
\gENG box 
\gSPN cajón 
\e +cajón 
\c N0 
\mp +FinalC 
\ach cajón / _# 
\ach cajon / ~_# 
\akh cajón / _# 
\akh cajon / ~_# 
\acl cajón / _# 
\acl cajon / ~_# 
\akl cajón / _# 
\akl cajon / ~_# 
\ame cajón / _# 
\ame cajon / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f4e5c717-4636-4ee3-bb5e-9193358c0cf7" ownerguid="16cf2099-8e71-4c6c-ad42-1f5c7429f812"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">altitude</AUni> -<AUni ws="es">estancia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="79a21388-99fc-4689-89a2-33d69a7ce05a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="f4e655bc-6048-4f78-95b2-50cb1f6bd6b8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jabón; jabon</AUni> -<AUni ws="qvm-x-acl">jabón; jabon</AUni> -<AUni ws="qvm-x-akh">jabón; jabon</AUni> -<AUni ws="qvm-x-akl">jabón; jabon</AUni> -<AUni ws="qvm-x-ame">jabón; jabon</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+jabón</AUni> -<AUni ws="qvm-x-acl">+jabón</AUni> -<AUni ws="qvm-x-akh">+jabón</AUni> -<AUni ws="qvm-x-akl">+jabón</AUni> -<AUni ws="qvm-x-ame">+jabón</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.880" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b4902b9b-2883-4ad4-8af8-1940b630edd6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+jabón</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7c92d74b-568f-4301-a4c0-3714a1865c52" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0d9e8f34-9a28-479d-bcbb-560a7cb1ba91" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +jabón 
\entryTyp root 
\gENG soap 
\gSPN jabón 
\e +jabón 
\c N0 
\mp +FinalC 
\ach jabón / _# 
\ach jabon / ~_# 
\akh jabón / _# 
\akh jabon / ~_# 
\acl jabón / _# 
\acl jabon / ~_# 
\akl jabón / _# 
\akl jabon / ~_# 
\ame jabón / _# 
\ame jabon / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f4e8b8de-722e-456d-9763-ea7ce2946c44" ownerguid="8a7fdd75-01dc-4d40-84ff-fa0484da3abb"> -<ExampleWords> -<AUni ws="en">peaceful, non-violent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe someone who is not violent?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f4e9b10f-6b4d-48ee-a121-5d0c9cb5f0de" ownerguid="4cf28853-34b3-417b-8eee-8d5edcba2660"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">in.heat</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b20a059b-fbf2-4ca1-b62f-f7748417389f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="f4e9efa2-2437-49d3-9c01-cf7c7629196d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ancash</AUni> -<AUni ws="qvm-x-acl">ancash</AUni> -<AUni ws="qvm-x-akh">ankash</AUni> -<AUni ws="qvm-x-akl">ankash</AUni> -<AUni ws="qvm-x-ame">ankash</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ankash</AUni> -<AUni ws="qvm-x-acl">*ankash</AUni> -<AUni ws="qvm-x-akh">*ankash</AUni> -<AUni ws="qvm-x-akl">*ankash</AUni> -<AUni ws="qvm-x-ame">*ankash</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.780" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c729781d-d91b-4840-a12e-405211aea6a3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ankash</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8b24970c-3cfb-45ee-a426-ad5e19cb180e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="58e4c896-3599-4409-965f-4205ff02838e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ankash 
\entryTyp root 
\gENG be.light 
\gSPN liviano 
\e *ankash 
\c N0 
\mp +FinalC 
\ach ancash 
\akh ankash 
\acl ancash 
\akl ankash 
\ame ankash</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="f4ec8f2e-f89e-40c1-ae50-900927d20af6" ownerguid="721e2ee8-7ea5-4d17-94cc-d77d8e92bd27"> -<Abbreviation> -<AUni ws="en">4.3.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.235" /> -<DateModified val="2022-9-23 16:55:8.235" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being impolite.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Impolite</AUni> -</Name> -<Questions> -<objsur guid="ebbb13cc-bb9b-4073-9f6e-2b2ac1633003" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="f4ed1712-c072-4213-b89d-eb3a9be233b2" ownerguid="aa57936d-f8a9-4603-8c3d-27abccd13531"> -<Abbreviation> -<AUni ws="en">1.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is natural--something in the world around us, as opposed to something that has been made or changed by people.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>79B Natural, Spiritual</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Natural</AUni> -</Name> -<Questions> -<objsur guid="7ddfef2a-5fcf-4a73-8533-c3470accb659" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="7556a257-3703-40d3-91d3-c891fb250947" t="r" /> -<objsur guid="97f40359-f4e8-4545-9ba5-980b47487540" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="f4ed26b6-5462-4397-81c2-e0640c726176" ownerguid="cc61662d-05a0-436f-acce-46f55f62c75f"> -<Form> -<AUni ws="qvm-x-ach">abona</AUni> -<AUni ws="qvm-x-acl">abona</AUni> -<AUni ws="qvm-x-akh">abona</AUni> -<AUni ws="qvm-x-akl">abona</AUni> -<AUni ws="qvm-x-ame">abona</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="f4edd3f4-35c8-4eb1-b300-bc490a9455f6" ownerguid="4443080b-3ed8-4acc-bc77-35377eb52294"> -<Form> -<AUni ws="qvm-x-ach">̈du</AUni> -<AUni ws="qvm-x-acl">̈du</AUni> -<AUni ws="qvm-x-akh">̈du</AUni> -<AUni ws="qvm-x-akl">̈du</AUni> -<AUni ws="qvm-x-ame">̈du</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f4eedd50-153b-4e11-a513-27e6c45e5cca"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">alcayru</AUni> -<AUni ws="qvm-x-acl">alcayru; alcayru; alcayro</AUni> -<AUni ws="qvm-x-akh">alkayru</AUni> -<AUni ws="qvm-x-akl">alkayru; alkayru; alkayro</AUni> -<AUni ws="qvm-x-ame">alkayru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*alkayru</AUni> -<AUni ws="qvm-x-acl">*alkayru</AUni> -<AUni ws="qvm-x-akh">*alkayru</AUni> -<AUni ws="qvm-x-akl">*alkayru</AUni> -<AUni ws="qvm-x-ame">*alkayru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.709" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="493861c6-39c3-40e7-bef3-fd101434da28" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*alkayru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c7784bfa-35aa-430b-9af8-a5faac4edc37" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="414a3822-a42d-4bec-99d2-e0611ff0ed81" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *alkayru 
\entryTyp root 
\gENG 
\gSPN 
\e *alkayru 
\c N0 
\mp NeverMonophthongized 
\ach alcayru 
\akh alkayru 
\acl alcayru / _# 
\acl alcayru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl alcayro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl alkayru / _# 
\akl alkayru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl alkayro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame alkayru</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="f4efa9f2-7292-4c70-b8cd-e9a0d36904d5" ownerguid="9d896f02-c26a-49e1-a602-5f97ae3d2bc2"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="234915ac-ca4d-4582-91a7-3be549143ad9" t="r" /> -</Morph> -<Msa> -<objsur guid="21bf02e6-c1ea-47e8-87d4-1be18105c779" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="f4efeaf5-2519-40aa-99d8-baba2acc673f" ownerguid="b9a4ee1f-9ca3-4582-920a-c70d6682dca2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="22bf2c84-cfd5-40ed-b285-eede62c78388" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="2ac16dcc-03a0-4e14-a971-7e9be144f5f5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="f4f06e1e-8a5f-4663-b43b-b2e0c68a8980" ownerguid="987c6c27-3982-4ce5-9938-e578b61ebfe3"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f4f1c5ec-b343-411d-be17-7e099adbc5f4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cerve:za</AUni> -<AUni ws="qvm-x-acl">cerve:za</AUni> -<AUni ws="qvm-x-akh">cerve:za</AUni> -<AUni ws="qvm-x-akl">cerve:za</AUni> -<AUni ws="qvm-x-ame">cerve:za</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cerveza</AUni> -<AUni ws="qvm-x-acl">+cerveza</AUni> -<AUni ws="qvm-x-akh">+cerveza</AUni> -<AUni ws="qvm-x-akl">+cerveza</AUni> -<AUni ws="qvm-x-ame">+cerveza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.112" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d9a55050-165c-4189-98f6-122c9dd474ab" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cerveza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e0bc5d5d-e32a-42f5-8d87-ecdbcce39cff" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7dfd5797-8859-403b-a0ea-55a5394bd72a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cerveza 
\entryTyp root 
\gENG 
\gSPN 
\e +cerveza 
\c N0 
\ach cerve:za 
\akh cerve:za 
\acl cerve:za 
\akl cerve:za 
\ame cerve:za</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="f4f4c9bc-fcb5-446d-9371-f16bc9beecb7" ownerguid="219cb684-f18b-4821-9b20-a20f642dfbb5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">jinan</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">jinan</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">jinan</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">jinan</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">hinan</Run> -</AStr> -</Form> -<Morph> -<objsur guid="26ff3a9e-b547-46c0-bb68-d7fef95b93ba" t="r" /> -</Morph> -<Msa> -<objsur guid="5f4fb9ac-7ebb-466c-871d-2b500d0b6c4d" t="r" /> -</Msa> -<Sense> -<objsur guid="e685b0b0-8885-484b-b289-cc521ded291d" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="f4f87192-4abf-42a0-842d-900b74cb6684"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sacri</AUni> -<AUni ws="qvm-x-acl">sacri; sacre</AUni> -<AUni ws="qvm-x-akh">sakri</AUni> -<AUni ws="qvm-x-akl">sakri; sakre</AUni> -<AUni ws="qvm-x-ame">sakri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*sakri</AUni> -<AUni ws="qvm-x-acl">*sakri</AUni> -<AUni ws="qvm-x-akh">*sakri</AUni> -<AUni ws="qvm-x-akl">*sakri</AUni> -<AUni ws="qvm-x-ame">*sakri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.419" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="aa8585bd-04b0-4f6f-a7a2-e20bc4bd2c46" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*sakri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cf6729fc-716f-43c2-8a2a-ffd0b0c7ed0f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d590769c-bfa7-4ece-bed6-5a6296d8318a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *sakri 
\entryTyp root 
\gENG astutely 
\gSPN con.astucia 
\e *sakri 
\c V1 
\mp +FinalI 
\ach sacri 
\akh sakri 
\acl sacri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl sacre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sakri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sakre +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sakri</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="f4f99472-0b23-42b9-8b51-1d56fe24715b" ownerguid="35e61ec4-0542-4583-b5da-0aa5e31a35aa"> -<Abbreviation> -<AUni ws="en">2.6.3.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to multiple births--when a woman give birth to more than one baby at the same time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Multiple births</AUni> -</Name> -<Questions> -<objsur guid="849ef364-cd30-4e25-973d-e4e7faa0c4b1" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="f503145d-b71a-4044-a90e-333cff5db8bb" ownerguid="b2830b72-c642-484f-9485-24682aa11ed8"> -<ExampleWords> -<AUni ws="en">diviner, fortuneteller, astrologer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What is a person called who can divine secrets?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f5053b56-b6b7-47d3-8526-3900fe1f0f07" ownerguid="8acdd3de-23dc-4804-b133-6ab5fe55583f"> -<Form> -<AUni ws="qvm-x-ach">sira</AUni> -<AUni ws="qvm-x-acl">sira</AUni> -<AUni ws="qvm-x-akh">sira</AUni> -<AUni ws="qvm-x-akl">sira</AUni> -<AUni ws="qvm-x-ame">sira</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f5082009-b5ae-4a6d-949d-9b40fcb4d3a7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">po:cu</AUni> -<AUni ws="qvm-x-acl">po:cu; po:cu; po:co</AUni> -<AUni ws="qvm-x-akh">po:cu</AUni> -<AUni ws="qvm-x-akl">po:cu; po:cu; po:co</AUni> -<AUni ws="qvm-x-ame">po:cu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+poco</AUni> -<AUni ws="qvm-x-acl">+poco</AUni> -<AUni ws="qvm-x-akh">+poco</AUni> -<AUni ws="qvm-x-akl">+poco</AUni> -<AUni ws="qvm-x-ame">+poco</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.891" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0cf65772-5fbd-4bf1-bbe3-7f6b04048f60" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+poco</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="67eb8ff2-f44c-4879-ad5c-f7effc3ae11e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5c0d2408-c434-46e2-b5d8-793efd0552de" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +poco 
\entryTyp root 
\gENG little 
\gSPN poco 
\e +poco 
\c N0 
\ach po:cu 
\akh po:cu 
\acl po:cu / _# 
\acl po:cu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl po:co +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl po:cu / _# 
\akl po:cu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl po:co +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame po:cu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f50a5d07-69d2-4dd3-b57d-031a29974285" ownerguid="47288b53-a9c0-42d0-bf20-63419b4132bf"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="f50ba0f7-1847-42cf-85a4-65393a3d6131" ownerguid="f869a6c6-446c-4389-9e44-426ec5a3b530"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="ec0d9a2b-1621-419a-acb0-c54996ace973" t="o" /> -<objsur guid="3ff439c7-219d-4f2f-8e3f-8456b53a030f" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiMorphBundle" guid="f50da8b0-7e57-469a-90ff-456c88bd1ecb" ownerguid="89d7c6a6-8be7-4bfe-910b-56a1132456cc"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="f50deb9a-65c0-4cc0-8a1c-6b6a66375cd2" ownerguid="0f4113c9-0759-4a57-80c0-640b82663ffa"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="97d699ee-fd7d-4eaa-a2ec-21e6adaaea6a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="f511f5c1-7ce9-4ad5-a753-6f6902d7aca9" ownerguid="f37d803c-37b1-4641-8b10-6b566461d9f9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">marca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">marca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">marka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">marka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">marka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="efaff767-d6db-45ec-8ec0-666b57a06435" t="r" /> -</Morph> -<Msa> -<objsur guid="f87af9c0-e238-4649-8df0-ab17b19c3572" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="f5127d84-1119-44cb-b66a-9c44e6c370c6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">be:ta</AUni> -<AUni ws="qvm-x-acl">be:ta</AUni> -<AUni ws="qvm-x-akh">be:ta</AUni> -<AUni ws="qvm-x-akl">be:ta</AUni> -<AUni ws="qvm-x-ame">be:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+veta</AUni> -<AUni ws="qvm-x-acl">+veta</AUni> -<AUni ws="qvm-x-akh">+veta</AUni> -<AUni ws="qvm-x-akl">+veta</AUni> -<AUni ws="qvm-x-ame">+veta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.381" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0f0be1d9-19ca-48d6-a3e6-01ae3b5cd60c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+veta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f0913050-5157-4ebd-96ab-d792f9dc1ce3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0dc7aae5-4cd0-437b-a178-ed3d386c7207" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +veta 
\entryTyp root 
\gENG exhaustion 
\gSPN cansansia 
\e +veta 
\c N0 
\ach be:ta 
\akh be:ta 
\acl be:ta 
\akl be:ta 
\ame be:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="f5156cde-9735-4249-920d-597fb0a7a8e3" ownerguid="d60faf11-cc6e-48db-8a13-82f86d78ab00"> -<Abbreviation> -<AUni ws="en">7.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.557" /> -<DateModified val="2022-9-23 16:55:8.557" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to something breaking or wearing out, especially for things that people make and use.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Break, wear out</AUni> -</Name> -<Questions> -<objsur guid="e2d5c93a-dd73-4f55-a0d9-40572a1c2341" t="o" /> -<objsur guid="3d96fafa-1c1d-4615-91ac-a8bfd4cfb5c8" t="o" /> -<objsur guid="9bd36178-68fc-4c1d-a6f7-5bbd1db35316" t="o" /> -<objsur guid="d630d3be-559a-4592-b287-3ba2086a0a1f" t="o" /> -<objsur guid="916d94b5-7c27-41f2-9b54-303651169b01" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="eb00b4c2-5b87-4ef8-9548-800fc5c9b524" t="o" /> -<objsur guid="1a28d255-8f58-428c-9641-59f17f8b1e08" t="o" /> -<objsur guid="ca98bd7b-8711-41f6-86d0-5cd07b7bfe0d" t="o" /> -<objsur guid="41cac849-613d-4be4-a3bc-389412b7f653" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="f518e5fa-7656-4b9f-9442-fdbcf72c5482"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">to:ca</AUni> -<AUni ws="qvm-x-acl">to:ca</AUni> -<AUni ws="qvm-x-akh">to:ca</AUni> -<AUni ws="qvm-x-akl">to:ca</AUni> -<AUni ws="qvm-x-ame">to:ca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tocar.1</AUni> -<AUni ws="qvm-x-acl">+tocar.1</AUni> -<AUni ws="qvm-x-akh">+tocar.1</AUni> -<AUni ws="qvm-x-akl">+tocar.1</AUni> -<AUni ws="qvm-x-ame">+tocar.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.936" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="efeb5948-30ca-4c62-8084-c54928a85ae4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tocar.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e6049c07-418d-4d57-afa7-754207018596" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="277518d3-62dc-4328-99e4-3406fcbe494d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tocar.1 
\entryTyp root 
\gENG touch 
\gSPN tocar 
\e +tocar.1 
\c V2 
\ach to:ca 
\akh to:ca 
\acl to:ca 
\akl to:ca 
\ame to:ca</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="f51bcafa-e624-4555-b8f1-b5726d74734d" ownerguid="87bd0d45-8a94-41cb-9864-90d53a11a4b9"> -<Abbreviation> -<AUni ws="en">4.7.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a specific law or set of laws.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33G' Law, Regulation, Ordinance</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Laws</AUni> -</Name> -<OcmCodes> -<Uni>671 Legal Norms</Uni> -</OcmCodes> -<Questions> -<objsur guid="ae46217a-5867-453c-b435-5c1a3338ef96" t="o" /> -<objsur guid="224a6455-0c29-4617-b479-ca418f8416f5" t="o" /> -<objsur guid="f201f3c2-f32d-4706-937c-5a6ee2bbee55" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="f51ca22a-74f2-4055-8aaa-b883bf226af1" ownerguid="cd01db6c-8aa6-42d1-93ac-05e81a8be523"> -<ExampleWords> -<AUni ws="en">serving dish, serving platter, serving spoon, ladle, tureen, soup bowl, salad bowl, pot, common dish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What utensils are used to serve food?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="f51d335c-a490-40e6-b1bb-b5df8792ba3b"> -<Analyses> -<objsur guid="6f8d4578-3c91-47b5-a3c5-a3004e9f6e65" t="o" /> -</Analyses> -<Checksum val="-1275931469" /> -<Form> -<AUni ws="qvm-x-akh">rikatsipäkamashqanki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="f51d717e-f5bc-41b3-a243-ddee3bf1dd81" ownerguid="67d282f8-151d-429b-8183-6a7d2f5ac98d"> -<ExampleWords> -<AUni ws="en">introduce, lead into, bring up, raise, broach a subject</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to talking about something for the first time?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f521600e-5987-45cb-9077-0341386e80f3" ownerguid="76dce78c-855d-41e5-9867-8fdccae9465f"> -<Form> -<AUni ws="qvm-x-ach">gosu</AUni> -<AUni ws="qvm-x-acl">gosu; goso</AUni> -<AUni ws="qvm-x-akh">qosu</AUni> -<AUni ws="qvm-x-akl">qosu; qoso</AUni> -<AUni ws="qvm-x-ame">qusu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="f527da1e-d074-47e5-ab55-35d9106f617d" ownerguid="f12b8990-96e0-4f38-8395-52d4c360d4c7"> -<Form> -<AUni ws="qvm-x-ach">warmi</AUni> -<AUni ws="qvm-x-acl">warmi; warme</AUni> -<AUni ws="qvm-x-akh">warmi</AUni> -<AUni ws="qvm-x-akl">warmi; warme</AUni> -<AUni ws="qvm-x-ame">warmi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f529db3f-e740-4e0d-ab44-62d5fb4e1f43" ownerguid="f45f9c23-b6ae-4026-aa41-de4b6eab4ddc"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f52dfab4-7952-4c59-97ce-54a42da71565" ownerguid="fd9b8618-1f62-419b-85c3-365a12e85523"> -<ExampleWords> -<AUni ws="en">written agreement, peace accord, peace treaty</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a written document expressing agreement?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f52e08c0-435c-4dbe-ad80-845a3b04af64" ownerguid="27e74a51-5c7c-4462-a610-b9e1574dba20"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">BCM2</AUni> -<AUni ws="es">CNV2</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1fb682b6-7646-4105-a588-b94332dd1288" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="f5339155-f3a6-477f-bba3-ce29733b0d14" ownerguid="84f79788-dd5c-4ce6-808d-8f23d8c713c0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f535f392-5334-4369-b6b6-8e099819b630" ownerguid="4bf411b7-2b5b-4673-b116-0e6c31fbd08a"> -<ExampleWords> -<AUni ws="en">ray, beam, shaft, sunbeam, moonbeam</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a ray of light?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f536b94d-4e61-42d6-be20-72632aab9192" ownerguid="44d51316-1085-4051-a5b8-9f52bb62d819"> -<Form> -<AUni ws="qvm-x-ach">chucru</AUni> -<AUni ws="qvm-x-acl">chucru; chucru; chucro</AUni> -<AUni ws="qvm-x-akh">chukru</AUni> -<AUni ws="qvm-x-akl">chukru; chukru; chukro</AUni> -<AUni ws="qvm-x-ame">chukru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f5392cbc-1711-4006-bb66-d45d0fd8afd1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ucsi</AUni> -<AUni ws="qvm-x-acl">ucsi; ucse</AUni> -<AUni ws="qvm-x-akh">uksi</AUni> -<AUni ws="qvm-x-akl">uksi; ukse</AUni> -<AUni ws="qvm-x-ame">uksi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uksi</AUni> -<AUni ws="qvm-x-acl">*uksi</AUni> -<AUni ws="qvm-x-akh">*uksi</AUni> -<AUni ws="qvm-x-akl">*uksi</AUni> -<AUni ws="qvm-x-ame">*uksi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.208" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="65e7ebac-11b2-4e3a-b07e-309d3776a0d4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uksi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fcfa390a-8c79-401b-a2e0-b9ba5ddf9e66" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8a6e0508-98aa-4bf4-885c-d0c94518dde5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uksi 
\entryTyp root 
\gENG root 
\gSPN escarbar 
\e *uksi 
\c V2 
\mp +FinalI 
\ach ucsi 
\akh uksi 
\acl ucsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ucse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl uksi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ukse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame uksi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f53b00f8-9758-48ce-a16c-f6cc79e1a0b4" ownerguid="8a9b5484-eda8-4194-95ca-c2e76e83ae67"> -<ExampleWords> -<AUni ws="en">mortar, pestle, pound</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to pounding food in a mortar?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f53ce0f7-7cd5-452c-aec3-25654191e6d5" ownerguid="24bf0860-4b01-4495-add1-b473df5bc4df"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="f53ddbca-bc03-4407-99df-3a702c5d64d2" ownerguid="ccba702a-8b01-49e8-b007-0b7a3c3a49f5"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="f53e2d27-56bb-4811-ad1b-bd1fa865f86a" ownerguid="592c0a6f-2e24-4d4b-80e7-bace75879ff3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="LexEntry" guid="f53eda70-9618-400b-b728-ede65f970090"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gargash</AUni> -<AUni ws="qvm-x-acl">gargash</AUni> -<AUni ws="qvm-x-akh">qarqash</AUni> -<AUni ws="qvm-x-akl">qarqash</AUni> -<AUni ws="qvm-x-ame">qarqash</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qarqash</AUni> -<AUni ws="qvm-x-acl">*qarqash</AUni> -<AUni ws="qvm-x-akh">*qarqash</AUni> -<AUni ws="qvm-x-akl">*qarqash</AUni> -<AUni ws="qvm-x-ame">*qarqash</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.116" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0112d278-7750-4232-8478-588d768c4ac3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qarqash</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5c5641c8-5277-4b84-8871-d34f4e4163bd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9cd42dbd-a38d-444f-bae8-2a0b45fc1a74" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qarqash 
\entryTyp root 
\gENG spread 
\gSPN ancho 
\e *qarqash 
\c N0 
\mp +FinalC 
\ach gargash 
\akh qarqash 
\acl gargash 
\akl qarqash 
\ame qarqash</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f53efd82-fe8e-4a59-9e3b-e41450967713" ownerguid="59e8d53c-73a3-42ad-86a1-73dde75b6bb4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f545e3a3-5c07-42d5-8796-216271c338c5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">na:ni</AUni> -<AUni ws="qvm-x-acl">na:ni; na:ni; na:ne</AUni> -<AUni ws="qvm-x-akh">na:ni</AUni> -<AUni ws="qvm-x-akl">na:ni; na:ni; na:ne</AUni> -<AUni ws="qvm-x-ame">na:ni</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*na:ni</AUni> -<AUni ws="qvm-x-acl">*na:ni</AUni> -<AUni ws="qvm-x-akh">*na:ni</AUni> -<AUni ws="qvm-x-akl">*na:ni</AUni> -<AUni ws="qvm-x-ame">*na:ni</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.537" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c08325fe-9e40-4b8f-a07b-fc9e5201d768" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*na:ni</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b98fc44d-e310-467c-a840-40ba40fee4c4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ab6c0d81-9bbc-4d66-954d-b07f0045a004" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *na:ni 
\entryTyp root 
\gENG path 
\gSPN sendero 
\e *na:ni 
\c N0 
\mp +FinalI 
\ach na:ni 
\akh na:ni 
\acl na:ni / _# 
\acl na:ni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl na:ne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl na:ni / _# 
\akl na:ni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl na:ne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame na:ni</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f548905d-6330-4d40-94be-dc9e9627009d" ownerguid="85188748-1919-4210-a9e9-91171d9d6454"> -<ExampleWords> -<AUni ws="en">bony, finned, jawed, jawless, lobe-finned, poisonous, snouted</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe fish?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="f54b1ec2-c35a-42de-bc8d-86f6f60fe0af" ownerguid="f0472a32-1715-43c1-82e1-f901ee87bf68"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Num 11.5 Egiptuchöga grätismi micapäcog cantsi pescäduta.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiWordform" guid="f54f3a89-9f34-4c3f-80c9-92a1bec8f032"> -<Analyses> -<objsur guid="481d05f1-82d3-4ef6-931f-52182fab0eb5" t="o" /> -<objsur guid="ce665b46-d6e9-471c-8399-319fc346f025" t="o" /> -</Analyses> -<Checksum val="269765814" /> -<Form> -<AUni ws="qvm-x-akh">mikaman</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="f54fe8fe-92c6-4845-99ef-480a29db16c5" ownerguid="ea02bf34-a997-4b37-bb22-dd88f8e4e6b1"> -<Form> -<AUni ws="qvm-x-ach">salón; salon</AUni> -<AUni ws="qvm-x-acl">salón; salon</AUni> -<AUni ws="qvm-x-akh">salón; salon</AUni> -<AUni ws="qvm-x-akl">salón; salon</AUni> -<AUni ws="qvm-x-ame">salón; salon</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="f550a622-ced4-48ed-8e9c-3f73ade14cbd" ownerguid="ed898eea-b9c2-4cbe-aa72-abf64b226f4e"> -<Form> -<AUni ws="qvm-x-ach">región; region</AUni> -<AUni ws="qvm-x-acl">región; region</AUni> -<AUni ws="qvm-x-akh">región; region</AUni> -<AUni ws="qvm-x-akl">región; region</AUni> -<AUni ws="qvm-x-ame">región; region</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f550e0f1-b56f-42ed-9740-fe5c12020dd1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pesca:du</AUni> -<AUni ws="qvm-x-acl">pesca:du; pesca:du; pesca:do</AUni> -<AUni ws="qvm-x-akh">pesca:du</AUni> -<AUni ws="qvm-x-akl">pesca:du; pesca:du; pesca:do</AUni> -<AUni ws="qvm-x-ame">pesca:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pescado.n</AUni> -<AUni ws="qvm-x-acl">+pescado.n</AUni> -<AUni ws="qvm-x-akh">+pescado.n</AUni> -<AUni ws="qvm-x-akl">+pescado.n</AUni> -<AUni ws="qvm-x-ame">+pescado.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.810" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e2e0315e-f97c-45f8-9699-39442f71675b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pescado.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="606d947f-700b-4c60-81bb-fa1aaa1ba544" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a327eab9-d675-4a30-acde-37adf25942d3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pescado.n 
\entryTyp root 
\gENG fish 
\gSPN pescado 
\e +pescado.n 
\c N0 
\ach pesca:du 
\akh pesca:du 
\acl pesca:du / _# 
\acl pesca:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl pesca:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pesca:du / _# 
\akl pesca:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl pesca:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame pesca:du</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f553b9a9-c403-443e-b144-45033101e937"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">litsca; lichca</AUni> -<AUni ws="qvm-x-acl">litsca; lichca</AUni> -<AUni ws="qvm-x-akh">litska; lichka</AUni> -<AUni ws="qvm-x-akl">litska; lichka</AUni> -<AUni ws="qvm-x-ame">litska; lichka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llichka.n</AUni> -<AUni ws="qvm-x-acl">*llichka.n</AUni> -<AUni ws="qvm-x-akh">*llichka.n</AUni> -<AUni ws="qvm-x-akl">*llichka.n</AUni> -<AUni ws="qvm-x-ame">*llichka.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.194" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4996dac2-4472-4533-983d-23f6581288eb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llichka.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="624aa51e-46e9-4d8e-aa44-9a7b87d2ae93" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="142fe0b4-6773-4be6-8a96-fc740209baa2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llichka.n 
\entryTyp root 
\gENG fertilize 
\gSPN abonar 
\e *llichka.n 
\c N0 
\cm *** ch *** 
\ach litsca 
\ach lichca 
\cm *** kh *** 
\akh litska 
\akh lichka 
\cm *** cl *** 
\acl litsca 
\acl lichca 
\cm *** kl *** 
\akl litska 
\akl lichka 
\cm *** me *** 
\ame litska 
\ame lichka 
\i ZEP 1.17 Ayancunapis uywapa litscannog mashtaranga.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f554f52e-a76e-4526-9462-d586eb585a9a" ownerguid="5b5bcd42-09bb-4c2f-a2da-569cfa69b6ac"> -<ExampleWords> -<AUni ws="en">pay close attention, concentrate, concentration, give something your undivided attention</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to paying a lot of attention to something?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="f5567550-e3c9-4589-8f88-8159eadcd194" ownerguid="73a59333-134f-4a1d-aba7-e134bdefe059"> -<Abbreviation> -<AUni ws="en">4.3.9.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.243" /> -<DateModified val="2022-9-23 16:55:8.243" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to customs--a particular practice of a cultural group.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>41B Custom, Tradition</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Custom</AUni> -</Name> -<Questions> -<objsur guid="7c1b3425-4d61-4849-b88b-2204f46ea6f3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="f556d466-c94c-424a-b10c-1d21abd67f9c" ownerguid="a1ce19c4-d12c-46da-a718-6d03949b3db1"> -<ExampleWords> -<AUni ws="en">hunt (v), hunt (n), lay in wait, blind, decoy, animal call, bag an animal, strike to cause injury, strike hard, kill, flush an animal out of hiding, to suddenly come out of hiding, search, hide, capture, chase away, aim, miss target, shoot, hit target, nick</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to hunting animals?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f55a7ffe-cd41-4ad4-b27a-cf0c02cfd184" ownerguid="5bdb3c06-fbee-4f5f-991a-e2128f65bb86"> -<ExampleWords> -<AUni ws="en">have on, wear</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to having cosmetics on?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f55ce096-a06a-45a1-bd4e-35fc225d94a5" ownerguid="19ba7cf1-e7bb-41f2-a7d2-3c52fcc858df"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">puma</AUni> -<AUni ws="es">puma</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7c7f72da-cd54-40c7-a2e4-7c37674ee8fc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f55d679e-7191-453e-abf4-00352330770f" ownerguid="ca91e41a-81c3-4c96-87e6-f67477fcd686"> -<ExampleWords> -<AUni ws="en">care for, take care of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to caring for a child's needs?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f56200c9-02b6-4096-8a4b-15314c1fb0dc" ownerguid="c345f278-91ff-463d-b9a6-8abac8a267eb"> -<ExampleWords> -<AUni ws="en">(no words in English)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to small plants?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="f5642647-9b9c-499b-a66e-349593c863f1" ownerguid="1e9a0881-f715-4057-9af8-251cb8eec9da"> -<Abbreviation> -<AUni ws="en">3.5.1.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.154" /> -<DateModified val="2022-9-23 16:55:8.154" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being silent--to say nothing for some time.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33H Keep Silent</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Say nothing</AUni> -</Name> -<Questions> -<objsur guid="635549d4-61ae-459b-90e4-0c6894082bdd" t="o" /> -<objsur guid="9a69ca18-8039-418a-b983-a6863021bd35" t="o" /> -<objsur guid="ee909350-1120-4dcc-9e0b-ee45d7ffcd77" t="o" /> -<objsur guid="37ea66e1-0c91-4667-af86-270256ea6e9a" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="d853597b-f3ed-470b-b6dd-8fe93b8e43eb" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="f5657f68-f31b-47d9-9773-4c8ce9ab09ee" ownerguid="8db70ac8-2d6c-44b4-8d6b-89a11092f684"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="f56a2511-10cc-4829-940d-49051429bfba" ownerguid="756728a8-9eb8-4329-aee2-d6a3d64585f2"> -<Abbreviation> -<AUni ws="en">1.2.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.947" /> -<DateModified val="2022-9-23 16:55:7.947" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to liquids.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Liquid</AUni> -</Name> -<Questions> -<objsur guid="d130a5b7-422e-4218-ae9f-0c87a2401da5" t="o" /> -<objsur guid="00c12a1d-8705-4049-8a63-e6ac8d3ccbe9" t="o" /> -<objsur guid="66f5accf-4f03-498e-8144-75c6f66343fb" t="o" /> -<objsur guid="8d5e7a33-e08c-44a6-8b98-294d25a15458" t="o" /> -<objsur guid="90b74036-f315-4b02-8f37-a53ae0cfbcf3" t="o" /> -<objsur guid="89af1673-3066-44f4-bdc7-d386eb2768a0" t="o" /> -<objsur guid="a8866695-3ea9-4b52-b950-eeb695f0c69d" t="o" /> -<objsur guid="e4e3f9c9-6a19-4ecf-bf64-0a16a12470cb" t="o" /> -<objsur guid="33cd3765-f1aa-4ee4-aeaa-f8493b7d589c" t="o" /> -<objsur guid="1198b00e-959b-49dc-a4b2-4ca4e9b1cad2" t="o" /> -<objsur guid="b96d1b20-888c-445e-b88c-9ae6741fafac" t="o" /> -<objsur guid="d08e2699-4da3-4a71-ae1b-2d472667e03a" t="o" /> -<objsur guid="570a68db-09ff-4c42-9efb-e2b8e6377925" t="o" /> -<objsur guid="e346edff-5a5d-478e-96e3-dac08d23537c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="f56a80a9-a603-405e-abf0-1556b48f3268"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gancha:na</AUni> -<AUni ws="qvm-x-acl">gancha:na</AUni> -<AUni ws="qvm-x-akh">qancha:na</AUni> -<AUni ws="qvm-x-akl">qancha:na</AUni> -<AUni ws="qvm-x-ame">qancha:na</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qantra:na</AUni> -<AUni ws="qvm-x-acl">*qantra:na</AUni> -<AUni ws="qvm-x-akh">*qantra:na</AUni> -<AUni ws="qvm-x-akl">*qantra:na</AUni> -<AUni ws="qvm-x-ame">*qantra:na</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.840" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="64ae5c0e-42d9-4828-abd5-3979eb039c23" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qantra:na</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="57fd036e-1744-4b5f-869f-0ebec2986da2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="82cb7d4b-3b65-42ca-82b3-750929a613cc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qantra:na 
\entryTyp root 
\gENG stingy 
\gSPN 
\e *qantra:na 
\c N0 
\ach gancha:na 
\akh qancha:na 
\acl gancha:na 
\akl qancha:na 
\ame qancha:na</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="f57531c7-e54f-45e7-8c64-7ee4a56afde5" ownerguid="fe542788-f41e-4106-95b3-7257792896b7"> -<Form> -<AUni ws="qvm-x-ach">felicita</AUni> -<AUni ws="qvm-x-acl">felicita</AUni> -<AUni ws="qvm-x-akh">felicita</AUni> -<AUni ws="qvm-x-akl">felicita</AUni> -<AUni ws="qvm-x-ame">felicita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f576fbe1-2a44-4111-a8fc-2bc38942f348" ownerguid="167a5bae-f06f-424c-bfcb-ec547a076c8d"> -<ExampleWords> -<AUni ws="en">herdsman, herder, cowboy, shepherd</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who tends animals?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f57b5809-dd8b-4a07-beba-a8013db4a9f8" ownerguid="f0fdbdfa-094e-4bec-ae19-af23d2c02ed6"> -<ExampleWords> -<AUni ws="en">be content, be happy with your lot, feel satisfied</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling good about your present conditions?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f57efd05-f9ba-4005-8508-c6d985f3e05e" ownerguid="512f307e-b549-4028-a099-9efde1e250f1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="f580ac93-a490-4819-968d-2632b025e309" ownerguid="7141bc81-88db-46c0-8cfd-90a5b466f8b3"> -<Form> -<AUni ws="qvm-x-ach">traiciona</AUni> -<AUni ws="qvm-x-acl">traiciona</AUni> -<AUni ws="qvm-x-akh">traiciona</AUni> -<AUni ws="qvm-x-akl">traiciona</AUni> -<AUni ws="qvm-x-ame">traiciona</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f585fc51-f0aa-4df6-9b3a-bf975be1a8b3" ownerguid="965c6a0b-3034-4e2f-a00b-ed2eb3119a5d"> -<Question> -<AUni ws="en">(9) immediate: the action of the command is to be carried out immediately.</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f586bdd4-75ad-4064-a244-d247a2fe34a2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ni:</AUni> -<AUni ws="qvm-x-acl">ne:</AUni> -<AUni ws="qvm-x-akh">ni:</AUni> -<AUni ws="qvm-x-akl">ne:</AUni> -<AUni ws="qvm-x-ame">ni:</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.599" /> -<DateModified val="2022-10-16 15:20:47.171" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="956db2f0-3079-4d61-8616-c23468e65a3f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">1Pni</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6a999fb4-9b50-420c-9fb2-46dc7f876785" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="acae6f77-7d40-4690-8e71-33ff2df22af4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx 1Pni 
\entryTyp suffix 
\gENG 1Pni 
\gSPN 1Pni 
\e 1Pni 
\c N0/N0 R1/R0 N1/N0 
\o 070 
\mp NeverForeshortened 
\ach ni: 
\akh ni: 
\acl ne: 
\akl ne: 
\ame ni: 
\mp +FinalC 
\mp +FinalLength 
\mcc 1Pni / *uqlla _ 
\i 1KI 3.21 Tsauraga riccharcamur chuchunäpäga wanushga wamralana oglanëcho caycashga.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f588a915-ba11-4d1c-af51-b2446bb5eda8" ownerguid="9a25af4b-3063-4f36-8a44-c6732e91a2b5" /> -<rt class="CmDomainQ" guid="f58b5619-94f4-41f6-b59a-38ae9f5b3b56" ownerguid="20baa5e7-4f02-4782-a292-c6281d7b5f3a"> -<ExampleWords> -<AUni ws="en">repel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to causing something to move away from you without touching it?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f58d73f2-d0d0-4054-8c54-e50498f55931" ownerguid="8fab00a3-f851-4d10-852c-6cc38f263cb5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">countryside</AUni> -<AUni ws="es">campo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="91a4c8a5-477a-4b49-87dc-1e91727ae38a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f58e16c5-e0dc-4c0c-9f70-1d502484e42f" ownerguid="bced94e1-87fb-46b3-92f7-6b57843d610c"> -<Form> -<AUni ws="qvm-x-ach">arreglu; arreglo</AUni> -<AUni ws="qvm-x-acl">arreglu; arreglu; arreglo</AUni> -<AUni ws="qvm-x-akh">arreglu; arreglo</AUni> -<AUni ws="qvm-x-akl">arreglu; arreglu; arreglo</AUni> -<AUni ws="qvm-x-ame">arreglu; arreglo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="f58e1bfe-915b-4213-a623-971ca50c0ba4" ownerguid="9613303e-9302-4793-9c06-cc44cff4b0ae"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">gargu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">gargu; gargo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qarqu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qarqu; qarqo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qarqu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2232ab14-ff9d-4403-b432-21884e84369c" t="r" /> -</Morph> -<Msa> -<objsur guid="d2d2bfb6-5ff7-4b48-831a-c27cb6b0f51e" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="f5902b3a-2846-4456-9561-1c21ecd48b66" ownerguid="5a8d99f2-b4ce-49ad-aa45-611951fa1022"> -<Form> -<AUni ws="qvm-x-ach">trïbu</AUni> -<AUni ws="qvm-x-acl">trïbu; trïbu; trïbo</AUni> -<AUni ws="qvm-x-akh">trïbu</AUni> -<AUni ws="qvm-x-akl">trïbu; trïbu; trïbo</AUni> -<AUni ws="qvm-x-ame">trïbu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f59034ad-345b-4958-b94e-05dd822aee30"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">estro:fa</AUni> -<AUni ws="qvm-x-acl">estro:fa</AUni> -<AUni ws="qvm-x-akh">estro:fa</AUni> -<AUni ws="qvm-x-akl">estro:fa</AUni> -<AUni ws="qvm-x-ame">estro:fa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+estrofa</AUni> -<AUni ws="qvm-x-acl">+estrofa</AUni> -<AUni ws="qvm-x-akh">+estrofa</AUni> -<AUni ws="qvm-x-akl">+estrofa</AUni> -<AUni ws="qvm-x-ame">+estrofa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.518" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c100a8c8-2c13-4681-ad23-89b7125286dc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+estrofa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1c93d4c6-d971-444b-bb10-d38013d171ca" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c6e51ab7-1d41-4f1b-a9dd-b7864c042286" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +estrofa 
\entryTyp root 
\gENG 
\gSPN 
\e +estrofa 
\c N0 
\ach estro:fa 
\akh estro:fa 
\acl estro:fa 
\akl estro:fa 
\ame estro:fa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f592681b-7e0f-45c7-b4a3-93c86d75c380" ownerguid="d80360f9-7319-40a7-a2bc-fd8718711ba4"> -<ExampleWords> -<AUni ws="en">above, aforementioned, foregoing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words describe something that has been mentioned before?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f5932650-e1e1-4d5d-9f60-f9fd03184529" ownerguid="2bdfe506-0a28-45bd-81e1-44dcedcc262a"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="f59345b0-7519-4965-909c-58e05ec8a078" ownerguid="3c8eaf3d-757f-431d-9987-26115942e00e"> -<Form> -<AUni ws="qvm-x-ach">yaycu</AUni> -<AUni ws="qvm-x-acl">yaycu; yayco</AUni> -<AUni ws="qvm-x-akh">yayku</AUni> -<AUni ws="qvm-x-akl">yayku; yayko</AUni> -<AUni ws="qvm-x-ame">yayku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f59387b1-b3aa-4626-aed9-c81a8731d71f" ownerguid="afc25fbb-9060-4af2-8225-3fddbab2227d"> -<ExampleWords> -<AUni ws="en">be patient, bear, endure, persevere, patiently, persist, plod, plug, tolerate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to being patient?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="f595deab-1838-4ddb-9ebe-55fb3007b309" ownerguid="a3ba10f3-66e3-4ad5-8057-453b8941e497"> -<Abbreviation> -<AUni ws="en">4.8.3.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.286" /> -<DateModified val="2022-9-23 16:55:8.286" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to military organizations.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>55C Army</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Military organization</AUni> -</Name> -<OcmCodes> -<Uni>700 Armed Forces; 701 Military Organization; 702 Recruitment and Training; 703 Discipline and Morale; 704 Ground Combat Forces; 705 Supply and Commissariat; 708 Auxiliary Corps</Uni> -</OcmCodes> -<Questions> -<objsur guid="dc46d8c6-e76a-4926-b4c9-4f950462cf7b" t="o" /> -<objsur guid="dd37df36-2539-44e7-93b5-b3d500512f7b" t="o" /> -<objsur guid="e9e52efe-6444-4f59-ba30-c3f83c206ebd" t="o" /> -<objsur guid="3d71f224-c1be-42b8-8425-35103d14ebec" t="o" /> -<objsur guid="fc7b8082-9a3c-495d-ba40-4d0e625903ca" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="d90db6d4-6c78-4ac8-9764-0cafa79b8b31" t="o" /> -<objsur guid="7d629c80-e5c2-409f-a592-39c56e9ace6d" t="o" /> -<objsur guid="eb842dc1-ad9c-4c1a-9eb2-a48b7f3092be" t="o" /> -<objsur guid="f5e2ad18-5ad4-4186-9572-b1542096759e" t="o" /> -<objsur guid="362a2bdd-985e-4bc0-a41c-358bd1babb12" t="o" /> -<objsur guid="98830eda-3997-4f4a-9ba4-664df669e7e2" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="f597411c-16e3-43fa-bd1d-ce57b41bdc37" ownerguid="3580bb8b-c0d5-4af8-ac76-7b53f2a50b6b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">drunkard</AUni> -<AUni ws="es">borracho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="055c2b3e-91c7-4b4f-aa06-8d3a3d6dbe2f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f59a6321-2aac-49e7-8705-6d0cd62952c3" ownerguid="2dca9338-85cb-4f58-b40d-d2d759e8edd6"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John <is at> home.; John <is> here.; The books <are> in the box.; The office <is located> in the next building.; The <location> of the library <is> in the Academic Building.; Here <is> John.; There <are> the potatoes.; the steps <at> the door</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">be at, at, be, be located, location</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something is located somewhere?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f5a16170-3ccc-475a-be46-370c7b82dfd5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rampaytu</AUni> -<AUni ws="qvm-x-acl">rampaytu; rampaytu; rampayto</AUni> -<AUni ws="qvm-x-akh">rampaytu</AUni> -<AUni ws="qvm-x-akl">rampaytu; rampaytu; rampayto</AUni> -<AUni ws="qvm-x-ame">rampaytu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rampaytu</AUni> -<AUni ws="qvm-x-acl">*rampaytu</AUni> -<AUni ws="qvm-x-akh">*rampaytu</AUni> -<AUni ws="qvm-x-akl">*rampaytu</AUni> -<AUni ws="qvm-x-ame">*rampaytu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.254" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="54a365a9-47ff-440c-9ae4-1b97583dc0cf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rampaytu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a3cf3969-db64-4fed-b252-d17892b77358" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0fba98c0-1c9a-434c-8199-4e7bc74cfd64" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rampaytu 
\entryTyp root 
\gENG rash 
\gSPN grano 
\e *rampaytu 
\c N0 
\ach rampaytu 
\akh rampaytu 
\acl rampaytu / _# 
\acl rampaytu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl rampayto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl rampaytu / _# 
\akl rampaytu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl rampayto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame rampaytu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="f5a3fab8-cbc3-4905-bbe3-9711cb2cac9e" ownerguid="acbe546e-9501-4397-80dc-5e330501c465"> -<Form> -<AUni ws="qvm-x-ach">däña</AUni> -<AUni ws="qvm-x-acl">däña</AUni> -<AUni ws="qvm-x-akh">däña</AUni> -<AUni ws="qvm-x-akl">däña</AUni> -<AUni ws="qvm-x-ame">däña</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="f5a71da6-2ece-48ec-98a6-9f02333a9944" ownerguid="ded5c3be-18d2-4d2b-afd2-1a4802d3180d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">encourage</AUni> -<AUni ws="es">animar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fe1a42b7-d265-4b48-88f2-5a4e967ed3df" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f5a88569-6377-41ae-a5bc-06ab6129d01b" ownerguid="11b0dd4c-ae64-45a3-8210-dc7ae6f420b4"> -<Form> -<AUni ws="qvm-x-ach">gapra</AUni> -<AUni ws="qvm-x-acl">gapra</AUni> -<AUni ws="qvm-x-akh">qapra</AUni> -<AUni ws="qvm-x-akl">qapra</AUni> -<AUni ws="qvm-x-ame">qapra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f5a9cc88-908b-46e5-9941-72989ed7736a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">desma:yu</AUni> -<AUni ws="qvm-x-acl">desma:yu; desma:yu; desma:yo</AUni> -<AUni ws="qvm-x-akh">desma:yu</AUni> -<AUni ws="qvm-x-akl">desma:yu; desma:yu; desma:yo</AUni> -<AUni ws="qvm-x-ame">desma:yu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+desmayo</AUni> -<AUni ws="qvm-x-acl">+desmayo</AUni> -<AUni ws="qvm-x-akh">+desmayo</AUni> -<AUni ws="qvm-x-akl">+desmayo</AUni> -<AUni ws="qvm-x-ame">+desmayo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.386" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="95400486-173f-4afe-b780-2d5cc8129a27" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+desmayo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a18fc16a-7e60-4c54-8a53-b6deaa16940e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ed044ccd-2252-429c-b4fe-632531dc4592" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +desmayo 
\entryTyp root 
\gENG faint 
\gSPN desmayo 
\e +desmayo 
\c N0 
\ach desma:yu 
\akh desma:yu 
\acl desma:yu / _# 
\acl desma:yu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl desma:yo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl desma:yu / _# 
\akl desma:yu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl desma:yo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame desma:yu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f5ab50fe-c4de-423a-9afe-06e6df95d7f4" ownerguid="99861dcb-c6ca-4e50-a19a-efadbb10c2cf"> -<ExampleWords> -<AUni ws="en">old, used, second hand, worn, time-worn</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that has been used and is no longer new?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f5abf31f-070e-48a8-952d-ed79e4751d43" ownerguid="cd4300c9-265e-4457-8e33-4e0c9a4d4ba8"> -<ExampleWords> -<AUni ws="en">decrease in value, debase, degrade, deflate, deflation, depreciate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to decreasing the value of something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f5ac20b3-c405-41d4-b176-8d3faa919f09" ownerguid="5f9ebdd8-3f47-46a0-8ef1-8324d1a3cf03"> -<Form> -<AUni ws="qvm-x-ach">sumo</AUni> -<AUni ws="qvm-x-acl">sumo</AUni> -<AUni ws="qvm-x-akh">sumo</AUni> -<AUni ws="qvm-x-akl">sumo</AUni> -<AUni ws="qvm-x-ame">sumo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f5ac53b6-66fa-4008-905b-1402d78656bc" ownerguid="b0905fa9-2f90-410b-8eb5-7c7944c4f0f9"> -<ExampleWords> -<AUni ws="en">homosexual, gay, lesbian, homo, homosexuality, lesbianism, pervert, perverted, bisexual, sodomy, sexual orientation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(18) What words refer to sex between two people of the same sex?</AUni> -</Question> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="f5ac8aae-add3-428c-8670-61b9b9ef1327" ownerguid="81a61411-2402-4397-bc49-30683b850ce6" /> -<rt class="WfiMorphBundle" guid="f5adcbb9-5ba2-49f4-af03-91966719338b" ownerguid="70229141-c7cd-4263-959c-9c0b1514b70d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ictsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ictsu; ictso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">iktsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">iktsu; iktso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">iktsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="50c7cedb-e48d-4e40-b667-882924600f9d" t="r" /> -</Morph> -<Msa> -<objsur guid="9e409988-4e1d-45fa-8176-595e955af9d4" t="r" /> -</Msa> -</rt> -<rt class="PhPhoneme" guid="f5ae79dc-30ed-408a-9961-8c213feee29b" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="d040a217-6f57-4e7b-9be6-f99bb82ab98f" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">lengthened high back rounded vowel</Run> -</AStr> -</Description> -<Name> -<AUni ws="qvm-x-ach">ü</AUni> -<AUni ws="qvm-x-acl">ü</AUni> -<AUni ws="qvm-x-akh">ü</AUni> -<AUni ws="qvm-x-akl">ü</AUni> -<AUni ws="qvm-x-ame">uu</AUni> -</Name> -</rt> -<rt class="CmDomainQ" guid="f5af0190-3ba0-4d6b-b64d-ffaf2ae16e5a" ownerguid="e5020b79-6fb0-4be4-a359-d4f899da5c7e"> -<ExampleWords> -<AUni ws="en">quarrel (n), altercation, arguing, argument, bickering, contention, controversy, disagreement, dispute (n), feud (n), fight (n), fracas, row (n), ruckus, rumpus, spat, squabble (n), tiff, wrangle (n), wrangling, friendly argument, heated debate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a quarrel between people?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f5b2ff72-09b1-4cfa-9bb2-0b3885f9b7cf" ownerguid="97219600-e2ec-4d68-972c-9745588cf2f7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">round.rock</AUni> -<AUni ws="es">piedra.redonda</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2593d643-e4fd-47e0-9bb9-0afb58c1ef44" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="f5b788f0-d468-40fd-8d4f-30bdf106fc81" ownerguid="f124a350-c42e-4830-802c-3d3e504eb958"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="f5b9f074-588f-45b6-aef9-3648e9c1b9c8" ownerguid="c8de900d-4ef2-4805-b27c-f5bc872b34c9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">scarf</AUni> -<AUni ws="es">bufanda</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="db3ae090-ae90-4fca-bce0-f424d3e14f75" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f5ba6b8a-a8bc-4c7b-b6bf-f4c143f6833d" ownerguid="dc177f3c-d0fd-4232-adf1-a77b339cdbb2"> -<ExampleWords> -<AUni ws="en">courthouse, Parliament house, government headquarters, castle, palace</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What kinds of buildings are used by the government?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f5c47f40-8f1a-469a-87a6-533bae30fd35" ownerguid="60b8dcfd-49a0-4ab4-82a7-2c5058b325ae"> -<ExampleWords> -<AUni ws="en">remaining, last, outstanding, spare, leftover, residual, surplus, surviving</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something that remains?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f5c4cfb0-1d6d-474e-b005-49f95de2cd79" ownerguid="98c5356a-71ba-499b-8e70-016d3b607bfd"> -<Form> -<AUni ws="qvm-x-ach">tëja</AUni> -<AUni ws="qvm-x-acl">tëja</AUni> -<AUni ws="qvm-x-akh">tëja</AUni> -<AUni ws="qvm-x-akl">tëja</AUni> -<AUni ws="qvm-x-ame">tëja</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f5c73157-9581-45f0-9370-140d613f9812"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">patgo; patgu:</AUni> -<AUni ws="qvm-x-acl">patgo; patgo:</AUni> -<AUni ws="qvm-x-akh">patqo; patqu:</AUni> -<AUni ws="qvm-x-akl">patqo; patqo:</AUni> -<AUni ws="qvm-x-ame">patqu; patqu:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*patqu:.v2</AUni> -<AUni ws="qvm-x-acl">*patqu:.v2</AUni> -<AUni ws="qvm-x-akh">*patqu:.v2</AUni> -<AUni ws="qvm-x-akl">*patqu:.v2</AUni> -<AUni ws="qvm-x-ame">*patqu:.v2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.759" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fd640739-dd6f-4ad7-a34e-f9f567bd4918" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*patqu:.v2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="846631e2-5c67-4f89-acb6-c2343781f0c4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5e66c9bc-da42-4767-875f-4836eaa1060b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *patqu:.v2 
\entryTyp root 
\gENG to.numb 
\gSPN entumecer 
\e *patqu:.v2 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach patgo foreshortened 
\ach patgu: 
\akh patqo foreshortened 
\akh patqu: 
\acl patgo foreshortened 
\acl patgo: 
\akl patqo foreshortened 
\akl patqo: 
\ame patqu foreshortened 
\ame patqu:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="f5ccca74-7fd0-4f66-90de-6520d469aeca" ownerguid="5b1e0bfb-3f12-4e5e-9e9f-13f91752a853"> -<Form> -<AUni ws="qvm-x-ach">wilca</AUni> -<AUni ws="qvm-x-acl">wilca</AUni> -<AUni ws="qvm-x-akh">wilka</AUni> -<AUni ws="qvm-x-akl">wilka</AUni> -<AUni ws="qvm-x-ame">wilka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f5cd1354-93b8-47c7-97d3-9aadaa900381"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">astu:ta</AUni> -<AUni ws="qvm-x-acl">astu:ta</AUni> -<AUni ws="qvm-x-akh">astu:ta</AUni> -<AUni ws="qvm-x-akl">astu:ta</AUni> -<AUni ws="qvm-x-ame">astu:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+astuta</AUni> -<AUni ws="qvm-x-acl">+astuta</AUni> -<AUni ws="qvm-x-akh">+astuta</AUni> -<AUni ws="qvm-x-akl">+astuta</AUni> -<AUni ws="qvm-x-ame">+astuta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.850" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="09bb2570-9996-4368-b613-04e370a022ac" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+astuta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e78d3b49-1db5-47a8-95bd-ade74523a4fd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2d860387-7af2-4c5c-80c2-7b79940f65f6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +astuta 
\entryTyp root 
\gENG 
\gSPN 
\e +astuta 
\c N0 
\ach astu:ta 
\akh astu:ta 
\acl astu:ta 
\akl astu:ta 
\ame astu:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f5cde8b9-571a-448a-b7d0-6aa6259dd481"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jina</AUni> -<AUni ws="qvm-x-acl">jina</AUni> -<AUni ws="qvm-x-akh">jina</AUni> -<AUni ws="qvm-x-akl">jina</AUni> -<AUni ws="qvm-x-ame">hina</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hina</AUni> -<AUni ws="qvm-x-acl">*hina</AUni> -<AUni ws="qvm-x-akh">*hina</AUni> -<AUni ws="qvm-x-akl">*hina</AUni> -<AUni ws="qvm-x-ame">*hina</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.719" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ee9b5445-e27f-4ee3-8b9e-e2480469ec61" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hina</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fbad07fe-97e8-41de-90b9-4352f2a97857" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fafebeb8-6b8d-4e1b-9ec7-76e0e62ccccc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hina 
\entryTyp root 
\gENG just.that 
\gSPN así.no.más 
\e *hina 
\c N0 V1 
\ach jina 
\akh jina 
\acl jina 
\akl jina 
\ame hina 
\mcc *hina / ~_ 3P.V 
\mcc *hina / ~_ 3</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="f5cec706-9813-4c81-a881-179c4c697609"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">FLEx</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="f5d07df9-f492-4d14-a924-782be540f397" ownerguid="9992b4ba-908a-42ac-a727-bb58b7f9b1c1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="395d511a-58d1-483b-a2c2-7442b8631afd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f5d60baf-5e9d-4aaa-9eb2-18be4af3dc40" ownerguid="a72515ec-998d-4b48-bd69-c67cf9245abc"> -<ExampleWords> -<AUni ws="en">waste, squander, dissipate, uneconomical</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to wasting something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f5db50ed-54d0-41b6-ba5a-bd2dd0beb900" ownerguid="1a29f916-4708-48fe-b9be-f870d35e6b26"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rough</AUni> -<AUni ws="es">aspero</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8eb2d2e0-2cb6-439b-8438-6c9598ffee0d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f5e0649b-4868-4630-a4d9-5cf75b93e9b9" ownerguid="70a8cc54-0a57-441c-916f-0e5394f46c56"> -<Form> -<AUni ws="qvm-x-ach">auna</AUni> -<AUni ws="qvm-x-acl">auna</AUni> -<AUni ws="qvm-x-akh">awna</AUni> -<AUni ws="qvm-x-akl">awna</AUni> -<AUni ws="qvm-x-ame">awna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="f5e2ad18-5ad4-4186-9572-b1542096759e" ownerguid="f595deab-1838-4ddb-9ebe-55fb3007b309"> -<Abbreviation> -<AUni ws="en">4.8.3.6.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.286" /> -<DateModified val="2022-9-23 16:55:8.286" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a soldier.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>55D Soldiers, Officers</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Soldier</AUni> -</Name> -<Questions> -<objsur guid="d0b284ff-eb1c-4578-9e7a-a1f1436c892b" t="o" /> -<objsur guid="d10f43af-760e-4303-a1fa-96faff56e327" t="o" /> -<objsur guid="bc231b81-873e-426e-aaad-5aa017706f94" t="o" /> -<objsur guid="ac7b08b8-6d30-435f-9bdd-121e13b1feea" t="o" /> -<objsur guid="0d7a2284-f100-48e5-b5c4-2e7ec598ea12" t="o" /> -<objsur guid="e13c7cf2-57d7-402a-8e4d-49e84e14f446" t="o" /> -<objsur guid="779f1daa-dc94-4218-aee0-30eeb742132a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="f5e4e66f-0445-4434-a143-c60c5390be39"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">racra</AUni> -<AUni ws="qvm-x-acl">racra</AUni> -<AUni ws="qvm-x-akh">rakra</AUni> -<AUni ws="qvm-x-akl">rakra</AUni> -<AUni ws="qvm-x-ame">rakra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rakra</AUni> -<AUni ws="qvm-x-acl">*rakra</AUni> -<AUni ws="qvm-x-akh">*rakra</AUni> -<AUni ws="qvm-x-akl">*rakra</AUni> -<AUni ws="qvm-x-ame">*rakra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.236" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e81747d2-5be4-4c68-bf39-1c7ae6d17274" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rakra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="87d70374-b5a2-4e52-8a74-64ab8fc76ada" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b92394d5-a003-4cbb-ac3a-3120be8866dd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rakra 
\entryTyp root 
\gENG 
\gSPN pasar 
\e *rakra 
\c V1 
\ach racra 
\akh rakra 
\acl racra 
\akl rakra 
\ame rakra</Run> -</AStr> -</Custom> -</rt> -<rt class="Segment" guid="f5e4fe34-3b08-421e-88b3-3a789e129747" ownerguid="aec38955-64b7-4fe6-942e-4c2ae08e2fd3"> -<Analyses> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="fa7aeb71-200a-4a5d-9436-13faa1972fea" t="r" /> -<objsur guid="25651c34-3e31-419d-86b5-cda6907f0a4f" t="r" /> -<objsur guid="7beb2bdf-1e77-4955-99ec-39f893293020" t="r" /> -<objsur guid="a85a5670-81ba-47b9-8443-95e8be60ebec" t="r" /> -<objsur guid="cc5592b2-d053-4f21-868f-e47798949ce1" t="r" /> -<objsur guid="4fccec2d-58a4-466f-a087-a79d6bf13b57" t="r" /> -<objsur guid="afffb5bb-d332-4ad0-b30c-3ea9206a1815" t="r" /> -<objsur guid="94b1e0e9-5365-4697-bd29-1944e0401b92" t="r" /> -</Analyses> -<BeginOffset val="11" /> -</rt> -<rt class="MoStemAllomorph" guid="f5e747eb-6944-4c70-adea-f5dda7645824" ownerguid="d80fccdc-cdc5-4f13-add3-00dfb865a042"> -<Form> -<AUni ws="qvm-x-ach">numbral</AUni> -<AUni ws="qvm-x-acl">numbral</AUni> -<AUni ws="qvm-x-akh">numbral</AUni> -<AUni ws="qvm-x-akl">numbral</AUni> -<AUni ws="qvm-x-ame">numbral</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f5e90920-c4ff-4a10-beae-471713774c59" ownerguid="75eb23c7-28b5-4c98-937a-1d8f371b24cf"> -<ExampleWords> -<AUni ws="en">airplane, plane, aircraft, balloon, glider, kite</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of airplanes are there?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f5e9b151-abfb-4ccf-aad7-ecfb8f4864e9" ownerguid="39cb7964-8ebd-4629-bf1c-363eca8ba6e6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">goat</AUni> -<AUni ws="es">cabra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="a84e6f52-6596-410c-ad66-f3b3b0749a1d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f5ed097d-7f75-4cd6-b680-40b8dcdba732" ownerguid="d06dae77-134a-403f-ba88-52ecd66c0522"> -<ExampleWords> -<AUni ws="en">diatom, sea lettuce, kelp, rockweed, Sargasso, sargassum</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What species of algae are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f5ed1624-68a9-44f6-a3c0-d6cfe7717e59" ownerguid="64493789-1c2c-4b24-a7e6-f00ff9be923e"> -<ExampleWords> -<AUni ws="en">abuse, misuse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to using something in the wrong way?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f5ed700d-36f4-4222-b1fc-1ae42d62bbf0" ownerguid="2536e011-ff02-45d9-8e1d-ee8b4e6fc60c"> -<Form> -<AUni ws="qvm-x-ach">ami</AUni> -<AUni ws="qvm-x-acl">ami; ame</AUni> -<AUni ws="qvm-x-akh">ami</AUni> -<AUni ws="qvm-x-akl">ami; ame</AUni> -<AUni ws="qvm-x-ame">ami</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f5edd8da-f385-4f6b-ba31-a6586dc5a982" ownerguid="ea0f3bf0-2843-479b-9b9b-ec30cdf45936"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="f5fa0072-b0e7-4f34-95cc-da3841053f15" ownerguid="36b7654f-4f60-4031-904a-5d40c0c8b406"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">quake</AUni> -<AUni ws="es">temblar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="47ac2dbd-5b77-48fd-8595-7b1894663f47" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="f5fd90f4-fdc6-44a8-88bd-730cdbf5bd4b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fracasa</AUni> -<AUni ws="qvm-x-acl">fracasa</AUni> -<AUni ws="qvm-x-akh">fracasa</AUni> -<AUni ws="qvm-x-akl">fracasa</AUni> -<AUni ws="qvm-x-ame">fracasa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fracasar</AUni> -<AUni ws="qvm-x-acl">+fracasar</AUni> -<AUni ws="qvm-x-akh">+fracasar</AUni> -<AUni ws="qvm-x-akl">+fracasar</AUni> -<AUni ws="qvm-x-ame">+fracasar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.578" /> -<DateModified val="2022-10-10 21:18:47.218" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0ed57779-3193-4e95-9a00-f82aced17135" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fracasar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ec5fb8b3-9551-4cc6-b886-4e7233e0ca45" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9f7a94a9-a226-4f7d-a6b0-bb689750810c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fracasar 
\entryTyp root 
\gENG 
\gSPN 
\e +fracasar 
\c V1 
\ach fracasa 
\akh fracasa 
\acl fracasa 
\akl fracasa 
\ame fracasa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f5ff1715-8282-408b-92f6-6ac96194bb5d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsicasag</AUni> -<AUni ws="qvm-x-acl">tsicasag</AUni> -<AUni ws="qvm-x-akh">tsikasaq</AUni> -<AUni ws="qvm-x-akl">tsikasaq</AUni> -<AUni ws="qvm-x-ame">tsikasaq</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chikashaq</AUni> -<AUni ws="qvm-x-acl">*chikashaq</AUni> -<AUni ws="qvm-x-akh">*chikashaq</AUni> -<AUni ws="qvm-x-akl">*chikashaq</AUni> -<AUni ws="qvm-x-ame">*chikashaq</AUni> -</CitationForm> -<Comment> -<AStr ws="es"> -<Run ws="es">Felipe (Colpanga) dice tsicasag. Chavinillo habla con sh. Se habla con tsican cuando habla de una sola cosa; se habla con tsicasag cuando hablan de várias cosas.</Run> -</AStr> -</Comment> -<DateCreated val="2022-9-23 18:26:21.305" /> -<DateModified val="2022-10-15 12:40:28.368" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ab646829-738c-4106-82a3-de84184eaebc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chikasaq</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="eb8d57a6-ab7d-49c0-b0e6-4ea11056ef08" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="579f1a65-416c-4621-a929-ec013ecbfb6c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chikasaq 
\entryTyp root 
\gENG huge 
\gSPN grande 
\e *chikasaq 
\c N0 
\mp +FinalC 
\ach tsicasag 
\akh tsikasaq 
\acl tsicasag 
\akl tsikasaq 
\ame tsikasaq</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="f6010a47-ed33-4739-a07e-00253f68d308"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">imaykäpis</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="f603aa2a-33c9-427b-8a2f-61807dc21c2e" ownerguid="32657780-4344-4d4e-b1e4-66b38d32540e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f6103e85-a0c4-4ab9-8b59-bca00c8af59d" ownerguid="c5282457-be5f-4ce9-a802-91140cb0a22b"> -<ExampleWords> -<AUni ws="en">limb, extremity, arms and legs</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a limb?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f6124550-3261-47d8-b284-b83ac48c4e5e" ownerguid="3e9ed499-7b7e-494f-978d-7d8d9c9397cb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="f612a136-42d2-4989-80ea-e12e2aaf3fa7" ownerguid="2c4232f4-aaca-48a0-9037-a28ba6056c1d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">päca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">päca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">päka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">päka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">päku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e89f4461-706d-4840-bf9f-bfa3b395d737" t="r" /> -</Morph> -<Msa> -<objsur guid="f32a5a50-f426-45b8-ae08-eba8e0a53b74" t="r" /> -</Msa> -<Sense> -<objsur guid="f9fa41d4-dd29-40f1-be9f-24911a0fb7bb" t="r" /> -</Sense> -</rt> -<rt class="CmSemanticDomain" guid="f6134be5-3f96-4750-a03e-fca381a42db1" ownerguid="2470ad05-636e-4c85-96ab-cd880da58741"> -<Abbreviation> -<AUni ws="en">4.9.7.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.304" /> -<DateModified val="2022-9-23 16:55:8.304" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words used in Animism--the belief in spirits.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Animism</AUni> -</Name> -<OcmCodes> -<Uni>774 Animism</Uni> -</OcmCodes> -<Questions> -<objsur guid="be68b6db-4d28-42f4-ad96-e1f1bc47b52a" t="o" /> -<objsur guid="cc2d083e-85df-4332-8ec5-952bff9bd24e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="f61b7ca8-5d28-4600-b4cc-c28ed701b7e7" ownerguid="d4a8d2fd-b493-4467-941a-677883b2281e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">worthy</AUni> -<AUni ws="es">digno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2b355337-42b8-47ac-ab54-c3ff633e6faf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="f61dc856-e924-4b7b-94d8-fd7e50dc55b6" ownerguid="5131f911-b782-4b33-8a54-142d3af32ea3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f61e6345-e169-4e35-b7b7-ce1d0f7b587c" ownerguid="aaf9d375-f0a0-4c7b-bbf8-3c7ffd4f5a52"> -<ExampleWords> -<AUni ws="en">up to, as much as, to the degree that</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a marked extent?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f620e879-82f0-46a7-a6d3-1d78769ee012" ownerguid="849db14f-7aec-4e44-a9c9-d98772cb3144"> -<Form> -<AUni ws="qvm-x-ach">washqui</AUni> -<AUni ws="qvm-x-acl">washqui; washqui; washque</AUni> -<AUni ws="qvm-x-akh">washki</AUni> -<AUni ws="qvm-x-akl">washki; washki; washke</AUni> -<AUni ws="qvm-x-ame">washki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f62322ba-f27b-480f-b20e-909ffdb7bbf1" ownerguid="0a1b26b2-2152-45e2-9b63-4a68fca73a90"> -<ExampleWords> -<AUni ws="en">director, concertmaster, bandleader</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who leads a group of musicians?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="f6271e8f-3bbe-4c81-be8d-3160910bbe0d" ownerguid="97c18288-da96-4be3-818f-b4d6a14693c1"> -<Category> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</Category> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="f6f4f01e-d87f-419d-942a-37cdbbb0b92a" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="28e17853-f187-4c34-a5c6-4f5500a4f137" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="f6275bae-41a9-4521-91aa-c868638bf786" ownerguid="df2b9d7a-9b90-4704-8bc3-11dcffe985f4"> -<ExampleWords> -<AUni ws="en">sunburn, tan, tanned, suntan, burn, blister</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe your skin when you have been in the sun?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f62a1df8-d774-4e4a-8010-185eae5d9891" ownerguid="df2ee830-0668-43d7-8a32-e2fd3e7b31d8"> -<ExampleWords> -<AUni ws="en">will, going to</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(21) What words are used to indicate the future tense?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f62dae27-a008-45d6-864d-2c96d63ef05b" ownerguid="40ff5cee-31d8-4c89-a212-877347212a0e"> -<ExampleWords> -<AUni ws="en">be full, have had enough, couldn't eat another thing, bloated, stuffed, on a full stomach, satisfied, satiated, no more room</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being full of food?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f62dbd68-9bba-4688-838e-bd57f20d30a5" ownerguid="c1a63ba2-1db6-410d-a4ed-5f64d1798bc1"> -<ExampleWords> -<AUni ws="en">tidal flat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the area along the shore that the tide covers?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f631674b-225c-4225-a53a-2e991d505f6b" ownerguid="64e3d6b1-1d61-454c-97ab-e1d7cb0a8917"> -<ExampleWords> -<AUni ws="en">strain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to something that causes someone to feel nervous?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f637940d-d196-4411-8cb4-b894536bc61c" ownerguid="a8d704bc-32f3-4309-9f9b-8a9d76b4e925"> -<Form> -<AUni ws="qvm-x-ach">pasha</AUni> -<AUni ws="qvm-x-acl">pasha</AUni> -<AUni ws="qvm-x-akh">pasha</AUni> -<AUni ws="qvm-x-akl">pasha</AUni> -<AUni ws="qvm-x-ame">pasha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f639ec77-7128-4695-b38f-2063f29c3fea" ownerguid="46f82eff-54e4-4529-9284-4661b2b3c0db"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="f63a13b6-65e1-4c80-91b7-39e955b253a9" ownerguid="8b727cb7-dc70-4dce-8c6f-7b8da9b8fea9"> -<Form> -<AUni ws="qvm-x-ach">cumpli</AUni> -<AUni ws="qvm-x-acl">cumpli; cumple</AUni> -<AUni ws="qvm-x-akh">cumpli</AUni> -<AUni ws="qvm-x-akl">cumpli; cumple</AUni> -<AUni ws="qvm-x-ame">cumpli</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f63d167a-e316-4a5f-963b-afcb19563b11" ownerguid="a4bc5f8d-363a-412e-ba54-2df17a92120a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="f6408bf3-7052-4f94-a091-46800988bf9f" ownerguid="24b78cba-d55b-44d2-8a76-5f3df1bf5009"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7a342e82-d07e-435d-9f8c-2ccb853804a1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f6410b17-c2b1-4c3d-9812-93ae554f67c5" ownerguid="be981b60-ba21-4631-9bea-4e049ffd11d0"> -<Form> -<AUni ws="qvm-x-ach">göza</AUni> -<AUni ws="qvm-x-acl">göza</AUni> -<AUni ws="qvm-x-akh">göza</AUni> -<AUni ws="qvm-x-akl">göza</AUni> -<AUni ws="qvm-x-ame">göza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="f6411df8-4515-4b17-aef4-32bef50ce34a" ownerguid="9389dcf8-096d-415f-91ab-e03ef84e16e8"> -<Form> -<AUni ws="qvm-x-ach">cumpliäñu</AUni> -<AUni ws="qvm-x-acl">cumpliäñu; cumpliäñu; cumpliäño</AUni> -<AUni ws="qvm-x-akh">cumpliäñu</AUni> -<AUni ws="qvm-x-akl">cumpliäñu; cumpliäñu; cumpliäño</AUni> -<AUni ws="qvm-x-ame">cumpliäñu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="f6479b0d-e113-458d-8693-b6cc2904f7e1" ownerguid="598449d6-42d2-4fda-b0ef-0b2527629e7a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">roll</AUni> -<AUni ws="es">enrollar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="965958c0-4211-483d-9a65-c33044275383" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f64a30d8-b12b-4017-865b-fef75b4176b6" ownerguid="aea88426-5f10-4b18-9364-eee04437c4ee"> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f64cb14d-42b0-41e5-b820-f5218ffda65d" ownerguid="c9741b97-ad50-465c-a4ca-b21d488f45fe"> -<ExampleWords> -<AUni ws="en">spirit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something that is non-physical?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f64da5d0-17fd-4537-b37f-0a7d73a3f9a3" ownerguid="2f20e2a5-9e6b-4c6a-a7e5-3c4e64c35d14"> -<Form> -<AUni ws="qvm-x-ach">shilcu</AUni> -<AUni ws="qvm-x-acl">shilcu; shilcu; shilco</AUni> -<AUni ws="qvm-x-akh">shilku</AUni> -<AUni ws="qvm-x-akl">shilku; shilku; shilko</AUni> -<AUni ws="qvm-x-ame">shilku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f64e6e08-528b-4b8a-9098-e55964f2b951" ownerguid="167a5bae-f06f-424c-bfcb-ec547a076c8d"> -<ExampleWords> -<AUni ws="en">tend, graze, shepherd, herd, pasture, feed, look after animals</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to tending a herd in the fields?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f651aadd-814c-488c-9101-cbff0150b5e1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">adre:</AUni> -<AUni ws="qvm-x-acl">adre:</AUni> -<AUni ws="qvm-x-akh">adre:</AUni> -<AUni ws="qvm-x-akl">adre:</AUni> -<AUni ws="qvm-x-ame">adre:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+adrede</AUni> -<AUni ws="qvm-x-acl">+adrede</AUni> -<AUni ws="qvm-x-akh">+adrede</AUni> -<AUni ws="qvm-x-akl">+adrede</AUni> -<AUni ws="qvm-x-ame">+adrede</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.649" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a8978e60-f059-4f1f-84d2-5c5c81674795" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+adrede</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fef9665f-ce2f-47fd-aefb-1165c0653bba" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1c273141-598c-4b87-93b5-1a41f96a4e9a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +adrede 
\entryTyp root 
\gENG lie 
\gSPN adrede 
\e +adrede 
\c N0 
\mp +assimilated 
\ach adre: 
\akh adre: 
\acl adre: 
\akl adre: 
\ame adre: 
\mp +FinalC 
\mp +FinalLength 
\mp NeverForeshortened 
\mp NeverChanged</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f652a77a-de85-4db4-81ad-b091ad641817" ownerguid="f4e558bf-f318-4518-b578-fd54e4db1786"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f654fd6f-7805-4f0e-bd1e-be4ace5e7fd0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">atsa</AUni> -<AUni ws="qvm-x-acl">atsa</AUni> -<AUni ws="qvm-x-akh">atsa</AUni> -<AUni ws="qvm-x-akl">atsa</AUni> -<AUni ws="qvm-x-ame">atsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*acha</AUni> -<AUni ws="qvm-x-acl">*acha</AUni> -<AUni ws="qvm-x-akh">*acha</AUni> -<AUni ws="qvm-x-akl">*acha</AUni> -<AUni ws="qvm-x-ame">*acha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.629" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6c2748b2-45b7-4874-822a-b3df7c74e0ce" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*acha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8658dff3-91a5-41d0-9669-adc1b6805d9b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e29a9c5d-521d-4fc4-ad9b-a788469175c2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *acha 
\entryTyp root 
\gENG 
\gSPN despeinada 
\e *acha 
\c N0 
\ach atsa 
\akh atsa 
\acl atsa 
\akl atsa 
\ame atsa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f6567cc1-f3d8-46f1-b133-030b6b9a9417"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">goyu; goyu:</AUni> -<AUni ws="qvm-x-acl">goyo:; goyu; goyo</AUni> -<AUni ws="qvm-x-akh">qoyu; qoyu:</AUni> -<AUni ws="qvm-x-akl">qoyo:; qoyu; qoyo</AUni> -<AUni ws="qvm-x-ame">quyu; quyu:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*quyu:</AUni> -<AUni ws="qvm-x-acl">*quyu:</AUni> -<AUni ws="qvm-x-akh">*quyu:</AUni> -<AUni ws="qvm-x-akl">*quyu:</AUni> -<AUni ws="qvm-x-ame">*quyu:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.912" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="26238173-f407-4964-b7fe-c9ce0d73fbe1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*quyu:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cf55ee93-6d44-421a-ad9c-a644973f1b1d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4026fea0-48be-41a8-aba4-627040eed493" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *quyu: 
\entryTyp root 
\gENG bruise 
\gSPN magullar 
\e *quyu: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach goyu foreshortened 
\ach goyu: 
\akh qoyu foreshortened 
\akh qoyu: 
\mp +underlong 
\acl goyo: 
\acl goyu foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl goyo foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\mp +underlong 
\akl qoyo: 
\akl qoyu foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qoyo foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame quyu foreshortened 
\ame quyu:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f65d20dd-cf35-4e7e-9f73-19afe2495065" ownerguid="cdf30dcc-b306-4466-8684-a060f503c6ed"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f65fbb2d-c1b9-48e9-8cc1-ee62acab4f26" ownerguid="a3f1d702-8ca1-457a-a569-eb6fdf696bbe"> -<ExampleWords> -<AUni ws="en">voice your disapproval, express your disapproval, register your disapproval, condemn, denounce, deplore</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to saying that you disapprove of something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f663e266-2977-46da-bf28-d49cafbf2474" ownerguid="99231692-d761-4fa7-bd41-1748534dfaf0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="96b0f199-d298-4691-b10f-33c296a32ba0" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="14dd6589-3725-4fa6-863c-3cd46e6ed272" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="f66470bc-270c-4f31-b73c-bc08d307cb1e" ownerguid="dbc24270-ada5-48a5-87b7-447a0dd63e61"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">powerful</AUni> -<AUni ws="es">poderoso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="90632c05-91c8-4e78-9df2-148679c227a7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f667c73d-e166-4ecc-bf1c-7f41b54dcdfa" ownerguid="d04169af-b4d1-49fd-9c68-d5f6722d6f74"> -<Form> -<AUni ws="qvm-x-ach">camtsa</AUni> -<AUni ws="qvm-x-acl">camtsa</AUni> -<AUni ws="qvm-x-akh">kamtsa</AUni> -<AUni ws="qvm-x-akl">kamtsa</AUni> -<AUni ws="qvm-x-ame">kamtsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f66aed80-699d-46ef-9c91-3b8a15a65720" ownerguid="d25f7907-091e-4cf7-bd8c-bdb97278b616"> -<ExampleWords> -<AUni ws="en">hit, strike</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person hitting something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f66c8c1e-374d-4c45-a9dc-1aa89484cb97" ownerguid="743b003a-0fc5-4822-bd7b-36ea4a7a74a5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">take.out</AUni> -<AUni ws="es">sacar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="683ec00b-a31e-4d3b-9a30-8420b9887295" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="f66dee68-b1da-4601-be57-85edccdf8e5b" ownerguid="d83402b0-6631-4925-9300-54aa3b751e9b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">mentiroso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d19ad677-80b0-4721-9cdc-df90ece96a4a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="f66e1459-3efb-45ab-b7c3-ae8ef6f354cc" ownerguid="17fb1c0c-9be2-49fd-bad6-b97d9b55d338"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="f67139bb-8a9a-4825-a951-db825af70bcb" ownerguid="31af73a8-7b1b-4ddc-adfa-4f835a66b975"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f6767d57-6fb1-4e4a-b876-7143f3ee912f" ownerguid="d086c2ad-2d11-4250-a25a-dc6538439db6"> -<ExampleWords> -<AUni ws="en">two, second, two times, two-fold, double (v), twins, brace, dichotomy, deuce, dual, dyad, twain, yoke, in pairs, in twos, two by two, by twos, two at a time, two apiece, two each, both, either, neither</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to two?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f67a0a6b-e728-4787-94dc-e473b557c58f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tarea</AUni> -<AUni ws="qvm-x-acl">tarea</AUni> -<AUni ws="qvm-x-akh">tarea</AUni> -<AUni ws="qvm-x-akl">tarea</AUni> -<AUni ws="qvm-x-ame">tarea</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tarea</AUni> -<AUni ws="qvm-x-acl">+tarea</AUni> -<AUni ws="qvm-x-akh">+tarea</AUni> -<AUni ws="qvm-x-akl">+tarea</AUni> -<AUni ws="qvm-x-ame">+tarea</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.825" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4f4ece33-29da-4edc-aea4-5c430598d997" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tarea</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1f67cc79-28fa-4bf7-8628-cde94f66566a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="79fa3f19-fa3f-47f4-8a6c-d9518b1c05c7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tarea 
\entryTyp root 
\gENG assignment 
\gSPN tarea 
\e +tarea 
\c N0 
\ach tarea 
\akh tarea 
\acl tarea 
\akl tarea 
\ame tarea 
\i EXO 5.16 Tsaynog rurapäcamar capatazniquicunami jutsayog caycan tareata mana cumplitanäpag, tayta.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f67cee84-0f14-4dbc-9618-2305c4d5f0b2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">videu; video</AUni> -<AUni ws="qvm-x-acl">videu; videu; video</AUni> -<AUni ws="qvm-x-akh">videu; video</AUni> -<AUni ws="qvm-x-akl">videu; videu; video</AUni> -<AUni ws="qvm-x-ame">videu; video</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+video</AUni> -<AUni ws="qvm-x-acl">+video</AUni> -<AUni ws="qvm-x-akh">+video</AUni> -<AUni ws="qvm-x-akl">+video</AUni> -<AUni ws="qvm-x-ame">+video</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.391" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d4afb324-638b-4d2b-a646-71adf03c4f61" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+video</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e1f7ead9-c410-48c1-9daa-11da857c79a3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8dc006e1-cef8-46b9-b69c-b4f863e8424a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +video 
\entryTyp root 
\gENG 
\gSPN 
\e +video 
\c N0 
\ach videu / ~_# 
\ach video / _# 
\akh videu / ~_# 
\akh video / _# 
\acl videu / ~_# 
\acl videu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl video +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl videu / ~_# 
\akl videu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl video +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame videu / ~_# 
\ame video / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f6831348-e2bc-40d4-a570-f9f857f1f1f7" ownerguid="5c08c178-187e-4355-90bb-decf96e0e8b4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">corral</AUni> -<AUni ws="es">corral</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bb2a1949-45c5-45f9-adf9-fb3513399ee6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="f68489c5-12a5-4388-b936-e3eb5c002aaf" ownerguid="f03b07e0-70c5-45e7-805f-35a0d5b59009"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gravel</AUni> -<AUni ws="es">ripio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6bccfbde-5387-4104-ad3f-518143a1ed01" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f688d678-4b98-4d26-a153-5eaeefec256b" ownerguid="a8b9e892-df3e-44c4-8c68-7a0f7f4468bb"> -<ExampleWords> -<AUni ws="en">rabbit, cottontail, hare, pika</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What species of rabbit are there?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="f6896060-4d5c-45e2-b89a-f9f6328a479c" ownerguid="06a44085-cbcf-4217-ae5e-56c51899c99a"> -<Abbreviation> -<AUni ws="en">8.3.5.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.619" /> -<DateModified val="2022-9-23 16:55:8.619" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is usual.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Usual</AUni> -</Name> -<Questions> -<objsur guid="8e4261cb-ffbe-4b2d-9172-0cbd35cd8906" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="f68ea3dc-af4c-4bf5-a3ef-6dbce6caaa92" ownerguid="9613303e-9302-4793-9c06-cc44cff4b0ae"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="f68fa43a-24ae-491e-b142-374c3f0b750e" ownerguid="dc43feaa-d4f9-4e3b-9378-bfe9323941e3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">crack.skin</AUni> -<AUni ws="es">partirse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9187c095-8ac2-4fd3-b6c0-499740d7ad15" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f68fd547-b350-44bc-8101-0f15d7f09cc3" ownerguid="ca511a0c-5628-4726-8a6e-aa9fa3b73bfc"> -<ExampleWords> -<AUni ws="en">witness, testify, give evidence, tell about, recount, provide information, facts, truth, false witness, perjure, perjury, report, cross-examine, hearsay</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to testifying in a court?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f68fd985-46d1-46bc-bf10-ea54bbb72199" ownerguid="756f67e9-2b22-4c43-913c-ceff0e781545"> -<ExampleWords> -<AUni ws="en">force, stuff, squeeze, jam, cram, pack, wedge in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to pushing something into a small space?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f691e303-f700-4e58-9dcd-f7ab86946e51" ownerguid="abc378a7-42f5-4a04-aa74-d4b15ba502d6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="29d6da63-f4a4-4e4f-81a7-908a04d3ca75" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="cf185089-9aaf-4de4-9a29-02a43f1e01ab" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="f69667c3-a01d-49bd-8565-d45a284be800" ownerguid="bf5352cf-3507-441b-9a6e-9a9ae2d4bf97"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="f697b0f8-e86c-408d-97c9-e5f035fa188d" ownerguid="dcc276da-db5c-46fe-9d64-da7e34f8c562"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="PunctuationForm" guid="f69934b2-1374-4eec-8857-8cde011be648"> -<Form> -<Str> -<Run ws="en">1O</Run> -</Str> -</Form> -</rt> -<rt class="MoStemMsa" guid="f69bbb7a-5ee3-4b30-b2a1-f0b1dd124f54" ownerguid="4246d409-c802-47c6-a3f9-a1317f59d1bb"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f69dc745-901c-445f-bc1c-8b345e447e38" ownerguid="0205145d-23b6-4c3c-bf2d-bf866bb010e7"> -<ExampleWords> -<AUni ws="en">canal, aqueduct, ditch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to canals used to convey water?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="f69dc7fc-4d3c-4a82-913f-08492c729725"> -<Form> -<Str> -<Run ws="en">yarpa</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="f69ef10b-0255-40ee-ade3-d805c543ba3f" ownerguid="50dfffe4-dfe8-445f-bdde-4cc8d83ebd6b"> -<ExampleWords> -<AUni ws="en">cooperate with, work together, side-by-side, jointly, collaborate, partnership, alliance, join together, team up, help each other</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to working together with someone to do something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f6a23174-f58c-4eef-8dee-db043ada5b23" ownerguid="30e6b42c-6bbf-4659-99e7-aa4b8e68c9ce"> -<ExampleWords> -<AUni ws="en">improve, develop, reform</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to becoming good?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f6a28d56-cc77-4905-96ec-1719a271fb7b" ownerguid="7cfc8b3c-ad67-4928-ae6a-74afd47ced89"> -<ExampleWords> -<AUni ws="en">incomplete, partial, missing something</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that something is not whole?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f6a36f33-513f-4dba-b5ce-717b6ec7413f" ownerguid="d21db541-4122-465f-9db5-4c76f5e84426"> -<ExampleWords> -<AUni ws="en">pay, salary, wages, earnings, income, wage</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the money you earn?</AUni> -</Question> -</rt> -<rt class="Segment" guid="f6a4409c-5135-4a0c-8b7a-5256e048a2bb" ownerguid="7a3430d7-9c73-48fa-8802-69a58352bb0e"> -<Analyses> -<objsur guid="3b967f7a-acef-4072-a9a7-6faaf8313e7a" t="r" /> -<objsur guid="fa7aeb71-200a-4a5d-9436-13faa1972fea" t="r" /> -<objsur guid="25651c34-3e31-419d-86b5-cda6907f0a4f" t="r" /> -<objsur guid="7a34d709-dd7d-4ac4-94e8-58e444587dd4" t="r" /> -<objsur guid="a85a5670-81ba-47b9-8443-95e8be60ebec" t="r" /> -<objsur guid="bb723df0-2b97-461e-bae3-564d9c1a0cfd" t="r" /> -<objsur guid="4fccec2d-58a4-466f-a087-a79d6bf13b57" t="r" /> -<objsur guid="7469850f-190c-4c67-bdfc-985cbf0148ea" t="r" /> -<objsur guid="4bd33b73-ca58-4fbb-9575-41275fd181b3" t="r" /> -<objsur guid="26ca52f1-b5e7-41e8-aa2e-cf2572524687" t="r" /> -</Analyses> -<BeginOffset val="11" /> -</rt> -<rt class="CmDomainQ" guid="f6a5758c-6688-4db5-bdfb-bf6dde3ade7e" ownerguid="4b3a9b5a-df7d-4ec2-9576-2c07fe396021"> -<ExampleWords> -<AUni ws="en">barn dance, folk dance, square dance, ballet, waltz, tap-dancing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the types of dances?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f6af1ef6-0d78-4bd9-a719-4db5226e2139" ownerguid="8f779877-7d86-4683-8a8b-298c7fc62815"> -<ExampleWords> -<AUni ws="en">stumble, misspeak, gaff, speak ungrammatically</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to making a mistake when speaking?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f6afda84-5dc8-4ec7-935d-d2942b2c64bc" ownerguid="763fa2e0-c119-4f50-a307-81ed8c3497ed"> -<ExampleWords> -<AUni ws="en">objection, opposition, hostility, antagonism</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something someone does to show he is opposed to something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f6b10001-3b40-49b9-9a8f-4d4234ca8a72" ownerguid="0cc62b4a-d5ff-4f45-83d1-e2b46e5d159a"> -<ExampleWords> -<AUni ws="en">bedtime, time to go to sleep</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to the time when you go to sleep?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f6b3b505-180a-4ebb-967f-40c036abe0d2" ownerguid="87f3106b-69de-4cb1-9efc-b19cda92fe96"> -<Form> -<AUni ws="qvm-x-ach">carácter; caracter</AUni> -<AUni ws="qvm-x-acl">carácter; caracter</AUni> -<AUni ws="qvm-x-akh">carácter; caracter</AUni> -<AUni ws="qvm-x-akl">carácter; caracter</AUni> -<AUni ws="qvm-x-ame">carácter; caracter</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f6bc06da-a69f-4895-bf16-2f650bfb19f7" ownerguid="2ccab97a-fb98-4054-a29b-e5ceac8ca1b4"> -<ExampleWords> -<AUni ws="en">worship, adoration, devotion, homage, service, reverence, veneration, deification, idolization</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the act of worship?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f6bf2a74-0130-4664-b02c-0552b25163be" ownerguid="55201761-fe2e-40d5-a2a7-8079e00a2c32"> -<ExampleWords> -<AUni ws="en">fight (n), brawl (n), fracas, fray, free-for-all, melee, scrap, scuffle (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a fight between a few people?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f6bf36ae-c80d-4815-bc6b-a82fd7048ced" ownerguid="f4580c19-ba9e-4f71-a46a-6f3c4b19c36c"> -<ExampleWords> -<AUni ws="en">waterway, sea-lane</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the places a ship can go?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f6bfb8c0-7a87-462a-913c-843aa6e95181" ownerguid="4a4780b0-3faf-4148-8382-3dcc08956c80" /> -<rt class="LexEntry" guid="f6bfcab1-f820-4f6f-ae55-614bb775337a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ñampu</AUni> -<AUni ws="qvm-x-acl">ñampu; ñampu; ñampo</AUni> -<AUni ws="qvm-x-akh">ñampu</AUni> -<AUni ws="qvm-x-akl">ñampu; ñampu; ñampo</AUni> -<AUni ws="qvm-x-ame">ñampu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ñampu</AUni> -<AUni ws="qvm-x-acl">*ñampu</AUni> -<AUni ws="qvm-x-akh">*ñampu</AUni> -<AUni ws="qvm-x-akl">*ñampu</AUni> -<AUni ws="qvm-x-ame">*ñampu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.588" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="67ab44fb-8f3e-4b06-8e55-551ce253ecfa" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ñampu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="89d051a5-3828-48e3-b0d3-2d32d920b7d6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bad1ba2e-fb30-40cb-bc09-88f0fdbd1605" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ñampu 
\entryTyp root 
\gENG 
\gSPN sauve 
\e *ñampu 
\c N0 
\ach ñampu 
\akh ñampu 
\acl ñampu / _# 
\acl ñampu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ñampo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ñampu / _# 
\akl ñampu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ñampo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ñampu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f6c41b86-44cd-4522-b703-f16dd39c9b74" ownerguid="f94e9041-49b0-4d25-aa54-9446c5ab45f4"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">I couldn't do this, so he did it <instead>.; I went <instead of> him.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">instead, in someone's place, for, on someone's behalf</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words indicate that something is true of one person instead of another person?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f6c60b37-7835-4f85-a5ef-6fe3ce219d8c" ownerguid="107a88b3-6591-4e19-8856-86e6d0a675bf"> -<Form> -<AUni ws="qvm-x-ach">tsintsi</AUni> -<AUni ws="qvm-x-acl">tsintsi; tsintse</AUni> -<AUni ws="qvm-x-akh">tsintsi</AUni> -<AUni ws="qvm-x-akl">tsintsi; tsintse</AUni> -<AUni ws="qvm-x-ame">tsintsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f6c6d931-47ff-499a-8f5c-fe587d46d78d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shi</AUni> -<AUni ws="qvm-x-acl">shi; shi; she</AUni> -<AUni ws="qvm-x-akh">shi</AUni> -<AUni ws="qvm-x-akl">shi; shi; she</AUni> -<AUni ws="qvm-x-ame">shi</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.568" /> -<DateModified val="2022-10-16 14:51:17.745" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c274abbe-1662-467f-a4a7-84355e8c7041" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">RPT.C</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1f012570-3ca4-4030-ab61-99e6e57064dd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a940012d-b194-4189-9427-718ffe36ee75" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx RPT.C 
\entryTyp suffix 
\gENG RPT1 
\gSPN IND 
\e RPT.C 
\c N0/N0 BN/BN R0/R0 V0/V0 ONSHEV/ONSHEV 
\o 260 
\mp +FinalI 
\ach shi 
\akh shi 
\acl shi / _# 
\acl shi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl she +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shi / _# 
\akl shi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl she +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shi 
\mcc RPT.C / ~_ JUST</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f6c6df56-a369-4462-9c8f-e109e0f67bb5" ownerguid="966075bf-6c37-4c86-91c9-1e4684e97b75"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="f6ca485d-1124-4f9f-8bd2-d5ae4c69a64d" ownerguid="21a35c7d-a266-42fb-ba87-8b0ba75318a8"> -<Form> -<AUni ws="qvm-x-ach">paltacshi</AUni> -<AUni ws="qvm-x-acl">paltacshi; paltacshi; paltacshe</AUni> -<AUni ws="qvm-x-akh">paltakshi</AUni> -<AUni ws="qvm-x-akl">paltakshi; paltakshi; paltakshe</AUni> -<AUni ws="qvm-x-ame">paltakshi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="f6cbbd75-52c4-428c-a6ea-5fe047fedf1a" ownerguid="094ad767-9400-4ac2-a94d-ea6531715f91"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">handful</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="375fb2b7-69bd-4c2a-85bf-cadce82f6e5f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f6cc0ac4-dcf8-4e61-afe7-4b30ec042a11" ownerguid="f957a4aa-d3d4-4dad-93d1-20565b5158d4"> -<ExampleWords> -<AUni ws="en">cousin</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to your father's sister's child?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="f6ccb99a-af83-4be2-a700-394fef5f9e0b" ownerguid="96a40b54-88f0-4740-86a3-140912f24f24"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mi</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mi</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mi</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mi</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mi</Run> -</AStr> -</Form> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -</rt> -<rt class="LexExampleSentence" guid="f6ce7a3b-1081-4f9e-8633-315cc3e2e15f" ownerguid="fc0c7d6d-f7b8-477e-b45e-a74be31e120c"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shimilayquita ganrataycatsiy</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="f6d1e25e-5e1c-4cf1-a136-4fd009cef49c" ownerguid="a909429a-d459-4e27-b1df-620deb91ab0f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pound</AUni> -<AUni ws="es">golpear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c5896450-e7b7-41af-9e26-707892ae0dc5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="f6dcf1c9-f778-4fc6-a331-6a08a2043d2f"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">ajayätsiman</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="f6deea64-e38a-4698-8100-d5278c3a304e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ni</AUni> -<AUni ws="qvm-x-acl">ni; ne</AUni> -<AUni ws="qvm-x-akh">ni</AUni> -<AUni ws="qvm-x-akl">ni; ne</AUni> -<AUni ws="qvm-x-ame">ni</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ni</AUni> -<AUni ws="qvm-x-acl">*ni</AUni> -<AUni ws="qvm-x-akh">*ni</AUni> -<AUni ws="qvm-x-akl">*ni</AUni> -<AUni ws="qvm-x-ame">*ni</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.555" /> -<DateModified val="2022-10-10 21:19:54.712" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ni</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="98d1c6b4-6ec3-4d69-9169-c8e2a400e327" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ni 
\entryTyp root 
\gENG say 
\gSPN decir 
\e *ni 
\c V2 
\mp +FinalI 
\ach ni 
\akh ni 
\acl ni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ne +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ni 
\mcc *ni / ~_ DUR [q] 
\mcc *ni / ~_ NMN 
\mcc *ni / ~_ PASS</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="f6df56d5-05df-40f4-9c66-8042b406f68d" ownerguid="8d46441e-ca76-4d87-a1e9-94d18adfc21e"> -<Category> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</Category> -<Evaluations> -<objsur guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="e1496046-5e39-485e-aff3-a5ac888e3f7f" t="o" /> -<objsur guid="22a99a38-71cb-46ee-8ac0-90f16ff0b0fa" t="o" /> -<objsur guid="628bb610-6884-4202-a19a-02595b5852fa" t="o" /> -<objsur guid="482734b2-9be6-4030-8c39-035b05bed72a" t="o" /> -<objsur guid="346470e5-8576-4649-ac52-bbda074b73d4" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="f6e14fb1-6559-4667-8f14-a5f025efd226" ownerguid="1674883d-c851-471f-b894-bbfd6ef28e77"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f6e2beba-d888-48b1-89a3-f79cdcb08dce" ownerguid="5f791daf-98a2-4787-93cc-8813aea93c4d"> -<ExampleWords> -<AUni ws="en">tangled, matted, raveled, snarled, all mixed up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words described something that is tangled?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f6e3cab2-21c6-41d2-b3a2-66755f78a166" ownerguid="e27adda9-0761-4b7f-abbf-24938ce1c01a"> -<ExampleWords> -<AUni ws="en">star, co-star, star in, play the lead</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the most important actor or actress?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="f6e416b3-50b1-4e48-8a39-2998725b1c79" ownerguid="ffcc57f8-6c6d-4bf4-85be-9220ca7c739d"> -<Abbreviation> -<AUni ws="en">2.6.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.63" /> -<DateModified val="2022-9-23 16:55:8.63" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to divorce--to legally end your marriage.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>34J Marriage, Divorce</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Divorce</AUni> -</Name> -<OcmCodes> -<Uni>586 Termination of Marriage</Uni> -</OcmCodes> -<Questions> -<objsur guid="5ed19bbc-6c68-4c23-87d2-3820453bbb96" t="o" /> -<objsur guid="6b683d62-c6be-441e-91a2-e728a5628ffb" t="o" /> -<objsur guid="9131c599-e423-42e5-8154-56678641047f" t="o" /> -<objsur guid="e0cc987b-c649-441a-a527-79c2d47678b5" t="o" /> -<objsur guid="5d02bcb8-a86d-487d-a839-26b67c9efd14" t="o" /> -<objsur guid="efccec2f-eedc-4a97-b5c7-58d550b508e3" t="o" /> -<objsur guid="b451098b-393a-42f7-afa5-e283aae61f97" t="o" /> -<objsur guid="a161f530-9256-4f1c-a5bf-0771eb9d6c0e" t="o" /> -<objsur guid="70483e4f-489f-4480-b327-187b4c9493cf" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="f6e6f5b4-5431-4b82-8dfa-952b19bc4d63" ownerguid="50ac28ab-7385-408f-b5eb-3e27b191fcf4"> -<ExampleWords> -<AUni ws="en">publication date, appear, come out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the time when a book is published?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f6e976b7-9cda-4728-967e-de5a177139d3" ownerguid="8252dad9-1a9d-4ba2-bcde-204a1032a566"> -<Form> -<AUni ws="qvm-x-ach">juramentu; juramento</AUni> -<AUni ws="qvm-x-acl">juramentu; juramentu; juramento</AUni> -<AUni ws="qvm-x-akh">juramentu; juramento</AUni> -<AUni ws="qvm-x-akl">juramentu; juramentu; juramento</AUni> -<AUni ws="qvm-x-ame">juramentu; juramento</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f6ea043a-2049-4f16-ad39-4c2a68e40c12" ownerguid="a6b042b8-9ab8-4f14-87f9-b6562a5a82de"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoInflAffMsa" guid="f6ea55f1-4e4a-4ecf-8111-a616c65ce527" ownerguid="7df152ed-3b6d-4a16-9135-89f5c742cd2f"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="cc7bce64-81a2-4c23-9cb0-ba8f7d274837" t="r" /> -</Slots> -</rt> -<rt class="CmSemanticDomain" guid="f6eb81d5-caba-4735-be6f-ae038656b555" ownerguid="9bab95c4-9773-4894-9cb9-d7ad39378b45"> -<Abbreviation> -<AUni ws="en">6.6.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.468" /> -<DateModified val="2022-9-23 16:55:8.468" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to crafts.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Crafts</AUni> -</Name> -<OcmCodes> -<Uni>280 Leather, Textiles and Fabrics</Uni> -</OcmCodes> -<Questions> -<objsur guid="3b572380-65c1-4a4c-bbe7-7e90af09ce0d" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="0b7bfd0a-249c-45b6-9427-2c17ae00bf37" t="o" /> -<objsur guid="019e3b64-c68a-4b19-bec5-a22f4eb88f48" t="o" /> -<objsur guid="7ee96f62-7c8e-4c27-a373-d7a534844612" t="o" /> -<objsur guid="49471924-2458-4cb0-9430-f38cfc2fb63b" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="f6ece4a1-7f90-4687-89f5-6b778f56839b" ownerguid="32657780-4344-4d4e-b1e4-66b38d32540e"> -<Form> -<AUni ws="qvm-x-ach">yaya</AUni> -<AUni ws="qvm-x-acl">yaya</AUni> -<AUni ws="qvm-x-akh">yaya</AUni> -<AUni ws="qvm-x-akl">yaya</AUni> -<AUni ws="qvm-x-ame">yaya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f6ed379c-67c6-41d6-9205-5c74361fa28c" ownerguid="ba06de9e-63e1-43e6-ae94-77bea498379a"> -<ExampleWords> -<AUni ws="en">man, men, mankind, the human race, humanity, humankind</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the entire human race?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f6f20032-d75f-4337-b72b-ee6d4b014e77" ownerguid="25da20bf-f0ad-46d9-9701-645654d31ba9"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f6f38651-63fc-41f0-99ae-2d0711c5b18d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chipsha</AUni> -<AUni ws="qvm-x-acl">chipsha</AUni> -<AUni ws="qvm-x-akh">chipsha</AUni> -<AUni ws="qvm-x-akl">chipsha</AUni> -<AUni ws="qvm-x-ame">chipsha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chipsha</AUni> -<AUni ws="qvm-x-acl">*chipsha</AUni> -<AUni ws="qvm-x-akh">*chipsha</AUni> -<AUni ws="qvm-x-akl">*chipsha</AUni> -<AUni ws="qvm-x-ame">*chipsha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.315" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="89867486-54e4-4a79-a311-971a160a724e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chipsha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e9207993-6d2a-4a53-ba0a-f19d95fb0ef9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6b87d566-5dde-4327-b59f-2f21cf426fbe" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chipsha 
\entryTyp root 
\gENG 
\gSPN 
\e *chipsha 
\c N0 
\ach chipsha 
\akh chipsha 
\acl chipsha 
\akl chipsha 
\ame chipsha</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiGloss" guid="f6f4f01e-d87f-419d-942a-37cdbbb0b92a" ownerguid="f6271e8f-3bbe-4c81-be8d-3160910bbe0d"> -<Form> -<AUni ws="en">landslide</AUni> -<AUni ws="es">derrumbe</AUni> -</Form> -</rt> -<rt class="CmDomainQ" guid="f6f8368f-64da-48c9-974a-7e748bb83ad6" ownerguid="cd6f1b37-5bdd-4237-8827-b1c947c8e1b4"> -<ExampleWords> -<AUni ws="en">transparent, clear, see-through, glassy, clear as crystal, crystal clear, show through, unclouded, crystalline, sheer, limpid, vitreous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that can be seen through?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f6fd8369-4c75-47e0-b0dd-295ac2ded33e" ownerguid="80563285-4de7-4040-8080-a5b22208e7d5"> -<ExampleWords> -<AUni ws="en">unprovoked</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words describe an attack that was not caused by an earlier action?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f7005317-c167-489a-8263-14b025fc94f1" ownerguid="6e0c3542-ff20-47ef-9b51-0d3621577a68"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">spend</AUni> -<AUni ws="es">gastar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2821d970-f5ee-4909-857d-93eaa4f4085c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f702ed38-be44-4f07-afc9-7fefff142a7f" ownerguid="26a61321-a9d8-44e3-81c3-a83c85e1158e"> -<Form> -<AUni ws="qvm-x-ach">carpintëru</AUni> -<AUni ws="qvm-x-acl">carpintëru; carpintëru; carpintëro</AUni> -<AUni ws="qvm-x-akh">carpintëru</AUni> -<AUni ws="qvm-x-akl">carpintëru; carpintëru; carpintëro</AUni> -<AUni ws="qvm-x-ame">carpintëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f7055198-136a-4ef8-9faa-9b1d0bfced5a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tashma</AUni> -<AUni ws="qvm-x-acl">tashma</AUni> -<AUni ws="qvm-x-akh">tashma</AUni> -<AUni ws="qvm-x-akl">tashma</AUni> -<AUni ws="qvm-x-ame">tashma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tashma</AUni> -<AUni ws="qvm-x-acl">*tashma</AUni> -<AUni ws="qvm-x-akh">*tashma</AUni> -<AUni ws="qvm-x-akl">*tashma</AUni> -<AUni ws="qvm-x-ame">*tashma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.825" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2c077d0e-4c3b-48c1-a65f-74b017f67ade" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tashma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dd87e268-0724-4645-8e21-e925831e9393" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5b9046d5-bca3-4092-ab90-6d5f30f385a6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tashma 
\entryTyp root 
\gENG 
\gSPN ramäda 
\e *tashma 
\c N0 
\ach tashma 
\akh tashma 
\acl tashma 
\akl tashma 
\ame tashma</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f7087b2a-c535-4e5e-9406-91f8fa19c79f" ownerguid="4006aab6-6c0d-46fa-9f18-c7631502e198"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">scratch</AUni> -<AUni ws="es">raspar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="392c217d-9126-4779-bdfa-9b6afe2a8fd8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="f70907c6-a064-425a-830f-e669319c38da" ownerguid="577017b0-ae87-4fa2-a51b-4f430497be75"> -<Abbreviation> -<AUni ws="en">4.5.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.245" /> -<DateModified val="2022-9-23 16:55:8.245" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to one person leading or controlling other people because they have authority over them.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>36 Guide, Discipline, Follow; 36A Guide, Lead</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Lead</AUni> -</Name> -<Questions> -<objsur guid="6f719625-393b-4294-a9a5-9b73272cf351" t="o" /> -<objsur guid="57c4f0db-8798-4f54-b36b-8fd43d851c77" t="o" /> -<objsur guid="4bf73bc3-08f2-483e-b62c-1dba26cc5e61" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="902cfcbe-6e42-4e55-b2a5-9146702fc16b" t="r" /> -<objsur guid="e931da8a-efc1-46cb-836a-72fba4a1eb4f" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="f70de4ff-24a1-4678-a339-a1f2f8145aba"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">libra</AUni> -<AUni ws="qvm-x-acl">libra</AUni> -<AUni ws="qvm-x-akh">libra</AUni> -<AUni ws="qvm-x-akl">libra</AUni> -<AUni ws="qvm-x-ame">libra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+librar</AUni> -<AUni ws="qvm-x-acl">+librar</AUni> -<AUni ws="qvm-x-akh">+librar</AUni> -<AUni ws="qvm-x-akl">+librar</AUni> -<AUni ws="qvm-x-ame">+librar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.84" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="25f93a53-4316-41b6-8c9a-89f21d27cc82" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+librar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d45483b7-7927-4e61-acf8-137469d4bfe6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1581acb1-e44f-4b39-adef-ff76dde6af5b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +librar 
\entryTyp root 
\gENG free 
\gSPN librar 
\e +librar 
\c V2 
\ach libra 
\akh libra 
\acl libra 
\akl libra 
\ame libra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f70e8b22-925e-4242-9ec0-4ae07aaf53cd" ownerguid="e29f56b2-9f1e-4998-b3d7-f79d03d23f8c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">teach(er)</AUni> -<AUni ws="es">profe(sor)</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8c961c92-b27e-4b7c-8cc4-fe3d3c1c634b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="f711d703-1eac-4059-b0da-24d34bd8df5e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">no</AUni> -<AUni ws="qvm-x-acl">no</AUni> -<AUni ws="qvm-x-akh">no</AUni> -<AUni ws="qvm-x-akl">no</AUni> -<AUni ws="qvm-x-ame">naw</AUni> -</Custom> -<AlternateForms> -<objsur guid="1c2afedd-b532-41e4-8eb0-9b00c2d75090" t="o" /> -<objsur guid="fc1f0877-b743-4df5-a5a8-46cbb5d422b9" t="o" /> -</AlternateForms> -<DateCreated val="2022-9-23 18:26:20.568" /> -<DateModified val="2022-10-16 15:27:47.114" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="11433051-3e59-4f5e-b9d2-7440143d0388" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">SIM1.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="97997a78-9c73-4b23-b19e-1a2681024e61" t="o" /> -<objsur guid="dbacef16-50cb-4f71-a590-54ec4684dfe4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d2016811-b963-456b-b802-8d0afd3f9e92" t="o" /> -<objsur guid="b67301f0-d6bd-4096-bac5-ec91f8e18c22" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx SIM1.2 
\entryTyp suffix 
\gENG SIM1 
\gSPN SIM1 
\e SIM1.2 
\c N0/N0 R0/R0 BN/BN 
\o 140 210 
\mp NeverChanged 
\ach no / _# 
\akh no / _# 
\acl no / _# 
\akl no / _# 
\ame naw / _# 
\mcc SIM1.2 / ~_ [sim1]</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f7155d52-ea52-4b6f-8353-479c737e6018" ownerguid="3f6dc9af-0c50-44d5-99f0-4aa67c668186"> -<ExampleWords> -<AUni ws="en">petroleum industry, oil company</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to working with oil and gas?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f7179bab-35f8-4461-8e4c-90bd09d111b3" ownerguid="1bbc977d-5778-450c-abfa-be746b255c3d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f717e33e-fff8-4d62-b1cb-bb860e2e69dd" ownerguid="e28f3f79-d4a5-402c-8a70-196856791078"> -<ExampleWords> -<AUni ws="en">deed, thing to do, something to do, what you do, act (n), action, activity, event, behavior, accomplishment, achievement, attainment, execution, exercise, function (n), job, implementation, measure, performance, practice (n), task, undertaking, work (n), workmanship, feat, exploits, operation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the thing that is done?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="f718fc15-59b2-4b6a-a9e3-39b3e8d487d7" ownerguid="444407f2-0c75-4bb9-a84c-cbd52d0fa9c9"> -<Abbreviation> -<AUni ws="en">2.6.4.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to people, animals, or plants growing and getting bigger.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>23K Grow, Growth</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Grow, get bigger</AUni> -</Name> -<OcmCodes> -<Uni>145 Ontogenetic Data; 856 Development and Maturation</Uni> -</OcmCodes> -<Questions> -<objsur guid="b2ffb193-46df-4bb9-82ab-3930c76d8c02" t="o" /> -<objsur guid="5938918c-eeb2-4384-aeab-158b7671c8be" t="o" /> -<objsur guid="5928d8b0-e327-49a5-9098-7ae1c853f173" t="o" /> -<objsur guid="b0f9506c-2af1-4c68-836c-82fe2f4f8719" t="o" /> -<objsur guid="5b17694c-ea2e-42bd-8f46-ef7e92452dc9" t="o" /> -<objsur guid="a73c5b13-cb71-43b1-b3aa-0c1c4cb93f46" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="7648040b-0aa5-4d9a-8f13-ffd066b81602" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="f7194a48-cac5-4f07-837a-2c493d97a2fd" ownerguid="7ff8d40d-32a6-44fc-a0b3-5edf046f89ba"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">empty.handed</AUni> -<AUni ws="es">sin.nada</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="93e7b860-a0c0-4f6f-9ecc-e88fabd11119" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f71a1961-9498-4647-a856-8b0628da101a" ownerguid="94f406f8-a186-4f07-ab69-7457479fd6a5"> -<Form> -<AUni ws="qvm-x-ach">gontsu</AUni> -<AUni ws="qvm-x-acl">gontsu; gontsu; gontso</AUni> -<AUni ws="qvm-x-akh">qontsu</AUni> -<AUni ws="qvm-x-akl">qontsu; qontsu; qontso</AUni> -<AUni ws="qvm-x-ame">quntsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="f71abb3b-cb3b-47b1-a381-d9a68f3c2cb7" ownerguid="d48899ec-a6b4-4750-9c89-fe15e96c3e44"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="c2d6859c-45b7-4aad-bc9d-ef0bfc80fe86" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">declare</AUni> -<AUni ws="es">declarar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="81927101-320c-4071-83e1-e68d25b441c4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f71da34c-b52c-433a-a337-1086b04bac53" ownerguid="a894d991-d5da-45a6-9c62-009133257f36"> -<ExampleWords> -<AUni ws="en">cramp, be bent over (with pain), doubled up (with pain), spasm</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to muscles cramping from pain?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="f722d2ad-9fdd-4e61-b49e-4012fa221957" ownerguid="2671d8b4-e4f0-4661-969e-e97efaee82ab"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 4.23 cëbashga chunca törucunata</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="f722da8f-21fb-40f1-b60a-4ae27590e796" ownerguid="79a33505-0c33-4e92-89b9-6a42e6ff2228"> -<ExampleWords> -<AUni ws="en">disappear, vanish, disappear without a trace, vanish into thin air, go missing, go out of sight, fade away, blend into, disappear from sight, dissolve into nothing, be just gone, fade from view, retire from sight, lose sight of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something disappearing?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f723f0a1-2f76-48ae-bb5e-8174c4bf8fa0" ownerguid="ae4b7642-8d6c-4ea1-ba9d-6726f18d12c4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="f726936c-02f0-4ca7-8c8f-dc44fde4948d" ownerguid="d56a5d54-9e54-49a6-9473-da133f47c02a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Wamräcuna geshpircushganami.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="f726d9bb-ae80-4c01-bdef-b600cb27736e" ownerguid="c82fa28f-7e26-489e-a244-4d69cea87b94"> -<Abbreviation> -<AUni ws="en">6.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.496" /> -<DateModified val="2022-9-23 16:55:8.496" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to business organization.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Business organization</AUni> -</Name> -<OcmCodes> -<Uni>470 Business and Industrial Organization; 471 Ownership and Control of Capital; 472 Individual Enterprise; 473 Corporate Organization; 474 Cooperative Organization; 475 State Enterprise; 476 Mutual Aid; 477 Competition</Uni> -</OcmCodes> -<Questions> -<objsur guid="a2b0a640-9941-45b2-9d30-2fcd4dedbed5" t="o" /> -<objsur guid="eb095bbc-f633-42c4-ae8b-ed265d12263c" t="o" /> -<objsur guid="33816680-2be1-4755-85ee-7dca98371497" t="o" /> -<objsur guid="bdfa9fff-47a7-4db7-91fe-4a8a8ae23551" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="0b98fb79-222f-418c-8107-5d4e791d329c" t="o" /> -<objsur guid="5c770098-2c91-4a9c-bfa0-a7ffaa871a7f" t="o" /> -<objsur guid="b33da469-fefa-44f3-b35c-d70411bfe7e1" t="o" /> -<objsur guid="cd436263-30a3-498c-93f6-3d5682f7f7c0" t="o" /> -<objsur guid="73726931-ef12-4d39-a76e-7742f4b7c9cd" t="o" /> -<objsur guid="a197dbfb-20e4-40c2-9c76-6abbeb1a9b12" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="f7281629-f8ed-4672-a055-02ab7730030f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tucru</AUni> -<AUni ws="qvm-x-acl">tucru; tucru; tucro</AUni> -<AUni ws="qvm-x-akh">tukru</AUni> -<AUni ws="qvm-x-akl">tukru; tukru; tukro</AUni> -<AUni ws="qvm-x-ame">tukru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tukru.n</AUni> -<AUni ws="qvm-x-acl">*tukru.n</AUni> -<AUni ws="qvm-x-akh">*tukru.n</AUni> -<AUni ws="qvm-x-akl">*tukru.n</AUni> -<AUni ws="qvm-x-ame">*tukru.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.975" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6bafe56f-0bbb-4139-9738-d8c9d5ec08c5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tukru.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bb7bc00e-495a-4069-88d0-970477a84199" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b18b54fd-1f5b-4130-9753-90c321ed95fb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tukru.n 
\entryTyp root 
\gENG staff 
\gSPN palo 
\e *tukru.n 
\c N0 
\ach tucru 
\akh tukru 
\acl tucru / _# 
\acl tucru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tucro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tukru / _# 
\akl tukru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tukro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tukru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f728295b-d202-43bb-8273-7cd7bd74d531" ownerguid="1de848f6-a750-4c73-9334-13d36b6d888a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">serve</AUni> -<AUni ws="es">servir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cc65327e-0bf0-4aec-8af9-8f858dbb7550" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="f7288a5e-3137-4dfb-a488-4470c71a6199" ownerguid="d7f7a5ed-d093-43ac-91a8-0a3bafc0fb1e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tithe</AUni> -<AUni ws="es">diezmo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="54a29776-6089-4d2e-9b6d-7cbb615345bd" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f72cb1b4-928f-4c14-aa2b-35d7c20daca7" ownerguid="e4517880-aa2d-4977-b55a-dcb0b6d1f533"> -<ExampleWords> -<AUni ws="en">good-looking, handsome, attractive, cute, hunky, rugged, striking, gorgeous, be a fine figure of a man, dashing</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a man who is beautiful?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="f732bdb5-9a04-468a-b50b-510f94d20fb4" ownerguid="44bf22fd-3725-4c49-bd3c-434402c33493"> -<Abbreviation> -<AUni ws="en">5.1.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.306" /> -<DateModified val="2022-9-23 16:55:8.306" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a table.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Table</AUni> -</Name> -<Questions> -<objsur guid="080d71ad-e083-4c78-9f75-4ba09ed027fd" t="o" /> -<objsur guid="8eed0d00-1053-4b36-a9c5-575a40034bdb" t="o" /> -<objsur guid="39d1a35e-b6d0-4c94-99c4-fb6150548912" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="f7343b16-4901-4473-9f2b-97498d63e0d9" ownerguid="5bdb3c06-fbee-4f5f-991a-e2128f65bb86"> -<ExampleWords> -<AUni ws="en">cosmetics, make-up</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to cosmetics?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f7351359-f388-49d3-aeb3-bede91061a8f" ownerguid="dfdb5f68-ba99-439d-a245-b57b84d41a1a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bee</AUni> -<AUni ws="es">abeja</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d6338cd1-7059-4742-a5d8-164d1a6eb4f3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f735995e-26b3-418e-9721-85afd86cccaf" ownerguid="d8366daf-ae1d-4b2c-a447-478c73580639"> -<ExampleWords> -<AUni ws="en">work style</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the way in which a person works?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f735b05b-c9bc-45cb-a47a-902193a5e236"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">contraparti; contraparte</AUni> -<AUni ws="qvm-x-acl">contraparti; contraparti; contraparte</AUni> -<AUni ws="qvm-x-akh">contraparti; contraparte</AUni> -<AUni ws="qvm-x-akl">contraparti; contraparti; contraparte</AUni> -<AUni ws="qvm-x-ame">contraparti; contraparte</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+contraparte</AUni> -<AUni ws="qvm-x-acl">+contraparte</AUni> -<AUni ws="qvm-x-akh">+contraparte</AUni> -<AUni ws="qvm-x-akl">+contraparte</AUni> -<AUni ws="qvm-x-ame">+contraparte</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.172" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fb30af3f-0eb3-49b6-93ba-8b062944e3b7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+contraparte</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="73e5fe08-dee8-4478-b626-587ce0c1bf1f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="344d884c-3580-4482-9e52-2089d94bb72a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +contraparte 
\entryTyp root 
\gENG 
\gSPN 
\e +contraparte 
\c N0 
\mp +FinalI 
\ach contraparti / ~_# 
\ach contraparte / _# 
\akh contraparti / ~_# 
\akh contraparte / _# 
\acl contraparti / ~_# 
\acl contraparti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl contraparte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl contraparti / ~_# 
\akl contraparti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl contraparte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame contraparti / ~_# 
\ame contraparte / _# 
\i PRO 18.17 Contrapartin declaraptinragmi imanog cashgantapis musyan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f73600aa-9ff5-4a20-87ff-b94d9c205de0" ownerguid="8cb720fd-07b9-4766-b12f-938b786413fe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dew</AUni> -<AUni ws="es">rocía</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="39c2d767-f01f-4f89-bfc7-b98f991c5af4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="f7365d38-5b9a-4709-be04-73e48a3a0a01" ownerguid="736b52c0-42be-49f6-95a2-0b567a9ea81a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bewitch</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="34e9aa91-0482-41e9-be44-acfe27e3184d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="PunctuationForm" guid="f736ddd0-5606-4bad-8f6d-19f6ee51035a"> -<Form> -<Str> -<Run ws="en">test</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="f7387a3f-2a9f-4837-a8d4-ba6d06fe7d6c" ownerguid="4405e74c-f64c-4609-8f7b-99ba563d659a"> -<ExampleWords> -<AUni ws="en">adopt, adoption</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to adopting a child?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f73928c2-ab4c-4528-be38-6d3b180b7615" ownerguid="00c2946f-882c-4da8-8759-d012bc0b8c2d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">topic</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="82a5aa20-638a-4a29-a843-924f7afd7f87" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="f73c1122-d434-4846-8351-2a8def2d4884" ownerguid="bd8ec5d0-ba23-4a90-a75c-e7ff3c5718ca"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sing</AUni> -<AUni ws="es">cantar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="de929a9d-f366-4fc8-ac1a-2d69767b70b3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="f740c422-4609-4d2a-be3c-276c06ca8d6a" ownerguid="81cca8b9-9d12-4d7b-a013-9fcdbe9dacf9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">percent</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1d203321-72af-48b5-9982-f6ac421a8c60" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="f7422014-f252-4852-91df-3743c9e88638"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bara:tu</AUni> -<AUni ws="qvm-x-acl">bara:tu; bara:tu; bara:to</AUni> -<AUni ws="qvm-x-akh">bara:tu</AUni> -<AUni ws="qvm-x-akl">bara:tu; bara:tu; bara:to</AUni> -<AUni ws="qvm-x-ame">bara:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+barato</AUni> -<AUni ws="qvm-x-acl">+barato</AUni> -<AUni ws="qvm-x-akh">+barato</AUni> -<AUni ws="qvm-x-akl">+barato</AUni> -<AUni ws="qvm-x-ame">+barato</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.941" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9c6f7a28-8912-4d0b-ac82-c8dfa7d5ca79" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+barato</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9467a1c4-d24a-48a6-aa7e-c351c2be356d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2ffda0b5-f5b3-4d1c-a920-e59249678f64" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +barato 
\entryTyp root 
\gENG inexpensive 
\gSPN barato 
\e +barato 
\c N0 
\ach bara:tu 
\akh bara:tu 
\acl bara:tu / _# 
\acl bara:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl bara:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl bara:tu / _# 
\akl bara:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl bara:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame bara:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f7427ec0-aa89-47aa-a7fc-ef44b153c1e1" ownerguid="72274e9d-5d3c-4ae7-93ab-db3617cdda1e"> -<ExampleWords> -<AUni ws="en">feel, touch, palpate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to deliberately trying to feel something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f74b3e92-fdc5-47c0-a223-16dc0f80387b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">dirección; direccion</AUni> -<AUni ws="qvm-x-acl">dirección; direccion</AUni> -<AUni ws="qvm-x-akh">dirección; direccion</AUni> -<AUni ws="qvm-x-akl">dirección; direccion</AUni> -<AUni ws="qvm-x-ame">dirección; direccion</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+dirección</AUni> -<AUni ws="qvm-x-acl">+dirección</AUni> -<AUni ws="qvm-x-akh">+dirección</AUni> -<AUni ws="qvm-x-akl">+dirección</AUni> -<AUni ws="qvm-x-ame">+dirección</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.416" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="dc18ce61-6e2a-4762-bb04-88dbd18a0323" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+dirección</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="795d694f-a01b-458b-b463-b36d5de3419a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cea1a25e-1b2a-405b-9600-72f82007034a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +dirección 
\entryTyp root 
\gENG direction 
\gSPN dirección 
\e +dirección 
\c N0 
\mp +FinalC 
\ach dirección / _# 
\ach direccion / ~_# 
\akh dirección / _# 
\akh direccion / ~_# 
\acl dirección / _# 
\acl direccion / ~_# 
\akl dirección / _# 
\akl direccion / ~_# 
\ame dirección / _# 
\ame direccion / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f74c2855-4bb5-4935-896e-f5b8de269337" ownerguid="ea17aba7-6d4e-4dbf-89ea-84a1b1c47647"> -<ExampleWords> -<AUni ws="en">expand, inflate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a container becoming big?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f74e312d-cafc-41d3-a8e9-76eaa8c9bbd4" ownerguid="e66ff615-20cc-4db8-88d1-7632e4644782"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="f74f28d1-8742-4c9f-95dc-d08336e91249" ownerguid="444407f2-0c75-4bb9-a84c-cbd52d0fa9c9"> -<Abbreviation> -<AUni ws="en">2.6.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a youth.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Youth</AUni> -</Name> -<OcmCodes> -<Uni>881 Puberty and Initiation; 882 Status of Adolescents; 883 Adolescent Activities; 884 Majority</Uni> -</OcmCodes> -<Questions> -<objsur guid="df83bcee-9977-4b4e-a4f3-1ce12c16308d" t="o" /> -<objsur guid="5decc7c7-c05c-494a-ba65-4336d25fa2fe" t="o" /> -<objsur guid="d66246e1-4c51-47ea-bc72-4cffa280aecb" t="o" /> -<objsur guid="6604e4db-da09-4c9e-958b-253e24e8f34e" t="o" /> -<objsur guid="304df4f5-a9ba-40ec-82b0-f24ae363e238" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="0d38c343-9c51-47fe-a367-ffadfc92c507" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="f7505053-1254-4263-a62e-44406f20e5af" ownerguid="375a69e7-cdcf-492f-be86-470a6093a206"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f750e8f3-559c-4f6a-92e7-159699156a2a" ownerguid="44dc42e4-e9c7-4aa9-ac9b-1008385244b1"> -<ExampleWords> -<AUni ws="en">stepmother</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) If your mother dies and your father remarries, what do you call your father's second wife?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f7555796-4f68-4e92-a90b-36d1248e501a" ownerguid="83adeb9d-c0be-4073-894d-913014420280"> -<ExampleWords> -<AUni ws="en">well done</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe an action that is good?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f75570b1-6054-4102-b1e6-fe0688a25944" ownerguid="f41044c3-dd97-4d74-92ee-890be76e7ad4"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="f7581dc1-442e-4c58-b01c-0794abd6404f" ownerguid="9edd1d74-f08a-4f5e-a196-3478c9a9d111"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="2ee3bb41-0248-41aa-b352-b8a1927cd48d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f7583bcb-5218-4c7c-b6a8-275eb7f9deb9" ownerguid="0b1ed66f-f00d-4fd7-844f-91400e4a2bf4"> -<Form> -<AUni ws="qvm-x-ach">täbanu</AUni> -<AUni ws="qvm-x-acl">täbanu; täbanu; täbano</AUni> -<AUni ws="qvm-x-akh">täbanu</AUni> -<AUni ws="qvm-x-akl">täbanu; täbanu; täbano</AUni> -<AUni ws="qvm-x-ame">täbanu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f75d287a-e4b0-47b9-959f-28e7a075edc3" ownerguid="efef45bd-26be-46f8-b85b-424be55bcdac"> -<ExampleWords> -<AUni ws="en">new, newly discovered, fresh</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something that has just been discovered?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f763a3ad-63b0-4a0e-a133-3c71d79d27b1" ownerguid="d22b41bd-20ca-4e70-b7ed-90f4460a44dc"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="25473cff-26f2-435b-a571-f0d79fbf9108" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="f76409fc-cfcc-4bff-9751-64b7cfdbcae9"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">waquin</AUni> -<AUni ws="qvm-x-acl">waquin; waquin; waquen</AUni> -<AUni ws="qvm-x-akh">wakin</AUni> -<AUni ws="qvm-x-akl">wakin; wakin; waken</AUni> -<AUni ws="qvm-x-ame">wakin</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wakin</AUni> -<AUni ws="qvm-x-acl">*wakin</AUni> -<AUni ws="qvm-x-akh">*wakin</AUni> -<AUni ws="qvm-x-akl">*wakin</AUni> -<AUni ws="qvm-x-ame">*wakin</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.444" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a1c52410-eeaf-4a07-a90e-7ace5fa1b54c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wakin</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="956d4695-6d03-4690-9e9d-32d227b5cbf4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="475813ec-1e75-49a8-a078-7aece18f01b6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wakin 
\entryTyp root 
\gENG others 
\gSPN otros 
\e *wakin 
\c N0 
\mp +FinalC 
\ach waquin 
\akh wakin 
\acl waquin / _# 
\acl waquin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl waquen +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl wakin / _# 
\akl wakin +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl waken +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame wakin</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f7646515-273f-4390-b7ef-5c424c2c1551"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mamayru</AUni> -<AUni ws="qvm-x-acl">mamayru; mamayru; mamayro</AUni> -<AUni ws="qvm-x-akh">mamayru</AUni> -<AUni ws="qvm-x-akl">mamayru; mamayru; mamayro</AUni> -<AUni ws="qvm-x-ame">mamayru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mamayru</AUni> -<AUni ws="qvm-x-acl">*mamayru</AUni> -<AUni ws="qvm-x-akh">*mamayru</AUni> -<AUni ws="qvm-x-akl">*mamayru</AUni> -<AUni ws="qvm-x-ame">*mamayru</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.295" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f7c468d2-af6c-4f07-b261-bd1fc7f76a16" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mamayru</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cb581b8b-64e4-445d-a2bb-84aa20283f71" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5094852e-23ec-4744-9de0-0d5b7f044594" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mamayru 
\entryTyp root 
\gENG 
\gSPN 
\e *mamayru 
\c N0 
\ach mamayru 
\akh mamayru 
\acl mamayru / _# 
\acl mamayru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl mamayro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl mamayru / _# 
\akl mamayru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl mamayro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame mamayru</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f76642fe-8c03-4ad8-9199-30549da09153" ownerguid="8652a3b2-1bcd-4c6b-a0b5-89f621dbdb6d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f76a8805-9c29-4675-bdfb-81791d2c4a11"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lagpi</AUni> -<AUni ws="qvm-x-acl">lagpi; lagpi; lagpe</AUni> -<AUni ws="qvm-x-akh">laqpi</AUni> -<AUni ws="qvm-x-akl">laqpi; laqpi; laqpe</AUni> -<AUni ws="qvm-x-ame">laqpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llaqpi</AUni> -<AUni ws="qvm-x-acl">*llaqpi</AUni> -<AUni ws="qvm-x-akh">*llaqpi</AUni> -<AUni ws="qvm-x-akl">*llaqpi</AUni> -<AUni ws="qvm-x-ame">*llaqpi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.162" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f8ec690e-7321-4e01-935a-5898efd0c6ea" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llaqpi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="36ff60dd-26f3-410d-aada-b53c8fb77601" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3d8c04c7-725a-4bd2-a81a-2a7817beb710" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llaqpi 
\entryTyp root 
\gENG 
\gSPN perro.orejón 
\e *llaqpi 
\c N0 
\mp +FinalI 
\ach lagpi 
\akh laqpi 
\acl lagpi / _# 
\acl lagpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lagpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl laqpi / _# 
\akl laqpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl laqpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame laqpi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f76b5b21-08c5-4e20-b31c-de5a46a6764d" ownerguid="8bb58704-789a-46f5-ab16-d428dc73e4ba"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="f76c3803-1c7a-4181-9a87-64ae7231a67d" ownerguid="2dca9338-85cb-4f58-b40d-d2d759e8edd6"> -<Abbreviation> -<AUni ws="en">8.5.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.660" /> -<DateModified val="2022-9-23 16:55:8.660" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that refer to a place in relation to the speaker or listener.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>83A Here, There</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Here, there</AUni> -</Name> -<Questions> -<objsur guid="5ad5a1e4-4dba-43f2-8be5-caa2ce6c3390" t="o" /> -<objsur guid="6d5a149c-299a-4952-bea4-af38996f6de3" t="o" /> -<objsur guid="ca9b46fe-42b1-42b0-9c5e-0a040a32d929" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="70f80041-af88-4521-9ebd-21d8f0b0d131" t="o" /> -<objsur guid="b8fc54d8-afd2-4ef8-b811-efb8aa7064db" t="o" /> -<objsur guid="86287a4c-0d64-4f28-9a5c-17fb9df37ab6" t="o" /> -<objsur guid="2265a4bd-379d-4a9d-80d5-2318e6c8c683" t="o" /> -<objsur guid="8596f086-ee46-4245-8d45-2171a60e19e4" t="o" /> -<objsur guid="d2001c9c-3c37-4910-8b8a-adcffc6fbf26" t="o" /> -<objsur guid="2c143278-3ea0-49c6-9e50-e0bf7c8cf4e2" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="f76d990f-6d91-4342-8e57-fa966b41118d" ownerguid="d83ebe2c-c1d6-49ec-a4a9-1cdced843387"> -<ExampleWords> -<AUni ws="en">be unresponsive, be like dead</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What are the symptoms of being unconscious?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="f77053f4-ed5a-4376-bcba-17552ea447ba" ownerguid="889de305-82ad-4d1a-9a97-63733ed27bfc"> -<Abbreviation> -<AUni ws="en">6.1.2.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.365" /> -<DateModified val="2022-9-23 16:55:8.365" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to preparing something so that it can be used for some purpose.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Prepare something for use</AUni> -</Name> -<Questions> -<objsur guid="aed63161-ca1b-4ebd-a4c6-e0ce946a98ff" t="o" /> -<objsur guid="87c1d1e6-79e0-4efd-bc73-19e5a382b009" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="f7706644-542f-4fcb-b8e1-e91d04c8032a" ownerguid="ba06de9e-63e1-43e6-ae94-77bea498379a"> -<Abbreviation> -<AUni ws="en">2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.32" /> -<DateModified val="2022-9-23 16:55:8.32" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words related to the condition of the body.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Body condition</AUni> -</Name> -<OcmCodes> -<Uni>147 Physiological Data</Uni> -</OcmCodes> -<Questions> -<objsur guid="1f033a1a-7246-4d7d-a6f3-43696ce08e73" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="08c05e00-9660-4491-af2f-a05fab27ef39" t="r" /> -<objsur guid="0aae1951-4d5b-45a0-853c-1839764c9862" t="r" /> -<objsur guid="32bebe7e-bdcc-4e40-8f0a-894cd6b26f25" t="r" /> -<objsur guid="45d867c7-8496-4c92-bb41-b7db5db47717" t="r" /> -<objsur guid="b844d2f8-d3ef-4605-b038-8bc0a2cff0af" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="e949f393-2a5b-4792-af8f-75138322ceee" t="o" /> -<objsur guid="94af09fa-ff23-433b-a881-ceaca87d9d18" t="o" /> -<objsur guid="2daede19-ce5f-46b6-ae68-32d6092441f1" t="o" /> -<objsur guid="b5700ad7-36a1-4608-8789-8f84007244f8" t="o" /> -<objsur guid="2c401e7f-6ce9-470f-b6b6-fadf7a798536" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="f77172f4-dd8d-4624-9b2c-c0aaf9303635" ownerguid="044eef17-ef15-46c5-9ff5-83b31c637421"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="982c6de9-16bc-4ef0-91b9-7ddaad787d06" t="o" /> -<objsur guid="729d5bbc-0dbb-484d-adb9-77b642f98675" t="o" /> -<objsur guid="1e8c42f3-f8ef-4052-847c-0af4336ab3ca" t="o" /> -<objsur guid="17f1cbee-937d-495a-88fe-b340cd60bb92" t="o" /> -<objsur guid="6e5f6b43-a1d1-4140-84ee-f75c45c1a873" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="f772fe56-0a71-4efd-986c-cc71715132b1" ownerguid="499691fd-d2e5-4781-ae2b-a09eebef1440"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="f779c97c-2a7e-44db-ba91-5bb7a5014e29" ownerguid="2d1ea615-677d-4f84-963f-84f43f5bb154"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="f77a7391-2743-4542-ade8-0beaf30bdfe5" ownerguid="b541715e-a327-4ee0-91ba-c7a83d22314a"> -<Form> -<AUni ws="qvm-x-ach">löcu</AUni> -<AUni ws="qvm-x-acl">löcu; löcu; löco</AUni> -<AUni ws="qvm-x-akh">löcu</AUni> -<AUni ws="qvm-x-akl">löcu; löcu; löco</AUni> -<AUni ws="qvm-x-ame">löcu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f77a848d-36a2-4972-a458-368d85d74627" ownerguid="73b959ab-0229-4710-af99-dfc9b5370540"> -<ExampleWords> -<AUni ws="en">increase, raise, swell</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to causing something to become larger in degree?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f77cbd99-a6d9-4094-9694-8c77fc2a71b5" ownerguid="50ac28ab-7385-408f-b5eb-3e27b191fcf4"> -<ExampleWords> -<AUni ws="en">publication, edition, issue</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something that has been published?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f77f3ff0-27cb-4087-a81f-38481c286786" ownerguid="bf25931d-4760-4c66-abe8-c05a6dc5adbe"> -<ExampleWords> -<AUni ws="en">dip, immerse, dunk, baptize, plunge, submerge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to putting something in water?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="f77fd6a4-0a27-4b86-8744-6616143af5e7" ownerguid="1efaf16c-79c2-436c-b3ed-44622e265b50"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="a779aca5-a3f3-4f30-a0b4-1e4d90b33fec" t="o" /> -<objsur guid="89e3b0e9-c8d0-4b27-9e16-d3ca29909f8f" t="o" /> -<objsur guid="028754df-5f99-4f4a-a9da-c3e763700ee1" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="f7833042-cd10-42c1-9507-945e3c043f96"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wasqui:lla</AUni> -<AUni ws="qvm-x-acl">wasqui:lla</AUni> -<AUni ws="qvm-x-akh">waski:lla</AUni> -<AUni ws="qvm-x-akl">waski:lla</AUni> -<AUni ws="qvm-x-ame">waski:lla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waski:lla</AUni> -<AUni ws="qvm-x-acl">*waski:lla</AUni> -<AUni ws="qvm-x-akh">*waski:lla</AUni> -<AUni ws="qvm-x-akl">*waski:lla</AUni> -<AUni ws="qvm-x-ame">*waski:lla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.556" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="04f9789b-701b-4e75-ab35-4387f404815b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waski:lla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="74bfc3ea-c9ee-4941-8ad8-7ce0d2253fc6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e1014fd4-d0f7-488e-89a6-d5effcea44c3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waski:lla 
\entryTyp root 
\gENG cord 
\gSPN soga 
\e *waski:lla 
\c N0 
\ach wasqui:lla 
\akh waski:lla 
\acl wasqui:lla 
\akl waski:lla 
\ame waski:lla</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="f786786c-783e-4736-ae68-ed1a8dfd8a53" ownerguid="b06da719-78bd-4bc2-9d9b-356e57b5d3ac"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="b71ea717-8665-4825-86a7-74964405872b" t="o" /> -<objsur guid="0e2e3259-45c4-4706-af1b-b0e21ae26a1e" t="o" /> -<objsur guid="6d4b6fa3-2c58-4abb-8ac3-9d2cf2df5215" t="o" /> -<objsur guid="b88a1d58-697a-4f0c-8574-66086e8ab198" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="f786a75d-c48a-4863-ba03-36ed17df57bb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsanca</AUni> -<AUni ws="qvm-x-acl">tsanca</AUni> -<AUni ws="qvm-x-akh">tsanka</AUni> -<AUni ws="qvm-x-akl">tsanka</AUni> -<AUni ws="qvm-x-ame">tsanka</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chanka.r</AUni> -<AUni ws="qvm-x-acl">*chanka.r</AUni> -<AUni ws="qvm-x-akh">*chanka.r</AUni> -<AUni ws="qvm-x-akl">*chanka.r</AUni> -<AUni ws="qvm-x-ame">*chanka.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.274" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a71bd3ac-7b67-49a2-aaf5-ab310976f7ec" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chanka.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="90a16ab4-09de-4d2a-b450-357f9d83c943" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cfd51236-7258-4292-ac51-a3de33ff28ea" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chanka.r 
\entryTyp root 
\gENG totter 
\gSPN ? 
\e *chanka.r 
\c R0 
\ach tsanca 
\akh tsanka 
\acl tsanca 
\akl tsanka 
\ame tsanka</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f7898fa0-6627-4815-b5ed-e8ede708ae65" ownerguid="2e09535f-f61f-4ff5-8d56-23c2916cbb7f"> -<ExampleWords> -<AUni ws="en">rough, uneven, rutted, grooved, scraped up, scratched, corrugated</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is rough?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="f789b895-446f-4fe5-83cb-8ec31d41a17e" ownerguid="8adc2568-cd8b-4015-b533-e20686c33474"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="56ece33c-ed45-4255-bcd9-265eb9a6bbc4" t="r" /> -</Morph> -<Msa> -<objsur guid="66cd71e5-1aab-43dd-b0eb-804550a34460" t="r" /> -</Msa> -<Sense> -<objsur guid="7cd134ea-89c1-4a60-8992-dcac673bd263" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="f78ac757-fee4-48fa-b766-f5f4a715efe4" ownerguid="ff029102-3adb-440f-a061-2c56e88db807"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">goal</AUni> -<AUni ws="es">gol</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c20173d0-9f53-4504-b735-a8b68f595b7c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="f78df27e-8a4c-4be1-8696-ba8a287ce2e4" ownerguid="d69a1c2f-1e1a-455e-bdf0-3d3a4099719c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="faf6dc50-1d33-41e9-912a-08e7d8460096" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="d7c13da8-4f46-406c-becb-decd50f0c7fc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="f78e1a92-98c0-4af0-b3a4-2773f415d3a6" ownerguid="8323cb77-8d19-44e9-b38c-ecfc2c78c0df"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">house</AUni> -<AUni ws="es">casa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="87a61372-b529-41d0-892b-ca33273dc85c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="f78fe00a-c953-4584-b118-9ff7786c2516" ownerguid="9f0feef6-9a5f-4a9a-9a1d-9ee2874e71ee"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">be.lacking</AUni> -<AUni ws="es">faltar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="45c2a471-8633-4a6d-aa46-08d73f88f084" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f792327a-e003-4699-8f8c-7a08cc9b5c8f" ownerguid="f883266a-146a-41c7-b1db-85120840c3a8"> -<ExampleWords> -<AUni ws="en">impossible, not possible, can't, couldn't, impossibility, inconceivable, unthinkable, by any/no stretch of the imagination, there's no way</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate that something cannot happen?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f7933943-17ba-4dab-9f1e-37b66d0537d4" ownerguid="db4d08c6-10bb-4f11-91c0-6b4949c9c7ea"> -<Form> -<AUni ws="qvm-x-ach">usa</AUni> -<AUni ws="qvm-x-acl">usa</AUni> -<AUni ws="qvm-x-akh">usa</AUni> -<AUni ws="qvm-x-akl">usa</AUni> -<AUni ws="qvm-x-ame">usa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="f7935832-77ff-4cb7-afca-64851adde3e6" ownerguid="aae9abba-b532-4791-baee-79e7ca97789d"> -<Form> -<AUni ws="qvm-x-ach">merenda</AUni> -<AUni ws="qvm-x-acl">merenda</AUni> -<AUni ws="qvm-x-akh">merenda</AUni> -<AUni ws="qvm-x-akl">merenda</AUni> -<AUni ws="qvm-x-ame">merenda</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexExampleSentence" guid="f794861f-e80b-4ceb-a0e9-e32e7eed02b9" ownerguid="c66523e5-9cdd-49d4-9a8e-0895ffdc69b4"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">DAN 7.2 Tsaynog pulchagyaycargan cay patsacho chuscun lädupita wayracuna quiquinpura chöcaptinmi.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="f794de87-f1ae-4f15-a868-929fb3f8390f" ownerguid="70f9e69f-bcd4-45e6-87a1-ddbf2ae42402"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rent</AUni> -<AUni ws="es">alquilar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b36a309a-2a16-4645-9517-1f67ffdc2162" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="f79585cc-02e5-4d3c-adf8-b215e91c87d4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">manta</AUni> -<AUni ws="qvm-x-acl">manta</AUni> -<AUni ws="qvm-x-akh">manta</AUni> -<AUni ws="qvm-x-akl">manta</AUni> -<AUni ws="qvm-x-ame">manta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*manta.n</AUni> -<AUni ws="qvm-x-acl">*manta.n</AUni> -<AUni ws="qvm-x-akh">*manta.n</AUni> -<AUni ws="qvm-x-akl">*manta.n</AUni> -<AUni ws="qvm-x-ame">*manta.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.315" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d2d8d727-969a-4228-9e48-4f41e212f4f8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*manta.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="daeae38c-e9b2-4d12-b11b-606c9d6885c4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8bf87e1b-057d-448d-a8ec-3e325b7b8435" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *manta.n 
\entryTyp root 
\gENG 
\gSPN 
\e *manta.n 
\c N0 
\ach manta 
\akh manta 
\acl manta 
\akl manta 
\ame manta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f795865f-2c5f-46fa-9459-82844955f9fe" ownerguid="99861dcb-c6ca-4e50-a19a-efadbb10c2cf"> -<ExampleWords> -<AUni ws="en">old, former</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words describe something or someone that has been replaced by a new one?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="f7960e84-5af9-4999-9028-783058aa8c5c" ownerguid="c6c772af-7b6b-4393-b0da-5b4a329d3426"> -<Abbreviation> -<AUni ws="en">8.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.569" /> -<DateModified val="2022-9-23 16:55:8.569" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to all.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>59C All, Any, Each, Every</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">All</AUni> -</Name> -<Questions> -<objsur guid="1b147dc1-3e31-4e83-83c7-78930d8d1df1" t="o" /> -<objsur guid="0e04679a-d7aa-4ad9-9e15-505731758eba" t="o" /> -<objsur guid="b1588da0-653f-4fb1-9cea-51f7e8267ca1" t="o" /> -<objsur guid="ab6dd916-7d66-4576-9d4b-a1f89f57ddd0" t="o" /> -<objsur guid="04066a90-a844-4edc-a410-3754685a636f" t="o" /> -<objsur guid="1dd5bac4-4572-447a-a56e-d54b9b37b0fc" t="o" /> -<objsur guid="bf5fb03f-602b-486a-aec5-69ff2303a0bf" t="o" /> -<objsur guid="15731398-b289-4b32-b931-6ecd898f990d" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="cbcff912-e1c2-4d9b-9938-85d73e7e7265" t="o" /> -<objsur guid="bfbfb9b5-363d-4767-a5cb-1b11b348efd6" t="o" /> -<objsur guid="bbb21324-089d-4368-a2ac-37c6bbfcbffc" t="o" /> -<objsur guid="d1687857-0f1d-4098-affb-b283a6677b6b" t="o" /> -<objsur guid="0aaacffe-9b6c-49a7-bf68-c0f9ff3e120e" t="o" /> -<objsur guid="afdd8b8e-9502-4d06-94ee-e79815b65750" t="o" /> -<objsur guid="e94a5cf3-1fd4-4b52-902f-bbf0ad6bac2b" t="o" /> -<objsur guid="8f4c9266-a025-4b7a-bd67-fe0c043bf6f5" t="o" /> -<objsur guid="3389561c-f264-48b9-b94c-86c33fc3c423" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="f797b5f5-560d-4430-8824-7b519ca73ee9" ownerguid="58612712-8f51-48ce-9819-e766effbb009"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="bcf74226-0f9e-4581-ba34-e4910849819a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="f79a1999-42df-440c-9521-c0e75f3e2d2d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">versu</AUni> -<AUni ws="qvm-x-acl">versu; verso</AUni> -<AUni ws="qvm-x-akh">versu</AUni> -<AUni ws="qvm-x-akl">versu; verso</AUni> -<AUni ws="qvm-x-ame">versu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+versar</AUni> -<AUni ws="qvm-x-acl">+versar</AUni> -<AUni ws="qvm-x-akh">+versar</AUni> -<AUni ws="qvm-x-akl">+versar</AUni> -<AUni ws="qvm-x-ame">+versar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.373" /> -<DateModified val="2022-10-10 21:18:47.205" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="836a036f-5e2a-4020-9ae4-8ae7f9eaf09b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+versar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="70cecfb2-2968-4408-8e95-950dbd49d11c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3a9aafc5-9af2-4a5e-a2ed-34cf2052b109" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +versar 
\entryTyp root 
\gENG 
\gSPN 
\e +versar 
\c V1 
\ach versu 
\akh versu 
\acl versu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl verso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl versu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl verso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame versu 
\i 2SA 23.1 Pay versushganmi caynog nin:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f79c7fb8-fa27-425f-9135-9d5a37a090ad" ownerguid="75202262-cdba-4c43-9343-764c84138797"> -<ExampleWords> -<AUni ws="en">granduncle, grandaunt, great-uncle, great-aunt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a brother or sister of one of your grandparents?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="f79efd2f-a6af-441c-9cfe-f3de868e5800"> -<Analyses> -<objsur guid="822f98ef-e788-4b74-9c6a-956f8c65efc0" t="o" /> -</Analyses> -<Checksum val="-1609148589" /> -<Form> -<AUni ws="qvm-x-akh">qam</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="f7a2530d-30ce-4051-bd21-747edfaeb6ac" ownerguid="81e6851d-4716-4b52-8631-ac1e5a70c9e5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">put.together</AUni> -<AUni ws="es">poner</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="af388a70-dc49-4010-a2a4-a26747262d8d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f7a79558-dbfb-4ee4-8f49-362776ecfc5c" ownerguid="a19e219a-6cc1-4057-a8d9-18554ae88de1"> -<ExampleWords> -<AUni ws="en">comfort, soothe, cuddle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to comforting a baby when it is crying?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f7a8809e-df79-4b19-88bb-7e1787c26c2a" ownerguid="6804db44-b71b-4452-98b1-b726bc7cf022"> -<ExampleWords> -<AUni ws="en">loud, raucous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe a loud voice?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f7b0270c-ffe3-4974-84d5-59ef1fb4a7b4" ownerguid="f899802d-bd32-427f-a101-c84219f7e14e"> -<ExampleWords> -<AUni ws="en">natural resources, raw materials</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something found naturally that people could use?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f7b1a38e-245d-4070-930a-8651aed1610b" ownerguid="db93fc79-58d1-4d3d-8fe1-f5cce38ef679"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">watch</AUni> -<AUni ws="es">reloj</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8b092bc0-61c9-4d00-b963-b84e022b4d1d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="f7b29046-5b1d-42d0-9a2e-386a140c6172"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">logya; logya:</AUni> -<AUni ws="qvm-x-acl">logya; logya:</AUni> -<AUni ws="qvm-x-akh">loqya; loqya:</AUni> -<AUni ws="qvm-x-akl">loqya; loqya:</AUni> -<AUni ws="qvm-x-ame">luqya; luqya:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lluqya:</AUni> -<AUni ws="qvm-x-acl">*lluqya:</AUni> -<AUni ws="qvm-x-akh">*lluqya:</AUni> -<AUni ws="qvm-x-akl">*lluqya:</AUni> -<AUni ws="qvm-x-ame">*lluqya:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.235" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3a356d55-270d-4e5e-a671-a04c64f28927" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lluqya:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1fb07df4-66f9-4162-9332-d09244792585" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4e2c8f58-2128-4064-af20-aa45f1a9cedd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lluqya: 
\entryTyp root 
\gENG spoiled 
\gSPN huero 
\e *lluqya: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach logya foreshortened 
\ach logya: 
\akh loqya foreshortened 
\akh loqya: 
\acl logya foreshortened 
\acl logya: 
\akl loqya foreshortened 
\akl loqya: 
\ame luqya foreshortened 
\ame luqya:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="f7b33ab0-b678-4183-b083-4539b597b85f" ownerguid="aad2eee6-db17-49f3-bbc7-3fe7f26c4553"> -<Form> -<AUni ws="qvm-x-ach">wacatay</AUni> -<AUni ws="qvm-x-acl">wacatay</AUni> -<AUni ws="qvm-x-akh">wakatay</AUni> -<AUni ws="qvm-x-akl">wakatay</AUni> -<AUni ws="qvm-x-ame">wakatay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="f7b79639-5f7d-429d-bdec-13366787b55e"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Diosnikipis</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="f7b7eb3c-b784-4ba5-8dac-a68fd27ce0ea" ownerguid="025da6f4-b1b6-423a-8c0f-b324f531a6f1"> -<Abbreviation> -<AUni ws="en">1.5.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.978" /> -<DateModified val="2022-9-23 16:55:7.978" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to plant diseases.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Plant diseases</AUni> -</Name> -<OcmCodes> -<Uni>137c Parasites</Uni> -</OcmCodes> -<Questions> -<objsur guid="8a70180e-c0c6-4e5f-8584-ae384ddcc3c6" t="o" /> -<objsur guid="3aae052e-2daa-4ad3-beb6-3772850747f7" t="o" /> -<objsur guid="e0bb119e-850f-4a9e-88c9-16874082db70" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="f7b8a9af-54ff-413c-91e6-a0f3a98c66eb" ownerguid="c129027b-a0b4-4fb6-b324-ec6469dfe073"> -<Form> -<AUni ws="qvm-x-ach">ángel; angil</AUni> -<AUni ws="qvm-x-acl">ángel; angil; angel</AUni> -<AUni ws="qvm-x-akh">ángel; angil</AUni> -<AUni ws="qvm-x-akl">ángel; angil; angel</AUni> -<AUni ws="qvm-x-ame">ángel; angil</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f7be9cda-c7e3-43e1-b8e7-34d700958d5a" ownerguid="ee9eede3-1b1e-4290-bae4-cc5739488bd7"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="f7bebc37-3afc-4fec-bf72-67cbf5638c1f" ownerguid="b58ab18c-6ecb-420d-b1a2-2269f99dd788"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">grassy.area</AUni> -<AUni ws="es">pampa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3dbfae5b-0639-4b39-98d2-47ad6fe2330f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f7bf1a71-f8e6-432f-8ddd-351d0e3b2fae" ownerguid="a22d5c1c-daed-4e7a-8243-493f2d841314"> -<ExampleWords> -<AUni ws="en">intense, intensely, extensively</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used to indicate that something is being done intensely?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f7bf674c-b141-4b12-b04f-7a5c8b44877f" ownerguid="06b23bcd-69df-471a-b5a5-4ca8cab7f0d9"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">The book <is about> the President.; The meeting <is about> the schedule.; The story <depicts> the life of the President.; The story <presents> a view of the President.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">be about something, concern, deal with, be concerned with, center on, focus on, address, cover, depict, discuss, dwell on, present, portray, treat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being about something or someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f7c091da-3864-40ff-8b35-a6a0525ea0a2" ownerguid="089e5530-5add-47ed-9ac8-58cfa08e0536"> -<Form> -<AUni ws="qvm-x-ach">torta</AUni> -<AUni ws="qvm-x-acl">torta</AUni> -<AUni ws="qvm-x-akh">torta</AUni> -<AUni ws="qvm-x-akl">torta</AUni> -<AUni ws="qvm-x-ame">torta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="f7c11fd3-aae3-478b-979c-69c0e6e3b94f" ownerguid="dc6e0d2d-7fae-4330-9334-15de85a2f115"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="530be12f-602e-4d07-821a-4eb727cef400" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f7c2ccad-a7f0-4af5-adcc-e356b1988196" ownerguid="91ddf495-a28b-4a32-90dc-6f997d0cd069"> -<ExampleWords> -<AUni ws="en">musical instrument, band instrument</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What is the general term for musical instrument?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f7c383bb-cd17-4b23-a680-5466ecf8a469" ownerguid="d32fda34-6a18-4483-bba0-61fde014f904"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="f7c468d2-af6c-4f07-b261-bd1fc7f76a16" ownerguid="f7646515-273f-4390-b7ef-5c424c2c1551"> -<Form> -<AUni ws="qvm-x-ach">mamayru</AUni> -<AUni ws="qvm-x-acl">mamayru; mamayru; mamayro</AUni> -<AUni ws="qvm-x-akh">mamayru</AUni> -<AUni ws="qvm-x-akl">mamayru; mamayru; mamayro</AUni> -<AUni ws="qvm-x-ame">mamayru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f7c5ba10-24c4-4c2f-bd33-524a312e1ff8" ownerguid="079baa9c-b3ac-4881-bca2-7baf6825906d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f7c5dc00-e7bc-4a8c-900e-ca97b4b96d0e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wayna; wayna:</AUni> -<AUni ws="qvm-x-acl">wayna; wayna:</AUni> -<AUni ws="qvm-x-akh">wayna; wayna:</AUni> -<AUni ws="qvm-x-akl">wayna; wayna:</AUni> -<AUni ws="qvm-x-ame">wayna; wayna:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wayna:</AUni> -<AUni ws="qvm-x-acl">*wayna:</AUni> -<AUni ws="qvm-x-akh">*wayna:</AUni> -<AUni ws="qvm-x-akl">*wayna:</AUni> -<AUni ws="qvm-x-ame">*wayna:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.617" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6fef5e9c-9884-474e-9622-b3a58162ebf0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wayna:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0adbae08-6f72-4a32-a932-f77fafed06f5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9661ba78-0e6b-4e50-a6d4-672ac6a5df53" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wayna: 
\entryTyp root 
\gENG have.lovers 
\gSPN ? 
\e *wayna: 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach wayna foreshortened 
\ach wayna: 
\akh wayna foreshortened 
\akh wayna: 
\acl wayna foreshortened 
\acl wayna: 
\akl wayna foreshortened 
\akl wayna: 
\ame wayna foreshortened 
\ame wayna:</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f7c5f9aa-ddb7-4398-beaa-396cffa36733" ownerguid="31debfe3-91da-4588-b433-21b0e14a101b"> -<ExampleWords> -<AUni ws="en">corner, cross street, fork, intersection, juncture, pedestrian crossing, interchange, overpass, underpass, exit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words are used to describe when two roads come together?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f7cca34d-9986-4bab-916b-b46ad9c595e9" ownerguid="93b8bd61-137a-4ebc-b12f-52fa5d2b3ea4"> -<ExampleWords> -<AUni ws="en">Chinook, sirocco</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to a warm or cold wind?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f7d05cd3-a8d1-4966-ad4a-585056579f23" ownerguid="575c4ee2-c3ba-4227-a7de-43181b4e1eb6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="461f6545-87df-4eac-bd5d-f686e4ba9892" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="08637792-6fd4-4d76-9920-f5a58c249273" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f7d1391f-ddde-413a-bfea-e09c6a72c36d" ownerguid="b2a97d92-6ce6-4640-93e4-c81eab5e885a"> -<Form> -<AUni ws="qvm-x-ach">amänu</AUni> -<AUni ws="qvm-x-acl">amänu; amänu; amäno</AUni> -<AUni ws="qvm-x-akh">amänu</AUni> -<AUni ws="qvm-x-akl">amänu; amänu; amäno</AUni> -<AUni ws="qvm-x-ame">amänu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="f7d894f1-5e74-420e-be51-dc005c9d4504" ownerguid="0307fe40-1bf2-4373-9ca5-71f2f42f2275"> -<Form> -<AUni ws="qvm-x-ach">bülla</AUni> -<AUni ws="qvm-x-acl">bülla</AUni> -<AUni ws="qvm-x-akh">bülla</AUni> -<AUni ws="qvm-x-akl">bülla</AUni> -<AUni ws="qvm-x-ame">bülla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="f7da1907-e6c5-4d21-a8e8-81376f3467df" ownerguid="62b4ae33-f3c2-447a-9ef7-7e41805b6a02"> -<Abbreviation> -<AUni ws="en">4.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.276" /> -<DateModified val="2022-9-23 16:55:8.276" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to conflict between people, including quarreling, fighting, and war. The words in this domain should be very general, rather than referring to specific kinds of conflict.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>39 Hostility, Strife</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Conflict</AUni> -</Name> -<OcmCodes> -<Uni>578 Ingroup Antagonisms</Uni> -</OcmCodes> -<Questions> -<objsur guid="f073f174-01a4-468b-a34c-058cd1613ddc" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="d59a84e1-5e12-4cb7-b72b-15c51810ad48" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="189f8c29-f0ff-44b6-a0db-5b287c412a75" t="o" /> -<objsur guid="55201761-fe2e-40d5-a2a7-8079e00a2c32" t="o" /> -<objsur guid="a3ba10f3-66e3-4ad5-8057-453b8941e497" t="o" /> -<objsur guid="0b7b9a1c-588b-475a-ac14-00f0999cbfe9" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="f7df2184-6319-47da-9cbe-0a650ca2bd83" ownerguid="9fd8ecee-283d-4dc4-a4f5-41fb8ec94a5a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ictsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ictsu; ictso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">iktsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">iktsu; iktso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">iktsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="50c7cedb-e48d-4e40-b667-882924600f9d" t="r" /> -</Morph> -<Msa> -<objsur guid="9e409988-4e1d-45fa-8176-595e955af9d4" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="f7e06b9c-31a7-4a9c-a339-2943f7a9d0a2" ownerguid="b3feec25-7afd-49bc-aedb-e0e1c0ce85d7"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="f7e31576-dcdd-43a0-bc65-5efc3b868223" ownerguid="01a69e19-d3b0-4450-aa81-74af2409b40e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="89e7897e-ff38-4957-a042-f6240634dd26" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f7e5dc89-4a68-4c2e-bf32-78a096d135bc" ownerguid="0fa0be21-2246-40b2-86b1-ca572fe8c16c"> -<ExampleWords> -<AUni ws="en">bored, bored to tears, bored stiff</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe someone who is not interested in anything?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f7e5fd2f-8764-4308-b739-94de05ec7041"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">u:nu</AUni> -<AUni ws="qvm-x-acl">u:nu; u:nu; u:no</AUni> -<AUni ws="qvm-x-akh">u:nu</AUni> -<AUni ws="qvm-x-akl">u:nu; u:nu; u:no</AUni> -<AUni ws="qvm-x-ame">u:nu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+uno</AUni> -<AUni ws="qvm-x-acl">+uno</AUni> -<AUni ws="qvm-x-akh">+uno</AUni> -<AUni ws="qvm-x-akl">+uno</AUni> -<AUni ws="qvm-x-ame">+uno</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.231" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="533eb829-515a-44f7-88d1-accc17b0c457" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+uno</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="70d698ec-d542-49b9-9066-9801c43cddba" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1276719c-1b11-4322-92ae-b9c5c280255e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +uno 
\entryTyp root 
\gENG one 
\gSPN uno 
\e +uno 
\c N0 
\ach u:nu 
\akh u:nu 
\acl u:nu / _# 
\acl u:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl u:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl u:nu / _# 
\akl u:nu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl u:no +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame u:nu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="f7e625a6-53e3-4f9b-8764-119e3906f5cf" ownerguid="ffcc57f8-6c6d-4bf4-85be-9220ca7c739d"> -<Abbreviation> -<AUni ws="en">2.6.1.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.63" /> -<DateModified val="2022-9-23 16:55:8.63" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being unmarried.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Unmarried</AUni> -</Name> -<OcmCodes> -<Uni>589 Celibacy</Uni> -</OcmCodes> -<Questions> -<objsur guid="1c34a82a-be25-4148-982b-ec6df72bb78d" t="o" /> -<objsur guid="a8327b37-6ce8-4291-a139-e19b1defe34e" t="o" /> -<objsur guid="f25ca94d-a1ab-491c-a795-bc53091f12d3" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="04370e1f-25aa-4d9e-97c5-de9b59156666" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="f7ecc0a7-c35d-4bc0-9701-4ce3657c02e6" ownerguid="1f4219f4-e1b2-410e-973c-88c97ff00be9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">mica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">mica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">mika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">mika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">mika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="a654a1f1-4e67-4c58-a03e-bbbdd88d7bff" t="r" /> -</Morph> -<Msa> -<objsur guid="44aa6f68-7289-4246-8bc4-0e6ec4046fb2" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="f7ed0929-b341-4c6a-8fc4-d5562ad9c08f" ownerguid="4b043734-2589-46b9-a7a6-d7d33751252a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f7eda99e-fde7-4f3f-ab22-a034e7f3c3b2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rpa; rpa:</AUni> -<AUni ws="qvm-x-acl">rpa; rpa:</AUni> -<AUni ws="qvm-x-akh">rpa; rpa:</AUni> -<AUni ws="qvm-x-akl">rpa; rpa:</AUni> -<AUni ws="qvm-x-ame">rpa; rpa:</AUni> -</Custom> -<AlternateForms> -<objsur guid="8bb2b934-216b-4529-aedd-c45d4d0a7b0d" t="o" /> -<objsur guid="eaa0ef36-41e5-4bd4-b4d7-f39db5da6870" t="o" /> -</AlternateForms> -<DateCreated val="2022-9-23 18:26:20.548" /> -<DateModified val="2022-10-16 13:51:48.638" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f2f8bcc7-f671-4815-abd0-18c5da969b83" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">PLST</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="00a2abd0-a707-4643-aab1-ef104bcf7a41" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="04665228-2964-4b87-afd9-99cb91cd72a5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx PLST 
\entryTyp suffix 
\gENG PLST 
\gSPN PLDUR 
\e PLST 
\c V1/V1 V2/V2 
\o 020 
\mp +mlowers +foreshortens 
\mp +underlong 
\ach rpa foreshortened 
\ach rpa: 
\akh rpa foreshortened 
\akh rpa: 
\acl rpa foreshortened 
\acl rpa: 
\akl rpa foreshortened 
\akl rpa: 
\ame rpa foreshortened 
\ame rpa: 
\mp +FinalC 
\mp +FinalLength 
\mcc PLST / *qu ~_ 3 
\mcc PLST / ~_ SUD PL</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f7eed06a-3d04-48d3-81a6-a30f69fc03d8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gogu</AUni> -<AUni ws="qvm-x-acl">gogu; gogu; gogo</AUni> -<AUni ws="qvm-x-akh">qoqu</AUni> -<AUni ws="qvm-x-akl">qoqu; qoqu; qoqo</AUni> -<AUni ws="qvm-x-ame">ququ</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ququ</AUni> -<AUni ws="qvm-x-acl">*ququ</AUni> -<AUni ws="qvm-x-akh">*ququ</AUni> -<AUni ws="qvm-x-akl">*ququ</AUni> -<AUni ws="qvm-x-ame">*ququ</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.912" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d18b2c93-6143-44f1-9410-105c1537d8b1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ququ</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c2b5dc83-a330-4c0a-a853-42984087a09c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6fd62317-8ff7-4cb3-8d84-b8a8c8e475fc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ququ 
\entryTyp root 
\gENG bull.frog 
\gSPN sapo 
\e *ququ 
\c N0 
\ach gogu 
\akh qoqu 
\acl gogu / _# 
\acl gogu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl gogo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qoqu / _# 
\akl qoqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl qoqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ququ</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="f7f4a797-3593-4468-b8ee-54751d696017" ownerguid="b9c50a96-de75-4eb5-8348-639372c6e2ad"> -<Form> -<AUni ws="qvm-x-ach">arma</AUni> -<AUni ws="qvm-x-acl">arma</AUni> -<AUni ws="qvm-x-akh">arma</AUni> -<AUni ws="qvm-x-akl">arma</AUni> -<AUni ws="qvm-x-ame">arma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f7f59c28-26c0-49cc-9438-76091be6adb1" ownerguid="8f4c15fa-54f9-41fc-8de3-2657d57e81f2"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f7f8cb90-5bb1-4dd9-b0d2-194539e34d60"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sacsa; sacsa:</AUni> -<AUni ws="qvm-x-acl">sacsa; sacsa:</AUni> -<AUni ws="qvm-x-akh">saksa; saksa:</AUni> -<AUni ws="qvm-x-akl">saksa; saksa:</AUni> -<AUni ws="qvm-x-ame">saksa; saksa:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*saksa:</AUni> -<AUni ws="qvm-x-acl">*saksa:</AUni> -<AUni ws="qvm-x-akh">*saksa:</AUni> -<AUni ws="qvm-x-akl">*saksa:</AUni> -<AUni ws="qvm-x-ame">*saksa:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.427" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="22c27f0c-f9ef-4cb0-ad82-93f2702fc969" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*saksa:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="726f0b86-4271-4b06-bdf2-b38c9e3a7629" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6eaf0b2b-b611-48b9-a17a-66f20d4d000f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *saksa: 
\entryTyp root 
\gENG satisfy 
\gSPN satisfacerse 
\e *saksa: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach sacsa foreshortened 
\ach sacsa: 
\akh saksa foreshortened 
\akh saksa: 
\acl sacsa foreshortened 
\acl sacsa: 
\akl saksa foreshortened 
\akl saksa: 
\ame saksa foreshortened 
\ame saksa:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="f7fa8759-71e9-4b6a-bd88-4b2524d04cc0" ownerguid="05f434bb-4b67-4109-a61a-1a4d503130d2"> -<Form> -<AUni ws="qvm-x-ach">tönu</AUni> -<AUni ws="qvm-x-acl">tönu; tönu; töno</AUni> -<AUni ws="qvm-x-akh">tönu</AUni> -<AUni ws="qvm-x-akl">tönu; tönu; töno</AUni> -<AUni ws="qvm-x-ame">tönu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="f7fcd1ee-4863-4a86-ad9d-3b2c9e444010" ownerguid="84e3cdd2-d9ce-4f33-99b4-cf478bf23689"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="ac86dd10-1b6e-4d8b-89e9-d40f1d1d9ad6" t="o" /> -<objsur guid="1d5145ee-81e0-4bd5-90b6-c4dbfc0ba9c4" t="o" /> -<objsur guid="a3f3325d-2c1f-41fc-bbff-bd1a593ea448" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="f7ffe78a-e1c6-41a1-ad6a-d88079d397d4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pa:ga</AUni> -<AUni ws="qvm-x-acl">pa:ga</AUni> -<AUni ws="qvm-x-akh">pa:ga</AUni> -<AUni ws="qvm-x-akl">pa:ga</AUni> -<AUni ws="qvm-x-ame">pa:ga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pagar</AUni> -<AUni ws="qvm-x-acl">+pagar</AUni> -<AUni ws="qvm-x-akh">+pagar</AUni> -<AUni ws="qvm-x-akl">+pagar</AUni> -<AUni ws="qvm-x-ame">+pagar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.648" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c6b05822-a0e5-4e5e-abdf-44af4a76f727" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pagar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4dde96da-260a-4194-a7a8-30a1a68e2fd3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="65387c45-c56c-4ad3-8a23-80d8ff6d15ee" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pagar 
\entryTyp root 
\gENG pay 
\gSPN pagar 
\e +pagar 
\c V2 R0 
\ach pa:ga 
\akh pa:ga 
\acl pa:ga 
\akl pa:ga 
\ame pa:ga</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f800f2c0-6649-45f0-8b54-02a6595fd4be" ownerguid="fad6de1d-f958-4b2b-9c77-412085c2a3ef"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">night</AUni> -<AUni ws="es">noche</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2d860998-e3b9-4383-a207-3e95b9eac68f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f801bbb1-3d27-4717-a709-489f6b8efcd0" ownerguid="dbd168ad-e64a-44b5-af1a-e9f5f7e57d4c"> -<Form> -<AUni ws="qvm-x-ach">maqui</AUni> -<AUni ws="qvm-x-acl">maqui; maqui; maque</AUni> -<AUni ws="qvm-x-akh">maki</AUni> -<AUni ws="qvm-x-akl">maki; maki; make</AUni> -<AUni ws="qvm-x-ame">maki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="f8026a5b-8134-4f56-bb77-4257c8f8c8a7" ownerguid="5ea4f6af-0125-4cdd-8a90-8a2d9089df5f"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="8620a9a4-e9d1-4d2b-940e-17516170ef4b" t="o" /> -<objsur guid="a56ebeab-7cb9-4a28-8fb0-d0aa5e45c175" t="o" /> -<objsur guid="df909fe4-95f4-4007-b6cc-a2a16f2bfd28" t="o" /> -<objsur guid="90c3b9b0-5d1f-4368-b8b0-dcc048faf340" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="f803f5e4-29b7-46d8-b971-2e7090192b85" ownerguid="9aa12222-cd90-4218-b396-d39482cf6bd6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">guardian</AUni> -<AUni ws="es">albacea</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="beaa8d08-9c81-4cbf-aa8a-9c1cb9c77a2f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="f80c6f32-48c4-4d25-97cf-d1a665635b12"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">raspa</AUni> -<AUni ws="qvm-x-acl">raspa</AUni> -<AUni ws="qvm-x-akh">raspa</AUni> -<AUni ws="qvm-x-akl">raspa</AUni> -<AUni ws="qvm-x-ame">raspa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+raspar</AUni> -<AUni ws="qvm-x-acl">+raspar</AUni> -<AUni ws="qvm-x-akh">+raspar</AUni> -<AUni ws="qvm-x-akl">+raspar</AUni> -<AUni ws="qvm-x-ame">+raspar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.277" /> -<DateModified val="2022-10-10 21:19:47.691" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="833520ef-9469-48c3-9471-954e8ce6c6bf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+raspar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="347f4844-5b46-4edf-885f-2c2b73dfffd1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="df14ca37-6aa9-4c31-87f6-70087069e64f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +raspar 
\entryTyp root 
\gENG scrape 
\gSPN 
\e +raspar 
\c V1 
\ach raspa 
\akh raspa 
\acl raspa 
\akl raspa 
\ame raspa 
\i Lev 14.41 Tsaynogla nenga wayi rurintapis rasparir raspashgan alpata impüru lugarman jitarinanpag.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f81172fc-53ff-44bf-85f7-6ef469b1708b" ownerguid="ed4a2ca6-c03c-4c72-9431-b72fb7294b8f"> -<ExampleWords> -<AUni ws="en">wedding ring, wedding cake, bride's bouquet</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What things are used in a wedding?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f8141324-cefd-49b1-9c6f-cad8066005c6" ownerguid="2b82df8b-2188-4ae9-a1eb-b3c50f21199e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="f8141da3-814e-4a8d-a8fa-04b0fbaf1e84" ownerguid="6bfc7703-3351-4580-919f-5da95152633d"> -<Form> -<AUni ws="qvm-x-ach">barilla</AUni> -<AUni ws="qvm-x-acl">barilla</AUni> -<AUni ws="qvm-x-akh">barilla</AUni> -<AUni ws="qvm-x-akl">barilla</AUni> -<AUni ws="qvm-x-ame">barilla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="f815acdf-eaf1-4ed8-b4c1-98fbb0cc0807" ownerguid="31084b3e-4348-489e-ba40-6f8847ef46c5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">moccasin</AUni> -<AUni ws="es">mocasfn</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5d9af6ba-4e69-4309-8fd2-3941002b97c1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="f81b7632-3e5a-4a2d-8a93-648872a6616b" ownerguid="935da513-126e-4cab-8e07-625458821181"> -<Abbreviation> -<AUni ws="en">4.2.1.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.208" /> -<DateModified val="2022-9-23 16:55:8.208" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to an organization.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Social group</AUni> -</Name> -<OcmCodes> -<Uni>575 Sodalities</Uni> -</OcmCodes> -<Questions> -<objsur guid="7b71ec19-12c5-470d-bc0c-3cdbba9ff9fb" t="o" /> -<objsur guid="abf5173e-0a0f-464c-9587-f802a5df4d9f" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="e6c9fe4c-199e-4934-b622-739a85b0830d" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="f81be435-ab8b-4d55-9a50-9689c4c40cb4" ownerguid="7beca90c-3671-4b3c-bf9a-fb8f08ff914b"> -<ExampleWords> -<AUni ws="en">saltshaker</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What containers are used for salt?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f826020f-2d71-4101-a073-8e70bf135512" ownerguid="9ef41718-0161-4427-af6d-55c02e92b015"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="29899511-9a0d-4342-aa07-e9fd001b22a9" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="f828c29a-b557-4656-baa0-15000122403a" ownerguid="043943c3-16e2-460b-a7c7-eca3b3ebfb70"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="f829581b-8169-4843-a74c-21fd704d6b9d" ownerguid="3596a5ba-f677-4047-b407-0980dfa44bc8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="f82a8f36-ac4c-4f26-b758-cecec9ac67e2" ownerguid="76389945-bde0-47fc-8499-77985525bf39"> -<Form> -<AUni ws="qvm-x-ach">macwa</AUni> -<AUni ws="qvm-x-acl">macwa</AUni> -<AUni ws="qvm-x-akh">makwa</AUni> -<AUni ws="qvm-x-akl">makwa</AUni> -<AUni ws="qvm-x-ame">makwa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="f8315db1-a97f-4e30-a9fc-5ea48c9ef332" ownerguid="542ae4c7-7db5-4c7f-a344-60e247a57c75"> -<Form> -<AUni ws="qvm-x-ach">meparëci; meparëci</AUni> -<AUni ws="qvm-x-acl">meparëci; meparëci; meparëce</AUni> -<AUni ws="qvm-x-akh">meparëci; meparëci</AUni> -<AUni ws="qvm-x-akl">meparëci; meparëci; meparëce</AUni> -<AUni ws="qvm-x-ame">meparëci; meparëci</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f8346466-db96-4d4b-8a8d-2da65cfd7dc2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jinan</AUni> -<AUni ws="qvm-x-acl">jinan</AUni> -<AUni ws="qvm-x-akh">jinan</AUni> -<AUni ws="qvm-x-akl">jinan</AUni> -<AUni ws="qvm-x-ame">hinan</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.576" /> -<DateModified val="2022-10-16 15:27:47.114" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="8957ebad-d7d3-4c58-9794-1a7f35d17a18" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">SIM2.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8cec8820-59e6-4ad6-9550-d5b15cc772bb" t="o" /> -<objsur guid="9f227daa-6be8-432d-8cbf-31169eb23e02" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="56a90d5e-f2b8-4323-913d-5d058bd86405" t="o" /> -<objsur guid="f98553df-6d6e-471a-ac1f-59006538f87c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx SIM2.2 
\entryTyp suffix 
\gENG SIM2 
\gSPN SIM2 
\e SIM2.2 
\c N0/N0 
\o 000 
\mp NeverChanged 
\ach jinan 
\akh jinan 
\acl jinan 
\akl jinan 
\ame hinan 
\mp +FinalC 
\mcc SIM2.2 / _ ADV1</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f838a849-ffc9-4530-93f0-db41ad4218c6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tuctu</AUni> -<AUni ws="qvm-x-acl">tuctu; tucto</AUni> -<AUni ws="qvm-x-akh">tuktu</AUni> -<AUni ws="qvm-x-akl">tuktu; tukto</AUni> -<AUni ws="qvm-x-ame">tuktu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tuktu</AUni> -<AUni ws="qvm-x-acl">*tuktu</AUni> -<AUni ws="qvm-x-akh">*tuktu</AUni> -<AUni ws="qvm-x-akl">*tuktu</AUni> -<AUni ws="qvm-x-ame">*tuktu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.977" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b3272502-e172-460c-a076-9f87ce3337ce" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tuktu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dec805df-458c-4c17-9cf7-ee4949691fb1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="42e6aba7-f2f6-486e-8dde-68dfca7da21f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tuktu 
\entryTyp root 
\gENG bloom 
\gSPN florecer 
\e *tuktu 
\c V1 
\ach tuctu 
\akh tuktu 
\acl tuctu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tucto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tuktu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tukto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tuktu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f83989da-ad4c-4781-bf39-74d18c810649" ownerguid="b7b0819b-eceb-4f16-ae6d-2298c4df1e6f"> -<ExampleWords> -<AUni ws="en">punctual, prompt</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who does things on time?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f83d1ed8-4742-4e29-bb4b-9a0eb0aa674f" ownerguid="2a2af155-9db9-41c5-860a-fe0a3a09d6de"> -<ExampleWords> -<AUni ws="en">think about, look at, think over, consider, think something out, think twice, think of, take into consideration, take into account</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to thinking before making a decision?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f83fcc10-31b1-4c36-ae1a-c5d9c5fb61cb" ownerguid="e2246243-cfba-4cf0-ab09-0066cb082b62"> -<Form> -<AUni ws="qvm-x-ach">civil</AUni> -<AUni ws="qvm-x-acl">civil</AUni> -<AUni ws="qvm-x-akh">civil</AUni> -<AUni ws="qvm-x-akl">civil</AUni> -<AUni ws="qvm-x-ame">civil</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f841d2d0-ebbe-47cc-b47a-cf2915abeda8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ugel; ugil</AUni> -<AUni ws="qvm-x-acl">ugel; ugil; ugel</AUni> -<AUni ws="qvm-x-akh">ugel; ugil</AUni> -<AUni ws="qvm-x-akl">ugel; ugil; ugel</AUni> -<AUni ws="qvm-x-ame">ugel; ugil</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+UGEL</AUni> -<AUni ws="qvm-x-acl">+UGEL</AUni> -<AUni ws="qvm-x-akh">+UGEL</AUni> -<AUni ws="qvm-x-akl">+UGEL</AUni> -<AUni ws="qvm-x-ame">+UGEL</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.200" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7c3e7201-4640-4d88-879e-ca93c033fd2b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+UGEL</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5501c00d-3501-4c10-9967-c9c7302182a1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1c1ca8c9-0a06-490b-8971-071888ec4fde" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +UGEL 
\entryTyp root 
\gENG school.district 
\gSPN UGEL 
\e +UGEL 
\c N0 
\mp +FinalC 
\ach ugel / _# 
\ach ugil / ~_# 
\akh ugel / _# 
\akh ugil / ~_# 
\acl ugel / _# 
\acl ugil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ugel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ugel / _# 
\akl ugil +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ugel +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\ame ugel / _# 
\ame ugil / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f8422bae-0481-48fe-ad2c-4bb6f03b0559" ownerguid="57a5e538-15ff-4d25-acda-f8218a89d219"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f843a728-a00b-494a-a984-76818853a9e8" ownerguid="ec118a28-fd23-48b3-8819-bfe1329f028d"> -<ExampleWords> -<AUni ws="en">mirror, looking glass, reflector</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something that reflects light?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f8468621-0972-419d-8010-10eb4bf0f73c" ownerguid="4e795972-eb00-48c5-8084-a264092d0851"> -<Form> -<AUni ws="qvm-x-ach">wengu</AUni> -<AUni ws="qvm-x-acl">wengu; wengu; wengo</AUni> -<AUni ws="qvm-x-akh">wenqu</AUni> -<AUni ws="qvm-x-akl">wenqu; wenqu; wenqo</AUni> -<AUni ws="qvm-x-ame">winqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f84abc5f-1728-4d86-b3bc-9ffda4a1d8ee" ownerguid="6fc8ae4d-9fad-462e-9ea0-c613c3c1cb5e"> -<ExampleWords> -<AUni ws="en">doubter, skeptic, agnostic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who doubts?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f84df556-5c49-41bb-a5af-dde889686fba" ownerguid="d7d39e2b-5ca5-4783-b4f2-f4e315d0ab9c"> -<Form> -<AUni ws="qvm-x-ach">tsuctsu</AUni> -<AUni ws="qvm-x-acl">tsuctsu; tsuctso</AUni> -<AUni ws="qvm-x-akh">tsuktsu</AUni> -<AUni ws="qvm-x-akl">tsuktsu; tsuktso</AUni> -<AUni ws="qvm-x-ame">tsuktsu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f8515dad-926c-4195-bf26-4a15b9a9c24b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guemtsi</AUni> -<AUni ws="qvm-x-acl">guemtsi; guemtse</AUni> -<AUni ws="qvm-x-akh">qemtsi</AUni> -<AUni ws="qvm-x-akl">qemtsi; qemtse</AUni> -<AUni ws="qvm-x-ame">qimtsi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qimchi.v</AUni> -<AUni ws="qvm-x-acl">*qimchi.v</AUni> -<AUni ws="qvm-x-akh">*qimchi.v</AUni> -<AUni ws="qvm-x-akl">*qimchi.v</AUni> -<AUni ws="qvm-x-ame">*qimchi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.183" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="143423d0-3eeb-4ea7-8b29-6c8fc13fcf32" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qimchi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="59c55d33-0905-4578-8607-0d5ef860a1a8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ac2b7523-330b-4268-8aaa-4902de85d6df" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qimchi.v 
\entryTyp root 
\gENG 
\gSPN 
\e *qimchi.v 
\c V1 
\mp +FinalI 
\ach guemtsi 
\akh qemtsi 
\acl guemtsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl guemtse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qemtsi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qemtse +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qimtsi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="f8523230-b30e-4550-9947-bbad0f2547f1" ownerguid="b5987fee-71fb-400d-8f6f-2991bce15d00"> -<Form> -<AUni ws="qvm-x-ach">silla</AUni> -<AUni ws="qvm-x-acl">silla</AUni> -<AUni ws="qvm-x-akh">silla</AUni> -<AUni ws="qvm-x-akl">silla</AUni> -<AUni ws="qvm-x-ame">silla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f853ed3d-512d-4333-a262-72467949b911" ownerguid="4260e110-7b04-4d40-9391-486a57aa3031"> -<ExampleWords> -<AUni ws="en">mature, adult (adj), responsible</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is mature?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f854e173-a63f-422c-9184-bef5e3b9fcfe" ownerguid="44dc42e4-e9c7-4aa9-ac9b-1008385244b1"> -<ExampleWords> -<AUni ws="en">father's wife, second wife</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) If your father has more than one wife, what do you call his other wives?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f85523ae-78d3-4a9b-8d2b-486c477abd08" ownerguid="87522279-e6b4-493b-8870-ad78ef9d30f2"> -<Form> -<AUni ws="qvm-x-ach">tacmu</AUni> -<AUni ws="qvm-x-acl">tacmu; tacmo</AUni> -<AUni ws="qvm-x-akh">takmu</AUni> -<AUni ws="qvm-x-akl">takmu; takmo</AUni> -<AUni ws="qvm-x-ame">takmu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="f858278a-2727-4403-9cf0-565cdececb1e" ownerguid="b2fd2d29-1389-4114-91a8-15b8d9742794"> -<Abbreviation> -<AUni ws="en">9.6.2.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.720" /> -<DateModified val="2022-9-23 16:55:8.720" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate a clause in a conditional sentence (If this is true, then that is true). The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>89J Condition</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Condition</AUni> -</Name> -<Questions> -<objsur guid="aed7106d-c2f9-4ebf-9a0f-fc43d7e70a98" t="o" /> -<objsur guid="39737e5d-a40d-4194-825f-a8c1feac12bd" t="o" /> -<objsur guid="daa757e0-caec-4950-ad89-af24571a53c1" t="o" /> -<objsur guid="552129d9-36c0-409a-b81d-284c747c79f4" t="o" /> -<objsur guid="f8e186f6-7644-4440-9bf7-c7a2c836ac75" t="o" /> -<objsur guid="87c66f8d-fa0f-4d8f-8426-36849facce27" t="o" /> -<objsur guid="fd981e47-8042-4e3a-8ccb-f1a28b2f3400" t="o" /> -<objsur guid="bb6fe0c0-7ac2-49e8-a45b-58e788394d33" t="o" /> -<objsur guid="169aeade-f11c-4f0c-9f28-5c4ed2559159" t="o" /> -<objsur guid="9f894e65-e845-4c53-b2cd-a14d2261f7ff" t="o" /> -<objsur guid="5120544f-5d59-4481-95b6-aa8747951992" t="o" /> -<objsur guid="f3cd8114-c8da-4c42-a04d-6adf7b87f15e" t="o" /> -<objsur guid="48d52da5-3ae4-4271-9b57-b90d1c66bb92" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiAnalysis" guid="f85d098c-f4f9-4890-bbc1-02d70546fdd3" ownerguid="e848aa10-3dc3-49df-9447-17855e8391e1"> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="a315116c-1d61-4f83-9556-be33c6a4854f" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="c2a7c837-c31c-414a-85f0-b37c6b3dc3a6" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="f85e1341-c32f-47b9-9d6e-877aff02a072" ownerguid="1886ffc9-0a18-41ea-b2f6-c17c297f1681"> -<ExampleWords> -<AUni ws="en">astronomy, astrology</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the study of the sky?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="f863c69c-0204-4514-b755-42b05b909aa9" ownerguid="ee54069f-0234-4db0-a227-e7fa5470c4f5"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">räma</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">räma</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">räma</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">räma</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">räma</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f256c945-43fc-49e9-bfcc-09a712246ebb" t="r" /> -</Morph> -<Msa> -<objsur guid="5e14ff85-6ba9-45f6-a4bf-6a44da2c1f44" t="r" /> -</Msa> -<Sense> -<objsur guid="da761f1d-9909-4bfb-89e4-dcb2115791aa" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="f863fe06-cfdb-43ca-aab3-2f28e7c1fb6e" ownerguid="cc6d78c5-9fa7-40dd-84bf-2ba2375b0d51"> -<Form> -<AUni ws="qvm-x-ach">päñu</AUni> -<AUni ws="qvm-x-acl">päñu; päñu; päño</AUni> -<AUni ws="qvm-x-akh">päñu</AUni> -<AUni ws="qvm-x-akl">päñu; päñu; päño</AUni> -<AUni ws="qvm-x-ame">päñu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f864ad80-66b7-481c-b880-0bcac8ab7b85" ownerguid="de6dce89-f1d7-4bba-8c9f-4067f9cacc1d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f864b0ee-eb43-4def-bdc6-66c8a417aa1a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ya</AUni> -<AUni ws="qvm-x-acl">ya</AUni> -<AUni ws="qvm-x-akh">ya</AUni> -<AUni ws="qvm-x-akl">ya</AUni> -<AUni ws="qvm-x-ame">ya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ya.2</AUni> -<AUni ws="qvm-x-acl">+ya.2</AUni> -<AUni ws="qvm-x-akh">+ya.2</AUni> -<AUni ws="qvm-x-akl">+ya.2</AUni> -<AUni ws="qvm-x-ame">+ya.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.780" /> -<DateModified val="2022-10-27 18:1:31.792" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0266a2a0-8dee-41c8-9584-efdc790cb2f2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ya.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5eee385d-3369-4eec-b7db-334e87092315" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0b3285cc-f19a-4117-9709-dd4131f3d3e3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ya.2 
\entryTyp root 
\gENG 
\gSPN 
\e +ya.2 
\c NOSUFF 
\ach ya 
\akh ya 
\acl ya 
\akl ya 
\ame ya 
\i MAT 21.30 Tsayshi tsurin kaynoq nerqan: <Ya, papá. Arupäshaykichari.></Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f867685a-e850-4f10-a24e-cecdf0e27b26" ownerguid="a45ac6c1-c929-41af-8d66-92064af39619"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="f869a6c6-446c-4389-9e44-426ec5a3b530"> -<Analyses> -<objsur guid="6ff37bc8-20e8-4616-acb1-795443250355" t="o" /> -<objsur guid="75e6c9e1-b36e-4814-ae4a-cdb676bf9d07" t="o" /> -<objsur guid="80d90411-ebaf-4f12-9b8b-8180cb57a73d" t="o" /> -<objsur guid="baeaf24b-30ff-424c-af6a-c2885e95d9e7" t="o" /> -<objsur guid="e2da5be3-30a6-46d7-a10a-8372245ada06" t="o" /> -<objsur guid="f50ba0f7-1847-42cf-85a4-65393a3d6131" t="o" /> -</Analyses> -<Checksum val="530741656" /> -<Form> -<AUni ws="qvm-x-akh">runapa</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="f86dc09d-23e8-4ccd-81be-ab2213aa9339"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lipay</AUni> -<AUni ws="qvm-x-acl">lipay</AUni> -<AUni ws="qvm-x-akh">lipay</AUni> -<AUni ws="qvm-x-akl">lipay</AUni> -<AUni ws="qvm-x-ame">lipay</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llipay</AUni> -<AUni ws="qvm-x-acl">*llipay</AUni> -<AUni ws="qvm-x-akh">*llipay</AUni> -<AUni ws="qvm-x-akl">*llipay</AUni> -<AUni ws="qvm-x-ame">*llipay</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.205" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="028026ae-6d82-46aa-9071-a63fbb4478b5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llipay</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cf87f617-2e89-4d86-8442-945268c5f7cd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="21cd5d8f-adde-4f59-ba25-236434a282f9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llipay 
\entryTyp root 
\gENG full 
\gSPN lleno 
\e *llipay 
\c N0 
\mp +FinalC 
\ach lipay 
\akh lipay 
\acl lipay 
\akl lipay 
\ame lipay</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f87471d7-b5f0-4925-892c-913e42f43fe4" ownerguid="161cae07-d1cb-467c-920f-62ba9039584c"> -<ExampleWords> -<AUni ws="en">land, reenter, reentry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a spacecraft landing?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f87650ed-7cfe-4b90-9589-b2d9d26e69cb"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">estruchi; estruche</AUni> -<AUni ws="qvm-x-acl">estruchi; estruchi; estruche</AUni> -<AUni ws="qvm-x-akh">estruchi; estruche</AUni> -<AUni ws="qvm-x-akl">estruchi; estruchi; estruche</AUni> -<AUni ws="qvm-x-ame">estruchi; estruche</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+estuche.2</AUni> -<AUni ws="qvm-x-acl">+estuche.2</AUni> -<AUni ws="qvm-x-akh">+estuche.2</AUni> -<AUni ws="qvm-x-akl">+estuche.2</AUni> -<AUni ws="qvm-x-ame">+estuche.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.508" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ce148e50-bef5-4847-bcff-6127fc5f0331" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+estuche.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="7e99818b-6893-443d-94e9-61fa0c714417" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="73c4c14b-de50-45d2-a6eb-11bccd598acd" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +estuche.2 
\entryTyp root 
\gENG case 
\gSPN estuche 
\e +estuche.2 
\c N0 
\mp +FinalI 
\ach estruchi / ~_# 
\ach estruche / _# 
\akh estruchi / ~_# 
\akh estruche / _# 
\acl estruchi / ~_# 
\acl estruchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl estruche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl estruchi / ~_# 
\akl estruchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl estruche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame estruchi / ~_# 
\ame estruche / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f8774755-8525-4351-ab80-92cb787a1b67" ownerguid="97c1807c-0edd-45ab-afc3-a9f0e382db21"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="DsConstChart" guid="f8792085-7a5f-4774-ae1c-6efc5d4a786d" ownerguid="c3fe8c1e-ea5e-11de-9e45-0013722f8dec"> -<BasedOn> -<objsur guid="bf3f1d61-0fb7-4d38-ad7b-0e74c2659ac5" t="r" /> -</BasedOn> -<DateCreated val="2022-09-27 21:50:43.184" /> -<DateModified val="2022-09-27 21:50:43.184" /> -<Template> -<objsur guid="c414012a-ea5e-11de-99fc-0013722f8dec" t="r" /> -</Template> -</rt> -<rt class="MoStemMsa" guid="f87af9c0-e238-4649-8df0-ab17b19c3572" ownerguid="95f05398-93c8-4a32-a29a-ee455bdc3217"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="f87c1f54-fbe2-4f61-aad5-62bc5115f7e8" ownerguid="16c520be-2776-4b7b-8f11-7d330600e5eb"> -<Form> -<AUni ws="qvm-x-ach">pilchi</AUni> -<AUni ws="qvm-x-acl">pilchi; pilche</AUni> -<AUni ws="qvm-x-akh">pilchi</AUni> -<AUni ws="qvm-x-akl">pilchi; pilche</AUni> -<AUni ws="qvm-x-ame">pilchi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="f87d69c2-d6e0-42df-8007-d50545e254cb" ownerguid="185782da-c97e-483e-a876-6bd7300eec09"> -<Form> -<AUni ws="qvm-x-ach">y</AUni> -<AUni ws="qvm-x-acl">y</AUni> -<AUni ws="qvm-x-akh">y</AUni> -<AUni ws="qvm-x-akl">y</AUni> -<AUni ws="qvm-x-ame">y</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PunctuationForm" guid="f88005de-944d-465f-93bb-5419c7bd0878"> -<Form> -<Str> -<Run ws="en">nd</Run> -</Str> -</Form> -</rt> -<rt class="CmDomainQ" guid="f88029a0-62c6-48f1-99b8-37c1f992de49" ownerguid="2d0b3058-d8bb-4110-a54a-e507b0d3a0e4"> -<ExampleWords> -<AUni ws="en">heart, chamber, atrium, ventricle, valve, cardiac</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the parts of the heart?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f880e303-26b0-41a6-b4df-e21be46dfa26" ownerguid="cdca785d-c2d2-44fa-aa86-92a705347cc1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">coca.bag</AUni> -<AUni ws="es">bolsa.para.coca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4cc7a067-3267-443d-a1dd-4cdabde713ec" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="f883266a-146a-41c7-b1db-85120840c3a8" ownerguid="3ea4c495-b837-4310-8741-38d89fa63e0b"> -<Abbreviation> -<AUni ws="en">9.4.4.9</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.700" /> -<DateModified val="2022-9-23 16:55:8.700" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that a speaker uses to indicate that he thinks something is impossible.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>71A Possible, Impossible</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Impossible</AUni> -</Name> -<Questions> -<objsur guid="b05120f8-6f25-4458-8192-408b047a04f2" t="o" /> -<objsur guid="6cb545b3-8226-4bc4-8f77-b32974cf3fbf" t="o" /> -<objsur guid="f792327a-e003-4699-8f8c-7a08cc9b5c8f" t="o" /> -<objsur guid="2a890343-0fd1-47a7-9f95-85f1f7356b39" t="o" /> -<objsur guid="48513e94-440a-4a11-8323-d324089bbe0a" t="o" /> -<objsur guid="af7f67aa-6db2-4038-a861-0ef6619bea24" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="f88400e1-92a4-46b8-9fb2-45452fb93dd9" ownerguid="2b2143d9-f65e-4c32-806b-996a30e7655e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="f8863b67-b911-4334-a1b6-6eb913bd14af" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<Abbreviation> -<AUni ws="en">8.2.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.589" /> -<DateModified val="2022-9-23 16:55:8.589" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being wide--a word describing something like a road or river that is far from one side to the other side.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>81D Narrow, Wide</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Wide</AUni> -</Name> -<Questions> -<objsur guid="6d8de223-490b-4cdb-8aca-044e7921b17f" t="o" /> -<objsur guid="3b29477d-74a3-4dbf-9715-db89a8cbb5d3" t="o" /> -<objsur guid="36ed38fb-66b7-4ae6-a8ab-2f1c30cbb940" t="o" /> -<objsur guid="d5a3c1a4-9d76-4345-b770-fcac415da7fb" t="o" /> -<objsur guid="37143363-d2d8-4630-9906-345dc6abc7f2" t="o" /> -<objsur guid="8ab5e719-01fa-405d-9a7e-76c35de79267" t="o" /> -<objsur guid="4133ad46-9ef2-4a5c-8249-f312a5beeeb7" t="o" /> -<objsur guid="52862b2d-6414-4dd4-a844-1a597d62bd70" t="o" /> -<objsur guid="fb9d1e15-92d1-47b2-b509-7a49a338c254" t="o" /> -<objsur guid="03cd3898-93b5-4b2e-ad71-ba124735c4d3" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="aa2b547c-2c82-4ce0-a1b3-35fa809d666c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="f886f89a-7362-4cdf-8a7b-6ec4d7a104ef" ownerguid="9ed42115-8532-4f99-b0c0-36abfe9db652"> -<ExampleWords> -<AUni ws="en">junior, low-ranking</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who is low in status?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f88f11fa-0243-48a8-9b24-8d3d7d8fb087" ownerguid="e28228bc-647f-47e4-a342-39fb00cdb918"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="f89457c7-5c45-47c0-bcaa-b056939a620b" ownerguid="e0d10625-c887-49bd-9ef9-9ccb13bc4852"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="f89461c7-03dc-4dc1-8963-55fcf3fb8ebf" ownerguid="801816c5-1843-468e-87ec-429ca2e1df4c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="f899802d-bd32-427f-a101-c84219f7e14e" ownerguid="b47d2604-8b23-41e9-9158-01526dd83894"> -<Abbreviation> -<AUni ws="en">1.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.947" /> -<DateModified val="2022-9-23 16:55:7.947" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words referring to matter--what something is made out of, or a type of solid, liquid, or gas.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>2 Natural Substances</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Substance, matter</AUni> -</Name> -<Questions> -<objsur guid="abcffd37-8f71-4d9e-9ab0-940476bf9b9b" t="o" /> -<objsur guid="f7b0270c-ffe3-4974-84d5-59ef1fb4a7b4" t="o" /> -<objsur guid="e01ef169-72e2-4610-8935-af448a252c41" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="180a2220-942c-4e17-96ee-cd4f63a4c715" t="o" /> -<objsur guid="0f07adb7-4387-4723-9800-8362e825ad45" t="o" /> -<objsur guid="3df7d174-83d1-4e17-890e-1272e171ca41" t="o" /> -<objsur guid="56c9c38c-728a-42fe-b93c-6ca67fdf2a9a" t="o" /> -<objsur guid="21bcc306-13cb-4162-98b3-2ba319ba14ea" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="f89a394c-5131-46d9-bd57-a1f15b72ba83" ownerguid="c6c07195-164d-402e-9612-adf8d18dc3b2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="f89a6e08-7ed6-41aa-930a-5bb555ad44fe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">turish</AUni> -<AUni ws="qvm-x-acl">turish</AUni> -<AUni ws="qvm-x-akh">turish</AUni> -<AUni ws="qvm-x-akl">turish</AUni> -<AUni ws="qvm-x-ame">turish</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+torito.2</AUni> -<AUni ws="qvm-x-acl">+torito.2</AUni> -<AUni ws="qvm-x-akh">+torito.2</AUni> -<AUni ws="qvm-x-akl">+torito.2</AUni> -<AUni ws="qvm-x-ame">+torito.2</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.957" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="45f6509c-9505-4682-b35c-762748f627da" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+torito.2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="78d75430-8f90-47d3-8da1-a03c1f741818" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a8267eed-a22e-448a-83e8-cfd63255667f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +torito.2 
\entryTyp root 
\gENG 
\gSPN 
\e +torito.2 
\c N0 
\mp +assimilated 
\ach turish 
\akh turish 
\acl turish 
\akl turish 
\ame turish 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f89a7c90-4a8f-44fc-9664-7b0e30c49569"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ca:rru</AUni> -<AUni ws="qvm-x-acl">ca:rru; ca:rru; ca:rro</AUni> -<AUni ws="qvm-x-akh">ca:rru</AUni> -<AUni ws="qvm-x-akl">ca:rru; ca:rru; ca:rro</AUni> -<AUni ws="qvm-x-ame">ca:rru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+carro</AUni> -<AUni ws="qvm-x-acl">+carro</AUni> -<AUni ws="qvm-x-akh">+carro</AUni> -<AUni ws="qvm-x-akl">+carro</AUni> -<AUni ws="qvm-x-ame">+carro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.920" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bf56020f-6308-41b6-8805-70876ce4f0bb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+carro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0b3b354a-b157-4e7e-b31f-6ba28da6c71b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3dfa5f1b-ebc6-41b0-868b-97d29487c70c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +carro 
\entryTyp root 
\gENG car 
\gSPN carro 
\e +carro 
\c N0 
\ach ca:rru 
\akh ca:rru 
\acl ca:rru / _# 
\acl ca:rru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ca:rro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ca:rru / _# 
\akl ca:rru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ca:rro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ca:rru</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f89c667b-8387-4b38-8848-6b1cd2359421" ownerguid="2b5a4c4a-751b-449b-95ec-9bbb6c9a97d5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="5e50bbfe-26b6-4875-94b7-43d9f42e4316" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f89c8934-756c-4662-aa93-eda53605ce79" ownerguid="768aed05-dbc9-4caf-9461-76cb3720f908"> -<ExampleWords> -<AUni ws="en">hurt, painful, cause pain, sting, irritate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to something causing pain?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f8a3e655-f7f8-4780-bc1a-af3a90d4623e" ownerguid="87e53fd3-c6e6-462f-a3b5-a89202285d8c"> -<Form> -<AUni ws="qvm-x-ach">ajayta; ajaytä</AUni> -<AUni ws="qvm-x-acl">ajayta; ajaytä</AUni> -<AUni ws="qvm-x-akh">ajayta; ajaytä</AUni> -<AUni ws="qvm-x-akl">ajayta; ajaytä</AUni> -<AUni ws="qvm-x-ame">ahayta; ahaytä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f8a583f3-fe07-4c0a-a7be-e0586d4aa6c1" ownerguid="eafdea8e-521e-4614-8fd5-e8446adf9203"> -<ExampleWords> -<AUni ws="en">debate, argue, dispute, discuss, contend, negotiate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to debating with someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f8a63551-19e7-43e6-9bd1-2eeea3d3821e" ownerguid="1b399fa1-e4f7-4d7b-a33e-3972b8b556e2"> -<ExampleWords> -<AUni ws="en">preserve</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to preserving food?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f8ac4072-114c-417a-82e5-d9526a2ed0cb" ownerguid="00364f0c-9a3a-4910-a82e-1ffbc4d4137f"> -<ExampleWords> -<AUni ws="en">exhilarated, overexcited, mad, wild, crazy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to feeling very excited?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f8ac9b37-12df-48d6-9455-239166f4dc96"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tronquea</AUni> -<AUni ws="qvm-x-acl">tronquea</AUni> -<AUni ws="qvm-x-akh">tronquea</AUni> -<AUni ws="qvm-x-akl">tronquea</AUni> -<AUni ws="qvm-x-ame">tronquea</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tronquear</AUni> -<AUni ws="qvm-x-acl">+tronquear</AUni> -<AUni ws="qvm-x-akh">+tronquear</AUni> -<AUni ws="qvm-x-akl">+tronquear</AUni> -<AUni ws="qvm-x-ame">+tronquear</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.149" /> -<DateModified val="2022-10-10 21:18:47.207" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="318bb2cf-d3ac-4e0c-91d8-652917a706a1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tronquear</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="53ab2edd-e95e-4340-8914-12327e09dbdc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2374f162-5a3e-40b8-b85f-1802ea02f391" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tronquear 
\entryTyp root 
\gENG 
\gSPN 
\e +tronquear 
\c V1 
\ach tronquea 
\akh tronquea 
\acl tronquea 
\akl tronquea 
\ame tronquea 
\i JOB 8.18 Sapinpita tronquiyaptin jacha ushacashgannogmi paycunapis ushacan.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="f8b2243d-7c76-4913-b686-5ab043031d0a" ownerguid="6127ac0e-0b9e-4780-9578-7762dd91335b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2KI 9.20 Paynogmi löcuypa löcur cärrutapis manijaycämun.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="f8b2b803-b67a-4904-9f8e-c3df798cd78c" ownerguid="6af9e57c-beaf-4ebb-a656-affe9729cd38"> -<Form> -<AUni ws="qvm-x-ach">moga</AUni> -<AUni ws="qvm-x-acl">moga</AUni> -<AUni ws="qvm-x-akh">moqa</AUni> -<AUni ws="qvm-x-akl">moqa</AUni> -<AUni ws="qvm-x-ame">muqa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="f8b96122-2737-4626-bb9b-98233c96af45" ownerguid="9a25af4b-3063-4f36-8a44-c6732e91a2b5"> -<Form> -<AUni ws="qvm-x-ach">shulshul</AUni> -<AUni ws="qvm-x-acl">shulshul</AUni> -<AUni ws="qvm-x-akh">shulshul</AUni> -<AUni ws="qvm-x-akl">shulshul</AUni> -<AUni ws="qvm-x-ame">shulshul</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f8bbb202-be31-4194-b9ed-c3175f78791f" ownerguid="b5d71f18-f0df-4aec-b707-94537db5037e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="f8bcd07b-ceb9-4cc3-9a11-10cbb396c091" ownerguid="efb8e028-ccd4-45a1-80f6-d4ce3805acea"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">AMO 2.12 Tsaynog acraptëpis gamcunaga nazareo runacunata alamälami vïnuta uputsishcanqui.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="f8bcfda9-8e69-47d6-970c-556a792e23f7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yacu</AUni> -<AUni ws="qvm-x-acl">yacu; yaco</AUni> -<AUni ws="qvm-x-akh">yaku</AUni> -<AUni ws="qvm-x-akl">yaku; yako</AUni> -<AUni ws="qvm-x-ame">yaku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*yaku.v</AUni> -<AUni ws="qvm-x-acl">*yaku.v</AUni> -<AUni ws="qvm-x-akh">*yaku.v</AUni> -<AUni ws="qvm-x-akl">*yaku.v</AUni> -<AUni ws="qvm-x-ame">*yaku.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.719" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4eb0192f-19d3-4c8a-b66e-f9535b3e8ce7" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*yaku.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a0283cec-1bc7-4dae-b8e8-346f7d7cabe1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2db2514f-b81a-4b43-9499-a2778cc179dc" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *yaku.v 
\entryTyp root 
\gENG give.water 
\gSPN dar.agua 
\e *yaku.v 
\c V1 
\ach yacu 
\akh yaku 
\acl yacu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl yaco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yaku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yako +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame yaku 
\mcc *yaku.v / ~_ REF [q] 
\mcc *yaku.v / ~_ INF.noI WOUT</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f8c08c86-ef99-4415-87a7-318e56393672"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lamar</AUni> -<AUni ws="qvm-x-acl">lamar</AUni> -<AUni ws="qvm-x-akh">lamar</AUni> -<AUni ws="qvm-x-akl">lamar</AUni> -<AUni ws="qvm-x-ame">lamar</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+la.mar</AUni> -<AUni ws="qvm-x-acl">+la.mar</AUni> -<AUni ws="qvm-x-akh">+la.mar</AUni> -<AUni ws="qvm-x-akl">+la.mar</AUni> -<AUni ws="qvm-x-ame">+la.mar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.61" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="904055a8-f84c-4c32-a1f8-782480806945" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+la.mar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="827e017f-1438-44fa-b4d5-dfe68cabc32a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9fd1764a-7237-417f-9ad8-e1b367cf7c4c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +la.mar 
\entryTyp root 
\gENG sea 
\gSPN mar 
\e +la.mar 
\c N0 
\mp +FinalC 
\ach lamar 
\akh lamar 
\acl lamar 
\akl lamar 
\ame lamar</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f8c17f62-74b7-4681-9e79-abbf7ad13667" ownerguid="b3052512-54b2-4b7b-a694-9e2f617e3481"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">feel</AUni> -<AUni ws="es">sentir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="105093f0-3b82-43bf-8753-686d35eb5907" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f8c27f19-6544-427b-bbf0-9d348786ae3e" ownerguid="7ec98665-275f-4d57-8022-2740b9e90059"> -<ExampleWords> -<AUni ws="en">feel sympathy, empathize with, feel with, sympathetic, comfort, console, compassion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to showing sympathy for someone in trouble?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="f8c572e0-5737-4b51-87cb-157d79b4b88c" ownerguid="02175330-15dc-4689-a4d4-9b2ce882ab82"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ya</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ya</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ya</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ya</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ya</Run> -</AStr> -</Form> -<Morph> -<objsur guid="0266a2a0-8dee-41c8-9584-efdc790cb2f2" t="r" /> -</Morph> -</rt> -<rt class="LexSense" guid="f8c5d222-fc91-40e5-8da5-8d572438cb39" ownerguid="56e1564e-0c93-4aee-b410-bffad68e7980"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7899d602-5315-4f31-8301-9202ee2e1406" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f8c5ddd0-497e-4f14-ae33-378ba3c742a3" ownerguid="96ca12fb-8af6-4d92-abeb-4962787c31d9"> -<Form> -<AUni ws="qvm-x-ach">papä</AUni> -<AUni ws="qvm-x-acl">papä</AUni> -<AUni ws="qvm-x-akh">papä</AUni> -<AUni ws="qvm-x-akl">papä</AUni> -<AUni ws="qvm-x-ame">papä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="f8c6916f-32ec-4176-8a23-fdeee3716b5d" ownerguid="29b6ffe2-1299-4aa0-b3cd-63ef76214003"> -<Form> -<AUni ws="qvm-x-ach">tsegta</AUni> -<AUni ws="qvm-x-acl">tsegta</AUni> -<AUni ws="qvm-x-akh">tseqta</AUni> -<AUni ws="qvm-x-akl">tseqta</AUni> -<AUni ws="qvm-x-ame">tsiqta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="f8c6a6a9-49f0-408a-9237-a66e852da7d3" ownerguid="14ad95ad-50fc-450f-b44d-4273df0b1e8b"> -<Abbreviation> -<AUni ws="en">8.4.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.630" /> -<DateModified val="2022-9-23 16:55:8.630" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the calendar.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Calendar</AUni> -</Name> -<Questions> -<objsur guid="fde70f7f-2d99-44d4-84d8-16ad6a62473a" t="o" /> -<objsur guid="86906f59-2cc9-4044-9719-67b0c6954bd5" t="o" /> -<objsur guid="85b3d757-910b-4bb4-815a-c8e6beb769fb" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="f8c74f54-e31b-4b4b-b8a3-332d65be3545" ownerguid="5bd29c33-dea2-48cf-8757-c9dce45df113"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="f8cb90a4-0ec7-4723-ab0f-7982ca43af62" ownerguid="1b68b286-0dca-4025-90fa-8fdf4cd2d664"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="f8cba34c-6965-414b-998c-f4e15023638b"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">Efrata</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="Segment" guid="f8d0b49e-0566-4a8c-a0f8-1268c1f6845b" ownerguid="8a6f12f3-9fc4-43f7-badf-83e0bce41c2c"> -<Analyses> -<objsur guid="1e2f084c-71ac-42d4-8200-995f1be5d2c4" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexEntry" guid="f8d2bc29-5451-4278-9d5d-177959dd3b13"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ala</AUni> -<AUni ws="qvm-x-acl">ala</AUni> -<AUni ws="qvm-x-akh">ala</AUni> -<AUni ws="qvm-x-akl">ala</AUni> -<AUni ws="qvm-x-ame">ala</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*alla</AUni> -<AUni ws="qvm-x-acl">*alla</AUni> -<AUni ws="qvm-x-akh">*alla</AUni> -<AUni ws="qvm-x-akl">*alla</AUni> -<AUni ws="qvm-x-ame">*alla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.729" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="08299126-3a22-45cb-9928-4b0a91ef15c8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*alla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b673518d-b462-4ce3-968b-62db6474d1c9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="76c46ed0-01c6-4cdf-8388-ba6f4abfafab" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *alla 
\entryTyp root 
\gENG harvest.tuber 
\gSPN cosechar.tubérculo 
\e *alla 
\c V2 
\ach ala 
\akh ala 
\acl ala 
\akl ala 
\ame ala 
\mcc *alla / ~_ INF INST 
\mcc *alla / ~_ ADVSS1.2 3P.C GEN 
\mcc *alla / ~_ ADVSS1.2 3P.C ADV1 
\mcc *alla / ~_ 1 ADV1 
\mcc *alla / ~_ ADV1</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="f8d439cb-e459-464e-86f4-0d05873f592c" ownerguid="73497264-81a2-49dd-9f3b-7c42c8a8ee23"> -<Form> -<AUni ws="qvm-x-ach">verdi</AUni> -<AUni ws="qvm-x-acl">verdi; verde</AUni> -<AUni ws="qvm-x-akh">verdi</AUni> -<AUni ws="qvm-x-akl">verdi; verde</AUni> -<AUni ws="qvm-x-ame">verdi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="f8d58f78-a4ed-40ae-a458-86ddf3a1b735" ownerguid="e80a94f0-dfa2-421b-a204-1d158579f225"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="f8d7dbd2-3281-4db7-8cac-13ee07748e87" ownerguid="8e7a5d46-e122-49f5-a7a9-27320725b014"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">dip</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f3f2ed8b-f953-4bf9-a444-daf2ff9a2d4e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="f8d8429d-349a-4028-9943-edc1224cab49"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">naypis</AUni> -<AUni ws="qvm-x-acl">naypis</AUni> -<AUni ws="qvm-x-akh">naypis</AUni> -<AUni ws="qvm-x-akl">naypis</AUni> -<AUni ws="qvm-x-ame">naypis</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+naipe</AUni> -<AUni ws="qvm-x-acl">+naipe</AUni> -<AUni ws="qvm-x-akh">+naipe</AUni> -<AUni ws="qvm-x-akl">+naipe</AUni> -<AUni ws="qvm-x-ame">+naipe</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.537" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="300f05a1-ebb2-426a-bd4e-f9b3b689cf7a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+naipe</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="90ec9a90-5f10-4cac-8387-220f1cf72ce5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7852af7d-1c94-4ebc-a2c0-72c9a710ce05" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +naipe 
\entryTyp root 
\gENG tarot.cards 
\gSPN 
\e +naipe 
\c N0 
\mp NeverMonophthongized 
\ach naypis 
\akh naypis 
\acl naypis 
\akl naypis 
\ame naypis 
\mp +FinalC</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f8d97fe3-82cf-41ad-9120-76d2b02d68e8" ownerguid="0b91e3b3-bce9-4c66-97bd-3da15eddad7a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="f8dc357b-391b-4ecb-af8a-5e783cfd3bb4" ownerguid="ef8b5b4a-2152-48f0-9967-e0ca3b5790f5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stab</AUni> -<AUni ws="es">picar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c061ea41-ef33-4f4b-ac25-6acc00481989" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="f8dc92c1-0616-401a-8b26-18c868bdef4e" ownerguid="6f6f27a4-8095-405a-a15a-a22794bfb9c1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">thousand</AUni> -<AUni ws="es">mil</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aa2994b2-b172-49d6-8c75-aa5e4e902f7c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f8dcb90d-7021-4a1c-9bde-b134577a7558" ownerguid="dc177f3c-d0fd-4232-adf1-a77b339cdbb2"> -<ExampleWords> -<AUni ws="en">barn, granary, grain silo, warehouse, storehouse, safe, shed, treasury</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What kinds of buildings are used to store things?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f8dd9ba0-f561-401d-8c56-63e08b1a65eb" ownerguid="d21db541-4122-465f-9db5-4c76f5e84426"> -<ExampleWords> -<AUni ws="en">take home, net, clear</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to earning a certain amount of money after taxes have been taken out?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f8de0bea-d704-41ea-9184-6f37b4a2926d" ownerguid="2804261d-b8d1-4e39-aef4-b34ddaff6990"> -<Form> -<AUni ws="qvm-x-ach">parpa</AUni> -<AUni ws="qvm-x-acl">parpa</AUni> -<AUni ws="qvm-x-akh">parpa</AUni> -<AUni ws="qvm-x-akl">parpa</AUni> -<AUni ws="qvm-x-ame">parpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="f8df16a9-d374-4f8c-a7b3-1f2a92376540" ownerguid="a87b2184-b2a1-40a0-bc96-672ca7de86b5"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="8edf29d8-cdaf-4cfe-8d88-3741de9bde82" t="o" /> -<objsur guid="52e9ab18-3abe-48c9-aaa9-675dcaab58f5" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="f8e186f6-7644-4440-9bf7-c7a2c836ac75" ownerguid="f858278a-2727-4403-9cf0-565cdececb1e"> -<Question> -<AUni ws="en">(5) counterfactual: the proposition describes an unreal or imagined situation that could have been true but was not: 'If you had taken algebra, you would know this formula' (but you did not).</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f8e49816-1a23-4359-a5d1-968b2fbf18c4" ownerguid="811a2abc-4bf3-44e4-9ff4-e33ff4470ce6"> -<ExampleWords> -<AUni ws="en">in, on, at, from, to, away, toward, about</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What prepositions are in your language?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f8e4ec0e-f295-48dc-8730-336a91934050"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">o:la</AUni> -<AUni ws="qvm-x-acl">o:la</AUni> -<AUni ws="qvm-x-akh">o:la</AUni> -<AUni ws="qvm-x-akl">o:la</AUni> -<AUni ws="qvm-x-ame">o:la</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ola</AUni> -<AUni ws="qvm-x-acl">+ola</AUni> -<AUni ws="qvm-x-akh">+ola</AUni> -<AUni ws="qvm-x-akl">+ola</AUni> -<AUni ws="qvm-x-ame">+ola</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.626" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="966f2799-d7f2-4c98-9b73-9518968a9bd9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ola</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="23b4f436-8601-4670-9009-5ded09306346" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6502c0b7-74a3-4160-8413-556ed38a142d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ola 
\entryTyp root 
\gENG 
\gSPN 
\e +ola 
\c N0 
\ach o:la 
\akh o:la 
\acl o:la 
\akl o:la 
\ame o:la</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="f8e88cdc-111b-42e6-a5b7-eaaa0807eae1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cha; cha:</AUni> -<AUni ws="qvm-x-acl">cha; cha:</AUni> -<AUni ws="qvm-x-akh">cha; cha:</AUni> -<AUni ws="qvm-x-akl">cha; cha:</AUni> -<AUni ws="qvm-x-ame">cha; cha:</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.497" /> -<DateModified val="2022-10-16 14:59:27.167" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cb323b85-6101-48da-84a2-f857a34a8e5d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">CAUSBE4</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b945415f-3c4c-4fcf-b445-e88a1578c095" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0c4cc5ee-91e8-4864-bad8-09edac2c3e94" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx CAUSBE4 
\entryTyp suffix 
\gENG CAUSBE 
\gSPN CAUSER 
\e CAUSBE4 
\c N0/V1 
\o 020 
\mp +FinalC 
\mp +underlong 
\ach cha foreshortened 
\ach cha: 
\akh cha foreshortened 
\akh cha: 
\acl cha foreshortened 
\acl cha: 
\akl cha foreshortened 
\akl cha: 
\ame cha foreshortened 
\ame cha: 
\mp +FinalLength 
\mcc CAUSBE4 / *hanjampa.n _ / *patak _ / +puro _ / *katri.n _</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f8e8e5ea-d7ca-458c-a7fc-e154d4524ce7" ownerguid="e3300171-d7b2-4fb4-a103-e8fdcf3ff2ed"> -<ExampleWords> -<AUni ws="en">area, field, world, domain, realm, sphere, branch, province</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to an area of knowledge?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f8e9024d-ef5e-4f10-9935-c4b86eb46c9f" ownerguid="749ae4c4-5254-4786-8aa4-c706e09c0834"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="f8e9778a-93f5-431d-8c9f-7fc4d90e45f7" ownerguid="a2989907-310a-4a71-8768-cfa71e66caa6"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="4ccf58d7-3862-44be-827f-5632ac9ac40f" t="o" /> -<objsur guid="7bcc9c88-262b-4838-83e5-dc4c4622f686" t="o" /> -<objsur guid="4578c1e5-bf5a-4c1a-830b-777903fc53ce" t="o" /> -<objsur guid="78e1872e-7c28-47f6-bc25-091139710f44" t="o" /> -</MorphBundles> -</rt> -<rt class="LexExampleSentence" guid="f8e9fa7c-43bb-4aaf-940a-b2c2a5766b09" ownerguid="c0d48291-741a-4542-86ed-0fd1b09e5cdc"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 26.6 Mana yäracuypag runata ima encargutapis encargacorga chaquiquita paquicognogmi caycanqui.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="f8ec690e-7321-4e01-935a-5898efd0c6ea" ownerguid="f76a8805-9c29-4675-bdfb-81791d2c4a11"> -<Form> -<AUni ws="qvm-x-ach">lagpi</AUni> -<AUni ws="qvm-x-acl">lagpi; lagpi; lagpe</AUni> -<AUni ws="qvm-x-akh">laqpi</AUni> -<AUni ws="qvm-x-akl">laqpi; laqpi; laqpe</AUni> -<AUni ws="qvm-x-ame">laqpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f8ef82fe-0279-4ac7-84c2-94e947c0a110" ownerguid="9f8b8c01-f790-469f-bc37-dece6227e276"> -<ExampleWords> -<AUni ws="en">coincide, clash</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to two things happening at the same time?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f8f93501-e170-4336-9dce-cd19d186bb0c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsacla</AUni> -<AUni ws="qvm-x-acl">tsacla</AUni> -<AUni ws="qvm-x-akh">tsakla</AUni> -<AUni ws="qvm-x-akl">tsakla</AUni> -<AUni ws="qvm-x-ame">tsakla</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*chaklla</AUni> -<AUni ws="qvm-x-acl">*chaklla</AUni> -<AUni ws="qvm-x-akh">*chaklla</AUni> -<AUni ws="qvm-x-akl">*chaklla</AUni> -<AUni ws="qvm-x-ame">*chaklla</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.264" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="63d1d1db-6359-423a-a0e0-214b48aa9434" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*chaklla</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6dc20c62-912e-40ac-9de3-97ea9f53a3b7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="701ce1cf-91d0-4f64-8cb0-b3b1ebedda36" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *chaklla 
\entryTyp root 
\gENG platform 
\gSPN plataforma 
\e *chaklla 
\c N0 
\ach tsacla 
\akh tsakla 
\acl tsacla 
\akl tsakla 
\ame tsakla</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f9004ff6-409e-42b3-8f88-c361b6386dc5" ownerguid="24bf0860-4b01-4495-add1-b473df5bc4df"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">cartilage</AUni> -<AUni ws="es">cartílago</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f53ce0f7-7cd5-452c-aec3-25654191e6d5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="f90a4c3c-4423-4a99-97bc-0cd3623b0620" ownerguid="f08fdf77-9feb-4462-a6ea-032408846cc5"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f90ba99f-e868-4239-baf9-12db0743f606" ownerguid="e27adda9-0761-4b7f-abbf-24938ce1c01a"> -<ExampleWords> -<AUni ws="en">prop, scenery, backdrop, curtain</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to the things used in a drama?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="f90ce2cb-53eb-4dd6-9a7d-722e3accb11c" ownerguid="258fb850-872b-4a2d-99da-d7eb93cd9761"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 35.35 Ishcantami Jehová habilidäta goshga imatapis cuyaylapagta rurapäcunanpag, azul, morädu y puca chicnu milwa hïluwan y llanu caupushga lïnuwan imatapis bordananpag y cuyaylapag laborcunata awananpagpis.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="f911ba11-1c8c-4558-8ad1-3491aa1a88d1" ownerguid="b9395be6-f646-44d2-abbd-45b51e743f04"> -<Form> -<AUni ws="qvm-x-ach">mulaca</AUni> -<AUni ws="qvm-x-acl">mulaca</AUni> -<AUni ws="qvm-x-akh">mulaka</AUni> -<AUni ws="qvm-x-akl">mulaka</AUni> -<AUni ws="qvm-x-ame">mulaka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f919dc5e-b3ed-41a8-8422-6fc1df2aef0f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">witsa</AUni> -<AUni ws="qvm-x-acl">witsa</AUni> -<AUni ws="qvm-x-akh">witsa</AUni> -<AUni ws="qvm-x-akl">witsa</AUni> -<AUni ws="qvm-x-ame">witsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wicha</AUni> -<AUni ws="qvm-x-acl">*wicha</AUni> -<AUni ws="qvm-x-akh">*wicha</AUni> -<AUni ws="qvm-x-akl">*wicha</AUni> -<AUni ws="qvm-x-ame">*wicha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.646" /> -<DateModified val="2022-10-14 15:25:44.767" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d2b9d482-6e3b-4b4e-8993-0466b57f79b5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wicha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a459cdbc-485c-4d4a-baf9-64b148a1346e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f220d145-47f8-4190-8345-04fffbe2a7ce" t="o" /> -<objsur guid="b9c927f7-acc5-4ccc-831e-912b1e06d583" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wicha 
\entryTyp root 
\gENG up 
\gSPN arriba 
\e *wicha 
\c N1 
\ach witsa 
\akh witsa 
\acl witsa 
\akl witsa 
\ame witsa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="f919efa5-7054-445d-ac9d-108f63445c6d" ownerguid="c3fe0775-f03b-4a1f-ae57-c6c750ad5b39"> -<Form> -<AUni ws="qvm-x-ach">cobra</AUni> -<AUni ws="qvm-x-acl">cobra</AUni> -<AUni ws="qvm-x-akh">cobra</AUni> -<AUni ws="qvm-x-akl">cobra</AUni> -<AUni ws="qvm-x-ame">cobra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f91a49c8-1ca5-49ae-b62c-58895eeba6d1" ownerguid="9a8f2f6a-a039-45dd-80d3-d1e0911907b2"> -<ExampleWords> -<AUni ws="en">tax, taxes, taxation, tax collector, tribute</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to tax?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f91c57ae-e016-4832-92ce-c2b8591fdf3a" ownerguid="011ba232-abe5-4cbb-9530-0fc73d59c77b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">small.bar</AUni> -<AUni ws="es">barreta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cce1e207-b27e-41c0-880a-5a9a6ef3868a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f91cfec2-eae2-4270-81ae-9faaf72695c9" ownerguid="86b66f59-3ca8-47ac-989d-645f7a9e219b"> -<Form> -<AUni ws="qvm-x-ach">shuplu</AUni> -<AUni ws="qvm-x-acl">shuplu; shuplu; shuplo</AUni> -<AUni ws="qvm-x-akh">shuplu</AUni> -<AUni ws="qvm-x-akl">shuplu; shuplu; shuplo</AUni> -<AUni ws="qvm-x-ame">shuplu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f91d8920-cf7e-400c-b196-a9eb3c574169" ownerguid="acf5e294-d169-45c1-a9d3-960536e018cc"> -<ExampleWords> -<AUni ws="en">reverberate, resonate, resound, ring, roll</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to making a sound that continues for a long time?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f92657c7-1914-40e6-a86c-17e728b8c21c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wardia</AUni> -<AUni ws="qvm-x-acl">wardia</AUni> -<AUni ws="qvm-x-akh">wardia</AUni> -<AUni ws="qvm-x-akl">wardia</AUni> -<AUni ws="qvm-x-ame">wardia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+guardia</AUni> -<AUni ws="qvm-x-acl">+guardia</AUni> -<AUni ws="qvm-x-akh">+guardia</AUni> -<AUni ws="qvm-x-akl">+guardia</AUni> -<AUni ws="qvm-x-ame">+guardia</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.821" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7b7ebdf2-df80-49aa-acf2-4d2a8b169b8c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+guardia</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e4324343-6d51-45f9-aafc-9558223fdbd5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="49dc9eb1-7fe9-4ed3-bdcc-75b551e23ebb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +guardia 
\entryTyp root 
\gENG guard 
\gSPN guardia 
\e +guardia 
\c N0 
\mp +assimilated 
\ach wardia 
\akh wardia 
\acl wardia 
\akl wardia 
\ame wardia</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="f926bd01-36eb-434f-88ad-057cc9e5cbda" ownerguid="e234ba41-daa0-43fa-ae0f-fc3e53f8a18f"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Lev 21.20 curcucuna, enänucuna, nübish nawicuna, garachucuna, pashtapäcogcuna y runtun däñashcunapis.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="f92a6344-889d-4b93-917f-c0cf30a745b7" ownerguid="1b73b2bf-9582-4f8a-822a-e0d020272c7c"> -<ExampleWords> -<AUni ws="en">gain on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to moving faster than the person you are following?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f92fc237-e63c-401c-904f-04d7db823eeb" ownerguid="80415fac-b3d8-4e3c-bdb8-dc92f3c6dad8"> -<ExampleWords> -<AUni ws="en">blowhard, braggart, bighead, name-dropper</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a person who boasts?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f9308afb-73bc-4444-a6bd-1a762dd98cdd" ownerguid="efe35dbf-ae76-4d63-b9ee-47f06f007351"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0 V0/V0 V1/V1 V2/V2 ONSHEV/ONSHEV R0/R0 N1/N1 R1/R1 BN/BN</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="720d1e1c-8ca2-4bbc-a24e-305c2af55fcb" t="o" /> -<objsur guid="3c85553c-4669-4181-8ac6-ec4290e85a02" t="o" /> -<objsur guid="c01da0bc-800f-4854-8120-ab307d60a5d6" t="o" /> -<objsur guid="04f1f94c-1463-49fe-8da6-b45101333092" t="o" /> -<objsur guid="064ec164-cf8e-43b7-9c3e-6d770a133792" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">JUST</AUni> -<AUni ws="es">SOL</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5a4d9e40-3b93-4303-947b-5d6ee7f02108" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f9367127-a1ad-41fc-af7f-34499d72dea3" ownerguid="23190f9e-2db2-4ef9-8c0e-495dbef05571"> -<ExampleWords> -<AUni ws="en">attraction, lust (n), passion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the feeling of being sexually attracted?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f936b01d-6aee-42a5-a3b6-e1f03daebfa7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">me:cha</AUni> -<AUni ws="qvm-x-acl">me:cha</AUni> -<AUni ws="qvm-x-akh">me:cha</AUni> -<AUni ws="qvm-x-akl">me:cha</AUni> -<AUni ws="qvm-x-ame">me:cha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mecha</AUni> -<AUni ws="qvm-x-acl">+mecha</AUni> -<AUni ws="qvm-x-akh">+mecha</AUni> -<AUni ws="qvm-x-akl">+mecha</AUni> -<AUni ws="qvm-x-ame">+mecha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.386" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fe2cd2e5-0d35-4764-b5df-65080c5ef4f0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mecha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="910a8975-8611-4612-9fd9-ee9c1f6b7a4e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b1609337-90c4-418e-beaf-8a9d694fb2da" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mecha 
\entryTyp root 
\gENG wick 
\gSPN mecha 
\e +mecha 
\c N0 
\ach me:cha 
\akh me:cha 
\acl me:cha 
\akl me:cha 
\ame me:cha</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiWordform" guid="f9370bf9-37df-4264-9fef-9956b51c3be6"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">qamkunatapis</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="f937313f-ec38-4f1b-86dc-cb78edd33ca2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ica</AUni> -<AUni ws="qvm-x-acl">ica</AUni> -<AUni ws="qvm-x-akh">ika</AUni> -<AUni ws="qvm-x-akl">ika</AUni> -<AUni ws="qvm-x-ame">ika</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ika</AUni> -<AUni ws="qvm-x-acl">*ika</AUni> -<AUni ws="qvm-x-akh">*ika</AUni> -<AUni ws="qvm-x-akl">*ika</AUni> -<AUni ws="qvm-x-ame">*ika</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.792" /> -<DateModified val="2022-10-10 21:18:47.219" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f299158c-809d-488c-9c81-1724ce2d7866" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ika</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bd209b26-d059-49a5-a258-acc41aa6b1c2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="10bf833f-e965-4966-a2b2-c12ef7406d32" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ika 
\entryTyp root 
\gENG 
\gSPN 
\e *ika 
\c V1 
\ach ica 
\akh ika 
\acl ica 
\akl ika 
\ame ika</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f937314a-30a1-42d7-8ab0-16fd9759b34f" ownerguid="1fda68d4-5941-4695-b656-090d603a3344"> -<ExampleWords> -<AUni ws="en">raw, rare, medium, well done, under done, under cooked, over cooked, burnt, burned to a crisp, crispy, charred, just right</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe how thoroughly something has been cooked?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f9384b7b-f22b-432a-aa38-bb99b6f0c4bb" ownerguid="f38f8344-838f-44ba-b103-22289c2d2793"> -<ExampleWords> -<AUni ws="en">soaked, soaking wet, sopping wet, wringing wet, awash, dripping, sodden, soggy, saturated, waterlogged, be swimming in, drenched, doused</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is very wet?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f93a6705-e8f0-4c6d-a54c-bed2cba01ec5" ownerguid="3428d24a-3bf7-40ad-84c4-5d5372be9647" /> -<rt class="CmDomainQ" guid="f940cff2-2ca2-4e3a-bf09-b5ed176643b5" ownerguid="1fda68d4-5941-4695-b656-090d603a3344"> -<ExampleWords> -<AUni ws="en">food preparation, cook, prepare food, fix (a meal, dish), make a dish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to preparing food?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f9411a24-70da-41e1-aab3-c407226833b3" ownerguid="0aae0254-dc06-4906-8ecf-2d8450fb83f1"> -<ExampleWords> -<AUni ws="en">lie, be lying down, lay, be prone, recumbent, repose</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to being in a lying position?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f941947a-249d-4494-8ba5-ee40cfc3d58a" ownerguid="d2f516f4-df1c-44f6-8704-76dd52201317"> -<ExampleWords> -<AUni ws="en">foreigner, immigrant, alien, expatriate, outsider</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a foreigner?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="f942e9f6-5383-45d3-bf7c-c2acac03a5a5" ownerguid="949e9796-6a45-491b-8830-9b53d2c48998"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">MAT 23.5 Tsaymi jatusaq filacteriankunata [Filacteriaqa takshala cajïtami karqan.]</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="f943628b-a409-4384-bb7b-66c8ec485202"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cucuta; cucuta:</AUni> -<AUni ws="qvm-x-acl">cucuta; cucuta:</AUni> -<AUni ws="qvm-x-akh">kukuta; kukuta:</AUni> -<AUni ws="qvm-x-akl">kukuta; kukuta:</AUni> -<AUni ws="qvm-x-ame">kukuta; kukuta:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kukuta:</AUni> -<AUni ws="qvm-x-acl">*kukuta:</AUni> -<AUni ws="qvm-x-akh">*kukuta:</AUni> -<AUni ws="qvm-x-akl">*kukuta:</AUni> -<AUni ws="qvm-x-ame">*kukuta:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.300" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="24bb6dc4-2374-4b4c-a39d-8a439dc4416e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kukuta:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="f2207e17-36cf-49cb-bf93-4187ea1e2151" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a65a1b93-77ce-49fc-af28-2ae244226294" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kukuta: 
\entryTyp root 
\gENG chief 
\gSPN jefe 
\e *kukuta: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach cucuta foreshortened 
\ach cucuta: 
\akh kukuta foreshortened 
\akh kukuta: 
\acl cucuta foreshortened 
\acl cucuta: 
\akl kukuta foreshortened 
\akl kukuta: 
\ame kukuta foreshortened 
\ame kukuta:</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="f9443d15-2f7c-4f3b-b886-972849345627" ownerguid="1778b9f5-92c8-4f88-909b-a38926b5101a"> -<Form> -<AUni ws="qvm-x-ach">wancash</AUni> -<AUni ws="qvm-x-acl">wancash</AUni> -<AUni ws="qvm-x-akh">wankash</AUni> -<AUni ws="qvm-x-akl">wankash</AUni> -<AUni ws="qvm-x-ame">wankash</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiGloss" guid="f94498ce-220e-4c6d-920f-657fab72ec9b" ownerguid="02d40281-094f-426e-a0eb-f10e113efb58"> -<Form> -<AUni ws="en">get.wife</AUni> -</Form> -</rt> -<rt class="CmDomainQ" guid="f9455694-3dc9-4d65-8250-80f3ac744af6" ownerguid="529140d1-6e8e-44fe-99f0-95289e933607"> -<ExampleWords> -<AUni ws="en">genealogy, lineage, pedigree, family tree</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a listing of your ancestors?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f9469bbb-83a4-4c74-b556-ad31b0858754" ownerguid="6342c8bf-55b5-400f-af7e-63055fe6813b"> -<ExampleWords> -<AUni ws="en">equipment, apparatus, gear, kit, things, stuff, tools</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to all the tools and other things you need to do a job?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f94d5da3-c02d-4742-98e5-6e7159499780"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cólera; co:lera</AUni> -<AUni ws="qvm-x-acl">cólera; co:lera</AUni> -<AUni ws="qvm-x-akh">cólera; co:lera</AUni> -<AUni ws="qvm-x-akl">cólera; co:lera</AUni> -<AUni ws="qvm-x-ame">cólera; co:lera</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cólera</AUni> -<AUni ws="qvm-x-acl">+cólera</AUni> -<AUni ws="qvm-x-akh">+cólera</AUni> -<AUni ws="qvm-x-akl">+cólera</AUni> -<AUni ws="qvm-x-ame">+cólera</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.211" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="49fde4e4-33f0-4438-a86c-7a377e889399" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cólera</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8a5d195a-c9c8-4b98-b9fc-ed431c4260c5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ca03e885-a9cb-498f-8445-9d66aa33c58b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cólera 
\entryTyp root 
\gENG cholera 
\gSPN colera 
\e +cólera 
\c N0 
\ach cólera / _# 
\ach co:lera / ~_# 
\akh cólera / _# 
\akh co:lera / ~_# 
\acl cólera / _# 
\acl co:lera / ~_# 
\akl cólera / _# 
\akl co:lera / ~_# 
\ame cólera / _# 
\ame co:lera / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="f94e9041-49b0-4d25-aa54-9446c5ab45f4" ownerguid="30fff450-1aa5-4993-9c14-c8019a5f072e"> -<Abbreviation> -<AUni ws="en">9.6.1.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.718" /> -<DateModified val="2022-9-23 16:55:8.718" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words indicating that something is true of one thing (or person) instead of another thing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Instead</AUni> -</Name> -<Questions> -<objsur guid="e846f55c-b090-40eb-b10b-fefcc038768c" t="o" /> -<objsur guid="f6c41b86-44cd-4522-b703-f16dd39c9b74" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="f94fcb56-4a91-4449-81d2-b27cf622639d" ownerguid="d586a164-ac8f-4356-8aa8-07721c2b5e09"> -<ExampleWords> -<AUni ws="en">post office, postal service</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the government agency that delivers letters?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="f950b7cc-fb85-4dbb-b8ca-934d38cae7fc" ownerguid="af0909a5-928a-4421-baaa-f33b14302714"> -<Abbreviation> -<AUni ws="en">9.2.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.690" /> -<DateModified val="2022-9-23 16:55:8.690" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain to list all conjunctions.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Conjunctions</AUni> -</Name> -<Questions> -<objsur guid="d8df9868-b5d7-43a5-9a7d-193892e377a5" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="a42aa891-e4fd-489e-b573-b9d20dfc5c2a" t="o" /> -<objsur guid="2c576c40-17ae-45a7-9ec8-6c16e02ab9c3" t="o" /> -<objsur guid="ae04020a-3bb2-4672-ad75-71ce72d461ea" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="f9516c66-ac2c-49dd-951a-0d3606450463" ownerguid="596ab399-e442-4afe-8796-633a49de65a7"> -<Abbreviation> -<AUni ws="en">4.7.9.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.274" /> -<DateModified val="2022-9-23 16:55:8.274" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being unfair to someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88D' Show Favoritism, Prejudice</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Discriminate, be unfair</AUni> -</Name> -<Questions> -<objsur guid="60395e1e-9688-468a-a7a7-3f949d15430f" t="o" /> -<objsur guid="4ea61b21-a671-47d2-a5ab-f14d71657308" t="o" /> -<objsur guid="1346b729-bf4b-401b-bac6-5b1dcc22c889" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="f9528962-2b46-42a0-8bd8-caca48c57ec4" ownerguid="31214385-6f41-400c-a286-902b820dcaed"> -<Form> -<AUni ws="qvm-x-ach">tijïra</AUni> -<AUni ws="qvm-x-acl">tijïra</AUni> -<AUni ws="qvm-x-akh">tijïra</AUni> -<AUni ws="qvm-x-akl">tijïra</AUni> -<AUni ws="qvm-x-ame">tijïra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f9531e8c-f38a-428e-ae24-07a5a1380b8a" ownerguid="00269021-e1c4-474d-9dba-341d296bdac7"> -<ExampleWords> -<AUni ws="en">order, sequence, cycle, pattern, rota, order of events</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the order or sequence of a group of events?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f9536acd-cb90-46ea-b1b2-4936b842f32e" ownerguid="6ed67bed-4755-4ff6-8325-091d6c82186d"> -<Form> -<AUni ws="qvm-x-ach">devötu</AUni> -<AUni ws="qvm-x-acl">devötu; devötu; devöto</AUni> -<AUni ws="qvm-x-akh">devötu</AUni> -<AUni ws="qvm-x-akl">devötu; devötu; devöto</AUni> -<AUni ws="qvm-x-ame">devötu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f9557f61-ce25-4d30-b39f-2f54a587bebe" ownerguid="c2630384-2f72-4a96-baed-3fff03383362"> -<ExampleWords> -<AUni ws="en">crop, harvest, yield</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to what is harvested?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f95620d5-5e3a-4ecc-8ca2-3af2aff8b4c1" ownerguid="d853597b-f3ed-470b-b6dd-8fe93b8e43eb"> -<ExampleWords> -<AUni ws="en">shh, shush, shut up, be quiet, keep it down, pipe down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What do you say when you want someone to be quiet?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f9564b82-5474-4e65-9b01-3ef374845f24" ownerguid="49c525b3-2163-48e1-b3bd-57e5cdc486a4"> -<ExampleWords> -<AUni ws="en">tendon, ligament, sinew, hamstring</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the tendons?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="f957a4aa-d3d4-4dad-93d1-20565b5158d4" ownerguid="529140d1-6e8e-44fe-99f0-95289e933607"> -<Abbreviation> -<AUni ws="en">4.1.9.1.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.194" /> -<DateModified val="2022-9-23 16:55:8.194" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to your cousins.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Cousin</AUni> -</Name> -<OcmCodes> -<Uni>605 Cousins</Uni> -</OcmCodes> -<Questions> -<objsur guid="5db515ff-5935-410f-8b05-f482172b28f6" t="o" /> -<objsur guid="f6cc0ac4-dcf8-4e61-afe7-4b30ec042a11" t="o" /> -<objsur guid="545a9271-93a2-49f6-8967-6098b1a9f17f" t="o" /> -<objsur guid="af915073-f912-4266-977a-64c871b7ea9d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="f959b605-9ae3-4613-9c49-cf0038288e8c" ownerguid="2b846476-00cf-4d82-97a1-26e1eda880ca"> -<ExampleWords> -<AUni ws="en">immature, childish, infantile, juvenile, puerile, silly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something someone does that is immature?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f95bd51f-a2c3-4f1e-9ea1-fb4f960c5806" ownerguid="93489181-ad8c-4a18-8dbc-fd7a9c871126"> -<ExampleWords> -<AUni ws="en">be in a bad mood, be in a huff, be in one of his bad moods, got out of bed on the wrong side, got out on the wrong side of the bed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to being bad-tempered for a short time?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f9605e5f-491d-4bd8-ba73-f471f06a8f6f" ownerguid="0169a639-f66b-44c6-8af6-f5ef5270c953"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f9613b73-8937-45fd-98c4-eaa22a08a61d" ownerguid="86e5c062-d90f-476c-a363-264adfafedfa"> -<ExampleWords> -<AUni ws="en">extend, hold out, put out, stick out, stretch</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to moving a part of your body forward or out? </AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f96e8a7b-d84c-4d74-b5f7-1c43535a1e0c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">bu:qui; bu:qui</AUni> -<AUni ws="qvm-x-acl">bu:qui; bu:qui; bu:que</AUni> -<AUni ws="qvm-x-akh">bu:qui; bu:qui</AUni> -<AUni ws="qvm-x-akl">bu:qui; bu:qui; bu:que</AUni> -<AUni ws="qvm-x-ame">bu:qui; bu:qui</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+buque</AUni> -<AUni ws="qvm-x-acl">+buque</AUni> -<AUni ws="qvm-x-akh">+buque</AUni> -<AUni ws="qvm-x-akl">+buque</AUni> -<AUni ws="qvm-x-ame">+buque</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.100" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ac670db5-cdff-407e-b469-884f9538e16e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+buque</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5ddd1047-5a61-4615-9481-15e728698131" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="44f24397-3af2-4bc3-8e8a-fb88c335f5b8" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +buque 
\entryTyp root 
\gENG boat 
\gSPN buque 
\e +buque 
\c N0 
\mp +FinalI 
\ach bu:qui / _# 
\ach bu:qui / ~_# 
\akh bu:qui / _# 
\akh bu:qui / ~_# 
\acl bu:qui / _# 
\acl bu:qui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl bu:que +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl bu:qui / _# 
\akl bu:qui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl bu:que +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame bu:qui / _# 
\ame bu:qui / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f96f24fe-71e2-483c-9cdd-5a594562393e" ownerguid="adf6ad2b-7af9-4bd8-a7b4-f864b9dad86d"> -<ExampleWords> -<AUni ws="en">(no words in English)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the steps or parts of the initiation rites?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f9710e14-d51b-49a3-bff9-e4d0fbc8a989" ownerguid="51d4e258-430c-4032-94e3-ee53095e7045"> -<ExampleWords> -<AUni ws="en">answer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to giving an answer on a test?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f9732dfc-9f12-47d1-ae7e-d79260f99ab1" ownerguid="b133daae-24b4-4145-9783-83d68c46c023"> -<Form> -<AUni ws="qvm-x-ach">ari</AUni> -<AUni ws="qvm-x-acl">ari; are</AUni> -<AUni ws="qvm-x-akh">ari</AUni> -<AUni ws="qvm-x-akl">ari; are</AUni> -<AUni ws="qvm-x-ame">ari</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="f97eae9e-2a8f-4ee5-86a0-173f20acb354" ownerguid="fbd564c4-4cb4-4360-bf66-baaa725a70fe"> -<Form> -<AUni ws="qvm-x-ach">wagta</AUni> -<AUni ws="qvm-x-acl">wagta</AUni> -<AUni ws="qvm-x-akh">waqta</AUni> -<AUni ws="qvm-x-akl">waqta</AUni> -<AUni ws="qvm-x-ame">waqta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="f980af6b-7b2e-4b20-a512-e58de06349ce" ownerguid="bfb1dfa0-ba12-4f41-a1b8-3d99e5b634c5"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="a0fb93b0-abc8-40a1-96a2-afca7966e414" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="6fa4402f-60c0-4a0d-aad6-040af485e6ce" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="f981be5e-c07d-4b65-8b69-b85c090fcdcb" ownerguid="2c4232f4-aaca-48a0-9037-a28ba6056c1d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -<Sense> -<objsur guid="db6117c5-121c-433a-a891-e69950f55761" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="f981c102-84f4-446f-8855-e7b867155692" ownerguid="bf08aac6-305f-435c-abe7-9634c0632db4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stir</AUni> -<AUni ws="es">batir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="4663620c-13cf-4c6a-bfc0-272e3c586d32" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="f98553df-6d6e-471a-ac1f-59006538f87c" ownerguid="f8346466-db96-4d4b-8a8d-2da65cfd7dc2"> -<Gloss> -<AUni ws="en">SIM2.2</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9f227daa-6be8-432d-8cbf-31169eb23e02" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f98ab20d-aba5-491e-9416-6910642750aa" ownerguid="749ad6fe-5509-4e45-b236-84ea12de102e"> -<ExampleWords> -<AUni ws="en">share, hand out, give out, distribute, dish out, dole out, give away, give to charity, give to the poor, donate, make a donation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to sharing wealth with others?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="f99036a0-438b-45d0-9238-87c647f43d7f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">posa:da</AUni> -<AUni ws="qvm-x-acl">posa:da</AUni> -<AUni ws="qvm-x-akh">posa:da</AUni> -<AUni ws="qvm-x-akl">posa:da</AUni> -<AUni ws="qvm-x-ame">posa:da</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+posada</AUni> -<AUni ws="qvm-x-acl">+posada</AUni> -<AUni ws="qvm-x-akh">+posada</AUni> -<AUni ws="qvm-x-akl">+posada</AUni> -<AUni ws="qvm-x-ame">+posada</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.901" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="07788a10-39fc-4891-b67b-e85ef171a56b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+posada</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="24948353-8f72-4f21-87d3-a8a0bed3e858" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="87512480-1309-4974-8c78-f5fe537aa1df" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +posada 
\entryTyp root 
\gENG room 
\gSPN posada 
\e +posada 
\c N0 
\ach posa:da 
\akh posa:da 
\acl posa:da 
\akl posa:da 
\ame posa:da 
\mcc +posada / ~_ PLUR</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="f9910fbe-4905-4bbd-9cd0-c1fb93e03b5e" ownerguid="058bcc9b-c5fa-4e59-ab58-199b261ad2ee"> -<Form> -<AUni ws="qvm-x-ach">oficiu; oficio</AUni> -<AUni ws="qvm-x-acl">oficiu; oficiu; oficio</AUni> -<AUni ws="qvm-x-akh">oficiu; oficio</AUni> -<AUni ws="qvm-x-akl">oficiu; oficiu; oficio</AUni> -<AUni ws="qvm-x-ame">oficiu; oficio</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f99317b2-0139-4c4b-8b6d-1eac4f3770be"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">enre:du</AUni> -<AUni ws="qvm-x-acl">enre:du; enre:du; enre:do</AUni> -<AUni ws="qvm-x-akh">enre:du</AUni> -<AUni ws="qvm-x-akl">enre:du; enre:du; enre:do</AUni> -<AUni ws="qvm-x-ame">enre:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+enredo</AUni> -<AUni ws="qvm-x-acl">+enredo</AUni> -<AUni ws="qvm-x-akh">+enredo</AUni> -<AUni ws="qvm-x-akl">+enredo</AUni> -<AUni ws="qvm-x-ame">+enredo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.475" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="05cea2ef-ede9-44ea-ad41-fdd86b845f05" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+enredo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ef901047-9ceb-4083-ac73-91f80168d5dd" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="89347737-7095-483c-b34b-5000a279161b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +enredo 
\entryTyp root 
\gENG 
\gSPN 
\e +enredo 
\c N0 
\ach enre:du 
\akh enre:du 
\acl enre:du / _# 
\acl enre:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl enre:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl enre:du / _# 
\akl enre:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl enre:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame enre:du 
\i PRO 12.13 Fiyu runaga shimilanpitami ima enrëdumanpis jatican.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="f9935962-9a14-485d-9bef-bd4a52dd92c1" ownerguid="562f55de-efc7-41a7-b450-6f9dea2813e2"> -<Abbreviation> -<AUni ws="en">4.6.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.256" /> -<DateModified val="2022-9-23 16:55:8.256" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a governing body--an organization within the government.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Governing body</AUni> -</Name> -<OcmCodes> -<Uni>623 Councils; 646 Parliament; 647 Administrative Agencies</Uni> -</OcmCodes> -<Questions> -<objsur guid="cfa7cd1c-8673-4ff0-a931-5b80455f4b4b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="f996e144-02df-417b-8d67-c2b1adba1085"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">afila</AUni> -<AUni ws="qvm-x-acl">afila</AUni> -<AUni ws="qvm-x-akh">afila</AUni> -<AUni ws="qvm-x-akl">afila</AUni> -<AUni ws="qvm-x-ame">afila</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+afilar</AUni> -<AUni ws="qvm-x-acl">+afilar</AUni> -<AUni ws="qvm-x-akh">+afilar</AUni> -<AUni ws="qvm-x-akl">+afilar</AUni> -<AUni ws="qvm-x-ame">+afilar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.659" /> -<DateModified val="2022-10-10 21:19:54.718" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="94be3d8a-5869-4d28-882d-d06f438abfe4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+afilar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3a41a9eb-39ab-4593-a945-f40dcbba2674" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="81796940-9ae3-440f-a17b-e21bc698c63b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +afilar 
\entryTyp root 
\gENG sharpen 
\gSPN afilar 
\e +afilar 
\c V1 
\ach afila 
\akh afila 
\acl afila 
\akl afila 
\ame afila</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f99aa928-abae-489c-875a-73555579c5db" ownerguid="2082b248-6be6-4b73-8a24-262f56e13969"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">drunkard</AUni> -<AUni ws="es">borracho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e51383ed-486d-44f4-a006-017b7f39990c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f99ab690-d012-4f90-8e1e-4c177720d57a" ownerguid="636d70ed-cf52-4b74-8fa3-eab46fe5bab6"> -<Form> -<AUni ws="qvm-x-ach">gumita</AUni> -<AUni ws="qvm-x-acl">gumita</AUni> -<AUni ws="qvm-x-akh">gumita</AUni> -<AUni ws="qvm-x-akl">gumita</AUni> -<AUni ws="qvm-x-ame">gumita</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="f99af8a2-0082-4adc-9fff-47ba21d7ef83" ownerguid="de8a0885-39a4-494f-bf8f-736e609222eb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="341e674e-54f2-4df0-9c39-66ddd5aa2c61" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">freeze</AUni> -<AUni ws="es">congelar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="85514a36-a370-40c3-b181-080b6c2e41cc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="f99c9aff-d490-43b3-a50f-a558c66bd76d" ownerguid="bca5430d-cc1a-4772-9ada-81d107cabfda"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">slander</AUni> -<AUni ws="es">rinsilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9ee5d44e-85e1-4b35-8949-ddcf800a1506" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="f99ca948-e6f8-40bd-a120-c10cfe309159"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gonga</AUni> -<AUni ws="qvm-x-acl">gonga</AUni> -<AUni ws="qvm-x-akh">qonqa</AUni> -<AUni ws="qvm-x-akl">qonqa</AUni> -<AUni ws="qvm-x-ame">qunqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qunqa</AUni> -<AUni ws="qvm-x-acl">*qunqa</AUni> -<AUni ws="qvm-x-akh">*qunqa</AUni> -<AUni ws="qvm-x-akl">*qunqa</AUni> -<AUni ws="qvm-x-ame">*qunqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.851" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ddd3e705-5bba-4f44-becf-19569e809a96" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qunqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2ba174b3-7441-4ba8-a159-1961ba55ff01" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dd3021f7-38a6-44ce-ba30-fd69c6f43b7a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qunqa 
\entryTyp root 
\gENG olvidar 
\gSPN forget 
\e *qunqa 
\c V2 
\ach gonga 
\akh qonqa 
\acl gonga 
\akl qonqa 
\ame qunqa 
\mcc *qunqa / ~_ [ben] [q] | gongapagmi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="f99d65bb-e002-46d2-ac27-666fd5c95bc5" ownerguid="4e330f00-ea0d-4354-8f03-8b892281201f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="f99f6b63-6b7c-4ff5-bcca-2b9b0e52e8c9" ownerguid="3d14b004-bfeb-41f3-8a76-832e2aba01bb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="9195831b-33be-4b85-93bf-c63630405096" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="f9a33614-2be4-42e9-a6a8-27024a7a2ac0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">paz</AUni> -<AUni ws="qvm-x-acl">paz</AUni> -<AUni ws="qvm-x-akh">paz</AUni> -<AUni ws="qvm-x-akl">paz</AUni> -<AUni ws="qvm-x-ame">paz</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+paz</AUni> -<AUni ws="qvm-x-acl">+paz</AUni> -<AUni ws="qvm-x-akh">+paz</AUni> -<AUni ws="qvm-x-akl">+paz</AUni> -<AUni ws="qvm-x-ame">+paz</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.769" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b408c595-cd18-4c26-9d6a-c3c7182c80fd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+paz</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0abdb312-1d88-4717-8b5c-c6f6dfc0c10b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="14902456-1bff-433f-aaac-93b3ba1b7c84" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +paz 
\entryTyp root 
\gENG 
\gSPN 
\e +paz 
\c N0 
\mp +FinalC 
\ach paz 
\akh paz 
\acl paz 
\akl paz 
\ame paz 
\i sacrificio de paz</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="f9a7615f-1f91-4399-aca7-b6b969488271" ownerguid="48f6a6e5-aff4-47b5-8845-d7ebd0d64d3f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">polished</AUni> -<AUni ws="es">polido</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="14a372d7-ed7d-486e-b5ee-fc2daa923df4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f9a9559b-c047-4cca-9b59-c9f1853f86b4" ownerguid="aaa5da77-f45a-4633-bf3d-c6da97b9c371"> -<Form> -<AUni ws="qvm-x-ach">avispa</AUni> -<AUni ws="qvm-x-acl">avispa</AUni> -<AUni ws="qvm-x-akh">avispa</AUni> -<AUni ws="qvm-x-akl">avispa</AUni> -<AUni ws="qvm-x-ame">avispa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f9a99629-dfdd-450c-8908-c9cfb205a755" ownerguid="646dab64-5c2f-4f45-8e28-4d13437639d4"> -<ExampleWords> -<AUni ws="en">friend, pal, buddy, amigo, soul mate, mate, girlfriend, boyfriend, companion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words are used to refer to a person who is a friend?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f9aae074-2fec-4ffb-8801-3179b7dcbaee" ownerguid="6e56b766-4dfa-4284-abff-db28ea823148"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="f9acd94d-0ee7-4a74-8899-7c4e814e6193" ownerguid="c5dfc0a3-98ab-4b09-ab50-3300f85df6db" /> -<rt class="MoStemMsa" guid="f9b0ec0a-9293-45b9-9dc2-eca99c90600c" ownerguid="3d1737b3-d05f-468d-bce7-dd3e3b409859"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f9b14cc5-228e-4a3b-8633-049fb7f39b82" ownerguid="f3dbb078-6265-4861-a6e3-46cc151c5d72"> -<ExampleWords> -<AUni ws="en">complain, beef, blame, fuss, grouch, grouse, growl, murmur, mutter, object, protest, squawk, wail, yap, make a complaint, lodge a complaint, file a complaint, take it up with, take the matter up with, make a fuss, kick up a fuss, air your grievances, yammer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to complaining?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f9b51f60-2e09-49e0-b019-7e0de16ccf31" ownerguid="e7c1521c-60de-4787-9046-6842754b08cb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f9b818a0-0f20-4960-a67e-0dfe141ec36f" ownerguid="12b6934d-3a4a-4623-995f-865f401349ab"> -<ExampleWords> -<AUni ws="en">eat a lot, eat too much, be a glutton, gluttony, eat like a pig, pig out</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to eating a lot?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f9b87870-7b39-41a5-8cb3-e991b17cf5ff" ownerguid="d1ffe734-0f20-4b85-81d7-feda360df240"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="f9b96870-eecc-4746-9a7b-8a9647ea3e32" ownerguid="1e2b3ba4-8568-43e3-b010-1ed75a2982f9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="f07082ba-9a14-4d5d-b895-70c53871eb6e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f9bd16bf-2bfc-42ba-9d10-c279502db56d" ownerguid="b4e6c077-4f5e-44f3-8868-1f7ae3486585"> -<ExampleWords> -<AUni ws="en">set the table</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to preparing the table for eating?</AUni> -</Question> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="f9bf2f95-2c02-4382-b1c8-ec171a061f5e" ownerguid="a5543b3c-5e6c-4731-ad29-1d1954a46f1a" /> -<rt class="LexSense" guid="f9c5db2a-3d3f-45e2-8f41-9f7d95d2f33c" ownerguid="3378188d-6eed-4c37-8962-7e6c5f2b95bb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="d50d4a34-da2d-465f-9aac-2109d1530e2a" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">theif</AUni> -<AUni ws="es">ladrón</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="06130dbf-3d25-4d94-8b85-fddfe83aedba" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="f9c821e1-1988-410c-b0c1-7e2c7f9377fe" ownerguid="e545baab-581d-4af8-81f2-5a884e272349"> -<ExampleWords> -<AUni ws="en">colt, foal, filly</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to young horses?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f9c9cc79-7e79-4c2a-82a2-eaf4c489b2c7" ownerguid="041b5ac9-99be-4281-a17e-654eff33d793"> -<ExampleWords> -<AUni ws="en">hairstyle, short hair, long hair, braid, wig</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the style of a woman's hair?</AUni> -</Question> -</rt> -<rt class="MoUnclassifiedAffixMsa" guid="f9cb2a30-bcf2-45b4-b8a6-45834c36e310" ownerguid="44a31c2a-c0ef-4cb6-b7c3-fc202ecdff8b" /> -<rt class="CmDomainQ" guid="f9cd8c1f-fd4f-43b5-85c6-348c876931dd" ownerguid="2e95bd1e-82f0-461d-8ca6-b5f1ce1fb180"> -<ExampleWords> -<AUni ws="en">ask someone to marry you, propose, pop the question, proposal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to asking someone to marry you?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="f9d020d6-b129-4bb8-9509-3b4a6c27482e" ownerguid="474aa982-8350-47e2-a983-e1e2bce9d928"> -<Abbreviation> -<AUni ws="en">3.4.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.133" /> -<DateModified val="2022-9-23 16:55:8.133" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to feeling interested.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Interested</AUni> -</Name> -<Questions> -<objsur guid="fc76e628-15fc-443d-b845-1142879da94a" t="o" /> -<objsur guid="fea5edff-65bb-4efd-af48-496a95487032" t="o" /> -<objsur guid="119efdc8-1663-47ab-80d1-fbdef8a470d4" t="o" /> -<objsur guid="0a0c258e-d8d7-462a-85f7-01309b7fb372" t="o" /> -<objsur guid="3eb0b1e0-c492-49cf-85a5-bd3ddf881611" t="o" /> -<objsur guid="c22b5bbe-c096-42ef-bd83-96ef39291630" t="o" /> -<objsur guid="c6027fd5-db1a-4fde-bd34-b9f83fd65a84" t="o" /> -<objsur guid="62dd411b-e894-437b-be19-baff7d23408d" t="o" /> -<objsur guid="ed3c007d-72e3-4a0d-88be-a2205f510b17" t="o" /> -<objsur guid="1fa590dc-97d1-46f2-a89c-b4fe604f57bb" t="o" /> -<objsur guid="e6c3cbd8-954d-407a-8884-ee960ae6b58a" t="o" /> -<objsur guid="668c55e1-7747-4311-84b5-352a0c014f6d" t="o" /> -<objsur guid="c353353b-618c-46a1-8309-0799add623a3" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="00364f0c-9a3a-4910-a82e-1ffbc4d4137f" t="o" /> -<objsur guid="85912845-21b0-41eb-8b8c-1f5c3d53df08" t="o" /> -<objsur guid="1c0c4951-03b6-49b8-8a8e-724397cfd5a7" t="o" /> -<objsur guid="bb2a112f-af6f-4a54-bbf0-ba7b8289e58b" t="o" /> -<objsur guid="5c31bdf6-901f-4f14-ab64-7a99524710fc" t="o" /> -<objsur guid="0fa0be21-2246-40b2-86b1-ca572fe8c16c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="f9d0dbe3-8a78-4bf6-bab9-8613091e6073"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">du:ra</AUni> -<AUni ws="qvm-x-acl">du:ra</AUni> -<AUni ws="qvm-x-akh">du:ra</AUni> -<AUni ws="qvm-x-akl">du:ra</AUni> -<AUni ws="qvm-x-ame">du:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+durar</AUni> -<AUni ws="qvm-x-acl">+durar</AUni> -<AUni ws="qvm-x-akh">+durar</AUni> -<AUni ws="qvm-x-akl">+durar</AUni> -<AUni ws="qvm-x-ame">+durar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.447" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4ec691d7-7af4-4628-a9f6-02657c1061ac" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+durar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cc36b956-310a-452a-a4f3-908466d95089" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="729385cd-7886-4efe-a986-f441af5774fa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +durar 
\entryTyp root 
\gENG last 
\gSPN durar 
\e +durar 
\c V1 
\ach du:ra 
\akh du:ra 
\acl du:ra 
\akl du:ra 
\ame du:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="f9d3485c-1f3c-4201-a8cf-0814b23f3a63" ownerguid="39dcb6b9-94df-45be-a128-c14c7a9dcdbd"> -<ExampleWords> -<AUni ws="en">retch, heave, gag</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to vomiting without bringing anything up?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="f9d4e316-b8f8-488e-ba9b-cad9589cba90" ownerguid="5bcb91f8-4679-4054-8878-eb33e05eeb76"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="f9d540c1-1e05-4ba0-979e-d320394d7f89" ownerguid="0656f6a7-9a88-4c03-a8ab-ace8c0f52ebf"> -<ExampleWords> -<AUni ws="en">(no words in English)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a married woman having a child by another man?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f9d6c5ab-aea7-42cb-bafe-06358d32180c" ownerguid="7831223b-e5ed-4186-a321-94e9ae72a27d"> -<ExampleWords> -<AUni ws="en">throw (n)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to an act of throwing?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f9d701d1-9aba-4d76-8532-18f4ea36ccb1" ownerguid="607457c5-5a36-43ab-8809-5a39b18cc3e8"> -<Form> -<AUni ws="qvm-x-ach">achachalay</AUni> -<AUni ws="qvm-x-acl">achachalay</AUni> -<AUni ws="qvm-x-akh">achachalay</AUni> -<AUni ws="qvm-x-akl">achachalay</AUni> -<AUni ws="qvm-x-ame">achachalay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="f9d7ff13-d20d-48c4-8c27-139330b39b68" ownerguid="bf40fe7b-ea11-4548-9b7b-613f2bdef890"> -<Form> -<AUni ws="qvm-x-ach">puchca</AUni> -<AUni ws="qvm-x-acl">puchca</AUni> -<AUni ws="qvm-x-akh">puchka</AUni> -<AUni ws="qvm-x-akl">puchka</AUni> -<AUni ws="qvm-x-ame">puchka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="f9d91f2d-20d9-499d-b8ec-0b04a6c0381f" ownerguid="2c96d9ad-62d9-47eb-b44a-060e3f497217"> -<Form> -<AUni ws="qvm-x-ach">muntu</AUni> -<AUni ws="qvm-x-acl">muntu; munto</AUni> -<AUni ws="qvm-x-akh">muntu</AUni> -<AUni ws="qvm-x-akl">muntu; munto</AUni> -<AUni ws="qvm-x-ame">muntu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f9d956b6-73d7-44f4-ac6c-b9a73cf0ab9e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ashnu</AUni> -<AUni ws="qvm-x-acl">ashnu; ashnu; ashno</AUni> -<AUni ws="qvm-x-akh">ashnu</AUni> -<AUni ws="qvm-x-akl">ashnu; ashnu; ashno</AUni> -<AUni ws="qvm-x-ame">ashnu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+asno</AUni> -<AUni ws="qvm-x-acl">+asno</AUni> -<AUni ws="qvm-x-akh">+asno</AUni> -<AUni ws="qvm-x-akl">+asno</AUni> -<AUni ws="qvm-x-ame">+asno</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.850" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="03fa39ff-268f-4681-bca3-4df5fa69b068" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+asno</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a4d91a73-cdad-490b-9b42-7d565ef7cad0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="643e10c6-18f3-4268-98f7-60392045778b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +asno 
\entryTyp root 
\gENG donkey 
\gSPN asno 
\e +asno 
\c N0 
\mp +assimilated 
\ach ashnu 
\akh ashnu 
\acl ashnu / _# 
\acl ashnu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ashno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ashnu / _# 
\akl ashnu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ashno +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ashnu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="f9d95d96-682e-4c52-bd5c-35ea76540a52" ownerguid="d0c4fdf1-d489-41c5-a5f1-35bbfd91f04d"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1ki 16.18 Tsaynogpis Asiria nacionpa mandagnin reypa gustunta rurarmi sábado junag \nd Tayta Diosta\nd* adorananpag armashgan tabladïlluta templu patiupita jorgorgan.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="f9dd8bc0-a6ef-4677-9ed1-1afbac7b6834" ownerguid="43e9931c-d63d-4fa4-934c-80870b1d2ccf"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="f9de0388-86ef-4741-a41a-59ef4f18864c" ownerguid="2aca7b11-2928-46f1-acba-cbcf9a78ce8f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">olive</AUni> -<AUni ws="es">olivos</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="019a080d-5194-4515-ac46-60f94f08b09c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoInflAffixSlot" guid="f9e1228b-4c5b-4e23-bd04-d513eddcbaea" ownerguid="a4fc78d6-7591-4fb3-8edd-82f10ae3739d"> -<Name> -<AUni ws="en">case</AUni> -</Name> -<Optional val="True" /> -</rt> -<rt class="LexExampleSentence" guid="f9e13751-ff3b-4e69-a7b4-27133e694008" ownerguid="834215e0-814a-4fd7-9704-5c138980952b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2KI 21.13 Ganra plätu mojusyashga captin ucparcur shumag limpiashgannogmi Jerusalén marcatapis limpiashag.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="f9e354c8-0a5b-4cf8-99d6-cf8a3ad935c6" ownerguid="bbc5b3a2-4c6e-4d07-849b-4d616615a794"> -<ExampleWords> -<AUni ws="en">past, before, in the past, in years gone by, in the times of our fathers, in our father's/grandparent's/ancestor's time, was (being/doing/happening), lately</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the past?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f9e57dc7-d5fc-4959-a3bf-7512a6069495" ownerguid="3be7e3fe-89d4-471a-92bd-8c70fcb146bb"> -<ExampleWords> -<AUni ws="en">deaf</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is deaf?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f9ef85f4-c0f5-40ff-b2ff-9af02703ab62" ownerguid="32bebe7e-bdcc-4e40-8f0a-894cd6b26f25"> -<ExampleWords> -<AUni ws="en">health, bloom, fitness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the state of being healthy?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="f9f0be58-c149-4191-8ee9-e76cac3ad606" ownerguid="31debfe3-91da-4588-b433-21b0e14a101b"> -<ExampleWords> -<AUni ws="en">pothole, road gone to pot, rutted, washboard, dusty, rough, broken pavement, cracked pavement, worn pavement, full of holes, in need of repair</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words are used to describe a bad road?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="f9f1b92e-5398-46cc-ae7a-5fc0b83a92aa" ownerguid="0e74ec78-23bd-4fb0-bddb-de094c8347fd"> -<Form> -<AUni ws="qvm-x-ach">bronquitis</AUni> -<AUni ws="qvm-x-acl">bronquitis</AUni> -<AUni ws="qvm-x-akh">bronquitis</AUni> -<AUni ws="qvm-x-akl">bronquitis</AUni> -<AUni ws="qvm-x-ame">bronquitis</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="f9f1bbf1-7de3-46f0-aaac-c62313bb5e03" ownerguid="b9c50a96-de75-4eb5-8348-639372c6e2ad"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bathe</AUni> -<AUni ws="es">bañar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f3f71fc7-8ee0-43eb-a6bb-4cf66bf47808" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="f9f25ad7-61d0-465f-b17b-063daa9b3478" ownerguid="d8374966-089c-480b-8915-033787b1d8d6"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="f9f31f5b-6a16-467b-b756-04deead6a4fb" ownerguid="4a5b16e0-73de-46b4-ab77-5538a7b9cbb0"> -<Form> -<AUni ws="qvm-x-ach">shiqui</AUni> -<AUni ws="qvm-x-acl">shiqui; shiqui; shique</AUni> -<AUni ws="qvm-x-akh">shiki</AUni> -<AUni ws="qvm-x-akl">shiki; shiki; shike</AUni> -<AUni ws="qvm-x-ame">shiki</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="f9f54627-2230-42c8-b4c3-8da3bb58b847" ownerguid="99e38da1-91ad-4dff-a68f-972607936e50"> -<ExampleWords> -<AUni ws="en">not yet, not now, still need to wait, it will be awhile (still), it will take some time, not quite here, almost</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that an event has not happened yet?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="f9f6f1ee-9a7c-43d0-a4dc-9a7178f7cc43" ownerguid="bb82db52-e73c-4f14-8ceb-a59a14022102"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">child</AUni> -<AUni ws="es">niño</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2d28f9c9-ff25-4f47-a9dc-c545ea868393" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="f9f70dd5-efb5-44d4-9290-bb85c5ddcfbc" ownerguid="bad07400-ad11-4f98-9a6d-83aeae23913f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">päca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">päca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">päka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">päka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">päku</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e89f4461-706d-4840-bf9f-bfa3b395d737" t="r" /> -</Morph> -<Msa> -<objsur guid="f32a5a50-f426-45b8-ae08-eba8e0a53b74" t="r" /> -</Msa> -<Sense> -<objsur guid="f9fa41d4-dd29-40f1-be9f-24911a0fb7bb" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="f9f7369b-03c8-4ded-a0bf-ef750b4c0a80" ownerguid="85dfc6a3-6c70-41f2-a869-32e2fb3c40ee"> -<ExampleWords> -<AUni ws="en">bend, bend down, bend over, bob, bow, cower, crouch, double up, duck, get down, hunch, hunker down, lean over, scrunch, stoop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to bending down?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="f9f9604b-5ad0-417f-b30f-c87f5950a813" ownerguid="62dc6416-aa62-4690-8c79-52ff32846c92"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 29.8 Achaquëru runaga pïmaytapis achäquita ashiparmi purin.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="f9fa41d4-dd29-40f1-be9f-24911a0fb7bb" ownerguid="b7ad601f-b474-4bb3-94cb-2fdee7e3f23f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1 V2/V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">PLALL</AUni> -<AUni ws="es">PLGEN</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f32a5a50-f426-45b8-ae08-eba8e0a53b74" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="f9fa9c20-0245-4881-b80c-3fb3b8c01836" ownerguid="907c3cf2-76ef-47fd-b3ee-777ca3050cd7"> -<Form> -<AUni ws="qvm-x-ach">pobri; pobre</AUni> -<AUni ws="qvm-x-acl">pobri; pobri; pobre</AUni> -<AUni ws="qvm-x-akh">pobri; pobre</AUni> -<AUni ws="qvm-x-akl">pobri; pobri; pobre</AUni> -<AUni ws="qvm-x-ame">pobri; pobre</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="f9fb91a7-8199-4b9a-9c31-4b1c5d553bde"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ruwa</AUni> -<AUni ws="qvm-x-acl">ruwa</AUni> -<AUni ws="qvm-x-akh">ruwa</AUni> -<AUni ws="qvm-x-akl">ruwa</AUni> -<AUni ws="qvm-x-ame">ruwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+rogar</AUni> -<AUni ws="qvm-x-acl">+rogar</AUni> -<AUni ws="qvm-x-akh">+rogar</AUni> -<AUni ws="qvm-x-akl">+rogar</AUni> -<AUni ws="qvm-x-ame">+rogar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.376" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="03079ecd-68dd-4753-98e3-dfa772e69e31" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+rogar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="455ea5bc-a67d-401b-afc0-73e79bdf6555" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="36763352-1e59-4529-94c0-3e37f6ef0f0a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +rogar 
\entryTyp root 
\gENG beg 
\gSPN rogar 
\e +rogar 
\c V2 
\ach ruwa 
\akh ruwa 
\acl ruwa 
\akl ruwa 
\ame ruwa</Run> -</AStr> -</Custom> -</rt> -<rt class="StTxtPara" guid="f9fbe1eb-fc9d-4254-839a-467be286a1c9" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<ParseIsCurrent val="True" /> -</rt> -<rt class="LexEntry" guid="f9ffbf37-9b65-4de7-a303-c1ef823a75f7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shinshi</AUni> -<AUni ws="qvm-x-acl">shinshi; shinshe</AUni> -<AUni ws="qvm-x-akh">shinshi</AUni> -<AUni ws="qvm-x-akl">shinshi; shinshe</AUni> -<AUni ws="qvm-x-ame">shinshi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shinshi</AUni> -<AUni ws="qvm-x-acl">*shinshi</AUni> -<AUni ws="qvm-x-akh">*shinshi</AUni> -<AUni ws="qvm-x-akl">*shinshi</AUni> -<AUni ws="qvm-x-ame">*shinshi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.591" /> -<DateModified val="2022-10-10 21:19:47.693" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="2" /> -<LexemeForm> -<objsur guid="41258c13-eeec-45eb-84e3-4ee45f5583a9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shinshi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="286a091f-f599-4c7a-a736-e8cf10be2d78" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0ee10792-c7d2-406d-9521-8734059c784e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shinshi 
\entryTyp root 
\gENG to.gang.fight 
\gSPN 
\e *shinshi 
\c V2 
\mp +FinalI 
\ach shinshi 
\akh shinshi 
\acl shinshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shinshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shinshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shinshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shinshi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="fa00767d-6df9-4d87-a2aa-a0674182edc1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">garantiza</AUni> -<AUni ws="qvm-x-acl">garantiza</AUni> -<AUni ws="qvm-x-akh">garantiza</AUni> -<AUni ws="qvm-x-akl">garantiza</AUni> -<AUni ws="qvm-x-ame">garantiza</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+garantizar</AUni> -<AUni ws="qvm-x-acl">+garantizar</AUni> -<AUni ws="qvm-x-akh">+garantizar</AUni> -<AUni ws="qvm-x-akl">+garantizar</AUni> -<AUni ws="qvm-x-ame">+garantizar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.599" /> -<DateModified val="2022-10-10 21:18:47.218" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="106d9027-985b-4112-9905-c7a612fbad14" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+garantizar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e0002e64-1c74-45c6-aa74-5295d91f42e6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c7bc43ca-225d-4e04-872d-e8b4d548164b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +garantizar 
\entryTyp root 
\gENG 
\gSPN 
\e +garantizar 
\c V2 
\ach garantiza 
\akh garantiza 
\acl garantiza 
\akl garantiza 
\ame garantiza</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="fa054a8f-4213-4d14-bf7a-d998210e2fc9" ownerguid="8b0ba7f9-ce29-4d56-93f2-7df1378ca60e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="fa092524-01e2-4bc5-b66b-687a56c28a69" ownerguid="21ebc64a-a1b8-45bd-b7f6-143a053f1d31"> -<ExampleWords> -<AUni ws="en">basketball, b-ball</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What is the sport called?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="fa0c4030-a408-4b46-b248-e2fa3ad2baf4" ownerguid="663a98df-b6a2-4dfb-b651-0e3c99e86bde"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="a3d34285-ff0f-4cd2-9aac-3bdc8c4f5b0e" t="o" /> -<objsur guid="961d78f3-e9a6-4730-8367-32ee07853902" t="o" /> -<objsur guid="44bbf34a-9887-4f6f-8d8a-41461e571a2d" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">surprise</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e9ed45b8-fe32-4e0f-9e2a-0ba977e6c26d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="fa0f7083-7b23-4da3-9808-df81d006696e" ownerguid="1c17ef11-68a6-4aa1-896e-a4ba0c006bd8"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 17.26 Manami alitsu caycan jutsaynag runata multatsishgan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="fa12182c-8e52-4af6-bce4-a3047edeebef" ownerguid="b14db9f4-5e1d-4a2b-bec0-0d6bcb5b1a31"> -<ExampleWords> -<AUni ws="en">drop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(10) What words refer to letting something fall?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fa16dfad-3dd3-4a5e-b119-d5a2d79c0388" ownerguid="550fea46-5c7f-4751-a0b3-f0e06e15e121"> -<Form> -<AUni ws="qvm-x-ach">säbana</AUni> -<AUni ws="qvm-x-acl">säbana</AUni> -<AUni ws="qvm-x-akh">säbana</AUni> -<AUni ws="qvm-x-akl">säbana</AUni> -<AUni ws="qvm-x-ame">säbana</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="fa174837-2f92-417f-818c-05a86c64b9e3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tacra</AUni> -<AUni ws="qvm-x-acl">tacra</AUni> -<AUni ws="qvm-x-akh">takra</AUni> -<AUni ws="qvm-x-akl">takra</AUni> -<AUni ws="qvm-x-ame">takra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*takra</AUni> -<AUni ws="qvm-x-acl">*takra</AUni> -<AUni ws="qvm-x-akh">*takra</AUni> -<AUni ws="qvm-x-akl">*takra</AUni> -<AUni ws="qvm-x-ame">*takra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.774" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3e03849d-53ec-471e-ac96-4d7585421483" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*takra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="26ea3bc1-d709-48f2-8438-aab4770e7495" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fe7ff637-cbe3-4e65-8565-12b2ec1b6eb4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *takra 
\entryTyp root 
\gENG ignorant 
\gSPN ignorante 
\e *takra 
\c N0 
\ach tacra 
\akh takra 
\acl tacra 
\akl takra 
\ame takra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="fa18b083-c5c8-42a4-aa2c-9251912544b9" ownerguid="9679180f-37a5-4e95-8bfc-045b3a71b319"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 14.24 Saynöpis capillacunaman aywar saycho caycag prostitüta warmicunawan y prostitütu runacunawan cacorgan saynöpa Diosta adorashganta yarpashpan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="fa1d134d-9df0-4892-b155-0b4d18bd0f04" ownerguid="691bdba3-c216-4b42-877c-674bbdb517a7"> -<ExampleWords> -<AUni ws="en">trust, believe in, put your trust in, have confidence in</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to trusting someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fa1deeb3-e0c6-4b1f-83d9-255fc09c64b6" ownerguid="4d8d9a08-8b8c-47c8-811c-0a577d67e53f"> -<Form> -<AUni ws="qvm-x-ach">watya</AUni> -<AUni ws="qvm-x-acl">watya</AUni> -<AUni ws="qvm-x-akh">watya</AUni> -<AUni ws="qvm-x-akl">watya</AUni> -<AUni ws="qvm-x-ame">watya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="fa243cc0-3b47-4be3-991b-909e90538fba" ownerguid="5c4a3227-111c-422f-aec2-b6edeee36482"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="6e4ecf6f-c5cf-47bf-b4ac-fdc00747a4ad" t="o" /> -<objsur guid="f403bc9f-df31-4379-a15d-2dfabdcfc152" t="o" /> -<objsur guid="d6f61afd-8d02-4f90-8dfe-94d9a3062ab2" t="o" /> -<objsur guid="60ac6c7c-b71c-4ecd-ba14-b9668554c5e7" t="o" /> -<objsur guid="e39b3d31-c19a-46ac-9f96-7a942f9cd1fc" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="fa26f731-ad59-4228-bbd9-b0efb196a660"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuartu; cuarto</AUni> -<AUni ws="qvm-x-acl">cuartu; cuartu; cuarto</AUni> -<AUni ws="qvm-x-akh">cuartu; cuarto</AUni> -<AUni ws="qvm-x-akl">cuartu; cuartu; cuarto</AUni> -<AUni ws="qvm-x-ame">cuartu; cuarto</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cuarto.1</AUni> -<AUni ws="qvm-x-acl">+cuarto.1</AUni> -<AUni ws="qvm-x-akh">+cuarto.1</AUni> -<AUni ws="qvm-x-akl">+cuarto.1</AUni> -<AUni ws="qvm-x-ame">+cuarto.1</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.234" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="071bd1b7-d6fc-4de4-af54-42d14357f4cd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cuarto.1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9018d38f-6ad7-4c69-bcc3-680613a28ef8" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2c36f301-2fd3-4ed1-9a82-54bff0bf7593" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cuarto.1 
\entryTyp root 
\gENG room 
\gSPN cuarto 
\e +cuarto.1 
\c N0 
\ach cuartu / ~_# 
\ach cuarto / _# 
\akh cuartu / ~_# 
\akh cuarto / _# 
\acl cuartu / ~_# 
\acl cuartu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cuarto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cuartu / ~_# 
\akl cuartu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cuarto +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cuartu / ~_# 
\ame cuarto / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="fa29531c-ac63-4371-8eea-5ecf01abde4e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jegchi</AUni> -<AUni ws="qvm-x-acl">jegchi; jegche</AUni> -<AUni ws="qvm-x-akh">jeqchi</AUni> -<AUni ws="qvm-x-akl">jeqchi; jeqche</AUni> -<AUni ws="qvm-x-ame">hiqchi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hiqtri.v</AUni> -<AUni ws="qvm-x-acl">*hiqtri.v</AUni> -<AUni ws="qvm-x-akh">*hiqtri.v</AUni> -<AUni ws="qvm-x-akl">*hiqtri.v</AUni> -<AUni ws="qvm-x-ame">*hiqtri.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.721" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="32540e5e-0d86-4480-8dfb-245f9d80679f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hiqtri.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c4245745-5410-4a99-b890-9cceeeca1e3e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3e33e752-9030-4282-9f85-285385316bf4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hiqtri.v 
\entryTyp root 
\gENG gape 
\gSPN boquear 
\e *hiqtri.v 
\c V1 
\mp +FinalI 
\ach jegchi 
\akh jeqchi 
\acl jegchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl jegche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jeqchi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jeqche +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hiqchi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fa298c9b-bcef-4c98-be23-61b468636195" ownerguid="ec79e90e-ecd3-497f-bc14-ac64181f53d7"> -<ExampleWords> -<AUni ws="en">harmful, poisonous, toxic, noxious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that harms your health?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="fa2a6c79-1c29-4177-88f4-bba20c97a927" ownerguid="52522931-e14e-424b-b78f-fa27acc54934"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">heal</AUni> -<AUni ws="es">sanar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="529c175a-31f4-435c-87f9-db96f5c013ed" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="fa2d5017-8207-4dc1-b67d-5f530fd109c1" ownerguid="7bed7b62-cb48-4b14-84ba-2ac199843469"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">change</AUni> -<AUni ws="es">cambiar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9f321175-ae6b-4195-86db-ec5e5e30463b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="fa2ddb0d-7474-4400-9737-62b941034651" ownerguid="7cba6668-604a-44ec-907f-f67ff17a52fd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">this</AUni> -<AUni ws="es">este</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="90ff85be-42f6-4a30-a658-5b1780202333" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="fa2ed460-0e23-4c0b-a696-06102bb821a4" ownerguid="966075bf-6c37-4c86-91c9-1e4684e97b75"> -<Form> -<AUni ws="qvm-x-ach">japa</AUni> -<AUni ws="qvm-x-acl">japa</AUni> -<AUni ws="qvm-x-akh">japa</AUni> -<AUni ws="qvm-x-akl">japa</AUni> -<AUni ws="qvm-x-ame">hapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="fa2f39bd-7130-4cea-9eaa-efaad4e9f622"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gasma</AUni> -<AUni ws="qvm-x-acl">gasma</AUni> -<AUni ws="qvm-x-akh">qasma</AUni> -<AUni ws="qvm-x-akl">qasma</AUni> -<AUni ws="qvm-x-ame">qasma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qasma.n</AUni> -<AUni ws="qvm-x-acl">*qasma.n</AUni> -<AUni ws="qvm-x-akh">*qasma.n</AUni> -<AUni ws="qvm-x-akl">*qasma.n</AUni> -<AUni ws="qvm-x-ame">*qasma.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.134" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cacf939e-e6c8-4168-88dc-e43154454c95" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qasma.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b8765f40-c14a-45e5-bad4-ed1a2eb73a39" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4328930a-6eae-447d-aeb1-7af3999ab85c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qasma.n 
\entryTyp root 
\gENG hoarse 
\gSPN 
\e *qasma.n 
\c N0 
\ach gasma 
\akh qasma 
\acl gasma 
\akl qasma 
\ame qasma</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="fa32115e-e389-47bd-91e1-61779172ccf2" ownerguid="32bebe7e-bdcc-4e40-8f0a-894cd6b26f25"> -<Abbreviation> -<AUni ws="en">2.5.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.47" /> -<DateModified val="2022-9-23 16:55:8.47" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to the cause of disease.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Cause of disease</AUni> -</Name> -<OcmCodes> -<Uni>164 Morbidity; 753 Theory of Disease</Uni> -</OcmCodes> -<Questions> -<objsur guid="5d48e06b-cacf-4743-a16b-d512964be5eb" t="o" /> -<objsur guid="0073cf7d-0f78-49a8-8bd6-5cbae9fb4ef1" t="o" /> -<objsur guid="3e32894b-00fc-4383-b887-86728532b89f" t="o" /> -<objsur guid="6a88e918-5a0e-419d-90a3-f28a7eba8861" t="o" /> -<objsur guid="dd5375bd-733f-4b62-8276-9efaa171d84a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="fa3654cd-0b78-4d45-94ce-9e4e941a535f" ownerguid="3ccc3a21-07c8-4983-a044-e3c74b538135"> -<ExampleWords> -<AUni ws="en">short, compact, dumpy, dwarfed, pug, runty, shrimpy, skimpy, stubby, stumpy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is short?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="fa36de8f-9f3a-47e7-8fea-07834ebcecd8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">media</AUni> -<AUni ws="qvm-x-acl">media</AUni> -<AUni ws="qvm-x-akh">media</AUni> -<AUni ws="qvm-x-akl">media</AUni> -<AUni ws="qvm-x-ame">media</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+media</AUni> -<AUni ws="qvm-x-acl">+media</AUni> -<AUni ws="qvm-x-akh">+media</AUni> -<AUni ws="qvm-x-akl">+media</AUni> -<AUni ws="qvm-x-ame">+media</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.394" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c9f6e85c-0709-4984-bb0a-c7d1bb5a2615" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+media</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="064f4af5-bff4-443e-a3d9-fce796d4eac2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c3426b54-e1cb-4f91-b851-cbe47a8e612f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +media 
\entryTyp root 
\gENG half 
\gSPN media 
\e +media 
\c N0 
\ach media 
\akh media 
\acl media 
\akl media 
\ame media</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="fa41dbc5-adbb-4ad0-9fd2-0278d4689a28" ownerguid="e7c58c11-2911-446a-96b0-2113247f3792"> -<Abbreviation> -<AUni ws="en">4.1.9.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.201" /> -<DateModified val="2022-9-23 16:55:8.201" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that refer to people who are not related by blood or marriage.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Non-relative</AUni> -</Name> -<OcmCodes> -<Uni>608 Artificial Kin Relationships; 609 Behavior Toward Non-relatives</Uni> -</OcmCodes> -<Questions> -<objsur guid="4c004c03-1bd4-4255-8b78-acd346a9fd48" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="0e79435b-f5ff-4061-81ff-49557ba2aed4" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoInflAffMsa" guid="fa42621c-0397-4bd6-a862-5548780fa809" ownerguid="977ccc2a-3214-49ae-b752-bc1f9e878cfc"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="cc7bce64-81a2-4c23-9cb0-ba8f7d274837" t="r" /> -</Slots> -</rt> -<rt class="CmDomainQ" guid="fa4265ee-4134-4e35-9108-21306ff8695f" ownerguid="cde96694-79e5-44af-8d38-d988d1938e5f"> -<ExampleWords> -<AUni ws="en">construction worker, architect, draftsman, builder, roofer, carpenter, plumber, electrician, bricklayer, mason, cabinetmaker, painter, landscaper, surveyor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What are the people called who build buildings?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fa468454-c957-481d-94b1-e5b2c83e92ad" ownerguid="8242fc85-a703-4efa-a78a-0556a84e811e"> -<ExampleWords> -<AUni ws="en">give someone a bite, sink your teeth into, snap at</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to biting someone?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="fa46d54a-9db3-4d4b-8163-7cea566bf36f" ownerguid="9a7cc768-f4a3-42ae-8b0b-838ca88538f8"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="fa489d4e-1b84-4206-a484-42065c8d4af4" ownerguid="5c091d8d-5bc4-40c3-8a30-2a08fb0794b8"> -<ExampleWords> -<AUni ws="en">come out of the trance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe regaining normal consciousness?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fa48d3aa-bee7-4d80-9838-230356ae2878" ownerguid="a6fd8b95-5adf-43e0-8ba2-404391a14d91"> -<Form> -<AUni ws="qvm-x-ach">herramienta</AUni> -<AUni ws="qvm-x-acl">herramienta</AUni> -<AUni ws="qvm-x-akh">herramienta</AUni> -<AUni ws="qvm-x-akl">herramienta</AUni> -<AUni ws="qvm-x-ame">herramienta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="fa49c235-7864-49a0-9e77-233506bffb53"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">hacienda</AUni> -<AUni ws="qvm-x-acl">hacienda</AUni> -<AUni ws="qvm-x-akh">hacienda</AUni> -<AUni ws="qvm-x-akl">hacienda</AUni> -<AUni ws="qvm-x-ame">hacienda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hacienda</AUni> -<AUni ws="qvm-x-acl">+hacienda</AUni> -<AUni ws="qvm-x-akh">+hacienda</AUni> -<AUni ws="qvm-x-akl">+hacienda</AUni> -<AUni ws="qvm-x-ame">+hacienda</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.639" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9f51fba2-1749-4c9b-81a3-742b6162ad3b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hacienda</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cf29232f-7d7a-4a27-a5fb-13c9ce8cddc9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d9f29128-4558-403c-a9e8-335508c9ad87" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hacienda 
\entryTyp root 
\gENG 
\gSPN hacienda 
\e +hacienda 
\c N0 
\ach hacienda 
\akh hacienda 
\acl hacienda 
\akl hacienda 
\ame hacienda</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="fa4a1ab3-a5a1-4046-bc34-5cb868ada3f2" ownerguid="c1282d92-1ac3-4b8e-9904-a5429d62332d"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="60f8a465-7c43-4814-b55c-c9b713b596b3" t="o" /> -<objsur guid="ca2a24f3-248a-46dc-aafa-eb6f23f3995f" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="fa4b17c7-9f91-4655-8e73-8c6051ab1cc3" ownerguid="34cd6a60-04b6-41e6-abc5-91ca001cad01"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">squirt</AUni> -<AUni ws="es">espurrear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6d75fb7e-7ffd-447e-bb30-dd5da87ce3be" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="fa53a232-4e78-4f91-ac10-7076a293c479" ownerguid="fcffd439-c0e1-4e21-a3b3-3f868edee0cd"> -<Form> -<AUni ws="qvm-x-ach">gamunal</AUni> -<AUni ws="qvm-x-acl">gamunal</AUni> -<AUni ws="qvm-x-akh">gamunal</AUni> -<AUni ws="qvm-x-akl">gamunal</AUni> -<AUni ws="qvm-x-ame">gamunal</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="fa545b93-ab2f-4069-a582-27e74369f61b" ownerguid="721e2ee8-7ea5-4d17-94cc-d77d8e92bd27"> -<ExampleWords> -<AUni ws="en">correct, formal, stiff</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to being very polite?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fa5b1ba1-3b02-4211-a3b0-904ac7cae79e" ownerguid="858af232-b570-4153-b4c0-f60930df9ced"> -<ExampleWords> -<AUni ws="en">appearance, semblance of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to the way something seems to appear?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="fa5f6578-df2c-4956-9ae5-cc7f119ef838" ownerguid="92405128-fa1f-4fa1-90b0-695c97172478"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2KI 4.35 Tsayno ruraptinmi wamraqa qanchis kuti jächisyarkur\f + \fr 4.35 \ft Wakinkunaqa <<eqchiwyarkur>> nipäkun.\f* kawarirkamorqan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="fa6070ac-a165-483e-bcb8-efa9a90190ea" ownerguid="1884cb09-d450-4435-9067-dbfbfff707e0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">breast</AUni> -<AUni ws="es">pecho</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="87a42488-93d2-4bca-a825-ee372936d8c0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="fa635774-42dd-4567-ae7f-649c9be7192f" ownerguid="ac876e5b-d93a-4188-b511-c928871446cd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">flax</AUni> -<AUni ws="es">lino</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2f9ef6f2-636b-42df-a6a1-3c9113524170" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="fa6424fa-116f-4955-a5b0-c9c53a9af6ec" ownerguid="8d1ecc03-e143-48d5-8aa7-a5c835ded4dd"> -<Form> -<AUni ws="qvm-x-ach">castellänu</AUni> -<AUni ws="qvm-x-acl">castellänu; castellänu; castelläno</AUni> -<AUni ws="qvm-x-akh">castellänu</AUni> -<AUni ws="qvm-x-akl">castellänu; castellänu; castelläno</AUni> -<AUni ws="qvm-x-ame">castellänu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="fa660c9d-8787-4335-8744-3dbc139b2df1" ownerguid="85214614-ab45-4805-9014-092750d47511"> -<Abbreviation> -<AUni ws="en">4.7.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to accusing someone of doing something bad.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33V' Accuse, Blame; 56C Accusation</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Accuse, confront</AUni> -</Name> -<Questions> -<objsur guid="4e456060-99ba-44f4-a75b-6177e51b5141" t="o" /> -<objsur guid="cd4dcca5-829a-49ba-8ed7-98a03e7e90c0" t="o" /> -<objsur guid="d4d262f5-9176-43f4-b1a0-d7ef397acbb3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="fa6851b6-e276-4691-9851-32770f1c7f25" ownerguid="874f8415-fca2-49ce-923f-ff1d4a2b94d9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shpa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shpa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shpa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shpa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shpa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1cec07b9-c736-451d-aeb8-e27d82256aa0" t="r" /> -</Morph> -<Msa> -<objsur guid="210b55d0-3031-4731-891b-77f3eaa2a10a" t="r" /> -</Msa> -<Sense> -<objsur guid="f182d795-6420-4969-8b07-cba3d7601ed4" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="fa688d24-91cb-47d7-a8b3-095723765204"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lagu</AUni> -<AUni ws="qvm-x-acl">lagu; lago</AUni> -<AUni ws="qvm-x-akh">laqu</AUni> -<AUni ws="qvm-x-akl">laqu; laqo</AUni> -<AUni ws="qvm-x-ame">laqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llaqu.v</AUni> -<AUni ws="qvm-x-acl">*llaqu.v</AUni> -<AUni ws="qvm-x-akh">*llaqu.v</AUni> -<AUni ws="qvm-x-akl">*llaqu.v</AUni> -<AUni ws="qvm-x-ame">*llaqu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.184" /> -<DateModified val="2022-10-10 21:19:47.697" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fae1dfdc-7162-4ce1-a229-c4b3797460f8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llaqu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="104d7209-2fa6-4135-b03b-d7f58f04da08" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="2e417874-c05e-41f5-963f-abe9a62af891" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llaqu.v 
\entryTyp root 
\gENG be.dull 
\gSPN 
\e *llaqu.v 
\c V2 
\ach lagu 
\akh laqu 
\acl lagu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lago +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl laqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl laqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame laqu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="fa68a2c2-e14a-4e9f-a5d1-985054267fe5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">macllu</AUni> -<AUni ws="qvm-x-acl">macllu; macllo</AUni> -<AUni ws="qvm-x-akh">makllu</AUni> -<AUni ws="qvm-x-akl">makllu; makllo</AUni> -<AUni ws="qvm-x-ame">makllu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*makllu.v</AUni> -<AUni ws="qvm-x-acl">*makllu.v</AUni> -<AUni ws="qvm-x-akh">*makllu.v</AUni> -<AUni ws="qvm-x-akl">*makllu.v</AUni> -<AUni ws="qvm-x-ame">*makllu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.265" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b0f49127-f866-4222-8c07-66f965daff18" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*makllu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="72221abe-5ffa-4a34-be4b-d5976ea19e1f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5fd599c2-f57f-4646-8ea1-011959f0360c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *makllu.v 
\entryTyp root 
\gENG cripple 
\gSPN manco 
\e *makllu.v 
\c V1 
\ach macllu 
\akh makllu 
\acl macllu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl macllo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl makllu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl makllo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame makllu 
\i 2SA 9.3 Tsaynog niptin Siba nergan: <<Au, cawaycanragmi Jonatánpa tsurin. Itsanga ishcan chaquin macllucashgami caycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="fa68f188-7930-4082-ba7d-a19510405afa" ownerguid="08bcc187-08e4-4016-89a3-73c45fda9f3d"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="fa69a390-1200-4ec0-b866-9da5762444d2" ownerguid="943eb131-2761-4c98-90a0-0bdfb0f8584d"> -<ExampleWords> -<AUni ws="en">bed, double bed, twin bed, bunk bed, queen sized bed, king sized bed, mat, sleeping mat, mattress, cot, pallet, hideaway bed, hammock, berth, guest bed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What kinds of beds are there?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fa6cd8e9-d50b-4a3b-a061-da41941a4cda" ownerguid="ded0e58d-8ad7-4909-b0f1-b9ab9c10bb0d"> -<ExampleWords> -<AUni ws="en">royal, queenly, princely, noble</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words are used to describe things related to the king's family?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fa704138-e9cc-4ac1-985b-6371af5e5f69" ownerguid="23e6746e-d74d-406b-a5f2-513c682b5db4"> -<Form> -<AUni ws="qvm-x-ach">baduläqui; baduläqui</AUni> -<AUni ws="qvm-x-acl">baduläqui; baduläqui; baduläque</AUni> -<AUni ws="qvm-x-akh">baduläqui; baduläqui</AUni> -<AUni ws="qvm-x-akl">baduläqui; baduläqui; baduläque</AUni> -<AUni ws="qvm-x-ame">baduläqui; baduläqui</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="fa71967e-9a52-4a88-8aec-a822afa965fd" ownerguid="89c55461-5ea8-47a5-b345-0f3bc0a98939"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">miracle</AUni> -<AUni ws="es">milagro</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c9e7cdc5-421a-45f1-9622-e41bb95d84a3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="fa71ac96-3ee7-421a-9cb9-98ab936fb18d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">guencha</AUni> -<AUni ws="qvm-x-acl">guencha</AUni> -<AUni ws="qvm-x-akh">qencha</AUni> -<AUni ws="qvm-x-akl">qencha</AUni> -<AUni ws="qvm-x-ame">qincha</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qintra.n</AUni> -<AUni ws="qvm-x-acl">*qintra.n</AUni> -<AUni ws="qvm-x-akh">*qintra.n</AUni> -<AUni ws="qvm-x-akl">*qintra.n</AUni> -<AUni ws="qvm-x-ame">*qintra.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.185" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5d9428cc-5973-4616-8b7d-01dafdcd7254" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qintra.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="64ab8980-52df-4b71-b4f7-e1e13356c8a3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ed07be41-2ee3-4411-a5de-ff45da632441" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qintra.n 
\entryTyp root 
\gENG corral 
\gSPN cerco 
\e *qintra.n 
\c N0 
\ach guencha 
\akh qencha 
\acl guencha 
\akl qencha 
\ame qincha</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fa730a0b-85c5-487a-a1d5-6c2eb77ff6be" ownerguid="9612bdd6-15cb-4269-aaf9-481c7b35b5dd"> -<ExampleWords> -<AUni ws="en">tone it down</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words do you use when you want someone to speak quietly?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="fa73b50b-1d06-4c8a-b80c-2edaafa6139e" ownerguid="df7d8024-acee-4188-a227-c4943575aad3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="fa74d721-c891-40b6-a543-76efeb48cb35" ownerguid="370f96de-1cae-4df6-b8a9-0ee1b125b8e0"> -<Form> -<AUni ws="qvm-x-ach">japrichu</AUni> -<AUni ws="qvm-x-acl">japrichu; japrichu; japricho</AUni> -<AUni ws="qvm-x-akh">japrichu</AUni> -<AUni ws="qvm-x-akl">japrichu; japrichu; japricho</AUni> -<AUni ws="qvm-x-ame">haprichu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="fa789ec1-b4d9-42cf-9adb-375c52d9ebc4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pescador</AUni> -<AUni ws="qvm-x-acl">pescador</AUni> -<AUni ws="qvm-x-akh">pescador</AUni> -<AUni ws="qvm-x-akl">pescador</AUni> -<AUni ws="qvm-x-ame">pescador</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pescador</AUni> -<AUni ws="qvm-x-acl">+pescador</AUni> -<AUni ws="qvm-x-akh">+pescador</AUni> -<AUni ws="qvm-x-akl">+pescador</AUni> -<AUni ws="qvm-x-ame">+pescador</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.810" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d6f124d3-1d5a-4a1e-aeb2-f62eede2a58d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pescador</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2622ad27-0e3a-4b12-a6c9-63dd3912d654" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="af43e92f-472f-4f1c-a477-c969209bc922" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pescador 
\entryTyp root 
\gENG fisherman 
\gSPN pescador 
\e +pescador 
\c N0 
\mp +FinalC 
\ach pescador 
\akh pescador 
\acl pescador 
\akl pescador 
\ame pescador</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fa795cf9-3e1a-498d-9b72-3a5a985c4145" ownerguid="b93bdfa4-486c-44a0-8266-557ccdc78b31"> -<ExampleWords> -<AUni ws="en">to smoke, give off sparks, send up sparks, give off heat, glow</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a fire giving off something?</AUni> -</Question> -</rt> -<rt class="PunctuationForm" guid="fa7aeb71-200a-4a5d-9436-13faa1972fea"> -<Form> -<Str> -<Run ws="en">tr</Run> -</Str> -</Form> -</rt> -<rt class="LexEntry" guid="fa80eb56-d1c3-4fde-9ef9-75f0749e8fdc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsa</AUni> -<AUni ws="qvm-x-acl">tsa</AUni> -<AUni ws="qvm-x-akh">tsa</AUni> -<AUni ws="qvm-x-akl">tsa</AUni> -<AUni ws="qvm-x-ame">tsa</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.518" /> -<DateModified val="2022-10-15 16:8:58.706" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="1" /> -<LexemeForm> -<objsur guid="675d7422-a1b8-41a5-ade9-9d949f8de420" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">INTER</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="56ccbf7e-62af-4fad-98de-8c627f35a848" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a7aa0b4b-c3c6-4fdb-a201-c28f8218e468" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx INTER 
\entryTyp suffix 
\gENG INTER 
\gSPN INTER 
\e INTER 
\c V1/V2 
\o 020 
\mp +foreshortens 
\ach tsa 
\akh tsa 
\acl tsa 
\akl tsa 
\ame tsa 
\mcc INTER / [TakeINTER] _</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="fa821a33-0117-4a06-9629-47d403bce6f7" ownerguid="0ccab162-fbb3-4a29-86d0-4a5432e001b3"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="fa829fcb-40f4-4003-8cca-561074eded13"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jati</AUni> -<AUni ws="qvm-x-acl">jati; jate</AUni> -<AUni ws="qvm-x-akh">jati</AUni> -<AUni ws="qvm-x-akl">jati; jate</AUni> -<AUni ws="qvm-x-ame">hati</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hati</AUni> -<AUni ws="qvm-x-acl">*hati</AUni> -<AUni ws="qvm-x-akh">*hati</AUni> -<AUni ws="qvm-x-akl">*hati</AUni> -<AUni ws="qvm-x-ame">*hati</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.688" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cc8f42b2-7fff-418d-89f6-a14a89b19774" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hati</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="40b01283-cec8-41d7-9a98-9dbace2197b2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a6c938ae-4b91-4e80-bf3a-c6beab597827" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hati 
\entryTyp root 
\gENG put 
\gSPN poner 
\e *hati 
\c V2 
\mp +FinalI 
\ach jati 
\akh jati 
\acl jati +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl jate +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jati +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jate +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hati 
\mcc *hati +/ ~_ PLALL [q]</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="fa834b38-d5b9-4d8f-bffc-779c7b173159" ownerguid="2ef43df6-27e5-4493-a0bb-29a459207a6a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="fa858c34-507d-4e5a-a134-12f055e694b9" ownerguid="c606feb2-920e-4f73-bb06-8a0ab1e0b5ea"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="fa88c987-f71c-4d60-9edd-a1d949fbbd4c" ownerguid="250a52e4-ede0-427d-8382-46a5742d4f96"> -<ExampleWords> -<AUni ws="en">patient, inpatient, outpatient</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to a sick person in a hospital?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="fa8aa73d-3e1f-4915-8066-e8ba4efdf1c8" ownerguid="70361b53-d379-4601-96b7-39d0c39de125"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">steep</AUni> -<AUni ws="es">pendiente</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="def66cb9-f521-45ad-b853-36df2dd62d77" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="fa8c43d1-057e-4bf4-bc2e-f6c3fb3a5bb1"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ofrenda</AUni> -<AUni ws="qvm-x-acl">ofrenda</AUni> -<AUni ws="qvm-x-akh">ofrenda</AUni> -<AUni ws="qvm-x-akl">ofrenda</AUni> -<AUni ws="qvm-x-ame">ofrenda</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ofrendar</AUni> -<AUni ws="qvm-x-acl">+ofrendar</AUni> -<AUni ws="qvm-x-akh">+ofrendar</AUni> -<AUni ws="qvm-x-akl">+ofrendar</AUni> -<AUni ws="qvm-x-ame">+ofrendar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.618" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="61212c35-72bd-45e6-bdfd-6eb284907d90" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ofrendar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="00651563-fc2e-4d8d-8ff7-9f42c9ccb1d0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a07ef679-22f1-4d9d-a328-eac8104cce46" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ofrendar 
\entryTyp root 
\gENG offering 
\gSPN ofrenda 
\e +ofrendar 
\c V2 
\ach ofrenda 
\akh ofrenda 
\acl ofrenda 
\akl ofrenda 
\ame ofrenda 
\mcc +ofrendar / ~_ BEN2</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fa8d437f-e240-4e48-8607-138a4862f528" ownerguid="d2b61570-af54-44f3-846e-6d7ec9d3737f"> -<ExampleWords> -<AUni ws="en">display room, display area, storeroom, office, back room, delivery area</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What kinds of rooms are there in a store?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fa8d4c7b-c01e-4666-b096-4857939a3b7d" ownerguid="5c31bdf6-901f-4f14-ab64-7a99524710fc"> -<ExampleWords> -<AUni ws="en">insensitive</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to not being aware of other people's feelings?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="fa8e72a0-1bfe-4b49-a287-293b44213960" ownerguid="61a28bdc-c05c-49d8-b47e-d54a9082156c"> -<Abbreviation> -<AUni ws="en">9.4.8</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.710" /> -<DateModified val="2022-9-23 16:55:8.710" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this section for verbal auxiliaries, affixes, adverbs, and particles that indicate adverbial clauses. The following definitions are taken from Bybee, Joan, Revere Perkins, and William Pagliuca. 1994. The evolution of grammar. Chicago and London: University of Chicago Press.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Adverbial clauses</AUni> -</Name> -<Questions> -<objsur guid="3dbe1958-3e71-46a2-9094-8577ccc76a17" t="o" /> -<objsur guid="3c8e0062-8270-4546-8ca4-0033b81b6c9f" t="o" /> -<objsur guid="6f166a78-c724-4bf1-a418-b405eb67815d" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="fa8f91a4-0c7b-445e-b47e-dc75bdd5e8b6" ownerguid="d4fca9fe-870a-4110-99bb-10a29c29b2e6"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">noga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">noga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">noqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">noqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nuqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="de5c3d10-074c-49d9-8785-6267d1e823c5" t="r" /> -</Morph> -<Msa> -<objsur guid="e6df1eee-926d-4e16-890a-be63f1161ca0" t="r" /> -</Msa> -<Sense> -<objsur guid="c14639b5-1106-433b-b023-553599313d58" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="fa9023e0-a7b7-4141-8c10-7edf16514b40" ownerguid="cece6750-bb2f-46ae-8d44-52f2f9f3cdb2"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="fa972d1b-4e6a-4e70-8f2a-388f86594be6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chag; cha:</AUni> -<AUni ws="qvm-x-acl">chag; cha:</AUni> -<AUni ws="qvm-x-akh">chaq; cha:</AUni> -<AUni ws="qvm-x-akl">chaq; cha:</AUni> -<AUni ws="qvm-x-ame">chaq; cha:</AUni> -</Custom> -<AlternateForms> -<objsur guid="1eddf116-849a-4080-9bbf-c8616cbf8147" t="o" /> -</AlternateForms> -<DateCreated val="2022-9-23 18:26:20.578" /> -<DateModified val="2022-10-16 14:51:9.738" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="2ddea611-81ce-4c93-9d39-b45cf39224c0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">SUR</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6e795ba4-a421-4a00-adb7-5481af3b09bf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ec967513-1ea1-41aa-9bfb-7aec4949b70a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx SUR 
\entryTyp suffix 
\gENG SUR 
\gSPN CRT 
\e SUR 
\c N0/N0 V0/V0 R0/R0 ONSHEV/ONSHEV BN/BN 
\o 220 
\mp NeverForeshortened 
\cm *** ch *** 
\ach chag +/ ~_ TOP 
\ach cha: +/ _ TOP 
\cm *** kh *** 
\akh chaq +/ ~_ TOP 
\akh cha: +/ _ TOP 
\cm *** cl *** 
\acl chag +/ ~_ TOP 
\acl cha: +/ _ TOP 
\cm *** kl *** 
\akl chaq +/ ~_ TOP 
\akl cha: +/ _ TOP 
\cm *** me *** 
\ame chaq +/ ~_ TOP 
\ame cha: +/ _ TOP 
\mp +FinalC 
\i Gamcunachäga</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fa97397b-a295-48f5-9b2f-378364288f61" ownerguid="06a89652-70e0-40ac-b929-ed42f011c9fc"> -<ExampleWords> -<AUni ws="en">inanimate, inorganic</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that is not living and never has been?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="fa9a6fa0-fc86-4e9d-a04b-b7aa62cde6b2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">achica</AUni> -<AUni ws="qvm-x-acl">achica</AUni> -<AUni ws="qvm-x-akh">achika</AUni> -<AUni ws="qvm-x-akl">achika</AUni> -<AUni ws="qvm-x-ame">achika</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*atrika</AUni> -<AUni ws="qvm-x-acl">*atrika</AUni> -<AUni ws="qvm-x-akh">*atrika</AUni> -<AUni ws="qvm-x-akl">*atrika</AUni> -<AUni ws="qvm-x-ame">*atrika</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.870" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="670ed7a4-be6f-46c6-b6d9-dc6b0fa5fead" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*atrika</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="11fec6dc-37fd-4903-9273-e4ef005fff77" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7aa3625f-bc64-4673-ba2d-817227a27e43" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *atrika 
\entryTyp root 
\gENG shrink 
\gSPN encoger 
\e *atrika 
\c V1 
\ach achica 
\akh achika 
\acl achica 
\akl achika 
\ame achika</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fa9a7a20-c783-46ed-891a-9b0f49dad0f9" ownerguid="4275df2e-d4f6-461a-9279-39e0712dc082"> -<ExampleWords> -<AUni ws="en">suit, look good on, flattering</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words indicate that a piece of clothing looks good on someone?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="fa9b59c0-3c29-4678-afc7-a013692f307d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">talama</AUni> -<AUni ws="qvm-x-acl">talama</AUni> -<AUni ws="qvm-x-akh">talama</AUni> -<AUni ws="qvm-x-akl">talama</AUni> -<AUni ws="qvm-x-ame">talama</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tallama</AUni> -<AUni ws="qvm-x-acl">*tallama</AUni> -<AUni ws="qvm-x-akh">*tallama</AUni> -<AUni ws="qvm-x-akl">*tallama</AUni> -<AUni ws="qvm-x-ame">*tallama</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.784" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="eaf64740-492d-4cee-a9ef-3644a40442f0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tallama</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="adf046be-1f4d-4ebe-b51f-c89dba72da1c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="55adb89d-f493-40ef-939e-6331421af73a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tallama 
\entryTyp root 
\gENG break.up 
\gSPN deshacer 
\e *tallama 
\c V1 
\ach talama 
\akh talama 
\acl talama 
\akl talama 
\ame talama</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="fa9d7e89-41b0-418f-bbb2-56424653c031" ownerguid="56bd561e-4863-4c8c-a4d0-4b560f7c9b3c"> -<Form> -<AUni ws="qvm-x-ach">töpa</AUni> -<AUni ws="qvm-x-acl">töpa</AUni> -<AUni ws="qvm-x-akh">töpa</AUni> -<AUni ws="qvm-x-akl">töpa</AUni> -<AUni ws="qvm-x-ame">töpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="fa9fba9b-536a-4054-9957-ffd3e6165b3f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">curcu</AUni> -<AUni ws="qvm-x-acl">curcu; curcu; curco</AUni> -<AUni ws="qvm-x-akh">kurku</AUni> -<AUni ws="qvm-x-akl">kurku; kurku; kurko</AUni> -<AUni ws="qvm-x-ame">kurku</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+corcovar</AUni> -<AUni ws="qvm-x-acl">+corcovar</AUni> -<AUni ws="qvm-x-akh">+corcovar</AUni> -<AUni ws="qvm-x-akl">+corcovar</AUni> -<AUni ws="qvm-x-ame">+corcovar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.190" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f115542d-9401-48f0-8ee7-ecc1509c4f7d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+corcovar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b6aad208-7a9d-4d2c-bab5-84a4d21fec56" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3f402b8b-141a-4e77-982e-e649d476d051" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +corcovar 
\entryTyp root 
\gENG 
\gSPN 
\e +corcovar 
\c V1 
\mp +assimilated 
\ach curcu 
\akh kurku 
\acl curcu / _# 
\acl curcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl curco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kurku / _# 
\akl kurku +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kurko +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kurku 
\mp KQWchange 
\i DAN 7.5 Jucag wagtanga curcucashgami cargan. 
\mcc +corcovar / ~_ PL PRT2</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="faa13c09-a51a-4adb-b475-6dbabd5b1790" ownerguid="8a0c5ed9-0041-4af5-a193-329e6c9f2717"> -<ExampleWords> -<AUni ws="en">big, large, biggish, bulky, fair-sized, be a fair size, good-sized, be a good size, bulky, grand, imposing, sizable, substantial</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is big?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="faa34db3-fb57-4fdc-b8c3-c40f97247910"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wicsu</AUni> -<AUni ws="qvm-x-acl">wicsu; wicsu; wicso</AUni> -<AUni ws="qvm-x-akh">wiksu</AUni> -<AUni ws="qvm-x-akl">wiksu; wiksu; wikso</AUni> -<AUni ws="qvm-x-ame">wiksu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wiksu.n</AUni> -<AUni ws="qvm-x-acl">*wiksu.n</AUni> -<AUni ws="qvm-x-akh">*wiksu.n</AUni> -<AUni ws="qvm-x-akl">*wiksu.n</AUni> -<AUni ws="qvm-x-ame">*wiksu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.648" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c9b82377-b8e2-4575-a00d-471fd1f0c78e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wiksu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="73ddd8c2-9462-4268-b46a-e71cd1ff4436" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="642ffcbe-afea-4ad7-a674-9aaca076c54e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wiksu.n 
\entryTyp root 
\gENG crooked 
\gSPN torcido 
\e *wiksu.n 
\c N0 
\ach wicsu 
\akh wiksu 
\acl wicsu / _# 
\acl wicsu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wicso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wiksu / _# 
\akl wiksu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl wikso +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wiksu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="faa47603-bcf5-4630-9f28-f10dc278df61" ownerguid="2d894eca-8f6c-4b63-b265-0914a65d9be9"> -<ExampleWords> -<AUni ws="en">alcoholic beverage, alcohol, liquor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to alcoholic beverages?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="faa53096-7411-4de0-8dba-747509079c74" ownerguid="0772919e-eb4c-45e3-b705-73007f5e5583"> -<ExampleWords> -<AUni ws="en">cent, penny, nickel, dime, quarter, half dollar, dollar, silver dollar, greenback, bill, C note, pence, pound</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What are the units of currency?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="faa5472b-1cf5-4ed9-99e2-2d2f3e3f8d43" ownerguid="81531d1a-04b9-44ca-92cb-be8555727f04"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -<Sense> -<objsur guid="8825f180-b774-47d3-9faa-e76a889e064f" t="r" /> -</Sense> -</rt> -<rt class="WfiMorphBundle" guid="faa8313a-9a4a-401f-8b97-4154b3b1ee61" ownerguid="e0880b58-248f-4071-b5b8-bca868871a72"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">noga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">noga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">noqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">noqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">nuqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="de5c3d10-074c-49d9-8785-6267d1e823c5" t="r" /> -</Morph> -<Msa> -<objsur guid="e6df1eee-926d-4e16-890a-be63f1161ca0" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="faaaab67-9e3d-40f4-9728-7ae44e4b31f8" ownerguid="3edb307f-be46-40b6-a6a4-ae075b40258c"> -<ExampleWords> -<AUni ws="en">from then on, starting then</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words indicate that something will start in the future and continue?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="faae6ed0-28ce-4f77-b109-4b213c211a3e" ownerguid="db68aba5-9675-4de1-9557-5c8b3eef2377"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="fab158df-5d1b-4420-b8d2-b8ee108e0210" ownerguid="43173510-a91b-4d02-8886-94a995cffdb9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="fab1d9ba-d84c-43d6-9841-c263727e1d68" ownerguid="3ea4c495-b837-4310-8741-38d89fa63e0b"> -<ExampleWords> -<AUni ws="en">should</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) probability: the speaker is indicating that the situation described in the proposition is probably true. Some marker with this meaning also indicate future time. This is sometimes called the "Dubitative" in grammars: 'Paula should be home by now'.</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fab1efde-edb6-4d91-a02c-372e8ac4dfde" ownerguid="2629943b-3a69-4c6b-9956-2aa59ebd03d3"> -<ExampleWords> -<AUni ws="en">history, historical, archaeology, chronology</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to history?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fab2129d-a2f8-4f9f-8f1b-7e810076b85c" ownerguid="bf9606ec-9a8e-4822-8bfd-d5eebc58c65b"> -<ExampleWords> -<AUni ws="en">darkness, the dark, gloom</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to darkness?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fab3101c-7f0d-4e40-8a66-b7cfb8a2e461" ownerguid="a7dae83a-dce6-47ea-ab3f-ac8a3af4cce9"> -<ExampleWords> -<AUni ws="en">state, province, region, territory</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the parts of a country?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fab36700-a38f-4f88-b2f5-a5a79f979ac8" ownerguid="eb842dc1-ad9c-4c1a-9eb2-a48b7f3092be"> -<ExampleWords> -<AUni ws="en">flight, squadron, air fleet, formation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of air force units are there?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fab3d03b-6b60-46d4-8cba-249299e17236" ownerguid="236b8042-6086-4bed-a156-aaef077d1721"> -<Form> -<AUni ws="qvm-x-ach">pasma</AUni> -<AUni ws="qvm-x-acl">pasma</AUni> -<AUni ws="qvm-x-akh">pasma</AUni> -<AUni ws="qvm-x-akl">pasma</AUni> -<AUni ws="qvm-x-ame">pasma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="fab5b48b-5cfc-4115-9712-bcecbfaa9e92" ownerguid="5703d451-de4d-4ab9-a58d-1b1ff9a463f7"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="fab62949-f8a6-424f-a128-d5c19a9c7478" ownerguid="1d11a03e-037b-4e20-b890-2965f8667156"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">qui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">qui</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ki</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="8fc7d848-8007-4dcc-8c36-9b0b4da26f05" t="r" /> -</Morph> -<Msa> -<objsur guid="bbbfe118-132f-4744-9f12-6945daa4a632" t="r" /> -</Msa> -<Sense> -<objsur guid="7a11c70f-471b-4542-a37b-bcfc9731537d" t="r" /> -</Sense> -</rt> -<rt class="LexEntry" guid="fabae049-74c7-45b2-8ef3-cc2bded3d8f7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aylu</AUni> -<AUni ws="qvm-x-acl">aylu; aylu; aylo</AUni> -<AUni ws="qvm-x-akh">aylu</AUni> -<AUni ws="qvm-x-akl">aylu; aylu; aylo</AUni> -<AUni ws="qvm-x-ame">aylu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ayllu.n</AUni> -<AUni ws="qvm-x-acl">*ayllu.n</AUni> -<AUni ws="qvm-x-akh">*ayllu.n</AUni> -<AUni ws="qvm-x-akl">*ayllu.n</AUni> -<AUni ws="qvm-x-ame">*ayllu.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.900" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b53ec0fe-25f3-4146-b8d1-cb7b52500c75" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ayllu.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="48a44248-5f10-4387-ace6-8143ad224b2e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b289db8d-f729-4721-87c2-f65f3f193733" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ayllu.n 
\entryTyp root 
\gENG family 
\gSPN familia 
\e *ayllu.n 
\c N0 
\ach aylu 
\akh aylu 
\acl aylu / _# 
\acl aylu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl aylo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl aylu / _# 
\akl aylu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl aylo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame aylu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fabbcc7e-4400-49af-83e4-2cecedcdf79d" ownerguid="67e57493-d286-4271-b877-f63f962dddf1"> -<ExampleWords> -<AUni ws="en">big, large, extensive, fair-sized, be a fair size, broad, expansive, wide, wide open</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a big area?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fabca4ce-6c9a-42b2-a93b-355626308d99" ownerguid="1ff9ed87-0b97-4333-81d3-e5d6ecf23449"> -<Form> -<AUni ws="qvm-x-ach">ticsa</AUni> -<AUni ws="qvm-x-acl">ticsa</AUni> -<AUni ws="qvm-x-akh">tiksa</AUni> -<AUni ws="qvm-x-akl">tiksa</AUni> -<AUni ws="qvm-x-ame">tiksa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="fabecd05-45b6-42bb-ab02-9a812cd9eb6f" ownerguid="39bf3a75-0264-49a8-9aa6-26dc4bc4c9cc"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="fabfa789-b5ae-4309-8d3d-a0e9e17d33ba" ownerguid="0448140b-6044-4929-a748-9d84095ebb1b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="fac04617-83cc-45ab-b75b-072d86733657" ownerguid="804bed79-da20-4383-b1f1-b842eda4c6e9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">religious</AUni> -<AUni ws="es">relijioso</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e7f29de5-6eaf-4403-adb7-bfb18aaadb73" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="fac0d92a-9445-44d8-b342-69bb17b9f7bb"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">rikakurqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="fac5bbbd-f52b-48e7-9629-acf1f11776da" ownerguid="e2d1467c-2610-4296-870b-873d92cc8f19"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">scurvy</AUni> -<AUni ws="es">escorbuto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="bdb5b2aa-e34d-4a0a-a983-2df595815b30" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="fac991e0-69ca-4cc5-943c-d96bc80908bc" ownerguid="a26c3c21-bb9a-4b82-a354-fa9b54d681f4"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="faca8855-bec9-4d45-912c-e0240781075c" ownerguid="678bbfc7-b8c7-4f8e-a54c-26fa4bc333ea"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">raise</AUni> -<AUni ws="es">criar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8cfbefdc-0e74-4d77-a718-d2cd4a8f38d0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="facb697c-5378-43fb-b0b0-e0d77116955f" ownerguid="a3d95c6a-4b0b-4af0-aca8-addd042becd2"> -<ExampleWords> -<AUni ws="en">player, playmate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to people who play?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fad59328-d141-49a1-ac12-e7b20750e72e" ownerguid="38824245-7f7d-4081-ab7c-29c35d481dc3"> -<Form> -<AUni ws="qvm-x-ach">tormentu; tormento</AUni> -<AUni ws="qvm-x-acl">tormentu; tormentu; tormento</AUni> -<AUni ws="qvm-x-akh">tormentu; tormento</AUni> -<AUni ws="qvm-x-akl">tormentu; tormentu; tormento</AUni> -<AUni ws="qvm-x-ame">tormentu; tormento</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="fad6de1d-f958-4b2b-9c77-412085c2a3ef"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shipshi</AUni> -<AUni ws="qvm-x-acl">shipshi; shipshi; shipshe</AUni> -<AUni ws="qvm-x-akh">shipshi</AUni> -<AUni ws="qvm-x-akl">shipshi; shipshi; shipshe</AUni> -<AUni ws="qvm-x-ame">shipshi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shipshi</AUni> -<AUni ws="qvm-x-acl">*shipshi</AUni> -<AUni ws="qvm-x-akh">*shipshi</AUni> -<AUni ws="qvm-x-akl">*shipshi</AUni> -<AUni ws="qvm-x-ame">*shipshi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.602" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="07a34fd5-7ce6-48e0-819e-7905999661e9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shipshi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2d860998-e3b9-4383-a207-3e95b9eac68f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f800f2c0-6649-45f0-8b54-02a6595fd4be" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shipshi 
\entryTyp root 
\gENG night 
\gSPN noche 
\e *shipshi 
\c N0 
\mp +FinalI 
\ach shipshi 
\akh shipshi 
\acl shipshi / _# 
\acl shipshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl shipshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl shipshi / _# 
\akl shipshi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl shipshe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shipshi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="fadc0a78-523b-4977-a78a-aecf75c90c5e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">walca; walca:</AUni> -<AUni ws="qvm-x-acl">walca; walca:</AUni> -<AUni ws="qvm-x-akh">walka; walka:</AUni> -<AUni ws="qvm-x-akl">walka; walka:</AUni> -<AUni ws="qvm-x-ame">walka; walka:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wallka:</AUni> -<AUni ws="qvm-x-acl">*wallka:</AUni> -<AUni ws="qvm-x-akh">*wallka:</AUni> -<AUni ws="qvm-x-akl">*wallka:</AUni> -<AUni ws="qvm-x-ame">*wallka:</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.455" /> -<DateModified val="2022-10-10 21:19:47.692" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="347a550e-3c34-494a-b7eb-693cc9e9bb9d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wallka:</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fbda9047-4d8e-472f-8451-a57c60df3cb9" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a5b803cf-f8c9-4144-8ee3-db7048706599" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wallka: 
\entryTyp root 
\gENG lessen 
\gSPN 
\e *wallka: 
\c V1 
\mp +FinalLength 
\mp +underlong 
\ach walca foreshortened 
\ach walca: 
\akh walka foreshortened 
\akh walka: 
\acl walca foreshortened 
\acl walca: 
\akl walka foreshortened 
\akl walka: 
\ame walka foreshortened 
\ame walka: 
\mcc *wallka: / ~_ AG</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="faddf456-490b-4e55-986d-edc6b44d8b53" ownerguid="e931da8a-efc1-46cb-836a-72fba4a1eb4f"> -<ExampleWords> -<AUni ws="en">lead, herd</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to taking an animal somewhere?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fadf967f-127d-46dd-aa31-b39b26b93be7" ownerguid="b24fbd33-a2aa-4274-8198-d6eef8f0345f"> -<Form> -<AUni ws="qvm-x-ach">mäsa</AUni> -<AUni ws="qvm-x-acl">mäsa</AUni> -<AUni ws="qvm-x-akh">mäsa</AUni> -<AUni ws="qvm-x-akl">mäsa</AUni> -<AUni ws="qvm-x-ame">mäsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="fae1dfdc-7162-4ce1-a229-c4b3797460f8" ownerguid="fa688d24-91cb-47d7-a8b3-095723765204"> -<Form> -<AUni ws="qvm-x-ach">lagu</AUni> -<AUni ws="qvm-x-acl">lagu; lago</AUni> -<AUni ws="qvm-x-akh">laqu</AUni> -<AUni ws="qvm-x-akl">laqu; laqo</AUni> -<AUni ws="qvm-x-ame">laqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="fae4193b-dc54-4b7d-a49d-47474ddbd0c4" ownerguid="d08be0cd-3aca-4b2f-897a-31716c4de596"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">?</AUni> -<AUni ws="es">?</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="cdb9a17e-efb7-441b-af66-946e0e0f993b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiAnalysis" guid="fae60727-af59-4ee9-a797-99872e299efc" ownerguid="c42245c6-88e7-48d8-b5b9-0ef7f4fffcce"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="5f3262e1-b5f1-409e-b5cc-85949d125d31" t="o" /> -<objsur guid="890280b4-86ea-4b98-a172-af9ec42a9155" t="o" /> -<objsur guid="975f9548-a89c-41c1-8038-efbc43dcb716" t="o" /> -</MorphBundles> -</rt> -<rt class="WfiAnalysis" guid="faea150f-b612-4fce-81b2-06d69eda8a9e" ownerguid="210d3d1c-036d-4a24-8d8b-b004d99be60c"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="6c060d45-e752-454e-a434-cc8db561d0f0" t="o" /> -<objsur guid="0f64603f-a81a-4fed-b0af-d2586002bba7" t="o" /> -<objsur guid="3b17041c-3369-4c6e-9a21-a2c7544cbb1b" t="o" /> -</MorphBundles> -</rt> -<rt class="CmSemanticDomain" guid="faf0ae24-6584-4766-a93b-389c1cb06d8d" ownerguid="ee446395-781b-4651-afef-cad78b71f843"> -<Abbreviation> -<AUni ws="en">1.6.1.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:7.994" /> -<DateModified val="2022-9-23 16:55:7.994" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to turtles.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Turtle</AUni> -</Name> -<Questions> -<objsur guid="a4765bf0-1966-444f-8242-faf1e28859a3" t="o" /> -<objsur guid="7167de6d-65bd-4331-8f81-09763c6c526e" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="faf276e0-4f09-4378-a9cb-9248ff35b346" ownerguid="1dcd440b-ee59-41e4-b3e1-f965817c8831"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="faf39e77-d6f3-458b-b679-1151969a0a0a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tenienti; teniente</AUni> -<AUni ws="qvm-x-acl">tenienti; tenienti; teniente</AUni> -<AUni ws="qvm-x-akh">tenienti; teniente</AUni> -<AUni ws="qvm-x-akl">tenienti; tenienti; teniente</AUni> -<AUni ws="qvm-x-ame">tenienti; teniente</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+teniente</AUni> -<AUni ws="qvm-x-acl">+teniente</AUni> -<AUni ws="qvm-x-akh">+teniente</AUni> -<AUni ws="qvm-x-akl">+teniente</AUni> -<AUni ws="qvm-x-ame">+teniente</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.866" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4b41874a-4df3-475b-9be9-b0dd5e7e7db2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+teniente</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="428cf47c-d760-4af2-b793-70c9885b3f77" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="36e65048-89ed-4573-96c7-b202d4cf9904" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +teniente 
\entryTyp root 
\gENG vice 
\gSPN teniente 
\e +teniente 
\c N0 
\mp +FinalI 
\ach tenienti / ~_# 
\ach teniente / _# 
\akh tenienti / ~_# 
\akh teniente / _# 
\acl tenienti / ~_# 
\acl tenienti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl teniente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tenienti / ~_# 
\akl tenienti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl teniente +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tenienti / ~_# 
\ame teniente / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiGloss" guid="faf42ce4-e9ce-48f7-8a64-c77b40306fe6" ownerguid="17272c18-18d4-48d7-a687-57408725336b"> -<Form> -<AUni ws="en">Joseph</AUni> -<AUni ws="es">José</AUni> -</Form> -</rt> -<rt class="LexExampleSentence" guid="faf6dc50-1d33-41e9-912a-08e7d8460096" ownerguid="f78df27e-8a4c-4be1-8696-ba8a287ce2e4"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">EXO 12.39 Tsaymi jamapashgancho levadüraynag mäsa apashgalanpita panquëquita rurapäcorgan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="faf84c2f-3b02-44e1-be92-077199cdddf9" ownerguid="a9c4f4e2-a920-42ce-8481-96be634806b0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/V1 N0/V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">CAUSBE2</AUni> -<AUni ws="es">CAUSER2</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6c33f89d-3f7a-4bad-b071-ac31d875398c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="fafacfea-10ca-4ca7-b328-b05d0d1b8732" ownerguid="dfc81541-5e5c-4762-8866-df778aa99da6"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="fafc2567-58aa-4cc9-9da2-5d123bf47836" ownerguid="5b12ea7b-790f-4f3e-8d07-893fc267773e"> -<ExampleWords> -<AUni ws="en">storm clouds, rain cloud, cumulus, thunderhead, anvil shaped, billowing, nimbus, fluffy, cirrus, wispy, vapor trail, haze, hazy, fog, foggy, mist, misty, steam, vapor, band, smog, fume, cloud of smoke</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe different kinds of clouds?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="fafe086e-f384-4b56-ad18-e27cfb9374df" ownerguid="9704680f-9d20-4e28-a598-ca4f17b49543"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pass.g.pig</AUni> -<AUni ws="es">jobear</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c03d34f5-d28b-4ef1-97c7-91e2881d303d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="fafe2d9f-e8c3-48b4-9aa9-d05ab9460952"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">perdi</AUni> -<AUni ws="qvm-x-acl">perdi; perde</AUni> -<AUni ws="qvm-x-akh">perdi</AUni> -<AUni ws="qvm-x-akl">perdi; perde</AUni> -<AUni ws="qvm-x-ame">perdi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+perder</AUni> -<AUni ws="qvm-x-acl">+perder</AUni> -<AUni ws="qvm-x-akh">+perder</AUni> -<AUni ws="qvm-x-akl">+perder</AUni> -<AUni ws="qvm-x-ame">+perder</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.790" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="258487b4-40f3-422b-891c-dfe8878194f9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+perder</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d3b5bd39-2c5a-41e1-b845-eae6a9f3cdb4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0a90f312-de7d-4b8f-8ad0-003d454b6c6a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +perder 
\entryTyp root 
\gENG lose 
\gSPN perder 
\e +perder 
\c V2 
\mp +FinalI 
\ach perdi 
\akh perdi 
\acl perdi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl perde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl perdi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl perde +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame perdi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="fafebeb8-6b8d-4e1b-9ec7-76e0e62ccccc" ownerguid="f5cde8b9-571a-448a-b7d0-6aa6259dd481"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0 V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">just.that</AUni> -<AUni ws="es">así.no.más</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fbad07fe-97e8-41de-90b9-4352f2a97857" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="fb003309-1d75-458e-aa57-0fa41ec866a8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">colegiu; colegio</AUni> -<AUni ws="qvm-x-acl">colegiu; colegiu; colegio</AUni> -<AUni ws="qvm-x-akh">colegiu; colegio</AUni> -<AUni ws="qvm-x-akl">colegiu; colegiu; colegio</AUni> -<AUni ws="qvm-x-ame">colegiu; colegio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+colegio</AUni> -<AUni ws="qvm-x-acl">+colegio</AUni> -<AUni ws="qvm-x-akh">+colegio</AUni> -<AUni ws="qvm-x-akl">+colegio</AUni> -<AUni ws="qvm-x-ame">+colegio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.142" /> -<DateModified val="2022-10-14 23:44:17.431" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1342b159-6cd9-47bf-b055-964f0256d367" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+colegio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="502da427-9619-4d5f-9e2c-719c73174c87" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="7d700bce-4842-471e-a4bf-5dbe0e1bebad" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +colegio 
\entryTyp root 
\gENG high.school 
\gSPN colegio 
\e +colegio 
\c N0 
\ach colegiu / ~_# 
\ach colegio / _# 
\akh colegiu / ~_# 
\akh colegio / _# 
\acl colegiu / ~_# 
\acl colegiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl colegio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl colegiu / ~_# 
\akl colegiu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl colegio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame colegiu / ~_# 
\ame colegio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="fb02634a-06d9-4d57-90ce-0e3b1e6e0f88" ownerguid="a87d14bf-4739-4625-b15c-d84f973e04d2"> -<Form> -<AUni ws="qvm-x-ach">engreïdu</AUni> -<AUni ws="qvm-x-acl">engreïdu; engreïdu; engreïdo</AUni> -<AUni ws="qvm-x-akh">engreïdu</AUni> -<AUni ws="qvm-x-akl">engreïdu; engreïdu; engreïdo</AUni> -<AUni ws="qvm-x-ame">engreïdu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="fb047af6-3499-429d-9665-3add7304c1af" ownerguid="74fbe52e-51af-456b-9c1a-ffc99db626bf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">stutterer</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d67e9dd9-2218-4cf5-b458-0eec71916029" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="fb093d8d-cd27-4efa-96d3-b76555a18834" ownerguid="611aa361-4ddd-450b-a152-94984a274575"> -<ExampleWords> -<AUni ws="en">abandoned, forsaken, derelict, uncared-for</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe something that has been abandoned?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fb0a8a06-4b50-4ab0-b4df-2d00d716343b" ownerguid="2683f6d3-f4ef-4f5a-8864-32679ec323e2"> -<Form> -<AUni ws="qvm-x-ach">chunca</AUni> -<AUni ws="qvm-x-acl">chunca</AUni> -<AUni ws="qvm-x-akh">chunka</AUni> -<AUni ws="qvm-x-akl">chunka</AUni> -<AUni ws="qvm-x-ame">chunka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="fb0abeda-0de3-4220-9907-01539104d9dd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sacristán; sacristan</AUni> -<AUni ws="qvm-x-acl">sacristán; sacristan</AUni> -<AUni ws="qvm-x-akh">sacristán; sacristan</AUni> -<AUni ws="qvm-x-akl">sacristán; sacristan</AUni> -<AUni ws="qvm-x-ame">sacristán; sacristan</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sacristán</AUni> -<AUni ws="qvm-x-acl">+sacristán</AUni> -<AUni ws="qvm-x-akh">+sacristán</AUni> -<AUni ws="qvm-x-akl">+sacristán</AUni> -<AUni ws="qvm-x-ame">+sacristán</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.419" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ead213fe-e219-4d2c-b2fc-81956df79a68" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sacristán</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="040f2271-3921-45af-9f35-af1350673443" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="254ea2ee-073c-46a2-9b3a-1d171d0e61e1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sacristán 
\entryTyp root 
\gENG sacristan 
\gSPN saristán 
\e +sacristán 
\c N0 
\mp +FinalC 
\ach sacristán / _# 
\ach sacristan / ~_# 
\akh sacristán / _# 
\akh sacristan / ~_# 
\acl sacristán / _# 
\acl sacristan / ~_# 
\akl sacristán / _# 
\akl sacristan / ~_# 
\ame sacristán / _# 
\ame sacristan / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="fb0de6c5-a635-452d-9059-52de8f62ebd5" ownerguid="eb1dad61-59a2-49b1-ac77-4054ebf01b7a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ca</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ca</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ka</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ka</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ka</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d1685fdc-96d8-4baf-9cb8-523863adb67f" t="r" /> -</Morph> -<Msa> -<objsur guid="434f36b9-aa05-46d6-be7e-89240d9e2c4d" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="fb16da71-89b7-4b66-849a-51a11d68b30c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">llogui</AUni> -<AUni ws="qvm-x-acl">llogui; llogui; llogue</AUni> -<AUni ws="qvm-x-akh">lloqi</AUni> -<AUni ws="qvm-x-akl">lloqi; lloqi; lloqe</AUni> -<AUni ws="qvm-x-ame">lluqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lluqi</AUni> -<AUni ws="qvm-x-acl">*lluqi</AUni> -<AUni ws="qvm-x-akh">*lluqi</AUni> -<AUni ws="qvm-x-akl">*lluqi</AUni> -<AUni ws="qvm-x-ame">*lluqi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.225" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="91dc078a-2d36-41de-8401-d41b3021bdd5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lluqi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5c8b372a-26e8-404b-8ae8-72f0f1db6a8f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="adb49030-5bbd-41ea-a303-c010c7ef23e0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lluqi 
\entryTyp root 
\gENG 
\gSPN árbol 
\e *lluqi 
\c N0 
\mp +FinalI 
\ach llogui 
\akh lloqi 
\acl llogui / _# 
\acl llogui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl llogue +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lloqi / _# 
\akl lloqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lloqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lluqi</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="fb18da1f-b2e6-4afe-bb20-0a55fb1f3b25" ownerguid="9b13abd6-15b7-4ba6-9106-e0fa8e831712"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="fb1cc66b-80da-42fa-8c0c-2ee3e0fe0089"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">limi</AUni> -<AUni ws="qvm-x-acl">limi; limi; lime</AUni> -<AUni ws="qvm-x-akh">limi</AUni> -<AUni ws="qvm-x-akl">limi; limi; lime</AUni> -<AUni ws="qvm-x-ame">limi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llimi.r</AUni> -<AUni ws="qvm-x-acl">*llimi.r</AUni> -<AUni ws="qvm-x-akh">*llimi.r</AUni> -<AUni ws="qvm-x-akl">*llimi.r</AUni> -<AUni ws="qvm-x-ame">*llimi.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.203" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="611c8a6b-e5f6-4aaa-bf8f-7ba2a23c41fd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llimi.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a9ee3154-2a23-4507-9ce8-ae1f0bc56274" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="03468c7c-60a4-427f-a46a-446d7cacd3f2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llimi.r 
\entryTyp root 
\gENG press 
\gSPN apresurar 
\e *llimi.r 
\c R0 
\mp +FinalI 
\ach limi 
\akh limi 
\acl limi / _# 
\acl limi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lime +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl limi / _# 
\akl limi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lime +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame limi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="fb1dffab-1c58-4347-a3de-dfc4b80b27c3" ownerguid="a3e984a5-2339-4f5e-8f6b-a400898acfa7"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2KI 25.30 Tsaynogpis cada junagmi propïnanta chasquergan gastuncunapag.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="fb1e64ab-fced-4693-8ffe-9e8f0b9c35a3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">halaga</AUni> -<AUni ws="qvm-x-acl">halaga</AUni> -<AUni ws="qvm-x-akh">halaga</AUni> -<AUni ws="qvm-x-akl">halaga</AUni> -<AUni ws="qvm-x-ame">halaga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+halagar</AUni> -<AUni ws="qvm-x-acl">+halagar</AUni> -<AUni ws="qvm-x-akh">+halagar</AUni> -<AUni ws="qvm-x-akl">+halagar</AUni> -<AUni ws="qvm-x-ame">+halagar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.650" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f3ed745c-32f8-4836-9f27-b44e7a7d1d18" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+halagar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6c435fc1-180d-4a31-a63c-7139eced6fa1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="40e28065-a966-4bef-a988-283110aa115b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +halagar 
\entryTyp root 
\gENG to.glory 
\gSPN halagar 
\e +halagar 
\c V2 
\ach halaga 
\akh halaga 
\acl halaga 
\akl halaga 
\ame halaga 
\i PRO 25.27 Aläpa mishquita micuptiqui däñashushgayquinogmi runacuna aläpa alabashushgayquipis
\f + 25.27 Waquin runacunaga 
\it alagashushgayquipis
\it* nipäcun.
\f* mana ali caycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fb1f1709-7fe0-40ae-8cdd-5d751ffe8553" ownerguid="9d79be9a-f21e-4189-be39-779db79da027"> -<ExampleWords> -<AUni ws="en">wash dishes, rinse</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to washing dishes?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fb1f3f16-9ce2-4bfa-8ea1-cacfc2863ea6" ownerguid="03352940-c220-4a32-a9a5-fc08d1d0dc71"> -<ExampleWords> -<AUni ws="en">disposable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words describe something made to be used once and then thrown away?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fb213fef-34e7-4a23-8be8-e2b4f032df7a" ownerguid="f0f3c371-166e-4a66-849f-60d6fa7ad889"> -<ExampleWords> -<AUni ws="en">poetry, poem, poetic, sonnet, verse, rhyme, nursery rhyme, ballad, epic poem</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to poems?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="fb227763-b05d-4b53-9a50-69a8e8376bb3"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pitsa</AUni> -<AUni ws="qvm-x-acl">pitsa</AUni> -<AUni ws="qvm-x-akh">pitsa</AUni> -<AUni ws="qvm-x-akl">pitsa</AUni> -<AUni ws="qvm-x-ame">pitsa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*picha</AUni> -<AUni ws="qvm-x-acl">*picha</AUni> -<AUni ws="qvm-x-akh">*picha</AUni> -<AUni ws="qvm-x-akl">*picha</AUni> -<AUni ws="qvm-x-ame">*picha</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.820" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="db9782fb-8693-4775-915b-5fe1cc2836d4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*picha</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9b618ae9-a560-4b16-b966-2243b3621081" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3f971e77-cb40-4b90-a658-5c13dc4905f9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *picha 
\entryTyp root 
\gENG sweep 
\gSPN barrer 
\e *picha 
\c V2 
\ach pitsa 
\akh pitsa 
\acl pitsa 
\akl pitsa 
\ame pitsa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="fb252d76-88a0-4cf2-9d07-278c0bd93b1a" ownerguid="3fb94643-163e-4454-8d2e-3b638a5cf32b"> -<Form> -<AUni ws="qvm-x-ach">micu</AUni> -<AUni ws="qvm-x-acl">micu; mico</AUni> -<AUni ws="qvm-x-akh">miku XYZ</AUni> -<AUni ws="qvm-x-akl">miku; miko</AUni> -<AUni ws="qvm-x-ame">miku</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="fb25abf0-7cc8-4147-ac82-08d61a0020ce" ownerguid="f1af3f4c-6e0e-4cfa-adcf-9dcddf05feab"> -<ExampleWords> -<AUni ws="en">guess, estimate, suppose, assume, theorize</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to answering a question when you are unsure of the answer?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fb2762f1-ed59-4c11-b6e4-7fbfcfad8f18" ownerguid="430ce279-1464-4d55-8483-5525a3c3094d"> -<ExampleWords> -<AUni ws="en">serve, service, attend to, wait on</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to serving someone?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="fb277c1a-3699-4713-b9e1-14dd19d2815d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wachwa</AUni> -<AUni ws="qvm-x-acl">wachwa</AUni> -<AUni ws="qvm-x-akh">wachwa</AUni> -<AUni ws="qvm-x-akl">wachwa</AUni> -<AUni ws="qvm-x-ame">wachwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*watrwa</AUni> -<AUni ws="qvm-x-acl">*watrwa</AUni> -<AUni ws="qvm-x-akh">*watrwa</AUni> -<AUni ws="qvm-x-akl">*watrwa</AUni> -<AUni ws="qvm-x-ame">*watrwa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.586" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ab5c75d6-84d5-4366-916a-5b019cfa11c1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*watrwa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="cceeae63-88a8-4f9e-a9e4-3e345300c452" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ba589f34-b164-4bdf-b0d9-ebe9ec860f23" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *watrwa 
\entryTyp root 
\gENG andean goose 
\gSPN ganso andino 
\e *watrwa 
\c N0 
\ach wachwa 
\akh wachwa 
\acl wachwa 
\akl wachwa 
\ame wachwa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="fb278b89-ee55-4b0f-bf6a-709931a56d82" ownerguid="df14ca37-6aa9-4c31-87f6-70087069e64f"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Lev 14.41 Tsaynogla nenga wayi rurintapis rasparir raspashgan alpata impüru lugarman jitarinanpag.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="fb27b38a-0c86-4609-a4bd-ed8bc9f1d019" ownerguid="7c319154-d1d5-4e64-94d0-27b05186b8f9"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="fb2929e9-5eb3-4985-8be5-1e2254a016b2" ownerguid="ab1c7931-4729-4d37-8b47-b95438f34f58"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">steep</AUni> -<AUni ws="es">cuesta</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="76ddc48b-f57d-4421-b137-0f58d88e49be" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="fb2d0024-fa92-41d6-897d-6bc44a9a22e0" ownerguid="a01e0e71-4940-4351-b973-964e5e5b8d8f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">old</AUni> -<AUni ws="es">viejo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="030843d2-059a-4f82-9d09-7fa8b7d94eba" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="fb2de51f-da06-435c-8dcf-320f193f47bc"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">man</AUni> -<AUni ws="qvm-x-acl">man</AUni> -<AUni ws="qvm-x-akh">man</AUni> -<AUni ws="qvm-x-akl">man</AUni> -<AUni ws="qvm-x-ame">man</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.516" /> -<DateModified val="2022-10-16 15:27:47.114" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="1" /> -<LexemeForm> -<objsur guid="1acbb55c-ccc7-45f0-b507-b8645ea87900" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">GOAL</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="78b4abbf-5b84-4215-b706-3b23cbb0dd3d" t="o" /> -<objsur guid="afad3961-fbf7-495d-bda7-b2ceaf12bba1" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="61948ca3-8e7f-427d-add7-3b9475d3979d" t="o" /> -<objsur guid="27c05c03-8a3e-41e0-9f5e-69a5e5bc3997" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx GOAL 
\entryTyp suffix 
\gENG GOAL 
\gSPN META 
\e GOAL 
\c N0/N0 BN/BN 
\o 200 
\mp +FinalC 
\ach man 
\akh man 
\acl man 
\akl man 
\ame man 
\mcc GOAL / ~_ GOAL 
\mcc GOAL / CAUS INF.I ~_</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="fb2e8792-b7dd-4d8b-85a9-fb2015f58423" ownerguid="22dba64d-28de-40f7-9e78-18a38f30642b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="fb30af3f-0eb3-49b6-93ba-8b062944e3b7" ownerguid="f735b05b-c9bc-45cb-a47a-902193a5e236"> -<Form> -<AUni ws="qvm-x-ach">contraparti; contraparte</AUni> -<AUni ws="qvm-x-acl">contraparti; contraparti; contraparte</AUni> -<AUni ws="qvm-x-akh">contraparti; contraparte</AUni> -<AUni ws="qvm-x-akl">contraparti; contraparti; contraparte</AUni> -<AUni ws="qvm-x-ame">contraparti; contraparte</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="fb310cf3-4b99-4d4a-bca7-77e9874a7f22" ownerguid="8383b4cb-e14a-4d04-a8c3-9c5276384953"> -<ExampleWords> -<AUni ws="en">can I, may I, do you mind if, would you mind if, is it all right if</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words do people use when they are asking permission to do something?</AUni> -</Question> -</rt> -<rt class="StTxtPara" guid="fb32d788-83b9-45b0-ad0f-5a7d74baba22" ownerguid="7e7e7d3b-029c-417c-9339-ef58ebd0021e"> -<Contents> -<Str> -<Run ws="qvm-x-akh">rikapäkatsikan</Run> -</Str> -</Contents> -<ParseIsCurrent val="True" /> -<Segments> -<objsur guid="fd7942b3-cfb7-46f9-976d-e6f5706dfca7" t="o" /> -</Segments> -</rt> -<rt class="MoStemAllomorph" guid="fb36b5c1-91e6-4d34-8de2-fb84cc8d4a3c" ownerguid="8c9fdbea-7063-48ab-9e75-cfb05208ab9d"> -<Form> -<AUni ws="qvm-x-ach">wishla</AUni> -<AUni ws="qvm-x-acl">wishla</AUni> -<AUni ws="qvm-x-akh">wishla</AUni> -<AUni ws="qvm-x-akl">wishla</AUni> -<AUni ws="qvm-x-ame">wishla</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="fb3a6c3e-eb74-451c-9aea-aec0b57ba778" ownerguid="a30e0391-ea64-4938-9eca-023c351d60af"> -<ExampleWords> -<AUni ws="en">disclose, unmask, expose, reveal, unveil, bring to light</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to disclosing information?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="fb3fab20-330d-4956-b545-4da82564918b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ashli</AUni> -<AUni ws="qvm-x-acl">ashli; ashle</AUni> -<AUni ws="qvm-x-akh">ashli</AUni> -<AUni ws="qvm-x-akl">ashli; ashle</AUni> -<AUni ws="qvm-x-ame">ashli</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ashlli</AUni> -<AUni ws="qvm-x-acl">*ashlli</AUni> -<AUni ws="qvm-x-akh">*ashlli</AUni> -<AUni ws="qvm-x-akl">*ashlli</AUni> -<AUni ws="qvm-x-ame">*ashlli</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.848" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d29a542d-aa1f-49fe-a81f-33ab6eb8dc7b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ashlli</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="af206329-7cf0-4be1-a7c8-b4ae7cc22642" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="57b7a2b3-7da2-4a8e-8c1f-3cc52ea0531a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ashlli 
\entryTyp root 
\gENG insult 
\gSPN insultar 
\e *ashlli 
\c V2 
\mp +FinalI 
\ach ashli 
\akh ashli 
\acl ashli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl ashle +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ashli +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ashle +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ashli</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fb3fc7b8-f6fa-4762-b55b-89d456e35e24" ownerguid="5261497b-6beb-4db1-9de2-10b5f6f8ec69"> -<ExampleWords> -<AUni ws="en">beginning, the start, commencement, inception, at first, initially, originally</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the time when something begins?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fb41fa17-7747-47b8-ac78-dddd111a4461" ownerguid="321cf755-4f45-4291-a288-b84a4ff6650f"> -<Form> -<AUni ws="qvm-x-ach">cläru</AUni> -<AUni ws="qvm-x-acl">cläru; cläru; cläro</AUni> -<AUni ws="qvm-x-akh">cläru</AUni> -<AUni ws="qvm-x-akl">cläru; cläru; cläro</AUni> -<AUni ws="qvm-x-ame">cläru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="PunctuationForm" guid="fb43b19b-744f-4629-9392-f62bab5d60dd"> -<Form> -<Str> -<Run ws="qvm-x-akh">!>></Run> -</Str> -</Form> -</rt> -<rt class="LexEntry" guid="fb460a8d-ede0-43dc-a1da-f81ef8da6f62"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">go:ma</AUni> -<AUni ws="qvm-x-acl">go:ma</AUni> -<AUni ws="qvm-x-akh">go:ma</AUni> -<AUni ws="qvm-x-akl">go:ma</AUni> -<AUni ws="qvm-x-ame">go:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+goma</AUni> -<AUni ws="qvm-x-acl">+goma</AUni> -<AUni ws="qvm-x-akh">+goma</AUni> -<AUni ws="qvm-x-akl">+goma</AUni> -<AUni ws="qvm-x-ame">+goma</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.619" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bd76405b-9875-499f-b131-55c241e7a36a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+goma</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ad24a29e-1407-4ba9-8e3a-39f08b79d95f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5322cc74-340c-42e6-bdef-9e068ec21a3c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +goma 
\entryTyp root 
\gENG glue 
\gSPN goma 
\e +goma 
\c N0 
\ach go:ma 
\akh go:ma 
\acl go:ma 
\akl go:ma 
\ame go:ma</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="fb4a4ed0-bc75-4949-93c5-750b47fc001f" ownerguid="69404d44-5a36-4aed-bccf-5249576c6e25"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="fb5006dc-b41d-4253-906b-fb07f366c4a7" ownerguid="646dab64-5c2f-4f45-8e28-4d13437639d4"> -<ExampleWords> -<AUni ws="en">broken relationship, break up, strained relationship, misunderstanding, co-dependency</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe a friendship that has gone bad?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="fb5e427e-191a-4b5d-ab91-53e282d4ce69" ownerguid="4c2fa550-bc8c-4da6-af33-1cd262ef8687"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">JOB 3.9 Ama räyacanmantsu cargan.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="fb616132-d5b9-4803-baf6-ce582d3d0eaf" ownerguid="5b925ee1-82ef-4692-bba2-9ce3cb41c7bb"> -<ExampleWords> -<AUni ws="en">uncover, remove (a cover), take off, reveal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to uncovering something?</AUni> -</Question> -</rt> -<rt class="StStyle" guid="fb6450f5-626d-4fbf-ada5-4cfd5986b5b0" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Context val="14" /> -<Function val="0" /> -<IsBuiltIn val="True" /> -<IsModified val="False" /> -<IsPublishedTextStyle val="False" /> -<Name> -<Uni>Classified-POS</Uni> -</Name> -<Rules> -<Prop italic="invert"></Prop> -</Rules> -<Structure val="0" /> -<Type val="1" /> -<Usage> -<AUni ws="en">Used for the grammatical information in a Classified Dictionary.</AUni> -</Usage> -<UserLevel val="1" /> -</rt> -<rt class="PunctuationForm" guid="fb654e65-288f-44c0-9dc6-db244ca6e766"> -<Form> -<Str> -<Run ws="en">ve</Run> -</Str> -</Form> -</rt> -<rt class="MoStemAllomorph" guid="fb664a7e-7e3c-4df1-a1ab-ea2a8873cf24" ownerguid="ad95ae11-c210-4cd0-88ff-c9fd689f4a3a"> -<Form> -<AUni ws="qvm-x-ach">atpi</AUni> -<AUni ws="qvm-x-acl">atpi; atpe</AUni> -<AUni ws="qvm-x-akh">atpi</AUni> -<AUni ws="qvm-x-akl">atpi; atpe</AUni> -<AUni ws="qvm-x-ame">atpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="fb6840e2-11f3-434c-bb10-e35bbe7d80f1" ownerguid="3c9a1f95-f07d-4163-8149-ab0f7452262b"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="cb2d3560-2d33-44dd-a383-4dec0c19ac1c" t="o" /> -<objsur guid="46fc84f8-463e-4ebe-9db7-6c765bf0aadc" t="o" /> -<objsur guid="278fccdc-ac7f-470a-afa3-f9ade881d8cd" t="o" /> -<objsur guid="c0ba37c6-6e48-4f70-adba-f6dac8f03c6d" t="o" /> -<objsur guid="995c023c-c531-4df7-883e-1c0cbaffa6f9" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="fb6a2407-472d-4e67-86ff-20731fa28da1" ownerguid="898aacea-1fbf-4e07-a8da-330f39a9a386"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="fb6c5e27-6fb5-4dac-ad1a-4a1d633df22e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">achpa</AUni> -<AUni ws="qvm-x-acl">achpa</AUni> -<AUni ws="qvm-x-akh">achpa</AUni> -<AUni ws="qvm-x-akl">achpa</AUni> -<AUni ws="qvm-x-ame">achpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*atrpa</AUni> -<AUni ws="qvm-x-acl">*atrpa</AUni> -<AUni ws="qvm-x-akh">*atrpa</AUni> -<AUni ws="qvm-x-akl">*atrpa</AUni> -<AUni ws="qvm-x-ame">*atrpa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.870" /> -<DateModified val="2022-10-10 21:19:54.717" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="099ea2f9-023e-4fd7-85b6-db009657ed4d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*atrpa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4440d1d3-ee29-4201-b289-ffb7eba831b7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="40cea1b9-db8c-4434-9360-d458d0976738" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *atrpa 
\entryTyp root 
\gENG scale 
\gSPN trepar 
\e *atrpa 
\c V2 
\ach achpa 
\akh achpa 
\acl achpa 
\akl achpa 
\ame achpa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="fb742c26-5a90-4bf6-add1-f80add8157bb" ownerguid="3c951962-45d2-46ac-b797-1042e9081ca0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="fb771764-bb1b-40d1-a716-578f521db5c9" ownerguid="3aec74e5-6cfd-46d2-b26f-503fad761583"> -<ExampleWords> -<AUni ws="en">shaft, head, gear, lever, fulcrum, switch, key, spring</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to parts of tools?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fb7953a7-d568-40ca-ae9c-69f7548cca9e" ownerguid="162ba30f-5ff4-4bcc-8246-3b7c97165d3f"> -<Form> -<AUni ws="qvm-x-ach">järra</AUni> -<AUni ws="qvm-x-acl">järra</AUni> -<AUni ws="qvm-x-akh">järra</AUni> -<AUni ws="qvm-x-akl">järra</AUni> -<AUni ws="qvm-x-ame">järra</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="fb7b9804-c55a-480f-b417-9762e1e8bb4b" ownerguid="459c5844-f4e3-471d-98f9-7d1b347815e8"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="fb7d3cc6-b13b-4aee-9975-86089dbe7df9" ownerguid="a7a7e774-fa1c-4edf-94ec-8245dfdb28c6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">rabbit</AUni> -<AUni ws="es">conejo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6313c642-c06f-43a6-ba82-f6ec36d9d546" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="fb7f60c7-1968-4984-851d-ac556f9672de" ownerguid="19d54c2f-ae03-4cbc-9b7e-57292f92fbc1"> -<ExampleWords> -<AUni ws="en">chase (n), pursuit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the act of pursuing someone?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="fb84538a-17a8-4adc-8d50-e2b66f8e4099" ownerguid="c6c772af-7b6b-4393-b0da-5b4a329d3426"> -<Abbreviation> -<AUni ws="en">8.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.559" /> -<DateModified val="2022-9-23 16:55:8.559" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to numbers. Every language has a word for 'one', and a word for 'two'. These two numbers often have special words. So we have included a separate domain for 'one' and 'two'. In addition the numbers form a series (one, two, three...). Most languages have more than one series of numbers (first, second, third...). So we have also included a domain for each series of numbers that most languages have. Your language may have other series of numbers. Put them in the domain 'Number series'.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>60 Number; 60A Number, Countless</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Number</AUni> -</Name> -<OcmCodes> -<Uni>801 Numerology; 802 Numeration</Uni> -</OcmCodes> -<Questions> -<objsur guid="5696ef1e-abe7-4970-baa5-2e3f906c9eaf" t="o" /> -<objsur guid="2c1fa9df-09c4-44aa-916e-495ca1ff7d67" t="o" /> -<objsur guid="b237c55d-2e98-47a9-8ac9-e5bc5f10b477" t="o" /> -<objsur guid="8a262f30-9be8-4c87-ae1e-a46ab674493d" t="o" /> -<objsur guid="aafc37cf-579c-4a27-9de3-bef4cb2853ec" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b6686c7c-39de-40b5-adee-67fc7dc54374" t="o" /> -<objsur guid="816490a4-2cac-472a-bbb0-eafbb9bbe4a8" t="o" /> -<objsur guid="d85d0838-a9e4-4787-8fce-7d0466bc24b9" t="o" /> -<objsur guid="a57185c3-0cb5-41fa-94bf-da0c9edac600" t="o" /> -<objsur guid="ffa13b7d-5eaa-43be-8518-51d9aa08f321" t="o" /> -<objsur guid="64e6c0db-6dd6-4b80-bbe9-c96bb161674b" t="o" /> -<objsur guid="0e250e72-6c3f-424f-9e62-2dcc9729d817" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="fb84806d-10b9-410c-9c3e-f8a21e4541a1" ownerguid="c888c7ac-8cf4-49d2-a33e-20d19d84c47b"> -<ExampleWords> -<AUni ws="en">wallow, root, feed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What do pigs do?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="fb860c0a-0792-4c2c-aeca-68734f0f9558" ownerguid="5217e73d-ccd3-418e-a0bd-50c70f3bb20c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">onion</AUni> -<AUni ws="es">cebolla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ef508f17-ff6d-4e79-bbc6-22d192324c20" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="fb872b7f-a80c-4475-96d0-c031d4237846"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuma</AUni> -<AUni ws="qvm-x-acl">cuma</AUni> -<AUni ws="qvm-x-akh">kuma</AUni> -<AUni ws="qvm-x-akl">kuma</AUni> -<AUni ws="qvm-x-ame">kuma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kuma.v</AUni> -<AUni ws="qvm-x-acl">*kuma.v</AUni> -<AUni ws="qvm-x-akh">*kuma.v</AUni> -<AUni ws="qvm-x-akl">*kuma.v</AUni> -<AUni ws="qvm-x-ame">*kuma.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.3" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="61428152-2650-42e8-ba92-b0db22813997" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kuma.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="24512c3f-8587-4e4a-998e-48bac9a11c55" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0e98ff0b-1473-47c5-8efd-7dc3ba5f57f3" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kuma.v 
\entryTyp root 
\gENG push 
\gSPN empujar 
\e *kuma.v 
\c V2 
\ach cuma 
\akh kuma 
\acl cuma 
\akl kuma 
\ame kuma</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fb906d76-ba4d-40a9-894b-b6980d2b74d2" ownerguid="cbc0a8f5-9cba-41d2-a7e5-565fbf09c8c4"> -<ExampleWords> -<AUni ws="en">can't stop laughing, have the giggles, fall over/about laughing, have a good laugh, laugh till the tears roll down your cheeks</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to laughing for a long time?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="fb918c26-7177-46e0-89ff-194a1606aeb4" ownerguid="20f45413-19df-4423-bcf8-5f9924503731"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="fb9c69fb-45c4-49c0-b8aa-7d4f40e26a98"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">itransitive</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="fb9d1e15-92d1-47b2-b509-7a49a338c254" ownerguid="f8863b67-b911-4334-a1b6-6eb913bd14af"> -<ExampleWords> -<AUni ws="en">bore, caliber, diameter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to how wide a circle or hole is?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fb9ecba8-4e8a-4e68-acc5-11b4733e9a7f" ownerguid="46ad1505-9049-41d8-831b-768f46f12500"> -<ExampleWords> -<AUni ws="en">clean, spanking clean, spotless, sparkling clean</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is clean?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="fb9fb454-1893-41f8-97ef-095928c402b4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ho:ra</AUni> -<AUni ws="qvm-x-acl">ho:ra</AUni> -<AUni ws="qvm-x-akh">ho:ra</AUni> -<AUni ws="qvm-x-akl">ho:ra</AUni> -<AUni ws="qvm-x-ame">ho:ra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+hora</AUni> -<AUni ws="qvm-x-acl">+hora</AUni> -<AUni ws="qvm-x-akh">+hora</AUni> -<AUni ws="qvm-x-akl">+hora</AUni> -<AUni ws="qvm-x-ame">+hora</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.741" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a7e502af-cce9-4d76-926f-d0646456fba1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+hora</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e02c868f-bdeb-48ac-8e95-edd2272d46f2" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5460beaa-de61-4b21-861e-b78e7803eea6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +hora 
\entryTyp root 
\gENG hour 
\gSPN hora 
\e +hora 
\c N0 
\ach ho:ra 
\akh ho:ra 
\acl ho:ra 
\akl ho:ra 
\ame ho:ra</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="fba0a3e3-6724-40ce-a0c0-44389bdb6d70" ownerguid="fe18b08e-caf3-406c-8a8b-2ce244aaaaee"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">walk</AUni> -<AUni ws="es">andar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="08a7c8a1-fd87-4531-bbe3-39dd73143133" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmSemanticDomain" guid="fba27833-d6f1-4c36-ac39-28902b29261b" ownerguid="fe9253f4-d063-4d63-91af-85273d61337f"> -<Abbreviation> -<AUni ws="en">8.3.5.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.619" /> -<DateModified val="2022-9-23 16:55:8.619" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing two things or people that are similar, but not the same.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Like, similar</AUni> -</Name> -<Questions> -<objsur guid="c0e57bc4-7435-4d63-a05c-a4183ad9bb28" t="o" /> -<objsur guid="177ea60e-7781-46f4-bdac-434d7b13c9b4" t="o" /> -<objsur guid="537fbe83-1c27-4c0c-921f-3e9c6fa03515" t="o" /> -<objsur guid="5db46555-6fba-46be-9197-cda6a59a0fa5" t="o" /> -<objsur guid="15f091e7-c0ee-44f3-ad2d-107b8405c82d" t="o" /> -<objsur guid="36a02f4d-0bf1-4407-9b59-8e5449af0aaf" t="o" /> -<objsur guid="61d7d84a-d3b9-41db-b24a-24295c3a4efb" t="o" /> -<objsur guid="4ca3f427-73df-4d0d-9a89-25592f0b117f" t="o" /> -<objsur guid="e00c030f-496e-4934-9d12-5def7f9d3eea" t="o" /> -<objsur guid="2d692405-a802-4562-a01d-6ae7d9541b97" t="o" /> -<objsur guid="c152a952-2dcf-49a6-9206-4049fb869a9d" t="o" /> -<objsur guid="5014388e-073c-42b5-abda-6d9639c654f4" t="o" /> -<objsur guid="eacf02d4-dce5-4ed6-9fc3-f951398ba3b4" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="WfiMorphBundle" guid="fba339da-ad6a-434e-8c79-41db5bc25808" ownerguid="fe2136a5-5025-4394-b6d7-29b78f480494"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">yqui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">yqui; yqui; yque</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">yki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">yki; yki; yke</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">yki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="e923ff73-545c-4526-86e7-58a4c95762c6" t="r" /> -</Morph> -<Msa> -<objsur guid="a40909fa-461f-42f5-8d0b-c089ff6c7753" t="r" /> -</Msa> -<Sense> -<objsur guid="dc00d67a-ea89-4d8e-a1ff-33d88111a258" t="r" /> -</Sense> -</rt> -<rt class="MoStemAllomorph" guid="fba78d54-4faa-4885-acb9-3fc7995bedf7" ownerguid="b6160092-9070-4549-af63-b6e2b52c06ec"> -<Form> -<AUni ws="qvm-x-ach">kïlus</AUni> -<AUni ws="qvm-x-acl">kïlus</AUni> -<AUni ws="qvm-x-akh">kïlus</AUni> -<AUni ws="qvm-x-akl">kïlus</AUni> -<AUni ws="qvm-x-ame">kïlus</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="fba8dbfb-39c1-474a-96a6-d11e6023f409" ownerguid="7988974c-99fd-40dd-9b5e-2d81ec603ddc"> -<ExampleWords> -<AUni ws="en">desert, wasteland, oasis</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to land where very few plants grow?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="fbaa9a3f-28f3-4c97-98da-0688c6085bc9" ownerguid="4a87fd34-c204-4b94-a5cb-2b213d1f5d0a"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">SNG 5.10 Cuyaynë mözoga triwëñula y camaraglami caycan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="fbabc490-b39f-40ea-abcd-012d5092af4a" ownerguid="d55192bb-7d8a-4535-a1ca-5f48b707a814"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">guard</AUni> -<AUni ws="es">cuidar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ba8af5d2-4037-4fa9-af9b-dc4cdde18ddf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="fbacf4d9-6603-49ff-9cbb-4e5bc203e5ed"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pri:ma</AUni> -<AUni ws="qvm-x-acl">pri:ma</AUni> -<AUni ws="qvm-x-akh">pri:ma</AUni> -<AUni ws="qvm-x-akl">pri:ma</AUni> -<AUni ws="qvm-x-ame">pri:ma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+prima</AUni> -<AUni ws="qvm-x-acl">+prima</AUni> -<AUni ws="qvm-x-akh">+prima</AUni> -<AUni ws="qvm-x-akl">+prima</AUni> -<AUni ws="qvm-x-ame">+prima</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.921" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="28d7f703-b172-4b91-be7b-0cfd89458030" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+prima</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="3a1c0164-d08e-4e96-97b3-d05b6b0ad410" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="dc2b58e0-3d0a-4d5c-b423-45e33c3b0be4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +prima 
\entryTyp root 
\gENG cousin 
\gSPN prima 
\e +prima 
\c N0 
\ach pri:ma 
\akh pri:ma 
\acl pri:ma 
\akl pri:ma 
\ame pri:ma</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="fbad07fe-97e8-41de-90b9-4352f2a97857" ownerguid="f5cde8b9-571a-448a-b7d0-6aa6259dd481" /> -<rt class="CmDomainQ" guid="fbafff36-9702-4215-b7c8-e9830735917b" ownerguid="31426c31-9439-406c-9867-bc98c6ca0565"> -<ExampleWords> -<AUni ws="en">sugarcane, press, juice, pulp, boil, sugar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to growing sugarcane?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="fbb1bcda-d912-4840-8028-8e348e1616d7" ownerguid="6e240b2c-56a6-4f86-878d-b4d39954184d"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">witsa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">witsa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">witsa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">witsa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">witsa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="d2b9d482-6e3b-4b4e-8993-0466b57f79b5" t="r" /> -</Morph> -<Msa> -<objsur guid="a459cdbc-485c-4d4a-baf9-64b148a1346e" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="fbb1c8b2-280e-4cdf-999e-7c2126acb013" ownerguid="5446b5cf-f05a-4bb2-89eb-ce63e27040f3"> -<ExampleWords> -<AUni ws="en">scale, tune, melody, melodic, harmony, chord, pitch, soft, pianissimo, loud, forte, crescendo, rhythm, rhythmic, beat, time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe the sounds of music?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fbb30e49-1e83-4ca0-91fa-55be49e8f227" ownerguid="1a8322d7-cda9-41e5-a14b-f41274cb7157"> -<ExampleWords> -<AUni ws="en">left</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the left side?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fbb359f2-a588-4f82-9488-08f016a4124e" ownerguid="e09e5712-8837-4587-b766-483eee947e15"> -<Form> -<AUni ws="qvm-x-ach">pësu</AUni> -<AUni ws="qvm-x-acl">pësu; pësu; pëso</AUni> -<AUni ws="qvm-x-akh">pësu</AUni> -<AUni ws="qvm-x-akl">pësu; pësu; pëso</AUni> -<AUni ws="qvm-x-ame">pësu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="fbb485e8-139e-4590-b732-96544ffb5c0d" ownerguid="793d3124-8b77-4ff0-82ec-09a3a9d8d865"> -<ExampleWords> -<AUni ws="en">unfair, unjust, wrongful</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to whether someone deserves something?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="fbb5f9cc-5066-4742-9ef7-1758b8c12cc8" ownerguid="82aabdc6-ccee-4559-9a75-d2d11adab21e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">red</AUni> -<AUni ws="es">rojo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="11d80cbb-53f2-4e1f-b6a4-e3c044229476" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="fbbb6db7-ec5f-4c97-a8dc-3d617de55c32" ownerguid="441f9368-35e9-496a-b4f4-e475db4f5d38"> -<Form> -<AUni ws="qvm-x-ach">censu; censo</AUni> -<AUni ws="qvm-x-acl">censu; censu; censo</AUni> -<AUni ws="qvm-x-akh">censu; censo</AUni> -<AUni ws="qvm-x-akl">censu; censu; censo</AUni> -<AUni ws="qvm-x-ame">censu; censo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="fbbf2903-3dc1-4cdf-8dd4-3802951338bc" ownerguid="8c9f539c-a2a5-4408-af33-8f8d44b99993" /> -<rt class="LexEntry" guid="fbc0960d-67cd-474f-bb01-3c189f6335f0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">estatu:tu</AUni> -<AUni ws="qvm-x-acl">estatu:tu; estatu:tu; estatu:to</AUni> -<AUni ws="qvm-x-akh">estatu:tu</AUni> -<AUni ws="qvm-x-akl">estatu:tu; estatu:tu; estatu:to</AUni> -<AUni ws="qvm-x-ame">estatu:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+estatuto</AUni> -<AUni ws="qvm-x-acl">+estatuto</AUni> -<AUni ws="qvm-x-akh">+estatuto</AUni> -<AUni ws="qvm-x-akl">+estatuto</AUni> -<AUni ws="qvm-x-ame">+estatuto</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.508" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a7466543-1c88-493b-bdfa-f737d82c1e1f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+estatuto</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dee4ee20-8c59-47cb-a986-7e2471365c36" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cc57da69-59e0-4e86-bbfc-160460ec9221" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +estatuto 
\entryTyp root 
\gENG 
\gSPN 
\e +estatuto 
\c N0 
\ach estatu:tu 
\akh estatu:tu 
\acl estatu:tu / _# 
\acl estatu:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl estatu:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl estatu:tu / _# 
\akl estatu:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl estatu:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame estatu:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="fbc6cecc-0d5d-4c44-a656-1d9cc1ea42fa" ownerguid="f33bae47-56e7-403f-9e82-aedda45d5c2e"> -<Form> -<AUni ws="qvm-x-ach">cashpi</AUni> -<AUni ws="qvm-x-acl">cashpi; cashpi; cashpe</AUni> -<AUni ws="qvm-x-akh">kashpi</AUni> -<AUni ws="qvm-x-akl">kashpi; kashpi; kashpe</AUni> -<AUni ws="qvm-x-ame">kashpi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="fbc81014-4ae6-42e7-a52b-a6985e8808ae" ownerguid="73b58acf-e488-4618-8773-806a170d4e9d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">conversation</AUni> -<AUni ws="es">conversación</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="387a9500-a9d5-43a7-9f26-a9ed47815515" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="fbc9c7c9-f6df-478c-86ae-d96ae0ef8021"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gueshpi</AUni> -<AUni ws="qvm-x-acl">gueshpi; gueshpe</AUni> -<AUni ws="qvm-x-akh">qeshpi</AUni> -<AUni ws="qvm-x-akl">qeshpi; qeshpe</AUni> -<AUni ws="qvm-x-ame">qishpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qishpi.v</AUni> -<AUni ws="qvm-x-acl">*qishpi.v</AUni> -<AUni ws="qvm-x-akh">*qishpi.v</AUni> -<AUni ws="qvm-x-akl">*qishpi.v</AUni> -<AUni ws="qvm-x-ame">*qishpi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.206" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="764d968c-ca04-4403-bf62-36a776d73ac6" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qishpi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="136bcd61-c5da-464f-8c9a-81f6f992504e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d56a5d54-9e54-49a6-9473-da133f47c02a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qishpi.v 
\entryTyp root 
\gENG escape 
\gSPN escaparse 
\e *qishpi.v 
\c V2 
\mp +FinalI 
\ach gueshpi 
\akh qeshpi 
\acl gueshpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gueshpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qeshpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qeshpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame qishpi 
\i modismo: Runtu tamyapita geshpeg caglami trïgö wayushga. 
\i Wamräcuna geshpircushganami. 
\i Wamräcunata geshpircatsishcänami. 
\i Tsurëpis geshpipacushganami.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="fbcc08a9-a02d-47cf-a578-02e615cd0d53" ownerguid="23911ccd-4561-4775-8754-b89af31e24aa"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 17.7 Tsay partipa jutinta churapargan Masah\f + 17.7 Masahga pruebag ninanmi.\f* jutin cananpag y Meriba\f + 17.7 Meribaga reclamay ninanmi.\f* jutin cananpagpis.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="fbcedfec-d5f1-42bf-ba82-86419d27e001" ownerguid="afa77a2a-8b0f-4a39-91bc-040e90ffbb3a"> -<ExampleWords> -<AUni ws="en">delight, joy, happy ending</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words refer to something that causes someone to feel happy?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="fbcef679-9021-4530-9797-1c6d2d92d0cd" ownerguid="6a0efdb4-785f-45d1-94d1-1da42723b28f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="fbcfd1a3-b1f3-4e35-a413-43038de002c5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">culu</AUni> -<AUni ws="qvm-x-acl">culu; culu; culo</AUni> -<AUni ws="qvm-x-akh">kulu</AUni> -<AUni ws="qvm-x-akl">kulu; kulu; kulo</AUni> -<AUni ws="qvm-x-ame">kulu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kullu</AUni> -<AUni ws="qvm-x-acl">*kullu</AUni> -<AUni ws="qvm-x-akh">*kullu</AUni> -<AUni ws="qvm-x-akl">*kullu</AUni> -<AUni ws="qvm-x-ame">*kullu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.3" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="505e677e-7fae-4ba5-82f9-aec50fef2200" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kullu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2a3cc80b-f4bd-43f6-a20c-eaed80723653" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="de580a2b-4703-406b-b0b4-1108ff0021d7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kullu 
\entryTyp root 
\gENG trunk 
\gSPN tronco 
\e *kullu 
\c N0 
\ach culu 
\akh kulu 
\acl culu / _# 
\acl culu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl culo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl kulu / _# 
\akl kulu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl kulo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame kulu</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiAnalysis" guid="fbd0e618-7c83-4afb-8800-0effa3a16a9b" ownerguid="0d211fd3-a44f-4b88-8572-9fa86ecad500"> -<Evaluations> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="714a6254-0f1e-4bf6-b46c-42934d2c731c" t="o" /> -<objsur guid="ea4b316e-d0af-42b7-9f43-0e48ea67d17e" t="o" /> -<objsur guid="8ae19846-78de-4783-b225-b42f6189f136" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="fbd564c4-4cb4-4360-bf66-baaa725a70fe"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wagta</AUni> -<AUni ws="qvm-x-acl">wagta</AUni> -<AUni ws="qvm-x-akh">waqta</AUni> -<AUni ws="qvm-x-akl">waqta</AUni> -<AUni ws="qvm-x-ame">waqta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waqta</AUni> -<AUni ws="qvm-x-acl">*waqta</AUni> -<AUni ws="qvm-x-akh">*waqta</AUni> -<AUni ws="qvm-x-akl">*waqta</AUni> -<AUni ws="qvm-x-ame">*waqta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.513" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f97eae9e-2a8f-4ee5-86a0-173f20acb354" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waqta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6fc0417c-ad9c-4e98-b79c-b5324e445cad" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d7f01bbd-09ae-4932-a637-221169892209" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waqta 
\entryTyp root 
\gENG back 
\gSPN espalda 
\e *waqta 
\c N0 
\ach wagta 
\akh waqta 
\acl wagta 
\akl waqta 
\ame waqta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="fbd7beb9-3ad1-449e-9d00-17b17d81e391" ownerguid="4e780ffd-89c9-4ed3-af01-97633f15706f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="7bce5dda-fa9a-41b9-9a4b-54667d01b7b3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="fbd7f989-f155-4a9c-9573-24146b38e522"> -<Analyses> -<objsur guid="1f12f59b-d3b2-40cc-ac06-70229e3883d0" t="o" /> -</Analyses> -<Checksum val="978586281" /> -<Form> -<AUni ws="qvm-x-akh">lëwanömi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="fbda9047-4d8e-472f-8451-a57c60df3cb9" ownerguid="fadc0a78-523b-4977-a78a-aecf75c90c5e"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="fbdb4bf9-3b4b-4191-8602-00e2b672ad90" ownerguid="0f18160f-4978-4952-9871-915195f9c695"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 11.3 Yaga runacuna cay pasacho munayashganta ruraptinmi alita rurag runa carpis justicia rurayta camäpacunsu.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="fbdbc655-b4ca-4040-b94c-41e7cdefe749" ownerguid="b0905fa9-2f90-410b-8eb5-7c7944c4f0f9"> -<ExampleWords> -<AUni ws="en">affair, relationship, be together, romance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to an ongoing relationship outside of marriage?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fbe24331-e8c8-43de-8b17-d7c1fc6f6c8c" ownerguid="8c41d2d1-6da6-4ab8-8b29-7e226192d64e"> -<ExampleWords> -<AUni ws="en">give blood, blood transfusion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to giving blood to someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fbe2aafa-7c23-4fcc-9cc8-72f6cf7fdade" ownerguid="7678a0e6-fc24-4695-b9d7-196c8f74c3c1"> -<Form> -<AUni ws="qvm-x-ach">ternu; terno</AUni> -<AUni ws="qvm-x-acl">ternu; ternu; terno</AUni> -<AUni ws="qvm-x-akh">ternu; terno</AUni> -<AUni ws="qvm-x-akl">ternu; ternu; terno</AUni> -<AUni ws="qvm-x-ame">ternu; terno</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="fbe2f1eb-6570-4c91-9159-4bce6d87ac09" ownerguid="5627904e-59c7-4dd5-aeb5-c6fe0c0a0571"> -<ExampleWords> -<AUni ws="en">frugal, thrifty, careful with your money, economical</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to not wanting to spend money?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="fbe42b59-55e8-4ede-a2a9-40a170b75f8f" ownerguid="d93aaf42-09e2-4d80-b7c7-3ad03993f210"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">patio</AUni> -<AUni ws="es">patio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e6783c90-bbbb-4bc1-8d48-852abaff1fd5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="fbe55ac6-7f80-4f5f-ae49-438900095620"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ma:yu</AUni> -<AUni ws="qvm-x-acl">ma:yu; ma:yu; ma:yo</AUni> -<AUni ws="qvm-x-akh">ma:yu</AUni> -<AUni ws="qvm-x-akl">ma:yu; ma:yu; ma:yo</AUni> -<AUni ws="qvm-x-ame">ma:yu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+mayo</AUni> -<AUni ws="qvm-x-acl">+mayo</AUni> -<AUni ws="qvm-x-akh">+mayo</AUni> -<AUni ws="qvm-x-akl">+mayo</AUni> -<AUni ws="qvm-x-ame">+mayo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.376" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fef937ef-e290-4cf6-a5c1-384bec691864" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+mayo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9e3fb8cb-7475-455b-a887-ba979c737750" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="021ab3f5-19a3-4c89-97cf-2faf444f9682" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +mayo 
\entryTyp root 
\gENG May 
\gSPN mayo 
\e +mayo 
\c N0 
\ach ma:yu 
\akh ma:yu 
\acl ma:yu / _# 
\acl ma:yu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ma:yo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ma:yu / _# 
\akl ma:yu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ma:yo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ma:yu 
\mcc +mayo / ~_ PLUR 
\mcc +mayo / ~_ GEN</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fbe7d35e-8871-49a5-98a2-580046c42dd9" ownerguid="be2f2785-7219-4a35-b8d3-aa56b9b78514"> -<ExampleWords> -<AUni ws="en">meeting point, focal point, focus, confluence</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the place where things come together?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fbe811ce-282f-48ab-8037-2c1dada77609" ownerguid="9d6cbe74-93d6-41fb-b7e2-cc30adb28187"> -<ExampleWords> -<AUni ws="en">climb over</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to climbing over something?</AUni> -</Question> -</rt> -<rt class="MoInflAffMsa" guid="fbe83c41-5659-42d6-8470-31ed33d103c2" ownerguid="008cecc8-8fcc-439a-88eb-d8bd404d5da9"> -<PartOfSpeech> -<objsur guid="85ffb381-0567-4202-8640-53cbaec77e45" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="769c8d34-7ae5-450b-9e9b-f62d75e5f18a" t="r" /> -</Slots> -</rt> -<rt class="LexEntry" guid="fbe87bb5-f2d1-4e5b-9b9f-5151c88ed3ec"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsurag</AUni> -<AUni ws="qvm-x-acl">tsurag</AUni> -<AUni ws="qvm-x-akh">tsuraq</AUni> -<AUni ws="qvm-x-akl">tsuraq</AUni> -<AUni ws="qvm-x-ame">tsuraq</AUni> -</Custom> -<DateCreated val="2022-9-23 18:26:20.508" /> -<DateModified val="2022-10-15 16:14:3.765" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cf33a2dd-5fee-4a2f-9449-0844825a04bb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">DUB1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4b57b933-e619-41d1-b731-b85722e2a8ff" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8f60f513-ff41-4dda-9636-e747e0e7b65f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx DUB1 
\entryTyp suffix 
\gENG DUB 
\gSPN DUBIT 
\e DUB1 
\c N0/N0 R0/R0 V0/V0 ONSHEV/ONSHEV BN/BN 
\o 220 
\mp +FinalC 
\ach tsurag 
\akh tsuraq 
\acl tsurag 
\akl tsuraq 
\ame tsuraq</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="fbeda0cb-8d80-4fee-8f58-d54590880e8e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cayjina</AUni> -<AUni ws="qvm-x-acl">cayjina</AUni> -<AUni ws="qvm-x-akh">kayjina</AUni> -<AUni ws="qvm-x-akl">kayjina</AUni> -<AUni ws="qvm-x-ame">kayhina</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kayjina</AUni> -<AUni ws="qvm-x-acl">*kayjina</AUni> -<AUni ws="qvm-x-akh">*kayjina</AUni> -<AUni ws="qvm-x-akl">*kayjina</AUni> -<AUni ws="qvm-x-ame">*kayjina</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.981" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="62ccf5d2-88f6-4835-9b8c-8381f0af2d9c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kayjina</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="53df5164-b0d0-462e-8f9c-66584976040e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="57709a78-c613-4f14-a4ed-a197eb48af7c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kayjina 
\entryTyp root 
\gENG too.much 
\gSPN demasiado 
\e *kayjina 
\c ONSHEV 
\ach cayjina 
\akh kayjina 
\acl cayjina 
\akl kayjina 
\ame kayhina</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fbf3ad02-08e9-4b7e-a395-b2b069c68e0d" ownerguid="b6a40216-fe93-4b0f-b85b-5622327031d0"> -<ExampleWords> -<AUni ws="en">bird egg, reptile egg, insect egg</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What types of eggs are there?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="fbf40f2e-e743-479d-80b2-63325407d5d1" ownerguid="f02ae505-d6b7-4b30-9d97-8505d0d1a0c7"> -<Abbreviation> -<AUni ws="en">9.6.3.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.720" /> -<DateModified val="2022-9-23 16:55:8.720" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that begin a clause that identifies a specific case or example of what has just been said, or that explains what has just been said. Specific case: I have just mentioned a general class of things or a general idea and want to give a specific example of what I am talking about. Explanation: I have just said something and I think people might misunderstand, so I want to explain what I mean. Digression: I am talking about a particular topic, but want to say something that does not fit into my topic, so I say something that is about a different topic.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>91E Markers of Identificational and Explanatory Clauses</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Markers of identificational and explanatory clauses</AUni> -</Name> -<Questions> -<objsur guid="7b2c8914-faa2-4075-a90f-da402fcfd781" t="o" /> -<objsur guid="1285fbe0-edcb-4e19-aa7a-5fe771830c42" t="o" /> -<objsur guid="58080319-9e72-4758-adb7-fae281fcc091" t="o" /> -<objsur guid="83a80112-2817-4982-a80e-f75307013c12" t="o" /> -<objsur guid="f0d3a423-d692-4c82-9ad6-57839f464066" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="fbf7faf7-323b-41cc-ab45-1e58f3a30a6a" ownerguid="e2dac1f7-8868-49b4-b849-2f5e6f942e34"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="ad47f738-08b2-474a-85ea-9d3c431d48ff" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">religious</AUni> -<AUni ws="es">religiosa</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="48c70236-559f-4a30-a8ed-58c5d6c143be" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="fbf9a5c7-4edd-4865-8ca3-ff63b2253b51" ownerguid="cfb159f7-82f6-4789-b9b4-8f611820f350"> -<ExampleWords> -<AUni ws="en">black widow, brown recluse, tarantula, wolf spider, scorpion, tick, mite</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What species of spiders are there?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="fbfb11f6-a58c-4ef1-9bf9-dd4c439447c5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">llachqui</AUni> -<AUni ws="qvm-x-acl">llachqui; llachqui; llachque</AUni> -<AUni ws="qvm-x-akh">llachki</AUni> -<AUni ws="qvm-x-akl">llachki; llachki; llachke</AUni> -<AUni ws="qvm-x-ame">llachki</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llatrki</AUni> -<AUni ws="qvm-x-acl">*llatrki</AUni> -<AUni ws="qvm-x-akh">*llatrki</AUni> -<AUni ws="qvm-x-akl">*llatrki</AUni> -<AUni ws="qvm-x-ame">*llatrki</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.174" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5f35cfbc-7a52-4147-944a-b168ddffd549" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llatrki</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a31b19c5-c713-48c0-b554-df1c35c8d500" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c21f0e03-fa31-4688-afdb-35ffb1c721e0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llatrki 
\entryTyp root 
\gENG sandals 
\gSPN sand lia 
\e *llatrki 
\c N0 
\mp +FinalI 
\ach llachqui 
\akh llachki 
\acl llachqui / _# 
\acl llachqui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl llachque +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl llachki / _# 
\akl llachki +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl llachke +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame llachki</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fbfb457e-1d1c-4b4e-883d-a624af9ba016" ownerguid="4b3a9b5a-df7d-4ec2-9576-2c07fe396021"> -<ExampleWords> -<AUni ws="en">dance hall, dance floor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) Where are dances held?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="fbfbe52b-34c0-4c64-95e5-eedc3008966f" ownerguid="44a9052c-c3a2-491b-ac0f-a5795901eafe"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">glory</AUni> -<AUni ws="es">gloria</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ad3da97f-f128-42b7-8738-e28e289bc1d3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="fbfcdae2-dd76-4bd7-93b2-8fdb495113ea"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">la:ta</AUni> -<AUni ws="qvm-x-acl">la:ta</AUni> -<AUni ws="qvm-x-akh">la:ta</AUni> -<AUni ws="qvm-x-akl">la:ta</AUni> -<AUni ws="qvm-x-ame">la:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*la:ta.v</AUni> -<AUni ws="qvm-x-acl">*la:ta.v</AUni> -<AUni ws="qvm-x-akh">*la:ta.v</AUni> -<AUni ws="qvm-x-akl">*la:ta.v</AUni> -<AUni ws="qvm-x-ame">*la:ta.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.528" /> -<DateModified val="2022-10-15 13:25:58.902" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ba95b940-5b1a-427b-a314-5d62b8559bad" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">la:ta.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="83f2a039-af33-42f4-81a4-cdac5f314a32" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5ae4d5e8-0ee8-4a91-9866-e855f90bfef6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx la:ta.v 
\entryTyp root 
\gENG 
\gSPN 
\e *la:ta 
\c V1 
\ach la:ta 
\akh la:ta 
\acl la:ta 
\akl la:ta 
\ame la:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="fbfe5dc7-88b8-4eb4-983a-85768a6a8d5b" ownerguid="2049d587-5ba1-420d-ad86-d9ada997e069"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">take.out</AUni> -<AUni ws="es">sacar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7899d4e0-16b1-41d2-af08-95aaa5c5bd5a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoAffixAllomorph" guid="fc004e24-beda-4811-8754-1096429c35bb" ownerguid="a9c20a59-9f8d-4543-8717-0774299aedc4"> -<Form> -<AUni ws="qvm-x-acl">yco</AUni> -<AUni ws="qvm-x-akl">yko</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="fc0afb69-a4d4-439a-91cd-ed0ce67677b5" ownerguid="1fda68d4-5941-4695-b656-090d603a3344"> -<Abbreviation> -<AUni ws="en">5.2.1.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.306" /> -<DateModified val="2022-9-23 16:55:8.306" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to various ways of cooking food. It is necessary to think through different kinds of food and how they are cooked. An example is given below for cooking eggs.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Cooking methods</AUni> -</Name> -<Questions> -<objsur guid="bff4fbda-49bc-4699-aec0-25b67011c689" t="o" /> -<objsur guid="daa4f6d9-6e9b-41c2-a25c-c56cac7da633" t="o" /> -<objsur guid="a5a6021b-6c09-467a-ab5a-08400588f9e8" t="o" /> -<objsur guid="e6876a35-244c-474e-b8a5-be830e7ed5c3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="fc0c7d6d-f7b8-477e-b45e-a74be31e120c" ownerguid="9abbe345-97ed-46ce-98a2-42243d9c3033"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="f6ce7a3b-1081-4f9e-8633-315cc3e2e15f" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">mouth</AUni> -<AUni ws="es">boca</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="7f26c16a-be5e-439d-82a8-d5748adabc6a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="fc0ca4c2-de06-44dc-afad-ca21582d5dfc" ownerguid="8e11dd10-459b-4fb3-b876-7d80ec5f8a4d"> -<ExampleWords> -<AUni ws="en">behavior, antics, conduct, character, manner, demeanor, characteristic, air, bearing, behavior, carriage, comportment, course, custom, dealing, deportment, doings, etiquette, existence, life, manners, mien, trait, way of life, the way someone acts</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the way a person behaves?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="fc0cefbc-0724-4354-9e48-ccfece9d7a30" ownerguid="c99e81a5-3a4f-4e0c-802f-985c5188243c"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="fc1055c6-7840-4067-8881-4cb4fca2bade" ownerguid="3ed43ff0-25b5-49e3-998d-8404b1b1febc"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="fc170f70-520e-4f3e-b8b8-98e4b898fd24" ownerguid="91913920-8a6a-4ba0-9361-d6cc9e1f3639"> -<Abbreviation> -<AUni ws="en">8.6.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.678" /> -<DateModified val="2022-9-23 16:55:8.678" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the edge of something--the part of something where two sides come together.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Edge</AUni> -</Name> -<Questions> -<objsur guid="94007282-357a-485e-8b6f-b77c80a2eac8" t="o" /> -<objsur guid="13a9a25b-6b78-4d45-b51f-57e76b2ed7b2" t="o" /> -<objsur guid="b8a09962-d51b-4121-9144-31a95359adbf" t="o" /> -<objsur guid="0f780c3b-cb34-4634-9b4a-80ee3d8837f4" t="o" /> -<objsur guid="85e96c53-f935-419d-8744-7fafc7b71bf0" t="o" /> -<objsur guid="90779754-0c36-4d7e-b86f-583bcc650f9d" t="o" /> -<objsur guid="b6ce959d-53e5-489b-b04b-97ff41d03525" t="o" /> -<objsur guid="19c6d424-cc8b-4bbb-ad4f-314a0e727e92" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="fc18a25a-3527-4810-a9de-a01cdc61792c" ownerguid="ec0846d0-9424-4aa2-96b7-e3ea446be8ae"> -<Form> -<AUni ws="qvm-x-ach">tsacay</AUni> -<AUni ws="qvm-x-acl">tsacay</AUni> -<AUni ws="qvm-x-akh">tsakay</AUni> -<AUni ws="qvm-x-akl">tsakay</AUni> -<AUni ws="qvm-x-ame">tsakay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="fc193988-26ca-49e9-849a-b12456d98792" ownerguid="721e2ee8-7ea5-4d17-94cc-d77d8e92bd27"> -<Abbreviation> -<AUni ws="en">4.3.7.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.235" /> -<DateModified val="2022-9-23 16:55:8.235" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to being crazy--to act stupid or strange.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Crazy</AUni> -</Name> -<Questions> -<objsur guid="278fd359-901a-40c2-adfe-dc4a27af3c50" t="o" /> -<objsur guid="7591b1a9-d4b9-44b5-9cd8-87d22efa6bc0" t="o" /> -<objsur guid="bfbbb294-a4a2-42a2-9a68-d1375f645524" t="o" /> -<objsur guid="ce45428b-71c5-45f6-bee1-10ea13e5985a" t="o" /> -<objsur guid="3ec9a829-56bc-42c4-8ab4-71a650d0b025" t="o" /> -<objsur guid="a06c0727-3da8-4a07-b6d0-371db015e29d" t="o" /> -<objsur guid="8cb91f90-82dd-4d4d-a1ec-af0ce49e479b" t="o" /> -<objsur guid="54d42a1f-442f-41c9-8641-34b2246068ec" t="o" /> -<objsur guid="7728b34e-8a2d-4a1b-8e2a-4cc329a33f76" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="1f3519f8-d946-4857-a1fd-553d98dddf6d" t="r" /> -<objsur guid="3ea52505-aa6c-4f28-b475-f15ac1820ec1" t="r" /> -<objsur guid="a01a1900-fc1f-462e-ba3d-ae822711b034" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="fc1d35ed-c12d-4cbf-b8a3-7570d38d78ab" ownerguid="5c9f1fed-2e6d-4ad2-b804-9d3f09a277d3"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Tsay junag mana ayunag cäga pï carpis Israel runacunapita gargushgami canga. (Chavinillo)</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="fc1e4ea7-15fa-4bbf-8697-f312762504ba" ownerguid="6b8366b9-b5e8-42b8-991c-c568d4442a81"> -<Abbreviation> -<AUni ws="en">5.4.3.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.327" /> -<DateModified val="2022-9-23 16:55:8.327" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to combing your hair.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Comb hair</AUni> -</Name> -<Questions> -<objsur guid="1f470830-1043-4737-9a91-1757481e1392" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoAffixAllomorph" guid="fc1f0877-b743-4df5-a5a8-46cbb5d422b9" ownerguid="f711d703-1eac-4059-b0da-24d34bd8df5e"> -<Form> -<AUni ws="qvm-x-ach">nö</AUni> -<AUni ws="qvm-x-acl">nö</AUni> -<AUni ws="qvm-x-akh">nö</AUni> -<AUni ws="qvm-x-akl">nö</AUni> -<AUni ws="qvm-x-ame">naw</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="4d5106b0-9756-4fc2-a2e3-b3bb0373fd9b" t="r" /> -</PhoneEnv> -</rt> -<rt class="MoStemAllomorph" guid="fc2552ac-c73b-4b6a-8fc7-4abbd4c50e34" ownerguid="938bbb33-be76-412f-bd2f-ca94ca1500fb"> -<Form> -<AUni ws="qvm-x-ach">cartón; carton</AUni> -<AUni ws="qvm-x-acl">cartón; carton</AUni> -<AUni ws="qvm-x-akh">cartón; carton</AUni> -<AUni ws="qvm-x-akl">cartón; carton</AUni> -<AUni ws="qvm-x-ame">cartón; carton</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="fc26524a-dd66-4c00-98ab-4df844ca0b9b" ownerguid="a1313d01-3861-4215-99ee-1a5311bc4b32"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="fc27c166-2481-4d66-8dcb-b6af9c8de391" ownerguid="e02e7419-3e92-4a91-931a-9a02be601ad3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="fc2e4b51-6086-4f7b-afbd-1d724c498e36" ownerguid="29b970d1-2e6f-453f-bacc-b6f12ae5bed7"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="fc2f7a29-afef-431a-b3f5-d176a58fb929" ownerguid="d7740902-abdb-495f-9ea5-9b0a031144d3"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="WfiMorphBundle" guid="fc3589dd-38ae-41a5-9e92-3e830139de05" ownerguid="77882bc5-c87d-44ad-985b-0a15ef40f13f"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ni</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ni</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ni; ne</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ni</Run> -</AStr> -</Form> -<Morph> -<objsur guid="06373a86-4028-42d6-8365-dfeb89992f6b" t="r" /> -</Morph> -<Msa> -<objsur guid="7c64cf47-982b-4185-8058-a7f2b7c552bb" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="fc359d0b-f567-42de-83b0-5bbee020375e" ownerguid="e53d61f7-bdba-4667-a456-09021eca02a7"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="5a7143dd-ee64-44ff-a5ac-e0513bc612e2" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="5a3e8b34-c7e7-4267-95df-8fa92428b6ce" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="fc3815b0-9055-45f7-84ca-dc0fcb938486" ownerguid="42be1634-72ca-4a20-80a1-ba726e5cd1d2"> -<ExampleWords> -<AUni ws="en">chop</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to cutting something with a swinging motion?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="fc3bec91-0d75-4951-880d-ba139fa7d063" ownerguid="5b4b7618-83ad-4adb-88bf-d6580c9de3be"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="fc3e74ac-587b-4abd-bfec-bdbf7b494598" ownerguid="321cf755-4f45-4291-a288-b84a4ff6650f"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="fc3fdc1c-709a-4711-8003-1229db74a509" ownerguid="d3d880cc-6e10-4afa-930e-73c62f5daf61"> -<Form> -<AUni ws="qvm-x-ach">mircapa</AUni> -<AUni ws="qvm-x-acl">mircapa</AUni> -<AUni ws="qvm-x-akh">mirkapa</AUni> -<AUni ws="qvm-x-akl">mirkapa</AUni> -<AUni ws="qvm-x-ame">mirkapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="fc415557-4e6c-4864-8fd4-e3049af48379" ownerguid="a3f1d702-8ca1-457a-a569-eb6fdf696bbe"> -<ExampleWords> -<AUni ws="en">approve, meet with someone's approval, agree with, believe in, condone, endorse, be for, be in favor of, okay (v), give it your okay, pass, sanction, subscribe, sustain, think something is right, uphold, value (v), think something is right</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to approving of something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="fc41b0e3-a152-4c00-aeb0-2d848cd8862f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cote:ju</AUni> -<AUni ws="qvm-x-acl">cote:ju; cote:ju; cote:jo</AUni> -<AUni ws="qvm-x-akh">cote:ju</AUni> -<AUni ws="qvm-x-akl">cote:ju; cote:ju; cote:jo</AUni> -<AUni ws="qvm-x-ame">cote:ju</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+cotejo</AUni> -<AUni ws="qvm-x-acl">+cotejo</AUni> -<AUni ws="qvm-x-akh">+cotejo</AUni> -<AUni ws="qvm-x-akl">+cotejo</AUni> -<AUni ws="qvm-x-ame">+cotejo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.208" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d55ee3a0-d342-4f9c-861a-bb135f18cb8a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+cotejo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ce4246f6-d65c-4482-a414-6003382dd33b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6c13a882-bd9e-4040-b5d3-65b990b7ac92" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +cotejo 
\entryTyp root 
\gENG same 
\gSPN iqual 
\e +cotejo 
\c N0 
\ach cote:ju 
\akh cote:ju 
\acl cote:ju / _# 
\acl cote:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl cote:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl cote:ju / _# 
\akl cote:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl cote:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame cote:ju</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fc423853-ec2e-4c06-8039-5daefdae7166" ownerguid="f4b77866-c607-43f0-b816-95459c269525"> -<ExampleWords> -<AUni ws="en">foolish talk, foolishness, babble, balderdash, bilge, blather, chit-chat, drivel, folderol, gossipy, hooey, humbug, idle talk, joking, nonsense, prate, prattle, stupidity, twaddle</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to foolish talk?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="fc4253b4-2d55-44b2-8a72-7b7ecc26bf51"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">disciplina</AUni> -<AUni ws="qvm-x-acl">disciplina</AUni> -<AUni ws="qvm-x-akh">disciplina</AUni> -<AUni ws="qvm-x-akl">disciplina</AUni> -<AUni ws="qvm-x-ame">disciplina</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+disciplinar</AUni> -<AUni ws="qvm-x-acl">+disciplinar</AUni> -<AUni ws="qvm-x-akh">+disciplinar</AUni> -<AUni ws="qvm-x-akl">+disciplinar</AUni> -<AUni ws="qvm-x-ame">+disciplinar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.416" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7ba0256e-d801-46bc-9107-73e131a8eb1c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+disciplinar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b30d77fd-a9b3-4e0f-98fe-5880a3b1192e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9c544b4a-3280-4962-aa7a-95cfe1a08a98" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +disciplinar 
\entryTyp root 
\gENG discipline 
\gSPN disciplinar 
\e +disciplinar 
\c V2 
\ach disciplina 
\akh disciplina 
\acl disciplina 
\akl disciplina 
\ame disciplina</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fc49c061-13eb-4a9f-815c-626179234aea" ownerguid="a4fa9f98-73c6-4c3e-9dad-d73d2634be3b"> -<ExampleWords> -<AUni ws="en">verbal tradition, hand down a tradition</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to verbal tradition?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="fc4b68a0-31cd-4193-9490-0f488f34fcde" ownerguid="1d734a3a-ee91-4c3d-b801-a14defe684e9"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="c339b70e-606e-490f-bec8-00d4a124cf99" t="o" /> -<objsur guid="b43ee297-39d0-44bb-af4b-20d1235f7e47" t="o" /> -<objsur guid="9038c631-d01e-4cce-b0e4-752688f06407" t="o" /> -<objsur guid="d7f4e734-b9e8-4640-b99d-b90e0f977a0b" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="fc4fd1a1-6f36-42af-9355-9da21e1d4370" ownerguid="950625cc-d007-4bac-9bb4-ec2d9bbf8f4d"> -<Form> -<AUni ws="qvm-x-ach">cuenta</AUni> -<AUni ws="qvm-x-acl">cuenta</AUni> -<AUni ws="qvm-x-akh">cuenta</AUni> -<AUni ws="qvm-x-akl">cuenta</AUni> -<AUni ws="qvm-x-ame">cuenta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="fc52ad5d-3e2c-4a4f-b306-22e2fda650ea" ownerguid="a2240259-608b-40f1-990a-7f8e00ef1d07"> -<ExampleWords> -<AUni ws="en">spread, smear, brush, cover, dab, daub, paint, plaster, rub, slather, smear, smudge, swab</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to spreading something on another thing?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fc54957a-46ec-43f0-9800-33e931037d53" ownerguid="cfb159f7-82f6-4789-b9b4-8f611820f350"> -<ExampleWords> -<AUni ws="en">spider web, cobweb, web, spin, silk</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to spider webs?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="fc54a9d3-a717-47c2-a271-e57aceaf8529"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">cuya</AUni> -<AUni ws="qvm-x-acl">cuya</AUni> -<AUni ws="qvm-x-akh">kuya</AUni> -<AUni ws="qvm-x-akl">kuya</AUni> -<AUni ws="qvm-x-ame">kuya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*kuya</AUni> -<AUni ws="qvm-x-acl">*kuya</AUni> -<AUni ws="qvm-x-akh">*kuya</AUni> -<AUni ws="qvm-x-akl">*kuya</AUni> -<AUni ws="qvm-x-ame">*kuya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.33" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ed8e0c9a-5a44-4448-bc6b-1b766f141f5c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*kuya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6ee88865-51d6-40db-b9fa-4ba30a1cf4e7" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="24df2bfe-488a-4ded-bd96-e53332c28125" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *kuya 
\entryTyp root 
\gENG love 
\gSPN amar 
\e *kuya 
\c V2 
\ach cuya 
\akh kuya 
\acl cuya 
\akl kuya 
\ame kuya 
\mcc *kuya / ~_ BEN1 REF PRMT 
\mcc *kuya / ~ _ PLALL [q] 
\mcc *kuya / ~ _ [y] JUST2.C [pur] 
\mcc *kuya / ~_ BEN3</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="fc54f417-e803-4ead-969d-9af9582c5771" ownerguid="9e31b57d-e54b-49e0-b2d9-81938449f024"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="fc58244c-1c92-498b-a756-e0b9f52b909a" ownerguid="88a69e5d-91fd-43ce-9650-43b561a4eb63"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="fc59d6db-b10b-4d1b-9770-fce6d09f2306" ownerguid="aa30fd65-3da9-4370-8bad-c0a8d76f6b01"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">shade</AUni> -<AUni ws="es">sombra</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9a3caede-cd72-4b9f-8383-8dc826d5b0a1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="fc5a9e7e-fe1e-463f-95f6-56ade55f2a83" ownerguid="002f8a20-0dfd-4b7e-a22a-b5afeabae1eb"> -<Form> -<AUni ws="qvm-x-ach">perdona</AUni> -<AUni ws="qvm-x-acl">perdona</AUni> -<AUni ws="qvm-x-akh">perdona</AUni> -<AUni ws="qvm-x-akl">perdona</AUni> -<AUni ws="qvm-x-ame">perdona</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="fc5b6936-6cce-4c97-8dea-decb998b8d8f" ownerguid="bafcff46-fb61-4d1e-b08f-1ea0177d7902"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">palapa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">palapa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">palapa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">palapa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">palapa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="840695d3-988a-4447-9c45-9955e124cdcf" t="r" /> -</Morph> -<Msa> -<objsur guid="6cad88fd-22fa-4df1-a88e-c1e17ef684c1" t="r" /> -</Msa> -<Sense> -<objsur guid="888257fb-e89c-4647-b854-acf4778f43f4" t="r" /> -</Sense> -</rt> -<rt class="MoStemMsa" guid="fc69bcfe-568c-4b1c-b9fb-9d7b1b726bb1" ownerguid="07577951-6558-4c64-bafb-b0c6f4e28061"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="fc6ab346-13ae-4977-b095-dd53b2c7dbd5" ownerguid="e0e83cc9-b876-47f6-8e66-60c9c505b927"> -<ExampleWords> -<AUni ws="en">danger, threat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to danger?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fc6ac48a-8d80-4846-8742-cee319d67a65" ownerguid="9cfe4c5a-80d4-4b31-ba89-79b2e3d28a1c"> -<ExampleWords> -<AUni ws="en">knuckle, fingertip, fingerprint</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the parts of a finger or toe?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="fc6cd834-f4cf-4fdb-bfa0-1b46a625000c" ownerguid="ad56e8e3-c46b-4007-9823-7fa7a7a9d5ba"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">ONSHEV</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bone.dry</AUni> -<AUni ws="es">muy.seco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c92cf85d-6e2d-4550-a504-c5c71703ed79" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="fc6cd9f7-c2a6-4597-87eb-9e122fc4c9a9" ownerguid="7f1dfb68-bf07-472d-a481-b802d2591ca6"> -<ExampleWords> -<AUni ws="en">circumcise, circumcision</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to circumcision?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="fc6d1000-b760-4d53-8983-62c5d20e6a0d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">barcu; barco</AUni> -<AUni ws="qvm-x-acl">barcu; barcu; barco</AUni> -<AUni ws="qvm-x-akh">barcu; barco</AUni> -<AUni ws="qvm-x-akl">barcu; barcu; barco</AUni> -<AUni ws="qvm-x-ame">barcu; barco</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+barco</AUni> -<AUni ws="qvm-x-acl">+barco</AUni> -<AUni ws="qvm-x-akh">+barco</AUni> -<AUni ws="qvm-x-akl">+barco</AUni> -<AUni ws="qvm-x-ame">+barco</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.949" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1b3b65b6-920e-4766-bb93-793727a8f301" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+barco</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dd1e424f-aa21-4cc0-8c39-07241c4c4cb3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="596e7b23-3b98-4604-a8d5-373911f07deb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +barco 
\entryTyp root 
\gENG boat 
\gSPN barco 
\e +barco 
\c N0 
\ach barcu / ~_# 
\ach barco / _# 
\akh barcu / ~_# 
\akh barco / _# 
\acl barcu / ~_# 
\acl barcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl barco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl barcu / ~_# 
\akl barcu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl barco +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame barcu / ~_# 
\ame barco / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fc6d2846-cc8b-4561-bce2-edf4b41b166a" ownerguid="a8b9e892-df3e-44c4-8c68-7a0f7f4468bb"> -<ExampleWords> -<AUni ws="en">rodent</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to rodents?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fc720254-20d9-44b0-b5ab-001cdbc87e1b" ownerguid="2a2af155-9db9-41c5-860a-fe0a3a09d6de"> -<ExampleWords> -<AUni ws="en">ignore, try to forget, put out of your mind, empty your mind</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What words refer to trying not to think about something?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="fc749e89-9938-4e14-951c-31a922a7a572"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">simberwensa</AUni> -<AUni ws="qvm-x-acl">simberwensa</AUni> -<AUni ws="qvm-x-akh">simberwensa</AUni> -<AUni ws="qvm-x-akl">simberwensa</AUni> -<AUni ws="qvm-x-ame">simberwensa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sin+vergüenza</AUni> -<AUni ws="qvm-x-acl">+sin+vergüenza</AUni> -<AUni ws="qvm-x-akh">+sin+vergüenza</AUni> -<AUni ws="qvm-x-akl">+sin+vergüenza</AUni> -<AUni ws="qvm-x-ame">+sin+vergüenza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.683" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b68e9561-69c4-4934-b3d2-29fd319fb7c2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sin+vergüenza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ed2e2203-73f6-4ce9-8546-3ca2104dbc5b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="435349a6-81ef-4ebf-b606-9d8585fdbc52" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sin+vergüenza 
\entryTyp root 
\gENG shameless 
\gSPN 
\e +sin+vergüenza 
\c N0 
\ach simberwensa 
\akh simberwensa 
\acl simberwensa 
\akl simberwensa 
\ame simberwensa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="fc755af3-27c4-4d78-9ca1-6dc0a1dc0c48" ownerguid="6d0022b9-a000-43e4-8547-bc2aea1a17ec"> -<Form> -<AUni ws="qvm-x-ach">dirigi</AUni> -<AUni ws="qvm-x-acl">dirigi; dirige</AUni> -<AUni ws="qvm-x-akh">dirigi</AUni> -<AUni ws="qvm-x-akl">dirigi; dirige</AUni> -<AUni ws="qvm-x-ame">dirigi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="fc76e628-15fc-443d-b845-1142879da94a" ownerguid="f9d020d6-b129-4bb8-9509-3b4a6c27482e"> -<ExampleWords> -<AUni ws="en">be interested in, show interest, express interest, find something interesting, take an interest in, be curious about</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling interested in something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fc773736-d8b7-46c9-bb16-9d7eca63aafa" ownerguid="d4389d2b-9d2e-4bb0-af7f-faed9c771fa8"> -<Form> -<AUni ws="qvm-x-ach">chölu</AUni> -<AUni ws="qvm-x-acl">chölu; chölu; chölo</AUni> -<AUni ws="qvm-x-akh">chölu</AUni> -<AUni ws="qvm-x-akl">chölu; chölu; chölo</AUni> -<AUni ws="qvm-x-ame">chölu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="fc7785e9-8e85-42ee-8604-7444f28e344b" ownerguid="3acf5e20-b626-4f0a-a582-d386a0e30792"> -<Question> -<AUni ws="en">(2) What words are used to describe the actions done with these tools?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="fc779bb8-3216-4451-bf8f-f5ef08fff6d1" ownerguid="53636d8a-0c27-4b70-af40-b6311cabcd2d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="fc78e069-589e-4179-89a2-e316f0f91f3c" ownerguid="c159bc1a-aaf5-4615-9268-5121e0dfa419"> -<Form> -<AUni ws="qvm-x-ach">pula</AUni> -<AUni ws="qvm-x-acl">pula</AUni> -<AUni ws="qvm-x-akh">pula</AUni> -<AUni ws="qvm-x-akl">pula</AUni> -<AUni ws="qvm-x-ame">pula</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="fc79555a-5d7e-4b36-b031-af615760c286" ownerguid="1bd626c2-0c06-4697-a9ab-0a79acfeb152"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">indian</AUni> -<AUni ws="es">indio</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="2f6365b3-e63b-4b09-b3ad-af787773ff21" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="fc7b8082-9a3c-495d-ba40-4d0e625903ca" ownerguid="f595deab-1838-4ddb-9ebe-55fb3007b309"> -<ExampleWords> -<AUni ws="en">military</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words describe something belonging to the military?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fc7d27a2-3530-4b6f-9e10-f1a963abf1b9" ownerguid="bf15e14a-a265-4dff-a2b9-6f36db0f54c0"> -<Form> -<AUni ws="qvm-x-ach">uruy</AUni> -<AUni ws="qvm-x-acl">uruy</AUni> -<AUni ws="qvm-x-akh">uruy</AUni> -<AUni ws="qvm-x-akl">uruy</AUni> -<AUni ws="qvm-x-ame">uruy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="fc7e4918-61d3-4287-9a66-057e7ef25bf5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jana</AUni> -<AUni ws="qvm-x-acl">jana</AUni> -<AUni ws="qvm-x-akh">jana</AUni> -<AUni ws="qvm-x-akl">jana</AUni> -<AUni ws="qvm-x-ame">hana</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hana.n</AUni> -<AUni ws="qvm-x-acl">*hana.n</AUni> -<AUni ws="qvm-x-akh">*hana.n</AUni> -<AUni ws="qvm-x-akl">*hana.n</AUni> -<AUni ws="qvm-x-ame">*hana.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.660" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="82803d66-4465-4a79-97ef-233bd57e1682" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hana.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="51609f05-a73a-486d-81bc-b2adaea24367" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="a34a78e5-20af-4608-b8fb-a2975be3a5b9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hana.n 
\entryTyp root 
\gENG above 
\gSPN sobre 
\e *hana.n 
\c N0 
\ach jana 
\akh jana 
\acl jana 
\akl jana 
\ame hana</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="fc7f3a12-77a5-4273-adb2-da2cdaec18cd" ownerguid="7cffdb18-f3d9-4bd8-99fd-4215b98c5b94"> -<Form> -<AUni ws="qvm-x-ach">sëña</AUni> -<AUni ws="qvm-x-acl">sëña</AUni> -<AUni ws="qvm-x-akh">sëña</AUni> -<AUni ws="qvm-x-akl">sëña</AUni> -<AUni ws="qvm-x-ame">sëña</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="fc80b131-d1c1-4e42-9573-9f238627b162" ownerguid="f45a456e-8e23-4364-8842-047cc73f529b"> -<ExampleWords> -<AUni ws="en">make room, clear a space, make way, get out of the way</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to providing space for someone or something?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="fc82fcec-d03c-4fb0-bf62-714c71754402" ownerguid="444407f2-0c75-4bb9-a84c-cbd52d0fa9c9"> -<Abbreviation> -<AUni ws="en">2.6.4.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.79" /> -<DateModified val="2022-9-23 16:55:8.79" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to an adult.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Adult</AUni> -</Name> -<OcmCodes> -<Uni>885 Adulthood</Uni> -</OcmCodes> -<Questions> -<objsur guid="71064384-5495-4940-acaa-353c6a3fb44d" t="o" /> -<objsur guid="d00b53b4-6827-4f3a-83e5-6fbb10cba07f" t="o" /> -<objsur guid="f45c557f-f8a6-470d-adba-712934d36471" t="o" /> -<objsur guid="49b8a0b2-d595-4af4-882e-0f1a6e6c71b8" t="o" /> -<objsur guid="2d0b030b-05af-48de-ac2a-ada5c29fe31d" t="o" /> -<objsur guid="73ccf165-0cd2-4241-884c-924572992ba1" t="o" /> -<objsur guid="9011b6e1-20cc-4da0-b2a5-4bc40b5bf7b9" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="fc842ad1-1d03-457c-92e8-01d235e3f5ff" ownerguid="e328d0ff-260e-4a0a-82c7-af8f22917984"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">2CH 4.11 Tsaynogpis Hiramga rurargan mancacunata, palëtacunata y tazoncunata.</Run> -</AStr> -</Example> -</rt> -<rt class="LexSense" guid="fc8990fa-4b16-4c42-a604-2ca2f76d4f15" ownerguid="9f78c5f9-4700-43c3-8f06-ce023673dc01"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">AMONG</AUni> -<AUni ws="es">ENTRE</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="44290eac-98c5-4f10-84b2-20bacedcab79" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="fc8aaf2b-32d1-4ad2-a372-1db1e9ed4387"> -<Checksum val="713" /> -<Form> -<AUni ws="qvm-x-akh">liyinki</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="fc8d8275-a39c-499f-a0e2-5fd64c67aba2" ownerguid="5c563fa9-c1ca-4d86-9b45-ccae7dea5028"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pine</AUni> -<AUni ws="es">pino</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="af3c4485-4d14-4556-90ab-ae59d1ea50f4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="fc93fe62-7183-4f59-9111-5520e0b02c89" ownerguid="0f7c4d2f-ed94-49ba-a91c-fba36193f35a"> -<ExampleWords> -<AUni ws="en">price, set price, fix price, raise price, lower price, value, charge</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to setting a price for something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fc9666a9-eb9c-4bee-be4f-65d252471724" ownerguid="3022c764-ba88-41d0-94db-393312214f4e"> -<ExampleWords> -<AUni ws="en">possession</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to something that is owned?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fc97bb9e-f7de-4dbf-8860-2063e9d61789" ownerguid="7c6ba6e5-d81e-4a50-a111-c946a0793378"> -<ExampleWords> -<AUni ws="en">be to someone's disadvantage, be against</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words indicate that something gives someone a disadvantage?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="fc9854cf-68e7-4f0e-888f-61320046613a" ownerguid="965b0558-10fc-4cf4-8832-f82614fb4098"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="fc985e07-1d45-4fda-9815-d3f77da2c9af" ownerguid="17563e74-6020-4a64-a1a9-b874ef533fcb"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiWordform" guid="fc9f2ee6-1f5a-49a4-9786-df15a5a20ef2"> -<Analyses> -<objsur guid="ba0a3fc5-861e-42bd-ab09-f549603f3e63" t="o" /> -<objsur guid="c12852c1-d8b2-4dbb-953f-59efd81b3972" t="o" /> -</Analyses> -<Checksum val="-714816727" /> -<Form> -<AUni ws="qvm-x-akh">mamay</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="fca5ea6b-ec35-47b4-9f07-a2312e86a405" ownerguid="647603c2-6f32-48f3-91fa-1f7f0e44b539"> -<ExampleWords> -<AUni ws="en">inject</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to putting water into something?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fca85b21-5336-4320-9f16-629391b37aaa" ownerguid="d76d0838-3519-49cd-9217-68372b606a7a"> -<Form> -<AUni ws="qvm-x-ach">landrïjas</AUni> -<AUni ws="qvm-x-acl">landrïjas</AUni> -<AUni ws="qvm-x-akh">landrïjas</AUni> -<AUni ws="qvm-x-akl">landrïjas</AUni> -<AUni ws="qvm-x-ame">landrïjas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="fcac2a57-6745-43ea-b709-b275839602a1" ownerguid="c0ce86b5-dd49-41bf-8dfc-3a8ff8b6125c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bumpy</AUni> -<AUni ws="es">grano</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="fdb061e7-6c49-4b38-b6bf-5900ecf9184a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="fcaf1597-23b1-474c-9391-65adb2d6bb80" ownerguid="6e56b766-4dfa-4284-abff-db28ea823148"> -<Form> -<AUni ws="qvm-x-ach">chiuchi</AUni> -<AUni ws="qvm-x-acl">chiuchi; chiuchi; chiuche</AUni> -<AUni ws="qvm-x-akh">chiwchi</AUni> -<AUni ws="qvm-x-akl">chiwchi; chiwchi; chiwche</AUni> -<AUni ws="qvm-x-ame">chiwchi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="fcaf189b-d02a-40d1-bf07-fd49f8411531" ownerguid="d983c9fa-5bb7-4f7a-a5b4-50c730f6c2ac"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="fcb0151d-07d3-4220-a0db-5b89d311704e" ownerguid="3421189c-0b52-4d4e-aac3-252bcac4544b"> -<Form> -<AUni ws="qvm-x-ach">langu</AUni> -<AUni ws="qvm-x-acl">langu; lango</AUni> -<AUni ws="qvm-x-akh">lanqu</AUni> -<AUni ws="qvm-x-akl">lanqu; lanqo</AUni> -<AUni ws="qvm-x-ame">lanqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="fcb128f2-37b1-4780-8d21-5e85e9917532" ownerguid="9040c8fd-b0d7-4fdd-97c0-081a6a79531f" /> -<rt class="MoStemAllomorph" guid="fcb25243-3f49-4da4-9f29-a76e7e9d25e2" ownerguid="3b91ec57-ef8c-43a6-8237-6c7b35aaba32"> -<Form> -<AUni ws="qvm-x-ach">cachu</AUni> -<AUni ws="qvm-x-acl">cachu; cacho</AUni> -<AUni ws="qvm-x-akh">kachu</AUni> -<AUni ws="qvm-x-akl">kachu; kacho</AUni> -<AUni ws="qvm-x-ame">kachu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="fcb8e447-99ec-4b48-8fb4-8283c110bee4" ownerguid="55d75f66-810f-4a08-8eb0-fa7078873979"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">qui</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">qui</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">ki</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">ki</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">ki</Run> -</AStr> -</Form> -<Morph> -<objsur guid="8fc7d848-8007-4dcc-8c36-9b0b4da26f05" t="r" /> -</Morph> -<Msa> -<objsur guid="bbbfe118-132f-4744-9f12-6945daa4a632" t="r" /> -</Msa> -<Sense> -<objsur guid="7a11c70f-471b-4542-a37b-bcfc9731537d" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="fcb9bd09-ed7a-47a6-947d-fb629dc7d4cf" ownerguid="83b483b8-f036-44be-8510-ea337d010a1c"> -<ExampleWords> -<AUni ws="en">bird, fowl, poultry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to birds?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fcba0779-c321-4378-9503-237e80e1f8d5" ownerguid="08c05e00-9660-4491-af2f-a05fab27ef39"> -<ExampleWords> -<AUni ws="en">lanky, spindly, rangy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who is thin and tall?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fcba786b-ba84-407a-ac6c-5311497bc97b" ownerguid="09bf6181-150d-452c-9520-bed1b8a2d45c"> -<Form> -<AUni ws="qvm-x-ach">jaylay</AUni> -<AUni ws="qvm-x-acl">jaylay</AUni> -<AUni ws="qvm-x-akh">jaylay</AUni> -<AUni ws="qvm-x-akl">jaylay</AUni> -<AUni ws="qvm-x-ame">haylay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="fcbc1a80-2f4e-4480-944a-a2aacad36c3f" ownerguid="4f516445-e044-4d9c-ac9b-a3178f72b405"> -<ExampleWords> -<AUni ws="en">camera, set, prop, studio</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What things are used to make movies?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fcbd2646-0044-44fc-a641-5ffdf68d7b17" ownerguid="d80360f9-7319-40a7-a2bc-fd8718711ba4"> -<ExampleWords> -<AUni ws="en">before, in front of, ahead of</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words indicate that something comes before another in a series?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="fcbead11-b102-4d4a-9901-73c40cf19baf" ownerguid="ec9b5648-d5ee-4710-9610-0a9763e525c2"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="6295f2e3-60f6-4ffb-8e8b-55fb93dad67b" t="r" /> -</Morph> -<Msa> -<objsur guid="fbe83c41-5659-42d6-8470-31ed33d103c2" t="r" /> -</Msa> -<Sense> -<objsur guid="8825f180-b774-47d3-9faa-e76a889e064f" t="r" /> -</Sense> -</rt> -<rt class="LexSense" guid="fcbeed97-51d1-4719-8567-2d6764305549" ownerguid="cf38d9ba-f7bc-4b2b-90f3-46510c07ddfb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pea-body</AUni> -<AUni ws="es">orina</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5180f0ac-8182-42df-bdd6-b3e3ca876996" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="fcbef386-e075-44f0-9b10-3850d8f06b25"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">segu:ru</AUni> -<AUni ws="qvm-x-acl">segu:ru; segu:ru; segu:ro</AUni> -<AUni ws="qvm-x-akh">segu:ru</AUni> -<AUni ws="qvm-x-akl">segu:ru; segu:ru; segu:ro</AUni> -<AUni ws="qvm-x-ame">segu:ru</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+seguro</AUni> -<AUni ws="qvm-x-acl">+seguro</AUni> -<AUni ws="qvm-x-akh">+seguro</AUni> -<AUni ws="qvm-x-akl">+seguro</AUni> -<AUni ws="qvm-x-ame">+seguro</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.521" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="6286a443-26de-49f8-8e58-3904b7d4e7e5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+seguro</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="662d70e8-2dc9-499a-80cb-92441c8ec1a6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="75113bfa-39f0-4eb5-85c0-8da35751eb4b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +seguro 
\entryTyp root 
\gENG 
\gSPN seguro 
\e +seguro 
\c N0 
\ach segu:ru 
\akh segu:ru 
\acl segu:ru / _# 
\acl segu:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl segu:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl segu:ru / _# 
\akl segu:ru +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl segu:ro +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame segu:ru</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="fcc0fc0b-879b-4d83-9371-6202457d2b9e" ownerguid="2084be86-a681-48c5-9ef0-6ee12c9a250b"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="fcc204a3-eae4-46d1-a9dc-08864fde1772" ownerguid="8216627d-9d20-4a5c-8bfd-0709c16e7a08"> -<Abbreviation> -<AUni ws="en">8.1.4.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.569" /> -<DateModified val="2022-9-23 16:55:8.569" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that indicate that the number or amount of something is less than the number or amount of another thing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Less</AUni> -</Name> -<Questions> -<objsur guid="5eca9f08-a177-462f-8f67-1e0727d75230" t="o" /> -<objsur guid="09c1cf0b-6918-4726-a853-f91abe7323ec" t="o" /> -<objsur guid="090185ee-3a0e-459c-afe8-ec445ac52db9" t="o" /> -<objsur guid="4a8b9e3c-ac58-4713-88eb-df93a9740eeb" t="o" /> -<objsur guid="8390914b-4ca6-43cd-b415-3cbe05629d0b" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="fcc24831-313b-462b-8333-73ca813d4f36"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">casa:ca</AUni> -<AUni ws="qvm-x-acl">casa:ca</AUni> -<AUni ws="qvm-x-akh">casa:ca</AUni> -<AUni ws="qvm-x-akl">casa:ca</AUni> -<AUni ws="qvm-x-ame">casa:ca</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+casaca</AUni> -<AUni ws="qvm-x-acl">+casaca</AUni> -<AUni ws="qvm-x-akh">+casaca</AUni> -<AUni ws="qvm-x-akl">+casaca</AUni> -<AUni ws="qvm-x-ame">+casaca</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.720" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b8db0ab4-d7e4-45c0-afa0-3e2c5cd2149c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+casaca</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0ce8c743-2e16-45a9-abce-04c2a684e489" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d7ed759b-e014-4cef-9c65-fe9aebf06cd7" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +casaca 
\entryTyp root 
\gENG 
\gSPN 
\e +casaca 
\c N0 
\ach casa:ca 
\akh casa:ca 
\acl casa:ca 
\akl casa:ca 
\ame casa:ca 
\i Exo 28.32 Tsay rebëti canga gara casäcapa rebëtinnog.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="fcc4ce3e-c994-4dfd-b404-ff9f6196a9d6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wanu</AUni> -<AUni ws="qvm-x-acl">wanu; wano</AUni> -<AUni ws="qvm-x-akh">wanu</AUni> -<AUni ws="qvm-x-akl">wanu; wano</AUni> -<AUni ws="qvm-x-ame">wanu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wañu.v</AUni> -<AUni ws="qvm-x-acl">*wañu.v</AUni> -<AUni ws="qvm-x-akh">*wañu.v</AUni> -<AUni ws="qvm-x-akl">*wañu.v</AUni> -<AUni ws="qvm-x-ame">*wañu.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.485" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9315bafb-8125-42cb-ac3d-613c760213b3" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wañu.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="52c4e986-5fd0-4705-87fe-8ddc628aff31" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3bec5d36-0630-4df1-8647-20f18b1586ad" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wañu.v 
\entryTyp root 
\gENG die 
\gSPN morir 
\e *wañu.v 
\c V1 
\ach wanu 
\akh wanu 
\acl wanu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wano +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wanu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wano +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wanu 
\mcc *wañu.v [ben] / _... [Obj]</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fcc5d414-690c-46b9-92b1-2c674c7e7350" ownerguid="bdaecf2f-d0fa-49f7-891e-bcb0a31ae630"> -<ExampleWords> -<AUni ws="en">successor, next in line, succeed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a person who takes a job or position after someone else?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="fcc9e3d9-77e9-4ea6-bd8e-66141f5327c2" ownerguid="665d2cf7-c0c5-4014-a130-c9605400d72a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">aylu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">aylu; aylu; aylo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">aylu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">aylu; aylu; aylo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">aylu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="b46cc4d6-1f16-4e96-82b4-1efc21e9b2d5" t="r" /> -</Morph> -<Msa> -<objsur guid="b0e3b653-038b-4d0b-b59b-79eb9cf9f453" t="r" /> -</Msa> -<Sense> -<objsur guid="c2076711-27ed-4c95-902c-e75412b42a68" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="fccb8ef9-d05f-49fc-ba12-c904ba09f06f" ownerguid="3d5d93ce-00e0-46ff-b220-553c12c38381"> -<ExampleWords> -<AUni ws="en">menses</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the discharge?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="fccbfc42-3149-4acb-a364-498f70b254dd" ownerguid="48ca8966-6a2f-4197-9d87-6c3fa2f3f8b4"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">∅</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">∅</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">∅</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">∅</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">∅</Run> -</AStr> -</Form> -<Morph> -<objsur guid="63f7a44b-a975-4608-9455-989e95a699f2" t="r" /> -</Morph> -<Msa> -<objsur guid="3e0194d5-abf7-4735-8f91-d383c71f24d6" t="r" /> -</Msa> -</rt> -<rt class="LexEntry" guid="fccc2973-d590-4fc7-ba38-b9870732c9bf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tsuri; tsuri:</AUni> -<AUni ws="qvm-x-acl">tsure:; tsuri; tsure</AUni> -<AUni ws="qvm-x-akh">tsuri; tsuri:</AUni> -<AUni ws="qvm-x-akl">tsure:; tsuri; tsure</AUni> -<AUni ws="qvm-x-ame">tsuri; tsuri:</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*churi:.v</AUni> -<AUni ws="qvm-x-acl">*churi:.v</AUni> -<AUni ws="qvm-x-akh">*churi:.v</AUni> -<AUni ws="qvm-x-akl">*churi:.v</AUni> -<AUni ws="qvm-x-ame">*churi:.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.345" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d314c687-145c-4ecd-a7a0-14278a56d704" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*churi:.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d0922dbd-37de-4144-8335-0e3531d8c93e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="14acf460-3535-4e53-9de2-06fe69601a9c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *churi:.v 
\entryTyp root 
\gENG son 
\gSPN hijo 
\e *churi:.v 
\c V2 
\mp +FinalLength 
\mp +underlong 
\ach tsuri foreshortened 
\ach tsuri: 
\akh tsuri foreshortened 
\akh tsuri: 
\mp +underlong 
\acl tsure: 
\acl tsuri foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tsure foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\mp +underlong 
\akl tsure: 
\akl tsuri foreshortened +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tsure foreshortened +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tsuri foreshortened 
\ame tsuri: 
\mcc *churi:.v / ~_ 3 
\mcc *churi:.v / ~_ 1 
\mcc *churi:.v / ~_ INF.noI 3P TOP 
\mcc *churi:.v / ~_ 3FUT 
\mcc *churi:.v / ~_ AG TOP</Run> -</AStr> -</Custom> -</rt> -<rt class="MoAffixAllomorph" guid="fccf41bc-422c-4f76-bdf4-ea0b3bac5d21" ownerguid="7aba0347-4fdf-4782-bfdf-c26a3290c596"> -<Form> -<AUni ws="qvm-x-ach">sapa</AUni> -<AUni ws="qvm-x-acl">sapa</AUni> -<AUni ws="qvm-x-akh">sapa</AUni> -<AUni ws="qvm-x-akl">sapa</AUni> -<AUni ws="qvm-x-ame">sapa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="fcd22c85-7ee1-4d31-8633-9dbd32344211" ownerguid="c7c85346-158d-4881-839d-9a6a8e47209b"> -<Abbreviation> -<AUni ws="en">7.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.508" /> -<DateModified val="2022-9-23 16:55:8.508" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to moving toward, in the direction of, or near something or some place. The words in this domain should refer to moving in the direction of a place, but should not require that the person actually arrived. Some languages (such as German and Polish) distinguish 'go on foot' from 'go in a vehicle'.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15E Come Near, Approach</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Move toward something</AUni> -</Name> -<Questions> -<objsur guid="9d9fc7a6-e4a8-4df3-921e-87922cf7456c" t="o" /> -<objsur guid="c17c6464-1787-4bb4-b5d8-f262fc3862eb" t="o" /> -<objsur guid="90570944-b8f2-45bf-89cb-3e364e411b5a" t="o" /> -<objsur guid="b43c2daf-8e8a-4592-a720-299b70e52004" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="5832eb32-8a90-42a7-b2bc-a9bb575b1b7c" t="o" /> -<objsur guid="2cc624fa-76cb-46ab-87c8-c13c6adb1c72" t="o" /> -<objsur guid="20e7d987-0d55-46d4-ab69-0b0cce2f1e24" t="o" /> -<objsur guid="88269184-d033-454e-b750-559d5f53287c" t="o" /> -<objsur guid="ea2d0dc5-2cdb-4686-9f48-abe65ed295a4" t="o" /> -<objsur guid="5a021f98-2efb-4baf-9384-a553dc3df86c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="fcd38ae2-84c7-4bdf-9d5c-f42a309957d4" ownerguid="bbd3c3f1-7387-4ec6-a75d-66c1355a94ef"> -<ExampleWords> -<AUni ws="en">ungulate, herbivore, clean animal, ruminant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to hoofed animals?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fcd718bd-c126-4786-87ed-10d5c61dc97c" ownerguid="a01e0e71-4940-4351-b973-964e5e5b8d8f"> -<Form> -<AUni ws="qvm-x-ach">mawca</AUni> -<AUni ws="qvm-x-acl">mawca</AUni> -<AUni ws="qvm-x-akh">mawka</AUni> -<AUni ws="qvm-x-akl">mawka</AUni> -<AUni ws="qvm-x-ame">mawka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="fcda3c9b-d0d3-4f73-b815-0716fb5455d5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gori</AUni> -<AUni ws="qvm-x-acl">gori; gore</AUni> -<AUni ws="qvm-x-akh">qori</AUni> -<AUni ws="qvm-x-akl">qori; qore</AUni> -<AUni ws="qvm-x-ame">quri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*quri.v</AUni> -<AUni ws="qvm-x-acl">*quri.v</AUni> -<AUni ws="qvm-x-akh">*quri.v</AUni> -<AUni ws="qvm-x-akl">*quri.v</AUni> -<AUni ws="qvm-x-ame">*quri.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.871" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="72319b29-ab25-40bc-9fa5-611c4aa15022" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*quri.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bc200771-3e33-42ca-af78-ebb98bfa3fbc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b74c78f5-e2e4-44f8-9c4c-d7098f3041aa" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *quri.v 
\entryTyp root 
\gENG gather 
\gSPN coger 
\e *quri.v 
\c V2 
\mp +FinalI 
\ach gori 
\akh qori 
\acl gori +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl gore +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qori +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl qore +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame quri 
\mcc *quri.v / ~_ 3 EVEN1</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="fcdd0330-49f2-4f45-83e9-4fb56d3225ba" ownerguid="c221b7f9-d102-4dfe-83b0-de944357b91d"> -<Form> -<AUni ws="qvm-x-ach">träma</AUni> -<AUni ws="qvm-x-acl">träma</AUni> -<AUni ws="qvm-x-akh">träma</AUni> -<AUni ws="qvm-x-akl">träma</AUni> -<AUni ws="qvm-x-ame">träma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiAnalysis" guid="fcded7cb-9a9e-4079-904f-11712573f564" ownerguid="dccb55f6-9e2b-4963-a6d5-640d118909e1"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="baf58dac-a0e7-4dcd-be81-f639a924b00e" t="o" /> -<objsur guid="803ce0ea-4c11-4c78-952d-31ec3cf29fa6" t="o" /> -<objsur guid="6bc1b249-1792-433e-816e-96f503924770" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="fce04bcf-a0ef-4fcf-8b91-acd814690e63" ownerguid="245441c8-7471-41c6-93d8-42315aa19428"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="fce06e42-a862-43d0-9b4a-bd9d2e638e35" ownerguid="0b7b9a1c-588b-475a-ac14-00f0999cbfe9"> -<ExampleWords> -<AUni ws="en">keep the peace, peacekeeping force</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to keeping the peace?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="fce3a591-51ce-46ad-83a2-d150940f5da5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wisgui</AUni> -<AUni ws="qvm-x-acl">wisgui; wisgue</AUni> -<AUni ws="qvm-x-akh">wisqi</AUni> -<AUni ws="qvm-x-akl">wisqi; wisqe</AUni> -<AUni ws="qvm-x-ame">wisqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wisqi</AUni> -<AUni ws="qvm-x-acl">*wisqi</AUni> -<AUni ws="qvm-x-akh">*wisqi</AUni> -<AUni ws="qvm-x-akl">*wisqi</AUni> -<AUni ws="qvm-x-ame">*wisqi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.699" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a041c54e-2fb4-422c-8504-654b58874de1" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wisqi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="acc3a380-f6f2-4a49-a13c-55828a38e1de" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="738c8baa-8522-4b0e-8d19-69f73957cc39" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wisqi 
\entryTyp root 
\gENG dribble 
\gSPN gotear 
\e *wisqi 
\c V1 
\mp +FinalI 
\ach wisgui 
\akh wisqi 
\acl wisgui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl wisgue +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wisqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl wisqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame wisqi</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fce4a5cc-2b3e-4bf7-97bd-01f45a019d4c" ownerguid="23b1a6b4-8d91-425c-b8c2-52d06b1c1d23"> -<ExampleWords> -<AUni ws="en">break</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to something breaking?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="fce4e374-78aa-4eca-9908-7192cbbd5a38"> -<Checksum val="0" /> -<Form> -<AUni ws="qvm-x-akh">a</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="fce7a8d4-3760-44e7-9679-2b96155569fe" ownerguid="e09e5712-8837-4587-b766-483eee947e15"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="fce88221-027d-45ee-9d28-2eead154638d" ownerguid="f42416f1-2bb8-4790-a812-2cdc678e76f3"> -<Form> -<AUni ws="qvm-x-ach">aparti; aparte</AUni> -<AUni ws="qvm-x-acl">aparti; aparti; aparte</AUni> -<AUni ws="qvm-x-akh">aparti; aparte</AUni> -<AUni ws="qvm-x-akl">aparti; aparti; aparte</AUni> -<AUni ws="qvm-x-ame">aparti; aparte</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="fcea4fa2-8ed8-4c08-a0e5-899c2a889c5f" ownerguid="ef409fc6-bd89-4cc6-ade5-abb882272313"> -<ExampleWords> -<AUni ws="en">favorite (n), teacher's pet, favored</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to someone who is liked more than others?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="fcecd5c5-5e04-4be9-84c2-87a12d03aac0" ownerguid="c6e504fb-bb7a-4cdc-8745-095bb37e092f"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">at.night</AUni> -<AUni ws="es">noche</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="614238b2-ef00-4df7-b48b-c7d7003d4a4b" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="fcedc113-5e88-4077-a27d-7e79f9dd0b84" ownerguid="c01442d9-7a0d-41b5-9fbf-5f78c8d5999a"> -<Form> -<AUni ws="qvm-x-ach">chanquis</AUni> -<AUni ws="qvm-x-acl">chanquis</AUni> -<AUni ws="qvm-x-akh">chankis</AUni> -<AUni ws="qvm-x-akl">chankis</AUni> -<AUni ws="qvm-x-ame">chankis</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="fcf16495-5226-4192-afdb-e748192efc3a" ownerguid="14ad95ad-50fc-450f-b44d-4273df0b1e8b"> -<Abbreviation> -<AUni ws="en">8.4.1.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.640" /> -<DateModified val="2022-9-23 16:55:8.640" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a year.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Year</AUni> -</Name> -<Questions> -<objsur guid="ccee1617-c79e-4018-8cec-8337b81ebe67" t="o" /> -<objsur guid="41aff74c-3bda-4f83-99de-692d9e5cda54" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="fcf5c4f1-5b12-47f7-bb95-43d6ac18df26"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">imanir</AUni> -<AUni ws="qvm-x-acl">imanir</AUni> -<AUni ws="qvm-x-akh">imanir</AUni> -<AUni ws="qvm-x-akl">imanir</AUni> -<AUni ws="qvm-x-ame">imanir</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*imanir</AUni> -<AUni ws="qvm-x-acl">*imanir</AUni> -<AUni ws="qvm-x-akh">*imanir</AUni> -<AUni ws="qvm-x-akl">*imanir</AUni> -<AUni ws="qvm-x-ame">*imanir</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.802" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="82ffd3bc-3ccd-401f-a120-a1504d29628f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*imanir</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="04536ce2-458b-412d-8565-b30ce00ee659" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cfb17601-16c2-45da-a20c-8a279f397448" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *imanir 
\entryTyp root 
\gENG why 
\gSPN por.qué 
\e *imanir 
\c N0 
\mp +FinalC 
\ach imanir 
\akh imanir 
\acl imanir 
\akl imanir 
\ame imanir 
\mcc *imanir / ~_ OBJ</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="fcfa390a-8c79-401b-a2e0-b9ba5ddf9e66" ownerguid="f5392cbc-1711-4006-bb66-d45d0fd8afd1"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="fcfb806d-27a7-4482-9809-12bc5a60d766"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sufi:ju</AUni> -<AUni ws="qvm-x-acl">sufi:ju; sufi:ju; sufi:jo</AUni> -<AUni ws="qvm-x-akh">sufi:ju</AUni> -<AUni ws="qvm-x-akl">sufi:ju; sufi:ju; sufi:jo</AUni> -<AUni ws="qvm-x-ame">sufi:ju</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sufijo</AUni> -<AUni ws="qvm-x-acl">+sufijo</AUni> -<AUni ws="qvm-x-akh">+sufijo</AUni> -<AUni ws="qvm-x-akl">+sufijo</AUni> -<AUni ws="qvm-x-ame">+sufijo</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.744" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b4e70051-d6f0-4e89-becc-e765858844ee" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sufijo</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c1e07b1f-dac4-443e-b98e-48165013d98d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b647e124-38df-432b-846c-ff5268f57984" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sufijo 
\entryTyp root 
\gENG suffix 
\gSPN sufijo 
\e +sufijo 
\c N0 
\ach sufi:ju 
\akh sufi:ju 
\acl sufi:ju / _# 
\acl sufi:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl sufi:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sufi:ju / _# 
\akl sufi:ju +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl sufi:jo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame sufi:ju</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="fcfc5d75-a155-4c4f-b607-fac923566087"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ruywa</AUni> -<AUni ws="qvm-x-acl">ruywa</AUni> -<AUni ws="qvm-x-akh">ruywa</AUni> -<AUni ws="qvm-x-akl">ruywa</AUni> -<AUni ws="qvm-x-ame">ruywa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ruywa</AUni> -<AUni ws="qvm-x-acl">*ruywa</AUni> -<AUni ws="qvm-x-akh">*ruywa</AUni> -<AUni ws="qvm-x-akl">*ruywa</AUni> -<AUni ws="qvm-x-ame">*ruywa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.409" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="da0b9346-2680-4d86-a685-cbe4073aa805" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ruywa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9b6a566e-965b-4ba8-a9e2-3f1be30ecf34" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1f6591ea-8379-43c7-8753-7d2de14a105f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ruywa 
\entryTyp root 
\gENG bird 
\gSPN ave 
\e *ruywa 
\c N0 
\ach ruywa 
\akh ruywa 
\acl ruywa 
\akl ruywa 
\ame ruywa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoInflAffMsa" guid="fcfca2e4-74da-4271-bebd-d9afd864c113" ownerguid="6f011005-9763-4284-9571-90529febecf7"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="b6f091af-032e-4c9c-9c5c-443c1328d1e2" t="r" /> -</Slots> -</rt> -<rt class="LexEntry" guid="fcffd439-c0e1-4e21-a3b3-3f868edee0cd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gamunal</AUni> -<AUni ws="qvm-x-acl">gamunal</AUni> -<AUni ws="qvm-x-akh">gamunal</AUni> -<AUni ws="qvm-x-akl">gamunal</AUni> -<AUni ws="qvm-x-ame">gamunal</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gamonal</AUni> -<AUni ws="qvm-x-acl">+gamonal</AUni> -<AUni ws="qvm-x-akh">+gamonal</AUni> -<AUni ws="qvm-x-akl">+gamonal</AUni> -<AUni ws="qvm-x-ame">+gamonal</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.597" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="fa53a232-4e78-4f91-ac10-7076a293c479" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gamonal</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="041446b9-da66-45a8-b5f5-8810bec937ce" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cb9958ec-78f1-408f-8832-0cd3631c1459" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gamonal 
\entryTyp root 
\gENG chief 
\gSPN gamonal 
\e +gamonal 
\c N0 
\mp +FinalC 
\ach gamunal 
\akh gamunal 
\acl gamunal 
\akl gamunal 
\ame gamunal</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="fd0613ef-a9cc-461c-b1b8-0d3ee06fe505" ownerguid="32172222-630c-4f4e-bbe3-de396bf4472c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="080c09a8-08f1-4b87-b751-224461788971" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="fd08444a-eaf0-4993-8b93-0b74d2f95627" ownerguid="9f1d1b75-c36d-418c-822f-8408eb5a1500"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="49b316f6-65b2-4085-b1ac-1f6ef3848b9a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="fd0cb698-1888-413c-85d4-526adc67594b" ownerguid="94189c36-c96a-4cc0-bf33-d3a44e892ba3"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="fd1459c3-a81b-4a47-b0c7-4e3df681ee27" ownerguid="1ae59286-36b6-40de-b2e2-8127030d6ebf"> -<Form> -<AUni ws="qvm-x-ach">tsawa</AUni> -<AUni ws="qvm-x-acl">tsawa</AUni> -<AUni ws="qvm-x-akh">tsawa</AUni> -<AUni ws="qvm-x-akl">tsawa</AUni> -<AUni ws="qvm-x-ame">tsawa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoAffixAllomorph" guid="fd15242a-e3ff-45fb-beda-e2ef4bd199ff" ownerguid="4b0bbf4a-bae7-431a-b85a-c3a0cffe19b4"> -<Form> -<AUni ws="qvm-x-ach">yca</AUni> -<AUni ws="qvm-x-acl">yca</AUni> -<AUni ws="qvm-x-akh">yka</AUni> -<AUni ws="qvm-x-akl">yka</AUni> -<AUni ws="qvm-x-ame">yka</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -<PhoneEnv> -<objsur guid="ae5f3ffd-a9d0-4eaa-9040-50a5a57e64bc" t="r" /> -<objsur guid="b27c54e7-0a24-46d7-b332-e63a45ecffc2" t="r" /> -</PhoneEnv> -</rt> -<rt class="CmDomainQ" guid="fd1656be-1756-40f0-ad7d-e132ce9e33bf" ownerguid="01441207-4935-49a5-a192-16d949f5606c"> -<ExampleWords> -<AUni ws="en">coach, to coach a team, call time out, captain, to captain a team</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What is the leader of a team called?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fd16a547-94e5-43e8-a82b-aaaae21b5c8a" ownerguid="2ba2f762-b6d4-4a4c-9119-aab9e3772316"> -<Form> -<AUni ws="qvm-x-ach">katay</AUni> -<AUni ws="qvm-x-acl">katay</AUni> -<AUni ws="qvm-x-akh">katay</AUni> -<AUni ws="qvm-x-akl">katay</AUni> -<AUni ws="qvm-x-ame">katay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="fd17e47b-fd48-486e-8237-d356939df7fb" ownerguid="30e6b42c-6bbf-4659-99e7-aa4b8e68c9ce"> -<ExampleWords> -<AUni ws="en">good, ethical, fine, right, righteous, worthy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words describe something someone does that is good?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fd1e0905-0a04-4456-9d43-20362a485d61" ownerguid="a86b2e14-1299-4f59-842c-c4c5a401aace"> -<ExampleWords> -<AUni ws="en">recognizable, familiar, unmistakable</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that you can recognize?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fd2021d5-076b-4687-9abb-35740e45ddea" ownerguid="2daede19-ce5f-46b6-ae68-32d6092441f1"> -<ExampleWords> -<AUni ws="en">energetic, vigorous, be full of energy, bursting with energy, dynamic, hyperactive, tireless, boisterous</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe someone who is energetic?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fd24dfbc-a92e-463f-8118-83bf6e47d0a1" ownerguid="02c11e09-c525-4f1d-aa90-94385e0d3ea7"> -<Form> -<AUni ws="qvm-x-ach">mishti; mishti</AUni> -<AUni ws="qvm-x-acl">mishti; mishti; mishte</AUni> -<AUni ws="qvm-x-akh">mishti; mishti</AUni> -<AUni ws="qvm-x-akl">mishti; mishti; mishte</AUni> -<AUni ws="qvm-x-ame">mishti; mishti</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="fd29c75a-3c14-4b7e-9fa9-af9fc8541b28" ownerguid="b9a4b336-080a-4973-a7e3-a9af10fc347c"> -<ExampleWords> -<AUni ws="en">contents (of the stomach), undigested food, acid, digestive juices, gas</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to the contents of the stomach?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fd2d6072-87fb-44c3-9102-1b12e5990152" ownerguid="7ee92ca4-19aa-4abd-9f88-508766acc39c"> -<ExampleWords> -<AUni ws="en">roll, scroll, curl, spiral</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to something that has been rolled up?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="fd2ee979-9301-46e9-ac89-1243592d6b9b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tuma</AUni> -<AUni ws="qvm-x-acl">tuma</AUni> -<AUni ws="qvm-x-akh">tuma</AUni> -<AUni ws="qvm-x-akl">tuma</AUni> -<AUni ws="qvm-x-ame">tuma</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tuma.v</AUni> -<AUni ws="qvm-x-acl">*tuma.v</AUni> -<AUni ws="qvm-x-akh">*tuma.v</AUni> -<AUni ws="qvm-x-akl">*tuma.v</AUni> -<AUni ws="qvm-x-ame">*tuma.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.987" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a33891c4-cb43-4723-817a-b4941ac3114c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tuma.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="11f98281-761a-4a13-91fe-b565ef42762a" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8825d54f-9ba5-4be3-8c2f-92edd14f4277" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tuma.v 
\entryTyp root 
\gENG turn 
\gSPN voltear 
\e *tuma.v 
\c V2 
\ach tuma 
\akh tuma 
\acl tuma 
\akl tuma 
\ame tuma</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="fd31447f-30e9-47a5-8b71-5e2e8479c824" ownerguid="6798cbaf-df7f-4ce5-99c5-f279fbc3e234"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="fd3150fc-cc30-4f9d-a2c8-10fb08be02e4" ownerguid="03134252-5f94-470e-93ff-675fc44a5fbf"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">plow</AUni> -<AUni ws="es">arar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e3752df5-e568-4b31-8192-25d9ef6bd537" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="fd33071c-0e88-4be1-b226-6f31dce65f1a" ownerguid="db0b0649-d748-4b51-9e8a-03fdf9b156b4"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Sueñuynëchömi quimsa tacsha balaycunawan janac janac umächo yorag tantacunata püriycätsishcä.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="fd33670e-ef16-4566-a62e-aa077e58407b" ownerguid="8503660c-03af-49ee-86b6-525aab4da828"> -<Abbreviation> -<AUni ws="en">2.3.2.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.32" /> -<DateModified val="2022-9-23 16:55:8.32" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to types of sounds.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>14I Sound</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Types of sounds</AUni> -</Name> -<Questions> -<objsur guid="d4f96d1e-54eb-4b33-945f-d0826d481205" t="o" /> -<objsur guid="497c6e67-997d-4201-b0d0-7ece1ca9df45" t="o" /> -<objsur guid="259ba3a7-e3cd-49c5-99b5-18c5a8f94b5a" t="o" /> -<objsur guid="1f7c1d6c-8df3-4516-bd04-57c46059c0f7" t="o" /> -<objsur guid="7d286643-e5ac-4d1f-b6aa-0d6af2685bb5" t="o" /> -<objsur guid="4433420f-4e8c-471d-b64b-4d06433254ce" t="o" /> -<objsur guid="8b30702d-4e85-41f6-87e1-d9901dedd529" t="o" /> -<objsur guid="05b1d695-7285-4c39-9868-2426f6a9cdb0" t="o" /> -<objsur guid="6b618e22-8ecc-4af4-a821-6dd276920c1a" t="o" /> -<objsur guid="ae246816-74e4-4e10-bde7-7555321dafeb" t="o" /> -<objsur guid="0afd3794-0d17-4fb2-b538-2ccc1e77846d" t="o" /> -<objsur guid="5666fd0c-1753-4a72-b7fe-5529bfdc08c2" t="o" /> -<objsur guid="9176f88d-6882-4a01-9848-c39fc06a448d" t="o" /> -<objsur guid="df7ebbba-1fdd-4871-afc6-36bd7ad3539f" t="o" /> -<objsur guid="8a701514-c81d-48f3-b071-ab044c82a001" t="o" /> -<objsur guid="f05d62de-8ecc-4472-a6ee-bb4f55f1a637" t="o" /> -<objsur guid="75c8e49c-682e-4b08-88d4-8647dbc9b32d" t="o" /> -<objsur guid="57ba1f15-41d4-4d42-81ee-b20fc695f33b" t="o" /> -<objsur guid="023637d5-65fc-4406-8717-cf62c9da1625" t="o" /> -<objsur guid="cd51c652-4770-4de4-bf2f-527fa28b04e4" t="o" /> -<objsur guid="e01c0c10-922b-4c10-90d2-1d69bb38dc40" t="o" /> -<objsur guid="c264c264-6700-449e-9aba-869d83699a9c" t="o" /> -<objsur guid="4b853e85-99c0-41ef-a962-1710d21a8b2c" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="cb99a086-8c6d-4f90-81db-6afa69ae5455" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="fd354ec3-02ac-484c-9214-5d64e394463b" ownerguid="10e92cd8-6d9d-4c1e-b946-f076814474e0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V0/V0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">FUT.1</AUni> -<AUni ws="es">FUT.1</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="aafa5d02-399a-4048-b045-4c82d08978e0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="fd35cb2d-0861-4b36-a4ab-3c3c3c34bdfa" ownerguid="0de7ba3e-5e24-4c00-b5da-8c6a05523a2b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="fd360ac5-1938-45b4-8393-f3da109ab986" ownerguid="874f8415-fca2-49ce-923f-ff1d4a2b94d9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shu; shu; sho</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shu; shu; sho</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="623ce4fc-c83d-436b-8252-481bc2e79754" t="r" /> -</Morph> -<Msa> -<objsur guid="7fd5787e-fab9-4d36-bb4a-82d01c28f736" t="r" /> -</Msa> -<Sense> -<objsur guid="bf6a441e-59e4-4e54-9969-9a29db438690" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="fd37589e-13a1-48e9-9755-13ed72839709" ownerguid="bf9606ec-9a8e-4822-8bfd-d5eebc58c65b"> -<ExampleWords> -<AUni ws="en">gloomy, dingy, the shadows</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a place that is dark and makes you feel bad or afraid?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fd37ceca-1822-4b65-ac9d-b591434098a5" ownerguid="08239f53-daa5-47a6-9f39-29a9064b0c27"> -<ExampleWords> -<AUni ws="en">join, join together, agglutinate, assemble, bolt, cement, chain, clip, combine, connect, couple, crimp, fasten, fetter, fuse, glue, grapple, handcuff, hitch, hook together, knit, latch, link, manacle, merge, paste, pin, plaster, put together, put up, rivet, secure, sew, shackle, solder, staple, stick, stick together, tape (up), unite, unify, weld</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to joining two or more things together?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="fd3d1cd7-8b7e-4a63-846a-9e5ecd83dd0f"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">talu</AUni> -<AUni ws="qvm-x-acl">talu; talu; talo</AUni> -<AUni ws="qvm-x-akh">talu</AUni> -<AUni ws="qvm-x-akl">talu; talu; talo</AUni> -<AUni ws="qvm-x-ame">talu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tallu.r</AUni> -<AUni ws="qvm-x-acl">*tallu.r</AUni> -<AUni ws="qvm-x-akh">*tallu.r</AUni> -<AUni ws="qvm-x-akl">*tallu.r</AUni> -<AUni ws="qvm-x-ame">*tallu.r</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.792" /> -<DateModified val="2022-10-10 21:18:47.206" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1a2bd04f-ddcb-490c-8d67-9be26c68c62e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tallu.r</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0577c6d5-3409-4031-aa46-31e021524fcb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3e77b243-a1ee-4695-a362-3eecd5c3bfd6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tallu.r 
\entryTyp root 
\gENG 
\gSPN 
\e *tallu.r 
\c R0 
\ach talu 
\akh talu 
\acl talu / _# 
\acl talu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl talo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl talu / _# 
\akl talu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl talo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame talu 
\i PRO 23.29,30 Imaycanirag shincatsicogcunata talu talurcur upogcunaga imaypis nanatsicular y rimanacushganpita laquinar purenga.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fd425c34-6efa-4489-aae4-ad0baa3f0609" ownerguid="295dc021-5b50-47b3-8340-1631c6d6fadc"> -<ExampleWords> -<AUni ws="en">uncomfortable, rough, bumpy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words describe something that makes you feel uncomfortable?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fd469863-41f3-4fb3-9611-7275c23b7938" ownerguid="26f480c4-9335-4524-b2ed-47859a10568b"> -<Form> -<AUni ws="qvm-x-ach">nana</AUni> -<AUni ws="qvm-x-acl">nana</AUni> -<AUni ws="qvm-x-akh">nana</AUni> -<AUni ws="qvm-x-akl">nana</AUni> -<AUni ws="qvm-x-ame">nana</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="fd46b7c6-1a10-4eb0-99a1-37aa89315701" ownerguid="ba5c0547-c470-496f-a206-4109f1333f3c"> -<Form> -<AUni ws="qvm-x-ach">mantsa</AUni> -<AUni ws="qvm-x-acl">mantsa</AUni> -<AUni ws="qvm-x-akh">mantsa</AUni> -<AUni ws="qvm-x-akl">mantsa</AUni> -<AUni ws="qvm-x-ame">mantsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="fd46c5c7-47cf-49a5-b508-4a0751e7f9df" ownerguid="c658f7a8-db8b-45a3-902f-dbb4631b50ed"> -<Form> -<AUni ws="qvm-x-ach">olgu</AUni> -<AUni ws="qvm-x-acl">olgu; olgu; olgo</AUni> -<AUni ws="qvm-x-akh">olqu</AUni> -<AUni ws="qvm-x-akl">olqu; olqu; olqo</AUni> -<AUni ws="qvm-x-ame">ulqu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="fd47cc0e-0ab1-45a9-9234-7467cefc71c8" ownerguid="8da190db-383a-43d3-aed7-ecd832665c19"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">anvil</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8176bba9-37a7-4011-b74c-46e78f2d6067" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="fd4831a4-1a15-48ff-847c-5e69c17bf184" ownerguid="858af232-b570-4153-b4c0-f60930df9ced"> -<ExampleWords> -<AUni ws="en">apparent, seeming, superficial</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something, such as a feeling or quality, that someone or something seems to have?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="fd4b8d8f-0e19-42d7-8e42-9b28fff64ce5" ownerguid="c62e246c-30ba-49ed-8885-c673eafdb477"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="fd4f6f27-289b-435c-a4cb-b08f10c99136" ownerguid="e021830e-b644-4e1b-a723-40d3f643ba66"> -<Form> -<AUni ws="qvm-x-ach">gorma; gormä</AUni> -<AUni ws="qvm-x-acl">gorma; gormä</AUni> -<AUni ws="qvm-x-akh">qorma; qormä</AUni> -<AUni ws="qvm-x-akl">qorma; qormä</AUni> -<AUni ws="qvm-x-ame">qurma; qurmä</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="fd520d50-f6db-4270-a204-333374e2a71c" ownerguid="6268bc24-e119-41df-9101-423023162e9a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">beak</AUni> -<AUni ws="es">pico</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="c500df9e-9c92-4bc8-a657-0e5093820516" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="fd532fe6-4587-4786-9276-5a52340e8ca4" ownerguid="56c46bc7-4c77-4ba3-8f2b-a47ff5bb0759"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="fd5534e3-7ac9-49c0-843a-82a7f1bf3a9b" ownerguid="ab6edc0a-0f28-4f0a-9260-26fed523be41"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="fd55e533-7e5a-4b67-abb1-0aca0e410dad" ownerguid="a01a1900-fc1f-462e-ba3d-ae822711b034"> -<ExampleWords> -<AUni ws="en">psychologist, psychiatrist, exorcist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words refer to someone who cares for mentally ill people?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fd57832e-395d-47d5-b6d4-c97ec80f4937" ownerguid="6bf8ce57-1970-4efb-a7d7-b0bf8be6fb6b"> -<ExampleWords> -<AUni ws="en">the right time, a good time, be the time</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the right time to do something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fd5a082d-d333-4ac1-ab57-14b9aaecc5c8" ownerguid="5c770098-2c91-4a9c-bfa0-a7ffaa871a7f"> -<ExampleWords> -<AUni ws="en">employee, hired hand, worker, labor</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who works for someone?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fd5cf24d-9e9b-4604-ad49-d0b61504b37c" ownerguid="67d10a00-fda8-4a3a-becd-f3ae3b00fcca"> -<ExampleWords> -<AUni ws="en">shock (n), shocker, blow, bolt from the blue, bombshell, rude awakening, scandal, trauma, horror</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to something that causes someone to feel shocked?</AUni> -</Question> -</rt> -<rt class="Segment" guid="fd603b54-d0c1-44bb-b0bf-92a4442545bd" ownerguid="537679d0-642e-48dc-8cd3-04e1c19c3470"> -<Analyses> -<objsur guid="9bf7caa0-c172-49f0-9855-b6360e178c6c" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="fd621448-feb6-419a-9a5c-b05d6e647c08" ownerguid="58b17d92-f7a8-430f-977a-38b17ff8147f"> -<Form> -<AUni ws="qvm-x-ach">campana</AUni> -<AUni ws="qvm-x-acl">campana</AUni> -<AUni ws="qvm-x-akh">campana</AUni> -<AUni ws="qvm-x-akl">campana</AUni> -<AUni ws="qvm-x-ame">campana</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="fd62ab46-54ce-41e4-a4b6-c6e5c52337eb" ownerguid="27330d45-7bab-4879-bd68-405508d038dd"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="822ee2f8-d496-4f5b-848e-ff5139239e7a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="fd640739-dd6f-4ad7-a34e-f9f567bd4918" ownerguid="f5c73157-9581-45f0-9370-140d613f9812"> -<Form> -<AUni ws="qvm-x-ach">patgo; patgü</AUni> -<AUni ws="qvm-x-acl">patgo; patgö</AUni> -<AUni ws="qvm-x-akh">patqo; patqü</AUni> -<AUni ws="qvm-x-akl">patqo; patqö</AUni> -<AUni ws="qvm-x-ame">patqu; patqü</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="fd642729-c121-4941-b3db-ee6fc9cc148f" ownerguid="1ced72da-3188-4613-bccf-279ac20bf450" /> -<rt class="MoStemAllomorph" guid="fd64fabc-4edc-4d5a-bd26-ab2d73d6bb65" ownerguid="a4cdee93-4e26-4d4c-b6ee-16126454554f"> -<Form> -<AUni ws="qvm-x-ach">cabëza</AUni> -<AUni ws="qvm-x-acl">cabëza</AUni> -<AUni ws="qvm-x-akh">cabëza</AUni> -<AUni ws="qvm-x-akl">cabëza</AUni> -<AUni ws="qvm-x-ame">cabëza</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="fd667d83-70a2-4d50-b79c-873145aaf6b2" ownerguid="a413a5fc-030d-4be9-a9c2-7214de45c7da"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="fd690316-d78a-45c2-a47f-2e654e0e352d" ownerguid="5d9ef67a-e4ba-47ca-8c8c-ea0f512a66cd"> -<ExampleWords> -<AUni ws="en">entrust to the care of, assign, commend, commit, trust with</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to giving something to someone for him to take care of?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="fd699cc6-27fd-4838-ae7c-e1a0e888dc2b" ownerguid="aa23f4a2-4f66-458c-8ac9-e19fa0b0b6d3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="fd6f933e-94e4-47f4-8781-e7dbfff48d33" ownerguid="e9fdc131-addb-4db6-8f79-ae0044e1eb81"> -<ExampleWords> -<AUni ws="en">inspire, inspiration, revelation</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to God's role in producing sacred writings?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="fd730834-d18a-41ea-aab9-ba42939421d4" ownerguid="dde9e168-217c-46ed-8b5d-ddf4139a3872"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">sandy</AUni> -<AUni ws="es">arena</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="52db2b7d-0411-477a-b0f5-f4f320dbf5f6" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoInflAffMsa" guid="fd75ba47-7348-4c70-9565-ca4ec1c2b5c2" ownerguid="c2ebfbd0-5e63-4232-86c9-625e47379016"> -<PartOfSpeech> -<objsur guid="86ff66f6-0774-407a-a0dc-3eeaf873daf7" t="r" /> -</PartOfSpeech> -<Slots> -<objsur guid="cc7bce64-81a2-4c23-9cb0-ba8f7d274837" t="r" /> -</Slots> -</rt> -<rt class="MoStemAllomorph" guid="fd784cf2-73e9-4418-88c8-74670b1890e4" ownerguid="ebccb87f-8554-4b1e-b829-d964c9d9cb9b"> -<Form> -<AUni ws="qvm-x-ach">balsa</AUni> -<AUni ws="qvm-x-acl">balsa</AUni> -<AUni ws="qvm-x-akh">balsa</AUni> -<AUni ws="qvm-x-akl">balsa</AUni> -<AUni ws="qvm-x-ame">balsa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="fd78cd1e-aa35-4076-8446-9bcd658e9f7f" ownerguid="21c84cdb-cb9f-452e-a14a-9be78dcd285b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="Segment" guid="fd7942b3-cfb7-46f9-976d-e6f5706dfca7" ownerguid="fb32d788-83b9-45b0-ad0f-5a7d74baba22"> -<Analyses> -<objsur guid="7aa258a7-6425-4681-bfdb-ee86ed99538d" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="fd797e53-bb9a-40c0-835c-d752ad62aab6" ownerguid="b868b0ae-af5b-431c-8739-ee563065b80e"> -<Form> -<AUni ws="qvm-x-ach">clära</AUni> -<AUni ws="qvm-x-acl">clära</AUni> -<AUni ws="qvm-x-akh">clära</AUni> -<AUni ws="qvm-x-akl">clära</AUni> -<AUni ws="qvm-x-ame">clära</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="fd7b440e-fb52-4381-88fe-429fb3ef0ef1" ownerguid="86265c7f-9c96-4206-8647-9a6a670816bd"> -<Form> -<AUni ws="qvm-x-ach">puyñu</AUni> -<AUni ws="qvm-x-acl">puyñu; puyñu; puyño</AUni> -<AUni ws="qvm-x-akh">puyñu</AUni> -<AUni ws="qvm-x-akl">puyñu; puyñu; puyño</AUni> -<AUni ws="qvm-x-ame">puyñu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="fd7bcf72-791e-4e3f-aeed-274dc72b7b1b" ownerguid="33c3655d-5220-4b47-a7e9-d0d3b28d3998"> -<Form> -<AUni ws="qvm-x-ach">gueli</AUni> -<AUni ws="qvm-x-acl">gueli; guele</AUni> -<AUni ws="qvm-x-akh">qeli</AUni> -<AUni ws="qvm-x-akl">qeli; qele</AUni> -<AUni ws="qvm-x-ame">qili</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="fd7e03f8-61c9-47e9-afa4-ab8917db03a5" ownerguid="0b7b9a1c-588b-475a-ac14-00f0999cbfe9"> -<Abbreviation> -<AUni ws="en">4.8.4.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.286" /> -<DateModified val="2022-9-23 16:55:8.286" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to appeasing someone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Appease</AUni> -</Name> -<Questions> -<objsur guid="55fcb14b-d66c-421f-b657-806ae485470b" t="o" /> -<objsur guid="ccb4a6f7-a4f3-444c-a57d-ad5112f7b74a" t="o" /> -<objsur guid="3f2c6a2a-ec81-4cf1-be48-086c119d6a87" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="fd84a774-18e6-44a8-a733-670d1ba93ff1" ownerguid="d3fa4aff-33ac-4e06-9c7b-4ee2ae81a901"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="fd850542-a957-4b6d-9726-e2600271f2ba"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">desfila</AUni> -<AUni ws="qvm-x-acl">desfila</AUni> -<AUni ws="qvm-x-akh">desfila</AUni> -<AUni ws="qvm-x-akl">desfila</AUni> -<AUni ws="qvm-x-ame">desfila</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+desfilar</AUni> -<AUni ws="qvm-x-acl">+desfilar</AUni> -<AUni ws="qvm-x-akh">+desfilar</AUni> -<AUni ws="qvm-x-akl">+desfilar</AUni> -<AUni ws="qvm-x-ame">+desfilar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.386" /> -<DateModified val="2022-10-10 21:18:47.209" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="19d1f034-1aa1-437b-9e36-faa3576213a8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+desfilar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ae2b077a-eee4-474d-89bf-5da1d1665538" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="77c94870-9b72-4152-a4b9-1622a470f7ca" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +desfilar 
\entryTyp root 
\gENG 
\gSPN 
\e +desfilar 
\c V1 
\ach desfila 
\akh desfila 
\acl desfila 
\akl desfila 
\ame desfila</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="fd85d396-20b2-4fee-90fc-6a14f14ac480" ownerguid="ecc46ea7-1bf5-4f94-a7f0-ec8d77500814"> -<Form> -<AUni ws="qvm-x-ach">compañëru</AUni> -<AUni ws="qvm-x-acl">compañëru; compañëru; compañëro</AUni> -<AUni ws="qvm-x-akh">compañëru</AUni> -<AUni ws="qvm-x-akl">compañëru; compañëru; compañëro</AUni> -<AUni ws="qvm-x-ame">compañëru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="fd87963b-2365-4a15-9044-dbce4701cf89"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">garashta</AUni> -<AUni ws="qvm-x-acl">garashta</AUni> -<AUni ws="qvm-x-akh">qarashta</AUni> -<AUni ws="qvm-x-akl">qarashta</AUni> -<AUni ws="qvm-x-ame">qarashta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qarashta</AUni> -<AUni ws="qvm-x-acl">*qarashta</AUni> -<AUni ws="qvm-x-akh">*qarashta</AUni> -<AUni ws="qvm-x-akl">*qarashta</AUni> -<AUni ws="qvm-x-ame">*qarashta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.104" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="99e35708-ce20-4f44-b969-5e44b71b6ea2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qarashta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="aa5b0cca-0b69-4d6b-b0cd-735d8b4cef34" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="01b2ed68-387c-41ae-93d0-21b8388dddbe" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qarashta 
\entryTyp root 
\gENG drag 
\gSPN arrastrar 
\e *qarashta 
\c V1 
\ach garashta 
\akh qarashta 
\acl garashta 
\akl qarashta 
\ame qarashta</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fd8bad22-4c4b-4423-a91a-742b85f8748d" ownerguid="0ebf9fcc-ee38-4f5f-ab5e-c76e199ef7ae"> -<ExampleWords> -<AUni ws="en">-s</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that there is more than one of something?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="fd91e39d-6d91-4ce7-a713-e0ba6fadda9e"> -<Analyses> -<objsur guid="71db9179-0dd5-445f-b153-c1857c6cf612" t="o" /> -</Analyses> -<Checksum val="-450205824" /> -<Form> -<AUni ws="qvm-x-akh">aywakushqan</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexExampleSentence" guid="fd92955b-97bd-45bc-b7be-fce0acb7eff6" ownerguid="1abfa027-70fd-4f58-957e-d1efa1dd3f23"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">ashnutsicasag yorag cuchicuna</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="fd9701f5-f358-44a8-964a-9c36a51e5603"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">solda:du</AUni> -<AUni ws="qvm-x-acl">solda:du; solda:du; solda:do</AUni> -<AUni ws="qvm-x-akh">solda:du</AUni> -<AUni ws="qvm-x-akl">solda:du; solda:du; solda:do</AUni> -<AUni ws="qvm-x-ame">solda:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+soldado</AUni> -<AUni ws="qvm-x-acl">+soldado</AUni> -<AUni ws="qvm-x-akh">+soldado</AUni> -<AUni ws="qvm-x-akl">+soldado</AUni> -<AUni ws="qvm-x-ame">+soldado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.721" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="1c6de239-f5c2-4003-90d8-e0137407ba24" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+soldado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="be90d603-9081-4638-9470-4a61b1b75568" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="58ee8123-5de6-4c91-a3b4-bf0f9f779bd9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +soldado 
\entryTyp root 
\gENG soldier 
\gSPN soldado 
\e +soldado 
\c N0 
\ach solda:du 
\akh solda:du 
\acl solda:du / _# 
\acl solda:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl solda:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl solda:du / _# 
\akl solda:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl solda:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame solda:du</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fd981e47-8042-4e3a-8ccb-f1a28b2f3400" ownerguid="f858278a-2727-4403-9cf0-565cdececb1e"> -<Question> -<AUni ws="en">(7) Example: the English 'had' + past participle would be coded as:</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fd98f1a1-0e6b-489c-b1e3-2f3cfb1716ef" ownerguid="cd4300c9-265e-4457-8e33-4e0c9a4d4ba8"> -<ExampleWords> -<AUni ws="en">value, price, worth</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to the value of something?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="fd9b8618-1f62-419b-85c3-365a12e85523" ownerguid="541dfa10-bf97-4713-a534-9cbcc7f66bc9"> -<Abbreviation> -<AUni ws="en">3.2.5.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.103" /> -<DateModified val="2022-9-23 16:55:8.103" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for when two people agree on something, think the same way about something, or agree on a decision.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>33W Agree; 31C Agree, Consent</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Agree with someone</AUni> -</Name> -<Questions> -<objsur guid="ef4f583a-c847-427e-815f-b87844aa3c99" t="o" /> -<objsur guid="b1ce7242-6935-41a7-a16c-0d1b76755e3c" t="o" /> -<objsur guid="b6d562df-9c7d-47b4-a952-8b2e12bbe4ff" t="o" /> -<objsur guid="f52dfab4-7952-4c59-97ce-54a42da71565" t="o" /> -<objsur guid="3970f229-139d-4dff-90ab-c0a63ae5a3ef" t="o" /> -<objsur guid="1918649d-7299-402e-af69-fabd5b813133" t="o" /> -<objsur guid="c23ed8c7-33e9-4ff2-b184-ed7056bc7597" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="1d5c798b-0f2d-49f2-bde6-cbcf2ef8fd02" t="o" /> -<objsur guid="2855cda6-a031-46aa-bf3f-718d94374d46" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="fd9d4850-08f6-49ac-9d22-a69fcb618428" ownerguid="4d536ae0-2abc-49af-91e0-70767d9262a9"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="fda0bd50-c5a7-423f-9a87-2ef4db7076b8" ownerguid="a09f3bf8-9bdc-4bfa-8d89-4a145483ed2b"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">DAN 11.45 Paytaga manami pipis ausiliangatsu.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="fda0c1ac-5728-4ba2-9f8e-827f161b5bb1" ownerguid="a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f"> -<Abbreviation> -<AUni ws="en">2.3.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.16" /> -<DateModified val="2022-9-23 16:55:8.16" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words that refer to watching someone or something--to look for some time at something that is happening because you are interested in it and want to know what is happening.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Watch</AUni> -</Name> -<Questions> -<objsur guid="01354a26-6ba0-4629-8216-c8b3aa11cc9e" t="o" /> -<objsur guid="e953e615-6c87-4035-95e4-005e73692dd5" t="o" /> -<objsur guid="bd9161ef-6b87-4258-86ea-e4dab284b70d" t="o" /> -<objsur guid="07624c8c-48b3-4d5e-8f05-c803f1f13594" t="o" /> -<objsur guid="0a98cc0d-9832-4b13-ace2-cce34498d584" t="o" /> -<objsur guid="a42c2d52-3f9d-4ddc-a0d4-839d8f2bf70a" t="o" /> -<objsur guid="3df9d059-a6ff-4a29-9830-4dc564d7f282" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoInflAffixSlot" guid="fda4c591-1349-4f9e-ab87-905ae2aa25e1" ownerguid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5"> -<Name> -<AUni ws="en">case</AUni> -</Name> -<Optional val="True" /> -</rt> -<rt class="WfiAnalysis" guid="fdac360e-4fe4-4aba-bd68-6e4410c06e68" ownerguid="a104adb9-9e74-4130-aee8-072da2a9ac22"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="a8ac52a4-d2d5-47fb-9384-82a21a60f8cd" t="o" /> -<objsur guid="98f01f2d-b7fe-4cd5-922a-a5950d0d8bd6" t="o" /> -<objsur guid="9afc1f7d-d6f7-4a9a-b50b-affabb2fc4f6" t="o" /> -<objsur guid="030bd8df-dc8b-430a-99b2-64b7c139968f" t="o" /> -<objsur guid="5a5741af-bc15-4a43-8472-a5bc3df1bff8" t="o" /> -</MorphBundles> -</rt> -<rt class="LexEntry" guid="fdad4d50-d88d-490e-bb93-9d6283b035ff"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chaupi</AUni> -<AUni ws="qvm-x-acl">chaupi; chaupi; chaupe</AUni> -<AUni ws="qvm-x-akh">chawpi</AUni> -<AUni ws="qvm-x-akl">chawpi; chawpi; chawpe</AUni> -<AUni ws="qvm-x-ame">chawpi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trawpi</AUni> -<AUni ws="qvm-x-acl">*trawpi</AUni> -<AUni ws="qvm-x-akh">*trawpi</AUni> -<AUni ws="qvm-x-akl">*trawpi</AUni> -<AUni ws="qvm-x-ame">*trawpi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.88" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4722a842-e6af-4bd5-99ea-84050b248ca0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trawpi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6ef28bb7-96e0-462d-8ddc-662e57da2b38" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="de4bc75e-bd64-45cc-bc02-b97657521c8d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trawpi 
\entryTyp root 
\gENG middle 
\gSPN medio 
\e *trawpi 
\c N0 
\mp +FinalI 
\ach chaupi 
\akh chawpi 
\acl chaupi / _# 
\acl chaupi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl chaupe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl chawpi / _# 
\akl chawpi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl chawpe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame chawpi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="fdaedbb6-8223-4884-86ff-cb2bad0e8175"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">orgu</AUni> -<AUni ws="qvm-x-acl">orgu; orgu; orgo</AUni> -<AUni ws="qvm-x-akh">orqu</AUni> -<AUni ws="qvm-x-akl">orqu; orqu; orqo</AUni> -<AUni ws="qvm-x-ame">urqu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*urqu</AUni> -<AUni ws="qvm-x-acl">*urqu</AUni> -<AUni ws="qvm-x-akh">*urqu</AUni> -<AUni ws="qvm-x-akl">*urqu</AUni> -<AUni ws="qvm-x-ame">*urqu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.282" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9a0e8478-e42b-4a2f-9ba1-19ed1019abc2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*urqu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4d504c7f-55ba-43a1-b672-bd56bd6f2d04" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c58cc80d-3a64-4276-b356-677cc6c986c2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *urqu 
\entryTyp root 
\gENG male(animal) 
\gSPN macho 
\e *urqu 
\c N0 
\ach orgu 
\akh orqu 
\acl orgu / _# 
\acl orgu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl orgo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl orqu / _# 
\akl orqu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl orqo +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame urqu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="fdb061e7-6c49-4b38-b6bf-5900ecf9184a" ownerguid="c0ce86b5-dd49-41bf-8dfc-3a8ff8b6125c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="fdb7fef7-7288-4df9-8a0e-54f1dd07bd7d" ownerguid="0a42fd83-3b30-4c85-bb68-f5132e9ffeee"> -<ExampleWords> -<AUni ws="en">protect, protection, protective, guard, safeguard, fortify, secure, watch, keep safe, keep, insulate, encircle, defend, defense</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to protecting someone?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fdbad8e4-6ab1-4de3-8d61-fac72c471666" ownerguid="5901caae-f6c4-4d6d-8ce4-d5ba35a3fd96"> -<Form> -<AUni ws="qvm-x-ach">luju</AUni> -<AUni ws="qvm-x-acl">luju; lujo</AUni> -<AUni ws="qvm-x-akh">luju</AUni> -<AUni ws="qvm-x-akl">luju; lujo</AUni> -<AUni ws="qvm-x-ame">luhu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="fdbdb4cf-b6a0-489f-a7db-d7e5e05a25f6"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">aguish</AUni> -<AUni ws="qvm-x-acl">aguish</AUni> -<AUni ws="qvm-x-akh">aqish</AUni> -<AUni ws="qvm-x-akl">aqish</AUni> -<AUni ws="qvm-x-ame">aqish</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*aqish</AUni> -<AUni ws="qvm-x-acl">*aqish</AUni> -<AUni ws="qvm-x-akh">*aqish</AUni> -<AUni ws="qvm-x-akl">*aqish</AUni> -<AUni ws="qvm-x-ame">*aqish</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:20.818" /> -<DateModified val="2022-10-14 23:44:17.432" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a30c8d15-6f38-4e3d-95e4-20fbc6cb6503" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*aqish</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e62511d9-07c1-44c5-be0a-f180760897de" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="c4133e19-8412-4585-afc5-99195f28ac06" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *aqish 
\entryTyp root 
\gENG 
\gSPN cueca 
\e *aqish 
\c N0 
\mp +FinalC 
\ach aguish 
\akh aqish 
\acl aguish 
\akl aqish 
\ame aqish</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="fdbe40d3-1192-4068-9cd3-7c39e57d5ec5" ownerguid="d8211484-4d08-4317-915d-61911e1334cb"> -<Form> -<AUni ws="qvm-x-ach">convenci</AUni> -<AUni ws="qvm-x-acl">convenci; convence</AUni> -<AUni ws="qvm-x-akh">convenci</AUni> -<AUni ws="qvm-x-akl">convenci; convence</AUni> -<AUni ws="qvm-x-ame">convenci</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="fdc0fd56-75aa-40d1-b6f6-76c646db72e8" ownerguid="e03ac9db-6156-4002-888a-6f359a2e34e2"> -<Form> -<AUni ws="qvm-x-ach">cadina</AUni> -<AUni ws="qvm-x-acl">cadina</AUni> -<AUni ws="qvm-x-akh">cadina</AUni> -<AUni ws="qvm-x-akl">cadina</AUni> -<AUni ws="qvm-x-ame">cadina</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemAllomorph" guid="fdc47dff-9bef-4496-bb40-457a671cbb41" ownerguid="54565093-6c68-42e0-9b85-bfc6cbcde72c"> -<Form> -<AUni ws="qvm-x-ach">cajona</AUni> -<AUni ws="qvm-x-acl">cajona</AUni> -<AUni ws="qvm-x-akh">cajona</AUni> -<AUni ws="qvm-x-akl">cajona</AUni> -<AUni ws="qvm-x-ame">cajona</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="fdc4e295-4ef6-4997-9c6d-6a902af80ed8" ownerguid="3acf5e20-b626-4f0a-a582-d386a0e30792"> -<ExampleWords> -<AUni ws="en">sheath, holster</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to sheaths?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="fdca1829-63d1-42f4-93d6-3a279b242068" ownerguid="ca34fbb8-44db-4e14-9a62-e483dd3db481"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">tsu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">tsu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">tsu; tsu; tso</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">tsu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="7d8c2af8-5954-49ea-9b96-3dc69843dc37" t="r" /> -</Morph> -<Msa> -<objsur guid="638e81ea-1800-4d98-82a7-2bf320094fbe" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="fdccc69d-609b-4119-b850-83fe37f9e55e" ownerguid="8c28c640-db5b-43e2-a1e6-b0e381962129"> -<ExampleWords> -<AUni ws="en">cow, goat, sheep, horse, donkey, dog, cat, chicken, duck, goose, turkey</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What animals are commonly domesticated?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fdcf01cd-fd9d-462a-b1ad-5e609ec8e10e" ownerguid="691bdba3-c216-4b42-877c-674bbdb517a7"> -<ExampleWords> -<AUni ws="en">distrust, mistrust, suspicion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to the feeling that you cannot trust someone?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="fdd0e73f-9587-4bc9-98da-baf9233943bf" ownerguid="1913fed8-1f71-4689-a3e9-74482e6c1b46"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="9f418efb-27b1-40ce-be95-cbc2ab6e8d4f" t="o" /> -<objsur guid="360f9f07-9aaf-465b-bb83-6a6ad9167e06" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemMsa" guid="fdd30be9-8be6-43d7-b965-2ba326f216dc" ownerguid="cc0fbaac-6af7-4c71-98a1-c85c10225719"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="fdd37ac7-9c24-47cf-8fb0-ec0c964c8ef8" ownerguid="b40637e5-be76-4a82-96bb-c55306ee293d"> -<ExampleWords> -<AUni ws="en">girlfriend, boyfriend, partner, lover, mistress, old flame</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a girlfriend or boyfriend?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fdd958c7-025b-4421-94c5-6a2665e83690" ownerguid="aff720bd-fb3d-4f85-bbc4-41d5fc5b83f8"> -<ExampleWords> -<AUni ws="en">celebration, party, feast, festival, pageant, parade</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a celebration?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="fdde5c1b-199e-41e6-896e-cbd304310735" ownerguid="4d80670f-7cea-4381-bd29-2a1d7fdb295a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="fddfd995-311c-48f5-a5b9-d7b381b704c4" ownerguid="5a36106b-cace-41ee-8de8-b8418d8ac433"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="fde2a4e4-8771-49b6-9d0e-f4fc7d06f155" ownerguid="c8abe9ee-d9b9-4534-84cb-70161ccb093e"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 86.14 Wanutsicogcunaga tröpazacarcurmi wanutsimayta munarcaycan.</Run> -</AStr> -</Example> -</rt> -<rt class="WfiWordform" guid="fde45a84-0200-401f-bfe2-e5eec524e5ca"> -<Analyses> -<objsur guid="2269aeba-112c-4eab-a1e5-7d4f6aaf6c8d" t="o" /> -</Analyses> -<Checksum val="-1623993528" /> -<Form> -<AUni ws="qvm-x-akh">aywakamun</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="CmDomainQ" guid="fde6041c-e375-48fd-80a3-a435a728a3b8" ownerguid="c7ccc5bb-181d-420f-8665-64793fefb37b"> -<ExampleWords> -<AUni ws="en">imperfect, flawed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words describe something that is not perfect?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fde70f7f-2d99-44d4-84d8-16ad6a62473a" ownerguid="f8c6a6a9-49f0-408a-9237-a66e852da7d3"> -<ExampleWords> -<AUni ws="en">calendar, pocket calendar, wall calendar, daily planner, schedule</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words are used for printed displays of the year?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="fde96b45-cc47-4b35-88f8-a62f2243df26" ownerguid="45576422-ebcd-417b-b5ad-9b895f2be5d6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="996c06ca-a2c6-4f13-864b-8617ce6a97ec" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">guarantee</AUni> -<AUni ws="es">garantía</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="559d729a-aacf-4f08-8c6b-9790df0ce37e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="fde99846-cd4b-4e1b-8e15-7cbd48249b00" ownerguid="3900a1b3-d468-484e-8f1f-b804096f5147"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="bd1c0ea7-6a7b-47bb-b5d4-bcc0133f834d" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="4892cb61-9578-4920-9783-321d4bd7667f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="fdea127e-b11a-40e0-8b9e-86c87a2e7bc2" ownerguid="5386368c-d3e5-4ff4-88b0-f27c801a9d1d"> -<Form> -<AUni ws="qvm-x-ach">sueñu</AUni> -<AUni ws="qvm-x-acl">sueñu</AUni> -<AUni ws="qvm-x-akh">sueñu</AUni> -<AUni ws="qvm-x-akl">sueñu</AUni> -<AUni ws="qvm-x-ame">sueñu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="fdeb7d4d-210d-4db9-9e0b-754cbdadad98" ownerguid="643cc712-b3b3-42d0-971e-7a4c8a6cbf1e"> -<ExampleWords> -<AUni ws="en">gait, funny gait</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(14) What words refer to the way in which a person walks?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="fdec614b-f754-4b68-a063-a6d935adcfd2" ownerguid="03894f92-24c9-4c9f-a977-dfeb641fd13a"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">luck</AUni> -<AUni ws="es">suerte</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="836aed18-d981-4648-b277-99db340298cc" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiWordform" guid="fdee8ed6-d450-416a-816e-9a16e82804d8"> -<Analyses> -<objsur guid="a9274aef-d301-40d6-a5fd-b5ff5878e0b4" t="o" /> -<objsur guid="cbb679d3-ae6f-497e-b7d3-16b5a16a0730" t="o" /> -</Analyses> -<Checksum val="-1328718777" /> -<Form> -<AUni ws="qvm-x-akh">junaqtami</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="fdf3fdca-2a38-4390-ad4f-417403adf6fd" ownerguid="12cc3933-0bab-4b41-bc88-aea8f068ea8d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="fdf5b9e5-930a-4ef8-ae16-95849a152b1f" ownerguid="ad29b77c-0527-4b24-8b5a-73aff588a255"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">roll</AUni> -<AUni ws="es">enrollar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9022a64c-345e-49fa-8c13-2d2b47557bb5" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="fdf8fb19-aab4-4796-81e6-201393dc82f7" ownerguid="8fff393a-23c2-42bb-8da8-9b151e790904"> -<ExampleWords> -<AUni ws="en">wrinkled, wizened, gray, show your age, look your age</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a person who looks old?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="fdf95697-78c5-43fb-b6af-ee8c48fa12e8" ownerguid="3448a62a-7774-463d-a8cd-af8cfa753338"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">gargu</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">gargu; gargo</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">qarqu</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">qarqu; qarqo</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">qarqu</Run> -</AStr> -</Form> -<Morph> -<objsur guid="2232ab14-ff9d-4403-b432-21884e84369c" t="r" /> -</Morph> -<Msa> -<objsur guid="d2d2bfb6-5ff7-4b48-831a-c27cb6b0f51e" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="fdf970b5-9c49-461a-ae38-3728be79eacb" ownerguid="e3e68e2d-8fbf-4e9e-a781-3ce55c374792"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="4f51ed1d-e49d-4ca0-b737-c67262ccdcc7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="fdfcfd0b-8f88-47fd-a814-e1b4e334b50d" ownerguid="ba06de9e-63e1-43e6-ae94-77bea498379a"> -<ExampleWords> -<AUni ws="en">someone, somebody</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person when you aren't sure who the person is?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="fdfd536c-369c-4668-aec2-ff9df51d78f1" ownerguid="002f8a20-0dfd-4b7e-a22a-b5afeabae1eb"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="fdffdd76-aced-48cc-9b20-9d8c90b3e49e" ownerguid="5f791daf-98a2-4787-93cc-8813aea93c4d"> -<ExampleWords> -<AUni ws="en">tangle (n), tangled mess, jumble, mix-up, rat's nest, snarl</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something that has become tangled?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="fe04128e-533e-4d69-b06b-59f515cc38ce" ownerguid="8e861786-8f47-4019-9f59-fcb9e5e65c7f"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="fe0ad458-333d-4cd1-bacf-d10f15f9b8fa"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">obliga</AUni> -<AUni ws="qvm-x-acl">obliga</AUni> -<AUni ws="qvm-x-akh">obliga</AUni> -<AUni ws="qvm-x-akl">obliga</AUni> -<AUni ws="qvm-x-ame">obliga</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+obligar</AUni> -<AUni ws="qvm-x-acl">+obligar</AUni> -<AUni ws="qvm-x-akh">+obligar</AUni> -<AUni ws="qvm-x-akl">+obligar</AUni> -<AUni ws="qvm-x-ame">+obligar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.616" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="9a1f3d20-0579-4020-a2ab-64ba0933dc8a" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+obligar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="8a49c02b-29d5-4c61-8183-b1fd5300a0aa" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="bfb8c31e-189b-47df-a0fd-175d18db3a00" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +obligar 
\entryTyp root 
\gENG obligate 
\gSPN obligar 
\e +obligar 
\c V2 
\ach obliga 
\akh obliga 
\acl obliga 
\akl obliga 
\ame obliga</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fe0d54de-89a1-4c15-ab48-6f1c1189f69a" ownerguid="513771eb-8467-468a-8bc8-e52567e66df9"> -<ExampleWords> -<AUni ws="en">working relationship, affiliation, association, partnership</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to a relationship between people who work together?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="fe0e5d58-8870-42b3-9744-bfa0b500641a"> -<Analyses> -<objsur guid="52de16bd-6e72-403c-a187-0c5178ce44b5" t="o" /> -<objsur guid="a228d3b1-a6b5-4dd7-9c77-ff4a2df3cf52" t="o" /> -<objsur guid="c6e365c2-5fd4-4d69-8202-bc20a49fa1d8" t="o" /> -</Analyses> -<Checksum val="352011114" /> -<Form> -<AUni ws="qvm-x-akh">waktsayashqami</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexEntry" guid="fe0f53d3-a585-4874-98f3-8e9b3424a84a"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gata</AUni> -<AUni ws="qvm-x-acl">gata</AUni> -<AUni ws="qvm-x-akh">qata</AUni> -<AUni ws="qvm-x-akl">qata</AUni> -<AUni ws="qvm-x-ame">qata</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qata.v</AUni> -<AUni ws="qvm-x-acl">*qata.v</AUni> -<AUni ws="qvm-x-akh">*qata.v</AUni> -<AUni ws="qvm-x-akl">*qata.v</AUni> -<AUni ws="qvm-x-ame">*qata.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.144" /> -<DateModified val="2022-10-10 21:19:54.721" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="12fde7ca-dd9b-416e-9f77-28468f4112da" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qata.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ff548205-e737-4f3b-8df7-eb02f93307cb" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="5eb5b210-94af-4b37-bbe4-51196a6948f9" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qata.v 
\entryTyp root 
\gENG roof 
\gSPN techar 
\e *qata.v 
\c V2 
\ach gata 
\akh qata 
\acl gata 
\akl qata 
\ame qata</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="fe13651d-7021-4ca5-9693-9874fe10954f" ownerguid="9f4a97e7-74f2-4b23-96c0-40261e2065a3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">build</AUni> -<AUni ws="es">construir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="ebba10d4-6f8c-4edb-8237-af3eaa634a9f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexExampleSentence" guid="fe163d6d-cad5-4667-909c-709c2860d315" ownerguid="3fdf807a-d185-4b25-a893-4513d9de0be1"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PRO 23.8 Tsaynog cashganta tantyacur gustu micurcurpis gumitanquipagmi.</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemAllomorph" guid="fe165681-164f-4527-bd1a-9bcaa578e72b" ownerguid="8863ed55-e31f-4eae-8b56-5c020f073658"> -<Form> -<AUni ws="qvm-x-ach">alquïlu</AUni> -<AUni ws="qvm-x-acl">alquïlu; alquïlu; alquïlo</AUni> -<AUni ws="qvm-x-akh">alquïlu</AUni> -<AUni ws="qvm-x-akl">alquïlu; alquïlu; alquïlo</AUni> -<AUni ws="qvm-x-ame">alquïlu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="fe16cc2c-3048-4685-b0b9-54379afad5d2" ownerguid="4a6f92f3-923f-4d27-ac96-a396c3d9658b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="c8a7eb6f-0be1-441e-9f89-1b1139e85e02" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="fe171c5a-c462-4e7d-b1ac-1fa0a11b6187" ownerguid="4d2a67fb-91c8-4436-87f4-f4eab6cb0828"> -<ExampleWords> -<AUni ws="en">leprosy, chickenpox, smallpox, measles, German measles, scabies, ringworm, (itching of foot due to worms), dermatitis, eczema, fungus, shingles</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What are the names of specific skin diseases?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="fe18b08e-caf3-406c-8a8b-2ce244aaaaee"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">puri</AUni> -<AUni ws="qvm-x-acl">puri; pure</AUni> -<AUni ws="qvm-x-akh">puri</AUni> -<AUni ws="qvm-x-akl">puri; pure</AUni> -<AUni ws="qvm-x-ame">puri</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*puri</AUni> -<AUni ws="qvm-x-acl">*puri</AUni> -<AUni ws="qvm-x-akh">*puri</AUni> -<AUni ws="qvm-x-akl">*puri</AUni> -<AUni ws="qvm-x-ame">*puri</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.12" /> -<DateModified val="2022-10-10 21:19:54.711" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c38fc277-dc69-47b6-b26d-b0ab5925ebb2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*puri</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="08a7c8a1-fd87-4531-bbe3-39dd73143133" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="fba0a3e3-6724-40ce-a0c0-44389bdb6d70" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *puri 
\entryTyp root 
\gENG walk 
\gSPN andar 
\e *puri 
\c V1 
\mp +FinalI 
\ach puri 
\akh puri 
\acl puri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl pure +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl puri +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl pure +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame puri</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fe1980c2-10ce-4d34-96db-bb61e152c772" ownerguid="e9cafabe-f0f7-4142-a6f6-d1c94bdc4b5c"> -<ExampleWords> -<AUni ws="en">empty, blank, devoid, hollow, clear, cleaned out, barren, drained, dry</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe something that is empty?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="fe19affb-aa88-4357-bc65-1f3e4b55c32a" ownerguid="0afc6314-92a7-40c8-ab4f-ce308ac4863d"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">castrate</AUni> -<AUni ws="es">capar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f24f02d9-4251-4932-b4c7-a4d2508e3090" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="fe1a42b7-d265-4b48-88f2-5a4e967ed3df" ownerguid="ded5c3be-18d2-4d2b-afd2-1a4802d3180d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="fe1feb7c-7702-4e8e-8473-0af23aade88e" ownerguid="cb95189c-8c74-465b-af07-48e08dbf7c39"> -<ExampleWords> -<AUni ws="en">strong feeling, strong emotion, passion</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to a strong feeling?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="fe2136a5-5025-4394-b6d7-29b78f480494" ownerguid="9a04fa57-eeb7-4e70-8b0e-ccf8d45404f8"> -<Evaluations> -<objsur guid="68cd31f9-c1f3-46ac-86be-a18e3b31edfb" t="r" /> -<objsur guid="8caa11bb-cac4-4836-a081-1666245106b9" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="c0768da3-3732-4f0e-841a-1d884e9492fb" t="o" /> -<objsur guid="e17789ad-a590-41c9-8d4e-57376dfd46a3" t="o" /> -<objsur guid="fba339da-ad6a-434e-8c79-41db5bc25808" t="o" /> -<objsur guid="9f6d9090-8931-41f2-a93d-3df4ee15fff1" t="o" /> -</MorphBundles> -</rt> -<rt class="LexSense" guid="fe218ad9-548f-4981-b7e5-77c11a607d8c" ownerguid="a41bc2dd-1cae-4c9d-b160-1cef755c581e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">necessary</AUni> -<AUni ws="es">necesario</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d664b1eb-1815-4314-a4b1-93b251315cae" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="fe22e7b6-af7f-4f65-a525-753701a40aaf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">pobre:za</AUni> -<AUni ws="qvm-x-acl">pobre:za</AUni> -<AUni ws="qvm-x-akh">pobre:za</AUni> -<AUni ws="qvm-x-akl">pobre:za</AUni> -<AUni ws="qvm-x-ame">pobre:za</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+pobreza</AUni> -<AUni ws="qvm-x-acl">+pobreza</AUni> -<AUni ws="qvm-x-akh">+pobreza</AUni> -<AUni ws="qvm-x-akl">+pobreza</AUni> -<AUni ws="qvm-x-ame">+pobreza</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.889" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="777bfa4a-56d5-47b6-9da0-0fecfb4d746f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+pobreza</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ea3b0f5a-182c-4b79-ad7e-80f1fa7205da" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="81492ead-8b70-4813-9d8a-edc5d5a3fd02" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +pobreza 
\entryTyp root 
\gENG famine 
\gSPN hambruna 
\e +pobreza 
\c N0 
\ach pobre:za 
\akh pobre:za 
\acl pobre:za 
\akl pobre:za 
\ame pobre:za</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fe2b7e93-b128-431f-8993-75152e998231" ownerguid="d030f0c7-31a3-47da-be35-46f1eba63ae9"> -<ExampleWords> -<AUni ws="en">like, have a liking for, adore, enjoy, be fond of, proud of someone, fancy something, have a fancy for, take a fancy to, care for, have affection for, admire, look up to, think highly of, approve, pleased, admire, appeals to you, be to your liking, go down well, savor (v), luxuriate, be happy with, feel good toward, feel good about</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to liking something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fe2c4c0e-6191-4fab-96bf-1cd92840cad2" ownerguid="bce3f390-452c-4ca9-8c36-5fbcfd6b4755"> -<ExampleWords> -<AUni ws="en">change your behavior, modify your behavior, alter your behavior, turn to something</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What general words refer to changing your behavior?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fe2cd2e5-0d35-4764-b5df-65080c5ef4f0" ownerguid="f936b01d-6aee-42a5-a3b6-e1f03daebfa7"> -<Form> -<AUni ws="qvm-x-ach">mëcha</AUni> -<AUni ws="qvm-x-acl">mëcha</AUni> -<AUni ws="qvm-x-akh">mëcha</AUni> -<AUni ws="qvm-x-akl">mëcha</AUni> -<AUni ws="qvm-x-ame">mëcha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="fe2f6381-db31-405e-9383-178630078f2b" ownerguid="7c7f62d8-0293-45ba-8658-956c38bafc66"> -<ExampleWords> -<AUni ws="en">destiny, fate, fortune, luck, chance, throw of the dice</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to an impersonal force that determines what happens to a person?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="fe336ac1-4c3f-4ab1-a759-4b7a7ed87530" ownerguid="a503cb69-5336-4b15-bb94-6a81a7c96a05"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">mate</AUni> -<AUni ws="es">aparearse</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="0b6ce15a-f01d-4839-ad02-abd430e32d19" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="fe33b9e8-f8f8-445e-a955-3a92c1ce2f04" ownerguid="a77b6825-41c2-4f04-9864-8a99f0ed10b3"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="fe3440db-1834-460f-a440-72e44e07f8ec" ownerguid="5dcf3ce8-aa00-4478-b00e-691549fa29e8"> -<ExampleWords> -<AUni ws="en">selfishness</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the quality of being selfish?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="fe3cb348-3a61-4661-bb7b-16196d128efb" ownerguid="3b28c9b3-6371-4999-a063-46492b02026c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="fe41fdb7-4bc5-4944-9f22-a0f8f0ee08e9" ownerguid="55c59036-a1b3-4e89-ac77-1727b5f3c154"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">raise</AUni> -<AUni ws="es">subir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="774acacd-b130-4b32-8182-4ace728a457f" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="fe42a618-d811-4a61-9781-d784150d6558" ownerguid="1ca26512-75f6-4a7a-a7cc-07d08aa799d9"> -<ExampleWords> -<AUni ws="en">make amends, make up for, set things right, make restitution, pay back what was taken, return stolen goods</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to an effort to make up for doing wrong?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="fe44f235-2391-433e-8f3e-ac6ae983f941" ownerguid="b5d47dab-541a-428f-9d26-4593f29eab3c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="fe492f6e-51ea-4777-bcbe-ddd0153a8a44" ownerguid="cf8b9a86-96e2-4712-a76d-39f7695a338b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">reference</AUni> -<AUni ws="es">referencia</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="8b550145-e8f8-477d-a094-571f9bcd7943" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="fe4be3a5-3356-413b-8f90-2450a82bf8f5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">jampi</AUni> -<AUni ws="qvm-x-acl">jampi; jampi; jampe</AUni> -<AUni ws="qvm-x-akh">jampi</AUni> -<AUni ws="qvm-x-akl">jampi; jampi; jampe</AUni> -<AUni ws="qvm-x-ame">hampi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*hampi.n</AUni> -<AUni ws="qvm-x-acl">*hampi.n</AUni> -<AUni ws="qvm-x-akh">*hampi.n</AUni> -<AUni ws="qvm-x-akl">*hampi.n</AUni> -<AUni ws="qvm-x-ame">*hampi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.650" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="44dddad2-98e5-4f25-8d07-832aea441990" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*hampi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c4b4f877-e3e1-4479-bc1d-4702bc0ceb85" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="231a35c2-78fc-4d8e-8367-9a5dbcdd5d28" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *hampi.n 
\entryTyp root 
\gENG cure 
\gSPN remedio 
\e *hampi.n 
\c N0 
\mp +FinalI 
\ach jampi 
\akh jampi 
\acl jampi / _# 
\acl jampi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl jampe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl jampi / _# 
\akl jampi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl jampe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame hampi</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="fe50186f-0207-45f2-8ee6-a2565c391360" ownerguid="8bee3444-588c-4cf0-a7a8-87548bbf7731"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">juc</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">juc</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">juk</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">juk</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">huk</Run> -</AStr> -</Form> -<Morph> -<objsur guid="64a6c739-49a9-41ef-b000-1c2aceb30fc1" t="r" /> -</Morph> -<Msa> -<objsur guid="4f8f8fdd-f3f4-45d3-bfda-babfb57eb81a" t="r" /> -</Msa> -<Sense> -<objsur guid="ad9e3a4d-6503-4611-9211-cf4c1da9ccbc" t="r" /> -</Sense> -</rt> -<rt class="Segment" guid="fe52c697-533c-42ab-9fd5-50d0d06d673f" ownerguid="12800eff-536c-46d4-92c4-2cd7c47c0c4f"> -<Analyses> -<objsur guid="5551f669-39d0-4cdc-829c-f507cf23b39b" t="r" /> -</Analyses> -<BeginOffset val="0" /> -</rt> -<rt class="LexEntry" guid="fe542788-f41e-4106-95b3-7257792896b7"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">felicita</AUni> -<AUni ws="qvm-x-acl">felicita</AUni> -<AUni ws="qvm-x-akh">felicita</AUni> -<AUni ws="qvm-x-akl">felicita</AUni> -<AUni ws="qvm-x-ame">felicita</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+felicitar</AUni> -<AUni ws="qvm-x-acl">+felicitar</AUni> -<AUni ws="qvm-x-akh">+felicitar</AUni> -<AUni ws="qvm-x-akl">+felicitar</AUni> -<AUni ws="qvm-x-ame">+felicitar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.538" /> -<DateModified val="2022-10-10 21:19:54.720" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f57531c7-e54f-45e7-8c64-7ee4a56afde5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+felicitar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b8b512d8-24d3-441c-aa31-e9eceac8a979" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="454c1222-a7b5-4fff-b02f-5fb6ab18af1f" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +felicitar 
\entryTyp root 
\gENG congratulate 
\gSPN felicitar 
\e +felicitar 
\c V2 
\ach felicita 
\akh felicita 
\acl felicita 
\akl felicita 
\ame felicita</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="fe5759d2-d197-4ae9-99ab-480851891860" ownerguid="dd6d578a-7fb1-45e1-a484-073eab706675"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Lev 15.2 Gamcuna Israel runacunata caynog tantyatsinqui: Pï runatapis purgación\f + 15.1 Runata purgación tsarishganta nintsi chiulacunan antsar yorag yacu yarguptinmi.\f* tsariptin impürumi canga.</Run> -</AStr> -</Example> -</rt> -<rt class="CmSemanticDomain" guid="fe58ae61-ab0b-43a4-86fb-d9aedd199932" ownerguid="6045c6eb-efea-4586-95f8-840d32578d66"> -<Abbreviation> -<AUni ws="en">7.5.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.546" /> -<DateModified val="2022-9-23 16:55:8.546" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to mixing things together--to put two or more different kinds of substances, like liquids or cooking ingredients, together.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>63C Mix</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Mix</AUni> -</Name> -<Questions> -<objsur guid="657c3bc3-3002-4e90-8492-7ab14337f741" t="o" /> -<objsur guid="dfba3cc2-724a-4d09-a5d2-87f565b35695" t="o" /> -<objsur guid="99917717-0cdb-414f-a958-5395ef98ea4a" t="o" /> -<objsur guid="79b14d70-29ab-4949-ac71-d165d402ac2b" t="o" /> -<objsur guid="c5a6409e-6600-4226-844c-359479c245f1" t="o" /> -<objsur guid="529fbf2f-7324-4c68-b56b-67815a6bc22c" t="o" /> -<objsur guid="347763dc-8b04-4cc3-952e-bc6be7144f08" t="o" /> -<objsur guid="254710be-4fff-440e-beab-142d24b1f8c5" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="9b158c9e-9ba5-4be2-a9a1-77ef888a3b06" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="fe5ab833-a38c-44f3-ac07-10370862dbe2" ownerguid="5428a01a-5717-4d95-a125-0de648c7d173"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">brand</AUni> -<AUni ws="es">seña</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="84614081-77bf-4fc3-88c3-b819f80025d8" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="fe5baff2-e4d9-4e43-9531-b26b658d00ff" ownerguid="bbb7808d-7901-4f32-be05-86e73a8a9e57"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">namesake</AUni> -<AUni ws="es">tocayo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="9434061e-80df-49ab-8ee4-86a95abeb762" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="fe5c8530-9237-4bbb-aaf8-8951edeb2fcc" ownerguid="9b62e5bc-6efd-4005-a445-e48f78c366b1"> -<Form> -<AUni ws="qvm-x-ach">vära</AUni> -<AUni ws="qvm-x-acl">vära</AUni> -<AUni ws="qvm-x-akh">vära</AUni> -<AUni ws="qvm-x-akl">vära</AUni> -<AUni ws="qvm-x-ame">vära</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="fe649c64-54c2-47bb-9d21-ba7a19f9bdc0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">lacatu</AUni> -<AUni ws="qvm-x-acl">lacatu; lacatu; lacato</AUni> -<AUni ws="qvm-x-akh">lakatu</AUni> -<AUni ws="qvm-x-akl">lakatu; lakatu; lakato</AUni> -<AUni ws="qvm-x-ame">lakatu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*lakatu</AUni> -<AUni ws="qvm-x-acl">*lakatu</AUni> -<AUni ws="qvm-x-akh">*lakatu</AUni> -<AUni ws="qvm-x-akl">*lakatu</AUni> -<AUni ws="qvm-x-ame">*lakatu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.43" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0cc4baf7-020c-4b5a-8431-5f2ac4e72b9f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*lakatu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="baf0619f-5a28-4d92-92f8-baa1180ad81d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b134abc9-7ea2-4f49-91a0-a817c571632a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *lakatu 
\entryTyp root 
\gENG 
\gSPN 
\e *lakatu 
\c N0 
\ach lacatu 
\akh lakatu 
\acl lacatu / _# 
\acl lacatu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lacato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lakatu / _# 
\akl lakatu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lakato +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame lakatu</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="fe64ba7f-e676-4a97-8a62-c9b3d39329d3" ownerguid="cd4e0a03-47f9-4119-a883-ea54123d0817"> -<Form> -<AUni ws="qvm-x-ach">mitsi</AUni> -<AUni ws="qvm-x-acl">mitsi; mitse</AUni> -<AUni ws="qvm-x-akh">mitsi</AUni> -<AUni ws="qvm-x-akl">mitsi; mitse</AUni> -<AUni ws="qvm-x-ame">mitsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="fe66d433-5135-498e-a29d-b42bf0317252" ownerguid="771e3882-f672-4e67-8580-edd82d7e5090"> -<Abbreviation> -<AUni ws="en">4.3.4.6</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.235" /> -<DateModified val="2022-9-23 16:55:8.235" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to meddling--involving oneself in something that does not concern oneself, such as someone else's business or affairs, or a fight between other people.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>88E' Being a Busybody</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Meddle</AUni> -</Name> -<Questions> -<objsur guid="0b8ab11f-01e6-4b49-ba21-d546473126cd" t="o" /> -<objsur guid="39f930c8-0b42-4a8d-9442-0454bc897f02" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="57c9a370-0f46-4475-98fd-c7a8b3f5074c" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmDomainQ" guid="fe68d7e1-d5a2-4ff5-a0da-a92f9cf4fffa" ownerguid="8b76f4a2-9926-4c76-8d4f-563371683219"> -<ExampleWords> -<AUni ws="en">chemist, alchemist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a person who works with chemicals?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="fe6cfaa7-1e0c-4fae-806c-7ae07375ba6c"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">choga</AUni> -<AUni ws="qvm-x-acl">choga</AUni> -<AUni ws="qvm-x-akh">choqa</AUni> -<AUni ws="qvm-x-akl">choqa</AUni> -<AUni ws="qvm-x-ame">chuqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*truqa</AUni> -<AUni ws="qvm-x-acl">*truqa</AUni> -<AUni ws="qvm-x-akh">*truqa</AUni> -<AUni ws="qvm-x-akl">*truqa</AUni> -<AUni ws="qvm-x-ame">*truqa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.180" /> -<DateModified val="2022-10-10 21:19:54.715" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a0f207d9-6daa-4746-a608-47f0d438b2d9" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*truqa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="2adb2d6a-24c7-4f89-8ae6-0c88d270e94b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="cc582e77-4cb7-4d8e-bf75-f4873389d5a4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *truqa 
\entryTyp root 
\gENG cough 
\gSPN tocer 
\e *truqa 
\c V1 
\ach choga 
\akh choqa 
\acl choga 
\akl choqa 
\ame chuqa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="fe6ffac5-ff4d-4a57-b5a0-1ed5a0c3188f" ownerguid="4c9458da-13a4-4bed-b7c7-f843e9c73479"> -<Form> -<AUni ws="qvm-x-ach">bäsi; bäsi</AUni> -<AUni ws="qvm-x-acl">bäsi; bäsi; bäse</AUni> -<AUni ws="qvm-x-akh">bäsi; bäsi</AUni> -<AUni ws="qvm-x-akl">bäsi; bäsi; bäse</AUni> -<AUni ws="qvm-x-ame">bäsi; bäsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="fe706607-4429-48fa-9908-f50db2083ec8" ownerguid="ea232446-d3a3-42a1-b505-58f570ba3846"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">together</AUni> -<AUni ws="es">junto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e2f2ab18-7e62-4a56-925c-341175ce5b76" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="fe72934a-5456-4bb3-abde-6c0c86cb801e" ownerguid="8497fb66-8b91-46b9-a0d5-fb9385319561"> -<ExampleWords> -<AUni ws="en">gustatory</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe something that has to do with tasting?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fe78279f-cc9d-421a-ad20-b4bb03cce9b8" ownerguid="6a1c2ce5-bb21-4cb6-85f3-fa13f96131a4"> -<Form> -<AUni ws="qvm-x-ach">gaucha</AUni> -<AUni ws="qvm-x-acl">gaucha</AUni> -<AUni ws="qvm-x-akh">qawcha</AUni> -<AUni ws="qvm-x-akl">qawcha</AUni> -<AUni ws="qvm-x-ame">qawcha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="fe7b5723-1331-4c9e-93fd-829c028210a3" ownerguid="123c8124-826f-49a8-a1c3-94d155e60220"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="fe7ff637-cbe3-4e65-8565-12b2ec1b6eb4" ownerguid="fa174837-2f92-417f-818c-05a86c64b9e3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">ignorant</AUni> -<AUni ws="es">ignorante</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="26ea3bc1-d709-48f2-8438-aab4770e7495" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="fe80b590-0a9a-4152-9ab7-e17f3b21d124" ownerguid="edbfc928-049c-4cb7-8c88-8e8af38287c7"> -<ExampleWords> -<AUni ws="en">love, dear, honey, darling, dearest, sweetheart</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What do people call someone that they love?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="fe82422e-d33d-4920-85ea-62e3428e6576" ownerguid="34d2e65f-4a27-45a4-8afc-c53b886f9909"> -<Category> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</Category> -<Evaluations> -<objsur guid="41581e3a-7ed3-41ac-94c7-6e91dbcc108b" t="r" /> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<Meanings> -<objsur guid="c0bcfcc1-1d7a-4dd2-8bf4-2447b390d331" t="o" /> -</Meanings> -<MorphBundles> -<objsur guid="c10a68a3-5bc7-4c85-8f0c-570a74cec4d9" t="o" /> -</MorphBundles> -</rt> -<rt class="CmDomainQ" guid="fe830ccb-1be1-4d7b-a6d6-6255da334477" ownerguid="08239f53-daa5-47a6-9f39-29a9064b0c27"> -<ExampleWords> -<AUni ws="en">reunite, reassemble, rejoin, re-glue, reattach, refasten, put back together</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to reuniting things that have come apart?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fe84b9fe-6792-428a-bc52-d686a97b7b18" ownerguid="e6c9fe4c-199e-4934-b622-739a85b0830d"> -<ExampleWords> -<AUni ws="en">order</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to when everything is organized?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fe863be5-c690-483a-a99a-2ef76852d580" ownerguid="d5c12a8b-109d-4f0e-8167-f881484d021a"> -<Form> -<AUni ws="qvm-x-ach">entrega</AUni> -<AUni ws="qvm-x-acl">entrega</AUni> -<AUni ws="qvm-x-akh">entrega</AUni> -<AUni ws="qvm-x-akl">entrega</AUni> -<AUni ws="qvm-x-ame">entrega</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="fe864c4e-a942-4d33-8611-d4e05724c3c4" ownerguid="b5259e80-7522-4e4c-9784-1b427333ab56"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="fe8846be-2361-4236-9700-6c1840bc816d" ownerguid="df149819-608f-46cd-ba0f-55f1d9d2e8ec"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">miles <per> hour</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(2) What words are used to indicate the speed of something?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="fe89a0f4-2155-424b-bf90-c1133dc41c8d" ownerguid="44bf22fd-3725-4c49-bd3c-434402c33493"> -<Abbreviation> -<AUni ws="en">5.1.1.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.306" /> -<DateModified val="2022-9-23 16:55:8.306" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a cabinet.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Cabinet</AUni> -</Name> -<Questions> -<objsur guid="ccb17d56-8785-42c5-a66b-ba6cff070ac5" t="o" /> -<objsur guid="5c3692be-7de6-48ac-9db2-de1131d4f7e5" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="fe8b2653-2144-405b-8886-53662db8d64e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">va:mu</AUni> -<AUni ws="qvm-x-acl">va:mu</AUni> -<AUni ws="qvm-x-akh">va:mu</AUni> -<AUni ws="qvm-x-akl">va:mu</AUni> -<AUni ws="qvm-x-ame">va:mu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vamos</AUni> -<AUni ws="qvm-x-acl">+vamos</AUni> -<AUni ws="qvm-x-akh">+vamos</AUni> -<AUni ws="qvm-x-akl">+vamos</AUni> -<AUni ws="qvm-x-ame">+vamos</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.343" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="3d95b411-7d02-486a-8444-ce8077a858bc" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vamos</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="0b781401-d335-4477-a377-955765d693e3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="b6d3a420-2e3b-4ffc-97dc-cae63568e28e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vamos 
\entryTyp root 
\gENG let's.go 
\gSPN vamos 
\e +vamos 
\c NOSUFF 
\ach va:mu 
\akh va:mu 
\acl va:mu 
\akl va:mu 
\ame va:mu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="fe8d133a-6bcd-4f0a-94ac-b45f272aa226"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chupa</AUni> -<AUni ws="qvm-x-acl">chupa</AUni> -<AUni ws="qvm-x-akh">chupa</AUni> -<AUni ws="qvm-x-akl">chupa</AUni> -<AUni ws="qvm-x-ame">chupa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*trupa</AUni> -<AUni ws="qvm-x-acl">*trupa</AUni> -<AUni ws="qvm-x-akh">*trupa</AUni> -<AUni ws="qvm-x-akl">*trupa</AUni> -<AUni ws="qvm-x-ame">*trupa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.170" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a8e4082c-8118-4e4a-9858-661df0c8c16f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*trupa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ba2c65d8-855f-4365-a907-e877a449342c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="e5530ea3-cb92-4776-b6e2-3c4aefbcca52" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *trupa 
\entryTyp root 
\gENG tail 
\gSPN cola 
\e *trupa 
\c N0 
\ach chupa 
\akh chupa 
\acl chupa 
\akl chupa 
\ame chupa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fe8e525a-fa7f-4028-b08e-63d9abee7ceb" ownerguid="4a44ac87-5ad5-44de-8170-9fd88b056010"> -<ExampleWords> -<AUni ws="en">maintain, maintenance</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to taking care of a building?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="fe8f91de-1a1e-4603-8168-b00bab119846"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">quinta</AUni> -<AUni ws="qvm-x-acl">quinta</AUni> -<AUni ws="qvm-x-akh">quinta</AUni> -<AUni ws="qvm-x-akl">quinta</AUni> -<AUni ws="qvm-x-ame">quinta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+qinta</AUni> -<AUni ws="qvm-x-acl">+qinta</AUni> -<AUni ws="qvm-x-akh">+qinta</AUni> -<AUni ws="qvm-x-akl">+qinta</AUni> -<AUni ws="qvm-x-ame">+qinta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.185" /> -<DateModified val="2022-10-10 21:18:47.197" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="bb177e3f-8bd6-476f-8c8f-205e5c9977cd" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+qinta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="b1d7d8c4-3c9a-4920-8774-b9028904dd19" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="1073ca36-eddd-481e-bbb7-d725c52f1bf0" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +qinta 
\entryTyp root 
\gENG 
\gSPN 
\e +qinta 
\c NOSUFF 
\ach quinta 
\akh quinta 
\acl quinta 
\akl quinta 
\ame quinta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="fe90f1cb-8ebc-42d8-8aa9-d77b251d08b7" ownerguid="666d0b4a-257f-4b33-9b4f-216da109daa9"> -<Form> -<AUni ws="qvm-x-ach">nümeru</AUni> -<AUni ws="qvm-x-acl">nümeru; nümeru; nümero</AUni> -<AUni ws="qvm-x-akh">nümeru</AUni> -<AUni ws="qvm-x-akl">nümeru; nümeru; nümero</AUni> -<AUni ws="qvm-x-ame">nümeru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="fe9253f4-d063-4d63-91af-85273d61337f" ownerguid="bfeba2a4-4479-49e9-838c-3baa2ad0fcae"> -<Abbreviation> -<AUni ws="en">8.3.5.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.619" /> -<DateModified val="2022-9-23 16:55:8.619" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to comparing something or someone with another thing.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>64 Comparison</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Compare</AUni> -</Name> -<Questions> -<objsur guid="e4bc6887-c4cd-4655-acf6-295a170f3dbb" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="99b5b80a-a2d6-4820-adfc-1da72528c272" t="o" /> -<objsur guid="fba27833-d6f1-4c36-ac39-28902b29261b" t="o" /> -<objsur guid="0d427d55-d63e-4a35-a66a-5e4dce0a963e" t="o" /> -<objsur guid="99988f94-3aa4-4984-88df-ae228f01d3b7" t="o" /> -<objsur guid="2f98291a-47a7-4b7b-9256-2c0249105be1" t="o" /> -<objsur guid="23fa2115-3979-472c-8939-4db8d54e4c98" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="fe92dbbd-c6f7-4098-b7bf-c22770170a99" ownerguid="a59b8884-4ce6-4d80-97a0-b5b89f5316df"> -<Form> -<AUni ws="qvm-x-ach">lección; leccion</AUni> -<AUni ws="qvm-x-acl">lección; leccion</AUni> -<AUni ws="qvm-x-akh">lección; leccion</AUni> -<AUni ws="qvm-x-akl">lección; leccion</AUni> -<AUni ws="qvm-x-ame">lección; leccion</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="fe941e2c-c2f2-4903-9733-6821e92ed214" ownerguid="b02a4a9c-cfca-4e01-8be5-5ccfbf32400b"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">side.burn</AUni> -<AUni ws="es">patilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="768d1e59-9e73-4f75-8328-a092fb504575" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="fe945d57-2e61-4faf-a8ff-4470ec9df241" ownerguid="ef9adcdb-0ca7-48d1-ba00-efb14a3dc879"> -<Form> -<AUni ws="qvm-x-ach">dëbi</AUni> -<AUni ws="qvm-x-acl">dëbi; dëbe</AUni> -<AUni ws="qvm-x-akh">dëbi</AUni> -<AUni ws="qvm-x-akl">dëbi; dëbe</AUni> -<AUni ws="qvm-x-ame">dëbi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="fe951639-653a-4af7-a1e9-c24a92b94011"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">upa:la</AUni> -<AUni ws="qvm-x-acl">upa:la</AUni> -<AUni ws="qvm-x-akh">upa:la</AUni> -<AUni ws="qvm-x-akl">upa:la</AUni> -<AUni ws="qvm-x-ame">upa:la</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*upa:lla.v</AUni> -<AUni ws="qvm-x-acl">*upa:lla.v</AUni> -<AUni ws="qvm-x-akh">*upa:lla.v</AUni> -<AUni ws="qvm-x-akl">*upa:lla.v</AUni> -<AUni ws="qvm-x-ame">*upa:lla.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.241" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cbdbd380-27d7-42ca-822c-ae9443275d26" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*upa:lla.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="98a41584-cae4-4c65-88ae-0fb71a7c1339" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="9f7ce087-2cb6-4847-87e9-e4ad31c67a3e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *upa:lla.v 
\entryTyp root 
\gENG to.quiet 
\gSPN callarse 
\e *upa:lla.v 
\c V1 
\ach upa:la 
\akh upa:la 
\acl upa:la 
\akl upa:la 
\ame upa:la</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="fe962b84-619c-4318-8461-38767daceb3e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">limi</AUni> -<AUni ws="qvm-x-acl">limi; lime</AUni> -<AUni ws="qvm-x-akh">limi</AUni> -<AUni ws="qvm-x-akl">limi; lime</AUni> -<AUni ws="qvm-x-ame">limi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*llimi.v</AUni> -<AUni ws="qvm-x-acl">*llimi.v</AUni> -<AUni ws="qvm-x-akh">*llimi.v</AUni> -<AUni ws="qvm-x-akl">*llimi.v</AUni> -<AUni ws="qvm-x-ame">*llimi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.205" /> -<DateModified val="2022-10-10 21:19:54.719" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c10e23ee-8ac8-469a-bdeb-67777007ce65" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*llimi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="6d831b43-8db7-4c37-ae5c-248f018c42c5" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="22db13b4-8ff0-443f-adc6-1100ca58e57c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *llimi.v 
\entryTyp root 
\gENG press 
\gSPN apresurar 
\e *llimi.v 
\c V2 
\mp +FinalI 
\ach limi 
\akh limi 
\acl limi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl lime +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl limi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl lime +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame limi</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="fe99b743-faa9-4dc0-80b3-96bfc2102196" ownerguid="ceb6ed65-188e-46d7-ad10-076cba0d49db"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">lapa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">lapa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">lapa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">lapa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">lapa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="0655d4c4-dcff-4fca-931a-8964415a96b4" t="r" /> -</Morph> -<Msa> -<objsur guid="b16d0818-05dc-49f7-8cdf-889b0be5517e" t="r" /> -</Msa> -</rt> -<rt class="CmDomainQ" guid="fe9a428d-4e10-47de-9fd8-79550627b0ab" ownerguid="2158eb7d-eb59-4740-9628-9080d7f51a97"> -<ExampleWords> -<AUni ws="en">toss and turn, couldn't sleep, lay awake, insomnia, insomniac, sleep disorder</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(8) What words are used of not being able to sleep?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fe9b6ae8-0115-42a9-b674-1b769d32d9aa" ownerguid="541f332b-82d8-4579-acff-e9d7fb8cadb8"> -<Form> -<AUni ws="qvm-x-ach">chacha</AUni> -<AUni ws="qvm-x-acl">chacha</AUni> -<AUni ws="qvm-x-akh">chacha</AUni> -<AUni ws="qvm-x-akl">chacha</AUni> -<AUni ws="qvm-x-ame">chacha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="fe9b8e02-b4fe-4369-b100-965f69b8a580" ownerguid="d5c12a8b-109d-4f0e-8167-f881484d021a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="fe9e5b3b-8c4a-42f0-9b21-37d1ceb39593" ownerguid="ad4eb470-ce57-4c4a-9a65-553e6fca9e57"> -<Form> -<AUni ws="qvm-x-ach">aswa</AUni> -<AUni ws="qvm-x-acl">aswa</AUni> -<AUni ws="qvm-x-akh">aswa</AUni> -<AUni ws="qvm-x-akl">aswa</AUni> -<AUni ws="qvm-x-ame">aswa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="fea1cc45-51ee-498c-ba28-eef1955c862f" ownerguid="d219ca82-8616-423d-a266-758f621759e6"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">tassle</AUni> -<AUni ws="es">borla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f0c716cb-9e80-4b47-9d3c-c1f4f345dd1e" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexEntry" guid="fea3c863-afd1-40af-aabe-51dfe7dda361"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shegui</AUni> -<AUni ws="qvm-x-acl">shegui; shegue</AUni> -<AUni ws="qvm-x-akh">sheqi</AUni> -<AUni ws="qvm-x-akl">sheqi; sheqe</AUni> -<AUni ws="qvm-x-ame">shiqi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shiqi.v</AUni> -<AUni ws="qvm-x-acl">*shiqi.v</AUni> -<AUni ws="qvm-x-akh">*shiqi.v</AUni> -<AUni ws="qvm-x-akl">*shiqi.v</AUni> -<AUni ws="qvm-x-ame">*shiqi.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.602" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="a020fb78-2895-4d49-a291-f0216442b6b0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shiqi.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="1ff9fb9a-ad87-44b7-8cd7-a60bb16d9c1f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3c010d2f-d6a9-4f68-8347-20040e4a7966" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shiqi.v 
\entryTyp root 
\gENG weak.concentration 
\gSPN poco.cargado 
\e *shiqi.v 
\c V2 
\mp +FinalI 
\ach shegui 
\akh sheqi 
\acl shegui +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl shegue +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sheqi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl sheqe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame shiqi 
\i Shegilatami cafëta upuycan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fea49053-4ae5-4244-a339-9b66c66a3690" ownerguid="573bf23a-3fde-4552-9263-62b7c71cad02"> -<ExampleWords> -<AUni ws="en">a catch of fish</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the fish that are caught?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fea5edff-65bb-4efd-af48-496a95487032" ownerguid="f9d020d6-b129-4bb8-9509-3b4a6c27482e"> -<ExampleWords> -<AUni ws="en">interest, curiosity</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to the feeling of interest?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="fea79ddc-1303-4d58-af28-2a49ca9549d4"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chirimo:ya</AUni> -<AUni ws="qvm-x-acl">chirimo:ya</AUni> -<AUni ws="qvm-x-akh">chirimo:ya</AUni> -<AUni ws="qvm-x-akl">chirimo:ya</AUni> -<AUni ws="qvm-x-ame">chirimo:ya</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+chirimoya</AUni> -<AUni ws="qvm-x-acl">+chirimoya</AUni> -<AUni ws="qvm-x-akh">+chirimoya</AUni> -<AUni ws="qvm-x-akl">+chirimoya</AUni> -<AUni ws="qvm-x-ame">+chirimoya</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.325" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f3197c5c-1512-4368-9dbf-2914c30d8abf" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+chirimoya</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="bb7b5f0b-36c6-4149-8183-99888b139ccc" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="944e0edc-58b9-4322-94ab-c19b6f79489b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +chirimoya 
\entryTyp root 
\gENG 
\gSPN 
\e +chirimoya 
\c N0 
\ach chirimo:ya 
\akh chirimo:ya 
\acl chirimo:ya 
\akl chirimo:ya 
\ame chirimo:ya</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fea98c19-3374-4eea-ace8-4f438c5661e1" ownerguid="94cad4ca-c2ec-4ff3-b9b1-11107549941d"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">That woman <is> beautiful.</Run> -</AStr> -</ExampleSentences> -<Question> -<AUni ws="en">(3) What words indicate an evaluation of something?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="feb11df8-d6a3-4a25-9097-b0b6a5b215fe" ownerguid="4843c8e5-7c5c-4892-8f4c-610054073035"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="feb45ae0-0c1b-48a4-a258-c4edf4159d39"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">fuera</AUni> -<AUni ws="qvm-x-acl">fuera</AUni> -<AUni ws="qvm-x-akh">fuera</AUni> -<AUni ws="qvm-x-akl">fuera</AUni> -<AUni ws="qvm-x-ame">fuera</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+fuera</AUni> -<AUni ws="qvm-x-acl">+fuera</AUni> -<AUni ws="qvm-x-akh">+fuera</AUni> -<AUni ws="qvm-x-akl">+fuera</AUni> -<AUni ws="qvm-x-ame">+fuera</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.589" /> -<DateModified val="2022-10-10 21:18:47.218" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e65503e9-1b9c-400c-b26d-c4fa38957220" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+fuera</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9e39793f-6f7f-4cba-aeb9-69fb47036cf3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="206ba643-c242-4ff6-a8ab-c5324e0b3340" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +fuera 
\entryTyp root 
\gENG 
\gSPN 
\e +fuera 
\c NOSUFF 
\ach fuera 
\akh fuera 
\acl fuera 
\akl fuera 
\ame fuera</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="feb78ecf-a633-4609-92d9-26a2b65e6e28" ownerguid="e7c58c11-2911-446a-96b0-2113247f3792"> -<ExampleWords> -<AUni ws="en">(none in English)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to talking to someone in order to discover how you are related to them?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="feb7fd78-2a79-479f-bd52-f9dc1adca0de" ownerguid="593442e2-a727-409f-bd11-f63d5741b719"> -<Form> -<AUni ws="qvm-x-ach">ima</AUni> -<AUni ws="qvm-x-acl">ima</AUni> -<AUni ws="qvm-x-akh">ima</AUni> -<AUni ws="qvm-x-akl">ima</AUni> -<AUni ws="qvm-x-ame">ima</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="feb8ea53-38a6-4f1d-a501-8702b2bd9cda" ownerguid="1f3519f8-d946-4857-a1fd-553d98dddf6d"> -<ExampleWords> -<AUni ws="en">asinine, blind, brainless, crass, crazy, daft, delirious, demented, dense, dim, dizzy, doltish, dull, dull-witted, dumb, fanatical, fatuous, foolish, harebrained, idiotic, inane, ingenuous, insane, insensitive, irrational, lumpish, moronic, naive, nonsensical, obtuse, retarded, senile, senseless, silly, simple, slow, slow-witted, stupid, thick, thickheaded, undiscerning, unimaginative, unperceptive, unsound, witless, lacking in intelligence, mentally lazy</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words describe a person who does not think well?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="feb9b30b-866f-4072-afa4-091f819daf71" ownerguid="959db2a6-3d5e-412e-9446-57acca89edd9"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">juez</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">juez</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">juez</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">juez</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">juez</Run> -</AStr> -</Form> -<Morph> -<objsur guid="57fa74f8-4cbd-4586-a78f-2ed5dcc91fac" t="r" /> -</Morph> -<Msa> -<objsur guid="ca8cc796-3f7c-42e4-8921-e0e42745e7c0" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="febaf09c-b116-4262-a607-94293b8fde79" ownerguid="eddfebbd-7e9b-411a-b5d7-478fda696ff2"> -<Form> -<AUni ws="qvm-x-ach">tentación; tentacion</AUni> -<AUni ws="qvm-x-acl">tentación; tentacion</AUni> -<AUni ws="qvm-x-akh">tentación; tentacion</AUni> -<AUni ws="qvm-x-akl">tentación; tentacion</AUni> -<AUni ws="qvm-x-ame">tentación; tentacion</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="febd4fc8-66cf-419d-a40e-5e0b51b6a7c8"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tuni</AUni> -<AUni ws="qvm-x-acl">tuni; tune</AUni> -<AUni ws="qvm-x-akh">tuni</AUni> -<AUni ws="qvm-x-akl">tuni; tune</AUni> -<AUni ws="qvm-x-ame">tuni</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tuñi</AUni> -<AUni ws="qvm-x-acl">*tuñi</AUni> -<AUni ws="qvm-x-akh">*tuñi</AUni> -<AUni ws="qvm-x-akl">*tuñi</AUni> -<AUni ws="qvm-x-ame">*tuñi</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.997" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4738a33d-d481-46d8-bfb1-a3e1b27d2df0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tuñi</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="fedd066e-7422-45a6-8ab7-471a782b0c90" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8bc1ad23-7c65-415c-ac69-4ad2933fd459" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tuñi 
\entryTyp root 
\gENG fall 
\gSPN caer 
\e *tuñi 
\c V1 
\mp +FinalI 
\ach tuni 
\akh tuni 
\acl tuni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl tune +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tuni +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tune +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tuni</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="fec02498-8d8f-4213-afa3-426351ee3b38"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tro:ja</AUni> -<AUni ws="qvm-x-acl">tro:ja</AUni> -<AUni ws="qvm-x-akh">tro:ja</AUni> -<AUni ws="qvm-x-akl">tro:ja</AUni> -<AUni ws="qvm-x-ame">tro:ja</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+troja</AUni> -<AUni ws="qvm-x-acl">+troja</AUni> -<AUni ws="qvm-x-akh">+troja</AUni> -<AUni ws="qvm-x-akl">+troja</AUni> -<AUni ws="qvm-x-ame">+troja</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.149" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="33445e29-0ec1-441a-ba07-7afb7c32c92f" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+troja</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a3d9ba1e-5cec-46d8-88f4-a39737de61d4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="61590acf-b661-413b-9cb3-67c9092cb77e" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +troja 
\entryTyp root 
\gENG 
\gSPN 
\e +troja 
\c N0 
\ach tro:ja 
\akh tro:ja 
\acl tro:ja 
\akl tro:ja 
\ame tro:ja</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntryType" guid="fec038ed-6a8c-4fa5-bc96-a4f515a98c50" ownerguid="1ee09905-63dd-4c7a-a9bd-1d496743ccd6"> -<Abbreviation> -<AUni ws="en">unspec. comp. form</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">A complex form that hasn't been labeled as a specific kind of complex form.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Unspecified Complex Form</AUni> -</Name> -<ReverseAbbr> -<AUni ws="en">unspec. comp. form of</AUni> -</ReverseAbbr> -<ReverseName> -<AUni ws="en">Unspecified Complex Form of</AUni> -</ReverseName> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b228eb56-ea5e-11de-9e54-0013722f8dec" ownerguid="b21f61f8-ea5e-11de-907d-0013722f8dec"> -<Abbreviation> -<AUni ws="en">newitem</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">newitem</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b234d704-ea5e-11de-9211-0013722f8dec" ownerguid="b0a1eb98-ea5e-11de-888e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Lit</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">literature</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b240c2bc-ea5e-11de-9d83-0013722f8dec" t="o" /> -<objsur guid="b24a4c10-ea5e-11de-9bcb-0013722f8dec" t="o" /> -<objsur guid="b25637c8-ea5e-11de-98ce-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b240c2bc-ea5e-11de-9d83-0013722f8dec" ownerguid="b234d704-ea5e-11de-9211-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Poet</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">poetry</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b24a4c10-ea5e-11de-9bcb-0013722f8dec" ownerguid="b234d704-ea5e-11de-9211-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Rhet</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">rhetoric</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b25637c8-ea5e-11de-98ce-0013722f8dec" ownerguid="b234d704-ea5e-11de-9211-0013722f8dec"> -<Abbreviation> -<AUni ws="en">styl</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">stylistics</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b2622376-ea5e-11de-8274-0013722f8dec" ownerguid="b0a1eb98-ea5e-11de-888e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Log</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">logic</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b26bacd4-ea5e-11de-8beb-0013722f8dec" ownerguid="b0a1eb98-ea5e-11de-888e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Math</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">mathematics</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b277988c-ea5e-11de-957d-0013722f8dec" ownerguid="b0a1eb98-ea5e-11de-888e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Med</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">media</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b283843a-ea5e-11de-9232-0013722f8dec" ownerguid="b0a1eb98-ea5e-11de-888e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Medi</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">medicine</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b28d0d98-ea5e-11de-8bcb-0013722f8dec" ownerguid="b0a1eb98-ea5e-11de-888e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Phil</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">philosophy</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b298f950-ea5e-11de-8179-0013722f8dec" ownerguid="b0a1eb98-ea5e-11de-888e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Psycholing</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">psycholinguistics</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b2a4e4fe-ea5e-11de-96a2-0013722f8dec" ownerguid="b0a1eb98-ea5e-11de-888e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Psycho</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">psychology</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b2b0d0b6-ea5e-11de-8b58-0013722f8dec" ownerguid="b0a1eb98-ea5e-11de-888e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Rel</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">religion</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b2ba5a0a-ea5e-11de-825a-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b2ba5a0a-ea5e-11de-825a-0013722f8dec" ownerguid="b2b0d0b6-ea5e-11de-8b58-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Rit</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">ritual</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b2c645c2-ea5e-11de-8a97-0013722f8dec" ownerguid="b0a1eb98-ea5e-11de-888e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Socio ling</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">sociolinguistics</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b2d23170-ea5e-11de-83d9-0013722f8dec" t="o" /> -<objsur guid="b2dbbace-ea5e-11de-9923-0013722f8dec" t="o" /> -<objsur guid="b2e7a686-ea5e-11de-92ba-0013722f8dec" t="o" /> -<objsur guid="b2f39234-ea5e-11de-9345-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b2d23170-ea5e-11de-83d9-0013722f8dec" ownerguid="b2c645c2-ea5e-11de-8a97-0013722f8dec"> -<Abbreviation> -<AUni ws="en">App ling</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">applied linguistics</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b2dbbace-ea5e-11de-9923-0013722f8dec" ownerguid="b2c645c2-ea5e-11de-8a97-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Comp ling</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">comparative linguistics</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b2e7a686-ea5e-11de-92ba-0013722f8dec" ownerguid="b2c645c2-ea5e-11de-8a97-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Hist ling</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">historical linguistics</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b2f39234-ea5e-11de-9345-0013722f8dec" ownerguid="b2c645c2-ea5e-11de-8a97-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Surv</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">survey</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b2fd1b92-ea5e-11de-8fa9-0013722f8dec" ownerguid="b0a1eb98-ea5e-11de-888e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Socio</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">sociology</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b3090740-ea5e-11de-901c-0013722f8dec" ownerguid="b0a1eb98-ea5e-11de-888e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Trans</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">translation</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="StText" guid="b314f2f8-ea5e-11de-86b7-0013722f8dec" ownerguid="1f6ae209-141a-40db-983c-bee93af0ca3c"> -<DateModified val="2022-9-23 16:55:11.765" /> -<Paragraphs> -<objsur guid="b31e7c56-ea5e-11de-85d3-0013722f8dec" t="o" /> -<objsur guid="b32a6804-ea5e-11de-840f-0013722f8dec" t="o" /> -</Paragraphs> -<RightToLeft val="False" /> -</rt> -<rt class="StTxtPara" guid="b31e7c56-ea5e-11de-85d3-0013722f8dec" ownerguid="b314f2f8-ea5e-11de-86b7-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Example (English)</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b32a6804-ea5e-11de-840f-0013722f8dec" ownerguid="b314f2f8-ea5e-11de-86b7-0013722f8dec"> -<Contents> -<Str> -<Run namedStyle="Emphasized Text" ws="en">Blackboard</Run> -<Run ws="en"> contains a stem that refers to "a large, smooth, usually dark surface on which to write or draw with chalk". However, the stem is made up of two roots, </Run> -<Run namedStyle="Emphasized Text" ws="en">black</Run> -<Run ws="en"> and </Run> -<Run namedStyle="Emphasized Text" ws="en">board</Run> -<Run ws="en">.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StText" guid="b33653bc-ea5e-11de-9802-0013722f8dec" ownerguid="73266a3a-48e8-4bd7-8c84-91c730340b7d"> -<DateModified val="2022-9-23 16:55:11.765" /> -<Paragraphs> -<objsur guid="b33fdd1a-ea5e-11de-8c86-0013722f8dec" t="o" /> -<objsur guid="b34bc8c8-ea5e-11de-8b9f-0013722f8dec" t="o" /> -<objsur guid="b357b480-ea5e-11de-875d-0013722f8dec" t="o" /> -<objsur guid="b3613dd4-ea5e-11de-879d-0013722f8dec" t="o" /> -<objsur guid="b36d298c-ea5e-11de-9bb0-0013722f8dec" t="o" /> -<objsur guid="b379153a-ea5e-11de-93cc-0013722f8dec" t="o" /> -<objsur guid="b3829e98-ea5e-11de-807d-0013722f8dec" t="o" /> -<objsur guid="b38e8a50-ea5e-11de-8870-0013722f8dec" t="o" /> -</Paragraphs> -<RightToLeft val="False" /> -</rt> -<rt class="StTxtPara" guid="b33fdd1a-ea5e-11de-8c86-0013722f8dec" ownerguid="b33653bc-ea5e-11de-9802-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">A contraction is a combination of two lexemes, each of which maintains its own meaning.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b34bc8c8-ea5e-11de-8b9f-0013722f8dec" ownerguid="b33653bc-ea5e-11de-9802-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Example: hasn’t ‘has not’</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b357b480-ea5e-11de-875d-0013722f8dec" ownerguid="b33653bc-ea5e-11de-9802-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Contractions are different from compounds. A compound, such as ‘hasbeen’, is a combination of two lexemes with an unpredictable change in meaning. There is no such change in meaning in a contraction.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="CmAgentEvaluation" guid="b35f4cb9-5caa-4219-8ea6-4b191e71b06d" ownerguid="5093d7d7-4f18-4aad-8c86-88389476df15" /> -<rt class="StTxtPara" guid="b3613dd4-ea5e-11de-879d-0013722f8dec" ownerguid="b33653bc-ea5e-11de-9802-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Contractions are different from clitics. A clitic is a lexeme that is grammatically independent but attaches phonologically to any adjacent word. An example of a clitic is the English possessive –’s in the phrases ‘Elizabeth’s hat’, ‘the queen’s hat’, and ‘the queen of England’s hat’. The clitic –’s obligatorily attaches to whatever word precedes it. In contrast a contraction is a specific pair of words that regularly combines. The combination may be obligatory, as in the case of ‘let’s’, as in “Let’s go” (“Let us go” has a different meaning), or it may be optional, as in the case of ‘we’ve’, as in “We’ve been honored,” or “We have been honored.”</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b36d298c-ea5e-11de-9bb0-0013722f8dec" ownerguid="b33653bc-ea5e-11de-9802-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Contractions are different from portmanteau morphemes. A portmanteau morpheme is a single, indivisible morpheme that combines two meanings that are usually expressed by separate morphemes. An example of a portmanteau morpheme is the word ‘were’ which is a single morpheme expressing the meaning of the lexeme ‘be’ and the grammatical category ‘Past.tense’. ‘Were’ cannot be divided into two morphemes. (Note that ‘busted’ can be divided into bust-ed ‘bust-Past.tense’.) In contrast the contraction ‘we’re’ (we are) can be divided into ‘we-’re’.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b379153a-ea5e-11de-93cc-0013722f8dec" ownerguid="b33653bc-ea5e-11de-9802-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">One or both members of a contraction can be shortened. Most English contractions only shorten the second member, as in ‘I’m’ (I am), ‘it’s’ (it is), ‘isn’t’ (is not). Others shorten both members, as in ‘won’t’ (will not), ‘shan’t’ (shall not), ‘ain’t’ (am not).</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b3829e98-ea5e-11de-807d-0013722f8dec" ownerguid="b33653bc-ea5e-11de-9802-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">A contraction can combine more than two members, as in ‘wouldn’t’ve’ (would not have).</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b38e8a50-ea5e-11de-8870-0013722f8dec" ownerguid="b33653bc-ea5e-11de-9802-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">English orthography uses the apostrophe to indicate the loss of a phoneme, as in ‘shouldn’t’ (should not). But when both words lose a phoneme, only one apostrophe is used, as in ‘shan’t’ (shall not). In writing sometimes a contraction is written out as two separate words, even when it would normally be shortened to the contracted form in speech. Other languages may or may not choose to follow these orthographic conventions.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StText" guid="b39a75fe-ea5e-11de-8de8-0013722f8dec" ownerguid="98c273c4-f723-4fb0-80df-eede2204dfca"> -<DateModified val="2022-9-23 16:55:11.765" /> -<Paragraphs> -<objsur guid="b3a3ff5c-ea5e-11de-9b21-0013722f8dec" t="o" /> -<objsur guid="b3afeb0a-ea5e-11de-8f7b-0013722f8dec" t="o" /> -<objsur guid="b3bbd6c2-ea5e-11de-9a08-0013722f8dec" t="o" /> -<objsur guid="b3c56020-ea5e-11de-9583-0013722f8dec" t="o" /> -<objsur guid="b3d14bce-ea5e-11de-8c98-0013722f8dec" t="o" /> -<objsur guid="b3dd3786-ea5e-11de-936b-0013722f8dec" t="o" /> -<objsur guid="b3e6c0e4-ea5e-11de-81bf-0013722f8dec" t="o" /> -<objsur guid="b3f2ac92-ea5e-11de-90c6-0013722f8dec" t="o" /> -<objsur guid="b3fe984a-ea5e-11de-9fe0-0013722f8dec" t="o" /> -<objsur guid="b40a83f8-ea5e-11de-8af1-0013722f8dec" t="o" /> -<objsur guid="b4140d56-ea5e-11de-963e-0013722f8dec" t="o" /> -<objsur guid="b41ff904-ea5e-11de-839b-0013722f8dec" t="o" /> -<objsur guid="b42be4bc-ea5e-11de-95fb-0013722f8dec" t="o" /> -<objsur guid="b4356e1a-ea5e-11de-8c84-0013722f8dec" t="o" /> -<objsur guid="b44159c8-ea5e-11de-8dae-0013722f8dec" t="o" /> -<objsur guid="b44d4580-ea5e-11de-9c90-0013722f8dec" t="o" /> -<objsur guid="b456ced4-ea5e-11de-90ca-0013722f8dec" t="o" /> -<objsur guid="b462ba8c-ea5e-11de-8964-0013722f8dec" t="o" /> -<objsur guid="b46ea63a-ea5e-11de-9b58-0013722f8dec" t="o" /> -<objsur guid="b4782f98-ea5e-11de-9d05-0013722f8dec" t="o" /> -<objsur guid="b4841b50-ea5e-11de-9804-0013722f8dec" t="o" /> -<objsur guid="b49006fe-ea5e-11de-9d75-0013722f8dec" t="o" /> -<objsur guid="b499905c-ea5e-11de-8b9e-0013722f8dec" t="o" /> -<objsur guid="b4a57c14-ea5e-11de-87d1-0013722f8dec" t="o" /> -<objsur guid="b4b167c2-ea5e-11de-8214-0013722f8dec" t="o" /> -<objsur guid="b4baf120-ea5e-11de-9c33-0013722f8dec" t="o" /> -<objsur guid="b4c6dcce-ea5e-11de-9d15-0013722f8dec" t="o" /> -</Paragraphs> -<RightToLeft val="False" /> -</rt> -<rt class="StTxtPara" guid="b3a3ff5c-ea5e-11de-9b21-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">The derived word often has a different grammatical category from the original. It may thus take the inflectional affixes of the new grammatical category. </Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b3afeb0a-ea5e-11de-8f7b-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">In contrast to inflection, derivation</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b3bbd6c2-ea5e-11de-9a08-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">• is not obligatory</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b3c56020-ea5e-11de-9583-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">• typically produces a greater change of meaning from the original form</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b3d14bce-ea5e-11de-8c98-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">• is more likely to result in a form which has a somewhat idiosyncratic meaning, and</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b3dd3786-ea5e-11de-936b-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">• often changes the grammatical category of a root.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b3e6c0e4-ea5e-11de-81bf-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Derivational operations</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b3f2ac92-ea5e-11de-90c6-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">• tend to be idiosyncratic and non-productive</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b3fe984a-ea5e-11de-9fe0-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">• do not occur in well-defined 'paradigms,' and</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b40a83f8-ea5e-11de-8af1-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">• are 'optional' insofar as they</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b4140d56-ea5e-11de-963e-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> o shape the basic semantic content of roots and</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b41ff904-ea5e-11de-839b-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> o are not governed by some other syntactic operation or element.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b42be4bc-ea5e-11de-95fb-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Examples (English)</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b4356e1a-ea5e-11de-8c84-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">• Kindness is derived from kind.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b44159c8-ea5e-11de-8dae-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">• Joyful is derived from joy.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b44d4580-ea5e-11de-9c90-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">• Amazement is derived from amaze.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b456ced4-ea5e-11de-90ca-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">• Speaker is derived from speak.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b462ba8c-ea5e-11de-8964-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">• National is derived from nation.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b46ea63a-ea5e-11de-9b58-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b4782f98-ea5e-11de-9d05-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Kinds</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -<StyleRules> -<Prop namedStyle="Normal"></Prop> -</StyleRules> -</rt> -<rt class="StTxtPara" guid="b4841b50-ea5e-11de-9804-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Here are some kinds of derivational operations:</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b49006fe-ea5e-11de-9d75-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">• Operations that change the grammatical category of a root</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b499905c-ea5e-11de-8b9e-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Example: Nominalization (English):</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b4a57c14-ea5e-11de-87d1-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Verbs and adjectives can be turned into nouns: amaze > amazement, speak > speaker, perform > performance, soft > softness, warm > warmth</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b4b167c2-ea5e-11de-8214-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">• Operations that change the valency (transitivity) of a root</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b4baf120-ea5e-11de-9c33-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Example: Causation (Swahili):</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b4c6dcce-ea5e-11de-9d15-0013722f8dec" ownerguid="b39a75fe-ea5e-11de-8de8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">kula 'to eat' > kulisha, 'to feed'</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StText" guid="b4d2c886-ea5e-11de-9720-0013722f8dec" ownerguid="b2276dec-b1a6-4d82-b121-fd114c009c59"> -<DateModified val="2022-9-23 16:55:11.765" /> -<Paragraphs> -<objsur guid="b4deb434-ea5e-11de-89f0-0013722f8dec" t="o" /> -<objsur guid="b4e83d92-ea5e-11de-993a-0013722f8dec" t="o" /> -<objsur guid="b4f4294a-ea5e-11de-964e-0013722f8dec" t="o" /> -<objsur guid="b50014f8-ea5e-11de-87bd-0013722f8dec" t="o" /> -<objsur guid="b5099e56-ea5e-11de-991f-0013722f8dec" t="o" /> -<objsur guid="b5158a04-ea5e-11de-8832-0013722f8dec" t="o" /> -<objsur guid="b52175bc-ea5e-11de-84c6-0013722f8dec" t="o" /> -<objsur guid="b52aff1a-ea5e-11de-98d1-0013722f8dec" t="o" /> -<objsur guid="b536eac8-ea5e-11de-85aa-0013722f8dec" t="o" /> -<objsur guid="b542d680-ea5e-11de-93c3-0013722f8dec" t="o" /> -<objsur guid="b54c5fde-ea5e-11de-88e8-0013722f8dec" t="o" /> -<objsur guid="b5584b8c-ea5e-11de-9cc4-0013722f8dec" t="o" /> -<objsur guid="b5643744-ea5e-11de-8957-0013722f8dec" t="o" /> -<objsur guid="b56dc098-ea5e-11de-90b0-0013722f8dec" t="o" /> -<objsur guid="b579ac50-ea5e-11de-9f99-0013722f8dec" t="o" /> -<objsur guid="b58597fe-ea5e-11de-8865-0013722f8dec" t="o" /> -<objsur guid="b58f215c-ea5e-11de-9343-0013722f8dec" t="o" /> -<objsur guid="b59b0d14-ea5e-11de-9e7f-0013722f8dec" t="o" /> -<objsur guid="b5a6f8c2-ea5e-11de-90a5-0013722f8dec" t="o" /> -<objsur guid="b5b08220-ea5e-11de-8cc8-0013722f8dec" t="o" /> -<objsur guid="b5bc6dce-ea5e-11de-97b8-0013722f8dec" t="o" /> -<objsur guid="b5c85986-ea5e-11de-8c9a-0013722f8dec" t="o" /> -<objsur guid="b5d1e2e4-ea5e-11de-9e38-0013722f8dec" t="o" /> -<objsur guid="b5ddce92-ea5e-11de-9217-0013722f8dec" t="o" /> -<objsur guid="b5e9ba4a-ea5e-11de-8a9b-0013722f8dec" t="o" /> -<objsur guid="b5f5a5f8-ea5e-11de-9345-0013722f8dec" t="o" /> -<objsur guid="b5ff2f56-ea5e-11de-892e-0013722f8dec" t="o" /> -<objsur guid="b60b1b0e-ea5e-11de-8a7e-0013722f8dec" t="o" /> -<objsur guid="b61706bc-ea5e-11de-9c5f-0013722f8dec" t="o" /> -<objsur guid="b620901a-ea5e-11de-909c-0013722f8dec" t="o" /> -<objsur guid="b62c7bc8-ea5e-11de-8193-0013722f8dec" t="o" /> -<objsur guid="b6386780-ea5e-11de-80d2-0013722f8dec" t="o" /> -</Paragraphs> -<RightToLeft val="False" /> -</rt> -<rt class="StTxtPara" guid="b4deb434-ea5e-11de-89f0-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">An idiom is a multiword expression. Individual components of an idiom can often be inflected in the same way individual words in a phrase can be inflected. This inflection usually follows the same pattern of inflection as the idiom's literal counterpart.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b4e83d92-ea5e-11de-993a-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> Example: have a bee in one's bonnet</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b4f4294a-ea5e-11de-964e-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> He has bees in his bonnet.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b50014f8-ea5e-11de-87bd-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">An idiom behaves as a single semantic unit.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b5099e56-ea5e-11de-991f-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> It tends to have some measure of internal cohesion such that it can often be replaced by a literal counterpart that is made up of a single word.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b5158a04-ea5e-11de-8832-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> Example: kick the bucket</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b52175bc-ea5e-11de-84c6-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> die</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b52aff1a-ea5e-11de-98d1-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> It resists interruption by other words whether they are semantically compatible or not.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b536eac8-ea5e-11de-85aa-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> Example: pull one's leg</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b542d680-ea5e-11de-93c3-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> *pull hard on one's leg</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b54c5fde-ea5e-11de-88e8-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> *pull on one's left leg</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b5584b8c-ea5e-11de-9cc4-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> It resists reordering of its component parts.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b5643744-ea5e-11de-8957-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> Example: let the cat out of the bag</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b56dc098-ea5e-11de-90b0-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> *the cat got left out of the bag</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b579ac50-ea5e-11de-9f99-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">An idiom has a non-productive syntactic structure. Only single particular lexemes can collocate in an idiomatic construction. Substituting other words from the same generic lexical relation set will destroy the idiomatic meaning of the expression.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b58597fe-ea5e-11de-8865-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> Example: eat one's words</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b58f215c-ea5e-11de-9343-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> *eat one's sentences</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b59b0d14-ea5e-11de-9e7f-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> ?swallow one's words</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b5a6f8c2-ea5e-11de-90a5-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">An idiom often shows the following characteristics:</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b5b08220-ea5e-11de-8cc8-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> It is syntactically anomalous. It has an unusual grammatical structure.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b5bc6dce-ea5e-11de-97b8-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> Example: by and large</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b5c85986-ea5e-11de-8c9a-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> It contains unique, fossilized items.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b5d1e2e4-ea5e-11de-9e38-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> Examples: to and fro - fro < from = away (Scottish)</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b5ddce92-ea5e-11de-9217-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> cobweb - cob < cop = spider (Middle English)</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b5e9ba4a-ea5e-11de-8a9b-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Some linguists contend that compound words may qualify as idioms, while others maintain that an idiom must be more lexically complex.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b5f5a5f8-ea5e-11de-9345-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Idioms contrast with the following:</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b5ff2f56-ea5e-11de-892e-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> Metaphors satisfy the first requirement for an idiom, that their meaning be obscure, but not the second, that they not be productive.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b60b1b0e-ea5e-11de-8a7e-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> Examples: throw in the towel</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b61706bc-ea5e-11de-9c5f-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> throw in the sponge</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b620901a-ea5e-11de-909c-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> Collocates may have restricted lexical possibilities or use archaic vocabulary such that they are not productive, but their meaning is not opaque.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b62c7bc8-ea5e-11de-8193-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> Examples: heavy drinking</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b6386780-ea5e-11de-80d2-0013722f8dec" ownerguid="b4d2c886-ea5e-11de-9720-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> mete out</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StText" guid="b641f0de-ea5e-11de-9395-0013722f8dec" ownerguid="35cee792-74c8-444e-a9b7-ed0461d4d3b7"> -<DateModified val="2022-9-23 16:55:11.765" /> -<Paragraphs> -<objsur guid="b64ddc8c-ea5e-11de-8425-0013722f8dec" t="o" /> -<objsur guid="b659c844-ea5e-11de-9e3d-0013722f8dec" t="o" /> -<objsur guid="b6635198-ea5e-11de-823b-0013722f8dec" t="o" /> -<objsur guid="b66f3d50-ea5e-11de-8344-0013722f8dec" t="o" /> -<objsur guid="b67b28fe-ea5e-11de-88a1-0013722f8dec" t="o" /> -<objsur guid="b684b25c-ea5e-11de-89fc-0013722f8dec" t="o" /> -<objsur guid="b6909e14-ea5e-11de-884a-0013722f8dec" t="o" /> -<objsur guid="b69c89c2-ea5e-11de-8a6c-0013722f8dec" t="o" /> -<objsur guid="b6a61320-ea5e-11de-96db-0013722f8dec" t="o" /> -</Paragraphs> -<RightToLeft val="False" /> -</rt> -<rt class="StTxtPara" guid="b64ddc8c-ea5e-11de-8425-0013722f8dec" ownerguid="b641f0de-ea5e-11de-9395-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Example (English)</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b659c844-ea5e-11de-9e3d-0013722f8dec" ownerguid="b641f0de-ea5e-11de-9395-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> The item ‘give up’ is a phrasal verb, as in the following:</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b6635198-ea5e-11de-823b-0013722f8dec" ownerguid="b641f0de-ea5e-11de-9395-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> He gave up smoking.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b66f3d50-ea5e-11de-8344-0013722f8dec" ownerguid="b641f0de-ea5e-11de-9395-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> He gave smoking up.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b67b28fe-ea5e-11de-88a1-0013722f8dec" ownerguid="b641f0de-ea5e-11de-9395-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Example (Akan)</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b684b25c-ea5e-11de-89fc-0013722f8dec" ownerguid="b641f0de-ea5e-11de-9395-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> The item gyee ... so 'answered' is a phrasal verb, as in the following:</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b6909e14-ea5e-11de-884a-0013722f8dec" ownerguid="b641f0de-ea5e-11de-9395-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> Kofi gyee Kwame so</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b69c89c2-ea5e-11de-8a6c-0013722f8dec" ownerguid="b641f0de-ea5e-11de-9395-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> Kofi received Kwame on</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b6a61320-ea5e-11de-96db-0013722f8dec" ownerguid="b641f0de-ea5e-11de-9395-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"> 'Kofi answered Kwame.'</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StText" guid="b6b1fed8-ea5e-11de-8d97-0013722f8dec" ownerguid="9466d126-246e-400b-8bba-0703e09bc567"> -<DateModified val="2022-9-23 16:55:11.765" /> -<Paragraphs> -<objsur guid="b6bdea86-ea5e-11de-9926-0013722f8dec" t="o" /> -</Paragraphs> -<RightToLeft val="False" /> -</rt> -<rt class="StTxtPara" guid="b6bdea86-ea5e-11de-9926-0013722f8dec" ownerguid="b6b1fed8-ea5e-11de-8d97-0013722f8dec"> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StText" guid="b6c773e4-ea5e-11de-9774-0013722f8dec" ownerguid="024b62c9-93b3-41a0-ab19-587a0030219a"> -<DateModified val="2022-9-23 16:55:11.765" /> -<Paragraphs> -<objsur guid="b6d35f92-ea5e-11de-9aef-0013722f8dec" t="o" /> -</Paragraphs> -<RightToLeft val="False" /> -</rt> -<rt class="StTxtPara" guid="b6d35f92-ea5e-11de-9aef-0013722f8dec" ownerguid="b6c773e4-ea5e-11de-9774-0013722f8dec"> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StText" guid="b6df4b4a-ea5e-11de-8285-0013722f8dec" ownerguid="4343b1ef-b54f-4fa4-9998-271319a6d74c"> -<DateModified val="2022-9-23 16:55:11.765" /> -<Paragraphs> -<objsur guid="b6eb36f8-ea5e-11de-95d2-0013722f8dec" t="o" /> -</Paragraphs> -<RightToLeft val="False" /> -</rt> -<rt class="StTxtPara" guid="b6eb36f8-ea5e-11de-95d2-0013722f8dec" ownerguid="b6df4b4a-ea5e-11de-8285-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Linguists generally assume that all differences in form are motivated in some way at some level. If two variants were truly free, there would be no factors that condition the choice of either variant and the choice would be totally random. However in many cases one variant is more common than the other, indicating that there is some conditioning factor at work. The apparent lack of conditioning factors may be due to a historical change that is in process (with the result that the older rule is being inconsistently applied), competing factors that mask each other, or such complex factors that the linguist is unable to sort out the conditioning. The result is that the two forms may appear to be in free variation, but may actually be conditioned. When no conditioning factor can be discerned, the general practice in linguistics is to label the forms Free Variants.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StText" guid="b6f4c056-ea5e-11de-8a9c-0013722f8dec" ownerguid="01d4fbc1-3b0c-4f52-9163-7ab0d4f4711c"> -<DateModified val="2022-9-23 16:55:11.765" /> -<Paragraphs> -<objsur guid="b700ac0e-ea5e-11de-8890-0013722f8dec" t="o" /> -<objsur guid="b70c97bc-ea5e-11de-803e-0013722f8dec" t="o" /> -</Paragraphs> -<RightToLeft val="False" /> -</rt> -<rt class="StTxtPara" guid="b700ac0e-ea5e-11de-8890-0013722f8dec" ownerguid="b6f4c056-ea5e-11de-8a9c-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">The English verb 'hit' is irregular. From the normal rules of grammar we would expect the past tense to be 'hitted', since the normal way to form the past tense is to add the -ed suffix. Instead the correct past tense form is 'hit', as in, "He hit me yesterday." Likewise the past tense of 'break' is 'broke' rather than 'breaked'. So 'hit' (past) and 'broke' are irregularly inflected forms. In the same way the plural form of 'fish' is 'fish' rather than 'fishes', as in "There are many fish in the lake." The plural of 'man' is 'men', not 'mans'. So 'fish' (plural) and 'men' are irregularly inflected forms.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StTxtPara" guid="b70c97bc-ea5e-11de-803e-0013722f8dec" ownerguid="b6f4c056-ea5e-11de-8a9c-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Many dictionaries indicate irregularly inflected forms in the dictionary entry for the lexeme. Generally a minor entry for the irregularly inflected form is also included, especially in dictionaries for language learners who would not know where to find the entry for the basic (uninflected) form of the lexeme.</Run> -</Str> -</Contents> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StText" guid="b716211a-ea5e-11de-8768-0013722f8dec" ownerguid="a32f1d1c-4832-46a2-9732-c2276d6547e8"> -<DateModified val="2022-9-23 16:55:11.765" /> -<Paragraphs> -<objsur guid="b7220cc8-ea5e-11de-8bbc-0013722f8dec" t="o" /> -</Paragraphs> -<RightToLeft val="False" /> -</rt> -<rt class="StTxtPara" guid="b7220cc8-ea5e-11de-8bbc-0013722f8dec" ownerguid="b716211a-ea5e-11de-8768-0013722f8dec"> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StText" guid="b72df880-ea5e-11de-8e18-0013722f8dec" ownerguid="837ebe72-8c1d-4864-95d9-fa313c499d78"> -<DateModified val="2022-9-23 16:55:11.765" /> -<Paragraphs> -<objsur guid="b73781de-ea5e-11de-9216-0013722f8dec" t="o" /> -</Paragraphs> -<RightToLeft val="False" /> -</rt> -<rt class="StTxtPara" guid="b73781de-ea5e-11de-9216-0013722f8dec" ownerguid="b72df880-ea5e-11de-8e18-0013722f8dec"> -<ParseIsCurrent val="False" /> -</rt> -<rt class="StText" guid="b7436d8c-ea5e-11de-8477-0013722f8dec" ownerguid="0c4663b3-4d9a-47af-b9a1-c8565d8112ed"> -<DateModified val="2022-9-23 16:55:11.765" /> -<Paragraphs> -<objsur guid="b74f5944-ea5e-11de-9017-0013722f8dec" t="o" /> -</Paragraphs> -<RightToLeft val="False" /> -</rt> -<rt class="StTxtPara" guid="b74f5944-ea5e-11de-9017-0013722f8dec" ownerguid="b7436d8c-ea5e-11de-8477-0013722f8dec"> -<ParseIsCurrent val="False" /> -</rt> -<rt class="CmPossibilityList" guid="b758e2a2-ea5e-11de-9d24-0013722f8dec" ownerguid="af26d792-ea5e-11de-8f7e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">RefTyp</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:6.268" /> -<DateModified val="2018-8-2 16:32:6.268" /> -<Depth val="1" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="True" /> -<IsVernacular val="False" /> -<ItemClsid val="5119" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Lexical Relations</AUni> -</Name> -<Possibilities> -<objsur guid="b764ce50-ea5e-11de-864f-0013722f8dec" t="o" /> -<objsur guid="b770ba08-ea5e-11de-9ca9-0013722f8dec" t="o" /> -<objsur guid="b77a435c-ea5e-11de-9a66-0013722f8dec" t="o" /> -<objsur guid="b7862f14-ea5e-11de-8d47-0013722f8dec" t="o" /> -<objsur guid="b7921ac2-ea5e-11de-880d-0013722f8dec" t="o" /> -<objsur guid="b79ba420-ea5e-11de-8f71-0013722f8dec" t="o" /> -<objsur guid="b7a78fd8-ea5e-11de-9ef2-0013722f8dec" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="True" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="LexRefType" guid="b764ce50-ea5e-11de-864f-0013722f8dec" ownerguid="b758e2a2-ea5e-11de-9d24-0013722f8dec"> -<Abbreviation> -<AUni ws="en">pt</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">A part/whole relation establishes a link between the sense for the whole (e.g., room), and senses for the parts (e.g., ceiling, wall, floor).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<MappingType val="3" /> -<Name> -<AUni ws="en">Part</AUni> -</Name> -<ReverseAbbreviation> -<AUni ws="en">wh</AUni> -</ReverseAbbreviation> -<ReverseName> -<AUni ws="en">Whole</AUni> -</ReverseName> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexRefType" guid="b770ba08-ea5e-11de-9ca9-0013722f8dec" ownerguid="b758e2a2-ea5e-11de-9d24-0013722f8dec"> -<Abbreviation> -<AUni ws="en">spec</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">A generic/specific relation establishes a link between the sense for the generic (e.g., bird), and senses for the specifics (e.g., robin, cardinal, dove).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<MappingType val="3" /> -<Name> -<AUni ws="en">Specific</AUni> -</Name> -<ReverseAbbreviation> -<AUni ws="en">gen</AUni> -</ReverseAbbreviation> -<ReverseName> -<AUni ws="en">Generic</AUni> -</ReverseName> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexRefType" guid="b77a435c-ea5e-11de-9a66-0013722f8dec" ownerguid="b758e2a2-ea5e-11de-9d24-0013722f8dec"> -<Abbreviation> -<AUni ws="en">syn</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this type for synonym relationships (e.g., fast, fleet, hasty).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<MappingType val="0" /> -<Name> -<AUni ws="en">Synonyms</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexRefType" guid="b7862f14-ea5e-11de-8d47-0013722f8dec" ownerguid="b758e2a2-ea5e-11de-9d24-0013722f8dec"> -<Abbreviation> -<AUni ws="en">ant</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this type for antonym relationships (e.g., fast, slow).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<MappingType val="1" /> -<Name> -<AUni ws="en">Antonym</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexRefType" guid="b7921ac2-ea5e-11de-880d-0013722f8dec" ownerguid="b758e2a2-ea5e-11de-9d24-0013722f8dec"> -<Abbreviation> -<AUni ws="en">cal</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this type for calendar relationships (e.g., days of week, months in year).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<MappingType val="4" /> -<Name> -<AUni ws="en">Calendar</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexRefType" guid="b79ba420-ea5e-11de-8f71-0013722f8dec" ownerguid="b758e2a2-ea5e-11de-9d24-0013722f8dec"> -<Abbreviation> -<AUni ws="en">cf</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this type for relationships that cannot be classified by a specific label, or of which there are too few examples to warrant creating a custom lexical relation.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<MappingType val="5" /> -<Name> -<AUni ws="en">Compare</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexRefType" guid="b7a78fd8-ea5e-11de-9ef2-0013722f8dec" ownerguid="b758e2a2-ea5e-11de-9d24-0013722f8dec"> -<Abbreviation> -<AUni ws="en">clf. for</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this relation for linking classifiers to the words that they classify.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<MappingType val="3" /> -<Name> -<AUni ws="en">Classified Noun</AUni> -</Name> -<ReverseAbbreviation> -<AUni ws="en">clf</AUni> -</ReverseAbbreviation> -<ReverseName> -<AUni ws="en">Classifier</AUni> -</ReverseName> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b7b37b86-ea5e-11de-80e9-0013722f8dec" ownerguid="00951e6f-2523-4ac9-a649-ad42c659cf83"> -<Abbreviation> -<AUni ws="en">Con</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">In a conversation, all participants are free to direct and change the course of the activity; a dialogue is egalitarian. Most of your interaction with people is in the form of conversations. Conversations carry few expectations except an assumption of mutual cooperation. Conversations are a good place to start in order to build friendships and establish trust with people.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Conversation</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b7bf673e-ea5e-11de-9c4d-0013722f8dec" ownerguid="00951e6f-2523-4ac9-a649-ad42c659cf83"> -<Abbreviation> -<AUni ws="en">Intv</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">Interviews involve an intentional request for information on a predetermined topic. The interviewer asks questions and the interviewee(s) provides answers. For this reason an interview is different from a conversation. It is more one-sided. Interviews range from "unstructured" to "structured." The more focus and structure in an interview, the more structured it becomes.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Interview</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="b7c8f092-ea5e-11de-8d7d-0013722f8dec" t="o" /> -<objsur guid="b7d4dc4a-ea5e-11de-867c-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b7c8f092-ea5e-11de-8d7d-0013722f8dec" ownerguid="b7bf673e-ea5e-11de-9c4d-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Str</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A structured interview is used to obtain comparative data and is therefore intended to be given to more than one person. Consistency is important. The interviewer should ask questions the same way each time and the interviewee should be cued as to the appropriate way to respond (yes/no, multiple choice, short sentence answer, etc.).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Structured</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b7d4dc4a-ea5e-11de-867c-0013722f8dec" ownerguid="b7bf673e-ea5e-11de-9c4d-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Uns</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">Unstructured interviews will likely be the most common type of interview you use. In unstructured interviews, you are usually not concerned with comparing responses and may only give the interview to one person. The goal is to get basic information. The topic is usually approached in a general way, without restricting the how of the respondent answers. Questions are generally open-ended.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Unstructured</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b7e0c7f8-ea5e-11de-82cc-0013722f8dec" ownerguid="d9d55b12-ea5e-11de-95ef-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Lit</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">Literature summaries are not limited to books. You may run across newspaper and magazine articles that have important information. Other sources of information are unpublished manuscripts like MA theses and PhD dissertations, brochures, field notes from other researchers, and letters. Still, don't forget the books. You can make use of this information by appending it directly into the Data Notebook.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Literature Summary</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b7ea5156-ea5e-11de-9f9c-0013722f8dec" ownerguid="00951e6f-2523-4ac9-a649-ad42c659cf83"> -<Abbreviation> -<AUni ws="en">Obs</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">This will be one of your richest sources of information. It entails activities and conversations that you witness, but do not control. You may participate actively or passively in the activity you observe. The point is to be curious and approach the activity with questions. Important skills to develop that will make your observations more useful are memory and awareness.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Observation</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="b7f63d0e-ea5e-11de-9f02-0013722f8dec" ownerguid="00951e6f-2523-4ac9-a649-ad42c659cf83"> -<Abbreviation> -<AUni ws="en">Per</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A "performance" is a type of observation, but one where the performer(s) expects the performance to be evaluated based on culturally appropriate criteria. One example of a "performance" is a play. Gossip is less obvious but also falls into the performance category.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Performance</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoMorphData" guid="b80228bc-ea5e-11de-9d24-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<AdhocCoProhibitions> -<objsur guid="6f84ee0a-a60a-4e92-95b4-edf8e59ee2ad" t="o" /> -<objsur guid="72a7191a-5c02-4578-9640-a94e405444de" t="o" /> -<objsur guid="777f4eca-a64c-4ed7-8367-4e3ebdb5cd1f" t="o" /> -<objsur guid="eac79359-e5cd-42f1-82bc-0b913916548e" t="o" /> -<objsur guid="ebae20ad-67c4-4dda-bc21-513e1fe7bbb4" t="o" /> -</AdhocCoProhibitions> -<ParserParameters> -<Uni><ParserParameters> -<XAmple> -<MaxNulls>1</MaxNulls> -<MaxPrefixes>0</MaxPrefixes> -<MaxInfixes>0</MaxInfixes> -<MaxRoots>1</MaxRoots> -<MaxSuffixes>5</MaxSuffixes> -<MaxInterfixes>0</MaxInterfixes> -<MaxAnalysesToReturn>10</MaxAnalysesToReturn> -</XAmple> -<HC> -<DelReapps>0</DelReapps> -<NotOnClitics>true</NotOnClitics> -<NoDefaultCompounding>false</NoDefaultCompounding> -<AcceptUnspecifiedGraphemes>false</AcceptUnspecifiedGraphemes> -</HC> -</ParserParameters></Uni> -</ParserParameters> -<ProdRestrict> -<objsur guid="b80bb21a-ea5e-11de-8c5d-0013722f8dec" t="o" /> -</ProdRestrict> -</rt> -<rt class="CmPossibilityList" guid="b80bb21a-ea5e-11de-8c5d-0013722f8dec" ownerguid="b80228bc-ea5e-11de-9d24-0013722f8dec"> -<Abbreviation> -<AUni ws="en">ProdRests</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:9.985" /> -<DateModified val="2022-10-21 16:41:46.325" /> -<Depth val="1" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="False" /> -<IsVernacular val="False" /> -<ItemClsid val="7" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Productivity Restrictions</AUni> -</Name> -<Possibilities> -<objsur guid="2951ac05-262c-4ba5-9799-d306995c3bc8" t="o" /> -<objsur guid="0a8711d9-5044-46de-9451-6cbc2a14ce49" t="o" /> -<objsur guid="5a35b43c-b4d5-4b6a-8eb8-da4f0bcbffbf" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="CmFilter" guid="b887abc2-ea5e-11de-8ed2-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="39886581-4dd5-11d4-8078-0000c0fb81b5" /> -<ClassId val="4004" /> -<ColumnInfo> -<Uni>4006,4004007</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>Anthro Category</Uni> -</Name> -<PromptText> -<Uni>The Anthropology Categories field matches the following reference:</Uni> -</PromptText> -<Rows> -<objsur guid="b893977a-ea5e-11de-8d62-0013722f8dec" t="o" /> -</Rows> -<ShowPrompt val="1" /> -<Type val="0" /> -</rt> -<rt class="CmRow" guid="b893977a-ea5e-11de-8d62-0013722f8dec" ownerguid="b887abc2-ea5e-11de-8ed2-0013722f8dec"> -<Cells> -<objsur guid="b89d20d8-ea5e-11de-969b-0013722f8dec" t="o" /> -</Cells> -</rt> -<rt class="CmCell" guid="b89d20d8-ea5e-11de-969b-0013722f8dec" ownerguid="b893977a-ea5e-11de-8d62-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Matches +subitems</Run> -</Str> -</Contents> -</rt> -<rt class="CmFilter" guid="b8a90c86-ea5e-11de-9e66-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="5ea62d01-7a78-11d4-8078-0000c0fb81b5" /> -<ClassId val="7" /> -<ColumnInfo> -<Uni>7,7008</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>Confidence</Uni> -</Name> -<PromptText> -<Uni>The Confidence field matches the following reference:</Uni> -</PromptText> -<Rows> -<objsur guid="b8b4f83e-ea5e-11de-8fad-0013722f8dec" t="o" /> -</Rows> -<ShowPrompt val="1" /> -<Type val="0" /> -</rt> -<rt class="CmRow" guid="b8b4f83e-ea5e-11de-8fad-0013722f8dec" ownerguid="b8a90c86-ea5e-11de-9e66-0013722f8dec"> -<Cells> -<objsur guid="b8be819c-ea5e-11de-8c9d-0013722f8dec" t="o" /> -</Cells> -</rt> -<rt class="CmCell" guid="b8be819c-ea5e-11de-8c9d-0013722f8dec" ownerguid="b8b4f83e-ea5e-11de-8fad-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Matches </Run> -</Str> -</Contents> -</rt> -<rt class="CmFilter" guid="b8ca6d4a-ea5e-11de-9350-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="39886581-4dd5-11d4-8078-0000c0fb81b5" /> -<ClassId val="4004" /> -<ColumnInfo> -<Uni>4006,4006003</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>Location</Uni> -</Name> -<PromptText> -<Uni>The Location field matches the following reference:</Uni> -</PromptText> -<Rows> -<objsur guid="b8d65902-ea5e-11de-845e-0013722f8dec" t="o" /> -</Rows> -<ShowPrompt val="1" /> -<Type val="0" /> -</rt> -<rt class="CmRow" guid="b8d65902-ea5e-11de-845e-0013722f8dec" ownerguid="b8ca6d4a-ea5e-11de-9350-0013722f8dec"> -<Cells> -<objsur guid="b8dfe256-ea5e-11de-9226-0013722f8dec" t="o" /> -</Cells> -</rt> -<rt class="CmCell" guid="b8dfe256-ea5e-11de-9226-0013722f8dec" ownerguid="b8d65902-ea5e-11de-845e-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Matches +subitems</Run> -</Str> -</Contents> -</rt> -<rt class="CmFilter" guid="b8ebce0e-ea5e-11de-9a5f-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="39886581-4dd5-11d4-8078-0000c0fb81b5" /> -<ClassId val="4004" /> -<ColumnInfo> -<Uni>4006,4006008</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>Before Date</Uni> -</Name> -<PromptText> -<Uni>Date of Event <= the following date:</Uni> -</PromptText> -<Rows> -<objsur guid="b8f7b9bc-ea5e-11de-87c2-0013722f8dec" t="o" /> -</Rows> -<ShowPrompt val="1" /> -<Type val="0" /> -</rt> -<rt class="CmRow" guid="b8f7b9bc-ea5e-11de-87c2-0013722f8dec" ownerguid="b8ebce0e-ea5e-11de-9a5f-0013722f8dec"> -<Cells> -<objsur guid="b901431a-ea5e-11de-8604-0013722f8dec" t="o" /> -</Cells> -</rt> -<rt class="CmCell" guid="b901431a-ea5e-11de-8604-0013722f8dec" ownerguid="b8f7b9bc-ea5e-11de-87c2-0013722f8dec"> -<Contents> -<Str> -<Run ws="en"><= Month and Year(January, 2000)</Run> -</Str> -</Contents> -</rt> -<rt class="CmFilter" guid="b90d2ed2-ea5e-11de-87ca-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="39886581-4dd5-11d4-8078-0000c0fb81b5" /> -<ClassId val="4004" /> -<ColumnInfo> -<Uni>4006,4006008</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>After Date</Uni> -</Name> -<PromptText> -<Uni>Date of Event >= the following date:</Uni> -</PromptText> -<Rows> -<objsur guid="b9191a80-ea5e-11de-9691-0013722f8dec" t="o" /> -</Rows> -<ShowPrompt val="1" /> -<Type val="0" /> -</rt> -<rt class="CmRow" guid="b9191a80-ea5e-11de-9691-0013722f8dec" ownerguid="b90d2ed2-ea5e-11de-87ca-0013722f8dec"> -<Cells> -<objsur guid="b922a3de-ea5e-11de-9240-0013722f8dec" t="o" /> -</Cells> -</rt> -<rt class="CmCell" guid="b922a3de-ea5e-11de-9240-0013722f8dec" ownerguid="b9191a80-ea5e-11de-9691-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">>= Month and Year(January, 2000)</Run> -</Str> -</Contents> -</rt> -<rt class="CmFilter" guid="b92e8f8c-ea5e-11de-8dff-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="39886581-4dd5-11d4-8078-0000c0fb81b5" /> -<ClassId val="4004" /> -<ColumnInfo> -<Uni>4006,4006008</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>Month</Uni> -</Name> -<PromptText> -<Uni>Date of Event = the following month:</Uni> -</PromptText> -<Rows> -<objsur guid="b93a7b44-ea5e-11de-99fa-0013722f8dec" t="o" /> -</Rows> -<ShowPrompt val="1" /> -<Type val="0" /> -</rt> -<rt class="CmRow" guid="b93a7b44-ea5e-11de-99fa-0013722f8dec" ownerguid="b92e8f8c-ea5e-11de-8dff-0013722f8dec"> -<Cells> -<objsur guid="b94404a2-ea5e-11de-8992-0013722f8dec" t="o" /> -</Cells> -</rt> -<rt class="CmCell" guid="b94404a2-ea5e-11de-8992-0013722f8dec" ownerguid="b93a7b44-ea5e-11de-99fa-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">= Month(January)</Run> -</Str> -</Contents> -</rt> -<rt class="CmFilter" guid="b94ff050-ea5e-11de-8288-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="39886581-4dd5-11d4-8078-0000c0fb81b5" /> -<ClassId val="4004" /> -<ColumnInfo> -<Uni>4006,4006007,0</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>Source</Uni> -</Name> -<PromptText> -<Uni>The Source field matches the following reference:</Uni> -</PromptText> -<Rows> -<objsur guid="b95bdc08-ea5e-11de-91f0-0013722f8dec" t="o" /> -</Rows> -<ShowPrompt val="1" /> -<Type val="0" /> -</rt> -<rt class="CmRow" guid="b95bdc08-ea5e-11de-91f0-0013722f8dec" ownerguid="b94ff050-ea5e-11de-8288-0013722f8dec"> -<Cells> -<objsur guid="b9656566-ea5e-11de-8bb5-0013722f8dec" t="o" /> -</Cells> -</rt> -<rt class="CmCell" guid="b9656566-ea5e-11de-8bb5-0013722f8dec" ownerguid="b95bdc08-ea5e-11de-91f0-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Matches </Run> -</Str> -</Contents> -</rt> -<rt class="CmFilter" guid="b9715114-ea5e-11de-9a92-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="39886581-4dd5-11d4-8078-0000c0fb81b5" /> -<ClassId val="4004" /> -<ColumnInfo> -<Uni>4004,4004007</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>No Anthro Category</Uni> -</Name> -<Rows> -<objsur guid="b97d3ccc-ea5e-11de-8383-0013722f8dec" t="o" /> -</Rows> -<ShowPrompt val="0" /> -<Type val="0" /> -</rt> -<rt class="CmRow" guid="b97d3ccc-ea5e-11de-8383-0013722f8dec" ownerguid="b9715114-ea5e-11de-9a92-0013722f8dec"> -<Cells> -<objsur guid="b986c620-ea5e-11de-9b16-0013722f8dec" t="o" /> -</Cells> -</rt> -<rt class="CmCell" guid="b986c620-ea5e-11de-9b16-0013722f8dec" ownerguid="b97d3ccc-ea5e-11de-8383-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Empty</Run> -</Str> -</Contents> -</rt> -<rt class="CmFilter" guid="b992b1d8-ea5e-11de-806d-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="39886581-4dd5-11d4-8078-0000c0fb81b5" /> -<ClassId val="4004" /> -<ColumnInfo> -<Uni>4006,4006001</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>Description</Uni> -</Name> -<PromptText> -<Uni>The Description field contains the following text:</Uni> -</PromptText> -<Rows> -<objsur guid="b99e9d86-ea5e-11de-8276-0013722f8dec" t="o" /> -</Rows> -<ShowPrompt val="1" /> -<Type val="0" /> -</rt> -<rt class="CmRow" guid="b99e9d86-ea5e-11de-8276-0013722f8dec" ownerguid="b992b1d8-ea5e-11de-806d-0013722f8dec"> -<Cells> -<objsur guid="b9aa893e-ea5e-11de-99f2-0013722f8dec" t="o" /> -</Cells> -</rt> -<rt class="CmCell" guid="b9aa893e-ea5e-11de-99f2-0013722f8dec" ownerguid="b99e9d86-ea5e-11de-8276-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Contains ""</Run> -</Str> -</Contents> -</rt> -<rt class="CmFilter" guid="b9b4129c-ea5e-11de-8aff-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="39886581-4dd5-11d4-8078-0000c0fb81b5" /> -<ClassId val="4004" /> -<ColumnInfo> -<Uni>4006,4006004</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>Event Type</Uni> -</Name> -<PromptText> -<Uni>The Event Type field matches the following reference:</Uni> -</PromptText> -<Rows> -<objsur guid="b9bffe4a-ea5e-11de-9002-0013722f8dec" t="o" /> -</Rows> -<ShowPrompt val="1" /> -<Type val="0" /> -</rt> -<rt class="CmRow" guid="b9bffe4a-ea5e-11de-9002-0013722f8dec" ownerguid="b9b4129c-ea5e-11de-8aff-0013722f8dec"> -<Cells> -<objsur guid="b9cbea02-ea5e-11de-979f-0013722f8dec" t="o" /> -</Cells> -</rt> -<rt class="CmCell" guid="b9cbea02-ea5e-11de-979f-0013722f8dec" ownerguid="b9bffe4a-ea5e-11de-9002-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Matches +subitems</Run> -</Str> -</Contents> -</rt> -<rt class="CmFilter" guid="b9d57356-ea5e-11de-9799-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="5ea62d01-7a78-11d4-8078-0000c0fb81b5" /> -<ClassId val="7" /> -<ColumnInfo> -<Uni>7,7007</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>No Restrictions</Uni> -</Name> -<Rows> -<objsur guid="b9e15f0e-ea5e-11de-84db-0013722f8dec" t="o" /> -<objsur guid="b9f6d41a-ea5e-11de-8aaf-0013722f8dec" t="o" /> -</Rows> -<ShowPrompt val="0" /> -<Type val="1" /> -</rt> -<rt class="CmRow" guid="b9e15f0e-ea5e-11de-84db-0013722f8dec" ownerguid="b9d57356-ea5e-11de-9799-0013722f8dec"> -<Cells> -<objsur guid="b9ed4abc-ea5e-11de-8314-0013722f8dec" t="o" /> -</Cells> -</rt> -<rt class="CmCell" guid="b9ed4abc-ea5e-11de-8314-0013722f8dec" ownerguid="b9e15f0e-ea5e-11de-84db-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Empty or Matches </Run> -<Run link="6ebc80f8-9ce0-45d9-bb49-3869591fb1ff" ws="en"></Run> -</Str> -</Contents> -</rt> -<rt class="CmRow" guid="b9f6d41a-ea5e-11de-8aaf-0013722f8dec" ownerguid="b9d57356-ea5e-11de-9799-0013722f8dec"> -<Cells> -<objsur guid="d70093c0-ea5e-11de-91f6-0013722f8dec" t="o" /> -</Cells> -</rt> -<rt class="CmFilter" guid="ba02bfd2-ea5e-11de-96d4-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="5ea62d01-7a78-11d4-8078-0000c0fb81b5" /> -<ClassId val="13" /> -<ColumnInfo> -<Uni>13,7008</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>Confidence</Uni> -</Name> -<PromptText> -<Uni>The Confidence field matches the following reference:</Uni> -</PromptText> -<Rows> -<objsur guid="ba0eab80-ea5e-11de-960f-0013722f8dec" t="o" /> -</Rows> -<ShowPrompt val="1" /> -<Type val="0" /> -</rt> -<rt class="CmRow" guid="ba0eab80-ea5e-11de-960f-0013722f8dec" ownerguid="ba02bfd2-ea5e-11de-96d4-0013722f8dec"> -<Cells> -<objsur guid="ba1834de-ea5e-11de-8a70-0013722f8dec" t="o" /> -</Cells> -</rt> -<rt class="CmCell" guid="ba1834de-ea5e-11de-8a70-0013722f8dec" ownerguid="ba0eab80-ea5e-11de-960f-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Matches </Run> -</Str> -</Contents> -</rt> -<rt class="CmFilter" guid="ba242096-ea5e-11de-8dd3-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="5ea62d01-7a78-11d4-8078-0000c0fb81b5" /> -<ClassId val="13" /> -<ColumnInfo> -<Uni>13,7007</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>No Restrictions</Uni> -</Name> -<Rows> -<objsur guid="ba300c44-ea5e-11de-8097-0013722f8dec" t="o" /> -<objsur guid="ba458150-ea5e-11de-9cc9-0013722f8dec" t="o" /> -</Rows> -<ShowPrompt val="0" /> -<Type val="1" /> -</rt> -<rt class="CmRow" guid="ba300c44-ea5e-11de-8097-0013722f8dec" ownerguid="ba242096-ea5e-11de-8dd3-0013722f8dec"> -<Cells> -<objsur guid="ba3995a2-ea5e-11de-98df-0013722f8dec" t="o" /> -</Cells> -</rt> -<rt class="CmCell" guid="ba3995a2-ea5e-11de-98df-0013722f8dec" ownerguid="ba300c44-ea5e-11de-8097-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Empty or Matches </Run> -<Run link="6ebc80f8-9ce0-45d9-bb49-3869591fb1ff" ws="en"></Run> -</Str> -</Contents> -</rt> -<rt class="CmRow" guid="ba458150-ea5e-11de-9cc9-0013722f8dec" ownerguid="ba242096-ea5e-11de-8dd3-0013722f8dec"> -<Cells> -<objsur guid="d6b448da-ea5e-11de-8ece-0013722f8dec" t="o" /> -</Cells> -</rt> -<rt class="CmFilter" guid="ba516d08-ea5e-11de-91eb-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="5ea62d01-7a78-11d4-8078-0000c0fb81b5" /> -<ClassId val="13" /> -<ColumnInfo> -<Uni>13,13006</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>Place of Birth</Uni> -</Name> -<PromptText> -<Uni>The Place of Birth field matches the following reference:</Uni> -</PromptText> -<Rows> -<objsur guid="ba5af666-ea5e-11de-837b-0013722f8dec" t="o" /> -</Rows> -<ShowPrompt val="1" /> -<Type val="0" /> -</rt> -<rt class="CmRow" guid="ba5af666-ea5e-11de-837b-0013722f8dec" ownerguid="ba516d08-ea5e-11de-91eb-0013722f8dec"> -<Cells> -<objsur guid="ba66e214-ea5e-11de-941e-0013722f8dec" t="o" /> -</Cells> -</rt> -<rt class="CmCell" guid="ba66e214-ea5e-11de-941e-0013722f8dec" ownerguid="ba5af666-ea5e-11de-837b-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Matches +subitems</Run> -</Str> -</Contents> -</rt> -<rt class="CmFilter" guid="ba72cdcc-ea5e-11de-9f45-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="5ea62d01-7a78-11d4-8078-0000c0fb81b5" /> -<ClassId val="13" /> -<ColumnInfo> -<Uni>13,13009</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>Place of Residence</Uni> -</Name> -<PromptText> -<Uni>The Place of Residence field matches the following reference:</Uni> -</PromptText> -<Rows> -<objsur guid="ba7eb97a-ea5e-11de-8ff1-0013722f8dec" t="o" /> -</Rows> -<ShowPrompt val="1" /> -<Type val="0" /> -</rt> -<rt class="CmRow" guid="ba7eb97a-ea5e-11de-8ff1-0013722f8dec" ownerguid="ba72cdcc-ea5e-11de-9f45-0013722f8dec"> -<Cells> -<objsur guid="ba8842d8-ea5e-11de-8cde-0013722f8dec" t="o" /> -</Cells> -</rt> -<rt class="CmCell" guid="ba8842d8-ea5e-11de-8cde-0013722f8dec" ownerguid="ba7eb97a-ea5e-11de-8ff1-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Matches +subitems</Run> -</Str> -</Contents> -</rt> -<rt class="CmFilter" guid="ba942e86-ea5e-11de-9772-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="5ea62d01-7a78-11d4-8078-0000c0fb81b5" /> -<ClassId val="13" /> -<ColumnInfo> -<Uni>13,13011</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>Living</Uni> -</Name> -<Rows> -<objsur guid="baa01a3e-ea5e-11de-87fb-0013722f8dec" t="o" /> -</Rows> -<ShowPrompt val="0" /> -<Type val="0" /> -</rt> -<rt class="CmRow" guid="baa01a3e-ea5e-11de-87fb-0013722f8dec" ownerguid="ba942e86-ea5e-11de-9772-0013722f8dec"> -<Cells> -<objsur guid="baa9a39c-ea5e-11de-92ce-0013722f8dec" t="o" /> -</Cells> -</rt> -<rt class="CmCell" guid="baa9a39c-ea5e-11de-92ce-0013722f8dec" ownerguid="baa01a3e-ea5e-11de-87fb-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Empty</Run> -</Str> -</Contents> -</rt> -<rt class="CmFilter" guid="bab58f4a-ea5e-11de-9fec-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="5ea62d01-7a78-11d4-8078-0000c0fb81b5" /> -<ClassId val="13" /> -<ColumnInfo> -<Uni>13,13008</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>Not Researcher</Uni> -</Name> -<Rows> -<objsur guid="bac17b02-ea5e-11de-99aa-0013722f8dec" t="o" /> -</Rows> -<ShowPrompt val="0" /> -<Type val="0" /> -</rt> -<rt class="CmAnnotationDefn" guid="babcb400-f274-4498-92c5-77e99c90f75b" ownerguid="82e2fd92-48d8-43c9-ba84-cc4a2a5beead"> -<AllowsComment val="True" /> -<AllowsFeatureStructure val="False" /> -<AllowsInstanceOf val="False" /> -<BackColor val="0" /> -<CanCreateOrphan val="False" /> -<CopyCutPastable val="True" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">Checks for potential inconsistencies in capitalization.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<HelpId> -<Uni>Capitalization</Uni> -</HelpId> -<Hidden val="False" /> -<InstanceOfSignature val="0" /> -<IsProtected val="True" /> -<MaxDupOccur val="0" /> -<Multi val="True" /> -<Name> -<AUni ws="en">Capitalization</AUni> -</Name> -<PromptUser val="False" /> -<Severity val="0" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -<UserCanCreate val="False" /> -<ZeroWidth val="False" /> -</rt> -<rt class="CmAnnotationDefn" guid="babcb400-f274-4498-92c5-77e99c90f75d" ownerguid="82e2fd92-48d8-43c9-ba84-cc4a2a5beead"> -<AllowsComment val="True" /> -<AllowsFeatureStructure val="False" /> -<AllowsInstanceOf val="False" /> -<BackColor val="0" /> -<CanCreateOrphan val="False" /> -<CopyCutPastable val="True" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">Checks for words with a potentially invalid mix of uppercase and lowercase letters.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<HelpId> -<Uni>Mixed_Capitalization</Uni> -</HelpId> -<Hidden val="False" /> -<InstanceOfSignature val="0" /> -<IsProtected val="True" /> -<MaxDupOccur val="0" /> -<Multi val="True" /> -<Name> -<AUni ws="en">Mixed Capitalization</AUni> -</Name> -<PromptUser val="False" /> -<Severity val="0" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -<UserCanCreate val="False" /> -<ZeroWidth val="False" /> -</rt> -<rt class="CmRow" guid="bac17b02-ea5e-11de-99aa-0013722f8dec" ownerguid="bab58f4a-ea5e-11de-9fec-0013722f8dec"> -<Cells> -<objsur guid="bacb0460-ea5e-11de-85ec-0013722f8dec" t="o" /> -</Cells> -</rt> -<rt class="CmCell" guid="bacb0460-ea5e-11de-85ec-0013722f8dec" ownerguid="bac17b02-ea5e-11de-99aa-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">No</Run> -</Str> -</Contents> -</rt> -<rt class="CmFilter" guid="bad6f00e-ea5e-11de-9708-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="5ea62d01-7a78-11d4-8078-0000c0fb81b5" /> -<ClassId val="26" /> -<ColumnInfo> -<Uni>26,7008</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>Confidence</Uni> -</Name> -<PromptText> -<Uni>The Confidence field matches the following reference:</Uni> -</PromptText> -<Rows> -<objsur guid="bae2dbc6-ea5e-11de-9159-0013722f8dec" t="o" /> -</Rows> -<ShowPrompt val="1" /> -<Type val="0" /> -</rt> -<rt class="CmRow" guid="bae2dbc6-ea5e-11de-9159-0013722f8dec" ownerguid="bad6f00e-ea5e-11de-9708-0013722f8dec"> -<Cells> -<objsur guid="baec651a-ea5e-11de-9b19-0013722f8dec" t="o" /> -</Cells> -</rt> -<rt class="CmCell" guid="baec651a-ea5e-11de-9b19-0013722f8dec" ownerguid="bae2dbc6-ea5e-11de-9159-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Matches </Run> -</Str> -</Contents> -</rt> -<rt class="CmFilter" guid="baf850d2-ea5e-11de-9ccf-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="5ea62d01-7a78-11d4-8078-0000c0fb81b5" /> -<ClassId val="26" /> -<ColumnInfo> -<Uni>26,7007</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>No Restrictions</Uni> -</Name> -<Rows> -<objsur guid="bb043c80-ea5e-11de-9112-0013722f8dec" t="o" /> -<objsur guid="bb19b196-ea5e-11de-8f5d-0013722f8dec" t="o" /> -</Rows> -<ShowPrompt val="0" /> -<Type val="1" /> -</rt> -<rt class="CmRow" guid="bb043c80-ea5e-11de-9112-0013722f8dec" ownerguid="baf850d2-ea5e-11de-9ccf-0013722f8dec"> -<Cells> -<objsur guid="bb0dc5de-ea5e-11de-853e-0013722f8dec" t="o" /> -</Cells> -</rt> -<rt class="CmCell" guid="bb0dc5de-ea5e-11de-853e-0013722f8dec" ownerguid="bb043c80-ea5e-11de-9112-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Empty or Matches </Run> -<Run link="6ebc80f8-9ce0-45d9-bb49-3869591fb1ff" ws="en"></Run> -</Str> -</Contents> -</rt> -<rt class="CmRow" guid="bb19b196-ea5e-11de-8f5d-0013722f8dec" ownerguid="baf850d2-ea5e-11de-9ccf-0013722f8dec"> -<Cells> -<objsur guid="d6bdd238-ea5e-11de-86a8-0013722f8dec" t="o" /> -</Cells> -</rt> -<rt class="CmFilter" guid="bb259d44-ea5e-11de-8dd1-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="5ea62d01-7a78-11d4-8078-0000c0fb81b5" /> -<ClassId val="12" /> -<ColumnInfo> -<Uni>12,7008</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>Confidence</Uni> -</Name> -<PromptText> -<Uni>The Confidence field matches the following reference:</Uni> -</PromptText> -<Rows> -<objsur guid="bb2f26a2-ea5e-11de-9ac8-0013722f8dec" t="o" /> -</Rows> -<ShowPrompt val="1" /> -<Type val="0" /> -</rt> -<rt class="CmRow" guid="bb2f26a2-ea5e-11de-9ac8-0013722f8dec" ownerguid="bb259d44-ea5e-11de-8dd1-0013722f8dec"> -<Cells> -<objsur guid="bb3b1250-ea5e-11de-919b-0013722f8dec" t="o" /> -</Cells> -</rt> -<rt class="CmPossibilityList" guid="bb372467-5230-43ef-9cc7-4d40b053fb94" ownerguid="af26d792-ea5e-11de-8f7e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">EntTyp</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:6.268" /> -<DateModified val="2018-8-2 16:32:6.268" /> -<Depth val="127" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="False" /> -<IsVernacular val="False" /> -<ItemClsid val="5118" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Variant Types</AUni> -</Name> -<Possibilities> -<objsur guid="3942addb-99fd-43e9-ab7d-99025ceb0d4e" t="o" /> -<objsur guid="024b62c9-93b3-41a0-ab19-587a0030219a" t="o" /> -<objsur guid="4343b1ef-b54f-4fa4-9998-271319a6d74c" t="o" /> -<objsur guid="01d4fbc1-3b0c-4f52-9163-7ab0d4f4711c" t="o" /> -<objsur guid="0c4663b3-4d9a-47af-b9a1-c8565d8112ed" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="True" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="CmCell" guid="bb3b1250-ea5e-11de-919b-0013722f8dec" ownerguid="bb2f26a2-ea5e-11de-9ac8-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Matches </Run> -</Str> -</Contents> -</rt> -<rt class="CmFilter" guid="bb46fe08-ea5e-11de-9314-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="5ea62d01-7a78-11d4-8078-0000c0fb81b5" /> -<ClassId val="12" /> -<ColumnInfo> -<Uni>12,7007</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>No Restrictions</Uni> -</Name> -<Rows> -<objsur guid="bb52e9b6-ea5e-11de-8118-0013722f8dec" t="o" /> -<objsur guid="bb685ecc-ea5e-11de-8b8c-0013722f8dec" t="o" /> -</Rows> -<ShowPrompt val="0" /> -<Type val="1" /> -</rt> -<rt class="CmRow" guid="bb52e9b6-ea5e-11de-8118-0013722f8dec" ownerguid="bb46fe08-ea5e-11de-9314-0013722f8dec"> -<Cells> -<objsur guid="bb5c7314-ea5e-11de-9bb6-0013722f8dec" t="o" /> -</Cells> -</rt> -<rt class="CmCell" guid="bb5c7314-ea5e-11de-9bb6-0013722f8dec" ownerguid="bb52e9b6-ea5e-11de-8118-0013722f8dec"> -<Contents> -<Str> -<Run ws="en">Empty or Matches </Run> -<Run link="6ebc80f8-9ce0-45d9-bb49-3869591fb1ff" ws="en"></Run> -</Str> -</Contents> -</rt> -<rt class="CmRow" guid="bb685ecc-ea5e-11de-8b8c-0013722f8dec" ownerguid="bb46fe08-ea5e-11de-9314-0013722f8dec"> -<Cells> -<objsur guid="d6df32fc-ea5e-11de-96e5-0013722f8dec" t="o" /> -</Cells> -</rt> -<rt class="CmFilter" guid="bb744a7a-ea5e-11de-881b-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="a7d421e1-1dd3-11d5-b720-0010a4b54856" /> -<ClassId val="3018" /> -<ColumnInfo> -<Uni>3018,34003</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>kstidConsultantNoteFilter</Uni> -</Name> -<Rows> -<objsur guid="5b786787-2977-4103-9d71-3e38c636b1b0" t="o" /> -</Rows> -<ShowPrompt val="0" /> -<Type val="0" /> -</rt> -<rt class="CmFilter" guid="bb7dd3d8-ea5e-11de-8cc5-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="a7d421e1-1dd3-11d5-b720-0010a4b54856" /> -<ClassId val="3018" /> -<ColumnInfo> -<Uni>3018,34003</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>kstidTranslatorNoteFilter</Uni> -</Name> -<Rows> -<objsur guid="47a43063-ba83-4be2-9604-46a7701a9385" t="o" /> -</Rows> -<ShowPrompt val="0" /> -<Type val="0" /> -</rt> -<rt class="CmFilter" guid="bb89bf90-ea5e-11de-9773-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="a7d421e1-1dd3-11d5-b720-0010a4b54856" /> -<ClassId val="3018" /> -<ColumnInfo> -<Uni>3018,3018001</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>kstidOpenNoteFilter</Uni> -</Name> -<Rows> -<objsur guid="c2f0eb83-212b-4c1b-b357-f28bcd96053e" t="o" /> -</Rows> -<ShowPrompt val="0" /> -<Type val="0" /> -</rt> -<rt class="CmFilter" guid="bb95ab3e-ea5e-11de-94f6-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<App val="a7d421e1-1dd3-11d5-b720-0010a4b54856" /> -<ClassId val="3018" /> -<ColumnInfo> -<Uni>3018,3018002</Uni> -</ColumnInfo> -<FieldId val="0" /> -<Name> -<Uni>kstidCategoryNoteFilter</Uni> -</Name> -<PromptText> -<Uni>Choose the category of note to display:</Uni> -</PromptText> -<Rows> -<objsur guid="0288b729-8eb0-41ad-b27c-9534c64900a5" t="o" /> -</Rows> -<ShowPrompt val="1" /> -<Type val="0" /> -</rt> -<rt class="CmPossibility" guid="bb9f349c-ea5e-11de-9293-0013722f8dec" ownerguid="d99e8542-ea5e-11de-9301-0013722f8dec"> -<Abbreviation> -<AUni ws="en">High</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">High</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bbab204a-ea5e-11de-99a0-0013722f8dec" ownerguid="d99e8542-ea5e-11de-9301-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Med</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Medium</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bbb70c02-ea5e-11de-8a97-0013722f8dec" ownerguid="d99e8542-ea5e-11de-9301-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Low</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Low</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bbc09560-ea5e-11de-8de5-0013722f8dec" ownerguid="d99e8542-ea5e-11de-9301-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Unk</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Unknown</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bbcc810e-ea5e-11de-8a3b-0013722f8dec" ownerguid="d743553e-ea5e-11de-842a-0013722f8dec"> -<Abbreviation> -<AUni ws="en">NPub</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Do not publish</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bbd86cc6-ea5e-11de-8964-0013722f8dec" ownerguid="d743553e-ea5e-11de-842a-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Case</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Case by case</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bbe1f61a-ea5e-11de-9640-0013722f8dec" ownerguid="d743553e-ea5e-11de-842a-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Unk</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Unknown</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bcb1cf88-582d-463a-b96f-0023f6ac2395" ownerguid="d9d55b12-ea5e-11de-95ef-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Method</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Methodology</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bd10bf44-ea5e-11de-8980-0013722f8dec" ownerguid="d992998a-ea5e-11de-899e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Accsd</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Accused</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bd1a48a2-ea5e-11de-9ed7-0013722f8dec" ownerguid="d992998a-ea5e-11de-899e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Accsr</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Accuser</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bd26345a-ea5e-11de-9973-0013722f8dec" ownerguid="d992998a-ea5e-11de-899e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Arbtr</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Arbitrator</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bd322008-ea5e-11de-8390-0013722f8dec" ownerguid="d992998a-ea5e-11de-899e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Aud</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Audience</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bd3e0bc0-ea5e-11de-93b0-0013722f8dec" ownerguid="d992998a-ea5e-11de-899e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Ben</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Benefactor</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bd479514-ea5e-11de-99f8-0013722f8dec" ownerguid="d992998a-ea5e-11de-899e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Eye</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Eyewitness</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bd5380cc-ea5e-11de-8a09-0013722f8dec" ownerguid="d992998a-ea5e-11de-899e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Initr</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Initiator</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bd5f6c7a-ea5e-11de-8ce5-0013722f8dec" ownerguid="d992998a-ea5e-11de-899e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Mdtr</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Mediator</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bd68f5d8-ea5e-11de-9d1b-0013722f8dec" ownerguid="d992998a-ea5e-11de-899e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Narrtr</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Narrator</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bd74e190-ea5e-11de-8bb1-0013722f8dec" ownerguid="d992998a-ea5e-11de-899e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Rptr</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Reporter</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bd80cd3e-ea5e-11de-9871-0013722f8dec" ownerguid="d86632ba-ea5e-11de-8a58-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Conf</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Confirmed</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bd8a569c-ea5e-11de-87cc-0013722f8dec" ownerguid="d86632ba-ea5e-11de-8a58-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Dis</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Disproved</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bd964254-ea5e-11de-8cdf-0013722f8dec" ownerguid="d86632ba-ea5e-11de-8a58-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Pend</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Pending</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bda22e02-ea5e-11de-9452-0013722f8dec" ownerguid="d70c7f6e-ea5e-11de-9dc3-0013722f8dec"> -<Abbreviation> -<AUni ws="en">No</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">No Formal</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bdabb760-ea5e-11de-8ce8-0013722f8dec" ownerguid="d70c7f6e-ea5e-11de-9dc3-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Pri</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Primary</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bdb7a30e-ea5e-11de-8919-0013722f8dec" ownerguid="d70c7f6e-ea5e-11de-9dc3-0013722f8dec"> -<Abbreviation> -<AUni ws="en">JrHi</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Junior High</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bdc38ec6-ea5e-11de-9902-0013722f8dec" ownerguid="d70c7f6e-ea5e-11de-9dc3-0013722f8dec"> -<Abbreviation> -<AUni ws="en">HS</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">High School</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bdcd1824-ea5e-11de-89ce-0013722f8dec" ownerguid="d70c7f6e-ea5e-11de-9dc3-0013722f8dec"> -<Abbreviation> -<AUni ws="en">UndGrad</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Undergraduate</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bdd903d2-ea5e-11de-9be6-0013722f8dec" ownerguid="d70c7f6e-ea5e-11de-9dc3-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Grad</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Graduate</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bde4ef8a-ea5e-11de-8623-0013722f8dec" ownerguid="d70c7f6e-ea5e-11de-9dc3-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Prof</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Professor</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bdee78de-ea5e-11de-8897-0013722f8dec" ownerguid="d850bdae-ea5e-11de-985e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Pred</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Predawn</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="bdfa6496-ea5e-11de-82c0-0013722f8dec" ownerguid="d850bdae-ea5e-11de-985e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Morn</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Morning</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="be065044-ea5e-11de-8d04-0013722f8dec" t="o" /> -<objsur guid="be123bfc-ea5e-11de-962f-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="be065044-ea5e-11de-8d04-0013722f8dec" ownerguid="bdfa6496-ea5e-11de-82c0-0013722f8dec"> -<Abbreviation> -<AUni ws="en">EMorn</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Early Morning</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="be123bfc-ea5e-11de-962f-0013722f8dec" ownerguid="bdfa6496-ea5e-11de-82c0-0013722f8dec"> -<Abbreviation> -<AUni ws="en">LMorn</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Late Morning</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="be1bc55a-ea5e-11de-9476-0013722f8dec" ownerguid="d850bdae-ea5e-11de-985e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Mid</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Midday</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="be27b108-ea5e-11de-9fdb-0013722f8dec" ownerguid="d850bdae-ea5e-11de-985e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Aft</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Afternoon</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="be339cc0-ea5e-11de-9108-0013722f8dec" t="o" /> -<objsur guid="be3d261e-ea5e-11de-8dc4-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="be339cc0-ea5e-11de-9108-0013722f8dec" ownerguid="be27b108-ea5e-11de-9fdb-0013722f8dec"> -<Abbreviation> -<AUni ws="en">EAft</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Early Afternoon</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="be3d261e-ea5e-11de-8dc4-0013722f8dec" ownerguid="be27b108-ea5e-11de-9fdb-0013722f8dec"> -<Abbreviation> -<AUni ws="en">LAft</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Late Afternoon</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="be4911cc-ea5e-11de-8d21-0013722f8dec" ownerguid="d850bdae-ea5e-11de-985e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Eve</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Evening</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="be54fd84-ea5e-11de-86b7-0013722f8dec" ownerguid="d850bdae-ea5e-11de-985e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Night</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Night</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="be5e86d8-ea5e-11de-9b90-0013722f8dec" ownerguid="d850bdae-ea5e-11de-985e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Midnight</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Midnight</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibilityList" guid="be6a7290-ea5e-11de-98a2-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<DateCreated val="2018-8-2 16:32:6.324" /> -<DateModified val="2018-8-2 16:32:6.324" /> -<Depth val="0" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="False" /> -<IsVernacular val="False" /> -<ItemClsid val="7" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Affix Categories</AUni> -</Name> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="PhPhonData" guid="be765e3e-ea5e-11de-9d42-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Environments> -<objsur guid="b27c54e7-0a24-46d7-b332-e63a45ecffc2" t="o" /> -<objsur guid="ae5f3ffd-a9d0-4eaa-9040-50a5a57e64bc" t="o" /> -<objsur guid="35058c7a-447a-4ee8-89bd-323da24bf7c5" t="o" /> -<objsur guid="1929b7d2-c2d8-4659-8d3c-ab5b69aaf7f9" t="o" /> -<objsur guid="063e4b2d-a4d5-40c6-b955-bf07f3c888ec" t="o" /> -<objsur guid="abe0ecdd-ea94-4f30-a907-034beb750359" t="o" /> -<objsur guid="75897320-98dd-4258-8b5d-d9c6e0f1847e" t="o" /> -<objsur guid="ecc38dfe-17e1-43c0-a97d-424b6daa6ea3" t="o" /> -<objsur guid="c70a3593-3901-43b4-b84f-0da2c2ccccda" t="o" /> -<objsur guid="4d5106b0-9756-4fc2-a2e3-b3bb0373fd9b" t="o" /> -<objsur guid="04c2c26a-62fd-4045-9c28-5e4da7139d19" t="o" /> -<objsur guid="8378f21c-cf54-437a-9d41-a303c764b326" t="o" /> -<objsur guid="3bc9aba3-0585-4f44-806b-3ed4184ffa92" t="o" /> -<objsur guid="b148e437-5e11-4abc-84bf-b21723b5a9f0" t="o" /> -<objsur guid="c00e385f-cbe6-4724-8993-cc46e22ee3ba" t="o" /> -<objsur guid="e381191f-e778-41d7-9369-2559954d06ce" t="o" /> -<objsur guid="4d5e1a72-550e-4cc6-b389-9af4ed72df6d" t="o" /> -</Environments> -<NaturalClasses> -<objsur guid="d69c7174-ea5e-11de-9a7d-0013722f8dec" t="o" /> -<objsur guid="022cba1a-4664-427d-b851-7b93af4f0a46" t="o" /> -<objsur guid="564a9dd9-ce60-4f88-950f-e5fc82311e85" t="o" /> -<objsur guid="d6a85d2c-ea5e-11de-83f4-0013722f8dec" t="o" /> -</NaturalClasses> -<PhonemeSets> -<objsur guid="be7fe79c-ea5e-11de-8151-0013722f8dec" t="o" /> -</PhonemeSets> -<PhonRuleFeats> -<objsur guid="e491e5d5-d569-41f2-a9c1-23c048d55d59" t="o" /> -</PhonRuleFeats> -</rt> -<rt class="PhPhonemeSet" guid="be7fe79c-ea5e-11de-8151-0013722f8dec" ownerguid="be765e3e-ea5e-11de-9d42-0013722f8dec"> -<BoundaryMarkers> -<objsur guid="3bde17ce-e39a-4bae-8a5c-a8d96fd4cb56" t="o" /> -<objsur guid="7db635e0-9ef3-4167-a594-12551ed89aaa" t="o" /> -</BoundaryMarkers> -<Description> -<AStr ws="en"> -<Run ws="en">Main phoneme set</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">Main phoneme set</AUni> -</Name> -<Phonemes> -<objsur guid="30c775f1-e1c4-459f-9cbd-0c50d111a03f" t="o" /> -<objsur guid="53cd56ab-c7c3-4678-a0ff-115a4828212c" t="o" /> -<objsur guid="54482722-898d-4007-ba4d-c113b50789cd" t="o" /> -<objsur guid="5adde606-e77c-496c-9fb2-111a6b01e9fd" t="o" /> -<objsur guid="60f222f8-e2b9-4ffe-ac3c-0c7fb1a24e83" t="o" /> -<objsur guid="655c115f-eab9-4552-9a98-7ef9bb41ebb1" t="o" /> -<objsur guid="93d652a3-4b98-42e3-90f9-ae9ab0ead15b" t="o" /> -<objsur guid="9e9886d6-589e-4538-9509-5532fbe76ef1" t="o" /> -<objsur guid="b1e553eb-ba5d-438d-a847-8b65e95ab927" t="o" /> -<objsur guid="bcf89c4f-49cb-4a7f-8937-f35c715f70df" t="o" /> -<objsur guid="d74f40f6-ea5e-11de-8028-0013722f8dec" t="o" /> -<objsur guid="d75b2ca4-ea5e-11de-9639-0013722f8dec" t="o" /> -<objsur guid="d764b602-ea5e-11de-9d0b-0013722f8dec" t="o" /> -<objsur guid="d770a1ba-ea5e-11de-93c8-0013722f8dec" t="o" /> -<objsur guid="d77c8d68-ea5e-11de-9b1a-0013722f8dec" t="o" /> -<objsur guid="d78616c6-ea5e-11de-9f26-0013722f8dec" t="o" /> -<objsur guid="d792027e-ea5e-11de-98bc-0013722f8dec" t="o" /> -<objsur guid="d79dee2c-ea5e-11de-98a0-0013722f8dec" t="o" /> -<objsur guid="d7a7778a-ea5e-11de-90d5-0013722f8dec" t="o" /> -<objsur guid="d7b36338-ea5e-11de-9064-0013722f8dec" t="o" /> -<objsur guid="d7bf4ef0-ea5e-11de-96a9-0013722f8dec" t="o" /> -<objsur guid="d7c8d84e-ea5e-11de-909e-0013722f8dec" t="o" /> -<objsur guid="d7d4c3fc-ea5e-11de-89e1-0013722f8dec" t="o" /> -<objsur guid="d7e0afb4-ea5e-11de-9cc6-0013722f8dec" t="o" /> -<objsur guid="d7ec9b62-ea5e-11de-892e-0013722f8dec" t="o" /> -<objsur guid="d7f624c0-ea5e-11de-9891-0013722f8dec" t="o" /> -<objsur guid="d802106e-ea5e-11de-8560-0013722f8dec" t="o" /> -<objsur guid="d80dfc26-ea5e-11de-852c-0013722f8dec" t="o" /> -<objsur guid="d8178584-ea5e-11de-8593-0013722f8dec" t="o" /> -<objsur guid="d8237132-ea5e-11de-987d-0013722f8dec" t="o" /> -<objsur guid="d82f5cea-ea5e-11de-864c-0013722f8dec" t="o" /> -<objsur guid="d838e648-ea5e-11de-9b7f-0013722f8dec" t="o" /> -<objsur guid="e1bd5b84-48dc-4df5-8cb0-de15793f00f6" t="o" /> -<objsur guid="e6951d31-60a0-43e9-bebb-7d2ed36c19eb" t="o" /> -<objsur guid="f5ae79dc-30ed-408a-9961-8c213feee29b" t="o" /> -</Phonemes> -</rt> -<rt class="PhCode" guid="be8bd354-ea5e-11de-8235-0013722f8dec" ownerguid="7db635e0-9ef3-4167-a594-12551ed89aaa"> -<Representation> -<AUni ws="en">#</AUni> -<AUni ws="qvm-x-ach">#</AUni> -</Representation> -</rt> -<rt class="PhCode" guid="be97bf02-ea5e-11de-9f9d-0013722f8dec" ownerguid="3bde17ce-e39a-4bae-8a5c-a8d96fd4cb56"> -<Representation> -<AUni ws="en">+</AUni> -<AUni ws="qvm-x-ach">+</AUni> -</Representation> -</rt> -<rt class="PhCode" guid="bea14860-ea5e-11de-8a91-0013722f8dec" ownerguid="d792027e-ea5e-11de-98bc-0013722f8dec"> -<Representation> -<AUni ws="en">i</AUni> -<AUni ws="qvm-x-ach">i</AUni> -<AUni ws="qvm-x-acl">i</AUni> -<AUni ws="qvm-x-akh">i</AUni> -<AUni ws="qvm-x-akl">i</AUni> -<AUni ws="qvm-x-ame">i</AUni> -</Representation> -</rt> -<rt class="PhCode" guid="bead340e-ea5e-11de-9f3a-0013722f8dec" ownerguid="d770a1ba-ea5e-11de-93c8-0013722f8dec"> -<Representation> -<AUni ws="en">e</AUni> -<AUni ws="qvm-x-ach">e</AUni> -<AUni ws="qvm-x-acl">e</AUni> -<AUni ws="qvm-x-akh">e</AUni> -<AUni ws="qvm-x-akl">e</AUni> -<AUni ws="qvm-x-ame">e</AUni> -</Representation> -</rt> -<rt class="PhCode" guid="beb91fc6-ea5e-11de-924c-0013722f8dec" ownerguid="d74f40f6-ea5e-11de-8028-0013722f8dec"> -<Representation> -<AUni ws="en">a</AUni> -<AUni ws="qvm-x-ach">a</AUni> -<AUni ws="qvm-x-acl">a</AUni> -<AUni ws="qvm-x-akh">a</AUni> -<AUni ws="qvm-x-akl">a</AUni> -<AUni ws="qvm-x-ame">a</AUni> -</Representation> -</rt> -<rt class="PhCode" guid="bec2a924-ea5e-11de-934a-0013722f8dec" ownerguid="d7d4c3fc-ea5e-11de-89e1-0013722f8dec"> -<Representation> -<AUni ws="en">o</AUni> -<AUni ws="qvm-x-ach">o</AUni> -<AUni ws="qvm-x-acl">o</AUni> -<AUni ws="qvm-x-akh">o</AUni> -<AUni ws="qvm-x-akl">o</AUni> -<AUni ws="qvm-x-ame">o</AUni> -</Representation> -</rt> -<rt class="PhCode" guid="bece94d2-ea5e-11de-9539-0013722f8dec" ownerguid="d80dfc26-ea5e-11de-852c-0013722f8dec"> -<Representation> -<AUni ws="en">u</AUni> -<AUni ws="qvm-x-ach">u</AUni> -<AUni ws="qvm-x-acl">u</AUni> -<AUni ws="qvm-x-akh">u</AUni> -<AUni ws="qvm-x-akl">u</AUni> -<AUni ws="qvm-x-ame">u</AUni> -</Representation> -</rt> -<rt class="PhCode" guid="beda808a-ea5e-11de-8f3c-0013722f8dec" ownerguid="d7e0afb4-ea5e-11de-9cc6-0013722f8dec"> -<Representation> -<AUni ws="en">p</AUni> -<AUni ws="qvm-x-ach">p</AUni> -<AUni ws="qvm-x-acl">p</AUni> -<AUni ws="qvm-x-akh">p</AUni> -<AUni ws="qvm-x-akl">p</AUni> -<AUni ws="qvm-x-ame">p</AUni> -</Representation> -</rt> -<rt class="PhCode" guid="bee409e8-ea5e-11de-88ce-0013722f8dec" ownerguid="d75b2ca4-ea5e-11de-9639-0013722f8dec"> -<Representation> -<AUni ws="en">b</AUni> -<AUni ws="qvm-x-ach">b</AUni> -<AUni ws="qvm-x-acl">b</AUni> -<AUni ws="qvm-x-akh">b</AUni> -<AUni ws="qvm-x-akl">b</AUni> -<AUni ws="qvm-x-ame">b</AUni> -</Representation> -</rt> -<rt class="PhCode" guid="beeff596-ea5e-11de-89a7-0013722f8dec" ownerguid="d802106e-ea5e-11de-8560-0013722f8dec"> -<Representation> -<AUni ws="en">t</AUni> -<AUni ws="qvm-x-ach">t</AUni> -<AUni ws="qvm-x-acl">t</AUni> -<AUni ws="qvm-x-akh">t</AUni> -<AUni ws="qvm-x-akl">t</AUni> -<AUni ws="qvm-x-ame">t</AUni> -</Representation> -</rt> -<rt class="PhCode" guid="befbe14e-ea5e-11de-8d20-0013722f8dec" ownerguid="d764b602-ea5e-11de-9d0b-0013722f8dec"> -<Representation> -<AUni ws="en">d</AUni> -<AUni ws="qvm-x-ach">d</AUni> -<AUni ws="qvm-x-acl">d</AUni> -<AUni ws="qvm-x-akh">d</AUni> -<AUni ws="qvm-x-akl">d</AUni> -<AUni ws="qvm-x-ame">d</AUni> -</Representation> -</rt> -<rt class="PhCode" guid="bf07ccfc-ea5e-11de-9e28-0013722f8dec" ownerguid="d7a7778a-ea5e-11de-90d5-0013722f8dec"> -<Representation> -<AUni ws="en">k</AUni> -<AUni ws="qvm-x-ach">k</AUni> -<AUni ws="qvm-x-acl">k</AUni> -<AUni ws="qvm-x-akh">k</AUni> -<AUni ws="qvm-x-akl">k</AUni> -<AUni ws="qvm-x-ame">k</AUni> -</Representation> -</rt> -<rt class="PhCode" guid="bf11565a-ea5e-11de-915f-0013722f8dec" ownerguid="d78616c6-ea5e-11de-9f26-0013722f8dec"> -<Representation> -<AUni ws="en">g</AUni> -<AUni ws="qvm-x-ach">g</AUni> -<AUni ws="qvm-x-acl">g</AUni> -<AUni ws="qvm-x-akh">g</AUni> -<AUni ws="qvm-x-akl">g</AUni> -<AUni ws="qvm-x-ame">g</AUni> -</Representation> -</rt> -<rt class="PhCode" guid="bf1d4208-ea5e-11de-9848-0013722f8dec" ownerguid="d77c8d68-ea5e-11de-9b1a-0013722f8dec"> -<Representation> -<AUni ws="en">f</AUni> -<AUni ws="qvm-x-ach">f</AUni> -<AUni ws="qvm-x-acl">f</AUni> -<AUni ws="qvm-x-akh">f</AUni> -<AUni ws="qvm-x-akl">f</AUni> -<AUni ws="qvm-x-ame">f</AUni> -</Representation> -</rt> -<rt class="PhCode" guid="bf292dc0-ea5e-11de-836f-0013722f8dec" ownerguid="d8178584-ea5e-11de-8593-0013722f8dec"> -<Representation> -<AUni ws="en">v</AUni> -<AUni ws="qvm-x-ach">v</AUni> -<AUni ws="qvm-x-acl">v</AUni> -<AUni ws="qvm-x-akh">v</AUni> -<AUni ws="qvm-x-akl">v</AUni> -<AUni ws="qvm-x-ame">v</AUni> -</Representation> -</rt> -<rt class="PhCode" guid="bf32b71e-ea5e-11de-9492-0013722f8dec" ownerguid="d7f624c0-ea5e-11de-9891-0013722f8dec"> -<Representation> -<AUni ws="en">s</AUni> -<AUni ws="qvm-x-ach">s</AUni> -<AUni ws="qvm-x-acl">s</AUni> -<AUni ws="qvm-x-akh">s</AUni> -<AUni ws="qvm-x-akl">s</AUni> -<AUni ws="qvm-x-ame">s</AUni> -</Representation> -</rt> -<rt class="PhCode" guid="bf3ea2cc-ea5e-11de-8bfb-0013722f8dec" ownerguid="d838e648-ea5e-11de-9b7f-0013722f8dec"> -<Representation> -<AUni ws="en">z</AUni> -<AUni ws="qvm-x-ach">z</AUni> -<AUni ws="qvm-x-acl">z</AUni> -<AUni ws="qvm-x-akh">z</AUni> -<AUni ws="qvm-x-akl">z</AUni> -<AUni ws="qvm-x-ame">z</AUni> -</Representation> -</rt> -<rt class="PhCode" guid="bf4a8e84-ea5e-11de-88e0-0013722f8dec" ownerguid="d82f5cea-ea5e-11de-864c-0013722f8dec"> -<Representation> -<AUni ws="en">x</AUni> -<AUni ws="qvm-x-ach">x</AUni> -<AUni ws="qvm-x-acl">x</AUni> -<AUni ws="qvm-x-akh">x</AUni> -<AUni ws="qvm-x-akl">x</AUni> -<AUni ws="qvm-x-ame">x</AUni> -</Representation> -</rt> -<rt class="PhCode" guid="bf5417d8-ea5e-11de-9d93-0013722f8dec" ownerguid="d7bf4ef0-ea5e-11de-96a9-0013722f8dec"> -<Representation> -<AUni ws="en">m</AUni> -<AUni ws="qvm-x-ach">m</AUni> -<AUni ws="qvm-x-acl">m</AUni> -<AUni ws="qvm-x-akh">m</AUni> -<AUni ws="qvm-x-akl">m</AUni> -<AUni ws="qvm-x-ame">m</AUni> -</Representation> -</rt> -<rt class="PhCode" guid="bf600390-ea5e-11de-8577-0013722f8dec" ownerguid="d7c8d84e-ea5e-11de-909e-0013722f8dec"> -<Representation> -<AUni ws="en">n</AUni> -<AUni ws="qvm-x-ach">n</AUni> -<AUni ws="qvm-x-acl">n</AUni> -<AUni ws="qvm-x-akh">n</AUni> -<AUni ws="qvm-x-akl">n</AUni> -<AUni ws="qvm-x-ame">n</AUni> -</Representation> -</rt> -<rt class="PhCode" guid="bf75789c-ea5e-11de-98fc-0013722f8dec" ownerguid="d7b36338-ea5e-11de-9064-0013722f8dec"> -<Representation> -<AUni ws="en">l</AUni> -<AUni ws="qvm-x-ach">l</AUni> -<AUni ws="qvm-x-acl">l</AUni> -<AUni ws="qvm-x-akh">l</AUni> -<AUni ws="qvm-x-akl">l</AUni> -<AUni ws="qvm-x-ame">l</AUni> -</Representation> -</rt> -<rt class="PhCode" guid="bf816454-ea5e-11de-8e5f-0013722f8dec" ownerguid="d7ec9b62-ea5e-11de-892e-0013722f8dec"> -<Representation> -<AUni ws="en">r</AUni> -<AUni ws="qvm-x-ach">r</AUni> -<AUni ws="qvm-x-acl">r</AUni> -<AUni ws="qvm-x-akh">r</AUni> -<AUni ws="qvm-x-akl">r</AUni> -<AUni ws="qvm-x-ame">r</AUni> -</Representation> -</rt> -<rt class="PhCode" guid="bf8d5002-ea5e-11de-9b78-0013722f8dec" ownerguid="d8237132-ea5e-11de-987d-0013722f8dec"> -<Representation> -<AUni ws="en">w</AUni> -<AUni ws="qvm-x-ach">w</AUni> -<AUni ws="qvm-x-acl">w</AUni> -<AUni ws="qvm-x-akh">w</AUni> -<AUni ws="qvm-x-akl">w</AUni> -<AUni ws="qvm-x-ame">w</AUni> -</Representation> -</rt> -<rt class="PhCode" guid="bf96d960-ea5e-11de-8c39-0013722f8dec" ownerguid="d79dee2c-ea5e-11de-98a0-0013722f8dec"> -<Representation> -<AUni ws="en">j</AUni> -<AUni ws="qvm-x-ach">j</AUni> -<AUni ws="qvm-x-acl">j</AUni> -<AUni ws="qvm-x-akh">j</AUni> -<AUni ws="qvm-x-akl">j</AUni> -<AUni ws="qvm-x-ame">j</AUni> -</Representation> -</rt> -<rt class="CmOverlay" guid="bfa2c518-ea5e-11de-8a81-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Name> -<Uni>Anthropology Categories</Uni> -</Name> -<PossList> -<objsur guid="d87ba7c6-ea5e-11de-9dd2-0013722f8dec" t="r" /> -</PossList> -</rt> -<rt class="CmPossibilityList" guid="c06b099c-ea5e-11de-890c-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Abbreviation> -<AUni ws="en">gnrs</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:6.326" /> -<DateModified val="2018-8-2 16:32:6.326" /> -<Depth val="127" /> -<Description> -<AStr ws="en"> -<Run ws="en">This list holds genre by which interlinear texts can be classified.</Run> -</AStr> -</Description> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="True" /> -<IsVernacular val="False" /> -<ItemClsid val="7" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Genres</AUni> -</Name> -<Possibilities> -<objsur guid="c076f554-ea5e-11de-9793-0013722f8dec" t="o" /> -<objsur guid="c13f39e2-ea5e-11de-9645-0013722f8dec" t="o" /> -<objsur guid="c1787202-ea5e-11de-95b1-0013722f8dec" t="o" /> -<objsur guid="c199d2c6-ea5e-11de-9810-0013722f8dec" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="CmPossibility" guid="c076f554-ea5e-11de-9793-0013722f8dec" ownerguid="c06b099c-ea5e-11de-890c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">mnlg</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A text with a single participant, typically a narrator addressing an audience</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Monologue</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c082e102-ea5e-11de-92f2-0013722f8dec" t="o" /> -<objsur guid="c0b9b6d2-ea5e-11de-8619-0013722f8dec" t="o" /> -<objsur guid="c0db1796-ea5e-11de-910f-0013722f8dec" t="o" /> -<objsur guid="c1144fc0-ea5e-11de-97be-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c082e102-ea5e-11de-92f2-0013722f8dec" ownerguid="c076f554-ea5e-11de-9793-0013722f8dec"> -<Abbreviation> -<AUni ws="en">nar</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">An account of events, a text that describes or projects a contingent succession of actions</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Narrative</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c08c6a60-ea5e-11de-9483-0013722f8dec" t="o" /> -<objsur guid="c0985618-ea5e-11de-831e-0013722f8dec" t="o" /> -<objsur guid="c0a441c6-ea5e-11de-9275-0013722f8dec" t="o" /> -<objsur guid="c0adcb24-ea5e-11de-8861-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c08c6a60-ea5e-11de-9483-0013722f8dec" ownerguid="c082e102-ea5e-11de-92f2-0013722f8dec"> -<Abbreviation> -<AUni ws="en">his</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">An account of real events</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">History</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c0985618-ea5e-11de-831e-0013722f8dec" ownerguid="c082e102-ea5e-11de-92f2-0013722f8dec"> -<Abbreviation> -<AUni ws="en">fict</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">An account of invented events</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Fiction</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c0a441c6-ea5e-11de-9275-0013722f8dec" ownerguid="c082e102-ea5e-11de-92f2-0013722f8dec"> -<Abbreviation> -<AUni ws="en">tr. nar</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A traditional account of events of unknown historicity</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Traditional Narrative</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c0adcb24-ea5e-11de-8861-0013722f8dec" ownerguid="c082e102-ea5e-11de-92f2-0013722f8dec"> -<Abbreviation> -<AUni ws="en">proph</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">An account of events that are projected to happen at a later time, typically involving a supernatural agency</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Prophecy</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c0b9b6d2-ea5e-11de-8619-0013722f8dec" ownerguid="c076f554-ea5e-11de-9793-0013722f8dec"> -<Abbreviation> -<AUni ws="en">proc</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A text that describes or explains a process</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Procedure</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c0c5a28a-ea5e-11de-906a-0013722f8dec" t="o" /> -<objsur guid="c0cf2be8-ea5e-11de-804e-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c0c5a28a-ea5e-11de-906a-0013722f8dec" ownerguid="c0b9b6d2-ea5e-11de-8619-0013722f8dec"> -<Abbreviation> -<AUni ws="en">desc. proc</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">Describes how something was done</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Descriptive Procedure</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c0cf2be8-ea5e-11de-804e-0013722f8dec" ownerguid="c0b9b6d2-ea5e-11de-8619-0013722f8dec"> -<Abbreviation> -<AUni ws="en">pres. proc</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">Gives instructions about how to do something</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Prescriptive Procedure</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c0db1796-ea5e-11de-910f-0013722f8dec" ownerguid="c076f554-ea5e-11de-9793-0013722f8dec"> -<Abbreviation> -<AUni ws="en">beh. txt</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A text that motivates or describes behavior without a framework of contingent succession</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Behavioral Text</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c0e7034e-ea5e-11de-9cb4-0013722f8dec" t="o" /> -<objsur guid="c0f08cac-ea5e-11de-9107-0013722f8dec" t="o" /> -<objsur guid="c0fc785a-ea5e-11de-8bdb-0013722f8dec" t="o" /> -<objsur guid="c1086412-ea5e-11de-88a0-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c0e7034e-ea5e-11de-9cb4-0013722f8dec" ownerguid="c0db1796-ea5e-11de-910f-0013722f8dec"> -<Abbreviation> -<AUni ws="en">hor. txt</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A text intended to motivate the audience to do something or to act or to believe in a particular way; a.k.a. Motivational Text</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Hortatory Text</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c0f08cac-ea5e-11de-9107-0013722f8dec" ownerguid="c0db1796-ea5e-11de-910f-0013722f8dec"> -<Abbreviation> -<AUni ws="en">norm. txt</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A text intended to express the norms of a society for the purpose of motivating someone to conform to those norms</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Normative Text</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c0fc785a-ea5e-11de-8bdb-0013722f8dec" ownerguid="c0db1796-ea5e-11de-910f-0013722f8dec"> -<Abbreviation> -<AUni ws="en">pro. txt</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A text in which the originator promises to do something or to act or to believe in a particular way</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Promissory Text</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c1086412-ea5e-11de-88a0-0013722f8dec" ownerguid="c0db1796-ea5e-11de-910f-0013722f8dec"> -<Abbreviation> -<AUni ws="en">beh. desc</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A text, such as a Eulogy, that describes the accomplishments of a person without a contingent succession of actions</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Behavioral Description</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c1144fc0-ea5e-11de-97be-0013722f8dec" ownerguid="c076f554-ea5e-11de-9793-0013722f8dec"> -<Abbreviation> -<AUni ws="en">expo</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A text that explains something other than a behavior, a process or a succession of events; typically it explains facts or ideas</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Exposition</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c11dd91e-ea5e-11de-9f41-0013722f8dec" t="o" /> -<objsur guid="c129c4cc-ea5e-11de-8f6c-0013722f8dec" t="o" /> -<objsur guid="c135b084-ea5e-11de-8702-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c11dd91e-ea5e-11de-9f41-0013722f8dec" ownerguid="c1144fc0-ea5e-11de-97be-0013722f8dec"> -<Abbreviation> -<AUni ws="en">proj</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A text dealing with projected facts or planned status (not a proposal for action, which would be Hortatory; not focusing on human or divine agency, which would be Prophecy)</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Projection</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c129c4cc-ea5e-11de-8f6c-0013722f8dec" ownerguid="c1144fc0-ea5e-11de-97be-0013722f8dec"> -<Abbreviation> -<AUni ws="en">desc. expo</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">Exposition that describes an object, location or situation in static terms</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Descriptive Exposition</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c135b084-ea5e-11de-8702-0013722f8dec" ownerguid="c1144fc0-ea5e-11de-97be-0013722f8dec"> -<Abbreviation> -<AUni ws="en">did. expo</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">Exposition specifically intended for teaching another person about a body of facts</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Didactic Exposition</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c13f39e2-ea5e-11de-9645-0013722f8dec" ownerguid="c06b099c-ea5e-11de-890c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">dia</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">Literal speech between individuals or quoted text that uses quotation formulas (typically using the verb 'to say')</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Dialogue</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c14b2590-ea5e-11de-85fc-0013722f8dec" t="o" /> -<objsur guid="c1571148-ea5e-11de-8fe4-0013722f8dec" t="o" /> -<objsur guid="c1609a9c-ea5e-11de-8247-0013722f8dec" t="o" /> -<objsur guid="c16c8654-ea5e-11de-867b-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c14b2590-ea5e-11de-85fc-0013722f8dec" ownerguid="c13f39e2-ea5e-11de-9645-0013722f8dec"> -<Abbreviation> -<AUni ws="en">conv</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">Dialogue involving mutual cooperation between the speakers</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Conversation</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c1571148-ea5e-11de-8fe4-0013722f8dec" ownerguid="c13f39e2-ea5e-11de-9645-0013722f8dec"> -<Abbreviation> -<AUni ws="en">verb. confl</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">Dialogue in which the speakers resist mutual resolution of one or more propositions</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Verbal Conflict</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c1609a9c-ea5e-11de-8247-0013722f8dec" ownerguid="c13f39e2-ea5e-11de-9645-0013722f8dec"> -<Abbreviation> -<AUni ws="en">neg</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">Dialogue in which a speaker seeks to obtain a benefit from the other speaker</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Negotiation</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c16c8654-ea5e-11de-867b-0013722f8dec" ownerguid="c13f39e2-ea5e-11de-9645-0013722f8dec"> -<Abbreviation> -<AUni ws="en">dram</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">Acted out speech or quoted text that does not use quotation formulas</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Drama</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c1787202-ea5e-11de-95b1-0013722f8dec" ownerguid="c06b099c-ea5e-11de-890c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">wd. lst</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A list of words used for language research or documentation</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Word List</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c181fb60-ea5e-11de-9e08-0013722f8dec" t="o" /> -<objsur guid="c18de718-ea5e-11de-937a-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c181fb60-ea5e-11de-9e08-0013722f8dec" ownerguid="c1787202-ea5e-11de-95b1-0013722f8dec"> -<Abbreviation> -<AUni ws="en">para</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A list of well-formed words, typically arranged according to inflection</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Paradigm</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c18de718-ea5e-11de-937a-0013722f8dec" ownerguid="c1787202-ea5e-11de-95b1-0013722f8dec"> -<Abbreviation> -<AUni ws="en">ill. wds</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A list of words that are not well-formed in the language, e.g. an anti-paradigm or list of common misspellings</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Ill-formed Words</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c199d2c6-ea5e-11de-9810-0013722f8dec" ownerguid="c06b099c-ea5e-11de-890c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">met. cat</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">Genre according to metrical form (versus content)</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Metrical Category</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="d686fc68-ea5e-11de-8f7f-0013722f8dec" t="o" /> -<objsur guid="c1a35c24-ea5e-11de-8988-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c1a35c24-ea5e-11de-8988-0013722f8dec" ownerguid="c199d2c6-ea5e-11de-9810-0013722f8dec"> -<Abbreviation> -<AUni ws="en">poet</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">Metrical arrangement of the text, typically employing rules for rhyme and rhythm</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Poetry</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibilityList" guid="c1af47dc-ea5e-11de-8e34-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Abbreviation> -<AUni ws="en">TxtTags</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:6.327" /> -<DateModified val="2018-8-2 16:32:6.327" /> -<Depth val="127" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="True" /> -<IsVernacular val="False" /> -<ItemClsid val="7" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Text Markup Tags</AUni> -</Name> -<Possibilities> -<objsur guid="c1bb338a-ea5e-11de-88c4-0013722f8dec" t="o" /> -<objsur guid="c228df2a-ea5e-11de-94ec-0013722f8dec" t="o" /> -<objsur guid="c2ba4de8-ea5e-11de-8073-0013722f8dec" t="o" /> -<objsur guid="c2e79a5a-ea5e-11de-9669-0013722f8dec" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="CmPossibility" guid="c1bb338a-ea5e-11de-88c4-0013722f8dec" ownerguid="c1af47dc-ea5e-11de-8e34-0013722f8dec"> -<Abbreviation> -<AUni ws="en">GrRel-Func</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A list of Role tags based on the book "Describing Morphosyntax" by Thomas E. Payne(p. 129).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Grammatical Relations-Functional</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c1c4bce8-ea5e-11de-9d35-0013722f8dec" t="o" /> -<objsur guid="c1d0a896-ea5e-11de-8624-0013722f8dec" t="o" /> -<objsur guid="c1dc944e-ea5e-11de-8ae3-0013722f8dec" t="o" /> -<objsur guid="c1e61dac-ea5e-11de-9bc6-0013722f8dec" t="o" /> -<objsur guid="c1f2095a-ea5e-11de-9609-0013722f8dec" t="o" /> -<objsur guid="c1fdf512-ea5e-11de-963a-0013722f8dec" t="o" /> -<objsur guid="c2077e66-ea5e-11de-8f4c-0013722f8dec" t="o" /> -<objsur guid="c2136a1e-ea5e-11de-8e7b-0013722f8dec" t="o" /> -<objsur guid="c21f55cc-ea5e-11de-9d3e-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c1c4bce8-ea5e-11de-9d35-0013722f8dec" ownerguid="c1bb338a-ea5e-11de-88c4-0013722f8dec"> -<Abbreviation> -<AUni ws="en">A</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">The most Agent-like argument of a multi-argument clause (transitive).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">A</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c1d0a896-ea5e-11de-8624-0013722f8dec" ownerguid="c1bb338a-ea5e-11de-88c4-0013722f8dec"> -<Abbreviation> -<AUni ws="en">P</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">The most Patient-like argument of a multi-argument clause (transitive).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">P</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c1dc944e-ea5e-11de-8ae3-0013722f8dec" ownerguid="c1bb338a-ea5e-11de-88c4-0013722f8dec"> -<Abbreviation> -<AUni ws="en">S</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">The only nominal argument of a single argument clause (intransitive).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">S</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c1e61dac-ea5e-11de-9bc6-0013722f8dec" ownerguid="c1bb338a-ea5e-11de-88c4-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Subj</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">The S or A argument in a Nominative/Accusative system of grammatical relations.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Subject</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c1f2095a-ea5e-11de-9609-0013722f8dec" ownerguid="c1bb338a-ea5e-11de-88c4-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Obj</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">Usually the P argument in a Nominative/Accusative system. The object most closely tied to the Verb syntactically.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Direct Object</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c1fdf512-ea5e-11de-963a-0013722f8dec" ownerguid="c1bb338a-ea5e-11de-88c4-0013722f8dec"> -<Abbreviation> -<AUni ws="en">IO</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">An object less closely tied to the Verb syntactically than the Direct Object.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Indirect Object</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c2077e66-ea5e-11de-8f4c-0013722f8dec" ownerguid="c1bb338a-ea5e-11de-88c4-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Erg</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">The A argument in an Ergative/Absolutive system of grammatical relations.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Ergative</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c2136a1e-ea5e-11de-8e7b-0013722f8dec" ownerguid="c1bb338a-ea5e-11de-88c4-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Abs</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">The S or P argument in an Ergative/Absolutive system of grammatical relations.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Absolutive</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c21f55cc-ea5e-11de-9d3e-0013722f8dec" ownerguid="c1bb338a-ea5e-11de-88c4-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Obl</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A nominal with at best secondary relation to the Verb in a Clause.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Oblique</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c228df2a-ea5e-11de-94ec-0013722f8dec" ownerguid="c1af47dc-ea5e-11de-8e34-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Syn-Desc</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A list of basic descriptive Syntax tags.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Syntax-Descriptive</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c234cae2-ea5e-11de-9ef4-0013722f8dec" t="o" /> -<objsur guid="c240b690-ea5e-11de-880b-0013722f8dec" t="o" /> -<objsur guid="c24a3fee-ea5e-11de-92f8-0013722f8dec" t="o" /> -<objsur guid="c2562ba6-ea5e-11de-80c8-0013722f8dec" t="o" /> -<objsur guid="c2621754-ea5e-11de-91de-0013722f8dec" t="o" /> -<objsur guid="c26e030c-ea5e-11de-9df4-0013722f8dec" t="o" /> -<objsur guid="c2778c60-ea5e-11de-86a4-0013722f8dec" t="o" /> -<objsur guid="c2837818-ea5e-11de-938d-0013722f8dec" t="o" /> -<objsur guid="c28f63c6-ea5e-11de-9a0b-0013722f8dec" t="o" /> -<objsur guid="c298ed24-ea5e-11de-874e-0013722f8dec" t="o" /> -<objsur guid="c2a4d8dc-ea5e-11de-8857-0013722f8dec" t="o" /> -<objsur guid="c2b0c48a-ea5e-11de-9dba-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c234cae2-ea5e-11de-9ef4-0013722f8dec" ownerguid="c228df2a-ea5e-11de-94ec-0013722f8dec"> -<Abbreviation> -<AUni ws="en">AdjP</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A phrase consisting of an Adjective and its modifiers.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Adjective Phrase</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c240b690-ea5e-11de-880b-0013722f8dec" ownerguid="c228df2a-ea5e-11de-94ec-0013722f8dec"> -<Abbreviation> -<AUni ws="en">AdvP</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A phrase consisting of an Adverb and its modifiers.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Adverb Phrase</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c24a3fee-ea5e-11de-92f8-0013722f8dec" ownerguid="c228df2a-ea5e-11de-94ec-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Cl</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A group of words with a single central Verb Phrase.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Clause</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c2562ba6-ea5e-11de-80c8-0013722f8dec" ownerguid="c228df2a-ea5e-11de-94ec-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Chn</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A chain of Clauses.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Clause Chain</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c2621754-ea5e-11de-91de-0013722f8dec" ownerguid="c228df2a-ea5e-11de-94ec-0013722f8dec"> -<Abbreviation> -<AUni ws="en">NP</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A phrase consisting of a Noun and its modifiers.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Noun Phrase</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c26e030c-ea5e-11de-9df4-0013722f8dec" ownerguid="c228df2a-ea5e-11de-94ec-0013722f8dec"> -<Abbreviation> -<AUni ws="en">PossP</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Possessive Phrase</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c2778c60-ea5e-11de-86a4-0013722f8dec" ownerguid="c228df2a-ea5e-11de-94ec-0013722f8dec"> -<Abbreviation> -<AUni ws="en">PostP</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">An Adpositional Phrase where the central constituent follows the Nominal.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Postpositional Phrase</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c2837818-ea5e-11de-938d-0013722f8dec" ownerguid="c228df2a-ea5e-11de-94ec-0013722f8dec"> -<Abbreviation> -<AUni ws="en">PreP</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">An Adpositional Phrase where the central constituent precedes the Nominal.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Prepositional Phrase</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c28f63c6-ea5e-11de-9a0b-0013722f8dec" ownerguid="c228df2a-ea5e-11de-94ec-0013722f8dec"> -<Abbreviation> -<AUni ws="en">RelCl</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A clause that serves as a noun modifier.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Relative Clause</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c298ed24-ea5e-11de-874e-0013722f8dec" ownerguid="c228df2a-ea5e-11de-94ec-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Sent</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A complete grouping of one or more Clauses.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Sentence</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c2a4d8dc-ea5e-11de-8857-0013722f8dec" ownerguid="c228df2a-ea5e-11de-94ec-0013722f8dec"> -<Abbreviation> -<AUni ws="en">IP</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A grouping of (usually) a Verb Phrase and its inflectional modifiers.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Inflectional Phrase</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c2b0c48a-ea5e-11de-9dba-0013722f8dec" ownerguid="c228df2a-ea5e-11de-94ec-0013722f8dec"> -<Abbreviation> -<AUni ws="en">VP</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A phrase consisting of a Verb and its direct modifiers.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Verb Phrase</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c2ba4de8-ea5e-11de-8073-0013722f8dec" ownerguid="c1af47dc-ea5e-11de-8e34-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Sem-RRG</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A list of Semantic tags based on an email from John Roberts about RRG. This will need further work when crossing trees are possible in FLEx.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Semantics-RRG</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c2c63996-ea5e-11de-9b11-0013722f8dec" t="o" /> -<objsur guid="c2d2254e-ea5e-11de-8432-0013722f8dec" t="o" /> -<objsur guid="c2dbaeac-ea5e-11de-803c-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c2c63996-ea5e-11de-9b11-0013722f8dec" ownerguid="c2ba4de8-ea5e-11de-8073-0013722f8dec"> -<Abbreviation> -<AUni ws="en">ACTOR</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">An RRG macrorole, most agentive.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">ACTOR</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoMorphType" guid="c2d140e5-7ca9-41f4-a69a-22fc7049dd2c" ownerguid="d7f713d8-e8cf-11d3-9764-00c04f186933"> -<Abbreviation> -<AUni ws="en">clit</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">A clitic is a morpheme that has syntactic characteristics of a word, but shows evidence of being phonologically bound to another word. Orthographically, it stands alone.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">clitic</AUni> -</Name> -<SecondaryOrder val="0" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c2d2254e-ea5e-11de-8432-0013722f8dec" ownerguid="c2ba4de8-ea5e-11de-8073-0013722f8dec"> -<Abbreviation> -<AUni ws="en">UNDER</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">An RRG macrorole, least agentive.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">UNDERGOER</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c2dbaeac-ea5e-11de-803c-0013722f8dec" ownerguid="c2ba4de8-ea5e-11de-8073-0013722f8dec"> -<Abbreviation> -<AUni ws="en">NON-MR</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">Non-Macrorole argument.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">NON-MACROROLE</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c2e79a5a-ea5e-11de-9669-0013722f8dec" ownerguid="c1af47dc-ea5e-11de-8e34-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Syn-RRG</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">A list of Syntax tags based on an email from John Roberts about RRG.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Syntax-RRG</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c2f38612-ea5e-11de-9124-0013722f8dec" t="o" /> -<objsur guid="c2fd0f70-ea5e-11de-96db-0013722f8dec" t="o" /> -<objsur guid="c308fb1e-ea5e-11de-885b-0013722f8dec" t="o" /> -<objsur guid="c314e6d6-ea5e-11de-8d43-0013722f8dec" t="o" /> -<objsur guid="c31e702a-ea5e-11de-9d76-0013722f8dec" t="o" /> -<objsur guid="c32a5be2-ea5e-11de-8d46-0013722f8dec" t="o" /> -<objsur guid="c3364790-ea5e-11de-96c0-0013722f8dec" t="o" /> -<objsur guid="c3423348-ea5e-11de-85a0-0013722f8dec" t="o" /> -<objsur guid="c34bbca6-ea5e-11de-8901-0013722f8dec" t="o" /> -<objsur guid="c357a854-ea5e-11de-8a16-0013722f8dec" t="o" /> -<objsur guid="c363940c-ea5e-11de-8faa-0013722f8dec" t="o" /> -<objsur guid="c36d1d60-ea5e-11de-9cd9-0013722f8dec" t="o" /> -<objsur guid="c3790918-ea5e-11de-903f-0013722f8dec" t="o" /> -<objsur guid="c384f4c6-ea5e-11de-9fe7-0013722f8dec" t="o" /> -<objsur guid="c38e7e24-ea5e-11de-8114-0013722f8dec" t="o" /> -<objsur guid="c39a69dc-ea5e-11de-9467-0013722f8dec" t="o" /> -<objsur guid="c3a6558a-ea5e-11de-98c9-0013722f8dec" t="o" /> -<objsur guid="c3afdee8-ea5e-11de-85b1-0013722f8dec" t="o" /> -<objsur guid="c3bbcaa0-ea5e-11de-843e-0013722f8dec" t="o" /> -<objsur guid="c3c7b64e-ea5e-11de-825d-0013722f8dec" t="o" /> -<objsur guid="c3d13fac-ea5e-11de-8141-0013722f8dec" t="o" /> -<objsur guid="c3dd2b5a-ea5e-11de-9a4d-0013722f8dec" t="o" /> -<objsur guid="c3e91712-ea5e-11de-8763-0013722f8dec" t="o" /> -<objsur guid="c3f2a070-ea5e-11de-8c44-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmRow" guid="c2f0eb83-212b-4c1b-b357-f28bcd96053e" ownerguid="bb89bf90-ea5e-11de-9773-0013722f8dec"> -<Cells> -<objsur guid="7bf38df2-e180-4d74-ae16-df959a81eea6" t="o" /> -</Cells> -</rt> -<rt class="CmPossibility" guid="c2f38612-ea5e-11de-9124-0013722f8dec" ownerguid="c2e79a5a-ea5e-11de-9669-0013722f8dec"> -<Abbreviation> -<AUni ws="en">SENT</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">SENTENCE</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c2fd0f70-ea5e-11de-96db-0013722f8dec" ownerguid="c2e79a5a-ea5e-11de-9669-0013722f8dec"> -<Abbreviation> -<AUni ws="en">CL</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">CLAUSE</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c308fb1e-ea5e-11de-885b-0013722f8dec" ownerguid="c2e79a5a-ea5e-11de-9669-0013722f8dec"> -<Abbreviation> -<AUni ws="en">CORE</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">CORE</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c314e6d6-ea5e-11de-8d43-0013722f8dec" ownerguid="c2e79a5a-ea5e-11de-9669-0013722f8dec"> -<Abbreviation> -<AUni ws="en">NUC</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">NUCLEUS</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c31e702a-ea5e-11de-9d76-0013722f8dec" ownerguid="c2e79a5a-ea5e-11de-9669-0013722f8dec"> -<Abbreviation> -<AUni ws="en">PRED</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">PREDICATE</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c32a5be2-ea5e-11de-8d46-0013722f8dec" ownerguid="c2e79a5a-ea5e-11de-9669-0013722f8dec"> -<Abbreviation> -<AUni ws="en">LDP</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Left Detached Position</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c3364790-ea5e-11de-96c0-0013722f8dec" ownerguid="c2e79a5a-ea5e-11de-9669-0013722f8dec"> -<Abbreviation> -<AUni ws="en">RDP</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Right Detached Position</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c3423348-ea5e-11de-85a0-0013722f8dec" ownerguid="c2e79a5a-ea5e-11de-9669-0013722f8dec"> -<Abbreviation> -<AUni ws="en">PrCS</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Pre-core slot</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c34bbca6-ea5e-11de-8901-0013722f8dec" ownerguid="c2e79a5a-ea5e-11de-9669-0013722f8dec"> -<Abbreviation> -<AUni ws="en">PoCS</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Post-core slot</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c357a854-ea5e-11de-8a16-0013722f8dec" ownerguid="c2e79a5a-ea5e-11de-9669-0013722f8dec"> -<Abbreviation> -<AUni ws="en">PERI</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">PERIPHERY</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c363940c-ea5e-11de-8faa-0013722f8dec" ownerguid="c2e79a5a-ea5e-11de-9669-0013722f8dec"> -<Abbreviation> -<AUni ws="en">RP</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">Reference Phrase replaces the Noun Phrase(NP) in earlier RRG models (Van Valin 2006).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Reference Phrase</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c36d1d60-ea5e-11de-9cd9-0013722f8dec" ownerguid="c2e79a5a-ea5e-11de-9669-0013722f8dec"> -<Abbreviation> -<AUni ws="en">PRO</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">Used for arguments represented by bound morphemes.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Pronominal Argument</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c3790918-ea5e-11de-903f-0013722f8dec" ownerguid="c2e79a5a-ea5e-11de-9669-0013722f8dec"> -<Abbreviation> -<AUni ws="en">AUX</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">Non-predicative verbs required for the formation of particular syntactic constructions.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Auxiliary</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c384f4c6-ea5e-11de-9fe7-0013722f8dec" ownerguid="c2e79a5a-ea5e-11de-9669-0013722f8dec"> -<Abbreviation> -<AUni ws="en">CORE-R</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">The CORE of a Reference Phrase.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">CORE-R</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c38e7e24-ea5e-11de-8114-0013722f8dec" ownerguid="c2e79a5a-ea5e-11de-9669-0013722f8dec"> -<Abbreviation> -<AUni ws="en">NUC-R</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">The NUCLEUS of a Reference Phrase.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">NUCLEUS-R</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c39a69dc-ea5e-11de-9467-0013722f8dec" ownerguid="c2e79a5a-ea5e-11de-9669-0013722f8dec"> -<Abbreviation> -<AUni ws="en">RPIP</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Reference Phrase Initial Position</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c3a6558a-ea5e-11de-98c9-0013722f8dec" ownerguid="c2e79a5a-ea5e-11de-9669-0013722f8dec"> -<Abbreviation> -<AUni ws="en">RPFP</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Reference Phrase Final Position</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c3afdee8-ea5e-11de-85b1-0013722f8dec" ownerguid="c2e79a5a-ea5e-11de-9669-0013722f8dec"> -<Abbreviation> -<AUni ws="en">PERI-R</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.777" /> -<DateModified val="2022-9-23 16:55:11.777" /> -<Description> -<AStr ws="en"> -<Run ws="en">The PERIPHERY of a Reference Phrase.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">PERIPHERY-R</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c3bbcaa0-ea5e-11de-843e-0013722f8dec" ownerguid="c2e79a5a-ea5e-11de-9669-0013722f8dec"> -<Abbreviation> -<AUni ws="en">MP</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.785" /> -<DateModified val="2022-9-23 16:55:11.785" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Modifier Phrase</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c3c7b64e-ea5e-11de-825d-0013722f8dec" ownerguid="c2e79a5a-ea5e-11de-9669-0013722f8dec"> -<Abbreviation> -<AUni ws="en">CORE-M</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.785" /> -<DateModified val="2022-9-23 16:55:11.785" /> -<Description> -<AStr ws="en"> -<Run ws="en">The CORE of a Modifier Phrase.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">CORE-M</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c3d13fac-ea5e-11de-8141-0013722f8dec" ownerguid="c2e79a5a-ea5e-11de-9669-0013722f8dec"> -<Abbreviation> -<AUni ws="en">NUC-M</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.785" /> -<DateModified val="2022-9-23 16:55:11.785" /> -<Description> -<AStr ws="en"> -<Run ws="en">The NUCLEUS of a Modifier Phrase.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">NUCLEUS-M</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c3dd2b5a-ea5e-11de-9a4d-0013722f8dec" ownerguid="c2e79a5a-ea5e-11de-9669-0013722f8dec"> -<Abbreviation> -<AUni ws="en">PP</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.785" /> -<DateModified val="2022-9-23 16:55:11.785" /> -<Description> -<AStr ws="en"> -<Run ws="en">PP is either Prepositional Phrase or Postpositional Phrase depending on the typology of the language.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Adpositional Phrase</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c3e91712-ea5e-11de-8763-0013722f8dec" ownerguid="c2e79a5a-ea5e-11de-9669-0013722f8dec"> -<Abbreviation> -<AUni ws="en">CORE-P</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.785" /> -<DateModified val="2022-9-23 16:55:11.785" /> -<Description> -<AStr ws="en"> -<Run ws="en">The CORE of an Adpositional Phrase(PP).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">CORE-P</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c3f2a070-ea5e-11de-8c44-0013722f8dec" ownerguid="c2e79a5a-ea5e-11de-9669-0013722f8dec"> -<Abbreviation> -<AUni ws="en">NUC-P</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.785" /> -<DateModified val="2022-9-23 16:55:11.785" /> -<Description> -<AStr ws="en"> -<Run ws="en">The NUCLEUS of an Adpositional Phrase(PP).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">NUCLEUS-P</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="DsDiscourseData" guid="c3fe8c1e-ea5e-11de-9e45-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<ChartMarkers> -<objsur guid="c48ffadc-ea5e-11de-9033-0013722f8dec" t="o" /> -</ChartMarkers> -<Charts> -<objsur guid="057e6fcb-dc38-4d29-a960-f290eb33eb0e" t="o" /> -<objsur guid="261a7061-3858-41a8-bfff-71af82d24306" t="o" /> -<objsur guid="2704ec44-9c8f-4afe-821c-3499a0f7ba25" t="o" /> -<objsur guid="8c059cae-149c-4210-bd0d-08693151bd91" t="o" /> -<objsur guid="a6461329-057c-4f58-8962-4a98c8299732" t="o" /> -<objsur guid="f8792085-7a5f-4774-ae1c-6efc5d4a786d" t="o" /> -</Charts> -<ConstChartTempl> -<objsur guid="c40a77d6-ea5e-11de-99c2-0013722f8dec" t="o" /> -</ConstChartTempl> -</rt> -<rt class="CmPossibilityList" guid="c40a77d6-ea5e-11de-99c2-0013722f8dec" ownerguid="c3fe8c1e-ea5e-11de-9e45-0013722f8dec"> -<Abbreviation> -<AUni ws="en">ConChrtTempl</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:9.985" /> -<DateModified val="2018-8-2 16:32:9.985" /> -<Depth val="127" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="False" /> -<IsVernacular val="False" /> -<ItemClsid val="7" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Text Constituent Chart Templates</AUni> -</Name> -<Possibilities> -<objsur guid="c414012a-ea5e-11de-99fc-0013722f8dec" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="CmPossibility" guid="c414012a-ea5e-11de-99fc-0013722f8dec" ownerguid="c40a77d6-ea5e-11de-99c2-0013722f8dec"> -<Abbreviation> -<AUni ws="en">def</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2008-1-11 15:8:55.380" /> -<DateModified val="2008-1-11 15:8:55.380" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Default Template</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c41fece2-ea5e-11de-8db3-0013722f8dec" t="o" /> -<objsur guid="c4414da6-ea5e-11de-8c42-0013722f8dec" t="o" /> -<objsur guid="c46e9a18-ea5e-11de-8016-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c41fece2-ea5e-11de-8db3-0013722f8dec" ownerguid="c414012a-ea5e-11de-99fc-0013722f8dec"> -<Abbreviation> -<AUni ws="en">prenuc</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2008-1-11 15:8:55.380" /> -<DateModified val="2008-1-11 15:8:55.380" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Pre-nuclear</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c42bd890-ea5e-11de-8f25-0013722f8dec" t="o" /> -<objsur guid="c43561ee-ea5e-11de-8cbe-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c42bd890-ea5e-11de-8f25-0013722f8dec" ownerguid="c41fece2-ea5e-11de-8db3-0013722f8dec"> -<Abbreviation> -<AUni ws="en">out</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2008-1-11 15:8:55.380" /> -<DateModified val="2008-1-11 15:8:55.380" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Outer</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c43561ee-ea5e-11de-8cbe-0013722f8dec" ownerguid="c41fece2-ea5e-11de-8db3-0013722f8dec"> -<Abbreviation> -<AUni ws="en">in</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2008-1-11 15:8:55.380" /> -<DateModified val="2008-1-11 15:8:55.380" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Inner</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c4414da6-ea5e-11de-8c42-0013722f8dec" ownerguid="c414012a-ea5e-11de-99fc-0013722f8dec"> -<Abbreviation> -<AUni ws="en">nuc</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2008-1-11 15:8:55.380" /> -<DateModified val="2008-1-11 15:8:55.380" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Nucleus</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c44d3954-ea5e-11de-8138-0013722f8dec" t="o" /> -<objsur guid="c456c2b2-ea5e-11de-8b3c-0013722f8dec" t="o" /> -<objsur guid="c462ae6a-ea5e-11de-9cc0-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c44d3954-ea5e-11de-8138-0013722f8dec" ownerguid="c4414da6-ea5e-11de-8c42-0013722f8dec"> -<Abbreviation> -<AUni ws="en">subj</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2008-1-11 15:8:55.380" /> -<DateModified val="2008-1-11 15:8:55.380" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Subject</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c456c2b2-ea5e-11de-8b3c-0013722f8dec" ownerguid="c4414da6-ea5e-11de-8c42-0013722f8dec"> -<Abbreviation> -<AUni ws="en">v</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2008-1-11 15:8:55.380" /> -<DateModified val="2008-1-11 15:8:55.380" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Verb</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c462ae6a-ea5e-11de-9cc0-0013722f8dec" ownerguid="c4414da6-ea5e-11de-8c42-0013722f8dec"> -<Abbreviation> -<AUni ws="en">o/c</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2008-1-11 15:8:55.380" /> -<DateModified val="2008-1-11 15:8:55.380" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Object/Complement</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c46e9a18-ea5e-11de-8016-0013722f8dec" ownerguid="c414012a-ea5e-11de-99fc-0013722f8dec"> -<Abbreviation> -<AUni ws="en">postnuc</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2008-1-11 15:8:55.380" /> -<DateModified val="2008-1-11 15:8:55.380" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Post-nuclear</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c47a85d0-ea5e-11de-986c-0013722f8dec" t="o" /> -<objsur guid="c4840f24-ea5e-11de-959e-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c47a85d0-ea5e-11de-986c-0013722f8dec" ownerguid="c46e9a18-ea5e-11de-8016-0013722f8dec"> -<Abbreviation> -<AUni ws="en">in</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2008-1-11 15:8:55.380" /> -<DateModified val="2008-1-28 13:45:1.860" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Inner</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c4840f24-ea5e-11de-959e-0013722f8dec" ownerguid="c46e9a18-ea5e-11de-8016-0013722f8dec"> -<Abbreviation> -<AUni ws="en">out</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2008-1-28 13:45:38.110" /> -<DateModified val="2008-1-28 13:45:38.110" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Outer</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibilityList" guid="c48ffadc-ea5e-11de-9033-0013722f8dec" ownerguid="c3fe8c1e-ea5e-11de-9e45-0013722f8dec"> -<Abbreviation> -<AUni ws="en">ChMrkrs</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:9.985" /> -<DateModified val="2018-8-2 16:32:9.985" /> -<Depth val="127" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="False" /> -<IsVernacular val="False" /> -<ItemClsid val="7" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Text Chart Markers</AUni> -</Name> -<Possibilities> -<objsur guid="c49be68a-ea5e-11de-86fb-0013722f8dec" t="o" /> -<objsur guid="c6b1f2ac-ea5e-11de-820a-0013722f8dec" t="o" /> -<objsur guid="c6eb2ad6-ea5e-11de-828c-0013722f8dec" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="CmPossibility" guid="c49be68a-ea5e-11de-86fb-0013722f8dec" ownerguid="c48ffadc-ea5e-11de-9033-0013722f8dec"> -<Abbreviation> -<AUni ws="en">TenseAspectMood</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">TenseAspectMood</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c4a56fe8-ea5e-11de-87d8-0013722f8dec" t="o" /> -<objsur guid="c4c6d0ac-ea5e-11de-9ce4-0013722f8dec" t="o" /> -<objsur guid="c4e83170-ea5e-11de-8ff3-0013722f8dec" t="o" /> -<objsur guid="c5099234-ea5e-11de-9bc6-0013722f8dec" t="o" /> -<objsur guid="c5642b18-ea5e-11de-9faf-0013722f8dec" t="o" /> -<objsur guid="c579a024-ea5e-11de-98e7-0013722f8dec" t="o" /> -<objsur guid="c5a6eca0-ea5e-11de-99db-0013722f8dec" t="o" /> -<objsur guid="c616fa9a-ea5e-11de-8272-0013722f8dec" t="o" /> -<objsur guid="c665a7d0-ea5e-11de-9f26-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c4a56fe8-ea5e-11de-87d8-0013722f8dec" ownerguid="c49be68a-ea5e-11de-86fb-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Direct imperative</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Direct imperative</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c4b15ba0-ea5e-11de-954e-0013722f8dec" t="o" /> -<objsur guid="c4bd474e-ea5e-11de-88bd-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c4b15ba0-ea5e-11de-954e-0013722f8dec" ownerguid="c4a56fe8-ea5e-11de-87d8-0013722f8dec"> -<Abbreviation> -<AUni ws="en">IMP.S</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Direct imperative</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c4bd474e-ea5e-11de-88bd-0013722f8dec" ownerguid="c4a56fe8-ea5e-11de-87d8-0013722f8dec"> -<Abbreviation> -<AUni ws="en">IMP.P</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Direct imperative</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c4c6d0ac-ea5e-11de-9ce4-0013722f8dec" ownerguid="c49be68a-ea5e-11de-86fb-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Subjunctive</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Subjunctive</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c4d2bc5a-ea5e-11de-98bc-0013722f8dec" t="o" /> -<objsur guid="c4dea812-ea5e-11de-9298-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c4d2bc5a-ea5e-11de-98bc-0013722f8dec" ownerguid="c4c6d0ac-ea5e-11de-9ce4-0013722f8dec"> -<Abbreviation> -<AUni ws="en">SBV</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Polite command</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c4dea812-ea5e-11de-9298-0013722f8dec" ownerguid="c4c6d0ac-ea5e-11de-9ce4-0013722f8dec"> -<Abbreviation> -<AUni ws="en">SBV</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Purpose</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c4e83170-ea5e-11de-8ff3-0013722f8dec" ownerguid="c49be68a-ea5e-11de-86fb-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Potential/conditional</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Potential/conditional</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c4f41d1e-ea5e-11de-8c69-0013722f8dec" t="o" /> -<objsur guid="c50008d6-ea5e-11de-8fe9-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c4f41d1e-ea5e-11de-8c69-0013722f8dec" ownerguid="c4e83170-ea5e-11de-8ff3-0013722f8dec"> -<Abbreviation> -<AUni ws="en">POT</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Potential</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c50008d6-ea5e-11de-8fe9-0013722f8dec" ownerguid="c4e83170-ea5e-11de-8ff3-0013722f8dec"> -<Abbreviation> -<AUni ws="en">CND</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">(w/?r?) conditional</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c5099234-ea5e-11de-9bc6-0013722f8dec" ownerguid="c49be68a-ea5e-11de-86fb-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Potential/conditional, contrary-to-fact</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Potential/conditional, contrary-to-fact</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="d69085c6-ea5e-11de-8ff2-0013722f8dec" t="o" /> -<objsur guid="c5157de2-ea5e-11de-8717-0013722f8dec" t="o" /> -<objsur guid="c521699a-ea5e-11de-9e85-0013722f8dec" t="o" /> -<objsur guid="c52af2ee-ea5e-11de-82a2-0013722f8dec" t="o" /> -<objsur guid="c536dea6-ea5e-11de-8e12-0013722f8dec" t="o" /> -<objsur guid="c542ca54-ea5e-11de-9fa2-0013722f8dec" t="o" /> -<objsur guid="c54c53b2-ea5e-11de-94c6-0013722f8dec" t="o" /> -<objsur guid="c5583f6a-ea5e-11de-8747-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c5157de2-ea5e-11de-8717-0013722f8dec" ownerguid="c5099234-ea5e-11de-9bc6-0013722f8dec"> -<Abbreviation> -<AUni ws="en">CND.C.F</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">(w/ng?) conditional, C.F.</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c521699a-ea5e-11de-9e85-0013722f8dec" ownerguid="c5099234-ea5e-11de-9bc6-0013722f8dec"> -<Abbreviation> -<AUni ws="en">POT.C.F P2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Potential, C.F. Past</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c52af2ee-ea5e-11de-82a2-0013722f8dec" ownerguid="c5099234-ea5e-11de-9bc6-0013722f8dec"> -<Abbreviation> -<AUni ws="en">CND C.F P2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">(w/ng?) conditional, C.F. Past</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c536dea6-ea5e-11de-8e12-0013722f8dec" ownerguid="c5099234-ea5e-11de-9bc6-0013722f8dec"> -<Abbreviation> -<AUni ws="en">CND C.F P2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Conditional, C.F. Past</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c542ca54-ea5e-11de-9fa2-0013722f8dec" ownerguid="c5099234-ea5e-11de-9bc6-0013722f8dec"> -<Abbreviation> -<AUni ws="en">CND.RS</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">If/when</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c54c53b2-ea5e-11de-94c6-0013722f8dec" ownerguid="c5099234-ea5e-11de-9bc6-0013722f8dec"> -<Abbreviation> -<AUni ws="en">CND.TL</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">If/when</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c5583f6a-ea5e-11de-8747-0013722f8dec" ownerguid="c5099234-ea5e-11de-9bc6-0013722f8dec"> -<Abbreviation> -<AUni ws="en">YET.CND</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">If/when</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c5642b18-ea5e-11de-9faf-0013722f8dec" ownerguid="c49be68a-ea5e-11de-86fb-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Timeless</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Timeless</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c57016d0-ea5e-11de-8eaf-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c57016d0-ea5e-11de-8eaf-0013722f8dec" ownerguid="c5642b18-ea5e-11de-9faf-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Timeless</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Timeless</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c579a024-ea5e-11de-98e7-0013722f8dec" ownerguid="c49be68a-ea5e-11de-86fb-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Temporal sequence</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Temporal sequence</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c5858bdc-ea5e-11de-98cb-0013722f8dec" t="o" /> -<objsur guid="c591778a-ea5e-11de-9d45-0013722f8dec" t="o" /> -<objsur guid="c59b00e8-ea5e-11de-85c7-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c5858bdc-ea5e-11de-98cb-0013722f8dec" ownerguid="c579a024-ea5e-11de-98e7-0013722f8dec"> -<Abbreviation> -<AUni ws="en">SQ</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Sequential</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c591778a-ea5e-11de-9d45-0013722f8dec" ownerguid="c579a024-ea5e-11de-98e7-0013722f8dec"> -<Abbreviation> -<AUni ws="en">SBSC</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Subsecutive</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c59b00e8-ea5e-11de-85c7-0013722f8dec" ownerguid="c579a024-ea5e-11de-98e7-0013722f8dec"> -<Abbreviation> -<AUni ws="en">SBSC.DST</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Subsecutive distal</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c5a6eca0-ea5e-11de-99db-0013722f8dec" ownerguid="c49be68a-ea5e-11de-86fb-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Past</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Past</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c5b2d84e-ea5e-11de-9731-0013722f8dec" t="o" /> -<objsur guid="c5bc61ac-ea5e-11de-8495-0013722f8dec" t="o" /> -<objsur guid="c5c84d64-ea5e-11de-8666-0013722f8dec" t="o" /> -<objsur guid="c5d43912-ea5e-11de-92d1-0013722f8dec" t="o" /> -<objsur guid="c5ddc270-ea5e-11de-85cd-0013722f8dec" t="o" /> -<objsur guid="c5e9ae1e-ea5e-11de-8c30-0013722f8dec" t="o" /> -<objsur guid="c5f599d6-ea5e-11de-922d-0013722f8dec" t="o" /> -<objsur guid="c5ff2334-ea5e-11de-9ec7-0013722f8dec" t="o" /> -<objsur guid="c60b0ee2-ea5e-11de-89a0-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c5b2d84e-ea5e-11de-9731-0013722f8dec" ownerguid="c5a6eca0-ea5e-11de-99db-0013722f8dec"> -<Abbreviation> -<AUni ws="en">P1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Past, recent</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c5bc61ac-ea5e-11de-8495-0013722f8dec" ownerguid="c5a6eca0-ea5e-11de-99db-0013722f8dec"> -<Abbreviation> -<AUni ws="en">RS.FRUS</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Frustrated (RS)</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c5c84d64-ea5e-11de-8666-0013722f8dec" ownerguid="c5a6eca0-ea5e-11de-99db-0013722f8dec"> -<Abbreviation> -<AUni ws="en">P1.FRUS</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Frustrated (P1)</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c5d43912-ea5e-11de-92d1-0013722f8dec" ownerguid="c5a6eca0-ea5e-11de-99db-0013722f8dec"> -<Abbreviation> -<AUni ws="en">PREV PROG</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Previous, progressive</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c5ddc270-ea5e-11de-85cd-0013722f8dec" ownerguid="c5a6eca0-ea5e-11de-99db-0013722f8dec"> -<Abbreviation> -<AUni ws="en">PREV INTS</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Previous, intentional</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c5e9ae1e-ea5e-11de-8c30-0013722f8dec" ownerguid="c5a6eca0-ea5e-11de-99db-0013722f8dec"> -<Abbreviation> -<AUni ws="en">P2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Past, before yesterday</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c5f599d6-ea5e-11de-922d-0013722f8dec" ownerguid="c5a6eca0-ea5e-11de-99db-0013722f8dec"> -<Abbreviation> -<AUni ws="en">P2.ST</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Past, before yest., state</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c5ff2334-ea5e-11de-9ec7-0013722f8dec" ownerguid="c5a6eca0-ea5e-11de-99db-0013722f8dec"> -<Abbreviation> -<AUni ws="en">P2.ST-YET</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Past, before yest., unrealized exp.</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c60b0ee2-ea5e-11de-89a0-0013722f8dec" ownerguid="c5a6eca0-ea5e-11de-99db-0013722f8dec"> -<Abbreviation> -<AUni ws="en">P3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Remote past</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c616fa9a-ea5e-11de-8272-0013722f8dec" ownerguid="c49be68a-ea5e-11de-86fb-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Present</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Present</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c62083ee-ea5e-11de-8ca8-0013722f8dec" t="o" /> -<objsur guid="c62c6fa6-ea5e-11de-85d8-0013722f8dec" t="o" /> -<objsur guid="c6385b54-ea5e-11de-81ae-0013722f8dec" t="o" /> -<objsur guid="c641e4b2-ea5e-11de-9206-0013722f8dec" t="o" /> -<objsur guid="c64dd06a-ea5e-11de-97de-0013722f8dec" t="o" /> -<objsur guid="c659bc18-ea5e-11de-98bc-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c62083ee-ea5e-11de-8ca8-0013722f8dec" ownerguid="c616fa9a-ea5e-11de-8272-0013722f8dec"> -<Abbreviation> -<AUni ws="en">PROG</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Progressive state</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c62c6fa6-ea5e-11de-85d8-0013722f8dec" ownerguid="c616fa9a-ea5e-11de-8272-0013722f8dec"> -<Abbreviation> -<AUni ws="en">PERS PROG</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Persistive progressive state</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c6385b54-ea5e-11de-81ae-0013722f8dec" ownerguid="c616fa9a-ea5e-11de-8272-0013722f8dec"> -<Abbreviation> -<AUni ws="en">NEWLY PROG</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">New progressive state</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c641e4b2-ea5e-11de-9206-0013722f8dec" ownerguid="c616fa9a-ea5e-11de-8272-0013722f8dec"> -<Abbreviation> -<AUni ws="en">PROG INTS</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Intentional progressive state</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c64dd06a-ea5e-11de-97de-0013722f8dec" ownerguid="c616fa9a-ea5e-11de-8272-0013722f8dec"> -<Abbreviation> -<AUni ws="en">RS</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Resultative state</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c659bc18-ea5e-11de-98bc-0013722f8dec" ownerguid="c616fa9a-ea5e-11de-8272-0013722f8dec"> -<Abbreviation> -<AUni ws="en">NEG-YET</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Unrealized expectation</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c665a7d0-ea5e-11de-9f26-0013722f8dec" ownerguid="c49be68a-ea5e-11de-86fb-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Future</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Future</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c66f312e-ea5e-11de-8ea0-0013722f8dec" t="o" /> -<objsur guid="c67b1cdc-ea5e-11de-91c4-0013722f8dec" t="o" /> -<objsur guid="c6870894-ea5e-11de-9f2d-0013722f8dec" t="o" /> -<objsur guid="c69091e8-ea5e-11de-9a02-0013722f8dec" t="o" /> -<objsur guid="c69c7da0-ea5e-11de-9aeb-0013722f8dec" t="o" /> -<objsur guid="c6a8694e-ea5e-11de-9d73-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c66f312e-ea5e-11de-8ea0-0013722f8dec" ownerguid="c665a7d0-ea5e-11de-9f26-0013722f8dec"> -<Abbreviation> -<AUni ws="en">F1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Immediate</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c67b1cdc-ea5e-11de-91c4-0013722f8dec" ownerguid="c665a7d0-ea5e-11de-9f26-0013722f8dec"> -<Abbreviation> -<AUni ws="en">NEWLY F1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Future, immediate, newly</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c6870894-ea5e-11de-9f2d-0013722f8dec" ownerguid="c665a7d0-ea5e-11de-9f26-0013722f8dec"> -<Abbreviation> -<AUni ws="en">F2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Future, unmarked</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c69091e8-ea5e-11de-9a02-0013722f8dec" ownerguid="c665a7d0-ea5e-11de-9f26-0013722f8dec"> -<Abbreviation> -<AUni ws="en">F2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Intentional</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c69c7da0-ea5e-11de-9aeb-0013722f8dec" ownerguid="c665a7d0-ea5e-11de-9f26-0013722f8dec"> -<Abbreviation> -<AUni ws="en">NEWLY F2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Future, newly</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c6a8694e-ea5e-11de-9d73-0013722f8dec" ownerguid="c665a7d0-ea5e-11de-9f26-0013722f8dec"> -<Abbreviation> -<AUni ws="en">F3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Remote future</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c6b1f2ac-ea5e-11de-820a-0013722f8dec" ownerguid="c48ffadc-ea5e-11de-9033-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Pronouns</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Pronouns</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c6bdde64-ea5e-11de-9440-0013722f8dec" t="o" /> -<objsur guid="c6c9ca12-ea5e-11de-9acb-0013722f8dec" t="o" /> -<objsur guid="c6d35370-ea5e-11de-89ca-0013722f8dec" t="o" /> -<objsur guid="c6df3f1e-ea5e-11de-9037-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c6bdde64-ea5e-11de-9440-0013722f8dec" ownerguid="c6b1f2ac-ea5e-11de-820a-0013722f8dec"> -<Abbreviation> -<AUni ws="en">P:Ctr</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Contrastive</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c6c9ca12-ea5e-11de-9acb-0013722f8dec" ownerguid="c6b1f2ac-ea5e-11de-820a-0013722f8dec"> -<Abbreviation> -<AUni ws="en">P:Alt</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Alternative</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c6d35370-ea5e-11de-89ca-0013722f8dec" ownerguid="c6b1f2ac-ea5e-11de-820a-0013722f8dec"> -<Abbreviation> -<AUni ws="en">P:Excl</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Exclusive</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c6df3f1e-ea5e-11de-9037-0013722f8dec" ownerguid="c6b1f2ac-ea5e-11de-820a-0013722f8dec"> -<Abbreviation> -<AUni ws="en">P:Add</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Additive</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c6eb2ad6-ea5e-11de-828c-0013722f8dec" ownerguid="c48ffadc-ea5e-11de-9033-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Demonstratives</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Demonstratives</AUni> -</Name> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="c6f4b434-ea5e-11de-921a-0013722f8dec" t="o" /> -<objsur guid="c7009fe2-ea5e-11de-8474-0013722f8dec" t="o" /> -<objsur guid="c70c8b9a-ea5e-11de-8ca8-0013722f8dec" t="o" /> -<objsur guid="c7187748-ea5e-11de-9619-0013722f8dec" t="o" /> -<objsur guid="c72200a6-ea5e-11de-875d-0013722f8dec" t="o" /> -<objsur guid="c72dec5e-ea5e-11de-8271-0013722f8dec" t="o" /> -<objsur guid="c739d80c-ea5e-11de-82bf-0013722f8dec" t="o" /> -<objsur guid="c743616a-ea5e-11de-8ef5-0013722f8dec" t="o" /> -<objsur guid="c74f4d18-ea5e-11de-87a2-0013722f8dec" t="o" /> -<objsur guid="c75b38d0-ea5e-11de-84e0-0013722f8dec" t="o" /> -<objsur guid="c764c22e-ea5e-11de-8260-0013722f8dec" t="o" /> -<objsur guid="c770addc-ea5e-11de-96e9-0013722f8dec" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c6f4b434-ea5e-11de-921a-0013722f8dec" ownerguid="c6eb2ad6-ea5e-11de-828c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">D:P.C</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Proximal Contrastive</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c7009fe2-ea5e-11de-8474-0013722f8dec" ownerguid="c6eb2ad6-ea5e-11de-828c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">D:Pr</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Proximal</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c70c8b9a-ea5e-11de-8ca8-0013722f8dec" ownerguid="c6eb2ad6-ea5e-11de-828c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">D:Ne</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Nearby</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c7187748-ea5e-11de-9619-0013722f8dec" ownerguid="c6eb2ad6-ea5e-11de-828c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">D:Di</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Distal</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c72200a6-ea5e-11de-875d-0013722f8dec" ownerguid="c6eb2ad6-ea5e-11de-828c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">D:Re</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Remote</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c72dec5e-ea5e-11de-8271-0013722f8dec" ownerguid="c6eb2ad6-ea5e-11de-828c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">D:Em.P.C</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Emphatic Proximal Contrastive</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c739d80c-ea5e-11de-82bf-0013722f8dec" ownerguid="c6eb2ad6-ea5e-11de-828c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">D:Em.Pr</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Emphatic Proximal</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c743616a-ea5e-11de-8ef5-0013722f8dec" ownerguid="c6eb2ad6-ea5e-11de-828c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">D:Em.Ne</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Emphatic Nearby</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c74f4d18-ea5e-11de-87a2-0013722f8dec" ownerguid="c6eb2ad6-ea5e-11de-828c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">D:Em.Di</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Emphatic Distal</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c75b38d0-ea5e-11de-84e0-0013722f8dec" ownerguid="c6eb2ad6-ea5e-11de-828c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">D:Em.Re</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Emphatic Remote</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c764c22e-ea5e-11de-8260-0013722f8dec" ownerguid="c6eb2ad6-ea5e-11de-828c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">D:SaSet</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Same.set</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="c770addc-ea5e-11de-96e9-0013722f8dec" ownerguid="c6eb2ad6-ea5e-11de-828c-0013722f8dec"> -<Abbreviation> -<AUni ws="en">D:DiSet</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Different set</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmCell" guid="cc15dfa6-a574-4099-8ed4-4adca765677f" ownerguid="5b786787-2977-4103-9d71-3e38c636b1b0"> -<Contents> -<Str> -<Run ws="en">Matches </Run> -<Run link="56de9b1a-1ce7-42a1-aa76-512ebeff0dda" ws="en"></Run> -</Str> -</Contents> -</rt> -<rt class="CmAgentEvaluation" guid="ce8e565b-45f4-4b09-b3d3-5b4d064eff50" ownerguid="67e9b8bf-c312-458e-89c3-6e9326e48aa0" /> -<rt class="CmPossibility" guid="d686fc68-ea5e-11de-8f7f-0013722f8dec" ownerguid="c199d2c6-ea5e-11de-9810-0013722f8dec"> -<Abbreviation> -<AUni ws="en">pros</AUni> -</Abbreviation> -<BackColor val="-1073741824" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">Non-metrical arrangement of the text, typically using the grammar of ordinary speech</Run> -</AStr> -</Description> -<ForeColor val="-1073741824" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Prose</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="-1073741824" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="d69085c6-ea5e-11de-8ff2-0013722f8dec" ownerguid="c5099234-ea5e-11de-9bc6-0013722f8dec"> -<Abbreviation> -<AUni ws="en">POT.C.F</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Potential, C.F.</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="PhNCSegments" guid="d69c7174-ea5e-11de-9a7d-0013722f8dec" ownerguid="be765e3e-ea5e-11de-9d42-0013722f8dec"> -<Abbreviation> -<AUni ws="en">C</AUni> -<AUni ws="es">C</AUni> -</Abbreviation> -<Description> -<AStr ws="en"> -<Run ws="en">Consonants</Run> -</AStr> -<AStr ws="es"> -<Run ws="es">Consonantes</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">Consonants</AUni> -<AUni ws="es">Consonantes</AUni> -</Name> -<Segments> -<objsur guid="53cd56ab-c7c3-4678-a0ff-115a4828212c" t="r" /> -<objsur guid="54482722-898d-4007-ba4d-c113b50789cd" t="r" /> -<objsur guid="5adde606-e77c-496c-9fb2-111a6b01e9fd" t="r" /> -<objsur guid="60f222f8-e2b9-4ffe-ac3c-0c7fb1a24e83" t="r" /> -<objsur guid="655c115f-eab9-4552-9a98-7ef9bb41ebb1" t="r" /> -<objsur guid="93d652a3-4b98-42e3-90f9-ae9ab0ead15b" t="r" /> -<objsur guid="9e9886d6-589e-4538-9509-5532fbe76ef1" t="r" /> -<objsur guid="b1e553eb-ba5d-438d-a847-8b65e95ab927" t="r" /> -<objsur guid="bcf89c4f-49cb-4a7f-8937-f35c715f70df" t="r" /> -<objsur guid="d75b2ca4-ea5e-11de-9639-0013722f8dec" t="r" /> -<objsur guid="d764b602-ea5e-11de-9d0b-0013722f8dec" t="r" /> -<objsur guid="d77c8d68-ea5e-11de-9b1a-0013722f8dec" t="r" /> -<objsur guid="d78616c6-ea5e-11de-9f26-0013722f8dec" t="r" /> -<objsur guid="d79dee2c-ea5e-11de-98a0-0013722f8dec" t="r" /> -<objsur guid="d7a7778a-ea5e-11de-90d5-0013722f8dec" t="r" /> -<objsur guid="d7b36338-ea5e-11de-9064-0013722f8dec" t="r" /> -<objsur guid="d7bf4ef0-ea5e-11de-96a9-0013722f8dec" t="r" /> -<objsur guid="d7c8d84e-ea5e-11de-909e-0013722f8dec" t="r" /> -<objsur guid="d7e0afb4-ea5e-11de-9cc6-0013722f8dec" t="r" /> -<objsur guid="d7ec9b62-ea5e-11de-892e-0013722f8dec" t="r" /> -<objsur guid="d7f624c0-ea5e-11de-9891-0013722f8dec" t="r" /> -<objsur guid="d802106e-ea5e-11de-8560-0013722f8dec" t="r" /> -<objsur guid="d8178584-ea5e-11de-8593-0013722f8dec" t="r" /> -<objsur guid="d8237132-ea5e-11de-987d-0013722f8dec" t="r" /> -<objsur guid="d82f5cea-ea5e-11de-864c-0013722f8dec" t="r" /> -<objsur guid="d838e648-ea5e-11de-9b7f-0013722f8dec" t="r" /> -<objsur guid="e1bd5b84-48dc-4df5-8cb0-de15793f00f6" t="r" /> -<objsur guid="e6951d31-60a0-43e9-bebb-7d2ed36c19eb" t="r" /> -<objsur guid="f5ae79dc-30ed-408a-9961-8c213feee29b" t="r" /> -</Segments> -</rt> -<rt class="PhNCSegments" guid="d6a85d2c-ea5e-11de-83f4-0013722f8dec" ownerguid="be765e3e-ea5e-11de-9d42-0013722f8dec"> -<Abbreviation> -<AUni ws="en">V</AUni> -<AUni ws="es">V</AUni> -</Abbreviation> -<Description> -<AStr ws="en"> -<Run ws="en">Vowels</Run> -</AStr> -<AStr ws="es"> -<Run ws="es">Vocales</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">Vowels</AUni> -<AUni ws="es">Vocales</AUni> -</Name> -<Segments> -<objsur guid="d74f40f6-ea5e-11de-8028-0013722f8dec" t="r" /> -<objsur guid="d770a1ba-ea5e-11de-93c8-0013722f8dec" t="r" /> -<objsur guid="d792027e-ea5e-11de-98bc-0013722f8dec" t="r" /> -<objsur guid="d7d4c3fc-ea5e-11de-89e1-0013722f8dec" t="r" /> -<objsur guid="d80dfc26-ea5e-11de-852c-0013722f8dec" t="r" /> -</Segments> -</rt> -<rt class="CmCell" guid="d6b448da-ea5e-11de-8ece-0013722f8dec" ownerguid="ba458150-ea5e-11de-9cc9-0013722f8dec" /> -<rt class="CmCell" guid="d6bdd238-ea5e-11de-86a8-0013722f8dec" ownerguid="bb19b196-ea5e-11de-8f5d-0013722f8dec" /> -<rt class="FsFeatureSystem" guid="d6d5a99e-ea5e-11de-994c-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Features> -<objsur guid="e13ebd7a-824d-4405-8c23-e5a30f3d53a6" t="o" /> -</Features> -<Types> -<objsur guid="efc7ecdf-44ed-4b11-9eef-41aaa905ca65" t="o" /> -</Types> -</rt> -<rt class="CmCell" guid="d6df32fc-ea5e-11de-96e5-0013722f8dec" ownerguid="bb685ecc-ea5e-11de-8b8c-0013722f8dec" /> -<rt class="FsFeatureSystem" guid="d6eb1eb4-ea5e-11de-89a2-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b" /> -<rt class="CmCell" guid="d70093c0-ea5e-11de-91f6-0013722f8dec" ownerguid="b9f6d41a-ea5e-11de-8aaf-0013722f8dec" /> -<rt class="CmPossibilityList" guid="d70c7f6e-ea5e-11de-9dc3-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Abbreviation> -<AUni ws="en">EdLev</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:6.323" /> -<DateModified val="2018-8-2 16:32:6.323" /> -<Depth val="127" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="False" /> -<IsVernacular val="False" /> -<ItemClsid val="7" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Education Levels</AUni> -</Name> -<Possibilities> -<objsur guid="bda22e02-ea5e-11de-9452-0013722f8dec" t="o" /> -<objsur guid="bdabb760-ea5e-11de-8ce8-0013722f8dec" t="o" /> -<objsur guid="bdb7a30e-ea5e-11de-8919-0013722f8dec" t="o" /> -<objsur guid="bdc38ec6-ea5e-11de-9902-0013722f8dec" t="o" /> -<objsur guid="bdcd1824-ea5e-11de-89ce-0013722f8dec" t="o" /> -<objsur guid="bdd903d2-ea5e-11de-9be6-0013722f8dec" t="o" /> -<objsur guid="bde4ef8a-ea5e-11de-8623-0013722f8dec" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="CmPossibilityList" guid="d72de032-ea5e-11de-84f3-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Abbreviation> -<AUni ws="en">Part</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:6.322" /> -<DateModified val="2018-8-2 16:32:6.322" /> -<Depth val="1" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="True" /> -<IsVernacular val="False" /> -<ItemClsid val="13" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">People</AUni> -</Name> -<Possibilities> -<objsur guid="5d543e4f-50d7-41fe-93a7-cf851c1d229e" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="True" /> -<WsSelector val="-6" /> -</rt> -<rt class="RnResearchNbk" guid="d739cbea-ea5e-11de-85be-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<DateCreated val="2022-9-23 16:55:7.800" /> -<DateModified val="2022-9-23 16:55:7.800" /> -<Name> -<AUni ws="en">Data Notebook</AUni> -</Name> -<RecTypes> -<objsur guid="d9d55b12-ea5e-11de-95ef-0013722f8dec" t="o" /> -</RecTypes> -</rt> -<rt class="CmPossibilityList" guid="d743553e-ea5e-11de-842a-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Abbreviation> -<AUni ws="en">Res</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:6.320" /> -<DateModified val="2018-8-2 16:32:6.320" /> -<Depth val="1" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="False" /> -<IsVernacular val="False" /> -<ItemClsid val="7" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Restrictions</AUni> -</Name> -<Possibilities> -<objsur guid="6ebc80f8-9ce0-45d9-bb49-3869591fb1ff" t="o" /> -<objsur guid="bbcc810e-ea5e-11de-8a3b-0013722f8dec" t="o" /> -<objsur guid="bbd86cc6-ea5e-11de-8964-0013722f8dec" t="o" /> -<objsur guid="bbe1f61a-ea5e-11de-9640-0013722f8dec" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="PhPhoneme" guid="d74f40f6-ea5e-11de-8028-0013722f8dec" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="beb91fc6-ea5e-11de-924c-0013722f8dec" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">low central unrounded vowel</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">a</AUni> -<AUni ws="qvm-x-ach">a</AUni> -<AUni ws="qvm-x-acl">a</AUni> -<AUni ws="qvm-x-akh">a</AUni> -<AUni ws="qvm-x-akl">a</AUni> -<AUni ws="qvm-x-ame">a</AUni> -</Name> -</rt> -<rt class="PhPhoneme" guid="d75b2ca4-ea5e-11de-9639-0013722f8dec" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="bee409e8-ea5e-11de-88ce-0013722f8dec" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">voiced bilabial stop</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">b</AUni> -<AUni ws="qvm-x-ach">b</AUni> -<AUni ws="qvm-x-acl">b</AUni> -<AUni ws="qvm-x-akh">b</AUni> -<AUni ws="qvm-x-akl">b</AUni> -<AUni ws="qvm-x-ame">b</AUni> -</Name> -</rt> -<rt class="PhPhoneme" guid="d764b602-ea5e-11de-9d0b-0013722f8dec" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="befbe14e-ea5e-11de-8d20-0013722f8dec" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">voiced alveolar stop</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">d</AUni> -<AUni ws="qvm-x-ach">d</AUni> -<AUni ws="qvm-x-acl">d</AUni> -<AUni ws="qvm-x-akh">d</AUni> -<AUni ws="qvm-x-akl">d</AUni> -<AUni ws="qvm-x-ame">d</AUni> -</Name> -</rt> -<rt class="PhPhoneme" guid="d770a1ba-ea5e-11de-93c8-0013722f8dec" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="bead340e-ea5e-11de-9f3a-0013722f8dec" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">mid front unrounded vowel</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">e</AUni> -<AUni ws="qvm-x-ach">e</AUni> -<AUni ws="qvm-x-acl">e</AUni> -<AUni ws="qvm-x-akh">e</AUni> -<AUni ws="qvm-x-akl">e</AUni> -<AUni ws="qvm-x-ame">e</AUni> -</Name> -</rt> -<rt class="PhPhoneme" guid="d77c8d68-ea5e-11de-9b1a-0013722f8dec" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="bf1d4208-ea5e-11de-9848-0013722f8dec" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">voiceless labiodental fricative</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">f</AUni> -<AUni ws="qvm-x-ach">f</AUni> -<AUni ws="qvm-x-acl">f</AUni> -<AUni ws="qvm-x-akh">f</AUni> -<AUni ws="qvm-x-akl">f</AUni> -<AUni ws="qvm-x-ame">f</AUni> -</Name> -</rt> -<rt class="PhPhoneme" guid="d78616c6-ea5e-11de-9f26-0013722f8dec" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="bf11565a-ea5e-11de-915f-0013722f8dec" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">voiced velar stop</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">g</AUni> -<AUni ws="qvm-x-ach">g</AUni> -<AUni ws="qvm-x-acl">g</AUni> -<AUni ws="qvm-x-akh">g</AUni> -<AUni ws="qvm-x-akl">g</AUni> -<AUni ws="qvm-x-ame">g</AUni> -</Name> -</rt> -<rt class="PhPhoneme" guid="d792027e-ea5e-11de-98bc-0013722f8dec" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="bea14860-ea5e-11de-8a91-0013722f8dec" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">high front unrounded vowel</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">i</AUni> -<AUni ws="qvm-x-ach">i</AUni> -<AUni ws="qvm-x-acl">i</AUni> -<AUni ws="qvm-x-akh">i</AUni> -<AUni ws="qvm-x-akl">i</AUni> -<AUni ws="qvm-x-ame">i</AUni> -</Name> -</rt> -<rt class="PhPhoneme" guid="d79dee2c-ea5e-11de-98a0-0013722f8dec" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="bf96d960-ea5e-11de-8c39-0013722f8dec" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">palatal approximant</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">j</AUni> -<AUni ws="qvm-x-ach">j</AUni> -<AUni ws="qvm-x-acl">j</AUni> -<AUni ws="qvm-x-akh">j</AUni> -<AUni ws="qvm-x-akl">j</AUni> -<AUni ws="qvm-x-ame">j</AUni> -</Name> -</rt> -<rt class="PhPhoneme" guid="d7a7778a-ea5e-11de-90d5-0013722f8dec" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="bf07ccfc-ea5e-11de-9e28-0013722f8dec" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">voiceless velar stop</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">k</AUni> -<AUni ws="qvm-x-ach">k</AUni> -<AUni ws="qvm-x-acl">k</AUni> -<AUni ws="qvm-x-akh">k</AUni> -<AUni ws="qvm-x-akl">k</AUni> -<AUni ws="qvm-x-ame">k</AUni> -</Name> -</rt> -<rt class="PhPhoneme" guid="d7b36338-ea5e-11de-9064-0013722f8dec" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="bf75789c-ea5e-11de-98fc-0013722f8dec" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">alveolar lateral</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">l</AUni> -<AUni ws="qvm-x-ach">l</AUni> -<AUni ws="qvm-x-acl">l</AUni> -<AUni ws="qvm-x-akh">l</AUni> -<AUni ws="qvm-x-akl">l</AUni> -<AUni ws="qvm-x-ame">l</AUni> -</Name> -</rt> -<rt class="PhPhoneme" guid="d7bf4ef0-ea5e-11de-96a9-0013722f8dec" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="bf5417d8-ea5e-11de-9d93-0013722f8dec" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">bilabial nasal</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">m</AUni> -<AUni ws="qvm-x-ach">m</AUni> -<AUni ws="qvm-x-acl">m</AUni> -<AUni ws="qvm-x-akh">m</AUni> -<AUni ws="qvm-x-akl">m</AUni> -<AUni ws="qvm-x-ame">m</AUni> -</Name> -</rt> -<rt class="PhPhoneme" guid="d7c8d84e-ea5e-11de-909e-0013722f8dec" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="bf600390-ea5e-11de-8577-0013722f8dec" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">alveolar nasal</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">n</AUni> -<AUni ws="qvm-x-ach">n</AUni> -<AUni ws="qvm-x-acl">n</AUni> -<AUni ws="qvm-x-akh">n</AUni> -<AUni ws="qvm-x-akl">n</AUni> -<AUni ws="qvm-x-ame">n</AUni> -</Name> -</rt> -<rt class="PhPhoneme" guid="d7d4c3fc-ea5e-11de-89e1-0013722f8dec" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="bec2a924-ea5e-11de-934a-0013722f8dec" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">mid back rounded vowel</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">o</AUni> -<AUni ws="qvm-x-ach">o</AUni> -<AUni ws="qvm-x-acl">o</AUni> -<AUni ws="qvm-x-akh">o</AUni> -<AUni ws="qvm-x-akl">o</AUni> -<AUni ws="qvm-x-ame">o</AUni> -</Name> -</rt> -<rt class="PhPhoneme" guid="d7e0afb4-ea5e-11de-9cc6-0013722f8dec" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="beda808a-ea5e-11de-8f3c-0013722f8dec" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">voiceless bilabial stop</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">p</AUni> -<AUni ws="qvm-x-ach">p</AUni> -<AUni ws="qvm-x-acl">p</AUni> -<AUni ws="qvm-x-akh">p</AUni> -<AUni ws="qvm-x-akl">p</AUni> -<AUni ws="qvm-x-ame">p</AUni> -</Name> -</rt> -<rt class="PhPhoneme" guid="d7ec9b62-ea5e-11de-892e-0013722f8dec" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="bf816454-ea5e-11de-8e5f-0013722f8dec" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">alveolar flap</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">r</AUni> -<AUni ws="qvm-x-ach">r</AUni> -<AUni ws="qvm-x-acl">r</AUni> -<AUni ws="qvm-x-akh">r</AUni> -<AUni ws="qvm-x-akl">r</AUni> -<AUni ws="qvm-x-ame">r</AUni> -</Name> -</rt> -<rt class="PhPhoneme" guid="d7f624c0-ea5e-11de-9891-0013722f8dec" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="bf32b71e-ea5e-11de-9492-0013722f8dec" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">voiceless alveolar fricative</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">s</AUni> -<AUni ws="qvm-x-ach">s</AUni> -<AUni ws="qvm-x-acl">s</AUni> -<AUni ws="qvm-x-akh">s</AUni> -<AUni ws="qvm-x-akl">s</AUni> -<AUni ws="qvm-x-ame">s</AUni> -</Name> -</rt> -<rt class="CmPossibilityList" guid="d7f713d8-e8cf-11d3-9764-00c04f186933" ownerguid="af26d792-ea5e-11de-8f7e-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Not User-Facing (do not localize)</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:6.267" /> -<DateModified val="2018-8-2 16:32:6.267" /> -<Depth val="1" /> -<DisplayOption val="0" /> -<IsClosed val="True" /> -<IsSorted val="True" /> -<IsVernacular val="False" /> -<ItemClsid val="5042" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Morpheme Types</AUni> -</Name> -<Possibilities> -<objsur guid="56db04bf-3d58-44cc-b292-4c8aa68538f4" t="o" /> -<objsur guid="d7f713da-e8cf-11d3-9764-00c04f186933" t="o" /> -<objsur guid="d7f713db-e8cf-11d3-9764-00c04f186933" t="o" /> -<objsur guid="d7f713dc-e8cf-11d3-9764-00c04f186933" t="o" /> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="o" /> -<objsur guid="d7f713de-e8cf-11d3-9764-00c04f186933" t="o" /> -<objsur guid="d7f713df-e8cf-11d3-9764-00c04f186933" t="o" /> -<objsur guid="c2d140e5-7ca9-41f4-a69a-22fc7049dd2c" t="o" /> -<objsur guid="d7f713e1-e8cf-11d3-9764-00c04f186933" t="o" /> -<objsur guid="d7f713e2-e8cf-11d3-9764-00c04f186933" t="o" /> -<objsur guid="d7f713e4-e8cf-11d3-9764-00c04f186933" t="o" /> -<objsur guid="d7f713e5-e8cf-11d3-9764-00c04f186933" t="o" /> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="o" /> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="o" /> -<objsur guid="18d9b1c3-b5b6-4c07-b92c-2fe1d2281bd4" t="o" /> -<objsur guid="af6537b0-7175-4387-ba6a-36547d37fb13" t="o" /> -<objsur guid="3433683d-08a9-4bae-ae53-2a7798f64068" t="o" /> -<objsur guid="a23b6faa-1052-4f4d-984b-4b338bdaf95f" t="o" /> -<objsur guid="0cc8c35a-cee9-434d-be58-5d29130fba5b" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="MoMorphType" guid="d7f713da-e8cf-11d3-9764-00c04f186933" ownerguid="d7f713d8-e8cf-11d3-9764-00c04f186933"> -<Abbreviation> -<AUni ws="en">ifx</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">An infix is an affix that is inserted within a root or stem.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">infix</AUni> -</Name> -<Postfix> -<Uni>-</Uni> -</Postfix> -<Prefix> -<Uni>-</Uni> -</Prefix> -<SecondaryOrder val="40" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoMorphType" guid="d7f713db-e8cf-11d3-9764-00c04f186933" ownerguid="d7f713d8-e8cf-11d3-9764-00c04f186933"> -<Abbreviation> -<AUni ws="en">pfx</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-10-19 18:54:44.175" /> -<Description> -<AStr ws="en"> -<Run ws="en">A prefix is an affix that is joined before a root or stem.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">prefix</AUni> -</Name> -<SecondaryOrder val="20" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoMorphType" guid="d7f713dc-e8cf-11d3-9764-00c04f186933" ownerguid="d7f713d8-e8cf-11d3-9764-00c04f186933"> -<Abbreviation> -<AUni ws="en">smfx</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">A simulfix is a change or replacement of vowels or consonants (usually vowels) which changes the meaning of a word. (Note: the parser does not currently handle simulfixes.)</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">simulfix</AUni> -</Name> -<Postfix> -<Uni>=</Uni> -</Postfix> -<Prefix> -<Uni>=</Uni> -</Prefix> -<SecondaryOrder val="60" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoMorphType" guid="d7f713dd-e8cf-11d3-9764-00c04f186933" ownerguid="d7f713d8-e8cf-11d3-9764-00c04f186933"> -<Abbreviation> -<AUni ws="en">sfx</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">A suffix is an affix that is attached to the end of a root or stem.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">suffix</AUni> -</Name> -<Prefix> -<Uni>-</Uni> -</Prefix> -<SecondaryOrder val="70" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoMorphType" guid="d7f713de-e8cf-11d3-9764-00c04f186933" ownerguid="d7f713d8-e8cf-11d3-9764-00c04f186933"> -<Abbreviation> -<AUni ws="en">spfx</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">A suprafix is a kind of affix in which a suprasegmental is superimposed on one or more syllables of the root or stem, signalling a particular morphosyntactic operation. (Note: the parser does not currently handle suprafixes.)</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">suprafix</AUni> -</Name> -<Postfix> -<Uni>~</Uni> -</Postfix> -<Prefix> -<Uni>~</Uni> -</Prefix> -<SecondaryOrder val="50" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoMorphType" guid="d7f713df-e8cf-11d3-9764-00c04f186933" ownerguid="d7f713d8-e8cf-11d3-9764-00c04f186933"> -<Abbreviation> -<AUni ws="en">cfx</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">A circumfix is an affix made up of two separate parts which surround and attach to a root or stem.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">circumfix</AUni> -</Name> -<SecondaryOrder val="0" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoMorphType" guid="d7f713e1-e8cf-11d3-9764-00c04f186933" ownerguid="d7f713d8-e8cf-11d3-9764-00c04f186933"> -<Abbreviation> -<AUni ws="en">enclit</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">An enclitic is a clitic that is phonologically joined at the end of a preceding word to form a single unit. Orthographically, it may attach to the preceding word.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">enclitic</AUni> -</Name> -<Prefix> -<Uni>=</Uni> -</Prefix> -<SecondaryOrder val="80" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoMorphType" guid="d7f713e2-e8cf-11d3-9764-00c04f186933" ownerguid="d7f713d8-e8cf-11d3-9764-00c04f186933"> -<Abbreviation> -<AUni ws="en">proclit</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">A proclitic is a clitic that precedes the word to which it is phonologically joined. Orthographically, it may attach to the following word.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">proclitic</AUni> -</Name> -<Postfix> -<Uni>=</Uni> -</Postfix> -<SecondaryOrder val="30" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoMorphType" guid="d7f713e4-e8cf-11d3-9764-00c04f186933" ownerguid="d7f713d8-e8cf-11d3-9764-00c04f186933"> -<Abbreviation> -<AUni ws="en">bd root</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-10-13 17:36:59.325" /> -<Description> -<AStr ws="en"> -<Run ws="en">A bound root is a root which cannot occur as a separate word apart from any other morpheme.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">bound root</AUni> -</Name> -<Postfix> -<Uni>-</Uni> -</Postfix> -<SecondaryOrder val="10" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoMorphType" guid="d7f713e5-e8cf-11d3-9764-00c04f186933" ownerguid="d7f713d8-e8cf-11d3-9764-00c04f186933"> -<Abbreviation> -<AUni ws="en">ubd root</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">A root is the portion of a word that (i) is common to a set of derived or inflected forms, if any, when all affixes are removed, (ii) is not further analyzable into meaningful elements, being morphologically simple, and, (iii) carries the principal portion of meaning of the words in which it functions.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">root</AUni> -</Name> -<SecondaryOrder val="0" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoMorphType" guid="d7f713e7-e8cf-11d3-9764-00c04f186933" ownerguid="d7f713d8-e8cf-11d3-9764-00c04f186933"> -<Abbreviation> -<AUni ws="en">bd stem</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-10-13 17:36:29.589" /> -<Description> -<AStr ws="en"> -<Run ws="en">A bound stem is a stem which cannot occur as a separate word apart from any other morpheme.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">bound stem</AUni> -</Name> -<Postfix> -<Uni>-</Uni> -</Postfix> -<SecondaryOrder val="10" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoMorphType" guid="d7f713e8-e8cf-11d3-9764-00c04f186933" ownerguid="d7f713d8-e8cf-11d3-9764-00c04f186933"> -<Abbreviation> -<AUni ws="en">ubd stem</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">"A stem is the root or roots of a word, together with any derivational affixes, to which inflectional affixes are added." (LinguaLinks Library). A stem "may consist solely of a single root morpheme (i.e. a 'simple' stem as in </Run> -<Run namedStyle="Emphasized Text" ws="en">man</Run> -<Run ws="en">), or of two root morphemes (e.g. a 'compound' stem, as in </Run> -<Run namedStyle="Emphasized Text" ws="en">blackbird</Run> -<Run ws="en">), or of a root morpheme plus a derivational affix (i.e. a 'complex' stem, as in </Run> -<Run namedStyle="Emphasized Text" ws="en">manly</Run> -<Run ws="en">, </Run> -<Run namedStyle="Emphasized Text" ws="en">unmanly</Run> -<Run ws="en">, </Run> -<Run namedStyle="Emphasized Text" ws="en">manliness</Run> -<Run ws="en">). All have in common the notion that it is to the stem that inflectional affixes are attached." (Crystal, 1997:362)</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">stem</AUni> -</Name> -<SecondaryOrder val="0" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibilityList" guid="d7f71649-e8cf-11d3-9764-00c04f186933" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Abbreviation> -<AUni ws="en">Type</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:6.314" /> -<DateModified val="2018-8-2 16:32:6.314" /> -<Depth val="1" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="True" /> -<IsVernacular val="False" /> -<ItemClsid val="7" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Translation Types</AUni> -</Name> -<Possibilities> -<objsur guid="80a0dddb-8b4b-4454-b872-88adec6f2aba" t="o" /> -<objsur guid="d7f7164a-e8cf-11d3-9764-00c04f186933" t="o" /> -<objsur guid="d7f7164b-e8cf-11d3-9764-00c04f186933" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="CmPossibility" guid="d7f7164a-e8cf-11d3-9764-00c04f186933" ownerguid="d7f71649-e8cf-11d3-9764-00c04f186933"> -<Abbreviation> -<AUni ws="en">FT</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Free translation</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmPossibility" guid="d7f7164b-e8cf-11d3-9764-00c04f186933" ownerguid="d7f71649-e8cf-11d3-9764-00c04f186933"> -<Abbreviation> -<AUni ws="en">LT</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="True" /> -<Name> -<AUni ws="en">Literal translation</AUni> -</Name> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="PhPhoneme" guid="d802106e-ea5e-11de-8560-0013722f8dec" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="beeff596-ea5e-11de-89a7-0013722f8dec" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">voiceless alveolar stop</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">t</AUni> -<AUni ws="qvm-x-ach">t</AUni> -<AUni ws="qvm-x-acl">t</AUni> -<AUni ws="qvm-x-akh">t</AUni> -<AUni ws="qvm-x-akl">t</AUni> -<AUni ws="qvm-x-ame">t</AUni> -</Name> -</rt> -<rt class="PhPhoneme" guid="d80dfc26-ea5e-11de-852c-0013722f8dec" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="bece94d2-ea5e-11de-9539-0013722f8dec" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">high back rounded vowel</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">u</AUni> -<AUni ws="qvm-x-ach">u</AUni> -<AUni ws="qvm-x-acl">u</AUni> -<AUni ws="qvm-x-akh">u</AUni> -<AUni ws="qvm-x-akl">u</AUni> -<AUni ws="qvm-x-ame">u</AUni> -</Name> -</rt> -<rt class="PhPhoneme" guid="d8178584-ea5e-11de-8593-0013722f8dec" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="bf292dc0-ea5e-11de-836f-0013722f8dec" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">voiced labiodental fricative</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">v</AUni> -<AUni ws="qvm-x-ach">v</AUni> -<AUni ws="qvm-x-acl">v</AUni> -<AUni ws="qvm-x-akh">v</AUni> -<AUni ws="qvm-x-akl">v</AUni> -<AUni ws="qvm-x-ame">v</AUni> -</Name> -</rt> -<rt class="PhPhoneme" guid="d8237132-ea5e-11de-987d-0013722f8dec" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="bf8d5002-ea5e-11de-9b78-0013722f8dec" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">labiovelar approximant</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">w</AUni> -<AUni ws="qvm-x-ach">w</AUni> -<AUni ws="qvm-x-acl">w</AUni> -<AUni ws="qvm-x-akh">w</AUni> -<AUni ws="qvm-x-akl">w</AUni> -<AUni ws="qvm-x-ame">w</AUni> -</Name> -</rt> -<rt class="PhPhoneme" guid="d82f5cea-ea5e-11de-864c-0013722f8dec" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="bf4a8e84-ea5e-11de-88e0-0013722f8dec" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">voiceless velar fricative</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">x</AUni> -<AUni ws="qvm-x-ach">x</AUni> -<AUni ws="qvm-x-acl">x</AUni> -<AUni ws="qvm-x-akh">x</AUni> -<AUni ws="qvm-x-akl">x</AUni> -<AUni ws="qvm-x-ame">x</AUni> -</Name> -</rt> -<rt class="PhPhoneme" guid="d838e648-ea5e-11de-9b7f-0013722f8dec" ownerguid="be7fe79c-ea5e-11de-8151-0013722f8dec"> -<Codes> -<objsur guid="bf3ea2cc-ea5e-11de-8bfb-0013722f8dec" t="o" /> -</Codes> -<Description> -<AStr ws="en"> -<Run ws="en">voiced alveolar fricative</Run> -</AStr> -</Description> -<Name> -<AUni ws="en">z</AUni> -<AUni ws="qvm-x-ach">z</AUni> -<AUni ws="qvm-x-acl">z</AUni> -<AUni ws="qvm-x-akh">z</AUni> -<AUni ws="qvm-x-akl">z</AUni> -<AUni ws="qvm-x-ame">z</AUni> -</Name> -</rt> -<rt class="CmPossibilityList" guid="d850bdae-ea5e-11de-985e-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Abbreviation> -<AUni ws="en">Time</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:6.323" /> -<DateModified val="2018-8-2 16:32:6.323" /> -<Depth val="127" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="False" /> -<IsVernacular val="False" /> -<ItemClsid val="7" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Time Of Day</AUni> -</Name> -<Possibilities> -<objsur guid="bdee78de-ea5e-11de-8897-0013722f8dec" t="o" /> -<objsur guid="bdfa6496-ea5e-11de-82c0-0013722f8dec" t="o" /> -<objsur guid="be1bc55a-ea5e-11de-9476-0013722f8dec" t="o" /> -<objsur guid="be27b108-ea5e-11de-9fdb-0013722f8dec" t="o" /> -<objsur guid="be4911cc-ea5e-11de-8d21-0013722f8dec" t="o" /> -<objsur guid="be54fd84-ea5e-11de-86b7-0013722f8dec" t="o" /> -<objsur guid="be5e86d8-ea5e-11de-9b90-0013722f8dec" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="CmPossibilityList" guid="d86632ba-ea5e-11de-8a58-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Abbreviation> -<AUni ws="en">Stat</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:6.321" /> -<DateModified val="2018-8-2 16:32:6.321" /> -<Depth val="1" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="False" /> -<IsVernacular val="False" /> -<ItemClsid val="7" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Status</AUni> -</Name> -<Possibilities> -<objsur guid="bd80cd3e-ea5e-11de-9871-0013722f8dec" t="o" /> -<objsur guid="bd8a569c-ea5e-11de-87cc-0013722f8dec" t="o" /> -<objsur guid="bd964254-ea5e-11de-8cdf-0013722f8dec" t="o" /> -<objsur guid="b098623a-ea5e-11de-8126-0013722f8dec" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="CmPossibilityList" guid="d87ba7c6-ea5e-11de-9dd2-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Abbreviation> -<AUni ws="en">Anth</AUni> -</Abbreviation> -<DateCreated val="2022-9-23 16:55:7.800" /> -<DateModified val="2022-9-23 16:55:7.800" /> -<Depth val="127" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="False" /> -<IsVernacular val="False" /> -<ItemClsid val="26" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Anthropology Categories</AUni> -</Name> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="0" /> -</rt> -<rt class="CmPossibilityList" guid="d887937e-ea5e-11de-9e1f-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Abbreviation> -<AUni ws="en">Loc</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:6.321" /> -<DateModified val="2018-8-2 16:32:6.321" /> -<Depth val="127" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="True" /> -<IsVernacular val="False" /> -<ItemClsid val="12" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Locations</AUni> -</Name> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-6" /> -</rt> -<rt class="CmPossibilityList" guid="d992998a-ea5e-11de-899e-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Abbreviation> -<AUni ws="en">Role</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:6.320" /> -<DateModified val="2018-8-2 16:32:6.320" /> -<Depth val="1" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="False" /> -<IsVernacular val="False" /> -<ItemClsid val="7" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Roles</AUni> -</Name> -<Possibilities> -<objsur guid="bd10bf44-ea5e-11de-8980-0013722f8dec" t="o" /> -<objsur guid="bd1a48a2-ea5e-11de-9ed7-0013722f8dec" t="o" /> -<objsur guid="bd26345a-ea5e-11de-9973-0013722f8dec" t="o" /> -<objsur guid="bd322008-ea5e-11de-8390-0013722f8dec" t="o" /> -<objsur guid="bd3e0bc0-ea5e-11de-93b0-0013722f8dec" t="o" /> -<objsur guid="bd479514-ea5e-11de-99f8-0013722f8dec" t="o" /> -<objsur guid="bd5380cc-ea5e-11de-8a09-0013722f8dec" t="o" /> -<objsur guid="bd5f6c7a-ea5e-11de-8ce5-0013722f8dec" t="o" /> -<objsur guid="bd68f5d8-ea5e-11de-9d1b-0013722f8dec" t="o" /> -<objsur guid="bd74e190-ea5e-11de-8bb1-0013722f8dec" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="CmPossibilityList" guid="d99e8542-ea5e-11de-9301-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Abbreviation> -<AUni ws="en">Conf</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:6.320" /> -<DateModified val="2018-8-2 16:32:6.320" /> -<Depth val="1" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="False" /> -<IsVernacular val="False" /> -<ItemClsid val="7" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Confidence Levels</AUni> -</Name> -<Possibilities> -<objsur guid="bb9f349c-ea5e-11de-9293-0013722f8dec" t="o" /> -<objsur guid="bbab204a-ea5e-11de-99a0-0013722f8dec" t="o" /> -<objsur guid="bbb70c02-ea5e-11de-8a97-0013722f8dec" t="o" /> -<objsur guid="bbc09560-ea5e-11de-8de5-0013722f8dec" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="CmPossibilityList" guid="d9b3fa4e-ea5e-11de-8cea-0013722f8dec" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Abbreviation> -<AUni ws="en">Posn</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:6.324" /> -<DateModified val="2018-8-2 16:32:6.324" /> -<Depth val="1" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="False" /> -<IsVernacular val="False" /> -<ItemClsid val="7" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Positions</AUni> -</Name> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="CmPossibilityList" guid="d9d55b12-ea5e-11de-95ef-0013722f8dec" ownerguid="d739cbea-ea5e-11de-85be-0013722f8dec"> -<Abbreviation> -<AUni ws="en">Type</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:9.985" /> -<DateModified val="2018-8-2 16:32:9.985" /> -<Depth val="127" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="False" /> -<IsVernacular val="False" /> -<ItemClsid val="7" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Notebook Record Types</AUni> -</Name> -<Possibilities> -<objsur guid="00951e6f-2523-4ac9-a649-ad42c659cf83" t="o" /> -<objsur guid="b7e0c7f8-ea5e-11de-82cc-0013722f8dec" t="o" /> -<objsur guid="82290763-1633-4998-8317-0ec3f5027fbd" t="o" /> -<objsur guid="bcb1cf88-582d-463a-b96f-0023f6ac2395" t="o" /> -<objsur guid="06974d9a-ff86-4e1c-a3e5-7ce8c961dcb9" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="CmAnnotationDefn" guid="dcc8d4d2-13b2-46e4-8fb3-29c166d189ea" ownerguid="82e2fd92-48d8-43c9-ba84-cc4a2a5beead"> -<AllowsComment val="True" /> -<AllowsFeatureStructure val="False" /> -<AllowsInstanceOf val="False" /> -<BackColor val="0" /> -<CanCreateOrphan val="False" /> -<CopyCutPastable val="True" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">Checks for potential inconsistencies in the use of punctuation.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<HelpId> -<Uni>Punctuation_Patterns</Uni> -</HelpId> -<Hidden val="False" /> -<InstanceOfSignature val="0" /> -<IsProtected val="True" /> -<MaxDupOccur val="0" /> -<Multi val="True" /> -<Name> -<AUni ws="en">Punctuation Patterns</AUni> -</Name> -<PromptUser val="False" /> -<Severity val="0" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -<UserCanCreate val="False" /> -<ZeroWidth val="False" /> -</rt> -<rt class="CmAnnotationDefn" guid="ddccb400-f274-4498-92c5-77e99c90f75b" ownerguid="82e2fd92-48d8-43c9-ba84-cc4a2a5beead"> -<AllowsComment val="True" /> -<AllowsFeatureStructure val="False" /> -<AllowsInstanceOf val="False" /> -<BackColor val="0" /> -<CanCreateOrphan val="False" /> -<CopyCutPastable val="True" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">Checks for unmatched parentheses or other punctuation that normally occurs in pairs.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<HelpId> -<Uni>Matching_Punctuation_Pairs</Uni> -</HelpId> -<Hidden val="False" /> -<InstanceOfSignature val="0" /> -<IsProtected val="True" /> -<MaxDupOccur val="0" /> -<Multi val="True" /> -<Name> -<AUni ws="en">Matching Punctuation Pairs</AUni> -</Name> -<PromptUser val="False" /> -<Severity val="0" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -<UserCanCreate val="False" /> -<ZeroWidth val="False" /> -</rt> -<rt class="CmAnnotationDefn" guid="ddccb400-f274-4498-92c5-77e99c90f75c" ownerguid="82e2fd92-48d8-43c9-ba84-cc4a2a5beead"> -<AllowsComment val="True" /> -<AllowsFeatureStructure val="False" /> -<AllowsInstanceOf val="False" /> -<BackColor val="0" /> -<CanCreateOrphan val="False" /> -<CopyCutPastable val="True" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">Checks for potential inconsistencies in the markup of quotations.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<HelpId> -<Uni>Quotation_Marks</Uni> -</HelpId> -<Hidden val="False" /> -<InstanceOfSignature val="0" /> -<IsProtected val="True" /> -<MaxDupOccur val="0" /> -<Multi val="True" /> -<Name> -<AUni ws="en">Quotation Marks</AUni> -</Name> -<PromptUser val="False" /> -<Severity val="0" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -<UserCanCreate val="False" /> -<ZeroWidth val="False" /> -</rt> -<rt class="CmPossibilityList" guid="e491e5d5-d569-41f2-a9c1-23c048d55d59" ownerguid="be765e3e-ea5e-11de-9d42-0013722f8dec"> -<DateCreated val="2012-3-30 18:48:18.679" /> -<DateModified val="2012-3-30 18:48:18.679" /> -<Depth val="1" /> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="True" /> -<IsVernacular val="False" /> -<ItemClsid val="7" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Phonological Rule Features</AUni> -</Name> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="False" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="0" /> -</rt> -<rt class="CmPossibilityList" guid="ea346c01-022f-4f34-b938-219ce7b65b73" ownerguid="8f428f4e-6bc5-42c1-a310-bdc8fb6e242b"> -<Abbreviation> -<AUni ws="en">AnnDefn</AUni> -</Abbreviation> -<DateCreated val="2018-8-2 16:32:6.325" /> -<DateModified val="2018-8-2 16:32:6.325" /> -<Depth val="0" /> -<Description> -<AStr ws="en"> -<Run ws="en">Annotation types defined for use in FieldWorks.</Run> -</AStr> -</Description> -<DisplayOption val="0" /> -<IsClosed val="False" /> -<IsSorted val="False" /> -<IsVernacular val="False" /> -<ItemClsid val="35" /> -<ListVersion val="00000000-0000-0000-0000-000000000000" /> -<Name> -<AUni ws="en">Annotation Definitions</AUni> -</Name> -<Possibilities> -<objsur guid="7ffc4eab-856a-43cc-bc11-0db55738c15b" t="o" /> -<objsur guid="8d4cbd80-0dca-4a83-8a1f-9db3aa4cff54" t="o" /> -<objsur guid="f094a0b0-01b8-4621-97f1-4d775bc29ce7" t="o" /> -<objsur guid="82e2fd92-48d8-43c9-ba84-cc4a2a5beead" t="o" /> -</Possibilities> -<PreventChoiceAboveLevel val="0" /> -<PreventDuplicates val="True" /> -<PreventNodeChoices val="False" /> -<UseExtendedFields val="False" /> -<WsSelector val="-3" /> -</rt> -<rt class="CmAnnotationDefn" guid="f094a0b0-01b8-4621-97f1-4d775bc29ce7" ownerguid="ea346c01-022f-4f34-b938-219ce7b65b73"> -<Abbreviation> -<AUni ws="en">Cmt</AUni> -</Abbreviation> -<AllowsComment val="True" /> -<AllowsFeatureStructure val="False" /> -<AllowsInstanceOf val="False" /> -<BackColor val="0" /> -<CanCreateOrphan val="True" /> -<CopyCutPastable val="True" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">General category for comments of any kind.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<InstanceOfSignature val="0" /> -<IsProtected val="True" /> -<MaxDupOccur val="0" /> -<Multi val="True" /> -<Name> -<AUni ws="en">Comment</AUni> -</Name> -<PromptUser val="False" /> -<Severity val="0" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -<UserCanCreate val="True" /> -<ZeroWidth val="False" /> -</rt> -<rt class="CmAnnotationDefn" guid="f17a054b-d21e-4298-a1a5-0d79c4af6f0f" ownerguid="82e2fd92-48d8-43c9-ba84-cc4a2a5beead"> -<AllowsComment val="True" /> -<AllowsFeatureStructure val="False" /> -<AllowsInstanceOf val="False" /> -<BackColor val="0" /> -<CanCreateOrphan val="False" /> -<CopyCutPastable val="True" /> -<DateCreated val="2022-9-23 16:55:11.787" /> -<DateModified val="2022-9-23 16:55:11.787" /> -<Description> -<AStr ws="en"> -<Run ws="en">Checks for potential inconsistencies in chapter and verse numbers.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<HelpId> -<Uni>Chapter_and_Verse_Numbers</Uni> -</HelpId> -<Hidden val="False" /> -<InstanceOfSignature val="0" /> -<IsProtected val="True" /> -<MaxDupOccur val="0" /> -<Multi val="True" /> -<Name> -<AUni ws="en">Chapter and Verse Numbers</AUni> -</Name> -<PromptUser val="False" /> -<Severity val="0" /> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -<UserCanCreate val="False" /> -<ZeroWidth val="False" /> -</rt> -<rt class="CmAgentEvaluation" guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" ownerguid="1257a971-fcef-4f06-a5e2-c289de5aaf72" /> -<rt class="CmDomainQ" guid="fec1e2aa-2c29-4954-94c9-2999fc04161b" ownerguid="b3745f13-3632-4f13-b0cc-a74c51f8f2a1"> -<ExampleWords> -<AUni ws="en">earthquake fault, fault line, epicenter, fissure</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) Where do earthquakes occur?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="fec47d37-7710-4b53-b532-7e5b4997356c" ownerguid="411e2f93-b331-4717-94f1-43dc9151808c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="fec9efcd-bdd4-41e9-8151-030ba1114180" ownerguid="a3f1d702-8ca1-457a-a569-eb6fdf696bbe"> -<ExampleWords> -<AUni ws="en">disapproval, disapprobation, disfavor, rejection</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What words refer to someone's disapproval?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="feca0df6-9b3b-4c8c-853d-5a4f281d6d71" ownerguid="21ebc64a-a1b8-45bd-b7f6-143a053f1d31"> -<ExampleWords> -<AUni ws="en">tip off, first quarter, second quarter, first half, half time, buzzer</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What are the parts of a game?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="feca6b23-1ca1-4d99-ac79-3672d1d1f7db" ownerguid="6bf7569e-dc79-49da-9ce1-e2e03303828a"> -<Abbreviation> -<AUni ws="en">4.7.7.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.266" /> -<DateModified val="2022-9-23 16:55:8.266" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words referring to a fine--a payment (usually of money) made to a victim or the government for a crime committed against them.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Fine</AUni> -</Name> -<Questions> -<objsur guid="23b3c93c-112d-4f97-9a7f-ca2dce874eff" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="fecba2a8-a385-4a36-94e2-4003b2d1e0d2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ña:tu</AUni> -<AUni ws="qvm-x-acl">ña:tu; ña:tu; ña:to</AUni> -<AUni ws="qvm-x-akh">ña:tu</AUni> -<AUni ws="qvm-x-akl">ña:tu; ña:tu; ña:to</AUni> -<AUni ws="qvm-x-ame">ña:tu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ña:tu</AUni> -<AUni ws="qvm-x-acl">*ña:tu</AUni> -<AUni ws="qvm-x-akh">*ña:tu</AUni> -<AUni ws="qvm-x-akl">*ña:tu</AUni> -<AUni ws="qvm-x-ame">*ña:tu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.588" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="25e02713-755b-4a8c-8cc9-66a8f122f06c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ña:tu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4061538e-8356-4944-a2a7-df8ea9d471e0" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="654a6a13-787c-4277-b8e6-fe0041260e8d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ña:tu 
\entryTyp root 
\gENG flat.nose 
\gSPN nariz.achatado 
\e *ña:tu 
\c N0 
\ach ña:tu 
\akh ña:tu 
\acl ña:tu / _# 
\acl ña:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl ña:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl ña:tu / _# 
\akl ña:tu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl ña:to +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame ña:tu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="fecdd79a-a566-410f-938d-431cfea20f23" ownerguid="530ff7e0-e3cb-4dc3-9c1c-3034969e1ce8"> -<ExampleWords> -<AUni ws="en">avenger, nemesis</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to a person who gets revenge?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="fecf0558-0467-4946-b2de-b314af921dcd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">yu:gu</AUni> -<AUni ws="qvm-x-acl">yu:gu; yu:gu; yu:go</AUni> -<AUni ws="qvm-x-akh">yu:gu</AUni> -<AUni ws="qvm-x-akl">yu:gu; yu:gu; yu:go</AUni> -<AUni ws="qvm-x-ame">yu:gu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+yugo.n</AUni> -<AUni ws="qvm-x-acl">+yugo.n</AUni> -<AUni ws="qvm-x-akh">+yugo.n</AUni> -<AUni ws="qvm-x-akl">+yugo.n</AUni> -<AUni ws="qvm-x-ame">+yugo.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.790" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c4e42b85-4b4c-44b5-8177-5762ead483d2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+yugo.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="4c8fb112-1d17-41bf-977b-dd2de6ae336e" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="40315e1f-a1d4-4197-9e4f-d664c359bd81" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +yugo.n 
\entryTyp root 
\gENG 
\gSPN 
\e +yugo.n 
\c N0 
\ach yu:gu 
\akh yu:gu 
\acl yu:gu / _# 
\acl yu:gu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl yu:go +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl yu:gu / _# 
\akl yu:gu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl yu:go +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame yu:gu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="fed2b7bd-2315-4085-b0a7-2ced988120f3" ownerguid="af4ac058-d4b3-4c7a-ade8-6af762d0486d"> -<Abbreviation> -<AUni ws="en">3.3.1.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.113" /> -<DateModified val="2022-9-23 16:55:8.113" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to choosing something--to want one thing (or person) from a group of things, or to choose to do one thing from several possible things you could do.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>30F To Choose, To Select, To Prefer</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Choose</AUni> -</Name> -<Questions> -<objsur guid="23dd44ad-716e-4a56-aa1b-49e6e80077d6" t="o" /> -<objsur guid="4fab7ffd-d52c-4466-ba13-34c4b66ba15d" t="o" /> -<objsur guid="ec2454bf-a83d-4606-a759-00c0e1176a52" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="fed58112-0fbc-415d-8358-f9e152e85d16" ownerguid="d14157fc-5db3-4e06-8b45-04a2318c5f00"> -<Form> -<AUni ws="qvm-x-ach">paya</AUni> -<AUni ws="qvm-x-acl">paya</AUni> -<AUni ws="qvm-x-akh">paya</AUni> -<AUni ws="qvm-x-akl">paya</AUni> -<AUni ws="qvm-x-ame">paya</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="fed79311-6bc4-4fb8-af49-9899dc9205eb" ownerguid="583c98ff-1cc8-4b05-9086-974d13a78894"> -<ExampleWords> -<AUni ws="en">disorganization, ambient state, chaos, disorder</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to the state of things being disorganized?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="feda5242-68c3-480a-a6bc-8ff245c00f58" ownerguid="04582a28-b94a-4e7f-8cc4-5cdefa8a39f0"> -<ExampleWords> -<AUni ws="en">masculine, virile, manly, macho, he-man</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a man who acts like a man?</AUni> -</Question> -</rt> -<rt class="WfiWordform" guid="fedc3f24-d978-420e-b329-0f2a69385360"> -<Analyses> -<objsur guid="29bca0b2-b243-4a26-845b-64250b3599cf" t="o" /> -</Analyses> -<Checksum val="-1592697033" /> -<Form> -<AUni ws="qvm-x-akh">watata</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="MoStemMsa" guid="fedd066e-7422-45a6-8ab7-471a782b0c90" ownerguid="febd4fc8-66cf-419d-a40e-5e0b51b6a7c8"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="fedd1cbf-d97b-4854-91a5-248e777b4628" ownerguid="ca0f9b9b-31fc-4ae6-9563-abedc4a5af98"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John built a house <for> his parents.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">for</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words mark the beneficiary of a Patient?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="fee01688-a3ef-4767-b267-5da64092b7e8" ownerguid="6f0813fd-b177-49a9-98f3-2ed3b398a85a"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="fee09eec-47dc-45e7-835d-ad4f91b82c71" ownerguid="a22c41ff-78f7-4ea6-a3a2-bb235e0c18e3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">gray</AUni> -<AUni ws="es">gris</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="d5f5c1a7-6abf-44bf-afba-a8c9ece04a18" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="fee3c2c9-f14f-4d61-a069-f7f7c5e5df4f" ownerguid="d603df77-080f-4d08-aa5f-dfd75afb576b"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="fee5329e-c84d-48aa-855a-c04a90305ab2" ownerguid="f07757e2-d57f-4014-bff9-fdbc5007a02a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="fee5392f-53d2-446b-8107-95acdf6cb4f2" ownerguid="590aabbc-fe32-4a59-a39e-7f44825f9687"> -<Form> -<AUni ws="qvm-x-ach">wäta</AUni> -<AUni ws="qvm-x-acl">wäta</AUni> -<AUni ws="qvm-x-akh">wäta</AUni> -<AUni ws="qvm-x-akl">wäta</AUni> -<AUni ws="qvm-x-ame">wäta</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="fee6351b-c379-415a-880a-6908fef6c3ef" ownerguid="4d8a2aae-c80c-4007-84b5-5255881a284c"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">y</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">y</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">y</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">y</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">y</Run> -</AStr> -</Form> -<Morph> -<objsur guid="f87d69c2-d6e0-42df-8007-d50545e254cb" t="r" /> -</Morph> -<Msa> -<objsur guid="51999531-b21e-47af-9ffc-c7e92890c055" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="fee8316e-b563-4561-9a57-dec9dbe1aaa3" ownerguid="8161e1a7-6274-4d78-950c-2004c4164816"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">pick</AUni> -<AUni ws="es">pico</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="f17b6037-c11d-4583-8ed5-77c1526cd65a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="fee9e168-8997-4a4d-ab92-49a94c1e53a6" ownerguid="5f19b3eb-124c-4e45-a1a4-f4740c6bad00"> -<Form> -<AUni ws="qvm-x-ach">acacluy</AUni> -<AUni ws="qvm-x-acl">acacluy</AUni> -<AUni ws="qvm-x-akh">akakluy</AUni> -<AUni ws="qvm-x-akl">akakluy</AUni> -<AUni ws="qvm-x-ame">akakluy</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="feec0891-d58f-4e5d-a59a-882d1d0316ac" ownerguid="602d5a5a-03fc-4c5d-a72f-e9ff18ffe5b0"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">alms</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="3fa67290-1c2b-4c9d-b9db-bacc58bebbb4" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="feef9276-2243-43d4-b44a-5a725a0be56c" ownerguid="85d61f31-0156-44c3-b973-95ccd8e777bf"> -<Form> -<AUni ws="qvm-x-ach">tsay</AUni> -<AUni ws="qvm-x-acl">tsay</AUni> -<AUni ws="qvm-x-akh">tsay</AUni> -<AUni ws="qvm-x-akl">tsay</AUni> -<AUni ws="qvm-x-ame">tsay</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="fef4f06c-633e-45f8-b820-b5a63eff7937" ownerguid="3ebcb976-eb76-4782-aacb-9f1c2514f994"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="fef6cbd1-63d2-4c29-b030-35db14f1ccc8" ownerguid="447f258b-2160-42c7-9431-ffeeb86edcb8"> -<ExampleWords> -<AUni ws="en">fertile, breed, multiply, propagate, have many children, have a big family, fecund, fecundity, prolific</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to having many children?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fef8aad2-22e1-48aa-8f89-e42197124593" ownerguid="bfbfb9b5-363d-4767-a5cb-1b11b348efd6"> -<ExampleWords> -<AUni ws="en">nowhere, no place</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to no place?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="fef937ef-e290-4cf6-a5c1-384bec691864" ownerguid="fbe55ac6-7f80-4f5f-ae49-438900095620"> -<Form> -<AUni ws="qvm-x-ach">mäyu</AUni> -<AUni ws="qvm-x-acl">mäyu; mäyu; mäyo</AUni> -<AUni ws="qvm-x-akh">mäyu</AUni> -<AUni ws="qvm-x-akl">mäyu; mäyu; mäyo</AUni> -<AUni ws="qvm-x-ame">mäyu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="fef9665f-ce2f-47fd-aefb-1165c0653bba" ownerguid="f651aadd-814c-488c-9101-cbff0150b5e1"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="fefea843-406a-45af-a424-6eea9e71591f" ownerguid="ea17aba7-6d4e-4dbf-89ea-84a1b1c47647"> -<ExampleWords> -<AUni ws="en">metric, imperial</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(13) What words describe a system of measures?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ff00835f-419c-4df8-999d-5d2df2727339" ownerguid="77301d7b-fb8f-47cf-90c8-2fa5e6d1a9e5"> -<Form> -<AUni ws="qvm-x-ach">shumshu</AUni> -<AUni ws="qvm-x-acl">shumshu; shumsho</AUni> -<AUni ws="qvm-x-akh">shumshu</AUni> -<AUni ws="qvm-x-akl">shumshu; shumsho</AUni> -<AUni ws="qvm-x-ame">shumshu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="ff029102-3adb-440f-a061-2c56e88db807"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">gol</AUni> -<AUni ws="qvm-x-acl">gol</AUni> -<AUni ws="qvm-x-akh">gol</AUni> -<AUni ws="qvm-x-akl">gol</AUni> -<AUni ws="qvm-x-ame">gol</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+gol</AUni> -<AUni ws="qvm-x-acl">+gol</AUni> -<AUni ws="qvm-x-akh">+gol</AUni> -<AUni ws="qvm-x-akl">+gol</AUni> -<AUni ws="qvm-x-ame">+gol</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.619" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="b7107e19-95da-4d7e-bef1-724c4f4cb536" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+gol</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="c20173d0-9f53-4504-b735-a8b68f595b7c" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="f78ac757-fee4-48fa-b766-f5f4a715efe4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +gol 
\entryTyp root 
\gENG goal 
\gSPN gol 
\e +gol 
\c N0 
\mp +FinalC 
\ach gol 
\akh gol 
\acl gol 
\akl gol 
\ame gol</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ff0379d4-2c69-4b74-a08b-9e7d5e6f867b" ownerguid="8f5e1e2c-6e74-4e23-8a6c-d77e4d169506"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="278ed943-d968-43c7-93d2-5e709d1f40a5" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="05125bd3-a015-4882-9d4e-d66a5e3d5ee0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ff03d695-2113-4e2c-85c9-acf51166b86d" ownerguid="84eb31d3-b932-4b3b-b945-85884ea856c7"> -<ExampleWords> -<AUni ws="en">be quite capable of, I wouldn't put it past him</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words indicate that someone will probably do something bad?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ff057800-b07c-4b82-b27d-99a1e7c01f14"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tribul</AUni> -<AUni ws="qvm-x-acl">tribul</AUni> -<AUni ws="qvm-x-akh">tribul</AUni> -<AUni ws="qvm-x-akl">tribul</AUni> -<AUni ws="qvm-x-ame">tribul</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+trebol</AUni> -<AUni ws="qvm-x-acl">+trebol</AUni> -<AUni ws="qvm-x-akh">+trebol</AUni> -<AUni ws="qvm-x-akl">+trebol</AUni> -<AUni ws="qvm-x-ame">+trebol</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.88" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="421cb230-6f22-4ce2-ac64-2b006841bb8b" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+trebol</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="31551e8e-a923-4e72-80a2-7946d9c92f10" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="31ae0337-0d31-4f61-a435-df4ed150cd4d" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +trebol 
\entryTyp root 
\gENG sticker 
\gSPN trTbol 
\e +trebol 
\c N0 
\mp +FinalC 
\ach tribul 
\akh tribul 
\acl tribul 
\akl tribul 
\ame tribul</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ff05c388-abf1-430f-a682-ca624a6e2c37" ownerguid="2b2bedd5-3f9c-4c18-a256-aa65ee19f15c"> -<ExampleWords> -<AUni ws="en">compatibility, harmony</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to the quality of being compatible?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ff08921e-f93c-4d2d-abda-b1fa76c32f18"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wata</AUni> -<AUni ws="qvm-x-acl">wata</AUni> -<AUni ws="qvm-x-akh">wata</AUni> -<AUni ws="qvm-x-akl">wata</AUni> -<AUni ws="qvm-x-ame">wata</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*wata.v</AUni> -<AUni ws="qvm-x-acl">*wata.v</AUni> -<AUni ws="qvm-x-akh">*wata.v</AUni> -<AUni ws="qvm-x-akl">*wata.v</AUni> -<AUni ws="qvm-x-ame">*wata.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.566" /> -<DateModified val="2022-10-10 21:19:54.714" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="4c1b8b94-8f47-4d33-b5f5-d5ae99521eb4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*wata.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="44080016-486f-4ae9-9a62-11ad198835ec" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6c5048db-06ef-43df-9d21-16ac9d6895da" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *wata.v 
\entryTyp root 
\gENG tie 
\gSPN amarrar 
\e *wata.v 
\c V2 
\ach wata 
\akh wata 
\acl wata 
\akl wata 
\ame wata 
\mcc *wata.v / ~_ BEN1 [q] 
\mcc *wata.v / ~_ BEN1 1 
\mcc *wata.v / ~_ INF SIM1.1</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="ff091e3d-b37a-40ff-b5ea-cabc997901d9" ownerguid="d14157fc-5db3-4e06-8b45-04a2318c5f00"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="ff0a16f2-c44d-4ed4-9520-c214acfb68e5" ownerguid="7558d071-a885-447b-9aa2-604c29669492"> -<Abbreviation> -<AUni ws="en">4.6.4</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.256" /> -<DateModified val="2022-9-23 16:55:8.256" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to ruling.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>37D Rule, Govern; 37 Control, Rule</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Rule</AUni> -</Name> -<Questions> -<objsur guid="41899487-6db7-43d8-b2d3-35a71755aa06" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="ff0a35c2-4708-4449-8de4-9ea47f0895ef" ownerguid="bb69d649-c392-464d-bb32-8cfae9e6df31"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="5486041d-362a-4e24-860e-5c52a32a31dc" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">where</AUni> -<AUni ws="es">donde</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1e5c56eb-0b35-498b-8c37-d56a8702b4b7" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="ff0af7ec-8fb1-4547-b9e7-4119cd4beafd" ownerguid="97dbafdc-5a68-4874-a018-66e5ad0badc3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="14246d05-1c39-4e4a-ab88-3aa7e5206529" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="ff0cec6c-b58a-4e53-852b-e9ddd4917c14" ownerguid="a6d2646f-f761-4717-9dca-6b4dd5747fdb"> -<Form> -<AUni ws="qvm-x-ach">gällu</AUni> -<AUni ws="qvm-x-acl">gällu; gällu; gällo</AUni> -<AUni ws="qvm-x-akh">gällu</AUni> -<AUni ws="qvm-x-akl">gällu; gällu; gällo</AUni> -<AUni ws="qvm-x-ame">gällu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="ff0de241-b514-4d47-9963-4d842419b117" ownerguid="ef943f35-c22e-4bac-8925-5e3eb9c5a286"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ff0ff20b-c429-4e33-9055-c1bd81c462ca" ownerguid="c1c1dcb4-8fe5-43ac-9b91-b2b2bc33de5b"> -<ExampleWords> -<AUni ws="en">bully, terrorist, blackmailer, extortionist</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to a person who threatens?</AUni> -</Question> -</rt> -<rt class="MoAffixAllomorph" guid="ff101bfe-eaef-4d5e-a8f3-6ef95497d652" ownerguid="3430f8ab-f9ad-47af-a0f0-315210361573"> -<Form> -<AUni ws="qvm-x-ach">tsi</AUni> -<AUni ws="qvm-x-acl">tsi</AUni> -<AUni ws="qvm-x-akh">tsi</AUni> -<AUni ws="qvm-x-akl">tsi</AUni> -<AUni ws="qvm-x-ame">tsi</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713dd-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="ff11f3fb-1713-499a-bdc6-16ce378260b1" ownerguid="73b3b724-9942-4bfb-bcd4-5d295743e67e"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemMsa" guid="ff12e15f-0259-469f-8b7c-8c3952dbffbe" ownerguid="16f07bf8-db51-4519-8707-956dbdaafc31"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiMorphBundle" guid="ff14a8d5-3ca7-458c-8ad6-d80d570e0651" ownerguid="ba3dfe4c-7db2-40f0-8994-eb010001f6c7"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pasa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pasa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pasa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pasa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pasa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="883ada6f-0bf2-4887-9c50-61a9cb250b4c" t="r" /> -</Morph> -<Msa> -<objsur guid="b7f64f45-98d1-4eac-9cd3-956bf92b1494" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="ff15ca90-26da-4bec-a64d-72d33a910873" ownerguid="f422a5b8-2f47-42d7-9641-0808908da9cf"> -<Form> -<AUni ws="qvm-x-ach">cama</AUni> -<AUni ws="qvm-x-acl">cama</AUni> -<AUni ws="qvm-x-akh">kama</AUni> -<AUni ws="qvm-x-akl">kama</AUni> -<AUni ws="qvm-x-ame">kama</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ff168a35-d3fa-440e-a8f1-547265c8772f" ownerguid="3420b36a-a033-4af9-a8c4-53f8221ee56e"> -<ExampleWords> -<AUni ws="en">toward, towards, away from, inward, inwards, outward, outwards</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate that something is moving away from something else?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ff16e610-376e-4724-9074-d10c85df3b2d" ownerguid="49c3474f-d0a5-485f-a96a-5bd3fd31509c"> -<Form> -<AUni ws="qvm-x-ach">criyenti; criyente</AUni> -<AUni ws="qvm-x-acl">criyenti; criyenti; criyente</AUni> -<AUni ws="qvm-x-akh">criyenti; criyente</AUni> -<AUni ws="qvm-x-akl">criyenti; criyenti; criyente</AUni> -<AUni ws="qvm-x-ame">criyenti; criyente</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ff1a35cf-0bd2-4111-8fcc-ddab1a27a13c" ownerguid="7e0bc050-5298-4808-af22-5e284526c652"> -<ExampleWords> -<AUni ws="en">trade (v), trade (n), exchange (v), exchange (n), swap, barter</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to trading one thing for another?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ff1ba929-bc37-48bd-83a9-c049ced3ef00"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sarampión; sarampion</AUni> -<AUni ws="qvm-x-acl">sarampión; sarampion</AUni> -<AUni ws="qvm-x-akh">sarampión; sarampion</AUni> -<AUni ws="qvm-x-akl">sarampión; sarampion</AUni> -<AUni ws="qvm-x-ame">sarampión; sarampion</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sarampión</AUni> -<AUni ws="qvm-x-acl">+sarampión</AUni> -<AUni ws="qvm-x-akh">+sarampión</AUni> -<AUni ws="qvm-x-akl">+sarampión</AUni> -<AUni ws="qvm-x-ame">+sarampión</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.459" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="62ba29a6-21a7-4074-a8ee-fb65717b7ab0" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sarampión</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="304682b3-bfc8-428d-a562-7905a2fceb0f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="22e4b16f-7bf6-474e-be3d-94a53d5c5353" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sarampión 
\entryTyp root 
\gENG measles 
\gSPN sarampion 
\e +sarampión 
\c N0 
\mp +FinalC 
\ach sarampión / _# 
\ach sarampion / ~_# 
\akh sarampión / _# 
\akh sarampion / ~_# 
\acl sarampión / _# 
\acl sarampion / ~_# 
\akl sarampión / _# 
\akl sarampion / ~_# 
\ame sarampión / _# 
\ame sarampion / ~_#</Run> -</AStr> -</Custom> -</rt> -<rt class="LexExampleSentence" guid="ff1f2216-b861-4380-92fd-56df1054a531" ownerguid="d7ed759b-e014-4cef-9c65-fe9aebf06cd7"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">Exo 28.32 Tsay rebëti canga gara casäcapa rebëtinnog.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="ff21808c-7bd2-47a0-85d8-c1503de2eeec" ownerguid="6903b844-79be-4e9d-a3c8-1ca2a385bf4f"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">John went to town <with> David.; We will go <with> you.; We wanted to go to town and John decided to go <along>.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">with, along</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words indicate someone who goes somewhere with another person?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ff2767a2-d657-4719-a16a-a746592af088"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">uyti</AUni> -<AUni ws="qvm-x-acl">uyti; uyte</AUni> -<AUni ws="qvm-x-akh">uyti</AUni> -<AUni ws="qvm-x-akl">uyti; uyte</AUni> -<AUni ws="qvm-x-ame">uyti</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*uyti.v</AUni> -<AUni ws="qvm-x-acl">*uyti.v</AUni> -<AUni ws="qvm-x-akh">*uyti.v</AUni> -<AUni ws="qvm-x-akl">*uyti.v</AUni> -<AUni ws="qvm-x-ame">*uyti.v</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.312" /> -<DateModified val="2022-10-10 21:19:54.713" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5cdc913a-8edc-4af5-82a3-e7b57ff2366c" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*uyti.v</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="640c18a6-8c6b-47f5-a4ca-c2d3a00fc320" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d412e13d-5923-4c7e-997d-eee5b8283a9a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *uyti.v 
\entryTyp root 
\gENG touch.toes 
\gSPN tocar.pies 
\e *uyti.v 
\c V1 
\mp +FinalI 
\ach uyti 
\akh uyti 
\acl uyti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\acl uyte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl uyti +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl uyte +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame uyti</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiMorphBundle" guid="ff291ff5-3f22-4867-a55d-d9ac54b79d9a" ownerguid="2b65d33b-e7f4-4772-88e2-2ea5722577d6"> -<Morph> -<objsur guid="bedad25b-fc5b-4617-b36e-79d2faffa907" t="r" /> -</Morph> -<Msa> -<objsur guid="443b6b4f-8d98-4d66-af8e-1da0e8bcfe65" t="r" /> -</Msa> -</rt> -<rt class="MoStemMsa" guid="ff29ca11-5122-447f-aa00-031d3cbfadc8" ownerguid="efd85e94-ea33-45d8-b169-397a34acd71d"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ff2b918f-2fd2-4fa6-bcb1-3a689e33a715" ownerguid="0551c37c-61f2-402d-9e8e-74fe3c0e645c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="6fa96f1e-b7d1-4881-82c7-246fd9d2eae1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ff340606-6d3e-42da-afe4-d27e1aca3d89" ownerguid="6ce98c1d-d86f-43b0-a401-9e2af0cf37a1"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ff35a9d1-298d-4fe1-949e-2d6342c189b0" ownerguid="9351d5b6-5a87-422a-9e82-ca6a0bacd3e9"> -<ExampleWords> -<AUni ws="en">feel calm, be at peace</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling calm?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ff36330d-8479-46d8-a6a5-dd86e292aee0"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tarje:ta</AUni> -<AUni ws="qvm-x-acl">tarje:ta</AUni> -<AUni ws="qvm-x-akh">tarje:ta</AUni> -<AUni ws="qvm-x-akl">tarje:ta</AUni> -<AUni ws="qvm-x-ame">tarje:ta</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tarjeta</AUni> -<AUni ws="qvm-x-acl">+tarjeta</AUni> -<AUni ws="qvm-x-akh">+tarjeta</AUni> -<AUni ws="qvm-x-akl">+tarjeta</AUni> -<AUni ws="qvm-x-ame">+tarjeta</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.825" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5e6677af-d3b6-4ede-b3ab-43277179d1cb" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tarjeta</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a7dad0bc-2ae4-469c-9d19-64baebf3a2ed" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ef8a6651-0213-45c2-a4ab-ced25803fdf1" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tarjeta 
\entryTyp root 
\gENG card 
\gSPN tarjeta 
\e +tarjeta 
\c N0 
\ach tarje:ta 
\akh tarje:ta 
\acl tarje:ta 
\akl tarje:ta 
\ame tarje:ta</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="ff385275-47c3-4b9c-a2e9-bcb77920bb28" ownerguid="10e92a20-75c9-488b-b0bd-cef70ce61a44"> -<PartOfSpeech> -<objsur guid="4459ff09-9ee0-4b50-8787-ae40fd76d3b7" t="r" /> -</PartOfSpeech> -</rt> -<rt class="WfiAnalysis" guid="ff39e472-fc70-4848-86f0-53a17ba96f65" ownerguid="6cea20b9-67a9-4e43-81b5-ac54e38743d6"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="ac9ea955-7d61-4468-9e9b-9a471cd2a12f" t="o" /> -<objsur guid="853b813d-62ea-4a45-bc47-829544a807b1" t="o" /> -<objsur guid="33ad2cea-7c3d-43a0-8ccb-2c5a1afd1fc8" t="o" /> -</MorphBundles> -</rt> -<rt class="MoStemAllomorph" guid="ff3b7b33-b572-4941-a01f-4020b2054567" ownerguid="c5ffe4fb-9a60-4ac0-b1d4-08c7d02111c6"> -<Form> -<AUni ws="qvm-x-ach">tirish</AUni> -<AUni ws="qvm-x-acl">tirish</AUni> -<AUni ws="qvm-x-akh">tirish</AUni> -<AUni ws="qvm-x-akl">tirish</AUni> -<AUni ws="qvm-x-ame">tirish</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="ff3bf4e5-9c82-4318-8e96-a83c87d83a2e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">rauwa</AUni> -<AUni ws="qvm-x-acl">rauwa</AUni> -<AUni ws="qvm-x-akh">rawwa</AUni> -<AUni ws="qvm-x-akl">rawwa</AUni> -<AUni ws="qvm-x-ame">rawwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*rawwa.n</AUni> -<AUni ws="qvm-x-acl">*rawwa.n</AUni> -<AUni ws="qvm-x-akh">*rawwa.n</AUni> -<AUni ws="qvm-x-akl">*rawwa.n</AUni> -<AUni ws="qvm-x-ame">*rawwa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.295" /> -<DateModified val="2022-10-14 23:44:17.427" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="7de6db85-49eb-42b1-8114-23f80facd064" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*rawwa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d52ba5f4-5019-480b-ae41-7d0cbb91fe7b" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="d1710c8d-8621-4f36-892d-68d0fff07b9b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *rawwa.n 
\entryTyp root 
\gENG separate 
\gSPN apartado 
\e *rawwa.n 
\c N0 
\ach rauwa 
\akh rawwa 
\acl rauwa 
\akl rawwa 
\ame rawwa</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ff3d89de-92db-4eb1-ab00-4f9a92720e16"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">wagshu</AUni> -<AUni ws="qvm-x-acl">wagshu; wagshu; wagsho</AUni> -<AUni ws="qvm-x-akh">waqshu</AUni> -<AUni ws="qvm-x-akl">waqshu; waqshu; waqsho</AUni> -<AUni ws="qvm-x-ame">waqshu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*waqshu</AUni> -<AUni ws="qvm-x-acl">*waqshu</AUni> -<AUni ws="qvm-x-akh">*waqshu</AUni> -<AUni ws="qvm-x-akl">*waqshu</AUni> -<AUni ws="qvm-x-ame">*waqshu</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.513" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="991cc143-ec42-4a5b-b285-cc4b313ac8b5" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*waqshu</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="709a3771-e459-4b5e-a8af-3ca0f9ccdf3d" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3a0c046f-8aaf-4b8d-a00e-9104515a8e66" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *waqshu 
\entryTyp root 
\gENG fang 
\gSPN colmillo 
\e *waqshu 
\c N0 
\ach wagshu 
\akh waqshu 
\acl wagshu / _# 
\acl wagshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl wagsho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl waqshu / _# 
\akl waqshu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl waqsho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame waqshu</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ff407389-1512-478e-824b-bd527d047076" ownerguid="0bce7afa-8c12-4b94-8603-ddbae7206c70"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1/V1 V2/V2 ONSHEV/ONSHEV BN/BN N0/N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">POL</AUni> -<AUni ws="es">CORT</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="e118995f-d03c-4537-8b1a-0955253a34a0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ff4165a4-179c-493f-a82a-d0dc2d496159" ownerguid="10a82711-8829-461a-b172-fc8fff3d555c"> -<ExampleWords> -<AUni ws="en">doghouse, kennel</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) Where are dogs kept?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ff43a873-509b-4153-a8b0-14d8bc9705ce" ownerguid="84a071b1-0505-4bc1-b0b5-1a10d3e02bd3"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="2b349640-9a0e-4099-a6d9-d023940a660c" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="0e800143-c986-40e6-85fb-a03ef133e856" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ff43b51d-8209-4c2a-9f50-6a6768737623" ownerguid="1a8322d7-cda9-41e5-a14b-f41274cb7157"> -<ExampleWords> -<AUni ws="en">right-handed</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe a person who usually uses his right hand?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ff440d45-87d3-4b28-a245-e31503248c38" ownerguid="307b6c74-3765-4e58-b29c-682a2033cd53"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">bed</AUni> -<AUni ws="es">tarima</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b6c4a65b-a4a3-4e8e-8533-260fe7e80011" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="ff49233f-cdff-4fcb-a40e-6302e00187c0" ownerguid="e0c705e8-7bf4-4049-a1a7-75766e22826e"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">large.basket</AUni> -<AUni ws="es">cesto</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="6aa0085b-a5ad-4d87-a25a-2604b00f0fa3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="ff4abcbc-a1bd-4859-a9e3-86526bfac271" ownerguid="7c03827f-0d7e-42d3-b2ae-23374e37dc6e"> -<Form> -<AUni ws="qvm-x-ach">purma</AUni> -<AUni ws="qvm-x-acl">purma</AUni> -<AUni ws="qvm-x-akh">purma</AUni> -<AUni ws="qvm-x-akl">purma</AUni> -<AUni ws="qvm-x-ame">purma</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexSense" guid="ff4b9148-4b70-4875-8921-a45834304c9b" ownerguid="772a9c40-4053-4381-9800-3eceba9a83d1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">little</AUni> -<AUni ws="es">poco</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="52b1d733-b40a-4073-b3e8-0d91e08d9eb3" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ff4cf94e-58a0-44b9-9ea0-97f5f02a2e73" ownerguid="6b19e828-f597-4d0d-b7a6-f52f3bbd041f"> -<ExampleWords> -<AUni ws="en">unwilling, unwillingness, forced, grudging, involuntary, loath, pressured, reluctant</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to being unwilling to do something?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ff4d5eb2-3071-4706-93be-c3cf84a9b206" ownerguid="cbc0a8f5-9cba-41d2-a7e5-565fbf09c8c4"> -<ExampleWords> -<AUni ws="en">(try to/can't) keep a straight face, stifle a laugh</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words refer to trying not to laugh?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="ff505092-6d88-4b5e-8095-04e471d7ad4c" ownerguid="1c3f8996-362e-4ee0-af02-0dd02887f6aa"> -<Abbreviation> -<AUni ws="en">4.9.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.296" /> -<DateModified val="2022-9-23 16:55:8.296" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to resurrection--life after death, or living again after dying.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Resurrection</AUni> -</Name> -<Questions> -<objsur guid="0f4fbd52-3554-4c74-8484-885e27daada7" t="o" /> -<objsur guid="7554b984-4964-458c-bd32-3b7bb0da41c5" t="o" /> -<objsur guid="14f3be78-60ca-4953-baa1-5895f45291c0" t="o" /> -<objsur guid="e6886b9f-ffbb-4092-a2ed-a92e29e0b57a" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="ff548205-e737-4f3b-8df7-eb02f93307cb" ownerguid="fe0f53d3-a585-4874-98f3-8e9b3424a84a"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ff55700a-b164-4412-ac46-9d5a5912615e" ownerguid="9e2b0c61-304e-4cad-9708-792bfde880b4"> -<ExampleWords> -<AUni ws="en">negotiate, negotiations, entreat</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to talking about stopping fighting?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ff561d68-ac7f-4837-aae1-e26712dd532d" ownerguid="85646774-8145-4553-b8a7-6927cd077908"> -<ExampleWords> -<AUni ws="en">harem</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What words refer to the followers in a group of animals?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ff5668f1-914e-49f9-b0c5-9f4e335745da" ownerguid="c6d74413-f956-410a-83a5-2837954e07f9"> -<Form> -<AUni ws="qvm-x-ach">cöru</AUni> -<AUni ws="qvm-x-acl">cöru; cöru; cöro</AUni> -<AUni ws="qvm-x-akh">cöru</AUni> -<AUni ws="qvm-x-akl">cöru; cöru; cöro</AUni> -<AUni ws="qvm-x-ame">cöru</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ff593f68-0f1e-4121-8bce-1db6165a362a" ownerguid="0a42fd83-3b30-4c85-bb68-f5132e9ffeee"> -<ExampleWords> -<AUni ws="en">armor, shield, guard</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to something used to protect someone?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ff5c0122-12ac-4dbe-9c15-5fdb108b690f" ownerguid="26118801-f6b1-45e1-98ce-63ba59372032"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="a5b9fee5-b51f-4a1d-b98a-74f772649e6e" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">underwear</AUni> -<AUni ws="es">calzoncillo</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="777f8781-ca32-4368-8cf8-f1c09fa80aaf" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="ff5edd31-5d75-47cf-97de-7bca50eb11e1" ownerguid="69e2e8d4-cbb2-4d74-b04f-0dd48994eae9"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">R0</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="dc8ca704-e714-4bb5-9ae7-b9dab779a25d" t="o" /> -</Examples> -<Gloss> -<AUni ws="en">search</AUni> -<AUni ws="es">buscar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="b01aefab-b2c4-48ef-9cc4-d1cddfcd4c2a" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemMsa" guid="ff5f4734-2c7c-42d4-bd26-41d4e52e68bc" ownerguid="70bf4aaa-4f1d-457a-9739-51dfdfc500a0"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="ff600281-2b8a-4605-972a-1426555b3dcf"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">na:tas</AUni> -<AUni ws="qvm-x-acl">na:tas</AUni> -<AUni ws="qvm-x-akh">na:tas</AUni> -<AUni ws="qvm-x-akl">na:tas</AUni> -<AUni ws="qvm-x-ame">na:tas</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*ña:tas</AUni> -<AUni ws="qvm-x-acl">*ña:tas</AUni> -<AUni ws="qvm-x-akh">*ña:tas</AUni> -<AUni ws="qvm-x-akl">*ña:tas</AUni> -<AUni ws="qvm-x-ame">*ña:tas</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.588" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e565b9f2-104b-43d4-8374-52d441702b68" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*ña:tas</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="ca78fb3a-94be-4132-a470-8afb8caec6b4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="4e48758e-fe1c-4501-862e-2b1ceed66a11" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *ña:tas 
\entryTyp root 
\gENG curds 
\gSPN 
\e *ña:tas 
\c N0 
\mp +FinalC 
\ach na:tas 
\akh na:tas 
\acl na:tas 
\akl na:tas 
\ame na:tas 
\i Jdg 5.25 Cuyaylapag tazonwan nätasniyog lëchita garargan.</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ff641728-c77a-42ad-abd3-fcd27733061b" ownerguid="e173f481-ec57-4d1c-b517-be38ccb038f5"> -<ExampleWords> -<AUni ws="en">resign from a group, quit</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to resigning from a group?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ff6420db-c02f-46bd-a22e-f341d7fd89df" ownerguid="71d57564-b6ff-4e98-b58b-24cb72af027c"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">head.band</AUni> -<AUni ws="es">vincha</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="5f657cc0-5fbc-48df-8ecb-440ee2b4f18d" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ff666854-13f5-472b-8aa6-3700884508d9" ownerguid="6736dafe-2916-40f6-b6b7-b6300100933b"> -<ExampleWords> -<AUni ws="en">to dream (v), a dream (n), have a dream</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to dreaming?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ff69764c-fc37-4a40-8b44-f51cbd61b242" ownerguid="c0bdd8e0-ecb8-4016-9bfd-5373e9538f30"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="ff69b8b8-8f9e-4d76-b3ce-1fd3c3b6d33d" ownerguid="c6361356-0b5c-44f1-8fe2-7f3c28d41dbd"> -<Form> -<AUni ws="qvm-x-ach">mostringu; mostringo</AUni> -<AUni ws="qvm-x-acl">mostringu; mostringu; mostringo</AUni> -<AUni ws="qvm-x-akh">mostringu; mostringo</AUni> -<AUni ws="qvm-x-akl">mostringu; mostringu; mostringo</AUni> -<AUni ws="qvm-x-ame">mostringu; mostringo</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ff6a2cad-80b3-4b7d-84db-bb4d65a41823" ownerguid="43cb3488-711b-4d9d-9d0e-03d0c1f6eb8b"> -<ExampleWords> -<AUni ws="en">be shamed, be ashamed, feel ashamed, feel disgraced, can't look someone in the face, lose face</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to feeling ashamed?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ff6b4fe8-6cd5-4d38-a190-509772f96b24"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">shoga</AUni> -<AUni ws="qvm-x-acl">shoga</AUni> -<AUni ws="qvm-x-akh">shoqa</AUni> -<AUni ws="qvm-x-akl">shoqa</AUni> -<AUni ws="qvm-x-ame">shuqa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*shuqa.n</AUni> -<AUni ws="qvm-x-acl">*shuqa.n</AUni> -<AUni ws="qvm-x-akh">*shuqa.n</AUni> -<AUni ws="qvm-x-akl">*shuqa.n</AUni> -<AUni ws="qvm-x-ame">*shuqa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.652" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c6f59e22-620a-48eb-bb64-097bd21f658e" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*shuqa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="a7abffb4-d22c-4e47-8cb0-b2f1cead8da6" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="befc073f-a3fb-4c56-bae0-5e954c6402f2" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *shuqa.n 
\entryTyp root 
\gENG 
\gSPN 
\e *shuqa.n 
\c N0 
\ach shoga 
\akh shoqa 
\acl shoga 
\akl shoqa 
\ame shuqa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="ff6bcf28-1b60-4d37-a08a-82a52749c97e" ownerguid="687a2807-8d9f-4fca-8ef0-4621e25827c8"> -<PartOfSpeech> -<objsur guid="46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" t="r" /> -</PartOfSpeech> -</rt> -<rt class="MoStemAllomorph" guid="ff6c4cc4-d4ea-4e99-aba9-9d7ea1944cbb" ownerguid="dc60204d-7c7f-4b73-8aa2-df87ae226f1f"> -<Form> -<AUni ws="qvm-x-ach">waysha</AUni> -<AUni ws="qvm-x-acl">waysha</AUni> -<AUni ws="qvm-x-akh">waysha</AUni> -<AUni ws="qvm-x-akl">waysha</AUni> -<AUni ws="qvm-x-ame">waysha</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="LexEntry" guid="ff6f23ca-18c4-4579-8f38-322b606f70c2"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ta:sa</AUni> -<AUni ws="qvm-x-acl">ta:sa</AUni> -<AUni ws="qvm-x-akh">ta:sa</AUni> -<AUni ws="qvm-x-akl">ta:sa</AUni> -<AUni ws="qvm-x-ame">ta:sa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+tasar</AUni> -<AUni ws="qvm-x-acl">+tasar</AUni> -<AUni ws="qvm-x-akh">+tasar</AUni> -<AUni ws="qvm-x-akl">+tasar</AUni> -<AUni ws="qvm-x-ame">+tasar</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.825" /> -<DateModified val="2022-10-10 21:18:47.208" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="cbcc4cc6-7856-4fe7-bf82-25a0a0e90741" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+tasar</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="9146d781-0c3a-4ca7-8eaa-cbe5248b60da" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="8442e9df-f5be-4b28-8621-865b99e288c4" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +tasar 
\entryTyp root 
\gENG 
\gSPN 
\e +tasar 
\c V1 
\ach ta:sa 
\akh ta:sa 
\acl ta:sa 
\akl ta:sa 
\ame ta:sa 
\i Lev 27.14 <<Pipis wayinta Jehovápag entregaptenga wayita ricaycur cüra täsanga ayca preciun cashgantapis. Tsay wayipa precionga cüra churashgannoglami canga.</Run> -</AStr> -</Custom> -</rt> -<rt class="WfiGloss" guid="ff7177bb-63ed-4ec5-a050-2b03da974cbf" ownerguid="4528c56e-618e-4fcb-abf2-d0e4be3a6a76"> -<Form> -<AUni ws="en">man</AUni> -<AUni ws="es">hombre</AUni> -</Form> -</rt> -<rt class="CmSemanticDomain" guid="ff736f67-197b-46b9-bc14-edbeb1fb3d5a" ownerguid="2b893d04-3450-4862-b046-7df6f87272f6"> -<Abbreviation> -<AUni ws="en">6.8.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.478" /> -<DateModified val="2022-9-23 16:55:8.478" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to having wealth.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>57A Have, Possess, Property, Owner</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Have wealth</AUni> -</Name> -<OcmCodes> -<Uni>420 Property; 510 Living Standards and Routines; 511 Standard of Living</Uni> -</OcmCodes> -<Questions> -<objsur guid="46a09730-6a7a-4c1b-a6cc-dfe791cc9a2a" t="o" /> -<objsur guid="e1bcd8ac-cd84-4bc6-a199-f1c1e0c0c16a" t="o" /> -<objsur guid="a453ab37-1b89-4eb1-942c-71fb7004953a" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="d9cb2e69-133d-4525-bca5-50b0f3402cbb" t="o" /> -<objsur guid="c1a70060-ba04-4f16-879e-5563492aee02" t="o" /> -<objsur guid="45993c48-3893-4d9e-96a3-b6b1ad160538" t="o" /> -<objsur guid="2e2a17ba-9d81-4a3d-8af5-96c8f0e39e7e" t="o" /> -<objsur guid="3022c764-ba88-41d0-94db-393312214f4e" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="CmSemanticDomain" guid="ff73fb69-7dac-43e2-876b-0ead264c3f2d" ownerguid="d01f1c51-522e-4b35-81b3-00577dbfa3bd"> -<Abbreviation> -<AUni ws="en">8.3.3.3.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.609" /> -<DateModified val="2022-9-23 16:55:8.609" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words describing something that is black.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Black</AUni> -</Name> -<Questions> -<objsur guid="883174ab-5a12-46a9-b8f8-73a7483c89d8" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="ff79e15f-55f4-496a-83f3-0ff39fbd5963"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">chegpa</AUni> -<AUni ws="qvm-x-acl">chegpa</AUni> -<AUni ws="qvm-x-akh">cheqpa</AUni> -<AUni ws="qvm-x-akl">cheqpa</AUni> -<AUni ws="qvm-x-ame">chiqpa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*triqpa.n</AUni> -<AUni ws="qvm-x-acl">*triqpa.n</AUni> -<AUni ws="qvm-x-akh">*triqpa.n</AUni> -<AUni ws="qvm-x-akl">*triqpa.n</AUni> -<AUni ws="qvm-x-ame">*triqpa.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.127" /> -<DateModified val="2022-10-14 23:44:17.430" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="0260c018-72bb-4e76-b9ae-adf11838d897" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*triqpa.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e13adfd9-6a87-4765-b067-82ccf814a8af" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="78710e49-f4c8-48c0-a274-ce992fd83c94" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *triqpa.n 
\entryTyp root 
\gENG 
\gSPN 
\e *triqpa.n 
\c N0 
\ach chegpa 
\akh cheqpa 
\acl chegpa 
\akl cheqpa 
\ame chiqpa</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ff7cb512-8565-48df-abdb-372e8cb1ef2c" ownerguid="ba1e8d2b-7d3e-4b65-a9be-ee1a4063c796"> -<ExampleWords> -<AUni ws="en">worry (n), alarm (n), burden, concern (n), trouble (n), care, stresses and strains, hang-up, complex, weight</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to something that causes someone to feel worried?</AUni> -</Question> -</rt> -<rt class="WfiAnalysis" guid="ff7cf41e-ec29-4e35-b0c8-d61b635ac6eb" ownerguid="044eef17-ef15-46c5-9ff5-83b31c637421"> -<Evaluations> -<objsur guid="fe84db44-36f3-4d77-b7bd-4b0f5e6200f1" t="r" /> -</Evaluations> -<MorphBundles> -<objsur guid="77eb540a-67bd-4059-be2c-4f0731b56412" t="o" /> -<objsur guid="9767d2aa-33d4-48da-b2b8-48ba06b6ed1b" t="o" /> -<objsur guid="0e021500-4bb3-4ecf-ab1c-758b4f6a20d8" t="o" /> -<objsur guid="7938c85a-e5ba-43fc-a118-7da61e94dbb5" t="o" /> -<objsur guid="83c94819-5ca1-4c20-acda-bcc2de209fc9" t="o" /> -<objsur guid="55fec2a4-d60a-4d8d-ac76-6f2aae21cbf9" t="o" /> -</MorphBundles> -</rt> -<rt class="CmSemanticDomain" guid="ff7e3abd-6810-4128-83c9-701b4925c2fe" ownerguid="0f883eb0-00a1-44cc-b719-97fb6ec145d4"> -<Abbreviation> -<AUni ws="en">5.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.335" /> -<DateModified val="2022-9-23 16:55:8.335" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for general words that refer to fire and for words referring to types of fire. These words may be specific for what is being burned (forest fire 'a fire burning a forest'), the size of the fire (inferno 'a very large hot fire'), or the place where the fire burns (hellfire 'the fire in hell').</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>2C Fire</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Fire</AUni> -</Name> -<OcmCodes> -<Uni>372 Fire</Uni> -</OcmCodes> -<Questions> -<objsur guid="373c0aac-c9ee-4cae-b815-3ae5b7007fea" t="o" /> -<objsur guid="33123a02-ba41-4da4-97fb-6d70fe47c79b" t="o" /> -<objsur guid="4ae945a2-b525-4176-8332-12f7ac476fbb" t="o" /> -<objsur guid="469222b3-f9a0-4d75-9fac-0ad1d5815eb0" t="o" /> -<objsur guid="b23e4e0c-056a-481a-8d94-5e3e26c52129" t="o" /> -<objsur guid="0b23a537-638d-4ac6-a513-bcd5951a55b4" t="o" /> -<objsur guid="8dfbfb1d-cb14-4a7a-8809-9aa11e1ad49f" t="o" /> -<objsur guid="32180913-9cd2-4f37-b617-5c140eb118e9" t="o" /> -<objsur guid="0f2df570-2f31-4a4e-8665-d67349bd8af7" t="o" /> -<objsur guid="835800ef-27b1-4ba2-9d04-e6ffc8a34952" t="o" /> -<objsur guid="92bde305-9fd2-48ae-b2a0-ac91a6e95744" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="1438c623-c4ce-4559-b71b-cfb86a71e6d7" t="o" /> -<objsur guid="9a456463-3c71-4f9a-8117-dc2fcb087bd3" t="o" /> -<objsur guid="514974a2-c2fd-4b25-a24d-2ff52fa3d798" t="o" /> -<objsur guid="2933a9c1-aa62-46fb-a03c-68aed7fae9b7" t="o" /> -<objsur guid="b93bdfa4-486c-44a0-8266-557ccdc78b31" t="o" /> -<objsur guid="9fc25175-3b4a-4248-bc7f-b86012ec584f" t="o" /> -<objsur guid="70164474-a65b-4506-9953-f26afb6b497a" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemMsa" guid="ff811eae-204b-4eca-a613-d553c655d0a4" ownerguid="1b1367f9-17e2-4350-ac4f-0e2ec6319fd8"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ff855b11-acd8-43a9-b2cd-bf119bdba46f" ownerguid="6d0022b9-a000-43e4-8547-bc2aea1a17ec"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">lead</AUni> -<AUni ws="es">dirigir</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="49f22388-0097-4c5c-8542-86947fcaef51" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="MoStemAllomorph" guid="ff8615bf-b685-4f9d-9137-c19cf4de6e81" ownerguid="66d91dc1-b4a4-4d05-a65b-d747dad3b1f7"> -<Form> -<AUni ws="qvm-x-ach">dëdu</AUni> -<AUni ws="qvm-x-acl">dëdu; dëdu; dëdo</AUni> -<AUni ws="qvm-x-akh">dëdu</AUni> -<AUni ws="qvm-x-akl">dëdu; dëdu; dëdo</AUni> -<AUni ws="qvm-x-ame">dëdu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiWordform" guid="ff8716a1-3ade-4505-b965-2dd3be3ac940"> -<Analyses> -<objsur guid="f37d803c-37b1-4641-8b10-6b566461d9f9" t="o" /> -</Analyses> -<Checksum val="-1162443852" /> -<Form> -<AUni ws="qvm-x-akh">markaykimanmi</AUni> -</Form> -<SpellingStatus val="0" /> -</rt> -<rt class="LexSense" guid="ff877ccd-2f16-4d3d-8b3d-ee7a0968f239" ownerguid="6f416602-9185-48c0-ad76-3e5b1caf9134"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">NOSUFF</Run> -</AStr> -</Custom> -<Examples> -<objsur guid="1de3efe7-490c-4167-91fe-0fe02118824f" t="o" /> -<objsur guid="d1d1f4ac-c434-4c28-a599-53f795b97815" t="o" /> -</Examples> -<MorphoSyntaxAnalysis> -<objsur guid="7ecafaff-c718-474f-8195-c522be4672e0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="WfiMorphBundle" guid="ff87faa0-9a20-4808-977d-e7033ae0ce60" ownerguid="2129b102-5acc-4824-ad82-f0663cced42a"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">n</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">n</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">n</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">n</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">n</Run> -</AStr> -</Form> -<Morph> -<objsur guid="ecbfa315-02ad-48d9-9bf9-dc0b8696f683" t="r" /> -</Morph> -<Msa> -<objsur guid="ca465905-9975-4c86-9a1a-eaedda2e6838" t="r" /> -</Msa> -</rt> -<rt class="LexSense" guid="ff8b2636-71b3-40eb-bf61-469cdae68776" ownerguid="e29cef12-4b53-42b3-b899-a300fce20ceb"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="6aea2af4-de9f-44a4-a185-3fa6230f57bb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="LexSense" guid="ff8e17b3-5123-41f2-ba30-895f7d434fb0" ownerguid="28c8e92f-eb09-47be-a59e-0d376240bfb2"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">calf.of.leg</AUni> -<AUni ws="es">paltorrilla</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dd3a6b8a-7812-47cf-b3ce-a29b9139c7c0" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ff8eb582-0f8a-4b45-8e80-979fcd4a1076" ownerguid="e9ef98d9-8844-4804-88a5-614493d150f5"> -<ExampleWords> -<AUni ws="en">unaware, mindless, unmindful, bored, disregard, flighty, heedless, oblivious</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe someone who is not alert?</AUni> -</Question> -</rt> -<rt class="LexSense" guid="ff91a142-b0cb-4115-be46-accb363edee8" ownerguid="df864d59-5705-445e-9e26-d328c5c1d6b1"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V1</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="es">brillar</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="de0fc899-d3f6-4f4d-9b70-56210ed0d0fb" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ff97e9ef-d81d-4140-84d2-7263107abac9" ownerguid="1148684a-0f44-4b5a-9e3e-3823163cd4a1"> -<ExampleWords> -<AUni ws="en">well publicized</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words describe something that has been communicated to many people?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ff982186-e509-4a56-8a54-b26476900954" ownerguid="830d8cda-37a3-4f9d-ac02-4ec5aac52794"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="ff989f79-e78b-4864-8615-6fd902ed236b"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">mashwa</AUni> -<AUni ws="qvm-x-acl">mashwa</AUni> -<AUni ws="qvm-x-akh">mashwa</AUni> -<AUni ws="qvm-x-akl">mashwa</AUni> -<AUni ws="qvm-x-ame">mashwa</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*mashwa</AUni> -<AUni ws="qvm-x-acl">*mashwa</AUni> -<AUni ws="qvm-x-akh">*mashwa</AUni> -<AUni ws="qvm-x-akl">*mashwa</AUni> -<AUni ws="qvm-x-ame">*mashwa</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.356" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="48d0b064-615b-48bc-bf1c-ad4fd7481497" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*mashwa</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="634a59bc-58b3-4051-9f07-870cbdcb66fe" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="81780f92-148b-4033-b369-f85630b93120" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *mashwa 
\entryTyp root 
\gENG tuber 
\gSPN tubérculo 
\e *mashwa 
\c N0 
\ach mashwa 
\akh mashwa 
\acl mashwa 
\akl mashwa 
\ame mashwa</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="ff99fb36-82fd-4bf5-b5e8-b2e62b37745a" ownerguid="dc76b15c-9f76-4767-89af-5ea560347387"> -<Form> -<AUni ws="qvm-x-ach">träpu</AUni> -<AUni ws="qvm-x-acl">träpu; träpu; träpo</AUni> -<AUni ws="qvm-x-akh">träpu</AUni> -<AUni ws="qvm-x-akl">träpu; träpu; träpo</AUni> -<AUni ws="qvm-x-ame">träpu</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="ff9dfc70-526d-405e-b613-5a2a21c1b2d8" ownerguid="5bb29704-fe0f-4594-9622-ce0aa42b93c8"> -<Abbreviation> -<AUni ws="en">6.2.7</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.446" /> -<DateModified val="2022-9-23 16:55:8.446" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to farm workers.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Farm worker</AUni> -</Name> -<Questions> -<objsur guid="a449e95e-9fd7-4fc7-aafe-7772634bc683" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="ff9e9e5b-7283-4b36-8226-074950eb5e66" ownerguid="051cd29d-3e56-4591-bae0-b20af0568939"> -<Form> -<AUni ws="qvm-x-ach">tini</AUni> -<AUni ws="qvm-x-acl">tini; tine</AUni> -<AUni ws="qvm-x-akh">tini</AUni> -<AUni ws="qvm-x-akl">tini; tine</AUni> -<AUni ws="qvm-x-ame">tini</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ffa04710-55e8-4483-a84c-3371f0edc7d1" ownerguid="cb99a086-8c6d-4f90-81db-6afa69ae5455"> -<ExampleWords> -<AUni ws="en">bark, bay, howl, yap, growl, snap, snarl, whimper, whine, woof woof, yelp, yowl</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(6) What sounds do dogs make?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="ffa13b7d-5eaa-43be-8518-51d9aa08f321" ownerguid="fb84538a-17a8-4adc-8d50-e2b66f8e4099"> -<Abbreviation> -<AUni ws="en">8.1.1.5</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.559" /> -<DateModified val="2022-9-23 16:55:8.559" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to a group of a particular number of things or people (solo, duo, trio; alone, in threes).</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>60G Pair, Group</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Numbered group</AUni> -</Name> -<Questions> -<objsur guid="9e048ad4-98db-4cd5-a69f-95736ac03494" t="o" /> -<objsur guid="c1bb6bd2-e698-42db-b211-bd2ae3b2e004" t="o" /> -<objsur guid="73cb307a-6715-4fc5-861b-0802b2e79b16" t="o" /> -<objsur guid="c5fd2320-bc0d-42fa-b741-36d0d40d42f7" t="o" /> -<objsur guid="7daee950-f881-49d8-8d2a-a5586910a5ed" t="o" /> -<objsur guid="293c1d6f-c376-4706-9f93-dc2c7e43fe2c" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexExampleSentence" guid="ffa1b32f-d047-40e7-a21f-b4ecf4ddecdc" ownerguid="6707fef7-4158-4126-9090-a8e55fc36eb3"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">PSA 137.5 ¡Ay Jerusalén marcalä marca!</Run> -</AStr> -</Example> -</rt> -<rt class="MoStemMsa" guid="ffa3586c-8480-4497-ab7d-1eeac6275f15" ownerguid="d5a0d5ca-90e4-4617-bf2e-25ef8b6c692d"> -<PartOfSpeech> -<objsur guid="54712931-442f-42d5-8634-f12bd2e310ce" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexEntry" guid="ffa9ada0-ed30-4646-9042-f1596d41eb9d"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">panal</AUni> -<AUni ws="qvm-x-acl">panal</AUni> -<AUni ws="qvm-x-akh">panal</AUni> -<AUni ws="qvm-x-akl">panal</AUni> -<AUni ws="qvm-x-ame">panal</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+panal</AUni> -<AUni ws="qvm-x-acl">+panal</AUni> -<AUni ws="qvm-x-akh">+panal</AUni> -<AUni ws="qvm-x-akl">+panal</AUni> -<AUni ws="qvm-x-ame">+panal</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.679" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="ab24d393-1943-4f75-bf12-da361af26fb4" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+panal</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="57810bbe-14e0-41c3-8186-888a0be882c4" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ebf8e5f1-1a28-4216-a1d5-6b12e9d8347c" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +panal 
\entryTyp root 
\gENG 
\gSPN 
\e +panal 
\c N0 
\mp +FinalC 
\ach panal 
\akh panal 
\acl panal 
\akl panal 
\ame panal 
\i SNG 5.1 Panalnincho caycag mishquitapis yawaycänami.</Run> -</AStr> -</Custom> -</rt> -<rt class="LexEntry" guid="ffad98ad-9af2-43bf-99e3-d54f0b9222e5"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">sa:bila</AUni> -<AUni ws="qvm-x-acl">sa:bila</AUni> -<AUni ws="qvm-x-akh">sa:bila</AUni> -<AUni ws="qvm-x-akl">sa:bila</AUni> -<AUni ws="qvm-x-ame">sa:bila</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+sa:bila</AUni> -<AUni ws="qvm-x-acl">+sa:bila</AUni> -<AUni ws="qvm-x-akh">+sa:bila</AUni> -<AUni ws="qvm-x-akl">+sa:bila</AUni> -<AUni ws="qvm-x-ame">+sa:bila</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.409" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="d06df899-104d-461a-917c-fa33fb84ff79" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+sa:bila</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="499b706b-3582-442f-80b2-9a165b41cb28" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="ab49b8b1-a7e4-4f8a-9aaa-44a3232d9f4b" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +sa:bila 
\entryTyp root 
\gENG 
\gSPN 
\e +sa:bila 
\c N0 
\ach sa:bila 
\akh sa:bila 
\acl sa:bila 
\akl sa:bila 
\ame sa:bila</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="ffaf62b1-b7b9-4b25-a392-28ba047c95ab" ownerguid="6dc38373-e5b8-49e7-a672-abaa1df9c720"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexSense" guid="ffb2487d-dc85-4912-b005-ead6faf74e53" ownerguid="6a1c2ce5-bb21-4cb6-85f3-fa13f96131a4"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="9439cfe8-62b3-4633-8da8-4a4b46911aa1" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ffb4dc8f-5cf6-4d86-bff0-7f1168311452" ownerguid="eaed8c63-9f97-4116-927c-19f364a99e72"> -<ExampleWords> -<AUni ws="en">unfriendly, unwelcoming, inhospitable, impersonal, forbidding</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words describe a place or situation where people are unfriendly?</AUni> -</Question> -</rt> -<rt class="LexExampleSentence" guid="ffb4ed7e-81d3-41a9-b1fd-e6949e2f42b5" ownerguid="a87beacd-074d-4d28-8891-83240a67eafd"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">1KI 3.7 Rey caycarpis nogaga mözularag captë manami experienciä canragtsu.</Run> -</AStr> -</Example> -</rt> -<rt class="CmDomainQ" guid="ffb868ff-1b3d-4d5b-a5d0-d7e0251350fc" ownerguid="9d865347-6656-4ab7-8613-bf2e8bc53aa7"> -<ExampleWords> -<AUni ws="en">injured, harmed, wounded</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(11) What words describe someone who has been injured?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ffb9a35e-c3be-41da-bc4a-49a735df7cc4" ownerguid="975d0109-1bba-4b0e-85b8-2c6b51c8e074"> -<ExampleWords> -<AUni ws="en">seat, perch, place</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(9) What words refer to the place where you sit?</AUni> -</Question> -</rt> -<rt class="MoStemMsa" guid="ffba1b72-6b52-4cf6-acde-b99524990e0f" ownerguid="179f5764-2b71-42d0-81d0-332e299ce94c"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="LexExampleSentence" guid="ffba3a49-3ca4-4b71-8e80-40c5f868e32d" ownerguid="e53e7c85-eecc-4720-956c-022def3cec70"> -<Example> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">GEN 34.8 Tsaymi paykunawan parlar Hamor kaynoq nirqan: <<Tsurï Shequemmi panikipaq pasaypa namurädu kashpan löcutashqa puriykan.</Run> -</AStr> -</Example> -</rt> -<rt class="LexEntry" guid="ffc38b37-1639-4ff4-bf8d-df362978691e"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">tipi</AUni> -<AUni ws="qvm-x-acl">tipi; tipi; tipe</AUni> -<AUni ws="qvm-x-akh">tipi</AUni> -<AUni ws="qvm-x-akl">tipi; tipi; tipe</AUni> -<AUni ws="qvm-x-ame">tipi</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*tipi.n</AUni> -<AUni ws="qvm-x-acl">*tipi.n</AUni> -<AUni ws="qvm-x-akh">*tipi.n</AUni> -<AUni ws="qvm-x-akl">*tipi.n</AUni> -<AUni ws="qvm-x-ame">*tipi.n</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.916" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="5218f713-3c31-45c9-a7ab-096252a8001d" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*tipi.n</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="77d1a3a6-f0e5-41de-b95b-8058c9d78412" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="efb2eedb-2ca6-416a-a786-701bf024220a" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *tipi.n 
\entryTyp root 
\gENG flaco 
\gSPN skinny 
\e *tipi.n 
\c N0 
\mp +FinalI 
\ach tipi 
\akh tipi 
\acl tipi / _# 
\acl tipi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl tipe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl tipi / _# 
\akl tipi +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl tipe +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame tipi</Run> -</AStr> -</Custom> -</rt> -<rt class="LexSense" guid="ffc42416-55ff-40a9-a36b-f947d7fe3816" ownerguid="c1bb19fb-b8e4-4b92-afe3-296a0b05de46"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">V2</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalysis> -<objsur guid="046e2c59-d603-4ba5-a28b-d387444b56db" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ffc4d4b8-c2a2-4202-9b97-b57df2970f51" ownerguid="615674ac-8158-4089-ae70-b55472fd279b"> -<ExampleWords> -<AUni ws="en">generation, age group, the under-(ten)s, the over-(ten)s</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to all the people of the same age?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ffc8ed53-dc2e-430f-84b7-30a0910bfb61"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">liriu; lirio</AUni> -<AUni ws="qvm-x-acl">liriu; liriu; lirio</AUni> -<AUni ws="qvm-x-akh">liriu; lirio</AUni> -<AUni ws="qvm-x-akl">liriu; liriu; lirio</AUni> -<AUni ws="qvm-x-ame">liriu; lirio</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+lirio</AUni> -<AUni ws="qvm-x-acl">+lirio</AUni> -<AUni ws="qvm-x-akh">+lirio</AUni> -<AUni ws="qvm-x-akl">+lirio</AUni> -<AUni ws="qvm-x-ame">+lirio</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.102" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="e392fb6f-a130-4c0f-87e1-77159fed4f70" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+lirio</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="d5bbf112-aefe-4f21-aeb0-befed3980dcf" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="0e6424bf-a4ac-44b5-a4c2-bd41edf124d6" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +lirio 
\entryTyp root 
\gENG 
\gSPN 
\e +lirio 
\c N0 
\ach liriu / ~_# 
\ach lirio / _# 
\akh liriu / ~_# 
\akh lirio / _# 
\acl liriu / ~_# 
\acl liriu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl lirio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl liriu / ~_# 
\akl liriu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl lirio +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame liriu / ~_# 
\ame lirio / _#</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemMsa" guid="ffcafdc9-153b-4151-8195-fec594a0b004" ownerguid="127527f1-046d-452b-9a96-918251333a9a" /> -<rt class="MoStemAllomorph" guid="ffcb4402-f8c1-4d96-915d-ce28cfdc6134" ownerguid="16ed4be7-55ee-44ba-af48-75991b621fa3"> -<Form> -<AUni ws="qvm-x-ach">apënas</AUni> -<AUni ws="qvm-x-acl">apënas</AUni> -<AUni ws="qvm-x-akh">apënas</AUni> -<AUni ws="qvm-x-akl">apënas</AUni> -<AUni ws="qvm-x-ame">apënas</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmSemanticDomain" guid="ffcc57f8-6c6d-4bf4-85be-9220ca7c739d" ownerguid="50db27b5-89eb-4ffb-af82-566f51c8ec0b"> -<Abbreviation> -<AUni ws="en">2.6.1</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.63" /> -<DateModified val="2022-9-23 16:55:8.63" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to the state of being married.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>34J Marriage, Divorce</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Marriage</AUni> -</Name> -<OcmCodes> -<Uni>580 Marriage; 581 Basis of Marriage; 582 Regulation of Marriage; 583 Mode of Marriage; 587 Secondary Marriages; 588 Special Unions and Marriages; Irregular Unions; 595 Polygamy</Uni> -</OcmCodes> -<Questions> -<objsur guid="19ed8a2a-fe40-4a3e-8568-fac0dda5c6f6" t="o" /> -<objsur guid="9073bf47-5663-4174-9bb4-b3cbcadb5bf5" t="o" /> -<objsur guid="020d726c-b506-461b-a642-4ccf2163a2b2" t="o" /> -<objsur guid="d8db3d52-ca2a-438d-a513-9c45281fa106" t="o" /> -<objsur guid="01fd1434-bf0b-4053-b9b7-48797c543328" t="o" /> -<objsur guid="2f1224c9-015a-480f-a769-7c88460b8b1d" t="o" /> -<objsur guid="e27b45b3-4b86-4b05-8182-9e191d4b81f8" t="o" /> -<objsur guid="a08cd252-a2e0-4b35-b111-c97a038905fb" t="o" /> -<objsur guid="912f0b1f-974d-4fb6-8f2f-b32da1a8b507" t="o" /> -<objsur guid="0eb54edd-151d-46d9-946a-a60e161e7e61" t="o" /> -<objsur guid="17143a61-c6db-49c8-8d7e-15a57ef92816" t="o" /> -<objsur guid="076d6df2-1d98-49ac-81ee-9c739d8f5760" t="o" /> -<objsur guid="4459a3cc-68db-4e86-9065-b28d8087dc3e" t="o" /> -</Questions> -<RelatedDomains> -<objsur guid="04370e1f-25aa-4d9e-97c5-de9b59156666" t="r" /> -</RelatedDomains> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="2e95bd1e-82f0-461d-8ca6-b5f1ce1fb180" t="o" /> -<objsur guid="ed4a2ca6-c03c-4c72-9431-b72fb7294b8f" t="o" /> -<objsur guid="f7e625a6-53e3-4f9b-8764-119e3906f5cf" t="o" /> -<objsur guid="f6e416b3-50b1-4e48-8a39-2998725b1c79" t="o" /> -<objsur guid="edbfc928-049c-4cb7-8c88-8e8af38287c7" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="MoStemAllomorph" guid="ffccb1f1-676e-4680-9e42-67cccef75c53" ownerguid="574fa2c8-6204-461d-815c-fee1f435af70"> -<Form> -<AUni ws="qvm-x-ach">garpu; garpa</AUni> -<AUni ws="qvm-x-acl">garpu; garpo; garpa</AUni> -<AUni ws="qvm-x-akh">qarpu; qarpa</AUni> -<AUni ws="qvm-x-akl">qarpu; qarpo; qarpa</AUni> -<AUni ws="qvm-x-ame">qarpu; qarpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoInflAffMsa" guid="ffd00358-88ae-49b0-96b8-10366deaba2f" ownerguid="671eea84-1073-47da-bcf2-07bf99e93a1f"> -<PartOfSpeech> -<objsur guid="a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmSemanticDomain" guid="ffd0547e-e537-4614-ac3f-6d8cd3351f33" ownerguid="944cf5af-469e-4b03-878f-a05d34b0d9f6"> -<Abbreviation> -<AUni ws="en">1.6.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.1" /> -<DateModified val="2022-9-23 16:55:8.1" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for the parts of animals, especially those of mammals.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Parts of an animal</AUni> -</Name> -<OcmCodes> -<Uni>136a Parts</Uni> -</OcmCodes> -<Questions> -<objsur guid="9893c3a4-5bf2-46a1-b3cf-d5805085cbf9" t="o" /> -<objsur guid="c21db54e-3565-425f-bc21-11f8452fd1c1" t="o" /> -<objsur guid="530c3471-09c7-4dcb-b475-c853818e3c36" t="o" /> -<objsur guid="91f57f71-a0a8-4406-807c-23f5498cc6f2" t="o" /> -<objsur guid="9ef6802f-74ed-437b-b717-3dc26c378279" t="o" /> -<objsur guid="1be67f0c-d2f3-41bb-9c6f-d82ab948d427" t="o" /> -<objsur guid="c59cf5e5-7169-4323-83f3-5e479f412f43" t="o" /> -</Questions> -<SortSpec val="0" /> -<SubPossibilities> -<objsur guid="e6221c7a-4608-4114-ba9f-532a3b943113" t="o" /> -<objsur guid="203f46d2-f0d0-4dda-8d1a-ddc15065b005" t="o" /> -<objsur guid="73f3bd83-c9a5-4613-aeb1-0c5076d4850e" t="o" /> -<objsur guid="0a37e7d5-b10e-4f1d-baf0-e71668425b3e" t="o" /> -<objsur guid="5d72af95-facd-4be2-80e9-37528f0f34b5" t="o" /> -</SubPossibilities> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="ffd43dde-bdae-409a-9cf5-2b5ade3b7a57"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">ganra</AUni> -<AUni ws="qvm-x-acl">ganra</AUni> -<AUni ws="qvm-x-akh">qanra</AUni> -<AUni ws="qvm-x-akl">qanra</AUni> -<AUni ws="qvm-x-ame">qanra</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">*qanra</AUni> -<AUni ws="qvm-x-acl">*qanra</AUni> -<AUni ws="qvm-x-akh">*qanra</AUni> -<AUni ws="qvm-x-akl">*qanra</AUni> -<AUni ws="qvm-x-ame">*qanra</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:23.82" /> -<DateModified val="2022-10-14 23:44:17.434" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="46e45d5d-74ee-4f0b-b580-81a527ac3b92" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">*qanra</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="dc00e2bb-a4fd-4f96-b3ba-924f9bf234b3" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6ff08c23-6ff3-430d-8d41-7e884b0ed3ff" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx *qanra 
\entryTyp root 
\gENG dirty 
\gSPN sucio 
\e *qanra 
\c N0 
\ach ganra 
\akh qanra 
\acl ganra 
\akl qanra 
\ame qanra 
\i shimilayquita ganrataycatsiy 
\mcc *qanra / ~_ GEN</Run> -</AStr> -</Custom> -</rt> -<rt class="MoStemAllomorph" guid="ffd819a0-bc8d-4105-adf3-4ec72a5f055e" ownerguid="7be41ec9-58ec-4a22-9af5-5c66dce6b1d4"> -<Form> -<AUni ws="qvm-x-ach">sotäna</AUni> -<AUni ws="qvm-x-acl">sotäna</AUni> -<AUni ws="qvm-x-akh">sotäna</AUni> -<AUni ws="qvm-x-akl">sotäna</AUni> -<AUni ws="qvm-x-ame">sotäna</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="WfiMorphBundle" guid="ffd921a7-d7e2-4dbf-8f77-42933bd522da" ownerguid="9d8fbadd-6532-4d95-9f36-092fa56d5c57"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">shga</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">shga</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">shqa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">shqa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">shqa</Run> -</AStr> -</Form> -<Morph> -<objsur guid="c0a8d088-78b3-40e6-a4ea-e43393fea3a3" t="r" /> -</Morph> -<Msa> -<objsur guid="3503ea2c-6d6a-40bd-ab49-d2f29a6d368a" t="r" /> -</Msa> -</rt> -<rt class="MoStemAllomorph" guid="ffd9c2c3-b01b-42a6-bb03-12c9f13215f0" ownerguid="880d12b1-fa64-4a4b-801d-c3b45f43792f"> -<Form> -<AUni ws="qvm-x-ach">alumnu; alumno</AUni> -<AUni ws="qvm-x-acl">alumnu; alumnu; alumno</AUni> -<AUni ws="qvm-x-akh">alumnu; alumno</AUni> -<AUni ws="qvm-x-akl">alumnu; alumnu; alumno</AUni> -<AUni ws="qvm-x-ame">alumnu; alumno</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e8-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="MoStemMsa" guid="ffdb3ad3-853a-4fd1-8180-c83f50ed3dfe" ownerguid="6ea3e2ec-6988-49b0-9520-2ed73fbad920"> -<PartOfSpeech> -<objsur guid="7a161b46-6c84-4aea-9bb7-4af1aaee8790" t="r" /> -</PartOfSpeech> -</rt> -<rt class="CmDomainQ" guid="ffdcc2df-5295-4883-bd9f-9f06bcd69c55" ownerguid="738a09a5-59df-40f9-8a4e-176e00d03bbf"> -<ExampleWords> -<AUni ws="en">artillery, cannon, bazooka, catapult, howitzer, mortar</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(12) What types of artillery are there?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ffdce87f-8f49-4afd-a98f-5a056b832fea"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">o:chu</AUni> -<AUni ws="qvm-x-acl">o:chu; o:chu; o:cho</AUni> -<AUni ws="qvm-x-akh">o:chu</AUni> -<AUni ws="qvm-x-akl">o:chu; o:chu; o:cho</AUni> -<AUni ws="qvm-x-ame">o:chu</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+ocho</AUni> -<AUni ws="qvm-x-acl">+ocho</AUni> -<AUni ws="qvm-x-akh">+ocho</AUni> -<AUni ws="qvm-x-akl">+ocho</AUni> -<AUni ws="qvm-x-ame">+ocho</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:22.618" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="554f6c93-2257-433d-b932-71739259fbf8" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+ocho</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="e9c62780-0c0a-446b-bfda-f371b8a36458" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="6987e513-39a8-40ea-b56f-fd5aabf79cc5" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +ocho 
\entryTyp root 
\gENG eight 
\gSPN ocho 
\e +ocho 
\c N0 
\ach o:chu 
\akh o:chu 
\acl o:chu / _# 
\acl o:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl o:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl o:chu / _# 
\akl o:chu +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl o:cho +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame o:chu</Run> -</AStr> -</Custom> -</rt> -<rt class="CmDomainQ" guid="ffe1a2e4-d00b-4396-bfba-561c9e0c8742" ownerguid="b5499348-b8ca-4fae-8486-b23863560ae5"> -<ExampleWords> -<AUni ws="en">chance, luck, fortune, fate</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to something happening by chance or luck?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ffe32965-565f-4aa1-99d2-893900a089fe" ownerguid="a6797fd1-e368-422b-9710-96e0af39552d"> -<ExampleWords> -<AUni ws="en">meet a standard, be acceptable, be perfect, be normal</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(1) What words refer to being acceptable?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="ffe3de16-b845-4c64-ac84-cdc34140a78b" ownerguid="2e97b83d-1152-473f-9cbe-347f0655041a"> -<ExampleWords> -<AUni ws="en">plug your ears, cover your ears, stuff cotton in your ears, stick your fingers in your ears, earplugs</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(7) What do people do to their ears so they won't hear something?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="ffe47176-e669-42a2-ad3e-a890d25762fc" ownerguid="06980f1f-2d2d-48e9-b382-e0d3b4f4822b"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">pa</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">pa</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">pa</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">pa</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">pa</Run> -</AStr> -</Form> -</rt> -<rt class="LexSense" guid="ffe51b1e-fc2e-483e-889f-8eaba3cd361a" ownerguid="9003a1d0-1a36-4d51-91c3-b55e655aa606"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">good</AUni> -<AUni ws="es">bueno</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="1d16a9b6-f94c-4b58-9c20-811089209ed2" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ffe6d425-58ab-4415-96cd-790b867db9c1" ownerguid="8bdf4847-903b-4af6-9553-3cfab65de516"> -<ExampleSentences> -<AStr ws="en"> -<Run ws="en">Two plus two <is> four.; Two added to two <equals> four.; If you add two and two, you <get> four.</Run> -</AStr> -</ExampleSentences> -<ExampleWords> -<AUni ws="en">is, equals, get</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words indicate the answer in an equation?</AUni> -</Question> -</rt> -<rt class="LexEntry" guid="ffe6d90a-c302-4d64-a075-c6efdb2caacd"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">va:du</AUni> -<AUni ws="qvm-x-acl">va:du; va:du; va:do</AUni> -<AUni ws="qvm-x-akh">va:du</AUni> -<AUni ws="qvm-x-akl">va:du; va:du; va:do</AUni> -<AUni ws="qvm-x-ame">va:du</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+vado</AUni> -<AUni ws="qvm-x-acl">+vado</AUni> -<AUni ws="qvm-x-akh">+vado</AUni> -<AUni ws="qvm-x-akl">+vado</AUni> -<AUni ws="qvm-x-ame">+vado</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:24.332" /> -<DateModified val="2022-10-14 23:44:17.428" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="f02dff51-ab5b-4426-8547-916f86b6e390" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+vado</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="5f033937-0a4e-4d74-939a-68a70aed197f" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="3c7e09d7-888d-4950-869f-c29aaf1a4364" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +vado 
\entryTyp root 
\gENG ford 
\gSPN vado 
\e +vado 
\c N0 
\ach va:du 
\akh va:du 
\acl va:du / _# 
\acl va:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\acl va:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\akl va:du / _# 
\akl va:du +/ ~_ ([SuffixesResonant])[SuffixesWhichLowerDM] / ~_# 
\akl va:do +/ _ ([SuffixesResonant])[SuffixesWhichLowerDM] 
\ame va:du</Run> -</AStr> -</Custom> -</rt> -<rt class="CmSemanticDomain" guid="ffe84c4f-8c38-4b84-ac36-e79ffadbd426" ownerguid="0f7c4d2f-ed94-49ba-a91c-fba36193f35a"> -<Abbreviation> -<AUni ws="en">6.8.4.3.3</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.488" /> -<DateModified val="2022-9-23 16:55:8.488" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to something being free of charge--something you can have without paying for it.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<Name> -<AUni ws="en">Free of charge</AUni> -</Name> -<Questions> -<objsur guid="c8ea8130-3308-4dc8-86e7-3e9bbb0691e3" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexSense" guid="ffe8fe5b-2e84-4bf8-973a-d9d23a2c8beb" ownerguid="43eb9bce-ca1f-4781-ba36-6f59bb7012e8"> -<Custom name="cat"> -<AStr ws="en"> -<Run ws="en">N0</Run> -</AStr> -</Custom> -<Gloss> -<AUni ws="en">exclamation</AUni> -<AUni ws="es">exclamación</AUni> -</Gloss> -<MorphoSyntaxAnalysis> -<objsur guid="dd58aab8-2f8b-4e23-8756-2a647584a83c" t="r" /> -</MorphoSyntaxAnalysis> -</rt> -<rt class="CmDomainQ" guid="ffe9a459-15c5-4b66-97e9-ced06a7f40d9" ownerguid="b47d2604-8b23-41e9-9158-01526dd83894"> -<ExampleWords> -<AUni ws="en">hemisphere, North Pole, South Pole, pole, polar, polar cap, equator, tropics, tropical, continent, time zone, the Third World, the West, the East, Orient</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(5) What words refer to a part of the world?</AUni> -</Question> -</rt> -<rt class="MoStemAllomorph" guid="ffeaa021-a071-43f1-9bc3-26d5a182814a" ownerguid="3d1737b3-d05f-468d-bce7-dd3e3b409859"> -<Form> -<AUni ws="qvm-x-ach">chulpa</AUni> -<AUni ws="qvm-x-acl">chulpa</AUni> -<AUni ws="qvm-x-akh">chulpa</AUni> -<AUni ws="qvm-x-akl">chulpa</AUni> -<AUni ws="qvm-x-ame">chulpa</AUni> -</Form> -<IsAbstract val="False" /> -<MorphType> -<objsur guid="d7f713e7-e8cf-11d3-9764-00c04f186933" t="r" /> -</MorphType> -</rt> -<rt class="CmDomainQ" guid="ffeace85-38eb-4c5b-a21a-47bedb7a2571" ownerguid="d85d0838-a9e4-4787-8fce-7d0466bc24b9"> -<ExampleWords> -<AUni ws="en">(none in English)</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(3) What words refer to doing something a particular number of times (to do something once/twice/etc.)?</AUni> -</Question> -</rt> -<rt class="WfiMorphBundle" guid="ffeb1bb5-0d86-4e87-897e-c95312ac5555" ownerguid="5663238a-9f7f-4218-aed2-a8cc9be6887e"> -<Form> -<AStr ws="qvm-x-ach"> -<Run ws="qvm-x-ach">rica</Run> -</AStr> -<AStr ws="qvm-x-acl"> -<Run ws="qvm-x-acl">rica</Run> -</AStr> -<AStr ws="qvm-x-akh"> -<Run ws="qvm-x-akh">rika</Run> -</AStr> -<AStr ws="qvm-x-akl"> -<Run ws="qvm-x-akl">rika</Run> -</AStr> -<AStr ws="qvm-x-ame"> -<Run ws="qvm-x-ame">rika</Run> -</AStr> -</Form> -<Morph> -<objsur guid="1a52880b-1a7f-4706-ad3f-d5499439c590" t="r" /> -</Morph> -<Msa> -<objsur guid="96e53d72-5ffe-47bd-ac3c-7e3ede5577bf" t="r" /> -</Msa> -<Sense> -<objsur guid="1b926284-5562-4cf3-8ad2-65536a715093" t="r" /> -</Sense> -</rt> -<rt class="CmDomainQ" guid="fff2c8a6-baf5-4e14-af30-6200fe7958be" ownerguid="9ed42115-8532-4f99-b0c0-36abfe9db652"> -<ExampleWords> -<AUni ws="en">assistant, subordinate, under</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(4) What words refer to being lower in status than someone else?</AUni> -</Question> -</rt> -<rt class="CmDomainQ" guid="fff36258-cd0d-4f61-9249-a98ecf762bca" ownerguid="14ad95ad-50fc-450f-b44d-4273df0b1e8b"> -<ExampleWords> -<AUni ws="en">instant, second, minute, hour, hourly, day, week, fortnight, month, season, year, decade, century, turn of the century, lifetime, millennium</AUni> -</ExampleWords> -<Question> -<AUni ws="en">(2) What words refer to a period of time?</AUni> -</Question> -</rt> -<rt class="CmSemanticDomain" guid="fffa74fb-5b5c-453f-9120-94686033d894" ownerguid="f4580c19-ba9e-4f71-a46a-6f3c4b19c36c"> -<Abbreviation> -<AUni ws="en">7.2.4.2.2</AUni> -</Abbreviation> -<BackColor val="0" /> -<DateCreated val="2022-9-23 16:55:8.518" /> -<DateModified val="2022-9-23 16:55:8.518" /> -<Description> -<AStr ws="en"> -<Run ws="en">Use this domain for words related to swimming.</Run> -</AStr> -</Description> -<ForeColor val="0" /> -<Hidden val="False" /> -<IsProtected val="False" /> -<LouwNidaCodes> -<Uni>15H' Swim</Uni> -</LouwNidaCodes> -<Name> -<AUni ws="en">Swim</AUni> -</Name> -<Questions> -<objsur guid="8f20a6e5-aa92-41a7-b5a5-a0d520566a58" t="o" /> -</Questions> -<SortSpec val="0" /> -<UnderColor val="0" /> -<UnderStyle val="0" /> -</rt> -<rt class="LexEntry" guid="fffee68a-200e-453a-a5bf-318e68e52289"> -<Custom name="Allos"> -<AUni ws="qvm-x-ach">democracia</AUni> -<AUni ws="qvm-x-acl">democracia</AUni> -<AUni ws="qvm-x-akh">democracia</AUni> -<AUni ws="qvm-x-akl">democracia</AUni> -<AUni ws="qvm-x-ame">democracia</AUni> -</Custom> -<CitationForm> -<AUni ws="qvm-x-ach">+democracia</AUni> -<AUni ws="qvm-x-acl">+democracia</AUni> -<AUni ws="qvm-x-akh">+democracia</AUni> -<AUni ws="qvm-x-akl">+democracia</AUni> -<AUni ws="qvm-x-ame">+democracia</AUni> -</CitationForm> -<DateCreated val="2022-9-23 18:26:21.376" /> -<DateModified val="2022-10-14 23:44:17.433" /> -<DoNotUseForParsing val="False" /> -<HomographNumber val="0" /> -<LexemeForm> -<objsur guid="c545880d-747a-42de-a0cc-43b80752a6c2" t="o" /> -</LexemeForm> -<Custom name="lx"> -<AStr ws="es"> -<Run ws="es">+democracia</Run> -</AStr> -</Custom> -<MorphoSyntaxAnalyses> -<objsur guid="621aee4f-4d89-4673-9c3b-c55ee4234672" t="o" /> -</MorphoSyntaxAnalyses> -<Senses> -<objsur guid="56c5444d-ee87-41c9-9dcd-61e7396c48eb" t="o" /> -</Senses> -<Custom name="SFMs"> -<AStr ws="en"> -<Run ws="en">\lx +democracia 
\entryTyp root 
\gENG 
\gSPN 
\e +democracia 
\c N0 
\ach democracia 
\akh democracia 
\acl democracia 
\akl democracia 
\ame democracia</Run> -</AStr> -</Custom> -</rt> -</languageproject> \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/TestLcmDirectories.cs b/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/TestLcmDirectories.cs deleted file mode 100644 index 0a6729930c..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/TestLcmDirectories.cs +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright (c) 2022 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using SIL.LCModel; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace SIL.AlloGenServiceTests -{ - // Following taken from LCM test code (TestLcmDiectories.cs) - internal class TestLcmDirectories : ILcmDirectories - { - public TestLcmDirectories(string projectsDirectory) - { - ProjectsDirectory = projectsDirectory; - } - - public string ProjectsDirectory { get; } - - public string TemplateDirectory => TestDirectoryFinder.TemplateDirectory; - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/XmlBackEndProviderTests.cs b/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/XmlBackEndProviderTests.cs deleted file mode 100644 index 2e59a0e858..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenService/AlloGenServiceTests/XmlBackEndProviderTests.cs +++ /dev/null @@ -1,239 +0,0 @@ -// Copyright (c) 2022-2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using NUnit.Framework; -using SIL.AlloGenModel; -using SIL.AlloGenService; -using System; -using System.Collections.Generic; -using System.IO; -using System.Reflection; -using System.Text; -using Action = SIL.AlloGenModel.Action; -using Environment = SIL.AlloGenModel.Environment; - -namespace SIL.AlloGenServiceTests -{ - public class XmlBackEndProviderTests : AlloGenTestBase - { - string AlloGenProduced { get; set; } - - [Test] - public void LoadTest() - { - provider.LoadDataFromFile(AlloGenExpected); - AllomorphGenerators allomorphGenerators = provider.AlloGens; - Assert.NotNull(allomorphGenerators); - Assert.AreEqual(1, allomorphGenerators.Operations.Count); - Operation operation = allomorphGenerators.Operations[0]; - Assert.AreEqual(true, operation.Active); - Assert.AreEqual("foreshortening", operation.Name); - Assert.AreEqual( - "Add allomorphs for entries which undergo foreshortening", - operation.Description - ); - Pattern pattern = operation.Pattern; - Assert.NotNull(pattern); - Matcher matcher = pattern.Matcher; - Assert.AreEqual(MatcherType.RegularExpression, matcher.Type); - Assert.AreEqual(@":$|:\..+$", matcher.Pattern); - Assert.AreEqual(true, matcher.MatchCase); - Assert.AreEqual(false, matcher.MatchDiacritics); - Assert.AreEqual(@":$|:\..+$", matcher.Pattern); - Assert.AreEqual(4, pattern.MorphTypes.Count); - string guid = pattern.MorphTypes[0].Guid; - Assert.AreEqual(Constants.mtBoundRoot, guid); - string name = pattern.MorphTypes[0].Name; - Assert.AreEqual("bound root", name); - guid = pattern.Category.Guid; - Assert.AreEqual("54712931-442f-42d5-8634-f12bd2e310ce", guid); - name = pattern.Category.Name; - Assert.AreEqual("Transitive verb", name); - Action action = operation.Action; - Assert.NotNull(action); - List<string> replaceOpRefs = action.ReplaceOpRefs; - Assert.NotNull(replaceOpRefs); - Assert.AreEqual(4, replaceOpRefs.Count); - guid = replaceOpRefs[0]; - Replace replace = allomorphGenerators.FindReplaceOp(guid); - Assert.NotNull(replace); - bool mode = replace.Mode; - Assert.AreEqual(false, mode); - Assert.AreEqual("*", replace.From); - Assert.AreEqual("", replace.To); - Assert.True(replace.WritingSystemRefs.Contains("qvm-ach")); - Assert.True(replace.WritingSystemRefs.Contains("qvm-acl")); - Assert.True(replace.WritingSystemRefs.Contains("qvm-akh")); - Assert.True(replace.WritingSystemRefs.Contains("qvm-akh")); - Assert.True(replace.WritingSystemRefs.Contains("qvm-ame")); - guid = replaceOpRefs[2]; - replace = allomorphGenerators.FindReplaceOp(guid); - Assert.NotNull(replace); - Assert.AreEqual(":", replace.From); - Assert.AreEqual("", replace.To); - Assert.True(replace.WritingSystemRefs.Contains("qvm-ach")); - Assert.True(replace.WritingSystemRefs.Contains("qvm-acl")); - Assert.True(replace.WritingSystemRefs.Contains("qvm-akh")); - Assert.True(replace.WritingSystemRefs.Contains("qvm-akh")); - Assert.False(replace.WritingSystemRefs.Contains("qvm-ame")); - guid = replaceOpRefs[3]; - replace = allomorphGenerators.FindReplaceOp(guid); - Assert.NotNull(replace); - Assert.AreEqual(":", replace.From); - Assert.AreEqual("a", replace.To); - Assert.False(replace.WritingSystemRefs.Contains("qvm-ach")); - Assert.False(replace.WritingSystemRefs.Contains("qvm-acl")); - Assert.False(replace.WritingSystemRefs.Contains("qvm-akh")); - Assert.False(replace.WritingSystemRefs.Contains("qvm-akh")); - Assert.True(replace.WritingSystemRefs.Contains("qvm-ame")); - List<Environment> envs = action.Environments; - Assert.NotNull(envs); - Assert.AreEqual(2, envs.Count); - Environment env = envs[0]; - Assert.AreEqual("d7f7123-e8cf-11d3-9733-00c04f186933", env.Guid); - Assert.AreEqual("/ _ #", env.Name); - env = envs[1]; - Assert.AreEqual("d7f7456-e8cf-11d3-9733-00c04f186933", env.Guid); - Assert.AreEqual("/ ([C])[C]_ [V]", env.Name); - StemName sn = action.StemName; - Assert.NotNull(sn); - Assert.AreEqual("d2cf436-e8cf-11d3-9733-00c04f186933", sn.Guid); - Assert.AreEqual("no lowering", sn.Name); - } - - [Test] - public void SaveTest() - { - AllomorphGenerators allomorphGenerators = new AllomorphGenerators(); - allomorphGenerators.ApplyTo = 0; - Operation operation = new Operation(); - operation.Active = true; - operation.Name = "foreshortening"; - operation.Description = "Add allomorphs for entries which undergo foreshortening"; - Pattern pattern = MakePattern(); - operation.Pattern = pattern; - AlloGenModel.Action action = MakeAction(allomorphGenerators); - operation.Action = action; - allomorphGenerators.Operations.Add(operation); - MakeWritingSystems(allomorphGenerators); - string xmlFile = Path.Combine(Path.GetTempPath(), "AlloGen.xml"); - provider.AlloGens = allomorphGenerators; - provider.SaveDataToFile(xmlFile); - using (var streamReader = new StreamReader(AlloGenExpected, Encoding.UTF8)) - { - AlloGenExpected = streamReader.ReadToEnd().Replace("\r", ""); - } - using (var streamReader = new StreamReader(xmlFile, Encoding.UTF8)) - { - AlloGenProduced = streamReader.ReadToEnd().Replace("\r", ""); - } - Assert.AreEqual(AlloGenExpected, AlloGenProduced); - } - - private static AlloGenModel.Action MakeAction(AllomorphGenerators allomorphGenerators) - { - AlloGenModel.Action action = new AlloGenModel.Action(); - Replace replace1 = new Replace(); - replace1.From = "*"; - replace1.To = ""; - replace1.Guid = "5e8b9b79-0269-4dee-bfb0-be8ed4f4dc5d"; - replace1.WritingSystemRefs.Add("qvm-ach"); - replace1.WritingSystemRefs.Add("qvm-acl"); - replace1.WritingSystemRefs.Add("qvm-akh"); - replace1.WritingSystemRefs.Add("qvm-akl"); - replace1.WritingSystemRefs.Add("qvm-ame"); - allomorphGenerators.AddReplaceOp(replace1); - action.ReplaceOpRefs.Add(replace1.Guid); - Replace replace2 = new Replace(); - replace2.From = "+"; - replace2.To = ""; - replace2.Guid = "34e77406-d2fe-4526-9bf9-3bc8fa653190"; - replace2.WritingSystemRefs.Add("qvm-ach"); - replace2.WritingSystemRefs.Add("qvm-acl"); - replace2.WritingSystemRefs.Add("qvm-akh"); - replace2.WritingSystemRefs.Add("qvm-akl"); - replace2.WritingSystemRefs.Add("qvm-ame"); - allomorphGenerators.AddReplaceOp(replace2); - action.ReplaceOpRefs.Add(replace2.Guid); - Replace replace3 = new Replace(); - replace3.From = ":"; - replace3.To = ""; - replace3.Guid = "0f853476-407d-40e9-a8f3-803792f4f83e"; - replace3.WritingSystemRefs.Add("qvm-ach"); - replace3.WritingSystemRefs.Add("qvm-acl"); - replace3.WritingSystemRefs.Add("qvm-akh"); - replace3.WritingSystemRefs.Add("qvm-akl"); - allomorphGenerators.AddReplaceOp(replace3); - action.ReplaceOpRefs.Add(replace3.Guid); - Replace replace4 = new Replace(); - replace4.From = ":"; - replace4.To = "a"; - replace4.Guid = "4c3f43c6-f130-4767-9a5a-f2a93b1c6222"; - replace4.WritingSystemRefs.Add("qvm-ame"); - allomorphGenerators.AddReplaceOp(replace4); - action.ReplaceOpRefs.Add(replace4.Guid); - Environment env1 = new Environment(); - env1.Guid = "d7f7123-e8cf-11d3-9733-00c04f186933"; - env1.Name = "/ _ #"; - action.Environments.Add(env1); - Environment env2 = new Environment(); - env2.Guid = "d7f7456-e8cf-11d3-9733-00c04f186933"; - env2.Name = "/ ([C])[C]_ [V]"; - action.Environments.Add(env2); - StemName sn = new StemName(); - sn.Guid = "d2cf436-e8cf-11d3-9733-00c04f186933"; - sn.Name = "no lowering"; - action.StemName = sn; - return action; - } - - private static Pattern MakePattern() - { - Pattern pattern = new Pattern(); - Matcher matcher = new Matcher(MatcherType.RegularExpression); - matcher.MatchCase = true; - matcher.MatchDiacritics = false; - matcher.Pattern = @":$|:\..+$"; - pattern.Matcher = matcher; - MorphType morphType1 = new MorphType(); - morphType1.Guid = Constants.mtBoundRoot; - morphType1.Name = "bound root"; - MorphType morphType2 = new MorphType(); - morphType2.Guid = Constants.mtBoundStem; - morphType2.Name = "bound stem"; - MorphType morphType3 = new MorphType(); - morphType3.Guid = Constants.mtRoot; - morphType3.Name = "root"; - MorphType morphType4 = new MorphType(); - morphType4.Guid = Constants.mtStem; - morphType4.Name = "stem"; - pattern.MorphTypes.Add(morphType1); - pattern.MorphTypes.Add(morphType2); - pattern.MorphTypes.Add(morphType3); - pattern.MorphTypes.Add(morphType4); - Category cat = new Category(); - cat.Guid = "54712931-442f-42d5-8634-f12bd2e310ce"; - cat.Name = "Transitive verb"; - pattern.Category = cat; - return pattern; - } - - private void MakeWritingSystems(AllomorphGenerators allomorphGenerators) - { - allomorphGenerators.WritingSystems.Add(MakeWritingSystem("qvm-akh", 999000005)); - allomorphGenerators.WritingSystems.Add(MakeWritingSystem("qvm-acl", 999000004)); - allomorphGenerators.WritingSystems.Add(MakeWritingSystem("qvm-akl", 999000006)); - allomorphGenerators.WritingSystems.Add(MakeWritingSystem("qvm-ach", 999000003)); - allomorphGenerators.WritingSystems.Add(MakeWritingSystem("qvm-ame", 999000007)); - } - - private WritingSystem MakeWritingSystem(string name, int handle) - { - WritingSystem ws = new WritingSystem(); - ws.Name = name; - ws.Handle = handle; - return ws; - } - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenService/AllomorphCreator.cs b/Src/Utilities/AlloVarGen/AlloGenService/AllomorphCreator.cs deleted file mode 100644 index 0691da5c50..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenService/AllomorphCreator.cs +++ /dev/null @@ -1,64 +0,0 @@ -// Copyright (c) 2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using SIL.AlloGenModel; -using SIL.LCModel; -using SIL.LCModel.Core.KernelInterfaces; -using SIL.LCModel.Core.Text; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace SIL.AlloGenService -{ - public class AllomorphCreator - { - LcmCache Cache { get; set; } - List<WritingSystem> WritingSystems { get; set; } = new List<WritingSystem>(); - - public AllomorphCreator(LcmCache cache, List<WritingSystem> writingSystems) - { - Cache = cache; - WritingSystems = writingSystems; - } - - public IMoStemAllomorph CreateAllomorph(ILexEntry entry, List<string> forms) - { - IMoStemAllomorph form = entry.Services.GetInstance<IMoStemAllomorphFactory>().Create(); - entry.AlternateFormsOS.Add(form); - for (int i = 0; i < WritingSystems.Count && i < forms.Count; i++) - { - form.Form.set_String(WritingSystems[i].Handle, forms[i]); - } - return form; - } - - public void AddEnvironments(IMoStemAllomorph form, List<AlloGenModel.Environment> envs) - { - foreach (AlloGenModel.Environment env in envs) - { - var phEnv = Cache.ServiceLocator.ObjectRepository.GetObjectOrIdWithHvoFromGuid( - new Guid(env.Guid) - ); - if (phEnv != null) - { - form.AllomorphEnvironments.Add((IPhEnvironment)phEnv); - } - } - } - - public void AddStemName(IMoStemAllomorph form, string stemNameGuid) - { - var stemName = Cache.ServiceLocator.ObjectRepository.GetObjectOrIdWithHvoFromGuid( - new Guid(stemNameGuid) - ); - if (stemName != null) - { - form.StemNameRA = (IMoStemName)stemName; - } - } - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenService/DataBaseMigrator.cs b/Src/Utilities/AlloVarGen/AlloGenService/DataBaseMigrator.cs deleted file mode 100644 index 31dcb6be4a..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenService/DataBaseMigrator.cs +++ /dev/null @@ -1,125 +0,0 @@ -// Copyright (c) 2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using SIL.AlloGenModel; -using SIL.FieldWorks.Common.FwUtils; -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Reflection; -using System.Text; -using System.Threading.Tasks; -using System.Xml; -using System.Xml.XPath; -using System.Xml.Xsl; - -namespace SIL.AlloGenService -{ - public class DatabaseMigrator - { - // is public and can be changed for testing purposes - public int LatestVersion { get; set; } = 6; - - void MakeBackupOfFile(string fileName) - { - if (File.Exists(fileName)) - { - string backupName = CreateBackupFileName(fileName); - File.Copy(fileName, backupName, true); - } - } - - public string CreateBackupFileName(string fileName) - { - string backupName = ""; - if (fileName.Length > 4) - { - int iAgf = fileName.LastIndexOf(".agf"); - if (iAgf > -1) - { - backupName = fileName.Substring(0, iAgf) + ".bak"; - } - else - { - backupName = fileName + ".bak"; - } - } - return backupName; - } - - public string Migrate(string fileName) - { - if (!File.Exists(fileName)) - { - // effectively do nothing - return fileName; - } - int version = GetFileVersionNumber(fileName); - if (version < 0) - return fileName; - string newFileName = ""; - bool didMigration = false; - while (version < LatestVersion) - { - MakeBackupOfFile(fileName); - switch (version) - { - case 3: - newFileName = ApplyTransform(fileName, "DBVersion3To4.xslt", "04"); - didMigration = true; - break; - default: - Console.WriteLine("Migrator: version=" + version); - break; - } - version++; - } - if (didMigration) - return newFileName; - else - return fileName; - } - - private string ApplyTransform(string fileName, string transform, string newVersion) - { - XPathDocument myXPathDoc = new XPathDocument(fileName); - XslCompiledTransform myXslTrans = new XslCompiledTransform(); - string migrationStyleSheet = Path.Combine(FwDirectoryFinder.SourceDirectory, "Utilities", "AlloVarGen", "AlloGenService", "AlloGenDataMigrations", transform); - - myXslTrans.Load(migrationStyleSheet); - string resultFile = Path.Combine( - Path.GetTempPath(), - String.Concat("AlloGenMigrationTo", newVersion, ".agf") - ); - - XmlTextWriter myWriter = new XmlTextWriter(resultFile, null); - myXslTrans.Transform(myXPathDoc, null, myWriter); - myWriter.Close(); - return resultFile; - } - - private static string GetAppBaseDir() - { - Uri uriBase = new Uri(Assembly.GetExecutingAssembly().CodeBase); - string rootdir = Path.GetDirectoryName(Uri.UnescapeDataString(uriBase.AbsolutePath)); - return rootdir; - } - - private int GetFileVersionNumber(string fileName) - { - if (!File.Exists(fileName)) - return -1; - string contents = File.ReadAllText(fileName); - int index = contents.IndexOf("dbVersion=\""); - if (index < 0) - return -1; - index += 11; - int indexEnd = contents.Substring(index).IndexOf("\""); - string value = contents.Substring(index, indexEnd); - return Int32.Parse(value); - } - - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenService/FLExCustomFieldsObtainer.cs b/Src/Utilities/AlloVarGen/AlloGenService/FLExCustomFieldsObtainer.cs deleted file mode 100644 index ecfcfc5728..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenService/FLExCustomFieldsObtainer.cs +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright (c) 2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using SIL.LCModel; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace SIL.AlloGenService -{ - // Some of this code was taken from Src\xWorks\AddCustomFieldDialog.cs - public class FLExCustomFieldsObtainer - { - public LcmCache Cache { get; set; } - public List<FDWrapper> CustomFields { get; } = new List<FDWrapper>(); - - public FLExCustomFieldsObtainer(LcmCache cache) - { - Cache = cache; - // get the custom fields - FieldDescription.ClearDataAbout(); - CustomFields = ( - from fd in FieldDescription.FieldDescriptors(Cache) - where - fd.IsCustomField - && fd.IsInstalled - && fd.Class == LexEntryTags.kClassId - && fd.Type == LCModel.Core.Cellar.CellarPropertyType.String - select new FDWrapper(fd, false) - ).ToList(); - } - - /// <summary> - /// This class is a wrapper class for containing the FieldDescription - /// and the source of it : mem or DB. This class is added to the LB - /// of custom fields. - /// </summary> - public class FDWrapper - { - public FDWrapper(FieldDescription fd, bool isNew) - { - Fd = fd; - IsNew = isNew; - } - - public override string ToString() - { - return Fd.Userlabel ?? ""; - } - - // read only properties - public FieldDescription Fd { get; private set; } - public bool IsNew { get; private set; } - } - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenService/PatternMatcher.cs b/Src/Utilities/AlloVarGen/AlloGenService/PatternMatcher.cs deleted file mode 100644 index 5b49352733..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenService/PatternMatcher.cs +++ /dev/null @@ -1,414 +0,0 @@ -// Copyright (c) 2022-2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using SIL.AlloGenModel; -using SIL.FieldWorks.Filters; -using SIL.LCModel; -using SIL.LCModel.Core.Cellar; -using SIL.LCModel.Core.KernelInterfaces; -using SIL.LCModel.Infrastructure; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace SIL.AlloGenService -{ - public class PatternMatcher - { - //public Pattern Pattern { get; set; } - LcmCache Cache { get; set; } - public AllomorphGenerators AlloGens { get; set; } - public IEnumerable<ILexEntry> AllEntries { get; set; } - public IEnumerable<ILexEntry> EntriesWithNoAllomorphs { get; set; } - public IEnumerable<ILexEntry> MultiAllomorphEntries { get; set; } - public IEnumerable<ILexEntry> NonVariantMainEntries { get; set; } - public IEnumerable<ILexEntry> VariantEntries { get; set; } - public IMoMorphType MorphType { get; set; } - public List<IMoMorphType> MorphTypes { get; set; } = new List<IMoMorphType>(); - public string ErrorMessage { get; set; } = ""; - List<WritingSystem> WritingSystems { get; set; } = new List<WritingSystem>(); - public ApplyTo ApplyTo { get; set; } - private readonly IFwMetaDataCacheManaged m_mdc; - - public PatternMatcher(LcmCache cache, AllomorphGenerators alloGens) - { - Cache = cache; - AllEntries = Cache.LanguageProject.LexDbOA.Entries; - EntriesWithNoAllomorphs = AllEntries.Where(e => e.AlternateFormsOS.Count == 0); - MultiAllomorphEntries = AllEntries.Where(e => e.AlternateFormsOS.Count > 0); - NonVariantMainEntries = AllEntries.Where( - e => e.EntryRefsOS.Count() == 0 && e.SensesOS.Count > 0 - ); - VariantEntries = AllEntries.Where( - e => e.EntryRefsOS.Count() > 0 && e.SensesOS.Count == 0 - ); - AlloGens = alloGens; - WritingSystems = alloGens.WritingSystems; - m_mdc = cache.MetaDataCacheAccessor as IFwMetaDataCacheManaged; - } - - public IEnumerable<ILexEntry> MatchMorphTypes( - IEnumerable<ILexEntry> lexEntries, - Pattern pattern - ) - { - if (pattern.MorphTypes.Count > 0) - { - MorphTypes.Clear(); - foreach (IMoMorphType mt in Cache.LangProject.LexDbOA.MorphTypesOA.PossibilitiesOS) - { - if (pattern.MorphTypes.Where(m => m.Guid == mt.Guid.ToString()).Count() > 0) - { - MorphTypes.Add(mt); - } - } - var lexEntriesForMorphTypes = new List<ILexEntry>(); - foreach (ILexEntry e in lexEntries) - { - foreach (IMoMorphType mt in MorphTypes) - { - if (e.MorphTypes.Contains(mt)) - { - lexEntriesForMorphTypes.Add(e); - break; - } - } - } - return lexEntriesForMorphTypes; - } - return lexEntries; - } - - public IEnumerable<ILexEntry> MatchCategory( - IEnumerable<ILexEntry> lexEntries, - Pattern pattern - ) - { - var lexEntriesForCategory = new List<ILexEntry>(); - if ( - pattern.Category != null - && pattern.Category.Active - && pattern.Category.Guid.Length > 0 - ) - { - IPartOfSpeech patternPos = GetPatternsPartOfSpeech(pattern); - if (patternPos != null) - { - foreach (ILexEntry entry in lexEntries) - { - foreach (IMoMorphSynAnalysis msa in entry.MorphoSyntaxAnalysesOC) - { - IMoStemMsa stemMsa = msa as IMoStemMsa; - if (stemMsa != null && stemMsa.PartOfSpeechRA != null) - { - if ( - stemMsa.PartOfSpeechRA == patternPos - || patternPos.ReallyReallyAllPossibilities.Contains( - stemMsa.PartOfSpeechRA - ) - ) - { - { - lexEntriesForCategory.Add(entry); - break; - } - } - } - } - } - } - return lexEntriesForCategory; - } - return lexEntries; - } - - private IPartOfSpeech GetPatternsPartOfSpeech(Pattern pattern) - { - foreach (IPartOfSpeech pos in Cache.LangProject.AllPartsOfSpeech) - { - if (pos.Guid.ToString() == pattern.Category.Guid) - { - return pos; - } - } - return null; - } - - public IEnumerable<ILexEntry> MatchMatchString( - IEnumerable<ILexEntry> lexEntries, - Pattern pattern - ) - { - int ws = Cache.DefaultVernWs; - Matcher agMatcher = pattern.Matcher; - string errorMessage = ""; - IMatcher fwMatcher = agMatcher.GetFwMatcher(ws, out errorMessage); - ErrorMessage = errorMessage; - if (fwMatcher == null) - return null; - var lexEntriesPerMatchString = new List<ILexEntry>(); - foreach (ILexEntry e in lexEntries) - { - ITsString useToMatch = GetToMatch(e); - if (useToMatch != null && useToMatch.Length > 0 && fwMatcher.Matches(useToMatch)) - { - lexEntriesPerMatchString.Add(e); - } - } - return lexEntriesPerMatchString; - } - - public ITsString GetToMatch(ILexEntry e) - { - ITsString useToMatch = null; - if (ApplyTo == null || ApplyTo.Id == LexEntryTags.kflidCitationForm) - useToMatch = e.CitationForm.VernacularDefaultWritingSystem; - else if (ApplyTo.Id == LexEntryTags.kflidLexemeForm) - useToMatch = e.LexemeFormOA.Form.VernacularDefaultWritingSystem; - else if (ApplyTo.Id == LexEntryTags.kflidEtymology) - { - if (e.EtymologyOS.Count == 0) - return null; - useToMatch = e.EtymologyOS.ElementAt(0).Form.VernacularDefaultWritingSystem; - } - else - { - foreach ( - var flid in m_mdc.GetFields(e.ClassID, true, (int)CellarPropertyTypeFilter.All) - ) - { - if (!m_mdc.IsCustom(flid)) - continue; - if (flid != ApplyTo.Id) - continue; - ITsString tssString = Cache.DomainDataByFlid.get_StringProp(e.Hvo, flid); - if (!String.IsNullOrEmpty(tssString.Text)) - { - useToMatch = tssString; - } - } - } - return useToMatch; - } - - public IEnumerable<ILexEntry> MatchEntriesWithAllosPerPattern( - Operation operation, - Pattern pattern - ) - { - var lexEntriesThatMatch = MatchMatchString(MultiAllomorphEntries, pattern); - if (lexEntriesThatMatch == null) - return null; - lexEntriesThatMatch = MatchCategory(lexEntriesThatMatch, pattern); - lexEntriesThatMatch = MatchMorphTypes(lexEntriesThatMatch, pattern); - - AlloGenModel.Action action; - Replacer replacer; - PrepareReplacer(operation, out action, out replacer); - IList<ILexEntry> lexEntriesWithAllosThatDoNotMatch = new List<ILexEntry>(); - foreach (ILexEntry entry in lexEntriesThatMatch) - { - if (!HaveSameAllomorphs(replacer, entry, action)) - { - lexEntriesWithAllosThatDoNotMatch.Add(entry); - } - } - return lexEntriesWithAllosThatDoNotMatch; - } - - private bool HaveSameAllomorphs( - Replacer replacer, - ILexEntry entry, - AlloGenModel.Action action - ) - { - foreach (IMoStemAllomorph allo in entry.AlternateFormsOS) - { - if (HasSameAllomorph(replacer, entry, action, allo)) - { - return true; - } - } - return false; - } - - private bool HasSameAllomorph( - Replacer replacer, - ILexEntry entry, - AlloGenModel.Action action, - IMoStemAllomorph allo - ) - { - if (allo.StemNameRA != null && allo.StemNameRA.Guid.ToString() != action.StemName.Guid) - { - return false; - } - if (!HaveSameEnvironments(allo.AllomorphEnvironments, action.Environments)) - { - return false; - } - ITsString useToMatch = GetToMatch(entry); - if (useToMatch != null) - { - string form = useToMatch.Text; - foreach (WritingSystem ws in WritingSystems) - { - if (!HaveSameAllomorphForm(replacer, form, allo, ws)) - { - return false; - } - } - } - return true; - } - - private bool HaveSameAllomorphForm( - Replacer replacer, - string citationForm, - IMoStemAllomorph allo, - WritingSystem ws - ) - { - string previewForm = replacer.ApplyReplaceOpToOneWS(citationForm, ws.Name); - if (ws.Handle == -1) - { - return false; - } - string alloForm = allo.Form.get_String(ws.Handle).Text; - if (alloForm != previewForm) - { - return false; - } - return true; - } - - private bool HaveSameEnvironments( - ILcmReferenceCollection<IPhEnvironment> allosEnvs, - List<AlloGenModel.Environment> actionsEnvs - ) - { - if (allosEnvs.Count != actionsEnvs.Count) - return false; - foreach (IPhEnvironment env in allosEnvs) - { - if (actionsEnvs.FindIndex(e => e.Guid == env.Guid.ToString()) == -1) - { - return false; - } - } - return true; - } - - public IEnumerable<ILexEntry> MatchEntriesWithVariantsPerPattern( - Operation operation, - Pattern pattern - ) - { - IList<ILexEntry> lexEntriesWithVariants = new List<ILexEntry>(); - Dictionary<ILexEntry, ILexEntry> entryRefEntryPairs = - new Dictionary<ILexEntry, ILexEntry>(); - foreach (ILexEntry variantEntry in VariantEntries) - { - foreach (ILexEntryRef entryRef in variantEntry.EntryRefsOS) - { - foreach (ICmObject obj in entryRef.ComponentLexemesRS) - { - ILexEntry mainEntry = obj as ILexEntry; - if (mainEntry != null) - { - if (!lexEntriesWithVariants.Contains(mainEntry)) - { - lexEntriesWithVariants.Add(mainEntry); - if (!entryRefEntryPairs.ContainsKey(variantEntry)) - { - entryRefEntryPairs.Add(variantEntry, mainEntry); - } - } - } - } - } - } - var lexEntriesThatMatch = MatchMatchString(lexEntriesWithVariants, pattern); - if (lexEntriesThatMatch == null) - return null; - lexEntriesThatMatch = MatchCategory(lexEntriesThatMatch, pattern); - lexEntriesThatMatch = MatchMorphTypes(lexEntriesThatMatch, pattern); - - AlloGenModel.Action action; - Replacer replacer; - PrepareReplacer(operation, out action, out replacer); - IList<ILexEntry> mainEntriesWithVariantsThatAlreadyExist = new List<ILexEntry>(); - foreach (ILexEntry mainEntry in lexEntriesThatMatch) - { - ILexEntry variantEntry = entryRefEntryPairs - .FirstOrDefault(e => e.Value == mainEntry) - .Key; - // compare lexeme form of variant entry with the generated form of the main entry - if (HaveSameLexemeForm(replacer, mainEntry, variantEntry, action)) - { - mainEntriesWithVariantsThatAlreadyExist.Add(mainEntry); - } - } - return mainEntriesWithVariantsThatAlreadyExist; - } - - private void PrepareReplacer( - Operation operation, - out AlloGenModel.Action action, - out Replacer replacer - ) - { - action = operation.Action; - List<Replace> replaceOps = new List<Replace>(); - foreach (string opRef in action.ReplaceOpRefs) - { - Replace replace = AlloGens.ReplaceOperations.FirstOrDefault(ro => ro.Guid == opRef); - if (replace != null) - replaceOps.Add(replace); - } - replacer = new Replacer(replaceOps); - } - - private bool HaveSameLexemeForm( - Replacer replacer, - ILexEntry mainEntry, - ILexEntry variantEntry, - AlloGenModel.Action action - ) - { - ITsString useToMatch = GetToMatch(mainEntry); - if (useToMatch != null) - { - IMoStemAllomorph lexemeForm = variantEntry.LexemeFormOA as IMoStemAllomorph; - if (lexemeForm != null) - { - string form = useToMatch.Text; - foreach (WritingSystem ws in WritingSystems) - { - if (!HaveSameAllomorphForm(replacer, form, lexemeForm, ws)) - { - return false; - } - } - } - } - return true; - } - - public IEnumerable<ILexEntry> MatchPattern( - IEnumerable<ILexEntry> lexEntries, - Pattern pattern - ) - { - var lexEntriesThatMatch = MatchMatchString(lexEntries, pattern); - if (lexEntriesThatMatch == null) - return null; - lexEntriesThatMatch = MatchCategory(lexEntriesThatMatch, pattern); - lexEntriesThatMatch = MatchMorphTypes(lexEntriesThatMatch, pattern); - return lexEntriesThatMatch; - } - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenService/Replacer.cs b/Src/Utilities/AlloVarGen/AlloGenService/Replacer.cs deleted file mode 100644 index 9185443fa0..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenService/Replacer.cs +++ /dev/null @@ -1,61 +0,0 @@ -// Copyright (c) 2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using SIL.AlloGenModel; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Text.RegularExpressions; -using System.Threading.Tasks; -using System.Windows.Forms; - -namespace SIL.AlloGenService -{ - public class Replacer - { - public List<Replace> ReplaceOps { get; set; } - - public Replacer(List<Replace> replaceOps) - { - ReplaceOps = replaceOps; - } - - public string ApplyReplaceOpToOneWS(string input, string ws) - { - string result = input; - foreach (Replace replace in ReplaceOps) - { - if (!replace.Active || replace.From.Length == 0) - continue; - var wsName = replace.WritingSystemRefs.Find(wsn => wsn == ws); - if (wsName == null) - continue; - if (replace.Mode) - { - // regular expression - try { - result = Regex.Replace(result, replace.From, replace.To); - } - catch (ArgumentException ex) - { - //MessageBox.Show(ex.Message + "; on '" + input + "'"); - return result; - } - } - else - { - // plain - result = result.Replace(replace.From, replace.To); - } - } - if (result.Length == 0) - { - // Use a non-breaking space when it is empty to avoid FLEx using a non-empty value in some other writing system - result = "\u00A0"; - } - return result; - } - } -} diff --git a/Src/Utilities/AlloVarGen/AlloGenService/XmlBackEndProvider.cs b/Src/Utilities/AlloVarGen/AlloGenService/XmlBackEndProvider.cs deleted file mode 100644 index 3595affe0c..0000000000 --- a/Src/Utilities/AlloVarGen/AlloGenService/XmlBackEndProvider.cs +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright (c) 2022 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using SIL.AlloGenModel; -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Xml.Serialization; - -// Some code taken from https://www.codeproject.com/Articles/483055/XML-Serialization-and-Deserialization-Part-1 -// and https://www.codeproject.com/Articles/487571/XML-Serialization-and-Deserialization-Part-2 -// on November 1, 2022 - -namespace SIL.AlloGenService -{ - public class XmlBackEndProvider - { - public AllomorphGenerators AlloGens { get; set; } - - public void LoadDataFromFile(string FileName) - { - XmlSerializer deserializer = new XmlSerializer(typeof(AllomorphGenerators)); - using (TextReader reader = new StreamReader(FileName)) - { - object obj = deserializer.Deserialize(reader); - AlloGens = (AllomorphGenerators)obj; - reader.Close(); - } - } - - public void SaveDataToFile(string FileName) - { - XmlSerializer serializer = new XmlSerializer(typeof(AllomorphGenerators)); - using (TextWriter writer = new StreamWriter(FileName)) - { - serializer.Serialize(writer, AlloGens); - } - } - } -} diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/AlloGenForm.cs b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/AlloGenForm.cs deleted file mode 100644 index 9b9526a7fd..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/AlloGenForm.cs +++ /dev/null @@ -1,139 +0,0 @@ -// Copyright (c) 2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using Microsoft.Win32; -using SIL.AlloGenModel; -using SIL.AlloGenService; -using SIL.AllomorphGenerator; -using SIL.FieldWorks.Common.FwUtils; -using SIL.LCModel; -using SIL.LCModel.Infrastructure; -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.IO; -using System.Linq; -using System.Reflection; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; -using XCore; - -namespace SIL.AllomorphGenerator -{ - public partial class AlloGenForm : AlloGenFormBase - { - protected new const string OperationsFilePrompt = - "Allomorph Generator Operations File (*.agf)|*.agf|" + "All Files (*.*)|*.*"; - const string RegKey = "Software\\SIL\\AllomorphGenerator"; - - public AlloGenForm(LcmCache cache, PropertyTable propTable, Mediator mediator) - { - Cache = cache; - PropTable = propTable; - Mediator = mediator; - FLExCustomFieldsObtainer obtainer = new FLExCustomFieldsObtainer(cache); - customFields = obtainer.CustomFields; - AlloGenInitForm(); - } - - public AlloGenForm() - { - AlloGenInitForm(); - } - - protected void AlloGenInitForm() - { - base.InitializeComponent(); - if (plActions != null) - { - this.Text = "Allomorph Generator"; - } - // Create an instance of a ListView column sorter and assign it - // to the ListView control. - lvwColumnSorter = new ListViewColumnSorter(); - lvPreview.ListViewItemSorter = lvwColumnSorter; - lvwEditReplaceOpsColumnSorter = new ListViewColumnSorter(); - lvEditReplaceOps.ListViewItemSorter = lvwEditReplaceOpsColumnSorter; - this.FormClosing += new System.Windows.Forms.FormClosingEventHandler( - this.OnFormClosing - ); - RememberFormState(RegKey); - Provider = new XmlBackEndProvider(); - Migrator = new DatabaseMigrator(); - LoadMigrateGetOperations(); - FillOperationsListBox(); - FillApplyToComboBox(); - SetupFontAndStyleInfo(); - SetUpOperationsCheckedListBox(); - SetUpPreviewCheckedListBox(); - FillApplyOperationsListView(); - SetUpEditReplaceOpsListView(); - FillReplaceOpsListView(); - BuildReplaceContextMenu(); - BuildEditReplaceOpContextMenu(); - BuildOperationsCheckBoxContextMenu(); - BuildPreviewCheckBoxContextMenu(); - lBoxMorphTypes.ClearSelected(); - lBoxEnvironments.ClearSelected(); - RememberTabSelection(); - MarkAsChanged(false); - alloCreator = new AllomorphCreator(Cache, WritingSystems); - } - - protected override string CreateUndoRedoPrompt(Operation op) - { - return " Allomorph Generation for '" + op.Name; - } - - protected override void GetMatchingEntries( - PatternMatcher patMatcher, - out IList<ILexEntry> matchingEntries, - out IList<ILexEntry> matchingEntriesWithItemsAlready - ) - { - matchingEntries = patMatcher - .MatchPattern(patMatcher.EntriesWithNoAllomorphs, Operation.Pattern) - .ToList(); - matchingEntriesWithItemsAlready = patMatcher - .MatchEntriesWithAllosPerPattern(Operation, Pattern) - .ToList(); - foreach (ILexEntry entry in matchingEntriesWithItemsAlready) - { - matchingEntries.Add(entry); - } - } - - protected override string GetOperationsFilePrompt() - { - return OperationsFilePrompt; - } - - protected override Form BuildCreateNewOpenCancelDialog() - { - var dlg = new CreateNewOpenCancelDialog(); - dlg.Text = "Allomorph Generator"; - return dlg; - } - - protected override string GetUserDocPath() - { - string helpsPath = Path.Combine(FwDirectoryFinder.CodeDirectory, "Helps"); - return Path.Combine(helpsPath, "Language Explorer", "Utilities", "AlloGenUserDocumentation.pdf"); - } - - protected override Uri GetBaseUri() - { - return new Uri(Assembly.GetExecutingAssembly().CodeBase); - } - - protected void OnFormClosing(object sender, EventArgs e) - { - SaveAnyChanges(); - SaveRegistryInfo(RegKey); - } - } -} diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/AlloGenFormBase.Designer.cs b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/AlloGenFormBase.Designer.cs deleted file mode 100644 index ea28168783..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/AlloGenFormBase.Designer.cs +++ /dev/null @@ -1,851 +0,0 @@ -using System; -using System.Windows.Forms; - -namespace SIL.AllomorphGenerator -{ - partial class AlloGenFormBase - { - - /// <summary> - /// Clean up any resources being used. - /// </summary> - /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// <summary> - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// </summary> - protected void InitializeComponent() - { - this.components = new System.ComponentModel.Container(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AlloGenFormBase)); - this.tabControl = new System.Windows.Forms.TabControl(); - this.tabEditOps = new System.Windows.Forms.TabPage(); - this.lbApplyTo = new System.Windows.Forms.Label(); - this.cbApplyTo = new System.Windows.Forms.ComboBox(); - this.lbCountOps = new System.Windows.Forms.Label(); - this.btnSaveChanges = new System.Windows.Forms.Button(); - this.lbOpRightClickToEdit = new System.Windows.Forms.Label(); - this.lbOperations = new System.Windows.Forms.Label(); - this.lbPattern = new System.Windows.Forms.Label(); - this.lBoxOperations = new System.Windows.Forms.ListBox(); - this.lbName = new System.Windows.Forms.Label(); - this.lbDescription = new System.Windows.Forms.Label(); - this.tbName = new System.Windows.Forms.TextBox(); - this.tbDescription = new System.Windows.Forms.TextBox(); - this.lbAction = new System.Windows.Forms.Label(); - this.plPattern = new System.Windows.Forms.Panel(); - this.btnMatch = new System.Windows.Forms.Button(); - this.btnMorphTypes = new System.Windows.Forms.Button(); - this.btnCategory = new System.Windows.Forms.Button(); - this.tbCategory = new System.Windows.Forms.TextBox(); - this.lbCategory = new System.Windows.Forms.Label(); - this.lBoxMorphTypes = new System.Windows.Forms.ListBox(); - this.lbMorphTypes = new System.Windows.Forms.Label(); - this.tbMatch = new System.Windows.Forms.TextBox(); - this.lbMatch = new System.Windows.Forms.Label(); - this.plActions = new System.Windows.Forms.Panel(); - this.lbReplaceRightClickToEdit = new System.Windows.Forms.Label(); - this.btnEnvironments = new System.Windows.Forms.Button(); - this.lbReplaceOps = new System.Windows.Forms.Label(); - this.btnStemName = new System.Windows.Forms.Button(); - this.tbStemName = new System.Windows.Forms.TextBox(); - this.lbStemName = new System.Windows.Forms.Label(); - this.lBoxReplaceOps = new System.Windows.Forms.ListBox(); - this.lBoxEnvironments = new System.Windows.Forms.ListBox(); - this.lbEnvironments = new System.Windows.Forms.Label(); - this.tabRunOps = new System.Windows.Forms.TabPage(); - this.btnSaveChanges2 = new System.Windows.Forms.Button(); - this.lvOperations = new System.Windows.Forms.ListView(); - this.lbCountRunOps = new System.Windows.Forms.Label(); - this.lvPreview = new System.Windows.Forms.ListView(); - this.lbPreview = new System.Windows.Forms.Label(); - this.btnApplyOperations = new System.Windows.Forms.Button(); - this.lbOperationsToApply = new System.Windows.Forms.Label(); - this.tabEditReplaceOps = new System.Windows.Forms.TabPage(); - this.lbCountReplaceOps = new System.Windows.Forms.Label(); - this.btnSaveChanges3 = new System.Windows.Forms.Button(); - this.btnDeleteReplaceOp = new System.Windows.Forms.Button(); - this.btnEditReplaceOp = new System.Windows.Forms.Button(); - this.btnAddNewReplaceOp = new System.Windows.Forms.Button(); - this.lvEditReplaceOps = new System.Windows.Forms.ListView(); - this.lbAlloGenFile = new System.Windows.Forms.Label(); - this.tbFile = new System.Windows.Forms.TextBox(); - this.btnBrowse = new System.Windows.Forms.Button(); - this.btnHelp = new System.Windows.Forms.Button(); - this.btnNewFile = new System.Windows.Forms.Button(); - this.ilPreview = new System.Windows.Forms.ImageList(this.components); - this.tabControl.SuspendLayout(); - this.tabEditOps.SuspendLayout(); - this.plPattern.SuspendLayout(); - this.plActions.SuspendLayout(); - this.tabRunOps.SuspendLayout(); - this.tabEditReplaceOps.SuspendLayout(); - this.SuspendLayout(); - // - // tabControl - // - this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.tabControl.Controls.Add(this.tabEditOps); - this.tabControl.Controls.Add(this.tabRunOps); - this.tabControl.Controls.Add(this.tabEditReplaceOps); - this.tabControl.Location = new System.Drawing.Point(0, 68); - this.tabControl.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.tabControl.Name = "tabControl"; - this.tabControl.SelectedIndex = 0; - this.tabControl.Size = new System.Drawing.Size(859, 586); - this.tabControl.TabIndex = 5; - this.tabControl.SelectedIndexChanged += new System.EventHandler(this.tabControl_SelectedIndexChanged); - // - // tabEditOps - // - this.tabEditOps.Controls.Add(this.lbApplyTo); - this.tabEditOps.Controls.Add(this.cbApplyTo); - this.tabEditOps.Controls.Add(this.lbCountOps); - this.tabEditOps.Controls.Add(this.btnSaveChanges); - this.tabEditOps.Controls.Add(this.lbOpRightClickToEdit); - this.tabEditOps.Controls.Add(this.lbOperations); - this.tabEditOps.Controls.Add(this.lbPattern); - this.tabEditOps.Controls.Add(this.lBoxOperations); - this.tabEditOps.Controls.Add(this.lbName); - this.tabEditOps.Controls.Add(this.lbDescription); - this.tabEditOps.Controls.Add(this.tbName); - this.tabEditOps.Controls.Add(this.tbDescription); - this.tabEditOps.Controls.Add(this.lbAction); - this.tabEditOps.Controls.Add(this.plPattern); - this.tabEditOps.Controls.Add(this.plActions); - this.tabEditOps.Location = new System.Drawing.Point(4, 22); - this.tabEditOps.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.tabEditOps.Name = "tabEditOps"; - this.tabEditOps.Padding = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.tabEditOps.Size = new System.Drawing.Size(851, 560); - this.tabEditOps.TabIndex = 0; - this.tabEditOps.Text = "Edit Operations"; - this.tabEditOps.UseVisualStyleBackColor = true; - // - // lbApplyTo - // - this.lbApplyTo.AutoSize = true; - this.lbApplyTo.Location = new System.Drawing.Point(5, 517); - this.lbApplyTo.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.lbApplyTo.Name = "lbApplyTo"; - this.lbApplyTo.Size = new System.Drawing.Size(100, 13); - this.lbApplyTo.TabIndex = 31; - this.lbApplyTo.Text = "Apply operations to:"; - // - // cbApplyTo - // - this.cbApplyTo.FormattingEnabled = true; - this.cbApplyTo.Location = new System.Drawing.Point(134, 515); - this.cbApplyTo.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.cbApplyTo.Name = "cbApplyTo"; - this.cbApplyTo.Size = new System.Drawing.Size(106, 21); - this.cbApplyTo.TabIndex = 6; - this.cbApplyTo.SelectedIndexChanged += new System.EventHandler(this.cbApplyTo_SelectedIndexChanged); - // - // lbCountOps - // - this.lbCountOps.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.lbCountOps.AutoSize = true; - this.lbCountOps.Location = new System.Drawing.Point(773, 517); - this.lbCountOps.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.lbCountOps.Name = "lbCountOps"; - this.lbCountOps.Size = new System.Drawing.Size(42, 13); - this.lbCountOps.TabIndex = 30; - this.lbCountOps.Text = "1 / 160"; - // - // btnSaveChanges - // - this.btnSaveChanges.Location = new System.Drawing.Point(338, 517); - this.btnSaveChanges.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.btnSaveChanges.Name = "btnSaveChanges"; - this.btnSaveChanges.Size = new System.Drawing.Size(87, 22); - this.btnSaveChanges.TabIndex = 9; - this.btnSaveChanges.Text = "&Save Changes"; - this.btnSaveChanges.UseVisualStyleBackColor = true; - this.btnSaveChanges.Click += new System.EventHandler(this.btnSaveChanges_Click); - // - // lbOpRightClickToEdit - // - this.lbOpRightClickToEdit.AutoSize = true; - this.lbOpRightClickToEdit.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.lbOpRightClickToEdit.Location = new System.Drawing.Point(73, 7); - this.lbOpRightClickToEdit.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.lbOpRightClickToEdit.Name = "lbOpRightClickToEdit"; - this.lbOpRightClickToEdit.Size = new System.Drawing.Size(95, 13); - this.lbOpRightClickToEdit.TabIndex = 29; - this.lbOpRightClickToEdit.Text = "(Right-click to edit)"; - // - // lbOperations - // - this.lbOperations.AutoSize = true; - this.lbOperations.Location = new System.Drawing.Point(5, 8); - this.lbOperations.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.lbOperations.Name = "lbOperations"; - this.lbOperations.Size = new System.Drawing.Size(58, 13); - this.lbOperations.TabIndex = 28; - this.lbOperations.Text = "Operations"; - // - // lbPattern - // - this.lbPattern.AutoSize = true; - this.lbPattern.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.lbPattern.Location = new System.Drawing.Point(251, 65); - this.lbPattern.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.lbPattern.Name = "lbPattern"; - this.lbPattern.Size = new System.Drawing.Size(48, 13); - this.lbPattern.TabIndex = 6; - this.lbPattern.Text = "Pattern"; - // - // lBoxOperations - // - this.lBoxOperations.FormattingEnabled = true; - this.lBoxOperations.Location = new System.Drawing.Point(2, 27); - this.lBoxOperations.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.lBoxOperations.Name = "lBoxOperations"; - this.lBoxOperations.Size = new System.Drawing.Size(238, 472); - this.lBoxOperations.TabIndex = 0; - this.lBoxOperations.SelectedIndexChanged += new System.EventHandler(this.lBoxOperations_SelectedIndexChanged); - this.lBoxOperations.MouseUp += new System.Windows.Forms.MouseEventHandler(this.lBoxOperations_MouseUp); - // - // lbName - // - this.lbName.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.lbName.Location = new System.Drawing.Point(243, 4); - this.lbName.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.lbName.Name = "lbName"; - this.lbName.Size = new System.Drawing.Size(59, 17); - this.lbName.TabIndex = 1; - this.lbName.Text = "Name"; - // - // lbDescription - // - this.lbDescription.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.lbDescription.Location = new System.Drawing.Point(243, 31); - this.lbDescription.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.lbDescription.Name = "lbDescription"; - this.lbDescription.Size = new System.Drawing.Size(77, 13); - this.lbDescription.TabIndex = 3; - this.lbDescription.Text = "Description"; - // - // tbName - // - this.tbName.Location = new System.Drawing.Point(331, 2); - this.tbName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.tbName.Name = "tbName"; - this.tbName.Size = new System.Drawing.Size(433, 20); - this.tbName.TabIndex = 2; - this.tbName.Text = "My name"; - this.tbName.TextChanged += new System.EventHandler(this.tbName_TextChanged); - // - // tbDescription - // - this.tbDescription.Location = new System.Drawing.Point(331, 27); - this.tbDescription.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.tbDescription.Name = "tbDescription"; - this.tbDescription.Size = new System.Drawing.Size(433, 20); - this.tbDescription.TabIndex = 4; - this.tbDescription.Text = "My description"; - this.tbDescription.TextChanged += new System.EventHandler(this.tbDescription_TextChanged); - // - // lbAction - // - this.lbAction.AutoSize = true; - this.lbAction.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.lbAction.Location = new System.Drawing.Point(253, 248); - this.lbAction.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.lbAction.Name = "lbAction"; - this.lbAction.Size = new System.Drawing.Size(49, 13); - this.lbAction.TabIndex = 8; - this.lbAction.Text = "Actions"; - // - // plPattern - // - this.plPattern.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.plPattern.Controls.Add(this.btnMatch); - this.plPattern.Controls.Add(this.btnMorphTypes); - this.plPattern.Controls.Add(this.btnCategory); - this.plPattern.Controls.Add(this.tbCategory); - this.plPattern.Controls.Add(this.lbCategory); - this.plPattern.Controls.Add(this.lBoxMorphTypes); - this.plPattern.Controls.Add(this.lbMorphTypes); - this.plPattern.Controls.Add(this.tbMatch); - this.plPattern.Controls.Add(this.lbMatch); - this.plPattern.Location = new System.Drawing.Point(247, 57); - this.plPattern.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.plPattern.Name = "plPattern"; - this.plPattern.Size = new System.Drawing.Size(518, 166); - this.plPattern.TabIndex = 5; - // - // btnMatch - // - this.btnMatch.Location = new System.Drawing.Point(337, 9); - this.btnMatch.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.btnMatch.Name = "btnMatch"; - this.btnMatch.Size = new System.Drawing.Size(96, 21); - this.btnMatch.TabIndex = 2; - this.btnMatch.Text = "&Define match"; - this.btnMatch.UseVisualStyleBackColor = true; - this.btnMatch.Click += new System.EventHandler(this.btnMatch_Click); - // - // btnMorphTypes - // - this.btnMorphTypes.Location = new System.Drawing.Point(356, 42); - this.btnMorphTypes.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.btnMorphTypes.Name = "btnMorphTypes"; - this.btnMorphTypes.Size = new System.Drawing.Size(39, 18); - this.btnMorphTypes.TabIndex = 5; - this.btnMorphTypes.Text = "&Edit"; - this.btnMorphTypes.UseVisualStyleBackColor = true; - this.btnMorphTypes.Click += new System.EventHandler(this.btnMorphTypes_Click); - // - // btnCategory - // - this.btnCategory.Location = new System.Drawing.Point(474, 133); - this.btnCategory.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.btnCategory.Name = "btnCategory"; - this.btnCategory.Size = new System.Drawing.Size(20, 18); - this.btnCategory.TabIndex = 8; - this.btnCategory.Text = "..."; - this.btnCategory.UseVisualStyleBackColor = true; - this.btnCategory.Click += new System.EventHandler(this.btnCategory_Click); - // - // tbCategory - // - this.tbCategory.Location = new System.Drawing.Point(165, 135); - this.tbCategory.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.tbCategory.Multiline = true; - this.tbCategory.Name = "tbCategory"; - this.tbCategory.ReadOnly = true; - this.tbCategory.Size = new System.Drawing.Size(285, 18); - this.tbCategory.TabIndex = 7; - // - // lbCategory - // - this.lbCategory.AutoSize = true; - this.lbCategory.Location = new System.Drawing.Point(85, 135); - this.lbCategory.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.lbCategory.Name = "lbCategory"; - this.lbCategory.Size = new System.Drawing.Size(49, 13); - this.lbCategory.TabIndex = 6; - this.lbCategory.Text = "Category"; - // - // lBoxMorphTypes - // - this.lBoxMorphTypes.Enabled = false; - this.lBoxMorphTypes.FormattingEnabled = true; - this.lBoxMorphTypes.Location = new System.Drawing.Point(165, 42); - this.lBoxMorphTypes.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.lBoxMorphTypes.Name = "lBoxMorphTypes"; - this.lBoxMorphTypes.Size = new System.Drawing.Size(177, 82); - this.lBoxMorphTypes.Sorted = true; - this.lBoxMorphTypes.TabIndex = 4; - // - // lbMorphTypes - // - this.lbMorphTypes.AutoSize = true; - this.lbMorphTypes.Location = new System.Drawing.Point(85, 42); - this.lbMorphTypes.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.lbMorphTypes.Name = "lbMorphTypes"; - this.lbMorphTypes.Size = new System.Drawing.Size(69, 13); - this.lbMorphTypes.TabIndex = 3; - this.lbMorphTypes.Text = "Morph Types"; - // - // tbMatch - // - this.tbMatch.Enabled = false; - this.tbMatch.Location = new System.Drawing.Point(165, 9); - this.tbMatch.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.tbMatch.Name = "tbMatch"; - this.tbMatch.Size = new System.Drawing.Size(137, 20); - this.tbMatch.TabIndex = 1; - this.tbMatch.Text = "My match"; - // - // lbMatch - // - this.lbMatch.AutoSize = true; - this.lbMatch.Location = new System.Drawing.Point(85, 8); - this.lbMatch.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.lbMatch.Name = "lbMatch"; - this.lbMatch.Size = new System.Drawing.Size(37, 13); - this.lbMatch.TabIndex = 0; - this.lbMatch.Text = "Match"; - // - // plActions - // - this.plActions.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.plActions.Controls.Add(this.lbReplaceRightClickToEdit); - this.plActions.Controls.Add(this.btnEnvironments); - this.plActions.Controls.Add(this.lbReplaceOps); - this.plActions.Controls.Add(this.btnStemName); - this.plActions.Controls.Add(this.tbStemName); - this.plActions.Controls.Add(this.lbStemName); - this.plActions.Controls.Add(this.lBoxReplaceOps); - this.plActions.Controls.Add(this.lBoxEnvironments); - this.plActions.Controls.Add(this.lbEnvironments); - this.plActions.Location = new System.Drawing.Point(248, 240); - this.plActions.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.plActions.Name = "plActions"; - this.plActions.Size = new System.Drawing.Size(516, 259); - this.plActions.TabIndex = 7; - // - // lbReplaceRightClickToEdit - // - this.lbReplaceRightClickToEdit.AutoSize = true; - this.lbReplaceRightClickToEdit.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.lbReplaceRightClickToEdit.Location = new System.Drawing.Point(203, 3); - this.lbReplaceRightClickToEdit.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.lbReplaceRightClickToEdit.Name = "lbReplaceRightClickToEdit"; - this.lbReplaceRightClickToEdit.Size = new System.Drawing.Size(95, 13); - this.lbReplaceRightClickToEdit.TabIndex = 1; - this.lbReplaceRightClickToEdit.Text = "(Right-click to edit)"; - // - // btnEnvironments - // - this.btnEnvironments.Location = new System.Drawing.Point(399, 119); - this.btnEnvironments.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.btnEnvironments.Name = "btnEnvironments"; - this.btnEnvironments.Size = new System.Drawing.Size(33, 20); - this.btnEnvironments.TabIndex = 5; - this.btnEnvironments.Text = "Ed&it"; - this.btnEnvironments.UseVisualStyleBackColor = true; - this.btnEnvironments.Click += new System.EventHandler(this.btnEnvironments_Click); - // - // lbReplaceOps - // - this.lbReplaceOps.AutoSize = true; - this.lbReplaceOps.Location = new System.Drawing.Point(83, 4); - this.lbReplaceOps.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.lbReplaceOps.Name = "lbReplaceOps"; - this.lbReplaceOps.Size = new System.Drawing.Size(99, 13); - this.lbReplaceOps.TabIndex = 0; - this.lbReplaceOps.Text = "Replace operations"; - // - // btnStemName - // - this.btnStemName.Location = new System.Drawing.Point(480, 214); - this.btnStemName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.btnStemName.Name = "btnStemName"; - this.btnStemName.Size = new System.Drawing.Size(20, 18); - this.btnStemName.TabIndex = 8; - this.btnStemName.Text = "..."; - this.btnStemName.UseVisualStyleBackColor = true; - this.btnStemName.Click += new System.EventHandler(this.btnStemName_Click); - // - // tbStemName - // - this.tbStemName.Location = new System.Drawing.Point(192, 214); - this.tbStemName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.tbStemName.Name = "tbStemName"; - this.tbStemName.ReadOnly = true; - this.tbStemName.Size = new System.Drawing.Size(285, 20); - this.tbStemName.TabIndex = 7; - // - // lbStemName - // - this.lbStemName.AutoSize = true; - this.lbStemName.Location = new System.Drawing.Point(81, 214); - this.lbStemName.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.lbStemName.Name = "lbStemName"; - this.lbStemName.Size = new System.Drawing.Size(60, 13); - this.lbStemName.TabIndex = 6; - this.lbStemName.Text = "Stem name"; - // - // lBoxReplaceOps - // - this.lBoxReplaceOps.FormattingEnabled = true; - this.lBoxReplaceOps.Location = new System.Drawing.Point(83, 21); - this.lBoxReplaceOps.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.lBoxReplaceOps.Name = "lBoxReplaceOps"; - this.lBoxReplaceOps.Size = new System.Drawing.Size(418, 82); - this.lBoxReplaceOps.TabIndex = 2; - this.lBoxReplaceOps.DoubleClick += new System.EventHandler(this.lBoxReplaceOps_DoubleClick); - this.lBoxReplaceOps.MouseUp += new System.Windows.Forms.MouseEventHandler(this.lBoxReplaceOps_MouseUp); - // - // lBoxEnvironments - // - this.lBoxEnvironments.Enabled = false; - this.lBoxEnvironments.FormattingEnabled = true; - this.lBoxEnvironments.Location = new System.Drawing.Point(177, 119); - this.lBoxEnvironments.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.lBoxEnvironments.Name = "lBoxEnvironments"; - this.lBoxEnvironments.Size = new System.Drawing.Size(207, 82); - this.lBoxEnvironments.TabIndex = 4; - // - // lbEnvironments - // - this.lbEnvironments.AutoSize = true; - this.lbEnvironments.Location = new System.Drawing.Point(83, 119); - this.lbEnvironments.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.lbEnvironments.Name = "lbEnvironments"; - this.lbEnvironments.Size = new System.Drawing.Size(71, 13); - this.lbEnvironments.TabIndex = 3; - this.lbEnvironments.Text = "Environments"; - // - // tabRunOps - // - this.tabRunOps.Controls.Add(this.btnSaveChanges2); - this.tabRunOps.Controls.Add(this.lvOperations); - this.tabRunOps.Controls.Add(this.lbCountRunOps); - this.tabRunOps.Controls.Add(this.lvPreview); - this.tabRunOps.Controls.Add(this.lbPreview); - this.tabRunOps.Controls.Add(this.btnApplyOperations); - this.tabRunOps.Controls.Add(this.lbOperationsToApply); - this.tabRunOps.Location = new System.Drawing.Point(4, 22); - this.tabRunOps.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.tabRunOps.Name = "tabRunOps"; - this.tabRunOps.Padding = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.tabRunOps.Size = new System.Drawing.Size(851, 560); - this.tabRunOps.TabIndex = 1; - this.tabRunOps.Text = "Run Operations"; - this.tabRunOps.UseVisualStyleBackColor = true; - // - // btnSaveChanges2 - // - this.btnSaveChanges2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.btnSaveChanges2.Location = new System.Drawing.Point(302, 502); - this.btnSaveChanges2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.btnSaveChanges2.Name = "btnSaveChanges2"; - this.btnSaveChanges2.Size = new System.Drawing.Size(87, 22); - this.btnSaveChanges2.TabIndex = 5; - this.btnSaveChanges2.Text = "&Save Changes"; - this.btnSaveChanges2.UseVisualStyleBackColor = true; - this.btnSaveChanges2.Click += new System.EventHandler(this.btnSaveChanges2_Click); - // - // lvOperations - // - this.lvOperations.CheckBoxes = true; - this.lvOperations.FullRowSelect = true; - this.lvOperations.GridLines = true; - this.lvOperations.HideSelection = false; - this.lvOperations.Location = new System.Drawing.Point(15, 32); - this.lvOperations.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.lvOperations.MultiSelect = false; - this.lvOperations.Name = "lvOperations"; - this.lvOperations.Size = new System.Drawing.Size(237, 436); - this.lvOperations.TabIndex = 1; - this.lvOperations.UseCompatibleStateImageBehavior = false; - this.lvOperations.View = System.Windows.Forms.View.Details; - this.lvOperations.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.lvOperations_ColumnClick); - this.lvOperations.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.lvOperations_ItemChecked); - this.lvOperations.SelectedIndexChanged += new System.EventHandler(this.lvOperations_SelectedIndexChanged); - // - // lbCountRunOps - // - this.lbCountRunOps.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.lbCountRunOps.AutoSize = true; - this.lbCountRunOps.Location = new System.Drawing.Point(803, 499); - this.lbCountRunOps.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.lbCountRunOps.Name = "lbCountRunOps"; - this.lbCountRunOps.Size = new System.Drawing.Size(42, 13); - this.lbCountRunOps.TabIndex = 6; - this.lbCountRunOps.Text = "1 / 160"; - // - // lvPreview - // - this.lvPreview.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.lvPreview.CheckBoxes = true; - this.lvPreview.FullRowSelect = true; - this.lvPreview.GridLines = true; - this.lvPreview.HideSelection = false; - this.lvPreview.Location = new System.Drawing.Point(255, 32); - this.lvPreview.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.lvPreview.Name = "lvPreview"; - this.lvPreview.Size = new System.Drawing.Size(583, 436); - this.lvPreview.TabIndex = 3; - this.lvPreview.UseCompatibleStateImageBehavior = false; - this.lvPreview.View = System.Windows.Forms.View.Details; - this.lvPreview.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.lvPreview_ColumnClick); - // - // lbPreview - // - this.lbPreview.AutoSize = true; - this.lbPreview.Location = new System.Drawing.Point(260, 14); - this.lbPreview.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.lbPreview.Name = "lbPreview"; - this.lbPreview.Size = new System.Drawing.Size(147, 13); - this.lbPreview.TabIndex = 2; - this.lbPreview.Text = "Preview of selected operation"; - // - // btnApplyOperations - // - this.btnApplyOperations.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.btnApplyOperations.Location = new System.Drawing.Point(15, 495); - this.btnApplyOperations.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.btnApplyOperations.Name = "btnApplyOperations"; - this.btnApplyOperations.Size = new System.Drawing.Size(225, 38); - this.btnApplyOperations.TabIndex = 4; - this.btnApplyOperations.Text = "Apply Checked Operations"; - this.btnApplyOperations.UseVisualStyleBackColor = true; - this.btnApplyOperations.Click += new System.EventHandler(this.btnApplyOperations_Click); - // - // lbOperationsToApply - // - this.lbOperationsToApply.AutoSize = true; - this.lbOperationsToApply.Location = new System.Drawing.Point(13, 14); - this.lbOperationsToApply.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.lbOperationsToApply.Name = "lbOperationsToApply"; - this.lbOperationsToApply.Size = new System.Drawing.Size(98, 13); - this.lbOperationsToApply.TabIndex = 0; - this.lbOperationsToApply.Text = "Operations to apply"; - // - // tabEditReplaceOps - // - this.tabEditReplaceOps.Controls.Add(this.lbCountReplaceOps); - this.tabEditReplaceOps.Controls.Add(this.btnSaveChanges3); - this.tabEditReplaceOps.Controls.Add(this.btnDeleteReplaceOp); - this.tabEditReplaceOps.Controls.Add(this.btnEditReplaceOp); - this.tabEditReplaceOps.Controls.Add(this.btnAddNewReplaceOp); - this.tabEditReplaceOps.Controls.Add(this.lvEditReplaceOps); - this.tabEditReplaceOps.Location = new System.Drawing.Point(4, 22); - this.tabEditReplaceOps.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.tabEditReplaceOps.Name = "tabEditReplaceOps"; - this.tabEditReplaceOps.Padding = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.tabEditReplaceOps.Size = new System.Drawing.Size(851, 560); - this.tabEditReplaceOps.TabIndex = 2; - this.tabEditReplaceOps.Text = "Edit Replace Operations"; - this.tabEditReplaceOps.UseVisualStyleBackColor = true; - // - // lbCountReplaceOps - // - this.lbCountReplaceOps.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.lbCountReplaceOps.AutoSize = true; - this.lbCountReplaceOps.Location = new System.Drawing.Point(799, 512); - this.lbCountReplaceOps.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.lbCountReplaceOps.Name = "lbCountReplaceOps"; - this.lbCountReplaceOps.Size = new System.Drawing.Size(42, 13); - this.lbCountReplaceOps.TabIndex = 7; - this.lbCountReplaceOps.Text = "1 / 160"; - // - // btnSaveChanges3 - // - this.btnSaveChanges3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.btnSaveChanges3.Location = new System.Drawing.Point(444, 511); - this.btnSaveChanges3.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.btnSaveChanges3.Name = "btnSaveChanges3"; - this.btnSaveChanges3.Size = new System.Drawing.Size(87, 22); - this.btnSaveChanges3.TabIndex = 6; - this.btnSaveChanges3.Text = "&Save Changes"; - this.btnSaveChanges3.UseVisualStyleBackColor = true; - this.btnSaveChanges3.Click += new System.EventHandler(this.btnSaveChanges3_Click); - // - // btnDeleteReplaceOp - // - this.btnDeleteReplaceOp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.btnDeleteReplaceOp.Location = new System.Drawing.Point(291, 505); - this.btnDeleteReplaceOp.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.btnDeleteReplaceOp.Name = "btnDeleteReplaceOp"; - this.btnDeleteReplaceOp.Size = new System.Drawing.Size(95, 28); - this.btnDeleteReplaceOp.TabIndex = 3; - this.btnDeleteReplaceOp.Text = "&Delete"; - this.btnDeleteReplaceOp.UseVisualStyleBackColor = true; - this.btnDeleteReplaceOp.Click += new System.EventHandler(this.btnDeleteReplaceOp_Click); - // - // btnEditReplaceOp - // - this.btnEditReplaceOp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.btnEditReplaceOp.Location = new System.Drawing.Point(4, 505); - this.btnEditReplaceOp.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.btnEditReplaceOp.Name = "btnEditReplaceOp"; - this.btnEditReplaceOp.Size = new System.Drawing.Size(95, 28); - this.btnEditReplaceOp.TabIndex = 2; - this.btnEditReplaceOp.Text = "&Edit"; - this.btnEditReplaceOp.UseVisualStyleBackColor = true; - this.btnEditReplaceOp.Click += new System.EventHandler(this.btnEditReplaceOp_Click); - // - // btnAddNewReplaceOp - // - this.btnAddNewReplaceOp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.btnAddNewReplaceOp.Location = new System.Drawing.Point(147, 505); - this.btnAddNewReplaceOp.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.btnAddNewReplaceOp.Name = "btnAddNewReplaceOp"; - this.btnAddNewReplaceOp.Size = new System.Drawing.Size(95, 28); - this.btnAddNewReplaceOp.TabIndex = 1; - this.btnAddNewReplaceOp.Text = "&Add new"; - this.btnAddNewReplaceOp.UseVisualStyleBackColor = true; - this.btnAddNewReplaceOp.Click += new System.EventHandler(this.btnAddNewReplaceOp_Click); - // - // lvEditReplaceOps - // - this.lvEditReplaceOps.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.lvEditReplaceOps.FullRowSelect = true; - this.lvEditReplaceOps.GridLines = true; - this.lvEditReplaceOps.HideSelection = false; - this.lvEditReplaceOps.Location = new System.Drawing.Point(4, 10); - this.lvEditReplaceOps.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.lvEditReplaceOps.MultiSelect = false; - this.lvEditReplaceOps.Name = "lvEditReplaceOps"; - this.lvEditReplaceOps.Size = new System.Drawing.Size(846, 468); - this.lvEditReplaceOps.TabIndex = 0; - this.lvEditReplaceOps.UseCompatibleStateImageBehavior = false; - this.lvEditReplaceOps.View = System.Windows.Forms.View.Details; - this.lvEditReplaceOps.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.lvEditReplaceOps_ColumnClick); - this.lvEditReplaceOps.SelectedIndexChanged += new System.EventHandler(this.lvEditReplaceOps_SelectedIndexChanged); - this.lvEditReplaceOps.DoubleClick += new System.EventHandler(this.lvEditReplaceOps_DoubleClick); - this.lvEditReplaceOps.MouseUp += new System.Windows.Forms.MouseEventHandler(this.lvEditReplaceOps_MouseUp); - // - // lbAlloGenFile - // - this.lbAlloGenFile.AutoSize = true; - this.lbAlloGenFile.Location = new System.Drawing.Point(15, 8); - this.lbAlloGenFile.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.lbAlloGenFile.Name = "lbAlloGenFile"; - this.lbAlloGenFile.Size = new System.Drawing.Size(26, 13); - this.lbAlloGenFile.TabIndex = 0; - this.lbAlloGenFile.Text = "File:"; - // - // tbFile - // - this.tbFile.Location = new System.Drawing.Point(67, 8); - this.tbFile.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.tbFile.Name = "tbFile"; - this.tbFile.Size = new System.Drawing.Size(665, 20); - this.tbFile.TabIndex = 1; - this.tbFile.Text = "XML file location"; - // - // btnBrowse - // - this.btnBrowse.Location = new System.Drawing.Point(757, 10); - this.btnBrowse.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.btnBrowse.Name = "btnBrowse"; - this.btnBrowse.Size = new System.Drawing.Size(57, 25); - this.btnBrowse.TabIndex = 2; - this.btnBrowse.Text = "&Browse"; - this.btnBrowse.UseVisualStyleBackColor = true; - this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click); - // - // btnHelp - // - this.btnHelp.Location = new System.Drawing.Point(757, 40); - this.btnHelp.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.btnHelp.Name = "btnHelp"; - this.btnHelp.Size = new System.Drawing.Size(57, 25); - this.btnHelp.TabIndex = 4; - this.btnHelp.Text = "&Help"; - this.btnHelp.UseVisualStyleBackColor = true; - this.btnHelp.Click += new System.EventHandler(this.btnHelp_Click); - // - // btnNewFile - // - this.btnNewFile.Location = new System.Drawing.Point(18, 40); - this.btnNewFile.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.btnNewFile.Name = "btnNewFile"; - this.btnNewFile.Size = new System.Drawing.Size(99, 19); - this.btnNewFile.TabIndex = 3; - this.btnNewFile.Text = "&Create New File"; - this.btnNewFile.UseVisualStyleBackColor = true; - this.btnNewFile.Click += new System.EventHandler(this.btnNewFile_Click); - // - // ilPreview - // - this.ilPreview.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilPreview.ImageStream"))); - this.ilPreview.TransparentColor = System.Drawing.Color.Transparent; - this.ilPreview.Images.SetKeyName(0, "CheckedCheckbox.bmp"); - // - // AlloGenFormBase - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(859, 647); - this.Controls.Add(this.btnNewFile); - this.Controls.Add(this.btnHelp); - this.Controls.Add(this.btnBrowse); - this.Controls.Add(this.tbFile); - this.Controls.Add(this.lbAlloGenFile); - this.Controls.Add(this.tabControl); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.KeyPreview = true; - this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); - this.Name = "AlloGenFormBase"; - this.tabControl.ResumeLayout(false); - this.tabEditOps.ResumeLayout(false); - this.tabEditOps.PerformLayout(); - this.plPattern.ResumeLayout(false); - this.plPattern.PerformLayout(); - this.plActions.ResumeLayout(false); - this.plActions.PerformLayout(); - this.tabRunOps.ResumeLayout(false); - this.tabRunOps.PerformLayout(); - this.tabEditReplaceOps.ResumeLayout(false); - this.tabEditReplaceOps.PerformLayout(); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - protected System.Windows.Forms.TabControl tabControl; - protected System.Windows.Forms.TabPage tabEditOps; - protected System.Windows.Forms.TabPage tabRunOps; - protected System.Windows.Forms.ListBox lBoxOperations; - protected System.Windows.Forms.Label lbAlloGenFile; - protected System.Windows.Forms.TextBox tbFile; - protected System.Windows.Forms.Button btnBrowse; - protected System.Windows.Forms.Button btnHelp; - protected System.Windows.Forms.TextBox tbName; - protected System.Windows.Forms.TextBox tbDescription; - protected System.Windows.Forms.Label lbPattern; - protected System.Windows.Forms.Label lbAction; - protected System.Windows.Forms.Label lbName; - protected System.Windows.Forms.Label lbDescription; - protected System.Windows.Forms.ListBox lBoxEnvironments; - protected System.Windows.Forms.ListBox lBoxMorphTypes; - protected System.Windows.Forms.Label lbEnvironments; - protected System.Windows.Forms.Label lbMorphTypes; - protected System.Windows.Forms.TextBox tbMatch; - protected System.Windows.Forms.Label lbMatch; - protected System.Windows.Forms.ListBox lBoxReplaceOps; - protected System.Windows.Forms.Button btnCategory; - protected System.Windows.Forms.TextBox tbCategory; - protected System.Windows.Forms.Label lbCategory; - protected System.Windows.Forms.Button btnStemName; - protected System.Windows.Forms.TextBox tbStemName; - protected System.Windows.Forms.Label lbStemName; - protected System.Windows.Forms.Label lbReplaceOps; - protected System.Windows.Forms.Button btnEnvironments; - protected System.Windows.Forms.Button btnMorphTypes; - protected System.Windows.Forms.Label lbReplaceRightClickToEdit; - protected System.Windows.Forms.Label lbOpRightClickToEdit; - protected System.Windows.Forms.Label lbOperations; - protected System.Windows.Forms.Button btnSaveChanges; - protected System.Windows.Forms.Panel plPattern; - protected System.Windows.Forms.Panel plActions; - protected System.Windows.Forms.Button btnNewFile; - protected System.Windows.Forms.Button btnMatch; - protected System.Windows.Forms.Label lbOperationsToApply; - protected System.Windows.Forms.Button btnApplyOperations; - protected System.Windows.Forms.Label lbPreview; - protected System.Windows.Forms.ListView lvPreview; - protected System.Windows.Forms.Label lbCountRunOps; - protected ImageList ilPreview; - protected ListView lvOperations; - protected Button btnSaveChanges2; - protected TabPage tabEditReplaceOps; - protected Button btnEditReplaceOp; - protected Button btnAddNewReplaceOp; - protected ListView lvEditReplaceOps; - protected Button btnDeleteReplaceOp; - protected Button btnSaveChanges3; - protected Label lbCountReplaceOps; - protected Label lbCountOps; - protected Label lbApplyTo; - protected ComboBox cbApplyTo; - private System.ComponentModel.IContainer components; - } -} - diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/AlloGenFormBase.cs b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/AlloGenFormBase.cs deleted file mode 100644 index 1b5e2677a7..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/AlloGenFormBase.cs +++ /dev/null @@ -1,2035 +0,0 @@ -// Copyright (c) 2022-2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using Microsoft.Win32; -using SIL.AlloGenModel; -using SIL.AlloGenService; -using SIL.FieldWorks.Common.Controls; -using SIL.FieldWorks.Common.FwUtils; -using SIL.FieldWorks.Common.ViewsInterfaces; -using SIL.FieldWorks.Common.Widgets; -using SIL.FieldWorks.Filters; -using SIL.FieldWorks.FwCoreDlgs; -using SIL.LCModel; -using SIL.LCModel.Core.KernelInterfaces; -using SIL.LCModel.Core.WritingSystems; -using SIL.LCModel.DomainServices; -using SIL.LCModel.Infrastructure; -using SIL.Utils; -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Diagnostics; -using System.Drawing; -using System.IO; -using System.Linq; -using System.Reflection; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; -using XCore; -using static SIL.AlloGenService.FLExCustomFieldsObtainer; - -namespace SIL.AllomorphGenerator -{ - public abstract partial class AlloGenFormBase : Form - { - public LcmCache Cache { get; set; } - public Mediator Mediator { get; set; } - public PropertyTable PropTable { get; set; } - protected AllomorphCreator alloCreator; - - protected RegistryKey regkey; - protected const string m_strLastDatabase = "LastDatabase"; - protected const string m_strLastOperationsFile = "LastOperationsFile"; - protected const string m_strLastOperation = "Lastoperation"; - protected const string m_strLastApplyOperation = "LastApplyOperation"; - protected const string m_strLastEditReplaceOps = "LastEditReplaceOps"; - protected const string m_strLastTab = "LastTab"; - protected const string m_strLocationX = "LocationX"; - protected const string m_strLocationY = "LocationY"; - protected const string m_strSizeHeight = "SizeHeight"; - protected const string m_strSizeWidth = "SizeWidth"; - protected const string m_strWindowState = "WindowState"; - - protected ContextMenuStrip helpContextMenu; - protected const string UserDocumentation = "User Documentation"; - protected const string About = "About"; - - protected const string OperationsFilePrompt = - "Allomorph Generator Operations File (*.agf)|*.agf|" + "All Files (*.*)|*.*"; - - public Rectangle RectNormal { get; set; } - - public string LastDatabase { get; set; } - public string LastOperationsFile { get; set; } - public int LastOperation { get; set; } - public int LastApplyOperation { get; set; } - public int LastEditReplaceOps { get; set; } - public int LastTab { get; set; } - public int RetrievedLastOperation { get; set; } - public int RetrievedLastApplyOperation { get; set; } - public int RetrievedLastEditReplaceOps { get; set; } - - protected XmlBackEndProvider Provider { get; set; } - protected DatabaseMigrator Migrator { get; set; } - protected String OperationsFile { get; set; } - protected AllomorphGenerators AlloGens { get; set; } - protected List<Operation> Operations { get; set; } - protected Operation Operation { get; set; } - protected Operation LastOperationShown { get; set; } = null; - protected List<Replace> ReplaceOps { get; set; } - protected List<string> ReplaceOpRefs { get; set; } - protected List<WritingSystem> WritingSystems { get; set; } = new List<WritingSystem>(); - protected AlloGenModel.Action ActionOp { get; set; } - protected StemName StemName { get; set; } - protected Pattern Pattern { get; set; } - protected Category Category { get; set; } - protected bool ChangesMade { get; set; } = false; - protected Font fontForDefaultCitationForm; - protected FontInfo fontInfoForDefaultCitationForm; - protected Color colorForDefaultCitationForm; - protected Dictionary<Operation, List<ILexEntry>> dictNonChosen = - new Dictionary<Operation, List<ILexEntry>>(); - protected Dictionary<Operation, bool> dictOperationActiveState = - new Dictionary<Operation, bool>(); - - protected ListBox currentListBox; - protected ContextMenuStrip editContextMenu; - protected ContextMenuStrip editReplaceOpsContextMenu; - protected const string formTitle = "Allomorph Generator"; - protected const string cmAdd = "Add"; - protected const string cmEdit = "Edit"; - protected const string cmInsertBefore = "Insert new before"; - protected const string cmInsertExistingBefore = "Insert existing before"; - protected const string cmInsertAfter = "Insert new after"; - protected const string cmInsertExistingAfter = "Insert existing after"; - protected const string cmMoveUp = "Move up"; - protected const string cmMoveDown = "Move down"; - protected const string cmDelete = "Delete"; - protected const string cmDuplicate = "Duplicate"; - - protected ContextMenuStrip operationsCheckBoxContextMenu; - protected ContextMenuStrip previewCheckBoxContextMenu; - protected const string cmSelectAll = "Select All"; - protected const string cmClearAll = "Clear All"; - protected const string cmToggle = "Toggle"; - protected ListViewColumnSorter lvwColumnSorter; - protected ListViewColumnSorter lvwEditReplaceOpsColumnSorter; - protected List<FDWrapper> customFields = new List<FDWrapper>(); - protected string applyToField = ""; - - protected void FillApplyToComboBox() - { - ApplyTo cit = new ApplyTo("Citation Form", LexEntryTags.kflidCitationForm); - ApplyTo lex = new ApplyTo("Lexeme Form", LexEntryTags.kflidLexemeForm); - ApplyTo ety = new ApplyTo("Etymology Form", LexEntryTags.kflidEtymology); - cbApplyTo.Items.Add(cit); - cbApplyTo.Items.Add(lex); - cbApplyTo.Items.Add(ety); - foreach (FDWrapper fdw in customFields) - { - ApplyTo cf = new ApplyTo(fdw.Fd.Name, fdw.Fd.Id); - cbApplyTo.Items.Add(cf); - } - if (AlloGens.ApplyTo > -1) - { - int index = AlloGens.ApplyTo; - if (index >= cbApplyTo.Items.Count) - index = 0; - cbApplyTo.SelectedIndex = index; - } - else - { - cbApplyTo.SelectedIndex = 0; - } - } - - protected void SetUpOperationsCheckedListBox() - { - lvOperations.SmallImageList = ilPreview; - lvOperations.Columns.Add("", "", 25, HorizontalAlignment.Left, 0); - lvOperations.Columns.Add("Operations", -2, HorizontalAlignment.Left); - } - - protected void SetUpPreviewCheckedListBox() - { - lvPreview.SmallImageList = ilPreview; - lvPreview.Columns.Clear(); - lvPreview.Columns.Add("", "", 25, HorizontalAlignment.Left, 0); - lvPreview.Columns.Add(applyToField, -2, HorizontalAlignment.Left); - foreach (WritingSystem ws in WritingSystems) - { - lvPreview.Columns.Add(ws.Name + " ", -2, HorizontalAlignment.Left); - } - } - - protected void SetUpEditReplaceOpsListView() - { - lvEditReplaceOps.Columns.Add("Name", -2, HorizontalAlignment.Left); - lvEditReplaceOps.Columns.Add("From", -2, HorizontalAlignment.Left); - lvEditReplaceOps.Columns.Add("To", -2, HorizontalAlignment.Left); - lvEditReplaceOps.Columns.Add("Mode", -2, HorizontalAlignment.Left); - foreach (WritingSystem ws in WritingSystems) - { - lvEditReplaceOps.Columns.Add(ws.Name, -2, HorizontalAlignment.Left); - } - lvEditReplaceOps.Columns.Add("Description", -2, HorizontalAlignment.Left); - } - - protected void SetupFontAndStyleInfo() - { - if (Cache != null) - { - var styles = Cache.LangProject.StylesOC.ToDictionary(style => style.Name); - IStStyle normal = Cache.LangProject.StylesOC.FirstOrDefault( - style => style.Name == "Normal" - ); - if (normal != null) - { - SIL.FieldWorks.FwCoreDlgControls.StyleInfo styleInfo = - new SIL.FieldWorks.FwCoreDlgControls.StyleInfo(normal); - IList<CoreWritingSystemDefinition> vernWses = Cache - .LangProject - .CurrentVernacularWritingSystems; - WritingSystems.Clear(); - foreach (CoreWritingSystemDefinition def in vernWses) - { - float fontSize = Math.Max(def.DefaultFontSize, 10); - WritingSystem ws = new WritingSystem(); - ws.Name = def.Abbreviation; - ws.Handle = def.Handle; - ws.Font = new Font(def.DefaultFontName, fontSize); - ws.FontInfo = styleInfo.FontInfoForWs(def.Handle); - if (ws.FontInfo.FontColor.ValueIsSet) - ws.Color = ws.FontInfo.FontColor.Value; - SetFontAndStyleInfoForDefaultCitationForm(ws); - WritingSystems.Add(ws); - } - } - } - } - - protected void SetFontAndStyleInfoForDefaultCitationForm(WritingSystem ws) - { - if (ws.Handle == Cache.DefaultVernWs) - { - fontForDefaultCitationForm = ws.Font; - fontInfoForDefaultCitationForm = ws.FontInfo; - colorForDefaultCitationForm = ws.Color; - } - } - - protected void RememberTabSelection() - { - if (LastTab < 0 || LastTab > tabControl.TabCount) - LastTab = 0; - tabControl.SelectedIndex = LastTab; - } - - protected void BuildReplaceContextMenu() - { - editContextMenu = new ContextMenuStrip(); - editContextMenu.Name = "ReplaceOps"; - ToolStripMenuItem editItem = new ToolStripMenuItem(cmEdit); - editItem.Click += new EventHandler(EditContextMenuReplace_Click); - editItem.Name = cmEdit; - ToolStripMenuItem insertBefore = new ToolStripMenuItem(cmInsertBefore); - insertBefore.Click += new EventHandler(InsertBeforeContextMenu_Click); - insertBefore.Name = cmInsertBefore; - ToolStripMenuItem insertExistingBefore = new ToolStripMenuItem(cmInsertExistingBefore); - insertExistingBefore.Click += new EventHandler(InsertExistingBeforeContextMenu_Click); - insertExistingBefore.Name = cmInsertExistingBefore; - ToolStripMenuItem insertAfter = new ToolStripMenuItem(cmInsertAfter); - insertAfter.Click += new EventHandler(InsertAfterContextMenu_Click); - insertAfter.Name = cmInsertAfter; - ToolStripMenuItem insertExistingAfter = new ToolStripMenuItem(cmInsertExistingAfter); - insertExistingAfter.Click += new EventHandler(InsertExistingAfterContextMenu_Click); - insertExistingAfter.Name = cmInsertExistingAfter; - ToolStripMenuItem moveUp = new ToolStripMenuItem(cmMoveUp); - moveUp.Click += new EventHandler(MoveUpContextMenu_Click); - moveUp.Name = cmMoveUp; - ToolStripMenuItem moveDown = new ToolStripMenuItem(cmMoveDown); - moveDown.Click += new EventHandler(MoveDownContextMenu_Click); - moveDown.Name = cmMoveDown; - ToolStripMenuItem deleteItem = new ToolStripMenuItem(cmDelete); - deleteItem.Click += new EventHandler(DeleteContextMenu_Click); - deleteItem.Name = cmDelete; - ToolStripMenuItem duplicateItem = new ToolStripMenuItem(cmDuplicate); - duplicateItem.Click += new EventHandler(DuplicateContextMenu_Click); - duplicateItem.Name = cmDuplicate; - editContextMenu.Items.Add(editItem); - editContextMenu.Items.Add("-"); - editContextMenu.Items.Add(duplicateItem); - editContextMenu.Items.Add(insertBefore); - editContextMenu.Items.Add(insertExistingBefore); - editContextMenu.Items.Add(insertAfter); - editContextMenu.Items.Add(insertExistingAfter); - editContextMenu.Items.Add("-"); - editContextMenu.Items.Add(moveUp); - editContextMenu.Items.Add(moveDown); - editContextMenu.Items.Add("-"); - editContextMenu.Items.Add(deleteItem); - } - - protected void BuildOperationsCheckBoxContextMenu() - { - operationsCheckBoxContextMenu = new ContextMenuStrip(); - ToolStripMenuItem selectAll = new ToolStripMenuItem(cmSelectAll); - selectAll.Click += new EventHandler(OperationsSelectAll_Click); - selectAll.Name = cmSelectAll; - ToolStripMenuItem clearAll = new ToolStripMenuItem(cmClearAll); - clearAll.Click += new EventHandler(OperationsClearAll_Click); - clearAll.Name = cmClearAll; - ToolStripMenuItem toggle = new ToolStripMenuItem(cmToggle); - toggle.Click += new EventHandler(OperationsToggle_Click); - toggle.Name = cmToggle; - operationsCheckBoxContextMenu.Items.Add(selectAll); - operationsCheckBoxContextMenu.Items.Add(clearAll); - operationsCheckBoxContextMenu.Items.Add(toggle); - } - - protected void OperationsClearAll_Click(object sender, EventArgs e) - { - foreach (ListViewItem lvItem in lvOperations.Items) - { - lvItem.Checked = false; - } - } - - protected void OperationsSelectAll_Click(object sender, EventArgs e) - { - foreach (ListViewItem lvItem in lvOperations.Items) - { - lvItem.Checked = true; - } - } - - protected void OperationsToggle_Click(object sender, EventArgs e) - { - foreach (ListViewItem lvItem in lvOperations.Items) - { - lvItem.Checked = !lvItem.Checked; - } - } - - protected void BuildPreviewCheckBoxContextMenu() - { - previewCheckBoxContextMenu = new ContextMenuStrip(); - ToolStripMenuItem selectAll = new ToolStripMenuItem(cmSelectAll + " / Ctrl-L"); - selectAll.Click += new EventHandler(PreviewSelectAll_Click); - selectAll.Name = cmSelectAll; - ToolStripMenuItem clearAll = new ToolStripMenuItem(cmClearAll + " / Ctrl-R"); - clearAll.Click += new EventHandler(PreviewClearAll_Click); - clearAll.Name = cmClearAll; - ToolStripMenuItem toggle = new ToolStripMenuItem(cmToggle + " / Ctrl-T"); - toggle.Click += new EventHandler(PreviewToggle_Click); - toggle.Name = cmToggle; - previewCheckBoxContextMenu.Items.Add(selectAll); - previewCheckBoxContextMenu.Items.Add(clearAll); - previewCheckBoxContextMenu.Items.Add(toggle); - this.KeyUp += new KeyEventHandler(AlloGenFormBase_KeyUp); - } - - protected void PreviewClearAll_Click(object sender, EventArgs e) - { - foreach (ListViewItem lvItem in lvPreview.Items) - { - lvItem.Checked = false; - } - } - - protected void PreviewSelectAll_Click(object sender, EventArgs e) - { - foreach (ListViewItem lvItem in lvPreview.Items) - { - lvItem.Checked = true; - } - } - - protected void PreviewToggle_Click(object sender, EventArgs e) - { - foreach (ListViewItem lvItem in lvPreview.Items) - { - lvItem.Checked = !lvItem.Checked; - } - } - - protected void AlloGenFormBase_KeyUp(object sender, KeyEventArgs e) - { - if (tabControl.SelectedTab == tabRunOps) - { - if (e.Control && e.KeyCode == Keys.R) - { - PreviewClearAll_Click(sender, e); - } - else if (e.Control && e.KeyCode == Keys.L) - { - PreviewSelectAll_Click(sender, e); - } - else if (e.Control && e.KeyCode == Keys.T) - { - PreviewToggle_Click(sender, e); - } - } - } - - protected void lBoxReplaceOps_MouseUp(object sender, MouseEventArgs e) - { - HandleContextMenu(sender, e); - } - - protected void lBoxOperations_MouseUp(object sender, MouseEventArgs e) - { - HandleContextMenu(sender, e); - } - - protected void HandleContextMenu(object sender, MouseEventArgs e) - { - if (e.Button == MouseButtons.Right) - { - ListBox lBoxSender = (ListBox)sender; - currentListBox = lBoxSender; - int indexAtMouse = lBoxSender.IndexFromPoint(e.X, e.Y); - if (indexAtMouse > -1) - { - AdjustContextMenuContent(lBoxSender, indexAtMouse); - lBoxSender.SelectedIndex = indexAtMouse; - Point ptClickedAt = e.Location; - ptClickedAt = lBoxSender.PointToScreen(ptClickedAt); - editContextMenu.Show(ptClickedAt); - } - } - } - - protected void lvEditReplaceOps_MouseUp(object sender, MouseEventArgs e) - { - if (e.Button == MouseButtons.Right) - { - ListView lvSender = (ListView)sender; - ListViewItem item = lvSender.GetItemAt(e.X, e.Y); - if (item != null) - { - //AdjustContextMenuContent(lBoxSender, indexAtMouse); - //lBoxSender.SelectedIndex = indexAtMouse; - Point ptClickedAt = e.Location; - ptClickedAt = lvSender.PointToScreen(ptClickedAt); - editReplaceOpsContextMenu.Show(ptClickedAt); - } - } - } - - protected void BuildEditReplaceOpContextMenu() - { - editReplaceOpsContextMenu = new ContextMenuStrip(); - editReplaceOpsContextMenu.Name = "EditReplaceOps"; - ToolStripMenuItem editItem = new ToolStripMenuItem(cmEdit); - editItem.Click += new EventHandler(EditReplaceOpsContextMenuEdit_Click); - editItem.Name = cmEdit; - ToolStripMenuItem add = new ToolStripMenuItem(cmAdd); - add.Click += new EventHandler(EditReplaceOpsContextMenuAdd_Click); - add.Name = cmAdd; - ToolStripMenuItem deleteItem = new ToolStripMenuItem(cmDelete); - deleteItem.Click += new EventHandler(EditReplaceOpsContextMenuDelete_Click); - deleteItem.Name = cmDelete; - ToolStripMenuItem duplicateItem = new ToolStripMenuItem(cmDuplicate); - duplicateItem.Click += new EventHandler(EditReplaceOpsContextMenuDuplicate_Click); - duplicateItem.Name = cmDuplicate; - editReplaceOpsContextMenu.Items.Add(editItem); - editReplaceOpsContextMenu.Items.Add("-"); - editReplaceOpsContextMenu.Items.Add(duplicateItem); - editReplaceOpsContextMenu.Items.Add(add); - editReplaceOpsContextMenu.Items.Add("-"); - editReplaceOpsContextMenu.Items.Add(deleteItem); - } - - protected void AdjustContextMenuContent(ListBox lBoxSender, int indexAtMouse) - { - int indexLast = lBoxSender.Items.Count - 1; - if (lBoxSender.Name == "lBoxOperations") - { - // Do not show Edit and its separator - editContextMenu.Items[cmEdit].Visible = false; - editContextMenu.Items[1].Visible = false; - // Do not show "Insert existing before" or "Insert existing after" - editContextMenu.Items[cmInsertExistingBefore].Visible = false; - editContextMenu.Items[cmInsertExistingAfter].Visible = false; - } - else - { - editContextMenu.Items[cmEdit].Visible = true; - editContextMenu.Items[1].Visible = true; - editContextMenu.Items[cmInsertExistingBefore].Visible = true; - editContextMenu.Items[cmInsertExistingAfter].Visible = true; - } - if (indexAtMouse == 0) - // move up does not work - editContextMenu.Items[cmMoveUp].Enabled = false; - else - editContextMenu.Items[cmMoveUp].Enabled = true; - if (indexAtMouse == 0 && indexLast == 0) - // delete does not work - editContextMenu.Items[cmDelete].Enabled = false; - else - editContextMenu.Items[cmDelete].Enabled = true; - if (indexAtMouse == indexLast) - // move down does not work - editContextMenu.Items[cmMoveDown].Enabled = false; - else - editContextMenu.Items[cmMoveDown].Enabled = true; - } - - protected void EditContextMenuReplace_Click(object sender, EventArgs e) - { - ToolStripItem menuItem = (ToolStripItem)sender; - if (menuItem.Name == cmEdit) - { - InvokeEditReplaceOpForm(); - } - } - - protected void EditReplaceOpsContextMenuReplace_Click(object sender, EventArgs e) - { - ToolStripItem menuItem = (ToolStripItem)sender; - if (menuItem.Name == cmEdit) - { - InvokeEditReplaceOpFormMasterList(); - } - } - - protected void EditReplaceOpsContextMenuEdit_Click(object sender, EventArgs e) - { - ToolStripItem menuItem = (ToolStripItem)sender; - if (menuItem.Name == cmEdit) - { - InvokeEditReplaceOpFormMasterList(); - } - } - - protected void EditReplaceOpsContextMenuDelete_Click(object sender, EventArgs e) - { - ToolStripItem menuItem = (ToolStripItem)sender; - if (menuItem.Name == cmDelete) - { - btnDeleteReplaceOp_Click(sender, e); - } - } - - protected void EditReplaceOpsContextMenuAdd_Click(object sender, EventArgs e) - { - ToolStripItem menuItem = (ToolStripItem)sender; - if (menuItem.Name == cmAdd) - { - btnAddNewReplaceOp_Click(sender, e); - } - } - - protected void EditReplaceOpsContextMenuDuplicate_Click(object sender, EventArgs e) - { - ToolStripItem menuItem = (ToolStripItem)sender; - if (menuItem.Name == cmDuplicate) - { - ListViewItem item = lvEditReplaceOps.SelectedItems[0]; - Replace thisReplace = (Replace)item.Tag; - Replace replace = thisReplace.Duplicate(); - AddNewReplaceOpToMasterList(replace); - InvokeEditReplaceOpFormMasterList(); - } - } - - protected void InvokeEditReplaceOpForm() - { - using (var dialog = new EditReplaceOpForm()) - { - Replace replace = (Replace)lBoxReplaceOps.SelectedItem; - dialog.Initialize(replace, WritingSystems, Cache); - dialog.ShowDialog(); - if (dialog.DialogResult == DialogResult.OK) - { - int index = lBoxReplaceOps.SelectedIndex; - replace = dialog.ReplaceOp; - AlloGens.AddReplaceOp(replace); - lBoxReplaceOps.Items[index] = replace; - MarkAsChanged(true); - } - } - } - - protected void lBoxReplaceOps_DoubleClick(object sender, EventArgs e) - { - InvokeEditReplaceOpForm(); - } - - protected bool CanDoReplaceOpsMasterListOption() - { - bool doable = true; - if (lvEditReplaceOps.SelectedItems.Count == 0) - { - MessageBox.Show("Please select a replace operation first."); - doable = false; - } - return doable; - } - - protected void InsertBeforeContextMenu_Click(object sender, EventArgs e) - { - ToolStripItem menuItem = (ToolStripItem)sender; - if (menuItem.Name == cmInsertBefore) - { - DoContextMenuInsert(currentListBox.SelectedIndex); - } - } - - protected void InsertAfterContextMenu_Click(object sender, EventArgs e) - { - ToolStripItem menuItem = (ToolStripItem)sender; - if (menuItem.Name == cmInsertAfter) - { - DoContextMenuInsert(currentListBox.SelectedIndex + 1); - } - } - - protected void DoContextMenuInsert(int index) - { - if (currentListBox.Name == "lBoxReplaceOps") - { - Replace replace = CreateNewReplace(); - AlloGens.AddReplaceOp(replace); - ReplaceOpRefs.Insert(index, replace.Guid); - currentListBox.Items.Insert(index, replace); - currentListBox.SelectedIndex = index; - InvokeEditReplaceOpForm(); - } - else - { - Operation op = AlloGens.CreateNewOperation(); - // remove the new op added by CreateNewOperation() and insert it at the right place - Operations.Remove(op); - Operations.Insert(index, op); - currentListBox.Items.Insert(index, op); - } - currentListBox.SetSelected(index, true); - MarkAsChanged(true); - } - - protected void InsertExistingAfterContextMenu_Click(object sender, EventArgs e) - { - int selectedIndex = lBoxReplaceOps.SelectedIndex + 1; - InsertExistingReplaceOps(selectedIndex); - } - - protected void InsertExistingBeforeContextMenu_Click(object sender, EventArgs e) - { - int selectedIndex = lBoxReplaceOps.SelectedIndex; - InsertExistingReplaceOps(selectedIndex); - } - - protected void InsertExistingReplaceOps(int selectedIndex) - { - ReplaceOperationsChooser chooser = new ReplaceOperationsChooser(AlloGens); - chooser.FillReplaceOpsListBox(); - chooser.ShowDialog(); - if (chooser.DialogResult == DialogResult.OK) - { - int i = selectedIndex; - foreach (Replace replace in chooser.SelectedReplaceOps) - { - if (i < lBoxReplaceOps.Items.Count) - { - lBoxReplaceOps.Items.Insert(i, replace); - ReplaceOpRefs.Insert(i, replace.Guid); - } - else - { - lBoxReplaceOps.Items.Add(replace); - ReplaceOpRefs.Add(replace.Guid); - } - i++; - } - RefreshReplaceListBox(); - MarkAsChanged(true); - } - } - - protected void MoveUpContextMenu_Click(object sender, EventArgs e) - { - ToolStripItem menuItem = (ToolStripItem)sender; - if (menuItem.Name == cmMoveUp) - { - int index = currentListBox.SelectedIndex; - DoContextMenuMove(index, index - 1); - } - } - - protected void MoveDownContextMenu_Click(object sender, EventArgs e) - { - ToolStripItem menuItem = (ToolStripItem)sender; - if (menuItem.Name == cmMoveDown) - { - int index = currentListBox.SelectedIndex; - DoContextMenuMove(index, index + 1); - } - } - - protected void DoContextMenuMove(int index, int otherIndex) - { - Object selectedItem = currentListBox.SelectedItem; - Object otherItem = currentListBox.Items[otherIndex]; - if (currentListBox.Name == "lBoxReplaceOps") - { - ReplaceOpRefs[index] = ((Replace)otherItem).Guid; - ReplaceOpRefs[otherIndex] = ((Replace)selectedItem).Guid; - } - else - { - Operations[index] = (Operation)otherItem; - Operations[otherIndex] = (Operation)selectedItem; - } - currentListBox.Items[index] = otherItem; - currentListBox.Items[otherIndex] = selectedItem; - currentListBox.SelectedIndex = otherIndex; - MarkAsChanged(true); - } - - protected void DeleteContextMenu_Click(object sender, EventArgs e) - { - ToolStripItem menuItem = (ToolStripItem)sender; - if (menuItem.Name == cmDelete) - { - int index = currentListBox.SelectedIndex; - if (currentListBox.Name == "lBoxReplaceOps") - { - ReplaceOpRefs.RemoveAt(index); - Replace replace = (Replace)currentListBox.Items[index]; - StringBuilder sb = BuildDeleteReplaceOpRefMessage(replace); - CheckOnRemovingSelectedReplaceOpFromMasterList(sb.ToString(), replace); - } - else - { - Operation op = Operations.ElementAt(index); - AlloGens.DeleteEmptyReplaceOperationsFromAnOperation(op); - Operations.RemoveAt(index); - } - currentListBox.Items.RemoveAt(index); - int newIndex = - index < currentListBox.Items.Count ? index : currentListBox.Items.Count - 1; - if (newIndex > -1) - currentListBox.SelectedIndex = newIndex; - } - MarkAsChanged(true); - } - - protected void CheckOnRemovingSelectedReplaceOpFromMasterList( - string prompt, - Replace replace - ) - { - DialogResult result = MessageBox.Show( - prompt, - "Delete Replace Op", - MessageBoxButtons.YesNo, - MessageBoxIcon.Question, - MessageBoxDefaultButton.Button2 - ); - if (result == DialogResult.Yes) - { - AlloGens.DeleteReplaceOp(replace); - MarkAsChanged(true); - FillReplaceOpsListView(); - } - } - - protected void DuplicateContextMenu_Click(object sender, EventArgs e) - { - ToolStripItem menuItem = (ToolStripItem)sender; - if (menuItem.Name == cmDuplicate) - { - int index = currentListBox.SelectedIndex + 1; - if (currentListBox.Name == "lBoxReplaceOps") - { - Replace thisReplace = lBoxReplaceOps.SelectedItem as Replace; - Replace replace = thisReplace.Duplicate(); - AlloGens.AddReplaceOp(replace); - ReplaceOpRefs.Insert(index, replace.Guid); - currentListBox.Items.Insert(index, replace); - } - else - { - Operation op = Operation.Duplicate(); - Operations.Insert(index, op); - currentListBox.Items.Insert(index, op); - } - } - MarkAsChanged(true); - } - - virtual protected void RememberFormState(string sRegKey) - { - regkey = Registry.CurrentUser.OpenSubKey(sRegKey); - if (regkey != null) - { - Cursor.Current = Cursors.WaitCursor; - Application.DoEvents(); - RetrieveRegistryInfo(); - regkey.Close(); - DesktopBounds = RectNormal; - WindowState = WindowState; - StartPosition = FormStartPosition.Manual; - if (!String.IsNullOrEmpty(LastOperationsFile)) - tbFile.Text = LastOperationsFile; - Cursor.Current = Cursors.Default; - } - } - - protected void RetrieveRegistryInfo() - { - // Window location - int iX = (int)regkey.GetValue(m_strLocationX, 100); - int iY = (int)regkey.GetValue(m_strLocationY, 100); - int iWidth = (int)regkey.GetValue(m_strSizeWidth, 863); // 1228); - int iHeight = (int)regkey.GetValue(m_strSizeHeight, 670); // 947); - RectNormal = new Rectangle(iX, iY, iWidth, iHeight); - // Set form properties - WindowState = (FormWindowState)regkey.GetValue(m_strWindowState, 0); - - LastDatabase = (string)regkey.GetValue(m_strLastDatabase); - OperationsFile = LastOperationsFile = (string)regkey.GetValue(m_strLastOperationsFile); - RetrievedLastOperation = LastOperation = (int)regkey.GetValue(m_strLastOperation, 0); - RetrievedLastApplyOperation = LastApplyOperation = (int) - regkey.GetValue(m_strLastApplyOperation, 0); - RetrievedLastEditReplaceOps = LastEditReplaceOps = (int) - regkey.GetValue(m_strLastEditReplaceOps, 0); - LastTab = (int)regkey.GetValue(m_strLastTab, 0); - } - - public void SaveRegistryInfo(string sRegKey) - { - regkey = Registry.CurrentUser.OpenSubKey(sRegKey, true); - if (regkey == null) - { - regkey = Registry.CurrentUser.CreateSubKey(sRegKey); - } - - if (LastDatabase != null) - regkey.SetValue(m_strLastDatabase, LastDatabase); - if (LastOperationsFile != null) - regkey.SetValue(m_strLastOperationsFile, LastOperationsFile); - regkey.SetValue(m_strLastOperation, LastOperation); - regkey.SetValue(m_strLastApplyOperation, LastApplyOperation); - regkey.SetValue(m_strLastEditReplaceOps, LastEditReplaceOps); - regkey.SetValue(m_strLastTab, LastTab); - // Window position and location - regkey.SetValue(m_strWindowState, (int)WindowState); - regkey.SetValue(m_strLocationX, RectNormal.X); - regkey.SetValue(m_strLocationY, RectNormal.Y); - regkey.SetValue(m_strSizeWidth, RectNormal.Width); - regkey.SetValue(m_strSizeHeight, RectNormal.Height); - regkey.Close(); - } - - protected virtual string GetOperationsFilePrompt() - { - return OperationsFilePrompt; - } - - protected void btnBrowse_Click(object sender, EventArgs e) - { - OpenFileDialog dlg = new OpenFileDialog(); - dlg.Filter = GetOperationsFilePrompt(); - if (dlg.ShowDialog() == DialogResult.OK) - { - OperationsFile = dlg.FileName; - LastOperationsFile = OperationsFile; - tbFile.Text = OperationsFile; - LoadMigrateGetOperations(); - if (Operations.Count > 0) - Operation = Operations[0]; - LastOperation = 0; - LastApplyOperation = 0; - FillOperationsListBox(); - if (lvOperations.Visible) - { - FillApplyOperationsListView(); - } - if (lvEditReplaceOps.Visible) - { - FillReplaceOpsListView(); - } - } - else if (String.IsNullOrEmpty(OperationsFile)) - { - // probably first time run and user chose to cancel opening a file; quit - this.Dispose(); - } - } - - protected virtual Form BuildCreateNewOpenCancelDialog() - { - return new CreateNewOpenCancelDialog(); - } - - protected void LoadMigrateGetOperations() - { - if (!File.Exists(OperationsFile)) - { - if (String.IsNullOrEmpty(OperationsFile)) - { - // probably first time it is run - var dlg = BuildCreateNewOpenCancelDialog(); - var result = dlg.ShowDialog(); - if (result == DialogResult.OK) - { - // create new operations file - ChangesMade = false; - SetupFontAndStyleInfo(); - btnNewFile_Click(this, new EventArgs()); - if (!String.IsNullOrEmpty(OperationsFile)) - { - // Need to save it since it exists - DoSave(); - } - } - else if (result == DialogResult.Yes) - { - // Open existing operations file - btnBrowse_Click(this, new EventArgs()); - } - else - { - // Assume it was canceled, so quit - this.Dispose(); - } - } - else - { - MessageBox.Show( - "Operations file not found!", - "Load error", - MessageBoxButtons.OK, - MessageBoxIcon.Error - ); - } - return; - } -#if Marks - Provider.LoadDataFromFile(OperationsFile); - AlloGens = Provider.AlloGens; - if (AlloGens != null) - { - AlloGens = Migrator.Migrate(AlloGens, OperationsFile); - Operations = AlloGens.Operations; - WritingSystems = AlloGens.WritingSystems; - } -#else - string newFile = Migrator.Migrate(OperationsFile); - Provider.LoadDataFromFile(newFile); - AlloGens = Provider.AlloGens; - if (AlloGens != null) - { - Operations = AlloGens.Operations; - WritingSystems = AlloGens.WritingSystems; - } -#endif - } - - protected void SaveAnyChanges() - { - if (ChangesMade) - { - DialogResult res = MessageBox.Show( - "Changes have been made. Do you want to save them?", - "Changes made", - MessageBoxButtons.YesNo, - MessageBoxIcon.Question - ); - if (res == DialogResult.Yes) - { - DoSave(); - } - } - } - - protected void DoSave() - { - Provider.AlloGens = AlloGens; - Provider.SaveDataToFile(OperationsFile); - } - - protected override void OnMove(EventArgs ea) - { - base.OnMove(ea); - - if (WindowState == FormWindowState.Normal) - RectNormal = DesktopBounds; - } - - protected override void OnResize(EventArgs ea) - { - base.OnResize(ea); - - if (WindowState == FormWindowState.Normal) - RectNormal = DesktopBounds; - } - - public void FillOperationsListBox() - { - lBoxOperations.Items.Clear(); - foreach (Operation op in Operations) - { - lBoxOperations.Items.Add(op); - } - if (Operations.Count > 0) - { - // select last used operation, if any - if (LastOperation < 0 || LastOperation >= Operations.Count) - LastOperation = 0; - lBoxOperations.SetSelected(LastOperation, true); - Operation = AlloGens.Operations[LastOperation]; - Pattern = Operation.Pattern; - } - } - - public void FillApplyOperationsListView() - { - lvOperations.Items.Clear(); - foreach (Operation op in Operations) - { - ListViewItem lvItem = new ListViewItem(""); - lvItem.UseItemStyleForSubItems = false; - lvItem.Tag = op; - lvItem.SubItems.Add(op.Name); - if (dictOperationActiveState.ContainsKey(op)) - { - bool value = false; - dictOperationActiveState.TryGetValue(op, out value); - lvItem.Checked = value; - } - else - { - lvItem.Checked = op.Active; - } - lvOperations.Items.Add(lvItem); - } - if (Operations.Count > 0) - { - // select last used operation, if any - if (LastApplyOperation < 0 || LastApplyOperation >= Operations.Count) - LastApplyOperation = 0; - lvOperations.Items[LastApplyOperation].Selected = true; - lvOperations.Select(); - Operation = AlloGens.Operations[LastApplyOperation]; - Pattern = Operation.Pattern; - } - } - - public void FillReplaceOpsListView() - { - lvEditReplaceOps.Items.Clear(); - foreach (Replace replace in AlloGens.ReplaceOperations) - { - ListViewItem lvItem = new ListViewItem(replace.Name); - lvItem.UseItemStyleForSubItems = false; - lvItem.Tag = replace; - lvItem.SubItems[0].ForeColor = Color.Blue; - lvItem.SubItems.Add(replace.From); - lvItem.SubItems[1].ForeColor = Color.DarkGreen; - lvItem.SubItems.Add(replace.To); - lvItem.SubItems[2].ForeColor = Color.Navy; - string sMode = replace.Mode ? " RegEx " : " Normal "; - lvItem.SubItems.Add(sMode); - foreach (WritingSystem ws in WritingSystems) - { - string sDialect = ""; - if (replace.WritingSystemRefs.Contains(ws.Name)) - { - sDialect = " X "; - } - lvItem.SubItems.Add(sDialect); - } - lvItem.SubItems.Add(replace.Description); - int descriptionIndex = lvItem.SubItems.Count - 1; - lvItem.SubItems[descriptionIndex].ForeColor = Color.Purple; - lvEditReplaceOps.Items.Add(lvItem); - } - if (AlloGens.ReplaceOperations.Count > 0) - { - // select last used operation, if any - if ( - LastEditReplaceOps < 0 || LastEditReplaceOps >= AlloGens.ReplaceOperations.Count - ) - LastEditReplaceOps = 0; - lvEditReplaceOps.Items[LastEditReplaceOps].Selected = true; - lvEditReplaceOps.Select(); - } - } - - protected string GetDialectIndicator(bool dialect) - { - string indicator = dialect ? " X " : ""; - return indicator; - } - - protected virtual void lBoxOperations_SelectedIndexChanged(object sender, EventArgs e) - { - Operation = lBoxOperations.SelectedItem as Operation; - if (Operation != null) - { - LastOperation = lBoxOperations.SelectedIndex; - tbName.Text = Operation.Name; - tbDescription.Text = Operation.Description; - Pattern = Operation.Pattern; - tbMatch.Text = Pattern.Matcher.Pattern; - RefreshMorphTypesListBox(); - if (Pattern.MorphTypes.Count > 0) - { - var selectedMorphType = Pattern.MorphTypes[0]; - } - Category = Pattern.Category; - tbCategory.Text = Category.Name; - ActionOp = Operation.Action; - RefreshEnvironmentsListBox(); - ReplaceOpRefs = ActionOp.ReplaceOpRefs; - RefreshReplaceListBox(); - if (ActionOp.ReplaceOpRefs.Count == 0) - { - // need at least one replace action - Replace replace = CreateNewReplace(); - AlloGens.AddReplaceOp(replace); - lBoxReplaceOps.Items.Add(replace); - } - StemName = ActionOp.StemName; - tbStemName.Text = StemName.Name; - int index = lBoxOperations.SelectedIndex + 1; - lbCountOps.Text = index.ToString() + " / " + AlloGens.Operations.Count.ToString(); - } - } - - protected void RefreshReplaceListBox() - { - lBoxReplaceOps.Items.Clear(); - foreach (string guid in ReplaceOpRefs) - { - Replace replace = AlloGens.FindReplaceOp(guid); - if (replace != null) - { - lBoxReplaceOps.Items.Add(replace); - } - } - if (ReplaceOpRefs.Count > 0) - lBoxReplaceOps.SetSelected(0, true); - } - - protected void RefreshMorphTypesListBox() - { - lBoxMorphTypes.Items.Clear(); - foreach (MorphType item in Pattern.MorphTypes) - { - lBoxMorphTypes.Items.Add(item); - } - } - - protected void RefreshEnvironmentsListBox() - { - lBoxEnvironments.Items.Clear(); - foreach (AlloGenModel.Environment item in ActionOp.Environments) - { - lBoxEnvironments.Items.Add(item); - } - } - - protected void btnCategory_Click(object sender, EventArgs e) - { - if (Cache != null) - { - var allPoses = - Cache.LanguageProject.PartsOfSpeechOA.ReallyReallyAllPossibilities.OrderBy( - pos => pos.Name.BestAnalysisAlternative.Text - ); - - CategoryChooser chooser = new CategoryChooser(); - foreach (ICmPossibility pos in allPoses) - { - Category cat = new Category(); - cat.Name = pos.Name.BestAnalysisAlternative.Text; - cat.Guid = pos.Guid.ToString(); - chooser.Categories.Add(cat); - } - chooser.FillCategoriesListBox(); - Category = Pattern.Category; - if (Category.Name != null) - { - var catFound = chooser.Categories.FirstOrDefault( - cat => cat.Name == Category.Name - ); - int index = chooser.Categories.IndexOf(catFound); - if (index > -1) - chooser.SelectCategory(index); - else - chooser.SelectCategory(chooser.Categories.Count); - } - chooser.ShowDialog(); - if (chooser.DialogResult == DialogResult.OK) - { - Category cat = chooser.SelectedCategory; - if (cat == chooser.NoneChosen) - { - Category.Name = ""; - Category.Guid = ""; - StemName = ActionOp.StemName; - ClearStemNameValues(); - // if there's no category, there's no stem name - tbStemName.Text = StemName.Name; - } - else - { - if (Category.Guid != cat.Guid) - { - ClearStemNameValues(); - tbStemName.Text = ""; - } - Category.Name = cat.Name; - Category.Guid = new Guid(cat.Guid).ToString(); - } - tbCategory.Text = Category.Name; - MarkAsChanged(true); - } - } - } - - protected void ClearStemNameValues() - { - StemName.Name = ""; - StemName.Guid = ""; - } - - protected void btnStemName_Click(object sender, EventArgs e) - { - IPartOfSpeech pos = GetPartOfSpeechToUse(Pattern.Category.Guid); - if (pos == null) - { - MessageBox.Show( - "The category '" - + Pattern.Category.Name - + "' was not found in the FLEx database" - ); - return; - } - StemNameChooser chooser = new StemNameChooser(); - foreach ( - IMoStemName msn in pos.AllStemNames.OrderBy( - sn => sn.Name.BestAnalysisAlternative.Text - ) - ) - { - StemName stemName = new StemName(); - stemName.Name = msn.Name.BestAnalysisAlternative.Text; - stemName.Guid = msn.Guid.ToString(); - chooser.StemNames.Add(stemName); - } - chooser.FillStemNamesListBox(); - StemName = ActionOp.StemName; - if (StemName.Name != null) - { - var snFound = chooser.StemNames.FirstOrDefault(sn => sn.Name == StemName.Name); - int index = chooser.StemNames.IndexOf(snFound); - if (index > -1) - chooser.SelectStemName(index); - else - chooser.SelectStemName(chooser.StemNames.Count); - } - chooser.ShowDialog(); - if (chooser.DialogResult == DialogResult.OK) - { - StemName sn = chooser.SelectedStemName; - if (sn == chooser.NoneChosen) - { - ClearStemNameValues(); - } - else - { - StemName.Name = sn.Name; - StemName.Guid = new Guid(sn.Guid).ToString(); - } - tbStemName.Text = StemName.Name; - MarkAsChanged(true); - } - } - - protected IPartOfSpeech GetPartOfSpeechToUse(string poaGuid) - { - IPartOfSpeech pos = (IPartOfSpeech) - Cache.LangProject.PartsOfSpeechOA.ReallyReallyAllPossibilities.FirstOrDefault( - p => p.Guid.ToString() == poaGuid - ); - return pos; - } - - protected void btnEnvironments_Click(object sender, EventArgs e) - { - if (Cache != null) - { - EnvironmentsChooser chooser = new EnvironmentsChooser(Cache); - chooser.setSelected(ActionOp.Environments); - chooser.FillEnvironmentsListBox(); - chooser.ShowDialog(); - if (chooser.DialogResult == DialogResult.OK) - { - ActionOp.Environments.Clear(); - ActionOp.Environments.AddRange(chooser.SelectedEnvironments); - RefreshEnvironmentsListBox(); - MarkAsChanged(true); - } - } - } - - protected void btnMorphTypes_Click(object sender, EventArgs e) - { - if (Cache != null) - { - MorphTypesChooser chooser = new MorphTypesChooser(Cache); - chooser.setSelected(Pattern.MorphTypes); - chooser.FillMorphTypesListBox(); - chooser.ShowDialog(); - if (chooser.DialogResult == DialogResult.OK) - { - Pattern.MorphTypes.Clear(); - Pattern.MorphTypes.AddRange(chooser.SelectedMorphTypes); - RefreshMorphTypesListBox(); - MarkAsChanged(true); - } - } - } - - protected void tbName_TextChanged(object sender, EventArgs e) - { - TextBox tb = sender as TextBox; - if (tb != null) - { - Operation.Name = tb.Text; - MarkAsChanged(true); - int selectedOp = lBoxOperations.SelectedIndex; - if (selectedOp > -1) - { - lBoxOperations.Items.Insert(selectedOp, Operation); - lBoxOperations.Items.RemoveAt(selectedOp + 1); - lBoxOperations.SelectedIndex = selectedOp; - } - } - } - - protected void btnSaveChanges_Click(object sender, EventArgs e) - { - this.Cursor = Cursors.WaitCursor; - SetOperationActiveStatus(); - Provider.AlloGens = AlloGens; - Provider.SaveDataToFile(OperationsFile); - MarkAsChanged(false); - this.Cursor = Cursors.Arrow; - } - - protected void btnSaveChanges2_Click(object sender, EventArgs e) - { - btnSaveChanges_Click(sender, e); - } - - protected void btnSaveChanges3_Click(object sender, EventArgs e) - { - btnSaveChanges_Click(sender, e); - } - - protected void SetOperationActiveStatus() - { - for (int i = 0; i < dictOperationActiveState.Count; i++) - { - KeyValuePair<Operation, bool> keyValuePair = dictOperationActiveState.ElementAt(i); - int index = Operations.IndexOf(keyValuePair.Key); - if (index > -1) - { - Operations[index].Active = keyValuePair.Value; - } - } - AlloGens.Operations = Operations; - } - - protected void tbDescription_TextChanged(object sender, EventArgs e) - { - TextBox tb = sender as TextBox; - if (tb != null) - { - Operation.Description = tb.Text; - MarkAsChanged(true); - } - } - - protected void MarkAsChanged(bool value) - { - ChangesMade = value; - ShowChangeStatusOnForm(); - } - - protected void ShowChangeStatusOnForm() - { - if (AlloGenForm.ActiveForm != null) - { - AlloGenForm.ActiveForm.Text = formTitle; - if (ChangesMade) - AlloGenForm.ActiveForm.Text += "*"; - } - } - - protected void btnNewFile_Click(object sender, EventArgs e) - { - SaveAnyChanges(); - SaveFileDialog dlg = new SaveFileDialog(); - dlg.Filter = GetOperationsFilePrompt(); - if (dlg.ShowDialog() == DialogResult.OK) - { - OperationsFile = dlg.FileName; - LastOperationsFile = OperationsFile; - tbFile.Text = OperationsFile; - AlloGens = new AllomorphGenerators(); - AlloGens.WritingSystems = WritingSystems; - Operation = AlloGens.CreateNewOperation(); - Pattern = Operation.Pattern; - Operations = AlloGens.Operations; - FillOperationsListBox(); - if (lvOperations.Visible) - { - FillApplyOperationsListView(); - } - if (lvEditReplaceOps.Visible) - { - FillReplaceOpsListView(); - } - // Need to save it since it exists - DoSave(); - } - else if (String.IsNullOrEmpty(OperationsFile)) - { - // probably first time run and user chose to cancel creating the needed file; quit - this.Dispose(); - } - } - - protected void btnHelp_Click(object sender, EventArgs e) - { - string pathToUse = GetUserDocPath(); - Process.Start(pathToUse); - } - - protected abstract string GetUserDocPath(); - protected abstract Uri GetBaseUri(); - - protected string GetAppBaseDir() - { - string basedir; - string rootdir; - int indexOfBinInPath; - DetermineIndexOfBinInExecutablesPath(out rootdir, out indexOfBinInPath); - if (indexOfBinInPath >= 0) - basedir = rootdir.Substring(0, indexOfBinInPath); - else - basedir = rootdir; - return basedir; - } - - protected void DetermineIndexOfBinInExecutablesPath( - out string rootdir, - out int indexOfBinInPath - ) - { - Uri uriBase = GetBaseUri(); - rootdir = Path.GetDirectoryName(Uri.UnescapeDataString(uriBase.AbsolutePath)); - indexOfBinInPath = rootdir.LastIndexOf("bin"); - } - - protected void btnMatch_Click(object sender, EventArgs e) - { - IVwStylesheet stylesheet = FontHeightAdjuster.StyleSheetFromPropertyTable(PropTable); - - using ( - SimpleMatchDlgAlloGen dlg = new SimpleMatchDlgAlloGen( - Cache.WritingSystemFactory, - PropTable.GetValue<IHelpTopicProvider>("HelpTopicProvider"), - Cache.DefaultVernWs, - stylesheet, - Cache - ) - ) - { - Matcher agMatcher = Pattern.Matcher; - dlg.SetDlgValues(agMatcher, stylesheet); - if (dlg.ShowDialog() != DialogResult.OK || dlg.Pattern.Length == 0) - return; - agMatcher = dlg.GetMatcher(); - Pattern.Matcher = agMatcher; - tbMatch.Text = agMatcher.Pattern; - MarkAsChanged(true); - } - } - - protected virtual void tabControl_SelectedIndexChanged(object sender, EventArgs e) - { - this.Cursor = Cursors.WaitCursor; - TabPage page = (sender as TabControl).SelectedTab; - if (page != null) - { - LastTab = tabControl.SelectedIndex; - if (LastTab == 0) - FillOperationsListBox(); - else if (LastTab == 1) - FillApplyOperationsListView(); - else - FillReplaceOpsListView(); - } - this.Cursor = Cursors.Arrow; - } - - protected virtual bool CheckForInvalidActionComponents() - { - return CheckForInvalidEnvironmentsAndStemNames(); - } - - protected virtual string CreateUndoRedoPrompt(Operation op) - { - return " Allomorph Generation for '" + op.Name; - } - - protected void btnApplyOperations_Click(object sender, EventArgs e) - { - RememberNonChosenEntries(Operation); - if (lvOperations.CheckedItems.Count == 0) - { - MessageBox.Show("No operations are selected, so there's nothing to do"); - return; - } - if (!CheckForInvalidActionComponents()) - { - return; - } - this.Cursor = Cursors.WaitCursor; - List<Replace> replaceOpsToUse = new List<Replace>(); - foreach (ListViewItem lvItem in lvOperations.CheckedItems) - { - Operation op = (Operation)lvItem.Tag; - List<ILexEntry> nonChosenEntries = new List<ILexEntry>(); - if (dictNonChosen.ContainsKey(op)) - { - nonChosenEntries = dictNonChosen[op]; - } - PatternMatcher patMatcher = new PatternMatcher(Cache, AlloGens); - patMatcher.ApplyTo = cbApplyTo.SelectedItem as ApplyTo; - IList<ILexEntry> matchingEntries, - matchingEntriesWithAllos; - GetMatchingEntries(patMatcher, out matchingEntries, out matchingEntriesWithAllos); - if (matchingEntries == null || matchingEntries.Count() == 0) - { - continue; - } - GetReplaceOpsToUse(replaceOpsToUse, op); - Replacer replacer = new Replacer(replaceOpsToUse); - string undoRedoPrompt = CreateUndoRedoPrompt(op); - UndoableUnitOfWorkHelper.Do( - "Undo" + undoRedoPrompt, - "Redo" + undoRedoPrompt, - Cache.ActionHandlerAccessor, - () => - { - foreach (ILexEntry entry in matchingEntries) - { - if (nonChosenEntries.Contains(entry)) - { - continue; - } - string formToUse = patMatcher.GetToMatch(entry).Text; - List<string> forms = new List<string>(); - foreach (WritingSystem ws in WritingSystems) - { - forms.Add(GetPreviewForm(replacer, formToUse, ws)); - } - ApplyOperationToEntry(op, entry, forms); - } - } - ); - } - ShowPreview(); - this.Cursor = Cursors.Arrow; - } - - protected virtual void ApplyOperationToEntry( - Operation op, - ILexEntry entry, - List<string> forms - ) - { - IMoStemAllomorph form = alloCreator.CreateAllomorph(entry, forms); - if (op.Action.StemName.Guid.Length > 0) - { - alloCreator.AddStemName(form, op.Action.StemName.Guid); - } - if (op.Action.Environments.Count > 0) - { - alloCreator.AddEnvironments(form, op.Action.Environments); - } - } - - protected void GetReplaceOpsToUse(List<Replace> replaceOpsToUse, Operation op) - { - replaceOpsToUse.Clear(); - foreach (string guid in op.Action.ReplaceOpRefs) - { - Replace replace = AlloGens.FindReplaceOp(guid); - if (replace != null) - { - replaceOpsToUse.Add(replace); - } - } - } - - protected bool CheckForInvalidEnvironmentsAndStemNames() - { - bool allIsGood = true; - foreach (ListViewItem lvItem in lvOperations.CheckedItems) - { - Operation op = (Operation)lvItem.Tag; - string stemNameGuid = op.Action.StemName.Guid; - if (stemNameGuid.Length > 0) - { - var stemName = - Cache.ServiceLocator.ObjectRepository.GetObjectOrIdWithHvoFromGuid( - new Guid(stemNameGuid) - ); - if (stemName == null) - { - ReportMissingFLExItem("The stem name '", op.Action.StemName.Name, op.Name); - allIsGood = false; - } - } - if (op.Action.Environments.Count > 0) - { - foreach (AlloGenModel.Environment env in op.Action.Environments) - { - var phEnv = - Cache.ServiceLocator.ObjectRepository.GetObjectOrIdWithHvoFromGuid( - new Guid(env.Guid) - ); - if (phEnv == null) - { - ReportMissingFLExItem("The environment '", env.Name, op.Name); - allIsGood = false; - } - } - } - } - return allIsGood; - } - - protected void ReportMissingFLExItem( - string missingItem, - string itemName, - string operationName - ) - { - StringBuilder sb = new StringBuilder(); - sb.Append(missingItem); - sb.Append(itemName); - sb.Append("' is no longer found. Please fix it in operation '"); - sb.Append(operationName); - sb.Append("'."); - MessageBox.Show(sb.ToString()); - } - - protected void lvOperations_ItemChecked(object sender, ItemCheckedEventArgs e) - { - ListViewItem itemChecked = e.Item; - if (itemChecked == null) - { - return; - } - Operation op = itemChecked.Tag as Operation; - if (op != null) - { - if (dictOperationActiveState.ContainsKey(op)) - { - dictOperationActiveState.Remove(op); - } - dictOperationActiveState.Add(op, itemChecked.Checked); - } - } - - protected void lvOperations_SelectedIndexChanged(object sender, EventArgs e) - { - ShowPreview(); - } - - protected void ShowPreview() - { - if (LastOperationShown != null) - { - RememberNonChosenEntries(LastOperationShown); - } - string sCount = "0"; - if (lvOperations.SelectedItems.Count == 0) - { - return; - } - this.Cursor = Cursors.WaitCursor; - List<Replace> replaceOpsToUse = new List<Replace>(); - ListViewItem lvItem = lvOperations.SelectedItems[0]; - LastApplyOperation = lvOperations.Items.IndexOf(lvItem); - Operation = lvItem.Tag as Operation; - Pattern = Operation.Pattern; - if (Operation != null) - { - PatternMatcher patMatcher = new PatternMatcher(Cache, AlloGens); - patMatcher.ApplyTo = cbApplyTo.SelectedItem as ApplyTo; - IList<ILexEntry> matchingEntries, - matchingEntriesWithItemsAlready; - GetMatchingEntries( - patMatcher, - out matchingEntries, - out matchingEntriesWithItemsAlready - ); - if (matchingEntries == null) - { - string errMsg = string.Format( - FwCoreDlgs.kstidErrorInRegEx, - patMatcher.ErrorMessage - ); - MessageBox.Show( - this, - errMsg, - FwCoreDlgs.kstidErrorInRegExHeader, - MessageBoxButtons.OK, - MessageBoxIcon.Error - ); - return; - } - List<ILexEntry> nonChosenEntries = new List<ILexEntry>(); - if (dictNonChosen.ContainsKey(Operation)) - { - nonChosenEntries = dictNonChosen[Operation]; - } - GetReplaceOpsToUse(replaceOpsToUse, Operation); - Replacer replacer = new Replacer(replaceOpsToUse); - lvPreview.Items.Clear(); - foreach (ILexEntry entry in matchingEntries) - { - lvItem = new ListViewItem(""); - lvItem.Tag = entry; - lvItem.UseItemStyleForSubItems = false; - string formToUse = patMatcher.GetToMatch(entry).Text; - lvItem.SubItems.Add(formToUse); - if (matchingEntriesWithItemsAlready.Contains(entry)) - { - lvItem.SubItems[1].BackColor = Color.Yellow; - } - int i = 2; - foreach (WritingSystem ws in WritingSystems) - { - string previewForm = GetPreviewForm(replacer, formToUse, ws); - lvItem.SubItems.Add(previewForm); - lvItem.SubItems[i].Font = ws.Font; - lvItem.SubItems[i].ForeColor = ws.Color; - i++; - } - lvPreview.Items.Add(lvItem); - lvItem.Checked = !nonChosenEntries.Contains(entry); - } - sCount = matchingEntries.Count().ToString(); - lvPreview.AutoResizeColumns(ColumnHeaderAutoResizeStyle.HeaderSize); - if (lvPreview.Columns.Count > 0) - { - lvPreview.Columns[0].Width = 25; - } - } - lbCountRunOps.Text = sCount; - LastOperationShown = Operation; - this.Cursor = Cursors.Arrow; - } - - protected virtual void GetMatchingEntries( - PatternMatcher patMatcher, - out IList<ILexEntry> matchingEntries, - out IList<ILexEntry> matchingEntriesWithItemsAlready - ) - { - matchingEntries = patMatcher - .MatchPattern(patMatcher.EntriesWithNoAllomorphs, Operation.Pattern) - .ToList(); - matchingEntriesWithItemsAlready = patMatcher - .MatchEntriesWithAllosPerPattern(Operation, Pattern) - .ToList(); - foreach (ILexEntry entry in matchingEntriesWithItemsAlready) - { - matchingEntries.Add(entry); - } - } - - protected void RememberNonChosenEntries(Operation op) - { - List<ILexEntry> uncheckedEntries = new List<ILexEntry>(); - foreach (ListViewItem item in lvPreview.Items) - { - if (!item.Checked) - { - uncheckedEntries.Add((ILexEntry)item.Tag); - } - } - if (dictNonChosen.ContainsKey(op)) - { - dictNonChosen.Remove(op); - } - dictNonChosen.Add(op, uncheckedEntries); - } - - protected string GetPreviewForm(Replacer replacer, string formToUse, WritingSystem ws) - { - string previewForm = replacer.ApplyReplaceOpToOneWS(formToUse, ws.Name); - return previewForm; - } - - protected void lvOperations_ColumnClick(object sender, ColumnClickEventArgs e) - { - // Only show the context menu - if (e.Column == 0) - { - ListView lvSender = (ListView)sender; - Point ptLowerLeft = new Point(0, 10); - ptLowerLeft = lvSender.PointToScreen(ptLowerLeft); - operationsCheckBoxContextMenu.Show(ptLowerLeft); - return; - } - } - - protected void lvPreview_ColumnClick(object sender, ColumnClickEventArgs e) - { - // Do not sort the checkboxes column; instead show context menu - if (e.Column == 0) - { - ListView lvSender = (ListView)sender; - Point ptLowerLeft = new Point(0, 10); - ptLowerLeft = lvSender.PointToScreen(ptLowerLeft); - previewCheckBoxContextMenu.Show(ptLowerLeft); - return; - } - // Following code taken from - // https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/csharp/language-compilers/sort-listview-by-column - // on 2023.01.04 - // Determine if clicked column is already the column that is being sorted. - if (e.Column == lvwColumnSorter.SortColumn) - { - // Reverse the current sort direction for this column. - if (lvwColumnSorter.Order == SortOrder.Ascending) - { - lvwColumnSorter.Order = SortOrder.Descending; - } - else - { - lvwColumnSorter.Order = SortOrder.Ascending; - } - } - else - { - // Set the column number that is to be sorted; default to ascending. - lvwColumnSorter.SortColumn = e.Column; - lvwColumnSorter.Order = SortOrder.Ascending; - } - - // Perform the sort with these new sort options. - this.lvPreview.Sort(); - } - - protected void lvEditReplaceOps_ColumnClick(object sender, ColumnClickEventArgs e) - { - // Following code taken from - // https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/csharp/language-compilers/sort-listview-by-column - // on 2023.01.04 - // Determine if clicked column is already the column that is being sorted. - if (e.Column == lvwEditReplaceOpsColumnSorter.SortColumn) - { - // Reverse the current sort direction for this column. - if (lvwEditReplaceOpsColumnSorter.Order == SortOrder.Ascending) - { - lvwEditReplaceOpsColumnSorter.Order = SortOrder.Descending; - } - else - { - lvwEditReplaceOpsColumnSorter.Order = SortOrder.Ascending; - } - } - else - { - // Set the column number that is to be sorted; default to ascending. - lvwEditReplaceOpsColumnSorter.SortColumn = e.Column; - lvwEditReplaceOpsColumnSorter.Order = SortOrder.Ascending; - } - - // Perform the sort with these new sort options. - lvEditReplaceOps.Sort(); - } - - protected void btnEditReplaceOp_Click(object sender, EventArgs e) - { - InvokeEditReplaceOpFormMasterList(); - } - - protected void btnAddNewReplaceOp_Click(object sender, EventArgs e) - { - using (var dialog = new EditReplaceOpForm()) - { - Replace replace = CreateNewReplace(); - dialog.Initialize(replace, WritingSystems, Cache); - dialog.ShowDialog(); - if (dialog.DialogResult == DialogResult.OK) - { - replace = dialog.ReplaceOp; - AddNewReplaceOpToMasterList(replace); - } - } - } - - protected Replace CreateNewReplace() - { - Replace replace = new Replace(); - foreach (WritingSystem ws in WritingSystems) - { - replace.WritingSystemRefs.Add(ws.Name); - } - return replace; - } - - protected void AddNewReplaceOpToMasterList(Replace replace) - { - AlloGens.AddReplaceOp(replace); - ListViewItem item = new ListViewItem(); - item.Tag = replace; - lvEditReplaceOps.Items.Add(item); - int index = Math.Max(0, lvEditReplaceOps.Items.Count - 1); - lvEditReplaceOps.Items[index].Selected = true; - lvEditReplaceOps.Select(); - MarkAsChanged(true); - FillReplaceOpsListView(); - } - - protected void btnDeleteReplaceOp_Click(object sender, EventArgs e) - { - if (!CanDoReplaceOpsMasterListOption()) - { - return; - } - ListViewItem lvItem = lvEditReplaceOps.SelectedItems[0]; - Replace replace = (Replace)lvItem.Tag; - StringBuilder sb = BuildDeleteReplaceOpMessage(replace); - CheckOnRemovingSelectedReplaceOpFromMasterList(sb.ToString(), replace); - } - - protected StringBuilder BuildDeleteReplaceOpMessage(Replace replace) - { - List<Operation> operationsContainingReplaceOp = AlloGens.FindOperationsUsedByReplaceOp( - replace - ); - StringBuilder sb = new StringBuilder(); - sb.Append("Replace operation '"); - sb.Append(replace.ToString()); - sb.Append("' will be deleted.\n"); - if (operationsContainingReplaceOp.Count > 0) - { - sb.Append("It is used in the following operations:\n\n"); - foreach (Operation op in operationsContainingReplaceOp) - { - sb.Append(op.Name); - sb.Append("\n"); - } - sb.Append("\n"); - } - else - { - sb.Append("It is not used in any operations.\n\n"); - } - sb.Append("Are you sure you want to delete it?"); - return sb; - } - - protected StringBuilder BuildDeleteReplaceOpRefMessage(Replace replace) - { - List<Operation> operationsContainingReplaceOp = AlloGens.FindOperationsUsedByReplaceOp( - replace - ); - StringBuilder sb = new StringBuilder(); - sb.Append("Replace operation '"); - sb.Append(replace.ToString()); - sb.Append("' will be removed from this operation.\n"); - sb.Append("You can also delete it from the master list.\n"); - if (operationsContainingReplaceOp.Count > 0) - { - sb.Append("It is used in the following operations:\n\n"); - foreach (Operation op in operationsContainingReplaceOp) - { - sb.Append(op.Name); - sb.Append("\n"); - } - sb.Append("\n"); - } - else - { - sb.Append("It is not used in any operations.\n\n"); - } - sb.Append("Do you want to delete it from the master list?"); - return sb; - } - - protected void lvEditReplaceOps_SelectedIndexChanged(object sender, EventArgs e) - { - if (lvEditReplaceOps.SelectedItems.Count > 0) - { - ListViewItem lvItem = lvEditReplaceOps.SelectedItems[0]; - LastEditReplaceOps = lvEditReplaceOps.Items.IndexOf(lvItem); - lbCountReplaceOps.Text = - (LastEditReplaceOps + 1).ToString() - + " / " - + lvEditReplaceOps.Items.Count.ToString(); - } - } - - protected void InvokeEditReplaceOpFormMasterList() - { - if (!CanDoReplaceOpsMasterListOption()) - { - return; - } - ListViewItem item = lvEditReplaceOps.SelectedItems[0]; - ; - Replace replace = (Replace)item.Tag; - using (var dialog = new EditReplaceOpForm()) - { - dialog.Initialize(replace, WritingSystems, Cache); - dialog.ShowDialog(); - if (dialog.DialogResult == DialogResult.OK) - { - int index = lvEditReplaceOps.SelectedIndices[0]; - replace = dialog.ReplaceOp; - AlloGens.AddReplaceOp(replace); - lvEditReplaceOps.Items[index].Tag = replace; - MarkAsChanged(true); - FillReplaceOpsListView(); - } - } - } - - protected void lvEditReplaceOps_DoubleClick(object sender, EventArgs e) - { - InvokeEditReplaceOpFormMasterList(); - } - - protected void cbApplyTo_SelectedIndexChanged(object sender, EventArgs e) - { - ComboBox cb = (ComboBox)sender; - AlloGens.ApplyTo = cb.SelectedIndex; - applyToField = ((ApplyTo)cb.SelectedItem).Name; - SetUpPreviewCheckedListBox(); - } - } -} diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/AlloGenFormBase.resx b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/AlloGenFormBase.resx deleted file mode 100644 index c7e426c8a0..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/AlloGenFormBase.resx +++ /dev/null @@ -1,246 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<root> - <!-- - Microsoft ResX Schema - - Version 2.0 - - The primary goals of this format is to allow a simple XML format - that is mostly human readable. The generation and parsing of the - various data types are done through the TypeConverter classes - associated with the data types. - - Example: - - ... ado.net/XML headers & schema ... - <resheader name="resmimetype">text/microsoft-resx</resheader> - <resheader name="version">2.0</resheader> - <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> - <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> - <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> - <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> - <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> - <value>[base64 mime encoded serialized .NET Framework object]</value> - </data> - <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> - <comment>This is a comment</comment> - </data> - - There are any number of "resheader" rows that contain simple - name/value pairs. - - Each data row contains a name, and value. The row also contains a - type or mimetype. Type corresponds to a .NET class that support - text/value conversion through the TypeConverter architecture. - Classes that don't support this are serialized and stored with the - mimetype set. - - The mimetype is used for serialized objects, and tells the - ResXResourceReader how to depersist the object. This is currently not - extensible. For a given mimetype the value must be set accordingly: - - Note - application/x-microsoft.net.object.binary.base64 is the format - that the ResXResourceWriter will generate, however the reader can - read any of the formats listed below. - - mimetype: application/x-microsoft.net.object.binary.base64 - value : The object must be serialized with - : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.soap.base64 - value : The object must be serialized with - : System.Runtime.Serialization.Formatters.Soap.SoapFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.bytearray.base64 - value : The object must be serialized into a byte array - : using a System.ComponentModel.TypeConverter - : and then encoded with base64 encoding. - --> - <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> - <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> - <xsd:element name="root" msdata:IsDataSet="true"> - <xsd:complexType> - <xsd:choice maxOccurs="unbounded"> - <xsd:element name="metadata"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" /> - </xsd:sequence> - <xsd:attribute name="name" use="required" type="xsd:string" /> - <xsd:attribute name="type" type="xsd:string" /> - <xsd:attribute name="mimetype" type="xsd:string" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="assembly"> - <xsd:complexType> - <xsd:attribute name="alias" type="xsd:string" /> - <xsd:attribute name="name" type="xsd:string" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="data"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> - <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> - <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="resheader"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" /> - </xsd:complexType> - </xsd:element> - </xsd:choice> - </xsd:complexType> - </xsd:element> - </xsd:schema> - <resheader name="resmimetype"> - <value>text/microsoft-resx</value> - </resheader> - <resheader name="version"> - <value>2.0</value> - </resheader> - <resheader name="reader"> - <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> - <resheader name="writer"> - <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> - <metadata name="ilPreview.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> - <value>17, 17</value> - </metadata> - <data name="ilPreview.ImageStream" mimetype="application/x-microsoft.net.object.binary.base64"> - <value> - AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w - LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAD2 - BwAAAk1TRnQBSQFMAwEBAAHIAQAByAEAARABAAEQAQAE/wEJAQAI/wFCAU0BNgEEBgABNgEEAgABKAMA - AUADAAEQAwABAQEAAQgGAAEEGAABgAIAAYADAAKAAQABgAMAAYABAAGAAQACgAIAA8ABAAHAAdwBwAEA - AfABygGmAQABMwUAATMBAAEzAQABMwEAAjMCAAMWAQADHAEAAyIBAAMpAQADVQEAA00BAANCAQADOQEA - AYABfAH/AQACUAH/AQABkwEAAdYBAAH/AewBzAEAAcYB1gHvAQAB1gLnAQABkAGpAa0CAAH/ATMDAAFm - AwABmQMAAcwCAAEzAwACMwIAATMBZgIAATMBmQIAATMBzAIAATMB/wIAAWYDAAFmATMCAAJmAgABZgGZ - AgABZgHMAgABZgH/AgABmQMAAZkBMwIAAZkBZgIAApkCAAGZAcwCAAGZAf8CAAHMAwABzAEzAgABzAFm - AgABzAGZAgACzAIAAcwB/wIAAf8BZgIAAf8BmQIAAf8BzAEAATMB/wIAAf8BAAEzAQABMwEAAWYBAAEz - AQABmQEAATMBAAHMAQABMwEAAf8BAAH/ATMCAAMzAQACMwFmAQACMwGZAQACMwHMAQACMwH/AQABMwFm - AgABMwFmATMBAAEzAmYBAAEzAWYBmQEAATMBZgHMAQABMwFmAf8BAAEzAZkCAAEzAZkBMwEAATMBmQFm - AQABMwKZAQABMwGZAcwBAAEzAZkB/wEAATMBzAIAATMBzAEzAQABMwHMAWYBAAEzAcwBmQEAATMCzAEA - ATMBzAH/AQABMwH/ATMBAAEzAf8BZgEAATMB/wGZAQABMwH/AcwBAAEzAv8BAAFmAwABZgEAATMBAAFm - AQABZgEAAWYBAAGZAQABZgEAAcwBAAFmAQAB/wEAAWYBMwIAAWYCMwEAAWYBMwFmAQABZgEzAZkBAAFm - ATMBzAEAAWYBMwH/AQACZgIAAmYBMwEAA2YBAAJmAZkBAAJmAcwBAAFmAZkCAAFmAZkBMwEAAWYBmQFm - AQABZgKZAQABZgGZAcwBAAFmAZkB/wEAAWYBzAIAAWYBzAEzAQABZgHMAZkBAAFmAswBAAFmAcwB/wEA - AWYB/wIAAWYB/wEzAQABZgH/AZkBAAFmAf8BzAEAAcwBAAH/AQAB/wEAAcwBAAKZAgABmQEzAZkBAAGZ - AQABmQEAAZkBAAHMAQABmQMAAZkCMwEAAZkBAAFmAQABmQEzAcwBAAGZAQAB/wEAAZkBZgIAAZkBZgEz - AQABmQEzAWYBAAGZAWYBmQEAAZkBZgHMAQABmQEzAf8BAAKZATMBAAKZAWYBAAOZAQACmQHMAQACmQH/ - AQABmQHMAgABmQHMATMBAAFmAcwBZgEAAZkBzAGZAQABmQLMAQABmQHMAf8BAAGZAf8CAAGZAf8BMwEA - AZkBzAFmAQABmQH/AZkBAAGZAf8BzAEAAZkC/wEAAcwDAAGZAQABMwEAAcwBAAFmAQABzAEAAZkBAAHM - AQABzAEAAZkBMwIAAcwCMwEAAcwBMwFmAQABzAEzAZkBAAHMATMBzAEAAcwBMwH/AQABzAFmAgABzAFm - ATMBAAGZAmYBAAHMAWYBmQEAAcwBZgHMAQABmQFmAf8BAAHMAZkCAAHMAZkBMwEAAcwBmQFmAQABzAKZ - AQABzAGZAcwBAAHMAZkB/wEAAswCAALMATMBAALMAWYBAALMAZkBAAPMAQACzAH/AQABzAH/AgABzAH/ - ATMBAAGZAf8BZgEAAcwB/wGZAQABzAH/AcwBAAHMAv8BAAHMAQABMwEAAf8BAAFmAQAB/wEAAZkBAAHM - ATMCAAH/AjMBAAH/ATMBZgEAAf8BMwGZAQAB/wEzAcwBAAH/ATMB/wEAAf8BZgIAAf8BZgEzAQABzAJm - AQAB/wFmAZkBAAH/AWYBzAEAAcwBZgH/AQAB/wGZAgAB/wGZATMBAAH/AZkBZgEAAf8CmQEAAf8BmQHM - AQAB/wGZAf8BAAH/AcwCAAH/AcwBMwEAAf8BzAFmAQAB/wHMAZkBAAH/AswBAAH/AcwB/wEAAv8BMwEA - AcwB/wFmAQAC/wGZAQAC/wHMAQACZgH/AQABZgH/AWYBAAFmAv8BAAH/AmYBAAH/AWYB/wEAAv8BZgEA - ASEBAAGlAQADXwEAA3cBAAOGAQADlgEAA8sBAAOyAQAD1wEAA90BAAPjAQAD6gEAA/EBAAP4AQAB8AH7 - Af8BAAGkAqABAAOAAwAB/wIAAf8DAAL/AQAB/wMAAf8BAAH/AQAC/wIAA/8BAA//AfQwAAHxD/8wAAIH - AfMN/zAAAQcB7AG8A/8BBwHzCP8wAAEHAewBvAL/AfIBDwH3AfQH/zAAAQcB7AG8Af8BBwEPAQABDgHt - B/8wAAEHAewBvAHvARUDAAERAewG/zAAAQcB7AG8AewBAAEOAesBEQEAAREB7QH0BP8wAAEHAewBvAHs - AQ4B6gHzAewBEQEAAQ4B9wHzA/8wAAEHAewBvAGSAeoD/wHtAQ4CAAEHA/8wAAEHAewBvAH/AfQD/wH0 - AfcCAAEHA/8wAAEHAewBvAb/AfMB9wEOAQcD/zAAAQcB7AG8B/8B9AHtAfID/zAAAQcB7AHvCrwB8wL/ - MAABBwHtC+wBBwL/MAAOBwHxAf8wAAFCAU0BPgcAAT4DAAEoAwABQAMAARADAAEBAQABAQUAAYAXAAP/ - gQAL -</value> - </data> - <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> - <data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - AAABAAEAISAAAAEAIACoEQAAFgAAACgAAAAhAAAAQAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAIR1YzmMdXPelHVz3nt1YzkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAhHVrjIR1a/9KgiH/KW0h/4R1a/+EdWuEAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAHt1WjGMcWvWa3lK/zGGCP8phgD/AGkA/whpCP9jcVL/lHlzznN1 - YykAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe3Fje4RxY/9KgiH/KYoA/ymGAP8pggD/AGkA/wBp - AP8AaQD/OW0p/4x5c/d7dWtzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGtdeyGEbWvOa3lK/zGKCP8pigD/KYYA/ymC - AP8pfQD/AGkA/wBpAP8AaQD/AGkA/xBpCP9zdVr/lHlzvZRpaxgAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa117a3tlc/cxLL3/KY4A/ymK - AP8phgD/KYIA/yl9AP8peQD/AGkA/wBpAP8AaQD/AGkA/wBpAP8AaQD/zjx7/5R1e++laXtaAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGNRhBh7ZWu9Y1GM/xAM - 3v8AAO//KYoA/ymGAP8pggD/KX0A/yl5AP8hdQj/AG0Q/wBpAP8AaQD/AGkA/wBpAP8AaQD//wiE/+8c - e/+lZXv/nHF7ra1hexAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAY1V7Y3th - a/c5MLX/AAD3/wAA7/8AAOf/KYYA/ymCAP8pfQD/KXkA/xh5Of8Afa3/AJ7n/wB5Qv8AaQD/AGkA/wBp - AP8AaQD//wiE//8IhP//DHv/xkV7/5x1e+etZXtCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AABzXWutY1GE/xAQ3v8AAPf/AADv/wAA5/8AAN7/KYIA/yl9AP8heQj/CHlz/wB5vf8Aeb3/AKb//wCm - //8AipT/AGkI/wBpAP8AaQD//wiE//8IhP//CIT//wiE/+cke/+lbXv/nHF7jAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAGtVcwhzXWv/AAD3/wAA9/8AAO//AADn/wAA3v8AAN7/KX0A/xh5Mf8Afa3/AHm9/wB1 - tf8AdbX/AKb//wCm//8Apv//AJ7W/wB1Mf8AaQD//wiE//8IhP//CIT//wiE//8IhP//EHv/nHV7/6Vl - ewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNVcwhrWWv/AAD3/wAA7/8AAOf/AADe/wAA3v8AAM7/EH1z/wB9 - xv8Aeb3/AHW1/wBxrf8Aca3/AKb//wCm//8Apv//AKb//wCm//8Ahnv//wh7//8IhP//CIT//wiE//8I - hP//CIT/nHF7/61hewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNRcwhrWWv/AADv/wAA5/8AAN7/AADe/ykQ - vf+1TXP/CH29/wB5vf8AdbX/AHGt/wBtrf8Aba3/AKb//wCm//8Apv//AKb//wCm//8Apv///4Za//8g - e///CIT//wiE//8IhP//CIT/nHF7/61dewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNRcwhrWWv/AADn/wAA - 3v8AANb/ayyc/9ZZY//WWVr/CHm1/wB1tf8Aca3/AG2t/wBppf8AfbX/AK7//wCm//8Apv//AKb//wCm - //8Apv///65S//+mUv//SWv//wiE//8IhP//CIT/nHF7/61dewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNR - awhrWWP/AADe/yEQxv+1SXv/1llj/9ZZWv/OVVr/CHW1/wBxrf8Aba3/AGml/wCizv8A1///ANP//wC2 - //8Apv//AKb//wCm//8Apv///65S//+uUv//rlL//3lj//8Ye///CIT/lG1z/61hcwgAAAAAAAAAAAAA - AAAAAAAAAAAAAGtVawhrWWP/Yyil/9ZZa//WWWP/1lla/85VWv/GUVL/CHGt/wBtrf8AfbX/AMvv/wDf - //8A2///ANP//wDL//8Avv//AKr//wCm//8Apv///65S//+uUv//rlL//65S//+eWv//OHP/lG1z/61p - cwgAAAAAAAAAAAAAAAAAAAAAAAAAAHNVYwhzXVr/3l1j/9ZZY//WWVr/zlVa/8ZRUv/GTVL/CG2l/wCm - zv8A5///AOf//wDf//8A2///ANP//wCq1v8Aue7/AL7//wCu//8Apv///65S//+uUv//rlL//65S//+u - Uv//rlL/lHVz/61xcwgAAAAAAAAAAAAAAAAAAAAAAAAAAHtZWghzWVr/1llj/9ZZWv/OVVr/xlFS/8ZN - Uv/GVVr/McPW/wDz//8A7///AOf//wDf//8A2///ANP//wCXvv8AOkv/ALb1/wC2//8Ysvf//65a//+u - Uv//rlL//65S//+uUv//rlL/lHVz/6V5awgAAAAAAAAAAAAAAAAAAAAAAAAAAHtZWghzWVr/1lla/85V - Wv/GUVL/xk1S/9Zxc///opz/96Kl/3PL1v8A6///ANbt/wC+2v8Avt7/ANP//wDL//8AYn7/AISy/2PH - 5//317X//8+c//+2a///rlL//65S//+uUv//rlL/lHVz/6WCawgAAAAAAAAAAAAAAAAAAAAAAAAAAHtZ - WghzWVr/zlVa/8ZRUv/GWVr/75aM//+upf//pqX//56c//+WnP+kjZb/BCYr/wAUF/8AISf/AFpt/wDL - //8Ofp//TFhW///ftf//163//9Ol///PlP//vnv//65a//+uUv//rlL/lHVz/6V9awgAAAAAAAAAAAAA - AAAAAAAAAAAAAHNZWghrWVr/xlFS/9Z1c///tqX//7at//+upf//pqX//56c/+WGjP8eERL/CQYG/zV0 - hP8Ar8z/AENR/yxsev+Qi4H/Qjoz///ftf//163//9Ol///PlP//y5T//8eM//+yY///rlL/lHVr/6V9 - awgAAAAAAAAAAAAAAAAAAAAAAAAAAHNZWghrVVL/55aM///Htf//vq3//7at//+upf//pqX//56c/7tu - cv8KBQb/r2Zr//+WnP+lqr3/rePv/3JqX/9KQzv/XlNI///ftf//163//9Ol///LlP//y5T//8uU///L - lP//unP/jHFr/5x5awgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABzWVqMe2Vj/9aqnP//vq3//7at//+u - pf//pqX//56c/6hiZv86IiP//5ac/+eSrf+Ugu//jIr//19WW/8BAAD/s5+K///ftf//163//9Ol///L - lP//y5T//8uU/++6jP+lgnP/jHVrtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhGljQmtZ - Wuethnv//7Kl//+upf//pqX//56c/9V9gv8rGRr/xpLO/4yG//97ff//QUCR/wAAAP84M0f/9Nm9///f - tf//163//9Ol///LlP//y5T/xqKE/4xta/eUeXNrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAIxtaxBzXVqlhGVj/+eelP//pqX//56c/++arf9sYJX/Hx83/1FSnf8kJEv/AAAA/xgY - O/9bXev/hIL3/+/Lvf//163//9Oc/+++lP+cgnP/hG1rxqWCcyEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhGVjWmtZWu+9gnv/1qLO/6Sh/v+cmv//X2Cu/zAw - Xf8rLFr/QD6O/2Ri7/9jZf//Y2X//2tp///Gqs7/zqaM/4Rta/+MdWtzAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIxpaxhrXVq9e2mE/5ya - 7/+cmv//jI7//4GD+/97ef//cnD9/2tp//9jZf//Y2X//2Nl9/9zZZT/e2VjzpR5cykAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAc2Fzc2tdY/eEgr3/jI7//4SG//97ef//c3H//2Nl//9jZf//a2HO/3Nha/9zZXOEAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAHNleylrWVrOc2mM/4SC9/97ef//c3H//2tl9/9rYZz/c2Fj1nNh - hDEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa11rhGtda/9zcc7/c2nO/2td - a/9zXWuMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGth - ezlrWVrea11a3mthe0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////gAAAAP/8P/+AAAAA//gf/4AAAAD/4Af/gAAAAP/A - A/+AAAAA/wAA/4AAAAD+AAB/gAAAAPgAAB+AAAAA8AAAD4AAAADgAAAHgAAAAMAAAAOAAAAAwAAAA4AA - AADAAAADgAAAAMAAAAOAAAAAwAAAA4AAAADAAAADgAAAAMAAAAOAAAAAwAAAA4AAAADAAAADgAAAAMAA - AAOAAAAAwAAAA4AAAADAAAADgAAAAOAAAAeAAAAA8AAAD4AAAAD4AAAfgAAAAP4AAH+AAAAA/wAA/4AA - AAD/wAP/gAAAAP/gB/+AAAAA//gf/4AAAAD//D//gAAAAP////+AAAAA -</value> - </data> -</root> \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/AllomorphGeneratorDll.csproj b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/AllomorphGeneratorDll.csproj deleted file mode 100644 index 44c53cb687..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/AllomorphGeneratorDll.csproj +++ /dev/null @@ -1,49 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project Sdk="Microsoft.NET.Sdk"> - <PropertyGroup> - <AssemblyName>AllomorphGenerator</AssemblyName> - <RootNamespace>SIL.AllomorphGenerator</RootNamespace> - <TargetFramework>net48</TargetFramework> - <OutputType>Library</OutputType> <NoWarn>168,169,219,414,649,1635,1702,1701</NoWarn> - <GenerateAssemblyInfo>false</GenerateAssemblyInfo> - <Prefer32Bit>false</Prefer32Bit> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> - <DefineConstants>DEBUG;TRACE</DefineConstants> - <DebugSymbols>true</DebugSymbols> - <Optimize>false</Optimize> - <DebugType>portable</DebugType> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> - <DefineConstants>TRACE</DefineConstants> - <DebugSymbols>true</DebugSymbols> - <Optimize>true</Optimize> - <DebugType>portable</DebugType> - </PropertyGroup> - <ItemGroup> - <None Remove="resources\LT.ico" /> - </ItemGroup> - - <ItemGroup> - <PackageReference Include="Newtonsoft.Json" /> - <PackageReference Include="SIL.Core" /> - <PackageReference Include="System.ValueTuple" /> - </ItemGroup> - <ItemGroup> - <Reference Include="netstandard" /> - <Reference Include="System.Xml.Linq" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="../AlloGenModel/AlloGenModel.csproj" /> - <ProjectReference Include="../AlloGenService/AlloGenService.csproj" /> - <ProjectReference Include="../../../Common/FwUtils/FwUtils.csproj" /> - <ProjectReference Include="../../../XCore/XCore.csproj" /> - <ProjectReference Include="../../XMLUtils/XMLUtils.csproj" /> - <ProjectReference Include="../../../FwCoreDlgs/FwCoreDlgs.csproj" /> - </ItemGroup> - <ItemGroup> - <Compile Include="..\..\..\CommonAssemblyInfo.cs"> - <Link>Properties\CommonAssemblyInfo.cs</Link> - </Compile> - </ItemGroup> -</Project> \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/CategoryChooser.Designer.cs b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/CategoryChooser.Designer.cs deleted file mode 100644 index 2c28753636..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/CategoryChooser.Designer.cs +++ /dev/null @@ -1,90 +0,0 @@ -namespace SIL.AllomorphGenerator -{ - partial class CategoryChooser - { - /// <summary> - /// Required designer variable. - /// </summary> - private System.ComponentModel.IContainer components = null; - - /// <summary> - /// Clean up any resources being used. - /// </summary> - /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// <summary> - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// </summary> - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CategoryChooser)); - this.btnCancel = new System.Windows.Forms.Button(); - this.btnOK = new System.Windows.Forms.Button(); - this.lBoxCategories = new System.Windows.Forms.ListBox(); - this.SuspendLayout(); - // - // btnCancel - // - this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.btnCancel.Location = new System.Drawing.Point(702, 397); - this.btnCancel.Name = "btnCancel"; - this.btnCancel.Size = new System.Drawing.Size(75, 41); - this.btnCancel.TabIndex = 2; - this.btnCancel.Text = "Cancel"; - this.btnCancel.UseVisualStyleBackColor = true; - // - // btnOK - // - this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK; - this.btnOK.Location = new System.Drawing.Point(590, 397); - this.btnOK.Name = "btnOK"; - this.btnOK.Size = new System.Drawing.Size(75, 41); - this.btnOK.TabIndex = 1; - this.btnOK.Text = "OK"; - this.btnOK.UseVisualStyleBackColor = true; - this.btnOK.Click += new System.EventHandler(this.btnOK_Click); - // - // lBoxCategories - // - this.lBoxCategories.FormattingEnabled = true; - this.lBoxCategories.ItemHeight = 20; - this.lBoxCategories.Location = new System.Drawing.Point(13, 13); - this.lBoxCategories.Name = "lBoxCategories"; - this.lBoxCategories.Size = new System.Drawing.Size(764, 364); - this.lBoxCategories.TabIndex = 0; - // - // CategoryChooser - // - this.AcceptButton = this.btnOK; - this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.CancelButton = this.btnCancel; - this.ClientSize = new System.Drawing.Size(800, 450); - this.Controls.Add(this.lBoxCategories); - this.Controls.Add(this.btnOK); - this.Controls.Add(this.btnCancel); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.Name = "CategoryChooser"; - this.Text = "Category Chooser"; - this.ResumeLayout(false); - - } - - #endregion - - private System.Windows.Forms.Button btnCancel; - private System.Windows.Forms.Button btnOK; - private System.Windows.Forms.ListBox lBoxCategories; - } -} \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/CategoryChooser.cs b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/CategoryChooser.cs deleted file mode 100644 index 572384d47f..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/CategoryChooser.cs +++ /dev/null @@ -1,58 +0,0 @@ -// Copyright (c) 2022 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using SIL.AlloGenModel; -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; - -namespace SIL.AllomorphGenerator -{ - public partial class CategoryChooser : Form - { - public List<Category> Categories { get; set; } - public Category SelectedCategory { get; set; } = new Category(); - public Category NoneChosen { get; set; } = new Category(); - - public CategoryChooser() - { - Categories = new List<Category>(); - NoneChosen.Name = "<None>"; - NoneChosen.Guid = ""; - InitializeComponent(); - FillCategoriesListBox(); - } - - public void FillCategoriesListBox() - { - lBoxCategories.BeginUpdate(); - lBoxCategories.Items.Clear(); - foreach (Category category in Categories) - { - lBoxCategories.Items.Add(category); - } - lBoxCategories.Items.Add(NoneChosen); - lBoxCategories.EndUpdate(); - } - - public void SelectCategory(int index) - { - if (index > -1 && index <= Categories.Count) - { - lBoxCategories.SelectedIndex = index; - } - } - - private void btnOK_Click(object sender, EventArgs e) - { - SelectedCategory = (Category)lBoxCategories.SelectedItem; - } - } -} diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/CategoryChooser.resx b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/CategoryChooser.resx deleted file mode 100644 index 09446bdec6..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/CategoryChooser.resx +++ /dev/null @@ -1,201 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<root> - <!-- - Microsoft ResX Schema - - Version 2.0 - - The primary goals of this format is to allow a simple XML format - that is mostly human readable. The generation and parsing of the - various data types are done through the TypeConverter classes - associated with the data types. - - Example: - - ... ado.net/XML headers & schema ... - <resheader name="resmimetype">text/microsoft-resx</resheader> - <resheader name="version">2.0</resheader> - <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> - <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> - <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> - <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> - <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> - <value>[base64 mime encoded serialized .NET Framework object]</value> - </data> - <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> - <comment>This is a comment</comment> - </data> - - There are any number of "resheader" rows that contain simple - name/value pairs. - - Each data row contains a name, and value. The row also contains a - type or mimetype. Type corresponds to a .NET class that support - text/value conversion through the TypeConverter architecture. - Classes that don't support this are serialized and stored with the - mimetype set. - - The mimetype is used for serialized objects, and tells the - ResXResourceReader how to depersist the object. This is currently not - extensible. For a given mimetype the value must be set accordingly: - - Note - application/x-microsoft.net.object.binary.base64 is the format - that the ResXResourceWriter will generate, however the reader can - read any of the formats listed below. - - mimetype: application/x-microsoft.net.object.binary.base64 - value : The object must be serialized with - : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.soap.base64 - value : The object must be serialized with - : System.Runtime.Serialization.Formatters.Soap.SoapFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.bytearray.base64 - value : The object must be serialized into a byte array - : using a System.ComponentModel.TypeConverter - : and then encoded with base64 encoding. - --> - <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> - <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> - <xsd:element name="root" msdata:IsDataSet="true"> - <xsd:complexType> - <xsd:choice maxOccurs="unbounded"> - <xsd:element name="metadata"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" /> - </xsd:sequence> - <xsd:attribute name="name" use="required" type="xsd:string" /> - <xsd:attribute name="type" type="xsd:string" /> - <xsd:attribute name="mimetype" type="xsd:string" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="assembly"> - <xsd:complexType> - <xsd:attribute name="alias" type="xsd:string" /> - <xsd:attribute name="name" type="xsd:string" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="data"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> - <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> - <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="resheader"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" /> - </xsd:complexType> - </xsd:element> - </xsd:choice> - </xsd:complexType> - </xsd:element> - </xsd:schema> - <resheader name="resmimetype"> - <value>text/microsoft-resx</value> - </resheader> - <resheader name="version"> - <value>2.0</value> - </resheader> - <resheader name="reader"> - <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> - <resheader name="writer"> - <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> - <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> - <data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - AAABAAEAISAAAAEAIACoEQAAFgAAACgAAAAhAAAAQAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAIR1YzmMdXPelHVz3nt1YzkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAhHVrjIR1a/9KgiH/KW0h/4R1a/+EdWuEAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAHt1WjGMcWvWa3lK/zGGCP8phgD/AGkA/whpCP9jcVL/lHlzznN1 - YykAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe3Fje4RxY/9KgiH/KYoA/ymGAP8pggD/AGkA/wBp - AP8AaQD/OW0p/4x5c/d7dWtzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGtdeyGEbWvOa3lK/zGKCP8pigD/KYYA/ymC - AP8pfQD/AGkA/wBpAP8AaQD/AGkA/xBpCP9zdVr/lHlzvZRpaxgAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa117a3tlc/cxLL3/KY4A/ymK - AP8phgD/KYIA/yl9AP8peQD/AGkA/wBpAP8AaQD/AGkA/wBpAP8AaQD/zjx7/5R1e++laXtaAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGNRhBh7ZWu9Y1GM/xAM - 3v8AAO//KYoA/ymGAP8pggD/KX0A/yl5AP8hdQj/AG0Q/wBpAP8AaQD/AGkA/wBpAP8AaQD//wiE/+8c - e/+lZXv/nHF7ra1hexAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAY1V7Y3th - a/c5MLX/AAD3/wAA7/8AAOf/KYYA/ymCAP8pfQD/KXkA/xh5Of8Afa3/AJ7n/wB5Qv8AaQD/AGkA/wBp - AP8AaQD//wiE//8IhP//DHv/xkV7/5x1e+etZXtCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AABzXWutY1GE/xAQ3v8AAPf/AADv/wAA5/8AAN7/KYIA/yl9AP8heQj/CHlz/wB5vf8Aeb3/AKb//wCm - //8AipT/AGkI/wBpAP8AaQD//wiE//8IhP//CIT//wiE/+cke/+lbXv/nHF7jAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAGtVcwhzXWv/AAD3/wAA9/8AAO//AADn/wAA3v8AAN7/KX0A/xh5Mf8Afa3/AHm9/wB1 - tf8AdbX/AKb//wCm//8Apv//AJ7W/wB1Mf8AaQD//wiE//8IhP//CIT//wiE//8IhP//EHv/nHV7/6Vl - ewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNVcwhrWWv/AAD3/wAA7/8AAOf/AADe/wAA3v8AAM7/EH1z/wB9 - xv8Aeb3/AHW1/wBxrf8Aca3/AKb//wCm//8Apv//AKb//wCm//8Ahnv//wh7//8IhP//CIT//wiE//8I - hP//CIT/nHF7/61hewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNRcwhrWWv/AADv/wAA5/8AAN7/AADe/ykQ - vf+1TXP/CH29/wB5vf8AdbX/AHGt/wBtrf8Aba3/AKb//wCm//8Apv//AKb//wCm//8Apv///4Za//8g - e///CIT//wiE//8IhP//CIT/nHF7/61dewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNRcwhrWWv/AADn/wAA - 3v8AANb/ayyc/9ZZY//WWVr/CHm1/wB1tf8Aca3/AG2t/wBppf8AfbX/AK7//wCm//8Apv//AKb//wCm - //8Apv///65S//+mUv//SWv//wiE//8IhP//CIT/nHF7/61dewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNR - awhrWWP/AADe/yEQxv+1SXv/1llj/9ZZWv/OVVr/CHW1/wBxrf8Aba3/AGml/wCizv8A1///ANP//wC2 - //8Apv//AKb//wCm//8Apv///65S//+uUv//rlL//3lj//8Ye///CIT/lG1z/61hcwgAAAAAAAAAAAAA - AAAAAAAAAAAAAGtVawhrWWP/Yyil/9ZZa//WWWP/1lla/85VWv/GUVL/CHGt/wBtrf8AfbX/AMvv/wDf - //8A2///ANP//wDL//8Avv//AKr//wCm//8Apv///65S//+uUv//rlL//65S//+eWv//OHP/lG1z/61p - cwgAAAAAAAAAAAAAAAAAAAAAAAAAAHNVYwhzXVr/3l1j/9ZZY//WWVr/zlVa/8ZRUv/GTVL/CG2l/wCm - zv8A5///AOf//wDf//8A2///ANP//wCq1v8Aue7/AL7//wCu//8Apv///65S//+uUv//rlL//65S//+u - Uv//rlL/lHVz/61xcwgAAAAAAAAAAAAAAAAAAAAAAAAAAHtZWghzWVr/1llj/9ZZWv/OVVr/xlFS/8ZN - Uv/GVVr/McPW/wDz//8A7///AOf//wDf//8A2///ANP//wCXvv8AOkv/ALb1/wC2//8Ysvf//65a//+u - Uv//rlL//65S//+uUv//rlL/lHVz/6V5awgAAAAAAAAAAAAAAAAAAAAAAAAAAHtZWghzWVr/1lla/85V - Wv/GUVL/xk1S/9Zxc///opz/96Kl/3PL1v8A6///ANbt/wC+2v8Avt7/ANP//wDL//8AYn7/AISy/2PH - 5//317X//8+c//+2a///rlL//65S//+uUv//rlL/lHVz/6WCawgAAAAAAAAAAAAAAAAAAAAAAAAAAHtZ - WghzWVr/zlVa/8ZRUv/GWVr/75aM//+upf//pqX//56c//+WnP+kjZb/BCYr/wAUF/8AISf/AFpt/wDL - //8Ofp//TFhW///ftf//163//9Ol///PlP//vnv//65a//+uUv//rlL/lHVz/6V9awgAAAAAAAAAAAAA - AAAAAAAAAAAAAHNZWghrWVr/xlFS/9Z1c///tqX//7at//+upf//pqX//56c/+WGjP8eERL/CQYG/zV0 - hP8Ar8z/AENR/yxsev+Qi4H/Qjoz///ftf//163//9Ol///PlP//y5T//8eM//+yY///rlL/lHVr/6V9 - awgAAAAAAAAAAAAAAAAAAAAAAAAAAHNZWghrVVL/55aM///Htf//vq3//7at//+upf//pqX//56c/7tu - cv8KBQb/r2Zr//+WnP+lqr3/rePv/3JqX/9KQzv/XlNI///ftf//163//9Ol///LlP//y5T//8uU///L - lP//unP/jHFr/5x5awgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABzWVqMe2Vj/9aqnP//vq3//7at//+u - pf//pqX//56c/6hiZv86IiP//5ac/+eSrf+Ugu//jIr//19WW/8BAAD/s5+K///ftf//163//9Ol///L - lP//y5T//8uU/++6jP+lgnP/jHVrtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhGljQmtZ - Wuethnv//7Kl//+upf//pqX//56c/9V9gv8rGRr/xpLO/4yG//97ff//QUCR/wAAAP84M0f/9Nm9///f - tf//163//9Ol///LlP//y5T/xqKE/4xta/eUeXNrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAIxtaxBzXVqlhGVj/+eelP//pqX//56c/++arf9sYJX/Hx83/1FSnf8kJEv/AAAA/xgY - O/9bXev/hIL3/+/Lvf//163//9Oc/+++lP+cgnP/hG1rxqWCcyEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhGVjWmtZWu+9gnv/1qLO/6Sh/v+cmv//X2Cu/zAw - Xf8rLFr/QD6O/2Ri7/9jZf//Y2X//2tp///Gqs7/zqaM/4Rta/+MdWtzAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIxpaxhrXVq9e2mE/5ya - 7/+cmv//jI7//4GD+/97ef//cnD9/2tp//9jZf//Y2X//2Nl9/9zZZT/e2VjzpR5cykAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAc2Fzc2tdY/eEgr3/jI7//4SG//97ef//c3H//2Nl//9jZf//a2HO/3Nha/9zZXOEAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAHNleylrWVrOc2mM/4SC9/97ef//c3H//2tl9/9rYZz/c2Fj1nNh - hDEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa11rhGtda/9zcc7/c2nO/2td - a/9zXWuMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGth - ezlrWVrea11a3mthe0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////gAAAAP/8P/+AAAAA//gf/4AAAAD/4Af/gAAAAP/A - A/+AAAAA/wAA/4AAAAD+AAB/gAAAAPgAAB+AAAAA8AAAD4AAAADgAAAHgAAAAMAAAAOAAAAAwAAAA4AA - AADAAAADgAAAAMAAAAOAAAAAwAAAA4AAAADAAAADgAAAAMAAAAOAAAAAwAAAA4AAAADAAAADgAAAAMAA - AAOAAAAAwAAAA4AAAADAAAADgAAAAOAAAAeAAAAA8AAAD4AAAAD4AAAfgAAAAP4AAH+AAAAA/wAA/4AA - AAD/wAP/gAAAAP/gB/+AAAAA//gf/4AAAAD//D//gAAAAP////+AAAAA -</value> - </data> -</root> \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/CreateNewOpenCancelDialog.Designer.cs b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/CreateNewOpenCancelDialog.Designer.cs deleted file mode 100644 index 2c3bdd53d1..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/CreateNewOpenCancelDialog.Designer.cs +++ /dev/null @@ -1,115 +0,0 @@ -namespace SIL.AllomorphGenerator -{ - partial class CreateNewOpenCancelDialog - { - /// <summary> - /// Required designer variable. - /// </summary> - private System.ComponentModel.IContainer components = null; - - /// <summary> - /// Clean up any resources being used. - /// </summary> - /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// <summary> - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// </summary> - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CreateNewOpenCancelDialog)); - this.btnCreate = new System.Windows.Forms.Button(); - this.btnOpen = new System.Windows.Forms.Button(); - this.btnCancel = new System.Windows.Forms.Button(); - this.lbPrompt = new System.Windows.Forms.Label(); - this.lbChoose = new System.Windows.Forms.Label(); - this.SuspendLayout(); - // - // btnCreate - // - this.btnCreate.DialogResult = System.Windows.Forms.DialogResult.OK; - this.btnCreate.Location = new System.Drawing.Point(45, 131); - this.btnCreate.Name = "btnCreate"; - this.btnCreate.Size = new System.Drawing.Size(355, 58); - this.btnCreate.TabIndex = 0; - this.btnCreate.Text = "Create a new operations file"; - this.btnCreate.UseVisualStyleBackColor = true; - // - // btnOpen - // - this.btnOpen.DialogResult = System.Windows.Forms.DialogResult.Yes; - this.btnOpen.Location = new System.Drawing.Point(45, 218); - this.btnOpen.Name = "btnOpen"; - this.btnOpen.Size = new System.Drawing.Size(355, 58); - this.btnOpen.TabIndex = 1; - this.btnOpen.Text = "Open existing operations file"; - this.btnOpen.UseVisualStyleBackColor = true; - // - // btnCancel - // - this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.btnCancel.Location = new System.Drawing.Point(45, 305); - this.btnCancel.Name = "btnCancel"; - this.btnCancel.Size = new System.Drawing.Size(355, 58); - this.btnCancel.TabIndex = 2; - this.btnCancel.Text = "Cancel"; - this.btnCancel.UseVisualStyleBackColor = true; - // - // lbPrompt - // - this.lbPrompt.AutoSize = true; - this.lbPrompt.Location = new System.Drawing.Point(45, 36); - this.lbPrompt.Name = "lbPrompt"; - this.lbPrompt.Size = new System.Drawing.Size(361, 20); - this.lbPrompt.TabIndex = 3; - this.lbPrompt.Text = "Apparently this utility tool has not been run before."; - // - // lbChoose - // - this.lbChoose.AutoSize = true; - this.lbChoose.Location = new System.Drawing.Point(45, 84); - this.lbChoose.Name = "lbChoose"; - this.lbChoose.Size = new System.Drawing.Size(138, 20); - this.lbChoose.TabIndex = 4; - this.lbChoose.Text = "Choose an option:"; - // - // CreateNewOpenCancelDialog - // - this.AcceptButton = this.btnCreate; - this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.CancelButton = this.btnCancel; - this.ClientSize = new System.Drawing.Size(471, 395); - this.Controls.Add(this.lbChoose); - this.Controls.Add(this.lbPrompt); - this.Controls.Add(this.btnCancel); - this.Controls.Add(this.btnOpen); - this.Controls.Add(this.btnCreate); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.Name = "CreateNewOpenCancelDialog"; - this.Text = "Allomorph Generator"; - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private System.Windows.Forms.Button btnCreate; - private System.Windows.Forms.Button btnOpen; - private System.Windows.Forms.Button btnCancel; - private System.Windows.Forms.Label lbPrompt; - private System.Windows.Forms.Label lbChoose; - } -} \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/CreateNewOpenCancelDialog.cs b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/CreateNewOpenCancelDialog.cs deleted file mode 100644 index 7ec8e33a6f..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/CreateNewOpenCancelDialog.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; - -namespace SIL.AllomorphGenerator -{ - public partial class CreateNewOpenCancelDialog : Form - { - public CreateNewOpenCancelDialog() - { - InitializeComponent(); - } - } -} diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/CreateNewOpenCancelDialog.resx b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/CreateNewOpenCancelDialog.resx deleted file mode 100644 index f36e204548..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/CreateNewOpenCancelDialog.resx +++ /dev/null @@ -1,138 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<root> - <!-- - Microsoft ResX Schema - - Version 2.0 - - The primary goals of this format is to allow a simple XML format - that is mostly human readable. The generation and parsing of the - various data types are done through the TypeConverter classes - associated with the data types. - - Example: - - ... ado.net/XML headers & schema ... - <resheader name="resmimetype">text/microsoft-resx</resheader> - <resheader name="version">2.0</resheader> - <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> - <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> - <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> - <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> - <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> - <value>[base64 mime encoded serialized .NET Framework object]</value> - </data> - <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> - <comment>This is a comment</comment> - </data> - - There are any number of "resheader" rows that contain simple - name/value pairs. - - Each data row contains a name, and value. The row also contains a - type or mimetype. Type corresponds to a .NET class that support - text/value conversion through the TypeConverter architecture. - Classes that don't support this are serialized and stored with the - mimetype set. - - The mimetype is used for serialized objects, and tells the - ResXResourceReader how to depersist the object. This is currently not - extensible. For a given mimetype the value must be set accordingly: - - Note - application/x-microsoft.net.object.binary.base64 is the format - that the ResXResourceWriter will generate, however the reader can - read any of the formats listed below. - - mimetype: application/x-microsoft.net.object.binary.base64 - value : The object must be serialized with - : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.soap.base64 - value : The object must be serialized with - : System.Runtime.Serialization.Formatters.Soap.SoapFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.bytearray.base64 - value : The object must be serialized into a byte array - : using a System.ComponentModel.TypeConverter - : and then encoded with base64 encoding. - --> - <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> - <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> - <xsd:element name="root" msdata:IsDataSet="true"> - <xsd:complexType> - <xsd:choice maxOccurs="unbounded"> - <xsd:element name="metadata"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" /> - </xsd:sequence> - <xsd:attribute name="name" use="required" type="xsd:string" /> - <xsd:attribute name="type" type="xsd:string" /> - <xsd:attribute name="mimetype" type="xsd:string" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="assembly"> - <xsd:complexType> - <xsd:attribute name="alias" type="xsd:string" /> - <xsd:attribute name="name" type="xsd:string" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="data"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> - <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> - <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="resheader"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" /> - </xsd:complexType> - </xsd:element> - </xsd:choice> - </xsd:complexType> - </xsd:element> - </xsd:schema> - <resheader name="resmimetype"> - <value>text/microsoft-resx</value> - </resheader> - <resheader name="version"> - <value>2.0</value> - </resheader> - <resheader name="reader"> - <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> - <resheader name="writer"> - <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> - <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> - <data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - AAABAAEAICAQAAAAAADoAgAAFgAAACgAAAAgAAAAQAAAAAEABAAAAAAAgAIAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAwMDAAICAgAAAAP8AAP8AAAD//wD/AAAA/wD/AP// - AAD///8AAAAAAAAARERERAAAAAAAAAAAAAAEREREREREQAAAAAAAAAAERERERERERERAAAAAAAAARERE - RERERERERAAAAAAABERERERERERERERAAAAAAERERERERERERERERAAAAARERERERERERERERERAAABE - RERERP////9ERERERAAARERERET/////REREREQABERERERE/////0REREREQARERERERET//0RERERE - REAERERERERE//9ERERERERARERERERERP//RERERERERERERERERET//0RERERERERERERERERE//9E - RERERERERERERERERP//RERERERERERERERERET//0RERERERERERERERET///9ERERERERERERERERE - ////RERERERERERERERERP///0REREREREQERERERERERERERERERERABEREREREREREREREREREQARE - REREREREREREREREREAARERERERE//REREREREQAAERERERET///REREREREAAAERERERE///0RERERE - QAAAAERERERE//RERERERAAAAAAEREREREREREREREAAAAAAAEREREREREREREQAAAAAAAAERERERERE - RERAAAAAAAAAAARERERERERAAAAAAAAAAAAAAEREREQAAAAAAAD/8A///4AB//4AAH/8AAA/+AAAH/AA - AA/gAAAHwAAAA8AAAAOAAAABgAAAAYAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAA - AAGAAAABgAAAAcAAAAPAAAAD4AAAB/AAAA/4AAAf/AAAP/4AAH//gAH///AP/w== -</value> - </data> -</root> \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/EditReplaceOpForm.Designer.cs b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/EditReplaceOpForm.Designer.cs deleted file mode 100644 index 84c61609f6..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/EditReplaceOpForm.Designer.cs +++ /dev/null @@ -1,186 +0,0 @@ -namespace SIL.AllomorphGenerator -{ - partial class EditReplaceOpForm - { - /// <summary> - /// Required designer variable. - /// </summary> - private System.ComponentModel.IContainer components = null; - - /// <summary> - /// Clean up any resources being used. - /// </summary> - /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// <summary> - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// </summary> - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EditReplaceOpForm)); - this.btnCancel = new System.Windows.Forms.Button(); - this.btnOK = new System.Windows.Forms.Button(); - this.lbReplace = new System.Windows.Forms.Label(); - this.cbRegEx = new System.Windows.Forms.CheckBox(); - this.lbTo = new System.Windows.Forms.Label(); - this.lbVarieties = new System.Windows.Forms.Label(); - this.lbName = new System.Windows.Forms.Label(); - this.label1 = new System.Windows.Forms.Label(); - this.tbDescription = new System.Windows.Forms.TextBox(); - this.tbName = new System.Windows.Forms.TextBox(); - this.clbWritingSystems = new System.Windows.Forms.CheckedListBox(); - this.SuspendLayout(); - // - // btnCancel - // - this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.btnCancel.Location = new System.Drawing.Point(693, 527); - this.btnCancel.Name = "btnCancel"; - this.btnCancel.Size = new System.Drawing.Size(95, 35); - this.btnCancel.TabIndex = 16; - this.btnCancel.Text = "Cancel"; - this.btnCancel.UseVisualStyleBackColor = true; - this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); - // - // btnOK - // - this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK; - this.btnOK.Location = new System.Drawing.Point(561, 527); - this.btnOK.Name = "btnOK"; - this.btnOK.Size = new System.Drawing.Size(97, 34); - this.btnOK.TabIndex = 15; - this.btnOK.Text = "OK"; - this.btnOK.UseVisualStyleBackColor = true; - this.btnOK.Click += new System.EventHandler(this.btnOK_Click); - // - // lbReplace - // - this.lbReplace.AutoSize = true; - this.lbReplace.Location = new System.Drawing.Point(51, 160); - this.lbReplace.Name = "lbReplace"; - this.lbReplace.Size = new System.Drawing.Size(68, 20); - this.lbReplace.TabIndex = 4; - this.lbReplace.Text = "Replace"; - // - // cbRegEx - // - this.cbRegEx.AutoSize = true; - this.cbRegEx.Location = new System.Drawing.Point(542, 162); - this.cbRegEx.Name = "cbRegEx"; - this.cbRegEx.Size = new System.Drawing.Size(171, 24); - this.cbRegEx.TabIndex = 6; - this.cbRegEx.Text = "Regular expression"; - this.cbRegEx.UseVisualStyleBackColor = true; - this.cbRegEx.CheckedChanged += new System.EventHandler(this.cbRegEx_CheckedChanged); - // - // lbTo - // - this.lbTo.AutoSize = true; - this.lbTo.Location = new System.Drawing.Point(55, 214); - this.lbTo.Name = "lbTo"; - this.lbTo.Size = new System.Drawing.Size(27, 20); - this.lbTo.TabIndex = 7; - this.lbTo.Text = "To"; - // - // lbVarieties - // - this.lbVarieties.AutoSize = true; - this.lbVarieties.Location = new System.Drawing.Point(55, 272); - this.lbVarieties.Name = "lbVarieties"; - this.lbVarieties.Size = new System.Drawing.Size(75, 20); - this.lbVarieties.TabIndex = 9; - this.lbVarieties.Text = "Varieties:"; - // - // lbName - // - this.lbName.AutoSize = true; - this.lbName.Location = new System.Drawing.Point(55, 21); - this.lbName.Name = "lbName"; - this.lbName.Size = new System.Drawing.Size(51, 20); - this.lbName.TabIndex = 0; - this.lbName.Text = "Name"; - // - // label1 - // - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(55, 72); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(89, 20); - this.label1.TabIndex = 2; - this.label1.Text = "Description"; - // - // tbDescription - // - this.tbDescription.Location = new System.Drawing.Point(158, 72); - this.tbDescription.Multiline = true; - this.tbDescription.Name = "tbDescription"; - this.tbDescription.Size = new System.Drawing.Size(607, 63); - this.tbDescription.TabIndex = 3; - // - // tbName - // - this.tbName.Location = new System.Drawing.Point(158, 21); - this.tbName.Name = "tbName"; - this.tbName.Size = new System.Drawing.Size(607, 26); - this.tbName.TabIndex = 1; - // - // clbWritingSystems - // - this.clbWritingSystems.FormattingEnabled = true; - this.clbWritingSystems.Location = new System.Drawing.Point(158, 272); - this.clbWritingSystems.Name = "clbWritingSystems"; - this.clbWritingSystems.Size = new System.Drawing.Size(352, 151); - this.clbWritingSystems.TabIndex = 17; - // - // EditReplaceOpForm - // - this.AcceptButton = this.btnOK; - this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.CancelButton = this.btnCancel; - this.ClientSize = new System.Drawing.Size(800, 579); - this.Controls.Add(this.clbWritingSystems); - this.Controls.Add(this.tbName); - this.Controls.Add(this.tbDescription); - this.Controls.Add(this.label1); - this.Controls.Add(this.lbName); - this.Controls.Add(this.lbVarieties); - this.Controls.Add(this.lbTo); - this.Controls.Add(this.cbRegEx); - this.Controls.Add(this.lbReplace); - this.Controls.Add(this.btnOK); - this.Controls.Add(this.btnCancel); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.Name = "EditReplaceOpForm"; - this.Text = "Edit Replace Operation"; - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private System.Windows.Forms.Button btnCancel; - private System.Windows.Forms.Button btnOK; - private System.Windows.Forms.Label lbReplace; - private System.Windows.Forms.CheckBox cbRegEx; - private System.Windows.Forms.Label lbTo; - private System.Windows.Forms.Label lbVarieties; - private System.Windows.Forms.Label lbName; - private System.Windows.Forms.Label label1; - private System.Windows.Forms.TextBox tbDescription; - private System.Windows.Forms.TextBox tbName; - private System.Windows.Forms.CheckedListBox clbWritingSystems; - } -} \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/EditReplaceOpForm.cs b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/EditReplaceOpForm.cs deleted file mode 100644 index c05641ae23..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/EditReplaceOpForm.cs +++ /dev/null @@ -1,182 +0,0 @@ -// Copyright (c) 2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using SIL.AlloGenModel; -using SIL.FieldWorks.Common.Widgets; -using SIL.LCModel; -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Text.RegularExpressions; -using System.Threading.Tasks; -using System.Windows.Forms; - -namespace SIL.AllomorphGenerator -{ - public partial class EditReplaceOpForm : Form - { - private FwTextBox fwtbFrom; - private FwTextBox fwtbTo; - - public Replace ReplaceOp { get; set; } - public bool OkPressed { get; set; } - - public EditReplaceOpForm() - { - InitializeComponent(); - InitializeFWComponents(); - } - - private void InitializeFWComponents() - { - fwtbFrom = new FwTextBox(); - ((System.ComponentModel.ISupportInitialize)(this.fwtbFrom)).BeginInit(); - // - // fwtbFrom - // - this.fwtbFrom.Location = new System.Drawing.Point(105, 97); - this.fwtbFrom.Name = "fwtbFrom"; - this.fwtbFrom.Size = new System.Drawing.Size(235, 26); - this.fwtbFrom.TabIndex = 5; - - this.fwtbFrom.AcceptsReturn = false; - this.fwtbFrom.AdjustStringHeight = true; - this.fwtbFrom.BackColor = System.Drawing.SystemColors.Window; - this.fwtbFrom.controlID = null; - //resources.ApplyResources(this.fwtbFrom, "fwtbFrom"); - this.fwtbFrom.HasBorder = true; - this.fwtbFrom.Name = "fwtbFrom"; - this.fwtbFrom.SuppressEnter = true; - this.fwtbFrom.WordWrap = false; - this.fwtbFrom.Leave += new System.EventHandler(fwtb_Leave); - ((System.ComponentModel.ISupportInitialize)(this.fwtbFrom)).EndInit(); - this.Controls.Add(this.fwtbFrom); - - fwtbTo = new FwTextBox(); - ((System.ComponentModel.ISupportInitialize)(this.fwtbTo)).BeginInit(); - // - // fwtbTo - // - this.fwtbTo.Location = new System.Drawing.Point(105, 127); - this.fwtbTo.Name = "fwtbTo"; - this.fwtbTo.Size = new System.Drawing.Size(235, 26); - this.fwtbTo.TabIndex = 8; - - this.fwtbTo.AcceptsReturn = false; - this.fwtbTo.AdjustStringHeight = true; - this.fwtbTo.BackColor = System.Drawing.SystemColors.Window; - this.fwtbTo.controlID = null; - //resources.ApplyResources(this.fwtbTo, "fwtbTo"); - this.fwtbTo.HasBorder = true; - this.fwtbTo.Name = "fwtbTo"; - this.fwtbTo.SuppressEnter = true; - this.fwtbTo.WordWrap = false; - this.fwtbTo.Leave += new System.EventHandler(fwtb_Leave); - ((System.ComponentModel.ISupportInitialize)(this.fwtbTo)).EndInit(); - this.Controls.Add(this.fwtbTo); - } - - private void fwtb_Leave(object sender, EventArgs e) - { - if (cbRegEx.Checked) - { - FwTextBox tb = (FwTextBox)sender; - if (!IsValidRegex(tb.Text)) - { - tb.Focus(); - } - } - } - - public void Initialize(Replace replace, List<WritingSystem> writingSystems, LcmCache cache) - { - fwtbFrom.WritingSystemFactory = cache.LanguageWritingSystemFactoryAccessor; - fwtbFrom.WritingSystemCode = cache - .ServiceLocator - .WritingSystems - .DefaultVernacularWritingSystem - .Handle; - fwtbTo.WritingSystemFactory = cache.LanguageWritingSystemFactoryAccessor; - fwtbTo.WritingSystemCode = cache - .ServiceLocator - .WritingSystems - .DefaultVernacularWritingSystem - .Handle; - ReplaceOp = replace; - tbName.Text = replace.Name; - tbDescription.Text = replace.Description; - fwtbFrom.Text = replace.From; - fwtbTo.Text = replace.To; - cbRegEx.Checked = replace.Mode; - foreach (WritingSystem ws in writingSystems) - { - clbWritingSystems.Items.Add(ws); - int index = clbWritingSystems.Items.Count - 1; - if (replace.WritingSystemRefs.Contains(ws.Name)) - { - clbWritingSystems.SetItemChecked(index, true); - } - } - tbName.Select(); - } - - private void btnOK_Click(object sender, EventArgs e) - { - ReplaceOp.Name = tbName.Text; - ReplaceOp.Description = tbDescription.Text; - ReplaceOp.From = fwtbFrom.Text; - ReplaceOp.To = fwtbTo.Text; - ReplaceOp.Mode = cbRegEx.Checked; - ReplaceOp.WritingSystemRefs.Clear(); - for (int i = 0; i < clbWritingSystems.Items.Count; i++) - { - if (clbWritingSystems.GetItemChecked(i)) - { - var ws = clbWritingSystems.Items[i] as WritingSystem; - if (ws != null) - { - ReplaceOp.WritingSystemRefs.Add(ws.Name); - } - } - } - OkPressed = true; - this.Close(); - } - - // Source - https://stackoverflow.com/a/1775017 - // Posted by Jeff Atwood, modified by community. See post 'Timeline' for change history - // Retrieved 2026-03-10, License - CC BY-SA 4.0 - private static bool IsValidRegex(string pattern) - { - if (string.IsNullOrWhiteSpace(pattern)) return false; - - try - { - Regex.Match("", pattern); - } - catch (ArgumentException ex) - { - MessageBox.Show("Error found in regular expression:\n" + ex.Message); - return false; - } - - return true; - } - - private void btnCancel_Click(object sender, EventArgs e) - { - OkPressed = false; - this.Close(); - } - - private void cbRegEx_CheckedChanged(object sender, EventArgs e) - { - ReplaceOp.Mode = cbRegEx.Checked; - } - } -} diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/EditReplaceOpForm.resx b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/EditReplaceOpForm.resx deleted file mode 100644 index 09446bdec6..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/EditReplaceOpForm.resx +++ /dev/null @@ -1,201 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<root> - <!-- - Microsoft ResX Schema - - Version 2.0 - - The primary goals of this format is to allow a simple XML format - that is mostly human readable. The generation and parsing of the - various data types are done through the TypeConverter classes - associated with the data types. - - Example: - - ... ado.net/XML headers & schema ... - <resheader name="resmimetype">text/microsoft-resx</resheader> - <resheader name="version">2.0</resheader> - <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> - <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> - <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> - <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> - <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> - <value>[base64 mime encoded serialized .NET Framework object]</value> - </data> - <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> - <comment>This is a comment</comment> - </data> - - There are any number of "resheader" rows that contain simple - name/value pairs. - - Each data row contains a name, and value. The row also contains a - type or mimetype. Type corresponds to a .NET class that support - text/value conversion through the TypeConverter architecture. - Classes that don't support this are serialized and stored with the - mimetype set. - - The mimetype is used for serialized objects, and tells the - ResXResourceReader how to depersist the object. This is currently not - extensible. For a given mimetype the value must be set accordingly: - - Note - application/x-microsoft.net.object.binary.base64 is the format - that the ResXResourceWriter will generate, however the reader can - read any of the formats listed below. - - mimetype: application/x-microsoft.net.object.binary.base64 - value : The object must be serialized with - : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.soap.base64 - value : The object must be serialized with - : System.Runtime.Serialization.Formatters.Soap.SoapFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.bytearray.base64 - value : The object must be serialized into a byte array - : using a System.ComponentModel.TypeConverter - : and then encoded with base64 encoding. - --> - <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> - <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> - <xsd:element name="root" msdata:IsDataSet="true"> - <xsd:complexType> - <xsd:choice maxOccurs="unbounded"> - <xsd:element name="metadata"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" /> - </xsd:sequence> - <xsd:attribute name="name" use="required" type="xsd:string" /> - <xsd:attribute name="type" type="xsd:string" /> - <xsd:attribute name="mimetype" type="xsd:string" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="assembly"> - <xsd:complexType> - <xsd:attribute name="alias" type="xsd:string" /> - <xsd:attribute name="name" type="xsd:string" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="data"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> - <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> - <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="resheader"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" /> - </xsd:complexType> - </xsd:element> - </xsd:choice> - </xsd:complexType> - </xsd:element> - </xsd:schema> - <resheader name="resmimetype"> - <value>text/microsoft-resx</value> - </resheader> - <resheader name="version"> - <value>2.0</value> - </resheader> - <resheader name="reader"> - <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> - <resheader name="writer"> - <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> - <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> - <data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - AAABAAEAISAAAAEAIACoEQAAFgAAACgAAAAhAAAAQAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAIR1YzmMdXPelHVz3nt1YzkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAhHVrjIR1a/9KgiH/KW0h/4R1a/+EdWuEAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAHt1WjGMcWvWa3lK/zGGCP8phgD/AGkA/whpCP9jcVL/lHlzznN1 - YykAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe3Fje4RxY/9KgiH/KYoA/ymGAP8pggD/AGkA/wBp - AP8AaQD/OW0p/4x5c/d7dWtzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGtdeyGEbWvOa3lK/zGKCP8pigD/KYYA/ymC - AP8pfQD/AGkA/wBpAP8AaQD/AGkA/xBpCP9zdVr/lHlzvZRpaxgAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa117a3tlc/cxLL3/KY4A/ymK - AP8phgD/KYIA/yl9AP8peQD/AGkA/wBpAP8AaQD/AGkA/wBpAP8AaQD/zjx7/5R1e++laXtaAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGNRhBh7ZWu9Y1GM/xAM - 3v8AAO//KYoA/ymGAP8pggD/KX0A/yl5AP8hdQj/AG0Q/wBpAP8AaQD/AGkA/wBpAP8AaQD//wiE/+8c - e/+lZXv/nHF7ra1hexAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAY1V7Y3th - a/c5MLX/AAD3/wAA7/8AAOf/KYYA/ymCAP8pfQD/KXkA/xh5Of8Afa3/AJ7n/wB5Qv8AaQD/AGkA/wBp - AP8AaQD//wiE//8IhP//DHv/xkV7/5x1e+etZXtCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AABzXWutY1GE/xAQ3v8AAPf/AADv/wAA5/8AAN7/KYIA/yl9AP8heQj/CHlz/wB5vf8Aeb3/AKb//wCm - //8AipT/AGkI/wBpAP8AaQD//wiE//8IhP//CIT//wiE/+cke/+lbXv/nHF7jAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAGtVcwhzXWv/AAD3/wAA9/8AAO//AADn/wAA3v8AAN7/KX0A/xh5Mf8Afa3/AHm9/wB1 - tf8AdbX/AKb//wCm//8Apv//AJ7W/wB1Mf8AaQD//wiE//8IhP//CIT//wiE//8IhP//EHv/nHV7/6Vl - ewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNVcwhrWWv/AAD3/wAA7/8AAOf/AADe/wAA3v8AAM7/EH1z/wB9 - xv8Aeb3/AHW1/wBxrf8Aca3/AKb//wCm//8Apv//AKb//wCm//8Ahnv//wh7//8IhP//CIT//wiE//8I - hP//CIT/nHF7/61hewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNRcwhrWWv/AADv/wAA5/8AAN7/AADe/ykQ - vf+1TXP/CH29/wB5vf8AdbX/AHGt/wBtrf8Aba3/AKb//wCm//8Apv//AKb//wCm//8Apv///4Za//8g - e///CIT//wiE//8IhP//CIT/nHF7/61dewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNRcwhrWWv/AADn/wAA - 3v8AANb/ayyc/9ZZY//WWVr/CHm1/wB1tf8Aca3/AG2t/wBppf8AfbX/AK7//wCm//8Apv//AKb//wCm - //8Apv///65S//+mUv//SWv//wiE//8IhP//CIT/nHF7/61dewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNR - awhrWWP/AADe/yEQxv+1SXv/1llj/9ZZWv/OVVr/CHW1/wBxrf8Aba3/AGml/wCizv8A1///ANP//wC2 - //8Apv//AKb//wCm//8Apv///65S//+uUv//rlL//3lj//8Ye///CIT/lG1z/61hcwgAAAAAAAAAAAAA - AAAAAAAAAAAAAGtVawhrWWP/Yyil/9ZZa//WWWP/1lla/85VWv/GUVL/CHGt/wBtrf8AfbX/AMvv/wDf - //8A2///ANP//wDL//8Avv//AKr//wCm//8Apv///65S//+uUv//rlL//65S//+eWv//OHP/lG1z/61p - cwgAAAAAAAAAAAAAAAAAAAAAAAAAAHNVYwhzXVr/3l1j/9ZZY//WWVr/zlVa/8ZRUv/GTVL/CG2l/wCm - zv8A5///AOf//wDf//8A2///ANP//wCq1v8Aue7/AL7//wCu//8Apv///65S//+uUv//rlL//65S//+u - Uv//rlL/lHVz/61xcwgAAAAAAAAAAAAAAAAAAAAAAAAAAHtZWghzWVr/1llj/9ZZWv/OVVr/xlFS/8ZN - Uv/GVVr/McPW/wDz//8A7///AOf//wDf//8A2///ANP//wCXvv8AOkv/ALb1/wC2//8Ysvf//65a//+u - Uv//rlL//65S//+uUv//rlL/lHVz/6V5awgAAAAAAAAAAAAAAAAAAAAAAAAAAHtZWghzWVr/1lla/85V - Wv/GUVL/xk1S/9Zxc///opz/96Kl/3PL1v8A6///ANbt/wC+2v8Avt7/ANP//wDL//8AYn7/AISy/2PH - 5//317X//8+c//+2a///rlL//65S//+uUv//rlL/lHVz/6WCawgAAAAAAAAAAAAAAAAAAAAAAAAAAHtZ - WghzWVr/zlVa/8ZRUv/GWVr/75aM//+upf//pqX//56c//+WnP+kjZb/BCYr/wAUF/8AISf/AFpt/wDL - //8Ofp//TFhW///ftf//163//9Ol///PlP//vnv//65a//+uUv//rlL/lHVz/6V9awgAAAAAAAAAAAAA - AAAAAAAAAAAAAHNZWghrWVr/xlFS/9Z1c///tqX//7at//+upf//pqX//56c/+WGjP8eERL/CQYG/zV0 - hP8Ar8z/AENR/yxsev+Qi4H/Qjoz///ftf//163//9Ol///PlP//y5T//8eM//+yY///rlL/lHVr/6V9 - awgAAAAAAAAAAAAAAAAAAAAAAAAAAHNZWghrVVL/55aM///Htf//vq3//7at//+upf//pqX//56c/7tu - cv8KBQb/r2Zr//+WnP+lqr3/rePv/3JqX/9KQzv/XlNI///ftf//163//9Ol///LlP//y5T//8uU///L - lP//unP/jHFr/5x5awgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABzWVqMe2Vj/9aqnP//vq3//7at//+u - pf//pqX//56c/6hiZv86IiP//5ac/+eSrf+Ugu//jIr//19WW/8BAAD/s5+K///ftf//163//9Ol///L - lP//y5T//8uU/++6jP+lgnP/jHVrtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhGljQmtZ - Wuethnv//7Kl//+upf//pqX//56c/9V9gv8rGRr/xpLO/4yG//97ff//QUCR/wAAAP84M0f/9Nm9///f - tf//163//9Ol///LlP//y5T/xqKE/4xta/eUeXNrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAIxtaxBzXVqlhGVj/+eelP//pqX//56c/++arf9sYJX/Hx83/1FSnf8kJEv/AAAA/xgY - O/9bXev/hIL3/+/Lvf//163//9Oc/+++lP+cgnP/hG1rxqWCcyEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhGVjWmtZWu+9gnv/1qLO/6Sh/v+cmv//X2Cu/zAw - Xf8rLFr/QD6O/2Ri7/9jZf//Y2X//2tp///Gqs7/zqaM/4Rta/+MdWtzAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIxpaxhrXVq9e2mE/5ya - 7/+cmv//jI7//4GD+/97ef//cnD9/2tp//9jZf//Y2X//2Nl9/9zZZT/e2VjzpR5cykAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAc2Fzc2tdY/eEgr3/jI7//4SG//97ef//c3H//2Nl//9jZf//a2HO/3Nha/9zZXOEAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAHNleylrWVrOc2mM/4SC9/97ef//c3H//2tl9/9rYZz/c2Fj1nNh - hDEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa11rhGtda/9zcc7/c2nO/2td - a/9zXWuMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGth - ezlrWVrea11a3mthe0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////gAAAAP/8P/+AAAAA//gf/4AAAAD/4Af/gAAAAP/A - A/+AAAAA/wAA/4AAAAD+AAB/gAAAAPgAAB+AAAAA8AAAD4AAAADgAAAHgAAAAMAAAAOAAAAAwAAAA4AA - AADAAAADgAAAAMAAAAOAAAAAwAAAA4AAAADAAAADgAAAAMAAAAOAAAAAwAAAA4AAAADAAAADgAAAAMAA - AAOAAAAAwAAAA4AAAADAAAADgAAAAOAAAAeAAAAA8AAAD4AAAAD4AAAfgAAAAP4AAH+AAAAA/wAA/4AA - AAD/wAP/gAAAAP/gB/+AAAAA//gf/4AAAAD//D//gAAAAP////+AAAAA -</value> - </data> -</root> \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/EnvironmentsChooser.Designer.cs b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/EnvironmentsChooser.Designer.cs deleted file mode 100644 index 7244d1dfda..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/EnvironmentsChooser.Designer.cs +++ /dev/null @@ -1,95 +0,0 @@ -namespace SIL.AllomorphGenerator -{ - partial class EnvironmentsChooser - { - /// <summary> - /// Required designer variable. - /// </summary> - private System.ComponentModel.IContainer components = null; - - /// <summary> - /// Clean up any resources being used. - /// </summary> - /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// <summary> - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// </summary> - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EnvironmentsChooser)); - this.clbEnvironments = new System.Windows.Forms.CheckedListBox(); - this.btnCancel = new System.Windows.Forms.Button(); - this.btnOK = new System.Windows.Forms.Button(); - this.SuspendLayout(); - // - // clbEnvironments - // - this.clbEnvironments.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.clbEnvironments.FormattingEnabled = true; - this.clbEnvironments.Location = new System.Drawing.Point(13, 13); - this.clbEnvironments.Name = "clbEnvironments"; - this.clbEnvironments.Size = new System.Drawing.Size(760, 361); - this.clbEnvironments.Sorted = true; - this.clbEnvironments.TabIndex = 0; - // - // btnCancel - // - this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.btnCancel.Location = new System.Drawing.Point(693, 396); - this.btnCancel.Name = "btnCancel"; - this.btnCancel.Size = new System.Drawing.Size(75, 41); - this.btnCancel.TabIndex = 2; - this.btnCancel.Text = "Cancel"; - this.btnCancel.UseVisualStyleBackColor = true; - // - // btnOK - // - this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK; - this.btnOK.Location = new System.Drawing.Point(581, 396); - this.btnOK.Name = "btnOK"; - this.btnOK.Size = new System.Drawing.Size(75, 41); - this.btnOK.TabIndex = 1; - this.btnOK.Text = "OK"; - this.btnOK.UseVisualStyleBackColor = true; - this.btnOK.Click += new System.EventHandler(this.btnOK_Click); - // - // EnvironmentsChooser - // - this.AcceptButton = this.btnOK; - this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.CancelButton = this.btnCancel; - this.ClientSize = new System.Drawing.Size(800, 450); - this.Controls.Add(this.btnOK); - this.Controls.Add(this.btnCancel); - this.Controls.Add(this.clbEnvironments); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.Name = "EnvironmentsChooser"; - this.Text = "Environments Chooser"; - this.ResumeLayout(false); - - } - - #endregion - - private System.Windows.Forms.CheckedListBox clbEnvironments; - private System.Windows.Forms.Button btnCancel; - private System.Windows.Forms.Button btnOK; - } -} \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/EnvironmentsChooser.cs b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/EnvironmentsChooser.cs deleted file mode 100644 index f1d902dc7e..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/EnvironmentsChooser.cs +++ /dev/null @@ -1,103 +0,0 @@ -// Copyright (c) 2022 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using SIL.AlloGenModel; -using SIL.LCModel; -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; - -namespace SIL.AllomorphGenerator -{ - public partial class EnvironmentsChooser : Form - { - LcmCache Cache { get; set; } - public List<AlloGenModel.Environment> Environments { get; set; } - public List<AlloGenModel.Environment> SelectedEnvironments { get; set; } - - public EnvironmentsChooser(LcmCache cache) - { - Cache = cache; - Environments = new List<AlloGenModel.Environment>(); - SelectedEnvironments = new List<AlloGenModel.Environment>(); - InitializeComponent(); - clbEnvironments.CheckOnClick = true; - clbEnvironments.Sorted = true; - CreateEnvironments(); - } - - void CreateEnvironments() - { - ILcmOwningSequence<IPhEnvironment> allEnvs = Cache - .LangProject - .PhonologicalDataOA - .EnvironmentsOS; - foreach (IPhEnvironment env in allEnvs) - { - LCModel.DomainServices.ConstraintFailure failure; - if ( - env.CheckConstraints( - PhEnvironmentTags.kflidStringRepresentation, - false, - out failure - ) - ) - { - AlloGenModel.Environment environ = new AlloGenModel.Environment(); - environ.Guid = env.Guid.ToString(); - environ.Name = env.StringRepresentation.Text; - Environments.Add(environ); - } - } - } - - public void setSelected(List<AlloGenModel.Environment> selectedOnes) - { - SelectedEnvironments.Clear(); - SelectedEnvironments.AddRange(selectedOnes); - } - - public void FillEnvironmentsListBox() - { - clbEnvironments.Items.Clear(); - foreach (AlloGenModel.Environment env in Environments) - { - if (!string.IsNullOrEmpty(env.Name)) - clbEnvironments.Items.Add(env); - } - for (int i = 0; i < clbEnvironments.Items.Count; i++) - { - AlloGenModel.Environment env = clbEnvironments.Items[i] as AlloGenModel.Environment; - for (int j = 0; j < SelectedEnvironments.Count; j++) - { - if (SelectedEnvironments[j].Guid == env.Guid) - { - clbEnvironments.SetItemChecked(i, true); - break; - } - } - } - } - - private void btnOK_Click(object sender, EventArgs e) - { - SelectedEnvironments.Clear(); - for (int i = 0; i < clbEnvironments.Items.Count; i++) - { - if (clbEnvironments.GetItemChecked(i)) - { - AlloGenModel.Environment mt = - clbEnvironments.Items[i] as AlloGenModel.Environment; - SelectedEnvironments.Add(mt); - } - } - } - } -} diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/EnvironmentsChooser.resx b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/EnvironmentsChooser.resx deleted file mode 100644 index 09446bdec6..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/EnvironmentsChooser.resx +++ /dev/null @@ -1,201 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<root> - <!-- - Microsoft ResX Schema - - Version 2.0 - - The primary goals of this format is to allow a simple XML format - that is mostly human readable. The generation and parsing of the - various data types are done through the TypeConverter classes - associated with the data types. - - Example: - - ... ado.net/XML headers & schema ... - <resheader name="resmimetype">text/microsoft-resx</resheader> - <resheader name="version">2.0</resheader> - <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> - <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> - <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> - <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> - <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> - <value>[base64 mime encoded serialized .NET Framework object]</value> - </data> - <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> - <comment>This is a comment</comment> - </data> - - There are any number of "resheader" rows that contain simple - name/value pairs. - - Each data row contains a name, and value. The row also contains a - type or mimetype. Type corresponds to a .NET class that support - text/value conversion through the TypeConverter architecture. - Classes that don't support this are serialized and stored with the - mimetype set. - - The mimetype is used for serialized objects, and tells the - ResXResourceReader how to depersist the object. This is currently not - extensible. For a given mimetype the value must be set accordingly: - - Note - application/x-microsoft.net.object.binary.base64 is the format - that the ResXResourceWriter will generate, however the reader can - read any of the formats listed below. - - mimetype: application/x-microsoft.net.object.binary.base64 - value : The object must be serialized with - : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.soap.base64 - value : The object must be serialized with - : System.Runtime.Serialization.Formatters.Soap.SoapFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.bytearray.base64 - value : The object must be serialized into a byte array - : using a System.ComponentModel.TypeConverter - : and then encoded with base64 encoding. - --> - <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> - <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> - <xsd:element name="root" msdata:IsDataSet="true"> - <xsd:complexType> - <xsd:choice maxOccurs="unbounded"> - <xsd:element name="metadata"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" /> - </xsd:sequence> - <xsd:attribute name="name" use="required" type="xsd:string" /> - <xsd:attribute name="type" type="xsd:string" /> - <xsd:attribute name="mimetype" type="xsd:string" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="assembly"> - <xsd:complexType> - <xsd:attribute name="alias" type="xsd:string" /> - <xsd:attribute name="name" type="xsd:string" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="data"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> - <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> - <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="resheader"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" /> - </xsd:complexType> - </xsd:element> - </xsd:choice> - </xsd:complexType> - </xsd:element> - </xsd:schema> - <resheader name="resmimetype"> - <value>text/microsoft-resx</value> - </resheader> - <resheader name="version"> - <value>2.0</value> - </resheader> - <resheader name="reader"> - <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> - <resheader name="writer"> - <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> - <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> - <data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - AAABAAEAISAAAAEAIACoEQAAFgAAACgAAAAhAAAAQAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAIR1YzmMdXPelHVz3nt1YzkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAhHVrjIR1a/9KgiH/KW0h/4R1a/+EdWuEAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAHt1WjGMcWvWa3lK/zGGCP8phgD/AGkA/whpCP9jcVL/lHlzznN1 - YykAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe3Fje4RxY/9KgiH/KYoA/ymGAP8pggD/AGkA/wBp - AP8AaQD/OW0p/4x5c/d7dWtzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGtdeyGEbWvOa3lK/zGKCP8pigD/KYYA/ymC - AP8pfQD/AGkA/wBpAP8AaQD/AGkA/xBpCP9zdVr/lHlzvZRpaxgAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa117a3tlc/cxLL3/KY4A/ymK - AP8phgD/KYIA/yl9AP8peQD/AGkA/wBpAP8AaQD/AGkA/wBpAP8AaQD/zjx7/5R1e++laXtaAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGNRhBh7ZWu9Y1GM/xAM - 3v8AAO//KYoA/ymGAP8pggD/KX0A/yl5AP8hdQj/AG0Q/wBpAP8AaQD/AGkA/wBpAP8AaQD//wiE/+8c - e/+lZXv/nHF7ra1hexAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAY1V7Y3th - a/c5MLX/AAD3/wAA7/8AAOf/KYYA/ymCAP8pfQD/KXkA/xh5Of8Afa3/AJ7n/wB5Qv8AaQD/AGkA/wBp - AP8AaQD//wiE//8IhP//DHv/xkV7/5x1e+etZXtCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AABzXWutY1GE/xAQ3v8AAPf/AADv/wAA5/8AAN7/KYIA/yl9AP8heQj/CHlz/wB5vf8Aeb3/AKb//wCm - //8AipT/AGkI/wBpAP8AaQD//wiE//8IhP//CIT//wiE/+cke/+lbXv/nHF7jAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAGtVcwhzXWv/AAD3/wAA9/8AAO//AADn/wAA3v8AAN7/KX0A/xh5Mf8Afa3/AHm9/wB1 - tf8AdbX/AKb//wCm//8Apv//AJ7W/wB1Mf8AaQD//wiE//8IhP//CIT//wiE//8IhP//EHv/nHV7/6Vl - ewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNVcwhrWWv/AAD3/wAA7/8AAOf/AADe/wAA3v8AAM7/EH1z/wB9 - xv8Aeb3/AHW1/wBxrf8Aca3/AKb//wCm//8Apv//AKb//wCm//8Ahnv//wh7//8IhP//CIT//wiE//8I - hP//CIT/nHF7/61hewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNRcwhrWWv/AADv/wAA5/8AAN7/AADe/ykQ - vf+1TXP/CH29/wB5vf8AdbX/AHGt/wBtrf8Aba3/AKb//wCm//8Apv//AKb//wCm//8Apv///4Za//8g - e///CIT//wiE//8IhP//CIT/nHF7/61dewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNRcwhrWWv/AADn/wAA - 3v8AANb/ayyc/9ZZY//WWVr/CHm1/wB1tf8Aca3/AG2t/wBppf8AfbX/AK7//wCm//8Apv//AKb//wCm - //8Apv///65S//+mUv//SWv//wiE//8IhP//CIT/nHF7/61dewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNR - awhrWWP/AADe/yEQxv+1SXv/1llj/9ZZWv/OVVr/CHW1/wBxrf8Aba3/AGml/wCizv8A1///ANP//wC2 - //8Apv//AKb//wCm//8Apv///65S//+uUv//rlL//3lj//8Ye///CIT/lG1z/61hcwgAAAAAAAAAAAAA - AAAAAAAAAAAAAGtVawhrWWP/Yyil/9ZZa//WWWP/1lla/85VWv/GUVL/CHGt/wBtrf8AfbX/AMvv/wDf - //8A2///ANP//wDL//8Avv//AKr//wCm//8Apv///65S//+uUv//rlL//65S//+eWv//OHP/lG1z/61p - cwgAAAAAAAAAAAAAAAAAAAAAAAAAAHNVYwhzXVr/3l1j/9ZZY//WWVr/zlVa/8ZRUv/GTVL/CG2l/wCm - zv8A5///AOf//wDf//8A2///ANP//wCq1v8Aue7/AL7//wCu//8Apv///65S//+uUv//rlL//65S//+u - Uv//rlL/lHVz/61xcwgAAAAAAAAAAAAAAAAAAAAAAAAAAHtZWghzWVr/1llj/9ZZWv/OVVr/xlFS/8ZN - Uv/GVVr/McPW/wDz//8A7///AOf//wDf//8A2///ANP//wCXvv8AOkv/ALb1/wC2//8Ysvf//65a//+u - Uv//rlL//65S//+uUv//rlL/lHVz/6V5awgAAAAAAAAAAAAAAAAAAAAAAAAAAHtZWghzWVr/1lla/85V - Wv/GUVL/xk1S/9Zxc///opz/96Kl/3PL1v8A6///ANbt/wC+2v8Avt7/ANP//wDL//8AYn7/AISy/2PH - 5//317X//8+c//+2a///rlL//65S//+uUv//rlL/lHVz/6WCawgAAAAAAAAAAAAAAAAAAAAAAAAAAHtZ - WghzWVr/zlVa/8ZRUv/GWVr/75aM//+upf//pqX//56c//+WnP+kjZb/BCYr/wAUF/8AISf/AFpt/wDL - //8Ofp//TFhW///ftf//163//9Ol///PlP//vnv//65a//+uUv//rlL/lHVz/6V9awgAAAAAAAAAAAAA - AAAAAAAAAAAAAHNZWghrWVr/xlFS/9Z1c///tqX//7at//+upf//pqX//56c/+WGjP8eERL/CQYG/zV0 - hP8Ar8z/AENR/yxsev+Qi4H/Qjoz///ftf//163//9Ol///PlP//y5T//8eM//+yY///rlL/lHVr/6V9 - awgAAAAAAAAAAAAAAAAAAAAAAAAAAHNZWghrVVL/55aM///Htf//vq3//7at//+upf//pqX//56c/7tu - cv8KBQb/r2Zr//+WnP+lqr3/rePv/3JqX/9KQzv/XlNI///ftf//163//9Ol///LlP//y5T//8uU///L - lP//unP/jHFr/5x5awgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABzWVqMe2Vj/9aqnP//vq3//7at//+u - pf//pqX//56c/6hiZv86IiP//5ac/+eSrf+Ugu//jIr//19WW/8BAAD/s5+K///ftf//163//9Ol///L - lP//y5T//8uU/++6jP+lgnP/jHVrtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhGljQmtZ - Wuethnv//7Kl//+upf//pqX//56c/9V9gv8rGRr/xpLO/4yG//97ff//QUCR/wAAAP84M0f/9Nm9///f - tf//163//9Ol///LlP//y5T/xqKE/4xta/eUeXNrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAIxtaxBzXVqlhGVj/+eelP//pqX//56c/++arf9sYJX/Hx83/1FSnf8kJEv/AAAA/xgY - O/9bXev/hIL3/+/Lvf//163//9Oc/+++lP+cgnP/hG1rxqWCcyEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhGVjWmtZWu+9gnv/1qLO/6Sh/v+cmv//X2Cu/zAw - Xf8rLFr/QD6O/2Ri7/9jZf//Y2X//2tp///Gqs7/zqaM/4Rta/+MdWtzAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIxpaxhrXVq9e2mE/5ya - 7/+cmv//jI7//4GD+/97ef//cnD9/2tp//9jZf//Y2X//2Nl9/9zZZT/e2VjzpR5cykAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAc2Fzc2tdY/eEgr3/jI7//4SG//97ef//c3H//2Nl//9jZf//a2HO/3Nha/9zZXOEAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAHNleylrWVrOc2mM/4SC9/97ef//c3H//2tl9/9rYZz/c2Fj1nNh - hDEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa11rhGtda/9zcc7/c2nO/2td - a/9zXWuMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGth - ezlrWVrea11a3mthe0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////gAAAAP/8P/+AAAAA//gf/4AAAAD/4Af/gAAAAP/A - A/+AAAAA/wAA/4AAAAD+AAB/gAAAAPgAAB+AAAAA8AAAD4AAAADgAAAHgAAAAMAAAAOAAAAAwAAAA4AA - AADAAAADgAAAAMAAAAOAAAAAwAAAA4AAAADAAAADgAAAAMAAAAOAAAAAwAAAA4AAAADAAAADgAAAAMAA - AAOAAAAAwAAAA4AAAADAAAADgAAAAOAAAAeAAAAA8AAAD4AAAAD4AAAfgAAAAP4AAH+AAAAA/wAA/4AA - AAD/wAP/gAAAAP/gB/+AAAAA//gf/4AAAAD//D//gAAAAP////+AAAAA -</value> - </data> -</root> \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/FLExUtility.cs b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/FLExUtility.cs deleted file mode 100644 index cfe90b980c..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/FLExUtility.cs +++ /dev/null @@ -1,75 +0,0 @@ -// Copyright (c) 2022-2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using System; -using SIL.FieldWorks.FwCoreDlgs; -using SIL.LCModel; -using XCore; - -namespace SIL.AllomorphGenerator -{ - class FLExUtility : IUtility - { - protected UtilityDlg m_dlg; - - #region IUtility implementation - - /// <summary> - /// Override method to return the Label property. - /// </summary> - /// <returns></returns> - public override string ToString() - { - return Label; - } - - /// <summary> - /// Get the main label describing the utility. - /// </summary> - public string Label => "Allomorph Generator"; - - UtilityDlg IUtility.Dialog - { - set => m_dlg = value; - } - - void IUtility.LoadUtilities() - { - m_dlg.Utilities.Items.Add(this); - } - - void IUtility.OnSelection() - { - m_dlg.WhenDescription = "Run this when you need to generate allomorphs."; - m_dlg.WhatDescription = - "Run this to generate allomorphs based on the citation form, lexeme form, eytmology form, or an entry-level custom field."; - m_dlg.RedoDescription = - "You cannot use 'Undo' to cancel the effect of this utility. You would need to go back to a previously saved version of the database(i.e., make a backup of your database before running this utility so you can restore to it if the results are not what you want)."; - ; - } - - void IUtility.Process() - { - LcmCache cache = m_dlg.PropTable.GetValue<LcmCache>("cache"); - PropertyTable propTable = m_dlg.PropTable; - Mediator mediator = m_dlg.Mediator; - try - { - var alloGenForm = new AlloGenForm(cache, propTable, mediator); - alloGenForm.Show(); - //m_dlg.Close(); - } - catch (Exception e) - { - // probably first time and user canceled file creation - Console.WriteLine(e.Message); - } - finally - { - m_dlg.Close(); - } - } - #endregion IUtility implementation - } -} diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/ListViewColumnSorter.cs b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/ListViewColumnSorter.cs deleted file mode 100644 index 243b05abe0..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/ListViewColumnSorter.cs +++ /dev/null @@ -1,99 +0,0 @@ -// Taken from https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/csharp/language-compilers/sort-listview-by-column -// on 202.01.04 - -using System.Collections; -using System.Windows.Forms; - -/// <summary> -/// This class is an implementation of the 'IComparer' interface. -/// </summary> -public class ListViewColumnSorter : IComparer -{ - /// <summary> - /// Specifies the column to be sorted - /// </summary> - private int ColumnToSort; - - /// <summary> - /// Specifies the order in which to sort (i.e. 'Ascending'). - /// </summary> - private SortOrder OrderOfSort; - - /// <summary> - /// Case insensitive comparer object - /// </summary> - private CaseInsensitiveComparer ObjectCompare; - - /// <summary> - /// Class constructor. Initializes various elements - /// </summary> - public ListViewColumnSorter() - { - // Initialize the column to '0' - ColumnToSort = 0; - - // Initialize the sort order to 'none' - OrderOfSort = SortOrder.None; - - // Initialize the CaseInsensitiveComparer object - ObjectCompare = new CaseInsensitiveComparer(); - } - - /// <summary> - /// This method is inherited from the IComparer interface. It compares the two objects passed using a case insensitive comparison. - /// </summary> - /// <param name="x">First object to be compared</param> - /// <param name="y">Second object to be compared</param> - /// <returns>The result of the comparison. "0" if equal, negative if 'x' is less than 'y' and positive if 'x' is greater than 'y'</returns> - public int Compare(object x, object y) - { - int compareResult; - ListViewItem listviewX, - listviewY; - - // Cast the objects to be compared to ListViewItem objects - listviewX = (ListViewItem)x; - listviewY = (ListViewItem)y; - - // Compare the two items - compareResult = ObjectCompare.Compare( - listviewX.SubItems[ColumnToSort].Text, - listviewY.SubItems[ColumnToSort].Text - ); - - // Calculate correct return value based on object comparison - if (OrderOfSort == SortOrder.Ascending) - { - // Ascending sort is selected, return normal result of compare operation - return compareResult; - } - else if (OrderOfSort == SortOrder.Descending) - { - // Descending sort is selected, return negative result of compare operation - return (-compareResult); - } - else - { - // Return '0' to indicate they are equal - return 0; - } - } - - /// <summary> - /// Gets or sets the number of the column to which to apply the sorting operation (Defaults to '0'). - /// </summary> - public int SortColumn - { - set { ColumnToSort = value; } - get { return ColumnToSort; } - } - - /// <summary> - /// Gets or sets the order of sorting to apply (for example, 'Ascending' or 'Descending'). - /// </summary> - public SortOrder Order - { - set { OrderOfSort = value; } - get { return OrderOfSort; } - } -} diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/MorphTypesChooser.Designer.cs b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/MorphTypesChooser.Designer.cs deleted file mode 100644 index ec40a7b0f7..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/MorphTypesChooser.Designer.cs +++ /dev/null @@ -1,88 +0,0 @@ - namespace SIL.AllomorphGenerator -{ - partial class MorphTypesChooser - { - /// <summary> - /// Required designer variable. - /// </summary> - private System.ComponentModel.IContainer components = null; - - /// <summary> - /// Clean up any resources being used. - /// </summary> - /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// <summary> - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// </summary> - private void InitializeComponent() - { - this.clbMorphTypes = new System.Windows.Forms.CheckedListBox(); - this.btnCancel = new System.Windows.Forms.Button(); - this.btnOK = new System.Windows.Forms.Button(); - this.SuspendLayout(); - // - // clbMorphTypes - // - this.clbMorphTypes.FormattingEnabled = true; - this.clbMorphTypes.Location = new System.Drawing.Point(13, 13); - this.clbMorphTypes.Name = "clbMorphTypes"; - this.clbMorphTypes.Size = new System.Drawing.Size(760, 361); - this.clbMorphTypes.TabIndex = 0; - this.clbMorphTypes.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.clbMorphTypes_ItemCheckChanged); - // - // btnCancel - // - this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.btnCancel.Location = new System.Drawing.Point(693, 396); - this.btnCancel.Name = "btnCancel"; - this.btnCancel.Size = new System.Drawing.Size(75, 41); - this.btnCancel.TabIndex = 2; - this.btnCancel.Text = "Cancel"; - this.btnCancel.UseVisualStyleBackColor = true; - // - // btnOK - // - this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK; - this.btnOK.Location = new System.Drawing.Point(581, 396); - this.btnOK.Name = "btnOK"; - this.btnOK.Size = new System.Drawing.Size(75, 41); - this.btnOK.TabIndex = 1; - this.btnOK.Text = "OK"; - this.btnOK.UseVisualStyleBackColor = true; - this.btnOK.Click += new System.EventHandler(this.btnOK_Click); - // - // MorphTypesChooser - // - this.AcceptButton = this.btnOK; - this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.CancelButton = this.btnCancel; - this.ClientSize = new System.Drawing.Size(800, 450); - this.Controls.Add(this.btnOK); - this.Controls.Add(this.btnCancel); - this.Controls.Add(this.clbMorphTypes); - this.Name = "MorphTypesChooser"; - this.Text = "Morph Types Chooser"; - this.ResumeLayout(false); - - } - - #endregion - - private System.Windows.Forms.CheckedListBox clbMorphTypes; - private System.Windows.Forms.Button btnCancel; - private System.Windows.Forms.Button btnOK; - } -} \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/MorphTypesChooser.cs b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/MorphTypesChooser.cs deleted file mode 100644 index eb9a6521a7..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/MorphTypesChooser.cs +++ /dev/null @@ -1,114 +0,0 @@ -// Copyright (c) 2022 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using SIL.AlloGenModel; -using SIL.LCModel; -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; - -namespace SIL.AllomorphGenerator -{ - public partial class MorphTypesChooser : Form - { - LcmCache Cache { get; set; } - public List<MorphType> MorphTypes { get; set; } - public List<MorphType> SelectedMorphTypes { get; set; } - List<string> morphTypesToUseGuids = new List<string>() - { - Constants.mtBoundRoot, - Constants.mtBoundStem, - Constants.mtDiscontiguousPhrase, - Constants.mtParticle, - Constants.mtPhrase, - Constants.mtRoot, - Constants.mtStem, - }; - - public MorphTypesChooser(LcmCache cache) - { - Cache = cache; - MorphTypes = new List<MorphType>(); - SelectedMorphTypes = new List<MorphType>(); - InitializeComponent(); - clbMorphTypes.CheckOnClick = true; - clbMorphTypes.Sorted = true; - CreateMorphTypes(); - } - - void CreateMorphTypes() - { - ILcmOwningSequence<ICmPossibility> allTypes = Cache - .LangProject - .LexDbOA - .MorphTypesOA - .PossibilitiesOS; - foreach (ICmPossibility mt in allTypes) - { - if (morphTypesToUseGuids.Contains(mt.Guid.ToString())) - { - MorphType morphType = new MorphType(); - morphType.Guid = mt.Guid.ToString(); - morphType.Name = mt.Name.AnalysisDefaultWritingSystem.Text; - MorphTypes.Add(morphType); - } - } - } - - public void setSelected(List<MorphType> selectedOnes) - { - SelectedMorphTypes.Clear(); - SelectedMorphTypes.AddRange(selectedOnes); - } - - public void FillMorphTypesListBox() - { - clbMorphTypes.Items.Clear(); - foreach (MorphType mt in MorphTypes) - { - clbMorphTypes.Items.Add(mt); - } - for (int i = 0; i < clbMorphTypes.Items.Count; i++) - { - MorphType mt = clbMorphTypes.Items[i] as MorphType; - for (int j = 0; j < SelectedMorphTypes.Count; j++) - { - if (SelectedMorphTypes[j].Guid == mt.Guid) - { - clbMorphTypes.SetItemChecked(i, true); - break; - } - } - } - } - - private void btnOK_Click(object sender, EventArgs e) - { - SelectedMorphTypes.Clear(); - for (int i = 0; i < clbMorphTypes.Items.Count; i++) - { - if (clbMorphTypes.GetItemChecked(i)) - { - MorphType mt = clbMorphTypes.Items[i] as MorphType; - SelectedMorphTypes.Add(mt); - } - } - } - - private void clbMorphTypes_ItemCheckChanged(object sender, ItemCheckEventArgs e) - { - int augment = (e.NewValue == CheckState.Unchecked) ? -1 : 1; - if ((clbMorphTypes.CheckedItems.Count + augment) > 0) - btnOK.Enabled = true; - else - btnOK.Enabled = false; - } - } -} diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/MorphTypesChooser.resx b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/MorphTypesChooser.resx deleted file mode 100644 index 1af7de150c..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/MorphTypesChooser.resx +++ /dev/null @@ -1,120 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<root> - <!-- - Microsoft ResX Schema - - Version 2.0 - - The primary goals of this format is to allow a simple XML format - that is mostly human readable. The generation and parsing of the - various data types are done through the TypeConverter classes - associated with the data types. - - Example: - - ... ado.net/XML headers & schema ... - <resheader name="resmimetype">text/microsoft-resx</resheader> - <resheader name="version">2.0</resheader> - <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> - <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> - <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> - <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> - <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> - <value>[base64 mime encoded serialized .NET Framework object]</value> - </data> - <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> - <comment>This is a comment</comment> - </data> - - There are any number of "resheader" rows that contain simple - name/value pairs. - - Each data row contains a name, and value. The row also contains a - type or mimetype. Type corresponds to a .NET class that support - text/value conversion through the TypeConverter architecture. - Classes that don't support this are serialized and stored with the - mimetype set. - - The mimetype is used for serialized objects, and tells the - ResXResourceReader how to depersist the object. This is currently not - extensible. For a given mimetype the value must be set accordingly: - - Note - application/x-microsoft.net.object.binary.base64 is the format - that the ResXResourceWriter will generate, however the reader can - read any of the formats listed below. - - mimetype: application/x-microsoft.net.object.binary.base64 - value : The object must be serialized with - : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.soap.base64 - value : The object must be serialized with - : System.Runtime.Serialization.Formatters.Soap.SoapFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.bytearray.base64 - value : The object must be serialized into a byte array - : using a System.ComponentModel.TypeConverter - : and then encoded with base64 encoding. - --> - <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> - <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> - <xsd:element name="root" msdata:IsDataSet="true"> - <xsd:complexType> - <xsd:choice maxOccurs="unbounded"> - <xsd:element name="metadata"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" /> - </xsd:sequence> - <xsd:attribute name="name" use="required" type="xsd:string" /> - <xsd:attribute name="type" type="xsd:string" /> - <xsd:attribute name="mimetype" type="xsd:string" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="assembly"> - <xsd:complexType> - <xsd:attribute name="alias" type="xsd:string" /> - <xsd:attribute name="name" type="xsd:string" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="data"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> - <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> - <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="resheader"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" /> - </xsd:complexType> - </xsd:element> - </xsd:choice> - </xsd:complexType> - </xsd:element> - </xsd:schema> - <resheader name="resmimetype"> - <value>text/microsoft-resx</value> - </resheader> - <resheader name="version"> - <value>2.0</value> - </resheader> - <resheader name="reader"> - <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> - <resheader name="writer"> - <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> -</root> \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/Properties/Resources.Designer.cs b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/Properties/Resources.Designer.cs deleted file mode 100644 index dd221312b9..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/Properties/Resources.Designer.cs +++ /dev/null @@ -1,63 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -namespace SIL.AllomorphGenerator.Properties { - using System; - - - /// <summary> - /// A strongly-typed resource class, for looking up localized strings, etc. - /// </summary> - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class Resources { - - private static global::System.Resources.ResourceManager resourceMan; - - private static global::System.Globalization.CultureInfo resourceCulture; - - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal Resources() { - } - - /// <summary> - /// Returns the cached ResourceManager instance used by this class. - /// </summary> - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager { - get { - if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("SIL.AllomorphGenerator.Properties.Resources", typeof(Resources).Assembly); - resourceMan = temp; - } - return resourceMan; - } - } - - /// <summary> - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. - /// </summary> - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture { - get { - return resourceCulture; - } - set { - resourceCulture = value; - } - } - } -} diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/Properties/Resources.resx b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/Properties/Resources.resx deleted file mode 100644 index af7dbebbac..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/Properties/Resources.resx +++ /dev/null @@ -1,117 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<root> - <!-- - Microsoft ResX Schema - - Version 2.0 - - The primary goals of this format is to allow a simple XML format - that is mostly human readable. The generation and parsing of the - various data types are done through the TypeConverter classes - associated with the data types. - - Example: - - ... ado.net/XML headers & schema ... - <resheader name="resmimetype">text/microsoft-resx</resheader> - <resheader name="version">2.0</resheader> - <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> - <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> - <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> - <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> - <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> - <value>[base64 mime encoded serialized .NET Framework object]</value> - </data> - <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> - <comment>This is a comment</comment> - </data> - - There are any number of "resheader" rows that contain simple - name/value pairs. - - Each data row contains a name, and value. The row also contains a - type or mimetype. Type corresponds to a .NET class that support - text/value conversion through the TypeConverter architecture. - Classes that don't support this are serialized and stored with the - mimetype set. - - The mimetype is used for serialized objects, and tells the - ResXResourceReader how to depersist the object. This is currently not - extensible. For a given mimetype the value must be set accordingly: - - Note - application/x-microsoft.net.object.binary.base64 is the format - that the ResXResourceWriter will generate, however the reader can - read any of the formats listed below. - - mimetype: application/x-microsoft.net.object.binary.base64 - value : The object must be serialized with - : System.Serialization.Formatters.Binary.BinaryFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.soap.base64 - value : The object must be serialized with - : System.Runtime.Serialization.Formatters.Soap.SoapFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.bytearray.base64 - value : The object must be serialized into a byte array - : using a System.ComponentModel.TypeConverter - : and then encoded with base64 encoding. - --> - <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> - <xsd:element name="root" msdata:IsDataSet="true"> - <xsd:complexType> - <xsd:choice maxOccurs="unbounded"> - <xsd:element name="metadata"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" /> - <xsd:attribute name="type" type="xsd:string" /> - <xsd:attribute name="mimetype" type="xsd:string" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="assembly"> - <xsd:complexType> - <xsd:attribute name="alias" type="xsd:string" /> - <xsd:attribute name="name" type="xsd:string" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="data"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" /> - <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> - <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="resheader"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" /> - </xsd:complexType> - </xsd:element> - </xsd:choice> - </xsd:complexType> - </xsd:element> - </xsd:schema> - <resheader name="resmimetype"> - <value>text/microsoft-resx</value> - </resheader> - <resheader name="version"> - <value>2.0</value> - </resheader> - <resheader name="reader"> - <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> - <resheader name="writer"> - <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> -</root> \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/Properties/Settings.Designer.cs b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/Properties/Settings.Designer.cs deleted file mode 100644 index 22ade4e7e8..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/Properties/Settings.Designer.cs +++ /dev/null @@ -1,26 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -namespace SIL.AllomorphGenerator.Properties { - - - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.8.0.0")] - internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { - - private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); - - public static Settings Default { - get { - return defaultInstance; - } - } - } -} diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/ReplaceOperationsChooser.Designer.cs b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/ReplaceOperationsChooser.Designer.cs deleted file mode 100644 index b67ba2a2b3..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/ReplaceOperationsChooser.Designer.cs +++ /dev/null @@ -1,95 +0,0 @@ -namespace SIL.AllomorphGenerator -{ - partial class ReplaceOperationsChooser - { - /// <summary> - /// Required designer variable. - /// </summary> - private System.ComponentModel.IContainer components = null; - - /// <summary> - /// Clean up any resources being used. - /// </summary> - /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// <summary> - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// </summary> - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ReplaceOperationsChooser)); - this.clbReplaceOps = new System.Windows.Forms.CheckedListBox(); - this.btnCancel = new System.Windows.Forms.Button(); - this.btnOK = new System.Windows.Forms.Button(); - this.SuspendLayout(); - // - // clbReplaceOps - // - this.clbReplaceOps.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.clbReplaceOps.FormattingEnabled = true; - this.clbReplaceOps.Location = new System.Drawing.Point(13, 13); - this.clbReplaceOps.Name = "clbReplaceOps"; - this.clbReplaceOps.Size = new System.Drawing.Size(760, 361); - this.clbReplaceOps.Sorted = true; - this.clbReplaceOps.TabIndex = 0; - // - // btnCancel - // - this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.btnCancel.Location = new System.Drawing.Point(693, 396); - this.btnCancel.Name = "btnCancel"; - this.btnCancel.Size = new System.Drawing.Size(75, 41); - this.btnCancel.TabIndex = 2; - this.btnCancel.Text = "Cancel"; - this.btnCancel.UseVisualStyleBackColor = true; - // - // btnOK - // - this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK; - this.btnOK.Location = new System.Drawing.Point(581, 396); - this.btnOK.Name = "btnOK"; - this.btnOK.Size = new System.Drawing.Size(75, 41); - this.btnOK.TabIndex = 1; - this.btnOK.Text = "OK"; - this.btnOK.UseVisualStyleBackColor = true; - this.btnOK.Click += new System.EventHandler(this.btnOK_Click); - // - // ReplaceOperationsChooser - // - this.AcceptButton = this.btnOK; - this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.CancelButton = this.btnCancel; - this.ClientSize = new System.Drawing.Size(800, 450); - this.Controls.Add(this.btnOK); - this.Controls.Add(this.btnCancel); - this.Controls.Add(this.clbReplaceOps); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.Name = "ReplaceOperationsChooser"; - this.Text = "Replace Operations Chooser"; - this.ResumeLayout(false); - - } - - #endregion - - private System.Windows.Forms.CheckedListBox clbReplaceOps; - private System.Windows.Forms.Button btnCancel; - private System.Windows.Forms.Button btnOK; - } -} \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/ReplaceOperationsChooser.cs b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/ReplaceOperationsChooser.cs deleted file mode 100644 index 66680533ec..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/ReplaceOperationsChooser.cs +++ /dev/null @@ -1,84 +0,0 @@ -// Copyright (c) 2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using SIL.AlloGenModel; -using SIL.LCModel; -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; - -namespace SIL.AllomorphGenerator -{ - public partial class ReplaceOperationsChooser : Form - { - AllomorphGenerators AlloGens { get; set; } - public List<Replace> ReplaceOps { get; set; } - public List<Replace> SelectedReplaceOps { get; set; } - - public ReplaceOperationsChooser(AllomorphGenerators alloGens) - { - AlloGens = alloGens; - ReplaceOps = new List<Replace>(); - SelectedReplaceOps = new List<Replace>(); - InitializeComponent(); - clbReplaceOps.CheckOnClick = true; - clbReplaceOps.Sorted = true; - CreateReplaceOps(); - } - - void CreateReplaceOps() - { - foreach (Replace replace in AlloGens.ReplaceOperations) - { - ReplaceOps.Add(replace); - } - } - - public void setSelected(List<Replace> selectedOnes) - { - SelectedReplaceOps.Clear(); - SelectedReplaceOps.AddRange(selectedOnes); - } - - public void FillReplaceOpsListBox() - { - clbReplaceOps.Items.Clear(); - foreach (Replace replace in ReplaceOps) - { - clbReplaceOps.Items.Add(replace); - } - //for (int i = 0; i < clbReplaceOps.Items.Count; i++) - //{ - // Replace env = clbReplaceOps.Items[i] as Replace; - // for (int j = 0; j < SelectedReplaceOps.Count; j++) - // { - // if (SelectedReplaceOps[j].Guid == env.Guid) - // { - // clbReplaceOps.SetItemChecked(i, true); - // break; - // } - // } - //} - } - - private void btnOK_Click(object sender, EventArgs e) - { - SelectedReplaceOps.Clear(); - for (int i = 0; i < clbReplaceOps.Items.Count; i++) - { - if (clbReplaceOps.GetItemChecked(i)) - { - Replace replace = clbReplaceOps.Items[i] as Replace; - SelectedReplaceOps.Add(replace); - } - } - } - } -} diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/ReplaceOperationsChooser.resx b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/ReplaceOperationsChooser.resx deleted file mode 100644 index 09446bdec6..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/ReplaceOperationsChooser.resx +++ /dev/null @@ -1,201 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<root> - <!-- - Microsoft ResX Schema - - Version 2.0 - - The primary goals of this format is to allow a simple XML format - that is mostly human readable. The generation and parsing of the - various data types are done through the TypeConverter classes - associated with the data types. - - Example: - - ... ado.net/XML headers & schema ... - <resheader name="resmimetype">text/microsoft-resx</resheader> - <resheader name="version">2.0</resheader> - <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> - <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> - <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> - <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> - <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> - <value>[base64 mime encoded serialized .NET Framework object]</value> - </data> - <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> - <comment>This is a comment</comment> - </data> - - There are any number of "resheader" rows that contain simple - name/value pairs. - - Each data row contains a name, and value. The row also contains a - type or mimetype. Type corresponds to a .NET class that support - text/value conversion through the TypeConverter architecture. - Classes that don't support this are serialized and stored with the - mimetype set. - - The mimetype is used for serialized objects, and tells the - ResXResourceReader how to depersist the object. This is currently not - extensible. For a given mimetype the value must be set accordingly: - - Note - application/x-microsoft.net.object.binary.base64 is the format - that the ResXResourceWriter will generate, however the reader can - read any of the formats listed below. - - mimetype: application/x-microsoft.net.object.binary.base64 - value : The object must be serialized with - : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.soap.base64 - value : The object must be serialized with - : System.Runtime.Serialization.Formatters.Soap.SoapFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.bytearray.base64 - value : The object must be serialized into a byte array - : using a System.ComponentModel.TypeConverter - : and then encoded with base64 encoding. - --> - <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> - <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> - <xsd:element name="root" msdata:IsDataSet="true"> - <xsd:complexType> - <xsd:choice maxOccurs="unbounded"> - <xsd:element name="metadata"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" /> - </xsd:sequence> - <xsd:attribute name="name" use="required" type="xsd:string" /> - <xsd:attribute name="type" type="xsd:string" /> - <xsd:attribute name="mimetype" type="xsd:string" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="assembly"> - <xsd:complexType> - <xsd:attribute name="alias" type="xsd:string" /> - <xsd:attribute name="name" type="xsd:string" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="data"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> - <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> - <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="resheader"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" /> - </xsd:complexType> - </xsd:element> - </xsd:choice> - </xsd:complexType> - </xsd:element> - </xsd:schema> - <resheader name="resmimetype"> - <value>text/microsoft-resx</value> - </resheader> - <resheader name="version"> - <value>2.0</value> - </resheader> - <resheader name="reader"> - <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> - <resheader name="writer"> - <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> - <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> - <data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - AAABAAEAISAAAAEAIACoEQAAFgAAACgAAAAhAAAAQAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAIR1YzmMdXPelHVz3nt1YzkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAhHVrjIR1a/9KgiH/KW0h/4R1a/+EdWuEAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAHt1WjGMcWvWa3lK/zGGCP8phgD/AGkA/whpCP9jcVL/lHlzznN1 - YykAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe3Fje4RxY/9KgiH/KYoA/ymGAP8pggD/AGkA/wBp - AP8AaQD/OW0p/4x5c/d7dWtzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGtdeyGEbWvOa3lK/zGKCP8pigD/KYYA/ymC - AP8pfQD/AGkA/wBpAP8AaQD/AGkA/xBpCP9zdVr/lHlzvZRpaxgAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa117a3tlc/cxLL3/KY4A/ymK - AP8phgD/KYIA/yl9AP8peQD/AGkA/wBpAP8AaQD/AGkA/wBpAP8AaQD/zjx7/5R1e++laXtaAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGNRhBh7ZWu9Y1GM/xAM - 3v8AAO//KYoA/ymGAP8pggD/KX0A/yl5AP8hdQj/AG0Q/wBpAP8AaQD/AGkA/wBpAP8AaQD//wiE/+8c - e/+lZXv/nHF7ra1hexAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAY1V7Y3th - a/c5MLX/AAD3/wAA7/8AAOf/KYYA/ymCAP8pfQD/KXkA/xh5Of8Afa3/AJ7n/wB5Qv8AaQD/AGkA/wBp - AP8AaQD//wiE//8IhP//DHv/xkV7/5x1e+etZXtCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AABzXWutY1GE/xAQ3v8AAPf/AADv/wAA5/8AAN7/KYIA/yl9AP8heQj/CHlz/wB5vf8Aeb3/AKb//wCm - //8AipT/AGkI/wBpAP8AaQD//wiE//8IhP//CIT//wiE/+cke/+lbXv/nHF7jAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAGtVcwhzXWv/AAD3/wAA9/8AAO//AADn/wAA3v8AAN7/KX0A/xh5Mf8Afa3/AHm9/wB1 - tf8AdbX/AKb//wCm//8Apv//AJ7W/wB1Mf8AaQD//wiE//8IhP//CIT//wiE//8IhP//EHv/nHV7/6Vl - ewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNVcwhrWWv/AAD3/wAA7/8AAOf/AADe/wAA3v8AAM7/EH1z/wB9 - xv8Aeb3/AHW1/wBxrf8Aca3/AKb//wCm//8Apv//AKb//wCm//8Ahnv//wh7//8IhP//CIT//wiE//8I - hP//CIT/nHF7/61hewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNRcwhrWWv/AADv/wAA5/8AAN7/AADe/ykQ - vf+1TXP/CH29/wB5vf8AdbX/AHGt/wBtrf8Aba3/AKb//wCm//8Apv//AKb//wCm//8Apv///4Za//8g - e///CIT//wiE//8IhP//CIT/nHF7/61dewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNRcwhrWWv/AADn/wAA - 3v8AANb/ayyc/9ZZY//WWVr/CHm1/wB1tf8Aca3/AG2t/wBppf8AfbX/AK7//wCm//8Apv//AKb//wCm - //8Apv///65S//+mUv//SWv//wiE//8IhP//CIT/nHF7/61dewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNR - awhrWWP/AADe/yEQxv+1SXv/1llj/9ZZWv/OVVr/CHW1/wBxrf8Aba3/AGml/wCizv8A1///ANP//wC2 - //8Apv//AKb//wCm//8Apv///65S//+uUv//rlL//3lj//8Ye///CIT/lG1z/61hcwgAAAAAAAAAAAAA - AAAAAAAAAAAAAGtVawhrWWP/Yyil/9ZZa//WWWP/1lla/85VWv/GUVL/CHGt/wBtrf8AfbX/AMvv/wDf - //8A2///ANP//wDL//8Avv//AKr//wCm//8Apv///65S//+uUv//rlL//65S//+eWv//OHP/lG1z/61p - cwgAAAAAAAAAAAAAAAAAAAAAAAAAAHNVYwhzXVr/3l1j/9ZZY//WWVr/zlVa/8ZRUv/GTVL/CG2l/wCm - zv8A5///AOf//wDf//8A2///ANP//wCq1v8Aue7/AL7//wCu//8Apv///65S//+uUv//rlL//65S//+u - Uv//rlL/lHVz/61xcwgAAAAAAAAAAAAAAAAAAAAAAAAAAHtZWghzWVr/1llj/9ZZWv/OVVr/xlFS/8ZN - Uv/GVVr/McPW/wDz//8A7///AOf//wDf//8A2///ANP//wCXvv8AOkv/ALb1/wC2//8Ysvf//65a//+u - Uv//rlL//65S//+uUv//rlL/lHVz/6V5awgAAAAAAAAAAAAAAAAAAAAAAAAAAHtZWghzWVr/1lla/85V - Wv/GUVL/xk1S/9Zxc///opz/96Kl/3PL1v8A6///ANbt/wC+2v8Avt7/ANP//wDL//8AYn7/AISy/2PH - 5//317X//8+c//+2a///rlL//65S//+uUv//rlL/lHVz/6WCawgAAAAAAAAAAAAAAAAAAAAAAAAAAHtZ - WghzWVr/zlVa/8ZRUv/GWVr/75aM//+upf//pqX//56c//+WnP+kjZb/BCYr/wAUF/8AISf/AFpt/wDL - //8Ofp//TFhW///ftf//163//9Ol///PlP//vnv//65a//+uUv//rlL/lHVz/6V9awgAAAAAAAAAAAAA - AAAAAAAAAAAAAHNZWghrWVr/xlFS/9Z1c///tqX//7at//+upf//pqX//56c/+WGjP8eERL/CQYG/zV0 - hP8Ar8z/AENR/yxsev+Qi4H/Qjoz///ftf//163//9Ol///PlP//y5T//8eM//+yY///rlL/lHVr/6V9 - awgAAAAAAAAAAAAAAAAAAAAAAAAAAHNZWghrVVL/55aM///Htf//vq3//7at//+upf//pqX//56c/7tu - cv8KBQb/r2Zr//+WnP+lqr3/rePv/3JqX/9KQzv/XlNI///ftf//163//9Ol///LlP//y5T//8uU///L - lP//unP/jHFr/5x5awgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABzWVqMe2Vj/9aqnP//vq3//7at//+u - pf//pqX//56c/6hiZv86IiP//5ac/+eSrf+Ugu//jIr//19WW/8BAAD/s5+K///ftf//163//9Ol///L - lP//y5T//8uU/++6jP+lgnP/jHVrtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhGljQmtZ - Wuethnv//7Kl//+upf//pqX//56c/9V9gv8rGRr/xpLO/4yG//97ff//QUCR/wAAAP84M0f/9Nm9///f - tf//163//9Ol///LlP//y5T/xqKE/4xta/eUeXNrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAIxtaxBzXVqlhGVj/+eelP//pqX//56c/++arf9sYJX/Hx83/1FSnf8kJEv/AAAA/xgY - O/9bXev/hIL3/+/Lvf//163//9Oc/+++lP+cgnP/hG1rxqWCcyEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhGVjWmtZWu+9gnv/1qLO/6Sh/v+cmv//X2Cu/zAw - Xf8rLFr/QD6O/2Ri7/9jZf//Y2X//2tp///Gqs7/zqaM/4Rta/+MdWtzAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIxpaxhrXVq9e2mE/5ya - 7/+cmv//jI7//4GD+/97ef//cnD9/2tp//9jZf//Y2X//2Nl9/9zZZT/e2VjzpR5cykAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAc2Fzc2tdY/eEgr3/jI7//4SG//97ef//c3H//2Nl//9jZf//a2HO/3Nha/9zZXOEAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAHNleylrWVrOc2mM/4SC9/97ef//c3H//2tl9/9rYZz/c2Fj1nNh - hDEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa11rhGtda/9zcc7/c2nO/2td - a/9zXWuMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGth - ezlrWVrea11a3mthe0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////gAAAAP/8P/+AAAAA//gf/4AAAAD/4Af/gAAAAP/A - A/+AAAAA/wAA/4AAAAD+AAB/gAAAAPgAAB+AAAAA8AAAD4AAAADgAAAHgAAAAMAAAAOAAAAAwAAAA4AA - AADAAAADgAAAAMAAAAOAAAAAwAAAA4AAAADAAAADgAAAAMAAAAOAAAAAwAAAA4AAAADAAAADgAAAAMAA - AAOAAAAAwAAAA4AAAADAAAADgAAAAOAAAAeAAAAA8AAAD4AAAAD4AAAfgAAAAP4AAH+AAAAA/wAA/4AA - AAD/wAP/gAAAAP/gB/+AAAAA//gf/4AAAAD//D//gAAAAP////+AAAAA -</value> - </data> -</root> \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/SimpleMatchDlgAlloGen.cs b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/SimpleMatchDlgAlloGen.cs deleted file mode 100644 index 8ea50f90f0..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/SimpleMatchDlgAlloGen.cs +++ /dev/null @@ -1,488 +0,0 @@ -// Copyright (c) 2015-2017 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using System; -using System.Windows.Forms; -using SIL.LCModel.Core.KernelInterfaces; -using SIL.LCModel; -using SIL.FieldWorks.Filters; -using SIL.FieldWorks.Common.Widgets; -using SIL.FieldWorks.Common.ViewsInterfaces; -using SIL.FieldWorks.Common.FwUtils; -using SIL.FieldWorks.FwCoreDlgs; -using SIL.FieldWorks.Common.Controls; -using SIL.AlloGenModel; - -namespace SIL.AllomorphGenerator -{ - /// <summary> - /// SimpleMatchDlg allows the user to type a target string and indicate whether it - /// should match the whole, start, end, or anywhere in the target. It knows how to - /// make a matcher consistent with what the user entered. - /// </summary> - /// This is a copy of SimpleMatchDlg with a few changes to allow for access to inforrmation - /// needed for the Allomorph Generator - public class SimpleMatchDlgAlloGen : Form - { - private RadioButton m_anywhereButton; - private RadioButton m_atStartButton; - private RadioButton m_atEndButton; - private RadioButton m_wholeItemButton; - private FwTextBox m_textBox; - private Button m_cancelButton; - private Button m_okButton; - private RadioButton m_regExButton; - private Label label1; - private Button buttonHelp; - - /// <summary> - /// Required designer variable. - /// </summary> - private System.ComponentModel.Container components = null; - - private const string s_helpTopic = "khtpFilterFor"; - private Button regexHelper; - private HelpProvider helpProvider; - private CheckBox m_MatchCasecheckBox; - - private RegexHelperMenu regexContextMenu; - private CheckBox m_MatchDiacriticscheckBox; - private IHelpTopicProvider m_helpTopicProvider; - - private IVwPattern m_ivwpattern; - private LcmCache m_cache; - - public MatcherType matcherType { get; set; } = MatcherType.Anywhere; - public bool MatchCase { get; set; } = false; - public bool MatchDiacritics { get; set; } = false; - - /// ------------------------------------------------------------------------------------ - /// <summary> - /// Initializes a new instance of the <see cref="T:SimpleMatchDlg"/> class. - /// </summary> - /// <param name="wsf">The WSF.</param> - /// <param name="helpTopicProvider">The help topic provider.</param> - /// <param name="ws">The ws.</param> - /// <param name="ss">The ss.</param> - /// <param name="cache"></param> - /// ------------------------------------------------------------------------------------ - public SimpleMatchDlgAlloGen( - ILgWritingSystemFactory wsf, - IHelpTopicProvider helpTopicProvider, - int ws, - IVwStylesheet ss, - LcmCache cache - ) - { - // - // Required for Windows Form Designer support - // - InitializeComponent(); - - m_cache = cache; - - // We do this outside the designer-controlled code because it does funny things - // to FwTextBoxes, owing to the need for a writing system factory, and some - // properties it should not persist but I can't persuade it not to. - this.m_textBox = new FwTextBox(); - this.m_textBox.WritingSystemFactory = wsf; // set ASAP. - this.m_textBox.WritingSystemCode = ws; - this.m_textBox.StyleSheet = ss; // before setting text, otherwise it gets confused about height needed. - this.m_textBox.Location = new System.Drawing.Point(8, 24); - this.m_textBox.Name = "m_textBox"; - this.m_textBox.Size = new System.Drawing.Size(450, 32); - this.m_textBox.TabIndex = 0; - this.m_textBox.Text = ""; - this.Controls.Add(this.m_textBox); - AccessibleName = "SimpleMatchDlg"; - m_helpTopicProvider = helpTopicProvider; - - regexContextMenu = new RegexHelperMenu(m_textBox, m_helpTopicProvider); - - m_ivwpattern = VwPatternClass.Create(); - - helpProvider = new HelpProvider(); - helpProvider.HelpNamespace = m_helpTopicProvider.HelpFile; - helpProvider.SetHelpKeyword(this, m_helpTopicProvider.GetHelpString(s_helpTopic)); - helpProvider.SetHelpNavigator(this, HelpNavigator.Topic); - foreach (Control control in Controls) - control.Click += new EventHandler(control_Click); - } - - void control_Click(object sender, EventArgs e) - { - m_textBox.Select(); - } - - /// ------------------------------------------------------------------------------------ - /// <summary> - /// Initialize the dialog, based on the old matcher, if any, and if recognized. - /// </summary> - /// <param name="matcher">The matcher.</param> - /// <param name="stylesheet">The stylesheet.</param> - /// ------------------------------------------------------------------------------------ - public void SetDlgValues(IMatcher matcher, IVwStylesheet stylesheet) - { - CheckDisposed(); - - // Figure out which kind to check - if (matcher is AnywhereMatcher) - { - m_anywhereButton.Checked = true; - } - else if (matcher is EndMatcher) - { - m_atEndButton.Checked = true; - } - else if (matcher is BeginMatcher) - { - m_atStartButton.Checked = true; - } - else if (matcher is RegExpMatcher) - { - m_regExButton.Checked = true; - } - else if (matcher is ExactMatcher) - { - m_wholeItemButton.Checked = true; - } - - // Now get the attributes - if (matcher is SimpleStringMatcher) - { - SimpleStringMatcher ssMatcher = (matcher as SimpleStringMatcher); - m_textBox.Tss = ssMatcher.Pattern.Pattern; - m_MatchCasecheckBox.Checked = ssMatcher.Pattern.MatchCase; - m_MatchDiacriticscheckBox.Checked = ssMatcher.Pattern.MatchDiacritics; - } - m_textBox.AdjustForStyleSheet(this, null, stylesheet); - } - - public void SetDlgValues(Matcher agMatcher, IVwStylesheet stylesheet) - { - CheckDisposed(); - - MatcherType type = agMatcher.Type; - // Figure out which kind to check - if (type == MatcherType.Anywhere) - { - m_anywhereButton.Checked = true; - } - else if (type == MatcherType.End) - { - m_atEndButton.Checked = true; - } - else if (type == MatcherType.Begin) - { - m_atStartButton.Checked = true; - } - else if (type == MatcherType.RegularExpression) - { - m_regExButton.Checked = true; - } - else if (type == MatcherType.Exact) - { - m_wholeItemButton.Checked = true; - } - - m_MatchCasecheckBox.Checked = agMatcher.MatchCase; - m_MatchDiacriticscheckBox.Checked = agMatcher.MatchDiacritics; - m_textBox.Text = agMatcher.Pattern; - m_textBox.AdjustForStyleSheet(this, null, stylesheet); - } - - public Matcher GetMatcher() - { - MatcherType matcherType = MatcherType.Anywhere; - if (m_anywhereButton.Checked) - matcherType = MatcherType.Anywhere; - else if (m_atEndButton.Checked) - matcherType = MatcherType.End; - else if (m_atStartButton.Checked) - matcherType = MatcherType.Begin; - else if (m_regExButton.Checked) - matcherType = MatcherType.RegularExpression; - else - matcherType = MatcherType.Exact; - Matcher matcher = new Matcher(matcherType); - matcher.MatchCase = m_MatchCasecheckBox.Checked; - matcher.MatchDiacritics = m_MatchDiacriticscheckBox.Checked; - matcher.Pattern = m_textBox.Text; - return matcher; - } - - /// ------------------------------------------------------------------------------------ - /// <summary> - /// Gets the resulting matcher. - /// </summary> - /// <value>The resulting matcher.</value> - /// ------------------------------------------------------------------------------------ - public IMatcher ResultingMatcher - { - get - { - CheckDisposed(); - - // The text we're matching will be normalized. We get more consistent results - // if the pattern is too. For example, matching a character with a diacritic - // at the end of a string doesn't work unless we do. - //string pattern = SIL.FieldWorks.Common.FwUtils.StringUtils.NormalizeNfd(m_textBox.Text); - - m_ivwpattern.Pattern = m_textBox.Tss; - m_ivwpattern.MatchCase = m_MatchCasecheckBox.Checked; - m_ivwpattern.MatchDiacritics = m_MatchDiacriticscheckBox.Checked; - - // Default values because we don't set these here - m_ivwpattern.MatchOldWritingSystem = false; - m_ivwpattern.MatchWholeWord = false; - m_ivwpattern.UseRegularExpressions = false; - m_ivwpattern.IcuLocale = m_textBox.WritingSystemFactory.GetStrFromWs( - m_textBox.WritingSystemCode - ); - SimpleStringMatcher.SetupPatternCollating(m_ivwpattern, m_cache); - - if (m_anywhereButton.Checked) - return new AnywhereMatcher(m_ivwpattern); - else if (m_atEndButton.Checked) - return new EndMatcher(m_ivwpattern); - else if (m_atStartButton.Checked) - return new BeginMatcher(m_ivwpattern); - else if (m_regExButton.Checked) - return new RegExpMatcher(m_ivwpattern); - else - return new ExactMatcher(m_ivwpattern); - } - } - - /// <summary> - /// Make sure the search text is valid for the type of IMatcher that is created. - /// Use the new IsValid method on the IMatcher interface to make sure it's valid - /// and allow it to continue, otherwise show the errormessage associated with the - /// error and don't allow it to be selected. - /// </summary> - /// <param name="sender"></param> - /// <param name="e"></param> - private void m_okButton_Click(object sender, System.EventArgs e) - { - IMatcher testMatcher = ResultingMatcher; - if (testMatcher.IsValid()) - { - DialogResult = System.Windows.Forms.DialogResult.OK; - return; - } - string errMsg = String.Format( - XMLViewsStrings.ksFilterErrorMsg, - testMatcher.ErrorMessage() - ); - MessageBox.Show( - this, - errMsg, - XMLViewsStrings.ksFilterError, - MessageBoxButtons.OK, - MessageBoxIcon.Error - ); - // If the matcher can make the search text valid - let it - if (testMatcher.CanMakeValid()) - this.m_textBox.Tss = testMatcher.MakeValid(); - } - - /// <summary> - /// The text the user typed...should eventually be TsString. - /// </summary> - public string Pattern - { - get - { - CheckDisposed(); - - if (m_textBox.Text.Length == 0) // case where nothing was entered - return ""; // return an empty string - string pattern = m_textBox.Text; - if (m_anywhereButton.Checked) - return pattern; - else if (m_atEndButton.Checked) - return pattern + "#"; - else if (m_atStartButton.Checked) - return "#" + pattern; - else if (m_regExButton.Checked) - return "/" + pattern + "/"; - else - return "#" + pattern + "#"; - } - } - - /// <summary> - /// Check to see if the object has been disposed. - /// All public Properties and Methods should call this - /// before doing anything else. - /// </summary> - public void CheckDisposed() - { - if (IsDisposed) - throw new ObjectDisposedException( - String.Format("'{0}' in use after being disposed.", GetType().Name) - ); - } - - /// <summary> - /// Clean up any resources being used. - /// </summary> - protected override void Dispose(bool disposing) - { - System.Diagnostics.Debug.WriteLineIf( - !disposing, - "****************** Missing Dispose() call for " - + GetType().Name - + ". ******************" - ); - // Must not be run more than once. - if (IsDisposed) - return; - - if (disposing) - { - if (components != null) - { - components.Dispose(); - } - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - /// <summary> - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// </summary> - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = - new System.ComponentModel.ComponentResourceManager(typeof(SimpleMatchDlgAlloGen)); - this.m_anywhereButton = new System.Windows.Forms.RadioButton(); - this.m_atStartButton = new System.Windows.Forms.RadioButton(); - this.m_atEndButton = new System.Windows.Forms.RadioButton(); - this.m_wholeItemButton = new System.Windows.Forms.RadioButton(); - this.m_okButton = new System.Windows.Forms.Button(); - this.m_cancelButton = new System.Windows.Forms.Button(); - this.m_regExButton = new System.Windows.Forms.RadioButton(); - this.label1 = new System.Windows.Forms.Label(); - this.buttonHelp = new System.Windows.Forms.Button(); - this.regexHelper = new System.Windows.Forms.Button(); - this.m_MatchCasecheckBox = new System.Windows.Forms.CheckBox(); - this.m_MatchDiacriticscheckBox = new System.Windows.Forms.CheckBox(); - this.SuspendLayout(); - // - // m_anywhereButton - // - this.m_anywhereButton.Checked = true; - resources.ApplyResources(this.m_anywhereButton, "m_anywhereButton"); - this.m_anywhereButton.Name = "m_anywhereButton"; - this.m_anywhereButton.TabStop = true; - // - // m_atStartButton - // - resources.ApplyResources(this.m_atStartButton, "m_atStartButton"); - this.m_atStartButton.Name = "m_atStartButton"; - // - // m_atEndButton - // - resources.ApplyResources(this.m_atEndButton, "m_atEndButton"); - this.m_atEndButton.Name = "m_atEndButton"; - // - // m_wholeItemButton - // - resources.ApplyResources(this.m_wholeItemButton, "m_wholeItemButton"); - this.m_wholeItemButton.Name = "m_wholeItemButton"; - // - // m_okButton - // - resources.ApplyResources(this.m_okButton, "m_okButton"); - this.m_okButton.Name = "m_okButton"; - this.m_okButton.Click += new System.EventHandler(this.m_okButton_Click); - // - // m_cancelButton - // - this.m_cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; - resources.ApplyResources(this.m_cancelButton, "m_cancelButton"); - this.m_cancelButton.Name = "m_cancelButton"; - // - // m_regExButton - // - resources.ApplyResources(this.m_regExButton, "m_regExButton"); - this.m_regExButton.Name = "m_regExButton"; - this.m_regExButton.CheckedChanged += new System.EventHandler( - this.m_regExButton_CheckedChanged - ); - // - // label1 - // - resources.ApplyResources(this.label1, "label1"); - this.label1.Name = "label1"; - // - // buttonHelp - // - resources.ApplyResources(this.buttonHelp, "buttonHelp"); - this.buttonHelp.Name = "buttonHelp"; - this.buttonHelp.Click += new System.EventHandler(this.buttonHelp_Click); - // - // regexHelper - // - resources.ApplyResources(this.regexHelper, "regexHelper"); - this.regexHelper.Name = "regexHelper"; - this.regexHelper.Click += new System.EventHandler(this.regexHelper_Click); - // - // m_MatchCasecheckBox - // - resources.ApplyResources(this.m_MatchCasecheckBox, "m_MatchCasecheckBox"); - this.m_MatchCasecheckBox.Name = "m_MatchCasecheckBox"; - // - // m_MatchDiacriticscheckBox - // - resources.ApplyResources(this.m_MatchDiacriticscheckBox, "m_MatchDiacriticscheckBox"); - this.m_MatchDiacriticscheckBox.Name = "m_MatchDiacriticscheckBox"; - this.m_MatchDiacriticscheckBox.UseVisualStyleBackColor = true; - // - // SimpleMatchDlgAlloGen - // - this.AcceptButton = this.m_okButton; - resources.ApplyResources(this, "$this"); - this.CancelButton = this.m_cancelButton; - this.Controls.Add(this.m_MatchDiacriticscheckBox); - this.Controls.Add(this.m_MatchCasecheckBox); - this.Controls.Add(this.regexHelper); - this.Controls.Add(this.buttonHelp); - this.Controls.Add(this.label1); - this.Controls.Add(this.m_regExButton); - this.Controls.Add(this.m_cancelButton); - this.Controls.Add(this.m_okButton); - this.Controls.Add(this.m_wholeItemButton); - this.Controls.Add(this.m_atEndButton); - this.Controls.Add(this.m_atStartButton); - this.Controls.Add(this.m_anywhereButton); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; - this.Name = "SimpleMatchDlgAlloGen"; - this.ResumeLayout(false); - this.PerformLayout(); - } - #endregion - - private void buttonHelp_Click(object sender, System.EventArgs e) - { - ShowHelp.ShowHelpTopic(m_helpTopicProvider, s_helpTopic); - } - - private void m_regExButton_CheckedChanged(object sender, EventArgs e) - { - if (m_regExButton.Checked) - regexHelper.Enabled = true; - else - regexHelper.Enabled = false; - } - - private void regexHelper_Click(object sender, EventArgs e) - { - regexContextMenu.Show(regexHelper, new System.Drawing.Point(regexHelper.Width, 0)); - } - } -} diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/SimpleMatchDlgAlloGen.resx b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/SimpleMatchDlgAlloGen.resx deleted file mode 100644 index 50ad4224db..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/SimpleMatchDlgAlloGen.resx +++ /dev/null @@ -1,437 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<root> - <!-- - Microsoft ResX Schema - - Version 2.0 - - The primary goals of this format is to allow a simple XML format - that is mostly human readable. The generation and parsing of the - various data types are done through the TypeConverter classes - associated with the data types. - - Example: - - ... ado.net/XML headers & schema ... - <resheader name="resmimetype">text/microsoft-resx</resheader> - <resheader name="version">2.0</resheader> - <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> - <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> - <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> - <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> - <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> - <value>[base64 mime encoded serialized .NET Framework object]</value> - </data> - <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> - <comment>This is a comment</comment> - </data> - - There are any number of "resheader" rows that contain simple - name/value pairs. - - Each data row contains a name, and value. The row also contains a - type or mimetype. Type corresponds to a .NET class that support - text/value conversion through the TypeConverter architecture. - Classes that don't support this are serialized and stored with the - mimetype set. - - The mimetype is used for serialized objects, and tells the - ResXResourceReader how to depersist the object. This is currently not - extensible. For a given mimetype the value must be set accordingly: - - Note - application/x-microsoft.net.object.binary.base64 is the format - that the ResXResourceWriter will generate, however the reader can - read any of the formats listed below. - - mimetype: application/x-microsoft.net.object.binary.base64 - value : The object must be serialized with - : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.soap.base64 - value : The object must be serialized with - : System.Runtime.Serialization.Formatters.Soap.SoapFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.bytearray.base64 - value : The object must be serialized into a byte array - : using a System.ComponentModel.TypeConverter - : and then encoded with base64 encoding. - --> - <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> - <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> - <xsd:element name="root" msdata:IsDataSet="true"> - <xsd:complexType> - <xsd:choice maxOccurs="unbounded"> - <xsd:element name="metadata"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" /> - </xsd:sequence> - <xsd:attribute name="name" use="required" type="xsd:string" /> - <xsd:attribute name="type" type="xsd:string" /> - <xsd:attribute name="mimetype" type="xsd:string" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="assembly"> - <xsd:complexType> - <xsd:attribute name="alias" type="xsd:string" /> - <xsd:attribute name="name" type="xsd:string" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="data"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> - <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> - <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="resheader"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" /> - </xsd:complexType> - </xsd:element> - </xsd:choice> - </xsd:complexType> - </xsd:element> - </xsd:schema> - <resheader name="resmimetype"> - <value>text/microsoft-resx</value> - </resheader> - <resheader name="version"> - <value>2.0</value> - </resheader> - <resheader name="reader"> - <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> - <resheader name="writer"> - <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> - <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> - <data name="m_anywhereButton.Location" type="System.Drawing.Point, System.Drawing"> - <value>16, 64</value> - </data> - <data name="m_anywhereButton.Size" type="System.Drawing.Size, System.Drawing"> - <value>104, 24</value> - </data> - <assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> - <data name="m_anywhereButton.TabIndex" type="System.Int32, mscorlib"> - <value>1</value> - </data> - <data name="m_anywhereButton.Text" xml:space="preserve"> - <value>&Anywhere</value> - </data> - <data name=">>m_anywhereButton.Name" xml:space="preserve"> - <value>m_anywhereButton</value> - </data> - <data name=">>m_anywhereButton.Type" xml:space="preserve"> - <value>System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </data> - <data name=">>m_anywhereButton.Parent" xml:space="preserve"> - <value>$this</value> - </data> - <data name=">>m_anywhereButton.ZOrder" xml:space="preserve"> - <value>11</value> - </data> - <data name="m_atStartButton.Location" type="System.Drawing.Point, System.Drawing"> - <value>189, 88</value> - </data> - <data name="m_atStartButton.Size" type="System.Drawing.Size, System.Drawing"> - <value>104, 24</value> - </data> - <data name="m_atStartButton.TabIndex" type="System.Int32, mscorlib"> - <value>4</value> - </data> - <data name="m_atStartButton.Text" xml:space="preserve"> - <value>At &start</value> - </data> - <data name=">>m_atStartButton.Name" xml:space="preserve"> - <value>m_atStartButton</value> - </data> - <data name=">>m_atStartButton.Type" xml:space="preserve"> - <value>System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </data> - <data name=">>m_atStartButton.Parent" xml:space="preserve"> - <value>$this</value> - </data> - <data name=">>m_atStartButton.ZOrder" xml:space="preserve"> - <value>10</value> - </data> - <data name="m_atEndButton.Location" type="System.Drawing.Point, System.Drawing"> - <value>189, 64</value> - </data> - <data name="m_atEndButton.Size" type="System.Drawing.Size, System.Drawing"> - <value>104, 24</value> - </data> - <data name="m_atEndButton.TabIndex" type="System.Int32, mscorlib"> - <value>2</value> - </data> - <data name="m_atEndButton.Text" xml:space="preserve"> - <value>At &end</value> - </data> - <data name=">>m_atEndButton.Name" xml:space="preserve"> - <value>m_atEndButton</value> - </data> - <data name=">>m_atEndButton.Type" xml:space="preserve"> - <value>System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </data> - <data name=">>m_atEndButton.Parent" xml:space="preserve"> - <value>$this</value> - </data> - <data name=">>m_atEndButton.ZOrder" xml:space="preserve"> - <value>9</value> - </data> - <data name="m_wholeItemButton.Location" type="System.Drawing.Point, System.Drawing"> - <value>16, 88</value> - </data> - <data name="m_wholeItemButton.Size" type="System.Drawing.Size, System.Drawing"> - <value>104, 24</value> - </data> - <data name="m_wholeItemButton.TabIndex" type="System.Int32, mscorlib"> - <value>3</value> - </data> - <data name="m_wholeItemButton.Text" xml:space="preserve"> - <value>&Whole item</value> - </data> - <data name=">>m_wholeItemButton.Name" xml:space="preserve"> - <value>m_wholeItemButton</value> - </data> - <data name=">>m_wholeItemButton.Type" xml:space="preserve"> - <value>System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </data> - <data name=">>m_wholeItemButton.Parent" xml:space="preserve"> - <value>$this</value> - </data> - <data name=">>m_wholeItemButton.ZOrder" xml:space="preserve"> - <value>8</value> - </data> - <data name="m_okButton.Location" type="System.Drawing.Point, System.Drawing"> - <value>243, 142</value> - </data> - <data name="m_okButton.Size" type="System.Drawing.Size, System.Drawing"> - <value>75, 23</value> - </data> - <data name="m_okButton.TabIndex" type="System.Int32, mscorlib"> - <value>6</value> - </data> - <data name="m_okButton.Text" xml:space="preserve"> - <value>OK</value> - </data> - <data name=">>m_okButton.Name" xml:space="preserve"> - <value>m_okButton</value> - </data> - <data name=">>m_okButton.Type" xml:space="preserve"> - <value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </data> - <data name=">>m_okButton.Parent" xml:space="preserve"> - <value>$this</value> - </data> - <data name=">>m_okButton.ZOrder" xml:space="preserve"> - <value>7</value> - </data> - <data name="m_cancelButton.Location" type="System.Drawing.Point, System.Drawing"> - <value>324, 142</value> - </data> - <data name="m_cancelButton.Size" type="System.Drawing.Size, System.Drawing"> - <value>75, 23</value> - </data> - <data name="m_cancelButton.TabIndex" type="System.Int32, mscorlib"> - <value>7</value> - </data> - <data name="m_cancelButton.Text" xml:space="preserve"> - <value>Cancel</value> - </data> - <data name=">>m_cancelButton.Name" xml:space="preserve"> - <value>m_cancelButton</value> - </data> - <data name=">>m_cancelButton.Type" xml:space="preserve"> - <value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </data> - <data name=">>m_cancelButton.Parent" xml:space="preserve"> - <value>$this</value> - </data> - <data name=">>m_cancelButton.ZOrder" xml:space="preserve"> - <value>6</value> - </data> - <data name="m_regExButton.Location" type="System.Drawing.Point, System.Drawing"> - <value>16, 112</value> - </data> - <data name="m_regExButton.Size" type="System.Drawing.Size, System.Drawing"> - <value>232, 24</value> - </data> - <data name="m_regExButton.TabIndex" type="System.Int32, mscorlib"> - <value>5</value> - </data> - <data name="m_regExButton.Text" xml:space="preserve"> - <value>Match for &regular expression</value> - </data> - <data name=">>m_regExButton.Name" xml:space="preserve"> - <value>m_regExButton</value> - </data> - <data name=">>m_regExButton.Type" xml:space="preserve"> - <value>System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </data> - <data name=">>m_regExButton.Parent" xml:space="preserve"> - <value>$this</value> - </data> - <data name=">>m_regExButton.ZOrder" xml:space="preserve"> - <value>5</value> - </data> - <data name="label1.Location" type="System.Drawing.Point, System.Drawing"> - <value>8, 8</value> - </data> - <data name="label1.Size" type="System.Drawing.Size, System.Drawing"> - <value>144, 15</value> - </data> - <data name="label1.TabIndex" type="System.Int32, mscorlib"> - <value>8</value> - </data> - <data name="label1.Text" xml:space="preserve"> - <value>Enter text to search for:</value> - </data> - <data name=">>label1.Name" xml:space="preserve"> - <value>label1</value> - </data> - <data name=">>label1.Type" xml:space="preserve"> - <value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </data> - <data name=">>label1.Parent" xml:space="preserve"> - <value>$this</value> - </data> - <data name=">>label1.ZOrder" xml:space="preserve"> - <value>4</value> - </data> - <data name="buttonHelp.Location" type="System.Drawing.Point, System.Drawing"> - <value>405, 142</value> - </data> - <data name="buttonHelp.Size" type="System.Drawing.Size, System.Drawing"> - <value>75, 23</value> - </data> - <data name="buttonHelp.TabIndex" type="System.Int32, mscorlib"> - <value>9</value> - </data> - <data name="buttonHelp.Text" xml:space="preserve"> - <value>Help</value> - </data> - <data name=">>buttonHelp.Name" xml:space="preserve"> - <value>buttonHelp</value> - </data> - <data name=">>buttonHelp.Type" xml:space="preserve"> - <value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </data> - <data name=">>buttonHelp.Parent" xml:space="preserve"> - <value>$this</value> - </data> - <data name=">>buttonHelp.ZOrder" xml:space="preserve"> - <value>3</value> - </data> - <data name="regexHelper.Enabled" type="System.Boolean, mscorlib"> - <value>False</value> - </data> - <data name="regexHelper.Location" type="System.Drawing.Point, System.Drawing"> - <value>464, 24</value> - </data> - <data name="regexHelper.Size" type="System.Drawing.Size, System.Drawing"> - <value>16, 32</value> - </data> - <data name="regexHelper.TabIndex" type="System.Int32, mscorlib"> - <value>10</value> - </data> - <data name="regexHelper.Text" xml:space="preserve"> - <value>></value> - </data> - <data name=">>regexHelper.Name" xml:space="preserve"> - <value>regexHelper</value> - </data> - <data name=">>regexHelper.Type" xml:space="preserve"> - <value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </data> - <data name=">>regexHelper.Parent" xml:space="preserve"> - <value>$this</value> - </data> - <data name=">>regexHelper.ZOrder" xml:space="preserve"> - <value>2</value> - </data> - <data name="m_MatchCasecheckBox.Location" type="System.Drawing.Point, System.Drawing"> - <value>320, 65</value> - </data> - <data name="m_MatchCasecheckBox.Size" type="System.Drawing.Size, System.Drawing"> - <value>104, 24</value> - </data> - <data name="m_MatchCasecheckBox.TabIndex" type="System.Int32, mscorlib"> - <value>11</value> - </data> - <data name="m_MatchCasecheckBox.Text" xml:space="preserve"> - <value>Match case</value> - </data> - <data name=">>m_MatchCasecheckBox.Name" xml:space="preserve"> - <value>m_MatchCasecheckBox</value> - </data> - <data name=">>m_MatchCasecheckBox.Type" xml:space="preserve"> - <value>System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </data> - <data name=">>m_MatchCasecheckBox.Parent" xml:space="preserve"> - <value>$this</value> - </data> - <data name=">>m_MatchCasecheckBox.ZOrder" xml:space="preserve"> - <value>1</value> - </data> - <data name="m_MatchDiacriticscheckBox.AutoSize" type="System.Boolean, mscorlib"> - <value>True</value> - </data> - <data name="m_MatchDiacriticscheckBox.Location" type="System.Drawing.Point, System.Drawing"> - <value>320, 93</value> - </data> - <data name="m_MatchDiacriticscheckBox.Size" type="System.Drawing.Size, System.Drawing"> - <value>100, 17</value> - </data> - <data name="m_MatchDiacriticscheckBox.TabIndex" type="System.Int32, mscorlib"> - <value>14</value> - </data> - <data name="m_MatchDiacriticscheckBox.Text" xml:space="preserve"> - <value>Match diacritics</value> - </data> - <data name=">>m_MatchDiacriticscheckBox.Name" xml:space="preserve"> - <value>m_MatchDiacriticscheckBox</value> - </data> - <data name=">>m_MatchDiacriticscheckBox.Type" xml:space="preserve"> - <value>System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </data> - <data name=">>m_MatchDiacriticscheckBox.Parent" xml:space="preserve"> - <value>$this</value> - </data> - <data name=">>m_MatchDiacriticscheckBox.ZOrder" xml:space="preserve"> - <value>0</value> - </data> - <metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> - <value>True</value> - </metadata> - <data name="$this.AccessibleName" xml:space="preserve"> - <value>SimpleMatchDlg</value> - </data> - <data name="$this.AutoScaleBaseSize" type="System.Drawing.Size, System.Drawing"> - <value>5, 13</value> - </data> - <data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing"> - <value>488, 172</value> - </data> - <data name="$this.Text" xml:space="preserve"> - <value>Match for forms containing...</value> - </data> - <data name=">>$this.Name" xml:space="preserve"> - <value>SimpleMatchDlgAlloGen</value> - </data> - <data name=">>$this.Type" xml:space="preserve"> - <value>System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </data> -</root> \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/StemNameChooser.Designer.cs b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/StemNameChooser.Designer.cs deleted file mode 100644 index f505bd3957..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/StemNameChooser.Designer.cs +++ /dev/null @@ -1,90 +0,0 @@ -namespace SIL.AllomorphGenerator -{ - partial class StemNameChooser - { - /// <summary> - /// Required designer variable. - /// </summary> - private System.ComponentModel.IContainer components = null; - - /// <summary> - /// Clean up any resources being used. - /// </summary> - /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// <summary> - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// </summary> - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(StemNameChooser)); - this.btnCancel = new System.Windows.Forms.Button(); - this.btnOK = new System.Windows.Forms.Button(); - this.lBoxStemNames = new System.Windows.Forms.ListBox(); - this.SuspendLayout(); - // - // btnCancel - // - this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.btnCancel.Location = new System.Drawing.Point(702, 397); - this.btnCancel.Name = "btnCancel"; - this.btnCancel.Size = new System.Drawing.Size(75, 41); - this.btnCancel.TabIndex = 2; - this.btnCancel.Text = "Cancel"; - this.btnCancel.UseVisualStyleBackColor = true; - // - // btnOK - // - this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK; - this.btnOK.Location = new System.Drawing.Point(590, 397); - this.btnOK.Name = "btnOK"; - this.btnOK.Size = new System.Drawing.Size(75, 41); - this.btnOK.TabIndex = 1; - this.btnOK.Text = "OK"; - this.btnOK.UseVisualStyleBackColor = true; - this.btnOK.Click += new System.EventHandler(this.btnOK_Click); - // - // lBoxStemNames - // - this.lBoxStemNames.FormattingEnabled = true; - this.lBoxStemNames.ItemHeight = 20; - this.lBoxStemNames.Location = new System.Drawing.Point(13, 13); - this.lBoxStemNames.Name = "lBoxStemNames"; - this.lBoxStemNames.Size = new System.Drawing.Size(764, 364); - this.lBoxStemNames.TabIndex = 0; - // - // StemNameChooser - // - this.AcceptButton = this.btnOK; - this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.CancelButton = this.btnCancel; - this.ClientSize = new System.Drawing.Size(800, 450); - this.Controls.Add(this.lBoxStemNames); - this.Controls.Add(this.btnOK); - this.Controls.Add(this.btnCancel); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.Name = "StemNameChooser"; - this.Text = "Stem Name Chooser"; - this.ResumeLayout(false); - - } - - #endregion - - private System.Windows.Forms.Button btnCancel; - private System.Windows.Forms.Button btnOK; - private System.Windows.Forms.ListBox lBoxStemNames; - } -} \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/StemNameChooser.cs b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/StemNameChooser.cs deleted file mode 100644 index 3fa4cdd226..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/StemNameChooser.cs +++ /dev/null @@ -1,58 +0,0 @@ -// Copyright (c) 2022 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using SIL.AlloGenModel; -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; - -namespace SIL.AllomorphGenerator -{ - public partial class StemNameChooser : Form - { - public List<StemName> StemNames { get; set; } - public StemName SelectedStemName { get; set; } = new StemName(); - public StemName NoneChosen { get; set; } = new StemName(); - - public StemNameChooser() - { - StemNames = new List<StemName>(); - NoneChosen.Name = "<None>"; - NoneChosen.Guid = ""; - InitializeComponent(); - FillStemNamesListBox(); - } - - public void FillStemNamesListBox() - { - lBoxStemNames.BeginUpdate(); - lBoxStemNames.Items.Clear(); - foreach (StemName stemName in StemNames) - { - lBoxStemNames.Items.Add(stemName); - } - lBoxStemNames.Items.Add(NoneChosen); - lBoxStemNames.EndUpdate(); - } - - public void SelectStemName(int index) - { - if (index > -1 && index <= StemNames.Count) - { - lBoxStemNames.SelectedIndex = index; - } - } - - private void btnOK_Click(object sender, EventArgs e) - { - SelectedStemName = (StemName)lBoxStemNames.SelectedItem; - } - } -} diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/StemNameChooser.resx b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/StemNameChooser.resx deleted file mode 100644 index 09446bdec6..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/StemNameChooser.resx +++ /dev/null @@ -1,201 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<root> - <!-- - Microsoft ResX Schema - - Version 2.0 - - The primary goals of this format is to allow a simple XML format - that is mostly human readable. The generation and parsing of the - various data types are done through the TypeConverter classes - associated with the data types. - - Example: - - ... ado.net/XML headers & schema ... - <resheader name="resmimetype">text/microsoft-resx</resheader> - <resheader name="version">2.0</resheader> - <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> - <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> - <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> - <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> - <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> - <value>[base64 mime encoded serialized .NET Framework object]</value> - </data> - <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> - <comment>This is a comment</comment> - </data> - - There are any number of "resheader" rows that contain simple - name/value pairs. - - Each data row contains a name, and value. The row also contains a - type or mimetype. Type corresponds to a .NET class that support - text/value conversion through the TypeConverter architecture. - Classes that don't support this are serialized and stored with the - mimetype set. - - The mimetype is used for serialized objects, and tells the - ResXResourceReader how to depersist the object. This is currently not - extensible. For a given mimetype the value must be set accordingly: - - Note - application/x-microsoft.net.object.binary.base64 is the format - that the ResXResourceWriter will generate, however the reader can - read any of the formats listed below. - - mimetype: application/x-microsoft.net.object.binary.base64 - value : The object must be serialized with - : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.soap.base64 - value : The object must be serialized with - : System.Runtime.Serialization.Formatters.Soap.SoapFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.bytearray.base64 - value : The object must be serialized into a byte array - : using a System.ComponentModel.TypeConverter - : and then encoded with base64 encoding. - --> - <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> - <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> - <xsd:element name="root" msdata:IsDataSet="true"> - <xsd:complexType> - <xsd:choice maxOccurs="unbounded"> - <xsd:element name="metadata"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" /> - </xsd:sequence> - <xsd:attribute name="name" use="required" type="xsd:string" /> - <xsd:attribute name="type" type="xsd:string" /> - <xsd:attribute name="mimetype" type="xsd:string" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="assembly"> - <xsd:complexType> - <xsd:attribute name="alias" type="xsd:string" /> - <xsd:attribute name="name" type="xsd:string" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="data"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> - <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> - <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="resheader"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" /> - </xsd:complexType> - </xsd:element> - </xsd:choice> - </xsd:complexType> - </xsd:element> - </xsd:schema> - <resheader name="resmimetype"> - <value>text/microsoft-resx</value> - </resheader> - <resheader name="version"> - <value>2.0</value> - </resheader> - <resheader name="reader"> - <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> - <resheader name="writer"> - <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> - <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> - <data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - AAABAAEAISAAAAEAIACoEQAAFgAAACgAAAAhAAAAQAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAIR1YzmMdXPelHVz3nt1YzkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAhHVrjIR1a/9KgiH/KW0h/4R1a/+EdWuEAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAHt1WjGMcWvWa3lK/zGGCP8phgD/AGkA/whpCP9jcVL/lHlzznN1 - YykAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe3Fje4RxY/9KgiH/KYoA/ymGAP8pggD/AGkA/wBp - AP8AaQD/OW0p/4x5c/d7dWtzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGtdeyGEbWvOa3lK/zGKCP8pigD/KYYA/ymC - AP8pfQD/AGkA/wBpAP8AaQD/AGkA/xBpCP9zdVr/lHlzvZRpaxgAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa117a3tlc/cxLL3/KY4A/ymK - AP8phgD/KYIA/yl9AP8peQD/AGkA/wBpAP8AaQD/AGkA/wBpAP8AaQD/zjx7/5R1e++laXtaAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGNRhBh7ZWu9Y1GM/xAM - 3v8AAO//KYoA/ymGAP8pggD/KX0A/yl5AP8hdQj/AG0Q/wBpAP8AaQD/AGkA/wBpAP8AaQD//wiE/+8c - e/+lZXv/nHF7ra1hexAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAY1V7Y3th - a/c5MLX/AAD3/wAA7/8AAOf/KYYA/ymCAP8pfQD/KXkA/xh5Of8Afa3/AJ7n/wB5Qv8AaQD/AGkA/wBp - AP8AaQD//wiE//8IhP//DHv/xkV7/5x1e+etZXtCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AABzXWutY1GE/xAQ3v8AAPf/AADv/wAA5/8AAN7/KYIA/yl9AP8heQj/CHlz/wB5vf8Aeb3/AKb//wCm - //8AipT/AGkI/wBpAP8AaQD//wiE//8IhP//CIT//wiE/+cke/+lbXv/nHF7jAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAGtVcwhzXWv/AAD3/wAA9/8AAO//AADn/wAA3v8AAN7/KX0A/xh5Mf8Afa3/AHm9/wB1 - tf8AdbX/AKb//wCm//8Apv//AJ7W/wB1Mf8AaQD//wiE//8IhP//CIT//wiE//8IhP//EHv/nHV7/6Vl - ewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNVcwhrWWv/AAD3/wAA7/8AAOf/AADe/wAA3v8AAM7/EH1z/wB9 - xv8Aeb3/AHW1/wBxrf8Aca3/AKb//wCm//8Apv//AKb//wCm//8Ahnv//wh7//8IhP//CIT//wiE//8I - hP//CIT/nHF7/61hewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNRcwhrWWv/AADv/wAA5/8AAN7/AADe/ykQ - vf+1TXP/CH29/wB5vf8AdbX/AHGt/wBtrf8Aba3/AKb//wCm//8Apv//AKb//wCm//8Apv///4Za//8g - e///CIT//wiE//8IhP//CIT/nHF7/61dewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNRcwhrWWv/AADn/wAA - 3v8AANb/ayyc/9ZZY//WWVr/CHm1/wB1tf8Aca3/AG2t/wBppf8AfbX/AK7//wCm//8Apv//AKb//wCm - //8Apv///65S//+mUv//SWv//wiE//8IhP//CIT/nHF7/61dewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNR - awhrWWP/AADe/yEQxv+1SXv/1llj/9ZZWv/OVVr/CHW1/wBxrf8Aba3/AGml/wCizv8A1///ANP//wC2 - //8Apv//AKb//wCm//8Apv///65S//+uUv//rlL//3lj//8Ye///CIT/lG1z/61hcwgAAAAAAAAAAAAA - AAAAAAAAAAAAAGtVawhrWWP/Yyil/9ZZa//WWWP/1lla/85VWv/GUVL/CHGt/wBtrf8AfbX/AMvv/wDf - //8A2///ANP//wDL//8Avv//AKr//wCm//8Apv///65S//+uUv//rlL//65S//+eWv//OHP/lG1z/61p - cwgAAAAAAAAAAAAAAAAAAAAAAAAAAHNVYwhzXVr/3l1j/9ZZY//WWVr/zlVa/8ZRUv/GTVL/CG2l/wCm - zv8A5///AOf//wDf//8A2///ANP//wCq1v8Aue7/AL7//wCu//8Apv///65S//+uUv//rlL//65S//+u - Uv//rlL/lHVz/61xcwgAAAAAAAAAAAAAAAAAAAAAAAAAAHtZWghzWVr/1llj/9ZZWv/OVVr/xlFS/8ZN - Uv/GVVr/McPW/wDz//8A7///AOf//wDf//8A2///ANP//wCXvv8AOkv/ALb1/wC2//8Ysvf//65a//+u - Uv//rlL//65S//+uUv//rlL/lHVz/6V5awgAAAAAAAAAAAAAAAAAAAAAAAAAAHtZWghzWVr/1lla/85V - Wv/GUVL/xk1S/9Zxc///opz/96Kl/3PL1v8A6///ANbt/wC+2v8Avt7/ANP//wDL//8AYn7/AISy/2PH - 5//317X//8+c//+2a///rlL//65S//+uUv//rlL/lHVz/6WCawgAAAAAAAAAAAAAAAAAAAAAAAAAAHtZ - WghzWVr/zlVa/8ZRUv/GWVr/75aM//+upf//pqX//56c//+WnP+kjZb/BCYr/wAUF/8AISf/AFpt/wDL - //8Ofp//TFhW///ftf//163//9Ol///PlP//vnv//65a//+uUv//rlL/lHVz/6V9awgAAAAAAAAAAAAA - AAAAAAAAAAAAAHNZWghrWVr/xlFS/9Z1c///tqX//7at//+upf//pqX//56c/+WGjP8eERL/CQYG/zV0 - hP8Ar8z/AENR/yxsev+Qi4H/Qjoz///ftf//163//9Ol///PlP//y5T//8eM//+yY///rlL/lHVr/6V9 - awgAAAAAAAAAAAAAAAAAAAAAAAAAAHNZWghrVVL/55aM///Htf//vq3//7at//+upf//pqX//56c/7tu - cv8KBQb/r2Zr//+WnP+lqr3/rePv/3JqX/9KQzv/XlNI///ftf//163//9Ol///LlP//y5T//8uU///L - lP//unP/jHFr/5x5awgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABzWVqMe2Vj/9aqnP//vq3//7at//+u - pf//pqX//56c/6hiZv86IiP//5ac/+eSrf+Ugu//jIr//19WW/8BAAD/s5+K///ftf//163//9Ol///L - lP//y5T//8uU/++6jP+lgnP/jHVrtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhGljQmtZ - Wuethnv//7Kl//+upf//pqX//56c/9V9gv8rGRr/xpLO/4yG//97ff//QUCR/wAAAP84M0f/9Nm9///f - tf//163//9Ol///LlP//y5T/xqKE/4xta/eUeXNrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAIxtaxBzXVqlhGVj/+eelP//pqX//56c/++arf9sYJX/Hx83/1FSnf8kJEv/AAAA/xgY - O/9bXev/hIL3/+/Lvf//163//9Oc/+++lP+cgnP/hG1rxqWCcyEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhGVjWmtZWu+9gnv/1qLO/6Sh/v+cmv//X2Cu/zAw - Xf8rLFr/QD6O/2Ri7/9jZf//Y2X//2tp///Gqs7/zqaM/4Rta/+MdWtzAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIxpaxhrXVq9e2mE/5ya - 7/+cmv//jI7//4GD+/97ef//cnD9/2tp//9jZf//Y2X//2Nl9/9zZZT/e2VjzpR5cykAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAc2Fzc2tdY/eEgr3/jI7//4SG//97ef//c3H//2Nl//9jZf//a2HO/3Nha/9zZXOEAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAHNleylrWVrOc2mM/4SC9/97ef//c3H//2tl9/9rYZz/c2Fj1nNh - hDEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa11rhGtda/9zcc7/c2nO/2td - a/9zXWuMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGth - ezlrWVrea11a3mthe0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////gAAAAP/8P/+AAAAA//gf/4AAAAD/4Af/gAAAAP/A - A/+AAAAA/wAA/4AAAAD+AAB/gAAAAPgAAB+AAAAA8AAAD4AAAADgAAAHgAAAAMAAAAOAAAAAwAAAA4AA - AADAAAADgAAAAMAAAAOAAAAAwAAAA4AAAADAAAADgAAAAMAAAAOAAAAAwAAAA4AAAADAAAADgAAAAMAA - AAOAAAAAwAAAA4AAAADAAAADgAAAAOAAAAeAAAAA8AAAD4AAAAD4AAAfgAAAAP4AAH+AAAAA/wAA/4AA - AAD/wAP/gAAAAP/gB/+AAAAA//gf/4AAAAD//D//gAAAAP////+AAAAA -</value> - </data> -</root> \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/XMLViewsStringsAlloGen.Designer.cs b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/XMLViewsStringsAlloGen.Designer.cs deleted file mode 100644 index 18156f903c..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/XMLViewsStringsAlloGen.Designer.cs +++ /dev/null @@ -1,1622 +0,0 @@ -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Runtime Version:4.0.30319.18444 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// </auto-generated> -//------------------------------------------------------------------------------ - -namespace SIL.AllomorphGenerator -{ - using System; - - - /// <summary> - /// A strongly-typed resource class, for looking up localized strings, etc. - /// </summary> - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class XMLViewsStrings - { - - private static global::System.Resources.ResourceManager resourceMan; - - private static global::System.Globalization.CultureInfo resourceCulture; - - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal XMLViewsStrings() - { - } - - /// <summary> - /// Returns the cached ResourceManager instance used by this class. - /// </summary> - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager - { - get - { - if (object.ReferenceEquals(resourceMan, null)) - { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("SIL.FieldWorks.Common.Controls.XMLViewsStrings", typeof(XMLViewsStrings).Assembly); - resourceMan = temp; - } - return resourceMan; - } - } - - /// <summary> - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. - /// </summary> - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture - { - get - { - return resourceCulture; - } - set - { - resourceCulture = value; - } - } - - /// <summary> - /// Looks up a localized string similar to Configured export has been cancelled.. - /// </summary> - internal static string ConfiguredExportHasBeenCancelled - { - get - { - return ResourceManager.GetString("ConfiguredExportHasBeenCancelled", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Bulk Replace Setup. - /// </summary> - internal static string khtpBulkReplaceTitle - { - get - { - return ResourceManager.GetString("khtpBulkReplaceTitle", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Add to existing items. - /// </summary> - internal static string ksAddToExisting - { - get - { - return ResourceManager.GetString("ksAddToExisting", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to affixes. - /// </summary> - internal static string ksAffixes - { - get - { - return ResourceManager.GetString("ksAffixes", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to All Analysis. - /// </summary> - internal static string ksAllAnal - { - get - { - return ResourceManager.GetString("ksAllAnal", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to All Analysis and Vernacular. - /// </summary> - internal static string ksAllAnalVern - { - get - { - return ResourceManager.GetString("ksAllAnalVern", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to All selected items. - /// </summary> - internal static string ksAllChecked - { - get - { - return ResourceManager.GetString("ksAllChecked", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to All of.... - /// </summary> - internal static string ksAllOf_ - { - get - { - return ResourceManager.GetString("ksAllOf_", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to All Pronunciation. - /// </summary> - internal static string ksAllPron - { - get - { - return ResourceManager.GetString("ksAllPron", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to All Vernacular. - /// </summary> - internal static string ksAllVern - { - get - { - return ResourceManager.GetString("ksAllVern", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to All Vernacular and Analysis. - /// </summary> - internal static string ksAllVernAnal - { - get - { - return ResourceManager.GetString("ksAllVernAnal", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to analysis. - /// </summary> - internal static string ksAnalysis - { - get - { - return ResourceManager.GetString("ksAnalysis", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Any selected item. - /// </summary> - internal static string ksAnyChecked - { - get - { - return ResourceManager.GetString("ksAnyChecked", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Any of.... - /// </summary> - internal static string ksAnyOf_ - { - get - { - return ResourceManager.GetString("ksAnyOf_", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Apply. - /// </summary> - internal static string ksApply - { - get - { - return ResourceManager.GetString("ksApply", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Failed to create bulk edit bar element. - /// </summary> - internal static string ksBarElementFailed - { - get - { - return ResourceManager.GetString("ksBarElementFailed", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Best Analysis. - /// </summary> - internal static string ksBestAnal - { - get - { - return ResourceManager.GetString("ksBestAnal", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Best Analysis or Vernacular. - /// </summary> - internal static string ksBestAnalVern - { - get - { - return ResourceManager.GetString("ksBestAnalVern", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Best Vernacular. - /// </summary> - internal static string ksBestVern - { - get - { - return ResourceManager.GetString("ksBestVern", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Best Vernacular or Analysis. - /// </summary> - internal static string ksBestVernAnal - { - get - { - return ResourceManager.GetString("ksBestVernAnal", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Blanks. - /// </summary> - internal static string ksBlanks - { - get - { - return ResourceManager.GetString("ksBlanks", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to A browse view must have at least one column.. - /// </summary> - internal static string ksBrowseNeedsAColumn - { - get - { - return ResourceManager.GetString("ksBrowseNeedsAColumn", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Copy the contents of the source field to the target field. - /// </summary> - internal static string ksBulkCopyDesc - { - get - { - return ResourceManager.GetString("ksBulkCopyDesc", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Change each occurrence of a pattern to the replacement text. - /// </summary> - internal static string ksBulkReplaceDesc - { - get - { - return ResourceManager.GetString("ksBulkReplaceDesc", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to {0} - ///Cannot access encoding converters, possibly due to insufficient access privilege. - ///You may want to consult a system administrator.. - /// </summary> - internal static string ksCannotAccessEC - { - get - { - return ResourceManager.GetString("ksCannotAccessEC", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Cannot remove column. - /// </summary> - internal static string ksCannotRemoveColumn - { - get - { - return ResourceManager.GetString("ksCannotRemoveColumn", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to This will delete ALL the selected items - ///and can sometimes take a long time. - ///This action will not be undo-able. - /// - ///Do you want to proceed?. - /// </summary> - internal static string ksCannotUndoTooManyDeleted - { - get - { - return ResourceManager.GetString("ksCannotUndoTooManyDeleted", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Changing fundamental type. - /// </summary> - internal static string ksChangingMorphType - { - get - { - return ResourceManager.GetString("ksChangingMorphType", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Select All. - /// </summary> - internal static string ksCheckAll - { - get - { - return ResourceManager.GetString("ksCheckAll", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Choose.... - /// </summary> - internal static string ksChoose_ - { - get - { - return ResourceManager.GetString("ksChoose_", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Please choose a target column to clear. - /// </summary> - internal static string ksChooseClearTarget - { - get - { - return ResourceManager.GetString("ksChooseClearTarget", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Please select a target column for click copy. - /// </summary> - internal static string ksChooseClickTarget - { - get - { - return ResourceManager.GetString("ksChooseClickTarget", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Please choose a destination column. - /// </summary> - internal static string ksChooseDestination - { - get - { - return ResourceManager.GetString("ksChooseDestination", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Please choose a target column to edit. - /// </summary> - internal static string ksChooseEditTarget - { - get - { - return ResourceManager.GetString("ksChooseEditTarget", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Choose A Natural Class. - /// </summary> - internal static string ksChooseNaturalClass - { - get - { - return ResourceManager.GetString("ksChooseNaturalClass", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Please choose a source column. - /// </summary> - internal static string ksChooseSource - { - get - { - return ResourceManager.GetString("ksChooseSource", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Please choose or set up a Process. - /// </summary> - internal static string ksChooseTransducer - { - get - { - return ResourceManager.GetString("ksChooseTransducer", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Choose {0}. - /// </summary> - internal static string ksChooseX - { - get - { - return ResourceManager.GetString("ksChooseX", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Clear. - /// </summary> - internal static string ksClear - { - get - { - return ResourceManager.GetString("ksClear", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Click on any word to copy it to the target field. - /// </summary> - internal static string ksClickCopyDesc - { - get - { - return ResourceManager.GetString("ksClickCopyDesc", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Confirm multiple deletions. - /// </summary> - internal static string ksConfirmDeleteMulti - { - get - { - return ResourceManager.GetString("ksConfirmDeleteMulti", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to This will delete ALL the selected items. - /// - ///Do you want to proceed?. - /// </summary> - internal static string ksConfirmDeleteMultiMsg - { - get - { - return ResourceManager.GetString("ksConfirmDeleteMultiMsg", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Ctrl-click a check box to include all subitems. - /// </summary> - internal static string ksCtrlClickForSubItems - { - get - { - return ResourceManager.GetString("ksCtrlClickForSubItems", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Default Analysis. - /// </summary> - internal static string ksDefaultAnal - { - get - { - return ResourceManager.GetString("ksDefaultAnal", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Default Pronunciation. - /// </summary> - internal static string ksDefaultPron - { - get - { - return ResourceManager.GetString("ksDefaultPron", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Default Vernacular. - /// </summary> - internal static string ksDefaultVern - { - get - { - return ResourceManager.GetString("ksDefaultVern", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Delete. - /// </summary> - internal static string ksDelete - { - get - { - return ResourceManager.GetString("ksDelete", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Delete the checked items (rows) from the database. - /// </summary> - internal static string ksDeleteDesc - { - get - { - return ResourceManager.GetString("ksDeleteDesc", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Delete the contents of the specified column for all selected rows. - /// </summary> - internal static string ksDeleteDesc2 - { - get - { - return ResourceManager.GetString("ksDeleteDesc2", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Deleted object detected. - /// </summary> - internal static string ksDeletedObject - { - get - { - return ResourceManager.GetString("ksDeletedObject", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to One of the objects in the list has been deleted (possibly by another user on a networked computer). Attempting to Refresh.... - /// </summary> - internal static string ksDeletedObjectMsg - { - get - { - return ResourceManager.GetString("ksDeletedObjectMsg", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Duplicate column found. - /// </summary> - internal static string ksDuplicateColumn - { - get - { - return ResourceManager.GetString("ksDuplicateColumn", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to You have configured the following fields to be displayed in two or more columns with the same writing system: - /// "{0}" - ///Change the writing system of one of these columns or remove the duplicated column.. - /// </summary> - internal static string ksDuplicateColumnMsg - { - get - { - return ResourceManager.GetString("ksDuplicateColumnMsg", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Edit the Natural Classes. - /// </summary> - internal static string ksEditNaturalClasses - { - get - { - return ResourceManager.GetString("ksEditNaturalClasses", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to <Empty>. - /// </summary> - internal static string ksEmpty - { - get - { - return ResourceManager.GetString("ksEmpty", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to <empty>. - /// </summary> - internal static string ksEmptyLC - { - get - { - return ResourceManager.GetString("ksEmptyLC", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to A problem occurred processing the string '{0}': {1}. - /// </summary> - internal static string ksErrorProcessing - { - get - { - return ResourceManager.GetString("ksErrorProcessing", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Exactly checked items. - /// </summary> - internal static string ksExactlyChecked - { - get - { - return ResourceManager.GetString("ksExactlyChecked", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Exclude {0}. - /// </summary> - internal static string ksExcludeX - { - get - { - return ResourceManager.GetString("ksExcludeX", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Error in Filter text. - /// </summary> - internal static string ksFilterError - { - get - { - return ResourceManager.GetString("ksFilterError", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Error in filter: {0}. - /// </summary> - internal static string ksFilterErrorMsg - { - get - { - return ResourceManager.GetString("ksFilterErrorMsg", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Filter for.... - /// </summary> - internal static string ksFilterFor_ - { - get - { - return ResourceManager.GetString("ksFilterFor_", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to => {0}. - /// </summary> - internal static string ksGreaterEqX - { - get - { - return ResourceManager.GetString("ksGreaterEqX", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Greater than 1. - /// </summary> - internal static string ksGreaterThanOne - { - get - { - return ResourceManager.GetString("ksGreaterThanOne", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Greater than 0. - /// </summary> - internal static string ksGreaterThanZero - { - get - { - return ResourceManager.GetString("ksGreaterThanZero", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to > {0}. - /// </summary> - internal static string ksGreaterX - { - get - { - return ResourceManager.GetString("ksGreaterX", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Language Explorer has had to revert to the default column layout. Sorry for the inconvenience.. - /// </summary> - internal static string ksInvalidSavedLayout - { - get - { - return ResourceManager.GetString("ksInvalidSavedLayout", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Less. - /// </summary> - internal static string ksLess - { - get - { - return ResourceManager.GetString("ksLess", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to <= {0}. - /// </summary> - internal static string ksLessEqX - { - get - { - return ResourceManager.GetString("ksLessEqX", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to < {0}. - /// </summary> - internal static string ksLessX - { - get - { - return ResourceManager.GetString("ksLessX", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Select the target field and the list choice to change it to. - /// </summary> - internal static string ksListChoiceDesc - { - get - { - return ResourceManager.GetString("ksListChoiceDesc", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to More. - /// </summary> - internal static string ksMore - { - get - { - return ResourceManager.GetString("ksMore", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to More Column Choices.... - /// </summary> - internal static string ksMoreColumns - { - get - { - return ResourceManager.GetString("ksMoreColumns", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Some of the selected items are being changed from {0} to {1}. Different kinds of information are stored for affixes and stems, so such changes could lose some details you have recorded about the items. Also, the change may take a long time. If many changes are of this type, you may notice a LONG pause at about 80% complete.. - /// </summary> - internal static string ksMorphTypeChangesSlow - { - get - { - return ResourceManager.GetString("ksMorphTypeChangesSlow", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to These natural classes have been specified in the grammar area.. - /// </summary> - internal static string ksNaturalClassDesc - { - get - { - return ResourceManager.GetString("ksNaturalClassDesc", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to no. - /// </summary> - internal static string ksNo - { - get - { - return ResourceManager.GetString("ksNo", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to No checked item. - /// </summary> - internal static string ksNoChecked - { - get - { - return ResourceManager.GetString("ksNoChecked", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to No choices. - /// </summary> - internal static string ksNoChoices - { - get - { - return ResourceManager.GetString("ksNoChoices", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to There is no description available for this list item.. - /// </summary> - internal static string ksNoDesc - { - get - { - return ResourceManager.GetString("ksNoDesc", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Non-blanks. - /// </summary> - internal static string ksNonBlanks - { - get - { - return ResourceManager.GetString("ksNonBlanks", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to (none). - /// </summary> - internal static string ksNone - { - get - { - return ResourceManager.GetString("ksNone", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to None of.... - /// </summary> - internal static string ksNoneOf_ - { - get - { - return ResourceManager.GetString("ksNoneOf_", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Note. - /// </summary> - internal static string ksNote - { - get - { - return ResourceManager.GetString("ksNote", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to <Not Sure>. - /// </summary> - internal static string ksNotSure - { - get - { - return ResourceManager.GetString("ksNotSure", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Not {0}. - /// </summary> - internal static string ksNotX - { - get - { - return ResourceManager.GetString("ksNotX", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Only.... - /// </summary> - internal static string ksOnly_ - { - get - { - return ResourceManager.GetString("ksOnly_", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Only {0}. - /// </summary> - internal static string ksOnlyX - { - get - { - return ResourceManager.GetString("ksOnlyX", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Preview. - /// </summary> - internal static string ksPreview - { - get - { - return ResourceManager.GetString("ksPreview", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Populate a field by applying a complex process to another field. - /// </summary> - internal static string ksProcessDesc - { - get - { - return ResourceManager.GetString("ksProcessDesc", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Publish In. - /// </summary> - internal static string ksPublishIn - { - get - { - return ResourceManager.GetString("ksPublishIn", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to ???. - /// </summary> - internal static string ksQuestionMarks - { - get - { - return ResourceManager.GetString("ksQuestionMarks", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to {0}...{1}. - /// </summary> - internal static string ksRangeXY - { - get - { - return ResourceManager.GetString("ksRangeXY", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Redo Bulk Delete. - /// </summary> - internal static string ksRedoBulkDelete - { - get - { - return ResourceManager.GetString("ksRedoBulkDelete", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Redo Bulk Edit. - /// </summary> - internal static string ksRedoBulkEdit - { - get - { - return ResourceManager.GetString("ksRedoBulkEdit", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Redo Select All. - /// </summary> - internal static string ksRedoCheckAll - { - get - { - return ResourceManager.GetString("ksRedoCheckAll", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Redo Click Copy. - /// </summary> - internal static string ksRedoClickCopy - { - get - { - return ResourceManager.GetString("ksRedoClickCopy", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Redo Delete Record. - /// </summary> - internal static string ksRedoDeleteRecord - { - get - { - return ResourceManager.GetString("ksRedoDeleteRecord", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Redo New Entry ({0}). - /// </summary> - internal static string ksRedoNewEntryX - { - get - { - return ResourceManager.GetString("ksRedoNewEntryX", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Redo Toggle. - /// </summary> - internal static string ksRedoToggle - { - get - { - return ResourceManager.GetString("ksRedoToggle", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Redo Clear All. - /// </summary> - internal static string ksRedoUncheckAll - { - get - { - return ResourceManager.GetString("ksRedoUncheckAll", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Remove from existing items. - /// </summary> - internal static string ksRemoveExisting - { - get - { - return ResourceManager.GetString("ksRemoveExisting", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Replace existing items. - /// </summary> - internal static string ksReplaceExisting - { - get - { - return ResourceManager.GetString("ksReplaceExisting", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Replace: {0} with {1}. - /// </summary> - internal static string ksReplaceXWithY - { - get - { - return ResourceManager.GetString("ksReplaceXWithY", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Restrict.... - /// </summary> - internal static string ksRestrict_ - { - get - { - return ResourceManager.GetString("ksRestrict_", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to row. - /// </summary> - internal static string ksRow - { - get - { - return ResourceManager.GetString("ksRow", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Rows. - /// </summary> - internal static string ksRows - { - get - { - return ResourceManager.GetString("ksRows", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Select a Process. - /// </summary> - internal static string ksSelectProcess - { - get - { - return ResourceManager.GetString("ksSelectProcess", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Short Description. - /// </summary> - internal static string ksShortDesc - { - get - { - return ResourceManager.GetString("ksShortDesc", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Show All. - /// </summary> - internal static string ksShowAll - { - get - { - return ResourceManager.GetString("ksShowAll", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Show As Headword In. - /// </summary> - internal static string ksShowAsHeadwordIn - { - get - { - return ResourceManager.GetString("ksShowAsHeadwordIn", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Show Entry in Lexicon. - /// </summary> - internal static string ksShowEntryInLexicon - { - get - { - return ResourceManager.GetString("ksShowEntryInLexicon", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Sorry...that bulk edit function is not implemented yet. - /// </summary> - internal static string ksSorryNoEdit - { - get - { - return ResourceManager.GetString("ksSorryNoEdit", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Sorry...that preview is not implemented yet. - /// </summary> - internal static string ksSorryNoPreview - { - get - { - return ResourceManager.GetString("ksSorryNoPreview", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Spelling Errors. - /// </summary> - internal static string ksSpellingErrors - { - get - { - return ResourceManager.GetString("ksSpellingErrors", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Source and destination columns should be different. - /// </summary> - internal static string ksSrcDstMustDiffer - { - get - { - return ResourceManager.GetString("ksSrcDstMustDiffer", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to stems. - /// </summary> - internal static string ksStems - { - get - { - return ResourceManager.GetString("ksStems", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Suggest. - /// </summary> - internal static string ksSuggestButtonText - { - get - { - return ResourceManager.GetString("ksSuggestButtonText", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Suggest will replace the normal Preview; Apply will then add any suggestions to any currently saved domains.. - /// </summary> - internal static string ksSuggestButtonToolTip - { - get - { - return ResourceManager.GetString("ksSuggestButtonToolTip", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Select all or clear all checkmark boxes. - /// </summary> - internal static string ksTipCheck - { - get - { - return ResourceManager.GetString("ksTipCheck", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Configure which columns to display. - /// </summary> - internal static string ksTipConfig - { - get - { - return ResourceManager.GetString("ksTipConfig", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Title. - /// </summary> - internal static string ksTitle - { - get - { - return ResourceManager.GetString("ksTitle", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Toggle. - /// </summary> - internal static string ksToggle - { - get - { - return ResourceManager.GetString("ksToggle", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Clear All. - /// </summary> - internal static string ksUncheckAll - { - get - { - return ResourceManager.GetString("ksUncheckAll", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Undo Bulk Delete. - /// </summary> - internal static string ksUndoBulkDelete - { - get - { - return ResourceManager.GetString("ksUndoBulkDelete", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Undo Bulk Edit. - /// </summary> - internal static string ksUndoBulkEdit - { - get - { - return ResourceManager.GetString("ksUndoBulkEdit", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Undo Select All. - /// </summary> - internal static string ksUndoCheckAll - { - get - { - return ResourceManager.GetString("ksUndoCheckAll", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Undo Click Copy. - /// </summary> - internal static string ksUndoClickCopy - { - get - { - return ResourceManager.GetString("ksUndoClickCopy", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Undo Delete Record. - /// </summary> - internal static string ksUndoDeleteRecord - { - get - { - return ResourceManager.GetString("ksUndoDeleteRecord", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Undo New Entry ({0}). - /// </summary> - internal static string ksUndoNewEntryX - { - get - { - return ResourceManager.GetString("ksUndoNewEntryX", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Undo typing in the new row. - /// </summary> - internal static string ksUndoNewRowData - { - get - { - return ResourceManager.GetString("ksUndoNewRowData", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Undo Toggle. - /// </summary> - internal static string ksUndoToggle - { - get - { - return ResourceManager.GetString("ksUndoToggle", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Undo Clear All. - /// </summary> - internal static string ksUndoUncheckAll - { - get - { - return ResourceManager.GetString("ksUndoUncheckAll", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Unimplemented feature. - /// </summary> - internal static string ksUnimplFeature - { - get - { - return ResourceManager.GetString("ksUnimplFeature", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to UNK. - /// </summary> - internal static string ksUNK - { - get - { - return ResourceManager.GetString("ksUNK", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to vernacular. - /// </summary> - internal static string ksVernacular - { - get - { - return ResourceManager.GetString("ksVernacular", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Baseline. - /// </summary> - internal static string ksVernacularInParagraph - { - get - { - return ResourceManager.GetString("ksVernacularInParagraph", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Warning. - /// </summary> - internal static string ksWarning - { - get - { - return ResourceManager.GetString("ksWarning", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to Word. - /// </summary> - internal static string ksWord - { - get - { - return ResourceManager.GetString("ksWord", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to yes. - /// </summary> - internal static string ksYes - { - get - { - return ResourceManager.GetString("ksYes", resourceCulture); - } - } - - /// <summary> - /// Looks up a localized string similar to 0. - /// </summary> - internal static string ksZero - { - get - { - return ResourceManager.GetString("ksZero", resourceCulture); - } - } - } -} diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/XMLViewsStringsAlloGen.resx b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/XMLViewsStringsAlloGen.resx deleted file mode 100644 index da55e50014..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/XMLViewsStringsAlloGen.resx +++ /dev/null @@ -1,563 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<root> - <!-- - Microsoft ResX Schema - - Version 2.0 - - The primary goals of this format is to allow a simple XML format - that is mostly human readable. The generation and parsing of the - various data types are done through the TypeConverter classes - associated with the data types. - - Example: - - ... ado.net/XML headers & schema ... - <resheader name="resmimetype">text/microsoft-resx</resheader> - <resheader name="version">2.0</resheader> - <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> - <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> - <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> - <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> - <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> - <value>[base64 mime encoded serialized .NET Framework object]</value> - </data> - <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> - <comment>This is a comment</comment> - </data> - - There are any number of "resheader" rows that contain simple - name/value pairs. - - Each data row contains a name, and value. The row also contains a - type or mimetype. Type corresponds to a .NET class that support - text/value conversion through the TypeConverter architecture. - Classes that don't support this are serialized and stored with the - mimetype set. - - The mimetype is used for serialized objects, and tells the - ResXResourceReader how to depersist the object. This is currently not - extensible. For a given mimetype the value must be set accordingly: - - Note - application/x-microsoft.net.object.binary.base64 is the format - that the ResXResourceWriter will generate, however the reader can - read any of the formats listed below. - - mimetype: application/x-microsoft.net.object.binary.base64 - value : The object must be serialized with - : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.soap.base64 - value : The object must be serialized with - : System.Runtime.Serialization.Formatters.Soap.SoapFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.bytearray.base64 - value : The object must be serialized into a byte array - : using a System.ComponentModel.TypeConverter - : and then encoded with base64 encoding. - --> - <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> - <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> - <xsd:element name="root" msdata:IsDataSet="true"> - <xsd:complexType> - <xsd:choice maxOccurs="unbounded"> - <xsd:element name="metadata"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" /> - </xsd:sequence> - <xsd:attribute name="name" use="required" type="xsd:string" /> - <xsd:attribute name="type" type="xsd:string" /> - <xsd:attribute name="mimetype" type="xsd:string" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="assembly"> - <xsd:complexType> - <xsd:attribute name="alias" type="xsd:string" /> - <xsd:attribute name="name" type="xsd:string" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="data"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> - <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> - <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="resheader"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" /> - </xsd:complexType> - </xsd:element> - </xsd:choice> - </xsd:complexType> - </xsd:element> - </xsd:schema> - <resheader name="resmimetype"> - <value>text/microsoft-resx</value> - </resheader> - <resheader name="version"> - <value>2.0</value> - </resheader> - <resheader name="reader"> - <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> - <resheader name="writer"> - <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> - <data name="ksAddToExisting" xml:space="preserve"> - <value>Add to existing items</value> - </data> - <data name="ksAffixes" xml:space="preserve"> - <value>affixes</value> - </data> - <data name="ksAllAnal" xml:space="preserve"> - <value>All Analysis</value> - </data> - <data name="ksAllAnalVern" xml:space="preserve"> - <value>All Analysis and Vernacular</value> - </data> - <data name="ksAllChecked" xml:space="preserve"> - <value>All selected items</value> - </data> - <data name="ksAllOf_" xml:space="preserve"> - <value>All of...</value> - </data> - <data name="ksAllPron" xml:space="preserve"> - <value>All Pronunciation</value> - </data> - <data name="ksAllVern" xml:space="preserve"> - <value>All Vernacular</value> - </data> - <data name="ksAllVernAnal" xml:space="preserve"> - <value>All Vernacular and Analysis</value> - </data> - <data name="ksAnyChecked" xml:space="preserve"> - <value>Any selected item</value> - </data> - <data name="ksAnyOf_" xml:space="preserve"> - <value>Any of...</value> - </data> - <data name="ksApply" xml:space="preserve"> - <value>Apply</value> - <comment>label on a button</comment> - </data> - <data name="ksBarElementFailed" xml:space="preserve"> - <value>Failed to create bulk edit bar element</value> - </data> - <data name="ksBestAnal" xml:space="preserve"> - <value>Best Analysis</value> - </data> - <data name="ksBestAnalVern" xml:space="preserve"> - <value>Best Analysis or Vernacular</value> - </data> - <data name="ksBestVern" xml:space="preserve"> - <value>Best Vernacular</value> - </data> - <data name="ksBestVernAnal" xml:space="preserve"> - <value>Best Vernacular or Analysis</value> - </data> - <data name="ksBlanks" xml:space="preserve"> - <value>Blanks</value> - </data> - <data name="ksBrowseNeedsAColumn" xml:space="preserve"> - <value>A browse view must have at least one column.</value> - </data> - <data name="ksBulkCopyDesc" xml:space="preserve"> - <value>Copy the contents of the source field to the target field</value> - </data> - <data name="ksBulkReplaceDesc" xml:space="preserve"> - <value>Change each occurrence of a pattern to the replacement text</value> - </data> - <data name="ksCannotAccessEC" xml:space="preserve"> - <value>{0} -Cannot access encoding converters, possibly due to insufficient access privilege. -You may want to consult a system administrator.</value> - </data> - <data name="ksCannotRemoveColumn" xml:space="preserve"> - <value>Cannot remove column</value> - </data> - <data name="ksChangingMorphType" xml:space="preserve"> - <value>Changing fundamental type</value> - </data> - <data name="ksCheckAll" xml:space="preserve"> - <value>Select All</value> - </data> - <data name="ksChoose_" xml:space="preserve"> - <value>Choose...</value> - </data> - <data name="ksChooseClearTarget" xml:space="preserve"> - <value>Please choose a target column to clear</value> - </data> - <data name="ksChooseClickTarget" xml:space="preserve"> - <value>Please select a target column for click copy</value> - </data> - <data name="ksChooseDestination" xml:space="preserve"> - <value>Please choose a destination column</value> - </data> - <data name="ksChooseEditTarget" xml:space="preserve"> - <value>Please choose a target column to edit</value> - </data> - <data name="ksChooseNaturalClass" xml:space="preserve"> - <value>Choose A Natural Class</value> - </data> - <data name="ksChooseSource" xml:space="preserve"> - <value>Please choose a source column</value> - </data> - <data name="ksChooseTransducer" xml:space="preserve"> - <value>Please choose or set up a Process</value> - </data> - <data name="ksChooseX" xml:space="preserve"> - <value>Choose {0}</value> - </data> - <data name="ksClear" xml:space="preserve"> - <value>Clear</value> - <comment>label on a button</comment> - </data> - <data name="ksClickCopyDesc" xml:space="preserve"> - <value>Click on any word to copy it to the target field</value> - </data> - <data name="ksConfirmDeleteMulti" xml:space="preserve"> - <value>Confirm multiple deletions</value> - </data> - <data name="ksConfirmDeleteMultiMsg" xml:space="preserve"> - <value>This will delete ALL the selected items. - -Do you want to proceed?</value> - </data> - <data name="ksCtrlClickForSubItems" xml:space="preserve"> - <value>Ctrl-click a check box to include all subitems</value> - </data> - <data name="ksDefaultAnal" xml:space="preserve"> - <value>Default Analysis</value> - </data> - <data name="ksDefaultPron" xml:space="preserve"> - <value>Default Pronunciation</value> - </data> - <data name="ksDefaultVern" xml:space="preserve"> - <value>Default Vernacular</value> - </data> - <data name="ksDelete" xml:space="preserve"> - <value>Delete</value> - </data> - <data name="ksDeleteDesc" xml:space="preserve"> - <value>Delete the checked items (rows) from the database</value> - </data> - <data name="ksDeleteDesc2" xml:space="preserve"> - <value>Delete the contents of the specified column for all selected rows</value> - </data> - <data name="ksDeletedObject" xml:space="preserve"> - <value>Deleted object detected</value> - </data> - <data name="ksDeletedObjectMsg" xml:space="preserve"> - <value>One of the objects in the list has been deleted (possibly by another user on a networked computer). Attempting to Refresh...</value> - </data> - <data name="ksDuplicateColumn" xml:space="preserve"> - <value>Duplicate column found</value> - </data> - <data name="ksDuplicateColumnMsg" xml:space="preserve"> - <value>You have configured the following fields to be displayed in two or more columns with the same writing system: - "{0}" -Change the writing system of one of these columns or remove the duplicated column.</value> - </data> - <data name="ksEditNaturalClasses" xml:space="preserve"> - <value>Edit the Natural Classes</value> - </data> - <data name="ksEmpty" xml:space="preserve"> - <value><Empty></value> - </data> - <data name="ksErrorProcessing" xml:space="preserve"> - <value>A problem occurred processing the string '{0}': {1}</value> - </data> - <data name="ksExactlyChecked" xml:space="preserve"> - <value>Exactly checked items</value> - </data> - <data name="ksFilterError" xml:space="preserve"> - <value>Error in Filter text</value> - </data> - <data name="ksFilterErrorMsg" xml:space="preserve"> - <value>Error in filter: {0}</value> - </data> - <data name="ksFilterFor_" xml:space="preserve"> - <value>Filter for...</value> - </data> - <data name="ksGreaterEqX" xml:space="preserve"> - <value>=> {0}</value> - </data> - <data name="ksGreaterX" xml:space="preserve"> - <value>> {0}</value> - </data> - <data name="ksInvalidSavedLayout" xml:space="preserve"> - <value>Language Explorer has had to revert to the default column layout. Sorry for the inconvenience.</value> - </data> - <data name="ksLessEqX" xml:space="preserve"> - <value><= {0}</value> - </data> - <data name="ksLessX" xml:space="preserve"> - <value>< {0}</value> - </data> - <data name="ksListChoiceDesc" xml:space="preserve"> - <value>Select the target field and the list choice to change it to</value> - </data> - <data name="ksMoreColumns" xml:space="preserve"> - <value>More Column Choices...</value> - </data> - <data name="ksMorphTypeChangesSlow" xml:space="preserve"> - <value>Some of the selected items are being changed from {0} to {1}. Different kinds of information are stored for affixes and stems, so such changes could lose some details you have recorded about the items. Also, the change may take a long time. If many changes are of this type, you may notice a LONG pause at about 80% complete.</value> - <comment>the two arguments are either ksAffixes and ksStems, which may be swapped</comment> - </data> - <data name="ksNaturalClassDesc" xml:space="preserve"> - <value>These natural classes have been specified in the grammar area.</value> - </data> - <data name="ksNoChecked" xml:space="preserve"> - <value>No checked item</value> - </data> - <data name="ksNoChoices" xml:space="preserve"> - <value>No choices</value> - </data> - <data name="ksNonBlanks" xml:space="preserve"> - <value>Non-blanks</value> - </data> - <data name="ksNone" xml:space="preserve"> - <value>(none)</value> - </data> - <data name="ksNoneOf_" xml:space="preserve"> - <value>None of...</value> - </data> - <data name="ksNote" xml:space="preserve"> - <value>Note</value> - </data> - <data name="ksNotSure" xml:space="preserve"> - <value><Not Sure></value> - <comment>menu item to clear current value</comment> - </data> - <data name="ksNotX" xml:space="preserve"> - <value>Not {0}</value> - </data> - <data name="ksOnly_" xml:space="preserve"> - <value>Only...</value> - </data> - <data name="ksOnlyX" xml:space="preserve"> - <value>Only {0}</value> - </data> - <data name="ksPreview" xml:space="preserve"> - <value>Preview</value> - <comment>label on a button</comment> - </data> - <data name="ksProcessDesc" xml:space="preserve"> - <value>Populate a field by applying a complex process to another field</value> - </data> - <data name="ksQuestionMarks" xml:space="preserve"> - <value>???</value> - </data> - <data name="ksRangeXY" xml:space="preserve"> - <value>{0}...{1}</value> - </data> - <data name="ksRedoBulkEdit" xml:space="preserve"> - <value>Redo Bulk Edit</value> - </data> - <data name="ksRedoClickCopy" xml:space="preserve"> - <value>Redo Click Copy</value> - </data> - <data name="ksRedoDeleteRecord" xml:space="preserve"> - <value>Redo Delete Record</value> - </data> - <data name="ksRedoNewEntryX" xml:space="preserve"> - <value>Redo New Entry ({0})</value> - </data> - <data name="ksRemoveExisting" xml:space="preserve"> - <value>Remove from existing items</value> - </data> - <data name="ksReplaceExisting" xml:space="preserve"> - <value>Replace existing items</value> - </data> - <data name="ksReplaceXWithY" xml:space="preserve"> - <value>Replace: {0} with {1}</value> - </data> - <data name="ksRestrict_" xml:space="preserve"> - <value>Restrict...</value> - </data> - <data name="ksRows" xml:space="preserve"> - <value>Rows</value> - </data> - <data name="ksShowAll" xml:space="preserve"> - <value>Show All</value> - </data> - <data name="ksSorryNoEdit" xml:space="preserve"> - <value>Sorry...that bulk edit function is not implemented yet</value> - </data> - <data name="ksSorryNoPreview" xml:space="preserve"> - <value>Sorry...that preview is not implemented yet</value> - </data> - <data name="ksSrcDstMustDiffer" xml:space="preserve"> - <value>Source and destination columns should be different</value> - </data> - <data name="ksStems" xml:space="preserve"> - <value>stems</value> - </data> - <data name="ksTipCheck" xml:space="preserve"> - <value>Select all or clear all checkmark boxes</value> - </data> - <data name="ksTipConfig" xml:space="preserve"> - <value>Configure which columns to display</value> - </data> - <data name="ksToggle" xml:space="preserve"> - <value>Toggle</value> - </data> - <data name="ksUncheckAll" xml:space="preserve"> - <value>Clear All</value> - </data> - <data name="ksUndoBulkEdit" xml:space="preserve"> - <value>Undo Bulk Edit</value> - </data> - <data name="ksUndoClickCopy" xml:space="preserve"> - <value>Undo Click Copy</value> - </data> - <data name="ksUndoDeleteRecord" xml:space="preserve"> - <value>Undo Delete Record</value> - </data> - <data name="ksUndoNewEntryX" xml:space="preserve"> - <value>Undo New Entry ({0})</value> - </data> - <data name="ksUnimplFeature" xml:space="preserve"> - <value>Unimplemented feature</value> - </data> - <data name="ksUNK" xml:space="preserve"> - <value>UNK</value> - <comment>short for Unknown</comment> - </data> - <data name="ksWord" xml:space="preserve"> - <value>Word</value> - </data> - <data name="ConfiguredExportHasBeenCancelled" xml:space="preserve"> - <value>Configured export has been cancelled.</value> - </data> - <data name="ksAnalysis" xml:space="preserve"> - <value>analysis</value> - </data> - <data name="ksVernacular" xml:space="preserve"> - <value>vernacular</value> - </data> - <data name="khtpBulkReplaceTitle" xml:space="preserve"> - <value>Bulk Replace Setup</value> - </data> - <data name="ksNo" xml:space="preserve"> - <value>no</value> - </data> - <data name="ksYes" xml:space="preserve"> - <value>yes</value> - </data> - <data name="ksVernacularInParagraph" xml:space="preserve"> - <value>Baseline</value> - <comment>Currently, only used in IText. We could think of something more generic later.</comment> - </data> - <data name="ksGreaterThanZero" xml:space="preserve"> - <value>Greater than 0</value> - </data> - <data name="ksZero" xml:space="preserve"> - <value>0</value> - </data> - <data name="ksGreaterThanOne" xml:space="preserve"> - <value>Greater than 1</value> - </data> - <data name="ksUndoNewRowData" xml:space="preserve"> - <value>Undo typing in the new row</value> - </data> - <data name="ksSpellingErrors" xml:space="preserve"> - <value>Spelling Errors</value> - <comment>Label for menu item in filter bar, selects lines containing spelling errors</comment> - </data> - <data name="ksExcludeX" xml:space="preserve"> - <value>Exclude {0}</value> - <comment>Menu item, indicates search for items that do NOT match {0}.</comment> - </data> - <data name="ksWarning" xml:space="preserve"> - <value>Warning</value> - </data> - <data name="ksCannotUndoTooManyDeleted" xml:space="preserve"> - <value>This will delete ALL the selected items -and can sometimes take a long time. -This action will not be undo-able. - -Do you want to proceed?</value> - </data> - <data name="ksSelectProcess" xml:space="preserve"> - <value>Select a Process</value> - <comment>message box title</comment> - </data> - <data name="ksRedoBulkDelete" xml:space="preserve"> - <value>Redo Bulk Delete</value> - </data> - <data name="ksUndoBulkDelete" xml:space="preserve"> - <value>Undo Bulk Delete</value> - </data> - <data name="ksNoDesc" xml:space="preserve"> - <value>There is no description available for this list item.</value> - </data> - <data name="ksShortDesc" xml:space="preserve"> - <value>Short Description</value> - </data> - <data name="ksTitle" xml:space="preserve"> - <value>Title</value> - </data> - <data name="ksLess" xml:space="preserve"> - <value>Less</value> - </data> - <data name="ksMore" xml:space="preserve"> - <value>More</value> - </data> - <data name="ksEmptyLC" xml:space="preserve"> - <value><empty></value> - </data> - <data name="ksRow" xml:space="preserve"> - <value>row</value> - <comment>Used in "delete this {0}" to make it read "delete this row" in tooltip for delete button in Collect Words view.</comment> - </data> - <data name="ksPublishIn" xml:space="preserve"> - <value>Publish In</value> - <comment>Localizers: All the "Publish x in " strings are labels for fields. The contents of the fields are one or more publication names. Thus, the whole command could be read like: "Publish Sense in" Children's Dictionary (where "Children's Dictionary" is the content of the field). Or "Publish Picture in" Webonary and Academic Dictionary (when the field contains the two publications "Webonary" and "Academic Dictionary".</comment> - </data> - <data name="ksShowAsHeadwordIn" xml:space="preserve"> - <value>Show As Headword In</value> - </data> - <data name="ksShowEntryInLexicon" xml:space="preserve"> - <value>Show Entry in Lexicon</value> - <comment>popup menu item in Collect Words view</comment> - </data> - <data name="ksRedoCheckAll" xml:space="preserve"> - <value>Redo Select All</value> - </data> - <data name="ksRedoToggle" xml:space="preserve"> - <value>Redo Toggle</value> - </data> - <data name="ksRedoUncheckAll" xml:space="preserve"> - <value>Redo Clear All</value> - </data> - <data name="ksUndoCheckAll" xml:space="preserve"> - <value>Undo Select All</value> - </data> - <data name="ksUndoToggle" xml:space="preserve"> - <value>Undo Toggle</value> - </data> - <data name="ksUndoUncheckAll" xml:space="preserve"> - <value>Undo Clear All</value> - </data> - <data name="ksSuggestButtonText" xml:space="preserve"> - <value>Suggest</value> - </data> - <data name="ksSuggestButtonToolTip" xml:space="preserve"> - <value>Suggest will replace the normal Preview; Apply will then add any suggestions to any currently saved domains.</value> - </data> -</root> \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/AlloGenUserDocumentation.pdf b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/AlloGenUserDocumentation.pdf deleted file mode 100644 index 78e4c41d67..0000000000 Binary files a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/AlloGenUserDocumentation.pdf and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/AlloGenUserDocumentation.xml b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/AlloGenUserDocumentation.xml deleted file mode 100644 index 1d20ff3b87..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/AlloGenUserDocumentation.xml +++ /dev/null @@ -1,1588 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE xlingpaper PUBLIC "-//XMLmind//DTD XLingPap//EN" -"XLingPap.dtd"> -<xlingpaper -version="2.24.0" -><styledPaper -><lingPaper -automaticallywrapinterlinears="yes" -version="2.28.0" -><frontMatter -><title -><object -type="tAlloGen" -></object -> User DocumentationH. Andrew BlackSIL Internationalandy_black@sil.org9 March, 2026Version 2.2.0 Beta

The internal structure of the operations file changed between version 1.1 and 1.2. automatically makes the changes for you. The older version is copied to a file with a “.bak” extension.

Copyright © 2023-2026 SIL InternationalIntroduction

is a tool that works as a utility in (aka ). allows you to define operations on a form in an entry to produce new in the entry of the matching form. You can use what is in the , Lexeme Form, or in the first Etymology Source form for what to match on. It is possible to use a custom field, too. defaults to using the .

works with version or higher of and is only available on 64-bit Windows computers.

Each operation defined in describes a pattern that is used to match the indicated kind of form in the database. There also is a set of actions that are to be applied to each such form. The result of the action will produce a new in that entry.

Installation

To install , obtain the installer from https://​github.​com/​sillsdev/​FLExAllomorphGenerator/​blob/​master/​Installer/​Output/​Allomorph​Generator​Dll​Setup.​exe. The installer will check to see if you have installed version 9. If not, it will abort.

We recommend that you close before running the installer.

Invoking from within

While running , use Tools menu item / Utilities.... Find the “Allomorph Generator” item, check it, and then click on the “Run Checked Utilities Now” button.

Appearance

looks something like what is shown in .

The top portion shows the file containing the allomorph generation operations. Below it are three tabs, one for editing the operations, one for running them, and one for editing the master list of replace operations. See section for information on using the tab. In one project, the tab looks like what is in .

This tab is explained in section below. In this same project, the tab looks like what is in .

This tab is explained in section below.

The “Create New File” button is used to create a new file containing a new set of operations. When saving an file, I suggest you put it in a folder under the “My FieldWorks” directory in your “Documents” folder.

The “Browse” button is used to select an operations file. files by convention have an extension of “.agf” and this is what the file browser uses.

The “Help” button is used to get this user documentation file or to show the “About” dialog box.

The “Help” button is used to get this user documentation file.

tab

The tab has a list of operations in a column on the left. When you select one of them, the rest of the tab contains the information about the selected operation. See sections for more.

You can create new operations, rearrange them, or delete them by right-clicking on one. You will then see a context menu like what is in .

Operation name and description

The top two text boxes are where you give a name and a description for the operation. These are for your benefit so use something that makes sense to you.

Pattern section

The pattern section contains three parts which define which forms will be used: the Match pattern, the morpheme types to use, and an optional category.

Match

The “Match” part uses the same dialog box that uses for filter searches. To use it, click on the “Define match” button.

Morph Types

To set which morpheme types to use in the pattern, click on the “Edit” button to the right of the box showing the currently selected morpheme types.

Category

If you need to limit the pattern to a particular category, then click on the -like chooser button to the right of the category box. Note that if you need to insert a for a , you will need to select a category that has that defined.

Actions section

The Actions section allows you to define a set of ordered replace operations to be applied to the indicated form to create the shape of the new allomorph. You can also optionally select a set of environments and/or a to be included with the new .

Replace operations

The first box in the actions section contains an ordered set of replace operations. They are ordered in the sense that the output of one is the input to the next. You can edit one by double-clicking on it or by right-clicking and choosing an appropriate option from the ensuing context menu. Example shows what this menu might look like.

When you edit a replace operation, you will see a dialog box that will look something like what is in .

There are four text boxes:

  1. A name to use for this replace operation;
  2. a description for it;
  3. what to look for (“Replace”) and
  4. what to change what matches ("To”).

There is also a set of vernacular writing systems names, each with a check box before it. Be sure to check each vernacular writing system that this replace operation should apply to.

The replace can be a portion of the content of the indicated form. That is, you do not have to try to match the entire content. There is an option to use regular expressions for what to replace and what to change it to. Simply check the “Regular expression” check box or leave it unchecked. When you edit any replace here, the changes made will also be made in the corresponding replace in the tab. That is, you do not need to make the same change here and in the tab. You only need to make the change once in either place.

Each replace operation can be applied to one or more of the currently defined vernacular writing systems. Check all that apply.

When you choose either the “Insert new before” or “Insert new after” option, a new replace operation will be inserted and you will see the “Edit Replace Operation” dialog box. Any new replace operation is automatically added to the master list of replace operations shown in the tab.

When you choose either the “Insert existing before” or “Insert existing after” option, you will see the “Replace Operations Chooser” dialog box. It will look something like what is in example .

You can choose as many replace operations as are appropriate. They will be inserted together.

When you choose either the “Move up” or “Move down” option, the currently selected replace operation will be moved up or down in the list of replace operations.

When you choose the “Delete” option, the currently selected replace operation will be removed from the list of replace operations for the current operation. will also show you a list of which other operations, if any, are using the currently selected replace operation and ask if you want to delete the currently selected replace operation from the master list of all replace operations.

Environments

If you need to have one or more environments be added to the that will be produced, click on the “Edit” button to the right of the environments box. This brings up a chooser showing all currently available environments in the project. Click on the check box before all those that you need to be added.

If you need a to be added to the , then click on the -like chooser button to the right of the box. It will show any s associated with the category chosen in the Pattern section.

Apply operations to drop-down box

In the bottom left hand corner, there is a drop-down box. You can click on the button and choose which field in an entry to use for matching and applying replace operations. There are at least three options available:

  1. Citation Form
  2. Lexeme Form
  3. Etymology Form
will use the default vernacular writing system in each case. If there is more than one etymology field, it will use the first one.

It will also show any custom fields you have at the entry level which were created with the pattern illustrated by what is in example .

In particular, the custom field must have:

  • A Location of “Entry”
  • A Type of “Single-line Text” and
  • A Writing Systems(s) of “First Vernacular Writing System.”
Save changes button

Use the “Save Changes” button to save any changes you have made to the operations file.

tab

The tab lists the same set of operations as are shown in the tab except that each one has a check box in front of it. Whichever operation is currently selected will be applied and the resulting forms will be shown in the “Preview of selected operation” portion of the tab.

In the preview portion, we try to set the various column widths automatically by the longest width in each column. This can sometimes make the view appear to “dance” a bit. Be patient and it will settle down.

Note that the preview portion only shows entries having the indicated form which currently have no allomorphs or those which have some allomorphs but the allomorph that will be generated is not already there. In the latter case, the indicated form has a yellow background.

For those which already have some allomorphs, you may want to check them to see if maybe there is a missing replace operation.

In addition, the indicated forms shown are for the default vernacular writing system. You can click on a column header to sort the rows by the content of that column. Note that it sorts by Unicode code points, not the way it might in .

Both of the items in the tab have check boxes and both have a checked check box as the column header of the first column. When you click on this checked box in the top row of the “Operations to apply” portion, you will see the menu shown in example .

When you click on this checked box in the top row of the "Preview of selected operation" portion, you will see the menu shown in example .

These work like the bulk edit check box menu does in . For operations, you choose which operations you want to be applied when you press the button. For the preview portion, it works like it does in bulk edit in : if an item is checked, a new will be produced for the entry containing that indicated form. If an item is not checked, it will be ignored (i.e., it will remain as it currently is).

Note that for the "Preview of selected operation" portion, there are three keyboard shortcuts shown. These keyboard shortcuts only work when you have overtly clicked in the “Run Operations" tab.

See section for more on what the button does.

tab

The tab contains the master list of all replace operations. It lists them in a tabular form. Like in the tab, you can click on the table column headers to sort the table by that column.

This tab has four buttons:

  1. Edit: this brings up the Edit Replace Dialog shown in example .
  2. Add new: this also brings up that dialog but it is empty so you can add a new replace operation.
  3. Delete: this allows you to delete replace operations you no longer wish to maintain. When you click on the "Delete” button, will show you a list of which operations, if any, are using the currently selected replace operation and ask if you want to delete it.
  4. Save Changes: this is the same as the “Save Changes” buttons in the other two tabs.

Alternatively, you can right-click in the table and use the context menu shown in example .

Applying operations

When you use the button, will first check to see if there are any environments or s which are not currently valid in the project and give you a message about which ones they are and which operation they are in. While not necessarily likely, it is possible that a given environment or may have been deleted in the project since you created the operation.

If there are no problematic environments or s, then will insert a new for each checked operation. When it is done, the preview portion will no longer show those indicated forms which have had a added. In addition, in , the Edit / Undo menu item will show the last operation performed. You can use this to reverse the changes it made. In fact, the Undo/Redo menus will list the operations performed in reverse order.

If the replace operations for a particular writing system results in an empty form, will use a non-breaking space to avoid the parser using a non-empty value in some other writing system for that .

Restarting

Whenever you exit and restart , it will do the following:

  1. remember its window size, location, and layout;
  2. remember which file you last chose;
  3. remember which tab you last selected;
  4. remember which operation you last selected for each tab.
Error messages

In certain situations, will issue an error message.

Table lists the errors reports along with a brief description of what the error might mean.

Error messages
ErrorMeaning
The category 'category name' was not found in the FLEx databaseThe indicated category is no longer found in the project. Try to change it to one that is now present. This can appear when setting a in an action.
  
No operations are selected, so there's nothing to doThis is shown when the button is pressed but no operations have been checked. Try checking at least one operation.
  
The environment 'environment' is no longer found. Please fix it in operation 'operation name'.The indicated environment is no longer in the project. You will need to fix it in the indicated operation.
  
The stem name 'stem name' is no longer found. Please fix it in operation 'operation name'.The indicated is no longer in the project. You will need to fix it in the indicated operation.

If you get an error message not in the list above, please report it. See section .

Known problems

The following items are known to be less than desirable with this version of :

  1. only works with version or higher of .
  2. The user interface is in English only.
  3. When you start , if is showing as full screen, you may not see the dialog. You may have to either make be in its “Restore” mode or find the dialog and move it to another screen.
  4. Whenever you upgrade your version of , you may have to re-install . In particular, the “Allomorph Generator” item under Tools menu item / Utilities... may not show.
Support

If you have any questions with or find bugs in it, please send an email to andy_black@sil.org.

The following types are provided as pre-set examples. You may well want to create your own types that refer to one or more of these. You do that by typing in the names of the types in the types attribute of your type.Add your custom types here.Stand alone versionIncluded in FLExStand aloneInFLExSIL International Paper Stylesheet0.4.58.5in11in.7in.675in1.5in1in.25in.25in1em.125inCharis SIL1210
Front Matter LayoutBody LayoutBack Matter LayoutDocument Content Layout
diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/SILInternationalPaperStylesheet.xml b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/SILInternationalPaperStylesheet.xml deleted file mode 100644 index 511d227b3f..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/SILInternationalPaperStylesheet.xml +++ /dev/null @@ -1,388 +0,0 @@ - - -SIL International Paper Stylesheet0.4.58.5in11in.7in.675in1.5in1in.25in.25in1em.125inCharis SIL1210
Front Matter LayoutBody LayoutBack Matter LayoutDocument Content Layout
diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/SILInternationalReferencesStylesheet.xml b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/SILInternationalReferencesStylesheet.xml deleted file mode 100644 index 179b3b06fc..0000000000 --- a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/SILInternationalReferencesStylesheet.xml +++ /dev/null @@ -1,1612 +0,0 @@ - - -SIL International References Style Sheet0.1.1Author LayoutsArticle in a Journal LayoutsBook LayoutsPaper in a Collection LayoutsDissertation LayoutsField Note LayoutsManuscript LayoutsPaper Presented at a Conference LayoutsPaper in a Proceedings Volume LayoutsThesis LayoutsWeb Page LayoutsLocation and/or Publisher LayoutsUrl and/or DateAccessed Layouts diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/VarGenUserDocumentation.pdf b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/VarGenUserDocumentation.pdf deleted file mode 100644 index 73416b78b5..0000000000 Binary files a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/VarGenUserDocumentation.pdf and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/AlloGenEditReplceOpsTab.png b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/AlloGenEditReplceOpsTab.png deleted file mode 100644 index f2696e3dc3..0000000000 Binary files a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/AlloGenEditReplceOpsTab.png and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/AlloGenEditTab.png b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/AlloGenEditTab.png deleted file mode 100644 index cb59204c84..0000000000 Binary files a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/AlloGenEditTab.png and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/AlloGenRunTab.png b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/AlloGenRunTab.png deleted file mode 100644 index c6d7407f8c..0000000000 Binary files a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/AlloGenRunTab.png and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/CheckBoxMenu.png b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/CheckBoxMenu.png deleted file mode 100644 index 288b312096..0000000000 Binary files a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/CheckBoxMenu.png and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/CheckBoxMenuPreview.png b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/CheckBoxMenuPreview.png deleted file mode 100644 index 601b34e5b6..0000000000 Binary files a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/CheckBoxMenuPreview.png and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/CustomFieldSettings.png b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/CustomFieldSettings.png deleted file mode 100644 index 3e74946337..0000000000 Binary files a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/CustomFieldSettings.png and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/EditReplaceOpsContextMenu.png b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/EditReplaceOpsContextMenu.png deleted file mode 100644 index c27209f5d1..0000000000 Binary files a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/EditReplaceOpsContextMenu.png and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/OperationsContextMenu.png b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/OperationsContextMenu.png deleted file mode 100644 index 1df4162141..0000000000 Binary files a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/OperationsContextMenu.png and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/ReplaceContextMenu.png b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/ReplaceContextMenu.png deleted file mode 100644 index 7fa78f35ec..0000000000 Binary files a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/ReplaceContextMenu.png and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/ReplaceDialog.png b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/ReplaceDialog.png deleted file mode 100644 index 49a232e9f3..0000000000 Binary files a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/ReplaceDialog.png and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/ReplaceOpsChooser.png b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/ReplaceOpsChooser.png deleted file mode 100644 index 2c57b6bb86..0000000000 Binary files a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/doc/resources/ReplaceOpsChooser.png and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/resources/CheckedCheckbox.bmp b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/resources/CheckedCheckbox.bmp deleted file mode 100644 index c8e7f0e278..0000000000 Binary files a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/resources/CheckedCheckbox.bmp and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/resources/LT.ico b/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/resources/LT.ico deleted file mode 100644 index 2f108fa4ea..0000000000 Binary files a/Src/Utilities/AlloVarGen/AllomorphGeneratorDll/resources/LT.ico and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/README.md b/Src/Utilities/AlloVarGen/README.md deleted file mode 100644 index eefe30619e..0000000000 --- a/Src/Utilities/AlloVarGen/README.md +++ /dev/null @@ -1,13 +0,0 @@ -# Allomorph Generator for FLEx -A tool to generate allomorphs for a FLEx project based on the citation form, the lexeme form, the etymology form, or an entry-level custom field of an entry. - -*Allomorph Generator for FLEx* is a 64-bit Windows program. It does not run on any other platform. - -See Helps\Language Explorer\Utilities\AlloGenUserDocumentation.pdf for more. - -# Variant Generator for FLEx -A tool to generate variants for a FLEx project based on the citation form, the lexeme form, the etymology form, or an entry-level custom field of an entry. - -*Variant Generator for FLEx* is a 64-bit Windows program. It does not run on any other platform. - -See Helps\Language Explorer\Utilities\VarGenUserDocumentation.pdf for more. diff --git a/Src/Utilities/AlloVarGen/ReadMe.txt b/Src/Utilities/AlloVarGen/ReadMe.txt deleted file mode 100644 index da10f7fc30..0000000000 --- a/Src/Utilities/AlloVarGen/ReadMe.txt +++ /dev/null @@ -1,2 +0,0 @@ -This folder was taken from https://github.com/sillsdev/FLExAllomorphGenerator on March 11, 2026. -See that repo to see earlier history of these files. diff --git a/Src/Utilities/AlloVarGen/VarGenService/VarGenService.csproj b/Src/Utilities/AlloVarGen/VarGenService/VarGenService.csproj deleted file mode 100644 index 184561960f..0000000000 --- a/Src/Utilities/AlloVarGen/VarGenService/VarGenService.csproj +++ /dev/null @@ -1,45 +0,0 @@ - - - - VarGenService - SIL.VariantGenerator - net48 - Library 168,169,219,414,649,1635,1702,1701 - false - false - - - DEBUG;TRACE - true - false - portable - - - TRACE - true - true - portable - - - - - - - - - - - - - - - - - - - - - Properties\CommonAssemblyInfo.cs - - - \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/VarGenService/VarGenServiceTests/VarGenServiceTests.csproj b/Src/Utilities/AlloVarGen/VarGenService/VarGenServiceTests/VarGenServiceTests.csproj deleted file mode 100644 index 50d7e5e04e..0000000000 --- a/Src/Utilities/AlloVarGen/VarGenService/VarGenServiceTests/VarGenServiceTests.csproj +++ /dev/null @@ -1,54 +0,0 @@ - - - - VarGenServiceTests - SIL.VarGenServiceTests - net48 - Library - true - 168,169,219,414,649,1635,1702,1701 - true - false - false - - - DEBUG;TRACE - true - false - portable - - - TRACE - true - true - portable - - - - - - - - - - - - - - - - - - - - - - - - - - - Properties\CommonAssemblyInfo.cs - - - \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/VarGenService/VarGenServiceTests/VariantCreatorTests.cs b/Src/Utilities/AlloVarGen/VarGenService/VarGenServiceTests/VariantCreatorTests.cs deleted file mode 100644 index 5c122c1ac7..0000000000 --- a/Src/Utilities/AlloVarGen/VarGenService/VarGenServiceTests/VariantCreatorTests.cs +++ /dev/null @@ -1,76 +0,0 @@ -// Copyright (c) 2022-2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using NUnit.Framework; -using SIL.AlloGenService; -using SIL.AlloGenServiceTests; -using SIL.LCModel; -using SIL.LCModel.Core.WritingSystems; -using SIL.LCModel.Infrastructure; -using SIL.VarGenService; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace SIL.VarGenServiceTests -{ - [TestFixture] - class VariantCreatorTests : MemoryOnlyBackendProviderTestBase //FwTestBase - { - protected VariantCreator ac; - - [SetUp] - public void Setup() - { - //ac = new VariantCreator(Cache, writingSystems); - } - - [Test] - public void AddVariantToEntryTest() - { - Assert.NotNull(Cache); - - NonUndoableUnitOfWorkHelper.DoUsingNewOrCurrentUOW( - Cache.ActionHandlerAccessor, - () => - { - ILexEntry mainEntry = Cache.ServiceLocator - .GetInstance() - .Create(); - IMoStemAllomorph form = mainEntry.Services - .GetInstance() - .Create(); - mainEntry.LexemeFormOA = form; - form.Form.set_String(Cache.DefaultVernWs, "main entry"); - Console.WriteLine("here"); - } - ); - // following gives a "not in the right state to register a change" message - // Not sure what to do; we'd have to manually create an entry with the five vernacular writing systems - //NonUndoableUnitOfWorkHelper.DoUsingNewOrCurrentUOW(Cache.ActionHandlerAccessor, () => - //{ - // ILexEntry entry = pm.SingleAllomorphs.ElementAt(96); - // Assert.NotNull(entry); - // Assert.AreEqual(0, entry.AlternateFormsOS.Count); - // Console.WriteLine("entry cf='" + entry.CitationForm.VernacularDefaultWritingSystem.Text); - // string akh = "chillinyakh"; - // string acl = "chillinyacl"; - // string akl = "chillinyakl"; - // string ach = "chillinyach"; - // string ame = "chillinyaa"; - // IMoStemAllomorph form = ac.CreateAllomorph(entry, akh, acl, akl, ach, ame); - // Assert.NotNull(form); - // Assert.AreEqual(1, entry.AlternateFormsOS.Count); - // Assert.AreEqual(akh, form.Form.get_String(wsForAkh)); - // Assert.AreEqual(acl, form.Form.get_String(wsForAcl)); - // Assert.AreEqual(akl, form.Form.get_String(wsForAkl)); - // Assert.AreEqual(ach, form.Form.get_String(wsForAch)); - // Assert.AreEqual(ame, form.Form.get_String(wsForAme)); - - //}); - } - } -} diff --git a/Src/Utilities/AlloVarGen/VarGenService/VariantCreator.cs b/Src/Utilities/AlloVarGen/VarGenService/VariantCreator.cs deleted file mode 100644 index 50c6b91abd..0000000000 --- a/Src/Utilities/AlloVarGen/VarGenService/VariantCreator.cs +++ /dev/null @@ -1,93 +0,0 @@ -// Copyright (c) 2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using SIL.AlloGenModel; -using SIL.LCModel; -using SIL.LCModel.Core.KernelInterfaces; -using SIL.LCModel.Core.Text; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace SIL.VarGenService -{ - public class VariantCreator - { - LcmCache Cache { get; set; } - List WritingSystems { get; set; } = new List(); - ILexEntry variantEntry = null; - - public VariantCreator(LcmCache cache, List writingSystems) - { - Cache = cache; - WritingSystems = writingSystems; - } - - public ILexEntryRef CreateVariant(ILexEntry entry, List forms) - { - variantEntry = Cache.ServiceLocator.GetInstance().Create(); - - IMoStemAllomorph form = variantEntry.Services - .GetInstance() - .Create(); - variantEntry.LexemeFormOA = form; - variantEntry.LexemeFormOA.MorphTypeRA = entry.LexemeFormOA.MorphTypeRA; - for (int i = 0; i < WritingSystems.Count && i < forms.Count; i++) - { - form.Form.set_String(WritingSystems[i].Handle, forms[i]); - } - ILexEntryRef entryRef = Cache.ServiceLocator - .GetInstance() - .Create(); - variantEntry.EntryRefsOS.Add(entryRef); - entryRef.ComponentLexemesRS.Add(entry); - return entryRef; - } - - public void AddVariantTypes(ILexEntryRef entryRef, List types) - { - foreach (AlloGenModel.VariantType variantType in types) - { - var varType = Cache.ServiceLocator.ObjectRepository.GetObjectOrIdWithHvoFromGuid( - new Guid(variantType.Guid) - ); - if (varType != null) - { - entryRef.VariantEntryTypesRS.Add((ILexEntryType)varType); - } - } - } - - public void SetShowMinorEntry(ILexEntryRef entryRef, bool showMinorEntry) - { - if (entryRef != null) - { - entryRef.HideMinorEntry = showMinorEntry ? 0 : 1; - } - } - - public void AddPublishEntryInItems(List pubInItems) - { - if (variantEntry == null) - { - return; - } - variantEntry.DoNotPublishInRC.Clear(); - ICmPossibilityList allPublishEntryInItems = Cache - .LangProject - .LexDbOA - .PublicationTypesOA; - foreach (ICmPossibility pubType in allPublishEntryInItems.PossibilitiesOS) - { - var item = pubInItems.FirstOrDefault(p => p.Guid == pubType.Guid.ToString()); - if (item == null) - { - variantEntry.DoNotPublishInRC.Add(pubType); - } - } - } - } -} diff --git a/Src/Utilities/AlloVarGen/VariantGeneratorDll/FlexUtility.cs b/Src/Utilities/AlloVarGen/VariantGeneratorDll/FlexUtility.cs deleted file mode 100644 index e931a9390d..0000000000 --- a/Src/Utilities/AlloVarGen/VariantGeneratorDll/FlexUtility.cs +++ /dev/null @@ -1,75 +0,0 @@ -// Copyright (c) 2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using System; -using SIL.FieldWorks.FwCoreDlgs; -using SIL.LCModel; -using XCore; - -namespace SIL.VariantGenerator -{ - class FLExUtility : IUtility - { - protected UtilityDlg m_dlg; - - #region IUtility implementation - - /// - /// Override method to return the Label property. - /// - /// - public override string ToString() - { - return Label; - } - - /// - /// Get the main label describing the utility. - /// - public string Label => "Variant Generator"; - - UtilityDlg IUtility.Dialog - { - set => m_dlg = value; - } - - void IUtility.LoadUtilities() - { - m_dlg.Utilities.Items.Add(this); - } - - void IUtility.OnSelection() - { - m_dlg.WhenDescription = "Run this when you need to generate variants."; - m_dlg.WhatDescription = - "Run this to generate variants based on the citation form, lexeme form, eytmology form, or an entry-level custom field."; - m_dlg.RedoDescription = - "You cannot use 'Undo' to cancel the effect of this utility. You would need to go back to a previously saved version of the database(i.e., make a backup of your database before running this utility so you can restore to it if the results are not what you want)."; - ; - } - - void IUtility.Process() - { - LcmCache cache = m_dlg.PropTable.GetValue("cache"); - PropertyTable propTable = m_dlg.PropTable; - Mediator mediator = m_dlg.Mediator; - try - { - var varGenForm = new VariantGenForm(cache, propTable, mediator); - varGenForm.Show(); - //m_dlg.Close(); - } - catch (Exception e) - { - // probably first time and user canceled file creation - Console.WriteLine(e.Message); - } - finally - { - m_dlg.Close(); - } - } - #endregion IUtility implementation - } -} diff --git a/Src/Utilities/AlloVarGen/VariantGeneratorDll/PublishEntryInChooser.Designer.cs b/Src/Utilities/AlloVarGen/VariantGeneratorDll/PublishEntryInChooser.Designer.cs deleted file mode 100644 index c42f2bf0c6..0000000000 --- a/Src/Utilities/AlloVarGen/VariantGeneratorDll/PublishEntryInChooser.Designer.cs +++ /dev/null @@ -1,95 +0,0 @@ -namespace SIL.VariantGenerator -{ - partial class PublishEntryInChooser - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(VariantTypesChooser)); - this.clbPublishEntryInItems = new System.Windows.Forms.CheckedListBox(); - this.btnCancel = new System.Windows.Forms.Button(); - this.btnOK = new System.Windows.Forms.Button(); - this.SuspendLayout(); - // - // clbPublishEntryInItems - // - this.clbPublishEntryInItems.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.clbPublishEntryInItems.FormattingEnabled = true; - this.clbPublishEntryInItems.Location = new System.Drawing.Point(13, 13); - this.clbPublishEntryInItems.Name = "clbEnvironments"; - this.clbPublishEntryInItems.Size = new System.Drawing.Size(760, 361); - this.clbPublishEntryInItems.Sorted = true; - this.clbPublishEntryInItems.TabIndex = 0; - // - // btnCancel - // - this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.btnCancel.Location = new System.Drawing.Point(693, 396); - this.btnCancel.Name = "btnCancel"; - this.btnCancel.Size = new System.Drawing.Size(75, 41); - this.btnCancel.TabIndex = 2; - this.btnCancel.Text = "Cancel"; - this.btnCancel.UseVisualStyleBackColor = true; - // - // btnOK - // - this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK; - this.btnOK.Location = new System.Drawing.Point(581, 396); - this.btnOK.Name = "btnOK"; - this.btnOK.Size = new System.Drawing.Size(75, 41); - this.btnOK.TabIndex = 1; - this.btnOK.Text = "OK"; - this.btnOK.UseVisualStyleBackColor = true; - this.btnOK.Click += new System.EventHandler(this.btnOK_Click); - // - // PublishEntryInChooser - // - this.AcceptButton = this.btnOK; - this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.CancelButton = this.btnCancel; - this.ClientSize = new System.Drawing.Size(800, 450); - this.Controls.Add(this.btnOK); - this.Controls.Add(this.btnCancel); - this.Controls.Add(this.clbPublishEntryInItems); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.Name = "PublishEntryInChooser"; - this.Text = "Publish Entry In Chooser"; - this.ResumeLayout(false); - - } - - #endregion - - private System.Windows.Forms.CheckedListBox clbPublishEntryInItems; - private System.Windows.Forms.Button btnCancel; - private System.Windows.Forms.Button btnOK; - } -} \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/VariantGeneratorDll/PublishEntryInChooser.cs b/Src/Utilities/AlloVarGen/VariantGeneratorDll/PublishEntryInChooser.cs deleted file mode 100644 index 9865518815..0000000000 --- a/Src/Utilities/AlloVarGen/VariantGeneratorDll/PublishEntryInChooser.cs +++ /dev/null @@ -1,96 +0,0 @@ -// Copyright (c) 2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using SIL.AlloGenModel; -using SIL.LCModel; -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; - -namespace SIL.VariantGenerator -{ - public partial class PublishEntryInChooser : Form - { - LcmCache Cache { get; set; } - public List PublishEntryInItems { get; set; } - public List SelectedPublishEntryInItems { get; set; } - - public PublishEntryInChooser(LcmCache cache) - { - Cache = cache; - PublishEntryInItems = new List(); - SelectedPublishEntryInItems = new List(); - InitializeComponent(); - clbPublishEntryInItems.CheckOnClick = true; - clbPublishEntryInItems.Sorted = true; - CreatePublishEntryInItems(); - } - - void CreatePublishEntryInItems() - { - ICmPossibilityList allPublishEntryInItems = Cache - .LangProject - .LexDbOA - .PublicationTypesOA; - foreach (ICmPossibility pubType in allPublishEntryInItems.PossibilitiesOS) - { - AlloGenModel.PublishEntryInItem item = new AlloGenModel.PublishEntryInItem(); - item.Guid = pubType.Guid.ToString(); - item.Name = pubType.ChooserNameTS.Text; - PublishEntryInItems.Add(item); - } - } - - public void setSelected(List selectedOnes) - { - SelectedPublishEntryInItems.Clear(); - SelectedPublishEntryInItems.AddRange(selectedOnes); - } - - public void FillPublishEntryInItemsListBox() - { - clbPublishEntryInItems.BeginUpdate(); - clbPublishEntryInItems.Items.Clear(); - foreach (AlloGenModel.PublishEntryInItem pubInItem in PublishEntryInItems) - { - if (!string.IsNullOrEmpty(pubInItem.Name)) - clbPublishEntryInItems.Items.Add(pubInItem); - } - for (int i = 0; i < clbPublishEntryInItems.Items.Count; i++) - { - AlloGenModel.PublishEntryInItem pubEntryInItem = - clbPublishEntryInItems.Items[i] as AlloGenModel.PublishEntryInItem; - for (int j = 0; j < SelectedPublishEntryInItems.Count; j++) - { - if (SelectedPublishEntryInItems[j].Guid == pubEntryInItem.Guid) - { - clbPublishEntryInItems.SetItemChecked(i, true); - break; - } - } - } - clbPublishEntryInItems.EndUpdate(); - } - - private void btnOK_Click(object sender, EventArgs e) - { - SelectedPublishEntryInItems.Clear(); - for (int i = 0; i < clbPublishEntryInItems.Items.Count; i++) - { - if (clbPublishEntryInItems.GetItemChecked(i)) - { - AlloGenModel.PublishEntryInItem pubEntryItem = - clbPublishEntryInItems.Items[i] as AlloGenModel.PublishEntryInItem; - SelectedPublishEntryInItems.Add(pubEntryItem); - } - } - } - } -} diff --git a/Src/Utilities/AlloVarGen/VariantGeneratorDll/PublishEntryInChooser.resx b/Src/Utilities/AlloVarGen/VariantGeneratorDll/PublishEntryInChooser.resx deleted file mode 100644 index 09446bdec6..0000000000 --- a/Src/Utilities/AlloVarGen/VariantGeneratorDll/PublishEntryInChooser.resx +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - AAABAAEAISAAAAEAIACoEQAAFgAAACgAAAAhAAAAQAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAIR1YzmMdXPelHVz3nt1YzkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAhHVrjIR1a/9KgiH/KW0h/4R1a/+EdWuEAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAHt1WjGMcWvWa3lK/zGGCP8phgD/AGkA/whpCP9jcVL/lHlzznN1 - YykAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe3Fje4RxY/9KgiH/KYoA/ymGAP8pggD/AGkA/wBp - AP8AaQD/OW0p/4x5c/d7dWtzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGtdeyGEbWvOa3lK/zGKCP8pigD/KYYA/ymC - AP8pfQD/AGkA/wBpAP8AaQD/AGkA/xBpCP9zdVr/lHlzvZRpaxgAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa117a3tlc/cxLL3/KY4A/ymK - AP8phgD/KYIA/yl9AP8peQD/AGkA/wBpAP8AaQD/AGkA/wBpAP8AaQD/zjx7/5R1e++laXtaAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGNRhBh7ZWu9Y1GM/xAM - 3v8AAO//KYoA/ymGAP8pggD/KX0A/yl5AP8hdQj/AG0Q/wBpAP8AaQD/AGkA/wBpAP8AaQD//wiE/+8c - e/+lZXv/nHF7ra1hexAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAY1V7Y3th - a/c5MLX/AAD3/wAA7/8AAOf/KYYA/ymCAP8pfQD/KXkA/xh5Of8Afa3/AJ7n/wB5Qv8AaQD/AGkA/wBp - AP8AaQD//wiE//8IhP//DHv/xkV7/5x1e+etZXtCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AABzXWutY1GE/xAQ3v8AAPf/AADv/wAA5/8AAN7/KYIA/yl9AP8heQj/CHlz/wB5vf8Aeb3/AKb//wCm - //8AipT/AGkI/wBpAP8AaQD//wiE//8IhP//CIT//wiE/+cke/+lbXv/nHF7jAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAGtVcwhzXWv/AAD3/wAA9/8AAO//AADn/wAA3v8AAN7/KX0A/xh5Mf8Afa3/AHm9/wB1 - tf8AdbX/AKb//wCm//8Apv//AJ7W/wB1Mf8AaQD//wiE//8IhP//CIT//wiE//8IhP//EHv/nHV7/6Vl - ewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNVcwhrWWv/AAD3/wAA7/8AAOf/AADe/wAA3v8AAM7/EH1z/wB9 - xv8Aeb3/AHW1/wBxrf8Aca3/AKb//wCm//8Apv//AKb//wCm//8Ahnv//wh7//8IhP//CIT//wiE//8I - hP//CIT/nHF7/61hewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNRcwhrWWv/AADv/wAA5/8AAN7/AADe/ykQ - vf+1TXP/CH29/wB5vf8AdbX/AHGt/wBtrf8Aba3/AKb//wCm//8Apv//AKb//wCm//8Apv///4Za//8g - e///CIT//wiE//8IhP//CIT/nHF7/61dewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNRcwhrWWv/AADn/wAA - 3v8AANb/ayyc/9ZZY//WWVr/CHm1/wB1tf8Aca3/AG2t/wBppf8AfbX/AK7//wCm//8Apv//AKb//wCm - //8Apv///65S//+mUv//SWv//wiE//8IhP//CIT/nHF7/61dewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNR - awhrWWP/AADe/yEQxv+1SXv/1llj/9ZZWv/OVVr/CHW1/wBxrf8Aba3/AGml/wCizv8A1///ANP//wC2 - //8Apv//AKb//wCm//8Apv///65S//+uUv//rlL//3lj//8Ye///CIT/lG1z/61hcwgAAAAAAAAAAAAA - AAAAAAAAAAAAAGtVawhrWWP/Yyil/9ZZa//WWWP/1lla/85VWv/GUVL/CHGt/wBtrf8AfbX/AMvv/wDf - //8A2///ANP//wDL//8Avv//AKr//wCm//8Apv///65S//+uUv//rlL//65S//+eWv//OHP/lG1z/61p - cwgAAAAAAAAAAAAAAAAAAAAAAAAAAHNVYwhzXVr/3l1j/9ZZY//WWVr/zlVa/8ZRUv/GTVL/CG2l/wCm - zv8A5///AOf//wDf//8A2///ANP//wCq1v8Aue7/AL7//wCu//8Apv///65S//+uUv//rlL//65S//+u - Uv//rlL/lHVz/61xcwgAAAAAAAAAAAAAAAAAAAAAAAAAAHtZWghzWVr/1llj/9ZZWv/OVVr/xlFS/8ZN - Uv/GVVr/McPW/wDz//8A7///AOf//wDf//8A2///ANP//wCXvv8AOkv/ALb1/wC2//8Ysvf//65a//+u - Uv//rlL//65S//+uUv//rlL/lHVz/6V5awgAAAAAAAAAAAAAAAAAAAAAAAAAAHtZWghzWVr/1lla/85V - Wv/GUVL/xk1S/9Zxc///opz/96Kl/3PL1v8A6///ANbt/wC+2v8Avt7/ANP//wDL//8AYn7/AISy/2PH - 5//317X//8+c//+2a///rlL//65S//+uUv//rlL/lHVz/6WCawgAAAAAAAAAAAAAAAAAAAAAAAAAAHtZ - WghzWVr/zlVa/8ZRUv/GWVr/75aM//+upf//pqX//56c//+WnP+kjZb/BCYr/wAUF/8AISf/AFpt/wDL - //8Ofp//TFhW///ftf//163//9Ol///PlP//vnv//65a//+uUv//rlL/lHVz/6V9awgAAAAAAAAAAAAA - AAAAAAAAAAAAAHNZWghrWVr/xlFS/9Z1c///tqX//7at//+upf//pqX//56c/+WGjP8eERL/CQYG/zV0 - hP8Ar8z/AENR/yxsev+Qi4H/Qjoz///ftf//163//9Ol///PlP//y5T//8eM//+yY///rlL/lHVr/6V9 - awgAAAAAAAAAAAAAAAAAAAAAAAAAAHNZWghrVVL/55aM///Htf//vq3//7at//+upf//pqX//56c/7tu - cv8KBQb/r2Zr//+WnP+lqr3/rePv/3JqX/9KQzv/XlNI///ftf//163//9Ol///LlP//y5T//8uU///L - lP//unP/jHFr/5x5awgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABzWVqMe2Vj/9aqnP//vq3//7at//+u - pf//pqX//56c/6hiZv86IiP//5ac/+eSrf+Ugu//jIr//19WW/8BAAD/s5+K///ftf//163//9Ol///L - lP//y5T//8uU/++6jP+lgnP/jHVrtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhGljQmtZ - Wuethnv//7Kl//+upf//pqX//56c/9V9gv8rGRr/xpLO/4yG//97ff//QUCR/wAAAP84M0f/9Nm9///f - tf//163//9Ol///LlP//y5T/xqKE/4xta/eUeXNrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAIxtaxBzXVqlhGVj/+eelP//pqX//56c/++arf9sYJX/Hx83/1FSnf8kJEv/AAAA/xgY - O/9bXev/hIL3/+/Lvf//163//9Oc/+++lP+cgnP/hG1rxqWCcyEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhGVjWmtZWu+9gnv/1qLO/6Sh/v+cmv//X2Cu/zAw - Xf8rLFr/QD6O/2Ri7/9jZf//Y2X//2tp///Gqs7/zqaM/4Rta/+MdWtzAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIxpaxhrXVq9e2mE/5ya - 7/+cmv//jI7//4GD+/97ef//cnD9/2tp//9jZf//Y2X//2Nl9/9zZZT/e2VjzpR5cykAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAc2Fzc2tdY/eEgr3/jI7//4SG//97ef//c3H//2Nl//9jZf//a2HO/3Nha/9zZXOEAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAHNleylrWVrOc2mM/4SC9/97ef//c3H//2tl9/9rYZz/c2Fj1nNh - hDEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa11rhGtda/9zcc7/c2nO/2td - a/9zXWuMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGth - ezlrWVrea11a3mthe0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////gAAAAP/8P/+AAAAA//gf/4AAAAD/4Af/gAAAAP/A - A/+AAAAA/wAA/4AAAAD+AAB/gAAAAPgAAB+AAAAA8AAAD4AAAADgAAAHgAAAAMAAAAOAAAAAwAAAA4AA - AADAAAADgAAAAMAAAAOAAAAAwAAAA4AAAADAAAADgAAAAMAAAAOAAAAAwAAAA4AAAADAAAADgAAAAMAA - AAOAAAAAwAAAA4AAAADAAAADgAAAAOAAAAeAAAAA8AAAD4AAAAD4AAAfgAAAAP4AAH+AAAAA/wAA/4AA - AAD/wAP/gAAAAP/gB/+AAAAA//gf/4AAAAD//D//gAAAAP////+AAAAA - - - \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/VariantGeneratorDll/VariantGenForm.cs b/Src/Utilities/AlloVarGen/VariantGeneratorDll/VariantGenForm.cs deleted file mode 100644 index c0ea516d2c..0000000000 --- a/Src/Utilities/AlloVarGen/VariantGeneratorDll/VariantGenForm.cs +++ /dev/null @@ -1,438 +0,0 @@ -// Copyright (c) 2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using Microsoft.Win32; -using SIL.AlloGenModel; -using SIL.AlloGenService; -using SIL.AllomorphGenerator; -using SIL.FieldWorks.Common.FwUtils; -using SIL.LCModel; -using SIL.LCModel.Infrastructure; -using SIL.VarGenService; -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.IO; -using System.Linq; -using System.Reflection; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; -using XCore; - -namespace SIL.VariantGenerator -{ - public partial class VariantGenForm : AlloGenFormBase - { - Button btnVariantTypes; - ListBox lBoxVariantTypes; - Label lbVariantTypes; - CheckBox cbShowMinorEntry; - Button btnPublishEntryIn; - ListBox lBoxPublishEntryIn; - Label lbPublishEntryIn; - VariantCreator variantCreator; - - protected new const string OperationsFilePrompt = - "Variant Generator Operations File (*.vgf)|*.vgf|" + "All Files (*.*)|*.*"; - const string RegKey = "Software\\SIL\\VariantGenerator"; - - public VariantGenForm(LcmCache cache, PropertyTable propTable, Mediator mediator) - { - Cache = cache; - PropTable = propTable; - Mediator = mediator; - FLExCustomFieldsObtainer obtainer = new FLExCustomFieldsObtainer(cache); - customFields = obtainer.CustomFields; - VarGenInitForm(); - } - - public VariantGenForm() - { - VarGenInitForm(); - } - - protected void VarGenInitForm() - { - base.InitializeComponent(); - if (plActions != null) - { - RemoveEnvironmentsAndStemName(); - AdjustHeightOfReplaceOpsBox(); - InitializeVariantTypesControls(); - InitializeShowInMinorEntryControls(); - InitializePublishEntryInControls(); - SetBackColor(); - this.Text = "Variant Generator"; - } - // Create an instance of a ListView column sorter and assign it - // to the ListView control. - lvwColumnSorter = new ListViewColumnSorter(); - lvPreview.ListViewItemSorter = lvwColumnSorter; - lvwEditReplaceOpsColumnSorter = new ListViewColumnSorter(); - lvEditReplaceOps.ListViewItemSorter = lvwEditReplaceOpsColumnSorter; - this.FormClosing += new System.Windows.Forms.FormClosingEventHandler( - this.OnFormClosing - ); - RememberFormState(RegKey); - Provider = new XmlBackEndProvider(); - Migrator = new DatabaseMigrator(); - LoadMigrateGetOperations(); - FillOperationsListBox(); - FillApplyToComboBox(); - SetupFontAndStyleInfo(); - SetUpOperationsCheckedListBox(); - SetUpPreviewCheckedListBox(); - FillApplyOperationsListView(); - SetUpEditReplaceOpsListView(); - FillReplaceOpsListView(); - BuildReplaceContextMenu(); - BuildEditReplaceOpContextMenu(); - BuildOperationsCheckBoxContextMenu(); - BuildPreviewCheckBoxContextMenu(); - lBoxMorphTypes.ClearSelected(); - lBoxEnvironments.ClearSelected(); - RememberTabSelection(); - MarkAsChanged(false); - variantCreator = new VariantCreator(Cache, WritingSystems); - } - - protected void AdjustHeightOfReplaceOpsBox() - { - this.lBoxReplaceOps.Height -= 20; - } - - protected void InitializeVariantTypesControls() - { - btnVariantTypes = new Button(); - lBoxVariantTypes = new ListBox(); - lbVariantTypes = new Label(); - plActions.Controls.Add(btnVariantTypes); - plActions.Controls.Add(lBoxVariantTypes); - plActions.Controls.Add(lbVariantTypes); - // - // lbVariantTypes - // - lbVariantTypes.AutoSize = true; - lbVariantTypes.Location = new Point(83, 83); // was 119 - lbVariantTypes.Margin = new Padding(2, 0, 2, 0); - lbVariantTypes.Name = "lblbVariantTypes"; - lbVariantTypes.Size = new Size(71, 13); - lbVariantTypes.TabIndex = 3; - lbVariantTypes.Text = "Variant Types"; - // - // lBoxVariantTypes - // - lBoxVariantTypes.Enabled = false; - lBoxVariantTypes.FormattingEnabled = true; - lBoxVariantTypes.Location = new Point(177, 83); - lBoxVariantTypes.Margin = new Padding(2, 2, 2, 2); - lBoxVariantTypes.Name = "lBoxVariantTypes"; - lBoxVariantTypes.Size = new Size(207, 62); - lBoxVariantTypes.TabIndex = 4; - lBoxVariantTypes.BringToFront(); - // - // btnVariantTypes - // - btnVariantTypes.Location = new Point(399, 83); - btnVariantTypes.Margin = new Padding(2, 2, 2, 2); - btnVariantTypes.Name = "btnVariantTypes"; - btnVariantTypes.Size = new Size(33, 20); - btnVariantTypes.TabIndex = 5; - btnVariantTypes.Text = "Ed&it"; - btnVariantTypes.UseVisualStyleBackColor = true; - btnVariantTypes.BringToFront(); - btnVariantTypes.Click += new System.EventHandler(this.btnVariantTypes_Click); - } - - private void InitializeShowInMinorEntryControls() - { - cbShowMinorEntry = new CheckBox(); - plActions.Controls.Add(cbShowMinorEntry); - // - // cbShowInMinorEntry - // - cbShowMinorEntry.AutoSize = true; - cbShowMinorEntry.Location = new Point(81, 148); - cbShowMinorEntry.Name = "cbShowInMinorEntry"; - cbShowMinorEntry.Margin = new Padding(2, 0, 2, 0); - cbShowMinorEntry.Size = new System.Drawing.Size(60, 13); - cbShowMinorEntry.TabIndex = 6; - cbShowMinorEntry.Text = "Show minor entry"; - cbShowMinorEntry.Checked = true; - cbShowMinorEntry.Click += new EventHandler(this.cbShowMinorEntry_Click); - } - - private void InitializePublishEntryInControls() - { - btnPublishEntryIn = new Button(); - lBoxPublishEntryIn = new ListBox(); - lbPublishEntryIn = new Label(); - plActions.Controls.Add(btnPublishEntryIn); - plActions.Controls.Add(lBoxPublishEntryIn); - plActions.Controls.Add(lbPublishEntryIn); - // - // lbPublishEntryIn - // - lbPublishEntryIn.AutoSize = true; - lbPublishEntryIn.Location = new Point(83, 190); - lbPublishEntryIn.Margin = new Padding(2, 0, 2, 0); - lbPublishEntryIn.Name = "lblbPublishEntryIn"; - lbPublishEntryIn.Size = new Size(71, 13); - lbPublishEntryIn.TabIndex = 7; - lbPublishEntryIn.Text = "Publish Entry In"; - // - // lBoxPublishEntryIn - // - lBoxPublishEntryIn.Enabled = false; - lBoxPublishEntryIn.FormattingEnabled = true; - lBoxPublishEntryIn.Location = new Point(177, 190); - lBoxPublishEntryIn.Margin = new Padding(2, 2, 2, 2); - lBoxPublishEntryIn.Name = "lBoxPublishEntryIn"; - lBoxPublishEntryIn.Size = new Size(207, 62); - lBoxPublishEntryIn.TabIndex = 8; - lBoxPublishEntryIn.BringToFront(); - // - // btnPublishEntryIn - // - btnPublishEntryIn.Location = new Point(399, 190); - btnPublishEntryIn.Margin = new Padding(2, 2, 2, 2); - btnPublishEntryIn.Name = "btnPublishEntryIn"; - btnPublishEntryIn.Size = new Size(33, 20); - btnPublishEntryIn.TabIndex = 9; - btnPublishEntryIn.Text = "Ed&it"; - btnPublishEntryIn.UseVisualStyleBackColor = true; - btnPublishEntryIn.BringToFront(); - btnPublishEntryIn.Click += new System.EventHandler(this.btnPublishEntryIn_Click); - } - - private void RemoveEnvironmentsAndStemName() - { - plActions.Controls.Remove(lbEnvironments); - plActions.Controls.Remove(lBoxEnvironments); - plActions.Controls.Remove(btnEnvironments); - plActions.Controls.Remove(lbStemName); - plActions.Controls.Remove(tbStemName); - plActions.Controls.Remove(btnStemName); - } - - private void SetBackColor() - { - Color tabBackColor = Color.Linen; - tabEditOps.BackColor = tabBackColor; - tabRunOps.BackColor = tabBackColor; - tabEditReplaceOps.BackColor = tabBackColor; - plPattern.BackColor = tabBackColor; - plActions.BackColor = tabBackColor; - } - - protected void btnVariantTypes_Click(object sender, EventArgs e) - { - if (Cache != null) - { - VariantTypesChooser chooser = new VariantTypesChooser(Cache); - chooser.setSelected(ActionOp.VariantTypes); - chooser.FillVariantTypesListBox(); - chooser.ShowDialog(); - if (chooser.DialogResult == DialogResult.OK) - { - ActionOp.VariantTypes.Clear(); - ActionOp.VariantTypes.AddRange(chooser.SelectedVariantTypes); - RefreshVariantTypesListBox(); - MarkAsChanged(true); - } - } - } - - protected void cbShowMinorEntry_Click(object sender, EventArgs e) - { - if (Operation != null) - { - Operation.Action.ShowMinorEntry = cbShowMinorEntry.Checked; - } - } - - protected void btnPublishEntryIn_Click(object sender, EventArgs e) - { - if (Cache != null) - { - PublishEntryInChooser chooser = new PublishEntryInChooser(Cache); - chooser.setSelected(ActionOp.PublishEntryInItems); - chooser.FillPublishEntryInItemsListBox(); - chooser.ShowDialog(); - if (chooser.DialogResult == DialogResult.OK) - { - ActionOp.PublishEntryInItems.Clear(); - ActionOp.PublishEntryInItems.AddRange(chooser.SelectedPublishEntryInItems); - RefreshPublishEntryInListBox(); - MarkAsChanged(true); - } - } - } - - protected void OnFormClosing(object sender, EventArgs e) - { - SaveAnyChanges(); - SaveRegistryInfo(RegKey); - } - - protected void RefreshVariantTypesListBox() - { - lBoxVariantTypes.Items.Clear(); - foreach (AlloGenModel.VariantType item in ActionOp.VariantTypes) - { - lBoxVariantTypes.Items.Add(item); - } - } - - protected void RefreshPublishEntryInListBox() - { - lBoxPublishEntryIn.Items.Clear(); - foreach (AlloGenModel.PublishEntryInItem item in ActionOp.PublishEntryInItems) - { - lBoxPublishEntryIn.Items.Add(item); - } - } - - protected override bool CheckForInvalidActionComponents() - { - return CheckForInvalidVariantTypes() && CheckForInvalidPublishEntryItems(); - } - - protected override string CreateUndoRedoPrompt(Operation op) - { - return " Variant Generation for '" + op.Name; - } - - protected override void ApplyOperationToEntry( - Operation op, - ILexEntry entry, - List forms - ) - { - ILexEntryRef variantEntryRef = variantCreator.CreateVariant(entry, forms); - variantCreator.SetShowMinorEntry(variantEntryRef, op.Action.ShowMinorEntry); - if (op.Action.VariantTypes.Count > 0) - { - variantCreator.AddVariantTypes(variantEntryRef, op.Action.VariantTypes); - } - if (op.Action.PublishEntryInItems.Count > 0) - { - variantCreator.AddPublishEntryInItems(op.Action.PublishEntryInItems); - } - } - - protected bool CheckForInvalidVariantTypes() - { - bool allIsGood = true; - foreach (ListViewItem lvItem in lvOperations.CheckedItems) - { - Operation op = (Operation)lvItem.Tag; - if (op.Action.VariantTypes.Count > 0) - { - foreach (AlloGenModel.VariantType varType in op.Action.VariantTypes) - { - var variantType = - Cache.ServiceLocator.ObjectRepository.GetObjectOrIdWithHvoFromGuid( - new Guid(varType.Guid) - ); - if (variantType == null) - { - ReportMissingFLExItem("The variant type '", varType.Name, op.Name); - allIsGood = false; - } - } - } - } - return allIsGood; - } - - protected bool CheckForInvalidPublishEntryItems() - { - bool allIsGood = true; - foreach (ListViewItem lvItem in lvOperations.CheckedItems) - { - Operation op = (Operation)lvItem.Tag; - if (op.Action.PublishEntryInItems.Count > 0) - { - foreach ( - AlloGenModel.PublishEntryInItem pubItem in op.Action.PublishEntryInItems - ) - { - var publication = - Cache.ServiceLocator.ObjectRepository.GetObjectOrIdWithHvoFromGuid( - new Guid(pubItem.Guid) - ); - if (publication == null) - { - ReportMissingFLExItem("The publication '", pubItem.Name, op.Name); - allIsGood = false; - } - } - } - } - return allIsGood; - } - - protected override void GetMatchingEntries( - PatternMatcher patMatcher, - out IList matchingEntries, - out IList matchingEntriesWithItems - ) - { - matchingEntries = patMatcher - .MatchPattern(patMatcher.NonVariantMainEntries, Operation.Pattern) - .ToList(); - // following gets all main entries that already have a variant that matches the replace op - matchingEntriesWithItems = patMatcher - .MatchEntriesWithVariantsPerPattern(Operation, Pattern) - .ToList(); - foreach (ILexEntry entry in matchingEntriesWithItems) - { - if (matchingEntries.Contains(entry)) - { - // it is already there, so remove it - matchingEntries.Remove(entry); - } - } - } - - protected override void lBoxOperations_SelectedIndexChanged(object sender, EventArgs e) - { - base.lBoxOperations_SelectedIndexChanged(sender, e); - if (Operation != null) - { - RefreshVariantTypesListBox(); - cbShowMinorEntry.Checked = Operation.Action.ShowMinorEntry; - RefreshPublishEntryInListBox(); - } - } - - protected override string GetOperationsFilePrompt() - { - return OperationsFilePrompt; - } - - protected override Form BuildCreateNewOpenCancelDialog() - { - var dlg = new CreateNewOpenCancelDialog(); - dlg.Text = "Variant Generator"; - return dlg; - } - - protected override string GetUserDocPath() - { - string helpsPath = Path.Combine(FwDirectoryFinder.CodeDirectory, "Helps"); - //String basedir = GetAppBaseDir(); - return Path.Combine(helpsPath, "Language Explorer", "Utilities", "VarGenUserDocumentation.pdf"); - } - - protected override Uri GetBaseUri() - { - return new Uri(Assembly.GetExecutingAssembly().CodeBase); - } - } -} diff --git a/Src/Utilities/AlloVarGen/VariantGeneratorDll/VariantGeneratorDll.csproj b/Src/Utilities/AlloVarGen/VariantGeneratorDll/VariantGeneratorDll.csproj deleted file mode 100644 index db28b819a6..0000000000 --- a/Src/Utilities/AlloVarGen/VariantGeneratorDll/VariantGeneratorDll.csproj +++ /dev/null @@ -1,48 +0,0 @@ - - - - VariantGenerator - SIL.VariantGenerator - net48 - Library 168,169,219,414,649,1635,1702,1701 - false - false - - - DEBUG;TRACE - true - false - portable - - - TRACE - true - true - portable - - - - - - - - - - - - - - - - - - - - - - - - Properties\CommonAssemblyInfo.cs - - - \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/VariantGeneratorDll/VariantTypesChooser.Designer.cs b/Src/Utilities/AlloVarGen/VariantGeneratorDll/VariantTypesChooser.Designer.cs deleted file mode 100644 index 0aacd67455..0000000000 --- a/Src/Utilities/AlloVarGen/VariantGeneratorDll/VariantTypesChooser.Designer.cs +++ /dev/null @@ -1,95 +0,0 @@ -namespace SIL.VariantGenerator -{ - partial class VariantTypesChooser - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(VariantTypesChooser)); - this.clbVariantTypes = new System.Windows.Forms.CheckedListBox(); - this.btnCancel = new System.Windows.Forms.Button(); - this.btnOK = new System.Windows.Forms.Button(); - this.SuspendLayout(); - // - // clbEnvironments - // - this.clbVariantTypes.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.clbVariantTypes.FormattingEnabled = true; - this.clbVariantTypes.Location = new System.Drawing.Point(13, 13); - this.clbVariantTypes.Name = "clbEnvironments"; - this.clbVariantTypes.Size = new System.Drawing.Size(760, 361); - this.clbVariantTypes.Sorted = true; - this.clbVariantTypes.TabIndex = 0; - // - // btnCancel - // - this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.btnCancel.Location = new System.Drawing.Point(693, 396); - this.btnCancel.Name = "btnCancel"; - this.btnCancel.Size = new System.Drawing.Size(75, 41); - this.btnCancel.TabIndex = 2; - this.btnCancel.Text = "Cancel"; - this.btnCancel.UseVisualStyleBackColor = true; - // - // btnOK - // - this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK; - this.btnOK.Location = new System.Drawing.Point(581, 396); - this.btnOK.Name = "btnOK"; - this.btnOK.Size = new System.Drawing.Size(75, 41); - this.btnOK.TabIndex = 1; - this.btnOK.Text = "OK"; - this.btnOK.UseVisualStyleBackColor = true; - this.btnOK.Click += new System.EventHandler(this.btnOK_Click); - // - // EnvironmentsChooser - // - this.AcceptButton = this.btnOK; - this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.CancelButton = this.btnCancel; - this.ClientSize = new System.Drawing.Size(800, 450); - this.Controls.Add(this.btnOK); - this.Controls.Add(this.btnCancel); - this.Controls.Add(this.clbVariantTypes); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.Name = "EnvironmentsChooser"; - this.Text = "Variant Types Chooser"; - this.ResumeLayout(false); - - } - - #endregion - - private System.Windows.Forms.CheckedListBox clbVariantTypes; - private System.Windows.Forms.Button btnCancel; - private System.Windows.Forms.Button btnOK; - } -} \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/VariantGeneratorDll/VariantTypesChooser.cs b/Src/Utilities/AlloVarGen/VariantGeneratorDll/VariantTypesChooser.cs deleted file mode 100644 index ff8cf82999..0000000000 --- a/Src/Utilities/AlloVarGen/VariantGeneratorDll/VariantTypesChooser.cs +++ /dev/null @@ -1,99 +0,0 @@ -// Copyright (c) 2023 SIL International -// This software is licensed under the LGPL, version 2.1 or later -// (http://www.gnu.org/licenses/lgpl-2.1.html) - -using SIL.AlloGenModel; -using SIL.LCModel; -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; - -namespace SIL.VariantGenerator -{ - public partial class VariantTypesChooser : Form - { - LcmCache Cache { get; set; } - public List VariantTypes { get; set; } - public List SelectedVariantTypes { get; set; } - - public VariantTypesChooser(LcmCache cache) - { - Cache = cache; - VariantTypes = new List(); - SelectedVariantTypes = new List(); - InitializeComponent(); - clbVariantTypes.CheckOnClick = true; - clbVariantTypes.Sorted = true; - CreateVariantTypes(); - } - - void CreateVariantTypes() - { - ICmPossibilityList allVariants = Cache.LangProject.LexDbOA.VariantEntryTypesOA; - CreateVariantSubtypes(allVariants.PossibilitiesOS); - } - - void CreateVariantSubtypes(ILcmOwningSequence subtypes) - { - foreach (ILexEntryType variant in subtypes) - { - AlloGenModel.VariantType varType = new AlloGenModel.VariantType(); - varType.Guid = variant.Guid.ToString(); - varType.Name = variant.ChooserNameTS.Text; - VariantTypes.Add(varType); - CreateVariantSubtypes(variant.SubPossibilitiesOS); - } - } - - public void setSelected(List selectedOnes) - { - SelectedVariantTypes.Clear(); - SelectedVariantTypes.AddRange(selectedOnes); - } - - public void FillVariantTypesListBox() - { - clbVariantTypes.BeginUpdate(); - clbVariantTypes.Items.Clear(); - foreach (AlloGenModel.VariantType varType in VariantTypes) - { - if (!string.IsNullOrEmpty(varType.Name)) - clbVariantTypes.Items.Add(varType); - } - for (int i = 0; i < clbVariantTypes.Items.Count; i++) - { - AlloGenModel.VariantType varType = - clbVariantTypes.Items[i] as AlloGenModel.VariantType; - for (int j = 0; j < SelectedVariantTypes.Count; j++) - { - if (SelectedVariantTypes[j].Guid == varType.Guid) - { - clbVariantTypes.SetItemChecked(i, true); - break; - } - } - } - clbVariantTypes.EndUpdate(); - } - - private void btnOK_Click(object sender, EventArgs e) - { - SelectedVariantTypes.Clear(); - for (int i = 0; i < clbVariantTypes.Items.Count; i++) - { - if (clbVariantTypes.GetItemChecked(i)) - { - AlloGenModel.VariantType varType = - clbVariantTypes.Items[i] as AlloGenModel.VariantType; - SelectedVariantTypes.Add(varType); - } - } - } - } -} diff --git a/Src/Utilities/AlloVarGen/VariantGeneratorDll/VariantTypesChooser.resx b/Src/Utilities/AlloVarGen/VariantGeneratorDll/VariantTypesChooser.resx deleted file mode 100644 index 09446bdec6..0000000000 --- a/Src/Utilities/AlloVarGen/VariantGeneratorDll/VariantTypesChooser.resx +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - AAABAAEAISAAAAEAIACoEQAAFgAAACgAAAAhAAAAQAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAIR1YzmMdXPelHVz3nt1YzkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAhHVrjIR1a/9KgiH/KW0h/4R1a/+EdWuEAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAHt1WjGMcWvWa3lK/zGGCP8phgD/AGkA/whpCP9jcVL/lHlzznN1 - YykAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe3Fje4RxY/9KgiH/KYoA/ymGAP8pggD/AGkA/wBp - AP8AaQD/OW0p/4x5c/d7dWtzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGtdeyGEbWvOa3lK/zGKCP8pigD/KYYA/ymC - AP8pfQD/AGkA/wBpAP8AaQD/AGkA/xBpCP9zdVr/lHlzvZRpaxgAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa117a3tlc/cxLL3/KY4A/ymK - AP8phgD/KYIA/yl9AP8peQD/AGkA/wBpAP8AaQD/AGkA/wBpAP8AaQD/zjx7/5R1e++laXtaAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGNRhBh7ZWu9Y1GM/xAM - 3v8AAO//KYoA/ymGAP8pggD/KX0A/yl5AP8hdQj/AG0Q/wBpAP8AaQD/AGkA/wBpAP8AaQD//wiE/+8c - e/+lZXv/nHF7ra1hexAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAY1V7Y3th - a/c5MLX/AAD3/wAA7/8AAOf/KYYA/ymCAP8pfQD/KXkA/xh5Of8Afa3/AJ7n/wB5Qv8AaQD/AGkA/wBp - AP8AaQD//wiE//8IhP//DHv/xkV7/5x1e+etZXtCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AABzXWutY1GE/xAQ3v8AAPf/AADv/wAA5/8AAN7/KYIA/yl9AP8heQj/CHlz/wB5vf8Aeb3/AKb//wCm - //8AipT/AGkI/wBpAP8AaQD//wiE//8IhP//CIT//wiE/+cke/+lbXv/nHF7jAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAGtVcwhzXWv/AAD3/wAA9/8AAO//AADn/wAA3v8AAN7/KX0A/xh5Mf8Afa3/AHm9/wB1 - tf8AdbX/AKb//wCm//8Apv//AJ7W/wB1Mf8AaQD//wiE//8IhP//CIT//wiE//8IhP//EHv/nHV7/6Vl - ewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNVcwhrWWv/AAD3/wAA7/8AAOf/AADe/wAA3v8AAM7/EH1z/wB9 - xv8Aeb3/AHW1/wBxrf8Aca3/AKb//wCm//8Apv//AKb//wCm//8Ahnv//wh7//8IhP//CIT//wiE//8I - hP//CIT/nHF7/61hewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNRcwhrWWv/AADv/wAA5/8AAN7/AADe/ykQ - vf+1TXP/CH29/wB5vf8AdbX/AHGt/wBtrf8Aba3/AKb//wCm//8Apv//AKb//wCm//8Apv///4Za//8g - e///CIT//wiE//8IhP//CIT/nHF7/61dewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNRcwhrWWv/AADn/wAA - 3v8AANb/ayyc/9ZZY//WWVr/CHm1/wB1tf8Aca3/AG2t/wBppf8AfbX/AK7//wCm//8Apv//AKb//wCm - //8Apv///65S//+mUv//SWv//wiE//8IhP//CIT/nHF7/61dewgAAAAAAAAAAAAAAAAAAAAAAAAAAGNR - awhrWWP/AADe/yEQxv+1SXv/1llj/9ZZWv/OVVr/CHW1/wBxrf8Aba3/AGml/wCizv8A1///ANP//wC2 - //8Apv//AKb//wCm//8Apv///65S//+uUv//rlL//3lj//8Ye///CIT/lG1z/61hcwgAAAAAAAAAAAAA - AAAAAAAAAAAAAGtVawhrWWP/Yyil/9ZZa//WWWP/1lla/85VWv/GUVL/CHGt/wBtrf8AfbX/AMvv/wDf - //8A2///ANP//wDL//8Avv//AKr//wCm//8Apv///65S//+uUv//rlL//65S//+eWv//OHP/lG1z/61p - cwgAAAAAAAAAAAAAAAAAAAAAAAAAAHNVYwhzXVr/3l1j/9ZZY//WWVr/zlVa/8ZRUv/GTVL/CG2l/wCm - zv8A5///AOf//wDf//8A2///ANP//wCq1v8Aue7/AL7//wCu//8Apv///65S//+uUv//rlL//65S//+u - Uv//rlL/lHVz/61xcwgAAAAAAAAAAAAAAAAAAAAAAAAAAHtZWghzWVr/1llj/9ZZWv/OVVr/xlFS/8ZN - Uv/GVVr/McPW/wDz//8A7///AOf//wDf//8A2///ANP//wCXvv8AOkv/ALb1/wC2//8Ysvf//65a//+u - Uv//rlL//65S//+uUv//rlL/lHVz/6V5awgAAAAAAAAAAAAAAAAAAAAAAAAAAHtZWghzWVr/1lla/85V - Wv/GUVL/xk1S/9Zxc///opz/96Kl/3PL1v8A6///ANbt/wC+2v8Avt7/ANP//wDL//8AYn7/AISy/2PH - 5//317X//8+c//+2a///rlL//65S//+uUv//rlL/lHVz/6WCawgAAAAAAAAAAAAAAAAAAAAAAAAAAHtZ - WghzWVr/zlVa/8ZRUv/GWVr/75aM//+upf//pqX//56c//+WnP+kjZb/BCYr/wAUF/8AISf/AFpt/wDL - //8Ofp//TFhW///ftf//163//9Ol///PlP//vnv//65a//+uUv//rlL/lHVz/6V9awgAAAAAAAAAAAAA - AAAAAAAAAAAAAHNZWghrWVr/xlFS/9Z1c///tqX//7at//+upf//pqX//56c/+WGjP8eERL/CQYG/zV0 - hP8Ar8z/AENR/yxsev+Qi4H/Qjoz///ftf//163//9Ol///PlP//y5T//8eM//+yY///rlL/lHVr/6V9 - awgAAAAAAAAAAAAAAAAAAAAAAAAAAHNZWghrVVL/55aM///Htf//vq3//7at//+upf//pqX//56c/7tu - cv8KBQb/r2Zr//+WnP+lqr3/rePv/3JqX/9KQzv/XlNI///ftf//163//9Ol///LlP//y5T//8uU///L - lP//unP/jHFr/5x5awgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABzWVqMe2Vj/9aqnP//vq3//7at//+u - pf//pqX//56c/6hiZv86IiP//5ac/+eSrf+Ugu//jIr//19WW/8BAAD/s5+K///ftf//163//9Ol///L - lP//y5T//8uU/++6jP+lgnP/jHVrtQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhGljQmtZ - Wuethnv//7Kl//+upf//pqX//56c/9V9gv8rGRr/xpLO/4yG//97ff//QUCR/wAAAP84M0f/9Nm9///f - tf//163//9Ol///LlP//y5T/xqKE/4xta/eUeXNrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAIxtaxBzXVqlhGVj/+eelP//pqX//56c/++arf9sYJX/Hx83/1FSnf8kJEv/AAAA/xgY - O/9bXev/hIL3/+/Lvf//163//9Oc/+++lP+cgnP/hG1rxqWCcyEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhGVjWmtZWu+9gnv/1qLO/6Sh/v+cmv//X2Cu/zAw - Xf8rLFr/QD6O/2Ri7/9jZf//Y2X//2tp///Gqs7/zqaM/4Rta/+MdWtzAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIxpaxhrXVq9e2mE/5ya - 7/+cmv//jI7//4GD+/97ef//cnD9/2tp//9jZf//Y2X//2Nl9/9zZZT/e2VjzpR5cykAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAc2Fzc2tdY/eEgr3/jI7//4SG//97ef//c3H//2Nl//9jZf//a2HO/3Nha/9zZXOEAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAHNleylrWVrOc2mM/4SC9/97ef//c3H//2tl9/9rYZz/c2Fj1nNh - hDEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa11rhGtda/9zcc7/c2nO/2td - a/9zXWuMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGth - ezlrWVrea11a3mthe0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////gAAAAP/8P/+AAAAA//gf/4AAAAD/4Af/gAAAAP/A - A/+AAAAA/wAA/4AAAAD+AAB/gAAAAPgAAB+AAAAA8AAAD4AAAADgAAAHgAAAAMAAAAOAAAAAwAAAA4AA - AADAAAADgAAAAMAAAAOAAAAAwAAAA4AAAADAAAADgAAAAMAAAAOAAAAAwAAAA4AAAADAAAADgAAAAMAA - AAOAAAAAwAAAA4AAAADAAAADgAAAAOAAAAeAAAAA8AAAD4AAAAD4AAAfgAAAAP4AAH+AAAAA/wAA/4AA - AAD/wAP/gAAAAP/gB/+AAAAA//gf/4AAAAD//D//gAAAAP////+AAAAA - - - \ No newline at end of file diff --git a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/VarGenUserDocumentation.pdf b/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/VarGenUserDocumentation.pdf deleted file mode 100644 index f6a1245108..0000000000 Binary files a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/VarGenUserDocumentation.pdf and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/VarGenUserDocumentation.xml b/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/VarGenUserDocumentation.xml deleted file mode 100644 index e1d43219bb..0000000000 --- a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/VarGenUserDocumentation.xml +++ /dev/null @@ -1,922 +0,0 @@ - - -<object -type="tVarGen" -></object -> User DocumentationH. Andrew BlackSIL Internationalandy_black@sil.org9 March, 2026Version 1.3.0 BetaCopyright © 2023-2026 SIL InternationalIntroduction

is a tool that works as a utility in (aka ). allows you to define operations on a form in an entry to produce new variants of that entry. You can use what is in the , Lexeme Form, or in the first Etymology Source form for what to match on. It is possible to use a custom field, too. defaults to using the .

works with version or higher of and is only available on 64-bit Windows computers.

Each operation defined in describes a pattern that is used to match the indicated kind of form in the database. There also is a set of actions that are to be applied to each such form. The result of the action will produce a new variant of that entry.

Installation

To install , obtain the installer from https://​github.​com/​sillsdev/​FLExAllomorphGenerator/​blob/​master/​InstallerVarGen/​Output/​VariantGeneratorDllSetup.exe. The installer will check to see if you have installed version 9. If not, it will abort.

We recommend that you close before running the installer.

Invoking from within

While running , use Tools menu item / Utilities.... Find the “Variant Generator” item, check it, and then click on the “Run Checked Utilities Now” button.

Appearance

looks something like what is shown in .

Since is based on , they share many portions. We use a different background color in the tabs for in order to provide a potentially more obvious visual distinction between the two tools.

The top portion shows the file containing the variant generation operations. Below it are three tabs, one for editing the operations, one for running them, and one for editing the master list of replace operations. See section for information on using the tab. In one project, the tab looks like what is in .

This tab is explained in section below. In this same project, the tab looks like what is in .

This tab is explained in section below.

The “Create New File” button is used to create a new file containing a new set of operations. When saving a file, I suggest you put it in a folder under the “My FieldWorks” directory in your “Documents” folder.

The “Browse” button is used to select an operations file. files by convention have an extension of “.vgf” and this is what the file browser uses.

The “Help” button is used to get this user documentation file or to show the “About” dialog box.

The “Help” button is used to get this user documentation file.

tab

The tab has a list of operations in a column on the left. When you select one of them, the rest of the tab contains the information about the selected operation. See sections for more.

You can create new operations, rearrange them, or delete them by right-clicking on one. You will then see a context menu like what is in .

Operation name and description

The top two text boxes are where you give a name and a description for the operation. These are for your benefit so use something that makes sense to you.

Pattern section

The pattern section contains three parts which define which forms will be used: the Match pattern, the morpheme types to use, and an optional category.

Match

The “Match” part uses the same dialog box that uses for filter searches. To use it, click on the “Define match” button.

Morph Types

To set which morpheme types to use in the pattern, click on the “Edit” button to the right of the box showing the currently selected morpheme types.

Category

If you need to limit the pattern to a particular category, then click on the -like chooser button to the right of the category box.

Actions section

The Actions section allows you to define a set of ordered replace operations to be applied to the indicated form to create the shape of the new variant. You can also optionally select a set of variant types and/or indicate whether the newly created variant entry should show as a minor entry.

Replace operations

The first box in the actions section contains an ordered set of replace operations. They are ordered in the sense that the output of one is the input to the next. You can edit one by double-clicking on it or by right-clicking and choosing an appropriate option from the ensuing context menu. Example shows what this menu might look like.

When you edit a replace operation, you will see a dialog box that will look something like what is in .

There are four text boxes:

  1. A name to use for this replace operation;
  2. a description for it;
  3. what to look for (“Replace”) and
  4. what to change what matches ("To”).

There is also a set of vernacular writing systems names, each with a check box before it. Be sure to check each vernacular writing system that this replace operation should apply to.

The replace can be a portion of the content of the indicated form. That is, you do not have to try to match the entire content. There is an option to use regular expressions for what to replace and what to change it to. Simply check the “Regular expression” check box or leave it unchecked. When you edit any replace here, the changes made will also be made in the corresponding replace in the tab. That is, you do not need to make the same change here and in the tab. You only need to make the change once in either place.

Each replace operation can be applied to one or more of the currently defined vernacular writing systems. Check all that apply.

When you choose either the “Insert new before” or “Insert new after” option, a new replace operation will be inserted and you will see the “Edit Replace Operation” dialog box. Any new replace operation is automatically added to the master list of replace operations shown in the tab.

When you choose either the “Insert existing before” or “Insert existing after” option, you will see the “Replace Operations Chooser” dialog box. It will look something like what is in example .

You can choose as many replace operations as are appropriate. They will be inserted together.

When you choose either the “Move up” or “Move down” option, the currently selected replace operation will be moved up or down in the list of replace operations.

When you choose the “Delete” option, the currently selected replace operation will be removed from the list of replace operations for the current operation. will also show you a list of which other operations, if any, are using the currently selected replace operation and ask if you want to delete the currently selected replace operation from the master list of all replace operations.

Variant types

If you need to have one or more variant types be associated with the variant entry that will be produced, click on the “Edit” button to the right of the variant types box. This brings up a chooser showing all currently available variant types in the project. Click on the check box before all those that you need to be used.

Unlike the variant types chooser in , this chooser flattens all the types into one list. That is, the chooser does not show a hierarchical list.

Show minor entry

When the new variant entry is created, you can make it so it will show as a minor entry or not. Check the box if you want it to show as a minor entry.

Publish entry in

By default, any newly created variant entry will have its “Publish Entry In’ field set to “Main Dictionary.” If you need this to be some other publication for these variant entries, click on the “Edit” button to the right of the publish entry in box. This brings up a chooser showing all currently available publications in the project. Click on the check box before all those that you need to be used.

Apply operations to drop-down box

In the bottom left hand corner, there is a drop-down box. You can click on the button and choose which field in an entry to use for matching and applying replace operations. There are at least three options available:

  1. Citation Form
  2. Lexeme Form
  3. Etymology Form
will use the default vernacular writing system in each case. If there is more than one etymology field, it will use the first one.

It will also show any custom fields you have at the entry level which were created with the pattern illustrated by what is in example .

In particular, the custom field must have:

  • A Location of “Entry”
  • A Type of “Single-line Text” and
  • A Writing Systems(s) of “First Vernacular Writing System.”
Save changes button

Use the “Save Changes” button to save any changes you have made to the operations file.

tab

The tab lists the same set of operations as are shown in the tab except that each one has a check box in front of it. Whichever operation is currently selected will be applied and the resulting forms will be shown in the “Preview of selected operation” portion of the tab.

In the preview portion, we try to set the various column widths automatically by the longest width in each column. This can sometimes make the view appear to “dance” a bit. Be patient and it will settle down.

These forms will appear as the Lexeme Form of the newly created variant entry.

Note that the preview portion only shows entries having the indicated form for which there is no Lexeme Form of some variant entry already in the database.

When checking to see if there already is a variant entry whose Lexeme Form matches the to-be-generated form, the set of variant types and the state of the show minor entry value are ignored.

In addition, the indicated forms shown are for the default vernacular writing system. You can click on a column header to sort the rows by the content of that column. Note that it sorts by Unicode code points, not the way it might in .

Both of the items in the tab have check boxes and both have a checked check box as the column header of the first column. When you click on this checked box in the top row, you will see the menu shown in example .

Both of the items in the tab have check boxes and both have a checked check box as the column header of the first column. When you click on this checked box in the top row of the “Operations to apply” portion, you will see the menu shown in example .

When you click on this checked box in the top row of the "Preview of selected operation" portion, you will see the menu shown in example .

These work like the bulk edit check box menu does in . For operations, you choose which operations you want to be applied when you press the button. For the preview portion, it works like it does in bulk edit in : if an item is checked, a new will be produced for the entry containing that indicated form. If an item is not checked, it will be ignored (i.e., it will remain as it currently is).

Note that for the "Preview of selected operation" portion, there are three keyboard shortcuts shown. These keyboard shortcuts only work when you have overtly clicked in the “Run Operations" tab.

See section for more on what the button does.

tab

The tab contains the master list of all replace operations. It lists them in a tabular form. Like in the tab, you can click on the table column headers to sort the table by that column.

This tab has four buttons:

  1. Edit: this brings up the Edit Replace Dialog shown in example .
  2. Add new: this also brings up that dialog but it is empty so you can add a new replace operation.
  3. Delete: this allows you to delete replace operations you no longer wish to maintain. When you click on the "Delete” button, will show you a list of which operations, if any, are using the currently selected replace operation and ask if you want to delete it.
  4. Save Changes: this is the same as the “Save Changes” buttons in the other two tabs.

Alternatively, you can right-click in the table and use the context menu shown in example .

Applying operations

When you use the button, will first check to see if there are any variant types which are not currently valid in the project and give you a message about which ones they are and which operation they are in. While not necessarily likely, it is possible that a given variant type may have been deleted in the project since you created the operation.

If there are no problematic variant types, then will insert a new variant entry for each checked operation. When it is done, the preview portion will no longer show those indicated forms which have had a variant entry added. In addition, in , the Edit / Undo menu item will show the last operation performed. You can use this to reverse the changes it made. In fact, the Undo/Redo menus will list the operations performed in reverse order.

If the replace operations for a particular writing system results in an empty form, will use a non-breaking space to avoid the parser using a non-empty value in some other writing system for that Lexeme Form.

Restarting

Whenever you exit and restart , it will do the following:

  1. remember its window size, location, and layout;
  2. remember which file you last chose;
  3. remember which tab you last selected;
  4. remember which operation you last selected for each tab.
Error messages

In certain situations, will issue an error message.

Table lists the errors reports along with a brief description of what the error might mean.

Error messages
ErrorMeaning
The category 'category name' was not found in the FLEx databaseThe indicated category is no longer found in the project. Try to change it to one that is now present.
  
No operations are selected, so there's nothing to doThis is shown when the button is pressed but no operations have been checked. Try checking at least one operation.
  
The publication 'publication' is no longer found. Please fix it in operation 'operation name'.The indicated publication is no longer in the project. You will need to fix it in the indicated operation.
  
The variant type 'variant type' is no longer found. Please fix it in operation 'operation name'.The indicated variant type is no longer in the project. You will need to fix it in the indicated operation.

If you get an error message not in the list above, please report it. See section .

Known problems

The following items are known to be less than desirable with this version of :

  1. only works with version or higher of .
  2. The user interface is in English only.
  3. When you start , if is showing as full screen, you may not see the dialog. You may have to either make be in its “Restore” mode or find the dialog and move it to another screen.
  4. Whenever you upgrade your version of , you may have to re-install . In particular, the “Variant Generator” item under Tools menu item / Utilities... may not show.
  5. Every newly added Lexeme Form will have the same Morph Type as does the Lexeme Form of the main entry. If this is incorrect, you will need to use Lexicon / Bulk Edit Entries / List Choice (with the Morph Type column showing) to fix this.
  6. If no “Publish Entry In" items are specified, newly created variant entries will default to "Main Dictionary."
Support

If you have any questions with or find bugs in it, please send an email to andy_black@sil.org.

Stand alone versionIncluded in FLExStand aloneInFLEx
diff --git a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/CheckBoxMenu.png b/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/CheckBoxMenu.png deleted file mode 100644 index 288b312096..0000000000 Binary files a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/CheckBoxMenu.png and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/CheckBoxMenuPreview.png b/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/CheckBoxMenuPreview.png deleted file mode 100644 index 601b34e5b6..0000000000 Binary files a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/CheckBoxMenuPreview.png and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/EditReplaceOpsContextMenu.png b/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/EditReplaceOpsContextMenu.png deleted file mode 100644 index c27209f5d1..0000000000 Binary files a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/EditReplaceOpsContextMenu.png and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/OperationsContextMenu.png b/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/OperationsContextMenu.png deleted file mode 100644 index 1df4162141..0000000000 Binary files a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/OperationsContextMenu.png and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/ReplaceContextMenu.png b/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/ReplaceContextMenu.png deleted file mode 100644 index 7fa78f35ec..0000000000 Binary files a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/ReplaceContextMenu.png and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/ReplaceDialog.png b/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/ReplaceDialog.png deleted file mode 100644 index 49a232e9f3..0000000000 Binary files a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/ReplaceDialog.png and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/ReplaceOpsChooser.png b/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/ReplaceOpsChooser.png deleted file mode 100644 index 2c57b6bb86..0000000000 Binary files a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/ReplaceOpsChooser.png and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/VarCustomFieldSettings.png b/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/VarCustomFieldSettings.png deleted file mode 100644 index 528424c3ac..0000000000 Binary files a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/VarCustomFieldSettings.png and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/VarGenEditReplceOpsTab.png b/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/VarGenEditReplceOpsTab.png deleted file mode 100644 index 5f8452cf94..0000000000 Binary files a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/VarGenEditReplceOpsTab.png and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/VarGenEditTab.png b/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/VarGenEditTab.png deleted file mode 100644 index f360794562..0000000000 Binary files a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/VarGenEditTab.png and /dev/null differ diff --git a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/VarGenRunTab.png b/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/VarGenRunTab.png deleted file mode 100644 index b1c4d0e54e..0000000000 Binary files a/Src/Utilities/AlloVarGen/VariantGeneratorDll/doc/resources/VarGenRunTab.png and /dev/null differ diff --git a/Src/Utilities/HCSynthByGloss/HCSynthByGloss/HCSynthByGloss.csproj b/Src/Utilities/HCSynthByGloss/HCSynthByGloss/HCSynthByGloss.csproj index 2349f6ff8b..c70e69ce39 100644 --- a/Src/Utilities/HCSynthByGloss/HCSynthByGloss/HCSynthByGloss.csproj +++ b/Src/Utilities/HCSynthByGloss/HCSynthByGloss/HCSynthByGloss.csproj @@ -38,8 +38,8 @@ - - + + Properties\CommonAssemblyInfo.cs diff --git a/Src/Utilities/HCSynthByGloss/HCSynthByGloss/HCSynthByGlossTests/HCSynthByGlossTests.cs b/Src/Utilities/HCSynthByGloss/HCSynthByGloss/HCSynthByGlossTest/HCSynthByGlossTest.cs similarity index 98% rename from Src/Utilities/HCSynthByGloss/HCSynthByGloss/HCSynthByGlossTests/HCSynthByGlossTests.cs rename to Src/Utilities/HCSynthByGloss/HCSynthByGloss/HCSynthByGlossTest/HCSynthByGlossTest.cs index 1404b62071..b87041cbbc 100644 --- a/Src/Utilities/HCSynthByGloss/HCSynthByGloss/HCSynthByGlossTests/HCSynthByGlossTests.cs +++ b/Src/Utilities/HCSynthByGloss/HCSynthByGloss/HCSynthByGlossTest/HCSynthByGlossTest.cs @@ -15,9 +15,9 @@ using HCSynthByGloss; using SIL.FieldWorks.Common.FwUtils; -namespace SIL.HCSynthByGlossTests +namespace SIL.HCSynthByGlossTest { - public class HCSynthByGlossTests + public class HCSynthByGlossTest { Morpher morpher = null; Language synLang; diff --git a/Src/Utilities/HCSynthByGloss/HCSynthByGloss/HCSynthByGlossTests/HCSynthByGlossTests.csproj b/Src/Utilities/HCSynthByGloss/HCSynthByGloss/HCSynthByGlossTest/HCSynthByGlossTest.csproj similarity index 94% rename from Src/Utilities/HCSynthByGloss/HCSynthByGloss/HCSynthByGlossTests/HCSynthByGlossTests.csproj rename to Src/Utilities/HCSynthByGloss/HCSynthByGloss/HCSynthByGlossTest/HCSynthByGlossTest.csproj index 8d0fa9bf51..e1cc89527c 100644 --- a/Src/Utilities/HCSynthByGloss/HCSynthByGloss/HCSynthByGlossTests/HCSynthByGlossTests.csproj +++ b/Src/Utilities/HCSynthByGloss/HCSynthByGloss/HCSynthByGlossTest/HCSynthByGlossTest.csproj @@ -1,8 +1,8 @@ - HCSynthByGlossTests - HCSynthByGlossTests + HCSynthByGlossTest + HCSynthByGlossTest net48 Library true diff --git a/Src/Utilities/HCSynthByGloss/HCSynthByGlossDll/HCSynthByGlossDll.csproj b/Src/Utilities/HCSynthByGloss/HCSynthByGlossDll/HCSynthByGlossDll.csproj index a7a07fdf3e..f1c2065c7e 100644 --- a/Src/Utilities/HCSynthByGloss/HCSynthByGlossDll/HCSynthByGlossDll.csproj +++ b/Src/Utilities/HCSynthByGloss/HCSynthByGlossDll/HCSynthByGlossDll.csproj @@ -37,11 +37,11 @@ - - - - - + + + + + Properties\CommonAssemblyInfo.cs diff --git a/Src/Utilities/HCSynthByGloss/HCSynthByGlossDll/HCSynthByGlossDllTests/HCSynthByGlossDllTests.cs b/Src/Utilities/HCSynthByGloss/HCSynthByGlossDll/HCSynthByGlossDllTest/HCSynthByGlossDllTest.cs similarity index 97% rename from Src/Utilities/HCSynthByGloss/HCSynthByGlossDll/HCSynthByGlossDllTests/HCSynthByGlossDllTests.cs rename to Src/Utilities/HCSynthByGloss/HCSynthByGlossDll/HCSynthByGlossDllTest/HCSynthByGlossDllTest.cs index 4330afad34..4eb8a42895 100644 --- a/Src/Utilities/HCSynthByGloss/HCSynthByGlossDll/HCSynthByGlossDllTests/HCSynthByGlossDllTests.cs +++ b/Src/Utilities/HCSynthByGloss/HCSynthByGlossDll/HCSynthByGlossDllTest/HCSynthByGlossDllTest.cs @@ -12,9 +12,9 @@ using System.Threading.Tasks; -namespace SIL.HCSynthByGlossDllTests +namespace SIL.HCSynthByGlossDllTest { - public class HCSynthByGlossDllTests + public class HCSynthByGlossDllTest { string glossFile = ""; string testDataDir = ""; diff --git a/Src/Utilities/HCSynthByGloss/HCSynthByGlossDll/HCSynthByGlossDllTests/HCSynthByGlossDllTests.csproj b/Src/Utilities/HCSynthByGloss/HCSynthByGlossDll/HCSynthByGlossDllTest/HCSynthByGlossDllTest.csproj similarity index 94% rename from Src/Utilities/HCSynthByGloss/HCSynthByGlossDll/HCSynthByGlossDllTests/HCSynthByGlossDllTests.csproj rename to Src/Utilities/HCSynthByGloss/HCSynthByGlossDll/HCSynthByGlossDllTest/HCSynthByGlossDllTest.csproj index f1c9961dfc..f3d85f4e79 100644 --- a/Src/Utilities/HCSynthByGloss/HCSynthByGlossDll/HCSynthByGlossDllTests/HCSynthByGlossDllTests.csproj +++ b/Src/Utilities/HCSynthByGloss/HCSynthByGlossDll/HCSynthByGlossDllTest/HCSynthByGlossDllTest.csproj @@ -1,8 +1,8 @@ - HCSynthByGlossDllTests - SIL.HCSynthByGlossDllTests + HCSynthByGlossDllTest + SIL.HCSynthByGlossDllTest net48 Library true diff --git a/Src/Utilities/HCSynthByGloss/HCSynthByGlossLib/HCSynthByGlossLib.csproj b/Src/Utilities/HCSynthByGloss/HCSynthByGlossLib/HCSynthByGlossLib.csproj index 6389379d04..db51d2c59e 100644 --- a/Src/Utilities/HCSynthByGloss/HCSynthByGlossLib/HCSynthByGlossLib.csproj +++ b/Src/Utilities/HCSynthByGloss/HCSynthByGlossLib/HCSynthByGlossLib.csproj @@ -38,10 +38,10 @@ - - - - + + + + Properties\CommonAssemblyInfo.cs diff --git a/Src/Utilities/pcpatrflex/DisambiguateInFLExDB/DisambiguateInFLExDBTests/ToneParsInvokerTests.cs b/Src/Utilities/pcpatrflex/DisambiguateInFLExDB/DisambiguateInFLExDBTests/ToneParsInvokerTests.cs index 898a185dee..f75d3c8bb3 100644 --- a/Src/Utilities/pcpatrflex/DisambiguateInFLExDB/DisambiguateInFLExDBTests/ToneParsInvokerTests.cs +++ b/Src/Utilities/pcpatrflex/DisambiguateInFLExDB/DisambiguateInFLExDBTests/ToneParsInvokerTests.cs @@ -192,17 +192,25 @@ private string NormalizeContent(string input) private static string NormalizeViaIndex(string input, string match, string change) { - // I tried to use regular expressions but never got them to match... - int iAppData = input.IndexOf(match); - if (iAppData != -1) + int startIndex = 0; + while (startIndex < input.Length) { - int iColon = input.IndexOf(":"); - if (iColon != -1) + int matchIndex = input.IndexOf(match, startIndex, StringComparison.Ordinal); + if (matchIndex == -1) { - iColon--; // skip the drive letter, too - string appdataPath = input.Substring(iColon, iAppData - iColon); - input = input.Replace(appdataPath, change); + break; } + + int colonIndex = input.LastIndexOf(':', matchIndex); + if (colonIndex == -1) + { + startIndex = matchIndex + match.Length; + continue; + } + + int pathPrefixStart = Math.Max(0, colonIndex - 1); + input = input.Remove(pathPrefixStart, matchIndex - pathPrefixStart).Insert(pathPrefixStart, change); + startIndex = pathPrefixStart + change.Length + match.Length; } return input; } diff --git a/Src/Utilities/pcpatrflex/PrepFLExDBDll/PrepFLExDBTests/TestData/SharedSettings/LexiconSettings.plsx b/Src/Utilities/pcpatrflex/PrepFLExDBDll/PrepFLExDBTests/TestData/SharedSettings/LexiconSettings.plsx new file mode 100644 index 0000000000..91c8676a00 --- /dev/null +++ b/Src/Utilities/pcpatrflex/PrepFLExDBDll/PrepFLExDBTests/TestData/SharedSettings/LexiconSettings.plsx @@ -0,0 +1,14 @@ + + + + + Eng + English + + + + Ori + Orizaba Nahuatl + + + \ No newline at end of file diff --git a/Src/Utilities/pcpatrflex/PrepFLExDBDll/PrepFLExDBTests/TestData/SharedSettings/johnm.ulsx b/Src/Utilities/pcpatrflex/PrepFLExDBDll/PrepFLExDBTests/TestData/SharedSettings/johnm.ulsx new file mode 100644 index 0000000000..31ea3f185c --- /dev/null +++ b/Src/Utilities/pcpatrflex/PrepFLExDBDll/PrepFLExDBTests/TestData/SharedSettings/johnm.ulsx @@ -0,0 +1,13 @@ + + + + + en-US_English + Times New Roman + + + en-US_English + Charis SIL + + + \ No newline at end of file diff --git a/Src/Utilities/pcpatrflex/PrepFLExDBDll/PrepFLExDBTests/TestData/WritingSystemStore/en.ldml b/Src/Utilities/pcpatrflex/PrepFLExDBDll/PrepFLExDBTests/TestData/WritingSystemStore/en.ldml new file mode 100644 index 0000000000..9618e0656c --- /dev/null +++ b/Src/Utilities/pcpatrflex/PrepFLExDBDll/PrepFLExDBTests/TestData/WritingSystemStore/en.ldml @@ -0,0 +1,25 @@ + + + + + + + + + + + + ['\-A-Za-z] + [\ -"\&(),./\:;?\[\]\{\}\u2013\u2018\u2019\u201C\u201D] + + + + left-to-right + + + + + + + + \ No newline at end of file diff --git a/Src/Utilities/pcpatrflex/PrepFLExDBDll/PrepFLExDBTests/TestData/WritingSystemStore/idchangelog.xml b/Src/Utilities/pcpatrflex/PrepFLExDBDll/PrepFLExDBTests/TestData/WritingSystemStore/idchangelog.xml new file mode 100644 index 0000000000..d112e1b5a9 --- /dev/null +++ b/Src/Utilities/pcpatrflex/PrepFLExDBDll/PrepFLExDBTests/TestData/WritingSystemStore/idchangelog.xml @@ -0,0 +1,18 @@ + + + + + en + + + nlv + + + \ No newline at end of file diff --git a/Src/Utilities/pcpatrflex/PrepFLExDBDll/PrepFLExDBTests/TestData/WritingSystemStore/nlv.ldml b/Src/Utilities/pcpatrflex/PrepFLExDBDll/PrepFLExDBTests/TestData/WritingSystemStore/nlv.ldml new file mode 100644 index 0000000000..87d5c374bc --- /dev/null +++ b/Src/Utilities/pcpatrflex/PrepFLExDBDll/PrepFLExDBTests/TestData/WritingSystemStore/nlv.ldml @@ -0,0 +1,22 @@ + + + + + + + + + + left-to-right + + + + standard + + + + + + + + \ No newline at end of file diff --git a/Src/views/Test/TestLayoutPage.h b/Src/views/Test/TestLayoutPage.h index 6bcea16ea1..390588d0a8 100644 --- a/Src/views/Test/TestLayoutPage.h +++ b/Src/views/Test/TestLayoutPage.h @@ -425,6 +425,27 @@ namespace TestViews unitpp::assert_true("should have found a box", pboxFound != NULL); } + void testConstructAndLayoutUpdatesCachedDpiWhenWidthIsUnchanged() + { + CreateBoringStrings(); + CreateTestStTexts(2); + SetupRootWithoutMargins(); + + const int kdxpLayoutWidth = 200; + CheckHr(m_qvg32->put_XUnitsPerInch(96)); + CheckHr(m_qvg32->put_YUnitsPerInch(96)); + m_qlay->ConstructAndLayout(m_qvg32, kdxpLayoutWidth); + unitpp::assert_eq("initial layout should cache X DPI", 96, m_qlay->DpiSrc().x); + unitpp::assert_eq("initial layout should cache Y DPI", 96, m_qlay->DpiSrc().y); + + CheckHr(m_qvg32->put_XUnitsPerInch(144)); + CheckHr(m_qvg32->put_YUnitsPerInch(144)); + m_qlay->ConstructAndLayout(m_qvg32, kdxpLayoutWidth); + + unitpp::assert_eq("same-width ConstructAndLayout should refresh X DPI", 144, m_qlay->DpiSrc().x); + unitpp::assert_eq("same-width ConstructAndLayout should refresh Y DPI", 144, m_qlay->DpiSrc().y); + } + void testFindPageBreakStuffNoMargins() { CreateBoringStrings(); diff --git a/Src/views/Test/TestViewCaches.h b/Src/views/Test/TestViewCaches.h new file mode 100644 index 0000000000..aaa0193e41 --- /dev/null +++ b/Src/views/Test/TestViewCaches.h @@ -0,0 +1,182 @@ +/*--------------------------------------------------------------------*//*:Ignore this sentence. +Copyright (c) 2026 SIL International +This software is licensed under the LGPL, version 2.1 or later +(http://www.gnu.org/licenses/lgpl-2.1.html) +-------------------------------------------------------------------------------*//*:End Ignore*/ +#ifndef TESTVIEWCACHES_H_INCLUDED +#define TESTVIEWCACHES_H_INCLUDED + +#pragma once + +#include "testViews.h" +#include "ColorStateCache.h" +#include "FontHandleCache.h" + +namespace TestViews +{ + class TestColorStateCache : public unitpp::suite + { + HDC m_hdc; + ColorStateCache m_cache; + + void testApplyOnFirstUse() + { + bool fApplied = m_cache.ApplyIfNeeded(m_hdc, RGB(1, 2, 3), RGB(4, 5, 6), TRANSPARENT); + unitpp::assert_true("First color apply should update", fApplied); + } + + void testNoApplyWhenUnchanged() + { + m_cache.ApplyIfNeeded(m_hdc, RGB(10, 20, 30), RGB(40, 50, 60), OPAQUE); + bool fApplied = m_cache.ApplyIfNeeded(m_hdc, RGB(10, 20, 30), RGB(40, 50, 60), OPAQUE); + unitpp::assert_true("Repeated identical color apply should be skipped", !fApplied); + } + + void testApplyWhenChanged() + { + m_cache.ApplyIfNeeded(m_hdc, RGB(7, 8, 9), RGB(11, 12, 13), TRANSPARENT); + bool fApplied = m_cache.ApplyIfNeeded(m_hdc, RGB(17, 18, 19), RGB(11, 12, 13), TRANSPARENT); + unitpp::assert_true("Changed foreground color should update", fApplied); + } + + void testInvalidateForcesApply() + { + m_cache.ApplyIfNeeded(m_hdc, RGB(1, 1, 1), RGB(2, 2, 2), OPAQUE); + m_cache.Invalidate(); + bool fApplied = m_cache.ApplyIfNeeded(m_hdc, RGB(1, 1, 1), RGB(2, 2, 2), OPAQUE); + unitpp::assert_true("Invalidate should force next apply", fApplied); + } + + public: + TestColorStateCache(); + virtual void Setup() + { + m_hdc = GetTestDC(); + m_cache.Invalidate(); + } + virtual void Teardown() + { + if (m_hdc) + ReleaseTestDC(m_hdc); + m_hdc = NULL; + } + }; + + class TestFontHandleCache : public unitpp::suite + { + struct DeleteTracker + { + Set m_failing; + Vector m_deleted; + }; + + FontHandleCache m_cache; + + static bool TryDeleteForTest(HFONT hfont, void * pContext) + { + DeleteTracker * pTracker = reinterpret_cast(pContext); + if (pTracker->m_failing.IsMember(hfont)) + return false; + pTracker->m_deleted.Push(hfont); + return true; + } + + LgCharRenderProps MakeProps(int n) const + { + LgCharRenderProps chrp; + memset(&chrp, 0, sizeof(chrp)); + chrp.ttvBold = (n & 1) ? kttvForceOn : kttvOff; + chrp.ttvItalic = (n & 2) ? kttvForceOn : kttvOff; + chrp.dympHeight = 10000 + (n * 10); + swprintf_s(chrp.szFaceName, L"CacheFont_%d", n); + return chrp; + } + + void FillToCacheMax(DeleteTracker & tracker) + { + for (int i = 0; i < FontHandleCache::kcFontCacheMax; ++i) + { + HFONT hfont = reinterpret_cast(static_cast(100 + i)); + LgCharRenderProps chrp = MakeProps(i); + m_cache.AddFontToCache(hfont, &chrp, NULL, TryDeleteForTest, &tracker); + } + } + + void testFindCachedFont() + { + DeleteTracker tracker; + HFONT hfont = reinterpret_cast(static_cast(200)); + LgCharRenderProps chrp = MakeProps(1); + m_cache.AddFontToCache(hfont, &chrp, NULL, TryDeleteForTest, &tracker); + HFONT hfontFound = m_cache.FindCachedFont(&chrp); + unitpp::assert_eq("FindCachedFont should return added handle", hfont, hfontFound); + } + + void testEvictionDeletesOldest() + { + DeleteTracker tracker; + FillToCacheMax(tracker); + HFONT hfontNewest = reinterpret_cast(static_cast(999)); + LgCharRenderProps chrp = MakeProps(99); + m_cache.AddFontToCache(hfontNewest, &chrp, NULL, TryDeleteForTest, &tracker); + + unitpp::assert_eq("Cache size should stay bounded", FontHandleCache::kcFontCacheMax, + m_cache.CacheCount()); + unitpp::assert_true("Oldest entry should be deleted on eviction", + tracker.m_deleted.Size() >= 1 && + tracker.m_deleted[tracker.m_deleted.Size() - 1] == reinterpret_cast(static_cast(100))); + } + + void testFailedDeleteIsDeferredAndRetried() + { + DeleteTracker tracker; + HFONT hfontVictim = reinterpret_cast(static_cast(100)); + tracker.m_failing.Insert(hfontVictim); + FillToCacheMax(tracker); + + HFONT hfontNewest = reinterpret_cast(static_cast(1000)); + LgCharRenderProps chrpNewest = MakeProps(100); + m_cache.AddFontToCache(hfontNewest, &chrpNewest, NULL, TryDeleteForTest, &tracker); + + unitpp::assert_eq("Failed delete should queue one deferred font", 1, + m_cache.DeferredDeleteCount()); + unitpp::assert_true("Victim should be in deferred queue", + m_cache.IsDeferredDeleteQueued(hfontVictim)); + + tracker.m_failing.Delete(hfontVictim); + m_cache.TryDeleteDeferredFonts(NULL, TryDeleteForTest, &tracker); + unitpp::assert_eq("Deferred queue should drain after successful retry", 0, + m_cache.DeferredDeleteCount()); + } + + void testDeferredDeleteSkipsActiveFont() + { + DeleteTracker tracker; + HFONT hfontVictim = reinterpret_cast(static_cast(100)); + tracker.m_failing.Insert(hfontVictim); + FillToCacheMax(tracker); + + HFONT hfontNewest = reinterpret_cast(static_cast(1001)); + LgCharRenderProps chrpNewest = MakeProps(101); + m_cache.AddFontToCache(hfontNewest, &chrpNewest, NULL, TryDeleteForTest, &tracker); + tracker.m_failing.Delete(hfontVictim); + + m_cache.TryDeleteDeferredFonts(hfontVictim, TryDeleteForTest, &tracker); + unitpp::assert_eq("Active deferred font should not be deleted", 1, + m_cache.DeferredDeleteCount()); + + m_cache.TryDeleteDeferredFonts(NULL, TryDeleteForTest, &tracker); + unitpp::assert_eq("Deferred queue should delete when no longer active", 0, + m_cache.DeferredDeleteCount()); + } + + public: + TestFontHandleCache(); + virtual void Setup() + { + m_cache = FontHandleCache(); + } + }; +} + +#endif // TESTVIEWCACHES_H_INCLUDED diff --git a/Src/views/Test/TestViews.vcxproj b/Src/views/Test/TestViews.vcxproj index c495982749..033270aa47 100644 --- a/Src/views/Test/TestViews.vcxproj +++ b/Src/views/Test/TestViews.vcxproj @@ -180,6 +180,8 @@ $(ViewsObjDir)VwSelection.obj; $(ViewsObjDir)VwTableBox.obj; $(ViewsObjDir)VwGraphics.obj; + $(ViewsObjDir)FontHandleCache.obj; + $(ViewsObjDir)ColorStateCache.obj; $(ViewsObjDir)VwTxtSrc.obj; $(ViewsObjDir)AfColorTable.obj; $(ViewsObjDir)AfGfx.obj; @@ -308,6 +310,8 @@ $(ViewsObjDir)VwSelection.obj; $(ViewsObjDir)VwTableBox.obj; $(ViewsObjDir)VwGraphics.obj; + $(ViewsObjDir)FontHandleCache.obj; + $(ViewsObjDir)ColorStateCache.obj; $(ViewsObjDir)VwTxtSrc.obj; $(ViewsObjDir)AfColorTable.obj; $(ViewsObjDir)AfGfx.obj; @@ -395,6 +399,7 @@ + @@ -426,11 +431,11 @@ - - diff --git a/Src/views/Test/TestVwRootBox.h b/Src/views/Test/TestVwRootBox.h index 71c16d46d5..c4ba1d66c8 100644 --- a/Src/views/Test/TestVwRootBox.h +++ b/Src/views/Test/TestVwRootBox.h @@ -1237,6 +1237,674 @@ namespace TestViews qrootb->Close(); } + void testSetRootObjectReconstructsConstructedView() + { + class SwitchingRootVc : public DummyBaseVc + { + public: + STDMETHOD(Display)(IVwEnv * pvwenv, HVO hvo, int frag) + { + switch (frag) + { + case 1: + pvwenv->OpenDiv(); + pvwenv->OpenParagraph(); + pvwenv->AddStringProp(kflidStTxtPara_Contents, NULL); + pvwenv->CloseParagraph(); + pvwenv->CloseDiv(); + break; + case 2: + pvwenv->OpenDiv(); + pvwenv->OpenParagraph(); + pvwenv->AddStringProp(kflidStTxtPara_Contents, NULL); + pvwenv->CloseParagraph(); + pvwenv->OpenParagraph(); + pvwenv->AddStringProp(kflidStTxtPara_Contents, NULL); + pvwenv->CloseParagraph(); + pvwenv->CloseDiv(); + break; + default: + return E_INVALIDARG; + } + return S_OK; + } + }; + + ITsStrFactoryPtr qtsf; + qtsf.CreateInstance(CLSID_TsStrFactory); + IVwCacheDaPtr qcda; + qcda.CreateInstance(CLSID_VwCacheDa); + qcda->putref_TsStrFactory(qtsf); + ISilDataAccessPtr qsda; + CheckHr(qcda->QueryInterface(IID_ISilDataAccess, (void **)&qsda)); + CheckHr(qsda->putref_WritingSystemFactory(g_qwsf)); + + IRenderEngineFactoryPtr qref; + qref.Attach(NewObj MockRenderEngineFactory); + + ITsStringPtr qtss; + StrUni stuPara(L"Short paragraph text"); + CheckHr(qtsf->MakeString(stuPara.Bstr(), g_wsEng, &qtss)); + HVO hvoPara = 1; + CheckHr(qcda->CacheStringProp(hvoPara, kflidStTxtPara_Contents, qtss)); + + IVwRootBoxPtr qrootb; + VwRootBox::CreateCom(NULL, IID_IVwRootBox, (void **)&qrootb); + IVwGraphicsWin32Ptr qvg32; + HDC hdc = 0; + try + { + qvg32.CreateInstance(CLSID_VwGraphicsWin32); + hdc = GetTestDC(); + CheckHr(qvg32->Initialize(hdc)); + + IVwViewConstructorPtr qvc; + qvc.Attach(NewObj SwitchingRootVc()); + CheckHr(qrootb->putref_DataAccess(qsda)); + CheckHr(qrootb->putref_RenderEngineFactory(qref)); + CheckHr(qrootb->putref_TsStrFactory(qtsf)); + CheckHr(qrootb->SetRootObject(hvoPara, qvc, 1, NULL)); + + DummyRootSitePtr qdrs; + qdrs.Attach(NewObj DummyRootSite()); + Rect rcSrc(0, 0, 96, 96); + qdrs->SetRects(rcSrc, rcSrc); + qdrs->SetGraphics(qvg32); + CheckHr(qrootb->SetSite(qdrs)); + + CheckHr(qrootb->Layout(qvg32, 300)); + int dySinglePara = 0; + CheckHr(qrootb->get_Height(&dySinglePara)); + unitpp::assert_true("single-paragraph height should be positive", dySinglePara > 0); + + ComBool fNeedsReconstruct = true; + CheckHr(qrootb->get_NeedsReconstruct(&fNeedsReconstruct)); + unitpp::assert_false("layout should clear reconstruct flag", fNeedsReconstruct); + + // This is the PATH-R1 regression: switching fragments on an already-constructed root + // must rebuild immediately even when the caller does not issue another explicit Layout(). + CheckHr(qrootb->SetRootObject(hvoPara, qvc, 2, NULL)); + + int dyTwoParas = 0; + CheckHr(qrootb->get_Height(&dyTwoParas)); + VwRootBox * prootb = dynamic_cast(qrootb.Ptr()); + VwDivBox * pdivRoot = dynamic_cast(prootb); + unitpp::assert_true("root should be a div box", pdivRoot != NULL); + VwDivBox * pdivInner = dynamic_cast(pdivRoot->FirstBox()); + unitpp::assert_true("root should contain an inner div after fragment change", pdivInner != NULL); + unitpp::assert_true("fragment change should produce a second paragraph", + pdivInner->FirstBox() != NULL && pdivInner->FirstBox()->Next() != NULL); + unitpp::assert_true("changing the root fragment should rebuild the view immediately", + dyTwoParas > dySinglePara); + + CheckHr(qrootb->get_NeedsReconstruct(&fNeedsReconstruct)); + unitpp::assert_false("successful reconstruct should clear reconstruct flag", fNeedsReconstruct); + } + catch(...) + { + if (qvg32) + qvg32->ReleaseDC(); + if (hdc != 0) + ReleaseTestDC(hdc); + qrootb->Close(); + throw; + } + + qvg32->ReleaseDC(); + ReleaseTestDC(hdc); + qrootb->Close(); + } + + void testPropChangedDirtiesConstructedView() + { + class SimpleParagraphVc : public DummyBaseVc + { + public: + STDMETHOD(Display)(IVwEnv * pvwenv, HVO hvo, int frag) + { + pvwenv->OpenDiv(); + pvwenv->OpenParagraph(); + pvwenv->AddStringProp(kflidStTxtPara_Contents, NULL); + pvwenv->CloseParagraph(); + pvwenv->CloseDiv(); + return S_OK; + } + }; + + ITsStrFactoryPtr qtsf; + qtsf.CreateInstance(CLSID_TsStrFactory); + IVwCacheDaPtr qcda; + qcda.CreateInstance(CLSID_VwCacheDa); + qcda->putref_TsStrFactory(qtsf); + ISilDataAccessPtr qsda; + CheckHr(qcda->QueryInterface(IID_ISilDataAccess, (void **)&qsda)); + CheckHr(qsda->putref_WritingSystemFactory(g_qwsf)); + + ITsStringPtr qtss; + StrUni stuPara(L"Paragraph before PropChanged"); + CheckHr(qtsf->MakeString(stuPara.Bstr(), g_wsEng, &qtss)); + HVO hvoPara = 1; + CheckHr(qcda->CacheStringProp(hvoPara, kflidStTxtPara_Contents, qtss)); + + IRenderEngineFactoryPtr qref; + qref.Attach(NewObj MockRenderEngineFactory); + + IVwRootBoxPtr qrootb; + VwRootBox::CreateCom(NULL, IID_IVwRootBox, (void **)&qrootb); + IVwGraphicsWin32Ptr qvg32; + HDC hdc = 0; + try + { + qvg32.CreateInstance(CLSID_VwGraphicsWin32); + hdc = GetTestDC(); + CheckHr(qvg32->Initialize(hdc)); + + IVwViewConstructorPtr qvc; + qvc.Attach(NewObj SimpleParagraphVc()); + CheckHr(qrootb->putref_DataAccess(qsda)); + CheckHr(qrootb->putref_RenderEngineFactory(qref)); + CheckHr(qrootb->putref_TsStrFactory(qtsf)); + CheckHr(qrootb->SetRootObject(hvoPara, qvc, 1, NULL)); + + DummyRootSitePtr qdrs; + qdrs.Attach(NewObj DummyRootSite()); + Rect rcSrc(0, 0, 96, 96); + qdrs->SetRects(rcSrc, rcSrc); + qdrs->SetGraphics(qvg32); + CheckHr(qrootb->SetSite(qdrs)); + + CheckHr(qrootb->Layout(qvg32, 300)); + ComBool fNeedsReconstruct = true; + CheckHr(qrootb->get_NeedsReconstruct(&fNeedsReconstruct)); + unitpp::assert_false("layout should clear reconstruct flag before PropChanged", fNeedsReconstruct); + + StrUni stuUpdated(L"Paragraph after PropChanged"); + CheckHr(qtsf->MakeString(stuUpdated.Bstr(), g_wsEng, &qtss)); + CheckHr(qcda->CacheStringProp(hvoPara, kflidStTxtPara_Contents, qtss)); + CheckHr(qrootb->PropChanged(hvoPara, kflidStTxtPara_Contents, 0, 0, 0)); + + CheckHr(qrootb->get_NeedsReconstruct(&fNeedsReconstruct)); + unitpp::assert_true("PropChanged should dirty reconstruct state on a constructed view", fNeedsReconstruct); + } + catch(...) + { + if (qvg32) + qvg32->ReleaseDC(); + if (hdc != 0) + ReleaseTestDC(hdc); + qrootb->Close(); + throw; + } + + qvg32->ReleaseDC(); + ReleaseTestDC(hdc); + qrootb->Close(); + } + + void testPutrefOverlayRelayoutsWithoutDirtyingConstructedView() + { + class TaggedParagraphVc : public DummyBaseVc + { + public: + STDMETHOD(Display)(IVwEnv * pvwenv, HVO hvo, int frag) + { + pvwenv->OpenDiv(); + pvwenv->OpenMappedTaggedPara(); + pvwenv->AddStringProp(kflidStTxtPara_Contents, NULL); + pvwenv->CloseParagraph(); + pvwenv->CloseDiv(); + return S_OK; + } + }; + + class OverlayAwareRootSite : public DummyRootSite + { + public: + int m_cOverlayChanges; + + OverlayAwareRootSite() + : m_cOverlayChanges(0) + { + } + + STDMETHOD(OverlayChanged)(IVwRootBox * prootb, IVwOverlay * pvo) + { + ++m_cOverlayChanges; + return S_OK; + } + }; + + ITsStrFactoryPtr qtsf; + qtsf.CreateInstance(CLSID_TsStrFactory); + IVwCacheDaPtr qcda; + qcda.CreateInstance(CLSID_VwCacheDa); + qcda->putref_TsStrFactory(qtsf); + ISilDataAccessPtr qsda; + CheckHr(qcda->QueryInterface(IID_ISilDataAccess, (void **)&qsda)); + CheckHr(qsda->putref_WritingSystemFactory(g_qwsf)); + + IRenderEngineFactoryPtr qref; + qref.Attach(NewObj MockRenderEngineFactory); + + ITsStringPtr qtss; + StrUni stuPara(L"Tagged paragraph text"); + CheckHr(qtsf->MakeString(stuPara.Bstr(), g_wsEng, &qtss)); + HVO hvoPara = 1; + CheckHr(qcda->CacheStringProp(hvoPara, kflidStTxtPara_Contents, qtss)); + + IVwRootBoxPtr qrootb; + VwRootBox::CreateCom(NULL, IID_IVwRootBox, (void **)&qrootb); + IVwGraphicsWin32Ptr qvg32; + HDC hdc = 0; + try + { + qvg32.CreateInstance(CLSID_VwGraphicsWin32); + hdc = GetTestDC(); + CheckHr(qvg32->Initialize(hdc)); + + IVwViewConstructorPtr qvc; + qvc.Attach(NewObj TaggedParagraphVc()); + CheckHr(qrootb->putref_DataAccess(qsda)); + CheckHr(qrootb->putref_RenderEngineFactory(qref)); + CheckHr(qrootb->putref_TsStrFactory(qtsf)); + CheckHr(qrootb->SetRootObject(hvoPara, qvc, 1, NULL)); + + OverlayAwareRootSite * pdrs = NewObj OverlayAwareRootSite(); + DummyRootSitePtr qdrs; + qdrs.Attach(pdrs); + Rect rcSrc(0, 0, 96, 96); + qdrs->SetRects(rcSrc, rcSrc); + qdrs->SetGraphics(qvg32); + CheckHr(qrootb->SetSite(qdrs)); + + CheckHr(qrootb->Layout(qvg32, 300)); + ComBool fNeedsReconstruct = true; + CheckHr(qrootb->get_NeedsReconstruct(&fNeedsReconstruct)); + unitpp::assert_false("layout should clear reconstruct flag before overlay changes", fNeedsReconstruct); + + IVwOverlayPtr qvo; + VwOverlay::CreateCom(NULL, IID_IVwOverlay, (void **)&qvo); + + CheckHr(qrootb->putref_Overlay(qvo)); + + IVwOverlayPtr qvoRoundTrip; + CheckHr(qrootb->get_Overlay(&qvoRoundTrip)); + unitpp::assert_eq("root box should retain the installed overlay", qvo.Ptr(), qvoRoundTrip.Ptr()); + unitpp::assert_eq("site should be notified of overlay changes", 1, pdrs->m_cOverlayChanges); + + CheckHr(qrootb->get_NeedsReconstruct(&fNeedsReconstruct)); + unitpp::assert_false("putref_Overlay should remain on the relayout-only path", fNeedsReconstruct); + } + catch(...) + { + if (qvg32) + qvg32->ReleaseDC(); + if (hdc != 0) + ReleaseTestDC(hdc); + qrootb->Close(); + throw; + } + + qvg32->ReleaseDC(); + ReleaseTestDC(hdc); + qrootb->Close(); + } + + void testPutrefDataAccessDoesNotImplicitlyDirtyConstructedView() + { + class SimpleParagraphVc : public DummyBaseVc + { + public: + STDMETHOD(Display)(IVwEnv * pvwenv, HVO hvo, int frag) + { + pvwenv->OpenDiv(); + pvwenv->OpenParagraph(); + pvwenv->AddStringProp(kflidStTxtPara_Contents, NULL); + pvwenv->CloseParagraph(); + pvwenv->CloseDiv(); + return S_OK; + } + }; + + ITsStrFactoryPtr qtsf; + qtsf.CreateInstance(CLSID_TsStrFactory); + IVwCacheDaPtr qcda1; + qcda1.CreateInstance(CLSID_VwCacheDa); + qcda1->putref_TsStrFactory(qtsf); + ISilDataAccessPtr qsda1; + CheckHr(qcda1->QueryInterface(IID_ISilDataAccess, (void **)&qsda1)); + CheckHr(qsda1->putref_WritingSystemFactory(g_qwsf)); + + IVwCacheDaPtr qcda2; + qcda2.CreateInstance(CLSID_VwCacheDa); + qcda2->putref_TsStrFactory(qtsf); + ISilDataAccessPtr qsda2; + CheckHr(qcda2->QueryInterface(IID_ISilDataAccess, (void **)&qsda2)); + CheckHr(qsda2->putref_WritingSystemFactory(g_qwsf)); + + ITsStringPtr qtss; + StrUni stuPara(L"DataAccess baseline text"); + CheckHr(qtsf->MakeString(stuPara.Bstr(), g_wsEng, &qtss)); + HVO hvoPara = 1; + CheckHr(qcda1->CacheStringProp(hvoPara, kflidStTxtPara_Contents, qtss)); + CheckHr(qcda2->CacheStringProp(hvoPara, kflidStTxtPara_Contents, qtss)); + + IRenderEngineFactoryPtr qref; + qref.Attach(NewObj MockRenderEngineFactory); + + IVwRootBoxPtr qrootb; + VwRootBox::CreateCom(NULL, IID_IVwRootBox, (void **)&qrootb); + IVwGraphicsWin32Ptr qvg32; + HDC hdc = 0; + try + { + qvg32.CreateInstance(CLSID_VwGraphicsWin32); + hdc = GetTestDC(); + CheckHr(qvg32->Initialize(hdc)); + + IVwViewConstructorPtr qvc; + qvc.Attach(NewObj SimpleParagraphVc()); + CheckHr(qrootb->putref_DataAccess(qsda1)); + CheckHr(qrootb->putref_RenderEngineFactory(qref)); + CheckHr(qrootb->putref_TsStrFactory(qtsf)); + CheckHr(qrootb->SetRootObject(hvoPara, qvc, 1, NULL)); + + DummyRootSitePtr qdrs; + qdrs.Attach(NewObj DummyRootSite()); + Rect rcSrc(0, 0, 96, 96); + qdrs->SetRects(rcSrc, rcSrc); + qdrs->SetGraphics(qvg32); + CheckHr(qrootb->SetSite(qdrs)); + + CheckHr(qrootb->Layout(qvg32, 300)); + ComBool fNeedsReconstruct = true; + CheckHr(qrootb->get_NeedsReconstruct(&fNeedsReconstruct)); + unitpp::assert_false("layout should clear reconstruct flag before DataAccess swaps", fNeedsReconstruct); + + CheckHr(qrootb->putref_DataAccess(qsda2)); + + CheckHr(qrootb->get_NeedsReconstruct(&fNeedsReconstruct)); + unitpp::assert_false("putref_DataAccess should remain a cheap wiring operation", fNeedsReconstruct); + } + catch(...) + { + if (qvg32) + qvg32->ReleaseDC(); + if (hdc != 0) + ReleaseTestDC(hdc); + qrootb->Close(); + throw; + } + + qvg32->ReleaseDC(); + ReleaseTestDC(hdc); + qrootb->Close(); + } + + void testStylesheetChangeDirtiesConstructedView() + { + class SimpleParagraphVc : public DummyBaseVc + { + public: + STDMETHOD(Display)(IVwEnv * pvwenv, HVO hvo, int frag) + { + pvwenv->OpenDiv(); + pvwenv->OpenParagraph(); + pvwenv->AddStringProp(kflidStTxtPara_Contents, NULL); + pvwenv->CloseParagraph(); + pvwenv->CloseDiv(); + return S_OK; + } + }; + + ITsStrFactoryPtr qtsf; + qtsf.CreateInstance(CLSID_TsStrFactory); + IVwCacheDaPtr qcda; + qcda.CreateInstance(CLSID_VwCacheDa); + qcda->putref_TsStrFactory(qtsf); + ISilDataAccessPtr qsda; + CheckHr(qcda->QueryInterface(IID_ISilDataAccess, (void **)&qsda)); + CheckHr(qsda->putref_WritingSystemFactory(g_qwsf)); + + ITsStringPtr qtss; + StrUni stuPara(L"Styled paragraph text"); + CheckHr(qtsf->MakeString(stuPara.Bstr(), g_wsEng, &qtss)); + HVO hvoPara = 1; + CheckHr(qcda->CacheStringProp(hvoPara, kflidStTxtPara_Contents, qtss)); + + IRenderEngineFactoryPtr qref; + qref.Attach(NewObj MockRenderEngineFactory); + + IVwStylesheetPtr qss; + VwStylesheet::CreateCom(NULL, IID_IVwStylesheet, (void **)&qss); + + IVwRootBoxPtr qrootb; + VwRootBox::CreateCom(NULL, IID_IVwRootBox, (void **)&qrootb); + IVwGraphicsWin32Ptr qvg32; + HDC hdc = 0; + try + { + qvg32.CreateInstance(CLSID_VwGraphicsWin32); + hdc = GetTestDC(); + CheckHr(qvg32->Initialize(hdc)); + + IVwViewConstructorPtr qvc; + qvc.Attach(NewObj SimpleParagraphVc()); + CheckHr(qrootb->putref_DataAccess(qsda)); + CheckHr(qrootb->putref_RenderEngineFactory(qref)); + CheckHr(qrootb->putref_TsStrFactory(qtsf)); + CheckHr(qrootb->SetRootObject(hvoPara, qvc, 1, qss)); + + DummyRootSitePtr qdrs; + qdrs.Attach(NewObj DummyRootSite()); + Rect rcSrc(0, 0, 96, 96); + qdrs->SetRects(rcSrc, rcSrc); + qdrs->SetGraphics(qvg32); + CheckHr(qrootb->SetSite(qdrs)); + + CheckHr(qrootb->Layout(qvg32, 300)); + ComBool fNeedsReconstruct = true; + CheckHr(qrootb->get_NeedsReconstruct(&fNeedsReconstruct)); + unitpp::assert_false("layout should clear reconstruct flag before stylesheet changes", fNeedsReconstruct); + + CheckHr(qrootb->OnStylesheetChange()); + + CheckHr(qrootb->get_NeedsReconstruct(&fNeedsReconstruct)); + unitpp::assert_true("stylesheet changes should dirty reconstruct state even after relayout", fNeedsReconstruct); + } + catch(...) + { + if (qvg32) + qvg32->ReleaseDC(); + if (hdc != 0) + ReleaseTestDC(hdc); + qrootb->Close(); + throw; + } + + qvg32->ReleaseDC(); + ReleaseTestDC(hdc); + qrootb->Close(); + } + + void testLayoutUpdatesCachedDpiWhenWidthIsUnchanged() + { + class SimpleParagraphVc : public DummyBaseVc + { + public: + STDMETHOD(Display)(IVwEnv * pvwenv, HVO hvo, int frag) + { + pvwenv->OpenDiv(); + pvwenv->OpenParagraph(); + pvwenv->AddStringProp(kflidStTxtPara_Contents, NULL); + pvwenv->CloseParagraph(); + pvwenv->CloseDiv(); + return S_OK; + } + }; + + ITsStrFactoryPtr qtsf; + qtsf.CreateInstance(CLSID_TsStrFactory); + IVwCacheDaPtr qcda; + qcda.CreateInstance(CLSID_VwCacheDa); + qcda->putref_TsStrFactory(qtsf); + ISilDataAccessPtr qsda; + CheckHr(qcda->QueryInterface(IID_ISilDataAccess, (void **)&qsda)); + CheckHr(qsda->putref_WritingSystemFactory(g_qwsf)); + + ITsStringPtr qtss; + StrUni stuPara(L"Paragraph for DPI cache regression"); + CheckHr(qtsf->MakeString(stuPara.Bstr(), g_wsEng, &qtss)); + HVO hvoPara = 1; + CheckHr(qcda->CacheStringProp(hvoPara, kflidStTxtPara_Contents, qtss)); + + IRenderEngineFactoryPtr qref; + qref.Attach(NewObj MockRenderEngineFactory); + + IVwRootBoxPtr qrootb; + VwRootBox::CreateCom(NULL, IID_IVwRootBox, (void **)&qrootb); + IVwGraphicsWin32Ptr qvg32; + HDC hdc = 0; + try + { + qvg32.CreateInstance(CLSID_VwGraphicsWin32); + hdc = GetTestDC(); + CheckHr(qvg32->Initialize(hdc)); + + IVwViewConstructorPtr qvc; + qvc.Attach(NewObj SimpleParagraphVc()); + CheckHr(qrootb->putref_DataAccess(qsda)); + CheckHr(qrootb->putref_RenderEngineFactory(qref)); + CheckHr(qrootb->putref_TsStrFactory(qtsf)); + CheckHr(qrootb->SetRootObject(hvoPara, qvc, 1, NULL)); + + DummyRootSitePtr qdrs; + qdrs.Attach(NewObj DummyRootSite()); + Rect rcSrc(0, 0, 96, 96); + qdrs->SetRects(rcSrc, rcSrc); + qdrs->SetGraphics(qvg32); + CheckHr(qrootb->SetSite(qdrs)); + + CheckHr(qvg32->put_XUnitsPerInch(96)); + CheckHr(qvg32->put_YUnitsPerInch(96)); + CheckHr(qrootb->Layout(qvg32, 300)); + + VwRootBox * prootb = dynamic_cast(qrootb.Ptr()); + unitpp::assert_true("expected concrete VwRootBox", prootb != NULL); + unitpp::assert_eq("initial layout should cache the starting X DPI", 96, prootb->DpiSrc().x); + unitpp::assert_eq("initial layout should cache the starting Y DPI", 96, prootb->DpiSrc().y); + + CheckHr(qvg32->put_XUnitsPerInch(144)); + CheckHr(qvg32->put_YUnitsPerInch(144)); + CheckHr(qrootb->Layout(qvg32, 300)); + + unitpp::assert_eq("same-width layout should still refresh cached X DPI", 144, prootb->DpiSrc().x); + unitpp::assert_eq("same-width layout should still refresh cached Y DPI", 144, prootb->DpiSrc().y); + } + catch(...) + { + if (qvg32) + qvg32->ReleaseDC(); + if (hdc != 0) + ReleaseTestDC(hdc); + qrootb->Close(); + throw; + } + + qvg32->ReleaseDC(); + ReleaseTestDC(hdc); + qrootb->Close(); + } + + void testLayoutWithChangedWidthRelayoutsWithoutDirtyingConstructedView() + { + class SimpleParagraphVc : public DummyBaseVc + { + public: + STDMETHOD(Display)(IVwEnv * pvwenv, HVO hvo, int frag) + { + pvwenv->OpenDiv(); + pvwenv->OpenParagraph(); + pvwenv->AddStringProp(kflidStTxtPara_Contents, NULL); + pvwenv->CloseParagraph(); + pvwenv->CloseDiv(); + return S_OK; + } + }; + + ITsStrFactoryPtr qtsf; + qtsf.CreateInstance(CLSID_TsStrFactory); + IVwCacheDaPtr qcda; + qcda.CreateInstance(CLSID_VwCacheDa); + qcda->putref_TsStrFactory(qtsf); + ISilDataAccessPtr qsda; + CheckHr(qcda->QueryInterface(IID_ISilDataAccess, (void **)&qsda)); + CheckHr(qsda->putref_WritingSystemFactory(g_qwsf)); + + ITsStringPtr qtss; + StrUni stuPara(L"A paragraph with enough repeated words to wrap differently when the available width shrinks substantially in a relayout-only scenario."); + CheckHr(qtsf->MakeString(stuPara.Bstr(), g_wsEng, &qtss)); + HVO hvoPara = 1; + CheckHr(qcda->CacheStringProp(hvoPara, kflidStTxtPara_Contents, qtss)); + + IRenderEngineFactoryPtr qref; + qref.Attach(NewObj MockRenderEngineFactory); + + IVwRootBoxPtr qrootb; + VwRootBox::CreateCom(NULL, IID_IVwRootBox, (void **)&qrootb); + IVwGraphicsWin32Ptr qvg32; + HDC hdc = 0; + try + { + qvg32.CreateInstance(CLSID_VwGraphicsWin32); + hdc = GetTestDC(); + CheckHr(qvg32->Initialize(hdc)); + + IVwViewConstructorPtr qvc; + qvc.Attach(NewObj SimpleParagraphVc()); + CheckHr(qrootb->putref_DataAccess(qsda)); + CheckHr(qrootb->putref_RenderEngineFactory(qref)); + CheckHr(qrootb->putref_TsStrFactory(qtsf)); + CheckHr(qrootb->SetRootObject(hvoPara, qvc, 1, NULL)); + + DummyRootSitePtr qdrs; + qdrs.Attach(NewObj DummyRootSite()); + Rect rcSrc(0, 0, 96, 96); + qdrs->SetRects(rcSrc, rcSrc); + qdrs->SetGraphics(qvg32); + CheckHr(qrootb->SetSite(qdrs)); + + CheckHr(qrootb->Layout(qvg32, 300)); + int dyWide = 0; + CheckHr(qrootb->get_Height(&dyWide)); + + ComBool fNeedsReconstruct = true; + CheckHr(qrootb->get_NeedsReconstruct(&fNeedsReconstruct)); + unitpp::assert_false("layout should clear reconstruct flag before width-driven relayout", fNeedsReconstruct); + + CheckHr(qrootb->Layout(qvg32, 120)); + int dyNarrow = 0; + CheckHr(qrootb->get_Height(&dyNarrow)); + + unitpp::assert_true("narrower layout should relayout to a taller height", dyNarrow > dyWide); + CheckHr(qrootb->get_NeedsReconstruct(&fNeedsReconstruct)); + unitpp::assert_false("width-driven relayout should stay on the relayout-only path", fNeedsReconstruct); + } + catch(...) + { + if (qvg32) + qvg32->ReleaseDC(); + if (hdc != 0) + ReleaseTestDC(hdc); + qrootb->Close(); + throw; + } + + qvg32->ReleaseDC(); + ReleaseTestDC(hdc); + qrootb->Close(); + } + public: TestVwRootBox(); diff --git a/Src/views/Views.idh b/Src/views/Views.idh index b052958cc9..d4a07d57df 100644 --- a/Src/views/Views.idh +++ b/Src/views/Views.idh @@ -1712,6 +1712,14 @@ Last reviewed: // Pass in the repository that will be used to get spell-checkers. HRESULT SetSpellingRepository( [in] IGetSpellChecker * pgsp); + + // PATH-L5: Tells whether this root box needs a Reconstruct. + // When true, data or structural changes have occurred since the last + // Reconstruct completed. Managed callers (e.g. SimpleRootSite.RefreshDisplay) + // can check this to skip selection save/restore and drawing suspension + // overhead when no reconstruction is actually needed. + [propget] HRESULT NeedsReconstruct( + [out, retval] ComBool * pfNeeds); } #ifndef NO_COCLASSES diff --git a/Src/views/Views.mak b/Src/views/Views.mak index fd633d1513..556a8936e4 100644 --- a/Src/views/Views.mak +++ b/Src/views/Views.mak @@ -61,6 +61,8 @@ OBJ_VIEWS=\ $(INT_DIR)\autopch\VwSelection.obj\ $(INT_DIR)\autopch\VwTableBox.obj\ $(INT_DIR)\autopch\VwGraphics.obj\ + $(INT_DIR)\autopch\FontHandleCache.obj\ + $(INT_DIR)\autopch\ColorStateCache.obj\ $(INT_DIR)\autopch\VwTxtSrc.obj\ $(INT_DIR)\autopch\ModuleEntry.obj\ $(INT_DIR)\autopch\AfColorTable.obj\ diff --git a/Src/views/ViewsGlobals.cpp b/Src/views/ViewsGlobals.cpp index e657887355..da41fddf93 100644 --- a/Src/views/ViewsGlobals.cpp +++ b/Src/views/ViewsGlobals.cpp @@ -12,6 +12,11 @@ Last reviewed: -------------------------------------------------------------------------------*//*:End Ignore*/ #include "Main.h" +#include "VwRenderTrace.h" + +#ifdef TRACING_RENDER +FILE * g_fpRenderTrace = NULL; +#endif // Nothing should directly reference this. static ViewsGlobals g_views; diff --git a/Src/views/VwLayoutStream.cpp b/Src/views/VwLayoutStream.cpp index fdb43dedb5..b26b24653a 100644 --- a/Src/views/VwLayoutStream.cpp +++ b/Src/views/VwLayoutStream.cpp @@ -29,11 +29,13 @@ DEFINE_THIS_FILE VwLayoutStream::VwLayoutStream(VwPropertyStore * pzvps) : VwRootBox(pzvps) { + m_dxsLayoutWidth = -1; } // Protected default constructor used for CreateCom VwLayoutStream::VwLayoutStream() : VwRootBox() { + m_dxsLayoutWidth = -1; } @@ -42,15 +44,17 @@ VwLayoutStream::~VwLayoutStream() } /*---------------------------------------------------------------------------------------------- - Ensure that the view is constructed and laid out at our specified width (TODO: and DPI). + Ensure that the view is constructed and laid out at our specified width and source DPI. ----------------------------------------------------------------------------------------------*/ void VwLayoutStream::ConstructAndLayout(IVwGraphics * pvg, int dxsAvailWidth) { // Todo: Layout should delete all pages if the width changed. if (!m_fConstructed) Construct(pvg, dxsAvailWidth); // Does NOT lay out to this width. - // Todo: also save and check the dpi of the VwGraphics. Layout if changed. - if (m_dxsLayoutWidth != dxsAvailWidth) + int dpiX, dpiY; + CheckHr(pvg->get_XUnitsPerInch(&dpiX)); + CheckHr(pvg->get_YUnitsPerInch(&dpiY)); + if (m_dxsLayoutWidth != dxsAvailWidth || m_ptDpiSrc.x != dpiX || m_ptDpiSrc.y != dpiY) Layout(pvg, dxsAvailWidth); } diff --git a/Src/views/VwPropertyStore.cpp b/Src/views/VwPropertyStore.cpp index 20a047f005..40e74a9107 100644 --- a/Src/views/VwPropertyStore.cpp +++ b/Src/views/VwPropertyStore.cpp @@ -43,6 +43,25 @@ static int g_rgnFontSizes[] = { // kvfsSmaller and kvfsLarger don't have absolute values static int knDefaultFontSize = 10000; // 10 point default +// Returns the lfQuality value to use for LOGFONT creation. +// If the FW_FONT_QUALITY env var is set to a valid value (0-6), that value is used. +// This allows tests to force ANTIALIASED_QUALITY (4) for deterministic rendering. +static BYTE GetFontQualityOverride() +{ + static BYTE s_quality = []() -> BYTE { + wchar_t buf[16] = {}; + DWORD len = ::GetEnvironmentVariableW(L"FW_FONT_QUALITY", buf, _countof(buf)); + if (len > 0 && len < _countof(buf)) + { + int val = _wtoi(buf); + if (val >= 0 && val <= 6) + return static_cast(val); + } + return DRAFT_QUALITY; + }(); + return s_quality; +} + // The order of these is signficant--it is the order the font properties are recorded in // for each writing system, in the wsStyle string. // A copy of this list is in VwPropertyStore.cpp -- the two lists must be kept in sync. @@ -358,7 +377,7 @@ int VwPropertyStore::AdjustedLineHeight(VwPropertyStore * pzvpsLeaf, int * pdymp lf.lfCharSet = DEFAULT_CHARSET; // let name determine it; WS should specify valid lf.lfOutPrecision = OUT_TT_ONLY_PRECIS; // only work with TrueType fonts lf.lfClipPrecision = CLIP_DEFAULT_PRECIS; // ?? - lf.lfQuality = DRAFT_QUALITY; // I (JohnT) don't think this matters for TrueType fonts. + lf.lfQuality = GetFontQualityOverride(); lf.lfPitchAndFamily = 0; // must be zero for EnumFontFamiliesEx wcscpy_s(lf.lfFaceName, LF_FACESIZE, pchrp->szFaceName); qzvpsWithWsAndFont->Unlock(); @@ -513,16 +532,28 @@ void VwPropertyStore::InitChrp() ILgWritingSystemPtr qws; if (!m_chrp.ws) CheckHr(m_qwsf->get_UserWs(&m_chrp.ws)); // Get default writing system id. - Assert(m_chrp.ws); - CheckHr(m_qwsf->get_EngineOrNull(m_chrp.ws, &qws)); - AssertPtr(qws); - ComBool fRtl; - CheckHr(qws->get_RightToLeftScript(&fRtl)); - m_chrp.fWsRtl = (bool)fRtl; - m_chrp.nDirDepth = (fRtl) ? 1 : 0; + // A ws of 0 can arrive during PropChanged-driven box rebuilds when + // a view constructor emits runs without an explicit writing system, + // or when get_UserWs fails to provide a valid ws. + // get_EngineOrNull may also return null for an unknown ws. + if (m_chrp.ws) + CheckHr(m_qwsf->get_EngineOrNull(m_chrp.ws, &qws)); + AssertPtrN(qws); // null is recoverable — default to LTR below + ComBool fRtl = false; // default LTR for unknown/zero ws + if (qws) + { + CheckHr(qws->get_RightToLeftScript(&fRtl)); + m_chrp.fWsRtl = (bool)fRtl; + m_chrp.nDirDepth = (fRtl) ? 1 : 0; - // Interpret any magic font names. - CheckHr(qws->InterpretChrp(&m_chrp)); + // Interpret any magic font names. + CheckHr(qws->InterpretChrp(&m_chrp)); + } + else + { + m_chrp.fWsRtl = false; + m_chrp.nDirDepth = 0; + } // Other fields in m_chrp have the exact same meaning as the corresponding property, // and are already used to store it. @@ -1328,14 +1359,18 @@ STDMETHODIMP VwPropertyStore::put_IntProperty(int tpt, int xpv, int nValue) if (m_chrp.ws != nValue) { m_chrp.ws = nValue; - Assert(m_chrp.ws); + // A ws of 0 can arrive during PropChanged-driven box rebuilds when + // a view constructor emits runs without an explicit writing system. + // This is recoverable — we default to LTR below. // Recompute m_chrp.fRtl and m_chrp.nDirDepth EnsureWritingSystemFactory(); ILgWritingSystemPtr qws; - CheckHr(m_qwsf->get_EngineOrNull(m_chrp.ws, &qws)); - AssertPtr(qws); - ComBool fRtl; - if (qws) // If by some chance we're trying to use an unknown WS, default to LTR. + if (m_chrp.ws) + CheckHr(m_qwsf->get_EngineOrNull(m_chrp.ws, &qws)); + // An unknown or zero ws yields a null engine; default to LTR. + AssertPtrN(qws); + ComBool fRtl = false; // default LTR for unknown/zero ws + if (qws) CheckHr(qws->get_RightToLeftScript(&fRtl)); m_chrp.fWsRtl = (bool)fRtl; m_chrp.nDirDepth = (fRtl) ? 1 : 0; diff --git a/Src/views/VwRenderTrace.h b/Src/views/VwRenderTrace.h new file mode 100644 index 0000000000..71a554b044 --- /dev/null +++ b/Src/views/VwRenderTrace.h @@ -0,0 +1,169 @@ +/*--------------------------------------------------------------------*//*:Ignore this sentence. +Copyright (c) 2026 SIL International +This software is licensed under the LGPL, version 2.1 or later +(http://www.gnu.org/licenses/lgpl-2.1.html) +-------------------------------------------------------------------------------*//*:End Ignore*/ +#pragma once +#ifndef VWRENDERTRACE_INCLUDED +#define VWRENDERTRACE_INCLUDED + +#include +#include + +/*---------------------------------------------------------------------------------------------- + Render trace timing infrastructure for Views engine performance analysis. + + Usage: + #ifdef TRACING_RENDER + VwRenderTraceTimer timer("Layout"); + // ... do layout work ... + timer.Stop(); // or let destructor handle it + #endif + + Output format (compatible with RenderTraceParser): + [RENDER] Stage=Layout Duration=123.45ms Context=VwRootBox + + Enable by defining TRACING_RENDER before including this header. + The output goes to OutputDebugString and optionally to a file. + + Hungarian: rtt (render trace timer) +----------------------------------------------------------------------------------------------*/ + +// Uncomment to enable render tracing globally for debug builds +// #define TRACING_RENDER + +#ifdef TRACING_RENDER + +// File output for render trace (optional - set to NULL to disable file output) +// Can be opened via VwRenderTrace::OpenTraceFile() +extern FILE * g_fpRenderTrace; + +/*---------------------------------------------------------------------------------------------- +Class: VwRenderTrace +Description: Static helper for render trace configuration and output. +----------------------------------------------------------------------------------------------*/ +class VwRenderTrace +{ +public: + // Open a trace file for persistent logging + static bool OpenTraceFile(const wchar_t * pszPath) + { + if (g_fpRenderTrace) + CloseTraceFile(); + + _wfopen_s(&g_fpRenderTrace, pszPath, L"a"); + return g_fpRenderTrace != NULL; + } + + // Close the trace file + static void CloseTraceFile() + { + if (g_fpRenderTrace) + { + fclose(g_fpRenderTrace); + g_fpRenderTrace = NULL; + } + } + + // Write a trace message + static void Write(const char * pszFormat, ...) + { + char szBuffer[1024]; + va_list args; + va_start(args, pszFormat); + vsprintf_s(szBuffer, sizeof(szBuffer), pszFormat, args); + va_end(args); + + ::OutputDebugStringA(szBuffer); + if (g_fpRenderTrace) + { + fputs(szBuffer, g_fpRenderTrace); + fflush(g_fpRenderTrace); + } + } + + // Check if tracing is enabled at runtime + static bool IsEnabled() + { + // Could check environment variable or registry here + return true; + } +}; + +/*---------------------------------------------------------------------------------------------- +Class: VwRenderTraceTimer +Description: RAII timer for automatic stage duration measurement. +Hungarian: rtt +----------------------------------------------------------------------------------------------*/ +class VwRenderTraceTimer +{ +public: + VwRenderTraceTimer(const char * pszStageName, const char * pszContext = NULL) + : m_pszStageName(pszStageName) + , m_pszContext(pszContext) + , m_fStopped(false) + { + if (VwRenderTrace::IsEnabled()) + { + QueryPerformanceCounter(&m_liStart); + } + } + + ~VwRenderTraceTimer() + { + if (!m_fStopped && VwRenderTrace::IsEnabled()) + { + Stop(); + } + } + + void Stop() + { + if (m_fStopped || !VwRenderTrace::IsEnabled()) + return; + + m_fStopped = true; + + LARGE_INTEGER liEnd, liFreq; + QueryPerformanceCounter(&liEnd); + QueryPerformanceFrequency(&liFreq); + + double durationMs = static_cast(liEnd.QuadPart - m_liStart.QuadPart) * 1000.0 + / static_cast(liFreq.QuadPart); + + if (m_pszContext) + { + VwRenderTrace::Write("[RENDER] Stage=%s Duration=%.3fms Context=%s\r\n", + m_pszStageName, durationMs, m_pszContext); + } + else + { + VwRenderTrace::Write("[RENDER] Stage=%s Duration=%.3fms\r\n", + m_pszStageName, durationMs); + } + } + +private: + const char * m_pszStageName; + const char * m_pszContext; + LARGE_INTEGER m_liStart; + bool m_fStopped; +}; + +// Convenience macros for conditional tracing +#define VWRENDERTRACE_CONCAT_INNER(a, b) a##b +#define VWRENDERTRACE_CONCAT(a, b) VWRENDERTRACE_CONCAT_INNER(a, b) +#define RENDER_TRACE_TIMER(name) VwRenderTraceTimer VWRENDERTRACE_CONCAT(__rtt_, __LINE__)(name) +#define RENDER_TRACE_TIMER_CTX(name, ctx) VwRenderTraceTimer VWRENDERTRACE_CONCAT(__rtt_, __LINE__)(name, ctx) +#define RENDER_TRACE_MSG(fmt, ...) VwRenderTrace::Write(fmt, ##__VA_ARGS__) + +#else // !TRACING_RENDER + +// No-op macros when tracing is disabled +#define RENDER_TRACE_TIMER(name) ((void)0) +#define RENDER_TRACE_TIMER_CTX(name, ctx) ((void)0) +#define RENDER_TRACE_MSG(fmt, ...) ((void)0) + +#endif // TRACING_RENDER + +#endif // VWRENDERTRACE_INCLUDED diff --git a/Src/views/VwRootBox.cpp b/Src/views/VwRootBox.cpp index d3599d47ea..c78c060101 100644 --- a/Src/views/VwRootBox.cpp +++ b/Src/views/VwRootBox.cpp @@ -1,4 +1,4 @@ -/*--------------------------------------------------------------------*//*:Ignore this sentence. +/*--------------------------------------------------------------------*//*:Ignore this sentence. Copyright (c) 1999-2019 SIL International This software is licensed under the LGPL, version 2.1 or later (http://www.gnu.org/licenses/lgpl-2.1.html) @@ -37,6 +37,21 @@ const CLSID CLSID_ViewInputManager = {0x830BAF1F, 0x6F84, 0x46EF, {0xB6, 0x3E, 0 //:> Forward declarations //:>******************************************************************************************** +namespace +{ + void DeleteMemoryDcAndBitmap(HDC hdcMem) + { + if (!hdcMem) + return; + + HBITMAP hbmp = (HBITMAP)::GetCurrentObject(hdcMem, OBJ_BITMAP); + BOOL fSuccess = AfGdi::DeleteObjectBitmap(hbmp); + Assert(fSuccess); + fSuccess = AfGdi::DeleteDC(hdcMem); + Assert(fSuccess); + } +} + //:>******************************************************************************************** //:> Local Constants and static variables //:>******************************************************************************************** @@ -66,6 +81,9 @@ void VwRootBox::Init() m_fInDrag = false; m_hrSegmentError = S_OK; m_cMaxParasToScan = 4; + m_fNeedsLayout = true; + m_dxLastLayoutWidth = -1; + m_fNeedsReconstruct = true; // Usually set in Layout method, but some tests don't do this... // play safe also for any code called before Layout. m_ptDpiSrc.x = 96; @@ -193,6 +211,9 @@ STDMETHODIMP VwRootBox::PropChanged(HVO hvo, PropTag tag, int ivMin, int cvIns, { BEGIN_COM_METHOD; + // Any data change makes a subsequent Reconstruct() valid work. + m_fNeedsReconstruct = true; + int ivMinDisp; if (m_qsda) { @@ -318,7 +339,10 @@ STDMETHODIMP VwRootBox::SetRootObjects(HVO * prghvo, IVwViewConstructor ** prgpv m_chvoRoot = chvo; m_qss = pss; if (m_fConstructed) + { + m_fNeedsReconstruct = true; // root data changed — ensure PATH-R1 guard allows reconstruction CheckHr(Reconstruct()); + } END_COM_METHOD(g_fact, IID_IVwRootBox); } @@ -397,7 +421,10 @@ STDMETHODIMP VwRootBox::putref_Overlay(IVwOverlay * pvo) m_qvo = pvo; m_qvrs->OverlayChanged(this, m_qvo); if (m_fConstructed) + { + m_fNeedsLayout = true; // overlay changes may affect layout LayoutFull(); + } END_COM_METHOD(g_fact, IID_IVwRootBox); } @@ -2488,10 +2515,27 @@ STDMETHODIMP VwRootBox::get_IsPropChangedInProgress(ComBool * pfInProgress) BEGIN_COM_METHOD; ChkComArgPtr(pfInProgress); - *pfInProgress = m_fIsPropChangedInProgress; + *pfInProgress = m_fIsPropChangedInProgress ? true : false; END_COM_METHOD(g_fact, IID_IVwRootBox); } + +/*---------------------------------------------------------------------------------------------- + PATH-L5: Reports whether this root box needs a full Reconstruct. + Returns true when data or structural changes (PropChanged, OnStylesheetChange, etc.) + have occurred since the last Reconstruct. Managed callers can use this to skip the + overhead of selection save/restore and drawing suspension when nothing has changed. +----------------------------------------------------------------------------------------------*/ +STDMETHODIMP VwRootBox::get_NeedsReconstruct(ComBool * pfNeeds) +{ + BEGIN_COM_METHOD; + ChkComArgPtr(pfNeeds); + + *pfNeeds = m_fNeedsReconstruct ? true : false; + + END_COM_METHOD(g_fact, IID_IVwRootBox); +} + /*---------------------------------------------------------------------------------------------- Discard all your notifiers. In case this happens during a sequence of PropChanged calls, mark them all as deleted. @@ -2576,6 +2620,7 @@ void VwRootBox::Reconstruct(bool fCheckForSync) Invalidate(); // new InvalidateRect(&vwrect); //old + m_fNeedsReconstruct = false; // reconstruction complete } /*---------------------------------------------------------------------------------------------- @@ -2601,9 +2646,15 @@ STDMETHODIMP VwRootBox::OnStylesheetChange() if (!m_fConstructed || Style() == NULL) return S_OK; // no Style() object exists to fix. (I think the second condition above is redundant, but play safe.) // Redraw the boxes based on stylesheet changes. + // This is intentionally nontrivial: LayoutFull() is enough to keep the current display + // usable, but a stylesheet change can also invalidate construction-time state such as + // notifier/property-store assumptions. Leave m_fNeedsReconstruct set so later callers + // like SimpleRootSite.RefreshDisplay() can still observe that a full rebuild may be needed. + m_fNeedsReconstruct = true; // style changes warrant reconstruction Style()->InitRootTextProps(m_vqvwvc.Size() == 0 ? NULL : m_vqvwvc[0]); Style()->RecomputeEffects(); + m_fNeedsLayout = true; // style changes invalidate layout LayoutFull(); return S_OK; @@ -2838,12 +2889,23 @@ STDMETHODIMP VwRootBox::Layout(IVwGraphics * pvg, int dxAvailWidth) int dpiX, dpiY; CheckHr(pvg->get_XUnitsPerInch(&dpiX)); CheckHr(pvg->get_YUnitsPerInch(&dpiY)); + + // PATH-L1 guard: skip full layout when the box tree is already laid out at this width + // and source DPI, and no structural mutation has occurred since the last successful layout. + if (m_fConstructed && !m_fNeedsLayout && dxAvailWidth == m_dxLastLayoutWidth + && dpiX == m_ptDpiSrc.x && dpiY == m_ptDpiSrc.y) + return S_OK; + m_ptDpiSrc.x = dpiX; m_ptDpiSrc.y = dpiY; if (!m_fConstructed) Construct(pvg, dxAvailWidth); VwDivBox::DoLayout(pvg, dxAvailWidth, -1, true); + + // Layout succeeded — cache the width and clear the dirty flag. + m_fNeedsLayout = false; + m_dxLastLayoutWidth = dxAvailWidth; #ifdef ENABLE_TSF if (m_qvim) CheckHr(m_qvim->OnLayoutChange()); @@ -4140,6 +4202,16 @@ void VwRootBox::RelayoutRoot(IVwGraphics * pvg, FixupMap * pfixmap, int dxpAvail int dyOld = FieldHeight(); int dxOld = Width(); RelayoutCore(pvg, dxAvailWidth, this, pfixmap, -1, NULL, pboxsetDeleted); + + // Incremental relayout succeeded — update layout guard state. + int dpiX, dpiY; + CheckHr(pvg->get_XUnitsPerInch(&dpiX)); + CheckHr(pvg->get_YUnitsPerInch(&dpiY)); + m_ptDpiSrc.x = dpiX; + m_ptDpiSrc.y = dpiY; + m_fNeedsLayout = false; + m_dxLastLayoutWidth = dxAvailWidth; + if (dyOld != FieldHeight() || dxOld != Width() || dyOld2 != Height()) CheckHr(m_qvrs->RootBoxSizeChanged(this)); } @@ -4189,6 +4261,11 @@ void VwRootBox::Construct(IVwGraphics * pvg, int dxAvailWidth) // about everything being closed, etc... qvwenv->Cleanup(); m_fConstructed = true; + m_fNeedsLayout = true; // newly-constructed boxes require layout + m_fNeedsReconstruct = false; // construction complete — no need to reconstruct + // until PropChanged, OnStylesheetChange, or another mutation sets the flag. + // Previously this was left true from Init, causing the first Reconstruct() + // call to redo all work even when no data had changed (PATH-R1 guard bug). ResetSpellCheck(); // in case it somehow got called while we had no contents. } @@ -4885,40 +4962,22 @@ STDMETHODIMP VwDrawRootBuffered::DrawTheRoot(IVwRootBox * prootb, HDC hdc, RECT IVwGraphicsWin32Ptr qvg32; Rect rcp(rcpDraw); CheckHr(qvg->QueryInterface(IID_IVwGraphicsWin32, (void **) &qvg32)); - - // Clean up any previous cached bitmap and DC - if (m_hdcMem) - { - HBITMAP hbmpCached = (HBITMAP)::GetCurrentObject(m_hdcMem, OBJ_BITMAP); - if (hbmpCached) - { - BOOL fSuccessBitmap = AfGdi::DeleteObjectBitmap(hbmpCached); - Assert(fSuccessBitmap); - (void)fSuccessBitmap; // Suppress C4189 warning in Release builds - } - BOOL fSuccessDC = AfGdi::DeleteDC(m_hdcMem); - Assert(fSuccessDC); - (void)fSuccessDC; // Suppress C4189 warning in Release builds - m_hdcMem = 0; - } - - // Create a new memory DC and bitmap for double buffering - m_hdcMem = AfGdi::CreateCompatibleDC(hdc); - HBITMAP hbmp = AfGdi::CreateCompatibleBitmap(hdc, rcp.Width(), rcp.Height()); - Assert(hbmp); - HBITMAP hbmpOld = AfGdi::SelectObjectBitmap(m_hdcMem, hbmp); + HDC hdcPrevious = m_hdcMem; + HDC hdcNew = AfGdi::CreateCompatibleDC(hdc); + HBITMAP hbmpNew = AfGdi::CreateCompatibleBitmap(hdc, rcp.Width(), rcp.Height()); + Assert(hbmpNew); + HBITMAP hbmpOld = AfGdi::SelectObjectBitmap(hdcNew, hbmpNew); Assert(hbmpOld && hbmpOld != HGDI_ERROR); (void)hbmpOld; // Suppress C4189 warning in Release builds (variable only used in Assert) - // We don't delete hbmpOld (the stock bitmap from the DC) - // The new bitmap (hbmp) will stay selected in m_hdcMem for caching + bool fPromotedCache = false; if (bkclr == kclrTransparent) // if the background color is transparent, copy the current screen area in to the // bitmap buffer as our background - ::BitBlt(m_hdcMem, 0, 0, rcp.Width(), rcp.Height(), hdc, rcp.left, rcp.top, SRCCOPY); + ::BitBlt(hdcNew, 0, 0, rcp.Width(), rcp.Height(), hdc, rcp.left, rcp.top, SRCCOPY); else - AfGfx::FillSolidRect(m_hdcMem, Rect(0, 0, rcp.Width(), rcp.Height()), bkclr); - CheckHr(qvg32->Initialize(m_hdcMem)); + AfGfx::FillSolidRect(hdcNew, Rect(0, 0, rcp.Width(), rcp.Height()), bkclr); + CheckHr(qvg32->Initialize(hdcNew)); VwPrepDrawResult xpdr = kxpdrAdjust; IVwGraphicsPtr qvgDummy; // Required for GetGraphics calls to get transform rects @@ -4985,10 +5044,24 @@ STDMETHODIMP VwDrawRootBuffered::DrawTheRoot(IVwRootBox * prootb, HDC hdc, RECT if (xpdr != kxpdrInvalidate) { + DeleteMemoryDcAndBitmap(hdcPrevious); + m_hdcMem = hdcNew; + hdcNew = 0; + fPromotedCache = true; // We drew something...now blast it onto the screen. // The bitmap in m_hdcMem is kept around for potential ReDrawLastDraw calls. ::BitBlt(hdc, rcp.left, rcp.top, rcp.Width(), rcp.Height(), m_hdcMem, 0, 0, SRCCOPY); } + else if (hdcPrevious) + { + ::BitBlt(hdc, rcp.left, rcp.top, rcp.Width(), rcp.Height(), hdcPrevious, 0, 0, SRCCOPY); + } + + if (!fPromotedCache) + { + DeleteMemoryDcAndBitmap(hdcNew); + m_hdcMem = hdcPrevious; + } END_COM_METHOD(g_factVDRB, IID_IVwRootBox); } diff --git a/Src/views/VwRootBox.h b/Src/views/VwRootBox.h index 4c8c634863..2b01bd5d2b 100644 --- a/Src/views/VwRootBox.h +++ b/Src/views/VwRootBox.h @@ -198,6 +198,8 @@ class VwRootBox : public IVwRootBox, public IServiceProvider, public VwDivBox STDMETHOD(SetSpellingRepository)(IGetSpellChecker * pgsp); + STDMETHOD(get_NeedsReconstruct)(ComBool * pfNeeds); + // IServiceProvider methods STDMETHOD(QueryService)(REFGUID guidService, REFIID riid, void ** ppv); @@ -398,6 +400,15 @@ class VwRootBox : public IVwRootBox, public IServiceProvider, public VwDivBox bool m_fConstructed; // true when we have called Construct() successfully. + // PATH-L1 layout guard: skip redundant full-layout passes when width and source DPI + // haven't changed and no structural mutation has occurred since the last successful Layout(). + bool m_fNeedsLayout; // true when internal state requires a full relayout + int m_dxLastLayoutWidth; // width used for last successful Layout(), -1 if none + + // PATH-R1 reconstruct guard: skip redundant Reconstruct() calls when no data + // or structural change has occurred since the last successful construction. + bool m_fNeedsReconstruct; // true when data changed and full rebuild is warranted + ISilDataAccessPtr m_qsda; // data access object, for getting and setting properties IVwOverlayPtr m_qvo; // controls overlay/tagging behavior for all text @@ -433,7 +444,7 @@ class VwRootBox : public IVwRootBox, public IServiceProvider, public VwDivBox // When it changes, we try to increase laziness. int m_ydTopLastDraw; - Point m_ptDpiSrc; // x and y resolutions of most recent Layout. + Point m_ptDpiSrc; // x and y resolutions of most recent successful Layout/Relayout. StrUni m_stuAccessibleName; diff --git a/Src/views/VwTextBoxes.cpp b/Src/views/VwTextBoxes.cpp index c3c55766dd..5e46be52cf 100644 --- a/Src/views/VwTextBoxes.cpp +++ b/Src/views/VwTextBoxes.cpp @@ -19,12 +19,16 @@ Last reviewed: Not yet. #include "Main.h" #pragma hdrstop // any other headers (not precompiled) +#include "lib/LayoutCache.h" +#include "VwRenderTrace.h" using namespace std; #undef THIS_FILE DEFINE_THIS_FILE +__declspec(thread) LayoutPassCache * g_pCurrentLayoutPassCache = NULL; + // #define _DEBUG_SHOW_BOX /*********************************************************************************************** @@ -793,6 +797,10 @@ typedef enum class ParaBuilder { public: // we can make anything public since the whole class is private to this file + ParaBuilder() : m_pPrevLayoutPassCache(NULL) + { + } + ParaBuilderState m_zpbs; // state of the builder, controls next step in MainLoop() VwParagraphBox * m_pvpbox; // the thing we are laying out. @@ -916,6 +924,8 @@ class ParaBuilder int m_dyTagBelow; // extra height to insert below lines for closing tags bool m_fSemiTagging; // displaying styles on text itself but not the tags IVwOverlay * m_pxvo; + LayoutPassCache m_layoutPassCache; + LayoutPassCache * m_pPrevLayoutPassCache; // Picture box we are trying to fit into line VwPictureBox * m_pboxpic; @@ -1187,6 +1197,8 @@ class ParaBuilder } Assert(!(fComplete && pboxStartLayout)); m_pvpbox = pvpbox; + m_layoutPassCache.Reset(); + m_pPrevLayoutPassCache = SetCurrentLayoutPassCache(&m_layoutPassCache); m_pboxOriginalFirst = m_pvpbox->FirstBox(); // Need to set the first box of the paragraph to null. This is needed since we can call // EditableSubStringAt() while laying out the paragraph (possibly trying to get an @@ -1591,6 +1603,22 @@ class ParaBuilder ------------------------------------------------------------------------------------------*/ virtual ~ParaBuilder() { + LayoutPassCache * pLayoutPassCache = GetCurrentLayoutPassCache(); + if (pLayoutPassCache) + { + RENDER_TRACE_MSG("[RENDER] Stage=LayoutPassCache AnalysisReq=%d AnalysisHit=%d AnalysisMiss=%d AnalysisEvict=%d AnalysisMissMs=%lu ShapeReq=%d ShapeHit=%d ShapeMiss=%d ShapeEvict=%d ShapeMissMs=%lu\r\n", + pLayoutPassCache->AnalysisCache().RequestCount(), + pLayoutPassCache->AnalysisCache().HitCount(), + pLayoutPassCache->AnalysisCache().MissCount(), + pLayoutPassCache->AnalysisCache().EvictionCount(), + pLayoutPassCache->AnalysisCache().ComputeMs(), + pLayoutPassCache->ShapeCache().RequestCount(), + pLayoutPassCache->ShapeCache().HitCount(), + pLayoutPassCache->ShapeCache().MissCount(), + pLayoutPassCache->ShapeCache().EvictionCount(), + pLayoutPassCache->ShapeCache().ComputeMs()); + } + SetCurrentLayoutPassCache(m_pPrevLayoutPassCache); Assert(m_vmpbox.Size() == 0); // Delete any discarded string boxes that have not been reused while (m_psboxReusable) diff --git a/Src/views/lib/ColorStateCache.cpp b/Src/views/lib/ColorStateCache.cpp new file mode 100644 index 0000000000..44767b719e --- /dev/null +++ b/Src/views/lib/ColorStateCache.cpp @@ -0,0 +1,47 @@ +/*-----------------------------------------------------------------------*//*:Ignore in Surveyor +Copyright (c) 2026 SIL International +This software is licensed under the LGPL, version 2.1 or later +(http://www.gnu.org/licenses/lgpl-2.1.html) +-------------------------------------------------------------------------------*//*:End Ignore*/ + +#include "main.h" +#pragma hdrstop + +#include "ColorStateCache.h" + +ColorStateCache::ColorStateCache() +{ + Invalidate(); +} + +void ColorStateCache::Invalidate() +{ + m_clrForeCache = CLR_INVALID; + m_clrBackCache = CLR_INVALID; + m_nBkModeCache = -1; + m_fColorCacheValid = false; +} + +bool ColorStateCache::ApplyIfNeeded(HDC hdc, COLORREF clrForeNeeded, COLORREF clrBackNeeded, + int nBkModeNeeded) +{ + if (!m_fColorCacheValid + || clrForeNeeded != m_clrForeCache + || clrBackNeeded != m_clrBackCache + || nBkModeNeeded != m_nBkModeCache) + { + SmartPalette spal(hdc); + bool fOK = (AfGfx::SetTextColor(hdc, clrForeNeeded) != CLR_INVALID); + fOK = fOK && (AfGfx::SetBkColor(hdc, clrBackNeeded) != CLR_INVALID); + fOK = fOK && ::SetBkMode(hdc, nBkModeNeeded); + (void)fOK; + + m_clrForeCache = clrForeNeeded; + m_clrBackCache = clrBackNeeded; + m_nBkModeCache = nBkModeNeeded; + m_fColorCacheValid = true; + return true; + } + + return false; +} diff --git a/Src/views/lib/ColorStateCache.h b/Src/views/lib/ColorStateCache.h new file mode 100644 index 0000000000..cd8ef52130 --- /dev/null +++ b/Src/views/lib/ColorStateCache.h @@ -0,0 +1,25 @@ +/*--------------------------------------------------------------------*//*:Ignore this sentence. +Copyright (c) 2026 SIL International +This software is licensed under the LGPL, version 2.1 or later +(http://www.gnu.org/licenses/lgpl-2.1.html) +-------------------------------------------------------------------------------*//*:End Ignore*/ +#pragma once +#ifndef COLORSTATECACHE_INCLUDED +#define COLORSTATECACHE_INCLUDED + +class ColorStateCache +{ +public: + ColorStateCache(); + + void Invalidate(); + bool ApplyIfNeeded(HDC hdc, COLORREF clrForeNeeded, COLORREF clrBackNeeded, int nBkModeNeeded); + +private: + COLORREF m_clrForeCache; + COLORREF m_clrBackCache; + int m_nBkModeCache; + bool m_fColorCacheValid; +}; + +#endif // COLORSTATECACHE_INCLUDED diff --git a/Src/views/lib/FontHandleCache.cpp b/Src/views/lib/FontHandleCache.cpp new file mode 100644 index 0000000000..f69b6b6727 --- /dev/null +++ b/Src/views/lib/FontHandleCache.cpp @@ -0,0 +1,165 @@ +/*-----------------------------------------------------------------------*//*:Ignore in Surveyor +Copyright (c) 2026 SIL International +This software is licensed under the LGPL, version 2.1 or later +(http://www.gnu.org/licenses/lgpl-2.1.html) +-------------------------------------------------------------------------------*//*:End Ignore*/ + +#include "main.h" +#pragma hdrstop + +#include "FontHandleCache.h" + +#include +template Vector; // VecHfont; + +FontHandleCache::FontHandleCache() +{ + m_cfceUsed = 0; + memset(m_rgfce, 0, sizeof(m_rgfce)); +} + +HFONT FontHandleCache::FindCachedFont(const LgCharRenderProps * pchrp) const +{ + const int cbFontOffset = (int)offsetof(LgCharRenderProps, ttvBold); + const int cbFontSize = isizeof(LgCharRenderProps) - cbFontOffset; + + for (int i = 0; i < m_cfceUsed; i++) + { + if (m_rgfce[i].fUsed && + memcmp(((byte *)pchrp) + cbFontOffset, + ((byte *)&m_rgfce[i].chrp) + cbFontOffset, + cbFontSize) == 0) + { + return m_rgfce[i].hfont; + } + } + return NULL; +} + +void FontHandleCache::AddFontToCache(HFONT hfont, const LgCharRenderProps * pchrp, + HFONT hfontActive, TryDeleteFontProc pfnTryDelete, void * pDeleteContext) +{ + TryDeleteDeferredFonts(hfontActive, pfnTryDelete, pDeleteContext); + + if (m_cfceUsed >= kcFontCacheMax) + { + int iEvict = 0; + HFONT hfontEvicted = m_rgfce[iEvict].hfont; + if (hfontEvicted == hfontActive) + { + Assert(false); + for (int i = 1; i < m_cfceUsed; ++i) + { + if (m_rgfce[i].hfont && m_rgfce[i].hfont != hfontActive) + { + iEvict = i; + hfontEvicted = m_rgfce[iEvict].hfont; + break; + } + } + } + if (hfontEvicted == hfontActive) + { + Assert(false); + return; + } + if (hfontEvicted) + { + bool fDeleted = pfnTryDelete ? pfnTryDelete(hfontEvicted, pDeleteContext) : true; + if (!fDeleted) + QueueFontForDeferredDelete(hfontEvicted); + } + if (iEvict < m_cfceUsed - 1) + { + memmove(&m_rgfce[iEvict], &m_rgfce[iEvict + 1], + (m_cfceUsed - iEvict - 1) * sizeof(FontCacheEntry)); + } + m_cfceUsed--; + } + + m_rgfce[m_cfceUsed].hfont = hfont; + m_rgfce[m_cfceUsed].chrp = *pchrp; + m_rgfce[m_cfceUsed].fUsed = true; + m_cfceUsed++; +} + +void FontHandleCache::QueueFontForDeferredDelete(HFONT hfont) +{ + if (!hfont) + return; + + for (int i = 0; i < m_vhfontDeferredDelete.Size(); ++i) + { + if (m_vhfontDeferredDelete[i] == hfont) + return; + } + + m_vhfontDeferredDelete.Push(hfont); +} + +void FontHandleCache::TryDeleteDeferredFonts(HFONT hfontActive, TryDeleteFontProc pfnTryDelete, + void * pDeleteContext) +{ + for (int i = m_vhfontDeferredDelete.Size() - 1; i >= 0; --i) + { + HFONT hfont = m_vhfontDeferredDelete[i]; + if (!hfont) + { + m_vhfontDeferredDelete.Delete(i); + continue; + } + if (hfont == hfontActive) + continue; + + bool fDeleted = pfnTryDelete ? pfnTryDelete(hfont, pDeleteContext) : true; + if (fDeleted) + m_vhfontDeferredDelete.Delete(i); + } +} + +void FontHandleCache::Clear(HFONT hfontActive, TryDeleteFontProc pfnTryDelete, void * pDeleteContext) +{ + for (int i = 0; i < m_cfceUsed; i++) + { + if (m_rgfce[i].hfont) + { + bool fDeleted = pfnTryDelete ? pfnTryDelete(m_rgfce[i].hfont, pDeleteContext) : true; + if (!fDeleted) + QueueFontForDeferredDelete(m_rgfce[i].hfont); + m_rgfce[i].hfont = NULL; + } + m_rgfce[i].fUsed = false; + } + m_cfceUsed = 0; + + TryDeleteDeferredFonts(hfontActive, pfnTryDelete, pDeleteContext); + for (int i = 0; i < m_vhfontDeferredDelete.Size(); ++i) + { + HFONT hfont = m_vhfontDeferredDelete[i]; + if (!hfont || hfont == hfontActive) + continue; + if (pfnTryDelete) + pfnTryDelete(hfont, pDeleteContext); + } + m_vhfontDeferredDelete.Delete(0, m_vhfontDeferredDelete.Size()); +} + +int FontHandleCache::CacheCount() const +{ + return m_cfceUsed; +} + +int FontHandleCache::DeferredDeleteCount() const +{ + return m_vhfontDeferredDelete.Size(); +} + +bool FontHandleCache::IsDeferredDeleteQueued(HFONT hfont) const +{ + for (int i = 0; i < m_vhfontDeferredDelete.Size(); ++i) + { + if (m_vhfontDeferredDelete[i] == hfont) + return true; + } + return false; +} diff --git a/Src/views/lib/FontHandleCache.h b/Src/views/lib/FontHandleCache.h new file mode 100644 index 0000000000..5a775ab5c1 --- /dev/null +++ b/Src/views/lib/FontHandleCache.h @@ -0,0 +1,45 @@ +/*--------------------------------------------------------------------*//*:Ignore this sentence. +Copyright (c) 2026 SIL International +This software is licensed under the LGPL, version 2.1 or later +(http://www.gnu.org/licenses/lgpl-2.1.html) +-------------------------------------------------------------------------------*//*:End Ignore*/ +#pragma once +#ifndef FONTHANDLECACHE_INCLUDED +#define FONTHANDLECACHE_INCLUDED + +class FontHandleCache +{ +public: + typedef bool (*TryDeleteFontProc)(HFONT hfont, void * pContext); + static const int kcFontCacheMax = 8; + + FontHandleCache(); + + HFONT FindCachedFont(const LgCharRenderProps * pchrp) const; + void AddFontToCache(HFONT hfont, const LgCharRenderProps * pchrp, + HFONT hfontActive, TryDeleteFontProc pfnTryDelete, void * pDeleteContext); + void TryDeleteDeferredFonts(HFONT hfontActive, TryDeleteFontProc pfnTryDelete, + void * pDeleteContext); + void Clear(HFONT hfontActive, TryDeleteFontProc pfnTryDelete, void * pDeleteContext); + + int CacheCount() const; + int DeferredDeleteCount() const; + bool IsDeferredDeleteQueued(HFONT hfont) const; + +private: + struct FontCacheEntry + { + HFONT hfont; + LgCharRenderProps chrp; + bool fUsed; + }; + + typedef Vector VecHfont; + FontCacheEntry m_rgfce[kcFontCacheMax]; + int m_cfceUsed; + VecHfont m_vhfontDeferredDelete; + + void QueueFontForDeferredDelete(HFONT hfont); +}; + +#endif // FONTHANDLECACHE_INCLUDED diff --git a/Src/views/lib/LayoutCache.h b/Src/views/lib/LayoutCache.h new file mode 100644 index 0000000000..6dc1ed16b4 --- /dev/null +++ b/Src/views/lib/LayoutCache.h @@ -0,0 +1,453 @@ +#pragma once +#ifndef LAYOUTCACHE_INCLUDED +#define LAYOUTCACHE_INCLUDED + +class TextAnalysisEntry +{ +public: + TextAnalysisEntry() : + m_pts(NULL), + m_ichMin(0), + m_cch(0), + m_ws(0), + m_fWsRtl(false), + m_fTextIsNfc(true), + m_cchNfc(0), + m_citem(0) + { + } + + bool Covers(IVwTextSource * pts, int ichMin, int cch, int ws, bool fWsRtl) const + { + return m_pts == pts && m_ichMin == ichMin && m_cch >= cch && m_ws == ws && m_fWsRtl == fWsRtl; + } + + int RequestedNfcLength(int cchRequested) const + { + if (cchRequested <= 0) + return 0; + if (m_fTextIsNfc) + return cchRequested; + if (m_vichOrigToNfc.Size() == 0) + return cchRequested; + if (cchRequested >= m_vichOrigToNfc.Size()) + return m_vichOrigToNfc[m_vichOrigToNfc.Size() - 1]; + return m_vichOrigToNfc[cchRequested]; + } + + int OffsetInNfc(int ich, int ichBase) const + { + Assert(ich >= ichBase); + if (m_fTextIsNfc) + return ich - ichBase; + int ichRelative = ich - ichBase; + if (ichRelative <= 0) + return 0; + if (m_vichOrigToNfc.Size() == 0) + return ichRelative; + if (ichRelative >= m_vichOrigToNfc.Size()) + return m_vichOrigToNfc[m_vichOrigToNfc.Size() - 1]; + return m_vichOrigToNfc[ichRelative]; + } + + int OffsetToOrig(int ich, int ichBase) const + { + if (m_fTextIsNfc) + return ich + ichBase; + if (ich <= 0) + return ichBase; + if (m_vichNfcToOrig.Size() == 0) + return ich + ichBase; + if (ich >= m_vichNfcToOrig.Size()) + return m_cch + ichBase; + return m_vichNfcToOrig[ich] + ichBase; + } + + void CopyScriptItemsTo(Vector & vscri, int & citem) const + { + citem = m_citem; + int cscri = m_vscri.Size(); + if (vscri.Size() < cscri) + vscri.Resize(cscri); + if (cscri > 0) + ::memcpy(vscri.Begin(), const_cast &>(m_vscri).Begin(), + cscri * isizeof(SCRIPT_ITEM)); + } + +public: + IVwTextSource * m_pts; + int m_ichMin; + int m_cch; + int m_ws; + bool m_fWsRtl; + bool m_fTextIsNfc; + int m_cchNfc; + int m_citem; + Vector m_vchNfc; + Vector m_vscri; + Vector m_vichOrigToNfc; + Vector m_vichNfcToOrig; +}; + +class ShapeRunEntry +{ +public: + ShapeRunEntry() : + m_hfont(NULL), + m_cch(0), + m_cglyph(0), + m_dxdWidth(0), + m_fScriptPlaceFailed(false) + { + ::ZeroMemory(&m_sa, sizeof(m_sa)); + } + + bool Matches(const OLECHAR * prgch, int cch, HFONT hfont, const SCRIPT_ANALYSIS & sa) + { + if (m_hfont != hfont || m_cch != cch) + return false; + if (::memcmp(&m_sa, &sa, sizeof(SCRIPT_ANALYSIS)) != 0) + return false; + if (cch == 0) + return true; + return ::memcmp(m_vch.Begin(), prgch, cch * isizeof(OLECHAR)) == 0; + } + + HFONT m_hfont; + SCRIPT_ANALYSIS m_sa; + int m_cch; + int m_cglyph; + int m_dxdWidth; + bool m_fScriptPlaceFailed; + Vector m_vch; + Vector m_vglyph; + Vector m_vsva; + Vector m_vadvance; + Vector m_vcst; + Vector m_voff; + Vector m_vcluster; +}; + +class TextAnalysisCache +{ +public: + TextAnalysisCache(int cEntriesMax = 16) : + m_cEntriesMax(cEntriesMax), + m_ientryReplace(0), + m_cHit(0), + m_cMiss(0), + m_cEvict(0), + m_msCompute(0) + { + } + + void Reset() + { + m_ventry.Delete(0, m_ventry.Size()); + m_ientryReplace = 0; + m_cHit = 0; + m_cMiss = 0; + m_cEvict = 0; + m_msCompute = 0; + } + + TextAnalysisEntry * Find(IVwTextSource * pts, int ichMin, int cch, int ws, bool fWsRtl) + { + TextAnalysisEntry * pbest = NULL; + int cchBest = INT_MAX; + for (int ientry = 0; ientry < m_ventry.Size(); ++ientry) + { + TextAnalysisEntry & entry = m_ventry[ientry]; + if (!entry.Covers(pts, ichMin, cch, ws, fWsRtl)) + continue; + if (entry.m_cch < cchBest) + { + pbest = &entry; + cchBest = entry.m_cch; + } + } + if (pbest) + ++m_cHit; + else + ++m_cMiss; + return pbest; + } + + TextAnalysisEntry * Store(IVwTextSource * pts, int ichMin, int cch, int ws, bool fWsRtl, + const OLECHAR * prgchNfc, int cchNfc, bool fTextIsNfc, const SCRIPT_ITEM * prgscri, + int citem, const Vector * pvichOrigToNfc, const Vector * pvichNfcToOrig) + { + TextAnalysisEntry * pentry = NULL; + for (int ientry = 0; ientry < m_ventry.Size(); ++ientry) + { + TextAnalysisEntry & entry = m_ventry[ientry]; + if (entry.m_pts == pts && entry.m_ichMin == ichMin && entry.m_cch == cch && + entry.m_ws == ws && entry.m_fWsRtl == fWsRtl) + { + pentry = &entry; + break; + } + } + + if (!pentry) + { + if (m_ventry.Size() < m_cEntriesMax) + { + TextAnalysisEntry entry; + m_ventry.Push(entry); + pentry = &m_ventry[m_ventry.Size() - 1]; + } + else + { + pentry = &m_ventry[m_ientryReplace]; + m_ientryReplace = (m_ientryReplace + 1) % m_cEntriesMax; + ++m_cEvict; + } + } + + pentry->m_pts = pts; + pentry->m_ichMin = ichMin; + pentry->m_cch = cch; + pentry->m_ws = ws; + pentry->m_fWsRtl = fWsRtl; + pentry->m_fTextIsNfc = fTextIsNfc; + pentry->m_cchNfc = cchNfc; + pentry->m_citem = citem; + + pentry->m_vchNfc.Resize(cchNfc); + if (cchNfc > 0) + ::memcpy(pentry->m_vchNfc.Begin(), prgchNfc, cchNfc * isizeof(OLECHAR)); + + int cscri = citem + 1; + if (cscri < 2) + cscri = 2; + pentry->m_vscri.Resize(cscri); + if (cscri > 0) + ::memcpy(pentry->m_vscri.Begin(), prgscri, cscri * isizeof(SCRIPT_ITEM)); + + if (pvichOrigToNfc) + { + pentry->m_vichOrigToNfc.Resize(pvichOrigToNfc->Size()); + for (int i = 0; i < pvichOrigToNfc->Size(); ++i) + pentry->m_vichOrigToNfc[i] = (*pvichOrigToNfc)[i]; + } + else + pentry->m_vichOrigToNfc.Delete(0, pentry->m_vichOrigToNfc.Size()); + + if (pvichNfcToOrig) + { + pentry->m_vichNfcToOrig.Resize(pvichNfcToOrig->Size()); + for (int i = 0; i < pvichNfcToOrig->Size(); ++i) + pentry->m_vichNfcToOrig[i] = (*pvichNfcToOrig)[i]; + } + else + pentry->m_vichNfcToOrig.Delete(0, pentry->m_vichNfcToOrig.Size()); + + return pentry; + } + + int HitCount() const { return m_cHit; } + int MissCount() const { return m_cMiss; } + int EvictionCount() const { return m_cEvict; } + int RequestCount() const { return m_cHit + m_cMiss; } + DWORD ComputeMs() const { return m_msCompute; } + void AddComputeMs(DWORD ms) { m_msCompute += ms; } + +private: + Vector m_ventry; + int m_cEntriesMax; + int m_ientryReplace; + int m_cHit; + int m_cMiss; + int m_cEvict; + DWORD m_msCompute; +}; + +class ShapeRunCache +{ +public: + ShapeRunCache(int cEntriesMax = 32) : + m_cEntriesMax(cEntriesMax), + m_ientryReplace(0), + m_cHit(0), + m_cMiss(0), + m_cEvict(0), + m_msCompute(0) + { + } + + void Reset() + { + m_ventry.Delete(0, m_ventry.Size()); + m_ientryReplace = 0; + m_cHit = 0; + m_cMiss = 0; + m_cEvict = 0; + m_msCompute = 0; + } + + ShapeRunEntry * Find(const OLECHAR * prgch, int cch, HFONT hfont, const SCRIPT_ANALYSIS & sa) + { + for (int ientry = 0; ientry < m_ventry.Size(); ++ientry) + { + ShapeRunEntry & entry = m_ventry[ientry]; + if (entry.Matches(prgch, cch, hfont, sa)) + { + ++m_cHit; + return &entry; + } + } + ++m_cMiss; + return NULL; + } + + ShapeRunEntry * Store(const OLECHAR * prgch, int cch, HFONT hfont, const SCRIPT_ANALYSIS & sa, + const WORD * prgGlyph, const SCRIPT_VISATTR * prgsva, const int * prgAdvance, + const int * prgcst, const GOFFSET * prgoff, const WORD * prgCluster, int cglyph, + int dxdWidth, bool fScriptPlaceFailed) + { + ShapeRunEntry * pentry = NULL; + for (int ientry = 0; ientry < m_ventry.Size(); ++ientry) + { + ShapeRunEntry & entry = m_ventry[ientry]; + if (entry.Matches(prgch, cch, hfont, sa)) + { + pentry = &entry; + break; + } + } + + if (!pentry) + { + if (m_ventry.Size() < m_cEntriesMax) + { + ShapeRunEntry entry; + m_ventry.Push(entry); + pentry = &m_ventry[m_ventry.Size() - 1]; + } + else + { + pentry = &m_ventry[m_ientryReplace]; + m_ientryReplace = (m_ientryReplace + 1) % m_cEntriesMax; + ++m_cEvict; + } + } + + pentry->m_hfont = hfont; + pentry->m_sa = sa; + pentry->m_cch = cch; + pentry->m_cglyph = cglyph; + pentry->m_dxdWidth = dxdWidth; + pentry->m_fScriptPlaceFailed = fScriptPlaceFailed; + + pentry->m_vch.Resize(cch); + if (cch > 0) + ::memcpy(pentry->m_vch.Begin(), prgch, cch * isizeof(OLECHAR)); + + pentry->m_vglyph.Resize(cglyph); + pentry->m_vsva.Resize(cglyph); + pentry->m_vadvance.Resize(cglyph); + pentry->m_vcst.Resize(cglyph); + pentry->m_voff.Resize(cglyph); + if (cglyph > 0) + { + ::memcpy(pentry->m_vglyph.Begin(), prgGlyph, cglyph * isizeof(WORD)); + ::memcpy(pentry->m_vsva.Begin(), prgsva, cglyph * isizeof(SCRIPT_VISATTR)); + ::memcpy(pentry->m_vadvance.Begin(), prgAdvance, cglyph * isizeof(int)); + ::memcpy(pentry->m_vcst.Begin(), prgcst, cglyph * isizeof(int)); + ::memcpy(pentry->m_voff.Begin(), prgoff, cglyph * isizeof(GOFFSET)); + } + + pentry->m_vcluster.Resize(cch); + if (cch > 0) + ::memcpy(pentry->m_vcluster.Begin(), prgCluster, cch * isizeof(WORD)); + + return pentry; + } + + int HitCount() const { return m_cHit; } + int MissCount() const { return m_cMiss; } + int EvictionCount() const { return m_cEvict; } + int RequestCount() const { return m_cHit + m_cMiss; } + DWORD ComputeMs() const { return m_msCompute; } + void AddComputeMs(DWORD ms) { m_msCompute += ms; } + +private: + Vector m_ventry; + int m_cEntriesMax; + int m_ientryReplace; + int m_cHit; + int m_cMiss; + int m_cEvict; + DWORD m_msCompute; +}; + +class LayoutPassCache +{ +public: + LayoutPassCache() : m_analysisCache(16), m_shapeRunCache(32) + { + } + + void Reset() + { + m_analysisCache.Reset(); + m_shapeRunCache.Reset(); + } + + TextAnalysisCache & AnalysisCache() + { + return m_analysisCache; + } + + ShapeRunCache & ShapeCache() + { + return m_shapeRunCache; + } + +private: + TextAnalysisCache m_analysisCache; + ShapeRunCache m_shapeRunCache; +}; + +extern __declspec(thread) LayoutPassCache * g_pCurrentLayoutPassCache; + +inline bool IsPerfFlagEnabled(const wchar_t * pszName) +{ + wchar_t rgchValue[16] = {0}; + DWORD cchValue = ::GetEnvironmentVariableW(pszName, rgchValue, _countof(rgchValue)); + if (cchValue == 0) + return true; + return _wcsicmp(rgchValue, L"0") != 0 && _wcsicmp(rgchValue, L"false") != 0 && + _wcsicmp(rgchValue, L"off") != 0; +} + +inline bool IsPath1ShapeCacheEnabled() +{ + static int s_nEnabled = -1; + if (s_nEnabled < 0) + s_nEnabled = IsPerfFlagEnabled(L"FW_PERF_P125_PATH1") ? 1 : 0; + return s_nEnabled == 1; +} + +inline bool IsPath2AnalysisCacheEnabled() +{ + static int s_nEnabled = -1; + if (s_nEnabled < 0) + s_nEnabled = IsPerfFlagEnabled(L"FW_PERF_P125_PATH2") ? 1 : 0; + return s_nEnabled == 1; +} + +inline LayoutPassCache * GetCurrentLayoutPassCache() +{ + return g_pCurrentLayoutPassCache; +} + +inline LayoutPassCache * SetCurrentLayoutPassCache(LayoutPassCache * pLayoutPassCache) +{ + LayoutPassCache * pPrev = g_pCurrentLayoutPassCache; + g_pCurrentLayoutPassCache = pLayoutPassCache; + return pPrev; +} + +#endif // LAYOUTCACHE_INCLUDED \ No newline at end of file diff --git a/Src/views/lib/UniscribeEngine.cpp b/Src/views/lib/UniscribeEngine.cpp index d69d570f61..4ff897ec08 100644 --- a/Src/views/lib/UniscribeEngine.cpp +++ b/Src/views/lib/UniscribeEngine.cpp @@ -28,6 +28,7 @@ POSSIBLE OPTIMIZATION HINT: #include "Main.h" #pragma hdrstop // any other headers (not precompiled) +#include "LayoutCache.h" #undef THIS_FILE DEFINE_THIS_FILE @@ -411,8 +412,11 @@ STDMETHODIMP UniscribeEngine::FindBreakPoint( // end at a line break opportunity. In particular if a run contains sequences of PUA // characters from plane 0 Uniscribe creates new items for these for reasons which are not // clear. + // PATH-N1: Get NFC flag to avoid redundant OffsetInNfc/OffsetToOrig normalization below. + bool fTextIsNfc = false; + const TextAnalysisEntry * pAnalysis = NULL; int cchNfc = UniscribeSegment::CallScriptItemize(rgchBuf, INIT_BUF_SIZE, vch, pts, ichMinSeg, - ichLimText - ichMinSeg, &prgchBuf, citem, (bool)fParaRtoL); + ichLimText - ichMinSeg, &prgchBuf, citem, (bool)fParaRtoL, &fTextIsNfc, &pAnalysis); Vector vichBreak; ILgLineBreakerPtr qlb; @@ -504,7 +508,7 @@ STDMETHODIMP UniscribeEngine::FindBreakPoint( } ichLim = min(ichLimNext, ichLimBT2); // Optimize JohnT: if ichLim==ichBase+m_dichLim, can use cchNfc. - ichLimNfc = UniscribeSegment::OffsetInNfc(ichLim, ichMinSeg, pts); + ichLimNfc = UniscribeSegment::OffsetInNfc(ichLim, ichMinSeg, pts, fTextIsNfc, pAnalysis); if (ichLimNfc == ichMinNfc) { // This can happen if later characters in a composite have different properties than the first. @@ -528,7 +532,7 @@ STDMETHODIMP UniscribeEngine::FindBreakPoint( { // Script item is smaller than run; shorten the amount we treat as a 'run'. ichLimNfc = (pscri + 1)->iCharPos; - ichLim = UniscribeSegment::OffsetToOrig(ichLimNfc, ichMinSeg, pts); + ichLim = UniscribeSegment::OffsetToOrig(ichLimNfc, ichMinSeg, pts, fTextIsNfc, pAnalysis); } // Set up the characters of the run, if any. @@ -750,7 +754,7 @@ STDMETHODIMP UniscribeEngine::FindBreakPoint( vdxRun.Pop(); ichLimBT2 = ichMin; ichLim = *(vichRun.Top()); - ichLimNfc = UniscribeSegment::OffsetInNfc(ichLim, ichMinSeg, pts); + ichLimNfc = UniscribeSegment::OffsetInNfc(ichLim, ichMinSeg, pts, fTextIsNfc, pAnalysis); vichRun.Pop(); cglyph = *(viglyphRun.Top()); viglyphRun.Pop(); @@ -855,7 +859,7 @@ STDMETHODIMP UniscribeEngine::FindBreakPoint( vdxRun.Pop(); ichLimBT2 = ichMin; ichLim = *(vichRun.Top()); - ichLimNfc = UniscribeSegment::OffsetInNfc(ichLim, ichMinSeg, pts); + ichLimNfc = UniscribeSegment::OffsetInNfc(ichLim, ichMinSeg, pts, fTextIsNfc, pAnalysis); vichRun.Pop(); cglyph = *(viglyphRun.Top()); viglyphRun.Pop(); @@ -969,11 +973,11 @@ STDMETHODIMP UniscribeEngine::FindBreakPoint( } } } - ichLim = UniscribeSegment::OffsetToOrig(ichMinUri + ichRun, ichMinSeg, pts); + ichLim = UniscribeSegment::OffsetToOrig(ichMinUri + ichRun, ichMinSeg, pts, fTextIsNfc, pAnalysis); break; } - int ichLineBreak = UniscribeSegment::OffsetToOrig(ichLineBreakNfc, ichMinSeg, pts); + int ichLineBreak = UniscribeSegment::OffsetToOrig(ichLineBreakNfc, ichMinSeg, pts, fTextIsNfc, pAnalysis); if (ichLineBreak <= ichMin) { @@ -990,7 +994,7 @@ STDMETHODIMP UniscribeEngine::FindBreakPoint( viglyphRun.Pop(); } ichLim = ichMin; // Required to get correct values at start of loop. - ichLimNfc = UniscribeSegment::OffsetInNfc(ichLim, ichMinSeg, pts); + ichLimNfc = UniscribeSegment::OffsetInNfc(ichLim, ichMinSeg, pts, fTextIsNfc, pAnalysis); ichLimBT2 = ichLineBreak; fRemovedWs = false; fBacktracking = true; @@ -998,12 +1002,12 @@ STDMETHODIMP UniscribeEngine::FindBreakPoint( } ichLim = ichLineBreak; // We limit the segment to not exceed the latest line break point. Assert(ichLim <= ichLimBacktrack); - ichLimNfc = UniscribeSegment::OffsetInNfc(ichLim, ichMinSeg, pts); + ichLimNfc = UniscribeSegment::OffsetInNfc(ichLim, ichMinSeg, pts, fTextIsNfc, pAnalysis); fOkBreak = true; // Means we have a good line break. // Store the glyph-specific information: stretch values. int cchRunTotalTmp = uri.cch; - uri.cch = UniscribeSegment::OffsetInNfc(ichLim, ichMinSeg, pts) - ichMinNfc; + uri.cch = UniscribeSegment::OffsetInNfc(ichLim, ichMinSeg, pts, fTextIsNfc, pAnalysis) - ichMinNfc; UniscribeSegment::ShapePlaceRun(uri, true); viglyphRun.Push(cglyph); cglyph += uri.cglyph; @@ -1029,7 +1033,7 @@ STDMETHODIMP UniscribeEngine::FindBreakPoint( if (twsh == ktwshNoWs) { fRemovedWs = RemoveTrailingWhiteSpace(ichMinUri, &ichLimNfc, uri); - ichLim = UniscribeSegment::OffsetToOrig(ichLimNfc, ichMinSeg, pts); + ichLim = UniscribeSegment::OffsetToOrig(ichLimNfc, ichMinSeg, pts, fTextIsNfc, pAnalysis); // Usually the worst case is that ichLimNfc == ichMinUri, indicating that the whole run is // white space. However, in at least one pathological case, we have observed uniscribe // strip of more than one run of white space. Hence the <=. @@ -1053,7 +1057,7 @@ STDMETHODIMP UniscribeEngine::FindBreakPoint( dxSegWidth = *(vdxRun.Top()); vdxRun.Pop(); ichLim = *(vichRun.Top()); - ichLimNfc = UniscribeSegment::OffsetInNfc(ichLim, ichMinSeg, pts); + ichLimNfc = UniscribeSegment::OffsetInNfc(ichLim, ichMinSeg, pts, fTextIsNfc, pAnalysis); vichRun.Pop(); cglyph = *(viglyphRun.Top()); viglyphRun.Pop(); @@ -1082,7 +1086,7 @@ STDMETHODIMP UniscribeEngine::FindBreakPoint( Assert(irun == 1); Assert(ichMinUri == 0); RemoveNonWhiteSpace(ichMinUri, &ichLimNfc, uri); - ichLim = UniscribeSegment::OffsetToOrig(ichLimNfc, ichMinSeg, pts); + ichLim = UniscribeSegment::OffsetToOrig(ichLimNfc, ichMinSeg, pts, fTextIsNfc, pAnalysis); if (ichLim == ichMinSeg) return S_OK; // failure to create a valid segment fOkBreak = true; diff --git a/Src/views/lib/UniscribeSegment.cpp b/Src/views/lib/UniscribeSegment.cpp index ea45848da5..77176a7216 100644 --- a/Src/views/lib/UniscribeSegment.cpp +++ b/Src/views/lib/UniscribeSegment.cpp @@ -16,6 +16,7 @@ Last reviewed: Not yet. #include "Main.h" #pragma hdrstop // any other headers (not precompiled) +#include "LayoutCache.h" #undef THIS_FILE DEFINE_THIS_FILE @@ -27,6 +28,9 @@ DEFINE_THIS_FILE //:>******************************************************************************************** //:> Forward declarations //:>******************************************************************************************** +static void BuildNfcOffsetMaps(const StrUni & stuOrig, Vector & vichOrigToNfc, + Vector & vichNfcToOrig); +static void ApplyShapeRunCacheEntry(ShapeRunEntry & entry, UniscribeRunInfo & uri); //:>******************************************************************************************** //:> Local Constants and static variables @@ -283,6 +287,19 @@ STDMETHODIMP UniscribeSegment::QueryInterface(REFIID riid, void **ppv) void UniscribeSegment::ShapePlaceRun(UniscribeRunInfo& uri, bool fCreatingSeg) { HRESULT hr; + LayoutPassCache * pLayoutPassCache = IsPath1ShapeCacheEnabled() ? GetCurrentLayoutPassCache() : NULL; + HFONT hfont = (HFONT)::GetCurrentObject(uri.hdc, OBJ_FONT); + if (pLayoutPassCache && uri.psa) + { + ShapeRunEntry * pShapeEntry = pLayoutPassCache->ShapeCache().Find(uri.prgch, uri.cch, hfont, *uri.psa); + if (pShapeEntry) + { + uri.sc = g_fsc.FindScriptCache(uri); + ApplyShapeRunCacheEntry(*pShapeEntry, uri); + return; + } + } + DWORD dwStartMs = (fCreatingSeg && pLayoutPassCache && uri.psa) ? ::GetTickCount() : 0; // Enhance JohnT: (multithread) lock static buffers. // Make sure buffers are big enough. int cglyphMax = uri.CGlyphMax(); @@ -418,6 +435,14 @@ void UniscribeSegment::ShapePlaceRun(UniscribeRunInfo& uri, bool fCreatingSeg) } } + if (fCreatingSeg && pLayoutPassCache && uri.psa) + { + pLayoutPassCache->ShapeCache().AddComputeMs(::GetTickCount() - dwStartMs); + pLayoutPassCache->ShapeCache().Store(uri.prgch, uri.cch, hfont, *uri.psa, + uri.prgGlyph, uri.prgsva, uri.prgAdvance, uri.prgcst, uri.prgoff, + uri.prgCluster, uri.cglyph, uri.dxdWidth, uri.fScriptPlaceFailed); + } + if (uri.sc && uri.sc != sc) { g_fsc.StoreScriptCache(/**uri.pchrp, uri.sc*/uri); @@ -1077,6 +1102,29 @@ int UniscribeSegment::OffsetInNfc(int ich, int ichBase, IVwTextSource * pts) #endif } +// PATH-N1: NFC-aware overload. When fTextIsNfc is true (text already in NFC form), +// skip the expensive Fetch + NormalizeStrUni and return the identity offset directly. +// This eliminates redundant COM calls and NFC normalization when the text source +// already provides NFC text (the common case in FieldWorks). +int UniscribeSegment::OffsetInNfc(int ich, int ichBase, IVwTextSource * pts, bool fTextIsNfc) +{ + Assert(ich >= ichBase); + if (fTextIsNfc) + return ich - ichBase; + return OffsetInNfc(ich, ichBase, pts); +} + +int UniscribeSegment::OffsetInNfc(int ich, int ichBase, IVwTextSource * pts, bool fTextIsNfc, + const TextAnalysisEntry * pAnalysis) +{ + Assert(ich >= ichBase); + if (fTextIsNfc) + return ich - ichBase; + if (pAnalysis) + return pAnalysis->OffsetInNfc(ich, ichBase); + return OffsetInNfc(ich, ichBase, pts, fTextIsNfc); +} + // ich is an offset into the (NFC normalized) characters of this segment. // convert it into a (typically NFD) position in the original paragraph. // This is complicated because it isn't absolutely guaranteed that the original is @@ -1115,6 +1163,76 @@ int UniscribeSegment::OffsetToOrig(int ich, int ichBase, IVwTextSource * pts) #endif } +// PATH-N1: NFC-aware overload. When fTextIsNfc is true, original offsets equal NFC offsets, +// so we can return directly without the expensive iterative Fetch + normalize loop. +int UniscribeSegment::OffsetToOrig(int ich, int ichBase, IVwTextSource * pts, bool fTextIsNfc) +{ + if (fTextIsNfc) + return ich + ichBase; + return OffsetToOrig(ich, ichBase, pts); +} + +int UniscribeSegment::OffsetToOrig(int ich, int ichBase, IVwTextSource * pts, bool fTextIsNfc, + const TextAnalysisEntry * pAnalysis) +{ + if (fTextIsNfc) + return ich + ichBase; + if (pAnalysis) + return pAnalysis->OffsetToOrig(ich, ichBase); + return OffsetToOrig(ich, ichBase, pts, fTextIsNfc); +} + +static void BuildNfcOffsetMaps(const StrUni & stuOrig, Vector & vichOrigToNfc, + Vector & vichNfcToOrig) +{ + int cchOrig = stuOrig.Length(); + vichOrigToNfc.Resize(cchOrig + 1); + vichOrigToNfc[0] = 0; + for (int ich = 1; ich <= cchOrig; ++ich) + { + StrUni stuPrefix(stuOrig.Chars(), ich); + StrUtil::NormalizeStrUni(stuPrefix, UNORM_NFC); + vichOrigToNfc[ich] = stuPrefix.Length(); + } + + int cchNfc = vichOrigToNfc[cchOrig]; + vichNfcToOrig.Resize(cchNfc + 1); + int ichOrig = 0; + for (int ichNfc = 0; ichNfc <= cchNfc; ++ichNfc) + { + while (ichOrig + 1 <= cchOrig && vichOrigToNfc[ichOrig + 1] <= ichNfc) + ++ichOrig; + vichNfcToOrig[ichNfc] = ichOrig; + } +} + +static void ApplyShapeRunCacheEntry(ShapeRunEntry & entry, UniscribeRunInfo & uri) +{ + if (uri.CGlyphMax() < entry.m_cglyph) + uri.UpdateGlyphSize(entry.m_cglyph); + if (uri.CClusterMax() < entry.m_cch) + uri.UpdateClusterSize(entry.m_cch); + + uri.cglyph = entry.m_cglyph; + uri.dxdWidth = entry.m_dxdWidth; + uri.fScriptPlaceFailed = entry.m_fScriptPlaceFailed; + if (uri.psa) + *uri.psa = entry.m_sa; + + if (entry.m_cglyph > 0) + { + ::memcpy(uri.prgGlyph, entry.m_vglyph.Begin(), entry.m_cglyph * isizeof(WORD)); + ::memcpy(uri.prgsva, entry.m_vsva.Begin(), entry.m_cglyph * isizeof(SCRIPT_VISATTR)); + ::memcpy(uri.prgAdvance, entry.m_vadvance.Begin(), entry.m_cglyph * isizeof(int)); + ::memcpy(uri.prgcst, entry.m_vcst.Begin(), entry.m_cglyph * isizeof(int)); + ::memcpy(uri.prgoff, entry.m_voff.Begin(), entry.m_cglyph * isizeof(GOFFSET)); + } + if (entry.m_cch > 0) + ::memcpy(uri.prgCluster, entry.m_vcluster.Begin(), entry.m_cch * isizeof(WORD)); + if (uri.prgJustAdv && entry.m_cglyph > 0) + ::memcpy(uri.prgJustAdv, uri.prgAdvance, entry.m_cglyph * isizeof(int)); +} + int OffsetInRun(UniscribeRunInfo & uri, int ichRun, bool fTrailing) { int dxdRunToIP; @@ -2454,9 +2572,43 @@ void UniscribeSegment::AdjustEndForWidth(int ichBase, IVwGraphics * pvg) ----------------------------------------------------------------------------------------------*/ int UniscribeSegment::CallScriptItemize(OLECHAR * prgchDefBuf, int cchBuf, Vector & vch, IVwTextSource * pts, int ichMin, int cch, OLECHAR ** pprgchBuf, - int & citem, bool fParaRTL) + int & citem, bool fParaRTL, bool * pfTextIsNfc, const TextAnalysisEntry ** ppAnalysis) { * pprgchBuf = prgchDefBuf; // Use on-stack variable if big enough + if (ppAnalysis) + *ppAnalysis = NULL; + + LayoutPassCache * pLayoutPassCache = IsPath2AnalysisCacheEnabled() ? GetCurrentLayoutPassCache() : NULL; + TextAnalysisEntry * pCachedAnalysis = NULL; + int cchOrig = cch; + int ws = 0; + bool fWsRtl = false; + DWORD dwStartMs = 0; + if (pLayoutPassCache && cch > 0) + { + int ichMin1, ichLim1; + LgCharRenderProps chrp; + CheckHr(pts->GetCharProps(ichMin, &chrp, &ichMin1, &ichLim1)); + ws = chrp.ws; + fWsRtl = chrp.fWsRtl; + pCachedAnalysis = pLayoutPassCache->AnalysisCache().Find(pts, ichMin, cchOrig, ws, fWsRtl); + if (pCachedAnalysis) + { + if (pfTextIsNfc) + *pfTextIsNfc = pCachedAnalysis->m_fTextIsNfc; + *pprgchBuf = pCachedAnalysis->m_vchNfc.Size() > 0 ? pCachedAnalysis->m_vchNfc.Begin() : prgchDefBuf; + pCachedAnalysis->CopyScriptItemsTo(g_vscri, citem); + g_cscri = citem; + if (ppAnalysis) + *ppAnalysis = pCachedAnalysis; + return pCachedAnalysis->RequestedNfcLength(cchOrig); + } + } + if (pLayoutPassCache && !pCachedAnalysis) + dwStartMs = ::GetTickCount(); + + Vector vichOrigToNfc; + Vector vichNfcToOrig; #ifdef UNISCRIBE_NFC if (cch) @@ -2466,9 +2618,18 @@ int UniscribeSegment::CallScriptItemize(OLECHAR * prgchDefBuf, int cchBuf, OLECHAR * pch; stu.SetSize(cch, &pch); CheckHr(pts->Fetch(ichMin, ichMin + cch, pch)); + StrUni stuOrig(stu); StrUtil::NormalizeStrUni(stu, UNORM_NFC); if (cch != stu.Length()) cch = stu.Length(); + // PATH-N1: Only treat offsets as identity when normalization leaves the text + // byte-for-byte unchanged. Length equality alone is not sufficient because NFC + // can preserve length while still changing code-unit composition. + bool fComputedTextIsNfc = (stu == stuOrig); + if (pfTextIsNfc) + *pfTextIsNfc = fComputedTextIsNfc; + if (!fComputedTextIsNfc && pLayoutPassCache) + BuildNfcOffsetMaps(stuOrig, vichOrigToNfc, vichNfcToOrig); if (cch > cchBuf) { cchBuf = cch; @@ -2477,7 +2638,21 @@ int UniscribeSegment::CallScriptItemize(OLECHAR * prgchDefBuf, int cchBuf, } ::memcpy(*pprgchBuf, stu.Chars(), isizeof(OLECHAR) * cch); } + else + { + if (pfTextIsNfc) + *pfTextIsNfc = true; // Empty text is trivially NFC + if (pLayoutPassCache) + { + vichOrigToNfc.Resize(1); + vichOrigToNfc[0] = 0; + vichNfcToOrig.Resize(1); + vichNfcToOrig[0] = 0; + } + } #else + if (pfTextIsNfc) + *pfTextIsNfc = true; // No NFC mode means offsets are always identity if (cch > cchBuf) { cchBuf = cch; @@ -2574,6 +2749,18 @@ typedef struct tag_SCRIPT_STATE { g_vscri[0].iCharPos = 0; g_vscri[1].iCharPos = 0; } + g_cscri = citem; + + if (pLayoutPassCache) + { + pLayoutPassCache->AnalysisCache().AddComputeMs(::GetTickCount() - dwStartMs); + TextAnalysisEntry * pStoredAnalysis = pLayoutPassCache->AnalysisCache().Store(pts, ichMin, + cchOrig, ws, fWsRtl, *pprgchBuf, cch, pfTextIsNfc ? *pfTextIsNfc : true, + g_vscri.Begin(), citem, vichOrigToNfc.Size() ? &vichOrigToNfc : NULL, + vichNfcToOrig.Size() ? &vichNfcToOrig : NULL); + if (ppAnalysis) + *ppAnalysis = pStoredAnalysis; + } return cch; } #undef MAX_WS_GROUP @@ -2624,8 +2811,11 @@ template int UniscribeSegment::DoAllRuns(int ichBase, IVwGraphics * pv Vector vch; // Use as buffer if 1000 is not enough int citem; // actual number of items obtained. OLECHAR * prgchBuf; // Where text actually goes. + // PATH-N1: Get NFC flag from CallScriptItemize to skip redundant OffsetInNfc calls below. + bool fTextIsNfc = false; + const TextAnalysisEntry * pAnalysis = NULL; int cchNfc = CallScriptItemize(rgchBuf, INIT_BUF_SIZE, vch, m_qts, ichBase, m_dichLim, &prgchBuf, - citem, m_fParaRTL); + citem, m_fParaRTL, &fTextIsNfc, &pAnalysis); // If dxdExpectedWidth is not 0, then the segment will try its best to stretch to the // specified size. @@ -2683,7 +2873,7 @@ template int UniscribeSegment::DoAllRuns(int ichBase, IVwGraphics * pv if (ichLim - ichBase > m_dichLim) ichLim = ichBase + m_dichLim; - ichLimNfc = OffsetInNfc(ichLim, ichBase, m_qts); + ichLimNfc = OffsetInNfc(ichLim, ichBase, m_qts, fTextIsNfc, pAnalysis); if (ichLimNfc == ichMinNfc && m_dichLim > 0) { // This can happen pathologically where later characters in a composition have different diff --git a/Src/views/lib/UniscribeSegment.h b/Src/views/lib/UniscribeSegment.h index ee0abcd76c..297fbe0bb5 100644 --- a/Src/views/lib/UniscribeSegment.h +++ b/Src/views/lib/UniscribeSegment.h @@ -29,6 +29,8 @@ typedef Vector OffsetVec; // Hungarian voff typedef Vector ScrItemVec; // Hungarian vscri; typedef Vector ScrLogAttrVec; // Hungarian vsla. +class TextAnalysisEntry; + /*---------------------------------------------------------------------------------------------- Class: UniscribeRunInfo Description: This is the block of information that is passed to all our functors. @@ -231,7 +233,13 @@ class UniscribeSegment : public ILgSegment } static int OffsetInNfc(int ich, int ichBase, IVwTextSource * pts); + static int OffsetInNfc(int ich, int ichBase, IVwTextSource * pts, bool fTextIsNfc); + static int OffsetInNfc(int ich, int ichBase, IVwTextSource * pts, bool fTextIsNfc, + const TextAnalysisEntry * pAnalysis); static int OffsetToOrig(int ich, int ichBase, IVwTextSource * pts); + static int OffsetToOrig(int ich, int ichBase, IVwTextSource * pts, bool fTextIsNfc); + static int OffsetToOrig(int ich, int ichBase, IVwTextSource * pts, bool fTextIsNfc, + const TextAnalysisEntry * pAnalysis); protected: // Static variables @@ -298,7 +306,7 @@ class UniscribeSegment : public ILgSegment static void ShapePlaceRun(UniscribeRunInfo& uri, bool fCreatingSeg = false); static int CallScriptItemize(OLECHAR * prgchDefBuf, int cchBuf, Vector & vch, IVwTextSource * pts, int ichMin, int cch, OLECHAR ** pprgchBuf, int & citem, - bool fParaRTL); + bool fParaRTL, bool * pfTextIsNfc = NULL, const TextAnalysisEntry ** ppAnalysis = NULL); int NumStretchableGlyphs(); int StretchGlyphs(UniscribeRunInfo & uri, diff --git a/Src/views/lib/VwGraphics.cpp b/Src/views/lib/VwGraphics.cpp index 9e30a945c2..ced86193f9 100644 --- a/Src/views/lib/VwGraphics.cpp +++ b/Src/views/lib/VwGraphics.cpp @@ -28,6 +28,25 @@ DEFINE_THIS_FILE Local Constants and static variables ***********************************************************************************************/ +// Returns the lfQuality value to use for LOGFONT creation. +// If the FW_FONT_QUALITY env var is set to a valid value (0-6), that value is used. +// This allows tests to force ANTIALIASED_QUALITY (4) for deterministic rendering. +static BYTE GetFontQualityOverride() +{ + static BYTE s_quality = []() -> BYTE { + wchar_t buf[16] = {}; + DWORD len = ::GetEnvironmentVariableW(L"FW_FONT_QUALITY", buf, _countof(buf)); + if (len > 0 && len < _countof(buf)) + { + int val = _wtoi(buf); + if (val >= 0 && val <= 6) + return static_cast(val); + } + return DRAFT_QUALITY; + }(); + return s_quality; +} + /*********************************************************************************************** Two local classes, copied from AfGfx.h. Maybe we should move them to somewhere they can be shared more easily? @@ -76,11 +95,10 @@ VwGraphics::~VwGraphics() m_hfontOld = NULL; } Assert(!m_hfont); - if (m_hfont) - { - fSuccess = AfGdi::DeleteObjectFont(m_hfont); - m_hfont = NULL; - } + // PATH-C1: Font cache owns all created fonts. Don't double-delete m_hfont + // here — ClearFontCache handles it. Just null the pointer. + m_hfont = NULL; + ClearFontCache(); if (m_hdc) { @@ -105,6 +123,7 @@ void VwGraphics::Init() Assert(m_hfont == NULL); Assert(m_hfontOld == NULL); // m_chrp should contain zeros too; don't bother checking. + m_colorStateCache.Invalidate(); // Initialize the clip rectangle to be as big as possible: // TODO: decide if we want to do this. @@ -124,6 +143,11 @@ static GenericFactory g_fact( _T("Apartment"), &VwGraphics::CreateCom); +static bool TryDeleteCachedFont(HFONT hfont, void *) +{ + return AfGdi::DeleteObjectFont(hfont) != 0; +} + void VwGraphics::CreateCom(IUnknown *punkCtl, REFIID riid, void ** ppv) { @@ -1084,10 +1108,13 @@ STDMETHODIMP VwGraphics::ReleaseDC() // original one back into the DC to prevent GDI memory leaks and similar problems. HFONT hfontPrev; // Fixed release build. hfontPrev = AfGdi::SelectObjectFont(m_hdc, m_hfontOld, AfGdi::OLD); - fSuccess = AfGdi::DeleteObjectFont(m_hfont); + // PATH-C1: Don't delete m_hfont here — ClearFontCache handles lifecycle. m_hfont = 0; m_hfontOld = 0; } + // PATH-C1: Delete all cached fonts now that they're deselected from the DC. + ClearFontCache(); + m_colorStateCache.Invalidate(); Assert(m_hfont == 0); if (m_hfontOldMeasure) { @@ -1214,62 +1241,62 @@ STDMETHODIMP VwGraphics::SetupGraphics(LgCharRenderProps * pchrp) memcpy(((byte *)&m_chrp) + cbFontOffset, ((byte *)pchrp) + cbFontOffset, isizeof(m_chrp) - cbFontOffset); - // Figure the actual font we need. - LOGFONT lf; - lf.lfItalic = pchrp->ttvItalic == kttvOff ? false : true; - lf.lfWeight = pchrp->ttvBold == kttvOff ? 400 : 700; - // The minus causes this to be the font height (roughly, from top of ascenders - // to bottom of descenders). A positive number indicates we want a font with - // this distance as the total line spacing, which makes them too small. - // Note that we are also scaling the font size based on the resolution. - lf.lfHeight = -MulDiv(pchrp->dympHeight, GetYInch(), kdzmpInch); - lf.lfUnderline = false; - lf.lfWidth = 0; // default width, based on height - lf.lfEscapement = 0; // no rotation of text (is this how to do slanted?) - lf.lfOrientation = 0; // no rotation of character baselines - - lf.lfStrikeOut = 0; // not strike-out - lf.lfCharSet = DEFAULT_CHARSET; // let name determine it; WS should specify valid - lf.lfOutPrecision = OUT_TT_ONLY_PRECIS; // only work with TrueType fonts - lf.lfClipPrecision = CLIP_DEFAULT_PRECIS; // ?? - lf.lfQuality = DRAFT_QUALITY; // I (JohnT) don't think this matters for TrueType fonts. - lf.lfPitchAndFamily = 0; // must be zero for EnumFontFamiliesEx - #ifdef UNICODE - // ENHANCE: test this path if ever needed. - wcscpy_s(lf.lfFaceName, pchrp->szFaceName); - #else // not unicode, LOGFONT has 8-bit chars - WideCharToMultiByte( - CP_ACP, 0, // dumb; we don't expect non-ascii chars - pchrp->szFaceName, // string to convert - -1, // null-terminated - lf.lfFaceName, 32, - NULL, NULL); // default handling of unconvertibles - #endif // not unicode - HFONT hfont; - hfont = AfGdi::CreateFontIndirect(&lf); - if (!hfont) - ThrowHr(WarnHr(E_FAIL)); - SetFont(hfont); + HFONT hfontCached = FindCachedFont(pchrp); + if (hfontCached) + { + SetFont(hfontCached); + } + else + { + // Figure the actual font we need. + LOGFONT lf; + lf.lfItalic = pchrp->ttvItalic == kttvOff ? false : true; + lf.lfWeight = pchrp->ttvBold == kttvOff ? 400 : 700; + // The minus causes this to be the font height (roughly, from top of ascenders + // to bottom of descenders). A positive number indicates we want a font with + // this distance as the total line spacing, which makes them too small. + // Note that we are also scaling the font size based on the resolution. + lf.lfHeight = -MulDiv(pchrp->dympHeight, GetYInch(), kdzmpInch); + lf.lfUnderline = false; + lf.lfWidth = 0; // default width, based on height + lf.lfEscapement = 0; // no rotation of text (is this how to do slanted?) + lf.lfOrientation = 0; // no rotation of character baselines + + lf.lfStrikeOut = 0; // not strike-out + lf.lfCharSet = DEFAULT_CHARSET; // let name determine it; WS should specify valid + lf.lfOutPrecision = OUT_TT_ONLY_PRECIS; // only work with TrueType fonts + lf.lfClipPrecision = CLIP_DEFAULT_PRECIS; // ?? + lf.lfQuality = GetFontQualityOverride(); + lf.lfPitchAndFamily = 0; // must be zero for EnumFontFamiliesEx + #ifdef UNICODE + // ENHANCE: test this path if ever needed. + wcscpy_s(lf.lfFaceName, pchrp->szFaceName); + #else // not unicode, LOGFONT has 8-bit chars + WideCharToMultiByte( + CP_ACP, 0, // dumb; we don't expect non-ascii chars + pchrp->szFaceName, // string to convert + -1, // null-terminated + lf.lfFaceName, 32, + NULL, NULL); // default handling of unconvertibles + #endif // not unicode + HFONT hfont; + hfont = AfGdi::CreateFontIndirect(&lf); + if (!hfont) + ThrowHr(WarnHr(E_FAIL)); + SetFont(hfont); + AddFontToCache(hfont, pchrp); + } } + m_rgbForeColor = pchrp->clrFore; + m_rgbBackColor = pchrp->clrBack; - // Always set the colors. - // OPTIMIZE JohnT: would it be useful to remember what the hdc is set to? + // PATH-C2: Reuse HDC color state when the requested colors and background mode + // already match the previous SetupGraphics call. { - SmartPalette spal(m_hdc); - - bool fOK = (AfGfx::SetTextColor(m_hdc, pchrp->clrFore) != CLR_INVALID); - if (pchrp->clrBack == kclrTransparent) - { - // I can't find it documented anywhere, but it seems to be necessary to set - // the background color to black to make TRANSPARENT mode work--at least on my - // computer. - fOK = fOK && (::SetBkColor(m_hdc, RGB(0,0,0)) != CLR_INVALID); - fOK = fOK && ::SetBkMode(m_hdc, TRANSPARENT); - } else { - fOK = fOK && (AfGfx::SetBkColor(m_hdc, pchrp->clrBack)!= CLR_INVALID); - fOK = fOK && ::SetBkMode(m_hdc, OPAQUE); - } + COLORREF clrBackNeeded = (pchrp->clrBack == kclrTransparent) ? RGB(0,0,0) : pchrp->clrBack; + int nBkModeNeeded = (pchrp->clrBack == kclrTransparent) ? TRANSPARENT : OPAQUE; + m_colorStateCache.ApplyIfNeeded(m_hdc, pchrp->clrFore, clrBackNeeded, nBkModeNeeded); } #if 0 // DarrellX reports that this was causing some weird failures on his machine. @@ -1612,7 +1639,6 @@ int VwGraphics::GetYInch() ----------------------------------------------------------------------------------------------*/ void VwGraphics::SetFont(HFONT hfont) { - BOOL fSuccess; if (hfont == m_hfont) return; // Select the new font into the device context @@ -1630,21 +1656,16 @@ void VwGraphics::SetFont(HFONT hfont) if (!hfontPrev) ThrowHr(WarnHr(E_FAIL)); - if (m_hfontOld) - { - // We have previously created a font and now need to delete it. - // NB this must be done after it is selected out of the DC, or we get a hard-to-find - // GDI memory leak that causes weird drawing failures on W-98. - Assert(m_hfont); - fSuccess = AfGdi::DeleteObjectFont(m_hfont); - } - else + if (!m_hfontOld) { // This is the first font selection we have made into this level; save the old one // to eventually select back into the DC before we RestoreDC. m_hfontOld = hfontPrev; } + // PATH-C1: Don't delete the previous font here — the font cache manages + // all created HFONT lifecycles. m_hfont = hfont; + m_fontHandleCache.TryDeleteDeferredFonts(m_hfont, TryDeleteCachedFont, NULL); } /*---------------------------------------------------------------------------------------------- @@ -1866,4 +1887,19 @@ int VwGraphics::GetFontHeightFromFontTable() } #include -template Vector; // VecHfont; +template Vector; // VecHRgn; + +HFONT VwGraphics::FindCachedFont(const LgCharRenderProps * pchrp) +{ + return m_fontHandleCache.FindCachedFont(pchrp); +} + +void VwGraphics::AddFontToCache(HFONT hfont, const LgCharRenderProps * pchrp) +{ + m_fontHandleCache.AddFontToCache(hfont, pchrp, m_hfont, TryDeleteCachedFont, NULL); +} + +void VwGraphics::ClearFontCache() +{ + m_fontHandleCache.Clear(m_hfont, TryDeleteCachedFont, NULL); +} diff --git a/Src/views/lib/VwGraphics.h b/Src/views/lib/VwGraphics.h index 583cd67b15..3329a4aa81 100644 --- a/Src/views/lib/VwGraphics.h +++ b/Src/views/lib/VwGraphics.h @@ -23,6 +23,9 @@ Last reviewed: Not yet. #ifndef VWGRAPHICS_INCLUDED #define VWGRAPHICS_INCLUDED +#include "ColorStateCache.h" +#include "FontHandleCache.h" + #if !defined(_WIN32) && !defined(_M_X64) #include "VwGraphicsCairo.h" #else @@ -162,11 +165,17 @@ class VwGraphics : public IVwGraphicsWin32 HFONT m_hfontOldMeasure; HFONT m_hfont; // current font selected into DC, if any LgCharRenderProps m_chrp; + FontHandleCache m_fontHandleCache; + ColorStateCache m_colorStateCache; // Vertical and horizontal resolution. Zero indicates not yet initialized. int m_xInch; int m_yInch; + HFONT FindCachedFont(const LgCharRenderProps * pchrp); + void AddFontToCache(HFONT hfont, const LgCharRenderProps * pchrp); + void ClearFontCache(); + void Init(); int IntFromFixed(FIXED f) diff --git a/Src/views/views.vcxproj b/Src/views/views.vcxproj index 91fc36f294..bc15e8bf27 100644 --- a/Src/views/views.vcxproj +++ b/Src/views/views.vcxproj @@ -111,6 +111,8 @@ + + @@ -154,6 +156,8 @@ + + diff --git a/Src/views/views.vcxproj.filters b/Src/views/views.vcxproj.filters index e2d597b9b2..24cac1b3b5 100644 --- a/Src/views/views.vcxproj.filters +++ b/Src/views/views.vcxproj.filters @@ -73,6 +73,12 @@ lib + + lib + + + lib + lib @@ -153,6 +159,12 @@ lib + + lib + + + lib + lib diff --git a/Src/xWorks/DictionaryPublicationDecorator.cs b/Src/xWorks/DictionaryPublicationDecorator.cs index 6097ca3faf..8f74356a1b 100644 --- a/Src/xWorks/DictionaryPublicationDecorator.cs +++ b/Src/xWorks/DictionaryPublicationDecorator.cs @@ -609,10 +609,32 @@ public override int GetObjIndex(int hvoOwn, int flid, int hvo) /// public override void Refresh() { + var excludedItemsBeforeRefresh = new HashSet(m_excludedItems); + var excludedMainEntriesBeforeRefresh = new HashSet(m_excludeAsMainEntry); + var homographNumbersBeforeRefresh = new Dictionary(m_homographNumbers); + BuildExcludedObjects(); // It probably isn't necessary to rebuild the fields, but one day we might be able to add a relevant custom field?? BuildFieldsToFilter(); BuildHomographInfo(); + if (!excludedItemsBeforeRefresh.SetEquals(m_excludedItems) + || !excludedMainEntriesBeforeRefresh.SetEquals(m_excludeAsMainEntry) + || !homographNumbersBeforeRefresh.OrderBy(kvp => kvp.Key).SequenceEqual(m_homographNumbers.OrderBy(kvp => kvp.Key))) + { + NotifyRefreshChanged(); + } + base.Refresh(); + } + + private void NotifyRefreshChanged() + { + if (Cache.LangProject?.LexDbOA == null) + return; + + var lexDbHvo = Cache.LangProject.LexDbOA.Hvo; + var visibleEntryCount = get_VecSize(lexDbHvo, m_LexDbEntriesFlid); + foreach (var notifee in m_notifees) + notifee.PropChanged(lexDbHvo, m_LexDbEntriesFlid, 0, visibleEntryCount, 0); } /// diff --git a/Src/xWorks/FwXWindow.cs b/Src/xWorks/FwXWindow.cs index 1f65790038..be386fcdb7 100644 --- a/Src/xWorks/FwXWindow.cs +++ b/Src/xWorks/FwXWindow.cs @@ -1248,7 +1248,6 @@ private void JumpToPopupLexEntry(object command) { m_popupLexEntryWindow = new PopupToolWindow { - Icon = Icon, Owner = this }; m_popupLexEntryWindow.Init(m_mediator, m_propertyTable, toolNode); diff --git a/Src/xWorks/RecordClerk.cs b/Src/xWorks/RecordClerk.cs index 6dc6970387..42836f89e7 100644 --- a/Src/xWorks/RecordClerk.cs +++ b/Src/xWorks/RecordClerk.cs @@ -421,6 +421,7 @@ public virtual void Init(Mediator mediator, PropertyTable propertyTable, XmlNode StoreClerkInPropertyTable(clerkConfiguration); SetupDataContext(false); + } /// @@ -1468,20 +1469,7 @@ private bool ShouldNotHandleDeletionMessage get { return Id != "AllReversalEntries" && (!Editable || !IsPrimaryClerk || !m_shouldHandleDeletion); } } - /// - /// Handler for the 'Delete ...' menu item. - /// Triggered from (DistFiles\Language Explorer\Configuration\Main.xml) - /// public bool OnDeleteRecord(object commandObject) - { - DeleteRecord(commandObject); - return true; - } - - /// - /// Method to handle published messages for DeleteRecord - /// - private void DeleteRecord(object commandObject) { CheckDisposed(); @@ -1493,7 +1481,7 @@ private void DeleteRecord(object commandObject) // The m_shouldHandleDeletion member was also added, so the "AllReversalEntries" clerk's primary clerk // would not handle the message, and delete an entire reversal index. if (ShouldNotHandleDeletionMessage) - return; + return false; // It may be null: // 1. if the objects are bing deleted using the keys, @@ -1501,13 +1489,13 @@ private void DeleteRecord(object commandObject) // 3. the user keeps pressing the del key. // It looks like the command is not being disabled at all or fast enough. if (CurrentObjectHvo == 0) - return; + return true; // Don't allow an object to be deleted if it shouldn't be deleted. if (!CanDelete()) { ReportCannotDelete(); - return; + return true; } ICmObject thingToDelete = GetObjectToDelete(CurrentObject); @@ -1554,6 +1542,7 @@ private void DeleteRecord(object commandObject) #pragma warning restore 618 } } + return true; //we handled this, no need to ask anyone else. } /// @@ -2004,7 +1993,6 @@ public static RecordClerk FindClerk(PropertyTable propertyTable, string id) protected virtual void RemoveNotification() { Subscriber.Unsubscribe(EventConstants.FilterListChanged, FilterListChanged); - Subscriber.Unsubscribe(EventConstants.DeleteRecord, DeleteRecord); // We need the list to get the cache. if (m_list == null || m_list.IsDisposed || Cache == null || Cache.IsDisposed || Cache.DomainDataByFlid == null) @@ -2106,7 +2094,6 @@ virtual public void ActivateUI(bool useRecordTreeBar, bool updateStatusBar = tru { // RecordClerk only needs to handle changes if RecordClerk is being used in GUI Subscriber.Subscribe(EventConstants.FilterListChanged, FilterListChanged); - Subscriber.Subscribe(EventConstants.DeleteRecord, DeleteRecord); m_fIsActiveInGui = true; CheckDisposed(); diff --git a/Src/xWorks/XmlDocView.cs b/Src/xWorks/XmlDocView.cs index fdbca0c90a..50c4325ba1 100644 --- a/Src/xWorks/XmlDocView.cs +++ b/Src/xWorks/XmlDocView.cs @@ -1367,6 +1367,27 @@ public virtual bool OnDisplayReplaceText(object commandObject, ref UIItemDisplay return true; //we've handled this } + /// + /// If this gets called (which it never should), just say we did it, unless we are in the context of reversal entries. + /// In the case of reversal entries, we say we did not do it, so the record clerk deals with it. + /// + /// + /// + public bool OnDeleteRecord(object commandObject) + { + CheckDisposed(); + + if (Clerk.Id == "AllReversalEntries") + { + return false; // Let the clerk do it. + } + else + { + Debug.Assert(false); + } + return true; + } + public string FindTabHelpId { get { return XmlUtils.GetOptionalAttributeValue(m_configurationParameters, "findHelpId", null); } diff --git a/Src/xWorks/xWorksTests/DictionaryPublicationDecoratorTests.cs b/Src/xWorks/xWorksTests/DictionaryPublicationDecoratorTests.cs index 6124681fc1..fd7bbbe9a7 100644 --- a/Src/xWorks/xWorksTests/DictionaryPublicationDecoratorTests.cs +++ b/Src/xWorks/xWorksTests/DictionaryPublicationDecoratorTests.cs @@ -634,6 +634,30 @@ public void Refresh() m_decorator.Refresh(); } + [Test] + public void Refresh_NotifiesRegisteredRoots_WhenVisibleFilteringChanges() + { + var mockRoot = new MockNotifyChange(); + m_decorator.AddNotification(mockRoot); + + UndoableUnitOfWorkHelper.Do("do", "undo", m_actionHandler, + () => + { + var goodWord = MakeEntry("good", "nice", false); + var badSense = MakeSense(goodWord, "bad"); + badSense.DoNotPublishInRC.Add(m_mainDict); + + m_decorator.Refresh(); + + Assert.That(mockRoot.PropChangedCount, Is.GreaterThan(0)); + Assert.That(m_decorator.get_VecSize(goodWord.Hvo, LexEntryTags.kflidSenses), Is.EqualTo(1)); + }); + + m_actionHandler.Undo(); + m_decorator.Refresh(); + m_decorator.RemoveNotification(mockRoot); + } + private void VerifyPropChanged(PropChangeInfo propChangeInfo, int hvo, int tag, int ivMin, int cvIns, int cvDel) { Assert.That(propChangeInfo.hvo, Is.EqualTo(hvo)); @@ -646,9 +670,11 @@ private void VerifyPropChanged(PropChangeInfo propChangeInfo, int hvo, int tag, private class MockNotifyChange : IVwNotifyChange { public PropChangeInfo LastPropChanged { get; private set; } + public int PropChangedCount { get; private set; } public void PropChanged(int hvo, int tag, int ivMin, int cvIns, int cvDel) { + PropChangedCount++; LastPropChanged = new PropChangeInfo() { hvo = hvo, tag = tag, ivMin = ivMin, cvIns = cvIns, cvDel = cvDel }; } } diff --git a/Test.runsettings b/Test.runsettings index 67453c8423..0dcbd4df0e 100644 --- a/Test.runsettings +++ b/Test.runsettings @@ -22,8 +22,8 @@ x64 net48 - - 900000 + + 900000